diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38fb41f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.ipynb_checkpoints/ +.DS_Store +*.pyc +extras/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..fd1feef --- /dev/null +++ b/README.md @@ -0,0 +1,636 @@ +## DAT8 Course Repository + +Course materials for [General Assembly's Data Science course](https://generalassemb.ly/education/data-science/washington-dc/) in Washington, DC (8/18/15 - 10/29/15). + +**Instructor:** Kevin Markham ([Data School blog](http://www.dataschool.io/), [email newsletter](http://www.dataschool.io/subscribe/), [YouTube channel](https://www.youtube.com/user/dataschool)) + +[![Binder](http://mybinder.org/badge.svg)](http://mybinder.org/repo/justmarkham/DAT8) + +Tuesday | Thursday +--- | --- +8/18: [Introduction to Data Science](#class-1-introduction-to-data-science) | 8/20: [Command Line, Version Control](#class-2-command-line-and-version-control) +8/25: [Data Reading and Cleaning](#class-3-data-reading-and-cleaning) | 8/27: [Exploratory Data Analysis](#class-4-exploratory-data-analysis) +9/1: [Visualization](#class-5-visualization) | 9/3: [Machine Learning](#class-6-machine-learning) +9/8: [Getting Data](#class-7-getting-data) | 9/10: [K-Nearest Neighbors](#class-8-k-nearest-neighbors) +9/15: [Basic Model Evaluation](#class-9-basic-model-evaluation) | 9/17: [Linear Regression](#class-10-linear-regression) +9/22: [First Project Presentation](#class-11-first-project-presentation) | 9/24: [Logistic Regression](#class-12-logistic-regression) +9/29: [Advanced Model Evaluation](#class-13-advanced-model-evaluation) | 10/1: [Naive Bayes and Text Data](#class-14-naive-bayes-and-text-data) +10/6: [Natural Language Processing](#class-15-natural-language-processing) | 10/8: [Kaggle Competition](#class-16-kaggle-competition) +10/13: [Decision Trees](#class-17-decision-trees) | 10/15: [Ensembling](#class-18-ensembling) +10/20: [Advanced scikit-learn, Clustering](#class-19-advanced-scikit-learn-and-clustering) | 10/22: [Regularization, Regex](#class-20-regularization-and-regular-expressions) +10/27: [Course Review](#class-21-course-review-and-final-project-presentation) | 10/29: [Final Project Presentation](#class-22-final-project-presentation) + + + +### Python Resources +* [Codecademy's Python course](http://www.codecademy.com/en/tracks/python): Good beginner material, including tons of in-browser exercises. +* [Dataquest](https://www.dataquest.io): Uses interactive exercises to teach Python in the context of data science. +* [Google's Python Class](https://developers.google.com/edu/python/): Slightly more advanced, including hours of useful lecture videos and downloadable exercises (with solutions). +* [Introduction to Python](http://introtopython.org/): A series of IPython notebooks that do a great job explaining core Python concepts and data structures. +* [Python for Informatics](http://www.pythonlearn.com/book.php): A very beginner-oriented book, with associated [slides](https://drive.google.com/folderview?id=0B7X1ycQalUnyal9yeUx3VW81VDg&usp=sharing) and [videos](https://www.youtube.com/playlist?list=PLlRFEj9H3Oj4JXIwMwN1_ss1Tk8wZShEJ). +* [A Crash Course in Python for Scientists](http://nbviewer.ipython.org/gist/rpmuller/5920182): Read through the Overview section for a very quick introduction to Python. +* [Python 2.7 Quick Reference](https://github.com/justmarkham/python-reference/blob/master/reference.py): My beginner-oriented guide that demonstrates Python concepts through short, well-commented examples. +* [Beginner](code/00_python_beginner_workshop.py) and [intermediate](code/00_python_intermediate_workshop.py) workshop code: Useful for review and reference. +* [Python Tutor](http://pythontutor.com/): Allows you to visualize the execution of Python code. + + + +### [Course project](project/README.md) + +### [Comparison of machine learning models](other/model_comparison.md) + +### [Comparison of model evaluation procedures and metrics](other/model_evaluation_comparison.md) + +### [Advice for getting better at data science](other/advice.md) + +### [Additional resources](#additional-resources-1) + +----- + +### Class 1: Introduction to Data Science +* Course overview ([slides](slides/01_course_overview.pdf)) +* Introduction to data science ([slides](slides/01_intro_to_data_science.pdf)) +* Discuss the course project: [requirements](project/README.md) and [example projects](https://github.com/justmarkham/DAT-project-examples) +* Types of data ([slides](slides/01_types_of_data.pdf)) and [public data sources](project/public_data.md) +* Welcome from General Assembly staff + +**Homework:** +* Work through GA's friendly [command line tutorial](http://generalassembly.github.io/prework/command-line/#/) using Terminal (Linux/Mac) or Git Bash (Windows). +* Read through this [command line reference](code/02_command_line.md), and complete the pre-class exercise at the bottom. (There's nothing you need to submit once you're done.) +* Watch videos 1 through 8 (21 minutes) of [Introduction to Git and GitHub](https://www.youtube.com/playlist?list=PL5-da3qGB5IBLMp7LtN8Nc3Efd4hJq0kD), or read sections 1.1 through 2.2 of [Pro Git](http://git-scm.com/book/en/v2). +* If your laptop has any setup issues, please work with us to resolve them by Thursday. If your laptop has not yet been checked, you should come early on Thursday, or just walk through the [setup checklist](other/setup_checklist.md) yourself (and let us know you have done so). + +**Resources:** +* For a useful look at the different types of data scientists, read [Analyzing the Analyzers](http://cdn.oreillystatic.com/oreilly/radarreport/0636920029014/Analyzing_the_Analyzers.pdf) (32 pages). +* For some thoughts on what it's like to be a data scientist, read these short posts from [Win-Vector](http://www.win-vector.com/blog/2012/09/on-being-a-data-scientist/) and [Datascope Analytics](http://datascopeanalytics.com/what-we-think/2014/07/31/six-qualities-of-a-great-data-scientist). +* Quora has a [data science topic FAQ](https://www.quora.com/Data-Science) with lots of interesting Q&A. +* Keep up with local data-related events through the Data Community DC [event calendar](http://www.datacommunitydc.org/calendar) or [weekly newsletter](http://www.datacommunitydc.org/newsletter). + +----- + +### Class 2: Command Line and Version Control +* Slack tour +* Review the command line pre-class exercise ([code](code/02_command_line.md)) +* Git and GitHub ([slides](slides/02_git_github.pdf)) +* Intermediate command line + +**Homework:** +* Complete the [command line homework assignment](homework/02_command_line_chipotle.md) with the Chipotle data. +* Review the code from the [beginner](code/00_python_beginner_workshop.py) and [intermediate](code/00_python_intermediate_workshop.py) Python workshops. If you don't feel comfortable with any of the content (excluding the "requests" and "APIs" sections), you should spend some time this weekend practicing Python: + * [Introduction to Python](http://introtopython.org/) does a great job explaining Python essentials and includes tons of example code. + * If you like learning from a book, [Python for Informatics](http://www.pythonlearn.com/html-270/) has useful chapters on strings, lists, and dictionaries. + * If you prefer interactive exercises, try these lessons from [Codecademy](http://www.codecademy.com/en/tracks/python): "Python Lists and Dictionaries" and "A Day at the Supermarket". + * If you have more time, try missions 2 and 3 from [DataQuest's Learning Python](https://www.dataquest.io/course/learning-python) course. + * If you've already mastered these topics and want more of a challenge, try solving [Python Challenge](http://www.pythonchallenge.com/) number 1 (decoding a message) and send me your code in Slack. +* To give you a framework for thinking about your project, watch [What is machine learning, and how does it work?](https://www.youtube.com/watch?v=elojMnjn4kk) (10 minutes). (This is the [IPython notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/01_machine_learning_intro.ipynb) shown in the video.) Alternatively, read [A Visual Introduction to Machine Learning](http://www.r2d3.us/visual-intro-to-machine-learning-part-1/), which focuses on a specific machine learning model called decision trees. +* **Optional:** Browse through some more [example student projects](https://github.com/justmarkham/DAT-project-examples), which may help to inspire your own project! + +**Git and Markdown Resources:** +* [Pro Git](http://git-scm.com/book/en/v2) is an excellent book for learning Git. Read the first two chapters to gain a deeper understanding of version control and basic commands. +* If you want to practice a lot of Git (and learn many more commands), [Git Immersion](http://gitimmersion.com/) looks promising. +* If you want to understand how to contribute on GitHub, you first have to understand [forks and pull requests](http://www.dataschool.io/simple-guide-to-forks-in-github-and-git/). +* [GitRef](http://gitref.org/) is my favorite reference guide for Git commands, and [Git quick reference for beginners](http://www.dataschool.io/git-quick-reference-for-beginners/) is a shorter guide with commands grouped by workflow. +* [Cracking the Code to GitHub's Growth](https://growthhackers.com/growth-studies/github) explains why GitHub is so popular among developers. +* [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) provides a thorough set of Markdown examples with concise explanations. GitHub's [Mastering Markdown](https://guides.github.com/features/mastering-markdown/) is a simpler and more attractive guide, but is less comprehensive. + +**Command Line Resources:** +* If you want to go much deeper into the command line, [Data Science at the Command Line](http://shop.oreilly.com/product/0636920032823.do) is a great book. The [companion website](http://datascienceatthecommandline.com/) provides installation instructions for a "data science toolbox" (a virtual machine with many more command line tools), as well as a long reference guide to popular command line tools. +* If you want to do more at the command line with CSV files, try out [csvkit](http://csvkit.readthedocs.org/), which can be installed via `pip`. + +----- + +### Class 3: Data Reading and Cleaning +* Git and GitHub assorted tips ([slides](slides/02_git_github.pdf)) +* Review command line homework ([solution](homework/02_command_line_chipotle.md)) +* Python: + * Spyder interface + * Looping exercise + * Lesson on file reading with airline safety data ([code](code/03_file_reading.py), [data](data/airlines.csv), [article](http://fivethirtyeight.com/features/should-travelers-avoid-flying-airlines-that-have-had-crashes-in-the-past/)) + * Data cleaning exercise + * Walkthrough of Python homework with Chipotle data ([code](code/03_python_homework_chipotle.py), [data](data/chipotle.tsv), [article](http://www.nytimes.com/interactive/2015/02/17/upshot/what-do-people-actually-order-at-chipotle.html)) + +**Homework:** +* Complete the [Python homework assignment](code/03_python_homework_chipotle.py) with the Chipotle data, add a commented Python script to your GitHub repo, and submit a link using the homework submission form. You have until Tuesday (9/1) to complete this assignment. (**Note:** Pandas, which is covered in class 4, should not be used for this assignment.) + +**Resources:** +* [Want to understand Python's comprehensions? Think in Excel or SQL](http://blog.lerner.co.il/want-to-understand-pythons-comprehensions-think-like-an-accountant/) may be helpful if you are still confused by list comprehensions. +* [My code isn't working](http://www.tecoed.co.uk/uploads/1/4/2/4/14249012/624506_orig.png) is a great flowchart explaining how to debug Python errors. +* [PEP 8](https://www.python.org/dev/peps/pep-0008/) is Python's "classic" style guide, and is worth a read if you want to write readable code that is consistent with the rest of the Python community. +* If you want to understand Python at a deeper level, Ned Batchelder's [Loop Like A Native](http://nedbatchelder.com/text/iter.html) and [Python Names and Values](http://nedbatchelder.com/text/names1.html) are excellent presentations. + +----- + +### Class 4: Exploratory Data Analysis +* Pandas ([code](code/04_pandas.py)): + * MovieLens 100k movie ratings ([data](data/u.user), [data dictionary](http://files.grouplens.org/datasets/movielens/ml-100k-README.txt), [website](http://grouplens.org/datasets/movielens/)) + * Alcohol consumption by country ([data](data/drinks.csv), [article](http://fivethirtyeight.com/datalab/dear-mona-followup-where-do-people-drink-the-most-beer-wine-and-spirits/)) + * Reports of UFO sightings ([data](data/ufo.csv), [website](http://www.nuforc.org/webreports.html)) +* Project question exercise + +**Homework:** +* The deadline for discussing your project ideas with an instructor is Tuesday (9/1), and your project question write-up is due Thursday (9/3). +* Read [How Software in Half of NYC Cabs Generates $5.2 Million a Year in Extra Tips](http://iquantny.tumblr.com/post/107245431809/how-software-in-half-of-nyc-cabs-generates-5-2) for an excellent example of exploratory data analysis. +* Read [Anscombe's Quartet, and Why Summary Statistics Don't Tell the Whole Story](http://data.heapanalytics.com/anscombes-quartet-and-why-summary-statistics-dont-tell-the-whole-story/) for a classic example of why visualization is useful. + +**Resources:** +* Browsing or searching the Pandas [API Reference](http://pandas.pydata.org/pandas-docs/stable/api.html) is an excellent way to locate a function even if you don't know its exact name. +* [What I do when I get a new data set as told through tweets](http://simplystatistics.org/2014/06/13/what-i-do-when-i-get-a-new-data-set-as-told-through-tweets/) is a fun (yet enlightening) look at the process of exploratory data analysis. + +----- + +### Class 5: Visualization +* Python homework with the Chipotle data due ([solution](code/03_python_homework_chipotle.py), [detailed explanation](notebooks/03_python_homework_chipotle_explained.ipynb)) +* Part 2 of Exploratory Data Analysis with Pandas ([code](code/04_pandas.py)) +* Visualization with Pandas and Matplotlib ([notebook](notebooks/05_pandas_visualization.ipynb)) + +**Homework:** +* Your project question write-up is due on Thursday. +* Complete the [Pandas homework assignment](code/05_pandas_homework_imdb.py) with the [IMDb data](data/imdb_1000.csv). You have until Tuesday (9/8) to complete this assignment. +* If you're not using Anaconda, install the [Jupyter Notebook](http://jupyter.readthedocs.org/en/latest/install.html) (formerly known as the IPython Notebook) using `pip`. (The Jupyter or IPython Notebook is included with Anaconda.) + +**Pandas Resources:** +* To learn more Pandas, read this [three-part tutorial](http://www.gregreda.com/2013/10/26/intro-to-pandas-data-structures/), or review these two excellent (but extremely long) notebooks on Pandas: [introduction](https://github.com/fonnesbeck/Bios8366/blob/master/notebooks/Section2_5-Introduction-to-Pandas.ipynb) and [data wrangling](https://github.com/fonnesbeck/Bios8366/blob/master/notebooks/Section2_6-Data-Wrangling-with-Pandas.ipynb). +* If you want to go really deep into Pandas (and NumPy), read the book [Python for Data Analysis](http://shop.oreilly.com/product/0636920023784.do), written by the creator of Pandas. +* This notebook demonstrates the different types of [joins in Pandas](notebooks/05_pandas_merge.ipynb), for when you need to figure out how to merge two DataFrames. +* This is a nice, short tutorial on [pivot tables](https://beta.oreilly.com/learning/pivot-tables) in Pandas. +* For working with geospatial data in Python, [GeoPandas](http://geopandas.org/index.html) looks promising. This [tutorial](http://michelleful.github.io/code-blog/2015/04/24/sgmap/) uses GeoPandas (and scikit-learn) to build a "linguistic street map" of Singapore. + +**Visualization Resources:** +* Watch [Look at Your Data](https://www.youtube.com/watch?v=coNDCIMH8bk) (18 minutes) for an excellent example of why visualization is useful for understanding your data. +* For more on Pandas plotting, read this [notebook](https://github.com/fonnesbeck/Bios8366/blob/master/notebooks/Section2_7-Plotting-with-Pandas.ipynb) or the [visualization page](http://pandas.pydata.org/pandas-docs/stable/visualization.html) from the official Pandas documentation. +* To learn how to customize your plots further, browse through this [notebook on matplotlib](https://github.com/fonnesbeck/Bios8366/blob/master/notebooks/Section2_4-Matplotlib.ipynb) or this [similar notebook](https://github.com/jrjohansson/scientific-python-lectures/blob/master/Lecture-4-Matplotlib.ipynb). +* Read [Overview of Python Visualization Tools](http://pbpython.com/visualization-tools-1.html) for a useful comparison of Matplotlib, Pandas, Seaborn, ggplot, Bokeh, Pygal, and Plotly. +* To explore different types of visualizations and when to use them, [Choosing a Good Chart](http://extremepresentation.typepad.com/files/choosing-a-good-chart-09.pdf) and [The Graphic Continuum](http://www.coolinfographics.com/storage/post-images/The-Graphic-Continuum-POSTER.jpg) are nice one-page references, and the interactive [R Graph Catalog](http://shiny.stat.ubc.ca/r-graph-catalog/) has handy filtering capabilities. +* This [PowerPoint presentation](http://www2.research.att.com/~volinsky/DataMining/Columbia2011/Slides/Topic2-EDAViz.ppt) from Columbia's Data Mining class contains lots of good advice for properly using different types of visualizations. +* [Harvard's Data Science course](http://cs109.github.io/2014/) includes an excellent lecture on [Visualization Goals, Data Types, and Statistical Graphs](http://cm.dce.harvard.edu/2015/01/14328/L03/screen_H264LargeTalkingHead-16x9.shtml) (83 minutes), for which the [slides](https://docs.google.com/file/d/0B7IVstmtIvlHLTdTbXdEVENoRzQ/edit) are also available. + +----- + +### Class 6: Machine Learning +* Part 2 of Visualization with Pandas and Matplotlib ([notebook](notebooks/05_pandas_visualization.ipynb)) +* Brief introduction to the Jupyter/IPython Notebook +* "Human learning" exercise: + * [Iris dataset](http://archive.ics.uci.edu/ml/datasets/Iris) hosted by the UCI Machine Learning Repository + * [Iris photo](http://sebastianraschka.com/Images/2014_python_lda/iris_petal_sepal.png) + * [Notebook](notebooks/06_human_learning_iris.ipynb) +* Introduction to machine learning ([slides](slides/06_machine_learning.pdf)) + +**Homework:** +* **Optional:** Complete the bonus exercise listed in the [human learning notebook](notebooks/06_human_learning_iris.ipynb). It will take the place of any one homework you miss, past or future! This is due on Tuesday (9/8). +* If you're not using Anaconda, install [requests](http://www.python-requests.org/en/latest/user/install/) and [Beautiful Soup 4](http://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-beautiful-soup) using `pip`. (Both of these packages are included with Anaconda.) + +**Machine Learning Resources:** +* For a very quick summary of the key points about machine learning, watch [What is machine learning, and how does it work?](https://www.youtube.com/watch?v=elojMnjn4kk) (10 minutes) or read the [associated notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/01_machine_learning_intro.ipynb). +* For a more in-depth introduction to machine learning, read section 2.1 (14 pages) of Hastie and Tibshirani's excellent book, [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/). (It's a free PDF download!) +* The [Learning Paradigms](http://work.caltech.edu/library/014.html) video (13 minutes) from [Caltech's Learning From Data course](http://work.caltech.edu/telecourse.html) provides a nice comparison of supervised versus unsupervised learning, as well as an introduction to "reinforcement learning". +* [Real-World Active Learning](https://beta.oreilly.com/ideas/real-world-active-learning) is a readable and thorough introduction to "active learning", a variation of machine learning in which humans label only the most "important" observations. +* For a preview of some of the machine learning content we will cover during the course, read Sebastian Raschka's [overview of the supervised learning process](https://github.com/rasbt/pattern_classification/blob/master/machine_learning/supervised_intro/introduction_to_supervised_machine_learning.md). +* [Data Science, Machine Learning, and Statistics: What is in a Name?](http://www.win-vector.com/blog/2013/04/data-science-machine-learning-and-statistics-what-is-in-a-name/) discusses the differences between these (and other) terms. +* [The Emoji Translation Project](https://www.kickstarter.com/projects/fred/the-emoji-translation-project) is a really fun application of machine learning. +* Look up the [characteristics of your zip code](http://www.esri.com/landing-pages/tapestry/), and then read about the [67 distinct segments](http://doc.arcgis.com/en/esri-demographics/data/tapestry-segmentation.htm) in detail. + +**IPython Notebook Resources:** +* For a recap of the IPython Notebook introduction (and a preview of scikit-learn), watch [scikit-learn and the IPython Notebook](https://www.youtube.com/watch?v=IsXXlYVBt1M) (15 minutes) or read the [associated notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/02_machine_learning_setup.ipynb). +* If you would like to learn the IPython Notebook, the official [Notebook tutorials](https://github.com/jupyter/notebook/blob/master/docs/source/examples/Notebook/Examples%20and%20Tutorials%20Index.ipynb) are useful. +* This [Reddit discussion](https://www.reddit.com/r/Python/comments/3be5z2/do_you_prefer_ipython_notebook_over_ipython/) compares the relative strengths of the IPython Notebook and Spyder. + +----- + +### Class 7: Getting Data +* Pandas homework with the IMDb data due ([solution](code/05_pandas_homework_imdb.py)) +* Optional "human learning" exercise with the iris data due ([solution](notebooks/06_human_learning_iris.ipynb)) +* APIs ([code](code/07_api.py)) + * [OMDb API](http://www.omdbapi.com/) +* Web scraping ([code](code/07_web_scraping.py)) + * [IMDb: robots.txt](http://www.imdb.com/robots.txt) + * [Example web page](data/example.html) + * [IMDb: The Shawshank Redemption](http://www.imdb.com/title/tt0111161/) + +**Homework:** +* **Optional:** Complete the homework exercise listed in the [web scraping code](code/07_web_scraping.py). It will take the place of any one homework you miss, past or future! This is due on Tuesday (9/15). +* **Optional:** If you're not using Anaconda, [install Seaborn](http://stanford.edu/~mwaskom/software/seaborn/installing.html) using `pip`. If you're using Anaconda, install Seaborn by running `conda install seaborn` at the command line. (Note that some students in past courses have had problems with Anaconda after installing Seaborn.) + +**API Resources:** +* This Python script to [query the U.S. Census API](https://github.com/laurakurup/census-api) was created by a former DAT student. It's a bit more complicated than the example we used in class, it's very well commented, and it may provide a useful framework for writing your own code to query APIs. +* [Mashape](https://www.mashape.com/explore) and [Apigee](https://apigee.com/providers) allow you to explore tons of different APIs. Alternatively, a [Python API wrapper](http://www.pythonforbeginners.com/api/list-of-python-apis) is available for many popular APIs. +* The [Data Science Toolkit](http://www.datasciencetoolkit.org/) is a collection of location-based and text-related APIs. +* [API Integration in Python](https://realpython.com/blog/python/api-integration-in-python/) provides a very readable introduction to REST APIs. +* Microsoft's [Face Detection API](https://www.projectoxford.ai/demo/face#detection), which powers [How-Old.net](http://how-old.net/), is a great example of how a machine learning API can be leveraged to produce a compelling web application. + +**Web Scraping Resources:** +* The [Beautiful Soup documentation](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) is incredibly thorough, but is hard to use as a reference guide. However, the section on [specifying a parser](http://www.crummy.com/software/BeautifulSoup/bs4/doc/#specifying-the-parser-to-use) may be helpful if Beautiful Soup appears to be parsing a page incorrectly. +* For more Beautiful Soup examples and tutorials, see [Web Scraping 101 with Python](http://www.gregreda.com/2013/03/03/web-scraping-101-with-python/), a former DAT student's well-commented notebook on [scraping Craigslist](https://github.com/Alexjmsherman/DataScience_GeneralAssembly/blob/master/Final_Project/1.%20Final_Project_Data%20Scraping.ipynb), this [notebook](http://web.stanford.edu/~zlotnick/TextAsData/Web_Scraping_with_Beautiful_Soup.html) from Stanford's Text As Data course, and this [notebook](https://github.com/cs109/2014/blob/master/lectures/2014_09_23-lecture/data_scraping_transcript.ipynb) and associated [video](http://cm.dce.harvard.edu/2015/01/14328/L07/screen_H264LargeTalkingHead-16x9.shtml) from Harvard's Data Science course. +* For a much longer web scraping tutorial covering Beautiful Soup, lxml, XPath, and Selenium, watch [Web Scraping with Python](https://www.youtube.com/watch?v=p1iX0uxM1w8) (3 hours 23 minutes) from PyCon 2014. The [slides](https://docs.google.com/presentation/d/1uHM_esB13VuSf7O1ScGueisnrtu-6usGFD3fs4z5YCE/edit#slide=id.p) and [code](https://github.com/kjam/python-web-scraping-tutorial) are also available. +* For more complex web scraping projects, [Scrapy](http://scrapy.org/) is a popular application framework that works with Python. It has excellent [documentation](http://doc.scrapy.org/en/1.0/index.html), and here's a [tutorial](https://github.com/rdempsey/ddl-data-wrangling) with detailed slides and code. +* [robotstxt.org](http://www.robotstxt.org/robotstxt.html) has a concise explanation of how to write (and read) the `robots.txt` file. +* [import.io](https://import.io/) and [Kimono](https://www.kimonolabs.com/) claim to allow you to scrape websites without writing any code. +* [How a Math Genius Hacked OkCupid to Find True Love](http://www.wired.com/2014/01/how-to-hack-okcupid/all/) and [How Netflix Reverse Engineered Hollywood](http://www.theatlantic.com/technology/archive/2014/01/how-netflix-reverse-engineered-hollywood/282679/?single_page=true) are two fun examples of how web scraping has been used to build interesting datasets. + +----- + +### Class 8: K-Nearest Neighbors +* Brief review of Pandas ([notebook](notebooks/08_pandas_review.ipynb)) +* K-nearest neighbors and scikit-learn ([notebook](notebooks/08_knn_sklearn.ipynb)) +* Exercise with NBA player data ([notebook](notebooks/08_nba_knn.ipynb), [data](https://github.com/justmarkham/DAT4-students/blob/master/kerry/Final/NBA_players_2015.csv), [data dictionary](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/nba_paper.pdf)) +* Exploring the bias-variance tradeoff ([notebook](notebooks/08_bias_variance.ipynb)) + +**Homework:** +* Reading assignment on the [bias-variance tradeoff](homework/09_bias_variance.md) +* Read Kevin's [introduction to reproducibility](http://www.dataschool.io/reproducibility-is-not-just-for-researchers/), read Jeff Leek's [guide to creating a reproducible analysis](https://github.com/jtleek/datasharing), and watch this related [Colbert Report video](http://thecolbertreport.cc.com/videos/dcyvro/austerity-s-spreadsheet-error) (8 minutes). +* Work on your project... your first project presentation is in less than two weeks! + +**KNN Resources:** +* For a recap of the key points about KNN and scikit-learn, watch [Getting started in scikit-learn with the famous iris dataset](https://www.youtube.com/watch?v=hd1W4CyPX58) (15 minutes) and [Training a machine learning model with scikit-learn](https://www.youtube.com/watch?v=RlQuVL6-qe8) (20 minutes). +* KNN supports [distance metrics](http://scikit-learn.org/stable/modules/generated/sklearn.neighbors.DistanceMetric.html) other than Euclidean distance, such as [Mahalanobis distance](http://stats.stackexchange.com/questions/62092/bottom-to-top-explanation-of-the-mahalanobis-distance), which [takes the scale of the data into account](http://blogs.sas.com/content/iml/2012/02/15/what-is-mahalanobis-distance.html). +* [A Detailed Introduction to KNN](https://saravananthirumuruganathan.wordpress.com/2010/05/17/a-detailed-introduction-to-k-nearest-neighbor-knn-algorithm/) is a bit dense, but provides a more thorough introduction to KNN and its applications. +* This lecture on [Image Classification](http://cs231n.github.io/classification/) shows how KNN could be used for detecting similar images, and also touches on topics we will cover in future classes (hyperparameter tuning and cross-validation). +* Some applications for which KNN is well-suited are [object recognition](http://vlm1.uta.edu/~athitsos/nearest_neighbors/), [satellite image enhancement](http://land.umn.edu/documents/FS6.pdf), [document categorization](http://www.ceng.metu.edu.tr/~e120321/paper.pdf), and [gene expression analysis](http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.208.993). + +**Seaborn Resources:** +* To get started with Seaborn for visualization, the official website has a series of [detailed tutorials](http://web.stanford.edu/~mwaskom/software/seaborn/tutorial.html) and an [example gallery](http://web.stanford.edu/~mwaskom/software/seaborn/examples/index.html). +* [Data visualization with Seaborn](https://beta.oreilly.com/learning/data-visualization-with-seaborn) is a quick tour of some of the popular types of Seaborn plots. +* [Visualizing Google Forms Data with Seaborn](http://pbpython.com/pandas-google-forms-part2.html) and [How to Create NBA Shot Charts in Python](http://savvastjortjoglou.com/nba-shot-sharts.html) are both good examples of Seaborn usage on real-world data. + +----- + +### Class 9: Basic Model Evaluation +* Optional web scraping homework due ([solution](code/07_web_scraping.py#L136)) +* Reproducibility + * Discuss assigned readings: [introduction](http://www.dataschool.io/reproducibility-is-not-just-for-researchers/), [Colbert Report video](http://thecolbertreport.cc.com/videos/dcyvro/austerity-s-spreadsheet-error), [cabs article](http://iquantny.tumblr.com/post/107245431809/how-software-in-half-of-nyc-cabs-generates-5-2), [Tweet](https://twitter.com/jakevdp/status/519563939177197571), [creating a reproducible analysis](https://github.com/jtleek/datasharing) + * Examples: [Classic rock](https://github.com/fivethirtyeight/data/tree/master/classic-rock), [student project 1](https://github.com/jwknobloch/DAT4_final_project), [student project 2](https://github.com/justmarkham/DAT4-students/tree/master/Jonathan_Bryan/Project_Files) +* Discuss the reading assignment on the [bias-variance tradeoff](homework/09_bias_variance.md) +* Model evaluation using train/test split ([notebook](notebooks/09_model_evaluation.ipynb)) +* Exploring the scikit-learn documentation: [module reference](http://scikit-learn.org/stable/modules/classes.html), [user guide](http://scikit-learn.org/stable/user_guide.html), class and function documentation + +**Homework:** +* Watch [Data science in Python](https://www.youtube.com/watch?v=3ZWuPVWq7p4) (35 minutes) for an introduction to linear regression (and a review of other course content), or at the very least, read through the [associated notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/06_linear_regression.ipynb). +* **Optional:** For another introduction to linear regression, watch [The Easiest Introduction to Regression Analysis](https://www.youtube.com/watch?v=k_OB1tWX9PM) (14 minutes). + +**Model Evaluation Resources:** +* For a recap of some of the key points from today's lesson, watch [Comparing machine learning models in scikit-learn](https://www.youtube.com/watch?v=0pP4EwWJgIU) (27 minutes). +* For another explanation of training error versus testing error, the bias-variance tradeoff, and train/test split (also known as the "validation set approach"), watch Hastie and Tibshirani's video on [estimating prediction error](https://www.youtube.com/watch?v=_2ij6eaaSl0&t=2m34s) (12 minutes, starting at 2:34). +* Caltech's Learning From Data course includes a fantastic video on [visualizing bias and variance](http://work.caltech.edu/library/081.html) (15 minutes). +* [Random Test/Train Split is Not Always Enough](http://www.win-vector.com/blog/2015/01/random-testtrain-split-is-not-always-enough/) explains why random train/test split may not be a suitable model evaluation procedure if your data has a significant time element. + +**Reproducibility Resources:** +* [What We've Learned About Sharing Our Data Analysis](https://source.opennews.org/en-US/articles/what-weve-learned-about-sharing-our-data-analysis/) includes tips from BuzzFeed News about how to publish a reproducible analysis. +* [Software development skills for data scientists](http://treycausey.com/software_dev_skills.html) discusses the importance of writing functions and proper code comments (among other skills), which are highly useful for creating a reproducible analysis. +* [Data science done well looks easy - and that is a big problem for data scientists](http://simplystatistics.org/2015/03/17/data-science-done-well-looks-easy-and-that-is-a-big-problem-for-data-scientists/) explains how a reproducible analysis demonstrates all of the work that goes into proper data science. + +----- + +### Class 10: Linear Regression +* Machine learning exercise ([article](http://blog.dominodatalab.com/10-interesting-uses-of-data-science/)) +* Linear regression ([notebook](notebooks/10_linear_regression.ipynb)) + * [Capital Bikeshare dataset](data/bikeshare.csv) used in a Kaggle competition + * [Data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data) +* Feature engineering example: [Predicting User Engagement in Corporate Collaboration Network](https://github.com/mikeyea/DAT7_project/blob/master/final%20project/Class_Presention_MYea.ipynb) + +**Homework:** +* Your first project presentation is on Tuesday (9/22)! Please submit a link to your project repository (with slides, code, data, and visualizations) by 6pm on Tuesday. +* Complete the [homework assignment](homework/10_yelp_votes.md) with the [Yelp data](data/yelp.csv). This is due on Thursday (9/24). + +**Linear Regression Resources:** +* To go much more in-depth on linear regression, read Chapter 3 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/). Alternatively, watch the [related videos](http://www.dataschool.io/15-hours-of-expert-machine-learning-videos/) or read my [quick reference guide](http://www.dataschool.io/applying-and-interpreting-linear-regression/) to the key points in that chapter. +* This [introduction to linear regression](http://people.duke.edu/~rnau/regintro.htm) is more detailed and mathematically thorough, and includes lots of good advice. +* This is a relatively quick post on the [assumptions of linear regression](http://pareonline.net/getvn.asp?n=2&v=8). +* Setosa has an [interactive visualization](http://setosa.io/ev/ordinary-least-squares-regression/) of linear regression. +* For a brief introduction to confidence intervals, hypothesis testing, p-values, and R-squared, as well as a comparison between scikit-learn code and [Statsmodels](http://statsmodels.sourceforge.net/) code, read my [DAT7 lesson on linear regression](https://github.com/justmarkham/DAT7/blob/master/notebooks/10_linear_regression.ipynb). +* Here is a useful explanation of [confidence intervals](http://www.quora.com/What-is-a-confidence-interval-in-laymans-terms/answer/Michael-Hochster) from Quora. +* [Hypothesis Testing: The Basics](http://20bits.com/article/hypothesis-testing-the-basics) provides a nice overview of the topic, and John Rauser's talk on [Statistics Without the Agonizing Pain](https://www.youtube.com/watch?v=5Dnw46eC-0o) (12 minutes) gives a great explanation of how the null hypothesis is rejected. +* Earlier this year, a major scientific journal banned the use of p-values: + * Scientific American has a nice [summary](http://www.scientificamerican.com/article/scientists-perturbed-by-loss-of-stat-tools-to-sift-research-fudge-from-fact/) of the ban. + * This [response](http://www.nature.com/news/statistics-p-values-are-just-the-tip-of-the-iceberg-1.17412) to the ban in Nature argues that "decisions that are made earlier in data analysis have a much greater impact on results". + * Andrew Gelman has a readable [paper](http://www.stat.columbia.edu/~gelman/research/unpublished/p_hacking.pdf) in which he argues that "it's easy to find a p < .05 comparison even if nothing is going on, if you look hard enough". + * [Science Isn't Broken](http://fivethirtyeight.com/features/science-isnt-broken/) includes a neat tool that allows you to "p-hack" your way to "statistically significant" results. +* [Accurately Measuring Model Prediction Error](http://scott.fortmann-roe.com/docs/MeasuringError.html) compares adjusted R-squared, AIC and BIC, train/test split, and cross-validation. + +**Other Resources:** +* Section 3.3.1 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (4 pages) has a great explanation of dummy encoding for categorical features. +* Kaggle has some nice [visualizations of the bikeshare data](https://www.kaggle.com/c/bike-sharing-demand/scripts?outputType=Visualization) we used today. + +----- + +### Class 11: First Project Presentation +* Project presentations! + +**Homework:** +* Watch Rahul Patwari's videos on [probability](https://www.youtube.com/watch?v=o4QmoNfW3bI) (5 minutes) and [odds](https://www.youtube.com/watch?v=GxbXQjX7fC0) (8 minutes) if you're not comfortable with either of those terms. +* Read these excellent articles from BetterExplained: [An Intuitive Guide To Exponential Functions & e](http://betterexplained.com/articles/an-intuitive-guide-to-exponential-functions-e/) and [Demystifying the Natural Logarithm (ln)](http://betterexplained.com/articles/demystifying-the-natural-logarithm-ln/). Then, review this [brief summary](notebooks/12_e_log_examples.ipynb) of exponential functions and logarithms. + +----- + +### Class 12: Logistic Regression +* Yelp votes homework due ([solution](notebooks/10_yelp_votes_homework.ipynb)) +* Logistic regression ([notebook](notebooks/12_logistic_regression.ipynb)) + * [Glass identification dataset](https://archive.ics.uci.edu/ml/datasets/Glass+Identification) +* Exercise with Titanic data ([notebook](notebooks/12_titanic_confusion.ipynb), [data](data/titanic.csv), [data dictionary](https://www.kaggle.com/c/titanic/data)) +* Confusion matrix ([slides](slides/12_confusion_matrix.pdf), [notebook](notebooks/12_titanic_confusion.ipynb)) + +**Homework:** +* If you aren't yet comfortable with all of the confusion matrix terminology, watch Rahul Patwari's videos on [Intuitive sensitivity and specificity](https://www.youtube.com/watch?v=U4_3fditnWg) (9 minutes) and [The tradeoff between sensitivity and specificity](https://www.youtube.com/watch?v=vtYDyGGeQyo) (13 minutes). +* Video/reading assignment on [ROC curves and AUC](homework/13_roc_auc.md) +* Video/reading assignment on [cross-validation](homework/13_cross_validation.md) + +**Logistic Regression Resources:** +* To go deeper into logistic regression, read the first three sections of Chapter 4 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/), or watch the [first three videos](http://www.dataschool.io/15-hours-of-expert-machine-learning-videos/) (30 minutes) from that chapter. +* For a math-ier explanation of logistic regression, watch the first seven videos (71 minutes) from week 3 of Andrew Ng's [machine learning course](https://www.coursera.org/learn/machine-learning/home/info), or read the [related lecture notes](http://www.holehouse.org/mlclass/06_Logistic_Regression.html) compiled by a student. +* For more on interpreting logistic regression coefficients, read this excellent [guide](http://www.ats.ucla.edu/stat/mult_pkg/faq/general/odds_ratio.htm) by UCLA's IDRE and these [lecture notes](http://www.unm.edu/~schrader/biostat/bio2/Spr06/lec11.pdf) from the University of New Mexico. +* The scikit-learn documentation has a nice [explanation](http://scikit-learn.org/stable/modules/calibration.html) of what it means for a predicted probability to be calibrated. +* [Supervised learning superstitions cheat sheet](http://ryancompton.net/assets/ml_cheat_sheet/supervised_learning.html) is a very nice comparison of four classifiers we cover in the course (logistic regression, decision trees, KNN, Naive Bayes) and one classifier we do not cover (Support Vector Machines). + +**Confusion Matrix Resources:** +* My [simple guide to confusion matrix terminology](http://www.dataschool.io/simple-guide-to-confusion-matrix-terminology/) may be useful to you as a reference. +* This blog post about [Amazon Machine Learning](https://aws.amazon.com/blogs/aws/amazon-machine-learning-make-data-driven-decisions-at-scale/) contains a neat [graphic](https://media.amazonwebservices.com/blog/2015/ml_adjust_model_1.png) showing how classification threshold affects different evaluation metrics. +* This notebook (from another DAT course) explains [how to calculate "expected value"](https://github.com/podopie/DAT18NYC/blob/master/classes/13-expected_value_cost_benefit_analysis.ipynb) from a confusion matrix by treating it as a cost-benefit matrix. + +----- + +### Class 13: Advanced Model Evaluation +* Data preparation ([notebook](notebooks/13_advanced_model_evaluation.ipynb)) + * Handling missing values + * Handling categorical features (review) +* ROC curves and AUC + * Discuss the [video/reading assignment](homework/13_roc_auc.md) + * Exercise: drawing an ROC curve ([slides](slides/13_drawing_roc.pdf)) + * Return to the main notebook +* Cross-validation + * Discuss the [video/reading assignment](homework/13_cross_validation.md) and associated [notebook](notebooks/13_cross_validation.ipynb) + * Return to the main notebook +* Exercise with bank marketing data ([notebook](notebooks/13_bank_exercise.ipynb), [data](data/bank-additional.csv), [data dictionary](https://archive.ics.uci.edu/ml/datasets/Bank+Marketing)) + +**Homework:** +* Reading assignment on [spam filtering](homework/14_spam_filtering.md) +* Read these [Introduction to Probability](https://docs.google.com/presentation/d/1cM2dVbJgTWMkHoVNmYlB9df6P2H8BrjaqAcZTaLe9dA/edit#slide=id.gfc3caad2_00) slides, or skim section 2.1 of the [OpenIntro Statistics textbook](https://www.openintro.org/stat/textbook.php?stat_book=os) (12 pages). Pay specific attention to the following terms: probability, mutually exclusive, sample space, independent. +* **Optional:** Try to gain an understanding of conditional probability from this [visualization](http://setosa.io/conditional/). +* **Optional:** For an intuitive introduction to Bayes' theorem, read these posts on [wealth and happiness](http://www.quora.com/What-is-an-intuitive-explanation-of-Bayes-Rule/answer/Michael-Hochster), [ducks](https://planspacedotorg.wordpress.com/2014/02/23/bayes-rule-for-ducks/), or [legos](http://www.countbayesie.com/blog/2015/2/18/bayes-theorem-with-lego). + +**ROC Resources:** +* Rahul Patwari has a great video on [ROC Curves](https://www.youtube.com/watch?v=21Igj5Pr6u4) (12 minutes). +* [An introduction to ROC analysis](http://people.inf.elte.hu/kiss/13dwhdm/roc.pdf) is a very readable paper on the topic. +* ROC curves can be used across a wide variety of applications, such as [comparing different feature sets](http://research.microsoft.com/pubs/205472/aisec10-leontjeva.pdf) for detecting fraudulent Skype users, and [comparing different classifiers](http://www.cse.ust.hk/nevinZhangGroup/readings/yi/Bradley_PR97.pdf) on a number of popular datasets. + +**Cross-Validation Resources:** +* For more on cross-validation, read section 5.1 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (11 pages) or watch the related videos: [K-fold and leave-one-out cross-validation](https://www.youtube.com/watch?v=nZAM5OXrktY) (14 minutes), [cross-validation the right and wrong ways](https://www.youtube.com/watch?v=S06JpVoNaA0) (10 minutes). +* If you want to understand the different variations of cross-validation, this [paper](http://www.jcheminf.com/content/pdf/1758-2946-6-10.pdf) examines and compares them in detail. +* To learn how to use [GridSearchCV and RandomizedSearchCV](http://scikit-learn.org/stable/modules/grid_search.html) for parameter tuning, watch [How to find the best model parameters in scikit-learn](https://www.youtube.com/watch?v=Gol_qOgRqfA) (28 minutes) or read the [associated notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/08_grid_search.ipynb). + +**Other Resources:** +* scikit-learn has extensive documentation on [model evaluation](http://scikit-learn.org/stable/modules/model_evaluation.html). +* [Counterfactual evaluation of machine learning models](https://www.youtube.com/watch?v=QWCSxAKR-h0) (45 minutes) is an excellent talk about the sophisticated way in which Stripe evaluates its fraud detection model. (These are the associated [slides](http://www.slideshare.net/MichaelManapat/counterfactual-evaluation-of-machine-learning-models).) +* [Visualizing Machine Learning Thresholds to Make Better Business Decisions](http://blog.insightdatalabs.com/visualizing-classifier-thresholds/) demonstrates how visualizing precision, recall, and "queue rate" at different thresholds can help you to maximize the business value of your classifier. + +----- + +### Class 14: Naive Bayes and Text Data +* Conditional probability and Bayes' theorem + * [Slides](slides/14_bayes_theorem.pdf) (adapted from [Visualizing Bayes' theorem](http://oscarbonilla.com/2009/05/visualizing-bayes-theorem/)) + * Applying Bayes' theorem to iris classification ([notebook](notebooks/14_bayes_theorem_iris.ipynb)) +* Naive Bayes classification + * [Slides](slides/14_naive_bayes.pdf) + * Spam filtering example ([notebook](notebooks/14_naive_bayes_spam.ipynb)) +* Applying Naive Bayes to text data in scikit-learn ([notebook](notebooks/14_text_data_sklearn.ipynb)) + * [CountVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html) documentation + * SMS messages: [data](data/sms.tsv), [data dictionary](https://archive.ics.uci.edu/ml/datasets/SMS+Spam+Collection) + +**Homework:** +* Complete another [homework assignment](homework/14_yelp_review_text.md) with the [Yelp data](data/yelp.csv). This is due on Tuesday (10/6). +* Confirm that you have [TextBlob](https://textblob.readthedocs.org/) installed by running `import textblob` from within your preferred Python environment. If it's not installed, run `pip install textblob` at the command line (not from within Python). + +**Resources:** +* Sebastian Raschka's article on [Naive Bayes and Text Classification](http://sebastianraschka.com/Articles/2014_naive_bayes_1.html) covers the conceptual material from today's class in much more detail. +* For more on conditional probability, read these [slides](https://docs.google.com/presentation/d/1psUIyig6OxHQngGEHr3TMkCvhdLInnKnclQoNUr4G4U/edit#slide=id.gfc69f484_00), or read section 2.2 of the [OpenIntro Statistics textbook](https://www.openintro.org/stat/textbook.php?stat_book=os) (15 pages). +* For an intuitive explanation of Naive Bayes classification, read this post on [airport security](http://www.quora.com/In-laymans-terms-how-does-Naive-Bayes-work/answer/Konstantin-Tt). +* For more details on Naive Bayes classification, Wikipedia has two excellent articles ([Naive Bayes classifier](http://en.wikipedia.org/wiki/Naive_Bayes_classifier) and [Naive Bayes spam filtering](http://en.wikipedia.org/wiki/Naive_Bayes_spam_filtering)), and Cross Validated has a good [Q&A](http://stats.stackexchange.com/questions/21822/understanding-naive-bayes). +* When applying Naive Bayes classification to a dataset with continuous features, it is better to use [GaussianNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.GaussianNB.html) rather than [MultinomialNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html). This [notebook](notebooks/14_types_of_naive_bayes.ipynb) compares their performances on such a dataset. Wikipedia has a short [description](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Gaussian_naive_Bayes) of Gaussian Naive Bayes, as well as an excellent [example](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Sex_classification) of its usage. +* These [slides](http://www.umiacs.umd.edu/~jbg/teaching/DATA_DIGGING/lecture_05.pdf) from the University of Maryland provide more mathematical details on both logistic regression and Naive Bayes, and also explain how Naive Bayes is actually a "special case" of logistic regression. +* Andrew Ng has a [paper](http://ai.stanford.edu/~ang/papers/nips01-discriminativegenerative.pdf) comparing the performance of logistic regression and Naive Bayes across a variety of datasets. +* If you enjoyed Paul Graham's article, you can read [his follow-up article](http://www.paulgraham.com/better.html) on how he improved his spam filter and this [related paper](http://www.merl.com/publications/docs/TR2004-091.pdf) about state-of-the-art spam filtering in 2004. +* Yelp has found that Naive Bayes is more effective than Mechanical Turks at [categorizing businesses](http://engineeringblog.yelp.com/2011/02/towards-building-a-high-quality-workforce-with-mechanical-turk.html). + +----- + +### Class 15: Natural Language Processing +* Yelp review text homework due ([solution](notebooks/14_yelp_review_text_homework.ipynb)) +* Natural language processing ([notebook](notebooks/15_natural_language_processing.ipynb)) +* Introduction to our [Kaggle competition](https://inclass.kaggle.com/c/dat8-stack-overflow) + * Create a Kaggle account, join the competition using the invitation link, download the sample submission, and then submit the sample submission (which will require SMS account verification). + +**Homework:** +* Your draft paper is due on Thursday (10/8)! Please submit a link to your project repository (with paper, code, data, and visualizations) before class. +* Watch [Kaggle: How it Works](https://www.youtube.com/watch?v=PoD84TVdD-4) (4 minutes) for a brief overview of the Kaggle platform. +* Download the competition files, move them to the `DAT8/data` directory, and make sure you can open the CSV files using Pandas. If you have any problems opening the files, you probably need to turn off real-time virus scanning (especially Microsoft Security Essentials). +* **Optional:** Come up with some theories about which features might be relevant to predicting the response, and then explore the data to see if those theories appear to be true. +* **Optional:** Watch my [project presentation video](https://www.youtube.com/watch?v=HGr1yQV3Um0) (16 minutes) for a tour of the end-to-end machine learning process for a Kaggle competition, including feature engineering. (Or, just read through the [slides](https://speakerdeck.com/justmarkham/allstate-purchase-prediction-challenge-on-kaggle).) + +**NLP Resources:** +* If you want to learn a lot more NLP, check out the excellent [video lectures](https://class.coursera.org/nlp/lecture) and [slides](http://web.stanford.edu/~jurafsky/NLPCourseraSlides.html) from this [Coursera course](https://www.coursera.org/course/nlp) (which is no longer being offered). +* This slide deck defines many of the [key NLP terms](https://github.com/ga-students/DAT_SF_9/blob/master/16_Text_Mining/DAT9_lec16_Text_Mining.pdf). +* [Natural Language Processing with Python](http://www.nltk.org/book/) is the most popular book for going in-depth with the [Natural Language Toolkit](http://www.nltk.org/) (NLTK). +* [A Smattering of NLP in Python](https://github.com/charlieg/A-Smattering-of-NLP-in-Python/blob/master/A%20Smattering%20of%20NLP%20in%20Python.ipynb) provides a nice overview of NLTK, as does this [notebook from DAT5](https://github.com/justmarkham/DAT5/blob/master/notebooks/14_nlp.ipynb). +* [spaCy](http://spacy.io/) is a newer Python library for text processing that is focused on performance (unlike NLTK). +* If you want to get serious about NLP, [Stanford CoreNLP](http://nlp.stanford.edu/software/corenlp.shtml) is a suite of tools (written in Java) that is highly regarded. +* When working with a large text corpus in scikit-learn, [HashingVectorizer](http://scikit-learn.org/stable/modules/feature_extraction.html#vectorizing-a-large-text-corpus-with-the-hashing-trick) is a useful alternative to CountVectorizer. +* [Automatically Categorizing Yelp Businesses](http://engineeringblog.yelp.com/2015/09/automatically-categorizing-yelp-businesses.html) discusses how Yelp uses NLP and scikit-learn to solve the problem of uncategorized businesses. +* [Modern Methods for Sentiment Analysis](http://districtdatalabs.silvrback.com/modern-methods-for-sentiment-analysis) shows how "word vectors" can be used for more accurate sentiment analysis. +* [Identifying Humorous Cartoon Captions](http://www.cs.huji.ac.il/~dshahaf/pHumor.pdf) is a readable paper about identifying funny captions submitted to the New Yorker Caption Contest. +* [DC Natural Language Processing](http://www.meetup.com/DC-NLP/) is an active Meetup group in our local area. + +----- + +### Class 16: Kaggle Competition +* Overview of how Kaggle works ([slides](slides/16_kaggle.pdf)) +* Kaggle In-Class competition: [Predict whether a Stack Overflow question will be closed](https://inclass.kaggle.com/c/dat8-stack-overflow) + * [Complete code file](code/16_kaggle.py) + * [Minimal code file](code/16_kaggle_minimal.py): excludes all exploratory code + * [Explanations of log loss](http://www.quora.com/What-is-an-intuitive-explanation-for-the-log-loss-function) + +**Homework:** +* You will be assigned to review the project drafts of two of your peers. You have until Tuesday 10/20 to provide them with feedback, according to the [peer review guidelines](project/peer_review.md). +* Read [A Visual Introduction to Machine Learning](http://www.r2d3.us/visual-intro-to-machine-learning-part-1/) for a brief overview of decision trees. +* Download and install [Graphviz](http://www.graphviz.org/), which will allow you to visualize decision trees in scikit-learn. + * Windows users should also add Graphviz to your path: Go to Control Panel, System, Advanced System Settings, Environment Variables. Under system variables, edit "Path" to include the path to the "bin" folder, such as: `C:\Program Files (x86)\Graphviz2.38\bin` +* **Optional:** Keep working on our Kaggle competition! You can make up to 5 submissions per day, and the competition doesn't close until 6:30pm ET on Tuesday 10/27 (class 21). + +**Resources:** +* [Specialist Knowledge Is Useless and Unhelpful](http://www.slate.com/articles/health_and_science/new_scientist/2012/12/kaggle_president_jeremy_howard_amateurs_beat_specialists_in_data_prediction.html) is a brief interview with Jeremy Howard (past president of Kaggle) in which he argues that data science skills are much more important than domain expertise for creating effective predictive models. +* [Getting in Shape for the Sport of Data Science](https://www.youtube.com/watch?v=kwt6XEh7U3g) (74 minutes), also by Jeremy Howard, contains a lot of tips for competitive machine learning. +* [Learning from the best](http://blog.kaggle.com/2014/08/01/learning-from-the-best/) is an excellent blog post covering top tips from Kaggle Masters on how to do well on Kaggle. +* [Feature Engineering Without Domain Expertise](https://www.youtube.com/watch?v=bL4b1sGnILU) (17 minutes), a talk by Kaggle Master Nick Kridler, provides some simple advice about how to iterate quickly and where to spend your time during a Kaggle competition. +* These examples may help you to better understand the process of feature engineering: predicting the number of [passengers at a train station](https://medium.com/@chris_bour/french-largest-data-science-challenge-ever-organized-shows-the-unreasonable-effectiveness-of-open-8399705a20ef), identifying [fraudulent users of an online store](https://docs.google.com/presentation/d/1UdI5NY-mlHyseiRVbpTLyvbrHxY8RciHp5Vc-ZLrwmU/edit#slide=id.p), identifying [bots in an online auction](https://www.kaggle.com/c/facebook-recruiting-iv-human-or-bot/forums/t/14628/share-your-secret-sauce), predicting who will [subscribe to the next season of an orchestra](http://blog.kaggle.com/2015/01/05/kaggle-inclass-stanfords-getting-a-handel-on-data-science-winners-report/), and evaluating the [quality of e-commerce search engine results](http://blog.kaggle.com/2015/07/22/crowdflower-winners-interview-3rd-place-team-quartet/). +* [Our perfect submission](https://www.kaggle.com/c/restaurant-revenue-prediction/forums/t/13950/our-perfect-submission) is a fun read about how great performance on the [public leaderboard](https://www.kaggle.com/c/restaurant-revenue-prediction/leaderboard/public) does not guarantee that a model will generalize to new data. + +----- + +### Class 17: Decision Trees +* Decision trees ([notebook](notebooks/17_decision_trees.ipynb)) +* Exercise with Capital Bikeshare data ([notebook](notebooks/17_bikeshare_exercise.ipynb), [data](data/bikeshare.csv), [data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data)) + +**Homework:** +* Read the "Wisdom of the crowds" section from MLWave's post on [Human Ensemble Learning](http://mlwave.com/human-ensemble-learning/). +* **Optional:** Read the abstract from [Do We Need Hundreds of Classifiers to Solve Real World Classification Problems?](http://jmlr.csail.mit.edu/papers/volume15/delgado14a/delgado14a.pdf), as well as Kaggle CTO Ben Hamner's [comment](https://news.ycombinator.com/item?id=8719723) about the paper, paying attention to the mentions of "Random Forests". + +**Resources:** +* scikit-learn's documentation on [decision trees](http://scikit-learn.org/stable/modules/tree.html) includes a nice overview of trees as well as tips for proper usage. +* For a more thorough introduction to decision trees, read section 4.3 (23 pages) of [Introduction to Data Mining](http://www-users.cs.umn.edu/~kumar/dmbook/index.php). (Chapter 4 is available as a free download.) +* If you want to go deep into the different decision tree algorithms, this slide deck contains [A Brief History of Classification and Regression Trees](https://drive.google.com/file/d/0B-BKohKl-jUYQ3RpMEF0OGRUU3RHVGpHY203NFd3Z19Nc1ZF/view). +* [The Science of Singing Along](http://www.doc.gold.ac.uk/~mas03dm/papers/PawleyMullensiefen_Singalong_2012.pdf) contains a neat regression tree (page 136) for predicting the percentage of an audience at a music venue that will sing along to a pop song. +* Decision trees are common in the medical field for differential diagnosis, such as this classification tree for [identifying psychosis](http://www.psychcongress.com/sites/naccme.com/files/images/pcn/saundras/psychosis_decision_tree.pdf). + +----- + +### Class 18: Ensembling +* Finish decision trees lesson ([notebook](notebooks/17_decision_trees.ipynb)) +* Ensembling ([notebook](notebooks/18_ensembling.ipynb)) + * [Major League Baseball player data](data/hitters.csv) from 1986-87 + * [Data dictionary](https://cran.r-project.org/web/packages/ISLR/ISLR.pdf) (page 7) + +**Resources:** +* scikit-learn's documentation on [ensemble methods](http://scikit-learn.org/stable/modules/ensemble.html) covers both "averaging methods" (such as bagging and Random Forests) as well as "boosting methods" (such as AdaBoost and Gradient Tree Boosting). +* MLWave's [Kaggle Ensembling Guide](http://mlwave.com/kaggle-ensembling-guide/) is very thorough and shows the many different ways that ensembling can take place. +* Browse the excellent [solution paper](https://docs.google.com/viewer?url=https://raw.githubusercontent.com/ChenglongChen/Kaggle_CrowdFlower/master/Doc/Kaggle_CrowdFlower_ChenglongChen.pdf) from the winner of Kaggle's [CrowdFlower competition](https://www.kaggle.com/c/crowdflower-search-relevance) for an example of the work and insight required to win a Kaggle competition. +* [Interpretable vs Powerful Predictive Models: Why We Need Them Both](https://medium.com/@chris_bour/interpretable-vs-powerful-predictive-models-why-we-need-them-both-990340074979) is a short post on how the tactics useful in a Kaggle competition are not always useful in the real world. +* [Not Even the People Who Write Algorithms Really Know How They Work](http://www.theatlantic.com/technology/archive/2015/09/not-even-the-people-who-write-algorithms-really-know-how-they-work/406099/) argues that the decreased interpretability of state-of-the-art machine learning models has a negative impact on society. +* For an intuitive explanation of Random Forests, read Edwin Chen's answer to [How do random forests work in layman's terms?](http://www.quora.com/Random-Forests/How-do-random-forests-work-in-laymans-terms/answer/Edwin-Chen-1) +* [Large Scale Decision Forests: Lessons Learned](http://blog.siftscience.com/blog/2015/large-scale-decision-forests-lessons-learned) is an excellent post from Sift Science about their custom implementation of Random Forests. +* [Unboxing the Random Forest Classifier](http://nerds.airbnb.com/unboxing-the-random-forest-classifier/) describes a way to interpret the inner workings of Random Forests beyond just feature importances. +* [Understanding Random Forests: From Theory to Practice](http://arxiv.org/pdf/1407.7502v3.pdf) is an in-depth academic analysis of Random Forests, including details of its implementation in scikit-learn. + +----- + +### Class 19: Advanced scikit-learn and Clustering +* Advanced scikit-learn ([notebook](notebooks/19_advanced_sklearn.ipynb)) + * [StandardScaler](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html): standardizing features + * [Pipeline](http://scikit-learn.org/stable/modules/pipeline.html): chaining steps +* Clustering ([slides](slides/19_clustering.pdf), [notebook](notebooks/19_clustering.ipynb)) + * K-means: [documentation](http://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html), [visualization 1](http://tech.nitoyon.com/en/blog/2013/11/07/k-means/), [visualization 2](http://www.naftaliharris.com/blog/visualizing-k-means-clustering/) + * DBSCAN: [documentation](http://scikit-learn.org/stable/modules/generated/sklearn.cluster.DBSCAN.html), [visualization](http://www.naftaliharris.com/blog/visualizing-dbscan-clustering/) + +**Homework:** +* Reread [Understanding the Bias-Variance Tradeoff](http://scott.fortmann-roe.com/docs/BiasVariance.html). (The "answers" to the [guiding questions](homework/09_bias_variance.md) have been posted and may be helpful to you.) +* **Optional:** Watch these two excellent (and related) videos from Caltech's Learning From Data course: [bias-variance tradeoff](http://work.caltech.edu/library/081.html) (15 minutes) and [regularization](http://work.caltech.edu/library/121.html) (8 minutes). + +**scikit-learn Resources:** +* This is a longer example of [feature scaling](https://github.com/rasbt/pattern_classification/blob/master/preprocessing/about_standardization_normalization.ipynb) in scikit-learn, with additional discussion of the types of scaling you can use. +* [Practical Data Science in Python](http://radimrehurek.com/data_science_python/) is a long and well-written notebook that uses a few advanced scikit-learn features: pipelining, plotting a learning curve, and pickling a model. +* To learn how to use [GridSearchCV and RandomizedSearchCV](http://scikit-learn.org/stable/modules/grid_search.html) for parameter tuning, watch [How to find the best model parameters in scikit-learn](https://www.youtube.com/watch?v=Gol_qOgRqfA) (28 minutes) or read the [associated notebook](https://github.com/justmarkham/scikit-learn-videos/blob/master/08_grid_search.ipynb). +* Sebastian Raschka has a number of excellent resources for scikit-learn users, including a repository of [tutorials and examples](https://github.com/rasbt/pattern_classification), a library of machine learning [tools and extensions](http://rasbt.github.io/mlxtend/), a new [book](https://github.com/rasbt/python-machine-learning-book), and a semi-active [blog](http://sebastianraschka.com/blog/). +* scikit-learn has an incredibly active [mailing list](https://www.mail-archive.com/scikit-learn-general@lists.sourceforge.net/index.html) that is often much more useful than Stack Overflow for researching functions and asking questions. +* If you forget how to use a particular scikit-learn function that we have used in class, don't forget that this repository is fully searchable! + +**Clustering Resources:** +* For a very thorough introduction to clustering, read chapter 8 (69 pages) of [Introduction to Data Mining](http://www-users.cs.umn.edu/~kumar/dmbook/index.php) (available as a free download), or browse through the chapter 8 slides. +* scikit-learn's user guide compares many different [types of clustering](http://scikit-learn.org/stable/modules/clustering.html). +* This [PowerPoint presentation](http://www2.research.att.com/~volinsky/DataMining/Columbia2011/Slides/Topic6-Clustering.ppt) from Columbia's Data Mining class provides a good introduction to clustering, including hierarchical clustering and alternative distance metrics. +* An Introduction to Statistical Learning has useful videos on [K-means clustering](https://www.youtube.com/watch?v=aIybuNt9ps4&list=PL5-da3qGB5IBC-MneTc9oBZz0C6kNJ-f2) (17 minutes) and [hierarchical clustering](https://www.youtube.com/watch?v=Tuuc9Y06tAc&list=PL5-da3qGB5IBC-MneTc9oBZz0C6kNJ-f2) (15 minutes). +* This is an excellent interactive visualization of [hierarchical clustering](https://joyofdata.shinyapps.io/hclust-shiny/). +* This is a nice animated explanation of [mean shift clustering](http://spin.atomicobject.com/2015/05/26/mean-shift-clustering/). +* The [K-modes algorithm](http://www.cs.ust.hk/~qyang/Teaching/537/Papers/huang98extensions.pdf) can be used for clustering datasets of categorical features without converting them to numerical values. Here is a [Python implementation](https://github.com/nicodv/kmodes). +* Here are some fun examples of clustering: [A Statistical Analysis of the Work of Bob Ross](http://fivethirtyeight.com/features/a-statistical-analysis-of-the-work-of-bob-ross/) (with [data and Python code](https://github.com/fivethirtyeight/data/tree/master/bob-ross)), [How a Math Genius Hacked OkCupid to Find True Love](http://www.wired.com/2014/01/how-to-hack-okcupid/all/), and [characteristics of your zip code](http://www.esri.com/landing-pages/tapestry/). + +----- + +### Class 20: Regularization and Regular Expressions +* Regularization ([notebook](notebooks/20_regularization.ipynb)) + * Regression: [Ridge](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Ridge.html), [RidgeCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.RidgeCV.html), [Lasso](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Lasso.html), [LassoCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LassoCV.html) + * Classification: [LogisticRegression](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) + * Helper functions: [Pipeline](http://scikit-learn.org/stable/modules/pipeline.html), [GridSearchCV](http://scikit-learn.org/stable/modules/grid_search.html) +* Regular expressions + * [Baltimore homicide data](data/homicides.txt) + * [Regular expressions 101](https://regex101.com/#python): real-time testing of regular expressions + * [Reference guide](code/20_regex_reference.py) + * [Exercise](code/20_regex_exercise.py) + +**Homework:** +* Your final project is due next week! +* **Optional:** Make your final submissions to our Kaggle competition! It closes at 6:30pm ET on Tuesday 10/27. +* **Optional:** Read this classic paper, which may help you to connect many of the topics we have studied throughout the course: [A Few Useful Things to Know about Machine Learning](http://homes.cs.washington.edu/~pedrod/papers/cacm12.pdf). + +**Regularization Resources:** +* The scikit-learn user guide for [Generalized Linear Models](http://scikit-learn.org/stable/modules/linear_model.html) explains different variations of regularization. +* Section 6.2 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (14 pages) introduces both lasso and ridge regression. Or, watch the related videos on [ridge regression](https://www.youtube.com/watch?v=cSKzqb0EKS0&list=PL5-da3qGB5IB-Xdpj_uXJpLGiRfv9UVXI&index=6) (13 minutes) and [lasso regression](https://www.youtube.com/watch?v=A5I1G1MfUmA&index=7&list=PL5-da3qGB5IB-Xdpj_uXJpLGiRfv9UVXI) (15 minutes). +* For more details on lasso regression, read Tibshirani's [original paper](http://statweb.stanford.edu/~tibs/lasso/lasso.pdf). +* For a math-ier explanation of regularization, watch the last four videos (30 minutes) from week 3 of Andrew Ng's [machine learning course](https://www.coursera.org/learn/machine-learning/), or read the [related lecture notes](http://www.holehouse.org/mlclass/07_Regularization.html) compiled by a student. +* This [notebook](https://github.com/luispedro/PenalizedRegression/blob/master/PenalizedRegression.ipynb) from chapter 7 of [Building Machine Learning Systems with Python](https://www.packtpub.com/big-data-and-business-intelligence/building-machine-learning-systems-python) has a nice long example of regularized linear regression. +* There are some special considerations when using dummy encoding for categorical features with a regularized model. This [Cross Validated Q&A](https://stats.stackexchange.com/questions/69568/whether-to-rescale-indicator-binary-dummy-predictors-for-lasso) debates whether the dummy variables should be standardized (along with the rest of the features), and a comment on this [blog post](http://appliedpredictivemodeling.com/blog/2013/10/23/the-basics-of-encoding-categorical-data-for-predictive-models) recommends that the baseline level should not be dropped. + +**Regular Expressions Resources:** +* Google's Python Class includes an excellent [introductory lesson](https://developers.google.com/edu/python/regular-expressions) on regular expressions (which also has an associated [video](https://www.youtube.com/watch?v=kWyoYtvJpe4&index=4&list=PL5-da3qGB5IA5NwDxcEJ5dvt8F9OQP7q5)). +* Python for Informatics has a nice [chapter](http://www.pythonlearn.com/html-270/book012.html) on regular expressions. (If you want to run the examples, you'll need to download [mbox.txt](http://www.py4inf.com/code/mbox.txt) and [mbox-short.txt](http://www.py4inf.com/code/mbox-short.txt).) +* [Breaking the Ice with Regular Expressions](https://www.codeschool.com/courses/breaking-the-ice-with-regular-expressions/) is an interactive Code School course, though only the first "level" is free. +* If you want to go really deep with regular expressions, [RexEgg](http://www.rexegg.com/) includes endless articles and tutorials. +* [5 Tools You Didn't Know That Use Regular Expressions](http://blog.codeschool.io/2015/07/30/5-tools-you-didnt-know-that-use-regular-expressions/) demonstrates how regular expressions can be used with Excel, Word, Google Spreadsheets, Google Forms, text editors, and other tools. +* [Exploring Expressions of Emotions in GitHub Commit Messages](http://geeksta.net/geeklog/exploring-expressions-emotions-github-commit-messages/) is a fun example of how regular expressions can be used for data analysis, and [Emojineering](http://instagram-engineering.tumblr.com/post/118304328152/emojineering-part-2-implementing-hashtag-emoji) explains how Instagram uses regular expressions to detect emoji in hashtags. + +----- + +### Class 21: Course Review and Final Project Presentation +* Project presentations! +* [Data science review](https://docs.google.com/document/d/19gBCkmrbMpFFLPX8wa5daMnyl7J5BXhMV8JNJwgp1pk/edit?usp=sharing) + +**Resources:** +* scikit-learn's [machine learning map](http://scikit-learn.org/stable/tutorial/machine_learning_map/) may help you to choose the "best" model for your task. +* [Choosing a Machine Learning Classifier](http://blog.echen.me/2011/04/27/choosing-a-machine-learning-classifier/) is a short and highly readable comparison of several classification models, [Classifier comparison](http://scikit-learn.org/stable/auto_examples/classification/plot_classifier_comparison.html) is scikit-learn's visualization of classifier decision boundaries, [Comparing supervised learning algorithms](http://www.dataschool.io/comparing-supervised-learning-algorithms/) is a model comparison table that I created, and [Supervised learning superstitions cheat sheet](http://ryancompton.net/assets/ml_cheat_sheet/supervised_learning.html) is a more thorough comparison (with links to lots of useful resources). +* [Machine Learning Done Wrong](http://ml.posthaven.com/machine-learning-done-wrong), [Machine Learning Gremlins](https://www.youtube.com/watch?v=tleeC-KlsKA) (31 minutes), [Clever Methods of Overfitting](http://hunch.net/?p=22), and [Common Pitfalls in Machine Learning](http://danielnee.com/?p=155) all offer thoughtful advice on how to avoid common mistakes in machine learning. +* [Practical machine learning tricks from the KDD 2011 best industry paper](http://blog.david-andrzejewski.com/machine-learning/practical-machine-learning-tricks-from-the-kdd-2011-best-industry-paper/) and Andrew Ng's [Advice for applying machine learning](http://cs229.stanford.edu/materials/ML-advice.pdf) include slightly more advanced advice than the resources above. +* [An Empirical Comparison of Supervised Learning Algorithms](http://www.cs.cornell.edu/~caruana/ctp/ct.papers/caruana.icml06.pdf) is a readable research paper from 2006, which was also presented as a [talk](http://videolectures.net/solomon_caruana_wslmw/) (77 minutes). + +----- + +### Class 22: Final Project Presentation +* Project presentations! +* [What's next?](other/advice.md) + +----- + +## Additional Resources + +### Tidy Data +* [Good Data Management Practices for Data Analysis](https://www.prometheusresearch.com/good-data-management-practices-for-data-analysis-tidy-data-part-2/) briefly summarizes the principles of "tidy data". +* [Hadley Wickham's paper](http://www.jstatsoft.org/article/view/v059i10) explains tidy data in detail and includes lots of good examples. +* Example of a tidy dataset: [Bob Ross](https://github.com/fivethirtyeight/data/blob/master/bob-ross/elements-by-episode.csv) +* Examples of untidy datasets: [NFL ticket prices](https://github.com/fivethirtyeight/data/blob/master/nfl-ticket-prices/2014-average-ticket-price.csv), [airline safety](https://github.com/fivethirtyeight/data/blob/master/airline-safety/airline-safety.csv), [Jets ticket prices](https://github.com/fivethirtyeight/data/blob/master/nfl-ticket-prices/jets-buyer.csv), [Chipotle orders](https://github.com/TheUpshot/chipotle/blob/master/orders.tsv) +* If your co-workers tend to create spreadsheets that are [unreadable by computers](https://bosker.wordpress.com/2014/12/05/the-government-statistical-services-terrible-spreadsheet-advice/), they may benefit from reading these [tips for releasing data in spreadsheets](http://www.clean-sheet.org/). (There are some additional suggestions in this [answer](http://stats.stackexchange.com/questions/83614/best-practices-for-creating-tidy-data/83711#83711) from Cross Validated.) + +### Databases and SQL +* This [GA slide deck](https://github.com/justmarkham/DAT5/blob/master/slides/20_sql.pdf) provides a brief introduction to databases and SQL. The [Python script](https://github.com/justmarkham/DAT5/blob/master/code/20_sql.py) from that lesson demonstrates basic SQL queries, as well as how to connect to a SQLite database from Python and how to query it using Pandas. +* The repository for this [SQL Bootcamp](https://github.com/brandonmburroughs/sql_bootcamp) contains an extremely well-commented SQL script that is suitable for walking through on your own. +* This [GA notebook](https://github.com/podopie/DAT18NYC/blob/master/classes/17-relational_databases.ipynb) provides a shorter introduction to databases and SQL that helpfully contrasts SQL queries with Pandas syntax. +* [SQLZOO](http://sqlzoo.net/wiki/SQL_Tutorial), [Mode Analytics](http://sqlschool.modeanalytics.com/), [Khan Academy](https://www.khanacademy.org/computing/computer-programming/sql), [Codecademy](https://www.codecademy.com/courses/learn-sql), [Datamonkey](http://datamonkey.pro/guess_sql/lessons/), and [Code School](http://campus.codeschool.com/courses/try-sql/contents) all have online beginner SQL tutorials that look promising. Code School also offers an [advanced tutorial](https://www.codeschool.com/courses/the-sequel-to-sql/), though it's not free. +* [w3schools](http://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all) has a sample database that allows you to practice SQL from your browser. Similarly, Kaggle allows you to query a large SQLite database of [Reddit Comments](https://www.kaggle.com/c/reddit-comments-may-2015/data) using their online "Scripts" application. +* [What Every Data Scientist Needs to Know about SQL](http://joshualande.com/data-science-sql/) is a brief series of posts about SQL basics, and [Introduction to SQL for Data Scientists](http://bensresearch.com/downloads/SQL.pdf) is a paper with similar goals. +* [10 Easy Steps to a Complete Understanding of SQL](https://web.archive.org/web/20150402234726/http://tech.pro/tutorial/1555/10-easy-steps-to-a-complete-understanding-of-sql) is a good article for those who have some SQL experience and want to understand it at a deeper level. +* SQLite's article on [Query Planning](http://www.sqlite.org/queryplanner.html) explains how SQL queries "work". +* [A Comparison Of Relational Database Management Systems](https://www.digitalocean.com/community/tutorials/sqlite-vs-mysql-vs-postgresql-a-comparison-of-relational-database-management-systems) gives the pros and cons of SQLite, MySQL, and PostgreSQL. +* If you want to go deeper into databases and SQL, Stanford has a well-respected series of [14 mini-courses](https://lagunita.stanford.edu/courses/DB/2014/SelfPaced/about). +* [Blaze](http://blaze.pydata.org) is a Python package enabling you to use Pandas-like syntax to query data living in a variety of data storage systems. + +### Recommendation Systems +* This [GA slide deck](https://github.com/justmarkham/DAT4/blob/master/slides/18_recommendation_engines.pdf) provides a brief introduction to recommendation systems, and the [Python script](https://github.com/justmarkham/DAT4/blob/master/code/18_recommenders_soutions.py) from that lesson demonstrates how to build a simple recommender. +* Chapter 9 of [Mining of Massive Datasets](http://infolab.stanford.edu/~ullman/mmds/bookL.pdf) (36 pages) is a more thorough introduction to recommendation systems. +* Chapters 2 through 4 of [A Programmer's Guide to Data Mining](http://guidetodatamining.com/) (165 pages) provides a friendlier introduction, with lots of Python code and exercises. +* The Netflix Prize was the famous competition for improving Netflix's recommendation system by 10%. Here are some useful articles about the Netflix Prize: + * [Netflix Recommendations: Beyond the 5 stars](http://techblog.netflix.com/2012/04/netflix-recommendations-beyond-5-stars.html): Two posts from the Netflix blog summarizing the competition and their recommendation system + * [Winning the Netflix Prize: A Summary](http://blog.echen.me/2011/10/24/winning-the-netflix-prize-a-summary/): Overview of the models and techniques that went into the winning solution + * [A Perspective on the Netflix Prize](http://www2.research.att.com/~volinsky/papers/chance.pdf): A summary of the competition by the winning team +* This [paper](http://www.cs.umd.edu/~samir/498/Amazon-Recommendations.pdf) summarizes how Amazon.com's recommendation system works, and this [Stack Overflow Q&A](http://stackoverflow.com/questions/2323768/how-does-the-amazon-recommendation-feature-work) has some additional thoughts. +* [Facebook](https://code.facebook.com/posts/861999383875667/recommending-items-to-more-than-a-billion-people/) and [Etsy](https://codeascraft.com/2014/11/17/personalized-recommendations-at-etsy/) have blog posts about how their recommendation systems work. +* [The Global Network of Discovery](http://www.gnod.com/) provides some neat recommenders for music, authors, and movies. +* [The People Inside Your Machine](http://www.npr.org/blogs/money/2015/01/30/382657657/episode-600-the-people-inside-your-machine) (23 minutes) is a Planet Money podcast episode about how Amazon Mechanical Turks can assist with recommendation engines (and machine learning in general). +* Coursera has a [course](https://www.coursera.org/learn/recommender-systems) on recommendation systems, if you want to go even deeper into the material. diff --git a/code/00_python_beginner_workshop.py b/code/00_python_beginner_workshop.py new file mode 100644 index 0000000..d47f9e0 --- /dev/null +++ b/code/00_python_beginner_workshop.py @@ -0,0 +1,81 @@ +''' +Python Beginner Workshop +''' + +''' +Multi-line comments go between 3 quotation marks. +You can use single or double quotes. +''' + +# One-line comments are preceded by the pound symbol + + +# BASIC DATA TYPES + +x = 5 # creates an object +print type(x) # check the type: int (not declared explicitly) +type(x) # automatically prints +type(5) # assigning it to a variable is not required + +type(5.0) # float +type('five') # str +type(True) # bool + + +# LISTS + +nums = [5, 5.0, 'five'] # multiple data types +nums # print the list +type(nums) # check the type: list +len(nums) # check the length: 3 +nums[0] # print first element +nums[0] = 6 # replace a list element + +nums.append(7) # list 'method' that modifies the list +help(nums.append) # help on this method +help(nums) # help on a list object +nums.remove('five') # another list method + +sorted(nums) # 'function' that does not modify the list +nums # it was not affected +nums = sorted(nums) # overwrite the original list +sorted(nums, reverse=True) # optional argument + + +# FUNCTIONS + +def give_me_five(): # function definition ends with colon + return 5 # indentation required for function body + +give_me_five() # prints the return value (5) +num = give_me_five() # assigns return value to a variable, doesn't print it + +def calc(x, y, op): # three parameters (without any defaults) + if op == 'add': # conditional statement + return x + y + elif op == 'subtract': + return x - y + else: + print 'Valid operations: add, subtract' + +calc(5, 3, 'add') +calc(5, 3, 'subtract') +calc(5, 3, 'multiply') +calc(5, 3) + + +# EXERCISE: Write a function that takes two parameters (hours and rate), and +# returns the total pay. + +def compute_pay(hours, rate): + return hours * rate + +compute_pay(40, 10.50) + + +# FOR LOOPS + +# print each list element in uppercase +fruits = ['apple', 'banana', 'cherry'] +for fruit in fruits: + print fruit.upper() diff --git a/code/00_python_intermediate_workshop.py b/code/00_python_intermediate_workshop.py new file mode 100644 index 0000000..ee0facb --- /dev/null +++ b/code/00_python_intermediate_workshop.py @@ -0,0 +1,239 @@ +''' +Python Intermediate Workshop +''' + +''' +LISTS +''' + +# creating +a = [1, 2, 3, 4, 5] # create lists using brackets + +# slicing +a[0] # returns 1 (Python is zero indexed) +a[1:3] # returns [2, 3] (inclusive of first index but exclusive of second) +a[-1] # returns 5 (last element) + +# appending +a[5] = 6 # error because you can't assign outside the existing range +a.append(6) # list method that appends 6 to the end +a = a + [0] # use plus sign to combine lists + +# checking length +len(a) # returns 7 + +# checking type +type(a) # returns list +type(a[0]) # returns int + +# sorting +sorted(a) # sorts the list +sorted(a, reverse=True) # reverse=True is an 'optional argument' +sorted(a, True) # error because optional arguments must be named + + +''' +STRINGS +''' + +# creating +a = 'hello' # can use single or double quotes + +# slicing +a[0] # returns 'h' (works like list slicing) +a[1:3] # returns 'el' +a[-1] # returns 'o' + +# concatenating +a + ' there' # use plus sign to combine strings +5 + ' there' # error because they are different types +str(5) + ' there' # cast 5 to a string in order for this to work + +# uppercasing +a[0] = 'H' # error because strings are immutable (can't overwrite characters) +a.upper() # string method (this method doesn't exist for lists) + +# checking length +len(a) # returns 5 (number of characters) + + +''' +EXERCISE: +1. Create a list of the first names of your family members. +2. Print the name of the last person in the list. +3. Print the length of the name of the first person in the list. +4. Change one of the names from their real name to their nickname. +5. Append a new person to the list. +6. Change the name of the new person to lowercase using the string method 'lower'. +7. Sort the list in reverse alphabetical order. +Bonus: Sort the list by the length of the names (shortest to longest). +''' + +names = ['Wesley', 'Larry', 'Wan'] # list of names +names[-1] # last element +len(names[0]) # length of first string +names[0] = 'Wes' # overwrite existing element +names.append('Gabriel') # append new element +names[-1] = names[-1].lower() # change last string to be lowercase +sorted(names, reverse=True) # sort the list in reverse order +sorted(names, key=len) # sort the list by length + + +''' +FOR LOOPS AND LIST COMPREHENSIONS +''' + +# for loop to print 1 through 5 +nums = range(1, 6) # create a list of 1 through 5 +for num in nums: # num 'becomes' each list element for one loop + print num + +# for loop to print 1, 3, 5 +other = [1, 3, 5] # create a different list +for x in other: # name 'x' does not matter, not defined in advance + print x # this loop only executes 3 times (not 5) + +# for loop to create a list of 2, 4, 6, 8, 10 +doubled = [] # create empty list to store results +for num in nums: # loop through nums (will execute 5 times) + doubled.append(num*2) # append the double of the current value of num + +# equivalent list comprehension +doubled = [num*2 for num in nums] # expression (num*2) goes first, brackets + # indicate we are storing results in a list + + +''' +EXERCISE 1: +Given that: letters = ['a', 'b', 'c'] +Write a list comprehension that returns: ['A', 'B', 'C'] + +EXERCISE 2 (BONUS): +Given that: word = 'abc' +Write a list comprehension that returns: ['A', 'B', 'C'] + +EXERCISE 3 (BONUS): +Given that: fruits = ['Apple', 'Banana', 'Cherry'] +Write a list comprehension that returns: ['A', 'B', 'C'] +''' + +letters = ['a', 'b', 'c'] +[letter.upper() for letter in letters] # iterate through a list of strings, + # and each string has an 'upper' method +word = 'abc' +[letter.upper() for letter in word] # iterate through each character + +fruits = ['Apple', 'Banana', 'Cherry'] +[fruit[0] for fruit in fruits] # slice the first character from each string + + +''' +DICTIONARIES +''' + +# dictionaries are made of key-value pairs (like a real dictionary) +family = {'dad':'Homer', 'mom':'Marge', 'size':2} + +# check the length +len(family) # returns 3 (number of key-value pairs) + +# use the key to look up a value (fast operation regardless of dictionary size) +family['dad'] # returns 'Homer' + +# can't use a value to look up a key +family['Homer'] # error + +# dictionaries are unordered +family[0] # error + +# add a new entry +family['cat'] = 'snowball' + +# keys must be unique, so this edits an existing entry +family['cat'] = 'snowball ii' + +# delete an entry +del family['cat'] + +# keys can be strings or numbers or tuples, values can be any type +family['kids'] = ['bart', 'lisa'] # value can be a list + +# accessing a list element within a dictionary +family['kids'][0] # returns 'bart' + +# useful methods +family.keys() # returns list: ['dad', 'kids', 'mom', 'size'] +family.values() # returns list: ['Homer', ['bart', 'lisa'], 'Marge', 2] +family.items() # returns list of tuples: + # [('dad', 'Homer'), ('kids', ['bart', 'lisa']), ('mom', 'Marge'), ('size', 2)] + + +''' +EXERCISE: +1. Print the name of the mom. +2. Change the size to 5. +3. Add 'Maggie' to the list of kids. +4. Fix 'bart' and 'lisa' so that the first letter is capitalized. +Bonus: Do this last step using a list comprehension. +''' + +family['mom'] # returns 'Marge' +family['size'] = 5 # replaces existing value for 'size' +family['kids'].append('Maggie') # access a list, then append 'Maggie' to it +family['kids'][0] = 'Bart' # capitalize names by overwriting them +family['kids'][1] = 'Lisa' + +# or, capitalize using a list comprehension and the 'capitalize' string method +family['kids'] = [kid.capitalize() for kid in family['kids']] + +# or, slice the string, uppercase the first letter, and concatenate with other letters +family['kids'] = [kid[0].upper() + kid[1:] for kid in family['kids']] + + +''' +REQUESTS +''' + +# import module (make its functions available) +import requests + +# use requests to talk to the web +r = requests.get('http://www.google.com') +type(r) # special 'response' object +r.text # HTML of web page stored as string +type(r.text) # string is encoded as unicode +r.text[0] # string can be sliced like any string + + +''' +APIs + +What is an API? +- Application Programming Interface +- Structured way to expose specific functionality and data access to users +- Web APIs usually follow the "REST" standard + +How to interact with a REST API: +- Make a "request" to a specific URL (an "endpoint"), and get the data back in a "response" +- Most relevant request method for us is GET (other methods: POST, PUT, DELETE) +- Response is often JSON format +- Web console is sometimes available (allows you to explore an API) + +API Providers: https://apigee.com/providers +Echo Nest API Console: https://apigee.com/console/echonest +API key: http://bit.ly/myechonest +''' + +# request data from the Echo Nest API +r = requests.get('http://developer.echonest.com/api/v4/artist/top_hottt?api_key=KBGUPZPJZS9PHWNIN&format=json') +r.text # looks like a dictionary +type(r.text) # actually stored as a string +r.json() # decodes JSON +type(r.json()) # JSON can be represented as a dictionary +top = r.json() # store that dictionary + +# store the artist data +artists = top['response']['artists'] # list of 15 dictionaries + +# create a list of artist names only +names = [artist['name'] for artist in artists] # can iterate through list to access dictionaries diff --git a/code/02_command_line.md b/code/02_command_line.md new file mode 100644 index 0000000..a960d44 --- /dev/null +++ b/code/02_command_line.md @@ -0,0 +1,159 @@ +## Introduction to the Command Line + +This document outlines basic usage of the command line. For Linux and Mac users, these commands should work in **Terminal**. For Windows users, these should work in **Git Bash**. + +### What is the command line? + +The Command Line Interface (CLI) is a way of interacting with your computer using text-based commands. This is different from the way most people interact with their computers, using their mouse and a Graphical User Interface (GUI). + +### Why should I use it? + +Once you become comfortable with the basics, it can be a more powerful way to use your computer. You're able to do many things more quickly and programatically. + +### General format for commands + +` - ` +* `` is the action we want the computer to take +* `` (or "flags") modify the behavior of the command +* `` are the things we want the command to act on + +For Linux and Mac users, you can get view the **man**ual for a command by typing `man `. For Windows users, you can view the help page by typing ` --help`. + +### Tips + +* If there are spaces in file or directory names, use a "\" to "escape" the space characters, or just put the entire file path in quotes. +* After typing the first few letters of a file or directory name, you can hit Tab to auto-complete the name. (This often auto-escapes spaces for you.) +* Use the up and down arrow keys to navigate previously entered commands. + +### File paths + +A **relative file path** specifies the path to a file, taking into account your current working directory. For example, if you were to give someone "relative" directions to your house, you would give them directions from their current location (the relative path from where they are to where you are). + +An **absolute file path** specifies the complete path to a file, ignoring your current working directory. For example, if you were to give someone "absolute" directions to your house, you would start by telling them to be on earth, then go to your continent, then go to your country, then go to your region, etc. + + +### Basic commands + +##### `pwd` +* **p**rints **w**orking **d**irectory (the directory you are currently in) + +##### `ls` +* **l**i**s**ts files and subdirectories in your working directory +* `ls -a` lists **a**ll files, including hidden files +* `ls -l` lists the files in a **l**ong format with extra information (permissions, size, last modified date, etc.) +* `ls *` also lists the contents of subdirectories (one level deep) in your working directory +* `ls ` lists files in a specific directory (without changing your working directory) + +##### `clear` +* **clear**s all output from your console + +##### `cd` +* `cd ` **c**hanges **d**irectory to the path you specify, which can be a relative path or an absolute path +* `cd ..` moves you "up" one directory (to the parent directory) +* `cd` moves you to your "home" directory + +##### `mkdir` +* `mkdir ` **m**a**k**es a new **dir**ectory called `` + +##### `touch` +* `touch ` creates an empty file called `` +* This is useful for creating empty files to be edited at a later time. +* You can create multiple empty files with a single command: `touch ...` + +##### `rm -i` +* `rm ` **r**e**m**oves (deletes) a file permanently +* `rm -i ` removes files in **i**nteractive mode, in which you are prompted to confirm that you really want to delete the file. It's best to always use `rm -i`. +* `rm -ir ` removes a directory and **r**ecursively deletes all of its contents + +##### `mv` +* `mv ` **m**o**v**es a file from its current location to `` +* `mv ` renames a file without changing its location + +##### `cp` +* `cp ` **c**o**p**ies a file from its current location to ``, leaving the original file unchanged +* `cp ` copies a file without changing its location + + +### Pre-class exercise +* Open your command line interface. +* Navigate to your Desktop, and confirm you are there: + * Print your working directory (it should end with `Desktop`). + * List your files and subdirectories (they should match what you see on your Desktop). +* Create a directory called `project`. +* Navigate to the `project` directory, and create the following files in it: `draft_paper.md`, `plot1.png`, `plot2.png`. +* Create two subdirectories in the `project` directory: `code`, `data` +* Navigate to the `code` subdirectory, and create the following files in it: `processing.py`, `exploration.py`. +* Navigate to the `data` subdirectory, and create the following files in it: `original.csv`, `clean.csv`, `other.csv`. +* Make a copy of `draft_paper.md` called `final_paper.md`. +* Rename `plot1.png` as `scatterplot.png`, and rename `plot2.png` as `histogram.png`. +* Create a subdirectory called `viz`, and then move `scatterplot.png` and `histogram.png` to `viz`. +* Delete `other.csv` from the `data` subdirectory. +* Navigate back to `project`, and then print out (with a single command) all of its files, subdirectories, and the contents of those subdirectories. The output should look similar to [this image](../other/02_exercise_output.png). +* Viewing this [collapsible tree diagram](../other/02_file_tree.png) may help you to visualize the directory structure that we have created. + + +### Intermediate commands + +##### `head` +* `head ` prints the **head** (the first 10 lines) of the file +* `head -n20 ` prints the first 20 lines of the file +* This is useful for previewing the contents of a large file without opening it. + +##### `tail` +* `tail ` prints the **tail** (the last 10 lines) of the file + +##### `cat` +* `cat ` prints the entire file + +##### `less` +* `less ` allows you to page or scroll through the file +* Hit the spacebar to go down a page, use the arrow keys to scroll up and down, and hit `q` to exit. + +##### `wc` +* `wc ` returns the **c**ount of lines, **w**ords, and characters in a file +* `wc -l ` only counts lines, `wc -w ` only counts words, and `wc -c ` only counts characters +* A "word" is defined as any set of characters delimited by a space. + +##### `find` +* `find -name ` will recursively search the specified path (and its subdirectories) and **find** files and directories with a given `` + * Use `.` for the `` to refer to the working directory. +* For the ``, you can search for an exact match, or use wildcard characters to search for a partial match: + * `*` specifies any number of any characters, such as `find . -name *.py` or `find . -name *data*.*` + * `?` specifies one character, such as `find . -name ??_*.*` + +##### `grep` +* `grep ` searches a file for a **r**egular **e**xpression **p**attern and prints the matching lines + * The pattern should be in quotation marks to allow for multiple words. + * The pattern is case-sensitive by default, but you can use the `-i` option to **i**gnore case. + * You can use wildcards in the filename to search multiple files, but it only searches the working directory (not subdirectories). +* `grep -r ` does a **r**ecursive search of the path (checks subdirectories) for matches within files + * Use `.` for the `` to refer to the working directory. +* `grep ` does a **g**lobal search (of your entire computer) for matches + * Hit `Ctrl + c` if you want to cancel the search. +* Much more complex string-matching patterns can be used. + +##### `|` +* ` | ` pipes the results from `` into ``, and then the results of `` are printed to the console + +##### `>` +* ` > ` takes the output of `` and saves it in `` +* This will overwrite the file if it already exists. + +##### `>>` +* ` >> ` takes the output of `` and appends it to `` +* This will create the file if it does not yet exist. + + +### Advanced commands + +##### `cut` +* `cut -f1,2 ` **cut**s a tab-delimited file into columns and returns the first two **f**ields +* `cut -f1,2 -d, ` indicates that the file is **d**elimited by commas + +##### `sort` +* `sort ` **sort**s a file by the first field + +##### `uniq` +* `uniq ` discards all but one of the successive identical lines (thus it only keeps **uniq**ue lines) +* `uniq -c ` also records the **c**ount of the number of occurrences +* Because lines must be successive to be counted as identical, you will usually use `sort` before `uniq`. diff --git a/code/03_file_reading.py b/code/03_file_reading.py new file mode 100644 index 0000000..90049e1 --- /dev/null +++ b/code/03_file_reading.py @@ -0,0 +1,102 @@ +''' +Lesson on file reading using Airline Safety Data +https://github.com/fivethirtyeight/data/tree/master/airline-safety +''' + +# read the whole file at once, return a single string (including newlines) +# 'rU' mode (read universal) converts different line endings into '\n' +f = open('airlines.csv', mode='rU') +file_string = f.read() +f.close() + +# use a context manager to automatically close your file +with open('airlines.csv', mode='rU') as f: + file_string = f.read() + +# read the file into a list (each list element is one row) +with open('airlines.csv', mode='rU') as f: + file_list = [] + for row in f: + file_list.append(row) + +# do the same thing using a list comprehension +with open('airlines.csv', mode='rU') as f: + file_list = [row for row in f] + +# side note: splitting strings +'hello DAT students'.split() +'hello DAT students'.split('e') + +# split each string (at the commas) into a list +with open('airlines.csv', mode='rU') as f: + file_nested_list = [row.split(',') for row in f] + +# do the same thing using the csv module +import csv +with open('airlines.csv', mode='rU') as f: + file_nested_list = [row for row in csv.reader(f)] + +# separate the header and data +header = file_nested_list[0] +data = file_nested_list[1:] + +''' +EXERCISES: + +1. Create a list containing the average number of incidents per year for each airline. +Example for Aer Lingus: (2 + 0)/30 = 0.07 +Expected output: [0.07, 2.73, 0.23, ...] + +2. Create a list of airline names (without the star). +Expected output: ['Aer Lingus', 'Aeroflot', 'Aerolineas Argentinas', ...] + +3. Create a list (of the same length) that contains 1 if there's a star and 0 if not. +Expected output: [0, 1, 0, ...] + +4. BONUS: Create a dictionary in which the key is the airline name (without the star) + and the value is the average number of incidents. +Expected output: {'Aer Lingus': 0.07, 'Aeroflot': 2.73, ...} +''' + +# Part 1 +incidents = [round((int(row[2]) + int(row[5])) / float(30), 2) for row in data] + +# Parts 2 and 3 +airlines = [] +starred = [] +for row in data: + if row[0][-1] == '*': + starred.append(1) + airlines.append(row[0][:-1]) + else: + starred.append(0) + airlines.append(row[0]) + +# Part 4 +airline_incidents = dict(zip(airlines, incidents)) + +''' +A few extra things that will help you with the homework +''' + +# 'set' data structure is useful for gathering unique elements +my_list = [1, 2, 1] +set(my_list) # returns a set of 1, 2 +len(set(my_list)) # count of unique elements + +# 'in' statement is useful for lists +1 in my_list # True +3 in my_list # False + +# 'in' is useful for strings (checks for substrings) +my_string = 'hello there' +'the' in my_string # True +'then' in my_string # False + +# 'in' is useful for dictionaries (checks keys but not values) +my_dict = {'name':'Kevin', 'title':'instructor'} +'name' in my_dict # True +'Kevin' in my_dict # False + +# 'count' method for strings counts how many times a character appears +my_string.count('e') # 3 diff --git a/code/03_python_homework_chipotle.py b/code/03_python_homework_chipotle.py new file mode 100644 index 0000000..1ebd8c2 --- /dev/null +++ b/code/03_python_homework_chipotle.py @@ -0,0 +1,120 @@ +''' +Python Homework with Chipotle data +https://github.com/TheUpshot/chipotle +''' + +''' +BASIC LEVEL +PART 1: Read in the file with csv.reader() and store it in an object called 'file_nested_list'. +Hint: This is a TSV file, and csv.reader() needs to be told how to handle it. + https://docs.python.org/2/library/csv.html +''' + +import csv + +# specify that the delimiter is a tab character +with open('chipotle.tsv', mode='rU') as f: + file_nested_list = [row for row in csv.reader(f, delimiter='\t')] + + +''' +BASIC LEVEL +PART 2: Separate 'file_nested_list' into the 'header' and the 'data'. +''' + +header = file_nested_list[0] +data = file_nested_list[1:] + + +''' +INTERMEDIATE LEVEL +PART 3: Calculate the average price of an order. +Hint: Examine the data to see if the 'quantity' column is relevant to this calculation. +Hint: Think carefully about the simplest way to do this! +''' + +# count the number of unique order_id's +# note: you could assume this is 1834 since that's the maximum order_id, but it's best to check +num_orders = len(set([row[0] for row in data])) # 1834 + +# create a list of prices +# note: ignore the 'quantity' column because the 'item_price' takes quantity into account +prices = [float(row[4][1:-1]) for row in data] # strip the dollar sign and trailing space + +# calculate the average price of an order and round to 2 digits +round(sum(prices) / num_orders, 2) # $18.81 + + +''' +INTERMEDIATE LEVEL +PART 4: Create a list (or set) of all unique sodas and soft drinks that they sell. +Note: Just look for 'Canned Soda' and 'Canned Soft Drink', and ignore other drinks like 'Izze'. +''' + +# if 'item_name' includes 'Canned', append 'choice_description' to 'sodas' list +sodas = [] +for row in data: + if 'Canned' in row[2]: + sodas.append(row[3][1:-1]) # strip the brackets + +# equivalent list comprehension (using an 'if' condition) +sodas = [row[3][1:-1] for row in data if 'Canned' in row[2]] + +# create a set of unique sodas +unique_sodas = set(sodas) + + +''' +ADVANCED LEVEL +PART 5: Calculate the average number of toppings per burrito. +Note: Let's ignore the 'quantity' column to simplify this task. +Hint: Think carefully about the easiest way to count the number of toppings! +''' + +# keep a running total of burritos and toppings +burrito_count = 0 +topping_count = 0 + +# calculate number of toppings by counting the commas and adding 1 +# note: x += 1 is equivalent to x = x + 1 +for row in data: + if 'Burrito' in row[2]: + burrito_count += 1 + topping_count += (row[3].count(',') + 1) + +# calculate the average topping count and round to 2 digits +round(topping_count / float(burrito_count), 2) # 5.40 + + +''' +ADVANCED LEVEL +PART 6: Create a dictionary in which the keys represent chip orders and + the values represent the total number of orders. +Expected output: {'Chips and Roasted Chili-Corn Salsa': 18, ... } +Note: Please take the 'quantity' column into account! +Optional: Learn how to use 'defaultdict' to simplify your code. +''' + +# start with an empty dictionary +chips = {} + +# if chip order is not in dictionary, then add a new key/value pair +# if chip order is already in dictionary, then update the value for that key +for row in data: + if 'Chips' in row[2]: + if row[2] not in chips: + chips[row[2]] = int(row[1]) # this is a new key, so create key/value pair + else: + chips[row[2]] += int(row[1]) # this is an existing key, so add to the value + +# defaultdict saves you the trouble of checking whether a key already exists +from collections import defaultdict +dchips = defaultdict(int) +for row in data: + if 'Chips' in row[2]: + dchips[row[2]] += int(row[1]) + + +''' +BONUS: Think of a question about this data that interests you, and then answer it! +''' diff --git a/code/03_python_homework_chipotle_explained_nb.py b/code/03_python_homework_chipotle_explained_nb.py new file mode 100644 index 0000000..5af3f20 --- /dev/null +++ b/code/03_python_homework_chipotle_explained_nb.py @@ -0,0 +1,473 @@ +# # Python Homework with Chipotle Data - Explained +# +# *Original version written by [Alex Sherman](https://www.linkedin.com/in/alexjmsherman)* + +# ## Part 1 +# +# - Read in the file with csv.reader() and store it in an object called 'file_nested_list'. +# - Hint: This is a TSV file, and csv.reader() needs to be told how to handle it. + +# Change the working directory to the 'data' directory + + +# To use csv.reader, we must import the csv module +import csv + +# The csv.reader has a delimeter parameter, which we set to '\t' to indicate that the file is tab-separated +with open('chipotle.tsv', mode='rU') as f: # We temporarily refer to the file by the variable name f for file + file_nested_list = [row for row in csv.reader(f, delimiter='\t')] # Create a list by looping through each line in f + + +# ### Why use csv.reader? +# +# As stated in the [CSV file reading and writing documentation](https://docs.python.org/2/library/csv.html): +# +# > There is no "CSV standard", so the format is operationally defined by the many applications which +# read and write it. The lack of a standard means that subtle differences often exist in the data +# produced and consumed by different applications. These differences can make it annoying to process +# CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the +# overall format is similar enough that it is possible to write a single module which can efficiently +# manipulate such data, hiding the details of reading and writing the data from the programmer. +# +# In other words, depending on the source, there may be intricacies in the data format. These are not always easy to distinguish - for instance, non-visible new line characters. The csv.reader module is built to handle these intricacies, and thus provides an efficient way to load data. +# +# This is why we prefer: `file_nested_list = [row for row in csv.reader(f, delimiter='\t')]` +# +# Instead of: `file_nested_list = [row.split('\t') for row in f]` + +# ## Part 2 +# +# - Separate 'file_nested_list' into the 'header' and the 'data'. + +header = file_nested_list[0] +data = file_nested_list[1:] + + +# ## Part 3 +# +# - Calculate the average price of an order. +# - **Hint:** Examine the data to see if the 'quantity' column is relevant to this calculation. +# - **Hint:** Think carefully about the simplest way to do this! + +# We want to find the average price of an order. This means we need the **sum of the price of all orders** and the **total number of orders**. + +# ### Calculating the sum of the price of all orders + +# After exploring our data for a minute, we find two orders for the same item - Chicken Bowl - differing by the quantity +print header +print data[4] +print data[5] + + +# We see that the item_price field reflects the quantity ordered. Thus, to calculate the total value of all orders, we can safely ignore the quantity column because the item_price takes quantity into account. + +# We want the sum of all the order prices - the last item in each list. Here are two ways we could get this data: + +# Option 1 +prices = [row[4] for row in data] # slice to position four + +# Option 2 +prices = [row[-1] for row in data] # slice to the last position + +# Let's look at the first five results: +prices[0:5] + + +# Each item in the list is a sting. We can tell this because the results above are wrapped in quotes. +# To confirm, let's explicity check the type of the first item in the list: +type(prices[0]) + + +# Since we want to do a calculation, we need to change the type from string to float. +# To do this, we first need to remove the $. Here are two different ways to accomplish this: + +# Option 1 +prices = [row[4][1:] for row in data] # remove the dollar sign by slicing + +# Option 2 +prices = [row[4].replace('$', '') for row in data] # remove the dollar sign by replacing '$' with an empty string + +# Let's look at the first five results: +prices[0:5] + + +# Now we can convert our results to floats +prices = [float(row[4][1:]) for row in data] + +# Let's look at the first five results and check the type of the first item: +print prices[0:5] +print type(prices[0]) + + +# Finally, we calculate our total order sum with the built-in sum function +total_order_sum = sum([float(row[4][1:]) for row in data]) +total_order_sum + + +# ### Calculating the total number of orders + +# We can look at the first and last items in the list +print header +print data[0] +print data[-1] + + +# It seems that there are 1834 orders. You could assume this since that's the maximum order_id, but it is best to check, as we are not certain that the data is clean. If the data was not sorted by order or if there was a missing order, then 1834 might not be correct. +# +# So, let's confirm this assumption: + +# First, let's build a list of the order_ids +order_ids = [row[0] for row in data] + +# Let's look at the first ten results +order_ids[0:10] + + +# We only want to count each order once. We can get the distinct order values with the set function: +set(order_ids[0:10]) + + +# Only keep unique order_ids +unique_order_ids = set(order_ids) + +# Use the len function to determine the number of unique order_ids +num_orders = len(unique_order_ids) +num_orders + + +# ### Calculating the average price + +# Finally, we answer the question by calculating the average +average_order_price = total_order_sum / num_orders +average_order_price + + +# Let's recap by looking at the final code: +total_order_sum = sum([float(row[4][1:]) for row in data]) +num_orders = len(set([row[0] for row in data])) +average_order_price = round(total_order_sum / num_orders, 2) # Let's round our result to 2 decimal places +average_order_price + + +# ## Part 4 +# +# - Create a list (or set) of all unique sodas and soft drinks that they sell. +# - **Note:** Just look for 'Canned Soda' and 'Canned Soft Drink', and ignore other drinks like 'Izze'. + +# First let's look at all of the items +distinct_items = set([row[2] for row in data]) +distinct_items + + +# Our first goal is to reduce the dataset to only soda and soft drink orders. +# +# It appears that the only items that use the word 'Canned' are 'Canned Soda' and 'Canned Soft Drink.' +# +# This means we only need to use one filter criteria: **Look for rows with the word 'Canned'** + +# Create a list only including soda and soft drink orders +soda_orders = [] +for row in data: + if 'Canned' in row[2]: + soda_orders.append(row) + +# Let's look at the first five results: +soda_orders[0:5] + + +# This can also be done using a list comprehension with an 'if' condition +soda_orders = [row for row in data if 'Canned' in row[2]] + + +# Just out of interest, let's look at two other ways we could have filtered the data: + +soda_orders = [row for row in data if 'Canned Soda' in row[2] or 'Canned Soft Drink' in row[2]] +soda_orders[0:5] + + +soda_orders = [row for row in data if 'Canned Soda' == row[2] or 'Canned Soft Drink' == row[2]] +soda_orders[0:5] + + +# We only want the choice_description (e.g. Sprite, Mountain Dew). This is the fourth item in the list. +# Since Python uses 0-based indexing, we get this by using row[3] as the first argument in our list comprehension: +sodas = [row[3] for row in data if 'Canned' in row[2]] + +# Let's look at the first five results +sodas[0:5] + + +# The results above may look like 5 lists inside of a larger list. Let's assume that's the case, and try to get the first Sprite: + +sodas[0][0] + + +# What is going on? +# +# The raw data for choice_description includues brackets (e.g. [Sprite]). We loaded this data in as a string, so while it looks like we have lists inside lists, the result is actually just one list. This is indicated by the quotes wrapping each item in the list, which means the list contains strings. + +# Print the first list element +print sodas[0] + +# Show that it's a string +print type(sodas[0]) + +# It is 8 characters long, including the brackets +print len(sodas[0]) + + +# Let's strip the brackets at the start and end of each soda name, using [1:-1] to remove the first and last characters +sodas = [row[3][1:-1] for row in data if 'Canned' in row[2]] + +# Let's look at the first five results +sodas[0:5] + + +# Almost done - we just need to get rid of duplicate values +unique_sodas = set([row[3][1:-1] for row in data if 'Canned' in row[2]]) # Success in one line of code! +unique_sodas + + +# Just for reference, how would this look if we did not use a list comprehension? + +# build a list of all sodas +sodas = [] +for row in data: + if 'Canned' in row[2]: + sodas.append(row[3][1:-1]) # strip the brackets + +# create a set of unique sodas +unique_sodas = set(sodas) + + +# ## Part 5 +# +# - Calculate the average number of toppings per burrito. +# - **Note:** Let's ignore the 'quantity' column to simplify this task. +# - **Hint:** Think carefully about the easiest way to count the number of toppings! + +# To calculate the average number of toppings, we simply need to divide the **total number of burritos** by the **total number of toppings**. + +# ### Calculating the total number of burritos + +# keep a running total +burrito_count = 0 + +# loop through the data, looking for lines containing 'Burrito' +for row in data: + if 'Burrito' in row[2]: + burrito_count = burrito_count + 1 + + +# Like many programming languages, Python allows you to use `x += 1` as a replacement for `x = x + 1`. Let's use that instead: + +# keep a running total +burrito_count = 0 + +# loop through the data, looking for lines containing 'Burrito' +for row in data: + if 'Burrito' in row[2]: + burrito_count += 1 # this is the only line that changed + + +burrito_count + + +# The count is 1172, which seems reasonable given the total number of orders (1834). + +# ### Calculating the total number of toppings + +# Let's look at a single burrito order +data[7] + + +# There appear to be 8 toppings: +data[7][3] + + +# With all of this formatting within the string, what's the easiest way to count the number of toppings? +# +# Start by asking yourself: How did you count the number of toppings? You probably looked for **commas**! + +# Use the string method 'count' to count the number of commas +data[7][3].count(',') + + +# And of course, if there are 7 commas, that means there are 8 toppings. +# +# So, let's revise our original loop: + +# keep a running total of burritos and toppings +burrito_count = 0 +topping_count = 0 + +# calculate number of toppings by counting the commas and adding 1 +for row in data: + if 'Burrito' in row[2]: + burrito_count += 1 + topping_count += (row[3].count(',') + 1) + +print burrito_count +print topping_count + + +# ### Calculating the average number of toppings + +# calculate the average topping count and round to 2 digits +round(topping_count / float(burrito_count), 2) + + +# Just for reference, how would this look if we used list comprehensions? + +burrito_count = sum(1 for row in data if 'Burrito' in row[2]) +topping_count = sum([row[3].count(',') + 1 for row in data if 'Burrito' in row[2]]) +round(topping_count / float(burrito_count), 2) + + +# ## Part 6 +# +# - Create a dictionary in which the keys represent chip orders and the values represent the total number of orders. +# - **Expected output:** {'Chips and Roasted Chili-Corn Salsa': 18, ... } +# - **Note:** Please take the 'quantity' column into account! +# - **Optional:** Learn how to use 'defaultdict' to simplify your code. + +# ### Building a dictionary of names + +# Let's pretend I have a list of four names, and I want to make a dictionary in which the **key** is the name, and the **value** is the count of that name. + +# This is my list of names +names = ['Ben', 'Victor', 'Laura', 'Victor'] + + +# I want to create a dictionary that looks like this: +# +# `{'Ben':1, 'Laura':1, 'Victor':2}` +# +# How would I do that? Here's my first attempt: + +# create empty dictionary +name_count = {} + +# loop through list of names +for name in names: + # set the name as the key and 1 as the value + name_count[name] = 1 + +name_count + + +# Well, that creates a dictionary, but it didn't count Victor twice. +# +# Let's try again: + +name_count = {} + +for name in names: + # increment the value + name_count[name] += 1 + +name_count + + +# That doesn't work because the dictionary starts out empty, and you can't tell Python to "increment the Ben value by 1" unless the Ben value starts at 0. +# +# Let's try to fix that: + +name_count = {} + +for name in names: + # initially set every name to 0 + name_count[name] = 0 + +for name in names: + # increment the value + name_count[name] += 1 + +name_count + + +# By looping through the list twice, we fixed the problem. But that's kind of clunky. +# +# Here's what we really want to do: + +name_count = {} + +for name in names: + + # check if the key is already present in the dictionary + if name not in name_count: + name_count[name] = 1 # this is a new key, so create key/value pair + else: + name_count[name] += 1 # this is an existing key, so add to the value + +name_count + + +# ### Applying this technique to chip orders + +# Reminder on the header +header + + +# Find all the chip orders +chip_orders = [row for row in data if 'Chips' in row[2]] + +# Look at the first five +chip_orders[:5] + + +# The chip quantities are easily accessible +chip_quantities = [row[1] for row in data if 'Chips' in row[2]] + +# Look at the first five +chip_quantities[:5] + + +# Let's put this all together! + +# start with an empty dictionary +chips = {} + +# if chip order is not in dictionary, then add a new key/value pair +# if chip order is already in dictionary, then update the value for that key +for row in data: + if 'Chips' in row[2]: + if row[2] not in chips: + chips[row[2]] = int(row[1]) # this is a new key, so create key/value pair + else: + chips[row[2]] += int(row[1]) # this is an existing key, so add to the value + +chips + + +# ### Using defaultdict instead + +# [defaultdict](https://docs.python.org/2/library/collections.html) simplifies this task, because it saves you the trouble of checking whether a key already exists. +# +# Here's a simple example using the names data: + +# This is a tiny variation of our code that previously raised an error + +# Create an empty dictionary that will eventually contain integers (and thus the default value is 0) +from collections import defaultdict +name_count = defaultdict(int) + +# We no longer have to check if the key is present +for name in names: + name_count[name] += 1 + +name_count + + +# It will print nicely if we convert it to a regular dictionary +dict(name_count) + + +# Apply this to the chip orders +dchips = defaultdict(int) + +for row in data: + if 'Chips' in row[2]: + dchips[row[2]] += int(row[1]) + +dict(dchips) diff --git a/code/04_pandas.py b/code/04_pandas.py new file mode 100644 index 0000000..ea1851b --- /dev/null +++ b/code/04_pandas.py @@ -0,0 +1,424 @@ +''' +CLASS: Pandas for Exploratory Data Analysis + +MovieLens 100k movie rating data: + main page: http://grouplens.org/datasets/movielens/ + data dictionary: http://files.grouplens.org/datasets/movielens/ml-100k-README.txt + files: u.user, u.user_original (no header row) + +WHO alcohol consumption data: + article: http://fivethirtyeight.com/datalab/dear-mona-followup-where-do-people-drink-the-most-beer-wine-and-spirits/ + original data: https://github.com/fivethirtyeight/data/tree/master/alcohol-consumption + file: drinks.csv (with additional 'continent' column) + +National UFO Reporting Center data: + main page: http://www.nuforc.org/webreports.html + file: ufo.csv +''' + +import pandas as pd + +''' +Reading Files, Selecting Columns, and Summarizing +''' + +# can read a file from local computer or directly from a URL +pd.read_table('u.user') +pd.read_table('https://raw.githubusercontent.com/justmarkham/DAT8/master/data/u.user') + +# read 'u.user' into 'users' +users = pd.read_table('u.user', sep='|', index_col='user_id') + +# examine the users data +users # print the first 30 and last 30 rows +type(users) # DataFrame +users.head() # print the first 5 rows +users.head(10) # print the first 10 rows +users.tail() # print the last 5 rows +users.index # "the index" (aka "the labels") +users.columns # column names (which is "an index") +users.dtypes # data types of each column +users.shape # number of rows and columns +users.values # underlying numpy array + +# select a column +users['gender'] # select one column +type(users['gender']) # Series +users.gender # select one column using the DataFrame attribute + +# summarize (describe) the DataFrame +users.describe() # describe all numeric columns +users.describe(include=['object']) # describe all object columns +users.describe(include='all') # describe all columns + +# summarize a Series +users.gender.describe() # describe a single column +users.age.mean() # only calculate the mean + +# count the number of occurrences of each value +users.gender.value_counts() # most useful for categorical variables +users.age.value_counts() # can also be used with numeric variables + +''' +EXERCISE ONE +''' + +# read drinks.csv into a DataFrame called 'drinks' +drinks = pd.read_table('drinks.csv', sep=',') +drinks = pd.read_csv('drinks.csv') # assumes separator is comma + +# print the head and the tail +drinks.head() +drinks.tail() + +# examine the default index, data types, and shape +drinks.index +drinks.dtypes +drinks.shape + +# print the 'beer_servings' Series +drinks['beer_servings'] +drinks.beer_servings + +# calculate the mean 'beer_servings' for the entire dataset +drinks.describe() # summarize all numeric columns +drinks.beer_servings.describe() # summarize only the 'beer_servings' Series +drinks.beer_servings.mean() # only calculate the mean + +# count the number of occurrences of each 'continent' value and see if it looks correct +drinks.continent.value_counts() + +# BONUS: display only the number of rows of the 'users' DataFrame +users.shape[0] + +# BONUS: display the 3 most frequent occupations in 'users' +users.occupation.value_counts().head(3) +users.occupation.value_counts()[:3] + +# BONUS: create the 'users' DataFrame from the u.user_original file (which lacks a header row) +# Hint: read the pandas.read_table documentation +user_cols = ['user_id', 'age', 'gender', 'occupation', 'zip_code'] +users = pd.read_table('u.user_original', sep='|', header=None, names=user_cols, index_col='user_id') + +''' +Filtering and Sorting +''' + +# boolean filtering: only show users with age < 20 +young_bool = users.age < 20 # create a Series of booleans... +users[young_bool] # ...and use that Series to filter rows +users[users.age < 20] # or, combine into a single step +users[users.age < 20].occupation # select one column from the filtered results +users[users.age < 20].occupation.value_counts() # value_counts of resulting Series + +# boolean filtering with multiple conditions +users[(users.age < 20) & (users.gender=='M')] # ampersand for AND condition +users[(users.age < 20) | (users.age > 60)] # pipe for OR condition + +# sorting +users.age.order() # sort a column +users.sort('age') # sort a DataFrame by a single column +users.sort('age', ascending=False) # use descending order instead + +''' +EXERCISE TWO +''' + +# filter 'drinks' to only include European countries +drinks[drinks.continent=='EU'] + +# filter 'drinks' to only include European countries with wine_servings > 300 +drinks[(drinks.continent=='EU') & (drinks.wine_servings > 300)] + +# calculate the mean 'beer_servings' for all of Europe +drinks[drinks.continent=='EU'].beer_servings.mean() + +# determine which 10 countries have the highest total_litres_of_pure_alcohol +drinks.sort('total_litres_of_pure_alcohol').tail(10) + +# BONUS: sort 'users' by 'occupation' and then by 'age' (in a single command) +users.sort(['occupation', 'age']) + +# BONUS: filter 'users' to only include doctors and lawyers without using a | +# Hint: read the pandas.Series.isin documentation +users[users.occupation.isin(['doctor', 'lawyer'])] + +''' +Renaming, Adding, and Removing Columns +''' + +# rename one or more columns +drinks.rename(columns={'beer_servings':'beer', 'wine_servings':'wine'}) +drinks.rename(columns={'beer_servings':'beer', 'wine_servings':'wine'}, inplace=True) + +# replace all column names +drink_cols = ['country', 'beer', 'spirit', 'wine', 'liters', 'continent'] +drinks.columns = drink_cols + +# replace all column names when reading the file +drinks = pd.read_csv('drinks.csv', header=0, names=drink_cols) + +# add a new column as a function of existing columns +drinks['servings'] = drinks.beer + drinks.spirit + drinks.wine +drinks['mL'] = drinks.liters * 1000 + +# removing columns +drinks.drop('mL', axis=1) # axis=0 for rows, 1 for columns +drinks.drop(['mL', 'servings'], axis=1, inplace=True) # drop multiple columns + +''' +Handling Missing Values +''' + +# missing values are usually excluded by default +drinks.continent.value_counts() # excludes missing values +drinks.continent.value_counts(dropna=False) # includes missing values + +# find missing values in a Series +drinks.continent.isnull() # True if missing +drinks.continent.notnull() # True if not missing + +# use a boolean Series to filter DataFrame rows +drinks[drinks.continent.isnull()] # only show rows where continent is missing +drinks[drinks.continent.notnull()] # only show rows where continent is not missing + +# side note: understanding axes +drinks.sum() # sums "down" the 0 axis (rows) +drinks.sum(axis=0) # equivalent (since axis=0 is the default) +drinks.sum(axis=1) # sums "across" the 1 axis (columns) + +# side note: adding booleans +pd.Series([True, False, True]) # create a boolean Series +pd.Series([True, False, True]).sum() # converts False to 0 and True to 1 + +# find missing values in a DataFrame +drinks.isnull() # DataFrame of booleans +drinks.isnull().sum() # count the missing values in each column + +# drop missing values +drinks.dropna() # drop a row if ANY values are missing +drinks.dropna(how='all') # drop a row only if ALL values are missing + +# fill in missing values +drinks.continent.fillna(value='NA', inplace=True) # fill in missing values with 'NA' + +# turn off the missing value filter +drinks = pd.read_csv('drinks.csv', header=0, names=drink_cols, na_filter=False) + +''' +EXERCISE THREE +''' + +# read ufo.csv into a DataFrame called 'ufo' +ufo = pd.read_table('ufo.csv', sep=',') +ufo = pd.read_csv('ufo.csv') + +# check the shape of the DataFrame +ufo.shape + +# calculate the most frequent value for each of the columns (in a single command) +ufo.describe() + +# what are the four most frequent colors reported? +ufo['Colors Reported'].value_counts().head(4) + +# for reports in VA, what's the most frequent city? +ufo[ufo.State=='VA'].City.value_counts().head(1) + +# show only the UFO reports from Arlington, VA +ufo[(ufo.City=='Arlington') & (ufo.State=='VA')] + +# count the number of missing values in each column +ufo.isnull().sum() + +# show only the UFO reports in which the City is missing +ufo[ufo.City.isnull()] + +# how many rows remain if you drop all rows with any missing values? +ufo.dropna().shape[0] + +# replace any spaces in the column names with an underscore +ufo.rename(columns={'Colors Reported':'Colors_Reported', 'Shape Reported':'Shape_Reported'}, inplace=True) + +# BONUS: redo the task above, writing generic code to replace spaces with underscores +# In other words, your code should not reference the specific column names +ufo.columns = [col.replace(' ', '_') for col in ufo.columns] +ufo.columns = ufo.columns.str.replace(' ', '_') + +# BONUS: create a new column called 'Location' that includes both City and State +# For example, the 'Location' for the first row would be 'Ithaca, NY' +ufo['Location'] = ufo.City + ', ' + ufo.State + +''' +Split-Apply-Combine +Diagram: http://i.imgur.com/yjNkiwL.png +''' + +# for each continent, calculate the mean beer servings +drinks.groupby('continent').beer.mean() + +# for each continent, count the number of occurrences +drinks.continent.value_counts() + +# for each continent, describe beer servings +drinks.groupby('continent').beer.describe() + +# similar, but outputs a DataFrame and can be customized +drinks.groupby('continent').beer.agg(['count', 'mean', 'min', 'max']) +drinks.groupby('continent').beer.agg(['count', 'mean', 'min', 'max']).sort('mean') + +# if you don't specify a column to which the aggregation function should be applied, +# it will be applied to all numeric columns +drinks.groupby('continent').mean() +drinks.groupby('continent').describe() + +''' +EXERCISE FOUR +''' + +# for each occupation in 'users', count the number of occurrences +users.occupation.value_counts() + +# for each occupation, calculate the mean age +users.groupby('occupation').age.mean() + +# BONUS: for each occupation, calculate the minimum and maximum ages +users.groupby('occupation').age.agg(['min', 'max']) + +# BONUS: for each combination of occupation and gender, calculate the mean age +users.groupby(['occupation', 'gender']).age.mean() + +''' +Selecting Multiple Columns and Filtering Rows +''' + +# select multiple columns +my_cols = ['City', 'State'] # create a list of column names... +ufo[my_cols] # ...and use that list to select columns +ufo[['City', 'State']] # or, combine into a single step + +# use loc to select columns by name +ufo.loc[:, 'City'] # colon means "all rows", then select one column +ufo.loc[:, ['City', 'State']] # select two columns +ufo.loc[:, 'City':'State'] # select a range of columns + +# loc can also filter rows by "name" (the index) +ufo.loc[0, :] # row 0, all columns +ufo.loc[0:2, :] # rows 0/1/2, all columns +ufo.loc[0:2, 'City':'State'] # rows 0/1/2, range of columns + +# use iloc to filter rows and select columns by integer position +ufo.iloc[:, [0, 3]] # all rows, columns in position 0/3 +ufo.iloc[:, 0:4] # all rows, columns in position 0/1/2/3 +ufo.iloc[0:3, :] # rows in position 0/1/2, all columns + +''' +Other Frequently Used Features +''' + +# map existing values to a different set of values +users['is_male'] = users.gender.map({'F':0, 'M':1}) + +# encode strings as integer values (automatically starts at 0) +users['occupation_num'] = users.occupation.factorize()[0] + +# determine unique values in a column +users.occupation.nunique() # count the number of unique values +users.occupation.unique() # return the unique values + +# replace all instances of a value in a column (must match entire value) +ufo.State.replace('Fl', 'FL', inplace=True) + +# string methods are accessed via 'str' +ufo.State.str.upper() # converts to uppercase +ufo.Colors_Reported.str.contains('RED', na='False') # checks for a substring + +# convert a string to the datetime format +ufo['Time'] = pd.to_datetime(ufo.Time) +ufo.Time.dt.hour # datetime format exposes convenient attributes +(ufo.Time.max() - ufo.Time.min()).days # also allows you to do datetime "math" +ufo[ufo.Time > pd.datetime(2014, 1, 1)] # boolean filtering with datetime format + +# setting and then removing an index +ufo.set_index('Time', inplace=True) +ufo.reset_index(inplace=True) + +# sort a column by its index +ufo.State.value_counts().sort_index() + +# change the data type of a column +drinks['beer'] = drinks.beer.astype('float') + +# change the data type of a column when reading in a file +pd.read_csv('drinks.csv', dtype={'beer_servings':float}) + +# create dummy variables for 'continent' and exclude first dummy column +continent_dummies = pd.get_dummies(drinks.continent, prefix='cont').iloc[:, 1:] + +# concatenate two DataFrames (axis=0 for rows, axis=1 for columns) +drinks = pd.concat([drinks, continent_dummies], axis=1) + +''' +Less Frequently Used Features +''' + +# create a DataFrame from a dictionary +pd.DataFrame({'capital':['Montgomery', 'Juneau', 'Phoenix'], 'state':['AL', 'AK', 'AZ']}) + +# create a DataFrame from a list of lists +pd.DataFrame([['Montgomery', 'AL'], ['Juneau', 'AK'], ['Phoenix', 'AZ']], columns=['capital', 'state']) + +# detecting duplicate rows +users.duplicated() # True if a row is identical to a previous row +users.duplicated().sum() # count of duplicates +users[users.duplicated()] # only show duplicates +users.drop_duplicates() # drop duplicate rows +users.age.duplicated() # check a single column for duplicates +users.duplicated(['age', 'gender', 'zip_code']).sum() # specify columns for finding duplicates + +# display a cross-tabulation of two Series +pd.crosstab(users.occupation, users.gender) + +# alternative syntax for boolean filtering (noted as "experimental" in the documentation) +users.query('age < 20') # users[users.age < 20] +users.query("age < 20 and gender=='M'") # users[(users.age < 20) & (users.gender=='M')] +users.query('age < 20 or age > 60') # users[(users.age < 20) | (users.age > 60)] + +# display the memory usage of a DataFrame +ufo.info() # total usage +ufo.memory_usage() # usage by column + +# change a Series to the 'category' data type (reduces memory usage and increases performance) +ufo['State'] = ufo.State.astype('category') + +# temporarily define a new column as a function of existing columns +drinks.assign(servings = drinks.beer + drinks.spirit + drinks.wine) + +# limit which rows are read when reading in a file +pd.read_csv('drinks.csv', nrows=10) # only read first 10 rows +pd.read_csv('drinks.csv', skiprows=[1, 2]) # skip the first two rows of data + +# write a DataFrame out to a CSV +drinks.to_csv('drinks_updated.csv') # index is used as first column +drinks.to_csv('drinks_updated.csv', index=False) # ignore index + +# save a DataFrame to disk (aka 'pickle') and read it from disk (aka 'unpickle') +drinks.to_pickle('drinks_pickle') +pd.read_pickle('drinks_pickle') + +# randomly sample a DataFrame +train = drinks.sample(frac=0.75, random_state=1) # will contain 75% of the rows +test = drinks[~drinks.index.isin(train.index)] # will contain the other 25% + +# change the maximum number of rows and columns printed ('None' means unlimited) +pd.set_option('max_rows', None) # default is 60 rows +pd.set_option('max_columns', None) # default is 20 columns +print drinks + +# reset options to defaults +pd.reset_option('max_rows') +pd.reset_option('max_columns') + +# change the options temporarily (settings are restored when you exit the 'with' block) +with pd.option_context('max_rows', None, 'max_columns', None): + print drinks diff --git a/code/05_pandas_homework_imdb.py b/code/05_pandas_homework_imdb.py new file mode 100644 index 0000000..8622662 --- /dev/null +++ b/code/05_pandas_homework_imdb.py @@ -0,0 +1,109 @@ +''' +Pandas Homework with IMDb data +''' + +''' +BASIC LEVEL +''' + +import pandas as pd +import matplotlib.pyplot as plt + +# read in 'imdb_1000.csv' and store it in a DataFrame named movies +movies = pd.read_csv('imdb_1000.csv') + +# check the number of rows and columns +movies.shape + +# check the data type of each column +movies.dtypes + +# calculate the average movie duration +movies.duration.mean() + +# sort the DataFrame by duration to find the shortest and longest movies +movies.sort('duration').head(1) +movies.sort('duration').tail(1) + +# create a histogram of duration, choosing an "appropriate" number of bins +movies.duration.plot(kind='hist', bins=20) + +# use a box plot to display that same data +movies.duration.plot(kind='box') + +''' +INTERMEDIATE LEVEL +''' + +# count how many movies have each of the content ratings +movies.content_rating.value_counts() + +# use a visualization to display that same data, including a title and x and y labels +movies.content_rating.value_counts().plot(kind='bar', title='Top 1000 Movies by Content Rating') +plt.xlabel('Content Rating') +plt.ylabel('Number of Movies') + +# convert the following content ratings to "UNRATED": NOT RATED, APPROVED, PASSED, GP +movies.content_rating.replace(['NOT RATED', 'APPROVED', 'PASSED', 'GP'], 'UNRATED', inplace=True) + +# convert the following content ratings to "NC-17": X, TV-MA +movies.content_rating.replace(['X', 'TV-MA'], 'NC-17', inplace=True) + +# count the number of missing values in each column +movies.isnull().sum() + +# if there are missing values: examine them, then fill them in with "reasonable" values +movies[movies.content_rating.isnull()] +movies.content_rating.fillna('UNRATED', inplace=True) + +# calculate the average star rating for movies 2 hours or longer, +# and compare that with the average star rating for movies shorter than 2 hours +movies[movies.duration >= 120].star_rating.mean() +movies[movies.duration < 120].star_rating.mean() + +# use a visualization to detect whether there is a relationship between duration and star rating +movies.plot(kind='scatter', x='duration', y='star_rating', alpha=0.2) + +# calculate the average duration for each genre +movies.groupby('genre').duration.mean() + +''' +ADVANCED LEVEL +''' + +# visualize the relationship between content rating and duration +movies.boxplot(column='duration', by='content_rating') +movies.hist(column='duration', by='content_rating', sharex=True) + +# determine the top rated movie (by star rating) for each genre +movies.sort('star_rating', ascending=False).groupby('genre').title.first() +movies.groupby('genre').title.first() # equivalent, since DataFrame is already sorted by star rating + +# check if there are multiple movies with the same title, and if so, determine if they are actually duplicates +dupe_titles = movies[movies.title.duplicated()].title +movies[movies.title.isin(dupe_titles)] + +# calculate the average star rating for each genre, but only include genres with at least 10 movies + +# option 1: manually create a list of relevant genres, then filter using that list +movies.genre.value_counts() +top_genres = ['Drama', 'Comedy', 'Action', 'Crime', 'Biography', 'Adventure', 'Animation', 'Horror', 'Mystery'] +movies[movies.genre.isin(top_genres)].groupby('genre').star_rating.mean() + +# option 2: automatically create a list of relevant genres by saving the value_counts and then filtering +genre_counts = movies.genre.value_counts() +top_genres = genre_counts[genre_counts >= 10].index +movies[movies.genre.isin(top_genres)].groupby('genre').star_rating.mean() + +# option 3: calculate the average star rating for all genres, then filter using a boolean Series +movies.groupby('genre').star_rating.mean()[movies.genre.value_counts() >= 10] + +# option 4: aggregate by count and mean, then filter using the count +genre_ratings = movies.groupby('genre').star_rating.agg(['count', 'mean']) +genre_ratings[genre_ratings['count'] >= 10] + +''' +BONUS +''' + +# Figure out something "interesting" using the actors data! diff --git a/code/05_pandas_merge_nb.py b/code/05_pandas_merge_nb.py new file mode 100644 index 0000000..bb3c748 --- /dev/null +++ b/code/05_pandas_merge_nb.py @@ -0,0 +1,106 @@ +# # Joining (Merging) DataFrames + +# Using the [MovieLens 100k data](http://grouplens.org/datasets/movielens/), let's create two DataFrames: +# +# - **movies**: shows information about movies, namely a unique **movie_id** and its **title** +# - **ratings**: shows the **rating** that a particular **user_id** gave to a particular **movie_id** at a particular **timestamp** + +# ### Movies + +import pandas as pd +movie_url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/u.item' +movie_cols = ['movie_id', 'title'] +movies = pd.read_table(movie_url, sep='|', header=None, names=movie_cols, usecols=[0, 1]) +movies.head() + + +# ### Ratings + +rating_url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/u.data' +rating_cols = ['user_id', 'movie_id', 'rating', 'timestamp'] +ratings = pd.read_table(rating_url, sep='\t', header=None, names=rating_cols) +ratings.head() + + +# Let's pretend that you want to examine the ratings DataFrame, but you want to know the **title** of each movie rather than its **movie_id**. The best way to accomplish this objective is by "joining" (or "merging") the DataFrames using the Pandas `merge` function: + +movie_ratings = pd.merge(movies, ratings) +movie_ratings.head() + + +# Here's what just happened: +# +# - Pandas noticed that movies and ratings had one column in common, namely **movie_id**. This is the "key" on which the DataFrames will be joined. +# - The first **movie_id** in movies is 1. Thus, Pandas looked through every row in the ratings DataFrame, searching for a movie_id of 1. Every time it found such a row, it recorded the **user_id**, **rating**, and **timestamp** listed in that row. In this case, it found 452 matching rows. +# - The second **movie_id** in movies is 2. Again, Pandas did a search of ratings and found 131 matching rows. +# - This process was repeated for all of the remaining rows in movies. +# +# At the end of the process, the movie_ratings DataFrame is created, which contains the two columns from movies (**movie_id** and **title**) and the three other colums from ratings (**user_id**, **rating**, and **timestamp**). +# +# - **movie_id** 1 and its **title** are listed 452 times, next to the **user_id**, **rating**, and **timestamp** for each of the 452 matching ratings. +# - **movie_id** 2 and its **title** are listed 131 times, next to the **user_id**, **rating**, and **timestamp** for each of the 131 matching ratings. +# - And so on, for every movie in the dataset. + +print movies.shape +print ratings.shape +print movie_ratings.shape + + +# Notice the shapes of the three DataFrames: +# +# - There are 1682 rows in the movies DataFrame. +# - There are 100000 rows in the ratings DataFrame. +# - The `merge` function resulted in a movie_ratings DataFrame with 100000 rows, because every row from ratings matched a row from movies. +# - The movie_ratings DataFrame has 5 columns, namely the 2 columns from movies, plus the 4 columns from ratings, minus the 1 column in common. +# +# By default, the `merge` function joins the DataFrames using all column names that are in common (**movie_id**, in this case). The [documentation](http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.merge.html) explains how you can override this behavior. + +# ## Four Types of Joins + +# There are actually four types of joins supported by the Pandas `merge` function. Here's how they are described by the documentation: +# +# - **inner:** use intersection of keys from both frames (SQL: inner join) +# - **outer:** use union of keys from both frames (SQL: full outer join) +# - **left:** use only keys from left frame (SQL: left outer join) +# - **right:** use only keys from right frame (SQL: right outer join) +# +# The default is the "inner join", which was used when creating the movie_ratings DataFrame. +# +# It's easiest to understand the different types by looking at some simple examples: + +# ### Example DataFrames A and B + +A = pd.DataFrame({'color': ['green', 'yellow', 'red'], 'num':[1, 2, 3]}) +A + + +B = pd.DataFrame({'color': ['green', 'yellow', 'pink'], 'size':['S', 'M', 'L']}) +B + + +# ### Inner join +# +# Only include observations found in both A and B: + +pd.merge(A, B, how='inner') + + +# ### Outer join +# +# Include observations found in either A or B: + +pd.merge(A, B, how='outer') + + +# ### Left join +# +# Include all observations found in A: + +pd.merge(A, B, how='left') + + +# ### Right join +# +# Include all observations found in B: + +pd.merge(A, B, how='right') diff --git a/code/05_pandas_visualization_nb.py b/code/05_pandas_visualization_nb.py new file mode 100644 index 0000000..53aebbf --- /dev/null +++ b/code/05_pandas_visualization_nb.py @@ -0,0 +1,201 @@ +# # Visualization with Pandas (and Matplotlib) + +import pandas as pd +import matplotlib.pyplot as plt + +# display plots in the notebook + +# increase default figure and font sizes for easier viewing +plt.rcParams['figure.figsize'] = (8, 6) +plt.rcParams['font.size'] = 14 + + +# read in the drinks data +drink_cols = ['country', 'beer', 'spirit', 'wine', 'liters', 'continent'] +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/drinks.csv' +drinks = pd.read_csv(url, header=0, names=drink_cols, na_filter=False) + + +# ## Histogram: show the distribution of a numerical variable + +# sort the beer column and mentally split it into 3 groups +drinks.beer.order().values + + +# compare with histogram +drinks.beer.plot(kind='hist', bins=3) + + +# try more bins +drinks.beer.plot(kind='hist', bins=20) + + +# add title and labels +drinks.beer.plot(kind='hist', bins=20, title='Histogram of Beer Servings') +plt.xlabel('Beer Servings') +plt.ylabel('Frequency') + + +# compare with density plot (smooth version of a histogram) +drinks.beer.plot(kind='density', xlim=(0, 500)) + + +# ## Scatter Plot: show the relationship between two numerical variables + +# select the beer and wine columns and sort by beer +drinks[['beer', 'wine']].sort('beer').values + + +# compare with scatter plot +drinks.plot(kind='scatter', x='beer', y='wine') + + +# add transparency +drinks.plot(kind='scatter', x='beer', y='wine', alpha=0.3) + + +# vary point color by spirit servings +drinks.plot(kind='scatter', x='beer', y='wine', c='spirit', colormap='Blues') + + +# scatter matrix of three numerical columns +pd.scatter_matrix(drinks[['beer', 'spirit', 'wine']]) + + +# increase figure size +pd.scatter_matrix(drinks[['beer', 'spirit', 'wine']], figsize=(10, 8)) + + +# ## Bar Plot: show a numerical comparison across different categories + +# count the number of countries in each continent +drinks.continent.value_counts() + + +# compare with bar plot +drinks.continent.value_counts().plot(kind='bar') + + +# calculate the mean alcohol amounts for each continent +drinks.groupby('continent').mean() + + +# side-by-side bar plots +drinks.groupby('continent').mean().plot(kind='bar') + + +# drop the liters column +drinks.groupby('continent').mean().drop('liters', axis=1).plot(kind='bar') + + +# stacked bar plots +drinks.groupby('continent').mean().drop('liters', axis=1).plot(kind='bar', stacked=True) + + +# ## Box Plot: show quartiles (and outliers) for one or more numerical variables +# +# **Five-number summary:** +# +# - min = minimum value +# - 25% = first quartile (Q1) = median of the lower half of the data +# - 50% = second quartile (Q2) = median of the data +# - 75% = third quartile (Q3) = median of the upper half of the data +# - max = maximum value +# +# (More useful than mean and standard deviation for describing skewed distributions) +# +# **Interquartile Range (IQR)** = Q3 - Q1 +# +# **Outliers:** +# +# - below Q1 - 1.5 * IQR +# - above Q3 + 1.5 * IQR + +# sort the spirit column +drinks.spirit.order().values + + +# show "five-number summary" for spirit +drinks.spirit.describe() + + +# compare with box plot +drinks.spirit.plot(kind='box') + + +# include multiple variables +drinks.drop('liters', axis=1).plot(kind='box') + + +# ## Line Plot: show the trend of a numerical variable over time + +# read in the ufo data +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/ufo.csv' +ufo = pd.read_csv(url) +ufo['Time'] = pd.to_datetime(ufo.Time) +ufo['Year'] = ufo.Time.dt.year + + +# count the number of ufo reports each year (and sort by year) +ufo.Year.value_counts().sort_index() + + +# compare with line plot +ufo.Year.value_counts().sort_index().plot() + + +# don't use a line plot when there is no logical ordering +drinks.continent.value_counts().plot() + + +# ## Grouped Box Plots: show one box plot for each group + +# reminder: box plot of beer servings +drinks.beer.plot(kind='box') + + +# box plot of beer servings grouped by continent +drinks.boxplot(column='beer', by='continent') + + +# box plot of all numeric columns grouped by continent +drinks.boxplot(by='continent') + + +# ## Grouped Histograms: show one histogram for each group + +# reminder: histogram of beer servings +drinks.beer.plot(kind='hist') + + +# histogram of beer servings grouped by continent +drinks.hist(column='beer', by='continent') + + +# share the x axes +drinks.hist(column='beer', by='continent', sharex=True) + + +# share the x and y axes +drinks.hist(column='beer', by='continent', sharex=True, sharey=True) + + +# change the layout +drinks.hist(column='beer', by='continent', sharex=True, layout=(2, 3)) + + +# ## Assorted Functionality + +# saving a plot to a file +drinks.beer.plot(kind='hist', bins=20, title='Histogram of Beer Servings') +plt.xlabel('Beer Servings') +plt.ylabel('Frequency') +plt.savefig('beer_histogram.png') + + +# list available plot styles +plt.style.available + + +# change to a different style +plt.style.use('ggplot') diff --git a/code/06_human_learning_iris_nb.py b/code/06_human_learning_iris_nb.py new file mode 100644 index 0000000..035cea1 --- /dev/null +++ b/code/06_human_learning_iris_nb.py @@ -0,0 +1,180 @@ +# # Exercise: "Human learning" with iris data +# +# **Question:** Can you predict the species of an iris using petal and sepal measurements? +# +# 1. Read the iris data into a Pandas DataFrame, including column names. +# 2. Gather some basic information about the data. +# 3. Use sorting, split-apply-combine, and/or visualization to look for differences between species. +# 4. Write down a set of rules that could be used to predict species based on iris measurements. +# +# **BONUS:** Define a function that accepts a row of data and returns a predicted species. Then, use that function to make predictions for all existing rows of data, and check the accuracy of your predictions. + +import pandas as pd +import matplotlib.pyplot as plt + +# display plots in the notebook + +# increase default figure and font sizes for easier viewing +plt.rcParams['figure.figsize'] = (8, 6) +plt.rcParams['font.size'] = 14 + + +# ## Task 1 +# +# Read the iris data into a pandas DataFrame, including column names. + +# define a list of column names (as strings) +col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species'] + +# define the URL from which to retrieve the data (as a string) +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data' + +# retrieve the CSV file and add the column names +iris = pd.read_csv(url, header=None, names=col_names) + + +# ## Task 2 +# +# Gather some basic information about the data. + +iris.shape + + +iris.head() + + +iris.dtypes + + +iris.describe() + + +iris.species.value_counts() + + +iris.isnull().sum() + + +# ## Task 3 +# +# Use sorting, split-apply-combine, and/or visualization to look for differences between species. + +# ### sorting + +# sort the DataFrame by petal_width and display the NumPy array +print iris.sort('petal_width').values + + +# ### split-apply-combine + +# mean of sepal_length grouped by species +iris.groupby('species').sepal_length.mean() + + +# mean of all numeric columns grouped by species +iris.groupby('species').mean() + + +# description of all numeric columns grouped by species +iris.groupby('species').describe() + + +# ### visualization + +# histogram of petal_width grouped by species +iris.hist(column='petal_width', by='species', sharex=True) + + +# box plot of petal_width grouped by species +iris.boxplot(column='petal_width', by='species') + + +# box plot of all numeric columns grouped by species +iris.boxplot(by='species') + + +# map species to a numeric value so that plots can be colored by species +iris['species_num'] = iris.species.map({'Iris-setosa':0, 'Iris-versicolor':1, 'Iris-virginica':2}) + +# alternative method +iris['species_num'] = iris.species.factorize()[0] + + +# scatter plot of petal_length vs petal_width colored by species +iris.plot(kind='scatter', x='petal_length', y='petal_width', c='species_num', colormap='brg') + + +# scatter matrix of all features colored by species +pd.scatter_matrix(iris.drop('species_num', axis=1), c=iris.species_num, figsize=(12, 10)) + + +# ## Task 4 +# +# Write down a set of rules that could be used to predict species based on iris measurements. + +# define a new feature that represents petal area ("feature engineering") +iris['petal_area'] = iris.petal_length * iris.petal_width + + +# description of petal_area grouped by species +iris.groupby('species').petal_area.describe().unstack() + + +# box plot of petal_area grouped by species +iris.boxplot(column='petal_area', by='species') + + +# only show irises with a petal_area between 7 and 9 +iris[(iris.petal_area > 7) & (iris.petal_area < 9)].sort('petal_area') + + +# My set of rules for predicting species: +# +# - If petal_area is less than 2, predict **setosa**. +# - Else if petal_area is less than 7.4, predict **versicolor**. +# - Otherwise, predict **virginica**. + +# ## Bonus +# +# Define a function that accepts a row of data and returns a predicted species. Then, use that function to make predictions for all existing rows of data, and check the accuracy of your predictions. + +# given a row of data, return a predicted species_num (0/1/2) +def classify_iris(row): + + # calculate the petal_area + petal_area = row[2] * row[3] + + # predict the species based on the rules above + if petal_area < 2: + prediction = 'setosa' + elif petal_area < 7.4: + prediction = 'versicolor' + else: + prediction = 'virginica' + + # map the species name to a numeric value + species_to_num = {'setosa':0, 'versicolor':1, 'virginica':2} + + # return that value + return species_to_num[prediction] + + +# print the first row +iris.iloc[0, :] + + +# print the last row +iris.iloc[149, :] + + +# test the function on the first and last rows +print classify_iris(iris.iloc[0, :]) +print classify_iris(iris.iloc[149, :]) + + +# make predictions for all rows and store them in the DataFrame +iris['prediction'] = [classify_iris(row) for index, row in iris.iterrows()] + + +# calculate the percentage of correct predictions +sum(iris.species_num == iris.prediction) / 150. diff --git a/code/07_api.py b/code/07_api.py new file mode 100644 index 0000000..0a55d24 --- /dev/null +++ b/code/07_api.py @@ -0,0 +1,110 @@ +''' +CLASS: Getting Data from APIs + +What is an API? +- Application Programming Interface +- Structured way to expose specific functionality and data access to users +- Web APIs usually follow the "REST" standard + +How to interact with a REST API: +- Make a "request" to a specific URL (an "endpoint"), and get the data back in a "response" +- Most relevant request method for us is GET (other methods: POST, PUT, DELETE) +- Response is often JSON format +- Web console is sometimes available (allows you to explore an API) +''' + +# read IMDb data into a DataFrame: we want a year column! +import pandas as pd +movies = pd.read_csv('imdb_1000.csv') +movies.head() + +# use requests library to interact with a URL +import requests +r = requests.get('http://www.omdbapi.com/?t=the shawshank redemption&r=json&type=movie') + +# check the status: 200 means success, 4xx means error +r.status_code + +# view the raw response text +r.text + +# decode the JSON response body into a dictionary +r.json() + +# extracting the year from the dictionary +r.json()['Year'] + +# what happens if the movie name is not recognized? +r = requests.get('http://www.omdbapi.com/?t=blahblahblah&r=json&type=movie') +r.status_code +r.json() + +# define a function to return the year +def get_movie_year(title): + r = requests.get('http://www.omdbapi.com/?t=' + title + '&r=json&type=movie') + info = r.json() + if info['Response'] == 'True': + return int(info['Year']) + else: + return None + +# test the function +get_movie_year('The Shawshank Redemption') +get_movie_year('blahblahblah') + +# create a smaller DataFrame for testing +top_movies = movies.head().copy() + +# write a for loop to build a list of years +from time import sleep +years = [] +for title in top_movies.title: + years.append(get_movie_year(title)) + sleep(1) + +# check that the DataFrame and the list of years are the same length +assert(len(top_movies) == len(years)) + +# save that list as a new column +top_movies['year'] = years + +''' +Bonus content: Updating the DataFrame as part of a loop +''' + +# enumerate allows you to access the item location while iterating +letters = ['a', 'b', 'c'] +for index, letter in enumerate(letters): + print index, letter + +# iterrows method for DataFrames is similar +for index, row in top_movies.iterrows(): + print index, row.title + +# create a new column and set a default value +movies['year'] = -1 + +# loc method allows you to access a DataFrame element by 'label' +movies.loc[0, 'year'] = 1994 + +# write a for loop to update the year for the first three movies +for index, row in movies.iterrows(): + if index < 3: + movies.loc[index, 'year'] = get_movie_year(row.title) + sleep(1) + else: + break + +''' +Other considerations when accessing APIs: +- Most APIs require you to have an access key (which you should store outside your code) +- Most APIs limit the number of API calls you can make (per day, hour, minute, etc.) +- Not all APIs are free +- Not all APIs are well-documented +- Pay attention to the API version + +Python wrapper is another option for accessing an API: +- Set of functions that "wrap" the API code for ease of use +- Potentially simplifies your code +- But, wrapper could have bugs or be out-of-date or poorly documented +''' diff --git a/code/07_web_scraping.py b/code/07_web_scraping.py new file mode 100644 index 0000000..3dd679b --- /dev/null +++ b/code/07_web_scraping.py @@ -0,0 +1,262 @@ +''' +CLASS: Web Scraping with Beautiful Soup + +What is web scraping? +- Extracting information from websites (simulates a human copying and pasting) +- Based on finding patterns in website code (usually HTML) + +What are best practices for web scraping? +- Scraping too many pages too fast can get your IP address blocked +- Pay attention to the robots exclusion standard (robots.txt) +- Let's look at http://www.imdb.com/robots.txt + +What is HTML? +- Code interpreted by a web browser to produce ("render") a web page +- Let's look at example.html +- Tags are opened and closed +- Tags have optional attributes + +How to view HTML code: +- To view the entire page: "View Source" or "View Page Source" or "Show Page Source" +- To view a specific part: "Inspect Element" +- Safari users: Safari menu, Preferences, Advanced, Show Develop menu in menu bar +- Let's inspect example.html +''' + +# read the HTML code for a web page and save as a string +with open('example.html', 'rU') as f: + html = f.read() + +# convert HTML into a structured Soup object +from bs4 import BeautifulSoup +b = BeautifulSoup(html) + +# print out the object +print b +print b.prettify() + +# 'find' method returns the first matching Tag (and everything inside of it) +b.find(name='body') +b.find(name='h1') + +# Tags allow you to access the 'inside text' +b.find(name='h1').text + +# Tags also allow you to access their attributes +b.find(name='h1')['id'] + +# 'find_all' method is useful for finding all matching Tags +b.find(name='p') # returns a Tag +b.find_all(name='p') # returns a ResultSet (like a list of Tags) + +# ResultSets can be sliced like lists +len(b.find_all(name='p')) +b.find_all(name='p')[0] +b.find_all(name='p')[0].text +b.find_all(name='p')[0]['id'] + +# iterate over a ResultSet +results = b.find_all(name='p') +for tag in results: + print tag.text + +# limit search by Tag attribute +b.find(name='p', attrs={'id':'scraping'}) +b.find_all(name='p', attrs={'class':'topic'}) +b.find_all(attrs={'class':'topic'}) + +# limit search to specific sections +b.find_all(name='li') +b.find(name='ul', attrs={'id':'scraping'}).find_all(name='li') + +''' +EXERCISE ONE +''' + +# find the 'h2' tag and then print its text +b.find(name='h2').text + +# find the 'p' tag with an 'id' value of 'feedback' and then print its text +b.find(name='p', attrs={'id':'feedback'}).text + +# find the first 'p' tag and then print the value of the 'id' attribute +b.find(name='p')['id'] + +# print the text of all four resources +results = b.find_all(name='li') +for tag in results: + print tag.text + +# print the text of only the API resources +results = b.find(name='ul', attrs={'id':'api'}).find_all(name='li') +for tag in results: + print tag.text + +''' +Scraping the IMDb website +''' + +# get the HTML from the Shawshank Redemption page +import requests +r = requests.get('http://www.imdb.com/title/tt0111161/') + +# convert HTML into Soup +b = BeautifulSoup(r.text) +print b + +# run this code if you have encoding errors +import sys +reload(sys) +sys.setdefaultencoding('utf8') + +# get the title +b.find_all(name='span', attrs={'class':'itemprop', 'itemprop':'name'}) # too many results +b.find(name='span', attrs={'class':'itemprop', 'itemprop':'name'}).text # just get the first +b.find(name='h1').find(name='span', attrs={'class':'itemprop', 'itemprop':'name'}).text # limit the search + +# get the star rating (as a float) +float(b.find(name='span', attrs={'itemprop':'ratingValue'}).text) +float(b.find(name='div', attrs={'class':'titlePageSprite star-box-giga-star'}).text) + +''' +EXERCISE TWO +''' + +# get the description +b.find(name='p', attrs={'itemprop':'description'}).text.strip() + +# get the content rating +b.find(name='meta', attrs={'itemprop':'contentRating'})['content'] + +# get the duration in minutes (as an integer) +int(b.find(name='time', attrs={'itemprop':'duration'}).text.strip()[:-4]) +int(b.find(name='time', attrs={'itemprop':'duration'})['datetime'][2:-1]) + +''' +OPTIONAL WEB SCRAPING HOMEWORK + +First, define a function that accepts an IMDb ID and returns a dictionary of +movie information: title, star_rating, description, content_rating, duration. +The function should gather this information by scraping the IMDb website, not +by calling the OMDb API. (This is really just a wrapper of the web scraping +code we wrote above.) + +For example, get_movie_info('tt0111161') should return: + +{'content_rating': 'R', + 'description': u'Two imprisoned men bond over a number of years...', + 'duration': 142, + 'star_rating': 9.3, + 'title': u'The Shawshank Redemption'} + +Then, open the file imdb_ids.txt using Python, and write a for loop that builds +a list in which each element is a dictionary of movie information. + +Finally, convert that list into a DataFrame. +''' + +# define a function that accepts an IMDb ID and returns a dictionary of movie information +def get_movie_info(imdb_id): + r = requests.get('http://www.imdb.com/title/' + imdb_id + '/') + b = BeautifulSoup(r.text) + info = {} + info['title'] = b.find(name='span', attrs={'class':'itemprop', 'itemprop':'name'}).text + info['star_rating'] = float(b.find(name='span', attrs={'itemprop':'ratingValue'}).text) + info['description'] = b.find(name='p', attrs={'itemprop':'description'}).text.strip() + info['content_rating'] = b.find(name='meta', attrs={'itemprop':'contentRating'})['content'] + info['duration'] = int(b.find(name='time', attrs={'itemprop':'duration'}).text.strip()[:-4]) + return info + +# test the function +get_movie_info('tt0111161') + +# open the file of IDs (one ID per row), and store the IDs in a list +imdb_ids = [] +with open('imdb_ids.txt', 'rU') as f: + imdb_ids = [row.strip() for row in f] + +# get the information for each movie, and store the results in a list +from time import sleep +movies = [] +for imdb_id in imdb_ids: + movies.append(get_movie_info(imdb_id)) + sleep(1) + +# check that the list of IDs and list of movies are the same length +assert(len(imdb_ids) == len(movies)) + +# convert the list of movies into a DataFrame +import pandas as pd +pd.DataFrame(movies, index=imdb_ids) + +''' +Another IMDb example: Getting the genres +''' + +# read the Shawshank Redemption page again +r = requests.get('http://www.imdb.com/title/tt0111161/') +b = BeautifulSoup(r.text) + +# only gets the first genre +b.find(name='span', attrs={'class':'itemprop', 'itemprop':'genre'}) + +# gets all of the genres +b.find_all(name='span', attrs={'class':'itemprop', 'itemprop':'genre'}) + +# stores the genres in a list +[tag.text for tag in b.find_all(name='span', attrs={'class':'itemprop', 'itemprop':'genre'})] + +''' +Another IMDb example: Getting the writers +''' + +# attempt to get the list of writers (too many results) +b.find_all(name='span', attrs={'itemprop':'name'}) + +# limit search to a smaller section to only get the writers +b.find(name='div', attrs={'itemprop':'creator'}).find_all(name='span', attrs={'itemprop':'name'}) + +''' +Another IMDb example: Getting the URLs of cast images +''' + +# find the images by size +results = b.find_all(name='img', attrs={'height':'44', 'width':'32'}) + +# check that the number of results matches the number of cast images on the page +len(results) + +# iterate over the results to get all URLs +for tag in results: + print tag['loadlate'] + +''' +Useful to know: Alternative Beautiful Soup syntax +''' + +# read the example web page again +with open('example.html', 'rU') as f: + html = f.read() + +# convert to Soup +b = BeautifulSoup(html) + +# these are equivalent +b.find(name='p') # normal way +b.find('p') # 'name' is the first argument +b.p # can also be accessed as an attribute of the object + +# these are equivalent +b.find(name='p', attrs={'id':'scraping'}) # normal way +b.find('p', {'id':'scraping'}) # 'name' and 'attrs' are the first two arguments +b.find('p', id='scraping') # can write the attributes as arguments + +# these are equivalent +b.find(name='p', attrs={'class':'topic'}) # normal way +b.find('p', class_='topic') # 'class' is special, so it needs a trailing underscore +b.find('p', 'topic') # if you don't name it, it's assumed to be the class + +# these are equivalent +b.find_all(name='p') # normal way +b.findAll(name='p') # old function name from Beautiful Soup 3 +b('p') # if you don't name the method, it's assumed to be find_all diff --git a/code/08_bias_variance_nb.py b/code/08_bias_variance_nb.py new file mode 100644 index 0000000..b20603c --- /dev/null +++ b/code/08_bias_variance_nb.py @@ -0,0 +1,120 @@ +# # Exploring the Bias-Variance Tradeoff + +import pandas as pd +import numpy as np +import seaborn as sns + +# allow plots to appear in the notebook + + +# ## Brain and body weight + +# This is a [dataset](http://people.sc.fsu.edu/~jburkardt/datasets/regression/x01.txt) of the average weight of the body and the brain for 62 mammal species. Let's read it into pandas and take a quick look: + +url = 'http://people.sc.fsu.edu/~jburkardt/datasets/regression/x01.txt' +col_names = ['id', 'brain', 'body'] +mammals = pd.read_table(url, sep='\s+', skiprows=33, names=col_names, index_col='id') +mammals.head() + + +mammals.describe() + + +# We're going to focus on a smaller subset in which the body weight is less than 200: + +# only keep rows in which the body weight is less than 200 +mammals = mammals[mammals.body < 200] +mammals.shape + + +# We're now going to pretend that there are only 51 mammal species in existence. In other words, we are pretending that this is the entire dataset of brain and body weights for **every known mammal species**. +# +# Let's create a scatterplot (using [Seaborn](http://stanford.edu/~mwaskom/software/seaborn/)) to visualize the relationship between brain and body weight: + +sns.lmplot(x='body', y='brain', data=mammals, ci=None, fit_reg=False) +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# There appears to be a relationship between brain and body weight for mammals. + +# ## Making a prediction + +# Now let's pretend that a **new mammal species** is discovered. We measure the body weight of every member of this species that we can find, and calculate an **average body weight of 100**. We want to **predict the average brain weight** of this species (rather than measuring it directly). How might we do this? + +sns.lmplot(x='body', y='brain', data=mammals, ci=None) +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# We drew a straight line that appears to best capture the relationship between brain and body weight. So, we might predict that our new species has a brain weight of about 45, since that's the approximate y value when x=100. +# +# This is known as a "linear model" or a "linear regression model", which we will study in a future class. + +# ## Making a prediction from a sample + +# Earlier, I said that this dataset contained every known mammal species. That's very convenient, but **in the real world, all you ever have is a sample of data**. A more realistic situation would be to only have brain and body weights for (let's say) half of the 51 known mammals. +# +# When that new mammal species (with a body weight of 100) is discovered, we still want to make an accurate prediction for the brain weight, but this task might be more difficult since we don't have all of the data that we would ideally like to have. +# +# Let's simulate this situation by assigning each of the 51 observations to **either universe 1 or universe 2**: + +# set a random seed for reproducibility +np.random.seed(12345) + +# randomly assign every observation to either universe 1 or universe 2 +mammals['universe'] = np.random.randint(1, 3, len(mammals)) +mammals.head() + + +# **Important:** We only live in one of the two universes. Both universes have 51 known mammal species, but each universe knows the brain and body weight for different species. +# +# We can now tell Seaborn to create two plots, in which the left plot only uses the data from **universe 1** and the right plot only uses the data from **universe 2**: + +# col='universe' subsets the data by universe and creates two separate plots +sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe') +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# The line looks pretty similar between the two plots, despite the fact that they used separate samples of data. In both cases, we would predict a brain weight of about 45. +# +# It's easier to see the degree of similarity by placing them on the same plot: + +# hue='universe' subsets the data by universe and creates a single plot +sns.lmplot(x='body', y='brain', data=mammals, ci=None, hue='universe') +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# What was the point of this exercise? This was a visual demonstration of a high bias, low variance model: +# +# - It's **high bias** because it doesn't fit the data particularly well. +# - It's **low variance** because it doesn't change much depending on which observations happen to be available in that universe. + +# ## Let's try something completely different + +# What would a **low bias, high variance** model look like? Let's try polynomial regression, with an eighth order polynomial: + +sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe', order=8) +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# - It's **low bias** because the models match the data quite well! +# - It's **high variance** because the models are widely different depending on which observations happen to be available in that universe. (For a body weight of 100, the brain weight prediction would be 40 in one universe and 0 in the other universe!) + +# ## Can we find a middle ground? + +# Perhaps we can create a model that has **less bias than the linear model**, and **less variance than the eighth order polynomial**? +# +# Let's try a second order polynomial instead: + +sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe', order=2) +sns.plt.xlim(-10, 200) +sns.plt.ylim(-10, 250) + + +# This seems better. In both the left and right plots, **it fits the data pretty well, but not too well**. +# +# This is the essence of the **bias-variance tradeoff**: You are seeking a model that appropriately balances bias and variance, and thus will generalize to new data (known as "out-of-sample" data). diff --git a/code/08_knn_sklearn_nb.py b/code/08_knn_sklearn_nb.py new file mode 100644 index 0000000..70def15 --- /dev/null +++ b/code/08_knn_sklearn_nb.py @@ -0,0 +1,254 @@ +# # K-nearest neighbors and scikit-learn + +# ## Agenda +# +# 1. Review of the iris dataset +# 2. Human learning on the iris dataset +# 3. K-nearest neighbors (KNN) classification +# 4. Review of supervised learning +# 5. Benefits and drawbacks of scikit-learn +# 6. Requirements for working with data in scikit-learn +# 7. scikit-learn's 4-step modeling pattern +# 8. Tuning a KNN model +# 9. Comparing KNN with other models +# +# ## Lesson goals +# +# 1. Learn how the modeling process works +# 2. Learn how scikit-learn works +# 3. Learn how KNN works + +# ## Review of the iris dataset + +# read the iris data into a DataFrame +import pandas as pd +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data' +col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species'] +iris = pd.read_csv(url, header=None, names=col_names) + + +iris.head() + + +# ### Terminology +# +# - **150 observations** (n=150): each observation is one iris flower +# - **4 features** (p=4): sepal length, sepal width, petal length, and petal width +# - **Response**: iris species +# - **Classification problem** since response is categorical + +# ## Human learning on the iris dataset +# +# How did we (as humans) predict the species of an iris? +# +# 1. We observed that the different species had (somewhat) dissimilar measurements. +# 2. We focused on features that seemed to correlate with the response. +# 3. We created a set of rules (using those features) to predict the species of an unknown iris. +# +# We assumed that if an **unknown iris** has measurements similar to **previous irises**, then its species is most likely the same as those previous irises. + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt + +# increase default figure and font sizes for easier viewing +plt.rcParams['figure.figsize'] = (6, 4) +plt.rcParams['font.size'] = 14 + +# create a custom colormap +from matplotlib.colors import ListedColormap +cmap_bold = ListedColormap(['#FF0000', '#00FF00', '#0000FF']) + + +# map each iris species to a number +iris['species_num'] = iris.species.map({'Iris-setosa':0, 'Iris-versicolor':1, 'Iris-virginica':2}) + + +# create a scatter plot of PETAL LENGTH versus PETAL WIDTH and color by SPECIES +iris.plot(kind='scatter', x='petal_length', y='petal_width', c='species_num', colormap=cmap_bold) + + +# create a scatter plot of SEPAL LENGTH versus SEPAL WIDTH and color by SPECIES +iris.plot(kind='scatter', x='sepal_length', y='sepal_width', c='species_num', colormap=cmap_bold) + + +# ## K-nearest neighbors (KNN) classification + +# 1. Pick a value for K. +# 2. Search for the K observations in the data that are "nearest" to the measurements of the unknown iris. +# - Euclidian distance is often used as the distance metric, but other metrics are allowed. +# 3. Use the most popular response value from the K "nearest neighbors" as the predicted response value for the unknown iris. + +# ### KNN classification map for iris (K=1) +# +# ![1NN classification map](images/iris_01nn_map.png) + +# ### KNN classification map for iris (K=5) +# +# ![5NN classification map](images/iris_05nn_map.png) + +# ### KNN classification map for iris (K=15) +# +# ![15NN classification map](images/iris_15nn_map.png) + +# ### KNN classification map for iris (K=50) +# +# ![50NN classification map](images/iris_50nn_map.png) + +# **Question:** What's the "best" value for K in this case? +# +# **Answer:** The value which produces the most accurate predictions on **unseen data**. We want to create a model that generalizes! + +# ## Review of supervised learning +# +# ![Supervised learning diagram](images/supervised_learning.png) + +# ## Benefits and drawbacks of scikit-learn +# +# **Benefits:** +# +# - Consistent interface to machine learning models +# - Provides many tuning parameters but with sensible defaults +# - Exceptional documentation +# - Rich set of functionality for companion tasks +# - Active community for development and support +# +# **Potential drawbacks:** +# +# - Harder (than R) to get started with machine learning +# - Less emphasis (than R) on model interpretability +# +# Ben Lorica: [Six reasons why I recommend scikit-learn](http://radar.oreilly.com/2013/12/six-reasons-why-i-recommend-scikit-learn.html) + +# ## Requirements for working with data in scikit-learn +# +# 1. Features and response should be **separate objects** +# 2. Features and response should be entirely **numeric** +# 3. Features and response should be **NumPy arrays** (or easily converted to NumPy arrays) +# 4. Features and response should have **specific shapes** (outlined below) + +iris.head() + + +# store feature matrix in "X" +feature_cols = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width'] +X = iris[feature_cols] + + +# alternative ways to create "X" +X = iris.drop(['species', 'species_num'], axis=1) +X = iris.loc[:, 'sepal_length':'petal_width'] +X = iris.iloc[:, 0:4] + + +# store response vector in "y" +y = iris.species_num + + +# check X's type +print type(X) +print type(X.values) + + +# check y's type +print type(y) +print type(y.values) + + +# check X's shape (n = number of observations, p = number of features) +print X.shape + + +# check y's shape (single dimension with length n) +print y.shape + + +# ## scikit-learn's 4-step modeling pattern + +# **Step 1:** Import the class you plan to use + +from sklearn.neighbors import KNeighborsClassifier + + +# **Step 2:** "Instantiate" the "estimator" +# +# - "Estimator" is scikit-learn's term for "model" +# - "Instantiate" means "make an instance of" + +# make an instance of a KNeighborsClassifier object +knn = KNeighborsClassifier(n_neighbors=1) +type(knn) + + +# - Created an object that "knows" how to do K-nearest neighbors classification, and is just waiting for data +# - Name of the object does not matter +# - Can specify tuning parameters (aka "hyperparameters") during this step +# - All parameters not specified are set to their defaults + +print knn + + +# **Step 3:** Fit the model with data (aka "model training") +# +# - Model is "learning" the relationship between X and y in our "training data" +# - Process through which learning occurs varies by model +# - Occurs in-place + +knn.fit(X, y) + + +# - Once a model has been fit with data, it's called a "fitted model" + +# **Step 4:** Predict the response for a new observation +# +# - New observations are called "out-of-sample" data +# - Uses the information it learned during the model training process + +knn.predict([3, 5, 4, 2]) + + +# - Returns a NumPy array, and we keep track of what the numbers "mean" +# - Can predict for multiple observations at once + +X_new = [[3, 5, 4, 2], [5, 4, 3, 2]] +knn.predict(X_new) + + +# ## Tuning a KNN model + +# instantiate the model (using the value K=5) +knn = KNeighborsClassifier(n_neighbors=5) + +# fit the model with data +knn.fit(X, y) + +# predict the response for new observations +knn.predict(X_new) + + +# **Question:** Which model produced the correct predictions for the two unknown irises? +# +# **Answer:** We don't know, because these are **out-of-sample observations**, meaning that we don't know the true response values. Our goal with supervised learning is to build models that generalize to out-of-sample data. However, we can't truly measure how well our models will perform on out-of-sample data. +# +# **Question:** Does that mean that we have to guess how well our models are likely to do? +# +# **Answer:** Thankfully, no. In the next class, we'll discuss **model evaluation procedures**, which allow us to use our existing labeled data to estimate how well our models are likely to perform on out-of-sample data. These procedures will help us to tune our models and choose between different types of models. + +# calculate predicted probabilities of class membership +knn.predict_proba(X_new) + + +# ## Comparing KNN with other models + +# **Advantages of KNN:** +# +# - Simple to understand and explain +# - Model training is fast +# - Can be used for classification and regression +# +# **Disadvantages of KNN:** +# +# - Must store all of the training data +# - Prediction phase can be slow when n is large +# - Sensitive to irrelevant features +# - Sensitive to the scale of the data +# - Accuracy is (generally) not competitive with the best supervised learning methods diff --git a/code/08_nba_knn_nb.py b/code/08_nba_knn_nb.py new file mode 100644 index 0000000..eb81234 --- /dev/null +++ b/code/08_nba_knn_nb.py @@ -0,0 +1,106 @@ +# # KNN exercise with NBA player data + +# ## Introduction +# +# - NBA player statistics from 2014-2015 (partial season): [data](https://github.com/justmarkham/DAT4-students/blob/master/kerry/Final/NBA_players_2015.csv), [data dictionary](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/nba_paper.pdf) +# - **Goal:** Predict player position using assists, steals, blocks, turnovers, and personal fouls + +# ## Step 1: Read the data into Pandas + +# read the data into a DataFrame +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT4-students/master/kerry/Final/NBA_players_2015.csv' +nba = pd.read_csv(url, index_col=0) + + +# examine the columns +nba.columns + + +# examine the positions +nba.pos.value_counts() + + +# ## Step 2: Create X and y +# +# Use the following features: assists, steals, blocks, turnovers, personal fouls + +# map positions to numbers +nba['pos_num'] = nba.pos.map({'C':0, 'F':1, 'G':2}) + + +# create feature matrix (X) +feature_cols = ['ast', 'stl', 'blk', 'tov', 'pf'] +X = nba[feature_cols] + + +# alternative way to create X +X = nba.loc[:, 'ast':'pf'] + + +# create response vector (y) +y = nba.pos_num + + +# ## Step 3: Train a KNN model (K=5) + +# import class +from sklearn.neighbors import KNeighborsClassifier + + +# instantiate with K=5 +knn = KNeighborsClassifier(n_neighbors=5) + + +# fit with data +knn.fit(X, y) + + +# ## Step 4: Predict player position and calculate predicted probability of each position +# +# Predict for a player with these statistics: 1 assist, 1 steal, 0 blocks, 1 turnover, 2 personal fouls + +# create a list to represent a player +player = [1, 1, 0, 1, 2] + + +# make a prediction +knn.predict(player) + + +# calculate predicted probabilities +knn.predict_proba(player) + + +# ## Step 5: Repeat steps 3 and 4 using K=50 + +# repeat for K=50 +knn = KNeighborsClassifier(n_neighbors=50) +knn.fit(X, y) +knn.predict(player) + + +# calculate predicted probabilities +knn.predict_proba(player) + + +# ## Bonus: Explore the features to decide which ones are predictive + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt + +# increase default figure and font sizes for easier viewing +plt.rcParams['figure.figsize'] = (6, 4) +plt.rcParams['font.size'] = 14 + + +# description of assists grouped by position +nba.groupby('pos').ast.describe().unstack() + + +# box plot of assists grouped by position +nba.boxplot(column='ast', by='pos') + + +# histogram of assists grouped by position +nba.hist(column='ast', by='pos', sharex=True) diff --git a/code/08_pandas_review_nb.py b/code/08_pandas_review_nb.py new file mode 100644 index 0000000..b809e95 --- /dev/null +++ b/code/08_pandas_review_nb.py @@ -0,0 +1,72 @@ +# # Pandas Review + +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/drinks.csv' +df = pd.read_csv(url).head(5).copy() +df + + +# For each of the following lines of code: +# +# - What the **data type** of the object that is returned? +# - What is the **shape** of the object that is returned? +# +# +# 1. `df` +# 2. `df.continent` +# 3. `df['continent']` +# 4. `df[['country', 'continent']]` +# 5. `df[[False, True, False, True, False]]` + +# ## Question 1 + +df + + +print type(df) +print df.shape + + +# ## Question 2 + +df.continent + + +print type(df.continent) +print df.continent.shape + + +# ## Question 3 + +df['continent'] + + +print type(df['continent']) +print df['continent'].shape + + +# ## Question 4 + +df[['country', 'continent']] + + +print type(df[['country', 'continent']]) +print df[['country', 'continent']].shape + + +# equivalent +cols = ['country', 'continent'] +df[cols] + + +# ## Question 5 + +df[[False, True, False, True, False]] + + +print type(df[[False, True, False, True, False]]) +print df[[False, True, False, True, False]].shape + + +# equivalent +df[df.continent=='EU'] diff --git a/code/09_model_evaluation_nb.py b/code/09_model_evaluation_nb.py new file mode 100644 index 0000000..3957a0a --- /dev/null +++ b/code/09_model_evaluation_nb.py @@ -0,0 +1,315 @@ +# # Model Evaluation + +# ## Review of last class +# +# - Goal was to predict the **response value** of an **unknown observation** +# - predict the species of an unknown iris +# - predict the position of an unknown NBA player +# - Made predictions using KNN models with **different values of K** +# - Need a way to choose the **"best" model**: the one that "generalizes" to "out-of-sample" data +# +# **Solution:** Create a procedure that **estimates** how well a model is likely to perform on out-of-sample data and use that to choose between models. +# +# **Note:** These procedures can be used with **any machine learning model**, not only KNN. + +# ## Evaluation procedure #1: Train and test on the entire dataset + +# 1. Train the model on the **entire dataset**. +# 2. Test the model on the **same dataset**, and evaluate how well we did by comparing the **predicted** response values with the **true** response values. + +# read the NBA data into a DataFrame +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT4-students/master/kerry/Final/NBA_players_2015.csv' +nba = pd.read_csv(url, index_col=0) + + +# map positions to numbers +nba['pos_num'] = nba.pos.map({'C':0, 'F':1, 'G':2}) + + +# create feature matrix (X) +feature_cols = ['ast', 'stl', 'blk', 'tov', 'pf'] +X = nba[feature_cols] + + +# create response vector (y) +y = nba.pos_num + + +# ### KNN (K=50) + +# import the class +from sklearn.neighbors import KNeighborsClassifier + +# instantiate the model +knn = KNeighborsClassifier(n_neighbors=50) + +# train the model on the entire dataset +knn.fit(X, y) + +# predict the response values for the observations in X ("test the model") +knn.predict(X) + + +# store the predicted response values +y_pred_class = knn.predict(X) + + +# To evaluate a model, we also need an **evaluation metric:** +# +# - Numeric calculation used to **quantify** the performance of a model +# - Appropriate metric depends on the **goals** of your problem +# +# Most common choices for classification problems: +# +# - **Classification accuracy**: percentage of correct predictions ("reward function" since higher is better) +# - **Classification error**: percentage of incorrect predictions ("loss function" since lower is better) +# +# In this case, we'll use classification accuracy. + +# compute classification accuracy +from sklearn import metrics +print metrics.accuracy_score(y, y_pred_class) + + +# This is known as **training accuracy** because we are evaluating the model on the same data we used to train the model. + +# ### KNN (K=1) + +knn = KNeighborsClassifier(n_neighbors=1) +knn.fit(X, y) +y_pred_class = knn.predict(X) +print metrics.accuracy_score(y, y_pred_class) + + +# ### Problems with training and testing on the same data +# +# - Goal is to estimate likely performance of a model on **out-of-sample data** +# - But, maximizing training accuracy rewards **overly complex models** that won't necessarily generalize +# - Unnecessarily complex models **overfit** the training data: +# - Will do well when tested using the in-sample data +# - May do poorly on out-of-sample data +# - Learns the "noise" in the data rather than the "signal" +# - From Quora: [What is an intuitive explanation of overfitting?](http://www.quora.com/What-is-an-intuitive-explanation-of-overfitting/answer/Jessica-Su) +# +# **Thus, training accuracy is not a good estimate of out-of-sample accuracy.** + +# ![1NN classification map](images/iris_01nn_map.png) + +# ## Evaluation procedure #2: Train/test split + +# 1. Split the dataset into two pieces: a **training set** and a **testing set**. +# 2. Train the model on the **training set**. +# 3. Test the model on the **testing set**, and evaluate how well we did. +# +# What does this accomplish? +# +# - Model can be trained and tested on **different data** (we treat testing data like out-of-sample data). +# - Response values are known for the testing set, and thus **predictions can be evaluated**. +# +# This is known as **testing accuracy** because we are evaluating the model on an independent "test set" that was not used during model training. +# +# **Testing accuracy is a better estimate of out-of-sample performance than training accuracy.** + +# ### Understanding "unpacking" + +def min_max(nums): + smallest = min(nums) + largest = max(nums) + return [smallest, largest] + + +min_and_max = min_max([1, 2, 3]) +print min_and_max +print type(min_and_max) + + +the_min, the_max = min_max([1, 2, 3]) +print the_min +print type(the_min) +print the_max +print type(the_max) + + +# ### Understanding the `train_test_split` function + +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y) + + +# before splitting +print X.shape + +# after splitting +print X_train.shape +print X_test.shape + + +# before splitting +print y.shape + +# after splitting +print y_train.shape +print y_test.shape + + +# ![train_test_split](images/train_test_split.png) + +# ### Understanding the `random_state` parameter + +# WITHOUT a random_state parameter +X_train, X_test, y_train, y_test = train_test_split(X, y) + +# print the first element of each object +print X_train.head(1) +print X_test.head(1) +print y_train.head(1) +print y_test.head(1) + + +# WITH a random_state parameter +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=99) + +# print the first element of each object +print X_train.head(1) +print X_test.head(1) +print y_train.head(1) +print y_test.head(1) + + +# ### Using the train/test split procedure (K=1) + +# STEP 1: split X and y into training and testing sets (using random_state for reproducibility) +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=99) + + +# STEP 2: train the model on the training set (using K=1) +knn = KNeighborsClassifier(n_neighbors=1) +knn.fit(X_train, y_train) + + +# STEP 3: test the model on the testing set, and check the accuracy +y_pred_class = knn.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# ### Repeating for K=50 + +knn = KNeighborsClassifier(n_neighbors=50) +knn.fit(X_train, y_train) +y_pred_class = knn.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# ![Bias-variance tradeoff](images/bias_variance.png) + +# ### Comparing testing accuracy with null accuracy + +# Null accuracy is the accuracy that could be achieved by **always predicting the most frequent class**. It is a benchmark against which you may want to measure your classification model. + +# examine the class distribution +y_test.value_counts() + + +# compute null accuracy +y_test.value_counts().head(1) / len(y_test) + + +# ### Searching for the "best" value of K + +# calculate TRAINING ERROR and TESTING ERROR for K=1 through 100 + +k_range = range(1, 101) +training_error = [] +testing_error = [] + +for k in k_range: + + # instantiate the model with the current K value + knn = KNeighborsClassifier(n_neighbors=k) + + # calculate training error + knn.fit(X, y) + y_pred_class = knn.predict(X) + training_accuracy = metrics.accuracy_score(y, y_pred_class) + training_error.append(1 - training_accuracy) + + # calculate testing error + knn.fit(X_train, y_train) + y_pred_class = knn.predict(X_test) + testing_accuracy = metrics.accuracy_score(y_test, y_pred_class) + testing_error.append(1 - testing_accuracy) + + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt +plt.style.use('fivethirtyeight') + + +# create a DataFrame of K, training error, and testing error +column_dict = {'K': k_range, 'training error':training_error, 'testing error':testing_error} +df = pd.DataFrame(column_dict).set_index('K').sort_index(ascending=False) +df.head() + + +# plot the relationship between K (HIGH TO LOW) and TESTING ERROR +df.plot(y='testing error') +plt.xlabel('Value of K for KNN') +plt.ylabel('Error (lower is better)') + + +# find the minimum testing error and the associated K value +df.sort('testing error').head() + + +# alternative method +min(zip(testing_error, k_range)) + + +# What could we conclude? +# +# - When using KNN on this dataset with these features, the **best value for K** is likely to be around 14. +# - Given the statistics of an **unknown player**, we estimate that we would be able to correctly predict his position about 74% of the time. + +# ### Training error versus testing error + +# plot the relationship between K (HIGH TO LOW) and both TRAINING ERROR and TESTING ERROR +df.plot() +plt.xlabel('Value of K for KNN') +plt.ylabel('Error (lower is better)') + + +# - **Training error** decreases as model complexity increases (lower value of K) +# - **Testing error** is minimized at the optimum model complexity + +# ![Bias-variance tradeoff](images/training_testing_error.png) + +# ## Making predictions on out-of-sample data + +# Given the statistics of a (truly) unknown player, how do we predict his position? + +# instantiate the model with the best known parameters +knn = KNeighborsClassifier(n_neighbors=14) + +# re-train the model with X and y (not X_train and y_train) - why? +knn.fit(X, y) + +# make a prediction for an out-of-sample observation +knn.predict([1, 1, 0, 1, 2]) + + +# ## Disadvantages of train/test split? + +# What would happen if the `train_test_split` function had split the data differently? Would we get the same exact results as before? + +# try different values for random_state +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=98) +knn = KNeighborsClassifier(n_neighbors=50) +knn.fit(X_train, y_train) +y_pred_class = knn.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# - Testing accuracy is a **high-variance estimate** of out-of-sample accuracy +# - **K-fold cross-validation** overcomes this limitation and provides more reliable estimates +# - But, train/test split is still useful because of its **flexibility and speed** diff --git a/code/10_linear_regression_nb.py b/code/10_linear_regression_nb.py new file mode 100644 index 0000000..2a09e06 --- /dev/null +++ b/code/10_linear_regression_nb.py @@ -0,0 +1,483 @@ +# # Linear Regression + +# ## Agenda +# +# 1. Introducing the bikeshare dataset +# - Reading in the data +# - Visualizing the data +# 2. Linear regression basics +# - Form of linear regression +# - Building a linear regression model +# - Using the model for prediction +# - Does the scale of the features matter? +# 3. Working with multiple features +# - Visualizing the data (part 2) +# - Adding more features to the model +# 4. Choosing between models +# - Feature selection +# - Evaluation metrics for regression problems +# - Comparing models with train/test split and RMSE +# - Comparing testing RMSE with null RMSE +# 5. Creating features +# - Handling categorical features +# - Feature engineering +# 6. Comparing linear regression with other models + +# ## Reading in the data +# +# We'll be working with a dataset from Capital Bikeshare that was used in a Kaggle competition ([data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data)). + +# read the data and set the datetime as the index +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bikeshare.csv' +bikes = pd.read_csv(url, index_col='datetime', parse_dates=True) + + +bikes.head() + + +# **Questions:** +# +# - What does each observation represent? +# - What is the response variable (as defined by Kaggle)? +# - How many features are there? + +# "count" is a method, so it's best to name that column something else +bikes.rename(columns={'count':'total'}, inplace=True) + + +# ## Visualizing the data + +import seaborn as sns +import matplotlib.pyplot as plt +plt.rcParams['figure.figsize'] = (8, 6) +plt.rcParams['font.size'] = 14 + + +# Pandas scatter plot +bikes.plot(kind='scatter', x='temp', y='total', alpha=0.2) + + +# Seaborn scatter plot with regression line +sns.lmplot(x='temp', y='total', data=bikes, aspect=1.5, scatter_kws={'alpha':0.2}) + + +# ## Form of linear regression +# +# $y = \beta_0 + \beta_1x_1 + \beta_2x_2 + ... + \beta_nx_n$ +# +# - $y$ is the response +# - $\beta_0$ is the intercept +# - $\beta_1$ is the coefficient for $x_1$ (the first feature) +# - $\beta_n$ is the coefficient for $x_n$ (the nth feature) +# +# The $\beta$ values are called the **model coefficients**: +# +# - These values are estimated (or "learned") during the model fitting process using the **least squares criterion**. +# - Specifically, we are find the line (mathematically) which minimizes the **sum of squared residuals** (or "sum of squared errors"). +# - And once we've learned these coefficients, we can use the model to predict the response. +# +# ![Estimating coefficients](images/estimating_coefficients.png) +# +# In the diagram above: +# +# - The black dots are the **observed values** of x and y. +# - The blue line is our **least squares line**. +# - The red lines are the **residuals**, which are the vertical distances between the observed values and the least squares line. + +# ## Building a linear regression model + +# create X and y +feature_cols = ['temp'] +X = bikes[feature_cols] +y = bikes.total + + +# import, instantiate, fit +from sklearn.linear_model import LinearRegression +linreg = LinearRegression() +linreg.fit(X, y) + + +# print the coefficients +print linreg.intercept_ +print linreg.coef_ + + +# Interpreting the **intercept** ($\beta_0$): +# +# - It is the value of $y$ when $x$=0. +# - Thus, it is the estimated number of rentals when the temperature is 0 degrees Celsius. +# - **Note:** It does not always make sense to interpret the intercept. (Why?) +# +# Interpreting the **"temp" coefficient** ($\beta_1$): +# +# - It is the change in $y$ divided by change in $x$, or the "slope". +# - Thus, a temperature increase of 1 degree Celsius is **associated with** a rental increase of 9.17 bikes. +# - This is not a statement of causation. +# - $\beta_1$ would be **negative** if an increase in temperature was associated with a **decrease** in rentals. + +# ## Using the model for prediction +# +# How many bike rentals would we predict if the temperature was 25 degrees Celsius? + +# manually calculate the prediction +linreg.intercept_ + linreg.coef_*25 + + +# use the predict method +linreg.predict(25) + + +# ## Does the scale of the features matter? +# +# Let's say that temperature was measured in Fahrenheit, rather than Celsius. How would that affect the model? + +# create a new column for Fahrenheit temperature +bikes['temp_F'] = bikes.temp * 1.8 + 32 +bikes.head() + + +# Seaborn scatter plot with regression line +sns.lmplot(x='temp_F', y='total', data=bikes, aspect=1.5, scatter_kws={'alpha':0.2}) + + +# create X and y +feature_cols = ['temp_F'] +X = bikes[feature_cols] +y = bikes.total + +# instantiate and fit +linreg = LinearRegression() +linreg.fit(X, y) + +# print the coefficients +print linreg.intercept_ +print linreg.coef_ + + +# convert 25 degrees Celsius to Fahrenheit +25 * 1.8 + 32 + + +# predict rentals for 77 degrees Fahrenheit +linreg.predict(77) + + +# **Conclusion:** The scale of the features is **irrelevant** for linear regression models. When changing the scale, we simply change our **interpretation** of the coefficients. + +# remove the temp_F column +bikes.drop('temp_F', axis=1, inplace=True) + + +# ## Visualizing the data (part 2) + +# explore more features +feature_cols = ['temp', 'season', 'weather', 'humidity'] + + +# multiple scatter plots in Seaborn +sns.pairplot(bikes, x_vars=feature_cols, y_vars='total', kind='reg') + + +# multiple scatter plots in Pandas +fig, axs = plt.subplots(1, len(feature_cols), sharey=True) +for index, feature in enumerate(feature_cols): + bikes.plot(kind='scatter', x=feature, y='total', ax=axs[index], figsize=(16, 3)) + + +# Are you seeing anything that you did not expect? + +# cross-tabulation of season and month +pd.crosstab(bikes.season, bikes.index.month) + + +# box plot of rentals, grouped by season +bikes.boxplot(column='total', by='season') + + +# Notably: +# +# - A line can't capture a non-linear relationship. +# - There are more rentals in winter than in spring (?) + +# line plot of rentals +bikes.total.plot() + + +# What does this tell us? +# +# There are more rentals in the winter than the spring, but only because the system is experiencing **overall growth** and the winter months happen to come after the spring months. + +# correlation matrix (ranges from 1 to -1) +bikes.corr() + + +# visualize correlation matrix in Seaborn using a heatmap +sns.heatmap(bikes.corr()) + + +# What relationships do you notice? + +# ## Adding more features to the model + +# create a list of features +feature_cols = ['temp', 'season', 'weather', 'humidity'] + + +# create X and y +X = bikes[feature_cols] +y = bikes.total + +# instantiate and fit +linreg = LinearRegression() +linreg.fit(X, y) + +# print the coefficients +print linreg.intercept_ +print linreg.coef_ + + +# pair the feature names with the coefficients +zip(feature_cols, linreg.coef_) + + +# Interpreting the coefficients: +# +# - Holding all other features fixed, a 1 unit increase in **temperature** is associated with a **rental increase of 7.86 bikes**. +# - Holding all other features fixed, a 1 unit increase in **season** is associated with a **rental increase of 22.5 bikes**. +# - Holding all other features fixed, a 1 unit increase in **weather** is associated with a **rental increase of 6.67 bikes**. +# - Holding all other features fixed, a 1 unit increase in **humidity** is associated with a **rental decrease of 3.12 bikes**. +# +# Does anything look incorrect? + +# ## Feature selection +# +# How do we choose which features to include in the model? We're going to use **train/test split** (and eventually **cross-validation**). +# +# Why not use of **p-values** or **R-squared** for feature selection? +# +# - Linear models rely upon **a lot of assumptions** (such as the features being independent), and if those assumptions are violated, p-values and R-squared are less reliable. Train/test split relies on fewer assumptions. +# - Features that are unrelated to the response can still have **significant p-values**. +# - Adding features to your model that are unrelated to the response will always **increase the R-squared value**, and adjusted R-squared does not sufficiently account for this. +# - p-values and R-squared are **proxies** for our goal of generalization, whereas train/test split and cross-validation attempt to **directly estimate** how well the model will generalize to out-of-sample data. +# +# More generally: +# +# - There are different methodologies that can be used for solving any given data science problem, and this course follows a **machine learning methodology**. +# - This course focuses on **general purpose approaches** that can be applied to any model, rather than model-specific approaches. + +# ## Evaluation metrics for regression problems +# +# Evaluation metrics for classification problems, such as **accuracy**, are not useful for regression problems. We need evaluation metrics designed for comparing **continuous values**. +# +# Here are three common evaluation metrics for regression problems: +# +# **Mean Absolute Error** (MAE) is the mean of the absolute value of the errors: +# +# $$\frac 1n\sum_{i=1}^n|y_i-\hat{y}_i|$$ +# +# **Mean Squared Error** (MSE) is the mean of the squared errors: +# +# $$\frac 1n\sum_{i=1}^n(y_i-\hat{y}_i)^2$$ +# +# **Root Mean Squared Error** (RMSE) is the square root of the mean of the squared errors: +# +# $$\sqrt{\frac 1n\sum_{i=1}^n(y_i-\hat{y}_i)^2}$$ + +# example true and predicted response values +true = [10, 7, 5, 5] +pred = [8, 6, 5, 10] + + +# calculate these metrics by hand! +from sklearn import metrics +import numpy as np +print 'MAE:', metrics.mean_absolute_error(true, pred) +print 'MSE:', metrics.mean_squared_error(true, pred) +print 'RMSE:', np.sqrt(metrics.mean_squared_error(true, pred)) + + +# Comparing these metrics: +# +# - **MAE** is the easiest to understand, because it's the average error. +# - **MSE** is more popular than MAE, because MSE "punishes" larger errors, which tends to be useful in the real world. +# - **RMSE** is even more popular than MSE, because RMSE is interpretable in the "y" units. +# +# All of these are **loss functions**, because we want to minimize them. +# +# Here's an additional example, to demonstrate how MSE/RMSE punish larger errors: + +# same true values as above +true = [10, 7, 5, 5] + +# new set of predicted values +pred = [10, 7, 5, 13] + +# MAE is the same as before +print 'MAE:', metrics.mean_absolute_error(true, pred) + +# MSE and RMSE are larger than before +print 'MSE:', metrics.mean_squared_error(true, pred) +print 'RMSE:', np.sqrt(metrics.mean_squared_error(true, pred)) + + +# ## Comparing models with train/test split and RMSE + +from sklearn.cross_validation import train_test_split + +# define a function that accepts a list of features and returns testing RMSE +def train_test_rmse(feature_cols): + X = bikes[feature_cols] + y = bikes.total + X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=123) + linreg = LinearRegression() + linreg.fit(X_train, y_train) + y_pred = linreg.predict(X_test) + return np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# compare different sets of features +print train_test_rmse(['temp', 'season', 'weather', 'humidity']) +print train_test_rmse(['temp', 'season', 'weather']) +print train_test_rmse(['temp', 'season', 'humidity']) + + +# using these as features is not allowed! +print train_test_rmse(['casual', 'registered']) + + +# ## Comparing testing RMSE with null RMSE +# +# Null RMSE is the RMSE that could be achieved by **always predicting the mean response value**. It is a benchmark against which you may want to measure your regression model. + +# split X and y into training and testing sets +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=123) + +# create a NumPy array with the same shape as y_test +y_null = np.zeros_like(y_test, dtype=float) + +# fill the array with the mean value of y_test +y_null.fill(y_test.mean()) +y_null + + +# compute null RMSE +np.sqrt(metrics.mean_squared_error(y_test, y_null)) + + +# ## Handling categorical features +# +# scikit-learn expects all features to be numeric. So how do we include a categorical feature in our model? +# +# - **Ordered categories:** transform them to sensible numeric values (example: small=1, medium=2, large=3) +# - **Unordered categories:** use dummy encoding (0/1) +# +# What are the categorical features in our dataset? +# +# - **Ordered categories:** weather (already encoded with sensible numeric values) +# - **Unordered categories:** season (needs dummy encoding), holiday (already dummy encoded), workingday (already dummy encoded) +# +# For season, we can't simply leave the encoding as 1 = spring, 2 = summer, 3 = fall, and 4 = winter, because that would imply an **ordered relationship**. Instead, we create **multiple dummy variables:** + +# create dummy variables +season_dummies = pd.get_dummies(bikes.season, prefix='season') + +# print 5 random rows +season_dummies.sample(n=5, random_state=1) + + +# However, we actually only need **three dummy variables (not four)**, and thus we'll drop the first dummy variable. +# +# Why? Because three dummies captures all of the "information" about the season feature, and implicitly defines spring (season 1) as the **baseline level:** + +# drop the first column +season_dummies.drop(season_dummies.columns[0], axis=1, inplace=True) + +# print 5 random rows +season_dummies.sample(n=5, random_state=1) + + +# In general, if you have a categorical feature with **k possible values**, you create **k-1 dummy variables**. +# +# If that's confusing, think about why we only need one dummy variable for holiday, not two dummy variables (holiday_yes and holiday_no). + +# concatenate the original DataFrame and the dummy DataFrame (axis=0 means rows, axis=1 means columns) +bikes = pd.concat([bikes, season_dummies], axis=1) + +# print 5 random rows +bikes.sample(n=5, random_state=1) + + +# include dummy variables for season in the model +feature_cols = ['temp', 'season_2', 'season_3', 'season_4', 'humidity'] +X = bikes[feature_cols] +y = bikes.total +linreg = LinearRegression() +linreg.fit(X, y) +zip(feature_cols, linreg.coef_) + + +# How do we interpret the season coefficients? They are **measured against the baseline (spring)**: +# +# - Holding all other features fixed, **summer** is associated with a **rental decrease of 3.39 bikes** compared to the spring. +# - Holding all other features fixed, **fall** is associated with a **rental decrease of 41.7 bikes** compared to the spring. +# - Holding all other features fixed, **winter** is associated with a **rental increase of 64.4 bikes** compared to the spring. +# +# Would it matter if we changed which season was defined as the baseline? +# +# - No, it would simply change our **interpretation** of the coefficients. +# +# **Important:** Dummy encoding is relevant for all machine learning models, not just linear regression models. + +# compare original season variable with dummy variables +print train_test_rmse(['temp', 'season', 'humidity']) +print train_test_rmse(['temp', 'season_2', 'season_3', 'season_4', 'humidity']) + + +# ## Feature engineering +# +# See if you can create the following features: +# +# - **hour:** as a single numeric feature (0 through 23) +# - **hour:** as a categorical feature (use 23 dummy variables) +# - **daytime:** as a single categorical feature (daytime=1 from 7am to 8pm, and daytime=0 otherwise) +# +# Then, try using each of the three features (on its own) with `train_test_rmse` to see which one performs the best! + +# hour as a numeric feature +bikes['hour'] = bikes.index.hour + + +# hour as a categorical feature +hour_dummies = pd.get_dummies(bikes.hour, prefix='hour') +hour_dummies.drop(hour_dummies.columns[0], axis=1, inplace=True) +bikes = pd.concat([bikes, hour_dummies], axis=1) + + +# daytime as a categorical feature +bikes['daytime'] = ((bikes.hour > 6) & (bikes.hour < 21)).astype(int) + + +print train_test_rmse(['hour']) +print train_test_rmse(bikes.columns[bikes.columns.str.startswith('hour_')]) +print train_test_rmse(['daytime']) + + +# ## Comparing linear regression with other models +# +# Advantages of linear regression: +# +# - Simple to explain +# - Highly interpretable +# - Model training and prediction are fast +# - No tuning is required (excluding regularization) +# - Features don't need scaling +# - Can perform well with a small number of observations +# - Well-understood +# +# Disadvantages of linear regression: +# +# - Presumes a linear relationship between the features and the response +# - Performance is (generally) not competitive with the best supervised learning methods due to high bias +# - Can't automatically learn feature interactions diff --git a/code/10_yelp_votes_homework_nb.py b/code/10_yelp_votes_homework_nb.py new file mode 100644 index 0000000..e349b53 --- /dev/null +++ b/code/10_yelp_votes_homework_nb.py @@ -0,0 +1,192 @@ +# # Linear regression homework with Yelp votes + +# ## Introduction +# +# This assignment uses a small subset of the data from Kaggle's [Yelp Business Rating Prediction](https://www.kaggle.com/c/yelp-recsys-2013) competition. +# +# **Description of the data:** +# +# - `yelp.json` is the original format of the file. `yelp.csv` contains the same data, in a more convenient format. Both of the files are in this repo, so there is no need to download the data from the Kaggle website. +# - Each observation in this dataset is a review of a particular business by a particular user. +# - The "stars" column is the number of stars (1 through 5) assigned by the reviewer to the business. (Higher stars is better.) In other words, it is the rating of the business by the person who wrote the review. +# - The "cool" column is the number of "cool" votes this review received from other Yelp users. All reviews start with 0 "cool" votes, and there is no limit to how many "cool" votes a review can receive. In other words, it is a rating of the review itself, not a rating of the business. +# - The "useful" and "funny" columns are similar to the "cool" column. + +# ## Task 1 +# +# Read `yelp.csv` into a DataFrame. + +# access yelp.csv using a relative path +import pandas as pd +yelp = pd.read_csv('../data/yelp.csv') +yelp.head(1) + + +# ## Task 1 (Bonus) +# +# Ignore the `yelp.csv` file, and construct this DataFrame yourself from `yelp.json`. This involves reading the data into Python, decoding the JSON, converting it to a DataFrame, and adding individual columns for each of the vote types. + +# read the data from yelp.json into a list of rows +# each row is decoded into a dictionary using using json.loads() +import json +with open('../data/yelp.json', 'rU') as f: + data = [json.loads(row) for row in f] + + +# show the first review +data[0] + + +# convert the list of dictionaries to a DataFrame +yelp = pd.DataFrame(data) +yelp.head(1) + + +# add DataFrame columns for cool, useful, and funny +yelp['cool'] = [row['votes']['cool'] for row in data] +yelp['useful'] = [row['votes']['useful'] for row in data] +yelp['funny'] = [row['votes']['funny'] for row in data] + + +# drop the votes column +yelp.drop('votes', axis=1, inplace=True) +yelp.head(1) + + +# ## Task 2 +# +# Explore the relationship between each of the vote types (cool/useful/funny) and the number of stars. + +# treat stars as a categorical variable and look for differences between groups +yelp.groupby('stars').mean() + + +# correlation matrix +import seaborn as sns +sns.heatmap(yelp.corr()) + + +# multiple scatter plots +sns.pairplot(yelp, x_vars=['cool', 'useful', 'funny'], y_vars='stars', size=6, aspect=0.7, kind='reg') + + +# ## Task 3 +# +# Define cool/useful/funny as the features, and stars as the response. + +feature_cols = ['cool', 'useful', 'funny'] +X = yelp[feature_cols] +y = yelp.stars + + +# ## Task 4 +# +# Fit a linear regression model and interpret the coefficients. Do the coefficients make intuitive sense to you? Explore the Yelp website to see if you detect similar trends. + +from sklearn.linear_model import LinearRegression +linreg = LinearRegression() +linreg.fit(X, y) +zip(feature_cols, linreg.coef_) + + +# ## Task 5 +# +# Evaluate the model by splitting it into training and testing sets and computing the RMSE. Does the RMSE make intuitive sense to you? + +from sklearn.cross_validation import train_test_split +from sklearn import metrics +import numpy as np + + +# define a function that accepts a list of features and returns testing RMSE +def train_test_rmse(feature_cols): + X = yelp[feature_cols] + y = yelp.stars + X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + linreg = LinearRegression() + linreg.fit(X_train, y_train) + y_pred = linreg.predict(X_test) + return np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# calculate RMSE with all three features +train_test_rmse(['cool', 'useful', 'funny']) + + +# ## Task 6 +# +# Try removing some of the features and see if the RMSE improves. + +print train_test_rmse(['cool', 'useful']) +print train_test_rmse(['cool', 'funny']) +print train_test_rmse(['useful', 'funny']) + + +# ## Task 7 (Bonus) +# +# Think of some new features you could create from the existing data that might be predictive of the response. Figure out how to create those features in Pandas, add them to your model, and see if the RMSE improves. + +# new feature: review length (number of characters) +yelp['length'] = yelp.text.apply(len) + + +# new features: whether or not the review contains 'love' or 'hate' +yelp['love'] = yelp.text.str.contains('love', case=False).astype(int) +yelp['hate'] = yelp.text.str.contains('hate', case=False).astype(int) + + +# add new features to the model and calculate RMSE +train_test_rmse(['cool', 'useful', 'funny', 'length', 'love', 'hate']) + + +# ## Task 8 (Bonus) +# +# Compare your best RMSE on the testing set with the RMSE for the "null model", which is the model that ignores all features and simply predicts the mean response value in the testing set. + +# split the data (outside of the function) +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# create a NumPy array with the same shape as y_test +y_null = np.zeros_like(y_test, dtype=float) + + +# fill the array with the mean of y_test +y_null.fill(y_test.mean()) + + +# calculate null RMSE +print np.sqrt(metrics.mean_squared_error(y_test, y_null)) + + +# ## Task 9 (Bonus) +# +# Instead of treating this as a regression problem, treat it as a classification problem and see what testing accuracy you can achieve with KNN. + +# import and instantiate KNN +from sklearn.neighbors import KNeighborsClassifier +knn = KNeighborsClassifier(n_neighbors=50) + + +# classification models will automatically treat the response value (1/2/3/4/5) as unordered categories +knn.fit(X_train, y_train) +y_pred_class = knn.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# ## Task 10 (Bonus) +# +# Figure out how to use linear regression for classification, and compare its classification accuracy with KNN's accuracy. + +# use linear regression to make continuous predictions +linreg = LinearRegression() +linreg.fit(X_train, y_train) +y_pred = linreg.predict(X_test) + + +# round its predictions to the nearest integer +y_pred_class = y_pred.round() + + +# calculate classification accuracy of the rounded predictions +print metrics.accuracy_score(y_test, y_pred_class) diff --git a/code/12_e_log_examples_nb.py b/code/12_e_log_examples_nb.py new file mode 100644 index 0000000..8a3fdf0 --- /dev/null +++ b/code/12_e_log_examples_nb.py @@ -0,0 +1,71 @@ +# # Exponential functions and logarithms + +import math +import numpy as np + + +# ## Exponential functions + +# What is **e**? It is simply a number (known as Euler's number): + +math.e + + +# **e** is a significant number, because it is the base rate of growth shared by all continually growing processes. +# +# For example, if I have **10 dollars**, and it grows 100% in 1 year (compounding continuously), I end up with **10\*e^1 dollars**: + +# 100% growth for 1 year +10 * np.exp(1) + + +# 100% growth for 2 years +10 * np.exp(2) + + +# Side note: When e is raised to a power, it is known as **the exponential function**. Technically, any number can be the base, and it would still be known as **an exponential function** (such as 2^5). But in our context, the base of the exponential function is assumed to be e. +# +# Anyway, what if I only have 20% growth instead of 100% growth? + +# 20% growth for 1 year +10 * np.exp(0.20) + + +# 20% growth for 2 years +10 * np.exp(0.20 * 2) + + +# ## Logarithms + +# What is the **(natural) logarithm**? It gives you the time needed to reach a certain level of growth. For example, if I want growth by a factor of 2.718, it will take me 1 unit of time (assuming a 100% growth rate): + +# time needed to grow 1 unit to 2.718 units +np.log(2.718) + + +# If I want growth by a factor of 7.389, it will take me 2 units of time: + +# time needed to grow 1 unit to 7.389 units +np.log(7.389) + + +# If I want growth by a factor of 1, it will take me 0 units of time: + +# time needed to grow 1 unit to 1 unit +np.log(1) + + +# If I want growth by a factor of 0.5, it will take me -0.693 units of time (which is like looking back in time): + +# time needed to grow 1 unit to 0.5 units +np.log(0.5) + + +# ## Connecting the concepts + +# As you can see, the exponential function and the natural logarithm are **inverses** of one another: + +np.log(np.exp(5)) + + +np.exp(np.log(5)) diff --git a/code/12_logistic_regression_nb.py b/code/12_logistic_regression_nb.py new file mode 100644 index 0000000..1a92669 --- /dev/null +++ b/code/12_logistic_regression_nb.py @@ -0,0 +1,407 @@ +# # Logistic Regression + +# ## Agenda +# +# 1. Refresh your memory on how to do linear regression in scikit-learn +# 2. Attempt to use linear regression for classification +# 3. Show you why logistic regression is a better alternative for classification +# 4. Brief overview of probability, odds, e, log, and log-odds +# 5. Explain the form of logistic regression +# 6. Explain how to interpret logistic regression coefficients +# 7. Demonstrate how logistic regression works with categorical features +# 8. Compare logistic regression with other models + +# ## Part 1: Predicting a Continuous Response + +# glass identification dataset +import pandas as pd +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/glass/glass.data' +col_names = ['id','ri','na','mg','al','si','k','ca','ba','fe','glass_type'] +glass = pd.read_csv(url, names=col_names, index_col='id') +glass.sort('al', inplace=True) +glass.head() + + +# **Question:** Pretend that we want to predict **ri**, and our only feature is **al**. How could we do it using machine learning? +# +# **Answer:** We could frame it as a regression problem, and use a linear regression model with **al** as the only feature and **ri** as the response. +# +# **Question:** How would we **visualize** this model? +# +# **Answer:** Create a scatter plot with **al** on the x-axis and **ri** on the y-axis, and draw the line of best fit. + +import seaborn as sns +import matplotlib.pyplot as plt +sns.set(font_scale=1.5) + + +sns.lmplot(x='al', y='ri', data=glass, ci=None) + + +# **Question:** How would we draw this plot without using Seaborn? + +# scatter plot using Pandas +glass.plot(kind='scatter', x='al', y='ri') + + +# equivalent scatter plot using Matplotlib +plt.scatter(glass.al, glass.ri) +plt.xlabel('al') +plt.ylabel('ri') + + +# fit a linear regression model +from sklearn.linear_model import LinearRegression +linreg = LinearRegression() +feature_cols = ['al'] +X = glass[feature_cols] +y = glass.ri +linreg.fit(X, y) + + +# make predictions for all values of X +glass['ri_pred'] = linreg.predict(X) +glass.head() + + +# plot those predictions connected by a line +plt.plot(glass.al, glass.ri_pred, color='red') +plt.xlabel('al') +plt.ylabel('Predicted ri') + + +# put the plots together +plt.scatter(glass.al, glass.ri) +plt.plot(glass.al, glass.ri_pred, color='red') +plt.xlabel('al') +plt.ylabel('ri') + + +# ### Refresher: interpreting linear regression coefficients + +# Linear regression equation: $y = \beta_0 + \beta_1x$ + +# compute prediction for al=2 using the equation +linreg.intercept_ + linreg.coef_ * 2 + + +# compute prediction for al=2 using the predict method +linreg.predict(2) + + +# examine coefficient for al +zip(feature_cols, linreg.coef_) + + +# **Interpretation:** A 1 unit increase in 'al' is associated with a 0.0025 unit decrease in 'ri'. + +# increasing al by 1 (so that al=3) decreases ri by 0.0025 +1.51699012 - 0.0024776063874696243 + + +# compute prediction for al=3 using the predict method +linreg.predict(3) + + +# ## Part 2: Predicting a Categorical Response + +# examine glass_type +glass.glass_type.value_counts().sort_index() + + +# types 1, 2, 3 are window glass +# types 5, 6, 7 are household glass +glass['household'] = glass.glass_type.map({1:0, 2:0, 3:0, 5:1, 6:1, 7:1}) +glass.head() + + +# Let's change our task, so that we're predicting **household** using **al**. Let's visualize the relationship to figure out how to do this: + +plt.scatter(glass.al, glass.household) +plt.xlabel('al') +plt.ylabel('household') + + +# Let's draw a **regression line**, like we did before: + +# fit a linear regression model and store the predictions +feature_cols = ['al'] +X = glass[feature_cols] +y = glass.household +linreg.fit(X, y) +glass['household_pred'] = linreg.predict(X) + + +# scatter plot that includes the regression line +plt.scatter(glass.al, glass.household) +plt.plot(glass.al, glass.household_pred, color='red') +plt.xlabel('al') +plt.ylabel('household') + + +# If **al=3**, what class do we predict for household? **1** +# +# If **al=1.5**, what class do we predict for household? **0** +# +# We predict the 0 class for **lower** values of al, and the 1 class for **higher** values of al. What's our cutoff value? Around **al=2**, because that's where the linear regression line crosses the midpoint between predicting class 0 and class 1. +# +# Therefore, we'll say that if **household_pred >= 0.5**, we predict a class of **1**, else we predict a class of **0**. + +# understanding np.where +import numpy as np +nums = np.array([5, 15, 8]) + +# np.where returns the first value if the condition is True, and the second value if the condition is False +np.where(nums > 10, 'big', 'small') + + +# transform household_pred to 1 or 0 +glass['household_pred_class'] = np.where(glass.household_pred >= 0.5, 1, 0) +glass.head() + + +# plot the class predictions +plt.scatter(glass.al, glass.household) +plt.plot(glass.al, glass.household_pred_class, color='red') +plt.xlabel('al') +plt.ylabel('household') + + +# ## Part 3: Using Logistic Regression Instead +# +# Logistic regression can do what we just did: + +# fit a logistic regression model and store the class predictions +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +feature_cols = ['al'] +X = glass[feature_cols] +y = glass.household +logreg.fit(X, y) +glass['household_pred_class'] = logreg.predict(X) + + +# plot the class predictions +plt.scatter(glass.al, glass.household) +plt.plot(glass.al, glass.household_pred_class, color='red') +plt.xlabel('al') +plt.ylabel('household') + + +# What if we wanted the **predicted probabilities** instead of just the **class predictions**, to understand how confident we are in a given prediction? + +# store the predicted probabilites of class 1 +glass['household_pred_prob'] = logreg.predict_proba(X)[:, 1] + + +# plot the predicted probabilities +plt.scatter(glass.al, glass.household) +plt.plot(glass.al, glass.household_pred_prob, color='red') +plt.xlabel('al') +plt.ylabel('household') + + +# examine some example predictions +print logreg.predict_proba(1) +print logreg.predict_proba(2) +print logreg.predict_proba(3) + + +# The first column indicates the predicted probability of **class 0**, and the second column indicates the predicted probability of **class 1**. + +# ## Part 4: Probability, odds, e, log, log-odds +# +# $$probability = \frac {one\ outcome} {all\ outcomes}$$ +# +# $$odds = \frac {one\ outcome} {all\ other\ outcomes}$$ +# +# Examples: +# +# - Dice roll of 1: probability = 1/6, odds = 1/5 +# - Even dice roll: probability = 3/6, odds = 3/3 = 1 +# - Dice roll less than 5: probability = 4/6, odds = 4/2 = 2 +# +# $$odds = \frac {probability} {1 - probability}$$ +# +# $$probability = \frac {odds} {1 + odds}$$ + +# create a table of probability versus odds +table = pd.DataFrame({'probability':[0.1, 0.2, 0.25, 0.5, 0.6, 0.8, 0.9]}) +table['odds'] = table.probability/(1 - table.probability) +table + + +# What is **e**? It is the base rate of growth shared by all continually growing processes: + +# exponential function: e^1 +np.exp(1) + + +# What is a **(natural) log**? It gives you the time needed to reach a certain level of growth: + +# time needed to grow 1 unit to 2.718 units +np.log(2.718) + + +# It is also the **inverse** of the exponential function: + +np.log(np.exp(5)) + + +# add log-odds to the table +table['logodds'] = np.log(table.odds) +table + + +# ## Part 5: What is Logistic Regression? + +# **Linear regression:** continuous response is modeled as a linear combination of the features: +# +# $$y = \beta_0 + \beta_1x$$ +# +# **Logistic regression:** log-odds of a categorical response being "true" (1) is modeled as a linear combination of the features: +# +# $$\log \left({p\over 1-p}\right) = \beta_0 + \beta_1x$$ +# +# This is called the **logit function**. +# +# Probability is sometimes written as pi: +# +# $$\log \left({\pi\over 1-\pi}\right) = \beta_0 + \beta_1x$$ +# +# The equation can be rearranged into the **logistic function**: +# +# $$\pi = \frac{e^{\beta_0 + \beta_1x}} {1 + e^{\beta_0 + \beta_1x}}$$ + +# In other words: +# +# - Logistic regression outputs the **probabilities of a specific class** +# - Those probabilities can be converted into **class predictions** +# +# The **logistic function** has some nice properties: +# +# - Takes on an "s" shape +# - Output is bounded by 0 and 1 +# +# We have covered how this works for **binary classification problems** (two response classes). But what about **multi-class classification problems** (more than two response classes)? +# +# - Most common solution for classification models is **"one-vs-all"** (also known as **"one-vs-rest"**): decompose the problem into multiple binary classification problems +# - **Multinomial logistic regression** can solve this as a single problem + +# ## Part 6: Interpreting Logistic Regression Coefficients + +# plot the predicted probabilities again +plt.scatter(glass.al, glass.household) +plt.plot(glass.al, glass.household_pred_prob, color='red') +plt.xlabel('al') +plt.ylabel('household') + + +# compute predicted log-odds for al=2 using the equation +logodds = logreg.intercept_ + logreg.coef_[0] * 2 +logodds + + +# convert log-odds to odds +odds = np.exp(logodds) +odds + + +# convert odds to probability +prob = odds/(1 + odds) +prob + + +# compute predicted probability for al=2 using the predict_proba method +logreg.predict_proba(2)[:, 1] + + +# examine the coefficient for al +zip(feature_cols, logreg.coef_[0]) + + +# **Interpretation:** A 1 unit increase in 'al' is associated with a 4.18 unit increase in the log-odds of 'household'. + +# increasing al by 1 (so that al=3) increases the log-odds by 4.18 +logodds = 0.64722323 + 4.1804038614510901 +odds = np.exp(logodds) +prob = odds/(1 + odds) +prob + + +# compute predicted probability for al=3 using the predict_proba method +logreg.predict_proba(3)[:, 1] + + +# **Bottom line:** Positive coefficients increase the log-odds of the response (and thus increase the probability), and negative coefficients decrease the log-odds of the response (and thus decrease the probability). + +# examine the intercept +logreg.intercept_ + + +# **Interpretation:** For an 'al' value of 0, the log-odds of 'household' is -7.71. + +# convert log-odds to probability +logodds = logreg.intercept_ +odds = np.exp(logodds) +prob = odds/(1 + odds) +prob + + +# That makes sense from the plot above, because the probability of household=1 should be very low for such a low 'al' value. + +# ![Logistic regression beta values](images/logistic_betas.png) + +# Changing the $\beta_0$ value shifts the curve **horizontally**, whereas changing the $\beta_1$ value changes the **slope** of the curve. + +# ## Part 7: Using Logistic Regression with Categorical Features + +# Logistic regression can still be used with **categorical features**. Let's see what that looks like: + +# create a categorical feature +glass['high_ba'] = np.where(glass.ba > 0.5, 1, 0) + + +# Let's use Seaborn to draw the logistic curve: + +# original (continuous) feature +sns.lmplot(x='ba', y='household', data=glass, ci=None, logistic=True) + + +# categorical feature +sns.lmplot(x='high_ba', y='household', data=glass, ci=None, logistic=True) + + +# categorical feature, with jitter added +sns.lmplot(x='high_ba', y='household', data=glass, ci=None, logistic=True, x_jitter=0.05, y_jitter=0.05) + + +# fit a logistic regression model +feature_cols = ['high_ba'] +X = glass[feature_cols] +y = glass.household +logreg.fit(X, y) + + +# examine the coefficient for high_ba +zip(feature_cols, logreg.coef_[0]) + + +# **Interpretation:** Having a high 'ba' value is associated with a 4.43 unit increase in the log-odds of 'household' (as compared to a low 'ba' value). + +# ## Part 8: Comparing Logistic Regression with Other Models +# +# Advantages of logistic regression: +# +# - Highly interpretable (if you remember how) +# - Model training and prediction are fast +# - No tuning is required (excluding regularization) +# - Features don't need scaling +# - Can perform well with a small number of observations +# - Outputs well-calibrated predicted probabilities +# +# Disadvantages of logistic regression: +# +# - Presumes a linear relationship between the features and the log-odds of the response +# - Performance is (generally) not competitive with the best supervised learning methods +# - Can't automatically learn feature interactions diff --git a/code/12_titanic_confusion_nb.py b/code/12_titanic_confusion_nb.py new file mode 100644 index 0000000..13509a4 --- /dev/null +++ b/code/12_titanic_confusion_nb.py @@ -0,0 +1,123 @@ +# # Logistic regression exercise with Titanic data + +# ## Introduction +# +# - Data from Kaggle's Titanic competition: [data](https://github.com/justmarkham/DAT8/blob/master/data/titanic.csv), [data dictionary](https://www.kaggle.com/c/titanic/data) +# - **Goal**: Predict survival based on passenger characteristics +# - `titanic.csv` is already in our repo, so there is no need to download the data from the Kaggle website + +# ## Step 1: Read the data into Pandas + +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv' +titanic = pd.read_csv(url, index_col='PassengerId') +titanic.head() + + +# ## Step 2: Create X and y +# +# Define **Pclass** and **Parch** as the features, and **Survived** as the response. + +feature_cols = ['Pclass', 'Parch'] +X = titanic[feature_cols] +y = titanic.Survived + + +# ## Step 3: Split the data into training and testing sets + +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# ## Step 4: Fit a logistic regression model and examine the coefficients +# +# Confirm that the coefficients make intuitive sense. + +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train, y_train) +zip(feature_cols, logreg.coef_[0]) + + +# ## Step 5: Make predictions on the testing set and calculate the accuracy + +# class predictions (not predicted probabilities) +y_pred_class = logreg.predict(X_test) + + +# calculate classification accuracy +from sklearn import metrics +print metrics.accuracy_score(y_test, y_pred_class) + + +# ## Step 6: Compare your testing accuracy to the null accuracy + +# this works regardless of the number of classes +y_test.value_counts().head(1) / len(y_test) + + +# this only works for binary classification problems coded as 0/1 +max(y_test.mean(), 1 - y_test.mean()) + + +# # Confusion matrix of Titanic predictions + +# print confusion matrix +print metrics.confusion_matrix(y_test, y_pred_class) + + +# save confusion matrix and slice into four pieces +confusion = metrics.confusion_matrix(y_test, y_pred_class) +TP = confusion[1][1] +TN = confusion[0][0] +FP = confusion[0][1] +FN = confusion[1][0] + + +print 'True Positives:', TP +print 'True Negatives:', TN +print 'False Positives:', FP +print 'False Negatives:', FN + + +# calculate the sensitivity +print TP / float(TP + FN) +print 44 / float(44 + 51) + + +# calculate the specificity +print TN / float(TN + FP) +print 105 / float(105 + 23) + + +# store the predicted probabilities +y_pred_prob = logreg.predict_proba(X_test)[:, 1] + + +# histogram of predicted probabilities +import matplotlib.pyplot as plt +plt.hist(y_pred_prob) +plt.xlim(0, 1) +plt.xlabel('Predicted probability of survival') +plt.ylabel('Frequency') + + +# increase sensitivity by lowering the threshold for predicting survival +import numpy as np +y_pred_class = np.where(y_pred_prob > 0.3, 1, 0) + + +# old confusion matrix +print confusion + + +# new confusion matrix +print metrics.confusion_matrix(y_test, y_pred_class) + + +# new sensitivity (higher than before) +print 63 / float(63 + 32) + + +# new specificity (lower than before) +print 72 / float(72 + 56) diff --git a/code/13_advanced_model_evaluation_nb.py b/code/13_advanced_model_evaluation_nb.py new file mode 100644 index 0000000..3a4423f --- /dev/null +++ b/code/13_advanced_model_evaluation_nb.py @@ -0,0 +1,201 @@ +# # Data Preparation and Advanced Model Evaluation + +# ## Agenda +# +# **Data preparation** +# +# - Handling missing values +# - Handling categorical features (review) +# +# **Advanced model evaluation** +# +# - ROC curves and AUC +# - Bonus: ROC curve is only sensitive to rank order of predicted probabilities +# - Cross-validation + +# ## Part 1: Handling missing values + +# scikit-learn models expect that all values are **numeric** and **hold meaning**. Thus, missing values are not allowed by scikit-learn. + +# read the Titanic data +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv' +titanic = pd.read_csv(url, index_col='PassengerId') +titanic.shape + + +# check for missing values +titanic.isnull().sum() + + +# One possible strategy is to **drop missing values**: + +# drop rows with any missing values +titanic.dropna().shape + + +# drop rows where Age is missing +titanic[titanic.Age.notnull()].shape + + +# Sometimes a better strategy is to **impute missing values**: + +# mean Age +titanic.Age.mean() + + +# median Age +titanic.Age.median() + + +# most frequent Age +titanic.Age.mode() + + +# fill missing values for Age with the median age +titanic.Age.fillna(titanic.Age.median(), inplace=True) + + +# Another strategy would be to build a **KNN model** just to impute missing values. How would we do that? +# +# If values are missing from a categorical feature, we could treat the missing values as **another category**. Why might that make sense? +# +# How do we **choose** between all of these strategies? + +# ## Part 2: Handling categorical features (Review) + +# How do we include a categorical feature in our model? +# +# - **Ordered categories:** transform them to sensible numeric values (example: small=1, medium=2, large=3) +# - **Unordered categories:** use dummy encoding (0/1) + +titanic.head(10) + + +# encode Sex_Female feature +titanic['Sex_Female'] = titanic.Sex.map({'male':0, 'female':1}) + + +# create a DataFrame of dummy variables for Embarked +embarked_dummies = pd.get_dummies(titanic.Embarked, prefix='Embarked') +embarked_dummies.drop(embarked_dummies.columns[0], axis=1, inplace=True) + +# concatenate the original DataFrame and the dummy DataFrame +titanic = pd.concat([titanic, embarked_dummies], axis=1) + + +titanic.head(1) + + +# - How do we **interpret** the encoding for Embarked? +# - Why didn't we just encode Embarked using a **single feature** (C=0, Q=1, S=2)? +# - Does it matter which category we choose to define as the **baseline**? +# - Why do we only need **two dummy variables** for Embarked? + +# define X and y +feature_cols = ['Pclass', 'Parch', 'Age', 'Sex_Female', 'Embarked_Q', 'Embarked_S'] +X = titanic[feature_cols] +y = titanic.Survived + +# train/test split +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + +# train a logistic regression model +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train, y_train) + +# make predictions for testing set +y_pred_class = logreg.predict(X_test) + +# calculate testing accuracy +from sklearn import metrics +print metrics.accuracy_score(y_test, y_pred_class) + + +# ## Part 3: ROC curves and AUC + +# predict probability of survival +y_pred_prob = logreg.predict_proba(X_test)[:, 1] + + +import matplotlib.pyplot as plt +plt.rcParams['figure.figsize'] = (8, 6) +plt.rcParams['font.size'] = 14 + + +# plot ROC curve +fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_prob) +plt.plot(fpr, tpr) +plt.xlim([0.0, 1.0]) +plt.ylim([0.0, 1.0]) +plt.xlabel('False Positive Rate (1 - Specificity)') +plt.ylabel('True Positive Rate (Sensitivity)') + + +# calculate AUC +print metrics.roc_auc_score(y_test, y_pred_prob) + + +# Besides allowing you to calculate AUC, seeing the ROC curve can help you to choose a threshold that **balances sensitivity and specificity** in a way that makes sense for the particular context. + +# histogram of predicted probabilities grouped by actual response value +df = pd.DataFrame({'probability':y_pred_prob, 'actual':y_test}) +df.hist(column='probability', by='actual', sharex=True, sharey=True) + + +# What would have happened if you had used **y_pred_class** instead of **y_pred_prob** when drawing the ROC curve or calculating AUC? + +# ROC curve using y_pred_class - WRONG! +fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_class) +plt.plot(fpr, tpr) + + +# AUC using y_pred_class - WRONG! +print metrics.roc_auc_score(y_test, y_pred_class) + + +# If you use **y_pred_class**, it will interpret the zeros and ones as predicted probabilities of 0% and 100%. + +# ## Bonus: ROC curve is only sensitive to rank order of predicted probabilities + +# print the first 10 predicted probabilities +y_pred_prob[:10] + + +# take the square root of predicted probabilities (to make them all bigger) +import numpy as np +y_pred_prob_new = np.sqrt(y_pred_prob) + +# print the modified predicted probabilities +y_pred_prob_new[:10] + + +# histogram of predicted probabilities has changed +df = pd.DataFrame({'probability':y_pred_prob_new, 'actual':y_test}) +df.hist(column='probability', by='actual', sharex=True, sharey=True) + + +# ROC curve did not change +fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_prob_new) +plt.plot(fpr, tpr) + + +# AUC did not change +print metrics.roc_auc_score(y_test, y_pred_prob_new) + + +# ## Part 4: Cross-validation + +# calculate cross-validated AUC +from sklearn.cross_validation import cross_val_score +cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean() + + +# add Fare to the model +feature_cols = ['Pclass', 'Parch', 'Age', 'Sex_Female', 'Embarked_Q', 'Embarked_S', 'Fare'] +X = titanic[feature_cols] + +# recalculate AUC +cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean() diff --git a/code/13_bank_exercise_nb.py b/code/13_bank_exercise_nb.py new file mode 100644 index 0000000..0292712 --- /dev/null +++ b/code/13_bank_exercise_nb.py @@ -0,0 +1,140 @@ +# # Exercise with bank marketing data + +# ## Introduction +# +# - Data from the UCI Machine Learning Repository: [data](https://github.com/justmarkham/DAT8/blob/master/data/bank-additional.csv), [data dictionary](https://archive.ics.uci.edu/ml/datasets/Bank+Marketing) +# - **Goal:** Predict whether a customer will purchase a bank product marketed over the phone +# - `bank-additional.csv` is already in our repo, so there is no need to download the data from the UCI website + +# ## Step 1: Read the data into Pandas + +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bank-additional.csv' +bank = pd.read_csv(url, sep=';') +bank.head() + + +# ## Step 2: Prepare at least three features +# +# - Include both numeric and categorical features +# - Choose features that you think might be related to the response (based on intuition or exploration) +# - Think about how to handle missing values (encoded as "unknown") + +# list all columns (for reference) +bank.columns + + +# ### y (response) + +# convert the response to numeric values and store as a new column +bank['outcome'] = bank.y.map({'no':0, 'yes':1}) + + +# ### age + +# probably not a great feature +bank.boxplot(column='age', by='outcome') + + +# ### job + +# looks like a useful feature +bank.groupby('job').outcome.mean() + + +# create job_dummies (we will add it to the bank DataFrame later) +job_dummies = pd.get_dummies(bank.job, prefix='job') +job_dummies.drop(job_dummies.columns[0], axis=1, inplace=True) + + +# ### default + +# looks like a useful feature +bank.groupby('default').outcome.mean() + + +# but only one person in the dataset has a status of yes +bank.default.value_counts() + + +# so, let's treat this as a 2-class feature rather than a 3-class feature +bank['default'] = bank.default.map({'no':0, 'unknown':1, 'yes':1}) + + +# ### contact + +# looks like a useful feature +bank.groupby('contact').outcome.mean() + + +# convert the feature to numeric values +bank['contact'] = bank.contact.map({'cellular':0, 'telephone':1}) + + +# ### month + +# looks like a useful feature at first glance +bank.groupby('month').outcome.mean() + + +# but, it looks like their success rate is actually just correlated with number of calls +# thus, the month feature is unlikely to generalize +bank.groupby('month').outcome.agg(['count', 'mean']).sort('count') + + +# ### duration + +# looks like an excellent feature, but you can't know the duration of a call beforehand, thus it can't be used in your model +bank.boxplot(column='duration', by='outcome') + + +# ### previous + +# looks like a useful feature +bank.groupby('previous').outcome.mean() + + +# ### poutcome + +# looks like a useful feature +bank.groupby('poutcome').outcome.mean() + + +# create poutcome_dummies +poutcome_dummies = pd.get_dummies(bank.poutcome, prefix='poutcome') +poutcome_dummies.drop(poutcome_dummies.columns[0], axis=1, inplace=True) + + +# concatenate bank DataFrame with job_dummies and poutcome_dummies +bank = pd.concat([bank, job_dummies, poutcome_dummies], axis=1) + + +# ### euribor3m + +# looks like an excellent feature +bank.boxplot(column='euribor3m', by='outcome') + + +# ## Step 3: Model building +# +# - Use cross-validation to evaluate the AUC of a logistic regression model with your chosen features +# - Try to increase the AUC by selecting different sets of features + +# new list of columns (including dummy columns) +bank.columns + + +# create X (including 13 dummy columns) +feature_cols = ['default', 'contact', 'previous', 'euribor3m'] + list(bank.columns[-13:]) +X = bank[feature_cols] + + +# create y +y = bank.outcome + + +# calculate cross-validated AUC +from sklearn.linear_model import LogisticRegression +from sklearn.cross_validation import cross_val_score +logreg = LogisticRegression(C=1e9) +cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean() diff --git a/code/13_cross_validation_nb.py b/code/13_cross_validation_nb.py new file mode 100644 index 0000000..aa5a683 --- /dev/null +++ b/code/13_cross_validation_nb.py @@ -0,0 +1,227 @@ +# # Cross-validation for parameter tuning, model selection, and feature selection +# *From the video series: [Introduction to machine learning with scikit-learn](https://github.com/justmarkham/scikit-learn-videos)* + +# ## Agenda +# +# - What is the drawback of using the **train/test split** procedure for model evaluation? +# - How does **K-fold cross-validation** overcome this limitation? +# - How can cross-validation be used for selecting **tuning parameters**, choosing between **models**, and selecting **features**? +# - What are some possible **improvements** to cross-validation? + +# ## Review of model evaluation procedures + +# **Motivation:** Need a way to choose between machine learning models +# +# - Goal is to estimate likely performance of a model on **out-of-sample data** +# +# **Initial idea:** Train and test on the same data +# +# - But, maximizing **training accuracy** rewards overly complex models which **overfit** the training data +# +# **Alternative idea:** Train/test split +# +# - Split the dataset into two pieces, so that the model can be trained and tested on **different data** +# - **Testing accuracy** is a better estimate than training accuracy of out-of-sample performance +# - But, it provides a **high variance** estimate since changing which observations happen to be in the testing set can significantly change testing accuracy + +from sklearn.datasets import load_iris +from sklearn.cross_validation import train_test_split +from sklearn.neighbors import KNeighborsClassifier +from sklearn import metrics + + +# read in the iris data +iris = load_iris() + +# create X (features) and y (response) +X = iris.data +y = iris.target + + +# use train/test split with different random_state values +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=4) + +# check classification accuracy of KNN with K=5 +knn = KNeighborsClassifier(n_neighbors=5) +knn.fit(X_train, y_train) +y_pred = knn.predict(X_test) +print metrics.accuracy_score(y_test, y_pred) + + +# **Question:** What if we created a bunch of train/test splits, calculated the testing accuracy for each, and averaged the results together? +# +# **Answer:** That's the essense of cross-validation! + +# ## Steps for K-fold cross-validation + +# 1. Split the dataset into K **equal** partitions (or "folds"). +# 2. Use fold 1 as the **testing set** and the union of the other folds as the **training set**. +# 3. Calculate **testing accuracy**. +# 4. Repeat steps 2 and 3 K times, using a **different fold** as the testing set each time. +# 5. Use the **average testing accuracy** as the estimate of out-of-sample accuracy. + +# Diagram of **5-fold cross-validation:** +# +# ![5-fold cross-validation](images/cross_validation_diagram.png) + +# simulate splitting a dataset of 25 observations into 5 folds +from sklearn.cross_validation import KFold +kf = KFold(25, n_folds=5, shuffle=False) + +# print the contents of each training and testing set +print '{} {:^61} {}'.format('Iteration', 'Training set observations', 'Testing set observations') +for iteration, data in enumerate(kf, start=1): + print '{:^9} {} {:^25}'.format(iteration, data[0], data[1]) + + +# - Dataset contains **25 observations** (numbered 0 through 24) +# - 5-fold cross-validation, thus it runs for **5 iterations** +# - For each iteration, every observation is either in the training set or the testing set, **but not both** +# - Every observation is in the testing set **exactly once** + +# ## Comparing cross-validation to train/test split + +# Advantages of **cross-validation:** +# +# - More accurate estimate of out-of-sample accuracy +# - More "efficient" use of data (every observation is used for both training and testing) +# +# Advantages of **train/test split:** +# +# - Runs K times faster than K-fold cross-validation +# - Simpler to examine the detailed results of the testing process + +# ## Cross-validation recommendations + +# 1. K can be any number, but **K=10** is generally recommended +# 2. For classification problems, **stratified sampling** is recommended for creating the folds +# - Each response class should be represented with equal proportions in each of the K folds +# - scikit-learn's `cross_val_score` function does this by default + +# ## Cross-validation example: parameter tuning + +# **Goal:** Select the best tuning parameters (aka "hyperparameters") for KNN on the iris dataset + +from sklearn.cross_validation import cross_val_score + + +# 10-fold cross-validation with K=5 for KNN (the n_neighbors parameter) +knn = KNeighborsClassifier(n_neighbors=5) +scores = cross_val_score(knn, X, y, cv=10, scoring='accuracy') +print scores + + +# use average accuracy as an estimate of out-of-sample accuracy +print scores.mean() + + +# search for an optimal value of K for KNN +k_range = range(1, 31) +k_scores = [] +for k in k_range: + knn = KNeighborsClassifier(n_neighbors=k) + scores = cross_val_score(knn, X, y, cv=10, scoring='accuracy') + k_scores.append(scores.mean()) +print k_scores + + +import matplotlib.pyplot as plt + +# plot the value of K for KNN (x-axis) versus the cross-validated accuracy (y-axis) +plt.plot(k_range, k_scores) +plt.xlabel('Value of K for KNN') +plt.ylabel('Cross-Validated Accuracy') + + +# ## Cross-validation example: model selection + +# **Goal:** Compare the best KNN model with logistic regression on the iris dataset + +# 10-fold cross-validation with the best KNN model +knn = KNeighborsClassifier(n_neighbors=20) +print cross_val_score(knn, X, y, cv=10, scoring='accuracy').mean() + + +# 10-fold cross-validation with logistic regression +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression() +print cross_val_score(logreg, X, y, cv=10, scoring='accuracy').mean() + + +# ## Cross-validation example: feature selection + +# **Goal**: Select whether the Newspaper feature should be included in the linear regression model on the advertising dataset + +import pandas as pd +import numpy as np +from sklearn.linear_model import LinearRegression + + +# read in the advertising dataset +data = pd.read_csv('http://www-bcf.usc.edu/~gareth/ISL/Advertising.csv', index_col=0) + + +# create a Python list of three feature names +feature_cols = ['TV', 'Radio', 'Newspaper'] + +# use the list to select a subset of the DataFrame (X) +X = data[feature_cols] + +# select the Sales column as the response (y) +y = data.Sales + + +# 10-fold cross-validation with all three features +lm = LinearRegression() +scores = cross_val_score(lm, X, y, cv=10, scoring='mean_squared_error') +print scores + + +# fix the sign of MSE scores +mse_scores = -scores +print mse_scores + + +# convert from MSE to RMSE +rmse_scores = np.sqrt(mse_scores) +print rmse_scores + + +# calculate the average RMSE +print rmse_scores.mean() + + +# 10-fold cross-validation with two features (excluding Newspaper) +feature_cols = ['TV', 'Radio'] +X = data[feature_cols] +print np.sqrt(-cross_val_score(lm, X, y, cv=10, scoring='mean_squared_error')).mean() + + +# ## Improvements to cross-validation + +# **Repeated cross-validation** +# +# - Repeat cross-validation multiple times (with **different random splits** of the data) and average the results +# - More reliable estimate of out-of-sample performance by **reducing the variance** associated with a single trial of cross-validation +# +# **Creating a hold-out set** +# +# - "Hold out" a portion of the data **before** beginning the model building process +# - Locate the best model using cross-validation on the remaining data, and test it **using the hold-out set** +# - More reliable estimate of out-of-sample performance since hold-out set is **truly out-of-sample** +# +# **Feature engineering and selection within cross-validation iterations** +# +# - Normally, feature engineering and selection occurs **before** cross-validation +# - Instead, perform all feature engineering and selection **within each cross-validation iteration** +# - More reliable estimate of out-of-sample performance since it **better mimics** the application of the model to out-of-sample data + +# ## Resources +# +# - scikit-learn documentation: [Cross-validation](http://scikit-learn.org/stable/modules/cross_validation.html), [Model evaluation](http://scikit-learn.org/stable/modules/model_evaluation.html) +# - scikit-learn issue on GitHub: [MSE is negative when returned by cross_val_score](https://github.com/scikit-learn/scikit-learn/issues/2439) +# - Section 5.1 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (11 pages) and related videos: [K-fold and leave-one-out cross-validation](https://www.youtube.com/watch?v=nZAM5OXrktY) (14 minutes), [Cross-validation the right and wrong ways](https://www.youtube.com/watch?v=S06JpVoNaA0) (10 minutes) +# - Scott Fortmann-Roe: [Accurately Measuring Model Prediction Error](http://scott.fortmann-roe.com/docs/MeasuringError.html) +# - Machine Learning Mastery: [An Introduction to Feature Selection](http://machinelearningmastery.com/an-introduction-to-feature-selection/) +# - Harvard CS109: [Cross-Validation: The Right and Wrong Way](https://github.com/cs109/content/blob/master/lec_10_cross_val.ipynb) +# - Journal of Cheminformatics: [Cross-validation pitfalls when selecting and assessing regression and classification models](http://www.jcheminf.com/content/pdf/1758-2946-6-10.pdf) diff --git a/code/14_bayes_theorem_iris_nb.py b/code/14_bayes_theorem_iris_nb.py new file mode 100644 index 0000000..d21a4c0 --- /dev/null +++ b/code/14_bayes_theorem_iris_nb.py @@ -0,0 +1,102 @@ +# # Applying Bayes' theorem to iris classification +# +# Can **Bayes' theorem** help us to solve a **classification problem**, namely predicting the species of an iris? + +# ## Preparing the data +# +# We'll read the iris data into a DataFrame, and **round up** all of the measurements to the next integer: + +import pandas as pd +import numpy as np + + +# read the iris data into a DataFrame +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data' +col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species'] +iris = pd.read_csv(url, header=None, names=col_names) +iris.head() + + +# apply the ceiling function to the numeric columns +iris.loc[:, 'sepal_length':'petal_width'] = iris.loc[:, 'sepal_length':'petal_width'].apply(np.ceil) +iris.head() + + +# ## Deciding how to make a prediction +# +# Let's say that I have an **out-of-sample iris** with the following measurements: **7, 3, 5, 2**. How might I predict the species? + +# show all observations with features: 7, 3, 5, 2 +iris[(iris.sepal_length==7) & (iris.sepal_width==3) & (iris.petal_length==5) & (iris.petal_width==2)] + + +# count the species for these observations +iris[(iris.sepal_length==7) & (iris.sepal_width==3) & (iris.petal_length==5) & (iris.petal_width==2)].species.value_counts() + + +# count the species for all observations +iris.species.value_counts() + + +# Let's frame this as a **conditional probability problem**: What is the probability of some particular species, given the measurements 7, 3, 5, and 2? +# +# $$P(species \ | \ 7352)$$ +# +# We could calculate the conditional probability for **each of the three species**, and then predict the species with the **highest probability**: +# +# $$P(setosa \ | \ 7352)$$ +# $$P(versicolor \ | \ 7352)$$ +# $$P(virginica \ | \ 7352)$$ + +# ## Calculating the probability of each species +# +# **Bayes' theorem** gives us a way to calculate these conditional probabilities. +# +# Let's start with **versicolor**: +# +# $$P(versicolor \ | \ 7352) = \frac {P(7352 \ | \ versicolor) \times P(versicolor)} {P(7352)}$$ +# +# We can calculate each of the terms on the right side of the equation: +# +# $$P(7352 \ | \ versicolor) = \frac {13} {50} = 0.26$$ +# +# $$P(versicolor) = \frac {50} {150} = 0.33$$ +# +# $$P(7352) = \frac {17} {150} = 0.11$$ +# +# Therefore, Bayes' theorem says the **probability of versicolor given these measurements** is: +# +# $$P(versicolor \ | \ 7352) = \frac {0.26 \times 0.33} {0.11} = 0.76$$ +# +# Let's repeat this process for **virginica** and **setosa**: +# +# $$P(virginica \ | \ 7352) = \frac {0.08 \times 0.33} {0.11} = 0.24$$ +# +# $$P(setosa \ | \ 7352) = \frac {0 \times 0.33} {0.11} = 0$$ +# +# We predict that the iris is a versicolor, since that species had the **highest conditional probability**. + +# ## Summary +# +# 1. We framed a **classification problem** as three conditional probability problems. +# 2. We used **Bayes' theorem** to calculate those conditional probabilities. +# 3. We made a **prediction** by choosing the species with the highest conditional probability. + +# ## Bonus: The intuition behind Bayes' theorem +# +# Let's make some hypothetical adjustments to the data, to demonstrate how Bayes' theorem makes intuitive sense: +# +# Pretend that **more of the existing versicolors had measurements of 7352:** +# +# - $P(7352 \ | \ versicolor)$ would increase, thus increasing the numerator. +# - It would make sense that given an iris with measurements of 7352, the probability of it being a versicolor would also increase. +# +# Pretend that **most of the existing irises were versicolor:** +# +# - $P(versicolor)$ would increase, thus increasing the numerator. +# - It would make sense that the probability of any iris being a versicolor (regardless of measurements) would also increase. +# +# Pretend that **17 of the setosas had measurements of 7352:** +# +# - $P(7352)$ would double, thus doubling the denominator. +# - It would make sense that given an iris with measurements of 7352, the probability of it being a versicolor would be cut in half. diff --git a/code/14_text_data_sklearn_nb.py b/code/14_text_data_sklearn_nb.py new file mode 100644 index 0000000..7efc6ad --- /dev/null +++ b/code/14_text_data_sklearn_nb.py @@ -0,0 +1,268 @@ +# # Working with Text Data and Naive Bayes in scikit-learn + +# ## Agenda +# +# **Working with text data** +# +# - Representing text as data +# - Reading SMS data +# - Vectorizing SMS data +# - Examining the tokens and their counts +# - Bonus: Calculating the "spamminess" of each token +# +# **Naive Bayes classification** +# +# - Building a Naive Bayes model +# - Comparing Naive Bayes with logistic regression + +# ## Part 1: Representing text as data +# +# From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction): +# +# > Text Analysis is a major application field for machine learning algorithms. However the raw data, a sequence of symbols cannot be fed directly to the algorithms themselves as most of them expect **numerical feature vectors with a fixed size** rather than the **raw text documents with variable length**. +# +# We will use [CountVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html) to "convert text into a matrix of token counts": + +from sklearn.feature_extraction.text import CountVectorizer + + +# start with a simple example +simple_train = ['call you tonight', 'Call me a cab', 'please call me... PLEASE!'] + + +# learn the 'vocabulary' of the training data +vect = CountVectorizer() +vect.fit(simple_train) +vect.get_feature_names() + + +# transform training data into a 'document-term matrix' +simple_train_dtm = vect.transform(simple_train) +simple_train_dtm + + +# print the sparse matrix +print simple_train_dtm + + +# convert sparse matrix to a dense matrix +simple_train_dtm.toarray() + + +# examine the vocabulary and document-term matrix together +import pandas as pd +pd.DataFrame(simple_train_dtm.toarray(), columns=vect.get_feature_names()) + + +# From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction): +# +# > In this scheme, features and samples are defined as follows: +# +# > - Each individual token occurrence frequency (normalized or not) is treated as a **feature**. +# > - The vector of all the token frequencies for a given document is considered a multivariate **sample**. +# +# > A **corpus of documents** can thus be represented by a matrix with **one row per document** and **one column per token** (e.g. word) occurring in the corpus. +# +# > We call **vectorization** the general process of turning a collection of text documents into numerical feature vectors. This specific strategy (tokenization, counting and normalization) is called the **Bag of Words** or "Bag of n-grams" representation. Documents are described by word occurrences while completely ignoring the relative position information of the words in the document. + +# transform testing data into a document-term matrix (using existing vocabulary) +simple_test = ["please don't call me"] +simple_test_dtm = vect.transform(simple_test) +simple_test_dtm.toarray() + + +# examine the vocabulary and document-term matrix together +pd.DataFrame(simple_test_dtm.toarray(), columns=vect.get_feature_names()) + + +# **Summary:** +# +# - `vect.fit(train)` learns the vocabulary of the training data +# - `vect.transform(train)` uses the fitted vocabulary to build a document-term matrix from the training data +# - `vect.transform(test)` uses the fitted vocabulary to build a document-term matrix from the testing data (and ignores tokens it hasn't seen before) + +# ## Part 2: Reading SMS data + +# read tab-separated file +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/sms.tsv' +col_names = ['label', 'message'] +sms = pd.read_table(url, sep='\t', header=None, names=col_names) +print sms.shape + + +sms.head(20) + + +sms.label.value_counts() + + +# convert label to a numeric variable +sms['label'] = sms.label.map({'ham':0, 'spam':1}) + + +# define X and y +X = sms.message +y = sms.label + + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) +print X_train.shape +print X_test.shape + + +# ## Part 3: Vectorizing SMS data + +# instantiate the vectorizer +vect = CountVectorizer() + + +# learn training data vocabulary, then create document-term matrix +vect.fit(X_train) +X_train_dtm = vect.transform(X_train) +X_train_dtm + + +# alternative: combine fit and transform into a single step +X_train_dtm = vect.fit_transform(X_train) +X_train_dtm + + +# transform testing data (using fitted vocabulary) into a document-term matrix +X_test_dtm = vect.transform(X_test) +X_test_dtm + + +# ## Part 4: Examining the tokens and their counts + +# store token names +X_train_tokens = vect.get_feature_names() + + +# first 50 tokens +print X_train_tokens[:50] + + +# last 50 tokens +print X_train_tokens[-50:] + + +# view X_train_dtm as a dense matrix +X_train_dtm.toarray() + + +# count how many times EACH token appears across ALL messages in X_train_dtm +import numpy as np +X_train_counts = np.sum(X_train_dtm.toarray(), axis=0) +X_train_counts + + +X_train_counts.shape + + +# create a DataFrame of tokens with their counts +pd.DataFrame({'token':X_train_tokens, 'count':X_train_counts}).sort('count') + + +# ## Bonus: Calculating the "spamminess" of each token + +# create separate DataFrames for ham and spam +sms_ham = sms[sms.label==0] +sms_spam = sms[sms.label==1] + + +# learn the vocabulary of ALL messages and save it +vect.fit(sms.message) +all_tokens = vect.get_feature_names() + + +# create document-term matrices for ham and spam +ham_dtm = vect.transform(sms_ham.message) +spam_dtm = vect.transform(sms_spam.message) + + +# count how many times EACH token appears across ALL ham messages +ham_counts = np.sum(ham_dtm.toarray(), axis=0) + + +# count how many times EACH token appears across ALL spam messages +spam_counts = np.sum(spam_dtm.toarray(), axis=0) + + +# create a DataFrame of tokens with their separate ham and spam counts +token_counts = pd.DataFrame({'token':all_tokens, 'ham':ham_counts, 'spam':spam_counts}) + + +# add one to ham and spam counts to avoid dividing by zero (in the step that follows) +token_counts['ham'] = token_counts.ham + 1 +token_counts['spam'] = token_counts.spam + 1 + + +# calculate ratio of spam-to-ham for each token +token_counts['spam_ratio'] = token_counts.spam / token_counts.ham +token_counts.sort('spam_ratio') + + +# ## Part 5: Building a Naive Bayes model +# +# We will use [Multinomial Naive Bayes](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html): +# +# > The multinomial Naive Bayes classifier is suitable for classification with **discrete features** (e.g., word counts for text classification). The multinomial distribution normally requires integer feature counts. However, in practice, fractional counts such as tf-idf may also work. + +# train a Naive Bayes model using X_train_dtm +from sklearn.naive_bayes import MultinomialNB +nb = MultinomialNB() +nb.fit(X_train_dtm, y_train) + + +# make class predictions for X_test_dtm +y_pred_class = nb.predict(X_test_dtm) + + +# calculate accuracy of class predictions +from sklearn import metrics +print metrics.accuracy_score(y_test, y_pred_class) + + +# confusion matrix +print metrics.confusion_matrix(y_test, y_pred_class) + + +# predict (poorly calibrated) probabilities +y_pred_prob = nb.predict_proba(X_test_dtm)[:, 1] +y_pred_prob + + +# calculate AUC +print metrics.roc_auc_score(y_test, y_pred_prob) + + +# print message text for the false positives +X_test[y_test < y_pred_class] + + +# print message text for the false negatives +X_test[y_test > y_pred_class] + + +# what do you notice about the false negatives? +X_test[3132] + + +# ## Part 6: Comparing Naive Bayes with logistic regression + +# import/instantiate/fit +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train_dtm, y_train) + + +# class predictions and predicted probabilities +y_pred_class = logreg.predict(X_test_dtm) +y_pred_prob = logreg.predict_proba(X_test_dtm)[:, 1] + + +# calculate accuracy and AUC +print metrics.accuracy_score(y_test, y_pred_class) +print metrics.roc_auc_score(y_test, y_pred_prob) diff --git a/code/14_types_of_naive_bayes_nb.py b/code/14_types_of_naive_bayes_nb.py new file mode 100644 index 0000000..1d733ea --- /dev/null +++ b/code/14_types_of_naive_bayes_nb.py @@ -0,0 +1,49 @@ +# # Comparing Multinomial and Gaussian Naive Bayes +# +# scikit-learn documentation: [MultinomialNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html) and [GaussianNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.GaussianNB.html) +# +# Dataset: [Pima Indians Diabetes](https://archive.ics.uci.edu/ml/datasets/Pima+Indians+Diabetes) from the UCI Machine Learning Repository + +# read the data +import pandas as pd +url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/pima-indians-diabetes/pima-indians-diabetes.data' +col_names = ['pregnant', 'glucose', 'bp', 'skin', 'insulin', 'bmi', 'pedigree', 'age', 'label'] +pima = pd.read_csv(url, header=None, names=col_names) + + +# notice that all features are continuous +pima.head() + + +# create X and y +X = pima.drop('label', axis=1) +y = pima.label + + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# import both Multinomial and Gaussian Naive Bayes +from sklearn.naive_bayes import MultinomialNB, GaussianNB +from sklearn import metrics + + +# testing accuracy of Multinomial Naive Bayes +mnb = MultinomialNB() +mnb.fit(X_train, y_train) +y_pred_class = mnb.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# testing accuracy of Gaussian Naive Bayes +gnb = GaussianNB() +gnb.fit(X_train, y_train) +y_pred_class = gnb.predict(X_test) +print metrics.accuracy_score(y_test, y_pred_class) + + +# **Conclusion:** When applying Naive Bayes classification to a dataset with **continuous features**, it is better to use Gaussian Naive Bayes than Multinomial Naive Bayes. The latter is suitable for datasets containing **discrete features** (e.g., word counts). +# +# Wikipedia has a short [description](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Gaussian_naive_Bayes) of Gaussian Naive Bayes, as well as an excellent [example](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Sex_classification) of its usage. diff --git a/code/15_natural_language_processing_nb.py b/code/15_natural_language_processing_nb.py new file mode 100644 index 0000000..a7d9ff0 --- /dev/null +++ b/code/15_natural_language_processing_nb.py @@ -0,0 +1,520 @@ +# # Natural Language Processing (NLP) + +# ## Introduction +# +# *Adapted from [NLP Crash Course](http://files.meetup.com/7616132/DC-NLP-2013-09%20Charlie%20Greenbacker.pdf) by Charlie Greenbacker and [Introduction to NLP](http://spark-public.s3.amazonaws.com/nlp/slides/intro.pdf) by Dan Jurafsky* + +# ### What is NLP? +# +# - Using computers to process (analyze, understand, generate) natural human languages +# - Most knowledge created by humans is unstructured text, and we need a way to make sense of it +# - Build probabilistic model using data about a language + +# ### What are some of the higher level task areas? +# +# - **Information retrieval**: Find relevant results and similar results +# - [Google](https://www.google.com/) +# - **Information extraction**: Structured information from unstructured documents +# - [Events from Gmail](https://support.google.com/calendar/answer/6084018?hl=en) +# - **Machine translation**: One language to another +# - [Google Translate](https://translate.google.com/) +# - **Text simplification**: Preserve the meaning of text, but simplify the grammar and vocabulary +# - [Rewordify](https://rewordify.com/) +# - [Simple English Wikipedia](https://simple.wikipedia.org/wiki/Main_Page) +# - **Predictive text input**: Faster or easier typing +# - [My application](https://justmarkham.shinyapps.io/textprediction/) +# - [A much better application](https://farsite.shinyapps.io/swiftkey-cap/) +# - **Sentiment analysis**: Attitude of speaker +# - [Hater News](http://haternews.herokuapp.com/) +# - **Automatic summarization**: Extractive or abstractive summarization +# - [autotldr](https://www.reddit.com/r/technology/comments/35brc8/21_million_people_still_use_aol_dialup/cr2zzj0) +# - **Natural Language Generation**: Generate text from data +# - [How a computer describes a sports match](http://www.bbc.com/news/technology-34204052) +# - [Publishers withdraw more than 120 gibberish papers](http://www.nature.com/news/publishers-withdraw-more-than-120-gibberish-papers-1.14763) +# - **Speech recognition and generation**: Speech-to-text, text-to-speech +# - [Google's Web Speech API demo](https://www.google.com/intl/en/chrome/demos/speech.html) +# - [Vocalware Text-to-Speech demo](https://www.vocalware.com/index/demo) +# - **Question answering**: Determine the intent of the question, match query with knowledge base, evaluate hypotheses +# - [How did supercomputer Watson beat Jeopardy champion Ken Jennings?](http://blog.ted.com/how-did-supercomputer-watson-beat-jeopardy-champion-ken-jennings-experts-discuss/) +# - [IBM's Watson Trivia Challenge](http://www.nytimes.com/interactive/2010/06/16/magazine/watson-trivia-game.html) +# - [The AI Behind Watson](http://www.aaai.org/Magazine/Watson/watson.php) + +# ### What are some of the lower level components? +# +# - **Tokenization**: breaking text into tokens (words, sentences, n-grams) +# - **Stopword removal**: a/an/the +# - **Stemming and lemmatization**: root word +# - **TF-IDF**: word importance +# - **Part-of-speech tagging**: noun/verb/adjective +# - **Named entity recognition**: person/organization/location +# - **Spelling correction**: "New Yrok City" +# - **Word sense disambiguation**: "buy a mouse" +# - **Segmentation**: "New York City subway" +# - **Language detection**: "translate this page" +# - **Machine learning** + +# ### Why is NLP hard? +# +# - **Ambiguity**: +# - Hospitals are Sued by 7 Foot Doctors +# - Juvenile Court to Try Shooting Defendant +# - Local High School Dropouts Cut in Half +# - **Non-standard English**: text messages +# - **Idioms**: "throw in the towel" +# - **Newly coined words**: "retweet" +# - **Tricky entity names**: "Where is A Bug's Life playing?" +# - **World knowledge**: "Mary and Sue are sisters", "Mary and Sue are mothers" +# +# NLP requires an understanding of the **language** and the **world**. + +# ## Part 1: Reading in the Yelp Reviews + +# - "corpus" = collection of documents +# - "corpora" = plural form of corpus + +import pandas as pd +import numpy as np +import scipy as sp +from sklearn.cross_validation import train_test_split +from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer +from sklearn.naive_bayes import MultinomialNB +from sklearn.linear_model import LogisticRegression +from sklearn import metrics +from textblob import TextBlob, Word +from nltk.stem.snowball import SnowballStemmer + + +# read yelp.csv into a DataFrame +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/yelp.csv' +yelp = pd.read_csv(url) + +# create a new DataFrame that only contains the 5-star and 1-star reviews +yelp_best_worst = yelp[(yelp.stars==5) | (yelp.stars==1)] + +# define X and y +X = yelp_best_worst.text +y = yelp_best_worst.stars + +# split the new DataFrame into training and testing sets +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# ## Part 2: Tokenization + +# - **What:** Separate text into units such as sentences or words +# - **Why:** Gives structure to previously unstructured text +# - **Notes:** Relatively easy with English language text, not easy with some languages + +# use CountVectorizer to create document-term matrices from X_train and X_test +vect = CountVectorizer() +X_train_dtm = vect.fit_transform(X_train) +X_test_dtm = vect.transform(X_test) + + +# rows are documents, columns are terms (aka "tokens" or "features") +X_train_dtm.shape + + +# last 50 features +print vect.get_feature_names()[-50:] + + +# show vectorizer options +vect + + +# [CountVectorizer documentation](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html) + +# - **lowercase:** boolean, True by default +# - Convert all characters to lowercase before tokenizing. + +# don't convert to lowercase +vect = CountVectorizer(lowercase=False) +X_train_dtm = vect.fit_transform(X_train) +X_train_dtm.shape + + +# - **ngram_range:** tuple (min_n, max_n) +# - The lower and upper boundary of the range of n-values for different n-grams to be extracted. All values of n such that min_n <= n <= max_n will be used. + +# include 1-grams and 2-grams +vect = CountVectorizer(ngram_range=(1, 2)) +X_train_dtm = vect.fit_transform(X_train) +X_train_dtm.shape + + +# last 50 features +print vect.get_feature_names()[-50:] + + +# **Predicting the star rating:** + +# use default options for CountVectorizer +vect = CountVectorizer() + +# create document-term matrices +X_train_dtm = vect.fit_transform(X_train) +X_test_dtm = vect.transform(X_test) + +# use Naive Bayes to predict the star rating +nb = MultinomialNB() +nb.fit(X_train_dtm, y_train) +y_pred_class = nb.predict(X_test_dtm) + +# calculate accuracy +print metrics.accuracy_score(y_test, y_pred_class) + + +# calculate null accuracy +y_test_binary = np.where(y_test==5, 1, 0) +max(y_test_binary.mean(), 1 - y_test_binary.mean()) + + +# define a function that accepts a vectorizer and calculates the accuracy +def tokenize_test(vect): + X_train_dtm = vect.fit_transform(X_train) + print 'Features: ', X_train_dtm.shape[1] + X_test_dtm = vect.transform(X_test) + nb = MultinomialNB() + nb.fit(X_train_dtm, y_train) + y_pred_class = nb.predict(X_test_dtm) + print 'Accuracy: ', metrics.accuracy_score(y_test, y_pred_class) + + +# include 1-grams and 2-grams +vect = CountVectorizer(ngram_range=(1, 2)) +tokenize_test(vect) + + +# ## Part 3: Stopword Removal + +# - **What:** Remove common words that will likely appear in any text +# - **Why:** They don't tell you much about your text + +# show vectorizer options +vect + + +# - **stop_words:** string {'english'}, list, or None (default) +# - If 'english', a built-in stop word list for English is used. +# - If a list, that list is assumed to contain stop words, all of which will be removed from the resulting tokens. +# - If None, no stop words will be used. max_df can be set to a value in the range [0.7, 1.0) to automatically detect and filter stop words based on intra corpus document frequency of terms. + +# remove English stop words +vect = CountVectorizer(stop_words='english') +tokenize_test(vect) + + +# set of stop words +print vect.get_stop_words() + + +# ## Part 4: Other CountVectorizer Options + +# - **max_features:** int or None, default=None +# - If not None, build a vocabulary that only consider the top max_features ordered by term frequency across the corpus. + +# remove English stop words and only keep 100 features +vect = CountVectorizer(stop_words='english', max_features=100) +tokenize_test(vect) + + +# all 100 features +print vect.get_feature_names() + + +# include 1-grams and 2-grams, and limit the number of features +vect = CountVectorizer(ngram_range=(1, 2), max_features=100000) +tokenize_test(vect) + + +# - **min_df:** float in range [0.0, 1.0] or int, default=1 +# - When building the vocabulary ignore terms that have a document frequency strictly lower than the given threshold. This value is also called cut-off in the literature. If float, the parameter represents a proportion of documents, integer absolute counts. + +# include 1-grams and 2-grams, and only include terms that appear at least 2 times +vect = CountVectorizer(ngram_range=(1, 2), min_df=2) +tokenize_test(vect) + + +# ## Part 5: Introduction to TextBlob + +# TextBlob: "Simplified Text Processing" + +# print the first review +print yelp_best_worst.text[0] + + +# save it as a TextBlob object +review = TextBlob(yelp_best_worst.text[0]) + + +# list the words +review.words + + +# list the sentences +review.sentences + + +# some string methods are available +review.lower() + + +# ## Part 6: Stemming and Lemmatization + +# **Stemming:** +# +# - **What:** Reduce a word to its base/stem/root form +# - **Why:** Often makes sense to treat related words the same way +# - **Notes:** +# - Uses a "simple" and fast rule-based approach +# - Stemmed words are usually not shown to users (used for analysis/indexing) +# - Some search engines treat words with the same stem as synonyms + +# initialize stemmer +stemmer = SnowballStemmer('english') + +# stem each word +print [stemmer.stem(word) for word in review.words] + + +# **Lemmatization** +# +# - **What:** Derive the canonical form ('lemma') of a word +# - **Why:** Can be better than stemming +# - **Notes:** Uses a dictionary-based approach (slower than stemming) + +# assume every word is a noun +print [word.lemmatize() for word in review.words] + + +# assume every word is a verb +print [word.lemmatize(pos='v') for word in review.words] + + +# define a function that accepts text and returns a list of lemmas +def split_into_lemmas(text): + text = unicode(text, 'utf-8').lower() + words = TextBlob(text).words + return [word.lemmatize() for word in words] + + +# use split_into_lemmas as the feature extraction function (WARNING: SLOW!) +vect = CountVectorizer(analyzer=split_into_lemmas) +tokenize_test(vect) + + +# last 50 features +print vect.get_feature_names()[-50:] + + +# ## Part 7: Term Frequency-Inverse Document Frequency (TF-IDF) + +# - **What:** Computes "relative frequency" that a word appears in a document compared to its frequency across all documents +# - **Why:** More useful than "term frequency" for identifying "important" words in each document (high frequency in that document, low frequency in other documents) +# - **Notes:** Used for search engine scoring, text summarization, document clustering + +# example documents +simple_train = ['call you tonight', 'Call me a cab', 'please call me... PLEASE!'] + + +# Term Frequency +vect = CountVectorizer() +tf = pd.DataFrame(vect.fit_transform(simple_train).toarray(), columns=vect.get_feature_names()) +tf + + +# Document Frequency +vect = CountVectorizer(binary=True) +df = vect.fit_transform(simple_train).toarray().sum(axis=0) +pd.DataFrame(df.reshape(1, 6), columns=vect.get_feature_names()) + + +# Term Frequency-Inverse Document Frequency (simple version) +tf/df + + +# TfidfVectorizer +vect = TfidfVectorizer() +pd.DataFrame(vect.fit_transform(simple_train).toarray(), columns=vect.get_feature_names()) + + +# **More details:** [TF-IDF is about what matters](http://planspace.org/20150524-tfidf_is_about_what_matters/) + +# ## Part 8: Using TF-IDF to Summarize a Yelp Review +# +# Reddit's autotldr uses the [SMMRY](http://smmry.com/about) algorithm, which is based on TF-IDF! + +# create a document-term matrix using TF-IDF +vect = TfidfVectorizer(stop_words='english') +dtm = vect.fit_transform(yelp.text) +features = vect.get_feature_names() +dtm.shape + + +def summarize(): + + # choose a random review that is at least 300 characters + review_length = 0 + while review_length < 300: + review_id = np.random.randint(0, len(yelp)) + review_text = unicode(yelp.text[review_id], 'utf-8') + review_length = len(review_text) + + # create a dictionary of words and their TF-IDF scores + word_scores = {} + for word in TextBlob(review_text).words: + word = word.lower() + if word in features: + word_scores[word] = dtm[review_id, features.index(word)] + + # print words with the top 5 TF-IDF scores + print 'TOP SCORING WORDS:' + top_scores = sorted(word_scores.items(), key=lambda x: x[1], reverse=True)[:5] + for word, score in top_scores: + print word + + # print 5 random words + print '\n' + 'RANDOM WORDS:' + random_words = np.random.choice(word_scores.keys(), size=5, replace=False) + for word in random_words: + print word + + # print the review + print '\n' + review_text + + +summarize() + + +# ## Part 9: Sentiment Analysis + +print review + + +# polarity ranges from -1 (most negative) to 1 (most positive) +review.sentiment.polarity + + +# understanding the apply method +yelp['length'] = yelp.text.apply(len) +yelp.head(1) + + +# define a function that accepts text and returns the polarity +def detect_sentiment(text): + return TextBlob(text.decode('utf-8')).sentiment.polarity + + +# create a new DataFrame column for sentiment (WARNING: SLOW!) +yelp['sentiment'] = yelp.text.apply(detect_sentiment) + + +# box plot of sentiment grouped by stars +yelp.boxplot(column='sentiment', by='stars') + + +# reviews with most positive sentiment +yelp[yelp.sentiment == 1].text.head() + + +# reviews with most negative sentiment +yelp[yelp.sentiment == -1].text.head() + + +# widen the column display +pd.set_option('max_colwidth', 500) + + +# negative sentiment in a 5-star review +yelp[(yelp.stars == 5) & (yelp.sentiment < -0.3)].head(1) + + +# positive sentiment in a 1-star review +yelp[(yelp.stars == 1) & (yelp.sentiment > 0.5)].head(1) + + +# reset the column display width +pd.reset_option('max_colwidth') + + +# ## Bonus: Adding Features to a Document-Term Matrix + +# create a DataFrame that only contains the 5-star and 1-star reviews +yelp_best_worst = yelp[(yelp.stars==5) | (yelp.stars==1)] + +# define X and y +feature_cols = ['text', 'sentiment', 'cool', 'useful', 'funny'] +X = yelp_best_worst[feature_cols] +y = yelp_best_worst.stars + +# split into training and testing sets +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# use CountVectorizer with text column only +vect = CountVectorizer() +X_train_dtm = vect.fit_transform(X_train.text) +X_test_dtm = vect.transform(X_test.text) +print X_train_dtm.shape +print X_test_dtm.shape + + +# shape of other four feature columns +X_train.drop('text', axis=1).shape + + +# cast other feature columns to float and convert to a sparse matrix +extra = sp.sparse.csr_matrix(X_train.drop('text', axis=1).astype(float)) +extra.shape + + +# combine sparse matrices +X_train_dtm_extra = sp.sparse.hstack((X_train_dtm, extra)) +X_train_dtm_extra.shape + + +# repeat for testing set +extra = sp.sparse.csr_matrix(X_test.drop('text', axis=1).astype(float)) +X_test_dtm_extra = sp.sparse.hstack((X_test_dtm, extra)) +X_test_dtm_extra.shape + + +# use logistic regression with text column only +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train_dtm, y_train) +y_pred_class = logreg.predict(X_test_dtm) +print metrics.accuracy_score(y_test, y_pred_class) + + +# use logistic regression with all features +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train_dtm_extra, y_train) +y_pred_class = logreg.predict(X_test_dtm_extra) +print metrics.accuracy_score(y_test, y_pred_class) + + +# ## Bonus: Fun TextBlob Features + +# spelling correction +TextBlob('15 minuets late').correct() + + +# spellcheck +Word('parot').spellcheck() + + +# definitions +Word('bank').define('v') + + +# language identification +TextBlob('Hola amigos').detect_language() + + +# ## Conclusion +# +# - NLP is a gigantic field +# - Understanding the basics broadens the types of data you can work with +# - Simple techniques go a long way +# - Use scikit-learn for NLP whenever possible diff --git a/code/16_kaggle.py b/code/16_kaggle.py new file mode 100644 index 0000000..dce8248 --- /dev/null +++ b/code/16_kaggle.py @@ -0,0 +1,338 @@ +''' +CLASS: Kaggle Stack Overflow competition +''' + +# read in the file and set the first column as the index +import pandas as pd +train = pd.read_csv('train.csv', index_col=0) +train.head() + + +''' +What are some assumptions and theories to test? + +OwnerUserId: not unique within the dataset, assigned in order +OwnerCreationDate: users with older accounts have more open questions +ReputationAtPostCreation: higher reputation users have more open questions +OwnerUndeletedAnswerCountAtPostTime: users with more answers have more open questions +Title and BodyMarkdown: well-written questions are more likely to be open +Tags: 1 to 5 tags are required, many unique tags +OpenStatus: most questions should be open (encoded as 1) +''' + +## OPEN STATUS + +# dataset is perfectly balanced in terms of OpenStatus (not a representative sample) +train.OpenStatus.value_counts() + + +## USER ID + +# OwnerUserId is not unique within the dataset, let's examine the top user +train.OwnerUserId.value_counts() + +# mostly closed questions, few answers, all lowercase, grammatical mistakes +train[train.OwnerUserId==466534].describe() +train[train.OwnerUserId==466534].head(10) + +# let's find a user with a high proportion of open questions +train.groupby('OwnerUserId').OpenStatus.mean() +train.groupby('OwnerUserId').OpenStatus.agg(['mean','count']).sort('count') + +# lots of answers, better grammar, multiple tags, all .net +train[train.OwnerUserId==185593].head(10) + + +## REPUTATION + +# ReputationAtPostCreation is higher for open questions: possibly use as a feature +train.groupby('OpenStatus').ReputationAtPostCreation.describe().unstack() + +# not a useful histogram +train.ReputationAtPostCreation.plot(kind='hist') + +# much more useful histogram +train[train.ReputationAtPostCreation < 1000].ReputationAtPostCreation.plot(kind='hist') + +# grouped histogram +train[train.ReputationAtPostCreation < 1000].hist(column='ReputationAtPostCreation', by='OpenStatus', sharey=True) + +# grouped box plot +train[train.ReputationAtPostCreation < 1000].boxplot(column='ReputationAtPostCreation', by='OpenStatus') + + +## ANSWER COUNT + +# rename column +train.rename(columns={'OwnerUndeletedAnswerCountAtPostTime':'Answers'}, inplace=True) + +# Answers is higher for open questions: possibly use as a feature +train.groupby('OpenStatus').Answers.describe().unstack() + + +## TITLE LENGTH + +# create a new feature that represents the length of the title (in characters) +train['TitleLength'] = train.Title.apply(len) + +# Title is longer for open questions: possibly use as a feature +train.groupby('OpenStatus').TitleLength.describe().unstack() +train.boxplot(column='TitleLength', by='OpenStatus') + + +''' +Define a function that takes a raw CSV file and returns a DataFrame that +includes all created features (and any other modifications) +''' + +# define the function +def make_features(filename): + df = pd.read_csv(filename, index_col=0) + df.rename(columns={'OwnerUndeletedAnswerCountAtPostTime':'Answers'}, inplace=True) + df['TitleLength'] = df.Title.apply(len) + return df + +# apply function to both training and testing files +train = make_features('train.csv') +test = make_features('test.csv') + + +''' +Evaluate a model with three features +''' + +# define X and y +feature_cols = ['ReputationAtPostCreation', 'Answers', 'TitleLength'] +X = train[feature_cols] +y = train.OpenStatus + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + +# fit a logistic regression model +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train, y_train) + +# examine the coefficients to check that they makes sense +logreg.coef_ + +# predict response classes and predict class probabilities +y_pred_class = logreg.predict(X_test) +y_pred_prob = logreg.predict_proba(X_test)[:, 1] + +# check how well we did +from sklearn import metrics +metrics.accuracy_score(y_test, y_pred_class) # 0.564 (better than guessing) +metrics.confusion_matrix(y_test, y_pred_class) # predicts closed a lot of the time +metrics.roc_auc_score(y_test, y_pred_prob) # 0.591 (not horrible) +metrics.log_loss(y_test, y_pred_prob) # 0.684 (what is this?) + +# let's see if cross-validation gives us similar results +from sklearn.cross_validation import cross_val_score +scores = cross_val_score(logreg, X, y, scoring='log_loss', cv=10) +scores.mean() # 0.684 (identical to train/test split) +scores.std() # very small + + +''' +Understanding log loss +''' + +# 5 pretend response values +y_test = [0, 0, 0, 1, 1] + +# 5 sets of predicted probabilities for those observations +y_pred_prob_sets = [[0.1, 0.2, 0.3, 0.8, 0.9], + [0.4, 0.4, 0.4, 0.6, 0.6], + [0.4, 0.4, 0.7, 0.6, 0.6], + [0.4, 0.4, 0.9, 0.6, 0.6], + [0.5, 0.5, 0.5, 0.5, 0.5]] + +# calculate AUC for each set of predicted probabilities +for y_pred_prob in y_pred_prob_sets: + print y_pred_prob, metrics.roc_auc_score(y_test, y_pred_prob) + +# calculate log loss for each set of predicted probabilities +for y_pred_prob in y_pred_prob_sets: + print y_pred_prob, metrics.log_loss(y_test, y_pred_prob) + + +''' +Create a submission file +''' + +# train the model on ALL data (not X_train and y_train) +logreg.fit(X, y) + +# predict class probabilities for the actual testing data (not X_test) +X_oos = test[feature_cols] +oos_pred_prob = logreg.predict_proba(X_oos)[:, 1] + +# sample submission file indicates we need two columns: PostId and predicted probability +test.index # PostId +oos_pred_prob # predicted probability + +# create a DataFrame that has 'id' as the index, then export to a CSV file +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub1.csv') # 0.687 + + +''' +Explore data and create more features +''' + +## TAGS + +# Tag1 is required, and the rest are optional +train.isnull().sum() + +# create a new feature that represents the number of tags for each question +train['NumTags'] = train.loc[:, 'Tag1':'Tag5'].notnull().sum(axis=1) + +# NumTags is higher for open questions: possibly use as a feature +train.groupby('OpenStatus').NumTags.mean() +train.groupby('NumTags').OpenStatus.mean() + + +## USER ID + +# OwnerUserId is assigned in numerical order +train.sort('OwnerUserId').OwnerCreationDate + +# OwnerUserId is lower for open questions: possibly use as a feature +train.groupby('OpenStatus').OwnerUserId.mean() + +# account age at time of question is probably a better feature +train['OwnerCreationDate'] = pd.to_datetime(train.OwnerCreationDate) +train['PostCreationDate'] = pd.to_datetime(train.PostCreationDate) +train['OwnerAge'] = (train.PostCreationDate - train.OwnerCreationDate).dt.days + +# check that it worked +train.head() +train.boxplot(column='OwnerAge', by='OpenStatus') +train[train.OwnerAge < 0].head() + +# fix errors +import numpy as np +train['OwnerAge'] = np.where(train.OwnerAge < 0, 0, train.OwnerAge) +train.boxplot(column='OwnerAge', by='OpenStatus') + + +''' +Evaluate new set of features using cross-validation +''' + +feature_cols = ['ReputationAtPostCreation', 'Answers', 'TitleLength', 'NumTags', 'OwnerAge'] +X = train[feature_cols] +cross_val_score(logreg, X, y, scoring='log_loss', cv=10).mean() # 0.675 + + +''' +Update make_features and create another submission file +''' + +# update the function +def make_features(filename): + df = pd.read_csv(filename, index_col=0, parse_dates=['OwnerCreationDate', 'PostCreationDate']) + df.rename(columns={'OwnerUndeletedAnswerCountAtPostTime':'Answers'}, inplace=True) + df['TitleLength'] = df.Title.apply(len) + df['NumTags'] = df.loc[:, 'Tag1':'Tag5'].notnull().sum(axis=1) + df['OwnerAge'] = (df.PostCreationDate - df.OwnerCreationDate).dt.days + df['OwnerAge'] = np.where(df.OwnerAge < 0, 0, df.OwnerAge) + return df + +# apply function to both training and testing files +train = make_features('train.csv') +test = make_features('test.csv') + +# train the model on ALL data +feature_cols = ['ReputationAtPostCreation', 'Answers', 'TitleLength', 'NumTags', 'OwnerAge'] +X = train[feature_cols] +logreg.fit(X, y) + +# predict class probabilities for the actual testing data +X_oos = test[feature_cols] +oos_pred_prob = logreg.predict_proba(X_oos)[:, 1] + +# create submission file +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub2.csv') # 0.650 + + +''' +Build a document-term matrix from Title using CountVectorizer +''' + +# use CountVectorizer with the default settings +from sklearn.feature_extraction.text import CountVectorizer +vect = CountVectorizer() +dtm = vect.fit_transform(train.Title) + +# define X and y +X = dtm +y = train.OpenStatus + +# slightly improper cross-validation of a Naive Bayes model +from sklearn.naive_bayes import MultinomialNB +nb = MultinomialNB() +cross_val_score(nb, X, y, scoring='log_loss', cv=10).mean() # 0.657 + +# try tuning CountVectorizer and repeat Naive Bayes +vect = CountVectorizer(stop_words='english') +dtm = vect.fit_transform(train.Title) +X = dtm +cross_val_score(nb, X, y, scoring='log_loss', cv=10).mean() # 0.635 + +# build document-term matrix for the actual testing data and make predictions +nb.fit(X, y) +oos_dtm = vect.transform(test.Title) +oos_pred_prob = nb.predict_proba(oos_dtm)[:, 1] +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub3.csv') # 0.544 + + +''' +BONUS: Dummy encoding of Tag1 +''' + +# number of unique tags for Tag1 (over 5000) +train.Tag1.nunique() + +# percentage of open questions varies widely by tag +train.groupby('Tag1').OpenStatus.agg(['mean','count']).sort('count') + +# convert Tag1 from strings to integers +from sklearn.preprocessing import LabelEncoder +le = LabelEncoder() +train['Tag1_enc'] = le.fit_transform(train.Tag1) + +# confirm that the conversion worked +train.Tag1.value_counts().head() +train.Tag1_enc.value_counts().head() + +# create a dummy column for each value of Tag1_enc (returns a sparse matrix) +from sklearn.preprocessing import OneHotEncoder +ohe = OneHotEncoder() +tag1_dummies = ohe.fit_transform(train[['Tag1_enc']]) +tag1_dummies + +# define X and y +X = tag1_dummies +y = train.OpenStatus + +# try a Naive Bayes model with tag1_dummies as the features +cross_val_score(nb, X, y, scoring='log_loss', cv=10).mean() # 0.650 + +# adjust Tag1 on testing set since LabelEncoder errors on new values during a transform +test['Tag1'] = test['Tag1'].map(lambda s: '' if s not in le.classes_ else s) +le.classes_ = np.append(le.classes_, '') + +# apply the same encoding to the actual testing data and make predictions +nb.fit(X, y) +test['Tag1_enc'] = le.transform(test.Tag1) +oos_tag1_dummies = ohe.transform(test[['Tag1_enc']]) +oos_pred_prob = nb.predict_proba(oos_tag1_dummies)[:, 1] +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub4.csv') # 0.652 diff --git a/code/16_kaggle_minimal.py b/code/16_kaggle_minimal.py new file mode 100644 index 0000000..6665343 --- /dev/null +++ b/code/16_kaggle_minimal.py @@ -0,0 +1,132 @@ +''' +CLASS: Kaggle Stack Overflow competition (minimal code file) +''' + +import pandas as pd + +# define a function that takes a CSV file and returns a DataFrame (with new or modified features) +def make_features(filename): + df = pd.read_csv(filename, index_col=0) + df.rename(columns={'OwnerUndeletedAnswerCountAtPostTime':'Answers'}, inplace=True) + df['TitleLength'] = df.Title.apply(len) + return df + +# apply function to both training and testing files +train = make_features('train.csv') +test = make_features('test.csv') + + +''' +Create a model with three features +''' + +# define X and y +feature_cols = ['ReputationAtPostCreation', 'Answers', 'TitleLength'] +X = train[feature_cols] +y = train.OpenStatus + +# fit a logistic regression model +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X, y) + +# predict class probabilities for the actual testing data +X_oos = test[feature_cols] +oos_pred_prob = logreg.predict_proba(X_oos)[:, 1] + + +''' +Create a submission file +''' + +# create a DataFrame that has 'id' as the index, then export to a CSV file +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub1.csv') # 0.687 + + +''' +Update make_features and create another submission file +''' + +import numpy as np + +# update the function +def make_features(filename): + df = pd.read_csv(filename, index_col=0, parse_dates=['OwnerCreationDate', 'PostCreationDate']) + df.rename(columns={'OwnerUndeletedAnswerCountAtPostTime':'Answers'}, inplace=True) + df['TitleLength'] = df.Title.apply(len) + df['NumTags'] = df.loc[:, 'Tag1':'Tag5'].notnull().sum(axis=1) + df['OwnerAge'] = (df.PostCreationDate - df.OwnerCreationDate).dt.days + df['OwnerAge'] = np.where(df.OwnerAge < 0, 0, df.OwnerAge) + return df + +# apply function to both training and testing files +train = make_features('train.csv') +test = make_features('test.csv') + +# train the model on ALL data +feature_cols = ['ReputationAtPostCreation', 'Answers', 'TitleLength', 'NumTags', 'OwnerAge'] +X = train[feature_cols] +logreg.fit(X, y) + +# predict class probabilities for the actual testing data +X_oos = test[feature_cols] +oos_pred_prob = logreg.predict_proba(X_oos)[:, 1] + +# create submission file +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub2.csv') # 0.650 + + +''' +Build a document-term matrix from Title using CountVectorizer +''' + +# build document-term matrix for the training data +from sklearn.feature_extraction.text import CountVectorizer +vect = CountVectorizer(stop_words='english') +dtm = vect.fit_transform(train.Title) + +# define X and y +X = dtm +y = train.OpenStatus + +# build document-term matrix for the actual testing data and make predictions +oos_dtm = vect.transform(test.Title) +from sklearn.naive_bayes import MultinomialNB +nb = MultinomialNB() +nb.fit(X, y) +oos_pred_prob = nb.predict_proba(oos_dtm)[:, 1] +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub3.csv') # 0.544 + + +''' +BONUS: Dummy encoding of Tag1 +''' + +# convert Tag1 from strings to integers +from sklearn.preprocessing import LabelEncoder +le = LabelEncoder() +train['Tag1_enc'] = le.fit_transform(train.Tag1) + +# create a dummy column for each value of Tag1_enc (returns a sparse matrix) +from sklearn.preprocessing import OneHotEncoder +ohe = OneHotEncoder() +tag1_dummies = ohe.fit_transform(train[['Tag1_enc']]) + +# adjust Tag1 on testing set since LabelEncoder errors on new values during a transform +test['Tag1'] = test['Tag1'].map(lambda s: '' if s not in le.classes_ else s) +le.classes_ = np.append(le.classes_, '') + +# define X and y +X = tag1_dummies +y = train.OpenStatus + +# apply the same encoding to the actual testing data and make predictions +test['Tag1_enc'] = le.transform(test.Tag1) +oos_tag1_dummies = ohe.transform(test[['Tag1_enc']]) +nb.fit(X, y) +oos_pred_prob = nb.predict_proba(oos_tag1_dummies)[:, 1] +sub = pd.DataFrame({'id':test.index, 'OpenStatus':oos_pred_prob}).set_index('id') +sub.to_csv('sub4.csv') # 0.652 diff --git a/code/17_bikeshare_exercise_nb.py b/code/17_bikeshare_exercise_nb.py new file mode 100644 index 0000000..60f56af --- /dev/null +++ b/code/17_bikeshare_exercise_nb.py @@ -0,0 +1,123 @@ +# # Exercise with Capital Bikeshare data + +# ## Introduction +# +# - Capital Bikeshare dataset from Kaggle: [data](https://github.com/justmarkham/DAT8/blob/master/data/bikeshare.csv), [data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data) +# - Each observation represents the bikeshare rentals initiated during a given hour of a given day + +import pandas as pd +import numpy as np +from sklearn.cross_validation import cross_val_score +from sklearn.linear_model import LinearRegression +from sklearn.tree import DecisionTreeRegressor, export_graphviz + + +# read the data and set "datetime" as the index +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bikeshare.csv' +bikes = pd.read_csv(url, index_col='datetime', parse_dates=True) + + +# "count" is a method, so it's best to rename that column +bikes.rename(columns={'count':'total'}, inplace=True) + + +# create "hour" as its own feature +bikes['hour'] = bikes.index.hour + + +bikes.head() + + +bikes.tail() + + +# - **hour** ranges from 0 (midnight) through 23 (11pm) +# - **workingday** is either 0 (weekend or holiday) or 1 (non-holiday weekday) + +# ## Task 1 +# +# Run these two `groupby` statements and figure out what they tell you about the data. + +# mean rentals for each value of "workingday" +bikes.groupby('workingday').total.mean() + + +# mean rentals for each value of "hour" +bikes.groupby('hour').total.mean() + + +# ## Task 2 +# +# Run this plotting code, and make sure you understand the output. Then, separate this plot into two separate plots conditioned on "workingday". (In other words, one plot should display the hourly trend for "workingday=0", and the other should display the hourly trend for "workingday=1".) + +# mean rentals for each value of "hour" +bikes.groupby('hour').total.mean().plot() + + +# hourly rental trend for "workingday=0" +bikes[bikes.workingday==0].groupby('hour').total.mean().plot() + + +# hourly rental trend for "workingday=1" +bikes[bikes.workingday==1].groupby('hour').total.mean().plot() + + +# combine the two plots +bikes.groupby(['hour', 'workingday']).total.mean().unstack().plot() + + +# ## Task 3 +# +# Fit a linear regression model to the entire dataset, using "total" as the response and "hour" and "workingday" as the only features. Then, print the coefficients and interpret them. What are the limitations of linear regression in this instance? + +# create X and y +feature_cols = ['hour', 'workingday'] +X = bikes[feature_cols] +y = bikes.total + + +# fit a linear regression model and print coefficients +linreg = LinearRegression() +linreg.fit(X, y) +linreg.coef_ + + +# ## Task 4 +# +# Use 10-fold cross-validation to calculate the RMSE for the linear regression model. + +# save the 10 MSE scores output by cross_val_score +scores = cross_val_score(linreg, X, y, cv=10, scoring='mean_squared_error') + + +# convert MSE to RMSE, and then calculate the mean of the 10 RMSE scores +np.mean(np.sqrt(-scores)) + + +# ## Task 5 +# +# Use 10-fold cross-validation to evaluate a decision tree model with those same features (fit to any "max_depth" you choose). + +# evaluate a decision tree model with "max_depth=7" +treereg = DecisionTreeRegressor(max_depth=7, random_state=1) +scores = cross_val_score(treereg, X, y, cv=10, scoring='mean_squared_error') +np.mean(np.sqrt(-scores)) + + +# ## Task 6 +# +# Fit a decision tree model to the entire dataset using "max_depth=3", and create a tree diagram using Graphviz. Then, figure out what each leaf represents. What did the decision tree learn that a linear regression model could not learn? + +# fit a decision tree model with "max_depth=3" +treereg = DecisionTreeRegressor(max_depth=3, random_state=1) +treereg.fit(X, y) + + +# create a Graphviz file +export_graphviz(treereg, out_file='tree_bikeshare.dot', feature_names=feature_cols) + +# At the command line, run this to convert to PNG: +# dot -Tpng tree_bikeshare.dot -o tree_bikeshare.png + + +# ![Tree for bikeshare data](images/tree_bikeshare.png) diff --git a/code/17_decision_trees_nb.py b/code/17_decision_trees_nb.py new file mode 100644 index 0000000..29ac567 --- /dev/null +++ b/code/17_decision_trees_nb.py @@ -0,0 +1,455 @@ +# # Decision Trees +# +# *Adapted from Chapter 8 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/)* + +# Why are we learning about decision trees? +# +# - Can be applied to both regression and classification problems +# - Many useful properties +# - Very popular +# - Basis for more sophisticated models +# - Have a different way of "thinking" than the other models we have studied + +# ## Lesson objectives +# +# Students will be able to: +# +# - Explain how a decision tree is created +# - Build a decision tree model in scikit-learn +# - Tune a decision tree model and explain how tuning impacts the model +# - Interpret a tree diagram +# - Describe the key differences between regression and classification trees +# - Decide whether a decision tree is an appropriate model for a given problem + +# # Part 1: Regression trees +# +# Major League Baseball player data from 1986-87: +# +# - **Years** (x-axis): number of years playing in the major leagues +# - **Hits** (y-axis): number of hits in the previous year +# - **Salary** (color): low salary is blue/green, high salary is red/yellow + +# ![Salary data](images/salary_color.png) + +# Group exercise: +# +# - The data above is our **training data**. +# - We want to build a model that predicts the Salary of **future players** based on Years and Hits. +# - We are going to "segment" the feature space into regions, and then use the **mean Salary in each region** as the predicted Salary for future players. +# - Intuitively, you want to **maximize** the similarity (or "homogeneity") within a given region, and **minimize** the similarity between different regions. +# +# Rules for segmenting: +# +# - You can only use **straight lines**, drawn one at a time. +# - Your line must either be **vertical or horizontal**. +# - Your line **stops** when it hits an existing line. + +# ![Salary regions](images/salary_regions.png) + +# Above are the regions created by a computer: +# +# - $R_1$: players with **less than 5 years** of experience, mean Salary of **\$166,000 ** +# - $R_2$: players with **5 or more years** of experience and **less than 118 hits**, mean Salary of **\$403,000 ** +# - $R_3$: players with **5 or more years** of experience and **118 hits or more**, mean Salary of **\$846,000 ** +# +# **Note:** Years and Hits are both integers, but the convention is to use the **midpoint** between adjacent values to label a split. +# +# These regions are used to make predictions on **out-of-sample data**. Thus, there are only three possible predictions! (Is this different from how **linear regression** makes predictions?) +# +# Below is the equivalent regression tree: + +# ![Salary tree](images/salary_tree.png) + +# The first split is **Years < 4.5**, thus that split goes at the top of the tree. When a splitting rule is **True**, you follow the left branch. When a splitting rule is **False**, you follow the right branch. +# +# For players in the **left branch**, the mean Salary is \$166,000, thus you label it with that value. (Salary has been divided by 1000 and log-transformed to 5.11.) +# +# For players in the **right branch**, there is a further split on **Hits < 117.5**, dividing players into two more Salary regions: \$403,000 (transformed to 6.00), and \$846,000 (transformed to 6.74). + +# ![Salary tree annotated](images/salary_tree_annotated.png) + +# **What does this tree tell you about your data?** +# +# - Years is the most important factor determining Salary, with a lower number of Years corresponding to a lower Salary. +# - For a player with a lower number of Years, Hits is not an important factor determining Salary. +# - For a player with a higher number of Years, Hits is an important factor determining Salary, with a greater number of Hits corresponding to a higher Salary. +# +# **Question:** What do you like and dislike about decision trees so far? + +# ## Building a regression tree by hand +# +# Your **training data** is a tiny dataset of [used vehicle sale prices](https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv). Your goal is to **predict price** for testing data. +# +# 1. Read the data into a Pandas DataFrame. +# 2. Explore the data by sorting, plotting, or split-apply-combine (aka `group_by`). +# 3. Decide which feature is the most important predictor, and use that to create your first splitting rule. +# - Only binary splits are allowed. +# 4. After making your first split, split your DataFrame into two parts, and then explore each part to figure out what other splits to make. +# 5. Stop making splits once you are convinced that it strikes a good balance between underfitting and overfitting. +# - Your goal is to build a model that generalizes well. +# - You are allowed to split on the same variable multiple times! +# 6. Draw your tree, labeling the leaves with the mean price for the observations in that region. +# - Make sure nothing is backwards: You follow the **left branch** if the rule is true, and the **right branch** if the rule is false. + +# ## How does a computer build a regression tree? +# +# **Ideal approach:** Consider every possible partition of the feature space (computationally infeasible) +# +# **"Good enough" approach:** recursive binary splitting +# +# 1. Begin at the top of the tree. +# 2. For **every feature**, examine **every possible cutpoint**, and choose the feature and cutpoint such that the resulting tree has the lowest possible mean squared error (MSE). Make that split. +# 3. Examine the two resulting regions, and again make a **single split** (in one of the regions) to minimize the MSE. +# 4. Keep repeating step 3 until a **stopping criterion** is met: +# - maximum tree depth (maximum number of splits required to arrive at a leaf) +# - minimum number of observations in a leaf + +# ### Demo: Choosing the ideal cutpoint for a given feature + +# vehicle data +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv' +train = pd.read_csv(url) + + +# before splitting anything, just predict the mean of the entire dataset +train['prediction'] = train.price.mean() +train + + +# calculate RMSE for those predictions +from sklearn import metrics +import numpy as np +np.sqrt(metrics.mean_squared_error(train.price, train.prediction)) + + +# define a function that calculates the RMSE for a given split of miles +def mileage_split(miles): + lower_mileage_price = train[train.miles < miles].price.mean() + higher_mileage_price = train[train.miles >= miles].price.mean() + train['prediction'] = np.where(train.miles < miles, lower_mileage_price, higher_mileage_price) + return np.sqrt(metrics.mean_squared_error(train.price, train.prediction)) + + +# calculate RMSE for tree which splits on miles < 50000 +print 'RMSE:', mileage_split(50000) +train + + +# calculate RMSE for tree which splits on miles < 100000 +print 'RMSE:', mileage_split(100000) +train + + +# check all possible mileage splits +mileage_range = range(train.miles.min(), train.miles.max(), 1000) +RMSE = [mileage_split(miles) for miles in mileage_range] + + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt +plt.rcParams['figure.figsize'] = (6, 4) +plt.rcParams['font.size'] = 14 + + +# plot mileage cutpoint (x-axis) versus RMSE (y-axis) +plt.plot(mileage_range, RMSE) +plt.xlabel('Mileage cutpoint') +plt.ylabel('RMSE (lower is better)') + + +# **Recap:** Before every split, this process is repeated for every feature, and the feature and cutpoint that produces the lowest MSE is chosen. + +# ## Building a regression tree in scikit-learn + +# encode car as 0 and truck as 1 +train['vtype'] = train.vtype.map({'car':0, 'truck':1}) + + +# define X and y +feature_cols = ['year', 'miles', 'doors', 'vtype'] +X = train[feature_cols] +y = train.price + + +# instantiate a DecisionTreeRegressor (with random_state=1) +from sklearn.tree import DecisionTreeRegressor +treereg = DecisionTreeRegressor(random_state=1) +treereg + + +# use leave-one-out cross-validation (LOOCV) to estimate the RMSE for this model +from sklearn.cross_validation import cross_val_score +scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error') +np.mean(np.sqrt(-scores)) + + +# ## What happens when we grow a tree too deep? +# +# - Left: Regression tree for Salary **grown deeper** +# - Right: Comparison of the **training, testing, and cross-validation errors** for trees with different numbers of leaves + +# ![Salary tree grown deep](images/salary_tree_deep.png) + +# The **training error** continues to go down as the tree size increases (due to overfitting), but the lowest **cross-validation error** occurs for a tree with 3 leaves. + +# ## Tuning a regression tree +# +# Let's try to reduce the RMSE by tuning the **max_depth** parameter: + +# try different values one-by-one +treereg = DecisionTreeRegressor(max_depth=1, random_state=1) +scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error') +np.mean(np.sqrt(-scores)) + + +# Or, we could write a loop to try a range of values: + +# list of values to try +max_depth_range = range(1, 8) + +# list to store the average RMSE for each value of max_depth +RMSE_scores = [] + +# use LOOCV with each value of max_depth +for depth in max_depth_range: + treereg = DecisionTreeRegressor(max_depth=depth, random_state=1) + MSE_scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error') + RMSE_scores.append(np.mean(np.sqrt(-MSE_scores))) + + +# plot max_depth (x-axis) versus RMSE (y-axis) +plt.plot(max_depth_range, RMSE_scores) +plt.xlabel('max_depth') +plt.ylabel('RMSE (lower is better)') + + +# max_depth=3 was best, so fit a tree using that parameter +treereg = DecisionTreeRegressor(max_depth=3, random_state=1) +treereg.fit(X, y) + + +# "Gini importance" of each feature: the (normalized) total reduction of error brought by that feature +pd.DataFrame({'feature':feature_cols, 'importance':treereg.feature_importances_}) + + +# ## Creating a tree diagram + +# create a Graphviz file +from sklearn.tree import export_graphviz +export_graphviz(treereg, out_file='tree_vehicles.dot', feature_names=feature_cols) + +# At the command line, run this to convert to PNG: +# dot -Tpng tree_vehicles.dot -o tree_vehicles.png + + +# ![Tree for vehicle data](images/tree_vehicles.png) + +# Reading the internal nodes: +# +# - **samples:** number of observations in that node before splitting +# - **mse:** MSE calculated by comparing the actual response values in that node against the mean response value in that node +# - **rule:** rule used to split that node (go left if true, go right if false) +# +# Reading the leaves: +# +# - **samples:** number of observations in that node +# - **value:** mean response value in that node +# - **mse:** MSE calculated by comparing the actual response values in that node against "value" + +# ## Making predictions for the testing data + +# read the testing data +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_test.csv' +test = pd.read_csv(url) +test['vtype'] = test.vtype.map({'car':0, 'truck':1}) +test + + +# **Question:** Using the tree diagram above, what predictions will the model make for each observation? + +# use fitted model to make predictions on testing data +X_test = test[feature_cols] +y_test = test.price +y_pred = treereg.predict(X_test) +y_pred + + +# calculate RMSE +np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# calculate RMSE for your own tree! +y_test = [3000, 6000, 12000] +y_pred = [0, 0, 0] +from sklearn import metrics +np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# # Part 2: Classification trees +# +# **Example:** Predict whether Barack Obama or Hillary Clinton will win the Democratic primary in a particular county in 2008: + +# ![Obama-Clinton decision tree](images/obama_clinton_tree.jpg) + +# **Questions:** +# +# - What are the observations? How many observations are there? +# - What is the response variable? +# - What are the features? +# - What is the most predictive feature? +# - Why does the tree split on high school graduation rate twice in a row? +# - What is the class prediction for the following county: 15% African-American, 90% high school graduation rate, located in the South, high poverty, high population density? +# - What is the predicted probability for that same county? + +# ## Comparing regression trees and classification trees +# +# |regression trees|classification trees| +# |---|---| +# |predict a continuous response|predict a categorical response| +# |predict using mean response of each leaf|predict using most commonly occuring class of each leaf| +# |splits are chosen to minimize MSE|splits are chosen to minimize Gini index (discussed below)| + +# ## Splitting criteria for classification trees +# +# Common options for the splitting criteria: +# +# - **classification error rate:** fraction of training observations in a region that don't belong to the most common class +# - **Gini index:** measure of total variance across classes in a region + +# ### Example of classification error rate +# +# Pretend we are predicting whether someone buys an iPhone or an Android: +# +# - At a particular node, there are **25 observations** (phone buyers), of whom **10 bought iPhones and 15 bought Androids**. +# - Since the majority class is **Android**, that's our prediction for all 25 observations, and thus the classification error rate is **10/25 = 40%**. +# +# Our goal in making splits is to **reduce the classification error rate**. Let's try splitting on gender: +# +# - **Males:** 2 iPhones and 12 Androids, thus the predicted class is Android +# - **Females:** 8 iPhones and 3 Androids, thus the predicted class is iPhone +# - Classification error rate after this split would be **5/25 = 20%** +# +# Compare that with a split on age: +# +# - **30 or younger:** 4 iPhones and 8 Androids, thus the predicted class is Android +# - **31 or older:** 6 iPhones and 7 Androids, thus the predicted class is Android +# - Classification error rate after this split would be **10/25 = 40%** +# +# The decision tree algorithm will try **every possible split across all features**, and choose the split that **reduces the error rate the most.** + +# ### Example of Gini index +# +# Calculate the Gini index before making a split: +# +# $$1 - \left(\frac {iPhone} {Total}\right)^2 - \left(\frac {Android} {Total}\right)^2 = 1 - \left(\frac {10} {25}\right)^2 - \left(\frac {15} {25}\right)^2 = 0.48$$ +# +# - The **maximum value** of the Gini index is 0.5, and occurs when the classes are perfectly balanced in a node. +# - The **minimum value** of the Gini index is 0, and occurs when there is only one class represented in a node. +# - A node with a lower Gini index is said to be more "pure". +# +# Evaluating the split on **gender** using Gini index: +# +# $$\text{Males: } 1 - \left(\frac {2} {14}\right)^2 - \left(\frac {12} {14}\right)^2 = 0.24$$ +# $$\text{Females: } 1 - \left(\frac {8} {11}\right)^2 - \left(\frac {3} {11}\right)^2 = 0.40$$ +# $$\text{Weighted Average: } 0.24 \left(\frac {14} {25}\right) + 0.40 \left(\frac {11} {25}\right) = 0.31$$ +# +# Evaluating the split on **age** using Gini index: +# +# $$\text{30 or younger: } 1 - \left(\frac {4} {12}\right)^2 - \left(\frac {8} {12}\right)^2 = 0.44$$ +# $$\text{31 or older: } 1 - \left(\frac {6} {13}\right)^2 - \left(\frac {7} {13}\right)^2 = 0.50$$ +# $$\text{Weighted Average: } 0.44 \left(\frac {12} {25}\right) + 0.50 \left(\frac {13} {25}\right) = 0.47$$ +# +# Again, the decision tree algorithm will try **every possible split**, and will choose the split that **reduces the Gini index (and thus increases the "node purity") the most.** + +# ### Comparing classification error rate and Gini index +# +# - Gini index is generally preferred because it will make splits that **increase node purity**, even if that split does not change the classification error rate. +# - Node purity is important because we're interested in the **class proportions** in each region, since that's how we calculate the **predicted probability** of each class. +# - scikit-learn's default splitting criteria for classification trees is Gini index. +# +# Note: There is another common splitting criteria called **cross-entropy**. It's numerically similar to Gini index, but slower to compute, thus it's not as popular as Gini index. + +# ## Building a classification tree in scikit-learn + +# We'll build a classification tree using the Titanic data: + +# read in the data +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv' +titanic = pd.read_csv(url) + +# encode female as 0 and male as 1 +titanic['Sex'] = titanic.Sex.map({'female':0, 'male':1}) + +# fill in the missing values for age with the median age +titanic.Age.fillna(titanic.Age.median(), inplace=True) + +# create a DataFrame of dummy variables for Embarked +embarked_dummies = pd.get_dummies(titanic.Embarked, prefix='Embarked') +embarked_dummies.drop(embarked_dummies.columns[0], axis=1, inplace=True) + +# concatenate the original DataFrame and the dummy DataFrame +titanic = pd.concat([titanic, embarked_dummies], axis=1) + +# print the updated DataFrame +titanic.head() + + +# - **Survived:** 0=died, 1=survived (response variable) +# - **Pclass:** 1=first class, 2=second class, 3=third class +# - What will happen if the tree splits on this feature? +# - **Sex:** 0=female, 1=male +# - **Age:** numeric value +# - **Embarked:** C or Q or S + +# define X and y +feature_cols = ['Pclass', 'Sex', 'Age', 'Embarked_Q', 'Embarked_S'] +X = titanic[feature_cols] +y = titanic.Survived + + +# fit a classification tree with max_depth=3 on all data +from sklearn.tree import DecisionTreeClassifier +treeclf = DecisionTreeClassifier(max_depth=3, random_state=1) +treeclf.fit(X, y) + + +# create a Graphviz file +export_graphviz(treeclf, out_file='tree_titanic.dot', feature_names=feature_cols) + +# At the command line, run this to convert to PNG: +# dot -Tpng tree_titanic.dot -o tree_titanic.png + + +# ![Tree for Titanic data](images/tree_titanic.png) + +# Notice the split in the bottom right: the **same class** is predicted in both of its leaves. That split didn't affect the **classification error rate**, though it did increase the **node purity**, which is important because it increases the accuracy of our predicted probabilities. + +# compute the feature importances +pd.DataFrame({'feature':feature_cols, 'importance':treeclf.feature_importances_}) + + +# # Part 3: Comparing decision trees with other models +# +# **Advantages of decision trees:** +# +# - Can be used for regression or classification +# - Can be displayed graphically +# - Highly interpretable +# - Can be specified as a series of rules, and more closely approximate human decision-making than other models +# - Prediction is fast +# - Features don't need scaling +# - Automatically learns feature interactions +# - Tends to ignore irrelevant features +# - Non-parametric (will outperform linear models if relationship between features and response is highly non-linear) + +# ![Trees versus linear models](images/tree_vs_linear.png) + +# **Disadvantages of decision trees:** +# +# - Performance is (generally) not competitive with the best supervised learning methods +# - Can easily overfit the training data (tuning is required) +# - Small variations in the data can result in a completely different tree (high variance) +# - Recursive binary splitting makes "locally optimal" decisions that may not result in a globally optimal tree +# - Doesn't tend to work well if the classes are highly unbalanced +# - Doesn't tend to work well with very small datasets diff --git a/code/18_ensembling_nb.py b/code/18_ensembling_nb.py new file mode 100644 index 0000000..2bb5e36 --- /dev/null +++ b/code/18_ensembling_nb.py @@ -0,0 +1,491 @@ +# # Ensembling +# +# *Adapted from Chapter 8 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/)* + +# Why are we learning about ensembling? +# +# - Very popular method for improving the predictive performance of machine learning models +# - Provides a foundation for understanding more sophisticated models + +# ## Lesson objectives +# +# Students will be able to: +# +# - Define ensembling and its requirements +# - Identify the two basic methods of ensembling +# - Decide whether manual ensembling is a useful approach for a given problem +# - Explain bagging and how it can be applied to decision trees +# - Explain how out-of-bag error and feature importances are calculated from bagged trees +# - Explain the difference between bagged trees and Random Forests +# - Build and tune a Random Forest model in scikit-learn +# - Decide whether a decision tree or a Random Forest is a better model for a given problem + +# # Part 1: Introduction +# +# Let's pretend that instead of building a single model to solve a binary classification problem, you created **five independent models**, and each model was correct about 70% of the time. If you combined these models into an "ensemble" and used their majority vote as a prediction, how often would the ensemble be correct? + +import numpy as np + +# set a seed for reproducibility +np.random.seed(1234) + +# generate 1000 random numbers (between 0 and 1) for each model, representing 1000 observations +mod1 = np.random.rand(1000) +mod2 = np.random.rand(1000) +mod3 = np.random.rand(1000) +mod4 = np.random.rand(1000) +mod5 = np.random.rand(1000) + +# each model independently predicts 1 (the "correct response") if random number was at least 0.3 +preds1 = np.where(mod1 > 0.3, 1, 0) +preds2 = np.where(mod2 > 0.3, 1, 0) +preds3 = np.where(mod3 > 0.3, 1, 0) +preds4 = np.where(mod4 > 0.3, 1, 0) +preds5 = np.where(mod5 > 0.3, 1, 0) + +# print the first 20 predictions from each model +print preds1[:20] +print preds2[:20] +print preds3[:20] +print preds4[:20] +print preds5[:20] + + +# average the predictions and then round to 0 or 1 +ensemble_preds = np.round((preds1 + preds2 + preds3 + preds4 + preds5)/5.0).astype(int) + +# print the ensemble's first 20 predictions +print ensemble_preds[:20] + + +# how accurate was each individual model? +print preds1.mean() +print preds2.mean() +print preds3.mean() +print preds4.mean() +print preds5.mean() + + +# how accurate was the ensemble? +print ensemble_preds.mean() + + +# **Note:** As you add more models to the voting process, the probability of error decreases, which is known as [Condorcet's Jury Theorem](http://en.wikipedia.org/wiki/Condorcet%27s_jury_theorem). + +# ## What is ensembling? +# +# **Ensemble learning (or "ensembling")** is the process of combining several predictive models in order to produce a combined model that is more accurate than any individual model. +# +# - **Regression:** take the average of the predictions +# - **Classification:** take a vote and use the most common prediction, or take the average of the predicted probabilities +# +# For ensembling to work well, the models must have the following characteristics: +# +# - **Accurate:** they outperform the null model +# - **Independent:** their predictions are generated using different processes +# +# **The big idea:** If you have a collection of individually imperfect (and independent) models, the "one-off" mistakes made by each model are probably not going to be made by the rest of the models, and thus the mistakes will be discarded when averaging the models. +# +# There are two basic **methods for ensembling:** +# +# - Manually ensemble your individual models +# - Use a model that ensembles for you + +# # Part 2: Manual ensembling +# +# What makes a good manual ensemble? +# +# - Different types of **models** +# - Different combinations of **features** +# - Different **tuning parameters** + +# ![Machine learning flowchart](images/crowdflower_ensembling.jpg) +# +# *Machine learning flowchart created by the [winner](https://github.com/ChenglongChen/Kaggle_CrowdFlower) of Kaggle's [CrowdFlower competition](https://www.kaggle.com/c/crowdflower-search-relevance)* + +# ## Comparing manual ensembling with a single model approach +# +# **Advantages of manual ensembling:** +# +# - Increases predictive accuracy +# - Easy to get started +# +# **Disadvantages of manual ensembling:** +# +# - Decreases interpretability +# - Takes longer to train +# - Takes longer to predict +# - More complex to automate and maintain +# - Small gains in accuracy may not be worth the added complexity + +# # Part 3: Bagging +# +# The primary weakness of **decision trees** is that they don't tend to have the best predictive accuracy. This is partially due to **high variance**, meaning that different splits in the training data can lead to very different trees. +# +# **Bagging** is a general purpose procedure for reducing the variance of a machine learning method, but is particularly useful for decision trees. Bagging is short for **bootstrap aggregation**, meaning the aggregation of bootstrap samples. +# +# What is a **bootstrap sample**? A random sample with replacement: + +# set a seed for reproducibility +np.random.seed(1) + +# create an array of 1 through 20 +nums = np.arange(1, 21) +print nums + +# sample that array 20 times with replacement +print np.random.choice(a=nums, size=20, replace=True) + + +# **How does bagging work (for decision trees)?** +# +# 1. Grow B trees using B bootstrap samples from the training data. +# 2. Train each tree on its bootstrap sample and make predictions. +# 3. Combine the predictions: +# - Average the predictions for **regression trees** +# - Take a vote for **classification trees** +# +# Notes: +# +# - **Each bootstrap sample** should be the same size as the original training set. +# - **B** should be a large enough value that the error seems to have "stabilized". +# - The trees are **grown deep** so that they have low bias/high variance. +# +# Bagging increases predictive accuracy by **reducing the variance**, similar to how cross-validation reduces the variance associated with train/test split (for estimating out-of-sample error) by splitting many times an averaging the results. + +# ## Manually implementing bagged decision trees (with B=10) + +# read in and prepare the vehicle training data +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv' +train = pd.read_csv(url) +train['vtype'] = train.vtype.map({'car':0, 'truck':1}) +train + + +# set a seed for reproducibility +np.random.seed(123) + +# create ten bootstrap samples (will be used to select rows from the DataFrame) +samples = [np.random.choice(a=14, size=14, replace=True) for _ in range(1, 11)] +samples + + +# show the rows for the first decision tree +train.iloc[samples[0], :] + + +# read in and prepare the vehicle testing data +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_test.csv' +test = pd.read_csv(url) +test['vtype'] = test.vtype.map({'car':0, 'truck':1}) +test + + +from sklearn.tree import DecisionTreeRegressor + +# grow each tree deep +treereg = DecisionTreeRegressor(max_depth=None, random_state=123) + +# list for storing predicted price from each tree +predictions = [] + +# define testing data +X_test = test.iloc[:, 1:] +y_test = test.iloc[:, 0] + +# grow one tree for each bootstrap sample and make predictions on testing data +for sample in samples: + X_train = train.iloc[sample, 1:] + y_train = train.iloc[sample, 0] + treereg.fit(X_train, y_train) + y_pred = treereg.predict(X_test) + predictions.append(y_pred) + +# convert predictions from list to NumPy array +predictions = np.array(predictions) +predictions + + +# average predictions +np.mean(predictions, axis=0) + + +# calculate RMSE +from sklearn import metrics +y_pred = np.mean(predictions, axis=0) +np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# ## Bagged decision trees in scikit-learn (with B=500) + +# define the training and testing sets +X_train = train.iloc[:, 1:] +y_train = train.iloc[:, 0] +X_test = test.iloc[:, 1:] +y_test = test.iloc[:, 0] + + +# instruct BaggingRegressor to use DecisionTreeRegressor as the "base estimator" +from sklearn.ensemble import BaggingRegressor +bagreg = BaggingRegressor(DecisionTreeRegressor(), n_estimators=500, bootstrap=True, oob_score=True, random_state=1) + + +# fit and predict +bagreg.fit(X_train, y_train) +y_pred = bagreg.predict(X_test) +y_pred + + +# calculate RMSE +np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# ## Estimating out-of-sample error +# +# For bagged models, out-of-sample error can be estimated without using **train/test split** or **cross-validation**! +# +# On average, each bagged tree uses about **two-thirds** of the observations. For each tree, the **remaining observations** are called "out-of-bag" observations. + +# show the first bootstrap sample +samples[0] + + +# show the "in-bag" observations for each sample +for sample in samples: + print set(sample) + + +# show the "out-of-bag" observations for each sample +for sample in samples: + print sorted(set(range(14)) - set(sample)) + + +# How to calculate **"out-of-bag error":** +# +# 1. For every observation in the training data, predict its response value using **only** the trees in which that observation was out-of-bag. Average those predictions (for regression) or take a vote (for classification). +# 2. Compare all predictions to the actual response values in order to compute the out-of-bag error. +# +# When B is sufficiently large, the **out-of-bag error** is an accurate estimate of **out-of-sample error**. + +# compute the out-of-bag R-squared score (not MSE, unfortunately!) for B=500 +bagreg.oob_score_ + + +# ## Estimating feature importance +# +# Bagging increases **predictive accuracy**, but decreases **model interpretability** because it's no longer possible to visualize the tree to understand the importance of each feature. +# +# However, we can still obtain an overall summary of **feature importance** from bagged models: +# +# - **Bagged regression trees:** calculate the total amount that **MSE** is decreased due to splits over a given feature, averaged over all trees +# - **Bagged classification trees:** calculate the total amount that **Gini index** is decreased due to splits over a given feature, averaged over all trees + +# # Part 4: Random Forests +# +# Random Forests is a **slight variation of bagged trees** that has even better performance: +# +# - Exactly like bagging, we create an ensemble of decision trees using bootstrapped samples of the training set. +# - However, when building each tree, each time a split is considered, a **random sample of m features** is chosen as split candidates from the **full set of p features**. The split is only allowed to use **one of those m features**. +# - A new random sample of features is chosen for **every single tree at every single split**. +# - For **classification**, m is typically chosen to be the square root of p. +# - For **regression**, m is typically chosen to be somewhere between p/3 and p. +# +# What's the point? +# +# - Suppose there is **one very strong feature** in the data set. When using bagged trees, most of the trees will use that feature as the top split, resulting in an ensemble of similar trees that are **highly correlated**. +# - Averaging highly correlated quantities does not significantly reduce variance (which is the entire goal of bagging). +# - By randomly leaving out candidate features from each split, **Random Forests "decorrelates" the trees**, such that the averaging process can reduce the variance of the resulting model. + +# # Part 5: Building and tuning decision trees and Random Forests +# +# - Major League Baseball player data from 1986-87: [data](https://github.com/justmarkham/DAT8/blob/master/data/hitters.csv), [data dictionary](https://cran.r-project.org/web/packages/ISLR/ISLR.pdf) (page 7) +# - Each observation represents a player +# - **Goal:** Predict player salary + +# ## Preparing the data + +# read in the data +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/hitters.csv' +hitters = pd.read_csv(url) + +# remove rows with missing values +hitters.dropna(inplace=True) + + +hitters.head() + + +# encode categorical variables as integers +hitters['League'] = pd.factorize(hitters.League)[0] +hitters['Division'] = pd.factorize(hitters.Division)[0] +hitters['NewLeague'] = pd.factorize(hitters.NewLeague)[0] +hitters.head() + + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt + + +# scatter plot of Years versus Hits colored by Salary +hitters.plot(kind='scatter', x='Years', y='Hits', c='Salary', colormap='jet', xlim=(0, 25), ylim=(0, 250)) + + +# define features: exclude career statistics (which start with "C") and the response (Salary) +feature_cols = hitters.columns[hitters.columns.str.startswith('C') == False].drop('Salary') +feature_cols + + +# define X and y +X = hitters[feature_cols] +y = hitters.Salary + + +# ## Predicting salary with a decision tree +# +# Find the best **max_depth** for a decision tree using cross-validation: + +# list of values to try for max_depth +max_depth_range = range(1, 21) + +# list to store the average RMSE for each value of max_depth +RMSE_scores = [] + +# use 10-fold cross-validation with each value of max_depth +from sklearn.cross_validation import cross_val_score +for depth in max_depth_range: + treereg = DecisionTreeRegressor(max_depth=depth, random_state=1) + MSE_scores = cross_val_score(treereg, X, y, cv=10, scoring='mean_squared_error') + RMSE_scores.append(np.mean(np.sqrt(-MSE_scores))) + + +# plot max_depth (x-axis) versus RMSE (y-axis) +plt.plot(max_depth_range, RMSE_scores) +plt.xlabel('max_depth') +plt.ylabel('RMSE (lower is better)') + + +# show the best RMSE and the corresponding max_depth +sorted(zip(RMSE_scores, max_depth_range))[0] + + +# max_depth=2 was best, so fit a tree using that parameter +treereg = DecisionTreeRegressor(max_depth=2, random_state=1) +treereg.fit(X, y) + + +# compute feature importances +pd.DataFrame({'feature':feature_cols, 'importance':treereg.feature_importances_}).sort('importance') + + +# ## Predicting salary with a Random Forest + +from sklearn.ensemble import RandomForestRegressor +rfreg = RandomForestRegressor() +rfreg + + +# ### Tuning n_estimators +# +# One important tuning parameter is **n_estimators**, which is the number of trees that should be grown. It should be a large enough value that the error seems to have "stabilized". + +# list of values to try for n_estimators +estimator_range = range(10, 310, 10) + +# list to store the average RMSE for each value of n_estimators +RMSE_scores = [] + +# use 5-fold cross-validation with each value of n_estimators (WARNING: SLOW!) +for estimator in estimator_range: + rfreg = RandomForestRegressor(n_estimators=estimator, random_state=1) + MSE_scores = cross_val_score(rfreg, X, y, cv=5, scoring='mean_squared_error') + RMSE_scores.append(np.mean(np.sqrt(-MSE_scores))) + + +# plot n_estimators (x-axis) versus RMSE (y-axis) +plt.plot(estimator_range, RMSE_scores) +plt.xlabel('n_estimators') +plt.ylabel('RMSE (lower is better)') + + +# ### Tuning max_features +# +# The other important tuning parameter is **max_features**, which is the number of features that should be considered at each split. + +# list of values to try for max_features +feature_range = range(1, len(feature_cols)+1) + +# list to store the average RMSE for each value of max_features +RMSE_scores = [] + +# use 10-fold cross-validation with each value of max_features (WARNING: SLOW!) +for feature in feature_range: + rfreg = RandomForestRegressor(n_estimators=150, max_features=feature, random_state=1) + MSE_scores = cross_val_score(rfreg, X, y, cv=10, scoring='mean_squared_error') + RMSE_scores.append(np.mean(np.sqrt(-MSE_scores))) + + +# plot max_features (x-axis) versus RMSE (y-axis) +plt.plot(feature_range, RMSE_scores) +plt.xlabel('max_features') +plt.ylabel('RMSE (lower is better)') + + +# show the best RMSE and the corresponding max_features +sorted(zip(RMSE_scores, feature_range))[0] + + +# ### Fitting a Random Forest with the best parameters + +# max_features=8 is best and n_estimators=150 is sufficiently large +rfreg = RandomForestRegressor(n_estimators=150, max_features=8, oob_score=True, random_state=1) +rfreg.fit(X, y) + + +# compute feature importances +pd.DataFrame({'feature':feature_cols, 'importance':rfreg.feature_importances_}).sort('importance') + + +# compute the out-of-bag R-squared score +rfreg.oob_score_ + + +# ### Reducing X to its most important features + +# check the shape of X +X.shape + + +# set a threshold for which features to include +print rfreg.transform(X, threshold=0.1).shape +print rfreg.transform(X, threshold='mean').shape +print rfreg.transform(X, threshold='median').shape + + +# create a new feature matrix that only includes important features +X_important = rfreg.transform(X, threshold='mean') + + +# check the RMSE for a Random Forest that only includes important features +rfreg = RandomForestRegressor(n_estimators=150, max_features=3, random_state=1) +scores = cross_val_score(rfreg, X_important, y, cv=10, scoring='mean_squared_error') +np.mean(np.sqrt(-scores)) + + +# ## Comparing Random Forests with decision trees +# +# **Advantages of Random Forests:** +# +# - Performance is competitive with the best supervised learning methods +# - Provides a more reliable estimate of feature importance +# - Allows you to estimate out-of-sample error without using train/test split or cross-validation +# +# **Disadvantages of Random Forests:** +# +# - Less interpretable +# - Slower to train +# - Slower to predict + +# ![Machine learning flowchart](images/driver_ensembling.png) +# +# *Machine learning flowchart created by the [second place finisher](http://blog.kaggle.com/2015/04/20/axa-winners-interview-learning-telematic-fingerprints-from-gps-data/) of Kaggle's [Driver Telematics competition](https://www.kaggle.com/c/axa-driver-telematics-analysis)* diff --git a/code/19_advanced_sklearn_nb.py b/code/19_advanced_sklearn_nb.py new file mode 100644 index 0000000..a70b58f --- /dev/null +++ b/code/19_advanced_sklearn_nb.py @@ -0,0 +1,208 @@ +# # Advanced scikit-learn + +# ## Agenda +# +# - StandardScaler +# - Pipeline (bonus content) + +# ## StandardScaler +# +# ### What is the problem we're trying to solve? + +# fake data +import pandas as pd +train = pd.DataFrame({'id':[0,1,2], 'length':[0.9,0.3,0.6], 'mass':[0.1,0.2,0.8], 'rings':[40,50,60]}) +test = pd.DataFrame({'length':[0.59], 'mass':[0.79], 'rings':[54]}) + + +# training data +train + + +# testing data +test + + +# define X and y +feature_cols = ['length', 'mass', 'rings'] +X = train[feature_cols] +y = train.id + + +# KNN with K=1 +from sklearn.neighbors import KNeighborsClassifier +knn = KNeighborsClassifier(n_neighbors=1) +knn.fit(X, y) + + +# what "should" it predict? +knn.predict(test) + + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt +plt.rcParams['font.size'] = 14 +plt.rcParams['figure.figsize'] = (5, 5) + + +# create a "colors" array for plotting +import numpy as np +colors = np.array(['red', 'green', 'blue']) + + +# scatter plot of training data, colored by id (0=red, 1=green, 2=blue) +plt.scatter(train.mass, train.rings, c=colors[train.id], s=50) + +# testing data +plt.scatter(test.mass, test.rings, c='white', s=50) + +# add labels +plt.xlabel('mass') +plt.ylabel('rings') +plt.title('How we interpret the data') + + +# adjust the x-limits +plt.scatter(train.mass, train.rings, c=colors[train.id], s=50) +plt.scatter(test.mass, test.rings, c='white', s=50) +plt.xlabel('mass') +plt.ylabel('rings') +plt.title('How KNN interprets the data') +plt.xlim(0, 30) + + +# ### How does StandardScaler solve the problem? +# +# [StandardScaler](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html) is used for the "standardization" of features, also known as "center and scale" or "z-score normalization". + +# standardize the features +from sklearn.preprocessing import StandardScaler +scaler = StandardScaler() +scaler.fit(X) +X_scaled = scaler.transform(X) + + +# original values +X.values + + +# standardized values +X_scaled + + +# figure out how it standardized +print scaler.mean_ +print scaler.std_ + + +# manually standardize +(X.values - scaler.mean_) / scaler.std_ + + +# ### Applying StandardScaler to a real dataset +# +# - Wine dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Wine) +# - **Goal:** Predict the origin of wine using chemical analysis + +# read three columns from the dataset into a DataFrame +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data' +col_names = ['label', 'color', 'proline'] +wine = pd.read_csv(url, header=None, names=col_names, usecols=[0, 10, 13]) + + +wine.head() + + +wine.describe() + + +# define X and y +feature_cols = ['color', 'proline'] +X = wine[feature_cols] +y = wine.label + + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# standardize X_train +scaler.fit(X_train) +X_train_scaled = scaler.transform(X_train) + + +# check that it standardized properly +print X_train_scaled[:, 0].mean() +print X_train_scaled[:, 0].std() +print X_train_scaled[:, 1].mean() +print X_train_scaled[:, 1].std() + + +# standardize X_test +X_test_scaled = scaler.transform(X_test) + + +# is this right? +print X_test_scaled[:, 0].mean() +print X_test_scaled[:, 0].std() +print X_test_scaled[:, 1].mean() +print X_test_scaled[:, 1].std() + + +# KNN accuracy on original data +knn = KNeighborsClassifier(n_neighbors=3) +knn.fit(X_train, y_train) +y_pred_class = knn.predict(X_test) +from sklearn import metrics +print metrics.accuracy_score(y_test, y_pred_class) + + +# KNN accuracy on scaled data +knn.fit(X_train_scaled, y_train) +y_pred_class = knn.predict(X_test_scaled) +print metrics.accuracy_score(y_test, y_pred_class) + + +# ## Pipeline (bonus content) +# +# ### What is the problem we're trying to solve? + +# define X and y +feature_cols = ['color', 'proline'] +X = wine[feature_cols] +y = wine.label + + +# proper cross-validation on the original (unscaled) data +knn = KNeighborsClassifier(n_neighbors=3) +from sklearn.cross_validation import cross_val_score +cross_val_score(knn, X, y, cv=5, scoring='accuracy').mean() + + +# why is this improper cross-validation on the scaled data? +scaler = StandardScaler() +X_scaled = scaler.fit_transform(X) +cross_val_score(knn, X_scaled, y, cv=5, scoring='accuracy').mean() + + +# ### How does Pipeline solve the problem? +# +# [Pipeline](http://scikit-learn.org/stable/modules/pipeline.html) is used for chaining steps together: + +# fix the cross-validation process using Pipeline +from sklearn.pipeline import make_pipeline +pipe = make_pipeline(StandardScaler(), KNeighborsClassifier(n_neighbors=3)) +cross_val_score(pipe, X, y, cv=5, scoring='accuracy').mean() + + +# Pipeline can also be used with [GridSearchCV](http://scikit-learn.org/stable/modules/generated/sklearn.grid_search.GridSearchCV.html) for parameter searching: + +# search for an optimal n_neighbors value using GridSearchCV +neighbors_range = range(1, 21) +param_grid = dict(kneighborsclassifier__n_neighbors=neighbors_range) +from sklearn.grid_search import GridSearchCV +grid = GridSearchCV(pipe, param_grid, cv=5, scoring='accuracy') +grid.fit(X, y) +print grid.best_score_ +print grid.best_params_ diff --git a/code/19_clustering_nb.py b/code/19_clustering_nb.py new file mode 100644 index 0000000..c9639f3 --- /dev/null +++ b/code/19_clustering_nb.py @@ -0,0 +1,173 @@ +# # Clustering + +# ## Agenda: +# +# 1. K-means clustering +# 2. Clustering evaluation +# 3. DBSCAN clustering + +# beer dataset +import pandas as pd +url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/beer.txt' +beer = pd.read_csv(url, sep=' ') +beer + + +# How would you cluster these beers? + +# define X +X = beer.drop('name', axis=1) + + +# What happened to y? + +# ## Part 1: K-means clustering + +# K-means with 3 clusters +from sklearn.cluster import KMeans +km = KMeans(n_clusters=3, random_state=1) +km.fit(X) + + +# review the cluster labels +km.labels_ + + +# save the cluster labels and sort by cluster +beer['cluster'] = km.labels_ +beer.sort('cluster') + + +# What do the clusters seem to be based on? Why? + +# review the cluster centers +km.cluster_centers_ + + +# calculate the mean of each feature for each cluster +beer.groupby('cluster').mean() + + +# save the DataFrame of cluster centers +centers = beer.groupby('cluster').mean() + + +# allow plots to appear in the notebook +import matplotlib.pyplot as plt +plt.rcParams['font.size'] = 14 + + +# create a "colors" array for plotting +import numpy as np +colors = np.array(['red', 'green', 'blue', 'yellow']) + + +# scatter plot of calories versus alcohol, colored by cluster (0=red, 1=green, 2=blue) +plt.scatter(beer.calories, beer.alcohol, c=colors[beer.cluster], s=50) + +# cluster centers, marked by "+" +plt.scatter(centers.calories, centers.alcohol, linewidths=3, marker='+', s=300, c='black') + +# add labels +plt.xlabel('calories') +plt.ylabel('alcohol') + + +# scatter plot matrix (0=red, 1=green, 2=blue) +pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100) + + +# ### Repeat with scaled data + +# center and scale the data +from sklearn.preprocessing import StandardScaler +scaler = StandardScaler() +X_scaled = scaler.fit_transform(X) + + +# K-means with 3 clusters on scaled data +km = KMeans(n_clusters=3, random_state=1) +km.fit(X_scaled) + + +# save the cluster labels and sort by cluster +beer['cluster'] = km.labels_ +beer.sort('cluster') + + +# What are the "characteristics" of each cluster? + +# review the cluster centers +beer.groupby('cluster').mean() + + +# scatter plot matrix of new cluster assignments (0=red, 1=green, 2=blue) +pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100) + + +# Do you notice any cluster assignments that seem a bit odd? How might we explain those? + +# ## Part 2: Clustering evaluation +# +# The [Silhouette Coefficient](http://scikit-learn.org/stable/modules/clustering.html#silhouette-coefficient) is a common metric for evaluating clustering "performance" in situations when the "true" cluster assignments are not known. +# +# A Silhouette Coefficient is calculated for **each observation**: +# +# $$SC = \frac{b-a} {max(a, b)}$$ +# +# - a = mean distance to all other points in **its cluster** +# - b = mean distance to all other points in **the next nearest cluster** +# +# It ranges from -1 (worst) to 1 (best). A **global score** is calculated by taking the mean score for all observations. + +# calculate SC for K=3 +from sklearn import metrics +metrics.silhouette_score(X_scaled, km.labels_) + + +# calculate SC for K=2 through K=19 +k_range = range(2, 20) +scores = [] +for k in k_range: + km = KMeans(n_clusters=k, random_state=1) + km.fit(X_scaled) + scores.append(metrics.silhouette_score(X_scaled, km.labels_)) + + +# plot the results +plt.plot(k_range, scores) +plt.xlabel('Number of clusters') +plt.ylabel('Silhouette Coefficient') +plt.grid(True) + + +# K-means with 4 clusters on scaled data +km = KMeans(n_clusters=4, random_state=1) +km.fit(X_scaled) +beer['cluster'] = km.labels_ +beer.sort('cluster') + + +# ## Part 3: DBSCAN clustering + +# DBSCAN with eps=1 and min_samples=3 +from sklearn.cluster import DBSCAN +db = DBSCAN(eps=1, min_samples=3) +db.fit(X_scaled) + + +# review the cluster labels +db.labels_ + + +# save the cluster labels and sort by cluster +beer['cluster'] = db.labels_ +beer.sort('cluster') + + +# review the cluster centers +beer.groupby('cluster').mean() + + +# scatter plot matrix of DBSCAN cluster assignments (0=red, 1=green, 2=blue, -1=yellow) +pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100) diff --git a/code/20_regex_exercise.py b/code/20_regex_exercise.py new file mode 100644 index 0000000..f0e3067 --- /dev/null +++ b/code/20_regex_exercise.py @@ -0,0 +1,61 @@ +''' +EXERCISE: Regular Expressions +''' + +# open file and store each line as one list element +with open('homicides.txt', mode='rU') as f: + data = [row for row in f] + + +''' +Create a list of ages +''' + +import re + +ages = [] +for row in data: + match = re.search(r'\d+ years? old', row) + if match: + ages.append(match.group()) + else: + ages.append('0') + +# split the string on spaces, only keep the first element, and convert to int +ages = [int(element.split()[0]) for element in ages] + +# calculate average age +sum(ages) / float(len(ages)) + +# check that 'data' and 'ages' are the same length +assert(len(data)==len(ages)) + + +''' +Create a list of ages (using match groups) +''' + +ages = [] +for row in data: + match = re.search(r'(\d+)( years? old)', row) + if match: + ages.append(int(match.group(1))) + else: + ages.append(0) + + +''' +Create a list of causes +''' + +causes = [] +for row in data: + match = re.search(r'Cause: (.+?)<', row) + if match: + causes.append(match.group(1).lower()) + else: + causes.append('unknown') + +# tally the causes +from collections import Counter +Counter(causes) diff --git a/code/20_regex_reference.py b/code/20_regex_reference.py new file mode 100644 index 0000000..886deb7 --- /dev/null +++ b/code/20_regex_reference.py @@ -0,0 +1,211 @@ +''' +REFERENCE GUIDE: Regular Expressions +''' + +''' +Rules for Searching: + +Search proceeds through string from start to end, stopping at first match +All of the pattern must be matched + +Basic Patterns: + +Ordinary characters match themselves exactly +. matches any single character except newline \n +\w matches a word character (letter, digit, underscore) +\W matches any non-word character +\b matches boundary between word and non-word +\s matches single whitespace character (space, newline, return, tab, form) +\S matches single non-whitespace character +\d matches single digit (0 through 9) +\t matches tab +\n matches newline +\r matches return +\ match a special character, such as period: \. + +Basic Python Usage: + +match = re.search(r'pattern', string_to_search) +Returns match object +If there is a match, access match using match.group() +If there is no match, match is None +Use 'r' in front of pattern to designate a raw string +''' + +import re + +s = 'my 1st string!!' + +match = re.search(r'my', s) # returns match object +if match: # checks whether match was found + print match.group() # if match was found, then print result + +re.search(r'my', s).group() # single-line version (without error handling) +re.search(r'st', s).group() # 'st' +re.search(r'sta', s).group() # error +re.search(r'\w\w\w', s).group() # '1st' +re.search(r'\W', s).group() # ' ' +re.search(r'\W\W', s).group() # '!!' +re.search(r'\s', s).group() # ' ' +re.search(r'\s\s', s).group() # error +re.search(r'..t', s).group() # '1st' +re.search(r'\s\St', s).group() # ' st' +re.search(r'\bst', s).group() # 'st' + + +''' +Repetition: + ++ 1 or more occurrences of the pattern to its left +* 0 or more occurrences of the pattern to its left +? 0 or 1 occurrence of the pattern to its left + ++ and * are 'greedy': they try to use up as much of the string as possible + +Add ? after + or * to make them 'lazy': +? or *? +''' + +s = 'sid is missing class' + +re.search(r'miss\w+', s).group() # 'missing' +re.search(r'is\w+', s).group() # 'issing' +re.search(r'is\w*', s).group() # 'is' + +s = '

my heading

' + +re.search(r'<.+>', s).group() # '

my heading

' +re.search(r'<.+?>', s).group() # '

' + + +''' +Positions: + +^ match start of a string +$ match end of a string +''' + +s = 'sid is missing class' + +re.search(r'^miss', s).group() # error +re.search(r'..ss', s).group() # 'miss' +re.search(r'..ss$', s).group() # 'lass' + + +''' +Brackets: + +[abc] match a or b or c +\w, \s, etc. work inside brackets, except period just means a literal period +[a-z] match any lowercase letter (dash indicates range unless it's last) +[abc-] match a or b or c or - +[^ab] match anything except a or b +''' + +s = 'my email is john-doe@gmail.com' + +re.search(r'\w+@\w+', s).group() # 'doe@gmail' +re.search(r'[\w.-]+@[\w.-]+', s).group() # 'john-doe@gmail.com' + + +''' +Lookarounds: + +Lookahead matches a pattern only if it is followed by another pattern +100(?= dollars) matches '100' only if it is followed by ' dollars' + +Lookbehind matches a pattern only if it is preceded by another pattern +(?<=\$)100 matches '100' only if it is preceded by '$' +''' + +s = 'Name: Cindy, 30 years old' + +re.search(r'\d+(?= years? old)', s).group() # '30' +re.search(r'(?<=Name: )\w+', s).group() # 'Cindy' + + +''' +Match Groups: + +Parentheses create logical groups inside of match text +match.group(1) corresponds to first group +match.group(2) corresponds to second group +match.group() corresponds to entire match text (as usual) +''' + +s = 'my email is john-doe@gmail.com' + +match = re.search(r'([\w.-]+)@([\w.-]+)', s) +if match: + match.group(1) # 'john-doe' + match.group(2) # 'gmail.com' + match.group() # 'john-doe@gmail.com' + + +''' +Finding All Matches: + +re.findall() finds all matches and returns them as a list of strings +list_of_strings = re.findall(r'pattern', string_to_search) + +If pattern includes parentheses, a list of tuples is returned +''' + +s = 'emails: joe@gmail.com, bob@gmail.com' + +re.findall(r'[\w.-]+@[\w.-]+', s) # ['joe@gmail.com', 'bob@gmail.com'] +re.findall(r'([\w.-]+)@([\w.-]+)', s) # [('joe', 'gmail.com'), ('bob', 'gmail.com')] + + +''' +Option Flags: + +Options flags modify the behavior of the pattern matching + +default: matching is case sensitive +re.IGNORECASE: ignore uppercase/lowercase differences ('a' matches 'a' or 'A') + +default: period matches any character except newline +re.DOTALL: allow period to match newline + +default: within a string of many lines, ^ and $ match start and end of entire string +re.MULTILINE: allow ^ and $ to match start and end of each line + +Option flag is third argument to re.search() or re.findall(): +re.search(r'pattern', string_to_search, re.IGNORECASE) +re.findall(r'pattern', string_to_search, re.IGNORECASE) +''' + +s = 'emails: nicole@ga.co, joe@gmail.com, PAT@GA.CO' + +re.findall(r'\w+@ga\.co', s) # ['nicole@ga.co'] +re.findall(r'\w+@ga\.co', s, re.IGNORECASE) # ['nicole@ga.co', 'PAT@GA.CO'] + + +''' +Substitution: + +re.sub() finds all matches and replaces them with a specified string +new_string = re.sub(r'pattern', r'replacement', string_to_search) + +Replacement string can refer to text from matching groups: +\1 refers to group(1) +\2 refers to group(2) +etc. +''' + +s = 'sid is missing class' + +re.sub(r'is ', r'was ', s) # 'sid was missing class' + +s = 'emails: joe@gmail.com, bob@gmail.com' + +re.sub(r'([\w.-]+)@([\w.-]+)', r'\1@yahoo.com', s) # 'emails: joe@yahoo.com, bob@yahoo.com' + + +''' +Useful to know, but not covered above: + +re.split() splits a string by the occurrences of a pattern +re.compile() compiles a pattern (for improved performance if it's used many times) +A|B indicates a pattern that can match A or B +''' diff --git a/code/20_regularization_nb.py b/code/20_regularization_nb.py new file mode 100644 index 0000000..57310c1 --- /dev/null +++ b/code/20_regularization_nb.py @@ -0,0 +1,422 @@ +# # Regularization + +# ## Agenda: +# +# 1. Overfitting (review) +# 2. Overfitting with linear models +# 3. Regularization of linear models +# 4. Regularized regression in scikit-learn +# 5. Regularized classification in scikit-learn +# 6. Comparing regularized linear models with unregularized linear models + +# ## Part 1: Overfitting (review) +# +# **What is overfitting?** +# +# - Building a model that matches the training data "too closely" +# - Learning from the noise in the data, rather than just the signal +# +# **How does overfitting occur?** +# +# - Evaluating a model by testing it on the same data that was used to train it +# - Creating a model that is "too complex" +# +# **What is the impact of overfitting?** +# +# - Model will do well on the training data, but won't generalize to out-of-sample data +# - Model will have low bias, but high variance + +# ### Overfitting with KNN +# +# ![Overfitting with KNN](images/iris_01nn_map.png) + +# ### Overfitting with polynomial regression +# +# ![Overfitting with polynomial regression](images/polynomial_overfitting.png) + +# ### Overfitting with decision trees +# +# ![Overfitting with decision trees](images/salary_tree_deep.png) + +# ## Part 2: Overfitting with linear models +# +# **What are the general characteristics of linear models?** +# +# - Low model complexity +# - High bias, low variance +# - Does not tend to overfit +# +# Nevertheless, **overfitting can still occur** with linear models if you allow them to have **high variance**. Here are some common causes: + +# ### Cause 1: Irrelevant features +# +# Linear models can overfit if you include "irrelevant features", meaning features that are unrelated to the response. Why? +# +# Because it will learn a coefficient for every feature you include in the model, regardless of whether that feature has the **signal** or the **noise**. +# +# This is especially a problem when **p (number of features) is close to n (number of observations)**, because that model will naturally have high variance. + +# ### Cause 2: Correlated features +# +# Linear models can overfit if the included features are highly correlated with one another. Why? +# +# From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/linear_model.html#ordinary-least-squares): +# +# > "...coefficient estimates for Ordinary Least Squares rely on the independence of the model terms. When terms are correlated and the columns of the design matrix X have an approximate linear dependence, the design matrix becomes close to singular and as a result, the least-squares estimate becomes highly sensitive to random errors in the observed response, producing a large variance." + +# ### Cause 3: Large coefficients +# +# Linear models can overfit if the coefficients (after feature standardization) are too large. Why? +# +# Because the **larger** the absolute value of the coefficient, the more **power** it has to change the predicted response, resulting in a higher variance. + +# ## Part 3: Regularization of linear models +# +# - Regularization is a method for "constraining" or "regularizing" the **size of the coefficients**, thus "shrinking" them towards zero. +# - It reduces model variance and thus **minimizes overfitting**. +# - If the model is too complex, it tends to reduce variance more than it increases bias, resulting in a model that is **more likely to generalize**. +# +# Our goal is to locate the **optimum model complexity**, and thus regularization is useful when we believe our model is too complex. + +# ![Bias-variance tradeoff](images/bias_variance.png) + +# ### How does regularization work? +# +# For a normal linear regression model, we estimate the coefficients using the least squares criterion, which **minimizes the residual sum of squares (RSS):** + +# ![Estimating coefficients](images/estimating_coefficients.png) + +# For a regularized linear regression model, we **minimize the sum of RSS and a "penalty term"** that penalizes coefficient size. +# +# **Ridge regression** (or "L2 regularization") minimizes: $$\text{RSS} + \alpha \sum_{j=1}^p \beta_j^2$$ +# +# **Lasso regression** (or "L1 regularization") minimizes: $$\text{RSS} + \alpha \sum_{j=1}^p |\beta_j|$$ +# +# - $p$ is the **number of features** +# - $\beta_j$ is a **model coefficient** +# - $\alpha$ is a **tuning parameter:** +# - A tiny $\alpha$ imposes no penalty on the coefficient size, and is equivalent to a normal linear regression model. +# - Increasing the $\alpha$ penalizes the coefficients and thus shrinks them. + +# ### Lasso and ridge path diagrams +# +# A larger alpha (towards the left of each diagram) results in more regularization: +# +# - **Lasso regression** shrinks coefficients all the way to zero, thus removing them from the model +# - **Ridge regression** shrinks coefficients toward zero, but they rarely reach zero +# +# Source code for the diagrams: [Lasso regression](http://scikit-learn.org/stable/auto_examples/linear_model/plot_lasso_lars.html) and [Ridge regression](http://scikit-learn.org/stable/auto_examples/linear_model/plot_ridge_path.html) + +# ![Lasso and Ridge Path Diagrams](images/lasso_ridge_path.png) + +# ### Advice for applying regularization +# +# **Should features be standardized?** +# +# - Yes, because otherwise, features would be penalized simply because of their scale. +# - Also, standardizing avoids penalizing the intercept, which wouldn't make intuitive sense. +# +# **How should you choose between Lasso regression and Ridge regression?** +# +# - Lasso regression is preferred if we believe many features are irrelevant or if we prefer a sparse model. +# - If model performance is your primary concern, it is best to try both. +# - ElasticNet regression is a combination of lasso regression and ridge Regression. + +# ### Visualizing regularization +# +# Below is a visualization of what happens when you apply regularization. The general idea is that you are **restricting the allowed values of your coefficients** to a certain "region". **Within that region**, you want to find the coefficients that result in the best model. + +# ![Lasso and Ridge Coefficient Plots](images/lasso_ridge_coefficients.png) + +# In this diagram: +# +# - We are fitting a linear regression model with **two features**, $x_1$ and $x_2$. +# - $\hat\beta$ represents the set of two coefficients, $\beta_1$ and $\beta_2$, which minimize the RSS for the **unregularized model**. +# - Regularization restricts the allowed positions of $\hat\beta$ to the **blue constraint region:** +# - For lasso, this region is a **diamond** because it constrains the absolute value of the coefficients. +# - For ridge, this region is a **circle** because it constrains the square of the coefficients. +# - The **size of the blue region** is determined by $\alpha$, with a smaller $\alpha$ resulting in a larger region: +# - When $\alpha$ is zero, the blue region is infinitely large, and thus the coefficient sizes are not constrained. +# - When $\alpha$ increases, the blue region gets smaller and smaller. +# +# In this case, $\hat\beta$ is **not** within the blue constraint region. Thus, we need to **move $\hat\beta$ until it intersects the blue region**, while **increasing the RSS as little as possible.** +# +# From page 222 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/): +# +# > The ellipses that are centered around $\hat\beta$ represent **regions of constant RSS**. In other words, all of the points on a given ellipse share a common value of the RSS. As the ellipses expand away from the least squares coefficient estimates, the RSS increases. Equations (6.8) and (6.9) indicate that the lasso and ridge regression coefficient estimates are given by the **first point at which an ellipse contacts the constraint region**. +# +# > Since **ridge regression** has a circular constraint with no sharp points, this intersection will not generally occur on an axis, and so the ridge regression coefficient estimates will be exclusively non-zero. However, the **lasso** constraint has corners at each of the axes, and so the ellipse will often intersect the constraint region at an axis. When this occurs, one of the coefficients will equal zero. In higher dimensions, many of the coefficient estimates may equal zero simultaneously. In Figure 6.7, the intersection occurs at $\beta_1 = 0$, and so the resulting model will only include $\beta_2$. + +# ## Part 4: Regularized regression in scikit-learn + +# - Communities and Crime dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/communities/communities.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Communities+and+Crime) +# - **Goal:** Predict the violent crime rate for a community given socioeconomic and law enforcement data + +# ### Load and prepare the crime dataset + +# read in the dataset +import pandas as pd +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/communities/communities.data' +crime = pd.read_csv(url, header=None, na_values=['?']) +crime.head() + + +# examine the response variable +crime[127].describe() + + +# remove categorical features +crime.drop([0, 1, 2, 3, 4], axis=1, inplace=True) + + +# remove rows with any missing values +crime.dropna(inplace=True) + + +# check the shape +crime.shape + + +# define X and y +X = crime.drop(127, axis=1) +y = crime[127] + + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# ### Linear regression + +# build a linear regression model +from sklearn.linear_model import LinearRegression +linreg = LinearRegression() +linreg.fit(X_train, y_train) + + +# examine the coefficients +print linreg.coef_ + + +# make predictions +y_pred = linreg.predict(X_test) + + +# calculate RMSE +from sklearn import metrics +import numpy as np +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# ### Ridge regression +# +# - [Ridge](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Ridge.html) documentation +# - **alpha:** must be positive, increase for more regularization +# - **normalize:** scales the features (without using StandardScaler) + +# alpha=0 is equivalent to linear regression +from sklearn.linear_model import Ridge +ridgereg = Ridge(alpha=0, normalize=True) +ridgereg.fit(X_train, y_train) +y_pred = ridgereg.predict(X_test) +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# try alpha=0.1 +ridgereg = Ridge(alpha=0.1, normalize=True) +ridgereg.fit(X_train, y_train) +y_pred = ridgereg.predict(X_test) +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# examine the coefficients +print ridgereg.coef_ + + +# - [RidgeCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.RidgeCV.html): ridge regression with built-in cross-validation of the alpha parameter +# - **alphas:** array of alpha values to try + +# create an array of alpha values +alpha_range = 10.**np.arange(-2, 3) +alpha_range + + +# select the best alpha with RidgeCV +from sklearn.linear_model import RidgeCV +ridgeregcv = RidgeCV(alphas=alpha_range, normalize=True, scoring='mean_squared_error') +ridgeregcv.fit(X_train, y_train) +ridgeregcv.alpha_ + + +# predict method uses the best alpha value +y_pred = ridgeregcv.predict(X_test) +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# ### Lasso regression +# +# - [Lasso](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Lasso.html) documentation +# - **alpha:** must be positive, increase for more regularization +# - **normalize:** scales the features (without using StandardScaler) + +# try alpha=0.001 and examine coefficients +from sklearn.linear_model import Lasso +lassoreg = Lasso(alpha=0.001, normalize=True) +lassoreg.fit(X_train, y_train) +print lassoreg.coef_ + + +# try alpha=0.01 and examine coefficients +lassoreg = Lasso(alpha=0.01, normalize=True) +lassoreg.fit(X_train, y_train) +print lassoreg.coef_ + + +# calculate RMSE (for alpha=0.01) +y_pred = lassoreg.predict(X_test) +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# - [LassoCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LassoCV.html): lasso regression with built-in cross-validation of the alpha parameter +# - **n_alphas:** number of alpha values (automatically chosen) to try + +# select the best alpha with LassoCV +from sklearn.linear_model import LassoCV +lassoregcv = LassoCV(n_alphas=100, normalize=True, random_state=1) +lassoregcv.fit(X_train, y_train) +lassoregcv.alpha_ + + +# examine the coefficients +print lassoregcv.coef_ + + +# predict method uses the best alpha value +y_pred = lassoregcv.predict(X_test) +print np.sqrt(metrics.mean_squared_error(y_test, y_pred)) + + +# ## Part 5: Regularized classification in scikit-learn +# +# - Wine dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Wine) +# - **Goal:** Predict the origin of wine using chemical analysis + +# ### Load and prepare the wine dataset + +# read in the dataset +url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data' +wine = pd.read_csv(url, header=None) +wine.head() + + +# examine the response variable +wine[0].value_counts() + + +# define X and y +X = wine.drop(0, axis=1) +y = wine[0] + + +# split into training and testing sets +from sklearn.cross_validation import train_test_split +X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1) + + +# ### Logistic regression (unregularized) + +# build a logistic regression model +from sklearn.linear_model import LogisticRegression +logreg = LogisticRegression(C=1e9) +logreg.fit(X_train, y_train) + + +# examine the coefficients +print logreg.coef_ + + +# generate predicted probabilities +y_pred_prob = logreg.predict_proba(X_test) +print y_pred_prob + + +# calculate log loss +print metrics.log_loss(y_test, y_pred_prob) + + +# ### Logistic regression (regularized) +# +# - [LogisticRegression](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) documentation +# - **C:** must be positive, decrease for more regularization +# - **penalty:** l1 (lasso) or l2 (ridge) + +# standardize X_train and X_test +from sklearn.preprocessing import StandardScaler +scaler = StandardScaler() +scaler.fit(X_train) +X_train_scaled = scaler.transform(X_train) +X_test_scaled = scaler.transform(X_test) + + +# try C=0.1 with L1 penalty +logreg = LogisticRegression(C=0.1, penalty='l1') +logreg.fit(X_train_scaled, y_train) +print logreg.coef_ + + +# generate predicted probabilities and calculate log loss +y_pred_prob = logreg.predict_proba(X_test_scaled) +print metrics.log_loss(y_test, y_pred_prob) + + +# try C=0.1 with L2 penalty +logreg = LogisticRegression(C=0.1, penalty='l2') +logreg.fit(X_train_scaled, y_train) +print logreg.coef_ + + +# generate predicted probabilities and calculate log loss +y_pred_prob = logreg.predict_proba(X_test_scaled) +print metrics.log_loss(y_test, y_pred_prob) + + +# - [Pipeline](http://scikit-learn.org/stable/modules/pipeline.html): chain steps together +# - [GridSearchCV](http://scikit-learn.org/stable/modules/grid_search.html): search a grid of parameters + +# pipeline of StandardScaler and LogisticRegression +from sklearn.pipeline import make_pipeline +pipe = make_pipeline(StandardScaler(), LogisticRegression()) + + +# grid search for best combination of C and penalty +from sklearn.grid_search import GridSearchCV +C_range = 10.**np.arange(-2, 3) +penalty_options = ['l1', 'l2'] +param_grid = dict(logisticregression__C=C_range, logisticregression__penalty=penalty_options) +grid = GridSearchCV(pipe, param_grid, cv=10, scoring='log_loss') +grid.fit(X, y) + + +# print all log loss scores +grid.grid_scores_ + + +# examine the best model +print grid.best_score_ +print grid.best_params_ + + +# ## Part 6: Comparing regularized linear models with unregularized linear models +# +# **Advantages of regularized linear models:** +# +# - Better performance +# - L1 regularization performs automatic feature selection +# - Useful for high-dimensional problems (p > n) +# +# **Disadvantages of regularized linear models:** +# +# - Tuning is required +# - Feature scaling is recommended +# - Less interpretable (due to feature scaling) diff --git a/data/airlines.csv b/data/airlines.csv new file mode 100644 index 0000000..b9e5b9f --- /dev/null +++ b/data/airlines.csv @@ -0,0 +1,57 @@ +airline,avail_seat_km_per_week,incidents_85_99,fatal_accidents_85_99,fatalities_85_99,incidents_00_14,fatal_accidents_00_14,fatalities_00_14 +Aer Lingus,320906734,2,0,0,0,0,0 +Aeroflot*,1197672318,76,14,128,6,1,88 +Aerolineas Argentinas,385803648,6,0,0,1,0,0 +Aeromexico*,596871813,3,1,64,5,0,0 +Air Canada,1865253802,2,0,0,2,0,0 +Air France,3004002661,14,4,79,6,2,337 +Air India*,869253552,2,1,329,4,1,158 +Air New Zealand*,710174817,3,0,0,5,1,7 +Alaska Airlines*,965346773,5,0,0,5,1,88 +Alitalia,698012498,7,2,50,4,0,0 +All Nippon Airways,1841234177,3,1,1,7,0,0 +American*,5228357340,21,5,101,17,3,416 +Austrian Airlines,358239823,1,0,0,1,0,0 +Avianca,396922563,5,3,323,0,0,0 +British Airways*,3179760952,4,0,0,6,0,0 +Cathay Pacific*,2582459303,0,0,0,2,0,0 +China Airlines,813216487,12,6,535,2,1,225 +Condor,417982610,2,1,16,0,0,0 +COPA,550491507,3,1,47,0,0,0 +Delta / Northwest*,6525658894,24,12,407,24,2,51 +Egyptair,557699891,8,3,282,4,1,14 +El Al,335448023,1,1,4,1,0,0 +Ethiopian Airlines,488560643,25,5,167,5,2,92 +Finnair,506464950,1,0,0,0,0,0 +Garuda Indonesia,613356665,10,3,260,4,2,22 +Gulf Air,301379762,1,0,0,3,1,143 +Hawaiian Airlines,493877795,0,0,0,1,0,0 +Iberia,1173203126,4,1,148,5,0,0 +Japan Airlines,1574217531,3,1,520,0,0,0 +Kenya Airways,277414794,2,0,0,2,2,283 +KLM*,1874561773,7,1,3,1,0,0 +Korean Air,1734522605,12,5,425,1,0,0 +LAN Airlines,1001965891,3,2,21,0,0,0 +Lufthansa*,3426529504,6,1,2,3,0,0 +Malaysia Airlines,1039171244,3,1,34,3,2,537 +Pakistan International,348563137,8,3,234,10,2,46 +Philippine Airlines,413007158,7,4,74,2,1,1 +Qantas*,1917428984,1,0,0,5,0,0 +Royal Air Maroc,295705339,5,3,51,3,0,0 +SAS*,682971852,5,0,0,6,1,110 +Saudi Arabian,859673901,7,2,313,11,0,0 +Singapore Airlines,2376857805,2,2,6,2,1,83 +South African,651502442,2,1,159,1,0,0 +Southwest Airlines,3276525770,1,0,0,8,0,0 +Sri Lankan / AirLanka,325582976,2,1,14,4,0,0 +SWISS*,792601299,2,1,229,3,0,0 +TACA,259373346,3,1,3,1,1,3 +TAM,1509195646,8,3,98,7,2,188 +TAP - Air Portugal,619130754,0,0,0,0,0,0 +Thai Airways,1702802250,8,4,308,2,1,1 +Turkish Airlines,1946098294,8,3,64,8,2,84 +United / Continental*,7139291291,19,8,319,14,2,109 +US Airways / America West*,2455687887,16,7,224,11,2,23 +Vietnam Airlines,625084918,7,3,171,1,0,0 +Virgin Atlantic,1005248585,1,0,0,0,0,0 +Xiamen Airlines,430462962,9,1,82,2,0,0 diff --git a/data/bank-additional.csv b/data/bank-additional.csv new file mode 100644 index 0000000..28505d5 --- /dev/null +++ b/data/bank-additional.csv @@ -0,0 +1,4120 @@ +"age";"job";"marital";"education";"default";"housing";"loan";"contact";"month";"day_of_week";"duration";"campaign";"pdays";"previous";"poutcome";"emp.var.rate";"cons.price.idx";"cons.conf.idx";"euribor3m";"nr.employed";"y" +30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";487;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +39;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";346;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +25;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"wed";227;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +38;"services";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"fri";17;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";58;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +32;"services";"single";"university.degree";"no";"no";"no";"cellular";"sep";"thu";128;3;999;2;"failure";-1.1;94.199;-37.5;0.884;4963.6;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"mon";290;4;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +41;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"mon";44;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"services";"divorced";"professional.course";"no";"no";"no";"cellular";"nov";"tue";68;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +35;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";170;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +25;"services";"single";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"thu";301;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +36;"self-employed";"single";"basic.4y";"no";"no";"no";"cellular";"jul";"thu";148;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +36;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";97;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +47;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jun";"thu";211;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +29;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";553;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +27;"services";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";698;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +44;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"jul";"wed";191;6;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +46;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"jul";"mon";59;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"entrepreneur";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"mon";38;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +50;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"jul";"tue";849;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes" +55;"services";"married";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"tue";326;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"technician";"divorced";"high.school";"no";"no";"no";"cellular";"mar";"mon";222;1;12;2;"success";-1.8;93.369;-34.8;0.639;5008.7;"yes" +29;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";626;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +40;"management";"married";"high.school";"no";"no";"yes";"cellular";"aug";"wed";119;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +44;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"fri";388;7;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +38;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";479;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +36;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";446;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"may";"mon";68;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +47;"admin.";"single";"unknown";"unknown";"no";"no";"telephone";"may";"thu";127;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";109;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +38;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"mar";"tue";113;1;999;1;"failure";-1.8;92.843;-50;1.687;5099.1;"no" +33;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";393;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +51;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jun";"fri";151;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +30;"blue-collar";"single";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"tue";256;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +48;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";42;7;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +28;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"wed";525;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"wed";57;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +46;"management";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"wed";499;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +31;"technician";"single";"unknown";"no";"yes";"no";"cellular";"may";"wed";84;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +20;"student";"single";"unknown";"no";"no";"no";"cellular";"oct";"mon";137;3;999;3;"failure";-1.1;94.601;-49.5;0.977;4963.6;"no" +35;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"tue";31;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +38;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"telephone";"jun";"fri";430;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +76;"retired";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";126;1;999;1;"failure";-1.7;94.027;-38.3;0.899;4991.6;"no" +45;"entrepreneur";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";211;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"housemaid";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"fri";340;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +39;"management";"single";"university.degree";"unknown";"no";"no";"cellular";"may";"thu";412;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +32;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"nov";"thu";132;1;999;0;"nonexistent";-0.1;93.2;-42;4.592;5195.8;"no" +29;"admin.";"single";"basic.9y";"no";"no";"no";"cellular";"may";"mon";79;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +44;"services";"married";"professional.course";"no";"no";"no";"cellular";"aug";"mon";341;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +32;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"fri";157;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +56;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";252;1;999;2;"failure";-2.9;92.963;-40.8;1.26;5076.2;"no" +33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";263;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +39;"management";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";215;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +24;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"sep";"tue";89;2;3;1;"success";-3.4;92.379;-29.8;0.77;5017.5;"yes" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";143;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +58;"entrepreneur";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"thu";40;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";10;27;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";113;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +27;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";191;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +60;"admin.";"divorced";"professional.course";"no";"yes";"no";"cellular";"sep";"wed";481;1;999;1;"failure";-1.1;94.199;-37.5;0.886;4963.6;"yes" +55;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"oct";"mon";233;1;999;2;"failure";-3.4;92.431;-26.9;0.739;5017.5;"no" +37;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";204;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +52;"admin.";"married";"unknown";"no";"yes";"no";"telephone";"apr";"wed";403;1;6;1;"success";-1.8;93.749;-34.6;0.654;5008.7;"yes" +46;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"mon";180;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"blue-collar";"divorced";"basic.6y";"no";"yes";"no";"cellular";"may";"wed";16;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";447;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +49;"technician";"divorced";"unknown";"no";"yes";"yes";"cellular";"oct";"thu";81;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.754;5017.5;"no" +29;"services";"divorced";"high.school";"no";"no";"yes";"telephone";"jun";"mon";361;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"mon";1091;2;5;1;"success";-0.1;93.2;-42;4.191;5195.8;"yes" +37;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";395;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +39;"technician";"single";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";432;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"yes" +51;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jul";"mon";596;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +28;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";59;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +34;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";77;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +31;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";768;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";96;5;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";357;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +38;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"thu";459;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +33;"unemployed";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";11;6;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +32;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"tue";264;12;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +54;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"apr";"mon";698;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +41;"admin.";"divorced";"high.school";"no";"yes";"no";"telephone";"jun";"tue";204;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +59;"services";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"thu";93;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +57;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";374;1;2;1;"success";-1.8;93.075;-47.1;1.365;5099.1;"no" +38;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";252;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +46;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";158;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"unemployed";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"tue";95;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +47;"services";"single";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"thu";835;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes" +45;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";505;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"yes" +36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jul";"wed";16;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +40;"unemployed";"single";"high.school";"no";"yes";"no";"cellular";"jul";"mon";300;5;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +38;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";180;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +44;"blue-collar";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"tue";390;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +25;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";274;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"blue-collar";"single";"basic.6y";"no";"yes";"no";"telephone";"jul";"tue";135;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +43;"management";"married";"professional.course";"no";"no";"no";"cellular";"nov";"tue";257;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +58;"retired";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"mon";268;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +31;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";157;6;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";477;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +52;"admin.";"married";"unknown";"no";"no";"no";"cellular";"aug";"tue";91;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +37;"management";"married";"university.degree";"unknown";"no";"yes";"cellular";"apr";"fri";76;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +58;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"tue";103;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +37;"services";"married";"high.school";"no";"yes";"yes";"cellular";"may";"thu";436;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +38;"admin.";"single";"unknown";"no";"yes";"no";"cellular";"may";"fri";191;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +33;"services";"single";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";483;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +45;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"fri";250;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +44;"entrepreneur";"married";"professional.course";"no";"no";"no";"telephone";"may";"mon";259;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jul";"thu";389;2;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"tue";7;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.702;4991.6;"no" +47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";123;1;999;0;"nonexistent";-2.9;92.469;-33.6;1.029;5076.2;"no" +59;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";92;1;999;0;"nonexistent";-2.9;92.469;-33.6;1.085;5076.2;"no" +51;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"aug";"thu";297;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +31;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";406;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +56;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"wed";104;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";135;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +41;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";854;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"yes" +41;"management";"divorced";"basic.6y";"no";"yes";"no";"cellular";"nov";"thu";147;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +53;"services";"married";"high.school";"unknown";"no";"no";"telephone";"may";"thu";203;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +35;"blue-collar";"married";"high.school";"no";"no";"yes";"cellular";"jul";"mon";149;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +58;"retired";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"wed";144;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +25;"self-employed";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"wed";394;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +35;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";523;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +28;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";73;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +55;"blue-collar";"married";"professional.course";"no";"yes";"yes";"cellular";"may";"fri";197;3;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +54;"entrepreneur";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"thu";108;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +45;"technician";"divorced";"basic.9y";"unknown";"no";"no";"cellular";"jul";"wed";80;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";114;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +50;"admin.";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"thu";122;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +75;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"apr";"tue";109;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"yes" +33;"self-employed";"divorced";"unknown";"no";"no";"no";"telephone";"may";"wed";1161;4;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +29;"management";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"wed";181;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +45;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";239;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +38;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"apr";"mon";360;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.392;5099.1;"yes" +24;"services";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";314;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +41;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";984;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +58;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"tue";663;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes" +34;"admin.";"married";"university.degree";"no";"no";"yes";"telephone";"may";"wed";157;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";141;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.05;4963.6;"no" +37;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";374;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"telephone";"jun";"wed";706;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes" +54;"technician";"divorced";"professional.course";"no";"yes";"yes";"cellular";"jul";"tue";797;14;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";250;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +42;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";311;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";63;2;3;1;"success";-2.9;92.201;-31.4;0.851;5076.2;"yes" +33;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"fri";111;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +41;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";148;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"services";"married";"high.school";"no";"no";"yes";"cellular";"nov";"thu";49;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +40;"technician";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"thu";171;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +53;"unknown";"married";"basic.9y";"no";"no";"yes";"cellular";"nov";"wed";242;1;999;1;"failure";-3.4;92.649;-30.1;0.716;5017.5;"no" +40;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";257;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +82;"housemaid";"married";"basic.4y";"no";"no";"no";"telephone";"sep";"tue";279;3;3;2;"success";-1.1;94.199;-37.5;0.877;4963.6;"yes" +28;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"mon";113;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +30;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"wed";246;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +31;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";309;1;6;3;"success";-1.7;94.215;-40.3;0.835;4991.6;"yes" +32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";168;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +54;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"tue";153;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +31;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";152;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +50;"services";"married";"unknown";"no";"yes";"no";"cellular";"aug";"thu";90;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +47;"technician";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";117;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +31;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"may";"wed";149;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +32;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"nov";"thu";640;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +46;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"nov";"mon";199;2;999;2;"failure";-1.1;94.767;-50.8;1.048;4963.6;"no" +47;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";1114;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"admin.";"single";"high.school";"no";"no";"no";"cellular";"nov";"mon";74;2;999;2;"failure";-1.1;94.767;-50.8;1.048;4963.6;"no" +52;"services";"divorced";"high.school";"unknown";"no";"no";"cellular";"nov";"mon";190;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +45;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"oct";"fri";738;3;6;1;"success";-1.1;94.601;-49.5;1.029;4963.6;"yes" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";374;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +71;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"aug";"thu";224;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"no" +49;"services";"married";"high.school";"no";"yes";"no";"telephone";"may";"fri";344;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +46;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"jun";"wed";148;10;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +46;"blue-collar";"married";"professional.course";"no";"no";"no";"cellular";"nov";"fri";383;1;999;0;"nonexistent";-1.1;94.767;-50.8;1.028;4963.6;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";35;6;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +57;"services";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"mon";153;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"services";"single";"high.school";"unknown";"unknown";"unknown";"cellular";"may";"mon";772;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +44;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";124;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +47;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";345;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +40;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";951;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +57;"retired";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";188;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"admin.";"single";"unknown";"no";"no";"no";"cellular";"mar";"tue";128;1;3;1;"success";-1.8;93.369;-34.8;0.637;5008.7;"yes" +52;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"fri";809;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes" +34;"management";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";192;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +42;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";154;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"technician";"married";"unknown";"no";"yes";"no";"telephone";"jun";"fri";17;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +45;"management";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";100;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +56;"retired";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";317;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +41;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";93;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +44;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";111;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +50;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"mon";293;3;3;1;"success";-1.8;92.893;-46.2;1.354;5099.1;"yes" +54;"self-employed";"married";"high.school";"no";"no";"no";"cellular";"aug";"tue";119;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +51;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"aug";"fri";393;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"wed";30;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +42;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"fri";38;8;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"mon";442;11;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +47;"services";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";187;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"apr";"fri";113;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +58;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";64;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +50;"blue-collar";"divorced";"high.school";"no";"yes";"yes";"cellular";"jul";"mon";629;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +41;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";92;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";147;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +32;"student";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";151;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +21;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"tue";259;1;999;1;"failure";-2.9;92.201;-31.4;0.884;5076.2;"no" +46;"admin.";"divorced";"basic.9y";"unknown";"no";"no";"telephone";"may";"wed";423;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +42;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";888;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +55;"services";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"wed";76;13;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +29;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"nov";"mon";207;1;6;1;"success";-1.1;94.767;-50.8;1.05;4963.6;"no" +30;"blue-collar";"single";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"wed";100;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +53;"management";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"wed";63;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";265;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +46;"services";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";273;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +30;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"wed";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";261;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +42;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"mon";136;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";711;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";88;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +28;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"tue";72;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +24;"services";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";113;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +43;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"apr";"fri";307;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";39;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +55;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"nov";"tue";63;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +51;"retired";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"fri";64;1;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +22;"student";"single";"high.school";"no";"no";"yes";"cellular";"jul";"fri";154;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +32;"entrepreneur";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"thu";126;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +43;"admin.";"married";"professional.course";"unknown";"no";"no";"cellular";"jul";"thu";127;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +39;"management";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"mon";156;5;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +52;"blue-collar";"divorced";"unknown";"no";"no";"no";"cellular";"jul";"tue";111;8;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";202;3;999;1;"failure";-1.8;92.893;-46.2;1.244;5099.1;"no" +59;"retired";"married";"basic.4y";"no";"no";"no";"telephone";"apr";"tue";353;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"no" +31;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";159;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +76;"retired";"single";"basic.4y";"no";"no";"no";"cellular";"nov";"mon";347;4;6;1;"success";-3.4;92.649;-30.1;0.715;5017.5;"yes" +44;"unknown";"single";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";76;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +30;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +32;"services";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"fri";174;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"unemployed";"married";"unknown";"no";"no";"no";"telephone";"jun";"fri";280;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";686;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes" +59;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"fri";94;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +28;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";225;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +33;"blue-collar";"single";"basic.6y";"no";"yes";"no";"cellular";"may";"fri";474;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +53;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"thu";76;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +41;"services";"married";"high.school";"no";"no";"no";"cellular";"mar";"wed";377;6;999;0;"nonexistent";-1.8;92.843;-50;1.778;5099.1;"yes" +55;"unknown";"married";"basic.4y";"no";"no";"yes";"cellular";"jul";"thu";185;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";121;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +35;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";126;4;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +31;"services";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";160;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +53;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";313;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +35;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"thu";141;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +45;"blue-collar";"divorced";"basic.6y";"unknown";"yes";"no";"cellular";"may";"thu";219;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +34;"housemaid";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";267;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +42;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"apr";"mon";406;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +36;"self-employed";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"thu";151;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +44;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";228;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +50;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";73;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"fri";355;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.773;5017.5;"no" +27;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";102;9;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +40;"management";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";97;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +25;"technician";"single";"university.degree";"no";"yes";"yes";"telephone";"jun";"mon";35;6;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +29;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";116;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +44;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";83;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +57;"blue-collar";"married";"unknown";"unknown";"yes";"no";"telephone";"may";"tue";473;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +30;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";605;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +37;"self-employed";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";585;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +57;"technician";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";94;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";255;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +54;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"nov";"tue";1868;2;10;1;"success";-1.1;94.767;-50.8;1.035;4963.6;"yes" +58;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"mon";846;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"yes" +29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";158;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +60;"services";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"tue";73;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +27;"unemployed";"single";"university.degree";"no";"no";"no";"telephone";"jun";"wed";404;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +30;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";383;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +42;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";51;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +48;"housemaid";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";87;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";167;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +46;"blue-collar";"married";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"mon";440;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +57;"retired";"unknown";"basic.4y";"no";"no";"no";"telephone";"may";"tue";673;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"services";"married";"high.school";"no";"no";"no";"telephone";"jun";"mon";151;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +28;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"apr";"thu";48;4;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +34;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"tue";309;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +42;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";236;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";288;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +27;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"aug";"wed";111;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.9;4991.6;"no" +23;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";87;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"tue";193;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +59;"management";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"tue";318;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +31;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";209;1;999;2;"failure";-1.7;94.027;-38.3;0.898;4991.6;"no" +43;"self-employed";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";173;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +52;"technician";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";503;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +26;"housemaid";"single";"high.school";"unknown";"yes";"yes";"telephone";"jul";"thu";127;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +24;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"fri";101;6;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +35;"blue-collar";"single";"basic.6y";"no";"no";"no";"cellular";"nov";"thu";370;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +59;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jun";"thu";1207;4;999;1;"failure";-1.7;94.055;-39.8;0.742;4991.6;"yes" +28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"thu";262;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +37;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"wed";211;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"apr";"fri";609;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +26;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";806;3;6;2;"success";-1.7;94.215;-40.3;0.861;4991.6;"yes" +40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";77;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +56;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"tue";335;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";459;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"wed";266;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +28;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";225;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +48;"technician";"single";"unknown";"unknown";"no";"no";"telephone";"may";"thu";257;7;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +28;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";434;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";191;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +56;"entrepreneur";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"thu";82;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +57;"retired";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"tue";388;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +24;"admin.";"single";"high.school";"unknown";"yes";"no";"telephone";"jul";"thu";15;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +39;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";17;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +40;"blue-collar";"married";"unknown";"no";"yes";"yes";"telephone";"may";"mon";155;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"blue-collar";"divorced";"unknown";"unknown";"yes";"no";"telephone";"jun";"thu";339;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +25;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"wed";188;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";951;3;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes" +48;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";288;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";206;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +48;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"fri";154;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"technician";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"wed";72;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +41;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"tue";293;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"retired";"divorced";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"tue";141;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";215;1;999;0;"nonexistent";-1.8;93.369;-34.8;0.639;5008.7;"yes" +28;"blue-collar";"single";"high.school";"no";"yes";"no";"telephone";"jun";"mon";102;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +30;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";178;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";461;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +33;"entrepreneur";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";82;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";204;1;11;1;"success";-1.8;92.893;-46.2;1.281;5099.1;"no" +46;"housemaid";"divorced";"basic.6y";"no";"yes";"no";"telephone";"jun";"tue";143;8;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +38;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";50;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +38;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";81;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +33;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";233;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +25;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";56;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"may";"fri";104;10;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +60;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"jul";"tue";55;15;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +57;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";126;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";142;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +54;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";9;5;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +25;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"tue";247;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +41;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";130;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";336;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +39;"blue-collar";"divorced";"basic.6y";"unknown";"no";"no";"cellular";"may";"wed";101;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +55;"entrepreneur";"divorced";"university.degree";"unknown";"no";"no";"cellular";"may";"fri";56;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +40;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";160;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"unemployed";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";424;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +81;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";617;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"yes" +43;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"may";"mon";143;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +34;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jun";"wed";238;1;6;2;"success";-1.7;94.055;-39.8;0.704;4991.6;"yes" +42;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";188;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +30;"services";"married";"basic.6y";"no";"no";"no";"cellular";"nov";"tue";154;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +24;"services";"single";"basic.9y";"unknown";"no";"yes";"telephone";"jun";"mon";222;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +51;"unknown";"married";"unknown";"unknown";"yes";"no";"cellular";"aug";"fri";10;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +42;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";632;5;10;1;"success";-1.8;92.893;-46.2;1.344;5099.1;"no" +51;"self-employed";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"wed";91;7;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +38;"blue-collar";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";90;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"aug";"mon";187;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +51;"admin.";"divorced";"university.degree";"unknown";"no";"no";"telephone";"aug";"fri";86;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +44;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"fri";165;6;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +52;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"fri";102;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +49;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";212;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";57;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +52;"unknown";"married";"basic.6y";"no";"no";"no";"telephone";"may";"fri";54;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +32;"entrepreneur";"married";"university.degree";"no";"no";"no";"cellular";"nov";"thu";73;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +27;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";184;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +44;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"tue";173;8;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";6;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +30;"services";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";70;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";96;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +36;"blue-collar";"married";"professional.course";"unknown";"yes";"yes";"telephone";"jun";"tue";102;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +49;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"jul";"wed";98;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +48;"services";"single";"basic.4y";"unknown";"yes";"yes";"cellular";"may";"thu";106;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +48;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";336;8;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"yes" +42;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";456;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";293;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +52;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"thu";118;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +23;"management";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";314;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"wed";167;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +43;"admin.";"divorced";"university.degree";"unknown";"no";"no";"cellular";"aug";"tue";111;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +31;"services";"divorced";"high.school";"unknown";"yes";"no";"cellular";"may";"thu";236;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +49;"unemployed";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"wed";155;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";80;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +47;"management";"divorced";"basic.4y";"no";"no";"no";"telephone";"may";"fri";241;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +31;"technician";"single";"professional.course";"no";"unknown";"unknown";"cellular";"aug";"mon";202;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +46;"entrepreneur";"married";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";88;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +54;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"tue";439;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +35;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";322;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +37;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"thu";51;10;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +44;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";147;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +30;"unemployed";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";417;1;3;1;"success";-1.8;92.893;-46.2;1.354;5099.1;"yes" +33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"tue";498;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +57;"services";"divorced";"unknown";"no";"no";"no";"cellular";"may";"fri";405;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +39;"admin.";"single";"unknown";"no";"no";"yes";"telephone";"may";"fri";219;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"unemployed";"married";"basic.4y";"no";"no";"no";"cellular";"may";"wed";117;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +32;"services";"married";"high.school";"no";"unknown";"unknown";"telephone";"may";"mon";72;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";68;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +35;"admin.";"divorced";"high.school";"no";"yes";"yes";"telephone";"may";"mon";82;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +47;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";99;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +37;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";252;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +35;"technician";"single";"university.degree";"unknown";"no";"no";"cellular";"apr";"mon";712;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +37;"self-employed";"married";"basic.9y";"no";"yes";"yes";"cellular";"jul";"thu";171;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"wed";112;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +50;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"thu";84;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";135;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"tue";132;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +37;"admin.";"single";"high.school";"no";"no";"yes";"cellular";"jul";"tue";223;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +45;"self-employed";"divorced";"university.degree";"no";"no";"yes";"cellular";"may";"fri";133;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"fri";258;2;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +51;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"wed";345;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +49;"self-employed";"single";"basic.9y";"no";"no";"no";"telephone";"may";"mon";58;10;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +31;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";958;5;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +40;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";250;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"aug";"thu";898;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +58;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"thu";185;1;2;1;"success";-1.8;93.075;-47.1;1.365;5099.1;"no" +49;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";282;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +39;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"may";"fri";135;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +48;"technician";"married";"basic.6y";"no";"no";"yes";"telephone";"may";"tue";175;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"entrepreneur";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"thu";235;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +54;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"aug";"wed";99;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"blue-collar";"married";"unknown";"unknown";"no";"yes";"telephone";"may";"wed";181;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +51;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"tue";132;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +36;"admin.";"single";"university.degree";"unknown";"no";"no";"telephone";"may";"wed";117;4;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"tue";372;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +44;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";126;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"may";"wed";69;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +30;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";183;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +41;"technician";"divorced";"basic.4y";"no";"yes";"no";"telephone";"may";"tue";270;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +27;"management";"single";"university.degree";"no";"yes";"no";"telephone";"may";"tue";134;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +45;"blue-collar";"married";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";449;2;5;3;"success";-1.1;94.767;-50.8;1.05;4963.6;"yes" +26;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"fri";160;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +36;"technician";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"tue";155;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"student";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";115;1;999;1;"failure";-2.9;92.469;-33.6;1.029;5076.2;"no" +46;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";205;6;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +61;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"may";"fri";403;1;3;2;"success";-1.8;93.876;-40;0.695;5008.7;"yes" +50;"admin.";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"fri";145;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"tue";82;9;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +55;"admin.";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"fri";548;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +54;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"thu";109;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +40;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";207;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"may";"wed";173;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +58;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"jul";"wed";175;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";379;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";105;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +45;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";544;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";401;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +42;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";84;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"may";"tue";128;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +24;"student";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";86;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +49;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";549;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +55;"unemployed";"married";"basic.4y";"no";"yes";"no";"telephone";"sep";"tue";6;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +49;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";183;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +48;"blue-collar";"married";"basic.4y";"no";"no";"yes";"telephone";"jun";"tue";291;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +49;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";151;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +40;"blue-collar";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";98;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";301;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +32;"admin.";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";16;11;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +67;"housemaid";"divorced";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";655;2;5;5;"success";-1.1;94.767;-50.8;1.039;4963.6;"yes" +41;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"fri";170;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +73;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"mar";"fri";179;1;999;0;"nonexistent";-1.8;92.843;-50;1.531;5099.1;"yes" +32;"management";"single";"basic.4y";"no";"no";"no";"telephone";"may";"mon";73;7;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +33;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";113;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +36;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";86;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +40;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";180;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +25;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"thu";212;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +60;"entrepreneur";"married";"unknown";"no";"no";"no";"cellular";"aug";"thu";130;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +45;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";391;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +33;"technician";"married";"university.degree";"no";"no";"no";"telephone";"nov";"wed";91;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";280;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +48;"self-employed";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"thu";750;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +42;"services";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";257;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +40;"management";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";454;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +30;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jun";"fri";171;1;7;1;"success";-1.7;94.055;-39.8;0.748;4991.6;"no" +41;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";38;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +36;"housemaid";"married";"basic.4y";"no";"unknown";"unknown";"cellular";"aug";"tue";23;14;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"management";"divorced";"basic.6y";"no";"no";"no";"cellular";"nov";"thu";268;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +60;"unknown";"married";"university.degree";"no";"no";"yes";"telephone";"may";"thu";112;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +32;"services";"single";"high.school";"no";"unknown";"unknown";"cellular";"may";"wed";363;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +44;"self-employed";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";775;5;999;1;"failure";-1.8;92.893;-46.2;1.354;5099.1;"yes" +25;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";164;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +30;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";988;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +25;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";109;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +31;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";132;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +44;"blue-collar";"married";"basic.4y";"no";"unknown";"unknown";"telephone";"jun";"thu";471;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";259;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +47;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";42;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +18;"student";"single";"unknown";"no";"no";"no";"cellular";"sep";"thu";385;1;3;1;"success";-3.4;92.379;-29.8;0.809;5017.5;"yes" +25;"admin.";"married";"high.school";"no";"no";"yes";"telephone";"may";"tue";125;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +29;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";886;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"yes" +53;"unknown";"married";"unknown";"unknown";"no";"no";"cellular";"aug";"mon";51;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"self-employed";"married";"basic.9y";"unknown";"no";"no";"cellular";"aug";"thu";406;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +45;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";185;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +31;"technician";"single";"university.degree";"no";"no";"no";"telephone";"oct";"thu";154;1;999;0;"nonexistent";-0.1;93.798;-40.4;4.794;5195.8;"yes" +54;"admin.";"married";"unknown";"unknown";"no";"no";"telephone";"jun";"fri";34;16;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +51;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"tue";334;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +44;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";955;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"yes" +24;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"fri";545;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +40;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";124;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +39;"services";"married";"basic.4y";"no";"no";"no";"telephone";"may";"thu";126;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +44;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"may";"tue";659;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +44;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";230;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no" +52;"entrepreneur";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";699;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +51;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";809;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes" +38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";1276;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"yes" +34;"technician";"married";"professional.course";"no";"no";"no";"cellular";"may";"fri";83;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +23;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";251;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";25;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +26;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";389;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +24;"unknown";"single";"university.degree";"no";"yes";"yes";"cellular";"jun";"tue";696;1;999;2;"failure";-2.9;92.963;-40.8;1.262;5076.2;"no" +34;"admin.";"married";"basic.6y";"no";"yes";"yes";"cellular";"nov";"wed";102;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +59;"unknown";"married";"unknown";"unknown";"no";"no";"telephone";"jun";"thu";701;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"yes" +32;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"tue";342;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +27;"self-employed";"single";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";161;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +39;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"thu";223;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +29;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";34;8;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +42;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";275;8;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +60;"management";"married";"unknown";"unknown";"no";"no";"cellular";"jul";"mon";230;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +30;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";81;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";172;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +49;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"aug";"thu";139;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";232;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +41;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";239;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +56;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"fri";143;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +58;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";127;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +52;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"apr";"thu";291;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +32;"admin.";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";173;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +51;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";131;2;999;4;"failure";-1.8;93.876;-40;0.697;5008.7;"no" +31;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";73;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";36;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +60;"retired";"married";"unknown";"no";"yes";"no";"cellular";"aug";"mon";600;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";334;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +30;"services";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"thu";177;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +51;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jun";"fri";263;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +26;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";159;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +39;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";217;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +38;"entrepreneur";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"tue";477;11;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";216;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +43;"unknown";"married";"high.school";"unknown";"yes";"yes";"telephone";"may";"mon";329;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +60;"entrepreneur";"married";"basic.4y";"no";"unknown";"unknown";"telephone";"may";"thu";101;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"tue";151;7;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";144;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +64;"unemployed";"divorced";"basic.9y";"no";"yes";"no";"cellular";"oct";"wed";604;2;999;0;"nonexistent";-1.1;94.601;-49.5;0.959;4963.6;"no" +35;"blue-collar";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"wed";634;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +40;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"tue";107;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +46;"blue-collar";"single";"basic.6y";"unknown";"no";"yes";"cellular";"may";"thu";245;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"tue";690;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes" +74;"retired";"married";"university.degree";"no";"no";"no";"telephone";"oct";"mon";160;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.977;4963.6;"no" +40;"management";"married";"high.school";"no";"yes";"no";"cellular";"aug";"wed";286;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +46;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"mon";93;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"entrepreneur";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";72;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"technician";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";103;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +44;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";201;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +47;"blue-collar";"married";"high.school";"no";"unknown";"unknown";"cellular";"aug";"tue";153;10;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +50;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";74;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +29;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";245;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +51;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";314;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +52;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"fri";136;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +27;"admin.";"single";"high.school";"no";"no";"no";"telephone";"apr";"thu";198;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +44;"self-employed";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"tue";249;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +34;"unemployed";"married";"basic.9y";"no";"no";"no";"cellular";"may";"mon";123;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +23;"student";"single";"high.school";"no";"yes";"no";"cellular";"oct";"mon";226;2;999;1;"failure";-1.1;94.601;-49.5;1.032;4963.6;"yes" +30;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"tue";136;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +26;"student";"single";"high.school";"no";"yes";"no";"cellular";"may";"mon";113;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +35;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";262;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +24;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";141;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +38;"unemployed";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";1058;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes" +36;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";263;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +24;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";299;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +31;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";181;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +41;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";206;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +39;"unemployed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";168;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +36;"technician";"divorced";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";90;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +47;"retired";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"wed";441;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +33;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"thu";285;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"yes" +34;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";135;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +42;"technician";"divorced";"professional.course";"unknown";"no";"yes";"telephone";"may";"fri";286;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +51;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"nov";"fri";11;4;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +34;"blue-collar";"single";"basic.6y";"no";"yes";"yes";"cellular";"jul";"wed";195;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";275;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +37;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";292;1;6;1;"success";-1.7;94.215;-40.3;0.896;4991.6;"yes" +33;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"jul";"mon";9;1;999;0;"nonexistent";-1.7;94.215;-40.3;0.827;4991.6;"no" +36;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"mon";73;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +43;"services";"married";"high.school";"no";"no";"no";"cellular";"nov";"thu";81;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +47;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"jul";"mon";298;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";224;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +42;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";1013;3;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";248;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +42;"blue-collar";"divorced";"basic.9y";"no";"unknown";"unknown";"telephone";"may";"mon";100;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +31;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"apr";"thu";285;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.483;5099.1;"no" +41;"admin.";"divorced";"basic.6y";"no";"no";"no";"telephone";"jul";"mon";141;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +31;"technician";"married";"basic.9y";"no";"no";"yes";"cellular";"jul";"thu";1319;5;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"yes" +36;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jun";"fri";146;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes" +46;"services";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"wed";227;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"mon";49;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +30;"technician";"married";"high.school";"no";"yes";"no";"telephone";"may";"thu";212;6;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +35;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"may";"wed";294;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +47;"management";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";190;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"management";"single";"high.school";"no";"yes";"yes";"cellular";"may";"fri";130;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +77;"management";"married";"unknown";"no";"yes";"no";"cellular";"aug";"fri";160;1;3;6;"success";-1.7;94.027;-38.3;0.905;4991.6;"yes" +39;"technician";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"wed";575;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +37;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jul";"tue";49;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"mon";237;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"thu";388;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +57;"self-employed";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";83;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"telephone";"jun";"thu";155;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";115;6;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +39;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"apr";"mon";861;6;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +34;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"mon";95;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"admin.";"single";"high.school";"no";"no";"yes";"telephone";"jun";"fri";180;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +35;"student";"single";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";618;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes" +53;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";59;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +30;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"jul";"wed";31;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"student";"single";"unknown";"unknown";"yes";"no";"telephone";"may";"mon";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";271;2;999;1;"failure";-1.8;93.075;-47.1;1.466;5099.1;"no" +50;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"thu";23;14;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +56;"retired";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";167;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +58;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"tue";145;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +54;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";322;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +40;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"mon";130;1;7;2;"failure";-3.4;92.649;-30.1;0.714;5017.5;"yes" +31;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"fri";103;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +41;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";181;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +31;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";361;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +39;"services";"married";"high.school";"no";"yes";"yes";"cellular";"may";"tue";200;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";166;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"unknown";"single";"unknown";"unknown";"yes";"no";"telephone";"jun";"fri";94;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +50;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";367;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +49;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";187;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";197;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +35;"services";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"thu";218;2;6;1;"success";-1.8;93.749;-34.6;0.644;5008.7;"yes" +52;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";412;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +33;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";166;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +32;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";299;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";584;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +54;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";204;1;999;1;"failure";-2.9;92.201;-31.4;0.849;5076.2;"yes" +27;"services";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";509;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +52;"management";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"tue";280;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";131;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.881;5076.2;"no" +36;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";27;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +27;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"may";"thu";584;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +39;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";78;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"entrepreneur";"married";"university.degree";"no";"no";"yes";"cellular";"apr";"fri";77;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";180;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +42;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"wed";96;1;999;1;"failure";-2.9;92.201;-31.4;0.879;5076.2;"no" +42;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"mon";651;2;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"yes" +37;"management";"single";"university.degree";"no";"yes";"no";"telephone";"may";"fri";415;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"fri";85;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +27;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";130;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +49;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";1149;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"yes" +35;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";235;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +22;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jul";"mon";110;7;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +45;"housemaid";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"thu";105;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +29;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"jul";"wed";42;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +59;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"aug";"wed";240;3;999;1;"failure";-2.9;92.201;-31.4;0.834;5076.2;"no" +55;"retired";"divorced";"basic.6y";"unknown";"no";"no";"telephone";"jun";"mon";228;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +32;"blue-collar";"married";"unknown";"no";"no";"no";"cellular";"nov";"thu";366;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +49;"blue-collar";"divorced";"unknown";"unknown";"yes";"no";"cellular";"jul";"wed";284;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +43;"admin.";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"thu";193;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +47;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";181;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +41;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";102;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +50;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"mon";192;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";148;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +32;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"wed";184;9;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +47;"retired";"single";"basic.6y";"unknown";"yes";"yes";"cellular";"jul";"mon";431;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +54;"admin.";"married";"university.degree";"unknown";"no";"yes";"telephone";"may";"thu";82;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +29;"technician";"married";"university.degree";"no";"no";"no";"cellular";"apr";"mon";135;3;999;1;"failure";-1.8;93.749;-34.6;0.645;5008.7;"no" +33;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"apr";"thu";157;6;999;0;"nonexistent";-1.8;93.749;-34.6;0.659;5008.7;"no" +31;"student";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";608;3;6;2;"success";-1.7;94.215;-40.3;0.885;4991.6;"yes" +27;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";339;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +25;"student";"single";"high.school";"no";"no";"no";"cellular";"nov";"thu";244;1;999;0;"nonexistent";-1.1;94.767;-50.8;1.041;4963.6;"yes" +34;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";686;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"yes" +35;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";165;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"services";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";211;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +34;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";455;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"yes" +33;"blue-collar";"single";"basic.4y";"no";"no";"yes";"cellular";"may";"tue";807;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +54;"self-employed";"married";"high.school";"no";"yes";"no";"cellular";"aug";"thu";204;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";175;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +40;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"mon";258;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +37;"technician";"single";"high.school";"no";"yes";"no";"cellular";"apr";"thu";44;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +34;"housemaid";"divorced";"university.degree";"no";"yes";"yes";"cellular";"apr";"fri";73;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +25;"unemployed";"married";"high.school";"unknown";"unknown";"unknown";"cellular";"jul";"fri";147;10;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +59;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";17;18;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +25;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"thu";420;1;1;1;"success";-3.4;92.379;-29.8;0.809;5017.5;"no" +58;"unemployed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";344;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.041;4963.6;"yes" +42;"blue-collar";"single";"basic.4y";"no";"unknown";"unknown";"telephone";"jul";"fri";385;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";182;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +50;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"fri";80;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +39;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"thu";393;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +30;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"mon";638;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes" +33;"management";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"wed";641;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +33;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";21;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +41;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";446;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +36;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";170;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +44;"entrepreneur";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";96;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +57;"retired";"married";"basic.4y";"no";"yes";"yes";"telephone";"apr";"tue";1348;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes" +40;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"tue";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +42;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"fri";148;9;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +41;"self-employed";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"wed";23;17;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";324;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"yes" +33;"services";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"thu";331;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +32;"technician";"single";"high.school";"no";"no";"no";"telephone";"jul";"wed";40;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +45;"unemployed";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";550;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jun";"thu";442;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +35;"technician";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"wed";178;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"wed";110;2;18;2;"failure";-1.1;94.199;-37.5;0.886;4963.6;"no" +86;"retired";"married";"unknown";"unknown";"yes";"yes";"cellular";"sep";"tue";211;1;7;4;"success";-1.1;94.199;-37.5;0.877;4963.6;"yes" +45;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";27;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"may";"fri";388;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +41;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";545;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.039;4963.6;"yes" +50;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";146;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +28;"management";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";166;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";139;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +42;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"wed";301;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +43;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"fri";218;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +42;"services";"married";"university.degree";"no";"no";"no";"cellular";"dec";"wed";179;1;6;1;"success";-3;92.713;-33;0.715;5023.5;"yes" +56;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"cellular";"aug";"thu";360;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +29;"student";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";489;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"housemaid";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";125;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";304;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"tue";189;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +43;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jul";"tue";377;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +44;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";728;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +43;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"mon";128;22;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"retired";"single";"basic.4y";"no";"yes";"no";"cellular";"oct";"fri";278;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.942;4963.6;"no" +31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"aug";"tue";387;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +59;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"thu";29;9;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +32;"housemaid";"single";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";71;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +24;"student";"single";"high.school";"no";"no";"no";"cellular";"jun";"tue";292;1;999;1;"failure";-1.7;94.055;-39.8;0.737;4991.6;"no" +31;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"wed";767;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes" +38;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"nov";"thu";1476;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"mon";176;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jul";"fri";52;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +27;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"mon";150;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";285;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +46;"self-employed";"married";"basic.6y";"unknown";"yes";"no";"cellular";"nov";"tue";32;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +30;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";227;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +31;"unemployed";"single";"basic.4y";"no";"no";"no";"cellular";"nov";"fri";12;8;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +56;"management";"married";"university.degree";"no";"no";"yes";"telephone";"may";"wed";171;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +52;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";183;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jul";"thu";501;2;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +34;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"jun";"fri";381;3;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +31;"admin.";"married";"high.school";"no";"no";"no";"cellular";"oct";"thu";142;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.722;5017.5;"yes" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";482;1;12;1;"success";-1.1;94.767;-50.8;1.049;4963.6;"yes" +33;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"apr";"wed";117;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"no" +30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";14;13;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"apr";"fri";69;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +24;"technician";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";240;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"wed";389;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +26;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";326;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +40;"admin.";"married";"unknown";"no";"no";"no";"telephone";"may";"thu";387;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +45;"housemaid";"single";"basic.4y";"no";"no";"no";"telephone";"sep";"mon";569;4;999;0;"nonexistent";-3.4;92.379;-29.8;0.797;5017.5;"yes" +42;"admin.";"married";"university.degree";"unknown";"yes";"no";"telephone";"jun";"thu";160;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +41;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";697;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes" +56;"management";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"may";"thu";313;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +25;"technician";"single";"high.school";"no";"yes";"no";"cellular";"may";"fri";581;3;999;2;"failure";-1.8;93.876;-40;0.699;5008.7;"no" +25;"blue-collar";"single";"high.school";"unknown";"yes";"no";"cellular";"may";"mon";23;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";659;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +34;"technician";"married";"basic.9y";"no";"no";"no";"cellular";"may";"mon";103;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +36;"technician";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";243;1;999;1;"failure";-2.9;92.469;-33.6;1.029;5076.2;"no" +75;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";229;1;999;2;"failure";-1.7;94.215;-40.3;0.81;4991.6;"yes" +38;"management";"married";"university.degree";"no";"no";"yes";"cellular";"nov";"fri";79;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +28;"student";"single";"unknown";"no";"yes";"no";"cellular";"aug";"thu";111;1;999;1;"failure";-2.9;92.201;-31.4;0.883;5076.2;"no" +56;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"wed";102;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +58;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"jun";"fri";15;12;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +30;"blue-collar";"single";"unknown";"no";"yes";"yes";"telephone";"may";"mon";408;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +48;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";286;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +30;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";53;6;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +43;"admin.";"married";"high.school";"no";"unknown";"unknown";"telephone";"may";"wed";164;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";305;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +36;"technician";"married";"basic.6y";"no";"no";"no";"cellular";"apr";"mon";316;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +54;"retired";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";577;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"jul";"fri";90;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"dec";"fri";454;6;999;1;"failure";-3;92.713;-33;0.71;5023.5;"no" +59;"retired";"divorced";"professional.course";"no";"no";"no";"cellular";"may";"wed";69;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +45;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"apr";"tue";427;4;999;1;"failure";-1.8;93.075;-47.1;1.423;5099.1;"no" +32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";25;13;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +55;"retired";"divorced";"professional.course";"no";"no";"yes";"telephone";"may";"wed";217;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";139;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +31;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";257;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +34;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";107;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +25;"technician";"divorced";"university.degree";"no";"yes";"no";"telephone";"jun";"mon";214;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"dec";"thu";105;1;4;3;"success";-3;92.713;-33;0.707;5023.5;"no" +49;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"mon";146;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jul";"thu";19;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +36;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"tue";65;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +29;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";281;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +30;"admin.";"single";"high.school";"no";"unknown";"unknown";"cellular";"nov";"tue";229;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +24;"student";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";114;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +47;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"mon";243;4;999;0;"nonexistent";-2.9;92.963;-40.8;1.281;5076.2;"yes" +32;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"may";"thu";80;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +34;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"mon";468;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"fri";101;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +39;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"tue";83;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"wed";74;6;999;2;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +32;"technician";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";67;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +29;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";438;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +57;"retired";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";12;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +49;"management";"married";"high.school";"no";"no";"no";"cellular";"nov";"wed";582;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +42;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"jul";"thu";721;10;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"fri";142;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +34;"technician";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"fri";224;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +51;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"mon";212;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +47;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"cellular";"may";"tue";295;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +53;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"mar";"mon";247;5;999;2;"failure";-1.8;93.369;-34.8;0.646;5008.7;"no" +28;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";236;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +27;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"oct";"wed";184;1;999;1;"failure";-1.1;94.601;-49.5;1.043;4963.6;"yes" +23;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";104;1;999;2;"failure";-1.7;94.215;-40.3;0.881;4991.6;"no" +30;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"thu";200;1;999;1;"failure";-1.7;94.027;-38.3;0.904;4991.6;"no" +42;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"wed";172;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +38;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";190;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +29;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"mon";245;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +44;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";31;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +59;"retired";"married";"high.school";"no";"unknown";"unknown";"telephone";"aug";"thu";204;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +45;"management";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";165;3;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +51;"management";"married";"university.degree";"unknown";"no";"yes";"telephone";"jun";"thu";93;1;999;0;"nonexistent";1.4;94.465;-41.8;4.955;5228.1;"no" +28;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"mon";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";94;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"apr";"thu";477;2;999;1;"failure";-1.8;93.075;-47.1;1.483;5099.1;"no" +29;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";231;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +40;"admin.";"single";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";142;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"mon";221;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +54;"management";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"tue";218;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";370;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +55;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";336;1;999;1;"failure";-1.8;92.893;-46.2;1.244;5099.1;"no" +49;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"cellular";"jul";"wed";121;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +52;"services";"married";"professional.course";"unknown";"yes";"yes";"cellular";"aug";"mon";84;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";52;8;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +23;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"jul";"mon";69;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"thu";42;7;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +36;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";98;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +54;"admin.";"single";"university.degree";"unknown";"no";"no";"cellular";"aug";"thu";218;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +39;"services";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";51;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +50;"housemaid";"divorced";"basic.4y";"no";"no";"no";"telephone";"sep";"tue";57;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.877;4963.6;"no" +30;"services";"single";"high.school";"no";"yes";"no";"cellular";"jun";"mon";181;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +27;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"thu";1170;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +32;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"thu";147;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +54;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";71;4;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +40;"blue-collar";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"jul";"wed";135;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +50;"blue-collar";"married";"professional.course";"unknown";"yes";"no";"cellular";"may";"thu";157;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"technician";"single";"professional.course";"no";"unknown";"unknown";"cellular";"may";"mon";146;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +26;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"tue";355;1;999;1;"failure";-1.1;94.199;-37.5;0.881;4963.6;"no" +45;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";99;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"technician";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";180;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +28;"blue-collar";"single";"basic.4y";"no";"yes";"no";"telephone";"may";"mon";101;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";121;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"fri";55;12;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"fri";114;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +56;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";368;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +29;"entrepreneur";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";103;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +58;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";233;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +46;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";471;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +35;"blue-collar";"divorced";"basic.9y";"no";"no";"yes";"telephone";"may";"tue";131;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +34;"management";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"thu";281;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +39;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"fri";297;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +40;"management";"married";"unknown";"no";"yes";"no";"cellular";"nov";"thu";165;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +40;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";117;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +54;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"jul";"thu";71;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +25;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";94;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +40;"unemployed";"married";"professional.course";"no";"yes";"no";"cellular";"sep";"fri";155;3;999;0;"nonexistent";-3.4;92.379;-29.8;0.773;5017.5;"no" +49;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";67;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +41;"admin.";"married";"unknown";"no";"yes";"no";"cellular";"sep";"thu";228;1;999;1;"failure";-1.1;94.199;-37.5;0.879;4963.6;"no" +32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"mon";549;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +44;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";39;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";1360;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +30;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";433;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +27;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";352;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";152;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";38;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +54;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"tue";134;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +30;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"may";"tue";165;1;999;1;"failure";-1.8;93.876;-40;0.668;5008.7;"no" +25;"student";"single";"unknown";"unknown";"yes";"no";"cellular";"aug";"fri";81;1;999;1;"failure";-2.9;92.201;-31.4;0.825;5076.2;"no" +42;"management";"married";"high.school";"no";"no";"no";"cellular";"nov";"thu";59;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +36;"services";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";255;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +45;"admin.";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";99;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"thu";257;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"admin.";"single";"professional.course";"no";"no";"no";"telephone";"may";"mon";160;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"fri";78;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +44;"admin.";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";217;3;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +37;"services";"single";"basic.9y";"no";"no";"no";"cellular";"may";"tue";37;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +39;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"tue";650;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +57;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";230;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"jul";"wed";64;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +25;"admin.";"married";"unknown";"no";"no";"no";"telephone";"jun";"mon";112;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +52;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"apr";"thu";152;2;999;1;"failure";-1.8;93.075;-47.1;1.435;5099.1;"no" +23;"technician";"single";"high.school";"no";"no";"no";"cellular";"may";"thu";104;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"technician";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"tue";101;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";206;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +46;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"jun";"mon";63;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +43;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"wed";339;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +38;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"mon";136;2;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +53;"admin.";"single";"basic.6y";"no";"yes";"yes";"telephone";"may";"mon";148;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"self-employed";"unknown";"university.degree";"no";"no";"no";"cellular";"nov";"thu";221;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +28;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"tue";289;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +25;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";155;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +56;"services";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"thu";311;5;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +56;"technician";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";17;19;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +33;"services";"single";"high.school";"no";"yes";"no";"telephone";"jun";"thu";326;5;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +31;"housemaid";"single";"professional.course";"unknown";"yes";"yes";"cellular";"aug";"tue";213;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +48;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"aug";"thu";544;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"yes" +45;"self-employed";"divorced";"university.degree";"no";"yes";"yes";"telephone";"jun";"mon";173;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +24;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"oct";"fri";160;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.72;5017.5;"no" +33;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"tue";341;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +38;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"apr";"mon";121;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +48;"housemaid";"married";"basic.4y";"unknown";"no";"yes";"cellular";"aug";"mon";148;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +28;"entrepreneur";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"fri";22;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +50;"self-employed";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"wed";153;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +29;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";281;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +38;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"mon";177;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +18;"student";"single";"unknown";"no";"yes";"yes";"telephone";"aug";"wed";297;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.9;4991.6;"no" +31;"unemployed";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";43;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";487;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";43;9;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +57;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"mon";26;5;12;1;"success";-1.8;92.893;-46.2;1.244;5099.1;"no" +35;"technician";"divorced";"unknown";"no";"yes";"yes";"telephone";"may";"wed";432;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +77;"retired";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"mon";258;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no" +29;"blue-collar";"single";"basic.9y";"unknown";"yes";"yes";"cellular";"jul";"tue";532;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +46;"management";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";153;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +21;"student";"single";"high.school";"no";"yes";"yes";"cellular";"jun";"wed";286;2;999;0;"nonexistent";-1.7;94.055;-39.8;0.767;4991.6;"yes" +43;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";75;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no" +43;"admin.";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"thu";294;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +31;"technician";"married";"university.degree";"no";"no";"no";"cellular";"oct";"tue";146;2;12;3;"failure";-1.1;94.601;-49.5;0.982;4963.6;"no" +39;"student";"single";"unknown";"no";"yes";"no";"telephone";"jun";"tue";367;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +44;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";228;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";53;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +43;"self-employed";"single";"high.school";"unknown";"no";"no";"cellular";"may";"wed";79;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +48;"services";"married";"high.school";"no";"no";"no";"telephone";"sep";"tue";11;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.881;4963.6;"no" +28;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"may";"fri";557;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"wed";55;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +52;"self-employed";"divorced";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";26;5;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +34;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";541;3;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";115;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +25;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";101;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +48;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"tue";69;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +36;"self-employed";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";113;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"technician";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";148;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";151;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"services";"married";"high.school";"no";"yes";"yes";"telephone";"apr";"fri";73;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +37;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";117;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +41;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";142;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +51;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"nov";"tue";62;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +27;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";84;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";199;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +31;"services";"divorced";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";90;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"sep";"mon";5;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +31;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jul";"tue";280;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +64;"unknown";"married";"unknown";"no";"yes";"no";"telephone";"aug";"fri";239;4;999;0;"nonexistent";-1.7;94.027;-38.3;0.905;4991.6;"yes" +33;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";35;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +41;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"apr";"fri";150;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +34;"admin.";"single";"high.school";"no";"no";"no";"telephone";"jun";"tue";423;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +41;"admin.";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";135;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"wed";70;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +59;"retired";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"wed";59;8;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +56;"management";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"tue";941;3;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes" +59;"retired";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";422;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +32;"admin.";"single";"university.degree";"no";"unknown";"unknown";"cellular";"nov";"fri";59;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +40;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";34;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";64;1;3;3;"success";-3.4;92.649;-30.1;0.715;5017.5;"yes" +34;"admin.";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";248;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +41;"unknown";"married";"unknown";"no";"no";"no";"cellular";"aug";"mon";258;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +33;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"mon";31;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +31;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"wed";113;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +29;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";168;4;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +38;"admin.";"single";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"wed";247;5;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +24;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"mar";"wed";224;1;999;0;"nonexistent";-1.8;92.843;-50;1.602;5099.1;"yes" +34;"admin.";"single";"basic.6y";"no";"no";"no";"cellular";"may";"thu";22;11;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +27;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"may";"thu";201;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +32;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";319;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +49;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";59;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"technician";"divorced";"basic.9y";"no";"no";"no";"telephone";"jul";"wed";372;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +46;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";155;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +47;"services";"divorced";"high.school";"no";"yes";"no";"telephone";"may";"tue";313;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"services";"married";"high.school";"unknown";"yes";"yes";"telephone";"may";"thu";73;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +31;"services";"married";"high.school";"no";"unknown";"unknown";"cellular";"may";"thu";582;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +36;"technician";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"tue";232;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"fri";173;2;15;4;"failure";-1.1;94.199;-37.5;0.879;4963.6;"yes" +32;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";100;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";42;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +51;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"fri";653;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes" +28;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";136;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +54;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"mon";397;1;999;1;"failure";-1.8;92.893;-46.2;1.264;5099.1;"yes" +31;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"tue";101;13;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +57;"admin.";"married";"basic.6y";"no";"no";"no";"cellular";"may";"fri";259;1;999;1;"failure";-1.8;92.893;-46.2;1.259;5099.1;"no" +49;"unemployed";"married";"professional.course";"no";"no";"no";"cellular";"jun";"fri";317;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +45;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"wed";157;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"apr";"tue";258;8;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"no" +53;"services";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";136;1;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +26;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"mar";"mon";1447;2;999;0;"nonexistent";-1.8;92.843;-50;1.811;5099.1;"yes" +31;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";56;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";999;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +29;"technician";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";321;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +31;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"tue";191;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +29;"student";"single";"unknown";"no";"no";"no";"telephone";"may";"mon";1143;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +49;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"wed";667;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +26;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"may";"tue";15;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +43;"blue-collar";"married";"unknown";"unknown";"no";"yes";"telephone";"may";"wed";73;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +56;"retired";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";71;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";228;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +31;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";17;5;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +50;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"tue";215;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +37;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jul";"tue";242;6;999;0;"nonexistent";1.4;93.918;-42.7;4.955;5228.1;"no" +42;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"mon";105;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"services";"married";"basic.9y";"unknown";"yes";"no";"cellular";"nov";"mon";209;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +25;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"thu";59;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +35;"self-employed";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"wed";197;1;3;1;"success";-0.1;93.2;-42;4.12;5195.8;"no" +37;"entrepreneur";"married";"high.school";"unknown";"no";"no";"cellular";"nov";"thu";68;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +30;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";164;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +33;"blue-collar";"married";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"fri";1132;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes" +36;"technician";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";146;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";60;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"unemployed";"married";"basic.6y";"no";"no";"no";"cellular";"jun";"thu";280;2;999;1;"failure";-2.9;92.963;-40.8;1.26;5076.2;"yes" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";396;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes" +26;"entrepreneur";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";194;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +40;"blue-collar";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"thu";155;6;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +25;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";1068;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"yes" +38;"management";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"fri";772;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes" +54;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";337;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"yes" +50;"admin.";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"wed";137;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";7;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +43;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";213;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +57;"management";"divorced";"university.degree";"unknown";"no";"no";"cellular";"apr";"mon";322;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +38;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"wed";161;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +27;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"fri";137;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";400;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +28;"technician";"single";"high.school";"no";"yes";"no";"cellular";"jul";"tue";124;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +57;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"fri";161;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +40;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"nov";"thu";22;5;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +43;"blue-collar";"married";"basic.6y";"no";"no";"yes";"cellular";"jul";"tue";197;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +34;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"apr";"fri";122;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +67;"retired";"married";"unknown";"no";"no";"no";"cellular";"oct";"thu";140;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.722;5017.5;"no" +48;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"mon";309;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +35;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"may";"tue";200;4;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +27;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";409;1;1;1;"success";-1.8;92.893;-46.2;1.299;5099.1;"no" +25;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";103;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +42;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"may";"thu";50;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +47;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"mon";208;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";13;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +36;"admin.";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";458;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"yes" +35;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"mon";200;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +29;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"mon";127;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +45;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"jun";"fri";124;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +53;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";95;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +41;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"mon";114;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +50;"management";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"mon";65;17;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +31;"management";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"wed";161;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +46;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";174;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +36;"blue-collar";"married";"high.school";"unknown";"no";"no";"telephone";"may";"wed";713;4;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +43;"blue-collar";"single";"professional.course";"no";"no";"no";"telephone";"jun";"thu";133;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +48;"entrepreneur";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"tue";201;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"services";"married";"high.school";"no";"unknown";"unknown";"cellular";"may";"thu";215;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +21;"services";"single";"high.school";"no";"yes";"yes";"cellular";"apr";"thu";820;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.435;5099.1;"no" +56;"services";"married";"high.school";"unknown";"no";"no";"cellular";"may";"fri";310;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +54;"management";"married";"basic.6y";"no";"no";"no";"telephone";"jun";"wed";255;3;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +44;"services";"married";"high.school";"unknown";"no";"no";"cellular";"nov";"tue";43;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +31;"unemployed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";91;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +50;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";587;2;999;1;"failure";-2.9;92.201;-31.4;0.859;5076.2;"yes" +48;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";288;1;0;3;"success";-1.7;94.027;-38.3;0.9;4991.6;"yes" +26;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";181;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.244;5076.2;"no" +37;"services";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"fri";320;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +37;"unemployed";"unknown";"university.degree";"no";"no";"no";"cellular";"jun";"tue";100;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +50;"services";"married";"unknown";"unknown";"no";"no";"telephone";"may";"tue";144;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";653;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"wed";128;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +32;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";22;17;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"services";"married";"basic.9y";"no";"no";"yes";"telephone";"jun";"fri";177;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.224;5076.2;"no" +48;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";288;1;999;1;"failure";-1.7;94.215;-40.3;0.876;4991.6;"no" +46;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"tue";566;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +48;"self-employed";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"tue";318;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"unknown";"divorced";"high.school";"unknown";"yes";"no";"telephone";"may";"wed";107;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";748;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +55;"retired";"married";"basic.4y";"unknown";"no";"yes";"cellular";"jul";"tue";599;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +27;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"jul";"mon";101;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"services";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";223;3;999;2;"failure";-1.1;94.767;-50.8;1.048;4963.6;"no" +29;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";411;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"services";"divorced";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";149;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +34;"student";"single";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";1185;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +51;"services";"divorced";"high.school";"unknown";"no";"no";"cellular";"may";"tue";398;2;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +40;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";65;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +38;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"jun";"mon";169;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +42;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";212;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +30;"unemployed";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";266;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"services";"married";"high.school";"unknown";"no";"no";"telephone";"may";"mon";427;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"admin.";"single";"high.school";"no";"no";"yes";"telephone";"jun";"wed";113;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +47;"management";"married";"university.degree";"no";"no";"no";"cellular";"apr";"mon";51;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"thu";272;2;999;0;"nonexistent";-1.1;94.199;-37.5;0.878;4963.6;"yes" +30;"services";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";22;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +54;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";66;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +47;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"thu";164;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";58;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";297;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +38;"self-employed";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";26;1;999;2;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +38;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"wed";74;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"unknown";"married";"unknown";"no";"yes";"no";"cellular";"aug";"thu";27;10;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +53;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";118;7;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +26;"unemployed";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";112;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"may";"tue";169;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jun";"tue";103;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.099;5076.2;"no" +41;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";679;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"yes" +39;"self-employed";"divorced";"high.school";"no";"no";"no";"cellular";"sep";"tue";261;1;3;1;"success";-3.4;92.379;-29.8;0.788;5017.5;"yes" +48;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"jul";"mon";352;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +32;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"fri";16;6;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +35;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";39;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"tue";107;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";8;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +60;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"apr";"mon";18;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +28;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";94;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +52;"management";"married";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";167;1;10;4;"failure";-2.9;92.201;-31.4;0.883;5076.2;"yes" +35;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"tue";497;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +27;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"tue";134;1;3;1;"success";-1.8;92.893;-46.2;1.266;5099.1;"no" +34;"technician";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";481;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"nov";"wed";217;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +28;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";140;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"mon";175;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"blue-collar";"divorced";"basic.6y";"unknown";"no";"no";"cellular";"jul";"mon";1065;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +55;"admin.";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"thu";430;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +50;"technician";"married";"high.school";"no";"yes";"no";"cellular";"dec";"mon";229;1;999;1;"failure";-3;92.713;-33;0.717;5023.5;"yes" +37;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";51;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"blue-collar";"divorced";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"mon";276;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +58;"unknown";"married";"basic.9y";"no";"yes";"no";"cellular";"dec";"thu";154;1;999;1;"failure";-3;92.713;-33;0.72;5023.5;"yes" +32;"entrepreneur";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";95;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +35;"retired";"single";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"mon";145;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";213;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +26;"admin.";"single";"high.school";"unknown";"no";"no";"cellular";"may";"thu";136;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +47;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"tue";225;4;999;1;"failure";-1.8;93.075;-47.1;1.423;5099.1;"no" +29;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"wed";68;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +37;"entrepreneur";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";222;1;2;1;"success";-1.8;92.893;-46.2;1.266;5099.1;"no" +32;"technician";"single";"high.school";"no";"no";"no";"telephone";"jul";"wed";239;11;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +46;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"mon";181;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +36;"services";"married";"high.school";"no";"no";"yes";"telephone";"may";"wed";166;5;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +35;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jun";"thu";121;4;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +31;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";242;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";716;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +46;"housemaid";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"fri";550;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +85;"housemaid";"divorced";"basic.4y";"unknown";"yes";"no";"telephone";"oct";"fri";181;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"no" +29;"technician";"single";"basic.9y";"no";"no";"no";"cellular";"may";"thu";20;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +31;"management";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";165;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +34;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"thu";54;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +29;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"nov";"fri";215;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +46;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"tue";62;7;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +29;"blue-collar";"divorced";"high.school";"no";"no";"no";"cellular";"may";"fri";760;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"yes" +54;"blue-collar";"single";"basic.4y";"no";"no";"no";"telephone";"may";"thu";253;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +26;"management";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";112;5;999;0;"nonexistent";-1.1;94.767;-50.8;1.039;4963.6;"no" +27;"admin.";"married";"professional.course";"no";"yes";"no";"cellular";"may";"thu";143;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"management";"married";"basic.4y";"unknown";"yes";"no";"cellular";"may";"fri";10;5;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";158;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +35;"services";"married";"high.school";"no";"yes";"no";"telephone";"may";"tue";87;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +32;"blue-collar";"single";"high.school";"no";"unknown";"unknown";"cellular";"nov";"wed";77;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +59;"retired";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";551;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";193;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +37;"admin.";"married";"high.school";"no";"no";"yes";"telephone";"may";"thu";155;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +40;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"tue";675;5;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +55;"admin.";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"tue";482;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +33;"housemaid";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"wed";46;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +36;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"fri";193;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +59;"admin.";"married";"high.school";"no";"no";"no";"telephone";"jun";"mon";204;4;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +34;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"thu";484;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +30;"self-employed";"married";"professional.course";"no";"no";"no";"cellular";"may";"tue";34;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +29;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";48;7;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +34;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"mon";281;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +47;"blue-collar";"single";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +41;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"telephone";"jul";"fri";89;2;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";107;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +33;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"tue";68;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"unemployed";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";211;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +33;"services";"married";"high.school";"no";"unknown";"unknown";"cellular";"may";"fri";333;1;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +59;"retired";"married";"basic.4y";"no";"yes";"yes";"cellular";"aug";"thu";265;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +29;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";94;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";369;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +41;"admin.";"single";"unknown";"unknown";"yes";"no";"cellular";"apr";"fri";464;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +55;"technician";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"mon";362;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +39;"entrepreneur";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";997;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +48;"services";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"wed";69;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +56;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";177;5;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +63;"technician";"married";"unknown";"no";"yes";"no";"cellular";"aug";"tue";173;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.838;5076.2;"no" +50;"self-employed";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"thu";287;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +42;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"mon";454;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"unemployed";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";114;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";51;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +28;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"apr";"mon";218;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.392;5099.1;"no" +26;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"may";"thu";649;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +24;"admin.";"single";"high.school";"unknown";"yes";"no";"cellular";"jul";"thu";470;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +38;"blue-collar";"divorced";"unknown";"no";"no";"no";"telephone";"jun";"fri";278;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +30;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"thu";175;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +29;"blue-collar";"single";"basic.4y";"no";"yes";"no";"cellular";"may";"fri";13;9;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +56;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";442;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +36;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"telephone";"jun";"thu";762;3;999;0;"nonexistent";1.4;94.465;-41.8;4.955;5228.1;"yes" +33;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"tue";88;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +47;"services";"married";"unknown";"no";"no";"no";"telephone";"may";"wed";262;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +50;"housemaid";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"mon";287;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"services";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";335;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +54;"entrepreneur";"divorced";"unknown";"no";"no";"yes";"cellular";"apr";"thu";461;2;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"apr";"fri";108;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no" +38;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"tue";189;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"management";"single";"high.school";"no";"yes";"yes";"cellular";"nov";"wed";201;2;6;1;"success";-0.1;93.2;-42;4.12;5195.8;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";192;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +55;"admin.";"married";"unknown";"no";"yes";"yes";"cellular";"nov";"thu";591;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +31;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";201;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +43;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";225;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +59;"unemployed";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"thu";458;9;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +53;"technician";"married";"university.degree";"no";"unknown";"unknown";"cellular";"apr";"thu";758;2;999;2;"failure";-1.8;93.749;-34.6;0.64;5008.7;"yes" +56;"unemployed";"married";"professional.course";"no";"no";"no";"cellular";"sep";"fri";1551;1;999;2;"failure";-3.4;92.379;-29.8;0.762;5017.5;"no" +32;"entrepreneur";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jul";"tue";258;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";159;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +42;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";92;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";209;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"services";"married";"high.school";"unknown";"no";"no";"cellular";"nov";"thu";117;6;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +56;"technician";"married";"unknown";"no";"no";"no";"telephone";"jun";"fri";49;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +31;"entrepreneur";"divorced";"high.school";"no";"yes";"no";"telephone";"may";"tue";168;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"management";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";228;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +33;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jun";"fri";78;7;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +23;"housemaid";"single";"basic.4y";"no";"no";"yes";"cellular";"may";"thu";9;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +26;"services";"single";"high.school";"unknown";"yes";"yes";"telephone";"jul";"fri";11;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +55;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";106;6;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +47;"services";"divorced";"basic.4y";"no";"yes";"no";"telephone";"jun";"fri";60;6;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +36;"blue-collar";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"fri";324;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +33;"blue-collar";"married";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"thu";369;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +60;"retired";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";557;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";142;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +35;"admin.";"married";"high.school";"unknown";"unknown";"unknown";"telephone";"may";"wed";35;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +47;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"mon";480;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +30;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"wed";207;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"blue-collar";"single";"basic.9y";"no";"no";"yes";"telephone";"jun";"thu";869;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +36;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"tue";259;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +46;"services";"divorced";"high.school";"no";"no";"no";"cellular";"may";"mon";222;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +30;"entrepreneur";"divorced";"basic.6y";"no";"no";"yes";"cellular";"may";"thu";149;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +88;"retired";"divorced";"basic.4y";"no";"yes";"yes";"cellular";"mar";"wed";82;2;999;0;"nonexistent";-1.8;92.843;-50;1.663;5099.1;"no" +45;"services";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"mon";166;12;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"thu";82;6;999;0;"nonexistent";-1.8;93.075;-47.1;1.483;5099.1;"no" +43;"technician";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";461;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +48;"retired";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"jul";"mon";27;17;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +56;"unemployed";"divorced";"university.degree";"unknown";"yes";"no";"telephone";"may";"fri";98;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"technician";"single";"high.school";"unknown";"yes";"no";"telephone";"may";"wed";617;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";63;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +56;"housemaid";"divorced";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"tue";77;5;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"technician";"married";"high.school";"no";"unknown";"unknown";"cellular";"aug";"fri";61;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +39;"services";"single";"high.school";"unknown";"no";"no";"telephone";"may";"thu";206;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +49;"unemployed";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";96;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +30;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";129;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"tue";979;9;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +32;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"jul";"thu";119;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +59;"admin.";"divorced";"high.school";"unknown";"no";"yes";"cellular";"jul";"mon";630;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +38;"technician";"married";"high.school";"no";"unknown";"unknown";"cellular";"aug";"tue";234;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +49;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"fri";354;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +28;"admin.";"married";"high.school";"no";"unknown";"unknown";"cellular";"jul";"tue";502;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +39;"technician";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";451;4;3;1;"success";-1.8;92.893;-46.2;1.291;5099.1;"no" +37;"blue-collar";"married";"basic.6y";"no";"unknown";"unknown";"cellular";"oct";"fri";93;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.73;5017.5;"no" +51;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";250;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +31;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"fri";241;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +59;"technician";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";142;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +46;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"tue";304;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";296;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +28;"management";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";651;5;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"yes" +31;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";102;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +26;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"tue";188;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"mon";221;8;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +50;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";57;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +41;"unemployed";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";263;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.466;5099.1;"no" +50;"self-employed";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";73;7;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +32;"blue-collar";"single";"high.school";"no";"no";"yes";"cellular";"may";"wed";204;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +56;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"apr";"mon";83;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";111;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +38;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"may";"mon";407;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"mon";12;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +45;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"mon";134;8;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +52;"retired";"married";"basic.4y";"unknown";"unknown";"unknown";"cellular";"jul";"thu";143;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +55;"technician";"married";"university.degree";"no";"no";"no";"telephone";"jun";"tue";126;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"thu";238;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +71;"retired";"married";"basic.4y";"no";"yes";"yes";"cellular";"oct";"tue";120;1;6;1;"success";-3.4;92.431;-26.9;0.728;5017.5;"no" +22;"services";"single";"basic.4y";"no";"no";"no";"telephone";"may";"wed";91;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"fri";331;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"yes" +78;"retired";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";754;2;3;2;"failure";-1.8;92.893;-46.2;1.264;5099.1;"no" +30;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";589;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +51;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"apr";"wed";89;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.372;5099.1;"no" +35;"management";"divorced";"university.degree";"no";"unknown";"unknown";"cellular";"aug";"mon";123;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +26;"student";"single";"unknown";"no";"yes";"no";"cellular";"nov";"wed";92;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.716;5017.5;"no" +34;"services";"married";"high.school";"no";"no";"no";"telephone";"jun";"fri";9;14;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +49;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";87;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +50;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"cellular";"jul";"thu";150;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +51;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";98;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +57;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";187;1;999;1;"failure";-2.9;92.201;-31.4;0.834;5076.2;"no" +33;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";76;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +35;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";41;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"thu";609;2;7;3;"success";-1.7;94.215;-40.3;0.782;4991.6;"yes" +39;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";514;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +39;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";919;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +20;"student";"single";"high.school";"no";"no";"no";"cellular";"nov";"wed";187;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.715;5017.5;"no" +55;"blue-collar";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"fri";530;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"student";"single";"professional.course";"no";"no";"no";"telephone";"nov";"thu";72;1;999;0;"nonexistent";-0.1;93.2;-42;4.245;5195.8;"no" +33;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"fri";595;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +24;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"thu";226;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +39;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";168;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +55;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"aug";"thu";142;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +35;"unknown";"married";"basic.9y";"no";"no";"no";"telephone";"may";"thu";108;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +55;"retired";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"may";"wed";526;4;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes" +42;"self-employed";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";83;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +50;"self-employed";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"thu";59;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +39;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";53;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +40;"services";"single";"high.school";"no";"no";"no";"cellular";"may";"wed";197;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +51;"services";"single";"high.school";"unknown";"no";"no";"telephone";"jun";"mon";329;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +59;"retired";"unknown";"university.degree";"unknown";"no";"no";"telephone";"may";"tue";253;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"technician";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";58;3;999;2;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"management";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";109;5;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +33;"technician";"divorced";"professional.course";"no";"yes";"yes";"cellular";"aug";"mon";679;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +26;"admin.";"single";"basic.4y";"no";"yes";"yes";"telephone";"jun";"tue";68;6;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +27;"management";"married";"university.degree";"no";"no";"no";"cellular";"apr";"mon";54;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.392;5099.1;"no" +30;"technician";"single";"high.school";"no";"yes";"no";"cellular";"aug";"thu";230;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +42;"self-employed";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"thu";77;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +53;"unemployed";"married";"university.degree";"no";"unknown";"unknown";"cellular";"nov";"mon";126;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +36;"management";"married";"university.degree";"no";"unknown";"unknown";"cellular";"sep";"wed";331;1;6;4;"failure";-1.1;94.199;-37.5;0.876;4963.6;"yes" +29;"management";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";139;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +45;"services";"married";"professional.course";"no";"unknown";"unknown";"cellular";"aug";"fri";133;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +35;"services";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"fri";102;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"blue-collar";"married";"high.school";"unknown";"yes";"no";"cellular";"mar";"tue";494;1;999;0;"nonexistent";-1.8;92.843;-50;1.51;5099.1;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";19;11;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +29;"blue-collar";"married";"basic.6y";"no";"no";"yes";"telephone";"may";"wed";168;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +32;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"apr";"mon";24;1;999;2;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +34;"technician";"married";"professional.course";"no";"unknown";"unknown";"cellular";"may";"thu";35;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +36;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"dec";"thu";234;1;999;0;"nonexistent";-0.2;92.756;-45.9;3.329;5176.3;"no" +51;"management";"married";"university.degree";"no";"no";"no";"telephone";"jun";"wed";16;17;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +34;"blue-collar";"married";"basic.4y";"no";"no";"yes";"telephone";"may";"thu";23;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +50;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"sep";"wed";1353;2;999;0;"nonexistent";-3.4;92.379;-29.8;0.749;5017.5;"no" +54;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"thu";65;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +53;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";88;4;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +52;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"may";"tue";57;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +71;"retired";"married";"high.school";"no";"no";"no";"cellular";"sep";"mon";363;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"yes" +52;"retired";"married";"university.degree";"no";"yes";"yes";"telephone";"nov";"mon";215;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +53;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";332;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";287;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +43;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"thu";67;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +31;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"mon";122;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +58;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"mon";1234;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"yes" +46;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";124;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +38;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"jul";"thu";456;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"wed";329;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +37;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";58;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +40;"self-employed";"single";"university.degree";"no";"no";"yes";"cellular";"jun";"wed";54;4;999;0;"nonexistent";-2.9;92.963;-40.8;1.244;5076.2;"no" +42;"blue-collar";"divorced";"high.school";"no";"no";"no";"telephone";"jun";"tue";256;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +40;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"fri";85;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +27;"unemployed";"married";"high.school";"no";"yes";"no";"telephone";"jun";"fri";23;13;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +57;"unknown";"married";"unknown";"unknown";"yes";"no";"telephone";"may";"mon";48;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +45;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"apr";"mon";79;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +46;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"nov";"wed";184;2;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +47;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";129;3;999;2;"failure";-1.7;94.215;-40.3;0.896;4991.6;"no" +56;"retired";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"wed";687;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"entrepreneur";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";314;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"services";"married";"unknown";"no";"no";"no";"telephone";"may";"tue";192;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +58;"services";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";155;5;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";123;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +39;"blue-collar";"married";"basic.6y";"unknown";"no";"yes";"cellular";"jul";"thu";122;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +41;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"thu";255;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";428;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";181;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"management";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"mon";207;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"management";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"mon";488;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +41;"services";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";189;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";355;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +28;"services";"married";"high.school";"no";"unknown";"unknown";"cellular";"jul";"thu";81;4;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +35;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"nov";"tue";106;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +44;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"sep";"thu";10;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.884;4963.6;"no" +25;"blue-collar";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"tue";94;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +47;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"tue";118;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +32;"unemployed";"married";"professional.course";"no";"yes";"no";"telephone";"nov";"tue";486;1;999;0;"nonexistent";-0.1;93.2;-42;4.343;5195.8;"yes" +26;"student";"single";"high.school";"no";"no";"no";"cellular";"jul";"tue";235;1;999;1;"failure";-1.7;94.215;-40.3;0.893;4991.6;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";167;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";206;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +57;"management";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"wed";236;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"blue-collar";"single";"basic.6y";"unknown";"no";"yes";"cellular";"may";"wed";42;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"oct";"mon";61;2;6;2;"failure";-3.4;92.431;-26.9;0.731;5017.5;"no" +32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"fri";219;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +47;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"jul";"thu";114;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +34;"blue-collar";"single";"basic.6y";"no";"no";"no";"cellular";"may";"mon";204;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +36;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"apr";"fri";413;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";77;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +72;"retired";"divorced";"university.degree";"no";"no";"no";"cellular";"aug";"tue";270;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.884;5076.2;"no" +27;"services";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"tue";88;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +43;"admin.";"divorced";"high.school";"no";"yes";"yes";"cellular";"may";"thu";892;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +39;"entrepreneur";"single";"university.degree";"no";"yes";"no";"cellular";"may";"fri";452;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +27;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"mar";"tue";238;4;999;0;"nonexistent";-1.8;93.369;-34.8;0.635;5008.7;"yes" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";614;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +34;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"mon";123;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no" +36;"services";"married";"high.school";"unknown";"yes";"yes";"telephone";"jun";"wed";57;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +39;"technician";"married";"high.school";"no";"no";"no";"cellular";"nov";"fri";749;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"yes" +35;"management";"divorced";"high.school";"no";"yes";"no";"telephone";"jun";"fri";176;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +56;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"tue";130;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";1327;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +31;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";28;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +45;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"fri";27;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +20;"student";"single";"unknown";"no";"yes";"yes";"cellular";"apr";"tue";47;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";111;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";272;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +45;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"telephone";"jun";"tue";65;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +50;"services";"married";"high.school";"no";"yes";"no";"cellular";"aug";"mon";54;15;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"tue";641;6;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"unknown";"married";"unknown";"unknown";"no";"no";"telephone";"may";"mon";362;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";474;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";61;6;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"mon";234;13;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +41;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"may";"mon";677;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"may";"fri";87;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +39;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";247;1;4;1;"success";-2.9;92.201;-31.4;0.884;5076.2;"no" +34;"blue-collar";"married";"basic.6y";"unknown";"no";"yes";"telephone";"jul";"mon";164;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +52;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";643;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +47;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";2653;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"yes" +59;"management";"married";"university.degree";"no";"no";"no";"cellular";"dec";"thu";112;4;999;1;"failure";-3;92.713;-33;0.7;5023.5;"no" +37;"services";"married";"high.school";"no";"no";"yes";"cellular";"apr";"fri";175;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +33;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";85;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"fri";288;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +33;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";67;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"fri";44;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +39;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"fri";302;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";77;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.714;5017.5;"no" +29;"technician";"single";"high.school";"no";"yes";"no";"cellular";"aug";"tue";130;6;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +32;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"thu";1143;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"yes" +35;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"fri";221;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";570;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +38;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"apr";"tue";239;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"aug";"tue";66;7;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";200;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +34;"self-employed";"single";"high.school";"no";"yes";"no";"cellular";"nov";"tue";581;4;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +42;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"wed";938;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"yes" +28;"technician";"single";"basic.9y";"no";"no";"no";"cellular";"may";"tue";223;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +53;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";260;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"services";"single";"basic.9y";"no";"no";"no";"telephone";"may";"mon";93;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"may";"fri";114;1;999;1;"failure";-1.8;92.893;-46.2;1.259;5099.1;"no" +51;"unemployed";"married";"professional.course";"unknown";"yes";"yes";"cellular";"jul";"thu";901;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +35;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"jun";"fri";81;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";168;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +36;"technician";"single";"professional.course";"no";"no";"yes";"telephone";"may";"mon";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +35;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";138;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"services";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";31;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +45;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"thu";272;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +24;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";590;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";231;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +31;"entrepreneur";"divorced";"basic.4y";"no";"no";"no";"cellular";"nov";"tue";152;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +30;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";217;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +68;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";546;2;999;1;"failure";-1.7;94.215;-40.3;0.889;4991.6;"yes" +50;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"aug";"tue";137;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"unemployed";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";85;8;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +55;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"thu";371;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"admin.";"married";"high.school";"unknown";"yes";"yes";"telephone";"jun";"wed";135;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +55;"services";"married";"basic.4y";"no";"no";"yes";"cellular";"aug";"wed";64;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +37;"admin.";"married";"high.school";"no";"unknown";"unknown";"cellular";"jul";"thu";56;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +41;"blue-collar";"single";"basic.4y";"no";"unknown";"unknown";"cellular";"jul";"mon";107;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";102;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +33;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"fri";728;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"yes" +42;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";312;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +56;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jul";"fri";55;9;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +46;"entrepreneur";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";245;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +42;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"fri";163;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";214;2;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +53;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"fri";264;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +43;"self-employed";"married";"basic.4y";"no";"no";"yes";"cellular";"nov";"wed";206;5;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +52;"services";"married";"basic.6y";"no";"no";"yes";"cellular";"jul";"mon";161;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +40;"technician";"single";"unknown";"no";"yes";"no";"telephone";"jul";"wed";145;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +49;"housemaid";"single";"university.degree";"no";"no";"yes";"cellular";"dec";"mon";334;3;999;0;"nonexistent";-3;92.713;-33;0.717;5023.5;"no" +41;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";47;13;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +26;"blue-collar";"single";"basic.4y";"no";"yes";"yes";"cellular";"jul";"wed";215;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"blue-collar";"divorced";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";304;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +33;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"tue";164;7;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +36;"admin.";"single";"basic.6y";"no";"yes";"no";"telephone";"may";"wed";125;2;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +33;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"telephone";"jun";"tue";321;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +36;"services";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"tue";49;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +61;"self-employed";"divorced";"university.degree";"no";"no";"no";"cellular";"mar";"fri";102;2;999;1;"failure";-1.8;93.369;-34.8;0.649;5008.7;"no" +40;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";224;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"technician";"single";"professional.course";"no";"no";"no";"telephone";"jul";"fri";141;2;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jun";"mon";132;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +39;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"thu";22;8;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +39;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"tue";121;17;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";328;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.873;5076.2;"no" +47;"management";"married";"high.school";"no";"no";"yes";"cellular";"apr";"fri";245;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +24;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jul";"mon";722;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +45;"blue-collar";"divorced";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";323;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +34;"technician";"divorced";"unknown";"no";"no";"no";"cellular";"jul";"thu";40;7;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +51;"entrepreneur";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";142;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"unknown";"married";"professional.course";"no";"no";"no";"cellular";"jun";"thu";217;2;3;1;"success";-2.9;92.963;-40.8;1.26;5076.2;"no" +24;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jun";"tue";211;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +24;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";10;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +35;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"wed";108;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +71;"retired";"single";"university.degree";"no";"yes";"no";"cellular";"oct";"tue";167;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.742;5017.5;"no" +27;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"apr";"wed";98;1;999;1;"failure";-1.8;93.075;-47.1;1.445;5099.1;"no" +32;"services";"married";"high.school";"no";"no";"no";"cellular";"oct";"mon";217;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"no" +56;"technician";"divorced";"university.degree";"unknown";"no";"yes";"cellular";"jul";"thu";13;2;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +35;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";66;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"aug";"thu";347;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"services";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";193;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +52;"services";"single";"high.school";"no";"yes";"no";"telephone";"jun";"wed";43;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +27;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";72;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +35;"student";"single";"unknown";"unknown";"no";"no";"cellular";"jul";"wed";103;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +40;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";26;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"jul";"wed";122;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"management";"single";"university.degree";"no";"no";"no";"cellular";"may";"thu";162;4;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +35;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"tue";95;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +28;"blue-collar";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";611;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +25;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"thu";420;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";202;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.879;5076.2;"no" +31;"technician";"married";"university.degree";"no";"no";"no";"cellular";"sep";"thu";244;1;3;1;"success";-1.1;94.199;-37.5;0.878;4963.6;"yes" +38;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jun";"wed";539;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +53;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"thu";75;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +32;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"may";"fri";76;17;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +73;"retired";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";135;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.873;5076.2;"no" +34;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"wed";359;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +64;"housemaid";"married";"unknown";"no";"yes";"no";"telephone";"may";"wed";671;3;999;0;"nonexistent";-1.8;93.876;-40;0.697;5008.7;"yes" +41;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";167;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +51;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"telephone";"jun";"tue";781;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes" +34;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jun";"tue";116;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +50;"management";"married";"unknown";"no";"yes";"no";"telephone";"jun";"thu";1005;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +39;"retired";"single";"high.school";"no";"no";"no";"telephone";"may";"thu";109;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"mar";"mon";93;1;999;0;"nonexistent";-1.8;92.843;-50;1.629;5099.1;"no" +37;"housemaid";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"may";"mon";226;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +40;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"fri";85;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";197;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +41;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";188;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";191;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +47;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"thu";303;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +23;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";523;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"wed";83;11;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +49;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";91;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +51;"admin.";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"fri";343;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +36;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";225;2;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +49;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"aug";"mon";383;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +21;"student";"single";"professional.course";"no";"no";"no";"telephone";"nov";"wed";250;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.716;5017.5;"no" +34;"unemployed";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";284;2;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +45;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"thu";367;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +54;"unemployed";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";193;1;3;1;"success";-1.8;92.893;-46.2;1.27;5099.1;"yes" +34;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";71;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +36;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"may";"mon";193;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +45;"admin.";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";265;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"nov";"wed";274;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";75;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +51;"admin.";"married";"basic.4y";"unknown";"no";"no";"cellular";"may";"tue";142;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +35;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"fri";418;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"jul";"thu";18;8;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +32;"admin.";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";118;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";211;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +51;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"jul";"wed";65;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +24;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";147;1;999;1;"failure";-2.9;92.201;-31.4;0.851;5076.2;"no" +37;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"mon";91;2;999;0;"nonexistent";-2.9;92.469;-33.6;0.944;5076.2;"no" +37;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"jun";"mon";90;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +56;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"tue";147;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +27;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"nov";"fri";24;1;999;0;"nonexistent";-0.1;93.2;-42;3.853;5195.8;"no" +59;"retired";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"fri";141;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +54;"retired";"married";"basic.4y";"no";"no";"yes";"cellular";"oct";"thu";164;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.722;5017.5;"yes" +34;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";144;3;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +36;"housemaid";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"mon";45;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +54;"blue-collar";"married";"professional.course";"unknown";"yes";"yes";"telephone";"may";"mon";198;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";434;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";263;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +46;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";34;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +50;"services";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"mon";113;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +35;"services";"single";"university.degree";"no";"unknown";"unknown";"cellular";"aug";"mon";419;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.884;5076.2;"no" +78;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"mon";1148;1;999;0;"nonexistent";-1.7;94.215;-40.3;0.87;4991.6;"yes" +27;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"fri";423;3;999;0;"nonexistent";-1.7;94.215;-40.3;0.79;4991.6;"yes" +55;"technician";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";349;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"retired";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";259;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +41;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"may";"wed";204;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +54;"retired";"married";"high.school";"no";"no";"no";"cellular";"nov";"tue";172;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +46;"admin.";"divorced";"high.school";"no";"yes";"no";"telephone";"oct";"fri";3253;1;999;0;"nonexistent";-0.1;93.798;-40.4;5.045;5195.8;"no" +30;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";329;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +33;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"tue";280;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +38;"services";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"thu";503;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"blue-collar";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";286;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"may";"thu";349;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +46;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";165;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +40;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";606;5;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +38;"blue-collar";"single";"university.degree";"unknown";"no";"no";"telephone";"may";"fri";894;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"yes" +35;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"tue";117;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +55;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"telephone";"may";"wed";148;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +49;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";813;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"fri";140;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";81;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +48;"admin.";"divorced";"unknown";"no";"yes";"no";"cellular";"may";"wed";16;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +40;"management";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";309;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +53;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";178;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +42;"blue-collar";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"wed";257;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +40;"admin.";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"mon";163;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jul";"mon";195;2;999;0;"nonexistent";-2.9;92.469;-33.6;0.914;5076.2;"no" +34;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";98;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +36;"blue-collar";"single";"basic.4y";"no";"yes";"no";"telephone";"jun";"fri";250;8;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +38;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"mon";79;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";187;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +32;"services";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"mon";891;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +49;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";334;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"may";"fri";585;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"yes" +38;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"tue";61;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +38;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";210;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +28;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"may";"thu";16;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +26;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"sep";"fri";249;1;3;3;"success";-1.1;94.199;-37.5;0.879;4963.6;"yes" +27;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"tue";192;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +59;"retired";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"tue";807;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +26;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";155;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";268;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +39;"entrepreneur";"single";"basic.6y";"no";"yes";"no";"telephone";"may";"thu";77;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +30;"services";"married";"unknown";"no";"yes";"no";"telephone";"may";"wed";274;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +40;"technician";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";185;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +37;"admin.";"divorced";"university.degree";"unknown";"yes";"no";"cellular";"may";"wed";31;7;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +31;"services";"married";"basic.9y";"no";"no";"no";"cellular";"apr";"mon";74;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +47;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";94;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +54;"blue-collar";"married";"high.school";"no";"yes";"yes";"cellular";"may";"wed";184;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +32;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"fri";1067;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +41;"technician";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"tue";154;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +55;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"may";"fri";543;3;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +80;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";382;1;3;3;"success";-1.8;93.876;-40;0.697;5008.7;"yes" +29;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";492;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"wed";412;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"yes" +47;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";310;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +49;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";122;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +33;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";1183;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"yes" +51;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"wed";286;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +40;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";145;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +44;"services";"divorced";"high.school";"no";"no";"no";"cellular";"may";"mon";903;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"yes" +28;"self-employed";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";4;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"technician";"married";"professional.course";"no";"no";"no";"cellular";"nov";"mon";64;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +46;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";105;11;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +52;"self-employed";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"tue";90;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +25;"student";"single";"high.school";"no";"no";"no";"telephone";"nov";"tue";345;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.715;5017.5;"no" +31;"entrepreneur";"single";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"fri";12;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +38;"blue-collar";"divorced";"unknown";"no";"no";"no";"telephone";"may";"wed";258;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +52;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"wed";249;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.445;5099.1;"no" +39;"admin.";"divorced";"university.degree";"no";"no";"yes";"cellular";"jul";"mon";375;3;999;0;"nonexistent";-1.7;94.215;-40.3;0.827;4991.6;"yes" +44;"admin.";"divorced";"high.school";"no";"yes";"no";"telephone";"nov";"mon";1628;2;6;1;"success";-3.4;92.649;-30.1;0.719;5017.5;"yes" +39;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"fri";361;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +54;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"fri";840;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes" +55;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";188;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +46;"admin.";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";56;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +55;"blue-collar";"divorced";"basic.4y";"unknown";"yes";"no";"cellular";"apr";"thu";164;1;999;1;"failure";-1.8;93.075;-47.1;1.483;5099.1;"no" +45;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"wed";651;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"no" +29;"blue-collar";"single";"basic.9y";"no";"no";"yes";"cellular";"oct";"wed";107;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.735;5017.5;"yes" +46;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"jul";"tue";231;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +50;"unknown";"married";"unknown";"unknown";"yes";"no";"telephone";"jul";"tue";237;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +39;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"jul";"tue";157;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +50;"admin.";"married";"university.degree";"no";"no";"yes";"telephone";"may";"tue";20;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";1167;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";386;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"blue-collar";"single";"basic.4y";"no";"yes";"yes";"cellular";"nov";"thu";104;5;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +43;"housemaid";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"wed";228;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +42;"unemployed";"married";"high.school";"unknown";"no";"no";"telephone";"may";"mon";181;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"housemaid";"married";"unknown";"no";"yes";"no";"cellular";"aug";"fri";121;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.881;5076.2;"no" +26;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";369;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +31;"student";"single";"unknown";"no";"yes";"no";"cellular";"aug";"mon";868;3;18;3;"failure";-1.7;94.027;-38.3;0.898;4991.6;"yes" +47;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"jun";"tue";168;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +54;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"apr";"fri";14;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +40;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";258;6;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +29;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"jun";"tue";347;3;5;1;"success";-1.7;94.055;-39.8;0.702;4991.6;"yes" +39;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"may";"mon";327;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +55;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"wed";525;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +43;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";265;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +26;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";78;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +33;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";170;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +42;"entrepreneur";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jul";"thu";485;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";506;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +33;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"apr";"wed";351;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.498;5099.1;"yes" +36;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";629;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +45;"unknown";"married";"unknown";"unknown";"no";"no";"telephone";"may";"tue";315;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +39;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";273;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"admin.";"unknown";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";529;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +28;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";161;4;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no" +38;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"wed";333;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +49;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";122;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"management";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";76;17;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";234;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +51;"blue-collar";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";99;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +57;"retired";"married";"professional.course";"unknown";"no";"yes";"cellular";"jul";"tue";1720;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +44;"services";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"thu";533;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"yes" +27;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";429;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.879;5076.2;"yes" +58;"management";"divorced";"university.degree";"no";"yes";"no";"telephone";"jul";"wed";174;5;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +28;"services";"single";"high.school";"no";"no";"no";"telephone";"jun";"tue";406;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";766;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"yes" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";232;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +29;"services";"single";"high.school";"no";"yes";"yes";"cellular";"jun";"wed";431;2;999;2;"failure";-2.9;92.963;-40.8;1.26;5076.2;"yes" +55;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"may";"wed";130;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +37;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";481;2;999;4;"failure";-1.7;94.027;-38.3;0.899;4991.6;"yes" +18;"student";"single";"unknown";"no";"yes";"no";"cellular";"may";"thu";183;1;7;2;"success";-1.8;93.876;-40;0.677;5008.7;"no" +39;"blue-collar";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"thu";27;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";360;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"wed";50;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";212;1;999;2;"failure";-1.1;94.767;-50.8;1.05;4963.6;"no" +36;"unemployed";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";616;2;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +55;"admin.";"married";"high.school";"no";"no";"yes";"cellular";"apr";"wed";307;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"yes" +50;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"mon";1130;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +37;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"mon";93;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +24;"student";"single";"high.school";"no";"no";"no";"telephone";"jun";"wed";132;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +57;"technician";"married";"university.degree";"unknown";"no";"yes";"telephone";"may";"mon";76;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +59;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"apr";"thu";247;2;999;1;"failure";-1.8;93.749;-34.6;0.644;5008.7;"no" +32;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"sep";"tue";69;2;999;0;"nonexistent";-3.4;92.379;-29.8;0.819;5017.5;"no" +36;"self-employed";"divorced";"professional.course";"unknown";"yes";"yes";"cellular";"jul";"tue";110;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +48;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"tue";747;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.715;5017.5;"yes" +33;"admin.";"single";"university.degree";"unknown";"unknown";"unknown";"cellular";"aug";"tue";313;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"jun";"mon";99;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +39;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";496;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +26;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";49;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +47;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"sep";"tue";188;1;3;1;"success";-3.4;92.379;-29.8;0.77;5017.5;"no" +24;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";171;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +35;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"nov";"mon";81;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +26;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"oct";"tue";75;2;999;1;"failure";-3.4;92.431;-26.9;0.742;5017.5;"no" +31;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";11;9;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +33;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";2301;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"yes" +53;"admin.";"single";"high.school";"no";"yes";"yes";"telephone";"apr";"wed";75;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.372;5099.1;"no" +43;"technician";"married";"professional.course";"no";"no";"no";"cellular";"may";"thu";460;1;999;1;"failure";-1.8;93.876;-40;0.699;5008.7;"yes" +34;"technician";"single";"professional.course";"no";"yes";"yes";"telephone";"aug";"mon";64;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +41;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";54;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +33;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"may";"wed";139;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +33;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"mon";220;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"technician";"married";"unknown";"unknown";"yes";"no";"cellular";"jul";"wed";239;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +29;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"aug";"mon";36;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +25;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"fri";170;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +35;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"may";"mon";66;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";332;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +57;"retired";"married";"university.degree";"no";"no";"no";"cellular";"apr";"thu";81;1;999;1;"failure";-1.8;93.075;-47.1;1.365;5099.1;"no" +49;"unemployed";"married";"basic.6y";"unknown";"no";"no";"cellular";"apr";"mon";68;5;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";150;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";439;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"tue";127;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +34;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"mon";320;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +38;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";284;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +43;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";281;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";83;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +46;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";247;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +39;"admin.";"single";"high.school";"unknown";"no";"no";"telephone";"may";"thu";344;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +47;"entrepreneur";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";400;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +25;"blue-collar";"single";"basic.4y";"no";"yes";"no";"telephone";"may";"fri";304;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +38;"management";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";776;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"jun";"thu";247;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +30;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";496;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"yes" +34;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"tue";568;1;6;3;"success";-1.8;93.369;-34.8;0.652;5008.7;"yes" +47;"self-employed";"married";"university.degree";"no";"unknown";"unknown";"cellular";"aug";"tue";95;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +46;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"aug";"mon";109;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no" +45;"admin.";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";173;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"housemaid";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";295;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +30;"housemaid";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";207;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +31;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"fri";156;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +52;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"fri";87;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"unemployed";"divorced";"basic.4y";"no";"no";"yes";"telephone";"jun";"mon";119;2;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +27;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"jul";"tue";68;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"wed";173;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +45;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"thu";333;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";152;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"mon";142;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +60;"retired";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";448;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +32;"admin.";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";77;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";78;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +54;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";39;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +53;"management";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";8;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +36;"admin.";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";209;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +27;"technician";"single";"high.school";"no";"yes";"no";"telephone";"may";"thu";43;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +29;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"may";"tue";342;1;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +55;"unemployed";"single";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"fri";147;7;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"thu";26;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +28;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"cellular";"jul";"wed";186;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +37;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"tue";316;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +37;"housemaid";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"thu";481;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +30;"technician";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";78;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";159;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +43;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";534;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +35;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";126;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +47;"blue-collar";"married";"unknown";"unknown";"no";"no";"telephone";"may";"tue";1334;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +42;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"thu";295;1;6;2;"success";-1.7;94.027;-38.3;0.899;4991.6;"yes" +39;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"thu";391;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +41;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";1138;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +38;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"jul";"mon";182;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +29;"services";"single";"high.school";"unknown";"yes";"no";"cellular";"jul";"fri";289;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";1019;11;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"yes" +41;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";279;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +45;"management";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";165;1;999;3;"failure";-1.8;93.876;-40;0.692;5008.7;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";146;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +56;"retired";"married";"basic.6y";"no";"yes";"no";"telephone";"apr";"mon";172;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.466;5099.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";188;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +41;"management";"divorced";"university.degree";"unknown";"yes";"yes";"telephone";"may";"thu";341;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +41;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"mon";105;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +31;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"mon";157;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"aug";"fri";202;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"unknown";"divorced";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";73;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +48;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";284;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"student";"single";"high.school";"no";"yes";"yes";"cellular";"jul";"tue";316;3;999;1;"failure";-1.7;94.215;-40.3;0.835;4991.6;"no" +53;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";64;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +56;"self-employed";"married";"basic.9y";"no";"yes";"no";"telephone";"aug";"wed";41;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"technician";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"wed";322;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"apr";"thu";71;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +32;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";106;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +28;"student";"single";"high.school";"no";"yes";"yes";"telephone";"jun";"wed";604;6;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";201;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +28;"technician";"divorced";"university.degree";"no";"no";"no";"cellular";"jul";"wed";265;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";180;5;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";173;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +31;"blue-collar";"single";"basic.4y";"no";"yes";"no";"cellular";"nov";"thu";111;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +36;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jul";"thu";140;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +56;"retired";"married";"professional.course";"no";"no";"no";"cellular";"jul";"wed";135;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +45;"technician";"married";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";474;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +54;"technician";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"thu";112;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"fri";193;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +60;"management";"married";"unknown";"unknown";"yes";"no";"telephone";"jun";"mon";35;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";252;5;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +27;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";88;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +51;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";212;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.829;5076.2;"yes" +40;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";136;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +36;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"mon";88;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"management";"married";"university.degree";"no";"no";"no";"telephone";"nov";"thu";29;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +44;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";10;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +37;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";286;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +46;"blue-collar";"married";"unknown";"no";"yes";"no";"telephone";"jul";"fri";257;1;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +52;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"fri";362;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +23;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"apr";"wed";343;5;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +39;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";36;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +34;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"mar";"fri";136;1;999;0;"nonexistent";-1.8;92.843;-50;1.726;5099.1;"no" +36;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"jun";"mon";422;1;3;4;"success";-1.7;94.055;-39.8;0.72;4991.6;"yes" +43;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"tue";286;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +45;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"may";"tue";121;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +86;"retired";"married";"unknown";"unknown";"yes";"no";"cellular";"sep";"tue";340;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.877;4963.6;"yes" +34;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"fri";377;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +37;"entrepreneur";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"wed";298;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.719;5017.5;"no" +32;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"mon";55;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +37;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"fri";300;1;999;2;"failure";-1.7;94.055;-39.8;0.748;4991.6;"yes" +66;"housemaid";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";210;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.259;5099.1;"no" +32;"technician";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"fri";271;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +35;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"apr";"mon";26;4;999;2;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +30;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"jun";"mon";212;4;999;0;"nonexistent";-1.7;94.055;-39.8;0.72;4991.6;"yes" +33;"services";"married";"high.school";"unknown";"no";"no";"telephone";"may";"tue";131;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +57;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";145;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +57;"retired";"single";"basic.4y";"no";"yes";"no";"telephone";"jun";"thu";107;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"services";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"jul";"wed";67;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +56;"services";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"fri";185;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";62;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +40;"admin.";"divorced";"high.school";"no";"yes";"yes";"cellular";"jul";"mon";52;10;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +59;"entrepreneur";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"thu";146;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +31;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"dec";"wed";854;1;999;0;"nonexistent";-3;92.713;-33;0.715;5023.5;"yes" +34;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";244;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +28;"unemployed";"single";"basic.9y";"no";"no";"yes";"cellular";"aug";"tue";261;1;999;1;"failure";-1.7;94.027;-38.3;0.899;4991.6;"yes" +40;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"fri";141;9;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +42;"technician";"married";"high.school";"no";"yes";"no";"cellular";"apr";"thu";163;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.406;5099.1;"yes" +49;"admin.";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"mon";161;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +48;"admin.";"married";"high.school";"unknown";"yes";"yes";"cellular";"jul";"thu";64;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +41;"technician";"single";"university.degree";"unknown";"no";"no";"telephone";"may";"wed";79;8;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"oct";"wed";364;1;999;1;"failure";-3.4;92.431;-26.9;0.742;5017.5;"yes" +39;"services";"married";"high.school";"no";"yes";"yes";"telephone";"jun";"mon";149;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +42;"services";"single";"basic.6y";"no";"yes";"yes";"cellular";"may";"wed";11;8;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +32;"services";"married";"high.school";"no";"no";"no";"cellular";"apr";"fri";1090;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no" +47;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";145;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +35;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";139;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +60;"admin.";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"thu";259;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +30;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";18;11;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +54;"entrepreneur";"married";"basic.9y";"no";"no";"yes";"telephone";"jun";"fri";249;6;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +39;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";85;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +61;"unknown";"single";"basic.4y";"no";"yes";"yes";"cellular";"may";"tue";131;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +43;"unemployed";"married";"basic.9y";"unknown";"yes";"yes";"cellular";"nov";"mon";252;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +32;"technician";"single";"university.degree";"unknown";"no";"no";"telephone";"may";"wed";857;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"yes" +48;"blue-collar";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"tue";231;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"entrepreneur";"divorced";"university.degree";"no";"no";"yes";"cellular";"may";"thu";95;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +34;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"may";"wed";168;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +41;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";269;7;6;3;"success";-1.7;94.215;-40.3;0.896;4991.6;"no" +36;"self-employed";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"mon";101;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";147;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";120;11;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +58;"housemaid";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";533;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +40;"services";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";377;3;999;1;"failure";-1.8;93.075;-47.1;1.466;5099.1;"no" +36;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";161;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +49;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"tue";181;4;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +45;"blue-collar";"married";"unknown";"no";"yes";"yes";"cellular";"apr";"fri";637;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +36;"self-employed";"single";"university.degree";"no";"no";"yes";"cellular";"jun";"mon";458;1;4;4;"success";-1.7;94.055;-39.8;0.72;4991.6;"yes" +32;"unemployed";"single";"professional.course";"no";"yes";"yes";"cellular";"jun";"wed";310;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.704;4991.6;"yes" +55;"entrepreneur";"divorced";"unknown";"no";"no";"no";"cellular";"jul";"tue";67;9;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +28;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";497;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +76;"retired";"married";"professional.course";"unknown";"yes";"no";"cellular";"jun";"tue";352;1;3;1;"success";-1.7;94.055;-39.8;0.761;4991.6;"yes" +46;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";247;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +28;"management";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"tue";368;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.819;5017.5;"no" +30;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"thu";115;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +52;"housemaid";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";188;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +42;"technician";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"tue";474;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"management";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"tue";269;10;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"unknown";"high.school";"no";"yes";"no";"cellular";"aug";"wed";536;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +47;"housemaid";"divorced";"basic.4y";"unknown";"yes";"yes";"telephone";"nov";"wed";475;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +56;"technician";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"fri";178;2;3;1;"success";-3.4;92.649;-30.1;0.716;5017.5;"yes" +33;"blue-collar";"single";"basic.4y";"no";"no";"no";"cellular";"may";"tue";313;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +38;"blue-collar";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";147;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";210;2;15;1;"success";-1.7;94.215;-40.3;0.846;4991.6;"no" +31;"student";"single";"unknown";"no";"no";"no";"cellular";"may";"thu";243;2;999;1;"failure";-1.8;93.876;-40;0.677;5008.7;"yes" +35;"self-employed";"married";"university.degree";"no";"no";"yes";"telephone";"may";"thu";188;6;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +41;"blue-collar";"married";"basic.6y";"unknown";"no";"yes";"cellular";"may";"tue";178;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +41;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";95;1;3;1;"success";-3.4;92.649;-30.1;0.715;5017.5;"yes" +30;"services";"married";"high.school";"unknown";"no";"no";"telephone";"may";"wed";629;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +36;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"apr";"fri";245;5;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +38;"self-employed";"married";"high.school";"no";"yes";"no";"telephone";"jul";"tue";121;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +28;"student";"single";"unknown";"unknown";"yes";"no";"cellular";"aug";"wed";453;1;999;1;"failure";-1.7;94.027;-38.3;0.9;4991.6;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";330;1;10;1;"success";-1.8;93.749;-34.6;0.644;5008.7;"yes" +42;"technician";"single";"unknown";"no";"yes";"no";"cellular";"aug";"tue";158;1;999;1;"failure";-2.9;92.201;-31.4;0.884;5076.2;"no" +40;"unemployed";"single";"basic.4y";"no";"no";"no";"cellular";"jun";"tue";355;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.252;5076.2;"yes" +31;"entrepreneur";"single";"basic.6y";"unknown";"yes";"yes";"telephone";"jun";"fri";8;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +39;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";50;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +37;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";56;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +52;"housemaid";"married";"basic.6y";"no";"yes";"no";"cellular";"aug";"tue";112;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";240;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"unemployed";"married";"university.degree";"no";"no";"yes";"telephone";"jul";"fri";85;3;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +34;"services";"single";"high.school";"no";"no";"no";"telephone";"jul";"tue";29;16;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";47;8;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +56;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"wed";99;6;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +47;"services";"married";"high.school";"no";"yes";"no";"cellular";"aug";"mon";140;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +41;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";186;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +34;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";145;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +35;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"fri";70;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +19;"student";"single";"high.school";"unknown";"yes";"no";"cellular";"may";"tue";338;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +28;"unemployed";"single";"high.school";"no";"yes";"no";"telephone";"jul";"wed";203;1;999;0;"nonexistent";1.4;93.918;-42.7;4.956;5228.1;"no" +41;"blue-collar";"divorced";"basic.6y";"no";"yes";"yes";"telephone";"may";"wed";343;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +27;"services";"single";"high.school";"unknown";"no";"no";"cellular";"may";"fri";54;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";57;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"tue";231;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +32;"services";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";168;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +43;"management";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";764;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +42;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"wed";73;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"self-employed";"single";"basic.9y";"no";"no";"yes";"telephone";"oct";"mon";5;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.953;4963.6;"no" +34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jun";"mon";62;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"no" +26;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";345;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"tue";125;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +61;"retired";"married";"basic.9y";"no";"no";"no";"cellular";"apr";"thu";165;2;999;0;"nonexistent";-1.8;93.749;-34.6;0.659;5008.7;"no" +48;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"mon";179;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";382;3;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +50;"blue-collar";"married";"unknown";"unknown";"no";"no";"cellular";"jul";"thu";84;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +32;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";185;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";46;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"jun";"mon";267;10;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +35;"management";"married";"university.degree";"no";"no";"yes";"telephone";"aug";"mon";67;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +37;"technician";"single";"high.school";"no";"no";"no";"telephone";"jun";"mon";394;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +48;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"tue";130;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"unemployed";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"mon";57;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +47;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"mon";108;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";873;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"yes" +53;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";119;4;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +27;"services";"married";"high.school";"unknown";"no";"yes";"telephone";"may";"fri";100;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"thu";69;6;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +52;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";161;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +39;"admin.";"married";"basic.6y";"unknown";"no";"no";"cellular";"jul";"wed";1176;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +56;"retired";"single";"professional.course";"unknown";"yes";"no";"cellular";"jul";"fri";161;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"mon";77;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";24;10;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +53;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"sep";"fri";384;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.803;5017.5;"no" +32;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";278;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +29;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";33;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.859;5076.2;"no" +36;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"jul";"tue";305;7;999;0;"nonexistent";-2.9;92.469;-33.6;0.937;5076.2;"no" +24;"technician";"single";"professional.course";"no";"no";"no";"cellular";"may";"fri";582;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +49;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";199;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +28;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";187;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +51;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"mon";200;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +33;"unemployed";"married";"high.school";"no";"yes";"yes";"cellular";"may";"mon";109;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +34;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"thu";38;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +35;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"wed";225;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"no" +39;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"dec";"mon";387;1;6;2;"success";-3;92.713;-33;0.706;5023.5;"yes" +34;"management";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";84;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";67;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +49;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"cellular";"may";"mon";290;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";8;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +53;"self-employed";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";600;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +51;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";448;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"technician";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";62;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";602;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +51;"management";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"mon";104;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";617;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +41;"management";"married";"unknown";"no";"yes";"no";"telephone";"jun";"fri";143;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +39;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"thu";476;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"yes" +27;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"tue";185;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +26;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"fri";338;1;7;1;"success";-3.4;92.649;-30.1;0.714;5017.5;"yes" +31;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";115;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +49;"retired";"divorced";"professional.course";"no";"yes";"yes";"telephone";"aug";"tue";128;8;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +47;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"thu";69;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +39;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"tue";0;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +56;"technician";"married";"professional.course";"no";"no";"no";"cellular";"nov";"thu";51;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";375;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +44;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"may";"tue";177;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +52;"services";"married";"high.school";"no";"yes";"no";"telephone";"nov";"tue";251;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +25;"services";"single";"high.school";"no";"no";"no";"cellular";"aug";"fri";553;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.869;5076.2;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"wed";154;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +41;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"thu";74;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +37;"technician";"single";"high.school";"no";"yes";"no";"telephone";"apr";"thu";63;2;999;2;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +38;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";461;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +34;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"thu";223;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +31;"management";"single";"high.school";"no";"no";"no";"cellular";"may";"wed";90;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +39;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"aug";"wed";145;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +36;"housemaid";"divorced";"basic.4y";"no";"yes";"no";"cellular";"nov";"tue";163;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +38;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"cellular";"jul";"tue";319;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"technician";"divorced";"professional.course";"no";"yes";"yes";"cellular";"aug";"tue";80;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";689;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"yes" +51;"services";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";236;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +52;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"may";"fri";81;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +55;"technician";"married";"professional.course";"no";"no";"no";"cellular";"nov";"fri";182;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";90;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"tue";75;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +29;"blue-collar";"married";"high.school";"no";"no";"no";"telephone";"jun";"thu";718;13;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +38;"blue-collar";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";321;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"technician";"married";"high.school";"no";"no";"no";"cellular";"nov";"mon";198;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +35;"entrepreneur";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";42;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";195;2;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +47;"housemaid";"married";"unknown";"no";"yes";"no";"cellular";"nov";"wed";87;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";322;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +39;"admin.";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"wed";131;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +56;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"jun";"fri";129;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +31;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";458;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +46;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";796;5;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"yes" +44;"unknown";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";153;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +36;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"may";"tue";246;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +31;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";662;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +37;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";475;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +32;"management";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";75;2;999;0;"nonexistent";-1.8;92.843;-50;1.703;5099.1;"no" +48;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"tue";315;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +51;"entrepreneur";"married";"professional.course";"unknown";"no";"no";"cellular";"may";"mon";295;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +30;"unemployed";"married";"unknown";"no";"yes";"no";"cellular";"nov";"thu";216;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"technician";"married";"professional.course";"unknown";"yes";"yes";"cellular";"jul";"tue";144;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"blue-collar";"single";"high.school";"no";"yes";"yes";"telephone";"jun";"thu";21;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.729;4991.6;"no" +36;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";219;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +55;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"cellular";"may";"fri";278;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +51;"services";"married";"professional.course";"unknown";"no";"no";"cellular";"may";"thu";113;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +42;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"wed";799;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";142;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +59;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";61;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +31;"services";"single";"high.school";"no";"no";"yes";"cellular";"jul";"thu";9;17;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +31;"admin.";"married";"professional.course";"no";"no";"yes";"cellular";"dec";"mon";367;2;999;1;"failure";-3;92.713;-33;0.709;5023.5;"yes" +34;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"may";"fri";20;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +37;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"mon";204;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +25;"blue-collar";"single";"basic.4y";"no";"no";"no";"telephone";"jun";"wed";107;19;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +34;"self-employed";"married";"university.degree";"no";"unknown";"unknown";"cellular";"jul";"fri";156;3;999;2;"failure";-1.7;94.215;-40.3;0.896;4991.6;"no" +37;"technician";"married";"high.school";"no";"yes";"no";"telephone";"jun";"tue";267;3;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +26;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"tue";232;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +24;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";112;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"services";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";122;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +28;"admin.";"single";"professional.course";"no";"no";"yes";"telephone";"jun";"thu";253;1;999;0;"nonexistent";1.4;94.465;-41.8;4.955;5228.1;"no" +31;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";715;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +32;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"tue";77;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +52;"retired";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"wed";633;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes" +41;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";348;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"blue-collar";"single";"basic.6y";"no";"no";"no";"cellular";"nov";"tue";238;1;999;0;"nonexistent";-1.1;94.767;-50.8;1.046;4963.6;"yes" +32;"blue-collar";"married";"high.school";"no";"no";"yes";"telephone";"jun";"mon";140;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +24;"services";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";139;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"services";"divorced";"basic.4y";"no";"no";"no";"cellular";"nov";"wed";134;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +57;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"sep";"tue";473;1;3;5;"success";-1.1;94.199;-37.5;0.877;4963.6;"yes" +36;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"wed";275;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +46;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"fri";6;1;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +55;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"thu";230;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"wed";207;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +37;"housemaid";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"thu";126;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +33;"management";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";400;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"aug";"thu";226;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"wed";131;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +33;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"jun";"tue";46;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +31;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";301;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +47;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"tue";1014;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +24;"student";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";557;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +30;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";229;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +48;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"jun";"thu";700;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +29;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";116;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +47;"technician";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";72;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +32;"technician";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";195;3;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +32;"services";"single";"unknown";"no";"no";"yes";"cellular";"jul";"thu";415;2;999;0;"nonexistent";-1.7;94.215;-40.3;0.846;4991.6;"yes" +48;"entrepreneur";"married";"basic.6y";"no";"no";"no";"cellular";"may";"wed";119;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +34;"technician";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"thu";114;2;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +42;"admin.";"single";"high.school";"no";"no";"no";"cellular";"aug";"wed";127;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";122;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +28;"unemployed";"single";"basic.4y";"no";"yes";"no";"cellular";"oct";"fri";160;2;4;1;"success";-3.4;92.431;-26.9;0.752;5017.5;"no" +58;"retired";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"tue";1045;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +43;"management";"married";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";70;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +28;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";326;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"yes" +37;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";261;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"yes" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";345;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"thu";199;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +36;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"jul";"mon";84;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +50;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";383;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"self-employed";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"fri";78;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"apr";"mon";180;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +46;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";185;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +34;"technician";"single";"high.school";"no";"no";"no";"cellular";"may";"wed";63;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +52;"admin.";"divorced";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";219;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +54;"technician";"married";"university.degree";"unknown";"no";"no";"cellular";"may";"fri";217;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +43;"services";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";135;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +35;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";130;3;999;1;"failure";-1.8;92.893;-46.2;1.354;5099.1;"no" +40;"entrepreneur";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"wed";448;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";123;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +31;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";409;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";142;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +29;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";96;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +53;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"tue";122;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +47;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"mon";1152;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +51;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";81;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";137;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +51;"technician";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"tue";166;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +44;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"fri";194;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +59;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";47;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +31;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";369;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"tue";259;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +41;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"fri";219;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +32;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"mon";126;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +32;"housemaid";"single";"high.school";"no";"no";"no";"telephone";"jun";"thu";406;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +56;"unknown";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";102;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +51;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";139;5;999;0;"nonexistent";-2.9;92.469;-33.6;0.921;5076.2;"yes" +53;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"cellular";"jul";"thu";36;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +25;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";234;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"management";"married";"university.degree";"no";"no";"yes";"cellular";"nov";"wed";113;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +41;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"mon";62;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"services";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";363;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +48;"management";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";725;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"yes" +28;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"fri";103;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +43;"services";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"thu";110;17;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +29;"management";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";99;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"blue-collar";"divorced";"high.school";"no";"yes";"no";"telephone";"jun";"wed";133;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";873;8;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +49;"admin.";"single";"basic.6y";"no";"yes";"yes";"cellular";"apr";"fri";441;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +55;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";94;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"management";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";125;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +29;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";75;1;4;2;"success";-2.9;92.201;-31.4;0.873;5076.2;"no" +35;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"apr";"thu";358;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +40;"technician";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"mon";141;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +42;"housemaid";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";176;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"admin.";"single";"high.school";"no";"yes";"yes";"telephone";"jun";"mon";123;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"fri";183;3;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +39;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";169;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +55;"technician";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"tue";452;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"wed";86;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +34;"blue-collar";"married";"basic.6y";"unknown";"no";"yes";"telephone";"jun";"mon";35;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +45;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";226;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +50;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";183;1;3;1;"success";-3.4;92.649;-30.1;0.714;5017.5;"yes" +55;"self-employed";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";604;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +28;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";60;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +30;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"tue";79;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +32;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"mon";87;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +31;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";196;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"thu";21;12;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +39;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"mon";87;5;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +24;"admin.";"single";"high.school";"unknown";"yes";"yes";"cellular";"jul";"thu";493;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +57;"retired";"married";"professional.course";"no";"yes";"no";"cellular";"jun";"mon";166;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"yes" +27;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";131;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +44;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";254;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"yes" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";232;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +37;"housemaid";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";262;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +29;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"wed";406;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +31;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"tue";180;1;10;1;"success";-1.8;93.369;-34.8;0.646;5008.7;"yes" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"fri";198;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";128;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +48;"services";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"thu";137;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +42;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"may";"fri";262;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +31;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"wed";212;2;3;6;"success";-1.1;94.767;-50.8;1.048;4963.6;"no" +41;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"fri";204;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +33;"self-employed";"single";"basic.4y";"no";"yes";"no";"telephone";"may";"fri";742;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +45;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jul";"wed";20;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";243;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jul";"wed";84;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +53;"self-employed";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";62;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +32;"blue-collar";"single";"basic.6y";"unknown";"unknown";"unknown";"cellular";"jul";"tue";199;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +27;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";401;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +46;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";98;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"tue";103;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";179;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +26;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"fri";133;2;999;1;"failure";-3.4;92.431;-26.9;0.73;5017.5;"no" +47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";100;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +39;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";504;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +29;"self-employed";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"thu";22;8;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jun";"wed";206;1;3;1;"success";-1.7;94.055;-39.8;0.715;4991.6;"yes" +56;"retired";"married";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";97;1;3;2;"success";-2.9;92.201;-31.4;0.883;5076.2;"no" +30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"fri";166;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes" +32;"technician";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"thu";131;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +33;"services";"married";"professional.course";"no";"no";"no";"cellular";"oct";"mon";291;1;999;3;"failure";-1.1;94.601;-49.5;0.977;4963.6;"no" +49;"technician";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";107;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"wed";134;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +58;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"nov";"wed";1092;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.716;5017.5;"no" +37;"admin.";"married";"professional.course";"unknown";"yes";"no";"cellular";"nov";"wed";37;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +48;"housemaid";"married";"high.school";"no";"no";"no";"cellular";"jun";"tue";399;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.252;5076.2;"no" +39;"technician";"married";"basic.6y";"no";"no";"no";"cellular";"apr";"tue";88;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"no" +53;"admin.";"single";"basic.6y";"no";"yes";"no";"telephone";"may";"tue";27;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +59;"housemaid";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"tue";70;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +40;"admin.";"married";"university.degree";"unknown";"no";"yes";"telephone";"may";"mon";61;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"cellular";"nov";"tue";182;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +39;"technician";"married";"professional.course";"no";"no";"no";"telephone";"oct";"thu";171;1;999;0;"nonexistent";-0.1;93.798;-40.4;4.921;5195.8;"yes" +30;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"fri";138;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +48;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";203;7;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +51;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"mon";81;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +29;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";190;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";136;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +30;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";176;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +62;"retired";"single";"university.degree";"no";"yes";"yes";"cellular";"may";"mon";112;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +30;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";93;4;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +36;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"aug";"fri";159;1;3;2;"success";-2.9;92.201;-31.4;0.849;5076.2;"yes" +32;"student";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";21;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +56;"unemployed";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"fri";322;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +39;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"mon";58;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +36;"admin.";"single";"high.school";"no";"no";"yes";"telephone";"may";"fri";148;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";167;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +34;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"tue";137;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +21;"student";"single";"high.school";"no";"no";"no";"cellular";"oct";"tue";362;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.982;4963.6;"yes" +44;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"apr";"mon";81;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"admin.";"married";"high.school";"no";"no";"no";"telephone";"jun";"thu";952;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes" +37;"admin.";"single";"professional.course";"no";"no";"no";"cellular";"aug";"tue";223;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +37;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";8;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";58;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +47;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"mon";147;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"tue";72;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";316;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +57;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"may";"mon";190;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +29;"services";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";339;5;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +33;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"aug";"thu";49;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +40;"admin.";"divorced";"professional.course";"no";"yes";"yes";"cellular";"aug";"fri";90;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"technician";"married";"university.degree";"unknown";"unknown";"unknown";"cellular";"may";"tue";426;1;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"yes" +27;"admin.";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"tue";81;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +41;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";106;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +58;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"wed";374;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +28;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"mon";329;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +55;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"aug";"tue";244;2;6;3;"success";-1.7;94.027;-38.3;0.904;4991.6;"yes" +54;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"oct";"thu";99;3;999;0;"nonexistent";-1.1;94.601;-49.5;0.987;4963.6;"no" +56;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"wed";287;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +56;"unemployed";"divorced";"high.school";"unknown";"yes";"no";"cellular";"nov";"fri";109;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +40;"technician";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";118;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +49;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";86;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";123;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +29;"student";"single";"professional.course";"no";"no";"no";"telephone";"nov";"fri";232;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +31;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"thu";167;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +30;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";166;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +34;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";111;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +44;"entrepreneur";"divorced";"basic.4y";"no";"no";"no";"cellular";"jul";"fri";170;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"technician";"single";"university.degree";"no";"no";"no";"cellular";"may";"fri";457;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +38;"housemaid";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"wed";403;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.03;4963.6;"yes" +37;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";48;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +29;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";5;23;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";374;12;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";85;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +43;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"jul";"tue";393;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +33;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";92;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"fri";256;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +57;"retired";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";124;6;999;0;"nonexistent";-1.1;94.767;-50.8;1.031;4963.6;"no" +29;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";137;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +36;"entrepreneur";"married";"unknown";"unknown";"yes";"no";"cellular";"jul";"mon";44;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +48;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";268;1;3;3;"success";-1.8;93.876;-40;0.668;5008.7;"yes" +30;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"mon";231;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +45;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"fri";64;1;999;2;"failure";-3.4;92.379;-29.8;0.741;5017.5;"no" +42;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"thu";56;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +31;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";96;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"services";"single";"unknown";"no";"yes";"no";"cellular";"may";"tue";83;9;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +53;"services";"married";"unknown";"no";"yes";"no";"cellular";"jun";"tue";501;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes" +58;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"oct";"mon";9;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.953;4963.6;"no" +32;"services";"married";"high.school";"no";"no";"yes";"cellular";"apr";"fri";340;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"unemployed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";124;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +53;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"mon";545;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +53;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";35;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +32;"housemaid";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";73;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"services";"single";"basic.6y";"no";"unknown";"unknown";"telephone";"jun";"thu";131;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +43;"unemployed";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";305;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +44;"housemaid";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";124;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +45;"blue-collar";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"thu";124;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +41;"blue-collar";"married";"unknown";"unknown";"no";"no";"cellular";"apr";"fri";203;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +64;"unknown";"married";"unknown";"no";"yes";"yes";"cellular";"aug";"thu";219;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.873;5076.2;"no" +30;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"jul";"thu";150;10;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";3643;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +27;"admin.";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";1105;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +38;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"wed";11;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +37;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"may";"mon";553;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +50;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"telephone";"jul";"thu";90;1;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +60;"technician";"divorced";"professional.course";"unknown";"yes";"no";"telephone";"may";"wed";202;6;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +50;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"mon";73;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +34;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";127;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"admin.";"married";"basic.6y";"no";"no";"yes";"cellular";"jul";"fri";268;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"services";"single";"professional.course";"unknown";"yes";"no";"cellular";"may";"thu";199;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +36;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"thu";166;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"management";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";838;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes" +31;"blue-collar";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"wed";829;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes" +27;"student";"single";"university.degree";"no";"yes";"no";"telephone";"may";"mon";104;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"mon";312;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jul";"fri";146;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +53;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";313;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +27;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"thu";88;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"housemaid";"married";"university.degree";"no";"no";"no";"cellular";"jul";"wed";388;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"cellular";"may";"wed";136;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +59;"technician";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"thu";24;16;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +49;"housemaid";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";565;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +32;"management";"married";"high.school";"no";"no";"yes";"cellular";"nov";"mon";256;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"unemployed";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";218;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +25;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";199;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +45;"blue-collar";"married";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"wed";207;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +34;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"fri";651;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";247;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +53;"blue-collar";"married";"unknown";"unknown";"yes";"no";"cellular";"jul";"fri";386;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"technician";"single";"professional.course";"unknown";"yes";"no";"cellular";"nov";"thu";239;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +39;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"thu";183;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +40;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"fri";164;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +27;"services";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";104;1;6;1;"success";-1.8;93.369;-34.8;0.652;5008.7;"yes" +55;"unemployed";"married";"basic.9y";"no";"yes";"no";"cellular";"oct";"tue";156;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.728;5017.5;"no" +32;"services";"married";"high.school";"no";"no";"no";"cellular";"aug";"wed";55;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +54;"admin.";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";103;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +39;"unemployed";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"mon";74;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +43;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"thu";644;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +41;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"telephone";"jun";"wed";122;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +26;"admin.";"married";"high.school";"no";"no";"yes";"cellular";"nov";"wed";112;1;999;1;"failure";-3.4;92.649;-30.1;0.719;5017.5;"no" +52;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"wed";203;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +44;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";96;2;4;1;"success";-2.9;92.201;-31.4;0.879;5076.2;"no" +38;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"nov";"wed";145;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +42;"services";"married";"university.degree";"no";"unknown";"unknown";"cellular";"jun";"tue";122;1;999;1;"failure";-2.9;92.963;-40.8;1.099;5076.2;"no" +44;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";135;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +27;"admin.";"single";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";195;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +28;"management";"married";"university.degree";"no";"no";"no";"telephone";"jun";"wed";771;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"yes" +47;"housemaid";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";232;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.843;5076.2;"yes" +34;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"mon";206;6;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +55;"blue-collar";"divorced";"basic.4y";"unknown";"yes";"yes";"cellular";"may";"mon";163;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"mon";513;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +25;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"aug";"tue";103;3;999;0;"nonexistent";-2.9;92.201;-31.4;0.838;5076.2;"no" +31;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";150;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +35;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"fri";393;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +50;"management";"married";"university.degree";"no";"no";"no";"cellular";"sep";"thu";718;4;999;3;"failure";-1.1;94.199;-37.5;0.878;4963.6;"no" +22;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"fri";106;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +48;"unknown";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"tue";375;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +35;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"wed";36;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"wed";107;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +50;"blue-collar";"married";"basic.4y";"no";"yes";"yes";"telephone";"nov";"tue";234;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +25;"student";"single";"high.school";"no";"yes";"no";"cellular";"jul";"tue";112;1;999;1;"failure";-2.9;92.469;-33.6;1.044;5076.2;"no" +51;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"mon";231;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"student";"single";"high.school";"unknown";"yes";"no";"telephone";"may";"tue";107;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +59;"management";"married";"university.degree";"no";"yes";"no";"cellular";"dec";"thu";646;3;6;1;"success";-3;92.713;-33;0.7;5023.5;"no" +37;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";138;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +40;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"tue";181;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +26;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"jun";"wed";605;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";84;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +33;"management";"single";"university.degree";"no";"yes";"yes";"cellular";"apr";"wed";1176;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.498;5099.1;"yes" +35;"self-employed";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";140;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +32;"student";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";209;12;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +35;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";356;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +31;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";984;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"yes" +38;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";693;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes" +30;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"tue";592;3;999;1;"failure";-1.7;94.027;-38.3;0.899;4991.6;"yes" +32;"services";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";628;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"yes" +44;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"thu";556;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";673;8;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";454;4;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +52;"retired";"married";"university.degree";"unknown";"no";"no";"cellular";"nov";"wed";172;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +41;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"fri";198;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +65;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"jun";"mon";89;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"no" +43;"services";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"mon";122;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +40;"blue-collar";"married";"professional.course";"no";"no";"yes";"cellular";"nov";"mon";80;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +30;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"fri";70;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +66;"retired";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"wed";211;1;999;1;"failure";-1.7;94.215;-40.3;0.896;4991.6;"no" +44;"services";"single";"high.school";"no";"no";"no";"telephone";"jun";"mon";20;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.72;4991.6;"no" +35;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"jun";"mon";172;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +57;"management";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"wed";338;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +26;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"jun";"wed";83;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +39;"unemployed";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";72;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +45;"services";"married";"basic.6y";"no";"unknown";"unknown";"telephone";"jun";"wed";173;10;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +35;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";192;2;999;1;"failure";-3.4;92.649;-30.1;0.714;5017.5;"yes" +42;"housemaid";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";90;4;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"wed";146;1;999;1;"failure";-3.4;92.431;-26.9;0.742;5017.5;"no" +46;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"may";"mon";195;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +35;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";192;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +24;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";145;4;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +50;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";204;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";67;6;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +39;"technician";"single";"professional.course";"no";"no";"no";"telephone";"jul";"thu";206;1;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +57;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"mon";769;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +42;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"tue";110;4;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +31;"blue-collar";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";35;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +41;"admin.";"single";"unknown";"no";"yes";"yes";"telephone";"may";"mon";1111;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"yes" +25;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"fri";114;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +58;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jul";"thu";48;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";367;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"technician";"single";"unknown";"no";"no";"no";"telephone";"may";"tue";162;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +41;"management";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"mon";213;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"blue-collar";"divorced";"basic.6y";"no";"no";"no";"cellular";"nov";"wed";55;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +44;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"mon";33;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +52;"services";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";119;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +26;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";45;2;999;2;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +43;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"may";"wed";431;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +43;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";134;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +26;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"mon";149;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +34;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"tue";162;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +24;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"mon";401;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +33;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";92;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"self-employed";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";843;8;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +31;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"mon";363;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";668;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +25;"self-employed";"single";"unknown";"no";"no";"no";"cellular";"apr";"mon";131;2;999;1;"failure";-1.8;93.749;-34.6;0.643;5008.7;"no" +26;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jul";"wed";342;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +56;"retired";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";88;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"thu";21;9;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"nov";"fri";136;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.716;5017.5;"no" +22;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"mon";848;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +50;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"tue";128;6;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";606;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +35;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";271;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +48;"services";"divorced";"basic.9y";"no";"unknown";"unknown";"cellular";"may";"thu";67;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +25;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";95;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"blue-collar";"single";"basic.4y";"no";"no";"no";"cellular";"may";"thu";93;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +52;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"sep";"mon";211;1;999;1;"failure";-3.4;92.379;-29.8;0.797;5017.5;"yes" +48;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";239;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +44;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"apr";"fri";225;3;999;2;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +30;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";178;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"management";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";206;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +52;"unemployed";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";115;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +44;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"oct";"tue";123;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.742;5017.5;"no" +29;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"thu";254;3;3;1;"success";-2.9;92.201;-31.4;0.873;5076.2;"yes" +41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";85;5;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +26;"technician";"married";"high.school";"no";"yes";"no";"telephone";"may";"fri";305;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";233;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";191;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +29;"admin.";"single";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";198;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";148;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +56;"technician";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"tue";272;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +23;"blue-collar";"single";"professional.course";"no";"yes";"no";"cellular";"may";"fri";136;3;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +50;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";855;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"yes" +29;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";565;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"yes" +31;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"thu";140;3;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +48;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"mon";248;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +27;"blue-collar";"single";"unknown";"no";"unknown";"unknown";"cellular";"jul";"tue";81;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +24;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"apr";"fri";332;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"technician";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";208;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +42;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"tue";228;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +37;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";14;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";118;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +58;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";164;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +54;"retired";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";148;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +54;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";149;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +39;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"mon";71;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +48;"admin.";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";517;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +34;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"cellular";"apr";"fri";204;5;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +28;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";77;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +30;"admin.";"single";"high.school";"no";"no";"no";"cellular";"aug";"fri";72;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +59;"retired";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"tue";77;8;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +29;"admin.";"single";"high.school";"unknown";"yes";"no";"cellular";"jul";"fri";139;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +25;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"fri";498;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +47;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"sep";"tue";159;1;999;1;"failure";-3.4;92.379;-29.8;0.755;5017.5;"no" +32;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";301;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +30;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"jun";"tue";338;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +24;"technician";"single";"university.degree";"no";"no";"no";"cellular";"oct";"wed";197;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.724;5017.5;"no" +58;"entrepreneur";"married";"high.school";"no";"no";"no";"cellular";"sep";"mon";145;1;999;2;"failure";-1.1;94.199;-37.5;0.882;4963.6;"no" +44;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";158;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +36;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"sep";"tue";28;2;999;0;"nonexistent";-3.4;92.379;-29.8;0.819;5017.5;"no" +33;"self-employed";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";355;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"jul";"mon";42;6;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +38;"admin.";"single";"university.degree";"unknown";"yes";"no";"telephone";"jun";"tue";992;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes" +35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";108;4;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +29;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"fri";202;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +58;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";260;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"tue";269;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +55;"self-employed";"married";"basic.4y";"unknown";"unknown";"unknown";"cellular";"aug";"thu";169;5;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +53;"management";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";186;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"entrepreneur";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"fri";215;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +36;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"thu";54;4;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +56;"retired";"married";"professional.course";"no";"no";"no";"cellular";"aug";"tue";139;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";99;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +48;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"aug";"fri";67;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +31;"technician";"married";"university.degree";"no";"no";"no";"telephone";"nov";"mon";57;4;999;0;"nonexistent";-3.4;92.649;-30.1;0.714;5017.5;"no" +50;"self-employed";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"mon";311;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +38;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";25;7;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +34;"admin.";"single";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";17;16;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";234;1;999;2;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +51;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";386;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +26;"admin.";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";619;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"yes" +34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"sep";"fri";260;3;3;2;"success";-3.4;92.379;-29.8;0.773;5017.5;"yes" +41;"technician";"married";"university.degree";"unknown";"yes";"yes";"cellular";"apr";"thu";139;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.435;5099.1;"no" +41;"technician";"married";"professional.course";"no";"unknown";"unknown";"cellular";"jun";"tue";318;1;4;3;"success";-2.9;92.963;-40.8;1.262;5076.2;"yes" +26;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"wed";71;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +32;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"may";"wed";459;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"yes" +49;"blue-collar";"married";"basic.6y";"unknown";"no";"yes";"cellular";"may";"tue";354;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +39;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";225;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +38;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"fri";144;4;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +52;"retired";"divorced";"professional.course";"no";"no";"no";"cellular";"jul";"tue";867;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +57;"self-employed";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"thu";1441;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +38;"housemaid";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";100;5;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +31;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";172;2;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"fri";42;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +42;"self-employed";"married";"professional.course";"unknown";"unknown";"unknown";"cellular";"may";"fri";665;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +32;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"wed";154;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";97;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +32;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"thu";356;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +40;"management";"married";"unknown";"no";"yes";"no";"telephone";"jun";"fri";170;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"fri";570;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes" +44;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";351;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +46;"entrepreneur";"married";"unknown";"unknown";"yes";"no";"telephone";"jun";"fri";86;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +47;"admin.";"married";"basic.6y";"unknown";"yes";"no";"cellular";"apr";"thu";399;2;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +44;"management";"married";"basic.6y";"no";"yes";"yes";"cellular";"mar";"thu";218;1;999;0;"nonexistent";-1.8;92.843;-50;1.757;5099.1;"no" +39;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"wed";138;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +38;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"mar";"thu";63;2;999;0;"nonexistent";-1.8;92.843;-50;1.757;5099.1;"yes" +59;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"mon";293;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"management";"divorced";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";138;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +51;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";295;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.215;5076.2;"no" +55;"unemployed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";303;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +49;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"thu";1171;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +44;"admin.";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"tue";222;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +29;"blue-collar";"single";"high.school";"no";"yes";"yes";"cellular";"may";"wed";146;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +49;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"tue";286;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";77;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +45;"admin.";"divorced";"basic.9y";"unknown";"no";"no";"cellular";"may";"thu";270;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +39;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"nov";"thu";281;2;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +35;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"wed";91;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +55;"entrepreneur";"single";"unknown";"unknown";"no";"no";"telephone";"jul";"wed";542;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes" +30;"services";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";111;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +26;"management";"single";"university.degree";"unknown";"yes";"no";"cellular";"jul";"wed";124;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"fri";347;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +29;"self-employed";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"tue";32;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";50;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +35;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";224;3;999;0;"nonexistent";-2.9;92.201;-31.4;0.869;5076.2;"no" +41;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"tue";175;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +31;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";258;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +30;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";514;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";166;3;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +31;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"jun";"tue";70;8;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"oct";"thu";166;3;6;2;"success";-3.4;92.431;-26.9;0.74;5017.5;"yes" +30;"management";"divorced";"university.degree";"no";"no";"yes";"telephone";"may";"fri";164;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +47;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";429;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +32;"services";"married";"professional.course";"no";"yes";"no";"cellular";"may";"tue";146;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +49;"management";"married";"university.degree";"unknown";"yes";"no";"telephone";"jul";"mon";182;12;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"technician";"married";"high.school";"no";"yes";"no";"telephone";"jun";"fri";145;24;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +60;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";59;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"mon";274;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +39;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"thu";328;2;6;3;"success";-1.8;93.876;-40;0.683;5008.7;"yes" +52;"admin.";"married";"unknown";"no";"no";"no";"cellular";"aug";"thu";331;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +29;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"thu";108;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +40;"blue-collar";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";498;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"fri";147;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +38;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";275;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +37;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";316;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +60;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"jul";"wed";105;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +26;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";200;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +37;"management";"married";"university.degree";"no";"no";"no";"telephone";"jun";"thu";288;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +56;"services";"married";"high.school";"unknown";"no";"yes";"telephone";"may";"fri";90;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"technician";"married";"high.school";"no";"yes";"yes";"cellular";"aug";"fri";390;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +46;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";318;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +59;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"oct";"tue";85;1;999;0;"nonexistent";-0.1;93.798;-40.4;4.968;5195.8;"yes" +52;"services";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";607;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +40;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"tue";279;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +44;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"fri";40;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";121;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +33;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"fri";335;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +38;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"thu";130;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +53;"entrepreneur";"married";"basic.4y";"no";"yes";"yes";"cellular";"apr";"tue";398;2;999;0;"nonexistent";-1.8;93.749;-34.6;0.644;5008.7;"yes" +56;"unemployed";"divorced";"high.school";"no";"yes";"no";"telephone";"may";"wed";267;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +48;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"aug";"wed";128;6;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +45;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"fri";800;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +56;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"fri";213;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +48;"management";"married";"university.degree";"no";"yes";"no";"cellular";"oct";"wed";294;1;999;1;"failure";-3.4;92.431;-26.9;0.74;5017.5;"yes" +62;"admin.";"married";"high.school";"no";"no";"no";"telephone";"mar";"mon";163;2;999;0;"nonexistent";-1.8;92.843;-50;1.52;5099.1;"yes" +24;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"thu";1150;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"yes" +33;"admin.";"single";"high.school";"no";"no";"no";"cellular";"oct";"mon";87;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.731;5017.5;"no" +49;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"mar";"tue";361;2;999;1;"failure";-1.8;93.369;-34.8;0.635;5008.7;"no" +54;"housemaid";"married";"professional.course";"no";"no";"no";"telephone";"oct";"mon";187;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"no" +57;"technician";"divorced";"university.degree";"no";"no";"yes";"telephone";"jun";"tue";187;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +31;"admin.";"single";"high.school";"no";"no";"no";"cellular";"nov";"fri";89;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +51;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";147;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +35;"admin.";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"mon";95;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"apr";"fri";634;1;999;0;"nonexistent";-1.8;93.749;-34.6;0.644;5008.7;"yes" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";83;1;999;2;"failure";-2.9;92.201;-31.4;0.881;5076.2;"no" +30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";245;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"wed";630;3;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +45;"blue-collar";"single";"high.school";"unknown";"yes";"no";"cellular";"may";"mon";8;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +46;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"mon";372;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +48;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"mon";984;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +31;"entrepreneur";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";1855;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +40;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"fri";133;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +56;"blue-collar";"unknown";"basic.4y";"no";"no";"no";"cellular";"apr";"fri";422;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"technician";"married";"professional.course";"no";"no";"no";"cellular";"may";"mon";377;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"yes" +57;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"nov";"wed";5;1;999;0;"nonexistent";-0.1;93.2;-42;4.663;5195.8;"no" +47;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"may";"fri";261;6;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +36;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"mon";101;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +53;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";429;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +58;"self-employed";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"tue";83;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"cellular";"nov";"tue";95;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";143;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +34;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"thu";266;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +41;"admin.";"married";"basic.6y";"no";"no";"no";"cellular";"apr";"fri";1203;2;999;1;"failure";-1.8;93.075;-47.1;1.479;5099.1;"yes" +30;"unknown";"married";"professional.course";"no";"no";"no";"cellular";"may";"mon";399;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +30;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";129;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +37;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"tue";227;9;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"jul";"tue";723;2;999;0;"nonexistent";1.4;93.918;-42.7;4.955;5228.1;"no" +34;"services";"unknown";"high.school";"no";"yes";"yes";"cellular";"may";"tue";369;2;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +28;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"fri";119;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +29;"entrepreneur";"single";"university.degree";"no";"no";"no";"telephone";"jun";"wed";347;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +44;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";358;4;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +56;"retired";"married";"high.school";"no";"yes";"yes";"cellular";"jul";"fri";308;2;999;0;"nonexistent";-2.9;92.469;-33.6;1.059;5076.2;"yes" +31;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"thu";16;35;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +40;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";128;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +47;"blue-collar";"married";"high.school";"no";"yes";"yes";"telephone";"may";"fri";72;6;6;1;"success";-1.8;92.893;-46.2;1.313;5099.1;"no" +37;"management";"single";"university.degree";"no";"no";"no";"cellular";"may";"tue";107;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +57;"retired";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";768;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"aug";"wed";94;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +52;"self-employed";"single";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";61;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +34;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";78;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +43;"services";"married";"high.school";"no";"no";"yes";"telephone";"may";"tue";262;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"blue-collar";"single";"unknown";"no";"no";"no";"cellular";"mar";"fri";98;2;999;0;"nonexistent";-1.8;93.369;-34.8;0.636;5008.7;"no" +49;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"tue";163;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +25;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jun";"wed";54;3;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +38;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"thu";74;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +40;"unemployed";"divorced";"high.school";"no";"no";"yes";"telephone";"jun";"thu";257;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +31;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"tue";259;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +29;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";64;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +57;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";73;10;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +38;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";525;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +48;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";210;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";823;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes" +30;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"sep";"mon";103;2;999;0;"nonexistent";-3.4;92.379;-29.8;0.771;5017.5;"no" +52;"retired";"divorced";"basic.4y";"unknown";"yes";"yes";"telephone";"jun";"thu";26;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +34;"services";"divorced";"high.school";"no";"no";"no";"cellular";"may";"fri";66;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +60;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"tue";347;2;4;1;"success";-1.1;94.767;-50.8;1.035;4963.6;"no" +37;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";96;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"aug";"wed";56;5;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +57;"admin.";"married";"unknown";"no";"yes";"no";"cellular";"dec";"wed";391;2;999;0;"nonexistent";-3;92.713;-33;0.706;5023.5;"yes" +28;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";226;3;999;1;"failure";-1.7;94.027;-38.3;0.898;4991.6;"no" +61;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"jun";"wed";1076;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";165;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"yes" +36;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"wed";183;9;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +53;"services";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"fri";9;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +36;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"wed";837;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"self-employed";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"mon";464;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +44;"management";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";73;2;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +37;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";271;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +32;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";93;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +44;"blue-collar";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";73;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"management";"single";"university.degree";"no";"yes";"no";"cellular";"may";"fri";468;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +37;"management";"divorced";"unknown";"no";"no";"yes";"cellular";"nov";"mon";74;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +48;"retired";"married";"basic.4y";"unknown";"no";"yes";"cellular";"jul";"mon";780;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"services";"single";"university.degree";"no";"yes";"no";"cellular";"oct";"mon";252;2;3;2;"success";-1.1;94.601;-49.5;0.977;4963.6;"yes" +38;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"tue";258;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"apr";"mon";197;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +57;"housemaid";"married";"basic.4y";"no";"yes";"no";"telephone";"jul";"thu";381;3;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +35;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";15;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"fri";210;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +50;"entrepreneur";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";82;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +49;"management";"married";"university.degree";"no";"no";"no";"cellular";"apr";"thu";289;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +28;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";549;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +53;"admin.";"single";"unknown";"unknown";"no";"no";"cellular";"jul";"tue";183;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +52;"admin.";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"tue";139;2;6;1;"success";-1.7;94.215;-40.3;0.893;4991.6;"no" +35;"admin.";"single";"professional.course";"unknown";"yes";"no";"telephone";"may";"tue";352;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +65;"technician";"married";"professional.course";"no";"no";"no";"cellular";"sep";"thu";263;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +26;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";77;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +56;"blue-collar";"divorced";"basic.9y";"no";"yes";"yes";"cellular";"jul";"mon";123;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"housemaid";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"fri";150;4;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +23;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"mon";34;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";159;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";789;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +50;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";650;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +52;"management";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"fri";135;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +58;"retired";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"mon";83;4;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +37;"blue-collar";"divorced";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";75;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";169;1;7;2;"success";-3.4;92.649;-30.1;0.714;5017.5;"yes" +54;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";150;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +60;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";133;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no" +30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";219;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"apr";"thu";234;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +30;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"jun";"mon";32;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"fri";226;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +37;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";164;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +34;"technician";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";347;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +30;"admin.";"married";"high.school";"no";"unknown";"unknown";"cellular";"nov";"mon";104;1;999;1;"failure";-3.4;92.649;-30.1;0.714;5017.5;"no" +31;"technician";"married";"basic.6y";"no";"yes";"no";"telephone";"nov";"thu";51;8;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +41;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";314;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"yes" +48;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"thu";298;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +21;"student";"single";"high.school";"no";"no";"no";"cellular";"oct";"mon";328;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"yes" +42;"admin.";"married";"unknown";"no";"no";"no";"telephone";"may";"tue";221;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jul";"wed";226;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +42;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";1002;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"thu";105;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +33;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"tue";286;2;999;0;"nonexistent";-1.7;94.055;-39.8;0.761;4991.6;"no" +37;"admin.";"divorced";"university.degree";"unknown";"yes";"no";"cellular";"may";"mon";230;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +37;"blue-collar";"married";"high.school";"unknown";"no";"no";"telephone";"may";"tue";26;14;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +38;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"mar";"wed";141;1;999;1;"failure";-1.8;93.369;-34.8;0.655;5008.7;"yes" +52;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"mon";578;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +44;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";95;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +38;"technician";"single";"high.school";"no";"no";"no";"telephone";"may";"wed";152;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"services";"single";"high.school";"no";"yes";"no";"telephone";"jun";"wed";453;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +32;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"jul";"thu";234;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +32;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"services";"married";"unknown";"no";"no";"yes";"cellular";"jun";"mon";151;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +39;"services";"single";"university.degree";"unknown";"yes";"no";"cellular";"nov";"thu";43;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +57;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"fri";153;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +50;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";160;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.4;5099.1;"yes" +50;"services";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";507;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"yes" +36;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"fri";508;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +40;"services";"divorced";"high.school";"no";"no";"no";"telephone";"jun";"fri";155;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +47;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"telephone";"may";"thu";93;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +36;"student";"single";"unknown";"unknown";"yes";"no";"cellular";"may";"mon";567;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"aug";"tue";167;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +27;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"mon";112;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +60;"retired";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"mon";430;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +37;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"telephone";"nov";"mon";215;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +35;"management";"married";"high.school";"no";"yes";"no";"telephone";"nov";"tue";159;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +49;"admin.";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";43;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +40;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jul";"wed";192;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"may";"tue";545;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +47;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";470;1;4;2;"success";-1.7;94.027;-38.3;0.9;4991.6;"yes" +33;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";191;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +40;"admin.";"single";"high.school";"no";"no";"no";"telephone";"jun";"fri";97;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"mon";86;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +46;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";387;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"mon";221;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +47;"services";"divorced";"high.school";"no";"no";"no";"telephone";"may";"wed";421;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +59;"admin.";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"fri";1241;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +35;"services";"married";"basic.9y";"no";"no";"yes";"telephone";"jun";"thu";98;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";112;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +50;"management";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"fri";381;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +39;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";10;6;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +32;"admin.";"single";"professional.course";"no";"no";"yes";"cellular";"may";"fri";6;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +31;"technician";"married";"university.degree";"no";"no";"yes";"telephone";"may";"wed";125;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"mon";298;6;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +41;"services";"married";"high.school";"unknown";"yes";"yes";"telephone";"jun";"tue";31;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +22;"services";"single";"high.school";"no";"yes";"no";"telephone";"jun";"mon";94;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +28;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"jun";"mon";373;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"no" +41;"admin.";"married";"basic.9y";"no";"yes";"no";"telephone";"jul";"wed";120;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"thu";218;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +53;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"mar";"thu";228;1;999;1;"failure";-1.8;93.369;-34.8;0.65;5008.7;"no" +28;"entrepreneur";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";143;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +62;"management";"divorced";"high.school";"no";"no";"no";"cellular";"aug";"mon";405;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"yes" +52;"admin.";"divorced";"university.degree";"unknown";"yes";"yes";"cellular";"jul";"tue";201;9;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"thu";1148;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"yes" +29;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"nov";"fri";69;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +39;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";182;6;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +39;"technician";"single";"university.degree";"unknown";"no";"yes";"cellular";"oct";"fri";125;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.72;5017.5;"yes" +60;"admin.";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"thu";571;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"yes" +33;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"mon";390;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +32;"blue-collar";"married";"basic.6y";"no";"no";"yes";"cellular";"nov";"wed";188;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +49;"self-employed";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";214;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";469;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"housemaid";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";189;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +38;"services";"married";"high.school";"no";"no";"no";"cellular";"apr";"tue";186;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.384;5099.1;"no" +31;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";112;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +40;"management";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";94;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +28;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"tue";254;5;999;0;"nonexistent";-3.4;92.649;-30.1;0.715;5017.5;"yes" +56;"admin.";"married";"high.school";"no";"no";"no";"cellular";"sep";"thu";276;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.778;5017.5;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";330;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +56;"management";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"fri";62;2;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +35;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";536;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +46;"admin.";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";275;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"wed";230;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +45;"services";"single";"unknown";"no";"no";"no";"telephone";"apr";"fri";541;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes" +34;"management";"divorced";"basic.6y";"unknown";"yes";"no";"telephone";"may";"thu";271;5;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +56;"housemaid";"divorced";"basic.4y";"no";"yes";"no";"cellular";"nov";"thu";212;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +39;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"mon";617;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes" +24;"unknown";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"tue";74;1;3;2;"success";-2.9;92.963;-40.8;1.262;5076.2;"no" +50;"management";"single";"university.degree";"no";"yes";"no";"telephone";"may";"fri";184;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +43;"unemployed";"divorced";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";398;7;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +52;"retired";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";293;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +59;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";119;4;999;0;"nonexistent";-2.9;92.201;-31.4;0.879;5076.2;"no" +27;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";259;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +33;"unemployed";"married";"basic.9y";"no";"yes";"no";"telephone";"nov";"wed";41;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +25;"services";"single";"high.school";"no";"no";"no";"cellular";"oct";"mon";79;1;999;2;"failure";-1.1;94.601;-49.5;0.977;4963.6;"no" +47;"housemaid";"married";"professional.course";"no";"yes";"yes";"telephone";"jun";"mon";132;5;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +31;"blue-collar";"single";"high.school";"unknown";"yes";"no";"telephone";"jun";"tue";187;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"cellular";"may";"tue";123;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +34;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"telephone";"may";"mon";289;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"services";"married";"high.school";"no";"yes";"no";"cellular";"nov";"tue";90;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";64;6;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +45;"services";"divorced";"basic.4y";"no";"no";"no";"cellular";"apr";"thu";296;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +35;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"sep";"thu";390;2;999;0;"nonexistent";-1.1;94.199;-37.5;0.878;4963.6;"no" +59;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"jun";"wed";340;1;999;1;"failure";-2.9;92.963;-40.8;1.26;5076.2;"yes" +29;"technician";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"wed";80;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"may";"thu";393;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +45;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"mon";527;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +47;"technician";"single";"university.degree";"no";"no";"no";"cellular";"apr";"fri";115;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +41;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";92;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +42;"management";"married";"high.school";"no";"no";"no";"cellular";"aug";"wed";588;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";645;4;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes" +32;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"fri";251;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"blue-collar";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";328;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"management";"married";"unknown";"unknown";"no";"no";"cellular";"apr";"thu";177;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +34;"blue-collar";"married";"university.degree";"no";"no";"yes";"cellular";"may";"fri";208;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +59;"housemaid";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"tue";77;6;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";210;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +24;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jun";"mon";74;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +27;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"thu";284;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +37;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";81;2;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +53;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";1221;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +31;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"wed";704;4;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"yes" +56;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"fri";196;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +35;"technician";"married";"high.school";"no";"unknown";"unknown";"cellular";"aug";"fri";171;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +54;"retired";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"tue";95;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.838;5076.2;"yes" +39;"entrepreneur";"married";"basic.9y";"unknown";"yes";"yes";"cellular";"may";"thu";158;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +44;"management";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"wed";260;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +49;"technician";"married";"professional.course";"no";"yes";"yes";"telephone";"jul";"mon";70;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +47;"management";"married";"basic.4y";"no";"no";"yes";"telephone";"jun";"thu";216;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +30;"blue-collar";"single";"basic.6y";"no";"no";"no";"cellular";"may";"fri";92;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +29;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"wed";230;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +39;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"jul";"mon";241;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +33;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";135;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"technician";"married";"university.degree";"no";"no";"no";"telephone";"jun";"thu";281;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +49;"technician";"married";"unknown";"no";"no";"no";"cellular";"apr";"fri";378;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";144;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +52;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"fri";127;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +28;"services";"divorced";"high.school";"unknown";"no";"yes";"cellular";"jul";"fri";278;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"yes" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";88;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +47;"management";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";282;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +36;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"may";"tue";21;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +23;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"thu";250;4;999;1;"failure";-1.7;94.215;-40.3;0.846;4991.6;"yes" +59;"technician";"divorced";"basic.4y";"no";"yes";"no";"telephone";"jun";"fri";135;2;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +45;"unknown";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";83;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +29;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"may";"thu";16;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +74;"retired";"divorced";"high.school";"no";"yes";"yes";"telephone";"dec";"mon";88;6;999;0;"nonexistent";-3;92.713;-33;0.715;5023.5;"no" +66;"retired";"married";"basic.4y";"no";"yes";"yes";"telephone";"nov";"thu";1127;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.714;5017.5;"yes" +46;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"mon";504;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +43;"blue-collar";"single";"unknown";"unknown";"no";"no";"telephone";"may";"wed";299;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";293;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +49;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"may";"wed";139;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +28;"management";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";292;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +34;"unemployed";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";409;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +43;"technician";"married";"basic.9y";"unknown";"yes";"yes";"telephone";"jun";"fri";818;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +45;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";157;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +46;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"may";"mon";78;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +36;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"wed";226;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +44;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"thu";107;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +30;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";103;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no" +42;"technician";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"wed";88;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +48;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"tue";1062;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"yes" +34;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";562;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"services";"married";"basic.4y";"no";"no";"no";"telephone";"may";"fri";58;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +40;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";156;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +37;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"tue";157;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +30;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";191;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";63;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +32;"technician";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";361;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +44;"technician";"married";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"mon";160;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +58;"retired";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"fri";825;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +62;"technician";"married";"unknown";"no";"yes";"no";"cellular";"jul";"mon";273;1;16;1;"success";-1.7;94.215;-40.3;0.827;4991.6;"no" +42;"services";"single";"high.school";"no";"no";"no";"telephone";"jun";"fri";207;4;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +46;"services";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";630;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"management";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";292;3;999;0;"nonexistent";-1.8;93.876;-40;0.682;5008.7;"yes" +37;"blue-collar";"married";"professional.course";"no";"yes";"no";"telephone";"may";"thu";112;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +46;"services";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";984;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"yes" +34;"admin.";"unknown";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";243;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +46;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";92;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +37;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"mon";546;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +47;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";24;12;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +36;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";199;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +32;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";370;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +46;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";435;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +51;"entrepreneur";"divorced";"university.degree";"unknown";"no";"yes";"telephone";"may";"mon";112;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"student";"single";"basic.4y";"no";"yes";"yes";"telephone";"jul";"fri";57;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +53;"admin.";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"fri";168;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +46;"unemployed";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"thu";113;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +51;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"telephone";"may";"tue";487;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +56;"technician";"married";"unknown";"no";"yes";"no";"telephone";"may";"tue";174;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";13;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +34;"technician";"married";"professional.course";"unknown";"yes";"yes";"cellular";"aug";"thu";189;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +38;"self-employed";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";270;4;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"services";"single";"professional.course";"unknown";"yes";"no";"cellular";"nov";"tue";114;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +32;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"fri";17;9;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +38;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";213;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +44;"management";"divorced";"university.degree";"no";"yes";"no";"telephone";"jun";"mon";96;8;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +37;"unemployed";"single";"professional.course";"no";"no";"no";"telephone";"jun";"fri";394;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +59;"retired";"married";"professional.course";"no";"no";"no";"cellular";"aug";"fri";218;3;3;1;"success";-1.7;94.027;-38.3;0.905;4991.6;"yes" +24;"blue-collar";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";62;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +35;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"fri";451;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";386;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"mon";266;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"nov";"tue";249;3;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +41;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";802;3;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +57;"admin.";"married";"professional.course";"no";"unknown";"unknown";"cellular";"jul";"mon";127;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +49;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"mon";16;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +30;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"thu";267;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +45;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"jul";"wed";112;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"entrepreneur";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";531;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"yes" +41;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";238;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +53;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";111;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +29;"management";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"tue";73;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +45;"technician";"married";"university.degree";"no";"no";"no";"telephone";"jun";"thu";65;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +24;"blue-collar";"single";"basic.4y";"no";"yes";"no";"cellular";"may";"fri";389;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +43;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"thu";306;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +45;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"mon";252;2;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +34;"services";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"fri";453;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +35;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"may";"mon";83;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +25;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"fri";72;2;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +58;"blue-collar";"married";"unknown";"no";"yes";"no";"telephone";"may";"tue";38;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"admin.";"married";"high.school";"no";"unknown";"unknown";"telephone";"jun";"wed";360;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +30;"self-employed";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";131;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +30;"blue-collar";"single";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";72;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +37;"admin.";"divorced";"university.degree";"unknown";"yes";"no";"cellular";"may";"mon";442;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"yes" +58;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";114;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +34;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"aug";"tue";168;2;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"no" +34;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"thu";263;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +43;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";78;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"student";"single";"professional.course";"no";"no";"no";"cellular";"sep";"mon";162;2;9;2;"failure";-1.1;94.199;-37.5;0.879;4963.6;"no" +35;"unknown";"married";"basic.9y";"no";"no";"no";"telephone";"may";"thu";241;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";154;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +45;"management";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"fri";37;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +28;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"fri";200;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +29;"student";"single";"professional.course";"no";"no";"no";"cellular";"jun";"fri";95;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";95;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +27;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"thu";530;1;3;1;"success";-1.1;94.199;-37.5;0.879;4963.6;"yes" +41;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"fri";432;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +29;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"thu";430;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +24;"services";"single";"basic.9y";"no";"yes";"yes";"cellular";"may";"fri";68;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +34;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";145;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"no" +58;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";289;1;3;4;"success";-1.8;93.876;-40;0.683;5008.7;"yes" +52;"housemaid";"married";"basic.6y";"no";"yes";"no";"cellular";"aug";"tue";106;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +30;"student";"single";"university.degree";"no";"no";"no";"cellular";"nov";"fri";585;4;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";208;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +39;"entrepreneur";"married";"high.school";"no";"no";"no";"telephone";"jun";"mon";232;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";236;3;999;0;"nonexistent";-1.1;94.767;-50.8;1.03;4963.6;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";55;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +30;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"thu";739;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.483;5099.1;"yes" +34;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";133;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +34;"admin.";"single";"high.school";"no";"no";"no";"telephone";"may";"wed";194;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"unemployed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";117;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +39;"entrepreneur";"married";"high.school";"no";"yes";"no";"telephone";"jun";"thu";582;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +51;"unemployed";"married";"high.school";"no";"unknown";"unknown";"telephone";"sep";"fri";228;1;999;2;"failure";-1.1;94.199;-37.5;0.883;4963.6;"no" +29;"technician";"married";"high.school";"no";"yes";"no";"cellular";"jun";"fri";365;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes" +35;"technician";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";112;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +46;"technician";"married";"professional.course";"no";"no";"no";"cellular";"mar";"tue";163;2;999;0;"nonexistent";-1.8;92.843;-50;1.614;5099.1;"no" +35;"technician";"single";"professional.course";"no";"no";"no";"cellular";"nov";"wed";161;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +23;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";246;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +49;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"wed";155;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +33;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"tue";399;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +41;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";122;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +48;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"oct";"tue";200;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.742;5017.5;"no" +43;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";255;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +76;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";344;1;999;1;"failure";-2.9;92.201;-31.4;0.873;5076.2;"no" +54;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"wed";28;10;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +43;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";345;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +27;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"tue";19;9;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +55;"admin.";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"thu";103;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +37;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";178;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +29;"technician";"single";"professional.course";"no";"no";"yes";"cellular";"nov";"fri";127;1;6;2;"success";-1.1;94.767;-50.8;1.04;4963.6;"no" +37;"services";"single";"basic.9y";"no";"no";"no";"cellular";"may";"tue";348;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +30;"services";"married";"high.school";"no";"yes";"yes";"telephone";"jul";"mon";342;9;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +29;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";126;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"nov";"thu";71;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +25;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"may";"fri";137;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +34;"management";"single";"high.school";"no";"no";"no";"cellular";"jul";"mon";264;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +58;"management";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"wed";184;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +26;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jun";"mon";223;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +54;"entrepreneur";"married";"professional.course";"no";"no";"no";"cellular";"nov";"tue";1855;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"yes" +51;"blue-collar";"divorced";"unknown";"unknown";"no";"no";"telephone";"jun";"wed";220;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +22;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"mon";194;2;999;3;"failure";-1.1;94.199;-37.5;0.882;4963.6;"yes" +48;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"mon";607;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"yes" +48;"technician";"married";"high.school";"no";"unknown";"unknown";"telephone";"jun";"mon";221;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +53;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";100;1;999;1;"failure";-2.9;92.201;-31.4;0.883;5076.2;"no" +55;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"tue";266;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +59;"entrepreneur";"divorced";"high.school";"unknown";"yes";"no";"telephone";"may";"fri";138;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +52;"self-employed";"married";"basic.4y";"unknown";"no";"yes";"telephone";"jun";"thu";71;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"thu";115;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +56;"services";"divorced";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";13;1;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +35;"admin.";"single";"high.school";"no";"yes";"yes";"telephone";"may";"mon";19;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +30;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";155;1;4;1;"success";-2.9;92.201;-31.4;0.883;5076.2;"no" +45;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"mar";"thu";143;2;999;0;"nonexistent";-1.8;92.843;-50;1.538;5099.1;"no" +48;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"fri";224;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +36;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"tue";168;5;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +40;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";325;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +32;"technician";"divorced";"professional.course";"no";"no";"yes";"cellular";"aug";"tue";75;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +60;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"thu";82;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +37;"unemployed";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"fri";129;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +32;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";276;2;999;0;"nonexistent";-2.9;92.469;-33.6;1.072;5076.2;"yes" +58;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"fri";256;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +48;"entrepreneur";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";438;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"services";"single";"high.school";"no";"no";"yes";"cellular";"may";"thu";50;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"self-employed";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";207;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +41;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"apr";"fri";412;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +42;"blue-collar";"married";"unknown";"unknown";"no";"yes";"cellular";"may";"thu";428;3;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +55;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";97;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +36;"admin.";"divorced";"high.school";"no";"yes";"no";"telephone";"may";"mon";84;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"admin.";"single";"unknown";"no";"yes";"no";"cellular";"mar";"mon";132;1;999;0;"nonexistent";-1.8;93.369;-34.8;0.652;5008.7;"yes" +34;"entrepreneur";"single";"professional.course";"no";"no";"no";"telephone";"jun";"tue";76;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +55;"retired";"married";"high.school";"no";"yes";"no";"cellular";"oct";"thu";424;2;7;1;"success";-3.4;92.431;-26.9;0.722;5017.5;"yes" +27;"blue-collar";"single";"basic.4y";"no";"no";"no";"cellular";"may";"tue";176;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +32;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"may";"mon";246;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +30;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"fri";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +39;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";193;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +39;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"jul";"tue";82;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +39;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"mon";219;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +48;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";44;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +33;"admin.";"single";"high.school";"no";"no";"no";"telephone";"may";"tue";60;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +46;"services";"divorced";"basic.4y";"no";"no";"no";"cellular";"may";"fri";493;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +51;"admin.";"single";"university.degree";"unknown";"yes";"yes";"cellular";"nov";"fri";53;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +44;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"thu";153;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +26;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"mon";91;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +53;"technician";"married";"professional.course";"unknown";"yes";"yes";"cellular";"jul";"fri";264;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";116;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"unemployed";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";20;12;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";186;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +31;"admin.";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";1432;5;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +31;"blue-collar";"single";"basic.4y";"no";"no";"no";"telephone";"jun";"thu";590;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"yes" +27;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"fri";266;2;999;1;"failure";-1.7;94.055;-39.8;0.748;4991.6;"yes" +50;"management";"married";"university.degree";"no";"no";"no";"telephone";"sep";"tue";84;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +31;"services";"married";"high.school";"unknown";"yes";"yes";"telephone";"jun";"wed";146;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +39;"blue-collar";"married";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"tue";358;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"aug";"tue";109;11;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +58;"retired";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"mon";244;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +32;"entrepreneur";"married";"basic.9y";"no";"no";"no";"cellular";"may";"mon";184;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +43;"blue-collar";"single";"basic.6y";"no";"yes";"yes";"cellular";"jul";"wed";1806;4;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"yes" +33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";63;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +29;"technician";"single";"professional.course";"no";"yes";"yes";"cellular";"nov";"wed";182;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +32;"entrepreneur";"divorced";"university.degree";"no";"yes";"yes";"cellular";"jul";"fri";57;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +42;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"fri";353;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"may";"fri";247;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +29;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";294;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"admin.";"single";"professional.course";"no";"yes";"yes";"cellular";"may";"thu";1046;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"yes" +51;"services";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";241;4;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +47;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"mon";767;3;999;0;"nonexistent";-1.1;94.601;-49.5;1;4963.6;"yes" +36;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";137;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +37;"blue-collar";"married";"professional.course";"unknown";"no";"no";"telephone";"may";"tue";128;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +48;"services";"divorced";"high.school";"unknown";"yes";"yes";"telephone";"may";"mon";158;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +50;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";117;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"tue";211;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +31;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"mon";15;11;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +39;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";488;12;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +38;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"tue";67;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +58;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"oct";"thu";81;1;999;0;"nonexistent";-0.1;93.798;-40.4;4.794;5195.8;"no" +37;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"jul";"fri";674;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"yes" +34;"services";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";51;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +35;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"tue";740;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +39;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";260;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +78;"retired";"married";"basic.9y";"no";"yes";"no";"telephone";"oct";"thu";321;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.754;5017.5;"no" +43;"blue-collar";"single";"high.school";"no";"no";"yes";"telephone";"may";"thu";137;1;999;0;"nonexistent";-1.8;93.876;-40;0.699;5008.7;"no" +49;"technician";"divorced";"university.degree";"no";"yes";"no";"telephone";"nov";"thu";30;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";293;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +58;"entrepreneur";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"fri";218;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";127;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +32;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";1119;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes" +31;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";225;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"services";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"mon";19;23;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"may";"fri";288;3;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +53;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"tue";76;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +42;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"jul";"mon";388;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +40;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"fri";179;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"management";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";172;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +47;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";159;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +53;"admin.";"married";"university.degree";"no";"no";"yes";"telephone";"may";"tue";37;13;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +60;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"oct";"mon";338;2;999;0;"nonexistent";-1.1;94.601;-49.5;1;4963.6;"no" +32;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";485;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +67;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"mon";300;3;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no" +49;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"jul";"thu";144;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"admin.";"unknown";"high.school";"no";"no";"no";"telephone";"may";"mon";182;8;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +31;"admin.";"single";"basic.9y";"no";"no";"no";"telephone";"may";"wed";80;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +60;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"apr";"thu";482;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"yes" +33;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";87;2;999;2;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +41;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";796;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +45;"services";"married";"professional.course";"no";"yes";"no";"telephone";"may";"mon";221;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"services";"divorced";"high.school";"no";"no";"yes";"telephone";"may";"mon";251;11;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +39;"unemployed";"married";"university.degree";"no";"no";"no";"telephone";"jun";"tue";132;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"admin.";"married";"high.school";"unknown";"yes";"yes";"telephone";"may";"tue";236;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";106;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.435;5099.1;"no" +27;"unemployed";"single";"university.degree";"no";"no";"no";"telephone";"jul";"tue";27;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +32;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"thu";240;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +45;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";10;16;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"thu";140;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +41;"services";"single";"unknown";"no";"yes";"no";"cellular";"may";"thu";206;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +40;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"tue";337;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";44;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";138;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"mon";287;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"wed";67;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +27;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";136;5;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +35;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"thu";636;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +41;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"mon";77;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +45;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"thu";468;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +45;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";114;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +44;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"fri";262;4;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +51;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"wed";221;9;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +50;"unemployed";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";74;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"thu";604;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +29;"admin.";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"thu";120;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +44;"management";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";296;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +30;"blue-collar";"married";"professional.course";"no";"no";"no";"cellular";"may";"fri";1357;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"yes" +39;"housemaid";"married";"basic.4y";"no";"yes";"yes";"cellular";"aug";"fri";123;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +39;"management";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";23;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +50;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"tue";209;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"fri";37;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +36;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"tue";257;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +80;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"oct";"thu";169;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.722;5017.5;"yes" +36;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"wed";61;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";104;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"jul";"mon";122;5;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +51;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"tue";40;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +30;"admin.";"single";"high.school";"no";"no";"no";"cellular";"sep";"fri";219;3;6;1;"success";-1.1;94.199;-37.5;0.883;4963.6;"yes" +24;"technician";"single";"professional.course";"no";"unknown";"unknown";"cellular";"may";"wed";311;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"yes" +47;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"aug";"tue";204;6;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jul";"thu";414;1;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no" +37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";191;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"mon";475;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"yes" +34;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"mon";343;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +69;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"sep";"mon";258;3;6;1;"success";-1.1;94.199;-37.5;0.879;4963.6;"no" +42;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";226;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +34;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"jul";"wed";727;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +48;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";36;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +41;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"telephone";"may";"tue";207;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +59;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"wed";413;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +50;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"nov";"fri";182;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +36;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"may";"mon";142;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +38;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"fri";100;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"mon";109;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"wed";65;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +30;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";77;9;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +32;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"thu";434;2;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +53;"management";"single";"professional.course";"unknown";"no";"no";"cellular";"jul";"wed";76;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +36;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";231;2;999;4;"failure";-1.8;93.369;-34.8;0.635;5008.7;"no" +61;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"thu";266;5;999;0;"nonexistent";-1.8;93.075;-47.1;1.406;5099.1;"yes" +51;"self-employed";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";310;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +69;"retired";"divorced";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";207;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"yes" +30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";150;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +33;"admin.";"married";"university.degree";"no";"unknown";"unknown";"cellular";"aug";"fri";227;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +53;"services";"divorced";"basic.9y";"no";"no";"no";"cellular";"jul";"fri";127;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +49;"blue-collar";"married";"professional.course";"no";"no";"no";"cellular";"may";"tue";118;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +35;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"may";"tue";206;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +40;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";177;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"services";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";201;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +41;"self-employed";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"tue";349;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +31;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"wed";421;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +40;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";608;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +53;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";92;2;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +53;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";97;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +48;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";126;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +32;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"cellular";"jul";"fri";316;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +27;"blue-collar";"married";"basic.9y";"unknown";"yes";"yes";"cellular";"jul";"mon";119;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +51;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"fri";135;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"unemployed";"married";"university.degree";"no";"no";"no";"telephone";"jun";"fri";212;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +28;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"mar";"tue";320;1;999;0;"nonexistent";-1.8;92.843;-50;1.799;5099.1;"yes" +31;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";650;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +58;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"sep";"thu";272;4;6;1;"success";-1.1;94.199;-37.5;0.878;4963.6;"yes" +54;"housemaid";"divorced";"basic.4y";"no";"no";"no";"telephone";"may";"wed";485;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +45;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";390;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";82;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +55;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";201;14;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +51;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";359;2;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +27;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";55;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +41;"blue-collar";"divorced";"basic.6y";"no";"no";"no";"cellular";"jul";"fri";159;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +40;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";144;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +28;"technician";"single";"professional.course";"no";"no";"no";"cellular";"may";"wed";116;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +57;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"tue";674;2;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +37;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jul";"mon";1009;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +58;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"wed";84;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +34;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"mon";126;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"may";"thu";129;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +57;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";313;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"services";"divorced";"high.school";"unknown";"yes";"yes";"cellular";"apr";"mon";92;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +37;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"fri";200;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +35;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"fri";91;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +42;"services";"married";"high.school";"unknown";"no";"yes";"telephone";"jun";"tue";214;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +30;"student";"single";"high.school";"no";"no";"no";"cellular";"mar";"fri";268;5;10;2;"failure";-1.8;92.843;-50;1.64;5099.1;"yes" +25;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"fri";712;2;19;1;"success";-1.1;94.767;-50.8;1.04;4963.6;"yes" +36;"admin.";"married";"university.degree";"no";"no";"yes";"telephone";"may";"thu";184;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +49;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"fri";283;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +52;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"fri";165;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +31;"self-employed";"divorced";"university.degree";"no";"unknown";"unknown";"cellular";"jul";"thu";262;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +26;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";203;1;3;3;"success";-1.7;94.027;-38.3;0.904;4991.6;"yes" +56;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";242;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"nov";"fri";45;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"tue";80;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";181;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +36;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";171;11;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +26;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";230;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"yes" +48;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"thu";214;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";144;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +45;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"mar";"tue";829;1;999;0;"nonexistent";-1.8;92.843;-50;1.51;5099.1;"no" +46;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";170;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";362;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +24;"self-employed";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";40;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +38;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";249;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +60;"retired";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";245;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"services";"divorced";"basic.6y";"no";"yes";"no";"cellular";"aug";"wed";153;3;0;1;"success";-1.7;94.027;-38.3;0.9;4991.6;"yes" +32;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jul";"tue";89;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"jul";"fri";102;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";215;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"blue-collar";"single";"basic.4y";"no";"yes";"no";"telephone";"jun";"tue";159;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +44;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"thu";102;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";239;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +32;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"jun";"mon";147;2;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +45;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";134;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"technician";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";394;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +45;"blue-collar";"married";"professional.course";"no";"no";"no";"cellular";"aug";"thu";398;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +44;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";171;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +43;"admin.";"single";"high.school";"no";"no";"no";"cellular";"nov";"wed";1011;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"yes" +25;"student";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";97;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +47;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"tue";202;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +39;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"jul";"wed";128;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";186;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +41;"technician";"married";"basic.9y";"no";"no";"no";"telephone";"may";"mon";180;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +58;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"tue";216;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +42;"services";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";149;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +50;"unknown";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"mon";511;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +42;"management";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"fri";123;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +53;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"aug";"tue";1186;4;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"yes" +54;"housemaid";"divorced";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";653;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"yes" +31;"admin.";"married";"high.school";"no";"no";"yes";"cellular";"aug";"mon";155;2;4;1;"success";-2.9;92.201;-31.4;0.884;5076.2;"yes" +50;"housemaid";"married";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"wed";125;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +48;"self-employed";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"mon";82;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +30;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"mon";132;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +43;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";119;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"nov";"mon";131;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +37;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"mon";264;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +55;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"mar";"thu";220;7;999;0;"nonexistent";-1.8;93.369;-34.8;0.654;5008.7;"no" +47;"management";"married";"basic.9y";"no";"no";"no";"telephone";"nov";"mon";53;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +54;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"apr";"mon";130;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +26;"management";"single";"university.degree";"no";"no";"no";"cellular";"sep";"fri";351;2;999;0;"nonexistent";-3.4;92.379;-29.8;0.803;5017.5;"no" +27;"admin.";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";483;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";340;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +43;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"wed";402;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +26;"management";"single";"university.degree";"no";"no";"no";"cellular";"mar";"thu";139;1;999;0;"nonexistent";-1.8;92.843;-50;1.65;5099.1;"yes" +32;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"wed";383;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +32;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";165;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"telephone";"jun";"fri";17;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +33;"self-employed";"single";"university.degree";"no";"unknown";"unknown";"telephone";"jun";"thu";169;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";519;2;999;2;"failure";-1.8;92.893;-46.2;1.334;5099.1;"yes" +42;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";246;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.879;5076.2;"no" +53;"services";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"mon";136;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +70;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"thu";320;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";20;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +43;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"nov";"mon";107;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +51;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jul";"wed";139;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +34;"housemaid";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";58;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +57;"retired";"unknown";"basic.4y";"no";"yes";"no";"telephone";"may";"thu";171;10;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +30;"admin.";"single";"professional.course";"no";"unknown";"unknown";"cellular";"jun";"thu";246;1;7;1;"success";-2.9;92.963;-40.8;1.26;5076.2;"yes" +41;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";184;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +36;"blue-collar";"married";"unknown";"unknown";"yes";"yes";"telephone";"may";"wed";161;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"mon";86;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +28;"student";"single";"university.degree";"unknown";"yes";"no";"telephone";"may";"mon";208;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +31;"management";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";424;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"yes" +58;"retired";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";307;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +54;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";490;12;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +48;"unemployed";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";360;1;6;1;"success";-1.8;93.876;-40;0.682;5008.7;"yes" +50;"blue-collar";"single";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"thu";184;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +38;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"may";"tue";446;12;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +25;"student";"single";"unknown";"no";"no";"no";"cellular";"jun";"mon";301;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.281;5076.2;"yes" +37;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";123;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +31;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";60;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jun";"mon";114;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +46;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";78;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +31;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"telephone";"jun";"tue";105;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +31;"management";"married";"high.school";"no";"yes";"yes";"telephone";"jun";"tue";343;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";39;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";633;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +30;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";683;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes" +36;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"tue";30;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +34;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"thu";134;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +32;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"jul";"wed";183;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +43;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"wed";382;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +57;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"fri";19;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"unemployed";"divorced";"professional.course";"no";"unknown";"unknown";"cellular";"aug";"tue";271;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +34;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"telephone";"jun";"tue";276;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"mon";688;2;999;0;"nonexistent";-1.8;93.749;-34.6;0.645;5008.7;"yes" +33;"admin.";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";1340;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"yes" +46;"management";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";93;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +80;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"mar";"fri";213;3;6;4;"success";-1.8;93.369;-34.8;0.649;5008.7;"yes" +45;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"tue";243;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"telephone";"nov";"tue";137;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +49;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"thu";82;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +50;"management";"married";"high.school";"unknown";"no";"yes";"telephone";"may";"fri";223;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +34;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"fri";233;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";145;3;3;2;"success";-1.7;94.027;-38.3;0.904;4991.6;"no" +47;"services";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";130;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +55;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"jul";"tue";232;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +46;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"wed";196;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +24;"student";"single";"high.school";"no";"yes";"no";"cellular";"apr";"thu";88;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +32;"blue-collar";"single";"basic.4y";"no";"yes";"no";"cellular";"jul";"tue";145;12;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +31;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";248;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +31;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";248;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +29;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";668;2;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +48;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";420;7;999;1;"failure";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"tue";125;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +43;"technician";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";24;9;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +29;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"mon";207;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +47;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"mon";82;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";133;8;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"may";"mon";511;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +56;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";472;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +33;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";153;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +30;"blue-collar";"single";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"thu";331;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +36;"management";"married";"university.degree";"no";"no";"no";"telephone";"jun";"thu";22;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +50;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"mon";36;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +45;"technician";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";88;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"apr";"thu";882;1;6;1;"success";-1.8;93.749;-34.6;0.659;5008.7;"yes" +31;"unemployed";"single";"high.school";"no";"no";"no";"cellular";"may";"thu";339;2;999;0;"nonexistent";-1.8;93.876;-40;0.692;5008.7;"no" +30;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"fri";292;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +39;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"thu";543;29;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +37;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"wed";203;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +45;"management";"married";"unknown";"no";"yes";"no";"cellular";"apr";"tue";379;3;7;1;"success";-1.8;93.749;-34.6;0.642;5008.7;"yes" +36;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";201;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +22;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"fri";161;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";130;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +37;"technician";"single";"high.school";"no";"yes";"no";"telephone";"apr";"thu";201;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.406;5099.1;"no" +38;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"thu";68;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +53;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"tue";520;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";515;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +44;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";175;2;999;2;"failure";-2.9;92.201;-31.4;0.883;5076.2;"yes" +31;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";636;6;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +43;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";1332;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"yes" +30;"blue-collar";"single";"basic.9y";"unknown";"no";"no";"telephone";"jun";"fri";10;8;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +47;"housemaid";"single";"basic.4y";"no";"no";"no";"telephone";"jun";"tue";241;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +28;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"thu";1820;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";74;1;999;1;"failure";-1.8;92.893;-46.2;1.264;5099.1;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";1311;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"yes" +45;"services";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"tue";559;7;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +32;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";161;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +41;"management";"married";"high.school";"no";"no";"yes";"telephone";"may";"tue";129;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +50;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";1365;2;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"yes" +42;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"wed";332;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +45;"blue-collar";"single";"basic.4y";"unknown";"yes";"yes";"cellular";"jul";"tue";21;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +52;"entrepreneur";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"fri";390;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +49;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";1980;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"yes" +39;"management";"married";"unknown";"no";"no";"no";"cellular";"nov";"thu";352;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +20;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";410;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +36;"entrepreneur";"married";"university.degree";"no";"no";"yes";"telephone";"may";"fri";180;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +44;"services";"divorced";"high.school";"no";"yes";"yes";"cellular";"apr";"tue";895;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"yes" +34;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"may";"fri";1190;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"yes" +67;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";68;4;999;1;"failure";-3.4;92.649;-30.1;0.72;5017.5;"no" +42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";71;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"self-employed";"single";"university.degree";"no";"yes";"no";"telephone";"may";"wed";318;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +37;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"may";"tue";322;1;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +35;"unknown";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";121;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";69;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +48;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";115;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +46;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";251;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +57;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"fri";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"tue";133;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"admin.";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";252;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +29;"technician";"single";"high.school";"no";"no";"no";"cellular";"nov";"tue";155;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +38;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";218;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +27;"student";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";101;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +42;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"may";"wed";458;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"jun";"thu";312;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +40;"entrepreneur";"married";"professional.course";"unknown";"yes";"no";"cellular";"apr";"thu";176;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +44;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"may";"mon";158;7;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";316;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +54;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"wed";101;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.719;5017.5;"no" +32;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";160;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +47;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";156;4;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +40;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"wed";222;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +30;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"mon";742;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"yes" +28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";167;2;6;1;"success";-1.7;94.215;-40.3;0.893;4991.6;"no" +40;"entrepreneur";"married";"basic.4y";"no";"yes";"yes";"cellular";"nov";"wed";322;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +39;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"fri";156;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +27;"technician";"single";"high.school";"no";"yes";"no";"cellular";"jul";"fri";784;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +51;"housemaid";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"fri";253;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +39;"admin.";"divorced";"professional.course";"no";"yes";"yes";"telephone";"jun";"thu";106;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +46;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";164;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.873;5076.2;"no" +49;"unemployed";"married";"high.school";"unknown";"no";"no";"cellular";"nov";"fri";671;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";59;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +32;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"wed";315;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"mon";131;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +27;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"may";"wed";177;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +42;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"apr";"thu";55;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +35;"technician";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"thu";246;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +37;"technician";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";182;2;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +48;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"may";"wed";170;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +29;"unemployed";"single";"university.degree";"no";"no";"no";"telephone";"may";"thu";297;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +50;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"fri";206;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +30;"blue-collar";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";245;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +58;"self-employed";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";548;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +52;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"aug";"fri";112;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +32;"entrepreneur";"married";"university.degree";"no";"yes";"yes";"telephone";"nov";"mon";249;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +55;"retired";"married";"basic.6y";"unknown";"yes";"yes";"cellular";"jul";"tue";632;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +49;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"jul";"thu";219;12;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";14;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +41;"blue-collar";"divorced";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";160;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"blue-collar";"married";"basic.6y";"no";"no";"yes";"cellular";"may";"thu";244;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"technician";"married";"professional.course";"no";"no";"no";"cellular";"nov";"wed";427;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +44;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";102;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +27;"technician";"single";"basic.9y";"no";"yes";"no";"cellular";"apr";"wed";131;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.445;5099.1;"no" +35;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"thu";269;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";101;2;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +35;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";121;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.259;5099.1;"no" +32;"management";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";221;4;16;1;"success";-1.7;94.215;-40.3;0.896;4991.6;"no" +39;"entrepreneur";"single";"university.degree";"no";"yes";"no";"telephone";"may";"thu";43;9;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +53;"blue-collar";"married";"high.school";"unknown";"yes";"yes";"cellular";"apr";"mon";62;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +26;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"fri";134;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +25;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";178;7;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +39;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";302;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +33;"admin.";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"thu";259;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +63;"management";"married";"basic.4y";"unknown";"yes";"no";"cellular";"nov";"tue";131;4;999;2;"failure";-3.4;92.649;-30.1;0.715;5017.5;"yes" +59;"retired";"married";"basic.4y";"no";"no";"yes";"telephone";"jul";"thu";22;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +52;"self-employed";"single";"professional.course";"no";"no";"yes";"cellular";"nov";"thu";139;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +25;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"wed";322;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +29;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";54;1;6;1;"success";-1.8;92.893;-46.2;1.281;5099.1;"no" +48;"entrepreneur";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";487;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";376;2;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +39;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";202;1;999;1;"failure";-1.7;94.215;-40.3;0.81;4991.6;"no" +31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"blue-collar";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";113;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +40;"self-employed";"married";"high.school";"no";"no";"no";"cellular";"jul";"mon";521;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";69;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +41;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jul";"tue";281;3;999;0;"nonexistent";1.4;93.918;-42.7;4.955;5228.1;"no" +39;"housemaid";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";80;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +30;"self-employed";"married";"professional.course";"no";"yes";"no";"cellular";"may";"tue";98;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +40;"management";"married";"basic.9y";"no";"yes";"yes";"telephone";"jun";"fri";162;1;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +32;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"mon";330;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";211;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +52;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";195;1;999;0;"nonexistent";-1.8;93.876;-40;0.677;5008.7;"yes" +28;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"mar";"tue";156;1;999;0;"nonexistent";-1.8;92.843;-50;1.799;5099.1;"yes" +43;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";294;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";112;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +45;"housemaid";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"tue";834;6;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +47;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"aug";"mon";149;7;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +58;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"wed";244;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +33;"technician";"single";"high.school";"no";"yes";"no";"cellular";"jul";"fri";270;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +28;"blue-collar";"single";"university.degree";"unknown";"no";"no";"cellular";"may";"wed";169;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +47;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";252;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"blue-collar";"single";"high.school";"no";"no";"no";"telephone";"mar";"tue";450;3;6;2;"success";-1.8;93.369;-34.8;0.652;5008.7;"yes" +60;"management";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";89;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +28;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"may";"fri";1128;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +33;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";265;2;999;0;"nonexistent";-1.8;93.369;-34.8;0.652;5008.7;"yes" +41;"entrepreneur";"divorced";"basic.9y";"no";"yes";"yes";"cellular";"jul";"thu";219;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +33;"student";"single";"unknown";"no";"yes";"yes";"cellular";"aug";"tue";203;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +41;"management";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"tue";527;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +30;"student";"single";"unknown";"no";"yes";"no";"cellular";"apr";"wed";176;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +54;"self-employed";"divorced";"high.school";"unknown";"no";"no";"telephone";"jul";"mon";178;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +46;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"thu";128;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +32;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";259;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +42;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";33;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"mon";87;2;999;1;"failure";-3.4;92.431;-26.9;0.731;5017.5;"no" +41;"blue-collar";"married";"unknown";"unknown";"no";"no";"cellular";"jul";"wed";516;4;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +24;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"jul";"wed";115;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +44;"technician";"divorced";"unknown";"no";"no";"no";"telephone";"jul";"tue";222;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +58;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"jun";"tue";79;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.252;5076.2;"no" +31;"admin.";"married";"high.school";"no";"no";"yes";"telephone";"may";"thu";349;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +34;"services";"single";"basic.9y";"no";"no";"no";"cellular";"may";"wed";308;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no" +44;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"wed";97;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +59;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"thu";190;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +34;"technician";"single";"university.degree";"no";"no";"no";"telephone";"aug";"thu";214;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +48;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";112;1;4;1;"success";-0.1;93.2;-42;4.191;5195.8;"no" +47;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"tue";193;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.72;5017.5;"no" +54;"housemaid";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";164;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +44;"blue-collar";"married";"high.school";"unknown";"yes";"no";"cellular";"apr";"thu";253;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +31;"management";"single";"university.degree";"unknown";"yes";"no";"telephone";"jun";"fri";15;4;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +34;"blue-collar";"married";"professional.course";"no";"yes";"no";"telephone";"may";"mon";210;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +29;"technician";"single";"basic.9y";"no";"unknown";"unknown";"telephone";"apr";"mon";116;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +38;"technician";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"thu";245;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +56;"admin.";"married";"unknown";"no";"yes";"no";"telephone";"jun";"tue";87;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +26;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"apr";"fri";362;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"technician";"divorced";"high.school";"no";"no";"no";"cellular";"aug";"fri";129;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";116;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +57;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"thu";134;9;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +36;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"jul";"fri";118;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +43;"unemployed";"married";"university.degree";"unknown";"unknown";"unknown";"telephone";"may";"tue";87;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"self-employed";"married";"basic.9y";"unknown";"yes";"yes";"telephone";"may";"mon";140;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +24;"student";"single";"unknown";"no";"yes";"no";"cellular";"sep";"wed";222;1;17;4;"failure";-1.1;94.199;-37.5;0.886;4963.6;"no" +37;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"may";"mon";54;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no" +33;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"aug";"fri";58;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +41;"technician";"single";"high.school";"no";"yes";"no";"cellular";"aug";"wed";88;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +53;"housemaid";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"mon";245;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +51;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"aug";"tue";133;1;999;1;"failure";-2.9;92.201;-31.4;0.838;5076.2;"no" +36;"housemaid";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"thu";767;5;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";38;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +44;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"may";"thu";245;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +45;"services";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"mon";307;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +38;"blue-collar";"married";"high.school";"no";"no";"no";"telephone";"apr";"mon";340;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +36;"technician";"single";"professional.course";"unknown";"no";"no";"telephone";"may";"fri";180;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +30;"blue-collar";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";111;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.049;4963.6;"no" +55;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";122;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +45;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";73;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +58;"retired";"divorced";"university.degree";"no";"yes";"no";"cellular";"apr";"wed";129;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"yes" +33;"management";"single";"university.degree";"no";"no";"yes";"telephone";"may";"fri";71;11;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +36;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";770;7;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"self-employed";"single";"high.school";"no";"yes";"yes";"cellular";"may";"tue";113;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +44;"services";"divorced";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";164;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +30;"services";"single";"high.school";"no";"yes";"no";"cellular";"aug";"thu";148;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.873;5076.2;"yes" +25;"student";"single";"high.school";"no";"no";"no";"cellular";"jun";"mon";485;2;999;0;"nonexistent";-1.7;94.055;-39.8;0.72;4991.6;"yes" +56;"unknown";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"mon";106;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +31;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";238;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +32;"services";"married";"high.school";"no";"yes";"yes";"cellular";"apr";"mon";6;6;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"blue-collar";"single";"basic.4y";"no";"no";"yes";"cellular";"nov";"wed";125;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +36;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"may";"thu";238;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +41;"housemaid";"married";"high.school";"no";"yes";"no";"telephone";"nov";"fri";1074;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"yes" +55;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"mon";304;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +57;"management";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"fri";111;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +34;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";320;3;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +30;"management";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";19;12;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +40;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";342;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +41;"unemployed";"married";"basic.9y";"unknown";"yes";"no";"telephone";"apr";"fri";246;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +53;"blue-collar";"single";"basic.9y";"no";"unknown";"unknown";"cellular";"mar";"thu";362;1;9;2;"success";-1.8;93.369;-34.8;0.643;5008.7;"yes" +35;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";1259;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +59;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"jun";"fri";9;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +41;"self-employed";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";178;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"thu";77;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"mon";177;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";250;2;6;1;"success";-1.7;94.215;-40.3;0.846;4991.6;"no" +46;"services";"divorced";"basic.9y";"no";"unknown";"unknown";"cellular";"may";"wed";222;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +60;"self-employed";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"tue";17;13;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"oct";"fri";281;1;999;2;"failure";-3.4;92.431;-26.9;0.73;5017.5;"yes" +48;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";82;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +50;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";161;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"admin.";"married";"high.school";"no";"no";"no";"telephone";"jun";"fri";1422;10;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes" +46;"services";"divorced";"basic.9y";"no";"no";"no";"cellular";"may";"wed";96;2;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +50;"entrepreneur";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";408;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";215;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +44;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";121;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +37;"management";"married";"unknown";"no";"no";"no";"cellular";"dec";"wed";149;3;999;0;"nonexistent";-3;92.713;-33;0.715;5023.5;"yes" +23;"services";"single";"high.school";"no";"unknown";"unknown";"cellular";"jul";"wed";1300;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"tue";712;1;3;2;"failure";-2.9;92.963;-40.8;1.262;5076.2;"yes" +36;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"thu";247;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +40;"services";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"mon";49;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +53;"admin.";"divorced";"university.degree";"no";"yes";"yes";"telephone";"may";"thu";172;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +53;"housemaid";"married";"basic.6y";"unknown";"unknown";"unknown";"cellular";"apr";"mon";372;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +34;"blue-collar";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"wed";338;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +34;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";91;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +41;"self-employed";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";1135;3;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"yes" +48;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"tue";134;7;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +47;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";624;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +39;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";359;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +50;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"nov";"mon";55;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +38;"technician";"single";"basic.6y";"no";"yes";"no";"cellular";"nov";"wed";164;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +37;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"mon";540;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +29;"services";"single";"basic.9y";"unknown";"yes";"no";"cellular";"apr";"thu";105;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +24;"entrepreneur";"single";"high.school";"no";"yes";"no";"telephone";"jun";"fri";113;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +46;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";103;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"admin.";"single";"university.degree";"no";"no";"yes";"telephone";"jun";"fri";159;9;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"unknown";"unknown";"cellular";"aug";"fri";107;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";226;4;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +58;"retired";"married";"professional.course";"unknown";"no";"no";"cellular";"nov";"fri";158;3;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +36;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";166;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +41;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";67;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";290;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +29;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";14;5;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +51;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jun";"fri";657;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes" +52;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";600;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.884;5076.2;"yes" +44;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"fri";41;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +42;"admin.";"married";"high.school";"no";"no";"yes";"cellular";"jul";"thu";219;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"tue";101;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"services";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";44;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +32;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"mon";41;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"services";"married";"basic.4y";"no";"no";"yes";"telephone";"jun";"thu";90;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +32;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";402;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +31;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"mon";551;3;999;1;"failure";-1.8;93.075;-47.1;1.466;5099.1;"no" +37;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"jul";"wed";184;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";340;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +30;"technician";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";165;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";264;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +36;"management";"married";"unknown";"no";"no";"no";"cellular";"jun";"mon";98;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.281;5076.2;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";333;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +52;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"nov";"tue";183;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +54;"retired";"divorced";"basic.4y";"no";"no";"no";"telephone";"jun";"mon";157;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +31;"services";"married";"professional.course";"no";"no";"no";"cellular";"nov";"thu";627;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"wed";345;10;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +40;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"mon";141;3;999;0;"nonexistent";-3.4;92.649;-30.1;0.714;5017.5;"no" +43;"technician";"married";"professional.course";"unknown";"no";"no";"cellular";"may";"thu";681;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"jun";"wed";66;1;13;2;"failure";-1.7;94.055;-39.8;0.739;4991.6;"no" +37;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"mon";291;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +35;"services";"married";"basic.6y";"no";"no";"no";"telephone";"may";"mon";70;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +53;"admin.";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"tue";140;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +55;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";345;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +40;"unemployed";"married";"professional.course";"no";"no";"yes";"telephone";"sep";"fri";91;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.773;5017.5;"yes" +28;"blue-collar";"single";"high.school";"no";"yes";"no";"telephone";"apr";"thu";240;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.483;5099.1;"no" +39;"blue-collar";"single";"basic.4y";"no";"no";"yes";"telephone";"jun";"fri";396;4;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +41;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"fri";491;1;999;2;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +46;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"aug";"tue";398;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +52;"self-employed";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"mon";175;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +44;"admin.";"single";"high.school";"no";"no";"yes";"telephone";"jul";"fri";12;1;999;0;"nonexistent";-1.7;94.215;-40.3;0.861;4991.6;"no" +31;"unemployed";"married";"high.school";"yes";"no";"no";"cellular";"nov";"tue";111;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +31;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";129;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +31;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";196;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +35;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";377;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +58;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"thu";184;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +38;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"mar";"fri";363;2;10;1;"success";-1.8;92.843;-50;1.726;5099.1;"yes" +51;"admin.";"married";"basic.4y";"unknown";"no";"no";"cellular";"may";"tue";516;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +36;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"mon";151;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +47;"blue-collar";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";224;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +49;"admin.";"single";"high.school";"no";"no";"no";"cellular";"aug";"thu";103;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +39;"housemaid";"married";"basic.4y";"no";"yes";"yes";"cellular";"aug";"fri";215;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +33;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"wed";183;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +66;"retired";"married";"professional.course";"no";"no";"yes";"cellular";"mar";"tue";525;1;21;2;"failure";-1.8;93.369;-34.8;0.655;5008.7;"yes" +36;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";45;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +46;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"cellular";"apr";"tue";332;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"no" +44;"services";"married";"professional.course";"unknown";"yes";"no";"cellular";"may";"thu";428;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +50;"technician";"married";"professional.course";"unknown";"yes";"yes";"telephone";"jun";"fri";705;7;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes" +32;"services";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";379;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +52;"housemaid";"married";"basic.6y";"no";"yes";"no";"cellular";"aug";"fri";268;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +26;"blue-collar";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";213;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";180;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"may";"wed";296;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +30;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"tue";196;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +56;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"fri";163;2;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no" +33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";76;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +31;"blue-collar";"divorced";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";597;17;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +47;"admin.";"single";"unknown";"unknown";"yes";"no";"telephone";"may";"tue";247;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"services";"married";"professional.course";"no";"no";"no";"telephone";"jun";"tue";75;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +54;"technician";"married";"basic.4y";"no";"no";"no";"telephone";"may";"tue";120;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";78;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +40;"self-employed";"married";"unknown";"unknown";"no";"no";"cellular";"jul";"mon";143;9;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"services";"married";"high.school";"no";"yes";"no";"telephone";"jul";"tue";68;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +45;"unemployed";"married";"basic.4y";"no";"yes";"yes";"telephone";"jun";"fri";264;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +55;"retired";"married";"high.school";"no";"yes";"no";"cellular";"jun";"fri";136;3;3;1;"success";-2.9;92.963;-40.8;1.268;5076.2;"no" +30;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"mon";313;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +82;"housemaid";"divorced";"basic.4y";"no";"no";"no";"cellular";"jul";"wed";316;1;999;0;"nonexistent";-1.7;94.215;-40.3;0.881;4991.6;"yes" +55;"unknown";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"thu";1298;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +39;"entrepreneur";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";157;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"fri";1135;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +33;"blue-collar";"single";"basic.4y";"no";"no";"no";"cellular";"nov";"fri";60;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +39;"admin.";"single";"unknown";"no";"no";"no";"cellular";"nov";"fri";188;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +37;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"fri";97;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";78;3;999;0;"nonexistent";-2.9;92.201;-31.4;0.851;5076.2;"yes" +41;"technician";"divorced";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";116;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";160;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +27;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"mon";51;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +39;"housemaid";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"mon";272;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +46;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";61;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +38;"technician";"married";"professional.course";"no";"no";"no";"cellular";"mar";"thu";119;1;999;0;"nonexistent";-1.8;92.843;-50;1.757;5099.1;"no" +54;"technician";"single";"high.school";"no";"yes";"no";"cellular";"nov";"fri";32;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +25;"admin.";"single";"basic.9y";"no";"no";"no";"cellular";"jul";"thu";18;29;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +37;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"dec";"mon";206;2;6;1;"success";-3;92.713;-33;0.706;5023.5;"yes" +28;"self-employed";"single";"basic.9y";"no";"no";"no";"telephone";"may";"tue";125;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"thu";446;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +58;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"may";"tue";451;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +31;"admin.";"single";"high.school";"no";"no";"no";"telephone";"may";"thu";132;22;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +42;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"fri";174;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +37;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"mon";340;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"self-employed";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"wed";143;3;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +24;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"mon";61;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jul";"mon";9;17;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +59;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";1438;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +60;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"oct";"mon";82;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"no" +31;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";209;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +38;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";101;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +35;"unknown";"single";"high.school";"unknown";"yes";"no";"cellular";"jul";"thu";277;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +26;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"aug";"mon";1087;1;3;1;"success";-1.7;94.027;-38.3;0.904;4991.6;"yes" +52;"retired";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";147;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +35;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"jun";"mon";782;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +42;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"wed";232;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +46;"unemployed";"divorced";"basic.9y";"no";"yes";"no";"telephone";"jun";"tue";231;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +40;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"mon";92;6;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +58;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";129;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +52;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"thu";156;6;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +30;"admin.";"divorced";"university.degree";"no";"no";"yes";"cellular";"nov";"tue";198;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +44;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"mon";135;3;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +53;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";107;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +30;"management";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";27;7;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +43;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"wed";272;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +39;"services";"single";"high.school";"no";"yes";"no";"cellular";"aug";"fri";308;6;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"yes" +43;"management";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"fri";180;1;6;2;"failure";-2.9;92.201;-31.4;0.869;5076.2;"no" +57;"blue-collar";"divorced";"basic.4y";"unknown";"yes";"no";"telephone";"may";"tue";47;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +37;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"fri";416;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.72;5017.5;"yes" +32;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";137;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +40;"admin.";"single";"professional.course";"no";"yes";"no";"cellular";"may";"tue";43;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +41;"blue-collar";"single";"unknown";"unknown";"no";"no";"telephone";"jun";"mon";780;3;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +46;"technician";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";1288;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +33;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";367;2;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +49;"management";"divorced";"university.degree";"no";"no";"no";"telephone";"may";"fri";170;7;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +52;"management";"married";"high.school";"no";"no";"no";"cellular";"aug";"tue";408;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"yes" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";244;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no" +32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"wed";261;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +37;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";125;11;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +45;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"thu";76;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +39;"blue-collar";"divorced";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"wed";32;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +28;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"fri";489;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +45;"blue-collar";"divorced";"basic.4y";"unknown";"yes";"no";"telephone";"jul";"fri";168;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +33;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"thu";386;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"fri";834;9;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"entrepreneur";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";87;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +39;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";322;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"aug";"tue";115;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no" +41;"management";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";180;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +55;"admin.";"married";"high.school";"no";"no";"no";"telephone";"oct";"mon";317;2;10;3;"success";-1.1;94.601;-49.5;0.977;4963.6;"no" +49;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";135;1;999;2;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +36;"admin.";"divorced";"university.degree";"unknown";"yes";"no";"cellular";"jul";"thu";187;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +26;"admin.";"married";"high.school";"no";"no";"no";"telephone";"jun";"fri";120;6;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no" +46;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"tue";55;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +38;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";543;9;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +40;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"mon";504;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +38;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";47;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +49;"housemaid";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";351;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +51;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"thu";246;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +41;"services";"divorced";"basic.9y";"no";"yes";"no";"telephone";"jun";"thu";163;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +42;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"tue";326;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";175;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +37;"technician";"single";"professional.course";"unknown";"unknown";"unknown";"telephone";"jun";"mon";51;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +46;"services";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";183;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +33;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";85;4;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +68;"retired";"divorced";"professional.course";"no";"yes";"no";"cellular";"oct";"tue";418;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.728;5017.5;"yes" +41;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"fri";69;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";460;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"tue";245;6;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no" +36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";196;1;999;0;"nonexistent";-1.8;93.876;-40;0.697;5008.7;"yes" +37;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";212;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +57;"technician";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"fri";784;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes" +40;"blue-collar";"single";"basic.6y";"unknown";"no";"no";"telephone";"may";"thu";201;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +36;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";147;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +33;"unemployed";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";151;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +53;"management";"married";"university.degree";"no";"yes";"yes";"telephone";"aug";"fri";81;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +56;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";90;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +33;"management";"married";"professional.course";"no";"no";"no";"cellular";"may";"thu";578;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"yes" +48;"admin.";"divorced";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";1424;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes" +38;"self-employed";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";96;10;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +22;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"thu";53;2;3;1;"success";-2.9;92.201;-31.4;0.873;5076.2;"no" +50;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";23;9;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +58;"retired";"married";"professional.course";"no";"no";"no";"cellular";"nov";"wed";577;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +56;"retired";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";202;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +53;"self-employed";"divorced";"university.degree";"no";"no";"no";"cellular";"jul";"mon";397;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +41;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"fri";114;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +80;"retired";"divorced";"basic.4y";"no";"no";"yes";"cellular";"dec";"fri";720;5;999;1;"failure";-3;92.713;-33;0.718;5023.5;"no" +50;"management";"married";"university.degree";"no";"yes";"no";"telephone";"apr";"fri";198;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +33;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"thu";789;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +29;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"thu";57;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +45;"self-employed";"single";"basic.9y";"no";"yes";"no";"cellular";"apr";"wed";156;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +22;"blue-collar";"single";"basic.6y";"unknown";"unknown";"unknown";"telephone";"may";"tue";270;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +34;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"tue";25;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";690;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +46;"admin.";"single";"high.school";"no";"no";"no";"cellular";"aug";"thu";329;2;9;4;"failure";-1.7;94.027;-38.3;0.904;4991.6;"no" +47;"blue-collar";"married";"unknown";"unknown";"yes";"no";"cellular";"aug";"thu";227;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"aug";"tue";195;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +51;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"tue";104;2;1;1;"success";-0.1;93.2;-42;4.153;5195.8;"no" +38;"blue-collar";"single";"unknown";"no";"yes";"no";"telephone";"oct";"tue";39;1;999;1;"failure";-0.1;93.798;-40.4;4.968;5195.8;"no" +58;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"thu";214;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +49;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";97;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +45;"housemaid";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";113;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +42;"management";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";179;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +31;"technician";"married";"high.school";"no";"yes";"yes";"cellular";"nov";"thu";232;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +45;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"wed";145;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +24;"student";"single";"professional.course";"no";"no";"no";"cellular";"nov";"mon";180;2;999;1;"failure";-3.4;92.649;-30.1;0.722;5017.5;"no" +37;"services";"divorced";"high.school";"no";"yes";"no";"telephone";"jun";"tue";42;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +27;"admin.";"married";"high.school";"unknown";"no";"yes";"telephone";"may";"tue";318;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +48;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"jul";"wed";266;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +46;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"nov";"thu";308;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +57;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"wed";57;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +56;"technician";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"mon";143;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +33;"self-employed";"single";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";85;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +42;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"tue";63;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +53;"entrepreneur";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"fri";150;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +54;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jun";"fri";258;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes" +28;"technician";"single";"high.school";"no";"yes";"no";"telephone";"jul";"tue";166;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +38;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"tue";100;5;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +45;"technician";"married";"basic.9y";"unknown";"no";"no";"cellular";"nov";"fri";174;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +30;"technician";"single";"university.degree";"no";"no";"no";"cellular";"sep";"thu";327;2;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"yes" +55;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"oct";"tue";182;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.742;5017.5;"no" +45;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"wed";158;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +25;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";418;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +54;"management";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";725;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"blue-collar";"single";"basic.4y";"unknown";"yes";"no";"telephone";"may";"mon";181;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";120;3;999;0;"nonexistent";-1.8;92.843;-50;1.811;5099.1;"yes" +33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";244;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +48;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";94;4;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +36;"technician";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";128;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"services";"single";"high.school";"no";"no";"no";"cellular";"sep";"fri";256;2;999;0;"nonexistent";-1.1;94.199;-37.5;0.878;4963.6;"yes" +42;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";153;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +24;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";393;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"thu";44;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +34;"entrepreneur";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";75;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +56;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";400;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +52;"technician";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";211;1;3;4;"success";-1.8;93.876;-40;0.677;5008.7;"yes" +29;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";106;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +54;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"fri";796;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +43;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"thu";246;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +60;"retired";"married";"high.school";"no";"no";"no";"cellular";"may";"thu";181;3;6;1;"success";-1.8;93.876;-40;0.699;5008.7;"yes" +49;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"thu";602;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +51;"admin.";"divorced";"university.degree";"unknown";"no";"no";"cellular";"aug";"fri";59;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";351;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"mon";77;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +31;"services";"single";"basic.9y";"no";"unknown";"unknown";"cellular";"may";"fri";429;1;999;3;"failure";-1.8;93.876;-40;0.695;5008.7;"no" +54;"retired";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"fri";296;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +31;"admin.";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"wed";90;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +35;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";104;4;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +44;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"fri";109;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +63;"retired";"married";"professional.course";"no";"no";"no";"cellular";"dec";"mon";83;4;999;0;"nonexistent";-3;92.713;-33;0.706;5023.5;"no" +28;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"thu";175;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +56;"management";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"tue";122;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +31;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";32;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +33;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"mon";405;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +25;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";835;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +44;"admin.";"divorced";"university.degree";"no";"yes";"yes";"cellular";"jun";"tue";130;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +54;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";252;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"housemaid";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"thu";19;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +54;"housemaid";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"mon";152;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"cellular";"may";"fri";158;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +46;"admin.";"married";"high.school";"no";"no";"no";"cellular";"apr";"thu";243;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no" +57;"retired";"divorced";"professional.course";"no";"no";"no";"telephone";"jun";"wed";203;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +30;"technician";"single";"professional.course";"no";"no";"no";"cellular";"nov";"thu";214;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";281;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";141;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +28;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"tue";171;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +37;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";386;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +40;"technician";"married";"basic.9y";"no";"no";"no";"telephone";"nov";"wed";319;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +28;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";402;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +41;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";95;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +27;"student";"single";"high.school";"unknown";"no";"no";"telephone";"jun";"fri";471;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +45;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"jul";"fri";49;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"management";"married";"basic.9y";"unknown";"yes";"no";"cellular";"may";"mon";305;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +43;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"tue";169;4;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +35;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"mon";87;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +36;"blue-collar";"single";"basic.4y";"no";"yes";"no";"cellular";"may";"thu";279;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +47;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"may";"mon";472;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +57;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"mon";231;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +27;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"jul";"wed";215;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +64;"retired";"married";"unknown";"no";"no";"no";"cellular";"aug";"fri";252;4;999;0;"nonexistent";-2.9;92.201;-31.4;0.849;5076.2;"yes" +29;"management";"single";"university.degree";"no";"no";"no";"telephone";"may";"fri";118;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +45;"management";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"wed";225;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +26;"blue-collar";"single";"high.school";"unknown";"no";"no";"cellular";"may";"mon";314;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +54;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"tue";184;5;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +29;"admin.";"single";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";83;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +39;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";726;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +46;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"telephone";"jun";"thu";89;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +44;"technician";"married";"professional.course";"unknown";"no";"yes";"telephone";"may";"fri";203;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"tue";320;1;999;2;"failure";-3.4;92.649;-30.1;0.715;5017.5;"no" +59;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"wed";1019;2;2;1;"success";-2.9;92.201;-31.4;0.884;5076.2;"yes" +56;"technician";"married";"university.degree";"no";"no";"yes";"telephone";"jun";"mon";69;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +33;"unemployed";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"wed";590;9;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +51;"technician";"divorced";"professional.course";"no";"no";"yes";"cellular";"aug";"fri";50;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +59;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"tue";258;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +31;"services";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";537;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes" +46;"technician";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"tue";235;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +21;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"jul";"wed";89;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +33;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"wed";90;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +46;"entrepreneur";"single";"university.degree";"no";"no";"no";"cellular";"apr";"mon";89;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +24;"blue-collar";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";39;17;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +35;"technician";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";204;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"dec";"mon";205;4;999;1;"failure";-3;92.713;-33;0.706;5023.5;"yes" +35;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"fri";36;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +32;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";66;3;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +34;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"sep";"mon";157;5;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no" +47;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"may";"mon";208;4;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +60;"retired";"divorced";"high.school";"no";"no";"no";"cellular";"sep";"wed";99;2;999;2;"failure";-3.4;92.379;-29.8;0.768;5017.5;"no" +43;"services";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"mon";388;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +58;"technician";"married";"basic.4y";"no";"yes";"no";"telephone";"oct";"wed";88;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.74;5017.5;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";114;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +38;"blue-collar";"single";"basic.4y";"no";"no";"no";"cellular";"may";"thu";121;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +35;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";304;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +34;"services";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"mon";80;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +31;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";75;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"self-employed";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";329;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +49;"management";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"mon";124;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"services";"married";"high.school";"no";"yes";"no";"telephone";"may";"tue";59;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +53;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"fri";180;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +45;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"wed";83;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +58;"retired";"married";"basic.4y";"no";"yes";"no";"telephone";"jun";"tue";159;4;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +46;"technician";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"fri";81;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +56;"services";"divorced";"high.school";"unknown";"yes";"no";"cellular";"apr";"thu";144;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no" +28;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"fri";186;2;999;0;"nonexistent";-1.8;92.843;-50;1.64;5099.1;"no" +38;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"mon";159;1;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no" +32;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";97;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +36;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jun";"mon";174;1;3;1;"success";-2.9;92.963;-40.8;1.266;5076.2;"yes" +27;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"fri";152;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +46;"management";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"fri";996;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +40;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"apr";"thu";815;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"yes" +31;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"tue";208;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.723;4991.6;"yes" +45;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"fri";300;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +49;"self-employed";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";532;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"yes" +52;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";31;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +53;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"mon";70;1;999;1;"failure";-2.9;92.963;-40.8;1.266;5076.2;"no" +26;"services";"single";"high.school";"no";"unknown";"unknown";"telephone";"jul";"wed";588;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +48;"services";"single";"high.school";"no";"yes";"no";"cellular";"apr";"fri";267;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +32;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";805;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +34;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"wed";127;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +35;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"thu";159;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +38;"student";"single";"university.degree";"no";"no";"no";"telephone";"may";"thu";619;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +53;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"wed";1468;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"yes" +44;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"jun";"thu";112;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +53;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"aug";"tue";159;2;3;1;"success";-2.9;92.201;-31.4;0.838;5076.2;"no" +39;"management";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";125;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +38;"entrepreneur";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"thu";166;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +33;"services";"married";"high.school";"no";"yes";"no";"cellular";"jun";"wed";274;2;12;2;"success";-1.7;94.055;-39.8;0.767;4991.6;"yes" +37;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"tue";69;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +29;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";225;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no" +33;"unemployed";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";126;2;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"mar";"tue";406;2;999;1;"failure";-1.8;92.843;-50;1.614;5099.1;"yes" +28;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"oct";"fri";317;2;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"no" +26;"blue-collar";"single";"high.school";"no";"no";"yes";"cellular";"jul";"wed";111;8;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"tue";131;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +46;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";193;7;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +43;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"fri";99;6;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +45;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"fri";582;1;3;1;"success";-1.8;92.893;-46.2;1.259;5099.1;"yes" +50;"technician";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";224;5;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +42;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"mon";378;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +28;"student";"single";"professional.course";"no";"no";"no";"telephone";"jun";"fri";168;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +36;"admin.";"divorced";"high.school";"no";"no";"yes";"cellular";"aug";"fri";263;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +28;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"mon";149;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +49;"housemaid";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"wed";801;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"yes" +25;"blue-collar";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";217;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"management";"married";"unknown";"no";"no";"yes";"cellular";"jul";"mon";86;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +36;"housemaid";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";60;16;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +34;"technician";"divorced";"unknown";"no";"yes";"no";"cellular";"jul";"thu";420;6;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";145;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +56;"management";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"mon";252;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +34;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";96;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +28;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"mon";273;5;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +52;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"fri";10;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +38;"admin.";"married";"high.school";"no";"unknown";"unknown";"cellular";"nov";"thu";309;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"fri";24;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +55;"admin.";"married";"university.degree";"unknown";"no";"no";"cellular";"aug";"wed";96;6;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +33;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jun";"tue";189;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +33;"blue-collar";"divorced";"basic.6y";"unknown";"yes";"no";"telephone";"may";"thu";365;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +48;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"fri";63;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +36;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"thu";90;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";198;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";231;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +29;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";83;4;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +55;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";52;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +53;"admin.";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";233;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +28;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"may";"thu";156;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +30;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";130;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no" +38;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";150;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +32;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"mon";79;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +55;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"mon";113;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"technician";"single";"high.school";"no";"no";"no";"telephone";"may";"tue";151;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +33;"services";"married";"high.school";"no";"yes";"yes";"cellular";"nov";"wed";69;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +33;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"fri";384;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +48;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";477;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +57;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"mon";113;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +46;"services";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";246;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +52;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"fri";495;1;3;1;"success";-3.4;92.649;-30.1;0.714;5017.5;"yes" +32;"services";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"wed";253;1;4;2;"success";-2.9;92.201;-31.4;0.884;5076.2;"yes" +27;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jun";"fri";96;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"apr";"tue";463;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"yes" +38;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";130;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"thu";237;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";320;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +27;"services";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";395;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +43;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";83;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +36;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";91;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +38;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";814;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no" +50;"entrepreneur";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";59;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +54;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";464;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +72;"retired";"divorced";"basic.4y";"no";"no";"no";"cellular";"aug";"mon";152;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no" +48;"admin.";"divorced";"basic.4y";"no";"yes";"no";"cellular";"may";"mon";227;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +54;"entrepreneur";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";100;17;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no" +31;"management";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"thu";166;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +50;"self-employed";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"mon";673;6;3;1;"success";-1.8;92.893;-46.2;1.354;5099.1;"yes" +40;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";154;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +29;"services";"single";"high.school";"no";"yes";"no";"cellular";"nov";"fri";171;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +68;"retired";"married";"basic.4y";"no";"no";"no";"telephone";"sep";"tue";201;1;999;1;"failure";-3.4;92.379;-29.8;0.788;5017.5;"no" +47;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"jul";"tue";108;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +30;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"thu";66;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"wed";198;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +52;"technician";"married";"high.school";"unknown";"no";"no";"telephone";"may";"wed";68;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +30;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"thu";157;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +37;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"fri";89;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jun";"tue";384;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes" +43;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"may";"fri";36;5;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no" +31;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";350;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"technician";"single";"unknown";"no";"yes";"yes";"cellular";"jul";"mon";326;3;999;0;"nonexistent";-2.9;92.469;-33.6;0.996;5076.2;"no" +34;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jun";"fri";122;16;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +47;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";146;7;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +38;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"thu";7;8;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +42;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"fri";154;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +33;"services";"married";"professional.course";"no";"yes";"yes";"cellular";"jul";"thu";630;4;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"yes" +55;"management";"single";"basic.4y";"no";"yes";"no";"telephone";"jun";"wed";89;4;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +46;"services";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";124;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +50;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"mon";152;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +34;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"telephone";"jun";"thu";549;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +34;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";52;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +26;"blue-collar";"single";"high.school";"no";"no";"no";"telephone";"nov";"fri";201;1;999;0;"nonexistent";-3.4;92.649;-30.1;0.714;5017.5;"no" +34;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jul";"mon";252;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"technician";"divorced";"high.school";"no";"yes";"yes";"telephone";"jun";"tue";131;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +27;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"thu";234;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +38;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";119;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +45;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";240;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +50;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"wed";281;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"fri";172;5;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +29;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jul";"wed";73;6;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +41;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"fri";160;6;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +45;"technician";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";122;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +32;"management";"divorced";"university.degree";"no";"yes";"yes";"cellular";"may";"tue";160;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +38;"admin.";"married";"basic.6y";"no";"no";"yes";"telephone";"nov";"mon";204;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +52;"entrepreneur";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"nov";"mon";147;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +37;"services";"married";"high.school";"no";"yes";"no";"cellular";"jun";"wed";200;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no" +33;"technician";"single";"high.school";"no";"no";"no";"cellular";"apr";"fri";124;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +57;"technician";"married";"high.school";"no";"no";"yes";"cellular";"may";"mon";161;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +33;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"mon";702;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"jun";"thu";327;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no" +31;"services";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";163;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +49;"blue-collar";"married";"professional.course";"unknown";"no";"no";"telephone";"may";"mon";144;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"may";"thu";16;6;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +55;"housemaid";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"thu";14;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +42;"retired";"divorced";"illiterate";"no";"no";"no";"cellular";"aug";"wed";146;4;999;0;"nonexistent";-2.9;92.201;-31.4;0.834;5076.2;"no" +29;"entrepreneur";"single";"university.degree";"no";"no";"no";"cellular";"apr";"fri";758;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +51;"admin.";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"tue";531;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";77;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +45;"entrepreneur";"married";"high.school";"no";"no";"no";"cellular";"nov";"mon";623;1;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no" +41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";12;13;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no" +44;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";121;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +66;"unknown";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"thu";110;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +39;"admin.";"married";"university.degree";"no";"unknown";"unknown";"cellular";"apr";"fri";198;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +47;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";170;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";273;6;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +25;"student";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";184;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.851;5076.2;"yes" +58;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"jul";"thu";160;1;999;0;"nonexistent";-2.9;92.469;-33.6;1.072;5076.2;"no" +71;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"tue";193;2;999;0;"nonexistent";-3.4;92.649;-30.1;0.715;5017.5;"yes" +48;"admin.";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"wed";530;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +30;"unemployed";"married";"professional.course";"no";"yes";"no";"cellular";"jun";"tue";194;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no" +24;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"apr";"mon";200;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +27;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";156;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes" +45;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"nov";"fri";980;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"yes" +29;"unemployed";"married";"basic.4y";"no";"no";"no";"telephone";"dec";"thu";805;1;999;0;"nonexistent";-3;92.713;-33;0.714;5023.5;"yes" +26;"student";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"tue";176;2;999;1;"failure";-2.9;92.201;-31.4;0.883;5076.2;"yes" +36;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"fri";378;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"nov";"wed";300;5;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +54;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"dec";"wed";346;1;999;0;"nonexistent";-3;92.713;-33;0.721;5023.5;"yes" +42;"admin.";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";300;3;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +49;"services";"married";"basic.6y";"no";"no";"yes";"cellular";"apr";"fri";383;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no" +28;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"jun";"wed";1195;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no" +52;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";208;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +26;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";400;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +54;"management";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"wed";616;3;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no" +58;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";81;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +28;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"fri";478;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"technician";"single";"professional.course";"no";"yes";"no";"telephone";"aug";"fri";107;2;999;1;"failure";-2.9;92.201;-31.4;0.881;5076.2;"no" +48;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";409;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +28;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jun";"mon";491;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes" +37;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";145;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no" +31;"admin.";"single";"professional.course";"no";"no";"no";"cellular";"jul";"tue";173;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +41;"blue-collar";"married";"unknown";"unknown";"yes";"no";"cellular";"apr";"fri";50;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +52;"services";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";80;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +35;"technician";"divorced";"professional.course";"no";"no";"yes";"telephone";"may";"fri";102;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +40;"services";"single";"high.school";"no";"no";"no";"cellular";"apr";"mon";275;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.466;5099.1;"no" +32;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";562;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +24;"services";"single";"high.school";"no";"no";"yes";"cellular";"may";"thu";91;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no" +39;"management";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"thu";291;3;999;0;"nonexistent";-1.1;94.199;-37.5;0.884;4963.6;"yes" +73;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"mar";"mon";209;2;999;1;"failure";-1.8;93.369;-34.8;0.646;5008.7;"no" +28;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";261;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +29;"management";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";264;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +43;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"mon";128;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +31;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";207;5;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +41;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"mon";121;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no" +61;"retired";"divorced";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";118;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.384;5099.1;"no" +30;"blue-collar";"married";"basic.9y";"no";"no";"yes";"cellular";"jul";"wed";173;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +50;"management";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";600;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +30;"management";"single";"university.degree";"no";"no";"no";"cellular";"apr";"wed";244;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"no" +43;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"jun";"mon";458;6;999;0;"nonexistent";-2.9;92.963;-40.8;1.281;5076.2;"yes" +32;"student";"married";"high.school";"no";"yes";"no";"telephone";"dec";"wed";87;5;999;0;"nonexistent";-3;92.713;-33;0.715;5023.5;"no" +47;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"thu";504;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +43;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";161;3;13;1;"success";-2.9;92.201;-31.4;0.838;5076.2;"no" +34;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";309;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no" +52;"admin.";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";171;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +30;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"telephone";"may";"mon";163;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +35;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";259;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +39;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";175;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";608;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +47;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"nov";"wed";202;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +44;"services";"single";"high.school";"no";"yes";"no";"cellular";"nov";"wed";116;5;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"oct";"fri";233;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.739;5017.5;"yes" +43;"unemployed";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"thu";456;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +39;"services";"divorced";"high.school";"no";"no";"no";"cellular";"jul";"thu";151;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +42;"admin.";"single";"high.school";"no";"no";"yes";"cellular";"jul";"fri";295;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +55;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"tue";139;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no" +56;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"fri";87;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +66;"retired";"married";"high.school";"no";"unknown";"unknown";"cellular";"mar";"tue";881;3;999;1;"failure";-1.8;93.369;-34.8;0.646;5008.7;"yes" +30;"services";"single";"high.school";"no";"yes";"yes";"cellular";"may";"mon";178;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no" +34;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";37;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no" +38;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";97;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +39;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"may";"thu";195;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +27;"technician";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";445;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +27;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"thu";314;2;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no" +35;"blue-collar";"married";"high.school";"unknown";"yes";"no";"cellular";"apr";"mon";19;5;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";103;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +53;"retired";"married";"high.school";"no";"yes";"no";"cellular";"nov";"fri";711;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +37;"management";"married";"university.degree";"no";"no";"no";"cellular";"nov";"tue";658;3;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no" +33;"unknown";"married";"unknown";"unknown";"yes";"no";"telephone";"jun";"wed";247;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +54;"management";"divorced";"university.degree";"no";"yes";"yes";"cellular";"may";"wed";265;2;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no" +39;"services";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"tue";219;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +45;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"tue";528;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"admin.";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"fri";94;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +36;"self-employed";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";200;2;4;1;"success";-0.1;93.2;-42;4.191;5195.8;"no" +27;"student";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";54;1;999;0;"nonexistent";-1.8;93.876;-40;0.672;5008.7;"no" +42;"admin.";"single";"university.degree";"unknown";"yes";"yes";"cellular";"jul";"fri";115;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no" +38;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";157;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +44;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";25;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no" +23;"student";"single";"high.school";"no";"no";"no";"cellular";"may";"thu";361;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no" +50;"blue-collar";"divorced";"high.school";"unknown";"no";"yes";"telephone";"may";"mon";200;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"technician";"married";"high.school";"unknown";"yes";"yes";"telephone";"jul";"thu";193;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +38;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"jun";"thu";128;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no" +33;"blue-collar";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"may";"wed";141;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no" +31;"services";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"mon";277;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"no" +44;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"fri";93;8;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +26;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"jul";"wed";668;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"sep";"wed";7;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.876;4963.6;"no" +31;"services";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"mon";522;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +56;"admin.";"married";"unknown";"no";"yes";"no";"cellular";"aug";"mon";476;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +37;"technician";"divorced";"professional.course";"no";"unknown";"unknown";"cellular";"aug";"tue";417;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +57;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"mon";483;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"yes" +46;"housemaid";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";336;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +49;"admin.";"married";"basic.9y";"unknown";"no";"yes";"cellular";"aug";"thu";86;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no" +74;"retired";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";232;3;999;0;"nonexistent";-2.9;92.201;-31.4;0.854;5076.2;"yes" +31;"blue-collar";"single";"basic.9y";"unknown";"no";"yes";"telephone";"jul";"thu";70;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +38;"technician";"single";"professional.course";"unknown";"yes";"no";"telephone";"jun";"fri";111;5;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no" +37;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"mon";1012;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +56;"admin.";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"thu";225;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no" +35;"entrepreneur";"single";"university.degree";"no";"no";"no";"cellular";"jul";"mon";120;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +46;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"fri";49;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +30;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"thu";348;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +40;"blue-collar";"single";"basic.9y";"no";"unknown";"unknown";"cellular";"nov";"wed";245;4;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +54;"management";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"mon";224;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +32;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"nov";"tue";296;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no" +34;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";340;2;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"oct";"thu";86;1;999;1;"failure";-3.4;92.431;-26.9;0.74;5017.5;"no" +38;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";95;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +42;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"wed";228;2;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no" +49;"management";"divorced";"basic.6y";"no";"no";"no";"telephone";"nov";"thu";88;6;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +27;"student";"single";"high.school";"no";"no";"yes";"cellular";"jul";"wed";537;2;999;1;"failure";-2.9;92.469;-33.6;1.029;5076.2;"no" +52;"services";"married";"high.school";"no";"no";"yes";"cellular";"may";"fri";38;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no" +54;"retired";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";26;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +59;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";464;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no" +48;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"thu";506;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +47;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"mon";66;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +27;"services";"married";"university.degree";"no";"no";"no";"cellular";"may";"tue";223;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +41;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"apr";"tue";608;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"no" +47;"blue-collar";"married";"basic.4y";"no";"unknown";"unknown";"telephone";"jul";"thu";175;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no" +36;"services";"married";"high.school";"no";"no";"yes";"telephone";"may";"tue";1590;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +40;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"mon";190;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +57;"self-employed";"married";"basic.4y";"no";"yes";"no";"telephone";"apr";"mon";534;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no" +31;"unemployed";"divorced";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";104;7;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no" +65;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"jun";"mon";145;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.266;5076.2;"no" +60;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";11;8;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no" +53;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";381;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no" +81;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"oct";"wed";621;1;999;2;"failure";-1.1;94.601;-49.5;1.016;4963.6;"yes" +81;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"mon";90;4;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no" +47;"blue-collar";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";30;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +60;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";1602;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"yes" +55;"management";"divorced";"university.degree";"unknown";"no";"no";"cellular";"nov";"fri";89;2;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no" +70;"retired";"married";"basic.4y";"unknown";"no";"no";"cellular";"oct";"thu";122;1;14;3;"failure";-1.1;94.601;-49.5;0.965;4963.6;"no" +32;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"may";"fri";757;1;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no" +31;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";359;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +46;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"thu";358;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no" +36;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"fri";241;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +68;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jun";"mon";383;3;999;0;"nonexistent";-1.7;94.055;-39.8;0.754;4991.6;"no" +31;"technician";"single";"high.school";"no";"yes";"no";"cellular";"nov";"wed";77;4;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" +52;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"fri";346;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +58;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";70;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no" +54;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"mon";351;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no" +40;"housemaid";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";126;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no" +44;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";413;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +42;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";578;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +30;"unemployed";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";13;11;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no" +42;"technician";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";99;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +54;"technician";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"mon";196;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +29;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";302;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"mon";323;1;3;2;"success";-3.4;92.379;-29.8;0.771;5017.5;"yes" +25;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"oct";"fri";115;1;999;1;"failure";-3.4;92.431;-26.9;0.739;5017.5;"yes" +43;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"tue";593;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +38;"management";"married";"high.school";"unknown";"no";"no";"telephone";"may";"thu";879;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no" +30;"blue-collar";"single";"high.school";"no";"no";"no";"telephone";"jul";"wed";71;1;999;0;"nonexistent";1.4;93.918;-42.7;4.956;5228.1;"no" +56;"retired";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";580;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +62;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"mon";152;1;6;1;"success";-3.4;92.649;-30.1;0.719;5017.5;"no" +36;"admin.";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";69;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +33;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";146;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +41;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"cellular";"aug";"tue";102;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +34;"housemaid";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";159;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +58;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"aug";"tue";290;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no" +41;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"apr";"fri";620;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no" +35;"entrepreneur";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";88;5;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no" +31;"blue-collar";"single";"basic.9y";"unknown";"no";"yes";"telephone";"jun";"fri";70;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no" +43;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";77;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no" +42;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";408;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no" +47;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jul";"tue";159;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no" +45;"entrepreneur";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";29;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no" +36;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"wed";155;11;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no" +32;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";151;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no" +63;"retired";"married";"high.school";"no";"no";"no";"cellular";"oct";"wed";1386;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.74;5017.5;"no" +53;"housemaid";"divorced";"basic.6y";"unknown";"unknown";"unknown";"telephone";"may";"fri";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no" +30;"technician";"married";"university.degree";"no";"no";"yes";"cellular";"jun";"fri";131;1;999;1;"failure";-1.7;94.055;-39.8;0.748;4991.6;"no" +31;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";155;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +31;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";463;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no" +30;"admin.";"married";"basic.6y";"no";"yes";"yes";"cellular";"jul";"thu";53;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no" +39;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"jul";"fri";219;1;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no" +27;"student";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";64;2;999;1;"failure";-1.8;92.893;-46.2;1.354;5099.1;"no" +58;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";528;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no" +34;"management";"single";"high.school";"no";"yes";"no";"cellular";"nov";"wed";175;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no" diff --git a/data/beer.txt b/data/beer.txt new file mode 100644 index 0000000..8eb6c01 --- /dev/null +++ b/data/beer.txt @@ -0,0 +1,21 @@ +name calories sodium alcohol cost +Budweiser 144 15 4.7 0.43 +Schlitz 151 19 4.9 0.43 +Lowenbrau 157 15 0.9 0.48 +Kronenbourg 170 7 5.2 0.73 +Heineken 152 11 5.0 0.77 +Old_Milwaukee 145 23 4.6 0.28 +Augsberger 175 24 5.5 0.40 +Srohs_Bohemian_Style 149 27 4.7 0.42 +Miller_Lite 99 10 4.3 0.43 +Budweiser_Light 113 8 3.7 0.40 +Coors 140 18 4.6 0.44 +Coors_Light 102 15 4.1 0.46 +Michelob_Light 135 11 4.2 0.50 +Becks 150 19 4.7 0.76 +Kirin 149 6 5.0 0.79 +Pabst_Extra_Light 68 15 2.3 0.38 +Hamms 139 19 4.4 0.43 +Heilemans_Old_Style 144 24 4.9 0.43 +Olympia_Goled_Light 72 6 2.9 0.46 +Schlitz_Light 97 7 4.2 0.47 diff --git a/data/bikeshare.csv b/data/bikeshare.csv new file mode 100644 index 0000000..736df6e --- /dev/null +++ b/data/bikeshare.csv @@ -0,0 +1,10887 @@ +datetime,season,holiday,workingday,weather,temp,atemp,humidity,windspeed,casual,registered,count +2011-01-01 00:00:00,1,0,0,1,9.84,14.395,81,0,3,13,16 +2011-01-01 01:00:00,1,0,0,1,9.02,13.635,80,0,8,32,40 +2011-01-01 02:00:00,1,0,0,1,9.02,13.635,80,0,5,27,32 +2011-01-01 03:00:00,1,0,0,1,9.84,14.395,75,0,3,10,13 +2011-01-01 04:00:00,1,0,0,1,9.84,14.395,75,0,0,1,1 +2011-01-01 05:00:00,1,0,0,2,9.84,12.88,75,6.0032,0,1,1 +2011-01-01 06:00:00,1,0,0,1,9.02,13.635,80,0,2,0,2 +2011-01-01 07:00:00,1,0,0,1,8.2,12.88,86,0,1,2,3 +2011-01-01 08:00:00,1,0,0,1,9.84,14.395,75,0,1,7,8 +2011-01-01 09:00:00,1,0,0,1,13.12,17.425,76,0,8,6,14 +2011-01-01 10:00:00,1,0,0,1,15.58,19.695,76,16.9979,12,24,36 +2011-01-01 11:00:00,1,0,0,1,14.76,16.665,81,19.0012,26,30,56 +2011-01-01 12:00:00,1,0,0,1,17.22,21.21,77,19.0012,29,55,84 +2011-01-01 13:00:00,1,0,0,2,18.86,22.725,72,19.9995,47,47,94 +2011-01-01 14:00:00,1,0,0,2,18.86,22.725,72,19.0012,35,71,106 +2011-01-01 15:00:00,1,0,0,2,18.04,21.97,77,19.9995,40,70,110 +2011-01-01 16:00:00,1,0,0,2,17.22,21.21,82,19.9995,41,52,93 +2011-01-01 17:00:00,1,0,0,2,18.04,21.97,82,19.0012,15,52,67 +2011-01-01 18:00:00,1,0,0,3,17.22,21.21,88,16.9979,9,26,35 +2011-01-01 19:00:00,1,0,0,3,17.22,21.21,88,16.9979,6,31,37 +2011-01-01 20:00:00,1,0,0,2,16.4,20.455,87,16.9979,11,25,36 +2011-01-01 21:00:00,1,0,0,2,16.4,20.455,87,12.998,3,31,34 +2011-01-01 22:00:00,1,0,0,2,16.4,20.455,94,15.0013,11,17,28 +2011-01-01 23:00:00,1,0,0,2,18.86,22.725,88,19.9995,15,24,39 +2011-01-02 00:00:00,1,0,0,2,18.86,22.725,88,19.9995,4,13,17 +2011-01-02 01:00:00,1,0,0,2,18.04,21.97,94,16.9979,1,16,17 +2011-01-02 02:00:00,1,0,0,2,17.22,21.21,100,19.0012,1,8,9 +2011-01-02 03:00:00,1,0,0,2,18.86,22.725,94,12.998,2,4,6 +2011-01-02 04:00:00,1,0,0,2,18.86,22.725,94,12.998,2,1,3 +2011-01-02 06:00:00,1,0,0,3,17.22,21.21,77,19.9995,0,2,2 +2011-01-02 07:00:00,1,0,0,2,16.4,20.455,76,12.998,0,1,1 +2011-01-02 08:00:00,1,0,0,3,16.4,20.455,71,15.0013,0,8,8 +2011-01-02 09:00:00,1,0,0,2,15.58,19.695,76,15.0013,1,19,20 +2011-01-02 10:00:00,1,0,0,2,14.76,17.425,81,15.0013,7,46,53 +2011-01-02 11:00:00,1,0,0,2,14.76,16.665,71,16.9979,16,54,70 +2011-01-02 12:00:00,1,0,0,2,14.76,16.665,66,19.9995,20,73,93 +2011-01-02 13:00:00,1,0,0,2,14.76,17.425,66,8.9981,11,64,75 +2011-01-02 14:00:00,1,0,0,3,14.76,17.425,76,12.998,4,55,59 +2011-01-02 15:00:00,1,0,0,3,13.94,16.665,81,11.0014,19,55,74 +2011-01-02 16:00:00,1,0,0,3,13.94,16.665,71,11.0014,9,67,76 +2011-01-02 17:00:00,1,0,0,1,13.94,16.665,57,12.998,7,58,65 +2011-01-02 18:00:00,1,0,0,2,14.76,16.665,46,22.0028,10,43,53 +2011-01-02 19:00:00,1,0,0,1,13.12,14.395,42,30.0026,1,29,30 +2011-01-02 20:00:00,1,0,0,1,12.3,13.635,39,23.9994,5,17,22 +2011-01-02 21:00:00,1,0,0,1,10.66,11.365,44,22.0028,11,20,31 +2011-01-02 22:00:00,1,0,0,1,9.84,10.605,44,19.9995,0,9,9 +2011-01-02 23:00:00,1,0,0,1,9.02,11.365,47,11.0014,0,8,8 +2011-01-03 00:00:00,1,0,1,1,9.02,9.85,44,23.9994,0,5,5 +2011-01-03 01:00:00,1,0,1,1,8.2,8.335,44,27.9993,0,2,2 +2011-01-03 04:00:00,1,0,1,1,6.56,6.82,47,26.0027,0,1,1 +2011-01-03 05:00:00,1,0,1,1,6.56,6.82,47,19.0012,0,3,3 +2011-01-03 06:00:00,1,0,1,1,5.74,5.305,50,26.0027,0,30,30 +2011-01-03 07:00:00,1,0,1,1,5.74,6.82,50,12.998,1,63,64 +2011-01-03 08:00:00,1,0,1,1,5.74,6.06,50,19.0012,1,153,154 +2011-01-03 09:00:00,1,0,1,1,6.56,6.82,43,26.0027,7,81,88 +2011-01-03 10:00:00,1,0,1,1,7.38,8.335,43,16.9979,11,33,44 +2011-01-03 11:00:00,1,0,1,1,8.2,9.09,40,22.0028,10,41,51 +2011-01-03 12:00:00,1,0,1,1,9.02,10.605,35,19.9995,13,48,61 +2011-01-03 13:00:00,1,0,1,1,9.84,10.605,35,19.0012,8,53,61 +2011-01-03 14:00:00,1,0,1,1,10.66,12.12,30,19.0012,11,66,77 +2011-01-03 15:00:00,1,0,1,1,10.66,12.12,30,16.9979,14,58,72 +2011-01-03 16:00:00,1,0,1,1,10.66,12.12,30,16.9979,9,67,76 +2011-01-03 17:00:00,1,0,1,1,9.84,11.365,30,15.0013,11,146,157 +2011-01-03 18:00:00,1,0,1,1,9.84,12.88,32,7.0015,9,148,157 +2011-01-03 19:00:00,1,0,1,1,8.2,12.88,47,0,8,102,110 +2011-01-03 20:00:00,1,0,1,1,8.2,11.365,47,7.0015,3,49,52 +2011-01-03 21:00:00,1,0,1,1,7.38,9.85,64,8.9981,3,49,52 +2011-01-03 22:00:00,1,0,1,1,5.74,7.575,69,8.9981,0,20,20 +2011-01-03 23:00:00,1,0,1,1,7.38,10.605,55,7.0015,1,11,12 +2011-01-04 00:00:00,1,0,1,1,6.56,9.09,55,7.0015,0,5,5 +2011-01-04 01:00:00,1,0,1,1,6.56,9.09,59,7.0015,0,2,2 +2011-01-04 02:00:00,1,0,1,1,5.74,7.575,63,8.9981,0,1,1 +2011-01-04 04:00:00,1,0,1,1,5.74,9.09,63,6.0032,0,2,2 +2011-01-04 05:00:00,1,0,1,1,4.92,7.575,68,7.0015,0,4,4 +2011-01-04 06:00:00,1,0,1,1,4.92,7.575,74,7.0015,0,36,36 +2011-01-04 07:00:00,1,0,1,1,4.92,7.575,74,8.9981,2,92,94 +2011-01-04 08:00:00,1,0,1,1,5.74,7.575,69,11.0014,2,177,179 +2011-01-04 09:00:00,1,0,1,1,6.56,7.575,64,15.0013,2,98,100 +2011-01-04 10:00:00,1,0,1,2,6.56,6.82,69,22.0028,5,37,42 +2011-01-04 11:00:00,1,0,1,1,9.02,10.605,51,19.9995,7,50,57 +2011-01-04 12:00:00,1,0,1,1,9.02,11.365,51,11.0014,12,66,78 +2011-01-04 13:00:00,1,0,1,1,9.84,11.365,56,12.998,18,79,97 +2011-01-04 14:00:00,1,0,1,1,10.66,12.88,52,15.0013,9,54,63 +2011-01-04 15:00:00,1,0,1,1,11.48,13.635,52,16.9979,17,48,65 +2011-01-04 16:00:00,1,0,1,1,12.3,14.395,49,16.9979,15,68,83 +2011-01-04 17:00:00,1,0,1,1,11.48,13.635,48,15.0013,10,202,212 +2011-01-04 18:00:00,1,0,1,1,10.66,12.88,48,12.998,3,179,182 +2011-01-04 19:00:00,1,0,1,1,9.84,12.88,48,7.0015,2,110,112 +2011-01-04 20:00:00,1,0,1,1,9.84,12.88,48,7.0015,1,53,54 +2011-01-04 21:00:00,1,0,1,1,9.02,13.635,64,0,0,48,48 +2011-01-04 22:00:00,1,0,1,1,9.02,12.88,64,6.0032,1,34,35 +2011-01-04 23:00:00,1,0,1,1,8.2,11.365,69,6.0032,2,9,11 +2011-01-05 00:00:00,1,0,1,1,8.2,12.88,64,0,0,6,6 +2011-01-05 01:00:00,1,0,1,1,6.56,9.85,74,6.0032,0,6,6 +2011-01-05 02:00:00,1,0,1,1,6.56,9.85,74,6.0032,0,2,2 +2011-01-05 04:00:00,1,0,1,1,9.84,11.365,48,15.0013,0,2,2 +2011-01-05 05:00:00,1,0,1,1,9.02,11.365,47,11.0014,0,3,3 +2011-01-05 06:00:00,1,0,1,1,8.2,9.85,47,15.0013,0,33,33 +2011-01-05 07:00:00,1,0,1,1,7.38,9.09,43,12.998,1,87,88 +2011-01-05 08:00:00,1,0,1,1,8.2,9.09,40,19.9995,3,192,195 +2011-01-05 09:00:00,1,0,1,1,9.02,9.85,37,22.0028,6,109,115 +2011-01-05 10:00:00,1,0,1,1,9.02,9.85,37,22.0028,4,53,57 +2011-01-05 11:00:00,1,0,1,1,10.66,11.365,33,22.0028,12,34,46 +2011-01-05 12:00:00,1,0,1,1,10.66,11.365,33,22.0028,5,74,79 +2011-01-05 13:00:00,1,0,1,1,11.48,12.88,30,19.9995,6,65,71 +2011-01-05 14:00:00,1,0,1,1,12.3,14.395,28,12.998,10,52,62 +2011-01-05 15:00:00,1,0,1,1,12.3,14.395,28,12.998,7,55,62 +2011-01-05 16:00:00,1,0,1,1,12.3,15.91,28,6.0032,4,85,89 +2011-01-05 17:00:00,1,0,1,1,9.84,11.365,38,12.998,4,186,190 +2011-01-05 18:00:00,1,0,1,1,9.84,12.12,38,8.9981,3,166,169 +2011-01-05 19:00:00,1,0,1,1,9.84,12.88,38,7.0015,5,127,132 +2011-01-05 20:00:00,1,0,1,1,9.02,11.365,47,11.0014,7,82,89 +2011-01-05 21:00:00,1,0,1,1,8.2,9.85,51,12.998,3,40,43 +2011-01-05 22:00:00,1,0,1,1,7.38,9.85,55,8.9981,1,41,42 +2011-01-05 23:00:00,1,0,1,1,8.2,12.88,47,0,1,18,19 +2011-01-06 00:00:00,1,0,1,1,7.38,12.12,55,0,0,11,11 +2011-01-06 01:00:00,1,0,1,1,6.56,11.365,64,0,0,4,4 +2011-01-06 02:00:00,1,0,1,1,6.56,11.365,64,0,0,2,2 +2011-01-06 04:00:00,1,0,1,2,6.56,9.85,64,6.0032,0,1,1 +2011-01-06 05:00:00,1,0,1,2,5.74,9.09,69,6.0032,0,4,4 +2011-01-06 06:00:00,1,0,1,2,5.74,8.335,63,7.0015,0,36,36 +2011-01-06 07:00:00,1,0,1,2,6.56,11.365,59,0,0,95,95 +2011-01-06 08:00:00,1,0,1,1,6.56,11.365,59,0,3,216,219 +2011-01-06 09:00:00,1,0,1,2,7.38,12.12,51,0,6,116,122 +2011-01-06 10:00:00,1,0,1,1,8.2,12.88,47,0,3,42,45 +2011-01-06 11:00:00,1,0,1,1,9.02,12.88,44,6.0032,2,57,59 +2011-01-06 12:00:00,1,0,1,1,10.66,14.395,35,0,6,78,84 +2011-01-06 13:00:00,1,0,1,1,10.66,13.635,35,7.0015,12,55,67 +2011-01-06 14:00:00,1,0,1,1,11.48,13.635,36,11.0014,11,59,70 +2011-01-06 15:00:00,1,0,1,1,11.48,13.635,36,0,8,54,62 +2011-01-06 16:00:00,1,0,1,1,10.66,12.88,38,11.0014,12,74,86 +2011-01-06 17:00:00,1,0,1,1,9.02,11.365,51,11.0014,9,163,172 +2011-01-06 18:00:00,1,0,1,1,9.02,11.365,51,8.9981,5,158,163 +2011-01-06 19:00:00,1,0,1,1,9.02,12.88,55,6.0032,3,109,112 +2011-01-06 20:00:00,1,0,1,1,8.2,10.605,51,11.0014,3,66,69 +2011-01-06 21:00:00,1,0,1,2,9.02,10.605,55,15.0013,0,48,48 +2011-01-06 22:00:00,1,0,1,2,9.02,10.605,51,19.0012,1,51,52 +2011-01-06 23:00:00,1,0,1,2,8.2,9.85,59,12.998,4,19,23 +2011-01-07 00:00:00,1,0,1,2,8.2,9.85,64,12.998,4,13,17 +2011-01-07 01:00:00,1,0,1,2,8.2,9.85,69,15.0013,2,5,7 +2011-01-07 02:00:00,1,0,1,2,8.2,9.85,69,15.0013,0,1,1 +2011-01-07 04:00:00,1,0,1,2,8.2,10.605,69,8.9981,0,1,1 +2011-01-07 05:00:00,1,0,1,3,9.02,13.635,55,0,0,5,5 +2011-01-07 06:00:00,1,0,1,2,8.2,12.88,69,0,8,26,34 +2011-01-07 07:00:00,1,0,1,1,8.2,10.605,69,8.9981,8,76,84 +2011-01-07 08:00:00,1,0,1,1,8.2,9.85,51,16.9979,20,190,210 +2011-01-07 09:00:00,1,0,1,1,8.2,9.09,47,19.9995,9,125,134 +2011-01-07 10:00:00,1,0,1,1,9.02,9.85,37,22.0028,16,47,63 +2011-01-07 11:00:00,1,0,1,2,8.2,9.85,40,15.0013,19,48,67 +2011-01-07 12:00:00,1,0,1,2,8.2,9.85,37,16.9979,9,50,59 +2011-01-07 13:00:00,1,0,1,2,8.2,9.09,37,19.0012,9,64,73 +2011-01-07 14:00:00,1,0,1,2,8.2,9.85,40,16.9979,7,43,50 +2011-01-07 15:00:00,1,0,1,2,8.2,10.605,37,11.0014,9,63,72 +2011-01-07 16:00:00,1,0,1,2,8.2,10.605,37,11.0014,5,82,87 +2011-01-07 17:00:00,1,0,1,2,8.2,12.88,37,0,9,178,187 +2011-01-07 18:00:00,1,0,1,1,8.2,11.365,40,6.0032,7,116,123 +2011-01-07 19:00:00,1,0,1,1,6.56,9.85,55,6.0032,3,92,95 +2011-01-07 20:00:00,1,0,1,1,7.38,10.605,47,7.0015,1,50,51 +2011-01-07 21:00:00,1,0,1,1,7.38,9.85,47,8.9981,0,39,39 +2011-01-07 22:00:00,1,0,1,2,7.38,9.85,43,11.0014,2,34,36 +2011-01-07 23:00:00,1,0,1,2,7.38,9.85,51,11.0014,1,14,15 +2011-01-08 00:00:00,1,0,0,2,7.38,9.85,51,11.0014,1,24,25 +2011-01-08 01:00:00,1,0,0,2,7.38,10.605,55,6.0032,1,15,16 +2011-01-08 02:00:00,1,0,0,2,7.38,12.12,55,0,3,13,16 +2011-01-08 03:00:00,1,0,0,3,7.38,9.85,55,11.0014,0,7,7 +2011-01-08 04:00:00,1,0,0,3,7.38,9.85,55,11.0014,0,1,1 +2011-01-08 05:00:00,1,0,0,2,6.56,8.335,74,11.0014,0,5,5 +2011-01-08 06:00:00,1,0,0,2,6.56,8.335,74,11.0014,0,2,2 +2011-01-08 07:00:00,1,0,0,2,6.56,9.09,74,7.0015,1,8,9 +2011-01-08 08:00:00,1,0,0,3,6.56,9.09,93,7.0015,0,15,15 +2011-01-08 09:00:00,1,0,0,3,6.56,9.09,93,7.0015,0,20,20 +2011-01-08 10:00:00,1,0,0,2,7.38,9.85,80,11.0014,5,56,61 +2011-01-08 11:00:00,1,0,0,2,8.2,9.09,69,26.0027,2,60,62 +2011-01-08 12:00:00,1,0,0,2,8.2,9.09,59,23.9994,8,90,98 +2011-01-08 13:00:00,1,0,0,1,8.2,9.09,44,22.0028,7,95,102 +2011-01-08 14:00:00,1,0,0,1,8.2,8.335,32,32.9975,12,83,95 +2011-01-08 15:00:00,1,0,0,1,8.2,8.335,32,30.0026,5,69,74 +2011-01-08 16:00:00,1,0,0,1,7.38,6.82,29,30.0026,8,68,76 +2011-01-08 17:00:00,1,0,0,1,6.56,6.06,37,36.9974,5,64,69 +2011-01-08 18:00:00,1,0,0,1,5.74,6.06,39,19.9995,3,52,55 +2011-01-08 19:00:00,1,0,0,1,5.74,6.06,36,16.9979,4,26,30 +2011-01-08 20:00:00,1,0,0,1,4.92,6.06,36,16.9979,0,28,28 +2011-01-08 21:00:00,1,0,0,1,4.92,5.305,39,23.9994,2,35,37 +2011-01-08 22:00:00,1,0,0,1,4.92,5.305,36,26.0027,1,33,34 +2011-01-08 23:00:00,1,0,0,1,4.1,3.03,39,30.0026,0,22,22 +2011-01-09 00:00:00,1,0,0,1,4.1,3.79,42,26.0027,1,24,25 +2011-01-09 01:00:00,1,0,0,1,4.1,3.03,42,31.0009,0,12,12 +2011-01-09 02:00:00,1,0,0,1,4.1,3.03,46,31.0009,0,11,11 +2011-01-09 03:00:00,1,0,0,1,4.1,3.79,46,27.9993,0,4,4 +2011-01-09 04:00:00,1,0,0,1,3.28,4.545,53,12.998,0,1,1 +2011-01-09 05:00:00,1,0,0,1,3.28,4.545,53,12.998,0,1,1 +2011-01-09 06:00:00,1,0,0,1,4.1,4.545,49,19.0012,0,1,1 +2011-01-09 07:00:00,1,0,0,1,3.28,4.545,53,12.998,1,5,6 +2011-01-09 08:00:00,1,0,0,1,4.1,4.545,49,19.0012,0,10,10 +2011-01-09 09:00:00,1,0,0,1,4.92,3.79,46,35.0008,0,19,19 +2011-01-09 10:00:00,1,0,0,1,5.74,5.305,43,26.0027,0,49,49 +2011-01-09 11:00:00,1,0,0,1,6.56,6.06,40,35.0008,2,47,49 +2011-01-09 12:00:00,1,0,0,1,7.38,6.82,37,30.0026,4,79,83 +2011-01-09 13:00:00,1,0,0,1,8.2,8.335,34,30.0026,6,69,75 +2011-01-09 14:00:00,1,0,0,1,9.02,9.09,32,31.0009,8,64,72 +2011-01-09 15:00:00,1,0,0,1,9.02,9.85,35,23.9994,5,77,82 +2011-01-09 16:00:00,1,0,0,1,8.2,8.335,34,30.0026,13,79,92 +2011-01-09 17:00:00,1,0,0,1,7.38,7.575,37,26.0027,3,59,62 +2011-01-09 18:00:00,1,0,0,1,6.56,6.82,40,22.0028,4,44,48 +2011-01-09 19:00:00,1,0,0,1,6.56,6.82,43,22.0028,1,40,41 +2011-01-09 20:00:00,1,0,0,1,5.74,6.06,46,16.9979,0,38,38 +2011-01-09 21:00:00,1,0,0,1,5.74,5.305,46,27.9993,1,19,20 +2011-01-09 22:00:00,1,0,0,1,5.74,6.06,46,19.9995,5,10,15 +2011-01-09 23:00:00,1,0,0,1,4.92,6.82,50,12.998,0,6,6 +2011-01-10 00:00:00,1,0,1,1,4.92,6.06,50,19.0012,2,3,5 +2011-01-10 01:00:00,1,0,1,1,4.92,6.06,50,19.0012,1,0,1 +2011-01-10 02:00:00,1,0,1,1,4.92,6.06,50,15.0013,0,3,3 +2011-01-10 03:00:00,1,0,1,1,4.92,6.06,50,15.0013,0,1,1 +2011-01-10 04:00:00,1,0,1,1,4.1,6.06,54,8.9981,1,2,3 +2011-01-10 05:00:00,1,0,1,1,4.1,5.305,54,16.9979,0,3,3 +2011-01-10 06:00:00,1,0,1,1,4.92,6.06,50,19.0012,0,31,31 +2011-01-10 07:00:00,1,0,1,1,4.92,6.06,50,15.0013,2,75,77 +2011-01-10 08:00:00,1,0,1,2,4.92,6.06,50,19.0012,4,184,188 +2011-01-10 09:00:00,1,0,1,2,5.74,6.06,50,16.9979,2,92,94 +2011-01-10 10:00:00,1,0,1,2,5.74,6.06,50,19.9995,0,31,31 +2011-01-10 11:00:00,1,0,1,2,6.56,6.82,47,19.0012,2,28,30 +2011-01-10 12:00:00,1,0,1,2,8.2,9.09,40,19.0012,5,47,52 +2011-01-10 13:00:00,1,0,1,2,8.2,9.09,40,19.0012,4,50,54 +2011-01-10 14:00:00,1,0,1,2,8.2,9.85,40,15.0013,0,47,47 +2011-01-10 15:00:00,1,0,1,2,8.2,9.85,40,15.0013,2,43,45 +2011-01-10 16:00:00,1,0,1,1,8.2,10.605,40,8.9981,4,70,74 +2011-01-10 17:00:00,1,0,1,1,8.2,11.365,40,7.0015,4,174,178 +2011-01-10 18:00:00,1,0,1,1,8.2,9.85,40,15.0013,1,154,155 +2011-01-10 19:00:00,1,0,1,1,6.56,8.335,47,11.0014,3,92,95 +2011-01-10 20:00:00,1,0,1,1,6.56,8.335,50,11.0014,1,73,74 +2011-01-10 21:00:00,1,0,1,1,5.74,6.82,59,12.998,1,37,38 +2011-01-10 22:00:00,1,0,1,1,5.74,7.575,59,11.0014,2,22,24 +2011-01-10 23:00:00,1,0,1,1,5.74,7.575,59,11.0014,0,18,18 +2011-01-11 00:00:00,1,0,1,1,5.74,8.335,59,7.0015,2,10,12 +2011-01-11 01:00:00,1,0,1,1,5.74,7.575,59,11.0014,0,3,3 +2011-01-11 02:00:00,1,0,1,2,6.56,7.575,55,12.998,0,3,3 +2011-01-11 05:00:00,1,0,1,2,6.56,9.09,55,8.9981,0,6,6 +2011-01-11 06:00:00,1,0,1,2,6.56,9.09,55,8.9981,0,27,27 +2011-01-11 07:00:00,1,0,1,2,6.56,11.365,55,0,2,97,99 +2011-01-11 08:00:00,1,0,1,2,7.38,10.605,51,6.0032,3,214,217 +2011-01-11 09:00:00,1,0,1,2,7.38,9.85,51,11.0014,3,127,130 +2011-01-11 10:00:00,1,0,1,2,8.2,10.605,51,11.0014,3,51,54 +2011-01-11 11:00:00,1,0,1,2,8.2,10.605,47,8.9981,4,31,35 +2011-01-11 12:00:00,1,0,1,2,8.2,11.365,51,7.0015,2,55,57 +2011-01-11 13:00:00,1,0,1,2,8.2,11.365,59,6.0032,6,46,52 +2011-01-11 14:00:00,1,0,1,2,8.2,11.365,59,6.0032,3,60,63 +2011-01-11 15:00:00,1,0,1,2,6.56,9.85,80,6.0032,2,45,47 +2011-01-11 16:00:00,1,0,1,2,6.56,7.575,86,15.0013,4,72,76 +2011-01-11 17:00:00,1,0,1,2,6.56,7.575,86,15.0013,6,130,136 +2011-01-11 18:00:00,1,0,1,3,6.56,9.09,93,7.0015,1,94,95 +2011-01-11 19:00:00,1,0,1,3,6.56,11.365,93,0,0,51,51 +2011-01-11 20:00:00,1,0,1,3,6.56,7.575,93,12.998,0,32,32 +2011-01-11 21:00:00,1,0,1,3,6.56,9.85,86,6.0032,0,20,20 +2011-01-11 22:00:00,1,0,1,3,6.56,9.09,93,7.0015,1,28,29 +2011-01-11 23:00:00,1,0,1,3,6.56,9.85,93,6.0032,1,18,19 +2011-01-12 00:00:00,1,0,1,2,6.56,9.85,86,6.0032,0,7,7 +2011-01-12 01:00:00,1,0,1,2,6.56,9.09,86,7.0015,0,6,6 +2011-01-12 02:00:00,1,0,1,1,5.74,7.575,86,8.9981,0,1,1 +2011-01-12 05:00:00,1,0,1,1,5.74,7.575,86,11.0014,0,5,5 +2011-01-12 06:00:00,1,0,1,1,4.92,7.575,93,8.9981,0,16,16 +2011-01-12 07:00:00,1,0,1,1,5.74,7.575,69,8.9981,0,54,54 +2011-01-12 08:00:00,1,0,1,1,6.56,8.335,59,11.0014,3,125,128 +2011-01-12 09:00:00,1,0,1,1,6.56,6.82,59,22.0028,3,78,81 +2011-01-12 10:00:00,1,0,1,1,7.38,9.09,55,15.0013,0,39,39 +2011-01-12 11:00:00,1,0,1,1,8.2,9.09,51,26.0027,3,32,35 +2011-01-12 12:00:00,1,0,1,1,8.2,7.575,47,39.0007,3,52,55 +2011-01-12 13:00:00,1,0,1,1,9.02,9.85,44,23.9994,0,49,49 +2011-01-12 14:00:00,1,0,1,1,8.2,9.09,47,22.0028,0,44,44 +2011-01-12 15:00:00,1,0,1,1,8.2,8.335,47,27.9993,1,48,49 +2011-01-12 16:00:00,1,0,1,1,9.02,9.85,44,22.0028,5,63,68 +2011-01-12 17:00:00,1,0,1,1,8.2,9.09,47,23.9994,0,139,139 +2011-01-12 18:00:00,1,0,1,1,8.2,7.575,47,35.0008,2,135,137 +2011-01-12 19:00:00,1,0,1,1,7.38,7.575,47,27.9993,1,82,83 +2011-01-12 20:00:00,1,0,1,1,6.56,6.82,50,22.0028,2,54,56 +2011-01-12 21:00:00,1,0,1,1,6.56,6.82,55,22.0028,0,57,57 +2011-01-12 22:00:00,1,0,1,1,6.56,6.06,55,30.0026,1,32,33 +2011-01-12 23:00:00,1,0,1,1,5.74,5.305,59,27.9993,1,19,20 +2011-01-13 00:00:00,1,0,1,1,5.74,6.06,59,19.0012,1,6,7 +2011-01-13 01:00:00,1,0,1,1,5.74,6.06,50,19.0012,0,2,2 +2011-01-13 02:00:00,1,0,1,1,5.74,6.06,50,23.9994,0,2,2 +2011-01-13 03:00:00,1,0,1,1,5.74,6.06,50,22.0028,0,3,3 +2011-01-13 04:00:00,1,0,1,1,5.74,6.06,50,16.9979,0,4,4 +2011-01-13 05:00:00,1,0,1,1,5.74,6.06,50,19.9995,0,3,3 +2011-01-13 06:00:00,1,0,1,1,4.92,7.575,54,8.9981,0,28,28 +2011-01-13 07:00:00,1,0,1,1,4.92,7.575,54,8.9981,0,72,72 +2011-01-13 08:00:00,1,0,1,1,5.74,6.82,50,12.998,5,197,202 +2011-01-13 09:00:00,1,0,1,1,5.74,6.06,50,22.0028,2,137,139 +2011-01-13 10:00:00,1,0,1,2,6.56,6.82,50,23.9994,2,36,38 +2011-01-13 11:00:00,1,0,1,2,8.2,8.335,44,30.0026,4,33,37 +2011-01-13 12:00:00,1,0,1,1,8.2,8.335,44,27.9993,3,49,52 +2011-01-13 13:00:00,1,0,1,1,9.02,9.85,41,30.0026,2,81,83 +2011-01-13 14:00:00,1,0,1,1,9.02,9.85,41,26.0027,3,39,42 +2011-01-13 15:00:00,1,0,1,1,9.84,10.605,38,19.9995,5,55,60 +2011-01-13 16:00:00,1,0,1,1,9.84,10.605,38,23.9994,2,76,78 +2011-01-13 17:00:00,1,0,1,1,8.2,9.09,40,19.0012,4,158,162 +2011-01-13 18:00:00,1,0,1,1,8.2,9.09,40,22.0028,3,141,144 +2011-01-13 19:00:00,1,0,1,1,6.56,7.575,47,16.9979,1,98,99 +2011-01-13 20:00:00,1,0,1,1,6.56,7.575,47,15.0013,0,64,64 +2011-01-13 21:00:00,1,0,1,1,5.74,6.06,46,19.9995,0,40,40 +2011-01-13 22:00:00,1,0,1,1,5.74,6.06,46,22.0028,0,30,30 +2011-01-13 23:00:00,1,0,1,1,4.92,6.82,50,12.998,1,14,15 +2011-01-14 00:00:00,1,0,1,1,4.92,6.82,50,12.998,0,14,14 +2011-01-14 01:00:00,1,0,1,1,4.1,6.06,54,11.0014,0,5,5 +2011-01-14 02:00:00,1,0,1,1,4.1,6.06,54,8.9981,0,1,1 +2011-01-14 03:00:00,1,0,1,1,4.1,6.82,54,7.0015,0,1,1 +2011-01-14 05:00:00,1,0,1,1,4.1,6.82,54,6.0032,0,8,8 +2011-01-14 06:00:00,1,0,1,1,4.1,9.09,54,0,0,17,17 +2011-01-14 07:00:00,1,0,1,1,4.1,6.06,74,11.0014,0,70,70 +2011-01-14 08:00:00,1,0,1,1,4.92,8.335,68,0,2,156,158 +2011-01-14 09:00:00,1,0,1,1,5.74,7.575,69,8.9981,0,117,117 +2011-01-14 10:00:00,1,0,1,1,7.38,9.09,55,12.998,4,40,44 +2011-01-14 11:00:00,1,0,1,1,7.38,8.335,51,19.0012,6,47,53 +2011-01-14 12:00:00,1,0,1,1,8.2,9.85,44,16.9979,2,59,61 +2011-01-14 13:00:00,1,0,1,1,9.02,9.85,37,26.0027,4,73,77 +2011-01-14 14:00:00,1,0,1,1,9.02,10.605,41,19.0012,5,59,64 +2011-01-14 15:00:00,1,0,1,1,9.84,12.12,38,11.0014,9,59,68 +2011-01-14 16:00:00,1,0,1,1,9.02,12.12,41,7.0015,3,87,90 +2011-01-14 17:00:00,1,0,1,1,9.02,11.365,41,11.0014,4,155,159 +2011-01-14 18:00:00,1,0,1,1,8.2,12.88,47,0,5,134,139 +2011-01-14 19:00:00,1,0,1,1,6.56,9.85,59,6.0032,3,89,92 +2011-01-14 20:00:00,1,0,1,1,7.38,12.12,59,0,0,68,68 +2011-01-14 21:00:00,1,0,1,1,6.56,11.365,69,0,4,48,52 +2011-01-14 22:00:00,1,0,1,2,6.56,11.365,69,0,2,34,36 +2011-01-14 23:00:00,1,0,1,2,7.38,12.12,55,0,1,26,27 +2011-01-15 00:00:00,1,0,0,1,7.38,12.12,55,0,3,25,28 +2011-01-15 01:00:00,1,0,0,2,6.56,9.85,59,6.0032,2,18,20 +2011-01-15 02:00:00,1,0,0,2,6.56,9.85,59,6.0032,0,12,12 +2011-01-15 03:00:00,1,0,0,2,6.56,11.365,59,0,1,7,8 +2011-01-15 04:00:00,1,0,0,2,6.56,11.365,59,0,0,5,5 +2011-01-15 05:00:00,1,0,0,1,6.56,11.365,59,0,0,1,1 +2011-01-15 06:00:00,1,0,0,1,5.74,8.335,63,7.0015,1,2,3 +2011-01-15 07:00:00,1,0,0,1,5.74,10.605,63,0,1,9,10 +2011-01-15 08:00:00,1,0,0,1,5.74,7.575,63,8.9981,1,22,23 +2011-01-15 09:00:00,1,0,0,1,6.56,9.09,64,8.9981,2,31,33 +2011-01-15 10:00:00,1,0,0,1,7.38,9.85,59,11.0014,2,57,59 +2011-01-15 11:00:00,1,0,0,1,8.2,9.85,55,15.0013,18,54,72 +2011-01-15 12:00:00,1,0,0,1,9.84,11.365,48,15.0013,15,74,89 +2011-01-15 13:00:00,1,0,0,1,11.48,12.88,38,19.9995,21,80,101 +2011-01-15 14:00:00,1,0,0,1,12.3,14.395,39,19.0012,26,92,118 +2011-01-15 15:00:00,1,0,0,2,13.12,15.91,36,12.998,21,108,129 +2011-01-15 16:00:00,1,0,0,2,13.94,16.665,34,12.998,33,95,128 +2011-01-15 17:00:00,1,0,0,2,13.12,15.15,36,19.0012,29,54,83 +2011-01-15 18:00:00,1,0,0,2,12.3,14.395,45,16.9979,15,69,84 +2011-01-15 19:00:00,1,0,0,2,13.12,15.15,39,16.9979,14,60,74 +2011-01-15 20:00:00,1,0,0,2,13.12,15.15,39,16.9979,6,35,41 +2011-01-15 21:00:00,1,0,0,2,13.12,15.15,39,15.0013,6,51,57 +2011-01-15 22:00:00,1,0,0,2,12.3,15.91,42,7.0015,0,26,26 +2011-01-15 23:00:00,1,0,0,1,12.3,14.395,45,19.0012,5,39,44 +2011-01-16 00:00:00,1,0,0,1,10.66,15.15,56,0,6,33,39 +2011-01-16 01:00:00,1,0,0,1,10.66,13.635,56,8.9981,4,19,23 +2011-01-16 02:00:00,1,0,0,1,10.66,14.395,56,6.0032,3,13,16 +2011-01-16 03:00:00,1,0,0,1,9.02,13.635,69,0,9,6,15 +2011-01-16 04:00:00,1,0,0,1,10.66,12.88,56,11.0014,0,1,1 +2011-01-16 05:00:00,1,0,0,2,10.66,12.88,56,11.0014,1,1,2 +2011-01-16 06:00:00,1,0,0,2,10.66,12.88,56,11.0014,0,1,1 +2011-01-16 07:00:00,1,0,0,2,9.84,10.605,56,19.9995,0,3,3 +2011-01-16 08:00:00,1,0,0,1,9.02,10.605,55,19.0012,0,18,18 +2011-01-16 09:00:00,1,0,0,1,9.02,10.605,51,16.9979,3,29,32 +2011-01-16 10:00:00,1,0,0,1,9.02,10.605,51,19.0012,8,71,79 +2011-01-16 11:00:00,1,0,0,1,9.84,11.365,44,16.9979,23,70,93 +2011-01-16 12:00:00,1,0,0,1,9.84,10.605,41,19.0012,29,75,104 +2011-01-16 13:00:00,1,0,0,1,10.66,11.365,35,19.9995,23,95,118 +2011-01-16 14:00:00,1,0,0,1,11.48,13.635,36,16.9979,22,69,91 +2011-01-16 15:00:00,1,0,0,1,10.66,12.12,38,16.9979,35,78,113 +2011-01-16 16:00:00,1,0,0,1,9.84,11.365,38,15.0013,22,77,99 +2011-01-16 17:00:00,1,0,0,1,9.02,10.605,37,16.9979,23,82,105 +2011-01-16 18:00:00,1,0,0,1,8.2,10.605,40,11.0014,11,56,67 +2011-01-16 19:00:00,1,0,0,1,7.38,9.85,47,8.9981,14,47,61 +2011-01-16 20:00:00,1,0,0,1,7.38,9.85,47,11.0014,7,50,57 +2011-01-16 21:00:00,1,0,0,1,7.38,9.85,51,11.0014,6,22,28 +2011-01-16 22:00:00,1,0,0,2,8.2,10.605,49,8.9981,2,19,21 +2011-01-16 23:00:00,1,0,0,2,8.2,11.365,40,7.0015,0,18,18 +2011-01-17 00:00:00,1,1,0,2,8.2,9.85,47,15.0013,1,16,17 +2011-01-17 01:00:00,1,1,0,2,8.2,9.85,44,12.998,1,15,16 +2011-01-17 02:00:00,1,1,0,2,7.38,8.335,43,16.9979,0,8,8 +2011-01-17 03:00:00,1,1,0,2,7.38,9.09,43,12.998,0,2,2 +2011-01-17 04:00:00,1,1,0,2,7.38,9.85,43,8.9981,1,2,3 +2011-01-17 05:00:00,1,1,0,2,7.38,9.85,43,11.0014,0,1,1 +2011-01-17 06:00:00,1,1,0,2,7.38,9.09,43,12.998,0,5,5 +2011-01-17 07:00:00,1,1,0,2,6.56,9.09,50,8.9981,4,9,13 +2011-01-17 08:00:00,1,1,0,2,6.56,7.575,47,15.0013,3,30,33 +2011-01-17 09:00:00,1,1,0,2,6.56,7.575,47,15.0013,8,39,47 +2011-01-17 10:00:00,1,1,0,2,6.56,7.575,50,16.9979,7,50,57 +2011-01-17 11:00:00,1,1,0,2,6.56,7.575,55,12.998,9,55,64 +2011-01-17 12:00:00,1,1,0,2,7.38,9.85,47,8.9981,10,70,80 +2011-01-17 13:00:00,1,1,0,2,7.38,9.85,47,8.9981,13,80,93 +2011-01-17 14:00:00,1,1,0,2,7.38,10.605,43,7.0015,12,74,86 +2011-01-17 15:00:00,1,1,0,2,8.2,10.605,47,11.0014,21,72,93 +2011-01-17 16:00:00,1,1,0,2,8.2,10.605,47,11.0014,6,76,82 +2011-01-17 17:00:00,1,1,0,1,8.2,9.85,51,12.998,4,67,71 +2011-01-17 18:00:00,1,1,0,2,7.38,8.335,55,16.9979,7,85,92 +2011-01-17 19:00:00,1,1,0,3,7.38,9.09,59,12.998,2,58,60 +2011-01-17 20:00:00,1,1,0,3,6.56,7.575,80,12.998,4,29,33 +2011-01-17 21:00:00,1,1,0,3,6.56,7.575,80,12.998,3,24,27 +2011-01-17 22:00:00,1,1,0,3,5.74,6.06,93,16.9979,0,13,13 +2011-01-17 23:00:00,1,1,0,3,6.56,6.82,86,19.0012,1,3,4 +2011-01-18 12:00:00,1,0,1,2,8.2,9.09,86,22.0028,0,3,3 +2011-01-18 13:00:00,1,0,1,2,8.2,9.85,86,15.0013,0,22,22 +2011-01-18 14:00:00,1,0,1,2,9.02,11.365,80,11.0014,2,26,28 +2011-01-18 15:00:00,1,0,1,2,9.02,11.365,87,11.0014,3,32,35 +2011-01-18 16:00:00,1,0,1,2,9.02,11.365,87,12.998,0,61,61 +2011-01-18 17:00:00,1,0,1,2,9.02,11.365,82,12.998,1,124,125 +2011-01-18 18:00:00,1,0,1,2,9.02,11.365,80,11.0014,1,132,133 +2011-01-18 19:00:00,1,0,1,2,9.02,11.365,80,8.9981,1,98,99 +2011-01-18 20:00:00,1,0,1,2,9.02,13.635,87,0,0,83,83 +2011-01-18 21:00:00,1,0,1,2,9.02,12.12,93,7.0015,0,41,41 +2011-01-18 22:00:00,1,0,1,2,9.02,12.88,93,6.0032,0,33,33 +2011-01-18 23:00:00,1,0,1,2,9.02,13.635,93,0,1,19,20 +2011-01-19 00:00:00,1,0,1,2,9.02,13.635,93,0,0,3,3 +2011-01-19 01:00:00,1,0,1,3,9.02,11.365,93,8.9981,1,6,7 +2011-01-19 02:00:00,1,0,1,3,9.02,11.365,93,8.9981,0,3,3 +2011-01-19 04:00:00,1,0,1,3,9.02,11.365,93,8.9981,1,1,2 +2011-01-19 05:00:00,1,0,1,2,9.02,12.88,93,6.0032,0,7,7 +2011-01-19 06:00:00,1,0,1,2,9.02,12.88,93,6.0032,0,32,32 +2011-01-19 07:00:00,1,0,1,2,9.84,12.88,92,7.0015,1,89,90 +2011-01-19 08:00:00,1,0,1,2,9.84,12.88,93,7.0015,1,196,197 +2011-01-19 09:00:00,1,0,1,2,9.84,12.88,93,7.0015,2,107,109 +2011-01-19 10:00:00,1,0,1,2,10.66,13.635,93,8.9981,1,46,47 +2011-01-19 11:00:00,1,0,1,2,11.48,15.15,87,6.0032,5,47,52 +2011-01-19 12:00:00,1,0,1,2,12.3,15.91,81,6.0032,5,65,70 +2011-01-19 13:00:00,1,0,1,1,16.4,20.455,62,19.0012,11,67,78 +2011-01-19 14:00:00,1,0,1,1,16.4,20.455,58,16.9979,7,68,75 +2011-01-19 15:00:00,1,0,1,1,16.4,20.455,54,19.0012,4,78,82 +2011-01-19 16:00:00,1,0,1,1,15.58,19.695,58,26.0027,10,94,104 +2011-01-19 17:00:00,1,0,1,1,14.76,16.665,57,22.0028,7,190,197 +2011-01-19 18:00:00,1,0,1,1,13.94,15.91,61,19.0012,5,156,161 +2011-01-19 19:00:00,1,0,1,1,13.12,14.395,57,27.9993,4,108,112 +2011-01-19 20:00:00,1,0,1,1,13.12,15.15,49,19.9995,2,74,76 +2011-01-19 21:00:00,1,0,1,1,13.12,14.395,49,27.9993,4,55,59 +2011-01-19 22:00:00,1,0,1,1,12.3,15.15,52,11.0014,6,53,59 +2011-01-19 23:00:00,1,0,1,1,12.3,13.635,52,31.0009,1,27,28 +2011-02-01 00:00:00,1,0,1,2,6.56,9.09,64,7.0015,2,6,8 +2011-02-01 01:00:00,1,0,1,2,6.56,9.09,69,7.0015,0,3,3 +2011-02-01 02:00:00,1,0,1,2,6.56,11.365,69,0,0,2,2 +2011-02-01 03:00:00,1,0,1,2,6.56,11.365,69,0,0,2,2 +2011-02-01 05:00:00,1,0,1,3,5.74,10.605,93,0,0,3,3 +2011-02-01 06:00:00,1,0,1,3,5.74,10.605,93,0,0,22,22 +2011-02-01 07:00:00,1,0,1,3,6.56,11.365,93,0,0,52,52 +2011-02-01 08:00:00,1,0,1,3,6.56,11.365,93,0,3,132,135 +2011-02-01 09:00:00,1,0,1,2,6.56,11.365,93,0,2,114,116 +2011-02-01 10:00:00,1,0,1,2,6.56,11.365,93,0,0,47,47 +2011-02-01 11:00:00,1,0,1,2,7.38,12.12,86,0,2,49,51 +2011-02-01 12:00:00,1,0,1,2,8.2,12.88,86,0,2,53,55 +2011-02-01 13:00:00,1,0,1,2,8.2,12.88,86,0,3,49,52 +2011-02-01 14:00:00,1,0,1,2,9.02,12.88,80,6.0032,5,49,54 +2011-02-01 15:00:00,1,0,1,2,9.84,14.395,75,0,7,45,52 +2011-02-01 16:00:00,1,0,1,2,9.84,12.12,75,8.9981,3,61,64 +2011-02-01 17:00:00,1,0,1,2,9.84,14.395,75,0,4,172,176 +2011-02-01 18:00:00,1,0,1,2,9.84,12.88,81,7.0015,3,165,168 +2011-02-01 19:00:00,1,0,1,2,9.84,12.12,81,8.9981,3,105,108 +2011-02-01 20:00:00,1,0,1,2,9.02,11.365,87,8.9981,5,69,74 +2011-02-01 21:00:00,1,0,1,2,9.02,11.365,87,8.9981,0,64,64 +2011-02-01 22:00:00,1,0,1,2,9.02,12.88,87,6.0032,2,34,36 +2011-02-01 23:00:00,1,0,1,3,8.2,9.85,93,12.998,1,15,16 +2011-02-02 00:00:00,1,0,1,3,9.02,12.12,93,7.0015,0,2,2 +2011-02-02 01:00:00,1,0,1,3,9.02,11.365,93,12.998,0,3,3 +2011-02-02 02:00:00,1,0,1,3,9.02,11.365,93,8.9981,4,0,4 +2011-02-02 03:00:00,1,0,1,3,9.02,11.365,93,8.9981,0,1,1 +2011-02-02 04:00:00,1,0,1,3,9.02,10.605,93,19.0012,0,1,1 +2011-02-02 05:00:00,1,0,1,3,9.02,12.12,93,7.0015,0,3,3 +2011-02-02 06:00:00,1,0,1,3,9.02,12.12,93,7.0015,1,17,18 +2011-02-02 07:00:00,1,0,1,3,9.02,10.605,93,15.0013,1,48,49 +2011-02-02 08:00:00,1,0,1,3,9.02,10.605,93,15.0013,1,154,155 +2011-02-02 09:00:00,1,0,1,2,9.84,12.88,93,6.0032,4,119,123 +2011-02-02 10:00:00,1,0,1,2,9.02,13.635,100,0,2,59,61 +2011-02-02 11:00:00,1,0,1,2,9.84,11.365,93,12.998,5,47,52 +2011-02-02 12:00:00,1,0,1,2,9.84,11.365,93,15.0013,3,61,64 +2011-02-02 13:00:00,1,0,1,1,13.94,16.665,93,11.0014,1,74,75 +2011-02-02 14:00:00,1,0,1,1,15.58,19.695,82,26.0027,2,61,63 +2011-02-02 15:00:00,1,0,1,1,15.58,19.695,76,22.0028,10,66,76 +2011-02-02 16:00:00,1,0,1,1,14.76,16.665,71,19.9995,8,95,103 +2011-02-02 17:00:00,1,0,1,1,14.76,15.91,53,35.0008,7,183,190 +2011-02-02 18:00:00,1,0,1,1,13.94,14.395,42,36.9974,7,175,182 +2011-02-02 19:00:00,1,0,1,1,11.48,12.12,45,32.9975,3,88,91 +2011-02-02 20:00:00,1,0,1,1,9.84,9.85,48,36.9974,4,71,75 +2011-02-02 21:00:00,1,0,1,1,9.02,9.85,47,22.0028,1,62,63 +2011-02-02 22:00:00,1,0,1,1,9.02,10.605,44,16.9979,5,35,40 +2011-02-02 23:00:00,1,0,1,1,8.2,8.335,44,30.0026,3,29,32 +2011-02-03 00:00:00,1,0,1,1,8.2,8.335,40,30.0026,1,11,12 +2011-02-03 01:00:00,1,0,1,1,8.2,7.575,44,35.0008,0,5,5 +2011-02-03 02:00:00,1,0,1,1,7.38,8.335,43,16.9979,0,2,2 +2011-02-03 03:00:00,1,0,1,1,7.38,8.335,43,16.9979,0,1,1 +2011-02-03 05:00:00,1,0,1,1,6.56,6.82,50,19.9995,0,2,2 +2011-02-03 06:00:00,1,0,1,1,6.56,6.82,43,23.9994,0,39,39 +2011-02-03 07:00:00,1,0,1,1,5.74,6.06,50,22.0028,1,86,87 +2011-02-03 08:00:00,1,0,1,1,5.74,6.06,50,23.9994,4,184,188 +2011-02-03 09:00:00,1,0,1,1,6.56,6.82,47,19.9995,6,127,133 +2011-02-03 10:00:00,1,0,1,1,7.38,7.575,43,22.0028,2,50,52 +2011-02-03 11:00:00,1,0,1,1,7.38,6.82,43,30.0026,9,55,64 +2011-02-03 12:00:00,1,0,1,1,8.2,9.09,40,23.9994,2,67,69 +2011-02-03 13:00:00,1,0,1,1,8.2,8.335,40,27.9993,4,47,51 +2011-02-03 14:00:00,1,0,1,1,9.02,9.85,37,26.0027,4,43,47 +2011-02-03 15:00:00,1,0,1,1,9.02,9.85,37,22.0028,4,56,60 +2011-02-03 16:00:00,1,0,1,1,9.02,10.605,37,16.9979,5,73,78 +2011-02-03 17:00:00,1,0,1,1,8.2,9.85,40,12.998,5,170,175 +2011-02-03 18:00:00,1,0,1,1,8.2,10.605,40,11.0014,2,145,147 +2011-02-03 19:00:00,1,0,1,1,8.2,12.88,40,0,4,92,96 +2011-02-03 20:00:00,1,0,1,1,8.2,11.365,47,6.0032,1,108,109 +2011-02-03 21:00:00,1,0,1,1,7.38,10.605,55,7.0015,1,53,54 +2011-02-03 22:00:00,1,0,1,1,7.38,10.605,51,6.0032,2,39,41 +2011-02-03 23:00:00,1,0,1,1,8.2,11.365,47,7.0015,4,34,38 +2011-02-04 00:00:00,1,0,1,2,8.2,12.88,44,0,3,10,13 +2011-02-04 01:00:00,1,0,1,2,6.56,11.365,59,0,0,7,7 +2011-02-04 02:00:00,1,0,1,2,5.74,8.335,63,7.0015,0,1,1 +2011-02-04 03:00:00,1,0,1,2,5.74,8.335,63,7.0015,0,1,1 +2011-02-04 05:00:00,1,0,1,2,5.74,7.575,63,8.9981,0,7,7 +2011-02-04 06:00:00,1,0,1,2,6.56,11.365,55,0,2,26,28 +2011-02-04 07:00:00,1,0,1,1,5.74,10.605,59,0,0,87,87 +2011-02-04 08:00:00,1,0,1,1,5.74,7.575,74,8.9981,3,217,220 +2011-02-04 09:00:00,1,0,1,2,6.56,9.09,80,8.9981,3,124,127 +2011-02-04 10:00:00,1,0,1,2,8.2,10.605,51,8.9981,5,46,51 +2011-02-04 11:00:00,1,0,1,1,9.02,11.365,51,11.0014,3,61,64 +2011-02-04 12:00:00,1,0,1,2,9.84,12.12,48,11.0014,8,78,86 +2011-02-04 13:00:00,1,0,1,2,10.66,12.88,50,15.0013,9,73,82 +2011-02-04 14:00:00,1,0,1,2,11.48,13.635,45,11.0014,15,76,91 +2011-02-04 15:00:00,1,0,1,2,11.48,13.635,48,16.9979,9,81,90 +2011-02-04 16:00:00,1,0,1,2,12.3,14.395,42,15.0013,8,91,99 +2011-02-04 17:00:00,1,0,1,2,10.66,13.635,56,8.9981,10,195,205 +2011-02-04 18:00:00,1,0,1,2,9.84,12.88,60,7.0015,3,152,155 +2011-02-04 19:00:00,1,0,1,2,9.84,12.12,65,8.9981,1,102,103 +2011-02-04 20:00:00,1,0,1,2,9.84,12.12,65,11.0014,2,69,71 +2011-02-04 21:00:00,1,0,1,2,9.84,12.12,70,11.0014,2,41,43 +2011-02-04 22:00:00,1,0,1,2,9.84,12.12,65,11.0014,1,45,46 +2011-02-04 23:00:00,1,0,1,2,9.84,12.12,70,8.9981,1,30,31 +2011-02-05 00:00:00,1,0,0,2,9.84,12.12,70,11.0014,3,36,39 +2011-02-05 01:00:00,1,0,0,2,9.84,12.12,65,11.0014,1,17,18 +2011-02-05 02:00:00,1,0,0,2,9.84,12.12,75,11.0014,5,12,17 +2011-02-05 03:00:00,1,0,0,2,9.84,12.12,75,11.0014,1,10,11 +2011-02-05 04:00:00,1,0,0,3,9.02,11.365,93,8.9981,0,8,8 +2011-02-05 05:00:00,1,0,0,3,8.2,11.365,100,6.0032,0,9,9 +2011-02-05 06:00:00,1,0,0,3,8.2,12.88,100,0,0,4,4 +2011-02-05 07:00:00,1,0,0,3,9.02,12.88,93,6.0032,0,4,4 +2011-02-05 08:00:00,1,0,0,3,8.2,11.365,100,6.0032,0,10,10 +2011-02-05 09:00:00,1,0,0,3,8.2,11.365,100,6.0032,3,17,20 +2011-02-05 10:00:00,1,0,0,3,8.2,10.605,100,8.9981,3,31,34 +2011-02-05 11:00:00,1,0,0,3,9.02,11.365,100,8.9981,1,46,47 +2011-02-05 12:00:00,1,0,0,3,9.02,11.365,100,11.0014,10,42,52 +2011-02-05 13:00:00,1,0,0,3,9.02,11.365,100,11.0014,10,62,72 +2011-02-05 14:00:00,1,0,0,3,9.02,13.635,100,0,5,50,55 +2011-02-05 15:00:00,1,0,0,3,9.02,13.635,100,0,11,49,60 +2011-02-05 16:00:00,1,0,0,3,9.02,11.365,100,8.9981,8,63,71 +2011-02-05 17:00:00,1,0,0,2,9.84,10.605,100,19.0012,14,64,78 +2011-02-05 18:00:00,1,0,0,2,11.48,12.12,93,30.0026,2,81,83 +2011-02-05 19:00:00,1,0,0,2,11.48,12.12,93,30.0026,6,78,84 +2011-02-05 20:00:00,1,0,0,1,12.3,14.395,87,16.9979,5,64,69 +2011-02-05 21:00:00,1,0,0,1,10.66,12.88,100,12.998,3,53,56 +2011-02-05 22:00:00,1,0,0,1,10.66,13.635,93,8.9981,2,43,45 +2011-02-05 23:00:00,1,0,0,1,10.66,12.88,93,15.0013,7,52,59 +2011-02-06 00:00:00,1,0,0,1,10.66,12.88,70,12.998,2,37,39 +2011-02-06 01:00:00,1,0,0,1,10.66,11.365,65,27.9993,4,40,44 +2011-02-06 02:00:00,1,0,0,1,10.66,11.365,60,22.0028,0,20,20 +2011-02-06 03:00:00,1,0,0,1,10.66,14.395,60,6.0032,3,10,13 +2011-02-06 04:00:00,1,0,0,1,10.66,11.365,60,23.9994,0,2,2 +2011-02-06 05:00:00,1,0,0,1,10.66,12.88,60,15.0013,0,1,1 +2011-02-06 06:00:00,1,0,0,1,10.66,12.88,60,15.0013,0,1,1 +2011-02-06 07:00:00,1,0,0,1,9.84,12.12,65,11.0014,0,8,8 +2011-02-06 08:00:00,1,0,0,1,9.84,12.88,65,7.0015,2,21,23 +2011-02-06 09:00:00,1,0,0,1,11.48,14.395,56,7.0015,7,38,45 +2011-02-06 10:00:00,1,0,0,1,12.3,14.395,52,16.9979,15,74,89 +2011-02-06 11:00:00,1,0,0,1,13.12,15.15,49,16.9979,28,89,117 +2011-02-06 12:00:00,1,0,0,1,13.94,16.665,46,0,48,126,174 +2011-02-06 13:00:00,1,0,0,1,13.94,18.18,46,0,47,135,182 +2011-02-06 14:00:00,1,0,0,1,13.94,17.425,46,6.0032,47,114,161 +2011-02-06 15:00:00,1,0,0,1,13.94,17.425,46,6.0032,52,130,182 +2011-02-06 16:00:00,1,0,0,1,13.94,17.425,49,7.0015,42,115,157 +2011-02-06 17:00:00,1,0,0,1,13.94,18.18,46,0,24,97,121 +2011-02-06 18:00:00,1,0,0,1,12.3,15.15,56,11.0014,13,65,78 +2011-02-06 19:00:00,1,0,0,1,11.48,14.395,61,8.9981,1,20,21 +2011-02-06 20:00:00,1,0,0,1,11.48,14.395,61,7.0015,5,21,26 +2011-02-06 21:00:00,1,0,0,1,10.66,15.15,60,0,5,22,27 +2011-02-06 22:00:00,1,0,0,1,10.66,15.15,60,0,5,57,62 +2011-02-06 23:00:00,1,0,0,1,9.84,14.395,65,0,4,26,30 +2011-02-07 00:00:00,1,0,1,1,9.84,14.395,65,0,1,14,15 +2011-02-07 01:00:00,1,0,1,1,9.02,13.635,75,0,1,4,5 +2011-02-07 02:00:00,1,0,1,1,8.2,12.88,80,0,0,3,3 +2011-02-07 03:00:00,1,0,1,1,8.2,12.88,86,0,0,1,1 +2011-02-07 04:00:00,1,0,1,1,8.2,12.88,86,0,1,1,2 +2011-02-07 05:00:00,1,0,1,1,8.2,12.88,86,0,1,9,10 +2011-02-07 06:00:00,1,0,1,1,7.38,12.12,93,0,1,29,30 +2011-02-07 07:00:00,1,0,1,1,7.38,12.12,86,0,6,89,95 +2011-02-07 08:00:00,1,0,1,2,6.56,11.365,100,0,7,223,230 +2011-02-07 09:00:00,1,0,1,1,9.02,13.635,80,0,3,115,118 +2011-02-07 10:00:00,1,0,1,1,9.84,12.88,75,7.0015,6,49,55 +2011-02-07 11:00:00,1,0,1,1,12.3,15.91,65,6.0032,11,36,47 +2011-02-07 12:00:00,1,0,1,2,13.12,17.425,62,0,7,59,66 +2011-02-07 13:00:00,1,0,1,2,14.76,18.18,57,6.0032,10,54,64 +2011-02-07 14:00:00,1,0,1,2,14.76,18.18,57,6.0032,8,52,60 +2011-02-07 15:00:00,1,0,1,2,15.58,19.695,54,6.0032,4,46,50 +2011-02-07 16:00:00,1,0,1,2,14.76,17.425,57,8.9981,16,98,114 +2011-02-07 17:00:00,1,0,1,2,13.12,15.91,70,11.0014,9,207,216 +2011-02-07 18:00:00,1,0,1,2,13.94,16.665,66,8.9981,5,170,175 +2011-02-07 19:00:00,1,0,1,2,13.12,17.425,70,0,5,123,128 +2011-02-07 20:00:00,1,0,1,2,13.12,16.665,70,7.0015,6,82,88 +2011-02-07 21:00:00,1,0,1,1,13.12,17.425,70,0,3,75,78 +2011-02-07 22:00:00,1,0,1,1,11.48,15.15,81,6.0032,3,34,37 +2011-02-07 23:00:00,1,0,1,2,12.3,16.665,81,0,6,19,25 +2011-02-08 00:00:00,1,0,1,2,11.48,15.91,87,0,4,6,10 +2011-02-08 01:00:00,1,0,1,2,11.48,15.91,87,0,0,4,4 +2011-02-08 02:00:00,1,0,1,2,10.66,13.635,93,7.0015,1,1,2 +2011-02-08 03:00:00,1,0,1,3,11.48,13.635,93,11.0014,0,1,1 +2011-02-08 04:00:00,1,0,1,1,10.66,12.88,93,11.0014,0,3,3 +2011-02-08 05:00:00,1,0,1,1,10.66,11.365,81,22.0028,0,2,2 +2011-02-08 06:00:00,1,0,1,1,10.66,11.365,70,22.0028,0,39,39 +2011-02-08 07:00:00,1,0,1,1,9.84,9.85,65,27.9993,3,97,100 +2011-02-08 08:00:00,1,0,1,1,9.84,9.85,56,32.9975,7,236,243 +2011-02-08 09:00:00,1,0,1,1,9.84,9.85,52,32.9975,7,128,135 +2011-02-08 10:00:00,1,0,1,1,9.02,9.09,47,36.9974,4,44,48 +2011-02-08 11:00:00,1,0,1,1,9.02,9.09,47,31.0009,1,49,50 +2011-02-08 12:00:00,1,0,1,1,9.84,9.85,38,32.9975,2,63,65 +2011-02-08 13:00:00,1,0,1,2,9.84,9.85,32,30.0026,2,48,50 +2011-02-08 14:00:00,1,0,1,1,9.02,9.85,37,27.9993,3,61,64 +2011-02-08 15:00:00,1,0,1,1,9.02,9.85,35,26.0027,6,45,51 +2011-02-08 16:00:00,1,0,1,1,9.02,9.09,35,35.0008,4,79,83 +2011-02-08 17:00:00,1,0,1,1,9.02,9.09,32,39.0007,4,172,176 +2011-02-08 18:00:00,1,0,1,1,8.2,9.09,32,26.0027,1,151,152 +2011-02-08 19:00:00,1,0,1,1,6.56,6.06,40,31.0009,1,100,101 +2011-02-08 20:00:00,1,0,1,1,6.56,6.82,40,22.0028,3,53,56 +2011-02-08 21:00:00,1,0,1,1,5.74,5.305,33,31.0009,8,46,54 +2011-02-08 22:00:00,1,0,1,1,4.92,5.305,33,23.9994,0,29,29 +2011-02-08 23:00:00,1,0,1,1,4.92,5.305,33,22.0028,3,9,12 +2011-02-09 00:00:00,1,0,1,1,4.1,3.79,36,23.9994,0,17,17 +2011-02-09 01:00:00,1,0,1,1,4.1,5.305,36,15.0013,0,7,7 +2011-02-09 02:00:00,1,0,1,1,3.28,3.79,38,19.0012,1,2,3 +2011-02-09 03:00:00,1,0,1,1,2.46,3.79,45,8.9981,0,2,2 +2011-02-09 05:00:00,1,0,1,1,2.46,5.305,45,7.0015,0,7,7 +2011-02-09 06:00:00,1,0,1,1,2.46,7.575,45,0,0,43,43 +2011-02-09 07:00:00,1,0,1,1,2.46,5.305,49,7.0015,4,95,99 +2011-02-09 08:00:00,1,0,1,1,4.1,6.82,42,0,1,198,199 +2011-02-09 09:00:00,1,0,1,1,4.92,6.82,39,11.0014,4,119,123 +2011-02-09 10:00:00,1,0,1,1,5.74,9.09,36,0,8,51,59 +2011-02-09 11:00:00,1,0,1,2,5.74,7.575,43,11.0014,1,40,41 +2011-02-09 12:00:00,1,0,1,2,7.38,9.09,40,15.0013,4,57,61 +2011-02-09 13:00:00,1,0,1,1,7.38,8.335,40,16.9979,2,67,69 +2011-02-09 14:00:00,1,0,1,1,8.2,9.09,34,19.9995,2,56,58 +2011-02-09 15:00:00,1,0,1,2,8.2,9.09,34,19.0012,3,61,64 +2011-02-09 16:00:00,1,0,1,2,8.2,9.85,37,16.9979,7,72,79 +2011-02-09 17:00:00,1,0,1,2,8.2,9.85,34,16.9979,9,157,166 +2011-02-09 18:00:00,1,0,1,2,7.38,8.335,47,19.9995,2,168,170 +2011-02-09 19:00:00,1,0,1,3,5.74,6.06,86,16.9979,1,87,88 +2011-02-09 20:00:00,1,0,1,3,5.74,7.575,86,11.0014,0,84,84 +2011-02-09 21:00:00,1,0,1,2,5.74,7.575,86,11.0014,0,83,83 +2011-02-09 22:00:00,1,0,1,3,6.56,8.335,80,11.0014,4,42,46 +2011-02-09 23:00:00,1,0,1,3,6.56,7.575,80,12.998,0,37,37 +2011-02-10 00:00:00,1,0,1,3,5.74,6.82,86,12.998,0,16,16 +2011-02-10 01:00:00,1,0,1,3,5.74,7.575,80,8.9981,0,7,7 +2011-02-10 02:00:00,1,0,1,3,5.74,7.575,80,8.9981,0,3,3 +2011-02-10 04:00:00,1,0,1,2,5.74,6.82,59,15.0013,0,1,1 +2011-02-10 05:00:00,1,0,1,2,4.92,6.06,50,15.0013,0,6,6 +2011-02-10 06:00:00,1,0,1,2,4.92,6.06,54,19.0012,0,26,26 +2011-02-10 07:00:00,1,0,1,1,4.1,3.79,50,27.9993,0,99,99 +2011-02-10 08:00:00,1,0,1,1,4.1,3.79,49,22.0028,5,173,178 +2011-02-10 09:00:00,1,0,1,1,4.92,5.305,42,23.9994,1,121,122 +2011-02-10 10:00:00,1,0,1,1,4.92,5.305,42,19.9995,1,34,35 +2011-02-10 11:00:00,1,0,1,1,5.74,6.06,39,23.9994,1,44,45 +2011-02-10 12:00:00,1,0,1,1,6.56,6.82,34,26.0027,4,65,69 +2011-02-10 13:00:00,1,0,1,1,7.38,8.335,29,19.9995,3,59,62 +2011-02-10 14:00:00,1,0,1,1,8.2,9.09,27,19.0012,6,42,48 +2011-02-10 15:00:00,1,0,1,1,8.2,9.85,25,16.9979,0,50,50 +2011-02-10 16:00:00,1,0,1,1,8.2,9.09,27,19.9995,4,76,80 +2011-02-10 17:00:00,1,0,1,1,7.38,9.09,26,12.998,6,159,165 +2011-02-10 18:00:00,1,0,1,1,6.56,9.09,28,8.9981,3,157,160 +2011-02-10 19:00:00,1,0,1,1,5.74,8.335,28,7.0015,2,110,112 +2011-02-10 20:00:00,1,0,1,1,5.74,9.09,31,6.0032,4,93,97 +2011-02-10 21:00:00,1,0,1,1,5.74,10.605,39,0,2,70,72 +2011-02-10 22:00:00,1,0,1,1,4.92,9.85,39,0,4,47,51 +2011-02-10 23:00:00,1,0,1,1,4.92,7.575,42,7.0015,1,33,34 +2011-02-11 00:00:00,1,0,1,1,4.1,6.82,49,7.0015,2,12,14 +2011-02-11 01:00:00,1,0,1,1,4.1,6.82,54,6.0032,1,6,7 +2011-02-11 02:00:00,1,0,1,1,4.1,6.82,54,6.0032,0,3,3 +2011-02-11 05:00:00,1,0,1,1,3.28,6.06,63,6.0032,0,4,4 +2011-02-11 06:00:00,1,0,1,1,4.1,9.09,68,0,1,23,24 +2011-02-11 07:00:00,1,0,1,1,3.28,8.335,73,0,1,73,74 +2011-02-11 08:00:00,1,0,1,1,4.1,6.06,74,11.0014,4,212,216 +2011-02-11 09:00:00,1,0,1,1,4.92,6.06,74,15.0013,8,132,140 +2011-02-11 10:00:00,1,0,1,1,5.74,6.82,69,12.998,5,39,44 +2011-02-11 11:00:00,1,0,1,1,9.02,11.365,47,8.9981,12,52,64 +2011-02-11 12:00:00,1,0,1,1,9.02,11.365,47,8.9981,7,64,71 +2011-02-11 13:00:00,1,0,1,1,9.84,11.365,35,12.998,21,89,110 +2011-02-11 14:00:00,1,0,1,1,12.3,14.395,26,16.9979,17,67,84 +2011-02-11 15:00:00,1,0,1,1,13.12,15.91,21,11.0014,12,62,74 +2011-02-11 16:00:00,1,0,1,1,12.3,14.395,28,12.998,14,111,125 +2011-02-11 17:00:00,1,0,1,1,12.3,16.665,24,0,18,193,211 +2011-02-11 18:00:00,1,0,1,1,11.48,15.91,28,0,9,165,174 +2011-02-11 19:00:00,1,0,1,1,10.66,15.15,33,0,7,94,101 +2011-02-11 20:00:00,1,0,1,1,9.02,11.365,55,8.9981,2,61,63 +2011-02-11 21:00:00,1,0,1,1,8.2,10.605,59,8.9981,1,46,47 +2011-02-11 22:00:00,1,0,1,1,8.2,11.365,64,6.0032,2,41,43 +2011-02-11 23:00:00,1,0,1,1,7.38,12.12,69,0,5,48,53 +2011-02-12 00:00:00,1,0,0,1,6.56,9.85,69,6.0032,3,27,30 +2011-02-12 01:00:00,1,0,0,1,5.74,10.605,86,0,2,22,24 +2011-02-12 02:00:00,1,0,0,1,5.74,10.605,80,0,2,13,15 +2011-02-12 03:00:00,1,0,0,1,4.92,9.85,80,0,3,7,10 +2011-02-12 04:00:00,1,0,0,1,4.92,8.335,74,6.0032,0,4,4 +2011-02-12 05:00:00,1,0,0,1,4.92,8.335,74,6.0032,0,1,1 +2011-02-12 06:00:00,1,0,0,1,4.92,6.82,93,12.998,1,1,2 +2011-02-12 07:00:00,1,0,0,1,4.92,7.575,80,7.0015,2,9,11 +2011-02-12 08:00:00,1,0,0,1,5.74,7.575,86,8.9981,2,28,30 +2011-02-12 09:00:00,1,0,0,1,6.56,9.09,64,8.9981,5,38,43 +2011-02-12 10:00:00,1,0,0,1,9.02,10.605,41,16.9979,13,71,84 +2011-02-12 11:00:00,1,0,0,1,12.3,13.635,28,22.0028,30,84,114 +2011-02-12 12:00:00,1,0,0,1,12.3,13.635,39,31.0009,27,93,120 +2011-02-12 13:00:00,1,0,0,1,12.3,13.635,39,27.9993,32,103,135 +2011-02-12 14:00:00,1,0,0,1,13.94,15.91,31,19.0012,30,90,120 +2011-02-12 15:00:00,1,0,0,1,13.94,15.15,29,27.9993,47,127,174 +2011-02-12 16:00:00,1,0,0,1,13.94,15.15,29,27.9993,42,103,145 +2011-02-12 17:00:00,1,0,0,1,13.12,14.395,31,35.0008,24,113,137 +2011-02-12 18:00:00,1,0,0,1,11.48,12.88,38,22.0028,4,60,64 +2011-02-12 19:00:00,1,0,0,1,11.48,13.635,38,11.0014,2,39,41 +2011-02-12 20:00:00,1,0,0,1,10.66,12.88,41,15.0013,1,39,40 +2011-02-12 21:00:00,1,0,0,1,10.66,15.15,41,0,9,42,51 +2011-02-12 22:00:00,1,0,0,1,9.84,12.88,44,6.0032,6,39,45 +2011-02-12 23:00:00,1,0,0,1,9.02,11.365,51,8.9981,1,31,32 +2011-02-13 00:00:00,1,0,0,1,8.2,11.365,64,7.0015,5,34,39 +2011-02-13 01:00:00,1,0,0,1,8.2,11.365,59,6.0032,1,23,24 +2011-02-13 02:00:00,1,0,0,2,8.2,11.365,75,6.0032,1,19,20 +2011-02-13 03:00:00,1,0,0,2,8.2,11.365,69,7.0015,4,8,12 +2011-02-13 04:00:00,1,0,0,2,8.2,10.605,69,11.0014,0,2,2 +2011-02-13 06:00:00,1,0,0,2,8.2,10.605,69,8.9981,2,3,5 +2011-02-13 07:00:00,1,0,0,2,9.02,13.635,55,0,0,3,3 +2011-02-13 08:00:00,1,0,0,2,9.02,11.365,64,12.998,1,11,12 +2011-02-13 09:00:00,1,0,0,2,9.84,11.365,60,15.0013,12,35,47 +2011-02-13 10:00:00,1,0,0,1,12.3,13.635,45,22.0028,19,86,105 +2011-02-13 11:00:00,1,0,0,1,13.12,14.395,39,30.0026,26,86,112 +2011-02-13 12:00:00,1,0,0,1,14.76,15.91,32,31.0009,58,94,152 +2011-02-13 13:00:00,1,0,0,1,15.58,19.695,29,23.9994,62,92,154 +2011-02-13 14:00:00,1,0,0,2,16.4,20.455,30,27.9993,51,110,161 +2011-02-13 15:00:00,1,0,0,2,16.4,20.455,30,19.9995,40,122,162 +2011-02-13 16:00:00,1,0,0,2,17.22,21.21,28,22.0028,28,106,134 +2011-02-13 17:00:00,1,0,0,1,17.22,21.21,28,22.0028,30,95,125 +2011-02-13 18:00:00,1,0,0,1,16.4,20.455,32,19.9995,17,78,95 +2011-02-13 19:00:00,1,0,0,1,16.4,20.455,35,19.0012,11,50,61 +2011-02-13 20:00:00,1,0,0,1,16.4,20.455,35,22.0028,15,32,47 +2011-02-13 21:00:00,1,0,0,1,16.4,20.455,35,23.9994,6,45,51 +2011-02-13 22:00:00,1,0,0,1,16.4,20.455,35,19.9995,5,31,36 +2011-02-13 23:00:00,1,0,0,1,16.4,20.455,35,23.9994,3,27,30 +2011-02-14 00:00:00,1,0,1,1,15.58,19.695,37,23.9994,3,8,11 +2011-02-14 01:00:00,1,0,1,1,15.58,19.695,37,23.9994,1,6,7 +2011-02-14 02:00:00,1,0,1,1,14.76,16.665,40,19.9995,0,2,2 +2011-02-14 03:00:00,1,0,1,1,13.94,15.91,46,15.0013,1,1,2 +2011-02-14 04:00:00,1,0,1,1,13.12,15.15,53,19.0012,0,2,2 +2011-02-14 05:00:00,1,0,1,1,13.12,15.15,53,19.0012,0,3,3 +2011-02-14 06:00:00,1,0,1,1,13.94,15.15,46,19.9995,1,25,26 +2011-02-14 07:00:00,1,0,1,1,13.94,15.15,46,19.9995,2,96,98 +2011-02-14 08:00:00,1,0,1,1,15.58,19.695,40,31.0009,7,249,256 +2011-02-14 09:00:00,1,0,1,1,16.4,20.455,37,26.0027,8,122,130 +2011-02-14 10:00:00,1,0,1,1,18.04,21.97,33,15.0013,9,46,55 +2011-02-14 11:00:00,1,0,1,1,21.32,25,23,16.9979,10,43,53 +2011-02-14 12:00:00,1,0,1,1,22.96,26.515,22,30.0026,27,99,126 +2011-02-14 13:00:00,1,0,1,1,23.78,27.275,19,26.0027,27,93,120 +2011-02-14 14:00:00,1,0,1,1,24.6,29.545,15,32.9975,14,76,90 +2011-02-14 15:00:00,1,0,1,1,22.96,26.515,21,43.9989,19,71,90 +2011-02-14 16:00:00,1,0,1,1,21.32,25,27,31.0009,16,102,118 +2011-02-14 17:00:00,1,0,1,1,18.86,22.725,33,40.9973,25,218,243 +2011-02-14 18:00:00,1,0,1,1,16.4,20.455,40,40.9973,11,194,205 +2011-02-14 19:00:00,1,0,1,1,15.58,19.695,43,32.9975,12,86,98 +2011-02-14 20:00:00,1,0,1,1,14.76,15.91,46,31.0009,5,65,70 +2011-02-14 21:00:00,1,0,1,1,14.76,15.91,50,35.0008,8,35,43 +2011-02-14 22:00:00,1,0,1,1,13.94,14.395,46,43.9989,1,44,45 +2011-02-14 23:00:00,1,0,1,1,13.12,14.395,49,32.9975,1,19,20 +2011-02-15 00:00:00,1,0,1,1,12.3,13.635,49,27.9993,7,12,19 +2011-02-15 01:00:00,1,0,1,1,12.3,12.12,42,51.9987,0,5,5 +2011-02-15 02:00:00,1,0,1,1,11.48,11.365,41,46.0022,1,2,3 +2011-02-15 04:00:00,1,0,1,1,9.02,9.09,37,35.0008,0,1,1 +2011-02-15 05:00:00,1,0,1,1,9.02,9.09,32,31.0009,0,4,4 +2011-02-15 06:00:00,1,0,1,1,8.2,9.09,32,22.0028,0,30,30 +2011-02-15 07:00:00,1,0,1,1,8.2,9.09,32,23.9994,2,103,105 +2011-02-15 08:00:00,1,0,1,1,8.2,9.09,32,23.9994,10,213,223 +2011-02-15 09:00:00,1,0,1,1,9.02,9.85,29,30.0026,2,108,110 +2011-02-15 10:00:00,1,0,1,1,9.84,10.605,27,19.0012,5,47,52 +2011-02-15 11:00:00,1,0,1,1,10.66,12.12,25,16.9979,11,46,57 +2011-02-15 12:00:00,1,0,1,1,11.48,13.635,24,16.9979,6,65,71 +2011-02-15 13:00:00,1,0,1,1,13.12,15.15,21,15.0013,14,68,82 +2011-02-15 14:00:00,1,0,1,1,13.94,15.91,19,15.0013,10,69,79 +2011-02-15 15:00:00,1,0,1,1,13.94,16.665,19,11.0014,11,74,85 +2011-02-15 16:00:00,1,0,1,1,13.94,15.91,19,16.9979,21,77,98 +2011-02-15 17:00:00,1,0,1,1,13.12,15.15,22,15.0013,15,191,206 +2011-02-15 18:00:00,1,0,1,1,12.3,15.15,22,8.9981,14,198,212 +2011-02-15 19:00:00,1,0,1,1,11.48,14.395,26,8.9981,3,142,145 +2011-02-15 20:00:00,1,0,1,1,10.66,13.635,33,7.0015,3,98,101 +2011-02-15 21:00:00,1,0,1,1,9.84,14.395,52,0,5,61,66 +2011-02-15 22:00:00,1,0,1,1,9.84,14.395,44,0,0,41,41 +2011-02-15 23:00:00,1,0,1,2,9.02,12.88,44,6.0032,0,20,20 +2011-02-16 00:00:00,1,0,1,1,9.02,12.88,41,6.0032,0,15,15 +2011-02-16 01:00:00,1,0,1,1,8.2,11.365,44,6.0032,0,9,9 +2011-02-16 03:00:00,1,0,1,2,8.2,9.85,47,12.998,0,1,1 +2011-02-16 04:00:00,1,0,1,1,8.2,9.85,51,12.998,0,1,1 +2011-02-16 05:00:00,1,0,1,1,8.2,9.85,47,12.998,0,5,5 +2011-02-16 06:00:00,1,0,1,1,8.2,9.85,55,15.0013,1,32,33 +2011-02-16 07:00:00,1,0,1,2,8.2,9.85,55,15.0013,5,103,108 +2011-02-16 08:00:00,1,0,1,2,9.02,11.365,55,11.0014,6,224,230 +2011-02-16 09:00:00,1,0,1,1,9.84,10.605,52,19.0012,2,122,124 +2011-02-16 10:00:00,1,0,1,1,10.66,11.365,41,26.0027,14,55,69 +2011-02-16 11:00:00,1,0,1,1,13.94,15.15,34,19.9995,7,59,66 +2011-02-16 12:00:00,1,0,1,1,15.58,19.695,32,22.0028,14,72,86 +2011-02-16 13:00:00,1,0,1,1,17.22,21.21,30,23.9994,13,80,93 +2011-02-16 14:00:00,1,0,1,1,18.86,22.725,28,27.9993,17,65,82 +2011-02-16 15:00:00,1,0,1,1,18.86,22.725,28,27.9993,35,82,117 +2011-02-16 16:00:00,1,0,1,1,18.86,22.725,31,26.0027,26,96,122 +2011-02-16 17:00:00,1,0,1,1,18.86,22.725,28,19.0012,11,244,255 +2011-02-16 18:00:00,1,0,1,1,16.4,20.455,40,15.0013,20,202,222 +2011-02-16 19:00:00,1,0,1,1,13.94,15.91,53,15.0013,18,143,161 +2011-02-16 20:00:00,1,0,1,1,15.58,19.695,43,12.998,10,108,118 +2011-02-16 21:00:00,1,0,1,1,14.76,17.425,46,12.998,5,87,92 +2011-02-16 22:00:00,1,0,1,1,13.94,16.665,53,12.998,12,61,73 +2011-02-16 23:00:00,1,0,1,1,15.58,19.695,40,15.0013,2,31,33 +2011-02-17 00:00:00,1,0,1,1,13.94,16.665,53,12.998,1,16,17 +2011-02-17 01:00:00,1,0,1,1,13.94,15.91,53,15.0013,0,6,6 +2011-02-17 02:00:00,1,0,1,2,13.94,15.91,53,15.0013,2,4,6 +2011-02-17 03:00:00,1,0,1,1,13.94,16.665,53,12.998,3,1,4 +2011-02-17 04:00:00,1,0,1,1,13.12,15.91,57,12.998,3,1,4 +2011-02-17 05:00:00,1,0,1,1,13.12,16.665,66,6.0032,1,11,12 +2011-02-17 06:00:00,1,0,1,1,12.3,15.15,70,8.9981,3,44,47 +2011-02-17 07:00:00,1,0,1,1,13.12,16.665,57,7.0015,7,119,126 +2011-02-17 08:00:00,1,0,1,1,13.12,16.665,57,6.0032,18,267,285 +2011-02-17 09:00:00,1,0,1,1,14.76,17.425,57,12.998,16,163,179 +2011-02-17 10:00:00,1,0,1,1,15.58,19.695,54,12.998,18,70,88 +2011-02-17 11:00:00,1,0,1,2,18.04,21.97,44,16.9979,19,71,90 +2011-02-17 12:00:00,1,0,1,1,19.68,23.485,41,15.0013,15,86,101 +2011-02-17 13:00:00,1,0,1,1,22.14,25.76,34,15.0013,15,108,123 +2011-02-17 14:00:00,1,0,1,1,24.6,31.06,31,15.0013,26,55,81 +2011-02-17 15:00:00,1,0,1,1,24.6,30.305,28,16.9979,15,91,106 +2011-02-17 16:00:00,1,0,1,2,22.96,26.515,35,19.9995,29,117,146 +2011-02-17 17:00:00,1,0,1,2,23.78,27.275,32,19.9995,18,256,274 +2011-02-17 18:00:00,1,0,1,2,22.14,25.76,42,19.0012,11,211,222 +2011-02-17 19:00:00,1,0,1,1,19.68,23.485,55,22.0028,14,161,175 +2011-02-17 20:00:00,1,0,1,1,19.68,23.485,59,22.0028,8,131,139 +2011-02-17 21:00:00,1,0,1,1,21.32,25,55,26.0027,5,119,124 +2011-02-17 22:00:00,1,0,1,1,20.5,24.24,59,19.0012,8,68,76 +2011-02-17 23:00:00,1,0,1,1,18.86,22.725,67,19.9995,4,40,44 +2011-02-18 00:00:00,1,0,1,1,18.04,21.97,72,19.0012,12,20,32 +2011-02-18 01:00:00,1,0,1,1,18.04,21.97,72,15.0013,1,7,8 +2011-02-18 02:00:00,1,0,1,1,18.04,21.97,72,19.0012,2,5,7 +2011-02-18 03:00:00,1,0,1,1,18.86,22.725,67,16.9979,2,6,8 +2011-02-18 04:00:00,1,0,1,1,18.86,22.725,67,16.9979,0,1,1 +2011-02-18 05:00:00,1,0,1,2,18.86,22.725,67,7.0015,1,6,7 +2011-02-18 06:00:00,1,0,1,2,18.04,21.97,72,11.0014,2,48,50 +2011-02-18 07:00:00,1,0,1,2,17.22,21.21,77,15.0013,8,108,116 +2011-02-18 08:00:00,1,0,1,2,17.22,21.21,77,12.998,26,246,272 +2011-02-18 09:00:00,1,0,1,2,17.22,21.21,77,12.998,15,154,169 +2011-02-18 10:00:00,1,0,1,2,18.04,21.97,72,15.0013,17,78,95 +2011-02-18 11:00:00,1,0,1,1,18.04,21.97,72,11.0014,31,82,113 +2011-02-18 12:00:00,1,0,1,1,20.5,24.24,59,12.998,59,126,185 +2011-02-18 13:00:00,1,0,1,1,24.6,31.06,43,12.998,45,131,176 +2011-02-18 14:00:00,1,0,1,1,27.06,31.06,36,19.9995,73,118,191 +2011-02-18 15:00:00,1,0,1,1,27.06,31.06,36,22.0028,55,117,172 +2011-02-18 16:00:00,1,0,1,1,27.06,31.06,36,19.0012,68,164,232 +2011-02-18 17:00:00,1,0,1,1,27.06,31.06,34,23.9994,52,275,327 +2011-02-18 18:00:00,1,0,1,1,26.24,31.06,33,22.0028,29,195,224 +2011-02-18 19:00:00,1,0,1,1,25.42,31.06,29,39.0007,16,146,162 +2011-02-18 20:00:00,1,0,1,1,24.6,31.06,31,12.998,19,105,124 +2011-02-18 21:00:00,1,0,1,1,23.78,27.275,21,32.9975,11,61,72 +2011-02-18 22:00:00,1,0,1,1,22.14,25.76,10,16.9979,19,88,107 +2011-02-18 23:00:00,1,0,1,1,21.32,25,8,19.0012,16,61,77 +2011-02-19 00:00:00,1,0,0,1,19.68,23.485,12,32.9975,6,23,29 +2011-02-19 01:00:00,1,0,0,1,18.86,22.725,14,27.9993,10,21,31 +2011-02-19 02:00:00,1,0,0,1,18.04,21.97,13,26.0027,3,14,17 +2011-02-19 03:00:00,1,0,0,1,17.22,21.21,14,19.9995,0,7,7 +2011-02-19 04:00:00,1,0,0,1,16.4,20.455,15,22.0028,0,3,3 +2011-02-19 05:00:00,1,0,0,1,16.4,20.455,15,22.0028,0,3,3 +2011-02-19 06:00:00,1,0,0,1,16.4,20.455,17,27.9993,3,3,6 +2011-02-19 07:00:00,1,0,0,1,15.58,19.695,17,35.0008,6,16,22 +2011-02-19 08:00:00,1,0,0,1,15.58,19.695,17,39.0007,9,36,45 +2011-02-19 09:00:00,1,0,0,1,16.4,20.455,16,43.9989,18,37,55 +2011-02-19 10:00:00,1,0,0,1,17.22,21.21,16,39.0007,34,72,106 +2011-02-19 11:00:00,1,0,0,1,18.04,21.97,16,39.0007,47,76,123 +2011-02-19 12:00:00,1,0,0,1,18.04,21.97,18,32.9975,38,81,119 +2011-02-19 13:00:00,1,0,0,1,18.04,21.97,16,40.9973,52,103,155 +2011-02-19 14:00:00,1,0,0,1,18.86,22.725,15,43.9989,102,94,196 +2011-02-19 15:00:00,1,0,0,1,18.04,21.97,16,50.0021,84,87,171 +2011-02-19 16:00:00,1,0,0,1,18.04,21.97,16,43.0006,39,81,120 +2011-02-19 17:00:00,1,0,0,1,17.22,21.21,19,40.9973,36,91,127 +2011-02-19 18:00:00,1,0,0,1,14.76,15.91,25,30.0026,21,67,88 +2011-02-19 19:00:00,1,0,0,1,13.94,15.15,29,23.9994,5,54,59 +2011-02-19 20:00:00,1,0,0,1,13.12,14.395,28,35.0008,9,38,47 +2011-02-19 21:00:00,1,0,0,1,13.12,13.635,26,36.9974,4,29,33 +2011-02-19 22:00:00,1,0,0,1,12.3,12.88,28,32.9975,2,42,44 +2011-02-19 23:00:00,1,0,0,1,11.48,12.12,33,30.0026,4,25,29 +2011-03-01 00:00:00,1,0,1,1,12.3,13.635,70,31.0009,0,7,7 +2011-03-01 01:00:00,1,0,1,1,10.66,11.365,70,23.9994,0,3,3 +2011-03-01 02:00:00,1,0,1,1,9.84,10.605,65,26.0027,0,4,4 +2011-03-01 03:00:00,1,0,1,1,9.02,10.605,69,19.0012,0,2,2 +2011-03-01 04:00:00,1,0,1,1,9.02,10.605,69,16.9979,0,1,1 +2011-03-01 05:00:00,1,0,1,1,8.2,9.09,64,19.0012,1,1,2 +2011-03-01 06:00:00,1,0,1,1,8.2,9.09,59,19.9995,0,46,46 +2011-03-01 07:00:00,1,0,1,1,8.2,9.09,59,22.0028,2,105,107 +2011-03-01 08:00:00,1,0,1,1,8.2,9.09,59,26.0027,10,204,214 +2011-03-01 09:00:00,1,0,1,1,9.02,9.85,55,27.9993,8,116,124 +2011-03-01 10:00:00,1,0,1,1,9.84,10.605,52,19.0012,13,55,68 +2011-03-01 11:00:00,1,0,1,1,11.48,13.635,45,16.9979,8,48,56 +2011-03-01 12:00:00,1,0,1,1,12.3,15.15,39,8.9981,6,80,86 +2011-03-01 13:00:00,1,0,1,1,13.12,17.425,39,0,13,65,78 +2011-03-01 14:00:00,1,0,1,1,13.12,16.665,36,8.9981,18,61,79 +2011-03-01 15:00:00,1,0,1,1,13.94,18.18,34,0,7,57,64 +2011-03-01 16:00:00,1,0,1,1,13.94,17.425,34,6.0032,10,92,102 +2011-03-01 17:00:00,1,0,1,1,13.94,17.425,34,6.0032,12,230,242 +2011-03-01 18:00:00,1,0,1,1,13.12,15.91,39,12.998,10,214,224 +2011-03-01 19:00:00,1,0,1,1,12.3,15.15,49,8.9981,4,115,119 +2011-03-01 20:00:00,1,0,1,1,12.3,15.91,61,6.0032,2,86,88 +2011-03-01 21:00:00,1,0,1,1,10.66,15.15,56,0,8,55,63 +2011-03-01 22:00:00,1,0,1,1,9.84,13.635,62,7.0015,3,44,47 +2011-03-01 23:00:00,1,0,1,1,9.84,11.365,65,15.0013,2,23,25 +2011-03-02 00:00:00,1,0,1,1,9.02,11.365,69,11.0014,3,5,8 +2011-03-02 01:00:00,1,0,1,1,9.02,11.365,69,12.998,0,4,4 +2011-03-02 02:00:00,1,0,1,1,9.02,11.365,69,12.998,0,2,2 +2011-03-02 03:00:00,1,0,1,1,9.02,10.605,69,19.0012,3,1,4 +2011-03-02 04:00:00,1,0,1,1,8.2,10.605,75,8.9981,1,0,1 +2011-03-02 05:00:00,1,0,1,1,9.02,10.605,69,15.0013,0,5,5 +2011-03-02 06:00:00,1,0,1,1,9.02,10.605,55,16.9979,1,39,40 +2011-03-02 07:00:00,1,0,1,1,9.02,10.605,64,16.9979,2,108,110 +2011-03-02 08:00:00,1,0,1,1,9.84,10.605,65,19.0012,13,243,256 +2011-03-02 09:00:00,1,0,1,1,11.48,12.88,56,19.9995,7,141,148 +2011-03-02 10:00:00,1,0,1,1,13.12,15.15,49,19.0012,11,65,76 +2011-03-02 11:00:00,1,0,1,1,13.94,15.15,53,22.0028,8,65,73 +2011-03-02 12:00:00,1,0,1,1,16.4,20.455,43,12.998,20,62,82 +2011-03-02 13:00:00,1,0,1,1,20.5,24.24,25,0,35,90,125 +2011-03-02 14:00:00,1,0,1,1,21.32,25,23,19.9995,21,75,96 +2011-03-02 15:00:00,1,0,1,1,22.14,25.76,19,27.9993,19,91,110 +2011-03-02 16:00:00,1,0,1,1,22.14,25.76,19,22.0028,27,112,139 +2011-03-02 17:00:00,1,0,1,1,20.5,24.24,23,19.0012,30,238,268 +2011-03-02 18:00:00,1,0,1,1,18.86,22.725,23,32.9975,8,193,201 +2011-03-02 19:00:00,1,0,1,1,16.4,20.455,28,35.0008,6,144,150 +2011-03-02 20:00:00,1,0,1,1,14.76,16.665,29,27.9993,9,86,95 +2011-03-02 21:00:00,1,0,1,1,13.94,14.395,29,31.0009,3,68,71 +2011-03-02 22:00:00,1,0,1,1,12.3,12.88,26,36.9974,4,44,48 +2011-03-02 23:00:00,1,0,1,1,10.66,10.605,30,35.0008,0,22,22 +2011-03-03 00:00:00,1,0,1,1,9.84,9.85,30,31.0009,3,10,13 +2011-03-03 01:00:00,1,0,1,1,9.84,9.85,30,31.0009,0,1,1 +2011-03-03 02:00:00,1,0,1,1,8.2,8.335,27,31.0009,1,2,3 +2011-03-03 03:00:00,1,0,1,1,8.2,8.335,27,31.0009,0,1,1 +2011-03-03 04:00:00,1,0,1,1,6.56,6.06,31,32.9975,0,1,1 +2011-03-03 05:00:00,1,0,1,1,5.74,6.06,33,19.9995,1,7,8 +2011-03-03 06:00:00,1,0,1,1,5.74,6.06,33,19.9995,1,34,35 +2011-03-03 07:00:00,1,0,1,1,4.92,4.545,42,27.9993,1,110,111 +2011-03-03 08:00:00,1,0,1,1,5.74,6.06,39,19.9995,4,216,220 +2011-03-03 09:00:00,1,0,1,1,6.56,6.82,37,19.0012,10,135,145 +2011-03-03 10:00:00,1,0,1,1,7.38,9.09,29,12.998,7,49,56 +2011-03-03 11:00:00,1,0,1,1,8.2,11.365,29,6.0032,10,40,50 +2011-03-03 12:00:00,1,0,1,1,9.02,11.365,25,8.9981,7,65,72 +2011-03-03 13:00:00,1,0,1,1,9.02,12.88,25,6.0032,13,67,80 +2011-03-03 14:00:00,1,0,1,1,9.84,12.88,21,7.0015,18,60,78 +2011-03-03 15:00:00,1,0,1,1,9.84,14.395,23,0,6,62,68 +2011-03-03 16:00:00,1,0,1,1,10.66,15.15,23,0,6,65,71 +2011-03-03 17:00:00,1,0,1,1,10.66,15.15,22,0,17,185,202 +2011-03-03 18:00:00,1,0,1,1,9.84,10.605,35,22.0028,6,161,167 +2011-03-03 19:00:00,1,0,1,1,8.2,9.85,40,16.9979,5,101,106 +2011-03-03 20:00:00,1,0,1,1,8.2,11.365,40,6.0032,1,69,70 +2011-03-03 21:00:00,1,0,1,1,7.38,10.605,40,7.0015,3,48,51 +2011-03-03 22:00:00,1,0,1,1,8.2,12.88,40,0,3,50,53 +2011-03-03 23:00:00,1,0,1,2,7.38,10.605,43,6.0032,0,23,23 +2011-03-04 00:00:00,1,0,1,2,8.2,9.85,55,12.998,0,12,12 +2011-03-04 01:00:00,1,0,1,2,7.38,9.09,64,12.998,0,4,4 +2011-03-04 02:00:00,1,0,1,2,7.38,9.09,64,12.998,0,2,2 +2011-03-04 03:00:00,1,0,1,2,7.38,8.335,74,16.9979,0,1,1 +2011-03-04 04:00:00,1,0,1,2,7.38,9.09,74,12.998,1,0,1 +2011-03-04 05:00:00,1,0,1,2,6.56,9.09,74,8.9981,0,7,7 +2011-03-04 06:00:00,1,0,1,2,6.56,9.85,74,6.0032,1,28,29 +2011-03-04 07:00:00,1,0,1,1,6.56,9.09,80,8.9981,0,83,83 +2011-03-04 08:00:00,1,0,1,1,7.38,9.85,74,8.9981,6,222,228 +2011-03-04 09:00:00,1,0,1,1,9.02,11.365,60,8.9981,12,138,150 +2011-03-04 10:00:00,1,0,1,1,9.84,11.365,60,16.9979,10,56,66 +2011-03-04 11:00:00,1,0,1,1,11.48,13.635,52,15.0013,16,73,89 +2011-03-04 12:00:00,1,0,1,1,13.12,15.15,43,11.0014,10,87,97 +2011-03-04 13:00:00,1,0,1,1,13.94,15.91,42,15.0013,13,74,87 +2011-03-04 14:00:00,1,0,1,1,14.76,16.665,40,19.0012,30,65,95 +2011-03-04 15:00:00,1,0,1,1,14.76,16.665,40,19.9995,31,75,106 +2011-03-04 16:00:00,1,0,1,1,14.76,17.425,46,12.998,17,101,118 +2011-03-04 17:00:00,1,0,1,2,14.76,16.665,50,16.9979,22,206,228 +2011-03-04 18:00:00,1,0,1,2,13.94,15.15,53,19.9995,15,172,187 +2011-03-04 19:00:00,1,0,1,1,13.12,15.15,61,16.9979,5,102,107 +2011-03-04 20:00:00,1,0,1,2,12.3,14.395,70,12.998,9,78,87 +2011-03-04 21:00:00,1,0,1,2,12.3,14.395,70,15.0013,6,64,70 +2011-03-04 22:00:00,1,0,1,1,12.3,14.395,70,12.998,4,40,44 +2011-03-04 23:00:00,1,0,1,2,12.3,15.15,75,11.0014,6,40,46 +2011-03-05 00:00:00,1,0,0,2,11.48,14.395,81,7.0015,4,15,19 +2011-03-05 01:00:00,1,0,0,2,12.3,15.91,81,7.0015,5,20,25 +2011-03-05 02:00:00,1,0,0,2,12.3,14.395,87,12.998,5,15,20 +2011-03-05 03:00:00,1,0,0,2,12.3,14.395,87,12.998,0,2,2 +2011-03-05 04:00:00,1,0,0,2,12.3,15.15,93,11.0014,0,1,1 +2011-03-05 05:00:00,1,0,0,2,12.3,15.15,100,8.9981,0,3,3 +2011-03-05 06:00:00,1,0,0,2,12.3,14.395,100,15.0013,1,3,4 +2011-03-05 07:00:00,1,0,0,2,12.3,13.635,100,19.9995,5,10,15 +2011-03-05 08:00:00,1,0,0,2,12.3,13.635,100,19.9995,11,34,45 +2011-03-05 09:00:00,1,0,0,2,13.12,15.15,93,15.0013,15,48,63 +2011-03-05 10:00:00,1,0,0,2,13.94,16.665,93,12.998,34,69,103 +2011-03-05 11:00:00,1,0,0,2,16.4,20.455,76,15.0013,43,116,159 +2011-03-05 12:00:00,1,0,0,2,18.04,21.97,67,16.9979,46,121,167 +2011-03-05 13:00:00,1,0,0,2,18.86,22.725,67,19.0012,60,130,190 +2011-03-05 14:00:00,1,0,0,2,19.68,23.485,59,19.0012,80,118,198 +2011-03-05 15:00:00,1,0,0,2,18.86,22.725,63,19.9995,83,122,205 +2011-03-05 16:00:00,1,0,0,2,19.68,23.485,59,19.9995,74,130,204 +2011-03-05 17:00:00,1,0,0,2,19.68,23.485,59,23.9994,60,104,164 +2011-03-05 18:00:00,1,0,0,2,19.68,23.485,59,22.0028,37,115,152 +2011-03-05 19:00:00,1,0,0,2,18.86,22.725,67,22.0028,27,62,89 +2011-03-05 20:00:00,1,0,0,2,18.04,21.97,77,22.0028,12,58,70 +2011-03-05 21:00:00,1,0,0,2,18.04,21.97,72,22.0028,12,60,72 +2011-03-05 22:00:00,1,0,0,2,17.22,21.21,77,19.9995,16,47,63 +2011-03-05 23:00:00,1,0,0,2,18.04,21.97,77,19.9995,10,34,44 +2011-03-06 00:00:00,1,0,0,2,17.22,21.21,77,23.9994,11,41,52 +2011-03-06 01:00:00,1,0,0,2,17.22,21.21,77,19.0012,12,27,39 +2011-03-06 02:00:00,1,0,0,2,16.4,20.455,82,19.0012,5,27,32 +2011-03-06 03:00:00,1,0,0,2,17.22,21.21,82,19.9995,2,9,11 +2011-03-06 04:00:00,1,0,0,2,17.22,21.21,88,23.9994,0,3,3 +2011-03-06 06:00:00,1,0,0,2,17.22,21.21,94,23.9994,1,1,2 +2011-03-06 07:00:00,1,0,0,3,17.22,21.21,100,30.0026,0,5,5 +2011-03-06 08:00:00,1,0,0,2,16.4,20.455,100,19.9995,1,8,9 +2011-03-06 09:00:00,1,0,0,2,17.22,21.21,100,19.0012,4,18,22 +2011-03-06 10:00:00,1,0,0,2,17.22,21.21,100,19.9995,4,27,31 +2011-03-06 11:00:00,1,0,0,2,17.22,21.21,100,15.0013,18,44,62 +2011-03-06 12:00:00,1,0,0,2,18.86,22.725,94,22.0028,10,69,79 +2011-03-06 13:00:00,1,0,0,2,18.86,22.725,94,23.9994,22,83,105 +2011-03-06 14:00:00,1,0,0,3,18.04,21.97,100,15.0013,12,27,39 +2011-03-06 15:00:00,1,0,0,3,18.04,21.97,100,15.0013,3,4,7 +2011-03-06 16:00:00,1,0,0,3,14.76,16.665,100,19.0012,3,8,11 +2011-03-06 17:00:00,1,0,0,3,13.94,15.15,100,19.9995,2,23,25 +2011-03-06 18:00:00,1,0,0,3,13.12,14.395,100,23.9994,0,23,23 +2011-03-06 19:00:00,1,0,0,3,12.3,12.88,100,32.9975,0,11,11 +2011-03-06 20:00:00,1,0,0,3,11.48,12.12,100,27.9993,3,8,11 +2011-03-06 21:00:00,1,0,0,3,9.84,9.09,93,40.9973,1,6,7 +2011-03-06 22:00:00,1,0,0,2,9.02,9.85,100,26.0027,0,10,10 +2011-03-06 23:00:00,1,0,0,2,9.02,9.85,100,27.9993,0,9,9 +2011-03-07 00:00:00,1,0,1,3,8.2,9.09,100,22.0028,0,4,4 +2011-03-07 01:00:00,1,0,1,3,8.2,9.09,100,22.0028,0,2,2 +2011-03-07 03:00:00,1,0,1,1,8.2,7.575,80,39.0007,0,1,1 +2011-03-07 04:00:00,1,0,1,1,8.2,7.575,80,35.0008,1,0,1 +2011-03-07 05:00:00,1,0,1,1,8.2,9.09,75,23.9994,0,1,1 +2011-03-07 06:00:00,1,0,1,1,8.2,9.09,75,26.0027,3,31,34 +2011-03-07 07:00:00,1,0,1,1,8.2,8.335,75,27.9993,3,88,91 +2011-03-07 08:00:00,1,0,1,1,8.2,9.09,75,26.0027,11,200,211 +2011-03-07 09:00:00,1,0,1,1,9.02,9.09,64,31.0009,5,129,134 +2011-03-07 10:00:00,1,0,1,1,9.84,10.605,60,19.9995,15,43,58 +2011-03-07 11:00:00,1,0,1,1,10.66,10.605,48,30.0026,19,41,60 +2011-03-07 12:00:00,1,0,1,1,12.3,13.635,42,27.9993,28,68,96 +2011-03-07 13:00:00,1,0,1,1,13.12,14.395,36,26.0027,16,54,70 +2011-03-07 14:00:00,1,0,1,1,13.12,14.395,36,27.9993,21,56,77 +2011-03-07 15:00:00,1,0,1,1,13.94,15.15,31,26.0027,32,64,96 +2011-03-07 16:00:00,1,0,1,1,13.94,15.15,31,23.9994,26,96,122 +2011-03-07 17:00:00,1,0,1,1,13.94,15.15,29,23.9994,27,206,233 +2011-03-07 18:00:00,1,0,1,1,13.12,15.15,31,15.0013,19,214,233 +2011-03-07 19:00:00,1,0,1,1,12.3,14.395,33,15.0013,11,134,145 +2011-03-07 20:00:00,1,0,1,1,12.3,15.15,33,11.0014,5,87,92 +2011-03-07 21:00:00,1,0,1,1,11.48,13.635,38,15.0013,1,53,54 +2011-03-07 22:00:00,1,0,1,1,10.66,12.88,48,11.0014,1,34,35 +2011-03-07 23:00:00,1,0,1,1,11.48,15.91,48,0,0,22,22 +2011-03-08 00:00:00,1,0,1,1,10.66,14.395,48,6.0032,1,9,10 +2011-03-08 01:00:00,1,0,1,1,9.84,12.12,52,8.9981,0,4,4 +2011-03-08 02:00:00,1,0,1,1,9.84,12.12,52,8.9981,1,0,1 +2011-03-08 03:00:00,1,0,1,1,9.84,12.88,52,6.0032,5,2,7 +2011-03-08 04:00:00,1,0,1,1,9.02,13.635,64,0,0,2,2 +2011-03-08 05:00:00,1,0,1,1,8.2,11.365,69,7.0015,2,8,10 +2011-03-08 06:00:00,1,0,1,1,8.2,12.88,59,0,3,42,45 +2011-03-08 07:00:00,1,0,1,1,7.38,9.85,64,8.9981,9,119,128 +2011-03-08 08:00:00,1,0,1,1,9.02,11.365,55,12.998,10,247,257 +2011-03-08 09:00:00,1,0,1,1,10.66,12.88,41,11.0014,11,140,151 +2011-03-08 10:00:00,1,0,1,2,12.3,14.395,33,12.998,25,46,71 +2011-03-08 11:00:00,1,0,1,2,14.76,17.425,25,11.0014,26,52,78 +2011-03-08 12:00:00,1,0,1,2,14.76,18.94,23,0,29,70,99 +2011-03-08 13:00:00,1,0,1,2,15.58,19.695,25,7.0015,25,73,98 +2011-03-08 14:00:00,1,0,1,2,15.58,19.695,20,0,16,56,72 +2011-03-08 15:00:00,1,0,1,2,14.76,18.94,18,0,35,77,112 +2011-03-08 16:00:00,1,0,1,1,15.58,19.695,27,11.0014,26,82,108 +2011-03-08 17:00:00,1,0,1,1,14.76,17.425,27,15.0013,39,209,248 +2011-03-08 18:00:00,1,0,1,1,13.94,16.665,27,12.998,21,214,235 +2011-03-08 19:00:00,1,0,1,1,13.94,17.425,31,7.0015,9,141,150 +2011-03-08 20:00:00,1,0,1,1,13.12,16.665,39,6.0032,2,74,76 +2011-03-08 21:00:00,1,0,1,1,12.3,14.395,49,12.998,7,68,75 +2011-03-08 22:00:00,1,0,1,1,12.3,14.395,49,15.0013,11,44,55 +2011-03-08 23:00:00,1,0,1,1,11.48,13.635,61,12.998,3,38,41 +2011-03-09 00:00:00,1,0,1,1,10.66,14.395,65,6.0032,0,9,9 +2011-03-09 01:00:00,1,0,1,1,10.66,13.635,52,8.9981,0,4,4 +2011-03-09 02:00:00,1,0,1,1,10.66,13.635,52,8.9981,1,1,2 +2011-03-09 03:00:00,1,0,1,1,9.84,12.88,70,6.0032,1,2,3 +2011-03-09 04:00:00,1,0,1,1,9.84,12.88,75,7.0015,0,2,2 +2011-03-09 05:00:00,1,0,1,2,9.84,12.12,81,8.9981,1,7,8 +2011-03-09 06:00:00,1,0,1,2,9.84,12.88,85,7.0015,5,44,49 +2011-03-09 07:00:00,1,0,1,2,9.84,12.12,87,11.0014,18,123,141 +2011-03-09 08:00:00,1,0,1,2,9.84,12.12,87,8.9981,11,238,249 +2011-03-09 09:00:00,1,0,1,2,10.66,12.12,87,16.9979,5,136,141 +2011-03-09 10:00:00,1,0,1,2,12.3,14.395,75,16.9979,8,49,57 +2011-03-09 11:00:00,1,0,1,2,13.12,14.395,76,26.0027,15,44,59 +2011-03-09 12:00:00,1,0,1,2,13.12,15.15,76,16.9979,14,84,98 +2011-03-09 13:00:00,1,0,1,2,13.12,14.395,76,23.9994,17,82,99 +2011-03-09 14:00:00,1,0,1,2,13.94,15.15,76,19.9995,10,61,71 +2011-03-09 15:00:00,1,0,1,2,14.76,16.665,71,19.9995,15,64,79 +2011-03-09 16:00:00,1,0,1,2,13.94,15.15,76,22.0028,10,102,112 +2011-03-09 17:00:00,1,0,1,2,13.94,15.15,76,19.9995,18,176,194 +2011-03-09 18:00:00,1,0,1,2,13.94,15.91,76,16.9979,12,176,188 +2011-03-09 19:00:00,1,0,1,2,13.94,15.15,76,22.0028,11,123,134 +2011-03-09 20:00:00,1,0,1,2,13.12,15.91,87,12.998,4,87,91 +2011-03-09 21:00:00,1,0,1,2,13.12,15.15,93,22.0028,10,52,62 +2011-03-09 22:00:00,1,0,1,3,13.12,15.91,93,11.0014,4,17,21 +2011-03-09 23:00:00,1,0,1,3,13.94,16.665,93,12.998,1,17,18 +2011-03-10 00:00:00,1,0,1,3,13.94,15.91,0,16.9979,3,0,3 +2011-03-10 01:00:00,1,0,1,3,13.94,15.91,0,16.9979,0,2,2 +2011-03-10 02:00:00,1,0,1,3,13.94,15.91,0,16.9979,0,1,1 +2011-03-10 05:00:00,1,0,1,3,14.76,17.425,0,12.998,1,2,3 +2011-03-10 06:00:00,1,0,1,3,14.76,16.665,0,22.0028,0,12,12 +2011-03-10 07:00:00,1,0,1,3,15.58,19.695,0,15.0013,1,36,37 +2011-03-10 08:00:00,1,0,1,3,15.58,19.695,0,19.0012,1,43,44 +2011-03-10 09:00:00,1,0,1,3,16.4,20.455,0,15.0013,1,23,24 +2011-03-10 10:00:00,1,0,1,3,16.4,20.455,0,11.0014,0,17,17 +2011-03-10 11:00:00,1,0,1,3,16.4,20.455,0,16.9979,6,5,11 +2011-03-10 12:00:00,1,0,1,3,17.22,21.21,0,15.0013,4,30,34 +2011-03-10 13:00:00,1,0,1,3,17.22,21.21,0,15.0013,1,11,12 +2011-03-10 14:00:00,1,0,1,3,18.04,21.97,0,19.9995,0,12,12 +2011-03-10 15:00:00,1,0,1,3,18.04,21.97,0,15.0013,3,11,14 +2011-03-10 16:00:00,1,0,1,3,17.22,21.21,0,16.9979,1,20,21 +2011-03-10 17:00:00,1,0,1,2,18.04,21.97,0,26.0027,2,109,111 +2011-03-10 18:00:00,1,0,1,3,18.04,21.97,0,23.9994,2,80,82 +2011-03-10 19:00:00,1,0,1,3,18.04,21.97,0,39.0007,5,51,56 +2011-03-10 20:00:00,1,0,1,3,14.76,16.665,0,22.0028,9,29,38 +2011-03-10 21:00:00,1,0,1,3,14.76,17.425,0,15.0013,1,27,28 +2011-03-10 22:00:00,1,0,1,2,13.94,16.665,0,8.9981,4,30,34 +2011-03-10 23:00:00,1,0,1,3,13.94,17.425,0,6.0032,1,26,27 +2011-03-11 00:00:00,1,0,1,2,13.94,17.425,100,6.0032,0,6,6 +2011-03-11 01:00:00,1,0,1,3,13.94,17.425,100,7.0015,0,8,8 +2011-03-11 02:00:00,1,0,1,3,13.94,17.425,100,7.0015,2,3,5 +2011-03-11 03:00:00,1,0,1,2,13.12,16.665,93,6.0032,0,2,2 +2011-03-11 05:00:00,1,0,1,1,12.3,14.395,81,15.0013,1,6,7 +2011-03-11 06:00:00,1,0,1,1,10.66,12.12,81,19.0012,1,31,32 +2011-03-11 07:00:00,1,0,1,1,10.66,12.88,70,12.998,10,104,114 +2011-03-11 08:00:00,1,0,1,1,11.48,13.635,70,16.9979,15,244,259 +2011-03-11 09:00:00,1,0,1,2,12.3,14.395,61,19.0012,13,143,156 +2011-03-11 10:00:00,1,0,1,2,13.12,15.15,57,19.9995,18,60,78 +2011-03-11 11:00:00,1,0,1,2,13.12,15.15,57,19.9995,14,67,81 +2011-03-11 12:00:00,1,0,1,2,13.94,15.91,53,16.9979,15,96,111 +2011-03-11 13:00:00,1,0,1,1,14.76,16.665,53,16.9979,15,92,107 +2011-03-11 14:00:00,1,0,1,2,14.76,16.665,50,23.9994,25,64,89 +2011-03-11 15:00:00,1,0,1,2,13.94,15.91,53,16.9979,21,64,85 +2011-03-11 16:00:00,1,0,1,2,13.94,15.15,49,19.9995,18,95,113 +2011-03-11 17:00:00,1,0,1,1,13.94,15.91,49,15.0013,23,200,223 +2011-03-11 18:00:00,1,0,1,1,13.12,15.15,49,22.0028,19,134,153 +2011-03-11 19:00:00,1,0,1,1,12.3,13.635,56,22.0028,7,111,118 +2011-03-11 20:00:00,1,0,1,1,12.3,15.15,56,11.0014,6,70,76 +2011-03-11 21:00:00,1,0,1,2,12.3,14.395,52,16.9979,10,43,53 +2011-03-11 22:00:00,1,0,1,1,12.3,15.15,52,11.0014,11,53,64 +2011-03-11 23:00:00,1,0,1,1,12.3,14.395,52,16.9979,3,34,37 +2011-03-12 00:00:00,1,0,0,1,10.66,13.635,60,8.9981,4,30,34 +2011-03-12 01:00:00,1,0,0,1,9.84,11.365,65,12.998,3,15,18 +2011-03-12 02:00:00,1,0,0,1,9.84,11.365,65,12.998,0,14,14 +2011-03-12 03:00:00,1,0,0,1,9.84,11.365,65,16.9979,1,6,7 +2011-03-12 04:00:00,1,0,0,1,9.84,11.365,65,16.9979,0,1,1 +2011-03-12 05:00:00,1,0,0,1,9.02,11.365,69,12.998,0,2,2 +2011-03-12 06:00:00,1,0,0,1,9.02,10.605,75,16.9979,2,2,4 +2011-03-12 07:00:00,1,0,0,1,9.84,11.365,70,12.998,4,19,23 +2011-03-12 08:00:00,1,0,0,1,10.66,12.88,65,11.0014,9,44,53 +2011-03-12 09:00:00,1,0,0,1,11.48,14.395,65,7.0015,25,76,101 +2011-03-12 10:00:00,1,0,0,1,13.12,15.15,66,15.0013,21,78,99 +2011-03-12 11:00:00,1,0,0,1,13.94,15.15,49,22.0028,36,83,119 +2011-03-12 12:00:00,1,0,0,1,13.94,15.91,53,19.0012,51,107,158 +2011-03-12 13:00:00,1,0,0,1,14.76,16.665,51,23.9994,62,95,157 +2011-03-12 14:00:00,1,0,0,1,16.4,20.455,50,30.0026,70,96,166 +2011-03-12 15:00:00,1,0,0,1,17.22,21.21,44,32.9975,81,101,182 +2011-03-12 16:00:00,1,0,0,1,18.86,22.725,41,30.0026,100,144,244 +2011-03-12 17:00:00,1,0,0,1,18.86,22.725,44,22.0028,99,114,213 +2011-03-12 18:00:00,1,0,0,1,17.22,21.21,54,11.0014,54,91,145 +2011-03-12 19:00:00,1,0,0,1,17.22,21.21,54,6.0032,26,86,112 +2011-03-12 20:00:00,1,0,0,1,16.4,20.455,58,7.0015,22,64,86 +2011-03-12 21:00:00,1,0,0,1,15.58,19.695,62,0,36,46,82 +2011-03-12 22:00:00,1,0,0,1,14.76,18.94,71,0,7,56,63 +2011-03-12 23:00:00,1,0,0,1,15.58,19.695,66,6.0032,11,38,49 +2011-03-13 00:00:00,1,0,0,1,15.58,19.695,62,7.0015,3,35,38 +2011-03-13 01:00:00,1,0,0,1,14.76,17.425,66,8.9981,10,23,33 +2011-03-13 03:00:00,1,0,0,1,13.94,16.665,76,8.9981,6,17,23 +2011-03-13 04:00:00,1,0,0,1,13.94,16.665,66,11.0014,4,9,13 +2011-03-13 05:00:00,1,0,0,1,14.76,17.425,62,8.9981,0,3,3 +2011-03-13 06:00:00,1,0,0,1,13.94,18.18,66,0,0,2,2 +2011-03-13 07:00:00,1,0,0,1,14.76,17.425,62,12.998,2,8,10 +2011-03-13 08:00:00,1,0,0,1,16.4,20.455,50,19.9995,11,23,34 +2011-03-13 09:00:00,1,0,0,1,16.4,20.455,50,27.9993,8,36,44 +2011-03-13 10:00:00,1,0,0,1,17.22,21.21,47,16.9979,36,86,122 +2011-03-13 11:00:00,1,0,0,1,18.04,21.97,41,27.9993,88,93,181 +2011-03-13 12:00:00,1,0,0,1,18.86,22.725,38,26.0027,74,120,194 +2011-03-13 13:00:00,1,0,0,1,18.86,22.725,38,26.0027,97,124,221 +2011-03-13 14:00:00,1,0,0,1,18.86,22.725,41,19.9995,144,106,250 +2011-03-13 15:00:00,1,0,0,1,19.68,23.485,39,22.0028,149,155,304 +2011-03-13 16:00:00,1,0,0,1,18.86,22.725,41,26.0027,124,132,256 +2011-03-13 17:00:00,1,0,0,1,18.04,21.97,41,23.9994,98,143,241 +2011-03-13 18:00:00,1,0,0,1,16.4,20.455,43,23.9994,55,92,147 +2011-03-13 19:00:00,1,0,0,1,14.76,16.665,50,23.9994,28,73,101 +2011-03-13 20:00:00,1,0,0,1,13.12,15.15,57,19.9995,23,54,77 +2011-03-13 21:00:00,1,0,0,1,12.3,14.395,56,16.9979,9,49,58 +2011-03-13 22:00:00,1,0,0,1,12.3,13.635,56,22.0028,8,29,37 +2011-03-13 23:00:00,1,0,0,1,10.66,12.88,65,15.0013,5,23,28 +2011-03-14 00:00:00,1,0,1,1,10.66,13.635,65,7.0015,4,7,11 +2011-03-14 01:00:00,1,0,1,1,10.66,14.395,65,6.0032,0,1,1 +2011-03-14 02:00:00,1,0,1,1,10.66,14.395,65,6.0032,0,1,1 +2011-03-14 03:00:00,1,0,1,1,10.66,13.635,65,8.9981,0,3,3 +2011-03-14 05:00:00,1,0,1,1,9.84,12.12,70,8.9981,0,8,8 +2011-03-14 06:00:00,1,0,1,1,10.66,13.635,65,8.9981,1,27,28 +2011-03-14 07:00:00,1,0,1,2,11.48,15.91,61,0,4,84,88 +2011-03-14 08:00:00,1,0,1,2,12.3,15.15,56,8.9981,24,217,241 +2011-03-14 09:00:00,1,0,1,1,13.12,15.15,53,22.0028,13,127,140 +2011-03-14 10:00:00,1,0,1,1,13.94,15.91,42,16.9979,27,57,84 +2011-03-14 11:00:00,1,0,1,1,14.76,16.665,40,16.9979,26,45,71 +2011-03-14 12:00:00,1,0,1,1,15.58,19.695,37,0,40,54,94 +2011-03-14 13:00:00,1,0,1,1,15.58,19.695,36,22.0028,24,51,75 +2011-03-14 14:00:00,1,0,1,2,15.58,19.695,34,0,27,52,79 +2011-03-14 15:00:00,1,0,1,1,15.58,19.695,37,11.0014,24,77,101 +2011-03-14 16:00:00,1,0,1,1,16.4,20.455,35,7.0015,27,80,107 +2011-03-14 17:00:00,1,0,1,1,15.58,19.695,40,12.998,42,229,271 +2011-03-14 18:00:00,1,0,1,1,14.76,18.18,40,7.0015,25,210,235 +2011-03-14 19:00:00,1,0,1,1,14.76,17.425,43,8.9981,17,133,150 +2011-03-14 20:00:00,1,0,1,1,13.94,15.91,46,15.0013,23,106,129 +2011-03-14 21:00:00,1,0,1,1,13.94,16.665,46,8.9981,5,58,63 +2011-03-14 22:00:00,1,0,1,1,13.12,16.665,49,7.0015,4,43,47 +2011-03-14 23:00:00,1,0,1,1,13.12,17.425,53,0,2,17,19 +2011-03-15 00:00:00,1,0,1,1,13.12,17.425,53,0,7,7,14 +2011-03-15 01:00:00,1,0,1,1,12.3,15.15,62,6.0032,4,6,10 +2011-03-15 02:00:00,1,0,1,1,12.3,15.15,62,6.0032,1,2,3 +2011-03-15 04:00:00,1,0,1,1,9.84,12.88,75,6.0032,1,1,2 +2011-03-15 05:00:00,1,0,1,1,9.84,11.365,75,12.998,0,11,11 +2011-03-15 06:00:00,1,0,1,1,9.02,11.365,80,12.998,3,32,35 +2011-03-15 07:00:00,1,0,1,1,9.84,12.12,75,11.0014,10,109,119 +2011-03-15 08:00:00,1,0,1,1,10.66,14.395,70,6.0032,23,259,282 +2011-03-15 09:00:00,1,0,1,2,12.3,16.665,70,0,10,147,157 +2011-03-15 10:00:00,1,0,1,2,13.12,15.91,66,12.998,22,56,78 +2011-03-15 11:00:00,1,0,1,2,13.94,15.91,57,15.0013,27,51,78 +2011-03-15 12:00:00,1,0,1,2,14.76,17.425,50,15.0013,32,70,102 +2011-03-15 13:00:00,1,0,1,2,14.76,16.665,57,19.0012,23,74,97 +2011-03-15 14:00:00,1,0,1,2,15.58,19.695,46,19.9995,14,74,88 +2011-03-15 15:00:00,1,0,1,2,15.58,19.695,43,19.0012,24,66,90 +2011-03-15 16:00:00,1,0,1,2,15.58,19.695,46,22.0028,21,93,114 +2011-03-15 17:00:00,1,0,1,2,14.76,17.425,62,12.998,22,195,217 +2011-03-15 18:00:00,1,0,1,2,14.76,16.665,62,19.9995,18,207,225 +2011-03-15 19:00:00,1,0,1,2,13.94,15.91,71,19.0012,14,138,152 +2011-03-15 20:00:00,1,0,1,2,13.94,15.91,71,19.0012,9,79,88 +2011-03-15 21:00:00,1,0,1,3,13.12,16.665,81,7.0015,2,53,55 +2011-03-15 22:00:00,1,0,1,2,13.12,15.91,87,11.0014,1,20,21 +2011-03-15 23:00:00,1,0,1,2,13.12,15.91,87,11.0014,1,17,18 +2011-03-16 00:00:00,1,0,1,3,12.3,14.395,93,16.9979,0,8,8 +2011-03-16 01:00:00,1,0,1,3,12.3,13.635,100,19.9995,1,2,3 +2011-03-16 03:00:00,1,0,1,2,11.48,13.635,100,15.0013,1,2,3 +2011-03-16 04:00:00,1,0,1,2,12.3,15.15,93,11.0014,0,1,1 +2011-03-16 05:00:00,1,0,1,2,12.3,15.91,93,7.0015,0,3,3 +2011-03-16 06:00:00,1,0,1,2,12.3,15.91,93,7.0015,1,30,31 +2011-03-16 07:00:00,1,0,1,2,12.3,14.395,93,12.998,10,101,111 +2011-03-16 08:00:00,1,0,1,2,13.12,15.91,93,0,26,227,253 +2011-03-16 09:00:00,1,0,1,2,13.12,16.665,93,8.9981,10,144,154 +2011-03-16 10:00:00,1,0,1,2,14.76,17.425,81,11.0014,19,49,68 +2011-03-16 11:00:00,1,0,1,2,14.76,17.425,81,8.9981,13,62,75 +2011-03-16 12:00:00,1,0,1,2,16.4,20.455,71,7.0015,23,65,88 +2011-03-16 13:00:00,1,0,1,2,16.4,20.455,76,8.9981,18,81,99 +2011-03-16 14:00:00,1,0,1,2,16.4,20.455,76,15.0013,33,67,100 +2011-03-16 15:00:00,1,0,1,2,16.4,20.455,76,16.9979,22,79,101 +2011-03-16 16:00:00,1,0,1,2,16.4,20.455,76,11.0014,30,121,151 +2011-03-16 17:00:00,1,0,1,2,18.04,21.97,54,19.9995,37,216,253 +2011-03-16 18:00:00,1,0,1,2,18.04,21.97,54,15.0013,26,211,237 +2011-03-16 19:00:00,1,0,1,2,18.04,21.97,51,22.0028,18,150,168 +2011-03-16 20:00:00,1,0,1,2,17.22,21.21,54,19.9995,10,111,121 +2011-03-16 21:00:00,1,0,1,2,17.22,21.21,58,19.0012,3,75,78 +2011-03-16 22:00:00,1,0,1,2,16.4,20.455,62,26.0027,11,48,59 +2011-03-16 23:00:00,1,0,1,1,16.4,20.455,65,12.998,9,18,27 +2011-03-17 00:00:00,1,0,1,1,15.58,19.695,66,16.9979,4,19,23 +2011-03-17 01:00:00,1,0,1,1,14.76,17.425,71,15.0013,1,11,12 +2011-03-17 02:00:00,1,0,1,1,13.94,15.15,71,19.9995,3,5,8 +2011-03-17 03:00:00,1,0,1,1,13.94,16.665,66,11.0014,1,1,2 +2011-03-17 04:00:00,1,0,1,1,13.94,16.665,71,12.998,0,3,3 +2011-03-17 05:00:00,1,0,1,1,13.12,16.665,76,7.0015,0,13,13 +2011-03-17 06:00:00,1,0,1,1,13.12,15.91,76,12.998,4,47,51 +2011-03-17 07:00:00,1,0,1,1,13.12,16.665,76,8.9981,12,128,140 +2011-03-17 08:00:00,1,0,1,1,14.76,17.425,66,8.9981,17,282,299 +2011-03-17 09:00:00,1,0,1,1,16.4,20.455,62,16.9979,23,162,185 +2011-03-17 10:00:00,1,0,1,1,18.04,21.97,54,22.0028,9,69,78 +2011-03-17 11:00:00,1,0,1,1,18.04,21.97,54,19.0012,20,66,86 +2011-03-17 12:00:00,1,0,1,1,20.5,24.24,45,15.0013,24,81,105 +2011-03-17 13:00:00,1,0,1,2,21.32,25,42,6.0032,26,85,111 +2011-03-17 14:00:00,1,0,1,1,20.5,24.24,45,7.0015,32,87,119 +2011-03-17 15:00:00,1,0,1,1,21.32,25,42,16.9979,30,95,125 +2011-03-17 16:00:00,1,0,1,1,20.5,24.24,48,19.0012,34,108,142 +2011-03-17 17:00:00,1,0,1,1,20.5,24.24,42,12.998,48,265,313 +2011-03-17 18:00:00,1,0,1,2,18.86,22.725,59,11.0014,50,260,310 +2011-03-17 19:00:00,1,0,1,1,18.04,21.97,58,12.998,18,189,207 +2011-03-17 20:00:00,1,0,1,1,17.22,21.21,67,15.0013,25,112,137 +2011-03-17 21:00:00,1,0,1,1,17.22,21.21,62,15.0013,19,119,138 +2011-03-17 22:00:00,1,0,1,1,16.4,20.455,66,15.0013,17,70,87 +2011-03-17 23:00:00,1,0,1,1,17.22,21.21,62,19.0012,7,43,50 +2011-03-18 00:00:00,1,0,1,1,17.22,21.21,58,19.0012,5,24,29 +2011-03-18 01:00:00,1,0,1,1,16.4,20.455,62,16.9979,4,12,16 +2011-03-18 02:00:00,1,0,1,1,16.4,20.455,62,12.998,5,9,14 +2011-03-18 03:00:00,1,0,1,1,14.76,17.425,71,12.998,1,4,5 +2011-03-18 05:00:00,1,0,1,1,15.58,19.695,66,11.0014,2,8,10 +2011-03-18 06:00:00,1,0,1,1,16.4,20.455,66,12.998,1,35,36 +2011-03-18 07:00:00,1,0,1,1,16.4,20.455,66,12.998,11,112,123 +2011-03-18 08:00:00,1,0,1,1,17.22,21.21,67,16.9979,24,256,280 +2011-03-18 09:00:00,1,0,1,1,18.86,22.725,63,15.0013,18,192,210 +2011-03-18 10:00:00,1,0,1,1,21.32,25,53,19.0012,43,74,117 +2011-03-18 11:00:00,1,0,1,1,22.14,25.76,52,19.0012,55,104,159 +2011-03-18 12:00:00,1,0,1,2,22.96,26.515,49,23.9994,72,123,195 +2011-03-18 13:00:00,1,0,1,1,26.24,31.06,41,19.0012,57,118,175 +2011-03-18 14:00:00,1,0,1,1,27.06,31.06,39,16.9979,71,103,174 +2011-03-18 15:00:00,1,0,1,2,27.88,31.82,39,23.9994,62,111,173 +2011-03-18 16:00:00,1,0,1,1,27.88,31.82,39,19.0012,67,137,204 +2011-03-18 17:00:00,1,0,1,1,28.7,31.82,37,22.0028,95,237,332 +2011-03-18 18:00:00,1,0,1,1,27.88,31.82,39,11.0014,84,247,331 +2011-03-18 19:00:00,1,0,1,1,27.06,31.06,44,8.9981,58,132,190 +2011-03-18 20:00:00,1,0,1,1,25.42,31.06,46,8.9981,46,103,149 +2011-03-18 21:00:00,1,0,1,1,25.42,31.06,46,7.0015,22,91,113 +2011-03-18 22:00:00,1,0,1,1,25.42,31.06,50,11.0014,55,63,118 +2011-03-18 23:00:00,1,0,1,2,24.6,31.06,53,15.0013,26,60,86 +2011-03-19 00:00:00,1,0,0,2,24.6,31.06,53,16.9979,26,50,76 +2011-03-19 01:00:00,1,0,0,2,23.78,27.275,46,23.9994,16,35,51 +2011-03-19 02:00:00,1,0,0,2,22.96,26.515,43,15.0013,5,20,25 +2011-03-19 03:00:00,1,0,0,2,22.14,25.76,39,22.0028,1,7,8 +2011-03-19 04:00:00,1,0,0,1,21.32,25,34,27.9993,1,2,3 +2011-03-19 05:00:00,1,0,0,1,21.32,25,34,27.9993,0,2,2 +2011-03-19 06:00:00,1,0,0,1,18.04,21.97,44,27.9993,0,10,10 +2011-03-19 07:00:00,1,0,0,1,16.4,20.455,50,22.0028,4,9,13 +2011-03-19 08:00:00,1,0,0,1,17.22,21.21,47,32.9975,11,37,48 +2011-03-19 09:00:00,1,0,0,1,17.22,21.21,44,31.0009,35,41,76 +2011-03-19 10:00:00,1,0,0,1,18.04,21.97,38,27.9993,55,85,140 +2011-03-19 11:00:00,1,0,0,1,18.86,22.725,36,30.0026,90,106,196 +2011-03-19 12:00:00,1,0,0,1,18.86,22.725,33,27.9993,126,141,267 +2011-03-19 13:00:00,1,0,0,1,20.5,24.24,34,31.0009,174,127,301 +2011-03-19 14:00:00,1,0,0,1,20.5,24.24,31,32.9975,168,144,312 +2011-03-19 15:00:00,1,0,0,1,20.5,24.24,29,27.9993,170,143,313 +2011-03-19 16:00:00,1,0,0,1,20.5,24.24,31,26.0027,175,129,304 +2011-03-19 17:00:00,1,0,0,1,19.68,23.485,31,22.0028,138,140,278 +2011-03-19 18:00:00,1,0,0,1,18.86,22.725,31,22.0028,92,125,217 +2011-03-19 19:00:00,1,0,0,1,18.04,21.97,33,19.0012,38,116,154 +2011-03-19 20:00:00,1,0,0,1,17.22,21.21,35,15.0013,39,69,108 +2011-03-19 21:00:00,1,0,0,1,16.4,20.455,37,19.9995,20,73,93 +2011-03-19 22:00:00,1,0,0,1,16.4,20.455,37,22.0028,27,45,72 +2011-03-19 23:00:00,1,0,0,1,15.58,19.695,40,19.9995,13,37,50 +2011-04-01 00:00:00,2,0,1,3,10.66,12.88,100,11.0014,0,6,6 +2011-04-01 01:00:00,2,0,1,3,10.66,12.88,100,11.0014,0,4,4 +2011-04-01 02:00:00,2,0,1,3,10.66,12.88,93,12.998,0,7,7 +2011-04-01 03:00:00,2,0,1,2,9.84,11.365,93,16.9979,0,4,4 +2011-04-01 04:00:00,2,0,1,2,9.84,11.365,93,16.9979,0,3,3 +2011-04-01 05:00:00,2,0,1,3,9.84,11.365,93,15.0013,1,11,12 +2011-04-01 06:00:00,2,0,1,3,9.84,11.365,93,15.0013,2,26,28 +2011-04-01 07:00:00,2,0,1,3,9.84,12.12,93,0,4,91,95 +2011-04-01 08:00:00,2,0,1,2,10.66,12.12,87,16.9979,8,198,206 +2011-04-01 09:00:00,2,0,1,1,13.12,14.395,70,23.9994,11,162,173 +2011-04-01 10:00:00,2,0,1,1,13.12,15.15,66,19.0012,12,63,75 +2011-04-01 11:00:00,2,0,1,1,13.12,14.395,61,23.9994,17,72,89 +2011-04-01 12:00:00,2,0,1,1,13.94,15.15,53,23.9994,15,80,95 +2011-04-01 13:00:00,2,0,1,1,14.76,16.665,50,23.9994,18,92,110 +2011-04-01 14:00:00,2,0,1,2,14.76,16.665,46,23.9994,26,61,87 +2011-04-01 15:00:00,2,0,1,1,13.94,15.15,46,27.9993,30,81,111 +2011-04-01 16:00:00,2,0,1,1,13.94,15.15,46,27.9993,42,125,167 +2011-04-01 17:00:00,2,0,1,1,13.94,15.15,46,22.0028,36,245,281 +2011-04-01 18:00:00,2,0,1,1,13.94,15.15,46,22.0028,36,205,241 +2011-04-01 19:00:00,2,0,1,1,13.94,15.15,49,22.0028,16,120,136 +2011-04-01 20:00:00,2,0,1,1,13.12,15.91,53,12.998,2,75,77 +2011-04-01 21:00:00,2,0,1,1,13.12,16.665,53,8.9981,9,84,93 +2011-04-01 22:00:00,2,0,1,1,12.3,15.15,56,11.0014,10,64,74 +2011-04-01 23:00:00,2,0,1,1,12.3,15.91,61,6.0032,12,41,53 +2011-04-02 00:00:00,2,0,0,2,12.3,16.665,61,0,3,29,32 +2011-04-02 01:00:00,2,0,0,1,10.66,13.635,65,8.9981,4,28,32 +2011-04-02 02:00:00,2,0,0,1,9.84,12.12,75,8.9981,1,20,21 +2011-04-02 03:00:00,2,0,0,1,9.84,12.12,70,11.0014,1,8,9 +2011-04-02 04:00:00,2,0,0,1,9.84,12.12,70,11.0014,0,5,5 +2011-04-02 05:00:00,2,0,0,2,9.84,12.12,75,11.0014,1,4,5 +2011-04-02 06:00:00,2,0,0,1,10.66,13.635,70,7.0015,5,7,12 +2011-04-02 07:00:00,2,0,0,2,10.66,13.635,70,7.0015,2,16,18 +2011-04-02 08:00:00,2,0,0,1,12.3,15.91,70,7.0015,10,45,55 +2011-04-02 09:00:00,2,0,0,2,13.94,17.425,66,7.0015,22,65,87 +2011-04-02 10:00:00,2,0,0,2,14.76,17.425,57,11.0014,41,113,154 +2011-04-02 11:00:00,2,0,0,2,16.4,20.455,47,11.0014,72,126,198 +2011-04-02 12:00:00,2,0,0,3,13.12,16.665,81,8.9981,84,100,184 +2011-04-02 13:00:00,2,0,0,1,13.94,16.665,81,8.9981,56,81,137 +2011-04-02 14:00:00,2,0,0,3,13.12,15.15,76,22.0028,97,93,190 +2011-04-02 15:00:00,2,0,0,3,13.94,15.15,76,26.0027,72,64,136 +2011-04-02 16:00:00,2,0,0,1,15.58,19.695,62,22.0028,111,85,196 +2011-04-02 17:00:00,2,0,0,1,15.58,19.695,54,23.9994,89,95,184 +2011-04-02 18:00:00,2,0,0,1,15.58,19.695,54,12.998,69,110,179 +2011-04-02 19:00:00,2,0,0,1,14.76,16.665,53,23.9994,71,77,148 +2011-04-02 20:00:00,2,0,0,1,13.94,15.91,53,19.0012,29,56,85 +2011-04-02 21:00:00,2,0,0,1,13.12,15.15,61,16.9979,24,53,77 +2011-04-02 22:00:00,2,0,0,1,13.12,15.15,61,19.9995,14,41,55 +2011-04-02 23:00:00,2,0,0,1,13.12,15.91,61,11.0014,20,33,53 +2011-04-03 00:00:00,2,0,0,1,12.3,14.395,65,12.998,8,31,39 +2011-04-03 01:00:00,2,0,0,1,12.3,15.91,61,7.0015,8,26,34 +2011-04-03 02:00:00,2,0,0,1,10.66,13.635,70,8.9981,5,19,24 +2011-04-03 03:00:00,2,0,0,1,12.3,16.665,61,0,3,8,11 +2011-04-03 04:00:00,2,0,0,1,11.48,15.15,70,6.0032,3,0,3 +2011-04-03 05:00:00,2,0,0,1,11.48,13.635,65,15.0013,1,4,5 +2011-04-03 06:00:00,2,0,0,1,11.48,13.635,65,12.998,10,23,33 +2011-04-03 07:00:00,2,0,0,1,13.12,15.15,57,15.0013,13,20,33 +2011-04-03 08:00:00,2,0,0,1,13.94,16.665,57,11.0014,18,44,62 +2011-04-03 09:00:00,2,0,0,1,14.76,15.91,50,32.9975,68,74,142 +2011-04-03 10:00:00,2,0,0,1,16.4,20.455,43,27.9993,111,104,215 +2011-04-03 11:00:00,2,0,0,1,17.22,21.21,41,16.9979,139,104,243 +2011-04-03 12:00:00,2,0,0,1,18.04,21.97,38,19.0012,166,147,313 +2011-04-03 13:00:00,2,0,0,1,18.04,21.97,33,19.9995,219,148,367 +2011-04-03 14:00:00,2,0,0,1,18.86,22.725,31,8.9981,240,109,349 +2011-04-03 15:00:00,2,0,0,2,18.86,22.725,33,0,174,118,292 +2011-04-03 16:00:00,2,0,0,2,18.86,22.725,31,12.998,147,156,303 +2011-04-03 17:00:00,2,0,0,2,18.86,22.725,28,8.9981,148,126,274 +2011-04-03 18:00:00,2,0,0,2,18.86,22.725,31,0,71,101,172 +2011-04-03 19:00:00,2,0,0,2,17.22,21.21,44,12.998,51,93,144 +2011-04-03 20:00:00,2,0,0,3,17.22,21.21,41,15.0013,24,55,79 +2011-04-03 21:00:00,2,0,0,2,17.22,21.21,44,15.0013,8,37,45 +2011-04-03 22:00:00,2,0,0,1,16.4,20.455,43,7.0015,7,29,36 +2011-04-03 23:00:00,2,0,0,1,16.4,20.455,50,6.0032,9,22,31 +2011-04-04 00:00:00,2,0,1,1,16.4,20.455,50,15.0013,1,5,6 +2011-04-04 01:00:00,2,0,1,1,16.4,20.455,56,23.9994,7,4,11 +2011-04-04 02:00:00,2,0,1,1,15.58,19.695,66,16.9979,1,1,2 +2011-04-04 03:00:00,2,0,1,1,15.58,19.695,66,19.0012,1,0,1 +2011-04-04 04:00:00,2,0,1,1,15.58,19.695,71,19.9995,1,1,2 +2011-04-04 05:00:00,2,0,1,1,16.4,20.455,62,16.9979,0,7,7 +2011-04-04 06:00:00,2,0,1,1,17.22,21.21,58,19.0012,3,43,46 +2011-04-04 07:00:00,2,0,1,2,18.04,21.97,54,16.9979,7,150,157 +2011-04-04 08:00:00,2,0,1,2,18.86,22.725,55,19.9995,31,308,339 +2011-04-04 09:00:00,2,0,1,2,20.5,24.24,51,26.0027,24,134,158 +2011-04-04 10:00:00,2,0,1,2,22.14,25.76,45,23.9994,35,55,90 +2011-04-04 11:00:00,2,0,1,1,24.6,31.06,40,26.0027,58,66,124 +2011-04-04 12:00:00,2,0,1,1,26.24,31.06,36,31.0009,59,98,157 +2011-04-04 13:00:00,2,0,1,1,27.88,31.82,34,22.0028,47,92,139 +2011-04-04 14:00:00,2,0,1,2,30.34,32.575,27,32.9975,47,76,123 +2011-04-04 15:00:00,2,0,1,1,31.16,33.335,23,36.9974,47,96,143 +2011-04-04 16:00:00,2,0,1,1,31.16,32.575,22,35.0008,59,130,189 +2011-04-04 17:00:00,2,0,1,1,30.34,32.575,23,40.9973,83,283,366 +2011-04-04 18:00:00,2,0,1,2,29.52,31.82,23,32.9975,78,308,386 +2011-04-04 19:00:00,2,0,1,1,28.7,31.82,24,31.0009,51,227,278 +2011-04-04 20:00:00,2,0,1,2,28.7,31.82,24,36.9974,40,133,173 +2011-04-04 21:00:00,2,0,1,2,28.7,31.82,30,30.0026,19,76,95 +2011-04-04 22:00:00,2,0,1,2,27.88,31.82,36,31.0009,17,58,75 +2011-04-04 23:00:00,2,0,1,2,26.24,31.06,47,15.0013,18,30,48 +2011-04-05 00:00:00,2,0,1,1,25.42,31.06,50,7.0015,10,12,22 +2011-04-05 01:00:00,2,0,1,3,25.42,31.06,57,27.9993,10,5,15 +2011-04-05 02:00:00,2,0,1,2,22.14,25.76,73,22.0028,0,5,5 +2011-04-05 03:00:00,2,0,1,2,22.14,25.76,73,22.0028,1,3,4 +2011-04-05 04:00:00,2,0,1,3,20.5,24.24,88,32.9975,0,2,2 +2011-04-05 05:00:00,2,0,1,3,18.86,22.725,94,19.9995,0,5,5 +2011-04-05 06:00:00,2,0,1,2,19.68,23.485,88,22.0028,2,36,38 +2011-04-05 07:00:00,2,0,1,2,19.68,23.485,88,22.0028,10,124,134 +2011-04-05 08:00:00,2,0,1,3,15.58,19.695,87,39.0007,9,148,157 +2011-04-05 09:00:00,2,0,1,3,14.76,15.91,87,32.9975,2,44,46 +2011-04-05 10:00:00,2,0,1,3,13.94,15.15,81,26.0027,3,25,28 +2011-04-05 11:00:00,2,0,1,3,13.12,14.395,81,30.0026,1,18,19 +2011-04-05 12:00:00,2,0,1,2,13.94,15.15,71,26.0027,6,32,38 +2011-04-05 13:00:00,2,0,1,2,14.76,16.665,63,27.9993,5,51,56 +2011-04-05 14:00:00,2,0,1,2,14.76,15.91,57,32.9975,9,67,76 +2011-04-05 15:00:00,2,0,1,1,16.4,20.455,46,31.0009,6,62,68 +2011-04-05 16:00:00,2,0,1,1,15.58,19.695,46,27.9993,17,113,130 +2011-04-05 17:00:00,2,0,1,1,17.22,21.21,38,27.9993,27,246,273 +2011-04-05 18:00:00,2,0,1,1,15.58,19.695,40,32.9975,19,248,267 +2011-04-05 19:00:00,2,0,1,1,14.76,16.665,43,19.9995,12,148,160 +2011-04-05 20:00:00,2,0,1,1,13.94,15.91,46,19.0012,4,87,91 +2011-04-05 21:00:00,2,0,1,1,13.94,14.395,46,35.0008,8,81,89 +2011-04-05 22:00:00,2,0,1,1,13.12,15.15,49,19.9995,3,43,46 +2011-04-05 23:00:00,2,0,1,1,12.3,14.395,49,19.0012,3,23,26 +2011-04-06 00:00:00,2,0,1,1,12.3,15.91,49,7.0015,0,15,15 +2011-04-06 01:00:00,2,0,1,1,10.66,13.635,60,8.9981,0,2,2 +2011-04-06 02:00:00,2,0,1,1,9.84,12.12,70,8.9981,0,5,5 +2011-04-06 03:00:00,2,0,1,1,10.66,13.635,60,8.9981,0,4,4 +2011-04-06 04:00:00,2,0,1,1,9.84,12.12,65,8.9981,0,1,1 +2011-04-06 05:00:00,2,0,1,1,9.84,12.88,70,7.0015,1,12,13 +2011-04-06 06:00:00,2,0,1,1,9.84,12.88,70,7.0015,4,52,56 +2011-04-06 07:00:00,2,0,1,1,10.66,13.635,65,7.0015,3,130,133 +2011-04-06 08:00:00,2,0,1,1,13.12,15.15,61,15.0013,17,308,325 +2011-04-06 09:00:00,2,0,1,1,14.76,16.665,46,16.9979,8,157,165 +2011-04-06 10:00:00,2,0,1,1,16.4,20.455,37,26.0027,21,48,69 +2011-04-06 11:00:00,2,0,1,1,17.22,21.21,38,26.0027,23,70,93 +2011-04-06 12:00:00,2,0,1,1,18.04,21.97,41,16.9979,22,112,134 +2011-04-06 13:00:00,2,0,1,1,18.86,22.725,38,32.9975,29,83,112 +2011-04-06 14:00:00,2,0,1,1,20.5,24.24,34,27.9993,35,80,115 +2011-04-06 15:00:00,2,0,1,1,21.32,25,32,22.0028,34,83,117 +2011-04-06 16:00:00,2,0,1,1,22.14,25.76,28,27.9993,27,142,169 +2011-04-06 17:00:00,2,0,1,1,21.32,25,32,30.0026,53,303,356 +2011-04-06 18:00:00,2,0,1,1,21.32,25,29,23.9994,43,282,325 +2011-04-06 19:00:00,2,0,1,1,20.5,24.24,31,19.9995,36,196,232 +2011-04-06 20:00:00,2,0,1,1,18.86,22.725,51,15.0013,15,126,141 +2011-04-06 21:00:00,2,0,1,1,18.86,22.725,41,19.0012,18,84,102 +2011-04-06 22:00:00,2,0,1,1,18.86,22.725,41,19.0012,13,71,84 +2011-04-06 23:00:00,2,0,1,1,18.86,22.725,41,19.9995,11,29,40 +2011-04-07 00:00:00,2,0,1,1,18.86,22.725,41,19.0012,5,15,20 +2011-04-07 01:00:00,2,0,1,1,17.22,21.21,47,8.9981,2,11,13 +2011-04-07 02:00:00,2,0,1,1,17.22,21.21,54,0,0,7,7 +2011-04-07 03:00:00,2,0,1,1,14.76,17.425,66,12.998,0,3,3 +2011-04-07 04:00:00,2,0,1,1,13.94,16.665,76,12.998,0,1,1 +2011-04-07 05:00:00,2,0,1,1,13.94,15.91,76,15.0013,0,6,6 +2011-04-07 06:00:00,2,0,1,1,13.12,15.15,81,16.9979,5,59,64 +2011-04-07 07:00:00,2,0,1,2,13.94,16.665,76,11.0014,8,152,160 +2011-04-07 08:00:00,2,0,1,1,14.76,17.425,76,12.998,23,291,314 +2011-04-07 09:00:00,2,0,1,2,16.4,20.455,66,8.9981,15,155,170 +2011-04-07 10:00:00,2,0,1,2,17.22,21.21,67,7.0015,29,66,95 +2011-04-07 11:00:00,2,0,1,2,18.86,22.725,55,0,36,86,122 +2011-04-07 12:00:00,2,0,1,2,18.86,22.725,55,0,39,114,153 +2011-04-07 13:00:00,2,0,1,2,21.32,25,48,6.0032,36,99,135 +2011-04-07 14:00:00,2,0,1,1,22.96,26.515,43,6.0032,46,111,157 +2011-04-07 15:00:00,2,0,1,1,24.6,31.06,38,7.0015,27,133,160 +2011-04-07 16:00:00,2,0,1,1,24.6,31.06,35,0,52,161,213 +2011-04-07 17:00:00,2,0,1,1,21.32,25,52,19.0012,63,280,343 +2011-04-07 18:00:00,2,0,1,1,19.68,23.485,55,16.9979,68,265,333 +2011-04-07 19:00:00,2,0,1,1,18.86,22.725,59,19.9995,34,192,226 +2011-04-07 20:00:00,2,0,1,1,18.04,21.97,62,11.0014,37,166,203 +2011-04-07 21:00:00,2,0,1,2,18.04,21.97,67,19.0012,19,89,108 +2011-04-07 22:00:00,2,0,1,2,16.4,20.455,76,12.998,18,63,81 +2011-04-07 23:00:00,2,0,1,1,15.58,19.695,76,16.9979,9,45,54 +2011-04-08 00:00:00,2,0,1,2,14.76,17.425,76,15.0013,4,21,25 +2011-04-08 01:00:00,2,0,1,2,13.94,16.665,76,8.9981,3,6,9 +2011-04-08 02:00:00,2,0,1,3,13.94,16.665,76,11.0014,3,10,13 +2011-04-08 03:00:00,2,0,1,3,13.94,16.665,76,11.0014,0,1,1 +2011-04-08 04:00:00,2,0,1,2,13.94,16.665,86,8.9981,0,1,1 +2011-04-08 05:00:00,2,0,1,2,13.12,15.91,87,12.998,1,8,9 +2011-04-08 06:00:00,2,0,1,2,13.94,18.18,87,0,2,33,35 +2011-04-08 07:00:00,2,0,1,3,13.94,16.665,87,11.0014,4,109,113 +2011-04-08 08:00:00,2,0,1,3,13.94,16.665,87,11.0014,13,208,221 +2011-04-08 09:00:00,2,0,1,2,14.76,17.425,76,12.998,17,168,185 +2011-04-08 10:00:00,2,0,1,2,14.76,16.665,71,19.0012,10,63,73 +2011-04-08 11:00:00,2,0,1,2,16.4,20.455,62,26.0027,19,79,98 +2011-04-08 12:00:00,2,0,1,3,15.58,19.695,66,15.0013,29,51,80 +2011-04-08 13:00:00,2,0,1,3,14.76,16.665,76,19.0012,7,35,42 +2011-04-08 14:00:00,2,0,1,3,13.94,15.91,87,15.0013,2,13,15 +2011-04-08 15:00:00,2,0,1,3,13.94,15.91,87,15.0013,1,24,25 +2011-04-08 16:00:00,2,0,1,2,13.12,15.15,93,16.9979,2,58,60 +2011-04-08 17:00:00,2,0,1,3,13.12,15.15,93,16.9979,10,138,148 +2011-04-08 18:00:00,2,0,1,3,13.12,15.15,93,16.9979,8,54,62 +2011-04-08 19:00:00,2,0,1,3,12.3,13.635,93,27.9993,1,52,53 +2011-04-08 20:00:00,2,0,1,2,12.3,13.635,93,22.0028,12,51,63 +2011-04-08 21:00:00,2,0,1,2,12.3,14.395,93,16.9979,11,43,54 +2011-04-08 22:00:00,2,0,1,2,12.3,13.635,93,19.9995,9,42,51 +2011-04-08 23:00:00,2,0,1,2,12.3,14.395,93,15.0013,4,31,35 +2011-04-09 00:00:00,2,0,0,2,12.3,14.395,87,15.0013,5,26,31 +2011-04-09 01:00:00,2,0,0,2,12.3,15.15,87,8.9981,3,17,20 +2011-04-09 02:00:00,2,0,0,2,13.12,15.15,87,15.0013,2,15,17 +2011-04-09 03:00:00,2,0,0,3,12.3,14.395,100,16.9979,3,11,14 +2011-04-09 04:00:00,2,0,0,3,12.3,13.635,100,16.9979,0,3,3 +2011-04-09 05:00:00,2,0,0,2,12.3,14.395,93,15.0013,0,5,5 +2011-04-09 06:00:00,2,0,0,2,12.3,14.395,93,12.998,0,13,13 +2011-04-09 07:00:00,2,0,0,2,12.3,15.15,93,11.0014,8,13,21 +2011-04-09 08:00:00,2,0,0,2,13.12,15.15,93,11.0014,7,47,54 +2011-04-09 09:00:00,2,0,0,2,13.94,17.425,87,7.0015,27,71,98 +2011-04-09 10:00:00,2,0,0,2,13.94,16.665,87,8.9981,43,90,133 +2011-04-09 11:00:00,2,0,0,2,14.76,18.18,81,0,51,91,142 +2011-04-09 12:00:00,2,0,0,2,14.76,17.425,81,8.9981,79,123,202 +2011-04-09 13:00:00,2,0,0,2,14.76,18.94,81,0,114,108,222 +2011-04-09 14:00:00,2,0,0,2,14.76,17.425,81,8.9981,94,118,212 +2011-04-09 15:00:00,2,0,0,2,14.76,18.94,87,0,85,116,201 +2011-04-09 16:00:00,2,0,0,2,15.58,19.695,82,0,73,118,191 +2011-04-09 17:00:00,2,0,0,2,15.58,19.695,82,6.0032,128,129,257 +2011-04-09 18:00:00,2,0,0,2,15.58,19.695,82,7.0015,48,129,177 +2011-04-09 19:00:00,2,0,0,2,15.58,19.695,82,8.9981,47,83,130 +2011-04-09 20:00:00,2,0,0,2,15.58,19.695,87,11.0014,19,74,93 +2011-04-09 21:00:00,2,0,0,2,14.76,17.425,93,8.9981,10,65,75 +2011-04-09 22:00:00,2,0,0,2,14.76,17.425,93,8.9981,21,66,87 +2011-04-09 23:00:00,2,0,0,2,15.58,19.695,87,6.0032,12,45,57 +2011-04-10 00:00:00,2,0,0,2,15.58,19.695,87,6.0032,5,48,53 +2011-04-10 01:00:00,2,0,0,2,15.58,19.695,87,8.9981,6,31,37 +2011-04-10 02:00:00,2,0,0,2,15.58,19.695,87,6.0032,12,24,36 +2011-04-10 03:00:00,2,0,0,2,15.58,19.695,87,8.9981,5,11,16 +2011-04-10 04:00:00,2,0,0,2,14.76,18.18,93,7.0015,3,2,5 +2011-04-10 05:00:00,2,0,0,2,14.76,18.18,93,6.0032,0,4,4 +2011-04-10 06:00:00,2,0,0,2,14.76,18.18,93,6.0032,0,4,4 +2011-04-10 07:00:00,2,0,0,2,14.76,18.18,100,6.0032,3,7,10 +2011-04-10 08:00:00,2,0,0,2,15.58,19.695,94,6.0032,17,38,55 +2011-04-10 09:00:00,2,0,0,2,15.58,19.695,94,8.9981,31,50,81 +2011-04-10 10:00:00,2,0,0,2,16.4,20.455,87,0,69,81,150 +2011-04-10 11:00:00,2,0,0,2,16.4,20.455,87,8.9981,93,109,202 +2011-04-10 12:00:00,2,0,0,2,17.22,21.21,88,8.9981,94,136,230 +2011-04-10 13:00:00,2,0,0,1,18.86,22.725,82,7.0015,121,142,263 +2011-04-10 14:00:00,2,0,0,1,20.5,24.24,72,12.998,148,133,281 +2011-04-10 15:00:00,2,0,0,1,20.5,24.24,77,15.0013,156,141,297 +2011-04-10 16:00:00,2,0,0,2,21.32,25,72,11.0014,135,153,288 +2011-04-10 17:00:00,2,0,0,2,21.32,25,72,12.998,84,152,236 +2011-04-10 18:00:00,2,0,0,1,20.5,24.24,77,12.998,103,137,240 +2011-04-10 19:00:00,2,0,0,1,20.5,24.24,77,12.998,47,84,131 +2011-04-10 20:00:00,2,0,0,1,18.86,22.725,82,8.9981,21,71,92 +2011-04-10 21:00:00,2,0,0,1,18.04,21.97,88,12.998,18,77,95 +2011-04-10 22:00:00,2,0,0,1,18.04,21.97,94,16.9979,12,45,57 +2011-04-10 23:00:00,2,0,0,1,18.86,22.725,88,23.9994,5,27,32 +2011-04-11 00:00:00,2,0,1,1,19.68,23.485,88,22.0028,7,16,23 +2011-04-11 01:00:00,2,0,1,1,18.86,22.725,94,19.0012,1,3,4 +2011-04-11 02:00:00,2,0,1,1,18.86,22.725,94,19.0012,7,2,9 +2011-04-11 04:00:00,2,0,1,1,18.86,22.725,94,12.998,0,1,1 +2011-04-11 05:00:00,2,0,1,1,18.86,22.725,94,12.998,1,12,13 +2011-04-11 06:00:00,2,0,1,2,18.86,22.725,100,15.0013,2,59,61 +2011-04-11 07:00:00,2,0,1,2,20.5,24.24,88,15.0013,12,164,176 +2011-04-11 08:00:00,2,0,1,2,21.32,25,88,19.0012,28,286,314 +2011-04-11 09:00:00,2,0,1,2,22.96,26.515,83,19.0012,33,132,165 +2011-04-11 10:00:00,2,0,1,2,22.96,26.515,83,19.9995,41,55,96 +2011-04-11 11:00:00,2,0,1,2,24.6,29.545,73,19.9995,45,59,104 +2011-04-11 12:00:00,2,0,1,2,24.6,29.545,73,22.0028,37,97,134 +2011-04-11 13:00:00,2,0,1,2,26.24,30.305,69,27.9993,62,77,139 +2011-04-11 14:00:00,2,0,1,2,29.52,33.335,54,23.9994,60,85,145 +2011-04-11 15:00:00,2,0,1,1,30.34,33.335,48,35.0008,56,85,141 +2011-04-11 16:00:00,2,0,1,1,30.34,33.335,48,35.0008,73,162,235 +2011-04-11 17:00:00,2,0,1,1,30.34,33.335,48,35.0008,100,352,452 +2011-04-11 18:00:00,2,0,1,1,29.52,33.335,51,26.0027,93,290,383 +2011-04-11 19:00:00,2,0,1,1,29.52,33.335,51,30.0026,73,211,284 +2011-04-11 20:00:00,2,0,1,1,27.88,31.82,57,35.0008,44,122,166 +2011-04-11 21:00:00,2,0,1,1,27.06,31.06,61,16.9979,39,119,158 +2011-04-11 22:00:00,2,0,1,2,26.24,31.06,50,19.0012,25,66,91 +2011-04-11 23:00:00,2,0,1,3,23.78,27.275,60,0,16,38,54 +2011-04-12 00:00:00,2,0,1,2,25.42,31.06,50,7.0015,11,13,24 +2011-04-12 01:00:00,2,0,1,2,25.42,31.06,50,6.0032,6,7,13 +2011-04-12 02:00:00,2,0,1,2,24.6,31.06,53,8.9981,7,7,14 +2011-04-12 03:00:00,2,0,1,2,23.78,27.275,56,8.9981,0,1,1 +2011-04-12 04:00:00,2,0,1,2,22.96,26.515,64,8.9981,4,2,6 +2011-04-12 05:00:00,2,0,1,2,22.14,25.76,68,8.9981,1,15,16 +2011-04-12 06:00:00,2,0,1,2,22.14,25.76,68,19.0012,3,55,58 +2011-04-12 07:00:00,2,0,1,2,22.14,25.76,68,15.0013,12,177,189 +2011-04-12 08:00:00,2,0,1,3,19.68,23.485,88,26.0027,15,211,226 +2011-04-12 09:00:00,2,0,1,3,18.86,22.725,94,32.9975,4,50,54 +2011-04-12 10:00:00,2,0,1,3,20.5,24.24,82,27.9993,6,34,40 +2011-04-12 11:00:00,2,0,1,1,21.32,25,77,23.9994,11,38,49 +2011-04-12 12:00:00,2,0,1,2,22.96,26.515,64,31.0009,9,83,92 +2011-04-12 13:00:00,2,0,1,3,22.14,25.76,68,19.0012,22,84,106 +2011-04-12 14:00:00,2,0,1,2,20.5,24.24,82,19.0012,16,28,44 +2011-04-12 15:00:00,2,0,1,2,19.68,23.485,77,35.0008,24,54,78 +2011-04-12 16:00:00,2,0,1,2,19.68,23.485,77,26.0027,19,80,99 +2011-04-12 17:00:00,2,0,1,3,18.04,21.97,77,15.0013,29,262,291 +2011-04-12 18:00:00,2,0,1,3,18.04,21.97,77,15.0013,21,203,224 +2011-04-12 19:00:00,2,0,1,2,17.22,21.21,82,19.0012,3,127,130 +2011-04-12 20:00:00,2,0,1,2,17.22,21.21,82,19.0012,9,94,103 +2011-04-12 21:00:00,2,0,1,2,17.22,21.21,82,12.998,10,74,84 +2011-04-12 22:00:00,2,0,1,2,16.4,20.455,94,19.9995,7,47,54 +2011-04-12 23:00:00,2,0,1,2,16.4,20.455,94,16.9979,8,31,39 +2011-04-13 00:00:00,2,0,1,2,16.4,20.455,100,19.9995,3,12,15 +2011-04-13 01:00:00,2,0,1,2,16.4,20.455,100,19.9995,0,1,1 +2011-04-13 02:00:00,2,0,1,3,16.4,20.455,100,19.9995,0,2,2 +2011-04-13 03:00:00,2,0,1,3,16.4,20.455,94,22.0028,0,2,2 +2011-04-13 04:00:00,2,0,1,3,16.4,20.455,94,22.0028,1,2,3 +2011-04-13 05:00:00,2,0,1,3,15.58,19.695,94,16.9979,1,4,5 +2011-04-13 06:00:00,2,0,1,3,15.58,19.695,94,15.0013,1,33,34 +2011-04-13 07:00:00,2,0,1,3,14.76,17.425,100,15.0013,3,67,70 +2011-04-13 08:00:00,2,0,1,3,15.58,19.695,94,12.998,6,158,164 +2011-04-13 09:00:00,2,0,1,2,15.58,19.695,94,15.0013,2,63,65 +2011-04-13 10:00:00,2,0,1,2,16.4,20.455,87,12.998,4,42,46 +2011-04-13 11:00:00,2,0,1,2,17.22,21.21,82,12.998,4,57,61 +2011-04-13 12:00:00,2,0,1,3,17.22,21.21,82,16.9979,12,83,95 +2011-04-13 13:00:00,2,0,1,2,18.04,21.97,77,12.998,6,55,61 +2011-04-13 14:00:00,2,0,1,2,17.22,21.21,77,16.9979,24,82,106 +2011-04-13 15:00:00,2,0,1,2,18.04,21.97,72,19.0012,12,69,81 +2011-04-13 16:00:00,2,0,1,1,18.86,22.725,67,19.0012,23,119,142 +2011-04-13 17:00:00,2,0,1,1,18.86,22.725,67,19.9995,25,284,309 +2011-04-13 18:00:00,2,0,1,1,18.04,21.97,62,26.0027,28,293,321 +2011-04-13 19:00:00,2,0,1,1,18.04,21.97,62,16.9979,15,160,175 +2011-04-13 20:00:00,2,0,1,1,18.04,21.97,62,16.9979,7,119,126 +2011-04-13 21:00:00,2,0,1,1,17.22,21.21,67,11.0014,17,100,117 +2011-04-13 22:00:00,2,0,1,1,17.22,21.21,67,12.998,10,89,99 +2011-04-13 23:00:00,2,0,1,1,16.4,20.455,71,8.9981,5,57,62 +2011-04-14 00:00:00,2,0,1,1,15.58,19.695,76,8.9981,3,18,21 +2011-04-14 01:00:00,2,0,1,1,15.58,19.695,76,15.0013,1,9,10 +2011-04-14 02:00:00,2,0,1,1,14.76,17.425,76,8.9981,0,3,3 +2011-04-14 03:00:00,2,0,1,1,13.94,16.665,81,8.9981,0,2,2 +2011-04-14 04:00:00,2,0,1,1,13.94,18.18,76,0,1,8,9 +2011-04-14 05:00:00,2,0,1,1,13.94,17.425,76,6.0032,2,12,14 +2011-04-14 06:00:00,2,0,1,1,13.94,17.425,76,7.0015,4,66,70 +2011-04-14 07:00:00,2,0,1,1,15.58,19.695,66,0,11,182,193 +2011-04-14 08:00:00,2,0,1,1,17.22,21.21,58,11.0014,21,316,337 +2011-04-14 09:00:00,2,0,1,1,18.86,22.725,51,8.9981,18,152,170 +2011-04-14 10:00:00,2,0,1,1,20.5,24.24,51,12.998,21,68,89 +2011-04-14 11:00:00,2,0,1,1,21.32,25,45,11.0014,28,87,115 +2011-04-14 12:00:00,2,0,1,1,22.14,25.76,42,8.9981,35,110,145 +2011-04-14 13:00:00,2,0,1,1,22.96,26.515,37,15.0013,38,121,159 +2011-04-14 14:00:00,2,0,1,1,22.96,26.515,35,6.0032,36,101,137 +2011-04-14 15:00:00,2,0,1,1,24.6,31.06,31,6.0032,57,85,142 +2011-04-14 16:00:00,2,0,1,1,24.6,30.305,26,7.0015,49,153,202 +2011-04-14 17:00:00,2,0,1,1,24.6,30.305,28,0,50,338,388 +2011-04-14 18:00:00,2,0,1,1,22.96,26.515,30,0,47,290,337 +2011-04-14 19:00:00,2,0,1,1,22.14,25.76,32,0,37,222,259 +2011-04-14 20:00:00,2,0,1,1,20.5,24.24,51,12.998,22,147,169 +2011-04-14 21:00:00,2,0,1,1,18.86,22.725,63,8.9981,19,126,145 +2011-04-14 22:00:00,2,0,1,1,19.68,23.485,55,7.0015,22,82,104 +2011-04-14 23:00:00,2,0,1,1,18.86,22.725,59,7.0015,7,40,47 +2011-04-15 00:00:00,2,1,0,1,18.04,21.97,67,0,6,21,27 +2011-04-15 01:00:00,2,1,0,1,18.04,21.97,62,0,6,9,15 +2011-04-15 02:00:00,2,1,0,1,16.4,20.455,76,0,8,10,18 +2011-04-15 03:00:00,2,1,0,1,16.4,20.455,76,0,0,3,3 +2011-04-15 04:00:00,2,1,0,1,15.58,19.695,82,6.0032,0,3,3 +2011-04-15 05:00:00,2,1,0,1,14.76,18.18,81,7.0015,2,11,13 +2011-04-15 06:00:00,2,1,0,1,14.76,18.18,81,6.0032,5,42,47 +2011-04-15 07:00:00,2,1,0,1,16.4,20.455,71,11.0014,10,139,149 +2011-04-15 08:00:00,2,1,0,1,18.04,21.97,62,19.9995,21,279,300 +2011-04-15 09:00:00,2,1,0,1,20.5,24.24,55,12.998,16,162,178 +2011-04-15 10:00:00,2,1,0,1,20.5,24.24,55,12.998,31,91,122 +2011-04-15 11:00:00,2,1,0,1,21.32,25,55,12.998,41,95,136 +2011-04-15 12:00:00,2,1,0,1,21.32,25,55,19.0012,45,155,200 +2011-04-15 13:00:00,2,1,0,1,22.14,25.76,52,16.9979,47,133,180 +2011-04-15 14:00:00,2,1,0,1,22.14,25.76,52,16.9979,57,106,163 +2011-04-15 15:00:00,2,1,0,1,22.14,25.76,52,30.0026,50,112,162 +2011-04-15 16:00:00,2,1,0,1,21.32,25,55,32.9975,70,173,243 +2011-04-15 17:00:00,2,1,0,2,20.5,24.24,63,26.0027,64,267,331 +2011-04-15 18:00:00,2,1,0,2,18.86,22.725,67,26.0027,47,216,263 +2011-04-15 19:00:00,2,1,0,1,17.22,21.21,77,26.0027,41,168,209 +2011-04-15 20:00:00,2,1,0,2,16.4,20.455,76,22.0028,26,92,118 +2011-04-15 21:00:00,2,1,0,2,16.4,20.455,76,19.9995,25,77,102 +2011-04-15 22:00:00,2,1,0,2,15.58,19.695,82,26.0027,16,64,80 +2011-04-15 23:00:00,2,1,0,2,14.76,17.425,81,12.998,8,56,64 +2011-04-16 00:00:00,2,0,0,2,14.76,17.425,81,15.0013,7,36,43 +2011-04-16 01:00:00,2,0,0,2,14.76,16.665,87,19.0012,5,28,33 +2011-04-16 02:00:00,2,0,0,2,14.76,17.425,87,8.9981,5,19,24 +2011-04-16 03:00:00,2,0,0,2,14.76,17.425,87,11.0014,5,9,14 +2011-04-16 04:00:00,2,0,0,2,14.76,17.425,87,15.0013,1,4,5 +2011-04-16 05:00:00,2,0,0,2,15.58,19.695,87,19.0012,1,3,4 +2011-04-16 06:00:00,2,0,0,3,16.4,20.455,82,22.0028,1,9,10 +2011-04-16 07:00:00,2,0,0,2,16.4,20.455,82,27.9993,3,18,21 +2011-04-16 08:00:00,2,0,0,3,16.4,20.455,87,23.9994,7,38,45 +2011-04-16 09:00:00,2,0,0,3,16.4,20.455,100,19.9995,2,27,29 +2011-04-16 10:00:00,2,0,0,3,17.22,21.21,94,26.0027,1,21,22 +2011-04-16 11:00:00,2,0,0,3,17.22,21.21,94,30.0026,4,27,31 +2011-04-16 12:00:00,2,0,0,2,18.86,22.725,88,39.0007,6,26,32 +2011-04-16 13:00:00,2,0,0,3,18.86,22.725,94,35.0008,9,49,58 +2011-04-16 14:00:00,2,0,0,3,21.32,25,83,39.0007,14,49,63 +2011-04-16 15:00:00,2,0,0,3,21.32,25,83,39.0007,16,62,78 +2011-04-16 16:00:00,2,0,0,3,20.5,24.24,88,31.0009,6,27,33 +2011-04-16 17:00:00,2,0,0,3,20.5,24.24,88,39.0007,1,14,15 +2011-04-16 18:00:00,2,0,0,2,20.5,24.24,94,26.0027,6,32,38 +2011-04-16 19:00:00,2,0,0,2,21.32,25,94,27.9993,9,62,71 +2011-04-16 20:00:00,2,0,0,3,18.04,21.97,94,15.0013,4,49,53 +2011-04-16 21:00:00,2,0,0,2,18.04,21.97,94,0,1,13,14 +2011-04-16 22:00:00,2,0,0,3,17.22,21.21,100,0,2,22,24 +2011-04-16 23:00:00,2,0,0,2,18.04,21.97,77,19.0012,5,30,35 +2011-04-17 00:00:00,2,0,0,2,18.04,21.97,77,19.0012,4,29,33 +2011-04-17 01:00:00,2,0,0,1,17.22,21.21,67,15.0013,6,25,31 +2011-04-17 02:00:00,2,0,0,1,16.4,20.455,62,12.998,4,25,29 +2011-04-17 03:00:00,2,0,0,1,16.4,20.455,66,8.9981,12,13,25 +2011-04-17 04:00:00,2,0,0,1,14.76,18.18,76,7.0015,2,5,7 +2011-04-17 05:00:00,2,0,0,1,14.76,17.425,71,11.0014,2,1,3 +2011-04-17 06:00:00,2,0,0,1,14.76,15.91,66,30.0026,3,5,8 +2011-04-17 07:00:00,2,0,0,1,14.76,16.665,50,23.9994,2,14,16 +2011-04-17 08:00:00,2,0,0,1,15.58,19.695,46,26.0027,7,36,43 +2011-04-17 09:00:00,2,0,0,1,16.4,20.455,43,19.0012,31,71,102 +2011-04-17 10:00:00,2,0,0,1,17.22,21.21,44,30.0026,91,120,211 +2011-04-17 11:00:00,2,0,0,1,18.86,22.725,41,27.9993,119,185,304 +2011-04-17 12:00:00,2,0,0,1,18.86,22.725,38,26.0027,167,187,354 +2011-04-17 13:00:00,2,0,0,1,20.5,24.24,34,26.0027,181,162,343 +2011-04-17 14:00:00,2,0,0,1,21.32,25,34,26.0027,170,191,361 +2011-04-17 15:00:00,2,0,0,1,22.14,25.76,32,35.0008,179,209,388 +2011-04-17 16:00:00,2,0,0,1,22.14,25.76,30,23.9994,161,182,343 +2011-04-17 17:00:00,2,0,0,1,22.96,26.515,30,30.0026,143,163,306 +2011-04-17 18:00:00,2,0,0,1,22.96,26.515,30,26.0027,102,175,277 +2011-04-17 19:00:00,2,0,0,1,22.96,26.515,30,19.9995,75,135,210 +2011-04-17 20:00:00,2,0,0,1,21.32,25,36,12.998,44,97,141 +2011-04-17 21:00:00,2,0,0,1,20.5,24.24,42,12.998,13,70,83 +2011-04-17 22:00:00,2,0,0,1,20.5,24.24,39,7.0015,21,49,70 +2011-04-17 23:00:00,2,0,0,1,18.04,21.97,67,11.0014,19,37,56 +2011-04-18 00:00:00,2,0,1,1,18.86,22.725,47,6.0032,15,24,39 +2011-04-18 01:00:00,2,0,1,1,18.86,22.725,47,8.9981,11,8,19 +2011-04-18 02:00:00,2,0,1,1,17.22,21.21,67,7.0015,14,2,16 +2011-04-18 03:00:00,2,0,1,1,17.22,21.21,62,7.0015,6,1,7 +2011-04-18 04:00:00,2,0,1,1,16.4,20.455,87,11.0014,2,4,6 +2011-04-18 05:00:00,2,0,1,1,16.4,20.455,76,6.0032,0,16,16 +2011-04-18 06:00:00,2,0,1,1,16.4,20.455,82,0,3,51,54 +2011-04-18 07:00:00,2,0,1,1,18.86,22.725,63,0,12,156,168 +2011-04-18 08:00:00,2,0,1,1,18.86,22.725,63,0,20,277,297 +2011-04-18 09:00:00,2,0,1,2,20.5,24.24,55,7.0015,37,132,169 +2011-04-18 10:00:00,2,0,1,2,21.32,25,55,7.0015,41,68,109 +2011-04-18 11:00:00,2,0,1,2,22.14,25.76,52,6.0032,36,87,123 +2011-04-18 12:00:00,2,0,1,2,22.96,26.515,49,6.0032,60,124,184 +2011-04-18 13:00:00,2,0,1,2,22.96,26.515,49,11.0014,41,128,169 +2011-04-18 14:00:00,2,0,1,2,23.78,27.275,49,12.998,49,95,144 +2011-04-18 15:00:00,2,0,1,2,24.6,31.06,43,12.998,64,112,176 +2011-04-18 16:00:00,2,0,1,1,24.6,31.06,46,19.0012,40,165,205 +2011-04-18 17:00:00,2,0,1,1,23.78,27.275,49,19.0012,66,362,428 +2011-04-18 18:00:00,2,0,1,1,26.24,31.06,31,23.9994,41,321,362 +2011-04-18 19:00:00,2,0,1,1,22.96,26.515,46,16.9979,42,244,286 +2011-04-18 20:00:00,2,0,1,1,24.6,31.06,33,19.9995,29,136,165 +2011-04-18 21:00:00,2,0,1,1,22.96,26.515,37,19.0012,20,131,151 +2011-04-18 22:00:00,2,0,1,1,21.32,25,55,19.0012,9,81,90 +2011-04-18 23:00:00,2,0,1,1,20.5,24.24,59,16.9979,11,35,46 +2011-04-19 00:00:00,2,0,1,1,20.5,24.24,55,15.0013,2,23,25 +2011-04-19 01:00:00,2,0,1,1,18.86,22.725,63,15.0013,5,2,7 +2011-04-19 02:00:00,2,0,1,1,18.86,22.725,67,19.0012,8,5,13 +2011-04-19 03:00:00,2,0,1,1,19.68,23.485,63,15.0013,0,3,3 +2011-04-19 04:00:00,2,0,1,1,18.86,22.725,67,6.0032,1,4,5 +2011-04-19 05:00:00,2,0,1,2,18.86,22.725,72,12.998,1,17,18 +2011-04-19 06:00:00,2,0,1,2,19.68,23.485,67,0,2,63,65 +2011-04-19 07:00:00,2,0,1,2,21.32,25,55,0,22,166,188 +2011-04-19 08:00:00,2,0,1,2,20.5,24.24,68,8.9981,20,331,351 +2011-04-19 09:00:00,2,0,1,3,21.32,25,63,6.0032,23,139,162 +2011-04-19 10:00:00,2,0,1,2,20.5,24.24,72,15.0013,15,60,75 +2011-04-19 11:00:00,2,0,1,2,22.14,25.76,68,11.0014,19,53,72 +2011-04-19 12:00:00,2,0,1,2,22.14,25.76,64,6.0032,19,84,103 +2011-04-19 13:00:00,2,0,1,2,22.14,25.76,68,15.0013,26,103,129 +2011-04-19 14:00:00,2,0,1,2,22.14,25.76,64,12.998,19,88,107 +2011-04-19 15:00:00,2,0,1,2,22.14,25.76,65,11.0014,44,83,127 +2011-04-19 16:00:00,2,0,1,1,22.96,26.515,52,19.9995,30,162,192 +2011-04-19 17:00:00,2,0,1,1,22.96,26.515,60,7.0015,39,372,411 +2011-04-19 18:00:00,2,0,1,2,22.14,25.76,64,8.9981,44,377,421 +2011-04-19 19:00:00,2,0,1,2,20.5,24.24,72,12.998,28,248,276 +2011-04-19 20:00:00,2,0,1,2,20.5,24.24,72,15.0013,20,148,168 +2011-04-19 21:00:00,2,0,1,2,20.5,24.24,72,8.9981,8,114,122 +2011-04-19 22:00:00,2,0,1,1,19.68,23.485,77,6.0032,3,109,112 +2011-04-19 23:00:00,2,0,1,1,18.86,22.725,88,6.0032,11,41,52 +2011-05-01 00:00:00,2,0,0,1,17.22,21.21,67,6.0032,19,77,96 +2011-05-01 01:00:00,2,0,0,1,17.22,21.21,69,7.0015,9,50,59 +2011-05-01 02:00:00,2,0,0,1,17.22,21.21,77,7.0015,7,43,50 +2011-05-01 03:00:00,2,0,0,1,16.4,20.455,82,7.0015,8,15,23 +2011-05-01 04:00:00,2,0,0,1,16.4,20.455,76,7.0015,6,11,17 +2011-05-01 05:00:00,2,0,0,1,16.4,20.455,82,6.0032,0,10,10 +2011-05-01 06:00:00,2,0,0,2,16.4,20.455,82,6.0032,4,9,13 +2011-05-01 07:00:00,2,0,0,2,17.22,21.21,77,6.0032,7,26,33 +2011-05-01 08:00:00,2,0,0,2,18.04,21.97,77,8.9981,16,43,59 +2011-05-01 09:00:00,2,0,0,2,18.86,22.725,72,8.9981,45,96,141 +2011-05-01 10:00:00,2,0,0,2,19.68,23.485,63,12.998,109,155,264 +2011-05-01 11:00:00,2,0,0,1,18.86,22.725,82,7.0015,109,141,250 +2011-05-01 12:00:00,2,0,0,2,19.68,23.485,77,7.0015,109,172,281 +2011-05-01 13:00:00,2,0,0,2,20.5,24.24,63,11.0014,123,209,332 +2011-05-01 14:00:00,2,0,0,2,20.5,24.24,68,7.0015,85,153,238 +2011-05-01 15:00:00,2,0,0,2,20.5,24.24,72,0,113,153,266 +2011-05-01 16:00:00,2,0,0,2,20.5,24.24,72,12.998,75,139,214 +2011-05-01 17:00:00,2,0,0,2,19.68,23.485,82,16.9979,60,136,196 +2011-05-01 18:00:00,2,0,0,2,18.86,22.725,82,6.0032,33,126,159 +2011-05-01 19:00:00,2,0,0,2,18.86,22.725,84,7.0015,47,131,178 +2011-05-01 20:00:00,2,0,0,2,18.86,22.725,82,0,35,86,121 +2011-05-01 21:00:00,2,0,0,2,18.86,22.725,82,0,23,82,105 +2011-05-01 22:00:00,2,0,0,2,18.86,22.725,82,0,32,68,100 +2011-05-01 23:00:00,2,0,0,1,18.86,22.725,77,12.998,64,82,146 +2011-05-02 00:00:00,2,0,1,1,18.86,22.725,72,8.9981,68,109,177 +2011-05-02 01:00:00,2,0,1,1,18.86,22.725,72,8.9981,41,73,114 +2011-05-02 02:00:00,2,0,1,2,18.04,21.97,77,15.0013,16,19,35 +2011-05-02 03:00:00,2,0,1,1,18.04,21.97,77,8.9981,9,7,16 +2011-05-02 04:00:00,2,0,1,1,18.04,21.97,77,11.0014,9,8,17 +2011-05-02 05:00:00,2,0,1,2,18.04,21.97,77,8.9981,4,16,20 +2011-05-02 06:00:00,2,0,1,1,18.04,21.97,88,7.0015,3,59,62 +2011-05-02 07:00:00,2,0,1,2,18.86,22.725,82,22.0028,16,193,209 +2011-05-02 08:00:00,2,0,1,2,19.68,23.485,77,15.0013,21,350,371 +2011-05-02 09:00:00,2,0,1,2,20.5,24.24,77,19.0012,41,131,172 +2011-05-02 10:00:00,2,0,1,2,22.14,25.76,77,15.0013,31,77,108 +2011-05-02 11:00:00,2,0,1,1,23.78,27.275,73,19.9995,34,96,130 +2011-05-02 12:00:00,2,0,1,1,25.42,30.305,69,15.0013,40,147,187 +2011-05-02 13:00:00,2,0,1,2,25.42,30.305,69,12.998,51,119,170 +2011-05-02 14:00:00,2,0,1,1,26.24,30.305,69,15.0013,48,133,181 +2011-05-02 15:00:00,2,0,1,1,27.06,31.06,61,12.998,45,110,155 +2011-05-02 16:00:00,2,0,1,1,27.06,31.06,61,15.0013,49,220,269 +2011-05-02 17:00:00,2,0,1,1,27.06,31.06,65,12.998,65,472,537 +2011-05-02 18:00:00,2,0,1,2,26.24,30.305,65,12.998,68,450,518 +2011-05-02 19:00:00,2,0,1,2,25.42,30.305,69,8.9981,46,268,314 +2011-05-02 20:00:00,2,0,1,2,25.42,30.305,69,8.9981,44,174,218 +2011-05-02 21:00:00,2,0,1,2,24.6,29.545,73,7.0015,54,178,232 +2011-05-02 22:00:00,2,0,1,2,24.6,29.545,73,0,28,97,125 +2011-05-02 23:00:00,2,0,1,2,22.96,26.515,83,12.998,16,48,64 +2011-05-03 00:00:00,2,0,1,2,22.96,26.515,83,15.0013,0,16,16 +2011-05-03 01:00:00,2,0,1,2,22.96,26.515,78,16.9979,0,14,14 +2011-05-03 02:00:00,2,0,1,2,22.96,26.515,78,16.9979,0,5,5 +2011-05-03 03:00:00,2,0,1,1,22.14,25.76,83,19.0012,0,2,2 +2011-05-03 04:00:00,2,0,1,1,21.32,25,88,15.0013,3,1,4 +2011-05-03 05:00:00,2,0,1,1,21.32,25,88,8.9981,0,14,14 +2011-05-03 06:00:00,2,0,1,2,21.32,25,94,11.0014,7,102,109 +2011-05-03 07:00:00,2,0,1,2,22.14,25.76,88,15.0013,17,248,265 +2011-05-03 08:00:00,2,0,1,2,22.96,26.515,83,19.0012,24,435,459 +2011-05-03 09:00:00,2,0,1,2,24.6,28.79,78,23.9994,29,157,186 +2011-05-03 10:00:00,2,0,1,2,26.24,30.305,69,23.9994,36,91,127 +2011-05-03 11:00:00,2,0,1,2,27.06,31.06,65,22.0028,20,120,140 +2011-05-03 12:00:00,2,0,1,2,27.88,31.82,61,32.9975,48,169,217 +2011-05-03 13:00:00,2,0,1,2,28.7,32.575,58,40.9973,50,144,194 +2011-05-03 14:00:00,2,0,1,2,28.7,32.575,58,35.0008,36,122,158 +2011-05-03 15:00:00,2,0,1,2,28.7,32.575,58,30.0026,37,117,154 +2011-05-03 16:00:00,2,0,1,1,29.52,33.335,54,31.0009,46,225,271 +2011-05-03 17:00:00,2,0,1,1,28.7,32.575,54,31.0009,53,464,517 +2011-05-03 18:00:00,2,0,1,1,28.7,32.575,48,27.9993,59,485,544 +2011-05-03 19:00:00,2,0,1,1,27.88,31.82,57,23.9994,42,323,365 +2011-05-03 20:00:00,2,0,1,1,27.06,31.06,61,12.998,28,262,290 +2011-05-03 21:00:00,2,0,1,2,26.24,31.06,61,30.0026,42,183,225 +2011-05-03 22:00:00,2,0,1,2,23.78,27.275,60,26.0027,14,99,113 +2011-05-03 23:00:00,2,0,1,2,22.96,26.515,68,22.0028,12,50,62 +2011-05-04 00:00:00,2,0,1,3,21.32,25,77,11.0014,5,22,27 +2011-05-04 01:00:00,2,0,1,3,20.5,24.24,82,19.0012,1,6,7 +2011-05-04 02:00:00,2,0,1,3,20.5,24.24,82,19.0012,0,4,4 +2011-05-04 03:00:00,2,0,1,3,17.22,21.21,88,35.0008,0,1,1 +2011-05-04 04:00:00,2,0,1,3,15.58,19.695,94,22.0028,1,2,3 +2011-05-04 05:00:00,2,0,1,3,14.76,16.665,87,22.0028,1,8,9 +2011-05-04 06:00:00,2,0,1,3,13.94,15.15,93,26.0027,0,21,21 +2011-05-04 07:00:00,2,0,1,3,13.94,15.15,93,23.9994,6,46,52 +2011-05-04 08:00:00,2,0,1,3,13.94,15.15,93,26.0027,5,74,79 +2011-05-04 09:00:00,2,0,1,3,13.94,15.15,93,23.9994,5,35,40 +2011-05-04 10:00:00,2,0,1,2,13.94,15.91,93,19.0012,5,26,31 +2011-05-04 11:00:00,2,0,1,1,16.4,20.455,82,22.0028,3,69,72 +2011-05-04 12:00:00,2,0,1,2,18.04,21.97,62,23.9994,19,105,124 +2011-05-04 13:00:00,2,0,1,2,18.86,22.725,59,30.0026,15,128,143 +2011-05-04 14:00:00,2,0,1,1,20.5,24.24,51,26.0027,13,94,107 +2011-05-04 15:00:00,2,0,1,1,19.68,23.485,51,27.9993,22,107,129 +2011-05-04 16:00:00,2,0,1,1,20.5,24.24,45,31.0009,22,173,195 +2011-05-04 17:00:00,2,0,1,1,16.4,20.455,71,16.9979,22,388,410 +2011-05-04 18:00:00,2,0,1,1,17.22,21.21,67,16.9979,29,367,396 +2011-05-04 19:00:00,2,0,1,1,17.22,21.21,58,23.9994,30,266,296 +2011-05-04 20:00:00,2,0,1,1,16.4,20.455,62,22.0028,17,174,191 +2011-05-04 21:00:00,2,0,1,1,16.4,20.455,62,11.0014,17,133,150 +2011-05-04 22:00:00,2,0,1,1,15.58,19.695,62,15.0013,9,80,89 +2011-05-04 23:00:00,2,0,1,1,14.76,17.425,62,15.0013,8,49,57 +2011-05-05 00:00:00,2,0,1,1,14.76,17.425,66,12.998,4,23,27 +2011-05-05 01:00:00,2,0,1,1,13.94,16.665,71,12.998,4,6,10 +2011-05-05 02:00:00,2,0,1,1,13.94,15.91,66,15.0013,1,4,5 +2011-05-05 03:00:00,2,0,1,1,13.94,15.91,66,16.9979,0,4,4 +2011-05-05 04:00:00,2,0,1,1,13.94,15.91,66,16.9979,4,3,7 +2011-05-05 05:00:00,2,0,1,1,13.94,15.91,66,16.9979,1,29,30 +2011-05-05 06:00:00,2,0,1,1,13.94,15.91,66,16.9979,3,86,89 +2011-05-05 07:00:00,2,0,1,1,15.58,19.695,58,16.9979,16,255,271 +2011-05-05 08:00:00,2,0,1,1,17.22,21.21,50,16.9979,25,415,440 +2011-05-05 09:00:00,2,0,1,1,18.86,22.725,44,19.0012,20,164,184 +2011-05-05 10:00:00,2,0,1,1,20.5,24.24,39,19.0012,30,98,128 +2011-05-05 11:00:00,2,0,1,1,21.32,25,36,30.0026,43,105,148 +2011-05-05 12:00:00,2,0,1,1,21.32,25,34,23.9994,27,169,196 +2011-05-05 13:00:00,2,0,1,1,22.14,25.76,30,39.0007,50,142,192 +2011-05-05 14:00:00,2,0,1,1,22.14,25.76,28,30.0026,19,135,154 +2011-05-05 15:00:00,2,0,1,1,22.96,26.515,26,32.9975,27,120,147 +2011-05-05 16:00:00,2,0,1,1,23.78,27.275,24,27.9993,36,233,269 +2011-05-05 17:00:00,2,0,1,1,22.96,26.515,26,26.0027,66,467,533 +2011-05-05 18:00:00,2,0,1,1,22.96,26.515,26,19.0012,64,456,520 +2011-05-05 19:00:00,2,0,1,1,22.14,25.76,28,15.0013,56,305,361 +2011-05-05 20:00:00,2,0,1,1,20.5,24.24,34,11.0014,33,225,258 +2011-05-05 21:00:00,2,0,1,1,20.5,24.24,36,12.998,39,141,180 +2011-05-05 22:00:00,2,0,1,1,19.68,23.485,39,12.998,30,135,165 +2011-05-05 23:00:00,2,0,1,1,18.86,22.725,41,12.998,16,99,115 +2011-05-06 00:00:00,2,0,1,1,18.04,21.97,44,11.0014,13,43,56 +2011-05-06 01:00:00,2,0,1,1,16.4,20.455,62,11.0014,8,24,32 +2011-05-06 02:00:00,2,0,1,1,15.58,19.695,62,7.0015,1,15,16 +2011-05-06 03:00:00,2,0,1,1,14.76,18.18,71,7.0015,3,6,9 +2011-05-06 04:00:00,2,0,1,1,14.76,18.18,71,7.0015,0,1,1 +2011-05-06 05:00:00,2,0,1,1,13.94,17.425,81,7.0015,0,16,16 +2011-05-06 06:00:00,2,0,1,1,14.76,18.18,81,6.0032,8,74,82 +2011-05-06 07:00:00,2,0,1,1,16.4,20.455,82,0,20,202,222 +2011-05-06 08:00:00,2,0,1,1,17.22,21.21,77,16.9979,35,415,450 +2011-05-06 09:00:00,2,0,1,1,18.86,22.725,67,19.0012,27,161,188 +2011-05-06 10:00:00,2,0,1,2,22.14,25.76,49,22.0028,30,97,127 +2011-05-06 11:00:00,2,0,1,2,22.14,25.76,49,22.0028,42,123,165 +2011-05-06 12:00:00,2,0,1,1,22.96,26.515,49,23.9994,48,198,246 +2011-05-06 13:00:00,2,0,1,1,23.78,27.275,40,22.0028,71,182,253 +2011-05-06 14:00:00,2,0,1,1,24.6,31.06,40,30.0026,86,127,213 +2011-05-06 15:00:00,2,0,1,1,24.6,31.06,38,26.0027,89,171,260 +2011-05-06 16:00:00,2,0,1,1,24.6,31.06,40,16.9979,82,262,344 +2011-05-06 17:00:00,2,0,1,1,23.78,27.275,40,23.9994,83,470,553 +2011-05-06 18:00:00,2,0,1,3,22.14,25.76,52,23.9994,85,385,470 +2011-05-06 19:00:00,2,0,1,3,22.14,25.76,52,23.9994,39,253,292 +2011-05-06 20:00:00,2,0,1,1,21.32,25,48,7.0015,29,161,190 +2011-05-06 21:00:00,2,0,1,1,19.68,23.485,67,8.9981,22,130,152 +2011-05-06 22:00:00,2,0,1,1,18.86,22.725,72,15.0013,46,105,151 +2011-05-06 23:00:00,2,0,1,1,18.04,21.97,82,8.9981,27,93,120 +2011-05-07 00:00:00,2,0,0,1,17.22,21.21,82,8.9981,10,76,86 +2011-05-07 01:00:00,2,0,0,1,17.22,21.21,82,7.0015,8,50,58 +2011-05-07 02:00:00,2,0,0,1,17.22,21.21,82,6.0032,5,47,52 +2011-05-07 03:00:00,2,0,0,1,17.22,21.21,77,6.0032,9,9,18 +2011-05-07 04:00:00,2,0,0,1,16.4,20.455,82,7.0015,1,4,5 +2011-05-07 05:00:00,2,0,0,1,18.86,22.725,59,8.9981,4,3,7 +2011-05-07 06:00:00,2,0,0,1,17.22,21.21,77,6.0032,1,12,13 +2011-05-07 07:00:00,2,0,0,1,19.68,23.485,59,0,8,32,40 +2011-05-07 08:00:00,2,0,0,1,21.32,25,52,12.998,19,96,115 +2011-05-07 09:00:00,2,0,0,1,22.14,25.76,49,19.0012,54,164,218 +2011-05-07 10:00:00,2,0,0,1,22.96,26.515,49,19.9995,90,208,298 +2011-05-07 11:00:00,2,0,0,1,22.96,26.515,43,0,132,215,347 +2011-05-07 12:00:00,2,0,0,1,24.6,31.06,40,12.998,129,244,373 +2011-05-07 13:00:00,2,0,0,1,24.6,31.06,35,19.0012,196,240,436 +2011-05-07 14:00:00,2,0,0,3,24.6,31.06,35,11.0014,143,235,378 +2011-05-07 15:00:00,2,0,0,1,24.6,31.06,38,16.9979,148,230,378 +2011-05-07 16:00:00,2,0,0,1,24.6,31.06,38,12.998,119,223,342 +2011-05-07 17:00:00,2,0,0,1,23.78,27.275,40,15.0013,138,216,354 +2011-05-07 18:00:00,2,0,0,1,23.78,27.275,37,11.0014,114,175,289 +2011-05-07 19:00:00,2,0,0,1,22.96,26.515,43,12.998,88,179,267 +2011-05-07 20:00:00,2,0,0,1,22.96,26.515,43,8.9981,82,137,219 +2011-05-07 21:00:00,2,0,0,1,22.14,25.76,49,15.0013,58,124,182 +2011-05-07 22:00:00,2,0,0,1,22.14,25.76,49,12.998,26,94,120 +2011-05-07 23:00:00,2,0,0,1,20.5,24.24,59,7.0015,30,89,119 +2011-05-08 00:00:00,2,0,0,2,20.5,24.24,59,7.0015,22,78,100 +2011-05-08 01:00:00,2,0,0,2,21.32,25,55,0,8,56,64 +2011-05-08 02:00:00,2,0,0,1,19.68,23.485,63,0,17,42,59 +2011-05-08 03:00:00,2,0,0,1,18.86,22.725,72,6.0032,10,21,31 +2011-05-08 04:00:00,2,0,0,1,17.22,21.21,82,0,2,8,10 +2011-05-08 05:00:00,2,0,0,2,18.04,21.97,77,0,0,5,5 +2011-05-08 06:00:00,2,0,0,2,18.04,21.97,82,0,2,4,6 +2011-05-08 07:00:00,2,0,0,2,18.86,22.725,82,0,8,15,23 +2011-05-08 08:00:00,2,0,0,1,21.32,25,63,8.9981,28,58,86 +2011-05-08 09:00:00,2,0,0,1,22.96,26.515,52,15.0013,48,112,160 +2011-05-08 10:00:00,2,0,0,1,23.78,27.275,49,8.9981,91,153,244 +2011-05-08 11:00:00,2,0,0,1,23.78,27.275,49,6.0032,142,198,340 +2011-05-08 12:00:00,2,0,0,1,24.6,31.06,46,6.0032,139,243,382 +2011-05-08 13:00:00,2,0,0,1,24.6,31.06,49,8.9981,166,224,390 +2011-05-08 14:00:00,2,0,0,1,24.6,31.06,49,0,126,240,366 +2011-05-08 15:00:00,2,0,0,1,24.6,31.06,49,0,128,230,358 +2011-05-08 16:00:00,2,0,0,1,24.6,31.06,46,7.0015,122,263,385 +2011-05-08 17:00:00,2,0,0,3,23.78,27.275,49,19.0012,106,245,351 +2011-05-08 18:00:00,2,0,0,1,23.78,27.275,49,0,63,205,268 +2011-05-08 19:00:00,2,0,0,1,22.96,26.515,64,0,61,178,239 +2011-05-08 20:00:00,2,0,0,1,21.32,25,77,8.9981,42,132,174 +2011-05-08 21:00:00,2,0,0,1,21.32,25,77,6.0032,32,95,127 +2011-05-08 22:00:00,2,0,0,1,20.5,24.24,88,6.0032,29,86,115 +2011-05-08 23:00:00,2,0,0,1,18.86,22.725,88,6.0032,9,41,50 +2011-05-09 00:00:00,2,0,1,1,18.86,22.725,82,6.0032,31,22,53 +2011-05-09 01:00:00,2,0,1,1,18.04,21.97,88,0,25,8,33 +2011-05-09 02:00:00,2,0,1,1,18.04,21.97,94,0,6,2,8 +2011-05-09 03:00:00,2,0,1,1,18.86,22.725,82,6.0032,0,7,7 +2011-05-09 04:00:00,2,0,1,1,17.22,21.21,82,11.0014,0,4,4 +2011-05-09 05:00:00,2,0,1,1,17.22,21.21,77,11.0014,0,23,23 +2011-05-09 06:00:00,2,0,1,1,18.04,21.97,72,16.9979,2,87,89 +2011-05-09 07:00:00,2,0,1,1,19.68,23.485,63,16.9979,16,221,237 +2011-05-09 08:00:00,2,0,1,1,21.32,25,55,15.0013,23,351,374 +2011-05-09 09:00:00,2,0,1,1,22.14,25.76,56,11.0014,36,142,178 +2011-05-09 10:00:00,2,0,1,1,22.96,26.515,52,12.998,24,95,119 +2011-05-09 11:00:00,2,0,1,1,24.6,31.06,46,15.0013,26,99,125 +2011-05-09 12:00:00,2,0,1,1,24.6,31.06,43,12.998,35,160,195 +2011-05-09 13:00:00,2,0,1,1,25.42,31.06,38,19.0012,36,138,174 +2011-05-09 14:00:00,2,0,1,1,25.42,31.06,41,15.0013,44,118,162 +2011-05-09 15:00:00,2,0,1,1,25.42,31.06,41,15.0013,51,148,199 +2011-05-09 16:00:00,2,0,1,1,26.24,31.06,38,15.0013,49,255,304 +2011-05-09 17:00:00,2,0,1,1,25.42,31.06,38,16.9979,59,539,598 +2011-05-09 18:00:00,2,0,1,1,25.42,31.06,38,19.9995,66,458,524 +2011-05-09 19:00:00,2,0,1,1,23.78,27.275,43,12.998,45,339,384 +2011-05-09 20:00:00,2,0,1,1,22.14,25.76,49,12.998,25,214,239 +2011-05-09 21:00:00,2,0,1,1,21.32,25,59,8.9981,28,128,156 +2011-05-09 22:00:00,2,0,1,1,21.32,25,68,6.0032,21,95,116 +2011-05-09 23:00:00,2,0,1,1,20.5,24.24,68,6.0032,16,45,61 +2011-05-10 00:00:00,2,0,1,1,19.68,23.485,63,0,6,12,18 +2011-05-10 01:00:00,2,0,1,1,18.86,22.725,59,6.0032,3,12,15 +2011-05-10 02:00:00,2,0,1,1,18.04,21.97,58,8.9981,1,4,5 +2011-05-10 03:00:00,2,0,1,1,18.04,21.97,54,12.998,1,3,4 +2011-05-10 04:00:00,2,0,1,1,17.22,21.21,62,16.9979,0,2,2 +2011-05-10 05:00:00,2,0,1,1,16.4,20.455,66,15.0013,1,28,29 +2011-05-10 06:00:00,2,0,1,1,17.22,21.21,67,8.9981,9,103,112 +2011-05-10 07:00:00,2,0,1,2,18.04,21.97,62,8.9981,13,301,314 +2011-05-10 08:00:00,2,0,1,2,20.5,24.24,51,7.0015,28,397,425 +2011-05-10 09:00:00,2,0,1,2,21.32,25,48,7.0015,29,176,205 +2011-05-10 10:00:00,2,0,1,2,22.96,26.515,37,6.0032,27,100,127 +2011-05-10 11:00:00,2,0,1,2,22.96,26.515,43,8.9981,17,108,125 +2011-05-10 12:00:00,2,0,1,2,24.6,31.06,38,0,47,170,217 +2011-05-10 13:00:00,2,0,1,2,25.42,31.06,38,16.9979,50,152,202 +2011-05-10 14:00:00,2,0,1,2,25.42,31.06,33,0,42,134,176 +2011-05-10 15:00:00,2,0,1,2,26.24,31.06,33,6.0032,28,152,180 +2011-05-10 16:00:00,2,0,1,1,27.06,31.06,31,7.0015,56,271,327 +2011-05-10 17:00:00,2,0,1,1,26.24,31.06,33,0,79,532,611 +2011-05-10 18:00:00,2,0,1,1,26.24,31.06,29,8.9981,70,480,550 +2011-05-10 19:00:00,2,0,1,1,24.6,31.06,43,15.0013,69,365,434 +2011-05-10 20:00:00,2,0,1,1,22.14,25.76,60,8.9981,50,241,291 +2011-05-10 21:00:00,2,0,1,1,22.14,25.76,52,0,30,173,203 +2011-05-10 22:00:00,2,0,1,1,21.32,25,55,7.0015,29,121,150 +2011-05-10 23:00:00,2,0,1,2,21.32,25,59,8.9981,9,72,81 +2011-05-11 00:00:00,2,0,1,2,21.32,25,55,8.9981,8,30,38 +2011-05-11 01:00:00,2,0,1,2,20.5,24.24,59,7.0015,4,16,20 +2011-05-11 02:00:00,2,0,1,1,21.32,25,59,0,6,4,10 +2011-05-11 03:00:00,2,0,1,1,20.5,24.24,63,15.0013,0,3,3 +2011-05-11 04:00:00,2,0,1,2,19.68,23.485,88,8.9981,0,2,2 +2011-05-11 05:00:00,2,0,1,1,18.86,22.725,88,8.9981,0,20,20 +2011-05-11 06:00:00,2,0,1,1,18.86,22.725,82,8.9981,6,93,99 +2011-05-11 07:00:00,2,0,1,1,19.68,23.485,72,12.998,25,293,318 +2011-05-11 08:00:00,2,0,1,1,19.68,23.485,77,16.9979,21,421,442 +2011-05-11 09:00:00,2,0,1,1,21.32,25,72,8.9981,21,182,203 +2011-05-11 10:00:00,2,0,1,1,22.14,25.76,68,6.0032,30,124,154 +2011-05-11 11:00:00,2,0,1,1,22.96,26.515,64,6.0032,18,123,141 +2011-05-11 12:00:00,2,0,1,1,24.6,31.06,56,0,41,185,226 +2011-05-11 13:00:00,2,0,1,1,25.42,31.06,50,0,36,157,193 +2011-05-11 14:00:00,2,0,1,1,25.42,31.06,53,6.0032,36,141,177 +2011-05-11 15:00:00,2,0,1,1,26.24,31.06,41,0,48,131,179 +2011-05-11 16:00:00,2,0,1,1,27.06,31.06,39,0,49,240,289 +2011-05-11 17:00:00,2,0,1,1,26.24,31.06,47,7.0015,17,242,259 +2011-05-11 18:00:00,2,0,1,1,25.42,31.06,50,19.9995,40,234,274 +2011-05-11 19:00:00,2,0,1,1,22.96,26.515,52,8.9981,60,341,401 +2011-05-11 20:00:00,2,0,1,1,22.14,25.76,64,8.9981,28,245,273 +2011-05-11 21:00:00,2,0,1,1,22.14,25.76,60,0,32,202,234 +2011-05-11 22:00:00,2,0,1,1,20.5,24.24,72,16.9979,12,134,146 +2011-05-11 23:00:00,2,0,1,1,18.86,22.725,88,16.9979,12,69,81 +2011-05-12 00:00:00,2,0,1,2,18.86,22.725,88,15.0013,5,39,44 +2011-05-12 01:00:00,2,0,1,1,18.86,22.725,88,15.0013,1,16,17 +2011-05-12 02:00:00,2,0,1,1,18.04,21.97,94,12.998,1,14,15 +2011-05-12 03:00:00,2,0,1,1,18.04,21.97,88,8.9981,0,5,5 +2011-05-12 04:00:00,2,0,1,1,17.22,21.21,94,0,1,5,6 +2011-05-12 05:00:00,2,0,1,1,17.22,21.21,94,8.9981,2,27,29 +2011-05-12 06:00:00,2,0,1,1,18.04,21.97,88,0,9,103,112 +2011-05-12 07:00:00,2,0,1,1,18.86,22.725,88,8.9981,14,283,297 +2011-05-12 08:00:00,2,0,1,1,19.68,23.485,82,12.998,27,394,421 +2011-05-12 09:00:00,2,0,1,2,20.5,24.24,77,19.0012,21,191,212 +2011-05-12 10:00:00,2,0,1,2,22.14,25.76,68,15.0013,28,119,147 +2011-05-12 11:00:00,2,0,1,1,23.78,27.275,60,15.0013,43,136,179 +2011-05-12 12:00:00,2,0,1,1,23.78,27.275,60,15.0013,43,164,207 +2011-05-12 13:00:00,2,0,1,2,25.42,31.06,57,19.9995,48,170,218 +2011-05-12 14:00:00,2,0,1,2,25.42,30.305,61,15.0013,43,148,191 +2011-05-12 15:00:00,2,0,1,2,26.24,31.06,53,16.9979,54,163,217 +2011-05-12 16:00:00,2,0,1,2,26.24,31.06,57,16.9979,50,238,288 +2011-05-12 17:00:00,2,0,1,2,26.24,31.06,57,12.998,54,540,594 +2011-05-12 18:00:00,2,0,1,1,25.42,30.305,69,15.0013,64,463,527 +2011-05-12 19:00:00,2,0,1,2,24.6,30.305,64,12.998,59,305,364 +2011-05-12 20:00:00,2,0,1,1,24.6,30.305,64,12.998,56,220,276 +2011-05-12 21:00:00,2,0,1,1,22.96,26.515,83,8.9981,31,192,223 +2011-05-12 22:00:00,2,0,1,1,22.14,25.76,83,12.998,25,147,172 +2011-05-12 23:00:00,2,0,1,2,22.14,25.76,77,12.998,16,87,103 +2011-05-13 00:00:00,2,0,1,2,21.32,25,83,11.0014,6,46,52 +2011-05-13 01:00:00,2,0,1,1,21.32,25,83,11.0014,5,15,20 +2011-05-13 02:00:00,2,0,1,2,20.5,24.24,88,8.9981,3,8,11 +2011-05-13 03:00:00,2,0,1,2,20.5,24.24,88,8.9981,2,2,4 +2011-05-13 04:00:00,2,0,1,3,20.5,24.24,88,11.0014,2,3,5 +2011-05-13 05:00:00,2,0,1,2,20.5,24.24,88,12.998,1,24,25 +2011-05-13 06:00:00,2,0,1,3,20.5,24.24,88,8.9981,6,76,82 +2011-05-13 07:00:00,2,0,1,3,20.5,24.24,88,11.0014,16,141,157 +2011-05-13 08:00:00,2,0,1,2,20.5,24.24,88,12.998,26,361,387 +2011-05-13 09:00:00,2,0,1,2,20.5,24.24,88,12.998,18,215,233 +2011-05-13 10:00:00,2,0,1,2,21.32,25,83,8.9981,31,99,130 +2011-05-13 11:00:00,2,0,1,2,21.32,25,83,11.0014,56,90,146 +2011-05-13 12:00:00,2,0,1,2,21.32,25,88,12.998,53,170,223 +2011-05-13 13:00:00,2,0,1,2,21.32,25,88,26.0027,69,157,226 +2011-05-13 14:00:00,2,0,1,2,21.32,25,87,19.0012,70,120,190 +2011-05-13 15:00:00,2,0,1,2,21.32,25,88,11.0014,56,142,198 +2011-05-13 16:00:00,2,0,1,2,21.32,25,88,8.9981,44,256,300 +2011-05-13 17:00:00,2,0,1,3,21.32,25,88,11.0014,62,429,491 +2011-05-13 18:00:00,2,0,1,3,21.32,25,88,11.0014,39,359,398 +2011-05-13 19:00:00,2,0,1,2,21.32,25,83,12.998,25,245,270 +2011-05-13 20:00:00,2,0,1,2,21.32,25,83,8.9981,22,130,152 +2011-05-13 21:00:00,2,0,1,2,21.32,25,84,11.0014,24,130,154 +2011-05-13 22:00:00,2,0,1,2,21.32,25,83,15.0013,25,107,132 +2011-05-13 23:00:00,2,0,1,3,20.5,24.24,88,11.0014,31,88,119 +2011-05-14 00:00:00,2,0,0,2,20.5,24.24,88,8.9981,24,78,102 +2011-05-14 01:00:00,2,0,0,2,20.5,24.24,88,8.9981,18,64,82 +2011-05-14 02:00:00,2,0,0,2,20.5,24.24,88,8.9981,15,37,52 +2011-05-14 03:00:00,2,0,0,2,20.5,24.24,88,8.9981,5,30,35 +2011-05-14 04:00:00,2,0,0,2,20.5,24.24,82,11.0014,1,4,5 +2011-05-14 05:00:00,2,0,0,2,20.5,24.24,82,7.0015,7,7,14 +2011-05-14 06:00:00,2,0,0,2,20.5,24.24,88,7.0015,2,9,11 +2011-05-14 07:00:00,2,0,0,3,19.68,23.485,100,0,4,28,32 +2011-05-14 08:00:00,2,0,0,3,20.5,24.24,94,0,16,72,88 +2011-05-14 09:00:00,2,0,0,2,21.32,25,94,6.0032,14,86,100 +2011-05-14 10:00:00,2,0,0,2,21.32,25,94,11.0014,34,133,167 +2011-05-14 11:00:00,2,0,0,2,21.32,25,94,8.9981,72,207,279 +2011-05-14 12:00:00,2,0,0,3,21.32,25,100,6.0032,75,204,279 +2011-05-14 13:00:00,2,0,0,3,21.32,25,100,6.0032,68,180,248 +2011-05-14 14:00:00,2,0,0,2,22.14,25.76,94,8.9981,57,159,216 +2011-05-14 15:00:00,2,0,0,2,22.14,25.76,94,11.0014,73,221,294 +2011-05-14 16:00:00,2,0,0,2,22.14,25.76,94,12.998,107,188,295 +2011-05-14 17:00:00,2,0,0,2,22.96,26.515,88,12.998,78,194,272 +2011-05-14 18:00:00,2,0,0,2,22.96,26.515,88,15.0013,88,216,304 +2011-05-14 19:00:00,2,0,0,3,22.14,25.76,94,8.9981,69,179,248 +2011-05-14 20:00:00,2,0,0,3,22.14,25.76,94,8.9981,42,115,157 +2011-05-14 21:00:00,2,0,0,3,22.14,25.76,94,15.0013,15,44,59 +2011-05-14 22:00:00,2,0,0,3,22.14,25.76,94,11.0014,7,19,26 +2011-05-14 23:00:00,2,0,0,3,21.32,25,100,12.998,11,33,44 +2011-05-15 00:00:00,2,0,0,2,21.32,25,100,0,5,34,39 +2011-05-15 01:00:00,2,0,0,2,21.32,25,100,7.0015,4,43,47 +2011-05-15 02:00:00,2,0,0,2,21.32,25,100,8.9981,13,37,50 +2011-05-15 03:00:00,2,0,0,2,21.32,25,100,0,11,21,32 +2011-05-15 04:00:00,2,0,0,2,21.32,25,100,0,5,8,13 +2011-05-15 05:00:00,2,0,0,3,21.32,25,100,7.0015,3,11,14 +2011-05-15 06:00:00,2,0,0,2,21.32,25,100,8.9981,3,14,17 +2011-05-15 07:00:00,2,0,0,2,21.32,25,100,8.9981,4,38,42 +2011-05-15 08:00:00,2,0,0,2,22.14,25.76,94,8.9981,24,46,70 +2011-05-15 09:00:00,2,0,0,1,23.78,27.275,83,16.9979,36,98,134 +2011-05-15 10:00:00,2,0,0,1,23.78,27.275,83,15.0013,73,153,226 +2011-05-15 11:00:00,2,0,0,1,24.6,28.79,78,15.0013,120,202,322 +2011-05-15 12:00:00,2,0,0,1,25.42,29.545,73,19.9995,120,247,367 +2011-05-15 13:00:00,2,0,0,1,25.42,29.545,73,19.0012,195,261,456 +2011-05-15 14:00:00,2,0,0,1,26.24,30.305,73,12.998,183,254,437 +2011-05-15 15:00:00,2,0,0,1,27.06,31.06,69,16.9979,206,253,459 +2011-05-15 16:00:00,2,0,0,1,26.24,30.305,69,16.9979,158,282,440 +2011-05-15 17:00:00,2,0,0,3,22.96,26.515,78,23.9994,137,255,392 +2011-05-15 18:00:00,2,0,0,1,22.96,26.515,78,16.9979,60,177,237 +2011-05-15 19:00:00,2,0,0,1,22.96,26.515,83,7.0015,78,153,231 +2011-05-15 20:00:00,2,0,0,1,22.14,25.76,88,0,53,138,191 +2011-05-15 21:00:00,2,0,0,1,22.14,25.76,88,0,44,107,151 +2011-05-15 22:00:00,2,0,0,1,22.96,26.515,83,0,29,88,117 +2011-05-15 23:00:00,2,0,0,1,22.14,25.76,88,15.0013,18,51,69 +2011-05-16 00:00:00,2,0,1,1,21.32,25,94,7.0015,17,21,38 +2011-05-16 01:00:00,2,0,1,1,21.32,25,94,8.9981,6,8,14 +2011-05-16 02:00:00,2,0,1,1,20.5,24.24,100,6.0032,4,9,13 +2011-05-16 03:00:00,2,0,1,1,20.5,24.24,94,11.0014,1,3,4 +2011-05-16 04:00:00,2,0,1,1,20.5,24.24,100,8.9981,1,5,6 +2011-05-16 05:00:00,2,0,1,1,20.5,24.24,93,12.998,1,20,21 +2011-05-16 06:00:00,2,0,1,1,21.32,25,88,11.0014,11,93,104 +2011-05-16 07:00:00,2,0,1,1,21.32,25,83,19.0012,27,245,272 +2011-05-16 08:00:00,2,0,1,1,22.96,26.515,73,19.9995,28,366,394 +2011-05-16 09:00:00,2,0,1,1,24.6,29.545,69,12.998,38,156,194 +2011-05-16 10:00:00,2,0,1,1,25.42,30.305,65,6.0032,37,75,112 +2011-05-16 11:00:00,2,0,1,1,26.24,31.06,57,0,56,129,185 +2011-05-16 12:00:00,2,0,1,1,27.06,31.06,54,6.0032,72,137,209 +2011-05-16 13:00:00,2,0,1,1,27.88,31.82,51,0,61,153,214 +2011-05-16 14:00:00,2,0,1,1,27.88,31.82,51,0,76,117,193 +2011-05-16 15:00:00,2,0,1,1,29.52,33.335,51,0,55,110,165 +2011-05-16 16:00:00,2,0,1,3,24.6,28.79,78,16.9979,45,181,226 +2011-05-16 17:00:00,2,0,1,1,23.78,27.275,88,15.0013,47,227,274 +2011-05-16 18:00:00,2,0,1,3,23.78,27.275,83,12.998,55,398,453 +2011-05-16 19:00:00,2,0,1,1,23.78,27.275,83,16.9979,36,272,308 +2011-05-16 20:00:00,2,0,1,1,23.78,27.275,83,0,31,167,198 +2011-05-16 21:00:00,2,0,1,1,23.78,27.275,83,0,28,149,177 +2011-05-16 22:00:00,2,0,1,1,22.96,26.515,88,6.0032,22,105,127 +2011-05-16 23:00:00,2,0,1,1,22.96,26.515,88,6.0032,18,39,57 +2011-05-17 00:00:00,2,0,1,2,22.96,26.515,88,0,13,18,31 +2011-05-17 01:00:00,2,0,1,3,22.96,26.515,88,0,7,6,13 +2011-05-17 02:00:00,2,0,1,3,22.96,26.515,88,0,4,4,8 +2011-05-17 03:00:00,2,0,1,3,22.14,25.76,94,16.9979,1,3,4 +2011-05-17 04:00:00,2,0,1,3,22.14,25.76,94,16.9979,2,2,4 +2011-05-17 05:00:00,2,0,1,3,21.32,25,94,16.9979,0,22,22 +2011-05-17 06:00:00,2,0,1,3,21.32,25,94,16.9979,0,49,49 +2011-05-17 07:00:00,2,0,1,2,21.32,25,94,16.9979,13,138,151 +2011-05-17 08:00:00,2,0,1,2,21.32,25,94,19.9995,22,325,347 +2011-05-17 09:00:00,2,0,1,2,22.14,25.76,88,16.9979,17,190,207 +2011-05-17 10:00:00,2,0,1,3,22.14,25.76,88,16.9979,31,73,104 +2011-05-17 11:00:00,2,0,1,2,22.96,26.515,83,27.9993,26,104,130 +2011-05-17 12:00:00,2,0,1,3,22.96,26.515,83,27.9993,38,115,153 +2011-05-17 13:00:00,2,0,1,2,22.96,26.515,88,22.0028,31,141,172 +2011-05-17 14:00:00,2,0,1,1,25.42,29.545,73,31.0009,61,123,184 +2011-05-17 15:00:00,2,0,1,1,25.42,30.305,69,30.0026,79,131,210 +2011-05-17 16:00:00,2,0,1,1,25.42,30.305,61,22.0028,73,217,290 +2011-05-17 17:00:00,2,0,1,1,25.42,30.305,65,27.9993,83,521,604 +2011-05-17 18:00:00,2,0,1,1,24.6,29.545,69,19.9995,54,426,480 +2011-05-17 19:00:00,2,0,1,1,24.6,29.545,69,16.9979,51,298,349 +2011-05-17 20:00:00,2,0,1,1,23.78,27.275,83,27.9993,30,253,283 +2011-05-17 21:00:00,2,0,1,1,22.14,25.76,88,16.9979,23,151,174 +2011-05-17 22:00:00,2,0,1,2,22.14,25.76,88,19.0012,12,86,98 +2011-05-17 23:00:00,2,0,1,2,22.14,25.76,88,16.9979,7,49,56 +2011-05-18 00:00:00,2,0,1,2,22.14,25.76,88,15.0013,8,15,23 +2011-05-18 01:00:00,2,0,1,2,22.14,25.76,88,16.9979,3,9,12 +2011-05-18 02:00:00,2,0,1,3,21.32,25,94,15.0013,1,5,6 +2011-05-18 03:00:00,2,0,1,3,21.32,25,94,19.9995,6,3,9 +2011-05-18 04:00:00,2,0,1,3,21.32,25,94,19.9995,1,2,3 +2011-05-18 05:00:00,2,0,1,1,21.32,25,100,15.0013,0,9,9 +2011-05-18 06:00:00,2,0,1,1,21.32,25,100,8.9981,2,99,101 +2011-05-18 07:00:00,2,0,1,1,22.14,25.76,88,12.998,14,260,274 +2011-05-18 08:00:00,2,0,1,1,22.96,26.515,88,19.0012,25,428,453 +2011-05-18 09:00:00,2,0,1,3,22.96,26.515,83,16.9979,26,176,202 +2011-05-18 10:00:00,2,0,1,3,22.14,25.76,88,19.0012,33,73,106 +2011-05-18 11:00:00,2,0,1,2,22.14,25.76,94,6.0032,6,17,23 +2011-05-18 12:00:00,2,0,1,1,22.96,26.515,94,19.9995,12,42,54 +2011-05-18 13:00:00,2,0,1,2,22.96,26.515,83,22.0028,30,92,122 +2011-05-18 14:00:00,2,0,1,2,23.78,27.275,78,19.0012,44,94,138 +2011-05-18 15:00:00,2,0,1,1,24.6,28.79,78,16.9979,34,133,167 +2011-05-18 16:00:00,2,0,1,1,24.6,29.545,73,12.998,53,241,294 +2011-05-18 17:00:00,2,0,1,1,24.6,29.545,69,8.9981,78,487,565 +2011-05-18 18:00:00,2,0,1,1,24.6,29.545,73,15.0013,58,431,489 +2011-05-18 19:00:00,2,0,1,3,22.96,26.515,88,8.9981,43,288,331 +2011-05-18 20:00:00,2,0,1,3,22.96,26.515,88,8.9981,24,189,213 +2011-05-18 21:00:00,2,0,1,1,21.32,25,88,0,11,74,85 +2011-05-18 22:00:00,2,0,1,1,21.32,25,83,0,14,103,117 +2011-05-18 23:00:00,2,0,1,1,21.32,25,94,6.0032,10,49,59 +2011-05-19 00:00:00,2,0,1,1,21.32,25,94,7.0015,6,23,29 +2011-05-19 01:00:00,2,0,1,1,20.5,24.24,94,0,2,4,6 +2011-05-19 02:00:00,2,0,1,1,20.5,24.24,94,0,3,12,15 +2011-05-19 03:00:00,2,0,1,1,19.68,23.485,100,0,1,3,4 +2011-05-19 04:00:00,2,0,1,1,19.68,23.485,94,0,2,3,5 +2011-05-19 05:00:00,2,0,1,1,19.68,23.485,94,0,2,24,26 +2011-05-19 06:00:00,2,0,1,2,20.5,24.24,94,0,17,86,103 +2011-05-19 07:00:00,2,0,1,2,20.5,24.24,100,0,18,239,257 +2011-05-19 08:00:00,2,0,1,2,21.32,25,88,0,34,453,487 +2011-05-19 09:00:00,2,0,1,2,22.14,25.76,88,6.0032,40,176,216 +2011-05-19 10:00:00,2,0,1,2,22.14,25.76,83,0,35,95,130 +2011-05-19 11:00:00,2,0,1,3,22.14,25.76,88,11.0014,53,111,164 +2011-05-19 12:00:00,2,0,1,2,23.78,27.275,78,7.0015,38,130,168 +2011-05-19 13:00:00,2,0,1,3,23.78,27.275,64,16.9979,44,139,183 +2011-05-19 14:00:00,2,0,1,3,22.14,25.76,73,12.998,43,137,180 +2011-05-19 15:00:00,2,0,1,1,22.96,26.515,78,11.0014,63,125,188 +2011-05-19 16:00:00,2,0,1,1,23.78,27.275,64,12.998,55,247,302 +2011-05-19 17:00:00,2,0,1,1,22.96,26.515,78,11.0014,60,487,547 +2011-05-19 18:00:00,2,0,1,1,24.6,31.06,55,11.0014,59,454,513 +2011-05-19 19:00:00,2,0,1,1,23.78,27.275,60,8.9981,65,345,410 +2011-05-19 20:00:00,2,0,1,1,22.14,25.76,77,19.0012,46,236,282 +2011-05-19 21:00:00,2,0,1,1,22.14,25.76,77,19.0012,29,180,209 +2011-05-19 22:00:00,2,0,1,3,20.5,24.24,82,19.9995,11,68,79 +2011-05-19 23:00:00,2,0,1,1,19.68,23.485,94,0,9,63,72 +2011-06-01 00:00:00,2,0,1,1,28.7,33.335,79,11.0014,9,25,34 +2011-06-01 01:00:00,2,0,1,1,28.7,33.335,84,16.9979,8,9,17 +2011-06-01 02:00:00,2,0,1,1,28.7,33.335,79,11.0014,0,3,3 +2011-06-01 03:00:00,2,0,1,1,27.88,31.82,89,12.998,0,6,6 +2011-06-01 04:00:00,2,0,1,2,27.88,31.82,89,15.0013,0,4,4 +2011-06-01 05:00:00,2,0,1,2,27.06,29.545,89,6.0032,2,19,21 +2011-06-01 06:00:00,2,0,1,2,27.88,31.82,89,6.0032,7,121,128 +2011-06-01 07:00:00,2,0,1,2,28.7,33.335,79,11.0014,19,265,284 +2011-06-01 08:00:00,2,0,1,2,29.52,34.85,79,12.998,37,417,454 +2011-06-01 09:00:00,2,0,1,2,30.34,35.605,74,15.0013,34,173,207 +2011-06-01 10:00:00,2,0,1,2,31.16,37.12,75,16.9979,31,84,115 +2011-06-01 11:00:00,2,0,1,2,33.62,40.15,59,15.0013,26,86,112 +2011-06-01 12:00:00,2,0,1,1,35.26,41.665,53,0,32,137,169 +2011-06-01 13:00:00,2,0,1,1,36.9,40.91,37,12.998,29,125,154 +2011-06-01 14:00:00,2,0,1,1,36.9,40.91,37,16.9979,40,105,145 +2011-06-01 15:00:00,2,0,1,1,36.9,41.665,39,19.9995,25,127,152 +2011-06-01 16:00:00,2,0,1,1,35.26,40.15,47,19.9995,39,227,266 +2011-06-01 17:00:00,2,0,1,1,35.26,40.15,47,19.9995,52,434,486 +2011-06-01 18:00:00,2,0,1,3,33.62,39.395,56,26.0027,31,278,309 +2011-06-01 19:00:00,2,0,1,2,30.34,35.605,79,11.0014,16,248,264 +2011-06-01 20:00:00,2,0,1,2,30.34,35.605,79,16.9979,23,233,256 +2011-06-01 21:00:00,2,0,1,1,30.34,34.85,70,19.0012,29,161,190 +2011-06-01 22:00:00,2,0,1,1,30.34,34.85,66,8.9981,14,115,129 +2011-06-01 23:00:00,2,0,1,1,30.34,33.335,51,11.0014,10,59,69 +2011-06-02 00:00:00,2,0,1,1,30.34,32.575,40,23.9994,11,31,42 +2011-06-02 01:00:00,2,0,1,1,29.52,32.575,38,7.0015,3,12,15 +2011-06-02 02:00:00,2,0,1,1,28.7,31.82,39,0,0,6,6 +2011-06-02 03:00:00,2,0,1,1,27.06,31.06,44,7.0015,0,4,4 +2011-06-02 04:00:00,2,0,1,1,27.06,31.06,41,12.998,0,3,3 +2011-06-02 05:00:00,2,0,1,1,27.06,31.06,39,15.0013,3,28,31 +2011-06-02 06:00:00,2,0,1,1,27.06,31.06,39,8.9981,7,106,113 +2011-06-02 07:00:00,2,0,1,1,28.7,31.82,34,16.9979,19,285,304 +2011-06-02 08:00:00,2,0,1,1,28.7,31.82,32,19.9995,25,442,467 +2011-06-02 09:00:00,2,0,1,1,29.52,31.82,26,23.9994,28,197,225 +2011-06-02 10:00:00,2,0,1,1,29.52,32.575,28,32.9975,33,106,139 +2011-06-02 11:00:00,2,0,1,1,30.34,32.575,28,26.0027,42,123,165 +2011-06-02 12:00:00,2,0,1,1,31.16,33.335,25,31.0009,39,193,232 +2011-06-02 13:00:00,2,0,1,1,32.8,34.09,24,23.9994,35,168,203 +2011-06-02 14:00:00,2,0,1,1,31.98,33.335,24,22.0028,43,142,185 +2011-06-02 15:00:00,2,0,1,1,32.8,34.09,21,26.0027,44,144,188 +2011-06-02 16:00:00,2,0,1,1,32.8,34.09,22,32.9975,63,255,318 +2011-06-02 17:00:00,2,0,1,1,31.16,32.575,20,35.0008,88,484,572 +2011-06-02 18:00:00,2,0,1,1,30.34,32.575,22,26.0027,74,451,525 +2011-06-02 19:00:00,2,0,1,1,29.52,31.82,23,19.9995,58,321,379 +2011-06-02 20:00:00,2,0,1,1,28.7,31.82,24,12.998,51,286,337 +2011-06-02 21:00:00,2,0,1,1,27.06,31.06,31,12.998,33,215,248 +2011-06-02 22:00:00,2,0,1,1,26.24,31.06,33,16.9979,14,141,155 +2011-06-02 23:00:00,2,0,1,1,25.42,31.06,35,15.0013,23,89,112 +2011-06-03 00:00:00,2,0,1,1,25.42,31.06,38,19.0012,15,53,68 +2011-06-03 01:00:00,2,0,1,1,24.6,31.06,38,23.9994,7,15,22 +2011-06-03 02:00:00,2,0,1,1,22.96,26.515,43,15.0013,0,12,12 +2011-06-03 03:00:00,2,0,1,1,22.14,25.76,49,15.0013,0,5,5 +2011-06-03 04:00:00,2,0,1,1,21.32,25,48,22.0028,1,5,6 +2011-06-03 05:00:00,2,0,1,1,21.32,25,48,23.9994,4,24,28 +2011-06-03 06:00:00,2,0,1,1,22.14,25.76,45,19.9995,8,98,106 +2011-06-03 07:00:00,2,0,1,1,22.14,25.76,45,16.9979,25,252,277 +2011-06-03 08:00:00,2,0,1,2,22.96,26.515,43,22.0028,31,471,502 +2011-06-03 09:00:00,2,0,1,1,23.78,27.275,40,11.0014,36,194,230 +2011-06-03 10:00:00,2,0,1,1,25.42,31.06,33,16.9979,54,107,161 +2011-06-03 11:00:00,2,0,1,1,26.24,31.06,31,22.0028,57,135,192 +2011-06-03 12:00:00,2,0,1,1,27.06,31.06,27,19.0012,51,208,259 +2011-06-03 13:00:00,2,0,1,1,27.88,31.06,26,16.9979,58,190,248 +2011-06-03 14:00:00,2,0,1,1,28.7,31.82,28,19.0012,66,174,240 +2011-06-03 15:00:00,2,0,1,1,28.7,31.82,28,19.0012,56,156,212 +2011-06-03 16:00:00,2,0,1,1,29.52,31.82,26,22.0028,63,286,349 +2011-06-03 17:00:00,2,0,1,1,29.52,31.82,25,19.0012,73,485,558 +2011-06-03 18:00:00,2,0,1,1,28.7,31.82,24,19.9995,76,488,564 +2011-06-03 19:00:00,2,0,1,1,27.88,31.06,26,19.0012,53,338,391 +2011-06-03 20:00:00,2,0,1,1,26.24,31.06,29,11.0014,57,236,293 +2011-06-03 21:00:00,2,0,1,1,26.24,31.06,29,7.0015,51,196,247 +2011-06-03 22:00:00,2,0,1,1,25.42,31.06,35,0,26,145,171 +2011-06-03 23:00:00,2,0,1,1,23.78,27.275,46,7.0015,30,141,171 +2011-06-04 00:00:00,2,0,0,1,22.96,26.515,52,0,24,69,93 +2011-06-04 01:00:00,2,0,0,1,22.14,25.76,64,7.0015,14,80,94 +2011-06-04 02:00:00,2,0,0,1,22.14,25.76,56,12.998,18,41,59 +2011-06-04 03:00:00,2,0,0,1,21.32,25,59,7.0015,8,10,18 +2011-06-04 04:00:00,2,0,0,1,21.32,25,59,6.0032,4,11,15 +2011-06-04 05:00:00,2,0,0,1,20.5,24.24,64,0,3,5,8 +2011-06-04 06:00:00,2,0,0,1,22.14,25.76,60,0,11,17,28 +2011-06-04 07:00:00,2,0,0,1,22.96,26.515,56,0,27,60,87 +2011-06-04 08:00:00,2,0,0,1,24.6,31.06,46,6.0032,29,96,125 +2011-06-04 09:00:00,2,0,0,1,25.42,31.06,43,8.9981,55,169,224 +2011-06-04 10:00:00,2,0,0,1,26.24,31.06,38,7.0015,115,202,317 +2011-06-04 11:00:00,2,0,0,1,27.06,31.06,36,8.9981,120,249,369 +2011-06-04 12:00:00,2,0,0,1,28.7,31.82,32,11.0014,150,270,420 +2011-06-04 13:00:00,2,0,0,1,30.34,32.575,28,8.9981,188,268,456 +2011-06-04 14:00:00,2,0,0,1,30.34,32.575,33,15.0013,193,258,451 +2011-06-04 15:00:00,2,0,0,2,30.34,32.575,27,27.9993,180,224,404 +2011-06-04 16:00:00,2,0,0,2,29.52,32.575,30,8.9981,168,272,440 +2011-06-04 17:00:00,2,0,0,2,29.52,32.575,34,16.9979,142,202,344 +2011-06-04 18:00:00,2,0,0,2,30.34,32.575,30,11.0014,127,214,341 +2011-06-04 19:00:00,2,0,0,2,28.7,31.82,39,6.0032,79,206,285 +2011-06-04 20:00:00,2,0,0,2,28.7,32.575,48,6.0032,90,149,239 +2011-06-04 21:00:00,2,0,0,2,27.06,31.06,47,7.0015,46,139,185 +2011-06-04 22:00:00,2,0,0,1,26.24,31.06,57,15.0013,49,141,190 +2011-06-04 23:00:00,2,0,0,2,26.24,31.06,57,0,29,121,150 +2011-06-05 00:00:00,2,0,0,1,26.24,31.06,57,6.0032,23,90,113 +2011-06-05 01:00:00,2,0,0,2,26.24,31.06,61,11.0014,26,70,96 +2011-06-05 02:00:00,2,0,0,2,26.24,31.06,61,11.0014,16,48,64 +2011-06-05 03:00:00,2,0,0,2,25.42,30.305,65,11.0014,22,25,47 +2011-06-05 04:00:00,2,0,0,2,25.42,30.305,65,11.0014,4,8,12 +2011-06-05 05:00:00,2,0,0,2,25.42,30.305,61,8.9981,1,5,6 +2011-06-05 06:00:00,2,0,0,2,25.42,30.305,61,7.0015,10,11,21 +2011-06-05 07:00:00,2,0,0,2,24.6,29.545,73,16.9979,8,19,27 +2011-06-05 08:00:00,2,0,0,2,24.6,29.545,73,16.9979,24,74,98 +2011-06-05 09:00:00,2,0,0,2,24.6,28.79,78,12.998,53,111,164 +2011-06-05 10:00:00,2,0,0,2,25.42,29.545,73,6.0032,83,168,251 +2011-06-05 11:00:00,2,0,0,2,26.24,30.305,69,7.0015,121,214,335 +2011-06-05 12:00:00,2,0,0,2,26.24,30.305,69,7.0015,123,212,335 +2011-06-05 13:00:00,2,0,0,1,27.06,31.06,65,7.0015,154,213,367 +2011-06-05 14:00:00,2,0,0,1,28.7,32.575,58,11.0014,161,224,385 +2011-06-05 15:00:00,2,0,0,1,28.7,32.575,54,0,161,256,417 +2011-06-05 16:00:00,2,0,0,1,29.52,33.335,51,6.0032,138,260,398 +2011-06-05 17:00:00,2,0,0,1,30.34,33.335,51,0,126,264,390 +2011-06-05 18:00:00,2,0,0,1,28.7,32.575,58,7.0015,124,239,363 +2011-06-05 19:00:00,2,0,0,1,27.88,31.82,65,11.0014,108,249,357 +2011-06-05 20:00:00,2,0,0,1,27.06,31.06,69,12.998,84,195,279 +2011-06-05 21:00:00,2,0,0,1,26.24,30.305,73,11.0014,54,111,165 +2011-06-05 22:00:00,2,0,0,1,26.24,29.545,78,15.0013,36,94,130 +2011-06-05 23:00:00,2,0,0,1,25.42,29.545,78,8.9981,25,61,86 +2011-06-06 00:00:00,2,0,1,1,25.42,29.545,78,8.9981,11,18,29 +2011-06-06 01:00:00,2,0,1,1,24.6,28.03,83,8.9981,9,5,14 +2011-06-06 02:00:00,2,0,1,1,23.78,27.275,88,7.0015,4,4,8 +2011-06-06 03:00:00,2,0,1,1,23.78,27.275,88,0,2,3,5 +2011-06-06 04:00:00,2,0,1,1,22.96,26.515,94,7.0015,4,4,8 +2011-06-06 05:00:00,2,0,1,1,22.96,26.515,88,6.0032,7,24,31 +2011-06-06 06:00:00,2,0,1,1,23.78,27.275,88,0,11,101,112 +2011-06-06 07:00:00,2,0,1,1,25.42,29.545,78,7.0015,18,281,299 +2011-06-06 08:00:00,2,0,1,1,26.24,30.305,73,6.0032,28,410,438 +2011-06-06 09:00:00,2,0,1,1,28.7,32.575,58,11.0014,26,162,188 +2011-06-06 10:00:00,2,0,1,1,29.52,33.335,51,15.0013,31,64,95 +2011-06-06 11:00:00,2,0,1,1,30.34,33.335,42,8.9981,39,72,111 +2011-06-06 12:00:00,2,0,1,1,31.16,33.335,37,11.0014,25,128,153 +2011-06-06 13:00:00,2,0,1,1,31.98,34.09,35,0,28,152,180 +2011-06-06 14:00:00,2,0,1,1,31.98,34.09,31,8.9981,46,99,145 +2011-06-06 15:00:00,2,0,1,1,32.8,34.85,29,12.998,38,127,165 +2011-06-06 16:00:00,2,0,1,1,31.16,33.335,33,8.9981,34,233,267 +2011-06-06 17:00:00,2,0,1,1,31.98,34.09,33,19.0012,63,516,579 +2011-06-06 18:00:00,2,0,1,1,31.16,33.335,31,8.9981,56,500,556 +2011-06-06 19:00:00,2,0,1,1,29.52,33.335,54,12.998,64,343,407 +2011-06-06 20:00:00,2,0,1,1,27.88,31.82,61,8.9981,59,277,336 +2011-06-06 21:00:00,2,0,1,1,27.06,31.06,57,6.0032,29,160,189 +2011-06-06 22:00:00,2,0,1,1,27.06,31.06,61,6.0032,36,137,173 +2011-06-06 23:00:00,2,0,1,1,26.24,30.305,69,6.0032,5,55,60 +2011-06-07 00:00:00,2,0,1,1,26.24,30.305,65,6.0032,5,15,20 +2011-06-07 01:00:00,2,0,1,1,25.42,30.305,69,8.9981,2,2,4 +2011-06-07 02:00:00,2,0,1,1,24.6,29.545,73,6.0032,3,2,5 +2011-06-07 03:00:00,2,0,1,1,24.6,29.545,73,6.0032,1,1,2 +2011-06-07 04:00:00,2,0,1,1,23.78,27.275,83,8.9981,2,3,5 +2011-06-07 05:00:00,2,0,1,1,23.78,27.275,88,11.0014,2,30,32 +2011-06-07 06:00:00,2,0,1,1,24.6,28.79,78,8.9981,10,116,126 +2011-06-07 07:00:00,2,0,1,2,26.24,30.305,69,12.998,23,311,334 +2011-06-07 08:00:00,2,0,1,2,27.88,31.82,61,8.9981,45,432,477 +2011-06-07 09:00:00,2,0,1,2,29.52,33.335,58,15.0013,27,190,217 +2011-06-07 10:00:00,2,0,1,2,31.16,34.09,48,12.998,37,86,123 +2011-06-07 11:00:00,2,0,1,2,31.16,34.85,52,16.9979,38,113,151 +2011-06-07 12:00:00,2,0,1,2,32.8,36.365,46,19.0012,42,141,183 +2011-06-07 13:00:00,2,0,1,2,32.8,36.365,43,16.9979,55,141,196 +2011-06-07 14:00:00,2,0,1,2,32.8,36.365,43,19.0012,34,112,146 +2011-06-07 15:00:00,2,0,1,2,33.62,37.12,41,22.0028,56,127,183 +2011-06-07 16:00:00,2,0,1,1,32.8,35.605,38,15.0013,55,253,308 +2011-06-07 17:00:00,2,0,1,1,32.8,36.365,43,16.9979,64,475,539 +2011-06-07 18:00:00,2,0,1,1,31.98,34.85,46,19.0012,72,479,551 +2011-06-07 19:00:00,2,0,1,1,31.16,34.09,48,16.9979,69,355,424 +2011-06-07 20:00:00,2,0,1,1,30.34,34.09,56,8.9981,45,301,346 +2011-06-07 21:00:00,2,0,1,1,29.52,34.09,70,8.9981,31,187,218 +2011-06-07 22:00:00,2,0,1,1,28.7,32.575,65,8.9981,27,126,153 +2011-06-07 23:00:00,2,0,1,1,27.88,31.82,79,7.0015,18,72,90 +2011-06-08 00:00:00,2,0,1,1,27.06,29.545,89,8.9981,12,29,41 +2011-06-08 01:00:00,2,0,1,1,27.06,30.305,78,0,3,20,23 +2011-06-08 02:00:00,2,0,1,1,26.24,28.79,89,6.0032,0,7,7 +2011-06-08 03:00:00,2,0,1,1,26.24,28.79,89,6.0032,2,1,3 +2011-06-08 04:00:00,2,0,1,1,25.42,28.79,83,0,0,6,6 +2011-06-08 05:00:00,2,0,1,1,25.42,28.03,88,0,0,21,21 +2011-06-08 06:00:00,2,0,1,1,26.24,28.79,89,8.9981,13,103,116 +2011-06-08 07:00:00,2,0,1,1,27.06,31.06,74,7.0015,24,329,353 +2011-06-08 08:00:00,2,0,1,1,31.16,35.605,58,11.0014,46,435,481 +2011-06-08 09:00:00,2,0,1,1,31.16,35.605,58,11.0014,34,168,202 +2011-06-08 10:00:00,2,0,1,1,33.62,37.12,43,15.0013,27,63,90 +2011-06-08 11:00:00,2,0,1,1,34.44,37.88,41,12.998,28,106,134 +2011-06-08 12:00:00,2,0,1,1,36.08,40.91,42,8.9981,15,134,149 +2011-06-08 13:00:00,2,0,1,1,36.9,42.425,42,0,20,116,136 +2011-06-08 14:00:00,2,0,1,1,37.72,43.94,40,16.9979,44,111,155 +2011-06-08 15:00:00,2,0,1,1,37.72,43.94,40,11.0014,28,100,128 +2011-06-08 16:00:00,2,0,1,1,37.72,43.94,40,15.0013,34,199,233 +2011-06-08 17:00:00,2,0,1,1,37.72,42.425,35,15.0013,80,426,506 +2011-06-08 18:00:00,2,0,1,1,36.9,40.91,37,15.0013,61,398,459 +2011-06-08 19:00:00,2,0,1,1,33.62,40.15,59,8.9981,61,323,384 +2011-06-08 20:00:00,2,0,1,1,32.8,39.395,63,8.9981,55,225,280 +2011-06-08 21:00:00,2,0,1,1,32.8,40.15,66,8.9981,34,168,202 +2011-06-08 22:00:00,2,0,1,1,31.16,37.12,75,11.0014,37,139,176 +2011-06-08 23:00:00,2,0,1,1,31.16,37.12,75,12.998,18,98,116 +2011-06-09 00:00:00,2,0,1,2,30.34,35.605,79,8.9981,7,40,47 +2011-06-09 01:00:00,2,0,1,1,30.34,35.605,79,7.0015,3,13,16 +2011-06-09 02:00:00,2,0,1,2,29.52,35.605,84,11.0014,0,6,6 +2011-06-09 03:00:00,2,0,1,2,29.52,35.605,84,7.0015,0,2,2 +2011-06-09 04:00:00,2,0,1,2,29.52,34.85,79,6.0032,2,4,6 +2011-06-09 05:00:00,2,0,1,2,28.7,33.335,84,0,1,19,20 +2011-06-09 06:00:00,2,0,1,2,29.52,35.605,84,6.0032,13,105,118 +2011-06-09 07:00:00,2,0,1,2,29.52,34.85,79,8.9981,31,283,314 +2011-06-09 08:00:00,2,0,1,2,31.16,36.365,70,7.0015,32,400,432 +2011-06-09 09:00:00,2,0,1,1,34.44,39.395,49,0,20,148,168 +2011-06-09 10:00:00,2,0,1,1,35.26,40.91,50,19.0012,20,74,94 +2011-06-09 11:00:00,2,0,1,1,36.9,42.425,42,15.0013,36,82,118 +2011-06-09 12:00:00,2,0,1,1,37.72,42.425,35,12.998,40,100,140 +2011-06-09 13:00:00,2,0,1,1,36.9,40.91,37,6.0032,18,118,136 +2011-06-09 14:00:00,2,0,1,1,37.72,43.94,40,12.998,25,93,118 +2011-06-09 15:00:00,2,0,1,1,38.54,41.665,31,11.0014,18,86,104 +2011-06-09 16:00:00,2,0,1,1,37.72,41.665,33,8.9981,30,170,200 +2011-06-09 17:00:00,2,0,1,1,36.9,40.91,37,16.9979,54,355,409 +2011-06-09 18:00:00,2,0,1,1,36.08,40.15,39,19.0012,52,414,466 +2011-06-09 19:00:00,2,0,1,2,34.44,37.12,39,22.0028,55,271,326 +2011-06-09 20:00:00,2,0,1,2,32.8,36.365,43,12.998,40,214,254 +2011-06-09 21:00:00,2,0,1,3,31.16,34.85,52,0,29,142,171 +2011-06-09 22:00:00,2,0,1,2,30.34,34.09,58,11.0014,22,131,153 +2011-06-09 23:00:00,2,0,1,2,30.34,34.85,57,11.0014,15,82,97 +2011-06-10 00:00:00,2,0,1,3,28.7,32.575,65,15.0013,8,61,69 +2011-06-10 01:00:00,2,0,1,3,28.7,32.575,65,15.0013,5,18,23 +2011-06-10 02:00:00,2,0,1,1,27.88,31.82,69,11.0014,6,7,13 +2011-06-10 03:00:00,2,0,1,1,27.88,31.82,69,11.0014,3,3,6 +2011-06-10 04:00:00,2,0,1,1,27.06,30.305,78,11.0014,0,4,4 +2011-06-10 05:00:00,2,0,1,1,27.06,30.305,78,11.0014,0,28,28 +2011-06-10 06:00:00,2,0,1,1,27.06,30.305,78,6.0032,10,94,104 +2011-06-10 07:00:00,2,0,1,1,29.52,34.09,66,7.0015,25,242,267 +2011-06-10 08:00:00,2,0,1,1,30.34,34.09,58,8.9981,29,423,452 +2011-06-10 09:00:00,2,0,1,1,31.16,34.85,55,0,37,176,213 +2011-06-10 10:00:00,2,0,1,1,31.98,35.605,52,0,23,88,111 +2011-06-10 11:00:00,2,0,1,1,33.62,37.88,46,0,46,107,153 +2011-06-10 12:00:00,2,0,1,1,34.44,37.88,44,8.9981,40,167,207 +2011-06-10 13:00:00,2,0,1,1,34.44,37.88,44,7.0015,40,149,189 +2011-06-10 14:00:00,2,0,1,1,35.26,38.635,39,0,44,121,165 +2011-06-10 15:00:00,2,0,1,1,34.44,37.88,44,7.0015,49,163,212 +2011-06-10 16:00:00,2,0,1,1,33.62,39.395,56,19.9995,46,239,285 +2011-06-10 17:00:00,2,0,1,1,33.62,38.635,52,15.0013,63,454,517 +2011-06-10 18:00:00,2,0,1,1,32.8,38.635,59,15.0013,96,367,463 +2011-06-10 19:00:00,2,0,1,1,31.98,37.12,59,12.998,61,245,306 +2011-06-10 20:00:00,2,0,1,1,31.16,35.605,62,7.0015,53,197,250 +2011-06-10 21:00:00,2,0,1,1,31.16,36.365,66,8.9981,55,163,218 +2011-06-10 22:00:00,2,0,1,1,29.52,34.85,74,16.9979,40,145,185 +2011-06-10 23:00:00,2,0,1,1,29.52,34.85,74,11.0014,36,110,146 +2011-06-11 00:00:00,2,0,0,1,28.7,33.335,79,8.9981,28,89,117 +2011-06-11 01:00:00,2,0,0,1,28.7,33.335,79,6.0032,10,67,77 +2011-06-11 02:00:00,2,0,0,1,28.7,33.335,79,7.0015,10,50,60 +2011-06-11 03:00:00,2,0,0,1,27.88,31.82,83,6.0032,10,18,28 +2011-06-11 04:00:00,2,0,0,1,27.88,31.82,79,6.0032,4,9,13 +2011-06-11 05:00:00,2,0,0,1,27.88,31.82,74,8.9981,4,12,16 +2011-06-11 06:00:00,2,0,0,1,28.7,32.575,61,8.9981,9,31,40 +2011-06-11 07:00:00,2,0,0,1,29.52,33.335,58,12.998,18,50,68 +2011-06-11 08:00:00,2,0,0,1,30.34,34.09,58,12.998,32,111,143 +2011-06-11 09:00:00,2,0,0,1,30.34,34.09,62,8.9981,59,171,230 +2011-06-11 10:00:00,2,0,0,1,30.34,34.09,58,11.0014,91,173,264 +2011-06-11 11:00:00,2,0,0,1,31.16,35.605,62,8.9981,110,215,325 +2011-06-11 12:00:00,2,0,0,1,32.8,37.88,55,15.0013,112,235,347 +2011-06-11 13:00:00,2,0,0,1,32.8,37.88,55,12.998,150,237,387 +2011-06-11 14:00:00,2,0,0,1,33.62,38.635,49,7.0015,148,232,380 +2011-06-11 15:00:00,2,0,0,1,33.62,38.635,49,7.0015,142,232,374 +2011-06-11 16:00:00,2,0,0,2,32.8,36.365,46,12.998,169,225,394 +2011-06-11 17:00:00,2,0,0,2,30.34,34.09,58,11.0014,147,190,337 +2011-06-11 18:00:00,2,0,0,2,29.52,34.09,62,8.9981,131,155,286 +2011-06-11 19:00:00,2,0,0,1,28.7,32.575,65,12.998,97,167,264 +2011-06-11 20:00:00,2,0,0,1,27.88,31.82,74,16.9979,95,180,275 +2011-06-11 21:00:00,2,0,0,1,27.06,31.06,74,15.0013,76,144,220 +2011-06-11 22:00:00,2,0,0,1,27.06,30.305,78,15.0013,53,137,190 +2011-06-11 23:00:00,2,0,0,1,27.06,31.06,74,7.0015,24,107,131 +2011-06-12 00:00:00,2,0,0,1,27.06,30.305,78,15.0013,19,100,119 +2011-06-12 01:00:00,2,0,0,1,26.24,28.79,83,7.0015,19,74,93 +2011-06-12 02:00:00,2,0,0,1,26.24,28.79,89,16.9979,9,57,66 +2011-06-12 03:00:00,2,0,0,1,26.24,28.79,89,19.0012,8,20,28 +2011-06-12 04:00:00,2,0,0,1,25.42,28.03,88,11.0014,8,6,14 +2011-06-12 05:00:00,2,0,0,1,25.42,28.03,88,15.0013,5,5,10 +2011-06-12 06:00:00,2,0,0,1,25.42,28.03,88,7.0015,5,9,14 +2011-06-12 07:00:00,2,0,0,1,26.24,29.545,78,7.0015,7,27,34 +2011-06-12 08:00:00,2,0,0,1,28.7,33.335,74,0,28,64,92 +2011-06-12 09:00:00,2,0,0,1,29.52,34.09,66,0,75,107,182 +2011-06-12 10:00:00,2,0,0,1,31.16,35.605,58,6.0032,120,191,311 +2011-06-12 11:00:00,2,0,0,1,31.98,36.365,55,7.0015,131,236,367 +2011-06-12 12:00:00,2,0,0,1,33.62,37.88,46,0,176,244,420 +2011-06-12 13:00:00,2,0,0,1,31.98,37.12,59,19.0012,109,264,373 +2011-06-12 14:00:00,2,0,0,1,33.62,39.395,56,16.9979,96,219,315 +2011-06-12 15:00:00,2,0,0,1,32.8,38.635,59,19.9995,142,218,360 +2011-06-12 16:00:00,2,0,0,3,27.88,31.82,83,19.0012,115,235,350 +2011-06-12 17:00:00,2,0,0,3,27.88,31.82,83,19.0012,94,158,252 +2011-06-12 18:00:00,2,0,0,1,28.7,33.335,74,11.0014,69,187,256 +2011-06-12 19:00:00,2,0,0,1,28.7,33.335,74,7.0015,67,156,223 +2011-06-12 20:00:00,2,0,0,1,27.06,30.305,83,11.0014,62,144,206 +2011-06-12 21:00:00,2,0,0,1,27.06,30.305,83,7.0015,39,101,140 +2011-06-12 22:00:00,2,0,0,1,26.24,28.79,83,8.9981,31,97,128 +2011-06-12 23:00:00,2,0,0,1,26.24,29.545,78,12.998,33,74,107 +2011-06-13 00:00:00,2,0,1,1,26.24,29.545,78,8.9981,8,20,28 +2011-06-13 01:00:00,2,0,1,1,26.24,30.305,73,15.0013,6,10,16 +2011-06-13 02:00:00,2,0,1,1,25.42,29.545,73,19.0012,2,8,10 +2011-06-13 03:00:00,2,0,1,1,24.6,30.305,60,32.9975,1,6,7 +2011-06-13 04:00:00,2,0,1,1,22.96,26.515,64,19.9995,1,3,4 +2011-06-13 05:00:00,2,0,1,1,22.14,25.76,64,26.0027,2,27,29 +2011-06-13 06:00:00,2,0,1,1,22.14,25.76,64,27.9993,7,98,105 +2011-06-13 07:00:00,2,0,1,1,22.96,26.515,56,23.9994,26,302,328 +2011-06-13 08:00:00,2,0,1,1,23.78,27.275,49,30.0026,44,432,476 +2011-06-13 09:00:00,2,0,1,1,25.42,31.06,46,23.9994,35,189,224 +2011-06-13 10:00:00,2,0,1,1,26.24,31.06,41,22.0028,38,80,118 +2011-06-13 11:00:00,2,0,1,1,27.06,31.06,41,19.9995,53,106,159 +2011-06-13 12:00:00,2,0,1,1,27.06,31.06,41,19.0012,35,161,196 +2011-06-13 13:00:00,2,0,1,1,28.7,31.82,37,0,53,174,227 +2011-06-13 14:00:00,2,0,1,1,28.7,31.82,34,16.9979,55,145,200 +2011-06-13 15:00:00,2,0,1,1,28.7,31.82,37,30.0026,58,127,185 +2011-06-13 16:00:00,2,0,1,1,28.7,31.82,37,27.9993,64,262,326 +2011-06-13 17:00:00,2,0,1,1,28.7,31.82,39,22.0028,72,529,601 +2011-06-13 18:00:00,2,0,1,1,28.7,31.82,37,23.9994,76,510,586 +2011-06-13 19:00:00,2,0,1,1,27.06,31.06,39,19.0012,75,348,423 +2011-06-13 20:00:00,2,0,1,1,26.24,31.06,44,16.9979,78,253,331 +2011-06-13 21:00:00,2,0,1,1,26.24,31.06,41,16.9979,40,178,218 +2011-06-13 22:00:00,2,0,1,1,25.42,31.06,46,15.0013,20,114,134 +2011-06-13 23:00:00,2,0,1,1,25.42,31.06,46,12.998,14,75,89 +2011-06-14 00:00:00,2,0,1,1,24.6,31.06,49,12.998,13,18,31 +2011-06-14 01:00:00,2,0,1,1,24.6,31.06,49,16.9979,3,10,13 +2011-06-14 02:00:00,2,0,1,1,24.6,31.06,49,19.0012,2,8,10 +2011-06-14 03:00:00,2,0,1,1,23.78,27.275,53,22.0028,1,1,2 +2011-06-14 04:00:00,2,0,1,1,22.14,25.76,60,16.9979,0,3,3 +2011-06-14 05:00:00,2,0,1,1,22.14,25.76,56,22.0028,3,23,26 +2011-06-14 06:00:00,2,0,1,1,22.14,25.76,56,19.9995,6,107,113 +2011-06-14 07:00:00,2,0,1,1,22.96,26.515,52,27.9993,19,346,365 +2011-06-14 08:00:00,2,0,1,1,23.78,27.275,49,26.0027,45,441,486 +2011-06-14 09:00:00,2,0,1,1,25.42,31.06,46,12.998,19,174,193 +2011-06-14 10:00:00,2,0,1,1,25.42,31.06,46,15.0013,33,97,130 +2011-06-14 11:00:00,2,0,1,1,26.24,31.06,41,19.0012,40,103,143 +2011-06-14 12:00:00,2,0,1,1,26.24,31.06,41,23.9994,30,139,169 +2011-06-14 13:00:00,2,0,1,1,26.24,31.06,44,15.0013,33,176,209 +2011-06-14 14:00:00,2,0,1,2,26.24,31.06,47,12.998,41,118,159 +2011-06-14 15:00:00,2,0,1,1,26.24,31.06,47,11.0014,42,136,178 +2011-06-14 16:00:00,2,0,1,1,27.88,31.82,41,12.998,51,279,330 +2011-06-14 17:00:00,2,0,1,3,26.24,31.06,50,19.0012,85,484,569 +2011-06-14 18:00:00,2,0,1,1,25.42,31.06,51,22.0028,65,473,538 +2011-06-14 19:00:00,2,0,1,1,26.24,31.06,50,23.9994,51,335,386 +2011-06-14 20:00:00,2,0,1,1,24.6,31.06,56,11.0014,60,237,297 +2011-06-14 21:00:00,2,0,1,1,24.6,31.06,56,19.9995,37,206,243 +2011-06-14 22:00:00,2,0,1,1,23.78,27.275,60,15.0013,29,159,188 +2011-06-14 23:00:00,2,0,1,1,22.96,26.515,68,15.0013,19,91,110 +2011-06-15 00:00:00,2,0,1,1,22.96,26.515,64,23.9994,8,44,52 +2011-06-15 01:00:00,2,0,1,1,22.14,25.76,64,19.0012,0,14,14 +2011-06-15 02:00:00,2,0,1,1,21.32,25,63,15.0013,0,9,9 +2011-06-15 03:00:00,2,0,1,1,20.5,24.24,68,16.9979,0,1,1 +2011-06-15 04:00:00,2,0,1,1,20.5,24.24,63,19.0012,0,4,4 +2011-06-15 05:00:00,2,0,1,1,19.68,23.485,67,19.0012,1,20,21 +2011-06-15 06:00:00,2,0,1,1,20.5,24.24,63,16.9979,11,110,121 +2011-06-15 07:00:00,2,0,1,1,22.14,25.76,60,8.9981,22,348,370 +2011-06-15 08:00:00,2,0,1,1,23.78,27.275,53,8.9981,53,445,498 +2011-06-15 09:00:00,2,0,1,1,24.6,31.06,49,0,22,185,207 +2011-06-15 10:00:00,2,0,1,1,26.24,31.06,47,11.0014,27,108,135 +2011-06-15 11:00:00,2,0,1,1,27.88,31.82,36,0,49,115,164 +2011-06-15 12:00:00,2,0,1,1,28.7,31.82,34,15.0013,33,178,211 +2011-06-15 13:00:00,2,0,1,1,30.34,32.575,28,19.0012,43,146,189 +2011-06-15 14:00:00,2,0,1,1,30.34,32.575,28,0,50,128,178 +2011-06-15 15:00:00,2,0,1,1,31.16,33.335,27,0,33,131,164 +2011-06-15 16:00:00,2,0,1,1,31.16,33.335,27,8.9981,47,265,312 +2011-06-15 17:00:00,2,0,1,1,30.34,32.575,28,7.0015,83,555,638 +2011-06-15 18:00:00,2,0,1,1,29.52,32.575,32,8.9981,80,527,607 +2011-06-15 19:00:00,2,0,1,1,28.7,31.82,37,19.0012,54,362,416 +2011-06-15 20:00:00,2,0,1,1,27.06,31.06,44,11.0014,57,273,330 +2011-06-15 21:00:00,2,0,1,1,26.24,31.06,47,15.0013,48,209,257 +2011-06-15 22:00:00,2,0,1,1,25.42,31.06,50,7.0015,31,144,175 +2011-06-15 23:00:00,2,0,1,1,25.42,31.06,53,0,17,90,107 +2011-06-16 00:00:00,2,0,1,1,24.6,31.06,56,7.0015,9,38,47 +2011-06-16 01:00:00,2,0,1,1,23.78,27.275,60,0,4,13,17 +2011-06-16 02:00:00,2,0,1,1,24.6,31.06,56,6.0032,1,4,5 +2011-06-16 03:00:00,2,0,1,2,22.96,26.515,73,6.0032,0,4,4 +2011-06-16 04:00:00,2,0,1,2,22.96,26.515,68,7.0015,0,6,6 +2011-06-16 05:00:00,2,0,1,1,24.6,30.305,64,12.998,7,18,25 +2011-06-16 06:00:00,2,0,1,3,23.78,27.275,73,11.0014,8,104,112 +2011-06-16 07:00:00,2,0,1,3,22.96,26.515,78,11.0014,16,172,188 +2011-06-16 08:00:00,2,0,1,2,24.6,29.545,69,8.9981,24,364,388 +2011-06-16 09:00:00,2,0,1,2,25.42,30.305,65,12.998,29,232,261 +2011-06-16 10:00:00,2,0,1,2,27.06,31.06,61,16.9979,18,103,121 +2011-06-16 11:00:00,2,0,1,2,27.88,31.82,61,19.9995,33,117,150 +2011-06-16 12:00:00,2,0,1,1,29.52,33.335,54,26.0027,41,165,206 +2011-06-16 13:00:00,2,0,1,2,29.52,33.335,54,16.9979,37,114,151 +2011-06-16 14:00:00,2,0,1,2,29.52,33.335,54,22.0028,39,114,153 +2011-06-16 15:00:00,2,0,1,2,28.7,32.575,61,19.9995,32,127,159 +2011-06-16 16:00:00,2,0,1,3,27.06,31.06,69,12.998,36,258,294 +2011-06-16 17:00:00,2,0,1,2,26.24,29.545,78,7.0015,42,230,272 +2011-06-16 18:00:00,2,0,1,1,26.24,28.79,83,15.0013,26,299,325 +2011-06-16 19:00:00,2,0,1,1,25.42,28.79,83,19.0012,58,269,327 +2011-06-16 20:00:00,2,0,1,1,25.42,28.79,83,22.0028,25,176,201 +2011-06-16 21:00:00,2,0,1,3,25.42,28.79,83,16.9979,34,154,188 +2011-06-16 22:00:00,2,0,1,3,25.42,28.79,83,16.9979,24,127,151 +2011-06-16 23:00:00,2,0,1,3,24.6,28.03,83,16.9979,2,14,16 +2011-06-17 00:00:00,2,0,1,1,22.96,26.515,88,6.0032,3,21,24 +2011-06-17 01:00:00,2,0,1,1,22.96,26.515,94,8.9981,4,19,23 +2011-06-17 02:00:00,2,0,1,1,22.96,26.515,94,7.0015,2,11,13 +2011-06-17 03:00:00,2,0,1,1,22.96,26.515,94,7.0015,1,5,6 +2011-06-17 04:00:00,2,0,1,1,22.14,25.76,94,8.9981,1,5,6 +2011-06-17 05:00:00,2,0,1,1,22.14,25.76,100,0,1,12,13 +2011-06-17 06:00:00,2,0,1,1,22.96,26.515,94,0,8,89,97 +2011-06-17 07:00:00,2,0,1,1,24.6,28.03,83,0,25,225,250 +2011-06-17 08:00:00,2,0,1,2,24.6,28.03,83,0,28,426,454 +2011-06-17 09:00:00,2,0,1,1,28.7,32.575,58,12.998,28,196,224 +2011-06-17 10:00:00,2,0,1,1,28.7,32.575,58,12.998,44,126,170 +2011-06-17 11:00:00,2,0,1,1,27.88,31.82,69,16.9979,43,138,181 +2011-06-17 12:00:00,2,0,1,1,28.7,32.575,65,16.9979,49,194,243 +2011-06-17 13:00:00,2,0,1,1,30.34,34.09,62,19.0012,48,156,204 +2011-06-17 14:00:00,2,0,1,1,31.16,34.85,52,12.998,73,142,215 +2011-06-17 15:00:00,2,0,1,1,31.98,34.85,43,15.0013,62,181,243 +2011-06-17 16:00:00,2,0,1,1,31.16,34.09,45,11.0014,69,286,355 +2011-06-17 17:00:00,2,0,1,3,31.16,34.09,40,12.998,85,467,552 +2011-06-17 18:00:00,2,0,1,3,31.16,34.09,40,12.998,62,388,450 +2011-06-17 19:00:00,2,0,1,3,26.24,28.79,83,16.9979,53,275,328 +2011-06-17 20:00:00,2,0,1,1,26.24,29.545,78,7.0015,40,192,232 +2011-06-17 21:00:00,2,0,1,1,26.24,29.545,78,6.0032,49,159,208 +2011-06-17 22:00:00,2,0,1,1,25.42,28.03,88,8.9981,48,127,175 +2011-06-17 23:00:00,2,0,1,1,25.42,28.79,83,8.9981,37,141,178 +2011-06-18 00:00:00,2,0,0,1,25.42,28.03,88,8.9981,21,83,104 +2011-06-18 01:00:00,2,0,0,1,25.42,28.79,83,7.0015,15,80,95 +2011-06-18 02:00:00,2,0,0,1,24.6,27.275,88,0,16,37,53 +2011-06-18 03:00:00,2,0,0,1,24.6,27.275,88,6.0032,4,16,20 +2011-06-18 04:00:00,2,0,0,1,24.6,27.275,88,6.0032,1,4,5 +2011-06-18 05:00:00,2,0,0,1,25.42,28.79,83,0,1,6,7 +2011-06-18 06:00:00,2,0,0,1,25.42,28.79,83,7.0015,9,18,27 +2011-06-18 07:00:00,2,0,0,1,26.24,29.545,78,8.9981,12,45,57 +2011-06-18 08:00:00,2,0,0,1,27.06,30.305,78,6.0032,28,103,131 +2011-06-18 09:00:00,2,0,0,1,28.7,32.575,61,15.0013,62,156,218 +2011-06-18 10:00:00,2,0,0,1,29.52,34.09,62,12.998,68,176,244 +2011-06-18 11:00:00,2,0,0,1,29.52,34.09,62,8.9981,134,270,404 +2011-06-18 12:00:00,2,0,0,1,30.34,34.85,66,6.0032,162,258,420 +2011-06-18 13:00:00,2,0,0,1,31.16,34.85,55,0,135,192,327 +2011-06-18 14:00:00,2,0,0,2,32.8,36.365,46,19.0012,138,196,334 +2011-06-18 15:00:00,2,0,0,2,33.62,37.88,46,8.9981,153,214,367 +2011-06-18 16:00:00,2,0,0,2,31.16,34.85,52,15.0013,193,275,468 +2011-06-18 17:00:00,2,0,0,2,31.16,34.09,48,11.0014,210,239,449 +2011-06-18 18:00:00,2,0,0,2,30.34,34.09,55,12.998,118,263,381 +2011-06-18 19:00:00,2,0,0,2,30.34,33.335,51,7.0015,99,227,326 +2011-06-18 20:00:00,2,0,0,2,29.52,33.335,58,8.9981,61,127,188 +2011-06-18 21:00:00,2,0,0,2,29.52,34.09,66,7.0015,58,125,183 +2011-06-18 22:00:00,2,0,0,2,29.52,34.09,62,8.9981,56,105,161 +2011-06-18 23:00:00,2,0,0,2,29.52,34.09,62,0,53,97,150 +2011-06-19 00:00:00,2,0,0,1,28.7,32.575,65,0,18,71,89 +2011-06-19 01:00:00,2,0,0,2,28.7,32.575,65,6.0032,17,59,76 +2011-06-19 02:00:00,2,0,0,1,27.88,31.82,74,6.0032,13,59,72 +2011-06-19 03:00:00,2,0,0,2,27.06,30.305,78,8.9981,14,16,30 +2011-06-19 04:00:00,2,0,0,2,27.06,31.06,74,8.9981,7,10,17 +2011-06-19 05:00:00,2,0,0,2,27.06,30.305,78,0,7,12,19 +2011-06-19 06:00:00,2,0,0,2,27.06,30.305,78,11.0014,11,22,33 +2011-06-19 07:00:00,2,0,0,2,27.06,30.305,78,11.0014,35,36,71 +2011-06-19 08:00:00,2,0,0,3,27.88,31.82,74,7.0015,25,59,84 +2011-06-19 09:00:00,2,0,0,2,27.88,31.82,74,7.0015,58,111,169 +2011-06-19 10:00:00,2,0,0,2,28.7,32.575,61,7.0015,86,158,244 +2011-06-19 11:00:00,2,0,0,2,29.52,33.335,58,6.0032,141,236,377 +2011-06-19 12:00:00,2,0,0,2,30.34,34.09,55,6.0032,141,255,396 +2011-06-19 13:00:00,2,0,0,2,30.34,33.335,51,0,149,214,363 +2011-06-19 14:00:00,2,0,0,3,30.34,34.09,58,7.0015,124,193,317 +2011-06-19 15:00:00,2,0,0,2,30.34,34.09,55,7.0015,146,216,362 +2011-06-19 16:00:00,2,0,0,2,31.16,34.09,48,0,121,257,378 +2011-06-19 17:00:00,2,0,0,1,30.34,33.335,51,0,159,238,397 +2011-06-19 18:00:00,2,0,0,2,30.34,34.09,58,6.0032,78,218,296 +2011-06-19 19:00:00,2,0,0,1,29.52,34.09,62,8.9981,94,217,311 +2011-06-19 20:00:00,2,0,0,1,28.7,32.575,70,12.998,86,146,232 +2011-06-19 21:00:00,2,0,0,1,27.88,31.82,79,8.9981,57,110,167 +2011-06-19 22:00:00,2,0,0,1,27.06,30.305,78,15.0013,38,114,152 +2011-06-19 23:00:00,2,0,0,1,27.06,30.305,78,12.998,14,78,92 +2011-07-01 00:00:00,3,0,1,1,27.06,31.06,50,0,20,48,68 +2011-07-01 01:00:00,3,0,1,1,27.06,31.06,50,0,15,16,31 +2011-07-01 02:00:00,3,0,1,1,25.42,30.305,69,0,6,7,13 +2011-07-01 03:00:00,3,0,1,1,26.24,31.06,53,0,5,6,11 +2011-07-01 04:00:00,3,0,1,1,25.42,31.06,57,0,1,5,6 +2011-07-01 05:00:00,3,0,1,1,24.6,30.305,64,8.9981,3,27,30 +2011-07-01 06:00:00,3,0,1,1,25.42,30.305,61,8.9981,11,97,108 +2011-07-01 07:00:00,3,0,1,1,27.06,31.06,54,7.0015,25,218,243 +2011-07-01 08:00:00,3,0,1,1,28.7,31.82,42,11.0014,39,453,492 +2011-07-01 09:00:00,3,0,1,1,30.34,32.575,35,11.0014,58,202,260 +2011-07-01 10:00:00,3,0,1,1,31.16,33.335,33,11.0014,61,109,170 +2011-07-01 11:00:00,3,0,1,1,32.8,34.85,26,0,68,146,214 +2011-07-01 12:00:00,3,0,1,1,32.8,34.85,26,0,83,180,263 +2011-07-01 13:00:00,3,0,1,1,32.8,34.09,24,0,83,209,292 +2011-07-01 14:00:00,3,0,1,1,33.62,34.85,23,12.998,78,225,303 +2011-07-01 15:00:00,3,0,1,1,33.62,34.85,21,16.9979,82,299,381 +2011-07-01 16:00:00,3,0,1,1,33.62,34.85,17,0,85,342,427 +2011-07-01 17:00:00,3,0,1,1,33.62,34.85,21,12.998,99,362,461 +2011-07-01 18:00:00,3,0,1,1,32.8,34.09,24,16.9979,98,324,422 +2011-07-01 19:00:00,3,0,1,1,31.98,33.335,25,12.998,80,238,318 +2011-07-01 20:00:00,3,0,1,1,29.52,32.575,42,15.0013,84,185,269 +2011-07-01 21:00:00,3,0,1,1,28.7,31.82,45,12.998,69,149,218 +2011-07-01 22:00:00,3,0,1,1,28.7,31.82,42,0,49,173,222 +2011-07-01 23:00:00,3,0,1,1,27.88,31.82,47,6.0032,44,96,140 +2011-07-02 00:00:00,3,0,0,1,27.88,31.82,47,6.0032,31,84,115 +2011-07-02 01:00:00,3,0,0,1,27.06,31.06,54,0,20,58,78 +2011-07-02 02:00:00,3,0,0,1,26.24,31.06,53,0,9,43,52 +2011-07-02 03:00:00,3,0,0,1,26.24,31.06,53,0,5,21,26 +2011-07-02 04:00:00,3,0,0,1,25.42,30.305,61,0,3,8,11 +2011-07-02 05:00:00,3,0,0,1,23.78,27.275,73,7.0015,1,13,14 +2011-07-02 06:00:00,3,0,0,1,25.42,30.305,69,7.0015,11,21,32 +2011-07-02 07:00:00,3,0,0,1,26.24,30.305,65,0,10,35,45 +2011-07-02 08:00:00,3,0,0,1,27.88,31.82,57,0,38,94,132 +2011-07-02 09:00:00,3,0,0,1,30.34,33.335,51,6.0032,55,124,179 +2011-07-02 10:00:00,3,0,0,1,32.8,35.605,36,0,103,168,271 +2011-07-02 11:00:00,3,0,0,1,32.8,35.605,36,6.0032,144,213,357 +2011-07-02 12:00:00,3,0,0,1,33.62,35.605,30,8.9981,142,232,374 +2011-07-02 13:00:00,3,0,0,1,33.62,35.605,30,7.0015,178,226,404 +2011-07-02 14:00:00,3,0,0,1,34.44,35.605,20,0,177,215,392 +2011-07-02 15:00:00,3,0,0,1,35.26,36.365,19,11.0014,168,163,331 +2011-07-02 16:00:00,3,0,0,1,36.08,37.12,22,15.0013,206,192,398 +2011-07-02 17:00:00,3,0,0,1,34.44,36.365,30,15.0013,179,170,349 +2011-07-02 18:00:00,3,0,0,1,33.62,35.605,30,19.0012,193,190,383 +2011-07-02 19:00:00,3,0,0,1,32.8,34.85,33,15.0013,156,149,305 +2011-07-02 20:00:00,3,0,0,1,31.16,34.09,45,19.0012,136,148,284 +2011-07-02 21:00:00,3,0,0,1,30.34,33.335,48,12.998,95,137,232 +2011-07-02 22:00:00,3,0,0,1,29.52,33.335,51,11.0014,78,123,201 +2011-07-02 23:00:00,3,0,0,1,29.52,33.335,54,19.0012,66,88,154 +2011-07-03 00:00:00,3,0,0,1,28.7,32.575,58,15.0013,47,97,144 +2011-07-03 01:00:00,3,0,0,2,28.7,32.575,61,11.0014,23,55,78 +2011-07-03 02:00:00,3,0,0,1,28.7,32.575,58,12.998,19,50,69 +2011-07-03 03:00:00,3,0,0,3,27.88,31.82,65,6.0032,8,25,33 +2011-07-03 04:00:00,3,0,0,3,27.88,31.82,65,6.0032,3,2,5 +2011-07-03 05:00:00,3,0,0,3,25.42,28.79,83,12.998,0,1,1 +2011-07-03 06:00:00,3,0,0,2,25.42,27.275,94,6.0032,0,3,3 +2011-07-03 07:00:00,3,0,0,2,26.24,28.79,89,12.998,3,22,25 +2011-07-03 08:00:00,3,0,0,1,27.88,31.82,79,15.0013,39,53,92 +2011-07-03 09:00:00,3,0,0,1,28.7,33.335,74,16.9979,82,99,181 +2011-07-03 10:00:00,3,0,0,1,30.34,34.85,66,11.0014,131,133,264 +2011-07-03 11:00:00,3,0,0,1,31.16,35.605,62,7.0015,215,175,390 +2011-07-03 12:00:00,3,0,0,1,32.8,37.88,55,7.0015,198,206,404 +2011-07-03 13:00:00,3,0,0,1,32.8,38.635,59,15.0013,248,173,421 +2011-07-03 14:00:00,3,0,0,1,33.62,39.395,56,16.9979,225,150,375 +2011-07-03 15:00:00,3,0,0,1,34.44,40.15,53,19.9995,194,182,376 +2011-07-03 16:00:00,3,0,0,1,34.44,40.15,53,19.9995,195,219,414 +2011-07-03 17:00:00,3,0,0,3,32.8,37.12,49,56.9969,181,177,358 +2011-07-03 18:00:00,3,0,0,3,32.8,37.12,49,56.9969,74,107,181 +2011-07-03 19:00:00,3,0,0,2,27.06,30.305,83,12.998,100,83,183 +2011-07-03 20:00:00,3,0,0,3,27.06,30.305,83,0,83,93,176 +2011-07-03 21:00:00,3,0,0,2,27.06,30.305,83,11.0014,75,92,167 +2011-07-03 22:00:00,3,0,0,2,27.06,30.305,78,7.0015,69,93,162 +2011-07-03 23:00:00,3,0,0,1,26.24,28.79,83,11.0014,70,77,147 +2011-07-04 00:00:00,3,1,0,1,26.24,28.79,83,8.9981,63,77,140 +2011-07-04 01:00:00,3,1,0,1,26.24,28.79,83,6.0032,43,76,119 +2011-07-04 02:00:00,3,1,0,1,26.24,28.79,83,0,33,30,63 +2011-07-04 03:00:00,3,1,0,1,26.24,29.545,78,0,13,13,26 +2011-07-04 04:00:00,3,1,0,2,27.06,30.305,78,6.0032,8,4,12 +2011-07-04 05:00:00,3,1,0,2,26.24,28.79,83,8.9981,1,3,4 +2011-07-04 06:00:00,3,1,0,1,26.24,28.79,89,11.0014,5,11,16 +2011-07-04 07:00:00,3,1,0,1,27.06,30.305,83,8.9981,17,19,36 +2011-07-04 08:00:00,3,1,0,1,28.7,33.335,74,7.0015,42,44,86 +2011-07-04 09:00:00,3,1,0,2,29.52,34.09,66,6.0032,142,96,238 +2011-07-04 10:00:00,3,1,0,2,31.16,34.85,55,6.0032,166,114,280 +2011-07-04 11:00:00,3,1,0,2,31.16,34.85,55,6.0032,177,172,349 +2011-07-04 12:00:00,3,1,0,2,31.98,35.605,52,0,237,210,447 +2011-07-04 13:00:00,3,1,0,2,31.98,35.605,49,0,242,181,423 +2011-07-04 14:00:00,3,1,0,1,32.8,36.365,46,0,235,173,408 +2011-07-04 15:00:00,3,1,0,1,33.62,37.12,43,6.0032,224,184,408 +2011-07-04 16:00:00,3,1,0,1,33.62,37.12,41,0,236,216,452 +2011-07-04 17:00:00,3,1,0,1,32.8,36.365,46,0,240,196,436 +2011-07-04 18:00:00,3,1,0,1,32.8,36.365,46,8.9981,222,196,418 +2011-07-04 19:00:00,3,1,0,2,31.98,35.605,49,11.0014,170,205,375 +2011-07-04 20:00:00,3,1,0,2,31.16,34.85,55,7.0015,195,191,386 +2011-07-04 21:00:00,3,1,0,2,30.34,34.09,62,7.0015,195,262,457 +2011-07-04 22:00:00,3,1,0,2,30.34,34.09,62,8.9981,115,211,326 +2011-07-04 23:00:00,3,1,0,2,29.52,34.09,70,7.0015,44,94,138 +2011-07-05 00:00:00,3,0,1,2,28.7,32.575,65,11.0014,19,36,55 +2011-07-05 01:00:00,3,0,1,1,28.7,32.575,65,7.0015,15,24,39 +2011-07-05 02:00:00,3,0,1,1,27.06,31.06,74,6.0032,8,5,13 +2011-07-05 03:00:00,3,0,1,1,27.06,31.06,74,15.0013,1,7,8 +2011-07-05 04:00:00,3,0,1,1,27.06,31.06,69,11.0014,1,4,5 +2011-07-05 05:00:00,3,0,1,1,27.06,31.06,69,0,1,19,20 +2011-07-05 06:00:00,3,0,1,1,27.06,31.06,74,6.0032,3,91,94 +2011-07-05 07:00:00,3,0,1,1,28.7,32.575,65,6.0032,22,248,270 +2011-07-05 08:00:00,3,0,1,1,29.52,34.09,62,8.9981,41,391,432 +2011-07-05 09:00:00,3,0,1,1,30.34,34.09,58,8.9981,50,177,227 +2011-07-05 10:00:00,3,0,1,1,31.16,34.85,52,7.0015,55,84,139 +2011-07-05 11:00:00,3,0,1,1,31.98,34.85,46,7.0015,75,97,172 +2011-07-05 12:00:00,3,0,1,1,32.8,36.365,43,7.0015,71,130,201 +2011-07-05 13:00:00,3,0,1,1,33.62,37.12,43,7.0015,67,136,203 +2011-07-05 14:00:00,3,0,1,1,32.8,37.12,49,11.0014,66,112,178 +2011-07-05 15:00:00,3,0,1,1,33.62,37.12,43,0,51,111,162 +2011-07-05 16:00:00,3,0,1,1,33.62,37.88,46,7.0015,79,202,281 +2011-07-05 17:00:00,3,0,1,1,33.62,37.88,46,7.0015,79,466,545 +2011-07-05 18:00:00,3,0,1,1,32.8,37.88,55,11.0014,70,426,496 +2011-07-05 19:00:00,3,0,1,1,32.8,38.635,59,8.9981,71,297,368 +2011-07-05 20:00:00,3,0,1,1,31.16,36.365,66,7.0015,59,225,284 +2011-07-05 21:00:00,3,0,1,1,31.98,37.12,62,16.9979,77,168,245 +2011-07-05 22:00:00,3,0,1,1,31.16,36.365,66,15.0013,31,124,155 +2011-07-05 23:00:00,3,0,1,1,30.34,34.85,66,11.0014,19,54,73 +2011-07-06 00:00:00,3,0,1,1,29.52,34.85,74,12.998,11,26,37 +2011-07-06 01:00:00,3,0,1,1,28.7,33.335,74,8.9981,4,11,15 +2011-07-06 02:00:00,3,0,1,1,28.7,33.335,79,6.0032,1,4,5 +2011-07-06 03:00:00,3,0,1,1,28.7,33.335,79,0,0,6,6 +2011-07-06 04:00:00,3,0,1,2,27.88,31.82,83,6.0032,0,6,6 +2011-07-06 05:00:00,3,0,1,1,27.88,31.82,83,6.0032,5,30,35 +2011-07-06 06:00:00,3,0,1,1,28.7,33.335,79,6.0032,9,112,121 +2011-07-06 07:00:00,3,0,1,2,29.52,34.85,79,0,24,288,312 +2011-07-06 08:00:00,3,0,1,2,29.52,34.85,74,7.0015,31,397,428 +2011-07-06 09:00:00,3,0,1,3,28.7,33.335,79,12.998,31,158,189 +2011-07-06 10:00:00,3,0,1,3,28.7,33.335,79,6.0032,13,30,43 +2011-07-06 11:00:00,3,0,1,2,29.52,34.85,74,0,24,103,127 +2011-07-06 12:00:00,3,0,1,2,30.34,34.85,66,6.0032,38,114,152 +2011-07-06 13:00:00,3,0,1,2,30.34,34.85,70,7.0015,33,107,140 +2011-07-06 14:00:00,3,0,1,1,31.16,36.365,66,19.0012,50,113,163 +2011-07-06 15:00:00,3,0,1,1,31.16,36.365,70,19.0012,55,130,185 +2011-07-06 16:00:00,3,0,1,1,31.16,36.365,70,16.9979,57,218,275 +2011-07-06 17:00:00,3,0,1,1,31.98,37.12,59,15.0013,79,517,596 +2011-07-06 18:00:00,3,0,1,1,31.16,35.605,62,12.998,77,486,563 +2011-07-06 19:00:00,3,0,1,1,30.34,34.85,70,15.0013,71,323,394 +2011-07-06 20:00:00,3,0,1,1,29.52,34.85,74,16.9979,55,257,312 +2011-07-06 21:00:00,3,0,1,1,28.7,33.335,79,12.998,66,175,241 +2011-07-06 22:00:00,3,0,1,1,28.7,33.335,79,12.998,30,156,186 +2011-07-06 23:00:00,3,0,1,1,27.88,31.82,83,15.0013,20,78,98 +2011-07-07 00:00:00,3,0,1,1,27.06,29.545,89,8.9981,6,29,35 +2011-07-07 01:00:00,3,0,1,1,27.06,29.545,89,12.998,2,14,16 +2011-07-07 02:00:00,3,0,1,1,27.06,29.545,89,12.998,1,7,8 +2011-07-07 03:00:00,3,0,1,1,26.24,28.03,94,7.0015,2,2,4 +2011-07-07 04:00:00,3,0,1,1,26.24,28.79,89,7.0015,0,4,4 +2011-07-07 05:00:00,3,0,1,1,26.24,28.79,89,7.0015,2,30,32 +2011-07-07 06:00:00,3,0,1,2,26.24,28.79,89,8.9981,11,107,118 +2011-07-07 07:00:00,3,0,1,2,27.06,29.545,89,7.0015,13,279,292 +2011-07-07 08:00:00,3,0,1,2,28.7,33.335,79,12.998,28,415,443 +2011-07-07 09:00:00,3,0,1,1,30.34,34.85,70,11.0014,25,154,179 +2011-07-07 10:00:00,3,0,1,1,31.98,37.12,62,0,29,72,101 +2011-07-07 11:00:00,3,0,1,1,33.62,38.635,52,8.9981,30,112,142 +2011-07-07 12:00:00,3,0,1,1,34.44,38.635,41,0,32,139,171 +2011-07-07 13:00:00,3,0,1,1,35.26,39.395,41,0,48,107,155 +2011-07-07 14:00:00,3,0,1,1,35.26,39.395,41,16.9979,39,121,160 +2011-07-07 15:00:00,3,0,1,1,35.26,39.395,41,16.9979,47,119,166 +2011-07-07 16:00:00,3,0,1,1,35.26,38.635,39,15.0013,47,218,265 +2011-07-07 17:00:00,3,0,1,1,35.26,37.88,36,16.9979,80,489,569 +2011-07-07 18:00:00,3,0,1,1,34.44,37.88,44,19.9995,70,492,562 +2011-07-07 19:00:00,3,0,1,1,33.62,38.635,52,19.0012,79,286,365 +2011-07-07 20:00:00,3,0,1,1,31.16,35.605,58,23.9994,61,224,285 +2011-07-07 21:00:00,3,0,1,1,30.34,34.09,62,11.0014,39,170,209 +2011-07-07 22:00:00,3,0,1,1,30.34,34.09,62,11.0014,32,150,182 +2011-07-07 23:00:00,3,0,1,1,29.52,34.09,66,0,31,98,129 +2011-07-08 00:00:00,3,0,1,1,30.34,34.85,66,7.0015,6,41,47 +2011-07-08 01:00:00,3,0,1,1,29.52,34.85,79,0,9,25,34 +2011-07-08 02:00:00,3,0,1,2,28.7,33.335,74,11.0014,10,12,22 +2011-07-08 03:00:00,3,0,1,1,27.88,31.82,79,7.0015,2,4,6 +2011-07-08 04:00:00,3,0,1,1,28.7,33.335,79,16.9979,7,4,11 +2011-07-08 05:00:00,3,0,1,1,27.88,31.82,79,16.9979,3,24,27 +2011-07-08 06:00:00,3,0,1,1,28.7,33.335,74,7.0015,11,91,102 +2011-07-08 07:00:00,3,0,1,2,28.7,33.335,79,12.998,30,302,332 +2011-07-08 08:00:00,3,0,1,2,29.52,34.85,74,16.9979,36,421,457 +2011-07-08 09:00:00,3,0,1,2,31.16,36.365,70,19.9995,30,211,241 +2011-07-08 10:00:00,3,0,1,2,30.34,34.85,70,23.9994,30,108,138 +2011-07-08 11:00:00,3,0,1,2,30.34,35.605,74,16.9979,61,104,165 +2011-07-08 12:00:00,3,0,1,2,31.16,36.365,70,19.0012,49,164,213 +2011-07-08 13:00:00,3,0,1,2,31.98,37.88,66,19.0012,54,175,229 +2011-07-08 14:00:00,3,0,1,2,32.8,39.395,63,23.9994,53,163,216 +2011-07-08 15:00:00,3,0,1,2,32.8,39.395,63,23.9994,39,102,141 +2011-07-08 16:00:00,3,0,1,3,27.88,31.82,83,30.0026,27,105,132 +2011-07-08 17:00:00,3,0,1,3,27.06,29.545,89,30.0026,6,161,167 +2011-07-08 18:00:00,3,0,1,1,27.06,30.305,83,6.0032,35,281,316 +2011-07-08 19:00:00,3,0,1,1,27.06,30.305,83,6.0032,45,225,270 +2011-07-08 20:00:00,3,0,1,1,27.06,30.305,83,11.0014,30,220,250 +2011-07-08 21:00:00,3,0,1,2,27.06,30.305,83,16.9979,46,158,204 +2011-07-08 22:00:00,3,0,1,2,27.06,30.305,78,12.998,33,136,169 +2011-07-08 23:00:00,3,0,1,2,27.06,30.305,78,6.0032,40,111,151 +2011-07-09 00:00:00,3,0,0,2,27.06,30.305,83,8.9981,31,90,121 +2011-07-09 01:00:00,3,0,0,2,26.24,28.79,89,7.0015,5,48,53 +2011-07-09 02:00:00,3,0,0,1,26.24,28.79,89,11.0014,12,43,55 +2011-07-09 03:00:00,3,0,0,1,26.24,28.79,89,8.9981,7,23,30 +2011-07-09 04:00:00,3,0,0,1,26.24,28.79,83,15.0013,2,4,6 +2011-07-09 05:00:00,3,0,0,2,25.42,28.03,88,11.0014,4,11,15 +2011-07-09 06:00:00,3,0,0,2,26.24,28.79,83,12.998,11,27,38 +2011-07-09 07:00:00,3,0,0,1,27.06,30.305,78,12.998,21,50,71 +2011-07-09 08:00:00,3,0,0,1,28.7,32.575,70,16.9979,68,114,182 +2011-07-09 09:00:00,3,0,0,1,30.34,34.09,58,19.0012,77,170,247 +2011-07-09 10:00:00,3,0,0,1,31.16,34.85,52,11.0014,87,177,264 +2011-07-09 11:00:00,3,0,0,1,31.98,34.85,46,19.9995,101,189,290 +2011-07-09 12:00:00,3,0,0,1,32.8,36.365,46,16.9979,145,221,366 +2011-07-09 13:00:00,3,0,0,1,33.62,37.12,41,15.0013,167,249,416 +2011-07-09 14:00:00,3,0,0,1,34.44,37.12,36,8.9981,158,215,373 +2011-07-09 15:00:00,3,0,0,1,34.44,36.365,34,6.0032,182,220,402 +2011-07-09 16:00:00,3,0,0,1,33.62,36.365,38,0,171,245,416 +2011-07-09 17:00:00,3,0,0,1,34.44,36.365,32,0,160,241,401 +2011-07-09 18:00:00,3,0,0,1,33.62,36.365,36,7.0015,132,246,378 +2011-07-09 19:00:00,3,0,0,1,31.16,34.85,55,11.0014,128,178,306 +2011-07-09 20:00:00,3,0,0,1,31.16,35.605,58,15.0013,129,185,314 +2011-07-09 21:00:00,3,0,0,1,30.34,34.09,58,11.0014,83,155,238 +2011-07-09 22:00:00,3,0,0,1,29.52,34.09,62,11.0014,60,154,214 +2011-07-09 23:00:00,3,0,0,1,29.52,33.335,58,12.998,47,93,140 +2011-07-10 00:00:00,3,0,0,1,28.7,32.575,61,11.0014,42,112,154 +2011-07-10 01:00:00,3,0,0,1,28.7,32.575,61,8.9981,19,94,113 +2011-07-10 02:00:00,3,0,0,1,27.88,31.82,69,6.0032,28,68,96 +2011-07-10 03:00:00,3,0,0,1,27.06,31.06,74,6.0032,6,19,25 +2011-07-10 04:00:00,3,0,0,1,27.06,31.06,69,6.0032,0,5,5 +2011-07-10 05:00:00,3,0,0,1,27.06,31.06,74,0,7,10,17 +2011-07-10 06:00:00,3,0,0,1,26.24,29.545,78,6.0032,8,17,25 +2011-07-10 07:00:00,3,0,0,1,28.7,32.575,70,6.0032,27,38,65 +2011-07-10 08:00:00,3,0,0,1,29.52,34.09,66,0,27,65,92 +2011-07-10 09:00:00,3,0,0,1,30.34,34.85,66,6.0032,62,107,169 +2011-07-10 10:00:00,3,0,0,1,31.16,34.85,55,8.9981,95,173,268 +2011-07-10 11:00:00,3,0,0,1,31.98,36.365,55,12.998,110,177,287 +2011-07-10 12:00:00,3,0,0,1,33.62,37.88,46,19.0012,133,244,377 +2011-07-10 13:00:00,3,0,0,1,32.8,36.365,46,19.9995,139,228,367 +2011-07-10 14:00:00,3,0,0,1,33.62,37.12,41,22.0028,122,227,349 +2011-07-10 15:00:00,3,0,0,1,34.44,37.12,39,19.0012,142,219,361 +2011-07-10 16:00:00,3,0,0,1,34.44,37.88,41,19.0012,128,244,372 +2011-07-10 17:00:00,3,0,0,1,34.44,37.12,36,15.0013,146,217,363 +2011-07-10 18:00:00,3,0,0,1,33.62,37.12,43,19.0012,141,222,363 +2011-07-10 19:00:00,3,0,0,1,32.8,37.12,49,22.0028,120,183,303 +2011-07-10 20:00:00,3,0,0,1,31.16,34.85,55,12.998,101,167,268 +2011-07-10 21:00:00,3,0,0,1,30.34,34.09,62,16.9979,65,162,227 +2011-07-10 22:00:00,3,0,0,1,30.34,34.85,66,15.0013,56,87,143 +2011-07-10 23:00:00,3,0,0,1,29.52,34.09,66,16.9979,19,53,72 +2011-07-11 00:00:00,3,0,1,1,28.7,32.575,65,12.998,10,25,35 +2011-07-11 01:00:00,3,0,1,1,28.7,32.575,61,19.0012,5,5,10 +2011-07-11 02:00:00,3,0,1,1,28.7,32.575,61,15.0013,8,4,12 +2011-07-11 03:00:00,3,0,1,1,27.88,31.82,65,11.0014,2,8,10 +2011-07-11 04:00:00,3,0,1,1,27.06,31.06,74,15.0013,0,4,4 +2011-07-11 05:00:00,3,0,1,1,27.06,31.06,74,8.9981,5,21,26 +2011-07-11 06:00:00,3,0,1,1,27.88,31.82,74,12.998,19,102,121 +2011-07-11 07:00:00,3,0,1,1,28.7,33.335,74,16.9979,28,289,317 +2011-07-11 08:00:00,3,0,1,1,30.34,34.85,66,19.0012,35,385,420 +2011-07-11 09:00:00,3,0,1,1,31.98,37.12,59,19.9995,41,167,208 +2011-07-11 10:00:00,3,0,1,1,32.8,37.88,55,23.9994,44,73,117 +2011-07-11 11:00:00,3,0,1,1,33.62,39.395,56,19.9995,39,89,128 +2011-07-11 12:00:00,3,0,1,1,34.44,40.15,53,19.0012,40,108,148 +2011-07-11 13:00:00,3,0,1,1,35.26,40.91,50,16.9979,22,119,141 +2011-07-11 14:00:00,3,0,1,1,35.26,41.665,53,19.0012,40,94,134 +2011-07-11 15:00:00,3,0,1,1,35.26,42.425,56,27.9993,38,108,146 +2011-07-11 16:00:00,3,0,1,1,35.26,42.425,56,26.0027,57,182,239 +2011-07-11 17:00:00,3,0,1,1,35.26,42.425,56,27.9993,59,455,514 +2011-07-11 18:00:00,3,0,1,1,35.26,41.665,53,26.0027,57,415,472 +2011-07-11 19:00:00,3,0,1,1,34.44,41.665,59,22.0028,80,293,373 +2011-07-11 20:00:00,3,0,1,1,29.52,34.85,74,27.9993,42,194,236 +2011-07-11 21:00:00,3,0,1,1,28.7,33.335,79,27.9993,21,109,130 +2011-07-11 22:00:00,3,0,1,1,29.52,34.85,74,8.9981,20,70,90 +2011-07-11 23:00:00,3,0,1,1,28.7,33.335,79,8.9981,11,44,55 +2011-07-12 00:00:00,3,0,1,1,28.7,33.335,79,8.9981,3,19,22 +2011-07-12 01:00:00,3,0,1,1,28.7,33.335,79,6.0032,6,8,14 +2011-07-12 02:00:00,3,0,1,1,28.7,33.335,79,7.0015,2,7,9 +2011-07-12 03:00:00,3,0,1,2,28.7,33.335,79,0,2,6,8 +2011-07-12 04:00:00,3,0,1,1,28.7,33.335,79,11.0014,0,6,6 +2011-07-12 05:00:00,3,0,1,1,28.7,33.335,79,6.0032,4,21,25 +2011-07-12 06:00:00,3,0,1,1,30.34,34.09,58,15.0013,13,102,115 +2011-07-12 07:00:00,3,0,1,1,31.16,34.85,55,12.998,29,301,330 +2011-07-12 08:00:00,3,0,1,1,31.16,35.605,58,15.0013,35,382,417 +2011-07-12 09:00:00,3,0,1,1,31.98,36.365,55,32.9975,27,149,176 +2011-07-12 10:00:00,3,0,1,1,33.62,38.635,52,11.0014,38,85,123 +2011-07-12 11:00:00,3,0,1,1,33.62,38.635,52,11.0014,39,86,125 +2011-07-12 12:00:00,3,0,1,1,35.26,39.395,44,19.9995,38,125,163 +2011-07-12 13:00:00,3,0,1,1,35.26,40.15,47,15.0013,32,104,136 +2011-07-12 14:00:00,3,0,1,1,36.9,42.425,42,19.9995,33,91,124 +2011-07-12 15:00:00,3,0,1,1,36.9,42.425,42,23.9994,37,111,148 +2011-07-12 16:00:00,3,0,1,1,35.26,39.395,44,19.0012,25,177,202 +2011-07-12 17:00:00,3,0,1,1,36.08,40.91,44,19.0012,48,380,428 +2011-07-12 18:00:00,3,0,1,1,35.26,40.15,47,19.9995,39,472,511 +2011-07-12 19:00:00,3,0,1,1,34.44,37.88,44,19.0012,42,295,337 +2011-07-12 20:00:00,3,0,1,1,33.62,37.12,43,12.998,57,251,308 +2011-07-12 21:00:00,3,0,1,1,33.62,37.12,43,7.0015,49,209,258 +2011-07-12 22:00:00,3,0,1,1,32.8,36.365,46,8.9981,44,150,194 +2011-07-12 23:00:00,3,0,1,1,31.98,35.605,52,0,20,59,79 +2011-07-13 00:00:00,3,0,1,1,31.16,35.605,62,0,9,37,46 +2011-07-13 01:00:00,3,0,1,1,31.16,34.85,55,0,1,11,12 +2011-07-13 02:00:00,3,0,1,1,31.16,34.85,55,0,2,3,5 +2011-07-13 03:00:00,3,0,1,1,30.34,34.09,58,12.998,0,4,4 +2011-07-13 04:00:00,3,0,1,1,30.34,34.09,58,16.9979,0,5,5 +2011-07-13 05:00:00,3,0,1,1,30.34,34.09,58,12.998,4,22,26 +2011-07-13 06:00:00,3,0,1,1,30.34,34.09,58,11.0014,18,103,121 +2011-07-13 07:00:00,3,0,1,1,31.16,34.85,55,16.9979,32,281,313 +2011-07-13 08:00:00,3,0,1,1,32.8,37.12,49,16.9979,31,418,449 +2011-07-13 09:00:00,3,0,1,1,33.62,37.12,41,12.998,23,163,186 +2011-07-13 10:00:00,3,0,1,1,33.62,37.88,46,12.998,33,80,113 +2011-07-13 11:00:00,3,0,1,1,34.44,37.12,39,11.0014,55,110,165 +2011-07-13 12:00:00,3,0,1,1,34.44,37.88,41,19.0012,40,134,174 +2011-07-13 13:00:00,3,0,1,3,33.62,37.88,46,8.9981,39,119,158 +2011-07-13 14:00:00,3,0,1,3,33.62,37.88,46,8.9981,27,89,116 +2011-07-13 15:00:00,3,0,1,3,26.24,28.03,94,8.9981,13,33,46 +2011-07-13 16:00:00,3,0,1,2,27.06,29.545,89,0,23,118,141 +2011-07-13 17:00:00,3,0,1,1,28.7,33.335,79,0,70,418,488 +2011-07-13 18:00:00,3,0,1,1,29.52,34.85,79,8.9981,51,412,463 +2011-07-13 19:00:00,3,0,1,1,28.7,33.335,79,7.0015,79,340,419 +2011-07-13 20:00:00,3,0,1,1,28.7,33.335,84,11.0014,61,281,342 +2011-07-13 21:00:00,3,0,1,1,28.7,33.335,79,7.0015,56,194,250 +2011-07-13 22:00:00,3,0,1,1,27.88,31.82,83,12.998,48,136,184 +2011-07-13 23:00:00,3,0,1,1,27.06,30.305,83,16.9979,33,83,116 +2011-07-14 00:00:00,3,0,1,1,27.06,31.06,69,19.9995,14,32,46 +2011-07-14 01:00:00,3,0,1,1,27.06,31.06,61,16.9979,4,21,25 +2011-07-14 02:00:00,3,0,1,1,26.24,31.06,57,19.9995,3,7,10 +2011-07-14 03:00:00,3,0,1,1,25.42,31.06,57,19.9995,1,5,6 +2011-07-14 04:00:00,3,0,1,1,25.42,31.06,53,16.9979,0,6,6 +2011-07-14 05:00:00,3,0,1,1,24.6,31.06,56,15.0013,6,22,28 +2011-07-14 06:00:00,3,0,1,1,24.6,30.305,60,15.0013,14,116,130 +2011-07-14 07:00:00,3,0,1,1,25.42,31.06,53,16.9979,23,311,334 +2011-07-14 08:00:00,3,0,1,1,26.24,31.06,50,23.9994,53,433,486 +2011-07-14 09:00:00,3,0,1,1,27.88,31.82,47,19.0012,29,195,224 +2011-07-14 10:00:00,3,0,1,1,28.7,31.82,42,16.9979,32,95,127 +2011-07-14 11:00:00,3,0,1,1,29.52,32.575,37,15.0013,38,110,148 +2011-07-14 12:00:00,3,0,1,1,30.34,32.575,35,16.9979,51,172,223 +2011-07-14 13:00:00,3,0,1,1,31.16,33.335,33,22.0028,39,138,177 +2011-07-14 14:00:00,3,0,1,1,30.34,32.575,35,19.0012,49,129,178 +2011-07-14 15:00:00,3,0,1,1,31.16,33.335,33,19.9995,42,138,180 +2011-07-14 16:00:00,3,0,1,1,31.16,33.335,33,8.9981,43,231,274 +2011-07-14 17:00:00,3,0,1,1,30.34,32.575,37,8.9981,78,517,595 +2011-07-14 18:00:00,3,0,1,1,29.52,32.575,42,12.998,94,484,578 +2011-07-14 19:00:00,3,0,1,1,29.52,32.575,39,15.0013,67,333,400 +2011-07-14 20:00:00,3,0,1,1,28.7,31.82,42,15.0013,81,267,348 +2011-07-14 21:00:00,3,0,1,1,27.06,31.06,50,8.9981,58,203,261 +2011-07-14 22:00:00,3,0,1,1,26.24,31.06,57,6.0032,42,134,176 +2011-07-14 23:00:00,3,0,1,1,26.24,30.305,65,16.9979,27,97,124 +2011-07-15 00:00:00,3,0,1,1,25.42,29.545,73,15.0013,23,57,80 +2011-07-15 01:00:00,3,0,1,1,25.42,29.545,73,12.998,7,13,20 +2011-07-15 02:00:00,3,0,1,1,24.6,28.79,78,11.0014,16,22,38 +2011-07-15 03:00:00,3,0,1,1,24.6,29.545,73,12.998,1,6,7 +2011-07-15 04:00:00,3,0,1,1,24.6,29.545,73,11.0014,2,8,10 +2011-07-15 05:00:00,3,0,1,1,24.6,29.545,73,8.9981,7,16,23 +2011-07-15 06:00:00,3,0,1,2,24.6,29.545,73,7.0015,12,108,120 +2011-07-15 07:00:00,3,0,1,1,26.24,30.305,65,7.0015,17,257,274 +2011-07-15 08:00:00,3,0,1,1,26.24,30.305,65,16.9979,50,514,564 +2011-07-15 09:00:00,3,0,1,1,27.88,31.82,54,12.998,31,176,207 +2011-07-15 10:00:00,3,0,1,2,27.06,31.06,61,11.0014,59,107,166 +2011-07-15 11:00:00,3,0,1,1,28.7,32.575,54,8.9981,73,137,210 +2011-07-15 12:00:00,3,0,1,1,28.7,32.575,48,12.998,61,177,238 +2011-07-15 13:00:00,3,0,1,1,28.7,32.575,54,12.998,85,162,247 +2011-07-15 14:00:00,3,0,1,1,28.7,32.575,51,12.998,105,160,265 +2011-07-15 15:00:00,3,0,1,1,29.52,32.575,45,11.0014,74,163,237 +2011-07-15 16:00:00,3,0,1,1,29.52,33.335,51,12.998,96,265,361 +2011-07-15 17:00:00,3,0,1,1,30.34,33.335,42,16.9979,104,483,587 +2011-07-15 18:00:00,3,0,1,1,29.52,32.575,45,15.0013,102,394,496 +2011-07-15 19:00:00,3,0,1,1,28.7,31.82,45,15.0013,114,280,394 +2011-07-15 20:00:00,3,0,1,1,28.7,32.575,51,15.0013,92,251,343 +2011-07-15 21:00:00,3,0,1,1,27.06,31.06,54,7.0015,75,186,261 +2011-07-15 22:00:00,3,0,1,1,27.06,31.06,57,15.0013,71,152,223 +2011-07-15 23:00:00,3,0,1,1,26.24,31.06,61,11.0014,41,126,167 +2011-07-16 00:00:00,3,0,0,1,25.42,30.305,65,12.998,42,68,110 +2011-07-16 01:00:00,3,0,0,1,24.6,29.545,69,7.0015,24,51,75 +2011-07-16 02:00:00,3,0,0,1,24.6,29.545,73,8.9981,10,48,58 +2011-07-16 03:00:00,3,0,0,1,24.6,28.79,78,8.9981,6,20,26 +2011-07-16 04:00:00,3,0,0,1,24.6,29.545,73,6.0032,9,7,16 +2011-07-16 05:00:00,3,0,0,1,23.78,27.275,78,6.0032,4,6,10 +2011-07-16 06:00:00,3,0,0,1,24.6,28.79,78,11.0014,16,21,37 +2011-07-16 07:00:00,3,0,0,1,25.42,29.545,73,8.9981,14,38,52 +2011-07-16 08:00:00,3,0,0,1,27.06,31.06,65,11.0014,37,90,127 +2011-07-16 09:00:00,3,0,0,1,28.7,32.575,54,15.0013,72,150,222 +2011-07-16 10:00:00,3,0,0,1,29.52,33.335,54,12.998,114,208,322 +2011-07-16 11:00:00,3,0,0,1,30.34,33.335,48,15.0013,171,225,396 +2011-07-16 12:00:00,3,0,0,1,31.16,34.09,43,19.0012,187,276,463 +2011-07-16 13:00:00,3,0,0,1,31.16,34.09,45,19.9995,221,276,497 +2011-07-16 14:00:00,3,0,0,1,30.34,33.335,45,19.9995,201,232,433 +2011-07-16 15:00:00,3,0,0,1,31.16,34.09,45,22.0028,205,223,428 +2011-07-16 16:00:00,3,0,0,1,31.16,34.09,45,19.0012,183,242,425 +2011-07-16 17:00:00,3,0,0,1,31.16,34.09,45,15.0013,234,241,475 +2011-07-16 18:00:00,3,0,0,1,31.16,34.09,45,19.0012,185,243,428 +2011-07-16 19:00:00,3,0,0,1,30.34,34.09,48,12.998,164,242,406 +2011-07-16 20:00:00,3,0,0,1,29.52,33.335,51,15.0013,108,188,296 +2011-07-16 21:00:00,3,0,0,1,28.7,32.575,58,15.0013,85,167,252 +2011-07-16 22:00:00,3,0,0,1,28.7,32.575,65,19.0012,65,136,201 +2011-07-16 23:00:00,3,0,0,1,27.88,31.82,61,15.0013,61,107,168 +2011-07-17 00:00:00,3,0,0,1,27.06,31.06,65,15.0013,34,91,125 +2011-07-17 01:00:00,3,0,0,1,26.24,30.305,69,12.998,16,86,102 +2011-07-17 02:00:00,3,0,0,1,26.24,30.305,69,15.0013,28,66,94 +2011-07-17 03:00:00,3,0,0,1,26.24,30.305,69,15.0013,21,26,47 +2011-07-17 04:00:00,3,0,0,1,25.42,29.545,73,11.0014,4,6,10 +2011-07-17 05:00:00,3,0,0,1,26.24,30.305,69,15.0013,4,8,12 +2011-07-17 06:00:00,3,0,0,1,25.42,29.545,73,11.0014,10,11,21 +2011-07-17 07:00:00,3,0,0,1,26.24,30.305,73,11.0014,20,30,50 +2011-07-17 08:00:00,3,0,0,1,27.88,31.82,65,15.0013,45,73,118 +2011-07-17 09:00:00,3,0,0,1,29.52,33.335,58,15.0013,74,110,184 +2011-07-17 10:00:00,3,0,0,1,30.34,34.09,60,15.0013,127,177,304 +2011-07-17 11:00:00,3,0,0,1,31.16,34.85,55,19.0012,147,244,391 +2011-07-17 12:00:00,3,0,0,1,31.16,34.85,55,19.0012,177,243,420 +2011-07-17 13:00:00,3,0,0,1,32.8,37.12,49,19.9995,200,272,472 +2011-07-17 14:00:00,3,0,0,1,32.8,37.12,49,23.9994,168,262,430 +2011-07-17 15:00:00,3,0,0,1,33.62,37.12,43,19.9995,129,195,324 +2011-07-17 16:00:00,3,0,0,1,32.8,36.365,46,19.9995,129,188,317 +2011-07-17 17:00:00,3,0,0,1,32.8,37.12,49,26.0027,133,236,369 +2011-07-17 18:00:00,3,0,0,1,32.8,36.365,46,19.9995,147,243,390 +2011-07-17 19:00:00,3,0,0,1,31.16,34.85,55,19.0012,145,234,379 +2011-07-17 20:00:00,3,0,0,1,31.16,35.605,58,16.9979,85,177,262 +2011-07-17 21:00:00,3,0,0,1,30.34,34.09,62,15.0013,59,148,207 +2011-07-17 22:00:00,3,0,0,1,29.52,34.09,66,15.0013,65,116,181 +2011-07-17 23:00:00,3,0,0,1,28.7,33.335,74,8.9981,39,54,93 +2011-07-18 00:00:00,3,0,1,1,28.7,33.335,74,8.9981,21,30,51 +2011-07-18 01:00:00,3,0,1,1,28.7,33.335,74,15.0013,17,8,25 +2011-07-18 02:00:00,3,0,1,1,27.06,30.305,83,15.0013,2,8,10 +2011-07-18 03:00:00,3,0,1,1,27.06,30.305,78,12.998,3,4,7 +2011-07-18 04:00:00,3,0,1,1,26.24,29.545,78,11.0014,1,3,4 +2011-07-18 05:00:00,3,0,1,1,26.24,29.545,78,7.0015,2,15,17 +2011-07-18 06:00:00,3,0,1,1,26.24,28.79,83,7.0015,10,95,105 +2011-07-18 07:00:00,3,0,1,1,27.88,31.82,74,15.0013,22,255,277 +2011-07-18 08:00:00,3,0,1,1,28.7,32.575,70,12.998,18,329,347 +2011-07-18 09:00:00,3,0,1,1,30.34,34.85,67,15.0013,33,170,203 +2011-07-18 10:00:00,3,0,1,1,31.16,35.605,62,12.998,52,78,130 +2011-07-18 11:00:00,3,0,1,1,32.8,37.88,55,6.0032,42,99,141 +2011-07-18 12:00:00,3,0,1,1,32.8,38.635,59,12.998,39,126,165 +2011-07-18 13:00:00,3,0,1,1,33.62,39.395,56,16.9979,27,125,152 +2011-07-18 14:00:00,3,0,1,1,33.62,39.395,56,22.0028,32,106,138 +2011-07-18 15:00:00,3,0,1,1,34.44,40.15,53,22.0028,53,111,164 +2011-07-18 16:00:00,3,0,1,1,34.44,40.15,53,19.0012,45,220,265 +2011-07-18 17:00:00,3,0,1,1,34.44,39.395,49,22.0028,72,473,545 +2011-07-18 18:00:00,3,0,1,1,33.62,38.635,49,23.9994,80,478,558 +2011-07-18 19:00:00,3,0,1,1,32.8,37.88,55,15.0013,63,335,398 +2011-07-18 20:00:00,3,0,1,1,31.98,37.12,59,15.0013,91,232,323 +2011-07-18 21:00:00,3,0,1,1,30.34,34.85,66,12.998,48,154,202 +2011-07-18 22:00:00,3,0,1,1,31.16,36.365,66,15.0013,36,104,140 +2011-07-18 23:00:00,3,0,1,1,30.34,34.85,66,11.0014,32,59,91 +2011-07-19 00:00:00,3,0,1,1,30.34,34.85,66,7.0015,25,26,51 +2011-07-19 01:00:00,3,0,1,2,30.34,34.85,66,8.9981,7,6,13 +2011-07-19 02:00:00,3,0,1,1,29.52,34.09,70,11.0014,9,4,13 +2011-07-19 03:00:00,3,0,1,1,29.52,34.09,70,11.0014,2,1,3 +2011-07-19 04:00:00,3,0,1,1,29.52,34.09,70,8.9981,1,4,5 +2011-07-19 05:00:00,3,0,1,2,28.7,33.335,74,7.0015,0,19,19 +2011-07-19 06:00:00,3,0,1,2,29.52,34.85,74,7.0015,8,126,134 +2011-07-19 07:00:00,3,0,1,2,30.34,34.85,70,11.0014,28,287,315 +2011-07-19 08:00:00,3,0,1,2,31.16,36.365,70,11.0014,31,381,412 +2011-07-19 09:00:00,3,0,1,2,32.8,39.395,63,8.9981,22,177,199 +2011-07-19 10:00:00,3,0,1,2,33.62,39.395,56,11.0014,29,112,141 +2011-07-19 11:00:00,3,0,1,1,33.62,40.15,59,0,29,98,127 +2011-07-19 12:00:00,3,0,1,1,34.44,40.91,56,6.0032,26,127,153 +2011-07-19 13:00:00,3,0,1,1,35.26,41.665,53,7.0015,33,139,172 +2011-07-19 14:00:00,3,0,1,1,35.26,40.91,50,12.998,41,111,152 +2011-07-19 15:00:00,3,0,1,1,36.08,40.91,44,12.998,48,110,158 +2011-07-19 16:00:00,3,0,1,1,36.9,42.425,42,19.9995,61,216,277 +2011-07-19 17:00:00,3,0,1,1,32.8,40.15,66,0,68,445,513 +2011-07-19 18:00:00,3,0,1,1,32.8,40.15,66,8.9981,80,450,530 +2011-07-19 19:00:00,3,0,1,1,31.16,37.12,75,12.998,54,334,388 +2011-07-19 20:00:00,3,0,1,1,30.34,36.365,74,6.0032,48,229,277 +2011-07-19 21:00:00,3,0,1,1,30.34,35.605,74,8.9981,47,194,241 +2011-07-19 22:00:00,3,0,1,1,30.34,35.605,74,0,36,120,156 +2011-07-19 23:00:00,3,0,1,3,29.52,34.85,79,11.0014,19,73,92 +2011-08-01 00:00:00,3,0,1,1,29.52,34.09,70,15.0013,7,22,29 +2011-08-01 01:00:00,3,0,1,1,29.52,34.85,74,12.998,5,12,17 +2011-08-01 02:00:00,3,0,1,1,28.7,33.335,74,7.0015,4,7,11 +2011-08-01 03:00:00,3,0,1,1,28.7,33.335,79,11.0014,0,4,4 +2011-08-01 04:00:00,3,0,1,1,27.06,30.305,83,8.9981,2,2,4 +2011-08-01 05:00:00,3,0,1,1,27.06,30.305,83,7.0015,2,24,26 +2011-08-01 06:00:00,3,0,1,1,27.06,30.305,83,6.0032,3,97,100 +2011-08-01 07:00:00,3,0,1,1,30.34,34.09,62,0,24,258,282 +2011-08-01 08:00:00,3,0,1,1,32.8,36.365,43,12.998,35,347,382 +2011-08-01 09:00:00,3,0,1,1,33.62,37.12,41,0,27,139,166 +2011-08-01 10:00:00,3,0,1,1,35.26,37.88,36,11.0014,27,70,97 +2011-08-01 11:00:00,3,0,1,1,36.08,38.635,32,11.0014,53,66,119 +2011-08-01 12:00:00,3,0,1,1,36.9,40.15,33,16.9979,53,115,168 +2011-08-01 13:00:00,3,0,1,1,36.9,40.15,31,19.9995,38,112,150 +2011-08-01 14:00:00,3,0,1,1,37.72,40.91,29,12.998,37,86,123 +2011-08-01 15:00:00,3,0,1,1,36.9,39.395,27,0,52,77,129 +2011-08-01 16:00:00,3,0,1,1,36.9,39.395,27,0,34,197,231 +2011-08-01 17:00:00,3,0,1,1,31.16,34.09,45,19.9995,69,445,514 +2011-08-01 18:00:00,3,0,1,1,31.98,34.85,43,12.998,68,475,543 +2011-08-01 19:00:00,3,0,1,1,30.34,33.335,51,15.0013,63,350,413 +2011-08-01 20:00:00,3,0,1,1,29.52,34.09,62,15.0013,49,256,305 +2011-08-01 21:00:00,3,0,1,1,28.7,32.575,70,16.9979,42,178,220 +2011-08-01 22:00:00,3,0,1,1,28.7,32.575,70,6.0032,21,116,137 +2011-08-01 23:00:00,3,0,1,1,27.88,31.82,74,12.998,14,82,96 +2011-08-02 00:00:00,3,0,1,1,27.06,31.06,74,0,11,18,29 +2011-08-02 01:00:00,3,0,1,1,27.06,31.06,74,7.0015,4,8,12 +2011-08-02 02:00:00,3,0,1,1,27.88,31.82,69,0,2,6,8 +2011-08-02 03:00:00,3,0,1,1,27.06,31.06,74,12.998,0,5,5 +2011-08-02 04:00:00,3,0,1,1,27.06,31.06,74,7.0015,0,10,10 +2011-08-02 05:00:00,3,0,1,1,27.06,31.06,74,8.9981,4,17,21 +2011-08-02 06:00:00,3,0,1,1,27.88,31.82,69,7.0015,12,105,117 +2011-08-02 07:00:00,3,0,1,1,29.52,33.335,61,19.0012,15,320,335 +2011-08-02 08:00:00,3,0,1,1,30.34,34.09,58,19.0012,37,398,435 +2011-08-02 09:00:00,3,0,1,1,31.98,34.85,46,19.9995,31,182,213 +2011-08-02 10:00:00,3,0,1,1,33.62,36.365,36,19.9995,50,90,140 +2011-08-02 11:00:00,3,0,1,1,34.44,36.365,32,27.9993,32,96,128 +2011-08-02 12:00:00,3,0,1,1,35.26,37.12,30,19.0012,45,112,157 +2011-08-02 13:00:00,3,0,1,1,35.26,37.12,30,15.0013,50,153,203 +2011-08-02 14:00:00,3,0,1,1,36.9,38.635,25,19.0012,45,114,159 +2011-08-02 15:00:00,3,0,1,1,36.9,38.635,25,19.0012,48,120,168 +2011-08-02 16:00:00,3,0,1,1,36.9,38.635,25,19.0012,58,216,274 +2011-08-02 17:00:00,3,0,1,2,36.9,39.395,27,8.9981,63,493,556 +2011-08-02 18:00:00,3,0,1,2,35.26,37.88,34,12.998,65,491,556 +2011-08-02 19:00:00,3,0,1,2,35.26,37.88,36,15.0013,85,369,454 +2011-08-02 20:00:00,3,0,1,2,33.62,37.88,46,16.9979,40,248,288 +2011-08-02 21:00:00,3,0,1,1,32.8,37.12,52,15.0013,53,201,254 +2011-08-02 22:00:00,3,0,1,2,31.98,37.12,59,11.0014,22,169,191 +2011-08-02 23:00:00,3,0,1,2,32.8,37.12,49,11.0014,29,103,132 +2011-08-03 00:00:00,3,0,1,2,32.8,37.12,49,11.0014,11,32,43 +2011-08-03 01:00:00,3,0,1,2,31.98,35.605,52,11.0014,7,9,16 +2011-08-03 02:00:00,3,0,1,2,31.98,35.605,49,11.0014,2,9,11 +2011-08-03 03:00:00,3,0,1,2,31.16,34.85,55,6.0032,0,4,4 +2011-08-03 04:00:00,3,0,1,2,31.16,34.85,52,11.0014,0,7,7 +2011-08-03 05:00:00,3,0,1,2,31.16,34.85,55,6.0032,2,22,24 +2011-08-03 06:00:00,3,0,1,3,29.52,34.09,66,32.9975,9,101,110 +2011-08-03 07:00:00,3,0,1,2,30.34,33.335,51,15.0013,19,252,271 +2011-08-03 08:00:00,3,0,1,2,30.34,33.335,51,11.0014,29,408,437 +2011-08-03 09:00:00,3,0,1,2,30.34,34.09,55,12.998,23,172,195 +2011-08-03 10:00:00,3,0,1,3,30.34,34.09,58,6.0032,9,59,68 +2011-08-03 11:00:00,3,0,1,2,30.34,34.09,58,7.0015,29,93,122 +2011-08-03 12:00:00,3,0,1,3,31.16,34.85,55,8.9981,19,142,161 +2011-08-03 13:00:00,3,0,1,2,31.16,35.605,58,15.0013,37,107,144 +2011-08-03 14:00:00,3,0,1,2,31.16,35.605,58,15.0013,43,104,147 +2011-08-03 15:00:00,3,0,1,2,28.7,33.335,79,8.9981,31,87,118 +2011-08-03 16:00:00,3,0,1,3,27.88,31.82,79,0,21,129,150 +2011-08-03 17:00:00,3,0,1,2,28.7,33.335,79,0,47,378,425 +2011-08-03 18:00:00,3,0,1,3,28.7,33.335,84,0,49,443,492 +2011-08-03 19:00:00,3,0,1,3,28.7,33.335,84,0,51,270,321 +2011-08-03 20:00:00,3,0,1,3,28.7,33.335,84,7.0015,7,80,87 +2011-08-03 21:00:00,3,0,1,2,27.88,31.82,89,8.9981,7,81,88 +2011-08-03 22:00:00,3,0,1,3,27.88,31.82,89,7.0015,11,66,77 +2011-08-03 23:00:00,3,0,1,2,27.88,31.82,89,6.0032,4,52,56 +2011-08-04 00:00:00,3,0,1,2,27.88,31.82,89,6.0032,2,15,17 +2011-08-04 01:00:00,3,0,1,2,27.06,29.545,94,6.0032,3,14,17 +2011-08-04 02:00:00,3,0,1,2,27.06,29.545,94,6.0032,2,5,7 +2011-08-04 03:00:00,3,0,1,3,27.06,29.545,94,6.0032,0,3,3 +2011-08-04 04:00:00,3,0,1,2,27.88,31.82,89,0,0,7,7 +2011-08-04 05:00:00,3,0,1,2,27.88,31.82,89,0,3,17,20 +2011-08-04 06:00:00,3,0,1,2,27.88,31.82,89,19.9995,7,90,97 +2011-08-04 07:00:00,3,0,1,2,27.88,31.82,89,19.9995,11,271,282 +2011-08-04 08:00:00,3,0,1,2,28.7,32.575,82,23.9994,29,369,398 +2011-08-04 09:00:00,3,0,1,1,29.52,34.85,74,22.0028,25,162,187 +2011-08-04 10:00:00,3,0,1,1,29.52,33.335,71,19.9995,24,89,113 +2011-08-04 11:00:00,3,0,1,2,30.34,34.85,66,15.0013,37,112,149 +2011-08-04 12:00:00,3,0,1,2,31.16,35.605,62,15.0013,53,152,205 +2011-08-04 13:00:00,3,0,1,1,31.16,35.605,58,0,63,142,205 +2011-08-04 14:00:00,3,0,1,1,32.8,37.88,55,11.0014,53,114,167 +2011-08-04 15:00:00,3,0,1,1,32.8,37.88,55,16.9979,50,115,165 +2011-08-04 16:00:00,3,0,1,1,31.16,35.605,62,22.0028,70,220,290 +2011-08-04 17:00:00,3,0,1,1,31.16,35.605,62,22.0028,91,464,555 +2011-08-04 18:00:00,3,0,1,1,28.7,33.335,74,19.9995,88,435,523 +2011-08-04 19:00:00,3,0,1,1,28.7,33.335,74,19.0012,65,301,366 +2011-08-04 20:00:00,3,0,1,2,28.7,33.335,74,12.998,41,245,286 +2011-08-04 21:00:00,3,0,1,2,28.7,33.335,74,12.998,25,186,211 +2011-08-04 22:00:00,3,0,1,1,27.88,31.82,74,12.998,33,141,174 +2011-08-04 23:00:00,3,0,1,1,27.06,31.06,74,7.0015,24,108,132 +2011-08-05 00:00:00,3,0,1,1,27.06,31.06,74,7.0015,13,41,54 +2011-08-05 01:00:00,3,0,1,1,26.24,29.545,78,6.0032,3,16,19 +2011-08-05 02:00:00,3,0,1,1,27.06,31.06,69,0,5,14,19 +2011-08-05 03:00:00,3,0,1,1,26.24,29.545,78,6.0032,0,6,6 +2011-08-05 04:00:00,3,0,1,1,26.24,29.545,78,8.9981,1,6,7 +2011-08-05 05:00:00,3,0,1,1,26.24,29.545,78,6.0032,0,16,16 +2011-08-05 06:00:00,3,0,1,1,26.24,29.545,78,8.9981,7,94,101 +2011-08-05 07:00:00,3,0,1,1,27.06,30.305,78,8.9981,23,247,270 +2011-08-05 08:00:00,3,0,1,1,28.7,32.575,65,15.0013,39,415,454 +2011-08-05 09:00:00,3,0,1,1,29.52,33.335,58,7.0015,43,183,226 +2011-08-05 10:00:00,3,0,1,1,30.34,34.09,55,8.9981,50,113,163 +2011-08-05 11:00:00,3,0,1,2,31.16,34.85,52,16.9979,44,103,147 +2011-08-05 12:00:00,3,0,1,1,31.16,34.85,52,16.9979,57,159,216 +2011-08-05 13:00:00,3,0,1,1,31.98,35.605,52,16.9979,40,164,204 +2011-08-05 14:00:00,3,0,1,2,31.98,35.605,52,16.9979,81,164,245 +2011-08-05 15:00:00,3,0,1,1,31.16,34.85,55,16.9979,50,160,210 +2011-08-05 16:00:00,3,0,1,1,32.8,37.12,49,16.9979,76,254,330 +2011-08-05 17:00:00,3,0,1,1,31.98,35.605,49,19.9995,84,466,550 +2011-08-05 18:00:00,3,0,1,1,31.16,34.85,52,16.9979,105,361,466 +2011-08-05 19:00:00,3,0,1,1,30.34,34.09,55,16.9979,90,282,372 +2011-08-05 20:00:00,3,0,1,1,29.52,33.335,58,15.0013,70,221,291 +2011-08-05 21:00:00,3,0,1,1,28.7,32.575,65,12.998,54,119,173 +2011-08-05 22:00:00,3,0,1,1,28.7,32.575,65,15.0013,51,137,188 +2011-08-05 23:00:00,3,0,1,1,27.88,31.82,69,15.0013,37,102,139 +2011-08-06 00:00:00,3,0,0,1,27.06,30.305,78,12.998,29,104,133 +2011-08-06 01:00:00,3,0,0,1,27.06,30.305,78,11.0014,17,50,67 +2011-08-06 02:00:00,3,0,0,1,27.06,30.305,78,15.0013,14,39,53 +2011-08-06 03:00:00,3,0,0,2,27.06,30.305,78,11.0014,14,28,42 +2011-08-06 04:00:00,3,0,0,2,27.06,30.305,83,11.0014,5,5,10 +2011-08-06 05:00:00,3,0,0,1,26.24,28.79,89,6.0032,2,4,6 +2011-08-06 06:00:00,3,0,0,1,26.24,28.79,89,7.0015,5,22,27 +2011-08-06 07:00:00,3,0,0,1,27.88,31.82,83,11.0014,14,49,63 +2011-08-06 08:00:00,3,0,0,1,27.88,31.82,83,11.0014,27,94,121 +2011-08-06 09:00:00,3,0,0,1,30.34,34.85,70,15.0013,60,155,215 +2011-08-06 10:00:00,3,0,0,2,30.34,34.85,70,19.0012,91,199,290 +2011-08-06 11:00:00,3,0,0,1,31.98,37.12,62,15.0013,138,211,349 +2011-08-06 12:00:00,3,0,0,1,32.8,37.88,55,15.0013,130,252,382 +2011-08-06 13:00:00,3,0,0,2,32.8,38.635,59,22.0028,176,265,441 +2011-08-06 14:00:00,3,0,0,1,33.62,38.635,52,16.9979,176,204,380 +2011-08-06 15:00:00,3,0,0,2,34.44,40.15,53,16.9979,130,232,362 +2011-08-06 16:00:00,3,0,0,3,30.34,35.605,79,11.0014,155,188,343 +2011-08-06 17:00:00,3,0,0,3,30.34,35.605,79,11.0014,61,88,149 +2011-08-06 18:00:00,3,0,0,2,29.52,34.85,79,30.0026,81,130,211 +2011-08-06 19:00:00,3,0,0,3,29.52,35.605,84,16.9979,57,114,171 +2011-08-06 20:00:00,3,0,0,3,29.52,34.85,79,19.0012,58,79,137 +2011-08-06 21:00:00,3,0,0,2,28.7,33.335,84,22.0028,28,86,114 +2011-08-06 22:00:00,3,0,0,2,28.7,33.335,84,22.0028,24,96,120 +2011-08-06 23:00:00,3,0,0,3,28.7,33.335,84,19.0012,29,79,108 +2011-08-07 00:00:00,3,0,0,2,28.7,33.335,84,19.0012,14,66,80 +2011-08-07 01:00:00,3,0,0,2,28.7,33.335,84,16.9979,10,63,73 +2011-08-07 02:00:00,3,0,0,2,28.7,33.335,84,15.0013,18,48,66 +2011-08-07 03:00:00,3,0,0,2,28.7,33.335,84,8.9981,9,23,32 +2011-08-07 04:00:00,3,0,0,1,28.7,33.335,84,8.9981,1,5,6 +2011-08-07 05:00:00,3,0,0,1,28.7,33.335,89,12.998,1,4,5 +2011-08-07 06:00:00,3,0,0,1,28.7,33.335,89,11.0014,3,10,13 +2011-08-07 07:00:00,3,0,0,1,28.7,33.335,84,12.998,11,28,39 +2011-08-07 08:00:00,3,0,0,1,29.52,34.85,79,12.998,23,66,89 +2011-08-07 09:00:00,3,0,0,1,31.16,37.12,75,7.0015,82,102,184 +2011-08-07 10:00:00,3,0,0,1,32.8,40.15,66,8.9981,88,178,266 +2011-08-07 11:00:00,3,0,0,1,33.62,41.665,63,0,113,156,269 +2011-08-07 12:00:00,3,0,0,1,36.9,42.425,42,19.9995,161,209,370 +2011-08-07 13:00:00,3,0,0,1,36.9,42.425,42,19.9995,118,206,324 +2011-08-07 14:00:00,3,0,0,1,35.26,40.15,47,12.998,130,192,322 +2011-08-07 15:00:00,3,0,0,3,29.52,34.85,74,19.9995,118,208,326 +2011-08-07 16:00:00,3,0,0,3,29.52,34.85,74,19.9995,74,119,193 +2011-08-07 17:00:00,3,0,0,3,30.34,35.605,74,43.0006,63,131,194 +2011-08-07 18:00:00,3,0,0,1,29.52,34.85,74,6.0032,74,155,229 +2011-08-07 19:00:00,3,0,0,1,29.52,34.85,79,11.0014,68,160,228 +2011-08-07 20:00:00,3,0,0,1,29.52,35.605,84,8.9981,50,133,183 +2011-08-07 21:00:00,3,0,0,1,29.52,35.605,84,7.0015,36,100,136 +2011-08-07 22:00:00,3,0,0,1,28.7,33.335,89,12.998,21,82,103 +2011-08-07 23:00:00,3,0,0,1,28.7,33.335,79,7.0015,12,43,55 +2011-08-08 00:00:00,3,0,1,1,28.7,33.335,79,7.0015,13,17,30 +2011-08-08 01:00:00,3,0,1,1,27.88,31.82,83,8.9981,4,8,12 +2011-08-08 02:00:00,3,0,1,1,27.06,29.545,89,0,4,3,7 +2011-08-08 03:00:00,3,0,1,1,27.06,29.545,89,0,1,0,1 +2011-08-08 04:00:00,3,0,1,1,27.06,29.545,89,7.0015,2,8,10 +2011-08-08 05:00:00,3,0,1,1,28.7,33.335,79,6.0032,1,14,15 +2011-08-08 06:00:00,3,0,1,1,28.7,32.575,65,19.0012,8,87,95 +2011-08-08 07:00:00,3,0,1,1,29.52,34.09,62,19.9995,18,249,267 +2011-08-08 08:00:00,3,0,1,1,30.34,34.09,58,22.0028,29,320,349 +2011-08-08 09:00:00,3,0,1,1,31.16,34.85,55,26.0027,37,146,183 +2011-08-08 10:00:00,3,0,1,1,32.8,37.12,52,26.0027,62,62,124 +2011-08-08 11:00:00,3,0,1,1,33.62,37.12,48,23.9994,90,89,179 +2011-08-08 12:00:00,3,0,1,1,33.62,37.88,46,16.9979,48,134,182 +2011-08-08 13:00:00,3,0,1,1,34.44,37.88,44,19.9995,43,108,151 +2011-08-08 14:00:00,3,0,1,1,33.62,37.12,43,19.9995,41,109,150 +2011-08-08 15:00:00,3,0,1,1,34.44,37.88,41,19.9995,40,86,126 +2011-08-08 16:00:00,3,0,1,1,35.26,38.635,39,19.0012,64,218,282 +2011-08-08 17:00:00,3,0,1,1,35.26,38.635,39,11.0014,67,460,527 +2011-08-08 18:00:00,3,0,1,1,34.44,37.88,41,8.9981,64,465,529 +2011-08-08 19:00:00,3,0,1,1,33.62,37.12,43,7.0015,64,352,416 +2011-08-08 20:00:00,3,0,1,1,32.8,37.88,55,0,71,215,286 +2011-08-08 21:00:00,3,0,1,1,31.16,35.605,58,6.0032,30,156,186 +2011-08-08 22:00:00,3,0,1,1,31.16,35.605,58,7.0015,26,121,147 +2011-08-08 23:00:00,3,0,1,1,30.34,34.85,66,7.0015,19,53,72 +2011-08-09 00:00:00,3,0,1,1,29.52,34.85,79,8.9981,10,25,35 +2011-08-09 01:00:00,3,0,1,1,29.52,34.09,66,0,5,9,14 +2011-08-09 02:00:00,3,0,1,1,29.52,34.09,70,0,9,3,12 +2011-08-09 03:00:00,3,0,1,1,29.52,34.09,62,0,0,3,3 +2011-08-09 04:00:00,3,0,1,1,28.7,33.335,74,0,1,6,7 +2011-08-09 05:00:00,3,0,1,1,28.7,32.575,65,6.0032,5,25,30 +2011-08-09 06:00:00,3,0,1,1,29.52,33.335,64,0,6,95,101 +2011-08-09 07:00:00,3,0,1,1,29.52,34.85,74,7.0015,30,313,343 +2011-08-09 08:00:00,3,0,1,1,30.34,34.85,66,0,40,352,392 +2011-08-09 09:00:00,3,0,1,2,31.98,37.12,62,8.9981,34,141,175 +2011-08-09 10:00:00,3,0,1,2,32.8,38.635,59,15.0013,55,89,144 +2011-08-09 11:00:00,3,0,1,1,32.8,38.635,59,15.0013,61,88,149 +2011-08-09 12:00:00,3,0,1,1,33.62,39.395,56,12.998,60,125,185 +2011-08-09 13:00:00,3,0,1,1,34.44,39.395,49,11.0014,48,127,175 +2011-08-09 14:00:00,3,0,1,1,35.26,39.395,44,19.0012,53,95,148 +2011-08-09 15:00:00,3,0,1,1,35.26,38.635,39,19.0012,58,106,164 +2011-08-09 16:00:00,3,0,1,1,35.26,38.635,39,19.9995,57,228,285 +2011-08-09 17:00:00,3,0,1,1,32.8,37.88,55,11.0014,79,453,532 +2011-08-09 18:00:00,3,0,1,1,32.8,37.88,55,12.998,97,488,585 +2011-08-09 19:00:00,3,0,1,1,32.8,37.12,49,7.0015,69,302,371 +2011-08-09 20:00:00,3,0,1,1,32.8,36.365,43,12.998,34,258,292 +2011-08-09 21:00:00,3,0,1,1,31.98,34.85,46,16.9979,46,184,230 +2011-08-09 22:00:00,3,0,1,1,31.98,34.85,46,19.9995,28,127,155 +2011-08-09 23:00:00,3,0,1,1,31.16,34.09,48,19.0012,22,53,75 +2011-08-10 00:00:00,3,0,1,1,30.34,33.335,51,15.0013,19,18,37 +2011-08-10 01:00:00,3,0,1,1,29.52,33.335,54,12.998,7,10,17 +2011-08-10 02:00:00,3,0,1,1,29.52,33.335,54,11.0014,1,10,11 +2011-08-10 03:00:00,3,0,1,1,28.7,32.575,58,11.0014,1,3,4 +2011-08-10 04:00:00,3,0,1,1,28.7,32.575,54,8.9981,1,4,5 +2011-08-10 05:00:00,3,0,1,1,27.88,31.82,61,6.0032,2,30,32 +2011-08-10 06:00:00,3,0,1,1,27.88,31.82,61,0,9,110,119 +2011-08-10 07:00:00,3,0,1,1,28.7,32.575,58,6.0032,16,289,305 +2011-08-10 08:00:00,3,0,1,1,30.34,33.335,51,12.998,38,361,399 +2011-08-10 09:00:00,3,0,1,1,31.16,34.09,48,15.0013,32,148,180 +2011-08-10 10:00:00,3,0,1,1,32.8,36.365,43,15.0013,41,72,113 +2011-08-10 11:00:00,3,0,1,1,32.8,35.605,41,26.0027,54,95,149 +2011-08-10 12:00:00,3,0,1,1,33.62,36.365,38,19.9995,74,166,240 +2011-08-10 13:00:00,3,0,1,1,33.62,36.365,38,19.0012,41,150,191 +2011-08-10 14:00:00,3,0,1,1,34.44,36.365,34,22.0028,62,116,178 +2011-08-10 15:00:00,3,0,1,1,35.26,37.12,30,22.0028,53,141,194 +2011-08-10 16:00:00,3,0,1,1,35.26,37.12,26,19.9995,76,206,282 +2011-08-10 17:00:00,3,0,1,1,34.44,35.605,26,19.9995,71,513,584 +2011-08-10 18:00:00,3,0,1,1,33.62,35.605,28,19.9995,70,489,559 +2011-08-10 19:00:00,3,0,1,1,32.8,34.85,26,16.9979,79,334,413 +2011-08-10 20:00:00,3,0,1,1,31.16,33.335,31,8.9981,59,253,312 +2011-08-10 21:00:00,3,0,1,1,31.16,33.335,33,7.0015,47,162,209 +2011-08-10 22:00:00,3,0,1,1,30.34,32.575,37,0,17,122,139 +2011-08-10 23:00:00,3,0,1,1,30.34,32.575,37,6.0032,14,94,108 +2011-08-11 00:00:00,3,0,1,1,28.7,31.82,45,7.0015,6,40,46 +2011-08-11 01:00:00,3,0,1,1,28.7,31.82,45,8.9981,9,17,26 +2011-08-11 02:00:00,3,0,1,1,27.06,31.06,54,8.9981,3,8,11 +2011-08-11 03:00:00,3,0,1,1,26.24,31.06,57,8.9981,2,7,9 +2011-08-11 04:00:00,3,0,1,1,26.24,31.06,57,11.0014,1,4,5 +2011-08-11 05:00:00,3,0,1,1,26.24,31.06,61,12.998,2,23,25 +2011-08-11 06:00:00,3,0,1,1,25.42,30.305,65,11.0014,5,101,106 +2011-08-11 07:00:00,3,0,1,1,27.06,31.06,54,8.9981,15,292,307 +2011-08-11 08:00:00,3,0,1,1,28.7,31.82,45,11.0014,29,361,390 +2011-08-11 09:00:00,3,0,1,1,29.52,32.575,39,15.0013,31,166,197 +2011-08-11 10:00:00,3,0,1,1,30.34,32.575,37,16.9979,36,96,132 +2011-08-11 11:00:00,3,0,1,1,31.16,33.335,35,16.9979,59,128,187 +2011-08-11 12:00:00,3,0,1,1,31.98,34.09,31,16.9979,50,164,214 +2011-08-11 13:00:00,3,0,1,1,31.16,33.335,31,15.0013,51,166,217 +2011-08-11 14:00:00,3,0,1,1,32.8,34.85,29,0,39,103,142 +2011-08-11 15:00:00,3,0,1,1,32.8,34.85,29,19.9995,52,126,178 +2011-08-11 16:00:00,3,0,1,1,32.8,34.85,27,12.998,57,241,298 +2011-08-11 17:00:00,3,0,1,1,32.8,34.85,29,16.9979,96,486,582 +2011-08-11 18:00:00,3,0,1,1,31.98,34.09,29,6.0032,74,497,571 +2011-08-11 19:00:00,3,0,1,1,30.34,32.575,35,12.998,48,323,371 +2011-08-11 20:00:00,3,0,1,1,29.52,32.575,37,8.9981,56,232,288 +2011-08-11 21:00:00,3,0,1,1,28.7,32.575,48,6.0032,35,171,206 +2011-08-11 22:00:00,3,0,1,1,28.7,32.575,48,0,34,123,157 +2011-08-11 23:00:00,3,0,1,1,27.06,31.06,50,11.0014,22,105,127 +2011-08-12 00:00:00,3,0,1,1,26.24,31.06,53,11.0014,12,53,65 +2011-08-12 01:00:00,3,0,1,1,26.24,31.06,53,8.9981,4,19,23 +2011-08-12 02:00:00,3,0,1,1,25.42,31.06,57,12.998,0,15,15 +2011-08-12 03:00:00,3,0,1,1,25.42,31.06,53,11.0014,0,9,9 +2011-08-12 04:00:00,3,0,1,1,25.42,31.06,53,8.9981,0,5,5 +2011-08-12 05:00:00,3,0,1,1,24.6,31.06,56,8.9981,2,24,26 +2011-08-12 06:00:00,3,0,1,1,25.42,31.06,50,8.9981,3,73,76 +2011-08-12 07:00:00,3,0,1,1,26.24,31.06,44,11.0014,17,247,264 +2011-08-12 08:00:00,3,0,1,1,27.88,31.82,39,15.0013,29,397,426 +2011-08-12 09:00:00,3,0,1,1,29.52,32.575,34,8.9981,27,178,205 +2011-08-12 10:00:00,3,0,1,1,30.34,32.575,33,7.0015,44,86,130 +2011-08-12 11:00:00,3,0,1,1,31.16,33.335,29,0,48,108,156 +2011-08-12 12:00:00,3,0,1,1,32.8,34.85,27,0,55,167,222 +2011-08-12 13:00:00,3,0,1,1,31.98,34.09,29,6.0032,74,179,253 +2011-08-12 14:00:00,3,0,1,1,32.8,34.85,29,12.998,51,135,186 +2011-08-12 15:00:00,3,0,1,1,32.8,34.85,29,11.0014,59,190,249 +2011-08-12 16:00:00,3,0,1,1,33.62,35.605,28,0,68,266,334 +2011-08-12 17:00:00,3,0,1,1,33.62,35.605,26,0,93,423,516 +2011-08-12 18:00:00,3,0,1,1,31.16,34.09,40,19.9995,89,376,465 +2011-08-12 19:00:00,3,0,1,1,30.34,33.335,42,15.0013,101,284,385 +2011-08-12 20:00:00,3,0,1,1,29.52,32.575,42,15.0013,77,210,287 +2011-08-12 21:00:00,3,0,1,1,28.7,32.575,48,8.9981,73,153,226 +2011-08-12 22:00:00,3,0,1,1,27.88,31.82,51,0,74,157,231 +2011-08-12 23:00:00,3,0,1,1,27.88,31.82,51,0,51,100,151 +2011-08-13 00:00:00,3,0,0,1,27.88,31.82,51,7.0015,15,69,84 +2011-08-13 01:00:00,3,0,0,2,27.88,31.82,57,6.0032,13,64,77 +2011-08-13 02:00:00,3,0,0,1,27.88,31.82,57,0,16,58,74 +2011-08-13 03:00:00,3,0,0,1,27.06,31.06,65,8.9981,9,18,27 +2011-08-13 04:00:00,3,0,0,2,26.24,30.305,73,8.9981,5,5,10 +2011-08-13 05:00:00,3,0,0,1,26.24,30.305,73,7.0015,3,15,18 +2011-08-13 06:00:00,3,0,0,1,26.24,30.305,73,6.0032,3,19,22 +2011-08-13 07:00:00,3,0,0,2,27.06,31.06,74,12.998,10,34,44 +2011-08-13 08:00:00,3,0,0,2,28.7,32.575,65,11.0014,28,90,118 +2011-08-13 09:00:00,3,0,0,2,28.7,33.335,74,11.0014,70,138,208 +2011-08-13 10:00:00,3,0,0,2,29.52,34.85,74,15.0013,97,163,260 +2011-08-13 11:00:00,3,0,0,2,30.34,34.85,70,12.998,122,192,314 +2011-08-13 12:00:00,3,0,0,2,27.06,29.545,89,11.0014,175,246,421 +2011-08-13 13:00:00,3,0,0,2,30.34,35.605,74,22.0028,61,92,153 +2011-08-13 14:00:00,3,0,0,1,30.34,34.85,70,16.9979,113,146,259 +2011-08-13 15:00:00,3,0,0,3,27.88,31.82,79,23.9994,150,208,358 +2011-08-13 16:00:00,3,0,0,2,28.7,33.335,74,19.0012,148,133,281 +2011-08-13 17:00:00,3,0,0,2,29.52,34.85,74,16.9979,97,172,269 +2011-08-13 18:00:00,3,0,0,1,28.7,33.335,74,15.0013,123,169,292 +2011-08-13 19:00:00,3,0,0,2,27.88,31.82,79,19.0012,67,170,237 +2011-08-13 20:00:00,3,0,0,2,27.88,31.82,83,15.0013,78,105,183 +2011-08-13 21:00:00,3,0,0,2,27.88,31.82,83,26.0027,40,127,167 +2011-08-13 22:00:00,3,0,0,2,27.88,31.82,83,26.0027,36,118,154 +2011-08-13 23:00:00,3,0,0,2,27.06,30.305,83,22.0028,25,95,120 +2011-08-14 00:00:00,3,0,0,3,27.06,30.305,83,19.9995,19,71,90 +2011-08-14 01:00:00,3,0,0,3,26.24,28.79,89,15.0013,16,57,73 +2011-08-14 02:00:00,3,0,0,3,26.24,28.79,89,15.0013,13,49,62 +2011-08-14 03:00:00,3,0,0,2,26.24,28.03,94,16.9979,5,22,27 +2011-08-14 04:00:00,3,0,0,3,26.24,28.03,94,12.998,1,2,3 +2011-08-14 05:00:00,3,0,0,2,26.24,28.03,94,11.0014,1,9,10 +2011-08-14 06:00:00,3,0,0,2,26.24,28.03,94,7.0015,2,4,6 +2011-08-14 07:00:00,3,0,0,2,27.06,29.545,89,12.998,4,20,24 +2011-08-14 08:00:00,3,0,0,2,27.06,29.545,89,19.0012,20,21,41 +2011-08-14 09:00:00,3,0,0,3,27.06,29.545,89,19.0012,27,76,103 +2011-08-14 10:00:00,3,0,0,1,28.7,33.335,79,15.0013,67,116,183 +2011-08-14 11:00:00,3,0,0,1,28.7,33.335,79,12.998,81,117,198 +2011-08-14 12:00:00,3,0,0,2,28.7,33.335,79,15.0013,98,183,281 +2011-08-14 13:00:00,3,0,0,1,29.52,34.85,74,16.9979,144,233,377 +2011-08-14 14:00:00,3,0,0,1,30.34,34.85,70,12.998,126,244,370 +2011-08-14 15:00:00,3,0,0,1,30.34,34.85,66,12.998,128,203,331 +2011-08-14 16:00:00,3,0,0,1,30.34,34.85,66,11.0014,116,176,292 +2011-08-14 17:00:00,3,0,0,1,31.16,35.605,62,8.9981,133,196,329 +2011-08-14 18:00:00,3,0,0,1,30.34,34.85,66,11.0014,125,222,347 +2011-08-14 19:00:00,3,0,0,1,29.52,34.85,74,15.0013,75,184,259 +2011-08-14 20:00:00,3,0,0,1,28.7,33.335,84,11.0014,67,126,193 +2011-08-14 21:00:00,3,0,0,3,24.6,27.275,88,32.9975,51,104,155 +2011-08-14 22:00:00,3,0,0,3,24.6,27.275,88,32.9975,14,25,39 +2011-08-14 23:00:00,3,0,0,3,24.6,28.03,83,0,5,22,27 +2011-08-15 00:00:00,3,0,1,3,24.6,27.275,88,6.0032,7,18,25 +2011-08-15 01:00:00,3,0,1,2,24.6,27.275,88,8.9981,1,9,10 +2011-08-15 02:00:00,3,0,1,2,24.6,28.03,83,0,0,3,3 +2011-08-15 03:00:00,3,0,1,1,24.6,28.03,83,12.998,1,6,7 +2011-08-15 04:00:00,3,0,1,1,24.6,28.03,83,8.9981,1,4,5 +2011-08-15 05:00:00,3,0,1,2,24.6,27.275,88,12.998,3,14,17 +2011-08-15 06:00:00,3,0,1,1,24.6,27.275,88,16.9979,3,87,90 +2011-08-15 07:00:00,3,0,1,1,24.6,27.275,88,16.9979,10,248,258 +2011-08-15 08:00:00,3,0,1,1,26.24,29.545,78,22.0028,29,326,355 +2011-08-15 09:00:00,3,0,1,1,26.24,29.545,78,22.0028,52,170,222 +2011-08-15 10:00:00,3,0,1,1,27.88,31.82,69,19.0012,54,87,141 +2011-08-15 11:00:00,3,0,1,2,29.52,34.09,62,16.9979,41,112,153 +2011-08-15 12:00:00,3,0,1,1,30.34,34.09,58,19.0012,62,116,178 +2011-08-15 13:00:00,3,0,1,1,31.98,35.605,52,19.0012,53,140,193 +2011-08-15 14:00:00,3,0,1,1,30.34,34.09,55,6.0032,56,95,151 +2011-08-15 15:00:00,3,0,1,3,30.34,34.09,55,19.9995,49,133,182 +2011-08-15 16:00:00,3,0,1,1,30.34,34.09,55,22.0028,58,225,283 +2011-08-15 17:00:00,3,0,1,1,30.34,33.335,51,19.0012,59,471,530 +2011-08-15 18:00:00,3,0,1,1,28.7,32.575,65,12.998,70,413,483 +2011-08-15 19:00:00,3,0,1,1,28.7,32.575,65,0,54,343,397 +2011-08-15 20:00:00,3,0,1,1,27.06,31.06,74,8.9981,45,240,285 +2011-08-15 21:00:00,3,0,1,1,27.06,31.06,65,12.998,34,150,184 +2011-08-15 22:00:00,3,0,1,1,27.06,31.06,69,16.9979,22,76,98 +2011-08-15 23:00:00,3,0,1,1,26.24,30.305,69,15.0013,11,77,88 +2011-08-16 00:00:00,3,0,1,1,26.24,30.305,69,7.0015,8,23,31 +2011-08-16 01:00:00,3,0,1,1,26.24,30.305,69,11.0014,4,12,16 +2011-08-16 02:00:00,3,0,1,1,25.42,29.545,73,15.0013,1,3,4 +2011-08-16 03:00:00,3,0,1,1,25.42,29.545,73,15.0013,1,5,6 +2011-08-16 04:00:00,3,0,1,1,26.24,30.305,69,19.9995,0,5,5 +2011-08-16 05:00:00,3,0,1,1,25.42,29.545,73,19.0012,1,29,30 +2011-08-16 06:00:00,3,0,1,1,25.42,29.545,73,22.0028,4,115,119 +2011-08-16 07:00:00,3,0,1,1,26.24,30.305,69,16.9979,18,328,346 +2011-08-16 08:00:00,3,0,1,1,28.7,32.575,58,30.0026,24,417,441 +2011-08-16 09:00:00,3,0,1,1,27.88,31.82,61,19.0012,27,171,198 +2011-08-16 10:00:00,3,0,1,1,28.7,32.575,58,26.0027,28,83,111 +2011-08-16 11:00:00,3,0,1,1,30.34,33.335,51,15.0013,40,110,150 +2011-08-16 12:00:00,3,0,1,1,31.16,34.09,48,22.0028,42,120,162 +2011-08-16 13:00:00,3,0,1,1,31.16,34.09,48,19.9995,45,147,192 +2011-08-16 14:00:00,3,0,1,1,31.16,34.09,45,27.9993,65,117,182 +2011-08-16 15:00:00,3,0,1,1,32.8,35.605,41,19.9995,36,123,159 +2011-08-16 16:00:00,3,0,1,1,32.8,35.605,41,15.0013,55,248,303 +2011-08-16 17:00:00,3,0,1,1,31.16,34.09,45,22.0028,75,525,600 +2011-08-16 18:00:00,3,0,1,1,31.16,34.09,45,15.0013,54,516,570 +2011-08-16 19:00:00,3,0,1,1,30.34,33.335,48,12.998,56,320,376 +2011-08-16 20:00:00,3,0,1,1,30.34,33.335,51,0,48,232,280 +2011-08-16 21:00:00,3,0,1,1,29.52,33.335,54,0,38,177,215 +2011-08-16 22:00:00,3,0,1,1,28.7,32.575,61,0,31,121,152 +2011-08-16 23:00:00,3,0,1,1,27.06,31.06,65,8.9981,20,57,77 +2011-08-17 00:00:00,3,0,1,1,27.06,31.06,69,6.0032,8,16,24 +2011-08-17 01:00:00,3,0,1,1,26.24,30.305,73,11.0014,2,12,14 +2011-08-17 02:00:00,3,0,1,1,27.06,31.06,69,0,0,6,6 +2011-08-17 03:00:00,3,0,1,1,26.24,29.545,78,0,1,4,5 +2011-08-17 04:00:00,3,0,1,1,26.24,30.305,73,0,0,5,5 +2011-08-17 05:00:00,3,0,1,1,26.24,30.305,73,0,0,28,28 +2011-08-17 06:00:00,3,0,1,1,25.42,29.545,78,0,4,101,105 +2011-08-17 07:00:00,3,0,1,1,27.06,31.06,65,6.0032,12,296,308 +2011-08-17 08:00:00,3,0,1,1,28.7,32.575,54,11.0014,35,452,487 +2011-08-17 09:00:00,3,0,1,1,30.34,33.335,48,6.0032,31,178,209 +2011-08-17 10:00:00,3,0,1,1,31.16,34.09,43,6.0032,27,91,118 +2011-08-17 11:00:00,3,0,1,1,31.98,34.85,43,7.0015,20,108,128 +2011-08-17 12:00:00,3,0,1,1,32.8,36.365,43,19.0012,26,163,189 +2011-08-17 13:00:00,3,0,1,1,32.8,35.605,41,12.998,38,138,176 +2011-08-17 14:00:00,3,0,1,1,33.62,36.365,36,11.0014,54,138,192 +2011-08-17 15:00:00,3,0,1,1,32.8,36.365,43,8.9981,42,117,159 +2011-08-17 16:00:00,3,0,1,1,33.62,37.12,43,15.0013,62,238,300 +2011-08-17 17:00:00,3,0,1,1,32.8,37.12,49,15.0013,46,506,552 +2011-08-17 18:00:00,3,0,1,1,31.16,34.85,55,16.9979,86,470,556 +2011-08-17 19:00:00,3,0,1,1,31.16,34.85,55,15.0013,50,297,347 +2011-08-17 20:00:00,3,0,1,1,30.34,34.09,58,16.9979,37,243,280 +2011-08-17 21:00:00,3,0,1,1,29.52,34.09,62,15.0013,38,192,230 +2011-08-17 22:00:00,3,0,1,1,28.7,32.575,65,12.998,29,142,171 +2011-08-17 23:00:00,3,0,1,1,28.7,32.575,65,19.0012,20,85,105 +2011-08-18 00:00:00,3,0,1,1,27.88,31.82,65,8.9981,18,38,56 +2011-08-18 01:00:00,3,0,1,2,27.06,31.06,65,11.0014,13,11,24 +2011-08-18 02:00:00,3,0,1,1,27.06,31.06,65,15.0013,2,4,6 +2011-08-18 03:00:00,3,0,1,1,27.06,31.06,69,19.0012,0,6,6 +2011-08-18 04:00:00,3,0,1,1,26.24,30.305,73,15.0013,0,9,9 +2011-08-18 05:00:00,3,0,1,1,26.24,29.545,78,19.0012,0,27,27 +2011-08-18 06:00:00,3,0,1,2,26.24,29.545,78,16.9979,6,97,103 +2011-08-18 07:00:00,3,0,1,1,26.24,29.545,78,19.9995,19,289,308 +2011-08-18 08:00:00,3,0,1,1,27.06,31.06,74,19.0012,27,393,420 +2011-08-18 09:00:00,3,0,1,1,29.52,34.09,66,16.9979,42,186,228 +2011-08-18 10:00:00,3,0,1,1,30.34,34.85,66,16.9979,37,92,129 +2011-08-18 11:00:00,3,0,1,1,31.16,35.605,58,16.9979,44,97,141 +2011-08-18 12:00:00,3,0,1,1,32.8,37.12,52,19.0012,34,139,173 +2011-08-18 13:00:00,3,0,1,1,32.8,37.12,52,23.9994,33,154,187 +2011-08-18 14:00:00,3,0,1,1,33.62,37.88,46,22.0028,67,115,182 +2011-08-18 15:00:00,3,0,1,1,32.8,36.365,46,23.9994,56,118,174 +2011-08-18 16:00:00,3,0,1,1,32.8,36.365,46,23.9994,49,196,245 +2011-08-18 17:00:00,3,0,1,3,32.8,36.365,46,19.9995,44,365,409 +2011-08-18 18:00:00,3,0,1,3,31.16,34.85,55,16.9979,48,226,274 +2011-08-18 19:00:00,3,0,1,1,27.06,30.305,83,7.0015,26,115,141 +2011-08-18 20:00:00,3,0,1,1,27.06,30.305,83,7.0015,24,141,165 +2011-08-18 21:00:00,3,0,1,2,27.88,31.82,79,0,12,137,149 +2011-08-18 22:00:00,3,0,1,2,28.7,33.335,74,7.0015,18,117,135 +2011-08-18 23:00:00,3,0,1,2,28.7,33.335,74,8.9981,20,94,114 +2011-08-19 00:00:00,3,0,1,3,27.88,31.82,69,12.998,9,53,62 +2011-08-19 01:00:00,3,0,1,3,26.24,28.79,89,0,1,19,20 +2011-08-19 02:00:00,3,0,1,3,26.24,28.79,83,0,0,8,8 +2011-08-19 03:00:00,3,0,1,1,26.24,29.545,78,0,2,1,3 +2011-08-19 04:00:00,3,0,1,1,26.24,28.79,83,0,1,7,8 +2011-08-19 05:00:00,3,0,1,1,26.24,28.79,83,0,1,16,17 +2011-08-19 06:00:00,3,0,1,1,26.24,28.79,83,0,2,91,93 +2011-08-19 07:00:00,3,0,1,2,27.06,30.305,83,6.0032,12,251,263 +2011-08-19 08:00:00,3,0,1,2,27.06,30.305,83,0,30,368,398 +2011-08-19 09:00:00,3,0,1,1,28.7,32.575,65,8.9981,31,187,218 +2011-08-19 10:00:00,3,0,1,1,29.52,34.09,62,6.0032,57,108,165 +2011-08-19 11:00:00,3,0,1,2,29.52,34.09,66,6.0032,45,120,165 +2011-08-19 12:00:00,3,0,1,2,30.34,34.09,62,6.0032,54,168,222 +2011-08-19 13:00:00,3,0,1,2,31.16,35.605,62,12.998,63,169,232 +2011-08-19 14:00:00,3,0,1,1,31.98,36.365,55,12.998,78,142,220 +2011-08-19 15:00:00,3,0,1,1,32.8,37.12,49,7.0015,66,156,222 +2011-08-19 16:00:00,3,0,1,1,32.8,37.12,49,0,66,261,327 +2011-08-19 17:00:00,3,0,1,1,31.16,35.605,58,35.0008,85,442,527 +2011-08-19 18:00:00,3,0,1,1,31.16,35.605,58,35.0008,88,337,425 +2011-08-19 19:00:00,3,0,1,3,25.42,29.545,73,31.0009,33,132,165 +2011-08-19 20:00:00,3,0,1,3,25.42,28.79,83,19.9995,12,46,58 +2011-08-19 21:00:00,3,0,1,1,25.42,28.79,83,8.9981,18,89,107 +2011-08-19 22:00:00,3,0,1,1,24.6,27.275,88,8.9981,25,97,122 +2011-08-19 23:00:00,3,0,1,2,24.6,27.275,88,6.0032,18,88,106 +2011-09-01 00:00:00,3,0,1,1,24.6,28.79,78,7.0015,18,33,51 +2011-09-01 01:00:00,3,0,1,1,24.6,29.545,73,6.0032,7,14,21 +2011-09-01 02:00:00,3,0,1,1,23.78,27.275,78,6.0032,14,11,25 +2011-09-01 03:00:00,3,0,1,1,23.78,27.275,78,6.0032,7,7,14 +2011-09-01 04:00:00,3,0,1,1,22.96,26.515,83,6.0032,0,7,7 +2011-09-01 05:00:00,3,0,1,1,22.96,26.515,73,6.0032,1,22,23 +2011-09-01 06:00:00,3,0,1,1,24.6,28.79,78,0,2,103,105 +2011-09-01 07:00:00,3,0,1,1,24.6,28.79,78,0,7,335,342 +2011-09-01 08:00:00,3,0,1,1,25.42,29.545,73,8.9981,31,467,498 +2011-09-01 09:00:00,3,0,1,1,26.24,30.305,69,7.0015,29,178,207 +2011-09-01 10:00:00,3,0,1,1,27.88,31.82,61,8.9981,46,92,138 +2011-09-01 11:00:00,3,0,1,1,29.52,33.335,51,8.9981,51,141,192 +2011-09-01 12:00:00,3,0,1,2,29.52,33.335,51,8.9981,64,165,229 +2011-09-01 13:00:00,3,0,1,2,29.52,33.335,48,6.0032,50,169,219 +2011-09-01 14:00:00,3,0,1,3,29.52,33.335,54,16.9979,54,144,198 +2011-09-01 15:00:00,3,0,1,1,29.52,33.335,51,8.9981,39,135,174 +2011-09-01 16:00:00,3,0,1,1,30.34,33.335,51,12.998,55,253,308 +2011-09-01 17:00:00,3,0,1,1,29.52,33.335,54,16.9979,61,567,628 +2011-09-01 18:00:00,3,0,1,1,29.52,33.335,54,15.0013,69,462,531 +2011-09-01 19:00:00,3,0,1,1,28.7,32.575,58,11.0014,79,364,443 +2011-09-01 20:00:00,3,0,1,1,27.06,31.06,61,15.0013,33,247,280 +2011-09-01 21:00:00,3,0,1,2,27.06,31.06,57,12.998,17,160,177 +2011-09-01 22:00:00,3,0,1,2,27.06,31.06,57,15.0013,34,145,179 +2011-09-01 23:00:00,3,0,1,1,26.24,30.305,65,16.9979,15,111,126 +2011-09-02 00:00:00,3,0,1,1,26.24,30.305,65,12.998,6,58,64 +2011-09-02 01:00:00,3,0,1,3,25.42,29.545,73,7.0015,4,28,32 +2011-09-02 02:00:00,3,0,1,3,25.42,29.545,73,7.0015,9,11,20 +2011-09-02 03:00:00,3,0,1,2,24.6,28.03,83,11.0014,4,4,8 +2011-09-02 04:00:00,3,0,1,1,24.6,28.03,83,6.0032,2,2,4 +2011-09-02 05:00:00,3,0,1,2,24.6,28.03,83,8.9981,0,20,20 +2011-09-02 06:00:00,3,0,1,1,24.6,28.03,83,8.9981,3,73,76 +2011-09-02 07:00:00,3,0,1,1,24.6,28.03,83,7.0015,6,253,259 +2011-09-02 08:00:00,3,0,1,1,25.42,29.545,78,12.998,22,434,456 +2011-09-02 09:00:00,3,0,1,2,25.42,28.79,83,7.0015,30,190,220 +2011-09-02 10:00:00,3,0,1,2,26.24,30.305,76,11.0014,34,106,140 +2011-09-02 11:00:00,3,0,1,2,27.06,31.06,74,7.0015,51,141,192 +2011-09-02 12:00:00,3,0,1,2,27.06,31.06,69,15.0013,82,178,260 +2011-09-02 13:00:00,3,0,1,2,27.88,31.82,65,8.9981,72,207,279 +2011-09-02 14:00:00,3,0,1,2,28.7,32.575,61,7.0015,75,208,283 +2011-09-02 15:00:00,3,0,1,2,28.7,32.575,61,16.9979,69,277,346 +2011-09-02 16:00:00,3,0,1,2,28.7,32.575,61,8.9981,82,299,381 +2011-09-02 17:00:00,3,0,1,2,27.88,31.82,65,11.0014,78,377,455 +2011-09-02 18:00:00,3,0,1,2,27.88,31.82,65,12.998,50,305,355 +2011-09-02 19:00:00,3,0,1,1,27.06,31.06,69,8.9981,67,220,287 +2011-09-02 20:00:00,3,0,1,1,26.24,30.305,73,0,38,158,196 +2011-09-02 21:00:00,3,0,1,2,26.24,30.305,73,6.0032,28,121,149 +2011-09-02 22:00:00,3,0,1,2,26.24,30.305,73,11.0014,33,114,147 +2011-09-02 23:00:00,3,0,1,2,26.24,30.305,73,11.0014,30,68,98 +2011-09-03 00:00:00,3,0,0,2,26.24,30.305,73,7.0015,22,65,87 +2011-09-03 01:00:00,3,0,0,2,26.24,30.305,69,16.9979,17,57,74 +2011-09-03 02:00:00,3,0,0,2,26.24,30.305,69,15.0013,15,26,41 +2011-09-03 03:00:00,3,0,0,1,25.42,29.545,73,11.0014,17,18,35 +2011-09-03 04:00:00,3,0,0,1,25.42,29.545,73,11.0014,3,4,7 +2011-09-03 05:00:00,3,0,0,1,25.42,30.305,69,12.998,3,9,12 +2011-09-03 06:00:00,3,0,0,1,25.42,29.545,73,11.0014,4,19,23 +2011-09-03 07:00:00,3,0,0,1,25.42,29.545,73,12.998,5,33,38 +2011-09-03 08:00:00,3,0,0,1,26.24,30.305,69,11.0014,24,65,89 +2011-09-03 09:00:00,3,0,0,2,27.06,31.06,69,16.9979,83,118,201 +2011-09-03 10:00:00,3,0,0,3,27.06,31.06,65,16.9979,90,168,258 +2011-09-03 11:00:00,3,0,0,3,27.06,31.06,69,19.0012,66,128,194 +2011-09-03 12:00:00,3,0,0,1,28.7,32.575,61,15.0013,97,160,257 +2011-09-03 13:00:00,3,0,0,1,28.7,32.575,65,15.0013,153,200,353 +2011-09-03 14:00:00,3,0,0,2,29.52,34.09,66,11.0014,204,176,380 +2011-09-03 15:00:00,3,0,0,1,29.52,34.09,70,11.0014,187,201,388 +2011-09-03 16:00:00,3,0,0,1,29.52,34.09,70,12.998,186,188,374 +2011-09-03 17:00:00,3,0,0,1,29.52,34.09,70,15.0013,170,201,371 +2011-09-03 18:00:00,3,0,0,1,29.52,34.09,70,11.0014,160,179,339 +2011-09-03 19:00:00,3,0,0,1,28.7,33.335,74,8.9981,147,148,295 +2011-09-03 20:00:00,3,0,0,1,28.7,33.335,79,11.0014,99,120,219 +2011-09-03 21:00:00,3,0,0,1,27.88,31.82,83,8.9981,71,93,164 +2011-09-03 22:00:00,3,0,0,1,27.88,31.82,83,7.0015,66,96,162 +2011-09-03 23:00:00,3,0,0,1,27.06,31.06,85,8.9981,46,77,123 +2011-09-04 00:00:00,3,0,0,1,27.06,29.545,89,12.998,33,76,109 +2011-09-04 01:00:00,3,0,0,1,27.06,30.305,83,8.9981,37,38,75 +2011-09-04 02:00:00,3,0,0,1,27.06,30.305,83,12.998,17,43,60 +2011-09-04 03:00:00,3,0,0,1,26.24,28.79,89,12.998,20,23,43 +2011-09-04 04:00:00,3,0,0,1,26.24,28.79,83,11.0014,0,4,4 +2011-09-04 05:00:00,3,0,0,1,26.24,28.79,83,8.9981,1,5,6 +2011-09-04 06:00:00,3,0,0,1,26.24,28.79,84,15.0013,0,3,3 +2011-09-04 07:00:00,3,0,0,1,27.06,30.305,78,12.998,10,20,30 +2011-09-04 08:00:00,3,0,0,1,27.06,30.305,78,11.0014,21,49,70 +2011-09-04 09:00:00,3,0,0,1,27.06,30.305,78,11.0014,87,102,189 +2011-09-04 10:00:00,3,0,0,1,28.7,33.335,74,8.9981,150,147,297 +2011-09-04 11:00:00,3,0,0,1,30.34,34.85,70,11.0014,174,163,337 +2011-09-04 12:00:00,3,0,0,1,31.16,36.365,66,11.0014,214,221,435 +2011-09-04 13:00:00,3,0,0,2,31.98,37.12,62,19.0012,245,174,419 +2011-09-04 14:00:00,3,0,0,1,31.98,37.88,66,22.0028,205,156,361 +2011-09-04 15:00:00,3,0,0,1,31.98,37.88,66,19.0012,218,192,410 +2011-09-04 16:00:00,3,0,0,1,32.8,38.635,59,15.0013,196,141,337 +2011-09-04 17:00:00,3,0,0,1,31.16,36.365,66,15.0013,204,172,376 +2011-09-04 18:00:00,3,0,0,1,31.16,36.365,66,12.998,187,169,356 +2011-09-04 19:00:00,3,0,0,1,30.34,34.85,70,12.998,178,150,328 +2011-09-04 20:00:00,3,0,0,1,30.34,34.85,70,19.9995,104,125,229 +2011-09-04 21:00:00,3,0,0,1,29.52,34.85,74,16.9979,104,103,207 +2011-09-04 22:00:00,3,0,0,2,29.52,34.85,74,19.0012,70,85,155 +2011-09-04 23:00:00,3,0,0,2,29.52,34.09,70,11.0014,46,58,104 +2011-09-05 00:00:00,3,1,0,2,28.7,33.335,74,15.0013,31,66,97 +2011-09-05 01:00:00,3,1,0,2,27.88,31.82,79,7.0015,19,35,54 +2011-09-05 02:00:00,3,1,0,2,27.88,31.82,79,11.0014,17,22,39 +2011-09-05 03:00:00,3,1,0,2,27.88,31.82,74,19.9995,4,12,16 +2011-09-05 04:00:00,3,1,0,2,27.88,31.82,69,19.0012,3,5,8 +2011-09-05 05:00:00,3,1,0,2,27.06,31.06,74,11.0014,2,4,6 +2011-09-05 06:00:00,3,1,0,2,27.06,31.06,74,8.9981,6,5,11 +2011-09-05 07:00:00,3,1,0,1,27.06,31.06,74,11.0014,11,30,41 +2011-09-05 08:00:00,3,1,0,2,27.06,30.305,78,12.998,45,56,101 +2011-09-05 09:00:00,3,1,0,3,27.88,31.82,74,11.0014,63,89,152 +2011-09-05 10:00:00,3,1,0,2,28.7,32.575,70,11.0014,107,137,244 +2011-09-05 11:00:00,3,1,0,2,28.7,33.335,74,11.0014,101,207,308 +2011-09-05 12:00:00,3,1,0,2,29.52,34.09,70,12.998,141,212,353 +2011-09-05 13:00:00,3,1,0,2,30.34,34.85,70,8.9981,154,235,389 +2011-09-05 14:00:00,3,1,0,1,30.34,34.85,70,11.0014,145,212,357 +2011-09-05 15:00:00,3,1,0,2,27.88,31.82,79,19.0012,111,142,253 +2011-09-05 16:00:00,3,1,0,2,27.88,31.82,79,19.0012,92,192,284 +2011-09-05 17:00:00,3,1,0,2,27.06,29.545,89,7.0015,37,77,114 +2011-09-05 18:00:00,3,1,0,1,27.06,29.545,89,6.0032,31,92,123 +2011-09-05 19:00:00,3,1,0,3,27.06,29.545,94,7.0015,52,123,175 +2011-09-05 20:00:00,3,1,0,3,27.06,29.545,94,16.9979,26,56,82 +2011-09-05 21:00:00,3,1,0,2,27.06,29.545,94,19.9995,20,40,60 +2011-09-05 22:00:00,3,1,0,2,24.6,27.275,88,39.0007,15,49,64 +2011-09-05 23:00:00,3,1,0,3,22.96,26.515,88,26.0027,3,17,20 +2011-09-06 00:00:00,3,0,1,3,22.14,25.76,94,23.9994,1,7,8 +2011-09-06 02:00:00,3,0,1,3,22.14,25.76,94,16.9979,0,2,2 +2011-09-06 03:00:00,3,0,1,3,22.14,25.76,94,19.9995,1,0,1 +2011-09-06 04:00:00,3,0,1,2,22.14,25.76,94,19.9995,1,3,4 +2011-09-06 05:00:00,3,0,1,3,22.14,25.76,88,23.9994,1,20,21 +2011-09-06 06:00:00,3,0,1,2,22.14,25.76,88,22.0028,0,72,72 +2011-09-06 07:00:00,3,0,1,2,22.14,25.76,83,23.9994,6,166,172 +2011-09-06 08:00:00,3,0,1,3,22.14,25.76,83,26.0027,15,349,364 +2011-09-06 09:00:00,3,0,1,2,22.14,25.76,81,27.9993,18,167,185 +2011-09-06 10:00:00,3,0,1,3,22.14,25.76,83,23.9994,16,90,106 +2011-09-06 11:00:00,3,0,1,3,22.14,25.76,83,26.0027,11,78,89 +2011-09-06 12:00:00,3,0,1,3,22.14,25.76,83,26.0027,16,51,67 +2011-09-06 13:00:00,3,0,1,3,22.14,25.76,88,19.9995,5,24,29 +2011-09-06 14:00:00,3,0,1,3,22.14,25.76,88,19.0012,3,21,24 +2011-09-06 15:00:00,3,0,1,3,22.14,25.76,94,26.0027,18,71,89 +2011-09-06 16:00:00,3,0,1,3,22.14,25.76,94,26.0027,11,95,106 +2011-09-06 17:00:00,3,0,1,2,22.14,25.76,88,26.0027,15,276,291 +2011-09-06 18:00:00,3,0,1,2,22.14,25.76,88,26.0027,22,351,373 +2011-09-06 19:00:00,3,0,1,2,22.14,25.76,88,27.9993,12,269,281 +2011-09-06 20:00:00,3,0,1,3,22.14,25.76,88,19.9995,13,150,163 +2011-09-06 21:00:00,3,0,1,3,22.14,25.76,88,19.0012,12,109,121 +2011-09-06 22:00:00,3,0,1,2,22.14,25.76,94,22.0028,5,79,84 +2011-09-06 23:00:00,3,0,1,3,22.14,25.76,94,16.9979,2,56,58 +2011-09-07 00:00:00,3,0,1,2,22.14,25.76,94,15.0013,1,12,13 +2011-09-07 01:00:00,3,0,1,3,22.14,25.76,94,16.9979,2,3,5 +2011-09-07 02:00:00,3,0,1,2,22.14,25.76,94,15.0013,2,4,6 +2011-09-07 03:00:00,3,0,1,3,22.96,26.515,94,8.9981,1,1,2 +2011-09-07 04:00:00,3,0,1,3,22.96,26.515,94,11.0014,0,4,4 +2011-09-07 05:00:00,3,0,1,2,22.96,26.515,100,8.9981,1,15,16 +2011-09-07 06:00:00,3,0,1,3,24.6,27.275,88,7.0015,1,74,75 +2011-09-07 07:00:00,3,0,1,3,24.6,27.275,88,6.0032,3,83,86 +2011-09-07 08:00:00,3,0,1,3,25.42,27.275,94,6.0032,9,319,328 +2011-09-07 09:00:00,3,0,1,3,24.6,27.275,88,8.9981,14,176,190 +2011-09-07 10:00:00,3,0,1,3,24.6,27.275,88,8.9981,3,63,66 +2011-09-07 11:00:00,3,0,1,3,24.6,25.76,94,0,1,9,10 +2011-09-07 12:00:00,3,0,1,3,22.96,26.515,94,0,1,21,22 +2011-09-07 13:00:00,3,0,1,3,24.6,27.275,88,0,2,9,11 +2011-09-07 14:00:00,3,0,1,3,24.6,25.76,93,0,1,24,25 +2011-09-07 15:00:00,3,0,1,3,25.42,27.275,94,7.0015,3,55,58 +2011-09-07 16:00:00,3,0,1,1,26.24,28.79,89,0,7,137,144 +2011-09-07 17:00:00,3,0,1,3,26.24,28.79,89,0,21,264,285 +2011-09-07 18:00:00,3,0,1,3,26.24,28.79,89,0,18,219,237 +2011-09-07 19:00:00,3,0,1,2,26.24,28.79,89,0,14,212,226 +2011-09-07 20:00:00,3,0,1,3,26.24,28.79,89,6.0032,3,93,96 +2011-09-07 21:00:00,3,0,1,3,26.24,28.79,89,6.0032,4,34,38 +2011-09-07 22:00:00,3,0,1,3,25.42,27.275,94,11.0014,3,26,29 +2011-09-07 23:00:00,3,0,1,3,25.42,27.275,94,12.998,3,21,24 +2011-09-08 00:00:00,3,0,1,3,24.6,25,100,12.998,3,11,14 +2011-09-08 01:00:00,3,0,1,3,25.42,27.275,94,7.0015,0,4,4 +2011-09-08 03:00:00,3,0,1,3,25.42,27.275,94,0,0,2,2 +2011-09-08 04:00:00,3,0,1,2,25.42,27.275,94,6.0032,0,3,3 +2011-09-08 05:00:00,3,0,1,3,25.42,27.275,94,6.0032,1,13,14 +2011-09-08 06:00:00,3,0,1,3,25.42,27.275,94,11.0014,1,55,56 +2011-09-08 07:00:00,3,0,1,3,25.42,27.275,94,7.0015,7,172,179 +2011-09-08 08:00:00,3,0,1,3,25.42,27.275,94,8.9981,7,188,195 +2011-09-08 09:00:00,3,0,1,2,25.42,25.76,100,16.9979,4,65,69 +2011-09-08 10:00:00,3,0,1,2,26.24,28.03,94,7.0015,8,57,65 +2011-09-08 11:00:00,3,0,1,2,26.24,28.03,94,15.0013,16,82,98 +2011-09-08 12:00:00,3,0,1,2,27.06,29.545,94,15.0013,17,85,102 +2011-09-08 13:00:00,3,0,1,2,27.88,31.82,83,26.0027,14,112,126 +2011-09-08 14:00:00,3,0,1,2,28.7,33.335,79,23.9994,15,105,120 +2011-09-08 15:00:00,3,0,1,3,27.06,29.545,89,19.9995,24,115,139 +2011-09-08 16:00:00,3,0,1,3,26.24,28.03,94,19.0012,5,151,156 +2011-09-08 17:00:00,3,0,1,3,26.24,28.03,94,19.0012,11,102,113 +2011-09-08 18:00:00,3,0,1,3,26.24,28.03,94,23.9994,2,66,68 +2011-09-08 19:00:00,3,0,1,3,25.42,25.76,100,22.0028,1,51,52 +2011-09-08 20:00:00,3,0,1,2,25.42,27.275,94,11.0014,6,83,89 +2011-09-08 21:00:00,3,0,1,3,26.24,28.03,94,7.0015,6,76,82 +2011-09-08 22:00:00,3,0,1,3,25.42,25.76,100,6.0032,5,65,70 +2011-09-08 23:00:00,3,0,1,3,25.42,25.76,100,6.0032,0,26,26 +2011-09-09 00:00:00,3,0,1,3,26.24,28.03,94,12.998,1,15,16 +2011-09-09 01:00:00,3,0,1,2,25.42,25.76,100,11.0014,0,8,8 +2011-09-09 02:00:00,3,0,1,2,25.42,25.76,100,16.9979,1,7,8 +2011-09-09 03:00:00,3,0,1,2,25.42,27.275,94,16.9979,1,1,2 +2011-09-09 04:00:00,3,0,1,3,25.42,27.275,94,11.0014,0,3,3 +2011-09-09 05:00:00,3,0,1,2,25.42,27.275,94,8.9981,0,14,14 +2011-09-09 06:00:00,3,0,1,2,25.42,25.76,100,8.9981,3,54,57 +2011-09-09 07:00:00,3,0,1,3,25.42,25.76,100,16.9979,4,104,108 +2011-09-09 08:00:00,3,0,1,3,25.42,27.275,94,11.0014,12,276,288 +2011-09-09 09:00:00,3,0,1,3,25.42,27.275,94,11.0014,5,131,136 +2011-09-09 10:00:00,3,0,1,2,25.42,25.76,100,0,2,27,29 +2011-09-09 11:00:00,3,0,1,2,25.42,27.275,94,0,6,66,72 +2011-09-09 12:00:00,3,0,1,1,26.24,28.03,94,0,4,71,75 +2011-09-09 13:00:00,3,0,1,1,28.7,33.335,79,6.0032,14,108,122 +2011-09-09 14:00:00,3,0,1,1,29.52,34.85,74,6.0032,29,119,148 +2011-09-09 15:00:00,3,0,1,1,30.34,34.85,66,0,27,161,188 +2011-09-09 16:00:00,3,0,1,1,30.34,34.85,66,8.9981,41,244,285 +2011-09-09 17:00:00,3,0,1,1,28.7,33.335,79,16.9979,54,451,505 +2011-09-09 18:00:00,3,0,1,1,28.7,33.335,79,12.998,33,377,410 +2011-09-09 19:00:00,3,0,1,1,27.06,29.545,89,11.0014,33,316,349 +2011-09-09 20:00:00,3,0,1,1,26.24,28.03,94,6.0032,30,180,210 +2011-09-09 21:00:00,3,0,1,1,27.06,29.545,89,0,49,154,203 +2011-09-09 22:00:00,3,0,1,1,25.42,27.275,94,0,33,127,160 +2011-09-09 23:00:00,3,0,1,1,25.42,27.275,94,6.0032,35,113,148 +2011-09-10 00:00:00,3,0,0,1,25.42,27.275,94,0,32,84,116 +2011-09-10 01:00:00,3,0,0,2,25.42,27.275,94,0,16,67,83 +2011-09-10 02:00:00,3,0,0,2,24.6,25,97,7.0015,18,46,64 +2011-09-10 03:00:00,3,0,0,1,23.78,27.275,100,8.9981,8,29,37 +2011-09-10 04:00:00,3,0,0,1,23.78,27.275,94,6.0032,3,4,7 +2011-09-10 05:00:00,3,0,0,1,23.78,27.275,94,8.9981,2,6,8 +2011-09-10 06:00:00,3,0,0,1,23.78,27.275,94,11.0014,0,6,6 +2011-09-10 07:00:00,3,0,0,1,24.6,27.275,88,8.9981,9,43,52 +2011-09-10 08:00:00,3,0,0,1,25.42,28.79,83,11.0014,16,103,119 +2011-09-10 09:00:00,3,0,0,1,26.24,29.545,78,19.9995,39,168,207 +2011-09-10 10:00:00,3,0,0,1,28.7,32.575,65,16.9979,85,233,318 +2011-09-10 11:00:00,3,0,0,1,29.52,34.09,62,16.9979,108,252,360 +2011-09-10 12:00:00,3,0,0,1,29.52,34.09,62,15.0013,144,260,404 +2011-09-10 13:00:00,3,0,0,1,30.34,34.09,55,19.0012,131,239,370 +2011-09-10 14:00:00,3,0,0,1,30.34,34.09,55,19.0012,129,230,359 +2011-09-10 15:00:00,3,0,0,1,30.34,34.09,55,15.0013,217,263,480 +2011-09-10 16:00:00,3,0,0,1,30.34,34.09,55,12.998,170,261,431 +2011-09-10 17:00:00,3,0,0,1,30.34,34.09,55,15.0013,185,275,460 +2011-09-10 18:00:00,3,0,0,1,29.52,33.335,58,12.998,119,241,360 +2011-09-10 19:00:00,3,0,0,1,28.7,32.575,58,8.9981,101,214,315 +2011-09-10 20:00:00,3,0,0,1,27.06,31.06,69,7.0015,78,167,245 +2011-09-10 21:00:00,3,0,0,1,26.24,29.545,78,6.0032,59,171,230 +2011-09-10 22:00:00,3,0,0,1,26.24,29.545,78,0,49,126,175 +2011-09-10 23:00:00,3,0,0,2,25.42,28.03,88,0,32,107,139 +2011-09-11 00:00:00,3,0,0,1,25.42,28.03,88,0,29,79,108 +2011-09-11 01:00:00,3,0,0,2,25.42,28.03,88,0,22,66,88 +2011-09-11 02:00:00,3,0,0,2,25.42,29.545,78,12.998,16,60,76 +2011-09-11 03:00:00,3,0,0,2,25.42,29.545,78,6.0032,15,30,45 +2011-09-11 04:00:00,3,0,0,1,24.6,28.03,83,8.9981,3,6,9 +2011-09-11 05:00:00,3,0,0,1,24.6,28.03,83,8.9981,15,24,39 +2011-09-11 06:00:00,3,0,0,1,23.78,27.275,88,7.0015,4,16,20 +2011-09-11 07:00:00,3,0,0,1,24.6,27.275,88,0,9,28,37 +2011-09-11 08:00:00,3,0,0,1,26.24,29.545,78,0,25,69,94 +2011-09-11 09:00:00,3,0,0,1,27.06,31.06,74,0,59,168,227 +2011-09-11 10:00:00,3,0,0,1,28.7,32.575,65,0,120,214,334 +2011-09-11 11:00:00,3,0,0,1,28.7,32.575,65,0,144,258,402 +2011-09-11 12:00:00,3,0,0,1,28.7,32.575,65,0,113,298,411 +2011-09-11 13:00:00,3,0,0,1,30.34,34.09,58,7.0015,119,231,350 +2011-09-11 14:00:00,3,0,0,1,29.52,33.335,58,19.0012,120,222,342 +2011-09-11 15:00:00,3,0,0,1,30.34,33.335,51,19.9995,134,270,404 +2011-09-11 16:00:00,3,0,0,1,29.52,33.335,51,19.9995,180,303,483 +2011-09-11 17:00:00,3,0,0,1,29.52,33.335,51,8.9981,152,228,380 +2011-09-11 18:00:00,3,0,0,1,27.88,31.82,65,19.9995,110,229,339 +2011-09-11 19:00:00,3,0,0,1,26.24,30.305,69,7.0015,101,232,333 +2011-09-11 20:00:00,3,0,0,1,25.42,29.545,73,7.0015,65,161,226 +2011-09-11 21:00:00,3,0,0,1,26.24,30.305,69,0,45,114,159 +2011-09-11 22:00:00,3,0,0,1,25.42,30.305,69,26.0027,21,74,95 +2011-09-11 23:00:00,3,0,0,3,23.78,27.275,78,6.0032,12,33,45 +2011-09-12 00:00:00,3,0,1,1,22.96,26.515,88,6.0032,5,11,16 +2011-09-12 01:00:00,3,0,1,1,22.96,26.515,88,0,1,11,12 +2011-09-12 02:00:00,3,0,1,1,22.96,26.515,88,0,2,0,2 +2011-09-12 04:00:00,3,0,1,1,22.14,25.76,94,7.0015,0,4,4 +2011-09-12 05:00:00,3,0,1,1,22.96,26.515,83,0,1,23,24 +2011-09-12 06:00:00,3,0,1,1,22.96,26.515,83,0,1,108,109 +2011-09-12 07:00:00,3,0,1,1,23.78,27.275,83,0,12,300,312 +2011-09-12 08:00:00,3,0,1,1,24.6,28.79,78,6.0032,26,382,408 +2011-09-12 09:00:00,3,0,1,1,26.24,30.305,69,0,21,155,176 +2011-09-12 10:00:00,3,0,1,1,27.88,31.82,62,11.0014,40,89,129 +2011-09-12 11:00:00,3,0,1,1,28.7,32.575,58,12.998,34,131,165 +2011-09-12 12:00:00,3,0,1,1,29.52,33.335,51,12.998,37,147,184 +2011-09-12 13:00:00,3,0,1,1,29.52,33.335,54,7.0015,43,120,163 +2011-09-12 14:00:00,3,0,1,1,30.34,33.335,51,11.0014,60,129,189 +2011-09-12 15:00:00,3,0,1,1,30.34,33.335,48,6.0032,60,152,212 +2011-09-12 16:00:00,3,0,1,1,29.52,33.335,48,0,60,238,298 +2011-09-12 17:00:00,3,0,1,1,29.52,33.335,51,11.0014,75,515,590 +2011-09-12 18:00:00,3,0,1,1,28.7,32.575,54,12.998,56,515,571 +2011-09-12 19:00:00,3,0,1,1,27.88,31.82,57,8.9981,63,373,436 +2011-09-12 20:00:00,3,0,1,1,27.06,31.06,65,0,41,258,299 +2011-09-12 21:00:00,3,0,1,1,26.24,30.305,73,6.0032,29,166,195 +2011-09-12 22:00:00,3,0,1,1,25.42,28.79,83,11.0014,16,134,150 +2011-09-12 23:00:00,3,0,1,1,25.42,28.79,83,7.0015,7,62,69 +2011-09-13 00:00:00,3,0,1,1,24.6,27.275,88,7.0015,7,19,26 +2011-09-13 01:00:00,3,0,1,1,23.78,27.275,83,7.0015,4,6,10 +2011-09-13 02:00:00,3,0,1,1,24.6,28.79,78,0,2,0,2 +2011-09-13 03:00:00,3,0,1,1,23.78,27.275,83,0,2,2,4 +2011-09-13 04:00:00,3,0,1,1,22.96,26.515,88,0,2,6,8 +2011-09-13 05:00:00,3,0,1,1,22.96,26.515,88,0,1,19,20 +2011-09-13 06:00:00,3,0,1,1,22.96,26.515,88,7.0015,6,116,122 +2011-09-13 07:00:00,3,0,1,1,23.78,27.275,83,6.0032,14,348,362 +2011-09-13 08:00:00,3,0,1,1,24.6,28.03,81,7.0015,26,399,425 +2011-09-13 09:00:00,3,0,1,1,26.24,30.305,69,6.0032,35,179,214 +2011-09-13 10:00:00,3,0,1,1,27.88,31.82,69,8.9981,42,93,135 +2011-09-13 11:00:00,3,0,1,1,28.7,32.575,61,11.0014,33,120,153 +2011-09-13 12:00:00,3,0,1,1,29.52,33.335,58,15.0013,43,144,187 +2011-09-13 13:00:00,3,0,1,1,30.34,33.335,51,19.0012,48,136,184 +2011-09-13 14:00:00,3,0,1,1,30.34,33.335,51,22.0028,51,139,190 +2011-09-13 15:00:00,3,0,1,1,30.34,33.335,51,19.9995,35,145,180 +2011-09-13 16:00:00,3,0,1,1,30.34,33.335,51,15.0013,41,251,292 +2011-09-13 17:00:00,3,0,1,1,30.34,33.335,51,15.0013,72,507,579 +2011-09-13 18:00:00,3,0,1,1,28.7,32.575,61,11.0014,67,472,539 +2011-09-13 19:00:00,3,0,1,1,27.88,31.82,69,11.0014,55,341,396 +2011-09-13 20:00:00,3,0,1,1,27.06,31.06,74,12.998,31,241,272 +2011-09-13 21:00:00,3,0,1,1,26.24,29.545,78,11.0014,45,200,245 +2011-09-13 22:00:00,3,0,1,1,26.24,29.545,78,8.9981,24,120,144 +2011-09-13 23:00:00,3,0,1,1,26.24,29.545,78,7.0015,15,59,74 +2011-09-14 00:00:00,3,0,1,1,25.42,29.545,78,6.0032,5,28,33 +2011-09-14 01:00:00,3,0,1,1,25.42,29.545,78,6.0032,1,7,8 +2011-09-14 02:00:00,3,0,1,1,24.6,28.03,83,0,1,4,5 +2011-09-14 03:00:00,3,0,1,1,24.6,27.275,88,8.9981,1,7,8 +2011-09-14 04:00:00,3,0,1,1,24.6,28.03,83,6.0032,1,8,9 +2011-09-14 05:00:00,3,0,1,1,23.78,27.275,88,7.0015,1,30,31 +2011-09-14 06:00:00,3,0,1,1,23.78,27.275,88,7.0015,7,138,145 +2011-09-14 07:00:00,3,0,1,1,24.6,28.03,83,7.0015,20,350,370 +2011-09-14 08:00:00,3,0,1,1,25.42,28.79,83,11.0014,33,396,429 +2011-09-14 09:00:00,3,0,1,1,26.24,29.545,78,11.0014,19,183,202 +2011-09-14 10:00:00,3,0,1,1,28.7,32.575,70,8.9981,27,115,142 +2011-09-14 11:00:00,3,0,1,1,29.52,34.09,66,11.0014,43,121,164 +2011-09-14 12:00:00,3,0,1,1,30.34,34.09,58,15.0013,56,156,212 +2011-09-14 13:00:00,3,0,1,1,31.16,34.85,55,16.9979,39,139,178 +2011-09-14 14:00:00,3,0,1,1,31.98,35.605,52,15.0013,19,105,124 +2011-09-14 15:00:00,3,0,1,1,31.98,35.605,49,16.9979,30,146,176 +2011-09-14 16:00:00,3,0,1,1,31.16,34.85,52,19.0012,36,241,277 +2011-09-14 17:00:00,3,0,1,1,31.16,34.85,52,19.0012,87,512,599 +2011-09-14 18:00:00,3,0,1,1,29.52,34.09,62,11.0014,83,503,586 +2011-09-14 19:00:00,3,0,1,2,28.7,32.575,70,7.0015,44,337,381 +2011-09-14 20:00:00,3,0,1,2,29.52,33.335,58,27.9993,40,221,261 +2011-09-14 21:00:00,3,0,1,2,27.06,31.06,65,15.0013,24,189,213 +2011-09-14 22:00:00,3,0,1,2,27.06,31.06,65,8.9981,20,140,160 +2011-09-14 23:00:00,3,0,1,2,26.24,30.305,69,7.0015,10,62,72 +2011-09-15 00:00:00,3,0,1,1,26.24,30.305,69,8.9981,3,34,37 +2011-09-15 01:00:00,3,0,1,1,26.24,30.305,69,11.0014,0,20,20 +2011-09-15 02:00:00,3,0,1,1,25.42,29.545,73,7.0015,0,5,5 +2011-09-15 03:00:00,3,0,1,1,25.42,29.545,73,6.0032,3,5,8 +2011-09-15 04:00:00,3,0,1,1,24.6,28.79,78,7.0015,2,5,7 +2011-09-15 05:00:00,3,0,1,1,24.6,28.79,78,0,1,30,31 +2011-09-15 06:00:00,3,0,1,2,24.6,28.03,83,16.9979,5,119,124 +2011-09-15 07:00:00,3,0,1,2,25.42,29.545,78,12.998,17,321,338 +2011-09-15 08:00:00,3,0,1,1,26.24,30.305,73,8.9981,27,364,391 +2011-09-15 09:00:00,3,0,1,2,26.24,30.305,73,23.9994,23,186,209 +2011-09-15 10:00:00,3,0,1,2,27.06,31.06,69,16.9979,25,96,121 +2011-09-15 11:00:00,3,0,1,2,27.88,31.82,65,8.9981,39,120,159 +2011-09-15 12:00:00,3,0,1,2,27.06,31.06,69,19.9995,31,148,179 +2011-09-15 13:00:00,3,0,1,2,26.24,30.305,65,19.0012,38,151,189 +2011-09-15 14:00:00,3,0,1,2,26.24,30.305,65,27.9993,36,134,170 +2011-09-15 15:00:00,3,0,1,2,24.6,29.545,69,27.9993,25,110,135 +2011-09-15 16:00:00,3,0,1,2,22.14,25.76,77,31.0009,29,193,222 +2011-09-15 17:00:00,3,0,1,3,19.68,23.485,82,31.0009,31,230,261 +2011-09-15 18:00:00,3,0,1,3,19.68,23.485,67,40.9973,22,222,244 +2011-09-15 19:00:00,3,0,1,1,18.86,22.725,67,31.0009,20,212,232 +2011-09-15 20:00:00,3,0,1,1,18.86,22.725,63,22.0028,25,223,248 +2011-09-15 21:00:00,3,0,1,1,18.86,22.725,63,22.0028,11,134,145 +2011-09-15 22:00:00,3,0,1,1,18.04,21.97,67,19.0012,7,108,115 +2011-09-15 23:00:00,3,0,1,1,18.04,21.97,67,15.0013,8,61,69 +2011-09-16 00:00:00,3,0,1,1,17.22,21.21,71,15.0013,5,43,48 +2011-09-16 01:00:00,3,0,1,1,17.22,21.21,67,12.998,7,19,26 +2011-09-16 02:00:00,3,0,1,1,16.4,20.455,71,19.0012,3,7,10 +2011-09-16 03:00:00,3,0,1,1,16.4,20.455,71,16.9979,2,4,6 +2011-09-16 04:00:00,3,0,1,1,16.4,20.455,71,19.0012,1,3,4 +2011-09-16 05:00:00,3,0,1,1,15.58,19.695,76,12.998,2,30,32 +2011-09-16 06:00:00,3,0,1,1,15.58,19.695,71,15.0013,6,87,93 +2011-09-16 07:00:00,3,0,1,1,16.4,20.455,71,19.0012,16,283,299 +2011-09-16 08:00:00,3,0,1,1,17.22,21.21,67,15.0013,23,386,409 +2011-09-16 09:00:00,3,0,1,1,18.86,22.725,55,16.9979,21,189,210 +2011-09-16 10:00:00,3,0,1,2,20.5,24.24,51,19.0012,36,104,140 +2011-09-16 11:00:00,3,0,1,2,20.5,24.24,51,8.9981,40,139,179 +2011-09-16 12:00:00,3,0,1,2,21.32,25,45,0,39,212,251 +2011-09-16 13:00:00,3,0,1,2,22.14,25.76,42,0,55,168,223 +2011-09-16 14:00:00,3,0,1,2,22.14,25.76,45,11.0014,49,176,225 +2011-09-16 15:00:00,3,0,1,2,22.14,25.76,45,15.0013,38,165,203 +2011-09-16 16:00:00,3,0,1,2,21.32,25,48,11.0014,67,291,358 +2011-09-16 17:00:00,3,0,1,2,21.32,25,48,8.9981,86,480,566 +2011-09-16 18:00:00,3,0,1,2,21.32,25,52,11.0014,55,427,482 +2011-09-16 19:00:00,3,0,1,2,20.5,24.24,55,11.0014,59,256,315 +2011-09-16 20:00:00,3,0,1,2,20.5,24.24,55,0,41,184,225 +2011-09-16 21:00:00,3,0,1,2,20.5,24.24,63,0,39,124,163 +2011-09-16 22:00:00,3,0,1,1,19.68,23.485,67,6.0032,32,135,167 +2011-09-16 23:00:00,3,0,1,1,20.5,24.24,59,0,20,106,126 +2011-09-17 00:00:00,3,0,0,1,18.86,22.725,72,11.0014,28,80,108 +2011-09-17 01:00:00,3,0,0,1,18.86,22.725,72,7.0015,28,52,80 +2011-09-17 02:00:00,3,0,0,1,18.86,22.725,82,6.0032,18,61,79 +2011-09-17 03:00:00,3,0,0,1,18.86,22.725,72,8.9981,7,21,28 +2011-09-17 04:00:00,3,0,0,1,18.86,22.725,72,8.9981,1,4,5 +2011-09-17 05:00:00,3,0,0,1,18.86,22.725,72,11.0014,2,3,5 +2011-09-17 06:00:00,3,0,0,2,18.86,22.725,72,15.0013,5,17,22 +2011-09-17 07:00:00,3,0,0,2,18.86,22.725,77,12.998,4,33,37 +2011-09-17 08:00:00,3,0,0,2,18.86,22.725,77,16.9979,27,81,108 +2011-09-17 09:00:00,3,0,0,2,19.68,23.485,67,15.0013,32,145,177 +2011-09-17 10:00:00,3,0,0,2,20.5,24.24,68,19.0012,72,177,249 +2011-09-17 11:00:00,3,0,0,2,21.32,25,68,15.0013,119,248,367 +2011-09-17 12:00:00,3,0,0,2,21.32,25,67,15.0013,115,257,372 +2011-09-17 13:00:00,3,0,0,2,21.32,25,68,12.998,124,225,349 +2011-09-17 14:00:00,3,0,0,2,21.32,25,72,12.998,123,174,297 +2011-09-17 15:00:00,3,0,0,2,21.32,25,72,12.998,148,206,354 +2011-09-17 16:00:00,3,0,0,1,22.14,25.76,68,16.9979,116,189,305 +2011-09-17 17:00:00,3,0,0,1,21.32,25,72,15.0013,141,218,359 +2011-09-17 18:00:00,3,0,0,2,21.32,25,72,15.0013,95,234,329 +2011-09-17 19:00:00,3,0,0,1,21.32,25,68,8.9981,70,186,256 +2011-09-17 20:00:00,3,0,0,1,21.32,25,68,8.9981,43,133,176 +2011-09-17 21:00:00,3,0,0,2,20.5,24.24,72,12.998,49,121,170 +2011-09-17 22:00:00,3,0,0,1,20.5,24.24,72,15.0013,31,112,143 +2011-09-17 23:00:00,3,0,0,1,18.86,22.725,82,11.0014,36,100,136 +2011-09-18 00:00:00,3,0,0,1,18.86,22.725,77,15.0013,24,88,112 +2011-09-18 01:00:00,3,0,0,1,18.86,22.725,77,15.0013,13,66,79 +2011-09-18 02:00:00,3,0,0,1,18.04,21.97,82,16.9979,21,68,89 +2011-09-18 03:00:00,3,0,0,1,18.04,21.97,82,12.998,11,25,36 +2011-09-18 04:00:00,3,0,0,1,18.04,21.97,77,15.0013,1,0,1 +2011-09-18 05:00:00,3,0,0,1,18.04,21.97,77,15.0013,1,5,6 +2011-09-18 06:00:00,3,0,0,1,18.04,21.97,77,16.9979,2,10,12 +2011-09-18 07:00:00,3,0,0,1,18.86,22.725,72,15.0013,15,29,44 +2011-09-18 08:00:00,3,0,0,1,18.86,22.725,72,16.9979,16,53,69 +2011-09-18 09:00:00,3,0,0,1,19.68,23.485,67,16.9979,46,94,140 +2011-09-18 10:00:00,3,0,0,1,20.5,24.24,72,11.0014,82,178,260 +2011-09-18 11:00:00,3,0,0,1,21.32,25,68,15.0013,116,201,317 +2011-09-18 12:00:00,3,0,0,1,22.14,25.76,64,8.9981,135,229,364 +2011-09-18 13:00:00,3,0,0,1,22.96,26.515,60,8.9981,162,214,376 +2011-09-18 14:00:00,3,0,0,2,23.78,27.275,56,8.9981,127,184,311 +2011-09-18 15:00:00,3,0,0,2,23.78,27.275,60,8.9981,132,233,365 +2011-09-18 16:00:00,3,0,0,2,22.96,26.515,64,11.0014,134,235,369 +2011-09-18 17:00:00,3,0,0,2,22.96,26.515,64,12.998,95,230,325 +2011-09-18 18:00:00,3,0,0,2,22.96,26.515,60,7.0015,66,223,289 +2011-09-18 19:00:00,3,0,0,2,22.14,25.76,68,7.0015,54,191,245 +2011-09-18 20:00:00,3,0,0,2,22.14,25.76,68,6.0032,44,136,180 +2011-09-18 21:00:00,3,0,0,2,22.14,25.76,68,6.0032,37,110,147 +2011-09-18 22:00:00,3,0,0,2,22.14,25.76,68,6.0032,9,75,84 +2011-09-18 23:00:00,3,0,0,1,22.14,25.76,68,12.998,10,44,54 +2011-09-19 00:00:00,3,0,1,2,21.32,25,72,11.0014,14,23,37 +2011-09-19 01:00:00,3,0,1,2,21.32,25,72,7.0015,3,7,10 +2011-09-19 02:00:00,3,0,1,2,21.32,25,72,8.9981,6,7,13 +2011-09-19 03:00:00,3,0,1,2,20.5,24.24,77,8.9981,1,4,5 +2011-09-19 04:00:00,3,0,1,2,20.5,24.24,77,11.0014,2,6,8 +2011-09-19 05:00:00,3,0,1,2,20.5,24.24,77,12.998,2,26,28 +2011-09-19 06:00:00,3,0,1,1,20.5,24.24,77,15.0013,6,107,113 +2011-09-19 07:00:00,3,0,1,2,20.5,24.24,82,15.0013,20,312,332 +2011-09-19 08:00:00,3,0,1,2,21.32,25,77,8.9981,29,391,420 +2011-09-19 09:00:00,3,0,1,2,22.14,25.76,68,11.0014,32,183,215 +2011-09-19 10:00:00,3,0,1,2,22.96,26.515,64,8.9981,21,84,105 +2011-09-19 11:00:00,3,0,1,2,23.78,27.275,64,11.0014,41,98,139 +2011-09-19 12:00:00,3,0,1,2,23.78,27.275,60,6.0032,51,138,189 +2011-09-19 13:00:00,3,0,1,2,24.6,30.305,60,0,53,124,177 +2011-09-19 14:00:00,3,0,1,2,24.6,30.305,60,12.998,45,143,188 +2011-09-19 15:00:00,3,0,1,2,24.6,30.305,60,15.0013,44,143,187 +2011-09-19 16:00:00,3,0,1,2,24.6,30.305,60,11.0014,55,208,263 +2011-09-19 17:00:00,3,0,1,2,23.78,27.275,64,8.9981,85,483,568 +2011-09-19 18:00:00,3,0,1,2,22.96,26.515,68,8.9981,56,484,540 +2011-09-19 19:00:00,3,0,1,2,22.96,26.515,68,7.0015,41,333,374 +2011-09-19 20:00:00,3,0,1,2,22.96,26.515,68,8.9981,27,204,231 +2011-09-19 21:00:00,3,0,1,2,22.96,26.515,68,11.0014,19,181,200 +2011-09-19 22:00:00,3,0,1,2,22.96,26.515,68,11.0014,25,104,129 +2011-09-19 23:00:00,3,0,1,2,22.96,26.515,73,12.998,13,55,68 +2011-10-01 00:00:00,4,0,0,1,20.5,24.24,63,26.0027,24,106,130 +2011-10-01 01:00:00,4,0,0,1,19.68,23.485,67,22.0028,11,47,58 +2011-10-01 02:00:00,4,0,0,1,18.86,22.725,63,27.9993,21,46,67 +2011-10-01 03:00:00,4,0,0,1,18.86,22.725,59,27.9993,8,17,25 +2011-10-01 04:00:00,4,0,0,1,18.04,21.97,58,27.9993,2,6,8 +2011-10-01 05:00:00,4,0,0,2,18.04,21.97,62,19.9995,1,4,5 +2011-10-01 06:00:00,4,0,0,1,17.22,21.21,67,22.0028,4,15,19 +2011-10-01 07:00:00,4,0,0,3,17.22,21.21,67,16.9979,6,30,36 +2011-10-01 08:00:00,4,0,0,2,16.4,20.455,76,22.0028,9,58,67 +2011-10-01 09:00:00,4,0,0,3,16.4,20.455,82,23.9994,17,112,129 +2011-10-01 10:00:00,4,0,0,3,16.4,20.455,76,23.9994,21,100,121 +2011-10-01 11:00:00,4,0,0,3,15.58,19.695,82,22.0028,30,102,132 +2011-10-01 12:00:00,4,0,0,2,16.4,20.455,82,16.9979,28,130,158 +2011-10-01 13:00:00,4,0,0,2,16.4,20.455,82,22.0028,27,98,125 +2011-10-01 14:00:00,4,0,0,2,17.22,21.21,71,23.9994,33,147,180 +2011-10-01 15:00:00,4,0,0,2,17.22,21.21,71,19.0012,41,154,195 +2011-10-01 16:00:00,4,0,0,2,16.4,20.455,76,19.9995,58,165,223 +2011-10-01 17:00:00,4,0,0,3,16.4,20.455,76,12.998,58,170,228 +2011-10-01 18:00:00,4,0,0,3,15.58,19.695,87,15.0013,23,117,140 +2011-10-01 19:00:00,4,0,0,2,15.58,19.695,82,12.998,27,99,126 +2011-10-01 20:00:00,4,0,0,3,14.76,18.18,87,7.0015,8,58,66 +2011-10-01 21:00:00,4,0,0,3,14.76,18.18,87,7.0015,3,53,56 +2011-10-01 22:00:00,4,0,0,2,14.76,17.425,93,15.0013,12,58,70 +2011-10-01 23:00:00,4,0,0,3,14.76,17.425,93,15.0013,8,57,65 +2011-10-02 00:00:00,4,0,0,3,14.76,16.665,93,19.9995,4,43,47 +2011-10-02 01:00:00,4,0,0,3,13.94,15.91,87,16.9979,1,23,24 +2011-10-02 02:00:00,4,0,0,3,13.94,15.15,87,19.9995,3,27,30 +2011-10-02 03:00:00,4,0,0,3,13.94,15.91,87,19.0012,4,5,9 +2011-10-02 04:00:00,4,0,0,2,13.94,15.91,87,16.9979,4,3,7 +2011-10-02 05:00:00,4,0,0,1,13.12,15.15,87,19.0012,0,7,7 +2011-10-02 06:00:00,4,0,0,1,13.12,15.91,81,11.0014,2,13,15 +2011-10-02 07:00:00,4,0,0,1,13.94,16.665,76,12.998,5,24,29 +2011-10-02 08:00:00,4,0,0,2,13.94,16.665,76,12.998,14,50,64 +2011-10-02 09:00:00,4,0,0,1,14.76,16.665,76,23.9994,19,96,115 +2011-10-02 10:00:00,4,0,0,2,14.76,16.665,71,19.0012,60,188,248 +2011-10-02 11:00:00,4,0,0,2,15.58,19.695,66,16.9979,74,218,292 +2011-10-02 12:00:00,4,0,0,2,16.4,20.455,62,12.998,78,243,321 +2011-10-02 13:00:00,4,0,0,3,16.4,20.455,62,15.0013,84,224,308 +2011-10-02 14:00:00,4,0,0,3,14.76,17.425,81,11.0014,61,195,256 +2011-10-02 15:00:00,4,0,0,3,14.76,16.665,81,16.9979,29,144,173 +2011-10-02 16:00:00,4,0,0,3,14.76,17.425,87,12.998,44,162,206 +2011-10-02 17:00:00,4,0,0,3,14.76,17.425,87,11.0014,32,135,167 +2011-10-02 18:00:00,4,0,0,2,14.76,17.425,81,12.998,16,158,174 +2011-10-02 19:00:00,4,0,0,2,15.58,19.695,76,11.0014,34,128,162 +2011-10-02 20:00:00,4,0,0,2,14.76,16.665,76,16.9979,16,71,87 +2011-10-02 21:00:00,4,0,0,1,14.76,17.425,71,15.0013,17,71,88 +2011-10-02 22:00:00,4,0,0,3,14.76,18.18,81,6.0032,9,55,64 +2011-10-02 23:00:00,4,0,0,1,14.76,18.18,81,6.0032,6,19,25 +2011-10-03 00:00:00,4,0,1,1,13.94,17.425,87,7.0015,3,13,16 +2011-10-03 01:00:00,4,0,1,1,14.76,18.18,81,6.0032,1,5,6 +2011-10-03 02:00:00,4,0,1,1,14.76,18.18,76,7.0015,0,4,4 +2011-10-03 03:00:00,4,0,1,1,14.76,18.94,81,0,1,6,7 +2011-10-03 04:00:00,4,0,1,1,13.94,17.425,87,7.0015,2,6,8 +2011-10-03 05:00:00,4,0,1,2,14.76,18.18,76,7.0015,4,17,21 +2011-10-03 06:00:00,4,0,1,2,14.76,18.94,71,0,3,91,94 +2011-10-03 07:00:00,4,0,1,2,14.76,17.425,71,8.9981,8,241,249 +2011-10-03 08:00:00,4,0,1,2,14.76,18.18,71,7.0015,13,359,372 +2011-10-03 09:00:00,4,0,1,2,16.4,20.455,66,6.0032,12,141,153 +2011-10-03 10:00:00,4,0,1,2,16.4,20.455,66,7.0015,19,82,101 +2011-10-03 11:00:00,4,0,1,2,16.4,20.455,71,15.0013,26,100,126 +2011-10-03 12:00:00,4,0,1,2,16.4,20.455,71,8.9981,29,118,147 +2011-10-03 13:00:00,4,0,1,3,17.22,21.21,67,11.0014,16,102,118 +2011-10-03 14:00:00,4,0,1,3,16.4,20.455,76,0,26,94,120 +2011-10-03 15:00:00,4,0,1,3,16.4,20.455,76,0,22,79,101 +2011-10-03 16:00:00,4,0,1,2,16.4,20.455,76,7.0015,16,202,218 +2011-10-03 17:00:00,4,0,1,2,16.4,20.455,76,11.0014,40,455,495 +2011-10-03 18:00:00,4,0,1,2,16.4,20.455,76,11.0014,28,384,412 +2011-10-03 19:00:00,4,0,1,1,16.4,20.455,76,0,15,300,315 +2011-10-03 20:00:00,4,0,1,3,16.4,20.455,82,0,13,191,204 +2011-10-03 21:00:00,4,0,1,2,16.4,20.455,82,0,10,128,138 +2011-10-03 22:00:00,4,0,1,2,16.4,20.455,82,0,12,79,91 +2011-10-03 23:00:00,4,0,1,2,16.4,20.455,82,7.0015,11,43,54 +2011-10-04 00:00:00,4,0,1,2,16.4,20.455,87,6.0032,5,22,27 +2011-10-04 01:00:00,4,0,1,2,16.4,20.455,87,7.0015,1,8,9 +2011-10-04 02:00:00,4,0,1,2,16.4,20.455,87,0,1,2,3 +2011-10-04 03:00:00,4,0,1,1,16.4,20.455,82,7.0015,3,3,6 +2011-10-04 04:00:00,4,0,1,1,16.4,20.455,82,6.0032,3,4,7 +2011-10-04 05:00:00,4,0,1,1,16.4,20.455,82,8.9981,2,25,27 +2011-10-04 06:00:00,4,0,1,1,16.4,20.455,82,7.0015,3,109,112 +2011-10-04 07:00:00,4,0,1,1,17.22,21.21,82,19.0012,11,298,309 +2011-10-04 08:00:00,4,0,1,1,18.04,21.97,77,15.0013,28,372,400 +2011-10-04 09:00:00,4,0,1,1,18.86,22.725,67,16.9979,19,168,187 +2011-10-04 10:00:00,4,0,1,1,19.68,23.485,67,19.0012,19,107,126 +2011-10-04 11:00:00,4,0,1,1,22.14,25.76,64,19.0012,22,102,124 +2011-10-04 12:00:00,4,0,1,1,22.96,26.515,56,19.9995,39,160,199 +2011-10-04 13:00:00,4,0,1,1,22.96,26.515,56,19.9995,20,153,173 +2011-10-04 14:00:00,4,0,1,1,23.78,27.275,53,16.9979,27,156,183 +2011-10-04 15:00:00,4,0,1,1,23.78,27.275,56,19.0012,28,166,194 +2011-10-04 16:00:00,4,0,1,1,23.78,27.275,56,22.0028,36,273,309 +2011-10-04 17:00:00,4,0,1,1,22.96,26.515,60,26.0027,55,530,585 +2011-10-04 18:00:00,4,0,1,1,22.14,25.76,64,19.0012,68,456,524 +2011-10-04 19:00:00,4,0,1,1,21.32,25,68,15.0013,35,310,345 +2011-10-04 20:00:00,4,0,1,1,21.32,25,68,15.0013,25,236,261 +2011-10-04 21:00:00,4,0,1,1,20.5,24.24,72,8.9981,22,144,166 +2011-10-04 22:00:00,4,0,1,1,20.5,24.24,72,8.9981,8,106,114 +2011-10-04 23:00:00,4,0,1,1,19.68,23.485,77,8.9981,6,60,66 +2011-10-05 00:00:00,4,0,1,1,19.68,23.485,77,8.9981,7,36,43 +2011-10-05 01:00:00,4,0,1,1,19.68,23.485,77,11.0014,4,7,11 +2011-10-05 02:00:00,4,0,1,1,18.86,22.725,82,11.0014,1,2,3 +2011-10-05 03:00:00,4,0,1,1,18.86,22.725,82,7.0015,1,5,6 +2011-10-05 04:00:00,4,0,1,1,18.04,21.97,88,0,1,4,5 +2011-10-05 05:00:00,4,0,1,1,18.04,21.97,82,8.9981,3,29,32 +2011-10-05 06:00:00,4,0,1,1,18.04,21.97,82,7.0015,5,112,117 +2011-10-05 07:00:00,4,0,1,1,18.86,22.725,77,7.0015,9,292,301 +2011-10-05 08:00:00,4,0,1,1,21.32,25,63,0,26,441,467 +2011-10-05 09:00:00,4,0,1,1,22.14,25.76,60,19.9995,32,187,219 +2011-10-05 10:00:00,4,0,1,1,22.96,26.515,56,26.0027,30,103,133 +2011-10-05 11:00:00,4,0,1,1,24.6,31.06,46,19.0012,32,138,170 +2011-10-05 12:00:00,4,0,1,1,25.42,31.06,43,22.0028,34,180,214 +2011-10-05 13:00:00,4,0,1,1,26.24,31.06,41,15.0013,30,189,219 +2011-10-05 14:00:00,4,0,1,1,26.24,31.06,41,19.0012,34,156,190 +2011-10-05 15:00:00,4,0,1,1,26.24,31.06,47,19.0012,35,147,182 +2011-10-05 16:00:00,4,0,1,1,26.24,31.06,47,22.0028,37,245,282 +2011-10-05 17:00:00,4,0,1,1,26.24,31.06,47,16.9979,66,525,591 +2011-10-05 18:00:00,4,0,1,1,24.6,31.06,53,11.0014,57,536,593 +2011-10-05 19:00:00,4,0,1,1,23.78,27.275,56,8.9981,40,334,374 +2011-10-05 20:00:00,4,0,1,1,21.32,25,77,11.0014,18,228,246 +2011-10-05 21:00:00,4,0,1,1,20.5,24.24,82,7.0015,28,173,201 +2011-10-05 22:00:00,4,0,1,1,21.32,25,72,0,20,134,154 +2011-10-05 23:00:00,4,0,1,1,20.5,24.24,77,7.0015,9,64,73 +2011-10-06 00:00:00,4,0,1,1,20.5,24.24,72,12.998,6,34,40 +2011-10-06 01:00:00,4,0,1,1,19.68,23.485,63,12.998,5,17,22 +2011-10-06 02:00:00,4,0,1,1,18.86,22.725,67,12.998,2,8,10 +2011-10-06 03:00:00,4,0,1,1,18.04,21.97,67,15.0013,1,4,5 +2011-10-06 04:00:00,4,0,1,1,18.04,21.97,62,19.0012,0,5,5 +2011-10-06 05:00:00,4,0,1,1,17.22,21.21,62,12.998,0,24,24 +2011-10-06 06:00:00,4,0,1,1,16.4,20.455,66,12.998,4,110,114 +2011-10-06 07:00:00,4,0,1,1,17.22,21.21,62,12.998,15,287,302 +2011-10-06 08:00:00,4,0,1,1,18.04,21.97,62,11.0014,20,437,457 +2011-10-06 09:00:00,4,0,1,1,18.86,22.725,63,12.998,20,188,208 +2011-10-06 10:00:00,4,0,1,1,21.32,25,52,0,24,105,129 +2011-10-06 11:00:00,4,0,1,1,22.14,25.76,49,0,29,115,144 +2011-10-06 12:00:00,4,0,1,1,22.96,26.515,49,6.0032,46,180,226 +2011-10-06 13:00:00,4,0,1,1,22.96,26.515,46,6.0032,33,158,191 +2011-10-06 14:00:00,4,0,1,1,23.78,27.275,43,6.0032,56,139,195 +2011-10-06 15:00:00,4,0,1,1,23.78,27.275,46,8.9981,62,157,219 +2011-10-06 16:00:00,4,0,1,1,23.78,27.275,49,12.998,51,272,323 +2011-10-06 17:00:00,4,0,1,1,22.96,26.515,52,8.9981,63,505,568 +2011-10-06 18:00:00,4,0,1,1,22.14,25.76,64,6.0032,59,479,538 +2011-10-06 19:00:00,4,0,1,1,21.32,25,59,7.0015,38,305,343 +2011-10-06 20:00:00,4,0,1,1,20.5,24.24,77,7.0015,29,231,260 +2011-10-06 21:00:00,4,0,1,1,18.86,22.725,88,6.0032,34,161,195 +2011-10-06 22:00:00,4,0,1,1,18.86,22.725,82,0,24,124,148 +2011-10-06 23:00:00,4,0,1,1,18.04,21.97,88,6.0032,18,81,99 +2011-10-07 00:00:00,4,0,1,1,18.04,21.97,88,0,19,48,67 +2011-10-07 01:00:00,4,0,1,1,18.04,21.97,88,0,3,25,28 +2011-10-07 02:00:00,4,0,1,1,17.22,21.21,88,0,0,5,5 +2011-10-07 03:00:00,4,0,1,1,16.4,20.455,87,0,1,9,10 +2011-10-07 04:00:00,4,0,1,1,16.4,20.455,87,7.0015,0,5,5 +2011-10-07 05:00:00,4,0,1,1,17.22,21.21,82,0,3,24,27 +2011-10-07 06:00:00,4,0,1,1,17.22,21.21,88,0,3,84,87 +2011-10-07 07:00:00,4,0,1,1,17.22,21.21,94,0,5,237,242 +2011-10-07 08:00:00,4,0,1,1,18.86,22.725,82,0,31,386,417 +2011-10-07 09:00:00,4,0,1,1,19.68,23.485,77,0,34,207,241 +2011-10-07 10:00:00,4,0,1,1,21.32,25,68,6.0032,48,126,174 +2011-10-07 11:00:00,4,0,1,1,22.96,26.515,63,0,80,150,230 +2011-10-07 12:00:00,4,0,1,1,24.6,31.06,53,0,61,174,235 +2011-10-07 13:00:00,4,0,1,1,24.6,31.06,46,0,95,210,305 +2011-10-07 14:00:00,4,0,1,1,25.42,31.06,50,0,77,179,256 +2011-10-07 15:00:00,4,0,1,1,27.06,31.06,41,0,68,202,270 +2011-10-07 16:00:00,4,0,1,1,26.24,31.06,44,0,73,346,419 +2011-10-07 17:00:00,4,0,1,1,24.6,31.06,56,16.9979,101,462,563 +2011-10-07 18:00:00,4,0,1,1,22.96,26.515,60,6.0032,94,371,465 +2011-10-07 19:00:00,4,0,1,1,22.96,26.515,52,0,51,243,294 +2011-10-07 20:00:00,4,0,1,1,22.14,25.76,49,0,30,167,197 +2011-10-07 21:00:00,4,0,1,1,20.5,24.24,68,0,22,144,166 +2011-10-07 22:00:00,4,0,1,1,20.5,24.24,68,0,27,119,146 +2011-10-07 23:00:00,4,0,1,1,20.5,24.24,63,0,23,113,136 +2011-10-08 00:00:00,4,0,0,1,19.68,23.485,72,0,17,72,89 +2011-10-08 01:00:00,4,0,0,1,18.86,22.725,82,0,14,51,65 +2011-10-08 02:00:00,4,0,0,1,18.86,22.725,82,0,4,41,45 +2011-10-08 03:00:00,4,0,0,1,18.04,21.97,88,0,4,16,20 +2011-10-08 04:00:00,4,0,0,1,17.22,21.21,94,8.9981,3,7,10 +2011-10-08 05:00:00,4,0,0,1,17.22,21.21,88,7.0015,1,7,8 +2011-10-08 06:00:00,4,0,0,1,17.22,21.21,94,0,6,16,22 +2011-10-08 07:00:00,4,0,0,1,17.22,21.21,94,6.0032,27,46,73 +2011-10-08 08:00:00,4,0,0,1,18.86,22.725,82,0,14,89,103 +2011-10-08 09:00:00,4,0,0,1,20.5,24.24,77,0,54,163,217 +2011-10-08 10:00:00,4,0,0,1,21.32,25,77,0,120,217,337 +2011-10-08 11:00:00,4,0,0,1,23.78,27.275,56,0,176,221,397 +2011-10-08 12:00:00,4,0,0,1,25.42,31.06,35,0,191,255,446 +2011-10-08 13:00:00,4,0,0,1,25.42,31.06,46,7.0015,256,229,485 +2011-10-08 14:00:00,4,0,0,1,25.42,31.06,50,6.0032,251,214,465 +2011-10-08 15:00:00,4,0,0,1,27.06,31.06,39,0,262,234,496 +2011-10-08 16:00:00,4,0,0,1,26.24,31.06,44,6.0032,221,230,451 +2011-10-08 17:00:00,4,0,0,1,25.42,31.06,50,8.9981,174,219,393 +2011-10-08 18:00:00,4,0,0,1,24.6,31.06,46,7.0015,135,224,359 +2011-10-08 19:00:00,4,0,0,1,22.14,25.76,68,8.9981,76,172,248 +2011-10-08 20:00:00,4,0,0,1,21.32,25,77,7.0015,78,124,202 +2011-10-08 21:00:00,4,0,0,1,21.32,25,77,0,54,133,187 +2011-10-08 22:00:00,4,0,0,1,20.5,24.24,77,0,45,104,149 +2011-10-08 23:00:00,4,0,0,1,19.68,23.485,88,0,52,90,142 +2011-10-09 00:00:00,4,0,0,1,18.86,22.725,88,6.0032,46,83,129 +2011-10-09 01:00:00,4,0,0,1,18.86,22.725,88,0,15,63,78 +2011-10-09 02:00:00,4,0,0,1,18.86,22.725,88,0,20,35,55 +2011-10-09 03:00:00,4,0,0,1,18.04,21.97,88,0,10,20,30 +2011-10-09 04:00:00,4,0,0,1,18.04,21.97,88,0,7,7,14 +2011-10-09 05:00:00,4,0,0,1,18.04,21.97,88,0,1,14,15 +2011-10-09 06:00:00,4,0,0,1,18.04,21.97,88,0,7,14,21 +2011-10-09 07:00:00,4,0,0,1,18.04,21.97,86,0,18,26,44 +2011-10-09 08:00:00,4,0,0,1,18.86,22.725,88,0,25,82,107 +2011-10-09 09:00:00,4,0,0,1,20.5,24.24,77,0,66,119,185 +2011-10-09 10:00:00,4,0,0,1,22.96,26.515,68,6.0032,155,210,365 +2011-10-09 11:00:00,4,0,0,1,25.42,31.06,53,6.0032,189,234,423 +2011-10-09 12:00:00,4,0,0,1,26.24,31.06,44,6.0032,212,243,455 +2011-10-09 13:00:00,4,0,0,1,27.06,31.06,44,6.0032,225,193,418 +2011-10-09 14:00:00,4,0,0,1,27.88,31.82,47,11.0014,272,228,500 +2011-10-09 15:00:00,4,0,0,1,27.88,31.82,51,11.0014,198,209,407 +2011-10-09 16:00:00,4,0,0,1,27.06,31.06,50,8.9981,223,247,470 +2011-10-09 17:00:00,4,0,0,1,25.42,30.305,61,7.0015,208,230,438 +2011-10-09 18:00:00,4,0,0,1,26.24,31.06,50,7.0015,186,228,414 +2011-10-09 19:00:00,4,0,0,1,22.96,26.515,73,6.0032,116,186,302 +2011-10-09 20:00:00,4,0,0,1,22.96,26.515,73,7.0015,59,134,193 +2011-10-09 21:00:00,4,0,0,1,22.14,25.76,83,7.0015,53,120,173 +2011-10-09 22:00:00,4,0,0,2,21.32,25,94,0,48,104,152 +2011-10-09 23:00:00,4,0,0,1,20.5,24.24,88,7.0015,38,85,123 +2011-10-10 00:00:00,4,1,0,1,20.5,24.24,94,0,11,42,53 +2011-10-10 01:00:00,4,1,0,1,19.68,23.485,88,0,4,30,34 +2011-10-10 02:00:00,4,1,0,1,19.68,23.485,88,0,4,15,19 +2011-10-10 03:00:00,4,1,0,1,18.86,22.725,88,0,2,9,11 +2011-10-10 04:00:00,4,1,0,1,18.86,22.725,94,0,2,4,6 +2011-10-10 05:00:00,4,1,0,1,18.86,22.725,94,0,2,19,21 +2011-10-10 06:00:00,4,1,0,1,18.04,21.97,94,0,5,39,44 +2011-10-10 07:00:00,4,1,0,1,18.86,22.725,88,0,12,102,114 +2011-10-10 08:00:00,4,1,0,1,21.32,25,83,0,27,227,254 +2011-10-10 09:00:00,4,1,0,1,22.14,25.76,77,0,58,161,219 +2011-10-10 10:00:00,4,1,0,1,22.96,26.515,73,11.0014,107,158,265 +2011-10-10 11:00:00,4,1,0,1,25.42,30.305,69,6.0032,139,183,322 +2011-10-10 12:00:00,4,1,0,2,28.7,32.575,48,6.0032,164,201,365 +2011-10-10 13:00:00,4,1,0,1,29.52,32.575,37,0,146,219,365 +2011-10-10 14:00:00,4,1,0,1,30.34,32.575,37,0,147,223,370 +2011-10-10 15:00:00,4,1,0,2,29.52,32.575,42,7.0015,130,254,384 +2011-10-10 16:00:00,4,1,0,2,28.7,31.82,45,6.0032,154,248,402 +2011-10-10 17:00:00,4,1,0,2,27.06,31.06,54,7.0015,125,334,459 +2011-10-10 18:00:00,4,1,0,2,26.24,31.06,53,0,108,365,473 +2011-10-10 19:00:00,4,1,0,2,23.78,27.275,78,6.0032,69,267,336 +2011-10-10 20:00:00,4,1,0,1,24.6,29.545,73,0,37,188,225 +2011-10-10 21:00:00,4,1,0,1,22.96,26.515,88,6.0032,27,148,175 +2011-10-10 22:00:00,4,1,0,1,22.96,26.515,88,6.0032,22,104,126 +2011-10-10 23:00:00,4,1,0,2,22.14,25.76,88,7.0015,12,63,75 +2011-10-11 00:00:00,4,0,1,2,22.14,25.76,88,0,14,16,30 +2011-10-11 01:00:00,4,0,1,2,21.32,25,94,6.0032,2,9,11 +2011-10-11 02:00:00,4,0,1,2,21.32,25,94,8.9981,1,4,5 +2011-10-11 03:00:00,4,0,1,2,21.32,25,88,7.0015,2,1,3 +2011-10-11 04:00:00,4,0,1,2,21.32,25,88,8.9981,0,5,5 +2011-10-11 05:00:00,4,0,1,2,21.32,25,88,0,0,20,20 +2011-10-11 06:00:00,4,0,1,1,21.32,25,83,6.0032,9,114,123 +2011-10-11 07:00:00,4,0,1,2,21.32,25,88,6.0032,19,333,352 +2011-10-11 08:00:00,4,0,1,2,22.96,26.515,83,7.0015,31,375,406 +2011-10-11 09:00:00,4,0,1,2,24.6,29.545,69,0,40,195,235 +2011-10-11 10:00:00,4,0,1,2,24.6,29.545,69,8.9981,38,111,149 +2011-10-11 11:00:00,4,0,1,2,24.6,29.545,73,11.0014,31,92,123 +2011-10-11 12:00:00,4,0,1,2,24.6,29.545,73,11.0014,51,130,181 +2011-10-11 13:00:00,4,0,1,2,24.6,29.545,73,12.998,42,138,180 +2011-10-11 14:00:00,4,0,1,3,24.6,29.545,73,7.0015,54,117,171 +2011-10-11 15:00:00,4,0,1,2,24.6,28.79,78,11.0014,36,139,175 +2011-10-11 16:00:00,4,0,1,2,24.6,29.545,73,11.0014,63,257,320 +2011-10-11 17:00:00,4,0,1,2,24.6,28.79,78,16.9979,70,534,604 +2011-10-11 18:00:00,4,0,1,2,24.6,28.79,78,15.0013,46,493,539 +2011-10-11 19:00:00,4,0,1,2,23.78,27.275,83,15.0013,33,285,318 +2011-10-11 20:00:00,4,0,1,2,23.78,27.275,83,15.0013,31,203,234 +2011-10-11 21:00:00,4,0,1,2,23.78,27.275,78,12.998,17,158,175 +2011-10-11 22:00:00,4,0,1,2,22.96,26.515,83,12.998,27,120,147 +2011-10-11 23:00:00,4,0,1,2,22.96,26.515,83,19.0012,10,47,57 +2011-10-12 00:00:00,4,0,1,2,22.96,26.515,83,8.9981,2,23,25 +2011-10-12 01:00:00,4,0,1,3,22.96,26.515,83,8.9981,2,8,10 +2011-10-12 02:00:00,4,0,1,2,22.96,26.515,83,19.0012,0,2,2 +2011-10-12 03:00:00,4,0,1,3,22.14,25.76,94,19.9995,0,2,2 +2011-10-12 04:00:00,4,0,1,3,22.14,25.76,94,26.0027,1,6,7 +2011-10-12 05:00:00,4,0,1,2,22.14,25.76,88,22.0028,0,22,22 +2011-10-12 06:00:00,4,0,1,2,22.14,25.76,88,16.9979,5,107,112 +2011-10-12 07:00:00,4,0,1,2,22.14,25.76,88,26.0027,15,244,259 +2011-10-12 08:00:00,4,0,1,2,22.14,25.76,88,26.0027,27,377,404 +2011-10-12 09:00:00,4,0,1,2,22.14,25.76,88,30.0026,14,183,197 +2011-10-12 10:00:00,4,0,1,2,22.14,25.76,88,26.0027,15,98,113 +2011-10-12 11:00:00,4,0,1,3,22.14,25.76,94,22.0028,18,102,120 +2011-10-12 12:00:00,4,0,1,3,22.14,25.76,88,22.0028,9,53,62 +2011-10-12 13:00:00,4,0,1,3,22.14,25.76,88,15.0013,25,76,101 +2011-10-12 14:00:00,4,0,1,3,22.14,25.76,94,19.0012,8,70,78 +2011-10-12 15:00:00,4,0,1,3,22.14,25.76,94,16.9979,3,42,45 +2011-10-12 16:00:00,4,0,1,2,22.96,26.515,88,15.0013,5,50,55 +2011-10-12 17:00:00,4,0,1,3,22.14,25.76,94,15.0013,16,235,251 +2011-10-12 18:00:00,4,0,1,3,22.14,25.76,94,8.9981,11,161,172 +2011-10-12 19:00:00,4,0,1,3,22.14,25.76,94,8.9981,7,102,109 +2011-10-12 20:00:00,4,0,1,3,22.14,25.76,94,7.0015,9,81,90 +2011-10-12 21:00:00,4,0,1,3,22.14,25.76,100,7.0015,9,74,83 +2011-10-12 22:00:00,4,0,1,3,22.14,25.76,94,6.0032,3,40,43 +2011-10-12 23:00:00,4,0,1,3,22.14,25.76,94,6.0032,13,41,54 +2011-10-13 00:00:00,4,0,1,2,22.14,25.76,94,8.9981,1,14,15 +2011-10-13 01:00:00,4,0,1,2,22.14,25.76,94,0,3,9,12 +2011-10-13 02:00:00,4,0,1,2,22.14,25.76,94,0,0,4,4 +2011-10-13 03:00:00,4,0,1,2,22.14,25.76,100,12.998,2,4,6 +2011-10-13 04:00:00,4,0,1,2,22.14,25.76,100,7.0015,2,5,7 +2011-10-13 05:00:00,4,0,1,2,22.14,25.76,100,7.0015,1,16,17 +2011-10-13 06:00:00,4,0,1,3,22.14,25.76,100,6.0032,1,51,52 +2011-10-13 07:00:00,4,0,1,3,22.14,25.76,100,8.9981,5,76,81 +2011-10-13 08:00:00,4,0,1,3,22.14,25.76,100,6.0032,10,199,209 +2011-10-13 09:00:00,4,0,1,3,22.96,26.515,100,7.0015,3,106,109 +2011-10-13 10:00:00,4,0,1,3,22.96,26.515,100,8.9981,16,53,69 +2011-10-13 11:00:00,4,0,1,2,25.42,28.79,83,0,8,76,84 +2011-10-13 12:00:00,4,0,1,2,25.42,28.03,88,0,10,95,105 +2011-10-13 13:00:00,4,0,1,2,26.24,28.79,83,11.0014,20,142,162 +2011-10-13 14:00:00,4,0,1,1,27.06,30.305,78,12.998,22,111,133 +2011-10-13 15:00:00,4,0,1,1,27.06,30.305,78,12.998,27,128,155 +2011-10-13 16:00:00,4,0,1,1,27.06,31.06,74,15.0013,36,240,276 +2011-10-13 17:00:00,4,0,1,3,25.42,28.79,83,16.9979,47,432,479 +2011-10-13 18:00:00,4,0,1,3,25.42,28.79,83,16.9979,20,248,268 +2011-10-13 19:00:00,4,0,1,2,25.42,28.79,83,11.0014,18,187,205 +2011-10-13 20:00:00,4,0,1,1,25.42,28.79,83,19.0012,15,166,181 +2011-10-13 21:00:00,4,0,1,1,25.42,28.79,83,12.998,8,115,123 +2011-10-13 22:00:00,4,0,1,1,25.42,28.79,83,12.998,13,101,114 +2011-10-13 23:00:00,4,0,1,2,23.78,27.275,88,12.998,2,45,47 +2011-10-14 00:00:00,4,0,1,1,23.78,27.275,94,6.0032,10,29,39 +2011-10-14 01:00:00,4,0,1,1,23.78,27.275,94,8.9981,8,16,24 +2011-10-14 02:00:00,4,0,1,1,22.96,26.515,94,11.0014,0,6,6 +2011-10-14 03:00:00,4,0,1,1,22.96,26.515,94,8.9981,1,6,7 +2011-10-14 04:00:00,4,0,1,1,22.96,26.515,94,12.998,0,8,8 +2011-10-14 05:00:00,4,0,1,2,22.96,26.515,94,11.0014,0,17,17 +2011-10-14 06:00:00,4,0,1,3,22.96,26.515,88,12.998,4,90,94 +2011-10-14 07:00:00,4,0,1,3,22.96,26.515,88,12.998,10,137,147 +2011-10-14 08:00:00,4,0,1,2,22.96,26.515,90,11.0014,23,186,209 +2011-10-14 09:00:00,4,0,1,2,22.96,26.515,94,15.0013,16,164,180 +2011-10-14 10:00:00,4,0,1,3,22.14,25.76,88,23.9994,17,108,125 +2011-10-14 11:00:00,4,0,1,3,21.32,25,88,11.0014,11,76,87 +2011-10-14 12:00:00,4,0,1,3,21.32,25,88,11.0014,13,62,75 +2011-10-14 13:00:00,4,0,1,1,22.96,26.515,73,23.9994,18,114,132 +2011-10-14 14:00:00,4,0,1,1,25.42,31.06,43,23.9994,37,119,156 +2011-10-14 15:00:00,4,0,1,1,25.42,31.06,43,19.0012,61,169,230 +2011-10-14 16:00:00,4,0,1,1,24.6,31.06,43,15.0013,80,264,344 +2011-10-14 17:00:00,4,0,1,1,23.78,27.275,46,27.9993,55,426,481 +2011-10-14 18:00:00,4,0,1,1,22.14,25.76,39,19.0012,62,361,423 +2011-10-14 19:00:00,4,0,1,1,22.14,25.76,39,22.0028,27,221,248 +2011-10-14 20:00:00,4,0,1,1,21.32,25,42,12.998,19,177,196 +2011-10-14 21:00:00,4,0,1,1,20.5,24.24,45,12.998,22,156,178 +2011-10-14 22:00:00,4,0,1,1,18.86,22.725,59,15.0013,20,123,143 +2011-10-14 23:00:00,4,0,1,1,18.86,22.725,59,11.0014,15,80,95 +2011-10-15 00:00:00,4,0,0,1,18.86,22.725,55,7.0015,18,88,106 +2011-10-15 01:00:00,4,0,0,1,18.86,22.725,55,16.9979,9,64,73 +2011-10-15 02:00:00,4,0,0,1,18.86,22.725,59,12.998,17,39,56 +2011-10-15 03:00:00,4,0,0,1,18.04,21.97,62,12.998,5,18,23 +2011-10-15 04:00:00,4,0,0,1,17.22,21.21,67,8.9981,0,6,6 +2011-10-15 05:00:00,4,0,0,1,17.22,21.21,71,11.0014,1,6,7 +2011-10-15 06:00:00,4,0,0,1,16.4,20.455,71,0,5,15,20 +2011-10-15 07:00:00,4,0,0,1,16.4,20.455,76,7.0015,17,40,57 +2011-10-15 08:00:00,4,0,0,1,18.86,22.725,59,19.0012,24,101,125 +2011-10-15 09:00:00,4,0,0,1,21.32,25,48,19.9995,50,157,207 +2011-10-15 10:00:00,4,0,0,1,22.14,25.76,45,30.0026,115,207,322 +2011-10-15 11:00:00,4,0,0,1,22.96,26.515,40,26.0027,153,221,374 +2011-10-15 12:00:00,4,0,0,1,23.78,27.275,35,36.9974,195,261,456 +2011-10-15 13:00:00,4,0,0,1,24.6,31.06,35,31.0009,171,223,394 +2011-10-15 14:00:00,4,0,0,1,24.6,31.06,33,31.0009,242,230,472 +2011-10-15 15:00:00,4,0,0,1,25.42,31.06,31,32.9975,166,211,377 +2011-10-15 16:00:00,4,0,0,1,25.42,31.06,29,26.0027,179,264,443 +2011-10-15 17:00:00,4,0,0,1,23.78,27.275,32,19.0012,177,264,441 +2011-10-15 18:00:00,4,0,0,1,22.14,25.76,39,12.998,121,251,372 +2011-10-15 19:00:00,4,0,0,1,20.5,24.24,51,8.9981,61,177,238 +2011-10-15 20:00:00,4,0,0,1,20.5,24.24,48,8.9981,42,137,179 +2011-10-15 21:00:00,4,0,0,1,20.5,24.24,42,15.0013,53,115,168 +2011-10-15 22:00:00,4,0,0,1,20.5,24.24,36,8.9981,45,121,166 +2011-10-15 23:00:00,4,0,0,1,19.68,23.485,41,11.0014,33,102,135 +2011-10-16 00:00:00,4,0,0,1,18.86,22.725,44,8.9981,22,85,107 +2011-10-16 01:00:00,4,0,0,1,18.04,21.97,47,8.9981,13,64,77 +2011-10-16 02:00:00,4,0,0,1,17.22,21.21,54,8.9981,13,52,65 +2011-10-16 03:00:00,4,0,0,1,17.22,21.21,54,8.9981,11,31,42 +2011-10-16 04:00:00,4,0,0,1,17.22,21.21,54,12.998,5,7,12 +2011-10-16 05:00:00,4,0,0,1,17.22,21.21,54,11.0014,1,6,7 +2011-10-16 06:00:00,4,0,0,1,15.58,19.695,66,11.0014,3,7,10 +2011-10-16 07:00:00,4,0,0,1,16.4,20.455,62,8.9981,9,39,48 +2011-10-16 08:00:00,4,0,0,1,18.04,21.97,62,12.998,28,71,99 +2011-10-16 09:00:00,4,0,0,1,20.5,24.24,45,15.0013,39,151,190 +2011-10-16 10:00:00,4,0,0,1,22.14,25.76,45,16.9979,121,226,347 +2011-10-16 11:00:00,4,0,0,1,22.96,26.515,35,19.0012,159,218,377 +2011-10-16 12:00:00,4,0,0,1,23.78,27.275,35,16.9979,167,277,444 +2011-10-16 13:00:00,4,0,0,1,24.6,31.06,35,19.9995,169,269,438 +2011-10-16 14:00:00,4,0,0,1,24.6,31.06,40,19.9995,204,258,462 +2011-10-16 15:00:00,4,0,0,1,25.42,31.06,35,26.0027,182,230,412 +2011-10-16 16:00:00,4,0,0,1,24.6,31.06,46,26.0027,177,289,466 +2011-10-16 17:00:00,4,0,0,1,23.78,27.275,49,31.0009,152,253,405 +2011-10-16 18:00:00,4,0,0,1,22.96,26.515,49,30.0026,102,226,328 +2011-10-16 19:00:00,4,0,0,1,22.14,25.76,52,26.0027,52,181,233 +2011-10-16 20:00:00,4,0,0,1,22.14,25.76,52,31.0009,49,129,178 +2011-10-16 21:00:00,4,0,0,1,22.14,25.76,52,26.0027,14,88,102 +2011-10-16 22:00:00,4,0,0,1,22.96,26.515,49,27.9993,42,88,130 +2011-10-16 23:00:00,4,0,0,1,22.96,26.515,52,27.9993,14,48,62 +2011-10-17 00:00:00,4,0,1,1,22.14,25.76,56,22.0028,12,25,37 +2011-10-17 01:00:00,4,0,1,1,22.96,26.515,54,26.0027,2,15,17 +2011-10-17 02:00:00,4,0,1,1,22.96,26.515,54,26.0027,4,3,7 +2011-10-17 03:00:00,4,0,1,1,22.96,26.515,49,12.998,0,2,2 +2011-10-17 04:00:00,4,0,1,1,21.32,25,59,11.0014,2,3,5 +2011-10-17 05:00:00,4,0,1,1,20.5,24.24,63,19.9995,1,28,29 +2011-10-17 06:00:00,4,0,1,1,20.5,24.24,55,16.9979,7,107,114 +2011-10-17 07:00:00,4,0,1,2,20.5,24.24,55,11.0014,10,299,309 +2011-10-17 08:00:00,4,0,1,2,20.5,24.24,51,16.9979,33,381,414 +2011-10-17 09:00:00,4,0,1,2,20.5,24.24,45,19.0012,26,180,206 +2011-10-17 10:00:00,4,0,1,1,21.32,25,45,11.0014,43,92,135 +2011-10-17 11:00:00,4,0,1,1,22.96,26.515,43,0,35,131,166 +2011-10-17 12:00:00,4,0,1,1,22.96,26.515,40,6.0032,39,166,205 +2011-10-17 13:00:00,4,0,1,1,22.96,26.515,46,6.0032,49,156,205 +2011-10-17 14:00:00,4,0,1,1,23.78,27.275,49,12.998,44,122,166 +2011-10-17 15:00:00,4,0,1,1,22.96,26.515,60,16.9979,66,142,208 +2011-10-17 16:00:00,4,0,1,1,23.78,27.275,56,16.9979,64,238,302 +2011-10-17 17:00:00,4,0,1,1,22.96,26.515,64,8.9981,80,540,620 +2011-10-17 18:00:00,4,0,1,1,22.96,26.515,60,0,49,469,518 +2011-10-17 19:00:00,4,0,1,1,22.14,25.76,68,7.0015,45,288,333 +2011-10-17 20:00:00,4,0,1,1,21.32,25,77,7.0015,40,189,229 +2011-10-17 21:00:00,4,0,1,1,20.5,24.24,77,7.0015,36,141,177 +2011-10-17 22:00:00,4,0,1,1,20.5,24.24,77,0,16,88,104 +2011-10-17 23:00:00,4,0,1,2,19.68,23.485,88,0,10,52,62 +2011-10-18 00:00:00,4,0,1,1,19.68,23.485,82,0,8,23,31 +2011-10-18 01:00:00,4,0,1,2,18.86,22.725,88,0,4,7,11 +2011-10-18 02:00:00,4,0,1,1,18.04,21.97,94,6.0032,1,4,5 +2011-10-18 03:00:00,4,0,1,1,18.04,21.97,94,6.0032,0,1,1 +2011-10-18 04:00:00,4,0,1,2,18.04,21.97,94,7.0015,0,4,4 +2011-10-18 05:00:00,4,0,1,2,18.86,22.725,88,0,2,19,21 +2011-10-18 06:00:00,4,0,1,1,18.86,22.725,82,6.0032,4,105,109 +2011-10-18 07:00:00,4,0,1,1,18.86,22.725,88,6.0032,15,326,341 +2011-10-18 08:00:00,4,0,1,1,20.5,24.24,77,6.0032,25,474,499 +2011-10-18 09:00:00,4,0,1,2,21.32,25,77,6.0032,29,198,227 +2011-10-18 10:00:00,4,0,1,2,22.96,26.515,68,0,27,75,102 +2011-10-18 11:00:00,4,0,1,2,24.6,31.06,49,7.0015,35,112,147 +2011-10-18 12:00:00,4,0,1,2,25.42,31.06,43,6.0032,42,159,201 +2011-10-18 13:00:00,4,0,1,2,26.24,31.06,38,12.998,48,171,219 +2011-10-18 14:00:00,4,0,1,2,25.42,31.06,41,11.0014,32,137,169 +2011-10-18 15:00:00,4,0,1,1,25.42,31.06,50,12.998,66,139,205 +2011-10-18 16:00:00,4,0,1,1,25.42,31.06,57,16.9979,58,246,304 +2011-10-18 17:00:00,4,0,1,1,24.6,30.305,60,8.9981,72,553,625 +2011-10-18 18:00:00,4,0,1,1,22.96,26.515,68,7.0015,58,512,570 +2011-10-18 19:00:00,4,0,1,1,22.96,26.515,60,7.0015,31,286,317 +2011-10-18 20:00:00,4,0,1,1,22.14,25.76,64,11.0014,23,204,227 +2011-10-18 21:00:00,4,0,1,2,22.14,25.76,68,8.9981,28,178,206 +2011-10-18 22:00:00,4,0,1,2,21.32,25,77,11.0014,22,115,137 +2011-10-18 23:00:00,4,0,1,2,21.32,25,77,12.998,7,63,70 +2011-10-19 00:00:00,4,0,1,2,21.32,25,77,12.998,11,23,34 +2011-10-19 01:00:00,4,0,1,2,21.32,25,77,12.998,7,9,16 +2011-10-19 02:00:00,4,0,1,2,21.32,25,77,12.998,1,6,7 +2011-10-19 04:00:00,4,0,1,3,20.5,24.24,94,12.998,0,3,3 +2011-10-19 05:00:00,4,0,1,3,20.5,24.24,100,7.0015,0,3,3 +2011-10-19 06:00:00,4,0,1,3,21.32,25,83,16.9979,3,28,31 +2011-10-19 07:00:00,4,0,1,3,21.32,25,77,16.9979,1,67,68 +2011-10-19 08:00:00,4,0,1,3,22.14,25.76,70,32.9975,10,200,210 +2011-10-19 09:00:00,4,0,1,3,21.32,25,88,32.9975,17,185,202 +2011-10-19 10:00:00,4,0,1,3,21.32,25,88,32.9975,14,109,123 +2011-10-19 11:00:00,4,0,1,3,21.32,25,94,16.9979,33,116,149 +2011-10-19 12:00:00,4,0,1,3,21.32,25,94,22.0028,13,117,130 +2011-10-19 13:00:00,4,0,1,2,22.14,25.76,94,19.0012,20,86,106 +2011-10-19 14:00:00,4,0,1,3,22.14,25.76,94,11.0014,17,80,97 +2011-10-19 15:00:00,4,0,1,3,22.14,25.76,100,8.9981,21,99,120 +2011-10-19 16:00:00,4,0,1,3,22.96,26.515,94,11.0014,21,180,201 +2011-10-19 17:00:00,4,0,1,3,22.96,26.515,94,11.0014,11,170,181 +2011-10-19 18:00:00,4,0,1,3,22.96,26.515,100,11.0014,8,132,140 +2011-10-19 19:00:00,4,0,1,2,24.6,27.275,88,8.9981,8,189,197 +2011-10-19 20:00:00,4,0,1,3,24.6,25.76,94,6.0032,5,140,145 +2011-10-19 21:00:00,4,0,1,2,23.78,27.275,94,8.9981,6,79,85 +2011-10-19 22:00:00,4,0,1,2,23.78,27.275,94,23.9994,13,94,107 +2011-10-19 23:00:00,4,0,1,2,23.78,27.275,94,23.9994,14,55,69 +2011-11-01 00:00:00,4,0,1,2,14.76,17.425,87,11.0014,3,18,21 +2011-11-01 01:00:00,4,0,1,1,14.76,17.425,81,8.9981,3,8,11 +2011-11-01 02:00:00,4,0,1,2,14.76,17.425,81,11.0014,1,3,4 +2011-11-01 03:00:00,4,0,1,2,14.76,17.425,81,8.9981,1,5,6 +2011-11-01 04:00:00,4,0,1,1,13.94,15.91,81,15.0013,1,7,8 +2011-11-01 05:00:00,4,0,1,1,13.12,15.91,81,12.998,0,18,18 +2011-11-01 06:00:00,4,0,1,1,13.12,15.91,81,12.998,3,90,93 +2011-11-01 07:00:00,4,0,1,1,13.94,16.665,76,12.998,8,246,254 +2011-11-01 08:00:00,4,0,1,1,14.76,16.665,71,16.9979,17,402,419 +2011-11-01 09:00:00,4,0,1,1,16.4,20.455,66,11.0014,16,206,222 +2011-11-01 10:00:00,4,0,1,1,18.04,21.97,62,8.9981,21,114,135 +2011-11-01 11:00:00,4,0,1,1,18.86,22.725,63,7.0015,16,101,117 +2011-11-01 12:00:00,4,0,1,1,20.5,24.24,48,6.0032,23,153,176 +2011-11-01 13:00:00,4,0,1,1,19.68,23.485,55,12.998,20,147,167 +2011-11-01 14:00:00,4,0,1,1,20.5,24.24,48,16.9979,32,118,150 +2011-11-01 15:00:00,4,0,1,1,20.5,24.24,45,8.9981,38,148,186 +2011-11-01 16:00:00,4,0,1,1,19.68,23.485,44,11.0014,46,252,298 +2011-11-01 17:00:00,4,0,1,1,18.04,21.97,54,11.0014,36,470,506 +2011-11-01 18:00:00,4,0,1,1,17.22,21.21,58,7.0015,39,421,460 +2011-11-01 19:00:00,4,0,1,1,17.22,21.21,58,6.0032,39,274,313 +2011-11-01 20:00:00,4,0,1,1,16.4,20.455,71,0,18,191,209 +2011-11-01 21:00:00,4,0,1,1,14.76,18.94,81,0,13,114,127 +2011-11-01 22:00:00,4,0,1,1,14.76,18.94,81,0,5,91,96 +2011-11-01 23:00:00,4,0,1,1,13.94,18.18,87,0,11,61,72 +2011-11-02 00:00:00,4,0,1,1,13.12,17.425,87,0,0,19,19 +2011-11-02 01:00:00,4,0,1,1,12.3,16.665,87,0,2,8,10 +2011-11-02 02:00:00,4,0,1,1,12.3,16.665,87,0,0,2,2 +2011-11-02 03:00:00,4,0,1,1,12.3,16.665,75,0,0,2,2 +2011-11-02 04:00:00,4,0,1,1,12.3,16.665,87,0,0,4,4 +2011-11-02 05:00:00,4,0,1,1,12.3,16.665,81,0,0,27,27 +2011-11-02 06:00:00,4,0,1,1,12.3,16.665,81,0,1,91,92 +2011-11-02 07:00:00,4,0,1,1,12.3,16.665,81,0,11,240,251 +2011-11-02 08:00:00,4,0,1,1,13.12,17.425,87,0,20,452,472 +2011-11-02 09:00:00,4,0,1,1,13.94,18.18,87,0,15,213,228 +2011-11-02 10:00:00,4,0,1,1,16.4,20.455,71,6.0032,25,108,133 +2011-11-02 11:00:00,4,0,1,1,17.22,21.21,71,8.9981,27,117,144 +2011-11-02 12:00:00,4,0,1,1,18.86,22.725,55,11.0014,32,157,189 +2011-11-02 13:00:00,4,0,1,1,19.68,23.485,48,11.0014,22,139,161 +2011-11-02 14:00:00,4,0,1,1,20.5,24.24,45,11.0014,40,132,172 +2011-11-02 15:00:00,4,0,1,1,19.68,23.485,51,11.0014,26,161,187 +2011-11-02 16:00:00,4,0,1,1,19.68,23.485,51,7.0015,35,231,266 +2011-11-02 17:00:00,4,0,1,1,18.04,21.97,62,12.998,30,523,553 +2011-11-02 18:00:00,4,0,1,1,17.22,21.21,71,11.0014,31,448,479 +2011-11-02 19:00:00,4,0,1,1,16.4,20.455,76,8.9981,25,257,282 +2011-11-02 20:00:00,4,0,1,1,16.4,20.455,66,8.9981,5,177,182 +2011-11-02 21:00:00,4,0,1,1,15.58,19.695,71,8.9981,13,155,168 +2011-11-02 22:00:00,4,0,1,1,14.76,17.425,71,8.9981,7,99,106 +2011-11-02 23:00:00,4,0,1,1,14.76,18.18,76,6.0032,3,54,57 +2011-11-03 00:00:00,4,0,1,1,14.76,18.18,76,6.0032,3,28,31 +2011-11-03 01:00:00,4,0,1,1,13.94,16.665,81,8.9981,3,12,15 +2011-11-03 02:00:00,4,0,1,1,13.94,16.665,76,8.9981,2,5,7 +2011-11-03 03:00:00,4,0,1,1,13.94,16.665,81,8.9981,1,4,5 +2011-11-03 04:00:00,4,0,1,1,13.12,16.665,81,6.0032,1,3,4 +2011-11-03 05:00:00,4,0,1,1,13.12,16.665,81,8.9981,1,27,28 +2011-11-03 06:00:00,4,0,1,1,13.94,16.665,76,12.998,3,96,99 +2011-11-03 07:00:00,4,0,1,2,13.12,16.665,81,6.0032,12,280,292 +2011-11-03 08:00:00,4,0,1,2,13.94,17.425,81,6.0032,8,394,402 +2011-11-03 09:00:00,4,0,1,2,14.76,17.425,81,12.998,9,155,164 +2011-11-03 10:00:00,4,0,1,2,16.4,20.455,76,12.998,12,98,110 +2011-11-03 11:00:00,4,0,1,1,18.04,21.97,67,12.998,12,108,120 +2011-11-03 12:00:00,4,0,1,1,20.5,24.24,51,12.998,17,162,179 +2011-11-03 13:00:00,4,0,1,2,21.32,25,48,16.9979,19,150,169 +2011-11-03 14:00:00,4,0,1,1,21.32,25,52,11.0014,32,120,152 +2011-11-03 15:00:00,4,0,1,1,21.32,25,52,11.0014,24,138,162 +2011-11-03 16:00:00,4,0,1,1,21.32,25,48,12.998,33,234,267 +2011-11-03 17:00:00,4,0,1,1,19.68,23.485,55,6.0032,33,465,498 +2011-11-03 18:00:00,4,0,1,1,18.86,22.725,63,8.9981,24,409,433 +2011-11-03 19:00:00,4,0,1,1,18.04,21.97,67,6.0032,18,234,252 +2011-11-03 20:00:00,4,0,1,1,17.22,21.21,71,7.0015,11,198,209 +2011-11-03 21:00:00,4,0,1,1,16.4,20.455,76,8.9981,4,140,144 +2011-11-03 22:00:00,4,0,1,1,16.4,20.455,82,0,21,116,137 +2011-11-03 23:00:00,4,0,1,1,16.4,20.455,82,6.0032,15,80,95 +2011-11-04 00:00:00,4,0,1,2,16.4,20.455,82,0,11,32,43 +2011-11-04 01:00:00,4,0,1,2,16.4,20.455,82,0,1,16,17 +2011-11-04 02:00:00,4,0,1,2,16.4,20.455,76,0,2,8,10 +2011-11-04 03:00:00,4,0,1,2,15.58,19.695,87,11.0014,1,7,8 +2011-11-04 04:00:00,4,0,1,2,15.58,19.695,87,6.0032,1,6,7 +2011-11-04 05:00:00,4,0,1,2,15.58,19.695,87,0,0,23,23 +2011-11-04 06:00:00,4,0,1,2,15.58,19.695,87,6.0032,2,64,66 +2011-11-04 07:00:00,4,0,1,2,16.4,20.455,86,15.0013,10,235,245 +2011-11-04 08:00:00,4,0,1,2,16.4,20.455,87,23.9994,8,387,395 +2011-11-04 09:00:00,4,0,1,2,17.22,21.21,71,31.0009,15,239,254 +2011-11-04 10:00:00,4,0,1,2,17.22,21.21,71,22.0028,19,115,134 +2011-11-04 11:00:00,4,0,1,2,18.04,21.97,67,30.0026,34,128,162 +2011-11-04 12:00:00,4,0,1,2,19.68,23.485,55,32.9975,44,153,197 +2011-11-04 13:00:00,4,0,1,1,18.04,21.97,51,27.9993,33,161,194 +2011-11-04 14:00:00,4,0,1,1,18.04,21.97,47,19.9995,54,147,201 +2011-11-04 15:00:00,4,0,1,1,18.86,22.725,44,26.0027,45,192,237 +2011-11-04 16:00:00,4,0,1,1,18.86,22.725,36,26.0027,53,237,290 +2011-11-04 17:00:00,4,0,1,1,17.22,21.21,38,23.9994,42,438,480 +2011-11-04 18:00:00,4,0,1,1,17.22,21.21,32,31.0009,35,339,374 +2011-11-04 19:00:00,4,0,1,1,16.4,20.455,37,23.9994,14,182,196 +2011-11-04 20:00:00,4,0,1,1,14.76,16.665,43,19.0012,15,171,186 +2011-11-04 21:00:00,4,0,1,1,13.94,15.91,46,16.9979,8,115,123 +2011-11-04 22:00:00,4,0,1,1,13.94,15.15,46,22.0028,6,109,115 +2011-11-04 23:00:00,4,0,1,1,13.12,15.15,49,22.0028,17,72,89 +2011-11-05 00:00:00,4,0,0,1,13.12,14.395,45,23.9994,4,48,52 +2011-11-05 01:00:00,4,0,0,1,13.12,15.15,45,19.9995,5,57,62 +2011-11-05 02:00:00,4,0,0,1,12.3,13.635,52,22.0028,7,24,31 +2011-11-05 03:00:00,4,0,0,1,12.3,13.635,52,19.9995,0,8,8 +2011-11-05 04:00:00,4,0,0,1,11.48,12.88,56,22.0028,3,5,8 +2011-11-05 05:00:00,4,0,0,1,10.66,11.365,60,22.0028,0,2,2 +2011-11-05 06:00:00,4,0,0,1,10.66,12.12,60,16.9979,3,20,23 +2011-11-05 07:00:00,4,0,0,1,10.66,12.12,60,19.0012,3,31,34 +2011-11-05 08:00:00,4,0,0,1,11.48,12.88,56,22.0028,4,80,84 +2011-11-05 09:00:00,4,0,0,1,12.3,13.635,56,19.9995,30,111,141 +2011-11-05 10:00:00,4,0,0,1,13.12,15.15,53,16.9979,56,171,227 +2011-11-05 11:00:00,4,0,0,1,14.76,18.18,46,7.0015,69,169,238 +2011-11-05 12:00:00,4,0,0,1,14.76,17.425,46,11.0014,137,235,372 +2011-11-05 13:00:00,4,0,0,1,16.4,20.455,37,7.0015,148,207,355 +2011-11-05 14:00:00,4,0,0,1,17.22,21.21,35,8.9981,159,227,386 +2011-11-05 15:00:00,4,0,0,1,16.4,20.455,37,12.998,141,202,343 +2011-11-05 16:00:00,4,0,0,1,16.4,20.455,40,15.0013,128,207,335 +2011-11-05 17:00:00,4,0,0,1,15.58,19.695,40,11.0014,100,234,334 +2011-11-05 18:00:00,4,0,0,1,14.76,18.18,50,6.0032,52,185,237 +2011-11-05 19:00:00,4,0,0,1,13.94,18.18,53,0,45,159,204 +2011-11-05 20:00:00,4,0,0,1,13.12,17.425,66,0,29,136,165 +2011-11-05 21:00:00,4,0,0,1,13.12,17.425,66,0,19,99,118 +2011-11-05 22:00:00,4,0,0,1,12.3,16.665,65,0,10,72,82 +2011-11-05 23:00:00,4,0,0,1,11.48,15.91,70,0,4,81,85 +2011-11-06 00:00:00,4,0,0,1,11.48,15.91,75,0,10,65,75 +2011-11-06 01:00:00,4,0,0,1,10.66,15.15,81,0,11,104,115 +2011-11-06 02:00:00,4,0,0,1,10.66,15.15,81,0,6,23,29 +2011-11-06 03:00:00,4,0,0,1,9.84,14.395,87,0,5,4,9 +2011-11-06 04:00:00,4,0,0,1,9.84,14.395,87,0,0,6,6 +2011-11-06 05:00:00,4,0,0,1,9.84,12.12,87,8.9981,0,5,5 +2011-11-06 06:00:00,4,0,0,1,10.66,14.395,81,6.0032,5,11,16 +2011-11-06 07:00:00,4,0,0,1,10.66,13.635,87,7.0015,4,24,28 +2011-11-06 08:00:00,4,0,0,2,11.48,15.15,87,6.0032,19,71,90 +2011-11-06 09:00:00,4,0,0,2,12.3,15.91,75,6.0032,36,134,170 +2011-11-06 10:00:00,4,0,0,1,14.76,18.18,66,6.0032,76,186,262 +2011-11-06 11:00:00,4,0,0,1,17.22,21.21,58,6.0032,104,216,320 +2011-11-06 12:00:00,4,0,0,1,18.04,21.97,54,0,120,226,346 +2011-11-06 13:00:00,4,0,0,1,18.86,22.725,51,11.0014,105,209,314 +2011-11-06 14:00:00,4,0,0,1,18.86,22.725,55,12.998,101,219,320 +2011-11-06 15:00:00,4,0,0,1,19.68,23.485,51,12.998,96,210,306 +2011-11-06 16:00:00,4,0,0,1,18.86,22.725,55,15.0013,84,263,347 +2011-11-06 17:00:00,4,0,0,1,18.04,21.97,62,11.0014,71,185,256 +2011-11-06 18:00:00,4,0,0,1,17.22,21.21,71,7.0015,39,146,185 +2011-11-06 19:00:00,4,0,0,1,15.58,19.695,76,12.998,21,130,151 +2011-11-06 20:00:00,4,0,0,1,14.76,18.18,81,7.0015,16,100,116 +2011-11-06 21:00:00,4,0,0,1,14.76,18.18,81,6.0032,11,77,88 +2011-11-06 22:00:00,4,0,0,1,14.76,18.94,87,0,5,40,45 +2011-11-06 23:00:00,4,0,0,1,13.94,17.425,87,6.0032,7,43,50 +2011-11-07 00:00:00,4,0,1,1,13.94,18.18,87,0,1,14,15 +2011-11-07 01:00:00,4,0,1,1,13.94,18.18,87,0,2,6,8 +2011-11-07 02:00:00,4,0,1,1,13.12,17.425,93,0,0,2,2 +2011-11-07 03:00:00,4,0,1,1,13.12,17.425,93,0,0,3,3 +2011-11-07 04:00:00,4,0,1,1,13.12,17.425,93,0,2,4,6 +2011-11-07 05:00:00,4,0,1,1,12.3,16.665,93,0,1,25,26 +2011-11-07 06:00:00,4,0,1,2,11.48,15.91,93,0,2,97,99 +2011-11-07 07:00:00,4,0,1,2,11.48,15.91,93,0,6,305,311 +2011-11-07 08:00:00,4,0,1,2,12.3,15.91,100,6.0032,13,397,410 +2011-11-07 09:00:00,4,0,1,2,13.94,16.665,100,8.9981,18,156,174 +2011-11-07 10:00:00,4,0,1,1,14.76,17.425,93,8.9981,28,95,123 +2011-11-07 11:00:00,4,0,1,1,17.22,21.21,77,7.0015,28,100,128 +2011-11-07 12:00:00,4,0,1,1,18.86,22.725,67,0,21,158,179 +2011-11-07 13:00:00,4,0,1,1,22.14,25.76,49,6.0032,32,157,189 +2011-11-07 14:00:00,4,0,1,1,22.96,26.515,37,11.0014,30,115,145 +2011-11-07 15:00:00,4,0,1,1,22.96,26.515,37,7.0015,38,132,170 +2011-11-07 16:00:00,4,0,1,1,21.32,25,45,0,40,255,295 +2011-11-07 17:00:00,4,0,1,1,20.5,24.24,45,11.0014,39,489,528 +2011-11-07 18:00:00,4,0,1,1,18.86,22.725,59,7.0015,18,407,425 +2011-11-07 19:00:00,4,0,1,1,18.86,22.725,59,0,20,280,300 +2011-11-07 20:00:00,4,0,1,1,16.4,20.455,71,0,17,187,204 +2011-11-07 21:00:00,4,0,1,1,15.58,19.695,82,7.0015,10,129,139 +2011-11-07 22:00:00,4,0,1,1,14.76,18.18,81,6.0032,6,102,108 +2011-11-07 23:00:00,4,0,1,1,14.76,18.18,87,6.0032,1,47,48 +2011-11-08 00:00:00,4,0,1,1,13.94,17.425,87,6.0032,0,18,18 +2011-11-08 01:00:00,4,0,1,1,13.12,16.665,93,7.0015,3,8,11 +2011-11-08 02:00:00,4,0,1,1,13.12,17.425,87,0,0,1,1 +2011-11-08 03:00:00,4,0,1,1,13.12,17.425,87,0,0,3,3 +2011-11-08 04:00:00,4,0,1,1,12.3,16.665,87,0,0,4,4 +2011-11-08 05:00:00,4,0,1,1,12.3,15.91,87,6.0032,1,17,18 +2011-11-08 06:00:00,4,0,1,1,12.3,16.665,87,0,3,96,99 +2011-11-08 07:00:00,4,0,1,1,12.3,15.91,87,7.0015,7,316,323 +2011-11-08 08:00:00,4,0,1,1,13.12,16.665,93,7.0015,11,455,466 +2011-11-08 09:00:00,4,0,1,1,14.76,18.94,87,0,14,177,191 +2011-11-08 10:00:00,4,0,1,1,17.22,21.21,71,6.0032,25,104,129 +2011-11-08 11:00:00,4,0,1,1,18.86,22.725,63,8.9981,21,126,147 +2011-11-08 12:00:00,4,0,1,1,21.32,25,52,8.9981,28,175,203 +2011-11-08 13:00:00,4,0,1,1,22.14,25.76,49,11.0014,31,165,196 +2011-11-08 14:00:00,4,0,1,1,22.96,26.515,46,7.0015,32,129,161 +2011-11-08 15:00:00,4,0,1,1,23.78,27.275,46,7.0015,33,155,188 +2011-11-08 16:00:00,4,0,1,1,22.96,26.515,46,8.9981,39,250,289 +2011-11-08 17:00:00,4,0,1,1,21.32,25,43,11.0014,40,459,499 +2011-11-08 18:00:00,4,0,1,1,19.68,23.485,55,8.9981,30,432,462 +2011-11-08 19:00:00,4,0,1,1,18.86,22.725,59,0,14,264,278 +2011-11-08 20:00:00,4,0,1,1,16.4,20.455,76,0,12,169,181 +2011-11-08 21:00:00,4,0,1,1,16.4,20.455,76,0,16,166,182 +2011-11-08 22:00:00,4,0,1,1,14.76,18.94,87,0,13,95,108 +2011-11-08 23:00:00,4,0,1,1,14.76,18.94,81,0,3,45,48 +2011-11-09 00:00:00,4,0,1,1,14.76,18.94,87,0,0,13,13 +2011-11-09 01:00:00,4,0,1,1,13.94,18.18,87,0,0,10,10 +2011-11-09 02:00:00,4,0,1,1,13.12,17.425,93,0,0,5,5 +2011-11-09 03:00:00,4,0,1,1,13.12,17.425,93,0,0,4,4 +2011-11-09 04:00:00,4,0,1,1,13.12,17.425,87,0,0,4,4 +2011-11-09 05:00:00,4,0,1,1,12.3,16.665,87,0,0,28,28 +2011-11-09 06:00:00,4,0,1,1,12.3,16.665,87,0,0,98,98 +2011-11-09 07:00:00,4,0,1,1,12.3,16.665,87,0,0,300,300 +2011-11-09 08:00:00,4,0,1,1,13.12,17.425,93,0,19,437,456 +2011-11-09 09:00:00,4,0,1,1,13.94,18.18,93,0,22,197,219 +2011-11-09 10:00:00,4,0,1,1,16.4,20.455,76,7.0015,16,89,105 +2011-11-09 11:00:00,4,0,1,1,18.86,22.725,67,11.0014,21,131,152 +2011-11-09 12:00:00,4,0,1,1,20.5,24.24,51,11.0014,24,156,180 +2011-11-09 13:00:00,4,0,1,1,20.5,24.24,51,11.0014,31,136,167 +2011-11-09 14:00:00,4,0,1,1,21.32,25,48,11.0014,26,153,179 +2011-11-09 15:00:00,4,0,1,1,21.32,25,45,15.0013,21,130,151 +2011-11-09 16:00:00,4,0,1,1,21.32,25,48,12.998,24,257,281 +2011-11-09 17:00:00,4,0,1,1,18.86,22.725,63,7.0015,27,458,485 +2011-11-09 18:00:00,4,0,1,1,18.04,21.97,67,7.0015,21,387,408 +2011-11-09 19:00:00,4,0,1,1,18.04,21.97,72,7.0015,12,292,304 +2011-11-09 20:00:00,4,0,1,1,18.04,21.97,77,0,18,201,219 +2011-11-09 21:00:00,4,0,1,1,16.4,20.455,87,0,9,152,161 +2011-11-09 22:00:00,4,0,1,1,16.4,20.455,87,0,9,105,114 +2011-11-09 23:00:00,4,0,1,1,15.58,19.695,87,0,5,61,66 +2011-11-10 00:00:00,4,0,1,1,16.4,20.455,87,0,0,24,24 +2011-11-10 01:00:00,4,0,1,2,16.4,20.455,87,0,1,10,11 +2011-11-10 02:00:00,4,0,1,2,15.58,19.695,94,0,0,5,5 +2011-11-10 03:00:00,4,0,1,1,15.58,19.695,94,6.0032,0,11,11 +2011-11-10 04:00:00,4,0,1,1,15.58,19.695,94,6.0032,1,2,3 +2011-11-10 05:00:00,4,0,1,2,14.76,17.425,100,8.9981,1,22,23 +2011-11-10 06:00:00,4,0,1,2,14.76,17.425,100,8.9981,4,110,114 +2011-11-10 07:00:00,4,0,1,2,15.58,19.695,94,11.0014,6,266,272 +2011-11-10 08:00:00,4,0,1,2,16.4,20.455,94,6.0032,18,418,436 +2011-11-10 09:00:00,4,0,1,2,17.22,21.21,94,7.0015,23,188,211 +2011-11-10 10:00:00,4,0,1,2,18.04,21.97,88,15.0013,17,100,117 +2011-11-10 11:00:00,4,0,1,2,18.86,22.725,67,26.0027,9,99,108 +2011-11-10 12:00:00,4,0,1,2,17.22,21.21,67,23.9994,18,149,167 +2011-11-10 13:00:00,4,0,1,3,14.76,16.665,81,23.9994,9,87,96 +2011-11-10 14:00:00,4,0,1,3,14.76,16.665,87,19.0012,6,58,64 +2011-11-10 15:00:00,4,0,1,3,14.76,16.665,81,19.9995,5,57,62 +2011-11-10 16:00:00,4,0,1,3,14.76,17.425,81,15.0013,6,67,73 +2011-11-10 17:00:00,4,0,1,3,14.76,17.425,81,15.0013,9,168,177 +2011-11-10 18:00:00,4,0,1,2,14.76,17.425,81,11.0014,10,263,273 +2011-11-10 19:00:00,4,0,1,2,14.76,17.425,71,15.0013,19,192,211 +2011-11-10 20:00:00,4,0,1,2,14.76,16.665,62,19.0012,8,160,168 +2011-11-10 21:00:00,4,0,1,1,14.76,16.665,57,16.9979,6,130,136 +2011-11-10 22:00:00,4,0,1,1,14.76,16.665,53,19.0012,5,84,89 +2011-11-10 23:00:00,4,0,1,2,13.94,16.665,57,11.0014,9,73,82 +2011-11-11 00:00:00,4,1,0,1,13.94,15.91,53,16.9979,10,56,66 +2011-11-11 01:00:00,4,1,0,1,13.12,15.15,57,22.0028,3,16,19 +2011-11-11 02:00:00,4,1,0,1,13.12,14.395,57,19.0012,1,10,11 +2011-11-11 03:00:00,4,1,0,1,12.3,14.395,61,12.998,0,6,6 +2011-11-11 04:00:00,4,1,0,1,12.3,14.395,61,12.998,0,8,8 +2011-11-11 05:00:00,4,1,0,1,12.3,14.395,49,16.9979,0,13,13 +2011-11-11 06:00:00,4,1,0,1,11.48,12.88,45,22.0028,0,46,46 +2011-11-11 07:00:00,4,1,0,1,11.48,13.635,45,16.9979,5,116,121 +2011-11-11 08:00:00,4,1,0,1,12.3,13.635,42,23.9994,9,249,258 +2011-11-11 09:00:00,4,1,0,1,13.12,14.395,45,30.0026,15,186,201 +2011-11-11 10:00:00,4,1,0,1,13.12,13.635,42,36.9974,38,162,200 +2011-11-11 11:00:00,4,1,0,1,13.94,14.395,42,32.9975,20,150,170 +2011-11-11 12:00:00,4,1,0,1,13.94,14.395,42,31.0009,41,198,239 +2011-11-11 13:00:00,4,1,0,1,15.58,19.695,37,36.9974,57,179,236 +2011-11-11 14:00:00,4,1,0,1,15.58,19.695,37,31.0009,64,183,247 +2011-11-11 15:00:00,4,1,0,1,14.76,16.665,37,27.9993,29,187,216 +2011-11-11 16:00:00,4,1,0,1,14.76,16.665,34,22.0028,49,189,238 +2011-11-11 17:00:00,4,1,0,1,13.94,15.15,39,22.0028,24,286,310 +2011-11-11 18:00:00,4,1,0,1,13.94,15.91,39,16.9979,23,185,208 +2011-11-11 19:00:00,4,1,0,1,13.12,15.91,39,11.0014,17,182,199 +2011-11-11 20:00:00,4,1,0,1,13.12,15.91,39,12.998,12,97,109 +2011-11-11 21:00:00,4,1,0,1,12.3,15.15,45,11.0014,4,79,83 +2011-11-11 22:00:00,4,1,0,1,13.12,15.91,39,12.998,13,78,91 +2011-11-11 23:00:00,4,1,0,1,12.3,15.91,45,6.0032,6,67,73 +2011-11-12 00:00:00,4,0,0,1,9.84,12.12,60,8.9981,12,52,64 +2011-11-12 01:00:00,4,0,0,1,9.84,12.12,60,8.9981,9,45,54 +2011-11-12 02:00:00,4,0,0,1,9.84,12.88,65,6.0032,7,39,46 +2011-11-12 03:00:00,4,0,0,1,9.84,12.12,70,8.9981,4,13,17 +2011-11-12 04:00:00,4,0,0,1,8.2,10.605,80,8.9981,0,7,7 +2011-11-12 05:00:00,4,0,0,1,9.02,12.88,75,6.0032,1,3,4 +2011-11-12 06:00:00,4,0,0,1,9.02,11.365,75,11.0014,0,7,7 +2011-11-12 07:00:00,4,0,0,1,9.02,11.365,75,12.998,3,24,27 +2011-11-12 08:00:00,4,0,0,1,10.66,12.88,70,12.998,14,87,101 +2011-11-12 09:00:00,4,0,0,1,12.3,15.15,61,11.0014,18,142,160 +2011-11-12 10:00:00,4,0,0,1,13.94,15.91,61,19.0012,62,170,232 +2011-11-12 11:00:00,4,0,0,1,15.58,19.695,54,19.0012,102,213,315 +2011-11-12 12:00:00,4,0,0,1,18.04,21.97,44,19.0012,142,224,366 +2011-11-12 13:00:00,4,0,0,1,19.68,23.485,36,19.0012,128,225,353 +2011-11-12 14:00:00,4,0,0,1,20.5,24.24,36,19.9995,191,244,435 +2011-11-12 15:00:00,4,0,0,1,21.32,25,29,19.0012,165,221,386 +2011-11-12 16:00:00,4,0,0,1,21.32,25,32,16.9979,137,224,361 +2011-11-12 17:00:00,4,0,0,1,20.5,24.24,34,16.9979,92,193,285 +2011-11-12 18:00:00,4,0,0,1,17.22,21.21,58,12.998,53,150,203 +2011-11-12 19:00:00,4,0,0,1,17.22,21.21,50,16.9979,32,139,171 +2011-11-12 20:00:00,4,0,0,1,17.22,21.21,50,19.0012,31,101,132 +2011-11-12 21:00:00,4,0,0,1,17.22,21.21,47,19.0012,19,103,122 +2011-11-12 22:00:00,4,0,0,1,17.22,21.21,47,16.9979,30,88,118 +2011-11-12 23:00:00,4,0,0,1,16.4,20.455,58,11.0014,23,78,101 +2011-11-13 00:00:00,4,0,0,2,16.4,20.455,58,12.998,12,61,73 +2011-11-13 01:00:00,4,0,0,2,14.76,17.425,66,12.998,13,58,71 +2011-11-13 02:00:00,4,0,0,1,14.76,18.18,57,7.0015,9,48,57 +2011-11-13 03:00:00,4,0,0,2,14.76,17.425,62,8.9981,8,20,28 +2011-11-13 04:00:00,4,0,0,2,14.76,17.425,62,8.9981,1,5,6 +2011-11-13 05:00:00,4,0,0,1,13.94,16.665,61,11.0014,2,3,5 +2011-11-13 06:00:00,4,0,0,1,13.94,16.665,66,8.9981,5,18,23 +2011-11-13 07:00:00,4,0,0,1,13.94,15.91,66,15.0013,13,30,43 +2011-11-13 08:00:00,4,0,0,1,13.94,17.425,66,6.0032,24,55,79 +2011-11-13 09:00:00,4,0,0,1,16.4,20.455,54,19.0012,38,97,135 +2011-11-13 10:00:00,4,0,0,1,18.04,21.97,44,22.0028,63,178,241 +2011-11-13 11:00:00,4,0,0,1,18.86,22.725,40,27.9993,108,187,295 +2011-11-13 12:00:00,4,0,0,2,21.32,25,29,27.9993,112,242,354 +2011-11-13 13:00:00,4,0,0,2,21.32,25,29,27.9993,105,234,339 +2011-11-13 14:00:00,4,0,0,2,22.14,25.76,28,32.9975,108,263,371 +2011-11-13 15:00:00,4,0,0,2,20.5,24.24,42,22.0028,89,221,310 +2011-11-13 16:00:00,4,0,0,2,22.14,25.76,28,26.0027,93,226,319 +2011-11-13 17:00:00,4,0,0,1,21.32,25,27,22.0028,44,187,231 +2011-11-13 18:00:00,4,0,0,1,21.32,25,27,22.0028,35,155,190 +2011-11-13 19:00:00,4,0,0,1,20.5,24.24,29,23.9994,36,121,157 +2011-11-13 20:00:00,4,0,0,1,20.5,24.24,31,23.9994,24,115,139 +2011-11-13 21:00:00,4,0,0,1,19.68,23.485,36,16.9979,19,76,95 +2011-11-13 22:00:00,4,0,0,1,19.68,23.485,41,26.0027,25,64,89 +2011-11-13 23:00:00,4,0,0,1,18.86,22.725,51,19.9995,18,49,67 +2011-11-14 00:00:00,4,0,1,1,18.86,22.725,59,19.0012,8,22,30 +2011-11-14 01:00:00,4,0,1,1,18.86,22.725,63,19.9995,5,6,11 +2011-11-14 02:00:00,4,0,1,1,18.86,22.725,63,23.9994,7,10,17 +2011-11-14 03:00:00,4,0,1,1,18.04,21.97,67,19.0012,4,3,7 +2011-11-14 04:00:00,4,0,1,1,18.04,21.97,67,15.0013,0,5,5 +2011-11-14 05:00:00,4,0,1,2,18.04,21.97,67,16.9979,0,19,19 +2011-11-14 06:00:00,4,0,1,2,18.04,21.97,72,15.0013,10,104,114 +2011-11-14 07:00:00,4,0,1,1,18.04,21.97,72,16.9979,11,311,322 +2011-11-14 08:00:00,4,0,1,2,18.86,22.725,67,12.998,27,425,452 +2011-11-14 09:00:00,4,0,1,2,19.68,23.485,67,22.0028,29,204,233 +2011-11-14 10:00:00,4,0,1,2,20.5,24.24,63,19.0012,26,85,111 +2011-11-14 11:00:00,4,0,1,2,22.14,25.76,60,19.0012,22,106,128 +2011-11-14 12:00:00,4,0,1,1,22.96,26.515,56,19.9995,36,166,202 +2011-11-14 13:00:00,4,0,1,1,24.6,31.06,49,26.0027,50,153,203 +2011-11-14 14:00:00,4,0,1,1,25.42,31.06,46,30.0026,47,138,185 +2011-11-14 15:00:00,4,0,1,1,26.24,31.06,44,22.0028,53,142,195 +2011-11-14 16:00:00,4,0,1,1,25.42,31.06,46,27.9993,51,264,315 +2011-11-14 17:00:00,4,0,1,1,25.42,31.06,46,16.9979,55,464,519 +2011-11-14 18:00:00,4,0,1,1,22.96,26.515,56,19.0012,29,460,489 +2011-11-14 19:00:00,4,0,1,1,24.6,31.06,53,19.9995,28,274,302 +2011-11-14 20:00:00,4,0,1,1,24.6,31.06,53,23.9994,30,210,240 +2011-11-14 21:00:00,4,0,1,1,24.6,31.06,53,23.9994,37,176,213 +2011-11-14 22:00:00,4,0,1,1,23.78,27.275,56,23.9994,17,96,113 +2011-11-14 23:00:00,4,0,1,1,22.96,26.515,64,19.9995,13,48,61 +2011-11-15 00:00:00,4,0,1,1,22.96,26.515,64,23.9994,7,15,22 +2011-11-15 01:00:00,4,0,1,1,22.96,26.515,60,19.9995,5,5,10 +2011-11-15 02:00:00,4,0,1,1,22.96,26.515,64,16.9979,7,8,15 +2011-11-15 03:00:00,4,0,1,2,22.14,25.76,68,22.0028,0,4,4 +2011-11-15 04:00:00,4,0,1,1,22.96,26.515,64,19.9995,1,6,7 +2011-11-15 05:00:00,4,0,1,1,22.14,25.76,68,19.0012,2,26,28 +2011-11-15 06:00:00,4,0,1,2,22.96,26.515,64,6.0032,4,104,108 +2011-11-15 07:00:00,4,0,1,2,22.14,25.76,68,11.0014,21,298,319 +2011-11-15 08:00:00,4,0,1,2,22.14,25.76,68,7.0015,27,453,480 +2011-11-15 09:00:00,4,0,1,2,22.96,26.515,64,6.0032,26,174,200 +2011-11-15 10:00:00,4,0,1,2,22.96,26.515,64,19.0012,23,115,138 +2011-11-15 11:00:00,4,0,1,2,22.96,26.515,64,12.998,18,116,134 +2011-11-15 12:00:00,4,0,1,2,22.14,25.76,68,0,28,148,176 +2011-11-15 13:00:00,4,0,1,3,22.14,25.76,60,15.0013,21,132,153 +2011-11-15 14:00:00,4,0,1,2,22.14,25.76,60,19.0012,27,120,147 +2011-11-15 15:00:00,4,0,1,2,22.14,25.76,60,8.9981,36,155,191 +2011-11-15 16:00:00,4,0,1,2,21.32,25,68,8.9981,31,240,271 +2011-11-15 17:00:00,4,0,1,2,20.5,24.24,72,12.998,29,422,451 +2011-11-15 18:00:00,4,0,1,2,20.5,24.24,72,19.0012,27,414,441 +2011-11-15 19:00:00,4,0,1,2,20.5,24.24,72,23.9994,27,259,286 +2011-11-15 20:00:00,4,0,1,2,19.68,23.485,82,8.9981,26,212,238 +2011-11-15 21:00:00,4,0,1,2,20.5,24.24,77,6.0032,23,145,168 +2011-11-15 22:00:00,4,0,1,2,18.86,22.725,88,7.0015,19,109,128 +2011-11-15 23:00:00,4,0,1,2,18.86,22.725,94,7.0015,14,66,80 +2011-11-16 00:00:00,4,0,1,2,18.86,22.725,94,0,5,26,31 +2011-11-16 01:00:00,4,0,1,3,18.86,22.725,94,6.0032,0,5,5 +2011-11-16 02:00:00,4,0,1,2,18.86,22.725,94,7.0015,4,6,10 +2011-11-16 03:00:00,4,0,1,2,18.86,22.725,94,7.0015,2,3,5 +2011-11-16 04:00:00,4,0,1,2,18.04,21.97,100,15.0013,1,3,4 +2011-11-16 05:00:00,4,0,1,3,18.86,22.725,94,7.0015,0,13,13 +2011-11-16 06:00:00,4,0,1,2,18.86,22.725,94,6.0032,4,52,56 +2011-11-16 07:00:00,4,0,1,3,18.86,22.725,94,0,7,130,137 +2011-11-16 08:00:00,4,0,1,3,18.86,22.725,94,0,9,223,232 +2011-11-16 09:00:00,4,0,1,3,18.86,22.725,94,0,5,77,82 +2011-11-16 10:00:00,4,0,1,3,18.86,22.725,94,0,4,32,36 +2011-11-16 11:00:00,4,0,1,3,18.86,22.725,94,6.0032,7,53,60 +2011-11-16 12:00:00,4,0,1,3,18.86,22.725,100,0,5,49,54 +2011-11-16 13:00:00,4,0,1,3,18.86,22.725,94,8.9981,6,52,58 +2011-11-16 14:00:00,4,0,1,2,18.86,22.725,100,8.9981,12,49,61 +2011-11-16 15:00:00,4,0,1,3,19.68,23.485,94,7.0015,16,50,66 +2011-11-16 16:00:00,4,0,1,3,19.68,23.485,94,7.0015,13,110,123 +2011-11-16 17:00:00,4,0,1,2,19.68,23.485,88,12.998,17,216,233 +2011-11-16 18:00:00,4,0,1,3,18.86,22.725,88,26.0027,13,176,189 +2011-11-16 19:00:00,4,0,1,3,18.86,22.725,88,26.0027,3,108,111 +2011-11-16 20:00:00,4,0,1,3,18.04,21.97,88,26.0027,5,94,99 +2011-11-16 21:00:00,4,0,1,3,18.04,21.97,88,19.0012,3,72,75 +2011-11-16 22:00:00,4,0,1,3,17.22,21.21,88,15.0013,1,45,46 +2011-11-16 23:00:00,4,0,1,3,17.22,21.21,88,8.9981,3,28,31 +2011-11-17 00:00:00,4,0,1,2,17.22,21.21,88,16.9979,2,22,24 +2011-11-17 01:00:00,4,0,1,2,17.22,21.21,82,11.0014,0,5,5 +2011-11-17 02:00:00,4,0,1,2,17.22,21.21,82,15.0013,0,5,5 +2011-11-17 03:00:00,4,0,1,2,17.22,21.21,77,22.0028,0,3,3 +2011-11-17 04:00:00,4,0,1,2,16.4,20.455,62,27.9993,1,3,4 +2011-11-17 05:00:00,4,0,1,3,13.94,15.15,71,22.0028,1,21,22 +2011-11-17 06:00:00,4,0,1,3,14.76,17.425,57,15.0013,3,72,75 +2011-11-17 07:00:00,4,0,1,3,13.94,15.91,61,19.0012,4,164,168 +2011-11-17 08:00:00,4,0,1,3,13.94,15.15,61,19.9995,12,343,355 +2011-11-17 09:00:00,4,0,1,2,13.94,15.15,61,22.0028,14,184,198 +2011-11-17 10:00:00,4,0,1,2,13.94,15.15,61,22.0028,7,74,81 +2011-11-17 11:00:00,4,0,1,3,13.12,15.15,66,22.0028,4,93,97 +2011-11-17 12:00:00,4,0,1,2,13.94,15.15,53,19.9995,6,115,121 +2011-11-17 13:00:00,4,0,1,2,13.94,15.15,49,30.0026,15,109,124 +2011-11-17 14:00:00,4,0,1,2,13.94,15.15,49,26.0027,5,105,110 +2011-11-17 15:00:00,4,0,1,2,13.94,15.15,49,30.0026,10,106,116 +2011-11-17 16:00:00,4,0,1,1,13.12,14.395,39,27.9993,8,187,195 +2011-11-17 17:00:00,4,0,1,1,13.12,14.395,42,26.0027,20,379,399 +2011-11-17 18:00:00,4,0,1,1,13.12,15.91,39,12.998,9,298,307 +2011-11-17 19:00:00,4,0,1,1,12.3,14.395,45,15.0013,7,210,217 +2011-11-17 20:00:00,4,0,1,1,12.3,14.395,42,19.0012,7,162,169 +2011-11-17 21:00:00,4,0,1,1,12.3,14.395,42,16.9979,3,113,116 +2011-11-17 22:00:00,4,0,1,1,10.66,12.12,52,16.9979,1,83,84 +2011-11-17 23:00:00,4,0,1,1,10.66,12.88,52,15.0013,0,58,58 +2011-11-18 00:00:00,4,0,1,1,10.66,12.88,48,11.0014,2,28,30 +2011-11-18 01:00:00,4,0,1,1,10.66,11.365,44,22.0028,0,10,10 +2011-11-18 02:00:00,4,0,1,1,9.84,11.365,44,15.0013,2,8,10 +2011-11-18 03:00:00,4,0,1,1,9.84,10.605,41,19.0012,0,2,2 +2011-11-18 04:00:00,4,0,1,1,9.02,11.365,44,11.0014,0,5,5 +2011-11-18 05:00:00,4,0,1,1,9.02,11.365,44,8.9981,0,22,22 +2011-11-18 06:00:00,4,0,1,1,9.02,12.88,44,6.0032,1,70,71 +2011-11-18 07:00:00,4,0,1,1,9.02,11.365,44,11.0014,5,211,216 +2011-11-18 08:00:00,4,0,1,1,9.02,11.365,44,12.998,6,369,375 +2011-11-18 09:00:00,4,0,1,1,10.66,12.88,41,12.998,6,207,213 +2011-11-18 10:00:00,4,0,1,1,10.66,12.12,41,19.0012,10,105,115 +2011-11-18 11:00:00,4,0,1,1,12.3,15.15,36,8.9981,18,122,140 +2011-11-18 12:00:00,4,0,1,1,13.12,16.665,33,0,22,143,165 +2011-11-18 13:00:00,4,0,1,1,13.94,15.91,31,15.0013,31,146,177 +2011-11-18 14:00:00,4,0,1,1,13.94,16.665,31,8.9981,31,123,154 +2011-11-18 15:00:00,4,0,1,1,13.94,16.665,29,8.9981,27,151,178 +2011-11-18 16:00:00,4,0,1,1,13.94,16.665,29,8.9981,19,190,209 +2011-11-18 17:00:00,4,0,1,1,13.12,16.665,31,8.9981,17,361,378 +2011-11-18 18:00:00,4,0,1,1,12.3,15.15,36,11.0014,16,312,328 +2011-11-18 19:00:00,4,0,1,1,11.48,13.635,41,11.0014,7,183,190 +2011-11-18 20:00:00,4,0,1,1,11.48,13.635,48,12.998,8,129,137 +2011-11-18 21:00:00,4,0,1,1,11.48,13.635,48,11.0014,3,108,111 +2011-11-18 22:00:00,4,0,1,1,10.66,13.635,52,7.0015,9,88,97 +2011-11-18 23:00:00,4,0,1,1,10.66,13.635,60,8.9981,5,54,59 +2011-11-19 00:00:00,4,0,0,1,10.66,12.88,56,12.998,4,49,53 +2011-11-19 01:00:00,4,0,0,1,10.66,11.365,52,19.9995,1,34,35 +2011-11-19 02:00:00,4,0,0,1,9.84,12.12,56,11.0014,12,34,46 +2011-11-19 03:00:00,4,0,0,1,10.66,12.12,48,16.9979,4,11,15 +2011-11-19 04:00:00,4,0,0,1,10.66,11.365,48,22.0028,4,4,8 +2011-11-19 05:00:00,4,0,0,1,9.84,11.365,56,16.9979,0,2,2 +2011-11-19 06:00:00,4,0,0,1,9.84,10.605,60,22.0028,2,10,12 +2011-11-19 07:00:00,4,0,0,1,9.84,11.365,60,16.9979,3,38,41 +2011-11-19 08:00:00,4,0,0,1,10.66,12.12,56,16.9979,12,80,92 +2011-11-19 09:00:00,4,0,0,1,11.48,12.88,52,19.9995,12,130,142 +2011-11-19 10:00:00,4,0,0,1,13.12,15.15,45,16.9979,35,165,200 +2011-11-19 11:00:00,4,0,0,1,14.76,18.94,40,0,50,183,233 +2011-11-19 12:00:00,4,0,0,1,16.4,20.455,35,19.0012,93,218,311 +2011-11-19 13:00:00,4,0,0,1,17.22,21.21,30,19.0012,118,245,363 +2011-11-19 14:00:00,4,0,0,1,17.22,21.21,32,19.9995,121,228,349 +2011-11-19 15:00:00,4,0,0,1,17.22,21.21,41,12.998,120,262,382 +2011-11-19 16:00:00,4,0,0,1,17.22,21.21,38,19.9995,99,188,287 +2011-11-19 17:00:00,4,0,0,1,16.4,20.455,40,12.998,61,171,232 +2011-11-19 18:00:00,4,0,0,1,15.58,19.695,46,8.9981,36,172,208 +2011-11-19 19:00:00,4,0,0,2,13.94,16.665,71,8.9981,33,149,182 +2011-11-19 20:00:00,4,0,0,2,14.76,18.18,57,7.0015,48,115,163 +2011-11-19 21:00:00,4,0,0,2,14.76,17.425,62,12.998,29,79,108 +2011-11-19 22:00:00,4,0,0,2,15.58,19.695,62,11.0014,26,80,106 +2011-11-19 23:00:00,4,0,0,1,15.58,19.695,62,15.0013,20,73,93 +2011-12-01 00:00:00,4,0,1,1,11.48,12.88,52,22.0028,1,19,20 +2011-12-01 01:00:00,4,0,1,1,10.66,12.12,60,19.0012,1,9,10 +2011-12-01 02:00:00,4,0,1,1,10.66,11.365,56,19.9995,1,8,9 +2011-12-01 03:00:00,4,0,1,1,10.66,12.12,56,16.9979,1,6,7 +2011-12-01 04:00:00,4,0,1,1,10.66,12.12,56,19.0012,0,1,1 +2011-12-01 05:00:00,4,0,1,1,10.66,12.12,56,16.9979,1,23,24 +2011-12-01 06:00:00,4,0,1,1,9.84,10.605,65,19.0012,5,92,97 +2011-12-01 07:00:00,4,0,1,1,9.84,10.605,65,23.9994,11,265,276 +2011-12-01 08:00:00,4,0,1,1,10.66,11.365,60,22.0028,15,462,477 +2011-12-01 09:00:00,4,0,1,1,12.3,13.635,52,22.0028,9,215,224 +2011-12-01 10:00:00,4,0,1,1,13.12,15.15,53,19.9995,7,86,93 +2011-12-01 11:00:00,4,0,1,1,13.94,15.91,49,16.9979,7,95,102 +2011-12-01 12:00:00,4,0,1,1,14.76,17.425,46,15.0013,9,139,148 +2011-12-01 13:00:00,4,0,1,1,16.4,20.455,40,15.0013,17,137,154 +2011-12-01 14:00:00,4,0,1,1,16.4,20.455,40,15.0013,20,130,150 +2011-12-01 15:00:00,4,0,1,1,16.4,20.455,40,15.0013,10,144,154 +2011-12-01 16:00:00,4,0,1,1,16.4,20.455,40,12.998,9,192,201 +2011-12-01 17:00:00,4,0,1,1,14.76,17.425,46,8.9981,9,409,418 +2011-12-01 18:00:00,4,0,1,1,14.76,18.18,43,7.0015,12,393,405 +2011-12-01 19:00:00,4,0,1,1,13.94,17.425,46,7.0015,9,219,228 +2011-12-01 20:00:00,4,0,1,1,13.94,17.425,46,7.0015,12,178,190 +2011-12-01 21:00:00,4,0,1,1,12.3,15.91,61,7.0015,8,154,162 +2011-12-01 22:00:00,4,0,1,1,12.3,16.665,61,0,5,99,104 +2011-12-01 23:00:00,4,0,1,1,10.66,14.395,70,6.0032,3,70,73 +2011-12-02 00:00:00,4,0,1,1,10.66,14.395,70,6.0032,6,32,38 +2011-12-02 01:00:00,4,0,1,1,9.84,14.395,75,0,1,14,15 +2011-12-02 02:00:00,4,0,1,1,9.84,14.395,75,0,0,10,10 +2011-12-02 03:00:00,4,0,1,1,9.02,13.635,80,0,0,1,1 +2011-12-02 04:00:00,4,0,1,1,9.02,13.635,80,0,0,3,3 +2011-12-02 05:00:00,4,0,1,1,9.02,12.88,80,6.0032,0,23,23 +2011-12-02 06:00:00,4,0,1,1,9.02,13.635,80,0,3,84,87 +2011-12-02 07:00:00,4,0,1,1,9.02,12.88,87,6.0032,6,199,205 +2011-12-02 08:00:00,4,0,1,1,9.84,14.395,87,0,13,432,445 +2011-12-02 09:00:00,4,0,1,1,11.48,15.91,81,0,12,234,246 +2011-12-02 10:00:00,4,0,1,1,12.3,14.395,75,15.0013,16,89,105 +2011-12-02 11:00:00,4,0,1,1,13.94,16.665,66,11.0014,18,142,160 +2011-12-02 12:00:00,4,0,1,1,14.76,17.425,57,8.9981,18,186,204 +2011-12-02 13:00:00,4,0,1,1,16.4,20.455,47,8.9981,19,188,207 +2011-12-02 14:00:00,4,0,1,1,17.22,21.21,44,7.0015,25,145,170 +2011-12-02 15:00:00,4,0,1,1,17.22,21.21,41,6.0032,24,175,199 +2011-12-02 16:00:00,4,0,1,1,17.22,21.21,41,6.0032,22,254,276 +2011-12-02 17:00:00,4,0,1,1,17.22,21.21,38,0,20,391,411 +2011-12-02 18:00:00,4,0,1,1,16.4,20.455,50,0,10,362,372 +2011-12-02 19:00:00,4,0,1,1,13.94,15.91,53,16.9979,13,252,265 +2011-12-02 20:00:00,4,0,1,1,15.58,19.695,40,19.0012,12,178,190 +2011-12-02 21:00:00,4,0,1,1,13.94,16.665,49,12.998,9,102,111 +2011-12-02 22:00:00,4,0,1,1,13.12,15.91,53,12.998,7,95,102 +2011-12-02 23:00:00,4,0,1,1,13.12,15.15,53,19.0012,14,81,95 +2011-12-03 00:00:00,4,0,0,1,12.3,14.395,56,16.9979,10,65,75 +2011-12-03 01:00:00,4,0,0,1,10.66,12.88,65,12.998,9,62,71 +2011-12-03 02:00:00,4,0,0,1,10.66,12.88,65,11.0014,9,41,50 +2011-12-03 03:00:00,4,0,0,1,9.84,12.12,70,8.9981,4,5,9 +2011-12-03 04:00:00,4,0,0,1,9.02,11.365,75,8.9981,1,7,8 +2011-12-03 05:00:00,4,0,0,1,9.84,12.88,70,6.0032,0,6,6 +2011-12-03 06:00:00,4,0,0,1,9.84,12.88,65,7.0015,1,10,11 +2011-12-03 07:00:00,4,0,0,1,9.02,12.88,75,6.0032,2,24,26 +2011-12-03 08:00:00,4,0,0,1,9.84,12.88,75,6.0032,1,62,63 +2011-12-03 09:00:00,4,0,0,1,10.66,13.635,70,7.0015,25,99,124 +2011-12-03 10:00:00,4,0,0,1,13.12,16.665,61,8.9981,22,173,195 +2011-12-03 11:00:00,4,0,0,1,13.12,16.665,57,6.0032,48,227,275 +2011-12-03 12:00:00,4,0,0,1,14.76,18.94,50,0,78,280,358 +2011-12-03 13:00:00,4,0,0,1,14.76,18.18,50,6.0032,70,222,292 +2011-12-03 14:00:00,4,0,0,1,14.76,18.94,46,0,92,251,343 +2011-12-03 15:00:00,4,0,0,1,15.58,19.695,46,0,100,237,337 +2011-12-03 16:00:00,4,0,0,1,15.58,19.695,46,0,75,230,305 +2011-12-03 17:00:00,4,0,0,1,14.76,18.94,62,0,46,186,232 +2011-12-03 18:00:00,4,0,0,1,13.94,16.665,53,8.9981,31,193,224 +2011-12-03 19:00:00,4,0,0,1,12.3,15.91,61,6.0032,31,144,175 +2011-12-03 20:00:00,4,0,0,1,12.3,15.91,61,6.0032,17,110,127 +2011-12-03 21:00:00,4,0,0,2,12.3,15.91,61,6.0032,5,104,109 +2011-12-03 22:00:00,4,0,0,2,13.12,16.665,61,6.0032,17,97,114 +2011-12-03 23:00:00,4,0,0,1,12.3,15.15,70,8.9981,12,73,85 +2011-12-04 00:00:00,4,0,0,1,12.3,15.91,70,7.0015,19,64,83 +2011-12-04 01:00:00,4,0,0,1,12.3,15.91,75,6.0032,20,54,74 +2011-12-04 02:00:00,4,0,0,1,10.66,15.15,81,0,11,51,62 +2011-12-04 03:00:00,4,0,0,1,11.48,15.91,75,0,7,34,41 +2011-12-04 04:00:00,4,0,0,1,10.66,15.15,87,0,2,9,11 +2011-12-04 05:00:00,4,0,0,1,10.66,15.15,81,0,2,2,4 +2011-12-04 06:00:00,4,0,0,1,9.84,14.395,93,0,1,3,4 +2011-12-04 07:00:00,4,0,0,1,10.66,15.15,87,0,3,23,26 +2011-12-04 08:00:00,4,0,0,1,10.66,15.15,87,0,7,48,55 +2011-12-04 09:00:00,4,0,0,1,12.3,16.665,81,0,12,114,126 +2011-12-04 10:00:00,4,0,0,1,13.12,16.665,81,8.9981,36,180,216 +2011-12-04 11:00:00,4,0,0,1,13.94,16.665,81,11.0014,48,206,254 +2011-12-04 12:00:00,4,0,0,1,14.76,17.425,81,11.0014,82,247,329 +2011-12-04 13:00:00,4,0,0,1,16.4,20.455,66,15.0013,88,269,357 +2011-12-04 14:00:00,4,0,0,1,17.22,21.21,62,8.9981,77,246,323 +2011-12-04 15:00:00,4,0,0,1,17.22,21.21,62,12.998,69,227,296 +2011-12-04 16:00:00,4,0,0,1,17.22,21.21,58,15.0013,64,266,330 +2011-12-04 17:00:00,4,0,0,1,15.58,19.695,76,8.9981,38,207,245 +2011-12-04 18:00:00,4,0,0,1,15.58,19.695,71,0,10,161,171 +2011-12-04 19:00:00,4,0,0,1,15.58,19.695,76,0,15,158,173 +2011-12-04 20:00:00,4,0,0,1,14.76,17.425,76,8.9981,8,116,124 +2011-12-04 21:00:00,4,0,0,1,14.76,18.18,81,7.0015,7,65,72 +2011-12-04 22:00:00,4,0,0,1,13.94,17.425,87,7.0015,5,59,64 +2011-12-04 23:00:00,4,0,0,1,13.94,17.425,87,7.0015,3,42,45 +2011-12-05 00:00:00,4,0,1,1,13.12,16.665,87,6.0032,3,21,24 +2011-12-05 01:00:00,4,0,1,1,13.12,17.425,87,0,2,10,12 +2011-12-05 02:00:00,4,0,1,1,13.12,17.425,87,0,0,8,8 +2011-12-05 03:00:00,4,0,1,1,13.12,17.425,87,0,0,2,2 +2011-12-05 04:00:00,4,0,1,1,12.3,15.91,87,7.0015,0,7,7 +2011-12-05 05:00:00,4,0,1,1,12.3,15.91,87,7.0015,1,24,25 +2011-12-05 06:00:00,4,0,1,1,12.3,15.91,93,6.0032,1,89,90 +2011-12-05 07:00:00,4,0,1,1,13.12,17.425,90,0,9,274,283 +2011-12-05 08:00:00,4,0,1,1,13.12,17.425,93,0,12,392,404 +2011-12-05 09:00:00,4,0,1,2,14.76,18.18,87,6.0032,12,178,190 +2011-12-05 10:00:00,4,0,1,2,14.76,18.18,87,6.0032,9,78,87 +2011-12-05 11:00:00,4,0,1,2,14.76,18.18,87,6.0032,17,106,123 +2011-12-05 12:00:00,4,0,1,2,16.4,20.455,76,7.0015,29,125,154 +2011-12-05 13:00:00,4,0,1,2,17.22,21.21,71,6.0032,18,153,171 +2011-12-05 14:00:00,4,0,1,2,18.86,22.725,67,0,7,126,133 +2011-12-05 15:00:00,4,0,1,2,18.86,22.725,72,6.0032,16,132,148 +2011-12-05 16:00:00,4,0,1,1,20.5,24.24,63,6.0032,10,238,248 +2011-12-05 17:00:00,4,0,1,1,17.22,21.21,77,0,16,430,446 +2011-12-05 18:00:00,4,0,1,1,18.04,21.97,77,0,13,386,399 +2011-12-05 19:00:00,4,0,1,2,18.86,22.725,77,0,13,295,308 +2011-12-05 20:00:00,4,0,1,2,18.86,22.725,82,7.0015,15,190,205 +2011-12-05 21:00:00,4,0,1,2,18.04,21.97,88,6.0032,10,166,176 +2011-12-05 22:00:00,4,0,1,2,18.04,21.97,88,8.9981,12,94,106 +2011-12-05 23:00:00,4,0,1,2,18.86,22.725,88,8.9981,8,54,62 +2011-12-06 00:00:00,4,0,1,2,20.5,24.24,77,19.9995,3,25,28 +2011-12-06 01:00:00,4,0,1,2,18.86,22.725,88,19.9995,2,14,16 +2011-12-06 02:00:00,4,0,1,2,18.86,22.725,87,12.998,0,3,3 +2011-12-06 03:00:00,4,0,1,2,18.86,22.725,87,12.998,0,3,3 +2011-12-06 04:00:00,4,0,1,3,18.86,22.725,88,15.0013,0,7,7 +2011-12-06 05:00:00,4,0,1,3,18.86,22.725,88,15.0013,0,20,20 +2011-12-06 06:00:00,4,0,1,2,18.04,21.97,94,19.0012,5,81,86 +2011-12-06 07:00:00,4,0,1,2,18.86,22.725,94,12.998,7,227,234 +2011-12-06 08:00:00,4,0,1,2,18.86,22.725,94,12.998,13,401,414 +2011-12-06 09:00:00,4,0,1,2,18.86,22.725,94,15.0013,4,200,204 +2011-12-06 10:00:00,4,0,1,3,18.86,22.725,94,19.0012,6,44,50 +2011-12-06 11:00:00,4,0,1,3,18.86,22.725,94,16.9979,4,28,32 +2011-12-06 12:00:00,4,0,1,3,18.86,22.725,100,15.0013,5,50,55 +2011-12-06 13:00:00,4,0,1,3,18.86,22.725,100,12.998,6,65,71 +2011-12-06 14:00:00,4,0,1,3,19.68,23.485,100,15.0013,6,69,75 +2011-12-06 15:00:00,4,0,1,3,20.5,24.24,100,12.998,2,43,45 +2011-12-06 16:00:00,4,0,1,3,18.86,22.725,100,16.9979,4,84,88 +2011-12-06 17:00:00,4,0,1,2,18.86,22.725,100,15.0013,13,249,262 +2011-12-06 18:00:00,4,0,1,2,18.86,22.725,100,19.0012,17,287,304 +2011-12-06 19:00:00,4,0,1,3,18.86,22.725,100,19.9995,10,223,233 +2011-12-06 20:00:00,4,0,1,3,18.86,22.725,100,19.9995,3,107,110 +2011-12-06 21:00:00,4,0,1,2,18.04,21.97,100,12.998,6,108,114 +2011-12-06 22:00:00,4,0,1,3,18.86,22.725,100,11.0014,5,82,87 +2011-12-06 23:00:00,4,0,1,3,18.86,22.725,100,11.0014,5,48,53 +2011-12-07 00:00:00,4,0,1,1,18.04,21.97,100,12.998,3,30,33 +2011-12-07 01:00:00,4,0,1,2,18.86,22.725,100,16.9979,4,9,13 +2011-12-07 02:00:00,4,0,1,3,18.86,22.725,100,15.0013,2,4,6 +2011-12-07 03:00:00,4,0,1,3,18.86,22.725,100,15.0013,0,3,3 +2011-12-07 04:00:00,4,0,1,3,18.86,22.725,100,11.0014,0,1,1 +2011-12-07 05:00:00,4,0,1,3,18.86,22.725,100,11.0014,0,3,3 +2011-12-07 06:00:00,4,0,1,3,19.68,23.485,100,27.9993,0,18,18 +2011-12-07 07:00:00,4,0,1,3,18.04,21.97,100,7.0015,3,43,46 +2011-12-07 08:00:00,4,0,1,3,18.04,21.97,100,0,6,80,86 +2011-12-07 09:00:00,4,0,1,3,18.04,21.97,100,16.9979,0,64,64 +2011-12-07 10:00:00,4,0,1,3,18.04,21.97,100,6.0032,1,32,33 +2011-12-07 11:00:00,4,0,1,3,18.04,21.97,100,6.0032,3,47,50 +2011-12-07 12:00:00,4,0,1,3,18.04,21.97,100,8.9981,4,29,33 +2011-12-07 13:00:00,4,0,1,3,18.04,21.97,100,12.998,5,28,33 +2011-12-07 14:00:00,4,0,1,3,18.04,21.97,100,12.998,1,24,25 +2011-12-07 15:00:00,4,0,1,3,17.22,21.21,94,15.0013,5,25,30 +2011-12-07 16:00:00,4,0,1,3,17.22,21.21,94,12.998,3,28,31 +2011-12-07 17:00:00,4,0,1,3,16.4,20.455,100,22.0028,4,48,52 +2011-12-07 18:00:00,4,0,1,3,16.4,20.455,94,19.9995,3,48,51 +2011-12-07 19:00:00,4,0,1,3,13.94,14.395,87,43.0006,2,31,33 +2011-12-07 20:00:00,4,0,1,3,13.94,14.395,87,43.0006,1,25,26 +2011-12-07 21:00:00,4,0,1,3,12.3,12.88,87,35.0008,0,6,6 +2011-12-07 22:00:00,4,0,1,3,9.84,9.85,93,30.0026,0,13,13 +2011-12-07 23:00:00,4,0,1,1,9.84,10.605,93,26.0027,0,16,16 +2011-12-08 00:00:00,4,0,1,2,10.66,11.365,87,19.9995,0,21,21 +2011-12-08 01:00:00,4,0,1,1,10.66,11.365,81,23.9994,1,6,7 +2011-12-08 02:00:00,4,0,1,1,11.48,13.635,65,15.0013,0,4,4 +2011-12-08 03:00:00,4,0,1,1,10.66,11.365,60,19.9995,0,1,1 +2011-12-08 04:00:00,4,0,1,2,9.84,9.85,60,31.0009,0,2,2 +2011-12-08 05:00:00,4,0,1,1,9.02,10.605,64,15.0013,0,12,12 +2011-12-08 06:00:00,4,0,1,1,9.02,10.605,55,19.0012,0,71,71 +2011-12-08 07:00:00,4,0,1,1,9.02,10.605,60,15.0013,11,233,244 +2011-12-08 08:00:00,4,0,1,1,9.02,10.605,55,19.0012,11,418,429 +2011-12-08 09:00:00,4,0,1,1,9.84,10.605,52,26.0027,7,218,225 +2011-12-08 10:00:00,4,0,1,1,10.66,11.365,52,22.0028,1,109,110 +2011-12-08 11:00:00,4,0,1,1,11.48,13.635,52,16.9979,6,100,106 +2011-12-08 12:00:00,4,0,1,1,11.48,12.88,52,22.0028,8,148,156 +2011-12-08 13:00:00,4,0,1,1,12.3,13.635,49,23.9994,9,115,124 +2011-12-08 14:00:00,4,0,1,1,13.12,15.15,45,16.9979,16,121,137 +2011-12-08 15:00:00,4,0,1,1,13.12,16.665,45,8.9981,19,98,117 +2011-12-08 16:00:00,4,0,1,1,13.12,15.91,45,12.998,7,201,208 +2011-12-08 17:00:00,4,0,1,1,12.3,15.91,49,7.0015,10,321,331 +2011-12-08 18:00:00,4,0,1,1,11.48,13.635,52,15.0013,12,306,318 +2011-12-08 19:00:00,4,0,1,1,10.66,13.635,56,7.0015,12,220,232 +2011-12-08 20:00:00,4,0,1,1,10.66,13.635,60,7.0015,5,170,175 +2011-12-08 21:00:00,4,0,1,1,11.48,15.15,61,6.0032,4,135,139 +2011-12-08 22:00:00,4,0,1,1,10.66,13.635,65,8.9981,8,84,92 +2011-12-08 23:00:00,4,0,1,1,9.84,12.88,70,7.0015,3,58,61 +2011-12-09 00:00:00,4,0,1,1,9.84,14.395,65,0,8,26,34 +2011-12-09 01:00:00,4,0,1,1,9.84,14.395,65,0,2,12,14 +2011-12-09 02:00:00,4,0,1,1,9.84,14.395,70,0,2,10,12 +2011-12-09 03:00:00,4,0,1,1,9.02,13.635,80,0,1,5,6 +2011-12-09 04:00:00,4,0,1,1,9.02,13.635,80,0,1,1,2 +2011-12-09 05:00:00,4,0,1,1,9.02,13.635,80,0,0,20,20 +2011-12-09 06:00:00,4,0,1,1,9.02,12.88,80,6.0032,1,62,63 +2011-12-09 07:00:00,4,0,1,1,9.02,12.88,75,6.0032,4,195,199 +2011-12-09 08:00:00,4,0,1,1,9.84,14.395,81,0,7,378,385 +2011-12-09 09:00:00,4,0,1,1,10.66,14.395,81,6.0032,8,256,264 +2011-12-09 10:00:00,4,0,1,2,12.3,15.15,70,11.0014,11,115,126 +2011-12-09 11:00:00,4,0,1,1,13.12,15.15,70,16.9979,15,121,136 +2011-12-09 12:00:00,4,0,1,1,14.76,16.665,57,19.9995,27,146,173 +2011-12-09 13:00:00,4,0,1,1,15.58,19.695,50,12.998,27,141,168 +2011-12-09 14:00:00,4,0,1,1,15.58,19.695,46,19.0012,24,163,187 +2011-12-09 15:00:00,4,0,1,1,15.58,19.695,46,19.0012,29,160,189 +2011-12-09 16:00:00,4,0,1,1,14.76,17.425,62,8.9981,24,226,250 +2011-12-09 17:00:00,4,0,1,1,13.94,17.425,66,7.0015,10,352,362 +2011-12-09 18:00:00,4,0,1,1,13.94,18.18,61,0,10,308,318 +2011-12-09 19:00:00,4,0,1,1,13.94,18.18,61,0,10,189,199 +2011-12-09 20:00:00,4,0,1,1,12.3,16.665,81,0,10,140,150 +2011-12-09 21:00:00,4,0,1,1,12.3,16.665,75,0,9,131,140 +2011-12-09 22:00:00,4,0,1,1,11.48,15.91,87,0,15,114,129 +2011-12-09 23:00:00,4,0,1,1,11.48,15.91,81,0,6,88,94 +2011-12-10 00:00:00,4,0,0,2,10.66,13.635,81,7.0015,11,66,77 +2011-12-10 01:00:00,4,0,0,2,10.66,12.88,70,11.0014,11,55,66 +2011-12-10 02:00:00,4,0,0,2,11.48,15.15,61,6.0032,12,48,60 +2011-12-10 03:00:00,4,0,0,2,11.48,15.15,61,6.0032,5,20,25 +2011-12-10 04:00:00,4,0,0,2,10.66,13.635,65,7.0015,0,3,3 +2011-12-10 05:00:00,4,0,0,1,10.66,12.88,60,11.0014,0,6,6 +2011-12-10 06:00:00,4,0,0,1,9.84,12.88,65,7.0015,1,10,11 +2011-12-10 07:00:00,4,0,0,1,9.84,11.365,65,12.998,0,11,11 +2011-12-10 08:00:00,4,0,0,1,10.66,13.635,65,8.9981,5,68,73 +2011-12-10 09:00:00,4,0,0,1,11.48,12.88,61,19.0012,15,134,149 +2011-12-10 10:00:00,4,0,0,1,13.12,15.15,57,16.9979,31,161,192 +2011-12-10 11:00:00,4,0,0,1,13.12,14.395,53,27.9993,44,192,236 +2011-12-10 12:00:00,4,0,0,1,13.12,14.395,45,27.9993,48,235,283 +2011-12-10 13:00:00,4,0,0,1,13.94,15.15,34,27.9993,47,239,286 +2011-12-10 14:00:00,4,0,0,1,13.94,15.15,31,22.0028,51,242,293 +2011-12-10 15:00:00,4,0,0,1,13.94,15.15,34,23.9994,60,239,299 +2011-12-10 16:00:00,4,0,0,1,13.12,14.395,31,26.0027,58,183,241 +2011-12-10 17:00:00,4,0,0,1,11.48,12.88,36,22.0028,34,151,185 +2011-12-10 18:00:00,4,0,0,1,10.66,12.88,38,15.0013,28,144,172 +2011-12-10 19:00:00,4,0,0,1,10.66,12.12,38,19.0012,15,139,154 +2011-12-10 20:00:00,4,0,0,1,9.84,11.365,35,15.0013,10,114,124 +2011-12-10 21:00:00,4,0,0,1,9.02,10.605,44,15.0013,4,79,83 +2011-12-10 22:00:00,4,0,0,1,9.02,11.365,41,8.9981,7,88,95 +2011-12-10 23:00:00,4,0,0,1,8.2,10.605,47,11.0014,5,61,66 +2011-12-11 00:00:00,4,0,0,1,8.2,9.85,51,15.0013,5,69,74 +2011-12-11 01:00:00,4,0,0,1,6.56,7.575,59,15.0013,8,54,62 +2011-12-11 02:00:00,4,0,0,1,7.38,8.335,55,16.9979,5,47,52 +2011-12-11 03:00:00,4,0,0,1,6.56,9.09,59,8.9981,2,17,19 +2011-12-11 04:00:00,4,0,0,1,6.56,8.335,59,11.0014,0,5,5 +2011-12-11 05:00:00,4,0,0,1,7.38,10.605,59,7.0015,0,6,6 +2011-12-11 06:00:00,4,0,0,1,6.56,11.365,59,0,0,10,10 +2011-12-11 07:00:00,4,0,0,1,7.38,12.12,55,0,1,30,31 +2011-12-11 08:00:00,4,0,0,1,6.56,11.365,69,0,4,68,72 +2011-12-11 09:00:00,4,0,0,1,8.2,12.88,59,0,19,88,107 +2011-12-11 10:00:00,4,0,0,1,9.84,14.395,44,0,30,164,194 +2011-12-11 11:00:00,4,0,0,1,10.66,15.15,35,0,31,166,197 +2011-12-11 12:00:00,4,0,0,1,10.66,15.15,35,0,42,246,288 +2011-12-11 13:00:00,4,0,0,1,12.3,16.665,31,0,44,224,268 +2011-12-11 14:00:00,4,0,0,1,12.3,16.665,28,0,44,198,242 +2011-12-11 15:00:00,4,0,0,1,12.3,16.665,26,0,47,219,266 +2011-12-11 16:00:00,4,0,0,1,12.3,16.665,26,0,32,174,206 +2011-12-11 17:00:00,4,0,0,1,11.48,15.91,30,0,13,150,163 +2011-12-11 18:00:00,4,0,0,1,9.84,11.365,48,12.998,12,151,163 +2011-12-11 19:00:00,4,0,0,1,9.02,11.365,55,12.998,7,98,105 +2011-12-11 20:00:00,4,0,0,1,9.02,12.12,55,7.0015,10,62,72 +2011-12-11 21:00:00,4,0,0,1,9.02,13.635,55,0,10,53,63 +2011-12-11 22:00:00,4,0,0,1,9.02,13.635,55,0,7,36,43 +2011-12-11 23:00:00,4,0,0,1,8.2,12.88,69,0,4,31,35 +2011-12-12 00:00:00,4,0,1,1,8.2,11.365,69,6.0032,4,16,20 +2011-12-12 01:00:00,4,0,1,1,8.2,12.88,69,0,0,9,9 +2011-12-12 02:00:00,4,0,1,1,8.2,12.88,69,0,0,4,4 +2011-12-12 03:00:00,4,0,1,1,7.38,12.12,74,0,0,2,2 +2011-12-12 04:00:00,4,0,1,1,7.38,12.12,74,0,0,3,3 +2011-12-12 05:00:00,4,0,1,1,6.56,11.365,80,0,0,21,21 +2011-12-12 06:00:00,4,0,1,1,6.56,9.09,80,7.0015,1,63,64 +2011-12-12 07:00:00,4,0,1,1,5.74,7.575,86,8.9981,4,231,235 +2011-12-12 08:00:00,4,0,1,2,6.56,9.09,80,7.0015,7,378,385 +2011-12-12 09:00:00,4,0,1,2,7.38,10.605,74,6.0032,12,208,220 +2011-12-12 10:00:00,4,0,1,2,9.02,12.12,69,7.0015,14,91,105 +2011-12-12 11:00:00,4,0,1,2,10.66,14.395,60,6.0032,15,100,115 +2011-12-12 12:00:00,4,0,1,1,11.48,14.395,52,7.0015,7,138,145 +2011-12-12 13:00:00,4,0,1,2,12.3,15.91,52,7.0015,13,153,166 +2011-12-12 14:00:00,4,0,1,2,13.12,16.665,53,8.9981,16,95,111 +2011-12-12 15:00:00,4,0,1,2,13.12,16.665,57,7.0015,8,124,132 +2011-12-12 16:00:00,4,0,1,2,13.12,16.665,57,6.0032,5,209,214 +2011-12-12 17:00:00,4,0,1,2,12.3,16.665,56,0,7,352,359 +2011-12-12 18:00:00,4,0,1,1,12.3,15.91,56,6.0032,8,349,357 +2011-12-12 19:00:00,4,0,1,1,11.48,15.15,61,6.0032,9,232,241 +2011-12-12 20:00:00,4,0,1,1,12.3,15.91,56,6.0032,8,157,165 +2011-12-12 21:00:00,4,0,1,1,10.66,15.15,81,0,2,119,121 +2011-12-12 22:00:00,4,0,1,1,10.66,15.15,70,0,0,71,71 +2011-12-12 23:00:00,4,0,1,1,9.84,14.395,75,0,3,42,45 +2011-12-13 00:00:00,4,0,1,1,9.02,13.635,80,0,1,16,17 +2011-12-13 01:00:00,4,0,1,1,8.2,12.88,80,0,0,4,4 +2011-12-13 02:00:00,4,0,1,1,8.2,12.88,80,0,1,1,2 +2011-12-13 03:00:00,4,0,1,1,7.38,12.12,80,0,0,3,3 +2011-12-13 04:00:00,4,0,1,1,8.2,12.88,80,0,0,4,4 +2011-12-13 05:00:00,4,0,1,1,7.38,12.12,86,0,0,20,20 +2011-12-13 06:00:00,4,0,1,1,8.2,12.88,80,0,0,92,92 +2011-12-13 07:00:00,4,0,1,1,6.56,8.335,80,11.0014,2,221,223 +2011-12-13 08:00:00,4,0,1,1,8.2,11.365,69,7.0015,9,391,400 +2011-12-13 09:00:00,4,0,1,1,10.66,12.88,60,11.0014,10,223,233 +2011-12-13 10:00:00,4,0,1,1,12.3,15.15,52,11.0014,3,99,102 +2011-12-13 11:00:00,4,0,1,1,13.94,15.91,46,16.9979,9,115,124 +2011-12-13 12:00:00,4,0,1,1,14.76,16.665,43,23.9994,20,147,167 +2011-12-13 13:00:00,4,0,1,1,16.4,20.455,37,22.0028,7,120,127 +2011-12-13 14:00:00,4,0,1,1,16.4,20.455,37,16.9979,18,116,134 +2011-12-13 15:00:00,4,0,1,1,16.4,20.455,35,16.9979,7,144,151 +2011-12-13 16:00:00,4,0,1,1,15.58,19.695,37,16.9979,13,194,207 +2011-12-13 17:00:00,4,0,1,1,14.76,17.425,40,12.998,17,381,398 +2011-12-13 18:00:00,4,0,1,1,13.94,15.91,42,15.0013,12,370,382 +2011-12-13 19:00:00,4,0,1,1,13.12,15.91,49,11.0014,5,262,267 +2011-12-13 20:00:00,4,0,1,1,13.12,15.91,49,11.0014,7,154,161 +2011-12-13 21:00:00,4,0,1,1,12.3,15.15,52,11.0014,5,134,139 +2011-12-13 22:00:00,4,0,1,1,12.3,15.15,52,11.0014,5,102,107 +2011-12-13 23:00:00,4,0,1,1,10.66,15.15,70,0,4,55,59 +2011-12-14 00:00:00,4,0,1,1,10.66,15.15,75,0,0,22,22 +2011-12-14 01:00:00,4,0,1,1,10.66,15.15,75,0,0,8,8 +2011-12-14 02:00:00,4,0,1,1,10.66,15.15,75,0,0,2,2 +2011-12-14 03:00:00,4,0,1,1,11.48,15.91,65,0,0,3,3 +2011-12-14 04:00:00,4,0,1,1,10.66,15.15,75,0,0,4,4 +2011-12-14 05:00:00,4,0,1,2,10.66,15.15,81,0,0,26,26 +2011-12-14 06:00:00,4,0,1,2,10.66,15.15,87,0,0,87,87 +2011-12-14 07:00:00,4,0,1,1,11.48,15.91,75,0,4,243,247 +2011-12-14 08:00:00,4,0,1,2,10.66,15.15,87,0,9,458,467 +2011-12-14 09:00:00,4,0,1,2,12.3,16.665,61,0,9,230,239 +2011-12-14 10:00:00,4,0,1,2,13.12,17.425,57,0,9,133,142 +2011-12-14 11:00:00,4,0,1,2,13.94,18.18,55,0,12,103,115 +2011-12-14 12:00:00,4,0,1,2,14.76,18.18,57,6.0032,6,138,144 +2011-12-14 13:00:00,4,0,1,2,14.76,18.18,57,7.0015,14,119,133 +2011-12-14 14:00:00,4,0,1,2,15.58,19.695,54,6.0032,17,134,151 +2011-12-14 15:00:00,4,0,1,2,15.58,19.695,54,7.0015,24,143,167 +2011-12-14 16:00:00,4,0,1,2,15.58,19.695,54,7.0015,12,233,245 +2011-12-14 17:00:00,4,0,1,2,14.76,18.18,57,7.0015,19,377,396 +2011-12-14 18:00:00,4,0,1,2,14.76,17.425,62,11.0014,11,379,390 +2011-12-14 19:00:00,4,0,1,2,14.76,18.18,62,7.0015,9,259,268 +2011-12-14 20:00:00,4,0,1,2,13.94,17.425,66,7.0015,6,169,175 +2011-12-14 21:00:00,4,0,1,2,13.94,16.665,66,11.0014,9,145,154 +2011-12-14 22:00:00,4,0,1,1,13.94,16.665,66,11.0014,5,99,104 +2011-12-14 23:00:00,4,0,1,1,13.12,15.91,70,11.0014,3,48,51 +2011-12-15 00:00:00,4,0,1,1,13.12,15.91,70,11.0014,5,45,50 +2011-12-15 01:00:00,4,0,1,2,13.12,15.91,70,11.0014,5,15,20 +2011-12-15 02:00:00,4,0,1,2,13.12,16.665,70,8.9981,2,5,7 +2011-12-15 03:00:00,4,0,1,2,13.12,16.665,70,8.9981,1,2,3 +2011-12-15 04:00:00,4,0,1,2,13.12,15.15,70,15.0013,0,6,6 +2011-12-15 05:00:00,4,0,1,2,13.12,15.15,70,19.0012,0,24,24 +2011-12-15 06:00:00,4,0,1,1,13.12,15.91,66,12.998,2,90,92 +2011-12-15 07:00:00,4,0,1,1,13.12,15.91,70,12.998,6,252,258 +2011-12-15 08:00:00,4,0,1,2,13.94,15.91,66,15.0013,8,449,457 +2011-12-15 09:00:00,4,0,1,2,14.76,16.665,62,19.0012,6,274,280 +2011-12-15 10:00:00,4,0,1,2,16.4,20.455,58,19.9995,4,105,109 +2011-12-15 11:00:00,4,0,1,2,16.4,20.455,62,27.9993,9,126,135 +2011-12-15 12:00:00,4,0,1,2,18.86,22.725,59,32.9975,17,140,157 +2011-12-15 13:00:00,4,0,1,2,20.5,24.24,55,23.9994,14,150,164 +2011-12-15 14:00:00,4,0,1,2,21.32,25,52,22.0028,8,124,132 +2011-12-15 15:00:00,4,0,1,3,21.32,25,55,15.0013,6,76,82 +2011-12-15 16:00:00,4,0,1,3,18.86,22.725,72,11.0014,7,124,131 +2011-12-15 17:00:00,4,0,1,2,21.32,25,59,19.0012,14,310,324 +2011-12-15 18:00:00,4,0,1,2,21.32,25,59,19.9995,14,363,377 +2011-12-15 19:00:00,4,0,1,2,21.32,25,59,19.0012,13,274,287 +2011-12-15 20:00:00,4,0,1,1,21.32,25,59,22.0028,12,209,221 +2011-12-15 21:00:00,4,0,1,1,20.5,24.24,63,19.9995,10,145,155 +2011-12-15 22:00:00,4,0,1,1,21.32,25,63,22.0028,8,116,124 +2011-12-15 23:00:00,4,0,1,1,21.32,25,63,22.0028,10,104,114 +2011-12-16 00:00:00,4,0,1,1,20.5,24.24,72,22.0028,12,60,72 +2011-12-16 01:00:00,4,0,1,1,20.5,24.24,72,15.0013,3,28,31 +2011-12-16 02:00:00,4,0,1,1,19.68,23.485,77,7.0015,0,23,23 +2011-12-16 03:00:00,4,0,1,1,18.86,22.725,82,8.9981,2,3,5 +2011-12-16 04:00:00,4,0,1,2,20.5,24.24,59,12.998,1,4,5 +2011-12-16 05:00:00,4,0,1,1,19.68,23.485,44,26.0027,0,26,26 +2011-12-16 06:00:00,4,0,1,2,18.04,21.97,33,19.9995,2,80,82 +2011-12-16 07:00:00,4,0,1,2,15.58,19.695,46,19.9995,5,226,231 +2011-12-16 08:00:00,4,0,1,1,14.76,16.665,46,27.9993,10,449,459 +2011-12-16 09:00:00,4,0,1,1,14.76,16.665,46,26.0027,8,235,243 +2011-12-16 10:00:00,4,0,1,1,13.94,15.15,46,19.9995,10,122,132 +2011-12-16 11:00:00,4,0,1,2,13.94,15.15,42,19.9995,9,135,144 +2011-12-16 12:00:00,4,0,1,2,13.94,15.15,42,23.9994,10,163,173 +2011-12-16 13:00:00,4,0,1,2,13.94,15.15,39,23.9994,12,125,137 +2011-12-16 14:00:00,4,0,1,2,13.94,15.91,42,15.0013,13,115,128 +2011-12-16 15:00:00,4,0,1,2,13.12,15.15,45,19.9995,12,141,153 +2011-12-16 16:00:00,4,0,1,2,13.12,15.15,45,15.0013,12,212,224 +2011-12-16 17:00:00,4,0,1,2,13.12,15.15,45,19.0012,13,352,365 +2011-12-16 18:00:00,4,0,1,2,13.12,15.15,45,16.9979,10,285,295 +2011-12-16 19:00:00,4,0,1,2,13.12,15.15,45,15.0013,11,203,214 +2011-12-16 20:00:00,4,0,1,2,13.12,15.91,45,12.998,6,146,152 +2011-12-16 21:00:00,4,0,1,2,13.12,15.91,45,11.0014,7,95,102 +2011-12-16 22:00:00,4,0,1,2,12.3,15.15,49,11.0014,6,100,106 +2011-12-16 23:00:00,4,0,1,2,12.3,15.15,49,8.9981,4,71,75 +2011-12-17 00:00:00,4,0,0,1,12.3,14.395,49,19.0012,3,59,62 +2011-12-17 01:00:00,4,0,0,2,12.3,14.395,52,16.9979,4,39,43 +2011-12-17 02:00:00,4,0,0,2,11.48,13.635,56,15.0013,11,47,58 +2011-12-17 03:00:00,4,0,0,1,10.66,12.88,60,12.998,4,22,26 +2011-12-17 04:00:00,4,0,0,1,9.84,12.12,65,11.0014,0,9,9 +2011-12-17 05:00:00,4,0,0,2,10.66,12.88,60,12.998,2,7,9 +2011-12-17 06:00:00,4,0,0,2,10.66,12.12,56,19.0012,0,17,17 +2011-12-17 07:00:00,4,0,0,2,10.66,12.88,56,15.0013,0,20,20 +2011-12-17 08:00:00,4,0,0,2,10.66,12.88,56,15.0013,4,55,59 +2011-12-17 09:00:00,4,0,0,2,10.66,12.12,56,16.9979,5,95,100 +2011-12-17 10:00:00,4,0,0,2,10.66,12.12,52,19.0012,10,171,181 +2011-12-17 11:00:00,4,0,0,2,11.48,12.88,45,22.0028,21,188,209 +2011-12-17 12:00:00,4,0,0,2,11.48,12.88,45,19.0012,28,216,244 +2011-12-17 13:00:00,4,0,0,2,11.48,13.635,48,16.9979,32,204,236 +2011-12-17 14:00:00,4,0,0,1,11.48,12.88,45,23.9994,30,207,237 +2011-12-17 15:00:00,4,0,0,1,11.48,12.88,45,19.0012,33,195,228 +2011-12-17 16:00:00,4,0,0,1,11.48,13.635,45,15.0013,30,192,222 +2011-12-17 17:00:00,4,0,0,1,10.66,12.88,48,15.0013,12,153,165 +2011-12-17 18:00:00,4,0,0,1,10.66,11.365,48,26.0027,7,150,157 +2011-12-17 19:00:00,4,0,0,3,9.84,10.605,65,22.0028,11,95,106 +2011-12-17 20:00:00,4,0,0,1,9.02,10.605,69,16.9979,7,99,106 +2011-12-17 21:00:00,4,0,0,1,8.2,10.605,75,11.0014,8,88,96 +2011-12-17 22:00:00,4,0,0,1,8.2,10.605,75,11.0014,7,73,80 +2011-12-17 23:00:00,4,0,0,1,8.2,11.365,75,0,6,63,69 +2011-12-18 00:00:00,4,0,0,1,8.2,10.605,75,8.9981,7,64,71 +2011-12-18 01:00:00,4,0,0,1,8.2,11.365,69,7.0015,3,43,46 +2011-12-18 02:00:00,4,0,0,1,9.02,12.12,55,7.0015,2,39,41 +2011-12-18 03:00:00,4,0,0,1,9.02,10.605,55,15.0013,2,16,18 +2011-12-18 04:00:00,4,0,0,1,9.02,10.605,55,15.0013,0,1,1 +2011-12-18 05:00:00,4,0,0,1,8.2,11.365,59,7.0015,1,4,5 +2011-12-18 06:00:00,4,0,0,1,8.2,10.605,59,8.9981,0,3,3 +2011-12-18 07:00:00,4,0,0,1,8.2,10.605,59,11.0014,1,11,12 +2011-12-18 08:00:00,4,0,0,1,8.2,12.88,69,0,1,31,32 +2011-12-18 09:00:00,4,0,0,1,9.02,11.365,64,11.0014,6,75,81 +2011-12-18 10:00:00,4,0,0,1,9.84,11.365,60,16.9979,7,122,129 +2011-12-18 11:00:00,4,0,0,2,9.84,11.365,60,15.0013,20,168,188 +2011-12-18 12:00:00,4,0,0,1,10.66,12.88,60,15.0013,26,202,228 +2011-12-18 13:00:00,4,0,0,1,12.3,13.635,49,19.9995,18,210,228 +2011-12-18 14:00:00,4,0,0,1,12.3,14.395,49,19.0012,19,200,219 +2011-12-18 15:00:00,4,0,0,1,13.12,15.15,45,19.0012,23,184,207 +2011-12-18 16:00:00,4,0,0,1,11.48,13.635,48,16.9979,27,207,234 +2011-12-18 17:00:00,4,0,0,1,11.48,13.635,46,11.0014,10,126,136 +2011-12-18 18:00:00,4,0,0,1,11.48,13.635,45,12.998,15,123,138 +2011-12-18 19:00:00,4,0,0,1,10.66,13.635,52,8.9981,5,130,135 +2011-12-18 20:00:00,4,0,0,1,9.84,12.88,60,7.0015,10,94,104 +2011-12-18 21:00:00,4,0,0,1,9.02,13.635,64,0,9,80,89 +2011-12-18 22:00:00,4,0,0,1,9.02,11.365,75,12.998,2,47,49 +2011-12-18 23:00:00,4,0,0,1,8.2,11.365,75,7.0015,6,31,37 +2011-12-19 00:00:00,4,0,1,1,8.2,11.365,75,6.0032,3,14,17 +2011-12-19 01:00:00,4,0,1,1,7.38,10.605,80,6.0032,3,8,11 +2011-12-19 02:00:00,4,0,1,1,7.38,10.605,80,6.0032,0,3,3 +2011-12-19 03:00:00,4,0,1,1,6.56,9.85,86,6.0032,0,3,3 +2011-12-19 04:00:00,4,0,1,1,6.56,9.09,86,8.9981,0,4,4 +2011-12-19 05:00:00,4,0,1,1,5.74,8.335,93,7.0015,0,21,21 +2011-12-19 06:00:00,4,0,1,1,6.56,9.09,86,7.0015,0,68,68 +2011-12-19 07:00:00,4,0,1,1,7.38,10.605,74,7.0015,4,187,191 +2011-12-19 08:00:00,4,0,1,1,8.2,9.85,75,12.998,8,389,397 +2011-12-19 09:00:00,4,0,1,1,9.02,10.605,69,15.0013,17,166,183 +2011-12-19 10:00:00,4,0,1,1,9.84,11.365,67,12.998,12,96,108 +2011-12-19 11:00:00,4,0,1,1,10.66,12.12,65,16.9979,22,105,127 +2011-12-19 12:00:00,4,0,1,1,12.3,13.635,61,22.0028,13,128,141 +2011-12-19 13:00:00,4,0,1,1,13.94,15.15,49,22.0028,15,127,142 +2011-12-19 14:00:00,4,0,1,1,14.76,17.425,46,15.0013,30,107,137 +2011-12-19 15:00:00,4,0,1,1,15.58,19.695,46,11.0014,24,135,159 +2011-12-19 16:00:00,4,0,1,1,16.4,20.455,40,16.9979,19,189,208 +2011-12-19 17:00:00,4,0,1,1,15.58,19.695,46,12.998,16,362,378 +2011-12-19 18:00:00,4,0,1,1,14.76,17.425,50,12.998,11,343,354 +2011-12-19 19:00:00,4,0,1,2,14.76,17.425,53,11.0014,17,234,251 +2011-12-19 20:00:00,4,0,1,1,16.4,20.455,40,11.0014,9,197,206 +2011-12-19 21:00:00,4,0,1,2,14.76,17.425,53,8.9981,15,112,127 +2011-12-19 22:00:00,4,0,1,2,14.76,17.425,57,11.0014,12,95,107 +2011-12-19 23:00:00,4,0,1,1,14.76,17.425,53,11.0014,10,50,60 +2012-01-01 00:00:00,1,0,0,1,14.76,18.94,66,0,5,43,48 +2012-01-01 01:00:00,1,0,0,1,14.76,17.425,66,8.9981,15,78,93 +2012-01-01 02:00:00,1,0,0,1,13.12,17.425,76,0,16,59,75 +2012-01-01 03:00:00,1,0,0,1,12.3,16.665,81,0,11,41,52 +2012-01-01 04:00:00,1,0,0,1,11.48,15.15,81,6.0032,0,8,8 +2012-01-01 05:00:00,1,0,0,1,11.48,14.395,81,7.0015,0,5,5 +2012-01-01 06:00:00,1,0,0,1,10.66,13.635,93,8.9981,1,1,2 +2012-01-01 07:00:00,1,0,0,1,10.66,12.88,93,11.0014,1,6,7 +2012-01-01 08:00:00,1,0,0,1,10.66,13.635,87,7.0015,4,10,14 +2012-01-01 09:00:00,1,0,0,1,10.66,13.635,93,7.0015,13,27,40 +2012-01-01 10:00:00,1,0,0,1,12.3,15.91,81,7.0015,18,52,70 +2012-01-01 11:00:00,1,0,0,1,13.94,16.665,76,8.9981,40,98,138 +2012-01-01 12:00:00,1,0,0,1,16.4,20.455,62,19.0012,58,143,201 +2012-01-01 13:00:00,1,0,0,1,17.22,21.21,58,19.0012,82,141,223 +2012-01-01 14:00:00,1,0,0,1,18.04,21.97,54,19.9995,120,147,267 +2012-01-01 15:00:00,1,0,0,1,18.86,22.725,51,19.9995,101,164,265 +2012-01-01 16:00:00,1,0,0,2,18.04,21.97,54,19.9995,68,147,215 +2012-01-01 17:00:00,1,0,0,2,19.68,23.485,48,11.0014,36,75,111 +2012-01-01 18:00:00,1,0,0,3,18.86,22.725,59,16.9979,25,81,106 +2012-01-01 19:00:00,1,0,0,3,17.22,21.21,67,26.0027,20,85,105 +2012-01-01 20:00:00,1,0,0,2,18.04,21.97,62,19.9995,25,58,83 +2012-01-01 21:00:00,1,0,0,2,18.04,21.97,67,16.9979,10,61,71 +2012-01-01 22:00:00,1,0,0,1,18.86,22.725,55,27.9993,13,53,66 +2012-01-01 23:00:00,1,0,0,1,18.04,21.97,51,19.9995,4,25,29 +2012-01-02 00:00:00,1,1,0,1,16.4,20.455,40,31.0009,8,31,39 +2012-01-02 01:00:00,1,1,0,1,14.76,16.665,43,27.9993,1,11,12 +2012-01-02 02:00:00,1,1,0,1,14.76,15.91,34,30.0026,1,6,7 +2012-01-02 04:00:00,1,1,0,1,11.48,12.88,45,22.0028,0,4,4 +2012-01-02 05:00:00,1,1,0,1,11.48,12.88,45,22.0028,1,3,4 +2012-01-02 06:00:00,1,1,0,1,10.66,11.365,41,26.0027,0,14,14 +2012-01-02 07:00:00,1,1,0,1,9.84,10.605,32,26.0027,0,16,16 +2012-01-02 08:00:00,1,1,0,1,9.84,11.365,35,16.9979,2,51,53 +2012-01-02 09:00:00,1,1,0,1,9.84,12.88,35,0,15,53,68 +2012-01-02 10:00:00,1,1,0,1,10.66,12.12,35,19.0012,20,89,109 +2012-01-02 11:00:00,1,1,0,1,10.66,10.605,35,32.9975,33,142,175 +2012-01-02 12:00:00,1,1,0,1,11.48,13.635,36,16.9979,41,161,202 +2012-01-02 13:00:00,1,1,0,1,12.3,13.635,36,19.9995,26,150,176 +2012-01-02 14:00:00,1,1,0,1,12.3,13.635,36,27.9993,10,141,151 +2012-01-02 15:00:00,1,1,0,1,11.48,12.12,38,30.0026,29,139,168 +2012-01-02 16:00:00,1,1,0,1,10.66,11.365,35,27.9993,10,144,154 +2012-01-02 17:00:00,1,1,0,1,10.66,11.365,35,26.0027,17,136,153 +2012-01-02 18:00:00,1,1,0,1,10.66,12.12,33,16.9979,13,113,126 +2012-01-02 19:00:00,1,1,0,1,9.84,11.365,38,15.0013,4,89,93 +2012-01-02 20:00:00,1,1,0,1,9.84,11.365,41,15.0013,5,83,88 +2012-01-02 21:00:00,1,1,0,2,9.84,10.605,41,22.0028,3,63,66 +2012-01-02 22:00:00,1,1,0,2,9.02,10.605,44,19.0012,3,36,39 +2012-01-02 23:00:00,1,1,0,1,9.02,10.605,44,16.9979,2,32,34 +2012-01-03 00:00:00,1,0,1,1,8.2,9.85,51,16.9979,0,13,13 +2012-01-03 01:00:00,1,0,1,1,7.38,9.09,55,15.0013,1,5,6 +2012-01-03 02:00:00,1,0,1,1,7.38,8.335,51,16.9979,0,3,3 +2012-01-03 03:00:00,1,0,1,1,6.56,6.82,55,19.0012,0,2,2 +2012-01-03 04:00:00,1,0,1,1,6.56,7.575,55,16.9979,0,5,5 +2012-01-03 05:00:00,1,0,1,1,5.74,6.82,54,12.998,0,12,12 +2012-01-03 06:00:00,1,0,1,1,5.74,6.06,59,19.0012,4,81,85 +2012-01-03 07:00:00,1,0,1,1,5.74,6.06,59,16.9979,2,168,170 +2012-01-03 08:00:00,1,0,1,1,6.56,6.82,55,19.0012,5,349,354 +2012-01-03 09:00:00,1,0,1,1,6.56,6.82,50,19.0012,8,145,153 +2012-01-03 10:00:00,1,0,1,1,6.56,6.06,47,31.0009,5,55,60 +2012-01-03 11:00:00,1,0,1,1,7.38,6.82,37,35.0008,12,63,75 +2012-01-03 12:00:00,1,0,1,1,7.38,6.82,37,35.0008,4,70,74 +2012-01-03 13:00:00,1,0,1,1,7.38,6.06,34,43.9989,5,68,73 +2012-01-03 14:00:00,1,0,1,1,6.56,6.06,43,35.0008,7,72,79 +2012-01-03 15:00:00,1,0,1,1,6.56,6.06,37,27.9993,9,68,77 +2012-01-03 16:00:00,1,0,1,1,5.74,4.545,39,39.0007,7,129,136 +2012-01-03 17:00:00,1,0,1,1,5.74,5.305,26,31.0009,4,241,245 +2012-01-03 18:00:00,1,0,1,1,5.74,4.545,26,35.0008,10,214,224 +2012-01-03 19:00:00,1,0,1,1,4.92,4.545,28,27.9993,4,152,156 +2012-01-03 20:00:00,1,0,1,1,4.92,6.06,33,16.9979,0,115,115 +2012-01-03 21:00:00,1,0,1,1,4.1,5.305,36,15.0013,2,66,68 +2012-01-03 22:00:00,1,0,1,1,4.1,5.305,46,16.9979,0,33,33 +2012-01-03 23:00:00,1,0,1,1,4.1,3.79,46,26.0027,0,18,18 +2012-01-04 00:00:00,1,0,1,1,3.28,3.03,42,22.0028,0,9,9 +2012-01-04 01:00:00,1,0,1,1,1.64,1.515,38,19.9995,0,3,3 +2012-01-04 02:00:00,1,0,1,1,0.82,0.76,34,19.0012,0,1,1 +2012-01-04 03:00:00,1,0,1,1,0.82,0.76,34,19.0012,0,1,1 +2012-01-04 04:00:00,1,0,1,1,0.82,2.275,41,12.998,0,2,2 +2012-01-04 05:00:00,1,0,1,1,0.82,2.275,41,12.998,0,14,14 +2012-01-04 06:00:00,1,0,1,1,0.82,2.275,41,11.0014,0,59,59 +2012-01-04 07:00:00,1,0,1,1,0.82,2.275,44,12.998,1,151,152 +2012-01-04 08:00:00,1,0,1,1,0.82,3.03,44,8.9981,5,310,315 +2012-01-04 09:00:00,1,0,1,1,1.64,3.03,45,8.9981,7,173,180 +2012-01-04 10:00:00,1,0,1,1,2.46,5.305,45,0,7,57,64 +2012-01-04 11:00:00,1,0,1,2,3.28,6.06,42,6.0032,6,40,46 +2012-01-04 12:00:00,1,0,1,2,4.1,5.305,46,12.998,9,75,84 +2012-01-04 13:00:00,1,0,1,2,5.74,6.06,43,16.9979,9,82,91 +2012-01-04 14:00:00,1,0,1,2,5.74,6.06,46,16.9979,6,69,75 +2012-01-04 15:00:00,1,0,1,2,7.38,7.575,37,22.0028,9,81,90 +2012-01-04 16:00:00,1,0,1,2,7.38,8.335,40,19.0012,8,123,131 +2012-01-04 17:00:00,1,0,1,2,8.2,9.85,40,12.998,9,272,281 +2012-01-04 18:00:00,1,0,1,2,8.2,10.605,37,8.9981,9,280,289 +2012-01-04 19:00:00,1,0,1,2,8.2,11.365,40,7.0015,2,182,184 +2012-01-04 20:00:00,1,0,1,2,8.2,9.85,40,12.998,2,121,123 +2012-01-04 21:00:00,1,0,1,2,8.2,12.88,44,0,2,88,90 +2012-01-04 22:00:00,1,0,1,2,8.2,11.365,47,6.0032,4,48,52 +2012-01-04 23:00:00,1,0,1,2,8.2,11.365,44,7.0015,0,32,32 +2012-01-05 00:00:00,1,0,1,2,9.02,11.365,47,12.998,1,13,14 +2012-01-05 01:00:00,1,0,1,1,8.2,11.365,51,6.0032,0,5,5 +2012-01-05 02:00:00,1,0,1,1,8.2,11.365,51,6.0032,0,4,4 +2012-01-05 03:00:00,1,0,1,1,8.2,12.88,61,0,0,4,4 +2012-01-05 04:00:00,1,0,1,2,8.2,11.365,59,6.0032,0,5,5 +2012-01-05 05:00:00,1,0,1,2,8.2,11.365,59,6.0032,0,26,26 +2012-01-05 06:00:00,1,0,1,2,8.2,10.605,75,8.9981,0,78,78 +2012-01-05 07:00:00,1,0,1,2,8.2,11.365,69,6.0032,3,212,215 +2012-01-05 08:00:00,1,0,1,2,8.2,12.88,75,0,11,377,388 +2012-01-05 09:00:00,1,0,1,2,9.02,13.635,69,0,7,220,227 +2012-01-05 10:00:00,1,0,1,2,9.84,12.88,52,6.0032,5,81,86 +2012-01-05 11:00:00,1,0,1,1,12.3,16.665,49,0,6,78,84 +2012-01-05 12:00:00,1,0,1,1,12.3,14.395,49,16.9979,6,114,120 +2012-01-05 13:00:00,1,0,1,1,13.94,15.15,42,19.9995,6,112,118 +2012-01-05 14:00:00,1,0,1,1,13.94,15.91,39,19.0012,13,104,117 +2012-01-05 15:00:00,1,0,1,1,14.76,16.665,34,19.0012,6,113,119 +2012-01-05 16:00:00,1,0,1,1,14.76,16.665,34,19.0012,19,178,197 +2012-01-05 17:00:00,1,0,1,2,14.76,17.425,34,12.998,19,393,412 +2012-01-05 18:00:00,1,0,1,1,13.94,16.665,36,11.0014,9,374,383 +2012-01-05 19:00:00,1,0,1,1,13.94,17.425,34,6.0032,10,255,265 +2012-01-05 20:00:00,1,0,1,1,12.3,16.665,49,0,5,172,177 +2012-01-05 21:00:00,1,0,1,1,10.66,13.635,60,8.9981,9,88,97 +2012-01-05 22:00:00,1,0,1,1,10.66,12.88,60,11.0014,1,70,71 +2012-01-05 23:00:00,1,0,1,1,9.84,12.88,70,7.0015,4,56,60 +2012-01-06 00:00:00,1,0,1,1,9.02,12.88,75,6.0032,1,24,25 +2012-01-06 01:00:00,1,0,1,1,9.02,13.635,75,0,2,6,8 +2012-01-06 02:00:00,1,0,1,1,9.02,11.365,69,11.0014,2,3,5 +2012-01-06 03:00:00,1,0,1,1,9.02,12.12,69,7.0015,1,3,4 +2012-01-06 04:00:00,1,0,1,1,9.02,11.365,69,8.9981,0,3,3 +2012-01-06 05:00:00,1,0,1,2,8.2,10.605,80,8.9981,0,13,13 +2012-01-06 06:00:00,1,0,1,2,9.02,12.12,73,7.0015,1,69,70 +2012-01-06 07:00:00,1,0,1,2,9.84,14.395,65,0,4,201,205 +2012-01-06 08:00:00,1,0,1,1,9.84,12.12,70,8.9981,11,436,447 +2012-01-06 09:00:00,1,0,1,1,9.84,12.12,70,11.0014,4,237,241 +2012-01-06 10:00:00,1,0,1,1,10.66,12.88,65,12.998,14,102,116 +2012-01-06 11:00:00,1,0,1,1,12.3,15.15,56,11.0014,8,130,138 +2012-01-06 12:00:00,1,0,1,1,14.76,16.665,50,16.9979,23,168,191 +2012-01-06 13:00:00,1,0,1,1,16.4,20.455,43,19.0012,16,188,204 +2012-01-06 14:00:00,1,0,1,1,18.86,22.725,36,12.998,26,152,178 +2012-01-06 15:00:00,1,0,1,1,21.32,25,27,16.9979,44,178,222 +2012-01-06 16:00:00,1,0,1,1,21.32,25,27,19.0012,35,259,294 +2012-01-06 17:00:00,1,0,1,1,18.86,22.725,36,15.0013,20,456,476 +2012-01-06 18:00:00,1,0,1,1,20.5,24.24,29,16.9979,28,391,419 +2012-01-06 19:00:00,1,0,1,1,18.86,22.725,33,19.0012,11,261,272 +2012-01-06 20:00:00,1,0,1,1,17.22,21.21,41,12.998,14,163,177 +2012-01-06 21:00:00,1,0,1,1,16.4,20.455,43,15.0013,17,137,154 +2012-01-06 22:00:00,1,0,1,1,14.76,17.425,50,12.998,12,123,135 +2012-01-06 23:00:00,1,0,1,1,14.76,18.94,50,0,13,88,101 +2012-01-07 00:00:00,1,0,0,1,14.76,17.425,50,11.0014,2,77,79 +2012-01-07 01:00:00,1,0,0,1,15.58,19.695,46,11.0014,6,56,62 +2012-01-07 02:00:00,1,0,0,1,14.76,18.18,50,7.0015,2,36,38 +2012-01-07 03:00:00,1,0,0,1,13.12,16.665,57,7.0015,1,19,20 +2012-01-07 04:00:00,1,0,0,1,13.12,16.665,57,6.0032,1,9,10 +2012-01-07 05:00:00,1,0,0,1,10.66,13.635,75,7.0015,2,7,9 +2012-01-07 06:00:00,1,0,0,1,10.66,13.635,75,7.0015,0,7,7 +2012-01-07 07:00:00,1,0,0,1,9.02,11.365,87,12.998,0,20,20 +2012-01-07 08:00:00,1,0,0,1,9.84,12.88,75,7.0015,0,64,64 +2012-01-07 09:00:00,1,0,0,1,9.02,11.365,80,8.9981,14,116,130 +2012-01-07 10:00:00,1,0,0,1,11.48,15.15,75,6.0032,43,160,203 +2012-01-07 11:00:00,1,0,0,1,13.94,15.91,57,15.0013,74,250,324 +2012-01-07 12:00:00,1,0,0,1,16.4,20.455,43,15.0013,100,276,376 +2012-01-07 13:00:00,1,0,0,1,18.04,21.97,44,12.998,149,296,445 +2012-01-07 14:00:00,1,0,0,1,20.5,24.24,42,19.0012,156,356,512 +2012-01-07 15:00:00,1,0,0,1,23.78,27.275,37,19.9995,132,317,449 +2012-01-07 16:00:00,1,0,0,2,22.96,26.515,37,19.0012,133,268,401 +2012-01-07 17:00:00,1,0,0,2,22.14,25.76,43,8.9981,87,235,322 +2012-01-07 18:00:00,1,0,0,1,22.14,25.76,45,8.9981,49,248,297 +2012-01-07 19:00:00,1,0,0,1,21.32,25,42,7.0015,44,171,215 +2012-01-07 20:00:00,1,0,0,1,20.5,24.24,39,16.9979,21,149,170 +2012-01-07 21:00:00,1,0,0,1,18.04,21.97,44,15.0013,22,118,140 +2012-01-07 22:00:00,1,0,0,1,18.04,21.97,38,16.9979,16,93,109 +2012-01-07 23:00:00,1,0,0,1,17.22,21.21,38,15.0013,16,103,119 +2012-01-08 00:00:00,1,0,0,1,15.58,19.695,40,19.0012,14,77,91 +2012-01-08 01:00:00,1,0,0,1,13.94,16.665,42,12.998,10,62,72 +2012-01-08 02:00:00,1,0,0,1,14.76,16.665,37,19.0012,10,57,67 +2012-01-08 03:00:00,1,0,0,1,13.94,16.665,42,8.9981,6,26,32 +2012-01-08 04:00:00,1,0,0,1,13.12,15.15,49,16.9979,2,4,6 +2012-01-08 05:00:00,1,0,0,2,13.12,16.665,49,7.0015,0,2,2 +2012-01-08 06:00:00,1,0,0,2,12.3,16.665,52,0,0,2,2 +2012-01-08 07:00:00,1,0,0,2,12.3,16.665,52,0,1,23,24 +2012-01-08 08:00:00,1,0,0,1,12.3,15.15,52,8.9981,4,53,57 +2012-01-08 09:00:00,1,0,0,1,13.12,16.665,53,8.9981,23,102,125 +2012-01-08 10:00:00,1,0,0,1,13.94,16.665,49,11.0014,27,181,208 +2012-01-08 11:00:00,1,0,0,1,14.76,17.425,46,15.0013,55,201,256 +2012-01-08 12:00:00,1,0,0,1,15.58,19.695,43,15.0013,78,273,351 +2012-01-08 13:00:00,1,0,0,1,16.4,20.455,37,19.9995,77,266,343 +2012-01-08 14:00:00,1,0,0,1,16.4,20.455,40,12.998,75,253,328 +2012-01-08 15:00:00,1,0,0,1,16.4,20.455,37,19.0012,89,241,330 +2012-01-08 16:00:00,1,0,0,1,16.4,20.455,37,19.9995,58,256,314 +2012-01-08 17:00:00,1,0,0,1,15.58,19.695,40,15.0013,22,197,219 +2012-01-08 18:00:00,1,0,0,1,13.94,15.91,46,15.0013,19,162,181 +2012-01-08 19:00:00,1,0,0,1,13.12,15.91,49,12.998,8,104,112 +2012-01-08 20:00:00,1,0,0,1,12.3,15.15,52,11.0014,7,119,126 +2012-01-08 21:00:00,1,0,0,1,11.48,13.635,56,15.0013,10,81,91 +2012-01-08 22:00:00,1,0,0,1,10.66,13.635,60,7.0015,4,54,58 +2012-01-08 23:00:00,1,0,0,1,10.66,12.12,56,16.9979,0,30,30 +2012-01-09 00:00:00,1,0,1,1,9.84,11.365,60,15.0013,3,12,15 +2012-01-09 01:00:00,1,0,1,1,9.84,12.12,60,8.9981,1,4,5 +2012-01-09 02:00:00,1,0,1,1,9.84,12.12,56,8.9981,2,3,5 +2012-01-09 03:00:00,1,0,1,1,9.84,12.12,52,11.0014,0,3,3 +2012-01-09 04:00:00,1,0,1,1,9.02,12.12,64,7.0015,0,4,4 +2012-01-09 05:00:00,1,0,1,2,8.2,11.365,64,6.0032,0,21,21 +2012-01-09 06:00:00,1,0,1,2,9.02,11.365,60,8.9981,3,85,88 +2012-01-09 07:00:00,1,0,1,2,9.02,12.12,60,7.0015,1,239,240 +2012-01-09 08:00:00,1,0,1,2,9.02,12.88,55,6.0032,13,407,420 +2012-01-09 09:00:00,1,0,1,2,9.02,13.635,64,0,9,188,197 +2012-01-09 10:00:00,1,0,1,1,9.84,14.395,60,0,13,95,108 +2012-01-09 11:00:00,1,0,1,2,10.66,14.395,56,6.0032,6,82,88 +2012-01-09 12:00:00,1,0,1,2,10.66,13.635,56,7.0015,10,93,103 +2012-01-09 13:00:00,1,0,1,2,10.66,13.635,56,7.0015,3,77,80 +2012-01-09 14:00:00,1,0,1,3,9.02,11.365,75,11.0014,5,45,50 +2012-01-09 15:00:00,1,0,1,3,9.02,11.365,75,11.0014,5,64,69 +2012-01-09 16:00:00,1,0,1,3,9.02,12.88,87,6.0032,3,46,49 +2012-01-09 17:00:00,1,0,1,3,9.02,13.635,87,0,5,147,152 +2012-01-09 18:00:00,1,0,1,4,8.2,11.365,86,6.0032,6,158,164 +2012-01-09 19:00:00,1,0,1,3,8.2,11.365,93,6.0032,3,187,190 +2012-01-09 20:00:00,1,0,1,2,8.2,11.365,86,6.0032,5,127,132 +2012-01-09 21:00:00,1,0,1,2,8.2,12.88,93,0,1,78,79 +2012-01-09 22:00:00,1,0,1,2,8.2,11.365,92,7.0015,8,54,62 +2012-01-09 23:00:00,1,0,1,2,9.02,12.12,87,7.0015,1,51,52 +2012-01-10 00:00:00,1,0,1,2,9.02,12.12,87,7.0015,0,14,14 +2012-01-10 01:00:00,1,0,1,2,9.02,12.12,93,7.0015,2,3,5 +2012-01-10 02:00:00,1,0,1,2,9.02,11.365,87,11.0014,2,2,4 +2012-01-10 04:00:00,1,0,1,2,8.2,10.605,86,11.0014,0,4,4 +2012-01-10 05:00:00,1,0,1,1,16.4,20.455,47,15.0013,0,23,23 +2012-01-10 06:00:00,1,0,1,2,7.38,9.09,93,12.998,0,79,79 +2012-01-10 07:00:00,1,0,1,2,7.38,9.85,93,11.0014,3,219,222 +2012-01-10 08:00:00,1,0,1,2,7.38,9.85,93,11.0014,6,465,471 +2012-01-10 09:00:00,1,0,1,2,7.38,9.85,93,11.0014,11,184,195 +2012-01-10 10:00:00,1,0,1,2,7.38,9.85,93,11.0014,3,80,83 +2012-01-10 11:00:00,1,0,1,1,17.22,21.21,38,19.9995,8,93,101 +2012-01-10 12:00:00,1,0,1,1,17.22,21.21,38,19.9995,13,127,140 +2012-01-10 13:00:00,1,0,1,1,17.22,21.21,38,19.9995,15,163,178 +2012-01-10 14:00:00,1,0,1,1,17.22,21.21,38,19.9995,10,96,106 +2012-01-10 15:00:00,1,0,1,1,17.22,21.21,38,19.9995,17,119,136 +2012-01-10 16:00:00,1,0,1,1,17.22,21.21,38,23.9994,15,225,240 +2012-01-10 17:00:00,1,0,1,1,17.22,21.21,38,16.9979,14,446,460 +2012-01-10 18:00:00,1,0,1,1,16.4,20.455,40,7.0015,13,372,385 +2012-01-10 19:00:00,1,0,1,1,15.58,19.695,46,7.0015,11,270,281 +2012-01-10 20:00:00,1,0,1,1,13.94,17.425,53,7.0015,10,190,200 +2012-01-10 21:00:00,1,0,1,1,13.12,16.665,66,6.0032,7,109,116 +2012-01-10 22:00:00,1,0,1,1,12.3,15.15,70,6.0032,10,104,114 +2012-01-10 23:00:00,1,0,1,1,10.66,13.635,81,7.0015,3,38,41 +2012-01-11 00:00:00,1,0,1,1,10.66,15.15,81,0,2,26,28 +2012-01-11 01:00:00,1,0,1,1,9.84,12.88,87,6.0032,1,6,7 +2012-01-11 02:00:00,1,0,1,1,8.2,10.605,85,11.0014,0,5,5 +2012-01-11 03:00:00,1,0,1,1,9.02,13.635,80,0,0,4,4 +2012-01-11 04:00:00,1,0,1,1,8.2,10.605,80,8.9981,0,2,2 +2012-01-11 05:00:00,1,0,1,1,8.2,10.605,80,8.9981,0,22,22 +2012-01-11 06:00:00,1,0,1,1,8.2,10.605,86,8.9981,2,72,74 +2012-01-11 07:00:00,1,0,1,1,8.2,10.605,80,8.9981,9,247,256 +2012-01-11 08:00:00,1,0,1,1,8.2,11.365,82,7.0015,11,488,499 +2012-01-11 09:00:00,1,0,1,2,8.2,10.605,86,8.9981,7,218,225 +2012-01-11 10:00:00,1,0,1,2,9.84,12.12,87,8.9981,13,84,97 +2012-01-11 11:00:00,1,0,1,2,10.66,14.395,87,6.0032,9,90,99 +2012-01-11 12:00:00,1,0,1,3,12.3,16.665,81,0,4,51,55 +2012-01-11 13:00:00,1,0,1,3,13.12,17.425,76,0,8,57,65 +2012-01-11 14:00:00,1,0,1,3,13.12,16.665,81,7.0015,3,70,73 +2012-01-11 15:00:00,1,0,1,2,13.94,17.425,87,6.0032,6,73,79 +2012-01-11 16:00:00,1,0,1,2,13.94,15.91,87,16.9979,6,112,118 +2012-01-11 17:00:00,1,0,1,3,13.94,15.91,87,15.0013,6,128,134 +2012-01-11 18:00:00,1,0,1,3,13.94,16.665,87,12.998,2,96,98 +2012-01-11 19:00:00,1,0,1,3,13.12,15.15,93,15.0013,1,92,93 +2012-01-11 20:00:00,1,0,1,3,13.12,15.91,93,11.0014,2,55,57 +2012-01-11 21:00:00,1,0,1,3,13.94,15.91,87,15.0013,0,29,29 +2012-01-11 22:00:00,1,0,1,3,13.94,16.665,87,12.998,0,49,49 +2012-01-11 23:00:00,1,0,1,3,13.94,15.91,87,15.0013,0,9,9 +2012-01-12 00:00:00,1,0,1,3,13.94,16.665,93,12.998,0,3,3 +2012-01-12 01:00:00,1,0,1,3,14.76,17.425,93,12.998,0,3,3 +2012-01-12 02:00:00,1,0,1,3,14.76,17.425,93,16.9979,1,1,2 +2012-01-12 03:00:00,1,0,1,3,14.76,17.425,93,16.9979,0,3,3 +2012-01-12 04:00:00,1,0,1,3,14.76,17.425,93,12.998,0,2,2 +2012-01-12 05:00:00,1,0,1,3,13.94,17.425,93,6.0032,0,16,16 +2012-01-12 06:00:00,1,0,1,3,14.76,17.425,93,8.9981,1,88,89 +2012-01-12 07:00:00,1,0,1,2,13.94,15.91,87,19.0012,2,218,220 +2012-01-12 08:00:00,1,0,1,1,13.12,15.91,81,12.998,11,497,508 +2012-01-12 09:00:00,1,0,1,1,13.12,16.665,81,7.0015,10,220,230 +2012-01-12 10:00:00,1,0,1,1,13.94,17.425,81,7.0015,6,84,90 +2012-01-12 11:00:00,1,0,1,2,13.94,17.425,81,7.0015,18,101,119 +2012-01-12 12:00:00,1,0,1,2,13.94,17.425,81,7.0015,14,130,144 +2012-01-12 13:00:00,1,0,1,1,17.22,21.21,77,11.0014,13,170,183 +2012-01-12 14:00:00,1,0,1,1,17.22,21.21,77,11.0014,24,132,156 +2012-01-12 15:00:00,1,0,1,1,18.04,21.97,72,8.9981,32,156,188 +2012-01-12 16:00:00,1,0,1,1,18.86,22.725,67,12.998,33,248,281 +2012-01-12 17:00:00,1,0,1,1,18.86,22.725,63,11.0014,23,472,495 +2012-01-12 18:00:00,1,0,1,1,18.04,21.97,67,12.998,22,399,421 +2012-01-12 19:00:00,1,0,1,2,17.22,21.21,71,11.0014,17,313,330 +2012-01-12 20:00:00,1,0,1,2,17.22,21.21,71,12.998,11,229,240 +2012-01-12 21:00:00,1,0,1,1,18.04,21.97,67,8.9981,12,162,174 +2012-01-12 22:00:00,1,0,1,1,15.58,19.695,76,19.9995,12,121,133 +2012-01-12 23:00:00,1,0,1,1,16.4,20.455,76,22.0028,7,60,67 +2012-01-13 00:00:00,1,0,1,2,16.4,20.455,71,19.0012,4,38,42 +2012-01-13 01:00:00,1,0,1,2,15.58,19.695,76,19.9995,0,12,12 +2012-01-13 02:00:00,1,0,1,1,16.4,20.455,76,23.9994,1,13,14 +2012-01-13 03:00:00,1,0,1,1,14.76,16.665,87,16.9979,3,4,7 +2012-01-13 04:00:00,1,0,1,3,13.12,14.395,70,32.9975,1,2,3 +2012-01-13 05:00:00,1,0,1,2,12.3,12.12,70,36.9974,0,21,21 +2012-01-13 06:00:00,1,0,1,2,10.66,12.88,75,15.0013,2,71,73 +2012-01-13 07:00:00,1,0,1,1,10.66,12.88,60,15.0013,3,174,177 +2012-01-13 08:00:00,1,0,1,1,9.84,10.605,52,23.9994,11,408,419 +2012-01-13 09:00:00,1,0,1,1,9.02,9.85,47,26.0027,10,204,214 +2012-01-13 10:00:00,1,0,1,1,9.84,9.85,44,30.0026,2,101,103 +2012-01-13 11:00:00,1,0,1,1,9.84,9.09,38,40.9973,12,102,114 +2012-01-13 12:00:00,1,0,1,1,9.84,9.85,38,32.9975,14,140,154 +2012-01-13 13:00:00,1,0,1,1,10.66,10.605,33,35.0008,14,140,154 +2012-01-13 14:00:00,1,0,1,1,10.66,10.605,33,36.9974,10,119,129 +2012-01-13 15:00:00,1,0,1,1,10.66,10.605,33,39.0007,15,123,138 +2012-01-13 16:00:00,1,0,1,1,11.48,12.12,30,31.0009,18,215,233 +2012-01-13 17:00:00,1,0,1,1,11.48,12.12,33,27.9993,15,317,332 +2012-01-13 18:00:00,1,0,1,1,10.66,11.365,38,19.9995,7,294,301 +2012-01-13 19:00:00,1,0,1,1,10.66,12.12,38,19.0012,7,199,206 +2012-01-13 20:00:00,1,0,1,1,9.84,12.12,41,11.0014,6,130,136 +2012-01-13 21:00:00,1,0,1,1,9.84,10.605,41,19.0012,7,95,102 +2012-01-13 22:00:00,1,0,1,1,8.2,9.09,47,22.0028,7,58,65 +2012-01-13 23:00:00,1,0,1,1,7.38,9.09,47,12.998,5,60,65 +2012-01-14 00:00:00,1,0,0,1,6.56,9.09,47,7.0015,2,42,44 +2012-01-14 01:00:00,1,0,0,1,6.56,7.575,47,12.998,6,44,50 +2012-01-14 02:00:00,1,0,0,1,6.56,8.335,47,11.0014,6,32,38 +2012-01-14 03:00:00,1,0,0,1,5.74,8.335,54,7.0015,6,14,20 +2012-01-14 04:00:00,1,0,0,1,5.74,7.575,50,8.9981,0,3,3 +2012-01-14 05:00:00,1,0,0,1,5.74,7.575,50,8.9981,0,4,4 +2012-01-14 06:00:00,1,0,0,1,5.74,7.575,50,0,0,5,5 +2012-01-14 07:00:00,1,0,0,1,5.74,7.575,50,8.9981,0,24,24 +2012-01-14 08:00:00,1,0,0,1,4.92,7.575,54,7.0015,3,89,92 +2012-01-14 09:00:00,1,0,0,1,5.74,8.335,50,7.0015,3,78,81 +2012-01-14 10:00:00,1,0,0,1,6.56,11.365,47,0,14,135,149 +2012-01-14 11:00:00,1,0,0,1,8.2,9.85,40,12.998,28,150,178 +2012-01-14 12:00:00,1,0,0,1,9.02,10.605,41,16.9979,30,189,219 +2012-01-14 13:00:00,1,0,0,1,9.02,10.605,44,19.0012,38,182,220 +2012-01-14 14:00:00,1,0,0,1,9.84,10.605,41,19.9995,52,179,231 +2012-01-14 15:00:00,1,0,0,1,9.84,10.605,38,19.9995,49,177,226 +2012-01-14 16:00:00,1,0,0,1,9.84,11.365,38,15.0013,28,178,206 +2012-01-14 17:00:00,1,0,0,1,9.84,11.365,41,16.9979,15,129,144 +2012-01-14 18:00:00,1,0,0,1,9.02,11.365,41,12.998,21,122,143 +2012-01-14 19:00:00,1,0,0,1,8.2,9.85,47,15.0013,12,90,102 +2012-01-14 20:00:00,1,0,0,1,8.2,9.85,44,16.9979,8,95,103 +2012-01-14 21:00:00,1,0,0,1,7.38,8.335,43,16.9979,3,66,69 +2012-01-14 22:00:00,1,0,0,1,6.56,6.82,47,23.9994,4,62,66 +2012-01-14 23:00:00,1,0,0,1,6.56,7.575,47,15.0013,5,71,76 +2012-01-15 00:00:00,1,0,0,1,6.56,6.82,47,22.0028,9,50,59 +2012-01-15 01:00:00,1,0,0,2,6.56,6.82,47,19.9995,2,40,42 +2012-01-15 02:00:00,1,0,0,2,6.56,6.82,47,19.0012,5,38,43 +2012-01-15 03:00:00,1,0,0,2,6.56,6.82,48,26.0027,1,24,25 +2012-01-15 04:00:00,1,0,0,2,6.56,6.82,47,26.0027,1,5,6 +2012-01-15 05:00:00,1,0,0,2,6.56,6.82,47,22.0028,0,5,5 +2012-01-15 06:00:00,1,0,0,2,5.74,6.06,50,19.0012,1,7,8 +2012-01-15 07:00:00,1,0,0,1,4.92,6.06,54,19.0012,3,14,17 +2012-01-15 08:00:00,1,0,0,1,4.92,6.06,54,15.0013,2,34,36 +2012-01-15 09:00:00,1,0,0,1,4.92,6.82,54,12.998,10,80,90 +2012-01-15 10:00:00,1,0,0,1,5.74,6.06,54,19.0012,11,115,126 +2012-01-15 11:00:00,1,0,0,1,6.56,7.575,47,15.0013,21,144,165 +2012-01-15 12:00:00,1,0,0,1,7.38,8.335,40,19.9995,42,192,234 +2012-01-15 13:00:00,1,0,0,1,8.2,9.09,34,19.0012,40,184,224 +2012-01-15 14:00:00,1,0,0,1,8.2,9.09,32,23.9994,25,163,188 +2012-01-15 15:00:00,1,0,0,1,9.02,11.365,27,12.998,33,173,206 +2012-01-15 16:00:00,1,0,0,1,9.02,10.605,29,19.9995,31,174,205 +2012-01-15 17:00:00,1,0,0,1,9.02,10.605,25,16.9979,15,131,146 +2012-01-15 18:00:00,1,0,0,1,7.38,9.09,29,15.0013,7,113,120 +2012-01-15 19:00:00,1,0,0,1,6.56,8.335,37,11.0014,9,101,110 +2012-01-15 20:00:00,1,0,0,1,6.56,9.09,37,7.0015,10,85,95 +2012-01-15 21:00:00,1,0,0,1,6.56,8.335,40,11.0014,1,71,72 +2012-01-15 22:00:00,1,0,0,1,7.38,10.605,37,6.0032,2,58,60 +2012-01-15 23:00:00,1,0,0,1,6.56,9.85,43,6.0032,3,26,29 +2012-01-16 00:00:00,1,1,0,1,5.74,7.575,46,8.9981,2,23,25 +2012-01-16 01:00:00,1,1,0,1,5.74,8.335,43,7.0015,2,18,20 +2012-01-16 02:00:00,1,1,0,1,5.74,10.605,46,0,3,14,17 +2012-01-16 03:00:00,1,1,0,1,4.92,9.85,50,0,0,3,3 +2012-01-16 04:00:00,1,1,0,1,4.92,7.575,58,7.0015,2,6,8 +2012-01-16 05:00:00,1,1,0,1,4.92,8.335,54,6.0032,1,5,6 +2012-01-16 06:00:00,1,1,0,1,4.1,6.82,54,6.0032,0,13,13 +2012-01-16 07:00:00,1,1,0,1,4.1,6.82,54,7.0015,5,28,33 +2012-01-16 08:00:00,1,1,0,1,4.1,6.06,58,11.0014,3,75,78 +2012-01-16 09:00:00,1,1,0,1,4.1,6.06,58,11.0014,7,89,96 +2012-01-16 10:00:00,1,1,0,2,5.74,6.82,59,12.998,19,107,126 +2012-01-16 11:00:00,1,1,0,1,6.56,7.575,59,16.9979,21,158,179 +2012-01-16 12:00:00,1,1,0,1,8.2,9.09,55,22.0028,20,165,185 +2012-01-16 13:00:00,1,1,0,2,9.84,9.85,41,27.9993,26,202,228 +2012-01-16 14:00:00,1,1,0,1,9.84,10.605,44,26.0027,23,158,181 +2012-01-16 15:00:00,1,1,0,1,10.66,10.605,44,30.0026,17,175,192 +2012-01-16 16:00:00,1,1,0,1,10.66,11.365,44,23.9994,22,158,180 +2012-01-16 17:00:00,1,1,0,1,10.66,11.365,48,22.0028,19,174,193 +2012-01-16 18:00:00,1,1,0,1,10.66,11.365,52,22.0028,6,175,181 +2012-01-16 19:00:00,1,1,0,1,10.66,12.12,56,19.0012,10,134,144 +2012-01-16 20:00:00,1,1,0,1,10.66,12.12,60,19.0012,2,88,90 +2012-01-16 21:00:00,1,1,0,1,11.48,12.88,52,22.0028,3,46,49 +2012-01-16 22:00:00,1,1,0,2,12.3,13.635,49,23.9994,4,39,43 +2012-01-16 23:00:00,1,1,0,3,10.66,11.365,70,19.9995,0,28,28 +2012-01-17 00:00:00,1,0,1,2,10.66,11.365,70,22.0028,0,12,12 +2012-01-17 01:00:00,1,0,1,2,11.48,12.88,65,23.9994,0,2,2 +2012-01-17 02:00:00,1,0,1,3,11.48,13.635,75,16.9979,0,12,12 +2012-01-17 04:00:00,1,0,1,3,13.12,15.15,66,22.0028,0,2,2 +2012-01-17 05:00:00,1,0,1,3,13.12,15.15,66,22.0028,0,13,13 +2012-01-17 06:00:00,1,0,1,3,12.3,14.395,75,16.9979,0,57,57 +2012-01-17 07:00:00,1,0,1,3,12.3,14.395,81,15.0013,5,121,126 +2012-01-17 08:00:00,1,0,1,3,12.3,14.395,81,19.0012,3,90,93 +2012-01-17 09:00:00,1,0,1,3,13.12,15.15,81,16.9979,7,61,68 +2012-01-17 10:00:00,1,0,1,3,12.3,14.395,87,16.9979,1,61,62 +2012-01-17 11:00:00,1,0,1,2,13.94,17.425,87,7.0015,2,73,75 +2012-01-17 12:00:00,1,0,1,2,13.12,15.15,87,19.0012,3,83,86 +2012-01-17 13:00:00,1,0,1,2,15.58,19.695,76,22.0028,8,95,103 +2012-01-17 14:00:00,1,0,1,1,18.04,21.97,62,32.9975,12,120,132 +2012-01-17 15:00:00,1,0,1,1,18.04,21.97,62,32.9975,6,123,129 +2012-01-17 16:00:00,1,0,1,1,18.86,22.725,63,36.9974,14,205,219 +2012-01-17 17:00:00,1,0,1,1,18.86,22.725,63,30.0026,20,442,462 +2012-01-17 18:00:00,1,0,1,1,18.86,22.725,63,30.0026,12,451,463 +2012-01-17 19:00:00,1,0,1,1,18.86,22.725,63,27.9993,11,297,308 +2012-01-17 20:00:00,1,0,1,1,18.86,22.725,63,23.9994,11,169,180 +2012-01-17 21:00:00,1,0,1,1,18.86,22.725,67,31.0009,6,174,180 +2012-01-17 22:00:00,1,0,1,1,18.86,22.725,72,26.0027,5,85,90 +2012-01-17 23:00:00,1,0,1,1,18.86,22.725,72,26.0027,1,60,61 +2012-01-18 00:00:00,1,0,1,2,18.86,22.725,77,22.0028,3,14,17 +2012-01-18 01:00:00,1,0,1,2,18.86,22.725,77,22.0028,0,10,10 +2012-01-18 02:00:00,1,0,1,2,18.04,21.97,51,32.9975,1,1,2 +2012-01-18 03:00:00,1,0,1,2,18.04,21.97,51,32.9975,1,3,4 +2012-01-18 04:00:00,1,0,1,1,13.94,14.395,46,35.0008,0,1,1 +2012-01-18 05:00:00,1,0,1,1,13.94,14.395,46,35.0008,0,29,29 +2012-01-18 06:00:00,1,0,1,1,13.94,14.395,36,35.0008,0,88,88 +2012-01-18 07:00:00,1,0,1,1,13.12,14.395,42,23.9994,1,262,263 +2012-01-18 08:00:00,1,0,1,1,12.3,13.635,52,27.9993,15,474,489 +2012-01-18 09:00:00,1,0,1,1,11.48,12.88,52,22.0028,6,196,202 +2012-01-18 10:00:00,1,0,1,1,12.3,13.635,42,31.0009,5,88,93 +2012-01-18 11:00:00,1,0,1,1,12.3,13.635,42,26.0027,4,110,114 +2012-01-18 12:00:00,1,0,1,1,12.3,12.88,39,32.9975,6,155,161 +2012-01-18 13:00:00,1,0,1,1,12.3,13.635,42,31.0009,6,124,130 +2012-01-18 14:00:00,1,0,1,1,12.3,13.635,33,26.0027,7,98,105 +2012-01-18 15:00:00,1,0,1,1,12.3,12.88,33,35.0008,8,122,130 +2012-01-18 16:00:00,1,0,1,1,11.48,11.365,30,35.0008,13,163,176 +2012-01-18 17:00:00,1,0,1,1,10.66,10.605,33,30.0026,8,338,346 +2012-01-18 18:00:00,1,0,1,1,9.84,10.605,32,23.9994,8,347,355 +2012-01-18 19:00:00,1,0,1,1,9.02,9.85,37,26.0027,5,251,256 +2012-01-18 20:00:00,1,0,1,1,9.02,10.605,37,16.9979,1,164,165 +2012-01-18 21:00:00,1,0,1,1,8.2,8.335,40,27.9993,5,119,124 +2012-01-18 22:00:00,1,0,1,1,7.38,8.335,47,16.9979,4,74,78 +2012-01-18 23:00:00,1,0,1,1,6.56,6.82,47,19.9995,2,36,38 +2012-01-19 00:00:00,1,0,1,1,5.74,6.82,50,12.998,0,16,16 +2012-01-19 01:00:00,1,0,1,1,5.74,7.575,50,11.0014,0,5,5 +2012-01-19 02:00:00,1,0,1,1,5.74,7.575,50,8.9981,0,3,3 +2012-01-19 03:00:00,1,0,1,1,4.92,7.575,54,7.0015,0,4,4 +2012-01-19 04:00:00,1,0,1,1,4.92,7.575,54,7.0015,0,1,1 +2012-01-19 05:00:00,1,0,1,1,4.92,6.06,55,16.9979,0,19,19 +2012-01-19 06:00:00,1,0,1,1,4.92,6.82,54,11.0014,0,86,86 +2012-01-19 07:00:00,1,0,1,1,4.92,8.335,54,6.0032,2,204,206 +2012-01-19 08:00:00,1,0,1,1,4.92,7.575,54,7.0015,9,414,423 +2012-01-19 09:00:00,1,0,1,1,4.92,9.85,54,0,6,204,210 +2012-01-19 10:00:00,1,0,1,1,5.74,10.605,59,0,10,98,108 +2012-01-19 11:00:00,1,0,1,1,6.56,8.335,55,11.0014,6,93,99 +2012-01-19 12:00:00,1,0,1,1,8.2,9.85,51,12.998,5,106,111 +2012-01-19 13:00:00,1,0,1,1,9.02,10.605,47,19.0012,6,118,124 +2012-01-19 14:00:00,1,0,1,1,9.84,11.365,44,12.998,15,104,119 +2012-01-19 15:00:00,1,0,1,1,10.66,11.365,44,19.9995,9,118,127 +2012-01-19 16:00:00,1,0,1,1,10.66,11.365,41,22.0028,8,185,193 +2012-01-19 17:00:00,1,0,1,2,10.66,11.365,44,22.0028,21,364,385 +2012-01-19 18:00:00,1,0,1,2,10.66,11.365,44,22.0028,16,345,361 +2012-01-19 19:00:00,1,0,1,2,10.66,11.365,48,19.9995,5,229,234 +2012-01-19 20:00:00,1,0,1,1,10.66,10.605,52,30.0026,7,184,191 +2012-01-19 21:00:00,1,0,1,1,10.66,11.365,44,23.9994,4,117,121 +2012-01-19 22:00:00,1,0,1,2,10.66,11.365,44,27.9993,0,90,90 +2012-01-19 23:00:00,1,0,1,1,10.66,11.365,48,22.0028,1,55,56 +2012-02-01 00:00:00,1,0,1,1,18.04,21.97,38,19.0012,0,31,31 +2012-02-01 01:00:00,1,0,1,1,18.04,21.97,41,19.0012,0,4,4 +2012-02-01 02:00:00,1,0,1,1,18.04,21.97,44,19.0012,1,6,7 +2012-02-01 03:00:00,1,0,1,1,18.04,21.97,44,12.998,0,3,3 +2012-02-01 04:00:00,1,0,1,1,16.4,20.455,50,11.0014,0,1,1 +2012-02-01 05:00:00,1,0,1,1,16.4,20.455,50,11.0014,0,18,18 +2012-02-01 06:00:00,1,0,1,3,16.4,20.455,54,11.0014,0,67,67 +2012-02-01 07:00:00,1,0,1,3,15.58,19.695,62,6.0032,7,201,208 +2012-02-01 08:00:00,1,0,1,3,14.76,18.18,73,7.0015,15,505,520 +2012-02-01 09:00:00,1,0,1,2,14.76,17.425,71,12.998,9,267,276 +2012-02-01 10:00:00,1,0,1,1,16.4,20.455,62,8.9981,9,124,133 +2012-02-01 11:00:00,1,0,1,1,16.4,20.455,58,11.0014,27,116,143 +2012-02-01 12:00:00,1,0,1,1,18.04,21.97,54,7.0015,26,153,179 +2012-02-01 13:00:00,1,0,1,1,18.86,22.725,47,15.0013,12,174,186 +2012-02-01 14:00:00,1,0,1,1,25.42,31.06,33,15.0013,33,159,192 +2012-02-01 15:00:00,1,0,1,1,24.6,31.06,35,19.0012,25,169,194 +2012-02-01 16:00:00,1,0,1,1,24.6,31.06,40,15.0013,22,261,283 +2012-02-01 17:00:00,1,0,1,1,23.78,27.275,43,12.998,31,508,539 +2012-02-01 18:00:00,1,0,1,1,22.96,26.515,46,11.0014,12,514,526 +2012-02-01 19:00:00,1,0,1,1,22.14,25.76,52,19.0012,20,315,335 +2012-02-01 20:00:00,1,0,1,1,21.32,25,52,11.0014,10,254,264 +2012-02-01 21:00:00,1,0,1,1,21.32,25,52,11.0014,16,217,233 +2012-02-01 22:00:00,1,0,1,1,20.5,24.24,55,12.998,7,133,140 +2012-02-01 23:00:00,1,0,1,1,18.86,22.725,63,6.0032,22,75,97 +2012-02-02 00:00:00,1,0,1,1,18.86,22.725,59,8.9981,7,24,31 +2012-02-02 01:00:00,1,0,1,2,18.86,22.725,55,0,3,14,17 +2012-02-02 02:00:00,1,0,1,2,17.22,21.21,67,8.9981,2,7,9 +2012-02-02 03:00:00,1,0,1,2,17.22,21.21,67,8.9981,0,2,2 +2012-02-02 04:00:00,1,0,1,3,16.4,20.455,82,6.0032,0,1,1 +2012-02-02 05:00:00,1,0,1,3,16.4,20.455,82,0,0,19,19 +2012-02-02 06:00:00,1,0,1,3,14.76,18.94,90,0,1,73,74 +2012-02-02 07:00:00,1,0,1,3,14.76,18.94,93,0,4,201,205 +2012-02-02 08:00:00,1,0,1,3,16.4,20.455,87,0,9,436,445 +2012-02-02 09:00:00,1,0,1,3,15.58,19.695,87,0,15,213,228 +2012-02-02 10:00:00,1,0,1,3,17.22,21.21,77,7.0015,6,72,78 +2012-02-02 11:00:00,1,0,1,3,16.4,20.455,82,16.9979,6,99,105 +2012-02-02 12:00:00,1,0,1,1,17.22,21.21,82,0,8,140,148 +2012-02-02 13:00:00,1,0,1,2,17.22,21.21,77,0,13,124,137 +2012-02-02 14:00:00,1,0,1,1,16.4,20.455,76,7.0015,12,129,141 +2012-02-02 15:00:00,1,0,1,1,18.86,22.725,67,11.0014,24,150,174 +2012-02-02 16:00:00,1,0,1,1,18.86,22.725,55,19.0012,18,211,229 +2012-02-02 17:00:00,1,0,1,1,17.22,21.21,54,32.9975,13,437,450 +2012-02-02 18:00:00,1,0,1,1,16.4,20.455,43,31.0009,17,393,410 +2012-02-02 19:00:00,1,0,1,1,15.58,19.695,43,35.0008,16,311,327 +2012-02-02 20:00:00,1,0,1,1,14.76,15.91,46,35.0008,9,204,213 +2012-02-02 21:00:00,1,0,1,1,13.94,15.15,46,27.9993,4,144,148 +2012-02-02 22:00:00,1,0,1,1,13.12,14.395,49,27.9993,3,106,109 +2012-02-02 23:00:00,1,0,1,1,13.12,15.15,49,16.9979,0,61,61 +2012-02-03 00:00:00,1,0,1,1,13.12,14.395,53,26.0027,1,37,38 +2012-02-03 01:00:00,1,0,1,1,12.3,13.635,56,22.0028,3,19,22 +2012-02-03 02:00:00,1,0,1,1,12.3,14.395,52,15.0013,0,6,6 +2012-02-03 03:00:00,1,0,1,1,11.48,12.88,56,19.9995,0,4,4 +2012-02-03 04:00:00,1,0,1,1,10.66,12.88,60,15.0013,0,2,2 +2012-02-03 05:00:00,1,0,1,1,10.66,12.88,60,15.0013,0,17,17 +2012-02-03 06:00:00,1,0,1,1,9.84,12.12,65,11.0014,0,88,88 +2012-02-03 07:00:00,1,0,1,1,9.84,11.365,65,15.0013,10,216,226 +2012-02-03 08:00:00,1,0,1,1,9.84,11.365,65,15.0013,12,429,441 +2012-02-03 09:00:00,1,0,1,1,9.84,11.365,65,12.998,18,252,270 +2012-02-03 10:00:00,1,0,1,1,11.48,12.88,56,19.0012,15,114,129 +2012-02-03 11:00:00,1,0,1,1,13.12,15.15,53,19.9995,15,149,164 +2012-02-03 12:00:00,1,0,1,1,13.94,16.665,46,8.9981,25,191,216 +2012-02-03 13:00:00,1,0,1,1,14.76,18.18,46,0,25,173,198 +2012-02-03 14:00:00,1,0,1,1,14.76,17.425,46,15.0013,22,148,170 +2012-02-03 15:00:00,1,0,1,1,15.58,19.695,40,0,48,168,216 +2012-02-03 16:00:00,1,0,1,1,16.4,20.455,37,7.0015,36,275,311 +2012-02-03 17:00:00,1,0,1,1,16.4,20.455,37,6.0032,30,458,488 +2012-02-03 18:00:00,1,0,1,1,15.58,19.695,40,8.9981,17,368,385 +2012-02-03 19:00:00,1,0,1,1,13.94,17.425,49,7.0015,11,256,267 +2012-02-03 20:00:00,1,0,1,1,13.94,17.425,49,7.0015,8,155,163 +2012-02-03 21:00:00,1,0,1,1,13.94,17.425,49,7.0015,8,126,134 +2012-02-03 22:00:00,1,0,1,1,13.94,17.425,49,7.0015,3,116,119 +2012-02-03 23:00:00,1,0,1,1,10.66,13.635,70,7.0015,3,74,77 +2012-02-04 00:00:00,1,0,0,1,10.66,13.635,70,7.0015,10,76,86 +2012-02-04 01:00:00,1,0,0,1,10.66,13.635,70,7.0015,0,43,43 +2012-02-04 02:00:00,1,0,0,1,9.84,12.88,70,6.0032,6,38,44 +2012-02-04 03:00:00,1,0,0,1,9.84,14.395,75,0,1,17,18 +2012-02-04 04:00:00,1,0,0,1,9.84,12.88,81,6.0032,1,5,6 +2012-02-04 05:00:00,1,0,0,1,9.84,12.88,81,6.0032,1,3,4 +2012-02-04 06:00:00,1,0,0,1,9.02,11.365,87,8.9981,1,4,5 +2012-02-04 07:00:00,1,0,0,2,9.84,12.12,87,8.9981,1,27,28 +2012-02-04 08:00:00,1,0,0,1,9.84,14.395,87,0,4,86,90 +2012-02-04 09:00:00,1,0,0,1,9.84,12.12,81,8.9981,16,141,157 +2012-02-04 10:00:00,1,0,0,1,9.84,12.88,87,7.0015,31,193,224 +2012-02-04 11:00:00,1,0,0,1,12.3,16.665,70,0,46,224,270 +2012-02-04 12:00:00,1,0,0,2,12.3,15.91,70,6.0032,40,260,300 +2012-02-04 13:00:00,1,0,0,2,12.3,14.395,70,12.998,58,244,302 +2012-02-04 14:00:00,1,0,0,2,13.12,15.15,66,15.0013,47,229,276 +2012-02-04 15:00:00,1,0,0,2,13.12,15.15,66,15.0013,61,244,305 +2012-02-04 16:00:00,1,0,0,2,13.94,16.665,61,11.0014,20,123,143 +2012-02-04 17:00:00,1,0,0,3,12.3,14.395,70,12.998,13,54,67 +2012-02-04 18:00:00,1,0,0,3,11.48,13.635,75,11.0014,6,58,64 +2012-02-04 19:00:00,1,0,0,3,10.66,13.635,87,8.9981,5,75,80 +2012-02-04 20:00:00,1,0,0,3,9.84,11.365,93,12.998,4,73,77 +2012-02-04 21:00:00,1,0,0,3,9.84,12.12,93,8.9981,4,74,78 +2012-02-04 22:00:00,1,0,0,2,9.84,12.88,87,6.0032,4,91,95 +2012-02-04 23:00:00,1,0,0,2,9.84,12.12,87,8.9981,4,66,70 +2012-02-05 00:00:00,1,0,0,2,9.84,12.12,87,8.9981,3,58,61 +2012-02-05 01:00:00,1,0,0,2,9.84,12.88,93,7.0015,5,46,51 +2012-02-05 02:00:00,1,0,0,2,9.84,12.88,93,7.0015,4,59,63 +2012-02-05 03:00:00,1,0,0,3,9.84,12.88,87,6.0032,4,13,17 +2012-02-05 04:00:00,1,0,0,2,9.84,12.12,87,8.9981,0,9,9 +2012-02-05 05:00:00,1,0,0,3,10.66,12.88,81,12.998,0,4,4 +2012-02-05 06:00:00,1,0,0,2,10.66,12.12,70,16.9979,0,4,4 +2012-02-05 07:00:00,1,0,0,2,9.84,12.12,75,11.0014,0,16,16 +2012-02-05 08:00:00,1,0,0,2,9.84,12.12,75,11.0014,4,58,62 +2012-02-05 09:00:00,1,0,0,2,9.84,11.365,70,15.0013,9,83,92 +2012-02-05 10:00:00,1,0,0,2,10.66,12.12,65,19.0012,10,138,148 +2012-02-05 11:00:00,1,0,0,2,10.66,12.88,70,12.998,22,160,182 +2012-02-05 12:00:00,1,0,0,2,10.66,12.88,65,12.998,25,223,248 +2012-02-05 13:00:00,1,0,0,2,11.48,13.635,61,11.0014,33,241,274 +2012-02-05 14:00:00,1,0,0,1,12.3,15.15,61,11.0014,40,203,243 +2012-02-05 15:00:00,1,0,0,2,12.3,14.395,56,16.9979,55,217,272 +2012-02-05 16:00:00,1,0,0,1,12.3,14.395,56,15.0013,35,261,296 +2012-02-05 17:00:00,1,0,0,1,13.12,15.91,53,11.0014,31,275,306 +2012-02-05 18:00:00,1,0,0,1,12.3,14.395,52,16.9979,10,171,181 +2012-02-05 19:00:00,1,0,0,1,12.3,14.395,52,15.0013,6,63,69 +2012-02-05 20:00:00,1,0,0,1,11.48,13.635,56,12.998,3,47,50 +2012-02-05 21:00:00,1,0,0,1,11.48,14.395,56,7.0015,6,60,66 +2012-02-05 22:00:00,1,0,0,1,10.66,13.635,60,7.0015,9,182,191 +2012-02-05 23:00:00,1,0,0,1,9.84,12.12,70,8.9981,4,38,42 +2012-02-06 00:00:00,1,0,1,1,9.84,12.12,65,8.9981,7,14,21 +2012-02-06 01:00:00,1,0,1,1,9.02,12.88,75,6.0032,0,6,6 +2012-02-06 02:00:00,1,0,1,1,9.02,13.635,75,0,0,3,3 +2012-02-06 04:00:00,1,0,1,1,7.38,10.605,80,7.0015,0,2,2 +2012-02-06 05:00:00,1,0,1,1,7.38,10.605,80,7.0015,0,17,17 +2012-02-06 06:00:00,1,0,1,1,6.56,9.09,86,7.0015,0,72,72 +2012-02-06 07:00:00,1,0,1,1,6.56,9.09,86,7.0015,5,229,234 +2012-02-06 08:00:00,1,0,1,1,6.56,9.09,86,8.9981,10,434,444 +2012-02-06 09:00:00,1,0,1,1,7.38,10.605,80,7.0015,8,269,277 +2012-02-06 10:00:00,1,0,1,1,9.02,12.12,75,7.0015,20,96,116 +2012-02-06 11:00:00,1,0,1,1,10.66,13.635,70,8.9981,12,104,116 +2012-02-06 12:00:00,1,0,1,1,13.12,15.91,61,11.0014,19,131,150 +2012-02-06 13:00:00,1,0,1,1,15.58,19.695,40,15.0013,17,124,141 +2012-02-06 14:00:00,1,0,1,1,16.4,20.455,35,11.0014,14,126,140 +2012-02-06 15:00:00,1,0,1,1,17.22,21.21,32,19.0012,25,146,171 +2012-02-06 16:00:00,1,0,1,1,16.4,20.455,43,16.9979,13,215,228 +2012-02-06 17:00:00,1,0,1,1,16.4,20.455,43,16.9979,13,417,430 +2012-02-06 18:00:00,1,0,1,1,15.58,19.695,43,15.0013,11,426,437 +2012-02-06 19:00:00,1,0,1,1,14.76,16.665,43,16.9979,7,284,291 +2012-02-06 20:00:00,1,0,1,1,13.94,16.665,46,11.0014,7,194,201 +2012-02-06 21:00:00,1,0,1,1,13.12,15.91,57,11.0014,11,143,154 +2012-02-06 22:00:00,1,0,1,1,12.3,15.15,65,8.9981,4,83,87 +2012-02-06 23:00:00,1,0,1,1,12.3,15.15,65,8.9981,3,43,46 +2012-02-07 00:00:00,1,0,1,1,12.3,14.395,70,12.998,1,22,23 +2012-02-07 01:00:00,1,0,1,1,11.48,14.395,61,8.9981,8,6,14 +2012-02-07 02:00:00,1,0,1,1,12.3,16.665,61,0,0,4,4 +2012-02-07 03:00:00,1,0,1,2,12.3,16.665,70,0,1,1,2 +2012-02-07 04:00:00,1,0,1,2,12.3,16.665,70,0,0,3,3 +2012-02-07 05:00:00,1,0,1,1,13.12,16.665,49,6.0032,0,15,15 +2012-02-07 06:00:00,1,0,1,1,13.12,15.15,45,19.9995,2,98,100 +2012-02-07 07:00:00,1,0,1,1,13.12,17.425,45,0,6,293,299 +2012-02-07 08:00:00,1,0,1,1,12.3,15.91,49,0,7,522,529 +2012-02-07 09:00:00,1,0,1,1,13.12,16.665,49,0,11,278,289 +2012-02-07 10:00:00,1,0,1,1,13.94,16.665,46,11.0014,12,104,116 +2012-02-07 11:00:00,1,0,1,1,14.76,17.425,46,12.998,9,120,129 +2012-02-07 12:00:00,1,0,1,1,16.4,20.455,40,22.0028,9,163,172 +2012-02-07 13:00:00,1,0,1,1,18.04,21.97,38,16.9979,15,169,184 +2012-02-07 14:00:00,1,0,1,1,18.04,21.97,38,16.9979,11,127,138 +2012-02-07 15:00:00,1,0,1,1,18.04,21.97,38,12.998,13,133,146 +2012-02-07 16:00:00,1,0,1,1,18.04,21.97,35,16.9979,19,257,276 +2012-02-07 17:00:00,1,0,1,1,18.04,21.97,35,12.998,15,494,509 +2012-02-07 18:00:00,1,0,1,1,17.22,21.21,38,12.998,10,508,518 +2012-02-07 19:00:00,1,0,1,1,15.58,19.695,43,15.0013,11,327,338 +2012-02-07 20:00:00,1,0,1,1,14.76,17.425,50,8.9981,6,206,212 +2012-02-07 21:00:00,1,0,1,1,13.94,17.425,61,7.0015,20,170,190 +2012-02-07 22:00:00,1,0,1,1,13.12,15.91,57,12.998,11,107,118 +2012-02-07 23:00:00,1,0,1,1,13.12,16.665,57,8.9981,2,49,51 +2012-02-08 00:00:00,1,0,1,1,12.3,14.395,56,15.0013,2,21,23 +2012-02-08 01:00:00,1,0,1,1,11.48,13.635,61,11.0014,1,9,10 +2012-02-08 02:00:00,1,0,1,1,10.66,15.15,65,0,0,1,1 +2012-02-08 03:00:00,1,0,1,1,10.66,15.15,65,0,0,1,1 +2012-02-08 04:00:00,1,0,1,1,9.84,12.88,70,6.0032,0,1,1 +2012-02-08 05:00:00,1,0,1,1,9.84,12.88,70,6.0032,0,20,20 +2012-02-08 06:00:00,1,0,1,2,9.84,14.395,70,0,3,95,98 +2012-02-08 07:00:00,1,0,1,2,9.84,12.88,70,7.0015,5,276,281 +2012-02-08 08:00:00,1,0,1,2,9.84,11.365,70,15.0013,13,495,508 +2012-02-08 09:00:00,1,0,1,2,9.84,12.88,70,11.0014,8,245,253 +2012-02-08 10:00:00,1,0,1,2,10.66,12.88,70,15.0013,1,107,108 +2012-02-08 11:00:00,1,0,1,2,10.66,12.88,65,15.0013,5,97,102 +2012-02-08 12:00:00,1,0,1,2,11.48,12.88,65,19.0012,14,124,138 +2012-02-08 13:00:00,1,0,1,2,11.48,14.395,61,7.0015,15,111,126 +2012-02-08 14:00:00,1,0,1,2,12.3,15.15,56,11.0014,8,100,108 +2012-02-08 15:00:00,1,0,1,3,12.3,15.91,61,7.0015,5,49,54 +2012-02-08 16:00:00,1,0,1,3,10.66,13.635,81,7.0015,2,73,75 +2012-02-08 17:00:00,1,0,1,3,9.84,12.88,87,7.0015,8,147,155 +2012-02-08 18:00:00,1,0,1,3,9.84,12.88,87,7.0015,4,163,167 +2012-02-08 19:00:00,1,0,1,3,9.84,12.88,87,7.0015,3,158,161 +2012-02-08 20:00:00,1,0,1,3,9.84,12.12,87,8.9981,3,122,125 +2012-02-08 21:00:00,1,0,1,3,9.84,11.365,87,12.998,3,126,129 +2012-02-08 22:00:00,1,0,1,2,9.84,12.12,87,8.9981,3,95,98 +2012-02-08 23:00:00,1,0,1,2,9.84,12.12,87,11.0014,3,57,60 +2012-02-09 00:00:00,1,0,1,2,9.84,12.12,87,11.0014,3,23,26 +2012-02-09 01:00:00,1,0,1,2,9.84,12.12,87,8.9981,2,10,12 +2012-02-09 02:00:00,1,0,1,1,9.02,11.365,80,8.9981,0,2,2 +2012-02-09 03:00:00,1,0,1,1,9.02,10.605,80,19.0012,0,4,4 +2012-02-09 04:00:00,1,0,1,2,9.02,9.85,75,30.0026,0,1,1 +2012-02-09 05:00:00,1,0,1,1,8.2,9.09,75,19.0012,0,18,18 +2012-02-09 06:00:00,1,0,1,1,8.2,9.09,75,19.0012,1,75,76 +2012-02-09 07:00:00,1,0,1,1,8.2,9.85,69,16.9979,4,263,267 +2012-02-09 08:00:00,1,0,1,1,8.2,9.85,64,16.9979,11,473,484 +2012-02-09 09:00:00,1,0,1,1,8.2,9.85,59,15.0013,9,229,238 +2012-02-09 10:00:00,1,0,1,1,9.02,10.605,51,15.0013,7,90,97 +2012-02-09 11:00:00,1,0,1,1,9.84,11.365,52,15.0013,4,95,99 +2012-02-09 12:00:00,1,0,1,1,10.66,11.365,48,22.0028,10,148,158 +2012-02-09 13:00:00,1,0,1,1,12.3,13.635,42,22.0028,10,144,154 +2012-02-09 14:00:00,1,0,1,1,13.12,15.15,39,19.9995,18,126,144 +2012-02-09 15:00:00,1,0,1,1,13.12,15.15,36,19.9995,14,120,134 +2012-02-09 16:00:00,1,0,1,1,13.94,16.665,36,0,15,223,238 +2012-02-09 17:00:00,1,0,1,1,13.94,16.665,34,8.9981,12,387,399 +2012-02-09 18:00:00,1,0,1,1,13.94,16.665,31,11.0014,13,404,417 +2012-02-09 19:00:00,1,0,1,1,13.12,16.665,33,7.0015,8,287,295 +2012-02-09 20:00:00,1,0,1,1,13.12,17.425,36,0,2,197,199 +2012-02-09 21:00:00,1,0,1,1,12.3,15.91,52,6.0032,8,169,177 +2012-02-09 22:00:00,1,0,1,2,12.3,16.665,56,0,3,104,107 +2012-02-09 23:00:00,1,0,1,2,12.3,16.665,52,0,9,75,84 +2012-02-10 00:00:00,1,0,1,2,11.48,15.15,65,6.0032,4,39,43 +2012-02-10 01:00:00,1,0,1,2,11.48,15.15,61,6.0032,2,11,13 +2012-02-10 02:00:00,1,0,1,1,10.66,14.395,52,6.0032,7,9,16 +2012-02-10 03:00:00,1,0,1,1,10.66,14.395,56,6.0032,0,5,5 +2012-02-10 04:00:00,1,0,1,1,10.66,14.395,56,6.0032,0,2,2 +2012-02-10 05:00:00,1,0,1,1,9.84,11.365,52,15.0013,0,17,17 +2012-02-10 06:00:00,1,0,1,1,8.2,9.85,59,12.998,3,61,64 +2012-02-10 07:00:00,1,0,1,1,8.2,10.605,59,11.0014,5,225,230 +2012-02-10 08:00:00,1,0,1,1,8.2,10.605,59,11.0014,1,447,448 +2012-02-10 09:00:00,1,0,1,1,9.02,11.365,55,11.0014,10,265,275 +2012-02-10 10:00:00,1,0,1,2,10.66,13.635,48,8.9981,5,119,124 +2012-02-10 11:00:00,1,0,1,2,11.48,14.395,45,7.0015,19,134,153 +2012-02-10 12:00:00,1,0,1,2,12.3,15.15,42,8.9981,8,168,176 +2012-02-10 13:00:00,1,0,1,2,12.3,15.91,42,6.0032,22,170,192 +2012-02-10 14:00:00,1,0,1,2,13.12,16.665,39,6.0032,8,138,146 +2012-02-10 15:00:00,1,0,1,2,13.12,16.665,45,8.9981,27,164,191 +2012-02-10 16:00:00,1,0,1,2,13.94,15.91,42,16.9979,28,240,268 +2012-02-10 17:00:00,1,0,1,2,13.94,16.665,42,12.998,15,381,396 +2012-02-10 18:00:00,1,0,1,3,12.3,15.15,61,8.9981,14,345,359 +2012-02-10 19:00:00,1,0,1,2,13.12,17.425,57,0,16,246,262 +2012-02-10 20:00:00,1,0,1,2,13.12,17.425,57,0,7,144,151 +2012-02-10 21:00:00,1,0,1,2,13.12,16.665,66,6.0032,14,108,122 +2012-02-10 22:00:00,1,0,1,2,13.12,17.425,66,0,11,102,113 +2012-02-10 23:00:00,1,0,1,2,12.3,15.91,70,6.0032,1,64,65 +2012-02-11 00:00:00,1,0,0,2,12.3,15.15,70,8.9981,3,50,53 +2012-02-11 01:00:00,1,0,0,3,11.48,14.395,81,8.9981,2,43,45 +2012-02-11 02:00:00,1,0,0,3,10.66,12.88,81,12.998,2,24,26 +2012-02-11 03:00:00,1,0,0,3,9.84,11.365,87,15.0013,0,9,9 +2012-02-11 04:00:00,1,0,0,3,9.84,11.365,87,15.0013,0,4,4 +2012-02-11 05:00:00,1,0,0,3,9.02,11.365,93,11.0014,0,2,2 +2012-02-11 06:00:00,1,0,0,3,9.02,11.365,93,8.9981,1,8,9 +2012-02-11 07:00:00,1,0,0,3,9.02,11.365,93,8.9981,0,19,19 +2012-02-11 08:00:00,1,0,0,3,9.02,11.365,93,8.9981,1,77,78 +2012-02-11 09:00:00,1,0,0,3,9.02,12.12,93,7.0015,5,85,90 +2012-02-11 10:00:00,1,0,0,3,9.02,12.12,93,7.0015,23,143,166 +2012-02-11 11:00:00,1,0,0,2,9.84,12.88,81,7.0015,26,157,183 +2012-02-11 12:00:00,1,0,0,2,10.66,12.88,81,11.0014,25,196,221 +2012-02-11 13:00:00,1,0,0,2,10.66,12.12,81,19.0012,18,217,235 +2012-02-11 14:00:00,1,0,0,2,10.66,12.12,81,16.9979,38,205,243 +2012-02-11 15:00:00,1,0,0,2,12.3,13.635,61,19.9995,12,112,124 +2012-02-11 16:00:00,1,0,0,3,9.02,9.85,75,27.9993,12,134,146 +2012-02-11 17:00:00,1,0,0,3,9.02,9.09,69,31.0009,13,131,144 +2012-02-11 18:00:00,1,0,0,2,9.02,9.09,47,43.9989,3,105,108 +2012-02-11 19:00:00,1,0,0,2,8.2,7.575,40,36.9974,2,85,87 +2012-02-11 20:00:00,1,0,0,2,6.56,6.06,43,36.9974,1,62,63 +2012-02-11 21:00:00,1,0,0,1,5.74,3.79,43,43.0006,5,43,48 +2012-02-11 22:00:00,1,0,0,2,5.74,5.305,39,26.0027,0,46,46 +2012-02-11 23:00:00,1,0,0,3,4.92,3.79,50,32.9975,0,20,20 +2012-02-12 00:00:00,1,0,0,3,4.1,3.79,68,26.0027,0,21,21 +2012-02-12 01:00:00,1,0,0,3,3.28,2.275,79,31.0009,0,24,24 +2012-02-12 02:00:00,1,0,0,2,4.1,3.03,58,39.0007,1,26,27 +2012-02-12 03:00:00,1,0,0,2,4.1,2.275,46,46.0022,0,14,14 +2012-02-12 04:00:00,1,0,0,2,4.1,2.275,46,47.9988,0,1,1 +2012-02-12 05:00:00,1,0,0,1,4.1,3.79,49,26.0027,0,3,3 +2012-02-12 06:00:00,1,0,0,1,4.1,3.79,49,26.0027,0,2,2 +2012-02-12 07:00:00,1,0,0,1,3.28,4.545,53,12.998,0,18,18 +2012-02-12 08:00:00,1,0,0,1,3.28,3.79,53,16.9979,0,26,26 +2012-02-12 09:00:00,1,0,0,1,4.1,4.545,49,19.9995,3,60,63 +2012-02-12 10:00:00,1,0,0,1,4.92,5.305,42,23.9994,8,83,91 +2012-02-12 11:00:00,1,0,0,1,4.92,5.305,42,19.9995,3,121,124 +2012-02-12 12:00:00,1,0,0,1,5.74,3.79,39,43.0006,7,133,140 +2012-02-12 13:00:00,1,0,0,1,6.56,6.06,40,30.0026,10,128,138 +2012-02-12 14:00:00,1,0,0,1,6.56,6.06,40,35.0008,9,102,111 +2012-02-12 15:00:00,1,0,0,1,6.56,6.06,40,36.9974,5,150,155 +2012-02-12 16:00:00,1,0,0,1,8.2,8.335,34,31.0009,16,148,164 +2012-02-12 17:00:00,1,0,0,1,7.38,7.575,37,27.9993,4,83,87 +2012-02-12 18:00:00,1,0,0,1,6.56,6.06,40,31.0009,4,92,96 +2012-02-12 19:00:00,1,0,0,1,6.56,6.82,40,19.0012,2,78,80 +2012-02-12 20:00:00,1,0,0,1,5.74,6.06,42,22.0028,1,56,57 +2012-02-12 21:00:00,1,0,0,1,5.74,6.06,43,19.9995,0,36,36 +2012-02-12 22:00:00,1,0,0,1,5.74,7.575,43,11.0014,0,28,28 +2012-02-12 23:00:00,1,0,0,1,5.74,6.82,43,15.0013,0,23,23 +2012-02-13 00:00:00,1,0,1,1,5.74,6.82,46,15.0013,0,9,9 +2012-02-13 01:00:00,1,0,1,1,4.92,6.06,50,15.0013,0,6,6 +2012-02-13 02:00:00,1,0,1,1,5.74,6.82,46,12.998,0,4,4 +2012-02-13 03:00:00,1,0,1,1,4.92,7.575,54,7.0015,0,1,1 +2012-02-13 04:00:00,1,0,1,1,4.92,8.335,54,6.0032,0,2,2 +2012-02-13 05:00:00,1,0,1,1,4.1,6.06,58,8.9981,0,17,17 +2012-02-13 06:00:00,1,0,1,1,4.1,5.305,54,15.0013,1,71,72 +2012-02-13 07:00:00,1,0,1,1,4.1,5.305,54,12.998,1,194,195 +2012-02-13 08:00:00,1,0,1,1,4.1,6.06,54,8.9981,4,413,417 +2012-02-13 09:00:00,1,0,1,1,4.92,6.82,50,12.998,7,198,205 +2012-02-13 10:00:00,1,0,1,1,5.74,7.575,50,8.9981,1,70,71 +2012-02-13 11:00:00,1,0,1,1,9.02,11.365,37,12.998,5,85,90 +2012-02-13 12:00:00,1,0,1,1,11.48,12.88,28,22.0028,7,111,118 +2012-02-13 13:00:00,1,0,1,1,13.12,15.15,22,15.0013,11,129,140 +2012-02-13 14:00:00,1,0,1,1,13.94,17.425,23,7.0015,10,125,135 +2012-02-13 15:00:00,1,0,1,1,14.76,17.425,27,8.9981,10,145,155 +2012-02-13 16:00:00,1,0,1,1,14.76,17.425,23,12.998,5,206,211 +2012-02-13 17:00:00,1,0,1,1,14.76,17.425,23,12.998,8,399,407 +2012-02-13 18:00:00,1,0,1,1,13.94,15.91,25,16.9979,6,399,405 +2012-02-13 19:00:00,1,0,1,1,13.94,16.665,25,8.9981,7,256,263 +2012-02-13 20:00:00,1,0,1,1,12.3,15.15,42,11.0014,4,210,214 +2012-02-13 21:00:00,1,0,1,1,11.48,14.395,45,8.9981,2,145,147 +2012-02-13 22:00:00,1,0,1,1,10.66,13.635,56,7.0015,3,99,102 +2012-02-13 23:00:00,1,0,1,1,11.48,15.91,41,0,2,34,36 +2012-02-14 00:00:00,1,0,1,2,10.66,15.15,60,0,0,14,14 +2012-02-14 01:00:00,1,0,1,2,10.66,15.15,56,0,0,6,6 +2012-02-14 02:00:00,1,0,1,2,11.48,15.91,41,0,0,3,3 +2012-02-14 03:00:00,1,0,1,2,10.66,15.15,52,0,0,3,3 +2012-02-14 04:00:00,1,0,1,2,10.66,13.635,65,7.0015,0,2,2 +2012-02-14 05:00:00,1,0,1,2,10.66,13.635,65,7.0015,2,20,22 +2012-02-14 06:00:00,1,0,1,2,10.66,15.15,56,0,1,89,90 +2012-02-14 07:00:00,1,0,1,2,9.84,12.88,60,6.0032,4,276,280 +2012-02-14 08:00:00,1,0,1,2,9.84,14.395,70,0,3,510,513 +2012-02-14 09:00:00,1,0,1,2,10.66,14.395,56,6.0032,6,256,262 +2012-02-14 10:00:00,1,0,1,2,10.66,13.635,60,8.9981,8,90,98 +2012-02-14 11:00:00,1,0,1,2,12.3,15.15,45,11.0014,5,107,112 +2012-02-14 12:00:00,1,0,1,2,12.3,14.395,52,15.0013,10,162,172 +2012-02-14 13:00:00,1,0,1,2,14.76,16.665,40,16.9979,6,167,173 +2012-02-14 14:00:00,1,0,1,1,16.4,20.455,40,15.0013,13,111,124 +2012-02-14 15:00:00,1,0,1,2,17.22,21.21,38,30.0026,7,138,145 +2012-02-14 16:00:00,1,0,1,1,17.22,21.21,35,19.9995,15,251,266 +2012-02-14 17:00:00,1,0,1,1,17.22,21.21,38,23.9994,19,504,523 +2012-02-14 18:00:00,1,0,1,2,15.58,19.695,46,19.9995,8,398,406 +2012-02-14 19:00:00,1,0,1,2,14.76,17.425,50,11.0014,11,270,281 +2012-02-14 20:00:00,1,0,1,2,15.58,19.695,46,8.9981,6,178,184 +2012-02-14 21:00:00,1,0,1,2,14.76,18.18,50,7.0015,4,105,109 +2012-02-14 22:00:00,1,0,1,2,14.76,18.18,50,7.0015,5,72,77 +2012-02-14 23:00:00,1,0,1,2,14.76,18.18,50,6.0032,2,55,57 +2012-02-15 00:00:00,1,0,1,1,13.12,17.425,57,0,0,22,22 +2012-02-15 01:00:00,1,0,1,1,13.94,18.18,53,0,0,5,5 +2012-02-15 02:00:00,1,0,1,1,12.3,16.665,61,0,0,4,4 +2012-02-15 03:00:00,1,0,1,1,11.48,15.91,75,0,0,3,3 +2012-02-15 04:00:00,1,0,1,1,11.48,14.395,70,7.0015,0,1,1 +2012-02-15 05:00:00,1,0,1,1,11.48,14.395,70,7.0015,0,25,25 +2012-02-15 06:00:00,1,0,1,1,12.3,15.15,61,8.9981,3,92,95 +2012-02-15 07:00:00,1,0,1,2,12.3,14.395,65,12.998,3,318,321 +2012-02-15 08:00:00,1,0,1,1,13.12,14.395,61,23.9994,7,508,515 +2012-02-15 09:00:00,1,0,1,1,13.12,15.15,61,22.0028,5,226,231 +2012-02-15 10:00:00,1,0,1,1,13.94,15.15,57,19.9995,12,108,120 +2012-02-15 11:00:00,1,0,1,1,14.76,16.665,53,19.0012,13,125,138 +2012-02-15 12:00:00,1,0,1,1,15.58,19.695,46,26.0027,11,152,163 +2012-02-15 13:00:00,1,0,1,1,16.4,20.455,43,19.0012,11,159,170 +2012-02-15 14:00:00,1,0,1,1,17.22,21.21,41,23.9994,6,128,134 +2012-02-15 15:00:00,1,0,1,1,17.22,21.21,41,15.0013,7,164,171 +2012-02-15 16:00:00,1,0,1,1,17.22,21.21,38,12.998,9,222,231 +2012-02-15 17:00:00,1,0,1,1,17.22,21.21,38,12.998,17,470,487 +2012-02-15 18:00:00,1,0,1,1,16.4,20.455,40,15.0013,9,459,468 +2012-02-15 19:00:00,1,0,1,1,15.58,19.695,43,11.0014,9,302,311 +2012-02-15 20:00:00,1,0,1,1,14.76,17.425,46,11.0014,4,207,211 +2012-02-15 21:00:00,1,0,1,1,13.94,16.665,53,11.0014,8,170,178 +2012-02-15 22:00:00,1,0,1,1,13.94,17.425,49,7.0015,3,104,107 +2012-02-15 23:00:00,1,0,1,1,13.94,17.425,53,6.0032,4,54,58 +2012-02-16 00:00:00,1,0,1,2,12.3,15.15,70,8.9981,1,22,23 +2012-02-16 01:00:00,1,0,1,2,12.3,16.665,70,0,0,5,5 +2012-02-16 02:00:00,1,0,1,2,12.3,15.91,70,6.0032,1,6,7 +2012-02-16 03:00:00,1,0,1,2,12.3,16.665,61,0,0,1,1 +2012-02-16 04:00:00,1,0,1,3,12.3,15.91,70,6.0032,0,3,3 +2012-02-16 05:00:00,1,0,1,2,12.3,16.665,70,0,0,20,20 +2012-02-16 06:00:00,1,0,1,2,12.3,15.91,70,6.0032,4,83,87 +2012-02-16 07:00:00,1,0,1,2,12.3,15.15,70,8.9981,3,285,288 +2012-02-16 08:00:00,1,0,1,2,12.3,15.91,70,6.0032,9,489,498 +2012-02-16 09:00:00,1,0,1,2,12.3,15.15,70,11.0014,3,199,202 +2012-02-16 10:00:00,1,0,1,3,13.12,16.665,70,8.9981,2,42,44 +2012-02-16 11:00:00,1,0,1,3,13.12,16.665,70,7.0015,2,69,71 +2012-02-16 12:00:00,1,0,1,3,13.12,16.665,76,6.0032,1,44,45 +2012-02-16 13:00:00,1,0,1,3,13.94,15.91,71,16.9979,2,62,64 +2012-02-16 14:00:00,1,0,1,3,13.12,15.91,81,12.998,1,30,31 +2012-02-16 15:00:00,1,0,1,3,13.94,18.18,76,0,3,50,53 +2012-02-16 16:00:00,1,0,1,3,13.94,18.18,81,0,8,110,118 +2012-02-16 17:00:00,1,0,1,3,13.94,18.18,87,0,8,281,289 +2012-02-16 18:00:00,1,0,1,3,13.94,16.665,87,8.9981,8,345,353 +2012-02-16 19:00:00,1,0,1,2,13.12,15.91,87,11.0014,4,254,258 +2012-02-16 20:00:00,1,0,1,2,13.12,16.665,87,8.9981,5,211,216 +2012-02-16 21:00:00,1,0,1,2,13.94,17.425,81,7.0015,3,142,145 +2012-02-16 22:00:00,1,0,1,2,13.12,17.425,81,0,3,108,111 +2012-02-16 23:00:00,1,0,1,1,13.12,16.665,81,6.0032,3,70,73 +2012-02-17 00:00:00,1,0,1,2,12.3,16.665,87,0,2,32,34 +2012-02-17 01:00:00,1,0,1,2,12.3,16.665,93,0,2,16,18 +2012-02-17 02:00:00,1,0,1,2,12.3,15.91,93,7.0015,1,11,12 +2012-02-17 03:00:00,1,0,1,2,11.48,14.395,93,7.0015,0,1,1 +2012-02-17 04:00:00,1,0,1,2,11.48,13.635,93,12.998,0,1,1 +2012-02-17 05:00:00,1,0,1,2,11.48,13.635,93,11.0014,0,16,16 +2012-02-17 06:00:00,1,0,1,2,11.48,14.395,96,8.9981,1,70,71 +2012-02-17 07:00:00,1,0,1,2,11.48,14.395,93,7.0015,4,222,226 +2012-02-17 08:00:00,1,0,1,2,10.66,15.15,100,0,4,516,520 +2012-02-17 09:00:00,1,0,1,2,10.66,15.15,100,0,8,275,283 +2012-02-17 10:00:00,1,0,1,1,13.94,15.91,71,19.0012,13,103,116 +2012-02-17 11:00:00,1,0,1,1,14.76,16.665,62,27.9993,9,133,142 +2012-02-17 12:00:00,1,0,1,1,15.58,19.695,46,26.0027,21,177,198 +2012-02-17 13:00:00,1,0,1,1,16.4,20.455,43,23.9994,34,171,205 +2012-02-17 14:00:00,1,0,1,1,16.4,20.455,37,23.9994,33,137,170 +2012-02-17 15:00:00,1,0,1,1,17.22,21.21,35,27.9993,41,180,221 +2012-02-17 16:00:00,1,0,1,1,17.22,21.21,32,19.9995,56,251,307 +2012-02-17 17:00:00,1,0,1,1,17.22,21.21,32,22.0028,36,429,465 +2012-02-17 18:00:00,1,0,1,1,16.4,20.455,35,16.9979,15,362,377 +2012-02-17 19:00:00,1,0,1,1,15.58,19.695,37,15.0013,16,266,282 +2012-02-17 20:00:00,1,0,1,1,16.4,20.455,35,12.998,13,158,171 +2012-02-17 21:00:00,1,0,1,1,15.58,19.695,37,12.998,15,114,129 +2012-02-17 22:00:00,1,0,1,1,14.76,17.425,40,15.0013,15,92,107 +2012-02-17 23:00:00,1,0,1,1,14.76,17.425,40,12.998,10,72,82 +2012-02-18 00:00:00,1,0,0,1,13.94,16.665,42,11.0014,5,81,86 +2012-02-18 01:00:00,1,0,0,1,13.12,15.91,49,11.0014,7,38,45 +2012-02-18 02:00:00,1,0,0,1,12.3,14.395,61,16.9979,6,39,45 +2012-02-18 03:00:00,1,0,0,1,11.48,14.395,65,7.0015,3,15,18 +2012-02-18 04:00:00,1,0,0,1,10.66,15.15,70,0,3,4,7 +2012-02-18 05:00:00,1,0,0,1,9.84,12.88,70,6.0032,0,1,1 +2012-02-18 06:00:00,1,0,0,1,9.84,14.395,70,0,1,8,9 +2012-02-18 07:00:00,1,0,0,1,9.84,14.395,70,0,8,33,41 +2012-02-18 08:00:00,1,0,0,1,9.02,13.635,87,0,10,92,102 +2012-02-18 09:00:00,1,0,0,1,9.02,12.12,80,7.0015,22,116,138 +2012-02-18 10:00:00,1,0,0,1,10.66,13.635,81,7.0015,48,157,205 +2012-02-18 11:00:00,1,0,0,1,13.12,16.665,57,8.9981,102,184,286 +2012-02-18 12:00:00,1,0,0,1,14.76,17.425,43,12.998,128,241,369 +2012-02-18 13:00:00,1,0,0,1,16.4,20.455,43,19.0012,165,219,384 +2012-02-18 14:00:00,1,0,0,1,18.04,21.97,35,23.9994,183,244,427 +2012-02-18 15:00:00,1,0,0,1,17.22,21.21,41,16.9979,229,270,499 +2012-02-18 16:00:00,1,0,0,1,18.04,21.97,44,22.0028,186,218,404 +2012-02-18 17:00:00,1,0,0,1,19.68,23.485,36,19.0012,142,222,364 +2012-02-18 18:00:00,1,0,0,1,18.86,22.725,38,19.9995,70,176,246 +2012-02-18 19:00:00,1,0,0,1,18.04,21.97,44,11.0014,38,150,188 +2012-02-18 20:00:00,1,0,0,1,18.04,21.97,44,11.0014,25,123,148 +2012-02-18 21:00:00,1,0,0,1,18.04,21.97,33,19.9995,25,89,114 +2012-02-18 22:00:00,1,0,0,1,16.4,20.455,40,30.0026,17,101,118 +2012-02-18 23:00:00,1,0,0,2,14.76,16.665,40,26.0027,12,62,74 +2012-02-19 00:00:00,1,0,0,2,13.94,15.15,39,23.9994,9,65,74 +2012-02-19 01:00:00,1,0,0,2,13.12,15.15,39,16.9979,10,62,72 +2012-02-19 02:00:00,1,0,0,2,12.3,14.395,36,19.0012,3,45,48 +2012-02-19 03:00:00,1,0,0,2,12.3,14.395,36,15.0013,3,12,15 +2012-02-19 04:00:00,1,0,0,2,11.48,12.88,41,26.0027,0,3,3 +2012-02-19 05:00:00,1,0,0,2,10.66,11.365,48,19.9995,1,1,2 +2012-02-19 06:00:00,1,0,0,1,9.84,10.605,52,22.0028,0,5,5 +2012-02-19 07:00:00,1,0,0,2,9.84,10.605,52,19.0012,2,12,14 +2012-02-19 08:00:00,1,0,0,2,9.84,11.365,56,12.998,8,48,56 +2012-02-19 09:00:00,1,0,0,2,9.84,11.365,56,16.9979,20,73,93 +2012-02-19 10:00:00,1,0,0,2,10.66,12.12,52,16.9979,49,142,191 +2012-02-19 11:00:00,1,0,0,2,10.66,11.365,56,22.0028,82,144,226 +2012-02-19 12:00:00,1,0,0,2,11.48,13.635,52,16.9979,71,184,255 +2012-02-19 13:00:00,1,0,0,1,12.3,15.15,49,11.0014,64,197,261 +2012-02-19 14:00:00,1,0,0,2,13.12,15.91,45,12.998,48,189,237 +2012-02-19 15:00:00,1,0,0,2,12.3,14.395,49,12.998,85,168,253 +2012-02-19 16:00:00,1,0,0,2,13.12,15.15,45,19.0012,62,150,212 +2012-02-19 17:00:00,1,0,0,2,12.3,14.395,49,16.9979,22,135,157 +2012-02-19 18:00:00,1,0,0,2,12.3,13.635,49,22.0028,23,144,167 +2012-02-19 19:00:00,1,0,0,2,12.3,14.395,52,16.9979,18,101,119 +2012-02-19 20:00:00,1,0,0,2,12.3,14.395,52,19.0012,22,81,103 +2012-02-19 21:00:00,1,0,0,3,10.66,12.88,65,11.0014,3,33,36 +2012-02-19 22:00:00,1,0,0,3,9.84,12.88,75,6.0032,8,47,55 +2012-02-19 23:00:00,1,0,0,2,9.02,11.365,93,11.0014,5,30,35 +2012-03-01 00:00:00,1,0,1,2,17.22,21.21,94,0,1,10,11 +2012-03-01 01:00:00,1,0,1,3,18.86,22.725,94,7.0015,0,12,12 +2012-03-01 02:00:00,1,0,1,2,18.86,22.725,94,19.0012,0,6,6 +2012-03-01 03:00:00,1,0,1,1,18.86,22.725,94,15.0013,0,3,3 +2012-03-01 04:00:00,1,0,1,1,19.68,23.485,88,12.998,0,5,5 +2012-03-01 05:00:00,1,0,1,1,19.68,23.485,88,11.0014,0,18,18 +2012-03-01 06:00:00,1,0,1,2,17.22,21.21,94,0,2,107,109 +2012-03-01 07:00:00,1,0,1,2,18.04,21.97,94,8.9981,8,296,304 +2012-03-01 08:00:00,1,0,1,1,17.22,21.21,94,8.9981,15,579,594 +2012-03-01 09:00:00,1,0,1,1,18.86,22.725,77,16.9979,5,281,286 +2012-03-01 10:00:00,1,0,1,1,21.32,25,55,11.0014,11,122,133 +2012-03-01 11:00:00,1,0,1,1,22.96,26.515,43,12.998,19,149,168 +2012-03-01 12:00:00,1,0,1,1,22.96,26.515,37,15.0013,16,204,220 +2012-03-01 13:00:00,1,0,1,1,23.78,27.275,32,16.9979,24,187,211 +2012-03-01 14:00:00,1,0,1,1,23.78,27.275,35,15.0013,37,174,211 +2012-03-01 15:00:00,1,0,1,1,24.6,31.06,31,16.9979,31,192,223 +2012-03-01 16:00:00,1,0,1,1,23.78,27.275,32,19.9995,38,323,361 +2012-03-01 17:00:00,1,0,1,1,22.96,26.515,35,19.9995,49,551,600 +2012-03-01 18:00:00,1,0,1,1,22.14,25.76,34,23.9994,27,498,525 +2012-03-01 19:00:00,1,0,1,1,19.68,23.485,41,22.0028,11,317,328 +2012-03-01 20:00:00,1,0,1,1,18.04,21.97,44,27.9993,12,242,254 +2012-03-01 21:00:00,1,0,1,1,17.22,21.21,47,31.0009,7,190,197 +2012-03-01 22:00:00,1,0,1,1,15.58,19.695,50,16.9979,3,123,126 +2012-03-01 23:00:00,1,0,1,1,14.76,17.425,50,15.0013,9,76,85 +2012-03-02 00:00:00,1,0,1,1,13.94,16.665,53,11.0014,1,45,46 +2012-03-02 01:00:00,1,0,1,1,13.94,15.91,49,15.0013,2,18,20 +2012-03-02 02:00:00,1,0,1,1,13.94,15.91,53,19.0012,2,4,6 +2012-03-02 03:00:00,1,0,1,1,13.12,15.91,57,12.998,0,3,3 +2012-03-02 04:00:00,1,0,1,1,13.12,17.425,61,0,0,2,2 +2012-03-02 05:00:00,1,0,1,1,12.3,16.665,70,0,0,24,24 +2012-03-02 06:00:00,1,0,1,1,12.3,16.665,70,0,4,88,92 +2012-03-02 07:00:00,1,0,1,1,12.3,16.665,70,0,4,258,262 +2012-03-02 08:00:00,1,0,1,1,11.48,15.15,75,6.0032,16,533,549 +2012-03-02 09:00:00,1,0,1,1,12.3,16.665,81,0,15,299,314 +2012-03-02 10:00:00,1,0,1,1,14.76,17.425,50,11.0014,14,118,132 +2012-03-02 11:00:00,1,0,1,1,15.58,19.695,46,12.998,40,154,194 +2012-03-02 12:00:00,1,0,1,1,16.4,20.455,43,11.0014,40,194,234 +2012-03-02 13:00:00,1,0,1,1,17.22,21.21,44,15.0013,31,191,222 +2012-03-02 14:00:00,1,0,1,2,18.04,21.97,44,19.0012,29,176,205 +2012-03-02 15:00:00,1,0,1,2,17.22,21.21,50,19.9995,5,73,78 +2012-03-02 16:00:00,1,0,1,3,16.4,20.455,58,19.9995,1,49,50 +2012-03-02 17:00:00,1,0,1,3,14.76,17.425,81,15.0013,5,123,128 +2012-03-02 18:00:00,1,0,1,3,14.76,17.425,87,12.998,6,154,160 +2012-03-02 19:00:00,1,0,1,3,14.76,17.425,87,12.998,12,162,174 +2012-03-02 20:00:00,1,0,1,2,14.76,17.425,87,12.998,7,93,100 +2012-03-02 21:00:00,1,0,1,3,14.76,18.18,87,6.0032,2,99,101 +2012-03-02 22:00:00,1,0,1,2,14.76,18.94,87,0,6,69,75 +2012-03-02 23:00:00,1,0,1,2,14.76,18.94,87,0,4,19,23 +2012-03-03 00:00:00,1,0,0,3,14.76,18.18,93,6.0032,1,21,22 +2012-03-03 01:00:00,1,0,0,3,14.76,18.94,93,0,0,44,44 +2012-03-03 02:00:00,1,0,0,3,14.76,18.18,93,6.0032,4,34,38 +2012-03-03 03:00:00,1,0,0,2,14.76,17.425,93,11.0014,1,20,21 +2012-03-03 04:00:00,1,0,0,2,14.76,17.425,93,12.998,0,2,2 +2012-03-03 05:00:00,1,0,0,2,14.76,18.18,93,6.0032,1,1,2 +2012-03-03 06:00:00,1,0,0,2,14.76,18.18,93,6.0032,1,6,7 +2012-03-03 07:00:00,1,0,0,2,14.76,17.425,93,8.9981,2,14,16 +2012-03-03 08:00:00,1,0,0,3,14.76,18.94,93,0,2,46,48 +2012-03-03 09:00:00,1,0,0,3,15.58,19.695,87,6.0032,7,87,94 +2012-03-03 10:00:00,1,0,0,2,16.4,20.455,87,0,31,137,168 +2012-03-03 11:00:00,1,0,0,2,16.4,20.455,87,6.0032,33,181,214 +2012-03-03 12:00:00,1,0,0,2,17.22,21.21,67,16.9979,47,252,299 +2012-03-03 13:00:00,1,0,0,1,18.04,21.97,51,19.0012,87,252,339 +2012-03-03 14:00:00,1,0,0,2,18.86,22.725,44,23.9994,151,279,430 +2012-03-03 15:00:00,1,0,0,1,19.68,23.485,29,19.9995,145,254,399 +2012-03-03 16:00:00,1,0,0,1,20.5,24.24,27,19.9995,167,300,467 +2012-03-03 17:00:00,1,0,0,1,20.5,24.24,23,22.0028,106,279,385 +2012-03-03 18:00:00,1,0,0,1,20.5,24.24,25,16.9979,53,250,303 +2012-03-03 19:00:00,1,0,0,1,18.86,22.725,33,11.0014,34,191,225 +2012-03-03 20:00:00,1,0,0,1,18.04,21.97,30,8.9981,28,121,149 +2012-03-03 21:00:00,1,0,0,1,18.86,22.725,19,22.0028,24,130,154 +2012-03-03 22:00:00,1,0,0,1,18.04,21.97,21,8.9981,19,115,134 +2012-03-03 23:00:00,1,0,0,1,17.22,21.21,24,0,12,94,106 +2012-03-04 00:00:00,1,0,0,2,16.4,20.455,30,23.9994,5,67,72 +2012-03-04 01:00:00,1,0,0,2,15.58,19.695,34,12.998,16,60,76 +2012-03-04 02:00:00,1,0,0,2,14.76,17.425,40,11.0014,14,66,80 +2012-03-04 03:00:00,1,0,0,2,14.76,17.425,43,8.9981,5,21,26 +2012-03-04 04:00:00,1,0,0,2,13.94,16.665,46,12.998,3,11,14 +2012-03-04 05:00:00,1,0,0,2,13.94,15.91,46,15.0013,0,5,5 +2012-03-04 06:00:00,1,0,0,2,12.3,13.635,52,19.9995,0,5,5 +2012-03-04 07:00:00,1,0,0,2,12.3,13.635,52,19.9995,2,21,23 +2012-03-04 08:00:00,1,0,0,1,12.3,13.635,52,22.0028,12,54,66 +2012-03-04 09:00:00,1,0,0,1,12.3,13.635,49,30.0026,14,104,118 +2012-03-04 10:00:00,1,0,0,1,12.3,13.635,49,22.0028,31,161,192 +2012-03-04 11:00:00,1,0,0,1,13.12,14.395,45,26.0027,64,192,256 +2012-03-04 12:00:00,1,0,0,1,13.94,15.15,42,23.9994,71,256,327 +2012-03-04 13:00:00,1,0,0,1,14.76,16.665,37,23.9994,108,256,364 +2012-03-04 14:00:00,1,0,0,1,14.76,16.665,34,23.9994,106,226,332 +2012-03-04 15:00:00,1,0,0,1,14.76,15.91,32,35.0008,82,252,334 +2012-03-04 16:00:00,1,0,0,1,14.76,15.91,29,32.9975,68,231,299 +2012-03-04 17:00:00,1,0,0,1,13.94,14.395,31,36.9974,49,214,263 +2012-03-04 18:00:00,1,0,0,1,13.12,13.635,33,40.9973,20,164,184 +2012-03-04 19:00:00,1,0,0,1,12.3,12.88,36,32.9975,12,120,132 +2012-03-04 20:00:00,1,0,0,1,11.48,13.635,38,16.9979,8,80,88 +2012-03-04 21:00:00,1,0,0,1,11.48,13.635,36,15.0013,9,70,79 +2012-03-04 22:00:00,1,0,0,1,10.66,12.12,41,16.9979,9,53,62 +2012-03-04 23:00:00,1,0,0,1,10.66,12.88,41,12.998,2,24,26 +2012-03-05 00:00:00,1,0,1,1,9.84,11.365,44,12.998,2,15,17 +2012-03-05 01:00:00,1,0,1,1,9.84,12.12,48,8.9981,3,3,6 +2012-03-05 02:00:00,1,0,1,1,9.84,12.12,48,8.9981,1,3,4 +2012-03-05 03:00:00,1,0,1,1,9.02,11.365,51,11.0014,0,1,1 +2012-03-05 04:00:00,1,0,1,1,8.2,11.365,55,6.0032,0,1,1 +2012-03-05 05:00:00,1,0,1,1,8.2,11.365,55,6.0032,1,17,18 +2012-03-05 06:00:00,1,0,1,1,7.38,9.85,59,8.9981,2,89,91 +2012-03-05 07:00:00,1,0,1,1,7.38,9.85,59,8.9981,7,253,260 +2012-03-05 08:00:00,1,0,1,1,8.2,11.365,59,7.0015,13,415,428 +2012-03-05 09:00:00,1,0,1,2,9.02,12.88,60,6.0032,11,186,197 +2012-03-05 10:00:00,1,0,1,2,9.84,12.88,60,0,12,74,86 +2012-03-05 11:00:00,1,0,1,2,10.66,13.635,56,8.9981,17,86,103 +2012-03-05 12:00:00,1,0,1,2,10.66,15.15,52,0,15,122,137 +2012-03-05 13:00:00,1,0,1,2,10.66,12.88,55,19.9995,11,109,120 +2012-03-05 14:00:00,1,0,1,2,11.48,12.88,57,23.9994,13,115,128 +2012-03-05 15:00:00,1,0,1,2,12.3,14.395,53,12.998,20,110,130 +2012-03-05 16:00:00,1,0,1,1,12.3,13.635,45,19.9995,30,180,210 +2012-03-05 17:00:00,1,0,1,3,12.3,13.635,45,19.9995,11,376,387 +2012-03-05 18:00:00,1,0,1,3,11.48,11.365,55,43.9989,12,363,375 +2012-03-05 19:00:00,1,0,1,1,10.66,12.88,53,15.0013,6,220,226 +2012-03-05 20:00:00,1,0,1,1,10.66,11.365,37,31.0009,8,171,179 +2012-03-05 21:00:00,1,0,1,1,10.66,11.365,37,26.0027,4,116,120 +2012-03-05 22:00:00,1,0,1,1,9.84,10.605,35,22.0028,2,76,78 +2012-03-05 23:00:00,1,0,1,1,9.02,9.09,37,39.0007,2,29,31 +2012-03-06 00:00:00,1,0,1,1,9.02,10.605,37,19.9995,0,8,8 +2012-03-06 01:00:00,1,0,1,1,8.2,9.85,44,16.9979,0,6,6 +2012-03-06 02:00:00,1,0,1,1,8.2,9.85,44,15.0013,0,4,4 +2012-03-06 03:00:00,1,0,1,1,7.38,8.335,51,19.0012,0,1,1 +2012-03-06 04:00:00,1,0,1,1,7.38,8.335,51,19.9995,0,3,3 +2012-03-06 05:00:00,1,0,1,1,7.38,9.09,51,15.0013,0,25,25 +2012-03-06 06:00:00,1,0,1,1,7.38,10.605,51,7.0015,3,99,102 +2012-03-06 07:00:00,1,0,1,1,6.56,9.09,55,8.9981,5,270,275 +2012-03-06 08:00:00,1,0,1,1,6.56,9.09,59,7.0015,14,487,501 +2012-03-06 09:00:00,1,0,1,1,9.02,13.635,47,0,11,222,233 +2012-03-06 10:00:00,1,0,1,1,9.84,12.88,44,0,16,113,129 +2012-03-06 11:00:00,1,0,1,1,10.66,12.88,41,11.0014,20,110,130 +2012-03-06 12:00:00,1,0,1,1,10.66,13.635,41,7.0015,9,129,138 +2012-03-06 13:00:00,1,0,1,1,12.3,15.15,39,8.9981,16,148,164 +2012-03-06 14:00:00,1,0,1,1,13.12,15.15,36,15.0013,20,116,136 +2012-03-06 15:00:00,1,0,1,1,13.94,15.15,36,19.9995,24,142,166 +2012-03-06 16:00:00,1,0,1,1,14.76,16.665,32,19.0012,22,228,250 +2012-03-06 17:00:00,1,0,1,1,14.76,16.665,34,19.0012,21,425,446 +2012-03-06 18:00:00,1,0,1,1,13.94,15.15,42,22.0028,15,442,457 +2012-03-06 19:00:00,1,0,1,1,13.94,15.15,46,19.9995,9,278,287 +2012-03-06 20:00:00,1,0,1,1,13.12,15.91,49,12.998,3,184,187 +2012-03-06 21:00:00,1,0,1,1,13.12,15.91,49,12.998,5,143,148 +2012-03-06 22:00:00,1,0,1,1,11.48,13.635,56,11.0014,5,101,106 +2012-03-06 23:00:00,1,0,1,1,11.48,13.635,61,15.0013,3,51,54 +2012-03-07 00:00:00,1,0,1,1,11.48,12.88,65,19.0012,3,12,15 +2012-03-07 01:00:00,1,0,1,1,12.3,13.635,61,19.9995,1,4,5 +2012-03-07 02:00:00,1,0,1,1,12.3,14.395,56,19.0012,0,4,4 +2012-03-07 03:00:00,1,0,1,1,12.3,13.635,56,23.9994,1,2,3 +2012-03-07 04:00:00,1,0,1,1,11.48,12.88,61,22.0028,0,3,3 +2012-03-07 05:00:00,1,0,1,1,11.48,12.88,56,19.9995,0,18,18 +2012-03-07 06:00:00,1,0,1,1,11.48,12.88,61,26.0027,4,104,108 +2012-03-07 07:00:00,1,0,1,1,10.66,11.365,65,26.0027,12,332,344 +2012-03-07 08:00:00,1,0,1,1,11.48,12.88,61,19.9995,12,554,566 +2012-03-07 09:00:00,1,0,1,1,12.3,13.635,61,22.0028,12,252,264 +2012-03-07 10:00:00,1,0,1,1,14.76,16.665,50,19.9995,20,127,147 +2012-03-07 11:00:00,1,0,1,1,17.22,21.21,38,19.9995,33,128,161 +2012-03-07 12:00:00,1,0,1,1,18.04,21.97,38,26.0027,40,175,215 +2012-03-07 13:00:00,1,0,1,1,20.5,24.24,34,27.9993,26,179,205 +2012-03-07 14:00:00,1,0,1,1,21.32,25,36,22.0028,38,137,175 +2012-03-07 15:00:00,1,0,1,1,22.14,25.76,37,30.0026,44,165,209 +2012-03-07 16:00:00,1,0,1,1,22.96,26.515,37,27.9993,34,254,288 +2012-03-07 17:00:00,1,0,1,1,22.96,26.515,43,32.9975,58,554,612 +2012-03-07 18:00:00,1,0,1,1,22.96,26.515,40,31.0009,35,509,544 +2012-03-07 19:00:00,1,0,1,1,22.14,25.76,42,23.9994,16,345,361 +2012-03-07 20:00:00,1,0,1,1,20.5,24.24,51,16.9979,18,242,260 +2012-03-07 21:00:00,1,0,1,1,18.04,21.97,62,16.9979,11,177,188 +2012-03-07 22:00:00,1,0,1,1,18.86,22.725,59,19.9995,10,149,159 +2012-03-07 23:00:00,1,0,1,1,18.04,21.97,62,22.0028,4,58,62 +2012-03-08 00:00:00,1,0,1,1,18.04,21.97,62,22.0028,11,35,46 +2012-03-08 01:00:00,1,0,1,1,18.86,22.725,63,22.0028,4,17,21 +2012-03-08 02:00:00,1,0,1,1,18.86,22.725,63,26.0027,6,5,11 +2012-03-08 03:00:00,1,0,1,1,18.86,22.725,63,26.0027,0,3,3 +2012-03-08 04:00:00,1,0,1,1,18.04,21.97,72,19.0012,0,2,2 +2012-03-08 05:00:00,1,0,1,1,17.22,21.21,77,15.0013,1,28,29 +2012-03-08 06:00:00,1,0,1,1,17.22,21.21,77,16.9979,4,105,109 +2012-03-08 07:00:00,1,0,1,1,17.22,21.21,77,23.9994,8,326,334 +2012-03-08 08:00:00,1,0,1,1,18.04,21.97,77,26.0027,12,573,585 +2012-03-08 09:00:00,1,0,1,1,18.86,22.725,72,31.0009,19,282,301 +2012-03-08 10:00:00,1,0,1,1,20.5,24.24,68,31.0009,19,119,138 +2012-03-08 11:00:00,1,0,1,2,22.14,25.76,60,31.0009,48,156,204 +2012-03-08 12:00:00,1,0,1,2,22.96,26.515,60,30.0026,27,224,251 +2012-03-08 13:00:00,1,0,1,2,24.6,31.06,49,43.0006,35,198,233 +2012-03-08 14:00:00,1,0,1,2,25.42,31.06,43,43.0006,48,155,203 +2012-03-08 15:00:00,1,0,1,1,26.24,31.06,38,46.0022,24,161,185 +2012-03-08 16:00:00,1,0,1,2,25.42,31.06,41,43.0006,37,305,342 +2012-03-08 17:00:00,1,0,1,1,25.42,31.06,38,43.9989,52,545,597 +2012-03-08 18:00:00,1,0,1,2,25.42,31.06,38,36.9974,45,545,590 +2012-03-08 19:00:00,1,0,1,2,24.6,31.06,40,30.0026,21,395,416 +2012-03-08 20:00:00,1,0,1,2,24.6,31.06,43,26.0027,20,282,302 +2012-03-08 21:00:00,1,0,1,1,24.6,31.06,43,26.0027,27,206,233 +2012-03-08 22:00:00,1,0,1,1,22.96,26.515,49,22.0028,12,141,153 +2012-03-08 23:00:00,1,0,1,2,22.96,26.515,49,30.0026,6,88,94 +2012-03-09 00:00:00,1,0,1,2,23.78,27.275,49,31.0009,3,51,54 +2012-03-09 01:00:00,1,0,1,3,22.96,26.515,52,32.9975,4,22,26 +2012-03-09 02:00:00,1,0,1,3,19.68,23.485,77,27.9993,2,9,11 +2012-03-09 03:00:00,1,0,1,1,18.86,22.725,77,35.0008,0,7,7 +2012-03-09 04:00:00,1,0,1,3,16.4,20.455,66,19.0012,0,1,1 +2012-03-09 05:00:00,1,0,1,3,16.4,20.455,66,19.0012,2,27,29 +2012-03-09 06:00:00,1,0,1,2,16.4,20.455,50,23.9994,2,83,85 +2012-03-09 07:00:00,1,0,1,2,15.58,19.695,40,19.9995,6,262,268 +2012-03-09 08:00:00,1,0,1,2,13.94,14.395,42,35.0008,17,484,501 +2012-03-09 09:00:00,1,0,1,2,13.94,14.395,42,35.0008,17,267,284 +2012-03-09 10:00:00,1,0,1,2,13.94,14.395,36,32.9975,14,145,159 +2012-03-09 11:00:00,1,0,1,2,14.76,16.665,34,23.9994,17,170,187 +2012-03-09 12:00:00,1,0,1,1,14.76,16.665,34,27.9993,27,174,201 +2012-03-09 13:00:00,1,0,1,2,15.58,19.695,29,26.0027,49,175,224 +2012-03-09 14:00:00,1,0,1,1,17.22,21.21,28,31.0009,49,129,178 +2012-03-09 15:00:00,1,0,1,1,18.86,22.725,24,16.9979,50,188,238 +2012-03-09 16:00:00,1,0,1,1,19.68,23.485,23,27.9993,51,292,343 +2012-03-09 17:00:00,1,0,1,1,18.86,22.725,24,26.0027,68,498,566 +2012-03-09 18:00:00,1,0,1,1,18.04,21.97,26,35.0008,30,440,470 +2012-03-09 19:00:00,1,0,1,1,17.22,21.21,28,40.9973,12,232,244 +2012-03-09 20:00:00,1,0,1,1,15.58,19.695,32,23.9994,3,156,159 +2012-03-09 21:00:00,1,0,1,1,14.76,16.665,34,22.0028,8,133,141 +2012-03-09 22:00:00,1,0,1,1,13.94,14.395,31,32.9975,7,100,107 +2012-03-09 23:00:00,1,0,1,1,13.12,15.15,33,19.9995,9,77,86 +2012-03-10 00:00:00,1,0,0,1,12.3,13.635,36,23.9994,9,68,77 +2012-03-10 01:00:00,1,0,0,1,12.3,14.395,36,16.9979,1,50,51 +2012-03-10 02:00:00,1,0,0,1,10.66,12.12,41,16.9979,12,30,42 +2012-03-10 03:00:00,1,0,0,1,10.66,11.365,41,19.9995,0,16,16 +2012-03-10 04:00:00,1,0,0,1,9.84,10.605,41,23.9994,1,3,4 +2012-03-10 05:00:00,1,0,0,1,9.02,10.605,42,19.0012,3,7,10 +2012-03-10 06:00:00,1,0,0,1,9.02,10.605,44,19.0012,1,11,12 +2012-03-10 07:00:00,1,0,0,1,9.02,10.605,44,16.9979,4,36,40 +2012-03-10 08:00:00,1,0,0,1,9.02,10.605,44,19.9995,15,96,111 +2012-03-10 09:00:00,1,0,0,1,9.84,10.605,41,22.0028,21,127,148 +2012-03-10 10:00:00,1,0,0,1,10.66,11.365,35,27.9993,47,176,223 +2012-03-10 11:00:00,1,0,0,1,12.3,13.635,33,22.0028,56,218,274 +2012-03-10 12:00:00,1,0,0,1,12.3,13.635,33,22.0028,88,241,329 +2012-03-10 13:00:00,1,0,0,1,13.12,15.15,29,19.0012,89,268,357 +2012-03-10 14:00:00,1,0,0,1,13.94,15.91,27,19.0012,117,262,379 +2012-03-10 15:00:00,1,0,0,1,13.94,18.18,25,0,132,274,406 +2012-03-10 16:00:00,1,0,0,1,14.76,18.18,23,0,115,275,390 +2012-03-10 17:00:00,1,0,0,1,14.76,18.94,23,0,104,250,354 +2012-03-10 18:00:00,1,0,0,1,14.76,18.18,21,6.0032,67,230,297 +2012-03-10 19:00:00,1,0,0,1,13.94,18.18,25,0,25,159,184 +2012-03-10 20:00:00,1,0,0,1,13.12,16.665,33,8.9981,20,101,121 +2012-03-10 21:00:00,1,0,0,1,12.3,14.395,39,15.0013,16,94,110 +2012-03-10 22:00:00,1,0,0,1,10.66,12.88,44,11.0014,19,81,100 +2012-03-10 23:00:00,1,0,0,1,10.66,12.88,41,12.998,6,77,83 +2012-03-11 00:00:00,1,0,0,1,10.66,14.395,44,6.0032,7,62,69 +2012-03-11 01:00:00,1,0,0,1,9.84,12.12,52,11.0014,4,57,61 +2012-03-11 03:00:00,1,0,0,1,9.84,12.12,60,8.9981,15,51,66 +2012-03-11 04:00:00,1,0,0,1,9.84,12.12,60,8.9981,7,15,22 +2012-03-11 05:00:00,1,0,0,1,9.84,12.12,60,11.0014,2,5,7 +2012-03-11 06:00:00,1,0,0,1,9.84,12.12,70,11.0014,2,8,10 +2012-03-11 07:00:00,1,0,0,1,9.02,11.365,69,8.9981,2,15,17 +2012-03-11 08:00:00,1,0,0,1,9.02,11.365,69,8.9981,4,68,72 +2012-03-11 09:00:00,1,0,0,1,10.66,12.88,60,15.0013,20,70,90 +2012-03-11 10:00:00,1,0,0,1,13.12,15.15,49,19.0012,71,147,218 +2012-03-11 11:00:00,1,0,0,1,14.76,16.665,43,19.0012,90,209,299 +2012-03-11 12:00:00,1,0,0,1,16.4,20.455,37,19.9995,146,264,410 +2012-03-11 13:00:00,1,0,0,1,17.22,21.21,41,19.9995,176,288,464 +2012-03-11 14:00:00,1,0,0,1,18.86,22.725,31,19.0012,212,289,501 +2012-03-11 15:00:00,1,0,0,1,20.5,24.24,29,19.9995,201,286,487 +2012-03-11 16:00:00,1,0,0,1,20.5,24.24,31,23.9994,208,301,509 +2012-03-11 17:00:00,1,0,0,1,21.32,25,27,19.9995,199,299,498 +2012-03-11 18:00:00,1,0,0,1,21.32,25,29,19.0012,133,256,389 +2012-03-11 19:00:00,1,0,0,1,20.5,24.24,31,19.0012,55,203,258 +2012-03-11 20:00:00,1,0,0,1,18.04,21.97,47,15.0013,42,129,171 +2012-03-11 21:00:00,1,0,0,1,17.22,21.21,54,15.0013,37,110,147 +2012-03-11 22:00:00,1,0,0,1,16.4,20.455,54,12.998,13,81,94 +2012-03-11 23:00:00,1,0,0,1,16.4,20.455,50,11.0014,12,40,52 +2012-03-12 00:00:00,1,0,1,1,15.58,19.695,54,12.998,4,20,24 +2012-03-12 01:00:00,1,0,1,1,15.58,19.695,50,8.9981,1,9,10 +2012-03-12 02:00:00,1,0,1,1,15.58,19.695,54,7.0015,4,5,9 +2012-03-12 03:00:00,1,0,1,1,14.76,17.425,50,8.9981,0,2,2 +2012-03-12 04:00:00,1,0,1,1,13.94,16.665,61,12.998,0,3,3 +2012-03-12 05:00:00,1,0,1,1,13.94,16.665,61,12.998,1,15,16 +2012-03-12 06:00:00,1,0,1,1,13.94,17.425,57,7.0015,2,86,88 +2012-03-12 07:00:00,1,0,1,1,13.94,17.425,53,7.0015,9,259,268 +2012-03-12 08:00:00,1,0,1,1,13.94,16.665,61,8.9981,17,547,564 +2012-03-12 09:00:00,1,0,1,1,15.58,19.695,54,11.0014,21,260,281 +2012-03-12 10:00:00,1,0,1,1,16.4,20.455,50,15.0013,39,98,137 +2012-03-12 11:00:00,1,0,1,1,18.04,21.97,44,15.0013,39,111,150 +2012-03-12 12:00:00,1,0,1,1,19.68,23.485,39,15.0013,59,162,221 +2012-03-12 13:00:00,1,0,1,2,22.14,25.76,32,16.9979,74,176,250 +2012-03-12 14:00:00,1,0,1,2,23.78,27.275,32,19.0012,76,145,221 +2012-03-12 15:00:00,1,0,1,1,22.96,26.515,40,8.9981,74,159,233 +2012-03-12 16:00:00,1,0,1,1,25.42,31.06,35,30.0026,77,255,332 +2012-03-12 17:00:00,1,0,1,2,25.42,31.06,38,27.9993,87,557,644 +2012-03-12 18:00:00,1,0,1,2,24.6,31.06,43,12.998,89,623,712 +2012-03-12 19:00:00,1,0,1,2,22.96,26.515,49,15.0013,67,379,446 +2012-03-12 20:00:00,1,0,1,2,22.96,26.515,49,15.0013,49,237,286 +2012-03-12 21:00:00,1,0,1,2,22.14,25.76,56,15.0013,22,183,205 +2012-03-12 22:00:00,1,0,1,2,22.96,26.515,56,15.0013,17,116,133 +2012-03-12 23:00:00,1,0,1,1,22.96,26.515,56,15.0013,10,53,63 +2012-03-13 00:00:00,1,0,1,2,22.96,26.515,52,12.998,5,21,26 +2012-03-13 01:00:00,1,0,1,2,21.32,25,59,15.0013,2,14,16 +2012-03-13 02:00:00,1,0,1,3,21.32,25,72,19.9995,0,1,1 +2012-03-13 03:00:00,1,0,1,3,21.32,25,72,19.9995,0,2,2 +2012-03-13 04:00:00,1,0,1,2,18.86,22.725,82,12.998,0,1,1 +2012-03-13 05:00:00,1,0,1,2,18.86,22.725,82,12.998,0,24,24 +2012-03-13 06:00:00,1,0,1,3,18.86,22.725,82,12.998,5,108,113 +2012-03-13 07:00:00,1,0,1,2,18.86,22.725,82,19.0012,16,292,308 +2012-03-13 08:00:00,1,0,1,1,18.86,22.725,82,19.0012,22,571,593 +2012-03-13 09:00:00,1,0,1,1,19.68,23.485,82,19.0012,18,324,342 +2012-03-13 10:00:00,1,0,1,1,21.32,25,77,15.0013,28,115,143 +2012-03-13 11:00:00,1,0,1,1,22.14,25.76,73,19.0012,64,155,219 +2012-03-13 12:00:00,1,0,1,1,24.6,30.305,60,19.0012,47,197,244 +2012-03-13 13:00:00,1,0,1,1,24.6,30.305,60,26.0027,53,180,233 +2012-03-13 14:00:00,1,0,1,1,26.24,31.06,53,22.0028,52,160,212 +2012-03-13 15:00:00,1,0,1,1,28.7,31.82,39,15.0013,68,196,264 +2012-03-13 16:00:00,1,0,1,1,29.52,32.575,34,26.0027,53,312,365 +2012-03-13 17:00:00,1,0,1,1,28.7,31.82,37,7.0015,62,614,676 +2012-03-13 18:00:00,1,0,1,1,28.7,31.82,34,19.9995,96,638,734 +2012-03-13 19:00:00,1,0,1,1,26.24,31.06,47,15.0013,50,429,479 +2012-03-13 20:00:00,1,0,1,1,24.6,31.06,49,11.0014,45,306,351 +2012-03-13 21:00:00,1,0,1,1,23.78,27.275,56,7.0015,44,200,244 +2012-03-13 22:00:00,1,0,1,1,22.96,26.515,60,6.0032,24,146,170 +2012-03-13 23:00:00,1,0,1,1,22.96,26.515,56,8.9981,8,79,87 +2012-03-14 00:00:00,1,0,1,1,22.14,25.76,60,7.0015,5,34,39 +2012-03-14 01:00:00,1,0,1,1,21.32,25,63,6.0032,2,25,27 +2012-03-14 02:00:00,1,0,1,1,20.5,24.24,68,12.998,0,2,2 +2012-03-14 03:00:00,1,0,1,1,19.68,23.485,72,12.998,1,3,4 +2012-03-14 04:00:00,1,0,1,1,19.68,23.485,67,6.0032,1,4,5 +2012-03-14 05:00:00,1,0,1,1,18.04,21.97,82,8.9981,2,25,27 +2012-03-14 06:00:00,1,0,1,1,18.04,21.97,82,6.0032,1,120,121 +2012-03-14 07:00:00,1,0,1,1,18.04,21.97,82,7.0015,20,348,368 +2012-03-14 08:00:00,1,0,1,1,18.04,21.97,82,0,34,628,662 +2012-03-14 09:00:00,1,0,1,1,21.32,25,68,0,26,325,351 +2012-03-14 10:00:00,1,0,1,1,22.96,26.515,56,7.0015,38,150,188 +2012-03-14 11:00:00,1,0,1,2,25.42,31.06,41,11.0014,65,155,220 +2012-03-14 12:00:00,1,0,1,2,26.24,31.06,29,0,55,212,267 +2012-03-14 13:00:00,1,0,1,1,27.06,31.06,27,15.0013,57,197,254 +2012-03-14 14:00:00,1,0,1,1,28.7,31.82,23,22.0028,61,163,224 +2012-03-14 15:00:00,1,0,1,1,28.7,31.82,24,0,86,197,283 +2012-03-14 16:00:00,1,0,1,1,29.52,31.82,25,12.998,78,278,356 +2012-03-14 17:00:00,1,0,1,1,28.7,31.82,28,6.0032,140,642,782 +2012-03-14 18:00:00,1,0,1,1,28.7,31.82,32,0,102,647,749 +2012-03-14 19:00:00,1,0,1,1,26.24,31.06,33,11.0014,70,402,472 +2012-03-14 20:00:00,1,0,1,1,25.42,31.06,35,7.0015,44,286,330 +2012-03-14 21:00:00,1,0,1,1,24.6,31.06,40,6.0032,47,241,288 +2012-03-14 22:00:00,1,0,1,1,21.32,25,55,8.9981,43,159,202 +2012-03-14 23:00:00,1,0,1,1,22.96,26.515,43,11.0014,19,72,91 +2012-03-15 00:00:00,1,0,1,1,22.14,25.76,49,8.9981,14,46,60 +2012-03-15 01:00:00,1,0,1,1,20.5,24.24,59,7.0015,15,8,23 +2012-03-15 02:00:00,1,0,1,1,20.5,24.24,59,0,14,5,19 +2012-03-15 03:00:00,1,0,1,1,20.5,24.24,63,0,0,7,7 +2012-03-15 04:00:00,1,0,1,1,18.04,21.97,77,7.0015,11,3,14 +2012-03-15 05:00:00,1,0,1,1,18.86,22.725,67,0,2,24,26 +2012-03-15 06:00:00,1,0,1,1,18.04,21.97,72,6.0032,4,113,117 +2012-03-15 07:00:00,1,0,1,1,18.04,21.97,72,6.0032,14,367,381 +2012-03-15 08:00:00,1,0,1,1,18.04,21.97,77,7.0015,21,602,623 +2012-03-15 09:00:00,1,0,1,1,19.68,23.485,77,6.0032,30,285,315 +2012-03-15 10:00:00,1,0,1,1,21.32,25,68,7.0015,34,130,164 +2012-03-15 11:00:00,1,0,1,1,22.96,26.515,60,8.9981,60,151,211 +2012-03-15 12:00:00,1,0,1,2,25.42,31.06,50,8.9981,59,206,265 +2012-03-15 13:00:00,1,0,1,2,27.06,31.06,41,6.0032,62,211,273 +2012-03-15 14:00:00,1,0,1,2,29.52,32.575,30,7.0015,81,177,258 +2012-03-15 15:00:00,1,0,1,1,29.52,32.575,32,15.0013,100,187,287 +2012-03-15 16:00:00,1,0,1,1,29.52,32.575,37,26.0027,95,331,426 +2012-03-15 17:00:00,1,0,1,1,28.7,31.82,39,16.9979,79,634,713 +2012-03-15 18:00:00,1,0,1,1,27.06,31.06,44,19.0012,98,648,746 +2012-03-15 19:00:00,1,0,1,2,26.24,31.06,50,12.998,72,353,425 +2012-03-15 20:00:00,1,0,1,2,23.78,27.275,60,23.9994,60,270,330 +2012-03-15 21:00:00,1,0,1,1,22.14,25.76,68,19.0012,36,207,243 +2012-03-15 22:00:00,1,0,1,1,21.32,25,68,8.9981,32,137,169 +2012-03-15 23:00:00,1,0,1,1,19.68,23.485,72,12.998,12,85,97 +2012-03-16 00:00:00,1,0,1,1,18.04,21.97,77,16.9979,8,49,57 +2012-03-16 01:00:00,1,0,1,2,17.22,21.21,82,22.0028,4,22,26 +2012-03-16 02:00:00,1,0,1,2,17.22,21.21,82,12.998,0,4,4 +2012-03-16 03:00:00,1,0,1,2,16.4,20.455,87,19.0012,0,3,3 +2012-03-16 04:00:00,1,0,1,2,16.4,20.455,87,16.9979,0,3,3 +2012-03-16 05:00:00,1,0,1,2,16.4,20.455,87,15.0013,2,30,32 +2012-03-16 06:00:00,1,0,1,2,16.4,20.455,87,11.0014,3,96,99 +2012-03-16 07:00:00,1,0,1,2,16.4,20.455,87,12.998,13,265,278 +2012-03-16 08:00:00,1,0,1,2,16.4,20.455,87,15.0013,28,534,562 +2012-03-16 09:00:00,1,0,1,2,17.22,21.21,82,0,35,277,312 +2012-03-16 10:00:00,1,0,1,2,16.4,20.455,87,6.0032,44,136,180 +2012-03-16 11:00:00,1,0,1,2,18.04,21.97,77,0,40,167,207 +2012-03-16 12:00:00,1,0,1,2,18.04,21.97,82,8.9981,72,222,294 +2012-03-16 13:00:00,1,0,1,2,18.86,22.725,77,6.0032,52,208,260 +2012-03-16 14:00:00,1,0,1,2,19.68,23.485,72,0,56,146,202 +2012-03-16 15:00:00,1,0,1,3,18.86,22.725,82,7.0015,19,88,107 +2012-03-16 16:00:00,1,0,1,3,19.68,23.485,77,0,18,111,129 +2012-03-16 17:00:00,1,0,1,3,19.68,23.485,82,6.0032,23,235,258 +2012-03-16 18:00:00,1,0,1,3,19.68,23.485,82,6.0032,31,377,408 +2012-03-16 19:00:00,1,0,1,2,18.86,22.725,88,0,23,273,296 +2012-03-16 20:00:00,1,0,1,1,18.86,22.725,88,0,31,204,235 +2012-03-16 21:00:00,1,0,1,2,18.04,21.97,94,0,8,144,152 +2012-03-16 22:00:00,1,0,1,2,18.04,21.97,94,0,16,132,148 +2012-03-16 23:00:00,1,0,1,2,18.04,21.97,94,0,22,104,126 +2012-03-17 00:00:00,1,0,0,2,18.04,21.97,94,6.0032,13,87,100 +2012-03-17 01:00:00,1,0,0,2,18.04,21.97,94,0,12,57,69 +2012-03-17 02:00:00,1,0,0,2,18.04,21.97,88,0,10,32,42 +2012-03-17 03:00:00,1,0,0,2,18.04,21.97,88,0,2,24,26 +2012-03-17 04:00:00,1,0,0,2,17.22,21.21,94,0,0,2,2 +2012-03-17 05:00:00,1,0,0,2,17.22,21.21,94,6.0032,5,3,8 +2012-03-17 06:00:00,1,0,0,2,17.22,21.21,94,12.998,1,29,30 +2012-03-17 07:00:00,1,0,0,2,16.4,20.455,100,8.9981,29,57,86 +2012-03-17 08:00:00,1,0,0,2,17.22,21.21,94,7.0015,63,155,218 +2012-03-17 09:00:00,1,0,0,2,18.04,21.97,88,6.0032,104,217,321 +2012-03-17 10:00:00,1,0,0,2,20.5,24.24,77,6.0032,140,303,443 +2012-03-17 11:00:00,1,0,0,2,21.32,25,77,8.9981,226,359,585 +2012-03-17 12:00:00,1,0,0,1,22.96,26.515,68,11.0014,286,365,651 +2012-03-17 13:00:00,1,0,0,1,24.6,30.305,60,7.0015,286,400,686 +2012-03-17 14:00:00,1,0,0,1,25.42,31.06,53,6.0032,352,338,690 +2012-03-17 15:00:00,1,0,0,1,26.24,31.06,53,8.9981,357,322,679 +2012-03-17 16:00:00,1,0,0,1,26.24,31.06,50,0,367,318,685 +2012-03-17 17:00:00,1,0,0,1,26.24,31.06,50,8.9981,291,357,648 +2012-03-17 18:00:00,1,0,0,1,25.42,31.06,57,19.9995,221,339,560 +2012-03-17 19:00:00,1,0,0,1,23.78,27.275,64,19.0012,155,262,417 +2012-03-17 20:00:00,1,0,0,1,22.96,26.515,64,12.998,89,182,271 +2012-03-17 21:00:00,1,0,0,1,22.14,25.76,68,11.0014,54,169,223 +2012-03-17 22:00:00,1,0,0,1,22.14,25.76,68,0,58,153,211 +2012-03-17 23:00:00,1,0,0,1,20.5,24.24,77,11.0014,34,151,185 +2012-03-18 00:00:00,1,0,0,1,18.86,22.725,88,12.998,27,80,107 +2012-03-18 01:00:00,1,0,0,1,18.86,22.725,82,8.9981,25,88,113 +2012-03-18 02:00:00,1,0,0,2,18.86,22.725,82,7.0015,15,41,56 +2012-03-18 03:00:00,1,0,0,2,18.04,21.97,88,8.9981,3,15,18 +2012-03-18 04:00:00,1,0,0,2,17.22,21.21,94,11.0014,6,8,14 +2012-03-18 05:00:00,1,0,0,2,16.4,20.455,94,7.0015,0,6,6 +2012-03-18 06:00:00,1,0,0,2,16.4,20.455,94,7.0015,2,9,11 +2012-03-18 07:00:00,1,0,0,3,17.22,21.21,88,11.0014,17,25,42 +2012-03-18 08:00:00,1,0,0,2,17.22,21.21,88,7.0015,25,71,96 +2012-03-18 09:00:00,1,0,0,2,17.22,21.21,88,6.0032,65,113,178 +2012-03-18 10:00:00,1,0,0,2,17.22,21.21,88,7.0015,139,212,351 +2012-03-18 11:00:00,1,0,0,2,18.04,21.97,82,11.0014,129,239,368 +2012-03-18 12:00:00,1,0,0,2,18.04,21.97,88,8.9981,222,281,503 +2012-03-18 13:00:00,1,0,0,2,18.86,22.725,82,11.0014,198,346,544 +2012-03-18 14:00:00,1,0,0,2,20.5,24.24,77,6.0032,218,303,521 +2012-03-18 15:00:00,1,0,0,1,22.14,25.76,68,6.0032,240,314,554 +2012-03-18 16:00:00,1,0,0,1,22.14,25.76,73,6.0032,229,312,541 +2012-03-18 17:00:00,1,0,0,1,22.96,26.515,64,6.0032,233,308,541 +2012-03-18 18:00:00,1,0,0,1,22.96,26.515,64,11.0014,165,294,459 +2012-03-18 19:00:00,1,0,0,1,22.96,26.515,64,11.0014,118,234,352 +2012-03-18 20:00:00,1,0,0,1,21.32,25,77,8.9981,59,139,198 +2012-03-18 21:00:00,1,0,0,1,21.32,25,72,6.0032,44,129,173 +2012-03-18 22:00:00,1,0,0,1,20.5,24.24,77,7.0015,21,79,100 +2012-03-18 23:00:00,1,0,0,1,19.68,23.485,82,11.0014,7,39,46 +2012-03-19 00:00:00,1,0,1,1,19.68,23.485,82,7.0015,4,19,23 +2012-03-19 01:00:00,1,0,1,1,18.86,22.725,88,7.0015,0,15,15 +2012-03-19 02:00:00,1,0,1,1,18.86,22.725,88,11.0014,1,7,8 +2012-03-19 03:00:00,1,0,1,1,18.86,22.725,88,6.0032,0,2,2 +2012-03-19 04:00:00,1,0,1,1,18.04,21.97,94,0,0,3,3 +2012-03-19 05:00:00,1,0,1,1,18.04,21.97,94,0,0,31,31 +2012-03-19 06:00:00,1,0,1,1,18.86,22.725,88,8.9981,2,118,120 +2012-03-19 07:00:00,1,0,1,1,18.86,22.725,88,12.998,25,329,354 +2012-03-19 08:00:00,1,0,1,1,18.86,22.725,88,7.0015,16,563,579 +2012-03-19 09:00:00,1,0,1,1,20.5,24.24,72,11.0014,55,276,331 +2012-03-19 10:00:00,1,0,1,1,21.32,25,72,8.9981,56,128,184 +2012-03-19 11:00:00,1,0,1,1,22.96,26.515,68,11.0014,56,145,201 +2012-03-19 12:00:00,1,0,1,1,24.6,30.305,64,16.9979,71,211,282 +2012-03-19 13:00:00,1,0,1,1,25.42,30.305,61,16.9979,69,194,263 +2012-03-19 14:00:00,1,0,1,2,26.24,31.06,57,12.998,60,200,260 +2012-03-19 15:00:00,1,0,1,1,26.24,31.06,57,15.0013,97,189,286 +2012-03-19 16:00:00,1,0,1,1,27.06,31.06,50,15.0013,65,320,385 +2012-03-19 17:00:00,1,0,1,1,26.24,31.06,53,15.0013,106,615,721 +2012-03-19 18:00:00,1,0,1,1,26.24,31.06,57,16.9979,120,681,801 +2012-03-19 19:00:00,1,0,1,1,25.42,30.305,61,15.0013,86,463,549 +2012-03-19 20:00:00,1,0,1,1,24.6,30.305,64,15.0013,34,296,330 +2012-03-19 21:00:00,1,0,1,1,24.6,30.305,64,11.0014,33,190,223 +2012-03-19 22:00:00,1,0,1,2,22.96,26.515,73,11.0014,17,131,148 +2012-03-19 23:00:00,1,0,1,2,22.96,26.515,78,8.9981,9,45,54 +2012-04-01 00:00:00,2,0,0,2,14.76,16.665,76,16.9979,8,59,67 +2012-04-01 01:00:00,2,0,0,2,14.76,17.425,76,11.0014,13,49,62 +2012-04-01 02:00:00,2,0,0,2,14.76,17.425,76,11.0014,20,61,81 +2012-04-01 03:00:00,2,0,0,2,13.94,16.665,81,8.9981,4,21,25 +2012-04-01 04:00:00,2,0,0,2,13.94,17.425,81,6.0032,3,9,12 +2012-04-01 05:00:00,2,0,0,2,13.94,17.425,81,6.0032,8,10,18 +2012-04-01 06:00:00,2,0,0,2,14.76,17.425,76,8.9981,9,88,97 +2012-04-01 07:00:00,2,0,0,2,14.76,17.425,71,8.9981,29,55,84 +2012-04-01 08:00:00,2,0,0,2,14.76,18.18,76,6.0032,37,88,125 +2012-04-01 09:00:00,2,0,0,2,14.76,17.425,81,8.9981,102,173,275 +2012-04-01 10:00:00,2,0,0,2,16.4,20.455,71,7.0015,132,228,360 +2012-04-01 11:00:00,2,0,0,2,16.4,20.455,71,12.998,180,271,451 +2012-04-01 12:00:00,2,0,0,2,17.22,21.21,67,15.0013,187,258,445 +2012-04-01 13:00:00,2,0,0,2,18.04,21.97,62,12.998,190,274,464 +2012-04-01 14:00:00,2,0,0,2,19.68,23.485,55,15.0013,283,278,561 +2012-04-01 15:00:00,2,0,0,1,20.5,24.24,55,16.9979,295,278,573 +2012-04-01 16:00:00,2,0,0,1,21.32,25,52,16.9979,236,275,511 +2012-04-01 17:00:00,2,0,0,1,21.32,25,55,19.0012,232,323,555 +2012-04-01 18:00:00,2,0,0,1,21.32,25,52,19.9995,153,279,432 +2012-04-01 19:00:00,2,0,0,1,21.32,25,55,15.0013,110,236,346 +2012-04-01 20:00:00,2,0,0,2,20.5,24.24,59,15.0013,66,166,232 +2012-04-01 21:00:00,2,0,0,2,20.5,24.24,59,11.0014,33,101,134 +2012-04-01 22:00:00,2,0,0,3,20.5,24.24,63,7.0015,7,61,68 +2012-04-01 23:00:00,2,0,0,3,18.86,22.725,72,0,10,53,63 +2012-04-02 00:00:00,2,0,1,3,18.04,21.97,82,7.0015,6,11,17 +2012-04-02 01:00:00,2,0,1,3,17.22,21.21,88,6.0032,0,5,5 +2012-04-02 02:00:00,2,0,1,3,18.04,21.97,94,8.9981,2,3,5 +2012-04-02 04:00:00,2,0,1,1,16.4,20.455,76,32.9975,2,2,4 +2012-04-02 05:00:00,2,0,1,1,16.4,20.455,76,32.9975,2,22,24 +2012-04-02 06:00:00,2,0,1,1,14.76,15.91,71,31.0009,6,104,110 +2012-04-02 07:00:00,2,0,1,1,13.94,15.15,66,26.0027,12,294,306 +2012-04-02 08:00:00,2,0,1,1,14.76,16.665,57,22.0028,36,553,589 +2012-04-02 09:00:00,2,0,1,1,15.58,19.695,54,23.9994,52,265,317 +2012-04-02 10:00:00,2,0,1,1,16.4,20.455,50,35.0008,85,119,204 +2012-04-02 11:00:00,2,0,1,1,17.22,21.21,47,30.0026,81,128,209 +2012-04-02 12:00:00,2,0,1,1,18.04,21.97,44,30.0026,100,181,281 +2012-04-02 13:00:00,2,0,1,1,18.86,22.725,36,19.9995,97,184,281 +2012-04-02 14:00:00,2,0,1,1,18.86,22.725,31,27.9993,127,141,268 +2012-04-02 15:00:00,2,0,1,1,19.68,23.485,33,27.9993,132,192,324 +2012-04-02 16:00:00,2,0,1,1,20.5,24.24,34,22.0028,104,291,395 +2012-04-02 17:00:00,2,0,1,1,20.5,24.24,29,19.0012,128,601,729 +2012-04-02 18:00:00,2,0,1,1,20.5,24.24,27,16.9979,75,543,618 +2012-04-02 19:00:00,2,0,1,1,20.5,24.24,27,16.9979,66,428,494 +2012-04-02 20:00:00,2,0,1,1,18.86,22.725,31,11.0014,48,281,329 +2012-04-02 21:00:00,2,0,1,1,18.86,22.725,28,8.9981,24,214,238 +2012-04-02 22:00:00,2,0,1,1,17.22,21.21,44,12.998,17,106,123 +2012-04-02 23:00:00,2,0,1,1,18.04,21.97,35,11.0014,6,60,66 +2012-04-03 00:00:00,2,0,1,1,16.4,20.455,43,8.9981,1,32,33 +2012-04-03 01:00:00,2,0,1,1,15.58,19.695,46,15.0013,0,11,11 +2012-04-03 02:00:00,2,0,1,1,14.76,17.425,53,11.0014,0,5,5 +2012-04-03 03:00:00,2,0,1,1,15.58,19.695,46,0,0,3,3 +2012-04-03 04:00:00,2,0,1,1,13.12,16.665,66,6.0032,0,1,1 +2012-04-03 05:00:00,2,0,1,1,13.12,16.665,66,6.0032,2,25,27 +2012-04-03 06:00:00,2,0,1,1,12.3,15.91,61,6.0032,2,98,100 +2012-04-03 07:00:00,2,0,1,1,13.12,16.665,66,6.0032,14,327,341 +2012-04-03 08:00:00,2,0,1,1,13.94,18.18,57,0,27,577,604 +2012-04-03 09:00:00,2,0,1,1,17.22,21.21,38,6.0032,54,354,408 +2012-04-03 10:00:00,2,0,1,1,18.04,21.97,33,0,77,142,219 +2012-04-03 11:00:00,2,0,1,1,19.68,23.485,23,0,91,167,258 +2012-04-03 12:00:00,2,0,1,1,21.32,25,25,0,101,230,331 +2012-04-03 13:00:00,2,0,1,1,22.96,26.515,19,16.9979,120,225,345 +2012-04-03 14:00:00,2,0,1,1,22.96,26.515,21,15.0013,120,191,311 +2012-04-03 15:00:00,2,0,1,1,24.6,29.545,20,12.998,109,207,316 +2012-04-03 16:00:00,2,0,1,1,25.42,30.305,21,11.0014,145,340,485 +2012-04-03 17:00:00,2,0,1,1,25.42,30.305,17,12.998,123,634,757 +2012-04-03 18:00:00,2,0,1,1,24.6,30.305,26,11.0014,139,661,800 +2012-04-03 19:00:00,2,0,1,1,22.96,26.515,26,7.0015,98,460,558 +2012-04-03 20:00:00,2,0,1,1,22.96,26.515,24,8.9981,54,325,379 +2012-04-03 21:00:00,2,0,1,1,22.14,25.76,45,0,33,210,243 +2012-04-03 22:00:00,2,0,1,1,20.5,24.24,51,0,25,133,158 +2012-04-03 23:00:00,2,0,1,1,20.5,24.24,59,0,13,66,79 +2012-04-04 00:00:00,2,0,1,1,19.68,23.485,48,0,18,23,41 +2012-04-04 01:00:00,2,0,1,1,18.86,22.725,59,0,0,11,11 +2012-04-04 02:00:00,2,0,1,1,18.86,22.725,51,0,0,5,5 +2012-04-04 03:00:00,2,0,1,1,18.04,21.97,58,6.0032,0,3,3 +2012-04-04 04:00:00,2,0,1,1,17.22,21.21,67,6.0032,0,1,1 +2012-04-04 05:00:00,2,0,1,1,17.22,21.21,67,6.0032,0,27,27 +2012-04-04 06:00:00,2,0,1,2,17.22,21.21,58,0,6,120,126 +2012-04-04 07:00:00,2,0,1,2,18.04,21.97,62,0,12,354,366 +2012-04-04 08:00:00,2,0,1,2,18.04,21.97,72,7.0015,31,653,684 +2012-04-04 09:00:00,2,0,1,2,19.68,23.485,55,8.9981,47,316,363 +2012-04-04 10:00:00,2,0,1,2,22.14,25.76,45,8.9981,68,99,167 +2012-04-04 11:00:00,2,0,1,2,24.6,31.06,43,23.9994,61,152,213 +2012-04-04 12:00:00,2,0,1,2,24.6,31.06,46,27.9993,73,210,283 +2012-04-04 13:00:00,2,0,1,2,24.6,31.06,46,16.9979,70,181,251 +2012-04-04 14:00:00,2,0,1,2,25.42,31.06,46,12.998,82,176,258 +2012-04-04 15:00:00,2,0,1,2,26.24,31.06,44,19.0012,86,182,268 +2012-04-04 16:00:00,2,0,1,2,26.24,31.06,44,19.0012,86,304,390 +2012-04-04 17:00:00,2,0,1,1,27.06,31.06,41,19.9995,99,645,744 +2012-04-04 18:00:00,2,0,1,1,27.06,31.06,41,16.9979,113,646,759 +2012-04-04 19:00:00,2,0,1,1,27.06,31.06,39,15.0013,75,419,494 +2012-04-04 20:00:00,2,0,1,1,26.24,31.06,27,15.0013,39,333,372 +2012-04-04 21:00:00,2,0,1,1,24.6,30.305,23,22.0028,43,255,298 +2012-04-04 22:00:00,2,0,1,1,22.96,26.515,22,11.0014,30,151,181 +2012-04-04 23:00:00,2,0,1,1,21.32,25,23,27.9993,19,112,131 +2012-04-05 00:00:00,2,0,1,1,21.32,25,23,27.9993,12,33,45 +2012-04-05 01:00:00,2,0,1,1,19.68,23.485,27,22.0028,4,9,13 +2012-04-05 02:00:00,2,0,1,1,18.86,22.725,33,30.0026,7,11,18 +2012-04-05 03:00:00,2,0,1,1,17.22,21.21,41,19.9995,0,5,5 +2012-04-05 04:00:00,2,0,1,1,15.58,19.695,43,19.0012,0,1,1 +2012-04-05 05:00:00,2,0,1,1,15.58,19.695,43,19.0012,1,28,29 +2012-04-05 06:00:00,2,0,1,1,14.76,16.665,46,22.0028,8,118,126 +2012-04-05 07:00:00,2,0,1,1,13.94,16.665,49,12.998,15,339,354 +2012-04-05 08:00:00,2,0,1,1,14.76,17.425,46,15.0013,28,610,638 +2012-04-05 09:00:00,2,0,1,1,16.4,20.455,37,16.9979,61,290,351 +2012-04-05 10:00:00,2,0,1,1,17.22,21.21,35,19.0012,88,158,246 +2012-04-05 11:00:00,2,0,1,2,17.22,21.21,38,15.0013,109,159,268 +2012-04-05 12:00:00,2,0,1,1,18.04,21.97,33,0,66,210,276 +2012-04-05 13:00:00,2,0,1,1,18.86,22.725,31,0,89,202,291 +2012-04-05 14:00:00,2,0,1,1,18.86,22.725,33,11.0014,143,144,287 +2012-04-05 15:00:00,2,0,1,1,20.5,24.24,31,7.0015,98,171,269 +2012-04-05 16:00:00,2,0,1,1,20.5,24.24,31,12.998,84,318,402 +2012-04-05 17:00:00,2,0,1,1,20.5,24.24,31,11.0014,145,677,822 +2012-04-05 18:00:00,2,0,1,1,20.5,24.24,31,7.0015,80,618,698 +2012-04-05 19:00:00,2,0,1,1,19.68,23.485,31,16.9979,64,423,487 +2012-04-05 20:00:00,2,0,1,1,18.04,21.97,41,12.998,33,279,312 +2012-04-05 21:00:00,2,0,1,1,17.22,21.21,47,12.998,25,209,234 +2012-04-05 22:00:00,2,0,1,1,16.4,20.455,47,12.998,20,129,149 +2012-04-05 23:00:00,2,0,1,1,16.4,20.455,50,8.9981,12,124,136 +2012-04-06 00:00:00,2,0,1,1,16.4,20.455,43,0,12,49,61 +2012-04-06 01:00:00,2,0,1,1,14.76,17.425,62,8.9981,10,28,38 +2012-04-06 02:00:00,2,0,1,1,14.76,16.665,50,26.0027,6,5,11 +2012-04-06 03:00:00,2,0,1,1,13.94,15.15,53,22.0028,3,5,8 +2012-04-06 04:00:00,2,0,1,1,13.94,15.91,49,16.9979,2,3,5 +2012-04-06 05:00:00,2,0,1,1,13.12,15.15,53,22.0028,0,23,23 +2012-04-06 06:00:00,2,0,1,1,12.3,13.635,49,26.0027,0,80,80 +2012-04-06 07:00:00,2,0,1,1,12.3,14.395,49,19.0012,15,231,246 +2012-04-06 08:00:00,2,0,1,1,12.3,13.635,49,22.0028,19,489,508 +2012-04-06 09:00:00,2,0,1,1,13.94,15.15,42,22.0028,58,318,376 +2012-04-06 10:00:00,2,0,1,1,14.76,16.665,40,22.0028,81,157,238 +2012-04-06 11:00:00,2,0,1,1,16.4,20.455,37,19.9995,112,179,291 +2012-04-06 12:00:00,2,0,1,1,17.22,21.21,35,19.9995,113,224,337 +2012-04-06 13:00:00,2,0,1,1,18.04,21.97,33,22.0028,173,238,411 +2012-04-06 14:00:00,2,0,1,1,19.68,23.485,29,26.0027,240,250,490 +2012-04-06 15:00:00,2,0,1,1,20.5,24.24,27,19.0012,218,319,537 +2012-04-06 16:00:00,2,0,1,1,20.5,24.24,22,27.9993,184,352,536 +2012-04-06 17:00:00,2,0,1,1,21.32,25,23,27.9993,172,483,655 +2012-04-06 18:00:00,2,0,1,1,20.5,24.24,22,31.0009,104,380,484 +2012-04-06 19:00:00,2,0,1,1,19.68,23.485,23,19.9995,115,297,412 +2012-04-06 20:00:00,2,0,1,1,18.86,22.725,24,19.0012,61,191,252 +2012-04-06 21:00:00,2,0,1,1,18.04,21.97,26,8.9981,54,136,190 +2012-04-06 22:00:00,2,0,1,1,16.4,20.455,35,15.0013,34,124,158 +2012-04-06 23:00:00,2,0,1,1,17.22,21.21,30,19.0012,21,92,113 +2012-04-07 00:00:00,2,0,0,1,17.22,21.21,26,19.9995,9,85,94 +2012-04-07 01:00:00,2,0,0,1,16.4,20.455,28,16.9979,9,60,69 +2012-04-07 02:00:00,2,0,0,1,14.76,16.665,29,23.9994,11,25,36 +2012-04-07 03:00:00,2,0,0,1,14.76,16.665,32,16.9979,7,21,28 +2012-04-07 04:00:00,2,0,0,1,13.12,15.91,36,11.0014,3,4,7 +2012-04-07 05:00:00,2,0,0,1,13.12,15.91,33,11.0014,0,2,2 +2012-04-07 06:00:00,2,0,0,1,13.12,15.91,36,12.998,1,18,19 +2012-04-07 07:00:00,2,0,0,1,13.12,15.15,33,19.0012,14,40,54 +2012-04-07 08:00:00,2,0,0,1,13.94,15.91,34,16.9979,29,94,123 +2012-04-07 09:00:00,2,0,0,1,16.4,20.455,30,16.9979,103,173,276 +2012-04-07 10:00:00,2,0,0,1,17.22,21.21,28,16.9979,187,176,363 +2012-04-07 11:00:00,2,0,0,1,18.04,21.97,24,19.9995,251,244,495 +2012-04-07 12:00:00,2,0,0,1,18.86,22.725,23,26.0027,320,270,590 +2012-04-07 13:00:00,2,0,0,1,20.5,24.24,22,12.998,355,288,643 +2012-04-07 14:00:00,2,0,0,1,20.5,24.24,22,19.9995,326,252,578 +2012-04-07 15:00:00,2,0,0,1,21.32,25,19,27.9993,321,305,626 +2012-04-07 16:00:00,2,0,0,1,22.14,25.76,19,26.0027,354,261,615 +2012-04-07 17:00:00,2,0,0,1,22.14,25.76,19,27.9993,299,268,567 +2012-04-07 18:00:00,2,0,0,1,22.14,25.76,18,19.9995,227,290,517 +2012-04-07 19:00:00,2,0,0,1,22.14,25.76,16,22.0028,170,243,413 +2012-04-07 20:00:00,2,0,0,1,20.5,24.24,20,15.0013,73,135,208 +2012-04-07 21:00:00,2,0,0,1,20.5,24.24,20,12.998,75,159,234 +2012-04-07 22:00:00,2,0,0,1,19.68,23.485,20,12.998,76,106,182 +2012-04-07 23:00:00,2,0,0,1,18.86,22.725,23,15.0013,32,86,118 +2012-04-08 00:00:00,2,0,0,1,18.04,21.97,24,15.0013,21,64,85 +2012-04-08 01:00:00,2,0,0,1,18.04,21.97,24,15.0013,14,50,64 +2012-04-08 02:00:00,2,0,0,1,18.04,21.97,24,15.0013,7,25,32 +2012-04-08 03:00:00,2,0,0,1,17.22,21.21,26,8.9981,8,18,26 +2012-04-08 04:00:00,2,0,0,1,16.4,20.455,40,0,0,7,7 +2012-04-08 05:00:00,2,0,0,1,15.58,19.695,46,0,4,8,12 +2012-04-08 06:00:00,2,0,0,1,14.76,18.94,37,0,7,21,28 +2012-04-08 07:00:00,2,0,0,1,15.58,19.695,27,11.0014,12,25,37 +2012-04-08 08:00:00,2,0,0,1,16.4,20.455,30,12.998,19,65,84 +2012-04-08 09:00:00,2,0,0,1,18.04,21.97,26,15.0013,71,108,179 +2012-04-08 10:00:00,2,0,0,1,20.5,24.24,25,15.0013,113,186,299 +2012-04-08 11:00:00,2,0,0,1,20.5,24.24,25,19.0012,195,209,404 +2012-04-08 12:00:00,2,0,0,1,22.14,25.76,24,16.9979,198,259,457 +2012-04-08 13:00:00,2,0,0,1,23.78,27.275,23,11.0014,229,254,483 +2012-04-08 14:00:00,2,0,0,1,24.6,29.545,18,30.0026,254,249,503 +2012-04-08 15:00:00,2,0,0,1,25.42,30.305,17,23.9994,260,226,486 +2012-04-08 16:00:00,2,0,0,1,26.24,30.305,19,22.0028,232,244,476 +2012-04-08 17:00:00,2,0,0,1,25.42,30.305,22,19.9995,185,226,411 +2012-04-08 18:00:00,2,0,0,1,25.42,30.305,25,22.0028,151,159,310 +2012-04-08 19:00:00,2,0,0,1,24.6,30.305,23,26.0027,89,187,276 +2012-04-08 20:00:00,2,0,0,1,22.96,26.515,28,27.9993,65,146,211 +2012-04-08 21:00:00,2,0,0,1,21.32,25,34,15.0013,53,77,130 +2012-04-08 22:00:00,2,0,0,1,20.5,24.24,36,15.0013,33,85,118 +2012-04-08 23:00:00,2,0,0,1,20.5,24.24,39,16.9979,10,41,51 +2012-04-09 00:00:00,2,0,1,1,19.68,23.485,39,19.0012,8,29,37 +2012-04-09 01:00:00,2,0,1,1,18.86,22.725,41,8.9981,4,12,16 +2012-04-09 02:00:00,2,0,1,1,18.86,22.725,31,12.998,2,4,6 +2012-04-09 03:00:00,2,0,1,1,18.04,21.97,30,11.0014,0,3,3 +2012-04-09 04:00:00,2,0,1,1,18.04,21.97,24,12.998,2,3,5 +2012-04-09 05:00:00,2,0,1,1,18.04,21.97,24,12.998,2,30,32 +2012-04-09 06:00:00,2,0,1,1,17.22,21.21,26,15.0013,3,108,111 +2012-04-09 07:00:00,2,0,1,1,17.22,21.21,28,12.998,11,320,331 +2012-04-09 08:00:00,2,0,1,1,18.04,21.97,30,12.998,22,595,617 +2012-04-09 09:00:00,2,0,1,1,18.86,22.725,31,23.9994,50,236,286 +2012-04-09 10:00:00,2,0,1,1,20.5,24.24,27,32.9975,65,113,178 +2012-04-09 11:00:00,2,0,1,1,21.32,25,27,27.9993,96,127,223 +2012-04-09 12:00:00,2,0,1,1,22.14,25.76,28,47.9988,94,186,280 +2012-04-09 13:00:00,2,0,1,1,22.14,25.76,28,39.0007,108,173,281 +2012-04-09 14:00:00,2,0,1,1,22.96,26.515,28,36.9974,66,152,218 +2012-04-09 15:00:00,2,0,1,1,23.78,27.275,28,36.9974,82,173,255 +2012-04-09 16:00:00,2,0,1,1,22.96,26.515,30,27.9993,81,310,391 +2012-04-09 17:00:00,2,0,1,1,22.14,25.76,32,27.9993,67,565,632 +2012-04-09 18:00:00,2,0,1,1,22.14,25.76,34,19.9995,60,586,646 +2012-04-09 19:00:00,2,0,1,1,21.32,25,34,23.9994,35,386,421 +2012-04-09 20:00:00,2,0,1,1,20.5,24.24,36,30.0026,21,255,276 +2012-04-09 21:00:00,2,0,1,3,19.68,23.485,41,27.9993,14,151,165 +2012-04-09 22:00:00,2,0,1,2,18.86,22.725,41,32.9975,6,102,108 +2012-04-09 23:00:00,2,0,1,1,18.04,21.97,44,19.9995,6,61,67 +2012-04-10 00:00:00,2,0,1,2,18.04,21.97,47,19.0012,3,23,26 +2012-04-10 01:00:00,2,0,1,1,17.22,21.21,50,15.0013,0,9,9 +2012-04-10 02:00:00,2,0,1,1,14.76,17.425,71,8.9981,0,2,2 +2012-04-10 03:00:00,2,0,1,1,14.76,17.425,71,8.9981,0,2,2 +2012-04-10 04:00:00,2,0,1,1,13.94,16.665,71,8.9981,0,2,2 +2012-04-10 05:00:00,2,0,1,1,13.94,16.665,71,8.9981,0,24,24 +2012-04-10 06:00:00,2,0,1,1,13.94,17.425,71,7.0015,3,100,103 +2012-04-10 07:00:00,2,0,1,1,13.94,17.425,71,7.0015,16,368,384 +2012-04-10 08:00:00,2,0,1,1,15.58,19.695,62,8.9981,22,670,692 +2012-04-10 09:00:00,2,0,1,1,17.22,21.21,67,12.998,16,303,319 +2012-04-10 10:00:00,2,0,1,1,18.86,22.725,47,11.0014,49,132,181 +2012-04-10 11:00:00,2,0,1,1,20.5,24.24,36,0,78,161,239 +2012-04-10 12:00:00,2,0,1,1,22.14,25.76,22,19.0012,75,184,259 +2012-04-10 13:00:00,2,0,1,1,21.32,25,23,11.0014,81,202,283 +2012-04-10 14:00:00,2,0,1,1,22.14,25.76,24,12.998,75,149,224 +2012-04-10 15:00:00,2,0,1,1,22.96,26.515,21,19.9995,46,157,203 +2012-04-10 16:00:00,2,0,1,1,23.78,27.275,21,16.9979,66,296,362 +2012-04-10 17:00:00,2,0,1,1,22.96,26.515,21,35.0008,88,656,744 +2012-04-10 18:00:00,2,0,1,1,22.14,25.76,22,27.9993,78,626,704 +2012-04-10 19:00:00,2,0,1,1,21.32,25,20,23.9994,51,428,479 +2012-04-10 20:00:00,2,0,1,1,18.86,22.725,28,26.0027,34,248,282 +2012-04-10 21:00:00,2,0,1,1,18.04,21.97,30,30.0026,15,191,206 +2012-04-10 22:00:00,2,0,1,1,16.4,20.455,37,32.9975,9,118,127 +2012-04-10 23:00:00,2,0,1,1,14.76,16.665,40,27.9993,14,48,62 +2012-04-11 00:00:00,2,0,1,1,13.94,15.15,36,27.9993,8,22,30 +2012-04-11 01:00:00,2,0,1,1,13.94,15.91,39,19.0012,3,9,12 +2012-04-11 02:00:00,2,0,1,1,13.12,15.15,45,19.0012,0,2,2 +2012-04-11 03:00:00,2,0,1,1,12.3,14.395,49,15.0013,0,2,2 +2012-04-11 05:00:00,2,0,1,1,11.48,13.635,56,12.998,1,26,27 +2012-04-11 06:00:00,2,0,1,1,11.48,14.395,56,7.0015,3,103,106 +2012-04-11 07:00:00,2,0,1,1,11.48,14.395,52,8.9981,18,303,321 +2012-04-11 08:00:00,2,0,1,1,12.3,14.395,49,15.0013,14,581,595 +2012-04-11 09:00:00,2,0,1,2,13.12,15.15,49,19.9995,20,282,302 +2012-04-11 10:00:00,2,0,1,2,13.94,15.15,49,22.0028,26,127,153 +2012-04-11 11:00:00,2,0,1,2,15.58,19.695,43,22.0028,38,142,180 +2012-04-11 12:00:00,2,0,1,2,14.76,16.665,46,26.0027,35,147,182 +2012-04-11 13:00:00,2,0,1,2,16.4,20.455,40,23.9994,16,147,163 +2012-04-11 14:00:00,2,0,1,1,14.76,17.425,57,12.998,34,101,135 +2012-04-11 15:00:00,2,0,1,3,15.58,19.695,46,15.0013,50,152,202 +2012-04-11 16:00:00,2,0,1,1,18.04,21.97,33,19.9995,51,256,307 +2012-04-11 17:00:00,2,0,1,1,17.22,21.21,35,26.0027,52,527,579 +2012-04-11 18:00:00,2,0,1,3,16.4,20.455,43,27.9993,39,546,585 +2012-04-11 19:00:00,2,0,1,1,16.4,20.455,40,23.9994,28,356,384 +2012-04-11 20:00:00,2,0,1,1,14.76,16.665,46,22.0028,22,213,235 +2012-04-11 21:00:00,2,0,1,1,13.94,15.15,57,26.0027,11,154,165 +2012-04-11 22:00:00,2,0,1,1,13.94,15.15,57,22.0028,4,130,134 +2012-04-11 23:00:00,2,0,1,1,13.94,15.15,57,19.9995,9,52,61 +2012-04-12 00:00:00,2,0,1,1,13.12,15.15,66,19.0012,1,22,23 +2012-04-12 01:00:00,2,0,1,1,13.12,15.15,66,15.0013,2,7,9 +2012-04-12 02:00:00,2,0,1,1,13.12,15.15,61,19.0012,0,4,4 +2012-04-12 03:00:00,2,0,1,1,13.12,15.15,61,16.9979,2,3,5 +2012-04-12 04:00:00,2,0,1,1,12.3,14.395,61,15.0013,0,1,1 +2012-04-12 05:00:00,2,0,1,1,12.3,14.395,61,15.0013,0,21,21 +2012-04-12 06:00:00,2,0,1,1,12.3,14.395,65,16.9979,2,94,96 +2012-04-12 07:00:00,2,0,1,1,12.3,13.635,65,22.0028,12,294,306 +2012-04-12 08:00:00,2,0,1,1,13.12,15.15,66,22.0028,20,604,624 +2012-04-12 09:00:00,2,0,1,1,14.76,16.665,57,23.9994,16,271,287 +2012-04-12 10:00:00,2,0,1,1,16.4,20.455,50,19.9995,38,103,141 +2012-04-12 11:00:00,2,0,1,1,17.22,21.21,47,19.9995,50,174,224 +2012-04-12 12:00:00,2,0,1,1,18.86,22.725,41,30.0026,60,199,259 +2012-04-12 13:00:00,2,0,1,1,19.68,23.485,36,30.0026,55,148,203 +2012-04-12 14:00:00,2,0,1,1,20.5,24.24,31,22.0028,74,150,224 +2012-04-12 15:00:00,2,0,1,1,19.68,23.485,31,16.9979,42,169,211 +2012-04-12 16:00:00,2,0,1,1,19.68,23.485,31,19.0012,54,299,353 +2012-04-12 17:00:00,2,0,1,1,20.5,24.24,27,26.0027,60,596,656 +2012-04-12 18:00:00,2,0,1,1,20.5,24.24,27,26.0027,63,547,610 +2012-04-12 19:00:00,2,0,1,1,18.86,22.725,31,19.9995,50,383,433 +2012-04-12 20:00:00,2,0,1,1,18.04,21.97,33,16.9979,26,254,280 +2012-04-12 21:00:00,2,0,1,1,17.22,21.21,35,8.9981,13,174,187 +2012-04-12 22:00:00,2,0,1,1,17.22,21.21,35,12.998,15,143,158 +2012-04-12 23:00:00,2,0,1,1,17.22,21.21,35,12.998,8,86,94 +2012-04-13 00:00:00,2,0,1,1,16.4,20.455,37,16.9979,14,41,55 +2012-04-13 01:00:00,2,0,1,1,14.76,17.425,46,12.998,2,28,30 +2012-04-13 02:00:00,2,0,1,1,13.94,16.665,49,12.998,6,5,11 +2012-04-13 03:00:00,2,0,1,1,13.94,16.665,61,11.0014,3,8,11 +2012-04-13 04:00:00,2,0,1,2,13.94,16.665,53,8.9981,1,4,5 +2012-04-13 05:00:00,2,0,1,2,13.94,16.665,53,11.0014,2,19,21 +2012-04-13 06:00:00,2,0,1,1,13.12,15.91,57,11.0014,0,84,84 +2012-04-13 07:00:00,2,0,1,1,13.94,15.91,61,15.0013,13,283,296 +2012-04-13 08:00:00,2,0,1,1,15.58,19.695,46,11.0014,24,539,563 +2012-04-13 09:00:00,2,0,1,1,17.22,21.21,41,11.0014,36,294,330 +2012-04-13 10:00:00,2,0,1,1,18.04,21.97,38,12.998,59,133,192 +2012-04-13 11:00:00,2,0,1,1,18.86,22.725,36,8.9981,75,158,233 +2012-04-13 12:00:00,2,0,1,1,20.5,24.24,31,0,104,218,322 +2012-04-13 13:00:00,2,0,1,1,21.32,25,27,19.0012,112,246,358 +2012-04-13 14:00:00,2,0,1,1,21.32,25,27,0,125,223,348 +2012-04-13 15:00:00,2,0,1,1,22.14,25.76,28,16.9979,115,237,352 +2012-04-13 16:00:00,2,0,1,1,22.96,26.515,26,16.9979,113,350,463 +2012-04-13 17:00:00,2,0,1,1,22.96,26.515,24,11.0014,117,621,738 +2012-04-13 18:00:00,2,0,1,1,22.14,25.76,26,8.9981,107,564,671 +2012-04-13 19:00:00,2,0,1,1,22.14,25.76,24,11.0014,75,352,427 +2012-04-13 20:00:00,2,0,1,1,20.5,24.24,29,8.9981,44,242,286 +2012-04-13 21:00:00,2,0,1,1,20.5,24.24,36,0,36,153,189 +2012-04-13 22:00:00,2,0,1,1,18.04,21.97,62,7.0015,34,181,215 +2012-04-13 23:00:00,2,0,1,1,17.22,21.21,62,6.0032,35,163,198 +2012-04-14 00:00:00,2,0,0,1,16.4,20.455,58,8.9981,11,85,96 +2012-04-14 01:00:00,2,0,0,1,16.4,20.455,58,8.9981,10,60,70 +2012-04-14 02:00:00,2,0,0,1,15.58,19.695,66,8.9981,3,53,56 +2012-04-14 03:00:00,2,0,0,1,14.76,18.18,66,6.0032,6,26,32 +2012-04-14 04:00:00,2,0,0,1,14.76,18.18,71,7.0015,5,9,14 +2012-04-14 05:00:00,2,0,0,1,14.76,18.18,66,7.0015,2,5,7 +2012-04-14 06:00:00,2,0,0,1,13.94,16.665,76,11.0014,2,19,21 +2012-04-14 07:00:00,2,0,0,1,14.76,18.18,71,7.0015,8,56,64 +2012-04-14 08:00:00,2,0,0,1,14.76,17.425,71,8.9981,24,136,160 +2012-04-14 09:00:00,2,0,0,1,17.22,21.21,54,8.9981,59,206,265 +2012-04-14 10:00:00,2,0,0,1,18.86,22.725,51,11.0014,139,267,406 +2012-04-14 11:00:00,2,0,0,1,21.32,25,45,12.998,207,357,564 +2012-04-14 12:00:00,2,0,0,1,23.78,27.275,35,16.9979,274,404,678 +2012-04-14 13:00:00,2,0,0,1,25.42,31.06,33,19.9995,308,370,678 +2012-04-14 14:00:00,2,0,0,2,26.24,31.06,27,30.0026,288,372,660 +2012-04-14 15:00:00,2,0,0,2,26.24,31.06,27,23.9994,311,347,658 +2012-04-14 16:00:00,2,0,0,2,26.24,31.06,27,23.9994,253,329,582 +2012-04-14 17:00:00,2,0,0,2,25.42,31.06,33,16.9979,251,309,560 +2012-04-14 18:00:00,2,0,0,2,25.42,31.06,35,15.0013,197,284,481 +2012-04-14 19:00:00,2,0,0,2,24.6,31.06,40,11.0014,163,296,459 +2012-04-14 20:00:00,2,0,0,2,22.96,26.515,46,8.9981,112,209,321 +2012-04-14 21:00:00,2,0,0,2,22.96,26.515,43,8.9981,53,167,220 +2012-04-14 22:00:00,2,0,0,2,22.14,25.76,52,11.0014,64,148,212 +2012-04-14 23:00:00,2,0,0,2,22.14,25.76,56,12.998,45,151,196 +2012-04-15 00:00:00,2,0,0,2,22.14,25.76,56,12.998,30,94,124 +2012-04-15 01:00:00,2,0,0,2,22.14,25.76,56,11.0014,17,89,106 +2012-04-15 02:00:00,2,0,0,2,22.14,25.76,56,7.0015,20,54,74 +2012-04-15 03:00:00,2,0,0,2,21.32,25,59,8.9981,18,27,45 +2012-04-15 04:00:00,2,0,0,2,22.14,25.76,52,0,2,10,12 +2012-04-15 05:00:00,2,0,0,1,20.5,24.24,68,11.0014,4,6,10 +2012-04-15 06:00:00,2,0,0,1,20.5,24.24,63,8.9981,5,11,16 +2012-04-15 07:00:00,2,0,0,1,20.5,24.24,63,7.0015,16,30,46 +2012-04-15 08:00:00,2,0,0,1,21.32,25,59,0,33,64,97 +2012-04-15 09:00:00,2,0,0,1,22.14,25.76,56,15.0013,97,154,251 +2012-04-15 10:00:00,2,0,0,1,23.78,27.275,53,15.0013,186,235,421 +2012-04-15 11:00:00,2,0,0,1,25.42,31.06,46,19.9995,227,301,528 +2012-04-15 12:00:00,2,0,0,1,26.24,31.06,44,19.0012,275,360,635 +2012-04-15 13:00:00,2,0,0,1,27.06,31.06,44,19.0012,298,383,681 +2012-04-15 14:00:00,2,0,0,1,28.7,31.82,39,19.0012,282,346,628 +2012-04-15 15:00:00,2,0,0,1,28.7,31.82,39,26.0027,266,351,617 +2012-04-15 16:00:00,2,0,0,1,29.52,32.575,39,23.9994,286,330,616 +2012-04-15 17:00:00,2,0,0,1,28.7,31.82,42,22.0028,262,361,623 +2012-04-15 18:00:00,2,0,0,1,28.7,31.82,42,16.9979,184,295,479 +2012-04-15 19:00:00,2,0,0,1,28.7,31.82,42,16.9979,114,265,379 +2012-04-15 20:00:00,2,0,0,1,26.24,31.06,50,15.0013,86,205,291 +2012-04-15 21:00:00,2,0,0,1,25.42,31.06,57,16.9979,76,153,229 +2012-04-15 22:00:00,2,0,0,1,27.88,31.82,44,23.9994,37,97,134 +2012-04-15 23:00:00,2,0,0,1,27.06,31.06,50,26.0027,25,65,90 +2012-04-16 00:00:00,2,1,0,1,26.24,31.06,53,22.0028,15,26,41 +2012-04-16 01:00:00,2,1,0,1,25.42,30.305,61,23.9994,7,21,28 +2012-04-16 02:00:00,2,1,0,1,24.6,30.305,64,16.9979,5,9,14 +2012-04-16 03:00:00,2,1,0,1,23.78,27.275,68,12.998,3,5,8 +2012-04-16 04:00:00,2,1,0,1,22.14,25.76,77,15.0013,0,6,6 +2012-04-16 05:00:00,2,1,0,1,22.14,25.76,77,15.0013,4,34,38 +2012-04-16 06:00:00,2,1,0,1,21.32,25,83,11.0014,10,123,133 +2012-04-16 07:00:00,2,1,0,1,21.32,25,83,8.9981,20,367,387 +2012-04-16 08:00:00,2,1,0,2,22.96,26.515,83,11.0014,48,549,597 +2012-04-16 09:00:00,2,1,0,1,25.42,30.305,69,15.0013,59,238,297 +2012-04-16 10:00:00,2,1,0,1,25.42,30.305,69,16.9979,75,149,224 +2012-04-16 11:00:00,2,1,0,1,26.24,30.305,65,16.9979,115,136,251 +2012-04-16 12:00:00,2,1,0,1,27.88,31.82,57,16.9979,75,196,271 +2012-04-16 13:00:00,2,1,0,1,30.34,33.335,45,19.9995,79,184,263 +2012-04-16 14:00:00,2,1,0,1,31.16,34.09,45,22.0028,105,183,288 +2012-04-16 15:00:00,2,1,0,1,32.8,34.85,33,30.0026,81,194,275 +2012-04-16 16:00:00,2,1,0,1,32.8,34.85,33,31.0009,92,266,358 +2012-04-16 17:00:00,2,1,0,1,32.8,34.85,33,26.0027,111,601,712 +2012-04-16 18:00:00,2,1,0,1,32.8,34.85,31,26.0027,87,589,676 +2012-04-16 19:00:00,2,1,0,1,31.16,33.335,35,26.0027,61,461,522 +2012-04-16 20:00:00,2,1,0,1,30.34,32.575,37,19.9995,48,327,375 +2012-04-16 21:00:00,2,1,0,1,27.88,31.82,51,16.9979,39,232,271 +2012-04-16 22:00:00,2,1,0,1,27.88,31.82,51,16.9979,35,179,214 +2012-04-16 23:00:00,2,1,0,1,28.7,31.82,45,19.9995,24,97,121 +2012-04-17 00:00:00,2,0,1,1,27.06,31.06,54,12.998,10,33,43 +2012-04-17 01:00:00,2,0,1,1,26.24,31.06,57,11.0014,6,5,11 +2012-04-17 02:00:00,2,0,1,1,22.96,26.515,83,7.0015,1,3,4 +2012-04-17 03:00:00,2,0,1,1,22.96,26.515,83,6.0032,0,6,6 +2012-04-17 04:00:00,2,0,1,1,27.06,31.06,44,15.0013,3,6,9 +2012-04-17 05:00:00,2,0,1,1,24.6,31.06,53,16.9979,1,29,30 +2012-04-17 06:00:00,2,0,1,1,24.6,31.06,46,16.9979,8,136,144 +2012-04-17 07:00:00,2,0,1,1,24.6,31.06,43,16.9979,18,443,461 +2012-04-17 08:00:00,2,0,1,1,24.6,31.06,43,15.0013,42,631,673 +2012-04-17 09:00:00,2,0,1,1,24.6,31.06,38,32.9975,71,329,400 +2012-04-17 10:00:00,2,0,1,1,24.6,31.06,38,27.9993,52,165,217 +2012-04-17 11:00:00,2,0,1,1,24.6,31.06,33,27.9993,65,174,239 +2012-04-17 12:00:00,2,0,1,1,24.6,31.06,33,23.9994,65,179,244 +2012-04-17 13:00:00,2,0,1,1,25.42,31.06,29,16.9979,52,187,239 +2012-04-17 14:00:00,2,0,1,1,26.24,31.06,27,19.0012,59,198,257 +2012-04-17 15:00:00,2,0,1,1,27.06,31.06,24,22.0028,91,217,308 +2012-04-17 16:00:00,2,0,1,1,27.88,31.06,22,23.9994,50,320,370 +2012-04-17 17:00:00,2,0,1,1,26.24,30.305,25,19.9995,108,673,781 +2012-04-17 18:00:00,2,0,1,1,26.24,30.305,25,19.0012,105,670,775 +2012-04-17 19:00:00,2,0,1,1,24.6,30.305,26,16.9979,73,464,537 +2012-04-17 20:00:00,2,0,1,1,24.6,30.305,23,19.0012,44,358,402 +2012-04-17 21:00:00,2,0,1,1,22.96,26.515,26,19.9995,37,260,297 +2012-04-17 22:00:00,2,0,1,1,22.14,25.76,30,16.9979,18,144,162 +2012-04-17 23:00:00,2,0,1,1,22.14,25.76,32,15.0013,10,72,82 +2012-04-18 00:00:00,2,0,1,1,22.14,25.76,32,11.0014,3,35,38 +2012-04-18 01:00:00,2,0,1,1,21.32,25,34,12.998,1,13,14 +2012-04-18 02:00:00,2,0,1,2,20.5,24.24,42,12.998,1,8,9 +2012-04-18 03:00:00,2,0,1,2,20.5,24.24,42,15.0013,0,6,6 +2012-04-18 04:00:00,2,0,1,2,20.5,24.24,42,19.0012,0,7,7 +2012-04-18 05:00:00,2,0,1,2,20.5,24.24,39,19.0012,0,34,34 +2012-04-18 06:00:00,2,0,1,2,20.5,24.24,39,19.0012,6,128,134 +2012-04-18 07:00:00,2,0,1,2,20.5,24.24,39,12.998,10,408,418 +2012-04-18 08:00:00,2,0,1,3,20.5,24.24,39,12.998,25,551,576 +2012-04-18 09:00:00,2,0,1,3,19.68,23.485,44,19.9995,20,245,265 +2012-04-18 10:00:00,2,0,1,3,19.68,23.485,47,15.0013,31,116,147 +2012-04-18 11:00:00,2,0,1,3,18.86,22.725,47,16.9979,14,105,119 +2012-04-18 12:00:00,2,0,1,3,18.86,22.725,51,7.0015,15,95,110 +2012-04-18 13:00:00,2,0,1,3,18.86,22.725,59,0,13,51,64 +2012-04-18 14:00:00,2,0,1,3,18.04,21.97,72,7.0015,8,43,51 +2012-04-18 15:00:00,2,0,1,3,17.22,21.21,77,12.998,10,88,98 +2012-04-18 16:00:00,2,0,1,2,17.22,21.21,77,15.0013,36,199,235 +2012-04-18 17:00:00,2,0,1,2,17.22,21.21,77,12.998,46,442,488 +2012-04-18 18:00:00,2,0,1,2,17.22,21.21,77,0,27,478,505 +2012-04-18 19:00:00,2,0,1,2,17.22,21.21,77,8.9981,26,342,368 +2012-04-18 20:00:00,2,0,1,2,17.22,21.21,77,7.0015,8,252,260 +2012-04-18 21:00:00,2,0,1,2,17.22,21.21,82,6.0032,24,165,189 +2012-04-18 22:00:00,2,0,1,2,17.22,21.21,77,6.0032,9,153,162 +2012-04-18 23:00:00,2,0,1,2,17.22,21.21,77,0,14,56,70 +2012-04-19 00:00:00,2,0,1,3,17.22,21.21,77,0,5,20,25 +2012-04-19 01:00:00,2,0,1,3,17.22,21.21,77,7.0015,2,11,13 +2012-04-19 02:00:00,2,0,1,2,17.22,21.21,77,0,2,4,6 +2012-04-19 03:00:00,2,0,1,2,17.22,21.21,77,0,1,3,4 +2012-04-19 04:00:00,2,0,1,2,17.22,21.21,71,0,0,4,4 +2012-04-19 05:00:00,2,0,1,1,16.4,20.455,82,0,0,30,30 +2012-04-19 06:00:00,2,0,1,2,16.4,20.455,82,7.0015,4,116,120 +2012-04-19 07:00:00,2,0,1,2,16.4,20.455,82,8.9981,15,391,406 +2012-04-19 08:00:00,2,0,1,2,17.22,21.21,82,7.0015,26,651,677 +2012-04-19 09:00:00,2,0,1,2,18.86,22.725,72,0,31,270,301 +2012-04-19 10:00:00,2,0,1,1,19.68,23.485,63,6.0032,46,143,189 +2012-04-19 11:00:00,2,0,1,1,21.32,25,48,0,46,183,229 +2012-04-19 12:00:00,2,0,1,1,22.14,25.76,49,0,51,213,264 +2012-04-19 13:00:00,2,0,1,1,22.96,26.515,46,0,52,186,238 +2012-04-19 14:00:00,2,0,1,1,23.78,27.275,43,0,54,183,237 +2012-04-19 15:00:00,2,0,1,1,24.6,31.06,43,0,66,196,262 +2012-04-19 16:00:00,2,0,1,1,25.42,31.06,41,7.0015,63,324,387 +2012-04-19 17:00:00,2,0,1,1,24.6,31.06,43,6.0032,85,663,748 +2012-04-19 18:00:00,2,0,1,1,24.6,31.06,43,6.0032,99,677,776 +2012-04-19 19:00:00,2,0,1,1,23.78,27.275,46,8.9981,70,516,586 +2012-04-19 20:00:00,2,0,1,1,22.96,26.515,49,15.0013,52,352,404 +2012-04-19 21:00:00,2,0,1,1,21.32,25,55,7.0015,27,240,267 +2012-04-19 22:00:00,2,0,1,1,21.32,25,59,12.998,29,219,248 +2012-04-19 23:00:00,2,0,1,1,20.5,24.24,63,7.0015,20,124,144 +2012-05-01 00:00:00,2,0,1,2,20.5,24.24,59,12.998,7,28,35 +2012-05-01 01:00:00,2,0,1,2,20.5,24.24,63,8.9981,0,21,21 +2012-05-01 02:00:00,2,0,1,2,20.5,24.24,72,6.0032,1,7,8 +2012-05-01 03:00:00,2,0,1,2,20.5,24.24,77,0,1,2,3 +2012-05-01 04:00:00,2,0,1,2,21.32,25,72,6.0032,1,7,8 +2012-05-01 05:00:00,2,0,1,2,21.32,25,72,6.0032,0,17,17 +2012-05-01 06:00:00,2,0,1,3,21.32,25,77,7.0015,2,24,26 +2012-05-01 07:00:00,2,0,1,2,20.5,24.24,94,16.9979,8,161,169 +2012-05-01 08:00:00,2,0,1,2,21.32,25,94,19.0012,19,538,557 +2012-05-01 09:00:00,2,0,1,2,22.14,25.76,88,12.998,18,331,349 +2012-05-01 10:00:00,2,0,1,1,25.42,29.545,78,16.9979,30,144,174 +2012-05-01 11:00:00,2,0,1,2,27.06,31.06,65,19.0012,50,179,229 +2012-05-01 12:00:00,2,0,1,2,28.7,32.575,58,15.0013,41,228,269 +2012-05-01 13:00:00,2,0,1,2,29.52,33.335,51,15.0013,41,208,249 +2012-05-01 14:00:00,2,0,1,2,30.34,33.335,48,16.9979,37,167,204 +2012-05-01 15:00:00,2,0,1,2,30.34,33.335,45,15.0013,48,186,234 +2012-05-01 16:00:00,2,0,1,1,30.34,33.335,45,12.998,41,313,354 +2012-05-01 17:00:00,2,0,1,1,30.34,33.335,48,6.0032,65,616,681 +2012-05-01 18:00:00,2,0,1,1,28.7,32.575,54,8.9981,81,662,743 +2012-05-01 19:00:00,2,0,1,1,28.7,32.575,54,8.9981,58,429,487 +2012-05-01 20:00:00,2,0,1,1,27.06,31.06,61,11.0014,36,299,335 +2012-05-01 21:00:00,2,0,1,1,26.24,30.305,65,8.9981,31,251,282 +2012-05-01 22:00:00,2,0,1,1,26.24,30.305,65,0,21,190,211 +2012-05-01 23:00:00,2,0,1,1,24.6,28.79,78,0,16,79,95 +2012-05-02 00:00:00,2,0,1,1,24.6,28.79,78,7.0015,4,43,47 +2012-05-02 01:00:00,2,0,1,1,22.96,26.515,83,0,8,7,15 +2012-05-02 02:00:00,2,0,1,1,22.96,26.515,83,0,7,9,16 +2012-05-02 03:00:00,2,0,1,1,22.96,26.515,83,6.0032,0,6,6 +2012-05-02 04:00:00,2,0,1,1,22.14,25.76,88,0,2,2,4 +2012-05-02 05:00:00,2,0,1,1,22.14,25.76,90,8.9981,2,31,33 +2012-05-02 06:00:00,2,0,1,3,22.96,26.515,84,0,3,117,120 +2012-05-02 07:00:00,2,0,1,2,22.14,25.76,88,12.998,14,344,358 +2012-05-02 08:00:00,2,0,1,2,22.96,26.515,88,0,26,640,666 +2012-05-02 09:00:00,2,0,1,2,22.96,26.515,88,0,26,289,315 +2012-05-02 10:00:00,2,0,1,2,23.78,27.275,83,7.0015,28,147,175 +2012-05-02 11:00:00,2,0,1,2,23.78,27.275,81,8.9981,39,145,184 +2012-05-02 12:00:00,2,0,1,2,23.78,27.275,83,15.0013,35,210,245 +2012-05-02 13:00:00,2,0,1,2,23.78,27.275,78,12.998,49,179,228 +2012-05-02 14:00:00,2,0,1,1,25.42,30.305,69,6.0032,51,189,240 +2012-05-02 15:00:00,2,0,1,1,26.24,30.305,65,12.998,52,204,256 +2012-05-02 16:00:00,2,0,1,1,26.24,30.305,65,11.0014,54,313,367 +2012-05-02 17:00:00,2,0,1,1,24.6,29.545,73,16.9979,70,659,729 +2012-05-02 18:00:00,2,0,1,1,22.96,26.515,73,15.0013,43,770,813 +2012-05-02 19:00:00,2,0,1,1,22.14,25.76,77,16.9979,43,461,504 +2012-05-02 20:00:00,2,0,1,1,21.32,25,77,16.9979,42,296,338 +2012-05-02 21:00:00,2,0,1,1,21.32,25,77,15.0013,21,218,239 +2012-05-02 22:00:00,2,0,1,1,20.5,24.24,82,15.0013,27,146,173 +2012-05-02 23:00:00,2,0,1,2,20.5,24.24,77,16.9979,21,77,98 +2012-05-03 00:00:00,2,0,1,2,19.68,23.485,82,15.0013,15,75,90 +2012-05-03 01:00:00,2,0,1,2,18.86,22.725,88,7.0015,9,15,24 +2012-05-03 02:00:00,2,0,1,2,18.86,22.725,88,8.9981,4,13,17 +2012-05-03 03:00:00,2,0,1,2,18.86,22.725,88,0,2,4,6 +2012-05-03 04:00:00,2,0,1,2,18.86,22.725,88,16.9979,0,2,2 +2012-05-03 05:00:00,2,0,1,2,18.86,22.725,88,16.9979,1,20,21 +2012-05-03 06:00:00,2,0,1,2,18.86,22.725,88,11.0014,8,128,136 +2012-05-03 07:00:00,2,0,1,3,18.04,21.97,94,7.0015,8,376,384 +2012-05-03 08:00:00,2,0,1,3,18.86,22.725,88,12.998,19,608,627 +2012-05-03 09:00:00,2,0,1,2,19.68,23.485,88,7.0015,25,279,304 +2012-05-03 10:00:00,2,0,1,2,21.32,25,77,0,36,132,168 +2012-05-03 11:00:00,2,0,1,1,22.14,25.76,77,0,34,167,201 +2012-05-03 12:00:00,2,0,1,1,22.96,26.515,73,8.9981,64,237,301 +2012-05-03 13:00:00,2,0,1,1,24.6,29.545,69,12.998,48,217,265 +2012-05-03 14:00:00,2,0,1,1,26.24,30.305,65,12.998,33,171,204 +2012-05-03 15:00:00,2,0,1,1,27.06,31.06,61,12.998,63,220,283 +2012-05-03 16:00:00,2,0,1,1,27.88,31.82,57,11.0014,45,325,370 +2012-05-03 17:00:00,2,0,1,1,29.52,33.335,54,8.9981,87,617,704 +2012-05-03 18:00:00,2,0,1,1,29.52,33.335,58,8.9981,64,642,706 +2012-05-03 19:00:00,2,0,1,1,28.7,32.575,61,12.998,55,467,522 +2012-05-03 20:00:00,2,0,1,1,26.24,30.305,73,12.998,52,368,420 +2012-05-03 21:00:00,2,0,1,1,25.42,29.545,78,8.9981,42,257,299 +2012-05-03 22:00:00,2,0,1,1,25.42,29.545,78,0,29,217,246 +2012-05-03 23:00:00,2,0,1,1,24.6,28.03,83,0,21,100,121 +2012-05-04 00:00:00,2,0,1,1,24.6,28.79,78,22.0028,19,70,89 +2012-05-04 01:00:00,2,0,1,1,24.6,28.79,78,7.0015,15,33,48 +2012-05-04 02:00:00,2,0,1,1,23.78,27.275,83,8.9981,0,11,11 +2012-05-04 03:00:00,2,0,1,1,22.96,26.515,88,15.0013,0,14,14 +2012-05-04 04:00:00,2,0,1,1,22.96,26.515,88,12.998,0,4,4 +2012-05-04 05:00:00,2,0,1,1,22.96,26.515,88,12.998,0,24,24 +2012-05-04 06:00:00,2,0,1,1,22.14,25.76,94,7.0015,8,127,135 +2012-05-04 07:00:00,2,0,1,1,22.96,26.515,88,0,9,347,356 +2012-05-04 08:00:00,2,0,1,1,22.96,26.515,88,0,34,584,618 +2012-05-04 09:00:00,2,0,1,1,24.6,28.79,78,0,32,262,294 +2012-05-04 10:00:00,2,0,1,2,25.42,29.545,73,8.9981,45,154,199 +2012-05-04 11:00:00,2,0,1,2,28.7,32.575,61,0,77,181,258 +2012-05-04 12:00:00,2,0,1,3,25.42,29.545,78,23.9994,46,125,171 +2012-05-04 13:00:00,2,0,1,2,26.24,30.305,73,0,71,207,278 +2012-05-04 14:00:00,2,0,1,2,27.06,31.06,74,19.0012,83,159,242 +2012-05-04 15:00:00,2,0,1,2,29.52,34.09,62,7.0015,103,240,343 +2012-05-04 16:00:00,2,0,1,1,31.16,34.09,48,11.0014,82,358,440 +2012-05-04 17:00:00,2,0,1,1,28.7,32.575,54,31.0009,96,547,643 +2012-05-04 18:00:00,2,0,1,1,28.7,32.575,54,31.0009,77,564,641 +2012-05-04 19:00:00,2,0,1,1,28.7,32.575,51,8.9981,64,388,452 +2012-05-04 20:00:00,2,0,1,1,27.88,31.82,51,7.0015,58,255,313 +2012-05-04 21:00:00,2,0,1,1,26.24,30.305,69,12.998,49,186,235 +2012-05-04 22:00:00,2,0,1,1,24.6,28.03,83,8.9981,50,182,232 +2012-05-04 23:00:00,2,0,1,1,24.6,28.03,83,6.0032,51,205,256 +2012-05-05 00:00:00,2,0,0,1,24.6,28.03,83,0,42,111,153 +2012-05-05 01:00:00,2,0,0,1,24.6,28.03,83,0,28,79,107 +2012-05-05 02:00:00,2,0,0,1,23.78,27.275,88,0,24,51,75 +2012-05-05 03:00:00,2,0,0,1,23.78,27.275,83,0,11,21,32 +2012-05-05 04:00:00,2,0,0,1,22.96,26.515,88,7.0015,0,9,9 +2012-05-05 05:00:00,2,0,0,1,22.96,26.515,88,6.0032,8,14,22 +2012-05-05 06:00:00,2,0,0,2,22.14,25.76,94,0,9,33,42 +2012-05-05 07:00:00,2,0,0,1,22.96,26.515,88,0,8,79,87 +2012-05-05 08:00:00,2,0,0,1,23.78,27.275,83,6.0032,42,155,197 +2012-05-05 09:00:00,2,0,0,1,25.42,29.545,78,7.0015,61,223,284 +2012-05-05 10:00:00,2,0,0,1,27.06,31.06,65,8.9981,148,284,432 +2012-05-05 11:00:00,2,0,0,1,28.7,32.575,58,6.0032,221,354,575 +2012-05-05 12:00:00,2,0,0,1,29.52,33.335,58,7.0015,220,330,550 +2012-05-05 13:00:00,2,0,0,1,30.34,34.09,55,8.9981,217,307,524 +2012-05-05 14:00:00,2,0,0,3,28.7,32.575,61,19.9995,187,241,428 +2012-05-05 15:00:00,2,0,0,3,27.06,31.06,74,12.998,241,300,541 +2012-05-05 16:00:00,2,0,0,2,27.88,31.82,65,26.0027,230,310,540 +2012-05-05 17:00:00,2,0,0,2,27.88,31.82,65,19.9995,204,298,502 +2012-05-05 18:00:00,2,0,0,2,27.06,31.06,69,23.9994,156,278,434 +2012-05-05 19:00:00,2,0,0,2,25.42,29.545,73,22.0028,151,254,405 +2012-05-05 20:00:00,2,0,0,1,24.6,28.79,78,16.9979,100,209,309 +2012-05-05 21:00:00,2,0,0,2,23.78,27.275,78,15.0013,86,183,269 +2012-05-05 22:00:00,2,0,0,2,23.78,27.275,78,12.998,67,150,217 +2012-05-05 23:00:00,2,0,0,2,22.96,26.515,83,19.0012,35,114,149 +2012-05-06 00:00:00,2,0,0,2,22.96,26.515,83,8.9981,23,111,134 +2012-05-06 01:00:00,2,0,0,2,22.14,25.76,83,15.0013,37,84,121 +2012-05-06 02:00:00,2,0,0,2,22.14,25.76,83,19.0012,29,64,93 +2012-05-06 03:00:00,2,0,0,2,22.14,25.76,83,12.998,9,19,28 +2012-05-06 04:00:00,2,0,0,3,21.32,25,83,11.0014,9,7,16 +2012-05-06 05:00:00,2,0,0,3,21.32,25,83,11.0014,1,10,11 +2012-05-06 06:00:00,2,0,0,3,21.32,25,83,15.0013,3,14,17 +2012-05-06 07:00:00,2,0,0,3,21.32,25,83,11.0014,5,31,36 +2012-05-06 08:00:00,2,0,0,2,20.5,24.24,88,8.9981,23,91,114 +2012-05-06 09:00:00,2,0,0,2,21.32,25,83,11.0014,63,128,191 +2012-05-06 10:00:00,2,0,0,2,22.14,25.76,77,7.0015,112,221,333 +2012-05-06 11:00:00,2,0,0,1,22.96,26.515,73,7.0015,144,270,414 +2012-05-06 12:00:00,2,0,0,2,24.6,30.305,64,6.0032,207,351,558 +2012-05-06 13:00:00,2,0,0,2,24.6,30.305,64,0,197,368,565 +2012-05-06 14:00:00,2,0,0,2,24.6,30.305,64,7.0015,226,292,518 +2012-05-06 15:00:00,2,0,0,2,25.42,30.305,61,7.0015,229,342,571 +2012-05-06 16:00:00,2,0,0,2,25.42,30.305,61,0,181,363,544 +2012-05-06 17:00:00,2,0,0,2,25.42,30.305,65,8.9981,195,316,511 +2012-05-06 18:00:00,2,0,0,2,25.42,30.305,61,12.998,131,332,463 +2012-05-06 19:00:00,2,0,0,2,24.6,30.305,64,11.0014,117,266,383 +2012-05-06 20:00:00,2,0,0,1,24.6,30.305,64,12.998,73,203,276 +2012-05-06 21:00:00,2,0,0,1,22.96,26.515,73,12.998,55,148,203 +2012-05-06 22:00:00,2,0,0,1,22.96,26.515,73,11.0014,44,113,157 +2012-05-06 23:00:00,2,0,0,1,21.32,25,77,12.998,22,80,102 +2012-05-07 00:00:00,2,0,1,2,21.32,25,77,8.9981,13,21,34 +2012-05-07 01:00:00,2,0,1,2,21.32,25,77,12.998,1,8,9 +2012-05-07 02:00:00,2,0,1,1,20.5,24.24,77,12.998,1,5,6 +2012-05-07 03:00:00,2,0,1,1,20.5,24.24,77,12.998,2,3,5 +2012-05-07 04:00:00,2,0,1,2,18.86,22.725,88,8.9981,0,2,2 +2012-05-07 05:00:00,2,0,1,1,18.86,22.725,88,7.0015,2,21,23 +2012-05-07 06:00:00,2,0,1,1,18.86,22.725,88,7.0015,8,134,142 +2012-05-07 07:00:00,2,0,1,2,19.68,23.485,82,7.0015,18,367,385 +2012-05-07 08:00:00,2,0,1,2,20.5,24.24,82,12.998,31,608,639 +2012-05-07 09:00:00,2,0,1,2,20.5,24.24,82,15.0013,61,289,350 +2012-05-07 10:00:00,2,0,1,2,21.32,25,77,12.998,62,128,190 +2012-05-07 11:00:00,2,0,1,2,22.14,25.76,73,12.998,64,149,213 +2012-05-07 12:00:00,2,0,1,2,22.96,26.515,68,15.0013,74,189,263 +2012-05-07 13:00:00,2,0,1,2,24.6,31.06,53,22.0028,75,197,272 +2012-05-07 14:00:00,2,0,1,2,25.42,31.06,50,23.9994,59,180,239 +2012-05-07 15:00:00,2,0,1,2,25.42,31.06,53,19.9995,76,186,262 +2012-05-07 16:00:00,2,0,1,2,24.6,31.06,53,26.0027,68,320,388 +2012-05-07 17:00:00,2,0,1,2,24.6,31.06,53,22.0028,102,667,769 +2012-05-07 18:00:00,2,0,1,2,24.6,31.06,53,23.9994,78,602,680 +2012-05-07 19:00:00,2,0,1,1,23.78,27.275,56,22.0028,83,463,546 +2012-05-07 20:00:00,2,0,1,1,22.14,25.76,52,19.0012,46,277,323 +2012-05-07 21:00:00,2,0,1,2,22.14,25.76,45,15.0013,37,210,247 +2012-05-07 22:00:00,2,0,1,2,22.14,25.76,45,16.9979,26,147,173 +2012-05-07 23:00:00,2,0,1,2,22.14,25.76,45,12.998,21,92,113 +2012-05-08 00:00:00,2,0,1,2,21.32,25,52,16.9979,10,28,38 +2012-05-08 01:00:00,2,0,1,2,21.32,25,59,15.0013,6,3,9 +2012-05-08 02:00:00,2,0,1,2,21.32,25,63,19.9995,9,7,16 +2012-05-08 03:00:00,2,0,1,2,21.32,25,68,19.0012,2,4,6 +2012-05-08 04:00:00,2,0,1,2,21.32,25,68,22.0028,0,5,5 +2012-05-08 05:00:00,2,0,1,2,21.32,25,72,19.0012,0,20,20 +2012-05-08 06:00:00,2,0,1,1,20.5,24.24,77,19.9995,7,158,165 +2012-05-08 07:00:00,2,0,1,1,21.32,25,72,19.0012,21,442,463 +2012-05-08 08:00:00,2,0,1,2,22.14,25.76,73,19.9995,36,605,641 +2012-05-08 09:00:00,2,0,1,2,22.96,26.515,68,23.9994,37,258,295 +2012-05-08 10:00:00,2,0,1,2,23.78,27.275,68,27.9993,46,111,157 +2012-05-08 11:00:00,2,0,1,2,24.6,30.305,64,26.0027,60,157,217 +2012-05-08 12:00:00,2,0,1,2,25.42,30.305,65,22.0028,60,203,263 +2012-05-08 13:00:00,2,0,1,3,26.24,30.305,65,16.9979,53,166,219 +2012-05-08 14:00:00,2,0,1,3,25.42,30.305,69,22.0028,8,63,71 +2012-05-08 15:00:00,2,0,1,3,25.42,29.545,73,16.9979,40,94,134 +2012-05-08 16:00:00,2,0,1,3,26.24,30.305,73,15.0013,54,335,389 +2012-05-08 17:00:00,2,0,1,2,26.24,30.305,69,19.0012,77,640,717 +2012-05-08 18:00:00,2,0,1,2,26.24,30.305,69,19.0012,69,641,710 +2012-05-08 19:00:00,2,0,1,2,26.24,30.305,69,19.0012,59,399,458 +2012-05-08 20:00:00,2,0,1,2,26.24,30.305,69,19.0012,40,262,302 +2012-05-08 21:00:00,2,0,1,2,26.24,30.305,65,19.0012,21,202,223 +2012-05-08 22:00:00,2,0,1,3,24.6,28.79,78,16.9979,13,134,147 +2012-05-08 23:00:00,2,0,1,3,24.6,28.79,78,22.0028,10,53,63 +2012-05-09 00:00:00,2,0,1,2,23.78,27.275,83,12.998,8,27,35 +2012-05-09 01:00:00,2,0,1,2,24.6,28.79,78,16.9979,3,11,14 +2012-05-09 02:00:00,2,0,1,3,22.96,26.515,88,30.0026,0,1,1 +2012-05-09 03:00:00,2,0,1,3,22.96,26.515,88,11.0014,0,2,2 +2012-05-09 04:00:00,2,0,1,3,22.96,26.515,88,15.0013,0,5,5 +2012-05-09 05:00:00,2,0,1,2,22.96,26.515,88,8.9981,1,27,28 +2012-05-09 06:00:00,2,0,1,2,22.96,26.515,88,7.0015,5,121,126 +2012-05-09 07:00:00,2,0,1,2,22.96,26.515,94,12.998,17,401,418 +2012-05-09 08:00:00,2,0,1,2,24.6,28.03,83,8.9981,28,594,622 +2012-05-09 09:00:00,2,0,1,2,24.6,28.03,83,0,40,285,325 +2012-05-09 10:00:00,2,0,1,2,25.42,30.305,65,16.9979,40,113,153 +2012-05-09 11:00:00,2,0,1,2,25.42,31.06,59,19.9995,45,156,201 +2012-05-09 12:00:00,2,0,1,2,25.42,31.06,57,15.0013,58,222,280 +2012-05-09 13:00:00,2,0,1,2,26.24,31.06,53,16.9979,50,216,266 +2012-05-09 14:00:00,2,0,1,2,26.24,31.06,53,16.9979,68,175,243 +2012-05-09 15:00:00,2,0,1,2,26.24,31.06,53,7.0015,68,191,259 +2012-05-09 16:00:00,2,0,1,2,27.06,31.06,50,12.998,68,289,357 +2012-05-09 17:00:00,2,0,1,2,26.24,31.06,53,8.9981,76,629,705 +2012-05-09 18:00:00,2,0,1,3,21.32,25,77,39.0007,23,349,372 +2012-05-09 19:00:00,2,0,1,3,20.5,24.24,77,23.9994,2,96,98 +2012-05-09 20:00:00,2,0,1,3,20.5,24.24,82,15.0013,3,48,51 +2012-05-09 21:00:00,2,0,1,3,20.5,24.24,82,11.0014,4,30,34 +2012-05-09 22:00:00,2,0,1,3,19.68,23.485,82,7.0015,5,62,67 +2012-05-09 23:00:00,2,0,1,3,19.68,23.485,82,12.998,8,47,55 +2012-05-10 00:00:00,2,0,1,3,20.5,24.24,77,11.0014,2,31,33 +2012-05-10 01:00:00,2,0,1,2,19.68,23.485,88,8.9981,2,9,11 +2012-05-10 02:00:00,2,0,1,2,19.68,23.485,88,7.0015,0,3,3 +2012-05-10 03:00:00,2,0,1,1,18.86,22.725,88,15.0013,0,3,3 +2012-05-10 04:00:00,2,0,1,1,18.86,22.725,77,12.998,0,2,2 +2012-05-10 05:00:00,2,0,1,1,18.86,22.725,72,19.9995,1,23,24 +2012-05-10 06:00:00,2,0,1,1,18.04,21.97,72,15.0013,9,130,139 +2012-05-10 07:00:00,2,0,1,1,18.04,21.97,72,19.9995,8,393,401 +2012-05-10 08:00:00,2,0,1,1,18.86,22.725,67,23.9994,27,603,630 +2012-05-10 09:00:00,2,0,1,1,20.5,24.24,59,31.0009,62,299,361 +2012-05-10 10:00:00,2,0,1,1,20.5,24.24,51,27.9993,42,112,154 +2012-05-10 11:00:00,2,0,1,1,21.32,25,48,35.0008,77,179,256 +2012-05-10 12:00:00,2,0,1,1,21.32,25,48,27.9993,65,207,272 +2012-05-10 13:00:00,2,0,1,1,22.14,25.76,39,30.0026,90,228,318 +2012-05-10 14:00:00,2,0,1,1,22.96,26.515,37,27.9993,61,186,247 +2012-05-10 15:00:00,2,0,1,1,22.14,25.76,37,26.0027,79,192,271 +2012-05-10 16:00:00,2,0,1,1,23.78,27.275,30,31.0009,87,334,421 +2012-05-10 17:00:00,2,0,1,1,24.6,31.06,31,26.0027,84,648,732 +2012-05-10 18:00:00,2,0,1,1,22.96,26.515,35,35.0008,109,661,770 +2012-05-10 19:00:00,2,0,1,1,22.14,25.76,37,23.9994,84,469,553 +2012-05-10 20:00:00,2,0,1,1,21.32,25,40,22.0028,59,315,374 +2012-05-10 21:00:00,2,0,1,1,20.5,24.24,42,12.998,19,211,230 +2012-05-10 22:00:00,2,0,1,1,20.5,24.24,42,7.0015,36,196,232 +2012-05-10 23:00:00,2,0,1,1,19.68,23.485,48,7.0015,23,112,135 +2012-05-11 00:00:00,2,0,1,1,18.86,22.725,55,7.0015,17,47,64 +2012-05-11 01:00:00,2,0,1,1,18.86,22.725,51,8.9981,14,32,46 +2012-05-11 02:00:00,2,0,1,1,18.86,22.725,44,11.0014,15,16,31 +2012-05-11 03:00:00,2,0,1,1,18.86,22.725,41,19.0012,5,8,13 +2012-05-11 04:00:00,2,0,1,1,17.22,21.21,50,12.998,3,6,9 +2012-05-11 05:00:00,2,0,1,1,17.22,21.21,47,11.0014,3,23,26 +2012-05-11 06:00:00,2,0,1,1,17.22,21.21,50,16.9979,7,128,135 +2012-05-11 07:00:00,2,0,1,1,17.22,21.21,50,16.9979,6,345,351 +2012-05-11 08:00:00,2,0,1,1,18.86,22.725,44,16.9979,41,579,620 +2012-05-11 09:00:00,2,0,1,1,19.68,23.485,41,19.9995,34,288,322 +2012-05-11 10:00:00,2,0,1,1,21.32,25,36,22.0028,69,141,210 +2012-05-11 11:00:00,2,0,1,1,22.96,26.515,35,16.9979,88,203,291 +2012-05-11 12:00:00,2,0,1,1,22.96,26.515,28,27.9993,89,259,348 +2012-05-11 13:00:00,2,0,1,1,24.6,30.305,26,26.0027,100,263,363 +2012-05-11 14:00:00,2,0,1,1,25.42,30.305,23,15.0013,116,218,334 +2012-05-11 15:00:00,2,0,1,1,25.42,30.305,25,12.998,140,299,439 +2012-05-11 16:00:00,2,0,1,1,25.42,30.305,25,22.0028,128,397,525 +2012-05-11 17:00:00,2,0,1,1,26.24,30.305,23,16.9979,102,677,779 +2012-05-11 18:00:00,2,0,1,1,26.24,30.305,23,19.0012,78,518,596 +2012-05-11 19:00:00,2,0,1,1,26.24,30.305,23,16.9979,73,430,503 +2012-05-11 20:00:00,2,0,1,1,25.42,30.305,25,8.9981,64,277,341 +2012-05-11 21:00:00,2,0,1,1,24.6,30.305,28,7.0015,45,225,270 +2012-05-11 22:00:00,2,0,1,1,22.96,26.515,35,15.0013,44,190,234 +2012-05-11 23:00:00,2,0,1,1,22.14,25.76,37,12.998,38,142,180 +2012-05-12 00:00:00,2,0,0,1,21.32,25,42,11.0014,25,111,136 +2012-05-12 01:00:00,2,0,0,1,20.5,24.24,48,0,14,79,93 +2012-05-12 02:00:00,2,0,0,1,18.86,22.725,59,8.9981,10,46,56 +2012-05-12 03:00:00,2,0,0,1,19.68,23.485,59,0,14,20,34 +2012-05-12 04:00:00,2,0,0,1,18.04,21.97,67,7.0015,3,6,9 +2012-05-12 05:00:00,2,0,0,1,17.22,21.21,67,8.9981,5,8,13 +2012-05-12 06:00:00,2,0,0,1,17.22,21.21,67,6.0032,10,23,33 +2012-05-12 07:00:00,2,0,0,1,17.22,21.21,71,8.9981,10,57,67 +2012-05-12 08:00:00,2,0,0,1,21.32,25,48,0,22,156,178 +2012-05-12 09:00:00,2,0,0,1,22.14,25.76,49,0,87,248,335 +2012-05-12 10:00:00,2,0,0,1,22.96,26.515,49,6.0032,132,279,411 +2012-05-12 11:00:00,2,0,0,1,25.42,31.06,41,6.0032,157,365,522 +2012-05-12 12:00:00,2,0,0,1,26.24,31.06,36,11.0014,206,353,559 +2012-05-12 13:00:00,2,0,0,1,26.24,31.06,36,12.998,293,366,659 +2012-05-12 14:00:00,2,0,0,1,27.06,31.06,36,12.998,257,358,615 +2012-05-12 15:00:00,2,0,0,1,27.88,31.06,24,12.998,269,321,590 +2012-05-12 16:00:00,2,0,0,2,28.7,31.82,21,12.998,254,337,591 +2012-05-12 17:00:00,2,0,0,2,27.06,31.06,36,12.998,233,343,576 +2012-05-12 18:00:00,2,0,0,2,27.06,31.06,31,12.998,164,382,546 +2012-05-12 19:00:00,2,0,0,2,26.24,31.06,36,11.0014,166,273,439 +2012-05-12 20:00:00,2,0,0,1,25.42,31.06,46,11.0014,113,174,287 +2012-05-12 21:00:00,2,0,0,2,24.6,30.305,60,8.9981,74,156,230 +2012-05-12 22:00:00,2,0,0,1,22.96,26.515,68,8.9981,62,212,274 +2012-05-12 23:00:00,2,0,0,1,23.78,27.275,56,6.0032,42,134,176 +2012-05-13 00:00:00,2,0,0,1,22.96,26.515,64,11.0014,19,79,98 +2012-05-13 01:00:00,2,0,0,2,22.14,25.76,68,8.9981,22,72,94 +2012-05-13 02:00:00,2,0,0,2,22.14,25.76,68,11.0014,22,60,82 +2012-05-13 03:00:00,2,0,0,2,22.14,25.76,64,8.9981,2,26,28 +2012-05-13 04:00:00,2,0,0,2,22.14,25.76,68,12.998,2,7,9 +2012-05-13 05:00:00,2,0,0,1,21.32,25,72,12.998,4,8,12 +2012-05-13 06:00:00,2,0,0,1,21.32,25,68,11.0014,6,15,21 +2012-05-13 07:00:00,2,0,0,1,21.32,25,68,11.0014,18,42,60 +2012-05-13 08:00:00,2,0,0,1,22.96,26.515,64,11.0014,32,124,156 +2012-05-13 09:00:00,2,0,0,1,24.6,31.06,56,8.9981,79,143,222 +2012-05-13 10:00:00,2,0,0,1,24.6,30.305,60,16.9979,128,222,350 +2012-05-13 11:00:00,2,0,0,1,25.42,31.06,57,16.9979,150,278,428 +2012-05-13 12:00:00,2,0,0,1,26.24,31.06,57,15.0013,189,342,531 +2012-05-13 13:00:00,2,0,0,1,27.88,31.82,54,16.9979,255,347,602 +2012-05-13 14:00:00,2,0,0,1,28.7,32.575,48,8.9981,228,324,552 +2012-05-13 15:00:00,2,0,0,1,29.52,32.575,45,23.9994,190,309,499 +2012-05-13 16:00:00,2,0,0,1,29.52,32.575,42,16.9979,225,339,564 +2012-05-13 17:00:00,2,0,0,1,28.7,31.82,45,27.9993,191,287,478 +2012-05-13 18:00:00,2,0,0,2,27.88,31.82,44,23.9994,129,260,389 +2012-05-13 19:00:00,2,0,0,2,27.06,31.06,50,27.9993,107,232,339 +2012-05-13 20:00:00,2,0,0,2,27.06,31.06,50,19.0012,67,163,230 +2012-05-13 21:00:00,2,0,0,2,26.24,31.06,53,12.998,48,121,169 +2012-05-13 22:00:00,2,0,0,2,25.42,30.305,61,11.0014,42,89,131 +2012-05-13 23:00:00,2,0,0,2,25.42,31.06,57,15.0013,17,57,74 +2012-05-14 00:00:00,2,0,1,2,24.6,31.06,56,16.9979,21,14,35 +2012-05-14 01:00:00,2,0,1,2,24.6,30.305,60,19.0012,5,6,11 +2012-05-14 02:00:00,2,0,1,1,24.6,30.305,60,19.9995,1,1,2 +2012-05-14 03:00:00,2,0,1,2,23.78,27.275,68,22.0028,0,2,2 +2012-05-14 04:00:00,2,0,1,2,22.14,25.76,77,15.0013,3,3,6 +2012-05-14 05:00:00,2,0,1,2,22.14,25.76,77,11.0014,1,25,26 +2012-05-14 06:00:00,2,0,1,3,21.32,25,94,19.9995,3,62,65 +2012-05-14 07:00:00,2,0,1,3,21.32,25,94,12.998,3,72,75 +2012-05-14 08:00:00,2,0,1,3,22.14,25.76,88,15.0013,1,155,156 +2012-05-14 09:00:00,2,0,1,3,22.14,25.76,88,19.0012,5,105,110 +2012-05-14 10:00:00,2,0,1,3,22.14,25.76,88,16.9979,6,53,59 +2012-05-14 11:00:00,2,0,1,2,22.96,26.515,83,15.0013,12,67,79 +2012-05-14 12:00:00,2,0,1,2,22.96,26.515,88,19.0012,53,132,185 +2012-05-14 13:00:00,2,0,1,2,25.42,29.545,73,15.0013,33,143,176 +2012-05-14 14:00:00,2,0,1,2,25.42,29.545,73,16.9979,43,128,171 +2012-05-14 15:00:00,2,0,1,2,25.42,29.545,73,11.0014,40,156,196 +2012-05-14 16:00:00,2,0,1,3,25.42,30.305,69,19.0012,20,91,111 +2012-05-14 17:00:00,2,0,1,3,22.96,26.515,88,16.9979,25,204,229 +2012-05-14 18:00:00,2,0,1,2,23.78,27.275,83,0,17,283,300 +2012-05-14 19:00:00,2,0,1,3,23.78,27.275,88,8.9981,10,294,304 +2012-05-14 20:00:00,2,0,1,2,23.78,27.275,88,12.998,11,178,189 +2012-05-14 21:00:00,2,0,1,2,23.78,27.275,83,6.0032,7,145,152 +2012-05-14 22:00:00,2,0,1,2,23.78,27.275,78,6.0032,11,118,129 +2012-05-14 23:00:00,2,0,1,2,23.78,27.275,78,7.0015,11,64,75 +2012-05-15 00:00:00,2,0,1,2,22.96,26.515,88,8.9981,7,25,32 +2012-05-15 01:00:00,2,0,1,3,22.96,26.515,88,8.9981,5,14,19 +2012-05-15 02:00:00,2,0,1,2,22.96,26.515,88,8.9981,1,3,4 +2012-05-15 03:00:00,2,0,1,3,23.78,27.275,83,8.9981,1,5,6 +2012-05-15 04:00:00,2,0,1,3,22.96,26.515,94,0,1,4,5 +2012-05-15 05:00:00,2,0,1,3,22.96,26.515,94,15.0013,0,8,8 +2012-05-15 06:00:00,2,0,1,3,22.96,26.515,94,15.0013,2,22,24 +2012-05-15 07:00:00,2,0,1,3,22.96,26.515,94,8.9981,1,91,92 +2012-05-15 08:00:00,2,0,1,2,23.78,27.275,88,6.0032,8,401,409 +2012-05-15 09:00:00,2,0,1,2,23.78,27.275,88,6.0032,28,327,355 +2012-05-15 10:00:00,2,0,1,1,25.42,29.545,78,7.0015,27,144,171 +2012-05-15 11:00:00,2,0,1,1,26.24,29.545,78,12.998,38,186,224 +2012-05-15 12:00:00,2,0,1,1,26.24,30.305,73,12.998,44,220,264 +2012-05-15 13:00:00,2,0,1,3,26.24,30.305,73,12.998,35,204,239 +2012-05-15 14:00:00,2,0,1,2,26.24,30.305,73,12.998,39,145,184 +2012-05-15 15:00:00,2,0,1,2,28.7,32.575,61,6.0032,51,205,256 +2012-05-15 16:00:00,2,0,1,1,27.88,31.82,65,11.0014,74,300,374 +2012-05-15 17:00:00,2,0,1,1,27.88,31.82,65,7.0015,75,603,678 +2012-05-15 18:00:00,2,0,1,1,28.7,32.575,61,6.0032,68,665,733 +2012-05-15 19:00:00,2,0,1,1,27.06,31.06,69,11.0014,57,455,512 +2012-05-15 20:00:00,2,0,1,3,26.24,30.305,73,8.9981,30,233,263 +2012-05-15 21:00:00,2,0,1,3,26.24,30.305,73,19.0012,11,98,109 +2012-05-15 22:00:00,2,0,1,1,23.78,27.275,78,15.0013,9,74,83 +2012-05-15 23:00:00,2,0,1,3,22.96,26.515,88,7.0015,13,58,71 +2012-05-16 00:00:00,2,0,1,2,23.78,27.275,88,0,12,27,39 +2012-05-16 01:00:00,2,0,1,2,23.78,27.275,88,8.9981,7,14,21 +2012-05-16 02:00:00,2,0,1,1,22.96,26.515,94,12.998,5,14,19 +2012-05-16 03:00:00,2,0,1,1,22.96,26.515,88,7.0015,1,5,6 +2012-05-16 04:00:00,2,0,1,1,22.14,25.76,94,8.9981,1,3,4 +2012-05-16 05:00:00,2,0,1,1,22.14,25.76,94,7.0015,4,34,38 +2012-05-16 06:00:00,2,0,1,1,22.14,25.76,94,6.0032,8,150,158 +2012-05-16 07:00:00,2,0,1,1,22.96,26.515,83,0,14,426,440 +2012-05-16 08:00:00,2,0,1,1,23.78,27.275,83,0,33,617,650 +2012-05-16 09:00:00,2,0,1,2,24.6,28.79,78,8.9981,33,314,347 +2012-05-16 10:00:00,2,0,1,1,27.06,31.06,61,0,43,149,192 +2012-05-16 11:00:00,2,0,1,1,28.7,32.575,54,8.9981,55,212,267 +2012-05-16 12:00:00,2,0,1,1,28.7,32.575,54,12.998,59,271,330 +2012-05-16 13:00:00,2,0,1,1,29.52,32.575,42,0,77,273,350 +2012-05-16 14:00:00,2,0,1,1,29.52,32.575,42,6.0032,42,221,263 +2012-05-16 15:00:00,2,0,1,2,29.52,33.335,48,7.0015,52,222,274 +2012-05-16 16:00:00,2,0,1,1,29.52,32.575,45,7.0015,70,376,446 +2012-05-16 17:00:00,2,0,1,1,29.52,33.335,51,12.998,104,769,873 +2012-05-16 18:00:00,2,0,1,1,29.52,33.335,51,15.0013,97,749,846 +2012-05-16 19:00:00,2,0,1,1,28.7,32.575,54,19.0012,91,499,590 +2012-05-16 20:00:00,2,0,1,1,27.06,31.06,65,16.9979,61,398,459 +2012-05-16 21:00:00,2,0,1,1,26.24,30.305,73,12.998,63,330,393 +2012-05-16 22:00:00,2,0,1,1,26.24,30.305,73,11.0014,33,253,286 +2012-05-16 23:00:00,2,0,1,1,25.42,29.545,78,7.0015,26,107,133 +2012-05-17 00:00:00,2,0,1,1,24.6,28.79,78,8.9981,30,49,79 +2012-05-17 01:00:00,2,0,1,1,24.6,28.03,83,11.0014,12,16,28 +2012-05-17 02:00:00,2,0,1,1,24.6,28.79,78,11.0014,8,8,16 +2012-05-17 03:00:00,2,0,1,1,24.6,29.545,73,16.9979,0,3,3 +2012-05-17 04:00:00,2,0,1,1,24.6,30.305,64,22.0028,3,13,16 +2012-05-17 05:00:00,2,0,1,1,22.96,26.515,68,22.0028,1,34,35 +2012-05-17 06:00:00,2,0,1,1,22.14,25.76,73,23.9994,10,149,159 +2012-05-17 07:00:00,2,0,1,1,22.14,25.76,73,26.0027,25,449,474 +2012-05-17 08:00:00,2,0,1,1,21.32,25,55,30.0026,29,605,634 +2012-05-17 09:00:00,2,0,1,1,22.14,25.76,52,27.9993,57,289,346 +2012-05-17 10:00:00,2,0,1,1,22.96,26.515,52,16.9979,43,162,205 +2012-05-17 11:00:00,2,0,1,1,23.78,27.275,49,15.0013,77,202,279 +2012-05-17 12:00:00,2,0,1,1,24.6,31.06,43,12.998,72,276,348 +2012-05-17 13:00:00,2,0,1,1,25.42,31.06,41,12.998,86,241,327 +2012-05-17 14:00:00,2,0,1,1,26.24,31.06,38,12.998,68,202,270 +2012-05-17 15:00:00,2,0,1,1,26.24,31.06,36,16.9979,83,233,316 +2012-05-17 16:00:00,2,0,1,1,27.06,31.06,31,12.998,86,344,430 +2012-05-17 17:00:00,2,0,1,1,27.06,31.06,31,8.9981,133,719,852 +2012-05-17 18:00:00,2,0,1,1,27.06,31.06,27,11.0014,134,734,868 +2012-05-17 19:00:00,2,0,1,1,26.24,31.06,31,12.998,86,451,537 +2012-05-17 20:00:00,2,0,1,1,24.6,31.06,40,12.998,83,363,446 +2012-05-17 21:00:00,2,0,1,1,23.78,27.275,40,7.0015,45,254,299 +2012-05-17 22:00:00,2,0,1,1,22.96,26.515,43,6.0032,42,209,251 +2012-05-17 23:00:00,2,0,1,1,22.14,25.76,49,8.9981,29,137,166 +2012-05-18 00:00:00,2,0,1,1,21.32,25,59,7.0015,13,57,70 +2012-05-18 01:00:00,2,0,1,1,20.5,24.24,59,6.0032,16,33,49 +2012-05-18 02:00:00,2,0,1,1,19.68,23.485,67,8.9981,12,9,21 +2012-05-18 03:00:00,2,0,1,1,18.86,22.725,72,6.0032,6,8,14 +2012-05-18 04:00:00,2,0,1,1,18.86,22.725,77,11.0014,0,11,11 +2012-05-18 05:00:00,2,0,1,1,18.86,22.725,77,7.0015,1,33,34 +2012-05-18 06:00:00,2,0,1,1,18.04,21.97,77,8.9981,14,168,182 +2012-05-18 07:00:00,2,0,1,1,18.86,22.725,82,7.0015,40,475,515 +2012-05-18 08:00:00,2,0,1,1,21.32,25,59,8.9981,49,696,745 +2012-05-18 09:00:00,2,0,1,1,22.96,26.515,56,7.0015,57,304,361 +2012-05-18 10:00:00,2,0,1,1,24.6,31.06,46,8.9981,74,181,255 +2012-05-18 11:00:00,2,0,1,1,25.42,31.06,43,0,109,225,334 +2012-05-18 12:00:00,2,0,1,1,25.42,31.06,41,12.998,108,252,360 +2012-05-18 13:00:00,2,0,1,1,26.24,31.06,36,11.0014,98,297,395 +2012-05-18 14:00:00,2,0,1,1,27.06,31.06,34,8.9981,108,242,350 +2012-05-18 15:00:00,2,0,1,1,27.06,31.06,36,12.998,131,260,391 +2012-05-18 16:00:00,2,0,1,1,27.06,31.06,34,16.9979,151,417,568 +2012-05-18 17:00:00,2,0,1,1,27.06,31.06,34,8.9981,124,688,812 +2012-05-18 18:00:00,2,0,1,1,26.24,31.06,38,15.0013,99,570,669 +2012-05-18 19:00:00,2,0,1,1,25.42,31.06,41,12.998,91,392,483 +2012-05-18 20:00:00,2,0,1,1,25.42,31.06,41,11.0014,73,264,337 +2012-05-18 21:00:00,2,0,1,1,24.6,31.06,40,0,49,209,258 +2012-05-18 22:00:00,2,0,1,1,22.96,26.515,52,22.0028,57,194,251 +2012-05-18 23:00:00,2,0,1,1,21.32,25,55,0,41,133,174 +2012-05-19 00:00:00,2,0,0,1,21.32,25,48,7.0015,30,118,148 +2012-05-19 01:00:00,2,0,0,1,20.5,24.24,48,0,20,84,104 +2012-05-19 02:00:00,2,0,0,1,20.5,24.24,51,7.0015,13,56,69 +2012-05-19 03:00:00,2,0,0,1,20.5,24.24,48,7.0015,10,23,33 +2012-05-19 04:00:00,2,0,0,1,19.68,23.485,59,6.0032,6,8,14 +2012-05-19 05:00:00,2,0,0,1,18.86,22.725,67,0,1,11,12 +2012-05-19 06:00:00,2,0,0,1,18.04,21.97,72,6.0032,12,38,50 +2012-05-19 07:00:00,2,0,0,1,18.86,22.725,67,7.0015,28,67,95 +2012-05-19 08:00:00,2,0,0,1,21.32,25,52,11.0014,33,162,195 +2012-05-19 09:00:00,2,0,0,1,22.96,26.515,43,11.0014,79,213,292 +2012-05-19 10:00:00,2,0,0,1,22.96,26.515,43,0,177,275,452 +2012-05-19 11:00:00,2,0,0,1,25.42,31.06,38,6.0032,235,351,586 +2012-05-19 12:00:00,2,0,0,1,27.06,31.06,36,0,276,366,642 +2012-05-19 13:00:00,2,0,0,1,28.7,31.82,37,8.9981,332,372,704 +2012-05-19 14:00:00,2,0,0,1,29.52,32.575,30,6.0032,361,369,730 +2012-05-19 15:00:00,2,0,0,1,29.52,32.575,30,7.0015,356,316,672 +2012-05-19 16:00:00,2,0,0,1,30.34,32.575,30,7.0015,331,311,642 +2012-05-19 17:00:00,2,0,0,1,30.34,32.575,30,6.0032,279,347,626 +2012-05-19 18:00:00,2,0,0,1,30.34,32.575,33,6.0032,254,391,645 +2012-05-19 19:00:00,2,0,0,1,28.7,31.82,39,8.9981,203,229,432 +2012-05-19 20:00:00,2,0,0,1,27.88,31.82,41,6.0032,118,197,315 +2012-05-19 21:00:00,2,0,0,1,26.24,31.06,50,0,81,178,259 +2012-05-19 22:00:00,2,0,0,1,26.24,31.06,47,0,104,234,338 +2012-05-19 23:00:00,2,0,0,1,24.6,31.06,56,11.0014,71,168,239 +2012-06-01 00:00:00,2,0,1,1,27.06,31.06,50,16.9979,10,76,86 +2012-06-01 01:00:00,2,0,1,1,26.24,31.06,53,15.0013,0,34,34 +2012-06-01 02:00:00,2,0,1,1,26.24,31.06,57,15.0013,3,13,16 +2012-06-01 03:00:00,2,0,1,2,25.42,29.545,73,6.0032,0,4,4 +2012-06-01 04:00:00,2,0,1,2,25.42,29.545,73,6.0032,1,5,6 +2012-06-01 05:00:00,2,0,1,2,25.42,29.545,78,6.0032,4,41,45 +2012-06-01 06:00:00,2,0,1,3,25.42,28.03,88,8.9981,5,136,141 +2012-06-01 07:00:00,2,0,1,2,26.24,28.79,89,12.998,33,369,402 +2012-06-01 08:00:00,2,0,1,2,26.24,28.79,89,12.998,19,675,694 +2012-06-01 09:00:00,2,0,1,2,26.24,28.79,83,15.0013,24,274,298 +2012-06-01 10:00:00,2,0,1,2,27.06,30.305,78,19.0012,49,155,204 +2012-06-01 11:00:00,2,0,1,2,28.7,33.335,74,19.0012,42,193,235 +2012-06-01 12:00:00,2,0,1,2,28.7,33.335,74,23.9994,72,238,310 +2012-06-01 13:00:00,2,0,1,1,29.52,34.09,70,19.9995,76,240,316 +2012-06-01 14:00:00,2,0,1,3,29.52,34.09,66,19.0012,55,199,254 +2012-06-01 15:00:00,2,0,1,3,29.52,34.09,66,19.0012,45,213,258 +2012-06-01 16:00:00,2,0,1,3,30.34,34.09,58,30.0026,36,186,222 +2012-06-01 17:00:00,2,0,1,3,28.7,32.575,70,16.9979,25,202,227 +2012-06-01 18:00:00,2,0,1,3,25.42,28.03,88,23.9994,10,100,110 +2012-06-01 19:00:00,2,0,1,3,25.42,28.03,88,23.9994,4,41,45 +2012-06-01 20:00:00,2,0,1,3,25.42,27.275,94,16.9979,1,38,39 +2012-06-01 21:00:00,2,0,1,3,26.24,29.545,78,16.9979,12,73,85 +2012-06-01 22:00:00,2,0,1,3,24.6,27.275,88,8.9981,1,22,23 +2012-06-01 23:00:00,2,0,1,3,24.6,27.275,88,8.9981,6,67,73 +2012-06-02 00:00:00,2,0,0,2,22.96,26.515,83,8.9981,5,81,86 +2012-06-02 01:00:00,2,0,0,2,22.96,26.515,83,7.0015,15,61,76 +2012-06-02 02:00:00,2,0,0,2,22.14,25.76,88,0,3,38,41 +2012-06-02 03:00:00,2,0,0,1,22.96,26.515,73,16.9979,8,18,26 +2012-06-02 04:00:00,2,0,0,1,22.14,25.76,68,19.0012,2,11,13 +2012-06-02 05:00:00,2,0,0,1,20.5,24.24,72,12.998,1,11,12 +2012-06-02 06:00:00,2,0,0,2,20.5,24.24,77,12.998,5,31,36 +2012-06-02 07:00:00,2,0,0,1,21.32,25,72,7.0015,9,77,86 +2012-06-02 08:00:00,2,0,0,1,22.14,25.76,64,11.0014,30,180,210 +2012-06-02 09:00:00,2,0,0,1,22.96,26.515,60,16.9979,89,243,332 +2012-06-02 10:00:00,2,0,0,1,24.6,31.06,53,19.9995,145,348,493 +2012-06-02 11:00:00,2,0,0,1,23.78,27.275,46,19.0012,179,357,536 +2012-06-02 12:00:00,2,0,0,1,25.42,31.06,43,23.9994,250,418,668 +2012-06-02 13:00:00,2,0,0,1,25.42,31.06,41,16.9979,279,400,679 +2012-06-02 14:00:00,2,0,0,1,26.24,31.06,38,19.9995,259,388,647 +2012-06-02 15:00:00,2,0,0,1,26.24,31.06,38,16.9979,297,405,702 +2012-06-02 16:00:00,2,0,0,1,26.24,31.06,38,16.9979,275,369,644 +2012-06-02 17:00:00,2,0,0,1,26.24,31.06,36,0,248,338,586 +2012-06-02 18:00:00,2,0,0,1,26.24,31.06,36,0,171,341,512 +2012-06-02 19:00:00,2,0,0,1,26.24,31.06,36,11.0014,185,369,554 +2012-06-02 20:00:00,2,0,0,1,25.42,31.06,35,19.0012,139,260,399 +2012-06-02 21:00:00,2,0,0,1,24.6,31.06,40,7.0015,96,220,316 +2012-06-02 22:00:00,2,0,0,1,23.78,27.275,46,8.9981,52,176,228 +2012-06-02 23:00:00,2,0,0,1,22.96,26.515,52,7.0015,53,185,238 +2012-06-03 00:00:00,2,0,0,1,22.14,25.76,60,11.0014,27,142,169 +2012-06-03 01:00:00,2,0,0,1,22.14,25.76,56,8.9981,21,100,121 +2012-06-03 02:00:00,2,0,0,1,21.32,25,59,7.0015,22,67,89 +2012-06-03 03:00:00,2,0,0,1,21.32,25,63,7.0015,16,34,50 +2012-06-03 04:00:00,2,0,0,1,20.5,24.24,72,6.0032,1,12,13 +2012-06-03 05:00:00,2,0,0,1,20.5,24.24,68,0,1,11,12 +2012-06-03 06:00:00,2,0,0,1,18.86,22.725,82,7.0015,6,16,22 +2012-06-03 07:00:00,2,0,0,1,20.5,24.24,68,7.0015,6,29,35 +2012-06-03 08:00:00,2,0,0,1,22.14,25.76,60,6.0032,30,110,140 +2012-06-03 09:00:00,2,0,0,1,24.6,31.06,46,12.998,70,230,300 +2012-06-03 10:00:00,2,0,0,1,25.42,31.06,43,15.0013,127,277,404 +2012-06-03 11:00:00,2,0,0,1,26.24,31.06,41,16.9979,199,312,511 +2012-06-03 12:00:00,2,0,0,1,27.06,31.06,39,19.9995,276,408,684 +2012-06-03 13:00:00,2,0,0,1,27.88,31.82,36,19.0012,265,421,686 +2012-06-03 14:00:00,2,0,0,1,27.88,31.82,36,22.0028,267,411,678 +2012-06-03 15:00:00,2,0,0,1,28.7,31.82,34,0,236,408,644 +2012-06-03 16:00:00,2,0,0,1,28.7,31.82,34,19.9995,226,436,662 +2012-06-03 17:00:00,2,0,0,1,28.7,31.82,34,16.9979,192,386,578 +2012-06-03 18:00:00,2,0,0,1,28.7,31.82,34,16.9979,153,343,496 +2012-06-03 19:00:00,2,0,0,1,27.88,31.82,34,19.0012,116,337,453 +2012-06-03 20:00:00,2,0,0,1,27.06,31.06,39,12.998,84,230,314 +2012-06-03 21:00:00,2,0,0,1,25.42,31.06,43,11.0014,66,180,246 +2012-06-03 22:00:00,2,0,0,1,25.42,31.06,50,26.0027,61,165,226 +2012-06-03 23:00:00,2,0,0,1,23.78,27.275,53,7.0015,26,82,108 +2012-06-04 00:00:00,2,0,1,1,23.78,27.275,53,0,11,38,49 +2012-06-04 01:00:00,2,0,1,3,22.96,26.515,60,11.0014,4,10,14 +2012-06-04 02:00:00,2,0,1,1,22.96,26.515,60,15.0013,1,10,11 +2012-06-04 03:00:00,2,0,1,2,22.96,26.515,60,11.0014,0,5,5 +2012-06-04 04:00:00,2,0,1,1,22.14,25.76,64,6.0032,2,6,8 +2012-06-04 05:00:00,2,0,1,1,21.32,25,68,0,2,33,35 +2012-06-04 06:00:00,2,0,1,1,21.32,25,68,0,4,135,139 +2012-06-04 07:00:00,2,0,1,1,22.96,26.515,60,15.0013,13,504,517 +2012-06-04 08:00:00,2,0,1,1,24.6,31.06,49,15.0013,22,643,665 +2012-06-04 09:00:00,2,0,1,1,25.42,31.06,43,19.0012,38,244,282 +2012-06-04 10:00:00,2,0,1,1,26.24,31.06,41,31.0009,67,120,187 +2012-06-04 11:00:00,2,0,1,1,26.24,31.06,38,32.9975,71,168,239 +2012-06-04 12:00:00,2,0,1,1,26.24,31.06,41,30.0026,62,220,282 +2012-06-04 13:00:00,2,0,1,1,26.24,31.06,41,23.9994,85,189,274 +2012-06-04 14:00:00,2,0,1,1,25.42,31.06,41,32.9975,84,186,270 +2012-06-04 15:00:00,2,0,1,1,27.06,31.06,39,19.9995,77,215,292 +2012-06-04 16:00:00,2,0,1,1,27.06,31.06,39,31.0009,73,375,448 +2012-06-04 17:00:00,2,0,1,1,26.24,31.06,38,30.0026,101,733,834 +2012-06-04 18:00:00,2,0,1,1,26.24,31.06,38,26.0027,103,719,822 +2012-06-04 19:00:00,2,0,1,1,25.42,31.06,38,27.9993,91,554,645 +2012-06-04 20:00:00,2,0,1,1,24.6,31.06,40,23.9994,71,390,461 +2012-06-04 21:00:00,2,0,1,1,23.78,27.275,49,16.9979,40,225,265 +2012-06-04 22:00:00,2,0,1,1,22.96,26.515,52,19.0012,41,127,168 +2012-06-04 23:00:00,2,0,1,1,23.78,27.275,49,19.9995,8,78,86 +2012-06-05 00:00:00,2,0,1,1,22.14,25.76,68,27.9993,6,28,34 +2012-06-05 01:00:00,2,0,1,2,21.32,25,77,22.0028,2,18,20 +2012-06-05 02:00:00,2,0,1,3,21.32,25,72,19.9995,0,8,8 +2012-06-05 03:00:00,2,0,1,3,20.5,24.24,82,12.998,0,5,5 +2012-06-05 04:00:00,2,0,1,3,20.5,24.24,82,12.998,1,4,5 +2012-06-05 05:00:00,2,0,1,3,19.68,23.485,82,11.0014,1,35,36 +2012-06-05 06:00:00,2,0,1,1,19.68,23.485,82,16.9979,7,177,184 +2012-06-05 07:00:00,2,0,1,1,19.68,23.485,77,19.9995,29,540,569 +2012-06-05 08:00:00,2,0,1,2,19.68,23.485,77,15.0013,30,680,710 +2012-06-05 09:00:00,2,0,1,2,21.32,25,72,16.9979,50,285,335 +2012-06-05 10:00:00,2,0,1,2,21.32,25,63,19.9995,58,118,176 +2012-06-05 11:00:00,2,0,1,2,22.96,26.515,56,12.998,65,162,227 +2012-06-05 12:00:00,2,0,1,2,22.14,25.76,56,15.0013,45,202,247 +2012-06-05 13:00:00,2,0,1,2,24.6,31.06,46,11.0014,66,201,267 +2012-06-05 14:00:00,2,0,1,2,23.78,27.275,46,11.0014,82,194,276 +2012-06-05 15:00:00,2,0,1,2,23.78,27.275,46,8.9981,54,218,272 +2012-06-05 16:00:00,2,0,1,1,24.6,31.06,43,12.998,91,382,473 +2012-06-05 17:00:00,2,0,1,1,24.6,31.06,43,0,86,764,850 +2012-06-05 18:00:00,2,0,1,1,24.6,31.06,43,12.998,111,679,790 +2012-06-05 19:00:00,2,0,1,1,23.78,27.275,46,16.9979,68,445,513 +2012-06-05 20:00:00,2,0,1,1,22.96,26.515,49,15.0013,44,371,415 +2012-06-05 21:00:00,2,0,1,1,22.14,25.76,56,11.0014,30,253,283 +2012-06-05 22:00:00,2,0,1,1,22.96,26.515,52,7.0015,22,171,193 +2012-06-05 23:00:00,2,0,1,1,22.14,25.76,56,6.0032,20,93,113 +2012-06-06 00:00:00,2,0,1,1,21.32,25,59,6.0032,3,46,49 +2012-06-06 01:00:00,2,0,1,1,21.32,25,68,0,6,21,27 +2012-06-06 02:00:00,2,0,1,1,20.5,24.24,68,0,4,7,11 +2012-06-06 03:00:00,2,0,1,1,18.86,22.725,82,0,0,8,8 +2012-06-06 04:00:00,2,0,1,1,18.86,22.725,82,7.0015,3,7,10 +2012-06-06 05:00:00,2,0,1,1,19.68,23.485,77,0,1,37,38 +2012-06-06 06:00:00,2,0,1,1,19.68,23.485,77,0,7,165,172 +2012-06-06 07:00:00,2,0,1,1,20.5,24.24,72,0,16,531,547 +2012-06-06 08:00:00,2,0,1,1,22.14,25.76,68,0,31,637,668 +2012-06-06 09:00:00,2,0,1,1,22.96,26.515,60,6.0032,35,268,303 +2012-06-06 10:00:00,2,0,1,1,24.6,31.06,46,6.0032,55,148,203 +2012-06-06 11:00:00,2,0,1,1,25.42,31.06,43,6.0032,65,161,226 +2012-06-06 12:00:00,2,0,1,1,25.42,31.06,38,0,80,235,315 +2012-06-06 13:00:00,2,0,1,1,25.42,31.06,41,6.0032,73,230,303 +2012-06-06 14:00:00,2,0,1,1,26.24,31.06,38,0,111,191,302 +2012-06-06 15:00:00,2,0,1,1,26.24,31.06,38,0,75,225,300 +2012-06-06 16:00:00,2,0,1,1,26.24,31.06,41,8.9981,107,345,452 +2012-06-06 17:00:00,2,0,1,1,25.42,31.06,43,8.9981,72,652,724 +2012-06-06 18:00:00,2,0,1,3,24.6,31.06,53,12.998,94,688,782 +2012-06-06 19:00:00,2,0,1,1,22.96,26.515,73,19.9995,52,486,538 +2012-06-06 20:00:00,2,0,1,1,22.14,25.76,73,19.0012,59,349,408 +2012-06-06 21:00:00,2,0,1,1,22.14,25.76,73,11.0014,38,260,298 +2012-06-06 22:00:00,2,0,1,1,21.32,25,77,6.0032,27,221,248 +2012-06-06 23:00:00,2,0,1,1,21.32,25,77,0,13,110,123 +2012-06-07 00:00:00,2,0,1,1,21.32,25,77,8.9981,9,50,59 +2012-06-07 01:00:00,2,0,1,1,21.32,25,77,11.0014,5,17,22 +2012-06-07 02:00:00,2,0,1,1,21.32,25,77,6.0032,0,12,12 +2012-06-07 03:00:00,2,0,1,1,20.5,24.24,77,7.0015,0,5,5 +2012-06-07 04:00:00,2,0,1,1,18.86,22.725,88,7.0015,0,6,6 +2012-06-07 05:00:00,2,0,1,1,19.68,23.485,82,6.0032,0,34,34 +2012-06-07 06:00:00,2,0,1,1,18.86,22.725,88,7.0015,5,165,170 +2012-06-07 07:00:00,2,0,1,1,20.5,24.24,82,11.0014,20,506,526 +2012-06-07 08:00:00,2,0,1,1,21.32,25,77,0,20,661,681 +2012-06-07 09:00:00,2,0,1,1,23.78,27.275,68,0,37,300,337 +2012-06-07 10:00:00,2,0,1,1,24.6,30.305,64,6.0032,56,154,210 +2012-06-07 11:00:00,2,0,1,1,27.06,31.06,47,15.0013,67,170,237 +2012-06-07 12:00:00,2,0,1,1,28.7,31.82,42,0,62,274,336 +2012-06-07 13:00:00,2,0,1,1,28.7,31.82,37,19.0012,65,250,315 +2012-06-07 14:00:00,2,0,1,1,29.52,32.575,37,16.9979,67,198,265 +2012-06-07 15:00:00,2,0,1,1,30.34,32.575,30,0,99,234,333 +2012-06-07 16:00:00,2,0,1,1,29.52,32.575,34,15.0013,77,389,466 +2012-06-07 17:00:00,2,0,1,1,29.52,32.575,34,16.9979,91,778,869 +2012-06-07 18:00:00,2,0,1,1,28.7,31.82,34,19.0012,110,703,813 +2012-06-07 19:00:00,2,0,1,1,28.7,31.82,34,19.0012,65,537,602 +2012-06-07 20:00:00,2,0,1,1,27.06,31.06,36,19.9995,76,402,478 +2012-06-07 21:00:00,2,0,1,1,25.42,31.06,41,22.0028,30,283,313 +2012-06-07 22:00:00,2,0,1,1,24.6,31.06,46,11.0014,35,193,228 +2012-06-07 23:00:00,2,0,1,1,22.96,26.515,52,8.9981,42,135,177 +2012-06-08 00:00:00,2,0,1,1,22.96,26.515,56,11.0014,18,59,77 +2012-06-08 01:00:00,2,0,1,1,22.96,26.515,56,11.0014,4,25,29 +2012-06-08 02:00:00,2,0,1,1,22.96,26.515,56,0,2,17,19 +2012-06-08 03:00:00,2,0,1,1,22.14,25.76,60,6.0032,0,8,8 +2012-06-08 04:00:00,2,0,1,1,21.32,25,63,0,1,9,10 +2012-06-08 05:00:00,2,0,1,1,20.5,24.24,72,7.0015,1,28,29 +2012-06-08 06:00:00,2,0,1,1,21.32,25,68,6.0032,8,131,139 +2012-06-08 07:00:00,2,0,1,1,21.32,25,72,7.0015,19,409,428 +2012-06-08 08:00:00,2,0,1,1,23.78,27.275,60,6.0032,37,663,700 +2012-06-08 09:00:00,2,0,1,1,25.42,31.06,53,11.0014,47,335,382 +2012-06-08 10:00:00,2,0,1,1,27.06,31.06,47,16.9979,62,187,249 +2012-06-08 11:00:00,2,0,1,1,28.7,31.82,42,16.9979,65,199,264 +2012-06-08 12:00:00,2,0,1,1,29.52,32.575,39,22.0028,89,280,369 +2012-06-08 13:00:00,2,0,1,1,30.34,32.575,37,16.9979,129,287,416 +2012-06-08 14:00:00,2,0,1,1,31.16,33.335,31,26.0027,128,245,373 +2012-06-08 15:00:00,2,0,1,1,31.16,33.335,29,19.0012,98,299,397 +2012-06-08 16:00:00,2,0,1,1,31.16,33.335,29,19.9995,111,412,523 +2012-06-08 17:00:00,2,0,1,1,31.16,33.335,29,12.998,114,679,793 +2012-06-08 18:00:00,2,0,1,1,31.16,33.335,27,15.0013,147,576,723 +2012-06-08 19:00:00,2,0,1,1,30.34,32.575,30,15.0013,95,460,555 +2012-06-08 20:00:00,2,0,1,1,29.52,32.575,32,8.9981,117,291,408 +2012-06-08 21:00:00,2,0,1,1,28.7,31.82,37,8.9981,83,256,339 +2012-06-08 22:00:00,2,0,1,1,27.88,31.82,41,7.0015,61,230,291 +2012-06-08 23:00:00,2,0,1,1,26.24,31.06,57,11.0014,52,163,215 +2012-06-09 00:00:00,2,0,0,1,26.24,31.06,53,7.0015,54,152,206 +2012-06-09 01:00:00,2,0,0,1,26.24,31.06,53,6.0032,34,89,123 +2012-06-09 02:00:00,2,0,0,1,26.24,31.06,50,15.0013,21,68,89 +2012-06-09 03:00:00,2,0,0,1,25.42,31.06,57,0,12,28,40 +2012-06-09 04:00:00,2,0,0,1,25.42,31.06,57,0,2,6,8 +2012-06-09 05:00:00,2,0,0,1,24.6,31.06,56,7.0015,4,15,19 +2012-06-09 06:00:00,2,0,0,1,22.96,26.515,64,7.0015,17,63,80 +2012-06-09 07:00:00,2,0,0,1,23.78,27.275,64,7.0015,26,61,87 +2012-06-09 08:00:00,2,0,0,1,25.42,30.305,61,7.0015,42,202,244 +2012-06-09 09:00:00,2,0,0,1,26.24,31.06,57,11.0014,99,241,340 +2012-06-09 10:00:00,2,0,0,1,28.7,32.575,51,7.0015,168,298,466 +2012-06-09 11:00:00,2,0,0,1,31.16,33.335,35,0,218,351,569 +2012-06-09 12:00:00,2,0,0,1,32.8,34.85,29,16.9979,196,335,531 +2012-06-09 13:00:00,2,0,0,1,33.62,34.85,24,19.0012,236,349,585 +2012-06-09 14:00:00,2,0,0,1,33.62,34.85,23,12.998,239,354,593 +2012-06-09 15:00:00,2,0,0,1,34.44,35.605,20,19.9995,218,337,555 +2012-06-09 16:00:00,2,0,0,1,33.62,34.85,24,12.998,219,315,534 +2012-06-09 17:00:00,2,0,0,1,34.44,35.605,24,0,238,257,495 +2012-06-09 18:00:00,2,0,0,1,33.62,34.85,24,15.0013,175,276,451 +2012-06-09 19:00:00,2,0,0,1,32.8,34.85,29,11.0014,128,232,360 +2012-06-09 20:00:00,2,0,0,1,31.16,33.335,35,15.0013,125,238,363 +2012-06-09 21:00:00,2,0,0,1,30.34,32.575,40,12.998,105,211,316 +2012-06-09 22:00:00,2,0,0,1,28.7,32.575,58,11.0014,63,151,214 +2012-06-09 23:00:00,2,0,0,1,27.88,31.82,61,11.0014,69,161,230 +2012-06-10 00:00:00,2,0,0,1,27.06,31.06,69,7.0015,33,125,158 +2012-06-10 01:00:00,2,0,0,1,26.24,30.305,73,8.9981,32,84,116 +2012-06-10 02:00:00,2,0,0,1,26.24,30.305,69,8.9981,17,56,73 +2012-06-10 03:00:00,2,0,0,1,26.24,30.305,73,7.0015,6,23,29 +2012-06-10 04:00:00,2,0,0,1,25.42,29.545,78,6.0032,1,9,10 +2012-06-10 05:00:00,2,0,0,1,25.42,30.305,69,6.0032,3,10,13 +2012-06-10 06:00:00,2,0,0,1,25.42,29.545,73,0,3,27,30 +2012-06-10 07:00:00,2,0,0,1,24.6,28.79,78,7.0015,21,41,62 +2012-06-10 08:00:00,2,0,0,1,26.24,30.305,73,6.0032,59,122,181 +2012-06-10 09:00:00,2,0,0,1,28.7,32.575,58,0,91,175,266 +2012-06-10 10:00:00,2,0,0,1,31.16,34.09,40,7.0015,148,265,413 +2012-06-10 11:00:00,2,0,0,1,31.16,34.09,45,6.0032,184,315,499 +2012-06-10 12:00:00,2,0,0,1,33.62,35.605,30,0,173,329,502 +2012-06-10 13:00:00,2,0,0,1,34.44,36.365,28,8.9981,204,288,492 +2012-06-10 14:00:00,2,0,0,1,34.44,36.365,30,8.9981,186,314,500 +2012-06-10 15:00:00,2,0,0,1,34.44,36.365,30,15.0013,159,316,475 +2012-06-10 16:00:00,2,0,0,1,34.44,37.12,36,19.0012,173,335,508 +2012-06-10 17:00:00,2,0,0,1,33.62,37.12,41,19.0012,184,337,521 +2012-06-10 18:00:00,2,0,0,1,33.62,36.365,38,15.0013,164,326,490 +2012-06-10 19:00:00,2,0,0,1,33.62,35.605,28,19.0012,115,260,375 +2012-06-10 20:00:00,2,0,0,1,31.16,34.09,48,11.0014,113,250,363 +2012-06-10 21:00:00,2,0,0,1,29.52,34.09,62,11.0014,83,170,253 +2012-06-10 22:00:00,2,0,0,1,28.7,32.575,65,11.0014,42,117,159 +2012-06-10 23:00:00,2,0,0,1,29.52,33.335,58,7.0015,30,80,110 +2012-06-11 00:00:00,2,0,1,1,28.7,32.575,65,7.0015,8,33,41 +2012-06-11 01:00:00,2,0,1,1,27.06,31.06,74,11.0014,9,15,24 +2012-06-11 02:00:00,2,0,1,1,27.06,31.06,74,7.0015,5,12,17 +2012-06-11 03:00:00,2,0,1,1,26.24,29.545,78,7.0015,2,4,6 +2012-06-11 04:00:00,2,0,1,1,26.24,29.545,78,8.9981,0,7,7 +2012-06-11 05:00:00,2,0,1,1,26.24,29.545,78,8.9981,1,36,37 +2012-06-11 06:00:00,2,0,1,1,25.42,28.79,83,7.0015,8,136,144 +2012-06-11 07:00:00,2,0,1,1,26.24,29.545,78,7.0015,25,478,503 +2012-06-11 08:00:00,2,0,1,1,27.06,31.06,74,8.9981,38,613,651 +2012-06-11 09:00:00,2,0,1,1,28.7,32.575,65,8.9981,57,259,316 +2012-06-11 10:00:00,2,0,1,1,29.52,34.09,62,11.0014,52,95,147 +2012-06-11 11:00:00,2,0,1,2,31.16,34.09,48,15.0013,59,143,202 +2012-06-11 12:00:00,2,0,1,2,32.8,36.365,43,12.998,63,198,261 +2012-06-11 13:00:00,2,0,1,2,32.8,35.605,41,19.9995,63,185,248 +2012-06-11 14:00:00,2,0,1,2,33.62,36.365,34,19.0012,66,193,259 +2012-06-11 15:00:00,2,0,1,1,32.8,35.605,41,23.9994,72,187,259 +2012-06-11 16:00:00,2,0,1,2,32.8,35.605,41,27.9993,87,340,427 +2012-06-11 17:00:00,2,0,1,2,32.8,35.605,41,23.9994,85,715,800 +2012-06-11 18:00:00,2,0,1,2,32.8,36.365,43,19.9995,105,726,831 +2012-06-11 19:00:00,2,0,1,2,31.16,34.09,48,22.0028,89,507,596 +2012-06-11 20:00:00,2,0,1,2,30.34,33.335,48,15.0013,61,333,394 +2012-06-11 21:00:00,2,0,1,2,29.52,33.335,58,12.998,32,218,250 +2012-06-11 22:00:00,2,0,1,2,29.52,33.335,58,12.998,22,142,164 +2012-06-11 23:00:00,2,0,1,2,28.7,32.575,58,15.0013,8,72,80 +2012-06-12 00:00:00,2,0,1,2,28.7,32.575,58,15.0013,2,26,28 +2012-06-12 01:00:00,2,0,1,2,27.88,31.82,65,11.0014,5,11,16 +2012-06-12 02:00:00,2,0,1,2,27.88,31.82,65,12.998,0,6,6 +2012-06-12 03:00:00,2,0,1,2,27.06,31.06,69,16.9979,3,9,12 +2012-06-12 04:00:00,2,0,1,3,24.6,27.275,88,11.0014,0,4,4 +2012-06-12 05:00:00,2,0,1,3,24.6,27.275,88,8.9981,1,28,29 +2012-06-12 06:00:00,2,0,1,2,24.6,27.275,88,8.9981,6,130,136 +2012-06-12 07:00:00,2,0,1,3,25.42,28.03,88,16.9979,16,287,303 +2012-06-12 08:00:00,2,0,1,2,25.42,28.03,88,15.0013,15,598,613 +2012-06-12 09:00:00,2,0,1,2,26.24,28.79,89,19.0012,31,254,285 +2012-06-12 10:00:00,2,0,1,3,26.24,28.79,89,19.0012,29,96,125 +2012-06-12 11:00:00,2,0,1,3,27.06,30.305,83,23.9994,8,57,65 +2012-06-12 12:00:00,2,0,1,3,27.06,30.305,83,16.9979,19,76,95 +2012-06-12 13:00:00,2,0,1,3,27.06,30.305,83,12.998,11,48,59 +2012-06-12 14:00:00,2,0,1,3,26.24,28.79,89,16.9979,12,48,60 +2012-06-12 15:00:00,2,0,1,3,27.06,29.545,89,12.998,22,94,116 +2012-06-12 16:00:00,2,0,1,2,27.06,29.545,89,19.0012,30,209,239 +2012-06-12 17:00:00,2,0,1,2,27.06,29.545,89,19.0012,56,625,681 +2012-06-12 18:00:00,2,0,1,1,27.88,31.82,83,12.998,57,596,653 +2012-06-12 19:00:00,2,0,1,1,27.88,31.82,83,12.998,47,444,491 +2012-06-12 20:00:00,2,0,1,1,27.88,31.82,83,12.998,36,350,386 +2012-06-12 21:00:00,2,0,1,1,27.88,31.82,83,7.0015,41,233,274 +2012-06-12 22:00:00,2,0,1,1,27.06,29.545,94,7.0015,19,188,207 +2012-06-12 23:00:00,2,0,1,3,27.06,29.545,94,15.0013,11,78,89 +2012-06-13 00:00:00,2,0,1,2,27.06,29.545,94,12.998,7,27,34 +2012-06-13 01:00:00,2,0,1,1,26.24,29.545,78,0,7,21,28 +2012-06-13 02:00:00,2,0,1,1,25.42,28.79,83,8.9981,0,4,4 +2012-06-13 03:00:00,2,0,1,1,25.42,28.79,83,12.998,1,7,8 +2012-06-13 04:00:00,2,0,1,1,24.6,28.03,83,8.9981,1,9,10 +2012-06-13 05:00:00,2,0,1,1,24.6,28.03,83,12.998,2,38,40 +2012-06-13 06:00:00,2,0,1,1,24.6,28.03,83,15.0013,6,188,194 +2012-06-13 07:00:00,2,0,1,1,24.6,28.03,83,19.9995,25,480,505 +2012-06-13 08:00:00,2,0,1,2,25.42,29.545,73,35.0008,41,672,713 +2012-06-13 09:00:00,2,0,1,2,26.24,30.305,69,39.0007,54,298,352 +2012-06-13 10:00:00,2,0,1,2,26.24,30.305,65,27.9993,64,134,198 +2012-06-13 11:00:00,2,0,1,2,27.06,31.06,54,30.0026,64,182,246 +2012-06-13 12:00:00,2,0,1,2,27.88,31.82,44,27.9993,93,241,334 +2012-06-13 13:00:00,2,0,1,2,28.7,31.82,45,26.0027,52,203,255 +2012-06-13 14:00:00,2,0,1,2,29.52,32.575,37,27.9993,98,222,320 +2012-06-13 15:00:00,2,0,1,1,29.52,32.575,32,32.9975,65,216,281 +2012-06-13 16:00:00,2,0,1,1,29.52,32.575,30,32.9975,72,320,392 +2012-06-13 17:00:00,2,0,1,1,29.52,32.575,32,32.9975,75,782,857 +2012-06-13 18:00:00,2,0,1,1,29.52,32.575,32,30.0026,104,640,744 +2012-06-13 19:00:00,2,0,1,1,28.7,31.82,34,26.0027,123,548,671 +2012-06-13 20:00:00,2,0,1,1,27.88,31.82,36,27.9993,86,362,448 +2012-06-13 21:00:00,2,0,1,1,26.24,31.06,44,23.9994,79,317,396 +2012-06-13 22:00:00,2,0,1,1,25.42,31.06,50,19.9995,29,209,238 +2012-06-13 23:00:00,2,0,1,1,25.42,31.06,50,19.0012,25,128,153 +2012-06-14 00:00:00,2,0,1,1,24.6,31.06,53,19.9995,3,45,48 +2012-06-14 01:00:00,2,0,1,1,24.6,31.06,56,15.0013,4,17,21 +2012-06-14 02:00:00,2,0,1,2,25.42,31.06,53,16.9979,1,8,9 +2012-06-14 03:00:00,2,0,1,2,25.42,31.06,53,19.0012,1,4,5 +2012-06-14 04:00:00,2,0,1,2,24.6,31.06,56,16.9979,0,6,6 +2012-06-14 05:00:00,2,0,1,2,24.6,31.06,56,16.9979,0,40,40 +2012-06-14 06:00:00,2,0,1,1,23.78,27.275,60,19.0012,12,169,181 +2012-06-14 07:00:00,2,0,1,1,24.6,30.305,60,19.0012,26,480,506 +2012-06-14 08:00:00,2,0,1,1,24.6,30.305,64,22.0028,37,682,719 +2012-06-14 09:00:00,2,0,1,1,25.42,30.305,61,15.0013,45,312,357 +2012-06-14 10:00:00,2,0,1,1,26.24,30.305,65,27.9993,47,132,179 +2012-06-14 11:00:00,2,0,1,1,27.06,31.06,57,16.9979,60,168,228 +2012-06-14 12:00:00,2,0,1,2,27.06,31.06,61,15.0013,55,210,265 +2012-06-14 13:00:00,2,0,1,1,27.88,31.82,57,11.0014,71,213,284 +2012-06-14 14:00:00,2,0,1,1,28.7,32.575,54,19.0012,84,214,298 +2012-06-14 15:00:00,2,0,1,1,30.34,33.335,48,19.9995,111,213,324 +2012-06-14 16:00:00,2,0,1,1,29.52,33.335,51,19.0012,70,368,438 +2012-06-14 17:00:00,2,0,1,1,29.52,33.335,48,15.0013,117,750,867 +2012-06-14 18:00:00,2,0,1,1,30.34,33.335,42,12.998,107,716,823 +2012-06-14 19:00:00,2,0,1,1,28.7,32.575,48,16.9979,96,483,579 +2012-06-14 20:00:00,2,0,1,1,27.06,31.06,65,16.9979,84,351,435 +2012-06-14 21:00:00,2,0,1,1,26.24,30.305,65,11.0014,67,270,337 +2012-06-14 22:00:00,2,0,1,2,26.24,30.305,65,15.0013,46,196,242 +2012-06-14 23:00:00,2,0,1,2,25.42,30.305,69,11.0014,36,136,172 +2012-06-15 00:00:00,2,0,1,1,24.6,29.545,73,11.0014,26,68,94 +2012-06-15 01:00:00,2,0,1,1,23.78,27.275,78,12.998,9,42,51 +2012-06-15 02:00:00,2,0,1,1,22.96,26.515,83,7.0015,0,15,15 +2012-06-15 03:00:00,2,0,1,1,22.96,26.515,83,11.0014,2,3,5 +2012-06-15 04:00:00,2,0,1,1,22.96,26.515,83,11.0014,1,13,14 +2012-06-15 05:00:00,2,0,1,1,22.14,25.76,88,7.0015,2,31,33 +2012-06-15 06:00:00,2,0,1,1,22.14,25.76,83,8.9981,9,142,151 +2012-06-15 07:00:00,2,0,1,1,22.96,26.515,83,11.0014,17,413,430 +2012-06-15 08:00:00,2,0,1,1,24.6,29.545,69,11.0014,44,609,653 +2012-06-15 09:00:00,2,0,1,1,25.42,30.305,65,11.0014,58,308,366 +2012-06-15 10:00:00,2,0,1,1,26.24,31.06,57,11.0014,56,160,216 +2012-06-15 11:00:00,2,0,1,1,27.06,31.06,50,12.998,106,180,286 +2012-06-15 12:00:00,2,0,1,1,28.7,31.82,45,11.0014,111,292,403 +2012-06-15 13:00:00,2,0,1,1,28.7,31.82,42,16.9979,121,272,393 +2012-06-15 14:00:00,2,0,1,1,29.52,32.575,39,12.998,121,255,376 +2012-06-15 15:00:00,2,0,1,1,29.52,32.575,39,12.998,107,270,377 +2012-06-15 16:00:00,2,0,1,1,29.52,32.575,37,12.998,132,426,558 +2012-06-15 17:00:00,2,0,1,1,30.34,32.575,37,19.0012,125,698,823 +2012-06-15 18:00:00,2,0,1,1,29.52,32.575,39,15.0013,121,572,693 +2012-06-15 19:00:00,2,0,1,1,28.7,31.82,42,11.0014,98,369,467 +2012-06-15 20:00:00,2,0,1,1,27.88,31.82,44,12.998,89,296,385 +2012-06-15 21:00:00,2,0,1,1,27.06,31.06,50,7.0015,83,250,333 +2012-06-15 22:00:00,2,0,1,1,26.24,31.06,53,8.9981,79,242,321 +2012-06-15 23:00:00,2,0,1,1,25.42,31.06,53,16.9979,46,176,222 +2012-06-16 00:00:00,2,0,0,1,23.78,27.275,56,8.9981,25,112,137 +2012-06-16 01:00:00,2,0,0,1,22.96,26.515,56,0,16,79,95 +2012-06-16 02:00:00,2,0,0,1,23.78,27.275,53,0,12,55,67 +2012-06-16 03:00:00,2,0,0,1,22.96,26.515,60,6.0032,8,19,27 +2012-06-16 04:00:00,2,0,0,1,22.14,25.76,68,8.9981,3,5,8 +2012-06-16 05:00:00,2,0,0,1,22.14,25.76,68,7.0015,2,21,23 +2012-06-16 06:00:00,2,0,0,1,22.14,25.76,68,12.998,11,36,47 +2012-06-16 07:00:00,2,0,0,1,22.14,25.76,68,12.998,10,68,78 +2012-06-16 08:00:00,2,0,0,1,23.78,27.275,64,11.0014,47,157,204 +2012-06-16 09:00:00,2,0,0,1,24.6,30.305,60,6.0032,88,279,367 +2012-06-16 10:00:00,2,0,0,1,26.24,31.06,47,12.998,139,296,435 +2012-06-16 11:00:00,2,0,0,1,27.06,31.06,39,11.0014,213,353,566 +2012-06-16 12:00:00,2,0,0,1,27.88,31.82,41,7.0015,254,349,603 +2012-06-16 13:00:00,2,0,0,1,29.52,32.575,34,11.0014,293,324,617 +2012-06-16 14:00:00,2,0,0,1,29.52,32.575,37,15.0013,264,309,573 +2012-06-16 15:00:00,2,0,0,1,30.34,32.575,35,16.9979,295,288,583 +2012-06-16 16:00:00,2,0,0,2,29.52,32.575,37,7.0015,238,304,542 +2012-06-16 17:00:00,2,0,0,2,29.52,32.575,37,16.9979,244,349,593 +2012-06-16 18:00:00,2,0,0,2,29.52,32.575,37,15.0013,256,315,571 +2012-06-16 19:00:00,2,0,0,2,28.7,31.82,42,12.998,184,277,461 +2012-06-16 20:00:00,2,0,0,2,27.06,31.06,47,12.998,123,229,352 +2012-06-16 21:00:00,2,0,0,2,26.24,31.06,50,15.0013,98,192,290 +2012-06-16 22:00:00,2,0,0,1,25.42,31.06,53,19.9995,91,189,280 +2012-06-16 23:00:00,2,0,0,1,24.6,31.06,53,19.9995,49,134,183 +2012-06-17 00:00:00,2,0,0,1,22.96,26.515,56,8.9981,31,117,148 +2012-06-17 01:00:00,2,0,0,1,22.96,26.515,60,11.0014,21,67,88 +2012-06-17 02:00:00,2,0,0,1,22.96,26.515,56,6.0032,19,55,74 +2012-06-17 03:00:00,2,0,0,1,22.14,25.76,64,7.0015,6,22,28 +2012-06-17 04:00:00,2,0,0,1,22.14,25.76,64,6.0032,2,16,18 +2012-06-17 05:00:00,2,0,0,1,22.14,25.76,68,8.9981,4,13,17 +2012-06-17 06:00:00,2,0,0,1,21.32,25,72,7.0015,7,16,23 +2012-06-17 07:00:00,2,0,0,1,21.32,25,72,6.0032,18,30,48 +2012-06-17 08:00:00,2,0,0,1,22.96,26.515,68,16.9979,24,95,119 +2012-06-17 09:00:00,2,0,0,1,22.96,26.515,68,11.0014,91,183,274 +2012-06-17 10:00:00,2,0,0,1,23.78,27.275,64,0,148,288,436 +2012-06-17 11:00:00,2,0,0,1,25.42,31.06,57,7.0015,196,350,546 +2012-06-17 12:00:00,2,0,0,1,25.42,31.06,57,0,260,355,615 +2012-06-17 13:00:00,2,0,0,1,26.24,31.06,53,11.0014,267,347,614 +2012-06-17 14:00:00,2,0,0,1,26.24,31.06,53,0,255,327,582 +2012-06-17 15:00:00,2,0,0,1,27.06,31.06,50,15.0013,203,260,463 +2012-06-17 16:00:00,2,0,0,1,27.06,31.06,54,19.9995,240,340,580 +2012-06-17 17:00:00,2,0,0,1,26.24,31.06,57,15.0013,232,361,593 +2012-06-17 18:00:00,2,0,0,1,26.24,31.06,53,12.998,203,310,513 +2012-06-17 19:00:00,2,0,0,1,26.24,31.06,53,11.0014,146,244,390 +2012-06-17 20:00:00,2,0,0,1,25.42,31.06,57,12.998,101,201,302 +2012-06-17 21:00:00,2,0,0,1,25.42,31.06,57,12.998,76,170,246 +2012-06-17 22:00:00,2,0,0,1,24.6,30.305,60,12.998,55,98,153 +2012-06-17 23:00:00,2,0,0,1,23.78,27.275,64,12.998,29,79,108 +2012-06-18 00:00:00,2,0,1,1,22.96,26.515,73,16.9979,12,28,40 +2012-06-18 01:00:00,2,0,1,1,22.14,25.76,77,15.0013,9,5,14 +2012-06-18 02:00:00,2,0,1,1,22.14,25.76,77,15.0013,3,6,9 +2012-06-18 03:00:00,2,0,1,2,21.32,25,83,15.0013,1,3,4 +2012-06-18 04:00:00,2,0,1,2,22.14,25.76,77,12.998,0,9,9 +2012-06-18 05:00:00,2,0,1,3,21.32,25,83,8.9981,1,22,23 +2012-06-18 06:00:00,2,0,1,3,21.32,25,88,8.9981,0,37,37 +2012-06-18 07:00:00,2,0,1,3,21.32,25,94,15.0013,10,135,145 +2012-06-18 08:00:00,2,0,1,2,22.14,25.76,83,12.998,27,447,474 +2012-06-18 09:00:00,2,0,1,2,22.14,25.76,83,15.0013,28,222,250 +2012-06-18 10:00:00,2,0,1,3,22.14,25.76,88,7.0015,13,78,91 +2012-06-18 11:00:00,2,0,1,2,22.14,25.76,88,11.0014,25,96,121 +2012-06-18 12:00:00,2,0,1,3,22.96,26.515,78,8.9981,29,139,168 +2012-06-18 13:00:00,2,0,1,2,23.78,27.275,73,8.9981,51,174,225 +2012-06-18 14:00:00,2,0,1,2,23.78,27.275,68,12.998,59,160,219 +2012-06-18 15:00:00,2,0,1,2,24.6,29.545,69,12.998,61,176,237 +2012-06-18 16:00:00,2,0,1,2,24.6,29.545,73,12.998,53,279,332 +2012-06-18 17:00:00,2,0,1,2,24.6,29.545,73,12.998,54,669,723 +2012-06-18 18:00:00,2,0,1,2,25.42,30.305,69,11.0014,47,595,642 +2012-06-18 19:00:00,2,0,1,2,25.42,29.545,73,6.0032,52,411,463 +2012-06-18 20:00:00,2,0,1,2,25.42,29.545,73,8.9981,45,317,362 +2012-06-18 21:00:00,2,0,1,2,25.42,29.545,73,7.0015,35,238,273 +2012-06-18 22:00:00,2,0,1,2,25.42,29.545,73,11.0014,21,143,164 +2012-06-18 23:00:00,2,0,1,3,24.6,28.79,78,12.998,17,57,74 +2012-06-19 00:00:00,2,0,1,2,24.6,28.79,78,11.0014,5,30,35 +2012-06-19 01:00:00,2,0,1,2,24.6,28.79,78,11.0014,1,13,14 +2012-06-19 02:00:00,2,0,1,2,24.6,28.79,78,8.9981,1,14,15 +2012-06-19 03:00:00,2,0,1,2,24.6,28.79,78,7.0015,1,7,8 +2012-06-19 04:00:00,2,0,1,2,24.6,28.79,78,8.9981,1,9,10 +2012-06-19 05:00:00,2,0,1,2,24.6,28.79,78,12.998,3,34,37 +2012-06-19 06:00:00,2,0,1,2,24.6,28.79,78,7.0015,9,152,161 +2012-06-19 07:00:00,2,0,1,2,24.6,28.79,78,8.9981,18,462,480 +2012-06-19 08:00:00,2,0,1,2,24.6,28.79,78,11.0014,40,633,673 +2012-06-19 09:00:00,2,0,1,1,26.24,30.305,73,6.0032,40,288,328 +2012-06-19 10:00:00,2,0,1,1,26.24,30.305,73,6.0032,44,136,180 +2012-06-19 11:00:00,2,0,1,1,27.06,31.06,69,8.9981,56,174,230 +2012-06-19 12:00:00,2,0,1,1,28.7,32.575,65,6.0032,70,222,292 +2012-06-19 13:00:00,2,0,1,1,30.34,34.09,58,8.9981,69,203,272 +2012-06-19 14:00:00,2,0,1,1,31.16,35.605,58,7.0015,61,166,227 +2012-06-19 15:00:00,2,0,1,1,31.98,37.12,59,11.0014,72,187,259 +2012-06-19 16:00:00,2,0,1,1,32.8,37.88,55,15.0013,48,286,334 +2012-06-19 17:00:00,2,0,1,1,32.8,37.88,55,12.998,86,725,811 +2012-06-19 18:00:00,2,0,1,1,32.8,37.88,55,11.0014,91,704,795 +2012-06-19 19:00:00,2,0,1,1,32.8,38.635,59,15.0013,82,432,514 +2012-06-19 20:00:00,2,0,1,1,32.8,37.88,55,16.9979,59,399,458 +2012-06-19 21:00:00,2,0,1,1,31.16,35.605,62,11.0014,37,239,276 +2012-06-19 22:00:00,2,0,1,1,29.52,34.85,79,6.0032,51,240,291 +2012-06-19 23:00:00,2,0,1,1,29.52,34.85,79,8.9981,23,102,125 +2012-07-01 00:00:00,3,0,0,1,31.16,36.365,66,0,27,122,149 +2012-07-01 01:00:00,3,0,0,1,30.34,34.85,70,8.9981,12,81,93 +2012-07-01 02:00:00,3,0,0,1,29.52,34.85,74,6.0032,21,69,90 +2012-07-01 03:00:00,3,0,0,1,29.52,35.605,84,8.9981,6,27,33 +2012-07-01 04:00:00,3,0,0,1,28.7,33.335,79,12.998,0,4,4 +2012-07-01 05:00:00,3,0,0,1,27.88,31.82,79,7.0015,3,7,10 +2012-07-01 06:00:00,3,0,0,1,28.7,33.335,79,6.0032,8,19,27 +2012-07-01 07:00:00,3,0,0,1,30.34,34.85,70,0,13,37,50 +2012-07-01 08:00:00,3,0,0,1,31.98,37.12,62,7.0015,36,106,142 +2012-07-01 09:00:00,3,0,0,1,33.62,39.395,56,0,51,168,219 +2012-07-01 10:00:00,3,0,0,1,35.26,39.395,44,19.9995,98,268,366 +2012-07-01 11:00:00,3,0,0,1,36.08,40.15,39,15.0013,121,256,377 +2012-07-01 12:00:00,3,0,0,1,36.9,40.91,37,15.0013,114,319,433 +2012-07-01 13:00:00,3,0,0,1,37.72,41.665,33,16.9979,111,309,420 +2012-07-01 14:00:00,3,0,0,1,37.72,41.665,33,16.9979,98,346,444 +2012-07-01 15:00:00,3,0,0,1,36.9,40.91,37,19.0012,101,244,345 +2012-07-01 16:00:00,3,0,0,1,37.72,41.665,33,19.9995,85,228,313 +2012-07-01 17:00:00,3,0,0,1,37.72,40.15,26,19.9995,90,323,413 +2012-07-01 18:00:00,3,0,0,1,36.08,38.635,32,23.9994,95,275,370 +2012-07-01 19:00:00,3,0,0,1,34.44,37.12,39,8.9981,103,279,382 +2012-07-01 20:00:00,3,0,0,1,34.44,37.12,39,8.9981,88,244,332 +2012-07-01 21:00:00,3,0,0,1,34.44,37.12,39,8.9981,77,181,258 +2012-07-01 22:00:00,3,0,0,1,33.62,37.12,43,8.9981,41,110,151 +2012-07-01 23:00:00,3,0,0,3,31.98,35.605,52,11.0014,22,88,110 +2012-07-02 00:00:00,3,0,1,2,31.16,35.605,58,15.0013,12,31,43 +2012-07-02 01:00:00,3,0,1,2,31.16,35.605,58,12.998,3,14,17 +2012-07-02 02:00:00,3,0,1,2,30.34,33.335,51,16.9979,1,14,15 +2012-07-02 03:00:00,3,0,1,2,29.52,33.335,54,27.9993,0,5,5 +2012-07-02 04:00:00,3,0,1,2,29.52,33.335,54,19.9995,2,10,12 +2012-07-02 05:00:00,3,0,1,2,29.52,33.335,51,0,3,37,40 +2012-07-02 06:00:00,3,0,1,1,28.7,32.575,58,7.0015,4,132,136 +2012-07-02 07:00:00,3,0,1,1,30.34,33.335,51,7.0015,8,390,398 +2012-07-02 08:00:00,3,0,1,1,31.16,34.85,52,12.998,20,548,568 +2012-07-02 09:00:00,3,0,1,1,31.98,34.85,46,16.9979,56,239,295 +2012-07-02 10:00:00,3,0,1,1,32.8,36.365,43,16.9979,70,104,174 +2012-07-02 11:00:00,3,0,1,1,34.44,36.365,28,19.9995,67,134,201 +2012-07-02 12:00:00,3,0,1,1,34.44,36.365,32,12.998,74,183,257 +2012-07-02 13:00:00,3,0,1,1,35.26,37.88,34,15.0013,74,162,236 +2012-07-02 14:00:00,3,0,1,1,35.26,37.88,34,15.0013,79,151,230 +2012-07-02 15:00:00,3,0,1,1,34.44,37.12,36,12.998,59,175,234 +2012-07-02 16:00:00,3,0,1,1,34.44,37.12,36,19.0012,61,304,365 +2012-07-02 17:00:00,3,0,1,1,34.44,36.365,32,8.9981,82,665,747 +2012-07-02 18:00:00,3,0,1,1,34.44,36.365,32,11.0014,72,658,730 +2012-07-02 19:00:00,3,0,1,1,31.98,34.85,43,8.9981,71,510,581 +2012-07-02 20:00:00,3,0,1,1,31.98,34.85,43,8.9981,38,357,395 +2012-07-02 21:00:00,3,0,1,1,31.16,34.09,45,8.9981,17,241,258 +2012-07-02 22:00:00,3,0,1,1,30.34,33.335,51,11.0014,19,169,188 +2012-07-02 23:00:00,3,0,1,1,30.34,33.335,51,7.0015,12,90,102 +2012-07-03 00:00:00,3,0,1,1,29.52,33.335,54,0,9,44,53 +2012-07-03 01:00:00,3,0,1,1,29.52,33.335,58,0,5,9,14 +2012-07-03 02:00:00,3,0,1,1,29.52,33.335,58,0,2,8,10 +2012-07-03 03:00:00,3,0,1,1,28.7,32.575,65,8.9981,0,2,2 +2012-07-03 04:00:00,3,0,1,1,27.88,31.82,65,7.0015,0,6,6 +2012-07-03 05:00:00,3,0,1,1,28.7,32.575,61,0,2,33,35 +2012-07-03 06:00:00,3,0,1,1,28.7,32.575,65,8.9981,5,149,154 +2012-07-03 07:00:00,3,0,1,1,30.34,34.09,58,0,21,462,483 +2012-07-03 08:00:00,3,0,1,1,30.34,34.09,62,6.0032,42,604,646 +2012-07-03 09:00:00,3,0,1,1,32.8,37.12,49,11.0014,46,226,272 +2012-07-03 10:00:00,3,0,1,1,33.62,37.12,43,15.0013,56,153,209 +2012-07-03 11:00:00,3,0,1,1,35.26,37.88,34,12.998,66,151,217 +2012-07-03 12:00:00,3,0,1,1,36.08,37.88,28,12.998,74,198,272 +2012-07-03 13:00:00,3,0,1,1,36.9,38.635,25,8.9981,80,203,283 +2012-07-03 14:00:00,3,0,1,1,36.9,38.635,25,12.998,69,241,310 +2012-07-03 15:00:00,3,0,1,2,36.9,38.635,24,0,71,330,401 +2012-07-03 16:00:00,3,0,1,2,36.9,38.635,24,12.998,90,437,527 +2012-07-03 17:00:00,3,0,1,2,35.26,37.12,30,11.0014,102,620,722 +2012-07-03 18:00:00,3,0,1,2,35.26,37.12,30,0,85,542,627 +2012-07-03 19:00:00,3,0,1,2,34.44,37.12,36,8.9981,66,431,497 +2012-07-03 20:00:00,3,0,1,3,31.16,34.85,55,32.9975,80,296,376 +2012-07-03 21:00:00,3,0,1,2,28.7,32.575,70,19.0012,36,160,196 +2012-07-03 22:00:00,3,0,1,1,27.88,31.82,79,12.998,26,151,177 +2012-07-03 23:00:00,3,0,1,1,27.06,30.305,83,0,19,152,171 +2012-07-04 00:00:00,3,1,0,1,27.88,31.82,79,6.0032,19,140,159 +2012-07-04 01:00:00,3,1,0,1,27.88,31.82,74,0,27,96,123 +2012-07-04 02:00:00,3,1,0,1,27.06,30.305,83,8.9981,27,66,93 +2012-07-04 03:00:00,3,1,0,1,27.88,31.82,74,12.998,9,23,32 +2012-07-04 04:00:00,3,1,0,1,27.88,31.82,69,16.9979,5,11,16 +2012-07-04 05:00:00,3,1,0,1,27.06,31.06,69,0,5,14,19 +2012-07-04 06:00:00,3,1,0,1,27.06,31.06,69,0,9,23,32 +2012-07-04 07:00:00,3,1,0,1,27.88,31.82,65,0,10,62,72 +2012-07-04 08:00:00,3,1,0,1,28.7,32.575,61,7.0015,43,110,153 +2012-07-04 09:00:00,3,1,0,1,31.16,34.85,52,0,90,203,293 +2012-07-04 10:00:00,3,1,0,1,32.8,36.365,46,0,143,304,447 +2012-07-04 11:00:00,3,1,0,1,33.62,37.88,46,8.9981,164,321,485 +2012-07-04 12:00:00,3,1,0,1,35.26,39.395,41,15.0013,164,330,494 +2012-07-04 13:00:00,3,1,0,1,36.9,40.91,35,0,177,322,499 +2012-07-04 14:00:00,3,1,0,1,36.9,40.91,37,11.0014,190,357,547 +2012-07-04 15:00:00,3,1,0,1,37.72,42.425,35,19.9995,155,299,454 +2012-07-04 16:00:00,3,1,0,1,37.72,42.425,35,16.9979,163,226,389 +2012-07-04 17:00:00,3,1,0,1,37.72,42.425,35,19.9995,161,253,414 +2012-07-04 18:00:00,3,1,0,1,36.9,42.425,42,12.998,159,271,430 +2012-07-04 19:00:00,3,1,0,1,35.26,40.15,47,15.0013,177,255,432 +2012-07-04 20:00:00,3,1,0,1,35.26,40.15,47,15.0013,237,314,551 +2012-07-04 21:00:00,3,1,0,1,34.44,40.15,53,8.9981,222,362,584 +2012-07-04 22:00:00,3,1,0,1,33.62,39.395,56,15.0013,175,327,502 +2012-07-04 23:00:00,3,1,0,2,31.98,34.85,43,6.0032,31,152,183 +2012-07-05 00:00:00,3,0,1,1,30.34,33.335,51,7.0015,17,71,88 +2012-07-05 01:00:00,3,0,1,1,30.34,33.335,51,19.0012,6,24,30 +2012-07-05 02:00:00,3,0,1,1,30.34,33.335,51,0,4,14,18 +2012-07-05 03:00:00,3,0,1,1,29.52,33.335,54,12.998,2,5,7 +2012-07-05 04:00:00,3,0,1,1,29.52,33.335,58,0,0,7,7 +2012-07-05 05:00:00,3,0,1,1,29.52,34.09,62,0,1,28,29 +2012-07-05 06:00:00,3,0,1,1,29.52,33.335,58,0,3,130,133 +2012-07-05 07:00:00,3,0,1,1,31.16,34.85,55,0,27,316,343 +2012-07-05 08:00:00,3,0,1,1,32.8,37.12,49,8.9981,36,514,550 +2012-07-05 09:00:00,3,0,1,1,34.44,39.395,49,19.9995,47,246,293 +2012-07-05 10:00:00,3,0,1,1,35.26,39.395,44,23.9994,69,117,186 +2012-07-05 11:00:00,3,0,1,1,36.9,40.91,35,19.9995,107,137,244 +2012-07-05 12:00:00,3,0,1,1,36.9,40.91,35,23.9994,88,188,276 +2012-07-05 13:00:00,3,0,1,1,37.72,41.665,33,15.0013,129,181,310 +2012-07-05 14:00:00,3,0,1,1,37.72,41.665,33,22.0028,87,154,241 +2012-07-05 15:00:00,3,0,1,1,37.72,41.665,33,23.9994,71,183,254 +2012-07-05 16:00:00,3,0,1,1,37.72,41.665,33,16.9979,109,324,433 +2012-07-05 17:00:00,3,0,1,1,37.72,42.425,35,11.0014,114,575,689 +2012-07-05 18:00:00,3,0,1,2,36.9,41.665,39,22.0028,96,511,607 +2012-07-05 19:00:00,3,0,1,2,36.08,40.15,39,16.9979,128,375,503 +2012-07-05 20:00:00,3,0,1,2,35.26,39.395,41,15.0013,78,243,321 +2012-07-05 21:00:00,3,0,1,1,34.44,38.635,47,12.998,91,232,323 +2012-07-05 22:00:00,3,0,1,1,33.62,40.15,59,8.9981,63,162,225 +2012-07-05 23:00:00,3,0,1,1,32.8,37.88,55,11.0014,32,99,131 +2012-07-06 00:00:00,3,0,1,1,31.98,37.12,62,8.9981,39,63,102 +2012-07-06 01:00:00,3,0,1,1,31.98,36.365,55,15.0013,7,22,29 +2012-07-06 02:00:00,3,0,1,1,31.16,35.605,62,8.9981,4,13,17 +2012-07-06 03:00:00,3,0,1,2,30.34,34.85,70,12.998,1,6,7 +2012-07-06 04:00:00,3,0,1,1,30.34,34.85,66,15.0013,2,4,6 +2012-07-06 05:00:00,3,0,1,1,30.34,34.85,66,12.998,4,31,35 +2012-07-06 06:00:00,3,0,1,1,30.34,34.85,66,12.998,4,127,131 +2012-07-06 07:00:00,3,0,1,1,31.98,34.85,46,8.9981,20,333,353 +2012-07-06 08:00:00,3,0,1,1,32.8,35.605,41,11.0014,28,557,585 +2012-07-06 09:00:00,3,0,1,1,33.62,36.365,36,8.9981,55,249,304 +2012-07-06 10:00:00,3,0,1,1,35.26,37.12,30,0,80,130,210 +2012-07-06 11:00:00,3,0,1,1,34.44,36.365,32,6.0032,92,141,233 +2012-07-06 12:00:00,3,0,1,1,36.08,37.88,28,7.0015,111,220,331 +2012-07-06 13:00:00,3,0,1,1,36.9,39.395,27,7.0015,99,194,293 +2012-07-06 14:00:00,3,0,1,1,36.9,40.15,31,11.0014,91,184,275 +2012-07-06 15:00:00,3,0,1,1,37.72,40.91,29,12.998,79,206,285 +2012-07-06 16:00:00,3,0,1,1,37.72,40.91,29,7.0015,69,300,369 +2012-07-06 17:00:00,3,0,1,1,37.72,40.91,29,0,90,486,576 +2012-07-06 18:00:00,3,0,1,1,36.9,40.15,33,16.9979,106,454,560 +2012-07-06 19:00:00,3,0,1,1,36.08,39.395,35,15.0013,112,306,418 +2012-07-06 20:00:00,3,0,1,1,35.26,38.635,39,7.0015,91,245,336 +2012-07-06 21:00:00,3,0,1,1,33.62,38.635,52,8.9981,77,223,300 +2012-07-06 22:00:00,3,0,1,1,32.8,37.88,55,12.998,78,210,288 +2012-07-06 23:00:00,3,0,1,1,32.8,39.395,63,7.0015,27,137,164 +2012-07-07 00:00:00,3,0,0,1,31.98,37.88,66,8.9981,35,115,150 +2012-07-07 01:00:00,3,0,0,1,31.16,36.365,70,11.0014,16,55,71 +2012-07-07 02:00:00,3,0,0,1,31.16,37.12,72,11.0014,11,47,58 +2012-07-07 03:00:00,3,0,0,1,30.34,35.605,74,8.9981,12,19,31 +2012-07-07 04:00:00,3,0,0,1,30.34,35.605,74,11.0014,3,13,16 +2012-07-07 05:00:00,3,0,0,1,30.34,35.605,74,12.998,2,12,14 +2012-07-07 06:00:00,3,0,0,1,30.34,35.605,74,7.0015,4,27,31 +2012-07-07 07:00:00,3,0,0,1,31.98,37.88,66,7.0015,8,63,71 +2012-07-07 08:00:00,3,0,0,1,33.62,41.665,63,12.998,32,120,152 +2012-07-07 09:00:00,3,0,0,1,34.44,41.665,59,11.0014,69,187,256 +2012-07-07 10:00:00,3,0,0,1,37.72,43.18,37,15.0013,100,225,325 +2012-07-07 11:00:00,3,0,0,1,38.54,43.94,38,12.998,122,245,367 +2012-07-07 12:00:00,3,0,0,1,39.36,43.18,31,23.9994,124,218,342 +2012-07-07 13:00:00,3,0,0,2,39.36,43.18,31,16.9979,116,244,360 +2012-07-07 14:00:00,3,0,0,2,39.36,43.18,30,8.9981,105,203,308 +2012-07-07 15:00:00,3,0,0,1,39.36,42.425,26,0,113,193,306 +2012-07-07 16:00:00,3,0,0,1,41,43.18,19,11.0014,102,192,294 +2012-07-07 17:00:00,3,0,0,1,39.36,42.425,26,8.9981,103,176,279 +2012-07-07 18:00:00,3,0,0,1,38.54,41.665,29,6.0032,83,194,277 +2012-07-07 19:00:00,3,0,0,1,37.72,41.665,33,8.9981,68,219,287 +2012-07-07 20:00:00,3,0,0,1,36.9,40.91,37,11.0014,79,197,276 +2012-07-07 21:00:00,3,0,0,1,36.08,39.395,37,12.998,51,150,201 +2012-07-07 22:00:00,3,0,0,1,34.44,41.665,59,12.998,56,164,220 +2012-07-07 23:00:00,3,0,0,1,34.44,40.91,56,11.0014,34,114,148 +2012-07-08 00:00:00,3,0,0,1,33.62,39.395,56,8.9981,22,125,147 +2012-07-08 01:00:00,3,0,0,1,33.62,39.395,56,7.0015,25,99,124 +2012-07-08 02:00:00,3,0,0,1,33.62,38.635,52,7.0015,11,59,70 +2012-07-08 03:00:00,3,0,0,1,32.8,38.635,59,7.0015,1,34,35 +2012-07-08 04:00:00,3,0,0,1,31.98,37.88,66,7.0015,2,11,13 +2012-07-08 05:00:00,3,0,0,1,31.98,37.12,62,0,1,5,6 +2012-07-08 06:00:00,3,0,0,1,31.98,38.635,70,8.9981,5,16,21 +2012-07-08 07:00:00,3,0,0,1,32.8,40.15,66,0,19,33,52 +2012-07-08 08:00:00,3,0,0,1,34.44,40.15,53,8.9981,35,95,130 +2012-07-08 09:00:00,3,0,0,1,35.26,40.91,50,7.0015,70,172,242 +2012-07-08 10:00:00,3,0,0,1,36.9,43.18,45,0,85,234,319 +2012-07-08 11:00:00,3,0,0,1,37.72,44.695,42,19.9995,120,269,389 +2012-07-08 12:00:00,3,0,0,1,37.72,44.695,42,12.998,105,271,376 +2012-07-08 13:00:00,3,0,0,1,38.54,43.94,38,16.9979,118,219,337 +2012-07-08 14:00:00,3,0,0,1,39.36,45.455,36,11.0014,77,235,312 +2012-07-08 15:00:00,3,0,0,3,37.72,44.695,42,19.0012,80,218,298 +2012-07-08 16:00:00,3,0,0,2,32.8,40.15,66,15.0013,65,226,291 +2012-07-08 17:00:00,3,0,0,1,31.98,37.12,59,0,68,202,270 +2012-07-08 18:00:00,3,0,0,1,31.98,37.12,62,7.0015,54,199,253 +2012-07-08 19:00:00,3,0,0,1,31.98,37.12,62,11.0014,66,184,250 +2012-07-08 20:00:00,3,0,0,1,31.16,36.365,70,6.0032,79,206,285 +2012-07-08 21:00:00,3,0,0,1,31.16,36.365,70,8.9981,58,149,207 +2012-07-08 22:00:00,3,0,0,3,30.34,34.85,70,6.0032,12,110,122 +2012-07-08 23:00:00,3,0,0,3,27.88,31.82,83,6.0032,25,98,123 +2012-07-09 00:00:00,3,0,1,2,27.88,31.82,89,6.0032,6,33,39 +2012-07-09 01:00:00,3,0,1,3,28.7,33.335,89,7.0015,5,13,18 +2012-07-09 02:00:00,3,0,1,3,28.7,33.335,89,12.998,1,4,5 +2012-07-09 03:00:00,3,0,1,3,28.7,33.335,89,12.998,0,5,5 +2012-07-09 04:00:00,3,0,1,3,27.06,29.545,89,26.0027,1,1,2 +2012-07-09 05:00:00,3,0,1,2,27.06,30.305,83,15.0013,1,27,28 +2012-07-09 06:00:00,3,0,1,3,26.24,28.79,89,16.9979,6,86,92 +2012-07-09 07:00:00,3,0,1,3,27.06,30.305,83,15.0013,7,223,230 +2012-07-09 08:00:00,3,0,1,2,27.06,30.305,83,11.0014,26,429,455 +2012-07-09 09:00:00,3,0,1,2,27.06,30.305,83,11.0014,38,325,363 +2012-07-09 10:00:00,3,0,1,2,27.06,30.305,83,12.998,58,117,175 +2012-07-09 11:00:00,3,0,1,2,29.52,34.09,62,8.9981,72,144,216 +2012-07-09 12:00:00,3,0,1,2,30.34,34.09,58,8.9981,61,205,266 +2012-07-09 13:00:00,3,0,1,2,31.16,34.85,55,16.9979,67,188,255 +2012-07-09 14:00:00,3,0,1,2,30.34,34.09,55,16.9979,58,184,242 +2012-07-09 15:00:00,3,0,1,2,31.16,34.09,45,15.0013,66,214,280 +2012-07-09 16:00:00,3,0,1,1,31.98,34.85,40,19.0012,88,325,413 +2012-07-09 17:00:00,3,0,1,1,31.98,34.85,40,11.0014,108,741,849 +2012-07-09 18:00:00,3,0,1,1,31.16,34.09,48,8.9981,82,790,872 +2012-07-09 19:00:00,3,0,1,1,30.34,34.09,55,11.0014,88,543,631 +2012-07-09 20:00:00,3,0,1,2,30.34,34.09,55,7.0015,69,378,447 +2012-07-09 21:00:00,3,0,1,2,30.34,34.09,55,6.0032,33,298,331 +2012-07-09 22:00:00,3,0,1,2,29.52,33.335,58,7.0015,35,189,224 +2012-07-09 23:00:00,3,0,1,2,28.7,32.575,65,7.0015,22,109,131 +2012-07-10 00:00:00,3,0,1,1,28.7,32.575,70,6.0032,16,53,69 +2012-07-10 01:00:00,3,0,1,1,28.7,33.335,74,8.9981,0,15,15 +2012-07-10 02:00:00,3,0,1,1,28.7,33.335,74,8.9981,1,15,16 +2012-07-10 03:00:00,3,0,1,1,27.88,31.82,79,0,0,3,3 +2012-07-10 04:00:00,3,0,1,1,27.88,31.82,79,8.9981,0,4,4 +2012-07-10 05:00:00,3,0,1,1,27.06,30.305,83,8.9981,3,39,42 +2012-07-10 06:00:00,3,0,1,2,27.88,31.82,79,7.0015,4,183,187 +2012-07-10 07:00:00,3,0,1,2,28.7,33.335,74,7.0015,31,489,520 +2012-07-10 08:00:00,3,0,1,1,29.52,34.85,74,8.9981,34,615,649 +2012-07-10 09:00:00,3,0,1,1,30.34,34.85,66,8.9981,47,284,331 +2012-07-10 10:00:00,3,0,1,1,31.16,35.605,62,12.998,56,134,190 +2012-07-10 11:00:00,3,0,1,1,32.8,36.365,46,12.998,92,157,249 +2012-07-10 12:00:00,3,0,1,1,32.8,35.605,41,8.9981,69,203,272 +2012-07-10 13:00:00,3,0,1,1,33.62,36.365,38,12.998,77,203,280 +2012-07-10 14:00:00,3,0,1,1,33.62,36.365,38,11.0014,71,171,242 +2012-07-10 15:00:00,3,0,1,1,32.8,35.605,41,15.0013,77,188,265 +2012-07-10 16:00:00,3,0,1,1,32.8,36.365,43,15.0013,89,346,435 +2012-07-10 17:00:00,3,0,1,1,31.98,35.605,49,12.998,103,769,872 +2012-07-10 18:00:00,3,0,1,3,28.7,33.335,74,15.0013,70,749,819 +2012-07-10 19:00:00,3,0,1,3,28.7,33.335,74,15.0013,55,359,414 +2012-07-10 20:00:00,3,0,1,3,26.24,28.79,83,15.0013,9,75,84 +2012-07-10 21:00:00,3,0,1,3,26.24,28.79,89,7.0015,7,83,90 +2012-07-10 22:00:00,3,0,1,2,26.24,28.79,83,8.9981,14,125,139 +2012-07-10 23:00:00,3,0,1,2,26.24,28.79,89,7.0015,29,74,103 +2012-07-11 00:00:00,3,0,1,2,27.06,30.305,83,8.9981,6,38,44 +2012-07-11 01:00:00,3,0,1,1,26.24,28.79,89,0,3,11,14 +2012-07-11 02:00:00,3,0,1,1,26.24,28.79,89,0,0,5,5 +2012-07-11 03:00:00,3,0,1,1,26.24,28.79,89,8.9981,0,5,5 +2012-07-11 04:00:00,3,0,1,1,26.24,28.79,89,8.9981,1,6,7 +2012-07-11 05:00:00,3,0,1,1,26.24,28.79,89,0,5,36,41 +2012-07-11 06:00:00,3,0,1,1,26.24,28.79,89,8.9981,17,168,185 +2012-07-11 07:00:00,3,0,1,2,27.06,30.305,83,7.0015,26,471,497 +2012-07-11 08:00:00,3,0,1,2,27.88,31.82,79,11.0014,30,644,674 +2012-07-11 09:00:00,3,0,1,2,28.7,33.335,74,8.9981,30,298,328 +2012-07-11 10:00:00,3,0,1,2,29.52,34.09,62,8.9981,47,148,195 +2012-07-11 11:00:00,3,0,1,2,31.16,35.605,58,8.9981,56,173,229 +2012-07-11 12:00:00,3,0,1,2,31.98,34.85,43,0,69,223,292 +2012-07-11 13:00:00,3,0,1,2,32.8,35.605,42,11.0014,65,208,273 +2012-07-11 14:00:00,3,0,1,1,32.8,35.605,41,15.0013,66,175,241 +2012-07-11 15:00:00,3,0,1,1,32.8,35.605,41,16.9979,56,220,276 +2012-07-11 16:00:00,3,0,1,1,32.8,35.605,38,12.998,53,358,411 +2012-07-11 17:00:00,3,0,1,1,32.8,34.85,31,15.0013,90,740,830 +2012-07-11 18:00:00,3,0,1,1,31.98,34.09,38,16.9979,79,735,814 +2012-07-11 19:00:00,3,0,1,1,30.34,33.335,48,15.0013,73,560,633 +2012-07-11 20:00:00,3,0,1,1,30.34,33.335,51,11.0014,73,410,483 +2012-07-11 21:00:00,3,0,1,1,29.52,33.335,58,15.0013,69,322,391 +2012-07-11 22:00:00,3,0,1,1,29.52,33.335,58,16.9979,41,203,244 +2012-07-11 23:00:00,3,0,1,2,28.7,32.575,58,16.9979,20,132,152 +2012-07-12 00:00:00,3,0,1,2,27.88,31.82,61,0,1,55,56 +2012-07-12 01:00:00,3,0,1,2,27.06,31.06,61,0,0,21,21 +2012-07-12 02:00:00,3,0,1,2,27.06,31.06,65,6.0032,0,9,9 +2012-07-12 03:00:00,3,0,1,1,26.24,30.305,69,7.0015,0,10,10 +2012-07-12 04:00:00,3,0,1,1,26.24,30.305,73,7.0015,0,5,5 +2012-07-12 05:00:00,3,0,1,1,25.42,29.545,73,7.0015,4,40,44 +2012-07-12 06:00:00,3,0,1,1,26.24,30.305,73,6.0032,7,171,178 +2012-07-12 07:00:00,3,0,1,1,26.24,30.305,73,8.9981,32,480,512 +2012-07-12 08:00:00,3,0,1,1,27.88,31.82,65,8.9981,49,653,702 +2012-07-12 09:00:00,3,0,1,1,29.52,33.335,58,7.0015,42,285,327 +2012-07-12 10:00:00,3,0,1,1,30.34,33.335,48,11.0014,69,145,214 +2012-07-12 11:00:00,3,0,1,1,31.16,34.09,45,7.0015,49,166,215 +2012-07-12 12:00:00,3,0,1,1,31.98,34.09,35,8.9981,71,221,292 +2012-07-12 13:00:00,3,0,1,1,32.8,34.85,33,15.0013,52,225,277 +2012-07-12 14:00:00,3,0,1,1,31.98,34.09,33,15.0013,42,167,209 +2012-07-12 15:00:00,3,0,1,1,32.8,35.605,36,12.998,63,208,271 +2012-07-12 16:00:00,3,0,1,1,32.8,35.605,36,12.998,69,370,439 +2012-07-12 17:00:00,3,0,1,1,31.16,34.09,43,15.0013,91,704,795 +2012-07-12 18:00:00,3,0,1,1,31.16,34.09,45,8.9981,86,739,825 +2012-07-12 19:00:00,3,0,1,1,30.34,33.335,48,15.0013,97,532,629 +2012-07-12 20:00:00,3,0,1,1,30.34,33.335,48,15.0013,75,439,514 +2012-07-12 21:00:00,3,0,1,1,29.52,33.335,48,15.0013,44,329,373 +2012-07-12 22:00:00,3,0,1,1,29.52,33.335,51,11.0014,56,262,318 +2012-07-12 23:00:00,3,0,1,2,28.7,32.575,51,15.0013,33,178,211 +2012-07-13 00:00:00,3,0,1,2,28.7,32.575,54,11.0014,19,76,95 +2012-07-13 01:00:00,3,0,1,2,27.88,31.82,54,7.0015,17,42,59 +2012-07-13 02:00:00,3,0,1,2,27.06,31.06,61,6.0032,2,15,17 +2012-07-13 03:00:00,3,0,1,2,27.88,31.82,61,0,2,7,9 +2012-07-13 04:00:00,3,0,1,2,27.06,31.06,61,0,0,11,11 +2012-07-13 05:00:00,3,0,1,2,27.06,31.82,56,6.0032,4,30,34 +2012-07-13 06:00:00,3,0,1,2,28.7,32.575,54,0,7,120,127 +2012-07-13 07:00:00,3,0,1,2,28.7,32.575,54,0,27,353,380 +2012-07-13 08:00:00,3,0,1,2,28.7,32.575,54,0,53,660,713 +2012-07-13 09:00:00,3,0,1,2,29.52,33.335,51,0,70,344,414 +2012-07-13 10:00:00,3,0,1,2,30.34,33.335,48,0,78,190,268 +2012-07-13 11:00:00,3,0,1,2,31.16,34.09,45,8.9981,68,220,288 +2012-07-13 12:00:00,3,0,1,2,31.16,34.09,40,7.0015,125,254,379 +2012-07-13 13:00:00,3,0,1,2,32.8,35.605,38,8.9981,100,274,374 +2012-07-13 14:00:00,3,0,1,2,32.8,35.605,38,0,120,249,369 +2012-07-13 15:00:00,3,0,1,2,32.8,35.605,36,7.0015,92,261,353 +2012-07-13 16:00:00,3,0,1,2,32.8,35.605,36,15.0013,111,381,492 +2012-07-13 17:00:00,3,0,1,2,32.8,35.605,36,11.0014,138,697,835 +2012-07-13 18:00:00,3,0,1,1,31.98,34.85,46,12.998,108,523,631 +2012-07-13 19:00:00,3,0,1,1,30.34,33.335,51,11.0014,103,385,488 +2012-07-13 20:00:00,3,0,1,1,30.34,33.335,48,8.9981,95,294,389 +2012-07-13 21:00:00,3,0,1,1,29.52,33.335,54,0,76,223,299 +2012-07-13 22:00:00,3,0,1,1,30.34,33.335,45,0,59,204,263 +2012-07-13 23:00:00,3,0,1,2,29.52,32.575,45,8.9981,37,175,212 +2012-07-14 00:00:00,3,0,0,2,29.52,33.335,48,6.0032,35,156,191 +2012-07-14 01:00:00,3,0,0,2,28.7,32.575,51,7.0015,13,105,118 +2012-07-14 02:00:00,3,0,0,2,28.7,32.575,54,7.0015,10,91,101 +2012-07-14 03:00:00,3,0,0,2,28.7,32.575,54,7.0015,9,31,40 +2012-07-14 04:00:00,3,0,0,3,27.06,31.06,61,7.0015,3,6,9 +2012-07-14 05:00:00,3,0,0,2,26.24,30.305,73,7.0015,0,5,5 +2012-07-14 06:00:00,3,0,0,2,26.24,29.545,78,6.0032,6,29,35 +2012-07-14 07:00:00,3,0,0,1,26.24,29.545,78,19.0012,7,41,48 +2012-07-14 08:00:00,3,0,0,1,25.42,29.545,78,19.0012,33,118,151 +2012-07-14 09:00:00,3,0,0,1,27.06,31.06,74,12.998,82,200,282 +2012-07-14 10:00:00,3,0,0,2,29.52,34.09,70,6.0032,123,278,401 +2012-07-14 11:00:00,3,0,0,2,29.52,34.09,70,7.0015,143,296,439 +2012-07-14 12:00:00,3,0,0,2,30.34,34.85,66,6.0032,181,318,499 +2012-07-14 13:00:00,3,0,0,2,31.16,35.605,62,6.0032,219,372,591 +2012-07-14 14:00:00,3,0,0,1,32.8,37.88,55,7.0015,269,363,632 +2012-07-14 15:00:00,3,0,0,1,32.8,37.88,55,11.0014,243,317,560 +2012-07-14 16:00:00,3,0,0,2,29.52,34.85,79,23.9994,226,340,566 +2012-07-14 17:00:00,3,0,0,3,28.7,33.335,79,11.0014,199,259,458 +2012-07-14 18:00:00,3,0,0,1,29.52,34.85,79,8.9981,108,243,351 +2012-07-14 19:00:00,3,0,0,1,29.52,35.605,84,6.0032,156,275,431 +2012-07-14 20:00:00,3,0,0,1,29.52,35.605,84,6.0032,101,255,356 +2012-07-14 21:00:00,3,0,0,1,28.7,33.335,84,15.0013,69,200,269 +2012-07-14 22:00:00,3,0,0,1,28.7,33.335,79,12.998,65,160,225 +2012-07-14 23:00:00,3,0,0,2,27.88,31.82,83,6.0032,55,156,211 +2012-07-15 00:00:00,3,0,0,1,27.88,31.82,89,11.0014,40,147,187 +2012-07-15 01:00:00,3,0,0,2,27.88,31.82,89,8.9981,49,119,168 +2012-07-15 02:00:00,3,0,0,2,27.88,31.82,89,11.0014,29,86,115 +2012-07-15 03:00:00,3,0,0,2,27.88,31.82,89,11.0014,15,42,57 +2012-07-15 04:00:00,3,0,0,2,27.88,31.82,89,7.0015,8,11,19 +2012-07-15 05:00:00,3,0,0,1,27.88,31.82,89,8.9981,2,7,9 +2012-07-15 06:00:00,3,0,0,1,27.88,31.82,83,8.9981,6,9,15 +2012-07-15 07:00:00,3,0,0,1,28.7,33.335,79,6.0032,17,30,47 +2012-07-15 08:00:00,3,0,0,2,28.7,33.335,84,8.9981,37,96,133 +2012-07-15 09:00:00,3,0,0,2,29.52,34.85,79,0,58,163,221 +2012-07-15 10:00:00,3,0,0,1,31.16,36.365,66,8.9981,141,241,382 +2012-07-15 11:00:00,3,0,0,1,33.62,38.635,52,11.0014,170,281,451 +2012-07-15 12:00:00,3,0,0,1,34.44,38.635,47,7.0015,153,336,489 +2012-07-15 13:00:00,3,0,0,1,35.26,39.395,41,7.0015,171,309,480 +2012-07-15 14:00:00,3,0,0,1,36.9,40.91,37,16.9979,162,314,476 +2012-07-15 15:00:00,3,0,0,1,35.26,40.15,47,8.9981,182,307,489 +2012-07-15 16:00:00,3,0,0,1,35.26,39.395,41,15.0013,152,343,495 +2012-07-15 17:00:00,3,0,0,1,32.8,38.635,59,32.9975,122,314,436 +2012-07-15 18:00:00,3,0,0,3,29.52,34.85,79,23.9994,84,228,312 +2012-07-15 19:00:00,3,0,0,1,29.52,35.605,84,15.0013,109,203,312 +2012-07-15 20:00:00,3,0,0,1,29.52,34.85,79,16.9979,95,199,294 +2012-07-15 21:00:00,3,0,0,1,29.52,34.85,79,6.0032,59,164,223 +2012-07-15 22:00:00,3,0,0,1,29.52,34.85,74,7.0015,34,96,130 +2012-07-15 23:00:00,3,0,0,1,29.52,34.85,79,8.9981,25,66,91 +2012-07-16 00:00:00,3,0,1,3,29.52,34.85,79,7.0015,11,32,43 +2012-07-16 01:00:00,3,0,1,2,28.7,33.335,74,12.998,1,10,11 +2012-07-16 02:00:00,3,0,1,1,28.7,33.335,74,7.0015,4,11,15 +2012-07-16 03:00:00,3,0,1,1,27.88,31.82,79,6.0032,2,4,6 +2012-07-16 04:00:00,3,0,1,1,27.88,31.82,79,7.0015,1,11,12 +2012-07-16 05:00:00,3,0,1,1,27.06,30.305,78,7.0015,10,40,50 +2012-07-16 06:00:00,3,0,1,1,27.88,31.82,79,8.9981,8,132,140 +2012-07-16 07:00:00,3,0,1,1,29.52,34.09,70,6.0032,24,459,483 +2012-07-16 08:00:00,3,0,1,1,30.34,34.85,66,7.0015,48,619,667 +2012-07-16 09:00:00,3,0,1,1,31.16,35.605,62,11.0014,51,297,348 +2012-07-16 10:00:00,3,0,1,1,32.8,38.635,59,0,69,117,186 +2012-07-16 11:00:00,3,0,1,1,34.44,40.15,53,15.0013,57,125,182 +2012-07-16 12:00:00,3,0,1,1,34.44,39.395,49,8.9981,79,158,237 +2012-07-16 13:00:00,3,0,1,1,34.44,39.395,49,19.0012,63,176,239 +2012-07-16 14:00:00,3,0,1,1,36.08,40.91,42,7.0015,53,159,212 +2012-07-16 15:00:00,3,0,1,1,35.26,40.15,47,16.9979,61,176,237 +2012-07-16 16:00:00,3,0,1,3,31.16,36.365,66,39.0007,77,309,386 +2012-07-16 17:00:00,3,0,1,3,31.16,36.365,66,39.0007,86,669,755 +2012-07-16 18:00:00,3,0,1,1,34.44,40.15,53,0,97,697,794 +2012-07-16 19:00:00,3,0,1,1,32.8,39.395,63,8.9981,92,503,595 +2012-07-16 20:00:00,3,0,1,1,32.8,38.635,59,8.9981,66,388,454 +2012-07-16 21:00:00,3,0,1,1,31.16,36.365,66,8.9981,45,283,328 +2012-07-16 22:00:00,3,0,1,1,31.16,35.605,62,6.0032,56,228,284 +2012-07-16 23:00:00,3,0,1,1,30.34,35.605,74,6.0032,27,139,166 +2012-07-17 00:00:00,3,0,1,1,29.52,35.605,84,7.0015,10,43,53 +2012-07-17 01:00:00,3,0,1,1,30.34,34.85,70,0,4,21,25 +2012-07-17 02:00:00,3,0,1,1,29.52,34.09,70,6.0032,1,6,7 +2012-07-17 03:00:00,3,0,1,1,29.52,34.09,66,0,0,3,3 +2012-07-17 04:00:00,3,0,1,1,29.52,34.09,62,0,0,7,7 +2012-07-17 05:00:00,3,0,1,1,27.88,31.82,74,6.0032,7,31,38 +2012-07-17 06:00:00,3,0,1,1,29.52,34.09,66,7.0015,16,197,213 +2012-07-17 07:00:00,3,0,1,2,30.34,34.85,70,0,26,500,526 +2012-07-17 08:00:00,3,0,1,2,32.8,37.88,55,0,43,618,661 +2012-07-17 09:00:00,3,0,1,2,33.62,38.635,49,15.0013,32,288,320 +2012-07-17 10:00:00,3,0,1,2,34.44,39.395,49,12.998,37,122,159 +2012-07-17 11:00:00,3,0,1,2,35.26,40.15,47,0,60,146,206 +2012-07-17 12:00:00,3,0,1,2,36.9,40.91,35,0,80,174,254 +2012-07-17 13:00:00,3,0,1,1,37.72,40.91,31,12.998,53,168,221 +2012-07-17 14:00:00,3,0,1,1,38.54,41.665,29,16.9979,54,160,214 +2012-07-17 15:00:00,3,0,1,1,37.72,40.91,31,11.0014,57,187,244 +2012-07-17 16:00:00,3,0,1,1,37.72,40.91,29,11.0014,64,317,381 +2012-07-17 17:00:00,3,0,1,1,37.72,40.91,29,0,95,675,770 +2012-07-17 18:00:00,3,0,1,1,36.9,40.15,33,12.998,60,712,772 +2012-07-17 19:00:00,3,0,1,1,36.08,39.395,35,16.9979,69,478,547 +2012-07-17 20:00:00,3,0,1,1,35.26,37.88,34,11.0014,52,375,427 +2012-07-17 21:00:00,3,0,1,1,33.62,38.635,52,8.9981,50,283,333 +2012-07-17 22:00:00,3,0,1,1,32.8,37.88,55,15.0013,29,215,244 +2012-07-17 23:00:00,3,0,1,1,31.98,37.12,59,12.998,22,139,161 +2012-07-18 00:00:00,3,0,1,1,31.16,36.365,66,11.0014,8,45,53 +2012-07-18 01:00:00,3,0,1,1,31.16,36.365,66,7.0015,2,14,16 +2012-07-18 02:00:00,3,0,1,1,30.34,34.85,66,8.9981,3,5,8 +2012-07-18 03:00:00,3,0,1,1,30.34,34.85,66,8.9981,2,2,4 +2012-07-18 04:00:00,3,0,1,1,29.52,34.09,70,8.9981,0,6,6 +2012-07-18 05:00:00,3,0,1,1,29.52,34.09,70,11.0014,5,41,46 +2012-07-18 06:00:00,3,0,1,1,29.52,34.09,70,11.0014,10,152,162 +2012-07-18 07:00:00,3,0,1,1,30.34,34.85,66,11.0014,23,472,495 +2012-07-18 08:00:00,3,0,1,1,31.98,37.12,62,7.0015,55,624,679 +2012-07-18 09:00:00,3,0,1,1,33.62,39.395,56,0,44,253,297 +2012-07-18 10:00:00,3,0,1,1,36.9,42.425,42,12.998,39,99,138 +2012-07-18 11:00:00,3,0,1,1,36.9,42.425,42,0,47,136,183 +2012-07-18 12:00:00,3,0,1,1,37.72,43.18,37,8.9981,36,166,202 +2012-07-18 13:00:00,3,0,1,1,38.54,42.425,33,0,49,154,203 +2012-07-18 14:00:00,3,0,1,1,38.54,43.94,38,22.0028,54,116,170 +2012-07-18 15:00:00,3,0,1,3,37.72,42.425,35,23.9994,42,152,194 +2012-07-18 16:00:00,3,0,1,1,30.34,34.85,66,16.9979,34,190,224 +2012-07-18 17:00:00,3,0,1,1,30.34,34.85,70,16.9979,35,335,370 +2012-07-18 18:00:00,3,0,1,2,31.16,35.605,62,8.9981,63,580,643 +2012-07-18 19:00:00,3,0,1,2,31.16,35.605,62,7.0015,78,438,516 +2012-07-18 20:00:00,3,0,1,1,30.34,34.09,62,6.0032,56,310,366 +2012-07-18 21:00:00,3,0,1,1,31.16,35.605,62,0,53,266,319 +2012-07-18 22:00:00,3,0,1,1,31.16,35.605,58,6.0032,42,246,288 +2012-07-18 23:00:00,3,0,1,1,31.16,35.605,58,6.0032,19,112,131 +2012-07-19 00:00:00,3,0,1,1,30.34,34.85,66,6.0032,16,50,66 +2012-07-19 01:00:00,3,0,1,1,30.34,34.85,66,6.0032,6,19,25 +2012-07-19 02:00:00,3,0,1,1,29.52,34.09,70,12.998,0,7,7 +2012-07-19 03:00:00,3,0,1,1,29.52,34.09,70,7.0015,1,4,5 +2012-07-19 04:00:00,3,0,1,1,29.52,34.09,70,7.0015,0,8,8 +2012-07-19 05:00:00,3,0,1,2,29.52,34.09,70,7.0015,5,35,40 +2012-07-19 06:00:00,3,0,1,1,29.52,34.09,66,8.9981,8,144,152 +2012-07-19 07:00:00,3,0,1,1,30.34,34.09,58,19.0012,23,450,473 +2012-07-19 08:00:00,3,0,1,1,31.16,35.605,58,16.9979,32,625,657 +2012-07-19 09:00:00,3,0,1,2,31.16,35.605,58,19.0012,36,282,318 +2012-07-19 10:00:00,3,0,1,1,31.16,35.605,58,12.998,41,157,198 +2012-07-19 11:00:00,3,0,1,1,32.8,37.88,55,7.0015,54,162,216 +2012-07-19 12:00:00,3,0,1,1,34.44,39.395,49,19.0012,59,215,274 +2012-07-19 13:00:00,3,0,1,1,34.44,38.635,47,8.9981,74,180,254 +2012-07-19 14:00:00,3,0,1,1,35.26,39.395,44,6.0032,46,151,197 +2012-07-19 15:00:00,3,0,1,1,34.44,38.635,47,6.0032,66,226,292 +2012-07-19 16:00:00,3,0,1,1,34.44,38.635,47,6.0032,70,288,358 +2012-07-19 17:00:00,3,0,1,1,35.26,39.395,41,0,93,678,771 +2012-07-19 18:00:00,3,0,1,1,35.26,39.395,41,12.998,93,684,777 +2012-07-19 19:00:00,3,0,1,1,34.44,37.88,44,16.9979,53,480,533 +2012-07-19 20:00:00,3,0,1,1,33.62,38.635,49,11.0014,65,440,505 +2012-07-19 21:00:00,3,0,1,3,27.06,29.545,89,16.9979,38,294,332 +2012-07-19 22:00:00,3,0,1,3,27.06,29.545,89,16.9979,6,62,68 +2012-07-19 23:00:00,3,0,1,3,27.06,29.545,89,15.0013,3,62,65 +2012-08-01 00:00:00,3,0,1,1,27.88,31.82,79,11.0014,3,44,47 +2012-08-01 01:00:00,3,0,1,1,27.06,30.305,83,6.0032,5,28,33 +2012-08-01 02:00:00,3,0,1,1,26.24,28.79,83,7.0015,0,13,13 +2012-08-01 03:00:00,3,0,1,1,26.24,28.79,83,7.0015,0,7,7 +2012-08-01 04:00:00,3,0,1,2,26.24,29.545,78,8.9981,1,3,4 +2012-08-01 05:00:00,3,0,1,2,26.24,29.545,78,8.9981,3,46,49 +2012-08-01 06:00:00,3,0,1,1,26.24,29.545,78,8.9981,6,179,185 +2012-08-01 07:00:00,3,0,1,2,26.24,28.79,83,8.9981,19,468,487 +2012-08-01 08:00:00,3,0,1,2,27.06,30.305,78,12.998,32,649,681 +2012-08-01 09:00:00,3,0,1,2,27.88,31.82,74,6.0032,34,316,350 +2012-08-01 10:00:00,3,0,1,1,29.52,34.09,66,6.0032,61,175,236 +2012-08-01 11:00:00,3,0,1,1,31.16,35.605,58,6.0032,54,180,234 +2012-08-01 12:00:00,3,0,1,1,32.8,37.12,49,7.0015,75,209,284 +2012-08-01 13:00:00,3,0,1,1,32.8,37.12,52,11.0014,59,221,280 +2012-08-01 14:00:00,3,0,1,1,33.62,37.88,46,11.0014,88,175,263 +2012-08-01 15:00:00,3,0,1,1,33.62,37.88,46,11.0014,89,206,295 +2012-08-01 16:00:00,3,0,1,1,32.8,37.88,55,19.0012,93,386,479 +2012-08-01 17:00:00,3,0,1,1,32.8,37.12,49,11.0014,103,734,837 +2012-08-01 18:00:00,3,0,1,3,31.16,35.605,62,15.0013,105,786,891 +2012-08-01 19:00:00,3,0,1,1,30.34,34.85,66,16.9979,88,564,652 +2012-08-01 20:00:00,3,0,1,1,30.34,34.85,66,11.0014,65,448,513 +2012-08-01 21:00:00,3,0,1,1,29.52,34.09,70,8.9981,36,284,320 +2012-08-01 22:00:00,3,0,1,1,29.52,34.09,70,7.0015,37,251,288 +2012-08-01 23:00:00,3,0,1,1,28.7,33.335,74,0,18,134,152 +2012-08-02 00:00:00,3,0,1,1,28.7,33.335,74,0,8,55,63 +2012-08-02 01:00:00,3,0,1,1,27.88,31.82,79,7.0015,6,36,42 +2012-08-02 02:00:00,3,0,1,1,27.06,30.305,83,6.0032,3,8,11 +2012-08-02 03:00:00,3,0,1,1,27.06,30.305,83,0,0,6,6 +2012-08-02 04:00:00,3,0,1,1,27.06,30.305,83,0,0,9,9 +2012-08-02 05:00:00,3,0,1,1,27.06,29.545,89,8.9981,4,37,41 +2012-08-02 06:00:00,3,0,1,1,27.06,30.305,83,0,6,177,183 +2012-08-02 07:00:00,3,0,1,1,28.7,33.335,79,0,21,452,473 +2012-08-02 08:00:00,3,0,1,1,29.52,34.85,74,7.0015,21,718,739 +2012-08-02 09:00:00,3,0,1,1,31.16,36.365,66,7.0015,31,312,343 +2012-08-02 10:00:00,3,0,1,1,32.8,37.88,55,0,51,130,181 +2012-08-02 11:00:00,3,0,1,1,33.62,38.635,52,7.0015,59,167,226 +2012-08-02 12:00:00,3,0,1,1,34.44,37.88,44,8.9981,56,230,286 +2012-08-02 13:00:00,3,0,1,1,35.26,39.395,44,15.0013,98,212,310 +2012-08-02 14:00:00,3,0,1,1,35.26,39.395,41,8.9981,54,171,225 +2012-08-02 15:00:00,3,0,1,1,31.98,37.12,62,31.0009,68,202,270 +2012-08-02 16:00:00,3,0,1,1,33.62,37.88,46,12.998,71,335,406 +2012-08-02 17:00:00,3,0,1,1,33.62,38.635,52,16.9979,90,775,865 +2012-08-02 18:00:00,3,0,1,1,32.8,38.635,59,15.0013,86,681,767 +2012-08-02 19:00:00,3,0,1,1,32.8,39.395,63,11.0014,98,509,607 +2012-08-02 20:00:00,3,0,1,1,31.98,37.88,66,0,51,376,427 +2012-08-02 21:00:00,3,0,1,1,31.16,36.365,66,15.0013,41,301,342 +2012-08-02 22:00:00,3,0,1,1,30.34,34.85,70,12.998,35,227,262 +2012-08-02 23:00:00,3,0,1,1,29.52,34.09,70,16.9979,25,152,177 +2012-08-03 00:00:00,3,0,1,1,29.52,34.09,70,12.998,15,56,71 +2012-08-03 01:00:00,3,0,1,1,28.7,33.335,74,12.998,11,32,43 +2012-08-03 02:00:00,3,0,1,1,27.88,31.82,79,15.0013,0,14,14 +2012-08-03 03:00:00,3,0,1,1,27.88,31.82,79,15.0013,1,5,6 +2012-08-03 04:00:00,3,0,1,1,27.06,30.305,83,16.9979,1,11,12 +2012-08-03 05:00:00,3,0,1,1,27.06,30.305,83,11.0014,2,35,37 +2012-08-03 06:00:00,3,0,1,1,27.06,30.305,83,15.0013,5,158,163 +2012-08-03 07:00:00,3,0,1,1,28.7,33.335,74,7.0015,25,396,421 +2012-08-03 08:00:00,3,0,1,1,29.52,34.09,70,8.9981,32,636,668 +2012-08-03 09:00:00,3,0,1,2,30.34,34.85,66,7.0015,69,327,396 +2012-08-03 10:00:00,3,0,1,2,32.8,37.12,52,12.998,82,167,249 +2012-08-03 11:00:00,3,0,1,2,34.44,39.395,49,19.0012,77,186,263 +2012-08-03 12:00:00,3,0,1,2,35.26,40.91,50,19.9995,95,243,338 +2012-08-03 13:00:00,3,0,1,2,35.26,40.15,47,19.0012,98,247,345 +2012-08-03 14:00:00,3,0,1,2,35.26,39.395,44,16.9979,102,229,331 +2012-08-03 15:00:00,3,0,1,1,36.08,40.91,42,16.9979,112,268,380 +2012-08-03 16:00:00,3,0,1,2,35.26,39.395,41,15.0013,112,380,492 +2012-08-03 17:00:00,3,0,1,2,34.44,40.15,53,19.0012,95,646,741 +2012-08-03 18:00:00,3,0,1,2,33.62,40.15,59,16.9979,98,573,671 +2012-08-03 19:00:00,3,0,1,2,32.8,39.395,63,15.0013,81,388,469 +2012-08-03 20:00:00,3,0,1,2,31.98,37.88,66,15.0013,89,300,389 +2012-08-03 21:00:00,3,0,1,2,31.16,36.365,66,12.998,54,224,278 +2012-08-03 22:00:00,3,0,1,1,31.16,36.365,70,16.9979,46,156,202 +2012-08-03 23:00:00,3,0,1,1,30.34,35.605,79,8.9981,26,170,196 +2012-08-04 00:00:00,3,0,0,1,30.34,35.605,79,11.0014,24,137,161 +2012-08-04 01:00:00,3,0,0,1,29.52,35.605,84,12.998,23,99,122 +2012-08-04 02:00:00,3,0,0,1,29.52,35.605,84,8.9981,20,64,84 +2012-08-04 03:00:00,3,0,0,1,29.52,35.605,84,8.9981,11,19,30 +2012-08-04 04:00:00,3,0,0,1,29.52,34.85,79,12.998,2,11,13 +2012-08-04 05:00:00,3,0,0,1,28.7,33.335,84,15.0013,1,16,17 +2012-08-04 06:00:00,3,0,0,1,28.7,33.335,84,15.0013,12,37,49 +2012-08-04 07:00:00,3,0,0,1,29.52,34.85,77,11.0014,18,49,67 +2012-08-04 08:00:00,3,0,0,1,30.34,36.365,72,12.998,49,132,181 +2012-08-04 09:00:00,3,0,0,1,31.98,37.88,65,15.0013,61,217,278 +2012-08-04 10:00:00,3,0,0,1,33.62,38.635,57,12.998,108,288,396 +2012-08-04 11:00:00,3,0,0,1,35.26,40.15,47,16.9979,155,315,470 +2012-08-04 12:00:00,3,0,0,1,35.26,39.395,40,23.9994,222,325,547 +2012-08-04 13:00:00,3,0,0,1,36.08,40.91,42,19.9995,195,332,527 +2012-08-04 14:00:00,3,0,0,1,36.08,40.15,40,26.0027,183,289,472 +2012-08-04 15:00:00,3,0,0,1,36.08,40.91,42,27.9993,205,284,489 +2012-08-04 16:00:00,3,0,0,1,36.9,40.91,39,19.9995,197,253,450 +2012-08-04 17:00:00,3,0,0,1,36.08,39.395,37,19.9995,179,313,492 +2012-08-04 18:00:00,3,0,0,1,35.26,39.395,41,22.0028,169,321,490 +2012-08-04 19:00:00,3,0,0,1,33.62,38.635,52,23.9994,133,264,397 +2012-08-04 20:00:00,3,0,0,1,33.62,38.635,52,19.9995,117,195,312 +2012-08-04 21:00:00,3,0,0,1,32.8,38.635,59,16.9979,96,193,289 +2012-08-04 22:00:00,3,0,0,1,31.16,36.365,66,19.0012,104,165,269 +2012-08-04 23:00:00,3,0,0,1,31.16,36.365,66,19.9995,61,161,222 +2012-08-05 00:00:00,3,0,0,1,30.34,34.85,70,19.0012,32,121,153 +2012-08-05 01:00:00,3,0,0,1,30.34,34.85,70,16.9979,8,79,87 +2012-08-05 02:00:00,3,0,0,1,30.34,34.85,70,19.9995,5,68,73 +2012-08-05 03:00:00,3,0,0,1,29.52,34.85,74,16.9979,9,32,41 +2012-08-05 04:00:00,3,0,0,1,29.52,34.85,74,16.9979,3,11,14 +2012-08-05 05:00:00,3,0,0,1,29.52,34.85,74,16.9979,1,18,19 +2012-08-05 06:00:00,3,0,0,1,29.52,34.85,79,16.9979,7,12,19 +2012-08-05 07:00:00,3,0,0,1,30.34,35.605,74,19.9995,18,50,68 +2012-08-05 08:00:00,3,0,0,1,31.16,36.365,66,22.0028,27,81,108 +2012-08-05 09:00:00,3,0,0,1,32.8,38.635,59,23.9994,61,168,229 +2012-08-05 10:00:00,3,0,0,1,32.8,38.635,59,27.9993,111,253,364 +2012-08-05 11:00:00,3,0,0,1,33.62,39.395,56,27.9993,155,282,437 +2012-08-05 12:00:00,3,0,0,1,35.26,40.15,47,35.0008,161,330,491 +2012-08-05 13:00:00,3,0,0,1,36.08,40.91,44,31.0009,208,315,523 +2012-08-05 14:00:00,3,0,0,1,36.9,42.425,42,31.0009,161,365,526 +2012-08-05 15:00:00,3,0,0,1,36.9,40.91,37,35.0008,164,286,450 +2012-08-05 16:00:00,3,0,0,1,33.62,37.88,46,16.9979,143,278,421 +2012-08-05 17:00:00,3,0,0,1,33.62,37.88,46,16.9979,122,260,382 +2012-08-05 18:00:00,3,0,0,3,28.7,33.335,74,8.9981,75,154,229 +2012-08-05 19:00:00,3,0,0,1,28.7,33.335,84,15.0013,46,139,185 +2012-08-05 20:00:00,3,0,0,1,28.7,33.335,84,7.0015,53,140,193 +2012-08-05 21:00:00,3,0,0,1,29.52,34.85,79,7.0015,51,157,208 +2012-08-05 22:00:00,3,0,0,1,29.52,34.85,79,6.0032,57,100,157 +2012-08-05 23:00:00,3,0,0,2,29.52,34.85,79,11.0014,29,58,87 +2012-08-06 00:00:00,3,0,1,2,29.52,34.85,79,0,9,24,33 +2012-08-06 01:00:00,3,0,1,1,29.52,34.85,79,6.0032,1,10,11 +2012-08-06 02:00:00,3,0,1,2,29.52,34.85,79,8.9981,0,5,5 +2012-08-06 03:00:00,3,0,1,3,29.52,34.85,79,6.0032,0,5,5 +2012-08-06 04:00:00,3,0,1,2,29.52,34.85,74,8.9981,3,8,11 +2012-08-06 05:00:00,3,0,1,1,28.7,33.335,79,12.998,2,23,25 +2012-08-06 06:00:00,3,0,1,2,28.7,33.335,79,15.0013,4,137,141 +2012-08-06 07:00:00,3,0,1,3,29.52,34.09,70,12.998,14,393,407 +2012-08-06 08:00:00,3,0,1,2,28.7,33.335,79,0,27,578,605 +2012-08-06 09:00:00,3,0,1,3,28.7,33.335,79,11.0014,28,248,276 +2012-08-06 10:00:00,3,0,1,1,30.34,34.85,70,15.0013,54,159,213 +2012-08-06 11:00:00,3,0,1,1,31.16,36.365,66,8.9981,108,152,260 +2012-08-06 12:00:00,3,0,1,2,31.98,36.365,55,6.0032,72,213,285 +2012-08-06 13:00:00,3,0,1,1,32.8,37.12,49,15.0013,85,204,289 +2012-08-06 14:00:00,3,0,1,1,33.62,37.88,46,0,99,188,287 +2012-08-06 15:00:00,3,0,1,1,33.62,37.88,46,8.9981,91,183,274 +2012-08-06 16:00:00,3,0,1,1,34.44,37.88,41,7.0015,88,363,451 +2012-08-06 17:00:00,3,0,1,1,33.62,37.12,41,0,112,746,858 +2012-08-06 18:00:00,3,0,1,1,33.62,37.12,41,8.9981,100,743,843 +2012-08-06 19:00:00,3,0,1,1,31.98,37.12,59,12.998,109,531,640 +2012-08-06 20:00:00,3,0,1,1,31.16,36.365,66,11.0014,89,368,457 +2012-08-06 21:00:00,3,0,1,1,30.34,34.85,70,12.998,72,245,317 +2012-08-06 22:00:00,3,0,1,1,30.34,34.85,70,6.0032,50,157,207 +2012-08-06 23:00:00,3,0,1,1,29.52,34.85,74,12.998,16,97,113 +2012-08-07 00:00:00,3,0,1,1,28.7,33.335,84,12.998,15,32,47 +2012-08-07 01:00:00,3,0,1,1,28.7,33.335,84,8.9981,2,16,18 +2012-08-07 02:00:00,3,0,1,1,28.7,33.335,84,8.9981,6,7,13 +2012-08-07 03:00:00,3,0,1,1,28.7,33.335,84,0,0,6,6 +2012-08-07 04:00:00,3,0,1,1,27.88,31.82,83,8.9981,2,7,9 +2012-08-07 05:00:00,3,0,1,1,28.7,33.335,79,7.0015,3,33,36 +2012-08-07 06:00:00,3,0,1,2,28.7,33.335,79,12.998,3,176,179 +2012-08-07 07:00:00,3,0,1,2,28.7,33.335,74,8.9981,21,481,502 +2012-08-07 08:00:00,3,0,1,2,28.7,32.575,70,11.0014,41,664,705 +2012-08-07 09:00:00,3,0,1,2,28.7,33.335,74,8.9981,44,283,327 +2012-08-07 10:00:00,3,0,1,2,30.34,34.85,70,8.9981,89,161,250 +2012-08-07 11:00:00,3,0,1,2,31.16,36.365,66,6.0032,84,130,214 +2012-08-07 12:00:00,3,0,1,2,32.8,37.88,55,8.9981,86,197,283 +2012-08-07 13:00:00,3,0,1,2,32.8,37.12,52,12.998,68,185,253 +2012-08-07 14:00:00,3,0,1,2,33.62,37.88,46,0,76,185,261 +2012-08-07 15:00:00,3,0,1,1,32.8,37.12,52,0,100,206,306 +2012-08-07 16:00:00,3,0,1,3,31.16,36.365,66,19.0012,101,344,445 +2012-08-07 17:00:00,3,0,1,2,31.98,37.12,62,8.9981,125,743,868 +2012-08-07 18:00:00,3,0,1,2,31.16,35.605,62,11.0014,103,711,814 +2012-08-07 19:00:00,3,0,1,2,31.16,36.365,66,7.0015,104,506,610 +2012-08-07 20:00:00,3,0,1,2,30.34,34.85,70,8.9981,74,374,448 +2012-08-07 21:00:00,3,0,1,2,29.52,34.85,74,0,70,247,317 +2012-08-07 22:00:00,3,0,1,1,29.52,34.85,74,7.0015,43,181,224 +2012-08-07 23:00:00,3,0,1,1,29.52,34.85,79,0,18,120,138 +2012-08-08 00:00:00,3,0,1,1,28.7,33.335,84,0,12,46,58 +2012-08-08 01:00:00,3,0,1,1,29.52,34.85,79,0,3,20,23 +2012-08-08 02:00:00,3,0,1,1,28.7,33.335,84,0,1,5,6 +2012-08-08 03:00:00,3,0,1,1,28.7,33.335,84,0,1,6,7 +2012-08-08 04:00:00,3,0,1,1,28.7,33.335,84,0,1,6,7 +2012-08-08 05:00:00,3,0,1,2,27.88,31.82,89,11.0014,3,40,43 +2012-08-08 06:00:00,3,0,1,2,28.7,33.335,84,11.0014,4,169,173 +2012-08-08 07:00:00,3,0,1,2,28.7,33.335,84,11.0014,24,458,482 +2012-08-08 08:00:00,3,0,1,2,30.34,36.365,72,6.0032,48,689,737 +2012-08-08 09:00:00,3,0,1,2,31.16,36.365,66,0,33,308,341 +2012-08-08 10:00:00,3,0,1,2,32.8,37.12,52,8.9981,63,151,214 +2012-08-08 11:00:00,3,0,1,2,32.8,37.12,52,0,80,159,239 +2012-08-08 12:00:00,3,0,1,2,32.8,37.12,52,0,63,217,280 +2012-08-08 13:00:00,3,0,1,2,32.8,37.12,52,0,101,212,313 +2012-08-08 14:00:00,3,0,1,2,32.8,37.12,52,16.9979,63,173,236 +2012-08-08 15:00:00,3,0,1,2,34.44,37.88,44,12.998,110,168,278 +2012-08-08 16:00:00,3,0,1,2,32.8,37.12,49,19.0012,113,328,441 +2012-08-08 17:00:00,3,0,1,2,32.8,37.88,55,19.0012,107,751,858 +2012-08-08 18:00:00,3,0,1,2,31.98,36.365,55,11.0014,117,745,862 +2012-08-08 19:00:00,3,0,1,1,31.16,36.365,66,15.0013,119,567,686 +2012-08-08 20:00:00,3,0,1,1,30.34,34.85,66,12.998,76,424,500 +2012-08-08 21:00:00,3,0,1,1,30.34,34.85,66,7.0015,70,311,381 +2012-08-08 22:00:00,3,0,1,1,29.52,34.85,74,7.0015,35,198,233 +2012-08-08 23:00:00,3,0,1,1,29.52,34.09,70,8.9981,16,120,136 +2012-08-09 00:00:00,3,0,1,1,29.52,34.85,74,12.998,16,51,67 +2012-08-09 01:00:00,3,0,1,1,28.7,33.335,79,8.9981,5,23,28 +2012-08-09 02:00:00,3,0,1,1,28.7,33.335,84,6.0032,2,12,14 +2012-08-09 03:00:00,3,0,1,1,27.88,31.82,83,6.0032,1,5,6 +2012-08-09 04:00:00,3,0,1,2,27.88,31.82,89,8.9981,0,10,10 +2012-08-09 05:00:00,3,0,1,2,27.06,29.545,94,0,4,37,41 +2012-08-09 06:00:00,3,0,1,1,27.06,30.305,83,11.0014,5,162,167 +2012-08-09 07:00:00,3,0,1,2,28.7,33.335,84,11.0014,24,451,475 +2012-08-09 08:00:00,3,0,1,1,29.52,34.85,74,7.0015,28,670,698 +2012-08-09 09:00:00,3,0,1,1,31.16,36.365,66,11.0014,54,299,353 +2012-08-09 10:00:00,3,0,1,1,32.8,37.88,55,15.0013,72,133,205 +2012-08-09 11:00:00,3,0,1,1,34.44,37.88,44,0,94,166,260 +2012-08-09 12:00:00,3,0,1,1,34.44,37.88,44,7.0015,85,192,277 +2012-08-09 13:00:00,3,0,1,1,35.26,39.395,41,7.0015,80,201,281 +2012-08-09 14:00:00,3,0,1,1,36.08,38.635,32,15.0013,86,161,247 +2012-08-09 15:00:00,3,0,1,1,36.08,38.635,32,15.0013,63,204,267 +2012-08-09 16:00:00,3,0,1,1,35.26,38.635,39,16.9979,97,320,417 +2012-08-09 17:00:00,3,0,1,1,35.26,37.88,36,16.9979,111,699,810 +2012-08-09 18:00:00,3,0,1,2,33.62,37.88,46,16.9979,78,733,811 +2012-08-09 19:00:00,3,0,1,1,32.8,37.88,55,12.998,90,533,623 +2012-08-09 20:00:00,3,0,1,1,28.7,32.575,54,19.0012,91,387,478 +2012-08-09 21:00:00,3,0,1,2,28.7,32.575,58,11.0014,50,286,336 +2012-08-09 22:00:00,3,0,1,2,27.06,31.06,69,15.0013,41,218,259 +2012-08-09 23:00:00,3,0,1,1,27.06,31.06,74,0,19,137,156 +2012-08-10 00:00:00,3,0,1,1,28.7,32.575,65,6.0032,17,68,85 +2012-08-10 01:00:00,3,0,1,1,28.7,32.575,65,7.0015,6,35,41 +2012-08-10 02:00:00,3,0,1,1,28.7,33.335,74,11.0014,6,14,20 +2012-08-10 03:00:00,3,0,1,2,29.52,34.85,79,12.998,3,6,9 +2012-08-10 04:00:00,3,0,1,3,28.7,33.335,84,19.0012,0,7,7 +2012-08-10 05:00:00,3,0,1,3,28.7,33.335,84,19.0012,4,29,33 +2012-08-10 06:00:00,3,0,1,3,26.24,28.79,89,19.9995,3,41,44 +2012-08-10 07:00:00,3,0,1,3,26.24,28.79,89,7.0015,5,128,133 +2012-08-10 08:00:00,3,0,1,3,25.42,27.275,91,11.0014,7,112,119 +2012-08-10 09:00:00,3,0,1,2,26.24,28.79,89,0,21,199,220 +2012-08-10 10:00:00,3,0,1,1,27.06,29.545,89,7.0015,27,166,193 +2012-08-10 11:00:00,3,0,1,3,27.88,31.82,79,8.9981,73,178,251 +2012-08-10 12:00:00,3,0,1,2,30.34,34.85,66,23.9994,75,240,315 +2012-08-10 13:00:00,3,0,1,2,31.16,35.605,58,23.9994,66,224,290 +2012-08-10 14:00:00,3,0,1,1,31.16,35.605,58,23.9994,71,236,307 +2012-08-10 15:00:00,3,0,1,1,32.8,37.12,52,30.0026,100,224,324 +2012-08-10 16:00:00,3,0,1,1,31.98,36.365,55,19.9995,96,371,467 +2012-08-10 17:00:00,3,0,1,1,32.8,37.12,52,19.0012,111,619,730 +2012-08-10 18:00:00,3,0,1,1,31.16,35.605,62,19.9995,88,552,640 +2012-08-10 19:00:00,3,0,1,1,31.16,35.605,62,19.0012,98,394,492 +2012-08-10 20:00:00,3,0,1,1,30.34,34.85,66,19.9995,55,315,370 +2012-08-10 21:00:00,3,0,1,1,30.34,34.85,66,16.9979,50,236,286 +2012-08-10 22:00:00,3,0,1,1,29.52,34.85,74,19.0012,50,168,218 +2012-08-10 23:00:00,3,0,1,1,29.52,34.09,70,19.0012,33,159,192 +2012-08-11 00:00:00,3,0,0,1,28.7,32.575,70,19.0012,38,142,180 +2012-08-11 01:00:00,3,0,0,1,27.06,31.06,74,15.0013,32,84,116 +2012-08-11 02:00:00,3,0,0,3,26.24,29.545,78,12.998,19,66,85 +2012-08-11 03:00:00,3,0,0,3,25.42,28.79,83,11.0014,2,19,21 +2012-08-11 04:00:00,3,0,0,1,25.42,28.79,83,7.0015,3,7,10 +2012-08-11 05:00:00,3,0,0,1,25.42,28.03,88,7.0015,2,9,11 +2012-08-11 06:00:00,3,0,0,2,25.42,28.03,88,7.0015,5,18,23 +2012-08-11 07:00:00,3,0,0,1,26.24,28.79,83,6.0032,8,54,62 +2012-08-11 08:00:00,3,0,0,1,27.06,30.305,83,7.0015,30,132,162 +2012-08-11 09:00:00,3,0,0,1,27.88,31.82,79,12.998,54,217,271 +2012-08-11 10:00:00,3,0,0,1,29.52,34.09,62,6.0032,125,282,407 +2012-08-11 11:00:00,3,0,0,1,30.34,34.85,66,11.0014,203,296,499 +2012-08-11 12:00:00,3,0,0,1,31.16,35.605,58,15.0013,214,332,546 +2012-08-11 13:00:00,3,0,0,1,32.8,37.12,49,23.9994,228,341,569 +2012-08-11 14:00:00,3,0,0,1,32.8,37.12,49,19.9995,248,290,538 +2012-08-11 15:00:00,3,0,0,1,32.8,36.365,46,19.0012,246,316,562 +2012-08-11 16:00:00,3,0,0,1,32.8,36.365,46,19.9995,227,304,531 +2012-08-11 17:00:00,3,0,0,3,30.34,34.85,66,23.9994,220,292,512 +2012-08-11 18:00:00,3,0,0,2,28.7,33.335,74,19.9995,107,193,300 +2012-08-11 19:00:00,3,0,0,2,27.06,29.545,89,7.0015,97,178,275 +2012-08-11 20:00:00,3,0,0,3,27.06,29.545,89,27.9993,31,129,160 +2012-08-11 21:00:00,3,0,0,2,27.06,29.545,89,11.0014,26,102,128 +2012-08-11 22:00:00,3,0,0,2,27.06,29.545,89,11.0014,40,128,168 +2012-08-11 23:00:00,3,0,0,3,27.06,30.305,78,11.0014,42,121,163 +2012-08-12 00:00:00,3,0,0,2,26.24,30.305,73,8.9981,24,96,120 +2012-08-12 01:00:00,3,0,0,1,25.42,29.545,78,8.9981,21,92,113 +2012-08-12 02:00:00,3,0,0,1,26.24,30.305,69,8.9981,19,67,86 +2012-08-12 03:00:00,3,0,0,1,25.42,29.545,73,6.0032,11,37,48 +2012-08-12 04:00:00,3,0,0,1,26.24,30.305,69,6.0032,2,8,10 +2012-08-12 05:00:00,3,0,0,1,26.24,31.06,61,12.998,1,9,10 +2012-08-12 06:00:00,3,0,0,1,26.24,30.305,65,11.0014,2,14,16 +2012-08-12 07:00:00,3,0,0,1,26.24,30.305,65,8.9981,9,30,39 +2012-08-12 08:00:00,3,0,0,1,27.06,31.06,54,15.0013,35,84,119 +2012-08-12 09:00:00,3,0,0,1,28.7,32.575,48,15.0013,64,153,217 +2012-08-12 10:00:00,3,0,0,1,28.7,32.575,51,11.0014,88,240,328 +2012-08-12 11:00:00,3,0,0,1,30.34,33.335,42,11.0014,167,282,449 +2012-08-12 12:00:00,3,0,0,1,30.34,33.335,42,12.998,163,342,505 +2012-08-12 13:00:00,3,0,0,1,31.98,34.85,40,0,178,365,543 +2012-08-12 14:00:00,3,0,0,1,31.16,34.09,40,12.998,213,366,579 +2012-08-12 15:00:00,3,0,0,1,31.16,34.09,40,8.9981,235,342,577 +2012-08-12 16:00:00,3,0,0,1,31.16,34.09,40,7.0015,213,300,513 +2012-08-12 17:00:00,3,0,0,1,32.8,34.85,33,0,186,319,505 +2012-08-12 18:00:00,3,0,0,1,31.98,34.09,35,7.0015,164,327,491 +2012-08-12 19:00:00,3,0,0,1,30.34,32.575,40,8.9981,148,317,465 +2012-08-12 20:00:00,3,0,0,1,29.52,32.575,45,0,96,204,300 +2012-08-12 21:00:00,3,0,0,1,29.52,33.335,51,6.0032,78,142,220 +2012-08-12 22:00:00,3,0,0,1,28.7,32.575,58,8.9981,40,141,181 +2012-08-12 23:00:00,3,0,0,1,27.88,31.82,61,0,25,85,110 +2012-08-13 00:00:00,3,0,1,1,27.06,31.06,65,7.0015,14,33,47 +2012-08-13 01:00:00,3,0,1,1,27.06,31.06,65,6.0032,3,11,14 +2012-08-13 02:00:00,3,0,1,1,26.24,30.305,69,7.0015,1,8,9 +2012-08-13 03:00:00,3,0,1,1,26.24,30.305,69,0,1,5,6 +2012-08-13 04:00:00,3,0,1,1,26.24,30.305,69,7.0015,0,11,11 +2012-08-13 05:00:00,3,0,1,1,26.24,30.305,69,7.0015,3,33,36 +2012-08-13 06:00:00,3,0,1,1,25.42,29.545,73,6.0032,4,155,159 +2012-08-13 07:00:00,3,0,1,1,27.06,31.06,65,8.9981,11,425,436 +2012-08-13 08:00:00,3,0,1,2,29.52,33.335,51,6.0032,25,648,673 +2012-08-13 09:00:00,3,0,1,2,30.34,33.335,45,0,40,265,305 +2012-08-13 10:00:00,3,0,1,2,31.16,34.09,40,0,88,111,199 +2012-08-13 11:00:00,3,0,1,1,31.16,34.09,40,6.0032,94,151,245 +2012-08-13 12:00:00,3,0,1,1,31.98,34.85,40,12.998,96,180,276 +2012-08-13 13:00:00,3,0,1,1,31.98,34.85,40,11.0014,79,175,254 +2012-08-13 14:00:00,3,0,1,1,32.8,34.85,33,7.0015,85,163,248 +2012-08-13 15:00:00,3,0,1,1,33.62,36.365,34,15.0013,80,194,274 +2012-08-13 16:00:00,3,0,1,1,32.8,35.605,36,6.0032,116,348,464 +2012-08-13 17:00:00,3,0,1,1,32.8,35.605,36,11.0014,102,716,818 +2012-08-13 18:00:00,3,0,1,1,31.16,34.85,52,19.0012,103,709,812 +2012-08-13 19:00:00,3,0,1,1,30.34,34.09,58,11.0014,88,467,555 +2012-08-13 20:00:00,3,0,1,1,30.34,34.09,62,15.0013,58,374,432 +2012-08-13 21:00:00,3,0,1,1,29.52,34.09,66,12.998,44,246,290 +2012-08-13 22:00:00,3,0,1,1,29.52,34.09,62,22.0028,44,148,192 +2012-08-13 23:00:00,3,0,1,1,28.7,32.575,70,15.0013,28,100,128 +2012-08-14 00:00:00,3,0,1,1,28.7,33.335,74,15.0013,12,48,60 +2012-08-14 01:00:00,3,0,1,1,27.88,31.82,79,16.9979,8,19,27 +2012-08-14 02:00:00,3,0,1,2,27.88,31.82,83,12.998,2,9,11 +2012-08-14 03:00:00,3,0,1,2,27.88,31.82,83,12.998,0,3,3 +2012-08-14 04:00:00,3,0,1,2,27.88,31.82,83,12.998,0,5,5 +2012-08-14 05:00:00,3,0,1,2,27.88,31.82,89,12.998,1,35,36 +2012-08-14 06:00:00,3,0,1,3,26.24,28.79,83,12.998,1,63,64 +2012-08-14 07:00:00,3,0,1,2,27.06,30.305,83,6.0032,1,178,179 +2012-08-14 08:00:00,3,0,1,2,27.06,29.545,89,6.0032,27,591,618 +2012-08-14 09:00:00,3,0,1,2,28.7,33.335,74,0,48,354,402 +2012-08-14 10:00:00,3,0,1,1,28.7,33.335,79,7.0015,53,155,208 +2012-08-14 11:00:00,3,0,1,1,30.34,34.09,62,0,69,127,196 +2012-08-14 12:00:00,3,0,1,1,31.98,35.605,49,8.9981,93,207,300 +2012-08-14 13:00:00,3,0,1,1,32.8,36.365,46,6.0032,83,203,286 +2012-08-14 14:00:00,3,0,1,1,33.62,37.12,41,15.0013,80,175,255 +2012-08-14 15:00:00,3,0,1,1,33.62,37.88,46,15.0013,84,199,283 +2012-08-14 16:00:00,3,0,1,1,33.62,37.12,43,15.0013,95,363,458 +2012-08-14 17:00:00,3,0,1,3,31.16,36.365,66,16.9979,78,734,812 +2012-08-14 18:00:00,3,0,1,1,31.16,35.605,62,19.0012,97,757,854 +2012-08-14 19:00:00,3,0,1,1,31.16,36.365,66,12.998,94,533,627 +2012-08-14 20:00:00,3,0,1,1,30.34,35.605,74,15.0013,65,371,436 +2012-08-14 21:00:00,3,0,1,1,30.34,34.09,62,15.0013,56,252,308 +2012-08-14 22:00:00,3,0,1,1,29.52,34.09,66,6.0032,28,161,189 +2012-08-14 23:00:00,3,0,1,1,29.52,34.09,66,11.0014,53,114,167 +2012-08-15 00:00:00,3,0,1,1,28.7,32.575,61,12.998,8,52,60 +2012-08-15 01:00:00,3,0,1,1,28.7,32.575,61,0,6,31,37 +2012-08-15 02:00:00,3,0,1,1,27.88,31.82,65,0,1,7,8 +2012-08-15 03:00:00,3,0,1,1,27.06,31.06,74,7.0015,1,10,11 +2012-08-15 04:00:00,3,0,1,1,26.24,28.79,83,7.0015,0,4,4 +2012-08-15 05:00:00,3,0,1,1,26.24,29.545,78,7.0015,4,35,39 +2012-08-15 06:00:00,3,0,1,1,26.24,29.545,78,7.0015,12,160,172 +2012-08-15 07:00:00,3,0,1,2,27.06,31.06,69,12.998,25,467,492 +2012-08-15 08:00:00,3,0,1,2,28.7,32.575,65,19.0012,40,642,682 +2012-08-15 09:00:00,3,0,1,2,29.52,34.09,62,12.998,57,310,367 +2012-08-15 10:00:00,3,0,1,2,29.52,34.09,62,12.998,70,163,233 +2012-08-15 11:00:00,3,0,1,2,30.34,34.09,58,12.998,80,155,235 +2012-08-15 12:00:00,3,0,1,1,30.34,34.09,55,15.0013,77,230,307 +2012-08-15 13:00:00,3,0,1,2,31.98,35.605,49,12.998,88,206,294 +2012-08-15 14:00:00,3,0,1,2,31.16,34.85,52,19.9995,94,161,255 +2012-08-15 15:00:00,3,0,1,1,31.16,34.85,52,16.9979,70,196,266 +2012-08-15 16:00:00,3,0,1,1,31.16,34.09,48,12.998,91,340,431 +2012-08-15 17:00:00,3,0,1,1,30.34,34.09,55,19.0012,102,749,851 +2012-08-15 18:00:00,3,0,1,1,30.34,33.335,51,15.0013,80,768,848 +2012-08-15 19:00:00,3,0,1,1,28.7,32.575,61,8.9981,124,525,649 +2012-08-15 20:00:00,3,0,1,1,28.7,32.575,61,8.9981,72,355,427 +2012-08-15 21:00:00,3,0,1,1,28.7,32.575,61,12.998,49,266,315 +2012-08-15 22:00:00,3,0,1,1,28.7,32.575,61,11.0014,29,197,226 +2012-08-15 23:00:00,3,0,1,1,27.88,31.82,65,7.0015,18,120,138 +2012-08-16 00:00:00,3,0,1,1,27.06,31.06,69,0,13,63,76 +2012-08-16 01:00:00,3,0,1,1,26.24,30.305,73,0,3,18,21 +2012-08-16 02:00:00,3,0,1,1,26.24,30.305,69,12.998,0,15,15 +2012-08-16 03:00:00,3,0,1,1,25.42,29.545,73,16.9979,0,4,4 +2012-08-16 04:00:00,3,0,1,1,25.42,29.545,73,15.0013,2,3,5 +2012-08-16 05:00:00,3,0,1,1,24.6,28.79,78,11.0014,7,30,37 +2012-08-16 06:00:00,3,0,1,1,24.6,28.79,78,11.0014,3,162,165 +2012-08-16 07:00:00,3,0,1,1,26.24,30.305,69,15.0013,16,448,464 +2012-08-16 08:00:00,3,0,1,1,27.88,31.82,61,12.998,33,649,682 +2012-08-16 09:00:00,3,0,1,1,29.52,33.335,54,7.0015,41,296,337 +2012-08-16 10:00:00,3,0,1,1,30.34,33.335,48,8.9981,78,121,199 +2012-08-16 11:00:00,3,0,1,1,31.16,33.335,37,6.0032,83,191,274 +2012-08-16 12:00:00,3,0,1,1,32.8,34.85,33,7.0015,96,247,343 +2012-08-16 13:00:00,3,0,1,1,32.8,34.85,31,15.0013,81,219,300 +2012-08-16 14:00:00,3,0,1,1,33.62,35.605,32,0,72,176,248 +2012-08-16 15:00:00,3,0,1,1,32.8,34.85,33,16.9979,63,197,260 +2012-08-16 16:00:00,3,0,1,1,33.62,35.605,32,15.0013,79,340,419 +2012-08-16 17:00:00,3,0,1,1,33.62,36.365,34,12.998,130,767,897 +2012-08-16 18:00:00,3,0,1,1,32.8,35.605,36,0,109,723,832 +2012-08-16 19:00:00,3,0,1,1,31.16,34.09,40,7.0015,119,558,677 +2012-08-16 20:00:00,3,0,1,1,31.16,34.09,40,6.0032,100,414,514 +2012-08-16 21:00:00,3,0,1,1,30.34,33.335,48,12.998,83,273,356 +2012-08-16 22:00:00,3,0,1,1,29.52,33.335,51,11.0014,69,185,254 +2012-08-16 23:00:00,3,0,1,1,28.7,32.575,54,7.0015,58,168,226 +2012-08-17 00:00:00,3,0,1,1,27.88,12.12,57,11.0014,21,67,88 +2012-08-17 01:00:00,3,0,1,1,27.06,12.12,65,7.0015,16,38,54 +2012-08-17 02:00:00,3,0,1,1,27.06,12.12,61,8.9981,4,15,19 +2012-08-17 03:00:00,3,0,1,1,26.24,12.12,65,7.0015,0,6,6 +2012-08-17 04:00:00,3,0,1,1,26.24,12.12,73,11.0014,0,9,9 +2012-08-17 05:00:00,3,0,1,1,26.24,12.12,73,7.0015,2,34,36 +2012-08-17 06:00:00,3,0,1,1,25.42,12.12,78,8.9981,6,151,157 +2012-08-17 07:00:00,3,0,1,1,26.24,12.12,73,7.0015,11,368,379 +2012-08-17 08:00:00,3,0,1,1,27.88,12.12,65,8.9981,43,625,668 +2012-08-17 09:00:00,3,0,1,1,28.7,12.12,58,7.0015,58,320,378 +2012-08-17 10:00:00,3,0,1,1,30.34,12.12,55,11.0014,82,149,231 +2012-08-17 11:00:00,3,0,1,1,31.16,12.12,52,19.0012,98,205,303 +2012-08-17 12:00:00,3,0,1,1,33.62,12.12,41,15.0013,110,255,365 +2012-08-17 13:00:00,3,0,1,1,34.44,12.12,36,26.0027,103,254,357 +2012-08-17 14:00:00,3,0,1,1,35.26,12.12,34,27.9993,128,200,328 +2012-08-17 15:00:00,3,0,1,1,35.26,12.12,30,31.0009,127,256,383 +2012-08-17 16:00:00,3,0,1,2,34.44,12.12,32,30.0026,116,372,488 +2012-08-17 17:00:00,3,0,1,1,33.62,12.12,36,22.0028,144,647,791 +2012-08-17 18:00:00,3,0,1,2,33.62,12.12,38,16.9979,108,561,669 +2012-08-17 19:00:00,3,0,1,2,30.34,12.12,55,26.0027,88,403,491 +2012-08-17 20:00:00,3,0,1,2,29.52,12.12,58,15.0013,97,262,359 +2012-08-17 21:00:00,3,0,1,2,27.88,12.12,69,19.9995,57,198,255 +2012-08-17 22:00:00,3,0,1,3,27.06,12.12,83,12.998,43,170,213 +2012-08-17 23:00:00,3,0,1,3,26.24,12.12,83,15.0013,21,100,121 +2012-08-18 00:00:00,3,0,0,2,26.24,28.79,83,15.0013,6,99,105 +2012-08-18 01:00:00,3,0,0,3,25.42,27.275,94,11.0014,14,78,92 +2012-08-18 02:00:00,3,0,0,3,25.42,28.03,88,11.0014,4,39,43 +2012-08-18 03:00:00,3,0,0,1,25.42,28.03,88,12.998,7,23,30 +2012-08-18 04:00:00,3,0,0,1,25.42,29.545,73,15.0013,5,8,13 +2012-08-18 05:00:00,3,0,0,1,24.6,28.79,78,16.9979,2,7,9 +2012-08-18 06:00:00,3,0,0,1,24.6,28.03,83,15.0013,4,23,27 +2012-08-18 07:00:00,3,0,0,1,24.6,28.03,83,15.0013,12,52,64 +2012-08-18 08:00:00,3,0,0,1,26.24,30.305,69,16.9979,28,161,189 +2012-08-18 09:00:00,3,0,0,1,27.06,31.06,65,19.0012,81,211,292 +2012-08-18 10:00:00,3,0,0,1,28.7,32.575,54,11.0014,166,314,480 +2012-08-18 11:00:00,3,0,0,1,29.52,33.335,51,0,180,356,536 +2012-08-18 12:00:00,3,0,0,1,31.16,33.335,37,12.998,266,388,654 +2012-08-18 13:00:00,3,0,0,1,30.34,32.575,40,12.998,289,355,644 +2012-08-18 14:00:00,3,0,0,1,31.16,33.335,37,19.0012,242,356,598 +2012-08-18 15:00:00,3,0,0,1,31.16,33.335,37,15.0013,250,346,596 +2012-08-18 16:00:00,3,0,0,1,31.16,33.335,37,16.9979,287,354,641 +2012-08-18 17:00:00,3,0,0,1,31.16,33.335,37,15.0013,256,379,635 +2012-08-18 18:00:00,3,0,0,1,30.34,32.575,37,11.0014,225,329,554 +2012-08-18 19:00:00,3,0,0,1,28.7,31.82,45,11.0014,164,324,488 +2012-08-18 20:00:00,3,0,0,1,28.7,31.82,45,7.0015,99,242,341 +2012-08-18 21:00:00,3,0,0,1,27.06,31.06,61,0,90,248,338 +2012-08-18 22:00:00,3,0,0,1,27.06,31.06,61,0,90,171,261 +2012-08-18 23:00:00,3,0,0,1,26.24,30.305,65,6.0032,60,175,235 +2012-08-19 00:00:00,3,0,0,1,27.06,31.06,57,6.0032,44,143,187 +2012-08-19 01:00:00,3,0,0,1,26.24,30.305,65,0,29,102,131 +2012-08-19 02:00:00,3,0,0,2,25.42,30.305,69,6.0032,16,103,119 +2012-08-19 03:00:00,3,0,0,2,25.42,30.305,61,11.0014,21,34,55 +2012-08-19 04:00:00,3,0,0,2,25.42,30.305,65,11.0014,4,22,26 +2012-08-19 05:00:00,3,0,0,2,24.6,29.545,73,8.9981,3,8,11 +2012-08-19 06:00:00,3,0,0,2,25.42,30.305,69,7.0015,5,15,20 +2012-08-19 07:00:00,3,0,0,2,25.42,30.305,69,8.9981,12,29,41 +2012-08-19 08:00:00,3,0,0,2,26.24,30.305,69,7.0015,34,90,124 +2012-08-19 09:00:00,3,0,0,2,27.06,31.06,74,0,86,184,270 +2012-08-19 10:00:00,3,0,0,2,27.88,31.82,69,0,138,287,425 +2012-08-19 11:00:00,3,0,0,3,26.24,29.545,78,11.0014,83,189,272 +2012-08-19 12:00:00,3,0,0,3,26.24,30.305,73,0,112,186,298 +2012-08-19 13:00:00,3,0,0,3,26.24,28.79,83,8.9981,50,112,162 +2012-08-19 14:00:00,3,0,0,3,26.24,30.305,73,0,41,108,149 +2012-08-19 15:00:00,3,0,0,2,26.24,30.305,65,0,89,187,276 +2012-08-19 16:00:00,3,0,0,2,27.06,31.06,65,0,97,259,356 +2012-08-19 17:00:00,3,0,0,2,26.24,29.545,78,7.0015,76,267,343 +2012-08-19 18:00:00,3,0,0,2,26.24,29.545,78,7.0015,86,291,377 +2012-08-19 19:00:00,3,0,0,2,26.24,30.305,73,8.9981,72,269,341 +2012-08-19 20:00:00,3,0,0,2,26.24,30.305,73,12.998,61,213,274 +2012-08-19 21:00:00,3,0,0,3,25.42,29.545,78,6.0032,36,154,190 +2012-08-19 22:00:00,3,0,0,2,25.42,29.545,78,11.0014,6,50,56 +2012-08-19 23:00:00,3,0,0,2,25.42,29.545,73,0,7,39,46 +2012-09-01 00:00:00,3,0,0,1,30.34,34.09,62,7.0015,22,146,168 +2012-09-01 01:00:00,3,0,0,1,29.52,34.85,74,8.9981,11,68,79 +2012-09-01 02:00:00,3,0,0,1,28.7,32.575,70,11.0014,8,61,69 +2012-09-01 03:00:00,3,0,0,1,28.7,32.575,70,7.0015,6,29,35 +2012-09-01 04:00:00,3,0,0,1,28.7,32.575,70,0,3,9,12 +2012-09-01 05:00:00,3,0,0,1,27.88,31.82,79,0,2,20,22 +2012-09-01 06:00:00,3,0,0,1,27.88,31.82,79,0,13,23,36 +2012-09-01 07:00:00,3,0,0,2,30.34,34.09,58,8.9981,8,58,66 +2012-09-01 08:00:00,3,0,0,2,31.16,35.605,58,16.9979,28,134,162 +2012-09-01 09:00:00,3,0,0,2,31.16,35.605,58,12.998,62,175,237 +2012-09-01 10:00:00,3,0,0,2,31.98,36.365,55,12.998,128,289,417 +2012-09-01 11:00:00,3,0,0,2,32.8,37.88,55,15.0013,219,273,492 +2012-09-01 12:00:00,3,0,0,2,32.8,37.88,55,11.0014,187,284,471 +2012-09-01 13:00:00,3,0,0,2,33.62,38.635,52,6.0032,237,267,504 +2012-09-01 14:00:00,3,0,0,2,35.26,39.395,44,11.0014,240,274,514 +2012-09-01 15:00:00,3,0,0,2,35.26,39.395,44,19.0012,257,306,563 +2012-09-01 16:00:00,3,0,0,2,34.44,39.395,49,11.0014,209,253,462 +2012-09-01 17:00:00,3,0,0,2,33.62,38.635,52,0,205,258,463 +2012-09-01 18:00:00,3,0,0,2,33.62,38.635,52,0,184,258,442 +2012-09-01 19:00:00,3,0,0,3,31.98,37.12,62,0,157,235,392 +2012-09-01 20:00:00,3,0,0,3,31.16,36.365,67,16.9979,67,140,207 +2012-09-01 21:00:00,3,0,0,3,26.24,28.79,89,0,21,83,104 +2012-09-01 22:00:00,3,0,0,2,27.06,29.545,89,0,21,57,78 +2012-09-01 23:00:00,3,0,0,1,27.06,29.545,89,6.0032,57,88,145 +2012-09-02 00:00:00,3,0,0,2,27.06,29.545,89,6.0032,27,72,99 +2012-09-02 01:00:00,3,0,0,1,27.06,29.545,89,0,15,58,73 +2012-09-02 02:00:00,3,0,0,1,27.06,29.545,89,0,28,56,84 +2012-09-02 03:00:00,3,0,0,1,27.06,29.545,89,6.0032,9,33,42 +2012-09-02 04:00:00,3,0,0,1,27.06,29.545,89,0,7,15,22 +2012-09-02 05:00:00,3,0,0,1,27.06,29.545,89,0,2,10,12 +2012-09-02 06:00:00,3,0,0,2,27.06,29.545,89,0,2,13,15 +2012-09-02 07:00:00,3,0,0,1,27.06,29.545,94,6.0032,13,29,42 +2012-09-02 08:00:00,3,0,0,1,27.88,31.82,89,6.0032,30,99,129 +2012-09-02 09:00:00,3,0,0,2,28.7,33.335,84,0,88,144,232 +2012-09-02 10:00:00,3,0,0,2,29.52,34.85,79,0,158,230,388 +2012-09-02 11:00:00,3,0,0,2,30.34,34.85,70,0,226,263,489 +2012-09-02 12:00:00,3,0,0,3,30.34,34.85,70,0,248,297,545 +2012-09-02 13:00:00,3,0,0,3,29.52,34.85,74,6.0032,263,230,493 +2012-09-02 14:00:00,3,0,0,3,29.52,34.85,79,6.0032,249,208,457 +2012-09-02 15:00:00,3,0,0,3,30.34,35.605,74,8.9981,179,176,355 +2012-09-02 16:00:00,3,0,0,1,30.34,34.85,70,0,222,252,474 +2012-09-02 17:00:00,3,0,0,1,31.16,36.365,66,6.0032,219,284,503 +2012-09-02 18:00:00,3,0,0,1,30.34,35.605,74,0,227,273,500 +2012-09-02 19:00:00,3,0,0,2,28.7,33.335,84,15.0013,140,152,292 +2012-09-02 20:00:00,3,0,0,2,28.7,33.335,84,11.0014,63,41,104 +2012-09-02 21:00:00,3,0,0,1,28.7,32.575,70,11.0014,79,92,171 +2012-09-02 22:00:00,3,0,0,3,27.88,31.82,83,8.9981,66,100,166 +2012-09-02 23:00:00,3,0,0,3,27.06,29.545,89,6.0032,53,70,123 +2012-09-03 00:00:00,3,1,0,2,27.06,29.545,94,0,42,62,104 +2012-09-03 01:00:00,3,1,0,2,27.88,31.82,89,11.0014,18,37,55 +2012-09-03 02:00:00,3,1,0,1,27.06,29.545,89,7.0015,10,30,40 +2012-09-03 03:00:00,3,1,0,1,27.06,29.545,89,8.9981,6,22,28 +2012-09-03 04:00:00,3,1,0,1,27.06,29.545,89,6.0032,6,5,11 +2012-09-03 05:00:00,3,1,0,1,27.06,29.545,89,0,1,3,4 +2012-09-03 06:00:00,3,1,0,1,27.06,29.545,94,0,3,12,15 +2012-09-03 07:00:00,3,1,0,1,27.88,31.82,85,0,6,37,43 +2012-09-03 08:00:00,3,1,0,2,28.7,33.335,84,7.0015,36,91,127 +2012-09-03 09:00:00,3,1,0,2,28.7,33.335,84,8.9981,71,158,229 +2012-09-03 10:00:00,3,1,0,2,30.34,35.605,74,15.0013,135,224,359 +2012-09-03 11:00:00,3,1,0,2,30.34,34.85,70,19.0012,187,272,459 +2012-09-03 12:00:00,3,1,0,2,31.16,35.605,62,19.9995,191,352,543 +2012-09-03 13:00:00,3,1,0,2,31.16,36.365,66,16.9979,209,357,566 +2012-09-03 14:00:00,3,1,0,1,30.34,34.85,70,19.9995,163,349,512 +2012-09-03 15:00:00,3,1,0,1,30.34,34.85,70,15.0013,168,281,449 +2012-09-03 16:00:00,3,1,0,1,30.34,34.85,70,15.0013,165,335,500 +2012-09-03 17:00:00,3,1,0,1,30.34,34.85,70,8.9981,181,317,498 +2012-09-03 18:00:00,3,1,0,1,30.34,34.85,66,11.0014,145,337,482 +2012-09-03 19:00:00,3,1,0,1,29.52,34.85,74,12.998,73,301,374 +2012-09-03 20:00:00,3,1,0,1,29.52,34.09,76,7.0015,78,183,261 +2012-09-03 21:00:00,3,1,0,1,29.52,34.09,76,7.0015,42,142,184 +2012-09-03 22:00:00,3,1,0,2,28.7,33.335,84,8.9981,17,104,121 +2012-09-03 23:00:00,3,1,0,2,28.7,33.335,84,16.9979,12,58,70 +2012-09-04 00:00:00,3,0,1,2,28.7,33.335,84,16.9979,10,19,29 +2012-09-04 01:00:00,3,0,1,1,27.88,31.82,82,8.9981,15,9,24 +2012-09-04 02:00:00,3,0,1,1,27.88,31.82,82,8.9981,1,4,5 +2012-09-04 03:00:00,3,0,1,2,27.06,29.545,89,6.0032,1,9,10 +2012-09-04 04:00:00,3,0,1,2,27.06,29.545,89,0,0,8,8 +2012-09-04 05:00:00,3,0,1,2,27.06,29.545,89,0,1,37,38 +2012-09-04 06:00:00,3,0,1,2,27.88,31.82,89,7.0015,7,165,172 +2012-09-04 07:00:00,3,0,1,2,27.88,31.82,89,7.0015,13,480,493 +2012-09-04 08:00:00,3,0,1,1,28.7,33.335,84,11.0014,15,617,632 +2012-09-04 09:00:00,3,0,1,2,29.52,34.85,79,15.0013,30,293,323 +2012-09-04 10:00:00,3,0,1,2,29.52,34.85,74,16.9979,42,130,172 +2012-09-04 11:00:00,3,0,1,2,30.34,34.85,70,19.0012,39,159,198 +2012-09-04 12:00:00,3,0,1,1,31.16,36.365,70,19.0012,54,233,287 +2012-09-04 13:00:00,3,0,1,1,32.8,37.88,55,30.0026,72,203,275 +2012-09-04 14:00:00,3,0,1,1,32.8,37.88,55,27.9993,72,202,274 +2012-09-04 15:00:00,3,0,1,1,32.8,38.635,59,31.0009,68,224,292 +2012-09-04 16:00:00,3,0,1,1,31.16,36.365,70,27.9993,61,397,458 +2012-09-04 17:00:00,3,0,1,1,31.16,36.365,70,23.9994,110,746,856 +2012-09-04 18:00:00,3,0,1,1,31.16,37.12,75,15.0013,94,745,839 +2012-09-04 19:00:00,3,0,1,1,31.16,36.365,70,15.0013,50,502,552 +2012-09-04 20:00:00,3,0,1,1,30.34,34.85,70,16.9979,47,338,385 +2012-09-04 21:00:00,3,0,1,1,30.34,35.605,74,16.9979,28,240,268 +2012-09-04 22:00:00,3,0,1,1,30.34,34.85,70,19.0012,25,154,179 +2012-09-04 23:00:00,3,0,1,1,29.52,34.85,74,19.9995,12,83,95 +2012-09-05 00:00:00,3,0,1,1,29.52,34.85,74,16.9979,10,27,37 +2012-09-05 01:00:00,3,0,1,1,28.7,33.335,84,12.998,2,11,13 +2012-09-05 02:00:00,3,0,1,1,28.7,33.335,84,12.998,0,9,9 +2012-09-05 03:00:00,3,0,1,1,28.7,33.335,79,19.0012,0,4,4 +2012-09-05 04:00:00,3,0,1,1,28.7,33.335,79,19.0012,2,3,5 +2012-09-05 05:00:00,3,0,1,2,28.7,33.335,79,19.9995,1,39,40 +2012-09-05 06:00:00,3,0,1,1,28.7,33.335,79,19.0012,7,203,210 +2012-09-05 07:00:00,3,0,1,2,28.7,33.335,79,16.9979,11,489,500 +2012-09-05 08:00:00,3,0,1,1,29.52,34.85,74,12.998,33,692,725 +2012-09-05 09:00:00,3,0,1,1,30.34,34.85,70,16.9979,27,263,290 +2012-09-05 10:00:00,3,0,1,2,31.16,36.365,70,11.0014,54,181,235 +2012-09-05 11:00:00,3,0,1,2,31.98,37.12,62,11.0014,61,156,217 +2012-09-05 12:00:00,3,0,1,1,31.98,38.635,70,7.0015,49,217,266 +2012-09-05 13:00:00,3,0,1,1,32.8,39.395,63,11.0014,50,184,234 +2012-09-05 14:00:00,3,0,1,1,33.62,39.395,56,7.0015,34,177,211 +2012-09-05 15:00:00,3,0,1,1,31.98,38.635,70,12.998,41,204,245 +2012-09-05 16:00:00,3,0,1,1,31.16,36.365,70,16.9979,86,344,430 +2012-09-05 17:00:00,3,0,1,1,31.16,36.365,66,16.9979,83,780,863 +2012-09-05 18:00:00,3,0,1,1,31.16,37.12,75,12.998,82,757,839 +2012-09-05 19:00:00,3,0,1,1,30.34,34.85,70,11.0014,64,598,662 +2012-09-05 20:00:00,3,0,1,1,29.52,35.605,84,11.0014,55,357,412 +2012-09-05 21:00:00,3,0,1,1,29.52,34.85,79,0,18,278,296 +2012-09-05 22:00:00,3,0,1,1,29.52,34.85,79,0,38,181,219 +2012-09-05 23:00:00,3,0,1,1,28.7,33.335,84,6.0032,24,126,150 +2012-09-06 00:00:00,3,0,1,2,28.7,33.335,84,6.0032,30,35,65 +2012-09-06 01:00:00,3,0,1,2,28.7,33.335,84,0,2,16,18 +2012-09-06 02:00:00,3,0,1,1,29.52,34.85,79,0,1,7,8 +2012-09-06 03:00:00,3,0,1,1,28.7,33.335,84,7.0015,0,9,9 +2012-09-06 04:00:00,3,0,1,2,28.7,33.335,84,6.0032,0,8,8 +2012-09-06 05:00:00,3,0,1,2,28.7,33.335,84,12.998,3,35,38 +2012-09-06 06:00:00,3,0,1,2,28.7,33.335,84,6.0032,11,189,200 +2012-09-06 07:00:00,3,0,1,2,28.7,33.335,84,7.0015,21,461,482 +2012-09-06 08:00:00,3,0,1,3,28.7,33.335,79,0,24,622,646 +2012-09-06 09:00:00,3,0,1,3,27.06,29.545,94,8.9981,8,115,123 +2012-09-06 10:00:00,3,0,1,3,27.06,29.545,94,8.9981,9,40,49 +2012-09-06 11:00:00,3,0,1,3,28.7,33.335,84,11.0014,10,52,62 +2012-09-06 12:00:00,3,0,1,2,29.52,34.85,79,15.0013,11,126,137 +2012-09-06 13:00:00,3,0,1,2,29.52,34.85,79,7.0015,39,152,191 +2012-09-06 14:00:00,3,0,1,1,30.34,35.605,74,6.0032,38,178,216 +2012-09-06 15:00:00,3,0,1,1,30.34,34.85,66,12.998,42,228,270 +2012-09-06 16:00:00,3,0,1,1,30.34,34.85,70,15.0013,42,374,416 +2012-09-06 17:00:00,3,0,1,1,30.34,34.85,70,16.9979,67,741,808 +2012-09-06 18:00:00,3,0,1,1,29.52,34.09,70,16.9979,74,761,835 +2012-09-06 19:00:00,3,0,1,1,27.88,31.82,74,16.9979,54,504,558 +2012-09-06 20:00:00,3,0,1,1,27.06,30.305,78,15.0013,50,356,406 +2012-09-06 21:00:00,3,0,1,1,26.24,28.79,89,11.0014,32,240,272 +2012-09-06 22:00:00,3,0,1,1,26.24,28.79,89,11.0014,24,193,217 +2012-09-06 23:00:00,3,0,1,1,26.24,28.79,89,11.0014,19,150,169 +2012-09-07 00:00:00,3,0,1,1,26.24,28.79,89,8.9981,17,79,96 +2012-09-07 01:00:00,3,0,1,1,25.42,28.03,88,7.0015,10,19,29 +2012-09-07 02:00:00,3,0,1,1,25.42,28.79,83,6.0032,1,10,11 +2012-09-07 03:00:00,3,0,1,1,25.42,28.79,83,6.0032,0,9,9 +2012-09-07 04:00:00,3,0,1,1,25.42,28.03,88,0,1,7,8 +2012-09-07 05:00:00,3,0,1,1,25.42,28.03,88,0,1,39,40 +2012-09-07 06:00:00,3,0,1,1,25.42,28.03,88,7.0015,5,135,140 +2012-09-07 07:00:00,3,0,1,1,26.24,28.79,89,7.0015,21,465,486 +2012-09-07 08:00:00,3,0,1,1,27.06,30.305,83,7.0015,29,690,719 +2012-09-07 09:00:00,3,0,1,1,28.7,33.335,79,8.9981,33,311,344 +2012-09-07 10:00:00,3,0,1,1,29.52,34.85,74,8.9981,53,171,224 +2012-09-07 11:00:00,3,0,1,1,31.16,35.605,62,8.9981,81,215,296 +2012-09-07 12:00:00,3,0,1,1,31.98,37.12,59,11.0014,76,247,323 +2012-09-07 13:00:00,3,0,1,1,32.8,38.635,59,16.9979,71,283,354 +2012-09-07 14:00:00,3,0,1,1,32.8,38.635,59,16.9979,66,187,253 +2012-09-07 15:00:00,3,0,1,1,32.8,37.88,55,16.9979,66,265,331 +2012-09-07 16:00:00,3,0,1,1,32.8,37.88,55,19.0012,75,395,470 +2012-09-07 17:00:00,3,0,1,1,31.98,37.12,59,22.0028,88,684,772 +2012-09-07 18:00:00,3,0,1,1,31.16,35.605,62,19.9995,95,697,792 +2012-09-07 19:00:00,3,0,1,1,30.34,34.09,62,19.0012,70,498,568 +2012-09-07 20:00:00,3,0,1,1,29.52,34.09,66,15.0013,51,340,391 +2012-09-07 21:00:00,3,0,1,1,28.7,33.335,74,11.0014,55,246,301 +2012-09-07 22:00:00,3,0,1,1,28.7,33.335,74,15.0013,52,247,299 +2012-09-07 23:00:00,3,0,1,1,27.06,29.545,89,16.9979,28,220,248 +2012-09-08 00:00:00,3,0,0,1,27.06,29.545,89,16.9979,20,130,150 +2012-09-08 01:00:00,3,0,0,2,27.06,29.545,89,19.0012,10,107,117 +2012-09-08 02:00:00,3,0,0,1,27.06,29.545,89,22.0028,9,68,77 +2012-09-08 03:00:00,3,0,0,2,27.06,29.545,89,15.0013,3,40,43 +2012-09-08 04:00:00,3,0,0,2,27.06,29.545,94,15.0013,3,8,11 +2012-09-08 05:00:00,3,0,0,2,27.06,29.545,94,16.9979,2,13,15 +2012-09-08 06:00:00,3,0,0,2,27.06,29.545,89,19.0012,8,26,34 +2012-09-08 07:00:00,3,0,0,1,27.06,29.545,89,19.0012,11,71,82 +2012-09-08 08:00:00,3,0,0,1,28.7,33.335,79,22.0028,33,197,230 +2012-09-08 09:00:00,3,0,0,1,28.7,33.335,74,26.0027,87,261,348 +2012-09-08 10:00:00,3,0,0,1,30.34,34.85,70,26.0027,100,322,422 +2012-09-08 11:00:00,3,0,0,1,31.16,35.605,62,30.0026,173,405,578 +2012-09-08 12:00:00,3,0,0,1,32.8,37.88,55,32.9975,220,474,694 +2012-09-08 13:00:00,3,0,0,1,33.62,38.635,52,35.0008,233,435,668 +2012-09-08 14:00:00,3,0,0,1,33.62,38.635,52,30.0026,260,366,626 +2012-09-08 15:00:00,3,0,0,3,22.96,26.515,88,16.9979,175,337,512 +2012-09-08 16:00:00,3,0,0,3,22.96,26.515,88,12.998,19,95,114 +2012-09-08 17:00:00,3,0,0,3,23.78,27.275,83,12.998,52,119,171 +2012-09-08 18:00:00,3,0,0,3,23.78,27.275,83,8.9981,27,140,167 +2012-09-08 19:00:00,3,0,0,3,23.78,27.275,88,7.0015,28,187,215 +2012-09-08 20:00:00,3,0,0,2,23.78,27.275,88,6.0032,28,166,194 +2012-09-08 21:00:00,3,0,0,2,24.6,28.03,83,11.0014,26,155,181 +2012-09-08 22:00:00,3,0,0,2,23.78,27.275,78,19.9995,18,176,194 +2012-09-08 23:00:00,3,0,0,2,23.78,27.275,73,11.0014,12,121,133 +2012-09-09 00:00:00,3,0,0,2,22.96,26.515,73,12.998,18,106,124 +2012-09-09 01:00:00,3,0,0,1,22.96,26.515,73,15.0013,20,104,124 +2012-09-09 02:00:00,3,0,0,1,22.14,25.76,77,19.0012,15,81,96 +2012-09-09 03:00:00,3,0,0,1,22.14,25.76,73,15.0013,14,32,46 +2012-09-09 04:00:00,3,0,0,1,21.32,25,77,16.9979,12,16,28 +2012-09-09 05:00:00,3,0,0,1,21.32,25,77,12.998,16,39,55 +2012-09-09 06:00:00,3,0,0,1,21.32,25,77,12.998,11,24,35 +2012-09-09 07:00:00,3,0,0,1,22.14,25.76,73,11.0014,20,50,70 +2012-09-09 08:00:00,3,0,0,1,23.78,27.275,68,15.0013,27,143,170 +2012-09-09 09:00:00,3,0,0,1,25.42,30.305,61,16.9979,85,214,299 +2012-09-09 10:00:00,3,0,0,1,26.24,31.06,57,19.9995,172,323,495 +2012-09-09 11:00:00,3,0,0,1,27.06,31.06,47,16.9979,194,391,585 +2012-09-09 12:00:00,3,0,0,1,27.06,31.06,47,0,247,510,757 +2012-09-09 13:00:00,3,0,0,1,27.88,31.82,39,0,238,491,729 +2012-09-09 14:00:00,3,0,0,1,29.52,32.575,30,19.0012,232,415,647 +2012-09-09 15:00:00,3,0,0,1,29.52,32.575,32,16.9979,284,412,696 +2012-09-09 16:00:00,3,0,0,1,27.88,31.82,36,19.0012,228,473,701 +2012-09-09 17:00:00,3,0,0,1,28.7,31.82,37,16.9979,213,458,671 +2012-09-09 18:00:00,3,0,0,1,27.06,31.06,36,16.9979,156,404,560 +2012-09-09 19:00:00,3,0,0,1,27.06,31.06,36,16.9979,134,362,496 +2012-09-09 20:00:00,3,0,0,1,25.42,31.06,41,19.0012,91,265,356 +2012-09-09 21:00:00,3,0,0,1,24.6,31.06,46,15.0013,57,149,206 +2012-09-09 22:00:00,3,0,0,1,23.78,27.275,49,16.9979,64,125,189 +2012-09-09 23:00:00,3,0,0,1,22.96,26.515,52,19.0012,22,70,92 +2012-09-10 00:00:00,3,0,1,1,22.96,26.515,52,19.0012,6,35,41 +2012-09-10 01:00:00,3,0,1,1,22.14,25.76,60,12.998,7,11,18 +2012-09-10 02:00:00,3,0,1,1,22.14,25.76,60,23.9994,11,6,17 +2012-09-10 03:00:00,3,0,1,1,21.32,25,68,19.0012,5,7,12 +2012-09-10 04:00:00,3,0,1,1,21.32,25,68,19.0012,1,4,5 +2012-09-10 05:00:00,3,0,1,1,20.5,24.24,72,16.9979,4,36,40 +2012-09-10 06:00:00,3,0,1,1,20.5,24.24,72,8.9981,8,172,180 +2012-09-10 07:00:00,3,0,1,1,21.32,25,68,15.0013,20,427,447 +2012-09-10 08:00:00,3,0,1,1,22.96,26.515,60,19.0012,33,697,730 +2012-09-10 09:00:00,3,0,1,1,24.6,31.06,53,19.9995,40,321,361 +2012-09-10 10:00:00,3,0,1,1,25.42,31.06,50,19.0012,42,168,210 +2012-09-10 11:00:00,3,0,1,1,25.42,31.06,43,19.9995,69,167,236 +2012-09-10 12:00:00,3,0,1,1,26.24,31.06,44,26.0027,76,256,332 +2012-09-10 13:00:00,3,0,1,1,26.24,31.06,38,15.0013,72,251,323 +2012-09-10 14:00:00,3,0,1,1,27.06,31.06,36,19.0012,107,233,340 +2012-09-10 15:00:00,3,0,1,1,27.06,31.06,31,26.0027,115,231,346 +2012-09-10 16:00:00,3,0,1,1,27.06,31.06,34,22.0028,108,380,488 +2012-09-10 17:00:00,3,0,1,1,27.06,31.06,34,22.0028,127,744,871 +2012-09-10 18:00:00,3,0,1,1,25.42,31.06,35,19.9995,111,857,968 +2012-09-10 19:00:00,3,0,1,1,25.42,31.06,38,19.9995,71,562,633 +2012-09-10 20:00:00,3,0,1,1,24.6,31.06,40,12.998,34,356,390 +2012-09-10 21:00:00,3,0,1,1,22.96,26.515,49,11.0014,29,256,285 +2012-09-10 22:00:00,3,0,1,1,22.14,25.76,52,8.9981,15,144,159 +2012-09-10 23:00:00,3,0,1,1,22.14,25.76,52,0,7,86,93 +2012-09-11 00:00:00,3,0,1,1,21.32,25,59,7.0015,5,27,32 +2012-09-11 01:00:00,3,0,1,1,20.5,24.24,63,0,0,10,10 +2012-09-11 02:00:00,3,0,1,1,19.68,23.485,77,11.0014,1,5,6 +2012-09-11 03:00:00,3,0,1,1,19.68,23.485,67,8.9981,1,7,8 +2012-09-11 04:00:00,3,0,1,1,19.68,23.485,72,7.0015,1,8,9 +2012-09-11 05:00:00,3,0,1,1,18.86,22.725,72,6.0032,3,41,44 +2012-09-11 06:00:00,3,0,1,1,18.86,22.725,77,7.0015,11,200,211 +2012-09-11 07:00:00,3,0,1,1,20.5,24.24,72,7.0015,24,572,596 +2012-09-11 08:00:00,3,0,1,1,22.14,25.76,68,6.0032,48,702,750 +2012-09-11 09:00:00,3,0,1,1,24.6,31.06,49,0,35,323,358 +2012-09-11 10:00:00,3,0,1,1,25.42,31.06,38,0,54,142,196 +2012-09-11 11:00:00,3,0,1,1,26.24,31.06,33,6.0032,60,187,247 +2012-09-11 12:00:00,3,0,1,1,26.24,31.06,33,0,62,254,316 +2012-09-11 13:00:00,3,0,1,1,27.06,31.06,29,6.0032,72,256,328 +2012-09-11 14:00:00,3,0,1,1,27.88,31.06,30,6.0032,74,181,255 +2012-09-11 15:00:00,3,0,1,1,28.7,31.82,28,7.0015,73,253,326 +2012-09-11 16:00:00,3,0,1,1,28.7,31.82,28,8.9981,99,437,536 +2012-09-11 17:00:00,3,0,1,1,28.7,31.82,28,0,168,802,970 +2012-09-11 18:00:00,3,0,1,1,26.24,31.06,36,11.0014,110,767,877 +2012-09-11 19:00:00,3,0,1,1,25.42,31.06,41,12.998,56,540,596 +2012-09-11 20:00:00,3,0,1,1,23.78,27.275,56,8.9981,40,421,461 +2012-09-11 21:00:00,3,0,1,1,22.96,26.515,60,7.0015,28,282,310 +2012-09-11 22:00:00,3,0,1,1,22.96,26.515,64,7.0015,27,189,216 +2012-09-11 23:00:00,3,0,1,1,22.14,25.76,68,7.0015,18,91,109 +2012-09-12 00:00:00,3,0,1,1,21.32,25,72,7.0015,8,41,49 +2012-09-12 01:00:00,3,0,1,1,21.32,25,72,7.0015,2,19,21 +2012-09-12 02:00:00,3,0,1,1,21.32,25,72,6.0032,2,9,11 +2012-09-12 03:00:00,3,0,1,1,20.5,24.24,77,6.0032,0,7,7 +2012-09-12 04:00:00,3,0,1,1,20.5,24.24,72,6.0032,0,5,5 +2012-09-12 05:00:00,3,0,1,1,20.5,24.24,72,6.0032,4,44,48 +2012-09-12 06:00:00,3,0,1,1,20.5,24.24,72,6.0032,6,199,205 +2012-09-12 07:00:00,3,0,1,1,21.32,25,72,0,24,533,557 +2012-09-12 08:00:00,3,0,1,1,22.96,26.515,64,7.0015,43,727,770 +2012-09-12 09:00:00,3,0,1,1,24.6,30.305,64,8.9981,50,278,328 +2012-09-12 10:00:00,3,0,1,1,25.42,30.305,61,8.9981,57,148,205 +2012-09-12 11:00:00,3,0,1,1,27.06,31.06,50,12.998,51,181,232 +2012-09-12 12:00:00,3,0,1,1,27.88,31.82,36,8.9981,88,264,352 +2012-09-12 13:00:00,3,0,1,1,28.7,31.82,34,8.9981,85,238,323 +2012-09-12 14:00:00,3,0,1,1,28.7,31.82,37,11.0014,78,200,278 +2012-09-12 15:00:00,3,0,1,1,29.52,32.575,37,8.9981,75,243,318 +2012-09-12 16:00:00,3,0,1,1,29.52,32.575,37,11.0014,90,419,509 +2012-09-12 17:00:00,3,0,1,1,28.7,31.82,41,19.9995,114,811,925 +2012-09-12 18:00:00,3,0,1,1,27.06,31.06,44,16.9979,91,886,977 +2012-09-12 19:00:00,3,0,1,1,26.24,31.06,50,12.998,78,557,635 +2012-09-12 20:00:00,3,0,1,1,25.42,31.06,57,8.9981,38,432,470 +2012-09-12 21:00:00,3,0,1,1,24.6,30.305,60,8.9981,27,279,306 +2012-09-12 22:00:00,3,0,1,1,22.96,26.515,64,6.0032,23,189,212 +2012-09-12 23:00:00,3,0,1,1,22.96,26.515,68,7.0015,16,111,127 +2012-09-13 00:00:00,3,0,1,1,22.96,26.515,73,6.0032,11,46,57 +2012-09-13 01:00:00,3,0,1,1,22.14,25.76,77,6.0032,6,22,28 +2012-09-13 02:00:00,3,0,1,1,22.14,25.76,77,0,0,9,9 +2012-09-13 03:00:00,3,0,1,1,21.32,25,83,0,2,9,11 +2012-09-13 04:00:00,3,0,1,1,21.32,25,83,0,0,6,6 +2012-09-13 05:00:00,3,0,1,1,21.32,25,83,0,3,54,57 +2012-09-13 06:00:00,3,0,1,1,20.5,24.24,82,0,9,186,195 +2012-09-13 07:00:00,3,0,1,1,22.14,25.76,77,0,22,549,571 +2012-09-13 08:00:00,3,0,1,1,22.96,26.515,73,0,33,725,758 +2012-09-13 09:00:00,3,0,1,1,24.6,30.305,64,6.0032,46,292,338 +2012-09-13 10:00:00,3,0,1,1,26.24,31.06,61,6.0032,63,149,212 +2012-09-13 11:00:00,3,0,1,1,27.06,31.06,50,11.0014,71,183,254 +2012-09-13 12:00:00,3,0,1,1,27.88,31.82,44,7.0015,57,240,297 +2012-09-13 13:00:00,3,0,1,1,28.7,31.82,42,0,60,223,283 +2012-09-13 14:00:00,3,0,1,1,29.52,32.575,39,8.9981,60,214,274 +2012-09-13 15:00:00,3,0,1,1,29.52,32.575,42,7.0015,99,253,352 +2012-09-13 16:00:00,3,0,1,1,29.52,32.575,39,6.0032,85,406,491 +2012-09-13 17:00:00,3,0,1,1,29.52,32.575,42,12.998,97,787,884 +2012-09-13 18:00:00,3,0,1,1,27.88,31.82,57,16.9979,108,744,852 +2012-09-13 19:00:00,3,0,1,1,26.24,30.305,65,8.9981,80,594,674 +2012-09-13 20:00:00,3,0,1,1,25.42,30.305,69,7.0015,55,408,463 +2012-09-13 21:00:00,3,0,1,1,25.42,30.305,65,7.0015,26,291,317 +2012-09-13 22:00:00,3,0,1,1,24.6,29.545,69,8.9981,28,223,251 +2012-09-13 23:00:00,3,0,1,1,23.78,27.275,73,7.0015,33,137,170 +2012-09-14 00:00:00,3,0,1,1,22.96,26.515,73,6.0032,24,63,87 +2012-09-14 01:00:00,3,0,1,1,22.96,26.515,73,6.0032,6,35,41 +2012-09-14 02:00:00,3,0,1,1,22.96,26.515,73,0,7,23,30 +2012-09-14 03:00:00,3,0,1,1,22.14,25.76,77,0,5,9,14 +2012-09-14 04:00:00,3,0,1,1,22.14,25.76,77,0,1,11,12 +2012-09-14 05:00:00,3,0,1,1,22.14,25.76,83,0,1,40,41 +2012-09-14 06:00:00,3,0,1,1,22.14,25.76,88,0,8,144,152 +2012-09-14 07:00:00,3,0,1,2,22.96,26.515,88,0,17,437,454 +2012-09-14 08:00:00,3,0,1,2,24.6,28.79,78,11.0014,51,715,766 +2012-09-14 09:00:00,3,0,1,2,25.42,29.545,78,11.0014,46,301,347 +2012-09-14 10:00:00,3,0,1,2,27.88,31.82,65,0,75,171,246 +2012-09-14 11:00:00,3,0,1,2,27.88,31.82,61,7.0015,84,196,280 +2012-09-14 12:00:00,3,0,1,2,28.7,32.575,54,12.998,119,290,409 +2012-09-14 13:00:00,3,0,1,2,28.7,32.575,54,12.998,107,301,408 +2012-09-14 14:00:00,3,0,1,2,29.52,32.575,45,11.0014,113,258,371 +2012-09-14 15:00:00,3,0,1,2,29.52,33.335,48,8.9981,94,273,367 +2012-09-14 16:00:00,3,0,1,2,29.52,33.335,51,0,109,454,563 +2012-09-14 17:00:00,3,0,1,1,29.52,33.335,51,12.998,137,757,894 +2012-09-14 18:00:00,3,0,1,1,29.52,32.575,45,15.0013,116,692,808 +2012-09-14 19:00:00,3,0,1,1,27.88,31.82,57,11.0014,83,496,579 +2012-09-14 20:00:00,3,0,1,1,27.06,31.06,61,7.0015,67,337,404 +2012-09-14 21:00:00,3,0,1,1,26.24,30.305,73,15.0013,42,270,312 +2012-09-14 22:00:00,3,0,1,1,25.42,28.79,83,12.998,40,189,229 +2012-09-14 23:00:00,3,0,1,1,25.42,29.545,78,6.0032,27,168,195 +2012-09-15 00:00:00,3,0,0,1,24.6,28.03,83,7.0015,38,169,207 +2012-09-15 01:00:00,3,0,0,1,24.6,29.545,73,0,8,101,109 +2012-09-15 02:00:00,3,0,0,1,23.78,27.275,78,7.0015,18,75,93 +2012-09-15 03:00:00,3,0,0,1,24.6,29.545,73,16.9979,6,31,37 +2012-09-15 04:00:00,3,0,0,2,24.6,29.545,69,23.9994,3,3,6 +2012-09-15 05:00:00,3,0,0,1,23.78,27.275,60,35.0008,1,15,16 +2012-09-15 06:00:00,3,0,0,1,22.14,25.76,49,27.9993,6,27,33 +2012-09-15 07:00:00,3,0,0,1,22.14,25.76,52,19.0012,10,63,73 +2012-09-15 08:00:00,3,0,0,1,22.96,26.515,49,27.9993,43,169,212 +2012-09-15 09:00:00,3,0,0,1,24.6,31.06,43,27.9993,79,263,342 +2012-09-15 10:00:00,3,0,0,1,25.42,31.06,41,26.0027,119,323,442 +2012-09-15 11:00:00,3,0,0,1,26.24,31.06,38,26.0027,228,399,627 +2012-09-15 12:00:00,3,0,0,1,27.06,31.06,36,23.9994,287,419,706 +2012-09-15 13:00:00,3,0,0,1,27.88,31.82,36,12.998,327,377,704 +2012-09-15 14:00:00,3,0,0,1,27.88,31.82,34,22.0028,325,390,715 +2012-09-15 15:00:00,3,0,0,2,27.88,31.82,34,19.0012,312,342,654 +2012-09-15 16:00:00,3,0,0,2,27.06,31.06,36,15.0013,350,433,783 +2012-09-15 17:00:00,3,0,0,2,27.06,31.06,36,16.9979,295,434,729 +2012-09-15 18:00:00,3,0,0,2,26.24,31.06,36,19.0012,232,382,614 +2012-09-15 19:00:00,3,0,0,1,25.42,31.06,41,11.0014,169,309,478 +2012-09-15 20:00:00,3,0,0,1,24.6,31.06,43,6.0032,89,241,330 +2012-09-15 21:00:00,3,0,0,1,22.96,26.515,52,7.0015,86,210,296 +2012-09-15 22:00:00,3,0,0,1,22.96,26.515,52,0,82,197,279 +2012-09-15 23:00:00,3,0,0,1,22.14,25.76,60,0,47,182,229 +2012-09-16 00:00:00,3,0,0,1,22.14,25.76,64,0,28,123,151 +2012-09-16 01:00:00,3,0,0,1,22.14,25.76,64,0,35,82,117 +2012-09-16 02:00:00,3,0,0,1,21.32,25,63,0,27,62,89 +2012-09-16 03:00:00,3,0,0,1,20.5,24.24,68,0,10,38,48 +2012-09-16 04:00:00,3,0,0,1,20.5,24.24,72,0,2,6,8 +2012-09-16 05:00:00,3,0,0,1,20.5,24.24,72,0,3,10,13 +2012-09-16 06:00:00,3,0,0,1,20.5,24.24,72,0,9,26,35 +2012-09-16 07:00:00,3,0,0,1,20.5,24.24,77,7.0015,28,43,71 +2012-09-16 08:00:00,3,0,0,1,22.14,25.76,64,11.0014,34,94,128 +2012-09-16 09:00:00,3,0,0,1,23.78,27.275,60,8.9981,70,226,296 +2012-09-16 10:00:00,3,0,0,1,25.42,31.06,50,7.0015,160,330,490 +2012-09-16 11:00:00,3,0,0,1,26.24,31.06,47,11.0014,183,376,559 +2012-09-16 12:00:00,3,0,0,1,27.06,31.06,44,11.0014,188,468,656 +2012-09-16 13:00:00,3,0,0,1,26.24,31.06,41,11.0014,240,454,694 +2012-09-16 14:00:00,3,0,0,1,27.06,31.06,39,8.9981,225,410,635 +2012-09-16 15:00:00,3,0,0,1,26.24,31.06,41,11.0014,215,342,557 +2012-09-16 16:00:00,3,0,0,1,26.24,31.06,44,11.0014,194,402,596 +2012-09-16 17:00:00,3,0,0,1,27.06,31.06,41,0,177,393,570 +2012-09-16 18:00:00,3,0,0,1,25.42,31.06,50,11.0014,120,361,481 +2012-09-16 19:00:00,3,0,0,1,25.42,31.06,50,8.9981,91,312,403 +2012-09-16 20:00:00,3,0,0,1,24.6,31.06,53,7.0015,57,267,324 +2012-09-16 21:00:00,3,0,0,1,24.6,31.06,56,7.0015,43,148,191 +2012-09-16 22:00:00,3,0,0,1,22.96,26.515,68,6.0032,18,109,127 +2012-09-16 23:00:00,3,0,0,1,22.14,25.76,68,7.0015,9,85,94 +2012-09-17 00:00:00,3,0,1,1,22.14,25.76,68,11.0014,14,31,45 +2012-09-17 01:00:00,3,0,1,1,21.32,25,72,6.0032,9,12,21 +2012-09-17 02:00:00,3,0,1,1,21.32,25,72,0,5,8,13 +2012-09-17 03:00:00,3,0,1,1,20.5,24.24,77,6.0032,0,7,7 +2012-09-17 04:00:00,3,0,1,1,20.5,24.24,77,0,2,9,11 +2012-09-17 05:00:00,3,0,1,1,19.68,23.485,82,6.0032,1,44,45 +2012-09-17 06:00:00,3,0,1,1,19.68,23.485,82,0,7,157,164 +2012-09-17 07:00:00,3,0,1,1,21.32,25,77,0,18,474,492 +2012-09-17 08:00:00,3,0,1,1,22.14,25.76,77,6.0032,36,647,683 +2012-09-17 09:00:00,3,0,1,1,23.78,27.275,68,8.9981,34,265,299 +2012-09-17 10:00:00,3,0,1,2,25.42,30.305,65,12.998,73,129,202 +2012-09-17 11:00:00,3,0,1,2,25.42,30.305,69,15.0013,61,191,252 +2012-09-17 12:00:00,3,0,1,2,25.42,30.305,69,12.998,62,233,295 +2012-09-17 13:00:00,3,0,1,1,26.24,30.305,65,16.9979,112,231,343 +2012-09-17 14:00:00,3,0,1,2,26.24,30.305,65,16.9979,129,203,332 +2012-09-17 15:00:00,3,0,1,2,26.24,30.305,65,16.9979,82,256,338 +2012-09-17 16:00:00,3,0,1,2,26.24,30.305,69,16.9979,74,379,453 +2012-09-17 17:00:00,3,0,1,2,26.24,30.305,65,15.0013,102,740,842 +2012-09-17 18:00:00,3,0,1,2,25.42,29.545,73,11.0014,66,708,774 +2012-09-17 19:00:00,3,0,1,2,25.42,29.545,73,7.0015,51,435,486 +2012-09-17 20:00:00,3,0,1,2,25.42,29.545,73,8.9981,32,308,340 +2012-09-17 21:00:00,3,0,1,3,25.42,28.79,83,15.0013,28,205,233 +2012-09-17 22:00:00,3,0,1,3,25.42,28.79,83,16.9979,20,109,129 +2012-09-17 23:00:00,3,0,1,3,24.6,25.76,94,16.9979,4,66,70 +2012-09-18 00:00:00,3,0,1,3,24.6,25.76,94,16.9979,2,11,13 +2012-09-18 01:00:00,3,0,1,3,24.6,25.76,94,12.998,0,5,5 +2012-09-18 02:00:00,3,0,1,3,24.6,25.76,94,12.998,0,4,4 +2012-09-18 03:00:00,3,0,1,2,25.42,27.275,94,19.0012,0,6,6 +2012-09-18 04:00:00,3,0,1,2,25.42,27.275,94,23.9994,2,5,7 +2012-09-18 05:00:00,3,0,1,2,26.24,28.79,89,22.0028,3,45,48 +2012-09-18 06:00:00,3,0,1,2,26.24,28.79,89,22.0028,4,163,167 +2012-09-18 07:00:00,3,0,1,2,26.24,28.79,89,30.0026,13,343,356 +2012-09-18 08:00:00,3,0,1,2,27.06,30.305,83,36.9974,32,640,672 +2012-09-18 09:00:00,3,0,1,2,27.06,30.305,83,39.0007,27,266,293 +2012-09-18 10:00:00,3,0,1,3,27.88,31.82,79,43.0006,30,130,160 +2012-09-18 11:00:00,3,0,1,2,27.88,31.82,79,43.0006,36,115,151 +2012-09-18 12:00:00,3,0,1,3,27.88,31.82,83,30.0026,16,72,88 +2012-09-18 13:00:00,3,0,1,2,28.7,33.335,74,39.0007,17,97,114 +2012-09-18 14:00:00,3,0,1,3,24.6,25.76,94,31.0009,27,116,143 +2012-09-18 15:00:00,3,0,1,3,24.6,27.275,88,16.9979,1,35,36 +2012-09-18 16:00:00,3,0,1,3,24.6,27.275,88,19.9995,19,122,141 +2012-09-18 17:00:00,3,0,1,3,24.6,27.275,88,12.998,36,302,338 +2012-09-18 18:00:00,3,0,1,2,24.6,27.275,88,11.0014,19,262,281 +2012-09-18 19:00:00,3,0,1,2,24.6,27.275,88,19.9995,22,302,324 +2012-09-18 20:00:00,3,0,1,2,24.6,27.275,88,12.998,19,271,290 +2012-09-18 21:00:00,3,0,1,2,24.6,27.275,88,12.998,21,186,207 +2012-09-18 22:00:00,3,0,1,3,23.78,27.275,83,31.0009,14,137,151 +2012-09-18 23:00:00,3,0,1,2,22.96,26.515,83,15.0013,11,67,78 +2012-09-19 00:00:00,3,0,1,2,22.96,26.515,68,19.0012,3,23,26 +2012-09-19 01:00:00,3,0,1,2,22.14,25.76,68,16.9979,0,12,12 +2012-09-19 02:00:00,3,0,1,2,22.14,25.76,64,22.0028,0,3,3 +2012-09-19 03:00:00,3,0,1,2,21.32,25,63,16.9979,1,4,5 +2012-09-19 04:00:00,3,0,1,2,21.32,25,68,23.9994,0,10,10 +2012-09-19 05:00:00,3,0,1,2,21.32,25,68,19.0012,2,54,56 +2012-09-19 06:00:00,3,0,1,1,21.32,25,63,16.9979,6,166,172 +2012-09-19 07:00:00,3,0,1,1,21.32,25,63,15.0013,16,529,545 +2012-09-19 08:00:00,3,0,1,1,21.32,25,59,15.0013,39,758,797 +2012-09-19 09:00:00,3,0,1,1,22.14,25.76,60,16.9979,26,336,362 +2012-09-19 10:00:00,3,0,1,1,22.96,26.515,52,12.998,23,169,192 +2012-09-19 11:00:00,3,0,1,1,24.6,31.06,43,16.9979,44,203,247 +2012-09-19 12:00:00,3,0,1,1,24.6,31.06,43,16.9979,53,260,313 +2012-09-19 13:00:00,3,0,1,1,24.6,31.06,40,16.9979,55,234,289 +2012-09-19 14:00:00,3,0,1,1,25.42,31.06,38,16.9979,59,227,286 +2012-09-19 15:00:00,3,0,1,1,25.42,31.06,35,0,57,254,311 +2012-09-19 16:00:00,3,0,1,1,25.42,31.06,35,0,69,397,466 +2012-09-19 17:00:00,3,0,1,1,24.6,31.06,38,15.0013,74,812,886 +2012-09-19 18:00:00,3,0,1,1,23.78,27.275,40,19.0012,85,807,892 +2012-09-19 19:00:00,3,0,1,1,22.96,26.515,43,15.0013,72,539,611 +2012-09-19 20:00:00,3,0,1,1,21.32,25,48,11.0014,31,378,409 +2012-09-19 21:00:00,3,0,1,1,20.5,24.24,59,11.0014,25,324,349 +2012-09-19 22:00:00,3,0,1,1,20.5,24.24,63,6.0032,31,198,229 +2012-09-19 23:00:00,3,0,1,1,19.68,23.485,67,6.0032,17,106,123 +2012-10-01 00:00:00,4,0,1,1,18.86,22.725,72,7.0015,6,39,45 +2012-10-01 01:00:00,4,0,1,1,18.04,21.97,77,6.0032,5,13,18 +2012-10-01 02:00:00,4,0,1,1,18.86,22.725,72,0,6,6,12 +2012-10-01 03:00:00,4,0,1,1,18.04,21.97,77,0,1,6,7 +2012-10-01 04:00:00,4,0,1,1,17.22,21.21,82,7.0015,0,10,10 +2012-10-01 05:00:00,4,0,1,1,18.04,21.97,77,0,2,34,36 +2012-10-01 06:00:00,4,0,1,1,18.04,21.97,77,7.0015,8,147,155 +2012-10-01 07:00:00,4,0,1,1,18.04,21.97,77,11.0014,13,470,483 +2012-10-01 08:00:00,4,0,1,2,18.86,22.725,77,7.0015,40,744,784 +2012-10-01 09:00:00,4,0,1,2,21.32,25,63,0,26,314,340 +2012-10-01 10:00:00,4,0,1,1,22.14,25.76,56,0,44,135,179 +2012-10-01 11:00:00,4,0,1,1,23.78,27.275,46,0,76,196,272 +2012-10-01 12:00:00,4,0,1,2,24.6,31.06,43,11.0014,61,262,323 +2012-10-01 13:00:00,4,0,1,2,24.6,31.06,43,11.0014,80,225,305 +2012-10-01 14:00:00,4,0,1,2,24.6,31.06,43,7.0015,51,193,244 +2012-10-01 15:00:00,4,0,1,2,25.42,31.06,43,8.9981,95,234,329 +2012-10-01 16:00:00,4,0,1,2,25.42,31.06,46,16.9979,51,408,459 +2012-10-01 17:00:00,4,0,1,3,22.96,26.515,60,16.9979,65,791,856 +2012-10-01 18:00:00,4,0,1,3,22.96,26.515,64,7.0015,42,571,613 +2012-10-01 19:00:00,4,0,1,2,22.14,25.76,68,7.0015,33,483,516 +2012-10-01 20:00:00,4,0,1,3,22.14,25.76,68,0,11,251,262 +2012-10-01 21:00:00,4,0,1,2,22.14,25.76,73,8.9981,13,205,218 +2012-10-01 22:00:00,4,0,1,3,22.14,25.76,77,6.0032,17,190,207 +2012-10-01 23:00:00,4,0,1,3,22.14,25.76,77,0,17,88,105 +2012-10-02 00:00:00,4,0,1,2,22.96,26.515,73,0,1,30,31 +2012-10-02 01:00:00,4,0,1,2,22.14,25.76,77,7.0015,0,11,11 +2012-10-02 02:00:00,4,0,1,2,22.14,25.76,77,7.0015,0,2,2 +2012-10-02 03:00:00,4,0,1,2,22.14,25.76,88,12.998,1,4,5 +2012-10-02 04:00:00,4,0,1,2,22.96,26.515,83,6.0032,2,8,10 +2012-10-02 05:00:00,4,0,1,2,22.96,26.515,83,8.9981,1,42,43 +2012-10-02 06:00:00,4,0,1,3,23.78,27.275,83,7.0015,3,176,179 +2012-10-02 07:00:00,4,0,1,3,23.78,27.275,83,7.0015,4,256,260 +2012-10-02 08:00:00,4,0,1,3,24.6,27.275,88,0,6,128,134 +2012-10-02 09:00:00,4,0,1,3,23.78,27.275,88,8.9981,3,83,86 +2012-10-02 10:00:00,4,0,1,3,23.78,27.275,88,8.9981,3,42,45 +2012-10-02 11:00:00,4,0,1,3,23.78,27.275,94,8.9981,7,92,99 +2012-10-02 12:00:00,4,0,1,2,24.6,27.275,88,12.998,6,98,104 +2012-10-02 13:00:00,4,0,1,2,24.6,27.275,88,8.9981,6,148,154 +2012-10-02 14:00:00,4,0,1,3,24.6,27.275,88,8.9981,16,147,163 +2012-10-02 15:00:00,4,0,1,3,25.42,28.79,83,8.9981,14,195,209 +2012-10-02 16:00:00,4,0,1,3,25.42,28.03,88,8.9981,46,328,374 +2012-10-02 17:00:00,4,0,1,3,25.42,28.03,88,7.0015,38,677,715 +2012-10-02 18:00:00,4,0,1,3,25.42,27.275,94,6.0032,48,639,687 +2012-10-02 19:00:00,4,0,1,3,25.42,27.275,94,0,27,368,395 +2012-10-02 20:00:00,4,0,1,3,25.42,27.275,94,8.9981,20,286,306 +2012-10-02 21:00:00,4,0,1,3,25.42,27.275,94,7.0015,24,265,289 +2012-10-02 22:00:00,4,0,1,2,25.42,27.275,94,7.0015,28,212,240 +2012-10-02 23:00:00,4,0,1,2,25.42,27.275,94,0,11,87,98 +2012-10-03 00:00:00,4,0,1,3,25.42,27.275,94,0,5,47,52 +2012-10-03 01:00:00,4,0,1,2,25.42,27.275,94,0,3,16,19 +2012-10-03 02:00:00,4,0,1,2,25.42,27.275,94,0,2,7,9 +2012-10-03 03:00:00,4,0,1,2,24.6,25.76,94,0,0,7,7 +2012-10-03 04:00:00,4,0,1,2,24.6,25,100,0,2,9,11 +2012-10-03 05:00:00,4,0,1,2,25.42,27.275,94,7.0015,2,32,34 +2012-10-03 06:00:00,4,0,1,2,24.6,25.76,94,8.9981,4,173,177 +2012-10-03 07:00:00,4,0,1,2,24.6,25.76,94,12.998,11,504,515 +2012-10-03 08:00:00,4,0,1,2,25.42,28.03,88,7.0015,28,781,809 +2012-10-03 09:00:00,4,0,1,2,25.42,28.79,83,12.998,30,332,362 +2012-10-03 10:00:00,4,0,1,1,27.06,30.305,78,11.0014,29,146,175 +2012-10-03 11:00:00,4,0,1,1,27.06,30.305,78,11.0014,52,178,230 +2012-10-03 12:00:00,4,0,1,2,28.7,32.575,70,7.0015,69,289,358 +2012-10-03 13:00:00,4,0,1,2,28.7,33.335,74,7.0015,55,224,279 +2012-10-03 14:00:00,4,0,1,2,29.52,34.09,70,11.0014,56,195,251 +2012-10-03 15:00:00,4,0,1,2,29.52,34.09,62,11.0014,59,260,319 +2012-10-03 16:00:00,4,0,1,2,29.52,33.335,58,0,42,436,478 +2012-10-03 17:00:00,4,0,1,1,28.7,32.575,65,0,84,833,917 +2012-10-03 18:00:00,4,0,1,1,28.7,32.575,65,0,54,756,810 +2012-10-03 19:00:00,4,0,1,1,28.7,32.575,65,0,49,544,593 +2012-10-03 20:00:00,4,0,1,1,28.7,32.575,65,0,48,449,497 +2012-10-03 21:00:00,4,0,1,2,27.06,31.06,74,0,14,195,209 +2012-10-03 22:00:00,4,0,1,1,27.06,31.06,74,0,9,232,241 +2012-10-03 23:00:00,4,0,1,2,27.06,30.305,78,0,21,199,220 +2012-10-04 00:00:00,4,0,1,3,26.24,28.79,89,0,11,65,76 +2012-10-04 01:00:00,4,0,1,2,25.42,27.275,94,0,2,23,25 +2012-10-04 02:00:00,4,0,1,1,26.24,28.79,89,0,3,10,13 +2012-10-04 03:00:00,4,0,1,2,25.42,28.03,88,0,5,6,11 +2012-10-04 04:00:00,4,0,1,2,26.24,28.79,89,0,0,10,10 +2012-10-04 05:00:00,4,0,1,3,26.24,28.79,89,7.0015,2,37,39 +2012-10-04 06:00:00,4,0,1,3,25.42,27.275,94,6.0032,1,132,133 +2012-10-04 07:00:00,4,0,1,2,26.24,28.79,89,6.0032,12,379,391 +2012-10-04 08:00:00,4,0,1,1,26.24,28.79,89,0,27,711,738 +2012-10-04 09:00:00,4,0,1,2,26.24,28.79,89,12.998,40,319,359 +2012-10-04 10:00:00,4,0,1,2,27.06,30.305,83,8.9981,27,150,177 +2012-10-04 11:00:00,4,0,1,2,28.7,32.575,70,7.0015,38,176,214 +2012-10-04 12:00:00,4,0,1,2,29.52,33.335,54,12.998,57,231,288 +2012-10-04 13:00:00,4,0,1,2,29.52,33.335,58,22.0028,63,231,294 +2012-10-04 14:00:00,4,0,1,1,28.7,32.575,61,16.9979,56,211,267 +2012-10-04 15:00:00,4,0,1,1,29.52,33.335,54,19.0012,77,248,325 +2012-10-04 16:00:00,4,0,1,1,28.7,32.575,54,19.0012,86,411,497 +2012-10-04 17:00:00,4,0,1,1,28.7,32.575,51,15.0013,112,789,901 +2012-10-04 18:00:00,4,0,1,1,27.06,31.06,57,7.0015,75,812,887 +2012-10-04 19:00:00,4,0,1,1,27.06,31.06,57,7.0015,67,467,534 +2012-10-04 20:00:00,4,0,1,1,26.24,30.305,65,7.0015,50,391,441 +2012-10-04 21:00:00,4,0,1,1,25.42,30.305,69,0,33,288,321 +2012-10-04 22:00:00,4,0,1,1,26.24,31.06,47,8.9981,29,203,232 +2012-10-04 23:00:00,4,0,1,1,24.6,31.06,56,6.0032,18,137,155 +2012-10-05 00:00:00,4,0,1,1,22.96,26.515,73,0,16,86,102 +2012-10-05 01:00:00,4,0,1,1,22.14,25.76,68,7.0015,3,43,46 +2012-10-05 02:00:00,4,0,1,1,22.14,25.76,73,6.0032,1,10,11 +2012-10-05 03:00:00,4,0,1,1,22.14,25.76,73,0,5,11,16 +2012-10-05 04:00:00,4,0,1,1,22.14,25.76,77,0,0,11,11 +2012-10-05 05:00:00,4,0,1,1,21.32,25,77,0,0,41,41 +2012-10-05 06:00:00,4,0,1,1,21.32,25,83,0,4,133,137 +2012-10-05 07:00:00,4,0,1,1,21.32,25,83,7.0015,11,417,428 +2012-10-05 08:00:00,4,0,1,1,23.78,27.275,64,0,36,749,785 +2012-10-05 09:00:00,4,0,1,1,24.6,30.305,60,6.0032,58,326,384 +2012-10-05 10:00:00,4,0,1,1,27.06,31.06,54,0,68,192,260 +2012-10-05 11:00:00,4,0,1,1,28.7,32.575,48,12.998,90,214,304 +2012-10-05 12:00:00,4,0,1,1,29.52,32.575,42,11.0014,161,307,468 +2012-10-05 13:00:00,4,0,1,1,28.7,32.575,48,0,117,307,424 +2012-10-05 14:00:00,4,0,1,1,30.34,32.575,37,15.0013,113,287,400 +2012-10-05 15:00:00,4,0,1,1,29.52,32.575,39,16.9979,150,320,470 +2012-10-05 16:00:00,4,0,1,1,29.52,32.575,37,0,153,481,634 +2012-10-05 17:00:00,4,0,1,1,28.7,31.82,42,11.0014,158,742,900 +2012-10-05 18:00:00,4,0,1,1,26.24,31.06,57,8.9981,106,655,761 +2012-10-05 19:00:00,4,0,1,1,25.42,29.545,73,11.0014,67,433,500 +2012-10-05 20:00:00,4,0,1,1,24.6,28.79,78,8.9981,66,306,372 +2012-10-05 21:00:00,4,0,1,1,24.6,29.545,69,15.0013,47,220,267 +2012-10-05 22:00:00,4,0,1,1,24.6,29.545,73,19.0012,63,201,264 +2012-10-05 23:00:00,4,0,1,1,23.78,27.275,78,15.0013,23,148,171 +2012-10-06 00:00:00,4,0,0,1,22.96,26.515,83,11.0014,37,154,191 +2012-10-06 01:00:00,4,0,0,1,22.96,26.515,83,16.9979,25,116,141 +2012-10-06 02:00:00,4,0,0,1,22.96,26.515,78,12.998,13,62,75 +2012-10-06 03:00:00,4,0,0,1,22.14,25.76,77,15.0013,2,54,56 +2012-10-06 04:00:00,4,0,0,1,22.14,25.76,83,16.9979,4,7,11 +2012-10-06 05:00:00,4,0,0,1,22.14,25.76,83,12.998,2,8,10 +2012-10-06 06:00:00,4,0,0,1,22.14,25.76,88,16.9979,2,28,30 +2012-10-06 07:00:00,4,0,0,1,22.14,25.76,83,19.9995,13,71,84 +2012-10-06 08:00:00,4,0,0,1,22.96,26.515,83,12.998,22,184,206 +2012-10-06 09:00:00,4,0,0,1,24.6,29.545,73,12.998,130,265,395 +2012-10-06 10:00:00,4,0,0,1,25.42,30.305,69,19.0012,198,341,539 +2012-10-06 11:00:00,4,0,0,1,26.24,30.305,65,16.9979,258,389,647 +2012-10-06 12:00:00,4,0,0,1,28.7,32.575,54,7.0015,362,381,743 +2012-10-06 13:00:00,4,0,0,2,26.24,31.06,57,35.0008,310,400,710 +2012-10-06 14:00:00,4,0,0,2,24.6,31.06,56,27.9993,269,307,576 +2012-10-06 15:00:00,4,0,0,1,24.6,31.06,46,27.9993,279,341,620 +2012-10-06 16:00:00,4,0,0,1,24.6,31.06,43,35.0008,317,342,659 +2012-10-06 17:00:00,4,0,0,1,22.14,25.76,49,26.0027,268,342,610 +2012-10-06 18:00:00,4,0,0,1,21.32,25,48,27.9993,183,312,495 +2012-10-06 19:00:00,4,0,0,1,19.68,23.485,55,15.0013,102,239,341 +2012-10-06 20:00:00,4,0,0,1,19.68,23.485,55,16.9979,75,172,247 +2012-10-06 21:00:00,4,0,0,1,18.86,22.725,59,8.9981,78,137,215 +2012-10-06 22:00:00,4,0,0,1,18.04,21.97,62,8.9981,45,140,185 +2012-10-06 23:00:00,4,0,0,1,18.04,21.97,62,8.9981,37,142,179 +2012-10-07 00:00:00,4,0,0,1,18.04,21.97,62,11.0014,28,99,127 +2012-10-07 01:00:00,4,0,0,1,18.04,21.97,54,15.0013,29,80,109 +2012-10-07 02:00:00,4,0,0,1,17.22,21.21,62,8.9981,10,64,74 +2012-10-07 03:00:00,4,0,0,2,18.04,21.97,62,8.9981,5,17,22 +2012-10-07 04:00:00,4,0,0,2,18.04,21.97,54,16.9979,5,6,11 +2012-10-07 05:00:00,4,0,0,2,18.04,21.97,54,8.9981,2,8,10 +2012-10-07 06:00:00,4,0,0,2,18.04,21.97,54,12.998,4,19,23 +2012-10-07 07:00:00,4,0,0,3,17.22,21.21,58,11.0014,6,29,35 +2012-10-07 08:00:00,4,0,0,3,17.22,21.21,67,8.9981,11,51,62 +2012-10-07 09:00:00,4,0,0,3,16.4,20.455,71,8.9981,16,70,86 +2012-10-07 10:00:00,4,0,0,2,17.22,21.21,67,12.998,41,144,185 +2012-10-07 11:00:00,4,0,0,2,17.22,21.21,71,7.0015,76,260,336 +2012-10-07 12:00:00,4,0,0,2,17.22,21.21,71,0,100,292,392 +2012-10-07 13:00:00,4,0,0,2,18.04,21.97,72,6.0032,80,240,320 +2012-10-07 14:00:00,4,0,0,2,18.04,21.97,67,0,71,243,314 +2012-10-07 15:00:00,4,0,0,3,17.22,21.21,77,8.9981,74,232,306 +2012-10-07 16:00:00,4,0,0,3,16.4,20.455,82,11.0014,87,246,333 +2012-10-07 17:00:00,4,0,0,3,16.4,20.455,82,15.0013,35,122,157 +2012-10-07 18:00:00,4,0,0,3,16.4,20.455,82,12.998,24,82,106 +2012-10-07 19:00:00,4,0,0,2,16.4,20.455,82,7.0015,17,97,114 +2012-10-07 20:00:00,4,0,0,1,16.4,20.455,82,8.9981,19,97,116 +2012-10-07 21:00:00,4,0,0,1,15.58,19.695,87,7.0015,22,91,113 +2012-10-07 22:00:00,4,0,0,1,15.58,19.695,87,8.9981,7,72,79 +2012-10-07 23:00:00,4,0,0,1,14.76,17.425,93,8.9981,12,68,80 +2012-10-08 00:00:00,4,1,0,1,15.58,19.695,76,19.0012,7,44,51 +2012-10-08 01:00:00,4,1,0,1,13.94,16.665,87,11.0014,2,35,37 +2012-10-08 02:00:00,4,1,0,1,13.94,16.665,81,12.998,3,12,15 +2012-10-08 03:00:00,4,1,0,1,13.94,17.425,81,7.0015,2,8,10 +2012-10-08 04:00:00,4,1,0,1,13.12,16.665,87,8.9981,1,6,7 +2012-10-08 05:00:00,4,1,0,1,13.94,15.91,76,15.0013,2,17,19 +2012-10-08 06:00:00,4,1,0,1,13.94,17.425,76,7.0015,5,54,59 +2012-10-08 07:00:00,4,1,0,2,13.94,16.665,76,11.0014,3,151,154 +2012-10-08 08:00:00,4,1,0,2,14.76,17.425,71,15.0013,23,374,397 +2012-10-08 09:00:00,4,1,0,2,15.58,19.695,66,11.0014,59,273,332 +2012-10-08 10:00:00,4,1,0,2,15.58,19.695,68,8.9981,69,229,298 +2012-10-08 11:00:00,4,1,0,2,16.4,20.455,62,6.0032,72,236,308 +2012-10-08 12:00:00,4,1,0,2,17.22,21.21,63,11.0014,74,267,341 +2012-10-08 13:00:00,4,1,0,2,17.22,21.21,62,12.998,82,323,405 +2012-10-08 14:00:00,4,1,0,2,17.22,21.21,58,7.0015,121,299,420 +2012-10-08 15:00:00,4,1,0,3,17.22,21.21,58,12.998,76,294,370 +2012-10-08 16:00:00,4,1,0,3,17.22,21.21,58,12.998,61,316,377 +2012-10-08 17:00:00,4,1,0,2,17.22,21.21,66,16.9979,81,416,497 +2012-10-08 18:00:00,4,1,0,2,17.22,21.21,66,19.0012,41,415,456 +2012-10-08 19:00:00,4,1,0,2,16.4,20.455,71,16.9979,38,333,371 +2012-10-08 20:00:00,4,1,0,3,16.4,20.455,71,15.0013,20,207,227 +2012-10-08 21:00:00,4,1,0,2,16.4,20.455,76,15.0013,17,134,151 +2012-10-08 22:00:00,4,1,0,3,16.4,20.455,76,16.9979,6,101,107 +2012-10-08 23:00:00,4,1,0,2,16.4,20.455,71,15.0013,9,60,69 +2012-10-09 00:00:00,4,0,1,2,15.58,19.695,82,15.0013,9,22,31 +2012-10-09 01:00:00,4,0,1,3,14.76,17.425,87,15.0013,0,13,13 +2012-10-09 02:00:00,4,0,1,3,14.76,16.665,87,16.9979,2,5,7 +2012-10-09 03:00:00,4,0,1,3,14.76,16.665,87,19.0012,0,3,3 +2012-10-09 04:00:00,4,0,1,3,14.76,17.425,87,11.0014,1,6,7 +2012-10-09 05:00:00,4,0,1,2,15.58,19.695,82,12.998,0,19,19 +2012-10-09 06:00:00,4,0,1,2,15.58,19.695,82,16.9979,2,141,143 +2012-10-09 07:00:00,4,0,1,1,15.58,19.695,83,16.9979,5,357,362 +2012-10-09 08:00:00,4,0,1,2,17.22,21.21,80,12.998,15,698,713 +2012-10-09 09:00:00,4,0,1,2,17.22,21.21,77,15.0013,37,345,382 +2012-10-09 10:00:00,4,0,1,2,18.04,21.97,75,15.0013,33,131,164 +2012-10-09 11:00:00,4,0,1,2,19.68,23.485,69,12.998,37,156,193 +2012-10-09 12:00:00,4,0,1,2,19.68,23.485,69,12.998,43,217,260 +2012-10-09 13:00:00,4,0,1,2,20.5,24.24,67,8.9981,54,184,238 +2012-10-09 14:00:00,4,0,1,2,22.14,25.76,64,12.998,43,201,244 +2012-10-09 15:00:00,4,0,1,2,21.32,25,63,11.0014,59,195,254 +2012-10-09 16:00:00,4,0,1,2,20.5,24.24,72,11.0014,70,354,424 +2012-10-09 17:00:00,4,0,1,2,21.32,25,68,11.0014,73,733,806 +2012-10-09 18:00:00,4,0,1,2,20.5,24.24,72,15.0013,26,758,784 +2012-10-09 19:00:00,4,0,1,2,20.5,24.24,72,11.0014,31,483,514 +2012-10-09 20:00:00,4,0,1,2,20.5,24.24,72,11.0014,30,330,360 +2012-10-09 21:00:00,4,0,1,2,19.68,23.485,77,8.9981,16,209,225 +2012-10-09 22:00:00,4,0,1,2,19.68,23.485,77,6.0032,7,155,162 +2012-10-09 23:00:00,4,0,1,2,19.68,23.485,77,6.0032,8,76,84 +2012-10-10 00:00:00,4,0,1,2,18.86,22.725,88,6.0032,0,33,33 +2012-10-10 01:00:00,4,0,1,2,18.86,22.725,88,0,2,6,8 +2012-10-10 02:00:00,4,0,1,2,18.86,22.725,88,0,2,6,8 +2012-10-10 03:00:00,4,0,1,2,18.86,22.725,88,0,0,6,6 +2012-10-10 04:00:00,4,0,1,2,18.86,22.725,88,7.0015,0,6,6 +2012-10-10 05:00:00,4,0,1,2,18.86,22.725,88,6.0032,2,38,40 +2012-10-10 06:00:00,4,0,1,2,18.86,22.725,88,6.0032,3,172,175 +2012-10-10 07:00:00,4,0,1,1,18.86,22.725,82,7.0015,9,498,507 +2012-10-10 08:00:00,4,0,1,1,20.5,24.24,77,11.0014,33,806,839 +2012-10-10 09:00:00,4,0,1,1,22.14,25.76,60,19.0012,35,331,366 +2012-10-10 10:00:00,4,0,1,1,22.96,26.515,52,19.9995,27,190,217 +2012-10-10 11:00:00,4,0,1,1,22.14,25.76,52,12.998,53,238,291 +2012-10-10 12:00:00,4,0,1,1,22.14,25.76,56,15.0013,78,312,390 +2012-10-10 13:00:00,4,0,1,1,22.96,26.515,49,0,60,237,297 +2012-10-10 14:00:00,4,0,1,1,24.6,31.06,40,11.0014,63,208,271 +2012-10-10 15:00:00,4,0,1,1,24.6,31.06,40,11.0014,58,261,319 +2012-10-10 16:00:00,4,0,1,1,24.6,31.06,40,15.0013,92,474,566 +2012-10-10 17:00:00,4,0,1,1,23.78,27.275,43,15.0013,91,857,948 +2012-10-10 18:00:00,4,0,1,2,22.96,26.515,49,11.0014,57,787,844 +2012-10-10 19:00:00,4,0,1,2,22.96,26.515,46,39.0007,32,534,566 +2012-10-10 20:00:00,4,0,1,1,21.32,25,48,32.9975,21,371,392 +2012-10-10 21:00:00,4,0,1,1,20.5,24.24,51,23.9994,18,251,269 +2012-10-10 22:00:00,4,0,1,1,18.86,22.725,55,19.9995,27,170,197 +2012-10-10 23:00:00,4,0,1,1,18.04,21.97,58,12.998,17,119,136 +2012-10-11 00:00:00,4,0,1,1,18.04,21.97,51,8.9981,1,41,42 +2012-10-11 01:00:00,4,0,1,1,18.04,21.97,47,12.998,1,10,11 +2012-10-11 02:00:00,4,0,1,1,17.22,21.21,50,8.9981,4,7,11 +2012-10-11 03:00:00,4,0,1,1,17.22,21.21,47,19.9995,0,3,3 +2012-10-11 04:00:00,4,0,1,1,16.4,20.455,50,16.9979,0,10,10 +2012-10-11 05:00:00,4,0,1,1,14.76,17.425,50,11.0014,0,42,42 +2012-10-11 06:00:00,4,0,1,1,14.76,17.425,50,11.0014,1,158,159 +2012-10-11 07:00:00,4,0,1,1,14.76,16.665,50,16.9979,11,467,478 +2012-10-11 08:00:00,4,0,1,1,15.58,19.695,46,26.0027,25,773,798 +2012-10-11 09:00:00,4,0,1,1,16.4,20.455,43,26.0027,27,328,355 +2012-10-11 10:00:00,4,0,1,1,18.04,21.97,41,23.9994,39,165,204 +2012-10-11 11:00:00,4,0,1,1,18.86,22.725,36,0,76,175,251 +2012-10-11 12:00:00,4,0,1,1,18.86,22.725,36,0,47,279,326 +2012-10-11 13:00:00,4,0,1,1,20.5,24.24,31,7.0015,48,243,291 +2012-10-11 14:00:00,4,0,1,1,21.32,25,32,6.0032,78,270,348 +2012-10-11 15:00:00,4,0,1,1,21.32,25,34,11.0014,102,358,460 +2012-10-11 16:00:00,4,0,1,1,20.5,24.24,36,8.9981,68,413,481 +2012-10-11 17:00:00,4,0,1,1,20.5,24.24,39,19.0012,90,737,827 +2012-10-11 18:00:00,4,0,1,1,18.86,22.725,44,11.0014,64,628,692 +2012-10-11 19:00:00,4,0,1,1,18.04,21.97,51,8.9981,81,662,743 +2012-10-11 20:00:00,4,0,1,1,17.22,21.21,62,11.0014,27,388,415 +2012-10-11 21:00:00,4,0,1,1,17.22,21.21,62,8.9981,24,236,260 +2012-10-11 22:00:00,4,0,1,1,16.4,20.455,66,11.0014,10,167,177 +2012-10-11 23:00:00,4,0,1,1,17.22,21.21,58,6.0032,10,176,186 +2012-10-12 00:00:00,4,0,1,1,16.4,20.455,66,7.0015,8,60,68 +2012-10-12 01:00:00,4,0,1,1,16.4,20.455,66,6.0032,8,29,37 +2012-10-12 02:00:00,4,0,1,1,16.4,20.455,66,6.0032,0,16,16 +2012-10-12 03:00:00,4,0,1,1,14.76,18.18,76,6.0032,0,6,6 +2012-10-12 04:00:00,4,0,1,1,14.76,18.18,76,7.0015,0,8,8 +2012-10-12 05:00:00,4,0,1,1,14.76,18.18,81,6.0032,2,33,35 +2012-10-12 06:00:00,4,0,1,1,13.94,17.425,81,6.0032,3,140,143 +2012-10-12 07:00:00,4,0,1,1,14.76,18.18,81,6.0032,8,384,392 +2012-10-12 08:00:00,4,0,1,1,17.22,21.21,71,6.0032,34,711,745 +2012-10-12 09:00:00,4,0,1,1,20.5,24.24,39,19.9995,26,374,400 +2012-10-12 10:00:00,4,0,1,1,21.32,25,36,19.9995,75,200,275 +2012-10-12 11:00:00,4,0,1,1,22.14,25.76,37,23.9994,61,252,313 +2012-10-12 12:00:00,4,0,1,1,22.14,25.76,39,31.0009,75,312,387 +2012-10-12 13:00:00,4,0,1,1,22.96,26.515,37,26.0027,81,300,381 +2012-10-12 14:00:00,4,0,1,1,22.96,26.515,37,31.0009,109,262,371 +2012-10-12 15:00:00,4,0,1,1,21.32,25,42,30.0026,138,317,455 +2012-10-12 16:00:00,4,0,1,1,18.86,22.725,41,23.9994,108,412,520 +2012-10-12 17:00:00,4,0,1,1,18.86,22.725,38,26.0027,131,706,837 +2012-10-12 18:00:00,4,0,1,1,18.04,21.97,38,19.9995,76,566,642 +2012-10-12 19:00:00,4,0,1,1,17.22,21.21,41,15.0013,40,453,493 +2012-10-12 20:00:00,4,0,1,1,17.22,21.21,47,8.9981,28,280,308 +2012-10-12 21:00:00,4,0,1,1,16.4,20.455,54,12.998,21,169,190 +2012-10-12 22:00:00,4,0,1,1,16.4,20.455,47,19.9995,17,143,160 +2012-10-12 23:00:00,4,0,1,1,14.76,17.425,57,12.998,11,89,100 +2012-10-13 00:00:00,4,0,0,1,14.76,18.18,57,6.0032,31,218,249 +2012-10-13 01:00:00,4,0,0,1,13.94,16.665,53,8.9981,23,123,146 +2012-10-13 02:00:00,4,0,0,1,13.94,16.665,53,12.998,7,60,67 +2012-10-13 03:00:00,4,0,0,1,13.12,15.15,66,15.0013,2,13,15 +2012-10-13 04:00:00,4,0,0,1,12.3,15.15,65,11.0014,2,9,11 +2012-10-13 05:00:00,4,0,0,1,12.3,14.395,61,12.998,0,11,11 +2012-10-13 06:00:00,4,0,0,1,12.3,14.395,61,12.998,5,23,28 +2012-10-13 07:00:00,4,0,0,1,12.3,15.15,61,11.0014,10,60,70 +2012-10-13 08:00:00,4,0,0,1,13.94,17.425,53,7.0015,23,151,174 +2012-10-13 09:00:00,4,0,0,1,14.76,18.18,50,6.0032,46,220,266 +2012-10-13 10:00:00,4,0,0,1,16.4,20.455,43,0,82,265,347 +2012-10-13 11:00:00,4,0,0,1,17.22,21.21,35,8.9981,192,335,527 +2012-10-13 12:00:00,4,0,0,1,18.04,21.97,35,0,202,371,573 +2012-10-13 13:00:00,4,0,0,1,18.86,22.725,36,12.998,235,435,670 +2012-10-13 14:00:00,4,0,0,1,19.68,23.485,33,12.998,243,354,597 +2012-10-13 15:00:00,4,0,0,1,20.5,24.24,36,12.998,251,364,615 +2012-10-13 16:00:00,4,0,0,1,20.5,24.24,31,12.998,294,343,637 +2012-10-13 17:00:00,4,0,0,1,18.86,22.725,38,11.0014,193,335,528 +2012-10-13 18:00:00,4,0,0,1,18.86,22.725,44,8.9981,174,299,473 +2012-10-13 19:00:00,4,0,0,1,18.04,21.97,44,11.0014,73,259,332 +2012-10-13 20:00:00,4,0,0,1,16.4,20.455,54,6.0032,57,198,255 +2012-10-13 21:00:00,4,0,0,1,16.4,20.455,58,12.998,47,157,204 +2012-10-13 22:00:00,4,0,0,1,16.4,20.455,62,0,33,156,189 +2012-10-13 23:00:00,4,0,0,1,17.22,21.21,58,19.9995,27,98,125 +2012-10-14 00:00:00,4,0,0,1,16.4,20.455,71,16.9979,8,103,111 +2012-10-14 01:00:00,4,0,0,1,17.22,21.21,77,19.0012,16,96,112 +2012-10-14 02:00:00,4,0,0,1,16.4,20.455,76,6.0032,8,58,66 +2012-10-14 03:00:00,4,0,0,1,17.22,21.21,77,19.9995,3,25,28 +2012-10-14 04:00:00,4,0,0,1,17.22,21.21,77,19.0012,2,10,12 +2012-10-14 05:00:00,4,0,0,1,16.4,20.455,82,12.998,5,6,11 +2012-10-14 06:00:00,4,0,0,1,16.4,20.455,82,11.0014,4,20,24 +2012-10-14 07:00:00,4,0,0,1,17.22,21.21,82,15.0013,7,44,51 +2012-10-14 08:00:00,4,0,0,1,18.04,21.97,77,12.998,28,104,132 +2012-10-14 09:00:00,4,0,0,2,19.68,23.485,67,19.0012,62,161,223 +2012-10-14 10:00:00,4,0,0,1,22.14,25.76,56,12.998,150,278,428 +2012-10-14 11:00:00,4,0,0,1,22.96,26.515,52,19.9995,156,338,494 +2012-10-14 12:00:00,4,0,0,1,25.42,31.06,46,22.0028,200,362,562 +2012-10-14 13:00:00,4,0,0,1,26.24,31.06,41,30.0026,218,401,619 +2012-10-14 14:00:00,4,0,0,1,27.06,31.06,39,27.9993,249,368,617 +2012-10-14 15:00:00,4,0,0,1,27.06,31.06,39,27.9993,213,355,568 +2012-10-14 16:00:00,4,0,0,1,26.24,31.06,41,19.9995,203,378,581 +2012-10-14 17:00:00,4,0,0,1,26.24,31.06,44,12.998,193,346,539 +2012-10-14 18:00:00,4,0,0,1,23.78,27.275,60,16.9979,134,319,453 +2012-10-14 19:00:00,4,0,0,1,22.96,26.515,64,15.0013,68,268,336 +2012-10-14 20:00:00,4,0,0,1,22.14,25.76,73,15.0013,48,198,246 +2012-10-14 21:00:00,4,0,0,1,22.96,26.515,73,30.0026,40,156,196 +2012-10-14 22:00:00,4,0,0,1,22.96,26.515,73,26.0027,38,87,125 +2012-10-14 23:00:00,4,0,0,2,22.96,26.515,68,19.0012,27,78,105 +2012-10-15 00:00:00,4,0,1,2,22.96,26.515,73,16.9979,17,31,48 +2012-10-15 01:00:00,4,0,1,2,23.78,27.275,64,26.0027,5,24,29 +2012-10-15 02:00:00,4,0,1,2,23.78,27.275,64,23.9994,1,5,6 +2012-10-15 03:00:00,4,0,1,2,22.96,26.515,73,16.9979,2,2,4 +2012-10-15 04:00:00,4,0,1,2,22.96,26.515,68,15.0013,1,9,10 +2012-10-15 05:00:00,4,0,1,2,22.96,26.515,73,19.0012,2,38,40 +2012-10-15 06:00:00,4,0,1,2,22.96,26.515,73,19.9995,6,141,147 +2012-10-15 07:00:00,4,0,1,2,23.78,27.275,68,22.0028,15,461,476 +2012-10-15 08:00:00,4,0,1,2,24.6,30.305,64,26.0027,24,713,737 +2012-10-15 09:00:00,4,0,1,3,24.6,29.545,69,26.0027,31,328,359 +2012-10-15 10:00:00,4,0,1,2,24.6,29.545,73,26.0027,43,125,168 +2012-10-15 11:00:00,4,0,1,2,24.6,29.545,73,26.0027,88,175,263 +2012-10-15 12:00:00,4,0,1,3,24.6,28.79,78,22.0028,73,211,284 +2012-10-15 13:00:00,4,0,1,2,22.96,26.515,88,15.0013,37,109,146 +2012-10-15 14:00:00,4,0,1,2,24.6,28.79,78,19.0012,57,128,185 +2012-10-15 15:00:00,4,0,1,1,24.6,28.79,78,22.0028,70,190,260 +2012-10-15 16:00:00,4,0,1,1,22.96,26.515,64,19.9995,76,371,447 +2012-10-15 17:00:00,4,0,1,1,22.96,26.515,64,16.9979,96,670,766 +2012-10-15 18:00:00,4,0,1,3,22.14,25.76,77,8.9981,52,540,592 +2012-10-15 19:00:00,4,0,1,3,21.32,25,83,6.0032,12,227,239 +2012-10-15 20:00:00,4,0,1,2,21.32,25,72,26.0027,19,237,256 +2012-10-15 21:00:00,4,0,1,1,21.32,25,59,22.0028,16,190,206 +2012-10-15 22:00:00,4,0,1,1,20.5,24.24,59,19.0012,8,118,126 +2012-10-15 23:00:00,4,0,1,1,18.86,22.725,63,15.0013,9,72,81 +2012-10-16 00:00:00,4,0,1,1,18.86,22.725,63,26.0027,3,45,48 +2012-10-16 01:00:00,4,0,1,1,18.04,21.97,67,12.998,4,9,13 +2012-10-16 02:00:00,4,0,1,1,18.04,21.97,67,8.9981,2,1,3 +2012-10-16 03:00:00,4,0,1,1,17.22,21.21,67,7.0015,0,2,2 +2012-10-16 04:00:00,4,0,1,1,17.22,21.21,67,11.0014,0,7,7 +2012-10-16 05:00:00,4,0,1,1,17.22,21.21,67,16.9979,5,47,52 +2012-10-16 06:00:00,4,0,1,1,17.22,21.21,67,11.0014,4,168,172 +2012-10-16 07:00:00,4,0,1,1,17.22,21.21,67,6.0032,20,505,525 +2012-10-16 08:00:00,4,0,1,1,18.04,21.97,62,0,35,800,835 +2012-10-16 09:00:00,4,0,1,1,19.68,23.485,55,16.9979,32,323,355 +2012-10-16 10:00:00,4,0,1,1,20.5,24.24,48,19.0012,65,157,222 +2012-10-16 11:00:00,4,0,1,1,20.5,24.24,45,27.9993,56,172,228 +2012-10-16 12:00:00,4,0,1,2,21.32,25,45,22.0028,69,256,325 +2012-10-16 13:00:00,4,0,1,1,21.32,25,45,19.0012,68,260,328 +2012-10-16 14:00:00,4,0,1,1,22.14,25.76,39,16.9979,94,214,308 +2012-10-16 15:00:00,4,0,1,1,22.14,25.76,41,22.0028,76,270,346 +2012-10-16 16:00:00,4,0,1,1,22.14,25.76,39,19.0012,79,367,446 +2012-10-16 17:00:00,4,0,1,1,21.32,25,39,12.998,104,839,943 +2012-10-16 18:00:00,4,0,1,1,20.5,24.24,42,11.0014,71,767,838 +2012-10-16 19:00:00,4,0,1,1,19.68,23.485,48,0,40,491,531 +2012-10-16 20:00:00,4,0,1,1,18.86,22.725,55,0,35,397,432 +2012-10-16 21:00:00,4,0,1,1,18.86,22.725,63,0,19,176,195 +2012-10-16 22:00:00,4,0,1,1,16.4,20.455,71,6.0032,18,163,181 +2012-10-16 23:00:00,4,0,1,1,16.4,20.455,71,0,23,176,199 +2012-10-17 00:00:00,4,0,1,1,15.58,19.695,76,0,1,48,49 +2012-10-17 01:00:00,4,0,1,1,15.58,19.695,76,0,3,14,17 +2012-10-17 02:00:00,4,0,1,1,15.58,19.695,76,0,4,12,16 +2012-10-17 03:00:00,4,0,1,1,14.76,18.94,87,0,0,7,7 +2012-10-17 04:00:00,4,0,1,1,14.76,18.18,81,6.0032,0,4,4 +2012-10-17 05:00:00,4,0,1,2,14.76,18.94,81,0,2,39,41 +2012-10-17 06:00:00,4,0,1,1,15.58,19.695,82,0,7,171,178 +2012-10-17 07:00:00,4,0,1,1,14.76,18.18,81,7.0015,15,449,464 +2012-10-17 08:00:00,4,0,1,2,16.4,20.455,76,0,38,779,817 +2012-10-17 09:00:00,4,0,1,2,17.22,21.21,77,0,38,344,382 +2012-10-17 10:00:00,4,0,1,2,18.86,22.725,67,0,60,168,228 +2012-10-17 11:00:00,4,0,1,2,20.5,24.24,51,6.0032,78,156,234 +2012-10-17 12:00:00,4,0,1,2,21.32,25,48,11.0014,71,261,332 +2012-10-17 13:00:00,4,0,1,2,22.14,25.76,49,8.9981,73,237,310 +2012-10-17 14:00:00,4,0,1,2,22.96,26.515,43,11.0014,82,188,270 +2012-10-17 15:00:00,4,0,1,2,23.78,27.275,43,15.0013,62,239,301 +2012-10-17 16:00:00,4,0,1,1,22.96,26.515,52,12.998,70,396,466 +2012-10-17 17:00:00,4,0,1,1,22.14,25.76,56,7.0015,122,766,888 +2012-10-17 18:00:00,4,0,1,1,21.32,25,59,11.0014,90,794,884 +2012-10-17 19:00:00,4,0,1,1,20.5,24.24,72,12.998,49,467,516 +2012-10-17 20:00:00,4,0,1,1,20.5,24.24,72,8.9981,54,360,414 +2012-10-17 21:00:00,4,0,1,1,18.86,22.725,82,12.998,28,301,329 +2012-10-17 22:00:00,4,0,1,1,18.86,22.725,88,16.9979,17,198,215 +2012-10-17 23:00:00,4,0,1,1,18.86,22.725,88,15.0013,15,84,99 +2012-10-18 00:00:00,4,0,1,1,18.86,22.725,88,12.998,4,53,57 +2012-10-18 01:00:00,4,0,1,1,18.86,22.725,82,15.0013,0,14,14 +2012-10-18 02:00:00,4,0,1,1,18.86,22.725,82,12.998,1,13,14 +2012-10-18 03:00:00,4,0,1,1,18.04,21.97,88,15.0013,0,5,5 +2012-10-18 04:00:00,4,0,1,1,18.04,21.97,88,15.0013,0,5,5 +2012-10-18 05:00:00,4,0,1,1,18.04,21.97,82,15.0013,1,41,42 +2012-10-18 06:00:00,4,0,1,1,18.04,21.97,88,19.9995,3,150,153 +2012-10-18 07:00:00,4,0,1,1,18.04,21.97,88,16.9979,20,488,508 +2012-10-18 08:00:00,4,0,1,1,18.86,22.725,82,16.9979,31,803,834 +2012-10-18 09:00:00,4,0,1,2,20.5,24.24,77,11.0014,41,346,387 +2012-10-18 10:00:00,4,0,1,2,21.32,25,68,15.0013,60,158,218 +2012-10-18 11:00:00,4,0,1,2,22.96,26.515,56,15.0013,79,189,268 +2012-10-18 12:00:00,4,0,1,2,24.6,31.06,53,16.9979,93,284,377 +2012-10-18 13:00:00,4,0,1,1,25.42,31.06,53,23.9994,96,236,332 +2012-10-18 14:00:00,4,0,1,2,25.42,31.06,50,19.9995,94,191,285 +2012-10-18 15:00:00,4,0,1,2,24.6,30.305,60,12.998,69,284,353 +2012-10-18 16:00:00,4,0,1,1,24.6,31.06,56,19.0012,94,356,450 +2012-10-18 17:00:00,4,0,1,2,23.78,27.275,64,22.0028,102,788,890 +2012-10-18 18:00:00,4,0,1,2,22.96,26.515,64,22.0028,68,720,788 +2012-10-18 19:00:00,4,0,1,2,22.96,26.515,68,19.9995,42,471,513 +2012-10-18 20:00:00,4,0,1,2,22.96,26.515,68,16.9979,39,348,387 +2012-10-18 21:00:00,4,0,1,2,22.14,25.76,77,12.998,38,245,283 +2012-10-18 22:00:00,4,0,1,2,22.14,25.76,83,12.998,27,202,229 +2012-10-18 23:00:00,4,0,1,2,22.14,25.76,83,0,6,111,117 +2012-10-19 00:00:00,4,0,1,2,22.96,26.515,83,7.0015,5,51,56 +2012-10-19 01:00:00,4,0,1,3,22.14,25.76,88,0,4,12,16 +2012-10-19 02:00:00,4,0,1,2,22.14,25.76,88,0,1,9,10 +2012-10-19 03:00:00,4,0,1,2,22.96,26.515,83,0,0,5,5 +2012-10-19 04:00:00,4,0,1,2,22.96,26.515,83,0,1,5,6 +2012-10-19 05:00:00,4,0,1,2,22.14,25.76,88,0,1,35,36 +2012-10-19 06:00:00,4,0,1,3,22.14,25.76,94,11.0014,5,126,131 +2012-10-19 07:00:00,4,0,1,3,22.14,25.76,94,0,5,149,154 +2012-10-19 08:00:00,4,0,1,2,22.14,25.76,94,7.0015,20,447,467 +2012-10-19 09:00:00,4,0,1,2,22.14,25.76,94,7.0015,26,363,389 +2012-10-19 10:00:00,4,0,1,2,23.78,27.275,88,12.998,26,198,224 +2012-10-19 11:00:00,4,0,1,1,24.6,28.03,83,12.998,41,211,252 +2012-10-19 12:00:00,4,0,1,1,26.24,30.305,69,15.0013,74,258,332 +2012-10-19 13:00:00,4,0,1,1,25.42,29.545,73,15.0013,87,288,375 +2012-10-19 14:00:00,4,0,1,1,27.06,31.06,61,16.9979,88,277,365 +2012-10-19 15:00:00,4,0,1,1,26.24,30.305,65,19.9995,93,302,395 +2012-10-19 16:00:00,4,0,1,3,25.42,30.305,69,23.9994,131,434,565 +2012-10-19 17:00:00,4,0,1,3,25.42,30.305,69,23.9994,48,377,425 +2012-10-19 18:00:00,4,0,1,1,22.96,26.515,83,7.0015,21,212,233 +2012-10-19 19:00:00,4,0,1,1,22.14,25.76,88,11.0014,19,213,232 +2012-10-19 20:00:00,4,0,1,1,21.32,25,77,12.998,13,216,229 +2012-10-19 21:00:00,4,0,1,1,20.5,24.24,77,0,17,189,206 +2012-10-19 22:00:00,4,0,1,1,20.5,24.24,77,6.0032,14,176,190 +2012-10-19 23:00:00,4,0,1,1,18.86,22.725,88,7.0015,13,118,131 +2012-11-01 00:00:00,4,0,1,1,14.76,18.18,57,6.0032,8,52,60 +2012-11-01 01:00:00,4,0,1,1,12.3,15.91,75,7.0015,8,22,30 +2012-11-01 02:00:00,4,0,1,1,13.12,16.665,66,8.9981,10,10,20 +2012-11-01 03:00:00,4,0,1,1,13.94,16.665,61,8.9981,5,10,15 +2012-11-01 04:00:00,4,0,1,2,13.94,17.425,66,7.0015,2,8,10 +2012-11-01 05:00:00,4,0,1,1,13.94,16.665,66,8.9981,1,39,40 +2012-11-01 06:00:00,4,0,1,1,13.94,16.665,61,11.0014,2,146,148 +2012-11-01 07:00:00,4,0,1,2,14.76,17.425,57,11.0014,6,414,420 +2012-11-01 08:00:00,4,0,1,2,14.76,18.94,56,7.0015,12,668,680 +2012-11-01 09:00:00,4,0,1,3,14.76,18.18,57,7.0015,21,310,331 +2012-11-01 10:00:00,4,0,1,3,14.76,17.425,62,12.998,13,133,146 +2012-11-01 11:00:00,4,0,1,3,14.76,17.425,62,12.998,14,156,170 +2012-11-01 12:00:00,4,0,1,3,15.58,19.695,62,11.0014,23,198,221 +2012-11-01 13:00:00,4,0,1,2,16.4,20.455,58,11.0014,49,199,248 +2012-11-01 14:00:00,4,0,1,2,16.4,20.455,50,15.0013,31,154,185 +2012-11-01 15:00:00,4,0,1,2,16.4,20.455,54,11.0014,35,179,214 +2012-11-01 16:00:00,4,0,1,2,16.4,20.455,54,11.0014,31,313,344 +2012-11-01 17:00:00,4,0,1,3,16.4,20.455,50,15.0013,37,652,689 +2012-11-01 18:00:00,4,0,1,2,16.4,20.455,50,11.0014,50,628,678 +2012-11-01 19:00:00,4,0,1,2,16.4,20.455,50,11.0014,28,424,452 +2012-11-01 20:00:00,4,0,1,2,15.58,19.695,54,16.9979,16,280,296 +2012-11-01 21:00:00,4,0,1,2,15.58,19.695,54,8.9981,29,238,267 +2012-11-01 22:00:00,4,0,1,1,14.76,17.425,57,11.0014,27,175,202 +2012-11-01 23:00:00,4,0,1,1,13.94,16.665,57,11.0014,8,112,120 +2012-11-02 00:00:00,4,0,1,1,13.94,16.665,57,11.0014,10,40,50 +2012-11-02 01:00:00,4,0,1,1,13.12,15.91,66,11.0014,5,19,24 +2012-11-02 02:00:00,4,0,1,1,13.12,15.91,66,11.0014,3,7,10 +2012-11-02 03:00:00,4,0,1,1,12.3,15.15,70,11.0014,0,3,3 +2012-11-02 04:00:00,4,0,1,1,12.3,15.91,70,7.0015,1,6,7 +2012-11-02 05:00:00,4,0,1,2,13.12,15.91,66,11.0014,1,25,26 +2012-11-02 06:00:00,4,0,1,1,12.3,15.15,70,11.0014,2,120,122 +2012-11-02 07:00:00,4,0,1,2,12.3,15.15,70,8.9981,8,349,357 +2012-11-02 08:00:00,4,0,1,1,13.12,16.665,57,7.0015,31,656,687 +2012-11-02 09:00:00,4,0,1,1,13.94,17.425,53,7.0015,27,355,382 +2012-11-02 10:00:00,4,0,1,1,15.58,19.695,46,19.9995,21,183,204 +2012-11-02 11:00:00,4,0,1,1,17.22,21.21,41,27.9993,42,179,221 +2012-11-02 12:00:00,4,0,1,1,17.22,21.21,41,23.9994,52,240,292 +2012-11-02 13:00:00,4,0,1,1,16.4,20.455,43,23.9994,64,230,294 +2012-11-02 14:00:00,4,0,1,2,16.4,20.455,40,32.9975,63,199,262 +2012-11-02 15:00:00,4,0,1,2,16.4,20.455,40,27.9993,51,255,306 +2012-11-02 16:00:00,4,0,1,1,15.58,19.695,40,22.0028,48,373,421 +2012-11-02 17:00:00,4,0,1,1,15.58,19.695,40,22.0028,57,581,638 +2012-11-02 18:00:00,4,0,1,2,15.58,19.695,43,22.0028,32,490,522 +2012-11-02 19:00:00,4,0,1,2,15.58,19.695,43,19.9995,38,336,374 +2012-11-02 20:00:00,4,0,1,2,14.76,16.665,46,27.9993,14,207,221 +2012-11-02 21:00:00,4,0,1,2,14.76,16.665,46,23.9994,23,133,156 +2012-11-02 22:00:00,4,0,1,1,14.76,16.665,46,16.9979,14,135,149 +2012-11-02 23:00:00,4,0,1,1,13.94,15.15,53,19.9995,11,108,119 +2012-11-03 00:00:00,4,0,0,1,13.94,16.665,53,11.0014,9,99,108 +2012-11-03 01:00:00,4,0,0,2,13.94,15.15,49,22.0028,6,83,89 +2012-11-03 02:00:00,4,0,0,2,13.94,15.91,49,16.9979,10,36,46 +2012-11-03 03:00:00,4,0,0,2,13.94,15.91,49,16.9979,6,22,28 +2012-11-03 04:00:00,4,0,0,2,13.12,15.15,49,19.9995,8,8,16 +2012-11-03 05:00:00,4,0,0,2,13.12,15.15,49,16.9979,1,8,9 +2012-11-03 06:00:00,4,0,0,2,13.12,15.91,49,12.998,4,17,21 +2012-11-03 07:00:00,4,0,0,2,13.12,15.15,49,16.9979,1,58,59 +2012-11-03 08:00:00,4,0,0,2,13.94,15.15,46,19.9995,10,132,142 +2012-11-03 09:00:00,4,0,0,2,13.94,15.15,49,19.9995,31,188,219 +2012-11-03 10:00:00,4,0,0,1,14.76,16.665,46,26.0027,68,260,328 +2012-11-03 11:00:00,4,0,0,2,14.76,16.665,46,26.0027,56,284,340 +2012-11-03 12:00:00,4,0,0,2,14.76,15.91,46,31.0009,74,320,394 +2012-11-03 13:00:00,4,0,0,2,14.76,16.665,46,23.9994,110,339,449 +2012-11-03 14:00:00,4,0,0,2,14.76,16.665,50,22.0028,136,319,455 +2012-11-03 15:00:00,4,0,0,2,14.76,15.91,46,30.0026,117,331,448 +2012-11-03 16:00:00,4,0,0,2,14.76,16.665,46,22.0028,108,292,400 +2012-11-03 17:00:00,4,0,0,2,14.76,16.665,46,19.9995,112,298,410 +2012-11-03 18:00:00,4,0,0,2,14.76,16.665,46,19.0012,58,239,297 +2012-11-03 19:00:00,4,0,0,1,14.76,17.425,50,11.0014,22,217,239 +2012-11-03 20:00:00,4,0,0,1,13.94,16.665,53,8.9981,23,158,181 +2012-11-03 21:00:00,4,0,0,1,13.94,17.425,53,7.0015,31,135,166 +2012-11-03 22:00:00,4,0,0,1,13.12,16.665,57,7.0015,13,133,146 +2012-11-03 23:00:00,4,0,0,1,13.12,16.665,57,7.0015,15,133,148 +2012-11-04 00:00:00,4,0,0,1,12.3,15.91,61,7.0015,5,97,102 +2012-11-04 01:00:00,4,0,0,1,10.66,14.395,81,6.0032,26,139,165 +2012-11-04 02:00:00,4,0,0,1,12.3,16.665,65,0,6,31,37 +2012-11-04 03:00:00,4,0,0,1,11.48,14.395,61,7.0015,1,10,11 +2012-11-04 04:00:00,4,0,0,1,10.66,13.635,65,8.9981,2,7,9 +2012-11-04 05:00:00,4,0,0,1,10.66,13.635,65,7.0015,0,5,5 +2012-11-04 06:00:00,4,0,0,1,11.48,14.395,61,8.9981,2,14,16 +2012-11-04 07:00:00,4,0,0,1,10.66,13.635,65,7.0015,11,39,50 +2012-11-04 08:00:00,4,0,0,1,12.3,15.15,56,8.9981,34,115,149 +2012-11-04 09:00:00,4,0,0,1,13.12,16.665,53,0,56,161,217 +2012-11-04 10:00:00,4,0,0,1,13.94,16.665,49,12.998,73,287,360 +2012-11-04 11:00:00,4,0,0,1,15.58,19.695,46,15.0013,134,311,445 +2012-11-04 12:00:00,4,0,0,1,15.58,19.695,46,15.0013,150,354,504 +2012-11-04 13:00:00,4,0,0,1,16.4,20.455,43,15.0013,122,371,493 +2012-11-04 14:00:00,4,0,0,1,16.4,20.455,40,12.998,149,360,509 +2012-11-04 15:00:00,4,0,0,1,16.4,20.455,40,15.0013,149,300,449 +2012-11-04 16:00:00,4,0,0,1,16.4,20.455,40,22.0028,119,316,435 +2012-11-04 17:00:00,4,0,0,1,14.76,17.425,43,12.998,57,270,327 +2012-11-04 18:00:00,4,0,0,1,14.76,17.425,43,15.0013,31,206,237 +2012-11-04 19:00:00,4,0,0,1,14.76,16.665,43,16.9979,24,203,227 +2012-11-04 20:00:00,4,0,0,1,13.12,14.395,53,23.9994,7,134,141 +2012-11-04 21:00:00,4,0,0,1,12.3,13.635,52,19.9995,16,71,87 +2012-11-04 22:00:00,4,0,0,1,12.3,14.395,52,19.0012,15,64,79 +2012-11-04 23:00:00,4,0,0,2,12.3,15.15,56,11.0014,12,41,53 +2012-11-05 00:00:00,4,0,1,2,12.3,14.395,56,12.998,3,20,23 +2012-11-05 01:00:00,4,0,1,2,12.3,15.15,56,11.0014,0,8,8 +2012-11-05 02:00:00,4,0,1,2,12.3,15.15,56,11.0014,2,4,6 +2012-11-05 03:00:00,4,0,1,2,12.3,14.395,56,15.0013,1,3,4 +2012-11-05 04:00:00,4,0,1,2,12.3,14.395,52,16.9979,5,11,16 +2012-11-05 05:00:00,4,0,1,2,12.3,13.635,52,22.0028,1,38,39 +2012-11-05 06:00:00,4,0,1,2,12.3,14.395,49,19.0012,4,135,139 +2012-11-05 07:00:00,4,0,1,2,12.3,14.395,49,16.9979,8,453,461 +2012-11-05 08:00:00,4,0,1,2,12.3,14.395,49,15.0013,19,629,648 +2012-11-05 09:00:00,4,0,1,2,12.3,14.395,52,19.0012,18,239,257 +2012-11-05 10:00:00,4,0,1,1,13.12,15.15,49,19.0012,30,112,142 +2012-11-05 11:00:00,4,0,1,1,13.94,15.91,46,15.0013,31,119,150 +2012-11-05 12:00:00,4,0,1,1,14.76,16.665,43,22.0028,38,206,244 +2012-11-05 13:00:00,4,0,1,1,14.76,16.665,40,16.9979,39,183,222 +2012-11-05 14:00:00,4,0,1,1,15.58,19.695,40,11.0014,31,165,196 +2012-11-05 15:00:00,4,0,1,1,15.58,19.695,40,19.0012,24,207,231 +2012-11-05 16:00:00,4,0,1,1,14.76,16.665,43,19.0012,35,325,360 +2012-11-05 17:00:00,4,0,1,1,13.94,15.91,46,15.0013,34,604,638 +2012-11-05 18:00:00,4,0,1,1,13.94,15.91,46,15.0013,19,523,542 +2012-11-05 19:00:00,4,0,1,1,13.12,15.91,49,11.0014,11,361,372 +2012-11-05 20:00:00,4,0,1,1,13.12,15.15,49,16.9979,13,228,241 +2012-11-05 21:00:00,4,0,1,1,12.3,14.395,52,19.0012,8,144,152 +2012-11-05 22:00:00,4,0,1,1,11.48,13.635,56,12.998,4,111,115 +2012-11-05 23:00:00,4,0,1,1,10.66,13.635,60,8.9981,0,53,53 +2012-11-06 00:00:00,4,0,1,1,9.84,12.88,60,7.0015,1,18,19 +2012-11-06 01:00:00,4,0,1,1,9.84,12.12,60,11.0014,0,8,8 +2012-11-06 02:00:00,4,0,1,1,9.84,12.88,65,6.0032,0,2,2 +2012-11-06 03:00:00,4,0,1,1,9.02,12.12,64,7.0015,0,4,4 +2012-11-06 04:00:00,4,0,1,1,9.02,12.88,69,6.0032,0,7,7 +2012-11-06 05:00:00,4,0,1,2,9.02,11.365,64,12.998,1,40,41 +2012-11-06 06:00:00,4,0,1,1,9.02,11.365,69,8.9981,6,143,149 +2012-11-06 07:00:00,4,0,1,1,8.2,10.605,69,11.0014,9,378,387 +2012-11-06 08:00:00,4,0,1,1,9.02,11.365,69,11.0014,20,568,588 +2012-11-06 09:00:00,4,0,1,1,10.66,12.88,60,11.0014,25,338,363 +2012-11-06 10:00:00,4,0,1,1,12.3,14.395,49,12.998,41,189,230 +2012-11-06 11:00:00,4,0,1,1,13.12,16.665,45,8.9981,39,177,216 +2012-11-06 12:00:00,4,0,1,1,13.12,16.665,45,8.9981,31,217,248 +2012-11-06 13:00:00,4,0,1,1,13.94,16.665,46,8.9981,46,232,278 +2012-11-06 14:00:00,4,0,1,1,14.76,18.18,40,7.0015,44,196,240 +2012-11-06 15:00:00,4,0,1,1,13.94,15.91,46,16.9979,45,227,272 +2012-11-06 16:00:00,4,0,1,1,13.94,16.665,46,11.0014,33,369,402 +2012-11-06 17:00:00,4,0,1,1,13.12,15.15,53,15.0013,30,597,627 +2012-11-06 18:00:00,4,0,1,1,13.12,15.15,57,19.9995,20,477,497 +2012-11-06 19:00:00,4,0,1,1,12.3,14.395,56,15.0013,15,356,371 +2012-11-06 20:00:00,4,0,1,1,12.3,14.395,61,15.0013,10,218,228 +2012-11-06 21:00:00,4,0,1,2,12.3,14.395,56,16.9979,14,137,151 +2012-11-06 22:00:00,4,0,1,2,12.3,14.395,56,15.0013,17,136,153 +2012-11-06 23:00:00,4,0,1,1,12.3,14.395,56,15.0013,19,186,205 +2012-11-07 00:00:00,4,0,1,2,12.3,14.395,56,19.0012,49,234,283 +2012-11-07 01:00:00,4,0,1,2,11.48,13.635,61,16.9979,6,86,92 +2012-11-07 02:00:00,4,0,1,2,11.48,12.88,56,19.9995,6,68,74 +2012-11-07 03:00:00,4,0,1,2,11.48,12.88,52,22.0028,2,9,11 +2012-11-07 04:00:00,4,0,1,2,11.48,12.88,52,19.9995,0,9,9 +2012-11-07 05:00:00,4,0,1,2,11.48,12.88,52,22.0028,0,27,27 +2012-11-07 06:00:00,4,0,1,2,10.66,12.12,56,19.0012,3,115,118 +2012-11-07 07:00:00,4,0,1,2,10.66,11.365,56,19.9995,5,314,319 +2012-11-07 08:00:00,4,0,1,2,10.66,12.12,60,19.0012,18,583,601 +2012-11-07 09:00:00,4,0,1,2,10.66,12.12,60,19.0012,17,351,368 +2012-11-07 10:00:00,4,0,1,2,11.48,12.88,56,19.9995,27,151,178 +2012-11-07 11:00:00,4,0,1,2,13.12,14.395,51,23.9994,15,132,147 +2012-11-07 12:00:00,4,0,1,2,13.12,15.15,53,19.0012,24,188,212 +2012-11-07 13:00:00,4,0,1,2,13.12,15.15,53,16.9979,23,158,181 +2012-11-07 14:00:00,4,0,1,2,13.12,14.395,53,23.9994,19,142,161 +2012-11-07 15:00:00,4,0,1,2,13.12,15.15,53,19.9995,20,178,198 +2012-11-07 16:00:00,4,0,1,2,13.12,14.395,53,23.9994,23,250,273 +2012-11-07 17:00:00,4,0,1,2,13.12,14.395,53,26.0027,16,501,517 +2012-11-07 18:00:00,4,0,1,2,13.12,14.395,53,23.9994,17,448,465 +2012-11-07 19:00:00,4,0,1,2,12.3,13.635,56,19.9995,17,302,319 +2012-11-07 20:00:00,4,0,1,2,13.12,15.15,49,22.0028,7,249,256 +2012-11-07 21:00:00,4,0,1,2,13.12,15.15,49,19.9995,5,121,126 +2012-11-07 22:00:00,4,0,1,3,12.3,14.395,56,16.9979,4,56,60 +2012-11-07 23:00:00,4,0,1,3,11.48,13.635,65,15.0013,3,37,40 +2012-11-08 00:00:00,4,0,1,3,11.48,13.635,61,15.0013,1,14,15 +2012-11-08 01:00:00,4,0,1,3,12.3,13.635,52,23.9994,1,11,12 +2012-11-08 02:00:00,4,0,1,2,12.3,14.395,49,15.0013,1,5,6 +2012-11-08 04:00:00,4,0,1,2,12.3,14.395,45,19.0012,1,9,10 +2012-11-08 05:00:00,4,0,1,2,12.3,14.395,42,15.0013,0,35,35 +2012-11-08 06:00:00,4,0,1,1,12.3,14.395,39,15.0013,2,122,124 +2012-11-08 07:00:00,4,0,1,1,11.48,12.88,36,26.0027,12,411,423 +2012-11-08 08:00:00,4,0,1,1,12.3,14.395,33,19.0012,16,652,668 +2012-11-08 09:00:00,4,0,1,1,13.12,14.395,31,23.9994,22,253,275 +2012-11-08 10:00:00,4,0,1,1,13.12,15.15,31,22.0028,13,148,161 +2012-11-08 11:00:00,4,0,1,1,14.76,16.665,29,26.0027,16,155,171 +2012-11-08 12:00:00,4,0,1,1,16.4,20.455,24,32.9975,33,202,235 +2012-11-08 13:00:00,4,0,1,1,18.04,21.97,18,27.9993,33,195,228 +2012-11-08 14:00:00,4,0,1,1,18.04,21.97,18,27.9993,33,149,182 +2012-11-08 15:00:00,4,0,1,1,18.04,21.97,18,27.9993,32,201,233 +2012-11-08 16:00:00,4,0,1,1,17.22,21.21,16,26.0027,18,321,339 +2012-11-08 17:00:00,4,0,1,1,16.4,20.455,20,19.9995,36,556,592 +2012-11-08 18:00:00,4,0,1,1,16.4,20.455,24,27.9993,16,491,507 +2012-11-08 19:00:00,4,0,1,1,15.58,19.695,27,23.9994,14,359,373 +2012-11-08 20:00:00,4,0,1,1,15.58,19.695,29,31.0009,10,235,245 +2012-11-08 21:00:00,4,0,1,1,14.76,16.665,37,26.0027,11,222,233 +2012-11-08 22:00:00,4,0,1,1,13.94,15.15,42,19.9995,14,147,161 +2012-11-08 23:00:00,4,0,1,1,13.94,15.15,46,23.9994,5,82,87 +2012-11-09 00:00:00,4,0,1,1,13.94,15.15,49,22.0028,9,46,55 +2012-11-09 01:00:00,4,0,1,1,13.12,15.15,53,19.0012,3,17,20 +2012-11-09 02:00:00,4,0,1,1,13.12,15.15,53,16.9979,1,11,12 +2012-11-09 03:00:00,4,0,1,1,13.12,14.395,53,27.9993,3,6,9 +2012-11-09 04:00:00,4,0,1,1,13.12,14.395,53,23.9994,0,14,14 +2012-11-09 05:00:00,4,0,1,1,12.3,14.395,56,12.998,2,25,27 +2012-11-09 06:00:00,4,0,1,1,10.66,13.635,65,7.0015,5,126,131 +2012-11-09 07:00:00,4,0,1,1,10.66,13.635,65,8.9981,9,332,341 +2012-11-09 08:00:00,4,0,1,1,13.12,15.91,57,11.0014,25,668,693 +2012-11-09 09:00:00,4,0,1,1,13.94,15.15,53,27.9993,23,304,327 +2012-11-09 10:00:00,4,0,1,1,14.76,16.665,50,22.0028,34,163,197 +2012-11-09 11:00:00,4,0,1,1,16.4,20.455,47,19.9995,66,185,251 +2012-11-09 12:00:00,4,0,1,1,18.04,21.97,41,22.0028,48,214,262 +2012-11-09 13:00:00,4,0,1,1,18.86,22.725,38,19.9995,62,237,299 +2012-11-09 14:00:00,4,0,1,1,18.86,22.725,38,12.998,67,207,274 +2012-11-09 15:00:00,4,0,1,1,18.86,22.725,36,15.0013,78,278,356 +2012-11-09 16:00:00,4,0,1,1,18.86,22.725,38,11.0014,57,377,434 +2012-11-09 17:00:00,4,0,1,1,17.22,21.21,44,8.9981,61,593,654 +2012-11-09 18:00:00,4,0,1,1,17.22,21.21,44,7.0015,46,450,496 +2012-11-09 19:00:00,4,0,1,1,13.94,17.425,71,6.0032,30,331,361 +2012-11-09 20:00:00,4,0,1,1,14.76,17.425,66,8.9981,20,235,255 +2012-11-09 21:00:00,4,0,1,1,13.94,18.18,76,0,23,176,199 +2012-11-09 22:00:00,4,0,1,1,13.94,17.425,71,7.0015,17,146,163 +2012-11-09 23:00:00,4,0,1,1,13.12,16.665,81,6.0032,20,142,162 +2012-11-10 00:00:00,4,0,0,1,13.12,16.665,76,6.0032,16,106,122 +2012-11-10 01:00:00,4,0,0,1,12.3,15.91,81,6.0032,8,68,76 +2012-11-10 02:00:00,4,0,0,1,13.12,17.425,81,0,2,42,44 +2012-11-10 03:00:00,4,0,0,1,12.3,16.665,81,0,9,11,20 +2012-11-10 04:00:00,4,0,0,1,10.66,13.635,87,7.0015,2,4,6 +2012-11-10 05:00:00,4,0,0,1,11.48,15.91,87,0,1,9,10 +2012-11-10 06:00:00,4,0,0,1,9.84,12.88,93,6.0032,5,11,16 +2012-11-10 07:00:00,4,0,0,1,10.66,13.635,87,7.0015,14,57,71 +2012-11-10 08:00:00,4,0,0,1,13.12,17.425,76,0,16,130,146 +2012-11-10 09:00:00,4,0,0,1,14.76,17.425,66,12.998,43,216,259 +2012-11-10 10:00:00,4,0,0,1,16.4,20.455,58,0,86,264,350 +2012-11-10 11:00:00,4,0,0,1,16.4,20.455,58,7.0015,143,323,466 +2012-11-10 12:00:00,4,0,0,1,19.68,23.485,48,0,258,348,606 +2012-11-10 13:00:00,4,0,0,1,21.32,25,39,0,268,383,651 +2012-11-10 14:00:00,4,0,0,1,22.14,25.76,37,0,280,347,627 +2012-11-10 15:00:00,4,0,0,1,21.32,25,45,0,216,351,567 +2012-11-10 16:00:00,4,0,0,1,22.14,25.76,37,0,227,378,605 +2012-11-10 17:00:00,4,0,0,1,20.5,24.24,45,12.998,183,318,501 +2012-11-10 18:00:00,4,0,0,1,18.04,21.97,54,8.9981,103,256,359 +2012-11-10 19:00:00,4,0,0,1,18.86,22.725,51,6.0032,55,228,283 +2012-11-10 20:00:00,4,0,0,1,18.04,21.97,54,0,39,153,192 +2012-11-10 21:00:00,4,0,0,1,16.4,20.455,66,0,51,169,220 +2012-11-10 22:00:00,4,0,0,1,15.58,19.695,71,6.0032,39,154,193 +2012-11-10 23:00:00,4,0,0,1,14.76,18.18,71,7.0015,26,120,146 +2012-11-11 00:00:00,4,0,0,1,13.94,17.425,81,6.0032,14,110,124 +2012-11-11 01:00:00,4,0,0,1,13.94,17.425,76,6.0032,26,82,108 +2012-11-11 02:00:00,4,0,0,1,13.12,16.665,87,7.0015,12,58,70 +2012-11-11 03:00:00,4,0,0,1,13.94,18.18,81,0,9,39,48 +2012-11-11 04:00:00,4,0,0,1,13.12,16.665,81,7.0015,5,6,11 +2012-11-11 05:00:00,4,0,0,1,12.3,15.15,87,8.9981,0,12,12 +2012-11-11 06:00:00,4,0,0,1,12.3,15.91,87,6.0032,3,16,19 +2012-11-11 07:00:00,4,0,0,1,12.3,15.91,89,6.0032,12,56,68 +2012-11-11 08:00:00,4,0,0,1,13.12,16.665,87,7.0015,32,87,119 +2012-11-11 09:00:00,4,0,0,1,14.76,18.94,77,0,94,179,273 +2012-11-11 10:00:00,4,0,0,1,16.4,20.455,69,7.0015,133,272,405 +2012-11-11 11:00:00,4,0,0,1,18.86,22.725,59,8.9981,180,324,504 +2012-11-11 12:00:00,4,0,0,1,20.5,24.24,48,6.0032,195,390,585 +2012-11-11 13:00:00,4,0,0,1,22.14,25.76,45,7.0015,262,424,686 +2012-11-11 14:00:00,4,0,0,1,24.6,31.06,33,11.0014,292,362,654 +2012-11-11 15:00:00,4,0,0,1,22.96,26.515,37,15.0013,304,420,724 +2012-11-11 16:00:00,4,0,0,1,22.14,25.76,42,15.0013,260,393,653 +2012-11-11 17:00:00,4,0,0,1,22.14,25.76,45,11.0014,151,342,493 +2012-11-11 18:00:00,4,0,0,1,21.32,25,45,8.9981,102,303,405 +2012-11-11 19:00:00,4,0,0,1,19.68,23.485,55,8.9981,69,208,277 +2012-11-11 20:00:00,4,0,0,1,18.04,21.97,62,11.0014,54,146,200 +2012-11-11 21:00:00,4,0,0,1,18.04,21.97,67,15.0013,44,127,171 +2012-11-11 22:00:00,4,0,0,1,17.22,21.21,71,12.998,21,113,134 +2012-11-11 23:00:00,4,0,0,1,17.22,21.21,71,12.998,16,93,109 +2012-11-12 00:00:00,4,1,0,1,17.22,21.21,71,7.0015,6,43,49 +2012-11-12 01:00:00,4,1,0,1,16.4,20.455,76,11.0014,4,26,30 +2012-11-12 02:00:00,4,1,0,1,16.4,20.455,76,8.9981,6,14,20 +2012-11-12 03:00:00,4,1,0,1,16.4,20.455,76,8.9981,1,3,4 +2012-11-12 04:00:00,4,1,0,1,16.4,20.455,76,6.0032,1,3,4 +2012-11-12 05:00:00,4,1,0,1,15.58,19.695,87,0,1,23,24 +2012-11-12 06:00:00,4,1,0,1,15.58,19.695,87,7.0015,7,64,71 +2012-11-12 07:00:00,4,1,0,1,16.4,20.455,87,0,16,248,264 +2012-11-12 08:00:00,4,1,0,1,17.22,21.21,82,11.0014,50,490,540 +2012-11-12 09:00:00,4,1,0,1,18.04,21.97,88,7.0015,60,337,397 +2012-11-12 10:00:00,4,1,0,1,19.68,23.485,77,11.0014,82,184,266 +2012-11-12 11:00:00,4,1,0,1,21.32,25,72,11.0014,112,255,367 +2012-11-12 12:00:00,4,1,0,1,22.96,26.515,64,15.0013,105,314,419 +2012-11-12 13:00:00,4,1,0,1,24.6,30.305,60,15.0013,108,312,420 +2012-11-12 14:00:00,4,1,0,1,23.78,27.275,60,19.0012,134,310,444 +2012-11-12 15:00:00,4,1,0,1,22.96,26.515,64,16.9979,102,280,382 +2012-11-12 16:00:00,4,1,0,1,22.96,26.515,64,11.0014,87,347,434 +2012-11-12 17:00:00,4,1,0,1,22.96,26.515,64,19.0012,66,530,596 +2012-11-12 18:00:00,4,1,0,1,21.32,25,72,8.9981,65,486,551 +2012-11-12 19:00:00,4,1,0,1,22.14,25.76,73,19.0012,30,323,353 +2012-11-12 20:00:00,4,1,0,2,21.32,25,77,19.0012,31,273,304 +2012-11-12 21:00:00,4,1,0,3,22.14,25.76,73,15.0013,10,145,155 +2012-11-12 22:00:00,4,1,0,1,21.32,25,77,16.9979,12,100,112 +2012-11-12 23:00:00,4,1,0,2,22.14,25.76,77,15.0013,1,62,63 +2012-11-13 00:00:00,4,0,1,2,21.32,25,83,19.0012,5,18,23 +2012-11-13 01:00:00,4,0,1,3,18.04,21.97,88,43.0006,0,5,5 +2012-11-13 02:00:00,4,0,1,3,14.76,15.91,87,30.0026,7,4,11 +2012-11-13 03:00:00,4,0,1,3,14.76,16.665,87,23.9994,2,3,5 +2012-11-13 04:00:00,4,0,1,2,14.76,16.665,81,26.0027,0,9,9 +2012-11-13 05:00:00,4,0,1,2,13.94,15.91,87,19.0012,0,18,18 +2012-11-13 06:00:00,4,0,1,3,13.12,14.395,81,31.0009,2,48,50 +2012-11-13 07:00:00,4,0,1,3,13.12,15.15,87,16.9979,1,106,107 +2012-11-13 08:00:00,4,0,1,3,13.12,15.15,87,16.9979,4,207,211 +2012-11-13 09:00:00,4,0,1,3,13.12,15.15,81,22.0028,1,109,110 +2012-11-13 10:00:00,4,0,1,3,12.3,13.635,75,26.0027,10,84,94 +2012-11-13 11:00:00,4,0,1,1,13.12,15.15,70,16.9979,22,133,155 +2012-11-13 12:00:00,4,0,1,1,13.94,15.91,61,19.0012,16,180,196 +2012-11-13 13:00:00,4,0,1,1,13.94,15.91,53,16.9979,30,188,218 +2012-11-13 14:00:00,4,0,1,1,15.58,19.695,46,26.0027,34,169,203 +2012-11-13 15:00:00,4,0,1,1,16.4,20.455,40,19.9995,33,184,217 +2012-11-13 16:00:00,4,0,1,1,15.58,19.695,40,19.9995,28,282,310 +2012-11-13 17:00:00,4,0,1,1,13.94,15.15,49,23.9994,33,575,608 +2012-11-13 18:00:00,4,0,1,1,13.94,15.91,49,19.0012,45,514,559 +2012-11-13 19:00:00,4,0,1,1,13.12,14.395,49,23.9994,12,344,356 +2012-11-13 20:00:00,4,0,1,1,12.3,13.635,49,23.9994,12,211,223 +2012-11-13 21:00:00,4,0,1,1,12.3,13.635,49,23.9994,9,178,187 +2012-11-13 22:00:00,4,0,1,1,10.66,11.365,56,22.0028,15,120,135 +2012-11-13 23:00:00,4,0,1,1,10.66,11.365,56,19.9995,6,78,84 +2012-11-14 00:00:00,4,0,1,1,10.66,12.12,56,19.0012,4,20,24 +2012-11-14 01:00:00,4,0,1,1,9.84,10.605,60,19.9995,2,10,12 +2012-11-14 02:00:00,4,0,1,1,9.84,10.605,60,19.9995,0,1,1 +2012-11-14 03:00:00,4,0,1,1,9.84,11.365,65,15.0013,0,5,5 +2012-11-14 04:00:00,4,0,1,1,9.02,11.365,69,12.998,0,6,6 +2012-11-14 05:00:00,4,0,1,1,9.02,11.365,69,12.998,0,39,39 +2012-11-14 06:00:00,4,0,1,1,9.84,11.365,65,12.998,4,142,146 +2012-11-14 07:00:00,4,0,1,1,9.84,10.605,65,19.0012,10,405,415 +2012-11-14 08:00:00,4,0,1,1,11.48,12.88,56,19.9995,27,664,691 +2012-11-14 09:00:00,4,0,1,1,12.3,13.635,52,26.0027,22,310,332 +2012-11-14 10:00:00,4,0,1,1,13.12,14.395,45,23.9994,18,153,171 +2012-11-14 11:00:00,4,0,1,1,13.12,15.15,49,16.9979,25,126,151 +2012-11-14 12:00:00,4,0,1,1,13.94,16.665,46,0,40,200,240 +2012-11-14 13:00:00,4,0,1,1,14.76,16.665,43,16.9979,32,182,214 +2012-11-14 14:00:00,4,0,1,1,14.76,17.425,43,8.9981,20,161,181 +2012-11-14 15:00:00,4,0,1,1,14.76,16.665,43,19.0012,32,228,260 +2012-11-14 16:00:00,4,0,1,1,13.94,17.425,46,7.0015,31,290,321 +2012-11-14 17:00:00,4,0,1,1,13.12,15.91,49,12.998,19,564,583 +2012-11-14 18:00:00,4,0,1,1,13.12,15.91,53,11.0014,24,543,567 +2012-11-14 19:00:00,4,0,1,1,12.3,15.15,52,11.0014,28,368,396 +2012-11-14 20:00:00,4,0,1,1,12.3,15.91,52,6.0032,15,252,267 +2012-11-14 21:00:00,4,0,1,1,12.3,16.665,56,0,5,208,213 +2012-11-14 22:00:00,4,0,1,1,11.48,15.91,61,0,6,167,173 +2012-11-14 23:00:00,4,0,1,1,9.84,12.12,70,8.9981,9,78,87 +2012-11-15 00:00:00,4,0,1,2,10.66,15.15,65,0,1,33,34 +2012-11-15 01:00:00,4,0,1,2,10.66,13.635,65,7.0015,2,14,16 +2012-11-15 02:00:00,4,0,1,2,10.66,12.88,70,11.0014,0,7,7 +2012-11-15 03:00:00,4,0,1,2,10.66,14.395,70,6.0032,0,2,2 +2012-11-15 04:00:00,4,0,1,2,11.48,14.395,65,8.9981,0,5,5 +2012-11-15 05:00:00,4,0,1,2,12.3,14.395,61,15.0013,3,34,37 +2012-11-15 06:00:00,4,0,1,2,12.3,14.395,65,16.9979,1,146,147 +2012-11-15 07:00:00,4,0,1,2,12.3,14.395,65,12.998,7,403,410 +2012-11-15 08:00:00,4,0,1,2,12.3,14.395,61,15.0013,21,625,646 +2012-11-15 09:00:00,4,0,1,2,13.12,15.91,61,12.998,17,306,323 +2012-11-15 10:00:00,4,0,1,2,13.12,16.665,66,8.9981,11,142,153 +2012-11-15 11:00:00,4,0,1,2,13.94,16.665,61,8.9981,28,138,166 +2012-11-15 12:00:00,4,0,1,2,14.76,18.18,62,7.0015,29,184,213 +2012-11-15 13:00:00,4,0,1,2,15.58,19.695,54,7.0015,20,197,217 +2012-11-15 14:00:00,4,0,1,2,15.58,19.695,54,11.0014,27,174,201 +2012-11-15 15:00:00,4,0,1,2,15.58,19.695,58,11.0014,26,191,217 +2012-11-15 16:00:00,4,0,1,2,14.76,17.425,57,12.998,24,318,342 +2012-11-15 17:00:00,4,0,1,2,14.76,17.425,57,15.0013,22,541,563 +2012-11-15 18:00:00,4,0,1,2,14.76,17.425,57,12.998,10,563,573 +2012-11-15 19:00:00,4,0,1,2,13.94,16.665,61,8.9981,11,375,386 +2012-11-15 20:00:00,4,0,1,1,13.94,17.425,61,7.0015,23,262,285 +2012-11-15 21:00:00,4,0,1,2,13.12,16.665,66,7.0015,20,204,224 +2012-11-15 22:00:00,4,0,1,2,13.12,15.91,66,11.0014,10,143,153 +2012-11-15 23:00:00,4,0,1,2,13.12,15.91,61,11.0014,7,118,125 +2012-11-16 00:00:00,4,0,1,2,13.12,16.665,66,7.0015,7,58,65 +2012-11-16 01:00:00,4,0,1,2,12.3,15.91,65,6.0032,5,16,21 +2012-11-16 02:00:00,4,0,1,2,12.3,15.15,70,11.0014,0,9,9 +2012-11-16 03:00:00,4,0,1,2,12.3,15.15,65,8.9981,0,6,6 +2012-11-16 04:00:00,4,0,1,2,12.3,15.91,65,7.0015,0,5,5 +2012-11-16 05:00:00,4,0,1,2,12.3,15.91,65,6.0032,2,34,36 +2012-11-16 06:00:00,4,0,1,2,12.3,15.91,61,6.0032,4,126,130 +2012-11-16 07:00:00,4,0,1,2,12.3,15.15,61,11.0014,5,362,367 +2012-11-16 08:00:00,4,0,1,2,13.12,16.665,57,8.9981,17,694,711 +2012-11-16 09:00:00,4,0,1,1,13.94,17.425,53,7.0015,21,330,351 +2012-11-16 10:00:00,4,0,1,1,13.94,16.665,53,12.998,33,165,198 +2012-11-16 11:00:00,4,0,1,1,15.58,19.695,43,15.0013,33,185,218 +2012-11-16 12:00:00,4,0,1,1,16.4,20.455,43,19.0012,28,262,290 +2012-11-16 13:00:00,4,0,1,1,17.22,21.21,38,12.998,52,226,278 +2012-11-16 14:00:00,4,0,1,1,17.22,21.21,35,7.0015,47,204,251 +2012-11-16 15:00:00,4,0,1,1,17.22,21.21,38,8.9981,30,237,267 +2012-11-16 16:00:00,4,0,1,1,17.22,21.21,35,19.0012,33,350,383 +2012-11-16 17:00:00,4,0,1,1,14.76,17.425,46,12.998,41,539,580 +2012-11-16 18:00:00,4,0,1,1,13.94,16.665,53,11.0014,22,483,505 +2012-11-16 19:00:00,4,0,1,1,14.76,17.425,46,15.0013,26,306,332 +2012-11-16 20:00:00,4,0,1,1,14.76,16.665,46,16.9979,20,207,227 +2012-11-16 21:00:00,4,0,1,1,13.94,16.665,49,12.998,21,157,178 +2012-11-16 22:00:00,4,0,1,1,13.12,15.15,53,16.9979,23,139,162 +2012-11-16 23:00:00,4,0,1,1,13.12,15.15,53,15.0013,14,114,128 +2012-11-17 00:00:00,4,0,0,1,12.3,15.15,52,11.0014,11,95,106 +2012-11-17 01:00:00,4,0,0,1,10.66,12.88,60,12.998,13,74,87 +2012-11-17 02:00:00,4,0,0,1,10.66,12.88,65,12.998,8,41,49 +2012-11-17 03:00:00,4,0,0,1,10.66,12.88,65,12.998,2,19,21 +2012-11-17 04:00:00,4,0,0,1,9.84,11.365,70,12.998,1,6,7 +2012-11-17 05:00:00,4,0,0,1,9.84,12.12,70,11.0014,1,10,11 +2012-11-17 06:00:00,4,0,0,1,9.84,11.365,70,15.0013,0,21,21 +2012-11-17 07:00:00,4,0,0,1,9.84,11.365,70,12.998,8,70,78 +2012-11-17 08:00:00,4,0,0,1,10.66,12.88,65,15.0013,30,138,168 +2012-11-17 09:00:00,4,0,0,1,13.94,15.91,49,15.0013,48,200,248 +2012-11-17 10:00:00,4,0,0,1,14.76,16.665,46,16.9979,62,258,320 +2012-11-17 11:00:00,4,0,0,1,15.58,19.695,43,12.998,80,343,423 +2012-11-17 12:00:00,4,0,0,1,16.4,20.455,40,11.0014,117,359,476 +2012-11-17 13:00:00,4,0,0,1,17.22,21.21,38,16.9979,179,346,525 +2012-11-17 14:00:00,4,0,0,1,17.22,21.21,38,12.998,175,380,555 +2012-11-17 15:00:00,4,0,0,1,17.22,21.21,35,19.9995,175,374,549 +2012-11-17 16:00:00,4,0,0,1,16.4,20.455,40,15.0013,144,325,469 +2012-11-17 17:00:00,4,0,0,1,15.58,19.695,40,11.0014,101,302,403 +2012-11-17 18:00:00,4,0,0,1,14.76,18.18,50,7.0015,34,237,271 +2012-11-17 19:00:00,4,0,0,1,13.94,17.425,53,6.0032,45,208,253 +2012-11-17 20:00:00,4,0,0,2,13.94,17.425,66,6.0032,30,142,172 +2012-11-17 21:00:00,4,0,0,2,13.12,16.665,57,7.0015,15,124,139 +2012-11-17 22:00:00,4,0,0,2,13.12,16.665,57,7.0015,15,130,145 +2012-11-17 23:00:00,4,0,0,2,12.3,15.91,70,7.0015,19,114,133 +2012-11-18 00:00:00,4,0,0,2,12.3,15.15,70,11.0014,11,118,129 +2012-11-18 01:00:00,4,0,0,1,12.3,14.395,70,12.998,14,81,95 +2012-11-18 02:00:00,4,0,0,1,11.48,14.395,81,7.0015,8,65,73 +2012-11-18 03:00:00,4,0,0,2,12.3,15.15,81,11.0014,9,37,46 +2012-11-18 04:00:00,4,0,0,2,12.3,14.395,81,12.998,4,8,12 +2012-11-18 05:00:00,4,0,0,1,11.48,14.395,81,8.9981,5,7,12 +2012-11-18 06:00:00,4,0,0,1,11.48,13.635,81,11.0014,2,13,15 +2012-11-18 07:00:00,4,0,0,1,11.48,13.635,81,12.998,3,39,42 +2012-11-18 08:00:00,4,0,0,1,12.3,14.395,75,16.9979,19,100,119 +2012-11-18 09:00:00,4,0,0,1,13.12,15.15,70,16.9979,49,155,204 +2012-11-18 10:00:00,4,0,0,1,13.94,15.15,66,19.9995,79,250,329 +2012-11-18 11:00:00,4,0,0,1,15.58,19.695,62,19.0012,92,267,359 +2012-11-18 12:00:00,4,0,0,1,16.4,20.455,62,19.0012,101,341,442 +2012-11-18 13:00:00,4,0,0,1,16.4,20.455,62,22.0028,113,334,447 +2012-11-18 14:00:00,4,0,0,1,16.4,20.455,62,19.9995,125,303,428 +2012-11-18 15:00:00,4,0,0,1,17.22,21.21,54,19.0012,89,318,407 +2012-11-18 16:00:00,4,0,0,2,16.4,20.455,62,22.0028,59,313,372 +2012-11-18 17:00:00,4,0,0,2,15.58,19.695,66,16.9979,48,232,280 +2012-11-18 18:00:00,4,0,0,1,14.76,17.425,66,15.0013,36,240,276 +2012-11-18 19:00:00,4,0,0,1,14.76,17.425,66,11.0014,16,194,210 +2012-11-18 20:00:00,4,0,0,1,14.76,17.425,66,11.0014,9,120,129 +2012-11-18 21:00:00,4,0,0,1,14.76,16.665,66,16.9979,17,93,110 +2012-11-18 22:00:00,4,0,0,2,14.76,16.665,66,16.9979,8,66,74 +2012-11-18 23:00:00,4,0,0,1,14.76,17.425,66,15.0013,6,53,59 +2012-11-19 00:00:00,4,0,1,1,14.76,17.425,66,15.0013,5,22,27 +2012-11-19 01:00:00,4,0,1,2,14.76,17.425,66,15.0013,0,19,19 +2012-11-19 02:00:00,4,0,1,2,14.76,16.665,66,16.9979,0,5,5 +2012-11-19 03:00:00,4,0,1,2,14.76,17.425,66,15.0013,0,2,2 +2012-11-19 04:00:00,4,0,1,2,14.76,17.425,66,15.0013,1,11,12 +2012-11-19 05:00:00,4,0,1,2,14.76,17.425,66,15.0013,1,38,39 +2012-11-19 06:00:00,4,0,1,2,14.76,16.665,66,16.9979,3,128,131 +2012-11-19 07:00:00,4,0,1,2,14.76,16.665,66,19.9995,5,381,386 +2012-11-19 08:00:00,4,0,1,2,14.76,16.665,66,19.9995,13,650,663 +2012-11-19 09:00:00,4,0,1,2,14.76,16.665,66,16.9979,18,260,278 +2012-11-19 10:00:00,4,0,1,2,14.76,16.665,66,16.9979,33,106,139 +2012-11-19 11:00:00,4,0,1,2,15.58,19.695,66,16.9979,33,164,197 +2012-11-19 12:00:00,4,0,1,2,16.4,20.455,62,19.0012,35,207,242 +2012-11-19 13:00:00,4,0,1,1,18.04,21.97,54,16.9979,46,205,251 +2012-11-19 14:00:00,4,0,1,1,18.04,21.97,54,16.9979,47,170,217 +2012-11-19 15:00:00,4,0,1,1,18.04,21.97,54,12.998,44,213,257 +2012-11-19 16:00:00,4,0,1,1,17.22,21.21,58,16.9979,55,325,380 +2012-11-19 17:00:00,4,0,1,2,17.22,21.21,58,12.998,33,586,619 +2012-11-19 18:00:00,4,0,1,2,16.4,20.455,58,16.9979,21,559,580 +2012-11-19 19:00:00,4,0,1,2,16.4,20.455,58,19.0012,25,381,406 +2012-11-19 20:00:00,4,0,1,2,15.58,19.695,62,16.9979,7,252,259 +2012-11-19 21:00:00,4,0,1,2,15.58,19.695,54,15.0013,15,188,203 +2012-11-19 22:00:00,4,0,1,1,13.94,17.425,66,7.0015,7,106,113 +2012-11-19 23:00:00,4,0,1,1,13.94,17.425,66,7.0015,2,72,74 +2012-12-01 00:00:00,4,0,0,1,10.66,15.15,81,0,9,99,108 +2012-12-01 01:00:00,4,0,0,1,10.66,15.15,81,0,5,64,69 +2012-12-01 02:00:00,4,0,0,2,10.66,15.15,81,0,3,47,50 +2012-12-01 03:00:00,4,0,0,2,10.66,13.635,81,8.9981,1,14,15 +2012-12-01 04:00:00,4,0,0,1,10.66,14.395,81,6.0032,0,5,5 +2012-12-01 05:00:00,4,0,0,1,9.84,12.88,87,6.0032,1,12,13 +2012-12-01 06:00:00,4,0,0,1,9.84,12.12,87,8.9981,7,20,27 +2012-12-01 07:00:00,4,0,0,2,9.84,12.12,87,8.9981,7,56,63 +2012-12-01 08:00:00,4,0,0,2,9.84,12.12,87,8.9981,11,133,144 +2012-12-01 09:00:00,4,0,0,2,10.66,12.12,93,16.9979,34,159,193 +2012-12-01 10:00:00,4,0,0,2,11.48,13.635,89,11.0014,45,211,256 +2012-12-01 11:00:00,4,0,0,2,13.12,16.665,76,7.0015,74,318,392 +2012-12-01 12:00:00,4,0,0,2,13.12,16.665,81,6.0032,119,327,446 +2012-12-01 13:00:00,4,0,0,2,13.94,18.18,76,0,123,386,509 +2012-12-01 14:00:00,4,0,0,2,14.76,18.94,71,0,110,369,479 +2012-12-01 15:00:00,4,0,0,2,16.4,20.455,62,0,113,371,484 +2012-12-01 16:00:00,4,0,0,2,15.58,19.695,66,0,89,354,443 +2012-12-01 17:00:00,4,0,0,2,13.94,17.425,76,7.0015,50,270,320 +2012-12-01 18:00:00,4,0,0,2,13.94,18.18,76,0,42,255,297 +2012-12-01 19:00:00,4,0,0,2,13.12,17.425,81,0,30,219,249 +2012-12-01 20:00:00,4,0,0,1,13.12,17.425,81,0,28,170,198 +2012-12-01 21:00:00,4,0,0,2,12.3,16.665,87,0,23,135,158 +2012-12-01 22:00:00,4,0,0,2,12.3,16.665,87,0,17,130,147 +2012-12-01 23:00:00,4,0,0,2,13.12,17.425,81,0,10,116,126 +2012-12-02 00:00:00,4,0,0,2,12.3,15.91,87,6.0032,9,108,117 +2012-12-02 01:00:00,4,0,0,2,12.3,15.91,87,6.0032,10,84,94 +2012-12-02 02:00:00,4,0,0,2,12.3,16.665,87,0,2,72,74 +2012-12-02 03:00:00,4,0,0,2,10.66,15.15,93,0,4,21,25 +2012-12-02 04:00:00,4,0,0,2,10.66,15.15,93,0,1,6,7 +2012-12-02 05:00:00,4,0,0,2,10.66,15.15,93,0,1,7,8 +2012-12-02 06:00:00,4,0,0,2,9.84,12.12,93,8.9981,1,15,16 +2012-12-02 07:00:00,4,0,0,2,9.84,12.12,93,8.9981,5,26,31 +2012-12-02 08:00:00,4,0,0,2,10.66,14.395,93,6.0032,12,81,93 +2012-12-02 09:00:00,4,0,0,2,11.48,13.635,93,11.0014,37,135,172 +2012-12-02 10:00:00,4,0,0,2,12.3,16.665,87,0,63,230,293 +2012-12-02 11:00:00,4,0,0,2,13.12,15.91,81,11.0014,81,274,355 +2012-12-02 12:00:00,4,0,0,2,13.94,16.665,81,11.0014,111,409,520 +2012-12-02 13:00:00,4,0,0,1,16.4,20.455,71,15.0013,84,347,431 +2012-12-02 14:00:00,4,0,0,1,18.04,21.97,62,16.9979,142,331,473 +2012-12-02 15:00:00,4,0,0,1,18.04,21.97,67,8.9981,106,311,417 +2012-12-02 16:00:00,4,0,0,2,18.04,21.97,67,7.0015,85,358,443 +2012-12-02 17:00:00,4,0,0,3,16.4,20.455,76,12.998,59,244,303 +2012-12-02 18:00:00,4,0,0,2,18.04,21.97,72,7.0015,25,178,203 +2012-12-02 19:00:00,4,0,0,2,16.4,20.455,82,12.998,16,158,174 +2012-12-02 20:00:00,4,0,0,2,17.22,21.21,82,12.998,12,142,154 +2012-12-02 21:00:00,4,0,0,2,18.04,21.97,77,15.0013,8,91,99 +2012-12-02 22:00:00,4,0,0,2,18.04,21.97,77,12.998,11,85,96 +2012-12-02 23:00:00,4,0,0,2,17.22,21.21,82,8.9981,7,44,51 +2012-12-03 00:00:00,4,0,1,2,17.22,21.21,82,11.0014,3,18,21 +2012-12-03 01:00:00,4,0,1,1,16.4,20.455,82,8.9981,2,11,13 +2012-12-03 02:00:00,4,0,1,1,17.22,21.21,77,11.0014,1,9,10 +2012-12-03 03:00:00,4,0,1,1,15.58,19.695,87,0,2,6,8 +2012-12-03 04:00:00,4,0,1,1,14.76,18.94,93,0,1,4,5 +2012-12-03 05:00:00,4,0,1,1,13.94,17.425,93,6.0032,0,38,38 +2012-12-03 06:00:00,4,0,1,1,14.76,18.94,93,0,2,136,138 +2012-12-03 07:00:00,4,0,1,2,13.94,18.18,93,0,9,387,396 +2012-12-03 08:00:00,4,0,1,1,14.76,18.94,93,0,19,712,731 +2012-12-03 09:00:00,4,0,1,1,16.4,20.455,87,6.0032,19,289,308 +2012-12-03 10:00:00,4,0,1,1,18.04,21.97,77,8.9981,31,105,136 +2012-12-03 11:00:00,4,0,1,1,19.68,23.485,77,8.9981,51,182,233 +2012-12-03 12:00:00,4,0,1,1,21.32,25,68,11.0014,40,228,268 +2012-12-03 13:00:00,4,0,1,1,23.78,27.275,56,6.0032,81,240,321 +2012-12-03 14:00:00,4,0,1,1,24.6,31.06,53,0,51,209,260 +2012-12-03 15:00:00,4,0,1,1,24.6,31.06,56,0,58,210,268 +2012-12-03 16:00:00,4,0,1,1,24.6,31.06,53,8.9981,45,397,442 +2012-12-03 17:00:00,4,0,1,1,21.32,25,63,7.0015,43,665,708 +2012-12-03 18:00:00,4,0,1,1,20.5,24.24,68,6.0032,26,666,692 +2012-12-03 19:00:00,4,0,1,1,20.5,24.24,68,6.0032,27,444,471 +2012-12-03 20:00:00,4,0,1,2,18.86,22.725,77,0,16,284,300 +2012-12-03 21:00:00,4,0,1,1,18.04,21.97,82,12.998,14,207,221 +2012-12-03 22:00:00,4,0,1,1,17.22,21.21,82,7.0015,5,139,144 +2012-12-03 23:00:00,4,0,1,1,17.22,21.21,82,7.0015,9,93,102 +2012-12-04 00:00:00,4,0,1,1,17.22,21.21,88,7.0015,6,49,55 +2012-12-04 01:00:00,4,0,1,1,17.22,21.21,82,7.0015,3,22,25 +2012-12-04 02:00:00,4,0,1,1,17.22,21.21,88,6.0032,3,5,8 +2012-12-04 03:00:00,4,0,1,2,16.4,20.455,87,8.9981,1,3,4 +2012-12-04 04:00:00,4,0,1,2,16.4,20.455,87,8.9981,0,7,7 +2012-12-04 05:00:00,4,0,1,2,18.04,21.97,88,0,1,45,46 +2012-12-04 06:00:00,4,0,1,2,14.76,18.94,93,0,3,150,153 +2012-12-04 07:00:00,4,0,1,1,17.22,21.21,88,8.9981,7,495,502 +2012-12-04 08:00:00,4,0,1,2,18.04,21.97,88,11.0014,21,700,721 +2012-12-04 09:00:00,4,0,1,1,18.86,22.725,82,7.0015,19,317,336 +2012-12-04 10:00:00,4,0,1,1,18.86,22.725,82,12.998,26,130,156 +2012-12-04 11:00:00,4,0,1,1,19.68,23.485,77,12.998,24,183,207 +2012-12-04 12:00:00,4,0,1,1,21.32,25,68,12.998,39,273,312 +2012-12-04 13:00:00,4,0,1,2,22.14,25.76,64,11.0014,39,233,272 +2012-12-04 14:00:00,4,0,1,2,23.78,27.275,56,15.0013,39,231,270 +2012-12-04 15:00:00,4,0,1,2,24.6,31.06,49,16.9979,56,244,300 +2012-12-04 16:00:00,4,0,1,1,23.78,27.275,49,19.0012,44,391,435 +2012-12-04 17:00:00,4,0,1,1,21.32,25,59,15.0013,43,700,743 +2012-12-04 18:00:00,4,0,1,1,20.5,24.24,63,15.0013,38,693,731 +2012-12-04 19:00:00,4,0,1,1,19.68,23.485,67,15.0013,46,414,460 +2012-12-04 20:00:00,4,0,1,2,20.5,24.24,63,15.0013,34,272,306 +2012-12-04 21:00:00,4,0,1,2,20.5,24.24,63,16.9979,28,252,280 +2012-12-04 22:00:00,4,0,1,2,20.5,24.24,63,19.9995,26,155,181 +2012-12-04 23:00:00,4,0,1,1,19.68,23.485,67,16.9979,5,91,96 +2012-12-05 00:00:00,4,0,1,1,20.5,24.24,59,19.0012,6,31,37 +2012-12-05 01:00:00,4,0,1,1,21.32,25,55,22.0028,0,11,11 +2012-12-05 02:00:00,4,0,1,1,18.86,22.725,67,11.0014,2,7,9 +2012-12-05 03:00:00,4,0,1,1,19.68,23.485,67,8.9981,0,7,7 +2012-12-05 04:00:00,4,0,1,1,20.5,24.24,63,30.0026,1,9,10 +2012-12-05 05:00:00,4,0,1,1,20.5,24.24,59,19.0012,1,48,49 +2012-12-05 06:00:00,4,0,1,3,19.68,23.485,55,26.0027,5,119,124 +2012-12-05 07:00:00,4,0,1,3,18.86,22.725,59,19.9995,9,389,398 +2012-12-05 08:00:00,4,0,1,2,18.04,21.97,58,19.0012,22,737,759 +2012-12-05 09:00:00,4,0,1,2,18.04,21.97,51,15.0013,26,362,388 +2012-12-05 10:00:00,4,0,1,2,18.04,21.97,47,23.9994,14,127,141 +2012-12-05 11:00:00,4,0,1,1,18.04,21.97,44,19.0012,11,161,172 +2012-12-05 12:00:00,4,0,1,1,18.04,21.97,41,19.0012,24,208,232 +2012-12-05 13:00:00,4,0,1,1,18.86,22.725,41,19.0012,14,200,214 +2012-12-05 14:00:00,4,0,1,1,19.68,23.485,33,32.9975,39,179,218 +2012-12-05 15:00:00,4,0,1,1,19.68,23.485,33,19.0012,20,265,285 +2012-12-05 16:00:00,4,0,1,1,18.86,22.725,33,19.0012,23,354,377 +2012-12-05 17:00:00,4,0,1,1,18.04,21.97,35,19.0012,29,576,605 +2012-12-05 18:00:00,4,0,1,1,17.22,21.21,35,30.0026,29,580,609 +2012-12-05 19:00:00,4,0,1,1,15.58,19.695,43,23.9994,14,400,414 +2012-12-05 20:00:00,4,0,1,1,13.94,15.15,46,26.0027,19,274,293 +2012-12-05 21:00:00,4,0,1,1,13.94,15.15,46,27.9993,14,184,198 +2012-12-05 22:00:00,4,0,1,1,13.12,14.395,45,26.0027,4,101,105 +2012-12-05 23:00:00,4,0,1,1,12.3,13.635,49,26.0027,5,69,74 +2012-12-06 00:00:00,4,0,1,1,10.66,12.12,48,19.0012,1,43,44 +2012-12-06 01:00:00,4,0,1,1,10.66,12.12,48,19.0012,0,16,16 +2012-12-06 02:00:00,4,0,1,1,9.84,10.605,52,19.0012,0,9,9 +2012-12-06 03:00:00,4,0,1,1,9.02,11.365,55,12.998,0,2,2 +2012-12-06 04:00:00,4,0,1,1,9.02,10.605,55,19.9995,1,8,9 +2012-12-06 05:00:00,4,0,1,1,9.02,10.605,55,19.0012,0,32,32 +2012-12-06 06:00:00,4,0,1,1,9.02,10.605,55,19.9995,2,122,124 +2012-12-06 07:00:00,4,0,1,1,9.02,10.605,51,19.9995,8,381,389 +2012-12-06 08:00:00,4,0,1,1,9.02,10.605,51,19.9995,13,646,659 +2012-12-06 09:00:00,4,0,1,1,9.84,11.365,48,12.998,19,257,276 +2012-12-06 10:00:00,4,0,1,1,9.84,11.365,52,12.998,23,122,145 +2012-12-06 11:00:00,4,0,1,1,10.66,12.88,48,11.0014,16,162,178 +2012-12-06 12:00:00,4,0,1,1,11.48,15.91,41,0,29,206,235 +2012-12-06 13:00:00,4,0,1,1,12.3,16.665,39,0,33,212,245 +2012-12-06 14:00:00,4,0,1,1,12.3,15.91,42,6.0032,37,175,212 +2012-12-06 15:00:00,4,0,1,1,13.12,17.425,39,0,38,232,270 +2012-12-06 16:00:00,4,0,1,1,13.12,17.425,42,0,39,292,331 +2012-12-06 17:00:00,4,0,1,1,12.3,15.91,45,7.0015,31,586,617 +2012-12-06 18:00:00,4,0,1,1,11.48,13.635,45,11.0014,23,542,565 +2012-12-06 19:00:00,4,0,1,1,10.66,12.88,60,12.998,13,360,373 +2012-12-06 20:00:00,4,0,1,2,9.84,12.88,60,7.0015,5,222,227 +2012-12-06 21:00:00,4,0,1,2,9.84,12.12,60,8.9981,7,184,191 +2012-12-06 22:00:00,4,0,1,1,9.84,12.12,65,11.0014,2,131,133 +2012-12-06 23:00:00,4,0,1,1,9.84,12.12,65,11.0014,0,93,93 +2012-12-07 00:00:00,4,0,1,1,9.84,12.88,70,7.0015,3,45,48 +2012-12-07 01:00:00,4,0,1,2,9.84,11.365,70,12.998,2,26,28 +2012-12-07 02:00:00,4,0,1,2,10.66,13.635,70,8.9981,0,11,11 +2012-12-07 03:00:00,4,0,1,2,10.66,12.88,81,12.998,0,5,5 +2012-12-07 04:00:00,4,0,1,1,10.66,13.635,75,7.0015,0,10,10 +2012-12-07 05:00:00,4,0,1,2,10.66,13.635,81,7.0015,1,25,26 +2012-12-07 06:00:00,4,0,1,2,11.48,13.635,75,11.0014,0,84,84 +2012-12-07 07:00:00,4,0,1,3,11.48,13.635,81,11.0014,3,212,215 +2012-12-07 08:00:00,4,0,1,2,12.3,14.395,75,12.998,11,430,441 +2012-12-07 09:00:00,4,0,1,2,12.3,15.15,81,8.9981,10,291,301 +2012-12-07 10:00:00,4,0,1,2,13.12,15.91,76,11.0014,16,150,166 +2012-12-07 11:00:00,4,0,1,2,13.12,15.91,76,12.998,20,183,203 +2012-12-07 12:00:00,4,0,1,2,13.94,16.665,71,12.998,36,204,240 +2012-12-07 13:00:00,4,0,1,2,14.76,17.425,66,8.9981,23,197,220 +2012-12-07 14:00:00,4,0,1,2,14.76,17.425,71,11.0014,40,175,215 +2012-12-07 15:00:00,4,0,1,2,14.76,17.425,71,11.0014,34,269,303 +2012-12-07 16:00:00,4,0,1,1,14.76,17.425,76,8.9981,39,336,375 +2012-12-07 17:00:00,4,0,1,2,15.58,19.695,66,0,29,539,568 +2012-12-07 18:00:00,4,0,1,2,15.58,19.695,71,7.0015,25,473,498 +2012-12-07 19:00:00,4,0,1,2,15.58,19.695,76,0,15,337,352 +2012-12-07 20:00:00,4,0,1,3,15.58,19.695,76,7.0015,12,229,241 +2012-12-07 21:00:00,4,0,1,2,14.76,18.18,93,7.0015,9,162,171 +2012-12-07 22:00:00,4,0,1,2,14.76,18.18,93,6.0032,15,150,165 +2012-12-07 23:00:00,4,0,1,2,14.76,18.18,93,6.0032,6,116,122 +2012-12-08 00:00:00,4,0,0,2,14.76,18.18,93,6.0032,5,98,103 +2012-12-08 01:00:00,4,0,0,2,14.76,17.425,93,8.9981,16,84,100 +2012-12-08 02:00:00,4,0,0,2,14.76,17.425,93,8.9981,3,67,70 +2012-12-08 03:00:00,4,0,0,2,14.76,18.18,93,7.0015,6,23,29 +2012-12-08 04:00:00,4,0,0,2,14.76,18.94,93,0,3,9,12 +2012-12-08 05:00:00,4,0,0,2,14.76,18.18,93,7.0015,2,4,6 +2012-12-08 06:00:00,4,0,0,2,14.76,18.18,93,7.0015,1,19,20 +2012-12-08 07:00:00,4,0,0,2,14.76,18.18,100,6.0032,3,36,39 +2012-12-08 08:00:00,4,0,0,2,15.58,19.695,94,6.0032,5,106,111 +2012-12-08 09:00:00,4,0,0,2,15.58,19.695,94,0,17,153,170 +2012-12-08 10:00:00,4,0,0,2,16.4,20.455,87,8.9981,43,244,287 +2012-12-08 11:00:00,4,0,0,2,16.4,20.455,87,7.0015,63,341,404 +2012-12-08 12:00:00,4,0,0,2,16.4,20.455,87,15.0013,122,364,486 +2012-12-08 13:00:00,4,0,0,2,16.4,20.455,87,11.0014,148,399,547 +2012-12-08 14:00:00,4,0,0,2,16.4,20.455,87,19.0012,164,378,542 +2012-12-08 15:00:00,4,0,0,1,17.22,21.21,82,11.0014,167,374,541 +2012-12-08 16:00:00,4,0,0,1,17.22,21.21,82,11.0014,139,368,507 +2012-12-08 17:00:00,4,0,0,1,15.58,19.695,87,8.9981,77,268,345 +2012-12-08 18:00:00,4,0,0,1,16.4,20.455,87,7.0015,40,264,304 +2012-12-08 19:00:00,4,0,0,1,16.4,20.455,87,0,34,212,246 +2012-12-08 20:00:00,4,0,0,2,14.76,18.94,100,0,20,162,182 +2012-12-08 21:00:00,4,0,0,2,14.76,18.94,100,0,34,175,209 +2012-12-08 22:00:00,4,0,0,2,15.58,19.695,94,7.0015,23,137,160 +2012-12-08 23:00:00,4,0,0,2,16.4,20.455,94,0,18,144,162 +2012-12-09 00:00:00,4,0,0,2,16.4,20.455,87,8.9981,15,103,118 +2012-12-09 01:00:00,4,0,0,2,16.4,20.455,87,7.0015,17,85,102 +2012-12-09 02:00:00,4,0,0,2,16.4,20.455,87,7.0015,8,70,78 +2012-12-09 03:00:00,4,0,0,2,16.4,20.455,87,7.0015,14,34,48 +2012-12-09 04:00:00,4,0,0,2,16.4,20.455,94,7.0015,1,11,12 +2012-12-09 05:00:00,4,0,0,2,16.4,20.455,87,7.0015,0,8,8 +2012-12-09 06:00:00,4,0,0,3,16.4,20.455,94,7.0015,0,6,6 +2012-12-09 07:00:00,4,0,0,3,16.4,20.455,87,15.0013,1,22,23 +2012-12-09 08:00:00,4,0,0,3,16.4,20.455,87,11.0014,1,68,69 +2012-12-09 09:00:00,4,0,0,2,16.4,20.455,87,16.9979,9,94,103 +2012-12-09 10:00:00,4,0,0,2,16.4,20.455,87,19.0012,39,180,219 +2012-12-09 11:00:00,4,0,0,2,16.4,20.455,87,19.9995,40,210,250 +2012-12-09 12:00:00,4,0,0,2,16.4,20.455,82,19.9995,60,255,315 +2012-12-09 13:00:00,4,0,0,2,15.58,19.695,87,19.0012,65,220,285 +2012-12-09 14:00:00,4,0,0,2,15.58,19.695,87,12.998,42,190,232 +2012-12-09 15:00:00,4,0,0,3,14.76,17.425,93,11.0014,25,200,225 +2012-12-09 16:00:00,4,0,0,3,14.76,17.425,93,11.0014,33,220,253 +2012-12-09 17:00:00,4,0,0,3,14.76,17.425,93,8.9981,20,209,229 +2012-12-09 18:00:00,4,0,0,3,14.76,18.18,93,6.0032,17,181,198 +2012-12-09 19:00:00,4,0,0,3,15.58,19.695,94,6.0032,12,110,122 +2012-12-09 20:00:00,4,0,0,3,14.76,18.18,100,6.0032,6,102,108 +2012-12-09 21:00:00,4,0,0,2,14.76,18.18,100,7.0015,10,86,96 +2012-12-09 22:00:00,4,0,0,3,14.76,18.18,93,7.0015,3,75,78 +2012-12-09 23:00:00,4,0,0,3,14.76,18.18,100,6.0032,3,48,51 +2012-12-10 00:00:00,4,0,1,3,14.76,18.18,100,6.0032,0,20,20 +2012-12-10 01:00:00,4,0,1,2,14.76,18.94,100,0,0,4,4 +2012-12-10 02:00:00,4,0,1,2,15.58,19.695,94,7.0015,2,3,5 +2012-12-10 03:00:00,4,0,1,2,15.58,19.695,94,7.0015,0,4,4 +2012-12-10 04:00:00,4,0,1,2,15.58,19.695,94,7.0015,3,9,12 +2012-12-10 05:00:00,4,0,1,2,15.58,19.695,94,7.0015,0,27,27 +2012-12-10 06:00:00,4,0,1,2,15.58,19.695,94,11.0014,2,121,123 +2012-12-10 07:00:00,4,0,1,2,15.58,19.695,94,16.9979,3,291,294 +2012-12-10 08:00:00,4,0,1,2,17.22,21.21,100,16.9979,9,575,584 +2012-12-10 09:00:00,4,0,1,2,17.22,21.21,100,15.0013,11,273,284 +2012-12-10 10:00:00,4,0,1,2,18.04,21.97,94,15.0013,12,121,133 +2012-12-10 11:00:00,4,0,1,3,18.86,22.725,94,15.0013,8,126,134 +2012-12-10 12:00:00,4,0,1,3,18.04,21.97,100,15.0013,23,150,173 +2012-12-10 13:00:00,4,0,1,3,18.04,21.97,100,15.0013,30,190,220 +2012-12-10 14:00:00,4,0,1,2,20.5,24.24,94,15.0013,31,179,210 +2012-12-10 15:00:00,4,0,1,2,20.5,24.24,87,11.0014,29,207,236 +2012-12-10 16:00:00,4,0,1,2,20.5,24.24,88,7.0015,37,308,345 +2012-12-10 17:00:00,4,0,1,2,19.68,23.485,82,19.0012,38,578,616 +2012-12-10 18:00:00,4,0,1,2,18.86,22.725,88,19.0012,20,544,564 +2012-12-10 19:00:00,4,0,1,1,21.32,25,77,19.0012,18,409,427 +2012-12-10 20:00:00,4,0,1,1,18.86,22.725,88,16.9979,13,287,300 +2012-12-10 21:00:00,4,0,1,2,18.86,22.725,94,12.998,21,224,245 +2012-12-10 22:00:00,4,0,1,2,20.5,24.24,82,15.0013,11,115,126 +2012-12-10 23:00:00,4,0,1,1,18.86,22.725,88,16.9979,8,76,84 +2012-12-11 00:00:00,4,0,1,3,18.86,22.725,77,31.0009,2,29,31 +2012-12-11 01:00:00,4,0,1,1,17.22,21.21,71,30.0026,1,7,8 +2012-12-11 02:00:00,4,0,1,2,16.4,20.455,66,22.0028,0,1,1 +2012-12-11 03:00:00,4,0,1,3,14.76,16.665,76,19.0012,0,3,3 +2012-12-11 04:00:00,4,0,1,2,13.94,15.91,76,19.0012,0,8,8 +2012-12-11 05:00:00,4,0,1,3,13.94,15.15,71,22.0028,1,40,41 +2012-12-11 06:00:00,4,0,1,2,13.94,15.15,71,19.9995,0,118,118 +2012-12-11 07:00:00,4,0,1,1,13.94,15.15,66,27.9993,8,372,380 +2012-12-11 08:00:00,4,0,1,2,13.94,15.15,61,19.9995,16,708,724 +2012-12-11 09:00:00,4,0,1,1,13.94,15.15,61,26.0027,12,322,334 +2012-12-11 10:00:00,4,0,1,1,14.76,16.665,57,22.0028,12,142,154 +2012-12-11 11:00:00,4,0,1,2,14.76,16.665,53,23.9994,28,145,173 +2012-12-11 12:00:00,4,0,1,2,14.76,15.91,53,30.0026,13,213,226 +2012-12-11 13:00:00,4,0,1,2,15.58,19.695,50,15.0013,28,226,254 +2012-12-11 14:00:00,4,0,1,2,15.58,19.695,50,15.0013,19,185,204 +2012-12-11 15:00:00,4,0,1,2,15.58,19.695,50,15.0013,20,250,270 +2012-12-11 16:00:00,4,0,1,2,15.58,19.695,50,15.0013,24,334,358 +2012-12-11 17:00:00,4,0,1,1,13.12,15.15,53,15.0013,21,580,601 +2012-12-11 18:00:00,4,0,1,1,13.12,15.15,53,15.0013,23,523,546 +2012-12-11 19:00:00,4,0,1,1,13.12,15.15,53,15.0013,21,412,433 +2012-12-11 20:00:00,4,0,1,1,13.12,15.15,53,15.0013,9,248,257 +2012-12-11 21:00:00,4,0,1,1,13.12,15.91,53,12.998,14,193,207 +2012-12-11 22:00:00,4,0,1,1,12.3,14.395,56,15.0013,6,100,106 +2012-12-11 23:00:00,4,0,1,1,12.3,14.395,52,15.0013,4,60,64 +2012-12-12 00:00:00,4,0,1,1,12.3,15.15,52,11.0014,1,33,34 +2012-12-12 01:00:00,4,0,1,1,11.48,13.635,61,15.0013,3,18,21 +2012-12-12 02:00:00,4,0,1,1,11.48,13.635,56,11.0014,5,4,9 +2012-12-12 03:00:00,4,0,1,1,10.66,13.635,60,8.9981,3,7,10 +2012-12-12 04:00:00,4,0,1,1,10.66,15.15,60,0,0,4,4 +2012-12-12 05:00:00,4,0,1,1,10.66,12.88,60,12.998,0,37,37 +2012-12-12 06:00:00,4,0,1,2,10.66,12.12,60,16.9979,2,126,128 +2012-12-12 07:00:00,4,0,1,2,10.66,12.88,60,12.998,3,366,369 +2012-12-12 08:00:00,4,0,1,2,10.66,12.88,65,11.0014,18,670,688 +2012-12-12 09:00:00,4,0,1,2,11.48,14.395,61,8.9981,13,272,285 +2012-12-12 10:00:00,4,0,1,2,12.3,15.15,56,11.0014,20,116,136 +2012-12-12 11:00:00,4,0,1,2,13.12,15.15,49,15.0013,24,148,172 +2012-12-12 12:00:00,4,0,1,2,13.94,18.18,42,0,14,218,232 +2012-12-12 13:00:00,4,0,1,2,13.94,18.18,42,0,18,220,238 +2012-12-12 14:00:00,4,0,1,2,13.94,18.18,46,0,34,191,225 +2012-12-12 15:00:00,4,0,1,2,13.94,17.425,46,7.0015,21,207,228 +2012-12-12 16:00:00,4,0,1,2,13.94,16.665,46,8.9981,19,310,329 +2012-12-12 17:00:00,4,0,1,2,13.12,15.15,53,15.0013,21,540,561 +2012-12-12 18:00:00,4,0,1,2,13.12,15.15,49,15.0013,25,515,540 +2012-12-12 19:00:00,4,0,1,2,12.3,14.395,56,15.0013,18,384,402 +2012-12-12 20:00:00,4,0,1,1,12.3,14.395,52,19.0012,25,243,268 +2012-12-12 21:00:00,4,0,1,2,12.3,14.395,52,16.9979,16,186,202 +2012-12-12 22:00:00,4,0,1,2,12.3,14.395,52,15.0013,4,118,122 +2012-12-12 23:00:00,4,0,1,2,11.48,13.635,56,15.0013,3,76,79 +2012-12-13 00:00:00,4,0,1,2,11.48,13.635,52,15.0013,1,31,32 +2012-12-13 01:00:00,4,0,1,2,11.48,12.88,52,19.0012,4,19,23 +2012-12-13 02:00:00,4,0,1,2,10.66,12.12,56,16.9979,3,5,8 +2012-12-13 03:00:00,4,0,1,2,10.66,12.12,56,19.0012,0,2,2 +2012-12-13 04:00:00,4,0,1,2,10.66,12.88,56,12.998,0,8,8 +2012-12-13 05:00:00,4,0,1,2,10.66,12.88,56,11.0014,2,31,33 +2012-12-13 06:00:00,4,0,1,1,10.66,12.12,56,16.9979,2,112,114 +2012-12-13 07:00:00,4,0,1,1,9.84,11.365,60,15.0013,5,380,385 +2012-12-13 08:00:00,4,0,1,1,9.84,11.365,60,12.998,24,655,679 +2012-12-13 09:00:00,4,0,1,1,11.48,13.635,52,16.9979,25,300,325 +2012-12-13 10:00:00,4,0,1,1,13.12,15.15,45,19.0012,28,139,167 +2012-12-13 11:00:00,4,0,1,1,13.94,15.91,42,16.9979,25,164,189 +2012-12-13 12:00:00,4,0,1,1,14.76,16.665,40,16.9979,30,252,282 +2012-12-13 13:00:00,4,0,1,1,14.76,17.425,34,12.998,41,230,271 +2012-12-13 14:00:00,4,0,1,1,14.76,17.425,34,11.0014,31,211,242 +2012-12-13 15:00:00,4,0,1,1,14.76,17.425,34,8.9981,40,240,280 +2012-12-13 16:00:00,4,0,1,1,13.94,17.425,39,7.0015,50,356,406 +2012-12-13 17:00:00,4,0,1,1,13.12,16.665,42,7.0015,43,507,550 +2012-12-13 18:00:00,4,0,1,1,13.12,16.665,42,7.0015,20,446,466 +2012-12-13 19:00:00,4,0,1,1,12.3,15.15,45,11.0014,20,328,348 +2012-12-13 20:00:00,4,0,1,1,12.3,16.665,45,0,6,235,241 +2012-12-13 21:00:00,4,0,1,1,11.48,15.91,48,0,13,200,213 +2012-12-13 22:00:00,4,0,1,1,10.66,14.395,60,6.0032,7,141,148 +2012-12-13 23:00:00,4,0,1,1,10.66,15.15,60,0,5,115,120 +2012-12-14 00:00:00,4,0,1,1,9.02,12.88,64,6.0032,4,43,47 +2012-12-14 01:00:00,4,0,1,1,9.02,12.88,69,6.0032,0,26,26 +2012-12-14 02:00:00,4,0,1,1,9.02,13.635,69,0,3,6,9 +2012-12-14 03:00:00,4,0,1,1,8.2,11.365,69,7.0015,0,12,12 +2012-12-14 04:00:00,4,0,1,1,8.2,11.365,75,6.0032,1,9,10 +2012-12-14 05:00:00,4,0,1,1,8.2,11.365,69,7.0015,0,34,34 +2012-12-14 06:00:00,4,0,1,1,6.56,9.09,80,7.0015,1,112,113 +2012-12-14 07:00:00,4,0,1,1,8.2,10.605,72,7.0015,3,305,308 +2012-12-14 08:00:00,4,0,1,1,8.2,11.365,69,6.0032,13,623,636 +2012-12-14 09:00:00,4,0,1,1,9.84,12.12,75,8.9981,13,330,343 +2012-12-14 10:00:00,4,0,1,1,10.66,12.88,81,12.998,28,162,190 +2012-12-14 11:00:00,4,0,1,1,13.12,15.15,65,12.998,31,180,211 +2012-12-14 12:00:00,4,0,1,1,14.76,17.425,50,12.998,29,244,273 +2012-12-14 13:00:00,4,0,1,1,14.76,17.425,50,15.0013,39,274,313 +2012-12-14 14:00:00,4,0,1,1,16.4,20.455,43,12.998,48,251,299 +2012-12-14 15:00:00,4,0,1,1,16.4,20.455,47,11.0014,57,252,309 +2012-12-14 16:00:00,4,0,1,1,15.58,19.695,54,12.998,45,372,417 +2012-12-14 17:00:00,4,0,1,1,13.94,16.665,57,11.0014,40,582,622 +2012-12-14 18:00:00,4,0,1,1,14.76,17.425,46,8.9981,23,432,455 +2012-12-14 19:00:00,4,0,1,1,13.94,17.425,53,6.0032,17,302,319 +2012-12-14 20:00:00,4,0,1,1,13.12,16.665,61,8.9981,12,209,221 +2012-12-14 21:00:00,4,0,1,1,12.3,15.15,75,11.0014,7,165,172 +2012-12-14 22:00:00,4,0,1,1,11.48,14.395,75,7.0015,4,134,138 +2012-12-14 23:00:00,4,0,1,1,11.48,15.15,75,6.0032,11,123,134 +2012-12-15 00:00:00,4,0,0,1,12.3,16.665,70,0,4,90,94 +2012-12-15 01:00:00,4,0,0,2,10.66,14.395,81,6.0032,9,86,95 +2012-12-15 02:00:00,4,0,0,1,10.66,15.15,81,0,6,63,69 +2012-12-15 03:00:00,4,0,0,2,9.84,14.395,81,0,5,18,23 +2012-12-15 04:00:00,4,0,0,2,9.84,12.88,87,7.0015,1,5,6 +2012-12-15 05:00:00,4,0,0,2,10.66,15.15,75,0,0,3,3 +2012-12-15 06:00:00,4,0,0,2,9.84,14.395,75,0,0,11,11 +2012-12-15 07:00:00,4,0,0,2,9.84,12.88,75,6.0032,1,47,48 +2012-12-15 08:00:00,4,0,0,2,10.66,14.395,75,6.0032,8,111,119 +2012-12-15 09:00:00,4,0,0,1,10.66,13.635,75,7.0015,17,203,220 +2012-12-15 10:00:00,4,0,0,1,13.12,15.91,61,11.0014,23,250,273 +2012-12-15 11:00:00,4,0,0,1,13.94,17.425,61,6.0032,66,327,393 +2012-12-15 12:00:00,4,0,0,1,15.58,19.695,50,6.0032,89,364,453 +2012-12-15 13:00:00,4,0,0,1,15.58,19.695,54,16.9979,88,368,456 +2012-12-15 14:00:00,4,0,0,1,16.4,20.455,50,11.0014,92,334,426 +2012-12-15 15:00:00,4,0,0,1,17.22,21.21,47,0,95,352,447 +2012-12-15 16:00:00,4,0,0,1,16.4,20.455,50,8.9981,85,328,413 +2012-12-15 17:00:00,4,0,0,1,16.4,20.455,50,15.0013,35,274,309 +2012-12-15 18:00:00,4,0,0,1,15.58,19.695,58,11.0014,40,232,272 +2012-12-15 19:00:00,4,0,0,1,14.76,17.425,62,8.9981,32,225,257 +2012-12-15 20:00:00,4,0,0,2,14.76,17.425,57,12.998,23,178,201 +2012-12-15 21:00:00,4,0,0,1,14.76,17.425,62,8.9981,15,169,184 +2012-12-15 22:00:00,4,0,0,1,14.76,17.425,62,12.998,22,134,156 +2012-12-15 23:00:00,4,0,0,2,14.76,17.425,62,8.9981,11,108,119 +2012-12-16 00:00:00,4,0,0,2,14.76,18.94,62,0,8,102,110 +2012-12-16 01:00:00,4,0,0,3,13.94,17.425,76,7.0015,14,82,96 +2012-12-16 02:00:00,4,0,0,2,13.94,17.425,87,6.0032,8,79,87 +2012-12-16 03:00:00,4,0,0,2,13.94,16.665,87,12.998,1,37,38 +2012-12-16 04:00:00,4,0,0,2,13.94,18.18,87,0,1,10,11 +2012-12-16 05:00:00,4,0,0,2,13.94,18.18,87,0,0,9,9 +2012-12-16 06:00:00,4,0,0,2,13.94,18.18,87,0,0,6,6 +2012-12-16 07:00:00,4,0,0,2,13.94,17.425,87,6.0032,5,22,27 +2012-12-16 08:00:00,4,0,0,2,14.76,17.425,87,8.9981,12,76,88 +2012-12-16 09:00:00,4,0,0,2,14.76,17.425,87,8.9981,19,113,132 +2012-12-16 10:00:00,4,0,0,2,14.76,17.425,87,8.9981,42,215,257 +2012-12-16 11:00:00,4,0,0,2,14.76,17.425,87,8.9981,47,248,295 +2012-12-16 12:00:00,4,0,0,2,15.58,19.695,82,12.998,67,350,417 +2012-12-16 13:00:00,4,0,0,2,15.58,19.695,76,12.998,67,289,356 +2012-12-16 14:00:00,4,0,0,2,15.58,19.695,76,8.9981,50,260,310 +2012-12-16 15:00:00,4,0,0,2,15.58,19.695,82,7.0015,46,292,338 +2012-12-16 16:00:00,4,0,0,2,15.58,19.695,82,7.0015,66,334,400 +2012-12-16 17:00:00,4,0,0,2,15.58,19.695,82,7.0015,29,214,243 +2012-12-16 18:00:00,4,0,0,3,15.58,19.695,82,7.0015,8,99,107 +2012-12-16 19:00:00,4,0,0,1,14.76,17.425,93,8.9981,10,99,109 +2012-12-16 20:00:00,4,0,0,2,15.58,19.695,82,0,14,108,122 +2012-12-16 21:00:00,4,0,0,2,14.76,18.94,93,0,14,92,106 +2012-12-16 22:00:00,4,0,0,2,16.4,20.455,82,12.998,6,83,89 +2012-12-16 23:00:00,4,0,0,2,14.76,17.425,93,8.9981,4,29,33 +2012-12-17 00:00:00,4,0,1,2,15.58,19.695,87,0,2,26,28 +2012-12-17 01:00:00,4,0,1,2,15.58,19.695,87,7.0015,1,14,15 +2012-12-17 02:00:00,4,0,1,2,15.58,19.695,94,0,1,4,5 +2012-12-17 03:00:00,4,0,1,2,14.76,18.94,93,0,0,3,3 +2012-12-17 04:00:00,4,0,1,3,14.76,18.94,100,0,2,3,5 +2012-12-17 05:00:00,4,0,1,2,15.58,19.695,87,0,0,24,24 +2012-12-17 06:00:00,4,0,1,2,14.76,17.425,93,8.9981,1,107,108 +2012-12-17 07:00:00,4,0,1,2,14.76,17.425,93,8.9981,5,314,319 +2012-12-17 08:00:00,4,0,1,2,15.58,19.695,87,7.0015,10,582,592 +2012-12-17 09:00:00,4,0,1,2,16.4,20.455,87,0,11,271,282 +2012-12-17 10:00:00,4,0,1,2,15.58,19.695,87,6.0032,15,120,135 +2012-12-17 11:00:00,4,0,1,2,16.4,20.455,87,6.0032,22,148,170 +2012-12-17 12:00:00,4,0,1,2,16.4,20.455,87,0,21,211,232 +2012-12-17 13:00:00,4,0,1,2,16.4,20.455,87,8.9981,16,194,210 +2012-12-17 14:00:00,4,0,1,2,16.4,20.455,87,6.0032,12,169,181 +2012-12-17 15:00:00,4,0,1,2,17.22,21.21,88,0,15,196,211 +2012-12-17 16:00:00,4,0,1,3,16.4,20.455,94,16.9979,15,287,302 +2012-12-17 17:00:00,4,0,1,2,16.4,20.455,94,16.9979,17,478,495 +2012-12-17 18:00:00,4,0,1,2,16.4,20.455,94,6.0032,14,493,507 +2012-12-17 19:00:00,4,0,1,2,17.22,21.21,88,8.9981,7,333,340 +2012-12-17 20:00:00,4,0,1,2,17.22,21.21,94,16.9979,8,192,200 +2012-12-17 21:00:00,4,0,1,2,17.22,21.21,94,8.9981,6,114,120 +2012-12-17 22:00:00,4,0,1,2,17.22,21.21,94,8.9981,5,49,54 +2012-12-17 23:00:00,4,0,1,3,17.22,21.21,94,15.0013,6,41,47 +2012-12-18 00:00:00,4,0,1,2,18.04,21.97,94,8.9981,0,18,18 +2012-12-18 01:00:00,4,0,1,2,18.04,21.97,94,8.9981,0,15,15 +2012-12-18 02:00:00,4,0,1,2,18.04,21.97,88,15.0013,2,5,7 +2012-12-18 03:00:00,4,0,1,1,17.22,21.21,88,12.998,0,5,5 +2012-12-18 04:00:00,4,0,1,1,17.22,21.21,82,11.0014,3,5,8 +2012-12-18 05:00:00,4,0,1,1,15.58,19.695,87,6.0032,0,36,36 +2012-12-18 06:00:00,4,0,1,1,14.76,17.425,93,11.0014,1,117,118 +2012-12-18 07:00:00,4,0,1,1,14.76,17.425,93,8.9981,4,351,355 +2012-12-18 08:00:00,4,0,1,1,15.58,19.695,94,0,10,652,662 +2012-12-18 09:00:00,4,0,1,1,16.4,20.455,87,6.0032,19,307,326 +2012-12-18 10:00:00,4,0,1,1,18.04,21.97,77,6.0032,22,162,184 +2012-12-18 11:00:00,4,0,1,1,19.68,23.485,63,15.0013,58,211,269 +2012-12-18 12:00:00,4,0,1,3,19.68,23.485,48,16.9979,49,264,313 +2012-12-18 13:00:00,4,0,1,1,20.5,24.24,42,19.0012,51,235,286 +2012-12-18 14:00:00,4,0,1,1,18.86,22.725,47,30.0026,56,191,247 +2012-12-18 15:00:00,4,0,1,1,18.86,22.725,44,32.9975,28,218,246 +2012-12-18 16:00:00,4,0,1,1,18.04,21.97,41,31.0009,40,323,363 +2012-12-18 17:00:00,4,0,1,1,16.4,20.455,47,30.0026,39,533,572 +2012-12-18 18:00:00,4,0,1,1,15.58,19.695,46,22.0028,13,512,525 +2012-12-18 19:00:00,4,0,1,1,15.58,19.695,46,26.0027,19,334,353 +2012-12-18 20:00:00,4,0,1,1,14.76,16.665,50,16.9979,4,264,268 +2012-12-18 21:00:00,4,0,1,1,14.76,17.425,50,15.0013,9,159,168 +2012-12-18 22:00:00,4,0,1,1,13.94,16.665,49,0,5,127,132 +2012-12-18 23:00:00,4,0,1,1,13.94,17.425,49,6.0032,1,80,81 +2012-12-19 00:00:00,4,0,1,1,12.3,15.91,61,0,6,35,41 +2012-12-19 01:00:00,4,0,1,1,12.3,15.91,65,6.0032,1,14,15 +2012-12-19 02:00:00,4,0,1,1,11.48,15.15,65,6.0032,1,2,3 +2012-12-19 03:00:00,4,0,1,1,10.66,13.635,75,8.9981,0,5,5 +2012-12-19 04:00:00,4,0,1,1,9.84,12.12,75,8.9981,1,6,7 +2012-12-19 05:00:00,4,0,1,1,10.66,14.395,75,6.0032,2,29,31 +2012-12-19 06:00:00,4,0,1,1,9.84,12.88,75,6.0032,3,109,112 +2012-12-19 07:00:00,4,0,1,1,10.66,13.635,75,8.9981,3,360,363 +2012-12-19 08:00:00,4,0,1,1,9.84,12.88,87,7.0015,13,665,678 +2012-12-19 09:00:00,4,0,1,1,11.48,14.395,75,7.0015,8,309,317 +2012-12-19 10:00:00,4,0,1,1,13.12,16.665,70,7.0015,17,147,164 +2012-12-19 11:00:00,4,0,1,1,16.4,20.455,54,15.0013,31,169,200 +2012-12-19 12:00:00,4,0,1,1,16.4,20.455,54,19.0012,33,203,236 +2012-12-19 13:00:00,4,0,1,1,17.22,21.21,50,12.998,30,183,213 +2012-12-19 14:00:00,4,0,1,1,17.22,21.21,50,12.998,33,185,218 +2012-12-19 15:00:00,4,0,1,1,17.22,21.21,50,19.0012,28,209,237 +2012-12-19 16:00:00,4,0,1,1,17.22,21.21,50,23.9994,37,297,334 +2012-12-19 17:00:00,4,0,1,1,16.4,20.455,50,26.0027,26,536,562 +2012-12-19 18:00:00,4,0,1,1,15.58,19.695,50,23.9994,23,546,569 +2012-12-19 19:00:00,4,0,1,1,15.58,19.695,50,26.0027,7,329,336 +2012-12-19 20:00:00,4,0,1,1,14.76,17.425,57,15.0013,10,231,241 +2012-12-19 21:00:00,4,0,1,1,13.94,15.91,61,15.0013,4,164,168 +2012-12-19 22:00:00,4,0,1,1,13.94,17.425,61,6.0032,12,117,129 +2012-12-19 23:00:00,4,0,1,1,13.12,16.665,66,8.9981,4,84,88 diff --git a/data/chipotle.tsv b/data/chipotle.tsv new file mode 100644 index 0000000..1ba6958 --- /dev/null +++ b/data/chipotle.tsv @@ -0,0 +1,4623 @@ +order_id quantity item_name choice_description item_price +1 1 Chips and Fresh Tomato Salsa NULL $2.39 +1 1 Izze [Clementine] $3.39 +1 1 Nantucket Nectar [Apple] $3.39 +1 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +2 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $16.98 +3 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +3 1 Side of Chips NULL $1.69 +4 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +4 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +5 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +5 1 Chips and Guacamole NULL $4.45 +6 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +6 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +7 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +7 1 Chips and Guacamole NULL $4.45 +8 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +8 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Cheese, Sour Cream]] $8.49 +9 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +9 2 Canned Soda [Sprite] $2.18 +10 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +10 1 Chips and Guacamole NULL $4.45 +11 1 Barbacoa Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +11 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +12 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +12 1 Izze [Grapefruit] $3.39 +13 1 Chips and Fresh Tomato Salsa NULL $2.39 +13 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +14 1 Carnitas Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Sour Cream, Lettuce]] $8.99 +14 1 Canned Soda [Dr. Pepper] $1.09 +15 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +15 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +16 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Sour Cream]] $8.99 +16 1 Side of Chips NULL $1.69 +17 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +17 1 Bottled Water NULL $1.09 +18 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, Rice] $8.75 +18 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +18 1 Chips and Guacamole NULL $4.45 +18 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +19 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +19 1 Chips NULL $2.15 +20 1 Chips and Guacamole NULL $4.45 +20 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +20 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +20 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +21 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +21 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese]] $8.99 +21 1 Izze [Blackberry] $3.39 +22 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +22 1 Chips and Guacamole NULL $3.99 +23 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +23 2 Canned Soda [Mountain Dew] $2.18 +24 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +24 1 Canned Soda [Sprite] $1.09 +25 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +25 1 Chips and Fresh Tomato Salsa NULL $2.39 +26 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Lettuce]] $9.25 +26 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +27 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +27 1 Chips NULL $2.15 +28 1 Chips and Guacamole NULL $4.45 +28 1 Steak Soft Tacos [Fresh Tomato Salsa, Cheese] $9.25 +28 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +28 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +29 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +29 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +30 1 Izze [Blackberry] $3.39 +30 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese]] $8.99 +30 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +31 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +31 1 Side of Chips NULL $1.69 +32 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +32 1 Chips and Guacamole NULL $3.99 +33 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +33 1 Chips and Guacamole NULL $4.45 +34 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +34 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +34 1 Chips NULL $2.15 +34 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +35 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +35 1 Chips NULL $2.15 +36 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +36 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +37 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +37 1 Steak Soft Tacos [Tomatillo Red Chili Salsa] $9.25 +38 1 Veggie Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +38 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +38 1 Bottled Water NULL $1.09 +39 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +39 1 Chips and Fresh Tomato Salsa NULL $2.95 +40 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +40 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole]] $11.75 +40 1 Steak Crispy Tacos [Fresh Tomato Salsa, Sour Cream] $9.25 +41 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Sour Cream, Guacamole]] $11.75 +41 1 Chips and Guacamole NULL $4.45 +42 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +42 1 Chips and Guacamole NULL $4.45 +43 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +43 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +44 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Lettuce]] $8.75 +44 1 Chips and Guacamole NULL $4.45 +45 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +45 1 Steak Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +45 1 Chips and Guacamole NULL $3.99 +46 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +46 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +47 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies, Sour Cream]] $8.99 +47 1 Canned Soda [Dr. Pepper] $1.09 +48 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +48 1 Chips and Guacamole NULL $4.45 +49 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +49 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +49 1 Chips and Guacamole NULL $4.45 +50 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +50 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +51 1 Barbacoa Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +51 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Cheese, Lettuce]] $8.49 +51 1 Canned Soda [Diet Dr. Pepper] $1.09 +52 1 Steak Soft Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream, Lettuce]] $8.99 +52 1 Chips and Guacamole NULL $3.99 +53 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +53 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +53 1 Chips and Guacamole NULL $4.45 +54 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Sour Cream, Fajita Vegetables, Rice]] $11.25 +54 1 Chips and Guacamole NULL $4.45 +55 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies, Sour Cream]] $8.99 +55 1 Canned Soda [Coca Cola] $1.09 +56 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +56 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +56 1 Chips and Guacamole NULL $4.45 +57 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +57 1 Chips and Guacamole NULL $4.45 +58 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +58 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +59 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $10.98 +60 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $22.50 +61 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +61 1 Chips and Guacamole NULL $4.45 +62 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +62 1 Chips and Guacamole NULL $4.45 +63 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +63 1 Chips and Guacamole NULL $4.45 +64 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +64 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +65 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.75 +65 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +65 1 Chips and Guacamole NULL $4.45 +66 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +67 2 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $17.98 +67 1 Side of Chips NULL $1.69 +68 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $17.50 +68 1 Chips and Guacamole NULL $4.45 +69 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +69 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +70 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +70 1 Chips and Guacamole NULL $4.45 +71 1 Chips and Guacamole NULL $4.45 +71 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +71 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +72 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +73 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +73 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +73 2 Canned Soda [Diet Coke] $2.18 +74 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +74 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +74 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +75 1 Chips and Guacamole NULL $4.45 +75 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +75 1 Barbacoa Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +75 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +76 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +76 2 Canned Soda [Diet Dr. Pepper] $2.18 +77 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +77 1 Nantucket Nectar [Apple] $3.39 +78 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), Lettuce] $8.49 +78 1 Steak Soft Tacos [Roasted Chili Corn Salsa (Medium), Lettuce] $8.99 +79 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +80 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +81 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +81 1 Canned Soda [Coca Cola] $1.09 +81 1 Canned Soda [Dr. Pepper] $1.09 +82 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +82 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +82 1 Chips and Fresh Tomato Salsa NULL $2.95 +83 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +83 1 Chips and Guacamole NULL $4.45 +83 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +84 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Guacamole, Lettuce]] $11.48 +84 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +84 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +85 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Fajita Veggies, Cheese, Lettuce, Sour Cream, Rice]] $8.99 +85 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +86 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +86 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +86 1 Chips and Fresh Tomato Salsa NULL $2.95 +87 1 Canned Soda [Coca Cola] $1.09 +87 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +88 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +88 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +89 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +89 1 Canned Soda [Diet Coke] $1.09 +89 1 Chips and Guacamole NULL $3.99 +90 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +90 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +91 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +91 1 Nantucket Nectar [Peach Orange] $3.39 +92 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +92 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +92 1 Chips NULL $2.15 +93 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Chips and Guacamole NULL $4.45 +94 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole]] $22.50 +95 1 Chips and Guacamole NULL $4.45 +95 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +96 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +96 2 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Lettuce]] $17.50 +96 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +97 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +97 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +97 1 Chips NULL $2.15 +98 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +98 2 Chips NULL $4.30 +98 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +99 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +99 1 Chips NULL $2.15 +100 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +100 1 Canned Soda [Mountain Dew] $1.09 +101 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +101 1 Chips and Guacamole NULL $3.99 +102 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +102 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +102 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +103 2 Chips and Tomatillo Green Chili Salsa NULL $5.90 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +103 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Cheese]] $9.25 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +104 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +104 1 Chips and Fresh Tomato Salsa NULL $2.95 +105 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +106 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +106 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +107 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +108 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +108 1 Canned Soda [Mountain Dew] $1.09 +108 1 Canned Soda [Dr. Pepper] $1.09 +108 1 Canned Soda [Mountain Dew] $1.09 +108 1 Barbacoa Burrito [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Cheese]] $8.99 +109 1 Chicken Salad [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +109 1 Canned Soda [Diet Dr. Pepper] $1.09 +110 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +110 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +110 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +110 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $9.25 +111 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +111 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +112 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +112 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +113 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +113 1 Canned Soda [Mountain Dew] $1.09 +114 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +114 1 Canned Soft Drink [Coke] $1.25 +115 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice]] $8.99 +115 1 Chips and Fresh Tomato Salsa NULL $2.39 +116 1 Steak Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +116 1 Chips and Fresh Tomato Salsa NULL $2.95 +117 1 Barbacoa Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +117 1 Chips and Guacamole NULL $3.99 +118 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +118 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +119 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +119 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +120 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +120 1 Side of Chips NULL $1.69 +121 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +121 1 Chips and Guacamole NULL $3.99 +122 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Lettuce]] $8.99 +122 1 Side of Chips NULL $1.69 +122 1 Canned Soda [Coca Cola] $1.09 +123 2 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Guacamole]] $23.78 +124 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +124 1 Chips NULL $2.15 +124 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +125 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Lettuce]] $9.25 +125 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +125 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +125 1 Chips and Guacamole NULL $4.45 +126 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +126 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +127 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +127 1 Canned Soft Drink [Sprite] $1.25 +128 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +128 1 Chips and Guacamole NULL $4.45 +128 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce, Guacamole, Sour Cream, Cheese, Black Beans, Rice]] $11.25 +129 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +129 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +129 1 6 Pack Soft Drink [Sprite] $6.49 +130 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Lettuce] $8.99 +130 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +131 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +131 1 Chips and Fresh Tomato Salsa NULL $2.39 +132 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +132 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +132 1 Chips NULL $2.15 +133 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +133 1 Side of Chips NULL $1.69 +134 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +134 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +134 1 Chips NULL $2.15 +135 1 Chips and Guacamole NULL $4.45 +135 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +136 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Fajita Veggies] $8.49 +136 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Cheese, Lettuce]] $8.99 +137 2 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $17.50 +138 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +138 1 Canned Soda [Diet Coke] $1.09 +138 1 Bottled Water NULL $1.09 +139 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream]] $8.75 +139 1 Canned Soft Drink [Coke] $1.25 +139 1 Chips NULL $2.15 +140 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $11.08 +141 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +141 1 Chicken Soft Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +142 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), Rice] $8.99 +142 1 Chips and Fresh Tomato Salsa NULL $2.39 +143 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +143 1 Chips NULL $2.15 +143 1 Bottled Water NULL $1.50 +144 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +144 1 Chips NULL $2.15 +145 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +145 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream]] $8.49 +146 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +146 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +147 1 Steak Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Cheese, Guacamole, Lettuce]] $11.75 +147 1 Canned Soft Drink [Coke] $1.25 +148 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +148 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +148 1 Chips and Guacamole NULL $4.45 +148 1 6 Pack Soft Drink [Diet Coke] $6.49 +149 1 Steak Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +149 1 Chips and Fresh Tomato Salsa NULL $2.95 +149 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Guacamole, Lettuce]] $11.25 +149 1 Chips and Guacamole NULL $4.45 +149 1 Canned Soft Drink [Lemonade] $1.25 +149 1 Canned Soft Drink [Sprite] $1.25 +150 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +150 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +150 2 Canned Soda [Diet Coke] $2.18 +151 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +151 2 Canned Soda [Coca Cola] $2.18 +152 2 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $22.16 +153 2 Chicken Soft Tacos [Fresh Tomato Salsa, Sour Cream] $17.50 +154 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +154 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +154 1 6 Pack Soft Drink [Coke] $6.49 +155 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream]] $8.99 +155 1 Izze [Blackberry] $3.39 +155 1 Izze [Grapefruit] $3.39 +156 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.99 +156 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +157 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +157 1 Chips NULL $2.15 +158 1 Chicken Crispy Tacos [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +158 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +159 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +159 1 Canned Soft Drink [Diet Coke] $1.25 +160 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.99 +160 1 Canned Soda [Diet Coke] $1.09 +161 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +161 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +162 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +162 1 Chips and Fresh Tomato Salsa NULL $2.95 +163 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +163 1 Bottled Water NULL $1.50 +164 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +164 1 Canned Soda [Mountain Dew] $1.09 +165 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +165 1 Canned Soft Drink [Coke] $1.25 +165 1 Canned Soft Drink [Coke] $1.25 +166 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +166 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +166 1 Chips NULL $2.15 +167 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +167 1 Side of Chips NULL $1.69 +168 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +168 1 6 Pack Soft Drink [Diet Coke] $6.49 +169 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream]] $8.75 +169 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +170 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +170 1 Chips and Guacamole NULL $4.45 +170 1 Canned Soft Drink [Coke] $1.25 +171 1 Veggie Burrito [Tomatillo Green Chili Salsa, Guacamole] $11.25 +171 1 Chips and Guacamole NULL $4.45 +172 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +172 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +173 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +173 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Lettuce]] $8.99 +174 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +174 1 Canned Soft Drink [Sprite] $1.25 +175 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +175 1 Canned Soft Drink [Coke] $1.25 +176 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +176 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +176 1 Chips and Guacamole NULL $4.45 +177 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +177 1 Chips NULL $2.15 +178 3 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $32.94 +179 1 Canned Soft Drink [Coke] $1.25 +179 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +180 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +180 1 Side of Chips NULL $1.69 +180 1 Canned Soda [Dr. Pepper] $1.09 +181 2 Chicken Bowl [Tomatillo Red Chili Salsa] $17.50 +182 1 Chips and Guacamole NULL $4.45 +182 1 6 Pack Soft Drink [Diet Coke] $6.49 +182 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +183 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +183 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +184 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +184 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Lettuce]] $8.75 +184 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +184 1 Chips NULL $2.15 +184 1 Chips and Fresh Tomato Salsa NULL $2.95 +185 2 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $17.50 +186 1 Chicken Soft Tacos [[Tomatillo-Red Chili Salsa (Hot), Roasted Chili Corn Salsa (Medium)], [Guacamole, Cheese, Sour Cream]] $10.98 +186 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +186 1 Barbacoa Crispy Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream, Guacamole]] $11.48 +186 1 Izze [Grapefruit] $3.39 +187 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +187 1 Side of Chips NULL $1.69 +188 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +188 1 Canned Soda [Coca Cola] $1.09 +189 1 Veggie Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Pinto Beans, Fajita Veggies, Guacamole, Lettuce]] $10.98 +189 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +190 1 Steak Crispy Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Sour Cream]] $8.99 +190 1 Canned Soda [Dr. Pepper] $1.09 +191 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +191 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +192 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +192 1 Chips and Guacamole NULL $4.45 +192 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +192 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +193 3 Bowl [Braised Carnitas, Pinto Beans, [Sour Cream, Cheese, Cilantro-Lime Rice]] $22.20 +194 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +194 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +195 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +195 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $8.75 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +195 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $9.25 +195 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +195 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +196 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +196 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +196 1 Chips and Fresh Tomato Salsa NULL $2.95 +196 1 Canned Soft Drink [Coke] $1.25 +197 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +197 1 Side of Chips NULL $1.69 +198 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +198 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +199 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +199 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +199 1 Chips and Guacamole NULL $4.45 +200 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +200 1 Chips and Guacamole NULL $3.99 +201 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Cheese]] $8.49 +201 1 Chips and Guacamole NULL $3.99 +202 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Guacamole]] $11.48 +202 1 Side of Chips NULL $1.69 +202 1 Canned Soda [Diet Dr. Pepper] $1.09 +203 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +203 1 Bottled Water NULL $1.50 +204 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Fajita Veggies, Sour Cream, Cheese]] $10.58 +204 1 Side of Chips NULL $1.69 +205 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +205 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +205 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +205 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +205 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +205 1 Chicken Burrito [Fresh Tomato Salsa, Cheese] $8.75 +205 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +205 1 Chips NULL $2.15 +206 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +206 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +206 2 Canned Soft Drink [Diet Coke] $2.50 +206 1 Chips and Guacamole NULL $4.45 +207 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese]] $9.25 +207 1 Chips and Guacamole NULL $4.45 +207 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Rice, Lettuce, Guacamole, Fajita Vegetables, Cheese, Sour Cream, Black Beans]] $11.25 +208 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese]] $8.49 +208 1 Chips and Guacamole NULL $3.99 +209 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Lettuce]] $9.25 +209 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +210 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +210 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +211 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +211 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +212 1 Canned Soft Drink [Lemonade] $1.25 +212 2 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +212 1 Canned Soft Drink [Coke] $1.25 +213 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), Rice] $8.99 +213 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), Rice] $8.49 +214 1 Burrito [Adobo-Marinated and Grilled Chicken, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +214 1 Burrito [Braised Barbacoa, Vegetarian Black Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice]] $7.40 +215 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +215 1 Canned Soft Drink [Diet Coke] $1.25 +215 1 Chips and Guacamole NULL $4.45 +215 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +215 1 Chips NULL $2.15 +216 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +216 1 Chips and Guacamole NULL $4.45 +217 1 Burrito [Braised Barbacoa, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +217 1 Crispy Tacos [Adobo-Marinated and Grilled Steak] $7.40 +217 1 Crispy Tacos [Adobo-Marinated and Grilled Chicken] $7.40 +218 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream]] $8.99 +218 1 Chips and Guacamole NULL $3.99 +219 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +219 1 Side of Chips NULL $1.69 +220 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +220 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +221 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Lettuce]] $8.75 +221 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +222 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +222 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +222 1 Chips and Fresh Tomato Salsa NULL $2.95 +223 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +223 2 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Lettuce, Cheese, Rice]] $18.50 +224 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +224 1 Chips and Guacamole NULL $3.99 +225 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +225 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Pinto Beans, Black Beans]] $9.25 +225 1 Steak Burrito [Tomatillo Green Chili Salsa, Cheese] $9.25 +225 2 Bottled Water NULL $3.00 +225 1 Canned Soft Drink [Diet Coke] $1.25 +226 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +226 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +226 1 Chips and Guacamole NULL $4.45 +227 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +227 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Lettuce, Guacamole]] $11.25 +227 1 Chips and Guacamole NULL $4.45 +228 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +229 2 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $22.16 +230 1 Chips and Guacamole NULL $4.45 +230 1 Chicken Burrito [Tomatillo Red Chili Salsa] $8.75 +230 1 Steak Burrito [Tomatillo Green Chili Salsa] $9.25 +230 1 6 Pack Soft Drink [Diet Coke] $6.49 +230 1 Carnitas Crispy Tacos [Roasted Chili Corn Salsa] $9.25 +231 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +231 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +231 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +231 1 Chips NULL $2.15 +231 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +231 1 Chips and Guacamole NULL $4.45 +232 1 Barbacoa Burrito [Roasted Chili Corn Salsa] $9.25 +232 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +233 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +233 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +233 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese]] $9.25 +233 1 Canned Soft Drink [Diet Coke] $1.25 +233 1 Canned Soft Drink [Diet Coke] $1.25 +234 1 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +234 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $8.75 +234 1 Steak Soft Tacos [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese]] $9.25 +234 1 Chips and Guacamole NULL $4.45 +235 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Lettuce, Guacamole]] $11.75 +235 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +235 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +236 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +236 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +237 2 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $16.98 +237 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +237 1 Izze [Clementine] $3.39 +237 1 Izze [Grapefruit] $3.39 +238 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Lettuce]] $9.25 +238 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +239 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +239 1 Chips NULL $2.15 +240 1 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +240 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +240 1 Chips and Guacamole NULL $4.45 +241 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +242 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +242 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa] $9.25 +243 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $22.50 +244 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $9.25 +244 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +244 1 Bottled Water NULL $1.50 +245 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +246 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +246 1 Side of Chips NULL $1.69 +247 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +247 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +247 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +247 2 Nantucket Nectar [Pineapple Orange Banana] $6.78 +248 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.75 +248 1 Chips and Guacamole NULL $4.45 +249 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +249 1 Chips and Guacamole NULL $4.45 +250 1 Steak Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Guacamole, Lettuce]] $11.89 +250 1 Steak Salad Bowl [Fresh Tomato Salsa, Lettuce] $9.39 +251 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +251 1 Chips and Fresh Tomato Salsa NULL $2.95 +251 1 Canned Soft Drink [Nestea] $1.25 +252 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +252 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +253 2 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $23.78 +254 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +254 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +254 1 Chips NULL $2.15 +254 1 Chips NULL $2.15 +254 1 Canned Soft Drink [Diet Coke] $1.25 +255 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +255 1 Chips and Guacamole NULL $3.99 +256 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +256 1 Canned Soda [Dr. Pepper] $1.09 +257 1 Veggie Burrito [Tomatillo Green Chili Salsa] $8.75 +257 1 Chips and Guacamole NULL $4.45 +258 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +258 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.75 +258 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +258 1 Chips and Guacamole NULL $4.45 +259 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +259 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +260 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +260 1 Chips and Guacamole NULL $3.99 +261 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +262 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Guacamole]] $11.25 +262 1 Canned Soft Drink [Coke] $1.25 +263 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +263 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +264 2 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $18.50 +264 1 6 Pack Soft Drink [Diet Coke] $6.49 +265 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +265 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +265 1 Chips and Guacamole NULL $4.45 +266 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +266 1 Chips and Guacamole NULL $3.99 +267 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +267 1 Canned Soda [Sprite] $1.09 +268 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +268 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +269 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +269 1 Side of Chips NULL $1.69 +270 2 Canned Soft Drink [Coke] $2.50 +270 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +270 1 Bottled Water NULL $1.50 +271 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +271 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +272 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +272 1 Chips and Guacamole NULL $4.45 +273 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +273 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +274 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +274 1 Side of Chips NULL $1.69 +275 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +275 1 Chips and Guacamole NULL $3.99 +276 1 Steak Salad [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +276 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +276 1 Chips and Guacamole NULL $3.99 +276 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +277 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +277 1 Chips and Guacamole NULL $4.45 +277 1 Canned Soft Drink [Lemonade] $1.25 +278 1 Chips and Guacamole NULL $3.99 +278 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +279 1 Bowl [Adobo-Marinated and Grilled Steak, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +279 1 Chips and Mild Fresh Tomato Salsa NULL $3.00 +279 1 Burrito [Adobo-Marinated and Grilled Chicken, [Sour Cream, Cheese, Cilantro-Lime Rice]] $7.40 +279 1 Chips and Guacamole NULL $4.00 +280 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +280 1 Chips and Guacamole NULL $3.99 +281 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +281 1 Chips and Guacamole NULL $4.45 +282 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Guacamole, Cheese]] $11.25 +282 1 Canned Soft Drink [Coke] $1.25 +282 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.75 +282 1 Canned Soft Drink [Coke] $1.25 +283 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +283 1 Chips NULL $2.15 +284 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +284 1 Chips and Guacamole NULL $4.45 +284 3 Canned Soft Drink [Diet Coke] $3.75 +284 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +285 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +285 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +286 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce]] $8.75 +286 1 Chips and Guacamole NULL $4.45 +286 1 Canned Soft Drink [Diet Coke] $1.25 +287 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +287 1 Chicken Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +287 2 Canned Soda [Coca Cola] $2.18 +288 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +288 2 Canned Soda [Coca Cola] $2.18 +288 1 Bottled Water NULL $1.09 +289 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Lettuce]] $8.75 +289 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +289 1 Canned Soft Drink [Lemonade] $1.25 +290 1 Bottled Water NULL $1.50 +290 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +291 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +291 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +291 1 Canned Soft Drink [Lemonade] $1.25 +292 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +292 1 Chips and Guacamole NULL $3.99 +293 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +294 1 Chips and Guacamole NULL $3.99 +294 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +295 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +295 1 Canned Soft Drink [Diet Coke] $1.25 +296 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +296 1 Side of Chips NULL $1.69 +297 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +297 1 Canned Soft Drink [Coke] $1.25 +298 1 6 Pack Soft Drink [Nestea] $6.49 +298 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +299 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +299 1 Chicken Burrito [Fresh Tomato Salsa] $8.75 +299 1 Chips and Fresh Tomato Salsa NULL $2.95 +300 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +300 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +301 1 Steak Burrito [Roasted Chili Corn (Medium), [Sour Cream, Cheese]] $8.69 +301 1 Steak Crispy Tacos [Fresh Tomato (Mild), [Lettuce, Cheese]] $8.69 +301 1 Chips and Fresh Tomato Salsa NULL $2.29 +302 1 Chips and Guacamole NULL $3.99 +302 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +303 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +303 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +304 1 Canned Soft Drink [Sprite] $1.25 +304 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +304 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +304 1 Veggie Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +305 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Guacamole, Cheese]] $11.25 +305 1 Canned Soft Drink [Coke] $1.25 +305 1 Steak Burrito [Roasted Chili Corn Salsa] $9.25 +306 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +306 1 6 Pack Soft Drink [Coke] $6.49 +307 1 Chips and Guacamole NULL $3.99 +307 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +308 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +308 1 Chips NULL $2.15 +309 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +309 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.89 +310 1 Barbacoa Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +310 1 Side of Chips NULL $1.69 +311 1 Steak Salad [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +311 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Cheese, Fajita Veggies, Lettuce, Sour Cream, Rice, Black Beans]] $8.99 +311 1 Chips and Guacamole NULL $3.99 +311 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce, Black Beans]] $8.99 +312 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +312 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +312 1 Chips NULL $2.15 +313 1 Burrito [White Rice, Adobo-Marinated and Grilled Steak, [Salsa, Cheese]] $7.40 +313 1 Burrito [White Rice, Adobo-Marinated and Grilled Steak, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice]] $7.40 +314 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +314 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +315 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $9.25 +315 1 Chips and Guacamole NULL $4.45 +316 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +316 1 Canned Soft Drink [Sprite] $1.25 +317 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.75 +317 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.25 +317 1 Canned Soft Drink [Coke] $1.25 +318 1 Chips and Guacamole NULL $3.99 +318 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +319 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), Black Beans] $8.49 +319 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), Black Beans] $8.49 +319 1 Steak Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), Pinto Beans] $8.99 +320 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +320 1 Chips NULL $2.15 +320 1 Canned Soft Drink [Sprite] $1.25 +321 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +321 1 Canned Soda [Diet Coke] $1.09 +321 1 Bottled Water NULL $1.09 +322 1 Veggie Soft Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +322 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +322 1 Canned Soft Drink [Nestea] $1.25 +323 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $9.25 +323 1 Canned Soft Drink [Lemonade] $1.25 +323 1 Chips NULL $2.15 +324 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +324 1 Canned Soft Drink [Diet Coke] $1.25 +325 1 Chips and Guacamole NULL $4.45 +325 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +325 2 Canned Soft Drink [Coke] $2.50 +326 2 Chips and Guacamole NULL $8.90 +326 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +326 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +326 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +327 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +327 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +328 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Sour Cream, Guacamole, Lettuce]] $10.98 +328 1 Chips and Guacamole NULL $3.99 +329 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +329 1 Chips and Guacamole NULL $3.99 +330 1 Side of Chips NULL $1.69 +330 1 Barbacoa Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +331 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +331 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $8.75 +332 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Lettuce]] $8.99 +332 1 Canned Soda [Mountain Dew] $1.09 +333 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +333 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +334 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +334 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +335 1 Chips and Guacamole NULL $3.99 +335 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +336 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +336 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +337 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +338 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +338 3 Bottled Water NULL $3.27 +338 1 Chips and Guacamole NULL $3.99 +338 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Sour Cream]] $8.99 +338 1 Canned Soda [Coca Cola] $1.09 +339 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Sour Cream, Cheese]] $11.08 +340 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +340 1 Chips and Guacamole NULL $4.45 +341 1 Steak Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +342 1 Chips and Guacamole NULL $3.99 +342 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Pinto Beans, Sour Cream, Rice]] $8.49 +343 2 Chips NULL $4.30 +343 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese]] $9.25 +343 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +343 1 Veggie Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +343 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +343 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +344 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Sour Cream]] $8.49 +344 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Sour Cream]] $8.99 +344 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream]] $8.49 +345 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +345 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +345 1 Chips and Guacamole NULL $4.45 +346 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +346 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +346 1 Steak Bowl [Tomatillo Green Chili Salsa] $9.25 +346 1 Veggie Bowl [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +347 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +347 1 Chips and Guacamole NULL $4.45 +348 2 Veggie Bowl [Fresh Tomato Salsa (Mild), [Rice, Sour Cream, Cheese, Pinto Beans]] $16.98 +349 1 Veggie Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +349 1 Chips and Fresh Tomato Salsa NULL $2.39 +350 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +350 3 Canned Soft Drink [Sprite] $3.75 +351 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Lettuce]] $9.25 +351 1 Chips and Guacamole NULL $4.45 +352 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +352 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +352 1 Chips and Guacamole NULL $4.45 +353 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +353 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +354 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +354 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +355 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +355 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese]] $9.25 +356 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Sour Cream, Guacamole, Lettuce]] $11.48 +356 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Sour Cream, Lettuce]] $8.99 +357 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +358 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Cheese, Rice, Guacamole]] $11.75 +358 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.25 +358 1 Canned Soft Drink [Coke] $1.25 +359 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +359 1 Chips NULL $2.15 +359 1 Canned Soft Drink [Diet Coke] $1.25 +360 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +360 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +360 1 Canned Soft Drink [Sprite] $1.25 +361 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +361 1 Bottled Water NULL $1.50 +362 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +362 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Guacamole]] $11.25 +363 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +363 1 6 Pack Soft Drink [Coke] $6.49 +363 2 Chips and Guacamole NULL $8.90 +364 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +364 1 Chips and Guacamole NULL $4.45 +365 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +365 1 Canned Soft Drink [Diet Coke] $1.25 +366 2 Chicken Crispy Tacos [Tomatillo Red Chili Salsa] $17.50 +366 1 Steak Burrito [Tomatillo Red Chili Salsa] $9.25 +367 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +367 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +367 2 Bottled Water NULL $3.00 +368 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +368 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +369 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Sour Cream, Guacamole]] $10.98 +369 1 Steak Salad [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +369 1 Chips and Guacamole NULL $3.99 +370 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +370 1 Chips and Guacamole NULL $4.45 +371 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +371 1 Side of Chips NULL $1.69 +372 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +372 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +373 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +373 1 Chips and Guacamole NULL $4.45 +374 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +374 1 Canned Soft Drink [Coke] $1.25 +375 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +375 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +376 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +376 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +376 2 Canned Soda [Mountain Dew] $2.18 +377 2 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $17.98 +377 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +378 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +378 1 Side of Chips NULL $1.69 +379 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +379 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +379 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +379 3 Canned Soft Drink [Lemonade] $3.75 +379 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +380 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +380 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +380 1 Chips NULL $2.15 +380 1 Bottled Water NULL $1.50 +381 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Cheese] $8.49 +381 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Cheese] $8.49 +381 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +382 1 Steak Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice, Cheese]] $8.69 +382 1 Chips and Guacamole NULL $3.89 +383 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +383 1 Chips and Guacamole NULL $4.45 +384 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +384 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +384 1 Chips NULL $2.15 +384 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +385 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +385 1 Side of Chips NULL $1.69 +386 1 Veggie Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese]] $8.49 +386 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +387 1 Canned Soft Drink [Lemonade] $1.25 +387 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +387 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +387 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Lettuce, Guacamole]] $11.75 +388 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +388 1 Bottled Water NULL $1.09 +389 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream]] $8.75 +389 1 Chips and Guacamole NULL $4.45 +389 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Lettuce] $8.75 +389 1 Chips and Fresh Tomato Salsa NULL $2.95 +389 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +389 1 Chips NULL $2.15 +390 1 Chips and Guacamole NULL $3.99 +390 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +391 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +391 1 Chips and Guacamole NULL $3.99 +392 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +392 1 Side of Chips NULL $1.69 +392 1 Canned Soda [Coca Cola] $1.09 +393 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +393 1 Canned Soda [Sprite] $1.09 +394 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +394 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +395 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.99 +395 1 Chips and Fresh Tomato Salsa NULL $2.39 +396 1 Canned Soft Drink [Diet Coke] $1.25 +396 1 Canned Soft Drink [Coke] $1.25 +396 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +396 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +397 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +397 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +398 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +398 1 Bottled Water NULL $1.50 +399 1 Chips and Guacamole NULL $3.99 +399 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Sour Cream]] $8.49 +400 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +400 1 Carnitas Burrito [Tomatillo Red Chili Salsa] $9.25 +400 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +401 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +402 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +402 2 Chips and Guacamole NULL $8.90 +402 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +402 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +403 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +403 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +404 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +404 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +404 1 Chips NULL $2.15 +405 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Cheese, Guacamole]] $11.25 +405 1 Canned Soft Drink [Diet Coke] $1.25 +406 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +406 1 Canned Soft Drink [Diet Coke] $1.25 +407 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +407 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.75 +408 1 Canned Soft Drink [Coke] $1.25 +408 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +408 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +409 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +409 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +410 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +410 1 Canned Soft Drink [Diet Coke] $1.25 +410 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Lettuce]] $8.75 +411 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.49 +411 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +412 1 Bottled Water NULL $1.50 +412 1 Bottled Water NULL $1.50 +412 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +412 1 Chips and Guacamole NULL $4.45 +413 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +413 1 Canned Soft Drink [Coke] $1.25 +413 1 Carnitas Crispy Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +414 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +414 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +415 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +415 1 Chips and Guacamole NULL $4.45 +416 1 Steak Burrito [Tomatillo Red Chili Salsa] $9.25 +416 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +417 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +417 1 Side of Chips NULL $1.69 +418 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Black Beans]] $17.50 +419 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +419 1 Barbacoa Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.99 +419 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +420 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +420 1 Chips and Guacamole NULL $4.45 +421 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +421 1 Chips and Guacamole NULL $4.45 +422 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +422 1 6 Pack Soft Drink [Sprite] $6.49 +423 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +423 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +424 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese]] $8.49 +424 1 Canned Soda [Diet Dr. Pepper] $1.09 +424 1 Side of Chips NULL $1.69 +425 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +425 1 Chips and Guacamole NULL $4.45 +426 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +426 1 Canned Soft Drink [Coke] $1.25 +426 1 Chips and Fresh Tomato Salsa NULL $2.95 +427 1 Chips and Guacamole NULL $3.99 +427 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Cheese]] $8.49 +428 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.75 +428 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Guacamole]] $11.75 +428 1 Chips NULL $2.15 +429 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Guacamole]] $11.48 +430 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +430 1 Chips NULL $2.15 +430 1 Canned Soft Drink [Diet Coke] $1.25 +431 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +431 1 Chips NULL $2.15 +431 1 Canned Soft Drink [Sprite] $1.25 +432 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +432 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +432 1 6 Pack Soft Drink [Coke] $6.49 +433 1 Side of Chips NULL $1.69 +433 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +434 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +434 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +435 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +435 1 Canned Soda [Mountain Dew] $1.09 +436 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +436 1 Izze [Clementine] $3.39 +437 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +437 1 Chips NULL $2.15 +437 1 Canned Soft Drink [Diet Coke] $1.25 +438 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.48 +438 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +439 1 Chicken Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +439 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +440 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +440 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +440 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +441 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +441 1 Chips and Guacamole NULL $4.45 +442 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +443 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +443 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +443 1 Chips and Guacamole NULL $4.45 +444 1 Side of Chips NULL $1.69 +444 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +445 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +445 1 Chips and Guacamole NULL $4.45 +445 1 Bottled Water NULL $1.50 +446 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.75 +446 1 Chips NULL $2.15 +447 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +447 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +448 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +448 1 Chips and Fresh Tomato Salsa NULL $2.95 +448 1 Canned Soft Drink [Coke] $1.25 +449 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +449 1 Chips NULL $2.15 +449 1 Canned Soft Drink [Diet Coke] $1.25 +450 2 Canned Soda [Dr. Pepper] $2.18 +450 2 Canned Soda [Coca Cola] $2.18 +450 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Guacamole]] $11.48 +451 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +451 1 Chips and Fresh Tomato Salsa NULL $2.95 +451 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +452 1 Carnitas Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +452 1 Canned Soft Drink [Diet Coke] $1.25 +453 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Fajita Veggies, Cheese]] $10.58 +454 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +454 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +455 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +455 1 Chips and Guacamole NULL $4.45 +456 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +456 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +457 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +457 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +458 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +458 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +459 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +460 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +460 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +460 1 Chips and Guacamole NULL $4.45 +461 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +461 1 Canned Soft Drink [Diet Coke] $1.25 +462 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +462 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +462 1 Chips and Fresh Tomato Salsa NULL $2.95 +463 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +463 1 Side of Chips NULL $1.69 +464 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +464 1 Chips and Guacamole NULL $4.45 +465 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +465 1 6 Pack Soft Drink [Coke] $6.49 +466 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +466 1 Chips and Guacamole NULL $4.45 +466 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +467 1 Chips and Guacamole NULL $4.45 +467 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +467 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +468 1 Chips and Guacamole NULL $4.45 +468 1 Carnitas Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.89 +468 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +469 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +469 1 Chips and Fresh Tomato Salsa NULL $2.95 +469 1 Bottled Water NULL $1.50 +470 1 Chips and Guacamole NULL $4.45 +470 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +471 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +471 1 Bottled Water NULL $1.09 +471 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +471 1 Canned Soda [Dr. Pepper] $1.09 +471 1 Chips and Guacamole NULL $3.99 +472 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Fajita Veggies, Cheese, Guacamole]] $11.48 +472 1 Veggie Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +473 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +473 1 Chips and Guacamole NULL $4.45 +474 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +475 1 Barbacoa Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Lettuce]] $9.25 +475 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +475 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +476 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +476 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +477 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +477 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +478 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +478 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +478 1 Chips and Guacamole NULL $4.45 +478 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +479 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Fajita Veggies, Sour Cream, Cheese]] $10.58 +479 1 Chicken Burrito [Fresh Tomato (Mild), [Lettuce, Rice, Fajita Veggies, Sour Cream, Cheese]] $8.19 +479 1 Side of Chips NULL $1.69 +480 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +480 1 Chips NULL $2.15 +480 1 Canned Soft Drink [Diet Coke] $1.25 +481 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +481 1 6 Pack Soft Drink [Coke] $6.49 +481 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, Rice] $9.25 +481 1 Chips NULL $2.15 +482 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +482 1 Chips and Guacamole NULL $4.45 +482 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +482 1 Canned Soft Drink [Coke] $1.25 +483 1 Barbacoa Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole]] $11.48 +483 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +484 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +484 2 Bottled Water NULL $2.18 +485 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies]] $8.49 +485 1 Barbacoa Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies]] $8.99 +485 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +485 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +485 2 Bottled Water NULL $2.18 +486 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +486 1 Chips and Guacamole NULL $4.45 +487 1 Chicken Burrito [Fresh Tomato Salsa, [Lettuce, Guacamole, Rice, Cheese, Fajita Vegetables, Sour Cream]] $11.25 +487 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa] $9.25 +488 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +488 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +488 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +488 1 Chips and Guacamole NULL $4.45 +488 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +488 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +489 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +489 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream]] $8.49 +490 1 Carnitas Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), [Fajita Veggies, Cheese, Lettuce]] $8.99 +490 1 Side of Chips NULL $1.69 +491 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +491 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +491 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +491 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +491 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +491 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +491 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +492 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +493 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +493 1 Chips and Guacamole NULL $4.45 +494 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +494 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream]] $8.49 +495 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +495 1 Izze [Clementine] $3.39 +496 1 Chips and Guacamole NULL $3.99 +496 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +496 1 Canned Soda [Diet Coke] $1.09 +496 1 Canned Soda [Diet Dr. Pepper] $1.09 +496 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +497 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Rice, Black Beans]] $17.50 +497 1 Chips and Guacamole NULL $4.45 +498 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +498 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +498 1 Chips and Guacamole NULL $4.45 +499 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +499 1 Chips and Guacamole NULL $4.45 +500 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +500 1 Chips NULL $2.15 +500 1 Canned Soft Drink [Diet Coke] $1.25 +501 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +501 1 Chips and Fresh Tomato Salsa NULL $2.95 +502 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +502 1 Canned Soft Drink [Diet Coke] $1.25 +503 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +503 1 Chips and Guacamole NULL $4.45 +504 1 Barbacoa Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole]] $11.48 +504 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +505 1 Chips and Fresh Tomato Salsa NULL $2.95 +505 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +506 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +506 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +506 1 Chips and Fresh Tomato Salsa NULL $2.95 +507 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +507 1 Canned Soft Drink [Lemonade] $1.25 +507 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +507 1 Canned Soft Drink [Lemonade] $1.25 +508 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese]] $8.99 +508 1 Chips and Fresh Tomato Salsa NULL $2.39 +509 1 Canned Soft Drink [Diet Coke] $1.25 +509 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +509 1 Canned Soft Drink [Coke] $1.25 +509 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +510 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +510 1 Chips and Guacamole NULL $3.99 +511 4 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $35.00 +511 3 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $27.75 +511 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +511 4 Chips and Fresh Tomato Salsa NULL $11.80 +511 2 Chips and Guacamole NULL $8.90 +511 2 Chips and Tomatillo Green Chili Salsa NULL $5.90 +511 1 6 Pack Soft Drink [Coke] $6.49 +512 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +513 2 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Sour Cream]] $17.98 +513 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +514 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +514 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +514 1 Chips NULL $2.15 +515 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +515 1 Chips and Guacamole NULL $4.45 +516 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +516 1 Side of Chips NULL $1.69 +517 1 Chicken Burrito [Tomatillo Red Chili (Hot), [Lettuce, Rice, Cheese]] $8.19 +517 1 Steak Burrito [Tomatillo Red Chili (Hot), [Lettuce, Rice, Sour Cream, Cheese]] $8.69 +518 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +519 1 Chips and Guacamole NULL $3.99 +519 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +519 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +520 1 Chips and Guacamole NULL $4.45 +520 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +520 1 6 Pack Soft Drink [Sprite] $6.49 +521 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +521 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +522 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +522 1 Canned Soft Drink [Diet Coke] $1.25 +522 1 Chips and Guacamole NULL $4.45 +523 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +523 1 Side of Chips NULL $1.69 +524 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +524 1 Chips and Guacamole NULL $4.45 +525 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Lettuce, Black Beans, Sour Cream, Cheese, Rice, Fajita Veggies, Pinto Beans]] $8.99 +525 1 Canned Soda [Sprite] $1.09 +526 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +526 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +527 1 Steak Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +527 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Sour Cream, Cheese]] $11.08 +527 1 Chips and Guacamole NULL $3.89 +528 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +529 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +529 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +529 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Guacamole]] $11.25 +530 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +530 2 Chips NULL $4.30 +530 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +531 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +531 1 Chips and Guacamole NULL $3.99 +532 1 Side of Chips NULL $1.69 +532 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Lettuce, Cheese, Sour Cream]] $8.99 +533 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +533 1 Side of Chips NULL $1.69 +534 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +534 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +534 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +535 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +535 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +535 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +535 1 Chips and Fresh Tomato Salsa NULL $2.95 +536 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +536 1 Chips and Guacamole NULL $4.45 +537 1 Chips and Guacamole NULL $4.45 +537 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +538 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +539 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +539 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +540 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +540 1 Chips and Guacamole NULL $4.45 +541 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +541 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.89 +542 1 Steak Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.99 +542 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +543 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +543 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +544 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +544 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +545 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +545 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +545 1 Chips and Guacamole NULL $4.45 +546 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +546 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +546 2 Canned Soft Drink [Coke] $2.50 +547 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +547 1 Side of Chips NULL $1.69 +548 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole]] $11.75 +548 1 Chips NULL $2.15 +549 1 Canned Soft Drink [Coke] $1.25 +549 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +549 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +549 2 Chips and Guacamole NULL $8.90 +550 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +550 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +551 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +551 1 Chicken Burrito [Tomatillo Green Chili Salsa, Guacamole] $11.25 +552 2 Chips and Guacamole NULL $8.90 +552 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +552 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +553 1 Steak Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +553 1 Side of Chips NULL $1.69 +553 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +554 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +554 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +555 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +555 1 Side of Chips NULL $1.69 +555 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.49 +556 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +557 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +557 1 Chips and Fresh Tomato Salsa NULL $2.95 +558 1 Steak Soft Tacos [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +558 1 Side of Chips NULL $1.69 +559 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +559 1 Chips NULL $2.15 +559 1 Canned Soft Drink [Diet Coke] $1.25 +560 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +560 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +560 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +560 2 Canned Soft Drink [Coke] $2.50 +561 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +561 1 Canned Soft Drink [Coke] $1.25 +561 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +561 2 Canned Soft Drink [Lemonade] $2.50 +561 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +561 1 Bottled Water NULL $1.50 +561 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +561 1 Canned Soft Drink [Coke] $1.25 +561 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +562 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Guacamole, Lettuce]] $11.48 +562 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +563 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +563 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +563 1 Chips NULL $2.15 +564 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $11.75 +564 1 Canned Soft Drink [Diet Coke] $1.25 +565 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +565 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +566 1 6 Pack Soft Drink [Diet Coke] $6.49 +566 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +567 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +567 1 Veggie Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +567 1 Canned Soda [Coca Cola] $1.09 +568 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +569 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +569 1 Canned Soft Drink [Diet Coke] $1.25 +569 1 Chips NULL $2.15 +570 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +570 1 Bottled Water NULL $1.50 +571 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +571 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +572 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.49 +572 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +573 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +573 1 Bottled Water NULL $1.50 +573 1 Canned Soft Drink [Diet Coke] $1.25 +573 1 Bottled Water NULL $1.50 +574 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +574 2 Canned Soft Drink [Diet Coke] $2.50 +574 1 Chips NULL $2.15 +575 1 Salad [Brown Rice, Adobo-Marinated and Grilled Chicken, Vegetarian Black Beans] $7.40 +575 1 Salad [White Rice, Adobo-Marinated and Grilled Chicken, Vegetarian Black Beans] $7.40 +575 1 Chips and Guacamole NULL $4.00 +576 1 Barbacoa Bowl [Tomatillo Red Chili Salsa] $9.25 +576 1 Barbacoa Salad Bowl [Roasted Chili Corn Salsa] $9.39 +576 1 Barbacoa Bowl [Roasted Chili Corn Salsa] $9.25 +576 1 Barbacoa Bowl [Roasted Chili Corn Salsa] $9.25 +576 1 Barbacoa Salad Bowl [Roasted Chili Corn Salsa] $9.39 +577 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +577 2 Chips and Guacamole NULL $8.90 +577 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +577 4 Bottled Water NULL $6.00 +577 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Guacamole]] $11.25 +577 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +577 1 Veggie Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +578 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $22.50 +579 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +579 1 Canned Soda [Sprite] $1.09 +580 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +580 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.49 +581 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +582 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +582 1 Bottled Water NULL $1.50 +583 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +583 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +584 1 Chips and Guacamole NULL $3.99 +584 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +585 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +585 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +585 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +586 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables]] $8.75 +586 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream]] $8.75 +587 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +587 1 Bottled Water NULL $1.50 +588 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +588 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +588 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +589 1 Steak Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese]] $8.99 +589 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +590 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +590 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese]] $8.75 +590 1 Chips and Guacamole NULL $4.45 +591 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +591 1 Canned Soda [Sprite] $1.09 +591 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +592 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +592 1 Chicken Salad Bowl [Fresh Tomato Salsa, Lettuce] $8.75 +593 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +594 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +594 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +595 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +595 1 Chips and Fresh Tomato Salsa NULL $2.39 +596 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +596 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +596 1 Chips and Guacamole NULL $3.99 +597 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +597 1 Chips and Guacamole NULL $4.45 +598 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +598 1 Chips NULL $2.15 +598 1 Canned Soft Drink [Diet Coke] $1.25 +599 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +599 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.99 +600 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +600 1 Bottled Water NULL $1.50 +601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +601 1 Chips NULL $2.15 +601 1 Canned Soft Drink [Diet Coke] $1.25 +602 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +602 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +602 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +603 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +603 1 Bottled Water NULL $1.50 +604 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +604 1 Canned Soft Drink [Coke] $1.25 +604 1 Chips and Guacamole NULL $4.45 +605 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +606 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +606 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +606 1 Canned Soft Drink [Nestea] $1.25 +607 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +607 1 Chips and Fresh Tomato Salsa NULL $2.95 +607 1 Canned Soft Drink [Sprite] $1.25 +608 1 Chicken Soft Tacos [Roasted Chili Corn Salsa (Medium), Cheese] $8.49 +608 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +608 1 Chips and Fresh Tomato Salsa NULL $2.39 +609 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +609 1 Canned Soft Drink [Diet Coke] $1.25 +610 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +610 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +611 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +611 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +612 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +612 1 Canned Soft Drink [Diet Coke] $1.25 +613 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +613 1 Chips NULL $2.15 +613 1 Canned Soft Drink [Lemonade] $1.25 +614 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream]] $8.99 +614 1 Canned Soda [Mountain Dew] $1.09 +615 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +615 1 Chips and Guacamole NULL $4.45 +616 3 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $26.25 +617 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Lettuce, Rice, Cheese]] $8.75 +617 1 Chips and Guacamole NULL $4.45 +618 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +618 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +619 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +619 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +620 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +620 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +621 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +621 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +622 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +622 1 Chips and Guacamole NULL $4.45 +622 1 Canned Soft Drink [Coke] $1.25 +623 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +624 1 Barbacoa Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +624 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +624 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +624 1 Chips and Guacamole NULL $3.99 +625 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +625 1 Chips and Guacamole NULL $4.45 +626 1 Chips NULL $2.15 +626 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +626 1 Canned Soft Drink [Sprite] $1.25 +627 1 Chicken Burrito [Fresh Tomato Salsa, [Guacamole, Lettuce, Sour Cream, Fajita Vegetables, Cheese, Rice]] $11.25 +627 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +628 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +628 1 Chips and Guacamole NULL $4.45 +628 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +628 1 Chips NULL $2.15 +628 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream]] $8.75 +628 1 Chips and Guacamole NULL $4.45 +629 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +629 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +629 1 Canned Soft Drink [Diet Coke] $1.25 +630 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Guacamole, Lettuce]] $11.25 +630 1 Chips NULL $2.15 +631 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Lettuce, Black Beans]] $8.75 +631 2 Chips and Roasted Chili Corn Salsa NULL $5.90 +632 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +632 1 Canned Soft Drink [Coke] $1.25 +633 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +633 3 Canned Soft Drink [Coke] $3.75 +634 1 Chicken Soft Tacos [Fresh Tomato Salsa] $8.75 +634 1 Canned Soft Drink [Lemonade] $1.25 +634 1 Chips and Guacamole NULL $4.45 +635 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +635 1 Chips and Guacamole NULL $4.45 +635 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +635 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $23.50 +636 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +636 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +636 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +637 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +637 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +637 1 Chips and Guacamole NULL $4.45 +637 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +637 1 Canned Soft Drink [Diet Coke] $1.25 +638 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +638 1 Chips and Guacamole NULL $4.45 +638 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +638 1 Canned Soft Drink [Sprite] $1.25 +639 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +639 1 Chips NULL $2.15 +639 1 Canned Soft Drink [Diet Coke] $1.25 +640 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +640 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +641 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +641 1 Nantucket Nectar [Peach Orange] $3.39 +642 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +642 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +643 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $17.50 +643 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +644 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +644 1 Bottled Water NULL $1.50 +645 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +645 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +646 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +646 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +647 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.25 +647 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +648 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +648 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +648 2 Chips NULL $4.30 +649 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +649 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +649 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +649 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans]] $8.75 +649 2 Chips NULL $4.30 +650 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +650 1 Canned Soft Drink [Diet Coke] $1.25 +650 1 Chips NULL $2.15 +651 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +651 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +651 1 Izze [Blackberry] $3.39 +651 1 Izze [Blackberry] $3.39 +652 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +652 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +652 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +653 1 Chicken Burrito [Fresh Tomato Salsa, [Guacamole, Cheese, Rice, Sour Cream, Fajita Vegetables, Lettuce]] $11.25 +653 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole, Rice, Fajita Vegetables]] $11.75 +654 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +654 1 Canned Soft Drink [Lemonade] $1.25 +654 2 Chips and Tomatillo Red Chili Salsa NULL $5.90 +654 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +654 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +655 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +655 1 Chips and Guacamole NULL $4.45 +655 1 Bottled Water NULL $1.50 +656 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +656 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +656 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +657 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +657 1 Chips NULL $2.15 +658 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +658 1 Carnitas Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +659 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +659 1 Chips and Guacamole NULL $4.45 +660 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +660 1 Chips and Guacamole NULL $4.45 +661 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +661 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +662 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +662 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +663 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +663 1 Barbacoa Soft Tacos [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +664 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +664 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +665 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +665 1 Chips and Guacamole NULL $3.99 +666 1 Chips and Guacamole NULL $3.89 +666 1 Barbacoa Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Black Beans]] $11.08 +667 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +667 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +667 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +668 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +668 1 Veggie Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +669 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +669 1 Chips NULL $2.15 +670 2 Chicken Burrito [Tomatillo Red Chili Salsa, Rice] $17.50 +670 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Rice] $8.75 +670 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +671 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +671 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +672 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Fajita Veggies, Guacamole, Lettuce]] $10.98 +672 1 Canned Soda [Diet Coke] $1.09 +673 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +673 1 Chips NULL $2.15 +674 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +674 1 Canned Soft Drink [Sprite] $1.25 +674 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +675 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +675 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +676 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +676 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +677 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +677 1 Chips NULL $2.15 +677 1 Canned Soft Drink [Lemonade] $1.25 +678 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +678 1 Chips and Guacamole NULL $3.99 +679 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +679 1 Chips NULL $2.15 +680 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Lettuce, Sour Cream, Cheese, Fajita Veggies, Rice, Black Beans]] $8.99 +680 1 Izze [Clementine] $3.39 +681 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +681 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +682 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +682 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +682 1 Chips and Guacamole NULL $4.45 +683 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +683 1 Chips NULL $2.15 +683 1 Canned Soft Drink [Diet Coke] $1.25 +684 1 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Guacamole, Rice, Lettuce]] $11.75 +684 1 Chips and Guacamole NULL $4.45 +685 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +685 1 Chips and Fresh Tomato Salsa NULL $2.95 +686 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +686 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.49 +687 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.25 +687 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +687 1 Chips and Guacamole NULL $4.45 +688 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +688 1 Veggie Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chips and Guacamole NULL $4.45 +689 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +689 1 Side of Chips NULL $1.69 +690 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +690 1 Nantucket Nectar [Apple] $3.39 +691 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +691 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +691 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +691 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +691 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +691 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +691 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +692 2 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Lettuce, Guacamole, Sour Cream, Cheese, Rice, Black Beans]] $21.96 +693 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +693 1 Side of Chips NULL $1.69 +694 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +694 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +695 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +695 1 Side of Chips NULL $1.69 +696 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +696 1 Chips NULL $2.15 +696 1 Bottled Water NULL $1.50 +697 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +697 1 Bottled Water NULL $1.50 +698 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Cheese]] $8.75 +698 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +698 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +699 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +699 1 Side of Chips NULL $1.69 +700 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +700 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +700 1 Canned Soft Drink [Lemonade] $1.25 +701 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +701 1 Chips NULL $2.15 +702 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Sour Cream, Cheese]] $11.08 +703 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +703 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $8.49 +703 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese]] $8.49 +704 1 Steak Bowl [Fresh Tomato Salsa, Guacamole] $11.75 +704 1 Canned Soft Drink [Sprite] $1.25 +705 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +705 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Black Beans, Lettuce]] $8.75 +706 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +706 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +706 1 Chips and Guacamole NULL $4.45 +707 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +707 1 Bottled Water NULL $1.50 +708 2 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +708 1 Barbacoa Soft Tacos [Tomatillo Green Chili Salsa, [Pinto Beans, Sour Cream, Guacamole]] $11.75 +708 1 6 Pack Soft Drink [Coke] $6.49 +709 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +709 1 Chips and Guacamole NULL $4.45 +709 1 6 Pack Soft Drink [Diet Coke] $6.49 +710 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +710 2 Canned Soft Drink [Diet Coke] $2.50 +710 1 Chips NULL $2.15 +711 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +711 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +712 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +712 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +712 1 Chips and Guacamole NULL $4.45 +713 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream]] $8.99 +713 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +714 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +714 1 Chips and Fresh Tomato Salsa NULL $2.95 +715 1 Steak Burrito [Roasted Chili Corn Salsa, [Lettuce, Black Beans, Cheese]] $9.25 +715 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +716 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +716 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +717 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +717 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +718 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +719 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +719 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +720 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +720 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +720 1 Chips NULL $2.15 +721 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +721 1 Chips NULL $2.15 +722 1 Chips and Guacamole NULL $4.45 +722 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +723 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +723 1 Chips and Fresh Tomato Salsa NULL $2.39 +724 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +724 1 Canned Soft Drink [Coke] $1.25 +724 1 Canned Soft Drink [Coke] $1.25 +724 1 Canned Soft Drink [Coke] $1.25 +725 1 Canned Soft Drink [Coke] $1.25 +725 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +725 1 Chips NULL $2.15 +726 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +726 1 Side of Chips NULL $1.69 +727 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +727 1 Bottled Water NULL $1.50 +728 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +728 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +729 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +729 1 Chips and Guacamole NULL $3.99 +730 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +730 1 Canned Soda [Sprite] $1.09 +731 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +731 1 Canned Soft Drink [Diet Coke] $1.25 +732 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +732 1 Chips and Fresh Tomato Salsa NULL $2.39 +732 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.49 +733 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +733 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +734 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole]] $11.25 +734 1 Chips and Guacamole NULL $4.45 +734 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +734 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.89 +735 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +735 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +736 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +736 1 Chips and Guacamole NULL $4.45 +737 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +737 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +737 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +737 2 Chips and Guacamole NULL $8.90 +738 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.39 +738 1 Chips and Fresh Tomato Salsa NULL $2.95 +739 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +739 1 Chips and Guacamole NULL $3.99 +740 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +740 1 Chips NULL $2.15 +740 1 Canned Soft Drink [Diet Coke] $1.25 +741 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Sour Cream, Cheese, Fajita Veggies, Guacamole, Rice, Pinto Beans]] $21.96 +742 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +742 1 Side of Chips NULL $1.69 +743 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +743 1 Chips and Guacamole NULL $4.45 +744 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +744 1 Carnitas Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +745 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.49 +745 1 Chips and Guacamole NULL $3.99 +746 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +746 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +746 1 Chips and Fresh Tomato Salsa NULL $2.95 +746 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +747 2 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $17.50 +748 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +748 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +749 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +749 1 6 Pack Soft Drink [Coke] $6.49 +750 2 Chips NULL $4.30 +750 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +751 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +751 1 Chips NULL $2.15 +751 1 Bottled Water NULL $1.50 +752 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +752 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +752 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +753 1 Steak Burrito [Tomatillo Red Chili Salsa, Sour Cream] $9.25 +753 1 Chips and Guacamole NULL $4.45 +754 1 6 Pack Soft Drink [Diet Coke] $6.49 +754 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +754 1 Chips and Guacamole NULL $4.45 +755 1 Veggie Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +755 1 Side of Chips NULL $1.69 +756 1 Carnitas Salad Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.39 +756 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +757 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +757 1 Chips and Fresh Tomato Salsa NULL $2.95 +758 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +758 1 Chips NULL $2.15 +758 1 Canned Soft Drink [Sprite] $1.25 +759 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +759 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +759 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +759 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +759 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +759 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +759 2 Canned Soft Drink [Coke] $2.50 +759 2 Canned Soft Drink [Diet Coke] $2.50 +759 4 Bottled Water NULL $6.00 +759 2 Chips and Guacamole NULL $8.90 +759 2 Chips and Fresh Tomato Salsa NULL $5.90 +760 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +760 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +761 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +761 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +762 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +762 1 Chips NULL $2.15 +762 1 Bottled Water NULL $1.50 +763 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +763 1 Canned Soft Drink [Coke] $1.25 +763 1 Bottled Water NULL $1.50 +763 1 Chips NULL $2.15 +764 1 Canned Soft Drink [Lemonade] $1.25 +764 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +764 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +765 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.49 +765 1 Chips and Guacamole NULL $3.99 +766 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +766 2 Chips NULL $4.30 +767 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.75 +767 1 Chips NULL $2.15 +768 2 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Rice]] $18.50 +769 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +769 1 Chips and Fresh Tomato Salsa NULL $2.39 +770 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +770 1 Chips and Guacamole NULL $4.45 +770 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +771 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +771 1 Chips and Guacamole NULL $3.99 +772 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +772 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +773 1 Bottled Water NULL $1.50 +773 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +773 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +774 1 6 Pack Soft Drink [Diet Coke] $6.49 +774 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +775 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +775 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +776 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +776 1 Chips and Guacamole NULL $4.45 +776 1 6 Pack Soft Drink [Coke] $6.49 +777 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +778 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +778 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +779 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +779 1 Side of Chips NULL $1.69 +780 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +781 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +781 1 Chips and Guacamole NULL $4.45 +782 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.25 +782 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +783 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +783 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +783 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +784 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +784 1 6 Pack Soft Drink [Diet Coke] $6.49 +784 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Guacamole]] $11.25 +785 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Lettuce, Guacamole]] $11.75 +785 1 Chips and Fresh Tomato Salsa NULL $2.95 +786 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +786 1 Side of Chips NULL $1.69 +787 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +787 2 Canned Soda [Dr. Pepper] $2.18 +787 1 Canned Soda [Coca Cola] $1.09 +787 1 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +787 1 Carnitas Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +788 1 Canned Soda [Dr. Pepper] $1.09 +788 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +789 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +789 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +790 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Guacamole]] $10.98 +790 1 Canned Soda [Diet Coke] $1.09 +791 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +791 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +791 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +791 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +791 1 Chips NULL $2.15 +792 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.25 +792 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +792 1 Chips and Guacamole NULL $4.45 +792 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +793 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Guacamole]] $11.75 +793 1 Bottled Water NULL $1.50 +794 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +794 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +794 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +795 1 Chicken Burrito [Tomatillo Red Chili Salsa, Lettuce] $8.75 +795 1 Chips NULL $2.15 +795 1 Barbacoa Bowl [Tomatillo Red Chili Salsa] $9.25 +796 1 Bottled Water NULL $1.50 +796 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +796 1 Chips NULL $2.15 +797 1 Chips and Guacamole NULL $3.99 +797 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.99 +798 1 6 Pack Soft Drink [Diet Coke] $6.49 +798 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +798 2 Chips and Guacamole NULL $8.90 +799 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.99 +799 1 Chips and Guacamole NULL $3.99 +800 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +801 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +801 1 Canned Soft Drink [Diet Coke] $1.25 +802 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $10.98 +803 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +803 1 Chips and Guacamole NULL $4.45 +803 1 Canned Soft Drink [Coke] $1.25 +803 2 Bottled Water NULL $3.00 +804 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +804 1 Chips and Guacamole NULL $4.45 +805 1 Chips and Guacamole NULL $4.45 +805 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +805 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +806 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +806 1 Chips NULL $2.15 +806 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +806 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +806 1 Chips and Guacamole NULL $4.45 +807 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +807 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Lettuce]] $9.25 +807 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +807 1 Canned Soft Drink [Coke] $1.25 +808 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +808 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +808 1 Canned Soft Drink [Sprite] $1.25 +809 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +809 1 Chips and Guacamole NULL $4.45 +810 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Guacamole, Lettuce]] $11.48 +810 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $11.48 +811 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +811 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +812 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole]] $11.25 +812 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +812 1 Chips NULL $2.15 +813 1 Bottled Water NULL $1.50 +813 1 Chips NULL $2.15 +813 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +814 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +814 2 Chips and Guacamole NULL $8.90 +814 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +815 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +815 1 Canned Soft Drink [Diet Coke] $1.25 +816 1 Chips and Guacamole NULL $4.45 +816 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +816 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +816 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +817 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +817 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +817 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +818 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +818 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +818 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +818 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +818 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +818 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +818 2 Chips and Guacamole NULL $8.90 +818 1 Chips and Fresh Tomato Salsa NULL $2.95 +819 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +820 1 Veggie Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +820 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +821 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Guacamole]] $10.98 +822 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +822 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +823 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +823 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +823 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +824 1 Chips and Guacamole NULL $3.99 +824 1 Chicken Soft Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream]] $8.49 +825 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Guacamole]] $10.98 +825 1 Side of Chips NULL $1.69 +826 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +827 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +827 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +828 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +828 1 Chips and Fresh Tomato Salsa NULL $2.39 +829 1 Canned Soft Drink [Sprite] $1.25 +829 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $8.75 +829 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +830 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce, Rice]] $11.75 +830 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Guacamole, Sour Cream]] $11.25 +831 2 Chicken Burrito [Fresh Tomato Salsa, [Lettuce, Rice, Black Beans, Cheese]] $17.50 +832 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +832 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +832 1 Chips and Fresh Tomato Salsa NULL $2.39 +833 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Guacamole, Lettuce]] $11.25 +833 1 Bottled Water NULL $1.50 +834 1 Veggie Burrito [Fresh Tomato Salsa, [Cheese, Rice, Pinto Beans]] $8.75 +834 2 Bottled Water NULL $3.00 +834 1 Canned Soft Drink [Diet Coke] $1.25 +835 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +835 1 Chips and Guacamole NULL $4.45 +836 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +836 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +836 1 Chips and Guacamole NULL $4.45 +837 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Rice, Fajita Veggies, Guacamole]] $21.96 +838 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +838 1 Chips and Guacamole NULL $4.45 +838 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +839 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole]] $11.25 +839 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa] $9.25 +840 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +840 1 Chips and Fresh Tomato Salsa NULL $2.39 +841 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +841 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +842 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +842 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +842 1 Chips and Guacamole NULL $3.99 +842 1 Izze [Clementine] $3.39 +843 1 Steak Bowl [Tomatillo Red Chili Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +843 1 Bottled Water NULL $1.50 +844 1 Chips and Guacamole NULL $4.45 +844 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +844 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +845 1 Canned Soft Drink [Coke] $1.25 +845 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +846 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +846 1 Bottled Water NULL $1.50 +846 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +847 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +847 1 Chips NULL $2.15 +847 1 Bottled Water NULL $1.50 +848 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +848 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +848 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans]] $8.75 +848 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +848 2 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $17.50 +848 1 Chicken Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $8.75 +849 1 6 Pack Soft Drink [Coke] $6.49 +849 1 Chips and Guacamole NULL $4.45 +849 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +850 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +850 2 Chips NULL $4.30 +850 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +851 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +851 1 Chips and Guacamole NULL $4.45 +852 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.99 +852 1 Chips and Fresh Tomato Salsa NULL $2.39 +853 1 Steak Burrito [Roasted Chili Corn Salsa, [Cheese, Black Beans, Lettuce]] $9.25 +853 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Lettuce, Cheese]] $9.25 +854 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +854 1 Chips and Guacamole NULL $4.45 +855 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +855 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +855 1 Chips and Fresh Tomato Salsa NULL $2.95 +855 1 Chips NULL $2.15 +856 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +856 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +857 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +857 1 Chips NULL $2.15 +857 1 Bottled Water NULL $1.50 +858 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +858 1 Chips and Guacamole NULL $4.45 +859 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Guacamole]] $10.98 +859 1 Steak Burrito [Fresh Tomato Salsa (Mild), Black Beans] $8.99 +859 2 Canned Soda [Diet Coke] $2.18 +860 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +860 1 Chips and Guacamole NULL $4.45 +860 1 Canned Soft Drink [Diet Coke] $1.25 +861 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +861 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +862 1 Chips and Guacamole NULL $4.45 +862 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +863 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Guacamole]] $10.98 +864 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +864 1 Bottled Water NULL $1.50 +865 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Guacamole, Rice, Black Beans, Cheese, Sour Cream]] $10.98 +866 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +866 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +866 1 Chips and Guacamole NULL $3.99 +867 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +867 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +868 1 Chips and Guacamole NULL $3.99 +868 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +868 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +868 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +869 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +869 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +870 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +871 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +872 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +872 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +872 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +873 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +873 1 Canned Soft Drink [Sprite] $1.25 +873 1 Chips and Fresh Tomato Salsa NULL $2.95 +874 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +874 1 Bottled Water NULL $1.50 +875 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Cheese, Guacamole]] $10.98 +875 1 Side of Chips NULL $1.69 +876 1 Chips and Guacamole NULL $4.45 +876 1 Chicken Burrito [Roasted Chili Corn Salsa] $8.75 +877 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $8.75 +877 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +878 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +878 1 Chips and Guacamole NULL $4.45 +879 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $9.25 +879 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +879 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +879 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +880 1 Chips and Guacamole NULL $3.99 +880 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +880 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +881 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +881 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +881 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +882 1 Chips and Guacamole NULL $4.45 +882 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +883 1 Chips and Guacamole NULL $4.45 +883 1 Canned Soft Drink [Diet Coke] $1.25 +883 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +884 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +884 1 Bottled Water NULL $1.50 +884 1 Chips NULL $2.15 +885 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +885 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.75 +886 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +886 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +887 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.75 +887 1 Bottled Water NULL $1.50 +888 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +888 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +888 1 Canned Soft Drink [Sprite] $1.25 +888 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +888 1 Chips NULL $2.15 +889 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +889 1 Canned Soda [Mountain Dew] $1.09 +890 1 Chips and Guacamole NULL $4.45 +890 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +890 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +891 1 Chips NULL $2.15 +891 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +891 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +892 1 Canned Soft Drink [Lemonade] $1.25 +892 1 Steak Bowl [Fresh Tomato Salsa] $9.25 +892 1 Chips NULL $2.15 +893 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +893 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +894 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +894 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +894 1 Chips and Guacamole NULL $4.45 +895 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +895 1 Side of Chips NULL $1.69 +896 1 Veggie Salad Bowl [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +896 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Sour Cream, Cheese]] $8.75 +897 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +897 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +898 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +898 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +898 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +899 1 Chips and Guacamole NULL $4.45 +899 1 Steak Crispy Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +899 1 6 Pack Soft Drink [Coke] $6.49 +900 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Guacamole, Lettuce]] $11.48 +900 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream]] $8.99 +901 4 Canned Soda [Sprite] $4.36 +901 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Sour Cream, Guacamole, Lettuce]] $11.48 +901 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +901 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +902 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.48 +903 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +903 1 Chips NULL $2.15 +903 1 Bottled Water NULL $1.50 +904 1 Barbacoa Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +904 1 Side of Chips NULL $1.69 +905 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +905 1 Canned Soft Drink [Nestea] $1.25 +906 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +906 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +907 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +907 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Lettuce]] $9.25 +907 2 Chips and Guacamole NULL $8.90 +907 1 Chips NULL $2.15 +907 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream]] $9.25 +908 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +908 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +909 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +909 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +909 2 Chips NULL $4.30 +910 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +910 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +911 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +911 1 Chips NULL $2.15 +911 1 Canned Soft Drink [Diet Coke] $1.25 +912 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +912 1 Canned Soft Drink [Lemonade] $1.25 +912 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +912 2 Chips and Fresh Tomato Salsa NULL $5.90 +913 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +913 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +913 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +913 1 Chips and Guacamole NULL $4.45 +914 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +914 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +915 2 Canned Soft Drink [Coke] $2.50 +915 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +915 1 Chips NULL $2.15 +916 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +916 1 Bottled Water NULL $1.50 +916 1 Canned Soft Drink [Coke] $1.25 +916 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +916 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +916 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +916 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +916 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +917 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +918 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +918 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +919 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +919 1 Chips NULL $2.15 +919 1 Canned Soft Drink [Sprite] $1.25 +920 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +921 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +921 1 Chips NULL $2.15 +921 1 Bottled Water NULL $1.50 +922 1 Chicken Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce, Fajita Vegetables, Rice]] $8.75 +922 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +922 1 Canned Soft Drink [Sprite] $1.25 +923 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +923 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +924 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +924 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +925 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +925 1 Chips and Guacamole NULL $4.45 +926 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $9.25 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Sour Cream]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream]] $9.25 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +926 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +926 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +926 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +926 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +927 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +927 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +928 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +928 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +928 1 Canned Soft Drink [Nestea] $1.25 +929 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +929 1 Bottled Water NULL $1.50 +930 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +930 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +931 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +931 1 Bottled Water NULL $1.50 +931 1 Chips NULL $2.15 +932 2 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $16.98 +933 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +933 1 Bottled Water NULL $1.50 +934 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +934 2 Chips NULL $4.30 +934 1 Bottled Water NULL $1.50 +935 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +935 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +935 1 Canned Soft Drink [Nestea] $1.25 +936 1 Canned Soft Drink [Coke] $1.25 +936 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +936 1 Chips and Guacamole NULL $4.45 +937 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +937 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +937 1 Chips and Guacamole NULL $4.45 +938 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +938 1 Chips NULL $2.15 +938 1 Canned Soft Drink [Sprite] $1.25 +939 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +939 1 Side of Chips NULL $1.69 +940 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +940 1 Canned Soft Drink [Coke] $1.25 +940 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +940 1 Canned Soft Drink [Coke] $1.25 +941 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +941 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +941 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +942 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +942 1 Side of Chips NULL $1.69 +943 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +943 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +944 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +944 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +945 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +945 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +945 1 6 Pack Soft Drink [Sprite] $6.49 +945 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +946 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +946 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +946 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +947 2 Nantucket Nectar [Peach Orange] $6.78 +947 2 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Lettuce]] $17.98 +947 1 Nantucket Nectar [Apple] $3.39 +948 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +948 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +948 1 Veggie Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +949 1 Chips and Guacamole NULL $4.45 +949 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +949 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $9.25 +949 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese]] $8.75 +949 1 6 Pack Soft Drink [Coke] $6.49 +950 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +950 1 Chips and Fresh Tomato Salsa NULL $2.39 +951 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +951 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +952 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +952 1 Chips and Guacamole NULL $4.45 +952 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +952 1 Chips NULL $2.15 +953 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +953 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +953 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +953 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole]] $11.89 +953 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.75 +953 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole]] $11.25 +953 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +953 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Lettuce]] $9.25 +954 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +954 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +955 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +955 1 Side of Chips NULL $1.69 +955 1 Bottled Water NULL $1.09 +956 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +956 1 Bottled Water NULL $1.50 +957 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +957 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +958 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +958 1 Bottled Water NULL $1.50 +959 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Cheese, Lettuce]] $8.49 +959 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Lettuce]] $8.99 +960 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +961 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +961 2 Chips NULL $4.30 +962 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +962 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +962 1 Chips NULL $2.15 +963 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +963 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +964 1 Chips and Guacamole NULL $4.45 +964 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +965 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +965 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +965 1 Chips and Fresh Tomato Salsa NULL $2.39 +966 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +966 1 Chips NULL $2.15 +966 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +967 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +967 1 Chips and Fresh Tomato Salsa NULL $2.39 +968 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +968 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +969 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +969 1 Canned Soft Drink [Diet Coke] $1.25 +970 5 Bottled Water NULL $7.50 +970 1 Barbacoa Salad Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +971 1 Canned Soda [Coca Cola] $1.09 +971 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +971 1 Chips and Fresh Tomato Salsa NULL $2.39 +972 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +972 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +972 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +973 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +973 1 Steak Soft Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +973 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +973 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +973 2 Chips and Guacamole NULL $8.90 +974 1 Carnitas Burrito [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +974 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +975 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +975 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +975 2 Bottled Water NULL $3.00 +976 1 Bottled Water NULL $1.50 +976 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +976 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Cheese, Guacamole]] $11.75 +977 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Lettuce]] $8.99 +977 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +978 1 Chips and Guacamole NULL $4.45 +978 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $8.75 +978 1 Chips NULL $2.15 +979 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +979 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +979 1 Chips and Guacamole NULL $4.45 +980 1 Side of Chips NULL $1.69 +980 1 Veggie Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +981 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +981 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +982 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +982 1 Chips and Guacamole NULL $4.45 +983 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +983 1 Chips and Guacamole NULL $3.99 +983 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +984 1 Canned Soft Drink [Coke] $1.25 +984 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Lettuce]] $9.25 +984 1 Chips and Guacamole NULL $4.45 +985 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +986 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +986 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +987 1 Steak Burrito [Tomatillo Green Chili Salsa, [Lettuce, Guacamole, Sour Cream, Cheese, Fajita Vegetables, Rice]] $11.75 +987 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Sour Cream, Rice, Fajita Vegetables, Lettuce]] $11.25 +988 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Lettuce]] $8.49 +988 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Pinto Beans, Cheese, Guacamole, Lettuce]] $11.48 +989 1 Chips and Guacamole NULL $4.45 +989 1 Canned Soft Drink [Diet Coke] $1.25 +989 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +990 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +990 1 Canned Soda [Coca Cola] $1.09 +990 1 Chips and Fresh Tomato Salsa NULL $2.39 +991 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Sour Cream, Fajita Vegetables, Rice]] $11.25 +991 1 Chips NULL $2.15 +992 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +992 1 Chips and Guacamole NULL $4.45 +993 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +993 1 Side of Chips NULL $1.69 +994 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +994 1 Side of Chips NULL $1.69 +995 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +995 1 Chips and Guacamole NULL $4.45 +995 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +996 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +996 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +996 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +996 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +997 2 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $22.50 +998 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +998 1 Chips and Fresh Tomato Salsa NULL $2.39 +999 2 Canned Soft Drink [Sprite] $2.50 +999 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +999 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +999 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $9.25 +1000 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1000 1 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1001 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1001 1 Canned Soda [Coca Cola] $1.09 +1002 1 Barbacoa Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1002 1 Side of Chips NULL $1.69 +1003 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1003 1 Canned Soft Drink [Diet Coke] $1.25 +1004 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Pinto Beans, Sour Cream, Cheese, Guacamole]] $21.96 +1005 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1005 1 Chips NULL $2.15 +1005 1 Canned Soft Drink [Coke] $1.25 +1006 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $8.75 +1006 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1006 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1006 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1006 1 Chips NULL $2.15 +1007 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese]] $8.99 +1007 1 Canned Soda [Diet Dr. Pepper] $1.09 +1007 1 Side of Chips NULL $1.69 +1008 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1008 1 Chips NULL $2.15 +1008 1 Canned Soft Drink [Sprite] $1.25 +1009 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1009 1 Canned Soda [Diet Coke] $1.09 +1009 1 Bottled Water NULL $1.09 +1009 1 Side of Chips NULL $1.69 +1010 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Cheese, Guacamole]] $11.48 +1010 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1010 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +1010 2 Chips and Tomatillo-Red Chili Salsa NULL $4.78 +1011 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Lettuce, Sour Cream, Cheese, Rice]] $9.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1012 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1012 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1013 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1013 1 Chips and Guacamole NULL $4.45 +1013 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1013 1 Chips and Guacamole NULL $4.45 +1014 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.99 +1014 1 Canned Soda [Coca Cola] $1.09 +1015 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1015 1 Chips NULL $2.15 +1016 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1016 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +1016 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1017 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1017 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1018 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream]] $9.25 +1018 1 Chips and Fresh Tomato Salsa NULL $2.95 +1019 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1019 1 Chips and Guacamole NULL $4.45 +1020 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1020 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1020 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1021 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1021 1 Bottled Water NULL $1.50 +1022 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1023 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1024 2 Carnitas Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $18.50 +1025 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1025 1 Chips and Guacamole NULL $3.99 +1025 1 Canned Soda [Mountain Dew] $1.09 +1026 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1026 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1026 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1026 1 Chips and Guacamole NULL $4.45 +1027 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1028 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1028 1 Chips and Guacamole NULL $4.45 +1029 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1029 1 Canned Soft Drink [Diet Coke] $1.25 +1029 1 Chips and Guacamole NULL $4.45 +1030 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese]] $9.25 +1030 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1030 1 Chicken Bowl [Tomatillo Red Chili Salsa, Fajita Vegetables] $8.75 +1031 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1031 1 Chips and Guacamole NULL $4.45 +1032 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $9.39 +1032 1 Canned Soft Drink [Diet Coke] $1.25 +1032 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1033 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +1033 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1033 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1034 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Fajita Vegetables, Rice, Guacamole, Cheese]] $11.25 +1034 1 Chips NULL $2.15 +1035 2 Chips and Guacamole NULL $8.90 +1035 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1035 1 Carnitas Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1036 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1037 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1037 1 Chips and Guacamole NULL $4.45 +1038 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1038 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1039 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1039 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1040 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Lettuce]] $8.49 +1040 1 Izze [Clementine] $3.39 +1041 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1041 1 Chicken Bowl [Tomatillo Red Chili Salsa, Rice] $8.75 +1041 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1042 2 Bottled Water NULL $3.00 +1042 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $9.39 +1043 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Guacamole]] $11.75 +1043 1 Chips and Fresh Tomato Salsa NULL $2.95 +1044 1 Bottled Water NULL $1.50 +1044 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1044 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1045 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1045 1 Chips NULL $2.15 +1045 1 Bottled Water NULL $1.50 +1046 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Lettuce]] $8.49 +1046 1 Izze [Clementine] $3.39 +1047 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1047 1 Canned Soft Drink [Diet Coke] $1.25 +1048 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1049 1 Veggie Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole]] $11.25 +1049 1 Canned Soft Drink [Nestea] $1.25 +1050 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1050 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1050 1 Canned Soft Drink [Lemonade] $1.25 +1051 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1051 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1051 3 Chips and Guacamole NULL $13.35 +1051 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1051 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1052 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1052 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1052 1 Chips and Guacamole NULL $4.45 +1052 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole]] $11.25 +1053 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1053 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1054 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1054 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1055 2 Chips and Tomatillo-Green Chili Salsa NULL $4.78 +1055 1 Chips and Fresh Tomato Salsa NULL $2.39 +1055 1 Chips and Guacamole NULL $3.99 +1056 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1056 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1057 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1057 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1057 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1058 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1058 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1058 1 Chips and Guacamole NULL $4.45 +1059 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1059 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1059 1 Chips and Guacamole NULL $4.45 +1060 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Lettuce]] $8.49 +1060 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1061 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Sour Cream, Guacamole]] $10.98 +1062 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1062 1 Chips and Guacamole NULL $3.99 +1063 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1063 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1064 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1064 1 Chips and Guacamole NULL $4.45 +1064 1 Bottled Water NULL $1.50 +1064 1 Canned Soft Drink [Sprite] $1.25 +1065 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1065 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1066 1 Veggie Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1066 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1067 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1067 1 Carnitas Burrito [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1068 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1068 1 Chips and Fresh Tomato Salsa NULL $2.95 +1068 1 Canned Soft Drink [Diet Coke] $1.25 +1069 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $11.25 +1069 1 Bottled Water NULL $1.50 +1070 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole, Rice]] $11.25 +1070 1 Chips and Guacamole NULL $4.45 +1070 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1070 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1071 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1071 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1071 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1071 1 Chips and Guacamole NULL $4.45 +1071 1 Bottled Water NULL $1.50 +1072 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1072 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +1073 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1073 1 Side of Chips NULL $1.69 +1074 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1074 1 Chips NULL $2.15 +1074 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1074 1 Chips NULL $2.15 +1075 1 Bottled Water NULL $1.50 +1075 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1076 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1076 1 Chips NULL $2.15 +1076 1 6 Pack Soft Drink [Coke] $6.49 +1077 1 Steak Burrito [Roasted Chili Corn Salsa, [Cheese, Black Beans, Lettuce]] $9.25 +1077 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +1078 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1078 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1079 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1079 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1080 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1080 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1081 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1081 1 Chips NULL $2.15 +1081 1 Canned Soft Drink [Nestea] $1.25 +1082 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1082 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +1082 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1083 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +1083 2 Chips and Fresh Tomato Salsa NULL $5.90 +1084 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1084 1 Chips and Guacamole NULL $4.45 +1085 1 Steak Soft Tacos [Fresh Tomato Salsa, Sour Cream] $9.25 +1085 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1085 1 Chips and Guacamole NULL $4.45 +1086 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1086 1 Chips and Guacamole NULL $4.45 +1087 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1087 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1087 1 Chips NULL $2.15 +1088 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +1088 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Guacamole]] $11.25 +1089 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1089 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1089 1 Bottled Water NULL $1.50 +1090 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +1090 2 Chips NULL $4.30 +1091 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1091 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1091 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1092 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1092 1 Chips NULL $2.15 +1092 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1093 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1093 1 Bottled Water NULL $1.09 +1094 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1094 1 Veggie Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1095 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1095 1 Izze [Blackberry] $3.39 +1095 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese]] $8.99 +1096 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1096 1 Chips and Guacamole NULL $3.99 +1097 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1097 1 Chips NULL $2.15 +1097 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1097 1 Chips and Guacamole NULL $4.45 +1097 2 Canned Soft Drink [Diet Coke] $2.50 +1098 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Guacamole]] $11.48 +1098 1 Canned Soda [Sprite] $1.09 +1099 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1099 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1100 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1101 1 Chips and Guacamole NULL $3.99 +1101 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1101 1 Canned Soda [Sprite] $1.09 +1102 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1102 1 Chips and Fresh Tomato Salsa NULL $2.95 +1102 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans]] $8.75 +1103 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1103 1 Chips and Fresh Tomato Salsa NULL $2.95 +1103 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1104 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Sour Cream, Fajita Vegetables, Rice]] $11.25 +1104 1 Chips NULL $2.15 +1105 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1105 1 Chips and Guacamole NULL $4.45 +1106 1 Chips and Guacamole NULL $4.45 +1106 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1106 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.75 +1107 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1107 1 Chips NULL $2.15 +1108 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1108 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1109 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1109 1 6 Pack Soft Drink [Diet Coke] $6.49 +1110 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1110 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1110 1 Chips and Fresh Tomato Salsa NULL $2.95 +1111 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1111 1 Chips and Guacamole NULL $3.99 +1112 1 Bottled Water NULL $1.50 +1112 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1112 1 Chips NULL $2.15 +1113 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1113 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1114 1 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1114 1 Chips and Guacamole NULL $4.45 +1114 1 Bottled Water NULL $1.50 +1114 1 Canned Soft Drink [Coke] $1.25 +1115 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1115 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1115 1 Chips and Guacamole NULL $4.45 +1116 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1116 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1117 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1117 1 Canned Soda [Diet Dr. Pepper] $1.09 +1117 1 Bottled Water NULL $1.09 +1117 1 Side of Chips NULL $1.69 +1118 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1118 1 Nantucket Nectar [Apple] $3.39 +1119 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1119 1 Side of Chips NULL $1.69 +1120 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1120 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1121 3 Bottled Water NULL $3.27 +1121 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.99 +1122 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1122 1 Canned Soda [Coca Cola] $1.09 +1123 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1123 1 Side of Chips NULL $1.69 +1124 1 Chips and Guacamole NULL $3.99 +1124 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.49 +1124 1 Canned Soda [Coca Cola] $1.09 +1125 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1125 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1126 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1126 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1127 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +1127 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1128 1 Nantucket Nectar [Peach Orange] $3.39 +1128 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1128 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.99 +1128 1 Chips and Fresh Tomato Salsa NULL $2.39 +1129 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1129 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1130 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +1130 1 Steak Burrito [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +1131 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Cheese, Lettuce]] $8.99 +1131 1 Chips and Guacamole NULL $3.99 +1131 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1132 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1132 1 Canned Soda [Diet Coke] $1.09 +1132 1 Veggie Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1133 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1133 1 Nantucket Nectar [Apple] $3.39 +1134 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Lettuce, Guacamole]] $11.25 +1134 1 Canned Soft Drink [Diet Coke] $1.25 +1135 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1135 1 Chips and Guacamole NULL $3.99 +1136 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1136 2 Chips and Guacamole NULL $8.90 +1136 1 6 Pack Soft Drink [Diet Coke] $6.49 +1137 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1137 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +1138 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +1138 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1139 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1139 1 Canned Soft Drink [Sprite] $1.25 +1140 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1140 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +1140 1 Chips and Guacamole NULL $4.45 +1140 1 Canned Soft Drink [Coke] $1.25 +1141 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1141 1 Canned Soft Drink [Coke] $1.25 +1141 1 Chips NULL $2.15 +1142 2 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $17.98 +1142 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1143 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +1143 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1143 1 Canned Soft Drink [Coke] $1.25 +1144 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1144 1 Bottled Water NULL $1.50 +1144 1 Bottled Water NULL $1.50 +1145 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +1145 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1146 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Black Beans, Guacamole, Rice, Sour Cream, Cheese]] $11.08 +1147 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1147 1 Side of Chips NULL $1.69 +1148 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1148 1 Side of Chips NULL $1.69 +1149 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Guacamole]] $10.98 +1149 1 Chips and Guacamole NULL $3.99 +1149 1 Izze [Blackberry] $3.39 +1150 1 Steak Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1150 1 Chips NULL $2.15 +1151 1 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Rice, Guacamole, Lettuce]] $11.75 +1151 1 Chips and Fresh Tomato Salsa NULL $2.95 +1152 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1152 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, Cheese] $8.75 +1153 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1153 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1154 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1154 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1154 1 Chips and Guacamole NULL $4.45 +1155 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1155 1 Canned Soft Drink [Diet Coke] $1.25 +1156 2 Canned Soda [Coca Cola] $2.18 +1156 2 Canned Soda [Sprite] $2.18 +1156 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1156 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream, Lettuce]] $8.49 +1156 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1156 1 Chips and Fresh Tomato Salsa NULL $2.39 +1157 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1157 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1158 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +1158 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.75 +1159 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1159 1 Chips and Guacamole NULL $4.45 +1159 1 Chips NULL $2.15 +1160 1 Chicken Bowl [Fresh Tomato (Mild), [Rice, Sour Cream, Cheese]] $8.19 +1160 1 Chicken Bowl [Fresh Tomato (Mild), [Guacamole, Rice]] $10.58 +1161 1 Chips and Guacamole NULL $4.45 +1161 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1162 1 Bottled Water NULL $1.09 +1162 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1163 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1163 1 Bottled Water NULL $1.50 +1164 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1164 1 Chips and Guacamole NULL $3.99 +1165 1 Chips and Guacamole NULL $4.45 +1165 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1165 1 Chips NULL $2.15 +1166 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1166 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +1166 1 Chips and Guacamole NULL $4.45 +1167 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1167 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1167 3 Chips NULL $6.45 +1167 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1168 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1168 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1169 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1169 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1170 2 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $21.96 +1170 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese]] $8.99 +1170 3 Side of Chips NULL $5.07 +1170 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1171 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1171 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1171 1 Chips and Guacamole NULL $4.45 +1172 1 Nantucket Nectar [Peach Orange] $3.39 +1172 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1173 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1173 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1174 2 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Rice, Black Beans, Lettuce]] $17.50 +1175 2 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $22.96 +1176 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1176 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1176 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.89 +1176 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1177 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +1177 1 Side of Chips NULL $1.69 +1177 1 Canned Soda [Sprite] $1.09 +1178 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1178 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1179 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1179 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1180 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +1180 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1181 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1181 1 Chips and Guacamole NULL $3.99 +1182 1 Steak Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1182 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1182 3 Chips and Tomatillo-Red Chili Salsa NULL $7.17 +1182 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1182 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese]] $8.99 +1183 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1184 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1184 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1185 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1185 1 Canned Soft Drink [Coke] $1.25 +1186 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1186 1 Bottled Water NULL $1.09 +1187 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1187 1 Chips and Guacamole NULL $4.45 +1188 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Fajita Vegetables, Rice, Guacamole, Cheese]] $11.25 +1188 1 Chips NULL $2.15 +1188 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1189 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1189 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole]] $11.25 +1189 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1190 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1190 1 Chips and Guacamole NULL $4.45 +1190 1 Canned Soft Drink [Diet Coke] $1.25 +1191 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1191 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1191 2 Canned Soft Drink [Sprite] $2.50 +1192 1 Veggie Salad [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1192 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1192 2 Bottled Water NULL $2.18 +1193 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1193 1 Chips and Guacamole NULL $4.45 +1193 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +1193 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1194 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1194 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1194 1 Side of Chips NULL $1.69 +1195 1 Canned Soda [Coca Cola] $1.09 +1195 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1195 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1196 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Guacamole, Lettuce]] $11.25 +1196 1 6 Pack Soft Drink [Diet Coke] $6.49 +1196 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1197 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1197 1 Chips and Guacamole NULL $4.45 +1198 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1198 1 Side of Chips NULL $1.69 +1199 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +1200 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1200 2 Canned Soft Drink [Diet Coke] $2.50 +1201 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Cheese, Lettuce, Rice, Black Beans]] $8.49 +1201 1 Canned Soda [Diet Dr. Pepper] $1.09 +1201 1 Bottled Water NULL $1.09 +1201 1 Side of Chips NULL $1.69 +1202 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1202 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1203 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.75 +1203 1 Canned Soft Drink [Sprite] $1.25 +1204 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1204 1 Side of Chips NULL $1.69 +1205 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1205 1 Side of Chips NULL $1.69 +1206 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +1206 1 Chips and Guacamole NULL $4.45 +1206 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +1207 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1207 1 Chips and Guacamole NULL $4.45 +1208 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1208 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1209 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1209 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1210 2 Chips and Guacamole NULL $7.98 +1210 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), Fajita Veggies] $8.49 +1210 1 Bottled Water NULL $1.09 +1211 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.49 +1211 1 Chips and Guacamole NULL $3.99 +1212 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1212 1 Chips and Guacamole NULL $3.99 +1213 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1213 1 Chips and Guacamole NULL $3.99 +1214 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +1214 1 Chips and Guacamole NULL $4.45 +1215 1 Chicken Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Lettuce]] $8.49 +1215 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1216 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1216 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1217 1 Chips and Guacamole NULL $3.99 +1217 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1218 1 Canned Soft Drink [Coke] $1.25 +1218 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +1218 1 Chips and Guacamole NULL $4.45 +1219 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1219 1 Chips and Guacamole NULL $4.45 +1220 1 Canned Soda [Dr. Pepper] $1.09 +1220 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +1220 1 Chips and Guacamole NULL $3.99 +1221 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1221 2 Chips and Guacamole NULL $8.90 +1221 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1222 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1222 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1223 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1223 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1223 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1224 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1224 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1225 1 Steak Crispy Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.99 +1225 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1226 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream]] $8.75 +1226 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +1226 1 Chips and Guacamole NULL $4.45 +1227 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1228 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1228 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1228 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1228 1 Chips and Guacamole NULL $4.45 +1229 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1229 1 Chips and Fresh Tomato Salsa NULL $2.95 +1230 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Fajita Veggies, Lettuce, Rice, Black Beans]] $8.49 +1230 1 Side of Chips NULL $1.69 +1231 3 Canned Soft Drink [Diet Coke] $3.75 +1231 1 Chips and Guacamole NULL $4.45 +1231 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1232 1 Bottled Water NULL $1.50 +1232 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Sour Cream, Cheese, Guacamole, Lettuce, Black Beans, Rice]] $11.25 +1233 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1234 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +1234 1 Chips NULL $2.15 +1235 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1235 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1236 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +1236 1 Chips and Guacamole NULL $3.99 +1237 1 Chicken Bowl [Fresh Tomato (Mild), [Lettuce, Fajita Veggies, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1237 1 Chips and Fresh Tomato Salsa NULL $2.29 +1238 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Guacamole, Lettuce]] $11.48 +1238 1 Side of Chips NULL $1.69 +1239 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +1239 1 Chips and Guacamole NULL $3.99 +1240 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1240 1 Side of Chips NULL $1.69 +1241 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1241 1 Chips and Fresh Tomato Salsa NULL $2.95 +1242 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1242 1 Side of Chips NULL $1.69 +1243 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1243 1 Chips and Guacamole NULL $4.45 +1243 1 Carnitas Salad Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1243 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1243 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1244 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1244 1 Chips and Guacamole NULL $4.45 +1244 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1244 1 Chips and Guacamole NULL $4.45 +1245 1 Chips and Guacamole NULL $4.45 +1245 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1246 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1246 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1246 1 Chips NULL $2.15 +1247 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Sour Cream, Cheese, Rice]] $8.75 +1247 3 Canned Soft Drink [Diet Coke] $3.75 +1248 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1248 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1248 1 Chips and Guacamole NULL $4.45 +1248 1 6 Pack Soft Drink [Diet Coke] $6.49 +1249 2 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Fajita Veggies, Rice]] $16.98 +1250 2 Steak Burrito [Tomatillo Red Chili Salsa, [Cheese, Black Beans, Rice, Lettuce, Sour Cream]] $18.50 +1250 2 Canned Soft Drink [Coke] $2.50 +1250 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1251 1 Chips and Guacamole NULL $3.99 +1251 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1252 1 Chicken Burrito [[Rice, Cheese]] $8.19 +1252 1 Steak Burrito [Fresh Tomato (Mild), [Black Beans, Guacamole, Rice, Sour Cream, Cheese]] $11.08 +1253 1 6 Pack Soft Drink [Lemonade] $6.49 +1253 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1254 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1254 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1254 1 Canned Soda [Diet Dr. Pepper] $1.09 +1255 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1255 1 Chips and Guacamole NULL $4.45 +1255 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +1256 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1256 1 Side of Chips NULL $1.69 +1257 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1258 2 Canned Soda [Dr. Pepper] $2.18 +1258 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream]] $8.99 +1259 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1259 1 Chips and Fresh Tomato Salsa NULL $2.39 +1260 1 Barbacoa Burrito [[Black Beans, Rice, Cheese]] $8.69 +1260 1 Side of Chips NULL $1.69 +1261 2 Chips and Guacamole NULL $8.90 +1261 2 Canned Soft Drink [Diet Coke] $2.50 +1261 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1262 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1262 1 Canned Soda [Coca Cola] $1.09 +1263 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1263 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1264 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1264 1 Chips and Guacamole NULL $4.45 +1265 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Lettuce]] $17.50 +1266 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Lettuce]] $8.75 +1266 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Lettuce]] $9.25 +1267 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1267 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1268 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1268 1 Chips and Guacamole NULL $4.45 +1269 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Lettuce, Pinto Beans, Black Beans, Guacamole, Cheese]] $11.25 +1269 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole, Fajita Vegetables, Rice, Black Beans, Lettuce]] $11.25 +1270 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1270 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1271 1 Chicken Bowl [Fresh Tomato Salsa (Mild), Lettuce] $8.49 +1271 1 Chicken Bowl [Fresh Tomato Salsa (Mild), Cheese] $8.49 +1271 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), Cheese] $8.49 +1271 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), Lettuce] $8.99 +1272 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1272 1 Chips and Guacamole NULL $4.45 +1273 1 Barbacoa Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Guacamole]] $11.48 +1274 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1274 1 Canned Soft Drink [Coke] $1.25 +1274 1 Chips NULL $2.15 +1275 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1275 1 Chips and Guacamole NULL $4.45 +1276 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1276 1 Chips NULL $2.15 +1276 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1277 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Pinto Beans, Cheese, Lettuce]] $8.99 +1277 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1278 1 Barbacoa Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice]] $8.69 +1278 1 Steak Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice]] $8.69 +1279 1 Steak Burrito [Fresh Tomato Salsa, [Guacamole, Lettuce, Sour Cream, Rice]] $11.75 +1279 1 Chips and Fresh Tomato Salsa NULL $2.95 +1280 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1280 1 Bottled Water NULL $1.50 +1281 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1281 1 Chips and Guacamole NULL $4.45 +1281 1 Bottled Water NULL $1.50 +1282 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $11.48 +1282 1 Steak Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.99 +1282 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1283 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1283 1 Barbacoa Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +1283 1 Chips NULL $2.15 +1283 1 Canned Soft Drink [Diet Coke] $1.25 +1284 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1284 1 Chips and Guacamole NULL $4.45 +1285 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +1285 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1286 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1286 1 Chips and Guacamole NULL $4.45 +1287 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1287 1 Chips NULL $2.15 +1287 1 Chips and Guacamole NULL $4.45 +1288 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Sour Cream]] $8.49 +1288 1 Canned Soda [Mountain Dew] $1.09 +1288 1 Chips and Guacamole NULL $3.99 +1289 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +1289 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1290 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1290 1 Chips and Fresh Tomato Salsa NULL $2.39 +1291 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1291 1 Chips and Fresh Tomato Salsa NULL $2.39 +1292 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Rice, Sour Cream, Fajita Vegetables]] $11.25 +1292 1 Chips NULL $2.15 +1293 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1293 1 Chips and Fresh Tomato Salsa NULL $2.95 +1293 1 Canned Soft Drink [Coke] $1.25 +1294 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1294 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1295 2 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Pinto Beans, Rice]] $17.50 +1296 1 Steak Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1296 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1297 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1297 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1298 1 Chips and Guacamole NULL $4.45 +1298 2 Canned Soft Drink [Diet Coke] $2.50 +1298 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1299 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.99 +1299 1 Barbacoa Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1299 1 Side of Chips NULL $1.69 +1300 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1300 1 Side of Chips NULL $1.69 +1301 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1301 1 Canned Soft Drink [Diet Coke] $1.25 +1302 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +1302 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Rice]] $8.69 +1303 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1303 1 Canned Soda [Sprite] $1.09 +1304 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1304 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1304 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1304 1 Canned Soft Drink [Sprite] $1.25 +1305 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +1305 1 Canned Soft Drink [Diet Coke] $1.25 +1305 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1306 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1306 1 Chips NULL $2.15 +1306 1 Canned Soft Drink [Sprite] $1.25 +1307 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1307 1 Chips and Guacamole NULL $3.99 +1308 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1308 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1309 1 Chicken Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1309 3 Chips and Tomatillo-Red Chili Salsa NULL $7.17 +1310 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1310 1 Chips and Guacamole NULL $4.45 +1311 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Guacamole, Lettuce, Sour Cream, Rice, Cheese, Black Beans]] $11.48 +1312 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1312 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +1313 1 Barbacoa Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1314 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1314 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1315 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +1315 1 Chips and Guacamole NULL $3.99 +1316 1 Bottled Water NULL $1.50 +1316 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1317 1 Chicken Bowl [Fresh Tomato Salsa, [Lettuce, Fajita Vegetables, Guacamole, Rice, Black Beans]] $11.25 +1317 1 Chicken Bowl [Fresh Tomato Salsa, [Lettuce, Cheese, Pinto Beans, Rice]] $8.75 +1318 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1318 1 Chips and Guacamole NULL $4.45 +1319 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1319 1 Chips and Guacamole NULL $4.45 +1320 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1320 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese]] $8.75 +1320 2 Chips NULL $4.30 +1320 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1321 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1321 3 Bottled Water NULL $4.50 +1322 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce, Pinto Beans]] $9.25 +1322 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Guacamole, Cheese, Sour Cream]] $11.25 +1322 1 Chips and Guacamole NULL $4.45 +1323 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1323 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1323 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1323 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +1324 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1324 1 Chips NULL $2.15 +1324 1 Canned Soft Drink [Sprite] $1.25 +1325 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1325 1 Chips NULL $2.15 +1325 1 Canned Soft Drink [Nestea] $1.25 +1326 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +1326 1 Chicken Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +1327 1 Chicken Salad Bowl [Fresh Tomato Salsa] $8.75 +1327 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +1327 1 Canned Soft Drink [Sprite] $1.25 +1328 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1328 3 Bottled Water NULL $4.50 +1329 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +1329 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1330 1 Chips and Guacamole NULL $3.99 +1330 1 Nantucket Nectar [Peach Orange] $3.39 +1330 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1330 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1330 1 Barbacoa Crispy Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1331 1 Bottled Water NULL $1.50 +1331 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1331 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1332 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1332 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1332 1 Chips NULL $2.15 +1333 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1333 1 Chips NULL $2.15 +1333 1 Canned Soft Drink [Sprite] $1.25 +1334 2 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $21.96 +1335 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1335 1 Side of Chips NULL $1.69 +1336 3 Steak Bowl [Tomatillo Green Chili (Medium), [Rice, Black Beans, Sour Cream, Cheese]] $26.07 +1337 1 Steak Bowl [Fresh Tomato Salsa, [Cheese, Black Beans, Pinto Beans, Guacamole, Sour Cream]] $11.75 +1337 1 Bottled Water NULL $1.50 +1338 1 Steak Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Lettuce]] $8.99 +1338 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Pinto Beans, Lettuce]] $8.99 +1339 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1340 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1340 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1341 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1341 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1341 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +1341 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1341 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +1342 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce, Cheese]] $8.75 +1342 1 Chips NULL $2.15 +1342 1 Canned Soft Drink [Sprite] $1.25 +1343 1 Steak Salad Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.89 +1343 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1344 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1344 1 Chips and Guacamole NULL $4.45 +1345 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $18.50 +1346 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $9.25 +1346 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.39 +1347 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1347 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1348 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1348 1 Side of Chips NULL $1.69 +1348 1 Bottled Water NULL $1.09 +1349 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1349 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1349 2 Canned Soda [Coca Cola] $2.18 +1350 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1350 1 Canned Soft Drink [Nestea] $1.25 +1351 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1351 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1352 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1352 1 Chips and Guacamole NULL $3.99 +1353 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1353 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1354 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1354 1 Side of Chips NULL $1.69 +1355 2 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $16.98 +1356 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1356 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1356 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +1356 1 Canned Soft Drink [Diet Coke] $1.25 +1357 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1357 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +1358 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1358 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1359 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1359 1 Canned Soft Drink [Diet Coke] $1.25 +1359 1 Canned Soft Drink [Lemonade] $1.25 +1359 1 Canned Soft Drink [Nestea] $1.25 +1360 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1360 2 6 Pack Soft Drink [Diet Coke] $12.98 +1360 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1360 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1360 1 Chips and Guacamole NULL $4.45 +1361 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1361 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1362 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1362 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +1363 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Cheese, Sour Cream, Lettuce]] $8.49 +1363 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1364 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Lettuce, Cheese, Rice]] $9.25 +1364 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Guacamole, Cheese, Sour Cream]] $11.25 +1365 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Cheese, Lettuce, Rice, Pinto Beans]] $8.75 +1365 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1365 1 Bottled Water NULL $1.50 +1366 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1366 1 Chips and Fresh Tomato Salsa NULL $2.95 +1367 1 Steak Crispy Tacos [Fresh Tomato Salsa, Lettuce] $9.25 +1367 1 Chips and Fresh Tomato Salsa NULL $2.95 +1367 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1367 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1368 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1368 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Lettuce]] $8.75 +1369 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1369 1 Chips and Guacamole NULL $4.45 +1370 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1370 1 Canned Soft Drink [Coke] $1.25 +1371 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1371 1 Chips and Fresh Tomato Salsa NULL $2.95 +1371 2 Canned Soft Drink [Diet Coke] $2.50 +1372 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1372 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1373 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1373 1 6 Pack Soft Drink [Coke] $6.49 +1374 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $17.50 +1375 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1375 1 Side of Chips NULL $1.69 +1376 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1376 1 Chips and Guacamole NULL $3.99 +1377 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Black Beans, Rice]] $8.75 +1377 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1377 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1378 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Lettuce]] $8.49 +1378 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Lettuce]] $8.99 +1379 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream]] $8.99 +1379 1 Canned Soda [Sprite] $1.09 +1380 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1380 1 Chips and Guacamole NULL $4.45 +1380 1 Canned Soft Drink [Coke] $1.25 +1381 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1381 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1382 1 Chicken Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +1382 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1383 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +1383 1 Bottled Water NULL $1.50 +1384 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +1384 1 Chips NULL $2.15 +1385 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1386 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1386 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.75 +1387 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1387 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1388 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1388 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1389 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +1389 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $9.25 +1389 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1390 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +1390 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese]] $8.75 +1390 1 Canned Soft Drink [Coke] $1.25 +1391 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1391 1 Bottled Water NULL $1.50 +1391 1 Chips NULL $2.15 +1392 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1392 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1392 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1393 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1393 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +1394 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1394 1 Chips and Guacamole NULL $4.45 +1395 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +1395 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Sour Cream]] $8.49 +1395 1 Veggie Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1396 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream, Lettuce]] $8.49 +1396 1 Steak Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +1396 1 Side of Chips NULL $1.69 +1396 1 Chips and Fresh Tomato Salsa NULL $2.39 +1396 1 Canned Soda [Coca Cola] $1.09 +1396 1 Canned Soda [Dr. Pepper] $1.09 +1397 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1397 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1398 3 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $35.25 +1399 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Rice, Black Beans]] $8.75 +1399 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1399 1 Canned Soft Drink [Sprite] $1.25 +1400 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Sour Cream, Cheese, Rice, Fajita Vegetables]] $11.25 +1400 1 Chips NULL $2.15 +1401 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $9.25 +1401 1 Chips and Guacamole NULL $4.45 +1402 1 Chicken Burrito [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +1402 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1402 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Sour Cream]] $8.75 +1402 1 Chips and Guacamole NULL $4.45 +1403 1 Canned Soft Drink [Diet Coke] $1.25 +1403 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.89 +1404 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1404 1 Chips NULL $2.15 +1404 1 Canned Soft Drink [Diet Coke] $1.25 +1405 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1405 1 Canned Soda [Diet Dr. Pepper] $1.09 +1405 1 Bottled Water NULL $1.09 +1405 1 Side of Chips NULL $1.69 +1406 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1406 1 Steak Salad [[Lettuce, Fajita Veggies]] $8.69 +1407 1 Steak Crispy Tacos [Fresh Tomato Salsa] $9.25 +1407 1 Chips and Fresh Tomato Salsa NULL $2.95 +1408 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $10.98 +1408 1 Chips and Fresh Tomato Salsa NULL $2.39 +1409 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +1410 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1411 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1411 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1411 1 Side of Chips NULL $1.69 +1412 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.75 +1412 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1413 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese]] $8.75 +1413 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1414 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Sour Cream]] $8.75 +1414 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1414 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Sour Cream]] $8.75 +1415 1 Chicken Burrito [[Rice, Cheese]] $8.19 +1415 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Sour Cream, Cheese]] $10.58 +1416 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Cheese, Lettuce, Pinto Beans, Rice]] $8.75 +1416 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1416 1 Bottled Water NULL $1.50 +1417 2 Canned Soft Drink [Coke] $2.50 +1417 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1417 1 Chips and Guacamole NULL $4.45 +1418 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans]] $9.25 +1418 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1419 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Rice]] $8.69 +1419 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $8.69 +1419 1 Chips and Guacamole NULL $3.89 +1420 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1420 1 Side of Chips NULL $1.69 +1421 1 Chips and Guacamole NULL $4.45 +1421 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1422 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1422 1 Chips and Guacamole NULL $4.45 +1422 1 Chips NULL $2.15 +1423 1 Chicken Burrito [[Lettuce, Fajita Veggies, Rice]] $8.19 +1423 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1424 1 Chips and Guacamole NULL $4.45 +1424 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1425 1 Canned Soft Drink [Coke] $1.25 +1425 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1425 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1426 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, Guacamole] $11.89 +1426 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1426 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Guacamole, Lettuce]] $11.75 +1426 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1427 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1427 1 Chips NULL $2.15 +1427 1 Bottled Water NULL $1.50 +1428 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1428 1 Chips and Guacamole NULL $4.45 +1429 1 Chips and Guacamole NULL $3.99 +1429 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1429 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1429 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1430 1 Canned Soft Drink [Sprite] $1.25 +1430 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1430 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1431 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1431 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1431 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1431 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1431 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1431 1 Chips NULL $2.15 +1432 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1432 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1433 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1433 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1433 1 Chicken Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.49 +1433 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1434 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1434 1 Canned Soda [Dr. Pepper] $1.09 +1434 1 Canned Soda [Coca Cola] $1.09 +1434 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +1435 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1435 1 Canned Soft Drink [Diet Coke] $1.25 +1436 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1436 1 Bottled Water NULL $1.09 +1437 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1437 1 Chips NULL $2.15 +1437 1 Bottled Water NULL $1.50 +1438 1 Chips and Guacamole NULL $3.99 +1438 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1439 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1439 1 Chips NULL $2.15 +1439 1 Bottled Water NULL $1.50 +1440 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1440 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1440 2 Canned Soda [Diet Coke] $2.18 +1441 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1441 1 Chips NULL $2.15 +1441 1 Bottled Water NULL $1.50 +1442 1 Chips and Guacamole NULL $4.45 +1442 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1443 15 Chips and Fresh Tomato Salsa NULL $44.25 +1443 7 Bottled Water NULL $10.50 +1443 1 6 Pack Soft Drink [Coke] $6.49 +1443 3 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $33.75 +1443 4 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $35.00 +1443 3 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $27.75 +1443 2 Bottled Water NULL $3.00 +1444 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1444 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1445 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $10.98 +1445 1 Chips and Fresh Tomato Salsa NULL $2.39 +1446 2 Canned Soft Drink [Diet Coke] $2.50 +1446 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1446 1 Chips and Guacamole NULL $4.45 +1447 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Fajita Veggies, Pinto Beans, Rice]] $16.98 +1448 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1448 1 6 Pack Soft Drink [Nestea] $6.49 +1449 2 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $16.98 +1449 2 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $17.98 +1449 2 Veggie Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $16.98 +1449 2 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $16.98 +1449 1 Carnitas Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Lettuce]] $8.99 +1449 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.99 +1449 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.49 +1450 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Lettuce]] $9.25 +1450 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1450 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1451 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +1451 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1452 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Pinto Beans, Lettuce]] $8.99 +1452 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1453 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1453 1 Chips and Guacamole NULL $4.45 +1453 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1453 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1454 1 6 Pack Soft Drink [Coke] $6.49 +1454 3 Chicken Burrito [Fresh Tomato Salsa] $26.25 +1454 1 Chicken Soft Tacos [Fresh Tomato Salsa, Rice] $8.75 +1454 3 Chicken Burrito [Fresh Tomato Salsa, Rice] $26.25 +1454 1 Chicken Soft Tacos [Fresh Tomato Salsa, Rice] $8.75 +1454 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Rice] $8.75 +1455 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1455 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole, Lettuce]] $11.25 +1455 1 Chips NULL $2.15 +1456 1 Canned Soft Drink [Sprite] $1.25 +1456 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1457 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1457 1 Chips NULL $2.15 +1457 1 Bottled Water NULL $1.50 +1458 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Fajita Vegetables]] $11.25 +1458 1 Chips NULL $2.15 +1459 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1459 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1460 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1460 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1460 1 Chips NULL $2.15 +1461 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1461 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1461 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1462 2 Chips and Tomatillo-Green Chili Salsa NULL $4.78 +1462 2 Chicken Soft Tacos [[Tomatillo-Green Chili Salsa (Medium), Fresh Tomato Salsa (Mild)], [Cheese, Sour Cream, Guacamole]] $21.96 +1463 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1463 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1464 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +1464 1 Chips and Fresh Tomato Salsa NULL $2.95 +1465 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1466 1 Chicken Bowl [Fresh Tomato (Mild), [Lettuce, Fajita Veggies, Pinto Beans, Rice, Sour Cream, Cheese]] $8.19 +1466 1 Chips and Guacamole NULL $3.89 +1467 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1467 1 Bottled Water NULL $1.09 +1468 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1468 1 Izze [Blackberry] $3.39 +1469 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1469 1 Chips and Guacamole NULL $4.45 +1470 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1470 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1471 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1472 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1472 1 Canned Soft Drink [Coke] $1.25 +1472 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1473 1 Steak Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1473 1 Chips and Guacamole NULL $4.45 +1474 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +1474 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Guacamole]] $11.25 +1475 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1475 1 Canned Soda [Coca Cola] $1.09 +1476 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1476 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1476 1 Side of Chips NULL $1.69 +1477 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Guacamole]] $11.25 +1477 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1478 2 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Sour Cream, Cheese, Black Beans, Rice]] $16.98 +1479 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1479 1 Chips and Guacamole NULL $4.45 +1480 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Lettuce, Rice, Fajita Vegetables, Sour Cream]] $11.25 +1480 1 6 Pack Soft Drink [Diet Coke] $6.49 +1480 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +1481 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1481 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1482 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1482 1 Chips and Guacamole NULL $4.45 +1482 2 Canned Soft Drink [Diet Coke] $2.50 +1483 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1483 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1483 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1483 1 Steak Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans]] $9.25 +1483 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1483 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1483 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1483 1 Steak Soft Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +1483 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $9.25 +1483 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1484 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +1484 1 Canned Soda [Dr. Pepper] $1.09 +1484 1 Canned Soda [Dr. Pepper] $1.09 +1485 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1485 1 Canned Soda [Diet Dr. Pepper] $1.09 +1485 1 Side of Chips NULL $1.69 +1486 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Lettuce, Rice, Cheese, Sour Cream, Black Beans]] $11.25 +1486 1 Canned Soft Drink [Lemonade] $1.25 +1487 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1487 1 Chips NULL $2.15 +1487 1 Bottled Water NULL $1.50 +1488 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1488 1 Side of Chips NULL $1.69 +1489 1 Canned Soft Drink [Diet Coke] $1.25 +1489 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1489 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1490 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1490 1 Chips and Guacamole NULL $3.99 +1491 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice]] $8.49 +1491 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Black Beans, Cheese, Lettuce]] $8.49 +1492 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1492 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1492 1 Chips NULL $2.15 +1493 1 Bottled Water NULL $1.50 +1493 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1494 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream]] $8.99 +1494 1 Canned Soda [Sprite] $1.09 +1495 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1496 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1497 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1497 1 Canned Soft Drink [Sprite] $1.25 +1498 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1498 1 Chips and Guacamole NULL $4.45 +1499 1 Chips and Guacamole NULL $4.45 +1499 1 Canned Soft Drink [Sprite] $1.25 +1499 1 Carnitas Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1500 1 Carnitas Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +1500 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1501 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1501 1 Chips and Guacamole NULL $4.45 +1502 2 Steak Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +1503 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1503 1 Chips and Guacamole NULL $3.99 +1504 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1504 1 Chips and Guacamole NULL $4.45 +1505 1 Chips and Guacamole NULL $4.45 +1505 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1506 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1506 1 Chips and Guacamole NULL $4.45 +1507 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1507 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1508 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1508 1 6 Pack Soft Drink [Coke] $6.49 +1509 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $17.50 +1509 1 Chips and Guacamole NULL $4.45 +1510 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1510 1 Chips and Fresh Tomato Salsa NULL $2.95 +1510 1 Bottled Water NULL $1.50 +1511 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1511 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice]] $8.75 +1511 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1511 1 Chips and Guacamole NULL $4.45 +1511 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1512 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1512 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1513 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1513 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1514 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1514 1 Chips and Guacamole NULL $4.45 +1514 2 Bottled Water NULL $3.00 +1514 1 Canned Soft Drink [Diet Coke] $1.25 +1515 1 Chips and Fresh Tomato Salsa NULL $2.95 +1515 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $9.25 +1516 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1516 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1517 1 6 Pack Soft Drink [Diet Coke] $6.49 +1517 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1517 2 Chips and Guacamole NULL $8.90 +1518 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Guacamole]] $11.48 +1518 1 Canned Soda [Diet Coke] $1.09 +1519 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1520 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $9.25 +1520 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1521 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1521 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1522 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1522 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1523 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1523 1 Canned Soft Drink [Nestea] $1.25 +1524 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +1524 1 Chips and Guacamole NULL $4.45 +1525 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1525 1 6 Pack Soft Drink [Sprite] $6.49 +1526 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1526 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1527 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream]] $8.99 +1527 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1528 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1528 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1529 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1529 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1530 1 Canned Soft Drink [Coke] $1.25 +1530 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1530 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1531 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +1531 1 Chips NULL $2.15 +1532 1 Veggie Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1532 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1533 1 Barbacoa Bowl [Fresh Tomato (Mild), [Lettuce, Rice, Cheese]] $8.69 +1533 2 Chicken Burrito [[Lettuce, Rice]] $16.38 +1533 1 Chicken Burrito [Rice] $8.19 +1533 1 Chips and Guacamole NULL $3.89 +1533 1 Chips and Fresh Tomato Salsa NULL $2.29 +1534 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +1534 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1534 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1535 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1535 1 Chips and Guacamole NULL $4.45 +1536 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1536 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1537 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1537 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1537 1 6 Pack Soft Drink [Coke] $6.49 +1537 1 Chips and Fresh Tomato Salsa NULL $2.95 +1538 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1538 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1538 1 Chips NULL $2.15 +1539 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1539 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1540 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1541 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1541 1 Nantucket Nectar [Peach Orange] $3.39 +1541 1 Side of Chips NULL $1.69 +1541 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1542 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1542 1 Chips and Guacamole NULL $4.45 +1543 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1543 1 Chips and Guacamole NULL $3.99 +1544 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1544 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1545 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1545 1 Chips NULL $2.15 +1546 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1546 1 Chips and Guacamole NULL $4.45 +1547 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1547 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1547 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1548 2 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $18.50 +1549 1 Bottled Water NULL $1.50 +1549 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1549 1 Chips NULL $2.15 +1550 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1550 2 Canned Soda [Mountain Dew] $2.18 +1550 1 Chips and Guacamole NULL $3.99 +1551 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1551 1 Bottled Water NULL $1.50 +1552 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream]] $8.99 +1552 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1553 1 Steak Burrito [Roasted Chili Corn Salsa, [Pinto Beans, Rice, Guacamole, Sour Cream, Cheese]] $11.75 +1553 1 Bottled Water NULL $1.50 +1554 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1554 1 6 Pack Soft Drink [Diet Coke] $6.49 +1554 1 Chips and Guacamole NULL $4.45 +1554 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1555 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1555 1 Chips and Guacamole NULL $3.99 +1556 2 Canned Soft Drink [Coke] $2.50 +1556 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1556 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1557 1 Chips and Guacamole NULL $3.99 +1557 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Pinto Beans, Cheese]] $8.99 +1558 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +1558 1 6 Pack Soft Drink [Diet Coke] $6.49 +1559 8 Side of Chips NULL $13.52 +1559 2 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Lettuce]] $16.98 +1559 2 Veggie Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $16.98 +1559 2 Carnitas Crispy Tacos [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $17.98 +1559 2 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $16.98 +1560 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1560 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1561 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1561 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1562 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1562 1 Canned Soda [Mountain Dew] $1.09 +1562 1 Side of Chips NULL $1.69 +1563 1 Canned Soft Drink [Lemonade] $1.25 +1563 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1563 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1564 1 Barbacoa Burrito [Fresh Tomato (Mild), [Black Beans, Rice, Sour Cream, Cheese]] $8.69 +1564 1 Chicken Burrito [Fresh Tomato (Mild), [Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1565 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1565 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1566 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1566 1 Chips and Fresh Tomato Salsa NULL $2.39 +1567 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1568 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1568 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1569 1 Side of Chips NULL $1.69 +1569 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1570 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1570 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1571 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.25 +1571 1 Chips and Guacamole NULL $4.45 +1572 1 Chips and Guacamole NULL $4.45 +1572 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Black Beans, Rice]] $17.50 +1573 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Rice, Black Beans]] $8.75 +1573 1 Chips and Guacamole NULL $4.45 +1574 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1574 1 Chips NULL $2.15 +1574 1 Bottled Water NULL $1.50 +1574 1 Bottled Water NULL $1.50 +1575 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies]] $8.99 +1575 1 Canned Soda [Dr. Pepper] $1.09 +1576 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1576 1 Chips and Guacamole NULL $4.45 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1577 2 Chips NULL $4.30 +1578 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1578 1 Side of Chips NULL $1.69 +1578 1 Bottled Water NULL $1.09 +1578 1 Canned Soda [Diet Dr. Pepper] $1.09 +1579 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1579 1 Chips NULL $2.15 +1579 1 Bottled Water NULL $1.50 +1580 1 Carnitas Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.99 +1580 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1580 1 Chips and Guacamole NULL $3.99 +1581 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1581 1 Chips NULL $2.15 +1581 1 Canned Soft Drink [Nestea] $1.25 +1582 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1582 1 Chips and Fresh Tomato Salsa NULL $2.95 +1583 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1583 1 Chips and Guacamole NULL $4.45 +1584 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce, Rice, Cheese]] $9.25 +1584 1 Chips and Fresh Tomato Salsa NULL $2.95 +1585 1 Chips and Guacamole NULL $3.99 +1585 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1585 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1586 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +1586 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1586 1 Chips and Guacamole NULL $4.45 +1587 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1587 1 Canned Soft Drink [Coke] $1.25 +1588 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1588 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1588 1 Chips and Guacamole NULL $4.45 +1588 1 Chips and Fresh Tomato Salsa NULL $2.95 +1589 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1590 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Fajita Vegetables, Lettuce, Cheese, Sour Cream]] $8.75 +1590 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1591 2 Steak Burrito [Fresh Tomato Salsa, [Lettuce, Sour Cream, Cheese, Fajita Vegetables, Pinto Beans, Rice]] $18.50 +1592 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1592 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1592 4 Canned Soft Drink [Coke] $5.00 +1592 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1592 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1593 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1594 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1594 1 Chips and Fresh Tomato Salsa NULL $2.95 +1595 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1595 1 Chips NULL $2.15 +1595 1 Bottled Water NULL $1.50 +1596 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1596 1 Chips and Fresh Tomato Salsa NULL $2.39 +1597 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1597 1 Chips NULL $2.15 +1597 1 Canned Soft Drink [Nestea] $1.25 +1598 1 Chicken Burrito [Tomatillo Green Chili (Medium), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1598 1 Steak Burrito [Tomatillo Red Chili (Hot), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.69 +1598 1 Chicken Salad [Roasted Chili Corn (Medium), [Lettuce, Black Beans, Cheese]] $8.19 +1598 1 Chicken Burrito [Roasted Chili Corn (Medium), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1599 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1599 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1599 1 Canned Soft Drink [Nestea] $1.25 +1600 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1600 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1601 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1602 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1602 1 Bottled Water NULL $1.09 +1603 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1603 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1603 1 Chips and Guacamole NULL $4.45 +1604 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1604 1 Chips and Guacamole NULL $3.99 +1604 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1604 1 Canned Soda [Diet Coke] $1.09 +1605 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1605 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1606 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1606 1 Chicken Salad Bowl [Fresh Tomato Salsa] $8.75 +1607 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1607 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1608 1 Chips and Guacamole NULL $4.45 +1608 2 Canned Soft Drink [Diet Coke] $2.50 +1608 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1609 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1609 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1610 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1610 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1610 1 Chips and Guacamole NULL $4.45 +1610 1 Canned Soft Drink [Lemonade] $1.25 +1611 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1611 1 Chips NULL $2.15 +1611 1 Chips and Guacamole NULL $4.45 +1611 2 Canned Soft Drink [Coke] $2.50 +1612 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1612 1 Chips and Guacamole NULL $3.99 +1613 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +1613 1 Chips NULL $2.15 +1613 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1614 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1614 1 Canned Soft Drink [Coke] $1.25 +1615 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1615 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $9.39 +1615 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1615 1 Steak Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1616 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $9.25 +1616 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1617 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +1617 1 Chips and Guacamole NULL $4.45 +1618 1 Canned Soft Drink [Diet Coke] $1.25 +1618 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1618 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1619 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole]] $11.75 +1619 1 Bottled Water NULL $1.50 +1620 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1620 1 Chips and Guacamole NULL $4.45 +1621 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies]] $8.99 +1621 1 Canned Soda [Sprite] $1.09 +1622 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1622 1 Chips and Fresh Tomato Salsa NULL $2.95 +1623 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Sour Cream, Lettuce, Cheese, Black Beans, Rice]] $8.99 +1623 1 Side of Chips NULL $1.69 +1624 1 Barbacoa Bowl [[Rice, Cheese]] $8.69 +1624 1 Side of Chips NULL $1.69 +1625 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1625 1 Chips and Guacamole NULL $4.45 +1626 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1626 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1626 1 Chips and Guacamole NULL $4.45 +1627 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1627 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1627 1 Chips and Fresh Tomato Salsa NULL $2.95 +1627 1 Bottled Water NULL $1.50 +1628 1 Chicken Burrito [[Lettuce, Rice, Fajita Veggies]] $8.19 +1628 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1629 1 Bottled Water NULL $1.09 +1629 1 Side of Chips NULL $1.69 +1629 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +1630 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1630 1 Chips and Fresh Tomato Salsa NULL $2.95 +1630 1 Canned Soft Drink [Coke] $1.25 +1631 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1631 1 Chips and Guacamole NULL $3.99 +1632 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +1632 1 Nantucket Nectar [Peach Orange] $3.39 +1633 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1633 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1633 1 Chips NULL $2.15 +1634 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $18.50 +1635 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1635 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1636 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +1636 1 Bottled Water NULL $1.50 +1637 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1637 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1638 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1638 1 Chips and Fresh Tomato Salsa NULL $2.39 +1639 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1639 1 Chips and Guacamole NULL $4.45 +1640 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1641 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1641 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1642 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1642 1 Chips and Guacamole NULL $4.45 +1642 3 Canned Soft Drink [Diet Coke] $3.75 +1643 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1643 1 Chips and Guacamole NULL $4.45 +1643 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1643 1 Chips and Fresh Tomato Salsa NULL $2.95 +1644 1 Canned Soft Drink [Lemonade] $1.25 +1644 1 Chips and Guacamole NULL $4.45 +1644 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1645 1 Canned Soft Drink [Coke] $1.25 +1645 1 Bottled Water NULL $1.50 +1645 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1646 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1646 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1647 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1647 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1648 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1648 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1648 1 Chips and Guacamole NULL $4.45 +1648 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1649 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1649 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1650 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1650 1 Chips and Guacamole NULL $4.45 +1651 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1651 1 Canned Soft Drink [Lemonade] $1.25 +1651 1 Chips NULL $2.15 +1652 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1652 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1652 2 Chips NULL $4.30 +1653 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1653 1 Canned Soft Drink [Sprite] $1.25 +1653 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1654 1 Steak Soft Tacos [Fresh Tomato Salsa] $9.25 +1654 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1655 1 Chips and Guacamole NULL $4.45 +1655 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1655 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1655 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1655 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1655 3 Bottled Water NULL $4.50 +1656 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1656 1 Canned Soft Drink [Lemonade] $1.25 +1657 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1657 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1657 1 Canned Soft Drink [Coke] $1.25 +1657 1 Canned Soft Drink [Nestea] $1.25 +1658 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans]] $9.25 +1658 1 Chips and Guacamole NULL $4.45 +1659 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1659 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1660 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +1660 1 Chips NULL $2.15 +1660 1 Canned Soft Drink [Coke] $1.25 +1660 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1660 10 Bottled Water NULL $15.00 +1660 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +1660 1 Chips and Guacamole NULL $4.45 +1660 1 Chips and Guacamole NULL $4.45 +1660 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1661 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Sour Cream, Cheese, Rice, Fajita Vegetables]] $11.25 +1661 1 Chips NULL $2.15 +1662 1 Canned Soft Drink [Sprite] $1.25 +1662 1 Bottled Water NULL $1.50 +1662 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $8.75 +1662 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +1662 1 Chips and Fresh Tomato Salsa NULL $2.95 +1663 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1663 1 Canned Soft Drink [Sprite] $1.25 +1664 1 Chips NULL $2.15 +1664 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1664 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1664 1 6 Pack Soft Drink [Diet Coke] $6.49 +1665 1 Canned Soft Drink [Diet Coke] $1.25 +1665 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1665 1 Chips NULL $2.15 +1666 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1666 1 6 Pack Soft Drink [Coke] $6.49 +1667 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1667 1 Bottled Water NULL $1.50 +1668 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1668 1 Chips and Guacamole NULL $4.45 +1669 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +1669 1 Chips and Guacamole NULL $4.45 +1670 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1670 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1670 1 Canned Soft Drink [Coke] $1.25 +1670 1 Canned Soft Drink [Sprite] $1.25 +1671 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1671 3 Bottled Water NULL $4.50 +1672 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1672 1 Canned Soft Drink [Coke] $1.25 +1673 1 Bottled Water NULL $1.50 +1673 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1673 1 Chips NULL $2.15 +1673 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.25 +1673 1 Chips and Guacamole NULL $4.45 +1674 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1674 1 Chips and Guacamole NULL $4.45 +1675 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1675 1 Chips and Guacamole NULL $4.45 +1676 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +1676 1 Chips and Guacamole NULL $4.45 +1676 1 Canned Soft Drink [Coke] $1.25 +1677 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Guacamole]] $11.25 +1677 1 Chips and Guacamole NULL $4.45 +1678 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1678 1 Chips and Guacamole NULL $4.45 +1679 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $8.75 +1679 1 Chips NULL $2.15 +1679 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +1679 1 Chips and Guacamole NULL $4.45 +1679 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1680 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1680 1 Bottled Water NULL $1.50 +1681 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1681 1 Chips and Guacamole NULL $4.45 +1682 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1682 1 Chips NULL $2.15 +1682 1 Bottled Water NULL $1.50 +1683 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1683 1 Chips and Guacamole NULL $4.45 +1684 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +1684 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +1685 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1685 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1686 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1686 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1687 1 Bottled Water NULL $1.50 +1687 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +1687 1 Chips NULL $2.15 +1688 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +1688 1 Chips NULL $2.15 +1689 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1689 1 Chips and Fresh Tomato Salsa NULL $2.95 +1690 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $18.50 +1690 1 Canned Soft Drink [Coke] $1.25 +1690 1 Chips and Guacamole NULL $4.45 +1691 1 Chicken Bowl [White Rice] $8.50 +1691 1 Chicken Bowl [White Rice] $8.50 +1691 2 Chips and Guacamole NULL $8.50 +1692 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1692 1 Carnitas Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $11.89 +1692 1 Canned Soft Drink [Diet Coke] $1.25 +1693 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1693 1 Chips and Guacamole NULL $4.45 +1694 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1694 1 Chips NULL $2.15 +1694 1 Bottled Water NULL $1.50 +1695 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1695 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +1695 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1696 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1696 1 Chips and Guacamole NULL $4.45 +1696 1 Canned Soft Drink [Coke] $1.25 +1696 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1697 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1697 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1698 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1698 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1698 1 Chips NULL $2.15 +1699 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1699 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +1699 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1700 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +1700 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1701 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1701 1 Chips NULL $2.15 +1701 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1701 1 Chips NULL $2.15 +1702 1 Steak Bowl [Rice, Tomatillo-Red Chili Salsa (Hot)] $8.99 +1702 1 Steak Burrito [Rice, Tomatillo-Red Chili Salsa (Hot)] $8.99 +1703 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1703 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1703 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1703 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1704 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Rice, Lettuce, Cheese]] $8.75 +1704 1 Chips and Guacamole NULL $4.45 +1705 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1705 1 Canned Soft Drink [Diet Coke] $1.25 +1705 1 Chips and Guacamole NULL $4.45 +1706 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1706 1 Canned Soft Drink [Coke] $1.25 +1707 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1707 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1708 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1708 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1709 1 Canned Soft Drink [Diet Coke] $1.25 +1709 1 Canned Soft Drink [Sprite] $1.25 +1709 1 Canned Soft Drink [Nestea] $1.25 +1709 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1710 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +1710 1 Chips NULL $2.15 +1711 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1711 1 Chips and Guacamole NULL $4.45 +1712 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1712 1 Chips and Guacamole NULL $4.45 +1713 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +1713 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +1714 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +1714 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $9.25 +1714 1 Chips and Guacamole NULL $4.45 +1715 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1715 1 Chips and Guacamole NULL $4.45 +1715 1 Canned Soft Drink [Coke] $1.25 +1716 1 Chips and Guacamole NULL $4.45 +1716 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1717 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +1717 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1717 1 Chips NULL $2.15 +1718 2 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $23.50 +1718 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $9.25 +1718 1 Chips NULL $2.15 +1719 2 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Sour Cream]] $18.50 +1719 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1719 2 Chips and Tomatillo Red Chili Salsa NULL $5.90 +1720 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.89 +1720 1 Chips and Guacamole NULL $4.45 +1721 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1721 1 Chips and Guacamole NULL $4.45 +1722 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1722 1 Chips and Fresh Tomato Salsa NULL $2.95 +1723 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1723 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1724 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1724 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1725 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1725 1 Chips and Fresh Tomato Salsa NULL $2.95 +1726 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1726 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1727 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +1727 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1728 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Lettuce]] $11.25 +1728 1 Chips NULL $2.15 +1729 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1729 2 Chips and Guacamole NULL $8.90 +1730 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1730 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1731 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1731 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1732 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1732 1 Chips NULL $2.15 +1732 1 Canned Soft Drink [Coke] $1.25 +1733 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1733 1 Canned Soft Drink [Sprite] $1.25 +1734 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1734 1 Chips and Guacamole NULL $4.45 +1735 1 Canned Soft Drink [Coke] $1.25 +1735 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1735 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1736 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1736 1 Canned Soft Drink [Coke] $1.25 +1737 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +1737 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1737 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1738 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1738 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce]] $8.75 +1738 2 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $18.50 +1739 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.75 +1739 1 Canned Soft Drink [Coke] $1.25 +1740 1 Chips and Guacamole NULL $4.45 +1740 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1741 1 6 Pack Soft Drink [Coke] $6.49 +1741 1 Chips and Guacamole NULL $4.45 +1741 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +1742 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Rice, Cheese, Lettuce, Guacamole, Sour Cream, Fajita Vegetables]] $11.25 +1742 1 6 Pack Soft Drink [Diet Coke] $6.49 +1742 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1743 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1743 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +1744 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1744 1 Chips NULL $2.15 +1745 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1745 1 Chips and Guacamole NULL $4.45 +1745 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1745 1 Chips and Guacamole NULL $4.45 +1746 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1746 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +1746 1 Chips and Guacamole NULL $4.45 +1746 1 Canned Soft Drink [Lemonade] $1.25 +1746 1 Canned Soft Drink [Sprite] $1.25 +1747 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Lettuce]] $8.75 +1747 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1748 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1748 1 Chips NULL $2.15 +1748 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1749 1 Chips and Guacamole NULL $4.45 +1749 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1749 1 Canned Soft Drink [Coke] $1.25 +1750 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +1750 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1751 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1751 2 Chips NULL $4.30 +1751 1 Barbacoa Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.39 +1752 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese]] $9.39 +1752 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1753 1 Canned Soft Drink [Coke] $1.25 +1753 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +1753 1 Chips and Guacamole NULL $4.45 +1754 1 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Rice, Sour Cream, Cheese, Guacamole, Lettuce]] $11.25 +1754 1 Canned Soft Drink [Sprite] $1.25 +1755 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +1755 1 Canned Soft Drink [Coke] $1.25 +1755 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1756 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1756 1 Chips and Guacamole NULL $4.45 +1757 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1757 1 Bottled Water NULL $1.50 +1757 1 Chips and Guacamole NULL $4.45 +1758 1 Chips and Guacamole NULL $4.45 +1758 1 Steak Burrito [Fresh Tomato Salsa, [Cheese, Black Beans, Rice]] $9.25 +1759 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1759 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1759 1 Canned Soft Drink [Diet Coke] $1.25 +1760 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1760 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1761 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1761 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1761 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1761 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1761 2 Chips NULL $4.30 +1762 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1762 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Lettuce]] $9.39 +1763 1 Chips and Guacamole NULL $4.45 +1763 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1763 1 Canned Soft Drink [Coke] $1.25 +1764 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $22.50 +1764 1 Chips and Guacamole NULL $4.45 +1764 1 Chips and Fresh Tomato Salsa NULL $2.95 +1764 1 Chips NULL $2.15 +1764 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $23.50 +1765 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1765 1 Chips NULL $2.15 +1765 1 Canned Soft Drink [Coke] $1.25 +1766 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1766 1 Chips and Guacamole NULL $4.45 +1766 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1766 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +1767 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $17.50 +1768 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1768 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1768 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1769 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1769 1 Chips and Guacamole NULL $4.45 +1770 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +1770 1 Bottled Water NULL $1.50 +1771 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1771 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1772 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1772 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1772 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1773 1 Chips and Guacamole NULL $4.45 +1773 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1774 1 Carnitas Crispy Tacos [Fresh Tomato Salsa, [Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1774 1 Chips and Guacamole NULL $4.45 +1775 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1775 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese]] $8.75 +1775 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1776 1 Chips NULL $2.15 +1776 1 Bottled Water NULL $1.50 +1776 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1777 1 Chips and Guacamole NULL $4.45 +1777 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +1778 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1778 1 Bottled Water NULL $1.50 +1778 1 Canned Soft Drink [Lemonade] $1.25 +1778 1 Canned Soft Drink [Lemonade] $1.25 +1779 1 Canned Soft Drink [Diet Coke] $1.25 +1779 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1779 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1780 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1780 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1781 1 Bottled Water NULL $1.50 +1781 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1782 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1782 1 Chips NULL $2.15 +1783 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +1783 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +1784 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1784 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1785 1 Bottled Water NULL $1.50 +1785 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1785 1 Bottled Water NULL $1.50 +1785 1 Canned Soft Drink [Diet Coke] $1.25 +1786 1 Chicken Bowl [Fresh Tomato Salsa, Rice] $8.75 +1786 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +1786 4 Chips and Guacamole NULL $17.80 +1786 4 Canned Soft Drink [Coke] $5.00 +1786 4 Canned Soft Drink [Sprite] $5.00 +1787 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1787 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1787 1 Canned Soft Drink [Lemonade] $1.25 +1788 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1788 1 Canned Soft Drink [Sprite] $1.25 +1788 1 Chips NULL $2.15 +1789 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1789 2 Canned Soft Drink [Coke] $2.50 +1789 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1790 1 Canned Soft Drink [Sprite] $1.25 +1790 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1790 1 Chips and Fresh Tomato Salsa NULL $2.95 +1791 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1791 1 Chips NULL $2.15 +1792 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1792 1 Bottled Water NULL $1.50 +1793 1 Steak Burrito [Brown Rice] $8.99 +1793 1 Chips NULL $1.99 +1793 1 Barbacoa Bowl [Guacamole] $11.49 +1794 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +1794 1 Chips and Guacamole NULL $4.45 +1794 1 Canned Soft Drink [Diet Coke] $1.25 +1795 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1795 1 Chips and Guacamole NULL $4.45 +1795 1 Canned Soft Drink [Sprite] $1.25 +1796 1 Bottled Water NULL $1.50 +1796 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1797 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1797 1 Chicken Salad Bowl [Fresh Tomato Salsa, Lettuce] $8.75 +1798 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Lettuce, Rice, Fajita Vegetables, Sour Cream]] $11.25 +1798 1 6 Pack Soft Drink [Diet Coke] $6.49 +1798 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +1799 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1799 1 Chips NULL $2.15 +1799 1 Canned Soft Drink [Sprite] $1.25 +1800 1 6 Pack Soft Drink [Diet Coke] $6.49 +1800 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1800 1 Chips and Guacamole NULL $4.45 +1801 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +1801 1 Chips and Guacamole NULL $4.45 +1802 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1802 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1803 1 Chips and Guacamole NULL $4.45 +1803 1 6 Pack Soft Drink [Lemonade] $6.49 +1803 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese]] $9.25 +1804 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1804 1 Canned Soft Drink [Coke] $1.25 +1804 1 Chips and Guacamole NULL $4.45 +1805 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1805 1 Veggie Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1806 1 Bottled Water NULL $1.50 +1806 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1806 1 Bottled Water NULL $1.50 +1806 1 Canned Soft Drink [Diet Coke] $1.25 +1807 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1807 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese]] $9.39 +1808 1 Chips and Guacamole NULL $4.45 +1808 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1809 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1809 1 Chips and Guacamole NULL $4.45 +1809 1 Canned Soft Drink [Sprite] $1.25 +1810 1 Chicken Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1810 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1811 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1811 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1811 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1812 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1812 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1812 2 Canned Soft Drink [Coke] $2.50 +1813 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $17.50 +1814 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +1814 1 Chips and Guacamole NULL $4.45 +1815 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1815 1 Canned Soft Drink [Sprite] $1.25 +1816 1 Chicken Burrito [Roasted Chili Corn Salsa, [Pinto Beans, Cheese, Sour Cream]] $8.75 +1816 1 Chips and Guacamole NULL $4.45 +1817 1 Bottled Water NULL $1.50 +1817 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1817 1 Bottled Water NULL $1.50 +1817 1 Canned Soft Drink [Diet Coke] $1.25 +1818 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $9.39 +1818 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +1819 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +1819 1 Chips and Guacamole NULL $4.45 +1820 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1820 1 Canned Soft Drink [Coke] $1.25 +1821 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +1821 1 Chips and Guacamole NULL $4.45 +1822 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +1822 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1822 2 Bottled Water NULL $3.00 +1823 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1823 1 Chips NULL $2.15 +1823 1 Canned Soft Drink [Diet Coke] $1.25 +1824 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1824 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1824 1 Chips and Guacamole NULL $4.45 +1825 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1825 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1825 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1825 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1825 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1825 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1826 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans]] $8.75 +1826 1 Chips and Guacamole NULL $4.45 +1826 1 Canned Soft Drink [Nestea] $1.25 +1826 1 Bottled Water NULL $1.50 +1827 1 Chicken Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +1827 1 Chips and Guacamole NULL $4.45 +1827 1 Canned Soft Drink [Diet Coke] $1.25 +1827 1 Barbacoa Burrito [Tomatillo Green Chili Salsa] $9.25 +1827 1 Barbacoa Burrito [Tomatillo Green Chili Salsa] $9.25 +1828 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1828 1 Chips and Guacamole NULL $4.45 +1828 1 Canned Soft Drink [Coke] $1.25 +1829 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1829 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1829 1 Canned Soft Drink [Sprite] $1.25 +1830 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1830 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Guacamole]] $11.25 +1831 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1831 1 Chips NULL $2.15 +1831 1 Bottled Water NULL $1.50 +1832 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1832 1 Chips and Guacamole NULL $4.45 +1833 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1833 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 diff --git a/data/drinks.csv b/data/drinks.csv new file mode 100644 index 0000000..e625b9e --- /dev/null +++ b/data/drinks.csv @@ -0,0 +1,194 @@ +country,beer_servings,spirit_servings,wine_servings,total_litres_of_pure_alcohol,continent +Afghanistan,0,0,0,0.0,AS +Albania,89,132,54,4.9,EU +Algeria,25,0,14,0.7,AF +Andorra,245,138,312,12.4,EU +Angola,217,57,45,5.9,AF +Antigua & Barbuda,102,128,45,4.9,NA +Argentina,193,25,221,8.3,SA +Armenia,21,179,11,3.8,EU +Australia,261,72,212,10.4,OC +Austria,279,75,191,9.7,EU +Azerbaijan,21,46,5,1.3,EU +Bahamas,122,176,51,6.3,NA +Bahrain,42,63,7,2.0,AS +Bangladesh,0,0,0,0.0,AS +Barbados,143,173,36,6.3,NA +Belarus,142,373,42,14.4,EU +Belgium,295,84,212,10.5,EU +Belize,263,114,8,6.8,NA +Benin,34,4,13,1.1,AF +Bhutan,23,0,0,0.4,AS +Bolivia,167,41,8,3.8,SA +Bosnia-Herzegovina,76,173,8,4.6,EU +Botswana,173,35,35,5.4,AF +Brazil,245,145,16,7.2,SA +Brunei,31,2,1,0.6,AS +Bulgaria,231,252,94,10.3,EU +Burkina Faso,25,7,7,4.3,AF +Burundi,88,0,0,6.3,AF +Cote d'Ivoire,37,1,7,4.0,AF +Cabo Verde,144,56,16,4.0,AF +Cambodia,57,65,1,2.2,AS +Cameroon,147,1,4,5.8,AF +Canada,240,122,100,8.2,NA +Central African Republic,17,2,1,1.8,AF +Chad,15,1,1,0.4,AF +Chile,130,124,172,7.6,SA +China,79,192,8,5.0,AS +Colombia,159,76,3,4.2,SA +Comoros,1,3,1,0.1,AF +Congo,76,1,9,1.7,AF +Cook Islands,0,254,74,5.9,OC +Costa Rica,149,87,11,4.4,NA +Croatia,230,87,254,10.2,EU +Cuba,93,137,5,4.2,NA +Cyprus,192,154,113,8.2,EU +Czech Republic,361,170,134,11.8,EU +North Korea,0,0,0,0.0,AS +DR Congo,32,3,1,2.3,AF +Denmark,224,81,278,10.4,EU +Djibouti,15,44,3,1.1,AF +Dominica,52,286,26,6.6,NA +Dominican Republic,193,147,9,6.2,NA +Ecuador,162,74,3,4.2,SA +Egypt,6,4,1,0.2,AF +El Salvador,52,69,2,2.2,NA +Equatorial Guinea,92,0,233,5.8,AF +Eritrea,18,0,0,0.5,AF +Estonia,224,194,59,9.5,EU +Ethiopia,20,3,0,0.7,AF +Fiji,77,35,1,2.0,OC +Finland,263,133,97,10.0,EU +France,127,151,370,11.8,EU +Gabon,347,98,59,8.9,AF +Gambia,8,0,1,2.4,AF +Georgia,52,100,149,5.4,EU +Germany,346,117,175,11.3,EU +Ghana,31,3,10,1.8,AF +Greece,133,112,218,8.3,EU +Grenada,199,438,28,11.9,NA +Guatemala,53,69,2,2.2,NA +Guinea,9,0,2,0.2,AF +Guinea-Bissau,28,31,21,2.5,AF +Guyana,93,302,1,7.1,SA +Haiti,1,326,1,5.9,NA +Honduras,69,98,2,3.0,NA +Hungary,234,215,185,11.3,EU +Iceland,233,61,78,6.6,EU +India,9,114,0,2.2,AS +Indonesia,5,1,0,0.1,AS +Iran,0,0,0,0.0,AS +Iraq,9,3,0,0.2,AS +Ireland,313,118,165,11.4,EU +Israel,63,69,9,2.5,AS +Italy,85,42,237,6.5,EU +Jamaica,82,97,9,3.4,NA +Japan,77,202,16,7.0,AS +Jordan,6,21,1,0.5,AS +Kazakhstan,124,246,12,6.8,AS +Kenya,58,22,2,1.8,AF +Kiribati,21,34,1,1.0,OC +Kuwait,0,0,0,0.0,AS +Kyrgyzstan,31,97,6,2.4,AS +Laos,62,0,123,6.2,AS +Latvia,281,216,62,10.5,EU +Lebanon,20,55,31,1.9,AS +Lesotho,82,29,0,2.8,AF +Liberia,19,152,2,3.1,AF +Libya,0,0,0,0.0,AF +Lithuania,343,244,56,12.9,EU +Luxembourg,236,133,271,11.4,EU +Madagascar,26,15,4,0.8,AF +Malawi,8,11,1,1.5,AF +Malaysia,13,4,0,0.3,AS +Maldives,0,0,0,0.0,AS +Mali,5,1,1,0.6,AF +Malta,149,100,120,6.6,EU +Marshall Islands,0,0,0,0.0,OC +Mauritania,0,0,0,0.0,AF +Mauritius,98,31,18,2.6,AF +Mexico,238,68,5,5.5,NA +Micronesia,62,50,18,2.3,OC +Monaco,0,0,0,0.0,EU +Mongolia,77,189,8,4.9,AS +Montenegro,31,114,128,4.9,EU +Morocco,12,6,10,0.5,AF +Mozambique,47,18,5,1.3,AF +Myanmar,5,1,0,0.1,AS +Namibia,376,3,1,6.8,AF +Nauru,49,0,8,1.0,OC +Nepal,5,6,0,0.2,AS +Netherlands,251,88,190,9.4,EU +New Zealand,203,79,175,9.3,OC +Nicaragua,78,118,1,3.5,NA +Niger,3,2,1,0.1,AF +Nigeria,42,5,2,9.1,AF +Niue,188,200,7,7.0,OC +Norway,169,71,129,6.7,EU +Oman,22,16,1,0.7,AS +Pakistan,0,0,0,0.0,AS +Palau,306,63,23,6.9,OC +Panama,285,104,18,7.2,NA +Papua New Guinea,44,39,1,1.5,OC +Paraguay,213,117,74,7.3,SA +Peru,163,160,21,6.1,SA +Philippines,71,186,1,4.6,AS +Poland,343,215,56,10.9,EU +Portugal,194,67,339,11.0,EU +Qatar,1,42,7,0.9,AS +South Korea,140,16,9,9.8,AS +Moldova,109,226,18,6.3,EU +Romania,297,122,167,10.4,EU +Russian Federation,247,326,73,11.5,AS +Rwanda,43,2,0,6.8,AF +St. Kitts & Nevis,194,205,32,7.7,NA +St. Lucia,171,315,71,10.1,NA +St. Vincent & the Grenadines,120,221,11,6.3,NA +Samoa,105,18,24,2.6,OC +San Marino,0,0,0,0.0,EU +Sao Tome & Principe,56,38,140,4.2,AF +Saudi Arabia,0,5,0,0.1,AS +Senegal,9,1,7,0.3,AF +Serbia,283,131,127,9.6,EU +Seychelles,157,25,51,4.1,AF +Sierra Leone,25,3,2,6.7,AF +Singapore,60,12,11,1.5,AS +Slovakia,196,293,116,11.4,EU +Slovenia,270,51,276,10.6,EU +Solomon Islands,56,11,1,1.2,OC +Somalia,0,0,0,0.0,AF +South Africa,225,76,81,8.2,AF +Spain,284,157,112,10.0,EU +Sri Lanka,16,104,0,2.2,AS +Sudan,8,13,0,1.7,AF +Suriname,128,178,7,5.6,SA +Swaziland,90,2,2,4.7,AF +Sweden,152,60,186,7.2,EU +Switzerland,185,100,280,10.2,EU +Syria,5,35,16,1.0,AS +Tajikistan,2,15,0,0.3,AS +Thailand,99,258,1,6.4,AS +Macedonia,106,27,86,3.9,EU +Timor-Leste,1,1,4,0.1,AS +Togo,36,2,19,1.3,AF +Tonga,36,21,5,1.1,OC +Trinidad & Tobago,197,156,7,6.4,NA +Tunisia,51,3,20,1.3,AF +Turkey,51,22,7,1.4,AS +Turkmenistan,19,71,32,2.2,AS +Tuvalu,6,41,9,1.0,OC +Uganda,45,9,0,8.3,AF +Ukraine,206,237,45,8.9,EU +United Arab Emirates,16,135,5,2.8,AS +United Kingdom,219,126,195,10.4,EU +Tanzania,36,6,1,5.7,AF +USA,249,158,84,8.7,NA +Uruguay,115,35,220,6.6,SA +Uzbekistan,25,101,8,2.4,AS +Vanuatu,21,18,11,0.9,OC +Venezuela,333,100,3,7.7,SA +Vietnam,111,2,1,2.0,AS +Yemen,6,0,0,0.1,AS +Zambia,32,19,4,2.5,AF +Zimbabwe,64,18,4,4.7,AF diff --git a/data/example.html b/data/example.html new file mode 100644 index 0000000..f93b40e --- /dev/null +++ b/data/example.html @@ -0,0 +1,34 @@ + + + + + Example Web Page + + + + +

DAT8 Class 7

+ +

First, we are covering APIs, which are useful for getting data.

+

Then, we are covering web scraping, which is a more flexible way to get data.

+

Finally, I will ask you to fill out yet another feedback form!

+ +

Resource List

+ +

Here are some helpful API resources:

+ +
    +
  • API resource 1
  • +
  • API resource 2
  • +
+ +

Here are some helpful web scraping resources:

+ +
    +
  • Web scraping resource 1
  • +
  • Web scraping resource 2
  • +
+ + + + diff --git a/data/hitters.csv b/data/hitters.csv new file mode 100644 index 0000000..1ad622c --- /dev/null +++ b/data/hitters.csv @@ -0,0 +1,323 @@ +"AtBat","Hits","HmRun","Runs","RBI","Walks","Years","CAtBat","CHits","CHmRun","CRuns","CRBI","CWalks","League","Division","PutOuts","Assists","Errors","Salary","NewLeague" +293,66,1,30,29,14,1,293,66,1,30,29,14,"A","E",446,33,20,NA,"A" +315,81,7,24,38,39,14,3449,835,69,321,414,375,"N","W",632,43,10,475,"N" +479,130,18,66,72,76,3,1624,457,63,224,266,263,"A","W",880,82,14,480,"A" +496,141,20,65,78,37,11,5628,1575,225,828,838,354,"N","E",200,11,3,500,"N" +321,87,10,39,42,30,2,396,101,12,48,46,33,"N","E",805,40,4,91.5,"N" +594,169,4,74,51,35,11,4408,1133,19,501,336,194,"A","W",282,421,25,750,"A" +185,37,1,23,8,21,2,214,42,1,30,9,24,"N","E",76,127,7,70,"A" +298,73,0,24,24,7,3,509,108,0,41,37,12,"A","W",121,283,9,100,"A" +323,81,6,26,32,8,2,341,86,6,32,34,8,"N","W",143,290,19,75,"N" +401,92,17,49,66,65,13,5206,1332,253,784,890,866,"A","E",0,0,0,1100,"A" +574,159,21,107,75,59,10,4631,1300,90,702,504,488,"A","E",238,445,22,517.143,"A" +202,53,4,31,26,27,9,1876,467,15,192,186,161,"N","W",304,45,11,512.5,"N" +418,113,13,48,61,47,4,1512,392,41,205,204,203,"N","E",211,11,7,550,"N" +239,60,0,30,11,22,6,1941,510,4,309,103,207,"A","E",121,151,6,700,"A" +196,43,7,29,27,30,13,3231,825,36,376,290,238,"N","E",80,45,8,240,"N" +183,39,3,20,15,11,3,201,42,3,20,16,11,"A","W",118,0,0,NA,"A" +568,158,20,89,75,73,15,8068,2273,177,1045,993,732,"N","W",105,290,10,775,"N" +190,46,2,24,8,15,5,479,102,5,65,23,39,"A","W",102,177,16,175,"A" +407,104,6,57,43,65,12,5233,1478,100,643,658,653,"A","W",912,88,9,NA,"A" +127,32,8,16,22,14,8,727,180,24,67,82,56,"N","W",202,22,2,135,"N" +413,92,16,72,48,65,1,413,92,16,72,48,65,"N","E",280,9,5,100,"N" +426,109,3,55,43,62,1,426,109,3,55,43,62,"A","W",361,22,2,115,"N" +22,10,1,4,2,1,6,84,26,2,9,9,3,"A","W",812,84,11,NA,"A" +472,116,16,60,62,74,6,1924,489,67,242,251,240,"N","W",518,55,3,600,"N" +629,168,18,73,102,40,18,8424,2464,164,1008,1072,402,"A","E",1067,157,14,776.667,"A" +587,163,4,92,51,70,6,2695,747,17,442,198,317,"A","E",434,9,3,765,"A" +324,73,4,32,18,22,7,1931,491,13,291,108,180,"N","E",222,3,3,708.333,"N" +474,129,10,50,56,40,10,2331,604,61,246,327,166,"N","W",732,83,13,750,"N" +550,152,6,92,37,81,5,2308,633,32,349,182,308,"N","W",262,329,16,625,"N" +513,137,20,90,95,90,14,5201,1382,166,763,734,784,"A","W",267,5,3,900,"A" +313,84,9,42,30,39,17,6890,1833,224,1033,864,1087,"A","W",127,221,7,NA,"A" +419,108,6,55,36,22,3,591,149,8,80,46,31,"N","W",226,7,4,110,"N" +517,141,27,70,87,52,9,3571,994,215,545,652,337,"N","W",1378,102,8,NA,"N" +583,168,17,83,80,56,5,1646,452,44,219,208,136,"A","E",109,292,25,612.5,"A" +204,49,6,23,25,12,7,1309,308,27,126,132,66,"A","W",419,46,5,300,"A" +379,106,10,38,60,30,14,6207,1906,146,859,803,571,"N","W",72,170,24,850,"N" +161,36,0,19,10,17,4,1053,244,3,156,86,107,"A","E",70,149,12,NA,"A" +268,60,5,24,25,15,2,350,78,5,34,29,18,"N","W",442,59,6,90,"N" +346,98,5,31,53,30,16,5913,1615,235,784,901,560,"A","E",0,0,0,NA,"A" +241,61,1,34,12,14,1,241,61,1,34,12,14,"N","W",166,172,10,NA,"N" +181,41,1,15,21,33,2,232,50,4,20,29,45,"A","E",326,29,5,67.5,"A" +216,54,0,21,18,15,18,7318,1926,46,796,627,483,"N","W",103,84,5,NA,"N" +200,57,6,23,14,14,9,2516,684,46,371,230,195,"N","W",69,1,1,NA,"N" +217,46,7,32,19,9,4,694,160,32,86,76,32,"A","E",307,25,1,180,"A" +194,40,7,19,29,30,11,4183,1069,64,486,493,608,"A","E",325,22,2,NA,"A" +254,68,2,28,26,22,6,999,236,21,108,117,118,"A","E",359,30,4,305,"A" +416,132,7,57,49,33,3,932,273,24,113,121,80,"N","W",73,177,18,215,"N" +205,57,8,34,32,9,5,756,192,32,117,107,51,"A","E",58,4,4,247.5,"A" +542,140,12,46,75,41,16,7099,2130,235,987,1089,431,"A","E",697,61,9,NA,"A" +526,146,13,71,70,84,6,2648,715,77,352,342,289,"N","W",303,9,9,815,"N" +457,101,14,42,63,22,17,6521,1767,281,1003,977,619,"A","W",389,39,4,875,"A" +214,53,2,30,29,23,2,226,59,2,32,32,27,"N","E",109,7,3,70,"N" +19,7,0,1,2,1,4,41,13,1,3,4,4,"A","E",0,0,0,NA,"A" +591,168,19,80,72,39,9,4478,1307,113,634,563,319,"A","W",67,147,4,1200,"A" +403,101,12,45,53,39,12,5150,1429,166,747,666,526,"A","E",316,6,5,675,"A" +405,102,18,49,85,20,6,950,231,29,99,138,64,"N","W",161,10,3,415,"N" +244,58,9,28,25,35,4,1335,333,49,164,179,194,"N","W",142,14,2,340,"N" +235,61,3,24,39,21,14,3926,1029,35,441,401,333,"A","E",425,43,4,NA,"A" +313,78,6,32,41,12,12,3742,968,35,409,321,170,"N","W",106,206,7,416.667,"N" +627,177,25,98,81,70,6,3210,927,133,529,472,313,"A","E",240,482,13,1350,"A" +416,113,24,58,69,16,1,416,113,24,58,69,16,"A","E",203,70,10,90,"A" +155,44,6,21,23,15,16,6631,1634,98,698,661,777,"N","E",53,88,3,275,"N" +236,56,0,27,15,11,4,1115,270,1,116,64,57,"A","W",125,199,13,230,"A" +216,53,1,31,15,22,4,926,210,9,118,69,114,"N","W",73,152,11,225,"N" +24,3,0,1,0,2,3,159,28,0,20,12,9,"A","W",80,4,0,NA,"A" +585,139,31,93,94,62,17,7546,1982,315,1141,1179,727,"A","E",0,0,0,950,"A" +191,37,4,12,17,14,4,773,163,16,61,74,52,"N","E",391,38,8,NA,"N" +199,53,5,29,22,21,3,514,120,8,57,40,39,"A","W",152,3,5,75,"A" +521,142,20,67,86,45,4,815,205,22,99,103,78,"A","E",107,242,23,105,"A" +419,113,1,44,27,44,12,4484,1231,32,612,344,422,"A","E",211,2,1,NA,"A" +311,81,3,42,30,26,17,8247,2198,100,950,909,690,"N","W",153,223,10,320,"N" +138,31,8,18,21,38,3,244,53,12,33,32,55,"N","E",244,21,4,NA,"N" +512,131,26,69,96,52,14,5347,1397,221,712,815,548,"A","W",119,216,12,850,"A" +507,122,29,78,85,91,18,7761,1947,347,1175,1152,1380,"A","E",808,108,2,535,"A" +529,137,26,86,97,97,15,6661,1785,291,1082,949,989,"A","E",280,10,5,933.333,"A" +424,119,6,57,46,13,9,3651,1046,32,461,301,112,"A","E",224,286,8,850,"N" +351,97,4,55,29,39,4,1258,353,16,196,110,117,"N","W",226,7,3,210,"A" +195,55,5,24,33,30,8,1313,338,25,144,149,153,"N","E",83,2,1,NA,"N" +388,103,15,59,47,39,6,2174,555,80,285,274,186,"A","W",182,9,4,325,"A" +339,96,4,37,29,23,4,1064,290,11,123,108,55,"A","W",104,213,9,275,"A" +561,118,35,70,94,33,16,6677,1575,442,901,1210,608,"A","W",463,32,8,NA,"A" +255,70,7,49,35,43,15,6311,1661,154,1019,608,820,"N","E",51,54,8,450,"N" +677,238,31,117,113,53,5,2223,737,93,349,401,171,"A","E",1377,100,6,1975,"A" +227,46,7,23,20,12,5,1325,324,44,156,158,67,"A","W",92,2,2,NA,"A" +614,163,29,89,83,75,11,5017,1388,266,813,822,617,"N","W",303,6,6,1900,"N" +329,83,9,50,39,56,9,3828,948,145,575,528,635,"A","W",276,6,2,600,"A" +637,174,31,89,116,56,14,6727,2024,247,978,1093,495,"N","W",278,9,9,1041.667,"N" +280,82,16,44,45,47,2,428,113,25,61,70,63,"A","E",148,4,2,110,"A" +155,41,12,21,29,22,16,5409,1338,181,746,805,875,"A","W",165,9,1,260,"A" +458,114,13,67,57,48,4,1350,298,28,160,123,122,"A","W",246,389,18,475,"A" +314,83,13,39,46,16,5,1457,405,28,156,159,76,"A","W",533,40,4,431.5,"A" +475,123,27,76,93,72,4,1810,471,108,292,343,267,"N","E",226,10,6,1220,"N" +317,78,7,35,35,32,1,317,78,7,35,35,32,"A","E",45,122,26,70,"A" +511,138,25,76,96,61,3,592,164,28,87,110,71,"A","W",157,7,8,145,"A" +278,69,3,24,21,29,8,2079,565,32,258,192,162,"N","W",142,210,10,NA,"N" +382,119,13,54,58,36,12,2133,594,41,287,294,227,"N","W",59,156,9,595,"N" +565,148,24,90,104,77,14,7287,2083,305,1135,1234,791,"A","E",292,9,5,1861.46,"A" +277,71,2,27,29,14,15,5952,1647,60,753,596,259,"N","W",360,32,5,NA,"N" +415,115,27,97,71,68,3,711,184,45,156,119,99,"N","W",274,2,7,300,"N" +424,110,15,70,47,36,7,2130,544,38,335,174,258,"N","W",292,6,3,490,"N" +495,151,17,61,84,78,10,5624,1679,275,884,1015,709,"A","E",1045,88,13,2460,"A" +524,132,9,69,47,54,2,972,260,14,123,92,90,"A","E",212,327,20,NA,"A" +233,49,2,41,23,18,8,1350,336,7,166,122,106,"A","E",102,132,10,375,"A" +395,106,16,48,56,35,10,2303,571,86,266,323,248,"A","E",709,41,7,NA,"A" +397,114,23,67,67,53,13,5589,1632,241,906,926,716,"A","E",244,2,4,NA,"A" +210,37,8,15,19,15,6,994,244,36,107,114,53,"A","E",40,115,15,NA,"A" +420,95,23,55,58,37,3,646,139,31,77,77,61,"N","W",206,10,7,NA,"N" +566,154,22,76,84,43,14,6100,1583,131,743,693,300,"A","W",316,439,10,750,"A" +641,198,31,101,108,41,5,2129,610,92,297,319,117,"A","E",269,17,10,1175,"A" +215,51,4,19,18,11,1,215,51,4,19,18,11,"A","E",116,5,12,70,"A" +441,128,16,70,73,80,14,6675,2095,209,1072,1050,695,"A","W",97,218,16,1500,"A" +325,76,16,33,52,37,5,1506,351,71,195,219,214,"N","W",726,87,3,385,"A" +490,125,24,81,105,62,13,6063,1646,271,847,999,680,"N","E",869,62,8,1925.571,"N" +574,152,31,91,101,64,3,985,260,53,148,173,95,"N","W",1253,111,11,215,"N" +284,64,14,30,42,24,18,7023,1925,348,986,1239,666,"N","E",96,4,4,NA,"N" +596,171,34,91,108,52,6,2862,728,107,361,401,224,"A","W",118,334,21,900,"A" +472,118,12,63,54,30,4,793,187,14,102,80,50,"A","W",228,377,26,155,"A" +283,77,14,45,47,26,16,6840,1910,259,915,1067,546,"A","W",144,6,5,700,"A" +408,94,4,42,36,66,9,3573,866,59,429,365,410,"N","W",282,487,19,535,"N" +327,85,3,30,44,20,8,2140,568,16,216,208,93,"A","E",91,185,12,362.5,"A" +370,96,21,49,46,60,15,6986,1972,231,1070,955,921,"N","E",137,5,9,733.333,"N" +354,77,16,36,55,41,20,8716,2172,384,1172,1267,1057,"N","W",83,174,16,200,"N" +539,139,5,93,58,69,5,1469,369,12,247,126,198,"A","W",462,9,7,400,"A" +340,84,11,62,33,47,5,1516,376,42,284,141,219,"N","E",185,8,4,400,"A" +510,126,2,42,44,35,11,5562,1578,44,703,519,256,"N","W",207,358,20,737.5,"N" +315,59,16,45,36,58,13,4677,1051,268,681,782,697,"A","W",0,0,0,NA,"A" +282,78,13,37,51,29,5,1649,453,73,211,280,138,"A","W",670,57,5,500,"A" +380,120,5,54,51,31,8,3118,900,92,444,419,240,"A","W",237,8,1,600,"A" +584,158,15,70,84,42,5,2358,636,58,265,316,134,"N","E",331,20,4,662.5,"N" +570,169,21,72,88,38,7,3754,1077,140,492,589,263,"A","W",295,15,5,950,"A" +306,104,14,50,58,25,7,2954,822,55,313,377,187,"N","E",116,222,15,750,"N" +220,54,10,30,39,31,5,1185,299,40,145,154,128,"N","E",50,136,20,297.5,"N" +278,70,7,22,37,18,18,7186,2081,190,935,1088,643,"A","W",0,0,0,325,"A" +445,99,1,46,24,29,4,618,129,1,72,31,48,"A","W",278,415,16,87.5,"A" +143,39,5,18,30,15,9,639,151,16,80,97,61,"N","W",138,15,1,175,"N" +185,40,4,23,11,18,3,524,125,7,58,37,47,"N","E",97,2,2,90,"N" +589,170,40,107,108,69,6,2325,634,128,371,376,238,"A","E",368,20,3,1237.5,"A" +343,103,6,48,36,40,15,4338,1193,70,581,421,325,"A","E",211,56,13,430,"A" +284,69,1,33,18,25,5,1407,361,6,139,98,111,"A","E",122,140,5,NA,"N" +438,103,2,65,32,71,2,440,103,2,67,32,71,"A","W",276,7,9,100,"N" +600,144,33,85,117,65,2,696,173,38,101,130,69,"A","W",319,4,14,165,"A" +663,200,29,108,121,32,4,1447,404,57,210,222,68,"A","E",241,8,6,250,"A" +232,55,9,34,23,45,12,4405,1213,194,702,705,625,"N","E",623,35,3,1300,"N" +479,133,10,48,72,55,17,7472,2147,153,980,1032,854,"N","W",237,5,4,773.333,"N" +209,45,0,38,19,42,10,3859,916,23,557,279,478,"A","W",132,205,5,NA,"A" +528,132,21,61,74,41,6,2641,671,97,273,383,226,"N","E",885,105,8,1008.333,"N" +160,39,8,18,31,22,14,2128,543,56,304,268,298,"A","E",33,3,0,275,"A" +599,183,10,80,74,32,5,2482,715,27,330,326,158,"A","E",231,374,18,775,"A" +497,136,7,58,38,26,11,3871,1066,40,450,367,241,"A","E",304,347,10,850,"A" +210,70,13,32,51,28,15,4040,1130,97,544,462,551,"A","E",0,0,0,365,"A" +225,61,5,32,26,26,11,1568,408,25,202,185,257,"A","W",132,9,0,NA,"A" +151,41,4,26,21,19,2,288,68,9,45,39,35,"A","W",28,56,2,95,"A" +278,86,4,33,38,45,1,278,86,4,33,38,45,"N","W",102,4,2,110,"N" +341,95,6,48,42,20,10,2964,808,81,379,428,221,"N","W",158,4,5,100,"N" +537,147,23,58,88,47,10,2744,730,97,302,351,174,"N","E",92,257,20,277.5,"N" +399,102,3,56,34,34,5,670,167,4,89,48,54,"A","W",211,9,3,80,"A" +309,94,5,37,32,26,13,4618,1330,57,616,522,436,"N","E",161,3,3,600,"N" +401,100,2,60,19,28,4,876,238,2,126,44,55,"N","E",193,11,4,NA,"N" +336,93,9,35,46,23,15,5779,1610,128,730,741,497,"A","W",0,0,0,NA,"A" +616,163,27,83,107,32,3,1437,377,65,181,227,82,"A","W",110,308,15,200,"A" +219,47,8,24,26,17,12,1188,286,23,100,125,63,"A","W",260,58,4,NA,"A" +579,174,7,67,78,58,6,3053,880,32,366,337,218,"N","E",280,479,5,657,"N" +165,39,2,13,9,16,3,196,44,2,18,10,18,"A","W",332,19,2,75,"N" +618,200,20,98,110,62,13,7127,2163,351,1104,1289,564,"A","E",330,16,8,2412.5,"A" +257,66,5,31,26,32,14,3910,979,33,518,324,382,"N","W",87,166,14,250,"A" +315,76,13,35,60,25,3,630,151,24,68,94,55,"N","E",498,39,13,155,"N" +591,157,16,90,78,26,4,2020,541,52,310,226,91,"N","E",290,440,25,640,"N" +404,92,11,54,49,18,6,1354,325,30,188,135,63,"A","E",222,5,5,300,"A" +315,73,5,23,37,16,4,450,108,6,38,46,28,"A","W",227,15,3,110,"A" +249,69,6,32,19,20,4,702,209,10,97,48,44,"N","E",103,8,2,NA,"N" +429,91,12,41,42,57,13,5590,1397,83,578,579,644,"A","W",686,46,4,825,"N" +212,54,13,28,44,18,2,233,59,13,31,46,20,"A","E",243,23,5,NA,"A" +453,101,3,46,43,61,3,948,218,6,96,72,91,"N","W",249,444,16,195,"N" +161,43,4,17,26,22,3,707,179,21,77,99,76,"A","W",300,12,2,NA,"A" +184,47,5,20,28,18,11,3327,890,74,419,382,304,"N","W",49,2,0,450,"N" +591,184,20,83,79,38,5,1689,462,40,219,195,82,"N","W",303,12,5,630,"N" +181,58,6,34,23,22,1,181,58,6,34,23,22,"N","W",88,0,3,86.5,"N" +441,118,28,84,86,68,8,2723,750,126,433,420,309,"A","E",190,2,2,1300,"A" +490,150,21,69,58,35,14,6126,1839,121,983,707,600,"A","E",96,5,3,1000,"N" +551,171,13,94,83,94,13,6090,1840,128,969,900,917,"N","E",1199,149,5,1800,"N" +550,147,29,85,91,71,6,2816,815,117,405,474,319,"A","W",1218,104,10,1310,"A" +283,74,4,34,29,22,10,3919,1062,85,505,456,283,"N","W",145,5,7,737.5,"N" +560,161,26,89,96,66,4,1789,470,65,233,260,155,"N","W",332,9,8,625,"N" +328,91,12,51,43,33,2,342,94,12,51,44,33,"N","E",145,59,8,125,"N" +586,159,12,72,79,53,9,3082,880,83,363,477,295,"N","E",181,13,4,1043.333,"N" +503,136,5,62,48,83,10,3423,970,20,408,303,414,"N","W",65,258,8,725,"N" +344,85,24,69,64,88,7,911,214,64,150,156,187,"A","W",0,0,0,300,"A" +680,223,31,119,96,34,3,1928,587,35,262,201,91,"A","W",429,8,6,365,"A" +279,64,0,31,26,30,1,279,64,0,31,26,30,"N","W",107,205,16,75,"N" +484,127,20,66,65,67,7,3006,844,116,436,458,377,"N","E",1231,80,7,1183.333,"N" +431,127,8,77,45,58,2,667,187,9,117,64,88,"N","E",283,8,3,202.5,"N" +283,70,8,33,37,27,12,4479,1222,94,557,483,307,"A","E",156,2,2,225,"A" +491,141,11,77,47,37,15,4291,1240,84,615,430,340,"A","E",239,8,2,525,"A" +199,52,9,26,28,21,6,805,191,30,113,119,87,"N","W",235,22,5,265,"N" +589,149,21,89,86,64,7,3558,928,102,513,471,351,"A","E",371,6,6,787.5,"A" +327,84,22,53,62,38,10,4273,1123,212,577,700,334,"A","E",483,48,6,800,"N" +464,128,28,67,94,52,13,5829,1552,210,740,840,452,"A","W",0,0,0,587.5,"A" +166,34,0,20,13,17,1,166,34,0,20,13,17,"N","E",64,119,9,NA,"N" +338,92,18,42,60,21,3,682,185,36,88,112,50,"A","E",0,0,0,145,"A" +508,146,8,80,44,46,9,3148,915,41,571,289,326,"A","W",245,5,9,NA,"A" +584,157,20,95,73,63,10,4704,1320,93,724,522,576,"A","E",276,421,11,420,"A" +216,54,2,27,25,33,1,216,54,2,27,25,33,"N","W",317,36,1,75,"N" +625,179,4,94,60,65,5,1696,476,12,216,163,166,"A","E",303,450,14,575,"A" +243,53,4,18,26,27,4,853,228,23,101,110,76,"N","E",107,3,3,NA,"N" +489,131,19,77,55,34,7,2051,549,62,300,263,153,"A","W",310,9,9,780,"A" +209,56,12,22,36,19,2,216,58,12,24,37,19,"N","E",201,6,3,90,"N" +407,93,8,47,30,30,2,969,230,14,121,69,68,"N","W",172,317,25,150,"N" +490,148,14,64,78,49,13,3400,1000,113,445,491,301,"A","E",0,0,0,700,"N" +209,59,6,20,37,27,4,884,209,14,66,106,92,"N","E",415,35,3,NA,"N" +442,131,18,68,77,33,6,1416,398,47,210,203,136,"A","E",233,7,7,550,"A" +317,88,3,40,32,19,8,2543,715,28,269,270,118,"A","W",220,16,4,NA,"A" +288,65,8,30,36,27,9,2815,698,55,315,325,189,"N","E",259,30,10,650,"A" +209,54,3,25,14,12,1,209,54,3,25,14,12,"A","W",102,6,3,68,"A" +303,71,3,18,30,36,3,344,76,3,20,36,45,"N","E",468,47,6,100,"N" +330,77,19,47,53,27,6,1928,516,90,247,288,161,"N","W",149,8,6,670,"N" +504,120,28,71,71,54,3,1085,259,54,150,167,114,"A","E",103,283,19,175,"A" +258,60,8,28,33,18,3,638,170,17,80,75,36,"A","W",358,32,8,137,"A" +20,1,0,0,0,0,2,41,9,2,6,7,4,"N","E",78,220,6,2127.333,"N" +374,94,5,36,26,62,7,1968,519,26,181,199,288,"N","W",756,64,15,875,"N" +211,43,10,26,35,39,3,498,116,14,59,55,78,"A","W",463,32,8,120,"A" +299,75,6,38,23,26,3,580,160,8,71,33,44,"N","E",212,1,2,140,"N" +576,167,8,89,49,57,4,822,232,19,132,83,79,"N","E",325,12,8,210,"N" +381,110,9,61,45,32,7,3015,834,40,451,249,168,"N","E",228,7,5,800,"N" +288,76,7,34,37,15,4,1644,408,16,198,120,113,"N","W",203,3,3,240,"N" +369,93,9,43,42,49,5,1258,323,54,181,177,157,"A","E",149,1,6,350,"A" +330,76,12,35,41,47,4,1367,326,55,167,198,167,"N","W",512,30,5,NA,"N" +547,137,2,58,47,12,2,1038,271,3,129,80,24,"A","W",261,459,22,175,"A" +572,152,18,105,49,65,2,978,249,36,168,91,101,"A","W",325,13,3,200,"A" +359,84,4,46,27,21,12,4992,1257,37,699,386,387,"N","W",151,8,5,NA,"N" +514,144,0,67,54,79,9,4739,1169,13,583,374,528,"N","E",229,453,15,1940,"N" +359,80,15,45,48,63,7,1493,359,61,176,202,175,"N","W",682,93,13,700,"N" +526,163,12,88,50,77,4,1556,470,38,245,167,174,"A","W",250,11,1,750,"A" +313,83,9,43,41,30,14,5885,1543,104,751,714,535,"N","W",58,141,23,450,"N" +540,135,30,82,88,55,1,540,135,30,82,88,55,"A","W",157,6,14,172,"A" +437,123,9,62,55,40,9,4139,1203,79,676,390,364,"A","E",82,170,15,1260,"A" +551,160,23,86,90,87,5,2235,602,75,278,328,273,"A","W",1224,115,11,NA,"A" +237,52,0,15,25,30,24,14053,4256,160,2165,1314,1566,"N","W",523,43,6,750,"N" +236,56,6,41,19,21,5,1257,329,24,166,125,105,"A","E",172,1,4,190,"A" +473,154,6,61,48,29,6,1966,566,29,250,252,178,"A","E",846,84,9,580,"A" +309,72,0,33,31,26,5,354,82,0,41,32,26,"N","E",117,269,12,130,"N" +271,77,5,35,29,33,12,4933,1358,48,630,435,403,"A","W",62,90,3,450,"A" +357,96,7,50,45,39,5,1394,344,43,178,192,136,"A","W",167,2,4,300,"A" +216,56,4,22,18,15,12,2796,665,43,266,304,198,"A","E",391,44,4,250,"A" +256,70,13,42,36,44,16,7058,1845,312,965,1128,990,"N","E",41,118,8,1050,"A" +466,108,33,75,86,72,3,652,142,44,102,109,102,"A","E",286,8,8,215,"A" +327,68,13,42,29,45,18,3949,939,78,438,380,466,"A","E",659,53,7,400,"A" +462,119,16,49,65,37,7,2131,583,69,244,288,150,"A","E",866,65,6,NA,"A" +341,110,9,45,49,46,9,2331,658,50,249,322,274,"A","E",251,9,4,560,"A" +608,160,28,130,74,89,8,4071,1182,103,862,417,708,"A","E",426,4,6,1670,"A" +419,101,18,65,58,92,20,9528,2510,548,1509,1659,1342,"A","W",0,0,0,487.5,"A" +33,6,0,2,4,7,1,33,6,0,2,4,7,"A","W",205,5,4,NA,"A" +376,82,21,42,60,35,5,1770,408,115,238,299,157,"A","W",0,0,0,425,"A" +486,145,11,51,76,40,11,3967,1102,67,410,497,284,"N","E",88,204,16,500,"A" +186,44,7,28,16,11,1,186,44,7,28,16,11,"N","W",99,3,1,NA,"N" +307,80,1,42,36,29,7,2421,656,18,379,198,184,"A","W",145,2,2,NA,"A" +246,76,5,35,39,13,6,912,234,12,102,96,80,"A","E",44,0,1,250,"A" +205,52,8,31,27,17,12,5134,1323,56,643,445,459,"A","E",155,3,2,400,"A" +348,90,11,50,45,43,10,2288,614,43,295,273,269,"A","E",60,176,6,450,"A" +523,135,8,52,44,52,9,3368,895,39,377,284,296,"N","W",367,475,19,750,"N" +312,68,2,32,22,24,1,312,68,2,32,22,24,"A","E",86,150,15,70,"A" +496,119,8,57,33,21,7,3358,882,36,365,280,165,"N","W",155,371,29,875,"N" +126,27,3,8,10,5,4,239,49,3,16,13,14,"N","E",190,2,9,190,"N" +275,68,5,42,42,61,6,961,238,16,128,104,172,"N","E",181,3,2,191,"N" +627,178,14,68,76,46,6,3146,902,74,494,345,242,"N","E",309,492,5,740,"N" +394,86,1,38,28,36,4,1089,267,3,94,71,76,"N","E",203,369,16,250,"N" +208,57,8,32,25,18,3,653,170,17,98,54,62,"N","E",42,94,13,140,"N" +382,101,16,50,55,22,1,382,101,16,50,55,22,"A","W",200,7,6,97.5,"A" +459,113,20,59,57,68,12,5348,1369,155,713,660,735,"A","W",0,0,0,740,"A" +549,149,7,73,47,42,1,549,149,7,73,47,42,"N","W",255,450,17,140,"N" +288,63,3,25,33,16,10,2682,667,38,315,259,204,"A","W",135,257,7,341.667,"A" +303,84,4,35,32,23,2,312,87,4,39,32,23,"N","W",179,5,3,NA,"N" +522,163,9,82,46,62,13,7037,2019,153,1043,827,535,"A","E",352,9,1,1000,"A" +512,117,29,54,88,43,6,1750,412,100,204,276,155,"A","W",1236,98,18,100,"A" +220,66,5,20,28,13,3,290,80,5,27,31,15,"A","W",281,21,3,90,"A" +522,140,16,73,77,60,4,730,185,22,93,106,86,"N","E",1320,166,17,200,"N" +461,112,18,54,54,35,2,680,160,24,76,75,49,"A","W",111,226,11,135,"A" +581,145,17,66,68,21,2,831,210,21,106,86,40,"N","E",320,465,32,155,"N" +530,159,3,82,50,47,6,1619,426,11,218,149,163,"A","W",196,354,15,475,"A" +557,142,21,58,81,23,18,8759,2583,271,1138,1299,478,"N","W",1160,53,7,1450,"N" +439,96,0,44,36,65,4,711,148,1,68,56,99,"N","E",229,406,22,150,"N" +453,103,8,53,33,52,2,507,123,8,63,39,58,"A","W",289,407,6,105,"A" +528,122,1,67,45,51,4,1716,403,12,211,146,155,"A","W",209,372,17,350,"A" +633,210,6,91,56,59,6,3070,872,19,420,230,274,"N","W",367,432,16,90,"N" +16,2,0,1,0,0,2,28,4,0,1,0,0,"A","E",247,4,8,NA,"A" +562,169,17,88,73,53,8,3181,841,61,450,342,373,"A","E",351,442,17,530,"A" +281,76,3,42,25,20,8,2658,657,48,324,300,179,"A","E",106,144,7,341.667,"A" +593,152,23,69,75,53,6,2765,686,133,369,384,321,"A","W",315,10,6,940,"A" +687,213,10,91,65,27,4,1518,448,15,196,137,89,"A","E",294,445,13,350,"A" +368,103,3,48,28,54,8,1897,493,9,207,162,198,"N","W",209,246,3,326.667,"N" +263,70,1,26,23,30,4,888,220,9,83,82,86,"N","E",81,147,4,250,"N" +642,211,14,107,59,52,5,2364,770,27,352,230,193,"N","W",337,19,4,740,"N" +265,68,8,26,30,29,7,1337,339,32,135,163,128,"N","W",92,5,3,425,"A" +289,63,7,36,41,44,17,7402,1954,195,1115,919,1153,"A","W",166,211,7,NA,"A" +559,141,2,48,61,73,8,3162,874,16,421,349,359,"N","E",352,414,9,925,"N" +520,120,17,53,44,21,4,927,227,22,106,80,52,"A","W",70,144,11,185,"A" +19,4,1,2,3,1,1,19,4,1,2,3,1,"N","W",692,70,8,920,"A" +205,43,2,24,17,20,7,854,219,12,105,99,71,"N","E",131,6,1,286.667,"N" +193,47,10,21,29,24,6,1136,256,42,129,139,106,"A","W",299,13,5,245,"A" +181,46,1,19,18,17,5,937,238,9,88,95,104,"A","E",37,98,9,NA,"A" +213,61,4,17,22,3,17,4061,1145,83,488,491,244,"A","W",178,45,4,235,"A" +510,147,10,56,52,53,7,2872,821,63,307,340,174,"N","E",810,99,18,1150,"N" +578,138,1,56,59,34,3,1399,357,7,149,161,87,"N","E",133,371,20,160,"N" +200,51,2,14,29,25,23,9778,2732,379,1272,1652,925,"N","W",398,29,7,NA,"N" +441,113,5,76,52,76,5,1546,397,17,226,149,191,"A","W",160,290,11,425,"A" +172,42,3,17,14,15,10,4086,1150,57,579,363,406,"N","W",65,0,0,900,"N" +580,194,9,91,62,78,8,3372,1028,48,604,314,469,"N","E",270,13,6,NA,"N" +127,32,4,14,25,12,19,8396,2402,242,1048,1348,819,"N","W",167,18,6,500,"N" +279,69,4,35,31,32,4,1359,355,31,180,148,158,"N","E",133,173,9,277.5,"N" +480,112,18,50,71,44,7,3031,771,110,338,406,239,"N","E",94,270,16,750,"N" +600,139,0,94,29,60,2,1236,309,1,201,69,110,"N","E",300,12,9,160,"N" +610,186,19,107,98,74,6,2728,753,69,399,366,286,"N","E",1182,96,13,1300,"N" +360,81,5,37,44,37,7,2268,566,41,279,257,246,"N","E",170,284,3,525,"N" +387,124,1,67,27,36,7,1775,506,6,272,125,194,"N","E",186,290,17,550,"N" +580,207,8,107,71,105,5,2778,978,32,474,322,417,"A","E",121,267,19,1600,"A" +408,117,11,66,41,34,1,408,117,11,66,41,34,"N","W",942,72,11,120,"N" +593,172,22,82,100,57,1,593,172,22,82,100,57,"A","W",1222,139,15,165,"A" +221,53,2,21,23,22,8,1063,283,15,107,124,106,"N","E",325,58,6,NA,"N" +497,127,7,65,48,37,5,2703,806,32,379,311,138,"N","E",325,9,3,700,"N" +492,136,5,76,50,94,12,5511,1511,39,897,451,875,"A","E",313,381,20,875,"A" +475,126,3,61,43,52,6,1700,433,7,217,93,146,"A","W",37,113,7,385,"A" +573,144,9,85,60,78,8,3198,857,97,470,420,332,"A","E",1314,131,12,960,"A" +631,170,9,77,44,31,11,4908,1457,30,775,357,249,"A","W",408,4,3,1000,"A" diff --git a/data/homicides.txt b/data/homicides.txt new file mode 100644 index 0000000..5b299dd --- /dev/null +++ b/data/homicides.txt @@ -0,0 +1,1250 @@ +39.311024, -76.674227, iconHomicideShooting, 'p2', '
Leon Nelson
3400 Clifton Ave.
Baltimore, MD 21216
black male, 17 years old
Found on January 1, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.312641, -76.698948, iconHomicideShooting, 'p3', '
Eddie Golf
4900 Challedon Road
Baltimore, MD 21207
black male, 26 years old
Found on January 2, 2007
Victim died at scene
Cause: shooting
' +39.309781, -76.649882, iconHomicideBluntForce, 'p4', '
Nelsene Burnette
2000 West North Ave
Baltimore, MD 21217
black female, 44 years old
Found on January 2, 2007
Victim died at scene
Cause: blunt force
' +39.363925, -76.598772, iconHomicideAsphyxiation, 'p5', '
Thomas MacKenney
5900 Northwood Drive
Baltimore, MD 21212
black male, 21 years old
Found on January 3, 2007
Victim died at scene
Cause: asphyxiation
' +39.238928, -76.602718, iconHomicideBluntForce, 'p6', '
Edward Canupp
500 Maude Ave.
Baltimore, MD 21225
white male, 61 years old
Found on January 5, 2007
Victim died at scene
Cause: blunt force
' +39.352676, -76.607979, iconHomicideShooting, 'p7', '
Michael Cunningham
5200 Ready Ave.
Baltimore, MD 21212
black male, 46 years old
Found on January 5, 2007
Victim died at JHH
Cause: shooting
' +39.310999, -76.622023, iconHomicideShooting, 'p8', '
Ray Alston
300 West North Ave.
Baltimore, MD 21217
black male, 27 years old
Found on January 5, 2007
Victim died at UMMC
Cause: shooting
' +39.311103, -76.584475, iconHomicideShooting, 'p9', '
Yule Henderson
1800 North Montford Ave.
Baltimore, MD 21213
black male, 21 years old
Found on January 7, 2007
Victim died at JHH
Cause: shooting
' +39.348101, -76.564960, iconHomicideShooting, 'p10', '
Marcus McDowell
5100 Harford Road
Baltimore, MD 21214
black male, 16 years old
Found on January 8, 2007
Victim died at Bayview
Cause: shooting
' +39.315050, -76.568647, iconHomicideShooting, 'p11', '
Rodney Gardner
3100 Ravenwood Road
Baltimore, MD 21213
black male, 21 years old
Found on January 8, 2007
Victim died at JHH
Cause: shooting
' +39.319081, -76.690475, iconHomicideShooting, 'p12', '
Troy Chesley
4500 Fairfax Road
Baltimore, MD 21216
black male, 34 years old
Found on January 9, 2007
Victim died at Sinai
Cause: shooting
' +39.317947, -76.614191, iconHomicideShooting, 'p13', '
Gregory Rochester
200 East 25th Street
Baltimore, MD 21218
black male, 25 years old
Found on January 9, 2007
Victim died at scene
Cause: shooting
' +39.234253, -76.603307, iconHomicideShooting, 'p14', '
Melissa Stefanski
600 Washburn Ave.
Baltimore, MD 21225
white female, 23 years old
Found on January 9, 2007
Victim died at scene
Cause: shooting
' +39.352110, -76.609721, iconHomicideShooting, 'p15', '
Antwaine Curbeam
5200 York Road
Baltimore, MD 21212
black male, 30 years old
Found on January 9, 2007
Victim died at JHH
Cause: shooting
' +39.304176, -76.597963, iconHomicideShooting, 'p16', '
William Davis
1200 North Caroline St.
Baltimore, MD 21213
black male, 26 years old
Found on January 9, 2007
Victim died at JHH
Cause: shooting
' +39.324880, -76.595280, iconHomicideShooting, 'p17', '
Richard Crane
1500 East 29th Street
Baltimore, MD 21218
black male, 36 years old
Found on January 13, 2007
Victim died at scene
Cause: shooting
' +39.367143, -76.571191, iconHomicideStabbing, 'p18', '
Dante Watson
2200 Fleetwood Ave.
Baltimore, MD 21214
black male, 21 years old
Found on January 15, 2007
Victim died at JHH
Cause: stabbing
' +39.303363, -76.640377, iconHomicideShooting, 'p19', '
Bonita Madden
1300 North Calhoun St.
Baltimore, MD 21217
black female, 27 years old
Found on January 18, 2007
Victim died at scene
Cause: shooting
' +39.290452, -76.603138, iconHomicideShooting, 'p20', '
Milan Walker
1000 E. Baltimore St.
Baltimore, MD 21215
black male, 30 years old
Found on January 20, 2007
Victim died at scene
Cause: shooting
' +39.330618, -76.532941, iconHomicideShooting, 'p21', '
Anton Jones
5400 Cedonia Ave.
Baltimore, MD 21206
black male, 19 years old
Found on January 20, 2007
Victim died at scene
Cause: shooting
' +39.305189, -76.669075, iconHomicideShooting, 'p22', '
David Thomas
3100 Brighton St
Baltimore, MD 21216
black male, 31 years old
Found on January 22, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.299613, -76.625618, iconHomicideShooting, 'p23', '
Ronald Lewis
500 West Preston St.
Baltimore, MD 21201
black male, 34 years old
Found on January 23, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.304334, -76.593591, iconHomicideShooting, 'p24', '
Tio Floyd
1700 East Biddle street
Baltimore, MD 21213
black male, 24 years old
Found on January 23, 2007
Victim died at JHH
Cause: shooting
' +39.309478, -76.634801, iconHomicideShooting, 'p25', '
Jermall Ford
2100 Madison Ave.
Baltimore, MD 21217
black male, 31 years old
Found on January 24, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.310920, -76.588600, iconHomicideShooting, 'p26', '
Vernon Dredden
1800 North Chester St.
Baltimore, MD 21213
black male, 33 years old
Found on January 27, 2007
Victim died at JHH
Cause: shooting
' +39.349367, -76.687649, iconHomicideShooting, 'p27', '
Kevin Fowlin
3900 West Rogers Ave.
Baltimore, MD 21215
black male, 24 years old
Found on January 27, 2007
Victim died at Sinai
Cause: shooting
' +39.366298, -76.709231, iconHomicideAsphyxiation, 'p28', '
Sintia Mesa
7200 Brook Crest Way
Baltimore, MD 21208
hispanic female, 25 years old
Found on January 29, 2007
Victim died at scene
Cause: asphyxiation
' +39.295311, -76.675544, iconHomicideShooting, 'p29', '
Stephanie Stevens
700 Edgewood St.
Baltimore, MD 21229
white female, 22 years old
Found on January 31, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.240181, -76.607571, iconHomicideShooting, 'p30', '
Ryan Holliman
3500 Second Street
Baltimore, MD 21225
black male, 23 years old
Found on February 1, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.310694, -76.638573, iconHomicideShooting, 'p31', '
Desmond Tucker
2300 Druid Hill Ave.
Baltimore, MD 21217
black male, 52 years old
Found on February 2, 2007
Victim died at scene
Cause: shooting
' +39.342274, -76.604927, iconHomicideShooting, 'p32', '
Darnell Gaither
800 East 43rd street
Baltimore, MD 21212
black male, 34 years old
Found on February 8, 2007
Victim died at JHH
Cause: shooting
' +39.299847, -76.583709, iconHomicideShooting, 'p33', '
Dwight Evans
2400 East Madison Street
Baltimore, MD 21205
black male, 32 years old
Found on February 10, 2007
Victim died at JHH
Cause: shooting
' +39.288248, -76.645234, iconHomicideShooting, 'p34', '
Alusine Kamara
1800 West Baltimore Street
Baltimore, MD 21223
black male, 26 years old
Found on February 11, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.287917, -76.652864, iconHomicideShooting, 'p35', '
Harold Robinson
2300 West Baltimore
Baltimore, MD 21223
black male, 39 years old
Found on February 11, 2007
Victim died at scene
Cause: shooting
' +39.343423, -76.677113, iconHomicideShooting, 'p36', '
George Baskerville
3700 Oakmont Ave.
Baltimore, MD 21215
black male, 28 years old
Found on February 17, 2007
Victim died at Sinai
Cause: shooting
' +39.301874, -76.595066, iconHomicideShooting, 'p37', '
David Frasier
1000 Branch Water Ct
Baltimore, MD 21205
black male, 29 years old
Found on February 18, 2007
Victim died at JHH
Cause: shooting
' +39.301893, -76.594621, iconHomicideShooting, 'p38', '
Brian Lessane
1000 Broadway
Baltimore, MD 21205
black male, 19 years old
Found on February 19, 2007
Victim died at JHH
Cause: shooting
' +39.294303, -76.584805, iconHomicideShooting, 'p39', '
Darnell Cain
2300 East Fayette St.
Baltimore, MD 21224
black male, 37 years old
Found on February 19, 2007
Victim died at JHH
Cause: shooting
' +39.315515, -76.611204, iconHomicideShooting, 'p40', '
Charles Pace
2300 Barclay St.
Baltimore, MD 21218
black male, 22 years old
Found on February 19, 2007
Victim died at JHH
Cause: shooting
' +39.311964, -76.647326, iconHomicideShooting, 'p41', '
Andre Jones
1800 Clifton Ave.
Baltimore, MD 21217
black male, 27 years old
Found on February 21, 2007
Victim died at shock trauma
Cause: shooting
' +39.308375, -76.585015, iconHomicideShooting, 'p42', '
Daniel Savage
1500 North Bradford St.
Baltimore, MD 21213
black male, 32 years old
Found on February 21, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.306680, -76.647097, iconHomicideShooting, 'p43', '
Antonio Harris
1600 McKean Ave.
Baltimore, MD 21217
black male, 18 years old
Found on February 23, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.285221, -76.645013, iconHomicideStabbing, 'p44', '
William Duck IV
200 South Fulton ave
Baltimore, MD 21223
black male, 21 years old
Found on February 24, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.297648, -76.645809, iconHomicideShooting, 'p45', '
Vernon Carter
1800 West Lanvale St.
Baltimore, MD 21217
black male, 25 years old
Found on February 26, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.314416, -76.612624, iconHomicideShooting, 'p46', '
Vic Fenner
2200 Guilford Ave.
Baltimore, MD 21218
black male, 17 years old
Found on February 27, 2007
Victim died at JHH
Cause: shooting
' +39.277771, -76.615648, iconHomicideShooting, 'p47', '
Thomas Terry
100 West Hamburg St
Baltimore, MD 21230
black male, 19 years old
Found on March 3, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.299104, -76.575948, iconHomicideShooting, 'p48', '
Anthony Brown
700 North Curley St
Baltimore, MD 21205
black male, 20 years old
Found on March 4, 2007
Victim died at JHH
Cause: shooting
' +39.310810, -76.652745, iconHomicideShooting, 'p49', '
Michael Woods
2000 North Smallwood St.
Baltimore, MD 21216
black male, 28 years old
Found on March 5, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.302166, -76.670222, iconHomicideShooting, 'p50', '
Richard Stuckey
1115 North Ellamont St
Baltimore, MD 21216
black male, 17 years old
Found on March 6, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.302450, -76.668326, iconHomicideShooting, 'p51', '
Anthony Bryan
3000 Rosedale Court
Baltimore, MD 21216
black male, 37 years old
Found on March 9, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.309878, -76.648194, iconHomicideShooting, 'p52', '
Allen Coates
1900 North Monroe St.
Baltimore, MD 21217
black male, 36 years old
Found on March 11, 2007
Victim died at Sinai
Cause: shooting
' +39.346773, -76.674769, iconHomicideShooting, 'p53', '
Damon Smith
5000 Denmore Ave.
Baltimore, MD 21215
black male, 40 years old
Found on March 11, 2007
Victim died at Sinai
Cause: shooting
' +39.295606, -76.661463, iconHomicideShooting, 'p54', '
Mark Robinson
2700 Harlem Ave.
Baltimore, MD 21216
black male, 48 years old
Found on March 12, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.354406, -76.535599, iconHomicideShooting, 'p55', '
Tyrone Jackson
6500 Brook Ave.
Baltimore, MD 21216
black male, 19 years old
Found on March 13, 2007
Victim died at JHH
Cause: shooting
' +39.315233, -76.594642, iconHomicideShooting, 'p56', '
Steven Washington
1600 Cliftview Ave.
Baltimore, MD 21213
black male, 17 years old
Found on March 13, 2007
Victim died at JHH
Cause: shooting
' +39.319077, -76.567534, iconHomicideShooting, 'p57', '
Christopher Clarke
3100 Cliftmont Ave.
Baltimore, MD 21213
black male, 18 years old
Found on March 13, 2007
Victim died at JHH
Cause: shooting
' +39.344856, -76.570641, iconHomicideShooting, 'p58', '
Antwan Askins
2900 List Ave
Baltimore, MD 21214
black male, 27 years old
Found on March 13, 2007
Victim died at Bayview
Cause: shooting
' +39.282398, -76.687493, iconHomicideStabbing, 'p59', '
Michael Stuckey
100 Diener Place
Baltimore, MD 21229
black male, 49 years old
Found on March 14, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.300416, -76.549294, iconHomicideBluntForce, 'p60', '
Charles Erdman
5800 Erdman Ave.
Baltimore, MD 21205
white male, 65 years old
Found on March 15, 2007
Victim died at JHH
Cause: blunt force
' +39.347934, -76.670281, iconHomicideShooting, 'p61', '
Rodney Easton
4900 Queensberry Ave
Baltimore, MD 21215
black male, 21 years old
Found on March 17, 2007
Victim died at scene
Cause: shooting
' +39.300121, -76.576681, iconHomicideShooting, 'p62', '
Edwin Mathews
2900 East Madison St
Baltimore, MD 21205
black male, 30 years old
Found on March 17, 2007
Victim died at scene
Cause: shooting
' +39.296419, -76.660473, iconHomicideShooting, 'p63', '
Charles Hargrove
2600 Rayner Ave
Baltimore, MD 21216
black male, 19 years old
Found on March 20, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.341096, -76.609483, iconHomicideShooting, 'p64', '
Ricardo Paige
502 East 43rd Street
Baltimore, MD 21212
black male, 54 years old
Found on March 20, 2007
Victim died at scene
Cause: shooting
' +39.299517, -76.624003, iconHomicideShooting, 'p65', '
Shawn Weaver
900 McCulloh St
Baltimore, MD 21201
black male, 17 years old
Found on March 21, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.297212, -76.601856, iconHomicideBluntForce, 'p66', '
Theresa Parker
1200 Treeleaf Court
Baltimore, MD 21202
black female, 39 years old
Found on March 25, 2007
Victim died at scene
Cause: blunt force
' +39.296901, -76.638583, iconHomicideStabbing, 'p67', '
Artesha Moses
700 North Carey St.
Baltimore, MD 21217
black female, 18 years old
Found on March 27, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.304770, -76.582672, iconHomicideShooting, 'p68', '
Ronald Harmon
2500 East Biddle St.
Baltimore, MD 21213
black male, 17 years old
Found on March 27, 2007
Victim died at JHH
Cause: shooting
' +39.278873, -76.540463, iconHomicideShooting, 'p69', '
Estefany Gonzalez
6300 Toone St.
Baltimore, MD 21224
hispanic female, 16 years old
Found on March 30, 2007
Victim died at Bayview
Cause: shooting
' +39.293053, -76.569438, iconHomicideShooting, 'p70', '
David Johns
3400 Noble St.
Baltimore, MD 21224
black male, 23 years old
Found on March 30, 2007
Victim died at JHH
Cause: shooting
' +39.368493, -76.561814, iconHomicideShooting, 'p71', '
Pelvin Derrien
6800 Sturbridge Drive
Baltimore, MD 21234
black male, 23 years old
Found on March 30, 2007
Victim died at JHH
Cause: shooting
' +39.367743, -76.568454, iconHomicideShooting, 'p72', '
Andre McBride
6600 Knottwood Court
Baltimore, MD 21214
black male, 21 years old
Found on March 31, 2007
Victim died at Sinai
Cause: shooting
' +39.234076, -76.594904, iconHomicideShooting, 'p73', '
Darrell Smith
3600 St Margaret St
Baltimore, MD 21225
black male, 21 years old
Found on April 2, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.281752, -76.634010, iconHomicideStabbing, 'p74', '
Eric Zurawski
1300 West Ostend St.
Baltimore, MD 21223
white male, 39 years old
Found on April 8, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.284797, -76.676177, iconHomicideShooting, 'p75', '
John Daughtry
100 South Morley St.
Baltimore, MD 21229
black male, 25 years old
Found on April 9, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.300065, -76.578119, iconHomicideShooting, 'p76', '
Tavon Campbell
2800 Madison St
Baltimore, MD 21205
black male, 20 years old
Found on April 11, 2007
Victim died at Hopkins
Cause: shooting
' +39.345123, -76.612623, iconHomicideStabbing, 'p77', '
Brent Flanagan
2600 West Coldspring Lane
Baltimore, MD 21215
black male, 16 years old
Found on April 12, 2007
Victim died at scene
Cause: stabbing
' +39.290684, -76.643912, iconHomicideShooting, 'p78', '
Kevin Randall
200 N.Mount St.
Baltimore, MD 21223
black male, 45 years old
Found on April 18, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.284069, -76.652610, iconHomicideShooting, 'p79', '
Johnnie James
300 South Bentalou St.
Baltimore, MD 21223
black male, 25 years old
Found on April 18, 2007
Victim died at St. Agnes
Cause: shooting
' +39.253198, -76.623167, iconHomicideShooting, 'p80', '
Christopher Wayman
2400 Seabury Road
Baltimore, MD 21225
black male, 23 years old
Found on April 19, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.341365, -76.601631, iconHomicideShooting, 'p81', '
Joseph Ensey Sr.
4100 St. Georges Ave.
Baltimore, MD 21218
white male, 45 years old
Found on April 20, 2007
Cause: shooting
' +39.286176, -76.646850, iconHomicideShooting, 'p82', '
Van Johnson
1900 West Lombard St.
Baltimore, MD 21223
black male, 29 years old
Found on April 22, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.342089, -76.673344, iconHomicideShooting, 'p83', '
Damon Dubose
3500 Woodland Ave.
Baltimore, MD 21215
black male, 23 years old
Found on April 22, 2007
Victim died at Sinai
Cause: shooting
' +39.288265, -76.612197, iconHomicideStabbing, 'p84', '
Ernest Buchanan
31 South Calvert St.
Baltimore, MD 21202
white male, 18 years old
Found on April 26, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.305936, -76.669110, iconHomicideShooting, 'p85', '
Dewitt Smith
1600 North Rosedale St.
Baltimore, MD 21216
black male, 25 years old
Found on April 27, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.343144, -76.568685, iconHomicideShooting, 'p86', '
Ronald Daniels
4700 Harford Road
Baltimore, MD 21214
black male, 35 years old
Found on April 29, 2007
Victim died at scene
Cause: shooting
' +39.280370, -76.541686, iconHomicideShooting, 'p87', '
Azerwoine Walker
6200 Elliott St
Baltimore, MD 21224
black male, 30 years old
Found on April 29, 2007
Victim died at Bayview
Cause: shooting
' +39.291714, -76.693725, iconHomicideShooting, 'p88', '
Lonnie Plateo
4600 Old Frederick Road
Baltimore, MD 21229
black male, 36 years old
Found on April 29, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.285095, -76.648511, iconHomicideShooting, 'p89', '
Leroy Sanders
2000 West Pratt St.
Baltimore, MD 21223
black male, 22 years old
Found on April 29, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.297583, -76.623702, iconHomicideShooting, 'p90', '
Jamal Knox
500 Half Mile Court
Baltimore, MD 21201
black male, 16 years old
Found on April 30, 2007
Victim died at scene
Cause: shooting
' +39.310787, -76.591604, iconHomicideShooting, 'p91', '
Eric Queen
1900 East Lafayette Ave.
Baltimore, MD 21213
black male, 24 years old
Found on April 30, 2007
Victim died at JHH
Cause: shooting
' +39.328917, -76.660273, iconHomicideShooting, 'p92', '
Deshaun White
3600 Reisterstown Road
Baltimore, MD 21215
black male, 31 years old
Found on April 30, 2007
Victim died at Sinai
Cause: shooting
' +39.254057, -76.620404, iconHomicideUnknown, 'p93', '
Abdul Azzie
3301 Waterview Ave.
Baltimore, MD 21230
black male, 18 years old
Found on May 1, 2007
Victim died at scene
Cause: unknown
' +39.298047, -76.668032, iconHomicideShooting, 'p94', '
Larry Brockington
900 North Rosedale St.
Baltimore, MD 21216
black male, 31 years old
Found on May 1, 2007
Victim died at scene
Cause: shooting
' +39.314478, -76.611136, iconHomicideShooting, 'p95', '
Derius Harmon
2200 Barclay St
Baltimore, MD 21218
black male
Found on May 2, 2007
Victim died at scene
Cause: shooting
' +39.286282, -76.643641, iconHomicideShooting, 'p96', '
Matthew Davis
100 S. Mount St
Baltimore, MD 21223
black male, 23 years old
Found on May 3, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.282153, -76.637361, iconHomicideShooting, 'p97', '
Adrian Beasley
1300 Herkimer St
Baltimore, MD 21223
black male, 23 years old
Found on May 5, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.293636, -76.598033, iconHomicideShooting, 'p98', '
Rocky Bottoms
200 North Spring Court
Baltimore, MD
black male, 24 years old
Found on May 6, 2007
Victim died at JHH
Cause: shooting
' +39.333575, -76.696199, iconHomicideShooting, 'p99', '
Michael Davis
3700 Woodbine Ave.
Baltimore, MD 21207
black male, 25 years old
Found on May 7, 2007
Victim died at Sinai
Cause: shooting
' +39.306709, -76.598118, iconHomicideShooting, 'p100', '
Thomas Mouzon
1400 North Caroline St
Baltimore, MD 21213
black male, 23 years old
Found on May 7, 2007
Victim died at JHH
Cause: shooting
' +39.315647, -76.596416, iconHomicideShooting, 'p101', '
John Graves
1500 Cliftview Ave.
Baltimore, MD 21213
black male, 26 years old
Found on May 7, 2007
Victim died at JHH
Cause: shooting
' +39.318043, -76.559050, iconHomicideShooting, 'p102', '
William Curtis
4000 Raymonn Ave.
Baltimore, MD 21213
black male, 23 years old
Found on May 8, 2007
Victim died at scene
Cause: shooting
' +39.315826, -76.612696, iconHomicideShooting, 'p103', '
Deandre Hatcher
300 East 23 1/2 St
Baltimore, MD 21218
black male, 17 years old
Found on May 10, 2007
Victim died at JHH
Cause: shooting
' +39.300760, -76.587987, iconHomicideShooting, 'p104', '
Gerald Wilson
900 North Chester St
Baltimore, MD 21205
black male, 22 years old
Found on May 11, 2007
Victim died at JHH
Cause: shooting
' +39.314671, -76.601985, iconHomicideShooting, 'p105', '
Antwoine Hawkins
2200 Robb St
Baltimore, MD 21218
black male, 29 years old
Found on May 12, 2007
Victim died at scene
Cause: shooting
' +39.309494, -76.597588, iconHomicideShooting, 'p106', '
Todd Little
1700 North Dallas St.
Baltimore, MD 21213
black male, 29 years old
Found on May 12, 2007
Victim died at scene
Cause: shooting
' +39.318677, -76.598933, iconHomicideShooting, 'p107', '
Nathaniel Hicks
2500 Garrett Ave.
Baltimore, MD 21218
black male, 30 years old
Found on May 14, 2007
Victim died at JHH
Cause: shooting
' +39.281946, -76.651071, iconHomicideShooting, 'p108', '
Deandre Salmond
500 South Smallwood St.
Baltimore, MD 21223
black male, 19 years old
Found on May 15, 2007
Victim died at Shock Traum
Cause: shooting
' +39.350325, -76.609653, iconHomicideShooting, 'p109', '
Earl Cornish III
5100 York Road
Baltimore, MD 21212
black male, 21 years old
Found on May 16, 2007
Victim died at Sinai
Cause: shooting
' +39.288930, -76.596624, iconHomicideShooting, 'p110', '
Robert Perlie
200 North Dallas Court
Baltimore, MD 21231
black male, 16 years old
Found on May 17, 2007
Victim died at JHH
Cause: shooting
' +39.287899, -76.653612, iconHomicideBluntForce, 'p111', '
Alvin Parson
1 Gorman Ave.
Baltimore, MD 21223
black male, 22 years old
Found on May 19, 2007
Victim died at Shock Trauma
Cause: blunt force
' +39.296297, -76.567795, iconHomicideBluntForce, 'p112', '
Tarik Tynes
3600 Pulaski Highway
Baltimore, MD 21224
black male, 35 years old
Found on May 19, 2007
Victim died at scene
Cause: blunt force
Read the article
' +39.294303, -76.584799, iconHomicideShooting, 'p113', '
Alexander Rose
2301 East Fayette St.
Baltimore, MD 21224
black male, 23 years old
Found on May 22, 2007
Victim died at JHH
Cause: shooting
' +39.313356, -76.613934, iconHomicideShooting, 'p114', '
Adrian Smith
200 East 21st St.
Baltimore, MD 21218
black male, 23 years old
Found on May 22, 2007
Victim died at JHH
Cause: shooting
' +39.304683, -76.611988, iconHomicideShooting, 'p115', '
Curtis Taylor
1300 Guilford Ave.
Baltimore, MD 21202
black male, 22 years old
Found on May 22, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.284737, -76.653064, iconHomicideShooting, 'p116', '
Jasman Elmore
2300 Frederick Ave.
Baltimore, MD 21223
black male, 18 years old
Found on May 23, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.305265, -76.647936, iconHomicideBluntForce, 'p117', '
Voltaire Conway
1900 Presstman St.
Baltimore, MD 21217
black male, 40 years old
Found on May 23, 2007
Victim died at Shock Trauma
Cause: blunt force
Read the article
' +39.354392, -76.580746, iconHomicideShooting, 'p118', '
Perry Brooks
1900 Hillenwood Ave.
Baltimore, MD 21239
black male, 49 years old
Found on May 25, 2007
Victim died at scene
Cause: shooting
' +39.339750, -76.685430, iconHomicideStabbing, 'p119', '
Renard Maith
4000 Belvieu Ave.
Baltimore, MD 21215
black male, 52 years old
Found on May 25, 2007
Victim died at scene
Cause: stabbing
' +39.307232, -76.643930, iconHomicideShooting, 'p120', '
Brian Johnson
1600 Vincent Court
Baltimore, MD 21217
black male, 31 years old
Found on May 26, 2007
Victim died at scene
Cause: shooting
' +39.296389, -76.649099, iconHomicideShooting, 'p121', '
Amin Reed
700 North Payson St.
Baltimore, MD 21217
black male, 30 years old
Found on May 26, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.332409, -76.535064, iconHomicideShooting, 'p122', '
Davon Williams
5800 Waycross Road
Baltimore, MD 21206
black male, 19 years old
Found on May 26, 2007
Victim died at Good Sam
Cause: shooting
' +39.292576, -76.608668, iconHomicideStabbing, 'p123', '
David Bishop
200 North Gay St.
Baltimore, MD 21202
black male, 32 years old
Found on May 27, 2007
Victim died at Shock Trauma
Cause: stabbing
' +39.306379, -76.655726, iconHomicideShooting, 'p124', '
Laron Henderson
1600 Moreland Ave.
Baltimore, MD 21216
black male, 27 years old
Found on May 29, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.299868, -76.645943, iconHomicideShooting, 'p125', '
Jourman Parson
1800 West Mosher St.
Baltimore, MD 21217
black male, 17 years old
Found on May 29, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.311024, -76.674227, iconHomicideShooting, 'p126', '
Neil Rather
3400 Clifton Ave.
Baltimore, MD 21216
black male, 18 years old
Found on May 29, 2007
Victim died at Sinai
Cause: shooting
' +39.290361, -76.654431, iconHomicideShooting, 'p127', '
John Drew
2400 West Lexington St.
Baltimore, MD 21223
black male, 26 years old
Found on May 30, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.313997, -76.599438, iconHomicideShooting, 'p128', '
Charles Payne
2100 Sherwood Ave.
Baltimore, MD 21218
black male, 31 years old
Found on June 1, 2007
Victim died at scene
Cause: shooting
' +39.315175, -76.640307, iconHomicideStabbing, 'p129', '
Shirley Cooper
2600 Madison Ave.
Baltimore, MD 21217
black female, 72 years old
Found on June 2, 2007
Victim died at scene
Cause: stabbing
' +39.330675, -76.659828, iconHomicideShooting, 'p130', '
David Washington
2700 Violet Ave.
Baltimore, MD 21215
black male, 24 years old
Found on June 2, 2007
Victim died at Sinai
Cause: shooting
' +39.297589, -76.647474, iconHomicideShooting, 'p131', '
Curtis Alexander
1900 West Lanvale St.
Baltimore, MD 21217
black male, 28 years old
Found on June 3, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.325798, -76.666210, iconHomicideBluntForce, 'p132', '
Virginia Jones
3600 Rosedale Road
Baltimore, MD 21215
black female, 81 years old
Found on June 3, 2007
Victim died at Georgetown Medical Center
Cause: blunt force
Read the article
' +39.325377, -76.591931, iconHomicideShooting, 'p133', '
Tyrone Bonner Jr.
1700 East 30th St.
Baltimore, MD 21218
black male, 30 years old
Found on June 5, 2007
Victim died at JHH
Cause: shooting
' +39.321867, -76.618636, iconHomicideShooting, 'p134', '
Ghulam Mustafa
100 West 28th St.
Baltimore, MD 21218
Other male, 33 years old
Found on June 5, 2007
Victim died at JHH
Cause: shooting
' +39.312491, -76.587502, iconHomicideShooting, 'p135', '
Craig Hunter
1900 North Collington Ave.
Baltimore, MD 21213
black male, 29 years old
Found on June 8, 2007
Victim died at JHH
Cause: shooting
' +39.314411, -76.568089, iconHomicideShooting, 'p136', '
Demetrius Burnette
3600 Bonview Ave.
Baltimore, MD 21213
black male, 31 years old
Found on June 8, 2007
Victim died at Bayview
Cause: shooting
' +39.304962, -76.605071, iconHomicideShooting, 'p138', '
Melvin Jordan
900 East Preston St.
Baltimore, MD 21202
black male, 32 years old
Found on June 9, 2007
Victim died at JHH
Cause: shooting
' +39.291679, -76.589815, iconHomicideStabbing, 'p139', '
Michael Simms
1 South Chapel St.
Baltimore, MD 21231
black male, 18 years old
Found on June 10, 2007
Victim died at JHH
Cause: stabbing
' +39.290478, -76.652988, iconHomicideShooting, 'p140', '
Barbara Griffin
200 North Bentalou St.
Baltimore, MD 21223
black female, 18 years old
Found on June 11, 2007
Victim died at scene
Cause: shooting
' +39.305050, -76.672058, iconHomicideShooting, 'p141', '
Juan Taylor
3300 Brighton St.
Baltimore, MD 21216
black male, 44 years old
Found on June 11, 2007
Victim died at scene
Cause: shooting
' +39.320773, -76.596766, iconHomicideShooting, 'p142', '
Curtis Washington
1600 Montpelier St.
Baltimore, MD 21218
black male, 17 years old
Found on June 12, 2007
Victim died at JHH
Cause: shooting
' +39.314491, -76.671232, iconHomicideShooting, 'p143', '
Sterling Carr Jr.
2400 North Ellamont St.
Baltimore, MD 21216
black male, 28 years old
Found on June 13, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.286956, -76.671618, iconHomicideShooting, 'p144', '
Tyree Williams
3200 Phelps Lane
Baltimore, MD 21229
black male, 22 years old
Found on June 13, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.315230, -76.636146, iconHomicideShooting, 'p145', '
Maurice Gordon
2500 Linden Ave.
Baltimore, MD 21217
black male, 15 years old
Found on June 14, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.285176, -76.646773, iconHomicideShooting, 'p146', '
Richard Jones
1900 West Pratt St.
Baltimore, MD 21223
black male, 37 years old
Found on June 15, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.249850, -76.639488, iconHomicideBluntForce, 'p147', '
Alvis Harris
3300 Annapolis Road
Baltimore, MD 21230
black male, 40 years old
Found on June 16, 2007
Victim died at scene
Cause: blunt force
' +39.317554, -76.660270, iconHomicideShooting, 'p148', '
Marcarian Grimes
2600 Fairview ave.
Baltimore, MD 21215
black male, 23 years old
Found on June 17, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.302220, -76.687530, iconHomicideShooting, 'p149', '
Name not yet released
1300 North Woodington road
Baltimore, MD 21229
black male, 43 years old
Found on June 17, 2007
Victim died at scene
Cause: shooting
' +39.341032, -76.671108, iconHomicideShooting, 'p150', '
David Carter
3400 St. Ambrose Ave.
Baltimore, MD 21215
black male, 26 years old
Found on June 18, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.321284, -76.624068, iconHomicideShooting, 'p151', '
Ronnie Bundy
2900 Miles Ave.
Baltimore, MD 21211
black male, 21 years old
Found on June 19, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.222987, -76.588187, iconHomicideStabbing, 'p152', '
Phillip Airey
4800 Pennington Ave.
Baltimore, MD 21226
white male, 36 years old
Found on June 19, 2007
Victim died at scene
Cause: stabbing
Read the article
' +39.325177, -76.605058, iconHomicideShooting, 'p153', '
George Wilson
3100 Ellerslie Ave.
Baltimore, MD 21218
black male, 24 years old
Found on June 21, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.301968, -76.632700, iconHomicideShooting, 'p154', '
Kyle Lewis
1500 Pennsylvania Ave.
Baltimore, MD 21217
black male, 27 years old
Found on June 23, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.353866, -76.656348, iconHomicideAsphyxiation, 'p155', '
Jewels Cook
2300 Cylburn Ave.
Baltimore, MD 21209
black male, 36 years old
Found on June 27, 2007
Cause: asphyxiation
Read the article
' +39.332963, -76.670198, iconHomicideShooting, 'p156', '
Joseph Johnson
4000 Cedardale Road
Baltimore, MD 21215
black male, 29 years old
Found on June 29, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.289255, -76.600229, iconHomicideShooting, 'p157', '
Paul Cornish
1100 Granby St.
Baltimore, MD 21202
black male, 28 years old
Found on June 30, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.348038, -76.576973, iconHomicideShooting, 'p158', '
Gerald Smith
4800 Herring Run Drive
Baltimore, MD 21214
black male, 25 years old
Found on July 1, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.299805, -76.585188, iconHomicideShooting, 'p159', '
Davon Turner
800 N. Patterson Park Ave.
Baltimore, MD 21205
black male, 21 years old
Found on July 1, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.312447, -76.612506, iconHomicideShooting, 'p160', '
Allen Burton
2000 Guilford Ave.
Baltimore, MD 21218
black male, 39 years old
Found on July 2, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.323701, -76.537282, iconHomicideShooting, 'p161', '
Nathaniel Price
4900 Greencrest Road
Baltimore, MD 21206
black male, 30 years old
Found on July 2, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.307413, -76.596774, iconHomicideShooting, 'p162', '
Christopher Barrett
1500 N. Bond St.
Baltimore, MD 21213
black male, 52 years old
Found on July 2, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.302754, -76.607642, iconHomicideShooting, 'p163', '
Antonio Tracey
1100 Greenmount Ave.
Baltimore, MD 21202
black male, 31 years old
Found on July 2, 2007
Victim died at JHH
Cause: shooting
' +39.309601, -76.595106, iconHomicideStabbing, 'p164', '
Phyllis Johnson
1700 N. Broadway
Baltimore, MD 21213
black female, 40 years old
Found on July 3, 2007
Victim died at JHH
Cause: stabbing
Read the article
' +39.297501, -76.649165, iconHomicideShooting, 'p165', '
George Johnson
800 N. Payson St.
Baltimore, MD 21217
black male, 25 years old
Found on July 6, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.343771, -76.568201, iconHomicideBluntForce, 'p166', '
Mario Mauro
3000 Rosekemp Ave.
Baltimore, MD 21214
white male, 53 years old
Found on July 7, 2007
Victim died at JHH
Cause: blunt force
' +39.298662, -76.614146, iconHomicideBluntForce, 'p167', '
Ashley Bellosi
800 St. Paul St.
Baltimore, MD 21202
white female, 23 years old
Found on July 7, 2007
Victim died at Shock Trauma
Cause: blunt force
' +39.277428, -76.689935, iconHomicideBluntForce, 'p168', '
Clayborn Johnson
4400 Parkton St.
Baltimore, MD 21229
black male, 61 years old
Found on July 8, 2007
Victim died at Shock Trauma
Cause: blunt force
' +39.284275, -76.644950, iconHomicideStabbing, 'p169', '
Christine Richardson
300 S. Fulton Ave.
Baltimore, MD 21223
black female, 15 years old
Found on July 10, 2007
Victim died at scene
Cause: stabbing
Read the article
' +39.289177, -76.595218, iconHomicideStabbing, 'p170', '
JOHN DOE
200 S. Herring Court
Baltimore, MD 21231
male
Found on July 12, 2007
Victim died at JHH
Cause: stabbing
Read the article
' +39.295826, -76.571295, iconHomicideShooting, 'p171', '
Jerry Crosby
400 N. Bouldin St.
Baltimore, MD 21224
black male, 24 years old
Found on July 12, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.338089, -76.667294, iconHomicideShooting, 'p172', '
Yemel McMillian
2800 Boarman Ave
Baltimore, MD 21215
black male, 20 years old
Found on July 14, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.311003, -76.585848, iconHomicideShooting, 'p173', '
Name not yet released
1800 N. Gay St.
Baltimore, MD 21213
black male, 25 years old
Found on July 15, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.329983, -76.536506, iconHomicideShooting, 'p174', '
Maurice White
5700 Radecke Ave.
Baltimore, MD 21206
black male, 22 years old
Found on July 15, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.329983, -76.536506, iconHomicideShooting, 'p175', '
Wayne White
5700 Radecke Ave.
Baltimore, MD 21206
black male, 24 years old
Found on July 15, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.311442, -76.663246, iconHomicideShooting, 'p176', '
Earl Williams
2100 Koko Lane
Baltimore, MD 21216
black male, 26 years old
Found on July 15, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.341032, -76.671108, iconHomicideShooting, 'p177', '
Perry Costley
3400 St. Ambrose Ave.
Baltimore, MD 21215
black male, 18 years old
Found on July 17, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.277722, -76.542933, iconHomicideShooting, 'p178', '
Daniel Santiago
6100 Fortview Ave.
Baltimore, MD 21224
Hispanic male, 29 years old
Found on July 17, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.247739, -76.628140, iconHomicideShooting, 'p179', '
Steven Brandon Sr.
2800 Round Road
Baltimore, MD 21225
black male, 41 years old
Found on July 18, 2007
Victim died at Harbor
Cause: shooting
Read the article
' +39.321451, -76.575428, iconHomicideShooting, 'p180', '
Donte Chase
3000 Clifton Park Terrace
Baltimore, MD 21213
black male, 17 years old
Found on July 19, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.364889, -76.583094, iconHomicideBluntForce, 'p181', '
Christopher Robotham
1600 Waverly Way
Baltimore, MD 21239
black male, 37 years old
Found on July 26, 2007
Victim died at scene
Cause: blunt force
Read the article
' +39.288325, -76.643787, iconHomicideShooting, 'p182', '
Samuel Epps
1700 W. Baltimore St.
Baltimore, MD 21223
black male, 30 years old
Found on July 27, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.286862, -76.632053, iconHomicideShooting, 'p183', '
Cynthia Webb
900 W. Lombard St.
Baltimore, MD 21223
black female, 42 years old
Found on July 27, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.284152, -76.649861, iconHomicideShooting, 'p184', '
Demetris Downing Sr.
2100 McHenry St.
Baltimore, MD 21223
black male, 25 years old
Found on July 28, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.299228, -76.665193, iconHomicideShooting, 'p185', '
Kenneth Mitchell
2900 W. Mosher St.
Baltimore, MD 21216
black male, 44 years old
Found on July 28, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.295739, -76.694041, iconHomicideShooting, 'p186', '
Jordan Brown
4600 Rokeby Road
Baltimore, MD 21229
black male, 21 years old
Found on July 31, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.280061, -76.631863, iconHomicideShooting, 'p187', '
Eghosa Miaes
1200 Nanticoke St.
Baltimore, MD 21230
black male, 20 years old
Found on August 1, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.308536, -76.655876, iconHomicideShooting, 'p188', '
Carl Barnes
2400 Westwood Ave.
Baltimore, MD 21216
black male, 35 years old
Found on August 1, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.254359, -76.651593, iconHomicideShooting, 'p189', '
William Johnson
2400 Marbourne Ave.
Baltimore, MD 21216
black male, 18 years old
Found on August 2, 2007
Victim died at St. Agnes
Cause: shooting
Read the article
' +39.316765, -76.567027, iconHomicideShooting, 'p190', '
Keenan McCargo
3700 Lyndale Ave.
Baltimore, MD 21213
black male, 28 years old
Found on August 2, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.315438, -76.609477, iconHomicideShooting, 'p191', '
Donte Bracey
500 E. 23rd St.
Baltimore, MD 21218
black male, 20 years old
Found on August 2, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.291400, -76.567459, iconHomicideShooting, 'p192', '
Larado Williams
3600 E. Lombard St.
Baltimore, MD 21224
black male, 27 years old
Found on August 2, 2007
Cause: shooting
Read the article
' +39.292457, -76.569407, iconHomicideShooting, 'p193', '
Eric Ford
1 S. Highland Ave.
Baltimore, MD 21224
black male, 19 years old
Found on August 5, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.306906, -76.582873, iconHomicideShooting, 'p194', '
Taavon Mitchell
1400 of N. Milton Ave.
Baltimore, MD 21213
black male, 27 years old
Found on August 7, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.307834, -76.585626, iconHomicideShooting, 'p195', '
Joseph Bryant
2300 E. Oliver St.
Baltimore, MD 21213
black male, 29 years old
Found on August 7, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.341847, -76.671567, iconHomicideShooting, 'p196', '
Troy Richardson
3400 Dupont Ave.
Baltimore, MD 21215
black male, 30 years old
Found on August 9, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.299039, -76.638724, iconHomicideShooting, 'p197', '
Davon McCargo
1300 W. Lafayette Ave.
Baltimore, MD 21217
black male, 20 years old
Found on August 11, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.313481, -76.611069, iconHomicideShooting, 'p198', '
Byron Dickey
2100 Barclay St.
Baltimore, MD 21218
black male, 28 years old
Found on August 12, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.296156, -76.630850, iconHomicideShooting, 'p199', '
Frederick Moore
700 Brune St.
Baltimore, MD 21201
black male, 27 years old
Found on August 15, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.232693, -76.605927, iconHomicideStabbing, 'p200', '
Karen Kutchey
4000 Fifth St.
Baltimore, MD 21225
white female, 51 years old
Found on August 16, 2007
Victim died at scene
Cause: stabbing
Read the article
' +39.270360, -76.597606, iconHomicideBluntForce, 'p201', '
Ramona Bradley
1100 Harper Way
Baltimore, MD 21205
white female, 40 years old
Found on August 18, 2007
Victim died at Bayview
Cause: blunt force
Read the article
' +39.310172, -76.641149, iconHomicideShooting, 'p202', '
Darius Cox
2400 Woodbrook Ave.
Baltimore, MD 21217
black male, 17 years old
Found on August 18, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.301133, -76.640296, iconHomicideShooting, 'p203', '
Ishmael Cooper
1400 Riggs Ave.
Baltimore, MD 21217
black male, 15 years old
Found on August 23, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.320837, -76.674782, iconHomicideShooting, 'p204', '
Dwight Baker
3400 Powhatan Ave.
Baltimore, MD 21216
black male, 35 years old
Found on August 25, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.292523, -76.568468, iconHomicideShooting, 'p205', '
Andrew McNair
3500 E. Baltimore St.
Baltimore, MD 21224
black male, 28 years old
Found on August 26, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.311676, -76.605137, iconHomicideShooting, 'p206', '
Matthew Sivells
1900 Cecil Ave.
Baltimore, MD 21218
black male, 26 years old
Found on August 26, 2007
Victim died at Hopkins
Cause: shooting
Read the article
' +39.315648, -76.659174, iconHomicideShooting, 'p207', '
Himank Karki
2600 Gwynns Falls Parkway
Baltimore, MD 21216
Other male, 18 years old
Found on August 27, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.282842, -76.648354, iconHomicideShooting, 'p208', '
Lacy Hazel
400 S. Payson St.
Baltimore, MD 21223
black male, 44 years old
Found on August 28, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.317879, -76.669886, iconHomicideShooting, 'p209', '
Darnell Thomas
3100 Artaban Place
Baltimore, MD 21216
black male, 23 years old
Found on August 30, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.302594, -76.668359, iconHomicideShooting, 'p210', '
Kahlil Taylor
3000 Normount Court
Baltimore, MD 21216
black male, 23 years old
Found on August 30, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.292872, -76.588351, iconHomicideShooting, 'p211', '
Sean Blackwell
2000 E. Fairmount Ave.
Baltimore, MD 21231
black male, 20 years old
Found on August 31, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.306488, -76.669145, iconHomicideShooting, 'p212', '
Gary Watts
1300 N. Rosedale St.
Baltimore, MD 21216
black male, 21 years old
Found on September 1, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.318677, -76.598933, iconHomicideShooting, 'p213', '
Davon Qualls
2500 Garrett Ave.
Baltimore, MD 21218
black male, 17 years old
Found on September 4, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.367481, -76.598899, iconHomicide, 'p214', '
Pauline Borum
6100 Macbeth Dr.
Baltimore, MD 21239
black female, 60 years old
Found on September 4, 2007
Victim died at scene
Read the article
' +39.367481, -76.598899, iconHomicide, 'p215', '
Jasmine Borum
6100 Macbeth Dr.
Baltimore, MD 21239
black female, 17 years old
Found on September 4, 2007
Victim died at scene
Read the article
' +39.285482, -76.639382, iconHomicideShooting, 'p216', '
Barry Newman
200 S. Calhoun St.
Baltimore, MD 21223
black male, 29 years old
Found on September 4, 2007
Cause: shooting
Read the article
' +39.317175, -76.569580, iconHomicideShooting, 'p217', '
Khonji Watton
3600 Elmley Ave.
Baltimore, MD 21213
black female, 27 years old
Found on September 10, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.281203, -76.672253, iconHomicideShooting, 'p218', '
John Christen
3300 Old Frederick Road
Baltimore, MD 21229
black male, 20 years old
Found on September 15, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.307834, -76.585626, iconHomicideShooting, 'p219', '
Brian Smith
2301 E. Oliver St.
Baltimore, MD 21213
black male, 27 years old
Found on September 15, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.251293, -76.624670, iconHomicideStabbing, 'p220', '
Qafim Kaba
2500 Terra Firma Road
Baltimore, MD 21225
black male, 29 years old
Found on September 15, 2007
Cause: stabbing
Read the article
' +39.322411, -76.572593, iconHomicideShooting, 'p221', '
Deion Morris
3400 Belair Road
Baltimore, MD 21213
black male, 23 years old
Found on September 16, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.322411, -76.572593, iconHomicideShooting, 'p222', '
Channing Myrick
3400 Belair Road
Baltimore, MD 21213
black male, 26 years old
Found on September 16, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.306503, -76.640763, iconHomicideShooting, 'p223', '
Tyrone Jones
1500 Woodyear St.
Baltimore, MD 21217
black male, 26 years old
Found on September 16, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.345123, -76.612623, iconHomicideShooting, 'p224', '
Richard Asare
1300 E. Coldspring Lane
Baltimore, MD 21239
black male, 24 years old
Found on September 17, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.246847, -76.627822, iconHomicideShooting, 'p225', '
Glenn Conley
2900 Round Road
Baltimore, MD 21225
black male, 25 years old
Found on September 17, 2007
Cause: shooting
Read the article
' +39.303749, -76.581174, iconHomicideBluntForce, 'p226', '
Darrick Harris
2600 E. Chase St.
Baltimore, MD 21213
black male, 40 years old
Found on September 19, 2007
Victim died at JHH
Cause: blunt force
Read the article
' +39.304722, -76.628978, iconHomicideShooting, 'p227', '
Monea Gorham
1500 Madison Ave.
Baltimore, MD 21217
black female, 16 years old
Found on September 20, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.335441, -76.643257, iconHomicideBluntForce, 'p228', '
William Diven
1700 W. 41st Street
Baltimore, MD 21211
white male, 46 years old
Found on September 22, 2007
Victim died at scene
Cause: blunt force
Read the article
' +39.315297, -76.646090, iconHomicideBluntForce, 'p229', '
Robert Rutledge
2800 Parkwood Ave.
Baltimore, MD 21217
black male, 40 years old
Found on September 22, 2007
Victim died at Shock Trauma
Cause: blunt force
Read the article
' +39.342139, -76.684450, iconHomicideStabbing, 'p230', '
Richard Ray
5200 Fairlawn Ave.
Baltimore, MD 21215
black male, 37 years old
Found on September 25, 2007
Victim died at Sinai
Cause: stabbing
Read the article
' +39.323234, -76.627068, iconHomicideShooting, 'p231', '
Keith Ray
600 Wyman Park Drive
Baltimore, MD 21211
black male, 24 years old
Found on September 25, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.296375, -76.648226, iconHomicideStabbing, 'p232', '
Alfred Smith
700 Appleton St.
Baltimore, MD 21217
black male, 56 years old
Found on September 26, 2007
Cause: stabbing
Read the article
' +39.298027, -76.633882, iconHomicideShooting, 'p233', '
Jason Fortune
800 N. Fremont Ave.
Baltimore, MD 21217
black male, 24 years old
Found on September 28, 2007
Victim died at Shock Trauma
Cause: shooting
Read the article
' +39.311767, -76.635327, iconHomicideShooting, 'p234', '
Tyrone Blanding
2300 Eutaw Place
Baltimore, MD 21217
black male, 30 years old
Found on October 5, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.320402, -76.594780, iconHomicideShooting, 'p235', '
Darwin Kelly
1700 Homestead St.
Baltimore, MD 21218
black male, 20 years old
Found on October 6, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.293969, -76.599529, iconHomicideShooting, 'p236', '
Damon Coleman
1400 May Court
Baltimore, MD 21231
black male, 35 years old
Found on October 6, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.316205, -76.595882, iconHomicideShooting, 'p237', '
Montaz Askew
1600 Normal Ave.
Baltimore, MD 21213
black male, 20 years old
Found on October 9, 2007
Cause: shooting
' +39.305989, -76.675074, iconHomicide, 'p238', '
Kwame Asofo
3400 Winterbourne Road
Baltimore, MD 21216
black male, 21 years old
Found on October 10, 2007
' +39.288655, -76.636015, iconHomicideShooting, 'p239', '
Kevin Ware
1100 W. Baltimore St.
Baltimore, MD 21223
black male, 40 years old
Found on October 11, 2007
Cause: shooting
Read the article
' +39.308984, -76.611542, iconHomicide, 'p240', '
Deron Hope
1700 Latrobe St.
Baltimore, MD 21202
black male, 16 years old
Found on October 13, 2007
Victim died at JHH
Read the article
' +39.337970, -76.661051, iconHomicideShooting, 'p241', '
Dione Biggs
2600 Quantico Ave.
Baltimore, MD 21215
black male, 33 years old
Found on October 14, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.310822, -76.679507, iconHomicideAsphyxiation, 'p242', '
Henry Mazyck
2100 Allendale Road
Baltimore, MD 21216
black male, 39 years old
Found on October 15, 2007
Victim died at scene
Cause: asphyxiation
Read the article
' +39.336123, -76.665704, iconHomicideShooting, 'p243', '
Andre Bryant
2800 Quantico Ave.
Baltimore, MD 21215
black male, 47 years old
Found on October 15, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.310917, -76.646670, iconHomicideShooting, 'p244', '
Darren Mebane
1800 Walbrook Ave.
Baltimore, MD 21217
black male, 21 years old
Found on October 18, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.229726, -76.604934, iconHomicideShooting, 'p245', '
Donte Davis
4200 Audrey Ave.
Baltimore, MD 21225
black male, 25 years old
Found on October 19, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.346019, -76.669900, iconHomicideShooting, 'p246', '
Qur'ron Holloway
3100 Woodland Ave.
Baltimore, MD 21215
black male, 19 years old
Found on October 19, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.235877, -76.600730, iconHomicideShooting, 'p247', '
Christopher Burden
700 E. Patapsco Ave.
Baltimore, MD 21225
black male, 23 years old
Found on October 25, 2007
Cause: shooting
Read the article
' +39.293921, -76.681171, iconHomicideStabbing, 'p248', '
Veronica Fludd
600 Lyndhurst St.
Baltimore, MD 21229
black female, 26 years old
Found on October 26, 2007
Victim died at scene
Cause: stabbing
Read the article
' +39.330744, -76.532041, iconHomicideShooting, 'p249', '
John Doe
5900 Radecke Ave.
Baltimore, MD 21206
Hispanic male
Found on October 29, 2007
Cause: shooting
Read the article
' +39.359007, -76.575498, iconHomicideShooting, 'p250', '
Marlon Beckford
5800 Edgepark Road
Baltimore, MD 21239
black male, 31 years old
Found on October 30, 2007
Cause: shooting
Read the article
' +39.316242, -76.606439, iconHomicideShooting, 'p251', '
Alexander Robertson-El
700 Bartlett Ave.
Baltimore, MD 21218
black male, 24 years old
Found on October 30, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.316268, -76.610406, iconHomicideShooting, 'p252', '
Naim King
2400 Brentwood Ave.
Baltimore, MD 21218
black male, 31 years old
Found on October 31, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.346571, -76.668934, iconHomicideShooting, 'p253', '
Nathaniel Footman
3000 Woodland Ave.
Baltimore, MD 21215
black male, 18 years old
Found on October 31, 2007
Victim died at Sinai
Cause: shooting
' +39.278918, -76.542301, iconHomicideShooting, 'p254', '
Lawrence Jones
1300 Ballard Way
Baltimore, MD 21224
male, 17 years old
Found on November 2, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.315886, -76.577181, iconHomicideShooting, 'p255', '
Robert Tyson
3300 Elmora Ave.
Baltimore, MD 21213
male, 24 years old
Found on November 3, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.301795, -76.596298, iconHomicideShooting, 'p256', '
Norman Smith
1600 E. Eager St.
Baltimore, MD 21205
male, 30 years old
Found on November 4, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.342763, -76.589386, iconHomicideShooting, 'p257', '
Terrance Regan
1600 Lochwood Road
Baltimore, MD 21218
male, 16 years old
Found on November 5, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.336719, -76.660419, iconHomicideShooting, 'p258', '
Leonard Hunt
2600 Oswego Ave.
Baltimore, MD 21215
male, 44 years old
Found on November 8, 2007
Victim died at scene
Cause: shooting
' +39.306427, -76.581308, iconHomicideShooting, 'p259', '
Carlos Smithson
2600 Grogan Ave.
Baltimore, MD 21213
black male, 22 years old
Found on November 11, 2007
Cause: shooting
Read the article
' +39.307586, -76.641318, iconHomicideShooting, 'p260', '
John Morris
700 Baker St.
Baltimore, MD 21217
male, 42 years old
Found on November 12, 2007
Cause: shooting
Read the article
' +39.293735, -76.649742, iconHomicideBluntForce, 'p261', '
Frederick Davis
500 Brice St.
Baltimore, MD 21223
male, 39 years old
Found on November 13, 2007
Cause: blunt force
' +39.328984, -76.564472, iconHomicideShooting, 'p262', '
Trent Earll
4400 Belair Road
Baltimore, MD 21206
male, 36 years old
Found on November 13, 2007
Cause: shooting
Read the article
' +39.371610, -76.566968, iconHomicideShooting, 'p263', '
Kendrick Bowman
7100 McClean Blvd.
Baltimore, MD 21234
black male, 17 years old
Found on November 15, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.345841, -76.665568, iconHomicideShooting, 'p264', '
Herbert Lemon
3000 Rosalind Ave.
Baltimore, MD 21215
black male, 31 years old
Found on November 16, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.309773, -76.703097, iconHomicideShooting, 'p265', '
Martay Powell
2100 Crimea Road
Baltimore, MD 21207
black male, 22 years old
Found on November 23, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.315904, -76.593124, iconHomicideUnknown, 'p266', '
Bryanna Harris
1700 E. 25th St.
Baltimore, MD 21213
black female, 2 years old
Found on November 23, 2007
Victim died at JHH
Cause: unknown
Read the article
' +39.287265, -76.633736, iconHomicideShooting, 'p267', '
Robert Gray
1000 Boyd St.
Baltimore, MD 21223
black male, 36 years old
Found on November 23, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.307629, -76.655817, iconHomicideShooting, 'p268', '
Michael Crowder
2400 Presbury St.
Baltimore, MD 21216
black male, 33 years old
Found on November 26, 2007
Victim died at Shock Trauma
Cause: shooting
' +39.348593, -76.688842, iconHomicideBluntForce, 'p269', '
Quentin Reddicks-Flowers
4000 W. Rogers Ave.
Baltimore, MD 21215
black male, 31 years old
Found on November 28, 2007
Cause: blunt force
' +39.343826, -76.679404, iconHomicideStabbing, 'p270', '
Tywonde Jones
5000 Cordelia Ave.
Baltimore, MD 21215
black male, 13 years old
Found on November 29, 2007
Cause: stabbing
Read the article
' +39.310317, -76.707511, iconHomicideShooting, 'p271', '
Eugenio Harrison
N. Forest Park Ave. and Windsor Mill Road
Baltimore, MD 21207
black male, 19 years old
Found on December 2, 2007
Victim died at Sinai
Cause: shooting
' +39.309263, -76.663932, iconHomicideBluntForce, 'p272', '
Lonnie Foote
2800 W. North Ave.
Baltimore, MD 21216
black male, 58 years old
Found on December 3, 2007
Victim died at St. Agnes
Cause: blunt force
' +39.278020, -76.542939, iconHomicideShooting, 'p273', '
Artavius Tubman
6100 Boston St.
Baltimore, MD 21224
black male, 24 years old
Found on December 10, 2007
Victim died at Bayview
Cause: shooting
Read the article
' +39.320131, -76.681762, iconHomicideShooting, 'p274', '
Richard Lawson
2900 Chelsea Terrace
Baltimore, MD 21216
black male, 24 years old
Found on December 14, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.309822, -76.616473, iconHomicideShooting, 'p275', '
Jamal Rowlett
1800 N. Charles St.
Baltimore, MD 21201
black male, 20 years old
Found on December 16, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.310071, -76.671049, iconHomicideAsphyxiation, 'p276', '
Lezli Williams
3200 Walbrook Ave.
Baltimore, MD 21216
black female, 22 years old
Found on December 18, 2007
Victim died at scene
Cause: asphyxiation
Read the article
' +39.261234, -76.648137, iconHomicideShooting, 'p277', '
Michael Weathers
2300 Atlantic Ave.
Baltimore, MD 21230
black male
Found on December 20, 2007
Victim died at scene
Cause: shooting
Read the article
' +39.310254, -76.638359, iconHomicideShooting, 'p278', '
Jason Allen
1300 North Ave.
Baltimore, MD 21217
black male, 25 years old
Found on December 21, 2007
Cause: shooting
' +39.315715, -76.649357, iconHomicideShooting, 'p279', '
Jim Harper
2400 Reisterstown Road
Baltimore, MD 21217
male, 36 years old
Found on December 24, 2007
Victim died at Sinai
Cause: shooting
Read the article
' +39.354681, -76.707924, iconHomicideShooting, 'p280', '
Toby MacCombie
6600 Vincent Lane
Baltimore, MD 21215
black male, 30 years old
Found on December 24, 2007
Cause: shooting
Read the article
' +39.309494, -76.597588, iconHomicideShooting, 'p281', '
Kevin Bacon
1700 N. Dallas St.
Baltimore, MD 21213
black male, 46 years old
Found on December 26, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.300384, -76.597730, iconHomicideShooting, 'p282', '
Todd Dargan
900 N. Caroline St.
Baltimore, MD 21205
black male, 25 years old
Found on December 28, 2007
Victim died at JHH
Cause: shooting
Read the article
' +39.29972400000, -76.67071400000, icon_homicide_shooting, 'p507', '
Petro Taylor
1200 N. Franklintown Road
Baltimore, MD 21216
Race: Black
Gender: male
Age: 20 years old
Found on December 30, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31537100000, -76.63452600000, icon_homicide_shooting, 'p506', '
Antonio Coby
800 Chauncey Ave.
Baltimore, MD 21227
Race: Unknown
Gender: male
Age: 28 years old
Found on December 29, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29472400000, -76.66153500000, icon_homicide_shooting, 'p505', '
Edgar Mazyck
2700 Edmondson Ave.
Baltimore, MD 21229
Race: Unknown
Gender: male
Age: 39 years old
Found on December 28, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31324200000, -76.59201400000, icon_homicide_shooting, 'p504', '
Lisa Bushrod
2000 N. Wolfe St.
Baltimore, MD 21213
Race: Unknown
Gender: female
Age: 42 years old
Found on December 26, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29521900000, -76.63233200000, icon_homicide_shooting, 'p503', '
David Woodward
900 Bennett Place
Baltimore, MD 21230
Race: Unknown
Gender: male
Age: 30 years old
Found on December 25, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28308800000, -76.57073400000, icon_homicide_shooting, 'p502', '
Alaina High
800 S. Bouldin st.
Baltimore, MD 21224
Race: Unknown
Gender: female
Age: 22 years old
Found on December 23, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30968000000, -76.59534100000, icon_homicide_shooting, 'p501', '
Ronald Hall
1700 Broadway
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 46 years old
Found on December 23, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.32333300000, -76.59903000000, icon_homicide_shooting, 'p500', '
Thaddeus McCauley
1400 Homestead St.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 19 years old
Found on December 19, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.34918300000, -76.67384000000, icon_homicide_shooting, 'p499', '
Gary Mann
5100 Palmer Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 24 years old
Found on December 16, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.34523400000, -76.68970000000, icon_homicide_shooting, 'p498', '
Warren Davis
5400 Fairlawn Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 41 years old
Found on December 15, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.30398800000, -76.57963500000, icon_homicide_shooting, 'p497', '
Oril Jackson
2700 E. Chase St
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 21 years old
Found on December 15, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.23045740000, -76.59774480000, icon_homicide_shooting, 'p496', '
Larry Gaither
1000 Jack Place
Baltimore, MD 21225
Race: Unknown
Gender: male
Age: 44 years old
Found on December 11, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29532040000, -76.57464600000, icon_homicide_shooting, 'p495', '
Brian Smith
3000 Puaski Highway
Baltimore, MD 21224
Race: Unknown
Gender: male
Age: 37 years old
Found on December 10, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.29720620000, -76.63037540000, icon_homicide_shooting, 'p494', '
Ronald Jackson
1100 Myrtle Ave.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 14 years old
Found on December 7, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.34672300000, -76.67503000000, icon_homicide_shooting, 'p493', '
Darrell Keith
5000 Denmore Ave
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 24 years old
Found on December 6, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.29746800000, -76.62018700000, icon_homicide_shooting, 'p492', '
Travis Makofski
700 N. Howard St.
Baltimore, MD 21201
Race: White
Gender: male
Age: 28 years old
Found on December 6, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31867670000, -76.59893340000, icon_homicide_shooting, 'p491', '
Michael Harris
2500 Garrett Ave.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 37 years old
Found on December 5, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32608700000, -76.65792400000, icon_homicide_shooting, 'p490', '
Leroy Boxdale
3400 Park Heights Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 19 years old
Found on December 2, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31117100000, -76.59059300000, icon_homicide_shooting, 'p488', '
Donell Williams
1800 N. Washington St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 19 years old
Found on December 1, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28957200000, -76.57039400000, icon_homicide_shooting, 'p489', '
Alton Alston
200 S. Clinton St.
Baltimore, MD 21224
Race: Unknown
Gender: male
Age: 18 years old
Found on December 1, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.33607300000, -76.68522300000, icon_homicide_shooting, 'p484', '
Darren Davis
4000 Oakford Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 26 years old
Found on November 30, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.33607300000, -76.68522300000, icon_homicide_shooting, 'p485', '
Troy Brown
4000 Oakford Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 45 years old
Found on November 30, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.33607300000, -76.68522300000, icon_homicide_shooting, 'p486', '
Perrish Parker
4000 Oakford Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 14 years old
Found on November 30, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.32974440000, -76.56737310000, icon_homicide_shooting, 'p487', '
Dawn William-Stewart
4000 Parkside Drive
Baltimore, MD 21206
Race: Unknown
Gender: female
Age: 41 years old
Found on November 30, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31821800000, -76.58768650000, icon_homicide_shooting, 'p483', '
Adrian Andrews
2800 St. Lo Drive
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 17 years old
Found on November 27, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.37061500000, -76.60095000000, icon_homicide_shooting, 'p482', '
Alexander Njuguna
1000 Woodson Road
Baltimore, MD 21212
Race: Black
Gender: male
Age: 29 years old
Found on November 26, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32386260000, -76.60879110000, icon_homicide_shooting, 'p481', '
Voncelle Blackwell
2900 Limond Place
Baltimore, MD 21218
Race: Black
Gender: male
Age: 26 years old
Found on November 25, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.31560600000, -76.61143900000, icon_homicide_shooting, 'p480', '
Frederick Ward
2300 Barclay St.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 24 years old
Found on November 24, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31169630000, -76.70116640000, icon_homicide_shooting, 'p479', '
Adama Diara
2200 Tucker Lane
Baltimore, MD 21207
Race: Unknown
Gender: male
Age: 22 years old
Found on November 23, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.27795380000, -76.61737770000, icon_homicide_shooting, 'p477', '
Angelo Ford
1000 Leadenhall St.
Baltimore, MD 21230
Race: Unknown
Gender: male
Age: 49 years old
Found on November 23, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31206700000, -76.60012800000, icon_homicide_shooting, 'p478', '
Richard Green
1300 W. North Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 39 years old
Found on November 23, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.35494790000, -76.71026790000, icon_homicide_shooting, 'p476', '
Isiah Benjamin
6600 Eberle Drive
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 39 years old
Found on November 22, 2008
Victim died at Sinai Hospital
Cause: Shooting
' +39.31188820000, -76.60011480000, icon_homicide_stabbing, 'p475', '
Veronica Williams
1300 E. North Ave.
Baltimore, MD 21202
Race: Black
Gender: female
Age: 29 years old
Found on November 21, 2008
Victim died at Johns Hopkins Hospital
Cause: Stabbing
Read the article
' +39.31481740000, -76.66444650000, icon_homicide_stabbing, 'p474', '
Markel Williams
2800 N. Dukeland St.
Baltimore, MD 21216
Race: Black
Gender: male
Age: 15 years old
Found on November 21, 2008
Victim died at Sinai Hospital
Cause: Stabbing
Read the article
' +39.31032570000, -76.66405570000, icon_homicide_shooting, 'p471', '
Charles Hoggins
2000 N. Dukeland St.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 45 years old
Found on November 18, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.23919680000, -76.60438280000, icon_homicide_shooting, 'p470', '
Steven Graham
3500 4th St.
Baltimore, MD 21225
Race: Unknown
Gender: male
Age: 14 years old
Found on November 18, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30124320000, -76.60280220000, icon_homicide_shooting, 'p469', '
Donte Graham
1100 Abbott Court
Baltimore, MD 21202
Race: Unknown
Gender: male
Age: 21 years old
Found on November 18, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28322500000, -76.63946800000, icon_homicide_bluntforce, 'p472', '
Lyle Dimeler
400 S. Calhoun St.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 53 years old
Found on November 18, 2008
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
Read the article
' +39.28181500000, -76.65127900000, icon_homicide_shooting, 'p468', '
Joseph Robinson
500 S. Smallwood St
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 30 years old
Found on November 17, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.34621400000, -76.67085500000, icon_homicide_shooting, 'p467', '
Charles Norman
4800 Palmer Ave
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 48 years old
Found on November 16, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.35376900000, -76.55508400000, icon_homicide_bluntforce, 'p466', '
Eunice Taylor
3115 Mary Ave.
Baltimore, MD 21214
Race: Black
Gender: female
Age: 69 years old
Found on November 12, 2008
Victim died at Unknown
Cause: Blunt Force
' +39.31467110000, -76.60198470000, icon_homicide_shooting, 'p465', '
Larry Franklin
2200 Robb St.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 22 years old
Found on November 12, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.31238500000, -76.63445300000, icon_homicide_shooting, 'p464', '
Gregory Hines
2200 Linden Ave.
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 30 years old
Found on November 10, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30335440000, -76.63620720000, icon_homicide_shooting, 'p462', '
Leroy Taylor
600 Sewell St.
Baltimore, MD 21206
Race: Unknown
Gender: male
Age: 45 years old
Found on November 7, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28858700000, -76.60968900000, icon_homicide_bluntforce, 'p463', '
Takira Johnson
100 Custom House Ave
Baltimore, MD 21202
Race: Black
Gender: female
Age: 27 years old
Found on November 7, 2008
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
Read the article
' +39.29234240000, -76.63696630000, icon_homicide_shooting, 'p461', '
Ernest McFadden
1200 W. Saratoga St
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 39 years old
Found on November 3, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30175480000, -76.59781840000, icon_homicide_shooting, 'p460', '
Anthony Rainey
1000 N. Caroline St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 25 years old
Found on November 2, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.30883430000, -76.64722470000, icon_homicide_shooting, 'p459', '
Mark Henson
1800 McKean Ave
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 18 years old
Found on November 1, 2008
Victim died at Scene
Cause: Shooting
' +39.35377800000, -76.57093800000, icon_homicide_shooting, 'p523', '
Harley Johnson
2200 Echodale Ave
Baltimore, MD 21214
Race: Black
Gender: male
Age: 27 years old
Found on October 31, 2008
Victim died at Scene
Cause: Shooting
' +39.33317000000, -76.60704100000, icon_homicide_shooting, 'p458', '
Mark Vines
600 McKewin Ave.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 21 years old
Found on October 29, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.33896810000, -76.65789910000, icon_homicide_shooting, 'p457', '
Jason Betts
2400 Loyola Southway
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 25 years old
Found on October 25, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31101300000, -76.59431800000, icon_homicide_shooting, 'p456', '
Derrick Phillips
1800 N. Regester St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 42 years old
Found on October 25, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.33578500000, -76.66417100000, icon_homicide_shooting, 'p455', '
Gregory Boston
2700 Oswego Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 48 years old
Found on October 23, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.32098800000, -76.56505900000, icon_homicide_shooting, 'p454', '
Marshall Nelson
3500 Pelham Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 23 years old
Found on October 22, 2008
Victim died at Scene
Cause: Shooting
' +39.32068100000, -76.60178700000, icon_homicide_shooting, 'p453', '
Dontay Monroe
1400 Exeter Hall Ave.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 18 years old
Found on October 22, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.29850600000, -76.57096100000, icon_homicide_shooting, 'p452', '
Shawn Crosby
600 N. Clinton St.
Baltimore, MD 21205
Race: Unknown
Gender: male
Age: 17 years old
Found on October 21, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.29961320000, -76.62561840000, icon_homicide_shooting, 'p450', '
Carlton Bethea
500 W. Preston St.
Baltimore, MD 21201
Race: Unknown
Gender: male
Age: 29 years old
Found on October 20, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.36652710000, -76.54906900000, icon_homicide_stabbing, 'p524', '
William Hightower
3000 Woodhome Ave
Baltimore, MD 21234
Race: Black
Gender: male
Age: 48 years old
Found on October 15, 2008
Victim died at Unknown
Cause: Stabbing
' +39.28460700000, -76.65146900000, icon_homicide_shooting, 'p449', '
Delvon Butts
200 S. Smallwood St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 15 years old
Found on October 14, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30916170000, -76.66927700000, icon_homicide_shooting, 'p448', '
Rubin Nelson
1900 N. Rosedale Ave.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 26 years old
Found on October 14, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30116600000, -76.63202200000, icon_homicide_shooting, 'p446', '
Howard Grant
1400 Pennsylvania Ave
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 18 years old
Found on October 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30116600000, -76.63202200000, icon_homicide_shooting, 'p447', '
Justin Berry
1400 Pennsylvania Ave
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 19 years old
Found on October 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28729160000, -76.68790040000, icon_homicide_shooting, 'p445', '
Darius Burton
4300 Davis Ave
Baltimore, MD 21229
Race: Unknown
Gender: male
Age: 18 years old
Found on October 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28419600000, -76.64517400000, icon_homicide_shooting, 'p443', '
Clayton Oxendine
300 S. Fulton Ave.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 24 years old
Found on October 6, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28055000000, -76.65414900000, icon_homicide_shooting, 'p444', '
Darrell Gulliver
500 S. Catherine St.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 38 years old
Found on October 6, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.34512600000, -76.66850300000, icon_homicide_shooting, 'p442', '
Craig Colvin
3100 Virginia Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 23 years old
Found on October 6, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.31343900000, -76.63894900000, icon_homicide_shooting, 'p526', '
Cyprian Jackson
2500 Madison Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 28 years old
Found on October 6, 2008
Victim died at Unknown
Cause: Shooting
' +39.31944580000, -76.61550850000, icon_homicide_asphyxiation, 'p541', '
Baby Boy Blevins
2600 St Paul St
Baltimore, MD 21218
Race: White
Gender: male
Age: 1 year old
Found on October 4, 2008
Victim died at Scene
Cause: Asphyxiation
' +39.29135170000, -76.64538430000, icon_homicide_shooting, 'p441', '
William Haskins
1800 Penrose Ave.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 32 years old
Found on October 4, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30904760000, -76.64304360000, icon_homicide_shooting, 'p440', '
Modesto Smith
700 Allegany Place
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 21 years old
Found on October 2, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32027650000, -76.57525400000, icon_homicide_shooting, 'p439', '
Michael Wilson
3100 Belair Road
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 24 years old
Found on September 30, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28513300000, -76.61363800000, icon_homicide_stabbing, 'p438', '
Helen Reightler
300 Light St.
Baltimore, MD 21202
Race: White
Gender: female
Age: 43 years old
Found on September 29, 2008
Victim died at Sinai Hospital
Cause: Stabbing
Read the article
' +39.30968000000, -76.59534100000, icon_homicide_shooting, 'p538', '
Kevin Rouzer
1700 N. Broadway
Baltimore, MD 21213
Race: Black
Gender: male
Age: 29 years old
Found on September 28, 2008
Victim died at Unknown
Cause: Shooting
' +39.34721130000, -76.68308450000, icon_homicide_shooting, 'p436', '
Jarrell Laws
5300 Cordelia Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 17 years old
Found on September 26, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31740080000, -76.59810650000, icon_homicide_shooting, 'p435', '
Derrick Reed
2500 Aisquith St.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 15 years old
Found on September 24, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.34084100000, -76.59117200000, icon_homicide_shooting, 'p434', '
Kenneth Harris
1500 Havenwood Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 45 years old
Found on September 20, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.29119770000, -76.62813830000, icon_homicide_shooting, 'p433', '
Barry Graham
700 W. Lexington St.
Baltimore, MD 21201
Race: Black
Gender: male
Age: 24 years old
Found on September 14, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28467200000, -76.58666900000, icon_homicide_shooting, 'p432', '
Lloyd Melton
2100 Boston St.
Baltimore, MD 21231
Race: Black
Gender: male
Age: 21 years old
Found on September 14, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.36302300000, -76.58208300000, icon_homicide_shooting, 'p431', '
Darien Sawyer
1600 Wadsworth Way
Baltimore, MD 21239
Race: Black
Gender: male
Age: 29 years old
Found on September 11, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.30023100000, -76.58265300000, icon_homicide_shooting, 'p428', '
Demarco Brown
800 N. Milton Ave.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 25 years old
Found on September 9, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.31294000000, -76.60862100000, icon_homicide_shooting, 'p430', '
Robert Wilson
2000 Boone St.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 23 years old
Found on September 9, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28469100000, -76.64938400000, icon_homicide_shooting, 'p539', '
Andre Harris
200 Harmison St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 23 years old
Found on September 6, 2008
Victim died at Unknown
Cause: Shooting
' +39.30094100000, -76.58757600000, icon_homicide_shooting, 'p427', '
Tyrone Bowie
2100 Ashland Ave.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 26 years old
Found on September 4, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28003580000, -76.66654860000, icon_homicide_shooting, 'p426', '
Reginald Carter
400 S. Longwood St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on August 31, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28335490000, -76.68674190000, icon_homicide_shooting, 'p537', '
Durrell Aldridge
200 S Woodington St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 24 years old
Found on August 31, 2008
Victim died at Unknown
Cause: Shooting
' +39.28335490000, -76.68674190000, icon_homicide_shooting, 'p425', '
Shirley Barnes
200 S. Woodington Road
Baltimore, MD 21229
Race: Black
Gender: female
Age: 44 years old
Found on August 31, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30282100000, -76.60497800000, icon_homicide_shooting, 'p424', '
Levon McCray
900 Valley St.
Baltimore, MD 21202
Race: Black
Gender: male
Age: 23 years old
Found on August 30, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30333150000, -76.64176110000, icon_homicide_shooting, 'p422', '
Clarence Hamilton
1300 N. Stricker St.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 22 years old
Found on August 27, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31141800000, -76.58402900000, icon_homicide_bluntforce, 'p423', '
Floyd Jones
1800 N. Port St.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 56 years old
Found on August 27, 2008
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
Read the article
' +39.34250000000, -76.60477600000, icon_homicide_shooting, 'p421', '
Wilbert Flowers
800 E. 43rd St.
Baltimore, MD 21212
Race: Black
Gender: male
Age: 31 years old
Found on August 25, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.31000130000, -76.58437790000, icon_homicide_shooting, 'p420', '
Tavon Garrison
2400 E. Lanvale St.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 28 years old
Found on August 22, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29578200000, -76.63434500000, icon_homicide_shooting, 'p419', '
Eric Brown
1000 Edmondson Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on August 21, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32040300000, -76.67753500000, icon_homicide_shooting, 'p417', '
John Person
2900 Garrison Blvd.
Baltimore, MD 21216
Race: Black
Gender: male
Age: 17 years old
Found on August 17, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.33075800000, -76.58087800000, icon_homicide_asphyxiation, 'p418', '
Kiuna Jackson
3600 Harford Road
Baltimore, MD 21214
Race: Black
Gender: female
Age: 19 years old
Found on August 15, 2008
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.34908200000, -76.66572300000, icon_homicide_shooting, 'p536', '
Brandon Robinson
2800 Oakley Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 23 years old
Found on August 14, 2008
Victim died at Unknown
Cause: Shooting
' +39.25111400000, -76.64382500000, icon_homicide_shooting, 'p414', '
Vernon Paige
2100 E. Patapsco St.
Baltimore, MD 21230
Race: Black
Gender: male
Age: 21 years old
Found on August 13, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29639400000, -76.63450200000, icon_homicide_shooting, 'p413', '
Michael Sewell
1000 Brantley St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 29 years old
Found on August 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33141100000, -76.68719100000, icon_homicide_shooting, 'p412', '
Michael Little
4100 Barrington Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 28 years old
Found on August 12, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31008600000, -76.58532000000, icon_homicide_shooting, 'p411', '
George Blaine
1700 N. Bradford St.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 30 years old
Found on August 9, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29502200000, -76.57089400000, icon_homicide_shooting, 'p416', '
Rudy Guzman
3300 E. Fayette St.
Baltimore, MD 21224
Race: Black
Gender: male
Age: 22 years old
Found on August 8, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.25076780000, -76.63242240000, icon_homicide_shooting, 'p415', '
Shawn Weaver
1000 Shellbanks Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 38 years old
Found on August 8, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31723300000, -76.64690100000, icon_homicide_unknown, 'p535', '
Javon Thompson
3200 Auchentoroly Terrace
Baltimore, MD 21217
Race: Black
Gender: male
Age: 1 year old
Found on August 8, 2008
Victim died at Unknown
Cause: Unknown
' +39.37170990000, -76.60706170000, icon_homicide_shooting, 'p410', '
Matthew Scarborough
500 Castle Drive
Baltimore, MD 21212
Race: White
Gender: male
Age: 16 years old
Found on August 7, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.30216320000, -76.66568620000, icon_homicide_shooting, 'p409', '
Robert Buckner
1300 Bloomingdale Road
Baltimore, MD 21216
Race: Black
Gender: male
Age: 19 years old
Found on August 6, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28961030000, -76.64389960000, icon_homicide_shooting, 'p408', '
Jeffrey Alston
1700 W. Fayette St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 23 years old
Found on August 5, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.34393150000, -76.65822500000, icon_homicide_shooting, 'p534', '
Ralph Hall
4700 Greenspring Ave
Baltimore, MD 21209
Race: Black
Gender: male
Age: 37 years old
Found on July 30, 2008
Victim died at Unknown
Cause: Shooting
' +39.29497990000, -76.60174790000, icon_homicide_shooting, 'p407', '
Troy Wilson
1200 Orleans St.
Baltimore, MD 21202
Race: Black
Gender: male
Age: 17 years old
Found on July 29, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.26464990000, -76.63369520000, icon_homicide_shooting, 'p406', '
Bernard Soloman
2700 Manokin St.
Baltimore, MD 21230
Race: Black
Gender: male
Age: 23 years old
Found on July 29, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31263100000, -76.59197900000, icon_homicide_shooting, 'p405', '
Brandon Eveline
1900 N. Wolfe St.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on July 28, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.35681800000, -76.60436800000, icon_homicide_shooting, 'p404', '
Tyrone McCray
5500 Ivanhoe Ave.
Baltimore, MD 21212
Race: Black
Gender: male
Age: 28 years old
Found on July 27, 2008
Victim died at Scene
Cause: Shooting
' +39.34271800000, -76.69478400000, icon_homicide_shooting, 'p402', '
Quinton Hogan
5800 N. Rogers Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 23 years old
Found on July 25, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.34271800000, -76.69478400000, icon_homicide_shooting, 'p403', '
Donell Rogers
5800 N. Rogers Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on July 25, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.33204000000, -76.66105600000, icon_homicide_shooting, 'p401', '
Justin Harrison
3800 Park Heights Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 27 years old
Found on July 21, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28564090000, -76.63658520000, icon_homicide_stabbing, 'p399', '
Elizabeth Queensbury
1200 W. Pratt St.
Baltimore, MD 21223
Race: Black
Gender: female
Age: 51 years old
Found on July 21, 2008
Victim died at Scene
Cause: Stabbing
Read the article
' +39.28877500000, -76.67263800000, icon_homicide_shooting, 'p398', '
Gary Cooper
200 N. Hilton St.
Baltimore, MD 21229
Race: Black
Gender: male
Age: 29 years old
Found on July 21, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.37213500000, -76.59359700000, icon_homicide_stabbing, 'p400', '
Ruby Mosby
1214 Limit Ave.
Baltimore, MD 21239
Race: Black
Gender: female
Age: 23 years old
Found on July 20, 2008
Victim died at Unknown
Cause: Stabbing
Read the article
' +39.31072100000, -76.63300200000, icon_homicide_shooting, 'p396', '
Omar Phillips
900 W. North Ave.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 35 years old
Found on July 19, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.34949100000, -76.66972000000, icon_homicide_shooting, 'p397', '
Kevin McKnight
5000 Pembridge Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 45 years old
Found on July 18, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.32605000000, -76.67683900000, icon_homicide_stabbing, 'p391', '
Calvin Ray
3700 Liberty Heights Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 17 years old
Found on July 13, 2008
Victim died at Unknown
Cause: Stabbing
Read the article
' +39.31662700000, -76.57837600000, icon_homicide_shooting, 'p390', '
Tony Smith
3200 Lyndale Ave.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 26 years old
Found on July 13, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.30843300000, -76.66117300000, icon_homicide_shooting, 'p392', '
Bryant Wallace
1800 Braddish Ave.
Baltimore, MD 21216
Race: Black
Gender: male
Age: 21 years old
Found on July 11, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.29060200000, -76.69208000000, icon_homicide_unknown, 'p393', '
Brenda Hatfield
4500 Old Frederick Road
Baltimore, MD 21229
Race: Black
Gender: female
Age: 45 years old
Found on July 7, 2008
Victim died at Scene
Cause: Unknown
' +39.36401200000, -76.59610600000, icon_homicide_bluntforce, 'p394', '
Patrice Marable
1100 Gleneagle Road
Baltimore, MD 21239
Race: Black
Gender: female
Age: 28 years old
Found on July 6, 2008
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
Read the article
' +39.30607800000, -76.58088400000, icon_homicide_shooting, 'p389', '
Kenneth Baker
2600 E.Preston St.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 26 years old
Found on July 6, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.29674300000, -76.58636300000, icon_homicide_shooting, 'p540', '
Valando Goodman
2200 Jeffereson St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 32 years old
Found on June 29, 2008
Victim died at Unknown
Cause: Shooting
' +39.32948300000, -76.68233560000, icon_homicide_asphyxiation, 'p386', '
Nicole Sesker
3500 Garrison Blvd.
Baltimore, MD 21215
Race: Black
Gender: female
Age: 39 years old
Found on June 27, 2008
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.29223900000, -76.58026900000, icon_homicide_bluntforce, 'p532', '
Chicas Santiago
2600 E Baltimore St
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 38 years old
Found on June 26, 2008
Victim died at Unknown
Cause: Blunt Force
' +39.32211900000, -76.59289200000, icon_homicide_shooting, 'p384', '
Philip Gaddy
1700 Abbotston St.
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 41 years old
Found on June 24, 2008
Victim died at Good Samaritan Hospital
Cause: Shooting
Read the article
' +39.30824500000, -76.63638390000, icon_homicide_shooting, 'p381', '
Romie Ziegler
500 Bloom St.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 21 years old
Found on June 22, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28441690000, -76.64141670000, icon_homicide_shooting, 'p525', '
Eddie Van Kirk
300 S. Parrish St
Baltimore, MD 21223
Race: White
Gender: male
Age: 45 years old
Found on June 22, 2008
Victim died at Unknown
Cause: Shooting
' +39.32850500000, -76.66719300000, icon_homicide_shooting, 'p531', '
Marcus Caldwell
3200 Sequoia Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 23 years old
Found on June 22, 2008
Victim died at Unknown
Cause: Shooting
' +39.27984400000, -76.63215000000, icon_homicide_asphyxiation, 'p385', '
Amanda Bishop
1300 Nanticoke St.
Baltimore, MD 21230
Race: White
Gender: female
Age: 22 years old
Found on June 22, 2008
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.28001460000, -76.61120740000, icon_homicide_shooting, 'p383', '
Stephan Waters
200 E. Montgomery St.
Baltimore, MD 21230
Race: Unknown
Gender: male
Age: 24 years old
Found on June 22, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.32850500000, -76.66719300000, icon_homicide_shooting, 'p380', '
Marcus Caldwell
3200 Sequoia Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 23 years old
Found on June 22, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28068710000, -76.60988090000, icon_homicide_shooting, 'p382', '
Keyva Bluitt
800 Battery Ave.
Baltimore, MD 21230
Race: Black
Gender: male
Age: 35 years old
Found on June 20, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.32066000000, -76.62297100000, icon_homicide_shooting, 'p379', '
Donta Gregory
2800 Huntingdon Ave.
Baltimore, MD 21211
Race: Unknown
Gender: male
Age: 32 years old
Found on June 19, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.30824500000, -76.63638390000, icon_homicide_shooting, 'p378', '
Brian Goodwyn
500 Bloom St.
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 21 years old
Found on June 19, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31215600000, -76.64707400000, icon_homicide_shooting, 'p377', '
Ronnie Ware
1800 Clifton Ave.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 18 years old
Found on June 17, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.22952120000, -76.59786050000, icon_homicide_shooting, 'p376', '
Sandy Howard
4100 Mariban Court
Baltimore, MD 21225
Race: Unknown
Gender: female
Age: 23 years old
Found on June 17, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.35345500000, -76.56249500000, icon_homicide_stabbing, 'p373', '
Samuel Bobrow
2900 Hamilton Ave.
Baltimore, MD 21214
Race: Unknown
Gender: male
Found on June 14, 2008
Victim died at Unknown
Cause: Stabbing
Read the article
' +39.32818100000, -76.56495600000, icon_homicide_shooting, 'p370', '
Bryant Price
4200 Shamrock Ave.
Baltimore, MD 21206
Race: Unknown
Gender: male
Age: 23 years old
Found on June 14, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.32818100000, -76.56495600000, icon_homicide_shooting, 'p371', '
Justin Amis
4200 Shamrock Ave.
Baltimore, MD 21206
Race: Unknown
Gender: male
Age: 22 years old
Found on June 14, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.30535200000, -76.66950400000, icon_homicide_shooting, 'p372', '
Andrew Wallace
3100 Brighton St.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 30 years old
Found on June 13, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30476100000, -76.65588200000, icon_homicide_shooting, 'p368', '
Djuan Anderson
1500 Moreland Ave.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 17 years old
Found on June 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30476100000, -76.65588200000, icon_homicide_shooting, 'p369', '
Darrius Harrison
1500 Moreland Ave.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 17 years old
Found on June 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.32825700000, -76.63841300000, icon_homicide_asphyxiation, 'p367', '
Elizabeth Garrett
3500 Buena Vista Ave.
Baltimore, MD 21211
Race: White
Gender: female
Age: 25 years old
Found on June 11, 2008
Victim died at Scene
Cause: Asphyxiation
' +39.32001030000, -76.69238870000, icon_homicide_shooting, 'p366', '
Kenneth Jones
4500 Bonner Road
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 26 years old
Found on June 9, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.34644600000, -76.68920000000, icon_homicide_shooting, 'p365', '
Tyrone Wells
4100 Rockfield Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 33 years old
Found on June 3, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31136500000, -76.66966100000, icon_homicide_shooting, 'p364', '
Derrell Smith
3100 Clifton Ave.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 22 years old
Found on June 2, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.24802150000, -76.62443230000, icon_homicide_shooting, 'p533', '
Ralph McKnight
800 Bridgeview Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 50 years old
Found on June 1, 2008
Victim died at Unknown
Cause: Shooting
' +39.31014800000, -76.58394600000, icon_homicide_asphyxiation, 'p362', '
Josephine House
1700 N. Port St.
Baltimore, MD 21213
Race: Unknown
Gender: female
Age: 63 years old
Found on May 28, 2008
Victim died at Unknown
Cause: Asphyxiation
Read the article
' +39.31189000000, -76.60394400000, icon_homicide_shooting, 'p361', '
Cedric Yarborough
1100 E. North Ave.
Baltimore, MD 21202
Race: Unknown
Gender: male
Age: 19 years old
Found on May 25, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31619200000, -76.59527800000, icon_homicide_shooting, 'p360', '
Ronald Cromwell Jr.
1600 Normal Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 22 years old
Found on May 24, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28906000000, -76.59401800000, icon_homicide_shooting, 'p359', '
Carlos Cervantes
200 S. Broadway
Baltimore, MD 21231
Race: Unknown
Gender: male
Age: 37 years old
Found on May 19, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.23435840000, -76.59977140000, icon_homicide_shooting, 'p357', '
Valerie Barnes
800 Pontiac Ave.
Baltimore, MD 21225
Race: Unknown
Gender: female
Age: 18 years old
Found on May 18, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28749000000, -76.64408900000, icon_homicide_shooting, 'p358', '
Jeffrey Gause
1700 Hollins St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 42 years old
Found on May 18, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29790400000, -76.68671000000, icon_homicide_shooting, 'p356', '
Michael Morris
4200 Colborne Rd.
Baltimore, MD 21229
Race: Black
Gender: male
Age: 46 years old
Found on May 16, 2008
Victim died at Unknown
Cause: Shooting
' +39.30740280000, -76.64482450000, icon_homicide_shooting, 'p354', '
Marcellus Hall
1600 N. Mount St.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on May 15, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31272900000, -76.58588000000, icon_homicide_shooting, 'p355', '
Tony Allen
2300 E. North Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 53 years old
Found on May 15, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.31272900000, -76.58588000000, icon_homicide_shooting, 'p363', '
Omar Spriggs
2300 E. North Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 27 years old
Found on May 15, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28747870000, -76.59652950000, icon_homicide_shooting, 'p353', '
Marvin Lucas
300 S. Dallas St.
Baltimore, MD 21231
Race: Unknown
Gender: male
Found on May 14, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28747100000, -76.62621900000, icon_homicide_stabbing, 'p352', '
Timothy Swann
700 W. Lombard St.
Baltimore, MD 21201
Race: Black
Gender: male
Age: 27 years old
Found on May 11, 2008
Victim died at University of Maryland Medical Center
Cause: Stabbing
Read the article
' +39.32273650000, -76.58868660000, icon_homicide_shooting, 'p351', '
David Henderson
2800 Hillen Road
Baltimore, MD 21218
Race: Unknown
Gender: male
Age: 18 years old
Found on May 9, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28238500000, -76.63540200000, icon_homicide_shooting, 'p350', '
Robert Johnson
1200 James St.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 39 years old
Found on May 7, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30742800000, -76.66616100000, icon_homicide_shooting, 'p349', '
Kenneth Carter
2900 Presbury St.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 17 years old
Found on May 6, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30706000000, -76.58266500000, icon_homicide_shooting, 'p347', '
Paris Richardson
2500 E. Hoffman St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 21 years old
Found on May 5, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.34474820000, -76.68195560000, icon_homicide_bluntforce, 'p348', '
Ellsworth Monroe
3900 W. Belvedere Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 73 years old
Found on May 4, 2008
Victim died at Sinai Hospital
Cause: Blunt Force
Read the article
' +39.29559600000, -76.58748000000, icon_homicide_shooting, 'p345', '
Tyrone Freeman
2100 Orleans St.
Baltimore, MD 21231
Race: Unknown
Gender: male
Found on May 4, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32083570000, -76.57458390000, icon_homicide_shooting, 'p346', '
Sean Henderson
3200 Belair Road
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 35 years old
Found on May 4, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.27911570000, -76.65922560000, icon_homicide_shooting, 'p344', '
Dawn Shipley
500 S. Brunswick St.
Baltimore, MD 21223
Race: Unknown
Gender: female
Age: 29 years old
Found on May 3, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.34589300000, -76.68856400000, icon_homicide_shooting, 'p343', '
Michael Wilson
4100 Newbern Ave.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 23 years old
Found on May 1, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.29429500000, -76.64150200000, icon_homicide_shooting, 'p341', '
Michael Ellerby
500 N. Stricker St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 24 years old
Found on April 21, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.32434500000, -76.62302650000, icon_homicide_stabbing, 'p340', '
Nancy Schmidt
200 W. 31st St.
Baltimore, MD 21211
Race: Unknown
Gender: female
Age: 74 years old
Found on April 21, 2008
Victim died at Union Memorial Hospital
Cause: Stabbing
Read the article
' +39.24044050000, -76.60017910000, icon_homicide_shooting, 'p339', '
Stanley Johnson
3400 Sixth St.
Baltimore, MD 21225
Race: Unknown
Gender: male
Age: 25 years old
Found on April 20, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29850600000, -76.57096100000, icon_homicide_bluntforce, 'p338', '
600 N. Clinton St.
Baltimore, MD 21205
Race: Unknown
Gender: male
Found on April 18, 2008
Victim died at Scene
Cause: Blunt Force
Read the article
' +39.32040300000, -76.67753500000, icon_homicide_shooting, 'p337', '
Tavon Smith
2900 Garrison Blvd.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 27 years old
Found on April 16, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31291600000, -76.58625300000, icon_homicide_shooting, 'p336', '
Shawndreta Griffin
1900 N. Patterson Park Ave.
Baltimore, MD 21213
Race: Unknown
Gender: female
Age: 14 years old
Found on April 14, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29850600000, -76.57096100000, icon_homicide_stabbing, 'p530', '
James Daniels
600 N Clinton St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 51 years old
Found on April 13, 2008
Victim died at Unknown
Cause: Stabbing
' +39.29084500000, -76.64412600000, icon_homicide_shooting, 'p335', '
Anthony Izzard
1700 W. Lexington St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 25 years old
Found on April 12, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28224880000, -76.64066430000, icon_homicide_shooting, 'p333', '
Gerrard Meginson
1500 Cole St.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 20 years old
Found on April 3, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29574820000, -76.66497650000, icon_homicide_shooting, 'p332', '
Darius Bunch
800 N. Franklintown Road
Baltimore, MD 21216
Race: Unknown
Gender: male
Found on April 1, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30700800000, -76.58405800000, icon_homicide_shooting, 'p331', '
Lamar Skinner
2400 E. Hoffman St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 20 years old
Found on March 31, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.28693400000, -76.62101400000, icon_homicide_unknown, 'p328', '
Anthony Castillo
110 S. Eutaw St.
Baltimore, MD 21201
Race: Unknown
Gender: male
Age: 6 years old
Found on March 30, 2008
Victim died at Scene
Cause: Unknown
Read the article
' +39.28736460000, -76.62080720000, icon_homicide_unknown, 'p329', '
Austin Castillo
111 S. Eutaw St.
Baltimore, MD 21201
Race: Unknown
Gender: male
Age: 4 years old
Found on March 30, 2008
Victim died at Scene
Cause: Unknown
Read the article
' +39.28692630000, -76.62078240000, icon_homicide_unknown, 'p330', '
Athena Castillo
112 S. Eutaw St.
Baltimore, MD 21201
Race: Unknown
Gender: female
Age: 2 years old
Found on March 30, 2008
Victim died at Scene
Cause: Unknown
Read the article
' +39.34846300000, -76.68595800000, icon_homicide_shooting, 'p327', '
Javon King
5400 Nelson Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 19 years old
Found on March 30, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.30267900000, -76.59714910000, icon_homicide_stabbing, 'p326', '
Ronald Joyner
1000 Billie Holiday Court
Baltimore, MD 21205
Race: Black
Gender: male
Age: 27 years old
Found on March 30, 2008
Victim died at Johns Hopkins Hospital
Cause: Stabbing
Read the article
' +39.28618540000, -76.64593190000, icon_homicide_shooting, 'p325', '
Tyrone Bahia
100 Addison St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 19 years old
Found on March 27, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28832500000, -76.57258700000, icon_homicide_bluntforce, 'p529', '
Zach Sowers
300 S. Robinson St
Baltimore, MD 21224
Race: White
Gender: male
Age: 28 years old
Found on March 26, 2008
Victim died at Johns Hopkins Bayview Medical Center
Cause: Blunt Force
' +39.28332990000, -76.64067120000, icon_homicide_shooting, 'p323', '
Robert Long
400 S. Stricker St.
Baltimore, MD 21223
Race: Unknown
Gender: male
Age: 36 years old
Found on March 24, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.27311600000, -76.67422900000, icon_homicide_shooting, 'p322', '
Jeffrey Butler
3400 Wilkens Ave.
Baltimore, MD 21229
Race: Black
Gender: male
Age: 18 years old
Found on March 23, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31552000000, -76.56664300000, icon_homicide_shooting, 'p321', '
Davide Rankin
3700 Ravenwood Ave.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 21 years old
Found on March 23, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29208800000, -76.62131600000, icon_homicide_shooting, 'p429', '
Dominic Faw
200 N. Eutaw St.
Baltimore, MD 21201
Race: Black
Gender: male
Age: 29 years old
Found on March 22, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30698200000, -76.67913290000, icon_homicide_asphyxiation, 'p334', '
Yolanda Brown
3600 Winterbourne Road
Baltimore, MD 21216
Race: Unknown
Gender: female
Age: 36 years old
Found on March 20, 2008
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.32040300000, -76.67753500000, icon_homicide_shooting, 'p320', '
Andre Jones
2900 Garrison Blvd.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 18 years old
Found on March 15, 2008
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.30916170000, -76.66927700000, icon_homicide_shooting, 'p319', '
Jamal Harrison
1900 N. Rosedale St.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 22 years old
Found on March 14, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29505500000, -76.62146100000, icon_homicide_unknown, 'p528', '
Montford April
400 W Franklin St
Baltimore, MD 21201
Race: Black
Gender: female
Age: 41 years old
Found on March 14, 2008
Victim died at Unknown
Cause: Unknown
' +39.24700120000, -76.62872720000, icon_homicide_shooting, 'p318', '
Lemell Barnes
2800 Spelman Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 22 years old
Found on March 13, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.34171100000, -76.65985300000, icon_homicide_shooting, 'p317', '
Tavon Burks
2500 Edgecombe Circle N.
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 16 years old
Found on March 11, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32406200000, -76.59054200000, icon_homicide_shooting, 'p316', '
Marcus Hughes
1800 E. 28th St.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 36 years old
Found on March 10, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.28412000000, -76.64691000000, icon_homicide_asphyxiation, 'p374', '
Baby Boy Blackwell
300 S. Monroe St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 1 year old
Found on March 9, 2008
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.29582500000, -76.68427000000, icon_homicide_shooting, 'p315', '
Levette Johnson
700 Wildwood Parkway
Baltimore, MD 21229
Race: Black
Gender: male
Age: 35 years old
Found on March 9, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28536430000, -76.69660470000, icon_homicide_shooting, 'p314', '
Latasha Harris
200 Atholgate Lane
Baltimore, MD 21229
Race: Unknown
Gender: female
Age: 30 years old
Found on March 7, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.31669020000, -76.63049020000, icon_homicide_stabbing, 'p313', '
Dalion Stanley
700 Druid Park Lake Drive
Baltimore, MD 21217
Race: Black
Gender: male
Age: 45 years old
Found on March 4, 2008
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
Read the article
' +39.29832600000, -76.66300200000, icon_homicide_shooting, 'p312', '
D'Andre Jackson
2800 W. Lafayette Ave.
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 35 years old
Found on March 3, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.34672300000, -76.67503000000, icon_homicide_shooting, 'p311', '
Anthony Underwood
5000 Denmore Ave.
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on March 1, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30216320000, -76.66568620000, icon_homicide_shooting, 'p310', '
Bernard Wallace
1300 Bloomingdale Road
Baltimore, MD 21216
Race: Black
Gender: male
Age: 44 years old
Found on February 29, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.30921900000, -76.62311600000, icon_homicide_shooting, 'p308', '
Edward Baylor
1500 Mount Royal Ave.
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 32 years old
Found on February 27, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30970300000, -76.62288800000, icon_homicide_shooting, 'p309', '
Rebecca Meekins
1501 Mount Royal Ave.
Baltimore, MD 21217
Race: Unknown
Gender: female
Age: 16 years old
Found on February 27, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.31073210000, -76.62799410000, icon_homicide_shooting, 'p307', '
Eric Jones
700 W. North Ave.
Baltimore, MD 21217
Race: Unknown
Gender: male
Age: 23 years old
Found on February 25, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.30402000000, -76.58289300000, icon_homicide_shooting, 'p306', '
Julius Pressley
1100 N. Milton Ave.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 23 years old
Found on February 24, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.30401400000, -76.58841200000, icon_homicide_shooting, 'p305', '
Henry Davis
1100 N. Chester St.
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 48 years old
Found on February 20, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.27906200000, -76.62471400000, icon_homicide_shooting, 'p304', '
Murriel Chew
1000 Russell St.
Baltimore, MD 21230
Race: Black
Gender: male
Age: 20 years old
Found on February 19, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.34291700000, -76.67324500000, icon_homicide_shooting, 'p303', '
Tyisha Brown
3400 Woodland Ave.
Baltimore, MD 21215
Race: Black
Gender: female
Age: 15 years old
Found on February 16, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32165500000, -76.69093300000, icon_homicide_stabbing, 'p302', '
Shenera Norris
4400 Fairview Ave.
Baltimore, MD 21216
Race: Black
Gender: female
Age: 31 years old
Found on February 15, 2008
Victim died at Scene
Cause: Stabbing
Read the article
' +39.34768830000, -76.59170150000, icon_homicide_shooting, 'p301', '
Jeff Payne
1500 Pentridge Road
Baltimore, MD 21239
Race: Black
Gender: male
Age: 22 years old
Found on February 15, 2008
Victim died at Good Samaritan Hospital
Cause: Shooting
Read the article
' +39.30926400000, -76.62911600000, icon_homicide_shooting, 'p300', '
Kernia Hair
1800 Bolton St.
Baltimore, MD 21217
Race: Black
Gender: female
Age: 25 years old
Found on February 7, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.29257300000, -76.68271800000, icon_homicide_shooting, 'p299', '
Emmanuel Bryant
500 N. Loudon Ave.
Baltimore, MD 21229
Race: Black
Gender: male
Age: 22 years old
Found on February 7, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30864700000, -76.59639500000, icon_homicide_shooting, 'p298', '
Victor Couther
1600 E. Federal St.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 19 years old
Found on February 2, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.29908700000, -76.64345600000, icon_homicide_shooting, 'p297', '
Cumberland Richardson
1600 W. Lafayette
Baltimore, MD 21217
Race: Black
Gender: male
Age: 62 years old
Found on February 2, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.36848180000, -76.56698110000, icon_homicide_shooting, 'p527', '
Edward Hunt
2300 E. Northern Parkway
Baltimore, MD 21234
Race: Black
Gender: male
Age: 27 years old
Found on January 30, 2008
Victim died at Unknown
Cause: Shooting
' +39.30121500000, -76.64186900000, icon_homicide_shooting, 'p293', '
Sidney Millner
1100 N. Stricker St.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 25 years old
Found on January 25, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29887300000, -76.64939700000, icon_homicide_shooting, 'p295', '
Michael Johnson
2000 W. Lafayette Ave.
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on January 25, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29676710000, -76.62631530000, icon_homicide_shooting, 'p294', '
Irvin Lawson
900 Pennsylvania Ave.
Baltimore, MD 21201
Race: Black
Gender: male
Age: 31 years old
Found on January 25, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.30722900000, -76.60336700000, icon_homicide_shooting, 'p291', '
Effrem Kearney
1500 Holbrook St.
Baltimore, MD 21202
Race: Black
Gender: male
Age: 20 years old
Found on January 19, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.32216100000, -76.59069400000, icon_homicide_shooting, 'p290', '
Collin Mazyck
2700 Tivoly Ave.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 24 years old
Found on January 17, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31946200000, -76.56589100000, icon_homicide_shooting, 'p289', '
Isaiah McKiever
3500 Cliftmont Ave.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 19 years old
Found on January 17, 2008
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
Read the article
' +39.32687000000, -76.57367300000, icon_homicide_bluntforce, 'p292', '
Lisa Holley
2700 Pelham Ave.
Baltimore, MD 21213
Race: Unknown
Gender: female
Age: 38 years old
Found on January 16, 2008
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
Read the article
' +39.24529030000, -76.62084960000, icon_homicide_shooting, 'p288', '
Edward Smith
800 Bethune Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 14 years old
Found on January 14, 2008
Victim died at Unknown
Cause: Shooting
Read the article
' +39.31824300000, -76.61096000000, icon_homicide_stabbing, 'p287', '
Willie Joyner
400 E. 25th St.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 18 years old
Found on January 12, 2008
Victim died at Johns Hopkins Hospital
Cause: Stabbing
Read the article
' +39.32853460000, -76.59400400000, icon_homicide_shooting, 'p286', '
Zecariah Hallback
1500 E. 33rd St.
Baltimore, MD 21218
Race: Black
Gender: male
Age: 18 years old
Found on January 9, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30930800000, -76.66770100000, icon_homicide_shooting, 'p285', '
Jerrell Brown
3000 W. North Ave.
Baltimore, MD 21216
Race: Black
Gender: male
Age: 30 years old
Found on January 8, 2008
Victim died at Scene
Cause: Shooting
Read the article
' +39.32522900000, -76.57255600000, icon_homicide_shooting, 'p284', '
Jerome Waters
2800 Kentucky Ave.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 32 years old
Found on January 4, 2008
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.24529030000, -76.62084960000, icon_homicide_shooting, 'p283', '
Linwood Colvin
800 Bethune Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 28 years old
Found on January 1, 2008
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' + +39.29174700000, -76.56967600000, icon_homicide_stabbing, 'p791', '
Anthony Metzel
12 S. Highland Ave
Baltimore, MD 21224
Race: White
Gender: male
Age: 56 years old
Found on December 31, 2009
Victim died at Unknown
Cause: Stabbing
' +39.33613740000, -76.67901980000, icon_homicide_shooting, 'p790', '
Jeffrey Ward
3800 Oakford Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 19 years old
Found on December 30, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.31546100000, -76.60952560000, icon_homicide_shooting, 'p789', '
Joseph Beatty
2300 Greenmount Avenue
Baltimore, MD 21218
Race: Black
Gender: male
Age: 38 years old
Found on December 29, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29916700000, -76.57690100000, icon_homicide_shooting, 'p787', '
Harrison Butler
700 N. Linwood Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 44 years old
Found on December 27, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29121880000, -76.62813720000, icon_homicide_shooting, 'p785', '
Ashley Harper
700 W. Lexington St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 53 years old
Found on December 26, 2009
Victim died at Unknown
Cause: Shooting
' +39.36030920000, -76.70776980000, icon_homicide_shooting, 'p784', '
Wayne Ruder
6900 Reisterstown Road
Baltimore, MD 21215
Race: White
Gender: male
Age: 56 years old
Found on December 26, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.28949200000, -76.59148990000, icon_homicide_shooting, 'p786', '
Kinlaw Jones
1800 E. Pratt
Baltimore, MD 21231
Race: White
Gender: male
Age: 21 years old
Found on December 26, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30990900000, -76.59144300000, icon_homicide_asphyxiation, 'p783', '
Trina Johnson
1900 E. Lanvale St
Baltimore, MD 21213
Race: Black
Gender: female
Age: 27 years old
Found on December 24, 2009
Victim died at Scene
Cause: Asphyxiation
' +39.29916020000, -76.60195370000, icon_homicide_shooting, 'p782', '
Danell Freeman
800 Aisquith St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 19 years old
Found on December 22, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.27616890000, -76.69801430000, icon_homicide_shooting, 'p780', '
Clifford Williams
600 S. Wickham Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 22 years old
Found on December 20, 2009
Victim died at St. Agnes Hospital
Cause: Shooting
' +39.33599930000, -76.69773300000, icon_homicide_shooting, 'p779', '
Stephen Makia
5000 Belle Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 28 years old
Found on December 20, 2009
Victim died at Scene
Cause: Shooting
' +39.32519400000, -76.57259400000, icon_homicide_bluntforce, 'p781', '
Janaya Wallace
2800 Kentucky Ave
Baltimore, MD 21213
Race: Black
Gender: female
Age: 1 year old
Found on December 19, 2009
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.31211380000, -76.59703440000, icon_homicide_stabbing, 'p778', '
Joshua Hargrove
1600 E. North Ave.
Baltimore, MD 21213
Race: Black
Gender: male
Age: 20 years old
Found on December 18, 2009
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.31630600000, -76.60621900000, icon_homicide_shooting, 'p777', '
Darnell Gray
700 Bartlett Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 35 years old
Found on December 16, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.33169000000, -76.69573700000, icon_homicide_shooting, 'p775', '
Dante Johnson-Turner
4700 Liberty Heights Ave.
Baltimore, MD 21207
Race: Black
Gender: male
Age: 29 years old
Found on December 12, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.33650790000, -76.65635980000, icon_homicide_shooting, 'p773', '
Jamal Keats
2400 Shirley Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 27 years old
Found on December 12, 2009
Victim died at Scene
Cause: Shooting
' +39.32427400000, -76.57706300000, icon_homicide_shooting, 'p774', '
Glen Johnson
3300 Woodstock Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 32 years old
Found on December 12, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30956400000, -76.63922800000, icon_homicide_shooting, 'p776', '
Dagas McGill
2300 Etting St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 39 years old
Found on December 11, 2009
Victim died at Unknown
Cause: Shooting
' +39.35561900000, -76.60208800000, icon_homicide_bluntforce, 'p772', '
Deborah Beard
5500 Midwood Ave
Baltimore, MD 21212
Race: Black
Gender: female
Age: 59 years old
Found on December 8, 2009
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.30534800000, -76.59919700000, icon_homicide_shooting, 'p771', '
Shannon Colbert
1400 E. Preston St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 32 years old
Found on December 8, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29594000000, -76.57885300000, icon_homicide_shooting, 'p770', '
Corey Jones
2700 Orleans St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 20 years old
Found on December 5, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.35561900000, -76.60208800000, icon_homicide_bluntforce, 'p766', '
Qurra Iqbal
5500 Midwood Ave
Baltimore, MD 21212
Race: Unknown
Gender: female
Age: 17 years old
Found on December 3, 2009
Victim died at Unknown
Cause: Blunt Force
' +39.29446300000, -76.58624000000, icon_homicide_shooting, 'p768', '
Wayne Smith
2200 E. Fayette St
Baltimore, MD 21231
Race: Unknown
Gender: male
Age: 42 years old
Found on December 3, 2009
Victim died at Unknown
Cause: Shooting
' +39.33808300000, -76.66788690000, icon_homicide_shooting, 'p769', '
Tavon Waters
2800 Boarman Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 26 years old
Found on December 3, 2009
Victim died at Unknown
Cause: Shooting
' +39.34364250000, -76.53548290000, icon_homicide_bluntforce, 'p765', '
David Monath
4700 Glenarm
Baltimore, MD 21206
Race: White
Gender: male
Age: 66 years old
Found on December 2, 2009
Victim died at Scene
Cause: Blunt Force
' +39.31252500000, -76.63816600000, icon_homicide_shooting, 'p762', '
Antoine Ennis
1100 Whitelock St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 37 years old
Found on November 30, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30019260000, -76.63882080000, icon_homicide_shooting, 'p767', '
Joshuan Beasley
1000 n. carey st
Baltimore, MD 21217
Race: Black
Gender: male
Age: 26 years old
Found on November 30, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29678400000, -76.62027900000, icon_homicide_shooting, 'p763', '
Glen Footman
600 N Howard St
Baltimore, MD 21201
Race: White
Gender: male
Age: 52 years old
Found on November 30, 2009
Victim died at University of Maryland Medical Center
Cause: Shooting
' +39.27673600000, -76.61646300000, icon_homicide_shooting, 'p764', '
Ralph Taylor
100 W Cross St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 45 years old
Found on November 30, 2009
Victim died at Unknown
Cause: Shooting
' +39.30904460000, -76.63738130000, icon_homicide_shooting, 'p759', '
Julius Sullivan
500 Gold St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 36 years old
Found on November 25, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.24648040000, -76.62861670000, icon_homicide_shooting, 'p756', '
Angelo Dangerfield
2800 Spelman
Baltimore, MD 21225
Race: Black
Gender: male
Age: 21 years old
Found on November 25, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30253380000, -76.63755750000, icon_homicide_stabbing, 'p755', '
Larry Staton
1200 Winchester St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 57 years old
Found on November 25, 2009
Victim died at Unknown
Cause: Stabbing
' +39.29504000000, -76.65494900000, icon_homicide_bluntforce, 'p760', '
Alexander Murrell
2400 Edmondson Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 62 years old
Found on November 25, 2009
Victim died at Scene
Cause: Blunt Force
' +39.32418160000, -76.59793010000, icon_homicide_shooting, 'p757', '
Curtis Mitchell
1400 Carswell St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 28 years old
Found on November 24, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30510000000, -76.57650400000, icon_homicide_shooting, 'p753', '
Tavon Fortune
1200 n. curley
Baltimore, MD 21213
Race: Black
Gender: male
Age: 23 years old
Found on November 22, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29826300000, -76.57361400000, icon_homicide_shooting, 'p754', '
Brandon Benjamin
3100 McElderry ST
Baltimore, MD 21205
Race: Black
Gender: male
Age: 22 years old
Found on November 20, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31256590000, -76.64749400000, icon_homicide_shooting, 'p752', '
Virginia McGhee
2140 N. Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: female
Age: 34 years old
Found on November 19, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30153390000, -76.60815300000, icon_homicide_bluntforce, 'p751', '
Lykeisha Freeman
600 E. Eager St
Baltimore, MD 21202
Race: Black
Gender: female
Age: 35 years old
Found on November 17, 2009
Victim died at Scene
Cause: Blunt Force
' +39.30990900000, -76.59144300000, icon_homicide_shooting, 'p748', '
Antonio Smith
1900 E Lanvale St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 18 years old
Found on November 15, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32036200000, -76.67765700000, icon_homicide_shooting, 'p749', '
Carron Spruiel
2900 Garrison Blvd
Baltimore, MD 21216
Race: Black
Gender: male
Found on November 15, 2009
Victim died at Scene
Cause: Shooting
' +39.28672300000, -76.62869800000, icon_homicide_shooting, 'p744', '
Anthony Swann
800 lemmon st
Baltimore, MD 21201
Race: Black
Gender: male
Age: 45 years old
Found on November 14, 2009
Victim died at Unknown
Cause: Shooting
' +39.31047100000, -76.63726600000, icon_homicide_shooting, 'p745', '
Sammie McCullough Jr.
1200 W North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 36 years old
Found on November 14, 2009
Victim died at Unknown
Cause: Shooting
' +39.34315900000, -76.68142400000, icon_homicide_shooting, 'p750', '
Jose Chacon
5100 arbutus ave
Baltimore, MD 21215
Race: Hispanic
Gender: male
Age: 35 years old
Found on November 13, 2009
Victim died at Scene
Cause: Shooting
' +39.29768100000, -76.64938600000, icon_homicide_shooting, 'p747', '
Michael McFadden
2000 W Lanvale
Baltimore, MD 21217
Race: Black
Gender: male
Age: 51 years old
Found on November 12, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29660980000, -76.67741140000, icon_homicide_shooting, 'p740', '
Martin Hawkins
3600 gelston dr
Baltimore, MD 21229
Race: Unknown
Gender: male
Age: 38 years old
Found on November 12, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30750800000, -76.58385300000, icon_homicide_stabbing, 'p738', '
Jason Mattison Jr.
2400 Llewelyn ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 15 years old
Found on November 10, 2009
Victim died at Scene
Cause: Stabbing
' +39.32041100000, -76.65713600000, icon_homicide_shooting, 'p741', '
Kenneth Jones
3000 towanda ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 46 years old
Found on November 9, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.31217830000, -76.61798730000, icon_homicide_shooting, 'p737', '
Charlie Williams
100 W. 20th st
Baltimore, MD 21218
Race: Black
Gender: male
Age: 25 years old
Found on November 8, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28603130000, -76.64857490000, icon_homicide_shooting, 'p736', '
Johnny Hawkins
100 s. payson st
Baltimore, MD 21223
Race: Black
Gender: male
Age: 40 years old
Found on November 7, 2009
Victim died at Unknown
Cause: Shooting
' +39.37054480000, -76.56207460000, icon_homicide_shooting, 'p742', '
Allen Johnson
2400 pickering dr
Baltimore, MD 21234
Race: Black
Gender: male
Age: 31 years old
Found on November 3, 2009
Victim died at Unknown
Cause: Shooting
' +39.28979460000, -76.63824490000, icon_homicide_shooting, 'p743', '
Joseph Taylor
1300 W Fayette St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on November 3, 2009
Victim died at Unknown
Cause: Shooting
' +39.29604100000, -76.64204500000, icon_homicide_stabbing, 'p733', '
Dennis Cornish
1500 Edmondson Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 30 years old
Found on October 30, 2009
Victim died at Scene
Cause: Stabbing
' +39.31324600000, -76.59208800000, icon_homicide_shooting, 'p734', '
Joshua McKinney
2000 N wolfe St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on October 29, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.23341380000, -76.60026480000, icon_homicide_shooting, 'p735', '
Eric Cromwell
800 Washburn Ave
Baltimore, MD 21222
Race: Unknown
Gender: male
Age: 20 years old
Found on October 29, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32185590000, -76.59843320000, icon_homicide_stabbing, 'p732', '
Darren Green
1500 Montpelier St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 24 years old
Found on October 25, 2009
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.29327330000, -76.59965990000, icon_homicide_shooting, 'p730', '
Hubert Bentston
100 N. Central Ave
Baltimore, MD 21231
Race: Black
Gender: male
Age: 38 years old
Found on October 21, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28106810000, -76.57833520000, icon_homicide_bluntforce, 'p731', '
Constantine Frank
1000 S Lakewood Ave
Baltimore, MD 21224
Race: White
Gender: male
Age: 54 years old
Found on October 19, 2009
Victim died at Scene
Cause: Blunt Force
' +39.28763250000, -76.63673200000, icon_homicide_shooting, 'p729', '
Brock Tatum
1200 Hollins St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 21 years old
Found on October 18, 2009
Victim died at Unknown
Cause: Shooting
' +39.30993610000, -76.67416260000, icon_homicide_shooting, 'p728', '
Rashaud Coates
2000 Denison St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 31 years old
Found on October 15, 2009
Victim died at Unknown
Cause: Shooting
' +39.30650200000, -76.65633000000, icon_homicide_shooting, 'p726', '
Lewis White
2400 Baker St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 34 years old
Found on October 14, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31771300000, -76.56012800000, icon_homicide_shooting, 'p727', '
Ivan Wood
3900 Elmora Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 28 years old
Found on October 14, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.28887020000, -76.67424300000, icon_homicide_shooting, 'p725', '
Mark Johnson
3200 W Lexington St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 31 years old
Found on October 13, 2009
Victim died at Scene
Cause: Shooting
' +39.32478500000, -76.67988000000, icon_homicide_shooting, 'p723', '
Dion Jones
3700 Springdale Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 35 years old
Found on October 11, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29910800000, -76.57826400000, icon_homicide_shooting, 'p722', '
Alonzo Key
700 N Kenwood Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 26 years old
Found on October 10, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31165410000, -76.60617350000, icon_homicide_shooting, 'p724', '
Damon Jackson
1900 Oakhill Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 37 years old
Found on October 10, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31968500000, -76.60824300000, icon_homicide_shooting, 'p721', '
Calvin Taylor
2600 Mathews St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 39 years old
Found on October 7, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28371100000, -76.68253800000, icon_homicide_shooting, 'p715', '
Antoine Rawlings
4000 Massachusetts Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 18 years old
Found on October 3, 2009
Victim died at Unknown
Cause: Shooting
' +39.35862260000, -76.60991750000, icon_homicide_asphyxiation, 'p716', '
Elda Vazquez
500 Benninghaus Rd
Baltimore, MD 21212
Race: Hispanic
Gender: female
Age: 30 years old
Found on October 2, 2009
Victim died at Scene
Cause: Asphyxiation
' +39.29781200000, -76.64940900000, icon_homicide_shooting, 'p714', '
Darius Anderson
800 N Payson St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 17 years old
Found on October 2, 2009
Victim died at Unknown
Cause: Shooting
' +39.30361800000, -76.66573690000, icon_homicide_other, 'p713', '
Ethel Henderson
1400 Poplar Grove St
Baltimore, MD 21216
Race: Black
Gender: female
Age: 85 years old
Found on September 29, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Other
' +39.28494000000, -76.64538700000, icon_homicide_shooting, 'p712', '
Jamal Brown
1800 Dover Ct
Baltimore, MD 21223
Race: Black
Gender: male
Age: 26 years old
Found on September 26, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32502000000, -76.68422200000, icon_homicide_shooting, 'p1234', '
Mia Nichols
3901 W. Forest Park Ave
Baltimore, MD 21207
Race: Black
Gender: female
Age: 37 years old
Found on September 26, 2009
Victim died at Unknown
Cause: Shooting
' +39.31434310000, -76.58881110000, icon_homicide_stabbing, 'p711', '
Shantel Brown
2100 Sinclair Ln
Baltimore, MD 21213
Race: Black
Gender: female
Age: 31 years old
Found on September 25, 2009
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.26315060000, -76.64205500000, icon_homicide_shooting, 'p710', '
Kareem Guest
2400 Maisel Ct
Baltimore, MD 21230
Race: Black
Gender: male
Age: 31 years old
Found on September 20, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.22378020000, -76.58825250000, icon_homicide_shooting, 'p709', '
Eugene Chambers
1600 Cypress St
Baltimore, MD 21226
Race: White
Gender: male
Age: 20 years old
Found on September 18, 2009
Victim died at Harbor Hospital
Cause: Shooting
' +39.29455780000, -76.66138840000, icon_homicide_shooting, 'p708', '
Stanley Mooring
600 Ashburton St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 50 years old
Found on September 18, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31894400000, -76.56997100000, icon_homicide_shooting, 'p707', '
Gerard Thomas
3400 Cliftmont Ave
Baltimore, MD 21213
Race: Unknown
Gender: male
Age: 24 years old
Found on September 16, 2009
Victim died at Scene
Cause: Shooting
' +39.30747240000, -76.63542380000, icon_homicide_shooting, 'p705', '
Darrell Neal
500 Presstman St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 31 years old
Found on September 14, 2009
Victim died at Unknown
Cause: Shooting
' +39.33965290000, -76.66641660000, icon_homicide_shooting, 'p706', '
Alvin Alston
2700 w. cold spring ln
Baltimore, MD 21215
Race: Black
Gender: male
Age: 45 years old
Found on September 13, 2009
Victim died at Unknown
Cause: Shooting
' +39.27680700000, -76.61626800000, icon_homicide_shooting, 'p704', '
Andre Williams
100 W Cross St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 35 years old
Found on September 13, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30804340000, -76.63462880000, icon_homicide_shooting, 'p703', '
Isreali Mason
2000 McCulloh St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 18 years old
Found on September 13, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32084790000, -76.57460130000, icon_homicide_shooting, 'p700', '
Name not yet released
3200 Belair Road
Baltimore, MD 21213
Race: Black
Gender: male
Age: 30 years old
Found on September 11, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.36849890000, -76.56697360000, icon_homicide_shooting, 'p701', '
Trenton Marshall
2300 E Northern Parkway
Baltimore, MD 21234
Race: Black
Gender: male
Age: 20 years old
Found on September 11, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.34795030000, -76.60953120000, icon_homicide_shooting, 'p699', '
Kenneth Burley Jr.
500 Radnor Ave
Baltimore, MD 21212
Race: Unknown
Gender: male
Age: 17 years old
Found on September 10, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29445500000, -76.63868700000, icon_homicide_shooting, 'p698', '
Shelton Elliott
500 N Carey ST
Baltimore, MD 21223
Race: Black
Gender: male
Age: 43 years old
Found on September 9, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29522400000, -76.62896900000, icon_homicide_shooting, 'p697', '
Michael Chase
700 Murphy Lane
Baltimore, MD 21201
Race: Black
Gender: male
Age: 47 years old
Found on September 9, 2009
Victim died at Unknown
Cause: Shooting
' +39.30125500000, -76.57945600000, icon_homicide_bluntforce, 'p696', '
Charles Mack
2700 Ashland Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 47 years old
Found on September 8, 2009
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.34035710000, -76.66510320000, icon_homicide_shooting, 'p695', '
Kevin Taylor
4400 Pimlico Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on September 4, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.22455320000, -76.58832630000, icon_homicide_shooting, 'p694', '
David Hunt
1600 Elmtree St
Baltimore, MD 21226
Race: White
Gender: male
Age: 23 years old
Found on September 4, 2009
Victim died at Scene
Cause: Shooting
' +39.30543570000, -76.64333950000, icon_homicide_shooting, 'p693', '
Jamaal Holmes
1600 Presstman St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 25 years old
Found on September 4, 2009
Victim died at Unknown
Cause: Shooting
' +39.31027500000, -76.64680700000, icon_homicide_shooting, 'p692', '
Larry Daniels
1900 N. Fulton St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 32 years old
Found on September 1, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30475300000, -76.66744400000, icon_homicide_shooting, 'p691', '
Chris Hester
3000 Presstman St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 38 years old
Found on September 1, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.22627900000, -76.58841900000, icon_homicide_unknown, 'p1235', '
Andrew Giancoli
1600 Hazel St
Baltimore, MD 21226
Race: White
Gender: male
Age: 48 years old
Found on August 28, 2009
Victim died at Unknown
Cause: Unknown
' +39.30592090000, -76.63749490000, icon_homicide_shooting, 'p690', '
Michael White
598 Presstman St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on August 27, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30709280000, -76.57762740000, icon_homicide_shooting, 'p688', '
Erica Carr
1400 Kenhill Ave
Baltimore, MD 21213
Race: Black
Gender: female
Age: 37 years old
Found on August 27, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31662700000, -76.57837600000, icon_homicide_shooting, 'p689', '
Shawn Williams
3200 Lyndale Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 28 years old
Found on August 26, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32749070000, -76.68259740000, icon_homicide_shooting, 'p685', '
Nolan Evans
3900 Liberty Heights Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 40 years old
Found on August 25, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.27551300000, -76.68829400000, icon_homicide_shooting, 'p684', '
David Lumpkins III
600 Yale Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 21 years old
Found on August 22, 2009
Victim died at St. Agnes Hospital
Cause: Shooting
' +39.29674300000, -76.58636300000, icon_homicide_shooting, 'p687', '
Marlon Ringgold
2200 Jefferson St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 31 years old
Found on August 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.29029100000, -76.56903100000, icon_homicide_shooting, 'p683', '
Donte Gunter
125 S Highland Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 25 years old
Found on August 20, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.33343460000, -76.68961560000, icon_homicide_shooting, 'p686', '
David Deans
4200 Belle Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 25 years old
Found on August 20, 2009
Victim died at Unknown
Cause: Shooting
' +39.30823400000, -76.57999800000, icon_homicide_shooting, 'p681', '
Gregory Wilson
2700 E Oliver St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 20 years old
Found on August 11, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28917660000, -76.59523380000, icon_homicide_shooting, 'p680', '
Thomas Medley
200 S. Herring Court
Baltimore, MD 21231
Race: Black
Gender: male
Age: 32 years old
Found on August 10, 2009
Victim died at Unknown
Cause: Shooting
' +39.25006610000, -76.62282400000, icon_homicide_shooting, 'p679', '
Charles Pratt
600 Cherry Hill Road
Baltimore, MD 21225
Race: Black
Gender: male
Age: 18 years old
Found on August 9, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29522300000, -76.65069600000, icon_homicide_shooting, 'p678', '
Steven Eldridge
2100 Edmondson Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 25 years old
Found on August 2, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29659900000, -76.67870100000, icon_homicide_shooting, 'p677', '
Cortez Smith
800 Allendale St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 18 years old
Found on August 2, 2009
Victim died at Unknown
Cause: Shooting
' +39.34328180000, -76.66110860000, icon_homicide_shooting, 'p676', '
Marcella Lawson
2800 Edgecombe circle north
Baltimore, MD 21215
Race: Black
Gender: female
Age: 64 years old
Found on August 2, 2009
Victim died at Scene
Cause: Shooting
' +39.29894600000, -76.64784700000, icon_homicide_bluntforce, 'p675', '
Stanley Joines
1900 W Lafayette Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 26 years old
Found on August 1, 2009
Victim died at Scene
Cause: Blunt Force
' +39.29280370000, -76.62250730000, icon_homicide_stabbing, 'p674', '
David Reese
300 N Paca St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 18 years old
Found on August 1, 2009
Victim died at Unknown
Cause: Stabbing
' +39.27996900000, -76.65879100000, icon_homicide_shooting, 'p673', '
Lamont Woodard
500 E. Lynn Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 39 years old
Found on July 31, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29510600000, -76.56871100000, icon_homicide_shooting, 'p671', '
Darvin Jones
3500 E Fayette St
Baltimore, MD 21222
Race: Black
Gender: male
Age: 19 years old
Found on July 26, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29534300000, -76.56795300000, icon_homicide_shooting, 'p672', '
Gary Martin
200 N Conkling St
Baltimore, MD 21222
Race: Black
Gender: male
Age: 18 years old
Found on July 26, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31221300000, -76.56684000000, icon_homicide_shooting, 'p670', '
Shonte Ellis
4217 Erdman Ave
Baltimore, MD 21213
Race: Black
Gender: female
Age: 26 years old
Found on July 25, 2009
Victim died at Scene
Cause: Shooting
' +39.28515840000, -76.55283570000, icon_homicide_shooting, 'p669', '
Marcus Sanchez
5100 Foster Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 26 years old
Found on July 25, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.34077500000, -76.67421600000, icon_homicide_shooting, 'p668', '
Antoine Davis
3600 Woodland AVe
Baltimore, MD 21215
Race: Black
Gender: male
Age: 33 years old
Found on July 23, 2009
Victim died at Scene
Cause: Shooting
' +39.29911900000, -76.57832400000, icon_homicide_shooting, 'p667', '
Jerrod Reed
700 N Kenwood Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 16 years old
Found on July 19, 2009
Victim died at Scene
Cause: Shooting
' +39.32996250000, -76.58359430000, icon_homicide_shooting, 'p666', '
Diandre Cherry
3400 Lake Montebello Drive
Baltimore, MD 21218
Race: Black
Gender: male
Age: 25 years old
Found on July 16, 2009
Victim died at Scene
Cause: Shooting
' +39.28561580000, -76.59242730000, icon_homicide_shooting, 'p663', '
Josephine Lewatowski
500 S Regester St
Baltimore, MD 21231
Race: White
Gender: female
Age: 48 years old
Found on July 14, 2009
Victim died at Unknown
Cause: Shooting
' +39.33820900000, -76.60777700000, icon_homicide_shooting, 'p661', '
John Woodies
4000 Old York Road
Baltimore, MD 21218
Race: Black
Gender: male
Age: 38 years old
Found on July 13, 2009
Victim died at Scene
Cause: Shooting
' +39.32620500000, -76.59434100000, icon_homicide_shooting, 'p662', '
Antwon Witherspoon
2900 The Alameda
Baltimore, MD 21218
Race: Black
Gender: male
Age: 28 years old
Found on July 13, 2009
Victim died at Unknown
Cause: Shooting
' +39.36977300000, -76.58935700000, icon_homicide_shooting, 'p664', '
Curtis Shepherd
6200 Falkirk Road
Baltimore, MD 21239
Race: Black
Gender: male
Age: 36 years old
Found on July 13, 2009
Victim died at Scene
Cause: Shooting
' +39.29815000000, -76.57642100000, icon_homicide_shooting, 'p660', '
Charles Armstead
2900 McElderry St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 21 years old
Found on July 9, 2009
Victim died at Unknown
Cause: Shooting
' +39.30429500000, -76.63377500000, icon_homicide_shooting, 'p659', '
Maurice McFadden
1700 Division St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 18 years old
Found on July 8, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32216500000, -76.68324800000, icon_homicide_shooting, 'p658', '
Arnold Foster
3900 Fairfax Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on July 8, 2009
Victim died at Scene
Cause: Shooting
' +39.28878280000, -76.64948260000, icon_homicide_shooting, 'p656', '
Julius Powell
2100 W Fairmount Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 23 years old
Found on July 3, 2009
Victim died at Union Memorial Hospital
Cause: Shooting
' +39.30179490000, -76.59629790000, icon_homicide_shooting, 'p654', '
Steven Wilson
1600 E Eager St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 24 years old
Found on June 30, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29480820000, -76.65477820000, icon_homicide_stabbing, 'p682', '
Gerrod Finch
600 N. Wheeler St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 21 years old
Found on June 30, 2009
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30598100000, -76.65165800000, icon_homicide_shooting, 'p657', '
Tavon Walker
2100 Brighton St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 28 years old
Found on June 29, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32207500000, -76.67458200000, icon_homicide_shooting, 'p653', '
Antonio Montgomery
3400 Fairview Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 36 years old
Found on June 28, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.30611500000, -76.66754000000, icon_homicide_stabbing, 'p651', '
James Johnson
3000 Baker St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 52 years old
Found on June 27, 2009
Victim died at Unknown
Cause: Stabbing
' +39.30611500000, -76.66754000000, icon_homicide_stabbing, 'p652', '
Robert Phelps
3000 Baker St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 48 years old
Found on June 27, 2009
Victim died at Unknown
Cause: Stabbing
' +39.28750620000, -76.59585850000, icon_homicide_shooting, 'p650', '
Stevie Ford
300 Mason Court
Baltimore, MD 21231
Race: Black
Gender: male
Age: 19 years old
Found on June 24, 2009
Victim died at Scene
Cause: Shooting
' +39.30995500000, -76.61510100000, icon_homicide_bluntforce, 'p649', '
Edward Davis
1800 St. Paul St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 39 years old
Found on June 24, 2009
Victim died at Scene
Cause: Blunt Force
' +39.31169630000, -76.70116640000, icon_homicide_asphyxiation, 'p648', '
Wanda Hackett
2200 Tucker Lane
Baltimore, MD 21207
Race: Black
Gender: female
Age: 51 years old
Found on June 23, 2009
Victim died at Scene
Cause: Asphyxiation
' +39.31116000000, -76.59122500000, icon_homicide_shooting, 'p646', '
Wesley Nelson
1800 N Chapel St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 29 years old
Found on June 21, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30802500000, -76.58526900000, icon_homicide_shooting, 'p645', '
Edward Patterson
2300 E Oliver St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 39 years old
Found on June 20, 2009
Victim died at Scene
Cause: Shooting
' +39.29452000000, -76.57913370000, icon_homicide_shooting, 'p644', '
Candido Hernandez
2700 E Fayette St
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 36 years old
Found on June 19, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.35667200000, -76.60784400000, icon_homicide_stabbing, 'p643', '
Tyrone Phillips
600 Tunbridge Road
Baltimore, MD 21212
Race: Black
Gender: male
Age: 19 years old
Found on June 18, 2009
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.30984100000, -76.66135500000, icon_homicide_shooting, 'p641', '
Pierre Alford
1900 Braddish Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 24 years old
Found on June 17, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30790100000, -76.64997800000, icon_homicide_shooting, 'p640', '
Darnell Johns
1700 N Payson
Baltimore, MD 21217
Race: Black
Gender: male
Age: 21 years old
Found on June 10, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.33905010000, -76.55495440000, icon_homicide_stabbing, 'p638', '
Lydia Steed
4000 Biddison Lane
Baltimore, MD 21206
Race: Black
Gender: female
Age: 31 years old
Found on June 10, 2009
Victim died at Scene
Cause: Stabbing
' +39.33905010000, -76.55495440000, icon_homicide_stabbing, 'p639', '
Allisha Royster
4000 Biddison Lane
Baltimore, MD 21206
Race: Black
Gender: female
Age: 23 years old
Found on June 10, 2009
Victim died at Scene
Cause: Stabbing
' +39.30918000000, -76.58167100000, icon_homicide_shooting, 'p637', '
Karl Snyder
2526 E. Federal St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 21 years old
Found on June 8, 2009
Victim died at Scene
Cause: Shooting
' +39.31599080000, -76.63618140000, icon_homicide_stabbing, 'p636', '
Dana Richardson
900 Brooks Lane
Baltimore, MD 21217
Race: Black
Gender: male
Age: 44 years old
Found on June 7, 2009
Victim died at Scene
Cause: Stabbing
' +39.27709600000, -76.54575200000, icon_homicide_shooting, 'p635', '
Anthony Benitez
1400 Anglesea St
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 21 years old
Found on June 3, 2009
Victim died at Scene
Cause: Shooting
' +39.23519400000, -76.61844400000, icon_homicide_shooting, 'p634', '
Anthony Geiger
212 Old Riverside Rd, Brooklyn, MD
Baltimore, MD 21225
Race: White
Gender: male
Age: 41 years old
Found on June 2, 2009
Victim died at Unknown
Cause: Shooting
' +39.34109100000, -76.60977100000, icon_homicide_shooting, 'p633', '
Joseph Woah-Tee
4300 York Road
Baltimore, MD 21212
Race: Black
Gender: male
Age: 60 years old
Found on May 31, 2009
Victim died at Unknown
Cause: Shooting
' +39.34836220000, -76.56837710000, icon_homicide_shooting, 'p631', '
Ricardo Montgomery
2800 Alisa Ave
Baltimore, MD 21214
Race: Black
Gender: male
Age: 39 years old
Found on May 30, 2009
Victim died at Scene
Cause: Shooting
' +39.29805700000, -76.58320600000, icon_homicide_shooting, 'p632', '
Douglas Winston
600 N Port St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 35 years old
Found on May 30, 2009
Victim died at Unknown
Cause: Shooting
' +39.28786500000, -76.62060300000, icon_homicide_shooting, 'p630', '
Milton Stepney Sr.
15 S Eutaw St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 32 years old
Found on May 28, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31053000000, -76.63618300000, icon_homicide_shooting, 'p629', '
Curtis Brown
1100 W North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 32 years old
Found on May 27, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29428870000, -76.58637990000, icon_homicide_shooting, 'p628', '
David Parker
200 N. Collington Ave
Baltimore, MD 21231
Race: Unknown
Gender: male
Age: 25 years old
Found on May 27, 2009
Victim died at Unknown
Cause: Shooting
' +39.31962700000, -76.57545100000, icon_homicide_shooting, 'p627', '
Sean Howard
3102 Cliftmont Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on May 25, 2009
Victim died at Unknown
Cause: Shooting
' +39.29314900000, -76.57052200000, icon_homicide_shooting, 'p625', '
Hardy Jones
3300 Noble St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 26 years old
Found on May 25, 2009
Victim died at Unknown
Cause: Shooting
' +39.31434310000, -76.58881110000, icon_homicide_shooting, 'p626', '
Quite Vanterpool
2100 Sinclair Lane
Baltimore, MD 21213
Race: Black
Gender: male
Age: 41 years old
Found on May 24, 2009
Victim died at Unknown
Cause: Shooting
' +39.32406200000, -76.59054200000, icon_homicide_shooting, 'p624', '
Keon Cameron
1800 E. 28th St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 18 years old
Found on May 24, 2009
Victim died at Unknown
Cause: Shooting
' +39.29243900000, -76.63716200000, icon_homicide_shooting, 'p623', '
Chernere Wooten
300 N Carrollton Ave
Baltimore, MD 21223
Race: Black
Gender: female
Age: 18 years old
Found on May 23, 2009
Victim died at Unknown
Cause: Shooting
' +39.28696100000, -76.64702800000, icon_homicide_shooting, 'p622', '
Lee Johnson
1900 Frederick Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on May 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.31432890000, -76.59056510000, icon_homicide_shooting, 'p621', '
Tavon Crawford
2700 Saint Lo Drive
Baltimore, MD 21213
Race: Black
Gender: male
Age: 26 years old
Found on May 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.36270500000, -76.71129600000, icon_homicide_bluntforce, 'p620', '
Lucio Solorzano
7000 Reisterstown Road
Baltimore, MD 21215
Race: Hispanic
Gender: male
Age: 84 years old
Found on May 17, 2009
Victim died at Scene
Cause: Blunt Force
' +39.31312900000, -76.60449400000, icon_homicide_shooting, 'p619', '
Christopher Ricks
2000 Kennedy Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 32 years old
Found on May 9, 2009
Victim died at Unknown
Cause: Shooting
' +39.33851200000, -76.56996800000, icon_homicide_shooting, 'p618', '
Anthony Griffin
3100 Montebello Terrace
Baltimore, MD 21214
Race: Black
Gender: male
Age: 23 years old
Found on May 8, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31339100000, -76.66977600000, icon_homicide_shooting, 'p617', '
Deontae Carter
2300 N Rosedale St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 24 years old
Found on May 8, 2009
Victim died at Scene
Cause: Shooting
' +39.33485800000, -76.60753300000, icon_homicide_shooting, 'p616', '
Anthony Egger
601 Parkwyrth Ave
Baltimore, MD 21218
Race: White
Gender: male
Age: 48 years old
Found on May 5, 2009
Victim died at Scene
Cause: Shooting
' +39.28093700000, -76.67221600000, icon_homicide_shooting, 'p615', '
Fabian Palmer
3300 Frederick Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 25 years old
Found on May 3, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29992300000, -76.58239300000, icon_homicide_shooting, 'p614', '
William Jones
800 N Milton Ave
Baltimore, MD 21205
Race: Unknown
Gender: male
Age: 26 years old
Found on May 2, 2009
Victim died at Scene
Cause: Shooting
' +39.28193200000, -76.65119100000, icon_homicide_shooting, 'p612', '
Shawn Williams
500 S. Smallwood
Baltimore, MD 21223
Race: Black
Gender: male
Age: 18 years old
Found on April 27, 2009
Victim died at Unknown
Cause: Shooting
' +39.32345300000, -76.57625700000, icon_homicide_bluntforce, 'p613', '
Frank Swiston
2800 Erdman Ave
Baltimore, MD 21213
Race: White
Gender: male
Age: 53 years old
Found on April 25, 2009
Victim died at Scene
Cause: Blunt Force
' +39.30229700000, -76.67024100000, icon_homicide_shooting, 'p611', '
Maurice Toomer
3200 Normount Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 17 years old
Found on April 25, 2009
Victim died at Unknown
Cause: Shooting
' +39.30179490000, -76.59629790000, icon_homicide_shooting, 'p610', '
Jasmon Jiggets
1600 E. Eager St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 28 years old
Found on April 23, 2009
Victim died at Unknown
Cause: Shooting
' +39.27478800000, -76.68909300000, icon_homicide_bluntforce, 'p609', '
Melody Smith
700 Yale Ave
Baltimore, MD 21229
Race: Black
Gender: female
Age: 54 years old
Found on April 21, 2009
Victim died at Scene
Cause: Blunt Force
' +39.34168500000, -76.55902800000, icon_homicide_shooting, 'p608', '
Kenneth Johnson
5100 Hillburn Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 23 years old
Found on April 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.31243300000, -76.66966000000, icon_homicide_shooting, 'p607', '
Qonta Waddell
3100 Windsor Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 24 years old
Found on April 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.31542400000, -76.59373300000, icon_homicide_shooting, 'p606', '
Calvin Hayes
1700 Cliftview Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 78 years old
Found on April 18, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29313100000, -76.57116900000, icon_homicide_stabbing, 'p605', '
Ernesto Flores
16 N. Clinton St
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 23 years old
Found on April 18, 2009
Victim died at Unknown
Cause: Stabbing
' +39.28895800000, -76.65345100000, icon_homicide_shooting, 'p603', '
Erskine Evans III
41 Gorman Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on April 15, 2009
Victim died at Unknown
Cause: Shooting
' +39.31064400000, -76.60113100000, icon_homicide_shooting, 'p604', '
Harold Able Sr
1800 Aiken St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 63 years old
Found on April 15, 2009
Victim died at Scene
Cause: Shooting
' +39.28184230000, -76.64945670000, icon_homicide_shooting, 'p602', '
Russell Day
2100 Christian St
Baltimore, MD 21223
Race: White
Gender: male
Age: 31 years old
Found on April 13, 2009
Victim died at Unknown
Cause: Shooting
' +39.24585670000, -76.62951400000, icon_homicide_shooting, 'p601', '
Quinton Savage
2800 Winwood Court
Baltimore, MD 21225
Race: Black
Gender: male
Age: 22 years old
Found on April 11, 2009
Victim died at Unknown
Cause: Shooting
' +39.28227000000, -76.64678000000, icon_homicide_shooting, 'p599', '
Dominic Baker
1900 Wilkens Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 16 years old
Found on April 8, 2009
Victim died at Scene
Cause: Shooting
' +39.28762400000, -76.59347410000, icon_homicide_shooting, 'p598', '
Doreatha Wright
1700 Gough St
Baltimore, MD 21231
Race: Black
Gender: female
Age: 42 years old
Found on April 5, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32164800000, -76.55589500000, icon_homicide_shooting, 'p600', '
Curtis Pounds
4700 Homesdale Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on April 5, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.34277620000, -76.58796920000, icon_homicide_shooting, 'p597', '
Timothy Hebron
4200 Welbourne Road
Baltimore, MD 21218
Race: Black
Gender: male
Age: 23 years old
Found on April 4, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30155900000, -76.62555920000, icon_homicide_stabbing, 'p596', '
Zachary Thompson
400 Watty Court
Baltimore, MD 21201
Race: Black
Gender: male
Age: 48 years old
Found on April 3, 2009
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.31551600000, -76.59983000000, icon_homicide_shooting, 'p595', '
Dewayne Booker
1200 Bonaparte Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 20 years old
Found on April 2, 2009
Victim died at Unknown
Cause: Shooting
' +39.31717400000, -76.56540200000, icon_homicide_shooting, 'p594', '
Derrick Franklin
3800 Lyndale Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 28 years old
Found on April 1, 2009
Victim died at Scene
Cause: Shooting
' +39.32025000000, -76.68094200000, icon_homicide_shooting, 'p593', '
Darrell Lee
2900 Allendale Road
Baltimore, MD 21216
Race: Black
Gender: male
Age: 19 years old
Found on April 1, 2009
Victim died at Scene
Cause: Shooting
' +39.28985400000, -76.64170800000, icon_homicide_shooting, 'p592', '
David Williams
1500 W. Fayette St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on March 31, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30566900000, -76.63195300000, icon_homicide_shooting, 'p591', '
Marcus Nicholson
1700 McCulloh St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on March 29, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31073210000, -76.62799410000, icon_homicide_shooting, 'p590', '
Caneil Fullwood
700 W. North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 29 years old
Found on March 26, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.35900720000, -76.57549770000, icon_homicide_shooting, 'p589', '
Carlos Spence
5800 Edgepark Road
Baltimore, MD 21239
Race: Black
Gender: male
Age: 23 years old
Found on March 26, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29707310000, -76.57365370000, icon_homicide_shooting, 'p588', '
Kara Lawson
500 N Ellwood Ave
Baltimore, MD 21205
Race: Black
Gender: female
Age: 23 years old
Found on March 23, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.24178480000, -76.62669370000, icon_homicide_shooting, 'p587', '
Davon Saunders
600 W. Patapsco Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 26 years old
Found on March 22, 2009
Victim died at Scene
Cause: Shooting
' +39.26279510000, -76.63787690000, icon_homicide_shooting, 'p586', '
Martie Williams
2600 Maisel St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 20 years old
Found on March 21, 2009
Victim died at Unknown
Cause: Shooting
' +39.26149850000, -76.53258770000, icon_homicide_stabbing, 'p585', '
William Smith
6500 Cleveland Ave
Baltimore, MD 21222
Race: White
Gender: male
Age: 24 years old
Found on March 17, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Stabbing
' +39.32380600000, -76.60958900000, icon_homicide_shooting, 'p583', '
Adrian Martise
2900 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 24 years old
Found on March 17, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32380600000, -76.60958900000, icon_homicide_shooting, 'p584', '
Anthony Bailey
2900 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 20 years old
Found on March 17, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31008300000, -76.65155100000, icon_homicide_shooting, 'p581', '
Keon Barnes
1900 Pulaski St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 35 years old
Found on March 14, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29175400000, -76.68166700000, icon_homicide_shooting, 'p582', '
Andrew Goodwin
400 Normandy Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 22 years old
Found on March 13, 2009
Victim died at Unknown
Cause: Shooting
' +39.29267300000, -76.56924300000, icon_homicide_shooting, 'p579', '
Wayne Robinson
3400 E. Baltimore St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 22 years old
Found on March 8, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29864500000, -76.62098800000, icon_homicide_shooting, 'p578', '
Sctario Edwards
800 Linden Ave
Baltimore, MD 21201
Race: Black
Gender: female
Age: 25 years old
Found on March 7, 2009
Victim died at Unknown
Cause: Shooting
' +39.29114000000, -76.56580200000, icon_homicide_shooting, 'p577', '
Herbert Carsten Jr.
100 S. Eaton St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 17 years old
Found on March 6, 2009
Victim died at Unknown
Cause: Shooting
' +39.31100770000, -76.62197560000, icon_homicide_shooting, 'p576', '
Roger Dennis
300 W. North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 25 years old
Found on March 5, 2009
Victim died at Unknown
Cause: Shooting
' +39.32676670000, -76.63663490000, icon_homicide_stabbing, 'p575', '
Nelson Gause
1500 Clipper Road
Baltimore, MD 21211
Race: Black
Gender: male
Age: 29 years old
Found on March 1, 2009
Victim died at Good Samaritan Hospital
Cause: Stabbing
' +39.29688700000, -76.63596100000, icon_homicide_stabbing, 'p574', '
Frederick Archer
700 N Arlington Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 68 years old
Found on February 26, 2009
Victim died at Scene
Cause: Stabbing
' +39.34009900000, -76.66046600000, icon_homicide_shooting, 'p573', '
Ramon Williams
2500 Loyola Northway
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on February 22, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.28676300000, -76.56800300000, icon_homicide_stabbing, 'p572', '
Jose Pena
3500 Eastern Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 26 years old
Found on February 22, 2009
Victim died at Johns Hopkins Bayview Medical Center
Cause: Stabbing
' +39.28793000000, -76.65660300000, icon_homicide_shooting, 'p571', '
Hubert Dickerson Jr.
2500 W Baltimore St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 32 years old
Found on February 21, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.35664200000, -76.59274400000, icon_homicide_shooting, 'p569', '
Roger Evans
5600 Sagra Road
Baltimore, MD 21239
Race: Black
Gender: male
Age: 24 years old
Found on February 16, 2009
Victim died at Scene
Cause: Shooting
' +39.23542590000, -76.61110560000, icon_homicide_stabbing, 'p570', '
James Flannery
3900 S. Hanover St.
Baltimore, MD 21225
Race: White
Gender: male
Age: 23 years old
Found on February 16, 2009
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30691200000, -76.55915150000, icon_homicide_shooting, 'p561', '
Michael Davis
5000 Erdman Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 30 years old
Found on February 14, 2009
Victim died at Scene
Cause: Shooting
' +39.35643700000, -76.54993800000, icon_homicide_stabbing, 'p560', '
Daniel Hoeck
6100 Glenoak Ave
Baltimore, MD 21214
Race: White
Gender: male
Age: 62 years old
Found on February 12, 2009
Victim died at Bon Secours Hospital
Cause: Stabbing
' +39.32701200000, -76.59189600000, icon_homicide_shooting, 'p559', '
Tracy Kinchen
1700 E. 32nd St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 34 years old
Found on February 11, 2009
Victim died at Scene
Cause: Shooting
' +39.30795800000, -76.65135000000, icon_homicide_shooting, 'p555', '
Barakaat Faruq
2100 Presbury St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on February 10, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.24041420000, -76.61829920000, icon_homicide_asphyxiation, 'p554', '
Eric Pendergrass
200 W. Patapsco Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 26 years old
Found on February 9, 2009
Victim died at Scene
Cause: Asphyxiation
' +39.32190000000, -76.59536800000, icon_homicide_shooting, 'p553', '
David Bryan Wright
1600 Gorsuch Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 47 years old
Found on February 4, 2009
Victim died at Unknown
Cause: Shooting
' +39.30193340000, -76.69463730000, icon_homicide_shooting, 'p552', '
Lemuel Wallace
4600 N Franklintown Rd
Baltimore, MD 21207
Race: Black
Gender: male
Age: 37 years old
Found on February 4, 2009
Victim died at Scene
Cause: Shooting
' +39.30987900000, -76.59049900000, icon_homicide_shooting, 'p551', '
Demetrius Saulsbury
1700 N Washington St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 22 years old
Found on February 4, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.26405040000, -76.61701120000, icon_homicide_stabbing, 'p550', '
Kendrick Daney
200 W Dickman St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 38 years old
Found on February 1, 2009
Victim died at Scene
Cause: Stabbing
' +39.29522300000, -76.65069600000, icon_homicide_shooting, 'p549', '
Theodore Moore
2100 Edmondson Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 44 years old
Found on January 30, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29816200000, -76.66532700000, icon_homicide_shooting, 'p548', '
James McKoy
900 Poplar Grove
Baltimore, MD 21216
Race: Black
Gender: male
Age: 46 years old
Found on January 29, 2009
Victim died at Unknown
Cause: Shooting
' +39.32050100000, -76.55003800000, icon_homicide_shooting, 'p547', '
Dwayne Lawrence
4900 Aberdeen Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 17 years old
Found on January 28, 2009
Victim died at Scene
Cause: Shooting
' +39.31249600000, -76.66789100000, icon_homicide_shooting, 'p546', '
Jasmine Harris
3000 Windsor Ave
Baltimore, MD 21216
Race: Black
Gender: female
Age: 24 years old
Found on January 27, 2009
Victim died at Scene
Cause: Shooting
' +39.29358810000, -76.59590120000, icon_homicide_shooting, 'p545', '
Stephen Mauk
200 N. Bond St
Baltimore, MD 21231
Race: White
Gender: male
Age: 47 years old
Found on January 26, 2009
Victim died at Scene
Cause: Shooting
' +39.34022500000, -76.67151600000, icon_homicide_shooting, 'p544', '
Juan Johnson
4600 Reisterstown Rd
Baltimore, MD 21215
Race: Unknown
Gender: male
Age: 14 years old
Found on January 25, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.27924100000, -76.63662300000, icon_homicide_shooting, 'p543', '
Jaiwan Jones
1200 Bayard St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 26 years old
Found on January 17, 2009
Victim died at Scene
Cause: Shooting
' +39.28283540000, -76.70844730000, icon_homicide_shooting, 'p542', '
Ronald Crosby
5400 Jamestowne Court
Baltimore, MD 21229
Race: Black
Gender: male
Age: 56 years old
Found on January 14, 2009
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31162730000, -76.70134460000, icon_homicide_shooting, 'p522', '
Kipton A. Degree Jr.
5000 Dickey Hill Road
Baltimore, MD 21216
Race: Black
Gender: male
Age: 23 years old
Found on January 9, 2009
Victim died at Sinai Hospital
Cause: Shooting
' +39.29158600000, -76.56732300000, icon_homicide_shooting, 'p520', '
Bryant Eldridge
3600 E. Lombard St.
Baltimore, MD 21224
Race: Black
Gender: male
Age: 20 years old
Found on January 9, 2009
Victim died at Scene
Cause: Shooting
Read the article
' +39.30212350000, -76.59643210000, icon_homicide_shooting, 'p518', '
Antron Batts
1000 N Bond St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 35 years old
Found on January 7, 2009
Victim died at Scene
Cause: Shooting
Read the article
' +39.30055810000, -76.60423190000, icon_homicide_shooting, 'p516', '
Tian Zin Wang
800 Webb Court
Baltimore, MD 21205
Race: Asian
Gender: male
Age: 51 years old
Found on January 6, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.37191500000, -76.54922400000, icon_homicide_stabbing, 'p517', '
David Falkinburg
2800 Clearview Ave.
Baltimore, MD 21234
Race: White
Gender: male
Age: 45 years old
Found on January 6, 2009
Victim died at Scene
Cause: Stabbing
Read the article
' +39.32890400000, -76.66052500000, icon_homicide_shooting, 'p515', '
Joshua Harris
3600 Reisterstown Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on January 5, 2009
Victim died at Sinai Hospital
Cause: Shooting
Read the article
' +39.30017600000, -76.57838500000, icon_homicide_shooting, 'p580', '
Andre Thorpe
800 N. Kenwood Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 17 years old
Found on January 5, 2009
Victim died at Unknown
Cause: Shooting
' +39.33771060000, -76.55629230000, icon_homicide_shooting, 'p514', '
Lougene Williams
4000 Chesmont Ave.
Baltimore, MD 21206
Race: Black
Gender: male
Age: 20 years old
Found on January 4, 2009
Victim died at Unknown
Cause: Shooting
Read the article
' +39.35827620000, -76.58943380000, icon_homicide_shooting, 'p512', '
Trevane Ricks
5604 Loch Raven Blvd.
Baltimore, MD 21239
Race: Black
Gender: male
Age: 16 years old
Found on January 4, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.35774900000, -76.58987200000, icon_homicide_shooting, 'p513', '
Mayresa Craft
5600 Loch Raven Blvd.
Baltimore, MD 21239
Race: Black
Gender: female
Age: 15 years old
Found on January 4, 2009
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.29493070000, -76.60302560000, icon_homicide_shooting, 'p508', '
Marcel Mitchell
1100 Orleans St.
Baltimore, MD 21202
Race: Black
Gender: male
Age: 20 years old
Found on January 2, 2009
Victim died at Scene
Cause: Shooting
Read the article
' +39.29493570000, -76.60289110000, icon_homicide_shooting, 'p509', '
Glen Cunningham
1104 Orleans St.
Baltimore, MD 21202
Race: Black
Gender: male
Age: 22 years old
Found on January 2, 2009
Victim died at Scene
Cause: Shooting
Read the article
' +39.29922400000, -76.58114100000, icon_homicide_shooting, 'p510', '
Mario Williams
700 N. Luzerne Ave.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 31 years old
Found on January 2, 2009
Victim died at Unknown
Cause: Shooting
Read the article
' +39.29803230000, -76.58379350000, icon_homicide_shooting, 'p1021', '
Bernard Clowney
600 N Montford Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 50 years old
Found on December 31, 2010
Victim died at Scene
Cause: Shooting
' +39.35157370000, -76.56084320000, icon_homicide_shooting, 'p1020', '
David King
5500 Richard Ave
Baltimore, MD 21224
Race: Unknown
Gender: male
Age: 25 years old
Found on December 29, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28659900000, -76.65032800000, icon_homicide_shooting, 'p1019', '
Raymond Woodland
2100 Boyd St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on December 26, 2010
Victim died at Unknown
Cause: Shooting
' +39.33692500000, -76.68724600000, icon_homicide_shooting, 'p1018', '
Keith L. Robinson
4100 Ridgewood Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 23 years old
Found on December 25, 2010
Victim died at Scene
Cause: Shooting
' +39.29930980000, -76.66167050000, icon_homicide_shooting, 'p1017', '
Issac Joyner
1000 ashburton st
Baltimore, MD 21216
Race: Black
Gender: male
Age: 14 years old
Found on December 23, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32322790000, -76.60779050000, icon_homicide_shooting, 'p1016', '
Mustafa Malik
2900 Mathews st
Baltimore, MD 21218
Race: Black
Gender: male
Age: 43 years old
Found on December 22, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29107300000, -76.56668500000, icon_homicide_shooting, 'p1015', '
Juan Carlos Santos-Hernandez
3700 Mt. Pleasant Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 29 years old
Found on December 22, 2010
Victim died at Scene
Cause: Shooting
' +39.36594500000, -76.60667500000, icon_homicide_shooting, 'p1011', '
Brian Taylor
6000 Majorie Ln
Baltimore, MD 21212
Race: Black
Gender: male
Age: 23 years old
Found on December 18, 2010
Victim died at Good Samaritan Hospital
Cause: Shooting
' +39.32483100000, -76.59053290000, icon_homicide_unknown, 'p1012', '
Karen Ferrell
1800 29th St
Baltimore, MD 21218
Race: Black
Gender: female
Age: 42 years old
Found on December 18, 2010
Victim died at Scene
Cause: Unknown
' +39.29332600000, -76.57935900000, icon_homicide_shooting, 'p1010', '
Ramon Uceda
100 N. Lakewood Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 26 years old
Found on December 18, 2010
Victim died at Unknown
Cause: Shooting
' +39.32331900000, -76.59904800000, icon_homicide_asphyxiation, 'p1014', '
Ellison McCall
1400 Homestead St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 30 years old
Found on December 18, 2010
Victim died at Scene
Cause: Asphyxiation
' +39.29928400000, -76.57370530000, icon_homicide_shooting, 'p1009', '
Alethea Hawkins
3100 Monument St
Baltimore, MD 21205
Race: Black
Gender: female
Age: 38 years old
Found on December 18, 2010
Victim died at Unknown
Cause: Shooting
' +39.31003400000, -76.64831100000, icon_homicide_other, 'p1013', '
Micha Crane
1900 W. North Ave.
Baltimore, MD 21217
Race: Black
Gender: female
Age: 1 year old
Found on December 17, 2010
Victim died at University of Maryland Medical Center
Cause: Other
' +39.29930500000, -76.66911100000, icon_homicide_shooting, 'p1007', '
Cherrie Gammon
1300 N. Franklintown Rd
Baltimore, MD 21216
Race: White
Gender: female
Age: 25 years old
Found on December 12, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.34240400000, -76.67245900000, icon_homicide_shooting, 'p1006', '
Travis Baltimore
3400 Virigina Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 24 years old
Found on December 10, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.30819580000, -76.66569130000, icon_homicide_shooting, 'p1005', '
David Carter
2800 Westwood Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 20 years old
Found on December 8, 2010
Victim died at Scene
Cause: Shooting
' +39.35442500000, -76.59047800000, icon_homicide_shooting, 'p1004', '
Dante Sweeney
5300 Loch Raven Blvd
Baltimore, MD 21239
Race: Black
Gender: male
Age: 22 years old
Found on December 7, 2010
Victim died at Scene
Cause: Shooting
' +39.32566000000, -76.58898200000, icon_homicide_shooting, 'p1001', '
Troy Thomas
1900 E. 30th St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 26 years old
Found on December 3, 2010
Victim died at Good Samaritan Hospital
Cause: Shooting
' +39.31637800000, -76.60977400000, icon_homicide_other, 'p1003', '
Tammy Madison
2400 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: female
Age: 45 years old
Found on December 3, 2010
Victim died at Johns Hopkins Hospital
Cause: Other
' +39.28471600000, -76.64871100000, icon_homicide_shooting, 'p1000', '
Raquan Campbell
200 S. Payson St.
Baltimore, MD 21223
Race: Black
Gender: male
Age: 15 years old
Found on December 1, 2010
Victim died at Unknown
Cause: Shooting
' +39.33999900000, -76.69414800000, icon_homicide_stabbing, 'p998', '
Robin Patterson
4400 Belvieu Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 61 years old
Found on November 26, 2010
Victim died at Unknown
Cause: Stabbing
' +39.28121300000, -76.64492500000, icon_homicide_stabbing, 'p997', '
Davon Douglas
1800 Eagle St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on November 24, 2010
Victim died at Unknown
Cause: Stabbing
' +39.32532530000, -76.55793900000, icon_homicide_bluntforce, 'p996', '
Derrick Cross
4400 Plainfield Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 29 years old
Found on November 24, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.29174800000, -76.68273490000, icon_homicide_shooting, 'p994', '
Charles Burrell
400 N. Loudon Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 24 years old
Found on November 23, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31823160000, -76.56735180000, icon_homicide_stabbing, 'p995', '
Patrick Dolan
3500 Juneway
Baltimore, MD 21213
Race: White
Gender: male
Age: 19 years old
Found on November 23, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Stabbing
' +39.30951940000, -76.60252110000, icon_homicide_shooting, 'p991', '
Sheron Jones
1700 Aisquith St
Baltimore, MD 21202
Race: Black
Gender: female
Age: 28 years old
Found on November 21, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29343790000, -76.69387950000, icon_homicide_shooting, 'p990', '
Carlton Sellman
4600 Edmonson Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 19 years old
Found on November 20, 2010
Victim died at Unknown
Cause: Shooting
' +39.30462310000, -76.66552940000, icon_homicide_shooting, 'p992', '
Jerry Thomas
1500 Poplar Grove St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 29 years old
Found on November 19, 2010
Victim died at Unknown
Cause: Shooting
' +39.31980850000, -76.55438990000, icon_homicide_shooting, 'p993', '
Wilbur Street
4700 Haldane Rd
Baltimore, MD 21206
Race: Black
Gender: male
Age: 52 years old
Found on November 18, 2010
Victim died at Unknown
Cause: Shooting
' +39.29768100000, -76.64938600000, icon_homicide_shooting, 'p989', '
Marcus Brown
2000 W. Lanvale St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on November 17, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28733500000, -76.57183100000, icon_homicide_stabbing, 'p988', '
David Hopkins
400 SE Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 19 years old
Found on November 13, 2010
Victim died at Unknown
Cause: Stabbing
' +39.28838300000, -76.64709490000, icon_homicide_shooting, 'p987', '
Sherrod Mason
1900 W. Baltimore St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 34 years old
Found on November 13, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33793800000, -76.59337900000, icon_homicide_shooting, 'p986', '
Eric Dozier
1500 Roundhill Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 25 years old
Found on November 9, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29112940000, -76.63014190000, icon_homicide_shooting, 'p984', '
Derrius Currie
800 W. Lexington St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 21 years old
Found on November 6, 2010
Victim died at Scene
Cause: Shooting
' +39.28554920000, -76.63868130000, icon_homicide_shooting, 'p982', '
Kevin Anderson
200 S. Woodyear St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 31 years old
Found on November 4, 2010
Victim died at Unknown
Cause: Shooting
' +39.37123050000, -76.56992740000, icon_homicide_stabbing, 'p981', '
Jerry Harden
7000 McClean Blvd
Baltimore, MD 21234
Race: Black
Gender: male
Age: 21 years old
Found on November 4, 2010
Victim died at Scene
Cause: Stabbing
' +39.26218500000, -76.63184500000, icon_homicide_bluntforce, 'p983', '
Wilson Thomas
2200 Kloman St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 44 years old
Found on November 3, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.31839310000, -76.59826180000, icon_homicide_shooting, 'p980', '
Malcolm Hill
2500 Robb St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 53 years old
Found on November 2, 2010
Victim died at Unknown
Cause: Shooting
' +39.30361010000, -76.63054420000, icon_homicide_shooting, 'p978', '
Andrew Joyce
500 Mosher St
Baltimore, MD 21216
Race: White
Gender: male
Age: 23 years old
Found on November 1, 2010
Victim died at Unknown
Cause: Shooting
' +39.31346300000, -76.66172300000, icon_homicide_shooting, 'p977', '
Jovanna Mitchell
2300 Braddish Ave
Baltimore, MD 21217
Race: Black
Gender: female
Age: 20 years old
Found on October 31, 2010
Victim died at Unknown
Cause: Shooting
' +39.32315200000, -76.67794900000, icon_homicide_shooting, 'p985', '
Edwin Green Jr.
3600 Fairview Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 43 years old
Found on October 29, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.28326090000, -76.64278220000, icon_homicide_bluntforce, 'p979', '
Dobia Wright
400 S. Vincent St.
Baltimore, MD 21223
Race: White
Gender: male
Age: 46 years old
Found on October 28, 2010
Victim died at Bon Secours Hospital
Cause: Blunt Force
' +39.32885100000, -76.68532300000, icon_homicide_shooting, 'p975', '
Ronald Clark
3500 Carsdale Ave
Baltimore, MD 21207
Race: Black
Gender: male
Age: 18 years old
Found on October 26, 2010
Victim died at Unknown
Cause: Shooting
' +39.30798990000, -76.64746400000, icon_homicide_shooting, 'p974', '
William Spears
1700 McKean Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 63 years old
Found on October 26, 2010
Victim died at Unknown
Cause: Shooting
' +39.33140260000, -76.68480140000, icon_homicide_shooting, 'p973', '
Alan Chavis
4000 Barrington Rd
Baltimore, MD 21207
Race: Black
Gender: male
Age: 16 years old
Found on October 26, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.30789070000, -76.59003400000, icon_homicide_stabbing, 'p972', '
Mary Williams
2000 E Oliver St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 48 years old
Found on October 25, 2010
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.30507600000, -76.58293000000, icon_homicide_shooting, 'p971', '
Durrell Burroughs
1200 N Milton Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 19 years old
Found on October 25, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29872610000, -76.58768230000, icon_homicide_shooting, 'p970', '
Calvin McNair
2100 E. Monument St.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 20 years old
Found on October 23, 2010
Victim died at Unknown
Cause: Shooting
' +39.28954800000, -76.65029900000, icon_homicide_shooting, 'p969', '
Monta Hunt
2100 W. Fayette St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 25 years old
Found on October 23, 2010
Victim died at Unknown
Cause: Shooting
' +39.28219070000, -76.57695310000, icon_homicide_bluntforce, 'p968', '
Brian Stevenson
2800 Hudson St.
Baltimore, MD 21224
Race: Black
Gender: male
Age: 37 years old
Found on October 16, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Blunt Force
' +39.36535600000, -76.70886500000, icon_homicide_asphyxiation, 'p966', '
Khloe Lewis
3800 Glengyle Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 1 year old
Found on October 13, 2010
Victim died at Sinai Hospital
Cause: Asphyxiation
' +39.29782700000, -76.65011500000, icon_homicide_shooting, 'p965', '
Sherman Payne
800 N. Brice St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 56 years old
Found on October 13, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33506430000, -76.66124930000, icon_homicide_shooting, 'p964', '
Harvey McCall
2600 Shirley Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 42 years old
Found on October 11, 2010
Victim died at Unknown
Cause: Shooting
' +39.30637800000, -76.65730600000, icon_homicide_shooting, 'p963', '
Dennis Waddell
1600 Warwick Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 33 years old
Found on October 10, 2010
Victim died at Unknown
Cause: Shooting
' +39.30735390000, -76.66758100000, icon_homicide_shooting, 'p962', '
James Ingram
3000 Presbury St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 46 years old
Found on October 9, 2010
Victim died at Unknown
Cause: Shooting
' +39.33088820000, -76.61503600000, icon_homicide_shooting, 'p961', '
Travis Lane
3500 N Calvert St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 19 years old
Found on October 9, 2010
Victim died at Union Memorial Hospital
Cause: Shooting
' +39.32336400000, -76.55682100000, icon_homicide_shooting, 'p960', '
Daryll Hood
4700 Shamrock Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 22 years old
Found on October 9, 2010
Victim died at Unknown
Cause: Shooting
' +39.33605500000, -76.67069980000, icon_homicide_shooting, 'p959', '
Michael Morrell
3100 Grantley Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 51 years old
Found on October 9, 2010
Victim died at Unknown
Cause: Shooting
' +39.31439300000, -76.57316230000, icon_homicide_stabbing, 'p958', '
Sterling Palmer
2600 Edison Highway
Baltimore, MD 21213
Race: Black
Gender: male
Age: 78 years old
Found on October 8, 2010
Victim died at Unknown
Cause: Stabbing
' +39.26274700000, -76.63344200000, icon_homicide_shooting, 'p957', '
Kirk Carter
2300 Sidney Ave
Baltimore, MD 21230
Race: Black
Gender: male
Age: 22 years old
Found on October 6, 2010
Victim died at Unknown
Cause: Shooting
' +39.24700440000, -76.62878500000, icon_homicide_shooting, 'p956', '
Randol Bumcombe
2700 Claflin Ct
Baltimore, MD 21225
Race: Black
Gender: female
Age: 24 years old
Found on October 5, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29112940000, -76.63014190000, icon_homicide_shooting, 'p955', '
Arthur Peacock
800 W. Lexington St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 34 years old
Found on September 30, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31924800000, -76.55145600000, icon_homicide_shooting, 'p954', '
Ardrey Murphy
5500 Bowleys Lane
Baltimore, MD 21206
Race: Black
Gender: male
Age: 28 years old
Found on September 29, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.31023800000, -76.64760690000, icon_homicide_stabbing, 'p953', '
Yassmin Lindo
1900 mckean ave
Baltimore, MD 21217
Race: Black
Gender: female
Age: 36 years old
Found on September 28, 2010
Victim died at Unknown
Cause: Stabbing
' +39.32314600000, -76.68337200000, icon_homicide_shooting, 'p952', '
Donnie Martin
3100 Chelsea Terrace
Baltimore, MD 21216
Race: Black
Gender: male
Age: 38 years old
Found on September 25, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30756700000, -76.59523200000, icon_homicide_shooting, 'p951', '
James Schools
1500 N Broadway
Baltimore, MD 21213
Race: Black
Gender: male
Age: 31 years old
Found on September 23, 2010
Victim died at Unknown
Cause: Shooting
' +39.32073910000, -76.57476320000, icon_homicide_shooting, 'p950', '
Sean Cooper
3200 Belair Rd
Baltimore, MD 21213
Race: Black
Gender: male
Age: 20 years old
Found on September 22, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31554000000, -76.59980800000, icon_homicide_shooting, 'p949', '
George Lewis
1200 Bonaparte Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 25 years old
Found on September 19, 2010
Victim died at Unknown
Cause: Shooting
' +39.32042020000, -76.67701870000, icon_homicide_shooting, 'p948', '
Isaiah White
2900 Edgewood St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 28 years old
Found on September 19, 2010
Victim died at Unknown
Cause: Shooting
' +39.30581300000, -76.64196990000, icon_homicide_bluntforce, 'p947', '
Cecelia Mitchell
1500 N. Stricker St
Baltimore, MD 21217
Race: Black
Gender: female
Age: 66 years old
Found on September 17, 2010
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.29728440000, -76.59231210000, icon_homicide_shooting, 'p946', '
Jean Davis
600 N. Wolfe St
Baltimore, MD 21287
Race: Black
Gender: female
Age: 84 years old
Found on September 16, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.27295100000, -76.53612600000, icon_homicide_shooting, 'p945', '
Willie Johnson
1700 kane st
Baltimore, MD 21224
Race: Black
Gender: male
Age: 30 years old
Found on September 13, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.30622370000, -76.65919650000, icon_homicide_shooting, 'p943', '
Marcel Burton
2600 Baker St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 33 years old
Found on September 9, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33783600000, -76.66221800000, icon_homicide_bluntforce, 'p944', '
Robert Lockett
2630 Quantico Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 48 years old
Found on September 9, 2010
Victim died at Sinai Hospital
Cause: Blunt Force
' +39.29659300000, -76.67878100000, icon_homicide_shooting, 'p941', '
Thomas Vas
800 Allendale St
Baltimore, MD 21229
Race: White
Gender: male
Age: 35 years old
Found on September 7, 2010
Victim died at Unknown
Cause: Shooting
' +39.30656940000, -76.64972190000, icon_homicide_shooting, 'p940', '
Levern Domneys
2000 Baker St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on September 3, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.27996600000, -76.65878700000, icon_homicide_shooting, 'p939', '
Datea Scott-Smith
500 East Lynn Ave
Baltimore, MD 21223
Race: Black
Gender: female
Age: 30 years old
Found on September 2, 2010
Victim died at Unknown
Cause: Shooting
' +39.32946590000, -76.56659700000, icon_homicide_shooting, 'p937', '
Nathaniel Santiago
4100 Harris Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on August 31, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28472840000, -76.61309780000, icon_homicide_other, 'p938', '
Ankush Gupta
330 S. Calvert St
Baltimore, MD 21201
Race: Unknown
Gender: male
Age: 22 years old
Found on August 31, 2010
Victim died at Scene
Cause: Other
' +39.31435160000, -76.64509170000, icon_homicide_shooting, 'p936', '
Louis Scott
2700 Parkwood Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 29 years old
Found on August 30, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31748050000, -76.65157600000, icon_homicide_bluntforce, 'p942', '
John Lemon Jr.
2600 Reisterstown Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 44 years old
Found on August 30, 2010
Victim died at Sinai Hospital
Cause: Blunt Force
' +39.25038300000, -76.64060000000, icon_homicide_stabbing, 'p935', '
Carrington McNutt
3300 Annapolis Rd
Baltimore, MD 21230
Race: Black
Gender: male
Age: 23 years old
Found on August 28, 2010
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30137650000, -76.60726170000, icon_homicide_bluntforce, 'p934', '
Albert Bethea
700 E. Eager St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 57 years old
Found on August 24, 2010
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.34993200000, -76.67210300000, icon_homicide_bluntforce, 'p933', '
Contray Merchant
5100 Queensberry Rd
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on August 22, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.29378300000, -76.57652800000, icon_homicide_shooting, 'p932', '
Jose Gonzalez-Coreas
118 N. Linwood Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 43 years old
Found on August 21, 2010
Victim died at Unknown
Cause: Shooting
' +39.29495400000, -76.57803100000, icon_homicide_bluntforce, 'p931', '
Martin Reyes
200 N. Kenwood Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 51 years old
Found on August 21, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.29465330000, -76.62736730000, icon_homicide_shooting, 'p928', '
Donald Carter
700 W. Franklin St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 39 years old
Found on August 16, 2010
Victim died at Unknown
Cause: Shooting
' +39.30282400000, -76.61015000000, icon_homicide_shooting, 'p926', '
Isaiah Gordon
400 E Chase St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 20 years old
Found on August 15, 2010
Victim died at Unknown
Cause: Shooting
' +39.31321400000, -76.60372300000, icon_homicide_shooting, 'p925', '
Westley Lewis
2000 Robb St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 19 years old
Found on August 14, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.23951000000, -76.60545500000, icon_homicide_shooting, 'p924', '
Andre Graham
3500 Horton Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 27 years old
Found on August 13, 2010
Victim died at Unknown
Cause: Shooting
' +39.31924160000, -76.57223360000, icon_homicide_shooting, 'p923', '
Gerald Gray
3100 Edison Highway
Baltimore, MD 21213
Race: Black
Gender: male
Age: 35 years old
Found on August 12, 2010
Victim died at Unknown
Cause: Shooting
' +39.32791790000, -76.68281800000, icon_homicide_shooting, 'p922', '
Shelred Carr
3400 Garrison Blvd
Baltimore, MD 21215
Race: Black
Gender: male
Age: 58 years old
Found on August 12, 2010
Victim died at Unknown
Cause: Shooting
' +39.30862590000, -76.59527600000, icon_homicide_shooting, 'p930', '
Shawn Wright
1600 N. Broadway
Baltimore, MD 21213
Race: Black
Gender: male
Age: 30 years old
Found on August 11, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29796500000, -76.64162100000, icon_homicide_shooting, 'p929', '
Franklin Spencer
1500 W. Lanvale St
Baltimore, MD 21215
Race: Black
Gender: male
Age: 39 years old
Found on August 11, 2010
Victim died at Unknown
Cause: Shooting
' +39.31488580000, -76.59630070000, icon_homicide_shooting, 'p920', '
Tavon Caldwell
2200 Germania Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 25 years old
Found on August 8, 2010
Victim died at Unknown
Cause: Shooting
' +39.28446700000, -76.64686300000, icon_homicide_bluntforce, 'p921', '
Theodore Corwin
1900 McHenry St
Baltimore, MD 21223
Race: Asian
Gender: male
Age: 30 years old
Found on August 7, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.31181520000, -76.62807590000, icon_homicide_stabbing, 'p919', '
Christopher Miller
700 Lennox St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on August 7, 2010
Victim died at Unknown
Cause: Stabbing
' +39.28819740000, -76.65850900000, icon_homicide_shooting, 'p918', '
Martin York
10 Shipley St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 45 years old
Found on August 7, 2010
Victim died at Unknown
Cause: Shooting
' +39.32279400000, -76.57690590000, icon_homicide_shooting, 'p917', '
Jarrod Lee Covel
2800 Clifton Park Terrace
Baltimore, MD 21213
Race: Black
Gender: male
Age: 20 years old
Found on August 6, 2010
Victim died at Unknown
Cause: Shooting
' +39.33812500000, -76.66127300000, icon_homicide_shooting, 'p916', '
Dionndra Dugger
2600 Quantico Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 20 years old
Found on August 1, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.31204900000, -76.60227900000, icon_homicide_shooting, 'p915', '
Milton Hill
1200 E North Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 70 years old
Found on July 30, 2010
Victim died at Scene
Cause: Shooting
' +39.34770700000, -76.67946000000, icon_homicide_shooting, 'p913', '
Shawn Crawford
5200 Florence Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 36 years old
Found on July 30, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.31002600000, -76.61342990000, icon_homicide_shooting, 'p912', '
Emmanuel Thomas
200 E. Fafayette Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 21 years old
Found on July 29, 2010
Victim died at Unknown
Cause: Shooting
' +39.33743900000, -76.66316500000, icon_homicide_bluntforce, 'p914', '
Steven Harris
4200 Pimlico Road
Baltimore, MD 21215
Race: Black
Gender: male
Age: 38 years old
Found on July 29, 2010
Victim died at Scene
Cause: Blunt Force
' +39.27757880000, -76.70017030000, icon_homicide_shooting, 'p911', '
Jermaine Parker
5100 Williston St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 24 years old
Found on July 27, 2010
Victim died at Scene
Cause: Shooting
' +39.34827900000, -76.56526800000, icon_homicide_stabbing, 'p910', '
Corey Sims
5100 Harford Rd
Baltimore, MD 21214
Race: Black
Gender: male
Age: 19 years old
Found on July 27, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Stabbing
' +39.31943410000, -76.61552280000, icon_homicide_stabbing, 'p908', '
Stephen Pitcairn
2600 St Paul St
Baltimore, MD 21218
Race: White
Gender: male
Age: 23 years old
Found on July 25, 2010
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30728080000, -76.60098930000, icon_homicide_shooting, 'p907', '
John Hall
1500 Lanhorne Ct
Baltimore, MD 21202
Race: Black
Gender: male
Age: 30 years old
Found on July 25, 2010
Victim died at Unknown
Cause: Shooting
' +39.31000450000, -76.61219880000, icon_homicide_stabbing, 'p906', '
Justin Kendrick
300 E. Lafayette Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 24 years old
Found on July 24, 2010
Victim died at Unknown
Cause: Stabbing
' +39.29693400000, -76.57959300000, icon_homicide_shooting, 'p905', '
Juan Hernandez
500 N. Lakewood Ave
Baltimore, MD 21205
Race: Hispanic
Gender: male
Age: 27 years old
Found on July 24, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.37190920000, -76.56712870000, icon_homicide_shooting, 'p909', '
Jamison Ford
2300 Perring Manor Rd
Baltimore, MD 21234
Race: Black
Gender: male
Age: 30 years old
Found on July 23, 2010
Victim died at Unknown
Cause: Shooting
' +39.22827340000, -76.59897200000, icon_homicide_shooting, 'p904', '
Curtis Williams
4200 10th St
Baltimore, MD 21225
Race: Black
Gender: male
Age: 26 years old
Found on July 22, 2010
Victim died at Scene
Cause: Shooting
' +39.29251200000, -76.63401750000, icon_homicide_stabbing, 'p902', '
Lonnie Howie Jr
300 N. Schroeder St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 42 years old
Found on July 20, 2010
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.33195300000, -76.66125500000, icon_homicide_shooting, 'p901', '
Javon Perry
3800 Park Heights Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 27 years old
Found on July 17, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.32861830000, -76.63110420000, icon_homicide_bluntforce, 'p900', '
John Sandy
3400 Elm Ave
Baltimore, MD 21211
Race: White
Gender: male
Age: 73 years old
Found on July 13, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Blunt Force
' +39.31425640000, -76.61872110000, icon_homicide_shooting, 'p899', '
Yolanda Howard
100 W. 22nd St
Baltimore, MD 21218
Race: Black
Gender: female
Age: 35 years old
Found on July 12, 2010
Victim died at Scene
Cause: Shooting
' +39.34656900000, -76.68080700000, icon_homicide_shooting, 'p898', '
Ramah Reid
5200 Cuthbert Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 26 years old
Found on July 7, 2010
Victim died at Scene
Cause: Shooting
' +39.30613890000, -76.60230890000, icon_homicide_shooting, 'p897', '
Vance Williams
1500 E. Hoffman St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 19 years old
Found on July 6, 2010
Victim died at Scene
Cause: Shooting
' +39.31993700000, -76.59797800000, icon_homicide_shooting, 'p896', '
John Crowder
2600 Garrett Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 17 years old
Found on July 5, 2010
Victim died at Unknown
Cause: Shooting
' +39.30248500000, -76.58559800000, icon_homicide_shooting, 'p895', '
Jason Rogers
1000 N. Patterson Park Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 30 years old
Found on July 4, 2010
Victim died at Unknown
Cause: Shooting
' +39.30929100000, -76.58385000000, icon_homicide_shooting, 'p893', '
Warren Mitchell
1600 N. Port St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 24 years old
Found on July 3, 2010
Victim died at Unknown
Cause: Shooting
' +39.31154300000, -76.63970900000, icon_homicide_shooting, 'p894', '
Raynard Johnson
2400 Druid Hill Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on July 3, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28988900000, -76.61207100000, icon_homicide_shooting, 'p892', '
Chase Love
200 E. Baltimore ST
Baltimore, MD 21202
Race: Black
Gender: male
Age: 26 years old
Found on July 2, 2010
Victim died at Unknown
Cause: Shooting
' +39.31069630000, -76.62958570000, icon_homicide_shooting, 'p891', '
Renardo Broom
700 W. North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 16 years old
Found on July 1, 2010
Victim died at Unknown
Cause: Shooting
' +39.32351200000, -76.59648900000, icon_homicide_shooting, 'p890', '
Phillip Bundy
1500 Carswell St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 28 years old
Found on June 29, 2010
Victim died at Unknown
Cause: Shooting
' +39.31324600000, -76.59208800000, icon_homicide_shooting, 'p889', '
Antwan Pullen
2000 N. Wolfe St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 23 years old
Found on June 28, 2010
Victim died at Unknown
Cause: Shooting
' +39.34437500000, -76.68300900000, icon_homicide_bluntforce, 'p888', '
Gloria Harrod
5200 St. Charles Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 47 years old
Found on June 28, 2010
Victim died at Unknown
Cause: Blunt Force
' +39.28884990000, -76.65906360000, icon_homicide_shooting, 'p887', '
Eric Williams
2600 W. Fayette ST
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on June 27, 2010
Victim died at Unknown
Cause: Shooting
' +39.29314900000, -76.57052200000, icon_homicide_shooting, 'p886', '
Evando Minor
3300 Noble St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 23 years old
Found on June 26, 2010
Victim died at Unknown
Cause: Shooting
' +39.34628400000, -76.67007300000, icon_homicide_shooting, 'p885', '
Wesley Lashley
3100 Woodland Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on June 24, 2010
Victim died at Unknown
Cause: Shooting
' +39.30440230000, -76.63147300000, icon_homicide_shooting, 'p884', '
Tyree Page
500 Mc Mechen St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 34 years old
Found on June 23, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29627500000, -76.57230100000, icon_homicide_shooting, 'p882', '
Durell Cartwright
400 N. East Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 30 years old
Found on June 21, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30149460000, -76.65828190000, icon_homicide_shooting, 'p881', '
Daniel Payne
2500 Winchester St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 55 years old
Found on June 20, 2010
Victim died at St. Agnes Hospital
Cause: Shooting
' +39.31247100000, -76.59069000000, icon_homicide_shooting, 'p880', '
Marquell Turner
1900 Washington St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 19 years old
Found on June 19, 2010
Victim died at Unknown
Cause: Shooting
' +39.29655500000, -76.64595900000, icon_homicide_shooting, 'p879', '
Derrick Pinkney
700 N. Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 33 years old
Found on June 15, 2010
Victim died at Unknown
Cause: Shooting
' +39.24501350000, -76.62740550000, icon_homicide_shooting, 'p883', '
Larry Griffin
2900 Spelman Rd
Baltimore, MD 21225
Race: Black
Gender: male
Age: 25 years old
Found on June 14, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29476600000, -76.58151200000, icon_homicide_shooting, 'p878', '
Avon Beasley
200 N. Rose St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 25 years old
Found on June 13, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29367780000, -76.60180830000, icon_homicide_shooting, 'p877', '
Spencer Williams
1100 New Hope Circle
Baltimore, MD 21202
Race: Black
Gender: male
Age: 22 years old
Found on June 11, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29983100000, -76.68557300000, icon_homicide_asphyxiation, 'p875', '
Glennie Reid
1200 N Augusta Ave
Baltimore, MD 21229
Race: Black
Gender: female
Age: 83 years old
Found on June 7, 2010
Victim died at Scene
Cause: Asphyxiation
' +39.30096010000, -76.61661920000, icon_homicide_shooting, 'p876', '
Tyrone Brown
1 W. Eager St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 32 years old
Found on June 5, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31575690000, -76.54165530000, icon_homicide_stabbing, 'p873', '
Mark Zimmerman
6059 Moravia Park Dr
Baltimore, MD 21206
Race: White
Gender: male
Age: 44 years old
Found on June 4, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Stabbing
' +39.27061500000, -76.59056900000, icon_homicide_bluntforce, 'p874', '
Matthew Martin
1300 Richardson St
Baltimore, MD 21230
Race: White
Gender: male
Age: 31 years old
Found on June 4, 2010
Victim died at Scene
Cause: Blunt Force
' +39.30670200000, -76.64575260000, icon_homicide_shooting, 'p872', '
James Johnson
1601 Bruce Ct
Baltimore, MD 21217
Race: Black
Gender: male
Age: 19 years old
Found on June 1, 2010
Victim died at Unknown
Cause: Shooting
' +39.29389730000, -76.64551940000, icon_homicide_shooting, 'p871', '
Deandre Leeper
500 N. Fulton Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 27 years old
Found on June 1, 2010
Victim died at Unknown
Cause: Shooting
' +39.31732900000, -76.54861800000, icon_homicide_stabbing, 'p870', '
Kevin Belton
4800 Truesdale Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 43 years old
Found on May 31, 2010
Victim died at Unknown
Cause: Stabbing
' +39.33627600000, -76.59652100000, icon_homicide_shooting, 'p869', '
Don Rice
3900 Loch Raven Blvd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 59 years old
Found on May 31, 2010
Victim died at Unknown
Cause: Shooting
' +39.28594780000, -76.64996770000, icon_homicide_shooting, 'p867', '
Damon Chase
68 S. Pulaski St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 30 years old
Found on May 30, 2010
Victim died at Unknown
Cause: Shooting
' +39.28594780000, -76.64996770000, icon_homicide_shooting, 'p868', '
Michael Hatch
68 S. Pulaski St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 32 years old
Found on May 30, 2010
Victim died at Unknown
Cause: Shooting
' +39.28302320000, -76.64978820000, icon_homicide_shooting, 'p866', '
Alvin Martin
2100 Ramsay St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 28 years old
Found on May 30, 2010
Victim died at Unknown
Cause: Shooting
' +39.29575600000, -76.58157300000, icon_homicide_shooting, 'p864', '
Davon Dorsey
400 N. Rose St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 18 years old
Found on May 29, 2010
Victim died at Unknown
Cause: Shooting
' +39.22811200000, -76.58900400000, icon_homicide_shooting, 'p865', '
Ronald Anderson
4100 Pennington Ave
Baltimore, MD 21226
Race: Black
Gender: male
Age: 30 years old
Found on May 29, 2010
Victim died at Unknown
Cause: Shooting
' +39.29908900000, -76.58075100000, icon_homicide_shooting, 'p863', '
Timothy Gaskins
2600 E Monument St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 22 years old
Found on May 29, 2010
Victim died at Unknown
Cause: Shooting
' +39.30142300000, -76.57910100000, icon_homicide_shooting, 'p862', '
Donte Vandiver
900 N. Belnord Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 19 years old
Found on May 24, 2010
Victim died at Unknown
Cause: Shooting
' +39.30933200000, -76.66771200000, icon_homicide_shooting, 'p861', '
Jimmy Elton
3000 W. North Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 19 years old
Found on May 20, 2010
Victim died at Unknown
Cause: Shooting
' +39.34203400000, -76.69185800000, icon_homicide_shooting, 'p860', '
Jamie Hilton-Bey
4300 Elderon Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 34 years old
Found on May 20, 2010
Victim died at Unknown
Cause: Shooting
Read the article
' +39.28905520000, -76.59823660000, icon_homicide_shooting, 'p859', '
Mark Crockett
200 S. Spring Ct
Baltimore, MD 21231
Race: Black
Gender: male
Age: 34 years old
Found on May 17, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32193900000, -76.59034600000, icon_homicide_stabbing, 'p858', '
Michael Pryor
2824 Harford Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 32 years old
Found on May 15, 2010
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.34881000000, -76.67739900000, icon_homicide_shooting, 'p857', '
Jerome Booze Jr.
3313 Paton Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 30 years old
Found on May 14, 2010
Victim died at St. Agnes Hospital
Cause: Shooting
' +39.33770030000, -76.67108820000, icon_homicide_shooting, 'p856', '
Michael Carroway
4300 Daytona Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 49 years old
Found on May 12, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.33796930000, -76.60253480000, icon_homicide_shooting, 'p854', '
Jerome Simmons
900 North Hill Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 34 years old
Found on May 8, 2010
Victim died at Scene
Cause: Shooting
' +39.33796930000, -76.60253480000, icon_homicide_shooting, 'p855', '
George Toe
900 North Hill Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 30 years old
Found on May 8, 2010
Victim died at Scene
Cause: Shooting
' +39.29688190000, -76.58678400000, icon_homicide_shooting, 'p853', '
Anthony Crist
500 N. Collington
Baltimore, MD 21205
Race: White
Gender: male
Age: 42 years old
Found on May 8, 2010
Victim died at Scene
Cause: Shooting
' +39.32662350000, -76.59438460000, icon_homicide_asphyxiation, 'p852', '
Betsy Riggin
3200 The Alameda
Baltimore, MD 21218
Race: White
Gender: female
Age: 29 years old
Found on May 7, 2010
Victim died at Scene
Cause: Asphyxiation
' +39.23667420000, -76.61046920000, icon_homicide_bluntforce, 'p850', '
Wayne Clark
3733 s. hanover st
Baltimore, MD 21225
Race: White
Gender: male
Age: 36 years old
Found on May 5, 2010
Victim died at Harbor Hospital
Cause: Blunt Force
' +39.29100590000, -76.63392740000, icon_homicide_bluntforce, 'p851', '
David Beers
1000 W. Lexington St
Baltimore, MD 21223
Race: White
Gender: male
Age: 49 years old
Found on May 5, 2010
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
Read the article
' +39.28586390000, -76.65013600000, icon_homicide_shooting, 'p849', '
Jonathan Byrd
2100 Frederick AVe
Baltimore, MD 21223
Race: Black
Gender: male
Age: 29 years old
Found on May 4, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.28989500000, -76.64172000000, icon_homicide_shooting, 'p848', '
Andrew Copeland
1500 W. Fayette St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 16 years old
Found on May 3, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
Read the article
' +39.29112940000, -76.63014190000, icon_homicide_shooting, 'p847', '
David Mitchell
800 W Lexington St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 16 years old
Found on April 29, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.35100000000, -76.60917490000, icon_homicide_shooting, 'p846', '
Dwayne Majett
500 Chateau Ave
Baltimore, MD 21212
Race: Black
Gender: male
Age: 30 years old
Found on April 27, 2010
Victim died at Good Samaritan Hospital
Cause: Shooting
Read the article
' +39.27921500000, -76.63658700000, icon_homicide_shooting, 'p845', '
David Woods
1200 Bayard St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 31 years old
Found on April 26, 2010
Victim died at Unknown
Cause: Shooting
' +39.33221900000, -76.69717300000, icon_homicide_shooting, 'p844', '
Ramie Mays
4800 Liberty Heights Ave
Baltimore, MD 21207
Race: Black
Gender: male
Age: 18 years old
Found on April 25, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.30894700000, -76.64671190000, icon_homicide_shooting, 'p843', '
Kevin Hyslop
1800 N. Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 33 years old
Found on April 20, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30401300000, -76.58288400000, icon_homicide_shooting, 'p839', '
Jamal Thomas
1100 N. Milton Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 30 years old
Found on April 18, 2010
Victim died at Scene
Cause: Shooting
' +39.34900910000, -76.68442700000, icon_homicide_shooting, 'p842', '
Sean Johnson
5400 Narcissus Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 40 years old
Found on April 18, 2010
Victim died at Scene
Cause: Shooting
' +39.30677900000, -76.58994400000, icon_homicide_bluntforce, 'p841', '
Melonie Hamber
2000 E. Hoffman St
Baltimore, MD 21213
Race: Black
Gender: female
Age: 2 years old
Found on April 17, 2010
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.31204900000, -76.60227900000, icon_homicide_shooting, 'p840', '
Branden Bowser
1200 E. North Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 23 years old
Found on April 16, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.35493730000, -76.70060670000, icon_homicide_shooting, 'p838', '
Gavin Campbell
4100 Kenshaw Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 24 years old
Found on April 16, 2010
Victim died at Unknown
Cause: Shooting
' +39.31146600000, -76.60336300000, icon_homicide_shooting, 'p837', '
Nelson Armstrong
1101 E. North Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 21 years old
Found on April 11, 2010
Victim died at Unknown
Cause: Shooting
' +39.34925630000, -76.67996350000, icon_homicide_shooting, 'p836', '
Anthony Walker
5300 Denmore
Baltimore, MD 21215
Race: Black
Gender: male
Age: 36 years old
Found on April 11, 2010
Victim died at Scene
Cause: Shooting
' +39.32813100000, -76.60892800000, icon_homicide_shooting, 'p835', '
Damon Minor
501 E. 33rd St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 21 years old
Found on April 10, 2010
Victim died at Unknown
Cause: Shooting
' +39.32360200000, -76.60970800000, icon_homicide_shooting, 'p834', '
Charles Bowman
2900 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 72 years old
Found on April 8, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.35430100000, -76.60922700000, icon_homicide_shooting, 'p833', '
Sean Ramseur
500 Glenwood Ave
Baltimore, MD 21212
Race: Black
Gender: male
Age: 40 years old
Found on April 7, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
Read the article
' +39.36706900000, -76.57140820000, icon_homicide_shooting, 'p832', '
Raymond Langford Jr.
2200 Fleetwood Ave
Baltimore, MD 21214
Race: Black
Gender: male
Age: 25 years old
Found on April 6, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.30955850000, -76.70138730000, icon_homicide_shooting, 'p831', '
Michael Thomas
1900 Eagle Dr
Baltimore, MD 21207
Race: Black
Gender: male
Age: 27 years old
Found on March 29, 2010
Victim died at Scene
Cause: Shooting
' +39.28799840000, -76.65411200000, icon_homicide_shooting, 'p829', '
Antonio Wilson
10 N. Calverton Rd
Baltimore, MD 21223
Race: Black
Gender: male
Age: 29 years old
Found on March 28, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30703900000, -76.58165500000, icon_homicide_shooting, 'p830', '
Charles Bowman
1400 N. Luzerne Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 16 years old
Found on March 27, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.35853160000, -76.57128690000, icon_homicide_shooting, 'p828', '
Phillip Holmes
2200 Roselawn
Baltimore, MD 21214
Race: Black
Gender: male
Age: 22 years old
Found on March 23, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30657000000, -76.58093200000, icon_homicide_shooting, 'p827', '
Michael Holt
2600 Grogan Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 20 years old
Found on March 22, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32605700000, -76.65791290000, icon_homicide_shooting, 'p826', '
Michael Thomas
3400 Park Heights Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 27 years old
Found on March 21, 2010
Victim died at Unknown
Cause: Shooting
' +39.31193300000, -76.60867390000, icon_homicide_shooting, 'p825', '
Carlos Williams
1900 Boone St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 50 years old
Found on March 21, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32073910000, -76.57476320000, icon_homicide_shooting, 'p824', '
Donte Gee
3200 Belair Rd
Baltimore, MD 21213
Race: Black
Gender: male
Age: 25 years old
Found on March 18, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31415280000, -76.53982850000, icon_homicide_shooting, 'p823', '
Daniel Dixon
6510 frankford ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 25 years old
Found on March 15, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.31776780000, -76.61973650000, icon_homicide_shooting, 'p822', '
Asia Carter
200 W. 25th St
Baltimore, MD 21211
Race: Black
Gender: male
Age: 37 years old
Found on March 15, 2010
Victim died at Scene
Cause: Shooting
' +39.31668950000, -76.63041280000, icon_homicide_bluntforce, 'p821', '
Rajahnthon Haynie
700 Druid Park Lake Drive
Baltimore, MD 21217
Race: Black
Gender: male
Age: 1 year old
Found on March 14, 2010
Victim died at Scene
Cause: Blunt Force
' +39.31946500000, -76.61435900000, icon_homicide_shooting, 'p820', '
Donatello Fenner
2600 N Calvert St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 22 years old
Found on March 12, 2010
Victim died at Unknown
Cause: Shooting
' +39.28954800000, -76.65029900000, icon_homicide_shooting, 'p818', '
Jamal Rogers
2100 w. fayette st
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on March 5, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32870700000, -76.56542900000, icon_homicide_shooting, 'p817', '
Alvin McMiller
4300 Belair Rd
Baltimore, MD 21206
Race: Black
Gender: male
Age: 23 years old
Found on March 4, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28592820000, -76.63512980000, icon_homicide_bluntforce, 'p819', '
Lee McCoy
201 S. Arlington ST
Baltimore, MD 21223
Race: Black
Gender: male
Age: 44 years old
Found on March 3, 2010
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.30677400000, -76.59891100000, icon_homicide_shooting, 'p816', '
Kenly Wheeler
1400 N Caroline St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 29 years old
Found on March 3, 2010
Victim died at Scene
Cause: Shooting
' +39.30539000000, -76.64642200000, icon_homicide_shooting, 'p815', '
Dejuan Green
1500 N. Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 23 years old
Found on February 26, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30360740000, -76.66369290000, icon_homicide_stabbing, 'p814', '
Timothy Mason
1400 N. Dukeland St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 35 years old
Found on February 23, 2010
Victim died at Scene
Cause: Stabbing
' +39.31950700000, -76.56590500000, icon_homicide_shooting, 'p813', '
Leonard Gee
3500 Cliftmont Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 28 years old
Found on February 21, 2010
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.28920100000, -76.61410200000, icon_homicide_shooting, 'p812', '
James Ball
10 S. Light St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 38 years old
Found on February 20, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30771200000, -76.65523800000, icon_homicide_shooting, 'p811', '
David Scott
1700 Ruxton Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 35 years old
Found on February 17, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29927390000, -76.57973800000, icon_homicide_stabbing, 'p810', '
Adam Couther
700 n. lakewood ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 27 years old
Found on February 17, 2010
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.34520340000, -76.67139180000, icon_homicide_shooting, 'p809', '
Daron Howard
3200 Woodland Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on February 16, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.30182900000, -76.65393000000, icon_homicide_shooting, 'p808', '
Rodney Stephens
1200 N. Bentalou St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 38 years old
Found on February 7, 2010
Victim died at Scene
Cause: Shooting
' +39.28369000000, -76.68254390000, icon_homicide_stabbing, 'p807', '
Damien Osacoca
4000 Massachusetts Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 24 years old
Found on February 6, 2010
Victim died at Sinai Hospital
Cause: Stabbing
' +39.33904510000, -76.65776360000, icon_homicide_shooting, 'p806', '
Shaun Henderson
2400 Loyola Southway
Baltimore, MD 21209
Race: Black
Gender: male
Age: 30 years old
Found on February 5, 2010
Victim died at Sinai Hospital
Cause: Shooting
' +39.29525200000, -76.65070800000, icon_homicide_shooting, 'p805', '
Juan Tucker
2100 Edmondson Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 34 years old
Found on February 3, 2010
Victim died at Unknown
Cause: Shooting
' +39.31321600000, -76.64864900000, icon_homicide_shooting, 'p804', '
John England
2200 N. Monroe St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 27 years old
Found on February 1, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28997940000, -76.63103100000, icon_homicide_stabbing, 'p803', '
Kevin Davis
851 W. Fayette St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 31 years old
Found on January 29, 2010
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.31220600000, -76.60285600000, icon_homicide_shooting, 'p802', '
Michael Manning
1900 Aisquith St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 35 years old
Found on January 25, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.37084390000, -76.56768030000, icon_homicide_stabbing, 'p801', '
Darius Ray
6900 McClean Blvd
Baltimore, MD 21234
Race: Black
Gender: male
Age: 20 years old
Found on January 23, 2010
Victim died at Sinai Hospital
Cause: Stabbing
' +39.30977400000, -76.59861700000, icon_homicide_shooting, 'p800', '
Raymond Gibson
1700 N. Caroline St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 21 years old
Found on January 19, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29509800000, -76.62147200000, icon_homicide_stabbing, 'p798', '
James Jackson
400 W. Franklin St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 27 years old
Found on January 18, 2010
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.29794050000, -76.62953460000, icon_homicide_shooting, 'p799', '
Darius Goines
600 W Hoffman St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 19 years old
Found on January 18, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30980600000, -76.65426700000, icon_homicide_shooting, 'p797', '
Darnell Taylor
2300 W. North Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 48 years old
Found on January 16, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33064600000, -76.56697000000, icon_homicide_shooting, 'p795', '
Derrick Taylor
3900 Eierman Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 20 years old
Found on January 10, 2010
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30147500000, -76.58052100000, icon_homicide_shooting, 'p794', '
Darel Alston
900 N. Glover St.
Baltimore, MD 21205
Race: Black
Gender: male
Age: 38 years old
Found on January 10, 2010
Victim died at Scene
Cause: Shooting
' +39.30614400000, -76.58302300000, icon_homicide_bluntforce, 'p796', '
Sean Johnson
1300 N. Milton Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 41 years old
Found on January 7, 2010
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.28881700000, -76.66003700000, icon_homicide_shooting, 'p793', '
Antonio Lashley
100 N. Franklintown Rd
Baltimore, MD 21223
Race: Black
Gender: male
Age: 21 years old
Found on January 6, 2010
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32057800000, -76.65560300000, icon_homicide_shooting, 'p792', '
Marcal Walton
2312 Ocala Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 33 years old
Found on January 3, 2010
Victim died at Scene
Cause: Shooting
' +39.35000000000, -76.66580000000, icon_homicide_shooting, 'p1222', '
Tiyon Campbell
2800 W Garrison Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 31 years old
Found on December 28, 2011
Victim died at Scene
Cause: Shooting
' +39.24972920000, -76.63036560000, icon_homicide_shooting, 'p1221', '
Damond Wallace
2700 Giles Rd
Baltimore, MD 21225
Race: Black
Gender: male
Age: 30 years old
Found on December 24, 2011
Victim died at Unknown
Cause: Shooting
' +39.32989760000, -76.60500810000, icon_homicide_bluntforce, 'p1220', '
Shirley Garrett
800 E 34 St
Baltimore, MD 21218
Race: Black
Gender: female
Age: 67 years old
Found on December 22, 2011
Victim died at Union Memorial Hospital
Cause: Blunt Force
' +39.28483780000, -76.65613470000, icon_homicide_shooting, 'p1219', '
Dameone Suggs
2500 W Pratt St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 40 years old
Found on December 21, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30259890000, -76.66898810000, icon_homicide_shooting, 'p1218', '
Donte Collins
1500 Rosedale St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 29 years old
Found on December 19, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29043840000, -76.65167190000, icon_homicide_shooting, 'p1216', '
Dayon Barnes
200 N Smallwood St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 27 years old
Found on December 18, 2011
Victim died at Bon Secours Hospital
Cause: Shooting
' +39.32925090000, -76.56409650000, icon_homicide_shooting, 'p1217', '
Jeffrey Smith
4200 Nicholas Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 32 years old
Found on December 17, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31245700000, -76.67862900000, icon_homicide_shooting, 'p1215', '
Lawrence Edwards
2200 Elsinore Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 23 years old
Found on December 16, 2011
Victim died at Scene
Cause: Shooting
' +39.33135490000, -76.65778650000, icon_homicide_stabbing, 'p1214', '
Dwight Jones
2500 Violet Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 58 years old
Found on December 10, 2011
Victim died at Scene
Cause: Stabbing
' +39.32351700000, -76.61486400000, icon_homicide_shooting, 'p1213', '
Brandon Hudson
2900 N. Calvert St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 22 years old
Found on December 8, 2011
Victim died at Scene
Cause: Shooting
' +39.29272400000, -76.57214000000, icon_homicide_stabbing, 'p1210', '
Carlos Martinez
1 N. East Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 27 years old
Found on December 6, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31090600000, -76.61640790000, icon_homicide_shooting, 'p1211', '
Ronald Watkins
1 E. North Ave
Baltimore, MD 21201
Race: Black
Gender: male
Age: 35 years old
Found on December 6, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28126900000, -76.65269900000, icon_homicide_shooting, 'p1209', '
Kenneth Davis
500 S Bentalou St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 29 years old
Found on November 29, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29462600000, -76.63229500000, icon_homicide_shooting, 'p1208', '
Tavon Toney
900 W Franklin St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 25 years old
Found on November 22, 2011
Victim died at Unknown
Cause: Shooting
' +39.29683390000, -76.63748690000, icon_homicide_shooting, 'p1207', '
Gregory McFadden
700 N Carrollton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 25 years old
Found on November 15, 2011
Victim died at Unknown
Cause: Shooting
' +39.30767900000, -76.65608600000, icon_homicide_shooting, 'p1205', '
Steven Pennington
1700 Moreland St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 32 years old
Found on November 14, 2011
Victim died at Unknown
Cause: Shooting
' +39.31544400000, -76.59932900000, icon_homicide_shooting, 'p1206', '
Kevin Lofland
2200 Aiken St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 18 years old
Found on November 12, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29798890000, -76.62781980000, icon_homicide_shooting, 'p1203', '
Darren Robertson
1000 Pennsylvania Ave
Baltimore, MD 21201
Race: Black
Gender: male
Age: 20 years old
Found on November 12, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32688740000, -76.57558120000, icon_homicide_shooting, 'p1204', '
Lakeishe Player
2600 kentucky ave
Baltimore, MD 21213
Race: Black
Gender: female
Age: 26 years old
Found on November 11, 2011
Victim died at Unknown
Cause: Shooting
' +39.34267000000, -76.59304300000, icon_homicide_shooting, 'p1202', '
Santos Villanueva
4300 Loch Raven Boulevard
Baltimore, MD 21218
Race: Hispanic
Gender: male
Age: 25 years old
Found on November 9, 2011
Victim died at Scene
Cause: Shooting
' +39.34838690000, -76.67475040000, icon_homicide_asphyxiation, 'p1201', '
Shirley Tyler
3200 Spaulding Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 67 years old
Found on November 8, 2011
Victim died at Scene
Cause: Asphyxiation
' +39.33626300000, -76.55553990000, icon_homicide_shooting, 'p1200', '
Davon Diggs
4100 Parkwood Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 21 years old
Found on November 5, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.32355530000, -76.60964570000, icon_homicide_shooting, 'p1199', '
Freddie Jones Jr.
2900 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 52 years old
Found on October 31, 2011
Victim died at Unknown
Cause: Shooting
' +39.35441920000, -76.61004470000, icon_homicide_shooting, 'p1198', '
Richard Ford Jr.
5300 York Road
Baltimore, MD 21212
Race: White
Gender: male
Age: 38 years old
Found on October 31, 2011
Victim died at Unknown
Cause: Shooting
' +39.29580300000, -76.62935220000, icon_homicide_stabbing, 'p1197', '
Eddie Nance
600 George St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 53 years old
Found on October 28, 2011
Victim died at Unknown
Cause: Stabbing
' +39.30319990000, -76.66128800000, icon_homicide_shooting, 'p1196', '
Shyekee Wilson
1300 Braddish Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 18 years old
Found on October 27, 2011
Victim died at Scene
Cause: Shooting
' +39.34001390000, -76.60347000000, icon_homicide_bluntforce, 'p1195', '
Sherry Montgomery-Cantey
900 E. 41st St
Baltimore, MD 21218
Race: Black
Gender: female
Age: 43 years old
Found on October 25, 2011
Victim died at Scene
Cause: Blunt Force
' +39.31099600000, -76.63326900000, icon_homicide_shooting, 'p1194', '
Edward Bardney
2000 Linden Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 38 years old
Found on October 24, 2011
Victim died at University of Maryland Medical Center
Cause: Shooting
' +39.31390870000, -76.64561330000, icon_homicide_shooting, 'p1193', '
Samuel Pinkney
2800 S. Woodbrook AVe
Baltimore, MD 21217
Race: Black
Gender: male
Age: 18 years old
Found on October 21, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30941660000, -76.60026800000, icon_homicide_shooting, 'p1190', '
Antoinne Pratt
1700 Harford Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 23 years old
Found on October 17, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31544400000, -76.59932900000, icon_homicide_shooting, 'p1189', '
Marquis Jones
2200 Aiken St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 20 years old
Found on October 16, 2011
Victim died at Unknown
Cause: Shooting
' +39.32474800000, -76.59474890000, icon_homicide_shooting, 'p1187', '
Christopher McMillion
1500 E. 29th St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 23 years old
Found on October 14, 2011
Victim died at Unknown
Cause: Shooting
' +39.29276460000, -76.66302040000, icon_homicide_bluntforce, 'p1192', '
Willie Nelson
2800 W. Mulberry St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 52 years old
Found on October 13, 2011
Victim died at Scene
Cause: Blunt Force
' +39.31125600000, -76.58434100000, icon_homicide_shooting, 'p1186', '
Louis Ingram
2400 E. Lafayette St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on October 11, 2011
Victim died at Scene
Cause: Shooting
' +39.31284930000, -76.63151430000, icon_homicide_shooting, 'p1191', '
Earl Brown
2200 Callow Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 36 years old
Found on October 11, 2011
Victim died at Union Memorial Hospital
Cause: Shooting
' +39.28514000000, -76.63973500000, icon_homicide_shooting, 'p1185', '
Devearl Singletary
1400 Kuper Place
Baltimore, MD 21223
Race: Black
Gender: male
Age: 17 years old
Found on October 10, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29543510000, -76.57856960000, icon_homicide_shooting, 'p1184', '
Kevin Pierre
300 N. Belnord Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 20 years old
Found on October 10, 2011
Victim died at Unknown
Cause: Shooting
Read the article
' +39.22919410000, -76.60146580000, icon_homicide_shooting, 'p1183', '
Maricus Perkins
900 Herndon Ct
Baltimore, MD 21225
Race: Black
Gender: male
Age: 20 years old
Found on October 3, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30440190000, -76.63147260000, icon_homicide_shooting, 'p1182', '
Anton Ingram
500 McMechen St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 32 years old
Found on October 3, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32662000000, -76.58916800000, icon_homicide_shooting, 'p1181', '
Aldrick Hamilton
1900 E. 31st St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 32 years old
Found on September 28, 2011
Victim died at Unknown
Cause: Shooting
' +39.29304800000, -76.59816830000, icon_homicide_shooting, 'p1180', '
Antonio Blackwell
1400 E Fayette St
Baltimore, MD 21231
Race: Black
Gender: male
Age: 26 years old
Found on September 28, 2011
Victim died at Unknown
Cause: Shooting
' +39.31160300000, -76.67559400000, icon_homicide_shooting, 'p1179', '
Dwight Montgomery
2200 Garrison Blvd
Baltimore, MD 21216
Race: Black
Gender: male
Age: 45 years old
Found on September 28, 2011
Victim died at Sinai Hospital
Cause: Shooting
' +39.35166700000, -76.69318300000, icon_homicide_shooting, 'p1178', '
Keith Parker
4000 Primrose Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 38 years old
Found on September 27, 2011
Victim died at Scene
Cause: Shooting
' +39.33969200000, -76.68115200000, icon_homicide_shooting, 'p1176', '
Gregory Toles
3900 Dolfield Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 30 years old
Found on September 25, 2011
Victim died at Scene
Cause: Shooting
' +39.33969200000, -76.68115200000, icon_homicide_shooting, 'p1177', '
Tyrone McQueen
3900 Dolfield Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 28 years old
Found on September 25, 2011
Victim died at Scene
Cause: Shooting
' +39.32989760000, -76.60500810000, icon_homicide_shooting, 'p1175', '
Robert James
800 E 34th St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 30 years old
Found on September 21, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29627500000, -76.57230100000, icon_homicide_shooting, 'p1173', '
Thomas Powell
400 N East Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 20 years old
Found on September 20, 2011
Victim died at Unknown
Cause: Shooting
' +39.33414690000, -76.67352790000, icon_homicide_shooting, 'p1174', '
Isaiah Roane
3500 Dolfield Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on September 20, 2011
Victim died at Unknown
Cause: Shooting
' +39.28999640000, -76.63223870000, icon_homicide_stabbing, 'p1172', '
Gregory Parker
100 N Poppleton Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 22 years old
Found on September 19, 2011
Victim died at Unknown
Cause: Stabbing
' +39.23511840000, -76.60112860000, icon_homicide_shooting, 'p1171', '
Larry Petty
700 E Pontiac Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 25 years old
Found on September 17, 2011
Victim died at Scene
Cause: Shooting
Read the article
' +39.24123310000, -76.62524930000, icon_homicide_asphyxiation, 'p1170', '
Armando Santiago
700 W Patapsco Ave
Baltimore, MD 21225
Race: Hispanic
Gender: male
Age: 42 years old
Found on September 16, 2011
Victim died at Scene
Cause: Asphyxiation
' +39.28632800000, -76.64696800000, icon_homicide_shooting, 'p1167', '
Bruce Benn
1900 W. Lombard St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 16 years old
Found on September 14, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31600660000, -76.57686800000, icon_homicide_shooting, 'p1169', '
Gerrod Davis
3300 Elmora Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on September 13, 2011
Victim died at Unknown
Cause: Shooting
' +39.34055340000, -76.60767780000, icon_homicide_shooting, 'p1166', '
Marcus Hopkins
4200 Old York Road
Baltimore, MD 21212
Race: Black
Gender: male
Age: 21 years old
Found on September 8, 2011
Victim died at Unknown
Cause: Shooting
' +39.30063000000, -76.66187200000, icon_homicide_stabbing, 'p1165', '
Dalyrie McFadden
2700 Riggs Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 1 year old
Found on September 7, 2011
Victim died at St. Agnes Hospital
Cause: Stabbing
' +39.29652850000, -76.58774930000, icon_homicide_shooting, 'p1164', '
Antonio Laws
500 N Chester St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 31 years old
Found on September 4, 2011
Victim died at Scene
Cause: Shooting
' +39.27864630000, -76.61706630000, icon_homicide_bluntforce, 'p1162', '
Janice Drayton
900 Leadenhall St
Baltimore, MD 21230
Race: Black
Gender: female
Age: 51 years old
Found on September 1, 2011
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.35724500000, -76.59137800000, icon_homicide_bluntforce, 'p1163', '
Davon Booth Jr.
5600 Woodmont Ave
Baltimore, MD 21239
Race: Black
Gender: male
Age: 1 year old
Found on September 1, 2011
Victim died at Good Samaritan Hospital
Cause: Blunt Force
' +39.24595530000, -76.62748300000, icon_homicide_shooting, 'p1161', '
Dewayne Jones
2800 Round Rd
Baltimore, MD 21225
Race: Black
Gender: male
Age: 23 years old
Found on August 28, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32098250000, -76.59409020000, icon_homicide_bluntforce, 'p1160', '
Dramiara Johnson
1700 Gorsuch Ave
Baltimore, MD 21218
Race: Black
Gender: female
Age: 4 years old
Found on August 27, 2011
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.30434700000, -76.60528600000, icon_homicide_shooting, 'p1159', '
Kennard Hailey
1200 Valley St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 26 years old
Found on August 25, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32572400000, -76.67943400000, icon_homicide_shooting, 'p1157', '
Lee Jones III
3700 W. Forest Park Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 24 years old
Found on August 23, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32231410000, -76.55292900000, icon_homicide_shooting, 'p1156', '
Big Gurung
5200 Bowleys Lane
Baltimore, MD 21206
Race: Asian
Gender: female
Age: 20 years old
Found on August 23, 2011
Victim died at Unknown
Cause: Shooting
' +39.30401300000, -76.58288400000, icon_homicide_shooting, 'p1154', '
Lawrence Rollings
1100 N. Milton Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 25 years old
Found on August 22, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29007950000, -76.67951780000, icon_homicide_shooting, 'p1158', '
Jerome Golphin
200 Mt Holly St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 25 years old
Found on August 22, 2011
Victim died at Unknown
Cause: Shooting
' +39.35683790000, -76.55772720000, icon_homicide_stabbing, 'p1155', '
Alfred Garner Jr.
6000 Harford Rd
Baltimore, MD 21214
Race: Black
Gender: male
Age: 35 years old
Found on August 22, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31104400000, -76.67422710000, icon_homicide_shooting, 'p1153', '
Demetrius Sowers
3400 Clifton Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 33 years old
Found on August 14, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.34265500000, -76.66326100000, icon_homicide_shooting, 'p1152', '
Derrell Burrow
2900 Edgecombe Circle S
Baltimore, MD 21215
Race: Black
Gender: male
Age: 23 years old
Found on August 14, 2011
Victim died at Scene
Cause: Shooting
' +39.32669000000, -76.55243290000, icon_homicide_stabbing, 'p1151', '
Irene Logan
4700 Moravia Road
Baltimore, MD 21206
Race: Black
Gender: female
Age: 91 years old
Found on August 3, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31492900000, -76.59607690000, icon_homicide_shooting, 'p1150', '
Sean Eames
1600 Darley Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 24 years old
Found on August 1, 2011
Victim died at Unknown
Cause: Shooting
' +39.29763100000, -76.71053200000, icon_homicide_shooting, 'p1148', '
Anthony Tarbert
1100 Wedgewood Rd
Baltimore, MD 21229
Race: White
Gender: male
Age: 15 years old
Found on August 1, 2011
Victim died at Scene
Cause: Shooting
' +39.29763100000, -76.71053200000, icon_homicide_shooting, 'p1149', '
Dominic Perry
1100 Wedgewood Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 15 years old
Found on July 31, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31879800000, -76.55122100000, icon_homicide_shooting, 'p1147', '
Gerald Bonner
4800 Bowland Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on July 30, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.30436800000, -76.59383240000, icon_homicide_shooting, 'p1146', '
Hassan Frank
1200 N. Gay St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 29 years old
Found on July 29, 2011
Victim died at Scene
Cause: Shooting
' +39.31948200000, -76.56351500000, icon_homicide_shooting, 'p1145', '
Anthony F. Johnson
3600 Chesterfield Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 47 years old
Found on July 27, 2011
Victim died at Scene
Cause: Shooting
' +39.30142300000, -76.57910100000, icon_homicide_shooting, 'p1144', '
Ryshawn Cox
900 N. Belnord Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 21 years old
Found on July 26, 2011
Victim died at Harbor Hospital
Cause: Shooting
' +39.32804600000, -76.56231500000, icon_homicide_shooting, 'p1140', '
Michael Jones
4300 Nicholas Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 27 years old
Found on July 26, 2011
Victim died at Scene
Cause: Shooting
' +39.32804600000, -76.56231500000, icon_homicide_shooting, 'p1141', '
Billy Lovitt
4300 Nicholas Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 58 years old
Found on July 26, 2011
Victim died at Scene
Cause: Shooting
' +39.32804600000, -76.56231500000, icon_homicide_shooting, 'p1142', '
Tanyika Gibbs
4300 Nicholas Ave
Baltimore, MD 21206
Race: Black
Gender: female
Age: 37 years old
Found on July 26, 2011
Victim died at Unknown
Cause: Shooting
' +39.31672010000, -76.60846860000, icon_homicide_other, 'p1143', '
Dwayne Hawkins
600 Cokesbury Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 25 years old
Found on July 25, 2011
Victim died at Scene
Cause: Other
' +39.29773720000, -76.64290870000, icon_homicide_stabbing, 'p1138', '
Marvin Hayes
800 N Gilmor St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 22 years old
Found on July 20, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30998100000, -76.65436500000, icon_homicide_shooting, 'p1136', '
Name not yet released
1900 Bentalou St
Baltimore, MD 21216
Race: Unknown
Gender: male
Age: 25 years old
Found on July 19, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28116900000, -76.63392900000, icon_homicide_shooting, 'p1135', '
Rasheed Abdullah
1200 Ward St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 21 years old
Found on July 17, 2011
Victim died at Unknown
Cause: Shooting
' +39.29938470000, -76.59626680000, icon_homicide_shooting, 'p1134', '
Rodney Johnson
800 N Bond St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 30 years old
Found on July 16, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28823950000, -76.65926700000, icon_homicide_shooting, 'p1133', '
David McKoy
1 N Franklintown Rd
Baltimore, MD 21223
Race: Black
Gender: male
Age: 29 years old
Found on July 15, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30877790000, -76.65150600000, icon_homicide_shooting, 'p1132', '
Jawan Weeden
1800 N. Pulaski St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 30 years old
Found on July 14, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31399200000, -76.60761590000, icon_homicide_shooting, 'p1137', '
Omar Richardson
2100 Homewood Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 24 years old
Found on July 14, 2011
Victim died at Unknown
Cause: Shooting
' +39.29505960000, -76.57854620000, icon_homicide_bluntforce, 'p1131', '
Patsy Person
200 N Belnord Ave
Baltimore, MD 21224
Race: Black
Gender: female
Age: 43 years old
Found on July 10, 2011
Victim died at Unknown
Cause: Blunt Force
' +39.29893680000, -76.59719190000, icon_homicide_shooting, 'p1129', '
Jerel McFadden
1500 Lester Morton Ct
Baltimore, MD 21205
Race: Black
Gender: male
Age: 22 years old
Found on July 10, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32098250000, -76.59409020000, icon_homicide_stabbing, 'p1130', '
Richard Mills
1700 Gorsuch Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 46 years old
Found on July 10, 2011
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.29066330000, -76.61522780000, icon_homicide_stabbing, 'p1128', '
Tremon Fields
100 N. Charles St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 25 years old
Found on July 9, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.29536100000, -76.67893500000, icon_homicide_shooting, 'p1127', '
Sterling Kelly
3700 Harlem Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 29 years old
Found on July 5, 2011
Victim died at Unknown
Cause: Shooting
' +39.28514050000, -76.60393320000, icon_homicide_stabbing, 'p1126', '
Joseph Calo
700 Eastern Ave
Baltimore, MD 21202
Race: White
Gender: male
Age: 26 years old
Found on July 4, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.28118300000, -76.63641500000, icon_homicide_shooting, 'p1125', '
James Lofton
1100 S. Carey St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 21 years old
Found on July 2, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.34960070000, -76.59371150000, icon_homicide_shooting, 'p1124', '
William Daughtry III
1400 Stonewood Rd
Baltimore, MD 21239
Race: Black
Gender: male
Age: 20 years old
Found on July 1, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.26850620000, -76.65037930000, icon_homicide_shooting, 'p1123', '
Omar Johnson
1900 Breitwert Ave
Baltimore, MD 21230
Race: Black
Gender: male
Age: 16 years old
Found on June 29, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30361010000, -76.63054420000, icon_homicide_shooting, 'p1122', '
Christopher Samuel
500 Mosher St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on June 28, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31499700000, -76.56815200000, icon_homicide_shooting, 'p1121', '
Chong Wan Yim
3900 Erdman Ave
Baltimore, MD 21213
Race: Asian
Gender: male
Age: 55 years old
Found on June 28, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.29188100000, -76.57114360000, icon_homicide_stabbing, 'p1120', '
Brittany Devone
3200 Leverton Ave
Baltimore, MD 21224
Race: Black
Gender: female
Age: 22 years old
Found on June 27, 2011
Victim died at Scene
Cause: Stabbing
' +39.35665190000, -76.56967310000, icon_homicide_shooting, 'p1119', '
Andre Womack
5500 Grindon Ave
Baltimore, MD 21214
Race: Black
Gender: male
Age: 23 years old
Found on June 22, 2011
Victim died at Unknown
Cause: Shooting
' +39.34265500000, -76.66326100000, icon_homicide_shooting, 'p1118', '
Anthony Carr
2900 Edgecombe Cir S
Baltimore, MD 21215
Race: Black
Gender: male
Age: 52 years old
Found on June 20, 2011
Victim died at Sinai Hospital
Cause: Shooting
' +39.31545660000, -76.57571990000, icon_homicide_shooting, 'p1288', '
Rayner Veney
3400 Ravenwood Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 51 years old
Found on June 20, 2011
Victim died at Unknown
Cause: Shooting
' +39.29561110000, -76.66144900000, icon_homicide_shooting, 'p1117', '
Troy Fennell
700 Ashburton St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 39 years old
Found on June 17, 2011
Victim died at Unknown
Cause: Shooting
' +39.29287700000, -76.67432000000, icon_homicide_shooting, 'p1116', '
Charles Lassane
500 Denison St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 55 years old
Found on June 16, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33811090000, -76.60754370000, icon_homicide_shooting, 'p1115', '
Angelo Winston
600 Dumbarton Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 26 years old
Found on June 14, 2011
Victim died at Unknown
Cause: Shooting
' +39.31637800000, -76.60977400000, icon_homicide_shooting, 'p1114', '
Henry Mills
2400 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 40 years old
Found on June 14, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30834400000, -76.66625400000, icon_homicide_shooting, 'p1113', '
Gary Gibson
2900 Westwood Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 23 years old
Found on June 12, 2011
Victim died at Scene
Cause: Shooting
' +39.33880800000, -76.66163200000, icon_homicide_shooting, 'p1112', '
Roy Murray
2600 Park Heights Terrace
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on June 12, 2011
Victim died at Scene
Cause: Shooting
' +39.28864800000, -76.64115090000, icon_homicide_shooting, 'p1111', '
James Wright
1500 W. Baltimore St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 25 years old
Found on June 11, 2011
Victim died at Unknown
Cause: Shooting
' +39.34992800000, -76.67235800000, icon_homicide_shooting, 'p1110', '
Chad Anderson
3000 Spaulding Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 26 years old
Found on June 10, 2011
Victim died at Unknown
Cause: Shooting
' +39.36706900000, -76.57140820000, icon_homicide_shooting, 'p1109', '
Durran Banks
2200 Fleetwood Ave
Baltimore, MD 21214
Race: Black
Gender: male
Age: 25 years old
Found on June 3, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.33466900000, -76.53700300000, icon_homicide_stabbing, 'p1106', '
John Kelly
5800 Moores Run Ct
Baltimore, MD 21206
Race: Black
Gender: male
Age: 25 years old
Found on June 1, 2011
Victim died at Scene
Cause: Stabbing
' +39.30137650000, -76.60726170000, icon_homicide_shooting, 'p1105', '
Maurice Gary
700 E. Eager St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 35 years old
Found on May 31, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29269600000, -76.56925900000, icon_homicide_shooting, 'p1104', '
Payton Rivers
3400 E. Baltimore St
Baltimore, MD 21224
Race: Black
Gender: male
Age: 34 years old
Found on May 31, 2011
Victim died at Unknown
Cause: Shooting
' +39.31345500000, -76.68294200000, icon_homicide_shooting, 'p1103', '
Lois Smyth
3900 Windsor Mill Road
Baltimore, MD 21216
Race: White
Gender: female
Age: 40 years old
Found on May 29, 2011
Victim died at Scene
Cause: Shooting
' +39.33094700000, -76.69315700000, icon_homicide_shooting, 'p1102', '
Fareed Abdullah
4500 Liberty Heights Ave
Baltimore, MD 21207
Race: Black
Gender: male
Age: 28 years old
Found on May 28, 2011
Victim died at Scene
Cause: Shooting
' +39.31532650000, -76.59364540000, icon_homicide_shooting, 'p1101', '
Sean Johnson
1700 Cliftview Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 12 years old
Found on May 26, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28095950000, -76.63293030000, icon_homicide_stabbing, 'p1108', '
Kevin Jones
1200 W. Ostend St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 57 years old
Found on May 26, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30225810000, -76.59571100000, icon_homicide_shooting, 'p1107', '
Anthony Sherman
1600 Ward Ct
Baltimore, MD 21205
Race: Black
Gender: male
Age: 27 years old
Found on May 26, 2011
Victim died at Unknown
Cause: Shooting
' +39.30550900000, -76.64817700000, icon_homicide_shooting, 'p1100', '
Donte Larkins
1500 N Monroe St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 33 years old
Found on May 25, 2011
Victim died at Scene
Cause: Shooting
' +39.29436370000, -76.66855760000, icon_homicide_stabbing, 'p1099', '
Dashawn Brown
3100 Edmondson Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 17 years old
Found on May 22, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30675900000, -76.64657200000, icon_homicide_stabbing, 'p1098', '
Jalil Al-Salim
1600 N Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 50 years old
Found on May 21, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.23003200000, -76.59871300000, icon_homicide_shooting, 'p1097', '
Marcus Nickens Jr.
4100 10th St
Baltimore, MD 21225
Race: Black
Gender: male
Age: 19 years old
Found on May 19, 2011
Victim died at Unknown
Cause: Shooting
' +39.34838730000, -76.67475080000, icon_homicide_shooting, 'p1096', '
Raymond Young Jr.
3200 Spaulding Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 29 years old
Found on May 19, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.34506700000, -76.59735400000, icon_homicide_shooting, 'p1095', '
Dawaun Anderson
4500 Marble Hall Rd
Baltimore, MD 21239
Race: Black
Gender: male
Age: 22 years old
Found on May 14, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.29057300000, -76.62142600000, icon_homicide_shooting, 'p1094', '
Willie Elliott
100 N Eutaw St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 31 years old
Found on May 11, 2011
Victim died at Unknown
Cause: Shooting
' +39.34742900000, -76.59841000000, icon_homicide_stabbing, 'p1093', '
Darian Kess
1200 Linworth Ave
Baltimore, MD 21239
Race: Black
Gender: male
Age: 27 years old
Found on May 3, 2011
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.29039830000, -76.59383020000, icon_homicide_stabbing, 'p1092', '
Gilberto Gonzalez
1700 E. Lombard St
Baltimore, MD 21231
Race: Hispanic
Gender: male
Age: 22 years old
Found on April 29, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31281300000, -76.58776700000, icon_homicide_shooting, 'p1088', '
Kareem Randall
1900 N. Collington Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 23 years old
Found on April 28, 2011
Victim died at Unknown
Cause: Shooting
' +39.31281300000, -76.58776700000, icon_homicide_shooting, 'p1091', '
Alex Venable
1900 N. Collington Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 26 years old
Found on April 28, 2011
Victim died at Unknown
Cause: Shooting
' +39.28862700000, -76.64670200000, icon_homicide_asphyxiation, 'p1089', '
Elmore Rembert
1 N. Monroe St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 49 years old
Found on April 27, 2011
Victim died at Scene
Cause: Asphyxiation
' +39.23650600000, -76.60427700000, icon_homicide_shooting, 'p1087', '
Jason Willis
3600 5th St
Baltimore, MD 21225
Race: Black
Gender: male
Age: 23 years old
Found on April 26, 2011
Victim died at Harbor Hospital
Cause: Shooting
' +39.30867600000, -76.65434700000, icon_homicide_shooting, 'p1086', '
John Atkins
1800 N. Bentalou St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 43 years old
Found on April 25, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29922640000, -76.68632450000, icon_homicide_shooting, 'p1081', '
Steven White
4200 Rokeby Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 29 years old
Found on April 24, 2011
Victim died at Scene
Cause: Shooting
' +39.29922640000, -76.68632450000, icon_homicide_shooting, 'p1082', '
Damon Griffin
4200 Rokeby Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 25 years old
Found on April 24, 2011
Victim died at Scene
Cause: Shooting
' +39.28446000000, -76.69382800000, icon_homicide_shooting, 'p1080', '
Isaac Stevens
4700 Sayer Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 25 years old
Found on April 24, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29434200000, -76.63874900000, icon_homicide_stabbing, 'p1084', '
Tevon Allen
500 N Carey St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 22 years old
Found on April 23, 2011
Victim died at Unknown
Cause: Stabbing
' +39.29682050000, -76.64005990000, icon_homicide_shooting, 'p1083', '
Brandon Littlejohn
700 N Calhoun St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 20 years old
Found on April 23, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32050600000, -76.59455100000, icon_homicide_shooting, 'p1085', '
William Cann
1700 Homestead St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 46 years old
Found on April 22, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29069590000, -76.61812900000, icon_homicide_shooting, 'p1079', '
Edward Jones
200 W. Fayette St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 50 years old
Found on April 22, 2011
Victim died at Unknown
Cause: Shooting
' +39.28405440000, -76.61503850000, icon_homicide_shooting, 'p1078', '
Keith Cooper
1 W Conway St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 47 years old
Found on April 21, 2011
Victim died at Scene
Cause: Shooting
' +39.31734500000, -76.60768700000, icon_homicide_shooting, 'p1077', '
Julian Turner
600 Barlett Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 19 years old
Found on April 20, 2011
Victim died at Unknown
Cause: Shooting
' +39.35334370000, -76.70601470000, icon_homicide_asphyxiation, 'p1287', '
Phylicia Barnes
6500 Eberle Dr
Baltimore, MD 21215
Race: Black
Gender: female
Age: 16 years old
Found on April 20, 2011
Victim died at Scene
Cause: Asphyxiation
' +39.29438820000, -76.63409910000, icon_homicide_shooting, 'p1076', '
Edward Auston
500 N Schroeder St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 31 years old
Found on April 19, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29466780000, -76.57422680000, icon_homicide_shooting, 'p1075', '
Donis Lopez
500 N. Decker Ave
Baltimore, MD 21224
Race: Hispanic
Gender: male
Age: 26 years old
Found on April 16, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31813600000, -76.69086800000, icon_homicide_shooting, 'p1074', '
Chantel Ford
4500 Westchester Rd
Baltimore, MD 21216
Race: Black
Gender: female
Age: 24 years old
Found on April 13, 2011
Victim died at Sinai Hospital
Cause: Shooting
' +39.30817400000, -76.59357700000, icon_homicide_shooting, 'p1073', '
Isiah Callaway
1700 Crystal Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 19 years old
Found on April 12, 2011
Victim died at Scene
Cause: Shooting
' +39.23658100000, -76.61089600000, icon_homicide_stabbing, 'p1072', '
Antonio Miranda
3800 S. Hanover St
Baltimore, MD 21225
Race: Hispanic
Gender: male
Age: 43 years old
Found on April 11, 2011
Victim died at Harbor Hospital
Cause: Stabbing
' +39.29312600000, -76.61831100000, icon_homicide_shooting, 'p1071', '
Dwight Taylor
200 W. Saratoga St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 25 years old
Found on April 9, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31993000000, -76.54937800000, icon_homicide_stabbing, 'p1070', '
James Evans
4900 Bowland Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on April 9, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31184090000, -76.62698670000, icon_homicide_shooting, 'p1069', '
Keenya Jordan
600 Lennox st
Baltimore, MD 21217
Race: Black
Gender: female
Age: 32 years old
Found on April 6, 2011
Victim died at Unknown
Cause: Shooting
' +39.32118100000, -76.67504500000, icon_homicide_shooting, 'p1067', '
Christopher Bullock
3400 Powhatan Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 24 years old
Found on April 5, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29276460000, -76.66302040000, icon_homicide_shooting, 'p1068', '
Roosevelt Tillman
2800 Mulberry St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 20 years old
Found on April 5, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29247580000, -76.61117460000, icon_homicide_stabbing, 'p1066', '
Charles Johnson
300 Guilford St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 24 years old
Found on April 2, 2011
Victim died at Unknown
Cause: Stabbing
' +39.30250320000, -76.63898170000, icon_homicide_shooting, 'p1065', '
Derek Jones
1300 Winchester St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 25 years old
Found on March 31, 2011
Victim died at Unknown
Cause: Shooting
' +39.31624100000, -76.54262000000, icon_homicide_shooting, 'p1064', '
Tyrone Slay
6000 Moravia Park Dr
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on March 31, 2011
Victim died at Unknown
Cause: Shooting
' +39.28352790000, -76.62700800000, icon_homicide_shooting, 'p1063', '
Murrell Hearns
700 Washington Blvd
Baltimore, MD 21230
Race: Black
Gender: male
Age: 31 years old
Found on March 30, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31889690000, -76.62154860000, icon_homicide_stabbing, 'p1061', '
Jhoma Blackwell
2600 Huntingdon Ave
Baltimore, MD 21211
Race: Black
Gender: female
Age: 18 years old
Found on March 29, 2011
Victim died at Scene
Cause: Stabbing
' +39.32390120000, -76.54078350000, icon_homicide_shooting, 'p1062', '
Durell Roach
5400 Sinclair Lane
Baltimore, MD 21206
Race: Black
Gender: male
Age: 31 years old
Found on March 29, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.29579500000, -76.63434500000, icon_homicide_shooting, 'p1060', '
Gregory Davenport
1000 Edmondson Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 27 years old
Found on March 29, 2011
Victim died at Unknown
Cause: Shooting
' +39.31718300000, -76.57815100000, icon_homicide_shooting, 'p1059', '
Steven Oglesby
3200 Elmley Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 17 years old
Found on March 27, 2011
Victim died at Unknown
Cause: Shooting
' +39.31355700000, -76.61131700000, icon_homicide_stabbing, 'p1058', '
Reginald Wragg
2100 Barclay St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 46 years old
Found on March 25, 2011
Victim died at Scene
Cause: Stabbing
' +39.31171890000, -76.60932300000, icon_homicide_stabbing, 'p1057', '
Andre Drummond
500 E. North Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 48 years old
Found on March 23, 2011
Victim died at Unknown
Cause: Stabbing
' +39.29354640000, -76.69176220000, icon_homicide_stabbing, 'p1055', '
David McLaughlin Jr.
4500 Edmondson Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 24 years old
Found on March 20, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30754590000, -76.62728790000, icon_homicide_shooting, 'p1054', '
Angelo Fitzgerald
300 McMechen St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 21 years old
Found on March 19, 2011
Victim died at Unknown
Cause: Shooting
' +39.28095950000, -76.63293030000, icon_homicide_bluntforce, 'p1056', '
Darshewn Freeman
1200 W. Ostend St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 44 years old
Found on March 18, 2011
Victim died at Maryland Shock Trauma Center
Cause: Blunt Force
' +39.31244490000, -76.64566000000, icon_homicide_shooting, 'p1053', '
Brandon Carter
2700 Pennsylvania Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 29 years old
Found on March 17, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32579100000, -76.60230400000, icon_homicide_shooting, 'p1052', '
Tanise Ervin
1100 Gorsuch Ave
Baltimore, MD 21218
Race: Black
Gender: female
Age: 19 years old
Found on March 12, 2011
Victim died at Unknown
Cause: Shooting
' +39.34369230000, -76.68046990000, icon_homicide_stabbing, 'p1050', '
Ronald Gibbs
5000 Nelson Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 17 years old
Found on March 6, 2011
Victim died at Sinai Hospital
Cause: Stabbing
' +39.28876200000, -76.67278300000, icon_homicide_shooting, 'p1049', '
Paul Simons III
200 N. Hilton St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 23 years old
Found on March 5, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.25930200000, -76.64534400000, icon_homicide_other, 'p1048', '
George Marshall
2700 Hollins Ferry Road
Baltimore, MD 21230
Race: White
Gender: male
Age: 57 years old
Found on March 5, 2011
Victim died at Unknown
Cause: Other
' +39.29814900000, -76.70987400000, icon_homicide_stabbing, 'p1051', '
Charles Hopson
1100 Cooks Lane
Baltimore, MD 21229
Race: Black
Gender: male
Age: 22 years old
Found on March 5, 2011
Victim died at Unknown
Cause: Stabbing
' +39.31145890000, -76.60945990000, icon_homicide_shooting, 'p1047', '
James Fields Jr
1901 Greenmount Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 47 years old
Found on March 3, 2011
Victim died at Unknown
Cause: Shooting
' +39.31164600000, -76.66432200000, icon_homicide_stabbing, 'p1046', '
Edgar Waylan Wilson
2800 Clifton Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 62 years old
Found on February 27, 2011
Victim died at Scene
Cause: Stabbing
' +39.31537500000, -76.59555300000, icon_homicide_shooting, 'p1044', '
Mark Saunders
1600 Cliftview Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 23 years old
Found on February 20, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.34368800000, -76.67171400000, icon_homicide_asphyxiation, 'p1045', '
Anthony Trent
3300 Virginia Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 25 years old
Found on February 19, 2011
Victim died at Scene
Cause: Asphyxiation
Read the article
' +39.31149710000, -76.60950730000, icon_homicide_stabbing, 'p1043', '
Joshua Mathews
1900 Greenmount Ave
Baltimore, MD 21202
Race: Black
Gender: male
Age: 45 years old
Found on February 17, 2011
Victim died at Unknown
Cause: Stabbing
' +39.32632900000, -76.59338900000, icon_homicide_shooting, 'p1042', '
Martez Hall
1600 E 31st St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 22 years old
Found on February 16, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.28145300000, -76.63041600000, icon_homicide_stabbing, 'p1041', '
Steven Williams
1100 W. Cross St
Baltimore, MD 21230
Race: Black
Gender: male
Age: 53 years old
Found on February 15, 2011
Victim died at Unknown
Cause: Stabbing
' +39.33464980000, -76.66278120000, icon_homicide_shooting, 'p1040', '
Jose Estrella
4000 Park Heights
Baltimore, MD 21215
Race: Black
Gender: male
Age: 19 years old
Found on February 11, 2011
Victim died at Sinai Hospital
Cause: Shooting
' +39.35927600000, -76.54387800000, icon_homicide_shooting, 'p1039', '
Isaiah McFadden
6600 Alta Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 21 years old
Found on February 8, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32154180000, -76.59367400000, icon_homicide_shooting, 'p1038', '
Craig Manuel
2700 Polk St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 19 years old
Found on February 7, 2011
Victim died at Unknown
Cause: Shooting
' +39.29780800000, -76.68644500000, icon_homicide_shooting, 'p1037', '
Warren Wilmer
900 N. Woodington Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 36 years old
Found on February 2, 2011
Victim died at Scene
Cause: Shooting
' +39.31844700000, -76.54844900000, icon_homicide_shooting, 'p1036', '
Jeffrey Purnell
5700 Eastbury Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 51 years old
Found on January 30, 2011
Victim died at Johns Hopkins Bayview Medical Center
Cause: Shooting
' +39.28601610000, -76.62927180000, icon_homicide_shooting, 'p1035', '
Raynard Benjamin
800 W Pratt St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 30 years old
Found on January 29, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.28211570000, -76.64488280000, icon_homicide_shooting, 'p1034', '
Damon Gilmore
500 S. Fulton Ave
Baltimore, MD 21223
Race: Black
Gender: male
Age: 31 years old
Found on January 24, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29873900000, -76.59841400000, icon_homicide_shooting, 'p1033', '
Antonio Lamont Lee
1400 E Monument St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 35 years old
Found on January 23, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.25001300000, -76.61934590000, icon_homicide_shooting, 'p1032', '
Harry Hicks
400 Swale Ave
Baltimore, MD 21225
Race: Black
Gender: male
Age: 29 years old
Found on January 22, 2011
Victim died at Unknown
Cause: Shooting
' +39.24501350000, -76.62740550000, icon_homicide_shooting, 'p1031', '
Rhidel Price
2900 Denham Circle
Baltimore, MD 21225
Race: Black
Gender: male
Age: 21 years old
Found on January 20, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29559700000, -76.63739800000, icon_homicide_shooting, 'p1029', '
Kevin S. Lewis
600 N Carrollton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 45 years old
Found on January 10, 2011
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.32537000000, -76.58631200000, icon_homicide_shooting, 'p1028', '
Wendell Woodard
3000 Harford Rd
Baltimore, MD 21218
Race: Black
Gender: male
Age: 26 years old
Found on January 10, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31749200000, -76.65011190000, icon_homicide_shooting, 'p1026', '
Willie Davis
1700 Gwynns Falls Pkway
Baltimore, MD 21217
Race: Black
Gender: male
Age: 26 years old
Found on January 9, 2011
Victim died at Scene
Cause: Shooting
' +39.31716000000, -76.64932390000, icon_homicide_shooting, 'p1027', '
Marvin Kelly
1701 Gwynns Falls Pkway
Baltimore, MD 21217
Race: Black
Gender: male
Age: 22 years old
Found on January 9, 2011
Victim died at Scene
Cause: Shooting
' +39.32855200000, -76.61339400000, icon_homicide_shooting, 'p1025', '
Leon D. Smith
300 E. 33rd St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 34 years old
Found on January 9, 2011
Victim died at Unknown
Cause: Shooting
' +39.32569690000, -76.57517430000, icon_homicide_shooting, 'p1030', '
Deandre Garris
3500 Woodstock Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 34 years old
Found on January 5, 2011
Victim died at Unknown
Cause: Shooting
' +39.35866900000, -76.57164000000, icon_homicide_shooting, 'p1024', '
Hezikah Wilson
5600 Plymouth Rd
Baltimore, MD 21214
Race: Black
Gender: male
Age: 38 years old
Found on January 2, 2011
Victim died at Good Samaritan Hospital
Cause: Shooting
' +39.29693400000, -76.57959300000, icon_homicide_shooting, 'p1023', '
Marquise Hall
500 N. Lakewood Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 16 years old
Found on January 1, 2011
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.22619100000, -76.58992000000, icon_homicide_stabbing, 'p1022', '
David Jones
1500 Hazel St
Baltimore, MD 21226
Race: Black
Gender: male
Age: 21 years old
Found on January 1, 2011
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.30401300000, -76.58288400000, icon_homicide_shooting, 'p1301', '
Name not yet released
1100 N. Milton Ave
Baltimore, MD 21213
Race: Unknown
Gender: male
Found on May 14, 2012
Victim died at Scene
Cause: Shooting
' +39.32704100000, -76.59371500000, icon_homicide_shooting, 'p1300', '
Lacy Lamb
1600 E. 32nd St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 19 years old
Found on May 13, 2012
Victim died at Unknown
Cause: Shooting
' +39.28749410000, -76.59684890000, icon_homicide_shooting, 'p1299', '
Dominick Brown
1500 Gough St
Baltimore, MD 21231
Race: Black
Gender: male
Age: 22 years old
Found on May 13, 2012
Victim died at Unknown
Cause: Shooting
' +39.29500560000, -76.62138970000, icon_homicide_shooting, 'p1298', '
Derrick Lawson
400 W Franklin St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 33 years old
Found on May 13, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33735810000, -76.66459790000, icon_homicide_stabbing, 'p1297', '
Thomas Weddington
3600 Park Heights Terrace
Baltimore, MD 21215
Race: Black
Gender: male
Age: 34 years old
Found on May 13, 2012
Victim died at Sinai Hospital
Cause: Stabbing
' +39.32164700000, -76.61250600000, icon_homicide_bluntforce, 'p1296', '
Cornell Booker
300 Whitridge Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 46 years old
Found on May 9, 2012
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.31297000000, -76.60412500000, icon_homicide_shooting, 'p1295', '
Shavar Little
1100 E. 20th St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 28 years old
Found on May 8, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31633260000, -76.67449640000, icon_homicide_shooting, 'p1293', '
Christopher Mobley
3400 Piedmont Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 28 years old
Found on May 8, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.29587680000, -76.62146150000, icon_homicide_shooting, 'p1294', '
Terrence Anderson
600 N Eutaw St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 19 years old
Found on May 8, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.34801100000, -76.67054700000, icon_homicide_shooting, 'p1290', '
Robert Bond
3000 Oakley Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 21 years old
Found on May 6, 2012
Victim died at Scene
Cause: Shooting
' +39.31663900000, -76.68442000000, icon_homicide_shooting, 'p1291', '
Quintin Poindexter
4100 Alto Rd
Baltimore, MD 21216
Race: Black
Gender: male
Age: 18 years old
Found on May 5, 2012
Victim died at Scene
Cause: Shooting
' +39.30119960000, -76.62501030000, icon_homicide_asphyxiation, 'p1292', '
Cheryl Thomas
400 Cummings Ct
Baltimore, MD 21201
Race: Black
Gender: female
Age: 44 years old
Found on May 3, 2012
Victim died at Unknown
Cause: Asphyxiation
' +39.31545660000, -76.57571990000, icon_homicide_shooting, 'p1289', '
Rayner Veney
3400 Ravenwood Ave
Baltimore, MD 21213
Race: Black
Gender: male
Age: 51 years old
Found on April 28, 2012
Victim died at Unknown
Cause: Shooting
' +39.29290040000, -76.62147800000, icon_homicide_stabbing, 'p1286', '
Cortez Lemon
400 W. Saratoga St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 23 years old
Found on April 27, 2012
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.29640500000, -76.65679900000, icon_homicide_shooting, 'p1285', '
Michael L. Williams
2500 harlem ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 45 years old
Found on April 25, 2012
Victim died at Unknown
Cause: Shooting
' +39.32372990000, -76.68685500000, icon_homicide_shooting, 'p1284', '
Floyd Dorsey
4100 Norfolk Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 59 years old
Found on April 24, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.34453120000, -76.55479640000, icon_homicide_bluntforce, 'p1282', '
Somchanh Sipayboun
5400 Hillburn Ave
Baltimore, MD 21206
Race: Asian
Gender: female
Age: 37 years old
Found on April 23, 2012
Victim died at Johns Hopkins Hospital
Cause: Blunt Force
' +39.33876300000, -76.66581430000, icon_homicide_shooting, 'p1281', '
Willie Battle
2700 Boarman Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 19 years old
Found on April 23, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.31021280000, -76.64118030000, icon_homicide_shooting, 'p1283', '
Mark Day
1500 W. North Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 43 years old
Found on April 23, 2012
Victim died at Unknown
Cause: Shooting
' +39.32073870000, -76.57476280000, icon_homicide_shooting, 'p1280', '
Derrick Deon Smith
3200 Belair Rd
Baltimore, MD 21213
Race: Black
Gender: male
Age: 33 years old
Found on April 18, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30974400000, -76.59926400000, icon_homicide_shooting, 'p1279', '
Marvin Lee Buckson
1700 N Spring St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 29 years old
Found on April 17, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.33161080000, -76.69589500000, icon_homicide_shooting, 'p1278', '
Torey Garrison
4700 Liberty Heights Ave
Baltimore, MD 21207
Race: Unknown
Gender: male
Age: 34 years old
Found on April 16, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.30508170000, -76.60226330000, icon_homicide_shooting, 'p1277', '
Ricardo Mabray
1300 Aisquith St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 27 years old
Found on April 16, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30643800000, -76.63532300000, icon_homicide_shooting, 'p1275', '
Phillip Scott
1900 Etting St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 34 years old
Found on April 14, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29684610000, -76.64966850000, icon_homicide_shooting, 'p1276', '
Clarence Nicholson
2000 Rayner Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 31 years old
Found on April 14, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30152200000, -76.62553740000, icon_homicide_shooting, 'p1274', '
Brandon Sims
400 Watty Court
Baltimore, MD 21201
Race: Black
Gender: male
Age: 23 years old
Found on April 13, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.23190000000, -76.60086100000, icon_homicide_shooting, 'p1273', '
Leslie Johnson
800 Jack St
Baltimore, MD 21225
Race: Black
Gender: male
Age: 36 years old
Found on April 9, 2012
Victim died at Unknown
Cause: Shooting
' +39.30640200000, -76.60332690000, icon_homicide_shooting, 'p1272', '
Justin Marasa
1400 Holbrook St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 22 years old
Found on April 8, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32096200000, -76.59962890000, icon_homicide_shooting, 'p1271', '
Robert Laney
2600 Kirk Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 33 years old
Found on April 8, 2012
Victim died at Unknown
Cause: Shooting
' +39.30800230000, -76.64350330000, icon_homicide_shooting, 'p1270', '
Jermaine Shuron
1700 N Calhoun St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 37 years old
Found on April 7, 2012
Victim died at Unknown
Cause: Shooting
' +39.36142700000, -76.59580100000, icon_homicide_shooting, 'p1268', '
Javell Heath
1100 E Belvedere Ave
Baltimore, MD 21239
Race: Black
Gender: male
Age: 19 years old
Found on April 2, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.34065820000, -76.60329110000, icon_homicide_shooting, 'p1269', '
Dion Brandon
900 Belgian Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 30 years old
Found on April 2, 2012
Victim died at Unknown
Cause: Shooting
' +39.31387960000, -76.60493710000, icon_homicide_shooting, 'p1267', '
Marcus Williams
1000 E. 22nd St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 29 years old
Found on April 1, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30028430000, -76.60492380000, icon_homicide_shooting, 'p1266', '
Chauncey Hardy
900 Valley st
Baltimore, MD 21202
Race: Black
Gender: male
Age: 59 years old
Found on March 30, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.36145280000, -76.57222700000, icon_homicide_shooting, 'p1264', '
Tyree Cypress
6200 Pioneer Dr
Baltimore, MD 21214
Race: Black
Gender: male
Age: 19 years old
Found on March 27, 2012
Victim died at Unknown
Cause: Shooting
' +39.34078900000, -76.55067300000, icon_homicide_shooting, 'p1263', '
Adam Robinson
4100 Idaho Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 26 years old
Found on March 25, 2012
Victim died at Unknown
Cause: Shooting
' +39.30606490000, -76.66754800000, icon_homicide_bluntforce, 'p1265', '
Aaron Evans
3000 Baker St
Baltimore, MD 21216
Race: Black
Gender: male
Age: 1 year old
Found on March 25, 2012
Victim died at University of Maryland Medical Center
Cause: Blunt Force
' +39.29020400000, -76.62974500000, icon_homicide_shooting, 'p1262', '
Rodrick Burden
800 W Fayette St
Baltimore, MD 21201
Race: Black
Gender: male
Age: 18 years old
Found on March 24, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31360870000, -76.60964600000, icon_homicide_shooting, 'p1261', '
Ronnell Chaney
500 E. 21st St
Baltimore, MD 21218
Race: Black
Gender: male
Age: 20 years old
Found on March 23, 2012
Victim died at Unknown
Cause: Shooting
' +39.31083640000, -76.64247450000, icon_homicide_shooting, 'p1260', '
Jonathan Hutchinson
1600 Traction St
Baltimore, MD 21217
Race: Black
Gender: male
Age: 24 years old
Found on March 21, 2012
Victim died at Unknown
Cause: Shooting
' +39.30823500000, -76.66249000000, icon_homicide_shooting, 'p1259', '
Dexter Jones Jr.
1800 Ashburton
Baltimore, MD 21216
Race: Black
Gender: male
Age: 23 years old
Found on March 20, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29125800000, -76.53895600000, icon_homicide_shooting, 'p1258', '
Dominic Thornton
6400 E Pratt St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 37 years old
Found on March 19, 2012
Victim died at Unknown
Cause: Shooting
' +39.34730100000, -76.67918800000, icon_homicide_shooting, 'p1257', '
Fareed Caldwell
3500 W Belvedere Ave
Baltimore, MD 21215
Race: Black
Gender: male
Age: 25 years old
Found on March 16, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.30379090000, -76.58498600000, icon_homicide_shooting, 'p1256', '
Gregory Parker
2300 E Chase St
Baltimore, MD 21213
Race: Black
Gender: male
Age: 54 years old
Found on March 16, 2012
Victim died at Unknown
Cause: Shooting
' +39.30125000000, -76.58334300000, icon_homicide_shooting, 'p1255', '
Timothy Harris
900 N Port St
Baltimore, MD 21205
Race: Black
Gender: male
Age: 47 years old
Found on March 13, 2012
Victim died at Unknown
Cause: Shooting
' +39.30616440000, -76.60368770000, icon_homicide_shooting, 'p1254', '
Sherard Houston
1000 E Hoffman St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 38 years old
Found on March 10, 2012
Victim died at Unknown
Cause: Shooting
' +39.30994290000, -76.65286390000, icon_homicide_shooting, 'p1253', '
Javon Johnson
2200 W. North Ave
Baltimore, MD 21216
Race: Black
Gender: male
Age: 21 years old
Found on March 7, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29188000000, -76.67544470000, icon_homicide_shooting, 'p1252', '
Steven Fields
3500 W. Mulberry St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 19 years old
Found on March 6, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.29196550000, -76.67664780000, icon_homicide_shooting, 'p1251', '
John Edwards
3510 W. Mulberry St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 17 years old
Found on March 5, 2012
Victim died at Scene
Cause: Shooting
' +39.30078090000, -76.62448640000, icon_homicide_shooting, 'p1250', '
Tyrice Forney
400 Oxford Ct
Baltimore, MD 21201
Race: Black
Gender: male
Age: 21 years old
Found on March 4, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.31537200000, -76.59555500000, icon_homicide_shooting, 'p1249', '
Monae Turnage
1600 Cliftview Ave
Baltimore, MD 21213
Race: Black
Gender: female
Age: 13 years old
Found on March 4, 2012
Victim died at Scene
Cause: Shooting
' +39.34506700000, -76.59734900000, icon_homicide_shooting, 'p1248', '
Terrence Joyner
4500 Marble Hall Rd
Baltimore, MD 21239
Race: Black
Gender: male
Age: 42 years old
Found on March 4, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.31107490000, -76.69447160000, icon_homicide_shooting, 'p1247', '
Oswaldo Santana
4700 Windsor Mill
Baltimore, MD 21207
Race: Black
Gender: male
Age: 21 years old
Found on February 29, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.32639480000, -76.67892150000, icon_homicide_bluntforce, 'p1246', '
Mya Carr
3400 Callaway Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 5 years old
Found on February 28, 2012
Victim died at Scene
Cause: Blunt Force
' +39.29591900000, -76.57797370000, icon_homicide_stabbing, 'p1245', '
Thomas Atkins
400 N Kenwood Ave
Baltimore, MD 21224
Race: Black
Gender: male
Age: 32 years old
Found on February 26, 2012
Victim died at Johns Hopkins Hospital
Cause: Stabbing
' +39.31344510000, -76.64627920000, icon_homicide_shooting, 'p1244', '
Guy Randall
2200 N. Fulton Ave
Baltimore, MD 21217
Race: Black
Gender: male
Age: 46 years old
Found on February 23, 2012
Victim died at Unknown
Cause: Shooting
' +39.28676900000, -76.63818300000, icon_homicide_stabbing, 'p1243', '
Orville Chamblee
1300 W Lombard St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 47 years old
Found on February 19, 2012
Victim died at Maryland Shock Trauma Center
Cause: Stabbing
' +39.32247040000, -76.60956130000, icon_homicide_shooting, 'p1241', '
Jerry Isaac
2800 Greenmount Ave
Baltimore, MD 21218
Race: Black
Gender: male
Age: 22 years old
Found on February 13, 2012
Victim died at Unknown
Cause: Shooting
' +39.32757500000, -76.53124800000, icon_homicide_shooting, 'p1240', '
Kyndal Staten
5900 Laclede Rd
Baltimore, MD 21206
Race: Black
Gender: male
Age: 27 years old
Found on February 12, 2012
Victim died at Unknown
Cause: Shooting
' +39.31858500000, -76.68770000000, icon_homicide_shooting, 'p1239', '
Johnny McFadden
2900 Haverford Rd
Baltimore, MD 21216
Race: Black
Gender: male
Age: 62 years old
Found on February 9, 2012
Victim died at Scene
Cause: Shooting
' +39.30490100000, -76.60377670000, icon_homicide_shooting, 'p1238', '
Gregory Kearney
931 E. Preston St
Baltimore, MD 21202
Race: Black
Gender: male
Age: 28 years old
Found on February 6, 2012
Victim died at Unknown
Cause: Shooting
' +39.35944500000, -76.58732660000, icon_homicide_shooting, 'p1236', '
Corey Alexander
5700 Nasco Place
Baltimore, MD 21239
Race: Black
Gender: male
Age: 31 years old
Found on February 1, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.32466900000, -76.55934300000, icon_homicide_shooting, 'p1237', '
Norris Conley
4300 Greenhill Ave
Baltimore, MD 21206
Race: Black
Gender: male
Age: 26 years old
Found on February 1, 2012
Victim died at Scene
Cause: Shooting
' +39.28336900000, -76.68235700000, icon_homicide_shooting, 'p1233', '
Shayvon Booker
200 S. Loudon Ave
Baltimore, MD 21229
Race: Black
Gender: male
Age: 19 years old
Found on January 29, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33937890000, -76.66725810000, icon_homicide_shooting, 'p1232', '
Travis Spencer
2700 Coldspring Lane
Baltimore, MD 21215
Race: Black
Gender: male
Age: 24 years old
Found on January 27, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.28846940000, -76.64253510000, icon_homicide_shooting, 'p1231', '
Dominic Hope
1600 W. Baltimore St
Baltimore, MD 21223
Race: Black
Gender: male
Age: 32 years old
Found on January 20, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.33007300000, -76.65826000000, icon_homicide_asphyxiation, 'p1230', '
Audrey Collins
3600 Cottage Ave
Baltimore, MD 21215
Race: Black
Gender: female
Age: 68 years old
Found on January 20, 2012
Victim died at Johns Hopkins Bayview Medical Center
Cause: Asphyxiation
' +39.27529000000, -76.68889800000, icon_homicide_shooting, 'p1229', '
James Rice
4300 Cedargarden Rd
Baltimore, MD 21229
Race: Black
Gender: male
Age: 18 years old
Found on January 19, 2012
Victim died at Scene
Cause: Shooting
' +39.29282500000, -76.67573100000, icon_homicide_shooting, 'p1228', '
James Hunter
500 N Edgewood St
Baltimore, MD 21229
Race: Black
Gender: male
Age: 30 years old
Found on January 12, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.22828720000, -76.59890410000, icon_homicide_shooting, 'p1226', '
Ramon Parrott
1000 Renick Ct
Baltimore, MD 21225
Race: Black
Gender: male
Age: 35 years old
Found on January 8, 2012
Victim died at Maryland Shock Trauma Center
Cause: Shooting
' +39.30100810000, -76.58366610000, icon_homicide_shooting, 'p1225', '
Doral Hinton
2400 Ashland Ave
Baltimore, MD 21205
Race: Black
Gender: male
Age: 27 years old
Found on January 6, 2012
Victim died at Johns Hopkins Hospital
Cause: Shooting
' +39.30482530000, -76.58122890000, icon_homicide_stabbing, 'p1224', '
Mary Hines
2600 E. Biddle St
Baltimore, MD 21213
Race: Black
Gender: female
Age: 84 years old
Found on January 5, 2012
Victim died at Scene
Cause: Stabbing
' +39.33200940000, -76.66912780000, icon_homicide_shooting, 'p1223', '
Bruce Royster
4000 Edgewood Rd
Baltimore, MD 21215
Race: Black
Gender: male
Age: 62 years old
Found on January 3, 2012
Victim died at Sinai Hospital
Cause: Shooting
' +39.27904300000, -76.65948890000, icon_homicide_bluntforce, 'p1227', '
Joseph Curtis
500 Brunswich
Baltimore, MD 21223
Race: Black
Gender: male
Age: 65 years old
Found on January 3, 2012
Victim died at Unknown
Cause: Blunt Force
' diff --git a/data/imdb_1000.csv b/data/imdb_1000.csv new file mode 100644 index 0000000..2d519da --- /dev/null +++ b/data/imdb_1000.csv @@ -0,0 +1,980 @@ +star_rating,title,content_rating,genre,duration,actors_list +9.3,The Shawshank Redemption,R,Crime,142,"[u'Tim Robbins', u'Morgan Freeman', u'Bob Gunton']" +9.2,The Godfather,R,Crime,175,"[u'Marlon Brando', u'Al Pacino', u'James Caan']" +9.1,The Godfather: Part II,R,Crime,200,"[u'Al Pacino', u'Robert De Niro', u'Robert Duvall']" +9,The Dark Knight,PG-13,Action,152,"[u'Christian Bale', u'Heath Ledger', u'Aaron Eckhart']" +8.9,Pulp Fiction,R,Crime,154,"[u'John Travolta', u'Uma Thurman', u'Samuel L. Jackson']" +8.9,12 Angry Men,NOT RATED,Drama,96,"[u'Henry Fonda', u'Lee J. Cobb', u'Martin Balsam']" +8.9,"The Good, the Bad and the Ugly",NOT RATED,Western,161,"[u'Clint Eastwood', u'Eli Wallach', u'Lee Van Cleef']" +8.9,The Lord of the Rings: The Return of the King,PG-13,Adventure,201,"[u'Elijah Wood', u'Viggo Mortensen', u'Ian McKellen']" +8.9,Schindler's List,R,Biography,195,"[u'Liam Neeson', u'Ralph Fiennes', u'Ben Kingsley']" +8.9,Fight Club,R,Drama,139,"[u'Brad Pitt', u'Edward Norton', u'Helena Bonham Carter']" +8.8,The Lord of the Rings: The Fellowship of the Ring,PG-13,Adventure,178,"[u'Elijah Wood', u'Ian McKellen', u'Orlando Bloom']" +8.8,Inception,PG-13,Action,148,"[u'Leonardo DiCaprio', u'Joseph Gordon-Levitt', u'Ellen Page']" +8.8,Star Wars: Episode V - The Empire Strikes Back,PG,Action,124,"[u'Mark Hamill', u'Harrison Ford', u'Carrie Fisher']" +8.8,Forrest Gump,PG-13,Drama,142,"[u'Tom Hanks', u'Robin Wright', u'Gary Sinise']" +8.8,The Lord of the Rings: The Two Towers,PG-13,Adventure,179,"[u'Elijah Wood', u'Ian McKellen', u'Viggo Mortensen']" +8.7,Interstellar,PG-13,Adventure,169,"[u'Matthew McConaughey', u'Anne Hathaway', u'Jessica Chastain']" +8.7,One Flew Over the Cuckoo's Nest,R,Drama,133,"[u'Jack Nicholson', u'Louise Fletcher', u'Michael Berryman']" +8.7,Seven Samurai,UNRATED,Drama,207,"[u'Toshir\xf4 Mifune', u'Takashi Shimura', u'Keiko Tsushima']" +8.7,Goodfellas,R,Biography,146,"[u'Robert De Niro', u'Ray Liotta', u'Joe Pesci']" +8.7,Star Wars,PG,Action,121,"[u'Mark Hamill', u'Harrison Ford', u'Carrie Fisher']" +8.7,The Matrix,R,Action,136,"[u'Keanu Reeves', u'Laurence Fishburne', u'Carrie-Anne Moss']" +8.7,City of God,R,Crime,130,"[u'Alexandre Rodrigues', u'Matheus Nachtergaele', u'Leandro Firmino']" +8.7,It's a Wonderful Life,APPROVED,Drama,130,"[u'James Stewart', u'Donna Reed', u'Lionel Barrymore']" +8.7,The Usual Suspects,R,Crime,106,"[u'Kevin Spacey', u'Gabriel Byrne', u'Chazz Palminteri']" +8.7,Se7en,R,Drama,127,"[u'Morgan Freeman', u'Brad Pitt', u'Kevin Spacey']" +8.6,Life Is Beautiful,PG-13,Comedy,116,"[u'Roberto Benigni', u'Nicoletta Braschi', u'Giorgio Cantarini']" +8.6,Once Upon a Time in the West,PG-13,Western,175,"[u'Henry Fonda', u'Charles Bronson', u'Claudia Cardinale']" +8.6,The Silence of the Lambs,R,Drama,118,"[u'Jodie Foster', u'Anthony Hopkins', u'Lawrence A. Bonney']" +8.6,Leon: The Professional,R,Crime,110,"[u'Jean Reno', u'Gary Oldman', u'Natalie Portman']" +8.6,City Lights,PASSED,Comedy,87,"[u'Charles Chaplin', u'Virginia Cherrill', u'Florence Lee']" +8.6,Spirited Away,PG,Animation,125,"[u'Daveigh Chase', u'Suzanne Pleshette', u'Miyu Irino']" +8.6,The Intouchables,R,Biography,112,"[u'Fran\xe7ois Cluzet', u'Omar Sy', u'Anne Le Ny']" +8.6,Casablanca,PG,Drama,102,"[u'Humphrey Bogart', u'Ingrid Bergman', u'Paul Henreid']" +8.6,Whiplash,R,Drama,107,"[u'Miles Teller', u'J.K. Simmons', u'Melissa Benoist']" +8.6,American History X,R,Crime,119,"[u'Edward Norton', u'Edward Furlong', u""Beverly D'Angelo""]" +8.6,Modern Times,G,Comedy,87,"[u'Charles Chaplin', u'Paulette Goddard', u'Henry Bergman']" +8.6,Saving Private Ryan,R,Action,169,"[u'Tom Hanks', u'Matt Damon', u'Tom Sizemore']" +8.6,Raiders of the Lost Ark,PG,Action,115,"[u'Harrison Ford', u'Karen Allen', u'Paul Freeman']" +8.6,Rear Window,APPROVED,Mystery,112,"[u'James Stewart', u'Grace Kelly', u'Wendell Corey']" +8.6,Psycho,R,Horror,109,"[u'Anthony Perkins', u'Janet Leigh', u'Vera Miles']" +8.5,The Green Mile,R,Crime,189,"[u'Tom Hanks', u'Michael Clarke Duncan', u'David Morse']" +8.5,Sunset Blvd.,NOT RATED,Drama,110,"[u'William Holden', u'Gloria Swanson', u'Erich von Stroheim']" +8.5,The Pianist,R,Biography,150,"[u'Adrien Brody', u'Thomas Kretschmann', u'Frank Finlay']" +8.5,The Dark Knight Rises,PG-13,Action,165,"[u'Christian Bale', u'Tom Hardy', u'Anne Hathaway']" +8.5,Gladiator,R,Action,155,"[u'Russell Crowe', u'Joaquin Phoenix', u'Connie Nielsen']" +8.5,Terminator 2: Judgment Day,R,Action,137,"[u'Arnold Schwarzenegger', u'Linda Hamilton', u'Edward Furlong']" +8.5,Memento,R,Mystery,113,"[u'Guy Pearce', u'Carrie-Anne Moss', u'Joe Pantoliano']" +8.5,Taare Zameen Par,PG,Drama,165,"[u'Darsheel Safary', u'Aamir Khan', u'Tanay Chheda']" +8.5,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,PG,Comedy,95,"[u'Peter Sellers', u'George C. Scott', u'Sterling Hayden']" +8.5,The Departed,R,Crime,151,"[u'Leonardo DiCaprio', u'Matt Damon', u'Jack Nicholson']" +8.5,Cinema Paradiso,R,Drama,155,"[u'Philippe Noiret', u'Enzo Cannavale', u'Antonella Attili']" +8.5,Apocalypse Now,R,Drama,153,"[u'Martin Sheen', u'Marlon Brando', u'Robert Duvall']" +8.5,The Great Dictator,APPROVED,Comedy,125,"[u'Charles Chaplin', u'Paulette Goddard', u'Jack Oakie']" +8.5,The Prestige,PG-13,Drama,130,"[u'Christian Bale', u'Hugh Jackman', u'Scarlett Johansson']" +8.5,Back to the Future,PG,Adventure,116,"[u'Michael J. Fox', u'Christopher Lloyd', u'Lea Thompson']" +8.5,The Lion King,G,Animation,89,"[u'Matthew Broderick', u'Jeremy Irons', u'James Earl Jones']" +8.5,The Lives of Others,R,Drama,137,"[u'Ulrich M\xfche', u'Martina Gedeck', u'Sebastian Koch']" +8.5,Alien,R,Horror,117,"[u'Sigourney Weaver', u'Tom Skerritt', u'John Hurt']" +8.5,Paths of Glory,APPROVED,Drama,88,"[u'Kirk Douglas', u'Ralph Meeker', u'Adolphe Menjou']" +8.5,Django Unchained,R,Western,165,"[u'Jamie Foxx', u'Christoph Waltz', u'Leonardo DiCaprio']" +8.5,3 Idiots,PG-13,Comedy,170,"[u'Aamir Khan', u'Madhavan', u'Mona Singh']" +8.5,Grave of the Fireflies,UNRATED,Animation,89,"[u'Tsutomu Tatsumi', u'Ayano Shiraishi', u'Akemi Yamaguchi']" +8.5,The Shining,R,Horror,146,"[u'Jack Nicholson', u'Shelley Duvall', u'Danny Lloyd']" +8.4,M,NOT RATED,Crime,99,"[u'Peter Lorre', u'Ellen Widmann', u'Inge Landgut']" +8.4,WALL-E,G,Animation,98,"[u'Ben Burtt', u'Elissa Knight', u'Jeff Garlin']" +8.4,Witness for the Prosecution,APPROVED,Crime,116,"[u'Tyrone Power', u'Marlene Dietrich', u'Charles Laughton']" +8.4,Munna Bhai M.B.B.S.,NOT RATED,Comedy,156,"[u'Sunil Dutt', u'Sanjay Dutt', u'Arshad Warsi']" +8.4,American Beauty,R,Drama,122,"[u'Kevin Spacey', u'Annette Bening', u'Thora Birch']" +8.4,Das Boot,R,Adventure,149,"[u'J\xfcrgen Prochnow', u'Herbert Gr\xf6nemeyer', u'Klaus Wennemann']" +8.4,Princess Mononoke,PG-13,Animation,134,"[u'Y\xf4ji Matsuda', u'Yuriko Ishida', u'Y\xfbko Tanaka']" +8.4,Amelie,R,Comedy,122,"[u'Audrey Tautou', u'Mathieu Kassovitz', u'Rufus']" +8.4,North by Northwest,APPROVED,Adventure,136,"[u'Cary Grant', u'Eva Marie Saint', u'James Mason']" +8.4,Rang De Basanti,NOT RATED,Drama,157,"[u'Aamir Khan', u'Soha Ali Khan', u'Siddharth']" +8.4,Jodaeiye Nader az Simin,PG-13,Drama,123,"[u'Peyman Moaadi', u'Leila Hatami', u'Sareh Bayat']" +8.4,Citizen Kane,APPROVED,Drama,119,"[u'Orson Welles', u'Joseph Cotten', u'Dorothy Comingore']" +8.4,Aliens,R,Action,137,"[u'Sigourney Weaver', u'Michael Biehn', u'Carrie Henn']" +8.4,Vertigo,APPROVED,Mystery,128,"[u'James Stewart', u'Kim Novak', u'Barbara Bel Geddes']" +8.4,Oldeuboi,R,Drama,120,"[u'Min-sik Choi', u'Ji-tae Yu', u'Hye-jeong Kang']" +8.4,Once Upon a Time in America,R,Crime,229,"[u'Robert De Niro', u'James Woods', u'Elizabeth McGovern']" +8.4,Double Indemnity,PASSED,Crime,107,"[u'Fred MacMurray', u'Barbara Stanwyck', u'Edward G. Robinson']" +8.4,Star Wars: Episode VI - Return of the Jedi,PG,Action,134,"[u'Mark Hamill', u'Harrison Ford', u'Carrie Fisher']" +8.4,Toy Story 3,G,Animation,103,"[u'Tom Hanks', u'Tim Allen', u'Joan Cusack']" +8.4,Braveheart,R,Action,177,"[u'Mel Gibson', u'Sophie Marceau', u'Patrick McGoohan']" +8.4,To Kill a Mockingbird,NOT RATED,Drama,129,"[u'Gregory Peck', u'John Megna', u'Frank Overton']" +8.4,Requiem for a Dream,R,Drama,102,"[u'Ellen Burstyn', u'Jared Leto', u'Jennifer Connelly']" +8.4,Lawrence of Arabia,PG,Adventure,216,"[u""Peter O'Toole"", u'Alec Guinness', u'Anthony Quinn']" +8.4,A Clockwork Orange,X,Crime,136,"[u'Malcolm McDowell', u'Patrick Magee', u'Michael Bates']" +8.4,Bicycle Thieves,NOT RATED,Drama,93,"[u'Lamberto Maggiorani', u'Enzo Staiola', u'Lianella Carell']" +8.4,The Kid,NOT RATED,Comedy,68,"[u'Charles Chaplin', u'Edna Purviance', u'Jackie Coogan']" +8.4,Swades,NOT RATED,Drama,189,"[u'Shah Rukh Khan', u'Gayatri Joshi', u'Kishori Balal']" +8.4,Reservoir Dogs,R,Crime,99,"[u'Harvey Keitel', u'Tim Roth', u'Michael Madsen']" +8.4,Eternal Sunshine of the Spotless Mind,R,Drama,108,"[u'Jim Carrey', u'Kate Winslet', u'Tom Wilkinson']" +8.4,Taxi Driver,R,Crime,113,"[u'Robert De Niro', u'Jodie Foster', u'Cybill Shepherd']" +8.4,Dilwale Dulhania Le Jayenge,NOT RATED,Comedy,181,"[u'Shah Rukh Khan', u'Kajol', u'Amrish Puri']" +8.4,Singin' in the Rain,APPROVED,Comedy,103,"[u'Gene Kelly', u""Donald O'Connor"", u'Debbie Reynolds']" +8.4,All About Eve,APPROVED,Drama,138,"[u'Bette Davis', u'Anne Baxter', u'George Sanders']" +8.4,Yojimbo,UNRATED,Action,110,"[u'Toshir\xf4 Mifune', u'Eijir\xf4 T\xf4no', u'Tatsuya Nakadai']" +8.4,The Sting,PG,Comedy,129,"[u'Paul Newman', u'Robert Redford', u'Robert Shaw']" +8.4,Rashomon,UNRATED,Crime,88,"[u'Toshir\xf4 Mifune', u'Machiko Ky\xf4', u'Masayuki Mori']" +8.4,Amadeus,R,Biography,160,"[u'F. Murray Abraham', u'Tom Hulce', u'Elizabeth Berridge']" +8.3,The Treasure of the Sierra Madre,NOT RATED,Action,126,"[u'Humphrey Bogart', u'Walter Huston', u'Tim Holt']" +8.3,Monty Python and the Holy Grail,PG,Adventure,91,"[u'Graham Chapman', u'John Cleese', u'Eric Idle']" +8.3,Full Metal Jacket,R,Drama,116,"[u'Matthew Modine', u'R. Lee Ermey', u""Vincent D'Onofrio""]" +8.3,The Apartment,APPROVED,Comedy,125,"[u'Jack Lemmon', u'Shirley MacLaine', u'Fred MacMurray']" +8.3,Ikiru,NOT RATED,Drama,143,"[u'Takashi Shimura', u'Nobuo Kaneko', u""Shin'ichi Himori""]" +8.3,The Third Man,NOT RATED,Film-Noir,93,"[u'Orson Welles', u'Joseph Cotten', u'Alida Valli']" +8.3,Snatch.,R,Comedy,102,"[u'Jason Statham', u'Brad Pitt', u'Benicio Del Toro']" +8.3,For a Few Dollars More,APPROVED,Western,132,"[u'Clint Eastwood', u'Lee Van Cleef', u'Gian Maria Volont\xe9']" +8.3,Metropolis,NOT RATED,Drama,153,"[u'Brigitte Helm', u'Alfred Abel', u'Gustav Fr\xf6hlich']" +8.3,Dil Chahta Hai,NOT RATED,Comedy,183,"[u'Aamir Khan', u'Saif Ali Khan', u'Akshaye Khanna']" +8.3,2001: A Space Odyssey,G,Mystery,160,"[u'Keir Dullea', u'Gary Lockwood', u'William Sylvester']" +8.3,Some Like It Hot,NOT RATED,Comedy,120,"[u'Marilyn Monroe', u'Tony Curtis', u'Jack Lemmon']" +8.3,L.A. Confidential,R,Crime,138,"[u'Kevin Spacey', u'Russell Crowe', u'Guy Pearce']" +8.3,Batman Begins,PG-13,Action,140,"[u'Christian Bale', u'Michael Caine', u'Ken Watanabe']" +8.3,Inglourious Basterds,R,Adventure,153,"[u'Brad Pitt', u'Diane Kruger', u'Eli Roth']" +8.3,Scarface,R,Crime,170,"[u'Al Pacino', u'Michelle Pfeiffer', u'Steven Bauer']" +8.3,Mr. Smith Goes to Washington,NOT RATED,Drama,129,"[u'James Stewart', u'Jean Arthur', u'Claude Rains']" +8.3,Toy Story,G,Animation,81,"[u'Tom Hanks', u'Tim Allen', u'Don Rickles']" +8.3,Indiana Jones and the Last Crusade,PG-13,Action,127,"[u'Harrison Ford', u'Sean Connery', u'Alison Doody']" +8.3,Unforgiven,R,Western,131,"[u'Clint Eastwood', u'Gene Hackman', u'Morgan Freeman']" +8.3,The Great Escape,UNRATED,Adventure,172,"[u'Steve McQueen', u'James Garner', u'Richard Attenborough']" +8.3,Jagten,R,Drama,115,"[u'Mads Mikkelsen', u'Thomas Bo Larsen', u'Annika Wedderkopp']" +8.3,On the Waterfront,NOT RATED,Crime,108,"[u'Marlon Brando', u'Karl Malden', u'Lee J. Cobb']" +8.3,The General,UNRATED,Action,107,"[u'Buster Keaton', u'Marion Mack', u'Glen Cavender']" +8.3,Raging Bull,R,Biography,129,"[u'Robert De Niro', u'Cathy Moriarty', u'Joe Pesci']" +8.3,Downfall,R,Biography,156,"[u'Bruno Ganz', u'Alexandra Maria Lara', u'Ulrich Matthes']" +8.3,Up,PG,Animation,96,"[u'Edward Asner', u'Jordan Nagai', u'John Ratzenberger']" +8.3,Wild Strawberries,UNRATED,Drama,91,"[u'Victor Sj\xf6str\xf6m', u'Bibi Andersson', u'Ingrid Thulin']" +8.3,The Gold Rush,NOT RATED,Adventure,95,"[u'Charles Chaplin', u'Mack Swain', u'Tom Murray']" +8.3,Ran,R,Action,162,"[u'Tatsuya Nakadai', u'Akira Terao', u'Jinpachi Nezu']" +8.3,Chinatown,R,Drama,130,"[u'Jack Nicholson', u'Faye Dunaway', u'John Huston']" +8.3,My Neighbor Totoro,G,Animation,86,"[u'Hitoshi Takagi', u'Noriko Hidaka', u'Chika Sakamoto']" +8.3,Judgment at Nuremberg,NOT RATED,Drama,186,"[u'Spencer Tracy', u'Burt Lancaster', u'Richard Widmark']" +8.3,Barfi!,NOT RATED,Adventure,151,"[u'Ranbir Kapoor', u'Priyanka Chopra', u'Ileana']" +8.3,The Seventh Seal,NOT RATED,Drama,96,"[u'Max von Sydow', u'Gunnar Bj\xf6rnstrand', u'Bengt Ekerot']" +8.3,Heat,R,Action,170,"[u'Al Pacino', u'Robert De Niro', u'Val Kilmer']" +8.3,Pan's Labyrinth,R,Drama,118,"[u'Ivana Baquero', u'Ariadna Gil', u'Sergi L\xf3pez']" +8.3,The Bridge on the River Kwai,PG,Adventure,161,"[u'William Holden', u'Alec Guinness', u'Jack Hawkins']" +8.3,Die Hard,R,Action,131,"[u'Bruce Willis', u'Alan Rickman', u'Bonnie Bedelia']" +8.3,Good Will Hunting,R,Drama,126,"[u'Robin Williams', u'Matt Damon', u'Ben Affleck']" +8.3,The Wages of Fear,NOT RATED,Adventure,131,"[u'Yves Montand', u'Charles Vanel', u'Peter van Eyck']" +8.3,The Secret in Their Eyes,R,Drama,129,"[u'Ricardo Dar\xedn', u'Soledad Villamil', u'Pablo Rago']" +8.3,Lagaan: Once Upon a Time in India,PG,Adventure,224,"[u'Aamir Khan', u'Gracy Singh', u'Rachel Shelley']" +8.2,The Wolf of Wall Street,R,Biography,180,"[u'Leonardo DiCaprio', u'Jonah Hill', u'Margot Robbie']" +8.2,It Happened One Night,UNRATED,Comedy,105,"[u'Clark Gable', u'Claudette Colbert', u'Walter Connolly']" +8.2,Blade Runner,R,Sci-Fi,117,"[u'Harrison Ford', u'Rutger Hauer', u'Sean Young']" +8.2,Warrior,PG-13,Drama,140,"[u'Tom Hardy', u'Nick Nolte', u'Joel Edgerton']" +8.2,Howl's Moving Castle,PG,Animation,119,"[u'Chieko Baish\xf4', u'Takuya Kimura', u'Tatsuya Gash\xfbin']" +8.2,The Elephant Man,PG,Biography,124,"[u'Anthony Hopkins', u'John Hurt', u'Anne Bancroft']" +8.2,Rebecca,NOT RATED,Mystery,130,"[u'Laurence Olivier', u'Joan Fontaine', u'George Sanders']" +8.2,Incendies,R,Drama,139,"[u'Lubna Azabal', u'M\xe9lissa D\xe9sormeaux-Poulin', u'Maxim Gaudette']" +8.2,"Lock, Stock and Two Smoking Barrels",R,Comedy,107,"[u'Jason Flemyng', u'Dexter Fletcher', u'Nick Moran']" +8.2,V for Vendetta,R,Action,132,"[u'Hugo Weaving', u'Natalie Portman', u'Rupert Graves']" +8.2,The Big Lebowski,R,Comedy,117,"[u'Jeff Bridges', u'John Goodman', u'Julianne Moore']" +8.2,Cool Hand Luke,PG,Crime,126,"[u'Paul Newman', u'George Kennedy', u'Strother Martin']" +8.2,Relatos salvajes,R,Comedy,122,"[u'Dar\xedo Grandinetti', u'Mar\xeda Marull', u'M\xf3nica Villa']" +8.2,Casino,R,Biography,178,"[u'Robert De Niro', u'Sharon Stone', u'Joe Pesci']" +8.2,Gone with the Wind,G,Drama,238,"[u'Clark Gable', u'Vivien Leigh', u'Thomas Mitchell']" +8.2,Gone Girl,R,Drama,149,"[u'Ben Affleck', u'Rosamund Pike', u'Neil Patrick Harris']" +8.2,The Best Years of Our Lives,PASSED,Drama,172,"[u'Fredric March', u'Dana Andrews', u'Myrna Loy']" +8.2,How to Train Your Dragon,PG,Animation,98,"[u'Jay Baruchel', u'Gerard Butler', u'Christopher Mintz-Plasse']" +8.2,Diabolique,UNRATED,Horror,116,"[u'Simone Signoret', u'V\xe9ra Clouzot', u'Paul Meurisse']" +8.2,Gran Torino,R,Drama,116,"[u'Clint Eastwood', u'Bee Vang', u'Christopher Carley']" +8.2,Rush,R,Action,123,"[u'Daniel Br\xfchl', u'Chris Hemsworth', u'Olivia Wilde']" +8.2,Into the Wild,R,Adventure,148,"[u'Emile Hirsch', u'Vince Vaughn', u'Catherine Keener']" +8.2,My Sassy Girl,NOT RATED,Comedy,123,"[u'Tae-hyun Cha', u'Gianna Jun', u'In-mun Kim']" +8.2,The Deer Hunter,R,Drama,182,"[u'Robert De Niro', u'Christopher Walken', u'John Cazale']" +8.2,Mary and Max,NOT RATED,Animation,92,"[u'Toni Collette', u'Philip Seymour Hoffman', u'Eric Bana']" +8.2,Hachi: A Dog's Tale,G,Drama,93,"[u'Richard Gere', u'Joan Allen', u'Cary-Hiroyuki Tagawa']" +8.2,The Maltese Falcon,NOT RATED,Crime,100,"[u'Humphrey Bogart', u'Mary Astor', u'Gladys George']" +8.2,A Beautiful Mind,PG-13,Biography,135,"[u'Russell Crowe', u'Ed Harris', u'Jennifer Connelly']" +8.2,Dial M for Murder,PG,Crime,105,"[u'Ray Milland', u'Grace Kelly', u'Robert Cummings']" +8.2,Trainspotting,R,Drama,94,"[u'Ewan McGregor', u'Ewen Bremner', u'Jonny Lee Miller']" +8.2,Tae Guk Gi: The Brotherhood of War,R,Action,140,"[u'Dong-gun Jang', u'Bin Won', u'Eun-ju Lee']" +8.2,Persona,NOT RATED,Drama,83,"[u'Bibi Andersson', u'Liv Ullmann', u'Margaretha Krook']" +8.2,Touch of Evil,PG-13,Crime,95,"[u'Charlton Heston', u'Orson Welles', u'Janet Leigh']" +8.2,Fargo,R,Crime,98,"[u'William H. Macy', u'Frances McDormand', u'Steve Buscemi']" +8.2,The Avengers,PG-13,Action,143,"[u'Robert Downey Jr.', u'Chris Evans', u'Scarlett Johansson']" +8.2,The 400 Blows,NOT RATED,Crime,99,"[u'Jean-Pierre L\xe9aud', u'Albert R\xe9my', u'Claire Maurier']" +8.2,The Princess Bride,PG,Adventure,98,"[u'Cary Elwes', u'Mandy Patinkin', u'Robin Wright']" +8.2,Hotel Rwanda,PG-13,Drama,121,"[u'Don Cheadle', u'Sophie Okonedo', u'Joaquin Phoenix']" +8.2,Stalker,NOT RATED,Drama,163,"[u'Alisa Freyndlikh', u'Aleksandr Kaydanovskiy', u'Anatoliy Solonitsyn']" +8.2,The Battle of Algiers,NOT RATED,Crime,121,"[u'Brahim Hadjadj', u'Jean Martin', u'Yacef Saadi']" +8.2,Underground,NOT RATED,Comedy,167,"[u'Predrag Manojlovic', u'Lazar Ristovski', u'Mirjana Jokovic']" +8.2,Fanny and Alexander,R,Drama,188,"[u'Bertil Guve', u'Pernilla Allwin', u'Kristina Adolphson']" +8.2,Network,R,Drama,121,"[u'Faye Dunaway', u'William Holden', u'Peter Finch']" +8.2,The Thing,R,Horror,109,"[u'Kurt Russell', u'Wilford Brimley', u'Keith David']" +8.2,Butch Cassidy and the Sundance Kid,,Biography,110,"[u'Paul Newman', u'Robert Redford', u'Katharine Ross']" +8.2,The Grapes of Wrath,NOT RATED,Drama,129,"[u'Henry Fonda', u'Jane Darwell', u'John Carradine']" +8.2,"Black Cat, White Cat",R,Comedy,127,"[u'Bajram Severdzan', u'Srdjan Todorovic', u'Branka Katic']" +8.2,Life of Brian,R,Comedy,94,"[u'Graham Chapman', u'John Cleese', u'Michael Palin']" +8.2,The Sixth Sense,PG-13,Drama,107,"[u'Bruce Willis', u'Haley Joel Osment', u'Toni Collette']" +8.2,Finding Nemo,G,Animation,100,"[u'Albert Brooks', u'Ellen DeGeneres', u'Alexander Gould']" +8.2,Nausicaa of the Valley of the Wind,PG,Animation,117,"[u'Sumi Shimamoto', u'Mahito Tsujimura', u'Hisako Ky\xf4da']" +8.1,Kingsman: The Secret Service,R,Action,129,"[u'Colin Firth', u'Taron Egerton', u'Samuel L. Jackson']" +8.1,Platoon,R,Drama,120,"[u'Charlie Sheen', u'Tom Berenger', u'Willem Dafoe']" +8.1,Guardians of the Galaxy,PG-13,Action,121,"[u'Chris Pratt', u'Vin Diesel', u'Bradley Cooper']" +8.1,In the Name of the Father,R,Biography,133,"[u'Daniel Day-Lewis', u'Pete Postlethwaite', u'Alison Crosbie']" +8.1,Kill Bill: Vol. 1,R,Action,111,"[u'Uma Thurman', u'David Carradine', u'Daryl Hannah']" +8.1,No Country for Old Men,R,Crime,122,"[u'Tommy Lee Jones', u'Javier Bardem', u'Josh Brolin']" +8.1,Le Samourai,PG,Crime,101,"[u'Alain Delon', u'Nathalie Delon', u'Fran\xe7ois P\xe9rier']" +8.1,12 Years a Slave,R,Biography,134,"[u'Chiwetel Ejiofor', u'Michael Kenneth Williams', u'Michael Fassbender']" +8.1,La leggenda del pianista sull'oceano,R,Drama,165,"[u'Tim Roth', u'Pruitt Taylor Vince', u'Bill Nunn']" +8.1,8 1/2,NOT RATED,Drama,138,"[u'Marcello Mastroianni', u'Anouk Aim\xe9e', u'Claudia Cardinale']" +8.1,Ben-Hur,G,Adventure,212,"[u'Charlton Heston', u'Jack Hawkins', u'Stephen Boyd']" +8.1,Amores Perros,R,Drama,154,"[u'Emilio Echevarr\xeda', u'Gael Garc\xeda Bernal', u'Goya Toledo']" +8.1,Stand by Me,R,Adventure,89,"[u'Wil Wheaton', u'River Phoenix', u'Corey Feldman']" +8.1,What Ever Happened to Baby Jane?,APPROVED,Drama,134,"[u'Bette Davis', u'Joan Crawford', u'Victor Buono']" +8.1,Annie Hall,PG,Comedy,93,"[u'Woody Allen', u'Diane Keaton', u'Tony Roberts']" +8.1,The Imitation Game,PG-13,Biography,114,"[u'Benedict Cumberbatch', u'Keira Knightley', u'Matthew Goode']" +8.1,Laura,APPROVED,Film-Noir,88,"[u'Gene Tierney', u'Dana Andrews', u'Clifton Webb']" +8.1,Departures,PG-13,Drama,130,"[u'Masahiro Motoki', u'Ry\xf4ko Hirosue', u'Tsutomu Yamazaki']" +8.1,Infernal Affairs,R,Crime,101,"[u'Andy Lau', u'Tony Chiu Wai Leung', u'Anthony Chau-Sang Wong']" +8.1,There Will Be Blood,R,Drama,158,"[u'Daniel Day-Lewis', u'Paul Dano', u'Ciar\xe1n Hinds']" +8.1,The Grand Budapest Hotel,R,Adventure,99,"[u'Ralph Fiennes', u'F. Murray Abraham', u'Mathieu Amalric']" +8.1,La Strada,NOT RATED,Drama,108,"[u'Anthony Quinn', u'Giulietta Masina', u'Richard Basehart']" +8.1,Sin City,R,Crime,124,"[u'Mickey Rourke', u'Clive Owen', u'Bruce Willis']" +8.1,Memories of Murder,UNRATED,Crime,132,"[u'Kang-ho Song', u'Sang-kyung Kim', u'Roe-ha Kim']" +8.1,Donnie Darko,R,Drama,113,"[u'Jake Gyllenhaal', u'Jena Malone', u'Mary McDonnell']" +8.1,Who's Afraid of Virginia Woolf?,TV-MA,Drama,131,"[u'Elizabeth Taylor', u'Richard Burton', u'George Segal']" +8.1,Gandhi,PG,Biography,191,"[u'Ben Kingsley', u'John Gielgud', u'Candice Bergen']" +8.1,Solaris,PG,Drama,167,"[u'Natalya Bondarchuk', u'Donatas Banionis', u'J\xfcri J\xe4rvet']" +8.1,Harry Potter and the Deathly Hallows: Part 2,PG-13,Adventure,130,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +8.1,"Paris, Texas",R,Drama,147,"[u'Harry Dean Stanton', u'Nastassja Kinski', u'Dean Stockwell']" +8.1,The Wizard of Oz,PASSED,Adventure,102,"[u'Judy Garland', u'Frank Morgan', u'Ray Bolger']" +8.1,3-Iron,R,Crime,88,"[u'Seung-yeon Lee', u'Hyun-kyoon Lee', u'Hyuk-ho Kwon']" +8.1,Boyhood,R,Drama,165,"[u'Ellar Coltrane', u'Patricia Arquette', u'Ethan Hawke']" +8.1,Million Dollar Baby,PG-13,Drama,132,"[u'Hilary Swank', u'Clint Eastwood', u'Morgan Freeman']" +8.1,The Last Picture Show,R,Drama,118,"[u'Timothy Bottoms', u'Jeff Bridges', u'Cybill Shepherd']" +8.1,Strangers on a Train,APPROVED,Crime,101,"[u'Farley Granger', u'Robert Walker', u'Ruth Roman']" +8.1,Cat on a Hot Tin Roof,APPROVED,Drama,108,"[u'Elizabeth Taylor', u'Paul Newman', u'Burl Ives']" +8.1,La Dolce Vita,NOT RATED,Comedy,174,"[u'Marcello Mastroianni', u'Anita Ekberg', u'Anouk Aim\xe9e']" +8.1,Chungking Express,PG-13,Drama,98,"[u'Brigitte Lin', u'Takeshi Kaneshiro', u'Tony Chiu Wai Leung']" +8.1,The Night of the Hunter,APPROVED,Crime,92,"[u'Robert Mitchum', u'Shelley Winters', u'Lillian Gish']" +8.1,La Haine,NOT RATED,Crime,98,"[u'Vincent Cassel', u'Hubert Kound\xe9', u'Sa\xefd Taghmaoui']" +8.1,Yip Man,R,Action,106,"[u'Donnie Yen', u'Simon Yam', u'Siu-Wong Fan']" +8.1,High Noon,PG,Western,85,"[u'Gary Cooper', u'Grace Kelly', u'Thomas Mitchell']" +8.1,Notorious,APPROVED,Drama,101,"[u'Cary Grant', u'Ingrid Bergman', u'Claude Rains']" +8.1,Before Sunrise,R,Drama,105,"[u'Ethan Hawke', u'Julie Delpy', u'Andrea Eckert']" +8.1,Elite Squad: The Enemy Within,UNRATED,Action,115,"[u'Wagner Moura', u'Irandhir Santos', u'Andr\xe9 Ramiro']" +8.1,The Bourne Ultimatum,PG-13,Action,115,"[u'Matt Damon', u'\xc9dgar Ram\xedrez', u'Joan Allen']" +8.1,Castle in the Sky,PG,Animation,124,"[u'Anna Paquin', u'James Van Der Beek', u'Cloris Leachman']" +8.1,The Celebration,R,Drama,105,"[u'Ulrich Thomsen', u'Henning Moritzen', u'Thomas Bo Larsen']" +8.1,"Spring, Summer, Fall, Winter... and Spring",R,Drama,103,"[u'Ki-duk Kim', u'Yeong-su Oh', u'Jong-ho Kim']" +8.1,Shutter Island,R,Mystery,138,"[u'Leonardo DiCaprio', u'Emily Mortimer', u'Mark Ruffalo']" +8.1,Barry Lyndon,PG,Adventure,184,"[u""Ryan O'Neal"", u'Marisa Berenson', u'Patrick Magee']" +8.1,Stalag 17,NOT RATED,Comedy,120,"[u'William Holden', u'Don Taylor', u'Otto Preminger']" +8.1,Three Colors: Red,R,Drama,99,"[u'Ir\xe8ne Jacob', u'Jean-Louis Trintignant', u'Fr\xe9d\xe9rique Feder']" +8.1,X-Men: Days of Future Past,PG-13,Action,131,"[u'Patrick Stewart', u'Ian McKellen', u'Hugh Jackman']" +8.1,Sleuth,PG,Mystery,138,"[u'Laurence Olivier', u'Michael Caine', u'Alec Cawthorne']" +8.1,In the Mood for Love,PG,Drama,98,"[u'Tony Chiu Wai Leung', u'Maggie Cheung', u'Ping Lam Siu']" +8.1,The Man Who Shot Liberty Valance,APPROVED,Drama,123,"[u'James Stewart', u'John Wayne', u'Vera Miles']" +8.1,Arsenic and Old Lace,NOT RATED,Comedy,118,"[u'Cary Grant', u'Priscilla Lane', u'Raymond Massey']" +8.1,The Big Sleep,APPROVED,Crime,114,"[u'Humphrey Bogart', u'Lauren Bacall', u'John Ridgely']" +8.1,Roman Holiday,NOT RATED,Comedy,118,"[u'Gregory Peck', u'Audrey Hepburn', u'Eddie Albert']" +8.1,The Philadelphia Story,NOT RATED,Comedy,112,"[u'Cary Grant', u'Katharine Hepburn', u'James Stewart']" +8.1,Akira,R,Animation,124,"[u'Nozomu Sasaki', u'Mami Koyama', u'Mitsuo Iwata']" +8.1,Anatomy of a Murder,UNRATED,Crime,160,"[u'James Stewart', u'Lee Remick', u'Ben Gazzara']" +8.1,The Cabinet of Dr. Caligari,UNRATED,Crime,67,"[u'Werner Krauss', u'Conrad Veidt', u'Friedrich Feher']" +8.1,The Help,PG-13,Drama,146,"[u'Emma Stone', u'Viola Davis', u'Octavia Spencer']" +8.1,The Sea Inside,PG-13,Biography,125,"[u'Javier Bardem', u'Bel\xe9n Rueda', u'Lola Due\xf1as']" +8.1,Elite Squad,R,Action,115,"[u'Wagner Moura', u'Andr\xe9 Ramiro', u'Caio Junqueira']" +8.1,The Hustler,UNRATED,Drama,134,"[u'Paul Newman', u'Jackie Gleason', u'Piper Laurie']" +8.1,Rio Bravo,NOT RATED,Western,141,"[u'John Wayne', u'Dean Martin', u'Ricky Nelson']" +8.1,Twelve Monkeys,R,Mystery,129,"[u'Bruce Willis', u'Madeleine Stowe', u'Brad Pitt']" +8.1,Harvey,NOT RATED,Comedy,104,"[u'James Stewart', u'Josephine Hull', u'Peggy Dow']" +8.1,A Christmas Story,PG,Comedy,94,"[u'Peter Billingsley', u'Melinda Dillon', u'Darren McGavin']" +8.1,Jaws,PG,Drama,124,"[u'Roy Scheider', u'Robert Shaw', u'Richard Dreyfuss']" +8.1,The Raid 2,R,Action,150,"[u'Iko Uwais', u'Yayan Ruhian', u'Arifin Putra']" +8.1,Rocky,PG,Drama,119,"[u'Sylvester Stallone', u'Talia Shire', u'Burt Young']" +8.1,Wings of Desire,PG-13,Drama,128,"[u'Bruno Ganz', u'Solveig Dommartin', u'Otto Sander']" +8.1,Pirates of the Caribbean: The Curse of the Black Pearl,PG-13,Adventure,143,"[u'Johnny Depp', u'Geoffrey Rush', u'Orlando Bloom']" +8.1,The Killing,APPROVED,Crime,85,"[u'Sterling Hayden', u'Coleen Gray', u'Vince Edwards']" +8.1,Papillon,R,Biography,151,"[u'Steve McQueen', u'Dustin Hoffman', u'Victor Jory']" +8.1,The King's Speech,R,Biography,118,"[u'Colin Firth', u'Geoffrey Rush', u'Helena Bonham Carter']" +8.1,Groundhog Day,PG,Comedy,101,"[u'Bill Murray', u'Andie MacDowell', u'Chris Elliott']" +8.1,A Fistful of Dollars,R,Action,99,"[u'Clint Eastwood', u'Gian Maria Volont\xe9', u'Marianne Koch']" +8.1,"Monsters, Inc.",G,Animation,92,"[u'Billy Crystal', u'John Goodman', u'Mary Gibbs']" +8.1,Dog Day Afternoon,R,Crime,125,"[u'Al Pacino', u'John Cazale', u'Penelope Allen']" +8.1,The Perks of Being a Wallflower,PG-13,Drama,102,"[u'Logan Lerman', u'Emma Watson', u'Ezra Miller']" +8.1,Young Frankenstein,PG,Comedy,106,"[u'Gene Wilder', u'Madeline Kahn', u'Marty Feldman']" +8.1,The Terminator,R,Action,107,"[u'Arnold Schwarzenegger', u'Linda Hamilton', u'Michael Biehn']" +8.1,Harold and Maude,GP,Comedy,91,"[u'Ruth Gordon', u'Bud Cort', u'Vivian Pickles']" +8.1,Before Sunset,R,Drama,80,"[u'Ethan Hawke', u'Julie Delpy', u'Vernon Dobtcheff']" +8.1,A Streetcar Named Desire,PG,Drama,122,"[u'Vivien Leigh', u'Marlon Brando', u'Kim Hunter']" +8.1,Bringing Up Baby,APPROVED,Comedy,102,"[u'Katharine Hepburn', u'Cary Grant', u'Charles Ruggles']" +8.1,The Diving Bell and the Butterfly,PG-13,Biography,112,"[u'Mathieu Amalric', u'Emmanuelle Seigner', u'Marie-Jos\xe9e Croze']" +8.1,His Girl Friday,APPROVED,Comedy,92,"[u'Cary Grant', u'Rosalind Russell', u'Ralph Bellamy']" +8.1,Sling Blade,R,Drama,135,"[u'Billy Bob Thornton', u'Dwight Yoakam', u'J.T. Walsh']" +8.1,All Quiet on the Western Front,UNRATED,Drama,136,"[u'Lew Ayres', u'Louis Wolheim', u'John Wray']" +8.1,Prisoners,R,Crime,153,"[u'Hugh Jackman', u'Jake Gyllenhaal', u'Viola Davis']" +8.1,The Return,UNRATED,Drama,105,"[u'Vladimir Garin', u'Ivan Dobronravov', u'Konstantin Lavronenko']" +8.1,The Manchurian Candidate,APPROVED,Mystery,126,"[u'Frank Sinatra', u'Laurence Harvey', u'Janet Leigh']" +8.1,Duck Soup,PASSED,Comedy,68,"[u'Groucho Marx', u'Harpo Marx', u'Chico Marx']" +8.1,Beauty and the Beast,G,Animation,84,"[u""Paige O'Hara"", u'Robby Benson', u'Richard White']" +8.1,The Truman Show,PG,Drama,103,"[u'Jim Carrey', u'Ed Harris', u'Laura Linney']" +8.1,The Wild Bunch,R,Action,145,"[u'William Holden', u'Ernest Borgnine', u'Robert Ryan']" +8,Rope,PG,Crime,80,"[u'James Stewart', u'John Dall', u'Farley Granger']" +8,The Graduate,APPROVED,Comedy,106,"[u'Dustin Hoffman', u'Anne Bancroft', u'Katharine Ross']" +8,Jurassic Park,PG-13,Adventure,127,"[u'Sam Neill', u'Laura Dern', u'Jeff Goldblum']" +8,Dogville,R,Crime,178,"[u'Nicole Kidman', u'Paul Bettany', u'Lauren Bacall']" +8,Furious 7,PG-13,Action,137,"[u'Vin Diesel', u'Paul Walker', u'Dwayne Johnson']" +8,Patton,GP,Biography,172,"[u'George C. Scott', u'Karl Malden', u'Stephen Young']" +8,The Nightmare Before Christmas,PG,Animation,76,"[u'Danny Elfman', u'Chris Sarandon', u""Catherine O'Hara""]" +8,Being There,PG,Comedy,130,"[u'Peter Sellers', u'Shirley MacLaine', u'Melvyn Douglas']" +8,Persepolis,PG-13,Animation,96,"[u'Chiara Mastroianni', u'Catherine Deneuve', u'Gena Rowlands']" +8,This Is Spinal Tap,R,Comedy,82,"[u'Rob Reiner', u'Michael McKean', u'Christopher Guest']" +8,East of Eden,PG,Drama,115,"[u'James Dean', u'Raymond Massey', u'Julie Harris']" +8,Pink Floyd The Wall,R,Animation,95,"[u'Bob Geldof', u'Christine Hargreaves', u'James Laurenson']" +8,Blood Diamond,R,Adventure,143,"[u'Leonardo DiCaprio', u'Djimon Hounsou', u'Jennifer Connelly']" +8,Big Fish,PG-13,Adventure,125,"[u'Ewan McGregor', u'Albert Finney', u'Billy Crudup']" +8,Slumdog Millionaire,R,Drama,120,"[u'Dev Patel', u'Freida Pinto', u'Saurabh Shukla']" +8,Star Trek,PG-13,Action,127,"[u'Chris Pine', u'Zachary Quinto', u'Simon Pegg']" +8,The Straight Story,G,Biography,112,"[u'Richard Farnsworth', u'Sissy Spacek', u'Jane Galloway Heitz']" +8,Crimes and Misdemeanors,PG-13,Comedy,104,"[u'Martin Landau', u'Woody Allen', u'Bill Bernstein']" +8,Charade,NOT RATED,Comedy,113,"[u'Cary Grant', u'Audrey Hepburn', u'Walter Matthau']" +8,JFK,R,Drama,189,"[u'Kevin Costner', u'Gary Oldman', u'Jack Lemmon']" +8,Dawn of the Dead,UNRATED,Horror,127,"[u'David Emge', u'Ken Foree', u'Scott H. Reiniger']" +8,Magnolia,R,Drama,188,"[u'Tom Cruise', u'Jason Robards', u'Julianne Moore']" +8,Manhattan,R,Comedy,96,"[u'Woody Allen', u'Diane Keaton', u'Mariel Hemingway']" +8,Central Station,R,Drama,113,"[u'Fernanda Montenegro', u'Vin\xedcius de Oliveira', u'Mar\xedlia P\xeara']" +8,Brazil,R,Sci-Fi,132,"[u'Jonathan Pryce', u'Kim Greist', u'Robert De Niro']" +8,The Exorcist,R,Horror,122,"[u'Ellen Burstyn', u'Max von Sydow', u'Linda Blair']" +8,Her,R,Drama,126,"[u'Joaquin Phoenix', u'Amy Adams', u'Scarlett Johansson']" +8,Dancer in the Dark,R,Crime,140,"[u'Bj\xf6rk', u'Catherine Deneuve', u'David Morse']" +8,Rain Man,R,Drama,133,"[u'Dustin Hoffman', u'Tom Cruise', u'Valeria Golino']" +8,Talk to Her,R,Drama,112,"[u'Rosario Flores', u'Javier C\xe1mara', u'Dar\xedo Grandinetti']" +8,The Adventures of Robin Hood,PG,Action,102,"[u'Errol Flynn', u'Olivia de Havilland', u'Basil Rathbone']" +8,"Aguirre, the Wrath of God",NOT RATED,Adventure,93,"[u'Klaus Kinski', u'Ruy Guerra', u'Helena Rojo']" +8,In the Heat of the Night,APPROVED,Crime,109,"[u'Sidney Poitier', u'Rod Steiger', u'Warren Oates']" +8,Nosferatu,UNRATED,Horror,81,"[u'Max Schreck', u'Greta Schr\xf6der', u'Ruth Landshoff']" +8,Black Swan,R,Drama,108,"[u'Natalie Portman', u'Mila Kunis', u'Vincent Cassel']" +8,Ratatouille,G,Animation,111,"[u'Brad Garrett', u'Lou Romano', u'Patton Oswalt']" +8,The Searchers,APPROVED,Adventure,119,"[u'John Wayne', u'Jeffrey Hunter', u'Vera Miles']" +8,Short Term 12,R,Drama,96,"[u'Brie Larson', u'Frantz Turner', u'John Gallagher Jr.']" +8,Doctor Zhivago,PG-13,Drama,197,"[u'Omar Sharif', u'Julie Christie', u'Geraldine Chaplin']" +8,Life of Pi,PG,Adventure,127,"[u'Suraj Sharma', u'Irrfan Khan', u'Adil Hussain']" +8,All the President's Men,R,Drama,138,"[u'Dustin Hoffman', u'Robert Redford', u'Jack Warden']" +8,Battleship Potemkin,UNRATED,History,66,"[u'Aleksandr Antonov', u'Vladimir Barsky', u'Grigori Aleksandrov']" +8,Dances with Wolves,PG-13,Adventure,181,"[u'Kevin Costner', u'Mary McDonnell', u'Graham Greene']" +8,Catch Me If You Can,PG-13,Biography,141,"[u'Leonardo DiCaprio', u'Tom Hanks', u'Christopher Walken']" +8,Cinderella Man,PG-13,Biography,144,"[u'Russell Crowe', u'Ren\xe9e Zellweger', u'Craig Bierko']" +8,Dead Poets Society,PG,Drama,128,"[u'Robin Williams', u'Robert Sean Leonard', u'Ethan Hawke']" +8,Ghost in the Shell,NOT RATED,Animation,83,"[u'Atsuko Tanaka', u'Iemasa Kayumi', u'Akio \xd4tsuka']" +8,Head-On,R,Drama,121,"[u'Birol \xdcnel', u'Sibel Kekilli', u'G\xfcven Kira\xe7']" +8,No Man's Land,R,Drama,98,"[u'Branko Djuric', u'Rene Bitorajac', u'Filip Sovagovic']" +8,Dallas Buyers Club,R,Biography,117,"[u'Matthew McConaughey', u'Jennifer Garner', u'Jared Leto']" +8,Days of Heaven,PG,Drama,94,"[u'Richard Gere', u'Brooke Adams', u'Sam Shepard']" +8,The Sound of Music,G,Biography,174,"[u'Julie Andrews', u'Christopher Plummer', u'Eleanor Parker']" +8,District 9,R,Action,112,"[u'Sharlto Copley', u'David James', u'Jason Cope']" +8,Shadow of a Doubt,APPROVED,Thriller,108,"[u'Teresa Wright', u'Joseph Cotten', u'Macdonald Carey']" +8,Frankenstein,UNRATED,Horror,70,"[u'Colin Clive', u'Mae Clarke', u'Boris Karloff']" +8,Shaun of the Dead,R,Comedy,99,"[u'Simon Pegg', u'Nick Frost', u'Kate Ashfield']" +8,Night of the Living Dead,UNRATED,Horror,96,"[u'Duane Jones', u""Judith O'Dea"", u'Karl Hardman']" +8,Kill Bill: Vol. 2,R,Action,137,"[u'Uma Thurman', u'David Carradine', u'Michael Madsen']" +8,Secrets & Lies,R,Drama,136,"[u'Timothy Spall', u'Brenda Blethyn', u'Phyllis Logan']" +8,The Artist,PG-13,Comedy,100,"[u'Jean Dujardin', u'B\xe9r\xe9nice Bejo', u'John Goodman']" +8,Aladdin,G,Animation,90,"[u'Scott Weinger', u'Robin Williams', u'Linda Larkin']" +8,The Lady Vanishes,PASSED,Comedy,96,"[u'Margaret Lockwood', u'Michael Redgrave', u'Paul Lukas']" +8,The Hobbit: The Desolation of Smaug,PG-13,Adventure,161,"[u'Ian McKellen', u'Martin Freeman', u'Richard Armitage']" +8,Let the Right One In,R,Drama,115,"[u'K\xe5re Hedebrant', u'Lina Leandersson', u'Per Ragnar']" +8,Fiddler on the Roof,G,Drama,181,"[u'Topol', u'Norma Crane', u'Leonard Frey']" +8,The Hobbit: An Unexpected Journey,PG-13,Adventure,169,"[u'Martin Freeman', u'Ian McKellen', u'Richard Armitage']" +8,Three Colors: Blue,R,Drama,98,"[u'Juliette Binoche', u'Zbigniew Zamachowski', u'Julie Delpy']" +8,Rosemary's Baby,R,Drama,136,"[u'Mia Farrow', u'John Cassavetes', u'Ruth Gordon']" +8,Mystic River,R,Crime,138,"[u'Sean Penn', u'Tim Robbins', u'Kevin Bacon']" +8,Serenity,PG-13,Action,119,"[u'Nathan Fillion', u'Gina Torres', u'Chiwetel Ejiofor']" +8,Amarcord,R,Comedy,123,"[u'Magali No\xebl', u'Bruno Zanin', u'Pupella Maggio']" +8,Planet of the Apes,G,Adventure,112,"[u'Charlton Heston', u'Roddy McDowall', u'Kim Hunter']" +8,True Romance,R,Crime,120,"[u'Christian Slater', u'Patricia Arquette', u'Dennis Hopper']" +8,Hannah and Her Sisters,PG-13,Comedy,103,"[u'Mia Farrow', u'Dianne Wiest', u'Michael Caine']" +8,Moon,R,Drama,97,"[u'Sam Rockwell', u'Kevin Spacey', u'Dominique McElligott']" +8,Before Midnight,R,Drama,109,"[u'Ethan Hawke', u'Julie Delpy', u'Seamus Davey-Fitzpatrick']" +8,My Name Is Khan,PG-13,Drama,165,"[u'Shah Rukh Khan', u'Kajol', u'Sheetal Menon']" +8,Scent of a Woman,R,Drama,156,"[u'Al Pacino', u""Chris O'Donnell"", u'James Rebhorn']" +8,Mulholland Dr.,R,Drama,147,"[u'Naomi Watts', u'Laura Harring', u'Justin Theroux']" +8,King Kong,UNRATED,Adventure,100,"[u'Fay Wray', u'Robert Armstrong', u'Bruce Cabot']" +8,The Fault in Our Stars,PG-13,Drama,126,"[u'Shailene Woodley', u'Ansel Elgort', u'Nat Wolff']" +8,The Incredibles,PG,Animation,115,"[u'Craig T. Nelson', u'Samuel L. Jackson', u'Holly Hunter']" +8,Edward Scissorhands,PG-13,Drama,105,"[u'Johnny Depp', u'Winona Ryder', u'Dianne Wiest']" +8,Casino Royale,PG-13,Action,144,"[u'Daniel Craig', u'Eva Green', u'Judi Dench']" +8,How to Train Your Dragon 2,PG,Animation,102,"[u'Jay Baruchel', u'Cate Blanchett', u'Gerard Butler']" +8,In Bruges,R,Comedy,107,"[u'Colin Farrell', u'Brendan Gleeson', u'Ciar\xe1n Hinds']" +8,The Untouchables,R,Crime,119,"[u'Kevin Costner', u'Sean Connery', u'Robert De Niro']" +8,Breathless,UNRATED,Crime,90,"[u'Jean-Paul Belmondo', u'Jean Seberg', u'Daniel Boulanger']" +8,Spartacus,PG-13,Action,197,"[u'Kirk Douglas', u'Laurence Olivier', u'Jean Simmons']" +8,The Iron Giant,PG,Animation,86,"[u'Eli Marienthal', u'Harry Connick Jr.', u'Jennifer Aniston']" +8,Midnight Cowboy,X,Drama,113,"[u'Dustin Hoffman', u'Jon Voight', u'Sylvia Miles']" +8,The Blues Brothers,R,Action,133,"[u'John Belushi', u'Dan Aykroyd', u'Cab Calloway']" +8,Freaks,UNRATED,Drama,64,"[u'Wallace Ford', u'Leila Hyams', u'Olga Baclanova']" +8,Letters from Iwo Jima,R,Drama,141,"[u'Ken Watanabe', u'Kazunari Ninomiya', u'Tsuyoshi Ihara']" +8,Edge of Tomorrow,PG-13,Action,113,"[u'Tom Cruise', u'Emily Blunt', u'Bill Paxton']" +8,Glory,R,Drama,122,"[u'Matthew Broderick', u'Denzel Washington', u'Cary Elwes']" +8,The African Queen,PG,Adventure,105,"[u'Humphrey Bogart', u'Katharine Hepburn', u'Robert Morley']" +7.9,Birdman: Or (The Unexpected Virtue of Ignorance),R,Comedy,119,"[u'Michael Keaton', u'Zach Galifianakis', u'Edward Norton']" +7.9,Big Hero 6,PG,Animation,102,"[u'Ryan Potter', u'Scott Adsit', u'Jamie Chung']" +7.9,Almost Famous,R,Drama,122,"[u'Billy Crudup', u'Patrick Fugit', u'Kate Hudson']" +7.9,The Notebook,PG-13,Drama,123,"[u'Gena Rowlands', u'James Garner', u'Rachel McAdams']" +7.9,The Conversation,PG,Drama,113,"[u'Gene Hackman', u'John Cazale', u'Allen Garfield']" +7.9,The Breakfast Club,R,Comedy,97,"[u'Emilio Estevez', u'Judd Nelson', u'Molly Ringwald']" +7.9,The Pursuit of Happyness,PG-13,Biography,117,"[u'Will Smith', u'Thandie Newton', u'Jaden Smith']" +7.9,The Killer,R,Action,111,"[u'Yun-Fat Chow', u'Danny Lee', u'Sally Yeh']" +7.9,Once,R,Drama,85,"[u'Glen Hansard', u'Mark\xe9ta Irglov\xe1', u'Hugh Walsh']" +7.9,Ying xiong,PG-13,Action,99,"[u'Jet Li', u'Tony Chiu Wai Leung', u'Maggie Cheung']" +7.9,The Remains of the Day,PG,Drama,134,"[u'Anthony Hopkins', u'Emma Thompson', u'John Haycraft']" +7.9,The Bride of Frankenstein,NOT RATED,Horror,75,"[u'Boris Karloff', u'Elsa Lanchester', u'Colin Clive']" +7.9,The Wrestler,R,Drama,109,"[u'Mickey Rourke', u'Marisa Tomei', u'Evan Rachel Wood']" +7.9,Nightcrawler,R,Crime,117,"[u'Jake Gyllenhaal', u'Rene Russo', u'Bill Paxton']" +7.9,Gravity,PG-13,Sci-Fi,91,"[u'Sandra Bullock', u'George Clooney', u'Ed Harris']" +7.9,Hard Boiled,R,Action,128,"[u'Yun-Fat Chow', u'Tony Chiu Wai Leung', u'Teresa Mo']" +7.9,Bonnie and Clyde,APPROVED,Biography,111,"[u'Warren Beatty', u'Faye Dunaway', u'Michael J. Pollard']" +7.9,The Bourne Identity,PG-13,Action,119,"[u'Franka Potente', u'Matt Damon', u'Chris Cooper']" +7.9,Key Largo,UNRATED,Crime,100,"[u'Humphrey Bogart', u'Edward G. Robinson', u'Lauren Bacall']" +7.9,Nine Queens,R,Crime,114,"[u'Ricardo Dar\xedn', u'Gast\xf3n Pauls', u'Leticia Br\xe9dice']" +7.9,Toy Story 2,G,Animation,92,"[u'Tom Hanks', u'Tim Allen', u'Joan Cusack']" +7.9,The Killing Fields,R,Drama,141,"[u'Sam Waterston', u'Haing S. Ngor', u'John Malkovich']" +7.9,All About My Mother,R,Drama,101,"[u'Cecilia Roth', u'Marisa Paredes', u'Candela Pe\xf1a']" +7.9,Cowboy Bebop: The Movie,R,Animation,115,"[u'Beau Billingslea', u'Melissa Fahn', u'Nicholas Guest']" +7.9,Ed Wood,R,Biography,127,"[u'Johnny Depp', u'Martin Landau', u'Sarah Jessica Parker']" +7.9,Stagecoach,NOT RATED,Adventure,96,"[u'John Wayne', u'Claire Trevor', u'Andy Devine']" +7.9,The Man Who Would Be King,PG,Action,129,"[u'Sean Connery', u'Michael Caine', u'Christopher Plummer']" +7.9,The Outlaw Josey Wales,PG,Western,135,"[u'Clint Eastwood', u'Sondra Locke', u'Chief Dan George']" +7.9,Children of Men,R,Drama,109,"[u'Julianne Moore', u'Clive Owen', u'Chiwetel Ejiofor']" +7.9,The Insider,R,Biography,157,"[u'Russell Crowe', u'Al Pacino', u'Christopher Plummer']" +7.9,The Right Stuff,R,Adventure,193,"[u'Sam Shepard', u'Scott Glenn', u'Ed Harris']" +7.9,Badlands,PG,Crime,94,"[u'Martin Sheen', u'Sissy Spacek', u'Warren Oates']" +7.9,A Prophet,R,Crime,155,"[u'Tahar Rahim', u'Niels Arestrup', u'Adel Bencherif']" +7.9,"4 Months, 3 Weeks and 2 Days",NOT RATED,Drama,113,"[u'Anamaria Marinca', u'Vlad Ivanov', u'Laura Vasiliu']" +7.9,Le passe,PG-13,Drama,130,"[u'B\xe9r\xe9nice Bejo', u'Tahar Rahim', u'Ali Mosaffa']" +7.9,The Fall,R,Adventure,117,"[u'Lee Pace', u'Catinca Untaru', u'Justine Waddell']" +7.9,Breaking the Waves,R,Drama,159,"[u'Emily Watson', u'Stellan Skarsg\xe5rd', u'Katrin Cartlidge']" +7.9,Mr. Nobody,R,Drama,141,"[u'Jared Leto', u'Sarah Polley', u'Diane Kruger']" +7.9,Crash,R,Drama,112,"[u'Don Cheadle', u'Sandra Bullock', u'Thandie Newton']" +7.9,Avatar,PG-13,Action,162,"[u'Sam Worthington', u'Zoe Saldana', u'Sigourney Weaver']" +7.9,Iron Man,PG-13,Action,126,"[u'Robert Downey Jr.', u'Gwyneth Paltrow', u'Terrence Howard']" +7.9,Do the Right Thing,R,Comedy,120,"[u'Danny Aiello', u'Ossie Davis', u'Ruby Dee']" +7.9,Carlito's Way,R,Crime,144,"[u'Al Pacino', u'Sean Penn', u'Penelope Ann Miller']" +7.9,"Crouching Tiger, Hidden Dragon",PG-13,Action,120,"[u'Yun-Fat Chow', u'Michelle Yeoh', u'Ziyi Zhang']" +7.9,Lilya 4-Ever,R,Crime,109,"[u'Oksana Akinshina', u'Artyom Bogucharskiy', u'Pavel Ponomaryov']" +7.9,The Chorus,PG-13,Drama,97,"[u'G\xe9rard Jugnot', u'Fran\xe7ois Berl\xe9and', u'Jean-Baptiste Maunier']" +7.9,The Boondock Saints,R,Action,108,"[u'Willem Dafoe', u'Sean Patrick Flanery', u'Norman Reedus']" +7.9,Miller's Crossing,R,Crime,115,"[u'Gabriel Byrne', u'Albert Finney', u'John Turturro']" +7.9,Walk the Line,PG-13,Biography,136,"[u'Joaquin Phoenix', u'Reese Witherspoon', u'Ginnifer Goodwin']" +7.9,Shrek,PG,Animation,90,"[u'Mike Myers', u'Eddie Murphy', u'Cameron Diaz']" +7.9,My Fair Lady,APPROVED,Drama,170,"[u'Audrey Hepburn', u'Rex Harrison', u'Stanley Holloway']" +7.9,The Ten Commandments,APPROVED,Adventure,220,"[u'Charlton Heston', u'Yul Brynner', u'Anne Baxter']" +7.9,The Fighter,R,Biography,116,"[u'Mark Wahlberg', u'Christian Bale', u'Amy Adams']" +7.9,Captain Phillips,PG-13,Biography,134,"[u'Tom Hanks', u'Barkhad Abdi', u'Barkhad Abdirahman']" +7.9,Cabaret,PG,Drama,124,"[u'Liza Minnelli', u'Michael York', u'Helmut Griem']" +7.9,Halloween,R,Drama,91,"[u'Donald Pleasence', u'Jamie Lee Curtis', u'Tony Moran']" +7.9,My Left Foot,R,Biography,103,"[u'Daniel Day-Lewis', u'Brenda Fricker', u'Alison Whelan']" +7.9,Miracle on 34th Street,APPROVED,Comedy,96,"[u'Edmund Gwenn', u""Maureen O'Hara"", u'John Payne']" +7.9,The Man from Nowhere,R,Action,119,"[u'Bin Won', u'Sae-ron Kim', u'Tae-hoon Kim']" +7.9,Toki o kakeru shojo,NOT RATED,Animation,98,"[u'Riisa Naka', u'Takuya Ishida', u'Mitsutaka Itakura']" +7.9,Little Miss Sunshine,R,Adventure,101,"[u'Steve Carell', u'Toni Collette', u'Greg Kinnear']" +7.9,Taken,PG-13,Action,93,"[u'Liam Neeson', u'Maggie Grace', u'Famke Janssen']" +7.9,Blue Is the Warmest Color,NC-17,Drama,179,"[u'L\xe9a Seydoux', u'Ad\xe8le Exarchopoulos', u'Salim Kechiouche']" +7.9,Boogie Nights,R,Drama,155,"[u'Mark Wahlberg', u'Julianne Moore', u'Burt Reynolds']" +7.9,Hot Fuzz,R,Comedy,121,"[u'Simon Pegg', u'Nick Frost', u'Martin Freeman']" +7.9,Ferris Bueller's Day Off,PG-13,Comedy,103,"[u'Matthew Broderick', u'Alan Ruck', u'Mia Sara']" +7.9,The World's Fastest Indian,PG-13,Biography,127,"[u'Anthony Hopkins', u'Diane Ladd', u'Iain Rea']" +7.9,Kiki's Delivery Service,G,Animation,103,"[u'Kirsten Dunst', u'Minami Takayama', u'Rei Sakuma']" +7.9,Down by Law,R,Comedy,107,"[u'Tom Waits', u'John Lurie', u'Roberto Benigni']" +7.9,Glengarry Glen Ross,R,Drama,100,"[u'Al Pacino', u'Jack Lemmon', u'Alec Baldwin']" +7.9,Clerks,R,Comedy,92,"[u""Brian O'Halloran"", u'Jeff Anderson', u'Marilyn Ghigliotti']" +7.9,Adam's Apples,R,Comedy,94,"[u'Ulrich Thomsen', u'Mads Mikkelsen', u'Nicolas Bro']" +7.9,The Girl with the Dragon Tattoo,R,Crime,158,"[u'Daniel Craig', u'Rooney Mara', u'Christopher Plummer']" +7.9,The 39 Steps,UNRATED,Mystery,86,"[u'Robert Donat', u'Madeleine Carroll', u'Lucie Mannheim']" +7.9,E.T. the Extra-Terrestrial,PG,Family,115,"[u'Henry Thomas', u'Drew Barrymore', u'Peter Coyote']" +7.8,Tombstone,R,Action,130,"[u'Kurt Russell', u'Val Kilmer', u'Sam Elliott']" +7.8,Predator,R,Action,107,"[u'Arnold Schwarzenegger', u'Carl Weathers', u'Kevin Peter Hall']" +7.8,Tangled,PG,Animation,100,"[u'Mandy Moore', u'Zachary Levi', u'Donna Murphy']" +7.8,Guess Who's Coming to Dinner,UNRATED,Comedy,108,"[u'Spencer Tracy', u'Sidney Poitier', u'Katharine Hepburn']" +7.8,Ordinary People,R,Drama,124,"[u'Donald Sutherland', u'Mary Tyler Moore', u'Judd Hirsch']" +7.8,The Best Offer,R,Crime,131,"[u'Geoffrey Rush', u'Jim Sturgess', u'Sylvia Hoeks']" +7.8,Silver Linings Playbook,R,Comedy,122,"[u'Bradley Cooper', u'Jennifer Lawrence', u'Robert De Niro']" +7.8,Hamlet,PG-13,Drama,242,"[u'Kenneth Branagh', u'Julie Christie', u'Derek Jacobi']" +7.8,Amour,PG-13,Drama,127,"[u'Jean-Louis Trintignant', u'Emmanuelle Riva', u'Isabelle Huppert']" +7.8,I Saw the Devil,NOT RATED,Crime,141,"[u'Byung-hun Lee', u'Min-sik Choi', u'In-seo Kim']" +7.8,The Motorcycle Diaries,R,Adventure,126,"[u'Gael Garc\xeda Bernal', u'Rodrigo De la Serna', u'M\xeda Maestro']" +7.8,Office Space,R,Comedy,89,"[u'Ron Livingston', u'Jennifer Aniston', u'David Herman']" +7.8,Evil,NOT RATED,Drama,113,"[u'Andreas Wilson', u'Henrik Lundstr\xf6m', u'Gustaf Skarsg\xe5rd']" +7.8,The Girl with the Dragon Tattoo,R,Crime,152,"[u'Michael Nyqvist', u'Noomi Rapace', u'Ewa Fr\xf6ling']" +7.8,Withnail & I,R,Comedy,107,"[u'Richard E. Grant', u'Paul McGann', u'Richard Griffiths']" +7.8,The Day the Earth Stood Still,APPROVED,Sci-Fi,92,"[u'Michael Rennie', u'Patricia Neal', u'Hugh Marlowe']" +7.8,Black Book,R,Drama,145,"[u'Carice van Houten', u'Sebastian Koch', u'Thom Hoffman']" +7.8,Evil Dead II,X,Comedy,84,"[u'Bruce Campbell', u'Sarah Berry', u'Dan Hicks']" +7.8,Kaze tachinu,PG-13,Animation,126,"[u'Hideaki Anno', u'Hidetoshi Nishijima', u'Miori Takimoto']" +7.8,Star Trek Into Darkness,PG-13,Action,132,"[u'Chris Pine', u'Zachary Quinto', u'Zoe Saldana']" +7.8,The Triplets of Belleville,PG-13,Animation,78,"[u'Mich\xe8le Caucheteux', u'Jean-Claude Donda', u'Michel Robin']" +7.8,Open Your Eyes,R,Drama,117,"[u'Eduardo Noriega', u'Pen\xe9lope Cruz', u'Chete Lera']" +7.8,The Magnificent Seven,NOT RATED,Action,128,"[u'Yul Brynner', u'Steve McQueen', u'Charles Bronson']" +7.8,Drive,R,Crime,100,"[u'Ryan Gosling', u'Carey Mulligan', u'Bryan Cranston']" +7.8,Mississippi Burning,R,Crime,128,"[u'Gene Hackman', u'Willem Dafoe', u'Frances McDormand']" +7.8,The Lego Movie,PG,Animation,100,"[u'Chris Pratt', u'Will Ferrell', u'Elizabeth Banks']" +7.8,The Day of the Jackal,PG,Crime,143,"[u'Edward Fox', u'Terence Alexander', u'Michel Auclair']" +7.8,Misery,R,Thriller,107,"[u'James Caan', u'Kathy Bates', u'Richard Farnsworth']" +7.8,Willy Wonka & the Chocolate Factory,G,Family,100,"[u'Gene Wilder', u'Jack Albertson', u'Peter Ostrum']" +7.8,Fantasia,G,Animation,125,"[u'Leopold Stokowski', u'Deems Taylor', u'Corey Burton']" +7.8,Gattaca,PG-13,Drama,106,"[u'Ethan Hawke', u'Uma Thurman', u'Jude Law']" +7.8,American Gangster,R,Biography,157,"[u'Denzel Washington', u'Russell Crowe', u'Chiwetel Ejiofor']" +7.8,Porco Rosso,PG,Animation,94,"[u'Sh\xfbichir\xf4 Moriyama', u'Tokiko Kat\xf4', u'Sanshi Katsura']" +7.8,The French Connection,R,Action,104,"[u'Gene Hackman', u'Roy Scheider', u'Fernando Rey']" +7.8,The Boy in the Striped Pajamas,PG-13,Drama,94,"[u'Asa Butterfield', u'David Thewlis', u'Rupert Friend']" +7.8,Empire of the Sun,PG,Drama,153,"[u'Christian Bale', u'John Malkovich', u'Miranda Richardson']" +7.8,About Time,R,Drama,123,"[u'Domhnall Gleeson', u'Rachel McAdams', u'Bill Nighy']" +7.8,Blue Velvet,R,Crime,120,"[u'Isabella Rossellini', u'Kyle MacLachlan', u'Dennis Hopper']" +7.8,In America,PG-13,Drama,105,"[u'Paddy Considine', u'Samantha Morton', u'Djimon Hounsou']" +7.8,The Curious Case of Benjamin Button,PG-13,Drama,166,"[u'Brad Pitt', u'Cate Blanchett', u'Tilda Swinton']" +7.8,The Last of the Mohicans,R,Action,112,"[u'Daniel Day-Lewis', u'Madeleine Stowe', u'Russell Means']" +7.8,Moonrise Kingdom,PG-13,Adventure,94,"[u'Jared Gilman', u'Kara Hayward', u'Bruce Willis']" +7.8,Rebel Without a Cause,PG-13,Drama,111,"[u'James Dean', u'Natalie Wood', u'Sal Mineo']" +7.8,Fantastic Mr. Fox,PG,Animation,87,"[u'George Clooney', u'Meryl Streep', u'Bill Murray']" +7.8,Invasion of the Body Snatchers,APPROVED,Horror,80,"[u'Kevin McCarthy', u'Dana Wynter', u'Larry Gates']" +7.8,October Sky,PG,Biography,108,"[u'Jake Gyllenhaal', u'Chris Cooper', u'Laura Dern']" +7.8,Dirty Harry,R,Action,102,"[u'Clint Eastwood', u'Andrew Robinson', u'Harry Guardino']" +7.8,Ghostbusters,PG,Comedy,105,"[u'Bill Murray', u'Dan Aykroyd', u'Sigourney Weaver']" +7.8,Captain America: The Winter Soldier,PG-13,Action,136,"[u'Chris Evans', u'Samuel L. Jackson', u'Scarlett Johansson']" +7.8,Wreck-It Ralph,PG,Animation,101,"[u'John C. Reilly', u'Jack McBrayer', u'Jane Lynch']" +7.8,The Hangover,R,Comedy,100,"[u'Zach Galifianakis', u'Bradley Cooper', u'Justin Bartha']" +7.8,Back to the Future Part II,PG,Adventure,108,"[u'Michael J. Fox', u'Christopher Lloyd', u'Lea Thompson']" +7.8,Belle de Jour,APPROVED,Drama,101,"[u'Catherine Deneuve', u'Jean Sorel', u'Michel Piccoli']" +7.8,"O Brother, Where Art Thou?",PG-13,Adventure,106,"[u'George Clooney', u'John Turturro', u'Tim Blake Nelson']" +7.8,Repulsion,UNRATED,Drama,105,"[u'Catherine Deneuve', u'Ian Hendry', u'John Fraser']" +7.8,Airplane!,PG,Comedy,88,"[u'Robert Hays', u'Julie Hagerty', u'Leslie Nielsen']" +7.8,Pride & Prejudice,PG,Drama,129,"[u'Keira Knightley', u'Matthew Macfadyen', u'Brenda Blethyn']" +7.8,Zulu,UNRATED,Drama,138,"[u'Stanley Baker', u'Jack Hawkins', u'Ulla Jacobsson']" +7.8,Night on Earth,R,Comedy,129,"[u'Winona Ryder', u'Gena Rowlands', u'Lisanne Falk']" +7.8,From Here to Eternity,NOT RATED,Drama,118,"[u'Burt Lancaster', u'Montgomery Clift', u'Deborah Kerr']" +7.8,Apocalypto,R,Action,139,"[u'Gerardo Taracena', u'Raoul Trujillo', u'Dalia Hern\xe1ndez']" +7.8,Atonement,R,Drama,123,"[u'Keira Knightley', u'James McAvoy', u'Brenda Blethyn']" +7.8,The Dirty Dozen,NOT RATED,Action,150,"[u'Lee Marvin', u'Ernest Borgnine', u'Charles Bronson']" +7.8,X-Men: First Class,PG-13,Action,132,"[u'James McAvoy', u'Michael Fassbender', u'Jennifer Lawrence']" +7.8,Run Lola Run,R,Action,80,"[u'Franka Potente', u'Moritz Bleibtreu', u'Herbert Knaup']" +7.8,The Longest Day,G,Action,178,"[u'John Wayne', u'Robert Ryan', u'Richard Burton']" +7.8,Zelig,PG,Comedy,79,"[u'Woody Allen', u'Mia Farrow', u'Patrick Horgan']" +7.8,The Last Emperor,PG-13,Biography,163,"[u'John Lone', u'Joan Chen', u""Peter O'Toole""]" +7.8,The Goonies,PG,Adventure,114,"[u'Sean Astin', u'Josh Brolin', u'Jeff Cohen']" +7.8,The White Ribbon,R,Drama,144,"[u'Christian Friedel', u'Ernst Jacobi', u'Leonie Benesch']" +7.8,The Fugitive,PG-13,Action,130,"[u'Harrison Ford', u'Tommy Lee Jones', u'Sela Ward']" +7.8,The Color Purple,PG-13,Drama,154,"[u'Danny Glover', u'Whoopi Goldberg', u'Oprah Winfrey']" +7.8,South Park: Bigger Longer & Uncut,R,Animation,81,"[u'Trey Parker', u'Matt Stone', u'Mary Kay Bergman']" +7.8,(500) Days of Summer,PG-13,Comedy,95,"[u'Zooey Deschanel', u'Joseph Gordon-Levitt', u'Geoffrey Arend']" +7.8,Lost in Translation,R,Drama,101,"[u'Bill Murray', u'Scarlett Johansson', u'Giovanni Ribisi']" +7.8,Argo,R,Drama,120,"[u'Ben Affleck', u'Bryan Cranston', u'John Goodman']" +7.8,Blazing Saddles,R,Comedy,93,"[u'Cleavon Little', u'Gene Wilder', u'Slim Pickens']" +7.8,Breakfast at Tiffany's,NOT RATED,Comedy,115,"[u'Audrey Hepburn', u'George Peppard', u'Patricia Neal']" +7.8,Finding Neverland,PG,Biography,106,"[u'Johnny Depp', u'Kate Winslet', u'Julie Christie']" +7.8,The Experiment,R,Drama,120,"[u'Moritz Bleibtreu', u'Christian Berkel', u'Oliver Stokowski']" +7.8,Lucky Number Slevin,R,Crime,110,"[u'Josh Hartnett', u'Ben Kingsley', u'Morgan Freeman']" +7.8,The Theory of Everything,PG-13,Biography,123,"[u'Eddie Redmayne', u'Felicity Jones', u'Tom Prior']" +7.8,Harry Potter and the Prisoner of Azkaban,PG,Adventure,142,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +7.8,Kung Fu Hustle,R,Action,99,"[u'Stephen Chow', u'Wah Yuen', u'Qiu Yuen']" +7.8,Being John Malkovich,R,Comedy,112,"[u'John Cusack', u'Cameron Diaz', u'Catherine Keener']" +7.8,The Social Network,PG-13,Biography,120,"[u'Jesse Eisenberg', u'Andrew Garfield', u'Justin Timberlake']" +7.8,3:10 to Yuma,R,Adventure,122,"[u'Russell Crowe', u'Christian Bale', u'Ben Foster']" +7.8,The Name of the Rose,R,Crime,130,"[u'Sean Connery', u'Christian Slater', u'Helmut Qualtinger']" +7.8,Mary Poppins,APPROVED,Comedy,139,"[u'Julie Andrews', u'Dick Van Dyke', u'David Tomlinson']" +7.8,The Game,R,Drama,129,"[u'Michael Douglas', u'Deborah Kara Unger', u'Sean Penn']" +7.8,Changeling,R,Drama,141,"[u'Angelina Jolie', u'Colm Feore', u'Amy Ryan']" +7.8,Donnie Brasco,R,Biography,127,"[u'Al Pacino', u'Johnny Depp', u'Michael Madsen']" +7.8,Serpico,R,Biography,130,"[u'Al Pacino', u'John Randolph', u'Jack Kehoe']" +7.8,What's Eating Gilbert Grape,PG-13,Drama,118,"[u'Johnny Depp', u'Leonardo DiCaprio', u'Juliette Lewis']" +7.8,Goldfinger,APPROVED,Action,110,"[u'Sean Connery', u'Gert Fr\xf6be', u'Honor Blackman']" +7.8,Nebraska,R,Adventure,115,"[u'Bruce Dern', u'Will Forte', u'June Squibb']" +7.8,The Sandlot,PG,Comedy,101,"[u'Tom Guiry', u'Mike Vitar', u'Patrick Renna']" +7.8,Boyz n the Hood,R,Crime,112,"[u'Cuba Gooding Jr.', u'Laurence Fishburne', u'Hudhail Al-Amir']" +7.8,The Bourne Supremacy,PG-13,Action,108,"[u'Matt Damon', u'Franka Potente', u'Joan Allen']" +7.8,Skyfall,PG-13,Action,143,"[u'Daniel Craig', u'Javier Bardem', u'Naomie Harris']" +7.8,Ray,PG-13,Biography,152,"[u'Jamie Foxx', u'Regina King', u'Kerry Washington']" +7.8,300,R,Action,117,"[u'Gerard Butler', u'Lena Headey', u'David Wenham']" +7.8,A Bronx Tale,R,Crime,121,"[u'Robert De Niro', u'Chazz Palminteri', u'Lillo Brancato']" +7.8,The Birds,PG-13,Horror,119,"[u'Rod Taylor', u'Tippi Hedren', u'Suzanne Pleshette']" +7.8,Battle Royale,NOT RATED,Action,114,"[u'Tatsuya Fujiwara', u'Aki Maeda', u'Tar\xf4 Yamamoto']" +7.8,Control,R,Biography,122,"[u'Sam Riley', u'Samantha Morton', u'Craig Parkinson']" +7.8,Kramer vs. Kramer,APPROVED,Drama,105,"[u'Dustin Hoffman', u'Meryl Streep', u'Jane Alexander']" +7.8,Deliverance,R,Adventure,110,"[u'Jon Voight', u'Burt Reynolds', u'Ned Beatty']" +7.8,Ocean's Eleven,PG-13,Crime,116,"[u'George Clooney', u'Brad Pitt', u'Julia Roberts']" +7.8,As Good as It Gets,PG-13,Comedy,139,"[u'Jack Nicholson', u'Helen Hunt', u'Greg Kinnear']" +7.8,Awakenings,PG-13,Biography,121,"[u'Robert De Niro', u'Robin Williams', u'Julie Kavner']" +7.8,The King of Comedy,PG,Comedy,109,"[u'Robert De Niro', u'Jerry Lewis', u'Diahnne Abbott']" +7.8,Man on Fire,R,Action,146,"[u'Denzel Washington', u'Christopher Walken', u'Dakota Fanning']" +7.8,Sabrina,UNRATED,Comedy,113,"[u'Humphrey Bogart', u'Audrey Hepburn', u'William Holden']" +7.8,Dark City,R,Mystery,100,"[u'Rufus Sewell', u'Kiefer Sutherland', u'Jennifer Connelly']" +7.8,Good Bye Lenin!,R,Comedy,121,"[u'Daniel Br\xfchl', u'Katrin Sa\xdf', u'Chulpan Khamatova']" +7.7,Remember the Titans,PG,Biography,113,"[u'Denzel Washington', u'Will Patton', u'Wood Harris']" +7.7,Star Trek II: The Wrath of Khan,PG,Action,113,"[u'William Shatner', u'Leonard Nimoy', u'DeForest Kelley']" +7.7,Road to Perdition,R,Crime,117,"[u'Tom Hanks', u'Tyler Hoechlin', u'Rob Maxey']" +7.7,Rushmore,R,Comedy,93,"[u'Jason Schwartzman', u'Bill Murray', u'Olivia Williams']" +7.7,The Machinist,R,Drama,101,"[u'Christian Bale', u'Jennifer Jason Leigh', u'Aitana S\xe1nchez-Gij\xf3n']" +7.7,Flipped,PG,Comedy,90,"[u'Madeline Carroll', u'Callan McAuliffe', u'Rebecca De Mornay']" +7.7,The Count of Monte Cristo,PG-13,Action,131,"[u'Jim Caviezel', u'Guy Pearce', u'Richard Harris']" +7.7,Detachment,NOT RATED,Drama,98,"[u'Adrien Brody', u'Christina Hendricks', u'Marcia Gay Harden']" +7.7,Love Me If You Dare,R,Comedy,93,"[u'Guillaume Canet', u'Marion Cotillard', u'Thibault Verhaeghe']" +7.7,Dead Man,R,Drama,121,"[u'Johnny Depp', u'Gary Farmer', u'Crispin Glover']" +7.7,The Purple Rose of Cairo,PG,Comedy,82,"[u'Mia Farrow', u'Jeff Daniels', u'Danny Aiello']" +7.7,21 Grams,R,Crime,124,"[u'Sean Penn', u'Benicio Del Toro', u'Naomi Watts']" +7.7,50/50,R,Comedy,100,"[u'Joseph Gordon-Levitt', u'Seth Rogen', u'Anna Kendrick']" +7.7,Kick-Ass,R,Action,117,"[u'Aaron Taylor-Johnson', u'Nicolas Cage', u'Chlo\xeb Grace Moretz']" +7.7,Delicatessen,R,Comedy,99,"[u'Marie-Laure Dougnac', u'Dominique Pinon', u'Pascal Benezech']" +7.7,Barton Fink,R,Drama,116,"[u'John Turturro', u'John Goodman', u'Judy Davis']" +7.7,The Last King of Scotland,R,Biography,123,"[u'James McAvoy', u'Forest Whitaker', u'Gillian Anderson']" +7.7,Adaptation.,R,Comedy,114,"[u'Nicolas Cage', u'Meryl Streep', u'Chris Cooper']" +7.7,A Very Long Engagement,R,Drama,133,"[u'Audrey Tautou', u'Gaspard Ulliel', u'Jodie Foster']" +7.7,Mysterious Skin,NC-17,Drama,105,"[u'Brady Corbet', u'Joseph Gordon-Levitt', u'Elisabeth Shue']" +7.7,Stardust,PG-13,Adventure,127,"[u'Charlie Cox', u'Claire Danes', u'Sienna Miller']" +7.7,Black Hawk Down,R,Drama,144,"[u'Josh Hartnett', u'Ewan McGregor', u'Tom Sizemore']" +7.7,Paprika,R,Animation,90,"[u'Megumi Hayashibara', u'T\xf4ru Emori', u'Katsunosuke Hori']" +7.7,Fear and Loathing in Las Vegas,R,Comedy,118,"[u'Johnny Depp', u'Benicio Del Toro', u'Tobey Maguire']" +7.7,Frost/Nixon,R,Drama,122,"[u'Frank Langella', u'Michael Sheen', u'Kevin Bacon']" +7.7,Enter the Dragon,R,Action,102,"[u'Bruce Lee', u'John Saxon', u'Jim Kelly']" +7.7,Short Cuts,R,Comedy,187,"[u'Andie MacDowell', u'Julianne Moore', u'Tim Robbins']" +7.7,A Hard Day's Night,APPROVED,Comedy,87,"[u'John Lennon', u'Paul McCartney', u'George Harrison']" +7.7,The Last Samurai,R,Action,154,"[u'Tom Cruise', u'Ken Watanabe', u'Billy Connolly']" +7.7,The Station Agent,R,Comedy,89,"[u'Peter Dinklage', u'Patricia Clarkson', u'Bobby Cannavale']" +7.7,Zombieland,R,Comedy,88,"[u'Jesse Eisenberg', u'Emma Stone', u'Woody Harrelson']" +7.7,Sympathy for Mr. Vengeance,R,Crime,129,"[u'Kang-ho Song', u'Ha-kyun Shin', u'Doona Bae']" +7.7,Despicable Me,PG,Animation,95,"[u'Steve Carell', u'Jason Segel', u'Russell Brand']" +7.7,Shane,APPROVED,Drama,118,"[u'Alan Ladd', u'Jean Arthur', u'Van Heflin']" +7.7,Forbidden Planet,PASSED,Action,98,"[u'Walter Pidgeon', u'Anne Francis', u'Leslie Nielsen']" +7.7,Titanic,PG-13,Drama,194,"[u'Leonardo DiCaprio', u'Kate Winslet', u'Billy Zane']" +7.7,Gone Baby Gone,R,Crime,114,"[u'Morgan Freeman', u'Ed Harris', u'Casey Affleck']" +7.7,The Dinner Game,PG-13,Comedy,80,"[u'Thierry Lhermitte', u'Jacques Villeret', u'Francis Huster']" +7.7,Dawn of the Planet of the Apes,PG-13,Action,130,"[u'Gary Oldman', u'Keri Russell', u'Andy Serkis']" +7.7,25th Hour,R,Crime,135,"[u'Edward Norton', u'Barry Pepper', u'Philip Seymour Hoffman']" +7.7,Ponyo,G,Animation,101,"[u'Cate Blanchett', u'Matt Damon', u'Liam Neeson']" +7.7,Shine,PG-13,Biography,105,"[u'Geoffrey Rush', u'Armin Mueller-Stahl', u'Justin Braine']" +7.7,The Blind Side,PG-13,Biography,129,"[u'Quinton Aaron', u'Sandra Bullock', u'Tim McGraw']" +7.7,Brokeback Mountain,R,Drama,134,"[u'Jake Gyllenhaal', u'Heath Ledger', u'Michelle Williams']" +7.7,Cast Away,PG-13,Adventure,143,"[u'Tom Hanks', u'Helen Hunt', u'Paul Sanchez']" +7.7,Malcolm X,PG-13,Biography,202,"[u'Denzel Washington', u'Angela Bassett', u'Delroy Lindo']" +7.7,Show Me Love,UNRATED,Comedy,89,"[u'Alexandra Dahlstr\xf6m', u'Rebecka Liljeberg', u'Erica Carlson']" +7.7,Boy A,R,Drama,106,"[u'Andrew Garfield', u'Peter Mullan', u'Shaun Evans']" +7.7,The Warriors,R,Action,92,"[u'Michael Beck', u'James Remar', u'Dorsey Wright']" +7.7,Close Encounters of the Third Kind,PG,Drama,137,"[u'Richard Dreyfuss', u'Fran\xe7ois Truffaut', u'Teri Garr']" +7.7,Match Point,R,Drama,124,"[u'Scarlett Johansson', u'Jonathan Rhys Meyers', u'Emily Mortimer']" +7.7,Training Day,R,Crime,122,"[u'Denzel Washington', u'Ethan Hawke', u'Scott Glenn']" +7.7,The Butterfly Effect,R,Sci-Fi,113,"[u'Ashton Kutcher', u'Amy Smart', u'Melora Walters']" +7.7,The City of Lost Children,R,Fantasy,112,"[u'Ron Perlman', u'Daniel Emilfork', u'Judith Vittet']" +7.7,Billy Elliot,PG-13,Comedy,110,"[u'Jamie Bell', u'Julie Walters', u'Jean Heywood']" +7.7,Love Actually,R,Comedy,135,"[u'Hugh Grant', u'Martine McCutcheon', u'Liam Neeson']" +7.7,The Producers,PG,Comedy,88,"[u'Zero Mostel', u'Gene Wilder', u'Dick Shawn']" +7.7,Harry Potter and the Deathly Hallows: Part 1,PG-13,Adventure,146,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +7.7,The Visitor,PG-13,Drama,104,"[u'Richard Jenkins', u'Haaz Sleiman', u'Danai Gurira']" +7.7,Philadelphia,PG-13,Drama,125,"[u'Tom Hanks', u'Denzel Washington', u'Roberta Maxwell']" +7.7,Sense and Sensibility,PG,Drama,131,"[u'Emma Thompson', u'Kate Winslet', u'James Fleet']" +7.7,Three Colors: White,R,Comedy,91,"[u'Zbigniew Zamachowski', u'Julie Delpy', u'Janusz Gajos']" +7.7,La grande bellezza,NOT RATED,Drama,142,"[u'Toni Servillo', u'Carlo Verdone', u'Sabrina Ferilli']" +7.7,Primal Fear,R,Crime,129,"[u'Richard Gere', u'Laura Linney', u'Edward Norton']" +7.7,Where Eagles Dare,,Action,158,"[u'Richard Burton', u'Clint Eastwood', u'Mary Ure']" +7.7,Dazed and Confused,R,Comedy,102,"[u'Jason London', u'Wiley Wiggins', u'Matthew McConaughey']" +7.7,Blood Simple.,R,Crime,99,"[u'John Getz', u'Frances McDormand', u'Dan Hedaya']" +7.7,This Is England,UNRATED,Crime,101,"[u'Thomas Turgoose', u'Stephen Graham', u'Jo Hartley']" +7.7,Fearless,PG-13,Action,104,"[u'Jet Li', u'Li Sun', u'Yong Dong']" +7.7,Dangerous Liaisons,R,Drama,119,"[u'Glenn Close', u'John Malkovich', u'Michelle Pfeiffer']" +7.7,Saw,R,Horror,103,"[u'Cary Elwes', u'Leigh Whannell', u'Danny Glover']" +7.7,Snow White and the Seven Dwarfs,APPROVED,Animation,88,"[u'Adriana Caselotti', u'Harry Stockwell', u'Lucille La Verne']" +7.7,Coraline,PG,Animation,100,"[u'Dakota Fanning', u'Teri Hatcher', u'John Hodgman']" +7.7,The Hunger Games: Catching Fire,PG-13,Adventure,146,"[u'Jennifer Lawrence', u'Josh Hutcherson', u'Liam Hemsworth']" +7.7,Sophie's Choice,R,Drama,150,"[u'Meryl Streep', u'Kevin Kline', u'Peter MacNicol']" +7.7,La Vie en Rose,PG-13,Biography,140,"[u'Marion Cotillard', u'Sylvie Testud', u'Pascal Greggory']" +7.7,Star Wars: Episode III - Revenge of the Sith,PG-13,Action,140,"[u'Hayden Christensen', u'Natalie Portman', u'Ewan McGregor']" +7.7,True Grit,PG-13,Adventure,110,"[u'Jeff Bridges', u'Matt Damon', u'Hailee Steinfeld']" +7.7,After Hours,R,Comedy,97,"[u'Griffin Dunne', u'Rosanna Arquette', u'Verna Bloom']" +7.7,Frozen,PG,Animation,102,"[u'Kristen Bell', u'Idina Menzel', u'Jonathan Groff']" +7.7,Lolita,NOT RATED,Drama,152,"[u'James Mason', u'Shelley Winters', u'Sue Lyon']" +7.7,Eastern Promises,R,Crime,100,"[u'Naomi Watts', u'Viggo Mortensen', u'Armin Mueller-Stahl']" +7.7,Midnight in Paris,PG-13,Comedy,94,"[u'Owen Wilson', u'Rachel McAdams', u'Kathy Bates']" +7.7,The Muppet Christmas Carol,G,Comedy,85,"[u'Michael Caine', u'Dave Goelz', u'Steve Whitmire']" +7.7,Who Framed Roger Rabbit,PG,Animation,104,"[u'Bob Hoskins', u'Christopher Lloyd', u'Joanna Cassidy']" +7.7,Sympathy for Lady Vengeance,R,Crime,112,"[u'Yeong-ae Lee', u'Min-sik Choi', u'Shi-hoo Kim']" +7.7,Grindhouse,R,Action,191,"[u'Kurt Russell', u'Rose McGowan', u'Danny Trejo']" +7.7,In a Better World,R,Drama,119,"[u'Mikael Persbrandt', u'Trine Dyrholm', u'Markus Rygaard']" +7.7,Blow-Up,NOT RATED,Drama,111,"[u'David Hemmings', u'Vanessa Redgrave', u'Sarah Miles']" +7.7,The Secret World of Arrietty,G,Animation,94,"[u'Bridgit Mendler', u'Amy Poehler', u'Will Arnett']" +7.7,Kiss Kiss Bang Bang,R,Action,103,"[u'Robert Downey Jr.', u'Val Kilmer', u'Michelle Monaghan']" +7.7,Lost Highway,R,Drama,134,"[u'Bill Pullman', u'Patricia Arquette', u'John Roselius']" +7.7,Zodiac,R,Crime,157,"[u'Jake Gyllenhaal', u'Robert Downey Jr.', u'Mark Ruffalo']" +7.7,Les Miserables,PG-13,Drama,158,"[u'Hugh Jackman', u'Russell Crowe', u'Anne Hathaway']" +7.7,Moulin Rouge!,PG-13,Drama,127,"[u'Nicole Kidman', u'Ewan McGregor', u'John Leguizamo']" +7.7,Whale Rider,PG-13,Drama,101,"[u'Keisha Castle-Hughes', u'Rawiri Paratene', u'Vicky Haughton']" +7.7,End of Watch,R,Crime,109,"[u'Jake Gyllenhaal', u'Michael Pe\xf1a', u'Anna Kendrick']" +7.7,Philomena,PG-13,Biography,98,"[u'Judi Dench', u'Steve Coogan', u'Sophie Kennedy Clark']" +7.7,Fury,R,Action,134,"[u'Brad Pitt', u'Shia LaBeouf', u'Logan Lerman']" +7.7,The Big Blue,PG-13,Action,168,"[u'Jean-Marc Barr', u'Jean Reno', u'Rosanna Arquette']" +7.7,First Blood,R,Action,93,"[u'Sylvester Stallone', u'Brian Dennehy', u'Richard Crenna']" +7.7,Minority Report,PG-13,Action,145,"[u'Tom Cruise', u'Colin Farrell', u'Samantha Morton']" +7.7,Spellbound,UNRATED,Film-Noir,111,"[u'Ingrid Bergman', u'Gregory Peck', u'Michael Chekhov']" +7.7,The Wicker Man,R,Horror,88,"[u'Edward Woodward', u'Christopher Lee', u'Diane Cilento']" +7.7,Seven Pounds,PG-13,Drama,123,"[u'Will Smith', u'Rosario Dawson', u'Woody Harrelson']" +7.7,Midnight Express,R,Biography,121,"[u'Brad Davis', u'Irene Miracle', u'Bo Hopkins']" +7.7,Kelly's Heroes,GP,Action,144,"[u'Clint Eastwood', u'Telly Savalas', u'Don Rickles']" +7.7,MASH,R,Comedy,116,"[u'Donald Sutherland', u'Elliott Gould', u'Tom Skerritt']" +7.7,The Player,R,Comedy,124,"[u'Tim Robbins', u'Greta Scacchi', u'Fred Ward']" +7.7,Traffic,R,Crime,147,"[u'Michael Douglas', u'Benicio Del Toro', u'Catherine Zeta-Jones']" +7.7,Y Tu Mama Tambien,R,Drama,106,"[u'Maribel Verd\xfa', u'Gael Garc\xeda Bernal', u'Daniel Gim\xe9nez Cacho']" +7.7,Stranger Than Fiction,PG-13,Comedy,113,"[u'Will Ferrell', u'Emma Thompson', u'Dustin Hoffman']" +7.7,Inside Man,R,Crime,129,"[u'Denzel Washington', u'Clive Owen', u'Jodie Foster']" +7.6,127 Hours,R,Adventure,94,"[u'James Franco', u'Amber Tamblyn', u'Kate Mara']" +7.6,The Fifth Element,PG-13,Action,126,"[u'Bruce Willis', u'Milla Jovovich', u'Gary Oldman']" +7.6,Milk,R,Biography,128,"[u'Sean Penn', u'Josh Brolin', u'Emile Hirsch']" +7.6,United 93,R,Action,111,"[u'David Alan Basche', u'Olivia Thirlby', u'Liza Col\xf3n-Zayas']" +7.6,Jin ling shi san chai,R,Drama,146,"[u'Christian Bale', u'Ni Ni', u'Xinyi Zhang']" +7.6,Dracula,APPROVED,Horror,85,"[u'Bela Lugosi', u'Helen Chandler', u'David Manners']" +7.6,High Plains Drifter,R,Western,105,"[u'Clint Eastwood', u'Verna Bloom', u'Marianna Hill']" +7.6,I Am Sam,PG-13,Drama,132,"[u'Sean Penn', u'Michelle Pfeiffer', u'Dakota Fanning']" +7.6,Fried Green Tomatoes,PG-13,Drama,130,"[u'Kathy Bates', u'Jessica Tandy', u'Mary Stuart Masterson']" +7.6,Watchmen,R,Action,162,"[u'Jackie Earle Haley', u'Patrick Wilson', u'Carla Gugino']" +7.6,28 Days Later...,R,Horror,113,"[u'Cillian Murphy', u'Naomie Harris', u'Christopher Eccleston']" +7.6,The Illusionist,PG-13,Drama,110,"[u'Edward Norton', u'Jessica Biel', u'Paul Giamatti']" +7.6,Superbad,R,Comedy,113,"[u'Michael Cera', u'Jonah Hill', u'Christopher Mintz-Plasse']" +7.6,The Godfather: Part III,R,Crime,162,"[u'Al Pacino', u'Diane Keaton', u'Andy Garcia']" +7.6,The Royal Tenenbaums,R,Comedy,110,"[u'Gene Hackman', u'Gwyneth Paltrow', u'Anjelica Huston']" +7.6,The Jungle Book,APPROVED,Animation,78,"[u'Phil Harris', u'Sebastian Cabot', u'Louis Prima']" +7.6,Thank You for Smoking,R,Comedy,92,"[u'Aaron Eckhart', u'Cameron Bright', u'Maria Bello']" +7.6,Man Bites Dog,NC-17,Comedy,95,"[u'Beno\xeet Poelvoorde', u'Jacqueline Poelvoorde-Pappaert', u'Nelly Pappaert']" +7.6,A Few Good Men,R,Drama,138,"[u'Tom Cruise', u'Jack Nicholson', u'Demi Moore']" +7.6,The Legend of Drunken Master,R,Action,102,"[u'Jackie Chan', u'Ho-Sung Pak', u'Lung Ti']" +7.6,The Kite Runner,PG-13,Drama,128,"[u'Khalid Abdalla', u'Ahmad Khan Mahmoodzada', u'Atossa Leoni']" +7.6,When Harry Met Sally...,R,Comedy,96,"[u'Billy Crystal', u'Meg Ryan', u'Carrie Fisher']" +7.6,Munich,R,Drama,164,"[u'Eric Bana', u'Daniel Craig', u'Marie-Jos\xe9e Croze']" +7.6,House of Sand and Fog,R,Drama,126,"[u'Jennifer Connelly', u'Ben Kingsley', u'Ron Eldard']" +7.6,Lethal Weapon,R,Action,110,"[u'Mel Gibson', u'Danny Glover', u'Gary Busey']" +7.6,Animal House,R,Comedy,109,"[u'John Belushi', u'Karen Allen', u'Tom Hulce']" +7.6,Lord of War,R,Crime,122,"[u'Nicolas Cage', u'Ethan Hawke', u'Jared Leto']" +7.6,Blow,R,Biography,124,"[u'Johnny Depp', u'Pen\xe9lope Cruz', u'Franka Potente']" +7.6,Sherlock Holmes,PG-13,Action,128,"[u'Robert Downey Jr.', u'Jude Law', u'Rachel McAdams']" +7.6,Harry Potter and the Goblet of Fire,PG-13,Adventure,157,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +7.6,La piel que habito,R,Thriller,120,"[u'Antonio Banderas', u'Elena Anaya', u'Jan Cornet']" +7.6,The Crow,R,Action,102,"[u'Brandon Lee', u'Michael Wincott', u'Rochelle Davis']" +7.6,West Side Story,UNRATED,Crime,152,"[u'Natalie Wood', u'George Chakiris', u'Richard Beymer']" +7.6,The Thin Red Line,R,Drama,170,"[u'Jim Caviezel', u'Sean Penn', u'Nick Nolte']" +7.6,American Psycho,R,Crime,102,"[u'Christian Bale', u'Justin Theroux', u'Josh Lucas']" +7.6,The Blind Swordsman: Zatoichi,R,Action,116,"[u'Takeshi Kitano', u'Tadanobu Asano', u'Yui Natsukawa']" +7.6,The Last Temptation of Christ,R,Drama,164,"[u'Willem Dafoe', u'Harvey Keitel', u'Barbara Hershey']" +7.6,The Naked Gun: From the Files of Police Squad!,PG-13,Comedy,85,"[u'Leslie Nielsen', u'Priscilla Presley', u'O.J. Simpson']" +7.6,The Others,PG-13,Horror,104,"[u'Nicole Kidman', u'Christopher Eccleston', u'Fionnula Flanagan']" +7.6,The Party,PG,Comedy,99,"[u'Peter Sellers', u'Claudine Longet', u'Natalia Borisova']" +7.6,Army of Darkness,R,Comedy,81,"[u'Bruce Campbell', u'Embeth Davidtz', u'Marcus Gilbert']" +7.6,The Hurt Locker,R,Drama,131,"[u'Jeremy Renner', u'Anthony Mackie', u'Brian Geraghty']" +7.6,The Raid: Redemption,R,Action,101,"[u'Iko Uwais', u'Ananda George', u'Ray Sahetapy']" +7.6,Volver,R,Comedy,121,"[u'Pen\xe9lope Cruz', u'Carmen Maura', u'Lola Due\xf1as']" +7.6,Following,R,Mystery,69,"[u'Jeremy Theobald', u'Alex Haw', u'Lucy Russell']" +7.6,Kung Fu Panda,PG,Animation,92,"[u'Jack Black', u'Ian McShane', u'Angelina Jolie']" +7.6,Mad Max 2: The Road Warrior,R,Action,94,"[u'Mel Gibson', u'Bruce Spence', u'Michael Preston']" +7.6,Jusan-nin no shikaku,R,Action,141,"[u'K\xf4ji Yakusho', u'Takayuki Yamada', u'Y\xfbsuke Iseya']" +7.6,The Man Who Wasn't There,R,Crime,116,"[u'Billy Bob Thornton', u'Frances McDormand', u'Michael Badalucco']" +7.6,The Counterfeiters,R,Crime,98,"[u'Karl Markovics', u'August Diehl', u'Devid Striesow']" +7.6,The Hunt for Red October,PG,Action,135,"[u'Sean Connery', u'Alec Baldwin', u'Scott Glenn']" +7.6,Lone Survivor,R,Action,121,"[u'Mark Wahlberg', u'Taylor Kitsch', u'Emile Hirsch']" +7.6,A Fish Called Wanda,R,Comedy,108,"[u'John Cleese', u'Jamie Lee Curtis', u'Kevin Kline']" +7.6,The Impossible,PG-13,Drama,114,"[u'Naomi Watts', u'Ewan McGregor', u'Tom Holland']" +7.6,Garden State,R,Comedy,102,"[u'Zach Braff', u'Peter Sarsgaard', u'Natalie Portman']" +7.6,Escape from Alcatraz,PG,Action,112,"[u'Clint Eastwood', u'Patrick McGoohan', u'Roberts Blossom']" +7.6,Apollo 13,PG,Adventure,140,"[u'Tom Hanks', u'Bill Paxton', u'Kevin Bacon']" +7.6,"Lust, Caution",NC-17,Drama,157,"[u'Tony Chiu Wai Leung', u'Wei Tang', u'Joan Chen']" +7.6,Selma,PG-13,Biography,128,"[u'David Oyelowo', u'Carmen Ejogo', u'Tim Roth']" +7.6,Funny Games,UNRATED,Crime,108,"[u'Susanne Lothar', u'Ulrich M\xfche', u'Arno Frisch']" +7.6,The Abyss,PG-13,Adventure,139,"[u'Ed Harris', u'Mary Elizabeth Mastrantonio', u'Michael Biehn']" +7.6,Robin Hood,G,Animation,83,"[u'Brian Bedford', u'Phil Harris', u'Roger Miller']" +7.6,Enemy at the Gates,R,Drama,131,"[u'Jude Law', u'Ed Harris', u'Joseph Fiennes']" +7.6,Falling Down,R,Crime,113,"[u'Michael Douglas', u'Robert Duvall', u'Barbara Hershey']" +7.6,Little Children,R,Drama,136,"[u'Kate Winslet', u'Jennifer Connelly', u'Patrick Wilson']" +7.6,Hunger,NOT RATED,Biography,96,"[u'Stuart Graham', u'Laine Megaw', u'Brian Milligan']" +7.6,Indiana Jones and the Temple of Doom,PG,Action,118,"[u'Harrison Ford', u'Kate Capshaw', u'Jonathan Ke Quan']" +7.6,Ip Man 2,R,Action,108,"[u'Donnie Yen', u'Xiaoming Huang', u'Sammo Kam-Bo Hung']" +7.6,The Little Mermaid,G,Animation,83,"[u'Jodi Benson', u'Samuel E. Wright', u'Rene Auberjonois']" +7.6,"It's a Mad, Mad, Mad, Mad World",APPROVED,Action,205,"[u'Spencer Tracy', u'Milton Berle', u'Ethel Merman']" +7.6,The Reader,R,Drama,124,"[u'Kate Winslet', u'Ralph Fiennes', u'Bruno Ganz']" +7.6,The Omen,R,Horror,111,"[u'Gregory Peck', u'Lee Remick', u'Harvey Stephens']" +7.6,A Royal Affair,R,Drama,137,"[u'Alicia Vikander', u'Mads Mikkelsen', u'Mikkel Boe F\xf8lsgaard']" +7.6,Braindead,R,Comedy,104,"[u'Timothy Balme', u'Diana Pe\xf1alver', u'Elizabeth Moody']" +7.6,Secondhand Lions,PG,Comedy,109,"[u'Haley Joel Osment', u'Michael Caine', u'Robert Duvall']" +7.6,Disconnect,R,Drama,115,"[u'Jason Bateman', u'Jonah Bobo', u'Haley Ramm']" +7.6,A Single Man,R,Drama,99,"[u'Colin Firth', u'Julianne Moore', u'Matthew Goode']" +7.6,Hoosiers,PG,Drama,114,"[u'Gene Hackman', u'Barbara Hershey', u'Dennis Hopper']" +7.6,Moneyball,PG-13,Biography,133,"[u'Brad Pitt', u'Robin Wright', u'Jonah Hill']" +7.6,The Book Thief,PG-13,Drama,131,"[u'Sophie N\xe9lisse', u'Geoffrey Rush', u'Emily Watson']" +7.6,Die Hard: With a Vengeance,R,Action,131,"[u'Bruce Willis', u'Jeremy Irons', u'Samuel L. Jackson']" +7.6,Interview with the Vampire: The Vampire Chronicles,R,Horror,123,"[u'Brad Pitt', u'Tom Cruise', u'Antonio Banderas']" +7.6,Midnight Run,R,Action,126,"[u'Robert De Niro', u'Charles Grodin', u'Yaphet Kotto']" +7.6,An American Werewolf in London,R,Comedy,97,"[u'David Naughton', u'Jenny Agutter', u'Joe Belcher']" +7.6,The Great Debaters,PG-13,Biography,126,"[u'Denzel Washington', u'Forest Whitaker', u'Kimberly Elise']" +7.6,Tucker and Dale vs. Evil,R,Comedy,89,"[u'Tyler Labine', u'Alan Tudyk', u'Katrina Bowden']" +7.6,Dead Man Walking,R,Crime,122,"[u'Susan Sarandon', u'Sean Penn', u'Robert Prosky']" +7.6,The Piano,R,Drama,121,"[u'Holly Hunter', u'Harvey Keitel', u'Sam Neill']" +7.6,The Town,R,Crime,125,"[u'Ben Affleck', u'Rebecca Hall', u'Jon Hamm']" +7.6,Rise of the Planet of the Apes,PG-13,Action,105,"[u'James Franco', u'Andy Serkis', u'Freida Pinto']" +7.6,Boys Don't Cry,R,Biography,118,"[u'Hilary Swank', u'Chlo\xeb Sevigny', u'Peter Sarsgaard']" +7.6,Ice Age,PG,Animation,81,"[u'Denis Leary', u'John Leguizamo', u'Ray Romano']" +7.6,Of Mice and Men,PG-13,Drama,115,"[u'John Malkovich', u'Gary Sinise', u'Ray Walston']" +7.6,Sideways,R,Comedy,126,"[u'Paul Giamatti', u'Thomas Haden Church', u'Virginia Madsen']" +7.6,High Fidelity,R,Comedy,113,"[u'John Cusack', u'Iben Hjejle', u'Todd Louiso']" +7.6,The Meaning of Life,R,Comedy,107,"[u'John Cleese', u'Terry Gilliam', u'Eric Idle']" +7.6,Hugo,PG,Adventure,126,"[u'Asa Butterfield', u'Chlo\xeb Grace Moretz', u'Christopher Lee']" +7.6,Leaving Las Vegas,R,Drama,111,"[u'Nicolas Cage', u'Elisabeth Shue', u'Julian Sands']" +7.6,The Evil Dead,NC-17,Horror,85,"[u'Bruce Campbell', u'Ellen Sandweiss', u'Richard DeManincor']" +7.6,Collateral,R,Crime,120,"[u'Tom Cruise', u'Jamie Foxx', u'Jada Pinkett Smith']" +7.6,"Planes, Trains & Automobiles",R,Comedy,93,"[u'Steve Martin', u'John Candy', u'Laila Robins']" +7.6,Hodejegerne,R,Crime,100,"[u'Aksel Hennie', u'Synn\xf8ve Macody Lund', u'Nikolaj Coster-Waldau']" +7.6,Field of Dreams,PG,Drama,107,"[u'Kevin Costner', u'James Earl Jones', u'Ray Liotta']" +7.6,Batman,PG-13,Action,126,"[u'Michael Keaton', u'Jack Nicholson', u'Kim Basinger']" +7.6,Tell No One,UNRATED,Crime,131,"[u'Fran\xe7ois Cluzet', u'Marie-Jos\xe9e Croze', u'Andr\xe9 Dussollier']" +7.6,Ghost Dog: The Way of the Samurai,R,Action,116,"[u'Forest Whitaker', u'Henry Silva', u'John Tormey']" +7.6,Chaplin,PG-13,Biography,143,"[u'Robert Downey Jr.', u'Geraldine Chaplin', u'Paul Rhys']" +7.6,Keith,PG-13,Drama,93,"[u'Elisabeth Harnois', u'Jesse McCartney', u'Margo Harshman']" +7.6,Juno,PG-13,Comedy,96,"[u'Ellen Page', u'Michael Cera', u'Jennifer Garner']" +7.6,The Assassination of Jesse James by the Coward Robert Ford,R,Biography,160,"[u'Brad Pitt', u'Casey Affleck', u'Sam Shepard']" +7.6,The Fisher King,R,Comedy,137,"[u'Jeff Bridges', u'Robin Williams', u'Adam Bryant']" +7.6,House of Flying Daggers,PG-13,Action,119,"[u'Ziyi Zhang', u'Takeshi Kaneshiro', u'Andy Lau']" +7.6,The Hours,PG-13,Drama,114,"[u'Meryl Streep', u'Nicole Kidman', u'Julianne Moore']" +7.6,The Damned United,R,Biography,98,"[u'Colm Meaney', u'Henry Goodman', u'David Roper']" +7.6,Star Trek: First Contact,PG-13,Action,111,"[u'Patrick Stewart', u'Jonathan Frakes', u'Brent Spiner']" +7.6,The Natural,PG,Drama,138,"[u'Robert Redford', u'Robert Duvall', u'Glenn Close']" +7.6,The Hobbit: The Battle of the Five Armies,PG-13,Adventure,144,"[u'Ian McKellen', u'Martin Freeman', u'Richard Armitage']" +7.6,Equilibrium,R,Action,107,"[u'Christian Bale', u'Sean Bean', u'Emily Watson']" +7.6,August Rush,PG,Drama,114,"[u'Freddie Highmore', u'Keri Russell', u'Jonathan Rhys Meyers']" +7.6,Saving Mr. Banks,PG-13,Biography,125,"[u'Emma Thompson', u'Tom Hanks', u'Annie Rose Buckley']" +7.6,The Hurricane,R,Biography,146,"[u'Denzel Washington', u'Vicellous Reon Shannon', u'Deborah Kara Unger']" +7.6,Jacob's Ladder,R,Drama,113,"[u'Tim Robbins', u'Elizabeth Pe\xf1a', u'Danny Aiello']" +7.6,The Curse of the Were-Rabbit,G,Animation,85,"[u'Peter Sallis', u'Helena Bonham Carter', u'Ralph Fiennes']" +7.6,Christmas Vacation,PG-13,Comedy,97,"[u'Chevy Chase', u""Beverly D'Angelo"", u'Juliette Lewis']" +7.5,"Good Night, and Good Luck.",PG,Drama,93,"[u'David Strathairn', u'George Clooney', u'Patricia Clarkson']" +7.5,Straw Dogs,UNRATED,Crime,113,"[u'Dustin Hoffman', u'Susan George', u'Peter Vaughan']" +7.5,42,PG-13,Biography,128,"[u'Chadwick Boseman', u'T.R. Knight', u'Harrison Ford']" +7.5,Rudy,PG,Biography,114,"[u'Sean Astin', u'Jon Favreau', u'Ned Beatty']" +7.5,Sleepers,R,Crime,147,"[u'Robert De Niro', u'Kevin Bacon', u'Brad Pitt']" +7.5,The Wind That Shakes the Barley,NOT RATED,Drama,127,"[u'Cillian Murphy', u'Padraic Delaney', u'Liam Cunningham']" +7.5,Gangs of New York,R,Crime,167,"[u'Leonardo DiCaprio', u'Cameron Diaz', u'Daniel Day-Lewis']" +7.5,Elizabeth,R,Biography,124,"[u'Cate Blanchett', u'Geoffrey Rush', u'Christopher Eccleston']" +7.5,Green Street Hooligans,R,Crime,109,"[u'Elijah Wood', u'Charlie Hunnam', u'Claire Forlani']" +7.5,Reign Over Me,R,Drama,124,"[u'Adam Sandler', u'Don Cheadle', u'Jada Pinkett Smith']" +7.5,RoboCop,R,Action,102,"[u'Peter Weller', u'Nancy Allen', u""Dan O'Herlihy""]" +7.5,The Life of David Gale,R,Crime,130,"[u'Kevin Spacey', u'Kate Winslet', u'Laura Linney']" +7.5,Life as a House,R,Drama,125,"[u'Hayden Christensen', u'Kevin Kline', u'Kristin Scott Thomas']" +7.5,Despicable Me 2,PG,Animation,98,"[u'Steve Carell', u'Kristen Wiig', u'Benjamin Bratt']" +7.5,Jackie Brown,R,Crime,154,"[u'Pam Grier', u'Samuel L. Jackson', u'Robert Forster']" +7.5,Menace II Society,R,Crime,97,"[u'Tyrin Turner', u'Larenz Tate', u'June Kyoto Lu']" +7.5,The Class,PG-13,Drama,128,"[u'Fran\xe7ois B\xe9gaudeau', u'Agame Malembo-Emene', u'Ang\xe9lica Sancio']" +7.5,Bullets Over Broadway,R,Comedy,98,"[u'John Cusack', u'Dianne Wiest', u'Jennifer Tilly']" +7.5,American Splendor,R,Biography,101,"[u'Paul Giamatti', u'Shari Springer Berman', u'Harvey Pekar']" +7.5,Perfume: The Story of a Murderer,R,Crime,147,"[u'Ben Whishaw', u'Dustin Hoffman', u'Alan Rickman']" +7.5,Cloud Atlas,R,Drama,172,"[u'Tom Hanks', u'Halle Berry', u'Hugh Grant']" +7.5,Marathon Man,R,Crime,125,"[u'Dustin Hoffman', u'Laurence Olivier', u'Roy Scheider']" +7.5,Pinocchio,APPROVED,Animation,88,"[u'Dickie Jones', u'Christian Rub', u'Mel Blanc']" +7.5,The Painted Veil,PG-13,Drama,125,"[u'Naomi Watts', u'Edward Norton', u'Liev Schreiber']" +7.5,A Simple Plan,R,Crime,121,"[u'Bill Paxton', u'Billy Bob Thornton', u'Bridget Fonda']" +7.5,The Conjuring,R,Horror,112,"[u'Patrick Wilson', u'Vera Farmiga', u'Ron Livingston']" +7.5,The Man Who Knew Too Much,PG,Thriller,120,"[u'James Stewart', u'Doris Day', u'Brenda de Banzie']" +7.5,Quiz Show,PG-13,Drama,133,"[u'Ralph Fiennes', u'John Turturro', u'Rob Morrow']" +7.5,American Graffiti,PG,Comedy,110,"[u'Richard Dreyfuss', u'Ron Howard', u'Paul Le Mat']" +7.5,The Bridges of Madison County,PG-13,Drama,135,"[u'Clint Eastwood', u'Meryl Streep', u'Annie Corley']" +7.5,Gallipoli,PG,Adventure,110,"[u'Mel Gibson', u'Mark Lee', u'Bill Kerr']" +7.5,L'illusionniste,PG,Animation,80,"[u'Jean-Claude Donda', u'Eilidh Rankin', u'Duncan MacNeil']" +7.5,Miracle,PG,Drama,135,"[u'Kurt Russell', u'Patricia Clarkson', u'Nathan West']" +7.5,Maria Full of Grace,R,Crime,101,"[u'Catalina Sandino Moreno', u'Guilied Lopez', u'Orlando Tob\xf3n']" +7.5,Scott Pilgrim vs. the World,PG-13,Action,112,"[u'Michael Cera', u'Mary Elizabeth Winstead', u'Kieran Culkin']" +7.5,Pleasantville,PG-13,Comedy,124,"[u'Tobey Maguire', u'Jeff Daniels', u'Joan Allen']" +7.5,Sherlock Holmes: A Game of Shadows,PG-13,Action,129,"[u'Robert Downey Jr.', u'Jude Law', u'Jared Harris']" +7.5,Doubt,PG-13,Drama,104,"[u'Meryl Streep', u'Philip Seymour Hoffman', u'Amy Adams']" +7.5,The Fly,R,Horror,96,"[u'Jeff Goldblum', u'Geena Davis', u'John Getz']" +7.5,The Orphanage,R,Drama,105,"[u'Bel\xe9n Rueda', u'Fernando Cayo', u'Roger Pr\xedncep']" +7.5,Malena,R,Drama,109,"[u'Monica Bellucci', u'Giuseppe Sulfaro', u'Luciano Federico']" +7.5,Three Days of the Condor,R,Mystery,117,"[u'Robert Redford', u'Faye Dunaway', u'Cliff Robertson']" +7.5,[Rec],R,Horror,78,"[u'Manuela Velasco', u'Ferran Terraza', u'Jorge-Yamam Serrano']" +7.5,A Perfect World,PG-13,Crime,138,"[u'Kevin Costner', u'Clint Eastwood', u'Laura Dern']" +7.5,To Catch a Thief,APPROVED,Mystery,106,"[u'Cary Grant', u'Grace Kelly', u'Jessie Royce Landis']" +7.5,Best in Show,PG-13,Comedy,90,"[u'Fred Willard', u'Eugene Levy', u""Catherine O'Hara""]" +7.5,Everything Is Illuminated,PG-13,Comedy,106,"[u'Elijah Wood', u'Eugene Hutz', u'Boris Leskin']" +7.5,A Nightmare on Elm Street,R,Horror,91,"[u'Heather Langenkamp', u'Johnny Depp', u'Robert Englund']" +7.5,The Ice Storm,R,Drama,112,"[u'Kevin Kline', u'Joan Allen', u'Sigourney Weaver']" +7.5,X2,PG-13,Action,134,"[u'Patrick Stewart', u'Hugh Jackman', u'Halle Berry']" +7.5,We Need to Talk About Kevin,R,Drama,112,"[u'Tilda Swinton', u'John C. Reilly', u'Ezra Miller']" +7.5,Felon,R,Crime,104,"[u'Stephen Dorff', u'Marisol Nichols', u'Vincent Miller']" +7.5,Still Alice,PG-13,Drama,101,"[u'Julianne Moore', u'Alec Baldwin', u'Kristen Stewart']" +7.5,Rust and Bone,R,Drama,120,"[u'Marion Cotillard', u'Matthias Schoenaerts', u'Armand Verdure']" +7.5,Freedom Writers,PG-13,Biography,123,"[u'Hilary Swank', u'Imelda Staunton', u'Patrick Dempsey']" +7.5,Legends of the Fall,R,Drama,133,"[u'Brad Pitt', u'Anthony Hopkins', u'Aidan Quinn']" +7.5,Buffalo '66,R,Comedy,110,"[u'Vincent Gallo', u'Christina Ricci', u'Ben Gazzara']" +7.5,The Constant Gardener,R,Drama,129,"[u'Ralph Fiennes', u'Rachel Weisz', u'Hubert Kound\xe9']" +7.5,My Cousin Vinny,R,Comedy,120,"[u'Joe Pesci', u'Marisa Tomei', u'Ralph Macchio']" +7.5,The Texas Chain Saw Massacre,R,Horror,83,"[u'Marilyn Burns', u'Edwin Neal', u'Allen Danziger']" +7.5,Mulan,G,Animation,88,"[u'Ming-Na Wen', u'Eddie Murphy', u'BD Wong']" +7.5,A History of Violence,R,Crime,96,"[u'Viggo Mortensen', u'Maria Bello', u'Ed Harris']" +7.5,Open Range,R,Action,139,"[u'Kevin Costner', u'Robert Duvall', u'Diego Luna']" +7.5,Total Recall,R,Action,113,"[u'Arnold Schwarzenegger', u'Sharon Stone', u'Michael Ironside']" +7.5,Pi,R,Drama,84,"[u'Sean Gullette', u'Mark Margolis', u'Ben Shenkman']" +7.5,The Devil's Backbone,R,Drama,106,"[u'Marisa Paredes', u'Eduardo Noriega', u'Federico Luppi']" +7.5,The Aviator,PG-13,Biography,170,"[u'Leonardo DiCaprio', u'Cate Blanchett', u'Kate Beckinsale']" +7.5,Devil's Advocate,R,Drama,144,"[u'Keanu Reeves', u'Al Pacino', u'Charlize Theron']" +7.5,"The Adventures of Priscilla, Queen of the Desert",R,Comedy,104,"[u'Hugo Weaving', u'Guy Pearce', u'Terence Stamp']" +7.5,Harry Potter and the Half-Blood Prince,PG,Adventure,153,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +7.5,Fruitvale Station,R,Biography,85,"[u'Michael B. Jordan', u'Melonie Diaz', u'Octavia Spencer']" +7.5,In the Bedroom,R,Crime,130,"[u'Tom Wilkinson', u'Sissy Spacek', u'Nick Stahl']" +7.5,Source Code,PG-13,Mystery,93,"[u'Jake Gyllenhaal', u'Michelle Monaghan', u'Vera Farmiga']" +7.5,Biutiful,R,Drama,148,"[u'Javier Bardem', u'Maricel \xc1lvarez', u'Hanaa Bouchaib']" +7.5,From Russia with Love,APPROVED,Action,115,"[u'Sean Connery', u'Robert Shaw', u'Lotte Lenya']" +7.5,Calvary,R,Drama,102,"[u'Brendan Gleeson', u""Chris O'Dowd"", u'Kelly Reilly']" +7.5,The Mission,PG,Adventure,125,"[u'Robert De Niro', u'Jeremy Irons', u'Ray McAnally']" +7.5,In the Loop,NOT RATED,Comedy,106,"[u'Tom Hollander', u'Peter Capaldi', u'James Gandolfini']" +7.5,The Three Burials of Melquiades Estrada,R,Adventure,121,"[u'Tommy Lee Jones', u'Barry Pepper', u'Dwight Yoakam']" +7.5,Babel,R,Drama,143,"[u'Brad Pitt', u'Cate Blanchett', u'Gael Garc\xeda Bernal']" +7.5,Frenzy,R,Thriller,116,"[u'Jon Finch', u'Barry Foster', u'Alec McCowen']" +7.5,Heavenly Creatures,R,Biography,99,"[u'Melanie Lynskey', u'Kate Winslet', u'Sarah Peirse']" +7.5,Sweeney Todd: The Demon Barber of Fleet Street,R,Drama,116,"[u'Johnny Depp', u'Helena Bonham Carter', u'Alan Rickman']" +7.5,Dracula,R,Horror,128,"[u'Gary Oldman', u'Winona Ryder', u'Anthony Hopkins']" +7.5,Looper,R,Action,119,"[u'Joseph Gordon-Levitt', u'Bruce Willis', u'Emily Blunt']" +7.5,The Proposition,R,Crime,104,"[u'Ray Winstone', u'Guy Pearce', u'Emily Watson']" +7.5,Bullitt,PG,Action,114,"[u'Steve McQueen', u'Jacqueline Bisset', u'Robert Vaughn']" +7.5,Harry Potter and the Sorcerer's Stone,PG,Adventure,152,"[u'Daniel Radcliffe', u'Rupert Grint', u'Richard Harris']" +7.5,2046,R,Drama,129,"[u'Tony Chiu Wai Leung', u'Ziyi Zhang', u'Faye Wong']" +7.5,Transamerica,R,Adventure,103,"[u'Felicity Huffman', u'Kevin Zegers', u'Fionnula Flanagan']" +7.5,Smoke,R,Comedy,112,"[u'Harvey Keitel', u'William Hurt', u'Giancarlo Esposito']" +7.5,Suspiria,X,Horror,92,"[u'Jessica Harper', u'Stefania Casini', u'Flavio Bucci']" +7.5,The Judge,R,Drama,141,"[u'Robert Downey Jr.', u'Robert Duvall', u'Vera Farmiga']" +7.5,Bad Education,NC-17,Crime,106,"[u'Gael Garc\xeda Bernal', u'Fele Mart\xednez', u'Javier C\xe1mara']" +7.5,Up in the Air,R,Drama,109,"[u'George Clooney', u'Vera Farmiga', u'Anna Kendrick']" +7.5,Begin Again,R,Drama,104,"[u'Keira Knightley', u'Mark Ruffalo', u'Adam Levine']" +7.5,Running Scared,R,Action,122,"[u'Paul Walker', u'Cameron Bright', u'Chazz Palminteri']" +7.5,Ghost World,R,Comedy,111,"[u'Steve Buscemi', u'Thora Birch', u'Scarlett Johansson']" +7.5,Witness,R,Crime,112,"[u'Harrison Ford', u'Kelly McGillis', u'Lukas Haas']" +7.5,Trading Places,R,Comedy,116,"[u'Eddie Murphy', u'Dan Aykroyd', u'Ralph Bellamy']" +7.5,Mud,PG-13,Drama,130,"[u'Matthew McConaughey', u'Tye Sheridan', u'Jacob Lofland']" +7.5,Across the Universe,PG-13,Drama,133,"[u'Evan Rachel Wood', u'Jim Sturgess', u'Joe Anderson']" +7.5,Les Miserables,PG-13,Crime,134,"[u'Liam Neeson', u'Geoffrey Rush', u'Uma Thurman']" +7.5,Notes on a Scandal,R,Drama,92,"[u'Cate Blanchett', u'Judi Dench', u'Andrew Simpson']" +7.5,Inside Llewyn Davis,R,Drama,104,"[u'Oscar Isaac', u'Carey Mulligan', u'John Goodman']" +7.5,Brick,R,Crime,110,"[u'Joseph Gordon-Levitt', u'Lukas Haas', u'Emilie de Ravin']" +7.5,Clerks II,R,Comedy,97,"[u""Brian O'Halloran"", u'Jeff Anderson', u'Rosario Dawson']" +7.5,Say Anything...,PG-13,Comedy,100,"[u'John Cusack', u'Ione Skye', u'John Mahoney']" +7.4,Man on the Moon,R,Biography,118,"[u'Jim Carrey', u'Danny DeVito', u'Gerry Becker']" +7.4,Mean Streets,R,Crime,112,"[u'Robert De Niro', u'Harvey Keitel', u'David Proval']" +7.4,Harry Potter and the Order of the Phoenix,PG-13,Adventure,138,"[u'Daniel Radcliffe', u'Emma Watson', u'Rupert Grint']" +7.4,Beetlejuice,PG,Comedy,92,"[u'Alec Baldwin', u'Geena Davis', u'Michael Keaton']" +7.4,"Crazy, Stupid, Love.",PG-13,Comedy,118,"[u'Steve Carell', u'Ryan Gosling', u'Julianne Moore']" +7.4,Excalibur,R,Adventure,140,"[u'Nigel Terry', u'Helen Mirren', u'Nicholas Clay']" +7.4,True Grit,,Adventure,128,"[u'John Wayne', u'Kim Darby', u'Glen Campbell']" +7.4,Labyrinth,PG,Adventure,101,"[u'David Bowie', u'Jennifer Connelly', u'Toby Froud']" +7.4,Alice in Wonderland,G,Animation,75,"[u'Kathryn Beaumont', u'Ed Wynn', u'Richard Haydn']" +7.4,Predestination,R,Drama,97,"[u'Ethan Hawke', u'Sarah Snook', u'Noah Taylor']" +7.4,Much Ado About Nothing,PG-13,Comedy,111,"[u'Kenneth Branagh', u'Emma Thompson', u'Keanu Reeves']" +7.4,A Bridge Too Far,PG,Drama,175,"[u'Sean Connery', u""Ryan O'Neal"", u'Michael Caine']" +7.4,Raising Arizona,PG-13,Comedy,94,"[u'Nicolas Cage', u'Holly Hunter', u'Trey Wilson']" +7.4,The Bucket List,PG-13,Adventure,97,"[u'Jack Nicholson', u'Morgan Freeman', u'Sean Hayes']" +7.4,Terms of Endearment,R,Comedy,132,"[u'Shirley MacLaine', u'Debra Winger', u'Jack Nicholson']" +7.4,Take Shelter,R,Drama,120,"[u'Michael Shannon', u'Jessica Chastain', u'Shea Whigham']" +7.4,Far from Heaven,PG-13,Drama,107,"[u'Julianne Moore', u'Dennis Quaid', u'Dennis Haysbert']" +7.4,Eraserhead,UNRATED,Drama,89,"[u'Jack Nance', u'Charlotte Stewart', u'Allen Joseph']" +7.4,Frances Ha,R,Comedy,86,"[u'Greta Gerwig', u'Mickey Sumner', u'Adam Driver']" +7.4,Home Alone,PG,Comedy,103,"[u'Macaulay Culkin', u'Joe Pesci', u'Daniel Stern']" +7.4,Bound,R,Crime,108,"[u'Jennifer Tilly', u'Gina Gershon', u'Joe Pantoliano']" +7.4,Sleepy Hollow,R,Drama,105,"[u'Johnny Depp', u'Christina Ricci', u'Miranda Richardson']" +7.4,Pirate Radio,R,Comedy,117,"[u'Philip Seymour Hoffman', u'Bill Nighy', u'Nick Frost']" +7.4,The NeverEnding Story,PG,Adventure,102,"[u'Noah Hathaway', u'Barret Oliver', u'Tami Stronach']" +7.4,X-Men,PG-13,Action,104,"[u'Patrick Stewart', u'Hugh Jackman', u'Ian McKellen']" +7.4,Zero Dark Thirty,R,Drama,157,"[u'Jessica Chastain', u'Joel Edgerton', u'Chris Pratt']" +7.4,Manhattan Murder Mystery,PG,Comedy,104,"[u'Woody Allen', u'Diane Keaton', u'Jerry Adler']" +7.4,National Lampoon's Vacation,R,Comedy,98,"[u'Chevy Chase', u""Beverly D'Angelo"", u'Imogene Coca']" +7.4,My Sister's Keeper,PG-13,Drama,109,"[u'Cameron Diaz', u'Abigail Breslin', u'Alec Baldwin']" +7.4,Deconstructing Harry,R,Comedy,96,"[u'Woody Allen', u'Judy Davis', u'Julia Louis-Dreyfus']" +7.4,The Way Way Back,PG-13,Comedy,103,"[u'Steve Carell', u'Toni Collette', u'Allison Janney']" +7.4,Capote,R,Biography,114,"[u'Philip Seymour Hoffman', u'Clifton Collins Jr.', u'Catherine Keener']" +7.4,Driving Miss Daisy,PG,Comedy,99,"[u'Morgan Freeman', u'Jessica Tandy', u'Dan Aykroyd']" +7.4,La Femme Nikita,R,Action,118,"[u'Anne Parillaud', u'Marc Duret', u'Patrick Fontana']" +7.4,Lincoln,PG-13,Biography,150,"[u'Daniel Day-Lewis', u'Sally Field', u'David Strathairn']" +7.4,Limitless,PG-13,Mystery,105,"[u'Bradley Cooper', u'Anna Friel', u'Abbie Cornish']" +7.4,The Simpsons Movie,PG-13,Animation,87,"[u'Dan Castellaneta', u'Julie Kavner', u'Nancy Cartwright']" +7.4,The Rock,R,Action,136,"[u'Sean Connery', u'Nicolas Cage', u'Ed Harris']" +7.4,The English Patient,R,Drama,162,"[u'Ralph Fiennes', u'Juliette Binoche', u'Willem Dafoe']" +7.4,Law Abiding Citizen,R,Crime,109,"[u'Gerard Butler', u'Jamie Foxx', u'Leslie Bibb']" +7.4,Wonder Boys,R,Drama,107,"[u'Michael Douglas', u'Tobey Maguire', u'Frances McDormand']" +7.4,Death at a Funeral,R,Comedy,90,"[u'Matthew Macfadyen', u'Peter Dinklage', u'Ewen Bremner']" +7.4,Blue Valentine,NC-17,Drama,112,"[u'Ryan Gosling', u'Michelle Williams', u'John Doman']" +7.4,The Cider House Rules,PG-13,Drama,126,"[u'Tobey Maguire', u'Charlize Theron', u'Michael Caine']" +7.4,Tootsie,PG,Comedy,116,"[u'Dustin Hoffman', u'Jessica Lange', u'Teri Garr']" +7.4,Back to the Future Part III,PG,Adventure,118,"[u'Michael J. Fox', u'Christopher Lloyd', u'Mary Steenburgen']" +7.4,Master and Commander: The Far Side of the World,PG-13,Action,138,"[u'Russell Crowe', u'Paul Bettany', u'Billy Boyd']" +7.4,Poltergeist,PG,Horror,114,"[u'JoBeth Williams', u""Heather O'Rourke"", u'Craig T. Nelson']" +7.4,Wall Street,R,Crime,126,"[u'Charlie Sheen', u'Michael Douglas', u'Tamara Tunie']" diff --git a/data/imdb_ids.txt b/data/imdb_ids.txt new file mode 100644 index 0000000..8528c09 --- /dev/null +++ b/data/imdb_ids.txt @@ -0,0 +1,5 @@ +tt0111161 +tt1856010 +tt0096694 +tt0088763 +tt1375666 diff --git a/data/sms.tsv b/data/sms.tsv new file mode 100644 index 0000000..02462fc --- /dev/null +++ b/data/sms.tsv @@ -0,0 +1,5574 @@ +ham Go until jurong point, crazy.. Available only in bugis n great world la e buffet... Cine there got amore wat... +ham Ok lar... Joking wif u oni... +spam Free entry in 2 a wkly comp to win FA Cup final tkts 21st May 2005. Text FA to 87121 to receive entry question(std txt rate)T&C's apply 08452810075over18's +ham U dun say so early hor... U c already then say... +ham Nah I don't think he goes to usf, he lives around here though +spam FreeMsg Hey there darling it's been 3 week's now and no word back! I'd like some fun you up for it still? Tb ok! XxX std chgs to send, £1.50 to rcv +ham Even my brother is not like to speak with me. They treat me like aids patent. +ham As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune +spam WINNER!! As a valued network customer you have been selected to receivea £900 prize reward! To claim call 09061701461. Claim code KL341. Valid 12 hours only. +spam Had your mobile 11 months or more? U R entitled to Update to the latest colour mobiles with camera for Free! Call The Mobile Update Co FREE on 08002986030 +ham I'm gonna be home soon and i don't want to talk about this stuff anymore tonight, k? I've cried enough today. +spam SIX chances to win CASH! From 100 to 20,000 pounds txt> CSH11 and send to 87575. Cost 150p/day, 6days, 16+ TsandCs apply Reply HL 4 info +spam URGENT! You have won a 1 week FREE membership in our £100,000 Prize Jackpot! Txt the word: CLAIM to No: 81010 T&C www.dbuk.net LCCLTD POBOX 4403LDNW1A7RW18 +ham I've been searching for the right words to thank you for this breather. I promise i wont take your help for granted and will fulfil my promise. You have been wonderful and a blessing at all times. +ham I HAVE A DATE ON SUNDAY WITH WILL!! +spam XXXMobileMovieClub: To use your credit, click the WAP link in the next txt message or click here>> http://wap. xxxmobilemovieclub.com?n=QJKGIGHJJGCBL +ham Oh k...i'm watching here:) +ham Eh u remember how 2 spell his name... Yes i did. He v naughty make until i v wet. +ham Fine if that’s the way u feel. That’s the way its gota b +spam England v Macedonia - dont miss the goals/team news. Txt ur national team to 87077 eg ENGLAND to 87077 Try:WALES, SCOTLAND 4txt/ú1.20 POBOXox36504W45WQ 16+ +ham Is that seriously how you spell his name? +ham I‘m going to try for 2 months ha ha only joking +ham So ü pay first lar... Then when is da stock comin... +ham Aft i finish my lunch then i go str down lor. Ard 3 smth lor. U finish ur lunch already? +ham Ffffffffff. Alright no way I can meet up with you sooner? +ham Just forced myself to eat a slice. I'm really not hungry tho. This sucks. Mark is getting worried. He knows I'm sick when I turn down pizza. Lol +ham Lol your always so convincing. +ham Did you catch the bus ? Are you frying an egg ? Did you make a tea? Are you eating your mom's left over dinner ? Do you feel my Love ? +ham I'm back & we're packing the car now, I'll let you know if there's room +ham Ahhh. Work. I vaguely remember that! What does it feel like? Lol +ham Wait that's still not all that clear, were you not sure about me being sarcastic or that that's why x doesn't want to live with us +ham Yeah he got in at 2 and was v apologetic. n had fallen out and she was actin like spoilt child and he got caught up in that. Till 2! But we won't go there! Not doing too badly cheers. You? +ham K tell me anything about you. +ham For fear of fainting with the of all that housework you just did? Quick have a cuppa +spam Thanks for your subscription to Ringtone UK your mobile will be charged £5/month Please confirm by replying YES or NO. If you reply NO you will not be charged +ham Yup... Ok i go home look at the timings then i msg ü again... Xuhui going to learn on 2nd may too but her lesson is at 8am +ham Oops, I'll let you know when my roommate's done +ham I see the letter B on my car +ham Anything lor... U decide... +ham Hello! How's you and how did saturday go? I was just texting to see if you'd decided to do anything tomo. Not that i'm trying to invite myself or anything! +ham Pls go ahead with watts. I just wanted to be sure. Do have a great weekend. Abiola +ham Did I forget to tell you ? I want you , I need you, I crave you ... But most of all ... I love you my sweet Arabian steed ... Mmmmmm ... Yummy +spam 07732584351 - Rodger Burns - MSG = We tried to call you re your reply to our sms for a free nokia mobile + free camcorder. Please call now 08000930705 for delivery tomorrow +ham WHO ARE YOU SEEING? +ham Great! I hope you like your man well endowed. I am <#> inches... +ham No calls..messages..missed calls +ham Didn't you get hep b immunisation in nigeria. +ham Fair enough, anything going on? +ham Yeah hopefully, if tyler can't do it I could maybe ask around a bit +ham U don't know how stubborn I am. I didn't even want to go to the hospital. I kept telling Mark I'm not a weak sucker. Hospitals are for weak suckers. +ham What you thinked about me. First time you saw me in class. +ham A gram usually runs like <#> , a half eighth is smarter though and gets you almost a whole second gram for <#> +ham K fyi x has a ride early tomorrow morning but he's crashing at our place tonight +ham Wow. I never realized that you were so embarassed by your accomodations. I thought you liked it, since i was doing the best i could and you always seemed so happy about "the cave". I'm sorry I didn't and don't have more to give. I'm sorry i offered. I'm sorry your room was so embarassing. +spam SMS. ac Sptv: The New Jersey Devils and the Detroit Red Wings play Ice Hockey. Correct or Incorrect? End? Reply END SPTV +ham Do you know what Mallika Sherawat did yesterday? Find out now @ <URL> +spam Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out! +ham Sorry, I'll call later in meeting. +ham Tell where you reached +ham Yes..gauti and sehwag out of odi series. +ham Your gonna have to pick up a $1 burger for yourself on your way home. I can't even move. Pain is killing me. +ham Ha ha ha good joke. Girls are situation seekers. +ham Its a part of checking IQ +ham Sorry my roommates took forever, it ok if I come by now? +ham Ok lar i double check wif da hair dresser already he said wun cut v short. He said will cut until i look nice. +spam As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066364589 +ham Today is "song dedicated day.." Which song will u dedicate for me? Send this to all ur valuable frnds but first rply me... +spam Urgent UR awarded a complimentary trip to EuroDisinc Trav, Aco&Entry41 Or £1000. To claim txt DIS to 87121 18+6*£1.50(moreFrmMob. ShrAcomOrSglSuplt)10, LS1 3AJ +spam Did you hear about the new "Divorce Barbie"? It comes with all of Ken's stuff! +ham I plane to give on this month end. +ham Wah lucky man... Then can save money... Hee... +ham Finished class where are you. +ham HI BABE IM AT HOME NOW WANNA DO SOMETHING? XX +ham K..k:)where are you?how did you performed? +ham U can call me now... +ham I am waiting machan. Call me once you free. +ham Thats cool. i am a gentleman and will treat you with dignity and respect. +ham I like you peoples very much:) but am very shy pa. +ham Does not operate after <#> or what +ham Its not the same here. Still looking for a job. How much do Ta's earn there. +ham Sorry, I'll call later +ham K. Did you call me just now ah? +ham Ok i am on the way to home hi hi +ham You will be in the place of that man +ham Yup next stop. +ham I call you later, don't have network. If urgnt, sms me. +ham For real when u getting on yo? I only need 2 more tickets and one more jacket and I'm done. I already used all my multis. +ham Yes I started to send requests to make it but pain came back so I'm back in bed. Double coins at the factory too. I gotta cash in all my nitros. +ham I'm really not up to it still tonight babe +ham Ela kano.,il download, come wen ur free.. +ham Yeah do! Don‘t stand to close tho- you‘ll catch something! +ham Sorry to be a pain. Is it ok if we meet another night? I spent late afternoon in casualty and that means i haven't done any of y stuff42moro and that includes all my time sheets and that. Sorry. +ham Smile in Pleasure Smile in Pain Smile when trouble pours like Rain Smile when sum1 Hurts U Smile becoz SOMEONE still Loves to see u Smiling!! +spam Please call our customer service representative on 0800 169 6031 between 10am-9pm as you have WON a guaranteed £1000 cash or £5000 prize! +ham Havent planning to buy later. I check already lido only got 530 show in e afternoon. U finish work already? +spam Your free ringtone is waiting to be collected. Simply text the password "MIX" to 85069 to verify. Get Usher and Britney. FML, PO Box 5249, MK17 92H. 450Ppw 16 +ham Watching telugu movie..wat abt u? +ham i see. When we finish we have loads of loans to pay +ham Hi. Wk been ok - on hols now! Yes on for a bit of a run. Forgot that i have hairdressers appointment at four so need to get home n shower beforehand. Does that cause prob for u?" +ham I see a cup of coffee animation +ham Please don't text me anymore. I have nothing else to say. +ham Okay name ur price as long as its legal! Wen can I pick them up? Y u ave x ams xx +ham I'm still looking for a car to buy. And have not gone 4the driving test yet. +ham As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune +ham wow. You're right! I didn't mean to do that. I guess once i gave up on boston men and changed my search location to nyc, something changed. Cuz on my signin page it still says boston. +ham Umma my life and vava umma love you lot dear +ham Thanks a lot for your wishes on my birthday. Thanks you for making my birthday truly memorable. +ham Aight, I'll hit you up when I get some cash +ham How would my ip address test that considering my computer isn't a minecraft server +ham I know! Grumpy old people. My mom was like you better not be lying. Then again I am always the one to play jokes... +ham Dont worry. I guess he's busy. +ham What is the plural of the noun research? +ham Going for dinner.msg you after. +ham I'm ok wif it cos i like 2 try new things. But i scared u dun like mah. Cos u said not too loud. +spam GENT! We are trying to contact you. Last weekends draw shows that you won a £1000 prize GUARANTEED. Call 09064012160. Claim Code K52. Valid 12hrs only. 150ppm +ham Wa, ur openin sentence very formal... Anyway, i'm fine too, juz tt i'm eatin too much n puttin on weight...Haha... So anythin special happened? +ham As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. +spam You are a winner U have been specially selected 2 receive £1000 or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810910p/min (18+) +ham Goodo! Yes we must speak friday - egg-potato ratio for tortilla needed! +ham Hmm...my uncle just informed me that he's paying the school directly. So pls buy food. +spam PRIVATE! Your 2004 Account Statement for 07742676969 shows 786 unredeemed Bonus Points. To claim call 08719180248 Identifier Code: 45239 Expires +spam URGENT! Your Mobile No. was awarded £2000 Bonus Caller Prize on 5/9/03 This is our final try to contact U! Call from Landline 09064019788 BOX42WR29C, 150PPM +ham here is my new address -apples&pairs&all that malarky +spam Todays Voda numbers ending 7548 are selected to receive a $350 award. If you have a match please call 08712300220 quoting claim code 4041 standard rates app +ham I am going to sao mu today. Will be done only at 12 +ham Ü predict wat time ü'll finish buying? +ham Good stuff, will do. +ham Just so that you know,yetunde hasn't sent money yet. I just sent her a text not to bother sending. So its over, you dont have to involve yourself in anything. I shouldn't have imposed anything on you in the first place so for that, i apologise. +ham Are you there in room. +ham HEY GIRL. HOW R U? HOPE U R WELL ME AN DEL R BAK! AGAIN LONG TIME NO C! GIVE ME A CALL SUM TIME FROM LUCYxx +ham K..k:)how much does it cost? +ham I'm home. +ham Dear, will call Tmorrow.pls accomodate. +ham First answer my question. +spam Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country the Algarve is in? Txt ansr to 82277. £1.50 SP:Tyrone +spam Want 2 get laid tonight? Want real Dogging locations sent direct 2 ur mob? Join the UK's largest Dogging Network bt Txting GRAVEL to 69888! Nt. ec2a. 31p.msg@150p +ham I only haf msn. It's yijue@hotmail.com +ham He is there. You call and meet him +ham No no. I will check all rooms befor activities +spam You'll not rcv any more msgs from the chat svc. For FREE Hardcore services text GO to: 69988 If u get nothing u must Age Verify with yr network & try again +ham Got c... I lazy to type... I forgot ü in lect... I saw a pouch but like not v nice... +ham K, text me when you're on the way +ham Sir, Waiting for your mail. +ham A swt thought: "Nver get tired of doing little things 4 lovable persons.." Coz..somtimes those little things occupy d biggest part in their Hearts.. Gud ni8 +ham I know you are. Can you pls open the back? +ham Yes see ya not on the dot +ham Whats the staff name who is taking class for us? +spam FreeMsg Why haven't you replied to my text? I'm Randy, sexy, female and live local. Luv to hear from u. Netcollex Ltd 08700621170150p per msg reply Stop to end +ham Ummma.will call after check in.our life will begin from qatar so pls pray very hard. +ham K..i deleted my contact that why? +ham Sindu got job in birla soft .. +ham The wine is flowing and i'm i have nevering.. +ham Yup i thk cine is better cos no need 2 go down 2 plaza mah. +ham Ok... Ur typical reply... +ham As per your request 'Melle Melle (Oru Minnaminunginte Nurungu Vettam)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune +ham You are everywhere dirt, on the floor, the windows, even on my shirt. And sometimes when i open my mouth, you are all that comes flowing out. I dream of my world without you, then half my chores are out too. A time of joy for me, lots of tv shows i.ll see. But i guess like all things you just must exist, like rain, hail and mist, and when my time here is done, you and i become one. +ham Aaooooright are you at work? +ham I'm leaving my house now... +ham Hello, my love. What are you doing? Did you get to that interview today? Are you you happy? Are you being a good boy? Do you think of me?Are you missing me ? +spam Customer service annoncement. You have a New Years delivery waiting for you. Please call 07046744435 now to arrange delivery +spam You are a winner U have been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810810 +ham Keep yourself safe for me because I need you and I miss you already and I envy everyone that see's you in real life +ham New car and house for my parents.:)i have only new job in hand:) +ham I'm so in love with you. I'm excited each day i spend with you. You make me so happy. +spam -PLS STOP bootydelious (32/F) is inviting you to be her friend. Reply YES-434 or NO-434 See her: www.SMS.ac/u/bootydelious STOP? Send STOP FRND to 62468 +spam BangBabes Ur order is on the way. U SHOULD receive a Service Msg 2 download UR content. If U do not, GoTo wap. bangb. tv on UR mobile internet/service menu +ham I place all ur points on e cultures module already. +spam URGENT! We are trying to contact you. Last weekends draw shows that you have won a £900 prize GUARANTEED. Call 09061701939. Claim code S89. Valid 12hrs only +ham Hi frnd, which is best way to avoid missunderstding wit our beloved one's? +ham Great escape. I fancy the bridge but needs her lager. See you tomo +ham Yes :)it completely in out of form:)clark also utter waste. +ham Sir, I need AXIS BANK account no and bank address. +ham Hmmm.. Thk sure got time to hop ard... Ya, can go 4 free abt... Muz call u to discuss liao... +ham What time you coming down later? +ham Bloody hell, cant believe you forgot my surname Mr . Ill give u a clue, its spanish and begins with m... +ham Well, i'm gonna finish my bath now. Have a good...fine night. +ham Let me know when you've got the money so carlos can make the call +ham U still going to the mall? +ham Turns out my friends are staying for the whole show and won't be back til ~ <#> , so feel free to go ahead and smoke that $ <#> worth +ham Text her. If she doesnt reply let me know so i can have her log in +ham Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No. +ham You lifted my hopes with the offer of money. I am in need. Especially when the end of the month approaches and it hurts my studying. Anyways have a gr8 weekend +ham Lol no. U can trust me. +ham ok. I am a gentleman and will treat you with dignity and respect. +ham He will, you guys close? +ham Going on nothing great.bye +ham Hello handsome ! Are you finding that job ? Not being lazy ? Working towards getting back that net for mummy ? Where's my boytoy now ? Does he miss me ? +ham Haha awesome, be there in a minute +spam Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize! +ham Have you got Xmas radio times. If not i will get it now +ham I jus reached home. I go bathe first. But my sis using net tell u when she finishes k... +spam Are you unique enough? Find out from 30th August. www.areyouunique.co.uk +ham I'm sorry. I've joined the league of people that dont keep in touch. You mean a great deal to me. You have been a friend at all times even at great personal cost. Do have a great week.| +ham Hi :)finally i completed the course:) +ham It will stop on itself. I however suggest she stays with someone that will be able to give ors for every stool. +ham How are you doing? Hope you've settled in for the new school year. Just wishin you a gr8 day +ham Gud mrng dear hav a nice day +ham Did u got that persons story +ham is your hamster dead? Hey so tmr i meet you at 1pm orchard mrt? +ham Hi its Kate how is your evening? I hope i can see you tomorrow for a bit but i have to bloody babyjontet! Txt back if u can. :) xxx +ham Found it, ENC <#> , where you at? +ham I sent you <#> bucks +ham Hello darlin ive finished college now so txt me when u finish if u can love Kate xxx +ham Your account has been refilled successfully by INR <DECIMAL> . Your KeralaCircle prepaid account balance is Rs <DECIMAL> . Your Transaction ID is KR <#> . +ham Goodmorning sleeping ga. +ham U call me alter at 11 ok. +ham Ü say until like dat i dun buy ericsson oso cannot oredi lar... +ham As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. +ham Aight yo, dats straight dogg +ham You please give us connection today itself before <DECIMAL> or refund the bill +ham Both :) i shoot big loads so get ready! +ham What's up bruv, hope you had a great break. Do have a rewarding semester. +ham Home so we can always chat +ham K:)k:)good:)study well. +ham Yup... How ü noe leh... +ham Sounds great! Are you home now? +ham Finally the match heading towards draw as your prediction. +ham Tired. I haven't slept well the past few nights. +ham Easy ah?sen got selected means its good.. +ham I have to take exam with march 3 +ham Yeah you should. I think you can use your gt atm now to register. Not sure but if there's anyway i can help let me know. But when you do be sure you are ready. +ham Ok no prob. Take ur time. +ham There is os called ubandu which will run without installing in hard disk...you can use that os to copy the important files in system and give it to repair shop.. +ham Sorry, I'll call later +ham U say leh... Of course nothing happen lar. Not say v romantic jus a bit only lor. I thk e nite scenery not so nice leh. +spam 500 New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today!From ONLY £1 www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18 +ham Would really appreciate if you call me. Just need someone to talk to. +spam Will u meet ur dream partner soon? Is ur career off 2 a flyng start? 2 find out free, txt HORO followed by ur star sign, e. g. HORO ARIES +ham Hey company elama po mudyadhu. +ham Life is more strict than teacher... Bcoz Teacher teaches lesson & then conducts exam, But Life first conducts Exam & then teaches Lessons. Happy morning. . . +ham Dear good morning now only i am up +ham Get down in gandhipuram and walk to cross cut road. Right side <#> street road and turn at first right. +ham Dear we are going to our rubber place +ham Sorry battery died, yeah I'm here +ham Yes:)here tv is always available in work place.. +spam Text & meet someone sexy today. U can find a date or even flirt its up to U. Join 4 just 10p. REPLY with NAME & AGE eg Sam 25. 18 -msg recd@thirtyeight pence +ham I have printed it oh. So <#> come upstairs +ham Or ill be a little closer like at the bus stop on the same street +ham Where are you?when wil you reach here? +ham New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them & say, I'm always correct.! +spam U 447801259231 have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094597 +ham Tomarrow final hearing on my laptop case so i cant. +ham PLEASSSSSSSEEEEEE TEL ME V AVENT DONE SPORTSx +ham Okay. No no, just shining on. That was meant to be signing, but that sounds better. +ham Although i told u dat i'm into baig face watches now but i really like e watch u gave cos it's fr u. Thanx 4 everything dat u've done today, i'm touched... +ham U don't remember that old commercial? +ham Too late. I said i have the website. I didn't i have or dont have the slippers +ham I asked you to call him now ok +ham Kallis wont bat in 2nd innings. +ham It didnt work again oh. Ok goodnight then. I.ll fix and have it ready by the time you wake up. You are very dearly missed have a good night sleep. +spam Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16 +ham Ranjith cal drpd Deeraj and deepak 5min hold +ham Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da. +ham What you doing?how are you? +ham Ups which is 3days also, and the shipping company that takes 2wks. The other way is usps which takes a week but when it gets to lag you may have to bribe nipost to get your stuff. +ham I'm back, lemme know when you're ready +ham Don't necessarily expect it to be done before you get back though because I'm just now headin out +ham Mmm so yummy babe ... Nice jolt to the suzy +ham Where are you lover ? I need you ... +spam We tried to contact you re your reply to our offer of a Video Handset? 750 anytime networks mins? UNLIMITED TEXT? Camcorder? Reply or call 08000930705 NOW +ham I‘m parked next to a MINI!!!! When are you coming in today do you think? +ham Yup +ham Anyway i'm going shopping on my own now. Cos my sis not done yet. Dun disturb u liao. +ham MY NO. IN LUTON 0125698789 RING ME IF UR AROUND! H* +spam Hey I am really horny want to chat or see me naked text hot to 69698 text charged at 150pm to unsubscribe text stop 69698 +ham Why you Dint come with us. +ham Same. Wana plan a trip sometme then +ham Not sure yet, still trying to get a hold of him +spam Ur ringtone service has changed! 25 Free credits! Go to club4mobiles.com to choose content now! Stop? txt CLUB STOP to 87070. 150p/wk Club4 PO Box1146 MK45 2WT +ham The evo. I just had to download flash. Jealous? +spam Ringtone Club: Get the UK singles chart on your mobile each week and choose any top quality ringtone! This message is free of charge. +ham Come to mu, we're sorting out our narcotics situation +ham Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. +spam HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com +ham Usf I guess, might as well take 1 car +ham No objection. My bf not coming. +ham Thanx... +ham Tell rob to mack his gf in the theater +ham Awesome, I'll see you in a bit +ham Just sent it. So what type of food do you like? +ham All done? All handed in? Celebrations in full swing yet? +ham You got called a tool? +ham "Wen u miss someone, the person is definitely special for u..... But if the person is so special, why to miss them, just Keep-in-touch" gdeve.. +ham Ok. I asked for money how far +ham Okie... +ham Yeah I think my usual guy's still passed out from last night, if you get ahold of anybody let me know and I'll throw down +ham K, I might come by tonight then if my class lets out early +ham Ok.. +ham hi baby im cruisin with my girl friend what r u up 2? give me a call in and hour at home if thats alright or fone me on this fone now love jenny xxx +ham My life Means a lot to me, Not because I love my life, But because I love the people in my life, The world calls them friends, I call them my World:-).. Ge:-).. +ham Dear,shall mail tonite.busy in the street,shall update you tonite.things are looking ok.varunnathu edukkukayee raksha ollu.but a good one in real sense. +ham Hey you told your name to gautham ah? +ham Haf u found him? I feel so stupid da v cam was working. +ham Oops. 4 got that bit. +ham Are you this much buzy +ham I accidentally deleted the message. Resend please. +spam T-Mobile customer you may now claim your FREE CAMERA PHONE upgrade & a pay & go sim card for your loyalty. Call on 0845 021 3680.Offer ends 28thFeb.T&C's apply +ham Unless it's a situation where YOU GO GURL would be more appropriate +ham Hurt me... Tease me... Make me cry... But in the end of my life when i die plz keep one rose on my grave and say STUPID I MISS U.. HAVE A NICE DAY BSLVYL +ham I cant pick the phone right now. Pls send a message +ham Need a coffee run tomo?Can't believe it's that time of week already +ham Awesome, I remember the last time we got somebody high for the first time with diesel :V +ham Shit that is really shocking and scary, cant imagine for a second. Def up for night out. Do u think there is somewhere i could crash for night, save on taxi? +ham Oh and by the way you do have more food in your fridge! Want to go out for a meal tonight? +ham He is a womdarfull actor +spam SMS. ac Blind Date 4U!: Rodds1 is 21/m from Aberdeen, United Kingdom. Check Him out http://img. sms. ac/W/icmb3cktz8r7!-4 no Blind Dates send HIDE +ham Yup... From what i remb... I think should be can book... +ham Jos ask if u wana meet up? +ham Lol yes. Our friendship is hanging on a thread cause u won't buy stuff. +spam TheMob> Check out our newest selection of content, Games, Tones, Gossip, babes and sport, Keep your mobile fit and funky text WAP to 82468 +ham Where are the garage keys? They aren't on the bookshelf +ham Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy +spam Think ur smart ? Win £200 this week in our weekly quiz, text PLAY to 85222 now!T&Cs WinnersClub PO BOX 84, M26 3UZ. 16+. GBP1.50/week +ham He says he'll give me a call when his friend's got the money but that he's definitely buying before the end of the week +ham Hi the way I was with u 2day, is the normal way&this is the real me. UR unique&I hope I know u 4 the rest of mylife. Hope u find wot was lost. +ham You made my day. Do have a great day too. +ham K.k:)advance happy pongal. +ham Hmmm... Guess we can go 4 kb n power yoga... Haha, dunno we can tahan power yoga anot... Thk got lo oso, forgot liao... +ham Not really dude, have no friends i'm afraid :( +spam December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906 +ham Coffee cake, i guess... +ham Merry Christmas to you too babe, i love ya *kisses* +ham Hey... Why dont we just go watch x men and have lunch... Haha +ham cud u tell ppl im gona b a bit l8 cos 2 buses hav gon past cos they were full & im still waitin 4 1. Pete x +ham That would be great. We'll be at the Guild. Could meet on Bristol road or somewhere - will get in touch over weekend. Our plans take flight! Have a good week +ham No problem. How are you doing? +ham No calls..messages..missed calls +ham Hi da:)how is the todays class? +ham I'd say that's a good sign but, well, you know my track record at reading women +ham Cool, text me when you're parked +ham I'm reading the text i just sent you. Its meant to be a joke. So read it in that light +ham K.k:)apo k.good movie. +ham Maybe i could get book out tomo then return it immediately ..? Or something. +spam Call Germany for only 1 pence per minute! Call from a fixed line via access number 0844 861 85 85. No prepayment. Direct access! +ham Any chance you might have had with me evaporated as soon as you violated my privacy by stealing my phone number from your employer's paperwork. Not cool at all. Please do not contact me again or I will report you to your supervisor. +spam Valentines Day Special! Win over £1000 in our quiz and take your partner on the trip of a lifetime! Send GO to 83600 now. 150p/msg rcvd. CustCare:08718720201. +ham Ta-Daaaaa! I am home babe, are you still up ? +ham Cool. So how come you havent been wined and dined before? +ham Just sleeping..and surfing +ham Sorry, I'll call later +ham U calling me right? Call my hand phone... +ham Ok that's great thanx a lot. +ham I take it the post has come then! You must have 1000s of texts now! Happy reading. My one from wiv hello caroline at the end is my favourite. Bless him +ham Where u been hiding stranger? +ham Am not interested to do like that. +ham My sister cleared two round in birla soft yesterday. +ham Gudnite....tc...practice going on +ham Dis is yijue. I jus saw ur mail. In case huiming havent sent u my num. Dis is my num. +ham One small prestige problem now. +spam Fancy a shag? I do.Interested? sextextuk.com txt XXUK SUZY to 69876. Txts cost 1.50 per msg. TnCs on website. X +ham Just checking in on you. Really do miss seeing Jeremiah. Do have a great month +ham Nah can't help you there, I've never had an iphone +ham If you're not in my car in an hour and a half I'm going apeshit +ham TODAY is Sorry day.! If ever i was angry with you, if ever i misbehaved or hurt you? plz plz JUST SLAP URSELF Bcoz, Its ur fault, I'm basically GOOD +ham Yo you guys ever figure out how much we need for alcohol? Jay and I are trying to figure out how much we can safely spend on weed +ham <#> ISH MINUTES WAS 5 MINUTES AGO. WTF. +ham Thank You for calling.Forgot to say Happy Onam to you Sirji.I am fine here and remembered you when i met an insurance person.Meet You in Qatar Insha Allah.Rakhesh, ex Tata AIG who joined TISSCO,Tayseer. +spam Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16 +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send CASH to 86688 only 150p/msg. CC: 08708800282 HG/Suite342/2Lands Row/W1J6HL +ham I'm an actor. When i work, i work in the evening and sleep late. Since i'm unemployed at the moment, i ALWAYS sleep late. When you're unemployed, every day is saturday. +ham Hello! Just got here, st andrews-boy its a long way! Its cold. I will keep you posted +ham Ha ha cool cool chikku chikku:-):-DB-) +ham Oh ok no prob.. +ham Check audrey's status right now +ham Busy here. Trying to finish for new year. I am looking forward to finally meeting you... +ham Good afternoon sunshine! How dawns that day ? Are we refreshed and happy to be alive? Do we breathe in the air and smile ? I think of you, my love ... As always +ham Well i know Z will take care of me. So no worries. +spam Update_Now - Xmas Offer! Latest Motorola, SonyEricsson & Nokia & FREE Bluetooth! Double Mins & 1000 Txt on Orange. Call MobileUpd8 on 08000839402 or call2optout/F4Q= +spam Here is your discount code RP176781. To stop further messages reply stop. www.regalportfolio.co.uk. Customer Services 08717205546 +ham Wat uniform? In where get? +ham Cool, text me when you're ready +ham Hello my boytoy ... Geeee I miss you already and I just woke up. I wish you were here in bed with me, cuddling me. I love you ... +ham I will spoil you in bed as well :) +ham I'm going for bath will msg you next <#> min.. +ham I cant keep talking to people if am not sure i can pay them if they agree to price. So pls tell me what you want to really buy and how much you are willing to pay +spam Thanks for your Ringtone Order, Reference T91. You will be charged GBP 4 per week. You can unsubscribe at anytime by calling customer services on 09057039994 +ham Can you say what happen +ham You could have seen me..i did't recognise you Face.:) +ham Well there's not a lot of things happening in Lindsay on New years *sighs* Some bars in Ptbo and the blue heron has something going +ham Keep my payasam there if rinu brings +ham I taught that Ranjith sir called me. So only i sms like that. Becaus hes verifying about project. Prabu told today so only pa dont mistake me.. +ham I guess that's why you re worried. You must know that there's a way the body repairs itself. And i'm quite sure you shouldn't worry. We'll take it slow. First the tests, they will guide when your ovulation is then just relax. Nothing you've said is a reason to worry but i.ll keep on followin you up. +ham Yeah sure, give me a couple minutes to track down my wallet +ham Hey leave it. not a big deal:-) take care. +ham Hey i will be late ah... Meet you at 945+ +spam Double mins and txts 4 6months FREE Bluetooth on Orange. Available on Sony, Nokia Motorola phones. Call MobileUpd8 on 08000839402 or call2optout/N9DX +ham It took Mr owl 3 licks +ham Customer place i will call you. +ham Mm that time you dont like fun +spam 4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths ? Call MobilesDirect free on 08000938767 to update now! or2stoptxt +ham Yup having my lunch buffet now.. U eat already? +ham Huh so late... Fr dinner? +ham Hey so this sat are we going for the intro pilates only? Or the kickboxing too? +ham Morning only i can ok. +ham Yes i think so. I am in office but my lap is in room i think thats on for the last few days. I didnt shut that down +ham Pick you up bout 7.30ish? What time are and that going? +ham From here after The performance award is calculated every two month.not for current one month period.. +ham Was actually sleeping and still might when u call back. So a text is gr8. You rock sis. Will send u a text wen i wake. +ham You are always putting your business out there. You put pictures of your ass on facebook. You are one of the most open people i've ever met. Why would i think a picture of your room would hurt you, make you feel violated. +ham Good evening Sir, Al Salam Wahleykkum.sharing a happy news.By the grace of God, i got an offer from Tayseer,TISSCO and i joined.Hope you are fine.Inshah Allah,meet you sometime.Rakhesh,visitor from India. +ham Hmmm...k...but i want to change the field quickly da:-)i wanna get system administrator or network administrator.. +spam FREE RINGTONE text FIRST to 87131 for a poly or text GET to 87131 for a true tone! Help? 0845 2814032 16 after 1st free, tones are 3x£150pw to e£nd txt stop +ham Dear how is chechi. Did you talk to her +ham The hair cream has not been shipped. +ham None of that's happening til you get here though +ham Yep, the great loxahatchee xmas tree burning of <#> starts in an hour +ham Haha get used to driving to usf man, I know a lot of stoners +ham All was well until slightly disastrous class this pm with my fav darlings! Hope day off ok. Coffee wld be good as can't stay late tomorrow. Same time + place as always? +ham Hello! Good week? Fancy a drink or something later? +ham Headin towards busetop +ham Message:some text missing* Sender:Name Missing* *Number Missing *Sent:Date missing *Missing U a lot thats y everything is missing sent via fullonsms.com +ham Come by our room at some point so we can iron out the plan for this weekend +ham Cos i want it to be your thing +ham Okies... I'll go yan jiu too... We can skip ard oso, go cine den go mrt one, blah blah blah... +ham Bring home some Wendy =D +spam 100 dating service cal;l 09064012103 box334sk38ch +ham Whatsup there. Dont u want to sleep +ham Alright i have a new goal now +spam FREE entry into our £250 weekly competition just text the word WIN to 80086 NOW. 18 T&C www.txttowin.co.uk +ham Alright, I'll head out in a few minutes, text me where to meet you +spam Send a logo 2 ur lover - 2 names joined by a heart. Txt LOVE NAME1 NAME2 MOBNO eg LOVE ADAM EVE 07123456789 to 87077 Yahoo! POBox36504W45WQ TxtNO 4 no ads 150p +ham Yes:)from last week itself i'm taking live call. +spam Someone has contacted our dating service and entered your phone because they fancy you! To find out who it is call from a landline 09111032124 . PoBox12n146tf150p +ham Siva is in hostel aha:-. +spam URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09058094455 from land line. Claim 3030. Valid 12hrs only +ham Send this to ur friends and receive something about ur voice..... How is my speaking expression? 1.childish 2.naughty 3.Sentiment 4.rowdy 5.ful of attitude 6.romantic 7.shy 8.Attractive 9.funny <#> .irritating <#> .lovable. reply me.. +ham Ok. She'll be ok. I guess +ham aathi..where are you dear.. +ham Any pain on urination any thing else? +ham 7 at esplanade.. Do ü mind giving me a lift cos i got no car today.. +ham I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of <#> Lacs.there is no source to arng dis amt. <#> lacs..thats my prob +ham At home watching tv lor. +ham Does she usually take fifteen fucking minutes to respond to a yes or no question +spam Congrats! Nokia 3650 video camera phone is your Call 09066382422 Calls cost 150ppm Ave call 3mins vary from mobiles 16+ Close 300603 post BCM4284 Ldn WC1N3XX +ham Booked ticket for pongal? +ham You available now? I'm like right around hillsborough & <#> th +ham The message sent is askin for <#> dollars. Shoul i pay <#> or <#> ? +ham Ask g or iouri, I've told the story like ten times already +ham How long does applebees fucking take +ham Hi hope u get this txt~journey hasnt been gd,now about 50 mins late I think. +ham But i have to. I like to have love and arrange. +ham Yes..he is really great..bhaji told kallis best cricketer after sachin in world:).very tough to get out. +ham You were supposed to wake ME up >:( +ham Oic... I saw him too but i tot he din c me... I found a group liao... +ham Sorry, I'll call later +ham "HEY HEY WERETHE MONKEESPEOPLE SAY WE MONKEYAROUND! HOWDY GORGEOUS, HOWU DOIN? FOUNDURSELF A JOBYET SAUSAGE?LOVE JEN XXX" +ham Sorry, my battery died, I can come by but I'm only getting a gram for now, where's your place? +ham Well done, blimey, exercise, yeah, i kinda remember wot that is, hmm. +ham I wont get concentration dear you know you are my mind and everything :-) +ham LOL ... Have you made plans for new years? +ham 10 min later k... +ham hanks lotsly! +ham Thanks for this hope you had a good day today +ham K:)k:)what are detail you want to transfer?acc no enough? +ham Ok i will tell her to stay out. Yeah its been tough but we are optimistic things will improve this month. +spam Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help' +ham Si si. I think ill go make those oreo truffles. +ham LOOK AT AMY URE A BEAUTIFUL, INTELLIGENT WOMAN AND I LIKE U A LOT. I KNOW U DON’T LIKE ME LIKE THAT SO DON’T WORRY. +ham I hope you that's the result of being consistently intelligent and kind. Start asking him about practicum links and keep your ears open and all the best. ttyl +ham 1.20 that call cost. Which i guess isnt bad. Miss ya, need ya, want ya, love ya +ham Going thru a very different feeling.wavering decisions and coping up with the same is the same individual.time will heal everything i believe. +ham Where did u go? My phone is gonna die you have to stay in here +ham Great. Never been better. Each day gives even more reasons to thank God +spam UpgrdCentre Orange customer, you may now claim your FREE CAMERA PHONE upgrade for your loyalty. Call now on 0207 153 9153. Offer ends 26th July. T&C's apply. Opt-out available +ham Sorry, I'll call later ok bye +ham Ok i am on the way to railway +ham great princess! I love giving and receiving oral. Doggy style is my fave position. How about you? I enjoy making love <#> times per night :) +ham They don't put that stuff on the roads to keep it from getting slippery over there? +ham When are you going to ride your bike? +ham Yup, no need. I'll jus wait 4 e rain 2 stop. +ham There are many company. Tell me the language. +spam okmail: Dear Dave this is your final notice to collect your 4* Tenerife Holiday or #5000 CASH award! Call 09061743806 from landline. TCs SAE Box326 CW25WX 150ppm +ham How long has it been since you screamed, princess? +ham Nothing. I meant that once the money enters your account here, the bank will remove its flat rate. Someone transfered <#> to my account and <#> dollars got removed. So the banks differ and charges also differ.be sure you trust the 9ja person you are sending account details to cos... +spam Want 2 get laid tonight? Want real Dogging locations sent direct 2 ur Mob? Join the UK's largest Dogging Network by txting MOAN to 69888Nyt. ec2a. 31p.msg@150p +ham Nice line said by a broken heart- Plz don't cum 1 more times infront of me... Other wise once again I ll trust U... Good 9t:) +ham Ok I'm gonna head up to usf in like fifteen minutes +ham Love you aathi..love u lot.. +ham Tension ah?what machi?any problem? +ham K, can I pick up another 8th when you're done? +ham When're you guys getting back? G said you were thinking about not staying for mcr +ham Almost there, see u in a sec +ham Yo carlos, a few friends are already asking me about you, you working at all this weekend? +ham Watching tv lor... +ham Thank you baby! I cant wait to taste the real thing... +ham You should change your fb to jaykwon thuglyfe falconerf +ham If we win its really no 1 side for long time. +spam FREE MESSAGE Activate your 500 FREE Text Messages by replying to this message with the word FREE For terms & conditions, visit www.07781482378.com +ham Dear reached railway. What happen to you +ham Depends on quality. If you want the type i sent boye, faded glory, then about 6. If you want ralphs maybe 2 +ham I think i've fixed it can you send a test message? +ham Sorry man my account's dry or I would, if you want we could trade back half or I could buy some shit with my credit card +spam Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out! +ham Sorry,in meeting I'll call later +ham What class of <#> reunion? +ham Are you free now?can i call now? +ham Got meh... When? +ham Nope... Think i will go for it on monday... Sorry i replied so late +ham Some of them told accenture is not confirm. Is it true. +ham Kate jackson rec center before 7ish, right? +ham Dear i have reache room +ham Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose. +ham When can ü come out? +ham Check with nuerologist. +ham Lolnice. I went from a fish to ..water.? +spam +123 Congratulations - in this week's competition draw u have won the £1450 prize to claim just call 09050002311 b4280703. T&Cs/stop SMS 08718727868. Over 18 only 150ppm +ham No it's waiting in e car dat's bored wat. Cos wait outside got nothing 2 do. At home can do my stuff or watch tv wat. +ham Maybe westshore or hyde park village, the place near my house? +ham You should know now. So how's anthony. Are you bringing money. I've school fees to pay and rent and stuff like that. Thats why i need your help. A friend in need....| +ham What's the significance? +ham Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply.. +ham 8 at the latest, g's still there if you can scrounge up some ammo and want to give the new ak a try +ham Prabha..i'm soryda..realy..frm heart i'm sory +ham Lol ok your forgiven :) +ham No..jst change tat only.. +spam You are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18+ +ham S:)no competition for him. +spam Boltblue tones for 150p Reply POLY# or MONO# eg POLY3 1. Cha Cha Slide 2. Yeah 3. Slow Jamz 6. Toxic 8. Come With Me or STOP 4 more tones txt MORE +spam Your credits have been topped up for http://www.bubbletext.com Your renewal Pin is tgxxrz +ham That way transport is less problematic than on sat night. By the way, if u want to ask n to join my bday, feel free. But need to know definite nos as booking on fri. +ham Usually the person is unconscious that's in children but in adults they may just behave abnormally. I.ll call you now +ham But that's on ebay it might be less elsewhere. +ham Shall i come to get pickle +ham Were gonna go get some tacos +ham That's very rude, you on campus? +spam URGENT!: Your Mobile No. was awarded a £2,000 Bonus Caller Prize on 02/09/03! This is our 2nd attempt to contact YOU! Call 0871-872-9755 BOX95QU +ham Hi i won't b ard 4 christmas. But do enjoy n merry x'mas. +spam Today's Offer! Claim ur £150 worth of discount vouchers! Text YES to 85023 now! SavaMob, member offers mobile! T Cs 08717898035. £3.00 Sub. 16 . Unsub reply X +ham Yes! How is a pretty lady like you single? +spam You will recieve your tone within the next 24hrs. For Terms and conditions please see Channel U Teletext Pg 750 +ham Jay says that you're a double-faggot +spam PRIVATE! Your 2003 Account Statement for 07815296484 shows 800 un-redeemed S.I.M. points. Call 08718738001 Identifier Code 41782 Expires 18/11/04 +ham What Today-sunday..sunday is holiday..so no work.. +ham Gudnite....tc...practice going on +ham I'll be late... +ham I've not called you in a while. This is hoping it was l8r malaria and that you know that we miss you guys. I miss Bani big, so pls give her my love especially. Have a great day. +ham Good afternoon, my love! How goes that day ? I hope maybe you got some leads on a job. I think of you, boytoy and send you a passionate kiss from across the sea +ham Probably gonna be here for a while, see you later tonight <) +ham Or maybe my fat fingers just press all these buttons and it doesn't know what to do. +ham Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear +ham I am in tirupur da, once you started from office call me. +spam from www.Applausestore.com MonthlySubscription@50p/msg max6/month T&CsC web age16 2stop txt stop +ham A famous quote : when you develop the ability to listen to 'anything' unconditionally without losing your temper or self confidence, it means you are ......... 'MARRIED' +ham But am going to college pa. What to do. are else ill come there it self. Pa. +ham 4 oclock at mine. Just to bash out a flat plan. +ham This girl does not stay in bed. This girl doesn't need recovery time. Id rather pass out while having fun then be cooped up in bed +ham Then any special there? +ham I know but you need to get hotel now. I just got my invitation but i had to apologise. Cali is to sweet for me to come to some english bloke's weddin +ham Sorry that took so long, omw now +ham Wait <#> min.. +ham Ok give me 5 minutes I think I see her. BTW you're my alibi. You were cutting my hair the whole time. +ham Imagine you finally get to sink into that bath after I have put you through your paces, maybe even having you eat me for a while before I left ... But also imagine the feel of that cage on your cock surrounded by the bath water, reminding you always who owns you ... Enjoy, my cuck +ham Hurry up, I've been weed-deficient for like three days +ham Sure, if I get an acknowledgement from you that it's astoundingly tactless and generally faggy to demand a blood oath fo +ham Ok. Every night take a warm bath drink a cup of milk and you'll see a work of magic. You still need to loose weight. Just so that you know +ham I‘ll have a look at the frying pan in case it‘s cheap or a book perhaps. No that‘s silly a frying pan isn‘t likely to be a book +ham O. Well uv causes mutations. Sunscreen is like essential thesedays +ham Having lunch:)you are not in online?why? +ham I know that my friend already told that. +ham Hi Princess! Thank you for the pics. You are very pretty. How are you? +ham Aiyo... U always c our ex one... I dunno abt mei, she haven reply... First time u reply so fast... Y so lucky not workin huh, got bao by ur sugardad ah...gee.. +ham Hi msg me:)i'm in office.. +ham Thanx 4 e brownie it's v nice... +ham Geeeee ... I love you so much I can barely stand it +spam GENT! We are trying to contact you. Last weekends draw shows that you won a £1000 prize GUARANTEED. Call 09064012160. Claim Code K52. Valid 12hrs only. 150ppm +ham Fuck babe ... I miss you already, you know ? Can't you let me send you some money towards your net ? I need you ... I want you ... I crave you ... +ham Ill call u 2mrw at ninish, with my address that icky American freek wont stop callin me 2 bad Jen k eh? +ham Oooh bed ridden ey? What are YOU thinking of? +ham So anyways, you can just go to your gym or whatever, my love *smiles* I hope your ok and having a good day babe ... I miss you so much already +ham Love it! Daddy will make you scream with pleasure! I am going to slap your ass with my dick! +ham WOT U WANNA DO THEN MISSY? +ham Yar lor wait 4 my mum 2 finish sch then have lunch lor... I whole morning stay at home clean my room now my room quite clean... Hee... +ham Do you know where my lab goggles went +ham Can you open the door? +ham Waiting for your call. +ham Nope i waiting in sch 4 daddy... +spam You have won ?1,000 cash or a ?2,000 prize! To claim, call09050000327 +ham I'm tired of arguing with you about this week after week. Do what you want and from now on, i'll do the same. +ham Ü wait 4 me in sch i finish ard 5.. +spam our mobile number has won £5000, to claim calls us back or ring the claims hot line on 09050005321. +ham Arngd marriage is while u r walkin unfortuntly a snake bites u. bt love marriage is dancing in frnt of d snake & sayin Bite me, bite me. +ham Huh so early.. Then ü having dinner outside izzit? +ham Ok anyway no need to change with what you said +spam We tried to contact you re your reply to our offer of 750 mins 150 textand a new video phone call 08002988890 now or reply for free delivery tomorrow +ham my ex-wife was not able to have kids. Do you want kids one day? +ham So how's scotland. Hope you are not over showing your JJC tendencies. Take care. Live the dream +ham Tell them u have a headache and just want to use 1 hour of sick time. +ham I dun thk i'll quit yet... Hmmm, can go jazz ? Yogasana oso can... We can go meet em after our lessons den... +ham "Pete can you please ring meive hardly gotany credit" +ham Ya srsly better than yi tho +ham I'm in a meeting, call me later at +spam For ur chance to win a £250 wkly shopping spree TXT: SHOP to 80878. T's&C's www.txt-2-shop.com custcare 08715705022, 1x150p/wk +spam You have been specially selected to receive a 2000 pound award! Call 08712402050 BEFORE the lines close. Cost 10ppm. 16+. T&Cs apply. AG Promo +spam PRIVATE! Your 2003 Account Statement for 07753741225 shows 800 un-redeemed S. I. M. points. Call 08715203677 Identifier Code: 42478 Expires 24/10/04 +ham You still at grand prix? +ham I met you as a stranger and choose you as my friend. As long as the world stands, our friendship never ends. Lets be Friends forever!!! Gud nitz... +ham I am great! How are you? +ham Gud mrng dear have a nice day +spam You have an important customer service announcement. Call FREEPHONE 0800 542 0825 now! +ham Will do. Was exhausted on train this morning. Too much wine and pie. You sleep well too +ham I'm going out to buy mum's present ar. +ham Mind blastin.. No more Tsunamis will occur from now on.. Rajnikant stopped swimming in Indian Ocean..:-D +ham If u sending her home first it's ok lor. I'm not ready yet. +ham Speaking of does he have any cash yet? +ham Be happy there. I will come after noon +ham Meet after lunch la... +ham TaKe CaRE n gET WeLL sOOn +spam XCLUSIVE@CLUBSAISAI 2MOROW 28/5 SOIREE SPECIALE ZOUK WITH NICHOLS FROM PARIS.FREE ROSES 2 ALL LADIES !!! info: 07946746291/07880867867 +ham what I meant to say is cant wait to see u again getting bored of this bridgwater banter +ham Neva mind it's ok.. +ham It's fine, imma get a drink or somethin. Want me to come find you? +spam 22 days to kick off! For Euro2004 U will be kept up to date with the latest news and results daily. To be removed send GET TXT STOP to 83222 +ham Its a valentine game. . . Send dis msg to all ur friends. .. If 5 answers r d same then someone really loves u. Ques- which colour suits me the best?rply me +ham I have many dependents +ham THANX4 TODAY CER IT WAS NICE 2 CATCH UP BUT WE AVE 2 FIND MORE TIME MORE OFTEN OH WELL TAKE CARE C U SOON.C +ham I called and said all to him:)then he have to choose this future. +ham "Happy valentines day" I know its early but i have hundreds of handsomes and beauties to wish. So i thought to finish off aunties and uncles 1st... +ham He like not v shock leh. Cos telling shuhui is like telling leona also. Like dat almost all know liao. He got ask me abt ur reaction lor. +ham For my family happiness.. +ham I come n pick ü up... Come out immediately aft ur lesson... +ham Let there be snow. Let there be snow. This kind of weather brings ppl together so friendships can grow. +ham Dear we got <#> dollars hi hi +ham Good words.... But words may leave u in dismay many times. +ham MAKE SURE ALEX KNOWS HIS BIRTHDAY IS OVER IN FIFTEEN MINUTES AS FAR AS YOU'RE CONCERNED +ham sorry, no, have got few things to do. may be in pub later. +ham Nah it's straight, if you can just bring bud or drinks or something that's actually a little more useful than straight cash +ham Haha good to hear, I'm officially paid and on the market for an 8th +ham How many licks does it take to get to the center of a tootsie pop? +ham Yup i thk they r e teacher said that will make my face look longer. Darren ask me not 2 cut too short. +spam New TEXTBUDDY Chat 2 horny guys in ur area 4 just 25p Free 2 receive Search postcode or at gaytextbuddy.com. TXT ONE name to 89693 +spam Todays Vodafone numbers ending with 4882 are selected to a receive a £350 award. If your number matches call 09064019014 to receive your £350 award. +ham Please dont say like that. Hi hi hi +ham Thank u! +ham Oh that was a forwarded message. I thought you send that to me +ham Got it. Seventeen pounds for seven hundred ml – hope ok. +spam Dear Voucher Holder, 2 claim this weeks offer, at your PC go to http://www.e-tlp.co.uk/expressoffer Ts&Cs apply.2 stop texts txt STOP to 80062. +ham Me n him so funny... +ham Sweetheart, hope you are not having that kind of day! Have one with loads of reasons to smile. Biola +ham When ü login dat time... Dad fetching ü home now? +ham What will we do in the shower, baby? +ham I had askd u a question some hours before. Its answer +ham Well imma definitely need to restock before thanksgiving, I'll let you know when I'm out +ham said kiss, kiss, i can't do the sound effects! He is a gorgeous man isn't he! Kind of person who needs a smile to brighten his day! +ham Probably gonna swing by in a wee bit +ham Ya very nice. . .be ready on thursday +ham Allo! We have braved the buses and taken on the trains and triumphed. I mean we‘re in b‘ham. Have a jolly good rest of week +ham Watching cartoon, listening music & at eve had to go temple & church.. What about u? +ham Do you mind if I ask what happened? You dont have to say if it is uncomfortable. +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08715203694 Identifier Code: 40533 Expires 31/10/04 +ham No prob. I will send to your email. +spam You have won ?1,000 cash or a ?2,000 prize! To claim, call09050000327. T&C: RSTM, SW7 3SS. 150ppm +ham Thats cool! Sometimes slow and gentle. Sonetimes rough and hard :) +ham I'm gonna say no. Sorry. I would but as normal am starting to panic about time. Sorry again! Are you seeing on Tuesday? +ham Wait, do you know if wesleys in town? I bet she does hella drugs! +ham Fine i miss you very much. +ham Did u got that persons story +ham Tell them the drug dealer's getting impatient +ham Sun cant come to earth but send luv as rays. cloud cant come to river but send luv as rain. I cant come to meet U, but can send my care as msg to U. Gud evng +ham You will be in the place of that man +ham It doesnt make sense to take it there unless its free. If you need to know more, wikipedia.com +spam 88800 and 89034 are premium phone services call 08718711108 +ham Under the sea, there lays a rock. In the rock, there is an envelope. In the envelope, there is a paper. On the paper, there are 3 words... ' +ham Then mum's repent how? +ham Sorry me going home first... Daddy come fetch ü later... +ham Leave it de:-). Start Prepare for next:-).. +ham Yes baby! We can study all the positions of the kama sutra ;) +ham En chikku nange bakra msg kalstiya..then had tea/coffee? +ham Carlos'll be here in a minute if you still need to buy +ham This pay is <DECIMAL> lakhs:) +ham Have a good evening! Ttyl +ham Did u receive my msg? +ham Ho ho - big belly laugh! See ya tomo +spam SMS. ac sun0819 posts HELLO:"You seem cool, wanted to say hi. HI!!!" Stop? Send STOP to 62468 +spam Get ur 1st RINGTONE FREE NOW! Reply to this msg with TONE. Gr8 TOP 20 tones to your phone every week just £1.50 per wk 2 opt out send STOP 08452810071 16 +ham Ditto. And you won't have to worry about me saying ANYTHING to you anymore. Like i said last night, you do whatever you want and i'll do the same. Peace. +ham I've got <#> , any way I could pick up? +ham I dont knw pa, i just drink milk.. +ham Maybe?! Say hi to and find out if got his card. Great escape or wetherspoons? +ham Piggy, r u awake? I bet u're still sleeping. I'm going 4 lunch now... +ham Cause I'm not freaky lol +ham Missed your call cause I was yelling at scrappy. Miss u. Can't wait for u to come home. I'm so lonely today. +ham What is this 'hex' place you talk of? Explain! +ham Ü log off 4 wat. It's sdryb8i +ham Is xy going 4 e lunch? +spam Hi I'm sue. I am 20 years old and work as a lapdancer. I love sex. Text me live - I'm i my bedroom now. text SUE to 89555. By TextOperator G2 1DA 150ppmsg 18+ +ham I wanted to ask ü to wait 4 me to finish lect. Cos my lect finishes in an hour anyway. +ham Have you finished work yet? :) +ham Every King Was Once A Crying Baby And Every Great Building Was Once A Map.. Not Imprtant Where U r TODAY, BUT Where U Wil Reach TOMORW. Gud ni8 +ham Dear,Me at cherthala.in case u r coming cochin pls call bfore u start.i shall also reach accordingly.or tell me which day u r coming.tmorow i am engaged ans its holiday. +ham Thanks love. But am i doing torch or bold. +spam Please CALL 08712404000 immediately as there is an urgent message waiting for you. +ham Was the farm open? +ham Sorry to trouble u again. Can buy 4d for my dad again? 1405, 1680, 1843. All 2 big 1 small, sat n sun. Thanx. +ham My sister in law, hope you are having a great month. Just saying hey. Abiola +ham Will purchase d stuff today and mail to you. Do you have a po box number? +ham Ah poop. Looks like ill prob have to send in my laptop to get fixed cuz it has a gpu problem +ham Good. Good job. I like entrepreneurs +ham Aight, you close by or still down around alex's place? +ham meet you in corporation st outside gap … you can see how my mind is working! +ham Mum ask ü to buy food home... +ham K..u also dont msg or reply to his msg.. +ham How much r ü willing to pay? +ham Sorry, I'll call later +ham What is important is that you prevent dehydration by giving her enough fluids +ham Thats a bit weird, even ?- where is the do supposed to be happening? But good idea, sure they will be in pub! +ham True dear..i sat to pray evening and felt so.so i sms'd you in some time... +ham I don't think I can get away for a trek that long with family in town, sorry +ham So when do you wanna gym harri +ham Quite late lar... Ard 12 anyway i wun b drivin... +spam To review and KEEP the fantastic Nokia N-Gage game deck with Club Nokia, go 2 www.cnupdates.com/newsletter. unsubscribe from alerts reply with the word OUT +spam 4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths+? Call MobilesDirect free on 08000938767 to update now! or2stoptxt T&Cs +ham Height of Confidence: All the Aeronautics professors wer calld & they wer askd 2 sit in an aeroplane. Aftr they sat they wer told dat the plane ws made by their students. Dey all hurried out of d plane.. Bt only 1 didnt move... He said:"if it is made by my students,this wont even start........ Datz confidence.. +ham It just seems like weird timing that the night that all you and g want is for me to come smoke is the same day as when a shitstorm is attributed to me always coming over and making everyone smoke +spam 08714712388 between 10am-7pm Cost 10p +ham Save yourself the stress. If the person has a dorm account, just send your account details and the money will be sent to you. +ham He also knows about lunch menu only da. . I know +ham When i have stuff to sell i.ll tell you +spam +449071512431 URGENT! This is the 2nd attempt to contact U!U have WON £1250 CALL 09071512433 b4 050703 T&CsBCM4235WC1N3XX. callcost 150ppm mobilesvary. max£7. 50 +ham Book which lesson? then you msg me... I will call up after work or sth... I'm going to get specs. My membership is PX3748 +spam You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712394 between 10am-7pm +ham Macha dont feel upset.i can assume your mindset.believe me one evening with me and i have some wonderful plans for both of us.LET LIFE BEGIN AGAIN.call me anytime +ham Oh is it? Send me the address +ham S'fine. Anytime. All the best with it. +ham That is wondar full flim. +ham Ya even those cookies have jelly on them +ham The world is running and i am still.maybe all are feeling the same,so be it.or i have to admit,i am mad.then where is the correction?or let me call this is life.and keep running with the world,may be u r also running.lets run. +ham Got it! It looks scrumptious... daddy wants to eat you all night long! +ham Of cos can lar i'm not so ba dao ok... 1 pm lor... Y u never ask where we go ah... I said u would ask on fri but he said u will ask today... +ham Alright omw, gotta change my order to a half8th +ham Exactly. Anyways how far. Is jide her to study or just visiting +ham Dunno y u ask me. +spam Email AlertFrom: Jeri StewartSize: 2KBSubject: Low-cost prescripiton drvgsTo listen to email call 123 +ham No he didn't. Spring is coming early yay! +ham Lol you won't feel bad when I use her money to take you out to a steak dinner =D +ham Even u dont get in trouble while convincing..just tel him once or twice and just tel neglect his msgs dont c and read it..just dont reply +ham Leaving to qatar tonite in search of an opportunity.all went fast.pls add me in ur prayers dear.Rakhesh +ham Then why no one talking to me +ham Thanks for looking out for me. I really appreciate. +spam Hi. Customer Loyalty Offer:The NEW Nokia6650 Mobile from ONLY £10 at TXTAUCTION! Txt word: START to No: 81151 & get yours Now! 4T&Ctxt TC 150p/MTmsg +ham Wish i were with you now! +ham Haha mayb u're rite... U know me well. Da feeling of being liked by someone is gd lor. U faster go find one then all gals in our group attached liao. +ham Yes i will be there. Glad you made it. +ham Do well :)all will for little time. Thing of good times ahead: +ham Just got up. have to be out of the room very soon. …. i hadn't put the clocks back til at 8 i shouted at everyone to get up and then realised it was 7. wahay. another hour in bed. +ham Ok. There may be a free gym about. +ham Men like shorter ladies. Gaze up into his eyes. +ham Dunno he jus say go lido. Same time 930. +ham I promise to take good care of you, princess. I have to run now. Please send pics when you get a chance. Ttyl! +spam U are subscribed to the best Mobile Content Service in the UK for £3 per 10 days until you send STOP to 82324. Helpline 08706091795 +ham Is there a reason we've not spoken this year? Anyways have a great week and all the best in your exam +ham By monday next week. Give me the full gist +spam Do you realize that in about 40 years, we'll have thousands of old ladies running around with tattoos? +spam You have an important customer service announcement from PREMIER. +ham Dont gimme that lip caveboy +ham When did you get to the library +ham Realy sorry-i don't recognise this number and am now confused :) who r u please?! +ham So why didnt you holla? +ham Cant think of anyone with * spare room off * top of my head +ham Faith makes things possible,Hope makes things work,Love makes things beautiful,May you have all three this Christmas!Merry Christmas! +ham U should have made an appointment +ham Call me when you/carlos is/are here, my phone's vibrate is acting up and I might not hear texts +spam Romantic Paris. 2 nights, 2 flights from £79 Book now 4 next year. Call 08704439680Ts&Cs apply. +ham We are at grandmas. Oh dear, u still ill? I felt Shit this morning but i think i am just hungover! Another night then. We leave on sat. +spam Urgent Ur £500 guaranteed award is still unclaimed! Call 09066368327 NOW closingdate04/09/02 claimcode M39M51 £1.50pmmorefrommobile2Bremoved-MobyPOBox734LS27YF +ham Nothing but we jus tot u would ask cos u ba gua... But we went mt faber yest... Yest jus went out already mah so today not going out... Jus call lor... +ham Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance.. +spam UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039 . SkilGme. TsCs087147403231Winawk!Age16 £1.50perWKsub +ham I'm nt goin, got somethin on, unless they meetin 4 dinner lor... Haha, i wonder who will go tis time... +ham Sorry, I'll call later +ham I cant pick the phone right now. Pls send a message +ham Lol I know! They're so dramatic. Schools already closed for tomorrow. Apparently we can't drive in the inch of snow were supposed to get. +ham Not getting anywhere with this damn job hunting over here! +ham Lol! U drunkard! Just doing my hair at d moment. Yeah still up 4 tonight. Wats the plan? +ham idc get over here, you are not weaseling your way out of this shit twice in a row +ham I wil be there with in <#> minutes. Got any space +ham Just sleeping..and surfing +ham Thanks for picking up the trash. +ham Why don't you go tell your friend you're not sure you want to live with him because he smokes too much then spend hours begging him to come smoke +ham "Hi its Kate it was lovely to see you tonight and ill phone you tomorrow. I got to sing and a guy gave me his card! xxx" +ham Happy New year my dear brother. I really do miss you. Just got your number and decided to send you this text wishing you only happiness. Abiola +ham That means get the door +ham Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply.. +ham Hmmm ... I thought we said 2 hours slave, not 3 ... You are late ... How should I punish you ? +ham Beerage? +spam You have an important customer service announcement from PREMIER. Call FREEPHONE 0800 542 0578 now! +ham Dont think so. It turns off like randomlly within 5min of opening +ham She was supposed to be but couldn't make it, she's still in town though +ham It does it on its own. Most of the time it fixes my spelling. But sometimes it gets a completely diff word. Go figure +spam Ever thought about living a good life with a perfect partner? Just txt back NAME and AGE to join the mobile community. (100p/SMS) +spam 5 Free Top Polyphonic Tones call 087018728737, National Rate. Get a toppoly tune sent every week, just text SUBPOLY to 81618, £3 per pole. UnSub 08718727870. +ham Gud mrng dear hav a nice day +ham This is hoping you enjoyed your game yesterday. Sorry i've not been in touch but pls know that you are fondly bein thot off. Have a great week. Abiola +ham All e best 4 ur driving tmr :-) +ham Y?WHERE U AT DOGBREATH? ITS JUST SOUNDING LIKE JAN C THAT’S AL!!!!!!!!! +ham Omg I want to scream. I weighed myself and I lost more weight! Woohoo! +ham There generally isn't one. It's an uncountable noun - u in the dictionary. pieces of research? +ham it's really getting me down just hanging around. +spam Orange customer, you may now claim your FREE CAMERA PHONE upgrade for your loyalty. Call now on 0207 153 9996. Offer ends 14thMarch. T&C's apply. Opt-out availa +ham "Petey boy whereare you me and all your friendsare in theKingshead come down if you canlove Nic" +ham Ok i msg u b4 i leave my house. +ham "Gimme a few" was <#> minutes ago +spam Last Chance! Claim ur £150 worth of discount vouchers today! Text SHOP to 85023 now! SavaMob, offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Sub. 16 +ham Appt is at <TIME> am. Not my fault u don't listen. I told u twice +spam FREE for 1st week! No1 Nokia tone 4 ur mobile every week just txt NOKIA to 8077 Get txting and tell ur mates. www.getzed.co.uk POBox 36504 W45WQ 16+ norm150p/tone +spam You have won a guaranteed £200 award or even £1000 cashto claim UR award call free on 08000407165 (18+) 2 stop getstop on 88222 PHP. RG21 4JX +ham K I'll be there before 4. +ham I dled 3d its very imp +ham sure, but make sure he knows we ain't smokin yet +ham Boooo you always work. Just quit. +ham I am taking half day leave bec i am not well +ham Ugh I don't wanna get out of bed. It's so warm. +ham S:)s.nervous <#> :) +ham So there's a ring that comes with the guys costumes. It's there so they can gift their future yowifes. Hint hint +spam Congratulations ur awarded either £500 of CD gift vouchers & Free entry 2 our £100 weekly draw txt MUSIC to 87066 TnCs www.Ldew.com1win150ppmx3age16 +ham I borrow ur bag ok. +spam U were outbid by simonwatson5120 on the Shinco DVD Plyr. 2 bid again, visit sms. ac/smsrewards 2 end bid notifications, reply END OUT +ham Where's my boytoy? I miss you ... What happened? +ham He has lots of used ones babe, but the model doesn't help. Youi have to bring it over and he'll match it up +ham Also are you bringing galileo or dobby +ham Then why you not responding +ham "BOO BABE! U ENJOYIN YOURJOB? U SEEMED 2 B GETTIN ON WELL HUNNY!HOPE URE OK?TAKE CARE & I’LLSPEAK 2U SOONLOTS OF LOVEME XXXX." +ham Good afternoon starshine! How's my boytoy? Does he crave me yet? Ache to fuck me ? *sips cappuccino* I miss you babe *teasing kiss* +ham On the road so cant txt +spam SMSSERVICES. for yourinclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE +spam 25p 4 alfie Moon's Children in need song on ur mob. Tell ur m8s. Txt Tone charity to 8007 for Nokias or Poly charity for polys: zed 08701417012 profit 2 charity. +ham Have a good evening! Ttyl +ham Hmm .. Bits and pieces lol ... *sighs* ... +ham Hahaha..use your brain dear +ham Hey. You got any mail? +ham Sorry light turned green, I meant another friend wanted <#> worth but he may not be around +ham Thanks for yesterday sir. You have been wonderful. Hope you enjoyed the burial. MojiBiola +spam U have a secret admirer. REVEAL who thinks U R So special. Call 09065174042. To opt out Reply REVEAL STOP. 1.50 per msg recd. Cust care 07821230901 +ham Hi mate its RV did u hav a nice hol just a message 3 say hello coz haven’t sent u 1 in ages started driving so stay off roads!RVx +spam Dear Voucher Holder, To claim this weeks offer, at you PC please go to http://www.e-tlp.co.uk/expressoffer Ts&Cs apply. To stop texts, txt STOP to 80062 +ham Thank you so much. When we skyped wit kz and sura, we didnt get the pleasure of your company. Hope you are good. We've given you ultimatum oh! We are countin down to aburo. Enjoy! This is the message i sent days ago +ham Surely result will offer:) +ham Good Morning my Dear........... Have a great & successful day. +spam Do you want 750 anytime any network mins 150 text and a NEW VIDEO phone for only five pounds per week call 08002888812 or reply for delivery tomorrow +ham Sir, I have been late in paying rent for the past few months and had to pay a $ <#> charge. I felt it would be inconsiderate of me to nag about something you give at great cost to yourself and that's why i didnt speak up. I however am in a recession and wont be able to pay the charge this month hence my askin well ahead of month's end. Can you please help. Thanks +spam We tried to contact you re our offer of New Video Phone 750 anytime any network mins HALF PRICE Rental camcorder call 08000930705 or reply for delivery Wed +spam Last chance 2 claim ur £150 worth of discount vouchers-Text YES to 85023 now!SavaMob-member offers mobile T Cs 08717898035. £3.00 Sub. 16 . Remove txt X or STOP +ham I luv u soo much u don’t understand how special u r 2 me ring u 2morrow luv u xxx +ham Pls send me a comprehensive mail about who i'm paying, when and how much. +ham Our Prashanthettan's mother passed away last night. pray for her and family. +spam Urgent! call 09066350750 from your landline. Your complimentary 4* Ibiza Holiday or 10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150 ppm 18+ +ham K.k:)when are you going? +ham Meanwhile in the shit suite: xavier decided to give us <#> seconds of warning that samantha was coming over and is playing jay's guitar to impress her or some shit. Also I don't think doug realizes I don't live here anymore +ham My stomach has been thru so much trauma I swear I just can't eat. I better lose weight. +ham I am in office:)whats the matter..msg me now.i will call you at break:). +ham Yeah there's barely enough room for the two of us, x has too many fucking shoes. Sorry man, see you later +spam Today's Offer! Claim ur £150 worth of discount vouchers! Text YES to 85023 now! SavaMob, member offers mobile! T Cs 08717898035. £3.00 Sub. 16 . Unsub reply X +ham U reach orchard already? U wan 2 go buy tickets first? +ham I am real, baby! I want to bring out your inner tigress... +ham No da if you run that it activate the full version da. +ham "AH POOR BABY!HOPE URFEELING BETTERSN LUV! PROBTHAT OVERDOSE OF WORK HEY GO CAREFUL SPK 2 U SN LOTS OF LOVEJEN XXX." +ham Stop the story. I've told him i've returned it and he's saying i should not re order it. +spam Talk sexy!! Make new friends or fall in love in the worlds most discreet text dating service. Just text VIP to 83110 and see who you could meet. +ham Going to take your babe out ? +ham Hai ana tomarrow am coming on morning. <DECIMAL> ill be there in sathy then we ll go to RTO office. Reply me after came to home. +ham Spoons it is then okay? +ham Did he just say somebody is named tampa +ham In work now. Going have in few min. +ham Your brother is a genius +ham Sorry, I guess whenever I can get a hold of my connections, maybe an hour or two? I'll text you +ham Did u find out what time the bus is at coz i need to sort some stuff out. +ham Dude ive been seeing a lotta corvettes lately +spam Congratulations ur awarded either a yrs supply of CDs from Virgin Records or a Mystery Gift GUARANTEED Call 09061104283 Ts&Cs www.smsco.net £1.50pm approx 3mins +ham Same here, but I consider walls and bunkers and shit important just because I never play on peaceful but I guess your place is high enough that it don't matter +spam PRIVATE! Your 2003 Account Statement for 07808 XXXXXX shows 800 un-redeemed S. I. M. points. Call 08719899217 Identifier Code: 41685 Expires 07/11/04 +spam Hello. We need some posh birds and chaps to user trial prods for champneys. Can i put you down? I need your address and dob asap. Ta r +spam What do U want for Xmas? How about 100 free text messages & a new video phone with half price line rental? Call free now on 0800 0721072 to find out more! +ham Well am officially in a philosophical hole, so if u wanna call am at home ready to be saved! +ham Its going good...no problem..but still need little experience to understand american customer voice... +ham I'll text you when I drop x off +ham Ugh its been a long day. I'm exhausted. Just want to cuddle up and take a nap +ham Talk With Yourself Atleast Once In A Day...!!! Otherwise You Will Miss Your Best FRIEND In This WORLD...!!! -Shakespeare- SHESIL <#> +spam Shop till u Drop, IS IT YOU, either 10K, 5K, £500 Cash or £100 Travel voucher, Call now, 09064011000. NTT PO Box CR01327BT fixedline Cost 150ppm mobile vary +ham Are you in castor? You need to see something +spam Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country Liverpool played in mid week? Txt ansr to 82277. £1.50 SP:Tyrone +spam U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094565 +spam U have a Secret Admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09065171142-stopsms-08 +spam Reminder: You have not downloaded the content you have already paid for. Goto http://doit. mymoby. tv/ to collect your content. +ham see, i knew giving you a break a few times woul lead to you always wanting to miss curfew. I was gonna gibe you 'til one, but a MIDNIGHT movie is not gonna get out til after 2. You need to come home. You need to getsleep and, if anything, you need to b studdying ear training. +ham I love to give massages. I use lots of baby oil... What is your fave position? +ham Dude we should go sup again +ham Yoyyooo u know how to change permissions for a drive in mac. My usb flash drive +ham Gibbs unsold.mike hussey +ham I like to talk pa but am not able to. I dont know y. +ham Y dun cut too short leh. U dun like ah? She failed. She's quite sad. +ham You unbelievable faglord +ham Wife.how she knew the time of murder exactly +ham Why do you ask princess? +ham I am great princess! What are you thinking about me? :) +ham Nutter. Cutter. Ctter. Cttergg. Cttargg. Ctargg. Ctagg. ie you +ham It's ok i noe u're busy but i'm really too bored so i msg u. I oso dunno wat colour she choose 4 me one. +ham Doesn't g have class early tomorrow and thus shouldn't be trying to smoke at <#> +ham Superb Thought- "Be grateful that u dont have everything u want. That means u still have an opportunity to be happier tomorrow than u are today.":-) +ham Hope you are having a good week. Just checking in +ham I'm used to it. I just hope my agents don't drop me since i've only booked a few things this year. This whole me in boston, them in nyc was an experiment. +ham Thursday night? Yeah, sure thing, we'll work it out then +spam Your free ringtone is waiting to be collected. Simply text the password "MIX" to 85069 to verify. Get Usher and Britney. FML, PO Box 5249, MK17 92H. 450Ppw 16 +ham Probably money worries. Things are coming due and i have several outstanding invoices for work i did two and three months ago. +ham How is it possible to teach you. And where. +ham I wonder if your phone battery went dead ? I had to tell you, I love you babe +ham Lovely smell on this bus and it ain't tobacco... +ham We're all getting worried over here, derek and taylor have already assumed the worst +ham Hey what's up charles sorry about the late reply. +spam all the lastest from Stereophonics, Marley, Dizzee Racal, Libertines and The Strokes! Win Nookii games with Flirt!! Click TheMob WAP Bookmark or text WAP to 82468 +ham I.ll give her once i have it. Plus she said grinule greet you whenever we speak +ham WHITE FUDGE OREOS ARE IN STORES +spam January Male Sale! Hot Gay chat now cheaper, call 08709222922. National rate from 1.5p/min cheap to 7.8p/min peak! To stop texts call 08712460324 (10p/min) +ham My love ! How come it took you so long to leave for Zaher's? I got your words on ym and was happy to see them but was sad you had left. I miss you +ham I am sorry it hurt you. +ham Can't. I feel nauseous. I'm so pissed. I didn't eat any sweets all week cause today I was planning to pig out. I was dieting all week. And now I'm not hungry :/ +ham Ok lor but not too early. Me still having project meeting now. +ham Call me da, i am waiting for your call. +ham I could ask carlos if we could get more if anybody else can chip in +ham Was actually about to send you a reminder today. Have a wonderful weekend +ham When people see my msgs, They think Iam addicted to msging... They are wrong, Bcoz They don\'t know that Iam addicted to my sweet Friends..!! BSLVYL +ham Hey you gave them your photo when you registered for driving ah? Tmr wanna meet at yck? +ham Dont talk to him ever ok its my word. +ham When u wana see it then +ham On ma way to school. Can you pls send me ashley's number +ham It shall be fine. I have avalarr now. Will hollalater +ham She went to attend another two rounds today..but still did't reach home.. +ham Actually i deleted my old website..now i m blogging at magicalsongs.blogspot.com +ham K, wait chikku..il send aftr <#> mins +ham But I'm on a diet. And I ate 1 too many slices of pizza yesterday. Ugh I'm ALWAYS on a diet. +ham K:)i will give my kvb acc details:) +ham Oh all have to come ah? +spam money!!! you r a lucky winner ! 2 claim your prize text money 2 88600 over £1million to give away ! ppt150x3+normal text rate box403 w1t1jy +ham I'm really sorry i won't b able 2 do this friday.hope u can find an alternative.hope yr term's going ok:-) +ham Congratulations ore mo owo re wa. Enjoy it and i wish you many happy moments to and fro wherever you go +ham So do you have samus shoulders yet +ham What time you think you'll have it? Need to know when I should be near campus +spam Dear Matthew please call 09063440451 from a landline, your complimentary 4*Lux Tenerife holiday or £1000 CASH await collection. ppm150 SAE T&Cs Box334 SK38XH. +ham Then dun wear jeans lor... +ham Since when, which side, any fever, any vomitin. +ham K:)k.are you in college? +spam Urgent! call 09061749602 from Landline. Your complimentary 4* Tenerife Holiday or £10,000 cash await collection SAE T&Cs BOX 528 HP20 1YF 150ppm 18+ +ham Better. Made up for Friday and stuffed myself like a pig yesterday. Now I feel bleh. But at least its not writhing pain kind of bleh. +ham No we sell it all so we'll have tons if coins. Then sell our coins to someone thru paypal. Voila! Money back in life pockets:) +ham Theyre doing it to lots of places. Only hospitals and medical places are safe. +spam How about getting in touch with folks waiting for company? Just txt back your NAME and AGE to opt in! Enjoy the community (150p/SMS) +ham And also I've sorta blown him off a couple times recently so id rather not text him out of the blue looking for weed +ham I sent my scores to sophas and i had to do secondary application for a few schools. I think if you are thinking of applying, do a research on cost also. Contact joke ogunrinde, her school is one me the less expensive ones +ham I cant wait to see you! How were the photos were useful? :) +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1 +ham Hey i booked the kb on sat already... what other lessons are we going for ah? Keep your sat night free we need to meet and confirm our lodging +ham Chk in ur belovd ms dict +ham Is that what time you want me to come? +ham Awesome, lemme know whenever you're around +ham Shb b ok lor... Thanx... +ham Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOOD NIGHT +ham Also remember to get dobby's bowl from your car +spam Filthy stories and GIRLS waiting for your +ham Sorry i now then c ur msg... Yar lor so poor thing... But only 4 one night... Tmr u'll have a brand new room 2 sleep in... +ham Love isn't a decision, it's a feeling. If we could decide who to love, then, life would be much simpler, but then less magical +ham Welp apparently he retired +ham My sort code is and acc no is . The bank is natwest. Can you reply to confirm i've sent this to the right person! +ham Where @ +ham U sure u can't take any sick time? +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001808 from land line. Claim M95. Valid12hrs only +ham Watching cartoon, listening music & at eve had to go temple & church.. What about u? +ham Yo chad which gymnastics class do you wanna take? The site says Christians class is full.. +ham Are you this much buzy +ham Or better still can you catch her and let ask her if she can sell <#> for me. +ham I am not sure about night menu. . . I know only about noon menu +ham What do u want when i come back?.a beautiful necklace as a token of my heart for you.thats what i will give but ONLY to MY WIFE OF MY LIKING.BE THAT AND SEE..NO ONE can give you that.dont call me.i will wait till i come. +ham Are you willing to go for aptitude class. +ham It wont b until 2.15 as trying 2 sort house out, is that ok? +ham Yar lor he wan 2 go c horse racing today mah, so eat earlier lor. I ate chicken rice. U? +ham Haha awesome, omw back now then +ham Yup i thk so until e shop closes lor. +ham what is your account number? +ham Eh u send wrongly lar... +ham Hey no I ad a crap nite was borin without ya 2 boggy with me u boring biatch! Thanx but u wait til nxt time il ave ya +ham Ok i shall talk to him +ham Dont hesitate. You know this is the second time she has had weakness like that. So keep i notebook of what she eat and did the day before or if anything changed the day before so that we can be sure its nothing +ham Hey you can pay. With salary de. Only <#> . +ham Another month. I need chocolate weed and alcohol. +ham If he started searching he will get job in few days.he have great potential and talent. +ham Reckon need to be in town by eightish to walk from * carpark. +spam Congrats! 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid your mates, play java games, Dload polyPH music, noline rentl. +ham LOOK AT THE FUCKIN TIME. WHAT THE FUCK YOU THINK IS UP +ham Yo guess what I just dropped +ham Carlos says he'll be at mu in <#> minutes +ham I'm in office now . I will call you <#> min:) +ham Geeee ... I miss you already, you know ? Your all I can think about. Fuck, I can't wait till next year when we will be together ... *loving kiss* +ham Yun ah.the ubi one say if ü wan call by tomorrow.call 67441233 look for irene.ere only got bus8,22,65,61,66,382. Ubi cres,ubi tech park.6ph for 1st 5wkg days.èn +ham Ugh. Gotta drive back to sd from la. My butt is sore. +ham 26th OF JULY +ham Hi im having the most relaxing time ever! we have to get up at 7am every day! was the party good the other night? I get home tomorrow at 5ish. +ham Up to ü... Ü wan come then come lor... But i din c any stripes skirt... +ham The Xmas story is peace.. The Xmas msg is love.. The Xmas miracle is jesus.. Hav a blessed month ahead & wish U Merry Xmas... +ham I can't, I don't have her number! +ham Change again... It's e one next to escalator... +ham Yetunde i'm in class can you not run water on it to make it ok. Pls now. +ham Not a lot has happened here. Feels very quiet. Beth is at her aunts and charlie is working lots. Just me and helen in at the mo. How have you been? +ham Then ü wait 4 me at bus stop aft ur lect lar. If i dun c ü then i go get my car then come back n pick ü. +ham Aight will do, thanks again for comin out +ham No..but heard abt tat.. +spam Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize! +ham Yes..he is really great..bhaji told kallis best cricketer after sachin in world:).very tough to get out. +ham <#> am I think? Should say on syllabus +ham Umma. Did she say anything +ham Give me a sec to think think about it +spam Panasonic & BluetoothHdset FREE. Nokia FREE. Motorola FREE & DoubleMins & DoubleTxt on Orange contract. Call MobileUpd8 on 08000839402 or call 2optout +ham I don't quite know what to do. I still can't get hold of anyone. I cud pick you up bout 7.30pm and we can see if they're in the pub? +ham Poyyarikatur,kolathupalayam,unjalur post,erode dis, <#> . +ham Dear Hero,i am leaving to qatar tonite for an apt opportunity.pls do keep in touch at <EMAIL> ,kerala +ham Lol I would but my mom would have a fit and tell the whole family how crazy and terrible I am +ham I just got home babe, are you still awake ? +ham I dunno they close oredi not... Ü v ma fan... +ham Just buy a pizza. Meat lovers or supreme. U get to pick. +ham Ya, told..she was asking wats matter? +ham Dear,regret i cudnt pick call.drove down frm ctla now at cochin home.left mobile in car..ente style ishtamayoo?happy bakrid! +spam FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+ +ham Shall i send that exe to your mail id. +ham Nope watching tv at home... Not going out. V bored... +ham Don know..wait i will check it. +ham Good afternoon on this glorious anniversary day, my sweet J !! I hope this finds you happy and content, my Prey. I think of you and send a teasing kiss from across the sea coaxing images of fond souveniers ... You Cougar-Pen +spam Guess what! Somebody you know secretly fancies you! Wanna find out who it is? Give us a call on 09065394514 From Landline DATEBox1282EssexCM61XN 150p/min 18 +ham We still on for tonight? +ham May i call You later Pls +ham Hasn't that been the pattern recently crap weekends? +ham I have a sore throat. It's scratches when I talk +ham Yes da. Any plm at ur office +ham Are you not around or just still asleep? :V +ham Lol you forgot it eh ? Yes, I'll bring it in babe +ham Its good, we'll find a way +ham Can not use foreign stamps in this country. Good lecture . +ham Yup bathe liao... +ham HAPPY NEW YEAR MY NO.1 MAN +ham OH MR SHEFFIELD! You wanna play THAT game, okay. You're the boss and I'm the nanny. You give me a raise and I'll give YOU one!! +ham ZOE IT JUST HIT ME 2 IM FUCKING SHITIN MYSELF IL DEFO TRY MY HARDEST 2 CUM 2MOROW LUV U MILLIONS LEKDOG +ham Hello baby, did you get back to your mom's ? Are you setting up the computer now ? Filling your belly ? How goes it loverboy ? I miss you already ... *sighs* +ham No my blankets are sufficient, thx +ham naughty little thought: 'its better to flirt, flirt n flirt, rather than loving someone n gettin hurt, hurt n hurt...:-) Gud nyt +ham Edison has rightly said, "A fool can ask more questions than a wise man can answer" Now you know why all of us are speechless during ViVa.. GM,GN,GE,GNT:-) +ham They just talking thats it de. They wont any other. +ham Today am going to college so am not able to atten the class. +ham I'm in class. Will holla later +ham Easy ah?sen got selected means its good.. +ham Mmm thats better now i got a roast down me! i’d b better if i had a few drinks down me 2! Good indian? +spam We know someone who you know that fancies you. Call 09058097218 to find out who. POBox 6, LS15HB 150p +ham Come round, it's . +ham Do 1 thing! Change that sentence into: "Because i want 2 concentrate in my educational career im leaving here.." +spam 1000's flirting NOW! Txt GIRL or BLOKE & ur NAME & AGE, eg GIRL ZOE 18 to 8007 to join and get chatting! +ham I walked an hour 2 c u! doesn’t that show I care y wont u believe im serious? +spam 18 days to Euro2004 kickoff! U will be kept informed of all the latest news and results daily. Unsubscribe send GET EURO STOP to 83222. +ham Are you available for soiree on June 3rd? +ham Do u noe wat time e place dat sells 4d closes? +ham I got another job! The one at the hospital doing data analysis or something, starts on monday! Not sure when my thesis will got finished +ham Jay's getting really impatient and belligerent +ham HIYA COMIN 2 BRISTOL 1 ST WEEK IN APRIL. LES GOT OFF + RUDI ON NEW YRS EVE BUT I WAS SNORING.THEY WERE DRUNK! U BAK AT COLLEGE YET? MY WORK SENDS INK 2 BATH. +ham I'm at work. Please call +ham Then u drive lor. +ham Ard 515 like dat. Y? +ham Tell me they're female :V how're you throwing in? We're deciding what all to get now +spam EASTENDERS TV Quiz. What FLOWER does DOT compare herself to? D= VIOLET E= TULIP F= LILY txt D E or F to 84025 NOW 4 chance 2 WIN £100 Cash WKENT/150P16+ +ham I'm working technical support :)voice process.networking field. +ham I might come to kerala for 2 days.so you can be prepared to take a leave once i finalise .dont plan any travel during my visit.need to finish urgent works. +ham Ok. Not sure what time tho as not sure if can get to library before class. Will try. See you at some point! Have good eve. +spam We have new local dates in your area - Lots of new people registered in YOUR AREA. Reply DATE to start now! 18 only www.flirtparty.us REPLYS150 +ham That's fine, I'll bitch at you about it later then +ham No my mum went 2 dentist. +ham Once free call me sir. I am waiting for you. +ham Meeting u is my work. . . Tel me when shall i do my work tomorrow +spam Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058091854 NOW all will be revealed. PO BOX385 M6 6WU +ham Jus finish bathing... +ham alright, I'll make sure the car is back tonight +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050003091 from land line. Claim C52. Valid12hrs only +spam Dear U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 +ham Lul im gettin some juicy gossip at the hospital. Two nurses are talking about how fat they are gettin. And one thinks shes obese. Oyea. +ham Aight ill get on fb in a couple minutes +ham Oi. Ami parchi na re. Kicchu kaaj korte iccha korche na. Phone ta tul na. Plz. Plz. +ham Where can download clear movies. Dvd copies. +ham Yep, by the pretty sculpture +ham Convey my regards to him +ham Me too watching surya movie only. . .after 6 pm vijay movie POKKIRI +ham You tell what happen dont behave like this to me. Ok no need to say +ham Can u get pic msgs to your phone? +ham Send to someone else :-) +ham Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!! +ham For me the love should start with attraction.i should feel that I need her every time around me.she should be the first thing which comes in my thoughts.I would start the day and end it with her.she should be there every time I dream.love will be then when my every breath has her name.my life should happen around her.my life will be named to her.I would cry for her.will give all my happiness and take all her sorrows.I will be ready to fight with anyone for her.I will be in love when I will be doing the craziest things for her.love will be when I don't have to proove anyone that my girl is the most beautiful lady on the whole planet.I will always be singing praises for her.love will be when I start up making chicken curry and end up makiing sambar.life will be the most beautiful then.will get every morning and thank god for the day because she is with me.I would like to say a lot..will tell later.. +ham FR'NDSHIP is like a needle of a clock. Though V r in d same clock, V r nt able 2 met. Evn if V meet,itz only 4few seconds. Bt V alwys stay conected. Gud 9t;-) +ham I don't think he has spatula hands! +ham You can never do NOTHING +spam You are awarded a SiPix Digital Camera! call 09061221061 from landline. Delivery within 28days. T Cs Box177. M221BP. 2yr warranty. 150ppm. 16 . p p£3.99 +ham Goodmorning today i am late for <DECIMAL> min. +spam WIN URGENT! Your mobile number has been awarded with a £2000 prize GUARANTEED call 09061790121 from land line. claim 3030 valid 12hrs only 150ppm +ham Please da call me any mistake from my side sorry da. Pls da goto doctor. +ham Where r we meeting? +ham Well the weather in cali's great. But its complexities are great. You need a car to move freely, its taxes are outrageous. But all in all its a great place. The sad part is i missing home. +ham Now only i reached home. . . I am very tired now. . I will come tomorro +ham Ryder unsold.now gibbs. +spam Dear Subscriber ur draw 4 £100 gift voucher will b entered on receipt of a correct ans. When was Elvis Presleys Birthday? TXT answer to 80062 +ham Don't fret. I'll buy the ovulation test strips and send them to you. You wont get them til like march. Can you send me your postal address.u'll be alright.Okay. +ham NO GIFTS!! You trying to get me to throw myself off a cliff or something? +ham Been up to ne thing interesting. Did you have a good birthday? When are u wrking nxt? I started uni today. +ham You busy or can I come by at some point and figure out what we're doing tomorrow +ham Yeah go on then, bored and depressed sittin waitin for phone to ring... Hope the wind drops though, scary +ham Black shirt n blue jeans... I thk i c ü... +ham Aiyah sorry lor... I watch tv watch until i forgot 2 check my phone. +spam Message Important information for O2 user. Today is your lucky day! 2 find out why log onto http://www.urawinner.com there is a fantastic surprise awaiting you +ham on hen night. Going with a swing +ham Good afternoon, my love. How goes your day ? What are you up to ? I woke early and am online waiting for you ... Hmmm ... Italian boy is online I see . *grins* +ham From someone not to smoke when every time I've smoked in the last two weeks is because of you calling or texting me that you wanted to smoke +ham No you'll just get a headache trying to figure it out. U can trust me to do the math. I promise. O:-) +ham S s..first time..dhoni rocks... +ham Ok ill tell the company +ham Awesome, think we can get an 8th at usf some time tonight? +ham So that means you still think of teju +ham No I'm good for the movie, is it ok if I leave in an hourish? +ham No no:)this is kallis home ground.amla home town is durban:) +ham So lets make it saturday or monday as per convenience. +ham Hey... What time is your driving on fri? We go for evaluation on fri? +spam 449050000301 You have won a £2,000 price! To claim, call 09050000301. +ham I'm going 4 lunch now wif my family then aft dat i go str 2 orchard lor. +spam Bored of speed dating? Try SPEEDCHAT, txt SPEEDCHAT to 80155, if you don't like em txt SWAP and get a new chatter! Chat80155 POBox36504W45WQ 150p/msg rcd 16 +ham Cancel cheyyamo?and get some money back? +spam Do you want 750 anytime any network mins 150 text and a NEW video phone for only five pounds per week call 08000776320 now or reply for delivery Tomorrow +ham Ok.ok ok..then..whats ur todays plan +ham Good morning princess! How are you? +ham Aiyar sorry lor forgot 2 tell u... +spam For taking part in our mobile survey yesterday! You can now have 500 texts 2 use however you wish. 2 get txts just send TXT to 80160 T&C www.txt43.com 1.50p +ham Not tonight mate. Catching up on some sleep. This is my new number by the way. +ham Height of "Oh shit....!!" situation: A guy throws a luv letter on a gal but falls on her brothers head whos a gay,.;-):-D +spam Ur HMV Quiz cash-balance is currently £500 - to maximize ur cash-in now send HMV1 to 86688 only 150p/msg +ham So check your errors and if you had difficulties, do correction. +ham Howz pain?hope u r fine.. +ham Sorry, I'll call later +ham Good morning princess! How are you? +ham As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. +ham U wake up already? Thanx 4 e tau sar piah it's quite nice. +ham K do I need a login or anything +spam Dont forget you can place as many FREE Requests with 1stchoice.co.uk as you wish. For more Information call 08707808226. +ham LOL ... No just was busy +ham What * u wearing? +ham Message:some text missing* Sender:Name Missing* *Number Missing *Sent:Date missing *Missing U a lot thats y everything is missing sent via fullonsms.com +ham Oh:)as usual vijay film or its different? +spam I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over. +ham Have you had a good day? Mine was really busy are you up to much tomorrow night? +ham And is there a way you can send shade's stuff to her. And she has been wonderful too. +ham Really... I tot ur paper ended long ago... But wat u copied jus now got use? U happy lar... I still haf 2 study :-( +spam Thank you, winner notified by sms. Good Luck! No future marketing reply STOP to 84122 customer services 08450542832 +ham Babe ? I lost you ... :-( +ham Ok... Help me ask if she's working tmr a not? +ham I'm not driving... Raining! Then i'll get caught at e mrt station lor. +ham Not a drop in the tank +ham (That said can you text him one more time?) +ham Sorry, I'll call later +ham Ok i go change also... +spam 1000's of girls many local 2 u who r virgins 2 this & r ready 2 4fil ur every sexual need. Can u 4fil theirs? text CUTE to 69911(£1.50p. m) +ham Did u find a sitter for kaitlyn? I was sick and slept all day yesterday. +ham Sorry man, accidentally left my phone on silent last night and didn't check it til I got up +ham Hey.. Something came up last min.. Think i wun be signing up tmr.. Hee +ham He's an adult and would learn from the experience. There's no real danger. I just dont like peeps using drugs they dont need. But no comment +ham Hey! There's veggie pizza... :/ +ham Yun buying... But school got offer 2000 plus only... +ham You sure your neighbors didnt pick it up +ham K. I will sent it again +spam Free entry in 2 a wkly comp to win FA Cup final tkts 21st May 2005. Text FA to 87121 to receive entry question(std txt rate)T&C's apply 08452810075over18's +ham New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them & say, I'm always correct.! +ham Well. Im computerless. Time to make some oreo truffles +ham Haha yeah I see that now, be there in a sec +ham I am not having her number sir +ham Lol now I'm after that hot air balloon! +ham Ok . . now i am in bus. . If i come soon i will come otherwise tomorrow +ham Msgs r not time pass.They silently say that I am thinking of U right now and also making U think of me at least 4 a moment. Gd nt.swt drms @Shesil +ham Yeah, we can probably swing by once my roommate finishes up with his girl +spam Got what it takes 2 take part in the WRC Rally in Oz? U can with Lucozade Energy! Text RALLY LE to 61200 (25p), see packs or lucozade.co.uk/wrc & itcould be u! +ham Happy new years melody! +ham Ü dun need to pick ur gf? +ham Yay! You better not have told that to 5 other girls either. +ham Horrible u eat macs eat until u forgot abt me already rite... U take so long 2 reply. I thk it's more toot than b4 so b prepared. Now wat shall i eat? +ham Did he say how fantastic I am by any chance, or anything need a bigger life lift as losing the will 2 live, do you think I would be the first person 2 die from N V Q? +ham Just nw i came to hme da.. +ham I'm outside islands, head towards hard rock and you'll run into me +ham To day class is there are no class. +ham I'm in chennai velachery:) +ham You flippin your shit yet? +ham K give me a sec, breaking a <#> at cstore +ham Am i that much bad to avoid like this? +ham Yo, you around? Just got my car back +ham Annoying isn't it. +ham Goodmorning, Today i am late for <#> min. +ham There's no point hangin on to mr not right if he's not makin u happy +ham All will come alive.better correct any good looking figure there itself.. +ham In that case I guess I'll see you at campus lodge +ham We're done... +ham Come to my home for one last time i wont do anything. Trust me. +ham I was up all night too worrying about this appt. It's a shame we missed a girls night out with quizzes popcorn and you doing my hair. +spam Sex up ur mobile with a FREE sexy pic of Jordan! Just text BABE to 88600. Then every wk get a sexy celeb! PocketBabe.co.uk 4 more pics. 16 £3/wk 087016248 +ham Ok... C ya... +spam You have 1 new voicemail. Please call 08719181503 +ham What he said is not the matter. My mind saying some other matter is there. +ham He also knows about lunch menu only da. . I know +ham Al he does is moan at me if n e thin goes wrong its my fault&al de arguments r my fault&fed up of him of himso y bother? Hav 2go, thanx.xx +ham NEFT Transaction with reference number <#> for Rs. <DECIMAL> has been credited to the beneficiary account on <#> at <TIME> : <#> +ham Otherwise had part time job na-tuition.. +ham I know she called me +ham Me also da, i feel yesterday night wait til 2day night dear. +ham Thanks for understanding. I've been trying to tell sura that. +spam WIN a year supply of CDs 4 a store of ur choice worth £500 & enter our £100 Weekly draw txt MUSIC to 87066 Ts&Cs www.Ldew.com.subs16+1win150ppmx3 +ham The whole car appreciated the last two! Dad and are having a map reading semi argument but apart from that things are going ok. P. +spam As a SIM subscriber, you are selected to receive a Bonus! Get it delivered to your door, Txt the word OK to No: 88600 to claim. 150p/msg, EXP. 30Apr +ham I need you to be in my strong arms... +ham Also maaaan are you missing out +ham His bday real is in april . +ham Guessin you ain't gonna be here before 9? +ham Ok then i will come to ur home after half an hour +ham Yo, the game almost over? Want to go to walmart soon +ham Yeah, probably but not sure. Ilol let u know, but personally I wuldnt bother, then again if ur goin to then I mite as well!! +ham I'll text now! All creepy like so he won't think that we forgot +ham that would be good … I'll phone you tomo lunchtime, shall I, to organise something? +spam You have 1 new voicemail. Please call 08719181513. +ham Damn, can you make it tonight or do you want to just wait til tomorrow +ham K..k..i'm also fine:)when will you complete the course? +ham True. It is passable. And if you get a high score and apply for phd, you get 5years of salary. So it makes life easier. +spam No. 1 Nokia Tone 4 ur mob every week! Just txt NOK to 87021. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info +ham Prakesh is there know. +ham Teach me apps da. When you come to college. +ham Rofl betta invest in some anti aging products +spam You are a winner U have been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810810 +ham sir, you will receive the account no another 1hr time. Sorry for the delay. +spam Reply with your name and address and YOU WILL RECEIVE BY POST a weeks completely free accommodation at various global locations www.phb1.com ph:08700435505150p +ham So ü'll be submitting da project tmr rite? +spam FREE entry into our £250 weekly comp just send the word ENTER to 84128 NOW. 18 T&C www.textcomp.com cust care 08712405020. +ham Jus ans me lar. U'll noe later. +ham I want to send something that can sell fast. <#> k is not easy money. +ham have got * few things to do. may be in * pub later. +ham 1's finish meeting call me. +ham Lol ok. I'll snatch her purse too. +ham "Hello-/@drivby-:0quit edrunk sorry iff pthis makes no senrd-dnot no how ^ dancce 2 drum n basq!ihave fun 2nhite x ros xxxxxxx" +ham Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply.. +ham How much are we getting? +ham Is ur paper in e morn or aft tmr? +ham Dear relieved of westonzoyland, all going to plan this end too! +ham Hope you are having a great new semester. Do wish you the very best. You are made for greatness. +ham Oh yes I can speak txt 2 u no! Hmm. Did u get email? +ham I want to show you the world, princess :) how about europe? +ham Nobody can decide where to eat and dad wants Chinese +ham No shoot me. I'm in the docs waiting room. :/ +ham Now? I'm going out 4 dinner soon.. +ham Hello which the site to download songs its urgent pls +ham I do know what u mean, is the king of not havin credit! I'm goin2bed now. Night night sweet! Only1more sleep! +ham Horrible gal. Me in sch doing some stuff. How come u got mc? +ham HI HUN! IM NOT COMIN 2NITE-TELL EVERY1 IM SORRY 4 ME, HOPE U AVA GOODTIME!OLI RANG MELNITE IFINK IT MITE B SORTED,BUT IL EXPLAIN EVERYTHIN ON MON.L8RS.x +ham I call you later, don't have network. If urgnt, sms me. +ham Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear +spam Please CALL 08712402779 immediately as there is an urgent message waiting for you +ham Yeah like if it goes like it did with my friends imma flip my shit in like half an hour +ham Mum say we wan to go then go... Then she can shun bian watch da glass exhibition... +ham What your plan for pongal? +ham Just wait till end of march when el nino gets himself. Oh. +ham Not yet chikku..going to room nw, i'm in bus.. +ham Am also doing in cbe only. But have to pay. +ham Honey boo I'm missing u. +ham We have sent JD for Customer Service cum Accounts Executive to ur mail id, For details contact us +ham Yo, I'm at my parents' gettin cash. Good news: we picked up a downstem +ham Thank you so much. When we skyped wit kz and sura, we didnt get the pleasure of your company. Hope you are good. We've given you ultimatum oh! We are countin down to aburo. Enjoy! +spam Hungry gay guys feeling hungry and up 4 it, now. Call 08718730555 just 10p/min. To stop texts call 08712460324 (10p/min) +ham Ok. No wahala. Just remember that a friend in need ... +ham I will see in half an hour +ham Im in inperialmusic listening2the weirdest track ever by”leafcutter john”-sounds like insects being molested&someone plumbing,remixed by evil men on acid! +ham "Hey sorry I didntgive ya a a bellearlier hunny,just been in bedbut mite go 2 thepub l8tr if uwana mt up?loads a luv Jenxxx." +ham SERIOUSLY. TELL HER THOSE EXACT WORDS RIGHT NOW. +spam Can U get 2 phone NOW? I wanna chat 2 set up meet Call me NOW on 09096102316 U can cum here 2moro Luv JANE xx Calls£1/minmoremobsEMSPOBox45PO139WA +ham Tee hee. Off to lecture, cheery bye bye. +ham Sorry chikku, my cell got some problem thts y i was nt able to reply u or msg u.. +ham If you still havent collected the dough pls let me know so i can go to the place i sent it to get the control number +ham Ok... +spam network operator. The service is free. For T & C's visit 80488.biz +ham Let me know how to contact you. I've you settled in a room. Lets know you are ok. +ham Wot u up 2 u weirdo? +ham Can do lor... +ham Dont put your phone on silent mode ok +ham Can i meet ü at 5.. As 4 where depends on where ü wan 2 in lor.. +ham Waiting 4 my tv show 2 start lor... U leh still busy doing ur report? +ham Oh ho. Is this the first time u use these type of words +ham Am I the only one who doesn't stalk profiles? +ham Ever green quote ever told by Jerry in cartoon "A Person Who Irritates u Always Is the one Who Loves u Vry Much But Fails to Express It...!..!! :-) :-) gud nyt +ham Yes i thought so. Thanks. +ham But if she.s drinkin i'm ok. +ham Just wondering, the others just took off +ham Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng +ham What do you do, my dog ? Must I always wait till the end of your day to have word from you ? Did you run out of time on your cell already? +ham Happy new year to u too! +ham Hey...Great deal...Farm tour 9am to 5pm $95/pax, $50 deposit by 16 May +ham Eat jap done oso aft ur lect wat... Ü got lect at 12 rite... +ham Hey babe! I saw you came online for a second and then you disappeared, what happened ? +ham Da my birthdate in certificate is in april but real date is today. But dont publish it. I shall give you a special treat if you keep the secret. Any way thanks for the wishes +ham Happy birthday... May all ur dreams come true... +ham Aiyah u did ok already lar. E nydc at wheellock? +ham TELL HER I SAID EAT SHIT. +ham Sure! I am driving but will reach my destination soon. +ham K so am I, how much for an 8th? Fifty? +ham Your daily text from me – a favour this time +ham Great to hear you are settling well. So what's happenin wit ola? +ham Those cocksuckers. If it makes you feel better ipads are worthless garbage novelty items and you should feel bad for even wanting one +ham I tot u reach liao. He said t-shirt. +ham FRAN I DECIDED 2 GO N E WAY IM COMPLETELY BROKE AN KNACKERED I GOT UP BOUT 3 C U 2MRW LOVE JANX P.S THIS IS MY DADS FONE, -NO CREDIT +ham I cant pick the phone right now. Pls send a message +ham Your right! I'll make the appointment right now. +ham Designation is software developer and may be she get chennai:) +spam Enjoy the jamster videosound gold club with your credits for 2 new videosounds+2 logos+musicnews! get more fun from jamster.co.uk! 16+only Help? call: 09701213186 +spam Get 3 Lions England tone, reply lionm 4 mono or lionp 4 poly. 4 more go 2 www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply +ham I jokin oni lar.. Ü busy then i wun disturb ü. +ham Ok, be careful ! Don't text and drive ! +ham I.ll always be there, even if its just in spirit. I.ll get a bb soon. Just trying to be sure i need it. +ham U r too much close to my heart. If u go away i will be shattered. Plz stay with me. +ham I love u 2 babe! R u sure everything is alrite. Is he being an idiot? Txt bak girlie +ham How abt making some of the pics bigger? +ham Got but got 2 colours lor. One colour is quite light n e other is darker lor. Actually i'm done she's styling my hair now. +ham Whenevr ur sad, Whenevr ur gray, Remembr im here 2 listn 2 watevr u wanna say, Jus walk wid me a little while,& I promise I'll bring back ur smile.:-) +ham Why nothing. Ok anyway give me treat +spam Win the newest “Harry Potter and the Order of the Phoenix (Book 5) reply HARRY, answer 5 questions - chance to be the first among readers! +ham Ok... +ham Correct. So how was work today +ham Just sent again. Do you scream and moan in bed, princess? +ham I wake up long ago already... Dunno, what other thing? +ham Oh just getting even with u.... u? +ham I thk 50 shd be ok he said plus minus 10.. Did ü leave a line in between paragraphs? +ham Can you call me plz. Your number shows out of coveragd area. I have urgnt call in vasai & have to reach before 4'o clock so call me plz +ham Yeah jay's sort of a fucking retard +ham Sorry, was in the bathroom, sup +spam Ur balance is now £500. Ur next question is: Who sang 'Uptown Girl' in the 80's ? 2 answer txt ur ANSWER to 83600. Good luck! +ham My exam is for february 4. Wish you a great day. +ham I dont know what to do to come out of this so only am ask questions like this dont mistake me. +ham Aight no rush, I'll ask jay +ham Good Morning plz call me sir +ham It's ok lar. U sleep early too... Nite... +ham Oh... Icic... K lor, den meet other day... +ham Oh ! A half hour is much longer in Syria than Canada, eh ? Wow you must get SO much more work done in a day than us with all that extra time ! *grins* +ham Sometimes we put walls around our hearts,not just to be safe from getting hurt.. But to find out who cares enough to break the walls & get closer.. GOODNOON:) +ham Sweet, we may or may not go to 4U to meet carlos so gauge patty's interest in that +ham Then she buying today? Ü no need to c meh... +ham Aight sorry I take ten years to shower. What's the plan? +ham Every monday..nxt week vl be completing.. +ham Might ax well im there. +ham Just chill for another 6hrs. If you could sleep the pain is not a surgical emergency so see how it unfolds. Okay +ham Yeah I'll try to scrounge something up +ham Crazy ar he's married. Ü like gd looking guys not me. My frens like say he's korean leona's fave but i dun thk he is. Aft some thinking mayb most prob i'll go. +ham Were somewhere on Fredericksburg +ham Que pases un buen tiempo or something like that +ham Is it ok if I stay the night here? Xavier has a sleeping bag and I'm getting tired +ham She doesnt need any test. +ham Nothing much, chillin at home. Any super bowl plan? +spam FREE2DAY sexy St George's Day pic of Jordan!Txt PIC to 89080 dont miss out, then every wk a saucy celeb!4 more pics c PocketBabe.co.uk 0870241182716 £3/wk +ham Bugis oso near wat... +ham Yo theres no class tmrw right? +ham Let Ur Heart Be Ur Compass Ur Mind Ur Map Ur Soul Ur Guide And U Will Never loose in world....gnun - Sent via WAY2SMS.COM +ham Goodnight, sleep well da please take care pa. Please. +ham Baaaaabe! I misss youuuuu ! Where are you ? I have to go and teach my class at 5 ... +ham Convey my regards to him +ham U ned to convince him tht its not possible witot hurting his feeling its the main +ham Good afternoon loverboy ! How goes you day ? Any luck come your way? I think of you, sweetie and send my love across the sea to make you smile and happy +ham If i start sending blackberry torch to nigeria will you find buyer for me?like 4a month. And tell dad not to buy bb from anyone oh. +ham <#> %of pple marry with their lovers... becz they hav gud undrstndng dat avoids problems. i sent dis 2 u, u wil get gud news on friday by d person you like. And tomorrow will be the best day of your life. Dont break this chain. If you break you will suffer. send this to <#> frnds in <#> mins whn u read... +ham Yo dude guess who just got arrested the other day +ham Shuhui say change 2 suntec steamboat? U noe where? Where r u now? +ham What does the dance river do? +ham Yetunde, i'm sorry but moji and i seem too busy to be able to go shopping. Can you just please find some other way to get what you wanted us to get. Please forgive me. You can reply free via yahoo messenger. +ham Hey i will be really pretty late... You want to go for the lesson first? I will join you. I'm only reaching tp mrt +spam HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870..k +ham Bbq this sat at mine from 6ish. Ur welcome 2 come +ham I don't know, same thing that's wrong everyso often, he panicks starts goin on bout not bein good enough … +ham Alright. I'm out--have a good night! +ham Did you try making another butt. +ham Hope you are feeling great. Pls fill me in. Abiola +ham I though we shd go out n have some fun so bar in town or something – sound ok? +ham 1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press <#> . 5)Gently remove Ur hand.. Its interesting..:) +spam Bears Pic Nick, and Tom, Pete and ... Dick. In fact, all types try gay chat with photo upload call 08718730666 (10p/min). 2 stop texts call 08712460324 +spam 500 New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today!From ONLY £1 www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18 TXTAUCTION +ham We're finally ready fyi +ham Auntie huai juan never pick up her phone +spam Double Mins & Double Txt & 1/2 price Linerental on Latest Orange Bluetooth mobiles. Call MobileUpd8 for the very latest offers. 08000839402 or call2optout/LF56 +ham Ya tel, wats ur problem.. +spam No. 1 Nokia Tone 4 ur mob every week! Just txt NOK to 87021. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info +ham i dnt wnt to tlk wid u +ham We spend our days waiting for the ideal path to appear in front of us.. But what we forget is.. "paths are made by walking.. not by waiting.." Goodnight! +ham Its ok my arm is feeling weak cuz i got a shot so we can go another time +ham Please reserve ticket on saturday eve from chennai to thirunelvali and again from tirunelvali to chennai on sunday eve...i already see in net..no ticket available..i want to book ticket through tackle .. +ham Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@ +ham That's ok. I popped in to ask bout something and she said you'd been in. Are you around tonght wen this girl comes? +ham All e best 4 ur exam later. +ham Hope ur head doesn't hurt 2 much ! Am ploughing my way through a pile of ironing ! Staying in with a chinky tonight come round if you like. +ham Oh k.i think most of wi and nz players unsold. +ham Haha... Where got so fast lose weight, thk muz go 4 a month den got effect... Gee,later we go aust put bk e weight. +ham I wonder how you got online, my love ? Had you gone to the net cafe ? Did you get your phone recharged ? Were you on a friends net ? I think of you, boytoy +ham Haha just kidding, papa needs drugs +ham Thk shld b can... Ya, i wana go 4 lessons... Haha, can go for one whole stretch... +ham Oh ok.. +ham R we still meeting 4 dinner tonight? +ham Thats cool! I am a gentleman and will treat you with dignity and respect. +ham Shall i start from hear. +ham Then we wait 4 u lor... No need 2 feel bad lar... +ham No did you check? I got his detailed message now +ham You have registered Sinco as Payee. Log in at icicibank.com and enter URN <#> to confirm. Beware of frauds. Do NOT share or disclose URN to anyone. +ham No, I decided that only people who care about stuff vote and caring about stuff is for losers +ham Kaiez... Enjoy ur tuition... Gee... Thk e second option sounds beta... I'll go yan jiu den msg u... +ham You have registered Sinco as Payee. Log in at icicibank.com and enter URN <#> to confirm. Beware of frauds. Do NOT share or disclose URN to anyone. +ham cool. We will have fun practicing making babies! +ham Actually getting ready to leave the house. +ham K..k..any special today? +spam URGENT, IMPORTANT INFORMATION FOR O2 USER. TODAY IS YOUR LUCKY DAY! 2 FIND OUT WHY LOG ONTO HTTP://WWW.URAWINNER.COM THERE IS A FANTASTIC SURPRISE AWAITING FOR YOU +ham Then we gotta do it after that +ham I've got ten bucks, jay is being noncomittal +ham Where at were hungry too +ham Pls speak to that customer machan. +ham somewhere out there beneath the pale moon light someone think in of u some where out there where dreams come true... goodnite & sweet dreams +ham Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da. +spam Dear U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18 yrs +ham So wats ur opinion abt him and how abt is character? +ham Jay is snickering and tells me that x is totally fucking up the chords as we speak +ham No..few hours before.went to hair cut . +ham No wonder... Cos i dun rem seeing a silver car... But i thk i saw a black one... +ham Lmao. Take a pic and send it to me. +ham "Speak only when you feel your words are better than the silence..." Gud mrng:-) +ham No. She's currently in scotland for that. +ham Do you work all this week ? +spam Congratulations ur awarded either £500 of CD gift vouchers & Free entry 2 our £100 weekly draw txt MUSIC to 87066 TnCs www.Ldew.com 1 win150ppmx3age16 +ham Lol great now im getting hungry. +ham Yes.. now only saw your message.. +ham I'll be at mu in like <#> seconds +ham Ok... +ham THING R GOOD THANX GOT EXAMS IN MARCH IVE DONE NO REVISION? IS FRAN STILL WITH BOYF? IVE GOTTA INTERVIW 4 EXETER BIT WORRIED!x +ham Tell you what, if you make a little spreadsheet and track whose idea it was to smoke to determine who "smokes too much" for the entire month of february, I'll come up +spam For sale - arsenal dartboard. Good condition but no doubles or trebles! +ham Don't look back at the building because you have no coat and i don't want you to get more sick. Just hurry home and wear a coat to the gym!!! +ham My painful personal thought- "I always try to keep everybody happy all the time. But nobody recognises me when i am alone" +ham Thanks for ve lovely wisheds. You rock +ham You intrepid duo you! Have a great time and see you both soon. +ham I asked sen to come chennai and search for job. +ham Dad went out oredi... +ham I jus hope its true that missin me cos i'm really missin him! You haven't done anything to feel guilty about, yet. +ham Wat so late still early mah. Or we juz go 4 dinner lor. Aiya i dunno... +ham Arms fine, how's Cardiff and uni? +ham In fact when do you leave? I think addie goes back to school tues or wed +ham Cool breeze... Bright sun... Fresh flower... Twittering birds... All these waiting to wish u: "GOODMORNING & HAVE A NICE DAY" :) +ham Ya:)going for restaurant.. +ham Its ok., i just askd did u knw tht no? +spam Free 1st week entry 2 TEXTPOD 4 a chance 2 win 40GB iPod or £250 cash every wk. Txt POD to 84128 Ts&Cs www.textpod.net custcare 08712405020. +ham Those ducking chinchillas +ham I am in a marriage function +ham Looks like u wil b getting a headstart im leaving here bout 2.30ish but if u r desperate for my company I could head in earlier-we were goin to meet in rummer. +ham Don‘t give a flying monkeys wot they think and I certainly don‘t mind. Any friend of mine and all that! +spam As a registered optin subscriber ur draw 4 £100 gift voucher will be entered on receipt of a correct ans to 80062 Whats No1 in the BBC charts +ham say thanks2. +ham Msg me when rajini comes. +ham Ya! when are ü taking ure practical lessons? I start in june.. +ham That's good, because I need drugs +ham Stupid.its not possible +ham Can ü all decide faster cos my sis going home liao.. +spam Summers finally here! Fancy a chat or flirt with sexy singles in yr area? To get MATCHED up just reply SUMMER now. Free 2 Join. OptOut txt STOP Help08714742804 +ham U sleeping now.. Or you going to take? Haha.. I got spys wat.. Me online checking n replying mails lor.. +spam CLAIRE here am havin borin time & am now alone U wanna cum over 2nite? Chat now 09099725823 hope 2 C U Luv CLAIRE xx Calls£1/minmoremobsEMSPOBox45PO139WA +ham Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose. +spam Bought one ringtone and now getting texts costing 3 pound offering more tones etc +ham Yalru lyfu astne chikku.. Bt innu mundhe lyf ali halla ke bilo (marriage)program edhae, so lyf is nt yet ovr chikku..ali vargu lyfu meow meow:-D +ham Kinda. First one gets in at twelve! Aah. Speak tomo +spam 09066362231 URGENT! Your mobile No 07xxxxxxxxx won a £2,000 bonus caller prize on 02/06/03! this is the 2nd attempt to reach YOU! call 09066362231 ASAP! +ham Ok good then i later come find ü... C lucky i told ü to go earlier... Later pple take finish ü no more again... +ham Wat makes u thk i'll fall down. But actually i thk i'm quite prone 2 falls. Lucky my dad at home i ask him come n fetch me already. +spam YOU 07801543489 are guaranteed the latests Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word:COLLECT to No:83355! TC-LLC NY-USA 150p/Mt msgrcvd18+ +ham Your account has been refilled successfully by INR <DECIMAL> . Your KeralaCircle prepaid account balance is Rs <DECIMAL> . Your Transaction ID is KR <#> . +ham I wont touch you with out your permission. +spam Hi its LUCY Hubby at meetins all day Fri & I will B alone at hotel U fancy cumin over? Pls leave msg 2day 09099726395 Lucy x Calls£1/minMobsmoreLKPOBOX177HP51FL +ham 7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear +ham Take some small dose tablet for fever +ham Oh. U must have taken your REAL Valentine out shopping first. +ham Just sent you an email – to an address with incomm in it, is that right? +ham Will do, you gonna be at blake's all night? I might be able to get out of here a little early +ham Friendship is not a game to play, It is not a word to say, It doesn\'t start on March and ends on May, It is tomorrow, yesterday, today and e +ham Nice. Wait...should you be texting right now? I'm not gonna pay your ticket, ya know! +ham I'm watching lotr w my sis dis aft. So u wan 2 meet me 4 dinner at nite a not? +ham Why you keeping me away like this +ham I think its far more than that but find out. Check google maps for a place from your dorm. +ham My trip was ok but quite tiring lor. Uni starts today but it's ok 4 me cos i'm not taking any modules but jus concentrating on my final yr project. +ham Have you always been saying welp? +ham I'm a guy, browsin is compulsory +ham Ok... +ham Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng musthu +ham Sorry, I'll call later +ham (I should add that I don't really care and if you can't I can at least get this dude to fuck off but hey, your money if you want it) +ham Hello lover! How goes that new job? Are you there now? Are you happy? Do you think of me? I wake, my slave and send you a teasing kiss from across the sea +ham I told your number to gautham.. +ham Tell them no need to investigate about me anywhere. +ham Ok i juz receive.. +ham Cant believe i said so many things to you this morning when all i really wanted to say was good morning, i love you! Have a beautiful morning. See you in the library later. +spam Your account has been credited with 500 FREE Text Messages. To activate, just txt the word: CREDIT to No: 80488 T&Cs www.80488.biz +ham In the end she might still vomit but its okay. Not everything will come out. +ham How are you with moneY...as in to you...money aint a thing....how are you sha! +ham It has everything to do with the weather. Keep extra warm. Its a cold but nothing serious. Pls lots of vitamin c +ham Hey gals.. Anyone of u going down to e driving centre tmr? +ham I'm always on yahoo messenger now. Just send the message to me and i.ll get it you may have to send it in the mobile mode sha but i.ll get it. And will reply. +ham I'm putting it on now. It should be ready for <TIME> +ham Time n Smile r the two crucial things in our life. Sometimes time makes us to forget smile, and sometimes someone's smile makes us to forget time gud noon +spam SMS. ac JSco: Energy is high, but u may not know where 2channel it. 2day ur leadership skills r strong. Psychic? Reply ANS w/question. End? Reply END JSCO +ham Host-based IDPS for linux systems. +spam HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call +ham Don no da:)whats you plan? +ham Ill be there on <#> ok. +ham Oh my God. I'm almost home +ham Total video converter free download type this in google search:) +spam Thanks for the Vote. Now sing along with the stars with Karaoke on your mobile. For a FREE link just reply with SING now. +ham Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da. +ham Sounds like something that someone testing me would sayy +ham When u love someone Dont make them to love u as much as u do. But Love them so much that they dont want to be loved by anyone except you... Gud nit. +ham Pete,is this your phone still? Its Jenny from college and Leanne.what are you up to now?:) +ham Oops sorry. Just to check that you don't mind picking me up tomo at half eight from station. Would that be ok? +ham Hey sweet, I was wondering when you had a moment if you might come to me ? I want to send a file to someone but it won't go over yahoo for them because their connection sucks, remember when you set up that page for me to go to and download the format disc ? Could you tell me how to do that ? Or do you know some other way to download big files ? Because they can download stuff directly from the internet. Any help would be great, my prey ... *teasing kiss* +ham Hows the champ just leaving glasgow! +ham K:)all the best:)congrats... +ham I wonder if you'll get this text? +ham I need to come home and give you some good lovin... +spam Our brand new mobile music service is now live. The free music player will arrive shortly. Just install on your phone to browse content from the top artists. +ham Shall i ask one thing if you dont mistake me. +ham Check wid corect speling i.e. Sarcasm +spam URGENT! Your Mobile No was awarded a £2,000 Bonus Caller Prize on 1/08/03! This is our 2nd attempt to contact YOU! Call 0871-4719-523 BOX95QU BT National Rate +ham Are you angry with me. What happen dear +ham I thk u dun haf 2 hint in e forum already lor... Cos i told ron n darren is going 2 tell shuhui. +ham Yup ok thanx... +ham Hi:)cts employee how are you? +ham Pls pls find out from aunt nike. +ham Wow ... I love you sooo much, you know ? I can barely stand it ! I wonder how your day goes and if you are well, my love ... I think of you and miss you +ham No screaming means shouting.. +ham Hey what happen de. Are you alright. +ham Should I have picked up a receipt or something earlier +ham I think chennai well settled? +ham Oh dang! I didn't mean o send that to you! Lol! +ham Unfortunately i've just found out that we have to pick my sister up from the airport that evening so don't think i'll be going out at all. We should try to go out one of th +ham Horrible bf... I now v hungry... +ham Remember on that day.. +spam You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+ +ham How's it feel? Mr. Your not my real Valentine just my yo Valentine even tho u hardly play!! +ham All sounds good. Fingers . Makes it difficult to type +ham Midnight at the earliest +ham You're not sure that I'm not trying to make xavier smoke because I don't want to smoke after being told I smoke too much? +ham K come to nordstrom when you're done +ham Do u konw waht is rael FRIENDSHIP Im gving yuo an exmpel: Jsut ese tihs msg.. Evrey splleing of tihs msg is wrnog.. Bt sitll yuo can raed it wihtuot ayn mitsake.. GOODNIGHT & HAVE A NICE SLEEP..SWEET DREAMS.. +ham Now press conference da:) +spam Hello from Orange. For 1 month's free access to games, news and sport, plus 10 free texts and 20 photo messages, reply YES. Terms apply: www.orange.co.uk/ow +ham After completed degree. There is no use in joining finance. +ham Good afternoon, my love ! Any job prospects ? Are you missing me ? What do you do ? Are you being lazy and bleak, hmmm ? Or happy and filled with my love ? +ham Shant disturb u anymore... Jia you... +ham Bishan lar nearer... No need buy so early cos if buy now i gotta park my car... +ham Me, i dont know again oh +ham Dude sux for snake. He got old and raiden got buff +ham He says hi and to get your ass back to south tampa (preferably at a kegger) +ham In e msg jus now. U said thanks for gift. +ham U too... +ham Ok how you dear. Did you call chechi +ham Yeah we do totes. When u wanna? +ham Ok i found dis pierre cardin one which looks normal costs 20 its on sale. +ham Good sleep is about rhythm. The person has to establish a rhythm that the body will learn and use. If you want to know more :-) +ham Wat r u doing? +ham Message from . I am at Truro Hospital on ext. You can phone me here. as I have a phone by my side +ham Single line with a big meaning::::: "Miss anything 4 ur "Best Life" but, don't miss ur best life for anything... Gud nyt... +ham Just got some gas money, any chance you and the gang want to go on a grand nature adventure? +ham Dnt worry...use ice pieces in a cloth pack.also take 2 tablets. +ham Dude just saw a parked car with its sunroof popped up. Sux +ham Get ready to put on your excellent sub face :) +ham Tmrw. Im finishing 9 doors +ham The <#> g that i saw a few days ago, the guy wants sell wifi only for <#> and with 3g for <#> . That's why i blanked him. +ham I am late. I will be there at +ham whatever, im pretty pissed off. +ham Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy +ham I dont have that much image in class. +ham No:-)i got rumour that you going to buy apartment in chennai:-) +ham Near kalainar tv office.thenampet +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/msg. CC 08718720201 HG/Suite342/2Lands Row/W1J6HL +spam SMS AUCTION - A BRAND NEW Nokia 7250 is up 4 auction today! Auction is FREE 2 join & take part! Txt NOKIA to 86021 now! HG/Suite342/2Lands Row/W1J6HL +ham My sis is catching e show in e afternoon so i'm not watching w her. So c u wan 2 watch today or tmr lor. +ham Sounds gd... Haha... Can... Wah, u yan jiu so fast liao... +ham No. To be nosy I guess. Idk am I over reacting if I'm freaked? +ham Remember all those whom i hurt during days of satanic imposter in me.need to pay a price,so be it.may destiny keep me going and as u said pray that i get the mind to get over the same. +ham How to Make a girl Happy? It's not at all difficult to make girls happy. U only need to be... 1. A friend 2. Companion 3. Lover 4. Chef . . . <#> . Good listener <#> . Organizer <#> . Good boyfriend <#> . Very clean <#> . Sympathetic <#> . Athletic <#> . Warm . . . <#> . Courageous <#> . Determined <#> . True <#> . Dependable <#> . Intelligent . . . <#> . Psychologist <#> . Pest exterminator <#> . Psychiatrist <#> . Healer . . <#> . Stylist <#> . Driver . . Aaniye pudunga venaam.. +ham Why is that, princess? I bet the brothas are all chasing you! +ham I shall book chez jules for half eight, if that's ok with you? +ham Hhahhaahahah rofl wtf nig was leonardo in your room or something +ham Yep, at derek's house now, see you Sunday <3 +ham It's cool, let me know before it kicks off around <#> , I'll be out and about all day +ham Sorry, I'll call later +ham I was wondering if it would be okay for you to call uncle john and let him know that things are not the same in nigeria as they r here. That <#> dollars is 2years sent and that you know its a strain but i plan to pay back every dime he gives. Every dime so for me to expect anything from you is not practical. Something like that. +ham There are no other charges after transfer charges and you can withdraw anyhow you like +ham Dont search love, let love find U. Thats why its called falling in love, bcoz U dont force yourself, U just fall and U know there is smeone to hold U... BSLVYL +ham At 4. Let's go to bill millers +ham I love you. You set my soul on fire. It is not just a spark. But it is a flame. A big rawring flame. XoXo +ham Somewhr someone is surely made 4 u. And God has decided a perfect time to make u meet dat person. . . . till den, . . . . . Enjoy ur crushes..!!!;-) +ham That's my honeymoon outfit. :) +ham Will it help if we propose going back again tomorrow +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08719899230 Identifier Code: 41685 Expires 07/11/04 +ham Never blame a day in ur life. Good days give u happiness. Bad days give u experience. Both are essential in life! All are Gods blessings! good morning.: +ham Pls confirm the time to collect the cheque. +spam As a Registered Subscriber yr draw 4 a £100 gift voucher will b entered on receipt of a correct ans. When are the next olympics. Txt ans to 80062 +spam URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790121 from land line. Claim 3030. Valid 12hrs only 150ppm +ham Daddy will take good care of you :) +ham Yeah probably, I still gotta check out with leo +ham K.then any other special? +ham Carlos is taking his sweet time as usual so let me know when you and patty are done/want to smoke and I'll tell him to haul ass +ham Ok pa. Nothing problem:-) +ham Have you heard about that job? I'm going to that wildlife talk again tonight if u want2come. Its that2worzels and a wizzle or whatever it is?! +ham God picked up a flower and dippeditinaDEW, lovingly touched itwhichturnedinto u, and the he gifted tomeandsaid,THIS FRIEND IS 4U +ham When you came to hostel. +ham Ok no prob... I'll come after lunch then... +ham Jus telling u dat i'll b leaving 4 shanghai on 21st instead so we'll haf more time 2 meet up cya... +ham Are your freezing ? Are you home yet ? Will you remember to kiss your mom in the morning? Do you love me ? Do you think of me ? Are you missing me yet ? +ham You all ready for * big day tomorrow? +ham I'll probably be around mu a lot +ham 645 +spam RT-KIng Pro Video Club>> Need help? info@ringtoneking.co.uk or call 08701237397 You must be 16+ Club credits redeemable at www.ringtoneking.co.uk! Enjoy! +ham Thnx dude. u guys out 2nite? +ham Me sef dey laugh you. Meanwhile how's my darling anjie! +ham Mm i had my food da from out +ham K, makes sense, btw carlos is being difficult so you guys are gonna smoke while I go pick up the second batch and get gas +ham Did u download the fring app? +ham The 2 oz guy is being kinda flaky but one friend is interested in picking up $ <#> worth tonight if possible +ham Friends that u can stay on fb chat with +ham Fuck babe, I miss you sooooo much !! I wish you were here to sleep with me ... My bed is so lonely ... I go now, to sleep ... To dream of you, my love ... +ham Living is very simple.. Loving is also simple.. Laughing is too simple.. Winning is tooo simple.. But, being 'SIMPLE' is very difficult.. Gud nte.:- +spam U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094599 +ham Ah, well that confuses things, doesn‘t it? +spam 500 free text msgs. Just text ok to 80488 and we'll credit your account +ham Hi Dear Call me its urgnt. I don't know whats your problem. You don't want to work or if you have any other problem at least tell me. Wating for your reply. +ham Dear how you. Are you ok? +spam You have been selected to stay in 1 of 250 top British hotels - FOR NOTHING! Holiday Worth £350! To Claim, Call London 02072069400. Bx 526, SW73SS +ham Yes princess! I want to make you happy... +ham Sounds like you have many talents! would you like to go on a dinner date next week? +ham I am going to film 2day da. At 6pm. Sorry da. +ham We not watching movie already. Xy wants 2 shop so i'm shopping w her now. +ham Hello my little party animal! I just thought I'd buzz you as you were with your friends ...*grins*... Reminding you were loved and send a naughty adoring kiss +ham Yesterday its with me only . Now am going home. +spam Eerie Nokia tones 4u, rply TONE TITLE to 8007 eg TONE DRACULA to 8007 Titles: GHOST, ADDAMSFA, MUNSTERS, EXORCIST, TWILIGHT www.getzed.co.uk POBox36504W45WQ 150p +ham You have come into my life and brought the sun ..Shiny down on me, warming my heart. Putting a constant smile on my face ... Making me feel loved and cared for +ham No shit, but I wasn't that surprised, so I went and spent the evening with that french guy I met in town here and we fooled around a bit but I didn't let him fuck me +spam 0A$NETWORKS allow companies to bill for SMS, so they are responsible for their "suppliers", just as a shop has to give a guarantee on what they sell. B. G. +ham Great comedy..cant stop laughing da:) +spam FreeMsg:Feelin kinda lnly hope u like 2 keep me company! Jst got a cam moby wanna c my pic?Txt or reply DATE to 82242 Msg150p 2rcv Hlp 08712317606 stop to 82242 +ham Alright, we're all set here, text the man +ham Hi , where are you? We're at and they're not keen to go out i kind of am but feel i shouldn't so can we go out tomo, don't mind do you? +ham Sleeping nt feeling well +ham U WILL SWITCH YOUR FONE ON DAMMIT!! +ham India have to take lead:) +ham I.ll post her out l8r. In class +ham Thts wat Wright Brother did to fly.. +ham Evening * v good if somewhat event laden. Will fill you in, don't you worry … Head * ok but throat * wrecked. See you at six then! +ham If u laugh really loud.. If u talk spontaneously.. If u dont care what others feel.. U are probably with your dear & best friends.. GOODEVENING Dear..:) +ham ITS A LAPTOP TAKE IT WITH YOU. +ham I dont have any of your file in my bag..i was in work when you called me.i 'll tell you if i find anything in my room. +ham I wan but too early lei... Me outside now wun b home so early... Neva mind then... +spam For ur chance to win a £250 cash every wk TXT: ACTION to 80608. T's&C's www.movietrivia.tv custcare 08712405022, 1x150p/wk +ham I was at bugis juz now wat... But now i'm walking home oredi... Ü so late then reply... I oso saw a top dat i like but din buy... Where r ü now? +ham Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance.. +ham At 7 we will go ok na. +ham Yes I posted a couple of pics on fb. There's still snow outside too. I'm just waking up :) +ham S:-)if we have one good partnership going we will take lead:) +spam RGENT! This is the 2nd attempt to contact U!U have WON £1250 CALL 09071512433 b4 050703 T&CsBCM4235WC1N3XX. callcost 150ppm mobilesvary. max£7. 50 +ham Yeah, where's your class at? +ham No just send to you. Bec you in temple na. +ham You aren't coming home between class, right? I need to work out and shower! +spam Hi if ur lookin 4 saucy daytime fun wiv busty married woman Am free all next week Chat now 2 sort time 09099726429 JANINExx Calls£1/minMobsmoreLKPOBOX177HP51FL +ham S but mostly not like that. +ham Ü v ma fan... +ham Dunno cos i was v late n when i reach they inside already... But we ate spageddies lor... It's e gals who r laughing at me lor... +ham Guess who spent all last night phasing in and out of the fourth dimension +ham So now my dad is gonna call after he gets out of work and ask all these crazy questions. +ham Yes..but they said its IT., +ham Very hurting n meaningful lines ever: "I compromised everything for my love, But at d end my love compromised me for everything:-(".. Gud mornin:-) +ham Lmao!nice 1 +ham Glad to see your reply. +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001295 from land line. Claim A21. Valid 12hrs only +spam Monthly password for wap. mobsi.com is 391784. Use your wap phone not PC. +ham Nah dub but je still buff +ham Painful words- "I thought being Happy was the most toughest thing on Earth... But, the toughest is acting Happy with all unspoken pain inside.." +ham Yeah, that's fine! It's £6 to get in, is that ok? +ham Lol where do u come up with these ideas? +ham So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. Sh!jas +ham Today is "song dedicated day.." Which song will u dedicate for me? Send this to all ur valuable frnds but first rply me... +ham Okay... We wait ah +ham Y lei? +ham HI BABE U R MOST LIKELY TO BE IN BED BUT IM SO SORRY ABOUT TONIGHT! I REALLY WANNA SEE U TOMORROW SO CALL ME AT 9. LOVE ME XXX +ham Already am squatting is the new way of walking +ham Do you want bold 2 or bb torch +ham Cramps stopped. Going back to sleep +spam todays vodafone numbers ending with 0089(my last four digits) are selected to received a £350 award. If your number matches please call 09063442151 to claim your £350 award +spam Free Top ringtone -sub to weekly ringtone-get 1st week free-send SUBPOLY to 81618-?3 per week-stop sms-08718727870 +ham Nan sonathaya soladha. Why boss? +ham Bring tat cd don forget +spam Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country the Algarve is in? Txt ansr to 82277. £1.50 SP:Tyrone +ham I don't know but I'm raping dudes at poker +ham Weightloss! No more girl friends. Make loads of money on ebay or something. And give thanks to God. +ham Was gr8 to see that message. So when r u leaving? Congrats dear. What school and wat r ur plans. +ham Ü eatin later but i'm eatin wif my frens now lei... Ü going home first? +ham Finish already... Yar they keep saying i mushy... I so embarrassed ok... +ham Sorry man, my stash ran dry last night and I can't pick up more until sunday +ham Hai priya are you right. What doctor said pa. Where are you. +spam Free msg. Sorry, a service you ordered from 81303 could not be delivered as you do not have sufficient credit. Please top up to receive the service. +ham Ok... +ham Please ask mummy to call father +ham Can come my room but cannot come my house cos my house still messy... Haha... +ham I have lost 10 kilos as of today! +ham Just taste fish curry :-P +ham What can i do? Might accidant tookplace between somewhere ghodbandar rd. Traffic moves slovely. So plz slip & don't worry. +ham Yun ah.now ü wkg where?btw if ü go nus sc. Ü wana specialise in wad? +ham Yes! I am a one woman man! Please tell me your likes and dislikes in bed... +ham Was doing my test earlier. I appreciate you. Will call you tomorrow. +ham How's my loverboy doing ? What does he do that keeps him from coming to his Queen, hmmm ? Doesn't he ache to speak to me ? Miss me desparately ? +ham U meet other fren dun wan meet me ah... Muz b a guy rite... +ham (No promises on when though, haven't even gotten dinner yet) +ham I got your back! Do you have any dislikes in bed? +ham o turns out i had stereo love on mi phone under the unknown album. +spam Hard LIVE 121 chat just 60p/min. Choose your girl and connect LIVE. Call 09094646899 now! Cheap Chat UK's biggest live service. VU BCM1896WC1N3XX +ham Yeah I don't see why not +ham Asking do u knw them or nt? May be ur frnds or classmates? +ham Sorry about earlier. Putting out fires.Are you around to talk after 9? Or do you actually have a life, lol! +spam WOW! The Boys R Back. TAKE THAT 2007 UK Tour. Win VIP Tickets & pre-book with VIP Club. Txt CLUB to 81303. Trackmarque Ltd info@vipclub4u. +ham As in missionary hook up, doggy hook up, standing...| +ham Then u better go sleep.. Dun disturb u liao.. U wake up then msg me lor.. +ham Fighting with the world is easy, u either win or lose bt fightng with some1 who is close to u is dificult if u lose - u lose if u win - u still lose. +ham Am watching house – very entertaining – am getting the whole hugh laurie thing – even with the stick – indeed especially with the stick. +ham Thought praps you meant another one. Goodo! I'll look tomorrow +ham Hi Jon, Pete here, Ive bin 2 Spain recently & hav sum dinero left, Bill said u or ur ‘rents mayb interested in it, I hav 12,000pes, so around £48, tb, James. +ham There bold 2 <#> . Is that yours +ham You know there is. I shall speak to you in <#> minutes then +ham "ALRITE HUNNY!WOT U UP 2 2NITE? DIDNT END UP GOIN DOWN TOWN JUS DA PUB INSTEAD! JUS CHILLIN AT DA MO IN ME BEDROOM!LOVE JEN XXX." +ham I went to project centre +ham As per your request 'Maangalyam (Alaipayuthe)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune +ham Lol yeah at this point I guess not +ham Doing project w frens lor. +ham Lol. Well quality aint bad at all so i aint complaining +ham K, can that happen tonight? +spam Hi, this is Mandy Sullivan calling from HOTMIX FM...you are chosen to receive £5000.00 in our Easter Prize draw.....Please telephone 09041940223 to claim before 29/03/05 or your prize will be transferred to someone else.... +ham I think we're going to finn's now, come +ham Why tired what special there you had +ham I will come tomorrow di +ham I cant pick the phone right now. Pls send a message +ham K go and sleep well. Take rest:-). +ham U guys never invite me anywhere :( +spam UR GOING 2 BAHAMAS! CallFREEFONE 08081560665 and speak to a live operator to claim either Bahamas cruise of£2000 CASH 18+only. To opt out txt X to 07786200117 +ham I can do that! I want to please you both inside and outside the bedroom... +ham "EY! CALM DOWNON THEACUSATIONS.. ITXT U COS IWANA KNOW WOTU R DOIN AT THEW/END... HAVENTCN U IN AGES..RING ME IF UR UP4 NETHING SAT.LOVE J XXX." +ham I love to wine and dine my lady! +spam Someone has conacted our dating service and entered your phone because they fancy you!To find out who it is call from landline 09111030116. PoBox12n146tf15 +ham I’m cool ta luv but v.tired 2 cause i have been doin loads of planning all wk, we have got our social services inspection at the nursery! Take care & spk sn x. +ham I don know account details..i will ask my mom and send you.my mom is out of reach now. +ham I think u have the wrong number. +ham Feel Yourself That You Are Always Happy.. Slowly It Becomes Your Habit & Finally It Becomes Part Of Your Life.. Follow It.. Happy Morning & Have A Happy Day:) +ham DO NOT B LATE LOVE MUM +ham Got it..mail panren paru.. +ham * Was thinking about chuckin ur red green n black trainners 2 save carryin them bac on train +ham Give one miss from that number please +ham Jus came back fr lunch wif my sis only. U leh? +ham How is your schedule next week? I am out of town this weekend. +ham Really good:)dhanush rocks once again:) +ham Lmao ok I wont be needing u to do my hair anymore. +ham Miss ya, need ya, want ya, love ya. +ham Sorry i'm not free... +ham Do u ever get a song stuck in your head for no reason and it won't go away til u listen to it like 5 times? +ham Nt yet chikku..simple habba..hw abt u? +ham Got ur mail Dileep.thank you so muchand look forward to lots of support...very less contacts here,remember one venugopal you mentioned.tomorrow if not late,i shall try to come up till there.goodnight dear. +ham Sometimes Heart Remembrs someone Very much... Forgets someone soon... Bcoz Heart will not like everyone. But liked ones will be Remembered Everytime... BSLVYL +ham Joy's father is John. Then John is the NAME of Joy's father. Mandan +spam Hi 07734396839 IBH Customer Loyalty Offer: The NEW NOKIA6600 Mobile from ONLY £10 at TXTAUCTION!Txt word:START to No:81151 & get Yours Now!4T& +ham Hi this is yijue... It's regarding the 3230 textbook it's intro to algorithms second edition... I'm selling it for $50... +spam SMS AUCTION You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+ +ham K, want us to come by now? +ham How. Its a little difficult but its a simple way to enter this place +ham Ha... Both of us doing e same thing. But i got tv 2 watch. U can thk of where 2 go tonight or u already haf smth in mind... +ham Dont show yourself. How far. Put new pictures up on facebook. +ham Watching tv now. I got new job :) +ham Good afternoon sexy buns! How goes the job search ? I wake and you are my first thought as always, my love. I wish your fine and happy and know I adore you! +ham I'm not coming over, do whatever you want +ham Its ok chikku, and its my 1 of favourite song..:-) +ham Did u see what I posted on your Facebook? +spam Call FREEPHONE 0800 542 0578 now! +spam Buy Space Invaders 4 a chance 2 win orig Arcade Game console. Press 0 for Games Arcade (std WAP charge) See o2.co.uk/games 4 Terms + settings. No purchase +ham 7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear +spam Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help' +spam BIG BROTHER ALERT! The computer has selected u for 10k cash or #150 voucher. Call 09064018838. NTT PO Box CRO1327 18+ BT Landline Cost 150ppm mobiles vary +ham ;-( oh well, c u later +ham My uncles in Atlanta. Wish you guys a great semester. +ham No dear i do have free messages without any recharge. Hi hi hi +ham Dont search love, let love find U. Thats why its called falling in love, bcoz U dont force yourself, U just fall and U know there is smeone to hold U... BSLVYL +ham I dun believe u. I thk u told him. +ham Do you know why god created gap between your fingers..? So that, One who is made for you comes & fills those gaps by holding your hand with LOVE..! +ham Yes:)sura in sun tv.:)lol. +ham Arun can u transfr me d amt +ham Takin a shower now but yeah I'll leave when I'm done +ham Am not working but am up to eyes in philosophy so will text u later when a bit more free for chat... +ham U haven’t lost me ill always b here 4u.i didn’t intend 2 hurt u but I never knew how u felt about me when Iwas+marine&that’s what itried2tell urmom.i careabout u +spam WIN: We have a winner! Mr. T. Foley won an iPod! More exciting prizes soon, so keep an eye on ur mobile or visit www.win-82050.co.uk +ham You bad girl. I can still remember them +ham How much i gave to you. Morning. +ham I hope your alright babe? I worry that you might have felt a bit desparate when you learned the job was a fake ? I am here waiting when you come back, my love +ham Hey, can you tell me blake's address? Carlos wanted me to meet him there but I got lost and he's not answering his phone +ham Can i get your opinion on something first? +ham That one week leave i put know that time. Why. +ham If we hit it off, you can move in with me :) +ham excellent. I spent <#> years in the Air Force. Iraq and afghanistan. I am stable and honest. do you like traveling? +ham I wanna watch that movie +ham Ok lor thanx... Ü in school? +ham I'm in class. Did you get my text. +ham The bus leaves at <#> +ham God bless.get good sleep my dear...i will pray! +spam Todays Voda numbers ending 1225 are selected to receive a £50award. If you have a match please call 08712300220 quoting claim code 3100 standard rates app +ham Do have a nice day today. I love you so dearly. +ham Aiyo a bit pai seh ü noe... Scared he dun rem who i am then die... Hee... But he become better lookin oredi leh... +ham Aight, I'll ask a few of my roommates +ham Now, whats your house # again ? And do you have any beer there ? +ham Do ü all wan 2 meet up n combine all the parts? How's da rest of da project going? +ham "Getting tickets 4 walsall tue 6 th march. My mate is getting me them on sat. ill pay my treat. Want 2 go. Txt bak .Terry" +ham Yes we are chatting too. +ham HI ITS JESS I DONT KNOW IF YOU ARE AT WORK BUT CALL ME WHEN U CAN IM AT HOME ALL EVE. XXX +ham Sian... Aft meeting supervisor got work 2 do liao... U working now? +ham Are you going to write ccna exam this week?? +ham Well i will watch shrek in 3D!!B) +ham Am i that much dirty fellow? +ham Dunno dat's wat he told me. Ok lor... +ham I'll probably be by tomorrow (or even later tonight if something's going on) +ham I couldn't say no as he is a dying man and I feel sad for him so I will go and I just wanted you to know I would probably be gone late into your night +ham If you're thinking of lifting me one then no. +ham Same as u... Dun wan... Y u dun like me already ah... Wat u doing now? Still eating? +ham Sent me ur email id soon +ham Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!! +ham Dude. What's up. How Teresa. Hope you have been okay. When i didnt hear from these people, i called them and they had received the package since dec <#> . Just thot you'ld like to know. Do have a fantastic year and all the best with your reading. Plus if you can really really Bam first aid for Usmle, then your work is done. +ham Hey gorgeous man. My work mobile number is. Have a good one babe. Squishy Mwahs. +ham May i call You later Pls +spam Hottest pics straight to your phone!! See me getting Wet and Wanting, just for you xx Text PICS to 89555 now! txt costs 150p textoperator g696ga 18 XxX +ham That's the way you should stay oh. +ham Hello- thanx for taking that call. I got a job! Starts on monday! +ham What time is ur flight tmr? +ham When should I come over? +ham I have a rather prominent bite mark on my right cheek +ham * Will be september by then! +ham Are you wet right now? +ham And how's your husband. +spam Hack Chat. Get backdoor entry into 121 chat rooms at a fraction of the cost. Reply NEO69 or call 09050280520, to subscribe 25p pm. DPS, Bcm box 8027 Ldn, wc1n3xx +ham Are we doing the norm tomorrow? I finish just a 4.15 cos of st tests. Need to sort library stuff out at some point tomo - got letter from today - access til end march so i better get move on! +ham Yeah. I got a list with only u and Joanna if I'm feeling really anti social +ham I am in your office na. +ham "Are you comingdown later?" +ham Super da:)good replacement for murali +ham Da is good good player.why he is unsold. +ham Hi. || Do u want | to join me with sts later? || Meeting them at five. || Call u after class. +ham Its on in engalnd! But telly has decided it won't let me watch it and mia and elliot were kissing! Damn it! +spam FREE NOKIA Or Motorola with upto 12mths 1/2price linerental, 500 FREE x-net mins&100txt/mth FREE B'tooth*. Call Mobileupd8 on 08001950382 or call 2optout/D3WV +ham I dont want to hear philosophy. Just say what happen +ham You got job in wipro:)you will get every thing in life in 2 or 3 years. +ham Then cant get da laptop? My matric card wif ü lei... +ham Dunno da next show aft 6 is 850. Toa payoh got 650. +spam This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08718726970 NOW! Only 10p per min. BT-national-rate +ham I just made some payments so dont have that much. Sorry. Would you want it fedex or the other way. +ham They did't play one day last year know even though they have very good team.. Like india. +ham K.:)you are the only girl waiting in reception ah? +ham Say this slowly.? GOD,I LOVE YOU & I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people & u c miracle tomorrow, do it,pls,pls do it... +ham I hate when she does this. She turns what should be a fun shopping trip into an annoying day of how everything would look in her house. +ham Sir, i am waiting for your call. +ham What's up. Do you want me to come online? +ham It could work, we'll reach a consensus at the next meeting +ham Aiyah then i wait lor. Then u entertain me. Hee... +ham The last thing i ever wanted to do was hurt you. And i didn't think it would have. You'd laugh, be embarassed, delete the tag and keep going. But as far as i knew, it wasn't even up. The fact that you even felt like i would do it to hurt you shows you really don't know me at all. It was messy wednesday, but it wasn't bad. The problem i have with it is you HAVE the time to clean it, but you choose not to. You skype, you take pictures, you sleep, you want to go out. I don't mind a few things here and there, but when you don't make the bed, when you throw laundry on top of it, when i can't have a friend in the house because i'm embarassed that there's underwear and bras strewn on the bed, pillows on the floor, that's something else. You used to be good about at least making the bed. +ham I'll let you know when it kicks in +ham You call him now ok i said call him +ham Call to the number which is available in appointment. And ask to connect the call to waheed fathima. +ham Or ü go buy wif him then i meet ü later can? +ham Mmmm ... Fuck ... Not fair ! You know my weaknesses ! *grins* *pushes you to your knee's* *exposes my belly and pulls your head to it* Don't forget ... I know yours too *wicked smile* +ham Today my system sh get ready.all is well and i am also in the deep well +ham Mom wants to know where you at +ham Aight, I'll text you when I'm back +ham Dont know supports ass and srt i thnk. I think ps3 can play through usb too +ham Oh ok i didnt know what you meant. Yep i am baby jontin +spam You have WON a guaranteed £1000 cash or a £2000 prize.To claim yr prize call our customer service representative on +spam Would you like to see my XXX pics they are so hot they were nearly banned in the uk! +spam HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com +ham Watching tv now. I got new job :) +ham This pen thing is beyond a joke. Wont a Biro do? Don't do a masters as can't do this ever again! +ham I AM AT A PARTY WITH ALEX NICHOLS +spam U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094594 +ham Just seeing your missed call my dear brother. Do have a gr8 day. +ham Ok.. Ü finishing soon? +ham Sorry, I can't help you on this. +ham Come to me, slave. Your doing it again ... Going into your shell and unconsciously avoiding me ... You are making me unhappy :-( +ham I love your ass! Do you enjoy doggy style? :) +ham I think asking for a gym is the excuse for lazy people. I jog. +spam Dear 0776xxxxxxx U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs +spam Urgent! Please call 09061743811 from landline. Your ABTA complimentary 4* Tenerife Holiday or £5000 cash await collection SAE T&Cs Box 326 CW25WX 150ppm +ham No. On the way home. So if not for the long dry spell the season would have been over +ham I gotta collect da car at 6 lei. +ham Ok but knackered. Just came home and went to sleep! Not good at this full time work lark. +ham Probably earlier than that if the station's where I think it is +spam CALL 09090900040 & LISTEN TO EXTREME DIRTY LIVE CHAT GOING ON IN THE OFFICE RIGHT NOW TOTAL PRIVACY NO ONE KNOWS YOUR [sic] LISTENING 60P MIN 24/7MP 0870753331018+ +ham Good Morning plz call me sir +spam FreeMsg Hey U, i just got 1 of these video/pic fones, reply WILD to this txt & ill send U my pics, hurry up Im so bored at work xxx (18 150p/rcvd STOP2stop) +ham Uh, heads up we don't have THAT much left +ham I tot u outside cos darren say u come shopping. Of course we nice wat. We jus went sim lim look at mp3 player. +ham Aight, sounds good. When do you want me to come down? +ham Wat would u like 4 ur birthday? +ham I love working from home :) +ham And miss vday the parachute and double coins??? U must not know me very well... +ham Sorry, I'll call later +ham My sister got placed in birla soft da:-) +spam Free entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+ +ham Wah... Okie okie... Muz make use of e unlimited... Haha... +ham There're some people by mu, I'm at the table by lambda +ham And stop being an old man. You get to build snowman snow angels and snowball fights. +ham ELLO BABE U OK? +ham Hello beautiful r u ok? I've kinda ad a row wiv and he walked out the pub?? I wanted a night wiv u Miss u +ham Then u going ikea str aft dat? +ham Becoz its <#> jan whn al the post ofice is in holiday so she cn go fr the post ofice...got it duffer +ham Lol grr my mom is taking forever with my prescription. Pharmacy is like 2 minutes away. Ugh. +ham For real tho this sucks. I can't even cook my whole electricity is out. And I'm hungry. +ham You want to go? +spam New TEXTBUDDY Chat 2 horny guys in ur area 4 just 25p Free 2 receive Search postcode or at gaytextbuddy.com. TXT ONE name to 89693. 08715500022 rpl Stop 2 cnl +ham Its not that time of the month nor mid of the time? +ham Fffff. Can you text kadeem or are you too far gone +ham We not leaving yet. Ok lor then we go elsewhere n eat. U thk... +ham Is fujitsu s series lifebook good? +ham Yar i wanted 2 scold u yest but late already... I where got zhong se qing you? If u ask me b4 he ask me then i'll go out w u all lor. N u still can act so real. +ham Dont know you bring some food +ham No current and food here. I am alone also +ham I'll be in sch fr 4-6... I dun haf da book in sch... It's at home... +ham Hello. They are going to the village pub at 8 so either come here or there accordingly. Ok? +ham Ok +ham We don call like <#> times oh. No give us hypertension oh. +ham Dont give a monkeys wot they think and i certainly don't mind. Any friend of mine&all that! Just don't sleep wiv , that wud be annoyin! +ham Omg it could snow here tonite! +spam Call from 08702490080 - tells u 2 call 09066358152 to claim £5000 prize. U have 2 enter all ur mobile & personal details @ the prompts. Careful! +spam Free 1st week entry 2 TEXTPOD 4 a chance 2 win 40GB iPod or £250 cash every wk. Txt VPOD to 81303 Ts&Cs www.textpod.net custcare 08712405020. +ham Carry on not disturbing both of you +ham What pa tell me.. I went to bath:-) +ham Jus finished avatar nigro +ham R u over scratching it? +ham Hope you are having a great day. +ham Did either of you have any idea's? Do you know of anyplaces doing something? +ham My planning usually stops at "find hella weed, smoke hella weed" +ham The fact that you're cleaning shows you know why i'm upset. Your priority is constantly "what i want to do," not "what i need to do." +ham Excellent! Are you ready to moan and scream in ecstasy? +spam More people are dogging in your area now. Call 09090204448 and join like minded guys. Why not arrange 1 yourself. There's 1 this evening. A£1.50 minAPN LS278BB +ham Dude avatar 3d was imp. At one point i thought there were actually flies in the room and almost tried hittng one as a reflex +spam WELL DONE! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TCs, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham K...k:)why cant you come here and search job:) +ham I got lousy sleep. I kept waking up every 2 hours to see if my cat wanted to come in. I worry about him when its cold :( +ham Yeah, I'll leave in a couple minutes & let you know when I get to mu +ham Can ü call me at 10:10 to make sure dat i've woken up... +ham Hey we can go jazz power yoga hip hop kb and yogasana +ham The battery is for mr adewale my uncle. Aka Egbon +ham I cant pick the phone right now. Pls send a message +ham Wait 2 min..stand at bus stop +ham Oh ic. I thought you meant mary jane. +ham Haha... Really oh no... How? Then will they deduct your lesson tmr? +ham Nah im goin 2 the wrks with j wot bout u? +ham Then just eat a shit and wait for ur monkey face bitch.......... U asshole.................. +ham Good night. Am going to sleep. +ham Aight I'll grab something to eat too, text me when you're back at mu +ham K...k:)why cant you come here and search job:) +ham Take something for pain. If it moves however to any side in the next 6hrs see a doctor. +ham Lol ... Oh no babe, I wont be sliding into your place after midnight, but thanks for the invite +ham Howz that persons story +spam Guess what! Somebody you know secretly fancies you! Wanna find out who it is? Give us a call on 09065394973 from Landline DATEBox1282EssexCM61XN 150p/min 18 +ham LOL that would be awesome payback. +spam it to 80488. Your 500 free text messages are valid until 31 December 2005. +ham Yes :)it completely in out of form:)clark also utter waste. +ham Honeybee Said: *I'm d Sweetest in d World* God Laughed & Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:) +ham Thanks. It was only from tescos but quite nice. All gone now. Speak soon +ham What's a feathery bowa? Is that something guys have that I don't know about? +ham Even i cant close my eyes you are in me our vava playing umma :-D +ham 2 laptop... I noe infra but too slow lar... I wan fast one +spam You have won a guaranteed £200 award or even £1000 cashto claim UR award call free on 08000407165 (18+) 2 stop getstop on 88222 PHP +ham Nvm it's ok... +ham Enjoy ur life. . Good night +ham Yes but can we meet in town cos will go to gep and then home. You could text at bus stop. And don't worry we'll have finished by march … ish! +ham I had askd u a question some hours before. Its answer +ham Thats cool. Where should i cum? On you or in you? :) +ham Delhi and chennai still silent. +ham Lol alright i was thinkin that too haha +spam Reply to win £100 weekly! Where will the 2006 FIFA World Cup be held? Send STOP to 87239 to end service +ham No I'm in the same boat. Still here at my moms. Check me out on yo. I'm half naked. +ham Shhhhh nobody is supposed to know! +ham Sorry, I'll call later +ham Sorry, I'll call later in meeting any thing related to trade please call Arul. <#> +ham Hey i will be late... i'm at amk. Need to drink tea or coffee +ham I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of <#> Lacs.there is no source to arng dis amt. <#> lacs..thats my prob +spam Urgent! Please call 09061743810 from landline. Your ABTA complimentary 4* Tenerife Holiday or #5000 cash await collection SAE T&Cs Box 326 CW25WX 150 ppm +ham The length is e same but e top shorter n i got a fringe now. I thk i'm not going liao. Too lazy. Dun wan 2 distract u also. +ham S..antha num corrct dane +ham No calls..messages..missed calls +ham Sorry, I'll call later +ham The basket's gettin full so I might be by tonight +ham HI DARLIN IVE JUST GOT BACK AND I HAD A REALLY NICE NIGHT AND THANKS SO MUCH FOR THE LIFT SEE U TOMORROW XXX +ham No other Valentines huh? The proof is on your fb page. Ugh I'm so glad I really DIDN'T watch your rupaul show you TOOL! +spam Free tones Hope you enjoyed your new content. text stop to 61610 to unsubscribe. help:08712400602450p Provided by tones2you.co.uk +ham Eh den sat u book e kb liao huh... +ham Have you been practising your curtsey? +ham Shall i come to get pickle +ham Lol boo I was hoping for a laugh +ham "YEH I AM DEF UP4 SOMETHING SAT,JUST GOT PAYED2DAY & I HAVBEEN GIVEN A£50 PAY RISE 4MY WORK & HAVEBEEN MADE PRESCHOOLCO-ORDINATOR 2I AM FEELINGOOD LUV" +ham Well, I have to leave for my class babe ... You never came back to me ... :-( ... Hope you have a nice sleep, my love +ham LMAO where's your fish memory when I need it? +ham But i'll b going 2 sch on mon. My sis need 2 take smth. +ham Idea will soon get converted to live:) +spam TheMob>Yo yo yo-Here comes a new selection of hot downloads for our members to get for FREE! Just click & open the next link sent to ur fone... +ham S....s...india going to draw the series after many years in south african soil.. +ham Goodmorning, today i am late for <DECIMAL> min. +ham Can't take any major roles in community outreach. You rock mel +ham Shopping lor. Them raining mah hard 2 leave orchard. +ham Hi here. have birth at on the to at 8lb 7oz. Mother and baby doing brilliantly. +ham See the forwarding message for proof +ham I can't keep going through this. It was never my intention to run you out, but if you choose to do that rather than keep the room clean so *I* don't have to say no to visitors, then maybe that's the best choice. Yes, I wanted you to be embarassed, so maybe you'd feel for once how I feel when i have a friend who wants to drop buy and i have to say no, as happened this morning. I've tried everything. I don't know what else to do. +ham Dunno lei... I thk mum lazy to go out... I neva ask her yet... +ham Do whatever you want. You know what the rules are. We had a talk earlier this week about what had to start happening, you showing responsibility. Yet, every week it's can i bend the rule this way? What about that way? Do whatever. I'm tired of having thia same argument with you every week. And a <#> movie DOESNT inlude the previews. You're still getting in after 1. +ham Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOODMORNING +spam Great News! Call FREEFONE 08006344447 to claim your guaranteed £1000 CASH or £2000 gift. Speak to a live operator NOW! +ham Ambrith..madurai..met u in arun dha marrge..remembr? +ham Just re read it and I have no shame but tell me how he takes it and if he runs I will blame u 4 ever!! Not really 4 ever just a long time +ham Princess, is your kitty shaved or natural? +ham Better than bb. If he wont use it, his wife will or them doctor +ham Ya it came a while ago +ham From tomorrow onwards eve 6 to 3 work. +ham Anything lor but toa payoh got place 2 walk meh... +ham I don't have anybody's number, I still haven't thought up a tactful way to ask alex +spam U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.ldew.com SkillGame,1Winaweek, age16.150ppermessSubscription +ham Is there any movie theatre i can go to and watch unlimited movies and just pay once? +ham U having lunch alone? I now so bored... +ham Yes obviously, but you are the eggs-pert and the potato head… Speak soon! +ham Nah man, my car is meant to be crammed full of people +ham No got new job at bar in airport on satsgettin 4.47per hour but means no lie in! keep in touch +ham Kallis is ready for bat in 2nd innings +ham Thanx but my birthday is over already. +ham Ugh y can't u just apologize, admit u were wrong and ask me to take u back? +ham I noe la... U wana pei bf oso rite... K lor, other days den... +ham Yes, i'm small kid.. And boost is the secret of my energy.. +ham IM GONNA MISS U SO MUCH +ham Is avatar supposed to have subtoitles +ham Simply sitting and watching match in office.. +ham You can jot down things you want to remember later. +ham Oh sorry please its over +ham Hey are we going for the lo lesson or gym? +ham Dont pack what you can buy at any store.like cereals. If you must pack food, pack gari or something 9ja that you will miss. +ham You always make things bigger than they are +ham Ü dun wan to watch infernal affair? +ham Me not waking up until 4 in the afternoon, sup +spam 4mths half price Orange line rental & latest camera phones 4 FREE. Had your phone 11mths ? Call MobilesDirect free on 08000938767 to update now! or2stoptxt +ham I can send you a pic if you like :) +ham Okay... I booked all already... Including the one at bugis. +ham Aight fuck it, I'll get it later +ham No de. But call me after some time. Ill tell you k +ham So dont use hook up any how +ham How much is blackberry bold2 in nigeria. +ham Hi where you. You in home or calicut? +ham Hey darlin.. i can pick u up at college if u tell me wen & where 2 mt.. love Pete xx +spam Call 09094100151 to use ur mins! Calls cast 10p/min (mob vary). Service provided by AOM, just GBP5/month. AOM Box61,M60 1ER until u stop. Ages 18+ only! +ham Oh... I was thkin of goin yogasana at 10 den no nd to go at 3 den can rush to parco 4 nb... Okie lor, u call me when ready... +ham Y so late but i need to go n get da laptop... +ham Sir, I am waiting for your mail. +ham .Please charge my mobile when you get up in morning. +ham Nothing, i got msg frm tht unknown no.. +ham Ugh fuck it I'm resubbing to eve +ham He didn't see his shadow. We get an early spring yay +ham I did. One slice and one breadstick. Lol +ham Hey ! I want you ! I crave you ! I miss you ! I need you ! I love you, Ahmad Saeed al Hallaq ... +ham Is there any training tomorrow? +spam URGENT! Your mobile No *********** WON a £2,000 Bonus Caller Prize on 02/06/03! This is the 2nd attempt to reach YOU! Call 09066362220 ASAP! BOX97N7QP, 150ppm +ham Pass dis to all ur contacts n see wat u get! Red;i'm in luv wid u. Blue;u put a smile on my face. Purple;u r realy hot. Pink;u r so swt. Orange;i thnk i lyk u. Green;i realy wana go out wid u. Yelow;i wnt u bck. Black;i'm jealous of u. Brown;i miss you Nw plz giv me one color +ham Cos daddy arranging time c wat time fetch ü mah... +ham Then. You are eldest know. +ham Who's there say hi to our drugdealer +ham Its hard to believe things like this. All can say lie but think twice before saying anything to me. +spam Eerie Nokia tones 4u, rply TONE TITLE to 8007 eg TONE DRACULA to 8007 Titles: GHOST, ADDAMSFA, MUNSTERS, EXORCIST, TWILIGHT www.getzed.co.uk POBox36504W45WQ 150p +spam Sexy Singles are waiting for you! Text your AGE followed by your GENDER as wither M or F E.G.23F. For gay men text your AGE followed by a G. e.g.23G. +ham Good night my dear.. Sleepwell&Take care +ham That is wondarfull song +spam FreeMsg: Claim ur 250 SMS messages-Text OK to 84025 now!Use web2mobile 2 ur mates etc. Join Txt250.com for 1.50p/wk. T&C BOX139, LA32WU. 16 . Remove txtX or stop +ham Yar lor actually we quite fast... Cos da ge slow wat... Haha... +ham Must come later.. I normally bathe him in da afternoon mah.. +ham Trust me. Even if isn't there, its there. +ham Hey hun-onbus goin 2 meet him. He wants 2go out 4a meal but I donyt feel like it cuz have 2 get last bus home!But hes sweet latelyxxx +spam 85233 FREE>Ringtone!Reply REAL +ham I can take you at like noon +ham Where is it. Is there any opening for mca. +ham I'm aight. Wat's happening on your side. +ham I'm done oredi... +ham you are sweet as well, princess. Please tell me your likes and dislikes in bed... +ham How are you. Wish you a great semester +ham Moji i love you more than words. Have a rich day +ham Dude how do you like the buff wind. +ham "alright babe, justthought i’d sayhey! how u doin?nearly the endof me wk offdam nevamind!We will have 2Hook up sn if uwant m8? loveJen x." +spam Well done ENGLAND! Get the official poly ringtone or colour flag on yer mobile! text TONE or FLAG to 84199 NOW! Opt-out txt ENG STOP. Box39822 W111WX £1.50 +ham No i'm not. I can't give you everything you want and need. You actually could do better for yourself on yor own--you've got more money than i do. I can't get work, i can't get a man, i can't pay the rent, i can't even fill my fucking gas tank. yes, i'm stressed and depressed. I didn't even call home for thanksgiving cuz i'll have to tell them i,m up to nothing. +ham S:-)kallis wont play in first two odi:-) +ham Then get some cash together and I'll text jason +ham Oh, my love, it's soooo good to hear from you. Omg I missed you so much today. I'm sorry your having problems with the provider but thank you for tming me +spam Final Chance! Claim ur £150 worth of discount vouchers today! Text YES to 85023 now! SavaMob, member offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Subs 16 +spam PRIVATE! Your 2004 Account Statement for 07742676969 shows 786 unredeemed Bonus Points. To claim call 08719180248 Identifier Code: 45239 Expires +ham Probably, want to pick up more? +ham I'm done... +ham Are you the cutest girl in the world or what +ham No dice, art class 6 thru 9 :( thanks though. Any idea what time I should come tomorrow? +spam SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= ***** unsubscribe with STOP. no extra charge. help:08700469649. PO BOX420. IP4 5WE +ham Oh Howda gud gud.. Mathe en samachara chikku:-) +ham I thk 530 lor. But dunno can get tickets a not. Wat u doing now? +ham Audrie lousy autocorrect +ham Its a site to simulate the test. It just gives you very tough questions to test your readiness. +ham Anyway seriously hit me up when you're back because otherwise I have to light up with armand and he always has shit and/or is vomiting +ham I fetch yun or u fetch? +ham Thank you. I like you as well... +ham Hmmm ... And imagine after you've come home from that having to rub my feet, make me dinner and help me get ready for my date ! Are you sure your ready for that kind of life ? +spam FREE2DAY sexy St George's Day pic of Jordan!Txt PIC to 89080 dont miss out, then every wk a saucy celeb!4 more pics c PocketBabe.co.uk 0870241182716 £3/wk +ham Lara said she can loan me <#> . +ham Do we have any spare power supplies +ham Yar he quite clever but aft many guesses lor. He got ask me 2 bring but i thk darren not so willing 2 go. Aiya they thk leona still not attach wat. +spam You are a winner you have been specially selected to receive £1000 cash or a £2000 award. Speak to a live operator to claim call 087123002209am-7pm. Cost 10p +ham Yeah, don't go to bed, I'll be back before midnight +spam Sunshine Hols. To claim ur med holiday send a stamped self address envelope to Drinks on Us UK, PO Box 113, Bray, Wicklow, Eire. Quiz Starts Saturday! Unsub Stop +ham Well I wasn't available as I washob nobbing with last night so they had to ask Nickey Platt instead of me!; +ham It's that time of the week again, ryan +ham Wish u many many returns of the day.. Happy birthday vikky.. +spam U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.Idew.com SkillGame, 1Winaweek, age16. 150ppermessSubscription +ham I hope you know I'm still mad at you. +ham Argh my 3g is spotty, anyway the only thing I remember from the research we did was that province and sterling were the only problem-free places we looked at +ham In xam hall boy asked girl Tell me the starting term for dis answer I can den manage on my own After lot of hesitation n lookin around silently she said THE! intha ponnungale ipaditan;) +ham Do you know when the result. +spam +123 Congratulations - in this week's competition draw u have won the £1450 prize to claim just call 09050002311 b4280703. T&Cs/stop SMS 08718727868. Over 18 only 150ppm +ham Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOOD NIGHT +ham Sorry im getting up now, feel really bad- totally rejected that kinda me thing. +ham You do got a shitload of diamonds though +ham Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas +ham Well I'm going to be an aunty! +ham Mine here like all fr china then so noisy. +ham Later i guess. I needa do mcat study too. +ham S...from the training manual it show there is no tech process:)its all about password reset and troubleshooting:) +spam Your B4U voucher w/c 27/03 is MARSMS. Log onto www.B4Utele.com for discount credit. To opt out reply stop. Customer care call 08717168528 +ham Spoke with uncle john today. He strongly feels that you need to sacrifice to keep me here. He's going to call you. When he does, i beg you to just listen. Dont make any promises or make it clear things are not easy. And i need you to please let us work things out. As long as i keep expecting help, my creativity will be stifled so pls just keep him happy, no promises on your part. +ham If he started searching he will get job in few days.he have great potential and talent. +ham Carlos took a while (again), we leave in a minute +ham Well done and ! luv ya all +ham Then why you came to hostel. +ham K still are you loving me. +ham But i juz remembered i gotta bathe my dog today.. +ham After the drug she will be able to eat. +ham Alright took the morphine. Back in yo. +ham You see the requirements please +ham You stayin out of trouble stranger!!saw Dave the other day he’s sorted now!still with me bloke when u gona get a girl MR!ur mum still Thinks we will get 2GETHA! +spam FreeMsg: Hey - I'm Buffy. 25 and love to satisfy men. Home alone feeling randy. Reply 2 C my PIX! QlynnBV Help08700621170150p a msg Send stop to stop txts +spam Sunshine Hols. To claim ur med holiday send a stamped self address envelope to Drinks on Us UK, PO Box 113, Bray, Wicklow, Eire. Quiz Starts Saturday! Unsub Stop +ham So can collect ur laptop? +ham Ok. Can be later showing around 8-8:30 if you want + cld have drink before. Wld prefer not to spend money on nosh if you don't mind, as doing that nxt wk. +ham I will once i get home +ham Waaaat?? Lololo ok next time then! +ham The table's occupied, I'm waiting by the tree +ham I surely dont forgot to come:)i will always be in touch in with you:-) +ham Hi kindly give us back our documents which we submitted for loan from STAPATI +ham I dont have i shall buy one dear +ham Oh god i am happy to see your message after 3 days +ham What year. And how many miles. +ham Hey cutie. How goes it? Here in WALES its kinda ok. There is like hills and shit but i still avent killed myself. +ham Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...! +ham I think you should go the honesty road. Call the bank tomorrow. Its the tough decisions that make us great people. +spam FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 87077 Get txting and tell ur mates. zed POBox 36504 W45WQ norm150p/tone 16+ +ham No. Its not specialisation. Can work but its slave labor. Will look for it this month sha cos no shakara 4 beggar. +ham Is she replying. Has boye changed his phone number +ham 1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press <#> . 5)Gently remove Ur hand.. Its interesting..:) +ham hi my darlin im on my way to London and we have just been smashed into by another driver! and have a big dent! im really missing u what have u been up to? xxx +ham Nothing really, just making sure everybody's up to speed +ham I'm not coming home 4 dinner. +ham Thank you. And by the way, I just lost. +ham Yes.he have good crickiting mind +ham Thx. All will be well in a few months +spam Shop till u Drop, IS IT YOU, either 10K, 5K, £500 Cash or £100 Travel voucher, Call now, 09064011000. NTT PO Box CR01327BT fixedline Cost 150ppm mobile vary +ham "CAN I PLEASE COME UP NOW IMIN TOWN.DONTMATTER IF URGOIN OUTL8R,JUST REALLYNEED 2DOCD.PLEASE DONTPLEASE DONTIGNORE MYCALLS,U NO THECD ISV.IMPORTANT TOME 4 2MORO" +ham I wont. So wat's wit the guys +ham Yavnt tried yet and never played original either +ham Hiya, had a good day? Have you spoken to since the weekend? +ham See? I thought it all through +ham I'm at work. Please call +ham get ready to moan and scream :) +ham Oh k :)why you got job then whats up? +ham I don,t think so. You don't need to be going out that late on a school night. ESPECIALLY when the one class you have is the one you missed last wednesday and probably failed a test in on friday +ham And popping <#> ibuprofens was no help. +ham Babe ! How goes that day ? What are you doing ? Where are you ? I sip my cappuccino and think of you, my love ... I send a kiss to you from across the sea +ham Ok. +ham PS U no ur a grown up now right? +ham Chinatown got porridge, claypot rice, yam cake, fishhead beehoon... Either we eat cheap den go cafe n tok or go nydc or somethin... +ham I know a few people I can hit up and fuck to the yes +ham Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng +ham So is there anything specific I should be doing with regards to jaklin or what because idk what the fuck +ham Oh god. I'm gonna Google nearby cliffs now. +spam FREE camera phones with linerental from 4.49/month with 750 cross ntwk mins. 1/2 price txt bundle deals also avble. Call 08001950382 or call2optout/J MF +ham Yup i shd haf ard 10 pages if i add figures... Ü all got how many pages? +ham Ooh, 4got, i'm gonna start belly dancing in moseley weds 6.30 if u want 2 join me, they have a cafe too. +ham Thankyou so much for the call. I appreciate your care. +ham Congrats ! Treat pending.i am not on mail for 2 days.will mail once thru.Respect mother at home.check mails. +ham I called but no one pick up e phone. I ask both of them already they said ok. +ham Hi my email address has changed now it is +ham V-aluable. A-ffectionate. L-oveable. E-ternal. N-oble. T-ruthful. I-ntimate. N-atural. E-namous. Happy "VALENTINES DAY" in advance +ham Not much, just some textin'. How bout you? +ham Bring it if you got it +ham I'm in a movie. Call me 4 wat? +ham Not sure I have the stomach for it ... +ham Haha... can... But i'm having dinner with my cousin... +ham A boy was late 2 home. His father: "POWER OF FRNDSHIP" +ham (And my man carlos is definitely coming by mu tonight, no excuses) +ham soon you will have the real thing princess! Do i make you wet? :) +ham Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday. +ham Haha, my legs and neck are killing me and my amigos are hoping to end the night with a burn, think I could swing by in like an hour? +spam URGENT! Your mobile No 07xxxxxxxxx won a £2,000 bonus caller prize on 02/06/03! this is the 2nd attempt to reach YOU! call 09066362231 ASAP! BOX97N7QP, 150PPM +ham Usually the body takes care of it buy making sure it doesnt progress. Can we pls continue this talk on saturday. +spam URGENT!! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham Hmm well, night night +ham Just wanted to say holy shit you guys weren't kidding about this bud +ham Just gettin a bit arty with my collages at the mo, well tryin 2 ne way! Got a roast in a min lovely i shall enjoy that! +ham This is one of the days you have a billion classes, right? +ham Goodmorning, today i am late for 2hrs. Because of back pain. +ham Ok then i'll let him noe later n ask him call u tmr... +ham Prabha..i'm soryda..realy..frm heart i'm sory +ham OK i'm waliking ard now... Do u wan me 2 buy anything go ur house? +ham * Will have two more cartons off u and is very pleased with shelves +ham Nice talking to you! please dont forget my pix :) i want to see all of you... +spam You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712379 between 10am-7pm Cost 10p +ham But really quite funny lor wat... Then u shd haf run shorter distance wat... +ham I notice you like looking in the shit mirror youre turning into a right freak +ham Great. I was getting worried about you. Just know that a wonderful and caring person like you will have only the best in life. Know that u r wonderful and God's love is yours. +spam Thanks for your ringtone order, ref number K718. Your mobile will be charged £4.50. Should your tone not arrive please call customer services on 09065069120 +ham I prefer my free days... Tues, wed, fri oso can... Ü ask those workin lor... +ham Alrite jod hows the revision goin? Keris bin doin a smidgin. N e way u wanna cum over after college?xx +ham If you have belive me. Come to my home. +ham Oh k.k..where did you take test? +ham Those were my exact intentions +ham haha but no money leh... Later got to go for tuition... Haha and looking for empty slots for driving lessons +ham Hey... Thk we juz go accordin to wat we discussed yest lor, except no kb on sun... Cos there's nt much lesson to go if we attend kb on sat... +ham K, wen ur free come to my home and also tel vikky i hav sent mail to him also.. Better come evening il be free today aftr 6pm..:-) +ham Nothing just getting msgs by dis name wit different no's.. +ham Good Morning plz call me sir +ham What's your room number again? Wanna make sure I'm knocking on the right door +ham "Si.como no?!listened2the plaid album-quite gd&the new air1 which is hilarious-also bought”braindance”a comp.ofstuff on aphex’s ;abel,u hav2hear it!c u sn xxxx" +ham Pls tell nelson that the bb's are no longer comin. The money i was expecting aint coming +ham Give her something to drink, if she takes it and doesn't vomit then you her temp might drop. If she unmits however let me know. +ham Think you sent the text to the home phone. That cant display texts. If you still want to send it his number is +ham Every day i use to sleep after <#> so only. +ham K I'll call you when I'm close +ham U buy newspapers already? +ham Nope wif my sis lor... Aft bathing my dog then i can bathe... Looks like it's going 2 rain soon. +ham Boo I'm on my way to my moms. She's making tortilla soup. Yummmm +ham No management puzzeles. +ham How did you find out in a way that didn't include all of these details +spam Hi ya babe x u 4goten bout me?' scammers getting smart..Though this is a regular vodafone no, if you respond you get further prem rate msg/subscription. Other nos used also. Beware! +spam Back 2 work 2morro half term over! Can U C me 2nite 4 some sexy passion B4 I have 2 go back? Chat NOW 09099726481 Luv DENA Calls £1/minMobsmoreLKPOBOX177HP51FL +ham will you like to be spoiled? :) +spam Thanks for your ringtone order, ref number R836. Your mobile will be charged £4.50. Should your tone not arrive please call customer services on 09065069154 +ham I am getting threats from your sales executive Shifad as i raised complaint against him. Its an official message. +ham hope things went well at 'doctors' ;) reminds me i still need 2go.did u c d little thing i left in the lounge? +ham Den wat will e schedule b lk on sun? +ham Lol enjoy role playing much? +ham Ok. Me watching tv too. +ham I just lov this line: "Hurt me with the truth, I don't mind,i wil tolerat.bcs ur my someone..... But, Never comfort me with a lie" gud ni8 and sweet dreams +ham Just checked out, heading out to drop off my stuff now +ham Here got lots of hair dresser fr china. +ham Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. +ham Ill call you evening ill some ideas. +spam SplashMobile: Choose from 1000s of gr8 tones each wk! This is a subscrition service with weekly tones costing 300p. U have one credit - kick back and ENJOY +ham Did you show him and wot did he say or could u not c him 4 dust? +ham It should take about <#> min +spam Not heard from U4 a while. Call 4 rude chat private line 01223585334 to cum. Wan 2C pics of me gettin shagged then text PIX to 8552. 2End send STOP 8552 SAM xxx +ham Ok . . now i am in bus. . If i come soon i will come otherwise tomorrow +ham I cant pick the phone right now. Pls send a message +spam FREE entry into our £250 weekly comp just send the word ENTER to 88877 NOW. 18 T&C www.textcomp.com +ham Finish liao... U? +spam 88066 FROM 88066 LOST 3POUND HELP +ham Haha i think i did too +ham U know we watchin at lido? +ham Life spend with someone for a lifetime may be meaningless but a few moments spent with someone who really love you means more than life itself.. +ham Haha awesome, I've been to 4u a couple times. Who all's coming? +ham Cold. Dont be sad dear +ham Think I could stop by in like an hour or so? My roommate's looking to stock up for a trip +ham Is that on the telly? No its Brdget Jones! +ham Love you aathi..love u lot.. +ham Hello! How r u? Im bored. Inever thought id get bored with the tv but I am. Tell me something exciting has happened there? Anything! =/ +ham Hmm...Bad news...Hype park plaza $700 studio taken...Only left 2 bedrm-$900... +ham Sorry, I'll call later in meeting +ham R ü comin back for dinner? +ham I hav almost reached. Call, i m unable to connect u. +ham Whom you waited for yesterday +ham I reach home safe n sound liao... +ham Velly good, yes please! +ham Hi, wkend ok but journey terrible. Wk not good as have huge back log of marking to do +ham I have had two more letters from . I will copy them for you cos one has a message for you. Speak soon +ham Alex knows a guy who sells mids but he's down in south tampa and I don't think I could set it up before like 8 +ham Dont you have message offer +spam Had your mobile 11mths ? Update for FREE to Oranges latest colour camera mobiles & unlimited weekend calls. Call Mobile Upd8 on freefone 08000839402 or 2StopTx +ham HEY THERE BABE, HOW U DOIN? WOT U UP 2 2NITE LOVE ANNIE X. +ham Remind me how to get there and I shall do so +ham :-( that's not v romantic! +ham Hello. Damn this christmas thing. I think i have decided to keep this mp3 that doesnt work. +spam You have 1 new message. Please call 08718738034. +ham HI DARLIN IM MISSIN U HOPE YOU ARE HAVING A GOOD TIME. WHEN ARE U BACK AND WHAT TIME IF U CAN GIVE ME A CALL AT HOME. JESS XX +spam Hi - this is your Mailbox Messaging SMS alert. You have 4 messages. You have 21 matches. Please call back on 09056242159 to retrieve your messages and matches +ham Draw va?i dont think so:) +ham Dont pick up d call when something important is There to tell. Hrishi +spam Congrats! 1 year special cinema pass for 2 is yours. call 09061209465 now! C Suprman V, Matrix3, StarWars3, etc all 4 FREE! bx420-ip4-5we. 150pm. Dont miss out! +ham Nothin comes to my mind. Ü help me buy hanger lor. Ur laptop not heavy? +ham <#> , that's all? Guess that's easy enough +ham We can make a baby in yo tho +ham Should I tell my friend not to come round til like <#> ish? +ham Friendship poem: Dear O Dear U R Not Near But I Can Hear Dont Get Fear Live With Cheer No More Tear U R Always my Dear. Gud ni8 +ham Still in the area of the restaurant. Ill try to come back soon +ham Aight that'll work, thanks +spam WIN a year supply of CDs 4 a store of ur choice worth £500 & enter our £100 Weekly draw txt MUSIC to 87066 Ts&Cs www.Ldew.com.subs16+1win150ppmx3 +spam Moby Pub Quiz.Win a £100 High Street prize if u know who the new Duchess of Cornwall will be? Txt her first name to 82277.unsub STOP £1.50 008704050406 SP Arrow +ham I have 2 sleeping bags, 1 blanket and paper and phone details. Anything else? +spam You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+ +spam Congratulations! Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08718726971 NOW! Only 10p per minute. BT-national-rate. +spam tddnewsletter@emc1.co.uk (More games from TheDailyDraw) Dear Helen, Dozens of Free Games - with great prizesWith.. +ham So what do you guys do. +ham Also that chat was awesome but don't make it regular unless you can see her in person +ham That's significant but dont worry. +ham That's cause your old. I live to be high. +ham Waqt se pehle or naseeb se zyada kisi ko kuch nahi milta,Zindgi wo nahi he jo hum sochte hai Zindgi wo hai jo ham jeetey hai.......... +ham On the way to office da.. +ham In which place do you want da. +ham This pain couldn't have come at a worse time. +ham Ok... +ham Should I be stalking u? +ham Sorry dude. Dont know how i forgot. Even after Dan reminded me. Sorry. Hope you guys had fun. +ham Ok lor. +ham Apps class varaya elaya. +ham The Xmas story is peace.. The Xmas msg is love.. The Xmas miracle is jesus.. Hav a blessed month ahead & wish U Merry Xmas... +spam URGENT! Your mobile number *************** WON a £2000 Bonus Caller prize on 10/06/03! This is the 2nd attempt to reach you! Call 09066368753 ASAP! Box 97N7QP, 150ppm +ham That day you asked about anand number. Why:-) +ham Am surfing online store. For offers do you want to buy any thing. +ham Long beach lor. Expected... U having dinner now? +ham At home by the way +ham We are both fine. Thanks +ham What happen to her tell the truth +ham Do you like Italian food? +ham Which is weird because I know I had it at one point +ham "Aww you must be nearly dead!Well Jez isComing over toDo some workAnd that whillTake forever!" +ham Tell your friends what you plan to do on Valentines day @ <URL> +ham Alright, see you in a bit +ham Cheers for the message Zogtorius. I’ve been staring at my phone for an age deciding whether to text or not. +ham I will take care of financial problem.i will help:) +ham Tell dear what happen to you. Why you talking to me like an alian +spam Double your mins & txts on Orange or 1/2 price linerental - Motorola and SonyEricsson with B/Tooth FREE-Nokia FREE Call MobileUpd8 on 08000839402 or2optout/HV9D +ham 1) Go to write msg 2) Put on Dictionary mode 3)Cover the screen with hand, 4)Press <#> . 5)Gently remove Ur hand.. Its interesting..:) +ham Okie... +ham Hi this is yijue, can i meet u at 11 tmr? +ham Its posible dnt live in <#> century cm frwd n thnk different +ham But i dint slept in afternoon. +ham That seems unnecessarily affectionate +ham Yar else i'll thk of all sorts of funny things. +ham You will be in the place of that man +spam Download as many ringtones as u like no restrictions, 1000s 2 choose. U can even send 2 yr buddys. Txt Sir to 80082 £3 +ham Thats cool. How was your day? +spam Please CALL 08712402902 immediately as there is an urgent message waiting for you. +ham R we going with the <#> bus? +ham Hello, my love ! How went your day ? Are you alright ? I think of you, my sweet and send a jolt to your heart to remind you ... I LOVE YOU! Can you hear it ? I screamed it across the sea for all the world to hear. Ahmad al Hallaq is loved ! and owned ! *possessive passionate kiss* +ham No..he joined today itself. +ham Okay same with me. Well thanks for the clarification +ham I'll talk to the others and probably just come early tomorrow then +spam Spook up your mob with a Halloween collection of a logo & pic message plus a free eerie tone, txt CARD SPOOK to 8007 zed 08701417012150p per logo/pic +ham Had the money issue weigh me down but thanks to you, I can breathe easier now. I.ll make sure you dont regret it. Thanks. +ham Hi. I'm sorry i missed your call. Can you pls call back. +ham How are you doing? Hope you've settled in for the new school year. Just wishin you a gr8 day +spam Fantasy Football is back on your TV. Go to Sky Gamestar on Sky Active and play £250k Dream Team. Scoring starts on Saturday, so register now!SKY OPT OUT to 88088 +ham Ok then no need to tell me anything i am going to sleep good night +ham Ok try to do week end course in coimbatore. +spam Tone Club: Your subs has now expired 2 re-sub reply MONOC 4 monos or POLYC 4 polys 1 weekly @ 150p per week Txt STOP 2 stop This msg free Stream 0871212025016 +ham V nice! Off 2 sheffield tom 2 air my opinions on categories 2 b used 2 measure ethnicity in next census. Busy transcribing. :-) +ham If you r @ home then come down within 5 min +ham A Boy loved a gal. He propsd bt she didnt mind. He gv lv lttrs, Bt her frnds threw thm. Again d boy decided 2 aproach d gal , dt time a truck was speeding towards d gal. Wn it was about 2 hit d girl,d boy ran like hell n saved her. She asked 'hw cn u run so fast?' D boy replied "Boost is d secret of my energy" n instantly d girl shouted "our energy" n Thy lived happily 2gthr drinking boost evrydy Moral of d story:- I hv free msgs:D;): gud ni8 +ham That day ü say ü cut ur hair at paragon, is it called hair sense? Do ü noe how much is a hair cut? +ham Hmm, too many of them unfortunately... Pics obviously arent hot cakes. Its kinda fun tho +ham Watching tv lor... Y she so funny we bluff her 4 wat. Izzit because she thk it's impossible between us? +spam XMAS Prize draws! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09058094565 from land line. Valid 12hrs only +ham Dunno lei he neva say... +ham Thanx 4 2day! U r a goodmate I THINK UR RITE SARY! ASUSUAL!1 U CHEERED ME UP! LOVE U FRANYxxxxx +ham I'm on my way home. Went to change batt 4 my watch then go shop a bit lor. +spam YES! The only place in town to meet exciting adult singles is now in the UK. Txt CHAT to 86688 now! 150p/Msg. +ham Hi, Mobile no. <#> has added you in their contact list on www.fullonsms.com It s a great place to send free sms to people For more visit fullonsms.com +ham Good evening Sir, hope you are having a nice day. I wanted to bring it to your notice that I have been late in paying rent for the past few months and have had to pay a $ <#> charge. I felt it would be inconsiderate of me to nag about something you give at great cost to yourself and that's why i didnt speak up. I however am in a recession and wont be able to pay the charge this month hence my askin well ahead of month's end. Can you please help. Thank you for everything. +ham If i let you do this, i want you in the house by 8am. +ham Best line said in Love: . "I will wait till the day I can forget u Or The day u realize that u cannot forget me."... Gn +ham I will reach before ten morning +ham Your pussy is perfect! +ham Sorry, I'll call later +spam Someone has contacted our dating service and entered your phone becausethey fancy you! To find out who it is call from a landline 09058098002. PoBox1, W14RG 150p +ham No message..no responce..what happend? +ham Also where's the piece +ham wiskey Brandy Rum Gin Beer Vodka Scotch Shampain Wine "KUDI"yarasu dhina vaazhthukkal. .. +ham Boo. How's things? I'm back at home and a little bored already :-( +ham First has she gained more than <#> kg since she took in. Second has she done the blood sugar tests. If she has and its ok and her blood pressure is within normal limits then no worries +ham PICK UR FONE UP NOW U DUMB? +ham Thanks da thangam, i feel very very happy dear. I also miss you da. +ham Okey doke. I'm at home, but not dressed cos laying around ill! Speak to you later bout times and stuff. +ham I don't run away frm u... I walk slowly & it kills me that u don't care enough to stop me... +ham Babe, I'm back ... Come back to me ... +ham Well you told others you'd marry them... +ham Neshanth..tel me who r u? +ham YO YO YO BYATCH WHASSUP? +ham Oh... Kay... On sat right? +ham Hi! This is Roger from CL. How are you? +spam Babe: U want me dont u baby! Im nasty and have a thing 4 filthyguys. Fancy a rude time with a sexy bitch. How about we go slo n hard! Txt XXX SLO(4msgs) +ham Oh oh... Wasted... Den muz chiong on sat n sun liao... +ham Jesus christ bitch I'm trying to give you drugs answer your fucking phone +ham Please give it 2 or i will pick it up on Tuesday evening about 8 if that is ok. +ham I'm meeting Darren... +ham One of best dialogue in cute reltnship..!! "Wen i Die, Dont Come Near My Body..!! Bcoz My Hands May Not Come 2 Wipe Ur Tears Off That Time..!Gud ni8 +ham Solve d Case : A Man Was Found Murdered On <DECIMAL> . <#> AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant. +ham Dear where you will be when i reach there +ham Aww that's the first time u said u missed me without asking if I missed u first. You DO love me! :) +ham Ok... Thanx... Gd nite 2 ü too... +ham Come to me right now, Ahmad +spam I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over. +ham Lol please do. Actually send a pic of yourself right now. I wanna see. Pose with a comb and hair dryer or something. +ham O was not into fps then. +ham Huh means computational science... Y they like dat one push here n there... +ham Could you not read me, my Love ? I answered you +ham Oh... Lk tt den we take e one tt ends at cine lor... Dun wan yogasana oso can... +ham Madam,regret disturbance.might receive a reference check from DLF Premarica.kindly be informed.Rgds,Rakhesh,Kerala. +spam SMS SERVICES For your inclusive text credits pls gotto www.comuk.net login 3qxj9 unsubscribe with STOP no extra charge help 08702840625 comuk.220cm2 9AE +ham Oic... Then better quickly go bathe n settle down... +ham Err... Cud do. I'm going to at 8pm. I haven't got a way to contact him until then. +ham A bloo bloo bloo I'll miss the first bowl +ham Lmao but its so fun... +ham Oh k k:)but he is not a big hitter.anyway good +ham Hey!!! I almost forgot ... Happy B-day babe ! I love ya!! +spam Valentines Day Special! Win over £1000 in our quiz and take your partner on the trip of a lifetime! Send GO to 83600 now. 150p/msg rcvd. CustCare:08718720201 +ham Do you think i can move <#> in a week +ham She.s find. I sent you an offline message to know how anjola's now. +spam Guess who am I?This is the first time I created a web page WWW.ASJESUS.COM read all I wrote. I'm waiting for your opinions. I want to be your friend 1/1 +ham How was txting and driving +ham That's good. Lets thank God. Please complete the drug. Have lots of water. And have a beautiful day. +ham Really dun bluff me leh... U sleep early too. Nite... +ham Indians r poor but India is not a poor country. Says one of the swiss bank directors. He says that " <#> lac crore" of Indian money is deposited in swiss banks which can be used for 'taxless' budget for <#> yrs. Can give <#> crore jobs to all Indians. From any village to Delhi 4 lane roads. Forever free power suply to more than <#> social projects. Every citizen can get monthly <#> /- for <#> yrs. No need of World Bank & IMF loan. Think how our money is blocked by rich politicians. We have full rights against corrupt politicians. Itna forward karo ki pura INDIA padhe.g.m." +ham Uncle boye. I need movies oh. Guide me. Plus you know torrents are not particularly legal here. And the system is slowing down. What should i do. Have a gr8 day. Plus have you started cos i dont meet you online. How was the honey moon. +ham Oh ya ya. I remember da. . +ham Btw regarding that we should really try to see if anyone else can be our 4th guy before we commit to a random dude +spam For ur chance to win £250 cash every wk TXT: PLAY to 83370. T's&C's www.music-trivia.net custcare 08715705022, 1x150p/wk. +ham I not busy juz dun wan 2 go so early.. Hee.. +ham Rightio. 11.48 it is then. Well arent we all up bright and early this morning. +ham Great. I'm in church now, will holla when i get out +ham Back in brum! Thanks for putting us up and keeping us all and happy. See you soon +ham I donno if they are scorable +ham <#> great loxahatchee xmas tree burning update: you can totally see stars here +ham Yes but i dont care! I need you bad, princess! +ham The guy (kadeem) hasn't been selling since the break, I know one other guy but he's paranoid as fuck and doesn't like selling without me there and I can't be up there til late tonight +ham Sorry, I'll call later +ham Tmr then ü brin lar... Aiya later i come n c lar... Mayb ü neva set properly ü got da help sheet wif ü... +ham Do u knw dis no. <#> ? +ham Then she dun believe wat? +ham K..give back my thanks. +ham I know complain num only..bettr directly go to bsnl offc nd apply for it.. +ham Okay. I've seen it. So i should pick it on friday? +ham How much she payed. Suganya. +ham Left dessert. U wan me 2 go suntec look 4 u? +ham Abeg, make profit. But its a start. Are you using it to get sponsors for the next event? +ham Onum ela pa. Normal than. +ham K.k..how is your sister kids? +ham Cool, I'll text you when I'm on the way +ham Nope. Meanwhile she talk say make i greet you. +ham i cant talk to you now.i will call when i can.dont keep calling. +ham Anything lar... +ham Rose needs water, season needs change, poet needs imagination..My phone needs ur sms and i need ur lovely frndship forever.... +ham Good afternoon, babe. How goes that day ? Any job prospects yet ? I miss you, my love ... *sighs* ... :-( +ham They will pick up and drop in car.so no problem.. +ham S.i think he is waste for rr.. +ham He is world famamus.... +ham Is there coming friday is leave for pongal?do you get any news from your work place. +ham Lol well don't do it without me. We could have a big sale together. +ham * Am on my way +ham Eat at old airport road... But now 630 oredi... Got a lot of pple... +ham sry can't talk on phone, with parents +spam Final Chance! Claim ur £150 worth of discount vouchers today! Text YES to 85023 now! SavaMob, member offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Subs 16 +ham Ok lor wat time ü finish? +ham Princess, i like to make love <#> times per night. Hope thats not a problem! +ham Mm i am on the way to railway +ham i dnt wnt to tlk wid u +ham I'm done. I'm sorry. I hope your next space gives you everything you want. Remember all the furniture is yours. If i'm not around when you move it, just lock all the locks and leave the key with jenne. +ham Not yet. Just i'd like to keep in touch and it will be the easiest way to do that from barcelona. By the way how ru and how is the house? +spam Sppok up ur mob with a Halloween collection of nokia logo&pic message plus a FREE eerie tone, txt CARD SPOOK to 8007 +spam Urgent! call 09066612661 from landline. Your complementary 4* Tenerife Holiday or £10,000 cash await collection SAE T&Cs PO Box 3 WA14 2PX 150ppm 18+ Sender: Hol Offer +ham K.:)do it at evening da:)urgent:) +ham Pansy! You've been living in a jungle for two years! Its my driving you should be more worried about! +ham Mm have some kanji dont eat anything heavy ok +ham Only if you promise your getting out as SOON as you can. And you'll text me in the morning to let me know you made it in ok. +ham Lol that's different. I don't go trying to find every real life photo you ever took. +ham I dont thnk its a wrong calling between us +ham K ill drink.pa then what doing. I need srs model pls send it to my mail id pa. +ham Aiyah e rain like quite big leh. If drizzling i can at least run home. +ham I have 2 docs appointments next week.:/ I'm tired of them shoving stuff up me. Ugh why couldn't I have had a normal body? +ham Dun b sad.. It's over.. Dun thk abt it already. Concentrate on ur other papers k. +ham Greetings me, ! Consider yourself excused. +ham No drama Pls.i have had enough from you and family while i am struggling in the hot sun in a strange place.No reason why there should be an ego of not going 'IF NOT INVITED' when actually its necessity to go.wait for very serious reppurcussions. +ham they released another Italian one today and it has a cosign option +ham You at mu? You should try to figure out how much money everyone has for gas and alcohol, jay and I are trying to figure out our weed budget +spam WINNER! As a valued network customer you hvae been selected to receive a £900 reward! To collect call 09061701444. Valid 24 hours only. ACL03530150PM +ham HCL chennai requires FRESHERS for voice process.Excellent english needed.Salary upto <#> .Call Ms.Suman <#> for Telephonic interview -via Indyarocks.com +ham Dai what this da.. Can i send my resume to this id. +ham I know where the <#> is, I'll be there around 5 +ham Yup i've finished c ü there... +ham Remember to ask alex about his pizza +ham No da..today also i forgot.. +ham Ola would get back to you maybe not today but I ve told him you can be his direct link in the US in getting cars he bids for online, you arrange shipping and you get a cut. Or U????? For a partnership where U????? Invest money for shipping and he takes care of the rest!U??Wud b self reliant soon dnt worry +ham Fwiw the reason I'm only around when it's time to smoke is that because of gas I can only afford to be around when someone tells me to be and that apparently only happens when somebody wants to light up +ham Hello, my boytoy! I made it home and my constant thought is of you, my love. I hope your having a nice visit but I can't wait till you come home to me ...*kiss* +ham Congrats kano..whr s the treat maga? +ham Who u talking about? +ham Yup... +ham Ok... +ham U wake up already? Wat u doing? U picking us up later rite? I'm taking sq825, reaching ard 7 smth 8 like dat. U can check e arrival time. C ya soon... +ham Yunny i'm walking in citylink now ü faster come down... Me very hungry... +ham Er yep sure. Props? +ham Hiya , have u been paying money into my account? If so, thanks. Got a pleasant surprise when i checked my balance -u c, i don't get statements 4 that acc +spam U have won a nokia 6230 plus a free digital camera. This is what u get when u win our FREE auction. To take part send NOKIA to 83383 now. POBOX114/14TCR/W1 16 +ham Ok ill send you with in <DECIMAL> ok. +ham Bognor it is! Should be splendid at this time of year. +ham Yes.i'm in office da:) +ham Sorry, I'll call later +ham Joy's father is John. Then John is the NAME of Joy's father. Mandan +ham Ok. I only ask abt e movie. U wan ktv oso? +ham Misplaced your number and was sending texts to your old number. Wondering why i've not heard from you this year. All the best in your mcat. Got this number from my atlanta friends +ham Sorry, I'll call later +ham Dunno lei... I might b eatin wif my frens... If ü wan to eat then i wait 4 ü lar +ham Sorry, I'll call later +spam FREE entry into our £250 weekly comp just send the word WIN to 80086 NOW. 18 T&C www.txttowin.co.uk +ham Say this slowly.? GOD,I LOVE YOU & I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people & u c miracle tomorrow, do it,pls,pls do it... +ham Do u noe how 2 send files between 2 computers? +ham Mmmmm ... I loved waking to your words this morning ! I miss you too, my Love. I hope your day goes well and you are happy. I wait for us to be together again +ham jay says he'll put in <#> +ham Can you just come in for a sec? There's somebody here I want you to see +ham So the sun is anti sleep medicine. +ham What's happening with you. Have you gotten a job and have you begun registration for permanent residency +ham Yup ok... +ham Glad it went well :) come over at 11 then we'll have plenty of time before claire goes to work. +ham Ok enjoy . R u there in home. +ham Can you pls pls send me a mail on all you know about relatives coming to deliver here? All you know about costs, risks, benefits and anything else. Thanks. +ham You do what all you like +ham That's y we haf to combine n c how lor... +ham The monthly amount is not that terrible and you will not pay anything till 6months after finishing school. +ham Hmmm:)how many players selected? +ham They said if its gonna snow, it will start around 8 or 9 pm tonite! They are predicting an inch of accumulation. +ham I dont. Can you send it to me. Plus how's mode. +ham Aiyo please ü got time meh. +ham Package all your programs well +ham She is our sister.. She belongs 2 our family.. She is d hope of tomorrow.. Pray 4 her,who was fated 4 d Shoranur train incident. Lets hold our hands together & fuelled by love & concern prior 2 her grief & pain. Pls join in dis chain & pass it. STOP VIOLENCE AGAINST WOMEN. +ham So are you guys asking that i get that slippers again or its gone with last year +ham Company is very good.environment is terrific and food is really nice:) +spam Text82228>> Get more ringtones, logos and games from www.txt82228.com. Questions: info@txt82228.co.uk +ham Honestly i've just made a lovely cup of tea and promptly dropped my keys in it and then burnt my fingers getting them out! +ham Yup but not studying surfing lor. I'm in e lazy mode today. +ham Please sen :)my kind advice :-)please come here and try:-) +ham I'm done. C ü there. +ham Oh fine, I'll be by tonight +ham Ü give me some time to walk there. +ham I'll reach in ard 20 mins ok... +spam FreeMSG You have been awarded a FREE mini DIGITAL CAMERA, just reply SNAP to collect your prize! (quizclub Opt out? Stop 80122300p/wk SP:RWM Ph:08704050406) +ham Fuck babe ... What happened to you ? How come you never came back? +spam This message is brought to you by GMW Ltd. and is not connected to the +ham Some friends want me to drive em someplace, probably take a while +ham I also thk too fast... Xy suggest one not me. U dun wan it's ok. Going 2 rain leh where got gd. +ham Are you still getting the goods. +ham And maybe some pressies +ham Yeah I am, so I'll leave maybe 7ish? +ham K..k..i'm also fine:)when will you complete the course? +ham Under the sea, there lays a rock. In the rock, there is an envelope. In the envelope, there is a paper. On the paper, there are 3 words... ' +ham I told her I had a Dr appt next week. She thinks I'm gonna die. I told her its just a check. Nothing to be worried about. But she didn't listen. +ham You in your room? I need a few +ham I dont want to hear anything +ham Hey. For me there is no leave on friday. Wait i will ask my superior and tell you.. +ham Ultimately tor motive tui achieve korli. +ham From 5 to 2 only my work timing. +ham … and don‘t worry we‘ll have finished by march … ish! +ham The house is on the water with a dock, a boat rolled up with a newscaster who dabbles in jazz flute behind the wheel +spam Congrats 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid ur mates, play java games, Dload polypH music, noline rentl. bx420. ip4. 5we. 150p +spam Your next amazing xxx PICSFREE1 video will be sent to you enjoy! If one vid is not enough for 2day text back the keyword PICSFREE1 to get the next video. +ham Now thats going to ruin your thesis! +ham In sch but neva mind u eat 1st lor.. +ham Hey whats up? U sleeping all morning? +ham Erm. I thought the contract ran out the4th of october. +ham I dunno until when... Lets go learn pilates... +spam U are subscribed to the best Mobile Content Service in the UK for £3 per ten days until you send STOP to 83435. Helpline 08706091795. +ham Yup i'm elaborating on the safety aspects and some other issues.. +spam 3 FREE TAROT TEXTS! Find out about your love life now! TRY 3 FOR FREE! Text CHANCE to 85555 16 only! After 3 Free, Msgs £1.50 each +ham Goodmorning, today i am late for 1hr. +ham Hi happy birthday. Hi hi hi hi hi hi hi +ham I will be outside office take all from there +ham If you don't respond imma assume you're still asleep and imma start calling n shit +ham Aight, see you in a bit +ham My superior telling that friday is leave for all other department except ours:)so it will be leave for you:)any way call waheed fathima hr and conform it:) +spam Join the UK's horniest Dogging service and u can have sex 2nite!. Just sign up and follow the instructions. Txt ENTRY to 69888 now! Nyt.EC2A.3LP.msg@150p +ham Lol I have to take it. member how I said my aunt flow didn't visit for 6 months? It's cause I developed ovarian cysts. Bc is the only way to shrink them. +ham Still work going on:)it is very small house. +ham My friend just got here and says he's upping his order by a few grams (he's got $ <#> ), when can you get here? +ham Tmr timin still da same wat cos i got lesson until 6... +ham That‘s the thing with apes, u can fight to the death to keep something, but the minute they have it when u let go, thats it! +spam Sunshine Quiz Wkly Q! Win a top Sony DVD player if u know which country Liverpool played in mid week? Txt ansr to 82277. £1.50 SP:Tyrone +ham No i'm not gonna be able to. || too late notice. || i'll be home in a few weeks anyway. || what are the plans +ham Got fujitsu, ibm, hp, toshiba... Got a lot of model how to say... +ham Okie... Thanx... +ham Gosh that , what a pain. Spose I better come then. +ham As usual..iam fine, happy & doing well..:) +ham Okie +ham So when you gonna get rimac access +ham "Im at arestaurant eating squid! i will be out about 10:30 wanna dosomething or is that to late?" +ham You call times job today ok umma and ask them to speed up +ham "HELLO U.CALL WEN U FINISH WRK.I FANCY MEETIN UP WIV U ALL TONITE AS I NEED A BREAK FROM DABOOKS. DID 4 HRS LAST NITE+2 TODAY OF WRK!" +ham R U &SAM P IN EACHOTHER. IF WE MEET WE CAN GO 2 MY HOUSE +ham :-) yeah! Lol. Luckily i didn't have a starring role like you! +ham Hello madam how are you ? +ham Awesome, text me when you're restocked +ham As usual..iam fine, happy & doing well..:) +spam Knock Knock Txt whose there to 80082 to enter r weekly draw 4 a £250 gift voucher 4 a store of yr choice. T&Cs www.tkls.com age16 to stoptxtstop£1.50/week +ham Yes. It's all innocent fun. O:-) +ham Thanks for sending this mental ability question.. +ham Sir, hope your day is going smoothly. i really hoped i wont have to bother you about this. I have some bills that i can't settle this month. I am out of all extra cash. I know this is a challenging time for you also but i have to let you know. +ham 2marrow only. Wed at <#> to 2 aha. +ham I went to ur hon lab but no one is there. +ham I cant pick the phone right now. Pls send a message +ham Hey pple...$700 or $900 for 5 nights...Excellent location wif breakfast hamper!!! +spam Hi - this is your Mailbox Messaging SMS alert. You have 40 matches. Please call back on 09056242159 to retrieve your messages and matches cc100p/min +ham How come? +ham Lol! Nah wasn't too bad thanks. Its good to b home but its been quite a reality check. Hows ur day been? Did u do anything with website? +ham Ok lor... +ham I'm coming home 4 dinner. +ham S da..al r above <#> +spam FREE RING TONE just text "POLYS" to 87131. Then every week get a new tone. 0870737910216yrs only £1.50/wk. +ham Unni thank you dear for the recharge..Rakhesh +ham I know I'm lacking on most of this particular dramastorm's details but for the most part I'm not worried about that +ham Haha... They cant what... At the most tmr forfeit... haha so how? +ham Hey there! Glad u r better now. I hear u treated urself to a digi cam, is it good? We r off at 9pm. Have a fab new year, c u in coupla wks! +ham No way I'm going back there! +spam URGENT! Your mobile No 077xxx WON a £2,000 Bonus Caller Prize on 02/06/03! This is the 2nd attempt to reach YOU! Call 09066362206 ASAP! BOX97N7QP, 150ppm +ham I WILL CAL YOU SIR. In meeting +ham That's what I love to hear :V see you sundayish, then +ham Sorry da thangam, very very sorry i am held up with prasad. +ham Tiwary to rcb.battle between bang and kochi. +ham Thank god they are in bed! +ham No I don't have cancer. Moms making a big deal out of a regular checkup aka pap smear +ham Am in gobi arts college +ham Why she wants to talk to me +ham Pandy joined 4w technologies today.he got job.. +spam You are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18 +ham They can try! They can get lost, in fact. Tee hee +ham Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No. +ham My friends use to call the same. +ham Sorry, I'll call later +ham Em, its olowoyey@ usc.edu have a great time in argentina. Not sad about secretary, everything is a blessing +ham It,,s a taxt massage....tie-pos argh ok! Lool! +ham Hi, can i please get a <#> dollar loan from you. I.ll pay you back by mid february. Pls. +ham You might want to pull out more just in case and just plan on not spending it if you can, I don't have much confidence in derek and taylor's money management +ham Do you like shaking your booty on the dance floor? +ham Text me when you get off, don't call, my phones having problems +ham No need for the drug anymore. +ham Sorry da:)i was thought of calling you lot of times:)lil busy.i will call you at noon.. +ham Its sarcasm.. .nt scarcasim +ham Great! I have to run now so ttyl! +ham Feel like trying kadeem again? :V +ham Dai <#> naal eruku. +ham Not yet chikku..wat abt u? +ham Ok... +ham Want to finally have lunch today? +ham Do you know when dad will be back? +spam Hello darling how are you today? I would love to have a chat, why dont you tell me what you look like and what you are in to sexy? +spam 8007 FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W4 5WQ norm 150p/tone 16+ +ham He remains a bro amongst bros +ham R u meeting da ge at nite tmr? +ham * Was a nice day and, impressively, i was sensible, went home early and now feel fine. Or am i just boring?! When's yours, i can't remember. +ham Why de. You looking good only:-).. +spam Wanna get laid 2nite? Want real Dogging locations sent direct to ur mobile? Join the UK's largest Dogging Network. Txt PARK to 69696 now! Nyt. ec2a. 3lp £1.50/msg +spam we tried to contact you re your response to our offer of a new nokia fone and camcorder hit reply or call 08000930705 for delivery +ham Yes. They replied my mail. I'm going to the management office later. Plus will in to bank later also.or on wednesday. +ham That's cool, I'll come by like <#> ish +ham Super msg da:)nalla timing. +ham Good afternoon, my boytoy ... How are you feeling today ? Better I hope? Are you being my good boy? Are you my obedient, slave? Do you please your Queen? +ham I am 6 ft. We will be a good combination! +ham I'm sick !! I'm needy !! I want you !! *pouts* *stomps feet* Where are you ?! *pouts* *stomps feet* I want my slave !! I want him now !! +ham * Am on a train back from northampton so i'm afraid not! +ham Where in abj are you serving. Are you staying with dad or alone. +ham Was playng 9 doors game and gt racing on phone lol +spam New Tones This week include: 1)McFly-All Ab.., 2) Sara Jorge-Shock.. 3) Will Smith-Switch.. To order follow instructions on next message +ham Solve d Case : A Man Was Found Murdered On <DECIMAL> . <#> AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant. +ham I'm on da bus going home... +ham I got a call from a landline number. . . I am asked to come to anna nagar . . . I will go in the afternoon +ham I'm okay. Chasing the dream. What's good. What are you doing next. +ham Yupz... I've oredi booked slots 4 my weekends liao... +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050003091 from land line. Claim C52. Valid 12hrs only +ham There r many model..sony ericson also der.. <#> ..it luks good bt i forgot modl no +ham Okie +ham Yes I know the cheesy songs from frosty the snowman :) +ham Ya ok, vikky vl c witin <#> mins and il reply u.. +spam sports fans - get the latest sports news str* 2 ur mobile 1 wk FREE PLUS a FREE TONE Txt SPORT ON to 8007 www.getzed.co.uk 0870141701216+ norm 4txt/120p +ham Hey tmr meet at bugis 930 ? +spam Urgent Urgent! We have 800 FREE flights to Europe to give away, call B4 10th Sept & take a friend 4 FREE. Call now to claim on 09050000555. BA128NNFWFLY150ppm +ham All these nice new shirts and the only thing I can wear them to is nudist themed ;_; you in mu? +ham Hey sexy buns! What of that day? No word from you this morning on YM ... :-( ... I think of you +ham And whenever you and i see we can still hook up too. +ham Nope but i'm going home now then go pump petrol lor... Like going 2 rain soon... +ham Can you use foreign stamps for whatever you send them off for? +spam FROM 88066 LOST £12 HELP +ham Oh baby of the house. How come you dont have any new pictures on facebook +ham Feb <#> is "I LOVE U" day. Send dis to all ur "VALUED FRNDS" evn me. If 3 comes back u'll gt married d person u luv! If u ignore dis u will lose ur luv 4 Evr +ham Hiya, sorry didn't hav signal. I haven't seen or heard from and neither has, which is unusual in itself! I'll put on the case and get him to sort it out! Hugs and snogs. +ham Omw back to tampa from west palm, you hear what happened? +ham Yup no more already... Thanx 4 printing n handing it up. +spam FreeMsg: Fancy a flirt? Reply DATE now & join the UKs fastest growing mobile dating service. Msgs rcvd just 25p to optout txt stop to 83021. Reply DATE now! +ham What i mean is do they come chase you out when its over or is it stated you can watch as many movies as you want. +ham S now only i took tablets . Reaction morning only. +spam Great NEW Offer - DOUBLE Mins & DOUBLE Txt on best Orange tariffs AND get latest camera phones 4 FREE! Call MobileUpd8 free on 08000839402 NOW! or 2stoptxt T&Cs +ham Nah, I'm a perpetual DD +ham Sorry de i went to shop. +spam Hope you enjoyed your new content. text stop to 61610 to unsubscribe. help:08712400602450p Provided by tones2you.co.uk +ham Wen ur lovable bcums angry wid u, dnt take it seriously.. Coz being angry is d most childish n true way of showing deep affection, care n luv!.. kettoda manda... Have nice day da. +ham Hey you still want to go for yogasana? Coz if we end at cine then can go bathe and hav the steam bath +ham Nope i'm not drivin... I neva develop da photos lei... +ham I am thinking of going down to reg for pract lessons.. Flung my advance.. Haha wat time u going? +ham Cool. I am <#> inches long. hope you like them big! +ham House-Maid is the murderer, coz the man was murdered on <#> th January.. As public holiday all govt.instituitions are closed,including post office..understand? +ham Okie.. Thanx.. +spam 18 days to Euro2004 kickoff! U will be kept informed of all the latest news and results daily. Unsubscribe send GET EURO STOP to 83222. +ham Go where n buy? Juz buy when we get there lar. +ham Ok lor... +ham I'm working technical support :)voice process. +ham It's justbeen overa week since we broke up and already our brains are going to mush! +ham Tunde, how are you doing. This is just wishing you a great day. Abiola. +ham Nope... C ü then... +ham No. But we'll do medical missions to nigeria +ham No i am not having not any movies in my laptop +ham Whatsup there. Dont u want to sleep +spam Urgent Please call 09066612661 from landline. £5000 cash or a luxury 4* Canary Islands Holiday await collection. T&Cs SAE award. 20M12AQ. 150ppm. 16+ “ +spam Urgent! Please call 09066612661 from your landline, your complimentary 4* Lux Costa Del Sol holiday or £1000 CASH await collection. ppm 150 SAE T&Cs James 28, EH74RR +ham I havent lei.. Next mon can? +ham Mm feeling sleepy. today itself i shall get that dear +ham How dare you stupid. I wont tell anything to you. Hear after i wont talk to you:-. +ham Do ü noe if ben is going? +ham Can you do a mag meeting this avo at some point? +ham I meant middle left or right? +ham Really? I crashed out cuddled on my sofa. +ham Hi Chachi tried calling u now unable to reach u .. Pl give me a missed cal once u c tiz msg Kanagu +ham I sent you the prices and do you mean the <#> g, +ham Are you this much buzy +ham Nothing. Can... +spam I don't know u and u don't know me. Send CHAT to 86688 now and let's find each other! Only 150p/Msg rcvd. HG/Suite342/2Lands/Row/W1J6HL LDN. 18 years or over. +ham No * am working on the ringing u thing but have whole houseful of screaming brats so * am pulling my hair out! Loving u +ham But my family not responding for anything. Now am in room not went to home for diwali but no one called me and why not coming. It makes me feel like died. +ham Tick, tick, tick ... Babe +ham R ü going 4 today's meeting? +ham K da:)how many page you want? +ham Ya had just now.onion roast. +ham Send his number and give reply tomorrow morning for why you said that to him like that ok +ham You said not now. No problem. When you can. Let me know. +ham Ok but tell me half an hr b4 u come i need 2 prepare. +ham Play w computer? Aiyah i tok 2 u lor? +ham Sat right? Okay thanks... +ham Derp. Which is worse, a dude who always wants to party or a dude who files a complaint about the three drug abusers he lives with +ham Ok Chinese food on its way. When I get fat you're paying for my lipo. +ham We r outside already. +ham Have a good trip. Watch out for . Remember when you get back we must decide about easter. +ham Yo we are watching a movie on netflix +ham What time. I‘m out until prob 3 or so +ham Can meh? Thgt some will clash... Really ah, i dun mind... I dun seen to have lost any weight... Gee... +ham I dont thnk its a wrong calling between us +ham I am not sure about night menu. . . I know only about noon menu +ham ARR birthday today:) i wish him to get more oscar. +ham Say this slowly.? GOD,I LOVE YOU & I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people & u c miracle tomorrow, do it,pls,pls do it... +ham Open rebtel with firefox. When it loads just put plus sign in the user name place, and it will show you two numbers. The lower number is my number. Once you pick that number the pin will display okay! +ham and picking them up from various points +spam Married local women looking for discreet action now! 5 real matches instantly to your phone. Text MATCH to 69969 Msg cost 150p 2 stop txt stop BCMSFWC1N3XX +ham Wow v v impressed. Have funs shopping! +ham I am on the way to ur home +spam Burger King - Wanna play footy at a top stadium? Get 2 Burger King before 1st Sept and go Large or Super with Coca-Cola and walk out a winner +ham No problem. Talk to you later +ham Then ur sis how? +ham Still in customer place +spam How come it takes so little time for a child who is afraid of the dark to become a teenager who wants to stay out all night? +ham Dude u knw also telugu..thts gud..k, gud nyt.. +ham We confirm eating at esplanade? +ham Send me your id and password +ham Kind of. Took it to garage. Centre part of exhaust needs replacing. Part ordered n taking it to be fixed tomo morning. +spam For ur chance to win a £250 cash every wk TXT: ACTION to 80608. T's&C's www.movietrivia.tv custcare 08712405022, 1x150p/wk. +ham Well I might not come then... +ham Long after I quit. I get on only like 5 minutes a day as it is. +ham Then its most likely called Mittelschmertz. Google it. If you dont have paracetamol dont worry it will go. +ham Well at this right I'm gonna have to get up and check today's steam sales/pee so text me when you want me to come get you +ham Just arrived, see you in a couple days <3 +ham K, wat s tht incident? +ham Yeah get the unlimited +ham cThen i thk shd b enuff.. Still got conclusion n contents pg n references.. I'll b doing da contents pg n cover pg.. +ham Forgot it takes me 3 years to shower, sorry. Where you at/your phone dead yet? +ham Ü got wat to buy tell us then ü no need to come in again. +ham When you are big..| God will bring success. +spam U’ve Bin Awarded £50 to Play 4 Instant Cash. Call 08715203028 To Claim. EVERY 9th Player Wins Min £50-£500. OptOut 08718727870 +ham … we r stayin here an extra week, back next wed. How did we do in the rugby this weekend? Hi to and and , c u soon " +ham Well there's still a bit left if you guys want to tonight +ham Not from this campus. Are you in the library? +ham The affidavit says <#> E Twiggs St, division g, courtroom <#> , <TIME> AM. I'll double check and text you again tomorrow +ham How will I creep on you now? ;_; +ham Tell your friends what you plan to do on Valentines day @ <URL> +ham If I get there before you after your ten billion calls and texts so help me god +ham Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng musthu +ham I've told him that i've returned it. That should i re order it. +ham House-Maid is the murderer, coz the man was murdered on <#> th January.. As public holiday all govt.instituitions are closed,including post office.. +ham Depends on where u going lor. +ham And smile for me right now as you go and the world will wonder what you are smiling about and think your crazy and keep away from you ... *grins* +spam FreeMsg>FAV XMAS TONES!Reply REAL +ham Lil fever:) now fine:) +ham I think it's all still in my car +ham Can a not? +spam December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906 +ham Yes princess! I want to catch you with my big strong hands... +ham Oh yeah I forgot. U can only take 2 out shopping at once. +ham Mm so you asked me not to call radio +ham Thinkin about someone is all good. No drugs for that +ham Say this slowly.? GOD,I LOVE YOU & I NEED YOU,CLEAN MY HEART WITH YOUR BLOOD.Send this to Ten special people & u c miracle tomorrow, do it,pls,pls do it... +ham Enjoy the showers of possessiveness poured on u by ur loved ones, bcoz in this world of lies, it is a golden gift to be loved truly.. +ham Alright if you're sure, let me know when you're leaving +ham Some are lasting as much as 2 hours. You might get lucky. +ham Genius what's up. How your brother. Pls send his number to my skype. +spam Gr8 Poly tones 4 ALL mobs direct 2u rply with POLY TITLE to 8007 eg POLY BREATHE1 Titles: CRAZYIN, SLEEPINGWITH, FINEST, YMCA :getzed.co.uk POBox365O4W45WQ 300p +ham Thk some of em find wtc too far... Weiyi not goin... E rest i dunno yet... R ur goin 4 dinner den i might b able to join... +ham Don't forget who owns you and who's private property you are ... And be my good boy always .. *passionate kiss* +spam INTERFLORA - “It's not too late to order Interflora flowers for christmas call 0800 505060 to place your order before Midnight tomorrow. +ham Oh god..taken the teeth?is it paining +spam ROMCAPspam Everyone around should be responding well to your presence since you are so warm and outgoing. You are bringing in a real breath of sunshine. +ham Then u ask darren go n pick u lor... But i oso sian tmr haf 2 meet lect... +ham No need to buy lunch for me.. I eat maggi mee.. +spam Congratulations - Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08712103738 NOW! Only 10p per minute. BT-national-rate +ham Ok lor... +ham Oh right, ok. I'll make sure that i do loads of work during the day! got a really nasty cough today and is dry n shot so that should really help it! +ham Wife.how she knew the time of murder exactly +spam Send a logo 2 ur lover - 2 names joined by a heart. Txt LOVE NAME1 NAME2 MOBNO eg LOVE ADAM EVE 07123456789 to 87077 Yahoo! POBox36504W45WQ TxtNO 4 no ads 150p. +ham Howz that persons story +ham Thanx 4 sending me home... +ham Its normally hot mail. Com you see! +spam You've won tkts to the EURO2004 CUP FINAL or £800 CASH, to collect CALL 09058099801 b4190604, POBOX 7876150ppm +ham U sick still can go shopping? +ham Ya they are well and fine., BBD(pooja) full pimples..even she become quite black..and ur rite here its too cold, wearing sweatter.. +ham Nice.nice.how is it working? +ham 1's reach home call me. +ham Were trying to find a Chinese food place around here +ham Easy mate, * guess the quick drink was bit ambitious. +ham BABE !!! I miiiiiiissssssssss you ! I need you !!! I crave you !!! :-( ... Geeee ... I'm so sad without you babe ... I love you ... +ham Ok thanx... +ham aathi..where are you dear.. +ham Tunji, how's the queen? how are you doing. This is just wishing you a great day. Abiola. +ham Today iZ Yellow rose day. If u love my frndship give me 1 misscall & send this to ur frndZ & See how many miss calls u get. If u get 6missed U marry ur Lover. +ham Will be out of class in a few hours. Sorry +ham Wat time u finish ur lect today? +spam Free-message: Jamster!Get the crazy frog sound now! For poly text MAD1, for real text MAD2 to 88888. 6 crazy sounds for just 3 GBP/week! 16+only! T&C's apply +ham Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. As I entered my cabin my PA said, '' Happy B'day Boss !!''. I felt special. She askd me 4 lunch. After lunch she invited me to her apartment. We went there. She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...! +spam YOUR CHANCE TO BE ON A REALITY FANTASY SHOW call now = 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national = rate call +ham She's fine. Good to hear from you. How are you my dear? Happy new year oh. +ham Are you going to wipro interview today? +ham how tall are you princess? +ham I doubt you could handle 5 times per night in any case... +ham Haha... Hope ü can hear the receipt sound... Gd luck! +ham Your gonna be the death if me. I'm gonna leave a note that says its all robs fault. Avenge me. +ham Japanese Proverb: If one Can do it, U too Can do it, If none Can do it,U must do it Indian version: If one Can do it, LET HIM DO it.. If none Can do it,LEAVE it!! And finally Kerala version: If one can do it, Stop him doing it.. If none can do it, Make a strike against it ... +ham Today i'm not workin but not free oso... Gee... Thgt u workin at ur fren's shop ? +ham In life when you face choices Just toss a coin not becoz its settle the question But while the coin in the air U will know what your heart is hoping for. Gudni8 +ham Do you know why god created gap between your fingers..? So that, One who is made for you comes & fills those gaps by holding your hand with LOVE..! +ham I want to be there so i can kiss you and feel you next to me +ham I am not at all happy with what you saying or doing +spam Adult 18 Content Your video will be with you shortly +ham Ok that would b lovely, if u r sure. Think about wot u want to do, drinkin, dancin, eatin, cinema, in, out, about... Up to u! Wot about ? +ham What I'm saying is if you haven't explicitly told nora I know someone I'm probably just not gonna bother +ham He says hi and to get your ass back to south tampa (preferably at a kegger) +ham Smith waste da.i wanna gayle. +ham Mum, i've sent you many many messages since i got here. I just want to know that you are actually getting them. Do enjoy the rest of your day. +ham Aight, tomorrow around <#> it is +ham House-Maid is the murderer, coz the man was murdered on <#> th January.. As public holiday all govt.instituitions are closed,including post office..understand? +spam YOUR CHANCE TO BE ON A REALITY FANTASY SHOW call now = 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national = rate call. +ham I actually did for the first time in a while. I went to bed not too long after i spoke with you. Woke up at 7. How was your night? +ham See you there! +ham I dont understand your message. +ham Crucify is c not s. You should have told me earlier. +ham Idk. You keep saying that you're not, but since he moved, we keep butting heads over freedom vs. responsibility. And i'm tired. I have so much other shit to deal with that i'm barely keeping myself together once this gets added to it. +ham Fuck cedar key and fuck her (come over anyway tho) +ham twenty past five he said will this train have been to durham already or not coz i am in a reserved seat +spam Hey Boys. Want hot XXX pics sent direct 2 ur phone? Txt PORN to 69855, 24Hrs free and then just 50p per day. To stop text STOPBCM SF WC1N3XX +ham U still painting ur wall? +spam Last Chance! Claim ur £150 worth of discount vouchers today! Text SHOP to 85023 now! SavaMob, offers mobile! T Cs SavaMob POBOX84, M263UZ. £3.00 Sub. 16 +ham Printer is cool. I mean groovy. Wine is groovying +ham Hi Harish's rent has been transfred to ur Acnt. +ham Anything lor is she coming? +ham Cbe is really good nowadays:)lot of shop and showrooms:)city is shaping good. +ham Ü still attending da talks? +ham No probs hon! How u doinat the mo? +ham K I'll take care of it +ham I take it we didn't have the phone callon Friday. Can we assume we won't have it this year now? +ham My battery is low babe +ham Shuhui has bought ron's present it's a swatch watch... +ham Yeah there's quite a bit left, I'll swing by tomorrow when I get up +ham Babe? You said 2 hours and it's been almost 4 ... Is your internet down ? +ham K I'll be sure to get up before noon and see what's what +ham K...k...yesterday i was in cbe . +ham Went to ganesh dress shop +spam pdate_Now - Double mins and 1000 txts on Orange tariffs. Latest Motorola, SonyEricsson & Nokia & Bluetooth FREE! Call MobileUpd8 on 08000839402 or call2optout/!YHL +ham Ü collecting ur laptop then going to configure da settings izzit? +ham If you r @ home then come down within 5 min +ham Aight, I should be there by 8 at the latest, probably closer to 7. Are jay and tyler down or should we just do two trips? +ham Come aftr <DECIMAL> ..now i m cleaning the house +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send CASH to 86688 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1 +ham Bill, as in: Are there any letters for me. i’m expecting one from orange that isn’t a bill but may still say orange on it. +ham Tell me pa. How is pain de. +ham HI DARLIN I HOPE YOU HAD A NICE NIGHT I WISH I HAD COME CANT WAIT TO SEE YOU LOVE FRAN PS I WANT DIRTY ANAL SEX AND I WANT A 10 MAN GANG BANG +ham Ha. You don‘t know either. I did a a clever but simple thing with pears the other day, perfect for christmas. +ham Helloooo... Wake up..! "Sweet" "morning" "welcomes" "You" "Enjoy" "This Day" "with full of joy".. "GUD MRNG". +ham ALRITE +ham Why must we sit around and wait for summer days to celebrate. Such a magical sight when the worlds dressed in white. Oooooh let there be snow. +spam URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09058094454 from land line. Claim 3030. Valid 12hrs only +ham How do you guys go to see movies on your side. +ham Sorry,in meeting I'll call later +ham You didn't have to tell me that...now i'm thinking. Plus he's going to stop all your runs +ham Kindly send some one to our flat before <DECIMAL> today. +spam Sorry! U can not unsubscribe yet. THE MOB offer package has a min term of 54 weeks> pls resubmit request after expiry. Reply THEMOB HELP 4 more info +ham Nothing lor... A bit bored too... Then y dun u go home early 2 sleep today... +ham What time should I tell my friend to be around? +ham Yes. that will be fine. Love you. Be safe. +ham Thanks chikku..:-) gud nyt:-* +ham Is xy in ur car when u picking me up? +ham Thanx 4 the time we’ve spent 2geva, its bin mint! Ur my Baby and all I want is u!xxxx +ham Yo, any way we could pick something up tonight? +ham I've not sent it. He can send me. +ham Fine am simply sitting. +ham Thts god's gift for birds as humans hav some natural gift frm god.. +ham Are you coming to day for class. +ham Im done. Just studyn in library +ham Ok... U enjoy ur shows... +ham Anything... +ham Where wuld I be without my baby? The thought alone mite break me and I don’t wanna go crazy but everyboy needs his lady xxxxxxxx +ham Wat's my dear doing? Sleeping ah? +ham Hi' Test on <#> rd .... +ham Only 2% students solved this CAT question in 'xam... 5+3+2= <#> 9+2+4= <#> 8+6+3= <#> then 7+2+5=????? Tell me the answer if u r brilliant...1thing.i got d answr. +ham Yo do you know anyone <#> or otherwise able to buy liquor? Our guy flaked and right now if we don't get a hold of somebody its just 4 loko all night +ham Yup n her fren lor. I'm meeting my fren at 730. +ham Yeah, we got one lined up for us +ham And stop wondering "wow is she ever going to stop tm'ing me ?!" because I will tm you whenever I want because you are MINE ... *laughs* +ham Lol yep did that yesterday. Already got my fireplace. Now its just another icon sitting there for me. +ham Hey i've booked the pilates and yoga lesson already... Haha +ham Are you ok. What happen to behave like this +spam You have 1 new message. Please call 08712400200. +ham My supervisor find 4 me one lor i thk his students. I havent ask her yet. Tell u aft i ask her. +ham Hello. No news on job, they are making me wait a fifth week! Yeah im up for some woozles and weasels... In exeter still, but be home about 3. +ham No message..no responce..what happend? +spam We currently have a message awaiting your collection. To collect your message just call 08718723815. +ham Hey babe, sorry i didn't get sooner. Gary can come and fix it cause he thinks he knows what it is but he doesn't go as far a Ptbo and he says it will cost <#> bucks. I don't know if it might be cheaper to find someone there ? We don't have any second hand machines at all right now, let me know what you want to do babe +ham make that 3! 4 fucks sake?! x +ham Leave it. U will always be ignorant. +ham Nope but i'll b going 2 sch on fri quite early lor cos mys sis got paper in da morn :-) +ham at bruce b downs & fletcher now +ham Where are you ? You said you would be here when I woke ... :-( +ham Hey now am free you can call me. +ham Tell me whos this pls:-) +spam URGENT! Your mobile was awarded a £1,500 Bonus Caller Prize on 27/6/03. Our final attempt 2 contact U! Call 08714714011 +ham Think i might have to give it a miss. Am teaching til twelve, then have lecture at two. Damn this working thing. +ham Id have to check but there's only like 1 bowls worth left +ham Yes there were many sweets +ham I would but I'm still cozy. And exhausted from last night.nobody went to school or work. Everything is closed. +spam U have a secret admirer. REVEAL who thinks U R So special. Call 09065174042. To opt out Reply REVEAL STOP. 1.50 per msg recd. Cust care 07821230901 +ham Buzzzz! *grins* Did I buzz your ass? Buzz your chest ? Buzz your cock ? Where do you keep your phone ? Is the vibrator on ? Did you feel it shake ? +ham Sir send to group mail check it. +ham I'm doing da intro covers energy trends n pros n cons... Brief description of nuclear fusion n oso brief history of iter n jet got abt 7 n half pages.. +ham "NONE!NOWHERE IKNO DOESDISCOUNT!SHITINNIT" +ham You dont know you jabo me abi. +spam Do you ever notice that when you're driving, anyone going slower than you is an idiot and everyone driving faster than you is a maniac? +ham Not yet had..ya sapna aunty manege y'day hogidhe..chinnu full weak and swalpa black agidhane.. +ham Are you being good, baby? :) +ham NEFT Transaction with reference number <#> for Rs. <DECIMAL> has been credited to the beneficiary account on <#> at <TIME> : <#> +ham Mostly sports type..lyk footbl,crckt.. +ham Ma head dey swell oh. Thanks for making my day +ham U should make a fb list +ham Height of Confidence: All the Aeronautics professors wer calld & they wer askd 2 sit in an aeroplane. Aftr they sat they wer told dat the plane ws made by their students. Dey all hurried out of d plane.. Bt only 1 didnt move... He said:"if it is made by my students,this wont even start........ Datz confidence.. +ham Sary just need Tim in the bollox &it hurt him a lot so he tol me! +ham Happy New Year Princess! +ham I'll text carlos and let you know, hang on +ham Don't worry, * is easy once have ingredients! +ham I love u 2 my little pocy bell I am sorry but I love u +ham Ok omw now, you at castor? +ham Yar lor... Keep raining non stop... Or u wan 2 go elsewhere? +spam Xmas Offer! Latest Motorola, SonyEricsson & Nokia & FREE Bluetooth or DVD! Double Mins & 1000 Txt on Orange. Call MobileUpd8 on 08000839402 or call2optout/4QF2 +ham What u mean u almost done? Done wif sleeping? But i tot u going to take a nap.. Yup i send her liao so i'm picking her up at ard 4 smth lor.. +ham 7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear +ham Tonight? Yeah, I'd be down for that +ham What should i eat fo lunch senor +ham He said that he had a right giggle when he saw u again! You would possibly be the first person2die from NVQ, but think how much you could for! +ham No break time one... How... I come out n get my stuff fr ü? +spam Reply to win £100 weekly! What professional sport does Tiger Woods play? Send STOP to 87239 to end service +ham I'm there and I can see you, but you can't see me ? Maybe you should reboot ym ? I seen the buzz +ham Do you still have the grinder? +spam No 1 POLYPHONIC tone 4 ur mob every week! Just txt PT2 to 87575. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info +ham Love isn't a decision, it's a feeling. If we could decide who to love, then, life would be much simpler, but then less magical +spam HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call +ham K.i did't see you.:)k:)where are you now? +ham So i'm doing a list of buyers. +ham No idea, I guess we'll work that out an hour after we're supposed to leave since as usual nobody has any interest in figuring shit out before the last second +ham Mm not entirely sure i understood that text but hey. Ho. Which weekend? +ham They released vday shirts and when u put it on it makes your bottom half naked instead of those white underwear. +ham Don know..he is watching film in computer.. +ham No b4 Thursday +ham Oh, then your phone phoned me but it disconnected +ham Id onluy matters when getting on from offcampus +spam This message is free. Welcome to the new & improved Sex & Dogging club! To unsubscribe from this service reply STOP. msgs@150p 18+only +ham Excellent, I'll see what riley's plans are +ham I will see in half an hour +spam You've won tkts to the EURO2004 CUP FINAL or £800 CASH, to collect CALL 09058099801 b4190604, POBOX 7876150ppm +ham Ew are you one of them? +ham Also hi wesley how've you been +ham Ah you see. You have to be in the lingo. I will let you know wot on earth it is when has finished making it! +spam Loan for any purpose £500 - £75,000. Homeowners + Tenants welcome. Have you been previously refused? We can still help. Call Free 0800 1956669 or text back 'help' +spam Update_Now - 12Mths Half Price Orange line rental: 400mins...Call MobileUpd8 on 08000839402 or call2optout=J5Q +ham Imagine Life WITHOUT ME... see.. How fast u are searching me?Don't worry.. l'm always there To disturb U.. Goodnoon..:) +ham Hm good morning, headache anyone? :-) +ham Yeah no probs - last night is obviously catching up with you... Speak soon +spam FREE UNLIMITED HARDCORE PORN direct 2 your mobile Txt PORN to 69200 & get FREE access for 24 hrs then chrgd@50p per day txt Stop 2exit. This msg is free +ham I might go 2 sch. Yar at e salon now v boring. +ham <#> mins but i had to stop somewhere first. +ham <#> is fast approaching. So, Wish u a very Happy New Year Happy Sankranti Happy republic day Happy Valentines Day Happy Shivratri Happy Ugadi Happy Fools day Happy May Day Happy Independence Day, Happy Friendship,Mother,Father,Teachers,Childrens Day, & HAPPY BIRTHDAY 4 U. Happy Ganesh festival Happy Dasara Happy Diwali Happy Christmas <#> Good Mornings Afternoons, Evenings Nights. RememberI AM the first to WISHING U ALL THESE...your's Raj +ham One of the joys in lifeis waking up each daywith thoughts that somewhereSomeone cares enough tosend a warm morning greeting.. - +ham I didn't get the second half of that message +ham Wat time do u wan 2 meet me later? +ham I thank you so much for all you do with selflessness. I love you plenty. +ham Am in film ill call you later. +ham How dare you change my ring +ham You are a very very very very bad girl. Or lady. +ham I love ya too but try and budget your money better babe. Gary would freak on me if he knew +ham What part of "don't initiate" don't you understand +ham I finished my lunch already. U wake up already? +ham You still at the game? +ham You have got tallent but you are wasting. +ham What is your record for one night? :) +ham Also sir, i sent you an email about how to log into the usc payment portal. I.ll send you another message that should explain how things are back home. Have a great weekend. +ham gonna let me know cos comes bak from holiday that day. is coming. Don't4get2text me number. +ham Jokin only lar... :-) depends on which phone my father can get lor... +ham Aight, lemme know what's up +ham Get ready for <#> inches of pleasure... +ham Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday. +ham ;-) ok. I feel like john lennon. +ham Cos darren say ü considering mah so i ask ü... +ham You are not bothering me but you have to trust my answers. Pls. +ham Wishing you and your family Merry "X" mas and HAPPY NEW Year in advance.. +ham One day a crab was running on the sea shore..The waves came n cleared the footprints of the crab.. Crab asked: being my frnd y r u clearing my beautiful footprints? Waves replied: A fox was following ur footprints to catch you! thats y i cleared it off:) frndsship never lets u dwn :-) GUD nyt.. +ham Aight what time you want me to come up? +ham Slaaaaave ! Where are you ? Must I summon you to me all the time now ? Don't you wish to come to me on your own anymore? +ham Your bill at 3 is £33.65 so thats not bad! +ham Let me know how it changes in the next 6hrs. It can even be appendix but you are out of that age range. However its not impossible. So just chill and let me know in 6hrs +ham Hello, yeah i've just got out of the bath and need to do my hair so i'll come up when i'm done, yeah? +ham So how's the weather over there? +ham Ok. Not much to do here though. H&M Friday, cant wait. Dunno wot the hell im gonna do for another 3 weeks! Become a slob- oh wait, already done that! +ham Die... Now i have e toot fringe again... +ham Lol they don't know about my awesome phone. I could click delete right now if I want. +ham Ok +ham Awesome question with a cute answer: Someone asked a boy "how is ur life?" . . He smiled & answered: . . "She is fine!" Gudnite +ham Please leave this topic..sorry for telling that.. +ham Pls send me the correct name da. +ham What happened to our yo date? +spam EASTENDERS TV Quiz. What FLOWER does DOT compare herself to? D= VIOLET E= TULIP F= LILY txt D E or F to 84025 NOW 4 chance 2 WIN £100 Cash WKENT/150P16+ +ham Webpage s not available! +ham Just woke up. Yeesh its late. But I didn't fall asleep til <#> am :/ +spam You are now unsubscribed all services. Get tons of sexy babes or hunks straight to your phone! go to http://gotbabes.co.uk. No subscriptions. +ham Dear all, as we know <#> th is the <#> th birthday of our loving Gopalettan. We are planning to give a small gift on that day. Those who like to participate in that you are welcome. Please contact our admin team for more details +ham K..k...from tomorrow onwards started ah? +ham What u talking bout early morning? It's almost noon where your at! +ham Fine. Do you remember me. +spam Hi babe its Jordan, how r u? Im home from abroad and lonely, text me back if u wanna chat xxSP visionsms.com Text stop to stopCost 150p 08712400603 +ham Ok. How many should i buy. +ham Sounds good, keep me posted +spam Get a brand new mobile phone by being an agent of The Mob! Plus loads more goodies! For more info just text MAT to 87021. +ham Ok. So april. Cant wait +ham Boy you best get yo ass out here quick +ham Ay wana meet on sat?ü wkg on sat? +ham I'm now but have to wait till 2 for the bus to pick me. +ham Apart from the one i told you about yesterday? +ham Ok lor... But buy wat? +ham Somebody should go to andros and steal ice +ham Don know. I did't msg him recently. +ham Take us out shopping and Mark will distract Isaiah.=D +ham Mum, hope you are having a great day. Hoping this text meets you well and full of life. Have a great day. Abiola +ham There is no sense in my foot and penis. +ham Okay but i thought you were the expert +ham *deep sigh* ... I miss you :-( ... I am really surprised you haven't gone to the net cafe yet to get to me ... Don't you miss me? +ham S.s:)i thinl role is like sachin.just standing. Others have to hit. +ham Have a great trip to India. And bring the light to everyone not just with the project but with everyone that is lucky to see you smile. Bye. Abiola +ham And very importantly, all we discuss is between u and i only. +ham K..k:)how about your training process? +ham Ok lor. I ned 2 go toa payoh 4 a while 2 return smth u wan 2 send me there or wat? +ham In da car park +ham I wish that I was with you. Holding you tightly. Making you see how important you are. How much you mean to me ... How much I need you ... In my life ... +ham So i asked how's anthony. Dad. And your bf +ham 'Wnevr i wana fal in luv vth my books, My bed fals in luv vth me..!'' . Yen madodu, nav pretsorginta, nammanna pretsovru important alwa....!!:) Gud eveB-). +ham What Today-sunday..sunday is holiday..so no work.. +ham Am going to take bath ill place the key in window:-) +spam LORD OF THE RINGS:RETURN OF THE KING in store NOW!REPLY LOTR by 2 June 4 Chance 2 WIN LOTR soundtrack CDs StdTxtRate. Reply STOP to end txts +ham Dear, take care. I am just reaching home.love u a lot. +ham staff.science.nus.edu.sg/~phyhcmk/teaching/pc1323 +ham Have you emigrated or something? Ok maybe 5.30 was a bit hopeful... +ham Olol i printed out a forum post by a guy with the exact same prob which was fixed with a gpu replacement. Hopefully they dont ignore that. +ham We walked from my moms. Right on stagwood pass right on winterstone left on victors hill. Address is <#> +ham Yo, you at jp and hungry like a mofo? +ham This is all just creepy and crazy to me. +ham Ok... I din get ur msg... +ham Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas +ham Pathaya enketa maraikara pa' +ham Even if he my friend he is a priest call him now +ham U so lousy, run already come back then half dead... Hee... +ham That's y i said it's bad dat all e gals know u... Wat u doing now? +ham Or remind me in a few hrs. +ham I had been hoping i would not have to send you this message. My rent is due and i dont have enough for it. My reserves are completely gone. Its a loan i need and was hoping you could her. The balance is <#> . Is there a way i could get that from you, till mid march when i hope to pay back. +ham Hi. Happy New Year. I dont mean to intrude but can you pls let me know how much tuition you paid last semester and how much this semester is. Thanks +ham Hello hun how ru? Its here by the way. Im good. Been on 2 dates with that guy i met in walkabout so far. We have to meet up soon. Hows everyone else? +ham Lol I was gonna last month. I cashed some in but I left <#> just in case. I was collecting more during the week cause they announced it on the blog. +spam Good Luck! Draw takes place 28th Feb 06. Good Luck! For removal send STOP to 87239 customer services 08708034412 +ham Short But Cute : " Be a good person , but dont try to prove" ..... Gud mrng... +ham Just haven't decided where yet eh ? +ham Wat time liao, where still got. +ham Yes watching footie but worried we're going to blow it - Phil Neville? +ham I wait 4 ü inside da car park... +ham Uncle Abbey! Happy New Year. Abiola +ham Now am free call me pa. +ham R u saying i should re order the slippers cos i had to pay for returning it. +ham Stop knowing me so well! +ham Good evening! this is roger. How are you? +ham Small problem in auction:)punj now asking tiwary +spam Free entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+ +ham He telling not to tell any one. If so treat for me hi hi hi +ham My uncles in Atlanta. Wish you guys a great semester. +spam 1st wk FREE! Gr8 tones str8 2 u each wk. Txt NOKIA ON to 8007 for Classic Nokia tones or HIT ON to 8007 for Polys. Nokia/150p Poly/200p 16+ +ham U coming 2 pick me? +ham Thats cool. i liked your photos. You are very sexy! +ham would u fuckin believe it they didnt know i had thurs pre booked off so they re cancelled me AGAIN! that needs to b sacked +ham Haha better late than ever, any way I could swing by? +ham Ok. But i finish at 6. +spam LookAtMe!: Thanks for your purchase of a video clip from LookAtMe!, you've been charged 35p. Think you can do better? Why not send a video in a MMSto 32323. +ham I've been barred from all B and Q stores for life!?This twat in orange dungerees came up to me and asked if I wanted decking? So I got the first punch in!! +ham So no messages. Had food? +ham Ok going to sleep. Hope i can meet her. +ham Wat makes some people dearer is not just de happiness dat u feel when u meet them but de pain u feel when u miss dem!!! +ham Can you let me know details of fri when u find out cos I'm not in tom or fri. mentionned chinese. Thanks +ham You're right I have now that I think about it +ham Wat r u doing now? +ham Is ur lecture over? +spam sexy sexy cum and text me im wet and warm and ready for some porn! u up for some fun? THIS MSG IS FREE RECD MSGS 150P INC VAT 2 CANCEL TEXT STOP +ham Customer place i will call you +ham Not planned yet :)going to join company on jan 5 only.don know what will happen after that. +ham Boy; I love u Grl: Hogolo Boy: gold chain kodstini Grl: Agalla Boy: necklace madstini Grl: agalla Boy: Hogli 1 mutai eerulli kodthini! Grl: I love U kano;-) +ham Haha I heard that, text me when you're around +ham I.ll get there tomorrow and send it to you +ham "SHIT BABE.. THASA BIT MESSED UP.YEH, SHE SHUDVETOLD U. DID URGRAN KNOW?NEWAY, ILLSPEAK 2 U2MORO WEN IM NOT ASLEEP..." +ham Oh thats late! Well have a good night and i will give u a call tomorrow. Iam now going to go to sleep night night +ham "CHEERS U TEX MECAUSE U WEREBORED! YEAH OKDEN HUNNY R UIN WK SAT?SOUND’S LIKEYOUR HAVIN GR8FUN J! KEEP UPDAT COUNTINLOTS OF LOVEME XXXXX." +ham Sorry, in meeting I'll call you later +ham Yo! Howz u? girls never rang after india. L +ham Yeah but which is worse for i +spam Hard LIVE 121 chat just 60p/min. Choose your girl and connect LIVE. Call 09094646899 now! Cheap Chat UK's biggest live service. VU BCM1896WC1N3XX +ham I tagged MY friends that you seemed to count as YOUR friends. +spam Not heard from U4 a while. Call 4 rude chat private line 01223585334 to cum. Wan 2C pics of me gettin shagged then text PIX to 8552. 2End send STOP 8552 SAM xxx +ham Ok... +ham Long time. You remember me today. +ham Havent shopping now lor i juz arrive only +ham Thank u. IT BETTER WORK OUT CAUSE I WILL FEEL USED OTHERWISE +ham Are you up for the challenge? I know i am :) +ham How much did ur hdd casing cost. +ham Mystery solved! Just opened my email and he's sent me another batch! Isn't he a sweetie +ham I can't describe how lucky you are that I'm actually awake by noon +spam This is the 2nd time we have tried to contact u. U have won the £1450 prize to claim just call 09053750005 b4 310303. T&Cs/stop SMS 08718725756. 140ppm +ham TODAY is Sorry day.! If ever i was angry with you, if ever i misbehaved or hurt you? plz plz JUST SLAP URSELF Bcoz, Its ur fault, I'm basically GOOD +ham Cheers for the card ... Is it that time of year already? +spam HOT LIVE FANTASIES call now 08707509020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870..k +ham When people see my msgs, They think Iam addicted to msging... They are wrong, Bcoz They don\'t know that Iam addicted to my sweet Friends..!! BSLVYL +ham Ugh hopefully the asus ppl dont randomly do a reformat. +ham Haven't seen my facebook, huh? Lol! +ham Mah b, I'll pick it up tomorrow +ham Still otside le..u come 2morrow maga.. +ham Do u still have plumbers tape and a wrench we could borrow? +spam Dear Voucher Holder, To claim this weeks offer, at you PC please go to http://www.e-tlp.co.uk/reward. Ts&Cs apply. +ham It vl bcum more difficult.. +spam UR GOING 2 BAHAMAS! CallFREEFONE 08081560665 and speak to a live operator to claim either Bahamas cruise of£2000 CASH 18+only. To opt out txt X to 07786200117 +ham Havent still waitin as usual... Ü come back sch oredi? +ham In meeting da. I will call you +ham K k :-):-) then watch some films. +ham Does cinema plus drink appeal tomo? * Is a fr thriller by director i like on at mac at 8.30. +ham There the size of elephant tablets & u shove um up ur ass!! +ham So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. take cr da +ham My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...! +ham Dunno i juz askin cos i got a card got 20% off 4 a salon called hair sense so i tot it's da one ü cut ur hair. +ham Good morning pookie pie! Lol hope I didn't wake u up +ham MAYBE IF YOU WOKE UP BEFORE FUCKING 3 THIS WOULDN'T BE A PROBLEM. +ham Happy birthday to you....dear.with lots of love.rakhesh NRI +ham Howz that persons story +spam This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08712101358 NOW! Only 10p per min. BT-national-rate +ham X2 <#> . Are you going to get that +ham Hi neva worry bout da truth coz the truth will lead me 2 ur heart. It’s the least a unique person like u deserve. Sleep tight or morning +spam UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039.SkilGme.TsCs087147403231Winawk!Age16+£1.50perWKsub +ham Is ur paper today in e morn or aft? +ham I will lick up every drop :) are you ready to use your mouth as well? +ham And you! Will expect you whenever you text! Hope all goes well tomo +ham Great. P diddy is my neighbor and comes for toothpaste every morning +ham I av a new number, . Wil u only use this one,ta. +ham So its to be poking man everyday that they teach you in canada abi! How are you. Just saying hi. +ham 7 lor... Change 2 suntec... Wat time u coming? +ham No de.am seeing in online shop so that i asked. +ham Just curious because my cuz asked what I was up to +ham Nice.nice.how is it working? +ham Okay lor... Wah... like that def they wont let us go... Haha... What did they say in the terms and conditions? +ham Haha... Yup hopefully we will lose a few kg by mon. after hip hop can go orchard and weigh again +ham She's good. How are you. Where r u working now +ham Oh, yes, I've just been a little under the weather so i've kind of been coccooning at home +ham At home also. +ham This phone has the weirdest auto correct. +ham Oops my phone died and I didn't even know. Yeah I like it better. +ham Havent mus ask if u can 1st wat. Of meet 4 lunch den u n him meet can already lor. Or u wan 2 go ask da ge 1st then confirm w me asap? +ham She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, +ham OH YEAH,AND HAV A GREAT TIME IN NEWQUAY-SEND ME A POSTCARD !1 LOOK AFTER ALL THE GIRLS WHILE IM GONE(U KNOW THE 1IM TALKIN BOUT!)xx +ham We got a divorce. Lol. She.s here +ham What's ur pin? +ham Babe, have you got enough money to pick up bread and milk ? And I'll give you it back when you get home ? +ham I want snow. It's just freezing and windy. +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09066358361 from land line. Claim Y87. Valid 12hrs only +ham Come to mahal bus stop.. <DECIMAL> +ham Don know:)this week i'm going to tirunelvai da. +ham Me too baby! I promise to treat you well! I bet you will take good care of me... +ham Its like that hotel dusk game i think. You solve puzzles in a area thing +spam Thanks for your ringtone order, reference number X29. Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989180 +ham Hi, my love! How goes that day? Fuck, this morning I woke and dropped my cell on the way down the stairs but it seems alright ... *phews* I miss you ! +ham Well that must be a pain to catch +ham Sorry da thangam.it's my mistake. +ham I need... Coz i never go before +ham Rose for red,red for blood,blood for heart,heart for u. But u for me.... Send tis to all ur friends.. Including me.. If u like me.. If u get back, 1-u r poor in relation! 2-u need some 1 to support 3-u r frnd 2 many 4-some1 luvs u 5+- some1 is praying god to marry u.:-) try it.... +ham Wife.how she knew the time of murder exactly +spam SIX chances to win CASH! From 100 to 20,000 pounds txt> CSH11 and send to 87575. Cost 150p/day, 6days, 16+ TsandCs apply Reply HL 4 info +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send COLLECT to 83600 only 150p/msg. CC: 08718720201 PO BOX 114/14 TCR/W1 +ham I feel like a dick because I keep sleeping through your texts and facebook messages. Sup, you in town? +ham No plm i will come da. On the way. +ham Guess he wants alone time. We could just show up and watch when they do.. +ham Height of recycling: Read twice- People spend time for earning money and the same money is spent for spending time!;-) Good morning.. keep smiling:-) +ham Yup ü not comin :-( +ham Yes, princess. Toledo. +ham Aight text me when you're back at mu and I'll swing by, need somebody to get the door for me +ham Ron say fri leh. N he said ding tai feng cant make reservations. But he said wait lor. +ham Good. No swimsuit allowed :) +ham Am okay. Will soon be over. All the best +ham A cute thought for friendship: "Its not necessary to share every secret with ur close Frnd, but watever u shared should be true".... +ham Ok i've sent u da latest version of da project. +ham Good Morning my Dear........... Have a great & successful day. +ham Pls accept me for one day. Or am begging you change the number. +ham Squeeeeeze!! This is christmas hug.. If u lik my frndshp den hug me back.. If u get 3 u r cute:) 6 u r luvd:* 9 u r so lucky;) None? People hate u: +ham Its ok, if anybody asks abt me, u tel them..:-P +ham Funny fact Nobody teaches volcanoes 2 erupt, tsunamis 2 arise, hurricanes 2 sway aroundn no 1 teaches hw 2 choose a wife Natural disasters just happens +ham * You gonna ring this weekend or wot? +ham Also track down any lighters you can find +ham Sorry, I can't help you on this. +ham Babe, I need your advice +ham I‘ll leave around four, ok? +ham Come to medical college at 7pm ......forward it da +ham K:)k..its good:)when are you going? +ham I can make lasagna for you... vodka... +ham HI ITS KATE CAN U GIVE ME A RING ASAP XXX +ham Who were those people ? Were you in a tour ? I thought you were doing that sofa thing you sent me ? Your curious sugar +ham No, but you told me you were going, before you got drunk! +ham He fucking chickened out. He messaged me he would be late and woould buzz me and then I didn't hear a word from him +spam Congratulations! Thanks to a good friend U have WON the £2,000 Xmas prize. 2 claim is easy, just call 08718726978 NOW! Only 10p per minute. BT-national-rate +ham I'm always looking for an excuse to be in the city. +ham Yup i'm still having coffee wif my frens... My fren drove she'll give me a lift... +ham O shore are you takin the bus +ham So u gonna get deus ex? +ham I will send them to your email. Do you mind <#> times per night? +spam 44 7732584351, Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705. +ham tap & spile at seven. * Is that pub on gas st off broad st by canal. Ok? +ham Ok then i come n pick u at engin? +ham Which is why i never wanted to tell you any of this. Which is why i'm so short with you and on-edge as of late. +ham Raviyog Peripherals bhayandar east +ham K actually can you guys meet me at the sunoco on howard? It should be right on the way +spam You have 1 new voicemail. Please call 08719181513. +ham MOON has come to color your dreams, STARS to make them musical and my SMS to give you warm and Peaceful Sleep. Good Night +ham Just finished eating. Got u a plate. NOT leftovers this time. +ham Thanx a lot... +ham Hurry home u big butt. Hang up on your last caller if u have to. Food is done and I'm starving. Don't ask what I cooked. +ham Lol your right. What diet? Everyday I cheat anyway. I'm meant to be a fatty :( +ham Its a great day. Do have yourself a beautiful one. +ham What happened in interview? +ham Solve d Case : A Man Was Found Murdered On <DECIMAL> . <#> AfterNoon. 1,His wife called Police. 2,Police questioned everyone. 3,Wife: Sir,I was sleeping, when the murder took place. 4.Cook: I was cooking. 5.Gardener: I was picking vegetables. 6.House-Maid: I went 2 d post office. 7.Children: We went 2 play. 8.Neighbour: We went 2 a marriage. Police arrested d murderer Immediately. Who's It? Reply With Reason, If U r Brilliant. +ham Badrith is only for chennai:)i will surely pick for us:)no competition for him. +ham I tot it's my group mate... Lucky i havent reply... Wat time do ü need to leave... +ham Hey you around? I've got enough for a half + the ten I owe you +ham Hey tmr maybe can meet you at yck +ham ALRITE SAM ITS NIC JUST CHECKIN THAT THIS IS UR NUMBER-SO IS IT?T.B* +ham They are just making it easy to pay back. I have <#> yrs to say but i can pay back earlier. You get? +ham Not to worry. I'm sure you'll get it. +ham The gas station is like a block away from my house, you'll drive right by it since armenia ends at swann and you have to take howard +spam Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058097189 NOW all will be revealed. POBox 6, LS15HB 150p +spam Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days +ham My tuition is at 330. Hm we go for the 1120 to 1205 one? Do you mind? +ham I'm not smoking while people use "wylie smokes too much" to justify ruining my shit +ham Dear good morning how you feeling dear +ham A little. Meds say take once every 8 hours. It's only been 5 but pain is back. So I took another. Hope I don't die +ham Beautiful tomorrow never comes.. When it comes, it's already TODAY.. In the hunt of beautiful tomorrow don't waste your wonderful TODAY.. GOODMORNING:) +ham Dunno lei ü all decide lor. How abt leona? Oops i tot ben is going n i msg him. +ham Hi there. We have now moved in2 our pub . Would be great 2 c u if u cud come up. +spam Todays Voda numbers ending 5226 are selected to receive a ?350 award. If you hava a match please call 08712300220 quoting claim code 1131 standard rates app +spam This message is free. Welcome to the new & improved Sex & Dogging club! To unsubscribe from this service reply STOP. msgs@150p 18 only +ham Honeybee Said: *I'm d Sweetest in d World* God Laughed & Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:) +ham Just do what ever is easier for you +spam RCT' THNQ Adrian for U text. Rgds Vatian +ham Stop calling everyone saying I might have cancer. My throat hurts to talk. I can't be answering everyones calls. If I get one more call I'm not babysitting on Monday +ham It'll be tough, but I'll do what I have to +ham IM GONNAMISSU SO MUCH!!I WOULD SAY IL SEND U A POSTCARD BUTTHERES ABOUTAS MUCH CHANCE OF MEREMEMBERIN ASTHERE IS OFSI NOT BREAKIN HIS CONTRACT!! LUV Yaxx +ham Ee msg na poortiyagi odalebeku: Hanumanji 7 name 1-Hanuman 2-Bajarangabali 3-Maruti 4-Pavanaputra 5-Sankatmochan 6-Ramaduth 7-Mahaveer ee 7 name <#> janarige ivatte kalisidare next saturday olage ondu good news keluviri...! Maretare inde 1 dodda problum nalli siguviri idu matra <#> % true.. Don't neglet. +ham HI DARLIN I FINISH AT 3 DO U 1 2 PICK ME UP OR MEET ME? TEXT BACK ON THIS NUMBER LUV KATE XXX +ham Set a place for me in your heart and not in your mind, as the mind easily forgets but the heart will always remember. Wish you Happy Valentines Day! +ham But i'm surprised she still can guess right lor... +ham Okie ü wan meet at bishan? Cos me at bishan now. I'm not driving today. +ham Oh ho. Is this the first time u use these type of words +ham HI DARLIN HOW WAS WORK DID U GET INTO TROUBLE? IJUST TALKED TO YOUR MUM ALL MORNING! I HAD A REALLY GOOD TIME LAST NIGHT IM GOIN OUT SOON BUT CALL ME IF U CAN +ham I know you are serving. I mean what are you doing now. +ham Huh... Hyde park not in mel ah, opps, got confused... Anyway, if tt's e best choice den we juz have to take it... +ham Oh gei. That happend to me in tron. Maybe ill dl it in 3d when its out +spam FREE MESSAGE Activate your 500 FREE Text Messages by replying to this message with the word FREE For terms & conditions, visit www.07781482378.com +ham I know girls always safe and selfish know i got it pa. Thank you. good night. +ham No worries, hope photo shoot went well. have a spiffing fun at workage. +ham I'm freezing and craving ice. Fml +ham Kay... Since we are out already +ham Eh sorry leh... I din c ur msg. Not sad already lar. Me watching tv now. U still in office? +ham Yo im right by yo work +ham Ok darlin i supose it was ok i just worry too much.i have to do some film stuff my mate and then have to babysit again! But you can call me there.xx +ham She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, +ham I don wake since. I checked that stuff and saw that its true no available spaces. Pls call the embassy or send a mail to them. +ham Nope... Juz off from work... +ham Huh so fast... Dat means u havent finished painting? +ham what number do u live at? Is it 11? +ham No we put party 7 days a week and study lightly, I think we need to draw in some custom checkboxes so they know we're hardcore +ham Sac will score big hundred.he is set batsman:-) +ham Send me yetty's number pls. +ham How much it will cost approx . Per month. +ham Ok... The theory test? when are ü going to book? I think it's on 21 may. Coz thought wanna go out with jiayin. But she isnt free +spam You are being contacted by our dating service by someone you know! To find out who it is, call from a land line 09050000928. PoBox45W2TG150P +ham That's fine, have him give me a call if he knows what he wants or has any questions +ham Sorry, got a late start, we're on the way +ham Then u go back urself lor... +ham I AM AT THE GAS STATION. GO THERE. +ham K, if u bored up just come to my home.. +ham Babe !!!! I LOVE YOU !!!! *covers your face in kisses* +ham Like I made him throw up when we were smoking in our friend's car one time, it was awesome +ham Still i have not checked it da. . . +ham You will go to walmart. I.ll stay. +ham I haven't forgotten you, i might have a couple bucks to send you tomorrow, k? I love ya too +ham Oh great. I.ll disturb him more so that we can talk. +ham Reverse is cheating. That is not mathematics. +ham U're welcome... Caught u using broken english again... +ham No problem baby. Is this is a good time to talk? I called and left a message. +ham Sorry, I'll call later +ham Oh is it! Which brand? +ham Sorry i cant take your call right now. It so happens that there r 2waxsto do wat you want. She can come and ill get her medical insurance. And she'll be able to deliver and have basic care. I'm currently shopping for the right medical insurance for her. So just give me til friday morning. Thats when i.ll see the major person that can guide me to the right insurance. +ham At what time are you coming. +ham Call him and say you not coming today ok and tell them not to fool me like this ok +ham I emailed yifeng my part oredi.. Can ü get it fr him.. +ham R u sure they'll understand that! Wine * good idea just had a slurp! +ham Minimum walk is 3miles a day. +ham Ok not a problem will get them a taxi. C ing tomorrow and tuesday. On tuesday think we r all going to the cinema. +ham Brainless Baby Doll..:-D;-), vehicle sariyag drive madoke barolla.. +ham I don't run away frm u... I walk slowly & it kills me that u don't care enough to stop me... +spam Sorry I missed your call let's talk when you have the time. I'm on 07090201529 +ham Please attend the phone:) +ham You only hate me. You can call any but you didnt accept even a single call of mine. Or even you messaged +ham No messages on her phone. I'm holding it now +ham Can... I'm free... +ham Yo my trip got postponed, you still stocked up? +ham Sorry, I'll call later +ham I am waiting for your call sir. +ham Hey what are you doing. Y no reply pa.. +ham Hey elaine, is today's meeting still on? +ham Sorry i've not gone to that place. I.ll do so tomorrow. Really sorry. +ham Most of the tiime when i don't let you hug me it's so i don't break into tears. +ham Tomorrow i am not going to theatre. . . So i can come wherever u call me. . . Tell me where and when to come tomorrow +ham And now electricity just went out fml. +ham Looks like you found something to do other than smoke, great job! +ham Also andros ice etc etc +ham :) +ham Good afternon, my love. How are today? I hope your good and maybe have some interviews. I wake and miss you babe. A passionate kiss from across the sea +ham Yup. Wun believe wat? U really neva c e msg i sent shuhui? +ham Hows that watch resizing +ham Dear umma she called me now :-) +ham Just finished. Missing you plenty +spam complimentary 4 STAR Ibiza Holiday or £10,000 cash needs your URGENT collection. 09066364349 NOW from Landline not to lose out! Box434SK38WP150PPM18+ +ham Well, I meant as opposed to my drunken night of before +ham K... Must book a not huh? so going for yoga basic on sunday? +spam FREE MSG:We billed your mobile number by mistake from shortcode 83332.Please call 08081263000 to have charges refunded.This call will be free from a BT landline +ham Ok can... +ham Oops - am at my mum's in somerset... Bit far! Back tomo, see you soon x +ham So u workin overtime nigpun? +ham Same as kallis dismissial in 2nd test:-). +ham O. Guess they both got screwd +spam Please CALL 08712402972 immediately as there is an urgent message waiting for you +ham I'm in a meeting, call me later at +ham What r u cooking me for dinner? +ham Ok thanx... +ham Bull. Your plan was to go floating off to IKEA with me without a care in the world. So i have to live with your mess another day. +ham Then i buy. +spam URGENT! Your Mobile number has been awarded with a £2000 Bonus Caller Prize. Call 09058095201 from land line. Valid 12hrs only +ham Heehee that was so funny tho +ham It only does simple arithmetic not percentages. +ham Yeah we wouldn't leave for an hour at least, how's 4 sound? +spam As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066364589 +ham Thanks honey. Have a great day. +ham 'An Amazing Quote'' - "Sometimes in life its difficult to decide whats wrong!! a lie that brings a smile or the truth that brings a tear...." +ham Good night my dear.. Sleepwell&Take care +ham Then ü ask dad to pick ü up lar... Ü wan 2 stay until 6 meh... +ham Jus chillaxin, what up +ham "HEY DAS COOL... IKNOW ALL 2 WELLDA PERIL OF STUDENTFINANCIAL CRISIS!SPK 2 U L8R." +ham Beautiful Truth against Gravity.. Read carefully: "Our heart feels light when someone is in it.. But it feels very heavy when someone leaves it.." GOODMORNING +spam Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705 +ham Whats that coming over the hill..... Is it a monster! Hope you have a great day. Things r going fine here, busy though! +ham Joy's father is John. Then John is the ____ of Joy's father. If u ans ths you hav <#> IQ. Tis s IAS question try to answer. +ham Only once then after ill obey all yours. +ham No she didnt. I will search online and let you know. +ham Where do you need to go to get it? +ham No pic. Please re-send. +ham He remains a bro amongst bros +ham Uhhhhrmm isnt having tb test bad when youre sick +ham But i haf enuff space got like 4 mb... +spam LIFE has never been this much fun and great until you came in. You made it truly special for me. I won't forget you! enjoy @ one gbp/sms +spam Do you want a new Video phone? 600 anytime any network mins 400 Inclusive Video calls AND downloads 5 per week Free delTOMORROW call 08002888812 or reply NOW +spam As a valued customer, I am pleased to advise you that following recent review of your Mob No. you are awarded with a £1500 Bonus Prize, call 09066368470 +spam Welcome! Please reply with your AGE and GENDER to begin. e.g 24M +spam Freemsg: 1-month unlimited free calls! Activate SmartCall Txt: CALL to No: 68866. Subscriptn3gbp/wk unlimited calls Help: 08448714184 Stop?txt stop landlineonly +spam Had your mobile 10 mths? Update to latest Orange camera/video phones for FREE. Save £s with Free texts/weekend calls. Text YES for a callback orno to opt out +spam Am new 2 club & dont fink we met yet Will B gr8 2 C U Please leave msg 2day wiv ur area 09099726553 reply promised CARLIE x Calls£1/minMobsmore LKPOBOX177HP51FL +ham True. Its easier with her here. +ham Sure but since my parents will be working on Tuesday I don't really need a cover story +ham Haha okay... Today weekend leh... +ham "Hi darlin did youPhone me? Im atHome if youwanna chat." +ham I don't know jack shit about anything or i'd say/ask something helpful but if you want you can pretend that I did and just text me whatever in response to the hypotheticalhuagauahahuagahyuhagga +ham You've always been the brainy one. +ham Yeah if we do have to get a random dude we need to change our info sheets to PARTY <#> /7 NEVER STUDY just to be safe +spam Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days. +ham Christmas is An occasion that is Celebrated as a Reflection of UR... Values..., Desires..., Affections...& Traditions.... Have an ideal Christmas... +ham Sending you greetings of joy and happiness. Do have a gr8 evening +ham "Hi darlin i cantdo anythingtomorrow as myparents aretaking me outfor a meal. when are u free? Katexxx" +ham If india win or level series means this is record:) +ham Then what about further plan? +ham Its good to hear from you +ham awesome, how do I deal with the gate? Charles told me last night but, uh, yeah +ham What time you thinkin of goin? +spam Get a FREE mobile video player FREE movie. To collect text GO to 89105. Its free! Extra films can be ordered t's and c's apply. 18 yrs only +spam Save money on wedding lingerie at www.bridal.petticoatdreams.co.uk Choose from a superb selection with national delivery. Brought to you by WeddingFriend +ham Your board is working fine. The issue of overheating is also reslove. But still software inst is pending. I will come around 8'o clock. +ham Yes but I don't care cause I know its there! +ham wiskey Brandy Rum Gin Beer Vodka Scotch Shampain Wine "KUDI"yarasu dhina vaazhthukkal. .. +ham Mon okie lor... Haha, best is cheap n gd food la, ex oso okie... Depends on whether wana eat western or chinese food... Den which u prefer... +ham Sitting ard nothing to do lor. U leh busy w work? +ham Its <#> k here oh. Should i send home for sale. +ham Sorry. || mail? || +ham Ya just telling abt tht incident.. +ham Yes we were outside for like 2 hours. And I called my whole family to wake them up cause it started at 1 am +ham Ugh just got outta class +ham Nowadays people are notixiquating the laxinorficated opportunity for bambling of entropication.... Have you ever oblisingately opted ur books for the masteriastering amplikater of fidalfication? It is very champlaxigating, i think it is atrocious.. Wotz Ur Opinion???? Junna +ham I dont have any of your file in my bag..i was in work when you called me.i 'll tell you if i find anything in my room. +ham No need lar. Jus testing e phone card. Dunno network not gd i thk. Me waiting 4 my sis 2 finish bathing so i can bathe. Dun disturb u liao u cleaning ur room. +ham Ok. I.ll do you right later. +ham Friendship poem: Dear O Dear U R Not Near But I Can Hear Dont Get Fear Live With Cheer No More Tear U R Always my Dear. Gud ni8 +ham Have your lunch and come quickly and open the door:) +spam Not heard from U4 a while. Call me now am here all night with just my knickers on. Make me beg for it like U did last time 01223585236 XX Luv Nikiyu4.net +ham I am back. Bit long cos of accident on a30. Had to divert via wadebridge.I had a brilliant weekend thanks. Speak soon. Lots of love +ham K.. I yan jiu liao... Sat we can go 4 bugis vill one frm 10 to 3 den hop to parco 4 nb. Sun can go cine frm 1030 to 2, den hop to orc mrt 4 hip hop at 4... +spam Bloomberg -Message center +447797706009 Why wait? Apply for your future http://careers. bloomberg.com +ham i am seeking a lady in the street and a freak in the sheets. Is that you? +ham My phone +ham Haha figures, well I found the piece and priscilla's bowl +ham Actually fuck that, just do whatever, do find an excuse to be in tampa at some point before january though +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050001808 from land line. Claim M95. Valid12hrs only +ham yay! finally lol. i missed our cinema trip last week :-( +ham All day working day:)except saturday and sunday.. +ham aathi..where are you dear.. +ham Heart is empty without love.. Mind is empty without wisdom.. Eyes r empty without dreams & Life is empty without frnds.. So Alwys Be In Touch. Good night & sweet dreams +ham I think I‘m waiting for the same bus! Inform me when you get there, if you ever get there. +ham You getting back any time soon? +ham , how's things? Just a quick question. +ham Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng +ham I can probably come by, everybody's done around <#> right? +ham I got it before the new year cos yetunde said she wanted to surprise you with it but when i didnt see money i returned it mid january before the <#> day return period ended. +ham I can ask around but there's not a lot in terms of mids up here +ham Be sure to check your yahoo email. We sent photos yesterday +ham What was she looking for? +ham Wherre's my boytoy ? :-( +spam Do you want a NEW video phone750 anytime any network mins 150 text for only five pounds per week call 08000776320 now or reply for delivery tomorrow +ham Hello, my love! How goes that day ? I wish your well and fine babe and hope that you find some job prospects. I miss you, boytoy ... *a teasing kiss* +ham Tell my bad character which u Dnt lik in me. I'll try to change in <#> . I ll add tat 2 my new year resolution. Waiting for ur reply.Be frank...good morning. +ham No:-)i got rumour that you going to buy apartment in chennai:-) +ham Yeah, probably earlier than that +ham Change windows logoff sound.. +ham Still i have not checked it da. . . +ham I'm also came to room. +ham Huh but i got lesson at 4 lei n i was thinkin of going to sch earlier n i tot of parkin at kent vale... +ham Ok. +ham I will reach office around <DECIMAL> . & my mobile have problem. You cann't get my voice. So call you asa i'll free +ham Cool, text me when you head out +spam You are being contacted by our dating service by someone you know! To find out who it is, call from a land line 09050000878. PoBox45W2TG150P +spam Wan2 win a Meet+Greet with Westlife 4 U or a m8? They are currently on what tour? 1)Unbreakable, 2)Untamed, 3)Unkempt. Text 1,2 or 3 to 83049. Cost 50p +std text +ham Happy birthday... May u find ur prince charming soon n dun work too hard... +ham Oh, the grand is having a bit of a party but it doesn't mention any cover charge so it's probably first come first served +ham You said to me before i went back to bed that you can't sleep for anything. +ham I hope you arnt pissed off but id would really like to see you tomorrow. Love me xxxxxxxxxxxxxX +spam Dorothy@kiefer.com (Bank of Granite issues Strong-Buy) EXPLOSIVE PICK FOR OUR MEMBERS *****UP OVER 300% *********** Nasdaq Symbol CDGT That is a $5.00 per.. +ham says the <#> year old with a man and money. I'm down to my last <#> . Still waiting for that check. +ham I will come to ur home now +ham Free any day but i finish at 6 on mon n thurs... +ham Will you be here for food +ham life alle mone,eppolum oru pole allalo +ham Nite... +ham Two fundamentals of cool life: "Walk, like you are the KING"...! OR "Walk like you Dont care,whoever is the KING"!... Gud nyt +ham Camera quite good, 10.1mega pixels, 3optical and 5digital dooms. Have a lovely holiday, be safe and i hope you hav a good journey! Happy new year to you both! See you in a couple of weeks! +ham Hi Petey!noi’m ok just wanted 2 chat coz avent spoken 2 u 4 a long time-hope ur doin alrite.have good nit at js love ya am.x +ham I just saw ron burgundy captaining a party boat so yeah +ham I'm serious. You are in the money base +ham Already one guy loving you:-. +ham Staff of placement training in Amrita college. +ham I always chat with you. In fact i need money can you raise me? +ham I'm job profile seems like bpo.. +ham Well, I was about to give up cos they all said no they didn‘t do one nighters. I persevered and found one but it is very cheap so i apologise in advance. It is just somewhere to sleep isnt it? +ham So you think i should actually talk to him? Not call his boss in the morning? I went to this place last year and he told me where i could go and get my car fixed cheaper. He kept telling me today how much he hoped i would come back in, how he always regretted not getting my number, etc. +ham Are you willing to go for apps class. +ham Hanging out with my brother and his family +ham No it will reach by 9 only. She telling she will be there. I dont know +ham Hey... are you going to quit soon? Xuhui and i working till end of the month +ham Im sorry bout last nite it wasn’t ur fault it was me, spouse it was pmt or sumthin! U 4give me? I think u shldxxxx +ham Try neva mate!! +ham Yeah that'd pretty much be the best case scenario +ham I not free today i haf 2 pick my parents up tonite... +ham "HEY BABE! FAR 2 SPUN-OUT 2 SPK AT DA MO... DEAD 2 DA WRLD. BEEN SLEEPING ON DA SOFA ALL DAY, HAD A COOL NYTHO, TX 4 FONIN HON, CALL 2MWEN IM BK FRMCLOUD 9! J X" +ham Should i send you naughty pix? :) +spam You are a £1000 winner or Guaranteed Caller Prize, this is our Final attempt to contact you! To Claim Call 09071517866 Now! 150ppmPOBox10183BhamB64XE +spam Xmas & New Years Eve tickets are now on sale from the club, during the day from 10am till 8pm, and on Thurs, Fri & Sat night this week. They're selling fast! +ham Tyler (getting an 8th) has to leave not long after 9, can you get here in like an hour? +ham Prepare to be pounded every night... +ham Actually, my mobile is full of msg. And i m doing a work online, where i need to send them <#> sent msg i wil explain u later. +ham Sorry, I'll call later +ham Good evening! How are you? +ham I'm at home. Please call +ham Oic cos me n my sis got no lunch today my dad went out... So dunno whether 2 eat in sch or wat... +ham Mmmmm ... It was sooooo good to wake to your words this morning, my Love!! Mmmm fuck ... I love you too, my Lion ... *devouring kiss from across the sea* +ham We are pleased to inform that your application for Airtel Broadband is processed successfully. Your installation will happen within 3 days. +ham What happen dear. Why you silent. I am tensed +ham I'll get there at 3, unless you guys want me to come some time sooner +ham If you are not coughing then its nothing +ham Ü come lt 25 n pass to me lar +ham I'm e person who's doing e sms survey... +ham Lol ok ill try to send. Be warned Sprint is dead slow. You'll prolly get it tomorrow +ham Thank You meet you monday +ham SO IS TH GOWER MATE WHICH IS WHERE I AM!?! HOW R U MAN? ALL IS GOOD IN WALES ILL B BACK ‘MORROW. C U THIS WK? WHO WAS THE MSG 4? – RANDOM! +spam Rock yr chik. Get 100's of filthy films &XXX pics on yr phone now. rply FILTH to 69669. Saristar Ltd, E14 9YT 08701752560. 450p per 5 days. Stop2 cancel +ham Single line with a big meaning::::: "Miss anything 4 ur "Best Life" but, don't miss ur best life for anything... Gud nyt... +ham I got like $ <#> , I can get some more later though. Get whatever you feel like +ham Dad wanted to talk about the apartment so I got a late start, omw now +ham I love you both too :-) +ham Lol u still feeling sick? +ham Din i tell u jus now 420 +ham am up to my eyes in philosophy +spam From next month get upto 50% More Calls 4 Ur standard network charge 2 activate Call 9061100010 C Wire3.net 1st4Terms PoBox84 M26 3UZ Cost £1.50 min MobcudB more +ham Ok lor. I'm in town now lei. +ham I had it already..sabarish asked me to go.. +ham No da. . Vijay going to talk in jaya tv +spam URGENT! We are trying to contact U Todays draw shows that you have won a £800 prize GUARANTEED. Call 09050000460 from land line. Claim J89. po box245c2150pm +ham Lol I know! Hey someone did a great inpersonation of flea on the forums. I love it! +spam Text BANNEDUK to 89555 to see! cost 150p textoperator g696ga 18+ XXX +ham Still chance there. If you search hard you will get it..let have a try :) +spam Auction round 4. The highest bid is now £54. Next maximum bid is £71. To bid, send BIDS e. g. 10 (to bid £10) to 83383. Good luck. +ham Do you always celebrate NY's with your family ? +ham We know TAJ MAHAL as symbol of love. But the other lesser known facts 1. Mumtaz was Shahjahan's 4th wife, out of his 7 wifes. 2. Shahjahan killed Mumtaz's husband to marry her. 3. Mumtaz died in her <#> th delivery. 4. He then married Mumtaz's sister. Question arises where the Hell is the LOVE?:-| -The Great Hari- +ham Its ok..come to my home it vl nice to meet and v can chat.. +spam Collect your VALENTINE'S weekend to PARIS inc Flight & Hotel + £200 Prize guaranteed! Text: PARIS to No: 69101. www.rtf.sphosting.com +ham Sent me de webadres for geting salary slip +ham She's fine. Sends her greetings +spam Customer Loyalty Offer:The NEW Nokia6650 Mobile from ONLY £10 at TXTAUCTION! Txt word: START to No: 81151 & get yours Now! 4T&Ctxt TC 150p/MTmsg +ham But you dint in touch with me. +ham Yup, leaving right now, be back soon +spam You won't believe it but it's true. It's Incredible Txts! Reply G now to learn truly amazing things that will blow your mind. From O2FWD only 18p/txt +ham Yeah sure I'll leave in a min +ham And do you have any one that can teach me how to ship cars. +ham The sign of maturity is not when we start saying big things.. But actually it is, when we start understanding small things... *HAVE A NICE EVENING* BSLVYL +ham Yeah confirmed for you staying at that weekend +ham They said ü dun haf passport or smth like dat.. Or ü juz send to my email account.. +ham Multiply the numbers independently and count decimal points then, for the division, push the decimal places like i showed you. +ham Have a lovely night and when you wake up to see this message, i hope you smile knowing all is as should be. Have a great morning +ham Ard 4 lor... +ham You are right. Meanwhile how's project twins comin up +ham I sent your maga that money yesterday oh. +spam Hi 07734396839 IBH Customer Loyalty Offer: The NEW NOKIA6600 Mobile from ONLY £10 at TXTAUCTION!Txt word:START to No:81151 & get Yours Now!4T& +ham Heart is empty without love.. Mind is empty without wisdom.. Eyes r empty without dreams & Life is empty without frnds.. So Alwys Be In Touch. Good night & sweet dreams +spam I am hot n horny and willing I live local to you - text a reply to hear strt back from me 150p per msg Netcollex LtdHelpDesk: 02085076972 reply Stop to end +ham Our ride equally uneventful - not too many of those pesky cyclists around at that time of night ;). +ham If you were/are free i can give. Otherwise nalla adi entey nattil kittum +ham I've sent my wife your text. After we buy them she'll tell you what to do. So just relax. We should go get them this wkend. +ham I am in escape theatre now. . Going to watch KAVALAN in a few minutes +ham How much would it cost to hire a hitman +ham I anything lor... +ham Sorry, I'll call later +spam Do you want a New Nokia 3510i Colour Phone Delivered Tomorrow? With 200 FREE minutes to any mobile + 100 FREE text + FREE camcorder Reply or Call 08000930705 +ham Huh but i cant go 2 ur house empty handed right? +ham Good morning princess! Happy New Year! +spam Congratulations YOU'VE Won. You're a Winner in our August £1000 Prize Draw. Call 09066660100 NOW. Prize Code 2309. +ham Aight, we'll head out in a few +ham Then wat r u doing now? Busy wif work? +ham I know you mood off today +ham Jay told me already, will do +ham Cps is causing the outages to conserve energy. +ham I'm not sure, I was just checking out what was happening around the area +ham Hey morning what you come to ask:-) pa... +ham Jordan got voted out last nite! +ham That means you got an A in epi, she.s fine. She.s here now. +ham I have no idea where you are +ham Pls come quick cant bare this. +ham Joy's father is John. Then John is the ____ of Joy's father. If u ans ths you hav <#> IQ. Tis s IAS question try to answer. +ham Call me. I m unable to cal. Lets meet bhaskar, and deep +ham No. I.ll meet you in the library +ham K, my roommate also wants a dubsack and another friend may also want some so plan on bringing extra, I'll tell you when they know for sure +ham Depends on individual lor e hair dresser say pretty but my parents say look gong. U kaypoh.. I also dunno wat she collecting. +ham Ok c ü then. +ham I enjoy watching and playing football and basketball. Anything outdoors. And you? +ham Can you please ask macho what his price range is, does he want something new or used plus it he only interfued in the blackberry bold <#> or any bb +ham Sorry sent blank msg again. Yup but trying 2 do some serious studying now. +ham Hey check it da. I have listed da. +spam 8007 25p 4 Alfie Moon's Children in Need song on ur mob. Tell ur m8s. Txt TONE CHARITY to 8007 for nokias or POLY CHARITY for polys :zed 08701417012 profit 2 charity +ham I meant as an apology from me for texting you to get me drugs at <#> at night +ham That means from february to april i'll be getting a place to stay down there so i don't have to hustle back and forth during audition season as i have since my sister moved away from harlem. +ham Goin to workout lor... Muz lose e fats... +ham Damn, poor zac doesn't stand a chance +ham No message..no responce..what happend? +ham I want to tel u one thing u should not mistake me k THIS IS THE MESSAGE THAT YOU SENT:) +ham Yeah right! I'll bring my tape measure fri! +ham Still chance there. If you search hard you will get it..let have a try :) +ham Meeting u is my work. . . Tel me when shall i do my work tomorrow +ham Should I head straight there or what +spam Get the official ENGLAND poly ringtone or colour flag on yer mobile for tonights game! Text TONE or FLAG to 84199. Optout txt ENG STOP Box39822 W111WX £1.50 +ham Thank you princess! You are so sexy... +ham Oooh I got plenty of those! +ham Hui xin is in da lib. +ham Its a big difference. <#> versus <#> every <#> hrs +ham It's not that you make me cry. It's just that when all our stuff happens on top of everything else, it pushes me over the edge. You don't underdtand how often i cry over my sorry, sorry life. +ham "ME 2 BABE I FEEL THE SAME LETS JUST 4GET ABOUT IT+BOTH TRY +CHEER UP+NOT FIT SOO MUCHXXLOVE U LOCAXX" +ham You know what hook up means right? +spam Customer service announcement. We recently tried to make a delivery to you but were unable to do so, please call 07090298926 to re-schedule. Ref:9307622 +ham Wat's da model num of ur phone? +ham He's really into skateboarding now despite the fact that he gets thrown off of it and winds up with bandages and shit all over his arms every five minutes +spam You can stop further club tones by replying "STOP MIX" See my-tone.com/enjoy. html for terms. Club tones cost GBP4.50/week. MFL, PO Box 1146 MK45 2WT (2/3) +ham My house here e sky quite dark liao... If raining then got excuse not 2 run already rite... Hee... +ham Sorry, left phone upstairs. OK, might be hectic but would be all my birds with one fell swoop. It's a date. +ham * Thought I didn't see you. +spam wamma get laid?want real doggin locations sent direct to your mobile? join the UKs largest dogging network. txt dogs to 69696 now!nyt. ec2a. 3lp £1.50/msg. +ham Carlos says we can pick up from him later so yeah we're set +ham Hey babe, my friend had to cancel, still up for a visit ? +ham As per your request 'Maangalyam (Alaipayuthe)' has been set as your callertune for all Callers. Press *9 to copy your friends Callertune +ham Hmm ill have to think about it... ok you're forgiven! =D +ham We are hoping to get away by 7, from Langport. You still up for town tonight? +ham Want to send me a virtual hug?... I need one +ham Probably not, still going over some stuff here +ham It has issues right now. Ill fix for her by tomorrow. +ham Why i come in between you people +ham Senthil group company Apnt 5pm. +ham Oh really?? Did you make it on air? What's your talent? +ham Studying. But i.ll be free next weekend. +ham R u here yet? I'm wearing blue shirt n black pants. +ham Wait.i will come out.. <#> min:) +ham I will reach ur home in <#> minutes +ham Well then you have a great weekend! +ham What are you doing in langport? Sorry, but I'll probably be in bed by 9pm. It sucks being ill at xmas! When do you and go2sri lanka? +ham Frnd s not juz a word.....not merely a relationship.....its a silent promise which says ... " I will be with YOU " Wherevr.. Whenevr.. Forevr... Gudnyt dear.. +ham Huh? 6 also cannot? Then only how many mistakes? +ham Ha... U jus ate honey ar? So sweet... +ham I'm turning off my phone. My moms telling everyone I have cancer. And my sister won't stop calling. It hurts to talk. Can't put up with it. See u when u get home. Love u +ham Honey ? Sweetheart ? Darling ? Sexy buns ? Sugar plum ? Loverboy ? I miss you, boytoy ... *smacks your ass* Did you go to the gym too ? +ham Thanks for loving me so. You rock +ham Yeah imma come over cause jay wants to do some drugs +ham Ok thanx... Take care then... +ham Yup. Thk of u oso boring wat. +ham came to look at the flat, seems ok, in his 50s? * Is away alot wiv work. Got woman coming at 6.30 too. +ham Moji just informed me that you saved our lives. Thanks. +spam You have won a Nokia 7250i. This is what you get when you win our FREE auction. To take part send Nokia to 86021 now. HG/Suite342/2Lands Row/W1JHL 16+ +ham Whos this am in class:-) +ham Hey r ü still online? I've finished the formatting... +ham Great! So what attracts you to the brothas? +spam Promotion Number: 8714714 - UR awarded a City Break and could WIN a £200 Summer Shopping spree every WK. Txt STORE to 88039 . SkilGme. TsCs087147403231Winawk!Age16 £1.50perWKsub +ham Stupid.its not possible +ham I cant pick the phone right now. Pls send a message +ham LOL what happens in Vegas stays in vegas +ham Hello, hello, hi lou sorry it took so long 2 reply- I left mobile at friends in Lancaster, just got it bak Neway im sorry I couldn’t make ur b’day 2 hun! +ham When did i use soc... I use it only at home... Ü dunno how 2 type it in word ar... +ham Dad says hurry the hell up +ham Wake me up at <#> am morning:) +ham I get out of class in bsn in like <#> minutes, you know where advising is? +ham Great! I shoot big loads so get ready! +ham I'll meet you in the lobby +ham You still coming tonight? +ham What happen dear tell me +ham Sir, i am waiting for your call, once free please call me. +ham No i am not having not any movies in my laptop +ham I was about to do it when i texted. I finished a long time ago and showered and er'ything! +ham Ok im not sure what time i finish tomorrow but i wanna spend the evening with you cos that would be vewy vewy lubly! Love me xxx +ham Hello, As per request from <#> Rs.5 has been transfered to you +ham I am in tirupur. call you da. +spam You are a winner you have been specially selected to receive £1000 cash or a £2000 award. Speak to a live operator to claim call 087147123779am-7pm. Cost 10p +ham S:)but he had some luck.2 catches put down:) +ham How i noe... Did ü specify da domain as nusstu... Ü still in sch... +ham Oh...i asked for fun. Haha...take care. ü +ham Shall i get my pouch? +ham Hey loverboy! I love you !! I had to tell ... I look at your picture and ache to feel you between my legs ... Fuck I want you ... I need you ... I crave you . +ham How is my boy? No sweet words left for me this morning ... *sighs* ... How goes you day, my love ? Did you start your studying? +ham Kent vale lor... Ü wait 4 me there ar? +ham Ok. Very good. Its all about making that money. +ham Reading gud habit.. Nan bari hudgi yorge pataistha ertini kano:-) +ham Aight do you still want to get money +spam Free Top ringtone -sub to weekly ringtone-get 1st week free-send SUBPOLY to 81618-?3 per week-stop sms-08718727870 +ham Ok.ok ok..then..whats ur todays plan +ham ARE YOU IN TOWN? THIS IS V. IMPORTANT +ham Sorry pa, i dont knw who ru pa? +ham Wat u doing there? +ham If i not meeting ü all rite then i'll go home lor. If ü dun feel like comin it's ok. +ham Oh, i will get paid. The most outstanding one is for a commercial i did for Hasbro...in AUGUST! They made us jump through so many hoops to get paid. Still not. +ham I am late,so call you tomorrow morning.take care sweet dreams....u and me...ummifying...bye. +ham Networking technical support associate. +ham I'm gonna rip out my uterus. +ham Cool. Do you like swimming? I have a pool and jacuzzi at my house. +spam Thanks for your ringtone order, reference number X49. Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989182. From: [colour=red]text[/colour]TXTstar +ham Yeah why not, is the gang all ready +ham Blank is Blank. But wat is blank? Lol +ham I'm in a movie... Collect car oredi... +ham We left already we at orchard now. +spam Hi there, 2nights ur lucky night! Uve been invited 2 XCHAT, the Uks wildest chat! Txt CHAT to 86688 now! 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs +ham Nothing spl..wat abt u and whr ru? +ham No chikku nt yet.. Ya i'm free +ham Aldrine, rakhesh ex RTM here.pls call.urgent. +ham The search 4 happiness is 1 of d main sources of unhappiness! Accept life the way it comes! U will find happiness in every moment u live. +ham I'm at home. Please call +ham I guess you could be as good an excuse as any, lol. +ham Isn't frnd a necesity in life? imagine urself witout a frnd.. hw'd u feel at ur colleg? wat'll u do wth ur cell? wat abt functions? thnk abt events espe'll cared, missed & irritated u? 4wrd it to all those dear-loving frnds wthout whom u cant live.. I jst did it.. Takecare..:) GOODMORNING +ham Gud mrng dear hav a nice day +ham Old Orchard near univ. How about you? +ham 4 tacos + 1 rajas burrito, right? +ham It‘s £6 to get in, is that ok? +ham Hows the street where the end of library walk is? +ham Plz note: if anyone calling from a mobile Co. & asks u to type # <#> or # <#> . Do not do so. Disconnect the call,coz it iz an attempt of 'terrorist' to make use of the sim card no. Itz confirmd by nokia n motorola n has been verified by CNN IBN. +ham We stopped to get ice cream and will go back after +ham Did you stitch his trouser +ham No da. . Vijay going to talk in jaya tv +spam 2/2 146tf150p +ham Hey i'm bored... So i'm thinking of u... So wat r u doing? +ham Nah, Wednesday. When should I bring the mini cheetos bag over? +ham Nobody names their penis a girls name this story doesn't add up at all +ham Aight, let me know when you're gonna be around usf +ham I'm not. She lip synced with shangela. +ham Ü neva tell me how i noe... I'm not at home in da aft wat... +ham A bit of Ur smile is my hppnss, a drop of Ur tear is my sorrow, a part of Ur heart is my life, a heart like mine wil care for U, forevr as my GOODFRIEND +spam Dear Voucher Holder 2 claim your 1st class airport lounge passes when using Your holiday voucher call 08704439680. When booking quote 1st class x 2 +ham Buzz! Hey, my Love ! I think of you and hope your day goes well. Did you sleep in ? I miss you babe. I long for the moment we are together again*loving smile* +ham Haha... Sounds crazy, dunno can tahan anot... +ham Why are u up so early? +ham Ya that one is slow as poo +spam Bloomberg -Message center +447797706009 Why wait? Apply for your future http://careers. bloomberg.com +ham "Im on gloucesterroad what are uup to later?" +ham Yes:)here tv is always available in work place.. +spam YES! The only place in town to meet exciting adult singles is now in the UK. Txt CHAT to 86688 now! 150p/Msg. +ham Lol no ouch but wish i'd stayed out a bit longer +ham GOD ASKED, "What is forgiveness?" A little child gave lovely reply, "It is d wonderful fruit that a tree gives when it is being hurt by a stone.. Good night...... +ham We'll join the <#> bus +ham Was just about to ask. Will keep this one. Maybe that's why you didn't get all the messages we sent you on glo +spam FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+ +ham K.i will send in <#> min:) +ham Would me smoking you out help us work through this difficult time +spam Someone U know has asked our dating service 2 contact you! Cant guess who? CALL 09058095107 NOW all will be revealed. POBox 7, S3XY 150p +ham Yes.mum lookin strong:) +ham Sir Goodmorning, Once free call me. +ham Where are you call me. +ham Was gr8 to see that message. So when r u leaving? Congrats dear. What school and wat r ur plans. +ham Love it! The girls at the office may wonder why you are smiling but sore... +ham Hi, wlcome back, did wonder if you got eaten by a lion or something, nothing much +ham Does uncle timi help in clearing cars +ham I came hostel. I m going to sleep. Plz call me up before class. Hrishi. +ham Ok... But bag again.. +ham Hi! You just spoke to MANEESHA V. We'd like to know if you were satisfied with the experience. Reply Toll Free with Yes or No. +ham Ok lor. Msg me b4 u call. +spam Mila, age23, blonde, new in UK. I look sex with UK guys. if u like fun with me. Text MTALK to 69866.18 . 30pp/txt 1st 5free. £1.50 increments. Help08718728876 +ham Once a fishrman woke early in d mrng. It was very dark. He waited a while & found a sack ful of stones. He strtd throwin thm in2 d sea 2 pass time. Atlast he had jus 1stone, sun rose up & he found out tht those r nt stones, those were diamonds. Moral:"Dont wake up early in d mrng'' GOOD night +spam Claim a 200 shopping spree, just call 08717895698 now! Have you won! MobStoreQuiz10ppm +ham Then ur physics get a-? +ham Dear friends, sorry for the late information. Today is the birthday of our loving Ar.Praveesh. for more details log on to face book and see. Its his number + <#> . Dont miss a delicious treat. +ham How r ü going to send it to me? +ham Can you do online transaction? +ham Dear got train and seat mine lower seat +ham Let me know if you need anything else. Salad or desert or something... How many beers shall i get? +ham Wat r u doing? +ham WHORE YOU ARE UNBELIEVABLE. +spam Want to funk up ur fone with a weekly new tone reply TONES2U 2 this text. www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply +ham Are you sure you don't mean "get here, we made you hold all the weed" +ham I love you !!! You know? Can you feel it? Does it make your belly warm? I wish it does, my love ... I shall meet you in your dreams, Ahmad ... *adoring kiss* +spam Twinks, bears, scallies, skins and jocks are calling now. Don't miss the weekend's fun. Call 08712466669 at 10p/min. 2 stop texts call 08712460324(nat rate) +ham Love it! I want to flood that pretty pussy with cum... +ham Hey are you angry with me. Reply me dr. +ham Short But Cute: "Be a good person, but dont try to prove it.." .Gud noon.... +ham Also remember the beads don't come off. Ever. +ham They have a thread on the wishlist section of the forums where ppl post nitro requests. Start from the last page and collect from the bottom up. +ham For The First Time In The History 'Need' 'Comfort' And 'Luxury' Are Sold At Same Price In India..!! Onion-Rs. <#> Petrol-Rs. <#> Beer-Rs. <#> SHESIL <#> +ham Feb <#> is "I LOVE U" day. Send dis to all ur "VALUED FRNDS" evn me. If 3 comes back u'll gt married d person u luv! If u ignore dis u will lose ur luv 4 Evr +ham Actually nvm, got hella cash, we still on for <#> ish? +spam We tried to contact you re your reply to our offer of a Video Handset? 750 anytime any networks mins? UNLIMITED TEXT? Camcorder? Reply or call 08000930705 NOW +ham It's ok, at least armand's still around +ham No da. I am happy that we sit together na +ham Yup song bro. No creative. Neva test quality. He said check review online. +ham No dude, its not fake..my frnds got money, thts y i'm reffering u..if u member wit my mail link, u vl be credited <#> rs and il be getiing <#> rs..i can draw my acc wen it is <#> rs.. +ham Dude while were makin those weirdy brownies my sister made awesome cookies. I took pics. +spam URGENT! We are trying to contact you. Last weekends draw shows that you have won a £900 prize GUARANTEED. Call 09061701851. Claim code K61. Valid 12hours only +ham Pls dont restrict her from eating anythin she likes for the next two days. +ham Mm you ask him to come its enough :-) +ham At the funeral home with Audrey and dad +ham Aight, can you text me the address? +ham Excellent! Wish we were together right now! +ham Yep then is fine 7.30 or 8.30 for ice age. +ham Pls i wont belive god.not only jesus. +ham Can. Dunno wat to get 4 her... +ham Not yet chikku..k, then wat abt tht guy did he stopped irritating or msging to u.. +ham How long does it take to get it. +ham This is my number by vivek.. +spam 74355 XMAS iscoming & ur awarded either £500 CD gift vouchers & free entry 2 r £100 weekly draw txt MUSIC to 87066 TnC +ham sorry brah, just finished the last of my exams, what up +ham I got arrested for possession at, I shit you not, <TIME> pm +ham You are right though. I can't give you the space you want and need. This is really starting to become an issue. I was going to suggest setting a definite move out--if i'm still there-- after greece. But maybe you are ready and should do it now. +ham Just normal only here :) +ham Please protect yourself from e-threats. SIB never asks for sensitive information like Passwords,ATM/SMS PIN thru email. Never share your password with anybody. +ham I miss you so much I'm so desparate I have recorded the message you left for me the other day and listen to it just to hear the sound of your voice. I love you +ham Hi. I'm always online on yahoo and would like to chat with you someday +ham Goodmorning,my grandfather expired..so am on leave today. +spam Congratulations U can claim 2 VIP row A Tickets 2 C Blu in concert in November or Blu gift guaranteed Call 09061104276 to claim TS&Cs www.smsco.net cost£3.75max +ham Where are you ? What are you doing ? Are yuou working on getting the pc to your mom's ? Did you find a spot that it would work ? I need you +ham Sure, I'll see if I can come by in a bit +ham I agree. So i can stop thinkin about ipad. Can you please ask macho the same question. +ham Let's pool our money together and buy a bunch of lotto tickets. If we win I get <#> % u get <#> %. Deal? +ham Ok. +ham I had askd u a question some hours before. Its answer +ham Watching tv lor. Nice one then i like lor. +ham I'm thinking that chennai forgot to come for auction.. +ham Then ü come n pick me at 530 ar? +ham Early bird! Any purchases yet? +ham Went to pay rent. So i had to go to the bank to authorise the payment. +ham Erm … ill pick you up at about 6.45pm. That'll give enough time to get there, park and that. +ham HEY MATE! HOWS U HONEY?DID U AVE GOOD HOLIDAY? GIMMI DE GOSS!x +ham Howz pain.it will come down today.do as i said ystrday.ice and medicine. +ham chile, please! It's only a <DECIMAL> hour drive for me. I come down all the time and will be subletting feb-april for audition season. +ham Yes ammae....life takes lot of turns you can only sit and try to hold the steering... +ham Yeah that's what I thought, lemme know if anything's goin on later +ham Mmmm.... I cant wait to lick it! +ham Pls go there today <#> . I dont want any excuses +spam Fantasy Football is back on your TV. Go to Sky Gamestar on Sky Active and play £250k Dream Team. Scoring starts on Saturday, so register now!SKY OPT OUT to 88088 +ham Can you plz tell me the ans. BSLVYL sent via fullonsms.com +ham U in town alone? +ham I to am looking forward to all the sex cuddling.. Only two more sleeps +ham We have all rounder:)so not required:) +ham No, its true..k,Do u knw dis no. <#> ? +ham Dont worry, 1 day very big lambu ji vl come..til then enjoy batchlor party:-) +ham oh ya... Got hip hop open. Haha i was thinking can go for jazz then zoom to cine... Actually tonight i'm free leh... And there's a kb lesson tonight +spam Free msg: Single? Find a partner in your area! 1000s of real people are waiting to chat now!Send CHAT to 62220Cncl send STOPCS 08717890890£1.50 per msg +ham I'm ok. Will do my part tomorrow +ham No! But we found a diff farm shop to buy some cheese. On way back now, can i call in? +ham R u still working now? +spam Win the newest “Harry Potter and the Order of the Phoenix (Book 5) reply HARRY, answer 5 questions - chance to be the first among readers! +ham Yep. I do like the pink furniture tho. +spam Free Msg: Ringtone!From: http://tms. widelive.com/index. wml?id=1b6a5ecef91ff9*37819&first=true18:0430-JUL-05 +ham Customer place, i wil cal u sir. +spam Oh my god! I've found your number again! I'm so glad, text me back xafter this msgs cst std ntwk chg £1.50 +ham A pure hearted person can have a wonderful smile that makes even his/her enemies to feel guilty for being an enemy.. So catch the world with your smile..:) GOODMORNING & HAVE A SMILEY SUNDAY..:) +ham THAT’S ALRITE GIRL, U KNOW GAIL IS NEVA WRONG!!TAKE CARE SWEET AND DON’T WORRY.C U L8TR HUN!LOVE Yaxxx +ham Theoretically yeah, he could be able to come +ham Alright we're hooked up, where you guys at +ham not that I know of, most people up here are still out of town +ham No let me do the math. Your not good at it. +ham Oh ok wait 4 me there... My lect havent finish +ham Yeah my usual guy's out of town but there're definitely people around I know +ham I am joining today formally.Pls keep praying.will talk later. +ham Happy or sad , one thing about past is- "Its no more" GOOD MORNING :-):-). +ham No. Did you multimedia message them or e-mail? +ham Okie but i scared u say i fat... Then u dun wan me already... +ham did u get that message +ham Sorry sir, i will call you tomorrow. senthil.hsbc +ham What you need. You have a person to give na. +ham She left it very vague. She just said she would inform the person in accounting about the delayed rent and that i should discuss with the housing agency about my renting another place. But checking online now and all places around usc are <#> and up +ham Hi juan. Im coming home on fri hey. Of course i expect a welcome party and lots of presents. Ill phone u when i get back. Loads of love nicky x x x x x x x x x +ham Can you plz tell me the ans. BSLVYL sent via fullonsms.com +ham Short But Cute: "Be a good person, but dont try to prove it.." .Gud noon.... +ham Gumby's has a special where a <#> " cheese pizza is $2 so I know what we're doin tonight +spam A link to your picture has been sent. You can also use http://alto18.co.uk/wave/wave.asp?o=44345 +ham Like a personal sized or what +ham Same, I'm at my great aunts anniversary party in tarpon springs +ham Cab is available.they pick up and drop at door steps. +ham ok....take care.umma to you too... +ham Unlimited texts. Limited minutes. +spam Double Mins & 1000 txts on Orange tariffs. Latest Motorola, SonyEricsson & Nokia with Bluetooth FREE! Call MobileUpd8 on 08000839402 or call2optout/HF8 +ham No problem. We will be spending a lot of quality time together... +spam URGENT This is our 2nd attempt to contact U. Your £900 prize from YESTERDAY is still awaiting collection. To claim CALL NOW 09061702893. ACL03530150PM +ham Have you heard from this week? +spam Dear Dave this is your final notice to collect your 4* Tenerife Holiday or #5000 CASH award! Call 09061743806 from landline. TCs SAE Box326 CW25WX 150ppm +ham Yes. Last practice +spam tells u 2 call 09066358152 to claim £5000 prize. U have 2 enter all ur mobile & personal details @ the prompts. Careful! +ham No. Thank you. You've been wonderful +ham Otherwise had part time job na-tuition.. +ham Ü mean it's confirmed... I tot they juz say oni... Ok then... +ham Okie +ham That depends. How would you like to be treated? :) +ham Right on brah, see you later +ham Waiting in e car 4 my mum lor. U leh? Reach home already? +spam Your 2004 account for 07XXXXXXXXX shows 786 unredeemed points. To claim call 08719181259 Identifier code: XXXXX Expires 26.03.05 +spam Do you want a new video handset? 750 anytime any network mins? Half Price Line Rental? Camcorder? Reply or call 08000930705 for delivery tomorrow +ham Went fast asleep dear.take care. +ham No that just means you have a fat head +ham Sounds like a plan! Cardiff is still here and still cold! I'm sitting on the radiator! +ham Serious? What like proper tongued her +ham She.s good. She was wondering if you wont say hi but she.s smiling now. So how are you coping with the long distance +ham How i noe... She's in da car now... Later then c lar... I'm wearing shorts... +spam You have an important customer service announcement. Call FREEPHONE 0800 542 0825 now! +ham Yeah whatever lol +ham Today is ACCEPT DAY..U Accept me as? Brother Sister Lover Dear1 Best1 Clos1 Lvblefrnd Jstfrnd Cutefrnd Lifpartnr Belovd Swtheart Bstfrnd No rply means enemy +ham Ard 530 lor. I ok then message ü lor. +ham Ok. C u then. +ham Eh ur laptop got no stock lei... He say mon muz come again to take a look c got a not... +ham No need to ke qi... Ü too bored izzit y suddenly thk of this... +ham I wish! I don't think its gonna snow that much. But it will be more than those flurries we usually get that melt before they hit the ground. Eek! We haven't had snow since <#> before I was even born! +spam FREE>Ringtone! Reply REAL or POLY eg REAL1 1. PushButton 2. DontCha 3. BabyGoodbye 4. GoldDigger 5. WeBeBurnin 1st tone FREE and 6 more when u join for £3/wk +ham Do 1 thing! Change that sentence into: "Because i want 2 concentrate in my educational career im leaving here.." +ham Oh really? perform, write a paper, go to a movie AND be home by midnight, huh? +ham Okay lor... Will they still let us go a not ah? Coz they will not know until later. We drop our cards into the box right? +ham How? Izzit still raining? +ham As if i wasn't having enough trouble sleeping. +ham I havent add ü yet right.. +ham Lol ... I really need to remember to eat when I'm drinking but I do appreciate you keeping me company that night babe *smiles* +ham Babe ? I lost you ... Will you try rebooting ? +ham Yes. Nigh you cant aha. +ham I thk ü gotta go home by urself. Cos i'll b going out shopping 4 my frens present. +ham Nooooooo I'm gonna be bored to death all day. Cable and internet outage. +ham Sos! Any amount i can get pls. +ham Playin space poker, u? +ham How come guoyang go n tell her? Then u told her? +ham You need to get up. Now. +ham They r giving a second chance to rahul dengra. +ham Yeah, in fact he just asked if we needed anything like an hour ago. When and how much? +ham WHEN THE FIRST STRIKE IS A RED ONE. THE BIRD + ANTELOPE BEGIN TOPLAY IN THE FIELDOF SELFINDEPENDENCE BELIEVE THIS + THE FLOWER OF CONTENTION WILL GROW.RANDOM! +ham Y ü wan to go there? C doctor? +ham Does daddy have a bb now. +spam Free Msg: get Gnarls Barkleys "Crazy" ringtone TOTALLY FREE just reply GO to this message right now! +ham She's borderline but yeah whatever. +ham I got a call from a landline number. . . I am asked to come to anna nagar . . . I will go in the afternoon +ham Until 545 lor... Ya, can go 4 dinner together... +ham I will be gentle princess! We will make sweet gentle love... +ham How u doin baby girl ?? hope u are okay every time I call ure phone is off! I miss u get in touch +ham Sorry, went to bed early, nightnight +ham I like to think there's always the possibility of being in a pub later. +ham HMM yeah if your not too grooved out! And im looking forward to my pound special :) +ham I got to video tape pple type in message lor. U so free wan 2 help me? Hee... Cos i noe u wan 2 watch infernal affairs so ask u along. Asking shuhui oso. +ham Hi dude hw r u da realy mising u today +ham Me hungry buy some food good lei... But mum n yun dun wan juz buy a little bit... +spam Refused a loan? Secured or Unsecured? Can't get credit? Call free now 0800 195 6669 or text back 'help' & we will! +ham I probably won't eat at all today. I think I'm gonna pop. How was your weekend? Did u miss me? +ham I knew it... U slept v late yest? Wake up so late... +ham Haha... dont be angry with yourself... Take it as a practice for the real thing. =) +ham Where is that one day training:-) +ham So i could kiss and feel you next to me... +ham Have a nice day my dear. +ham I sent lanre fakeye's Eckankar details to the mail box +ham Your dad is back in ph? +spam You have been specially selected to receive a "3000 award! Call 08712402050 BEFORE the lines close. Cost 10ppm. 16+. T&Cs apply. AG Promo +ham If you ask her or she say any please message. +ham If e timing can, then i go w u lor... +ham Love you aathi..love u lot.. +ham I was just callin to say hi. Take care bruv! +spam YOU HAVE WON! As a valued Vodafone customer our computer has picked YOU to win a £150 prize. To collect is easy. Just call 09061743386 +ham Did u turn on the heater? The heater was on and set to <#> degrees. +ham Thanks for your message. I really appreciate your sacrifice. I'm not sure of the process of direct pay but will find out on my way back from the test tomorrow. I'm in class now. Do have a wonderful day. +ham That's the trouble with classes that go well - you're due a dodgey one … Expecting mine tomo! See you for recovery, same time, same place +spam Free video camera phones with Half Price line rental for 12 mths and 500 cross ntwk mins 100 txts. Call MobileUpd8 08001950382 or Call2OptOut/674& +ham WOT U UP 2 J? +ham Night night, see you tomorrow +ham Roger that. We‘re probably going to rem in about 20 +ham do u think that any girl will propose u today by seing ur bloody funky shit fucking face...............asssssholeeee................ +ham I wish u were here. I feel so alone +spam Great NEW Offer - DOUBLE Mins & DOUBLE Txt on best Orange tariffs AND get latest camera phones 4 FREE! Call MobileUpd8 free on 08000839402 NOW! or 2stoptxt T&Cs +ham Reason is if the team budget is available at last they buy the unsold players for at base rate.. +ham CERI U REBEL! SWEET DREAMZ ME LITTLE BUDDY!! C YA 2MORO! WHO NEEDS BLOKES +spam ringtoneking 84484 +ham Huh i cant thk of more oredi how many pages do we have? +ham His frens go then he in lor. Not alone wif my mum n sis lor. +ham Nationwide auto centre (or something like that) on Newport road. I liked them there +ham Hey, I missed you tm of last night as my phone was on the charge ... *smiles* ... I am meeting a friend shortly +ham Whatever, juliana. Do whatever you want. +ham Friendship is not a game to play, It is not a word to say, It doesn\'t start on March and ends on May, It is tomorrow, yesterday, today and e +spam Ringtone Club: Gr8 new polys direct to your mobile every week ! +ham Hello. Sort of out in town already. That . So dont rush home, I am eating nachos. Will let you know eta. +ham Ok lor. Anyway i thk we cant get tickets now cos like quite late already. U wan 2 go look 4 ur frens a not? Darren is wif them now... +spam (Bank of Granite issues Strong-Buy) EXPLOSIVE PICK FOR OUR MEMBERS *****UP OVER 300% *********** Nasdaq Symbol CDGT That is a $5.00 per.. +ham I am on the way to ur home +ham Dizzamn, aight I'll ask my suitemates when I get back +ham Nimbomsons. Yep phone knows that one. Obviously, cos thats a real word +ham I love to cuddle! I want to hold you in my strong arms right now... +ham R u in this continent? +ham We'll you pay over like <#> yrs so its not too difficult +spam Bored housewives! Chat n date now! 0871750.77.11! BT-national rate 10p/min only from landlines! +spam We tried to call you re your reply to our sms for a video mobile 750 mins UNLIMITED TEXT free camcorder Reply or call now 08000930705 Del Thurs +ham K...k...when will you give treat? +spam This is the 2nd time we have tried to contact u. U have won the £400 prize. 2 claim is easy, just call 087104711148 NOW! Only 10p per minute. BT-national-rate +ham He's just gonna worry for nothing. And he won't give you money its no use. +ham Did you get any gift? This year i didnt get anything. So bad +ham somewhere out there beneath the pale moon light someone think in of u some where out there where dreams come true... goodnite & sweet dreams +ham Well there's a pattern emerging of my friends telling me to drive up and come smoke with them and then telling me that I'm a weed fiend/make them smoke too much/impede their doing other things so you see how I'm hesitant +ham , ow u dey.i paid 60,400thousad.i told u would call . +ham IM FINE BABES AINT BEEN UP 2 MUCH THO! SAW SCARY MOVIE YEST ITS QUITE FUNNY! WANT 2MRW AFTERNOON? AT TOWN OR MALL OR SUMTHIN?xx +ham I'm reaching home in 5 min. +ham Forgot you were working today! Wanna chat, but things are ok so drop me a text when you're free / bored etc and i'll ring. Hope all is well, nose essay and all xx +ham Ha... Then we must walk to everywhere... Cannot take tram. My cousin said can walk to vic market from our hotel +spam Wan2 win a Meet+Greet with Westlife 4 U or a m8? They are currently on what tour? 1)Unbreakable, 2)Untamed, 3)Unkempt. Text 1,2 or 3 to 83049. Cost 50p +std text +spam Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize! +ham Discussed with your mother ah? +ham Ok. +ham Sorry, I can't text & drive coherently, see you in twenty +spam You will be receiving this week's Triple Echo ringtone shortly. Enjoy it! +ham In which place i can get rooms cheap:-) +ham Eek that's a lot of time especially since American Pie is like 8 minutes long. I can't stop singing it. +ham "GRAN ONLYFOUND OUT AFEW DAYS AGO.CUSOON HONI" +spam U've been selected to stay in 1 of 250 top British hotels - FOR NOTHING! Holiday valued at £350! Dial 08712300220 to claim - National Rate Call. Bx526, SW73SS +ham University of southern california. +ham We have to pick rayan macleran there. +ham U gd lor go shopping i got stuff to do. U wan 2 watch infernal affairs a not? Come lar... +ham Well. Balls. Time to make calls +ham Wat time ü wan today? +ham <#> in mca. But not conform. +ham Oh ok.. Wat's ur email? +ham Yes, princess. Are you going to make me moan? +ham Lol its ok I didn't remember til last nite +ham […] anyway, many good evenings to u! s +ham Cool, I'll text you in a few +ham Sorry vikky, i'm Watching olave mandara movie kano in trishul theatre wit my frnds.. +ham I'm very happy for you babe ! Woo hoo party on dude! +ham I am taking you for italian food. How about a pretty dress with no panties? :) +ham Wot u up 2? Thout u were gonna call me!! Txt bak luv K +spam YOU ARE CHOSEN TO RECEIVE A £350 AWARD! Pls call claim number 09066364311 to collect your award which you are selected to receive as a valued mobile customer. +ham How are you holding up? +ham Dont flatter yourself... Tell that man of mine two pints of carlin in ten minutes please.... +ham Hope you are not scared! +ham I cant pick the phone right now. Pls send a message +ham I'm at home n ready... +spam Please call our customer service representative on FREEPHONE 0808 145 4742 between 9am-11pm as you have WON a guaranteed £1000 cash or £5000 prize! +ham What time do u get out? +ham I am literally in bed and have been up for like <#> hours +ham Yes, my reg is Ciao! +ham If You mean the website. Yes. +spam Win a £1000 cash prize or a prize worth £5000 +spam Thanks for your ringtone order, reference number X49.Your mobile will be charged 4.50. Should your tone not arrive please call customer services 09065989182 +ham Lol or I could just starve and lose a pound by the end of the day. +ham Yeah that's the impression I got +ham Ok ok take care. I can understand. +ham Motivate Behind every darkness, there is a shining light waiting for you to find it... Behind every best friend, there is always trust and love... BSLVYL +ham Ya ok, then had dinner? +ham I was slept that time.you there? +ham dont make ne plans for nxt wknd coz she wants us to come down then ok +ham When is school starting. Where will you stay. What's the weather like. And the food. Do you have a social support system like friends in the school. All these things are important. +ham Ha ha nan yalrigu heltini..Iyo kothi chikku, u shared many things wit me..so far i didn't told any body and even uttered a word abt u.. If ur trusting me so much how can i tell these to others.. Plz nxt time dont use those words to me..ok, chikku:-);-)B-) +ham Noice. Text me when you're here +ham Hi di is yijue we're meeting at 7 pm at esaplanade tonight. +spam Moby Pub Quiz.Win a £100 High Street prize if u know who the new Duchess of Cornwall will be? Txt her first name to 82277.unsub STOP £1.50 008704050406 SP +spam This weeks SavaMob member offers are now accessible. Just call 08709501522 for details! SavaMob, POBOX 139, LA3 2WU. Only £1.50/week. SavaMob - offers mobile! +ham Aight I've been set free, think you could text me blake's address? It occurs to me I'm not quite as sure what I'm doing as I thought I was +ham Hi dear we saw dear. We both are happy. Where you my battery is low +ham How are you. Its been ages. How's abj +ham Prof: you have passed in all the papers in this sem congrats . . . . Student: Enna kalaachutaarama..!! Prof:???? Gud mrng! +ham Dont kick coco when he's down +ham Fyi I'm gonna call you sporadically starting at like <#> bc we are not not doin this shit +spam You are being contacted by our Dating Service by someone you know! To find out who it is, call from your mobile or landline 09064017305 PoBox75LDNS7 +spam TBS/PERSOLVO. been chasing us since Sept for£38 definitely not paying now thanks to your information. We will ignore them. Kath. Manchester. +ham Hope you’re not having too much fun without me!! see u tomorrow love jess x +ham Ok i wont call or disturb any one. I know all are avoiding me. I am a burden for all +ham I've reached home n i bathe liao... U can call me now... +spam Loans for any purpose even if you have Bad Credit! Tenants Welcome. Call NoWorriesLoans.com on 08717111821 +ham Was the actual exam harder than NBME +ham A lot of this sickness thing going round. Take it easy. Hope u feel better soon. Lol +ham God picked up a flower and dippeditinaDEW, lovingly touched itwhichturnedinto u, and the he gifted tomeandsaid,THIS FRIEND IS 4U +spam 87077: Kick off a new season with 2wks FREE goals & news to ur mobile! Txt ur club name to 87077 eg VILLA to 87077 +ham Hey sathya till now we dint meet not even a single time then how can i saw the situation sathya. +ham Gam gone after outstanding innings. +ham O i played smash bros <#> religiously. +ham Sir, good morning. Hope you had a good weekend. I called to let you know that i was able to raise <#> from my dad. He however said he would make the rest available by mid feb. This amount is still quite short and i was hoping you would help. Do have a good day. Abiola +ham Hurry home. Soup is DONE! +ham No no. I will check all rooms befor activities +ham Good afternoon, my love. It was good to see your words on YM and get your tm. Very smart move, my slave ... *smiles* ... I drink my coffee and await you. +ham Quite ok but a bit ex... U better go eat smth now else i'll feel guilty... +spam Orange brings you ringtones from all time Chart Heroes, with a free hit each week! Go to Ringtones & Pics on wap. To stop receiving these tips reply STOP. +ham Lemme know when you're here +spam PRIVATE! Your 2003 Account Statement for 07973788240 shows 800 un-redeemed S. I. M. points. Call 08715203649 Identifier Code: 40533 Expires 31/10/04 +ham He needs to stop going to bed and make with the fucking dealing +ham How are you, my Love ? Are you with your brother ? Time to talk english with him ? *grins* Say : Hey Muhommad, Penny says hello from across the sea +spam We tried to call you re your reply to our sms for a video mobile 750 mins UNLIMITED TEXT + free camcorder Reply of call 08000930705 Now +ham Hey doc pls I want to get nice t shirt for my hubby nice fiting ones my budget is <#> k help pls I will load d card abi hw,keep me posted luv. 2 mj +ham I remain unconvinced that this isn't an elaborate test of my willpower +ham "Life is nothing wen v get everything". But "life is everything wen v miss something ". Real value of people wil be realized only in their absence.... gud mrng +ham how are you? I miss you! +ham I ain't answerin no phone at what is actually a pretty reasonable hour but I'm sleepy +ham Hey , is * rite u put »10 evey mnth is that all? +ham i am going to bed now prin +ham I think just yourself …Thanks and see you tomo +ham If u dun drive then how i go 2 sch. +ham I not at home now lei... +spam GSOH? Good with SPAM the ladies?U could b a male gigolo? 2 join the uk's fastest growing mens club reply ONCALL. mjzgroup. 08714342399.2stop reply STOP. msg@£1.50rcvd +ham Ok then i will come to ur home after half an hour +spam U have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094599 +ham Do u hav any frnd by name ashwini in ur college? +ham Jus finish my lunch on my way home lor... I tot u dun wan 2 stay in sch today... +ham K then 2marrow are you coming to class. +spam HOT LIVE FANTASIES call now 08707500020 Just 20p per min NTT Ltd, PO Box 1327 Croydon CR9 5WB 0870 is a national rate call +ham Pls send me your address sir. +ham I want to lick your pussy now... +ham Yo, you gonna still be in stock tomorrow/today? I'm trying to get a dubsack +spam URGENT! Your Mobile number has been awarded a 2000 prize GUARANTEED. Call 09061790125 from landline. Claim 3030. Valid 12hrs only 150ppm +ham I'll see, but prolly yeah +ham Thought we could go out for dinner. I'll treat you! Seem ok? +ham Where are you ? What do you do ? How can you stand to be away from me ? Doesn't your heart ache without me ? Don't you wonder of me ? Don't you crave me ? +ham Sorry. You never hear unless you book it. One was kinda a joke--thet were really looking for skinny white girls. The other was one line--you can only do so much on camera with that. Something like that they're casting on the look. +ham What you doing?how are you? +ham Sure thing big man. i have hockey elections at 6, shouldn‘t go on longer than an hour though +ham Watch lor. I saw a few swatch one i thk quite ok. Ard 116 but i need 2nd opinion leh... +ham Hiya do u like the hlday pics looked horrible in them so took mo out! Hows the camp Amrca thing? Speak soon Serena:) +ham Babe! How goes that day ? What are you up to ? I miss you already, my Love ... * loving kiss* ... I hope everything goes well. +ham Yunny... I'm goin to be late +ham Doc prescribed me morphine cause the other pain meds aren't enough. Waiting for my mom to bring it. That med should kick in fast so I'm gonna try to be on later +ham Cool, want me to go to kappa or should I meet you outside mu +ham Hey sexy buns ! Have I told you ? I adore you, loverboy. I hope you remember to thank your sister in law for those meatballs *grins* ... i love you, babe +ham May b approve panalam...but it should have more posts.. +spam SPJanuary Male Sale! Hot Gay chat now cheaper, call 08709222922. National rate from 1.5p/min cheap to 7.8p/min peak! To stop texts call 08712460324 (10p/min) +ham Sorry, I'll call later +ham I dont thnk its a wrong calling between us +ham Me i'm not workin. Once i get job... +ham And by when you're done I mean now +ham "Its Ur luck to Love someone. Its Ur fortune to Love the one who Loves U. But, its a miracle to Love a person who can't Love anyone except U..." Gud nyt... +ham Hi baby ive just got back from work and i was wanting to see u allday! I hope i didnt piss u off on the phone today. If u are up give me a call xxx +spam FreeMsg Today's the day if you are ready! I'm horny & live in your town. I love sex fun & games! Netcollex Ltd 08700621170150p per msg reply Stop to end +ham Is it your yahoo boys that bring in the perf? Or legal. +ham No need to say anything to me. I know i am an outsider +ham have you ever had one foot before? +ham Just got to <#> +ham Good! No, don‘t need any receipts—well done! (…) Yes, please tell . What‘s her number, i could ring her +ham Ever green quote ever told by Jerry in cartoon "A Person Who Irritates u Always Is the one Who Loves u Vry Much But Fails to Express It...!..!! :-) :-) gud nyt +ham Leave it wif me lar... Ü wan to carry meh so heavy... Is da num 98321561 familiar to ü? +ham Beautiful truth : Expression of the face could Be seen by everyone... But the depression of heart Could be understood only By the Loved ones.. Gud Ni8;-) +ham Infact happy new year. How are you where are you when are we seeing +spam In The Simpsons Movie released in July 2007 name the band that died at the start of the film? A-Green Day, B-Blue Day, C-Red Day. (Send A, B or C) +ham That's a shame! Maybe cld meet for few hrs tomo? +ham Lol I would but despite these cramps I like being a girl. +ham I can’t wait for cornwall. Hope tonight isn’t too bad as well but it’s rock night shite. Anyway i’m going for a kip now have a good night. Speak to you soon. +ham Pls help me tell sura that i'm expecting a battery from hont. And that if should pls send me a message about how to download movies. Thanks +spam Please call Amanda with regard to renewing or upgrading your current T-Mobile handset free of charge. Offer ends today. Tel 0845 021 3680 subject to T's and C's +ham Haven't found a way to get another app for your phone, eh ? Will you go to the net cafe ? Did you take that job? Geeee I need you babe. I crave to see you ... +ham I only work from mon to thurs but Sat i cant leh... Booked liao... Which other day u free? +ham Ü comin to fetch us oredi... +ham What's nannys address? +spam URGENT!! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham Haf u eaten? Wat time u wan me 2 come? +spam Want a new Video Phone? 750 anytime any network mins? Half price line rental free text for 3 months? Reply or call 08000930705 for free delivery +ham Yo, call me when you get the chance, a friend of mine wanted me to ask you about a big order +ham This single single answers are we fighting? Plus i said am broke and you didnt reply +ham It certainly puts things into perspective when something like this happens +ham Now got tv 2 watch meh? U no work today? +ham i felt so...not any conveying reason.. Ese he... What about me? +spam Had your mobile 11 months or more? U R entitled to Update to the latest colour mobiles with camera for Free! Call The Mobile Update Co FREE on 08002986030 +ham How's it going? Got any exciting karaoke type activities planned? I'm debating whether to play football this eve. Feeling lazy though. +ham I told that am coming on wednesday. +ham Its ok, called mom instead have fun +spam Dear Voucher Holder, To claim this weeks offer, at your PC please go to http://www.wtlp.co.uk/text. Ts&Cs apply. +ham Well if I'm that desperate I'll just call armand again +ham Are you at work right now ? +spam Congrats! Nokia 3650 video camera phone is your Call 09066382422 Calls cost 150ppm Ave call 3mins vary from mobiles 16+ Close 300603 post BCM4284 Ldn WC1N3XX +ham Haven't heard anything and he's not answering my texts so I'm guessing he flaked. That said the jb is fantastic +ham Mmmmmm ... I love you,so much, Ahmad ... I can't wait for this year to begin as every second takes me closer to being at your side. Happy New Year, my love!! +ham Pls what's the full name of joke's school cos fees in university of florida seem to actually be <#> k. Pls holla back +ham Sorry, I'll call later +ham Ok... But they said i've got wisdom teeth hidden inside n mayb need 2 remove. +ham And pls pls drink plenty plenty water +ham How are you doing. How's the queen. Are you going for the royal wedding +ham He's in lag. That's just the sad part but we keep in touch thanks to skype +ham Ok lor then we go tog lor... +ham Two teams waiting for some players +ham Can ü send me a copy of da report? +ham swhrt how u dey,hope ur ok, tot about u 2day.love n miss.take care. +ham Ok da, i already planned. I wil pick you. +spam Urgent! Please call 0906346330. Your ABTA complimentary 4* Spanish Holiday or £10,000 cash await collection SAE T&Cs BOX 47 PO19 2EZ 150ppm 18+ +ham Sorry, I'll call later in meeting +ham I just really need shit before tomorrow and I know you won't be awake before like 6 +ham I'm good. Have you registered to vote? +ham Hmm ok, i'll stay for like an hour cos my eye is really sore! +ham Dear got bus directly to calicut +ham Mm umma ask vava also to come tell him can play later together +ham Well the general price is <#> /oz, let me know if/when/how much you want +ham Sorry, I'll call later +ham Each Moment in a day,has its own value-Morning brings hope,afternoon brings faith,Evening brings luv,Night brings rest,Wish u find them all today.Good Morning +ham <#> w jetton ave if you forgot +ham Ok i'm coming home now. +ham Can not use foreign stamps in this country. +spam Double mins and txts 4 6months FREE Bluetooth on Orange. Available on Sony, Nokia Motorola phones. Call MobileUpd8 on 08000839402 or call2optout/N9DX +ham Sorry, it's a lot of friend-of-a-friend stuff, I'm just now about to talk to the actual guy who wants to buy +spam FREE for 1st week! No1 Nokia tone 4 ur mob every week just txt NOKIA to 8007 Get txting and tell ur mates www.getzed.co.uk POBox 36504 W45WQ norm150p/tone 16+ +spam Want to funk up ur fone with a weekly new tone reply TONES2U 2 this text. www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply +spam cmon babe, make me horny, *turn* me on! Txt me your fantasy now babe -) Im hot, sticky and need you now. All replies cost £1.50. 2 cancel send STOP +ham I will come tomorrow di +ham Wylie update: my weed dealer carlos went to freedom and had a class with lunsford +ham Are you happy baby ? Are you alright ? Did you take that job ? I hope your fine. I send you a kiss to make you smile from across the sea ... *kiss* *kiss* +ham C movie is juz last minute decision mah. Juz watch 2 lar but i tot ü not interested. +ham How are you enjoying this semester? Take care brother. +spam IMPORTANT INFORMATION 4 ORANGE USER 0796XXXXXX. TODAY IS UR LUCKY DAY!2 FIND OUT WHY LOG ONTO http://www.urawinner.com THERE'S A FANTASTIC PRIZEAWAITING YOU! +ham Get the door, I'm here +ham Lets use it next week, princess :) +ham Or i go home first lar ü wait 4 me lor.. I put down my stuff first.. +ham I want kfc its Tuesday. Only buy 2 meals ONLY 2. No gravy. Only 2 Mark. 2! +ham No da:)he is stupid da..always sending like this:)don believe any of those message.pandy is a mental:) +ham Oi when you gonna ring +spam Missed call alert. These numbers called but left no message. 07008009200 +ham I attended but nothing is there. +ham Ard 530 like dat lor. We juz meet in mrt station then ü dun haf to come out. +ham No dear i was sleeping :-P +ham Er mw im filled tuth is aight +ham Will be office around 4 pm. Now i am going hospital. +ham Actually i'm waiting for 2 weeks when they start putting ad. +ham Anything lor if they all go then i go lor... +ham U free on sat rite? U wan 2 watch infernal affairs wif me n darren n mayb xy? +ham Plz note: if anyone calling from a mobile Co. & asks u to type # <#> or # <#> . Do not do so. Disconnect the call,coz it iz an attempt of 'terrorist' to make use of the sim card no. Itz confirmd by nokia n motorola n has been verified by CNN IBN. +ham Yo you around? A friend of mine's lookin to pick up later tonight +ham Stupid auto correct on my phone +ham Double eviction this week - Spiral and Michael and good riddance to them! +ham "The world suffers a lot... Not because of the violence of bad people. But because of the silence of good people!", Gud night.... +ham Ok thats cool. Its , just off either raglan rd or edward rd. Behind the cricket ground. Gimme ring when ur closeby see you tuesday. +ham Buy one egg for me da..please:) +ham Have you started in skye +ham Have you bookedthe hut? And also your time off? How are you by the way? +ham And several to you sir. +ham U really pig leh sleep so much. My dad wake me up at 10 smth 2 eat lunch today. +ham I'm at home. Please call +ham My love ... I hope your not doing anything drastic. Don't you dare sell your pc or your phone ... +ham Now only i reached home. . . I am very tired now. . I will come tomorro +spam FREEMSG: Our records indicate you may be entitled to 3750 pounds for the Accident you had. To claim for free reply with YES to this msg. To opt out text STOP +spam U can WIN £100 of Music Gift Vouchers every week starting NOW Txt the word DRAW to 87066 TsCs www.Idew.com SkillGame, 1Winaweek, age16. 150ppermessSubscription +ham Life style garments account no please. +ham Lol wtf random. Btw is that your lunch break +ham Sez, hows u & de arab boy? Hope u r all good give my love 2 evry1 love ya eshxxxxxxxxxxx +ham The LAY MAN! Just to let you know you are missed and thought off. Do have a great day. And if you can send me bimbo and ugo's numbers, ill appreciate. Safe +ham Detroit. The home of snow. Enjoy it. +spam Show ur colours! Euro 2004 2-4-1 Offer! Get an England Flag & 3Lions tone on ur phone! Click on the following service message for info! +ham Okie... +ham Aight, I'm chillin in a friend's room so text me when you're on the way +ham Is toshiba portege m100 gd? +ham Well welp is sort of a semiobscure internet thing +spam Text PASS to 69669 to collect your polyphonic ringtones. Normal gprs charges apply only. Enjoy your tones +spam accordingly. I repeat, just text the word ok on your mobile phone and send +ham Loosu go to hospital. De dont let it careless. +ham How much for an eighth? +ham Omg Joanna is freaking me out. She's looked thru all my friends to find photos of me. And then she's asking about stuff on my MySpace which I haven't even logged on in like a year. :/ +ham Send ur birthdate with month and year, I will tel u ur LIFE PARTNER'S name. and the method of calculation. Reply must. +ham Juz now havent woke up so a bit blur blur... Can? Dad went out liao... I cant cum now oso... +ham How about clothes, jewelry, and trips? +spam Block Breaker now comes in deluxe format with new features and great graphics from T-Mobile. Buy for just £5 by replying GET BBDELUXE and take the challenge +ham Aah! A cuddle would be lush! I'd need lots of tea and soup before any kind of fumbling! +spam important information 4 orange user . today is your lucky day!2find out why log onto http://www.urawinner.com THERE'S A FANTASTIC SURPRISE AWAITING YOU! +ham I am late. I will be there at +ham Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. +ham Are you plans with your family set in stone ? +ham Pls dont forget to study +ham You'll never believe this but i have actually got off at taunton. Wow +ham Den only weekdays got special price... Haiz... Cant eat liao... Cut nails oso muz wait until i finish drivin wat, lunch still muz eat wat... +ham She just broke down a list of reasons why nobody's in town and I can't tell if she's being sarcastic or just faggy +ham <DECIMAL> m but its not a common car here so its better to buy from china or asia. Or if i find it less expensive. I.ll holla +ham The greatest test of courage on earth is to bear defeat without losing heart....gn tc +ham SORRY IM STIL FUCKED AFTER LAST NITE WENT TOBED AT 430 GOT UP 4 WORK AT 630 +ham Hey so whats the plan this sat? +ham Beauty sleep can help ur pimples too. +ham Great. Hope you are using your connections from mode men also cos you can never know why old friends can lead you to today +spam Natalja (25/F) is inviting you to be her friend. Reply YES-440 or NO-440 See her: www.SMS.ac/u/nat27081980 STOP? Send STOP FRND to 62468 +ham Where to get those? +ham Kind of. Just missed train cos of asthma attack, nxt one in half hr so driving in. not sure where to park. +ham Ball is moving a lot.will spin in last :)so very difficult to bat:) +ham Haiyoh... Maybe your hamster was jealous of million +ham Can you please send me my aunty's number +ham I'm glad. You are following your dreams. +ham I've reached home finally... +spam URGENT. Important information for 02 user. Today is your lucky day! 2 find out why , log onto http://www.urawinner.com there is a fantastic surprise awaiting you ! +spam WINNER!! As a valued network customer you have been selected to receivea £900 prize reward! To claim call 09061701461. Claim code KL341. Valid 12 hours only. +ham Wn u r hurt by d prsn who s close 2 u, do fight wit dem. Coz somtimes dis fight saves a relation bt being quiet leaves nothin in a relation.. Gud eveB-) +ham U can call now... +ham Science tells that chocolate will melt under the sunlight. Please don't walk under the sunlight. BCoz,I don't want to loss a sweet friend. +ham Yes. I come to nyc for audiitions and am trying to relocate. +ham I pocked you up there before +ham Congrats. That's great. I wanted to tell you not to tell me your score cos it might make me relax. But its motivating me so thanks for sharing +ham I wud never mind if u dont miss me or if u dont need me.. But u wil really hurt me wen u need me & u dont tell me......... Take care:-) +ham Hey mr whats the name of that bill brison book the one about language and words +ham Okay, good, no problem, and thanx! +ham For you information, IKEA is spelled with all caps. That is not yelling. when you thought i had left you, you were sitting on the bed among the mess when i came in. i said we were going after you got home from class. please don't try and bullshit me. It makes me want to listen to you less. +ham Call me when u're done... +ham G.W.R +ham You best watch what you say cause I get drunk as a motherfucker +spam Kit Strip - you have been billed 150p. Netcollex Ltd. PO Box 1013 IG11 OJA +spam HMV BONUS SPECIAL 500 pounds of genuine HMV vouchers to be won. Just answer 4 easy questions. Play Now! Send HMV to 86688 More info:www.100percent-real.com +spam Please CALL 08712402578 immediately as there is an urgent message waiting for you +spam thesmszone.com lets you send free anonymous and masked messages..im sending this message from there..do you see the potential for abuse??? +spam WELL DONE! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TCs, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham Hurt me... Tease me... Make me cry... But in the end of my life when i die plz keep one rose on my grave and say STUPID I MISS U.. HAVE A NICE DAY BSLVYL +ham Erm... Woodland avenue somewhere. Do you get the parish magazine, his telephone number will be in there. +ham Are there TA jobs available? Let me know please cos i really need to start working +ham Aiyar hard 2 type. U later free then tell me then i call n scold n tell u. +ham Yup i'm free... +ham Good good, billy mates all gone. Just been jogging, again! Did enjoy concert? +ham Yo come over carlos will be here soon +ham Awww dat is sweet! We can think of something to do he he! Have a nice time tonight ill probably txt u later cos im lonely :( xxx. +ham I guess it is useless calling u 4 something important. +ham Ha ha - had popped down to the loo when you hello-ed me. Hello! +ham He dint tell anything. He is angry on me that why you told to abi. +spam Someone U know has asked our dating service 2 contact you! Cant Guess who? CALL 09058091854 NOW all will be revealed. PO BOX385 M6 6WU +ham It so happens that there r 2waxsto do wat you want. She can come and ill get her medical insurance. And she'll be able to deliver and have basic care. I'm currently shopping for the right medical insurance for her. So just give me til friday morning. Thats when i.ll see the major person that can guide me to the right insurance. +ham I keep ten rs in my shelf:) buy two egg. +ham I wasn't well babe, i have swollen glands at my throat ... What did you end up doing ? +ham Is ur changes 2 da report big? Cos i've already made changes 2 da previous report. +ham Captain is in our room:) +ham I can't speak, bcaz mobile have problem. I can listen you but you cann't listen my voice. So i calls you later. +ham HIYA STU WOT U UP 2.IM IN SO MUCH TRUBLE AT HOME AT MOMENT EVONE HATES ME EVEN U! WOT THE HELL AV I DONE NOW? Y WONT U JUST TELL ME TEXT BCK PLEASE LUV DAN +ham S...i will take mokka players only:) +ham Are you still playing with gautham? +ham Hey mr and I are going to the sea view and having a couple of gays I mean games! Give me a bell when ya finish +ham K, jason says he's gonna be around so I'll be up there around <#> +ham Sorry . I will be able to get to you. See you in the morning. +ham Aight well keep me informed +ham I am not having her number sir +ham Am only searching for good dual sim mobile pa. +ham That seems unnecessarily hostile +ham Dude got a haircut. Now its breezy up there +spam Congrats! 2 mobile 3G Videophones R yours. call 09061744553 now! videochat wid ur mates, play java games, Dload polyH music, noline rentl. bx420. ip4. 5we. 150pm +ham 1Apple/Day=No Doctor. 1Tulsi Leaf/Day=No Cancer. 1Lemon/Day=No Fat. 1Cup Milk/day=No Bone Problms 3 Litres Watr/Day=No Diseases Snd ths 2 Whom U Care..:-) +ham i thought we were doing a king of the hill thing there. +ham Nope i'll come online now.. +ham ALSO TELL HIM I SAID HAPPY BIRTHDAY +ham Y bishan lei... I tot ü say lavender? +ham Boo what time u get out? U were supposed to take me shopping today. :( +ham Now u sound like manky scouse boy steve,like! I is travelling on da bus home.wot has u inmind 4 recreation dis eve? +ham Fyi I'm taking a quick shower, be at epsilon in like <#> min +ham on a Tuesday night r u 4 real +ham Yes when is the appt again? +ham Just got outta class gonna go gym. +ham I want to sent <#> mesages today. Thats y. Sorry if i hurts +ham Ü all write or wat.. +ham Ha! I wouldn't say that I just didn't read anything into way u seemed. I don't like 2 be judgemental....i save that for fridays in the pub! +ham Its a valentine game. . . send dis msg to all ur friends. . If 5 answers r d same then someone really loves u. . Ques- which colour suits me the best? +ham Hi:)did you asked to waheeda fathima about leave? +ham Enjoy urself tmr... +ham You still around? I could use a half-8th +spam U 447801259231 have a secret admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09058094597 +ham You give us back my id proof and <#> rs. We wont allow you to work. We will come to your home within days +ham Ü bot notes oredi... Cos i juz rem i got... +ham Yes. Rent is very expensive so its the way we save. +ham Night has ended for another day, morning has come in a special way. May you smile like the sunny rays and leaves your worries at the blue blue bay. Gud mrng +ham Hows the pain dear?y r u smiling? +ham Fun fact: although you would think armand would eventually build up a tolerance or some shit considering how much he smokes, he gets fucked up in like 2 hits +spam important information 4 orange user 0789xxxxxxx. today is your lucky day!2find out why log onto http://www.urawinner.com THERE'S A FANTASTIC SURPRISE AWAITING YOU! +ham Sorry, I can't help you on this. +ham Great. So should i send you my account number. +ham HELLOGORGEOUS, HOWS U? MY FONE WAS ON CHARGE LST NITW WEN U TEXD ME. HOPEU AD A NICE WKEND AS IM SURE U DID LOOKIN 4WARD 2 C-IN U 2MRW LUV JAZ +spam Our dating service has been asked 2 contact U by someone shy! CALL 09058091870 NOW all will be revealed. POBox84, M26 3UZ 150p +ham Ü only send me the contents page... +ham Night sweet, sleep well! I've just been to see The Exorcism of Emily Rose and may never sleep again! Hugs and snogs! +ham Don't Think About "What u Have Got" Think About "How to Use It That You Have Got" gooD ni8 +ham I can't right this second, gotta hit people up first +ham Evry Emotion dsn't hav Words.Evry Wish dsn't hav Prayrs.. If u Smile,D World is wit u.Othrwise even d Drop of Tear dsn't lik 2 Stay wit u.So b happy.. Good morning, keep smiling:-) +ham So what about you. What do you remember +ham Ujhhhhhhh computer shipped out with address to sandiago and parantella lane. Wtf. Poop. +ham Mm yes dear look how i am hugging you both. :-P +ham I like dis sweater fr mango but no more my size already so irritating. +ham 1 I don't have her number and 2 its gonna be a massive pain in the ass and i'd rather not get involved if that's possible +ham Anytime lor... +spam Do you want a new Video handset? 750 any time any network mins? UNLIMITED TEXT? Camcorder? Reply or Call now 08000930705 for del Sat AM +ham Purity of friendship between two is not about smiling after reading the forwarded message..Its about smiling just by seeing the name. Gud evng +spam Ur balance is now £600. Next question: Complete the landmark, Big, A. Bob, B. Barry or C. Ben ?. Text A, B or C to 83738. Good luck! +ham Me fine..absolutly fine +ham K and you're sure I don't have to have consent forms to do it :V +spam Ur TONEXS subscription has been renewed and you have been charged £4.50. You can choose 10 more polys this month. www.clubzed.co.uk *BILLING MSG* +spam If you don't, your prize will go to another customer. T&C at www.t-c.biz 18+ 150p/min Polo Ltd Suite 373 London W1J 6HL Please call back if busy +ham How much is torch in 9ja. +ham Doing nothing, then u not having dinner w us? +ham How are you. Just checking up on you +ham Done it but internet connection v slow and can‘t send it. Will try again later or first thing tomo. +ham Mathews or tait or edwards or anderson +ham yeah sure thing mate haunt got all my stuff sorted but im going sound anyway promoting hex for .by the way who is this? dont know number. Joke +ham No need lar i go engin? Cos my sis at arts today... +ham Thanks honey but still haven't heard anything I will leave it a bit longer so not 2 crowd him and will try later - great advice thanks hope cardiff is still there! +spam Do you want a New Nokia 3510i Colour Phone Delivered Tomorrow? With 200 FREE minutes to any mobile + 100 FREE text + FREE camcorder Reply or Call 8000930705 +ham , im .. On the snowboarding trip. I was wondering if your planning to get everyone together befor we go..a meet and greet kind of affair? Cheers, +ham S.i'm watching it in live.. +ham see you then, we're all christmassy here! +ham K I'm ready, <#> ? +ham Do you know why god created gap between your fingers..? So that, One who is made for you comes & fills those gaps by holding your hand with LOVE..! +ham The greatest test of courage on earth is to bear defeat without losing heart....gn tc +ham what are your new years plans? +spam RECPT 1/3. You have ordered a Ringtone. Your order is being processed... +ham Baaaaaaaabe! Wake up ! I miss you ! I crave you! I need you! +ham Only just got this message, not ignoring you. Yes, i was. Shopping that is +ham Dear :-/ why you mood off. I cant drive so i brother to drive +ham When did dad get back. +ham Can you tell Shola to please go to college of medicine and visit the academic department, tell the academic secretary what the current situation is and ask if she can transfer there. She should ask someone to check Sagamu for the same thing and lautech. Its vital she completes her medical education in Nigeria. Its less expensive much less expensive. Unless she will be getting citizen rates in new zealand. +ham Yes just finished watching days of our lives. I love it. +ham Juz go google n search 4 qet... +ham Many times we lose our best ones bcoz we are +ham Good FRIENDS CaRE for each Other.. CLoSE Friends UNDERSTaND each Other... and TRUE Friends STaY forever beyond words, beyond time. Gud ni8 +ham Just getting back home +ham Sorry, I'll call later <#> mins +ham Dun need to use dial up juz open da browser n surf... +spam As one of our registered subscribers u can enter the draw 4 a 100 G.B. gift voucher by replying with ENTER. To unsubscribe text STOP +ham Awesome, plan to get here any time after like <#> , I'll text you details in a wee bit +ham Take care and sleep well.you need to learn to change in life.you only need to get CONVINCED on that.i will wait but no more conversations between us.GET CONVINCED by that time.Your family is over for you in many senses.respect them but not overemphasise.or u have no role in my life. +spam For your chance to WIN a FREE Bluetooth Headset then simply reply back with "ADP" +ham You also didnt get na hi hi hi hi hi +ham Ya but it cant display internal subs so i gotta extract them +ham If i said anything wrong sorry de:-) +ham Sad story of a Man - Last week was my b'day. My Wife did'nt wish me. My Parents forgot n so did my Kids . I went to work. Even my Colleagues did not wish. +ham How stupid to say that i challenge god.You dont think at all on what i write instead you respond immed. +ham Yeah I should be able to, I'll text you when I'm ready to meet up +ham V skint too but fancied few bevies.waz gona go meet &othrs in spoon but jst bin watchng planet earth&sofa is v comfey; If i dont make it hav gd night +ham says that he's quitting at least5times a day so i wudn't take much notice of that. Nah, she didn't mind. Are you gonna see him again? Do you want to come to taunton tonight? U can tell me all about ! +ham When you get free, call me +ham How have your little darlings been so far this week? Need a coffee run tomo?Can't believe it's that time of week already … +ham Ok i msg u b4 i leave my house. +ham Still at west coast... Haiz... Ü'll take forever to come back... +ham MMM ... Fuck .... Merry Christmas to me +ham alright. Thanks for the advice. Enjoy your night out. I'ma try to get some sleep... +ham Update your face book status frequently :) +ham Just now saw your message.it k da:) +ham Was it something u ate? +ham So what did the bank say about the money? +ham Aiyar dun disturb u liao... Thk u have lots 2 do aft ur cupboard come... +ham Hey they r not watching movie tonight so i'll prob b home early... +ham Yar lor... How u noe? U used dat route too? +ham 2mro i am not coming to gym machan. Goodnight. +ham Dont think you need yellow card for uk travel. Ask someone that has gone before. If you do its just <#> bucks +ham Can u look 4 me in da lib i got stuff havent finish yet. +ham Sounds great! Im going to sleep now. Have a good night! +spam Don't b floppy... b snappy & happy! Only gay chat service with photo upload call 08718730666 (10p/min). 2 stop our texts call 08712460324 +ham House-Maid is the murderer, coz the man was murdered on <#> th January.. As public holiday all govt.instituitions are closed,including post office..understand? +ham How come u got nothing to do? +ham Nothing will ever be easy. But don't be looking for a reason not to take a risk on life and love +ham i want to grasp your pretty booty :) +ham I've got it down to a tea. not sure which flavour +ham I'm going 2 orchard now laready me reaching soon. U reaching? +ham Dear i am not denying your words please +ham You know my old Dom I told you about yesterday ? His name is Roger? He got in touch with me last night and wants me to meet him today at 2 pm +ham COME BACK TO TAMPA FFFFUUUUUUU +ham 2 celebrate my b’day, y else? +ham Merry christmas to u too annie! +ham Please tell me you have some of that special stock you were talking about +ham I sent them. Do you like? +spam Urgent UR awarded a complimentary trip to EuroDisinc Trav, Aco&Entry41 Or £1000. To claim txt DIS to 87121 18+6*£1.50(moreFrmMob. ShrAcomOrSglSuplt)10, LS1 3AJ +ham Awesome, be there in a minute +ham And that is the problem. You walk around in "julianaland" oblivious to what is going on around you. I say the same things constantly and they go in one ear and out the other while you go off doing whatever you want to do. It's not that you don't know why I'm upset--it's that you don't listen when i tell you WHAT is going to upset me. Then you want to be surprised when I'm mad. +ham I've told you everything will stop. Just dont let her get dehydrated. +ham Or I guess <#> min +ham I'm home. Ard wat time will u reach? +ham Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@ +ham If you want to mapquest it or something look up "usf dogwood drive", that's the tiny street where the parking lot is +ham Aight should I just plan to come up later tonight? +ham Die... I accidentally deleted e msg i suppose 2 put in e sim archive. Haiz... I so sad... +spam Welcome to UK-mobile-date this msg is FREE giving you free calling to 08719839835. Future mgs billed at 150p daily. To cancel send "go stop" to 89123 +ham This is wishing you a great day. Moji told me about your offer and as always i was speechless. You offer so easily to go to great lengths on my behalf and its stunning. My exam is next friday. After that i will keep in touch more. Sorry. +ham Thanks again for your reply today. When is ur visa coming in. And r u still buying the gucci and bags. My sister things are not easy, uncle john also has his own bills so i really need to think about how to make my own money. Later sha. +ham Sorry I flaked last night, shit's seriously goin down with my roommate, what you up to tonight? +ham He said i look pretty wif long hair wat. But i thk he's cutting quite short 4 me leh. +ham Ranjith cal drpd Deeraj and deepak 5min hold +ham "CHEERS FOR CALLIN BABE.SOZI CULDNT TALKBUT I WANNATELL U DETAILS LATER WENWECAN CHAT PROPERLY X" +ham Hey u still at the gym? +ham She said,'' do u mind if I go into the bedroom for a minute ? '' ''OK'', I sed in a sexy mood. She came out 5 minuts latr wid a cake...n My Wife, +ham Much better now thanks lol +ham Nothing, smsing u n xy lor. Sorry lor da guys neva c u in person but they sort of know u lor. So u wan 2 meet them xy ask me 2 bring u along 4 our next meeting. +ham Lemme know when I can swing by and pick up, I'm free basically any time after 1 all this semester +ham Wa... U so efficient... Gee... Thanx... +spam 3. You have received your mobile content. Enjoy +ham S but not able to sleep. +spam Want explicit SEX in 30 secs? Ring 02073162414 now! Costs 20p/min +ham We will meet soon princess! Ttyl! +ham I'll pick you up at about 5.15pm to go to taunton if you still want to come. +ham Oh :-)only 4 outside players allowed to play know +ham I anything lor. +ham Erutupalam thandiyachu +ham Y cant u try new invention to fly..i'm not joking., +ham No..its ful of song lyrics.. +ham What do u reckon as need 2 arrange transport if u can't do it, thanks +ham True lov n care wil nevr go unrecognized. though somone often makes mistakes when valuing it. but they will definitly undrstnd once when they start missing it. +ham Shopping? Eh ger i toking abt syd leh...Haha +ham What not under standing. +ham have * good weekend. +ham Miss call miss call khelate kintu opponenter miss call dhorte lage. Thats d rule. One with great phone receiving quality wins. +ham Call me when you get the chance plz <3 +ham The new deus ex game comin early next yr +ham My computer just fried the only essential part we don't keep spares of because my fucking idiot roommates looovvve leaving the thing running on full <#> /7 +ham My friend, she's studying at warwick, we've planned to go shopping and to concert tmw, but it may be canceled, havn't seen for ages, yeah we should get together sometime! +ham Probably a couple hours tops +ham LOL .. *grins* .. I'm not babe, but thanks for thinking of me! +ham Man this bus is so so so slow. I think you're gonna get there before me +ham Hope this text meets you smiling. If not then let this text give you a reason to smile. Have a beautiful day. +ham In case you wake up wondering where I am, I forgot I have to take care of something for grandma today, should be done before the parade +ham Ok +spam Latest Nokia Mobile or iPOD MP3 Player +£400 proze GUARANTEED! Reply with: WIN to 83355 now! Norcorp Ltd.£1,50/Mtmsgrcvd18+ +spam SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE +ham Nvm take ur time. +ham So wat's da decision? +ham Wot is u up 2 then bitch? +ham Stupid.its not possible +ham She told to hr that he want posting in chennai:)because i'm working here:) +spam Mobile Club: Choose any of the top quality items for your mobile. 7cfca1a +ham When are you guys leaving? +ham He neva grumble but i sad lor... Hee... Buy tmr lor aft lunch. But we still meetin 4 lunch tmr a not. Neva hear fr them lei. Ü got a lot of work ar? +ham Not able to do anything. +ham Ü takin linear algebra today? +ham This weekend is fine (an excuse not to do too much decorating) +ham Sorry I missed you babe. I was up late and slept in. I hope you enjoy your driving lesson, boytoy. I miss you too ... *teasing kiss* +ham Now project pa. After that only i can come. +spam Money i have won wining number 946 wot do i do next +ham Sure, whenever you show the fuck up >:( +ham That was random saw my old roomate on campus. He graduated +spam Congrats! 2 mobile 3G Videophones R yours. call 09061744553 now! videochat wid ur mates, play java games, Dload polyH music, noline rentl. bx420. ip4. 5we. 150pm +ham Men always needs a beautiful, intelligent, caring, loving, adjustable, cooperative wife. But the law allows only one wife.... +ham That sucks. So what do you got planned for your yo valentine? I am your yo valentine aren't I? +ham Just got part Nottingham - 3 hrs 63miles. Good thing i love my man so much, but only doing 40mph. Hey ho +ham What to think no one saying clearly. Ok leave no need to ask her. I will go if she come or not +ham Hi good mornin.. Thanku wish u d same.. +ham DO U WANT 2 MEET UP 2MORRO +ham Actually I decided I was too hungry so I haven't left yet :V +ham I've sent ü my part.. +ham Cos i was out shopping wif darren jus now n i called him 2 ask wat present he wan lor. Then he started guessing who i was wif n he finally guessed darren lor. +spam I want some cock! My hubby's away, I need a real man 2 satisfy me. Txt WIFE to 89938 for no strings action. (Txt STOP 2 end, txt rec £1.50ea. OTBox 731 LA1 7WS. ) +ham Understand. his loss is my gain :) so do you work? School? +ham HOW ARE U? I HAVE MISSED U! I HAVENT BEEN UP 2 MUCH A BIT BORED WITH THE HOLIDAY WANT 2 GO BAK 2 COLLEGE! SAD ISNT IT?xx +ham Hiya, probably coming home * weekend after next +ham Don't forget though that I love you .... And I walk beside you. Watching over you and keeping your heart warm. +ham I wish things were different. I wonder when i will be able to show you how much i value you. Pls continue the brisk walks no drugs without askin me please and find things to laugh about. I love you dearly. +ham Ok both our days. So what are you making for dinner tonite? Am I invited? +spam Gr8 new service - live sex video chat on your mob - see the sexiest dirtiest girls live on ur phone - 4 details text horny to 89070 to cancel send STOP to 89070 +ham I have no money 4 steve mate! ! +ham IM LATE TELLMISS IM ON MY WAY +ham Never blame a day in ur life. Good days give u happiness. Bad days give u experience. Both are essential in life! All are Gods blessings! good morning.: +ham Normally i use to drink more water daily:) +ham Dare i ask... Any luck with sorting out the car? +ham Party's at my place at usf, no charge (but if you can contribute in any way it is greatly appreciated) and yeah, we got room for one more +ham Urgh, coach hot, smells of chip fat! Thanks again, especially for the duvet (not a predictive text word). +ham Hiya. How was last night? I've been naughty and bought myself clothes and very little ... Ready for more shopping tho! What kind of time do you wanna meet? +spam FreeMsg Hi baby wow just got a new cam moby. Wanna C a hot pic? or Fancy a chat?Im w8in 4uTxt / rply CHAT to 82242 Hlp 08712317606 Msg150p 2rcv +ham I've been trying to reach him without success +ham when you and derek done with class? +ham Never y lei... I v lazy... Got wat? Dat day ü send me da url cant work one... +ham Never try alone to take the weight of a tear that comes out of ur heart and falls through ur eyes... Always remember a STUPID FRIEND is here to share... BSLVYL +ham Hey mate. Spoke to the mag people. We‘re on. the is deliver by the end of the month. Deliver on the 24th sept. Talk later. +ham Hope you are having a good week. Just checking in +ham Haha, my friend tyler literally just asked if you could get him a dubsack +ham "Hey! do u fancy meetin me at 4 at cha – hav a lil beverage on me. if not txt or ring me and we can meet up l8r. quite tired got in at 3 v.pist ;) love Pete x x x" +ham Great. Have a safe trip. Dont panic surrender all. +ham "SYMPTOMS" when U are in love: "1.U like listening songs 2.U get stopped where u see the name of your beloved 3.U won't get angry when your +ham Sun ah... Thk mayb can if dun have anythin on... Thk have to book e lesson... E pilates is at orchard mrt u noe hor... +ham Try to do something dear. You read something for exams +ham 7 wonders in My WORLD 7th You 6th Ur style 5th Ur smile 4th Ur Personality 3rd Ur Nature 2nd Ur SMS and 1st "Ur Lovely Friendship"... good morning dear +ham Gettin rdy to ship comp +ham I am in hospital da. . I will return home in evening +ham PISS IS TALKING IS SOMEONE THAT REALISE U THAT POINT THIS AT IS IT.(NOW READ IT BACKWARDS) +ham Think + da. You wil do. +ham I'm awake oh. What's up. +ham Good afternoon my boytoy. How goes that walking here and there day ? Did you get that police abstract? Are you still out and about? I wake and miss you babe +ham How much u trying to get? +ham Come around <DECIMAL> pm vikky..i'm otside nw, il come by tht time +ham Tell me again what your address is +ham Honeybee Said: *I'm d Sweetest in d World* God Laughed & Said: *Wait,U Havnt Met d Person Reading This Msg* MORAL: Even GOD Can Crack Jokes! GM+GN+GE+GN:) +ham Should i buy him a blackberry bold 2 or torch. Should i buy him new or used. Let me know. Plus are you saying i should buy the <#> g wifi ipad. And what are you saying about the about the <#> g? +ham But you were together so you should be thinkin about him +ham hiya hows it going in sunny africa? hope u r avin a good time. give that big old silver back a big kiss from me. +ham At WHAT TIME should i come tomorrow +spam Wanna have a laugh? Try CHIT-CHAT on your mobile now! Logon by txting the word: CHAT and send it to No: 8883 CM PO Box 4217 London W1A 6ZF 16+ 118p/msg rcvd +ham "CHA QUITEAMUZING THAT’SCOOL BABE,PROBPOP IN & CU SATTHEN HUNNY 4BREKKIE! LOVE JEN XXX. PSXTRA LRG PORTIONS 4 ME PLEASE " +ham Omg how did u know what I ate? +spam "URGENT! This is the 2nd attempt to contact U!U have WON £1000CALL 09071512432 b4 300603t&csBCM4235WC1N3XX.callcost150ppmmobilesvary. max£7. 50" +ham :( but your not here.... +ham Not directly behind... Abt 4 rows behind ü... +spam Congratulations ur awarded 500 of CD vouchers or 125gift guaranteed & Free entry 2 100 wkly draw txt MUSIC to 87066 +spam Had your contract mobile 11 Mnths? Latest Motorola, Nokia etc. all FREE! Double Mins & Text on Orange tariffs. TEXT YES for callback, no to remove from records +spam Urgent! call 09066350750 from your landline. Your complimentary 4* Ibiza Holiday or 10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150 ppm 18+ +ham No plans yet. What are you doing ? +ham Hi ....My engagement has been fixd on <#> th of next month. I know its really shocking bt....hmm njan vilikkam....t ws al of a sudn;-(. +ham Not course. Only maths one day one chapter with in one month we can finish. +ham Wow didn't think it was that common. I take it all back ur not a freak! Unless u chop it off:-) +spam For ur chance to win a £250 wkly shopping spree TXT: SHOP to 80878. T's&C's www.txt-2-shop.com custcare 08715705022, 1x150p/wk +ham Noooooooo please. Last thing I need is stress. For once in your life be fair. +spam U have a Secret Admirer who is looking 2 make contact with U-find out who they R*reveal who thinks UR so special-call on 09065171142-stopsms-08718727870150ppm +spam Mila, age23, blonde, new in UK. I look sex with UK guys. if u like fun with me. Text MTALK to 69866.18 . 30pp/txt 1st 5free. £1.50 increments. Help08718728876 +ham I'll see if I can swing by in a bit, got some things to take care of here firsg +ham I wanted to wish you a Happy New Year and I wanted to talk to you about some legal advice to do with when Gary and I split but in person. I'll make a trip to Ptbo for that. I hope everything is good with you babe and I love ya :) +ham Have you not finished work yet or something? +ham Tomorrow i am not going to theatre. . . So i can come wherever u call me. . . Tell me where and when to come tomorrow +spam Well done ENGLAND! Get the official poly ringtone or colour flag on yer mobile! text TONE or FLAG to 84199 NOW! Opt-out txt ENG STOP. Box39822 W111WX £1.50 +ham Right it wasnt you who phoned it was someone with a number like yours! +ham It's ok i wun b angry. Msg u aft i come home tonight. +ham I had a good time too. Its nice to do something a bit different with my weekends for a change. See ya soon +ham Yo sorry was in the shower sup +ham Carlos is down but I have to pick it up from him, so I'll swing by usf in a little bit +ham Full heat pa:-) i have applyed oil pa. +ham I'm stuck in da middle of da row on da right hand side of da lt... +ham Have you laid your airtel line to rest? +ham Hi did u decide wot 2 get 4 his bday if not ill prob jus get him a voucher frm virgin or sumfing +spam FreeMsg: Txt: CALL to No: 86888 & claim your reward of 3 hours talk time to use from your phone now! Subscribe6GBP/mnth inc 3hrs 16 stop?txtStop +ham "Hey j! r u feeling any better, hopeSo hunny. i amnow feelin ill & ithink i may have tonsolitusaswell! damn iam layin in bedreal bored. lotsof luv me xxxx" +ham And I don't plan on staying the night but I prolly won't be back til late +ham THANX 4 PUTTIN DA FONE DOWN ON ME!! +ham I need an 8th but I'm off campus atm, could I pick up in an hour or two? +ham Oh... Haha... Den we shld had went today too... Gee, nvm la... Kaiez, i dun mind goin jazz oso... Scared hiphop open cant catch up... +ham Been running but only managed 5 minutes and then needed oxygen! Might have to resort to the roller option! +ham We live in the next <#> mins +ham Y de asking like this. +ham Just glad to be talking to you. +ham Wat time ü finish? +ham Sorry da. I gone mad so many pending works what to do. +ham How much you got for cleaning +ham hows my favourite person today? r u workin hard? couldn't sleep again last nite nearly rang u at 4.30 +spam Sunshine Quiz! Win a super Sony DVD recorder if you canname the capital of Australia? Text MQUIZ to 82277. B +ham Ü called dad oredi... +ham Good. do you think you could send me some pix? I would love to see your top and bottom... +ham Nvm... I'm going to wear my sport shoes anyway... I'm going to be late leh. +ham Sorry, I'll call later In meeting. +ham THIS IS A LONG FUCKIN SHOWR +ham Received, understood n acted upon! +ham They finally came to fix the ceiling. +ham U need my presnts always bcz U cant mis love. "jeevithathile irulinae neekunna prakasamanu sneham" prakasam ennal prabha 'That mns prabha is'LOVE' Got it. Dont mis me.... +ham Jus finish blowing my hair. U finish dinner already? +ham I'm on the bus. Love you +ham Lol ... I knew that .... I saw him in the dollar store +spam Please call our customer service representative on 0800 169 6031 between 10am-9pm as you have WON a guaranteed £1000 cash or £5000 prize! +spam Todays Voda numbers ending with 7634 are selected to receive a £350 reward. If you have a match please call 08712300220 quoting claim code 7684 standard rates apply. +ham Only saturday and sunday holiday so its very difficult:) +ham Everybody had fun this evening. Miss you. +ham Got hella gas money, want to go on a grand nature adventure with galileo in a little bit? +ham I'm in a meeting, call me later at +ham Oh wow thats gay. Will firmware update help +ham These won't do. Have to move on to morphine +ham How come i din c ü... Yup i cut my hair... +ham K k pa Had your lunch aha. +ham Oh ho. Is this the first time u use these type of words +ham Captain vijaykanth is doing comedy in captain tv..he is drunken :) +ham Of course. I guess god's just got me on hold right now. +ham Do you hide anythiing or keeping distance from me +ham Havent. +spam You are being ripped off! Get your mobile content from www.clubmoby.com call 08717509990 poly/true/Pix/Ringtones/Games six downloads for only 3 +ham Sorry i din lock my keypad. +ham Did u got that persons story +ham Are you planning to come chennai? +spam We tried to contact you re your reply to our offer of a Video Phone 750 anytime any network mins Half Price Line Rental Camcorder Reply or call 08000930705 +ham God created gap btwn ur fingers so dat sum1 vry special will fill those gaps by holding ur hands.. Now plz dont ask y he created so much gap between legs !!! +ham We are okay. Going to sleep now. Later +ham Please protect yourself from e-threats. SIB never asks for sensitive information like Passwords,ATM/SMS PIN thru email. Never share your password with anybody. +ham Finally it has happened..! Aftr decades..! BEER is now cheaper than PETROL! The goverment expects us to "DRINK". . . But don't "DRIVE " +spam A £400 XMAS REWARD IS WAITING FOR YOU! Our computer has randomly picked you from our loyal mobile customers to receive a £400 reward. Just call 09066380611 +ham Where r e meeting tmr? +ham Lol yes. But it will add some spice to your day. +ham Hope you are having a great day. +ham Our Prasanth ettans mother passed away last night. Just pray for her and family. +ham K, I'll work something out +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08718738002 Identifier Code: 48922 Expires 21/11/04 +ham This message is from a great Doctor in India:-): 1) Do not drink APPY FIZZ. It contains Cancer causing age +ham I cant pick the phone right now. Pls send a message +ham You call him and tell now infront of them. Call him now. +ham Ok no prob... +ham Ladies first and genus second k . +ham No. Yes please. Been swimming? +ham Mum not going robinson already. +ham Ok set let u noe e details later... +ham Not..tel software name.. +ham I send the print outs da. +ham IM REALY SOZ IMAT MY MUMS 2NITE WHAT ABOUT 2MORO +ham When I was born, GOD said, "Oh No! Another IDIOT". When you were born, GOD said, "OH No! COMPETITION". Who knew, one day these two will become FREINDS FOREVER! +ham I didnt get ur full msg..sometext is missing, send it again +ham Probably not, I'm almost out of gas and I get some cash tomorrow +spam Customer service announcement. We recently tried to make a delivery to you but were unable to do so, please call 07099833605 to re-schedule. Ref:9280114 +ham I forgot 2 ask ü all smth.. There's a card on da present lei... How? Ü all want 2 write smth or sign on it? +ham I'm leaving my house now. +spam Hi babe its Chloe, how r u? I was smashed on saturday night, it was great! How was your weekend? U been missing me? SP visionsms.com Text stop to stop 150p/text +ham Ü ready then call me... +ham Wewa is 130. Iriver 255. All 128 mb. +ham It is a good thing I'm now getting the connection to bw +ham Sry da..jst nw only i came to home.. +ham That's cool he'll be here all night, lemme know when you're around +ham Are you staying in town ? +ham Haha yeah, 2 oz is kind of a shitload +ham Ok u can take me shopping when u get paid =D +ham My life Means a lot to me, Not because I love my life, But because I love the people in my life, The world calls them friends, I call them my World:-).. Ge:-).. +ham Alright we'll bring it to you, see you in like <#> mins +ham But pls dont play in others life. +ham Eatin my lunch... +ham Hmmm.but you should give it on one day.. +ham Didn't try, g and I decided not to head out +ham Ok no prob +ham Surly ill give it to you:-) while coming to review. +ham By march ending, i should be ready. But will call you for sure. The problem is that my capital never complete. How far with you. How's work and the ladies +ham Tessy..pls do me a favor. Pls convey my birthday wishes to Nimya..pls dnt forget it. Today is her birthday Shijas +ham Pls give her the food preferably pap very slowly with loads of sugar. You can take up to an hour to give it. And then some water. Very very slowly. +spam URGENT! Your Mobile No 07808726822 was awarded a £2,000 Bonus Caller Prize on 02/09/03! This is our 2nd attempt to contact YOU! Call 0871-872-9758 BOX95QU +ham A guy who gets used but is too dumb to realize it. +ham Okey dokey, i‘ll be over in a bit just sorting some stuff out. +ham Don no da:)whats you plan? +ham Yes fine +spam WIN: We have a winner! Mr. T. Foley won an iPod! More exciting prizes soon, so keep an eye on ur mobile or visit www.win-82050.co.uk +ham I liked the new mobile +ham Anytime... +ham Mmmmmmm *snuggles into you* ...*deep contented sigh* ... *whispers* ... I fucking love you so much I can barely stand it ... +ham Yar but they say got some error. +ham Hey anyway i have to :-) +ham Wow so healthy. Old airport rd lor. Cant thk of anything else. But i'll b bathing my dog later. +ham Wif my family booking tour package. +ham Did you say bold, then torch later. Or one torch and 2bold? +ham Haha awesome, I might need to take you up on that, what you doin tonight? +ham Ya i knw u vl giv..its ok thanks kano..anyway enjoy wit ur family wit 1st salary..:-);-) +ham Huh so slow i tot u reach long ago liao... U 2 more days only i 4 more leh... +ham Thats cool princess! I will cover your face in hot sticky cum :) +ham Big brother‘s really scraped the barrel with this shower of social misfits +ham Oops i thk i dun haf enuff... I go check then tell ü.. +ham S:)8 min to go for lunch:) +ham Hey. What happened? U switch off ur cell d whole day. This isnt good. Now if u do care, give me a call tomorrow. +ham K will do, addie & I are doing some art so I'll be here when you get home +ham My uncles in Atlanta. Wish you guys a great semester. +ham Aiyo... Her lesson so early... I'm still sleepin, haha... Okie, u go home liao den confirm w me lor... +ham Forgot to tell ü smth.. Can ü like number the sections so that it's clearer.. +ham Yup. Anything lor, if u dun wan it's ok... +ham I'm home, my love ... If your still awake ... *loving kiss* +ham HELLO PEACH! MY CAKE TASTS LUSH! +spam FREE GAME. Get Rayman Golf 4 FREE from the O2 Games Arcade. 1st get UR games settings. Reply POST, then save & activ8. Press 0 key for Arcade. Termsapply +ham There'll be a minor shindig at my place later tonight, you interested? +ham Jason says it's cool if we pick some up from his place in like an hour +spam Had your mobile 10 mths? Update to the latest Camera/Video phones for FREE. KEEP UR SAME NUMBER, Get extra free mins/texts. Text YES for a call +ham I (Career Tel) have added u as a contact on INDYAROCKS.COM to send FREE SMS. To remove from phonebook - sms NO to <#> +ham I've reached already. +ham I dont know ask to my brother. Nothing problem some thing that. Just i told . +ham K:)eng rocking in ashes:) +ham Wat time r ü going to xin's hostel? +ham Good Morning my Dear Shijutta........... Have a great & successful day. +spam Buy Space Invaders 4 a chance 2 win orig Arcade Game console. Press 0 for Games Arcade (std WAP charge) See o2.co.uk/games 4 Terms + settings. No purchase +ham Oh k:)after that placement there ah? +ham Not for possession, especially not first offense +ham Nt only for driving even for many reasons she is called BBD..thts it chikku, then hw abt dvg cold..heard tht vinobanagar violence hw is the condition..and hw ru ? Any problem? +ham I bought the test yesterday. Its something that lets you know the exact day u ovulate.when will get 2u in about 2 to 3wks. But pls pls dont fret. I know u r worried. Pls relax. Also is there anything in ur past history u need to tell me? +ham We have pizza if u want +ham I keep seeing weird shit and bein all "woah" then realising it's actually reasonable and I'm all "oh" +ham Many more happy returns of the day. I wish you happy birthday. +ham Ya very nice. . .be ready on thursday +ham I am in hospital da. . I will return home in evening +ham "Thinking of u ;) x" +spam Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days. +ham Orh i tot u say she now still dun believe. +ham When you just put in the + sign, choose my number and the pin will show. Right? +ham The beauty of life is in next second.. which hides thousands of secrets. I wish every second will be wonderful in ur life...!! gud n8 +ham Thanx u darlin!im cool thanx. A few bday drinks 2 nite. 2morrow off! Take care c u soon.xxx +ham If you're still up, maybe leave the credit card so I can get gas when I get back like he told me to +spam Your weekly Cool-Mob tones are ready to download !This weeks new Tones include: 1) Crazy Frog-AXEL F>>> 2) Akon-Lonely>>> 3) Black Eyed-Dont P >>>More info in n +ham Well boy am I glad G wasted all night at applebees for nothing +spam Cashbin.co.uk (Get lots of cash this weekend!) www.cashbin.co.uk Dear Welcome to the weekend We have got our biggest and best EVER cash give away!! These.. +ham Ok lor... Or u wan me go look 4 u? +ham U wan 2 haf lunch i'm in da canteen now. +ham Don't make life too stressfull.. Always find time to Laugh.. It may not add years to your Life! But surely adds more life to ur years!! Gud ni8..swt dreams.. +ham hey, looks like I was wrong and one of the kappa guys numbers is still on my phone, if you want I can text him and see if he's around +spam URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790121 from land line. Claim 3030. Valid 12hrs only 150ppm +spam Thanks 4 your continued support Your question this week will enter u in2 our draw 4 £100 cash. Name the NEW US President? txt ans to 80082 +ham I'm home. Doc gave me pain meds says everything is fine. +ham It's é only $140 ard...É rest all ard $180 at least...Which is é price 4 é 2 bedrm ($900) +ham Me too! Have a lovely night xxx +ham Prepare to be pleasured :) +ham Hi.:)technical support.providing assistance to us customer through call and email:) +ham if you text on your way to cup stop that should work. And that should be BUS +ham Whens your radio show? +spam Your unique user ID is 1172. For removal send STOP to 87239 customer services 08708034412 +ham I'm not sure if its still available though +ham watever reLation u built up in dis world only thing which remains atlast iz lonlines with lotz n lot memories! feeling.. +ham CHEERS LOU! YEAH WAS A GOODNITE SHAME U NEVA CAME! C YA GAILxx +ham Hi..i got the money da:) +ham Hi, Mobile no. <#> has added you in their contact list on www.fullonsms.com It s a great place to send free sms to people For more visit fullonsms.com +ham Ok then u tell me wat time u coming later lor. +ham U repeat e instructions again. Wat's e road name of ur house? +ham So many people seems to be special at first sight, But only very few will remain special to you till your last sight.. Maintain them till life ends.. Sh!jas +ham Quite lor. But dun tell him wait he get complacent... +ham Sorry completely forgot * will pop em round this week if your still here? +ham U R THE MOST BEAUTIFUL GIRL IVE EVER SEEN. U R MY BABY COME AND C ME IN THE COMMON ROOM +ham O we cant see if we can join denis and mina? Or does denis want alone time +ham Sen told that he is going to join his uncle finance in cbe +ham Yup... Hey then one day on fri we can ask miwa and jiayin take leave go karaoke +ham Call me, i am senthil from hsbc. +ham Especially since i talk about boston all up in my personal statement, lol! I woulda changed that if i had realized it said nyc! It says boston now. +ham Indeed and by the way it was either or - not both ! +spam Urgent -call 09066649731from Landline. Your complimentary 4* Ibiza Holiday or £10,000 cash await collection SAE T&Cs PO BOX 434 SK3 8WP 150ppm 18+ +ham Holy living christ what is taking you so long +ham Ü thk of wat to eat tonight. +ham Thanx. Yup we coming back on sun. Finish dinner going back 2 hotel now. Time flies, we're tog 4 exactly a mth today. Hope we'll haf many more mths to come... +ham We're on the opposite side from where we dropped you off +ham Yup. Izzit still raining heavily cos i'm in e mrt i can't c outside. +ham Send me your resume:-) +ham Gd luck 4 ur exams :-) +ham Or u ask they all if next sat can a not. If all of them can make it then i'm ok lor. +ham Sorry that was my uncle. I.ll keep in touch +ham Saw Guys and Dolls last night with Patrick Swayze it was great +spam URGENT This is our 2nd attempt to contact U. Your £900 prize from YESTERDAY is still awaiting collection. To claim CALL NOW 09061702893 +spam Santa calling! Would your little ones like a call from Santa Xmas Eve? Call 09077818151 to book you time. Calls1.50ppm last 3mins 30s T&C www.santacalling.com +ham Just come home. I don't want u to be miserable +ham I dont know why she.s not getting your messages +ham its cool but tyler had to take off so we're gonna buy for him and drop it off at his place later tonight. Our total order is a quarter, you got enough? +ham The guy at the car shop who was flirting with me got my phone number from the paperwork and called and texted me. I'm nervous because of course now he may have my address. Should i call his boss and tell him, knowing this may get him fired? +ham Reverse is cheating. That is not mathematics. +ham How do you plan to manage that +ham Er, hello, things didn‘t quite go to plan – is limping slowly home followed by aa and with exhaust hanging off +ham Sorry for the delay. Yes masters +ham Call me when u finish then i come n pick u. +spam PRIVATE! Your 2004 Account Statement for 078498****7 shows 786 unredeemed Bonus Points. To claim call 08719180219 Identifier Code: 45239 Expires 06.05.05 +ham What's up my own oga. Left my phone at home and just saw ur messages. Hope you are good. Have a great weekend. +ham Don't worry though, I understand how important it is that I be put in my place with a poorly thought out punishment in the face of the worst thing that has ever happened to me. Brb gonna go kill myself +ham Honey, can you pls find out how much they sell Predicte in Nigeria. And how many times can it be used. Its very important to have a reply before monday +ham E admin building there? I might b slightly earlier... I'll call u when i'm reaching... +ham fyi I'm at usf now, swing by the room whenever +ham i can call in <#> min if thats ok +ham Ummmmmaah Many many happy returns of d day my dear sweet heart.. HAPPY BIRTHDAY dear +ham Ü no home work to do meh... +ham Anything is valuable in only 2 situations: First- Before getting it... Second- After loosing it... +ham Me too. Mark is taking forever to pick up my prescription and the pain is coming back. +ham How's ur paper? +ham Got smaller capacity one? Quite ex... +spam Check Out Choose Your Babe Videos @ sms.shsex.netUN fgkslpoPW fgkslpo +ham Im good! I have been thinking about you... +spam u r a winner U ave been specially selected 2 receive £1000 cash or a 4* holiday (flights inc) speak to a live operator 2 claim 0871277810710p/min (18 ) +ham :-) :-) +ham Not thought bout it... || Drink in tap & spile at seven. || Is that pub on gas st off broad st by canal. || Ok? +ham I am going to sleep. I am tired of travel. +ham Haha, just what I was thinkin +ham Yup but it's not giving me problems now so mayb i'll jus leave it... +ham Lol no. Just trying to make your day a little more interesting +ham How long before you get reply, just defer admission til next semester +ham The word "Checkmate" in chess comes from the Persian phrase "Shah Maat" which means; "the king is dead.." Goodmorning.. Have a good day..:) +ham Po de :-):):-):-):-). No need job aha. +ham Rats. Hey did u ever vote for the next themes? +spam New Mobiles from 2004, MUST GO! Txt: NOKIA to No: 89545 & collect yours today! From ONLY £1. www.4-tc.biz 2optout 087187262701.50gbp/mtmsg18 TXTAUCTION. +ham I hope your pee burns tonite. +ham OH RITE. WELL IM WITH MY BEST MATE PETE, WHO I WENT OUT WITH 4 A WEEK+ NOW WERE 2GEVA AGAIN. ITS BEEN LONGER THAN A WEEK. +ham Yay can't wait to party together! +ham ....photoshop makes my computer shut down. +ham All boys made fun of me today. Ok i have no problem. I just sent one message just for fun +ham That's one of the issues but california is okay. No snow so its manageable +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08715203652 Identifier Code: 42810 Expires 29/10/0 +ham Hmmm.... Mayb can try e shoppin area one, but forgot e name of hotel... +ham Awesome, that gonna be soon or later tonight? +ham I need details about that online job. +spam YOU HAVE WON! As a valued Vodafone customer our computer has picked YOU to win a £150 prize. To collect is easy. Just call 09061743386 +ham Missing you too.pray inshah allah +ham Pls help me tell Ashley that i cant find her number oh +ham I am in escape theatre now. . Going to watch KAVALAN in a few minutes +ham S.this will increase the chance of winning. +ham either way works for me. I am <#> years old. Hope that doesnt bother you. +ham Maybe you should find something else to do instead??? +ham Gain the rights of a wife.dont demand it.i am trying as husband too.Lets see +ham I liked your new house +ham I'm fine. Hope you are also +ham Also north carolina and texas atm, you would just go to the gre site and pay for the test results to be sent. +ham Same to u... +ham yes baby! I need to stretch open your pussy! +ham Thanks and ! Or bomb and date as my phone wanted to say! +ham Ok... +ham Hey, a guy I know is breathing down my neck to get him some bud, anyway you'd be able to get a half track to usf tonight? +ham "Response" is one of d powerful weapon 2 occupy a place in others 'HEART'... So, always give response 2 who cares 4 U"... Gud night..swt dreams..take care +ham Nokia phone is lovly.. +spam **FREE MESSAGE**Thanks for using the Auction Subscription Service. 18 . 150p/MSGRCVD 2 Skip an Auction txt OUT. 2 Unsubscribe txt STOP CustomerCare 08718726270 +spam Bored housewives! Chat n date now! 0871750.77.11! BT-national rate 10p/min only from landlines! +ham Sorry da..today i wont come to play..i have driving clas.. +ham I'm really sorry I lit your hair on fire +ham Oh! Shit, I thought that was your trip! Loooooool ... That just makes SO much more sense now ... *grins* and the sofa reference was ... The "sleep on a couch" link you sent me ... Wasn't that how you went on your trip ? Oh ... And didn't your babe go with you for that celebration with your rents? +ham Okey dokey swashbuckling stuff what oh. +ham Watching cartoon, listening music & at eve had to go temple & church.. What about u? +ham 1. Tension face 2. Smiling face 3. Waste face 4. Innocent face 5.Terror face 6.Cruel face 7.Romantic face 8.Lovable face 9.decent face <#> .joker face. +ham Dip's cell dead. So i m coming with him. U better respond else we shall come back. +ham Well. You know what i mean. Texting +ham Hi dis is yijue i would be happy to work wif ü all for gek1510... +ham Lol! Oops sorry! Have fun. +ham Wat happened to the cruise thing +ham I know dat feelin had it with Pete! Wuld get with em , nuther place nuther time mayb? +spam lyricalladie(21/F) is inviting you to be her friend. Reply YES-910 or NO-910. See her: www.SMS.ac/u/hmmross STOP? Send STOP FRND to 62468 +ham The world's most happiest frnds never have the same characters... Dey just have the best understanding of their differences... +spam No 1 POLYPHONIC tone 4 ur mob every week! Just txt PT2 to 87575. 1st Tone FREE ! so get txtin now and tell ur friends. 150p/tone. 16 reply HL 4info +ham Yeah just open chat and click friend lists. Then make the list. Easy as pie +ham alright tyler's got a minor crisis and has to be home sooner than he thought so be here asap +ham When/where do I pick you up +ham As usual u can call me ard 10 smth. +ham New Theory: Argument wins d SITUATION, but loses the PERSON. So dont argue with ur friends just.. . . . kick them & say, I'm always correct.! +ham For many things its an antibiotic and it can be used for chest abdomen and gynae infections even bone infections. +ham Poor girl can't go one day lmao +ham Or just do that 6times +spam Todays Vodafone numbers ending with 4882 are selected to a receive a £350 award. If your number matches call 09064019014 to receive your £350 award. +ham You have to pls make a note of all she.s exposed to. Also find out from her school if anyone else was vomiting. Is there a dog or cat in the house? Let me know later. +ham Japanese Proverb: If one Can do it, U too Can do it, If none Can do it,U must do it Indian version: If one Can do it, LET HIM DO it.. If none Can do it,LEAVE it!! And finally Kerala version: If one can do it, Stop him doing it.. If none can do it, Make a strike against it ... +ham Sounds like there could be a lot of time spent in that chastity device boy ... *grins* ... Or take your beatings like a good dog. Going to lounge in a nice long bath now ? +ham Its worse if if uses half way then stops. Its better for him to complete it. +ham Miserable. They don't tell u that the side effects of birth control are massive gut wrenching cramps for the first 2 months. I didn't sleep at all last night. +ham Send me the new number +ham Convey my regards to him +spam Want the latest Video handset? 750 anytime any network mins? Half price line rental? Reply or call 08000930705 for delivery tomorrow +ham 2 and half years i missed your friendship:-) +ham I cant pick the phone right now. Pls send a message +ham Oh for fuck's sake she's in like tallahassee +ham Haha, that was the first person I was gonna ask +spam ou are guaranteed the latest Nokia Phone, a 40GB iPod MP3 player or a £500 prize! Txt word: COLLECT to No: 83355! IBHltd LdnW15H 150p/Mtmsgrcvd18 +ham Taka lor. Wat time u wan 2 come n look 4 us? +spam * FREE* POLYPHONIC RINGTONE Text SUPER to 87131 to get your FREE POLY TONE of the week now! 16 SN PoBox202 NR31 7ZS subscription 450pw +ham "I;m reaching in another 2 stops." +ham no, i *didn't* mean to post it. I wrote it, and like so many other times i've ritten stuff to you, i let it sit there. it WAS what i was feeling at the time. I was angry. Before i left, i hit send, then stop. It wasn't there. I checked on my phone when i got to my car. It wasn't there. You said you didn't sleep, you were bored. So why wouldn't THAT be the time to clean, fold laundry, etc.? At least make the bed? +spam Warner Village 83118 C Colin Farrell in SWAT this wkend @Warner Village & get 1 free med. Popcorn!Just show msg+ticket@kiosk.Valid 4-7/12. C t&c @kiosk. Reply SONY 4 mre film offers +ham Will you come online today night +ham Then anything special? +ham I'm in solihull, | do you want anything? +ham Will do. Have a good day +ham WE REGRET TO INFORM U THAT THE NHS HAS MADE A MISTAKE.U WERE NEVER ACTUALLY BORN.PLEASE REPORT 2 YOR LOCAL HOSPITAL 2B TERMINATED.WE R SORRY 4 THE INCONVENIENCE +ham Love that holiday Monday feeling even if I have to go to the dentists in an hour +ham I am on the way to tirupur. +spam Goal! Arsenal 4 (Henry, 7 v Liverpool 2 Henry scores with a simple shot from 6 yards from a pass by Bergkamp to give Arsenal a 2 goal margin after 78 mins. +ham You've already got a flaky parent. It'snot supposed to be the child's job to support the parent...not until they're The Ride age anyway. I'm supposed to be there to support you. And now i've hurt you. unintentional. But hurt nonetheless. +ham We took hooch for a walk toaday and i fell over! Splat! Grazed my knees and everything! Should have stayed at home! See you tomorrow! +ham Just dropped em off, omw back now +spam This is the 2nd time we have tried 2 contact u. U have won the 750 Pound prize. 2 claim is easy, call 08712101358 NOW! Only 10p per min. BT-national-rate +ham Sitting in mu waiting for everyone to get out of my suite so I can take a shower +ham Re your call; You didn't see my facebook huh? +ham G says you never answer your texts, confirm/deny +ham Its so common hearin How r u? Wat r u doing? How was ur day? So let me ask u something different. Did u smile today? If not, do it now.... Gud evng. +ham Hi Dear Call me its urgnt. I don't know whats your problem. You don't want to work or if you have any other problem at least tell me. Wating for your reply. +ham Oh yah... We never cancel leh... Haha +ham We can go 4 e normal pilates after our intro... +ham Ok... Let u noe when i leave my house. +ham Oh yes, why is it like torture watching england? +ham Wanna do some art?! :D +ham Just hopeing that wasn‘t too pissed up to remember and has gone off to his sisters or something! +spam Got what it takes 2 take part in the WRC Rally in Oz? U can with Lucozade Energy! Text RALLY LE to 61200 (25p), see packs or lucozade.co.uk/wrc & itcould be u! +spam Hi, the SEXYCHAT girls are waiting for you to text them. Text now for a great night chatting. send STOP to stop this service +ham Good morning, my boytoy! How's those yummy lips ? Where's my sexy buns now ? What do you do ? Do you think of me ? Do you crave me ? Do you need me ? +ham Match started.india <#> for 2 +ham Once free call me sir. +ham Hey do you want anything to buy:) +ham Hey babe, how's it going ? Did you ever figure out where your going for New Years ? +ham K..k.:)congratulation .. +ham G wants to know where the fuck you are +ham No it was cancelled yeah baby! Well that sounds important so i understand my darlin give me a ring later on this fone love Kate x +ham Tomarrow i want to got to court. At <DECIMAL> . So you come to bus stand at 9. +ham Ü go home liao? Ask dad to pick me up at 6... +ham Omg you can make a wedding chapel in frontierville? Why do they get all the good stuff? +ham I'm eatin now lor, but goin back to work soon... E mountain deer show huh... I watch b4 liao, very nice... +ham Check mail.i have mailed varma and kept copy to you regarding membership.take care.insha allah. +ham Wrong phone! This phone! I answer this one but assume the other is people i don't well +ham Anyway I don't think I can secure anything up here, lemme know if you want me to drive down south and chill +ham I'm already back home so no probably not +spam Great News! Call FREEFONE 08006344447 to claim your guaranteed £1000 CASH or £2000 gift. Speak to a live operator NOW! +spam Hi this is Amy, we will be sending you a free phone number in a couple of days, which will give you an access to all the adult parties... +ham I am in bus on the way to calicut +ham Hi its me you are probably having too much fun to get this message but i thought id txt u cos im bored! and james has been farting at me all night +ham hi baby im sat on the bloody bus at the mo and i wont be home until about 7:30 wanna do somethin later? call me later ortxt back jess xx +spam Welcome to Select, an O2 service with added benefits. You can now call our specially trained advisors FREE from your mobile by dialling 402. +ham I lost 4 pounds since my doc visit last week woot woot! Now I'm gonna celebrate by stuffing my face! +ham U coming back 4 dinner rite? Dad ask me so i re confirm wif u... +ham Doing my masters. When will you buy a bb cos i have for sale and how's bf +ham Ahhhh...just woken up!had a bad dream about u tho,so i dont like u right now :) i didnt know anything about comedy night but i guess im up for it. +ham I'm vivek:)i got call from your number. +ham Why didn't u call on your lunch? +ham What i mean was i left too early to check, cos i'm working a 9-6. +ham I want <#> rs da:)do you have it? +ham A bit of Ur smile is my hppnss, a drop of Ur tear is my sorrow, a part of Ur heart is my life, a heart like mine wil care for U, forevr as my GOODFRIEND +ham Yup ok... +ham I want to see your pretty pussy... +spam Dear Voucher holder Have your next meal on us. Use the following link on your pc 2 enjoy a 2 4 1 dining experiencehttp://www.vouch4me.com/etlp/dining.asp +ham A few people are at the game, I'm at the mall with iouri and kaila +spam URGENT! We are trying to contact U. Todays draw shows that you have won a £2000 prize GUARANTEED. Call 09058094507 from land line. Claim 3030. Valid 12hrs only +spam You can donate £2.50 to UNICEF's Asian Tsunami disaster support fund by texting DONATE to 864233. £2.50 will be added to your next bill +ham Future is not what we planned for tomorrow.....! it is the result of what we do today...! Do the best in present... enjoy the future. +ham I will cme i want to go to hos 2morow. After that i wil cme. This what i got from her dear what to do. She didnt say any time +ham We are supposed to meet to discuss abt our trip... Thought xuhui told you? In the afternoon. Thought we can go for lesson after that +ham Hey come online! Use msn... We are all there +ham I'm fine. Hope you are good. Do take care. +ham Oops I was in the shower when u called. Hey a parking garage collapsed at university hospital. See I'm not crazy. Stuff like that DOES happen. +ham Aiyo u so poor thing... Then u dun wan 2 eat? U bathe already? +ham Yar... I tot u knew dis would happen long ago already. +ham You are gorgeous! keep those pix cumming :) thank you! +ham A boy was late 2 home. His father: "POWER OF FRNDSHIP" +ham JADE ITS PAUL. Y DIDN’T U TXT ME? DO U REMEMBER ME FROM BARMED? I WANT 2 TALK 2 U! TXT ME +ham Spending new years with my brother and his family. Lets plan to meet next week. Are you ready to be spoiled? :) +ham So what u doing today? +ham I said its okay. Sorry +ham Slept? I thinkThis time ( <#> pm) is not dangerous +ham Networking job is there. +spam goldviking (29/M) is inviting you to be his friend. Reply YES-762 or NO-762 See him: www.SMS.ac/u/goldviking STOP? Send STOP FRND to 62468 +ham Dont let studying stress you out. L8r. +ham That's y u haf 2 keep me busy... +ham No rushing. I'm not working. I'm in school so if we rush we go hungry. +ham Which channel:-):-):):-). +ham So your telling me I coulda been your real Valentine and I wasn't? U never pick me for NOTHING!! +spam Phony £350 award - Todays Voda numbers ending XXXX are selected to receive a £350 award. If you have a match please call 08712300220 quoting claim code 3100 standard rates app +ham We made it! Eta at taunton is 12:30 as planned, hope that‘s still okday?! Good to see you! :-xx +ham I'm hungry buy smth home... +ham "HEY KATE, HOPE UR OK... WILL GIVE U A BUZ WEDLUNCH. GO OUTSOMEWHERE 4 ADRINK IN TOWN..CUD GO 2WATERSHD 4 A BIT? PPL FROMWRK WILL BTHERE. LOVE PETEXXX." +ham My drive can only be read. I need to write +ham Just looked it up and addie goes back Monday, sucks to be her +ham Happy new year. Hope you are having a good semester +ham Esplanade lor. Where else... +ham Can you talk with me.. +ham Hmph. Go head, big baller. +ham Well its not like you actually called someone a punto. That woulda been worse. +ham Nope. Since ayo travelled, he has forgotten his guy +ham You still around? Looking to pick up later +spam CDs 4u: Congratulations ur awarded £500 of CD gift vouchers or £125 gift guaranteed & Freeentry 2 £100 wkly draw xt MUSIC to 87066 TnCs www.ldew.com1win150ppmx3age16 +ham There's someone here that has a year <#> toyota camry like mr olayiwola's own. Mileage is <#> k.its clean but i need to know how much will it sell for. If i can raise the dough for it how soon after landing will it sell. Holla back. +ham Guess which pub im in? Im as happy as a pig in clover or whatever the saying is! +ham ILL B DOWN SOON +ham Oh k. . I will come tomorrow +ham Go fool dont cheat others ok +ham My mobile number.pls sms ur mail id.convey regards to achan,amma.Rakhesh.Qatar +ham By the way, 'rencontre' is to meet again. Mountains dont.... +spam You have WON a guaranteed £1000 cash or a £2000 prize. To claim yr prize call our customer service representative on 08714712412 between 10am-7pm Cost 10p +ham U attend ur driving lesson how many times a wk n which day? +ham Uncle G, just checking up on you. Do have a rewarding month +ham Hello boytoy ! Geeee ... I'm missing you today. I like to send you a tm and remind you I'm thinking of you ... And you are loved ... *loving kiss* +ham I think the other two still need to get cash but we can def be ready by 9 +ham Hey gals...U all wanna meet 4 dinner at nìte? +spam Dear 0776xxxxxxx U've been invited to XCHAT. This is our final attempt to contact u! Txt CHAT to 86688 150p/MsgrcvdHG/Suite342/2Lands/Row/W1J6HL LDN 18yrs +ham Babe ! What are you doing ? Where are you ? Who are you talking to ? Do you think of me ? Are you being a good boy? Are you missing me? Do you love me ? +ham Great! How is the office today? +ham It's cool, we can last a little while. Getting more any time soon? +ham :-( sad puppy noise +ham Yes its possible but dint try. Pls dont tell to any one k +ham Anyway holla at me whenever you're around because I need an excuse to go creep on people in sarasota +ham Where you. What happen +ham I was gonna ask you lol but i think its at 7 +spam Ur cash-balance is currently 500 pounds - to maximize ur cash-in now send GO to 86688 only 150p/meg. CC: 08718720201 HG/Suite342/2lands Row/W1j6HL +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S.I.M. points. Call 08715203685 Identifier Code:4xx26 Expires 13/10/04 +ham Go chase after her and run her over while she's crossing the street +spam I'd like to tell you my deepest darkest fantasies. Call me 09094646631 just 60p/min. To stop texts call 08712460324 (nat rate) +ham Is there coming friday is leave for pongal?do you get any news from your work place. +ham Hey... Very inconvenient for your sis a not huh? +ham Ok i vl..do u know i got adsense approved.. +ham * Was really good to see you the other day dudette, been missing you! +ham I want to go to perumbavoor +ham How many times i told in the stage all use to laugh. You not listen aha. +spam You won't believe it but it's true. It's Incredible Txts! Reply G now to learn truly amazing things that will blow your mind. From O2FWD only 18p/txt +ham (You didn't hear it from me) +ham Thanks for being there for me just to talk to on saturday. You are very dear to me. I cherish having you as a brother and role model. +ham Pls clarify back if an open return ticket that i have can be preponed for me to go back to kerala. +spam Natalie (20/F) is inviting you to be her friend. Reply YES-165 or NO-165 See her: www.SMS.ac/u/natalie2k9 STOP? Send STOP FRND to 62468 +ham She ran off with a younger man. we will make pretty babies together :) +spam Jamster! To get your free wallpaper text HEART to 88888 now! T&C apply. 16 only. Need Help? Call 08701213186. +ham O ic lol. Should play 9 doors sometime yo +ham Dunno, my dad said he coming home 2 bring us out 4 lunch. Yup i go w u lor. I call u when i reach school lor... +ham We have sent JD for Customer Service cum Accounts Executive to ur mail id, For details contact us +ham Desires- u going to doctor 4 liver. And get a bit stylish. Get ur hair managed. Thats it. +ham Hmmm.still we dont have opener? +ham Yeah so basically any time next week you can get away from your mom & get up before 3 +ham Edison has rightly said, "A fool can ask more questions than a wise man can answer" Now you know why all of us are speechless during ViVa.. GM,GN,GE,GNT:-) +ham I will vote for wherever my heart guides me +ham With my sis lor... We juz watched italian job. +ham Tick, tick, tick .... Where are you ? I could die of loneliness you know ! *pouts* *stomps feet* I need you ... +ham Lmao you know me so well... +spam Double Mins & Double Txt & 1/2 price Linerental on Latest Orange Bluetooth mobiles. Call MobileUpd8 for the very latest offers. 08000839402 or call2optout/LF56 +ham Am on a train back from northampton so i'm afraid not! I'm staying skyving off today ho ho! Will be around wednesday though. Do you fancy the comedy club this week by the way? +ham Goodnight da thangam I really miss u dear. +ham Hey next sun 1030 there's a basic yoga course... at bugis... We can go for that... Pilates intro next sat.... Tell me what time you r free +ham Geeeee ... Your internet is really bad today, eh ? +spam Free video camera phones with Half Price line rental for 12 mths and 500 cross ntwk mins 100 txts. Call MobileUpd8 08001950382 or Call2OptOut/674 +ham I think i am disturbing her da +ham Sorry, I'll call you later. I am in meeting sir. +ham Havent stuck at orchard in my dad's car. Going 4 dinner now. U leh? So r they free tonight? +ham Ok i also wan 2 watch e 9 pm show... +ham I dunno lei... Like dun haf... +ham But your brother transfered only <#> + <#> . Pa. +ham I calls you later. Afternoon onwords mtnl service get problem in south mumbai. I can hear you but you cann't listen me. +spam 83039 62735=£450 UK Break AccommodationVouchers terms & conditions apply. 2 claim you mustprovide your claim number which is 15541 +ham Talk to g and x about that +ham Hai dear friends... This is my new & present number..:) By Rajitha Raj (Ranju) +spam 5p 4 alfie Moon's Children in need song on ur mob. Tell ur m8s. Txt Tone charity to 8007 for Nokias or Poly charity for polys: zed 08701417012 profit 2 charity. +ham As in different styles? +spam WIN a £200 Shopping spree every WEEK Starting NOW. 2 play text STORE to 88039. SkilGme. TsCs08714740323 1Winawk! age16 £1.50perweeksub. +ham Gud ni8 dear..slp well..take care..swt dreams..Muah.. +ham I want to sent <#> mesages today. Thats y. Sorry if i hurts +spam This is the 2nd attempt to contract U, you have won this weeks top prize of either £1000 cash or £200 prize. Just call 09066361921 +ham Well, i'm glad you didn't find it totally disagreeable ... Lol +ham Guy, no flash me now. If you go call me, call me. How madam. Take care oh. +spam Do you want a New Nokia 3510i colour phone DeliveredTomorrow? With 300 free minutes to any mobile + 100 free texts + Free Camcorder reply or call 08000930705. +ham Mark works tomorrow. He gets out at 5. His work is by your house so he can meet u afterwards. +ham "Keep ur problems in ur heart, b'coz nobody will fight for u. Only u & u have to fight for ur self & win the battle. -VIVEKANAND- G 9t.. SD.. +ham Yeah, give me a call if you've got a minute +ham "HI BABE UAWAKE?FEELLIKW SHIT.JUSTFOUND OUT VIA ALETTER THATMUM GOTMARRIED 4thNOV.BEHIND OURBACKS – FUCKINNICE!SELFISH,DEVIOUSBITCH.ANYWAY,I’L CALL U" +ham Amazing : If you rearrange these letters it gives the same meaning... Dormitory = Dirty room Astronomer = Moon starer The eyes = They see Election results = Lies lets recount Mother-in-law = Woman Hitler Eleven plus two =Twelve plus one Its Amazing... !:-) +ham Aiya we discuss later lar... Pick ü up at 4 is it? +ham Hey happy birthday... +ham Sorry i missed your call. Can you please call back. +ham Omg if its not one thing its another. My cat has worms :/ when does this bad day end? +ham Good morning, im suffering from fever and dysentry ..will not be able to come to office today. +ham I wont do anything de. +ham What type of stuff do you sing? +ham St andre, virgil's cream +ham No no. I will check all rooms befor activities +ham My fri ah... Okie lor,goin 4 my drivin den go shoppin after tt... +ham Gokila is talking with you aha:) +ham Hi Shanil,Rakhesh here.thanks,i have exchanged the uncut diamond stuff.leaving back. Excellent service by Dino and Prem. +ham K.k.this month kotees birthday know? +ham But i'm really really broke oh. No amount is too small even <#> +ham Sorry about that this is my mates phone and i didnt write it love Kate +spam TheMob>Hit the link to get a premium Pink Panther game, the new no. 1 from Sugababes, a crazy Zebra animation or a badass Hoody wallpaper-all 4 FREE! +ham Ah, well that confuses things, doesnt it? I thought was friends with now. Maybe i did the wrong thing but i already sort of invited -tho he may not come cos of money. +ham Aight, call me once you're close +ham Nope thats fine. I might have a nap tho! +spam This msg is for your mobile content order It has been resent as previous attempt failed due to network error Queries to customersqueries@netvision.uk.com +ham In other news after hassling me to get him weed for a week andres has no money. HAUGHAIGHGTUJHYGUJ +ham A Boy loved a gal. He propsd bt she didnt mind. He gv lv lttrs, Bt her frnds threw thm. Again d boy decided 2 aproach d gal , dt time a truck was speeding towards d gal. Wn it was about 2 hit d girl,d boy ran like hell n saved her. She asked 'hw cn u run so fast?' D boy replied "Boost is d secret of my energy" n instantly d girl shouted "our energy" n Thy lived happily 2gthr drinking boost evrydy Moral of d story:- I hv free msgs:D;): gud ni8 +ham I wnt to buy a BMW car urgently..its vry urgent.but hv a shortage of <#> Lacs.there is no source to arng dis amt. <#> lacs..thats my prob +ham Ding me on ya break fassyole! Blacko from londn +ham I REALLY NEED 2 KISS U I MISS U MY BABY FROM UR BABY 4EVA +ham The sign of maturity is not when we start saying big things.. But actually it is, when we start understanding small things... *HAVE A NICE EVENING* BSLVYL +ham Oh you got many responsibilities. +spam You have 1 new message. Please call 08715205273 +ham I've reached sch already... +spam December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update VCo FREE on 08002986906 +ham U definitely need a module from e humanities dis sem izzit? U wan 2 take other modules 1st? +ham Argh why the fuck is nobody in town ;_; +spam Get 3 Lions England tone, reply lionm 4 mono or lionp 4 poly. 4 more go 2 www.ringtones.co.uk, the original n best. Tones 3GBP network operator rates apply. +ham Thanks. Fills me with complete calm and reassurance! +ham Aslamalaikkum....insha allah tohar beeen muht albi mufti mahfuuz...meaning same here.... +ham Are you driving or training? +ham Lol for real. She told my dad I have cancer +spam PRIVATE! Your 2003 Account Statement for 078 +ham Oops I did have it, <#> ? +ham "NOT ENUFCREDEIT TOCALL.SHALL ILEAVE UNI AT 6 +GET A BUS TO YOR HOUSE?" +ham Hi Chikku, send some nice msgs +ham He is impossible to argue with and he always treats me like his sub, like he never released me ... Which he did and I will remind him of that if necessary +ham After my work ah... Den 6 plus lor... U workin oso rite... Den go orchard lor, no other place to go liao... +ham To the wonderful Okors, have a great month. We cherish you guys and wish you well each day. MojiBiola +ham Cuz ibored. And don wanna study +ham Wot about on wed nite I am 3 then but only til 9! +ham Rose for red,red for blood,blood for heart,heart for u. But u for me.... Send tis to all ur friends.. Including me.. If u like me.. If u get back, 1-u r poor in relation! 2-u need some 1 to support 3-u r frnd 2 many 4-some1 luvs u 5+- some1 is praying god to marry u.:-) try it.... +ham Any way where are you and what doing. +ham That sucks. I'll go over so u can do my hair. You'll do it free right? +ham it's still not working. And this time i also tried adding zeros. That was the savings. The checking is <#> +ham Hmm... Dunno leh, mayb a bag 4 goigng out dat is not too small. Or jus anything except perfume, smth dat i can keep. +ham Sday only joined.so training we started today:) +ham Sorry * was at the grocers. +ham There are some nice pubs near here or there is Frankie n Bennys near the warner cinema? +spam YOU VE WON! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham Yup... I havent been there before... You want to go for the yoga? I can call up to book +ham Oh shut it. Omg yesterday I had a dream that I had 2 kids both boys. I was so pissed. Not only about the kids but them being boys. I even told mark in my dream that he was changing diapers cause I'm not getting owed in the face. +ham Yeah I imagine he would be really gentle. Unlike the other docs who treat their patients like turkeys. +spam FREE for 1st week! No1 Nokia tone 4 ur mobile every week just txt NOKIA to 8077 Get txting and tell ur mates. www.getzed.co.uk POBox 36504 W45WQ 16+ norm150p/tone +ham Now that you have started dont stop. Just pray for more good ideas and anything i see that can help you guys i.ll forward you a link. +ham Hi darlin im on helens fone im gonna b up the princes 2 nite please come up tb love Kate +ham I'm in office now da:)where are you? +ham Aiyar u so poor thing... I give u my support k... Jia you! I'll think of u... +ham Oh unintentionally not bad timing. Great. Fingers the trains play along! Will give fifteen min warning. +spam Get your garden ready for summer with a FREE selection of summer bulbs and seeds worth £33:50 only with The Scotsman this Saturday. To stop go2 notxt.co.uk +ham K..then come wenever u lik to come and also tel vikky to come by getting free time..:-) +ham Pls call me da. What happen. +ham Happy new year to u and ur family...may this new year bring happiness , stability and tranquility to ur vibrant colourful life:):) +ham No problem with the renewal. I.ll do it right away but i dont know his details. +ham Idk. I'm sitting here in a stop and shop parking lot right now bawling my eyes out because i feel like i'm a failure in everything. Nobody wants me and now i feel like i'm failing you. +ham Haven't left yet so probably gonna be here til dinner +ham Like <#> , same question +ham MY NEW YEARS EVE WAS OK. I WENT TO A PARTY WITH MY BOYFRIEND. WHO IS THIS SI THEN HEY +ham Sir, I need Velusamy sir's date of birth and company bank facilities details. +ham K k:) sms chat with me. +ham I will come with karnan car. Please wait till 6pm will directly goto doctor. +ham No but the bluray player can +ham Ok... Then r we meeting later? +ham Lol no. I just need to cash in my nitros. Hurry come on before I crash out! +ham Just send a text. We'll skype later. +ham Ok leave no need to ask +spam Congrats 2 mobile 3G Videophones R yours. call 09063458130 now! videochat wid ur mates, play java games, Dload polypH music, noline rentl. bx420. ip4. 5we. 150p +ham Ü still got lessons? Ü in sch? +ham Y she dun believe leh? I tot i told her it's true already. I thk she muz c us tog then she believe. +ham Oh did you charge camera +ham I‘ve got some salt, you can rub it in my open wounds if you like! +ham Now i'm going for lunch. +ham I'm in school now n i'll be in da lab doing some stuff give me a call when ü r done. +ham Oh k. . I will come tomorrow +ham Aight, text me tonight and we'll see what's up +ham U 2. +ham Water logging in desert. Geoenvironmental implications. +ham Raji..pls do me a favour. Pls convey my Birthday wishes to Nimya. Pls. Today is her birthday. +ham Company is very good.environment is terrific and food is really nice:) +ham Very strange. and are watching the 2nd one now but i'm in bed. Sweet dreams, miss u +spam SMS AUCTION - A BRAND NEW Nokia 7250 is up 4 auction today! Auction is FREE 2 join & take part! Txt NOKIA to 86021 now! +ham Hi hope u r both ok, he said he would text and he hasn't, have u seen him, let me down gently please +ham Babe! I fucking love you too !! You know? Fuck it was so good to hear your voice. I so need that. I crave it. I can't get enough. I adore you, Ahmad *kisses* +ham K sure am in my relatives home. Sms me de. Pls:-) +ham I sent them. Do you like? +ham Fuuuuck I need to stop sleepin, sup +ham I'm in town now so i'll jus take mrt down later. +ham I just cooked a rather nice salmon a la you +ham I uploaded mine to Facebook +ham WHAT TIME U WRKIN? +ham Okie +spam ree entry in 2 a weekly comp for a chance to win an ipod. Txt POD to 80182 to get entry (std txt rate) T&C's apply 08452810073 for details 18+ +spam Our records indicate u maybe entitled to 5000 pounds in compensation for the Accident you had. To claim 4 free reply with CLAIM to this msg. 2 stop txt STOP +ham Sorry, I'll call later +ham Oh oh... Den muz change plan liao... Go back have to yan jiu again... +ham It's wylie, you in tampa or sarasota? +ham Ok... Take ur time n enjoy ur dinner... +ham Darren was saying dat if u meeting da ge den we dun meet 4 dinner. Cos later u leave xy will feel awkward. Den u meet him 4 lunch lor. +spam Spook up your mob with a Halloween collection of a logo & pic message plus a free eerie tone, txt CARD SPOOK to 8007 zed 08701417012150p per logo/pic +ham I like cheap! But i‘m happy to splash out on the wine if it makes you feel better.. +ham She.s fine. I have had difficulties with her phone. It works with mine. Can you pls send her another friend request. +ham Ugh my leg hurts. Musta overdid it on mon. +spam Call Germany for only 1 pence per minute! Call from a fixed line via access number 0844 861 85 85. No prepayment. Direct access! www.telediscount.co.uk +spam YOU VE WON! Your 4* Costa Del Sol Holiday or £5000 await collection. Call 09050090044 Now toClaim. SAE, TC s, POBox334, Stockport, SK38xh, Cost£1.50/pm, Max10mins +ham WOT STUDENT DISCOUNT CAN U GET ON BOOKS? +ham Me fine..absolutly fine +ham How come she can get it? Should b quite diff to guess rite... +spam Had your mobile 11mths ? Update for FREE to Oranges latest colour camera mobiles & unlimited weekend calls. Call Mobile Upd8 on freefone 08000839402 or 2StopTxt +ham I will reach ur home in <#> minutes +ham Babe, I'm answering you, can't you see me ? Maybe you'd better reboot YM ... I got the photo ... It's great ! +ham Hi.what you think about match? +ham I know you are thinkin malaria. But relax, children cant handle malaria. She would have been worse and its gastroenteritis. If she takes enough to replace her loss her temp will reduce. And if you give her malaria meds now she will just vomit. Its a self limiting illness she has which means in a few days it will completely stop +ham Dai i downloaded but there is only exe file which i can only run that exe after installing. +ham It is only yesterday true true. +ham K.k.how is your business now? +ham 3 pa but not selected. +spam Natalja (25/F) is inviting you to be her friend. Reply YES-440 or NO-440 See her: www.SMS.ac/u/nat27081980 STOP? Send STOP FRND to 62468 +ham I keep ten rs in my shelf:) buy two egg. +ham I am late. I will be there at +ham Well thats nice. Too bad i cant eat it +ham I accidentally brought em home in the box +ham Pls she needs to dat slowly or she will vomit more. +ham I have to take exam with in march 3 +ham Jane babes not goin 2 wrk, feel ill after lst nite. Foned in already cover 4 me chuck.:-) +ham 5 nights...We nt staying at port step liao...Too ex +ham If I die I want u to have all my stuffs. +ham "OH FUCK. JUSWOKE UP IN A BED ON A BOATIN THE DOCKS. SLEPT WID 25 YEAR OLD. SPINOUT! GIV U DA GOSSIP L8R. XXX" +ham Smile in Pleasure Smile in Pain Smile when trouble pours like Rain Smile when sum1 Hurts U Smile becoz SOMEONE still Loves to see u Smiling!! +ham Prabha..i'm soryda..realy..frm heart i'm sory +ham I re-met alex nichols from middle school and it turns out he's dealing! +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S. I. M. points. Call 08715203656 Identifier Code: 42049 Expires 26/10/04 +ham It means u could not keep ur words. +ham Nope, I'm still in the market +ham I realise you are a busy guy and i'm trying not to be a bother. I have to get some exams outta the way and then try the cars. Do have a gr8 day +spam YOU ARE CHOSEN TO RECEIVE A £350 AWARD! Pls call claim number 09066364311 to collect your award which you are selected to receive as a valued mobile customer. +ham Hey what how about your project. Started aha da. +ham Ok cool. See ya then. +ham Am on the uworld site. Am i buying the qbank only or am i buying it with the self assessment also? +ham Your opinion about me? 1. Over 2. Jada 3. Kusruthi 4. Lovable 5. Silent 6. Spl character 7. Not matured 8. Stylish 9. Simple Pls reply.. +spam Someonone you know is trying to contact you via our dating service! To find out who it could be call from your mobile or landline 09064015307 BOX334SK38ch +ham Yeah I can still give you a ride +ham Jay wants to work out first, how's 4 sound? +ham Gud gud..k, chikku tke care.. sleep well gud nyt +ham Its a part of checking IQ +ham Hmm thinking lor... +ham Of course ! Don't tease me ... You know I simply must see ! *grins* ... Do keep me posted my prey ... *loving smile* *devouring kiss* +ham thanks for the temales it was wonderful. Thank. Have a great week. +ham Thank you princess! I want to see your nice juicy booty... +ham Haven't eaten all day. I'm sitting here staring at this juicy pizza and I can't eat it. These meds are ruining my life. +ham Gud ni8 dear..slp well..take care..swt dreams..Muah.. +ham U come n search tat vid..not finishd.. +ham K I'm leaving soon, be there a little after 9 +spam Urgent! Please call 09061213237 from a landline. £5000 cash or a 4* holiday await collection. T &Cs SAE PO Box 177 M227XY. 16+ +ham Yeah work is fine, started last week, all the same stuff as before, dull but easy and guys are fun! +ham You do your studies alone without anyones help. If you cant no need to study. +ham Please tell me not all of my car keys are in your purse +ham I didnt get anything da +ham Ok... Sweet dreams... +ham Well she's in for a big surprise! +ham As usual..iam fine, happy & doing well..:) +ham 1 in cbe. 2 in chennai. +ham Can help u swoop by picking u up from wherever ur other birds r meeting if u want. +ham If anyone calls for a treadmill say you'll buy it. Make sure its working. I found an ad on Craigslist selling for $ <#> . +ham I absolutely LOVE South Park! I only recently started watching the office. +ham Did you see that film:) +ham Pls speak with me. I wont ask anything other then you friendship. +ham Storming msg: Wen u lift d phne, u say "HELLO" Do u knw wt is d real meaning of HELLO?? . . . It's d name of a girl..! . . . Yes.. And u knw who is dat girl?? "Margaret Hello" She is d girlfrnd f Grahmbell who invnted telphone... . . . . Moral:One can 4get d name of a person, bt not his girlfrnd... G o o d n i g h t . . .@ +ham Gud ni8.swt drms.take care +ham HI DARLIN ITS KATE ARE U UP FOR DOIN SOMETHIN TONIGHT? IM GOING TO A PUB CALLED THE SWAN OR SOMETHING WITH MY PARENTS FOR ONE DRINK SO PHONE ME IF U CAN +ham Anything lar then ü not going home 4 dinner? +ham "ER, ENJOYIN INDIANS AT THE MO..yeP. SaLL gOoD HehE ;> hows bout u shexy? Pete Xx" +spam If you don't, your prize will go to another customer. T&C at www.t-c.biz 18+ 150p/min Polo Ltd Suite 373 London W1J 6HL Please call back if busy +ham Did u fix the teeth?if not do it asap.ok take care. +ham So u wan 2 come for our dinner tonight a not? +ham Hello.How u doing?What u been up 2?When will u b moving out of the flat, cos I will need to arrange to pick up the lamp, etc. Take care. Hello caroline! +ham Its too late:)but its k.wish you the same. +ham Hi. Hope ur day * good! Back from walk, table booked for half eight. Let me know when ur coming over. +ham Oh yeah clearly it's my fault +ham Dunno leh cant remember mayb lor. So wat time r we meeting tmr? +ham Best msg: It's hard to be with a person, when u know that one more step foward will make u fall in love.. & One step back can ruin ur friendship.. good night:-) ... +spam URGENT! Your Mobile number has been awarded with a £2000 prize GUARANTEED. Call 09061790126 from land line. Claim 3030. Valid 12hrs only 150ppm +ham Helloooo... Wake up..! "Sweet" "morning" "welcomes" "You" "Enjoy" "This Day" "with full of joy".. "GUD MRNG". +ham Vikky, come around <TIME> .. +ham And how you will do that, princess? :) +ham I have gone into get info bt dont know what to do +ham Yeah, probably here for a while +ham Sent me ur email id soon +spam URGENT! You have won a 1 week FREE membership in our £100,000 Prize Jackpot! Txt the word: CLAIM to No: 81010 T&C www.dbuk.net LCCLTD POBOX 4403LDNW1A7RW18 +ham I'm still pretty weak today .. Bad day ? +ham Hey ! Don't forget ... You are MINE ... For ME ... My possession ... MY property ... MMM ... *childish smile* ... +ham An excellent thought by a misundrstud frnd: I knw u hate me bt the day wen u'll knw the truth u'll hate urself:-( Gn:-) +ham Hey! Congrats 2u2. id luv 2 but ive had 2 go home! +ham Dear where you. Call me +ham Xy trying smth now. U eat already? We havent... +spam Urgent! Please call 09061213237 from landline. £5000 cash or a luxury 4* Canary Islands Holiday await collection. T&Cs SAE PO Box 177. M227XY. 150ppm. 16+ +ham I donno its in your genes or something +spam XMAS iscoming & ur awarded either £500 CD gift vouchers & free entry 2 r £100 weekly draw txt MUSIC to 87066 TnC www.Ldew.com1win150ppmx3age16subscription +ham Alex says he's not ok with you not being ok with it +ham Are u coming to the funeral home +ham My darling sister. How are you doing. When's school resuming. Is there a minimum wait period before you reapply? Do take care +ham I.ll hand her my phone to chat wit u +ham Well good morning mr . Hows london treatin' ya treacle? +ham I can't make it tonight +ham At WHAT TIME should i come tomorrow +ham About <#> bucks. The banks fees are fixed. Better to call the bank and find out. +ham I can. But it will tell quite long, cos i haven't finish my film yet... +ham Pls ask macho how much is budget for bb bold 2 is cos i saw a new one for <#> dollars. +ham "Hi missed your Call and my mumHas beendropping red wine all over theplace! what is your adress?" +ham Ill be at yours in about 3 mins but look out for me +ham What you did in leave. +ham I'm coming back on Thursday. Yay. Is it gonna be ok to get the money. Cheers. Oh yeah and how are you. Everything alright. Hows school. Or do you call it work now +ham Jolly good! By the way, will give u tickets for sat eve 7.30. Speak before then x +ham yeah, that's what I was thinking +ham K.k:)i'm going to tirunelvali this week to see my uncle ..i already spend the amount by taking dress .so only i want money.i will give it on feb 1 +ham Here got ur favorite oyster... N got my favorite sashimi... Ok lar i dun say already... Wait ur stomach start rumbling... +ham My sister going to earn more than me da. +spam Get the official ENGLAND poly ringtone or colour flag on yer mobile for tonights game! Text TONE or FLAG to 84199. Optout txt ENG STOP Box39822 W111WX £1.50 +ham Hahaha..use your brain dear +ham Jus finish watching tv... U? +ham K, fyi I'm back in my parents' place in south tampa so I might need to do the deal somewhere else +ham Good morning, my Love ... I go to sleep now and wish you a great day full of feeling better and opportunity ... You are my last thought babe, I LOVE YOU *kiss* +ham Kothi print out marandratha. +ham But we havent got da topic yet rite? +ham Ok no problem... Yup i'm going to sch at 4 if i rem correctly... +ham Thanks, I'll keep that in mind +ham Aah bless! How's your arm? +ham Dear Sir,Salam Alaikkum.Pride and Pleasure meeting you today at the Tea Shop.We are pleased to send you our contact number at Qatar.Rakhesh an Indian.Pls save our Number.Respectful Regards. +ham Gal n boy walking in d park. gal-can i hold ur hand? boy-y? do u think i would run away? gal-no, jst wana c how it feels walking in heaven with an prince..GN:-) +ham What makes you most happy? +ham Wishing you a wonderful week. +ham Sweet heart how are you? +ham Sir, waiting for your letter. +ham Dude im no longer a pisces. Im an aquarius now. +ham X course it 2yrs. Just so her messages on messenger lik you r sending me +ham I think steyn surely get one wicket:) +ham Neither [in sterm voice] - i'm studying. All fine with me! Not sure the thing will be resolved, tho. Anyway. Have a fab hols +ham Garbage bags, eggs, jam, bread, hannaford wheat chex +ham No. It's not pride. I'm almost <#> years old and shouldn't be takin money from my kid. You're not supposed to have to deal with this stuff. This is grownup stuff--why i don't tell you. +ham Sounds better than my evening im just doing my costume. Im not sure what time i finish tomorrow but i will txt you at the end. +ham My birthday is on feb <#> da. . +ham So when do you wanna gym? +ham You'd like that wouldn't you? Jerk! +ham Are u awake? Is there snow there? +ham And of course you should make a stink! +spam u r subscribed 2 TEXTCOMP 250 wkly comp. 1st wk?s free question follows, subsequent wks charged@150p/msg.2 unsubscribe txt STOP 2 84128,custcare 08712405020 +ham No go. No openings for that room 'til after thanksgiving without an upcharge. +ham When you guys planning on coming over? +ham Wat ü doing now? +ham My Parents, My Kidz, My Friends n My Colleagues. All screaming.. SURPRISE !! and I was waiting on the sofa.. ... ..... ' NAKED...! +ham No sir. That's why i had an 8-hr trip on the bus last week. Have another audition next wednesday but i think i might drive this time. +ham Do I? I thought I put it back in the box +ham I'm home... +ham No one interested. May be some business plan. +ham Yup it's at paragon... I havent decided whether 2 cut yet... Hee... +ham Good morning princess! Have a great day! +ham Guai... Ü shd haf seen him when he's naughty... Ü so free today? Can go jogging... +ham Aiyo cos i sms ü then ü neva reply so i wait 4 ü to reply lar. I tot ü havent finish ur lab wat. +ham Living is very simple.. Loving is also simple.. Laughing is too simple.. Winning is tooo simple.. But, Being 'SIMPLE' is very difficult...;-) :-) +ham Tell me something. Thats okay. +ham Ok +ham Hmm. Shall i bring a bottle of wine to keep us amused? Just joking! I'll still bring a bottle. Red or white? See you tomorrow +ham This is ur face test ( 1 2 3 4 5 6 7 8 9 <#> ) select any number i will tell ur face astrology.... am waiting. quick reply... +ham Hey, iouri gave me your number, I'm wylie, ryan's friend +ham Yep get with the program. You're slacking. +ham I'm in inside office..still filling forms.don know when they leave me. +ham I think your mentor is , but not 100 percent sure. +spam Call 09095350301 and send our girls into erotic ecstacy. Just 60p/min. To stop texts call 08712460324 (nat rate) +spam Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days. +spam A £400 XMAS REWARD IS WAITING FOR YOU! Our computer has randomly picked you from our loyal mobile customers to receive a £400 reward. Just call 09066380611 +ham Just trying to figure out when I'm suppose to see a couple different people this week. We said we'd get together but I didn't set dates +spam IMPORTANT MESSAGE. This is a final contact attempt. You have important messages waiting out our customer claims dept. Expires 13/4/04. Call 08717507382 NOW! +ham Hi mom we might be back later than <#> +spam dating:i have had two of these. Only started after i sent a text to talk sport radio last week. Any connection do you think or coincidence? +ham Lol, oh you got a friend for the dog ? +ham Ok., is any problem to u frm him? Wats matter? +ham K I'll head out in a few mins, see you there +ham Do u konw waht is rael FRIENDSHIP Im gving yuo an exmpel: Jsut ese tihs msg.. Evrey splleing of tihs msg is wrnog.. Bt sitll yuo can raed it wihtuot ayn mitsake.. GOODNIGHT & HAVE A NICE SLEEP..SWEET DREAMS.. +ham I cant pick the phone right now. Pls send a message +ham I don't want you to leave. But i'm barely doing what i can to stay sane. fighting with you constantly isn't helping. +spam The current leading bid is 151. To pause this auction send OUT. Customer Care: 08718726270 +spam Free entry to the gr8prizes wkly comp 4 a chance to win the latest Nokia 8800, PSP or £250 cash every wk.TXT GREAT to 80878 http//www.gr8prizes.com 08715705022 +ham Somebody set up a website where you can play hold em using eve online spacebucks +ham Its sunny in california. The weather's just cool +spam You have 1 new message. Call 0207-083-6089 +ham I can make it up there, squeezed <#> bucks out of my dad +ham Good day to You too.Pray for me.Remove the teeth as its painful maintaining other stuff. +ham How are you babes. Hope your doing ok. I had a shit nights sleep. I fell asleep at 5.I’m knackered and i’m dreading work tonight. What are thou upto tonight. X +ham How do friends help us in problems? They give the most stupid suggestion that Lands us into another problem and helps us forgt the previous problem +ham I'm at work. Please call +ham I will be gentle baby! Soon you will be taking all <#> inches deep inside your tight pussy... +ham NOT MUCH NO FIGHTS. IT WAS A GOOD NITE!! +ham Ok.ok ok..then..whats ur todays plan +ham Nt joking seriously i told +ham Watching ajith film ah? +ham Ooooooh I forgot to tell u I can get on yoville on my phone +ham All done, all handed in. Don't know if mega shop in asda counts as celebration but thats what i'm doing! +ham I dont know exactly could you ask chechi. +ham Dunno lei shd b driving lor cos i go sch 1 hr oni. +ham As in i want custom officer discount oh. +ham That's necessarily respectful +ham Hi. Hope you had a good day. Have a better night. +ham And he's apparently bffs with carly quick now +ham HARD BUT TRUE: How much you show & express your love to someone....that much it will hurt when they leave you or you get seperated...!鈥┾??〨ud evening... +ham Babes I think I got ur brolly I left it in English wil bring it in 2mrw 4 u luv Franxx +ham Hi babe its me thanks for coming even though it didnt go that well!i just wanted my bed! Hope to see you soon love and kisses xxx +ham So gd got free ice cream... I oso wan... +ham Pls give her prometazine syrup. 5mls then <#> mins later feed. +ham So how many days since then? +ham Dear are you angry i was busy dear +ham Yup he msg me: is tat yijue? Then i tot it's my group mate cos we meeting today mah... I'm askin if ü leaving earlier or wat mah cos mayb ü haf to walk v far... +ham ... Are you in the pub? +ham There is a first time for everything :) +ham Daddy, shu shu is looking 4 u... U wan me 2 tell him u're not in singapore or wat? +ham I ask if u meeting da ge tmr nite... +ham Gr8. So how do you handle the victoria island traffic. Plus when's the album due +ham Nite nite pocay wocay luv u more than n e thing 4eva I promise ring u 2morrowxxxx +ham East coast +ham You should get more chicken broth if you want ramen unless there's some I don't know about +ham My slave! I want you to take 2 or 3 pictures of yourself today in bright light on your cell phone! Bright light! +ham Nope. I just forgot. Will show next week +ham So how are you really. What are you up to. How's the masters. And so on. +ham I'm at bruce & fowler now but I'm in my mom's car so I can't park (long story) +ham I dont know oh. Hopefully this month. +ham Hi elaine, is today's meeting confirmed? +ham Ok k..sry i knw 2 siva..tats y i askd.. +ham Sorry, I'll call later +ham U horrible gal... U knew dat i was going out wif him yest n u still come n ask me... +ham Otherwise had part time job na-tuition.. +ham Oh yeah! And my diet just flew out the window +spam Santa Calling! Would your little ones like a call from Santa Xmas eve? Call 09058094583 to book your time. +ham You didnt complete your gist oh. +ham Er yeah, i will b there at 15:26, sorry! Just tell me which pub/cafe to sit in and come wen u can +ham If you can make it any time tonight or whenever you can it's cool, just text me whenever you're around +ham If I was I wasn't paying attention +ham Thanx a lot 4 ur help! +ham You're gonna have to be way more specific than that +ham Jesus armand really is trying to tell everybody he can find +ham I'm wif him now buying tix lar... +ham Mode men or have you left. +ham Am slow in using biola's fne +ham "What are youdoing later? Sar xxx" +ham Hey i've booked the 2 lessons on sun liao... +ham Thank you. do you generally date the brothas? +ham By the way, make sure u get train to worc foregate street not shrub hill. Have fun night x +ham I thought i'd get him a watch, just cos thats the kind of thing u get4an18th. And he loves so much! +spam You have won a guaranteed 32000 award or maybe even £1000 cash to claim ur award call free on 0800 ..... (18+). Its a legitimat efreefone number wat do u think??? +ham Good morning. At the repair shop--the ONLY reason i'm up at this hour. +ham And that's fine, I got enough bud to last most of the night at least +ham I am back. Good journey! Let me know if you need any of the receipts. Shall i tell you like the pendent? +ham So that takes away some money worries +ham aight we can pick some up, you open before tonight? +spam Latest News! Police station toilet stolen, cops have nothing to go on! +ham Sac needs to carry on:) +ham Just sing HU. I think its also important to find someone female that know the place well preferably a citizen that is also smart to help you navigate through. Even things like choosing a phone plan require guidance. When in doubt ask especially girls. +ham What???? Hello wats talks email address? +ham Except theres a chick with huge boobs. +ham Im just wondering what your doing right now? +ham Wishing you a beautiful day. Each moment revealing even more things to keep you smiling. Do enjoy it. +spam "For the most sparkling shopping breaks from 45 per person; call 0121 2025050 or visit www.shortbreaks.org.uk" +ham Arun can u transfr me d amt +ham Sorry, I'll call later +ham If you hear a loud scream in about <#> minutes its cause my Gyno will be shoving things up me that don't belong :/ +spam December only! Had your mobile 11mths+? You are entitled to update to the latest colour camera mobile for Free! Call The Mobile Update Co FREE on 08002986906 +ham Ok i thk i got it. Then u wan me 2 come now or wat? +spam Txt: CALL to No: 86888 & claim your reward of 3 hours talk time to use from your phone now! Subscribe6GBP/mnth inc 3hrs 16 stop?txtStop www.gamb.tv +ham U GOIN OUT 2NITE? +ham I will treasure every moment we spend together... +ham Shall I bring us a bottle of wine to keep us amused? Only joking! I‘ll bring one anyway +spam http//tms. widelive.com/index. wml?id=820554ad0a1705572711&first=true¡C C Ringtone¡ +spam Get your garden ready for summer with a FREE selection of summer bulbs and seeds worth £33:50 only with The Scotsman this Saturday. To stop go2 notxt.co.uk +spam URGENT! Last weekend's draw shows that you have won £1000 cash or a Spanish holiday! CALL NOW 09050000332 to claim. T&C: RSTM, SW7 3SS. 150ppm +ham Ok lor. +ham I thought slide is enough. +ham Yup +ham Well obviously not because all the people in my cool college life went home ;_; +ham Ok lor ü reaching then message me. +ham Where's mummy's boy ? Is he being good or bad ? Is he being positive or negative ? Why is mummy being made to wait? Hmmmm? +ham Dhoni have luck to win some big title.so we will win:) +ham Yes princess! I want to please you every night. Your wish is my command... +ham What Today-sunday..sunday is holiday..so no work.. +ham No probably <#> %. +ham Really do hope the work doesnt get stressful. Have a gr8 day. +ham Have you seen who's back at Holby?! +ham Shall call now dear having food +spam URGENT We are trying to contact you Last weekends draw shows u have won a £1000 prize GUARANTEED Call 09064017295 Claim code K52 Valid 12hrs 150p pm +ham So li hai... Me bored now da lecturer repeating last weeks stuff waste time... +ham , , and picking them up from various points | going 2 yeovil | and they will do the motor project 4 3 hours | and then u take them home. || 12 2 5.30 max. || Very easy +ham Also fuck you and your family for going to rhode island or wherever the fuck and leaving me all alone the week I have a new bong >:( +ham Ofcourse I also upload some songs +spam 2p per min to call Germany 08448350055 from your BT line. Just 2p per min. Check PlanetTalkInstant.com for info & T's & C's. Text stop to opt out +ham K. I will sent it again +ham Oh thanks a lot..i already bought 2 eggs .. +ham K. I will sent it again +ham U studying in sch or going home? Anyway i'll b going 2 sch later. +spam Marvel Mobile Play the official Ultimate Spider-man game (£4.50) on ur mobile right now. Text SPIDER to 83338 for the game & we ll send u a FREE 8Ball wallpaper +ham I think if he rule tamilnadu..then its very tough for our people. +ham Cool, we shall go and see, have to go to tip anyway. Are you at home, got something to drop in later? So lets go to town tonight! Maybe mum can take us in. +ham Good afternoon, my love ... How goes your day ? How did you sleep ? I hope your well, my boytoy ... I think of you ... +ham Yes... I trust u to buy new stuff ASAP so I can try it out +spam SMS SERVICES. for your inclusive text credits, pls goto www.comuk.net login= 3qxj9 unsubscribe with STOP, no extra charge. help 08702840625.COMUK. 220-CM2 9AE +ham Why did I wake up on my own >:( +ham Now get step 2 outta the way. Congrats again. +ham Love has one law; Make happy the person you love. In the same way friendship has one law; Never make ur friend feel alone until you are alive.... Gud night +spam PRIVATE! Your 2003 Account Statement for 07808247860 shows 800 un-redeemed S. I. M. points. Call 08719899229 Identifier Code: 40411 Expires 06/11/04 +ham Apo all other are mokka players only +ham Perhaps * is much easy give your account identification, so i will tomorrow at UNI +ham Wait . I will msg after <#> min. +ham What i told before i tell. Stupid hear after i wont tell anything to you. You dad called to my brother and spoken. Not with me. +ham God's love has no limit. God's grace has no measure. God's power has no boundaries. May u have God's endless blessings always in ur life...!! Gud ni8 +ham I want to be inside you every night... +ham Machan you go to gym tomorrow, i wil come late goodnight. +ham Lol they were mad at first but then they woke up and gave in. +ham I went to project centre +ham It‘s reassuring, in this crazy world. +ham Just making dinner, you ? +ham Yes. Please leave at <#> . So that at <#> we can leave +ham Oh... Okie lor...We go on sat... +ham You are a great role model. You are giving so much and i really wish each day for a miracle but God as a reason for everything and i must say i wish i knew why but i dont. I've looked up to you since i was young and i still do. Have a great day. +ham Ya, i'm referin to mei's ex wat... No ah, waitin 4 u to treat, somebody shld b rich liao...So gd, den u dun have to work frm tmr onwards... +ham Miles and smiles r made frm same letters but do u know d difference..? smile on ur face keeps me happy even though I am miles away from u.. :-)keep smiling.. Good nyt +ham By the way, i've put a skip right outside the front of the house so you can see which house it is. Just pull up before it. +ham Can you pls send me that company name. In saibaba colany +ham No. I dont want to hear anything +ham You are a big chic. Common. Declare +ham Thats cool. I want to please you... +ham Going to join tomorrow. +spam You are awarded a SiPix Digital Camera! call 09061221061 from landline. Delivery within 28days. T Cs Box177. M221BP. 2yr warranty. 150ppm. 16 . p p£3.99 +ham I want to tell you how bad I feel that basically the only times I text you lately are when I need drugs +spam PRIVATE! Your 2003 Account Statement for shows 800 un-redeemed S.I.M. points. Call 08718738001 Identifier Code: 49557 Expires 26/11/04 +ham Total disappointment, when I texted you was the craziest shit got :( +ham Its just the effect of irritation. Just ignore it +ham What about this one then. +ham I think that tantrum's finished so yeah I'll be by at some point +ham Compliments to you. Was away from the system. How your side. +ham happened here while you were adventuring +ham Hey chief, can you give me a bell when you get this. Need to talk to you about this royal visit on the 1st june. +ham Ok which your another number +ham I know you are thinkin malaria. But relax, children cant handle malaria. She would have been worse and its gastroenteritis. If she takes enough to replace her loss her temp will reduce. And if you give her malaria meds now she will just vomit. Its a self limiting illness she has which means in a few days it will completely stop +ham Aiyah ok wat as long as got improve can already wat... +spam Want explicit SEX in 30 secs? Ring 02073162414 now! Costs 20p/min Gsex POBOX 2667 WC1N 3XX +ham I can't believe how attached I am to seeing you every day. I know you will do the best you can to get to me babe. I will go to teach my class at your midnight +ham Just sleeping..and surfing +spam ASKED 3MOBILE IF 0870 CHATLINES INCLU IN FREE MINS. INDIA CUST SERVs SED YES. L8ER GOT MEGA BILL. 3 DONT GIV A SHIT. BAILIFF DUE IN DAYS. I O £250 3 WANT £800 +ham Yeah it's jus rite... +ham Armand says get your ass over to epsilon +ham U still havent got urself a jacket ah? +ham I'm taking derek & taylor to walmart, if I'm not back by the time you're done just leave the mouse on my desk and I'll text you when priscilla's ready +ham Hi its in durban are you still on this number +ham Ic. There are a lotta childporn cars then. +spam Had your contract mobile 11 Mnths? Latest Motorola, Nokia etc. all FREE! Double Mins & Text on Orange tariffs. TEXT YES for callback, no to remove from records. +ham No, I was trying it all weekend ;V +ham You know, wot people wear. T shirts, jumpers, hat, belt, is all we know. We r at Cribbs +ham Cool, what time you think you can get here? +ham Wen did you get so spiritual and deep. That's great +ham Have a safe trip to Nigeria. Wish you happiness and very soon company to share moments with +ham Hahaha..use your brain dear +ham Well keep in mind I've only got enough gas for one more round trip barring a sudden influx of cash +ham Yeh. Indians was nice. Tho it did kane me off a bit he he. We shud go out 4 a drink sometime soon. Mite hav 2 go 2 da works 4 a laugh soon. Love Pete x x +ham Yes i have. So that's why u texted. Pshew...missing you so much +ham No. I meant the calculation is the same. That <#> units at <#> . This school is really expensive. Have you started practicing your accent. Because its important. And have you decided if you are doing 4years of dental school or if you'll just do the nmde exam. +ham Sorry, I'll call later +ham if you aren't here in the next <#> hours imma flip my shit +ham Anything lor. Juz both of us lor. +ham Get me out of this dump heap. My mom decided to come to lowes. BORING. +ham Ok lor... Sony ericsson salesman... I ask shuhui then she say quite gd 2 use so i considering... +ham Ard 6 like dat lor. +ham Why don't you wait 'til at least wednesday to see if you get your . +ham Huh y lei... +spam REMINDER FROM O2: To get 2.50 pounds free call credit and details of great offers pls reply 2 this text with your valid name, house no and postcode +spam This is the 2nd time we have tried 2 contact u. U have won the £750 Pound prize. 2 claim is easy, call 087187272008 NOW1! Only 10p per minute. BT-national-rate. +ham Will ü b going to esplanade fr home? +ham Pity, * was in mood for that. So...any other suggestions? +ham The guy did some bitching but I acted like i'd be interested in buying something else next week and he gave it to us for free +ham Rofl. Its true to its name diff --git a/data/titanic.csv b/data/titanic.csv new file mode 100644 index 0000000..5cc466e --- /dev/null +++ b/data/titanic.csv @@ -0,0 +1,892 @@ +PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked +1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S +2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C +3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S +4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S +5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S +6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q +7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S +8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S +9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S +10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C +11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S +12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S +13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S +14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S +15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S +16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S +17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q +18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S +19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S +20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C +21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S +22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S +23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q +24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S +25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S +26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S +27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C +28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S +29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q +30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S +31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C +32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C +33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q +34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S +35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C +36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S +37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C +38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S +39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S +40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C +41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S +42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S +43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C +44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C +45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q +46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S +47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q +48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q +49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C +50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S +51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S +52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S +53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C +54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S +55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C +56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S +57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S +58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C +59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S +60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S +61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C +62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28, +63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S +64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S +65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C +66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C +67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S +68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S +69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S +70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S +71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S +72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S +73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S +74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C +75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S +76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S +77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S +78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S +79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S +80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S +81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S +82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S +83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q +84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S +85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S +86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S +87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S +88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S +89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S +90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S +91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S +92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S +93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S +94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S +95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S +96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S +97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C +98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C +99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S +100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S +101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S +102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S +103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S +104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S +105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S +106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S +107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S +108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S +109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S +110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q +111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S +112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C +113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S +114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S +115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C +116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S +117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q +118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S +119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C +120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S +121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S +122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S +123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C +124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S +125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S +126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C +127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q +128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S +129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C +130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S +131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C +132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S +133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S +134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S +135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S +136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C +137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S +138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S +139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S +140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C +141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C +142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S +143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S +144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q +145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S +146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S +147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S +148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S +149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S +150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S +151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S +152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S +153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S +154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S +155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S +156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C +157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q +158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S +159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S +160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S +161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S +162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S +163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S +164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S +165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S +166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S +167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S +168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S +169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S +170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S +171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S +172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q +173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S +174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S +175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C +176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S +177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S +178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C +179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S +180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S +181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S +182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C +183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S +184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S +185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S +186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S +187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q +188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S +189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q +190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S +191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S +192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S +193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S +194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S +195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C +196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C +197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q +198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S +199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q +200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S +201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S +202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S +203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S +204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C +205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S +206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S +207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S +208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C +209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q +210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C +211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S +212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S +213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S +214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S +215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q +216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C +217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S +218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S +219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C +220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S +221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S +222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S +223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S +224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S +225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S +226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S +227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S +228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S +229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S +230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S +231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S +232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S +233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S +234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S +235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S +236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S +237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S +238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S +239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S +240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S +241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C +242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q +243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S +244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S +245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C +246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q +247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S +248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S +249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S +250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S +251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S +252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S +253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S +254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S +255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S +256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C +257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C +258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S +259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C +260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S +261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q +262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S +263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S +264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S +265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q +266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S +267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S +268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S +269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S +270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S +271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S +272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S +273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S +274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C +275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q +276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S +277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S +278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S +279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q +280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S +281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q +282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S +283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S +284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S +285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S +286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C +287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S +288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S +289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S +290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q +291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S +292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C +293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C +294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S +295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S +296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C +297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C +298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S +299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S +300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C +301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q +302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q +303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S +304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q +305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S +306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S +307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C +308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C +309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C +310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C +311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C +312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C +313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S +314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S +315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S +316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S +317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S +318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S +319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S +320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C +321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S +322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S +323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q +324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S +325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S +326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C +327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S +328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S +329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S +330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C +331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q +332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S +333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S +334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S +335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S +336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S +337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S +338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C +339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S +340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S +341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S +342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S +343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S +344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S +345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S +346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S +347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S +348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S +349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S +350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S +351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S +352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S +353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C +354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S +355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C +356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S +357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S +358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S +359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q +360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q +361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S +362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C +363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C +364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S +365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q +366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S +367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C +368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C +369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q +370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C +371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C +372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S +373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S +374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C +375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S +376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C +377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S +378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C +379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C +380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S +381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C +382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C +383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S +384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S +385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S +386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S +387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S +388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S +389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q +390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C +391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S +392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S +393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S +394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C +395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S +396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S +397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S +398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S +399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S +400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S +401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S +402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S +403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S +404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S +405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S +406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S +407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S +408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S +409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S +410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S +411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S +412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q +413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q +414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S +415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S +416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S +417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S +418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S +419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S +420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S +421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C +422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q +423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S +424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S +425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S +426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S +427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S +428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S +429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q +430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S +431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S +432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S +433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S +434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S +435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S +436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S +437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S +438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S +439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S +440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S +441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S +442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S +443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S +444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S +445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S +446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S +447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S +448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S +449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C +450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S +451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S +452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S +453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C +454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C +455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S +456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C +457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S +458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S +459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S +460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q +461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S +462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S +463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S +464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S +465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S +466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S +467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S +468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S +469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q +470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C +471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S +472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S +473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S +474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C +475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S +476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S +477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S +478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S +479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S +480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S +481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S +482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S +483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S +484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S +485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C +486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S +487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S +488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C +489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S +490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S +491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S +492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S +493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S +494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C +495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S +496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C +497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C +498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S +499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S +500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S +501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S +502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q +503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q +504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S +505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S +506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C +507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S +508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S +509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S +510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S +511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q +512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S +513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S +514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C +515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S +516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S +517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S +518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q +519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S +520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S +521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S +522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S +523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C +524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C +525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C +526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q +527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S +528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S +529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S +530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S +531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S +532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C +533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C +534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C +535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S +536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S +537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S +538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C +539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S +540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C +541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S +542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S +543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S +544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S +545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C +546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S +547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S +548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C +549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S +550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S +551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C +552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S +553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q +554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C +555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S +556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S +557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C +558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C +559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S +560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S +561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q +562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S +563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S +564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S +565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S +566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S +567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S +568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S +569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C +570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S +571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S +572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S +573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S +574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q +575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S +576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S +577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S +578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S +579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C +580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S +581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S +582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C +583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S +584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C +585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C +586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S +587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S +588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C +589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S +590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S +591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S +592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C +593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S +594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q +595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S +596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S +597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S +598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S +599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C +600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C +601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S +602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S +603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S +604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S +605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C +606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S +607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S +608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S +609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C +610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S +611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S +612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S +613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q +614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q +615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S +616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S +617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S +618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S +619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S +620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S +621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C +622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S +623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C +624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S +625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S +626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S +627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q +628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S +629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S +630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q +631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S +632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S +633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C +634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S +635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S +636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S +637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S +638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S +639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S +640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S +641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S +642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C +643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S +644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S +645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C +646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C +647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S +648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C +649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S +650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S +651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S +652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S +653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S +654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q +655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q +656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S +657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S +658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q +659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S +660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C +661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S +662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C +663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S +664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S +665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S +666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S +667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S +668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S +669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S +670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S +671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S +672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S +673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S +674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S +675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S +676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S +677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S +678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S +679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S +680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C +681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q +682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C +683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S +684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S +685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S +686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C +687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S +688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S +689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S +690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S +691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S +692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C +693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S +694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C +695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S +696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S +697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S +698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q +699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C +700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S +701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C +702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S +703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C +704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q +705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S +706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S +707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S +708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S +709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S +710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C +711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C +712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S +713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S +714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S +715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S +716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S +717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C +718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S +719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q +720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S +721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S +722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S +723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S +724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S +725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S +726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S +727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S +728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q +729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S +730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S +731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S +732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C +733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S +734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S +735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S +736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S +737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S +738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C +739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S +740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S +741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S +742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S +743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C +744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S +745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S +746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S +747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S +748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S +749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S +750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q +751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S +752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S +753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S +754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S +755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S +756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S +757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S +758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S +759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S +760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S +761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S +762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S +763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C +764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S +765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S +766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S +767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C +768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q +769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q +770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S +771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S +772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S +773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S +774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C +775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S +776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S +777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q +778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S +779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q +780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S +781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C +782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S +783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S +784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S +785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S +786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S +787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S +788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q +789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S +790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C +791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q +792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S +793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S +794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C +795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S +796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S +797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S +798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S +799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C +800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S +801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S +802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S +803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S +804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C +805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S +806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S +807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S +808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S +809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S +810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S +811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S +812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S +813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S +814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S +815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S +816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S +817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S +818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C +819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S +820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S +821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S +822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S +823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S +824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S +825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S +826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q +827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S +828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C +829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q +830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28, +831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C +832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S +833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C +834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S +835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S +836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C +837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S +838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S +839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S +840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C +841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S +842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S +843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C +844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C +845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S +846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S +847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S +848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C +849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S +850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C +851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S +852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S +853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C +854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S +855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S +856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S +857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S +858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S +859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C +860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C +861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S +862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S +863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S +864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S +865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S +866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S +867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C +868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S +869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S +870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S +871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S +872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S +873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S +874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S +875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C +876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C +877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S +878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S +879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S +880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C +881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S +882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S +883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S +884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S +885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S +886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q +887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S +888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S +889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S +890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C +891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q diff --git a/data/u.data b/data/u.data new file mode 100644 index 0000000..16ef21e --- /dev/null +++ b/data/u.data @@ -0,0 +1,100000 @@ +196 242 3 881250949 +186 302 3 891717742 +22 377 1 878887116 +244 51 2 880606923 +166 346 1 886397596 +298 474 4 884182806 +115 265 2 881171488 +253 465 5 891628467 +305 451 3 886324817 +6 86 3 883603013 +62 257 2 879372434 +286 1014 5 879781125 +200 222 5 876042340 +210 40 3 891035994 +224 29 3 888104457 +303 785 3 879485318 +122 387 5 879270459 +194 274 2 879539794 +291 1042 4 874834944 +234 1184 2 892079237 +119 392 4 886176814 +167 486 4 892738452 +299 144 4 877881320 +291 118 2 874833878 +308 1 4 887736532 +95 546 2 879196566 +38 95 5 892430094 +102 768 2 883748450 +63 277 4 875747401 +160 234 5 876861185 +50 246 3 877052329 +301 98 4 882075827 +225 193 4 879539727 +290 88 4 880731963 +97 194 3 884238860 +157 274 4 886890835 +181 1081 1 878962623 +278 603 5 891295330 +276 796 1 874791932 +7 32 4 891350932 +10 16 4 877888877 +284 304 4 885329322 +201 979 2 884114233 +276 564 3 874791805 +287 327 5 875333916 +246 201 5 884921594 +242 1137 5 879741196 +249 241 5 879641194 +99 4 5 886519097 +178 332 3 882823437 +251 100 4 886271884 +81 432 2 876535131 +260 322 4 890618898 +25 181 5 885853415 +59 196 5 888205088 +72 679 2 880037164 +87 384 4 879877127 +290 143 5 880474293 +42 423 5 881107687 +292 515 4 881103977 +115 20 3 881171009 +20 288 1 879667584 +201 219 4 884112673 +13 526 3 882141053 +246 919 4 884920949 +138 26 5 879024232 +167 232 1 892738341 +60 427 5 883326620 +57 304 5 883698581 +223 274 4 891550094 +189 512 4 893277702 +243 15 3 879987440 +92 1049 1 890251826 +246 416 3 884923047 +194 165 4 879546723 +241 690 2 887249482 +178 248 4 882823954 +254 1444 3 886475558 +293 5 3 888906576 +127 229 5 884364867 +225 237 5 879539643 +299 229 3 878192429 +225 480 5 879540748 +276 54 3 874791025 +291 144 5 874835091 +222 366 4 878183381 +267 518 5 878971773 +42 403 3 881108684 +11 111 4 891903862 +95 625 4 888954412 +8 338 4 879361873 +162 25 4 877635573 +87 1016 4 879876194 +279 154 5 875296291 +145 275 2 885557505 +119 1153 5 874781198 +62 498 4 879373848 +62 382 3 879375537 +28 209 4 881961214 +135 23 4 879857765 +32 294 3 883709863 +90 382 5 891383835 +286 208 4 877531942 +293 685 3 888905170 +216 144 4 880234639 +166 328 5 886397722 +250 496 4 878090499 +271 132 5 885848672 +160 174 5 876860807 +265 118 4 875320714 +198 498 3 884207492 +42 96 5 881107178 +168 151 5 884288058 +110 307 4 886987260 +58 144 4 884304936 +90 648 4 891384754 +271 346 4 885844430 +62 21 3 879373460 +279 832 3 881375854 +237 514 4 879376641 +94 789 4 891720887 +128 485 3 879966895 +298 317 4 884182806 +44 195 5 878347874 +264 200 5 886122352 +194 385 2 879524643 +72 195 5 880037702 +222 750 5 883815120 +250 264 3 878089182 +41 265 3 890687042 +224 245 3 888082216 +82 135 3 878769629 +262 1147 4 879791710 +293 471 3 888904884 +216 658 3 880245029 +250 140 3 878092059 +59 23 5 888205300 +286 379 5 877533771 +244 815 4 880605185 +7 479 4 891352010 +174 368 1 886434402 +87 274 4 879876734 +194 1211 2 879551380 +82 1134 2 884714402 +13 836 2 882139746 +13 272 4 884538403 +244 756 2 880605157 +305 427 5 886323090 +95 787 2 888954930 +43 14 2 883955745 +299 955 4 889502823 +57 419 3 883698454 +84 405 3 883452363 +269 504 4 891449922 +299 111 3 877878184 +194 466 4 879525876 +160 135 4 876860807 +99 268 3 885678247 +10 486 4 877886846 +259 117 4 874724988 +85 427 3 879456350 +303 919 4 879467295 +213 273 5 878870987 +121 514 3 891387947 +90 98 5 891383204 +49 559 2 888067405 +42 794 3 881108425 +155 323 2 879371261 +68 117 4 876973939 +172 177 4 875537965 +19 4 4 885412840 +268 231 4 875744136 +5 2 3 875636053 +305 117 2 886324028 +44 294 4 883612356 +43 137 4 875975656 +279 1336 1 875298353 +80 466 5 887401701 +254 164 4 886472768 +298 281 3 884183336 +279 1240 1 892174404 +66 298 4 883601324 +18 443 3 880130193 +268 1035 2 875542174 +99 79 4 885680138 +13 98 4 881515011 +26 258 3 891347949 +7 455 4 891353086 +222 755 4 878183481 +200 673 5 884128554 +119 328 4 876923913 +213 172 5 878955442 +276 322 3 874786392 +94 1217 3 891723086 +130 379 4 875801662 +38 328 4 892428688 +160 719 3 876857977 +293 1267 3 888906966 +26 930 2 891385985 +130 216 4 875216545 +92 1079 3 886443455 +256 452 4 882164999 +1 61 4 878542420 +72 48 4 880036718 +56 755 3 892910207 +13 360 4 882140926 +15 405 2 879455957 +92 77 3 875654637 +207 476 2 884386343 +292 174 5 881105481 +232 483 5 888549622 +251 748 2 886272175 +224 26 3 888104153 +181 220 4 878962392 +259 255 4 874724710 +305 471 4 886323648 +52 280 3 882922806 +161 202 5 891170769 +148 408 5 877399018 +125 235 2 892838559 +97 228 5 884238860 +58 1098 4 884304936 +83 234 4 887665548 +90 347 4 891383319 +272 178 5 879455113 +194 181 3 879521396 +125 478 4 879454628 +110 688 1 886987605 +299 14 4 877877775 +151 10 5 879524921 +269 127 4 891446165 +6 14 5 883599249 +54 106 3 880937882 +303 69 5 879467542 +16 944 1 877727122 +301 790 4 882078621 +276 1091 3 874793035 +305 214 2 886323068 +194 1028 2 879541148 +91 323 2 891438397 +87 554 4 879875940 +294 109 4 877819599 +286 171 4 877531791 +200 318 5 884128458 +229 328 1 891632142 +178 568 4 882826555 +303 842 2 879484804 +62 65 4 879374686 +207 591 3 876018608 +92 172 4 875653271 +301 401 4 882078040 +36 339 5 882157581 +70 746 3 884150257 +63 242 3 875747190 +28 201 3 881961671 +279 68 4 875307407 +250 7 4 878089716 +14 98 3 890881335 +299 1018 3 889502324 +194 54 3 879525876 +303 815 3 879485532 +119 237 5 874775038 +295 218 5 879966498 +268 930 2 875742942 +268 2 2 875744173 +66 258 4 883601089 +233 202 5 879394264 +83 623 4 880308578 +214 334 3 891542540 +192 476 2 881368243 +100 344 4 891374868 +268 145 1 875744501 +301 56 4 882076587 +307 89 5 879283786 +234 141 3 892334609 +83 576 4 880308755 +181 264 2 878961624 +297 133 4 875240090 +38 153 5 892430369 +7 382 4 891352093 +264 813 4 886122952 +181 872 1 878961814 +201 146 1 884140579 +85 507 4 879456199 +269 367 3 891450023 +59 468 3 888205855 +286 143 4 889651549 +193 96 1 889124507 +113 595 5 875936424 +292 11 5 881104093 +130 1014 3 876250718 +275 98 4 875155140 +189 520 5 893265380 +219 82 1 889452455 +218 209 5 877488546 +123 427 3 879873020 +119 222 5 874775311 +158 177 4 880134407 +222 118 4 877563802 +302 322 2 879436875 +279 501 3 875308843 +301 79 5 882076403 +181 3 2 878963441 +201 695 1 884140115 +13 198 3 881515193 +1 189 3 888732928 +145 237 5 875270570 +23 385 4 874786462 +201 767 4 884114505 +296 705 5 884197193 +42 546 3 881105817 +33 872 3 891964230 +301 554 3 882078830 +16 64 5 877720297 +95 135 3 879197562 +154 357 4 879138713 +77 484 5 884733766 +296 508 5 884196584 +302 303 2 879436785 +244 673 3 880606667 +222 77 4 878183616 +13 215 5 882140588 +16 705 5 877722736 +270 452 4 876956264 +145 15 2 875270655 +187 64 5 879465631 +200 304 5 876041644 +170 749 5 887646170 +101 829 3 877136138 +184 218 3 889909840 +128 204 4 879967478 +181 1295 1 878961781 +184 153 3 889911285 +1 33 4 878542699 +1 160 4 875072547 +184 321 5 889906967 +54 595 3 880937813 +94 343 4 891725009 +128 508 4 879967767 +23 323 2 874784266 +301 227 3 882077222 +301 191 3 882075672 +112 903 1 892440172 +82 183 3 878769848 +222 724 3 878181976 +218 430 3 877488316 +308 1197 4 887739521 +303 134 5 879467959 +133 751 3 890588547 +215 212 2 891435680 +69 256 5 882126156 +254 662 4 887347350 +276 2 4 874792436 +104 984 1 888442575 +63 1067 3 875747514 +267 410 4 878970785 +13 56 5 881515011 +240 879 3 885775745 +286 237 2 875806800 +294 271 5 889241426 +90 1086 4 891384424 +18 26 4 880129731 +92 229 3 875656201 +308 649 4 887739292 +144 89 3 888105691 +191 302 4 891560253 +59 951 3 888206409 +200 96 5 884129409 +16 197 5 877726146 +61 678 3 892302309 +271 199 4 885848448 +271 709 3 885849325 +142 169 5 888640356 +275 597 3 876197678 +222 151 3 878182109 +87 40 3 879876917 +207 258 4 877879172 +272 1393 2 879454663 +177 333 4 880130397 +207 1115 2 879664906 +299 577 3 889503806 +271 378 4 885849447 +305 425 4 886324486 +49 959 2 888068912 +94 1224 3 891722802 +130 1017 3 874953895 +10 175 3 877888677 +203 321 3 880433418 +191 286 4 891560842 +43 323 3 875975110 +21 558 5 874951695 +197 96 5 891409839 +13 344 2 888073635 +194 66 3 879527264 +234 206 4 892334543 +308 402 4 887740700 +308 640 4 887737036 +269 522 5 891447773 +94 265 4 891721889 +268 62 3 875310824 +272 12 5 879455254 +121 291 3 891390477 +296 20 5 884196921 +134 286 3 891732334 +180 462 5 877544218 +234 612 3 892079140 +104 117 2 888465972 +38 758 1 892434626 +269 845 1 891456255 +7 163 4 891353444 +234 1451 3 892078343 +275 405 2 876197645 +52 250 3 882922661 +102 823 3 888801465 +13 186 4 890704999 +178 731 4 882827532 +236 71 3 890116671 +256 781 5 882165296 +263 176 5 891299752 +244 186 3 880605697 +279 1181 4 875314001 +43 815 4 883956189 +83 78 2 880309089 +151 197 5 879528710 +254 436 2 886474216 +109 631 3 880579371 +297 716 3 875239422 +249 188 4 879641067 +144 699 4 888106106 +301 604 4 882075994 +64 392 3 889737542 +92 501 2 875653665 +222 97 4 878181739 +268 436 3 875310745 +293 135 5 888905550 +213 173 5 878955442 +160 460 2 876861185 +13 498 4 882139901 +59 715 5 888205921 +5 17 4 875636198 +125 163 5 879454956 +174 315 5 886432749 +114 505 3 881260203 +213 515 4 878870518 +23 196 2 874786926 +128 15 4 879968827 +239 56 4 889179478 +181 279 1 878962955 +291 80 4 875086354 +250 238 4 878089963 +201 649 3 884114275 +60 60 5 883327734 +181 325 2 878961814 +119 407 3 887038665 +287 1 5 875334088 +216 228 3 880245642 +216 531 4 880233810 +203 471 4 880434463 +92 587 3 875660408 +13 892 3 882774224 +213 176 4 878956338 +286 288 5 875806672 +117 1047 2 881009697 +99 111 1 885678886 +11 558 3 891904214 +65 47 2 879216672 +295 194 4 879517412 +269 217 2 891451610 +85 259 2 881705026 +250 596 5 878089921 +137 144 5 881433689 +201 960 2 884112077 +257 137 4 882049932 +111 328 4 891679939 +91 480 4 891438875 +215 211 4 891436202 +181 938 1 878961586 +189 1060 5 893264301 +1 20 4 887431883 +303 404 4 879468375 +299 305 3 879737314 +187 210 4 879465242 +222 278 2 877563913 +214 568 4 892668197 +293 770 3 888906655 +285 191 4 890595859 +303 252 3 879544791 +96 156 4 884402860 +72 1110 3 880037334 +115 1067 4 881171009 +7 430 3 891352178 +116 350 3 886977926 +73 480 4 888625753 +269 246 5 891457067 +263 419 5 891299514 +70 431 3 884150257 +221 475 4 875244204 +72 182 5 880036515 +25 357 4 885852757 +290 50 5 880473582 +189 526 4 893266205 +299 303 3 877618584 +264 294 3 886121516 +200 365 5 884129962 +187 135 4 879465653 +184 187 4 889909024 +63 289 2 875746985 +13 229 4 882397650 +298 486 3 884183063 +235 185 4 889655435 +62 712 4 879376178 +246 94 2 884923505 +54 742 5 880934806 +63 762 3 875747688 +11 732 3 891904596 +92 168 4 875653723 +8 550 3 879362356 +307 174 4 879283480 +303 200 4 879468459 +256 849 2 882164603 +72 54 3 880036854 +164 406 2 889402389 +117 150 4 880125101 +224 77 4 888103872 +193 869 3 889127811 +94 184 2 891720862 +281 338 2 881200457 +130 109 3 874953794 +128 371 1 879966954 +94 720 1 891723593 +182 845 3 885613067 +129 873 1 883245452 +254 229 4 886474580 +64 381 4 879365491 +151 176 2 879524293 +45 25 4 881014015 +193 879 3 889123257 +276 922 4 889174849 +276 57 3 874787526 +234 187 4 892079140 +181 306 1 878962006 +21 370 1 874951293 +293 249 3 888905229 +264 721 5 886123656 +10 611 5 877886722 +197 346 3 891409070 +276 142 3 874792945 +308 427 4 887736584 +221 943 4 875246759 +131 126 4 883681514 +268 824 2 876518557 +109 8 3 880572642 +198 58 3 884208173 +230 680 4 880484286 +181 741 1 878962918 +192 1061 4 881368891 +234 448 3 892335501 +90 900 4 891382309 +193 941 4 889124890 +128 603 5 879966839 +126 905 2 887855283 +244 265 4 880606634 +90 289 3 891382310 +157 25 3 886890787 +305 71 3 886323684 +119 382 5 874781742 +21 222 2 874951382 +231 181 4 888605273 +280 508 3 891700453 +288 132 3 886374129 +279 1497 2 890780576 +301 33 4 882078228 +72 699 3 880036783 +90 259 2 891382392 +308 55 3 887738760 +59 742 3 888203053 +94 744 4 891721462 +130 642 4 875216933 +26 1015 3 891352136 +56 121 5 892679480 +82 508 2 884714249 +62 12 4 879373613 +276 40 3 874791871 +181 1015 1 878963121 +152 301 3 880147407 +178 845 4 882824291 +217 597 4 889070087 +79 303 4 891271203 +138 484 4 879024127 +308 81 5 887737293 +75 284 2 884050393 +269 198 4 891447062 +307 94 3 877122695 +222 781 3 881059677 +121 740 3 891390544 +269 22 1 891448072 +13 864 4 882141924 +230 742 5 880485043 +269 507 4 891448800 +239 1099 5 889179253 +245 1028 5 888513447 +56 546 3 892679460 +295 961 5 879519556 +271 1028 2 885848102 +222 812 2 881059117 +69 240 3 882126156 +10 7 4 877892210 +22 376 3 878887112 +294 931 3 889242857 +82 717 1 884714492 +279 399 4 875313859 +269 234 1 891449406 +6 98 5 883600680 +243 1039 4 879988184 +298 181 4 884125629 +282 325 1 881703044 +78 323 1 879633567 +118 200 5 875384647 +283 1114 5 879297545 +171 292 4 891034835 +70 217 4 884151119 +10 100 5 877891747 +245 181 4 888513664 +107 333 3 891264267 +246 561 1 884923445 +13 901 1 883670672 +276 70 4 874790826 +244 17 2 880607205 +189 56 5 893265263 +226 242 5 883888671 +62 1016 4 879373008 +276 417 4 874792907 +214 478 4 891544052 +306 235 4 876504354 +222 26 3 878183043 +280 631 5 891700751 +60 430 5 883326122 +56 71 4 892683275 +42 274 5 881105817 +1 202 5 875072442 +13 809 4 882397582 +173 289 4 877556988 +15 749 1 879455311 +185 23 4 883524249 +280 540 3 891702304 +244 381 4 880604077 +150 293 4 878746946 +7 497 4 891352134 +178 317 4 882826915 +178 742 3 882823833 +95 1217 3 880572658 +234 1462 3 892333865 +97 222 5 884238887 +109 127 2 880563471 +117 268 5 880124306 +269 705 2 891448850 +130 1246 3 876252497 +264 655 4 886123530 +207 13 3 875506839 +42 588 5 881108147 +246 409 2 884923372 +87 367 4 879876702 +101 304 3 877135677 +256 127 4 882164406 +92 794 3 875654798 +181 762 2 878963418 +213 235 1 878955115 +92 739 2 876175582 +292 661 5 881105561 +246 665 4 884922831 +274 845 5 878945579 +188 692 5 875072583 +18 86 4 880129731 +5 439 1 878844423 +236 632 3 890116254 +193 407 4 889127921 +144 709 4 888105940 +90 1198 5 891383866 +48 609 4 879434819 +5 225 2 875635723 +22 128 5 878887983 +311 432 4 884365485 +8 22 5 879362183 +276 188 4 874792547 +222 173 5 878183043 +72 866 4 880035887 +299 134 4 878192311 +1 171 5 889751711 +308 295 3 887741461 +165 216 4 879525778 +222 49 3 878183512 +181 121 4 878962623 +200 11 5 884129542 +234 626 4 892336358 +244 707 4 880606243 +90 25 5 891384789 +208 216 5 883108324 +263 96 4 891298336 +134 323 4 891732335 +279 586 4 892864663 +2 292 4 888550774 +288 593 2 886892127 +49 302 4 888065432 +286 153 5 877531406 +205 304 3 888284313 +22 80 4 878887227 +234 318 4 892078890 +223 328 3 891548959 +15 25 3 879456204 +268 147 4 876514002 +94 1220 3 891722678 +274 405 4 878945840 +7 492 5 891352010 +268 217 2 875744501 +16 55 5 877717956 +164 620 3 889402298 +290 161 4 880474293 +92 515 4 875640800 +239 1070 5 889179032 +56 449 5 892679308 +248 234 4 884534968 +234 10 3 891227851 +280 1049 2 891702486 +308 187 5 887738760 +276 64 5 874787441 +192 948 3 881368302 +122 509 4 879270511 +85 588 3 880838306 +262 931 2 879790874 +201 272 3 886013700 +181 870 2 878962623 +295 739 4 879518319 +263 568 4 891299387 +295 39 4 879518279 +201 1100 4 884112800 +93 820 3 888705966 +159 1028 5 880557539 +158 665 2 880134532 +293 423 3 888906070 +82 597 3 878768882 +276 181 5 874786488 +13 823 5 882397833 +217 2 3 889069782 +83 660 4 880308256 +189 20 5 893264466 +222 796 4 878183684 +146 1022 5 891458193 +267 121 3 878970681 +126 294 3 887855087 +181 1060 1 878962675 +125 80 4 892838865 +43 120 4 884029430 +13 780 1 882142057 +253 259 2 891628883 +42 44 3 881108548 +77 518 4 884753202 +291 686 5 874835165 +268 21 3 875742822 +262 28 3 879792220 +234 81 3 892334680 +29 245 3 882820803 +236 57 5 890116575 +158 729 3 880133116 +156 661 4 888185947 +232 52 5 888550130 +168 866 5 884287927 +37 288 4 880915258 +141 245 3 884584426 +235 230 4 889655162 +102 70 3 888803537 +77 172 3 884752562 +90 506 5 891383319 +186 566 5 879023663 +44 660 5 878347915 +118 774 5 875385198 +7 661 5 891351624 +49 1003 2 888068651 +62 68 1 879374969 +42 1028 4 881106072 +178 433 4 882827834 +85 51 2 879454782 +77 474 5 884732407 +58 1099 2 892243079 +56 1047 4 892911290 +197 688 1 891409564 +286 99 4 878141681 +90 258 3 891382121 +181 1288 1 878962349 +295 190 4 879517062 +224 69 4 888082495 +272 317 4 879454977 +221 1010 3 875246662 +66 877 1 883601089 +207 318 5 877124871 +234 487 3 892079237 +7 648 5 891351653 +87 82 5 879875774 +195 1052 1 877835102 +44 449 5 883613334 +306 287 4 876504442 +194 172 3 879521474 +94 62 3 891722933 +167 659 4 892738277 +108 100 4 879879720 +230 304 5 880484286 +181 927 1 878962675 +54 302 4 880928519 +90 22 4 891384357 +181 696 2 878962997 +286 357 4 877531537 +14 269 4 892242403 +311 179 2 884365357 +92 121 5 875640679 +21 440 1 874951798 +244 550 1 880602264 +181 405 4 878962919 +65 806 4 879216529 +37 540 2 880916070 +44 443 5 878348289 +244 183 4 880606043 +1 265 4 878542441 +270 25 5 876954456 +299 387 2 889502756 +94 572 3 891723883 +286 746 4 877533058 +239 272 5 889181247 +216 55 5 880245145 +254 121 3 886472369 +62 665 2 879376483 +178 385 4 882826982 +194 23 4 879522819 +268 955 3 875745160 +188 143 5 875072674 +276 294 4 874786366 +158 1098 4 880135069 +207 845 3 881681663 +161 48 1 891170745 +305 654 4 886323937 +47 324 3 879439078 +64 736 4 889739212 +191 751 3 891560753 +7 378 5 891353011 +59 92 5 888204997 +69 268 5 882027109 +10 461 3 877888944 +21 129 4 874951382 +58 9 4 884304328 +194 152 3 879549996 +7 200 5 891353543 +113 126 5 875076827 +173 328 5 877557028 +95 233 4 879196354 +16 194 5 877720733 +59 323 4 888206809 +311 654 3 884365075 +292 589 4 881105516 +43 203 4 883955224 +79 50 4 891271545 +235 70 5 889655619 +125 190 5 892836309 +284 322 3 885329671 +303 161 5 879468547 +254 378 3 886474396 +255 1034 1 883217030 +104 301 2 888442275 +90 923 5 891383912 +6 463 4 883601713 +279 122 1 875297433 +286 298 4 875807004 +222 448 3 878183565 +297 57 5 875239383 +42 625 3 881108873 +130 1217 4 875801778 +254 357 3 886472466 +109 475 1 880563641 +230 1444 2 880485726 +244 310 3 880601905 +6 301 2 883600406 +36 748 4 882157285 +256 443 3 882164727 +102 515 1 888801316 +104 285 4 888465201 +21 447 5 874951695 +111 301 4 891680028 +18 408 5 880129628 +25 222 4 885852817 +110 944 3 886989501 +270 98 5 876955868 +68 237 5 876974133 +83 215 4 880307940 +6 258 2 883268278 +89 216 5 879459859 +128 317 4 879968029 +305 512 4 886323525 +184 412 2 889912691 +286 175 5 877532470 +279 1428 3 888465209 +256 86 5 882165103 +221 48 5 875245462 +140 332 3 879013617 +190 977 2 891042938 +11 227 3 891905896 +201 203 5 884114471 +150 181 5 878746685 +126 245 3 887854726 +20 208 2 879669401 +144 742 4 888104122 +181 930 1 878963275 +109 566 4 880578814 +85 1065 3 879455021 +213 133 3 878955973 +222 379 1 878184290 +223 11 3 891550649 +215 421 4 891435704 +218 208 3 877488366 +174 937 5 886432989 +275 186 3 880314383 +68 742 1 876974198 +268 583 4 876513830 +160 462 4 876858346 +195 273 4 878019342 +224 178 4 888082468 +5 110 1 875636493 +99 1016 5 885678724 +2 251 5 888552084 +292 9 4 881104148 +72 568 4 880037203 +85 228 3 882813248 +83 281 5 880307072 +92 831 2 886443708 +7 543 3 891351772 +87 401 2 879876813 +287 926 4 875334340 +1 155 2 878542201 +234 632 2 892079538 +222 53 5 878184113 +24 64 5 875322758 +7 554 3 891354639 +82 56 3 878769410 +161 318 3 891170824 +196 393 4 881251863 +56 91 4 892683275 +82 477 3 876311344 +7 472 2 891353357 +256 761 4 882164644 +226 56 4 883889102 +279 741 5 875296891 +308 1286 3 887738151 +16 8 5 877722736 +180 202 3 877128388 +203 93 4 880434940 +145 56 5 875271896 +288 305 4 886372527 +84 742 3 883450643 +44 644 3 878347818 +17 13 3 885272654 +313 117 4 891015319 +148 1 4 877019411 +197 347 4 891409070 +21 164 5 874951695 +279 982 3 875298314 +239 491 5 889181015 +185 287 5 883526288 +297 89 4 875239125 +303 68 4 879467361 +186 250 1 879023607 +73 206 3 888625754 +104 756 2 888465739 +94 216 3 885870665 +239 194 5 889178833 +197 511 5 891409839 +280 1 4 891700426 +1 117 3 874965739 +224 583 1 888103729 +303 397 1 879543831 +60 162 4 883327734 +198 258 4 884204501 +239 513 5 889178887 +6 69 3 883601277 +233 375 4 876374419 +85 642 4 882995615 +110 38 3 886988574 +184 522 3 889908462 +99 873 1 885678436 +13 418 2 882398763 +201 518 4 884112201 +13 858 1 882397068 +214 131 3 891544465 +296 228 4 884197264 +222 87 3 878182589 +279 725 4 875314144 +217 182 2 889070109 +85 433 3 879828720 +239 234 3 889178762 +13 72 4 882141727 +194 77 3 879527421 +208 663 5 883108476 +109 178 3 880572950 +230 172 4 880484523 +59 485 2 888204466 +313 478 3 891014373 +70 1133 3 884151344 +62 182 5 879375169 +198 234 3 884207833 +65 125 4 879217509 +174 660 5 886514261 +90 12 5 891383241 +130 1248 3 880396702 +100 354 2 891375260 +283 432 5 879297965 +275 418 3 875154718 +311 98 5 884364502 +195 751 4 883295500 +130 105 4 876251160 +269 252 1 891456350 +286 73 5 877532965 +7 623 3 891354217 +56 222 5 892679439 +210 204 5 887730676 +239 9 5 889180446 +96 87 4 884403531 +297 73 2 875239691 +249 239 3 879572284 +94 860 2 891723706 +84 121 4 883452307 +275 265 4 880314031 +135 1046 3 879858003 +291 1178 4 875086354 +125 382 1 892836623 +70 399 4 884068521 +311 9 4 884963365 +301 523 4 882076146 +152 685 5 880149074 +244 172 4 880605665 +275 1091 2 875154535 +53 281 4 879443288 +198 118 2 884206513 +244 790 4 880608037 +26 125 4 891371676 +151 13 3 879542688 +124 496 1 890286933 +24 191 5 875323003 +271 65 3 885849419 +307 634 3 879283385 +294 1245 3 877819265 +234 241 2 892335042 +25 501 3 885852301 +293 137 3 888904653 +201 432 3 884111312 +75 240 1 884050661 +13 181 5 882140354 +207 68 2 877125350 +2 50 5 888552084 +313 566 4 891016220 +144 125 4 888104191 +188 443 4 875074329 +276 324 4 874786419 +145 974 1 882182634 +72 234 4 880037418 +83 385 4 887665549 +181 619 3 878963086 +109 402 4 880581344 +207 107 3 876198301 +185 216 4 883526268 +14 213 5 890881557 +149 319 2 883512658 +57 79 5 883698495 +230 963 5 880484370 +176 875 4 886047442 +253 97 4 891628501 +284 269 4 885328991 +106 526 4 881452685 +121 180 3 891388286 +62 86 2 879374640 +291 418 4 875086920 +84 1033 4 883452711 +293 380 2 888907527 +207 58 3 875991047 +194 187 4 879520813 +109 97 3 880578711 +283 845 4 879297442 +297 275 5 874954260 +181 334 1 878961749 +78 255 4 879633745 +11 425 4 891904300 +308 59 4 887737647 +193 1078 4 889126943 +297 234 3 875239018 +87 585 4 879877008 +250 204 2 878091682 +8 50 5 879362124 +186 148 4 891719774 +312 692 4 891699426 +91 683 3 891438351 +5 454 1 875721432 +291 376 3 875086534 +175 127 5 877107640 +145 737 2 875272833 +7 644 5 891351685 +276 419 5 874792907 +83 210 5 880307751 +102 524 3 888803537 +153 174 1 881371140 +62 302 3 879371909 +49 995 3 888065577 +268 298 3 875742647 +207 554 2 877822854 +313 616 5 891015049 +286 44 3 877532173 +279 168 5 875296435 +276 474 5 889174904 +62 59 4 879373821 +254 219 1 886475980 +83 97 4 880308690 +63 100 5 875747319 +16 178 5 877719333 +297 233 2 875239914 +90 945 5 891383866 +85 25 2 879452769 +42 98 4 881106711 +303 393 4 879484981 +274 50 5 878944679 +104 299 3 888442436 +94 792 4 885873006 +184 98 4 889908539 +293 708 3 888907527 +248 589 4 884534968 +18 950 3 880130764 +217 27 1 889070011 +200 892 4 884127082 +201 148 1 884140751 +296 222 5 884196640 +7 662 3 892133739 +196 381 4 881251728 +69 427 3 882145465 +72 196 4 880036747 +256 472 4 882152471 +128 182 4 879967225 +151 747 3 879524564 +7 171 3 891351287 +286 85 5 877533224 +172 220 4 875537441 +308 516 4 887736743 +190 974 2 891625949 +82 756 1 878768741 +308 436 4 887739257 +59 235 1 888203658 +64 1063 3 889739539 +145 756 2 885557506 +220 298 4 881198966 +21 324 4 874950889 +285 269 4 890595313 +207 65 3 878104594 +198 658 3 884208173 +220 333 3 881197771 +210 70 4 887730589 +181 14 1 878962392 +158 128 2 880134296 +143 682 3 888407741 +75 237 2 884050309 +199 221 4 883782854 +223 1150 2 891549841 +297 25 4 874954497 +276 78 4 877934828 +299 847 4 877877649 +293 325 2 888904353 +301 138 2 882079446 +1 47 4 875072125 +164 281 4 889401906 +96 673 4 884402860 +291 1016 4 874833827 +7 451 5 891353892 +233 177 4 877661496 +6 517 4 883602212 +202 283 3 879727153 +214 117 4 891543241 +184 602 4 889909691 +277 257 3 879543487 +194 212 1 879524216 +95 68 4 879196231 +25 257 4 885853415 +6 23 4 883601365 +38 573 1 892433660 +313 436 4 891029877 +22 241 3 878888025 +262 617 3 879793715 +130 569 3 880396494 +66 181 5 883601425 +21 948 1 874951054 +181 1332 1 878962278 +262 174 3 879791948 +206 302 5 888180227 +222 22 5 878183285 +76 61 4 875028123 +151 703 4 879542460 +314 28 5 877888346 +13 147 3 882397502 +44 258 4 878340824 +303 418 4 879483510 +16 89 2 877717833 +270 558 5 876954927 +248 117 5 884535433 +125 318 5 879454309 +138 523 5 879024043 +268 386 2 875743978 +291 15 5 874833668 +234 147 3 892335372 +239 96 5 889178798 +15 331 3 879455166 +94 155 2 891723807 +136 89 4 882848925 +223 423 3 891550684 +82 194 4 878770027 +145 355 3 888396967 +280 845 3 891700925 +179 339 1 892151366 +178 199 4 882826306 +307 949 4 877123315 +10 488 5 877888613 +116 331 3 876451911 +23 258 5 876785704 +308 174 4 887736696 +185 114 4 883524320 +188 237 3 875073648 +118 654 5 875385007 +246 721 4 884921794 +234 98 4 892078567 +194 239 3 879522917 +94 24 4 885873423 +122 378 4 879270769 +312 100 4 891698613 +262 64 5 879793022 +154 242 3 879138235 +223 763 3 891550067 +99 403 4 885680374 +83 43 4 880308690 +130 307 4 877984546 +174 402 5 886513729 +256 487 5 882164231 +59 177 4 888204349 +161 168 1 891171174 +244 53 3 880607489 +250 196 4 878091818 +43 40 3 883956468 +285 150 5 890595636 +42 953 2 881108815 +97 670 5 884239744 +122 510 4 879270327 +61 323 3 891206450 +222 106 2 883816184 +4 264 3 892004275 +304 259 1 884967253 +37 403 5 880915942 +49 68 1 888069513 +303 1098 4 879467959 +165 372 5 879525987 +176 324 5 886047292 +3 335 1 889237269 +56 869 3 892683895 +44 15 4 878341343 +190 117 4 891033697 +29 189 4 882821942 +94 174 4 885870231 +130 949 3 876251944 +117 181 5 880124648 +303 779 1 879543418 +19 435 5 885412840 +194 191 4 879521856 +158 24 4 880134261 +56 447 4 892679067 +262 223 3 879791816 +181 1334 1 878962240 +214 137 4 891543227 +92 747 4 875656164 +188 96 5 875073128 +58 173 5 884305353 +244 154 5 880606385 +134 879 4 891732393 +298 625 4 884183406 +254 230 4 886472400 +230 138 3 880485197 +16 209 5 877722736 +151 835 5 879524199 +181 1327 1 878963305 +145 1248 3 875272195 +200 588 5 884128499 +248 257 3 884535840 +297 432 4 875239658 +312 133 5 891699296 +151 12 5 879524368 +110 568 3 886988449 +305 483 5 886323068 +141 258 5 884584338 +44 240 4 878346997 +186 263 3 879023571 +214 213 4 891544414 +233 208 4 880610814 +104 287 2 888465347 +312 153 2 891699491 +1 222 4 878873388 +206 323 1 888179833 +230 419 4 880484587 +56 450 3 892679374 +94 651 5 891725332 +205 316 4 888284710 +14 174 5 890881294 +268 790 2 876513785 +276 1081 3 880913705 +83 929 3 880307140 +268 580 3 875309344 +222 1041 3 881060155 +279 89 4 875306910 +5 424 1 875635807 +112 331 4 884992603 +296 429 5 884197330 +18 202 3 880130515 +13 868 5 882139901 +87 210 5 879875734 +10 285 5 877889186 +181 328 3 878961227 +23 463 4 874785843 +253 746 3 891628630 +234 228 3 892079190 +299 1047 2 877880041 +66 1 3 883601324 +216 174 5 881432488 +290 208 3 880475245 +79 1161 2 891271697 +264 448 2 886122031 +4 303 5 892002352 +144 831 3 888104805 +138 517 4 879024279 +64 433 2 889740286 +5 1 4 875635748 +276 357 5 874787526 +62 433 5 879375588 +239 475 5 889178689 +293 166 3 888905520 +130 234 5 875216932 +264 70 4 886123596 +208 197 5 883108797 +24 763 5 875322875 +279 1162 3 875314334 +3 245 1 889237247 +101 596 3 877136564 +162 1019 4 877636556 +223 908 1 891548802 +99 246 3 888469392 +239 430 3 889180338 +160 160 5 876862078 +172 580 4 875538028 +303 1160 2 879544629 +54 676 5 880935294 +44 507 3 878347392 +210 97 5 887736454 +164 930 4 889402340 +299 240 2 877878414 +28 217 3 881961671 +305 79 3 886324276 +18 729 3 880131236 +82 343 1 884713755 +109 1012 4 880564570 +207 25 4 876079113 +92 1209 1 875660468 +109 1 4 880563619 +15 222 3 879455730 +58 709 5 884304812 +303 693 4 879466771 +152 111 5 880148782 +194 160 2 879551380 +92 241 3 875655961 +77 91 3 884752924 +244 662 3 880606533 +177 321 2 880130481 +131 221 3 883681561 +197 302 3 891409070 +227 50 4 879035347 +85 282 3 879829618 +295 72 4 879518714 +181 1 3 878962392 +277 255 4 879544145 +279 96 4 875310606 +1 253 5 874965970 +18 182 4 880130640 +276 568 4 882659211 +87 177 5 879875940 +177 69 1 880131088 +213 13 4 878955139 +125 134 5 879454532 +128 739 4 879969349 +291 428 5 874871766 +25 208 4 885852337 +288 272 5 889225463 +207 1350 2 877878772 +271 56 3 885848559 +5 363 3 875635225 +274 748 5 878944406 +70 419 5 884065035 +311 559 2 884366187 +151 919 5 879524368 +199 268 5 883782509 +201 209 3 884112801 +99 274 1 885679157 +11 740 4 891903067 +59 77 4 888206254 +184 277 3 889907971 +222 88 4 878183336 +38 161 5 892432062 +59 418 2 888205188 +104 300 3 888442275 +298 1346 3 884126061 +180 1119 3 877128156 +7 674 2 891352659 +121 14 5 891390014 +268 1041 1 875743735 +252 277 4 891456797 +303 411 4 879483802 +210 527 5 887736232 +234 648 3 892826760 +312 573 5 891712535 +308 215 3 887737483 +234 1397 4 892334976 +75 546 3 884050422 +117 15 5 880125887 +246 239 3 884921380 +64 516 5 889737376 +85 187 5 879454235 +239 81 3 889179808 +59 54 4 888205921 +256 220 3 882151690 +216 196 5 880245145 +203 282 1 880434919 +13 195 3 881515296 +144 153 5 888105823 +100 268 3 891374982 +210 274 5 887730676 +94 471 4 891721642 +13 807 1 886304229 +125 657 3 892836422 +65 1142 4 879217349 +1 113 5 878542738 +76 175 4 875028853 +294 508 4 877819532 +263 1451 4 891299949 +294 930 3 889242704 +121 117 1 891388600 +85 13 3 879452866 +303 426 3 879542535 +212 180 1 879303974 +6 492 5 883601089 +181 240 1 878963122 +279 746 5 875310233 +303 1109 4 879467936 +184 191 4 889908716 +310 116 5 879436104 +313 22 3 891014870 +314 1150 4 877887002 +13 121 5 882397503 +43 5 4 875981421 +58 214 2 884305296 +215 164 3 891436633 +62 288 2 879371909 +280 127 5 891702544 +161 898 3 891170191 +11 723 5 891904637 +94 218 3 891721851 +35 243 2 875459046 +311 566 4 884366112 +48 680 3 879434330 +85 604 4 882995132 +288 527 3 886373565 +184 514 5 889908497 +151 929 3 879543457 +90 690 4 891383319 +11 38 3 891905936 +104 1016 1 888466002 +106 582 4 881451199 +181 1010 1 878962774 +37 117 4 880915674 +276 845 4 874786807 +22 258 5 878886261 +70 82 4 884068075 +5 98 3 875720691 +308 95 4 887737130 +60 208 5 883326028 +270 778 5 876955711 +243 208 4 879989134 +92 540 2 875813197 +81 280 4 876534214 +293 412 1 888905377 +200 478 5 884128788 +13 308 3 881514726 +56 184 4 892679088 +116 250 4 876452606 +295 172 4 879516986 +63 1007 5 875747368 +295 235 4 879517943 +104 1010 1 888465554 +156 641 5 888185677 +269 1165 1 891446904 +160 430 5 876861799 +237 191 4 879376773 +287 252 1 875334361 +290 132 3 880473993 +45 109 5 881012356 +224 678 3 888082277 +145 764 2 888398257 +277 1011 3 879543697 +65 100 3 879217558 +272 1101 5 879454977 +116 255 3 876452524 +184 86 5 889908694 +285 151 5 890595636 +222 148 2 881061164 +72 28 4 880036824 +271 187 5 885848343 +94 211 5 891721142 +246 425 5 884921918 +115 8 5 881171982 +176 327 3 886047176 +13 396 3 882141727 +129 331 2 883244737 +257 1260 2 880496892 +95 1 5 879197329 +147 904 5 885594015 +151 58 4 879524849 +184 660 3 889909962 +311 386 3 884365747 +105 268 4 889214268 +158 510 3 880134296 +34 312 4 888602742 +72 427 5 880037702 +263 416 5 891299697 +94 1048 4 891722678 +200 291 3 891825292 +45 118 4 881014550 +279 144 4 880850073 +145 22 5 875273021 +71 89 5 880864462 +182 69 5 876435435 +193 627 4 889126972 +214 302 4 892668197 +151 485 5 879525002 +102 322 3 883277645 +234 571 2 892318158 +249 930 2 879640585 +195 328 4 884420059 +109 258 5 880562908 +222 552 2 878184596 +282 288 4 879949367 +117 758 2 881011217 +23 381 4 874787350 +112 327 1 884992535 +303 145 1 879543573 +252 300 4 891448664 +151 372 5 879524819 +282 327 5 879949417 +304 237 5 884968415 +290 568 3 880474716 +64 160 4 889739288 +28 79 4 881961003 +168 1278 3 884287560 +265 471 4 875320302 +18 113 5 880129628 +83 82 5 887665423 +90 499 5 891383866 +234 1186 4 892335707 +87 196 5 879877681 +26 685 3 891371676 +150 129 4 878746946 +161 98 4 891171357 +70 210 4 884065854 +51 182 3 883498790 +222 1057 4 881061370 +92 176 5 875652981 +204 216 4 892513864 +164 685 5 889402160 +57 682 3 883696824 +184 207 4 889908903 +60 403 3 883327087 +92 180 5 875653016 +43 204 4 883956122 +222 1042 4 878184514 +197 300 4 891409422 +92 790 3 875907618 +294 282 3 877821796 +201 747 2 884113635 +201 215 2 884140382 +193 410 3 889127633 +271 705 4 885849052 +214 693 3 891544414 +73 657 5 888625422 +90 187 4 891383561 +315 273 3 879821349 +48 309 3 879434132 +255 472 1 883216958 +270 671 4 876956360 +66 7 3 883601355 +6 478 4 883602762 +101 222 3 877136243 +207 1046 4 875509787 +144 182 3 888105743 +85 83 4 886282959 +102 625 3 883748418 +158 770 5 880134477 +297 588 4 875238579 +90 507 5 891383987 +271 482 5 885848519 +130 901 1 884624044 +178 276 3 882823978 +90 245 3 891382612 +181 1094 1 878963086 +311 143 3 884364812 +267 17 4 878971773 +201 51 2 884140751 +194 647 4 879521531 +59 387 3 888206562 +1 227 4 876892946 +116 751 3 890131577 +170 292 5 884103732 +110 578 3 886988536 +60 1021 5 883326185 +287 347 4 888177040 +197 55 3 891409982 +38 679 5 892432062 +195 1014 4 879673925 +279 227 4 889326161 +84 748 4 883449530 +31 886 2 881547877 +316 98 5 880853743 +25 25 5 885853415 +168 274 4 884287865 +103 24 4 880415847 +299 588 4 877880852 +194 478 3 879521329 +287 294 5 875333873 +234 582 4 892334883 +279 1048 1 886015533 +87 9 4 879877931 +181 408 1 878962550 +279 1151 2 875744584 +49 47 5 888068715 +296 855 5 884197352 +44 95 4 878347569 +92 216 3 875653867 +135 39 3 879857931 +13 66 3 882141485 +262 386 3 879795512 +7 676 3 891354499 +116 942 3 876454090 +318 474 4 884495742 +141 826 2 884585437 +269 13 4 891446662 +222 1044 4 881060578 +82 455 4 876311319 +279 254 3 879572960 +42 685 4 881105972 +145 1245 5 875271397 +184 161 2 889909640 +49 625 3 888067031 +177 243 1 882142141 +313 99 4 891014029 +32 290 3 883717913 +308 848 4 887736925 +145 448 5 877343121 +130 542 3 875801778 +130 806 3 875217096 +165 288 2 879525673 +249 255 3 879571752 +49 581 3 888068143 +195 300 3 890588925 +118 475 5 875384793 +130 316 4 888211794 +104 293 3 888465166 +201 1229 3 884140307 +142 82 4 888640356 +119 718 5 874774956 +303 94 3 879485318 +99 50 5 885679998 +306 14 5 876503995 +92 709 2 875654590 +227 295 5 879035387 +3 337 1 889236983 +94 820 1 891723186 +59 1107 4 888206254 +30 539 3 885941454 +262 821 3 879794887 +6 508 3 883599530 +311 716 4 884365718 +268 364 3 875743979 +262 553 4 879795122 +214 275 3 891542968 +16 56 5 877719863 +262 293 2 879790906 +293 132 4 888905481 +62 132 5 879375022 +94 346 4 891725410 +13 59 4 882140425 +240 313 5 885775604 +102 161 2 888801876 +83 301 2 891181430 +291 7 5 874834481 +312 28 4 891698300 +31 484 5 881548030 +291 70 4 874868146 +56 172 5 892737191 +109 588 4 880578388 +110 1246 2 886989613 +59 429 4 888204597 +246 1218 3 884922801 +65 196 5 879216637 +24 367 2 875323241 +92 115 3 875654125 +308 741 4 887739863 +301 660 4 882076782 +214 1129 4 892668249 +158 241 4 880134445 +269 674 2 891451754 +308 493 3 887737293 +32 151 3 883717850 +224 191 4 888082468 +215 423 5 891435526 +32 1012 4 883717581 +154 289 2 879138345 +201 509 3 884111546 +85 298 4 880581629 +180 68 5 877127721 +184 36 3 889910195 +188 218 5 875074667 +305 11 1 886323237 +144 508 4 888104150 +73 94 1 888625754 +194 205 3 879524291 +177 203 4 880131026 +276 273 4 874786517 +198 7 4 884205317 +108 290 4 879880076 +189 197 5 893265291 +73 56 4 888626041 +172 462 3 875537717 +120 546 2 889490979 +101 471 3 877136535 +5 102 3 875721196 +26 235 2 891372429 +268 1249 2 875743793 +276 773 3 874792794 +13 150 5 882140588 +7 401 4 891354257 +128 482 4 879967432 +104 7 3 888465972 +293 39 3 888906804 +256 25 5 882150552 +90 821 3 891385843 +275 69 3 880314089 +22 510 5 878887765 +312 494 5 891698454 +207 192 3 877822350 +264 504 5 886122577 +137 687 4 881432756 +185 740 4 883524475 +307 687 1 879114143 +42 176 3 881107178 +145 472 3 875271128 +189 634 3 893265506 +262 121 3 879790536 +251 148 2 886272547 +259 772 4 874724882 +239 58 5 889179623 +312 921 5 891699295 +92 15 3 875640189 +81 742 2 876533764 +311 419 3 884364931 +102 448 3 888803002 +249 746 5 879641209 +95 527 4 888954440 +19 655 3 885412723 +79 100 5 891271652 +189 751 4 893265046 +253 510 5 891628416 +201 919 3 884141208 +1 17 3 875073198 +214 42 5 892668130 +7 81 5 891352626 +234 132 4 892333865 +59 148 3 888203175 +13 354 2 888779458 +6 469 5 883601155 +82 14 4 876311280 +109 627 5 880582133 +305 50 5 886321799 +195 154 3 888737525 +277 279 4 879543592 +223 8 2 891550684 +92 81 3 875654929 +201 69 2 884112901 +94 58 5 891720540 +217 144 4 889069782 +244 148 2 880605071 +313 200 3 891017736 +181 874 1 878961749 +116 1216 3 876452582 +303 433 4 879467985 +117 151 4 880126373 +221 327 4 875243968 +46 307 3 883611430 +91 28 4 891439243 +151 317 5 879524610 +64 176 4 889737567 +90 553 2 891384959 +116 271 4 886310197 +291 1139 3 874871671 +62 111 3 879372670 +196 251 3 881251274 +303 120 2 879544099 +49 547 5 888066187 +307 1022 4 879283008 +303 176 5 879467260 +286 154 4 877533381 +291 501 4 875087100 +235 87 4 889655162 +254 379 1 886474650 +276 157 5 874790773 +135 1208 3 879858003 +57 243 3 883696547 +276 1157 2 874795772 +7 576 5 892132943 +250 404 4 878092144 +318 768 2 884498022 +234 808 2 892335707 +289 282 3 876789180 +87 1079 2 879877240 +50 823 3 877052784 +25 258 5 885853199 +18 496 5 880130470 +193 790 3 889127381 +263 510 4 891298392 +209 906 2 883589546 +207 716 3 875508783 +314 535 4 877887002 +250 338 4 883263374 +262 568 3 879794113 +95 172 4 879196847 +94 470 4 891722006 +59 583 5 888205921 +277 282 4 879543697 +303 1286 4 879467413 +271 714 3 885848863 +269 235 3 891446756 +148 140 1 877019882 +223 977 2 891550295 +210 357 5 887736206 +185 199 4 883526268 +174 80 1 886515210 +235 480 4 889655044 +276 939 3 874790855 +99 354 2 888469332 +308 163 4 887737084 +303 738 2 879544276 +224 873 2 888082187 +298 252 4 884183833 +44 208 4 878347420 +315 13 4 879821158 +215 197 4 891435357 +269 9 4 891446246 +42 195 5 881107949 +293 79 3 888906045 +246 68 5 884922341 +101 405 4 877137015 +92 665 3 875906853 +249 88 4 879572668 +60 525 5 883325944 +13 331 3 881515457 +271 750 4 885844698 +92 731 4 875653769 +254 188 3 886473672 +311 203 5 884365201 +263 197 4 891299752 +201 660 3 884140927 +279 79 3 875296461 +138 496 4 879024043 +209 251 5 883417810 +217 7 4 889069741 +261 340 5 890454045 +176 258 4 886047026 +303 1037 3 879544340 +81 169 4 876534751 +62 114 4 879373568 +72 530 4 880037164 +276 364 3 877935377 +88 750 2 891037276 +49 7 4 888067307 +263 117 3 891299387 +9 298 5 886960055 +92 528 4 875657681 +249 708 4 879572403 +262 754 3 879961283 +196 655 5 881251793 +207 1436 3 878191574 +256 771 2 882164999 +276 226 4 874792520 +134 313 5 891732150 +311 849 3 884365781 +181 1383 1 878962086 +203 148 3 880434755 +247 736 5 893097024 +313 745 3 891016583 +311 83 5 884364812 +251 1014 5 886272486 +227 411 4 879035897 +59 550 5 888206605 +201 206 2 884112029 +58 100 5 884304553 +249 723 4 879641093 +286 1316 5 884583549 +11 725 3 891905568 +7 228 4 891350845 +92 846 3 886443471 +160 56 5 876770222 +103 127 4 880416331 +11 110 3 891905324 +87 2 4 879876074 +45 763 2 881013563 +293 605 3 888907702 +291 732 4 874868097 +254 575 3 886476165 +49 334 4 888065744 +222 1284 4 878184422 +161 162 2 891171413 +268 1 3 875742341 +59 215 5 888204430 +177 209 4 880130736 +151 1298 4 879528520 +299 235 1 877878184 +29 332 4 882820869 +30 435 5 885941156 +297 182 3 875239125 +315 185 4 879821267 +23 172 4 874785889 +262 47 2 879794599 +321 496 4 879438607 +191 754 3 891560366 +106 778 4 881453040 +7 151 4 891352749 +178 678 3 882823530 +84 12 5 883452874 +94 168 5 891721378 +264 33 3 886122644 +239 529 5 889179808 +90 657 5 891385190 +261 875 5 890454351 +190 302 5 891033606 +112 289 5 884992690 +144 106 3 888104684 +199 258 4 883782403 +224 20 1 888104487 +85 501 3 880838306 +301 202 5 882076211 +145 743 1 888398516 +294 127 5 877819265 +130 206 3 875801695 +103 121 3 880415766 +152 412 2 880149328 +267 840 4 878970926 +286 231 3 877532094 +200 24 2 884127370 +5 211 4 875636631 +160 117 4 876767822 +6 357 4 883602422 +158 72 3 880135118 +297 736 4 875239975 +250 244 4 878089786 +57 760 2 883697617 +58 268 5 884304288 +23 1006 3 874785809 +301 1228 4 882079423 +307 265 3 877122816 +276 1095 1 877935135 +223 411 1 891550005 +92 24 3 875640448 +137 300 5 881432524 +164 117 5 889401816 +276 38 3 874792574 +213 294 3 878870226 +286 34 5 877534701 +232 197 4 888549563 +150 221 4 878747017 +21 103 1 874951245 +130 731 3 876251922 +222 441 2 881059920 +1 90 4 878542300 +189 1005 4 893265971 +49 38 1 888068289 +311 5 3 884365853 +36 307 4 882157227 +128 228 3 879969329 +151 89 5 879524491 +248 475 5 884535446 +95 1229 2 879198800 +213 609 4 878955533 +203 181 5 880434278 +308 863 3 887736881 +269 47 4 891448386 +198 100 1 884207325 +297 307 4 878771124 +305 189 5 886323303 +266 676 3 892257897 +197 229 3 891410039 +74 272 5 888333194 +127 294 4 884363803 +194 4 4 879521397 +177 56 5 880130618 +45 473 3 881014417 +57 28 4 883698324 +239 187 5 889178798 +268 94 2 875743630 +238 252 3 883576644 +201 1010 3 884140579 +131 1281 4 883681561 +270 97 4 876955633 +159 127 5 880989744 +230 202 4 880485352 +92 219 4 875654888 +318 356 4 884496671 +123 531 3 879872671 +267 403 4 878971939 +232 630 3 888550060 +5 382 5 875636587 +16 155 3 877719157 +180 762 4 877126241 +178 282 3 882823978 +319 313 5 889816026 +180 737 3 877128327 +270 736 5 876955087 +269 658 2 891448497 +293 496 5 888905840 +269 793 4 891449880 +54 685 3 880935504 +21 98 5 874951657 +303 209 5 879467328 +13 766 4 882139686 +314 95 5 877888168 +151 387 5 879542353 +230 378 5 880485159 +201 403 3 884112427 +95 1206 4 888956137 +270 370 5 876956232 +256 716 5 882165135 +80 582 3 887401701 +303 435 5 879466491 +312 121 3 891698174 +151 1006 1 879524974 +62 258 5 879371909 +189 1115 4 893264270 +77 195 5 884733695 +99 742 5 885679114 +291 1028 3 875086561 +293 748 2 888904327 +181 1342 1 878962168 +206 900 1 888179980 +83 338 4 883868647 +262 179 4 879962570 +253 216 4 891628252 +223 596 3 891549713 +108 50 4 879879739 +94 347 5 891724950 +293 779 1 888908066 +101 281 2 877136842 +267 980 3 878970578 +201 1245 4 884141015 +314 1263 2 877890611 +271 111 4 885847956 +314 276 1 877886413 +18 387 4 880130155 +207 4 4 876198457 +313 96 5 891015144 +21 299 1 874950931 +215 144 4 891435107 +279 1376 4 886016680 +234 1015 2 892079617 +296 248 5 884196765 +270 83 4 876954995 +210 161 5 887736393 +201 79 4 884112245 +5 376 2 879198045 +184 181 4 889907426 +104 411 1 888465739 +275 449 3 876198328 +185 269 5 883524428 +276 550 4 874792574 +279 1182 3 875314370 +216 69 5 880235229 +21 457 1 874951054 +16 471 3 877724845 +147 292 5 885594040 +291 250 4 874805927 +28 95 3 881956917 +29 539 2 882821044 +291 471 4 874833746 +7 580 3 892132171 +181 16 1 878962996 +297 218 3 875409827 +308 559 4 887740367 +87 211 5 879876812 +97 89 5 884238939 +21 596 3 874951617 +59 710 3 888205463 +238 756 3 883576476 +178 209 4 882826944 +186 470 5 879023693 +299 615 4 878192555 +10 504 5 877892110 +110 682 4 886987354 +109 101 1 880578186 +157 250 1 886890296 +267 386 3 878973597 +181 327 3 878961780 +207 87 4 884386260 +47 995 3 879440429 +148 114 5 877016735 +94 9 5 885872684 +60 222 4 883327441 +244 409 4 880605294 +276 246 4 874786686 +90 906 2 891382240 +234 20 4 891227979 +106 107 4 883876961 +216 697 4 883981700 +294 1199 2 889242142 +323 257 2 878739393 +140 268 4 879013684 +220 303 4 881198014 +67 64 5 875379211 +170 299 3 886190476 +230 142 4 880485633 +299 641 4 889501514 +7 581 5 891353477 +275 501 3 875154718 +44 250 5 878346709 +291 214 4 874868146 +11 741 5 891902745 +59 286 3 888202532 +174 395 1 886515154 +194 234 3 879521167 +57 204 4 883698272 +314 417 4 877888855 +201 197 4 884113422 +184 155 3 889912656 +194 792 4 879524504 +159 1037 2 884360502 +186 983 3 879023152 +181 979 2 878963241 +68 7 3 876974096 +286 721 3 877532329 +316 306 4 880853072 +280 781 4 891701699 +13 14 4 884538727 +211 127 4 879461498 +187 215 3 879465805 +71 134 3 885016614 +306 242 5 876503793 +64 684 4 889740199 +303 277 3 879468547 +198 135 5 884208061 +232 91 5 888549515 +98 47 4 880498898 +53 24 3 879442538 +299 971 2 889502353 +254 1116 3 886473448 +7 106 4 891353892 +12 300 4 879958639 +239 10 5 889180338 +238 111 4 883576603 +130 267 5 875801239 +90 662 5 891385842 +63 20 3 875748004 +40 268 4 889041430 +181 221 1 878962465 +298 152 3 884183336 +104 327 2 888442202 +42 185 4 881107449 +181 995 1 878961585 +258 288 1 885700919 +291 578 4 874835242 +148 70 5 877021271 +305 187 4 886323189 +184 71 4 889911552 +94 556 3 891722882 +158 1011 4 880132579 +7 528 5 891352659 +174 237 4 886434047 +158 190 5 880134332 +201 853 4 884114635 +276 43 1 874791383 +278 311 4 891295130 +229 347 1 891632073 +101 252 3 877136628 +63 1028 3 875748198 +275 520 4 880314218 +275 173 3 875154795 +62 1073 4 879374752 +230 234 4 880484756 +109 975 3 880572351 +73 357 5 888626007 +83 118 3 880307071 +4 361 5 892002353 +130 245 1 874953526 +64 778 5 889739806 +15 473 1 879456204 +244 89 5 880602210 +7 643 4 891350932 +219 347 1 889386819 +295 704 5 879519266 +293 288 3 888904327 +125 997 2 892838976 +279 487 3 890282182 +76 582 3 882607444 +272 48 4 879455143 +269 285 5 891446165 +244 380 4 880608133 +271 220 3 885848179 +321 287 3 879438857 +306 864 3 876504286 +224 332 3 888103429 +57 1047 4 883697679 +145 591 4 879161848 +85 277 2 879452938 +116 7 2 876453915 +52 95 4 882922927 +209 688 1 883589626 +145 260 4 875269871 +208 202 4 883108476 +160 187 5 876770168 +141 274 5 884585220 +260 990 5 890618729 +177 299 4 880130500 +82 231 2 878769815 +223 969 5 891550649 +107 271 2 891264432 +26 25 3 891373727 +297 1016 3 874955131 +244 167 3 880607853 +15 678 1 879455311 +286 709 4 877532748 +82 411 3 878768902 +167 364 3 892738212 +99 181 5 885680138 +56 196 2 892678628 +293 346 3 888904004 +7 650 3 891350965 +90 425 4 891384996 +228 475 3 889388521 +82 919 3 876311280 +43 151 4 875975613 +10 289 4 877886223 +197 515 5 891409935 +57 756 3 883697730 +246 82 2 884921986 +62 24 4 879372633 +323 223 4 878739699 +13 320 1 882397010 +268 63 1 875743792 +18 863 3 880130680 +271 410 2 885848238 +307 509 3 877121019 +54 298 4 892681300 +295 47 5 879518166 +194 237 3 879538959 +194 82 2 879524216 +311 385 5 884365284 +287 257 4 875334224 +290 82 4 880473918 +262 96 4 879793022 +279 491 5 875296435 +290 393 3 880475169 +145 393 5 875273174 +305 61 4 886323378 +269 156 5 891449364 +276 180 5 874787353 +323 298 4 878739275 +296 258 5 884196469 +18 965 4 880132012 +72 528 4 880036664 +224 949 3 888104057 +125 239 5 892838375 +244 652 5 880606533 +135 431 2 879857868 +138 211 4 879024183 +59 604 3 888204927 +221 1059 4 875245077 +13 451 1 882141872 +42 69 4 881107375 +10 340 4 880371312 +219 882 3 889386741 +60 604 4 883327997 +125 152 1 879454892 +63 50 4 875747292 +255 448 3 883216544 +311 172 5 884364763 +7 582 5 892135347 +7 127 5 891351728 +189 203 3 893265921 +59 470 3 888205714 +313 148 2 891031979 +234 161 3 892335824 +6 143 2 883601053 +305 960 1 886324362 +226 147 3 883889479 +204 340 5 892389195 +13 493 5 882140206 +186 281 4 879023390 +6 275 4 883599102 +269 82 2 891450780 +69 300 3 882027204 +259 959 4 888720593 +5 62 4 875637575 +181 1164 3 878962464 +135 449 3 879857843 +222 1207 2 881060659 +5 231 2 875635947 +286 258 4 877530390 +104 249 3 888465675 +303 65 4 879467436 +295 73 4 879519009 +201 686 2 884112352 +13 289 2 882140759 +184 100 5 889907652 +262 786 3 879795319 +234 614 3 892334609 +1 64 5 875072404 +325 485 3 891478599 +312 641 5 891698300 +207 810 2 877125506 +262 509 3 879792818 +239 478 5 889178986 +142 181 5 888640317 +296 242 4 884196057 +291 571 2 875086608 +13 488 3 890704999 +294 676 3 877821514 +69 174 5 882145548 +195 265 4 888737346 +121 509 5 891388145 +279 509 3 875296552 +49 17 2 888068651 +7 196 5 891351432 +280 472 2 891702086 +221 780 3 875246552 +175 96 3 877108051 +180 431 4 877442098 +311 1222 3 884366010 +44 120 4 878346977 +318 257 5 884471030 +59 588 2 888204389 +320 117 4 884748641 +256 939 5 882164893 +310 24 4 879436242 +236 265 2 890116191 +83 139 3 880308959 +280 128 3 891701188 +43 52 4 883955224 +18 494 3 880131497 +303 87 3 879466421 +91 427 4 891439057 +318 631 4 884496855 +275 258 3 875154310 +97 482 5 884238693 +174 160 5 886514377 +268 470 3 875310745 +188 769 2 875074720 +94 89 3 885870284 +7 44 5 891351728 +158 85 4 880135118 +256 765 4 882165328 +221 69 4 875245641 +196 67 5 881252017 +232 175 5 888549815 +159 685 4 880557347 +99 182 4 886518810 +175 71 4 877107942 +254 624 2 886473254 +326 22 4 879874989 +303 291 3 879484804 +270 53 4 876956106 +181 1001 1 878963038 +254 418 3 886473078 +56 235 1 892911348 +11 190 3 891904174 +162 181 4 877635798 +117 829 3 881010219 +268 52 3 875309319 +320 177 5 884749360 +6 294 2 883599938 +210 380 4 887736482 +151 969 5 879542510 +42 684 4 881108093 +62 365 2 879376096 +207 121 3 875504876 +59 70 3 888204758 +26 455 3 891371506 +234 705 5 892318002 +270 466 5 876955899 +97 484 3 884238966 +11 660 3 891904573 +5 377 1 878844615 +56 797 4 892910860 +305 923 5 886323237 +173 286 5 877556626 +67 1095 4 875379287 +213 12 5 878955409 +268 684 3 875744321 +36 883 5 882157581 +100 321 1 891375112 +269 729 2 891448569 +131 100 5 883681418 +308 298 5 887741383 +14 709 5 879119693 +284 305 4 885328906 +191 752 3 891560481 +222 29 3 878184571 +201 421 2 884111708 +207 864 3 877750738 +303 1315 3 879544791 +52 1086 4 882922562 +305 529 5 886324097 +223 318 4 891550711 +22 79 4 878887765 +137 546 5 881433116 +292 328 3 877560833 +249 11 5 879640868 +269 616 4 891450453 +197 294 4 891409290 +42 603 4 881107502 +26 1016 3 891377609 +7 560 3 892132798 +193 435 4 889124439 +7 559 5 891354882 +299 186 3 889503233 +115 127 5 881171760 +59 433 5 888205982 +217 22 5 889069741 +279 709 4 875310195 +257 345 4 887066556 +279 789 4 875306580 +279 919 3 892864663 +63 222 3 875747635 +178 73 5 882827985 +90 1194 4 891383718 +111 313 4 891679901 +13 848 5 882140001 +94 625 4 891723086 +59 496 4 888205144 +179 905 4 892151331 +303 302 4 879465986 +299 516 4 889503159 +10 505 4 877886846 +62 464 4 879375196 +56 69 4 892678893 +92 289 3 875641367 +308 378 3 887740700 +13 144 4 882397146 +181 1348 1 878962200 +15 932 1 879456465 +244 155 3 880608599 +234 233 2 892335990 +15 127 2 879455505 +110 1179 2 886989501 +181 302 2 878961511 +236 313 4 890115777 +310 536 4 879436137 +37 55 3 880915942 +234 617 3 892078741 +303 369 1 879544130 +75 409 3 884050829 +197 518 1 891409982 +314 692 5 877888445 +187 523 3 879465125 +151 402 3 879543423 +268 264 3 876513607 +224 215 4 888082612 +292 195 5 881103568 +16 191 5 877719454 +99 597 4 885679210 +234 482 4 892334803 +303 323 1 879466214 +233 99 3 877663383 +66 249 4 883602158 +280 204 3 891700643 +301 174 5 882075827 +92 1142 4 886442422 +99 410 5 885679262 +221 1250 2 875247855 +97 98 4 884238728 +313 673 4 891016622 +58 109 4 884304396 +270 781 5 876955750 +13 476 2 882141997 +189 1 5 893264174 +67 147 3 875379357 +234 50 4 892079237 +40 880 3 889041643 +294 222 4 877819353 +293 629 3 888907753 +7 241 4 891354053 +87 775 2 879876848 +314 1289 2 877887388 +131 750 5 883681723 +296 48 5 884197091 +81 3 4 876592546 +151 186 4 879524222 +57 926 3 883697831 +234 134 5 892333573 +53 174 5 879442561 +280 544 4 891701302 +123 135 5 879872868 +109 797 3 880582856 +96 479 4 884403758 +236 286 5 890115777 +201 313 5 884110598 +174 471 5 886433804 +130 931 2 880396881 +151 15 4 879524879 +90 529 5 891385132 +59 12 5 888204260 +3 343 3 889237122 +310 845 5 879436534 +224 658 1 888103840 +4 357 4 892003525 +25 615 5 885852611 +11 517 2 891905222 +298 91 2 884182932 +59 170 4 888204430 +147 305 4 885593997 +314 1518 4 877891426 +256 413 4 882163956 +234 618 3 892078343 +246 8 3 884921245 +255 678 2 883215795 +92 106 3 875640609 +272 127 5 879454725 +104 269 5 888441878 +276 406 2 874786831 +276 34 2 877934264 +97 50 5 884239471 +150 121 2 878747322 +14 530 5 890881433 +23 170 4 874785348 +13 97 4 882399357 +165 325 4 879525672 +244 7 4 880602558 +95 416 4 888954961 +28 98 5 881961531 +259 269 3 877923906 +82 596 3 876311195 +28 173 3 881956220 +94 455 3 891721777 +276 384 3 874792189 +298 8 5 884182748 +151 210 4 879524419 +77 238 5 884733965 +200 241 4 884129782 +201 405 4 884112427 +193 332 3 889123257 +38 139 2 892432786 +291 226 5 874834895 +113 326 5 875935609 +313 191 5 891013829 +207 531 4 877878342 +214 151 5 892668153 +44 123 4 878346532 +18 154 4 880131358 +297 628 4 874954497 +279 116 1 888799670 +7 28 5 891352341 +115 92 4 881172049 +308 581 4 887740500 +62 138 1 879376709 +81 824 3 876534437 +293 1161 2 888905062 +13 781 3 882399528 +13 338 1 882140740 +41 28 4 890687353 +280 554 1 891701998 +287 249 5 875334430 +117 50 5 880126022 +178 106 2 882824983 +201 117 2 884112487 +256 1057 2 882163805 +221 204 4 875246008 +318 659 4 884495868 +262 11 4 879793597 +154 488 4 879138831 +186 385 4 879023894 +303 1095 2 879543988 +302 323 2 879436875 +198 179 4 884209264 +99 168 5 885680374 +229 313 2 891631948 +126 262 4 887854726 +72 226 4 880037307 +109 31 4 880577844 +34 242 5 888601628 +173 323 5 877556926 +156 276 3 888185854 +122 215 4 879270676 +276 583 3 874791444 +224 528 3 888082658 +208 88 5 883108324 +295 483 5 879517348 +279 65 1 875306767 +43 64 5 875981247 +89 197 5 879459859 +308 435 4 887737484 +315 305 5 881017419 +42 1041 4 881109060 +164 299 4 889401383 +7 153 5 891352220 +93 412 2 888706037 +125 1180 3 892838865 +70 50 4 884064188 +177 960 3 880131161 +75 476 1 884050393 +62 401 3 879376727 +130 366 5 876251972 +312 228 3 891699040 +158 414 4 880135118 +279 42 4 875308843 +210 58 4 887730177 +43 66 4 875981506 +151 490 5 879528418 +293 665 2 888908117 +293 36 1 888908041 +102 405 2 888801812 +276 291 3 874791169 +21 839 1 874951797 +194 663 4 879524292 +38 432 1 892430282 +92 453 1 875906882 +311 180 4 884364764 +198 214 4 884208273 +82 661 4 878769703 +267 238 4 878971629 +291 466 5 874834768 +151 692 3 879524669 +60 47 4 883326399 +92 79 4 875653198 +97 115 5 884239525 +314 1218 4 877887525 +319 338 2 879977242 +5 407 3 875635431 +15 685 4 879456288 +99 204 4 885679952 +123 192 5 879873119 +47 340 5 879439078 +222 135 5 878181563 +224 149 1 888103999 +58 284 4 884304519 +320 294 4 884748418 +268 135 4 875309583 +83 640 2 880308550 +106 692 3 881453290 +287 11 5 875335124 +305 186 4 886323902 +181 1320 1 878962279 +49 49 2 888068990 +6 221 4 883599431 +85 647 4 879453844 +128 736 5 879968352 +279 827 1 888426577 +271 630 2 885848943 +303 748 2 879466214 +249 124 5 879572646 +280 693 3 891701027 +207 827 3 876018501 +60 616 3 883327087 +21 184 4 874951797 +286 628 4 875806800 +145 183 5 875272009 +311 28 5 884365140 +25 228 4 885852920 +76 92 4 882606108 +246 406 3 884924749 +201 292 3 884110598 +235 647 4 889655045 +286 133 4 877531730 +48 174 5 879434723 +144 685 3 888105473 +5 24 4 879198229 +85 272 4 893110061 +286 7 4 875807003 +64 93 2 889739025 +151 429 5 879528673 +191 301 4 891561336 +287 56 5 875334759 +96 153 4 884403624 +125 615 3 879454793 +150 100 2 878746636 +93 15 5 888705388 +84 528 5 883453617 +318 50 2 884495696 +13 167 4 882141659 +213 471 3 878870816 +178 234 4 882826783 +128 418 4 879968164 +195 496 4 888737525 +13 570 5 882397581 +276 843 4 874792989 +54 268 5 883963510 +305 347 3 886308111 +14 474 4 890881557 +18 58 4 880130613 +263 921 3 891298727 +289 849 4 876789943 +194 321 3 879520306 +11 746 4 891905032 +298 842 4 884127249 +56 215 5 892678547 +13 844 1 882397010 +38 465 5 892432476 +308 165 3 887736696 +214 652 4 891543972 +102 300 3 875886434 +7 420 5 891353219 +61 328 5 891206371 +307 100 3 879206424 +21 590 1 874951898 +311 68 1 884365824 +95 1230 1 888956901 +303 182 5 879467105 +145 13 5 875270507 +50 253 5 877052550 +194 530 4 879521167 +145 1 3 882181396 +222 157 4 878181976 +7 188 5 891352778 +109 100 4 880563080 +90 631 5 891384570 +7 78 3 891354165 +181 1324 1 878962464 +201 332 2 884110887 +13 685 5 882397582 +82 73 4 878769888 +267 423 3 878972842 +194 1206 1 879554453 +269 106 1 891451947 +99 895 3 885678304 +235 1149 4 889655595 +200 665 4 884130621 +312 188 3 891698793 +145 50 5 885557660 +234 71 3 892334338 +213 48 5 878955848 +244 216 4 880605869 +316 588 1 880853992 +85 175 4 879828912 +124 50 3 890287508 +137 237 4 881432965 +13 567 1 882396955 +151 162 5 879528779 +187 116 5 879464978 +193 554 3 889126088 +49 741 4 888068079 +291 54 4 874834963 +316 292 4 880853072 +271 514 4 885848408 +194 404 3 879522445 +268 721 3 875743587 +277 1197 4 879543768 +301 606 3 882076890 +89 1048 3 879460027 +253 50 4 891628518 +102 732 3 888804089 +311 662 4 884365018 +201 943 3 884114275 +246 816 4 884925218 +172 488 3 875537965 +280 38 3 891701832 +43 1057 2 884029777 +311 661 3 884365075 +59 287 5 888203175 +268 83 4 875309344 +315 651 3 879799457 +145 299 4 875269822 +248 174 3 884534992 +327 191 4 887820828 +268 672 2 875744501 +297 286 5 874953892 +295 151 4 879517635 +13 877 2 882140792 +70 584 3 884150236 +145 460 1 875271312 +275 176 4 880314320 +48 259 4 879434270 +235 419 5 889655858 +83 413 1 891182379 +147 258 4 885594040 +92 521 4 875813412 +246 728 1 884923829 +43 284 5 883955441 +207 203 3 877124625 +234 485 3 892079434 +201 587 4 884140975 +286 689 5 884583549 +69 12 5 882145567 +237 494 4 879376553 +85 133 4 879453876 +276 85 3 874791871 +311 366 5 884366010 +320 399 3 884749411 +114 175 5 881259955 +42 121 4 881110578 +7 680 4 891350703 +154 302 4 879138235 +106 660 4 881451631 +313 71 4 891030144 +90 526 5 891383866 +94 186 4 891722278 +224 43 3 888104456 +44 230 2 883613335 +229 315 1 891632945 +151 480 5 879524151 +311 505 4 884365451 +320 202 4 884750946 +113 329 3 875935312 +255 859 3 883216748 +193 827 2 890859916 +276 789 3 874791623 +259 750 4 888630424 +204 172 3 892513819 +78 412 4 879634223 +85 98 4 879453716 +279 393 1 875314093 +222 323 3 877562839 +288 127 5 886374451 +42 606 3 881107538 +25 729 4 885852697 +119 213 5 874781257 +116 185 3 876453519 +123 13 3 879873988 +315 657 4 879821299 +142 243 1 888640199 +13 480 3 881515193 +201 326 2 884111095 +43 631 2 883955675 +195 387 4 891762491 +95 174 5 879196231 +130 332 4 876250582 +233 482 4 877661437 +44 530 5 878348725 +292 86 4 881105778 +176 294 2 886047220 +157 405 3 886890342 +207 787 3 876079054 +239 204 3 889180888 +251 144 5 886271920 +269 923 4 891447169 +178 148 4 882824325 +138 121 4 879023558 +30 82 4 875060217 +302 245 2 879436911 +34 690 4 888602513 +292 276 5 881103915 +271 11 4 885848408 +69 175 3 882145586 +42 456 3 881106113 +311 568 5 884365325 +183 241 4 892323453 +269 411 1 891451013 +288 196 5 886373474 +268 42 4 875310384 +308 634 4 887737334 +308 166 3 887737837 +57 831 1 883697785 +207 410 3 877838946 +271 211 5 885849164 +16 144 5 877721142 +90 603 5 891385132 +209 408 4 883417517 +299 238 4 877880852 +279 1228 4 890779991 +128 140 4 879968308 +307 173 5 879283786 +167 392 1 892738307 +22 791 1 878887227 +291 159 4 875087488 +194 705 2 879524007 +10 489 4 877892210 +95 128 3 879196354 +10 657 4 877892110 +59 855 4 888204502 +124 11 5 890287645 +7 133 5 891353192 +256 692 5 882165066 +85 629 3 879454685 +271 1266 2 885848943 +276 1416 3 874792634 +155 988 2 879371261 +318 476 4 884495164 +307 258 5 879283786 +28 7 5 881961531 +236 729 5 890118372 +38 672 3 892434800 +7 93 5 891351042 +255 217 2 883216600 +184 729 3 889909840 +154 175 5 879138784 +311 403 4 884365889 +116 301 3 892683732 +94 229 3 891722979 +221 508 4 875244160 +95 636 1 879196566 +44 56 2 878348601 +305 203 4 886323839 +207 508 4 877879259 +130 161 4 875802058 +98 163 3 880499053 +328 9 4 885045993 +178 218 3 882827776 +293 293 4 888904795 +162 742 4 877635758 +128 79 4 879967692 +307 1411 4 877124058 +269 514 4 891449123 +195 186 3 888737240 +327 533 4 887822530 +189 91 3 893265684 +206 1394 1 888179981 +95 143 4 880571951 +31 682 2 881547834 +94 157 5 891725332 +73 588 2 888625754 +256 819 4 882151052 +291 366 3 874868255 +222 153 4 878182416 +207 98 4 875509887 +222 298 4 877563253 +286 151 5 875806800 +116 262 3 876751342 +7 174 5 891350757 +148 495 4 877016735 +311 495 4 884366066 +178 255 4 882824001 +181 597 3 878963276 +123 847 4 879873193 +291 77 4 874834799 +237 528 5 879376606 +140 301 3 879013747 +290 222 4 880731778 +177 79 4 880130758 +65 202 4 879217852 +311 181 4 884364724 +125 796 3 892838591 +77 168 4 884752721 +58 960 4 884305004 +117 405 5 880126174 +248 127 5 884535084 +5 423 4 875636793 +254 286 1 887346861 +289 7 4 876789628 +241 294 3 887250085 +213 690 3 878870275 +99 508 4 885678840 +275 523 4 880314031 +168 284 2 884288112 +28 380 4 881961394 +144 31 3 888105823 +198 651 4 884207424 +181 1093 1 878962391 +221 268 5 876502910 +267 739 4 878973276 +129 303 3 883244011 +301 496 5 882075743 +94 33 3 891721919 +318 64 4 884495590 +298 477 4 884126202 +290 476 3 880475837 +16 942 4 877719863 +130 815 3 874953866 +181 304 1 878961586 +178 125 4 882824431 +42 506 3 881108760 +320 284 4 884748818 +138 151 4 879023389 +197 849 3 891410124 +215 157 4 891435573 +94 1119 4 891723261 +293 724 3 888907061 +79 246 5 891271545 +279 1492 4 888430806 +189 30 4 893266205 +233 806 4 880610396 +198 24 2 884205385 +222 172 5 878183079 +276 301 4 877584219 +70 417 3 884066823 +305 15 1 886322796 +201 370 1 884114506 +57 409 4 883697655 +13 314 1 884538485 +206 245 1 888179772 +125 173 5 879454100 +128 143 5 879967300 +92 763 3 886443192 +65 56 3 879217816 +236 506 5 890118153 +262 77 2 879794829 +90 958 4 891383561 +144 91 2 888106106 +63 841 1 875747917 +323 117 3 878739355 +197 176 5 891409798 +277 273 5 879544145 +176 288 3 886046979 +38 838 2 892433680 +99 546 4 885679353 +326 186 4 879877143 +59 663 4 888204928 +59 702 5 888205463 +26 15 4 891386369 +7 182 4 891350965 +112 354 3 891304031 +109 154 2 880578121 +121 405 2 891390579 +293 167 3 888907702 +297 198 3 875238923 +276 11 5 874787497 +222 210 4 878184338 +287 92 4 875334896 +62 443 3 879375080 +106 703 4 881450039 +276 1218 4 874792040 +230 210 5 880484975 +246 184 4 884921948 +22 511 4 878887983 +165 258 5 879525672 +161 174 2 891170800 +109 89 4 880573263 +305 87 1 886323153 +195 181 5 875771440 +7 193 5 892135346 +326 480 4 879875691 +77 125 3 884733014 +85 58 4 879829689 +186 588 4 879024535 +256 280 5 882151167 +84 529 5 883453108 +74 288 3 888333280 +102 432 3 883748418 +194 770 4 879525342 +267 114 5 878971514 +1 92 3 876892425 +16 504 5 877718168 +211 300 2 879461395 +90 31 4 891384673 +234 657 4 892079840 +60 1020 4 883327018 +92 947 4 875654929 +158 1 4 880132443 +87 1000 3 879877173 +276 104 1 874836682 +1 228 5 878543541 +42 143 4 881108229 +43 26 5 883954901 +299 1322 3 877878001 +130 200 5 875217392 +307 71 5 879283169 +147 339 5 885594204 +311 229 5 884365890 +296 286 5 884196209 +217 82 5 889069842 +80 886 4 883605238 +314 9 4 877886375 +64 527 4 879365590 +249 79 5 879572777 +21 298 5 874951382 +68 118 2 876974248 +215 151 5 891435761 +305 238 3 886323617 +308 417 3 887740254 +102 118 3 888801465 +189 120 1 893264954 +112 750 4 884992444 +130 622 3 875802173 +188 474 4 875072674 +56 585 3 892911366 +56 230 5 892676339 +20 11 2 879669401 +20 176 2 879669152 +222 25 3 877563437 +49 148 1 888068195 +307 431 4 877123333 +144 313 5 888103407 +23 404 4 874787860 +144 961 3 888106106 +160 3 3 876770124 +22 227 4 878888067 +79 508 3 891271676 +18 647 4 880129595 +151 481 3 879524669 +312 480 5 891698224 +256 29 4 882164644 +158 568 4 880134532 +311 141 4 884366187 +303 179 5 879466491 +25 478 5 885852271 +195 407 2 877835302 +152 147 3 880149045 +145 1001 4 875271607 +151 260 1 879523998 +194 576 2 879528568 +271 624 2 885849558 +162 121 4 877636000 +313 65 2 891016962 +6 532 3 883600066 +22 433 3 878886479 +13 915 5 892015023 +327 461 3 887746665 +200 402 4 884129029 +271 22 5 885848518 +269 478 4 891448980 +315 431 2 879821300 +178 121 5 882824291 +210 502 3 891035965 +76 135 5 875028792 +318 648 5 884495534 +279 1291 4 875297708 +75 121 4 884050450 +90 618 5 891385335 +44 174 5 878347662 +293 729 2 888907145 +217 195 5 889069709 +224 708 2 888104153 +246 121 4 884922627 +284 906 3 885328836 +301 172 5 882076403 +244 31 4 880603484 +95 395 3 888956928 +303 330 3 879552065 +198 640 3 884208651 +256 802 3 882164955 +46 690 5 883611274 +305 209 5 886322966 +83 364 1 886534501 +224 1208 1 888104554 +295 67 4 879519042 +116 248 3 876452492 +201 37 2 884114635 +155 748 2 879371261 +318 508 4 884494976 +274 288 4 878944379 +263 333 2 891296842 +145 172 5 882181632 +188 191 3 875073128 +119 313 5 886176135 +270 306 5 876953744 +262 91 3 879792713 +131 845 4 883681351 +250 260 4 878089144 +33 307 3 891964148 +37 183 4 880930042 +6 211 5 883601155 +85 517 5 879455238 +308 164 4 887738664 +42 746 3 881108279 +102 1025 2 883278200 +311 70 4 884364999 +181 1322 1 878962086 +17 508 3 885272779 +174 396 1 886515104 +125 150 1 879454892 +181 1364 1 878962464 +235 511 5 889655162 +1 266 1 885345728 +295 727 5 879517682 +56 194 5 892676908 +83 1035 4 880308959 +100 355 4 891375313 +106 828 2 883876872 +270 327 5 876953900 +181 680 1 878961709 +115 228 4 881171488 +286 771 2 877535119 +234 151 3 892334481 +16 92 4 877721905 +130 410 5 875802105 +271 121 2 885848132 +320 1157 4 884751336 +189 462 5 893265741 +313 31 4 891015486 +49 238 4 888068762 +60 79 4 883326620 +13 226 4 882397651 +1 121 4 875071823 +150 246 5 878746719 +13 548 3 882398743 +179 751 1 892151565 +222 426 1 878181351 +7 614 5 891352489 +157 1132 3 886891132 +193 368 1 889127860 +130 993 5 874953665 +166 322 5 886397723 +62 4 4 879374640 +253 183 5 891628341 +261 117 4 890455974 +269 1020 4 891449571 +269 136 4 891449075 +322 197 5 887313983 +7 647 5 891352489 +112 748 3 884992651 +170 245 5 884103758 +271 823 3 885848237 +294 288 5 877818729 +151 522 5 879524443 +311 213 4 884365075 +26 257 3 891371596 +291 627 4 875086991 +26 7 3 891350826 +221 468 3 875246824 +318 204 5 884496218 +87 996 3 879876848 +279 88 1 882146554 +279 562 3 890451433 +207 14 4 875504876 +279 163 5 875313311 +230 238 1 880484778 +94 235 4 891722980 +293 931 1 888905252 +121 86 5 891388286 +198 180 3 884207298 +292 653 4 881105442 +92 781 3 875907649 +291 572 3 874834944 +48 690 4 879434211 +102 264 2 883277645 +1 114 5 875072173 +180 79 3 877442037 +255 879 3 883215660 +250 2 4 878090414 +119 716 5 874782190 +101 282 3 877135883 +244 220 2 880605264 +67 1 3 875379445 +291 99 4 875086887 +59 238 5 888204553 +311 73 4 884366187 +177 919 4 880130736 +1 132 4 878542889 +144 778 4 888106044 +1 74 1 889751736 +268 68 4 875744173 +232 705 5 888549838 +49 758 1 888067596 +102 313 3 887048184 +279 1093 4 875298330 +279 1493 1 888465068 +22 173 5 878886368 +122 715 5 879270741 +145 315 5 883840797 +119 1101 5 874781779 +261 259 4 890454843 +1 134 4 875073067 +94 45 5 886008764 +330 11 4 876546561 +291 741 5 874834481 +6 180 4 883601311 +188 88 4 875075300 +299 921 3 889502087 +253 203 4 891628651 +215 194 4 891436150 +291 273 3 874833705 +303 867 3 879484373 +6 477 1 883599509 +307 1110 4 877122208 +130 876 4 874953291 +95 483 3 879198697 +74 326 4 888333329 +13 305 4 881514811 +4 260 4 892004275 +261 294 4 890454217 +159 259 4 893255969 +137 55 5 881433689 +174 699 5 886514220 +286 158 3 877533472 +87 1183 3 879875995 +270 230 3 876955868 +91 172 4 891439208 +296 272 5 884198772 +125 483 4 879454628 +62 1118 3 879375537 +328 200 4 885046420 +296 510 5 884197264 +234 500 3 892078890 +237 100 5 879376381 +150 13 4 878746889 +301 610 3 882077176 +151 25 4 879528496 +271 8 4 885848770 +87 303 3 879875471 +293 1220 2 888907552 +113 294 4 875935277 +311 518 3 884365451 +181 123 2 878963276 +328 905 3 888641999 +110 301 2 886987505 +288 742 3 886893063 +111 887 3 891679692 +194 196 3 879524007 +239 605 4 889180446 +109 5 3 880580637 +291 824 4 874833962 +16 168 4 877721142 +14 357 2 890881294 +22 687 1 878887476 +207 746 4 877878342 +312 1299 4 891698832 +268 250 4 875742530 +68 411 1 876974596 +195 887 4 886782489 +271 50 5 885848640 +74 9 4 888333458 +308 802 3 887738717 +144 66 4 888106078 +195 14 4 890985390 +18 199 3 880129769 +13 918 3 892524090 +174 41 1 886515063 +109 159 4 880578121 +227 293 5 879035387 +233 357 5 877661553 +264 475 5 886122706 +205 678 1 888284618 +275 1066 3 880313679 +56 68 3 892910913 +78 1160 5 879634134 +130 682 4 881076059 +127 380 5 884364950 +130 568 5 876251693 +58 1100 2 884304979 +49 473 3 888067164 +13 273 3 882397502 +203 336 3 880433474 +330 136 5 876546378 +109 195 5 880578038 +186 406 1 879023272 +293 148 1 888907015 +280 1028 5 891702276 +143 331 5 888407622 +183 96 3 891463617 +60 699 4 883327539 +178 131 4 882827947 +297 216 4 875409423 +59 1117 4 888203313 +276 429 5 874790972 +179 258 5 892151270 +87 386 2 879877006 +198 1169 4 884208834 +119 54 4 886176814 +297 20 4 874954763 +1 98 4 875072404 +268 205 5 875309859 +279 174 4 875306636 +64 187 5 889737395 +119 1262 3 890627252 +75 1017 5 884050502 +27 742 3 891543129 +307 21 4 876433101 +37 685 3 880915528 +82 15 3 876311365 +244 238 5 880606118 +271 274 3 885848014 +174 1014 3 890664424 +210 135 5 887736352 +262 258 4 879961282 +320 68 5 884749327 +85 660 4 879829618 +311 348 4 884364108 +82 208 3 878769815 +1 186 4 875073128 +145 368 3 888398492 +276 401 3 874792094 +23 213 3 874785675 +64 515 5 889737478 +63 237 3 875747342 +293 227 2 888906990 +322 32 5 887314417 +74 285 3 888333428 +297 202 3 875238638 +82 216 4 878769949 +280 145 3 891702198 +200 227 5 884129006 +290 21 3 880475695 +43 820 2 884029742 +95 573 1 888954808 +181 20 1 878962919 +178 926 4 882824671 +81 476 2 876534124 +194 410 3 879541042 +325 402 2 891479706 +276 347 4 885159630 +207 133 4 875812281 +87 135 5 879875649 +331 7 4 877196633 +315 8 3 879820961 +106 435 3 881452355 +286 83 5 877531975 +87 157 3 879877799 +87 163 4 879877083 +286 655 3 889651746 +232 8 2 888549757 +254 380 4 886474456 +96 91 5 884403250 +232 1 4 880062302 +315 98 4 879821193 +43 553 4 875981159 +305 679 3 886324792 +61 690 2 891206407 +44 665 1 883613372 +92 1016 2 875640582 +168 255 1 884287560 +276 270 4 879131395 +328 568 3 885047896 +222 1053 3 881060735 +93 222 4 888705295 +330 235 5 876544690 +82 504 4 878769917 +2 314 1 888980085 +89 732 5 879459909 +38 216 5 892430486 +308 85 4 887741245 +24 153 4 875323368 +235 1464 4 889655266 +1 221 5 887431921 +222 715 2 878183924 +222 69 5 878182338 +43 114 5 883954950 +331 486 3 877196308 +223 322 4 891548920 +201 452 1 884114770 +158 271 4 880132232 +32 249 4 883717645 +314 90 2 877888758 +313 245 3 891013144 +102 576 2 888802722 +211 526 4 879459952 +268 425 4 875310549 +332 770 3 888098170 +38 508 2 892429399 +280 975 4 891702252 +10 463 4 877889186 +92 386 3 875907727 +268 374 2 875744895 +69 258 4 882027204 +210 96 4 887736616 +213 144 5 878956047 +254 50 5 886471151 +58 272 5 884647314 +327 210 3 887744065 +291 385 4 874835141 +291 324 1 874805453 +246 596 3 884921511 +11 714 4 891904214 +329 100 4 891655812 +86 258 5 879570366 +7 621 5 892132773 +246 80 2 884923329 +308 481 4 887737997 +54 820 3 880937992 +177 651 3 880130862 +10 655 5 877891904 +83 631 2 887664566 +145 993 3 875270616 +255 185 4 883216449 +18 607 3 880131752 +226 180 4 883889322 +234 616 2 892334976 +274 25 5 878945541 +293 156 4 888905948 +83 476 3 880307359 +295 173 5 879518257 +286 1039 5 877531730 +42 48 5 881107821 +208 204 3 883108360 +232 275 2 885939945 +267 94 3 878972558 +271 242 4 885844495 +125 97 3 879454385 +323 333 4 878738865 +305 56 1 886323068 +145 250 5 882182944 +38 1030 5 892434475 +202 515 1 879726778 +181 975 2 878963343 +332 566 4 888360342 +108 13 3 879879834 +194 520 5 879545114 +144 62 2 888105902 +194 1183 2 879554453 +148 172 5 877016513 +144 1147 4 888105587 +269 961 5 891457067 +290 71 5 880473667 +249 597 2 879640436 +65 676 5 879217689 +301 395 1 882079384 +267 546 3 878970877 +207 754 4 879577345 +201 777 1 884112673 +314 1095 3 877887356 +210 631 5 887736796 +22 456 1 878887413 +59 931 2 888203610 +92 715 4 875656288 +50 475 5 877052167 +188 159 3 875074589 +303 700 3 879485718 +197 288 3 891409387 +244 676 4 880604858 +44 88 2 878348885 +164 597 4 889402225 +11 230 4 891905783 +6 297 3 883599134 +186 925 5 879023152 +190 147 4 891033863 +184 1137 5 889907812 +85 269 3 891289966 +185 127 5 883525183 +44 257 4 878346689 +293 484 5 888906217 +150 1 4 878746441 +60 179 4 883326566 +75 147 3 884050134 +269 640 5 891457067 +138 493 4 879024382 +299 271 3 879737472 +92 928 3 886443582 +299 24 3 877877732 +292 183 5 881103478 +5 394 2 879198031 +62 559 3 879375912 +198 549 3 884208518 +288 1039 2 886373565 +152 272 5 890322298 +42 999 4 881108982 +64 333 3 879365313 +99 682 2 885678371 +59 121 4 888203313 +135 233 3 879857843 +7 22 5 891351121 +24 427 5 875323002 +144 747 5 888105473 +261 322 4 890454974 +201 475 4 884112748 +133 258 5 890588639 +110 245 3 886987540 +5 384 3 875636389 +139 268 4 879537876 +112 322 4 884992690 +234 596 2 891227979 +301 184 4 882077222 +291 1471 3 874834914 +285 216 3 890595900 +85 53 3 882995643 +275 183 3 880314500 +296 275 4 884196555 +271 197 4 885848915 +29 748 2 882821558 +221 172 5 875245907 +323 9 4 878739325 +111 340 4 891679692 +95 176 3 879196298 +207 170 4 877125221 +136 276 5 882693489 +124 616 4 890287645 +185 528 4 883526268 +167 404 3 892738278 +286 341 5 884069544 +84 322 3 883449567 +151 529 5 879542610 +264 401 5 886123656 +289 1 3 876789736 +144 64 5 888105140 +56 29 3 892910913 +23 528 4 874786974 +328 742 4 885047309 +125 785 3 892838558 +200 72 4 884129542 +249 23 4 879572432 +130 56 5 875216283 +140 319 4 879013617 +49 102 2 888067164 +158 483 5 880133225 +222 58 3 878182479 +194 213 2 879523575 +177 89 5 880131088 +7 268 3 891350703 +59 549 4 888205659 +145 411 2 875271522 +265 7 2 875320689 +248 282 2 884535582 +239 47 2 889180169 +319 879 5 876280338 +42 102 5 881108873 +301 1035 4 882078809 +326 69 2 879874964 +180 67 1 877127591 +280 99 2 891700475 +145 682 3 879161624 +214 79 4 891544306 +259 210 4 874725485 +57 864 3 883697512 +261 597 4 890456142 +136 298 4 882693569 +293 705 5 888906338 +194 470 3 879527421 +75 496 5 884051921 +202 172 3 879726778 +23 183 3 874785728 +38 403 1 892432205 +52 1009 5 882922328 +95 720 2 879196513 +65 97 5 879216605 +207 290 2 878104627 +201 2 2 884112487 +190 751 4 891033606 +162 685 3 877635917 +221 250 5 875244633 +92 134 4 875656623 +49 695 3 888068957 +102 391 2 888802767 +6 500 4 883601277 +152 25 3 880149045 +145 278 4 875272871 +328 271 3 885044607 +116 750 4 886309481 +90 237 4 891385215 +221 318 5 875245690 +128 283 5 879966729 +94 467 4 885873423 +221 1218 3 875246745 +281 332 4 881200603 +294 539 4 889241707 +300 948 4 875650018 +326 153 4 879875751 +62 28 3 879375169 +159 249 4 884027269 +76 811 4 882606323 +74 237 4 888333428 +81 411 2 876534244 +280 227 3 891702153 +224 22 5 888103581 +64 77 3 889737420 +194 756 1 879549899 +15 20 3 879455541 +43 328 4 875975061 +244 100 4 880604252 +327 805 4 887819462 +21 928 3 874951616 +83 254 2 880327839 +14 22 3 890881521 +318 610 5 884496525 +92 756 3 886443582 +222 1078 2 878183449 +62 157 3 879374686 +13 840 3 886261387 +271 300 2 885844583 +59 13 5 888203415 +208 514 4 883108324 +289 815 3 876789581 +279 249 3 878878420 +326 50 5 879875112 +73 12 5 888624976 +28 234 4 881956144 +6 95 2 883602133 +90 354 3 891382240 +96 519 4 884402896 +7 627 3 891352594 +254 649 1 886474619 +328 519 5 885046420 +247 751 3 893081411 +45 472 3 881014417 +323 127 5 878739137 +268 566 3 875744321 +291 816 3 874867852 +59 405 3 888203578 +200 409 2 884127431 +332 975 3 887938631 +239 612 5 889178616 +22 399 4 878887157 +267 147 3 878970681 +235 319 4 889654419 +87 70 5 879876448 +216 143 2 881428956 +268 121 2 875743141 +239 317 5 889179291 +269 922 5 891457067 +207 468 4 877124806 +270 148 4 876954062 +184 559 3 889910418 +304 271 4 884968415 +331 479 2 877196504 +157 283 4 886890692 +239 183 5 889180071 +261 339 5 890454351 +301 58 4 882077285 +145 339 3 882181058 +10 321 4 879163494 +48 308 5 879434292 +321 631 4 879440264 +32 591 3 883717581 +125 1036 2 892839191 +1 84 4 875072923 +21 742 3 874951617 +22 186 5 878886368 +292 324 3 881104533 +72 129 4 880035588 +256 642 4 882164893 +92 1095 2 886443728 +73 475 4 888625753 +290 274 4 880731874 +83 543 2 887665445 +56 597 3 892679439 +83 216 4 880307846 +215 22 3 891435161 +101 369 2 877136928 +328 521 4 885047484 +307 175 4 877117651 +201 23 4 884111830 +197 570 4 891410124 +26 286 3 891347400 +90 489 5 891384357 +98 517 5 880498990 +57 250 3 883697223 +163 288 3 891220226 +1 31 3 875072144 +104 324 1 888442404 +333 894 3 891045496 +311 22 4 884364538 +237 211 4 879376515 +44 603 4 878347420 +22 96 5 878887680 +213 546 4 878870903 +257 258 3 879029516 +327 300 2 887743541 +279 1017 3 875296891 +53 845 3 879443083 +85 97 2 879829667 +43 286 4 875975028 +181 7 4 878963037 +297 574 1 875239092 +201 651 4 884111217 +320 99 4 884751440 +94 180 5 885870284 +235 85 4 889655232 +305 131 3 886323440 +234 229 4 892334189 +328 591 3 885047018 +328 754 4 885044607 +258 323 4 885701062 +3 323 2 889237269 +16 70 4 877720118 +286 425 2 877532013 +327 702 2 887819021 +200 265 5 884128372 +207 131 3 878104377 +292 10 5 881104606 +214 179 5 892668130 +155 321 4 879370963 +106 213 4 881453065 +200 586 4 884130391 +305 216 5 886323563 +279 1113 3 888806035 +178 984 2 882823530 +331 133 3 877196443 +58 45 5 884305295 +167 1306 5 892738385 +151 191 3 879524326 +326 168 3 879874859 +297 443 2 875240133 +191 288 3 891562090 +81 471 3 876533586 +284 258 4 885329146 +5 267 4 875635064 +150 325 1 878747322 +257 59 5 879547440 +145 443 3 882182658 +271 191 5 885848448 +176 297 3 886047918 +158 38 4 880134607 +152 716 5 884019001 +232 638 5 888549988 +109 930 3 880572351 +243 660 4 879988422 +57 744 5 883698581 +145 1057 1 875271312 +235 275 5 889655550 +181 124 1 878962550 +145 182 5 885622510 +249 476 3 879640481 +44 11 3 878347915 +194 566 4 879522819 +109 218 4 880578633 +49 10 3 888066086 +269 210 1 891449608 +87 233 4 879876036 +314 791 4 877889398 +292 132 4 881105340 +7 300 4 891350703 +291 460 5 874834254 +292 176 5 881103478 +290 1028 3 880732365 +122 427 3 879270165 +17 151 4 885272751 +59 47 5 888205574 +29 689 2 882821705 +274 411 3 878945888 +190 340 1 891033153 +213 50 5 878870456 +14 111 3 876965165 +321 131 4 879439883 +221 1314 3 875247833 +195 100 5 875771440 +236 187 3 890118340 +92 619 4 875640487 +303 576 3 879485417 +42 210 5 881108633 +246 423 3 884920900 +181 823 2 878963343 +197 231 3 891410124 +181 369 3 878963418 +130 172 5 875801530 +276 1131 3 874796116 +252 742 4 891455743 +221 1067 3 875244387 +292 488 5 881105657 +177 124 3 880130881 +42 785 4 881109060 +1 70 3 875072895 +13 178 4 882139829 +76 276 5 875027601 +269 72 2 891451470 +3 331 4 889237455 +290 429 4 880474606 +159 815 3 880557387 +248 474 2 884534672 +214 1065 5 892668173 +30 181 4 875060217 +8 182 5 879362183 +238 118 3 883576509 +249 176 4 879641109 +264 1069 5 886123728 +98 655 3 880498861 +123 275 4 879873726 +181 688 1 878961668 +7 162 5 891353444 +119 269 3 892564213 +181 457 1 878961474 +138 483 5 879024280 +56 63 3 892910268 +291 122 3 874834289 +326 468 3 879875572 +92 175 4 875653549 +293 654 5 888905760 +162 1047 5 877635896 +303 549 3 879484846 +325 504 3 891477905 +267 654 5 878971902 +130 546 4 876250932 +216 577 1 881432453 +301 53 1 882078883 +91 423 5 891439090 +301 384 5 882079315 +291 672 3 874867741 +18 196 3 880131297 +195 1084 4 888737345 +222 939 3 878182211 +327 274 2 887819462 +254 577 1 886476092 +332 693 5 888098538 +267 55 4 878972785 +16 443 5 877727055 +158 79 4 880134332 +305 14 4 886322893 +87 67 4 879877007 +313 175 4 891014697 +43 498 5 875981275 +234 1035 3 892335142 +90 11 4 891384113 +230 196 5 880484755 +1 60 5 875072370 +262 185 3 879793164 +221 1407 3 875247833 +279 382 4 875312947 +211 678 3 879461394 +287 1016 5 875334430 +167 603 4 892738212 +119 154 5 874782022 +126 878 5 887938392 +60 474 5 883326028 +296 427 5 884198772 +300 243 4 875650068 +194 971 3 879551049 +83 186 4 880308601 +207 1242 5 884386260 +311 1116 3 884364623 +181 406 1 878962955 +130 550 5 878537602 +245 222 4 888513212 +168 235 2 884288270 +256 756 4 882151167 +1 177 5 876892701 +59 10 4 888203234 +223 258 1 891548802 +243 225 3 879987655 +148 1149 5 877016513 +10 48 4 877889058 +178 549 4 882827689 +295 4 4 879518568 +99 124 2 885678886 +334 117 3 891544735 +263 523 5 891298107 +230 402 5 880485445 +152 132 5 882475496 +189 45 3 893265657 +130 231 3 875801422 +334 282 4 891544925 +91 193 3 891439057 +244 97 2 880605514 +83 866 3 883867947 +222 217 3 881060062 +10 203 4 877891967 +173 300 4 877556988 +269 168 4 891448850 +292 100 5 881103999 +60 508 4 883327368 +197 431 3 891409935 +313 265 4 891016853 +234 506 4 892318107 +234 959 2 892334189 +154 484 4 879139096 +14 56 5 879119579 +201 1211 3 884113806 +181 359 1 878961668 +52 748 4 882922629 +308 579 3 887740700 +212 515 4 879303571 +13 42 4 882141393 +268 99 3 875744744 +119 245 4 886176618 +44 202 4 878347315 +126 884 5 887938392 +159 111 4 880556981 +90 301 4 891382392 +320 42 4 884751712 +301 25 3 882075110 +114 269 4 881256090 +9 691 5 886960055 +315 17 1 879821003 +137 195 5 881433689 +183 562 3 891467003 +297 301 4 876529834 +334 603 5 891628849 +18 954 3 880130640 +152 97 5 882475618 +184 498 5 889913687 +325 430 5 891478028 +39 315 4 891400094 +231 127 3 879965565 +302 309 2 879436820 +63 150 4 875747292 +201 375 3 884287140 +200 103 2 891825521 +13 94 3 882142057 +297 22 4 875238984 +201 844 2 884112537 +14 93 3 879119311 +240 343 3 885775831 +184 716 3 889909987 +216 12 5 881432544 +38 122 1 892434801 +257 276 5 882049973 +256 778 4 882165103 +200 229 5 884129696 +148 177 2 877020715 +249 22 5 879572926 +184 47 4 889909640 +276 58 4 874791169 +268 432 3 875310145 +224 258 3 888081947 +145 25 2 875270655 +298 261 4 884126805 +244 743 5 880602170 +289 410 2 876790361 +59 132 5 888205744 +301 1112 4 882079294 +56 1090 3 892683641 +327 192 5 887820828 +285 288 5 890595584 +133 328 3 890588577 +71 346 4 885016248 +293 1132 3 888905416 +13 908 1 886302385 +1 27 2 876892946 +271 172 5 885848616 +286 269 5 879780839 +49 926 1 888069117 +290 153 3 880475310 +226 270 4 883888639 +104 122 3 888465739 +311 233 4 884365889 +60 178 5 883326399 +200 191 5 884128554 +128 276 4 879967550 +157 748 2 886890015 +303 460 4 879543600 +5 445 3 875720744 +268 540 1 875542174 +290 218 2 880475542 +181 1346 1 878962086 +189 276 3 893264300 +90 659 4 891384357 +321 134 3 879438607 +279 108 4 892174381 +197 770 3 891410082 +217 566 4 889069903 +193 682 1 889123377 +34 310 4 888601628 +293 157 5 888905779 +297 300 3 874953892 +24 742 4 875323915 +259 405 3 874725120 +303 1007 5 879544576 +326 282 2 879875964 +10 218 4 877889261 +334 635 2 891548155 +272 8 4 879455015 +76 1129 5 875028075 +13 300 1 881515736 +194 431 4 879524291 +256 291 5 882152630 +148 185 1 877398385 +276 318 5 874787496 +227 126 4 879035158 +311 553 3 884365451 +198 427 4 884207009 +13 180 5 882141248 +286 100 3 876521650 +271 451 3 885849447 +59 318 5 888204349 +328 655 4 886037429 +25 174 5 885853415 +90 971 4 891385250 +157 150 5 874813703 +106 69 4 881449886 +173 322 4 877557028 +276 1135 4 874791527 +276 76 4 874791506 +49 546 1 888069636 +115 234 5 881171982 +307 22 3 879205470 +82 218 3 878769748 +116 1082 3 876453171 +80 50 3 887401533 +59 381 5 888205659 +236 143 4 890116163 +56 174 5 892737191 +82 413 1 884714593 +82 69 4 878769948 +144 727 3 888105765 +7 526 5 891351042 +49 531 3 888066511 +1 260 1 875071713 +243 129 2 879987526 +313 488 5 891013496 +207 273 4 878104569 +334 222 4 891544904 +83 95 4 880308453 +162 230 2 877636860 +326 496 5 879874825 +236 686 3 890118372 +17 9 3 885272558 +92 1215 2 890251747 +82 147 3 876311473 +201 242 4 884110598 +223 237 5 891549657 +168 295 4 884287615 +186 977 3 879023273 +246 356 2 884923047 +62 135 4 879375080 +320 456 3 884748904 +48 603 4 879434607 +209 269 2 883589606 +236 1328 4 890116132 +92 673 4 875656392 +71 285 3 877319414 +5 167 2 875636281 +67 240 5 875379566 +188 554 2 875074891 +326 54 3 879876300 +234 462 4 892079840 +31 302 4 881547719 +228 886 1 889387173 +172 603 3 875538027 +314 1139 5 877888480 +297 652 3 875239346 +264 659 5 886122577 +118 174 5 875385007 +216 286 4 881432501 +290 1013 2 880732131 +256 278 5 882151517 +200 820 3 884127370 +49 312 3 888065786 +118 433 5 875384793 +293 195 3 888906119 +13 29 2 882397833 +42 405 4 881105541 +293 566 3 888907312 +125 158 4 892839066 +315 230 4 879821300 +296 83 5 884199624 +188 204 4 875073478 +201 4 4 884111830 +253 747 3 891628501 +315 531 5 879799457 +210 134 5 887736070 +119 1170 3 890627339 +151 509 4 879524778 +81 273 4 876533710 +324 748 5 880575108 +43 15 5 875975546 +298 432 4 884183307 +250 127 4 878089881 +286 1265 5 884069544 +203 294 2 880433398 +267 226 3 878972463 +194 735 4 879524718 +303 99 4 879467514 +193 195 1 889124507 +57 588 4 883698454 +92 672 3 875660028 +207 269 4 877845577 +325 154 3 891478480 +280 86 4 891700475 +197 449 5 891410124 +39 352 5 891400704 +197 510 5 891409935 +117 1 4 880126083 +132 922 5 891278996 +271 180 5 885849087 +222 433 4 881059876 +103 117 4 880416313 +201 26 4 884111927 +270 387 5 876955689 +104 100 4 888465166 +95 96 4 879196298 +130 204 5 875216718 +290 239 2 880474451 +314 833 4 877887155 +313 969 4 891015387 +295 722 4 879518881 +269 412 3 891446904 +49 1 2 888068651 +332 228 5 888359980 +301 11 4 882076291 +125 434 4 879454100 +336 66 3 877756126 +1 145 2 875073067 +327 230 4 887820448 +262 292 4 879961282 +313 205 5 891013652 +321 523 3 879440687 +248 185 3 884534772 +38 384 5 892433660 +224 778 1 888104057 +217 1222 1 889070050 +6 475 5 883599478 +331 47 5 877196235 +38 423 5 892430071 +1 174 5 875073198 +308 60 3 887737760 +207 642 3 875991116 +215 1039 5 891436543 +56 239 4 892676970 +109 1011 3 880571872 +10 124 5 877888545 +320 210 5 884749227 +269 180 3 891448120 +290 380 3 880731766 +311 205 5 884365357 +129 270 3 883243934 +109 281 2 880571919 +235 898 3 889654553 +335 328 3 891566903 +13 508 3 882140426 +201 558 2 884112537 +276 801 3 877935306 +81 118 2 876533764 +288 200 4 886373534 +263 97 4 891299387 +293 87 4 888907015 +136 117 4 882694498 +318 660 3 884497207 +295 405 5 879518319 +201 480 4 884111598 +232 708 4 888550060 +197 566 4 891409893 +313 180 5 891014898 +109 230 5 880579107 +168 596 4 884287615 +201 980 3 884140927 +222 554 2 881060435 +115 11 4 881171348 +334 224 2 891545020 +119 697 5 874782068 +198 385 3 884208778 +91 507 4 891438977 +62 281 3 879373118 +239 98 5 889180410 +324 1033 4 880575589 +201 823 3 884140975 +322 50 5 887314418 +107 305 4 891264327 +64 2 3 889737609 +28 50 4 881957090 +246 202 3 884922272 +168 1197 5 884287927 +34 259 2 888602808 +286 465 5 889651698 +184 521 4 889908873 +106 286 4 881449486 +198 1117 3 884205252 +291 53 5 874834827 +25 477 4 885853155 +1 159 3 875073180 +181 1393 1 878961709 +169 301 4 891268622 +60 172 4 883326339 +178 427 5 882826162 +149 327 2 883512689 +280 96 4 891700664 +205 984 1 888284710 +92 431 4 875660164 +244 369 4 880605294 +308 291 3 887739472 +235 684 4 889655162 +218 194 3 877488546 +307 313 5 888095725 +18 69 3 880129527 +23 215 2 874787116 +184 132 5 889913687 +244 237 5 880602334 +211 181 1 879461498 +236 696 2 890117223 +145 672 3 882182689 +235 648 4 889655662 +116 1016 2 876453376 +178 358 1 888512993 +11 561 2 891905936 +329 512 4 891656347 +183 405 4 891464393 +308 467 4 887737194 +207 576 3 877822904 +198 249 2 884205277 +100 750 4 891375016 +291 168 5 874871800 +115 762 4 881170508 +151 169 5 879524268 +305 403 2 886324792 +338 494 3 879438570 +292 525 5 881105701 +234 671 3 892336257 +234 584 3 892333653 +279 275 3 875249232 +234 638 4 892335989 +110 79 4 886988480 +106 273 3 881453290 +128 111 3 879969215 +298 151 3 884183952 +42 845 5 881110719 +128 747 3 879968742 +190 717 3 891042938 +1 82 5 878542589 +99 421 3 885680772 +313 208 3 891015167 +13 45 3 882139863 +305 302 4 886307860 +94 185 5 885873684 +271 204 4 885848314 +128 83 5 879967691 +267 50 5 878974783 +142 189 4 888640317 +1 56 4 875072716 +18 214 4 880132078 +188 234 4 875073048 +235 100 4 889655550 +303 408 4 879467035 +100 266 2 891375484 +178 302 4 892239796 +42 781 4 881108280 +18 488 3 880130065 +184 14 4 889907738 +293 521 3 888906288 +293 849 2 888907891 +198 156 3 884207058 +234 966 4 892334189 +181 1351 1 878962168 +194 153 3 879546723 +1 272 3 887431647 +265 279 2 875320462 +159 323 4 880485443 +332 229 5 888360342 +334 229 2 891549777 +126 258 4 887853919 +200 225 4 876042299 +63 246 3 875747514 +271 134 3 885848518 +179 316 5 892151202 +308 959 3 887739335 +270 70 5 876955066 +181 1198 1 878962585 +21 445 3 874951658 +326 675 4 879875457 +268 823 2 875742942 +109 845 4 880571684 +339 132 5 891032953 +244 95 4 880606418 +62 702 2 879376079 +321 615 5 879440109 +254 141 3 886472836 +295 423 4 879517372 +271 241 3 885849207 +7 519 4 891352831 +334 52 4 891548579 +136 14 5 882693338 +192 1160 4 881367456 +259 176 4 874725386 +244 509 5 880606017 +238 815 2 883576398 +73 127 5 888625200 +249 455 4 879640326 +320 291 4 884749014 +13 820 4 882398743 +10 283 4 877892276 +321 207 3 879440244 +201 991 4 884110735 +102 559 3 888803052 +190 742 3 891033841 +311 99 5 884365075 +309 333 3 877370419 +62 685 2 879373175 +116 187 5 886310197 +295 966 5 879518060 +234 72 3 892335674 +255 984 1 883215902 +161 582 1 891170800 +87 550 4 879876074 +59 559 5 888206562 +140 322 3 879013684 +224 301 3 888082013 +90 486 5 891383912 +14 792 5 879119651 +194 216 3 879523785 +222 501 2 881060331 +90 311 4 891382163 +328 43 3 886038224 +7 633 5 891351509 +151 228 5 879524345 +297 223 5 875238638 +207 529 4 878191679 +130 930 3 876251072 +314 743 1 877886443 +181 926 1 878962866 +13 509 5 882140691 +232 523 4 888549757 +201 87 3 884111775 +223 470 4 891550767 +18 602 3 880131407 +82 495 3 878769668 +144 403 3 888105636 +186 322 5 879022927 +250 174 3 878092104 +321 194 3 879441225 +28 12 4 881956853 +28 895 4 882826398 +151 405 3 879543055 +207 1102 3 880839891 +201 164 3 884112627 +6 509 4 883602664 +42 380 4 881108548 +221 895 2 885081339 +328 10 4 885047099 +270 159 4 876956233 +269 340 5 891446132 +216 249 3 880232917 +201 1424 3 884113114 +85 86 4 879454189 +95 843 4 880572448 +306 275 4 876503894 +256 235 3 882153668 +85 692 3 879828490 +11 312 4 891902157 +305 210 3 886323006 +181 321 2 878961623 +151 7 4 879524610 +296 961 5 884197287 +119 595 3 874781067 +314 929 3 877887356 +279 363 5 890451473 +188 357 4 875073647 +214 872 2 891542492 +234 209 4 892317967 +5 426 3 878844510 +1 80 4 876893008 +246 578 2 884923306 +294 979 3 877819897 +314 73 4 877889205 +312 98 4 891698300 +208 662 4 883108842 +43 382 5 883955702 +254 596 4 886473852 +3 294 2 889237224 +44 153 4 878347234 +25 742 4 885852569 +94 79 4 885882967 +262 406 3 879791537 +35 1025 3 875459237 +148 501 4 877020297 +70 423 5 884066910 +83 265 5 880308186 +5 222 4 875635174 +308 1028 2 887738972 +109 62 3 880578711 +49 173 3 888067691 +314 468 4 877892214 +334 1163 4 891544764 +269 205 3 891447841 +38 318 3 892430071 +102 222 3 888801406 +329 297 4 891655868 +305 1411 3 886324865 +236 289 4 890117820 +313 131 4 891015513 +332 284 5 887938245 +121 121 2 891388501 +60 183 5 883326399 +339 1030 1 891036707 +296 544 4 884196938 +11 720 1 891904717 +263 272 5 891296919 +303 203 5 879467669 +288 182 4 886374497 +291 17 4 874834850 +308 628 3 887738104 +13 755 3 882399014 +64 231 3 889740880 +277 24 4 879543931 +130 572 3 878537853 +293 386 2 888908065 +279 368 1 886016352 +189 253 4 893264150 +296 32 4 884197131 +305 169 5 886322893 +303 262 5 879466065 +95 211 3 879197652 +207 1098 4 877879172 +110 1248 3 886989126 +312 408 4 891698174 +279 1413 5 875314434 +15 301 4 879455233 +116 484 4 886310197 +198 51 3 884208455 +13 2 3 882397650 +332 232 5 888098373 +44 55 4 878347455 +62 716 4 879375951 +148 529 5 877398901 +303 421 4 879466966 +276 56 5 874791623 +311 484 4 884366590 +58 475 5 884304609 +85 488 4 879455197 +330 584 3 876547220 +181 1067 1 878962550 +301 515 3 882074561 +13 830 1 882397581 +127 268 1 884363990 +37 56 5 880915810 +314 924 5 877886921 +201 210 2 884111270 +198 511 4 884208326 +94 742 3 891722214 +209 258 2 883589626 +305 610 3 886324128 +67 405 5 875379794 +294 120 2 889242937 +246 98 4 884921428 +194 162 3 879549899 +307 393 3 877123041 +95 976 2 879195703 +268 252 3 875743182 +216 298 5 881721819 +5 453 1 879198898 +223 845 4 891549713 +293 124 4 888904696 +224 1119 3 888082634 +299 176 4 880699166 +130 71 5 875801695 +130 50 5 874953665 +54 313 4 890608360 +62 473 4 879373046 +312 495 4 891699372 +125 22 5 892836395 +318 357 4 884496069 +204 748 1 892392030 +182 293 3 885613152 +49 569 3 888067482 +69 56 5 882145428 +64 959 4 889739903 +325 179 5 891478529 +286 272 5 884069298 +116 880 3 876680723 +215 89 4 891435060 +46 333 5 883611374 +246 294 2 884924460 +213 25 4 878870750 +90 213 5 891383718 +110 188 4 886988574 +212 511 4 879304051 +57 1059 3 883697432 +57 825 1 883697761 +297 282 3 874954845 +276 176 5 874792401 +106 45 3 881453290 +151 66 4 879524974 +276 66 3 874791993 +269 76 3 891448456 +154 286 4 879138235 +210 219 3 887808581 +306 319 4 876503793 +324 471 5 880575412 +265 472 3 875320542 +85 389 3 882995832 +54 325 3 880930146 +18 498 4 880129940 +271 345 3 885844666 +123 22 4 879809943 +87 1189 5 879877951 +217 810 3 889070050 +198 148 3 884206401 +116 257 3 876452523 +131 274 3 883681351 +297 692 3 875239018 +266 874 2 892257101 +109 796 3 880582856 +189 480 5 893265291 +22 294 1 878886262 +234 471 3 892335074 +328 679 2 885049460 +56 79 4 892676303 +178 978 2 882824983 +216 226 3 880244803 +38 444 1 892433912 +219 179 5 889492687 +43 944 2 883956260 +279 1484 3 875307587 +236 507 3 890115897 +296 1009 3 884196921 +271 490 4 885848886 +206 903 2 888180018 +21 295 3 874951349 +318 47 2 884496855 +59 230 4 888205714 +151 175 5 879524244 +263 86 4 891299574 +308 193 3 887737837 +152 125 5 880149165 +123 165 5 879872672 +169 174 4 891359418 +294 10 3 877819490 +197 651 5 891409839 +263 892 3 891297766 +63 109 4 875747731 +206 362 1 888180018 +52 498 5 882922948 +316 213 5 880853516 +72 89 3 880037164 +189 705 4 893265569 +80 87 4 887401307 +198 746 4 884207946 +85 56 4 879453587 +194 56 5 879521936 +110 82 4 886988480 +99 741 3 885678886 +7 195 5 891352626 +323 546 2 878739519 +21 982 1 874951482 +334 93 4 891545020 +12 82 4 879959610 +43 235 3 875975520 +228 288 4 889387173 +109 90 3 880583192 +13 64 5 882140037 +178 288 5 882823353 +181 887 1 878962005 +123 606 3 879872540 +82 64 5 878770169 +138 285 4 879023245 +87 1182 3 879877043 +201 304 2 884110967 +70 202 4 884066713 +178 655 4 882827247 +327 558 4 887746196 +315 654 5 879821193 +251 55 3 886271856 +42 70 3 881109148 +311 482 4 884365104 +129 272 4 883243972 +307 193 3 879205470 +10 4 4 877889130 +338 211 4 879438092 +95 514 2 888954076 +342 1047 2 874984854 +342 792 3 875318882 +201 213 4 884111873 +32 276 4 883717913 +257 289 4 879029543 +14 175 5 879119497 +299 174 4 877880961 +6 134 5 883602283 +320 433 4 884751730 +305 257 2 886322122 +28 153 3 881961214 +308 609 4 887739757 +287 218 5 875335424 +62 421 5 879375716 +269 172 3 891449031 +119 628 4 874775185 +279 1142 1 890780603 +224 1442 3 888104281 +308 528 3 887737036 +151 435 4 879524131 +328 216 3 885045899 +295 493 5 879516961 +62 96 4 879374835 +59 1109 3 888205088 +255 258 4 883215406 +102 195 4 888801360 +128 660 2 879968415 +8 79 4 879362286 +197 1419 2 891410124 +217 578 5 889070087 +313 204 4 891014401 +162 298 4 877635690 +30 289 2 876847817 +260 319 2 890618198 +57 294 4 883696547 +334 86 4 891548295 +308 54 2 887740254 +210 255 4 887730842 +213 447 4 878955598 +189 1021 5 893266251 +220 306 4 881197664 +104 1241 1 888465379 +339 582 4 891032793 +28 184 4 881961671 +51 148 3 883498623 +244 157 4 880604119 +234 491 4 892079538 +275 588 3 875154535 +186 53 1 879023882 +99 1052 1 885679533 +269 131 5 891449728 +311 720 3 884366307 +270 1119 5 876955729 +286 1035 3 877532094 +311 94 3 884366187 +211 257 5 879461498 +239 671 5 889179290 +201 98 4 884111312 +43 403 4 883956305 +315 216 4 879821120 +53 924 3 879443303 +308 452 2 887741329 +338 613 3 879438597 +90 357 5 891385132 +303 327 1 879466166 +247 271 2 893081411 +144 303 4 888103407 +102 1030 1 892994075 +90 739 5 891384789 +72 527 4 880036746 +286 248 5 875806800 +201 32 3 884140049 +327 497 4 887818658 +141 125 5 884585642 +167 675 1 892738277 +262 217 3 879792818 +151 813 4 879524222 +13 859 1 882397040 +276 207 4 874795988 +246 1073 4 884921380 +298 98 4 884127720 +23 88 3 874787410 +94 700 2 891723427 +130 772 4 876251804 +5 403 3 875636152 +297 176 4 881708055 +178 250 4 888514821 +128 417 4 879968447 +270 281 5 876956137 +63 251 4 875747514 +42 357 5 881107687 +100 288 2 891374603 +334 100 5 891544707 +162 222 4 877635758 +184 1020 4 889908630 +13 625 2 882398691 +72 79 4 880037119 +213 8 3 878955564 +82 13 2 878768615 +314 735 5 877888855 +59 488 3 888205956 +14 313 2 890880970 +236 200 3 890115856 +325 240 1 891479592 +286 164 3 877533586 +268 768 3 875744895 +83 77 4 880308426 +313 230 3 891015049 +21 218 4 874951696 +325 656 4 891478219 +283 83 4 879298239 +223 323 2 891549017 +130 418 5 875801631 +28 282 4 881957425 +43 7 4 875975520 +293 559 2 888906168 +286 432 3 878141681 +176 272 5 886047068 +237 499 2 879376487 +332 451 5 888360179 +303 273 3 879468274 +286 13 2 876521933 +327 169 2 887744205 +262 50 2 879962366 +312 631 5 891699599 +102 734 2 892993786 +16 655 5 877724066 +23 90 2 874787370 +249 182 5 879640949 +18 209 4 880130861 +293 216 4 888905990 +308 607 3 887737084 +164 689 5 889401490 +306 1009 4 876503995 +327 655 4 887745303 +280 756 4 891701649 +106 97 5 881450810 +109 147 4 880564679 +156 58 4 888185906 +133 260 1 890588878 +23 511 5 874786770 +112 689 4 884992668 +116 313 5 886978155 +271 13 4 885847714 +313 136 5 891014474 +240 898 5 885775770 +52 405 4 882922610 +280 202 3 891701090 +262 1278 4 879961819 +275 252 2 876197944 +187 732 3 879465419 +13 428 5 882140588 +268 946 3 875310442 +234 283 3 891227814 +16 151 5 877721905 +336 108 3 877757320 +235 435 5 889655434 +216 274 3 880233061 +246 215 2 884921058 +13 913 1 892014908 +21 439 1 874951820 +94 99 3 891721815 +82 275 2 884714125 +339 55 3 891032765 +59 1116 3 888206562 +217 685 5 889069782 +295 736 5 879966498 +170 328 3 884103860 +151 826 1 879543212 +13 212 5 882399385 +223 1 4 891549324 +246 196 3 884921861 +154 137 3 879138657 +158 144 4 880134445 +11 120 2 891903935 +18 630 3 880132188 +197 181 5 891409893 +235 433 4 889655596 +331 69 5 877196384 +244 278 3 880605294 +217 540 1 889070087 +312 134 5 891698764 +299 168 4 878192039 +234 1172 3 892079076 +224 632 2 888103872 +327 474 3 887743986 +184 780 4 889913254 +62 1107 1 879376159 +65 70 1 879216529 +101 928 2 877136302 +210 465 4 887737131 +144 237 4 888104258 +320 250 4 884751992 +311 692 4 884364652 +159 328 3 893255993 +128 77 3 879968447 +167 48 1 892738277 +291 558 4 874867757 +56 143 3 892910182 +38 392 5 892430120 +293 264 3 888904392 +115 69 1 881171825 +276 250 4 874786784 +280 225 4 891701974 +295 588 4 879517682 +26 321 3 891347949 +302 328 3 879436844 +145 109 4 875270903 +201 380 1 884140825 +57 252 2 883697807 +280 100 3 891700385 +310 258 3 879435606 +26 269 4 891347478 +308 4 5 887737890 +269 174 1 891449124 +262 71 4 879794951 +221 684 4 875247454 +263 521 3 891297988 +256 276 3 882151198 +1 229 4 878542075 +266 508 4 892258004 +59 127 5 888204430 +325 505 4 891478557 +327 133 4 887745662 +282 269 4 879949347 +151 300 4 879523942 +104 283 4 888465582 +291 1017 4 874833911 +276 770 4 877935446 +334 1108 4 891549632 +224 879 3 888082099 +64 1133 4 889739975 +58 42 4 884304936 +106 584 4 881453481 +159 258 4 893255836 +268 248 3 875742530 +318 286 3 884470681 +6 525 5 883601203 +327 431 3 887820384 +77 23 4 884753173 +95 15 4 879195062 +255 452 3 883216672 +144 328 3 888103407 +102 307 4 883748222 +269 1014 3 891446838 +184 172 4 889908497 +306 306 5 876503792 +49 732 3 888069040 +181 1347 1 878962052 +293 514 4 888906378 +330 121 4 876544582 +125 1074 3 892838827 +291 147 4 874805768 +269 214 3 891448547 +13 168 4 881515193 +305 76 1 886323506 +313 435 5 891013803 +307 229 5 879538921 +314 54 4 877888892 +269 529 5 891455815 +283 186 5 879298239 +158 8 5 880134948 +92 87 3 876175077 +85 842 3 882995704 +20 118 4 879668442 +193 393 4 889126808 +167 222 4 892737995 +201 1187 3 884112201 +125 346 1 892835800 +144 880 5 888103509 +234 628 2 892826612 +291 574 1 875087656 +224 977 2 888104281 +152 780 5 884019189 +71 462 5 877319567 +151 755 3 879543366 +135 229 2 879857843 +92 931 1 875644796 +95 33 3 880571704 +130 125 5 875801963 +269 405 1 891450902 +297 277 3 875048641 +62 527 4 879373692 +221 17 4 875245406 +11 743 2 891904065 +230 50 5 880484755 +159 930 4 880557824 +174 107 5 886434361 +97 7 5 884238939 +84 289 5 883449419 +63 948 3 875746948 +125 143 5 879454793 +160 126 3 876769148 +316 483 4 880853810 +32 117 3 883717555 +327 93 4 887744432 +13 856 5 886303171 +216 202 4 880234346 +92 1212 3 876175626 +1 140 1 878543133 +263 183 4 891298655 +5 173 4 875636675 +85 372 4 879828720 +194 519 4 879521474 +109 550 5 880579107 +201 198 4 884111873 +340 172 4 884990620 +49 117 1 888069459 +7 642 3 892132277 +239 286 1 889178512 +198 568 3 884208710 +237 23 4 879376606 +239 135 5 889178762 +5 241 1 875720948 +72 382 4 880036691 +297 480 4 875238923 +249 826 1 879640481 +25 127 3 885853030 +94 227 3 891722759 +195 591 4 892281779 +92 85 3 875812364 +85 709 5 879828941 +308 502 5 887739521 +311 117 4 884366852 +247 251 4 893081395 +235 792 4 889655490 +329 326 3 891656639 +338 79 4 879438715 +244 428 4 880606155 +187 70 4 879465394 +253 483 5 891628122 +194 62 2 879524504 +70 71 3 884066399 +203 332 5 880433474 +49 72 2 888069246 +308 673 4 887737243 +246 426 3 884923471 +280 231 3 891701974 +180 433 5 877127273 +110 1250 3 886988818 +327 811 4 887747363 +339 47 4 891032701 +194 132 3 879520991 +1 225 2 878542738 +36 319 2 882157356 +342 746 4 875320227 +260 1105 5 890618729 +40 754 4 889041790 +175 31 4 877108051 +62 827 2 879373421 +138 100 5 879022956 +252 9 5 891456797 +59 421 5 888206015 +110 540 3 886988793 +1 235 5 875071589 +334 269 3 891544049 +301 95 5 882076334 +63 6 3 875747439 +269 805 2 891450623 +151 357 5 879524585 +268 404 4 875309430 +199 473 4 883783005 +22 780 1 878887377 +28 441 2 881961782 +299 210 4 889502980 +317 326 3 891446438 +254 384 1 886475790 +178 245 3 882823460 +297 194 3 875239453 +90 966 5 891385843 +11 734 3 891905349 +325 514 4 891478006 +249 411 3 879640436 +18 964 3 880132252 +311 118 3 884963203 +334 293 3 891544840 +294 483 4 889854323 +297 86 5 875238883 +293 647 5 888905760 +294 876 3 889241633 +286 142 4 877534793 +308 569 3 887740410 +222 164 4 878181768 +49 721 2 888068934 +303 1090 1 879485686 +73 474 5 888625200 +93 845 4 888705321 +85 1101 4 879454046 +223 216 5 891550925 +42 1043 2 881108633 +234 212 2 892334883 +16 288 3 877717078 +13 319 4 882139327 +135 294 4 879857575 +168 411 1 884288222 +72 204 4 880037853 +144 523 5 888105338 +303 398 1 879485372 +128 215 3 879967452 +320 11 4 884749255 +267 684 4 878973088 +60 490 4 883326958 +189 694 4 893265946 +116 905 2 890131519 +249 240 4 879640343 +110 300 3 886987380 +201 1063 3 884113453 +180 121 5 877127830 +87 1072 3 879876610 +6 209 4 883601713 +63 301 5 875747010 +179 895 5 892151565 +148 98 3 877017714 +13 312 1 883670630 +15 278 1 879455843 +176 305 5 886047068 +102 66 3 892992129 +293 251 4 888904734 +42 204 5 881107821 +328 523 5 885046206 +206 333 4 888179565 +279 67 4 875310419 +158 42 3 880134913 +70 151 3 884148603 +271 661 4 885848373 +37 222 3 880915528 +279 1095 1 886016480 +250 200 5 883263374 +103 144 4 880420510 +50 1084 5 877052501 +128 1141 4 879968827 +336 577 1 877757396 +275 191 4 880314797 +95 173 5 879198547 +87 651 4 879875893 +21 678 2 874951005 +145 1217 2 875272349 +13 860 1 882396984 +312 676 3 891699295 +200 431 5 884129006 +102 67 1 892993706 +325 506 5 891478180 +221 1073 4 875245846 +2 297 4 888550871 +305 733 3 886324661 +275 969 2 880314412 +11 215 3 891904389 +341 876 4 890757886 +231 126 5 888605273 +269 474 4 891448823 +13 540 3 882398410 +102 809 3 888802768 +254 240 1 886476165 +234 486 3 892079373 +256 932 3 882150508 +249 58 5 879572516 +305 947 4 886322838 +262 15 3 879962366 +325 187 3 891478455 +184 836 4 889909142 +11 428 4 891905032 +40 258 3 889041981 +313 740 2 891016540 +276 1314 3 874796412 +101 1051 2 877136891 +236 699 4 890116095 +207 134 4 875991160 +215 82 3 891435995 +125 945 5 892836465 +120 282 4 889490172 +293 461 2 888905519 +160 93 5 876767572 +298 418 4 884183406 +326 444 4 879877413 +246 849 1 884923687 +278 301 2 891294980 +166 288 3 886397510 +328 4 3 885047895 +70 265 4 884067503 +298 465 4 884182806 +343 186 4 876407485 +205 313 3 888284313 +201 461 4 884113924 +276 1478 3 889174849 +91 264 4 891438583 +250 294 1 878089033 +68 405 3 876974518 +246 99 3 884922657 +10 704 3 877892050 +97 435 4 884238752 +99 118 2 885679237 +102 302 3 880680541 +70 152 4 884149877 +41 31 3 890687473 +178 179 2 882828320 +6 19 4 883602965 +89 246 5 879461219 +254 257 3 886471389 +94 402 4 891723261 +42 404 5 881108760 +130 566 4 878537558 +13 614 4 884538634 +286 642 3 877531498 +291 410 5 874834481 +214 121 4 891543632 +246 284 1 884922475 +130 413 3 876251127 +320 1210 4 884751316 +60 810 4 883327201 +141 744 5 884584981 +288 97 4 886629750 +145 750 4 885555884 +189 496 5 893265380 +130 55 5 875216507 +328 431 2 885047822 +177 1039 3 880130807 +201 281 2 884112352 +301 456 3 882074838 +136 56 4 882848783 +74 15 4 888333542 +169 429 3 891359250 +1 120 1 875241637 +100 302 4 891374528 +303 716 2 879467639 +216 498 3 880235329 +6 476 1 883600175 +329 98 4 891656300 +230 511 2 880485656 +113 321 3 875075887 +64 100 4 879365558 +13 876 2 881515521 +269 771 1 891451754 +6 154 3 883602730 +327 962 3 887820545 +179 345 1 892151565 +60 152 4 883328033 +222 250 2 877563801 +83 252 4 883868598 +330 51 5 876546753 +125 290 4 892838375 +181 286 1 878961173 +327 451 4 887819411 +161 14 4 891171413 +18 82 3 880131236 +24 372 4 875323553 +200 286 4 884125953 +73 202 2 888626577 +22 29 1 878888228 +96 8 5 884403020 +343 1107 3 876406977 +297 12 5 875239619 +279 1411 3 884556545 +110 202 2 886988909 +94 257 4 891724178 +72 176 2 880037203 +102 89 4 888801315 +119 684 4 886177338 +60 151 5 883326995 +295 404 4 879518378 +308 447 4 887739056 +312 1203 5 891699599 +343 55 3 876405129 +284 259 2 885329593 +276 563 3 874977334 +280 736 2 891700341 +311 310 4 884363865 +18 739 3 880131776 +87 209 5 879876488 +13 90 3 882141872 +58 1097 5 884504973 +224 243 2 888082277 +279 780 4 875314165 +56 568 4 892910797 +330 215 5 876547925 +7 92 5 891352010 +179 315 5 892151202 +64 239 3 889740033 +297 699 4 875239658 +21 424 1 874951293 +188 792 2 875075062 +91 195 5 891439057 +293 194 4 888906045 +94 727 5 891722458 +274 148 2 878946133 +57 282 5 883697223 +276 780 3 874792143 +216 651 5 880233912 +151 241 3 879542645 +62 8 5 879373820 +197 68 2 891410082 +59 385 4 888205659 +119 275 5 874774575 +118 324 4 875384444 +304 298 5 884968415 +26 9 4 891386369 +312 847 3 891698174 +308 965 4 887738387 +270 707 5 876954927 +297 31 3 881708087 +221 100 5 875244125 +116 760 3 886309812 +119 193 4 874781872 +177 300 2 880130434 +161 654 3 891171357 +303 235 4 879484563 +117 174 4 881011393 +327 216 3 887818991 +327 1098 4 887820828 +23 516 4 874787330 +181 1051 2 878962586 +48 661 5 879434954 +76 531 4 875028007 +189 129 3 893264378 +1 125 3 878542960 +312 144 1 891698987 +301 410 4 882074460 +306 476 3 876504679 +38 616 3 892433375 +223 298 5 891549570 +145 1292 1 875271357 +328 528 5 886037457 +174 458 4 886433862 +303 31 3 879467361 +23 83 4 874785926 +6 175 4 883601426 +173 938 3 877557076 +313 239 3 891028873 +38 780 4 892434217 +184 89 4 889908572 +44 155 3 878348947 +244 13 4 880604379 +13 263 5 881515647 +344 479 4 884901093 +40 340 2 889041454 +141 222 4 884584865 +144 286 4 888103370 +324 597 4 880575493 +222 700 3 881060550 +96 484 5 884402860 +90 199 5 891384423 +1 215 3 876893145 +270 379 5 876956232 +251 257 3 886272378 +246 109 5 884921794 +130 90 4 875801920 +326 318 5 879875612 +9 521 4 886959343 +221 32 4 875245223 +20 186 3 879669040 +37 79 4 880915810 +279 871 4 875297410 +163 56 4 891220097 +84 284 3 883450093 +201 676 2 884140927 +46 1062 5 883614766 +72 82 3 880037242 +117 176 5 881012028 +269 608 4 891449526 +148 214 5 877019882 +294 1067 4 877819421 +121 174 3 891388063 +20 172 3 879669181 +59 724 5 888205265 +108 125 3 879879864 +49 53 4 888067405 +294 678 2 877818861 +240 301 5 885775683 +299 602 3 878191995 +246 802 1 884923471 +13 788 1 882396914 +303 1508 1 879544130 +207 1283 4 884386260 +255 271 4 883215525 +195 477 2 885110922 +312 557 5 891699599 +144 302 3 888103530 +102 399 2 888802722 +297 515 5 874954353 +106 165 5 881450536 +291 421 4 875087352 +145 552 5 888398747 +89 936 5 879461219 +85 71 4 879456308 +282 271 3 881702919 +339 856 5 891034922 +135 227 3 879857843 +151 91 2 879542796 +221 467 4 875245928 +286 196 4 877533543 +116 195 4 876453626 +94 738 2 891723558 +144 172 4 888105312 +214 208 5 892668153 +234 519 5 892078342 +244 596 4 880604735 +222 739 4 878184924 +74 126 3 888333428 +45 127 5 881007272 +344 306 5 884814359 +116 887 3 881246591 +181 1362 1 878962200 +144 461 4 888106044 +189 1099 5 893266074 +53 228 3 879442561 +2 290 3 888551441 +299 739 3 889502865 +313 139 3 891030334 +274 275 5 878944679 +321 521 2 879441201 +134 539 4 891732335 +269 486 3 891449922 +94 655 4 891720862 +262 1220 4 879794296 +181 1265 1 878961668 +109 4 2 880572756 +12 96 4 879959583 +109 42 1 880572756 +90 307 5 891383319 +77 498 5 884734016 +314 620 3 877887212 +48 210 3 879434886 +305 1101 4 886323563 +198 357 5 884207267 +222 293 3 877563353 +207 186 4 877879173 +158 580 4 880135093 +255 551 1 883216672 +87 1047 3 879877280 +301 9 3 882074291 +279 1498 4 891208884 +299 343 3 881605700 +339 288 3 891036899 +13 782 3 885744650 +210 722 4 891036021 +200 528 4 884128426 +193 693 4 889124374 +297 678 3 874954093 +128 216 5 879967102 +311 38 3 884365954 +169 879 5 891268653 +174 82 1 886515472 +13 440 1 882397040 +95 378 4 888954699 +321 224 3 879439733 +180 83 5 877128388 +150 127 5 878746889 +332 233 4 888360370 +102 83 3 888803487 +263 678 2 891297766 +128 97 3 879968125 +239 288 2 889178513 +275 202 3 875155167 +311 471 4 884963254 +267 145 4 878972903 +253 210 4 891628598 +250 64 5 878090153 +284 339 3 885329671 +327 849 2 887822530 +11 90 2 891905298 +222 93 2 883815577 +299 26 4 878192601 +276 748 3 883822507 +274 496 5 878946473 +252 129 4 891456876 +244 1225 2 880606818 +75 820 3 884050979 +194 52 4 879525876 +328 627 3 885048365 +201 955 3 884114895 +253 198 5 891628392 +221 39 4 875245798 +334 317 3 891546000 +271 414 4 885849470 +158 525 5 880133288 +64 705 5 879365558 +294 24 4 877819761 +28 480 5 881957002 +269 959 5 891457067 +299 270 4 878052375 +151 655 4 879542645 +177 87 4 880130931 +269 15 2 891446348 +279 740 3 875736276 +332 673 5 888360307 +269 483 4 891448800 +91 682 2 891438184 +246 17 2 884922658 +290 418 3 880474293 +9 487 5 886960056 +217 797 4 889070011 +234 14 3 891227730 +292 1050 4 881105778 +65 1129 4 879217258 +222 231 2 878182005 +299 32 3 877881169 +279 685 3 884982881 +15 620 4 879456204 +68 178 5 876974755 +293 210 3 888905665 +43 931 1 884029742 +344 278 3 884900454 +56 368 3 892911589 +339 30 3 891032765 +144 518 3 888106182 +125 734 3 892838977 +12 735 5 879960826 +269 484 3 891448895 +90 179 5 891385389 +185 237 4 883526268 +243 275 3 879987084 +269 1091 2 891451705 +11 429 5 891904335 +13 88 4 882141485 +120 25 5 889490370 +198 402 3 884209147 +165 304 3 879525672 +138 98 5 879024043 +94 561 3 891722882 +293 188 3 888906288 +39 258 4 891400280 +159 237 3 880485766 +344 39 3 884901290 +69 1017 5 882126156 +230 673 3 880485573 +160 124 4 876767360 +44 228 5 883613334 +298 1142 4 884183572 +345 1160 3 884994606 +94 133 4 885882685 +121 122 2 891390501 +325 109 2 891478528 +160 1019 5 876857977 +205 333 4 888284618 +343 44 3 876406640 +321 1028 2 879441064 +102 986 1 888802319 +268 123 3 875742794 +19 153 4 885412840 +125 511 5 879454699 +332 1188 5 888098374 +90 132 5 891384673 +16 657 5 877723882 +316 50 1 880853654 +272 11 4 879455143 +85 380 4 882995704 +279 1118 3 875310631 +269 761 2 891451374 +75 696 4 884050979 +249 469 4 879641285 +311 671 3 884365954 +58 222 4 884304656 +254 99 3 886473254 +308 632 3 887738057 +125 1272 1 879454892 +49 40 1 888069222 +83 1101 2 880308256 +16 294 4 877717116 +94 214 5 891725332 +295 624 5 879518654 +152 866 5 880149224 +128 227 2 879968946 +119 235 5 874774956 +122 1268 2 879270711 +276 561 2 874792745 +251 109 4 886272547 +7 90 3 891352984 +184 275 5 889913687 +262 628 2 879962366 +279 13 3 875249210 +181 764 1 878962866 +21 56 5 874951658 +298 660 3 884182838 +98 321 3 880498519 +145 949 4 875272652 +164 458 4 889402050 +232 64 4 888549441 +184 126 3 889907971 +269 209 4 891448895 +26 100 5 891386368 +57 1093 3 883697352 +117 338 3 886019636 +297 97 5 875239871 +276 969 4 874792839 +119 1263 3 886177338 +345 722 3 884993783 +318 72 4 884498540 +246 410 1 884923175 +158 809 3 880134675 +178 651 4 882826915 +254 625 3 886473808 +21 106 2 874951447 +225 136 5 879540707 +41 486 4 890687305 +234 191 4 892334765 +78 289 4 879633567 +90 9 4 891385787 +313 415 2 891030367 +180 716 1 877128119 +344 462 2 884901156 +268 810 2 875744388 +195 227 3 888737346 +72 603 4 880037417 +31 135 4 881548030 +303 1267 3 879484327 +64 731 3 889739648 +62 89 5 879374640 +151 662 4 879525054 +189 1372 4 893264429 +213 79 5 878956263 +219 13 1 889452455 +345 708 3 884992786 +244 712 3 880607925 +220 288 5 881197887 +1 6 5 887431973 +239 923 5 889179033 +290 202 4 880474590 +194 523 5 879521596 +200 831 4 891825565 +346 213 3 874948173 +267 214 4 878972342 +100 340 3 891374707 +42 521 2 881107989 +214 45 4 891543952 +264 320 4 886122261 +145 1102 1 888398162 +10 22 5 877888812 +299 71 3 878192238 +313 608 4 891017585 +209 242 4 883589606 +221 92 4 875245989 +293 646 3 888906244 +184 1012 3 889907448 +70 260 2 884065247 +90 30 5 891385843 +144 1169 4 888106044 +1 104 1 875241619 +21 288 3 874950932 +6 523 5 883601528 +248 181 4 884535374 +168 409 4 884287846 +234 878 2 892336477 +44 238 4 878347598 +296 1073 5 884197330 +296 96 5 884197287 +206 288 5 888179565 +76 100 5 875028391 +327 50 3 887745574 +308 811 4 887739212 +338 168 3 879438225 +125 238 3 892838322 +299 1074 3 889502786 +85 203 5 879455402 +77 431 5 884733695 +18 367 4 880130802 +293 572 2 888907931 +286 228 3 889651576 +246 568 4 884922451 +174 902 3 890168363 +268 163 2 875743656 +291 555 1 874868629 +151 478 5 879524471 +269 63 1 891450857 +11 97 4 891904300 +83 748 2 886534501 +83 125 5 880306811 +145 717 3 888398702 +56 426 4 892683303 +339 435 4 891032189 +35 242 2 875459166 +18 462 3 880130065 +194 708 3 879528106 +14 514 4 879119579 +345 651 4 884992493 +279 415 3 875314313 +12 471 5 879959670 +126 332 2 887853735 +16 22 5 877721071 +116 758 1 876452980 +220 325 1 881198435 +151 328 3 879523838 +280 11 5 891700570 +10 155 4 877889186 +73 1149 4 888626299 +180 213 5 877128388 +13 831 3 882398385 +181 1291 1 878963167 +92 132 3 875812211 +345 202 3 884992218 +269 482 3 891448823 +59 241 4 888205574 +322 508 4 887314073 +18 25 3 880131591 +343 135 5 876404568 +62 856 4 879374866 +144 528 4 888105846 +24 662 5 875323440 +108 282 3 879880055 +95 518 4 888954076 +276 383 2 877934828 +187 427 5 879465597 +13 315 5 884538466 +332 98 5 888359903 +12 172 4 879959088 +347 22 5 881654005 +201 8 3 884141438 +90 855 5 891383752 +193 1132 3 889127660 +99 203 4 885680723 +122 708 5 879270605 +15 742 2 879456049 +222 1239 2 881060762 +57 56 3 883698646 +332 595 4 887938574 +6 498 4 883601053 +339 58 3 891032379 +268 154 4 875743563 +102 202 4 892991269 +213 474 2 878955635 +73 196 4 888626177 +283 70 4 879298206 +122 212 5 879270567 +201 454 2 884111830 +298 652 3 884183099 +7 10 4 891352864 +314 29 5 877889234 +130 1277 4 876250897 +201 275 4 884113634 +304 681 2 884967167 +130 748 4 874953526 +118 176 5 875384793 +182 237 3 885613067 +13 794 4 882399615 +242 934 5 879741196 +69 1134 5 882072998 +77 153 5 884732685 +151 196 4 879542670 +279 202 4 875307587 +233 958 5 875508372 +284 682 3 885329322 +181 301 2 878961303 +286 419 5 889651990 +327 14 4 887744167 +256 195 5 882164406 +331 1100 2 877196634 +102 186 4 888803487 +119 338 1 892565167 +234 316 4 891033851 +295 378 4 879518233 +14 100 5 876965165 +184 1006 3 889910078 +216 721 4 880245213 +130 148 4 876251127 +130 229 4 875802173 +158 100 5 880132401 +222 972 2 881059758 +122 792 3 879270459 +59 14 5 888203234 +31 705 5 881548110 +254 501 3 886476281 +297 475 5 874954426 +193 328 3 889122993 +292 28 4 881105734 +1 49 3 878542478 +242 1152 5 879741196 +267 559 3 878972614 +82 705 3 878769598 +292 1039 4 881105778 +14 455 4 880929745 +308 511 5 887737130 +236 170 5 890116451 +334 4 3 891548345 +130 1215 2 876251389 +145 203 5 875271948 +156 205 3 888185735 +340 435 4 884990546 +94 385 2 891721975 +94 109 4 891721974 +168 988 2 884287145 +313 151 1 891014982 +96 645 5 884403020 +308 109 3 887738894 +94 393 3 891721684 +21 995 2 874950932 +5 234 2 875720692 +317 350 5 891446819 +102 62 3 888801812 +118 156 5 875384946 +276 786 3 874791694 +116 259 4 876452186 +81 93 3 876533657 +92 595 3 886443534 +250 111 4 878091915 +344 215 3 884900818 +320 148 4 884748708 +79 124 5 891271870 +94 313 4 891724925 +1 206 4 876893205 +128 966 4 879968071 +269 664 5 891457067 +318 795 2 884498766 +16 940 2 877721236 +54 276 5 880931595 +291 1109 4 874834768 +298 172 4 884124993 +234 292 4 891033821 +106 15 3 883876518 +114 1104 5 881260352 +299 137 4 877877535 +301 771 2 882079256 +73 7 4 888625956 +332 44 3 888360342 +308 1019 4 887738570 +187 28 4 879465597 +94 783 2 891723495 +15 137 4 879455939 +286 56 2 877531469 +222 756 4 877564031 +18 699 5 880130802 +68 245 3 876973777 +134 748 5 891732365 +334 1207 2 891550121 +243 223 4 879988262 +322 479 5 887313892 +334 481 5 891546206 +243 13 4 879987362 +268 16 3 875306691 +90 241 5 891384611 +267 484 5 878971542 +233 48 5 877663184 +77 4 3 884752721 +184 92 3 889908657 +148 596 5 877020297 +59 664 4 888205614 +110 734 2 886989566 +285 628 2 890595636 +244 101 5 880603288 +314 366 4 877891354 +303 654 5 879467328 +186 333 3 891718820 +92 785 3 875660304 +151 486 5 879525002 +6 188 3 883602462 +293 125 2 888905086 +194 51 4 879549793 +291 552 3 874834963 +87 790 4 879876885 +299 50 4 877877775 +56 1 4 892683248 +277 9 4 879543336 +174 823 4 886434376 +92 1047 1 875644796 +177 182 5 880130684 +41 751 4 890686872 +1 76 4 878543176 +113 262 2 875075983 +271 657 4 885848559 +323 7 2 878739355 +303 373 2 879544276 +138 238 5 879024382 +325 98 4 891478079 +106 64 4 881449830 +222 155 4 878184113 +345 367 4 884993069 +273 328 3 891293048 +144 1039 4 888105587 +157 127 5 886890541 +211 310 3 879461394 +56 31 4 892679259 +168 1016 5 884287615 +303 129 5 879468547 +76 258 3 875027206 +223 249 2 891549876 +60 28 5 883326155 +321 507 3 879441336 +141 932 3 884585128 +73 286 4 888792192 +226 480 4 883888853 +90 713 4 891385466 +272 172 4 879455043 +19 313 2 885411792 +145 286 3 875269755 +342 764 1 875318762 +224 322 2 888082013 +328 1126 3 885046580 +268 552 2 876514108 +179 354 4 892151331 +308 526 3 887739426 +267 693 4 878972266 +345 402 4 884993464 +6 213 4 883602462 +12 143 5 879959635 +210 160 4 887737210 +290 546 2 880475564 +293 300 2 888904004 +58 248 4 884794774 +303 181 5 879468082 +298 498 5 884182573 +347 501 4 881654410 +236 172 3 890116539 +102 121 3 888801673 +290 404 3 880475341 +92 123 2 875640251 +151 274 5 879542369 +6 432 4 883601713 +256 1289 4 882150552 +43 216 5 875981128 +189 632 5 893265624 +263 514 3 891299387 +22 117 4 878887869 +250 44 4 878090199 +269 188 2 891450675 +278 98 4 891295360 +155 294 3 879371194 +140 334 2 879013684 +18 190 4 880130155 +239 198 5 889181047 +104 342 3 888442437 +251 258 3 886271496 +72 64 5 880036549 +305 338 3 886308252 +72 566 4 880037277 +339 226 2 891034744 +1 72 4 878542678 +194 511 4 879520991 +316 549 5 880854049 +201 150 4 884139983 +206 1127 4 888180081 +48 187 5 879434954 +279 418 3 875733888 +94 153 5 891725333 +217 53 1 889069974 +94 765 3 891723619 +250 485 4 878092104 +79 288 3 891272015 +230 393 3 880485110 +128 64 5 879966954 +311 367 3 884365780 +76 518 3 875498895 +62 153 4 879374686 +6 515 4 883599273 +215 11 2 891436024 +145 569 4 877343156 +213 715 5 878955915 +94 1199 3 891724798 +10 294 3 879163524 +344 181 3 884901047 +53 100 5 879442537 +20 678 4 879667684 +207 294 3 875504669 +123 285 5 879873830 +256 1028 4 882151690 +174 94 2 886515062 +5 154 3 875636691 +308 488 4 887736696 +222 436 4 878184358 +200 7 4 876042451 +65 121 4 879217458 +7 485 5 891351851 +295 843 4 879517994 +63 111 3 875747896 +7 511 5 891351624 +198 11 4 884207392 +295 1503 2 879517082 +267 28 4 878972524 +91 99 2 891439386 +151 321 4 879523900 +13 302 5 881514811 +293 1098 2 888905519 +42 131 2 881108548 +328 1135 1 885045528 +14 519 5 890881335 +234 142 2 892334852 +230 154 4 880485159 +152 98 2 882473974 +164 313 5 889401284 +55 144 5 878176398 +318 1014 2 884494919 +3 332 1 889237224 +290 818 3 880732656 +125 175 2 879455184 +243 93 2 879987173 +21 670 3 874951696 +268 228 4 875309945 +7 654 5 892135347 +82 178 4 878769629 +318 524 3 884496123 +89 381 4 879459999 +301 123 4 882074726 +193 673 4 889126551 +1 185 4 875072631 +323 79 4 878739829 +21 219 5 874951797 +197 328 4 891409290 +184 15 3 889907812 +313 482 5 891016193 +109 823 3 880572296 +152 167 5 882477430 +297 629 3 875410013 +167 1147 4 892738384 +264 524 3 886123596 +280 571 3 891702338 +222 577 1 878185137 +21 591 3 874951382 +210 501 4 887736998 +280 230 3 891702153 +86 286 3 879569555 +320 174 4 884749255 +144 50 5 888103929 +256 97 4 882165103 +65 427 5 879216734 +198 429 4 884207691 +184 217 3 889910394 +151 709 5 879524778 +18 530 4 880129877 +43 724 4 875981390 +86 319 3 879569555 +242 305 5 879741340 +97 28 5 884238778 +114 195 4 881260861 +188 69 4 875072009 +301 230 4 882077033 +85 241 3 882995340 +129 313 3 883243934 +106 77 4 881451716 +261 748 3 890454310 +188 7 5 875073477 +13 208 5 882140624 +342 288 5 875318267 +299 286 4 877618524 +311 204 5 884365617 +125 813 1 879455184 +276 463 4 874792839 +13 421 2 882140389 +141 472 5 884585274 +222 550 3 878184623 +191 896 3 891562090 +144 516 2 888105197 +216 1047 3 881428365 +151 213 5 879524849 +144 845 4 888104191 +4 356 3 892003459 +96 64 5 884403336 +160 79 4 876859413 +49 369 1 888069329 +110 332 3 886987287 +209 351 2 883589546 +178 1004 4 882827375 +344 97 3 884901156 +11 203 4 891905856 +241 307 4 887249795 +239 312 2 889181247 +276 719 3 877935336 +18 191 4 880130193 +141 535 5 884585195 +18 971 4 880131878 +162 42 3 877636675 +342 591 3 875318629 +278 525 5 891295330 +102 217 2 888803149 +16 447 5 877724066 +343 82 5 876405735 +109 357 2 880572528 +301 732 4 882077351 +303 202 5 879468149 +250 378 4 878092059 +234 507 4 892334803 +217 68 3 889069974 +87 523 5 879875649 +95 26 3 880571951 +245 94 2 888513081 +95 289 2 879191590 +334 1008 4 891545126 +201 896 3 884110766 +126 323 3 887853568 +150 475 5 878746764 +59 871 2 888203865 +227 9 3 879035431 +169 603 5 891359171 +293 553 3 888907453 +201 190 4 884111873 +58 8 4 884304955 +303 840 2 879543988 +328 1106 2 893195825 +58 850 5 884305150 +299 101 2 889501721 +339 573 3 891036016 +235 198 3 889655044 +58 347 3 888638515 +291 455 5 874805958 +178 275 5 882823857 +99 1119 4 885680348 +296 292 5 884196057 +343 569 3 876406421 +18 513 4 880129769 +312 238 3 891699510 +62 294 1 879373215 +97 428 4 884239553 +215 64 4 891435804 +343 47 4 876405130 +334 223 5 891545973 +349 411 4 879466232 +311 433 3 884364931 +236 134 4 890116282 +27 596 2 891542987 +64 211 4 889739318 +144 713 4 888104322 +110 22 4 886987826 +109 665 5 880582384 +1 96 5 875072716 +267 597 3 878970805 +89 127 5 879441335 +59 258 3 888202749 +239 1245 5 889181092 +222 96 5 878181739 +8 294 3 879361521 +95 137 3 879192404 +280 566 4 891701188 +311 469 5 884366227 +11 521 2 891904174 +222 1226 4 883815840 +184 645 3 889910123 +17 1 4 885272579 +223 69 5 891550889 +64 429 4 889737800 +262 252 3 879790603 +87 154 4 879876564 +286 96 4 877532385 +207 53 1 881681725 +334 8 4 891547171 +79 937 2 891271180 +276 147 4 874786686 +314 328 4 877885887 +127 286 1 884364525 +94 203 5 885870577 +348 628 4 886523256 +348 370 4 886523621 +206 896 4 888180018 +85 508 2 879453040 +312 639 5 891698391 +59 1009 4 888203095 +344 1283 2 889814587 +188 211 4 875075062 +343 371 2 876405893 +184 972 3 889909962 +308 746 4 887739056 +62 298 4 879372304 +244 1017 4 880604583 +135 54 3 879858003 +14 151 5 876964725 +327 469 4 887822623 +148 71 5 877019251 +6 156 3 883602212 +52 257 3 882922806 +130 58 2 876251619 +222 413 3 881061213 +76 12 3 882606060 +44 317 4 878347633 +293 172 5 888905618 +95 32 1 888954726 +130 47 3 875801470 +12 97 5 879960826 +38 99 5 892430829 +13 409 3 882141872 +198 188 5 884208200 +328 144 4 885045740 +12 204 5 879960826 +241 750 5 887249576 +216 628 4 880235546 +201 357 4 884111217 +194 582 1 879535549 +72 45 5 880037853 +308 736 3 887738760 +128 427 5 879966685 +346 582 3 874951783 +178 546 3 888514680 +128 422 4 879968598 +44 82 4 878348885 +280 419 3 891701047 +13 910 2 890704721 +312 1021 3 891698365 +85 639 3 879454189 +222 313 4 883814858 +107 321 2 891264432 +5 436 5 875720717 +102 418 3 883748450 +309 326 5 877370383 +198 97 3 884207112 +339 97 4 891034626 +280 316 5 891700184 +303 325 1 879466249 +189 60 3 893265773 +279 1209 4 875314350 +293 68 3 888906990 +222 234 2 878181387 +184 855 4 889909474 +292 657 5 881103711 +323 1017 3 878739394 +303 450 3 879544386 +276 1210 2 877934988 +300 322 4 875650018 +59 972 4 888206125 +286 704 2 877531941 +249 13 4 879640396 +234 521 3 892079077 +83 294 3 887665569 +8 457 1 879361825 +279 1500 5 875306613 +200 218 5 884129410 +150 268 5 878746257 +257 305 4 882049607 +8 385 1 879362124 +28 100 5 881957425 +119 86 4 874782068 +155 328 2 879370860 +246 368 1 884924813 +273 345 3 891293108 +174 117 5 886434136 +230 125 5 880485090 +232 921 4 888549929 +198 323 2 884204637 +14 13 4 880929778 +276 448 4 874792692 +95 742 4 879193512 +103 126 5 880420002 +94 101 2 891720996 +234 1463 5 892333573 +267 187 5 878972071 +244 324 4 880601905 +279 577 1 889151559 +238 476 3 883576799 +158 228 5 880134296 +286 815 3 876521966 +195 298 4 888737703 +190 282 3 891033773 +92 42 4 875653664 +269 211 4 891449075 +188 628 5 875074200 +343 712 4 876406391 +343 375 2 876406978 +321 483 5 879439658 +45 121 4 881013563 +279 397 4 890780547 +23 483 4 884550048 +322 192 5 887313984 +13 318 3 882139686 +175 56 2 877107790 +91 331 5 891438245 +159 1002 3 884027027 +185 196 4 883524172 +244 179 5 880603833 +348 405 4 886523174 +296 950 4 884196741 +43 371 4 883955269 +16 230 5 877720813 +262 275 4 879961980 +102 686 3 888801673 +214 408 4 891543952 +277 151 3 879543768 +3 328 5 889237455 +119 526 2 886177762 +49 168 5 888068686 +63 288 3 875746948 +320 118 1 884748868 +92 825 4 875640487 +72 68 3 880037242 +271 133 4 885848971 +194 317 4 879521657 +13 898 1 884538403 +279 1495 4 889984565 +308 656 3 887736622 +253 568 4 891628295 +267 1401 4 878971816 +244 226 1 880602264 +295 401 3 879519390 +268 141 3 875744832 +344 119 5 884814457 +33 328 4 891964187 +344 619 4 885770181 +347 1035 3 881654522 +235 22 4 889655044 +313 114 4 891013554 +90 613 4 891383835 +72 12 5 880036664 +320 173 5 884750946 +271 435 4 885848802 +94 644 5 886008390 +194 648 4 879521936 +130 276 4 878537447 +340 1 5 884990988 +49 56 5 888067307 +307 143 3 879283203 +263 486 4 891299148 +1 213 2 876892896 +308 826 3 887739427 +151 464 4 879524089 +345 88 4 884992940 +265 328 4 875320084 +240 300 3 885775563 +82 191 4 878769748 +25 498 4 885852086 +151 100 3 879524514 +222 40 1 881060550 +197 385 2 891409893 +293 655 3 888905618 +280 404 3 891701114 +210 404 5 887736739 +234 213 3 892079190 +318 248 3 884494976 +104 544 3 888465413 +336 619 3 877759833 +308 475 4 887737193 +23 228 4 874785582 +234 850 2 892336047 +94 232 3 891721584 +1 233 2 878542552 +144 304 4 888103466 +295 1040 2 879519180 +130 228 4 875216420 +275 630 3 880315243 +63 250 5 875747789 +20 194 3 879669152 +354 462 3 891218116 +308 322 2 887736408 +145 185 4 875271838 +110 1206 3 886988321 +303 410 4 879484846 +317 300 4 891446313 +180 631 5 877544373 +343 76 4 876407565 +345 48 5 884902317 +301 89 2 882076046 +181 1312 1 878962349 +102 233 3 888801622 +64 222 4 889739733 +303 233 4 879484981 +41 313 3 890685449 +229 260 1 891632437 +144 855 4 888105510 +59 569 4 888206161 +191 313 5 891560481 +305 212 3 886324058 +14 408 5 879119348 +279 216 3 884983225 +316 735 4 880854337 +193 288 1 889123777 +216 231 2 880245109 +201 537 3 884141053 +348 240 3 886523839 +22 683 1 878886307 +104 823 1 888465554 +341 294 3 890757997 +169 172 5 891359317 +213 509 4 878955372 +101 840 3 877136659 +90 313 5 891382163 +159 831 2 880557604 +65 191 4 879216797 +114 204 3 881260441 +215 205 3 891435161 +184 259 3 889907096 +121 125 2 891388600 +279 992 4 889151559 +94 1074 2 891723427 +59 229 3 888205921 +73 479 5 888625127 +59 7 4 888202941 +254 472 3 886474456 +29 358 2 882821044 +145 553 3 875272786 +230 199 3 880484755 +234 731 2 892336194 +52 116 4 882922328 +218 33 4 881288386 +203 117 4 880434810 +99 346 4 885678415 +146 307 3 891457905 +59 100 5 888202899 +298 144 4 884182838 +343 655 5 876405697 +297 98 5 875238579 +119 866 3 874774575 +24 129 3 875246185 +181 824 1 878963305 +334 250 3 891544840 +32 250 4 883717684 +181 1384 1 878962052 +92 48 4 875653307 +197 748 3 891409323 +116 840 1 886309958 +251 121 4 886272118 +2 312 3 888550631 +158 68 3 880134532 +275 304 3 876197368 +145 174 5 882181728 +279 1487 1 875314076 +234 8 5 892079585 +193 234 3 889126551 +339 270 2 891036753 +64 8 4 889737968 +354 133 3 891217547 +215 239 3 891436297 +184 531 4 889910653 +233 174 5 877661553 +222 182 4 881058666 +7 168 5 891351509 +90 435 5 891383350 +140 289 4 879013719 +315 223 5 879799486 +293 781 2 888907644 +240 288 5 885775536 +222 829 3 877563934 +311 378 5 884366363 +201 271 4 884110967 +161 56 3 891171257 +181 882 1 878962006 +311 951 3 884365548 +7 269 3 891349991 +43 241 4 883955441 +59 208 5 888205533 +323 246 4 878739177 +224 325 1 888082045 +318 197 5 884496030 +178 1012 4 884837364 +214 531 4 891544222 +49 313 3 888065527 +95 737 3 879197021 +345 174 4 884992367 +333 66 5 891045515 +174 255 5 886434114 +21 569 3 874951820 +328 402 3 885047627 +280 323 2 891700106 +308 233 3 887738346 +314 623 5 877890927 +292 510 4 881104093 +276 684 4 874792436 +237 1192 5 879376553 +7 285 5 891351813 +58 340 4 884305708 +62 1060 1 879373007 +151 224 5 879524293 +96 100 5 884403758 +354 242 5 891180399 +79 269 5 891271792 +91 131 2 891439471 +299 645 4 877881276 +344 283 4 884814432 +62 1136 3 879375977 +152 220 5 884035907 +92 1041 3 875907675 +342 723 3 875319659 +268 949 2 875743909 +234 501 4 892334543 +178 135 2 882826915 +267 470 4 878972931 +159 871 4 880557003 +236 79 4 890118417 +254 183 4 886472713 +238 181 3 883576336 +329 129 3 891655905 +293 282 2 888905170 +135 176 4 879857765 +204 258 2 892388976 +294 547 3 877819972 +151 494 4 879524244 +311 258 4 884363706 +244 1178 3 880608134 +270 596 5 876954456 +83 892 2 891181444 +296 1142 5 884196524 +301 483 4 882076403 +130 222 4 874953769 +102 173 3 888803602 +299 1227 1 878192556 +16 228 5 877720733 +334 461 3 891547744 +343 187 4 876406006 +256 1119 3 882165032 +21 217 3 874951727 +276 22 5 874787496 +315 234 3 879821349 +194 30 3 879524504 +244 54 2 880607335 +87 629 4 879877006 +49 213 3 888066486 +255 249 5 883216245 +325 865 3 891478079 +178 210 5 884837073 +279 167 3 875312441 +11 47 4 891904551 +311 82 5 884364436 +292 405 3 881104820 +58 1106 4 892068866 +57 866 3 883697915 +162 174 4 877636772 +310 832 1 879436035 +345 473 2 884991244 +354 257 3 891216735 +164 322 4 889401432 +117 421 5 881012601 +330 447 4 876546619 +339 475 5 891032856 +5 42 5 875636360 +82 11 4 878769992 +209 898 3 883460304 +214 285 5 892668153 +60 751 2 883325421 +220 301 4 881197948 +214 1039 4 891544269 +133 315 4 890588524 +13 764 2 882141997 +338 204 3 879438063 +178 193 4 882826868 +11 204 3 891904920 +186 591 4 879023073 +193 117 4 889125913 +264 516 5 886123655 +248 100 4 884534716 +178 284 4 888514680 +117 168 5 881012550 +224 569 3 888104313 +223 248 1 891549683 +162 50 5 877635662 +129 339 2 883244737 +7 432 4 891352831 +77 181 3 884732278 +279 662 2 875310631 +287 39 5 875336652 +157 273 5 886889876 +331 190 3 877196308 +177 1 3 880130699 +286 234 3 877532093 +10 656 5 877886846 +89 117 5 879441357 +327 143 4 888251408 +116 806 4 876453800 +207 313 4 885066537 +87 519 4 879877652 +28 174 5 881956334 +181 1128 1 878962279 +297 56 5 875239422 +246 100 4 884921033 +188 173 5 875075118 +119 486 4 874781547 +283 588 4 879297965 +188 210 4 875071891 +291 770 4 874834799 +109 278 3 880571770 +11 402 4 891904662 +248 928 3 884536117 +258 313 5 885700778 +256 576 3 882164603 +187 792 5 879465340 +291 175 2 874867966 +189 652 5 893265428 +313 163 2 891016757 +181 1371 1 878962240 +239 479 5 889178762 +119 546 4 874775914 +144 521 4 888105312 +305 298 4 886322150 +343 823 3 876403851 +326 732 5 879877143 +95 675 2 888954310 +279 408 5 875249210 +276 456 2 874787237 +345 151 5 884991191 +184 604 4 889908693 +277 129 4 879543653 +197 720 2 891410039 +253 294 4 891627829 +303 9 5 879466830 +296 654 5 884197419 +32 246 4 883717521 +279 530 3 890780576 +49 590 1 888067579 +95 474 4 880570909 +318 1032 3 884498210 +318 194 5 884495590 +286 683 5 884583549 +191 307 3 891560935 +48 50 4 879434723 +298 195 4 884183277 +171 245 3 891034801 +339 82 4 891035850 +81 926 3 876533824 +207 42 4 877878688 +269 153 3 891449346 +303 1071 2 879485352 +7 54 3 892132380 +339 198 5 891033382 +11 435 4 891904968 +23 421 5 874786770 +188 511 2 875072211 +137 327 4 881432671 +76 690 2 882607017 +38 720 5 892432424 +221 1035 3 875246124 +59 928 4 888203449 +13 814 5 886302261 +318 315 5 884470294 +342 607 3 875318963 +200 121 5 876042268 +269 654 4 891448980 +7 89 5 891351082 +136 847 4 882693371 +254 243 2 887347834 +183 483 5 892323452 +84 265 5 883453617 +151 193 4 879524491 +70 751 4 884063601 +314 938 3 877886099 +291 1239 2 874835279 +234 192 3 892078984 +38 67 4 892434312 +156 12 3 888185853 +56 228 3 892676340 +354 463 4 891217575 +311 178 5 884364437 +122 214 2 879270676 +314 591 5 877887002 +1 258 5 878873389 +230 209 1 880485283 +42 142 4 881109271 +328 750 4 885044519 +130 357 5 875216933 +267 464 5 878974783 +267 324 3 878970114 +190 300 4 891033606 +276 853 5 889174849 +193 465 3 889126867 +59 126 5 888202899 +347 416 3 881654715 +109 69 4 880572561 +296 948 1 884196149 +28 143 4 881956564 +351 340 1 879481424 +59 760 2 888203659 +318 503 4 884497402 +181 335 1 878961748 +48 654 5 879434792 +94 693 4 891720921 +215 450 2 891436470 +82 518 4 878769747 +155 325 2 879371261 +303 318 5 879466523 +23 28 3 874786793 +1 81 5 875072865 +303 416 3 879468179 +320 472 3 884748750 +57 410 3 883697378 +305 192 2 886323275 +293 144 4 888905819 +13 387 3 886304229 +327 215 4 887820695 +327 886 2 887737493 +299 367 4 878192497 +9 286 5 886960055 +111 326 3 891680131 +246 451 2 884923003 +260 1025 5 890618729 +293 239 3 888907166 +305 151 4 886324433 +116 1253 2 876454109 +124 166 5 890287645 +161 213 2 891171887 +198 15 3 884205185 +313 132 5 891013589 +268 717 1 876513785 +113 100 4 875935610 +42 281 3 881105728 +234 709 4 892079337 +128 609 4 879967550 +293 1101 3 888906677 +156 64 3 888185677 +194 808 2 879527999 +25 455 4 885853415 +282 258 5 879949367 +327 82 2 887820448 +64 56 5 889737542 +201 276 5 884111598 +314 126 2 877886971 +325 177 5 891478627 +136 747 4 882848866 +181 1318 1 878962349 +280 265 4 891700588 +271 283 4 885847876 +262 405 2 879962367 +6 205 3 883600878 +308 283 3 887737194 +6 133 4 883601459 +130 158 5 875801897 +85 289 3 879452334 +239 530 5 889179290 +122 553 3 879270741 +7 530 5 891350900 +334 59 5 891546000 +18 14 5 880130431 +95 132 3 880570993 +313 670 3 891029877 +279 412 3 875297708 +184 462 4 889908873 +102 685 3 888801876 +271 732 4 885848672 +10 64 4 877886598 +164 125 5 889402071 +276 230 4 882659602 +216 367 3 881428365 +49 628 4 888068167 +141 50 4 884584735 +114 191 3 881309511 +82 127 2 878769777 +207 1378 3 877878714 +55 56 4 878176397 +89 221 1 879441687 +334 474 3 891546257 +160 21 1 876769480 +311 326 2 884364047 +286 191 4 877531407 +23 177 4 884550003 +32 100 3 883717662 +332 156 4 888359944 +236 478 3 890118106 +251 50 5 886272086 +7 489 3 891353477 +59 134 5 888204841 +43 117 4 883954853 +99 258 5 885678696 +295 153 5 879517324 +1 78 1 878543176 +6 70 3 883601427 +13 894 1 883670742 +279 753 2 875307443 +11 735 3 891904300 +92 778 4 875811457 +257 151 4 882050266 +23 705 4 874785526 +320 411 3 884749119 +288 202 5 889225535 +234 921 4 892079434 +358 469 4 891271063 +13 341 2 886952422 +343 275 5 876408139 +326 646 2 879875112 +256 172 3 882164443 +90 272 5 891382121 +294 118 3 877819941 +321 30 4 879439658 +339 133 4 891033165 +205 289 4 888284710 +236 307 4 890117902 +244 747 4 880606760 +303 194 5 879466742 +6 481 5 883600914 +236 204 3 890118393 +90 269 5 891382310 +181 319 3 878961173 +193 268 3 889122906 +159 451 5 884360502 +312 675 5 891698485 +234 79 3 892079910 +214 7 5 892668130 +303 480 4 879466523 +7 657 4 891351234 +305 806 3 886322720 +18 89 3 880130065 +181 676 3 878962392 +180 421 5 877128388 +119 272 5 886611471 +160 432 3 876861185 +227 244 3 879035205 +189 1098 4 893265506 +291 1253 3 874834944 +54 327 5 880928893 +95 417 3 888956158 +318 239 4 884497235 +303 506 4 879467328 +340 405 5 884991817 +62 306 4 879371909 +279 702 4 875309760 +181 742 4 878962623 +197 187 5 891409798 +10 702 3 877886722 +296 279 4 884196640 +269 179 4 891447141 +5 422 4 875636767 +58 663 2 884304728 +343 20 5 876408138 +270 441 5 876956420 +312 1124 4 891698553 +310 748 3 879435729 +236 735 5 890116599 +13 452 3 882397039 +291 470 3 874834768 +92 281 3 875812331 +295 412 2 879519237 +346 245 4 875266665 +46 127 5 883616133 +62 100 4 879372276 +343 12 5 876405735 +103 300 3 880416727 +174 369 1 886515272 +85 566 3 879454273 +217 554 3 889070050 +31 504 5 881548110 +82 476 3 878768765 +91 265 5 891439018 +48 202 4 879434791 +130 3 5 876250897 +83 22 5 880307724 +59 188 4 888205188 +236 661 3 890116451 +152 255 5 884035936 +352 55 1 884289728 +262 790 3 879795379 +326 503 3 879876542 +145 200 4 877343121 +216 172 4 880234639 +233 57 5 880190451 +314 1520 3 877892052 +131 313 5 883681723 +307 427 3 877121988 +360 334 4 880353736 +292 124 4 881104147 +152 1028 5 880149197 +314 268 5 877885836 +160 175 4 876860808 +277 117 4 879544145 +318 49 3 884497257 +354 694 5 891217299 +294 250 5 877819459 +264 1270 2 886122194 +276 249 4 874786632 +222 1089 1 877563659 +218 504 3 881288574 +56 623 3 892910268 +13 25 1 882141686 +13 632 3 884538664 +292 151 5 881104268 +130 374 4 875217392 +24 508 4 875323833 +318 384 3 884498210 +93 275 4 888705224 +7 142 3 891354090 +144 293 4 888104283 +308 1046 4 887740649 +78 269 3 879633467 +276 228 4 880913800 +142 895 4 888640143 +234 294 3 891033715 +234 1123 3 892335342 +87 1190 4 879876336 +286 790 1 877535208 +318 934 4 884495382 +215 474 4 891435022 +68 1047 1 876974379 +7 423 5 891351509 +110 204 3 886989276 +346 62 3 875263634 +72 181 1 880037203 +303 160 4 879468375 +200 357 5 884128498 +262 845 4 879962052 +235 474 5 889655112 +326 526 5 879874964 +125 949 3 892838623 +7 156 5 891351653 +347 79 5 881653890 +13 416 3 882398934 +127 227 4 884364867 +13 502 5 882141458 +308 490 4 887738104 +222 672 1 878183777 +251 132 5 886271641 +109 742 5 880564457 +97 655 5 884238860 +222 94 3 878184866 +303 234 5 879467260 +295 1459 5 879519237 +325 143 1 891479017 +186 742 3 879023073 +68 1028 4 876974430 +15 696 2 879456262 +256 662 2 882165032 +28 271 4 881955281 +49 129 2 888068079 +127 300 5 884364017 +102 326 3 879082298 +144 900 4 888103371 +314 204 5 877888644 +293 153 4 888905948 +79 286 5 891271792 +315 302 5 879799301 +181 1202 1 878962720 +23 188 3 877817151 +83 323 4 883868420 +59 48 5 888204502 +294 7 4 877819563 +257 307 4 879029581 +49 3 3 888068877 +56 98 4 892679067 +43 225 2 875975579 +280 125 2 891701148 +346 4 4 874948105 +292 429 5 881105587 +151 1065 3 879542413 +178 849 3 882828021 +145 281 4 875272299 +327 90 3 887819194 +130 183 5 875801369 +213 11 4 878956156 +42 451 2 881108982 +268 1059 3 875743310 +279 727 3 890780864 +18 194 3 880129816 +312 57 5 891699599 +69 109 3 882145428 +112 306 5 891299783 +308 170 3 887737130 +325 474 5 891478392 +314 785 3 877890960 +327 949 4 887819316 +94 829 2 891724800 +222 419 2 878182279 +42 25 3 881110670 +296 685 4 884196896 +189 274 4 893264735 +280 381 3 891700925 +144 22 5 888105439 +109 245 3 880562908 +119 658 5 874782127 +172 697 3 875536498 +18 515 5 880130155 +222 364 1 878185137 +87 393 4 879876703 +244 208 5 880606300 +363 391 2 891498811 +332 148 5 887938486 +272 474 5 879454753 +95 523 4 879197562 +102 183 4 888801360 +294 299 3 877818982 +27 925 3 891543245 +164 984 4 889401456 +121 9 5 891390013 +340 204 4 884990004 +115 530 5 881172117 +334 72 3 891549192 +268 31 4 875310311 +60 514 4 883326300 +145 637 3 882182689 +90 6 4 891384357 +344 508 4 884814697 +98 70 3 880499018 +279 1000 4 875314313 +279 390 3 875744641 +157 407 4 886891218 +334 289 3 891544491 +307 527 5 878066938 +327 237 4 887745494 +308 116 4 887737594 +211 687 2 879437184 +189 173 5 893265160 +271 200 5 885849356 +342 1007 4 874984507 +328 188 5 885046498 +144 204 2 888105116 +43 298 4 875975211 +268 826 1 875743065 +149 269 5 883512557 +92 252 4 886443582 +339 214 3 891033226 +18 286 5 880129305 +169 181 5 891359276 +189 281 2 893264766 +254 238 3 886473120 +250 1014 4 883263439 +130 946 4 875801830 +172 657 3 875538027 +10 615 4 877892276 +216 95 3 881428365 +95 24 3 879192542 +360 116 3 880354275 +301 692 3 882076619 +345 121 3 884991384 +164 245 5 889401362 +323 744 5 878739436 +264 558 5 886122447 +197 340 2 891409199 +237 28 4 879376435 +196 306 4 881251021 +179 305 4 892151270 +342 132 5 875319129 +56 82 4 892676314 +346 187 3 874948030 +118 547 5 875385228 +332 1150 3 887938631 +250 742 3 878089786 +193 871 3 890860319 +293 447 4 888907290 +348 928 5 886523683 +339 12 5 891032659 +292 343 2 881103478 +209 349 2 883589546 +23 99 4 874786098 +49 258 2 888065895 +234 490 4 892079803 +201 447 5 884112581 +43 501 4 883955605 +290 550 3 880475807 +276 290 4 874786854 +346 322 3 886273541 +292 252 3 881104881 +363 405 4 891497015 +355 300 4 879486529 +351 879 5 879481461 +211 263 3 879461395 +332 696 3 887938760 +118 185 5 875384979 +308 483 3 887736843 +100 689 3 891375212 +241 880 5 887249889 +253 566 4 891628578 +292 919 5 881103508 +334 207 4 891545950 +223 255 4 891549382 +313 174 4 891014499 +244 1098 5 880605578 +299 501 3 889501790 +328 284 3 885047593 +18 71 4 880131236 +232 471 3 880062414 +311 174 5 884364538 +7 608 4 891351653 +201 708 4 884140247 +345 285 5 884901701 +184 1136 4 889912890 +130 49 4 875802236 +232 22 3 888549988 +46 288 2 883611307 +213 151 5 878955886 +210 216 4 887737603 +75 475 5 884049939 +90 323 3 891382634 +14 7 5 876965061 +1 212 4 875072895 +272 772 2 879455220 +332 1016 5 887916529 +117 597 4 881010052 +184 287 4 889908050 +79 813 5 891271792 +10 200 5 877889261 +119 144 4 887038665 +158 277 4 880132658 +59 570 4 888205745 +322 185 5 887313850 +129 995 2 883245452 +42 692 4 881107773 +298 496 5 884127603 +318 481 4 884496156 +293 134 5 888905618 +60 1126 4 883327174 +285 538 5 890595479 +345 919 2 884991077 +72 70 4 880036691 +342 25 2 875318328 +94 31 4 891721286 +223 717 1 891550470 +339 190 4 891034215 +130 346 4 884623704 +218 265 3 881288408 +362 333 5 885019261 +334 450 1 891550338 +176 751 1 886046979 +145 1212 2 875272196 +189 815 3 893264558 +60 485 4 883327222 +293 257 2 888904696 +306 100 4 876504286 +308 319 4 887736408 +130 53 3 876251972 +320 501 3 884751462 +321 1194 5 879438607 +155 319 3 879370963 +338 310 3 879437522 +214 325 3 891542622 +49 418 3 888067031 +57 1028 3 883697432 +236 185 5 890118307 +138 617 4 879024128 +232 173 4 888549674 +331 100 4 877196308 +297 157 2 875238853 +95 88 4 880571016 +268 333 4 876513565 +58 156 5 884304955 +299 378 3 878192680 +294 327 3 877818982 +286 1091 4 877534859 +234 601 3 892334765 +207 156 2 878104438 +269 492 4 891449550 +357 284 4 878951691 +255 53 3 883216672 +92 717 3 886443416 +13 161 5 882397741 +65 197 5 879216769 +17 237 2 885272628 +167 698 4 892738307 +313 609 3 891014782 +42 99 5 881108346 +65 210 4 879217913 +303 366 3 879485221 +233 98 5 877661724 +354 86 5 891218312 +268 1090 2 875745536 +7 226 5 891353614 +81 7 4 876533545 +323 886 3 878738997 +119 87 5 874781829 +299 418 4 889501790 +174 456 1 886515240 +8 89 4 879362124 +79 900 4 891271245 +232 215 3 888549563 +271 338 1 885847194 +356 313 5 891405651 +177 271 2 882141868 +181 458 3 878962350 +6 151 3 883599558 +363 1495 5 891497278 +117 751 5 886018996 +306 744 4 876504054 +90 494 5 891383241 +117 368 3 881010610 +181 1386 1 878962119 +233 418 4 877664010 +44 542 3 878348036 +13 303 4 881514876 +127 243 5 884364764 +92 561 3 875812413 +236 864 2 890117073 +234 660 4 892334543 +363 1168 2 891496587 +177 150 4 880130807 +117 121 4 880126038 +301 514 3 882076021 +194 1 4 879539127 +276 496 4 882659476 +221 1210 3 875246887 +363 673 2 891496543 +218 516 5 877488692 +85 414 4 879828720 +60 498 5 883326566 +188 233 3 875074266 +144 960 2 888105784 +184 88 3 889909551 +83 412 1 883868208 +194 631 2 879546551 +11 751 2 891902092 +178 1051 3 885784583 +318 1023 2 884495091 +328 132 5 885046420 +142 28 4 888640404 +293 657 4 888905582 +13 437 1 882397068 +246 231 1 884922898 +346 727 1 874947794 +323 199 4 878739953 +194 510 4 879521474 +99 123 3 885678997 +280 483 4 891701066 +314 1276 4 877887179 +305 943 2 886323464 +106 923 4 881453355 +174 383 1 886515171 +62 955 4 879374072 +10 223 5 877888545 +234 526 3 892334045 +92 660 4 875654125 +361 273 3 879441215 +1 143 1 875072631 +332 258 5 887916151 +286 559 4 877534081 +308 805 4 887739471 +326 448 3 879877349 +323 22 5 878739743 +365 301 5 891303586 +23 315 3 884550320 +256 783 4 882165328 +3 334 3 889237122 +195 99 3 888737277 +236 223 5 890116032 +38 389 5 892433660 +95 505 3 888954513 +351 873 3 879481643 +271 83 4 885848408 +297 250 1 874955085 +91 351 4 891438617 +119 472 4 874775406 +42 1051 4 881106270 +270 703 4 876955019 +311 526 5 884364873 +94 562 3 891721494 +352 746 4 884290361 +350 174 5 882346720 +233 286 3 876690514 +250 1 4 883263374 +154 806 4 879139040 +255 569 1 883216672 +229 875 1 891632402 +332 1013 3 887938798 +58 237 4 884304396 +320 976 2 884749567 +307 169 5 879283625 +110 794 3 886988909 +244 818 2 880605010 +330 596 5 876544690 +343 474 5 876406677 +59 25 4 888203270 +64 173 5 889737454 +280 934 2 891702291 +283 627 4 879297966 +314 120 3 877887094 +336 13 3 877756890 +312 587 3 891699399 +222 411 3 878185137 +181 933 1 878962675 +270 741 5 876953967 +59 65 4 888205265 +174 63 4 886514985 +313 44 3 891015049 +264 208 5 886123415 +59 382 4 888205574 +301 511 4 882075803 +341 877 3 890758113 +60 1124 4 883326652 +303 849 3 879485589 +1 151 4 875072865 +13 786 3 886303088 +56 94 4 892910292 +59 175 4 888205300 +58 246 5 884304592 +234 95 3 892079689 +365 15 3 891304152 +164 148 5 889402203 +194 202 3 879524216 +151 425 4 879528647 +83 1043 3 880308807 +116 180 5 886310197 +49 347 3 888065487 +233 644 5 880610635 +102 271 2 888781860 +144 285 4 888103969 +71 475 5 877319330 +145 1077 3 875272245 +299 742 4 877878339 +263 79 4 891298047 +276 631 3 874796412 +308 968 4 887739987 +1 51 4 878543275 +269 435 3 891449011 +95 736 4 888954170 +311 708 5 884366397 +244 90 4 880607684 +313 318 4 891013712 +258 310 5 885700778 +123 485 5 879872792 +334 183 4 891545950 +130 743 2 878537778 +269 64 4 891447960 +328 451 4 885048159 +43 300 5 875975135 +130 12 4 875216340 +90 185 5 891384959 +12 132 5 879959465 +189 216 5 893265478 +207 135 2 877822350 +315 55 5 879821267 +5 139 3 875721260 +195 469 3 880710046 +88 302 3 891037111 +153 678 2 881370935 +148 1012 4 877400154 +270 155 5 876955770 +218 273 4 881288351 +145 674 4 877343184 +223 369 1 891550253 +222 4 3 878183924 +128 785 2 879968243 +192 127 4 881367456 +228 651 4 889388521 +354 191 4 891217082 +328 82 4 885046537 +344 716 3 884901403 +38 450 1 892432624 +269 137 4 891446193 +248 55 4 884534793 +310 304 5 879435664 +13 612 4 882140318 +130 335 3 875801254 +62 774 1 879376483 +135 77 4 879858003 +294 264 2 877819090 +89 813 5 879461219 +194 433 3 879523104 +94 39 3 891721317 +318 396 1 884498684 +151 223 5 879524088 +181 1120 1 878962279 +312 234 5 891712535 +177 175 5 880130972 +297 50 5 874954541 +313 162 3 891017270 +275 89 3 875154878 +293 202 3 888906490 +330 465 5 876547250 +323 100 4 878739177 +135 566 3 879857930 +229 358 1 891632437 +288 900 5 886372155 +295 1221 5 879518455 +162 151 3 877636191 +87 55 4 879875774 +128 378 5 879967804 +268 267 3 875742077 +282 302 5 879949347 +361 222 2 879441253 +280 286 4 891700185 +334 276 4 891545089 +361 387 3 879441008 +87 385 5 879875818 +344 175 5 884901110 +312 481 5 891698893 +130 1047 5 875801897 +357 222 5 878951498 +190 118 3 891033906 +308 192 5 887736696 +106 8 4 881452405 +357 928 4 878952041 +320 678 3 884748418 +217 117 4 889069842 +216 764 2 880233153 +230 633 4 880485283 +263 82 4 891299697 +233 495 4 877661364 +314 672 5 877888723 +204 310 1 892389073 +279 240 4 889151559 +188 195 3 875073179 +177 179 5 880131057 +181 330 1 878961668 +184 458 3 889907925 +86 872 3 879570366 +79 313 2 891271086 +53 181 4 879443046 +125 204 5 879454139 +326 528 3 879875112 +276 747 4 874795448 +238 300 4 883575836 +39 333 4 891400214 +201 175 2 884140022 +276 746 4 874791806 +13 334 1 886952467 +117 12 5 881011350 +301 651 5 882075994 +280 790 4 891702013 +3 350 3 889237076 +345 956 4 884916322 +174 393 4 886514837 +181 866 1 878963037 +290 158 5 880474977 +360 238 4 880355845 +247 257 4 893081396 +162 117 4 877635869 +43 336 4 880317271 +258 311 4 885700946 +348 819 4 886523710 +191 328 3 891562090 +215 483 4 891435022 +184 665 2 889910098 +114 157 2 881260611 +184 52 4 889910034 +49 821 1 888069246 +233 212 5 877665324 +345 173 5 884902317 +55 1089 1 878176134 +293 99 3 888906402 +13 353 4 886261450 +99 196 4 885680578 +49 325 3 888065744 +367 1012 4 876689825 +123 127 5 879809943 +194 383 1 879554842 +141 825 4 884585247 +323 150 4 878739568 +279 1180 2 890781034 +330 575 4 876547165 +109 1244 3 880571872 +177 318 4 880130618 +85 792 4 879828941 +248 249 4 884536117 +298 237 5 884126240 +276 139 4 889174904 +23 257 3 890276940 +52 657 5 882922833 +201 1194 4 884111899 +330 8 5 876546236 +268 403 4 875309914 +70 176 4 884066573 +280 53 5 891702544 +234 152 4 892826701 +13 759 2 882398542 +325 181 4 891478160 +268 269 4 876513523 +154 202 3 879139096 +222 689 4 881058008 +354 269 4 891180399 +42 222 4 881105882 +99 232 4 886519075 +96 170 5 884403866 +111 1024 3 891679939 +87 300 3 879875418 +328 349 2 888641949 +13 190 4 882397145 +347 227 4 881654734 +117 258 4 880126022 +229 286 4 891633029 +329 591 2 891655812 +345 508 4 884901000 +291 396 4 874867757 +320 1188 4 884749411 +94 34 1 891723558 +72 515 4 880036602 +218 695 3 881288574 +18 12 5 880129991 +346 1110 1 875264985 +218 762 4 877489091 +178 58 5 882827134 +334 302 5 891544177 +303 49 2 879483901 +145 1208 4 875272196 +42 925 4 881106113 +329 79 4 891656391 +286 11 5 877531975 +33 343 4 891964344 +326 79 4 879875203 +339 183 4 891032828 +308 521 3 887736798 +264 1225 3 886123530 +130 672 5 875801920 +114 183 5 881260545 +276 229 3 874792483 +11 383 2 891905555 +256 202 3 882165032 +273 311 4 891292905 +116 661 4 876454023 +13 137 5 882139804 +332 82 5 888098524 +6 479 5 883601053 +91 689 5 891438617 +79 137 4 891271870 +308 265 3 887737647 +10 651 4 877888812 +295 1401 5 879966498 +18 181 3 880131631 +49 299 2 888068651 +343 423 5 876408139 +92 423 3 875655990 +244 762 3 880604616 +363 288 4 891493723 +43 423 4 883955498 +201 1425 3 884111637 +84 31 4 883453755 +59 1047 2 888203371 +234 157 2 892334400 +300 328 3 875650068 +345 1082 2 884994569 +191 269 3 891562090 +268 114 5 875744966 +147 269 4 885593812 +71 222 3 877319375 +76 59 4 875027981 +232 462 4 888549879 +102 248 3 877915935 +205 326 4 888284454 +200 25 4 876042234 +311 431 4 884365201 +197 195 5 891409798 +356 937 2 891406040 +303 1016 3 879544727 +101 815 3 877136392 +119 1259 3 874780996 +264 56 5 886122261 +210 447 5 887737631 +276 63 3 874792168 +308 178 4 887737719 +64 181 4 889737420 +303 1014 3 879544588 +271 284 3 885847956 +201 513 3 884114069 +92 628 4 875639823 +54 333 5 880928745 +301 187 4 882076403 +81 410 4 876533946 +31 498 4 881548111 +21 234 5 874951657 +311 212 3 884366397 +264 792 5 886123415 +132 137 4 891278996 +307 463 5 879283786 +311 275 4 884963136 +22 403 5 878887810 +43 318 5 875975717 +201 61 2 884111986 +186 770 2 879023819 +125 475 1 879454244 +339 73 3 891035003 +145 120 2 888398563 +51 132 4 883498655 +130 84 4 876252497 +347 144 5 881654186 +110 715 2 886989440 +100 905 3 891375630 +311 470 3 884365140 +189 248 4 893264174 +365 1017 4 891304213 +44 227 4 883613334 +201 1098 2 884112747 +295 25 5 879518042 +193 276 4 890860319 +125 1093 1 892839412 +10 711 4 877888812 +276 272 5 885871447 +43 1053 3 883955859 +342 427 4 875319254 +14 211 4 879119693 +8 190 4 879362183 +280 144 2 891700514 +333 739 5 891045410 +11 721 3 891905279 +94 380 3 891722760 +8 686 3 879362356 +115 462 4 881171273 +264 559 5 886122446 +299 297 3 877877691 +299 1021 3 878192721 +268 483 5 875309859 +95 202 4 879198209 +24 25 4 875246258 +159 546 4 880557621 +174 312 5 886432972 +368 379 4 889783562 +293 943 2 888906576 +186 550 4 879023985 +250 582 4 878090114 +185 638 4 883524364 +234 566 2 892335108 +221 257 4 875244475 +187 659 5 879465274 +313 187 4 891014373 +116 199 4 876454174 +109 9 3 880564607 +174 412 1 886433919 +7 208 5 891352220 +371 97 5 877487440 +296 255 2 884196584 +280 82 2 891700925 +271 275 4 885847693 +110 791 2 886989473 +59 926 1 888203708 +217 576 1 889070087 +145 665 5 877343212 +334 204 4 891547190 +42 568 4 881107256 +200 143 5 884128499 +89 387 5 879459909 +311 588 4 884365284 +235 269 4 889654530 +287 156 5 875336804 +344 204 4 884901024 +43 289 4 875975085 +99 11 5 885680138 +145 159 4 875272299 +200 82 5 884129656 +269 316 4 891446132 +13 517 5 882139746 +184 208 4 889908985 +327 144 4 887820293 +218 517 3 877488634 +6 487 5 883600785 +279 792 3 875308843 +268 161 3 875744199 +85 124 5 882813248 +75 472 4 884050733 +18 483 4 880129940 +234 291 3 892335342 +196 238 4 881251820 +318 750 4 884469971 +2 281 3 888980240 +295 102 4 879518339 +276 81 4 874791101 +194 1409 2 879552662 +291 1078 4 875086920 +145 896 2 888396828 +160 762 3 876769148 +290 216 4 880475218 +174 1254 1 886434421 +327 435 4 888251521 +145 471 4 885622707 +83 465 4 880308578 +277 591 4 879543768 +214 56 5 892668130 +345 1315 3 884994631 +330 44 5 876546920 +328 1277 3 885049084 +6 131 5 883602048 +334 693 3 891547083 +156 192 4 888185735 +91 479 4 891439208 +130 22 5 875217265 +75 271 5 884051635 +328 265 5 885045993 +291 379 3 874834827 +222 815 2 877563716 +347 168 5 881653798 +328 510 5 885046376 +290 423 5 880474422 +12 157 5 879959138 +151 114 5 879524268 +294 603 5 889854323 +244 232 4 880608670 +130 63 4 876252521 +259 762 2 883372151 +58 425 5 884304979 +245 112 4 888513575 +184 1232 3 889910123 +122 727 4 879270849 +144 129 4 888104234 +305 357 5 886323189 +16 96 5 877717833 +1 175 5 875072547 +7 618 4 891350900 +16 546 4 877726944 +80 45 4 887401585 +173 294 5 877556864 +104 1017 1 888465634 +161 523 3 891170686 +179 1316 3 892151489 +12 71 4 879959635 +59 141 4 888206605 +339 636 4 891035248 +321 485 4 879439787 +201 204 4 884113082 +59 516 4 888204430 +56 118 4 892679460 +191 332 2 891562090 +65 318 5 879217689 +249 993 3 879571779 +145 229 3 885557699 +262 336 3 879961474 +235 52 4 889656168 +116 604 3 876454174 +49 476 1 888069222 +286 325 1 889651253 +221 588 3 875246209 +197 344 4 891409070 +198 23 4 884208491 +207 28 4 877822162 +345 251 5 884994119 +145 760 2 888398123 +316 1084 4 880853953 +77 179 5 884752806 +83 575 4 880309339 +328 55 4 885046655 +178 1035 4 882828350 +346 33 5 875261753 +89 26 3 879459909 +334 1315 4 891545185 +263 69 5 891298914 +53 199 5 879442384 +312 498 5 891699568 +213 1 2 878870719 +270 173 5 876955531 +85 690 2 890255371 +85 404 3 882994947 +184 949 3 889909618 +330 823 3 876544872 +230 1050 3 880485136 +184 255 3 889907468 +312 132 5 891699121 +322 179 5 887314416 +32 118 3 883717967 +184 1010 4 889907896 +18 180 4 880130252 +55 89 5 878176398 +373 588 3 877098821 +274 546 3 878945918 +363 97 2 891496513 +177 197 4 880130758 +87 796 4 879877280 +24 477 5 875323594 +137 261 5 882805603 +253 237 4 891628002 +298 200 3 884183063 +344 597 2 884900454 +305 638 5 886324128 +85 499 4 879455114 +44 168 5 878347504 +33 258 4 891964066 +293 8 3 888905736 +365 109 2 891304106 +90 42 4 891384885 +99 963 3 885679998 +176 250 4 886047963 +234 414 4 892336021 +308 515 3 887737536 +314 983 4 877892488 +85 1168 3 882995908 +137 50 5 881432937 +130 1016 4 874953698 +117 1057 2 881010401 +225 64 4 879539727 +109 117 5 880564457 +85 199 5 879829438 +15 924 3 879456204 +179 269 3 892151064 +154 333 3 879138287 +170 333 4 886190330 +49 202 3 888068816 +62 183 4 879374893 +343 1132 4 876403746 +43 866 4 883956417 +95 471 5 884266051 +116 294 2 876453376 +95 2 2 888955909 +223 120 2 891550504 +151 419 3 879524878 +291 1098 4 875086330 +303 79 5 879466891 +15 289 3 879455262 +308 443 3 887740500 +43 316 5 892349752 +334 77 3 891549247 +26 864 2 891383899 +130 779 4 878537558 +138 514 5 879024043 +234 237 3 892336021 +297 79 3 875239125 +335 324 1 891567098 +334 620 2 891545540 +276 597 3 874787150 +69 689 3 882027284 +297 864 3 874954541 +153 64 5 881371005 +184 699 5 889909914 +58 568 4 884304838 +178 480 3 882826048 +348 288 5 886522495 +62 173 5 879374732 +307 428 4 877118113 +222 946 2 878182237 +117 240 3 880126038 +10 705 4 877892050 +94 1032 2 891723807 +326 185 5 879875203 +59 739 4 888206485 +307 189 4 877121617 +339 431 4 891035488 +318 182 4 884496549 +321 494 4 879440318 +217 185 3 889069659 +72 435 5 880037242 +249 431 5 879641194 +299 1141 4 877880522 +13 888 2 886261388 +151 972 4 879543366 +235 705 5 889655204 +160 4 4 876861754 +12 15 5 879959670 +62 78 2 879376612 +314 42 5 877888610 +89 151 5 879441507 +230 582 4 880485380 +120 9 4 889489886 +316 614 2 880854267 +331 454 3 877196702 +40 271 2 889041523 +345 172 4 884991831 +55 1016 1 878176005 +92 1213 2 875907079 +73 28 3 888626468 +373 694 5 877098643 +373 707 4 877100378 +336 405 3 877760374 +325 484 5 891478643 +8 301 4 879361550 +141 237 4 884584865 +141 1258 4 884585071 +345 216 5 884901701 +87 88 5 879876672 +209 1105 2 883589568 +7 587 4 891353950 +290 98 4 880474235 +16 692 4 877719158 +175 176 3 877107255 +185 197 5 883524428 +328 331 4 885045085 +244 20 4 880604758 +181 1048 2 878963275 +246 840 4 884924045 +269 293 3 891446308 +246 385 1 884922272 +221 789 4 875245739 +130 150 5 874953558 +109 176 5 880577868 +174 332 5 886432901 +94 28 4 885873159 +85 1098 4 879828912 +48 522 2 879434886 +237 98 4 879376327 +293 23 4 888905865 +313 494 3 891016193 +178 70 4 882827083 +293 322 2 888904456 +6 528 4 883602174 +236 15 5 890116628 +38 393 5 892430282 +276 737 4 890979964 +143 328 4 888407656 +276 854 4 874791806 +90 693 3 891385752 +18 960 4 880131004 +251 222 4 886272547 +7 172 4 891350965 +44 106 2 878347076 +85 382 4 879454820 +184 13 3 889907839 +286 20 4 876521858 +56 219 5 892679144 +345 403 3 884992922 +45 1061 2 881016056 +73 156 4 888625835 +254 125 3 886473158 +184 202 3 889909768 +360 309 2 880354094 +214 236 5 892668153 +18 179 4 880129877 +57 1094 2 883697990 +363 616 3 891498135 +200 29 4 884130540 +148 228 4 877016514 +63 323 1 875746986 +270 66 4 876955531 +6 28 2 883603013 +291 834 3 874834358 +314 143 5 877890234 +82 520 3 878769703 +346 218 3 875263574 +103 222 3 880415875 +189 657 5 893265123 +154 182 5 879138783 +13 384 2 882141814 +291 1083 3 874834876 +148 473 5 877399322 +271 1091 4 885849648 +264 219 5 886122447 +154 50 5 879138657 +370 56 2 879434587 +27 298 4 891543164 +268 395 2 875744021 +82 480 4 878769373 +94 118 3 891723295 +342 1368 5 874984507 +299 889 3 884023918 +177 245 3 880130534 +44 185 4 878347569 +371 175 1 877487266 +186 237 2 879023934 +102 176 3 888801360 +43 238 2 883955160 +326 134 3 879875797 +243 713 3 879987495 +349 105 2 879466283 +82 25 2 878768435 +257 50 5 882049897 +14 70 1 879119692 +346 17 1 874950839 +6 467 4 883602284 +227 276 4 879035251 +157 298 4 886889876 +290 1336 3 880733010 +189 847 4 893264150 +86 889 5 879570973 +249 333 4 879571521 +42 211 4 881107880 +152 790 5 884018821 +328 1248 3 885047417 +193 485 5 889124252 +59 709 5 888204997 +293 228 3 888906315 +346 977 3 875264110 +207 183 2 875509832 +239 1020 3 889180920 +301 77 3 882076751 +248 183 5 884534772 +288 12 4 886374130 +303 451 5 879468581 +255 436 4 883216544 +210 202 5 887737338 +363 102 4 891498681 +299 479 4 878192556 +92 834 1 875906882 +323 327 4 878738910 +374 1047 3 880394179 +249 628 3 879640306 +222 401 2 878184422 +122 70 5 879270606 +122 511 5 879270084 +23 32 3 874785809 +10 696 4 877892276 +144 298 3 888103988 +196 663 5 881251911 +152 966 5 882829150 +157 740 2 886889876 +18 610 4 880130861 +107 258 4 891264466 +125 999 4 892838288 +334 475 4 891544953 +207 171 3 880839802 +85 480 4 879453658 +111 269 5 891679692 +12 191 5 879960801 +304 322 4 884968415 +342 544 1 875318606 +201 482 4 884111360 +333 748 4 891044596 +167 1126 5 892738418 +303 1224 2 879485475 +222 62 4 878183616 +6 136 5 883600842 +223 276 4 891549324 +340 1133 5 884991742 +70 546 2 884066211 +244 764 5 880605158 +355 310 4 879485423 +230 185 4 880485090 +295 210 4 879518378 +308 98 3 887737334 +210 49 3 891036116 +130 1228 3 878537681 +249 456 3 879640549 +215 230 3 891436469 +207 1118 3 878104017 +136 313 2 882693234 +276 117 4 874786568 +216 824 3 880233253 +269 50 3 891448926 +293 466 3 888906655 +275 142 2 880315197 +136 1142 4 882693569 +112 347 1 891302716 +292 1014 3 881104424 +77 176 4 884752757 +314 941 3 877889971 +181 829 1 878962675 +200 33 4 884129602 +291 551 2 874867824 +301 152 3 882077285 +291 237 4 874805668 +334 716 3 891548758 +216 218 4 880234933 +358 482 2 891270510 +13 243 3 882140966 +100 289 3 891375359 +119 12 3 874781915 +268 558 3 875309304 +94 273 4 885872684 +200 205 4 884128458 +333 98 4 891045496 +256 161 5 882164559 +265 409 3 875320462 +268 108 3 875742992 +320 3 4 884748978 +90 178 5 891384611 +347 609 4 881654064 +286 405 3 876522150 +136 223 4 882848820 +344 537 4 884814432 +244 22 4 880605665 +350 1 4 882345734 +299 127 5 877877434 +221 129 5 875244331 +328 403 3 885047281 +181 21 1 878963381 +254 174 5 886471720 +158 566 3 880134499 +262 419 3 879791710 +243 1466 3 879988104 +230 7 3 880484476 +301 411 1 882074867 +104 347 2 888442140 +348 1 4 886523078 +208 302 1 883108157 +151 675 2 879524368 +105 258 5 889214306 +72 210 4 880037242 +322 89 3 887314185 +280 180 4 891700453 +10 367 4 877892437 +156 137 4 888185735 +372 159 5 876869894 +363 316 3 891493918 +178 866 4 882825357 +181 112 1 878962955 +346 232 3 875263877 +114 507 3 881260303 +14 14 3 879119311 +271 248 4 886106129 +354 847 3 891216713 +263 328 4 891297330 +258 893 1 885701099 +100 691 4 891375260 +259 12 5 874809192 +90 604 5 891383350 +130 367 4 875801369 +327 293 3 887745574 +57 173 5 883698408 +239 493 5 889180616 +318 305 2 884470682 +13 776 2 882398934 +339 32 5 891032255 +253 188 4 891628416 +311 199 4 884365485 +311 226 4 884366397 +283 42 5 879298333 +125 386 3 892838827 +361 26 3 879440941 +283 24 4 879297867 +334 210 3 891546405 +181 1390 1 878962052 +336 202 1 877757909 +254 222 4 886471346 +276 544 3 889174870 +89 83 4 879459884 +268 265 3 875310603 +311 748 4 884364071 +270 17 2 876956064 +344 196 4 884901328 +58 480 3 884305220 +328 31 4 886036884 +234 221 2 891227814 +60 633 4 883326995 +2 13 4 888551922 +321 180 4 879440612 +131 1 4 883681384 +307 91 4 879283514 +264 709 5 886123727 +181 1282 1 878962496 +102 403 3 888801812 +197 808 3 891409893 +308 487 4 887736798 +374 126 3 880393223 +6 117 2 883599431 +367 250 5 876689824 +299 257 2 877877732 +25 480 4 885852008 +87 208 5 879876403 +277 748 3 879543879 +332 655 5 888360248 +16 735 3 877720186 +236 419 5 890116282 +11 736 4 891906411 +1 107 4 875241619 +6 32 4 883601311 +72 124 4 880035636 +214 952 3 891543176 +305 52 2 886323506 +345 297 4 884994156 +269 902 5 891446132 +336 864 1 877757837 +314 402 4 877888758 +33 313 5 891963290 +345 1017 2 884991303 +346 392 3 875266064 +123 50 3 879873726 +161 286 2 891169991 +330 204 5 876546839 +234 781 2 892335764 +181 148 2 878963204 +262 238 4 879792713 +233 492 5 880923253 +200 294 4 884125953 +213 135 5 878956101 +130 596 4 874953825 +346 167 2 875264209 +142 362 3 888639920 +325 135 5 891478006 +83 28 4 880308284 +90 521 4 891384570 +13 530 5 881515295 +314 765 3 877889480 +361 275 4 879440694 +334 436 3 891548203 +314 147 4 877886584 +363 906 2 891493795 +92 183 4 875653960 +247 272 4 893081381 +230 51 4 880484937 +44 755 3 878347742 +98 209 2 880498935 +326 674 3 879877433 +303 96 5 879466830 +92 318 2 875653307 +12 196 5 879959553 +94 64 5 885870362 +327 288 4 887743600 +288 317 4 886374497 +373 724 5 877103935 +337 106 2 875184682 +179 301 4 892151565 +267 7 5 878970503 +241 332 3 887249841 +87 182 4 879875737 +311 679 4 884365580 +58 20 1 884304538 +276 77 3 874795751 +194 450 1 879555001 +236 51 5 890116709 +44 9 5 878341196 +354 480 4 891217897 +303 62 2 879484159 +134 300 3 891732220 +92 692 4 875653805 +338 604 4 879438326 +224 86 3 888082612 +341 880 5 890757997 +194 218 4 879524892 +94 1206 3 891723593 +332 300 5 887916188 +180 111 5 877127747 +321 709 4 879441308 +108 181 3 879879985 +199 242 5 883782485 +46 313 5 883611274 +85 855 3 879827989 +188 504 3 875074589 +174 333 4 886432811 +153 22 2 881371140 +119 188 4 874781742 +45 476 3 881015729 +287 346 5 888177040 +14 498 5 890881384 +189 21 2 893264619 +363 189 5 891495070 +367 246 4 876689612 +268 82 3 875310784 +14 181 5 889666215 +200 570 4 884130484 +91 529 4 891438977 +195 258 4 882859352 +194 559 2 879521937 +301 281 4 882074903 +60 272 4 889286840 +278 347 4 891294932 +181 1370 1 878962550 +344 477 3 884900353 +44 209 5 878347315 +38 225 5 892433062 +18 276 5 880130829 +91 82 5 891439386 +336 395 2 877757094 +305 156 4 886323068 +102 810 2 888802508 +181 1272 1 878962349 +156 317 4 888185906 +365 258 4 891303515 +32 122 2 883718250 +6 15 3 883599302 +236 756 1 890117353 +234 965 3 892079538 +232 498 4 888549467 +130 625 5 875801750 +291 41 4 875086636 +344 25 4 884814480 +222 232 4 878183985 +13 907 1 884538485 +378 554 3 880333540 +214 327 5 892668196 +279 762 3 875297199 +363 1007 5 891499355 +297 135 4 875238608 +13 232 3 890704999 +13 861 3 882139774 +87 79 5 879875856 +195 61 3 888737277 +158 11 4 880134398 +13 48 5 882139863 +189 121 2 893264816 +344 663 5 884900993 +14 922 4 880929651 +181 840 1 878963204 +181 1259 1 878962496 +94 50 5 891720996 +206 904 1 888180081 +89 707 5 879459884 +62 1128 2 879372831 +288 340 5 886372155 +329 515 4 891655932 +354 882 4 891216157 +291 101 4 875087198 +153 127 3 881371140 +285 168 4 890595900 +303 153 5 879466421 +13 505 3 882140389 +246 675 4 884920978 +93 476 4 888705879 +268 129 2 875742437 +325 1411 4 891478981 +226 7 4 883889479 +297 175 4 875238883 +344 451 4 884901403 +233 69 5 877665324 +87 684 5 879875774 +70 472 3 884148885 +181 1378 1 878962169 +260 300 3 890618198 +200 45 3 884128372 +246 720 1 884923592 +92 527 3 875653549 +330 50 5 876544366 +82 103 2 878768665 +299 496 3 878192154 +28 218 3 881961601 +64 83 3 889737654 +262 1054 2 879791536 +59 102 2 888205956 +294 325 3 877818861 +294 471 4 877820189 +344 58 3 884814697 +276 46 3 874791145 +21 974 3 874951416 +43 993 3 875975211 +72 644 4 880036602 +273 902 5 891293008 +54 1016 4 890609001 +276 265 4 874792483 +328 162 4 885048004 +90 813 4 891384997 +161 127 3 891171698 +305 245 1 886308147 +69 9 4 882126086 +273 900 3 891292873 +95 14 5 879197329 +177 289 2 880130534 +334 922 4 891544810 +64 420 3 889739678 +119 562 4 886177206 +23 419 3 874787204 +154 480 5 879138784 +271 25 3 885847876 +276 231 3 874796373 +60 671 4 883327175 +279 464 4 875310041 +42 12 4 881107502 +320 576 3 884749411 +279 226 4 880850073 +378 63 3 880333719 +347 465 3 881654825 +15 508 2 879455789 +328 370 3 885048986 +204 292 5 892388857 +378 367 3 880055002 +295 485 4 879517558 +255 763 5 883217072 +67 121 4 875379683 +328 443 4 885048235 +57 237 4 883697182 +20 405 3 879668555 +243 28 4 879988215 +94 1210 3 891723558 +328 371 4 885046773 +188 148 4 875074667 +308 204 4 887737891 +344 568 5 884901419 +130 685 3 874953895 +206 258 4 888179602 +119 111 5 886176779 +347 208 2 881654480 +151 514 4 879524797 +13 21 3 882399040 +373 598 3 877112076 +210 186 4 887730532 +144 274 3 888104382 +58 813 5 884304430 +76 474 5 875498278 +294 147 4 877819845 +184 77 3 889910217 +137 222 5 881432908 +311 527 4 884365780 +259 235 2 883372151 +43 597 3 883956229 +92 196 4 875654222 +254 162 3 886472643 +95 83 5 880573288 +104 475 4 888465582 +214 248 4 891543001 +128 790 4 879969277 +293 55 4 888906096 +195 1013 3 877156636 +11 135 4 891904335 +178 178 4 882826395 +270 156 5 876955899 +269 1480 1 891451725 +151 234 4 879524819 +174 1001 1 886515030 +151 428 5 879542510 +276 164 4 874792663 +130 333 5 875801239 +332 288 5 887916151 +189 143 5 893266027 +43 847 5 875975468 +188 13 4 875073408 +172 485 3 875538028 +262 44 2 879794446 +135 802 2 879858003 +304 275 4 884968264 +308 393 4 887740367 +342 1071 4 875319497 +76 333 3 879575966 +345 988 2 884916551 +303 257 4 879544558 +293 679 2 888906699 +2 280 3 888551441 +368 50 4 889783678 +344 707 4 884900792 +92 552 3 875907078 +40 303 4 889041283 +288 157 4 886373619 +233 117 3 880190627 +90 478 5 891384754 +112 325 1 884992714 +45 276 5 881012184 +3 341 1 889237055 +159 877 3 893255740 +59 501 1 888205855 +117 358 4 880124509 +207 150 3 877847150 +318 401 3 884498292 +22 999 4 878886902 +267 384 3 878973734 +124 157 2 890287936 +6 135 5 883600747 +69 48 5 882145428 +263 1444 3 891299949 +82 1001 1 878769138 +57 7 4 883697105 +13 869 3 882141727 +286 89 4 877533381 +151 1297 1 879542847 +262 270 3 879961283 +218 410 3 881288574 +372 219 5 876869481 +213 204 5 878956130 +77 276 2 884732991 +7 8 5 891351328 +299 582 2 889502159 +145 752 4 888396828 +205 258 3 888284313 +106 1 4 881449487 +314 138 5 877890960 +346 237 4 874949086 +286 1503 3 877534107 +339 101 3 891034626 +293 31 2 888906244 +180 69 4 877355568 +347 317 1 881654409 +237 153 3 879376698 +295 154 5 879517801 +216 204 4 881432523 +291 1046 4 874834875 +334 1172 3 891545852 +329 258 3 891656639 +146 262 4 891457714 +144 194 5 888105287 +92 531 4 875653121 +313 487 3 891016378 +315 46 4 879799526 +344 106 2 884900583 +270 1014 4 876954062 +230 969 4 880484476 +90 1101 4 891384570 +276 234 5 880913767 +325 168 3 891478796 +15 754 5 879455080 +324 298 5 880575493 +73 48 2 888625785 +232 315 5 888364663 +328 98 4 885045899 +128 588 5 879967136 +43 315 4 883953665 +27 281 3 891543164 +189 100 4 893263994 +296 15 3 884196712 +342 518 3 875318858 +332 332 4 887916411 +339 693 5 891033200 +297 448 3 875240171 +303 260 3 879466291 +181 324 1 878961814 +244 287 3 880604326 +151 506 4 879524900 +251 183 5 886271733 +159 225 4 880557347 +342 156 4 874984128 +194 117 3 879535704 +85 1167 3 879829209 +244 122 4 880602804 +251 237 5 886272346 +180 216 5 877128388 +363 71 3 891495301 +233 269 5 891920842 +297 238 5 875409525 +223 1300 1 891550470 +185 318 4 883524172 +308 87 4 887737760 +262 145 1 879795155 +297 235 2 874954611 +209 304 2 883460468 +295 1446 4 879519026 +224 212 1 888104188 +279 739 1 879573060 +361 652 4 879440346 +42 82 4 881107449 +293 27 3 888907753 +234 603 4 892333573 +350 228 4 882347598 +280 159 4 891701944 +174 49 4 886513788 +296 455 1 884196921 +374 685 4 880393307 +256 12 5 882164696 +106 223 4 881450440 +181 269 1 878961511 +314 693 3 877891575 +87 1074 3 879876813 +366 853 5 888857750 +75 108 4 884050661 +85 498 4 879454400 +270 286 5 876953744 +128 423 4 879967966 +299 485 4 877881320 +378 202 3 880046229 +290 473 1 880475420 +233 97 5 877661882 +293 405 1 888905198 +92 295 2 886442386 +299 715 4 889503441 +130 678 4 874953526 +184 258 3 889906882 +183 225 1 891467546 +280 7 4 891700385 +374 231 2 880939228 +254 259 2 886470859 +149 305 4 883512658 +291 1213 3 874871655 +181 276 2 878962816 +251 265 3 886271641 +276 1013 3 874787150 +67 1093 5 875379419 +269 919 4 891446132 +276 1172 4 882659550 +41 170 4 890687713 +276 1253 1 874795729 +95 878 1 881599623 +298 473 3 884183952 +289 473 1 876790576 +6 286 2 883268170 +327 1067 4 887819538 +234 604 5 892078936 +345 197 4 884992141 +197 779 2 891410170 +120 257 2 889490979 +293 616 3 888907753 +174 196 5 886514108 +178 682 3 892239928 +137 172 5 881433719 +128 300 5 879966355 +253 127 5 891628060 +88 321 1 891037708 +222 449 4 878184899 +247 111 5 893097024 +60 176 4 883326057 +92 313 5 887042925 +256 385 5 882164603 +343 25 2 876402814 +314 215 4 877888722 +115 172 4 881171273 +263 210 3 891298792 +305 249 3 886322174 +244 62 2 880607269 +267 568 4 878972955 +87 810 3 879876111 +330 181 5 876544277 +134 258 4 891732122 +13 61 4 882140552 +346 133 5 874948513 +108 121 3 879880190 +368 637 2 889783617 +305 660 4 886324734 +298 286 4 884124929 +256 49 4 882165238 +286 277 4 875807003 +286 107 1 875807043 +327 32 4 887747266 +201 128 2 884111546 +288 15 4 886892177 +308 610 4 887738847 +334 387 4 891548579 +204 315 4 892388857 +257 165 4 879547534 +347 435 5 881654211 +181 827 2 878963276 +13 784 1 882397084 +26 508 3 891352941 +118 511 5 875384885 +239 114 3 889178616 +339 589 5 891032221 +171 327 4 891034835 +378 8 4 880045722 +14 509 5 890881521 +62 33 1 879374785 +64 284 4 889740056 +269 177 5 891449214 +200 151 3 876042204 +370 265 5 879434636 +327 478 4 887819860 +10 509 4 877889005 +108 275 5 879879739 +311 365 4 884365580 +199 324 1 883782509 +363 55 5 891495682 +180 56 5 877127130 +60 194 4 883326425 +14 121 3 876965061 +18 136 5 880129421 +270 222 5 876954521 +268 17 3 875743588 +323 203 5 878739953 +334 502 3 891546963 +354 716 3 891307157 +336 571 1 877756999 +144 33 5 888105902 +226 169 5 883888892 +301 168 4 882075994 +99 685 3 885678840 +181 1289 1 878962866 +197 271 2 891409352 +312 357 5 891698987 +54 1012 2 880936669 +200 38 3 884130348 +69 1143 5 882072998 +5 40 4 879198109 +181 766 1 878962675 +303 80 4 879484563 +110 575 3 886989566 +299 208 4 878191995 +275 423 4 880315322 +210 200 5 887737040 +327 1097 4 887819860 +99 7 4 885678784 +64 240 1 889740462 +101 1034 2 877136686 +18 778 2 880131077 +301 159 3 882076890 +90 166 4 891383423 +213 2 4 878955914 +251 520 5 886271955 +295 99 4 879517741 +279 175 5 875296461 +64 636 4 889740286 +303 231 4 879485292 +184 196 4 889908985 +197 92 1 891410082 +315 156 5 879821267 +23 662 3 874788045 +291 56 5 874834701 +5 90 3 875636297 +146 1294 4 891457749 +254 90 1 886475406 +326 559 3 879877413 +290 91 2 880474451 +94 472 3 891723707 +189 484 5 893266105 +292 479 4 881105516 +194 425 2 879522240 +326 633 4 879875852 +16 761 2 877727192 +304 288 3 884966696 +221 721 5 875246944 +160 209 4 876861185 +80 58 4 887401677 +178 76 3 882827288 +62 147 3 879372870 +158 550 3 880134445 +344 313 3 884814359 +291 365 3 874871570 +112 302 4 886398509 +207 188 3 875509262 +13 457 1 883670785 +234 1 3 891227689 +260 272 3 890618349 +63 13 4 875747439 +325 640 3 891478376 +194 124 4 879539229 +71 56 5 885016930 +30 678 2 885942002 +291 4 4 874835062 +378 1267 3 880055740 +177 260 2 880130534 +21 292 3 874950889 +326 132 4 879875398 +244 508 4 880604276 +128 602 4 879967478 +276 779 2 874977513 +263 245 4 891297417 +323 255 4 878739275 +92 986 2 890251716 +276 282 4 883822485 +186 1277 4 879023677 +264 25 4 886124197 +161 274 2 891172070 +86 300 3 879570277 +303 91 5 879483480 +10 135 5 877889004 +301 407 2 882075202 +60 502 4 883327394 +377 443 4 891299078 +142 350 4 888639882 +374 591 4 880393095 +110 732 3 886988018 +352 182 5 884290328 +109 1013 3 880572296 +328 350 3 886036374 +181 283 3 878963241 +354 631 4 891217449 +334 1073 4 891547714 +181 1373 1 878962052 +54 121 4 880936669 +293 12 4 888905665 +279 1489 3 891208884 +138 111 4 879022890 +298 502 5 884183406 +318 66 4 884495921 +67 151 4 875379619 +301 160 2 882077284 +47 321 4 879439040 +304 682 3 884967520 +109 204 4 880577844 +189 505 5 893265239 +16 183 5 877720733 +269 645 4 891448048 +297 116 4 874954260 +373 139 3 877111422 +274 815 3 878945763 +123 511 5 879872066 +13 40 2 886302815 +61 342 2 892302309 +76 421 3 875028682 +284 313 3 885328727 +339 806 4 891032737 +5 153 5 875636375 +280 1047 3 891701897 +199 322 2 883782636 +343 143 4 876406677 +303 926 2 879485814 +232 276 5 880062447 +1 218 3 876892856 +151 417 3 879543075 +270 241 5 876955633 +269 272 3 891445757 +339 248 4 891034592 +46 328 4 883611430 +198 1014 2 884206330 +151 505 5 879528909 +184 478 4 889908902 +234 274 3 892334765 +348 742 4 886523078 +374 129 5 880392846 +221 53 4 875247565 +308 584 4 887738717 +268 746 3 876513855 +263 127 4 891299514 +83 795 3 880309214 +168 7 1 884287559 +284 344 4 885329593 +375 44 3 886622131 +91 435 4 891439353 +311 58 3 884364570 +204 191 4 892513906 +109 200 2 880577734 +201 70 3 884112029 +312 241 3 891699655 +215 183 5 891435655 +128 173 5 879966756 +13 351 1 886302385 +378 52 5 880056491 +345 949 3 884992897 +12 754 4 879958810 +54 406 2 880938490 +128 237 4 879966954 +223 1014 4 891549975 +197 33 2 891409981 +270 800 5 876956106 +373 154 5 877098919 +24 275 5 875323507 +214 1401 4 891544290 +16 27 2 877726390 +325 521 4 891478160 +243 221 5 879989217 +200 578 5 884130085 +343 702 4 876406257 +345 479 4 884991812 +327 645 4 887818991 +141 750 1 886447564 +13 73 3 882141485 +299 347 4 887135610 +181 922 1 878963305 +13 467 5 882140588 +276 227 4 880913800 +189 483 5 893265291 +135 228 4 879857797 +256 1040 3 882152604 +84 151 4 883449993 +207 245 3 877994095 +189 96 5 893265971 +135 642 4 879857868 +84 523 4 883453642 +269 213 5 891447255 +307 154 5 879282952 +117 288 3 880124254 +43 648 5 883955293 +359 250 4 886453354 +373 2 4 877100416 +327 173 4 887747337 +326 82 3 879876861 +190 294 3 891033370 +72 520 5 880036515 +378 356 4 880045989 +91 338 4 891438529 +363 1267 2 891496481 +128 591 4 879967879 +252 268 5 891455329 +214 512 5 892668130 +303 249 4 879544739 +313 135 5 891014401 +239 168 4 889179478 +361 148 1 879441324 +94 447 4 891721562 +109 931 2 880572407 +298 311 3 884126552 +329 269 4 891655191 +66 117 3 883601787 +291 790 4 875086699 +175 629 3 877107942 +347 423 4 881654567 +291 155 3 875087371 +7 203 5 891352178 +201 285 4 884114471 +374 356 3 880937876 +303 326 2 879466116 +131 275 2 883681384 +186 1253 4 891719774 +347 1088 1 881653224 +184 588 5 889909812 +234 328 2 891033772 +293 147 2 888905229 +276 1239 1 874977512 +101 118 3 877136424 +269 497 3 891449429 +256 982 3 882152630 +305 602 3 886324058 +94 63 3 891723908 +327 650 4 887745699 +43 118 4 883955546 +347 268 4 881652169 +194 517 3 879521856 +281 989 2 881200789 +232 81 5 888549515 +42 88 5 881108425 +18 526 4 880131407 +55 678 3 878176206 +158 182 5 880134296 +288 13 5 886892241 +102 689 3 883277481 +323 249 3 878739488 +294 544 4 877819673 +268 232 3 875310745 +94 646 5 885873006 +157 3 3 886890734 +279 147 4 875297199 +90 475 3 891385465 +276 1073 3 874795613 +301 684 3 882077330 +191 343 3 891561856 +201 324 5 884110811 +213 448 4 878956074 +145 831 1 888398329 +65 135 4 879216567 +291 154 4 875086185 +379 69 4 880524754 +345 559 1 884901497 +62 179 4 879374969 +331 277 4 877196384 +43 54 3 883956494 +244 240 3 880604858 +279 469 4 884982881 +1 209 4 888732908 +313 417 2 891030334 +151 1074 2 879543342 +329 124 5 891655905 +332 354 5 888189331 +303 159 3 879484695 +249 472 3 879640502 +6 513 4 883600913 +1 259 1 875692979 +308 144 3 887737956 +174 577 1 886515295 +327 188 5 887745774 +332 271 4 887916217 +59 660 4 888205534 +130 959 4 876251865 +94 144 3 891721168 +280 117 5 891700366 +151 47 3 879528459 +249 169 5 879572106 +184 34 2 889913568 +344 315 5 884813342 +339 139 3 891036199 +74 1084 3 888333542 +347 69 5 881653687 +293 761 2 888907981 +308 234 3 887737084 +268 421 3 876513927 +328 185 4 885045899 +365 908 3 891303638 +200 15 4 884127745 +5 94 3 878844651 +318 509 5 884495817 +234 423 4 892334079 +118 816 3 875385335 +354 297 4 891216760 +130 405 4 875801984 +279 4 4 875296461 +198 217 4 884208273 +342 237 4 874984832 +195 1228 1 876632600 +48 988 2 879434387 +7 281 3 891353710 +64 318 4 889737593 +253 647 3 891628229 +99 56 5 885679833 +13 443 4 882140588 +151 775 2 879543366 +91 510 3 891439090 +343 211 5 876405820 +279 92 4 890282182 +57 248 5 883697223 +94 428 5 891725332 +42 28 5 881108187 +343 792 5 876405172 +144 209 2 888105116 +290 243 3 880473474 +100 316 5 891375313 +374 977 1 883628189 +249 684 4 879641285 +145 346 5 883840638 +379 705 4 888646088 +184 70 4 889908657 +94 657 5 891720761 +178 520 5 882826210 +303 1088 2 879544946 +21 774 2 874951898 +328 1042 3 885049024 +276 276 4 874786605 +77 50 4 884732345 +237 183 5 879376641 +5 389 1 875721315 +234 54 2 892336257 +22 502 4 878886647 +226 283 2 883889811 +199 678 1 883782636 +148 357 5 877016735 +326 612 2 879875083 +59 562 4 888206094 +94 206 4 891722843 +109 520 5 880572642 +329 276 4 891655905 +321 50 4 879438793 +174 655 5 886514168 +144 73 3 888105636 +56 186 3 892676933 +87 568 5 879875818 +269 387 3 891448283 +201 340 5 884110887 +165 419 4 879525706 +191 270 3 891560253 +190 628 4 891042883 +5 411 1 875635431 +169 308 3 891268776 +303 288 4 879466018 +69 151 5 882072998 +145 1040 1 888398492 +279 490 3 890282225 +1 108 5 875240920 +253 173 5 891628483 +77 265 3 884753152 +283 216 4 879298206 +224 1085 1 888104393 +336 117 3 877760603 +378 1284 2 880318158 +174 118 2 886434186 +296 98 5 884197091 +130 210 5 876252288 +1 262 3 875071421 +89 949 3 879460027 +58 204 4 884304701 +263 1473 5 891299877 +92 273 4 875640214 +67 743 4 875379445 +311 627 4 884366067 +234 727 3 892079475 +351 1316 4 883356883 +90 433 3 891384611 +194 1220 3 879524790 +222 819 2 877563353 +311 510 4 884366545 +59 1065 5 888205188 +195 421 4 892362736 +145 44 5 875272132 +38 1014 5 892429542 +186 71 5 879024535 +82 109 1 884714204 +264 436 3 886122352 +361 949 4 879440774 +200 173 5 884128554 +279 405 3 886015701 +7 505 3 891352341 +121 235 1 891390579 +301 380 4 882078459 +380 176 3 885481179 +332 7 4 887916547 +316 71 1 880854472 +7 266 4 891350703 +293 2 3 888907101 +18 792 5 880131106 +166 258 4 886397562 +373 849 3 877105005 +177 195 4 880130699 +254 15 3 886471307 +328 100 5 885046305 +344 111 4 884899767 +223 118 2 891549945 +189 607 4 893266204 +183 250 2 891464352 +276 1110 3 874977474 +194 509 3 879522085 +267 1073 5 878974783 +313 182 4 891013773 +10 498 5 877889333 +276 69 4 874790996 +60 729 4 883327975 +264 203 2 886122508 +116 531 2 876453519 +62 121 4 879372916 +345 313 4 884900467 +126 322 3 887854777 +90 423 5 891384997 +227 117 2 879035493 +271 713 4 885847800 +25 269 4 885851953 +361 1041 2 879441179 +85 971 3 879828156 +346 780 2 875264904 +338 56 3 879438535 +363 433 4 891495143 +217 1303 2 889069944 +159 245 5 880485488 +141 748 3 884584664 +49 122 2 888069138 +365 813 5 891303901 +373 25 4 877100016 +301 67 2 882078621 +149 312 1 883512950 +21 773 3 874951797 +357 742 4 878951691 +373 81 2 877100326 +82 281 3 884714290 +90 96 4 891384754 +327 198 4 887747337 +268 1157 1 875745428 +374 173 3 882158521 +83 783 4 880308453 +318 655 4 884496290 +216 693 3 881428365 +381 582 5 892696045 +333 316 5 891044659 +21 325 4 874950931 +279 195 4 875310631 +279 24 5 875295591 +349 370 2 879466283 +127 748 5 884364108 +56 95 4 892683274 +38 71 5 892430516 +276 879 3 877584219 +374 476 2 880394138 +248 198 5 884534695 +321 8 4 879440451 +344 268 3 884814359 +151 602 4 879542688 +194 284 3 879539410 +375 583 2 886622131 +380 197 3 885478886 +381 50 5 892696252 +103 527 5 880416238 +268 153 5 875743503 +232 651 3 888549515 +88 881 5 891038103 +11 268 5 891901652 +249 68 5 879641156 +67 276 4 875379515 +177 276 5 880130758 +234 96 2 892334141 +135 33 3 879857930 +345 845 3 884991220 +332 181 5 887916529 +346 561 3 874950172 +11 739 3 891906411 +239 654 5 889180747 +276 432 5 874792839 +214 294 3 891542520 +330 603 5 876545625 +363 182 1 891494962 +337 631 4 875429292 +244 411 4 880604798 +182 172 5 876435435 +43 393 4 883956417 +64 447 4 889739319 +116 421 3 876453800 +257 288 3 879029516 +130 4 2 875801778 +54 237 4 880935028 +312 603 5 891698454 +198 629 4 884209221 +279 732 3 879647301 +320 431 5 884749327 +1 12 5 878542960 +59 568 5 888205229 +257 221 3 882050202 +329 855 4 891656206 +58 1104 2 884305679 +43 486 4 883955969 +339 42 4 891033452 +344 45 5 884901210 +92 471 4 875640385 +200 313 5 884125806 +347 879 3 881652099 +18 732 3 880131698 +92 596 2 886443161 +358 1529 3 891269584 +87 231 3 879876110 +13 118 4 882397581 +305 154 4 886322670 +212 191 3 879303830 +41 746 3 890687019 +192 301 4 881366490 +344 421 2 884901561 +360 511 5 880355994 +365 124 4 891304039 +10 164 4 877889333 +234 847 4 891227730 +271 582 3 885849113 +109 96 5 880572614 +76 150 5 875028880 +59 1113 4 888205855 +381 212 5 892696982 +5 109 5 875635350 +279 386 3 889985007 +64 898 2 889737106 +41 435 3 890687550 +308 843 3 887739095 +85 661 4 879454005 +339 516 4 891033481 +95 510 4 879196188 +38 404 5 892431586 +347 735 2 881654134 +125 270 4 881357122 +345 295 4 884994592 +82 1101 4 878770169 +11 722 3 891905349 +239 79 3 889179544 +3 318 4 889237482 +56 179 3 892678669 +59 195 5 888204757 +119 930 3 874775945 +295 1135 4 879518696 +347 323 1 881652142 +291 46 4 874868045 +347 216 3 881653933 +337 257 3 875184963 +87 679 3 879876036 +381 281 2 892696616 +215 451 3 891436369 +177 948 2 882141918 +292 226 4 881105281 +314 1054 1 877886944 +256 294 3 882150053 +90 86 5 891383626 +267 622 3 878974077 +315 211 4 879821037 +62 209 4 879373849 +125 485 5 892836335 +345 317 4 884992465 +312 96 5 891699040 +201 68 2 884112487 +253 175 2 891628884 +152 204 4 882474587 +271 224 4 885847876 +313 1066 2 891030334 +99 363 4 885679262 +326 144 5 879876114 +26 343 3 891349238 +270 553 1 876955689 +206 873 3 888179833 +379 202 5 880525259 +70 527 4 884149852 +181 978 1 878963305 +94 156 5 891725332 +86 1175 5 879570973 +68 288 4 876973726 +60 71 3 883327948 +151 393 2 879528692 +22 435 5 878886682 +198 172 4 884207206 +96 474 4 884403095 +305 239 3 886323153 +301 182 5 882075774 +32 866 3 883718031 +279 114 5 879572694 +10 191 5 877888613 +279 207 5 875310394 +321 143 3 879439621 +10 496 5 877889005 +130 134 5 875801750 +26 871 2 891379664 +13 539 1 883670785 +49 594 3 888068245 +56 692 4 892676970 +318 127 5 884470970 +159 881 1 893256139 +130 940 3 875217392 +348 147 5 886523361 +243 582 5 879989217 +15 18 1 879455681 +85 514 5 879453684 +135 379 2 879857956 +286 512 2 877533101 +276 1274 1 874977513 +102 239 3 888804089 +293 871 1 888908066 +43 161 4 883955467 +290 622 3 880474204 +176 100 5 886047918 +226 14 5 883889691 +361 238 4 879440475 +38 383 2 892433801 +329 924 3 891655905 +378 65 3 880046132 +26 315 3 891347400 +5 230 3 875636070 +269 142 1 891451570 +43 275 4 875975546 +297 7 4 874954541 +151 735 5 879528438 +124 79 3 890287395 +23 405 4 874784638 +373 1135 3 877107043 +327 1141 3 887822681 +188 98 5 875071957 +69 591 3 882072803 +345 282 3 884991419 +194 417 2 879525695 +311 187 4 884364764 +204 286 3 892389046 +215 8 2 891436177 +18 970 3 880131591 +85 283 3 879454467 +96 173 3 884402791 +277 302 4 879544201 +327 25 2 887746728 +301 8 4 882076494 +33 895 3 891964187 +118 23 5 875384979 +280 542 3 891702199 +280 1479 3 891702457 +201 333 2 884110927 +7 570 3 891354639 +303 164 4 879466830 +69 748 2 882027304 +73 507 3 888625857 +296 10 2 884196605 +209 321 4 883461108 +94 420 4 891721317 +179 310 4 892151365 +188 38 3 875073828 +286 1113 3 877534107 +354 208 4 891217394 +119 385 5 874781994 +188 77 4 875072328 +184 124 5 889907652 +268 781 3 875743951 +125 28 4 879454385 +60 489 5 883326682 +220 343 3 881198738 +177 196 3 880130881 +129 307 2 883244637 +339 550 2 891035523 +378 289 5 889665232 +279 173 5 875296461 +314 105 4 877887292 +295 68 4 879518960 +145 105 2 875271442 +246 541 3 884923487 +234 117 2 892334976 +58 182 4 884304701 +108 237 3 879879796 +16 164 5 877724438 +139 303 5 879538021 +316 265 3 880854395 +337 230 5 875185319 +116 332 3 876451998 +92 376 3 875907366 +152 241 4 884035579 +168 748 2 884287031 +255 841 1 883216902 +265 181 2 875320180 +236 222 4 890116817 +326 659 4 879875397 +217 258 1 889069536 +312 209 3 891699207 +1 14 5 874965706 +287 591 5 875334293 +294 689 3 889241579 +314 255 5 877886221 +189 1403 4 893265921 +107 300 1 891264432 +267 250 5 878970399 +344 190 5 886382447 +151 65 4 879528729 +343 367 4 876406144 +10 385 4 877886783 +70 383 2 884151700 +109 131 1 880579757 +373 399 3 877105674 +378 1478 3 880333098 +125 64 5 879454139 +378 274 3 880055597 +41 98 4 890687374 +54 147 5 880935959 +213 514 5 878956130 +254 843 2 886474807 +334 245 2 891544367 +224 518 1 888103906 +31 493 5 881548110 +10 519 5 877892050 +125 25 1 879454987 +92 88 3 875656349 +194 26 3 879522240 +13 265 4 882140038 +279 578 4 879572694 +301 216 4 882076782 +2 303 4 888550774 +326 451 2 879877234 +188 205 3 875071710 +338 511 4 879438473 +328 482 3 885046580 +269 506 5 891449572 +125 407 2 892839312 +85 275 3 879454581 +92 181 4 876175052 +15 286 2 879455049 +374 162 2 880396511 +148 169 5 877020297 +54 257 4 880937311 +276 1228 1 874977422 +268 679 4 876514107 +385 1367 5 880879193 +56 181 5 892737154 +271 15 3 885847876 +308 184 4 887738847 +64 7 4 889737542 +330 38 4 876546948 +263 886 2 891297484 +244 180 4 880605920 +1 97 3 875073128 +156 211 4 888185606 +62 155 1 879376633 +271 170 5 885848827 +250 480 5 878090414 +295 419 4 879518107 +314 869 4 877891681 +346 72 3 874951714 +5 388 2 879198898 +347 87 3 881653830 +166 343 4 886397882 +194 366 2 879525761 +90 197 5 891383319 +193 174 4 889125720 +54 127 4 880933834 +201 265 3 884310104 +128 56 3 879966785 +342 974 2 874984789 +12 276 4 879959488 +276 121 4 874786897 +49 151 5 888067727 +377 354 4 891296044 +59 735 5 888205534 +219 303 4 889386799 +276 238 5 877935060 +59 125 3 888203658 +385 209 4 879441853 +373 290 5 877098784 +313 73 5 891015012 +308 205 3 887738191 +182 864 4 885613092 +1 44 5 878543541 +236 420 4 890116671 +321 474 4 879438607 +380 530 5 885478886 +288 887 5 886372155 +232 56 5 888549622 +90 203 5 891384611 +8 172 5 879362123 +308 1006 4 887739608 +303 210 4 879466717 +139 458 4 879538578 +145 1090 2 888398833 +90 962 2 891384721 +43 321 3 875975061 +66 471 5 883601296 +277 286 5 879544145 +293 82 4 888906402 +201 462 1 884141208 +267 449 3 878973358 +267 175 5 878972558 +279 101 3 891209021 +363 336 4 891494011 +340 418 5 884990669 +59 448 4 888205787 +64 216 4 889740718 +355 882 4 879486421 +208 430 4 883108360 +56 96 5 892676429 +84 237 4 883450093 +373 230 4 877107430 +74 100 4 888333428 +291 1244 4 874834345 +128 294 4 879966376 +186 554 1 879023751 +330 213 5 876546752 +293 208 3 888906071 +92 32 3 875653363 +18 57 4 880130930 +119 451 5 891286958 +99 237 5 885678886 +168 258 4 884286863 +43 50 4 875975211 +119 274 4 874775580 +151 837 4 879524642 +59 136 3 888205336 +230 153 5 880485090 +23 504 4 874785624 +131 14 5 883681313 +95 117 4 879193619 +85 8 4 879454952 +379 637 2 880962047 +25 135 3 885852059 +1 53 3 876893206 +314 1221 3 877889927 +181 740 2 878963085 +253 527 5 891628518 +172 478 3 875538027 +249 100 5 879572370 +344 87 4 889814195 +308 183 4 887736695 +330 1016 3 876544480 +130 353 1 888211764 +232 313 3 885939473 +378 196 4 880046306 +49 52 2 888066647 +313 448 3 891014956 +42 265 3 881107989 +313 100 5 891013681 +94 806 4 885873302 +7 567 1 892132019 +97 168 4 884238693 +235 292 3 889654638 +58 240 4 892242478 +325 325 1 891477695 +84 64 5 883450066 +60 186 4 883326566 +292 475 5 881103896 +94 258 5 891724044 +316 19 5 880854539 +94 483 5 885870115 +43 1 5 875975579 +218 654 4 881288234 +102 746 2 892993190 +367 760 4 876690021 +224 387 4 888103906 +7 637 4 891353570 +357 294 4 878951101 +296 277 5 884198772 +292 511 5 881105373 +79 370 2 891272016 +184 693 3 889909142 +382 127 3 875945781 +70 228 5 884064269 +38 218 3 892431871 +197 321 3 891409475 +7 624 4 891353892 +373 151 4 877100129 +378 215 4 880055336 +307 450 2 879538922 +350 530 4 882346161 +271 52 4 885849470 +13 854 1 882396914 +188 419 5 875072876 +178 22 5 882826187 +104 25 3 888465634 +320 278 3 884748886 +345 451 5 884993085 +64 582 4 889739834 +167 1309 1 892738341 +232 181 4 880062330 +89 737 1 879460376 +328 234 4 885046376 +295 737 5 879518607 +233 654 4 877665191 +235 346 4 889654483 +214 221 5 892668153 +374 111 2 880393268 +279 1133 2 892173598 +378 542 4 880333470 +249 198 5 879572349 +21 820 3 874951616 +125 1183 2 892839312 +6 125 3 883599670 +137 183 5 881433689 +194 185 4 879521254 +332 1218 5 887939171 +347 85 5 881654880 +1 163 4 875072442 +286 50 4 875806869 +181 149 1 878962719 +21 844 4 874951292 +299 318 4 877880649 +18 195 3 880131236 +232 194 4 888549988 +279 556 3 880666808 +57 975 3 883697990 +125 940 2 892838827 +194 527 4 879521474 +163 64 4 891220161 +257 237 2 882050168 +22 121 3 878887925 +64 229 4 889739490 +173 260 4 877557345 +265 15 3 875320574 +210 176 4 887735960 +291 174 5 874835062 +281 538 4 881200520 +79 301 3 891271308 +244 191 5 880605766 +248 210 3 884534946 +342 175 5 874984207 +236 111 4 890116939 +297 1296 4 875408935 +159 678 5 880485530 +255 565 1 883216748 +286 309 5 884583549 +318 88 4 884496367 +77 174 5 884733587 +109 252 5 880571629 +244 1045 5 880602132 +264 4 4 886123656 +128 190 4 879967016 +158 163 4 880135044 +83 609 4 880308453 +23 380 5 874787774 +214 313 4 892668197 +110 783 3 886988967 +308 219 3 887738717 +159 286 1 880485233 +113 327 5 875076987 +178 83 4 882826556 +254 214 1 886472608 +30 1007 5 885941156 +109 322 2 880562908 +73 923 3 888793388 +291 567 5 874867786 +60 480 4 883326273 +296 238 4 884199624 +356 689 5 891406372 +362 258 4 885019435 +16 69 5 877724846 +318 501 4 884496984 +227 286 3 879035072 +271 54 3 885849188 +184 553 3 889909746 +256 1207 3 882164999 +210 73 5 891035837 +321 215 3 879439658 +221 623 3 875245618 +311 136 5 884365357 +130 254 2 876251160 +293 1147 4 888907081 +115 466 5 881171558 +207 187 5 877878688 +346 932 2 875264752 +168 123 3 884287822 +327 238 4 887747410 +31 321 4 881547746 +182 763 3 885613092 +224 724 3 888082742 +352 216 4 884290390 +105 272 4 889214284 +90 177 5 891384516 +311 161 4 884365579 +213 735 5 878955474 +60 660 4 883327243 +8 511 5 879362183 +126 289 3 887855174 +247 50 5 893097024 +217 174 3 889069684 +34 299 5 888602923 +109 223 4 880572588 +59 659 3 888204553 +177 403 5 880131201 +311 418 4 884365202 +181 256 1 878962086 +99 369 4 885679382 +3 300 2 889236939 +137 235 5 881433357 +20 1 3 879667963 +287 111 3 875334126 +224 751 3 888081913 +298 651 5 884183063 +287 240 2 875334454 +56 73 4 892677094 +345 866 3 884991476 +110 232 3 886988449 +83 720 4 880308578 +387 1166 3 886483939 +43 47 1 883955415 +363 183 4 891494835 +6 484 5 883601011 +347 288 5 881652118 +224 148 3 888104154 +299 959 2 889503159 +280 499 4 891700496 +256 728 4 882165296 +378 191 5 880046229 +262 22 4 879792452 +90 707 5 891384476 +363 802 2 891498681 +337 1133 4 875236281 +7 82 3 891351471 +28 228 5 881961393 +151 1197 5 879542753 +64 38 3 889740415 +25 151 4 885853335 +262 98 4 879792331 +181 125 3 878962816 +97 97 5 884239525 +385 606 4 879441599 +62 235 4 879373007 +271 192 5 885848373 +20 69 1 879668979 +81 274 3 876534313 +271 328 2 885844746 +261 1025 5 890455190 +363 134 2 891494725 +70 211 3 884149646 +201 406 1 884114505 +92 189 4 875653519 +92 191 4 875653050 +77 210 3 884753028 +95 204 5 879197562 +372 635 5 876869445 +239 497 4 889180578 +89 716 3 879460027 +13 514 5 881515112 +374 125 5 880393424 +332 97 5 888359903 +339 478 5 891032466 +249 121 3 879572705 +152 162 5 882474898 +222 7 5 877563168 +360 14 5 880354149 +374 1028 1 880393425 +85 1153 4 879454751 +145 928 3 879161848 +106 86 3 881451355 +298 993 4 884125629 +151 489 5 879528623 +102 358 3 888957092 +68 50 5 876973969 +374 292 4 880392237 +56 746 4 892676885 +151 231 1 879543366 +9 6 5 886960055 +113 976 5 875936424 +295 215 5 879517247 +347 300 5 881652054 +13 752 1 886952569 +303 582 4 879483462 +194 58 4 879522917 +168 25 5 884287885 +311 188 4 884364437 +330 275 5 876544366 +360 134 5 880356025 +11 744 4 891903005 +158 825 4 880133029 +215 210 4 891436232 +311 402 4 884366187 +142 89 3 888640489 +330 255 4 876544278 +280 420 3 891701816 +387 56 5 886479649 +260 326 5 890618349 +90 611 5 891384789 +263 318 5 891298453 +96 478 2 884403123 +303 476 3 879485352 +58 193 3 884305220 +1 210 4 878542909 +181 368 1 878963440 +59 692 3 888205463 +58 1069 2 893027661 +178 1283 3 885784558 +327 127 4 887747338 +253 282 4 891628094 +201 673 3 884140115 +201 1427 2 884113975 +145 924 2 875270508 +232 96 5 888549563 +77 69 3 884752997 +246 469 3 884922475 +342 191 5 875319991 +18 185 3 880129388 +174 29 2 886514469 +343 951 1 876406144 +318 12 4 884495795 +181 1385 1 878962051 +259 180 5 877925033 +328 483 5 885045844 +219 546 4 889387867 +54 273 4 880934806 +13 857 3 881515348 +296 485 5 884197235 +178 89 4 882826514 +364 690 4 875931309 +112 678 3 884992714 +292 484 5 881105625 +10 156 4 877886846 +265 742 5 875320542 +354 508 3 891216607 +308 822 4 887739472 +373 241 5 877100326 +276 941 3 877934065 +328 148 3 885048638 +6 458 1 883599914 +178 286 3 882823324 +82 310 4 879788290 +303 183 5 879466866 +339 231 2 891035180 +359 751 4 886453467 +200 174 5 884128426 +336 208 2 877757930 +378 151 3 880044385 +213 684 4 878956000 +381 647 4 892697133 +354 268 4 891180399 +36 882 5 882157581 +270 218 5 876956206 +62 118 2 879373007 +198 184 3 884209003 +363 237 2 891496306 +94 222 3 891721258 +151 736 4 879542389 +6 199 4 883601203 +378 793 3 880046437 +332 235 3 887938723 +294 826 1 889243393 +363 270 2 891493723 +150 50 5 878746719 +295 498 5 879519556 +366 448 5 888857990 +36 682 1 882157386 +311 515 4 884365485 +348 975 4 886523813 +118 436 5 875385280 +92 190 4 876174729 +280 449 3 891702324 +291 72 4 875086090 +13 615 4 881515348 +310 257 5 879436576 +5 227 4 875636099 +358 643 3 891270091 +303 67 5 879485401 +345 221 5 884900899 +276 366 3 889174764 +385 221 5 881398053 +174 66 5 886513706 +201 193 3 884140078 +56 51 3 892677186 +72 265 4 880037164 +342 56 5 874984315 +276 840 3 874786897 +361 498 4 879441416 +249 172 3 879572106 +293 158 2 888907603 +85 300 3 879452259 +21 121 1 874951416 +330 485 5 876546839 +328 231 2 885048762 +92 129 4 886443161 +369 948 2 889428228 +299 1039 4 878191779 +56 391 3 892910950 +322 318 4 887314280 +373 420 4 877107630 +316 289 2 880853219 +177 47 3 880131187 +276 751 4 884286678 +48 266 3 879434387 +385 524 5 880924359 +109 472 2 880571715 +69 333 3 882027204 +224 223 3 888082468 +49 101 3 888067164 +328 218 4 885047281 +56 383 2 892910544 +264 153 5 886122031 +10 703 5 877892110 +296 846 2 884196985 +215 238 2 891435526 +92 31 4 875654321 +270 13 4 876954192 +305 557 4 886324521 +59 169 4 888204757 +365 287 4 891304301 +387 218 3 886481687 +75 137 4 884050102 +178 367 4 882828021 +92 11 4 875653363 +208 381 3 883108873 +23 229 3 874787162 +58 275 5 884305220 +15 148 3 879456049 +18 186 4 880131699 +1 184 4 875072956 +87 96 5 879875734 +119 742 5 874775406 +13 720 4 882397974 +94 1044 4 891722555 +295 226 4 879518166 +169 260 1 891269104 +387 180 4 886479737 +339 673 5 891034071 +326 566 4 879877073 +357 7 3 878951537 +115 511 5 881172117 +151 503 3 879524199 +323 332 3 878738865 +110 779 3 886988793 +291 28 4 875086920 +360 195 3 880355715 +178 99 4 882827574 +158 176 4 880134398 +201 596 4 884141438 +22 176 5 878887765 +195 831 2 884504132 +6 183 4 883601311 +286 738 5 877534903 +184 231 3 889910195 +199 988 1 883782655 +263 294 2 891297330 +293 425 4 888905923 +13 887 5 882140867 +43 596 3 883955650 +1 157 4 876892918 +181 10 2 878962955 +366 672 5 888858078 +13 683 1 886952521 +230 607 3 880484755 +266 272 4 892256705 +323 245 2 878739084 +194 215 3 879524291 +168 472 3 884287927 +346 546 4 875263238 +99 676 4 885678886 +21 758 1 874951314 +303 186 4 879467105 +310 14 5 879436268 +268 139 2 875744744 +270 295 5 876954248 +263 134 5 891299697 +388 313 5 886438122 +207 1226 2 882081278 +267 552 3 878973621 +90 100 5 891383241 +11 9 5 891902970 +354 175 5 891218024 +43 49 4 883956387 +92 581 4 875654189 +321 135 4 879439763 +265 125 4 875320516 +80 269 3 883605009 +60 493 5 883325994 +79 6 4 891271901 +72 509 4 880036638 +373 427 4 877099317 +62 232 3 879375977 +327 233 3 887820385 +246 1101 5 884921380 +236 596 4 890116575 +269 139 1 891451492 +178 204 4 882826048 +387 514 3 886480515 +222 780 3 881060370 +37 24 4 880915674 +49 143 3 888067726 +235 135 4 889655571 +385 4 2 879445260 +89 694 5 879460027 +268 209 4 875310311 +13 269 2 889292060 +59 202 4 888205714 +378 272 4 889665041 +225 143 2 879540748 +386 455 3 877654961 +119 209 4 886177544 +272 22 5 879454753 +286 354 4 889651029 +190 269 4 891033606 +374 122 2 882158328 +178 465 3 882827506 +38 94 5 892432030 +374 581 4 880938044 +178 244 1 884837126 +29 1018 4 882821989 +359 831 3 886453402 +92 98 5 875652934 +244 168 5 880606118 +76 64 5 875498777 +344 1007 4 889814518 +387 199 4 886483858 +193 33 3 889125912 +292 628 3 881105123 +280 576 3 891702276 +238 1190 3 883576603 +290 164 4 880474010 +380 132 4 885479186 +83 768 4 887665549 +248 515 5 884535085 +178 183 4 882826347 +178 342 4 892239863 +373 89 5 877098821 +122 191 5 879270128 +174 862 1 886515172 +297 273 4 874954763 +378 1180 3 880334269 +299 1020 4 878192237 +184 511 4 889908740 +301 31 3 882076463 +178 1169 4 882827134 +276 1044 3 877934374 +321 276 3 879438987 +195 1089 4 883295540 +1 201 3 878542960 +239 1192 1 889180949 +149 308 2 883512658 +234 1149 3 892318060 +331 653 3 877196173 +344 244 3 889814600 +134 339 2 891732507 +128 322 2 879966447 +30 255 4 875059984 +178 566 4 882826915 +83 932 4 881971414 +200 685 4 876042493 +310 274 3 879436534 +389 955 4 880087599 +65 661 4 879216605 +330 208 5 876546409 +363 163 3 891495143 +208 211 5 883108398 +198 748 2 884204577 +179 272 5 892151202 +273 690 4 891293008 +85 492 4 879454905 +121 126 3 891388936 +14 813 2 880929564 +264 672 3 886122447 +340 265 5 884990470 +280 690 2 891699964 +314 1220 5 877892293 +67 827 3 875379322 +194 471 3 879540807 +18 463 4 880131143 +308 45 4 887736843 +89 93 2 879441307 +267 575 3 878974052 +222 125 5 877563802 +268 978 2 876513927 +210 25 4 887730407 +302 307 4 879436739 +207 540 3 880161839 +15 864 4 879456231 +125 116 4 892838322 +62 225 3 879373287 +260 682 4 890618537 +299 100 3 877877600 +351 313 5 883356562 +356 272 5 891405651 +297 143 5 875239870 +288 300 5 886372155 +249 174 4 879572314 +385 367 4 879444640 +373 625 4 877104086 +387 414 4 886482969 +381 191 5 892696757 +309 324 3 877370419 +45 15 4 881012184 +56 56 5 892676376 +55 254 2 878176206 +318 105 1 884495164 +95 554 3 879196748 +41 69 4 890687145 +379 520 5 880524908 +184 766 3 889907738 +201 544 2 884140307 +243 387 4 879988752 +293 401 1 888907453 +6 499 4 883602283 +321 124 3 879438857 +172 183 5 875538864 +76 1158 4 875028190 +197 690 3 891409255 +16 418 5 877724727 +299 216 5 889502688 +99 1067 4 885679437 +340 186 4 884991082 +64 1139 1 889740260 +181 834 3 878962720 +246 1 4 884920918 +80 194 3 887401763 +128 238 4 879968125 +201 684 3 884114233 +371 24 4 877487500 +95 403 1 879196457 +174 1053 5 886514358 +85 449 4 882813248 +387 692 1 886482928 +234 210 3 892333616 +21 860 2 874951727 +72 504 4 880037461 +13 124 5 884538663 +3 345 3 889237004 +344 288 4 889813994 +254 967 3 886472139 +326 399 4 879877004 +246 588 4 884920998 +272 498 4 879454726 +235 193 5 889655204 +237 83 4 879376641 +181 1017 1 878962496 +281 877 4 881200643 +99 100 5 885678813 +141 225 3 884585523 +296 172 5 884197193 +89 121 5 879441657 +259 313 5 883370924 +6 197 5 883601203 +128 151 3 879968921 +347 588 3 881654321 +7 177 4 891352904 +334 170 3 891546181 +234 928 2 892336287 +102 443 3 888803148 +7 471 4 891352864 +141 405 3 884585105 +31 514 5 881548030 +271 258 3 885847357 +254 610 2 886472291 +236 237 4 890117001 +52 287 5 882922357 +214 50 3 891543114 +315 504 3 879821193 +61 1127 4 891206274 +181 1057 2 878963381 +312 919 3 891699263 +87 39 3 879875995 +63 1008 3 875748004 +85 108 2 880838201 +256 181 4 882164444 +279 571 4 878082781 +26 117 3 891351590 +290 432 5 880474590 +236 1013 2 890117465 +387 520 4 886480446 +119 109 5 874775580 +346 809 3 874951029 +339 523 5 891033044 +222 529 2 881059537 +230 8 5 880484501 +329 338 2 891655545 +184 647 5 889909024 +292 855 5 881105373 +60 207 3 883327342 +246 895 5 884924976 +231 252 4 888605273 +144 762 3 888104940 +254 755 3 886473489 +5 397 2 875635907 +303 473 4 879485111 +151 203 3 879524471 +168 117 5 884287318 +323 151 4 878739568 +90 995 4 891382708 +354 657 4 891218289 +372 200 5 876869481 +339 67 3 891035147 +284 328 4 885329322 +349 847 4 879466507 +177 508 4 880130825 +289 24 4 876790292 +262 195 2 879791755 +318 419 5 884495890 +1 150 5 876892196 +380 177 3 885479082 +23 549 3 874788290 +65 173 3 879217851 +56 435 3 892676429 +210 403 4 887736322 +147 340 4 885593965 +339 28 4 891032542 +12 753 5 879960679 +2 308 3 888979945 +264 283 5 886122952 +345 315 5 884900653 +193 111 1 889126375 +301 7 4 882074236 +373 68 5 877106741 +94 38 2 891722482 +357 833 4 878952341 +26 237 3 891351590 +316 197 4 880854227 +293 164 4 888906598 +217 226 1 889069878 +145 413 3 877343280 +371 177 4 877487135 +286 477 3 876521773 +74 150 3 888333458 +178 195 4 882826944 +321 527 3 879439763 +337 742 5 875184353 +90 190 5 891383687 +56 189 4 892683248 +325 403 2 891479102 +336 845 1 877758035 +13 802 2 882398254 +64 202 4 889738993 +181 1087 1 878962496 +296 281 2 884196985 +387 58 4 886484065 +293 720 1 888907674 +183 1217 3 891466405 +204 1194 4 892513906 +329 300 4 891655431 +124 226 4 890287645 +43 516 5 875981452 +181 846 3 878962586 +308 755 3 887740033 +204 482 4 892513906 +196 111 4 881251793 +200 743 3 891825607 +94 942 4 891721749 +383 319 2 891192377 +49 1078 1 888067164 +268 357 4 875309882 +389 176 4 880165047 +343 118 2 876403121 +233 205 4 877663548 +328 693 2 885046174 +17 245 2 885166209 +178 8 4 882826556 +367 17 5 876689991 +7 450 4 892132425 +118 853 5 875385228 +28 222 5 881961393 +224 704 3 888103812 +290 755 4 880475218 +312 131 5 891699702 +389 109 3 879915745 +82 529 4 878770028 +301 686 4 882078008 +158 149 3 880132383 +270 747 5 876955662 +262 237 3 879961980 +190 222 4 891033676 +271 510 4 885849140 +207 328 2 884386312 +87 229 4 879876037 +293 845 2 888904838 +94 1 4 885870323 +11 185 4 891905783 +373 596 3 877106741 +334 1010 5 891545108 +385 79 3 879441853 +297 257 3 874954763 +330 97 5 876547220 +378 162 4 880046332 +222 368 1 881061326 +326 210 3 879874964 +49 406 2 888067428 +234 87 3 892079336 +233 568 5 880612346 +215 215 3 891435680 +109 393 4 880579237 +79 325 5 891271792 +271 866 4 885848132 +97 466 3 884239449 +169 133 4 891359171 +344 148 2 884900248 +253 742 4 891628535 +15 244 2 879456447 +330 58 5 876546132 +267 177 5 878972756 +342 257 2 875318267 +114 496 4 881259994 +87 318 4 879877627 +25 189 5 885852488 +113 322 3 875076044 +5 444 2 875720762 +94 588 4 885873006 +232 1128 2 888549907 +95 111 4 879194012 +65 526 4 879216734 +158 62 5 880134759 +201 325 5 884111064 +90 1197 4 891384476 +24 178 5 875323676 +311 965 3 884365686 +280 559 3 891701583 +73 100 4 888626120 +110 384 2 886989524 +178 257 5 882823954 +201 527 3 884111360 +210 484 4 887736070 +74 137 3 888333458 +271 1101 4 885849025 +380 1449 4 885478845 +360 303 3 880353526 +323 282 3 878739543 +381 495 4 892696186 +215 222 4 891436469 +328 661 5 885047373 +145 592 3 888398867 +293 76 3 888906824 +262 625 3 879792751 +213 678 4 878870275 +267 24 5 878972682 +159 748 3 880485488 +130 240 4 875801750 +318 160 3 884497031 +363 426 2 891496927 +102 797 2 888802722 +223 225 3 891550193 +339 154 4 891032885 +332 978 4 888098459 +158 229 3 880134532 +18 215 3 880130930 +134 259 2 891732393 +13 890 1 883670672 +236 148 4 890117028 +246 719 4 884924026 +11 652 4 891905003 +107 340 5 891264356 +312 482 5 891698613 +224 846 4 888104116 +106 285 4 883876206 +313 578 3 891028241 +94 537 4 891722006 +129 269 4 883244011 +314 406 3 877887388 +336 239 3 877758001 +192 252 1 881368277 +328 183 5 885045805 +224 287 3 888104154 +125 73 5 892838288 +178 500 4 882827288 +71 923 5 885016882 +130 1274 2 878537853 +186 257 4 891719774 +293 445 4 888906315 +312 269 5 891698130 +268 998 1 875743929 +168 257 5 884287642 +203 326 4 880433398 +347 328 4 881652077 +155 286 4 879370860 +43 946 4 883955247 +374 454 4 880394997 +164 926 2 889402091 +291 179 5 874868255 +320 1011 3 884748978 +313 405 3 891028197 +82 414 4 878769748 +181 819 3 878962550 +201 1039 3 884111599 +130 541 3 876252307 +237 479 5 879376487 +9 479 4 886959343 +295 1115 5 879518568 +279 432 3 875296292 +256 866 4 882151198 +305 178 4 886322966 +378 875 3 880044108 +269 985 3 891446443 +352 4 3 884290328 +50 286 2 877052400 +311 845 4 884366824 +60 98 4 883326463 +84 7 4 883452155 +308 514 4 887738619 +95 655 4 879198109 +165 69 3 879525799 +174 288 3 886432770 +343 483 5 876404343 +296 151 2 884196964 +276 141 4 874792870 +301 427 4 882075775 +181 928 3 878963241 +293 183 4 888906119 +5 402 1 875720947 +378 4 3 880045612 +279 1231 4 875313583 +244 953 4 880607335 +334 316 4 891544407 +279 1 3 875295812 +244 164 3 880607154 +294 248 5 877819421 +114 182 3 881259994 +178 271 4 882823395 +211 286 4 879437184 +387 942 4 886483906 +278 22 5 891295360 +110 806 3 886987952 +36 885 5 882157581 +135 443 4 879857868 +385 262 4 884153000 +91 181 5 891439243 +357 291 4 878952137 +254 504 3 886472115 +123 255 1 879873905 +327 294 3 887743644 +320 716 1 884750992 +308 582 3 887736843 +264 381 4 886123596 +342 574 1 875320124 +361 286 5 879440286 +268 7 4 876513953 +77 405 3 884733422 +387 32 5 886479737 +1 183 5 875072262 +49 231 3 888069579 +380 587 4 885479274 +248 186 5 884534695 +144 454 3 888105993 +221 128 3 875246209 +22 222 4 878887925 +201 77 2 884140788 +335 245 4 891567053 +390 990 4 879693608 +136 19 4 882693529 +276 682 3 877933862 +138 150 3 879023131 +80 423 3 887401643 +308 433 5 887738301 +218 12 5 881288233 +382 546 2 875946234 +269 70 1 891447280 +326 452 3 879877470 +288 177 3 886629528 +128 48 4 879967767 +85 45 3 879455197 +233 58 3 880612403 +14 172 5 890881521 +386 121 3 877655145 +13 153 4 882139901 +379 732 5 880525995 +345 903 3 884900609 +13 343 1 883670672 +322 194 5 887313850 +243 127 4 879987045 +276 577 2 877935336 +314 399 3 877889359 +109 866 4 880571872 +248 153 3 884534716 +200 473 4 876042493 +109 91 4 880582384 +49 116 4 888066109 +23 1005 3 874787647 +198 241 3 884209264 +151 322 2 881771160 +301 772 3 882078250 +297 102 1 875240267 +144 480 4 888106322 +152 191 5 880149963 +186 44 5 879023529 +119 147 4 886176486 +196 580 2 881252056 +109 423 4 880577514 +270 551 4 876956264 +344 5 3 884901533 +246 161 3 884921679 +133 322 2 890588852 +327 476 2 887819538 +270 288 5 876953827 +243 1368 2 879987909 +8 685 4 879362423 +244 258 5 880601905 +354 900 4 891180527 +267 771 3 878973900 +43 531 4 883955160 +141 471 4 884585039 +176 13 4 886047994 +269 856 5 891448220 +99 322 3 885678499 +350 153 3 882347466 +135 603 4 879857765 +121 98 5 891388210 +297 173 4 875240237 +85 655 3 879454350 +56 761 3 892679333 +374 427 3 880396048 +214 39 4 891544845 +21 565 3 874951898 +340 526 5 884991396 +303 376 2 879543617 +277 405 3 879544027 +279 209 5 875308987 +128 65 4 879968512 +193 362 3 889122992 +325 95 2 891478895 +325 164 1 891479017 +389 1119 3 880088659 +30 286 5 885941156 +280 568 2 891701047 +346 134 5 874947644 +59 611 3 888204309 +64 217 2 889737568 +9 340 4 886958715 +224 893 3 888082350 +239 124 5 889178652 +363 212 1 891497278 +229 349 4 891633028 +96 483 5 884403057 +72 356 4 880036911 +276 669 1 874792767 +318 575 2 884497924 +210 238 3 891036021 +178 455 3 882825357 +222 1438 4 881059993 +338 408 5 879438570 +13 301 1 882140718 +232 204 4 888549515 +41 100 4 890687242 +201 578 2 884310148 +331 868 4 877196567 +321 205 5 879440109 +336 1047 4 877757063 +385 435 3 879443102 +145 5 3 875272196 +269 195 3 891449099 +167 136 4 892738418 +13 597 3 882397650 +42 939 4 881108484 +347 1283 1 881652730 +373 114 5 877098402 +303 391 1 879485747 +130 281 4 876250850 +65 328 4 879216131 +311 132 4 884365548 +6 195 4 883602283 +387 200 5 886481686 +271 402 4 885849791 +190 291 3 891042883 +15 274 4 879456168 +286 229 1 889652291 +347 472 5 881652813 +322 216 3 887313850 +275 300 4 875153898 +347 280 4 881652657 +331 64 4 877196504 +296 14 4 884196665 +130 282 5 875801750 +94 946 3 891723217 +377 748 4 891296945 +6 488 5 883601426 +11 350 4 891901991 +338 484 5 879438143 +7 481 5 891352341 +179 750 1 892151270 +314 282 5 877886862 +382 531 4 875946830 +26 597 2 891379753 +234 136 4 892317967 +290 193 4 880473802 +280 95 5 891700570 +378 141 3 880055565 +291 496 5 875088191 +181 266 1 878961709 +279 265 5 875655063 +210 50 5 887731014 +249 161 3 879572760 +293 479 4 888905923 +189 618 2 893265160 +95 712 2 888956400 +303 125 2 879467638 +43 252 4 875975363 +303 219 5 879484480 +378 386 3 880332643 +314 274 3 877886788 +151 83 5 879524611 +88 301 4 891037618 +325 185 5 891478140 +234 401 2 892336322 +293 464 3 888906927 +334 311 4 891628833 +268 244 4 875742316 +108 21 3 879880141 +374 200 5 880395735 +174 248 5 886433981 +181 682 4 878961586 +262 949 4 879792773 +8 144 5 879362286 +327 583 2 887820341 +5 100 5 875635349 +70 298 5 884064134 +181 1068 1 878962052 +7 385 5 891351585 +279 820 4 884984955 +350 340 4 882346257 +302 879 2 879436960 +393 1219 4 889729536 +374 735 5 880396359 +23 427 5 874789279 +387 447 4 886481687 +234 32 3 892078936 +286 1182 2 877535288 +181 929 1 878963122 +13 154 5 882141335 +87 239 4 879876673 +57 844 2 883697134 +269 436 3 891450675 +251 612 5 886271855 +119 174 4 874781303 +349 744 2 879465785 +128 568 4 879968544 +22 550 5 878888184 +23 739 2 874787861 +16 654 5 877720298 +361 709 5 879440974 +389 249 3 879915991 +189 225 4 893264703 +135 185 4 879857797 +151 411 4 879543228 +25 520 3 885852150 +389 613 5 880088038 +336 999 2 877757516 +236 546 4 890117223 +264 216 5 886123358 +7 667 5 892135347 +350 657 5 882346663 +160 484 5 876862243 +380 186 3 885479355 +374 930 2 880394179 +303 545 2 879544400 +7 210 4 891352904 +357 235 4 878951691 +38 1 5 892430636 +311 946 4 884366270 +387 559 3 886481737 +279 810 2 889984640 +257 100 5 882049950 +82 472 3 878768882 +295 162 4 879517157 +222 144 5 878182416 +60 218 4 883327538 +312 485 4 891699345 +157 137 5 886889876 +303 24 3 879468047 +327 153 4 887818596 +7 498 5 891351814 +10 99 5 877889130 +299 17 1 889503374 +271 294 2 885844698 +70 1065 4 884149603 +332 291 4 887938439 +322 92 4 887314073 +328 628 3 885047627 +44 148 4 878346946 +188 326 3 875071293 +347 173 2 881654503 +307 183 3 877121921 +368 396 2 889783617 +373 843 3 877106878 +312 483 5 891699156 +276 449 2 874792520 +20 742 4 879668166 +145 684 5 875273174 +310 740 4 879436292 +159 103 1 880557604 +92 568 3 875654590 +380 241 2 885479997 +311 1093 5 884963180 +13 601 4 882140104 +60 420 4 883327113 +11 100 4 891902718 +373 94 2 877111313 +5 143 3 875636815 +314 724 2 877888117 +389 160 4 880087897 +10 194 4 877886661 +269 98 4 891448951 +313 657 4 891013830 +167 133 5 892738453 +203 271 3 880433445 +50 9 4 877052297 +38 257 1 892429512 +373 357 4 877098568 +286 952 2 875807043 +95 660 5 880571456 +380 313 4 885477859 +257 531 5 879547608 +379 616 2 890464337 +1 248 4 874965954 +54 597 2 880934806 +267 22 4 878971816 +131 19 4 883681418 +327 203 3 887818540 +180 156 5 877127747 +60 163 4 883327566 +367 774 4 876690049 +213 97 5 878956299 +373 520 4 877098678 +152 699 5 882476911 +211 876 2 879461395 +299 462 5 878192463 +361 402 3 879441179 +200 231 4 884130679 +193 2 3 890860198 +341 948 3 890758169 +174 28 5 886434547 +378 73 3 880056667 +313 97 4 891016193 +38 145 1 892433062 +271 318 5 885848707 +280 62 3 891701747 +271 44 4 885849357 +372 183 5 876869667 +109 356 4 880578711 +392 178 5 891038945 +118 184 5 875385057 +1 208 5 878542960 +342 240 3 875318629 +320 974 3 884749097 +10 588 4 877886846 +7 669 1 892132020 +250 92 5 878091818 +178 508 3 884837419 +376 237 3 879459054 +195 67 2 874825826 +189 275 5 893264194 +268 91 3 875310311 +122 175 5 879270084 +1 128 4 875072573 +188 79 5 875072393 +276 418 4 874792870 +262 929 3 879791031 +44 237 3 878346748 +301 519 4 882076682 +181 990 1 878961814 +28 294 3 881954915 +276 340 5 880150440 +186 117 5 879023607 +13 808 2 882397833 +311 761 3 884366067 +364 1048 5 875931585 +297 1217 1 875240132 +342 95 4 875320297 +357 258 4 878951101 +178 596 3 882824194 +269 531 5 891447141 +87 7 4 879875735 +128 1 4 879966919 +366 447 5 888857990 +393 1034 2 889731413 +187 747 4 879465882 +7 232 3 891353766 +13 705 5 884538766 +64 151 3 879366214 +239 516 5 889180487 +7 658 3 891352419 +236 153 2 890118075 +59 974 3 888203343 +379 554 4 880525678 +360 237 4 880354484 +286 1140 3 877533586 +293 155 2 888907356 +102 663 3 892993190 +77 523 5 884752582 +380 172 3 885478334 +307 402 2 879283362 +194 161 4 879523576 +189 732 2 893277248 +293 642 3 888906804 +343 303 4 876402390 +6 466 4 883602422 +96 1 5 884403574 +206 889 2 888180081 +224 277 3 888103812 +295 164 5 879518395 +145 273 5 875270322 +3 299 3 889237199 +271 517 3 885848943 +328 726 4 885049112 +122 187 4 879270424 +368 551 4 889783617 +389 204 4 879991017 +292 288 3 877560833 +296 750 5 884196150 +296 484 4 884197308 +151 172 5 879524325 +230 739 5 880485611 +378 197 3 880056423 +58 654 5 884304865 +249 137 4 879572725 +374 9 1 880393056 +125 236 1 879454891 +268 762 2 875743216 +320 1090 3 884751376 +276 436 4 874792711 +92 214 4 875654732 +158 50 4 880133306 +62 697 4 879375932 +198 318 4 884207560 +295 450 4 879519438 +22 948 1 878887553 +334 961 4 891628832 +51 64 4 883498936 +374 1011 4 880393783 +352 96 4 884290328 +222 783 2 878184899 +113 319 2 875075887 +115 642 5 881171693 +75 952 5 884050393 +314 597 4 877887065 +5 370 1 875720814 +120 924 4 889490290 +7 183 4 891351624 +296 298 1 884196640 +373 278 5 877111423 +178 117 4 882824467 +51 679 3 883498937 +287 461 5 875336652 +222 280 3 878184545 +302 270 2 879436785 +297 705 2 875238726 +348 294 4 886522658 +194 744 3 879547130 +54 748 5 880928957 +343 228 5 876404757 +180 403 3 877355713 +374 948 2 880392592 +95 385 4 879196408 +300 261 3 875650018 +283 709 5 879298206 +291 156 5 874834768 +181 937 3 878961781 +339 11 4 891032379 +94 68 4 891722432 +109 392 3 880579237 +201 99 3 884141438 +324 1094 5 880575715 +286 1194 4 877533640 +42 418 5 881108147 +286 596 3 875806869 +105 307 2 889214381 +42 367 2 881109149 +59 131 4 888205410 +312 489 5 891699321 +327 710 4 887747410 +137 472 4 881433336 +323 467 5 878740017 +332 449 4 888360438 +99 331 3 885678247 +279 90 3 875314287 +279 228 4 889326161 +346 415 2 875265527 +113 508 4 875325377 +197 89 5 891409798 +199 294 1 883782636 +164 331 5 889401193 +287 301 3 875333873 +250 71 5 878090294 +94 576 2 891723593 +152 845 3 886535827 +66 597 3 883601456 +337 371 4 875236191 +99 312 2 885678576 +75 597 3 884050940 +393 471 4 887744549 +198 193 4 884207833 +370 42 3 879435462 +83 407 1 891182532 +344 684 3 884901249 +222 357 4 881059014 +60 82 3 883327493 +303 294 4 879466116 +52 531 5 882922833 +88 315 4 891037276 +193 258 3 889123038 +178 98 5 882826944 +200 208 5 884128904 +387 1007 5 886480623 +151 732 4 879542775 +276 450 1 874792634 +183 88 3 891466760 +387 224 5 886480703 +9 527 3 886959344 +199 111 3 883783042 +327 1056 2 887747971 +60 605 3 883326893 +325 614 4 891479038 +7 101 5 891350966 +363 82 3 891497047 +305 482 2 886323006 +305 188 2 886323757 +2 307 3 888550066 +263 143 5 891298592 +125 136 5 879454309 +342 58 5 875319912 +290 498 4 880473777 +303 15 3 879467607 +299 936 4 889417423 +236 183 2 890118206 +334 1524 4 891547467 +316 64 4 880853953 +226 9 5 883889811 +195 779 2 874825826 +249 98 5 879572256 +286 1411 2 877535425 +308 1047 3 887742130 +222 247 1 878714998 +234 12 1 892333830 +269 401 3 891451013 +135 504 4 879857843 +293 474 5 888905685 +305 511 4 886322560 +301 215 5 882077222 +299 67 2 889503740 +234 170 5 892333798 +200 373 4 884130754 +60 61 4 883326652 +224 392 4 888104154 +7 504 5 891352384 +208 428 4 883108430 +160 32 5 876859413 +102 565 2 888803395 +294 742 4 877819634 +5 176 3 875635962 +42 1044 4 881109271 +378 155 4 880333918 +322 521 5 887314244 +339 514 3 891037119 +56 231 3 892910931 +117 928 3 881009471 +303 232 4 879467191 +295 602 5 879517247 +321 855 3 879439733 +295 98 5 879517193 +70 588 5 884065528 +7 136 5 891351813 +363 555 1 891498920 +113 242 2 875075887 +360 735 5 880356059 +303 276 4 879467895 +102 47 2 888803636 +314 155 5 877891575 +64 161 3 889739779 +276 649 4 886483691 +389 28 4 880165411 +146 347 3 891457493 +206 1430 1 888179980 +333 79 3 891045496 +295 157 5 879966498 +118 655 5 875385136 +276 4 4 874791623 +160 109 2 876857844 +101 1057 2 877136789 +250 969 5 878092002 +292 1010 4 881104581 +228 313 5 889387172 +12 684 5 879959105 +195 325 2 880268330 +393 15 3 887744266 +182 423 5 876436480 +346 128 2 874950208 +56 738 3 892683978 +339 479 5 891032701 +194 451 2 879527145 +374 182 5 880395698 +263 125 4 891299573 +16 160 4 877722001 +76 197 5 875028563 +334 1133 4 891549192 +52 15 5 882922204 +117 1016 5 881008815 +59 473 3 888203610 +91 618 3 891438875 +234 435 3 892079040 +128 58 3 879968008 +279 50 3 890451347 +141 546 4 884585470 +375 356 4 886622131 +100 1236 3 891375630 +222 8 1 878182307 +344 195 5 884900771 +334 200 4 891547171 +314 1503 3 877890891 +380 518 3 885478821 +200 584 4 884129542 +311 491 4 884365168 +219 132 5 889403668 +363 2 4 891495809 +342 189 5 875319967 +210 735 4 887737338 +92 159 4 875810543 +328 291 4 885047865 +178 25 3 888514710 +104 412 3 888465900 +374 880 5 882156984 +283 659 5 879298239 +102 831 2 888802508 +59 609 2 888205855 +117 742 4 880126022 +97 432 4 884238997 +186 327 3 891717806 +334 608 4 891547668 +130 284 2 874953728 +13 100 5 882140166 +144 1286 4 888105846 +102 98 4 888802939 +6 193 3 883601529 +181 1361 1 878963122 +163 98 4 891220196 +207 832 3 877878424 +293 71 4 888906905 +116 1089 2 876453376 +270 716 4 876955563 +250 184 1 878091683 +167 169 1 892738419 +121 137 5 891388501 +393 1285 3 889555176 +13 71 4 882398654 +274 255 2 878945579 +145 302 4 879161553 +393 318 3 887745973 +303 396 4 879484846 +303 122 4 879485066 +59 45 5 888204465 +295 812 4 879518739 +164 300 5 889401221 +43 966 4 883955498 +378 508 4 880044278 +91 327 4 891438351 +135 564 1 879857956 +213 357 5 878955848 +182 121 3 885613117 +229 750 2 891631948 +253 298 3 891628074 +64 64 4 889737454 +43 210 5 883955467 +44 1058 4 878347392 +356 748 4 891406500 +295 1133 4 879519528 +162 544 4 877636167 +30 688 3 885941492 +245 411 3 888513425 +125 498 5 892836395 +303 722 2 879485372 +254 429 4 887347350 +174 1033 1 886515591 +99 245 3 885678500 +111 272 3 891679692 +256 2 5 882164480 +21 595 3 874951617 +332 218 5 888360396 +130 1208 4 875802211 +345 1247 2 884993996 +184 582 4 889909409 +343 333 3 876402468 +305 204 2 886323998 +113 324 2 875076180 +283 238 5 879298295 +89 762 3 879441491 +80 699 3 887401533 +294 346 3 889241377 +214 856 4 891543952 +380 427 4 885478193 +379 8 5 880525194 +286 55 4 877531574 +347 806 3 881653830 +223 321 1 891548920 +320 1041 3 884751084 +382 276 3 875946029 +279 1230 3 891209189 +235 523 5 889655044 +72 423 5 880036550 +301 470 4 882078199 +190 405 4 891626000 +262 762 2 879790974 +254 35 2 886475755 +75 1150 4 884050705 +3 324 2 889237247 +343 727 4 876406462 +267 433 5 878972314 +141 288 3 884584386 +151 49 3 879543055 +328 22 5 885045805 +223 25 1 891549382 +10 695 3 877892050 +83 122 1 886534501 +347 239 5 881654591 +249 39 4 879572284 +305 100 3 886323648 +293 480 5 888905685 +227 116 4 879035347 +279 290 4 875296924 +181 1129 1 878962675 +393 126 4 887743647 +70 398 2 884067339 +342 657 5 874984207 +250 324 2 878089033 +198 636 3 884209353 +340 181 4 884991431 +259 108 4 874724882 +292 118 3 881104701 +387 31 3 886483330 +85 318 4 879453684 +343 191 5 876404689 +235 237 4 889655435 +296 210 3 884197308 +313 650 4 891013829 +216 7 5 880232719 +139 127 5 879538578 +297 625 3 875240266 +305 174 3 886322635 +43 792 1 883954876 +312 584 5 891699263 +288 276 4 886892127 +110 77 4 886988202 +130 94 5 875802058 +48 423 4 879434752 +262 143 3 879793970 +200 196 4 884126833 +16 99 5 877720733 +75 100 5 884049875 +59 823 5 888203749 +269 444 3 891451971 +95 151 4 879193353 +380 1444 1 885480795 +181 1134 2 878963167 +19 310 4 885412063 +85 212 2 879454859 +332 728 4 893027298 +333 180 1 891045191 +1 242 5 889751633 +182 100 3 885613067 +235 174 4 889654971 +253 117 5 891628535 +285 313 5 890595313 +25 238 4 885852757 +33 292 4 891964244 +70 1035 3 884066399 +328 1015 3 885047737 +57 1071 3 883698324 +130 508 4 874953557 +262 778 4 879793536 +90 692 4 891384476 +293 91 2 888907499 +150 93 4 878746889 +263 205 5 891298792 +164 118 5 889401852 +128 686 4 879967174 +276 420 4 874792945 +62 475 4 879371980 +146 313 4 891457591 +201 20 2 884140275 +184 405 2 889908050 +267 642 4 878972524 +276 404 4 874792870 +222 432 3 881059142 +22 393 4 878886989 +234 945 3 892334189 +301 54 3 882076587 +7 435 5 891350845 +303 568 4 879468414 +65 239 5 879217689 +328 1109 3 885047100 +292 654 5 881105481 +394 67 5 881059383 +291 48 5 874868027 +393 402 3 889730187 +201 856 3 884140709 +365 894 1 891303760 +279 66 2 882146492 +280 92 3 891700366 +389 124 4 879916053 +363 228 3 891496481 +313 203 5 891013859 +96 435 3 884403500 +385 340 4 879438647 +21 687 2 874951005 +305 385 1 886324792 +308 28 3 887737036 +43 405 4 883956122 +336 742 3 877759928 +210 44 3 887737710 +64 238 4 889739025 +225 172 5 879540748 +292 173 5 881103631 +57 411 4 883697679 +221 272 5 885081264 +169 127 4 891359354 +385 474 5 881530739 +196 25 4 881251955 +311 715 2 884365746 +244 1107 2 880608699 +203 1 3 880434384 +307 746 4 875681078 +207 520 4 879665302 +321 514 4 879439706 +339 175 5 891032793 +85 211 5 879454005 +151 200 3 879525002 +131 286 5 883681514 +204 1022 5 892392078 +385 195 1 879453773 +92 930 2 886443582 +16 479 5 877720436 +378 1044 3 880332643 +10 447 4 877891747 +5 441 1 875720830 +151 414 5 879542474 +222 527 4 878183110 +60 88 4 883327684 +10 418 4 877886783 +360 197 5 880355888 +316 190 5 880853774 +378 123 3 880044532 +60 143 3 883327441 +394 42 4 880887152 +393 1206 3 889730494 +378 179 2 880055336 +94 282 3 891722758 +18 660 5 880130930 +130 833 4 876251037 +387 423 3 886484065 +92 238 5 875654159 +224 282 4 888082705 +172 582 4 875538864 +253 806 4 891628181 +178 746 3 882827019 +244 294 4 880601905 +370 116 3 879434707 +7 636 4 891351384 +177 1067 4 880131201 +343 163 5 876408139 +293 33 2 888907433 +308 705 5 887737837 +323 180 5 878739857 +317 328 4 891446438 +223 286 1 891548562 +279 433 4 880869018 +391 527 3 877399541 +178 454 4 882827247 +122 737 4 879270874 +296 22 4 884197068 +328 554 3 885049790 +177 878 1 882142141 +191 86 5 891562417 +280 157 3 891700733 +264 168 5 886122031 +99 69 4 885679833 +314 218 4 877889204 +352 7 3 884290549 +320 452 3 884751589 +294 355 4 889241426 +128 213 3 879967300 +381 378 4 892696019 +7 431 4 891351547 +149 896 4 883512689 +393 633 2 887746091 +125 198 3 879454385 +77 1028 1 884733400 +387 1019 4 886480288 +128 425 5 879967197 +276 727 3 889174919 +336 451 2 877756242 +323 289 2 878738910 +75 125 3 884050164 +324 754 5 880575045 +49 290 2 888069062 +258 751 5 885700946 +108 515 5 879879941 +94 921 5 891725332 +208 524 4 883108745 +210 243 2 887734998 +276 232 3 874792094 +201 443 3 884112580 +189 294 5 893264220 +332 249 3 891214777 +109 291 3 880571801 +274 478 5 878946577 +95 64 5 879197685 +392 333 4 891037531 +183 720 4 892323453 +293 619 1 888905229 +381 771 2 892696557 +385 661 4 879443045 +159 1025 2 893256139 +392 302 5 891037385 +130 1049 3 876251341 +385 99 2 879443186 +1 148 2 875240799 +372 672 5 876869512 +59 825 4 888203658 +222 239 5 878184392 +367 441 3 876690049 +42 1040 3 881106270 +141 151 2 884585039 +49 1009 3 888066133 +291 383 2 875086699 +115 763 2 881170725 +374 223 5 880394520 +173 242 5 877556626 +280 102 5 891701328 +60 511 4 883326301 +354 497 4 891217160 +320 188 4 884749360 +325 510 4 891478180 +145 7 5 875270429 +363 591 4 891499437 +5 69 1 875721555 +269 175 5 891455816 +268 182 4 875309882 +94 366 3 891722845 +116 286 3 876451911 +51 496 4 883498655 +263 95 5 891299324 +178 864 2 888514648 +363 658 3 891496543 +95 862 1 884266100 +90 367 4 891385250 +330 549 5 876547355 +7 483 4 891351851 +210 65 4 887731305 +120 405 4 889490580 +222 722 3 878184833 +130 66 5 875802173 +291 588 4 875086920 +276 672 3 874792692 +314 5 4 877889724 +43 63 3 883956353 +70 128 4 884067339 +216 4 5 880234469 +341 1527 4 890757717 +387 1097 3 886480657 +181 886 1 878961623 +385 1411 3 879447873 +393 539 3 891364757 +343 724 4 876404499 +385 224 2 879439728 +85 464 5 882996119 +13 363 3 882398076 +230 1192 4 880485352 +315 285 5 879799486 +269 7 3 891449055 +234 179 3 892079373 +149 310 2 883512689 +292 111 4 881104606 +294 748 3 877818861 +186 288 1 879022858 +326 204 3 879874964 +119 24 4 886177076 +163 234 3 891220137 +299 509 4 877880566 +117 307 5 880124339 +50 125 2 877052502 +280 448 3 891701765 +342 655 4 875319383 +94 731 3 891723295 +144 1016 3 888104322 +7 461 4 891352303 +308 70 4 887737244 +313 843 3 891030334 +257 116 3 879029742 +157 1 5 874813703 +1 112 1 878542441 +262 147 3 879790603 +42 736 5 881108187 +228 650 3 889388662 +277 15 4 879544145 +104 282 3 888465166 +18 237 3 880129991 +232 191 4 888549376 +144 96 5 888105691 +295 997 3 879518821 +279 652 4 890451408 +363 114 5 891494688 +165 181 5 879525738 +67 472 4 875379706 +275 95 3 875154535 +109 94 4 880579787 +60 673 4 883327711 +37 161 5 880915902 +378 159 3 880056887 +295 7 5 879518018 +181 262 2 878961749 +187 86 4 879465478 +145 39 4 875271838 +181 976 1 878963342 +127 449 4 884364950 +330 570 4 876547674 +174 845 5 886433771 +49 713 3 888066214 +279 105 4 875297381 +378 447 4 880056888 +307 81 5 879283091 +383 505 4 891193042 +70 48 4 884064574 +374 424 1 883628021 +334 1241 2 891545513 +380 154 3 885478624 +320 554 4 884751288 +363 366 2 891497583 +246 236 4 884921986 +263 144 4 891298792 +92 161 2 875654125 +303 1012 4 879544712 +275 662 3 880315170 +13 391 3 882398255 +43 432 3 875981421 +344 125 3 884899741 +219 114 5 889403091 +291 1188 4 874835165 +246 932 1 884923864 +21 118 1 874951382 +389 111 3 879916053 +58 283 1 884304592 +276 302 5 877584085 +190 748 3 891033388 +301 151 2 882074776 +313 831 3 891028426 +373 179 3 877104310 +328 570 3 885046498 +7 181 3 891351287 +104 248 2 888465604 +210 188 3 887737171 +130 669 4 888962754 +203 619 3 880434438 +94 390 5 891725333 +87 1187 2 879875893 +172 430 3 875537964 +373 228 4 877106328 +94 100 5 885872942 +222 670 3 878183657 +7 7 5 891352220 +188 485 3 875072087 +118 474 5 875384571 +105 286 4 889214306 +3 348 4 889237455 +368 436 3 889783562 +114 654 3 881259741 +235 213 4 889655044 +377 288 5 891295937 +296 504 5 884197394 +385 129 3 881467873 +3 351 3 889237315 +257 462 4 879547695 +398 514 4 875658794 +109 248 2 880564415 +119 250 2 874775731 +329 303 4 891655350 +346 31 4 874950383 +288 50 4 886374520 +56 815 4 892683960 +18 955 4 880130713 +194 175 3 879521595 +204 297 5 892514010 +11 291 4 891902815 +102 298 3 875886827 +271 58 3 885849325 +54 258 4 880928745 +187 175 2 879465241 +308 633 4 887739257 +290 118 4 880731896 +222 768 2 878185014 +293 1057 2 888905229 +43 17 3 883956417 +174 268 5 886432749 +293 181 3 888904734 +60 21 3 883327923 +94 82 4 891721777 +308 12 5 887737243 +30 28 4 885941321 +328 916 2 893195710 +389 429 4 879991352 +160 118 3 876768828 +307 101 3 888095824 +63 1011 1 875747731 +95 728 3 882804159 +293 69 3 888906576 +92 215 4 875656419 +41 423 2 890687175 +293 504 4 888905736 +379 452 3 880524614 +168 288 1 884287927 +201 847 2 884111546 +294 79 4 889854323 +186 225 4 879024148 +254 199 4 886472089 +378 148 4 880044944 +301 582 2 882077811 +312 496 5 891698664 +127 288 5 884363851 +11 216 3 891904949 +258 315 3 885701004 +311 592 5 884364845 +92 249 3 886443192 +161 215 2 891170866 +181 832 1 878963038 +18 188 3 880129388 +43 98 5 875981220 +312 967 3 891699321 +328 550 3 885047336 +280 50 3 891701027 +54 260 4 880930146 +325 305 2 891477638 +268 370 2 875745579 +389 845 4 879916053 +141 864 3 884585128 +301 66 4 882077330 +181 243 1 878961814 +387 773 4 886481800 +393 932 3 887744578 +38 211 1 892431907 +292 79 5 881103434 +234 91 5 892335920 +318 137 4 884494652 +80 208 5 887401604 +119 544 2 886177206 +308 5 4 887739608 +360 588 3 880355803 +151 79 4 879524642 +387 198 4 886480352 +271 425 2 885849275 +360 302 4 880353526 +378 546 2 880318158 +145 696 3 875271442 +357 125 5 878951784 +393 940 2 889731109 +85 89 4 879454075 +390 989 5 879693677 +109 1014 4 880571979 +1 193 4 876892654 +128 118 5 879968896 +145 895 3 883840687 +380 856 3 885479706 +298 69 4 884125058 +387 1115 3 886479575 +389 607 3 879991297 +206 750 3 888179981 +269 93 3 891446580 +15 9 4 879455635 +264 382 4 886123596 +135 183 4 879857723 +90 79 4 891383912 +342 108 4 874984574 +313 154 2 891014753 +340 205 4 884991516 +201 36 1 884140927 +303 739 5 879468547 +7 484 5 891351201 +354 1007 4 891216549 +85 702 2 879828054 +385 153 4 879442028 +145 713 4 875270616 +327 196 4 887745871 +246 145 1 884923922 +25 50 5 885852150 +368 219 2 889783453 +87 87 4 879877931 +7 550 4 891352489 +222 196 5 878183110 +276 1240 4 874977579 +195 46 3 891762441 +29 678 3 882821582 +313 156 3 891014838 +339 298 2 891032856 +393 128 3 887746145 +13 906 3 891749765 +279 120 1 888427451 +151 183 3 879524642 +286 168 4 877531760 +360 28 4 880355678 +275 496 3 880314031 +332 871 3 887938351 +312 443 4 891698951 +76 325 2 878101114 +246 547 4 884922512 +397 7 5 885349913 +147 751 2 885593965 +322 751 2 887313611 +8 568 4 879362233 +274 243 2 878944437 +339 188 4 891033735 +387 201 5 886484631 +42 183 4 881107821 +206 678 1 888179833 +276 403 4 888873675 +175 183 4 877107942 +201 187 3 884111312 +293 139 3 888908088 +23 747 3 874786903 +18 47 3 880131262 +307 153 5 875681145 +380 62 1 885479777 +194 286 1 879520306 +59 717 2 888203959 +311 193 5 884365075 +95 404 5 888954513 +288 69 5 886373426 +50 123 4 877052958 +117 588 3 881011697 +315 127 5 879799423 +259 357 5 874725485 +167 733 2 892738453 +79 7 5 891272016 +99 265 3 885679833 +174 950 3 886434204 +256 552 3 882164927 +18 428 3 880131325 +303 735 4 879483567 +66 280 4 883602044 +346 742 4 874948513 +54 827 3 880937813 +44 252 2 878346748 +184 69 3 889908694 +165 651 5 879525961 +211 357 2 879460172 +336 1057 4 877757373 +123 735 2 879872868 +274 208 4 878946473 +385 423 2 879445662 +13 230 3 882397503 +326 241 3 879875778 +351 984 5 879481675 +325 86 3 891478578 +250 195 2 878091736 +188 56 4 875071658 +64 879 3 879365313 +145 348 4 888397542 +126 302 4 887853469 +190 363 2 891626023 +261 359 5 890454351 +286 29 2 877533586 +284 887 4 885328906 +346 294 3 886273405 +83 63 4 880327970 +18 692 3 880130930 +303 742 4 879484899 +306 13 4 876504442 +373 747 4 877104048 +362 312 5 885019504 +360 283 4 880354215 +394 1210 3 881060330 +174 1028 4 886434087 +280 5 4 891701066 +60 523 4 883326837 +279 998 5 875313883 +323 772 3 878739904 +382 25 2 875945880 +399 813 3 882512003 +102 208 4 888803537 +286 993 2 875807043 +181 251 1 878962052 +59 597 2 888203610 +323 286 3 878738826 +390 124 4 879694232 +293 583 3 888908001 +201 1153 2 884140709 +92 961 4 875811128 +109 1039 2 880579418 +121 428 5 891388333 +295 82 4 879518126 +73 180 4 888626577 +101 121 4 877137015 +291 66 4 875086185 +293 209 3 888905519 +347 819 1 881653155 +72 203 3 880037462 +382 171 3 875946639 +180 28 3 877355568 +398 227 2 875908666 +331 705 2 877196173 +339 632 4 891033794 +398 181 4 875652318 +246 29 1 884922740 +173 1265 3 877557239 +303 184 5 879467436 +199 117 3 883782879 +374 931 3 880936233 +339 631 5 891033256 +244 204 4 880605812 +45 100 5 881010742 +315 603 5 879821267 +233 82 4 877663612 +264 183 5 886122577 +194 514 3 879521167 +303 237 5 879468307 +316 357 4 880854049 +91 230 4 891439560 +363 417 1 891498223 +117 109 4 880126336 +289 1016 5 876789843 +279 63 3 875313350 +13 665 2 882396984 +60 132 4 883325944 +276 595 2 874787195 +13 345 4 884538366 +361 183 4 879441285 +333 88 5 891045551 +197 62 2 891410039 +175 669 1 877107790 +339 1301 3 891032189 +336 282 3 877760032 +21 875 4 874951005 +309 938 4 877370383 +275 117 3 876197615 +243 286 4 879986908 +144 193 4 888105287 +115 32 5 881171348 +250 223 4 878090294 +186 988 4 891719775 +347 829 4 881653155 +378 549 3 880056701 +308 25 4 887740649 +265 477 3 875320371 +331 58 3 877196567 +130 742 5 876251053 +299 333 4 892249868 +54 741 5 880931687 +21 441 3 874951761 +130 39 4 875801496 +315 100 5 879821003 +243 268 4 879986951 +393 681 3 887742798 +276 1089 2 882659211 +336 655 3 877757752 +238 220 3 883576560 +296 923 5 884197193 +84 148 4 883452274 +18 968 3 880130155 +178 877 2 888513069 +158 286 4 880134261 +293 485 3 888905948 +387 208 3 886480484 +24 294 3 875246037 +48 511 5 879434954 +181 1374 1 878962391 +87 25 4 879876811 +382 474 5 875947199 +141 281 4 884584865 +178 187 4 882826049 +388 56 3 886441015 +90 14 5 891383987 +87 705 4 879877740 +172 1134 2 875536721 +13 261 1 883670785 +207 568 4 875509395 +270 1148 5 876955042 +252 275 5 891456464 +371 237 5 877487052 +318 158 5 884498709 +149 301 3 883512813 +148 509 5 877016605 +224 1044 3 888104353 +326 200 2 879877349 +87 64 5 879875649 +396 841 4 884646648 +389 715 3 880614012 +48 306 4 879434211 +201 636 2 884310149 +387 183 4 886480206 +325 193 4 891478627 +90 903 4 891383319 +156 124 3 888185677 +274 476 4 878945645 +326 563 3 879877470 +22 110 1 878887157 +152 67 5 882477689 +285 902 4 890595584 +18 193 5 880131358 +189 15 2 893264335 +144 181 4 888104032 +280 181 3 891701248 +14 603 4 890881484 +327 659 4 887819021 +262 447 3 879794206 +222 949 3 878183173 +198 410 1 884205385 +291 375 1 874868791 +125 63 3 892838558 +339 739 3 891036058 +249 245 2 879571999 +364 321 2 875931478 +312 659 5 891699321 +326 233 4 879876941 +262 781 3 879793667 +7 154 5 891353124 +277 121 2 879544058 +86 881 2 879570218 +13 816 1 882396983 +292 83 5 881104360 +231 846 4 888605274 +299 998 2 889503774 +360 79 4 880355485 +88 261 5 891038103 +182 471 4 885613216 +186 31 4 879023529 +343 684 3 876406878 +181 1388 1 878962168 +308 313 3 887736408 +231 151 1 879966209 +347 65 2 881654679 +64 9 4 889738085 +381 129 4 892697628 +276 307 4 878015917 +181 1284 1 878962773 +214 257 3 891543176 +311 239 3 884365284 +109 559 3 880579709 +83 452 3 880309214 +372 148 5 876869915 +369 271 5 889428642 +270 714 4 876954965 +94 685 4 891722382 +398 504 3 875722071 +311 1 4 884963202 +85 234 4 882995015 +334 1411 1 891549434 +94 170 5 891725362 +192 340 4 881366535 +56 433 4 892676970 +313 515 5 891013803 +72 127 5 880037702 +401 486 4 891033184 +255 259 3 883215759 +94 650 5 885870612 +396 291 4 884646289 +166 300 5 886397723 +398 69 5 875659191 +24 286 5 875323773 +335 260 3 891567159 +234 1050 3 892333616 +321 213 4 879440109 +385 767 1 879447361 +372 1083 3 876869878 +75 1001 1 884050531 +275 222 4 876198296 +72 177 4 880037204 +271 356 4 885849300 +188 717 4 875074329 +228 87 1 889388662 +217 840 1 889070087 +125 1000 3 892838977 +94 458 4 891722306 +326 141 3 879876235 +62 508 4 879372277 +373 204 5 877098222 +368 288 3 889783453 +313 67 1 891029117 +181 25 5 878962675 +357 118 5 878951691 +124 96 4 890399864 +276 203 4 877934910 +222 746 5 878183137 +36 269 3 882157258 +338 945 4 879438762 +323 300 2 878738827 +283 210 5 879298206 +8 56 5 879362183 +305 530 5 886323237 +140 258 3 879013617 +11 663 4 891905032 +255 833 4 883216902 +63 678 2 875747047 +194 44 4 879524007 +389 656 5 879991175 +91 322 4 891438397 +275 102 3 875154718 +352 173 1 884290361 +371 179 3 877487364 +330 72 5 876547087 +198 692 2 884208377 +365 7 2 891304213 +1 264 2 875071713 +64 1141 5 889739834 +87 63 4 879876848 +64 17 3 889739733 +179 303 1 892151270 +130 496 5 875216593 +269 276 5 891446193 +174 21 1 886515209 +303 118 2 879485623 +237 423 4 879376487 +249 108 3 879640452 +385 1353 4 879440098 +357 326 5 878951101 +299 482 4 877881508 +279 214 3 875306910 +217 281 2 889069842 +181 748 1 878961368 +319 302 4 876280242 +181 1009 1 878963276 +313 527 4 891013525 +248 11 5 884534992 +109 820 3 880572382 +269 525 4 891449055 +382 290 4 875946830 +378 1028 2 880044726 +210 185 4 887736232 +128 723 3 879967966 +363 472 1 891498469 +393 1048 3 887745120 +76 960 3 875028143 +102 510 4 888801316 +304 893 3 884967520 +360 194 3 880355803 +201 240 3 884114069 +254 951 4 886474619 +339 240 4 891036641 +234 73 2 892334368 +82 225 3 878768790 +383 464 4 891192986 +279 319 4 890780735 +89 845 2 879441335 +14 9 4 879119260 +286 1230 1 877535157 +181 260 1 878961623 +209 301 3 883460492 +330 47 5 876546409 +264 762 3 886122771 +267 578 3 878973153 +92 96 4 875656025 +303 574 1 879544184 +87 566 5 879875775 +393 88 3 889730066 +194 1058 2 879552923 +167 126 3 892738141 +90 1125 4 891384611 +69 150 5 882072920 +356 328 4 891406241 +92 393 3 875660494 +146 688 1 891457749 +363 1485 4 891496102 +269 1071 2 891449801 +119 199 5 874781994 +18 169 5 880130252 +171 1022 3 891034889 +325 340 3 891477473 +76 288 2 878101114 +114 520 3 881260473 +387 566 3 886483194 +291 1215 1 874834184 +396 148 4 884646436 +148 116 5 877398648 +11 597 2 891904037 +373 58 4 877100161 +369 988 3 889428228 +292 56 5 881105373 +128 280 1 879968579 +197 750 5 891409199 +216 15 3 881428365 +144 591 3 888104122 +374 824 4 880394331 +294 411 3 889242589 +389 1530 2 880088753 +301 161 3 882076558 +141 476 3 884585498 +299 222 2 877878148 +170 881 3 886190419 +85 327 3 884820110 +41 518 3 890687412 +393 683 4 887742110 +351 538 4 879481495 +308 177 5 887738570 +144 471 4 888104213 +332 928 5 887938706 +101 109 2 877136360 +60 492 5 883326525 +244 1039 4 880607570 +251 12 4 886271700 +125 692 3 892836523 +11 733 4 891904413 +7 166 3 891351585 +328 1041 3 885048762 +234 265 3 892078837 +181 1049 1 878963122 +44 5 4 878347598 +94 684 4 891721615 +363 62 2 891497639 +256 846 4 882151167 +205 269 3 888284347 +385 304 3 879438949 +328 696 3 885049376 +73 89 5 888625685 +354 180 3 891217274 +393 252 3 887744766 +393 763 5 887745086 +94 1089 2 891724829 +159 220 5 880557782 +339 65 4 891033452 +130 729 4 876252042 +274 742 4 878945322 +301 154 4 882076425 +293 151 4 888904927 +128 494 4 879967016 +102 597 3 888801673 +339 25 4 891035116 +90 471 4 891385752 +105 333 3 889214268 +185 28 5 883524428 +339 181 4 891033898 +222 288 4 883815252 +198 175 3 884207239 +63 300 4 875748326 +154 640 5 879138713 +256 370 3 882153321 +14 475 3 876964936 +90 1109 3 891385652 +21 834 1 874951293 +393 890 1 887742991 +38 118 5 892431151 +378 1037 2 880334476 +25 8 4 885852150 +178 739 4 882827737 +6 483 5 883601500 +276 168 5 874791623 +393 651 4 889728238 +1 219 1 878542327 +62 318 5 879373659 +224 1163 2 888104154 +85 340 3 893109920 +292 423 5 881105625 +304 310 3 884966697 +327 410 2 887819462 +373 506 4 877099211 +399 219 3 882345454 +261 988 3 890455190 +18 170 5 880130515 +158 403 4 880134650 +244 196 5 880605416 +72 121 3 880036048 +303 792 5 879484644 +37 22 5 880915810 +398 481 3 875659441 +327 200 4 887747338 +25 969 3 885852059 +222 9 5 877563227 +28 678 2 882826550 +387 144 3 886479649 +69 100 5 882072892 +342 1160 3 874984751 +141 1013 1 884585470 +268 474 5 875309718 +308 693 3 887738104 +293 92 4 888906071 +82 657 4 878769261 +82 458 1 884714145 +142 288 3 888639837 +264 844 1 886124097 +117 98 4 881012430 +233 276 5 877665324 +159 471 4 880485861 +227 1010 3 879035637 +244 1074 4 880607904 +234 77 3 892333890 +25 169 5 885852301 +296 56 5 884197287 +107 269 5 891264267 +13 501 5 882398724 +95 683 4 879193353 +216 108 4 880232917 +279 1032 3 880666757 +15 307 1 879455233 +380 1168 3 885479833 +181 825 1 878963304 +115 443 4 881171622 +363 569 2 891498259 +354 285 5 891216526 +95 366 4 880572628 +1 232 3 878543196 +145 406 3 875270692 +347 82 5 881654269 +312 275 5 891698553 +373 729 4 877099263 +245 473 2 888513344 +61 331 2 891206126 +397 1019 3 885349715 +7 185 5 892135346 +116 347 2 886309481 +122 470 3 879270901 +361 97 4 879440740 +379 402 3 880524943 +244 181 4 880604302 +318 162 5 884496123 +290 474 3 880474204 +200 560 4 884130655 +45 237 4 881008636 +225 418 5 879540650 +60 613 4 883326497 +55 685 1 878176134 +271 141 4 885849114 +387 564 1 886481800 +259 200 4 874725081 +119 1202 4 874775680 +279 1052 4 890451408 +312 8 5 891699263 +92 663 4 875653914 +158 803 3 880134848 +92 102 2 875813376 +327 517 2 887818991 +128 14 5 879967341 +67 7 5 875379794 +16 603 5 877719206 +87 97 5 879877825 +389 550 3 880088923 +393 62 4 889728895 +58 64 5 884305295 +308 160 4 887738717 +255 406 1 883216358 +121 249 1 891388708 +200 391 4 884130484 +13 219 1 882396955 +214 307 3 891542735 +399 591 3 882340599 +271 744 4 885847693 +266 124 4 892258004 +354 702 3 891307114 +336 276 4 877760310 +316 283 5 880853599 +87 521 3 879877772 +15 458 5 879456288 +246 470 4 884922964 +92 278 3 876175640 +379 443 4 880524640 +301 710 3 882078008 +229 748 3 891632402 +43 951 3 883955969 +351 1105 4 883356833 +203 24 4 880434359 +145 327 5 875269822 +268 735 3 876518557 +6 526 3 883602596 +294 105 3 889242660 +282 338 3 879949468 +379 192 4 880524972 +14 202 3 890881521 +94 624 2 891723459 +24 258 4 875245985 +391 188 3 877399658 +251 172 5 886271641 +267 475 5 878970368 +46 151 4 883616218 +292 285 4 881103896 +276 209 4 874791667 +222 142 2 878183984 +27 121 4 891543191 +402 257 4 876266701 +301 756 4 882074932 +167 1310 3 892738384 +7 562 5 891354053 +370 657 3 879434636 +320 159 4 884751190 +206 294 2 888179694 +326 67 2 879877284 +373 210 5 877098177 +201 57 4 884111958 +387 844 5 886480484 +59 490 4 888205614 +249 479 5 879641035 +314 1085 1 877892017 +280 1313 5 891700184 +354 1101 3 891218003 +12 28 5 879958969 +378 222 3 882712421 +60 180 4 883326028 +267 943 4 878972903 +354 61 5 891218091 +72 480 5 880037768 +256 77 3 882164955 +378 233 2 880333540 +7 191 5 891351201 +244 886 5 880601905 +303 300 1 879466166 +57 151 3 883697585 +334 216 3 891546348 +293 443 4 888906781 +388 816 4 886441248 +42 409 3 881106270 +18 393 3 880130930 +216 93 4 880232637 +250 948 3 878089182 +181 878 1 878961709 +210 257 5 887730789 +269 475 5 891457067 +399 284 2 882512342 +167 73 2 892738452 +336 49 4 877758001 +378 465 3 881582268 +263 215 4 891298273 +332 204 4 888098088 +271 411 1 885848062 +366 185 5 888857750 +268 169 5 875309829 +223 22 5 891550649 +156 180 5 888185777 +239 8 5 889179290 +7 683 4 891350703 +63 952 3 875747896 +345 443 5 884993464 +2 257 4 888551062 +164 619 4 889402160 +72 100 5 880035680 +301 273 1 882074800 +267 204 4 878971629 +276 315 4 892436298 +314 763 5 877886706 +56 195 5 892676429 +177 336 2 880130500 +311 183 5 884365519 +267 479 4 878971405 +117 143 1 881012472 +46 181 4 883616254 +43 705 4 883954970 +64 367 4 889739678 +399 1314 3 882349198 +354 276 3 891216760 +164 181 5 889401906 +296 274 4 884196741 +44 717 3 878346470 +301 849 4 882078883 +95 90 2 880572166 +1 236 4 875071898 +197 127 5 891409839 +232 234 3 888549595 +336 399 3 877757063 +305 190 3 886322966 +62 213 4 879375323 +389 507 5 879991196 +387 501 4 886483620 +81 412 1 876534408 +207 8 3 878103820 +338 663 5 879438627 +222 665 1 878184719 +299 916 3 892249868 +24 318 5 875323474 +7 399 4 891354357 +92 712 3 875656392 +29 98 4 882821942 +303 1222 3 879468513 +380 229 3 885481179 +264 745 5 886123656 +335 269 4 891566808 +244 475 4 880603582 +348 276 3 886523456 +217 363 1 889070011 +7 139 3 891354729 +343 306 4 876402516 +384 272 5 891273509 +378 396 4 880332879 +137 249 4 881433387 +92 46 4 875653867 +116 322 2 876452186 +101 24 4 877136391 +321 736 4 879439537 +77 52 5 884753203 +262 318 5 879793022 +312 615 4 891698893 +393 275 4 887744053 +268 246 5 875742316 +363 1099 2 891495402 +200 2 4 884130046 +62 845 3 879372383 +234 300 3 891033627 +393 1095 2 887745174 +77 144 3 884752853 +277 628 4 879543697 +240 289 4 885775745 +48 170 4 879434886 +197 578 3 891410039 +338 133 4 879438143 +113 277 3 875076416 +347 12 3 881653584 +315 180 4 879799526 +393 142 4 889730460 +379 1032 2 880568109 +136 42 3 882848866 +33 333 4 891964259 +82 479 4 878769703 +187 275 5 879465937 +111 896 2 891680243 +387 1012 4 886481073 +327 514 4 887747338 +373 487 4 877098177 +295 241 5 879518800 +379 401 3 880962187 +94 410 4 891721494 +378 1220 3 880055779 +343 458 5 876402894 +346 76 4 874950135 +10 160 4 877888944 +375 684 4 886622066 +158 244 4 880132772 +235 190 4 889656007 +21 859 2 874951859 +389 38 2 880089076 +345 333 3 884900543 +26 292 3 891347400 +213 200 5 878956100 +5 417 3 875636830 +58 950 1 892242020 +399 8 3 882510165 +395 151 3 883765297 +293 977 2 888908088 +188 732 3 875073828 +222 268 4 877562748 +3 330 2 889237297 +25 13 4 885852381 +308 309 1 887736408 +214 22 3 891544200 +42 79 5 881108040 +262 432 3 879794267 +255 405 4 883216902 +254 573 2 886475476 +94 96 3 885872942 +42 428 3 881108040 +299 1119 4 889502727 +109 68 3 880582469 +301 423 1 882076239 +57 1011 3 883697761 +263 177 4 891297988 +228 204 3 889388662 +342 204 4 874984261 +290 450 2 880473557 +311 485 1 884364538 +47 302 5 879439040 +378 284 3 880044835 +301 164 3 882076966 +72 581 4 880036996 +213 475 4 878870648 +192 1405 5 881367456 +339 23 5 891033481 +144 32 4 888105287 +42 234 4 881108093 +255 413 2 883216358 +224 662 5 888103671 +332 717 3 887938760 +315 732 3 879821158 +236 66 2 890118507 +301 1091 3 882079353 +374 159 4 880937920 +125 383 2 892839412 +21 665 3 874951858 +262 491 3 879793188 +328 332 3 885044782 +379 90 2 880740215 +7 227 3 892132317 +339 126 4 891032121 +197 286 1 891409255 +334 514 4 891545926 +379 164 4 880524582 +109 196 4 880578358 +320 742 4 884748800 +348 473 3 886523560 +152 51 4 882476486 +328 228 3 885046976 +6 459 2 883599228 +18 509 4 880129940 +374 761 3 880938370 +312 170 5 891698553 +308 161 3 887740788 +2 316 5 888979693 +4 294 5 892004409 +60 495 3 883327639 +368 96 3 889783678 +212 286 4 879303468 +48 427 4 879434653 +90 614 4 891384020 +271 311 3 885844547 +92 720 3 875813022 +269 183 3 891448823 +254 186 3 886472023 +92 109 3 886443351 +29 259 4 882821044 +279 384 4 875312946 +365 13 3 891303950 +308 199 4 887737760 +95 674 2 880572104 +25 197 3 885852059 +269 171 5 891447169 +269 527 5 891447841 +254 98 4 886472201 +253 95 4 891628416 +320 1081 4 884748997 +13 716 4 882141393 +102 167 2 892993927 +110 28 4 886987979 +399 1228 3 882345500 +64 71 3 879365670 +91 64 4 891439243 +122 423 4 879270805 +163 97 4 891220019 +301 88 4 882077142 +184 22 3 889908985 +1 252 2 875240677 +361 111 3 879440974 +293 64 5 888905519 +280 1015 3 891701631 +378 451 4 880055597 +393 1469 3 889729749 +331 305 5 877196819 +268 325 3 876513675 +206 260 3 888179772 +301 180 3 882076782 +63 412 3 875748109 +49 657 5 888068032 +18 629 3 880130515 +151 660 4 879524199 +109 183 5 880572528 +77 778 2 884753203 +320 90 4 884751034 +96 525 2 884402860 +160 123 4 876768949 +21 717 1 874951483 +354 70 3 891218208 +313 423 4 891013939 +197 258 4 891409255 +271 739 4 885849706 +227 150 3 879035347 +126 243 5 887855342 +250 477 3 878089716 +101 756 3 877136424 +15 476 4 879456404 +334 7 5 891544788 +6 238 5 883601713 +174 1032 3 886515591 +378 972 4 880056491 +256 9 4 882150644 +387 381 4 886482969 +7 589 5 891352451 +254 103 2 886476123 +63 979 3 875748068 +37 597 5 880915607 +95 142 4 880572249 +393 12 5 887745883 +63 106 2 875748139 +201 156 4 884111830 +146 302 4 891457538 +92 201 3 875654159 +13 317 5 882140552 +370 705 3 879434666 +314 64 5 877888346 +85 425 4 879454905 +160 926 2 876769148 +381 652 5 892696252 +199 276 4 883782879 +279 80 4 875313750 +144 1284 3 888104446 +381 724 3 892696616 +180 694 5 877128388 +299 115 3 877880474 +373 28 3 877103935 +40 243 2 889041694 +6 81 4 883602283 +7 501 5 891353411 +399 459 4 882340807 +95 185 3 879197886 +393 953 4 889555334 +378 1134 4 880044278 +156 346 3 888185561 +295 53 1 879519528 +328 736 3 885047737 +21 985 2 874951349 +366 860 2 888858078 +149 689 2 883512950 +213 628 5 878870648 +353 286 5 891402757 +373 386 3 877107403 +144 216 4 888105691 +215 70 3 891436232 +61 243 2 892331237 +181 1387 1 878962119 +363 959 1 891497523 +331 811 4 877196384 +62 176 5 879373768 +378 302 5 889664996 +95 699 2 882804187 +396 751 3 884645648 +234 76 2 892335564 +87 515 4 879876194 +128 136 5 879967080 +385 673 2 879445779 +327 382 3 887819316 +308 747 3 887740033 +279 1239 1 884982882 +320 869 4 884751068 +403 111 4 879785974 +405 56 4 885544911 +307 511 5 879282952 +354 155 2 891307206 +101 284 4 877136564 +141 117 4 884584929 +389 785 3 880613841 +194 588 4 879524393 +280 1459 4 891701747 +379 391 4 880525698 +303 1226 4 879544713 +198 654 5 884207733 +201 563 1 884114813 +70 542 2 884065248 +342 1048 1 875318536 +389 496 4 879991218 +147 690 4 885593965 +239 558 5 889178986 +342 4 4 874984395 +380 709 4 885478603 +331 933 3 877196235 +184 91 3 889909988 +62 815 3 879375391 +88 690 4 891037708 +362 336 2 885019468 +251 249 5 886272118 +325 492 4 891478557 +315 269 5 879799301 +303 1021 4 879484643 +343 919 5 876403348 +22 648 4 878886647 +310 251 5 879436035 +213 281 4 878871038 +327 239 3 887819316 +222 869 3 878182337 +269 5 2 891450780 +214 238 4 891544472 +303 55 4 879467328 +13 617 3 881515112 +385 1536 5 879441339 +168 1047 2 884288080 +20 597 3 879668190 +297 269 4 875774037 +393 456 3 887745501 +46 1024 5 883614766 +367 665 5 876689738 +328 546 3 885048861 +308 498 5 887736584 +116 260 2 887605412 +144 93 1 888104032 +363 347 3 891493723 +7 207 4 891352526 +221 118 1 875244940 +264 210 5 886123415 +267 88 4 878972873 +329 272 5 891655191 +85 1137 4 879452609 +326 443 5 879877349 +222 202 4 878181906 +367 436 4 876689962 +224 620 3 888104085 +378 304 4 880043929 +334 227 1 891547083 +345 1048 2 884991436 +381 694 4 892696929 +332 342 4 892484976 +399 73 3 882343731 +396 260 3 884645754 +256 226 5 882164644 +216 433 3 880233957 +357 819 4 878951653 +117 772 4 881012728 +345 93 4 884991191 +18 953 3 880131901 +141 328 4 886447679 +158 731 2 880135118 +328 1263 3 885048730 +344 12 5 884901024 +169 604 4 891359317 +389 792 4 880088115 +77 89 5 884733839 +10 176 4 877889130 +303 844 3 879468179 +313 228 3 891016986 +224 655 4 888103646 +218 789 3 881288574 +244 117 2 880604698 +13 546 3 882397741 +365 275 4 891304019 +214 12 5 892668153 +299 752 3 887136060 +230 186 4 880484937 +100 342 3 891375454 +354 382 5 891217897 +326 445 4 879877413 +315 48 4 879799457 +155 324 2 879370963 +259 98 4 874809091 +244 217 5 880606698 +119 105 2 874775849 +175 483 5 877107339 +373 117 4 877098599 +274 277 4 878945818 +312 180 4 891698174 +401 117 3 891032563 +394 568 5 880888167 +95 622 4 880571678 +345 1016 3 884994619 +405 592 1 885548670 +291 715 5 874868327 +144 191 4 888105081 +234 499 4 892334141 +352 181 4 884289693 +330 80 2 876547737 +393 1047 3 887745293 +16 693 4 877721905 +368 567 3 889783617 +311 43 4 884366227 +48 195 5 879434954 +244 723 3 880607154 +44 474 4 878347532 +145 685 4 875271229 +314 288 5 877885887 +268 382 3 875309282 +308 1211 3 887739669 +305 134 5 886322560 +387 578 2 886483252 +344 433 4 884901517 +321 497 5 879439860 +97 429 4 884238860 +290 685 3 880732365 +64 663 3 889737505 +299 285 5 877877847 +39 900 3 891400159 +130 322 4 874953525 +397 108 4 885350045 +346 685 3 874950383 +15 471 4 879456084 +70 89 4 884150202 +64 156 4 889737506 +102 50 4 888801315 +342 584 4 874984430 +269 642 3 891449464 +234 168 3 892079434 +131 302 5 883681723 +344 9 5 884814480 +152 1014 2 880149224 +393 596 4 887743611 +14 275 4 876964725 +112 300 4 884992508 +280 538 5 891700185 +57 476 3 883697990 +49 508 3 888068841 +363 144 4 891494865 +400 328 3 885676490 +405 1582 1 885548670 +339 380 3 891035584 +49 737 1 888066828 +327 281 3 887820341 +303 43 3 879485507 +83 663 5 887665423 +303 139 3 879543209 +70 169 4 884149688 +81 1028 1 876534277 +392 258 2 891037531 +383 474 5 891193072 +201 589 3 884113082 +53 250 2 879442920 +382 183 3 875946672 +313 501 5 891013742 +308 79 4 887737593 +48 433 3 879434791 +6 208 4 883602422 +249 634 5 879572314 +405 171 1 885549544 +253 448 2 891628883 +168 323 3 884286990 +13 436 2 882396869 +308 589 4 887737760 +214 195 4 891544200 +59 118 5 888203234 +270 217 5 876956360 +1 200 3 876893098 +354 962 4 891217274 +92 559 3 875660304 +405 580 1 885547447 +227 7 5 879035251 +234 493 3 892078567 +323 328 3 878739029 +99 926 3 885679437 +207 144 3 875509434 +294 350 4 889241426 +200 1060 3 876042340 +260 538 1 890618403 +174 14 5 886433771 +298 71 5 884183016 +279 654 5 875306552 +405 1409 1 885549045 +292 234 5 881105245 +13 290 4 882141814 +297 267 3 875409139 +392 1143 4 891038158 +381 216 5 892695996 +207 59 4 877846793 +237 199 4 879376606 +274 83 5 878946612 +239 1203 5 889180040 +387 82 4 886483098 +234 289 4 891033851 +405 953 3 885546487 +273 319 4 891292846 +201 176 4 884112281 +299 95 3 889501654 +338 486 3 879438392 +286 289 5 875806672 +174 423 2 886514276 +145 217 3 877343156 +66 15 3 883601456 +345 356 3 884993686 +181 1343 1 878962199 +387 333 3 886479484 +175 9 4 877108146 +296 475 4 884196555 +62 180 4 879373984 +343 8 5 876404836 +13 281 3 882397974 +262 191 4 879793022 +234 1457 3 892079538 +309 303 2 877370319 +210 211 5 887730297 +230 443 4 880485090 +303 531 4 879466457 +320 123 4 884748750 +307 1140 2 879114143 +210 679 3 887808619 +303 705 5 879467105 +151 160 4 879542670 +239 152 3 889179808 +385 337 4 879439469 +229 258 2 891632040 +297 195 1 875240053 +1 180 3 875072573 +373 102 5 877100096 +151 64 5 879524536 +313 199 4 891013938 +208 523 4 883108360 +194 98 4 879521329 +292 207 5 881105561 +231 121 4 879966609 +373 451 5 877107430 +378 288 3 880043804 +328 515 5 885045678 +125 120 1 892839312 +37 363 3 880915711 +285 276 4 890595726 +280 195 3 891700303 +378 527 4 880054954 +271 419 3 885848996 +176 240 4 886048230 +339 607 5 891032189 +365 321 5 891303536 +42 280 4 881106270 +56 38 2 892683533 +178 134 3 882826983 +101 975 2 877136659 +269 809 1 891451451 +102 184 2 888801465 +59 431 4 888205534 +344 248 4 889814539 +299 702 4 889502159 +399 486 3 882510290 +391 264 1 877398704 +230 432 4 880485110 +23 13 4 874784497 +267 824 4 878970953 +286 577 2 877535500 +393 431 2 887746965 +389 490 3 879991081 +49 514 4 888068686 +286 554 4 877535014 +313 565 1 891030027 +126 319 2 887938081 +264 443 5 886122447 +326 944 2 879877326 +59 527 5 888204553 +157 1283 2 886891173 +345 283 4 884991105 +195 304 4 876617344 +26 476 3 891384414 +43 91 3 883956260 +151 287 4 879528754 +222 944 3 878715192 +321 199 4 879439787 +398 12 3 875658898 +381 403 3 892696045 +276 743 1 874792634 +308 1404 4 887739257 +367 100 5 876689878 +13 447 2 882396869 +96 1232 5 884404017 +312 604 5 891698613 +387 168 5 886479610 +41 174 4 890687264 +164 323 4 889401318 +311 425 2 884365140 +174 293 5 890168505 +159 872 1 880485262 +95 445 4 888956272 +145 683 3 879161674 +396 1025 4 884645839 +11 260 1 891902426 +76 1007 4 875312109 +392 492 4 891038979 +290 227 2 880473557 +64 212 3 889740011 +213 193 4 878955442 +311 232 3 884364812 +308 806 4 887737594 +393 812 3 889555021 +282 307 3 881702875 +43 153 5 883955135 +48 132 5 879434886 +256 51 4 882165135 +363 588 2 891495339 +363 156 3 891494962 +345 284 4 884991348 +308 463 4 887738057 +290 739 3 880475757 +184 137 5 889907685 +405 994 1 885549746 +144 410 3 888104521 +11 752 4 891902157 +405 387 1 885546680 +38 82 5 892429903 +393 349 3 887742939 +9 507 4 886959343 +200 768 4 884130592 +368 17 5 889783562 +195 771 2 874825826 +209 50 5 883417589 +337 135 5 875236512 +342 32 5 874984207 +387 448 3 886481686 +383 321 5 891192376 +303 245 3 879466249 +256 974 3 882164059 +345 1011 3 884991127 +130 358 4 874953526 +346 569 3 875266064 +89 739 2 879460376 +75 1151 2 884050829 +316 9 4 880853774 +251 15 4 886272086 +250 129 4 878089677 +286 404 5 889651799 +339 228 4 891033960 +135 325 4 879857575 +293 554 1 888907794 +315 709 4 879821158 +194 12 5 879520916 +49 1076 2 888067187 +361 14 4 879440651 +320 54 4 884751209 +144 300 3 888103370 +204 45 5 892513906 +132 275 3 891278915 +312 157 1 891698516 +233 313 5 891920842 +234 70 3 892335587 +193 1258 3 889123806 +244 135 4 880606442 +231 748 4 888605273 +344 228 4 884901047 +399 924 5 882340678 +109 172 5 880572528 +18 423 5 880132437 +49 462 2 888066486 +249 202 4 879572167 +399 1543 3 882509891 +177 100 5 880130600 +59 640 5 888206445 +327 494 4 887822400 +230 291 4 880484825 +394 174 5 881057914 +59 95 2 888204758 +16 564 1 877726790 +208 435 5 883108430 +387 697 1 886483906 +188 209 2 875073246 +399 372 3 882511047 +303 778 4 879467815 +246 402 3 884922917 +303 364 2 879544153 +384 355 4 891274055 +293 435 4 888906464 +153 321 3 881370900 +379 176 5 886317511 +92 94 3 875812876 +263 153 3 891298727 +368 320 5 889783364 +348 406 4 886523521 +94 234 5 885882685 +83 1028 4 880307207 +41 289 2 890686673 +145 727 2 875272652 +83 106 4 887665549 +270 275 5 876954248 +281 938 2 881200789 +378 276 4 880044198 +393 278 4 887744473 +85 213 4 879454751 +68 282 1 876974315 +62 249 2 879372479 +57 1095 2 883698062 +364 289 3 875931432 +299 423 3 878192238 +406 48 5 879792811 +200 840 4 876042525 +343 88 4 876405130 +303 558 4 879467105 +95 422 2 888956665 +125 194 5 879454986 +361 185 5 879441215 +374 363 3 880394088 +334 153 4 891547306 +296 124 5 884196555 +292 222 3 881105195 +115 543 2 881172303 +290 22 5 880473942 +194 195 3 879521657 +334 515 4 891545898 +392 165 5 891038433 +160 463 4 876859777 +42 1045 2 881108873 +150 628 4 878747018 +325 152 4 891477905 +106 22 4 881449830 +30 294 4 875140648 +257 1462 5 879547695 +249 235 4 879640261 +232 202 4 888549515 +216 1161 4 881432609 +232 272 4 885939511 +405 1432 1 885549942 +234 205 3 892079288 +401 638 4 891033158 +378 66 3 880056632 +334 285 4 891544707 +320 892 3 884748299 +323 508 4 878739643 +296 963 5 884197352 +303 729 3 879483568 +60 216 4 883327827 +379 735 4 880525133 +305 305 3 886307860 +279 1035 3 875309935 +405 190 2 885546201 +374 952 2 883627906 +373 127 2 877099968 +360 242 4 880353616 +115 82 4 881172117 +178 259 1 882823437 +402 111 4 876267041 +342 1128 5 875318536 +222 931 1 881061396 +234 242 4 891033261 +312 151 2 891698832 +297 245 3 874954060 +279 1271 4 875659999 +59 846 4 888203415 +160 161 3 876861185 +8 7 3 879362287 +91 161 3 891439353 +222 12 5 878181387 +380 59 4 885478447 +234 502 4 892336077 +324 283 3 880575531 +354 904 5 891180419 +13 694 4 890704999 +92 820 1 875644796 +371 55 4 877487364 +379 230 4 880525540 +276 317 4 874791257 +70 121 3 884148728 +138 116 2 879022956 +393 778 3 887746301 +145 1054 1 888398563 +128 209 4 879968332 +405 521 4 885544698 +59 506 5 888205787 +94 102 3 891721462 +103 50 5 880416864 +13 624 5 882398691 +6 423 3 883602501 +234 1198 3 892335187 +276 831 3 874792634 +405 1177 1 885547766 +148 507 5 877398587 +207 241 3 877995673 +144 19 4 888103929 +380 732 4 885478646 +406 479 4 879445771 +75 290 4 884050451 +71 276 4 877319375 +392 23 5 891038466 +43 95 4 875975687 +18 485 5 880132437 +135 475 4 879857592 +117 411 3 880126232 +12 381 4 879958902 +250 748 2 878089033 +43 956 1 883956259 +18 64 5 880132501 +280 586 4 891701871 +318 485 5 884495921 +405 1503 1 885548932 +115 475 5 881170252 +84 222 4 883450020 +171 302 4 891034606 +201 1227 1 884140787 +394 88 3 880889400 +176 1012 4 886048145 +122 570 3 879270849 +392 293 4 891038137 +59 708 4 888206410 +99 12 5 885680458 +347 222 4 881652377 +58 1019 4 884305088 +85 502 4 879454633 +18 99 5 880130829 +207 194 4 875504118 +305 81 3 886323335 +16 51 4 877726390 +13 885 1 886302334 +334 684 4 891545768 +313 194 4 891014499 +290 832 3 880732491 +295 570 3 879518590 +121 294 4 891389522 +304 343 3 884967896 +287 248 5 875333965 +224 1053 3 888104281 +117 628 5 881012174 +359 295 3 886453325 +405 524 1 885547124 +389 378 5 880087695 +327 806 4 887747617 +225 492 4 879539767 +160 1223 4 876861799 +233 1194 5 880190371 +299 135 4 878191889 +346 518 4 874948889 +312 205 5 891699372 +348 472 4 886523758 +405 570 1 885546487 +326 508 3 879875432 +200 929 4 876042979 +399 196 5 882349678 +7 393 4 891352058 +393 1092 3 889731139 +13 270 4 881514876 +214 216 4 891544290 +238 121 4 883576443 +178 510 4 882826394 +23 209 5 874785843 +244 290 3 880604616 +201 467 2 884139983 +17 125 1 885272538 +201 302 4 884110637 +200 802 4 884130485 +385 249 2 879440892 +389 836 4 879991045 +391 56 5 877399745 +399 402 3 882344434 +151 87 4 879524420 +248 294 3 884534379 +313 64 4 891016193 +5 79 3 875635895 +269 756 1 891451947 +331 702 3 877196443 +393 265 4 887746301 +109 294 4 880562908 +145 3 3 875271562 +262 122 2 879791537 +279 208 5 875310631 +276 427 5 883822485 +20 931 1 879668829 +399 1232 3 882350831 +144 956 4 888105636 +103 471 4 880416921 +11 395 2 891905349 +366 436 5 888857932 +276 14 4 890979947 +393 136 5 889555050 +298 197 4 884183236 +135 744 4 879857612 +275 28 4 880314529 +236 532 2 890116915 +119 1086 4 874775136 +49 423 2 888067727 +216 368 2 880233298 +250 357 4 878091915 +254 176 3 886472768 +250 23 4 878090499 +346 210 4 874947700 +311 329 4 884363904 +130 363 3 876250781 +389 504 4 880087832 +157 1302 5 874813703 +255 748 1 883215630 +147 345 4 885594040 +115 89 5 881172049 +232 461 5 888549563 +323 713 4 878739299 +92 748 3 892655791 +328 245 4 885044703 +276 145 3 874792692 +347 318 3 881653563 +117 56 5 881011807 +249 748 3 879571586 +7 542 4 892131849 +125 1 4 879454699 +405 721 1 885547360 +37 195 5 880915874 +7 599 1 891353860 +326 679 3 879876941 +234 523 4 892334141 +187 196 4 879465507 +313 473 3 891030228 +308 611 4 887738971 +246 369 3 884924710 +100 990 3 891375428 +263 99 3 891298977 +287 268 4 888177170 +401 199 3 891032896 +354 47 4 891217110 +354 149 5 891216498 +378 54 4 880056976 +336 738 1 877757343 +279 1120 3 891209189 +314 578 4 877887763 +361 655 3 879440346 +192 302 5 881366489 +379 480 5 885063301 +353 271 2 891402567 +225 1443 4 879540778 +379 98 5 880524541 +55 405 1 878176134 +186 939 5 879023529 +171 344 3 891034889 +294 1007 4 877819761 +402 255 4 876266948 +92 463 4 875656623 +235 197 5 889655266 +85 94 3 882995966 +38 252 5 892429567 +174 276 5 886433862 +95 588 3 879198800 +91 484 4 891438977 +374 195 3 880938870 +321 191 3 879440365 +354 213 5 891217160 +94 88 3 891721942 +299 950 2 877878148 +130 33 5 876252087 +375 761 3 886622131 +308 181 4 887739095 +293 414 4 888906576 +345 660 5 884993418 +48 172 5 879434791 +19 692 3 885412840 +23 71 3 874789299 +109 441 2 880582633 +1 250 4 874965706 +92 977 2 886443494 +215 258 3 891434563 +174 949 5 886513729 +148 163 4 877021402 +20 95 3 879669181 +379 135 4 880524886 +344 678 2 884813365 +81 124 3 876534594 +370 209 5 879435461 +244 72 4 880607365 +389 583 2 880088039 +397 194 3 885349348 +234 196 3 892079910 +214 32 4 892668249 +85 157 3 879454400 +95 768 1 888956272 +325 458 3 891478877 +383 641 4 891192778 +42 834 1 881110763 +60 659 4 883326862 +95 161 3 879196298 +188 392 5 875073408 +100 333 3 891374528 +244 209 4 880605485 +307 515 4 875680871 +249 24 4 879640306 +109 409 2 880571920 +46 327 4 883611456 +308 466 5 887738387 +284 286 4 885328727 +237 513 5 879376328 +276 1180 2 877935306 +348 245 4 886522765 +148 1039 2 877015784 +104 546 1 888465491 +392 179 5 891038946 +49 542 2 888067096 +378 301 3 892382841 +141 880 1 886447847 +363 746 4 891495630 +283 407 3 879297867 +286 77 3 877533001 +40 333 4 889041402 +279 250 3 875249259 +104 1226 3 888465347 +65 48 5 879217689 +314 122 1 877887065 +7 514 2 891351121 +6 486 4 883601427 +56 201 4 892910604 +239 701 5 889179544 +58 546 2 892242190 +139 246 4 879538218 +342 483 4 875319745 +7 404 5 891352947 +313 69 5 891016193 +299 181 3 877877479 +293 16 2 888907499 +215 185 4 891436566 +343 654 5 876407006 +399 531 3 882342964 +347 291 5 881652746 +138 519 5 879024043 +249 271 4 879571521 +174 197 5 886434547 +227 19 4 879035431 +286 1 4 876521699 +406 664 2 884630973 +192 257 4 881367592 +374 216 5 880394997 +7 630 5 891352341 +23 191 3 877817113 +83 1 4 880306903 +393 31 4 887745912 +361 12 4 879441214 +13 866 3 882141814 +104 751 4 888442337 +309 1393 2 877370383 +334 322 3 891544584 +10 435 5 877889261 +256 864 4 882151623 +1 85 3 875073180 +334 340 3 891544264 +130 286 5 874953239 +381 634 3 892696872 +235 188 4 889655619 +295 318 5 879517010 +10 706 4 877888677 +279 121 4 875297708 +344 845 3 884899791 +370 12 4 879435369 +193 553 4 889126272 +276 571 2 874792118 +347 841 3 881652769 +117 886 5 880124413 +405 210 5 885547124 +90 17 4 891384721 +267 685 3 878970978 +268 258 2 876513675 +325 107 2 891479102 +266 313 4 892256705 +95 568 4 879196594 +64 215 5 889737914 +373 485 4 877098751 +274 319 5 878944379 +303 998 3 879544435 +298 213 3 884183130 +354 736 5 891218568 +59 140 1 888206445 +289 685 4 876789373 +354 79 2 891217274 +344 274 2 884899768 +308 742 4 887739172 +145 38 3 888398747 +290 523 3 880473735 +188 632 5 875071581 +326 205 4 879875507 +378 942 3 880056798 +360 663 4 880355888 +373 20 2 877098751 +313 665 4 891028323 +220 286 5 881197663 +286 636 3 877533185 +207 2 3 877822770 +227 106 3 879035775 +239 1056 5 889180041 +87 183 4 879875734 +286 57 5 877533419 +25 427 4 885852059 +244 554 3 880608733 +92 173 3 875656535 +292 300 4 877628139 +332 879 4 887916385 +334 182 3 891545793 +295 1028 5 879519556 +342 100 5 874984207 +58 61 5 884305271 +387 288 3 886484385 +346 684 4 874948929 +381 914 1 892697768 +393 374 3 889731702 +405 465 1 885548836 +269 1065 5 891447891 +236 614 5 890116335 +389 98 4 879991264 +355 336 4 879486529 +354 318 3 891217365 +280 692 3 891700983 +392 276 4 891039049 +234 929 1 891228099 +255 455 2 883216845 +315 508 4 879799457 +336 154 5 877757637 +327 921 4 887748028 +43 175 2 875981304 +347 286 3 881652054 +292 194 4 881105442 +210 182 5 887736232 +320 97 5 884750946 +339 770 4 891034895 +13 196 4 882140552 +286 195 4 877534618 +165 332 4 879525672 +244 631 4 880606760 +5 418 3 875721216 +87 1089 3 879876225 +56 216 4 892676885 +87 73 3 879877083 +395 172 5 883763041 +346 673 3 874951782 +221 231 4 875246359 +280 210 2 891700385 +164 333 5 889401383 +373 1230 3 877111313 +354 953 3 891218208 +276 471 4 874786657 +151 684 3 879524849 +387 672 2 886481687 +354 705 4 891217547 +380 22 4 885478334 +383 425 4 891193181 +303 201 5 879467573 +194 198 3 879522021 +152 151 4 880148735 +342 523 4 875319854 +188 216 5 875075300 +102 164 3 888803002 +393 686 4 889729185 +139 508 4 879538255 +91 326 3 891438245 +308 238 5 887736843 +234 21 3 892335042 +268 183 4 875309583 +343 130 3 876403883 +226 28 4 883889322 +184 1195 3 889909934 +406 823 3 879540147 +151 584 3 879525035 +174 1230 1 886515210 +109 318 4 880572680 +57 264 2 883696672 +301 597 3 882075202 +398 199 4 875721548 +234 739 3 892335990 +276 1471 2 877934947 +374 815 4 880393668 +318 237 5 884494712 +163 286 3 891219977 +206 882 1 888180049 +401 135 1 891032919 +363 1019 5 891496414 +279 117 5 875297199 +336 692 3 877757637 +303 578 2 879484846 +92 1207 3 875907179 +62 664 4 879376079 +1 91 5 876892636 +232 747 3 888549957 +198 197 4 884208200 +405 692 5 885547177 +301 96 5 882076239 +216 72 2 881721890 +296 204 5 884199625 +288 64 5 886374365 +90 964 5 891385843 +276 806 4 874787467 +363 370 3 891500269 +195 1417 3 877246560 +85 568 3 879455238 +345 246 4 884994156 +387 461 5 886483753 +22 118 4 878887983 +94 546 3 891723296 +49 111 2 888068686 +363 346 4 891493746 +221 1012 4 875244475 +72 96 5 880037203 +92 53 3 875656392 +258 873 5 885701062 +125 577 2 892839312 +379 522 5 880524753 +148 7 5 877017054 +221 265 3 875246247 +312 593 5 891698987 +49 95 2 888067031 +181 1357 1 878962240 +230 526 3 880485159 +16 318 5 877718107 +234 85 2 892334852 +184 642 4 889909446 +124 550 4 890287645 +81 282 5 876533619 +330 1028 4 876544953 +370 238 4 879435369 +85 443 4 879454582 +248 324 4 884534506 +402 480 5 876267206 +265 410 4 875320633 +177 270 1 880130452 +392 1014 3 891038205 +62 1131 3 879375247 +399 742 4 882340844 +256 188 5 882164559 +274 713 5 878945437 +389 492 5 880086944 +336 67 4 877756966 +405 583 1 885546112 +65 582 3 879216702 +70 197 4 884149469 +87 409 3 879877127 +392 319 5 891037385 +231 405 4 879966609 +363 145 1 891498589 +62 1074 4 879376299 +313 134 5 891013712 +389 100 5 879915701 +383 475 2 891193137 +160 24 5 876769689 +58 228 5 884305271 +174 571 1 886515295 +301 153 3 882075743 +222 1267 3 878183173 +94 674 3 891723748 +158 636 4 880134532 +378 88 4 880046408 +332 934 2 887938886 +95 3 1 879193881 +83 117 5 880307000 +199 285 4 883782879 +381 13 4 892696445 +81 595 4 876534437 +407 433 4 875117053 +56 294 4 892676056 +393 836 4 889728895 +160 693 5 876770193 +334 845 2 891544867 +85 528 4 879454859 +188 1213 2 875074847 +311 15 5 884963136 +118 528 4 875384514 +18 19 3 880130582 +405 186 5 885547176 +360 251 5 880354315 +243 511 5 879989217 +118 218 5 875385386 +409 65 4 881108777 +291 1273 2 875087634 +97 79 5 884238817 +330 692 5 876547032 +201 670 4 884112673 +52 845 5 882922485 +322 12 4 887313946 +203 7 3 880434438 +314 237 5 877886221 +128 965 3 879968279 +379 417 5 880525794 +64 476 1 889740286 +299 182 3 878192039 +82 527 3 878769479 +328 423 4 885046305 +12 402 5 879960826 +312 705 5 891698553 +250 1161 4 883263375 +249 55 5 879572331 +145 763 4 875271047 +402 764 3 876266985 +181 1376 1 878963167 +49 123 1 888068195 +399 33 3 882344942 +321 198 4 879439926 +5 429 3 875637429 +269 120 1 891446926 +28 568 4 881957147 +315 238 5 879821003 +195 651 5 875436683 +85 1074 3 882996039 +119 182 4 874781303 +5 385 4 875636185 +92 551 2 875906882 +79 740 4 891271870 +274 294 3 878944379 +226 24 4 883889479 +91 174 5 891439090 +222 92 3 878182632 +405 78 2 885549045 +345 724 5 884993139 +158 82 5 880134398 +404 687 3 883790465 +181 103 1 878962586 +407 205 4 875045371 +60 197 4 883326620 +372 441 4 876869512 +18 966 2 880132399 +380 652 3 885478241 +86 327 4 879570218 +16 161 5 877726390 +121 631 4 891387992 +234 1020 4 892078890 +214 483 4 891543972 +276 809 2 874977245 +296 117 3 884196741 +398 423 5 875659319 +297 209 4 875239535 +279 224 4 882369761 +352 234 4 884290549 +372 874 4 876869238 +359 273 4 886453325 +263 186 4 891299815 +389 395 2 880089133 +70 139 3 884150656 +308 455 4 887738226 +269 44 3 891449691 +279 952 3 875296676 +130 176 5 881536127 +389 479 4 879991535 +345 471 3 884991127 +389 194 4 879991147 +15 7 1 879455506 +130 28 4 875217172 +354 929 4 891216896 +238 458 4 883576622 +313 521 4 891013887 +308 616 2 887739800 +388 5 4 886441083 +116 895 2 886309812 +232 98 4 888549838 +276 210 4 874792094 +280 237 3 891700624 +92 135 4 875652981 +189 268 4 893265071 +330 200 5 876546668 +92 67 3 875907436 +335 678 3 891567251 +194 281 2 879540567 +328 289 4 885044566 +294 260 4 877819126 +406 962 4 879445810 +175 215 5 877107500 +405 11 4 885545263 +200 183 5 884128554 +200 8 4 884128904 +299 778 4 889502688 +282 294 4 879949525 +85 160 3 879454075 +405 1578 1 885549543 +178 363 3 882824467 +82 220 2 878768840 +332 1244 4 887938798 +269 238 5 891448850 +38 79 3 892430309 +372 547 5 876869481 +401 609 3 891033625 +119 550 4 887038665 +130 174 5 875216249 +399 154 3 882343327 +292 144 5 881105280 +374 127 4 880392936 +102 568 2 888801232 +328 480 3 885046244 +184 410 3 889908181 +246 289 2 884922658 +43 402 4 883956283 +269 1101 4 891448120 +65 211 4 879217852 +115 310 3 881169559 +130 1207 1 880396861 +130 443 5 876251446 +7 396 4 891354288 +194 289 1 879535548 +37 11 4 880915838 +308 1021 4 887736459 +222 204 5 878182370 +87 33 3 879876488 +334 69 1 891548032 +185 86 5 883524428 +217 398 1 889070050 +13 271 1 881514876 +215 432 5 891435574 +345 49 3 884993505 +8 689 4 879361873 +223 742 3 891549570 +40 345 4 889041670 +314 1028 3 877886816 +234 193 4 892334713 +354 699 3 891218474 +327 1012 2 887745891 +6 59 5 883601713 +130 226 5 876252420 +393 527 3 889727614 +345 100 5 884902317 +256 406 3 882152605 +374 279 4 880394233 +385 1071 4 879448426 +184 1396 4 889913490 +380 923 3 885478603 +291 218 4 874834799 +7 205 5 891351585 +301 1 4 882074345 +35 259 4 875459017 +363 196 4 891494658 +271 1133 3 885849536 +84 291 3 883452363 +213 180 5 878956047 +230 276 5 880485573 +276 68 4 874792483 +301 566 3 882076463 +27 370 4 891543245 +268 73 3 875743563 +112 312 5 884992872 +85 658 3 879829861 +212 179 1 879304010 +90 149 3 891384754 +301 173 4 882076403 +291 1376 3 874834323 +315 12 5 879821194 +389 414 4 879991485 +197 190 3 891410082 +183 159 4 892323452 +299 73 2 889503265 +279 940 5 889151559 +194 526 4 879521087 +99 255 3 888469419 +308 1073 3 887736798 +295 1170 5 879966498 +181 1052 2 878963441 +102 101 4 883748488 +184 1398 5 889911749 +11 300 3 891902092 +16 300 5 877717078 +269 55 4 891449214 +393 1032 3 889729296 +2 315 1 888550774 +313 674 2 891029918 +385 290 3 879440674 +405 787 3 885545672 +323 15 3 878739393 +291 188 3 874835198 +395 315 5 886480875 +204 259 2 892389195 +345 289 3 884901497 +223 282 4 891549627 +173 292 5 877557369 +42 432 3 881108147 +326 655 5 879875432 +342 581 3 875320037 +377 100 3 891298589 +184 286 4 889906905 +130 393 5 876252472 +7 79 4 891352261 +378 866 2 880044726 +83 181 4 880306786 +311 234 4 884364873 +130 99 5 875216786 +387 693 5 886484336 +117 195 5 881012255 +276 127 5 874786568 +345 33 4 884993069 +405 414 1 885547268 +398 50 5 875652927 +193 684 4 889125788 +18 659 4 880129489 +311 921 4 884364695 +95 265 3 879196513 +336 1074 5 877757516 +297 272 5 884039431 +341 292 5 890757659 +290 105 2 880732753 +295 946 2 879517994 +379 50 4 880525400 +178 273 3 882823858 +409 1295 1 881105367 +119 83 4 886176922 +345 302 5 884902317 +409 1242 2 881106087 +328 1136 4 885047018 +28 145 3 881961904 +303 1011 2 879484282 +308 664 5 887736999 +10 275 4 877888677 +181 881 1 878961781 +405 172 5 885545111 +222 840 3 878184392 +343 250 5 876403078 +405 430 1 885547177 +192 276 2 881367505 +387 393 2 886483009 +54 871 5 880938547 +409 50 5 881107281 +224 135 1 888103671 +99 3 3 885679237 +291 794 4 875087334 +269 886 3 891446133 +106 88 3 881453097 +328 556 3 885048930 +59 428 5 888205188 +315 792 5 879821120 +346 831 3 875003274 +178 181 5 882823832 +180 1131 5 877441985 +344 471 3 884899719 +268 477 3 875742407 +383 663 5 891192778 +265 257 4 875320462 +308 44 4 887740451 +16 76 5 877719863 +230 183 3 880484370 +10 371 4 877886912 +214 23 5 892668130 +201 531 2 884113949 +90 512 4 891383241 +239 650 5 889180530 +406 239 3 880131608 +87 411 4 879876946 +352 657 4 884290428 +236 1102 4 890117488 +345 732 4 884993418 +339 347 4 891034953 +104 744 1 888465413 +409 223 4 881107539 +377 751 3 891296044 +144 1142 5 888103968 +210 662 2 887730221 +334 663 5 891545852 +57 100 5 883698581 +370 175 3 879434804 +312 435 4 891699702 +310 1022 5 879435764 +210 692 4 887736796 +339 1139 3 891036557 +19 382 3 885412840 +340 402 4 884990922 +387 46 3 886484011 +269 1133 1 891451374 +1 10 3 875693118 +361 1074 3 879441179 +254 75 1 886475004 +318 63 3 884496932 +279 391 5 875313859 +67 122 3 875379566 +405 773 1 885548330 +178 55 4 882826394 +392 285 3 891039050 +151 121 5 879525054 +22 692 4 878886480 +354 732 2 891307157 +350 324 4 882345384 +391 26 5 877399745 +385 663 4 879446431 +185 285 5 883524507 +222 1179 1 881060550 +246 403 4 884922697 +121 57 5 891390014 +213 603 5 878955599 +151 654 4 879524514 +141 295 5 884585039 +373 488 3 877098343 +326 436 3 879877387 +386 50 4 877654961 +68 471 3 876974023 +139 286 4 879537844 +334 1051 4 891545347 +413 222 4 879969709 +72 357 4 880036550 +207 174 4 877750843 +286 881 5 884583549 +293 843 3 888907836 +1 254 1 878541392 +392 534 4 891038205 +49 401 2 888067975 +409 48 2 881108455 +194 739 3 879527263 +201 774 1 884114713 +174 124 5 886514168 +256 7 4 882151017 +64 566 3 889738085 +378 29 3 880332949 +56 1036 2 892910544 +56 202 4 892676933 +234 1458 4 892336165 +407 196 4 876340318 +198 95 3 884207612 +5 372 3 875636230 +184 64 4 889909045 +6 124 5 883599228 +393 715 1 889731592 +406 156 5 879446062 +291 395 3 875086534 +66 475 2 883601156 +268 1095 2 876513927 +267 3 4 878970901 +253 83 4 891628159 +361 88 4 879440974 +378 411 3 880045006 +7 131 5 891352383 +276 693 4 874790903 +347 257 4 881652610 +305 129 3 886323006 +224 1039 5 888082552 +387 488 3 886480163 +276 547 4 874786605 +352 183 5 884289693 +254 97 5 887346963 +334 427 4 891545821 +222 240 2 877563716 +246 260 5 884924991 +62 227 1 879375843 +85 70 4 879828328 +11 710 2 891905221 +380 69 4 885479301 +80 199 2 887401353 +109 672 2 880582045 +280 322 4 891700185 +405 178 3 885544947 +44 434 4 878348885 +162 628 4 877635897 +363 473 4 891498558 +399 655 3 882344372 +399 959 3 882343523 +354 58 3 891218356 +227 1008 4 879036009 +374 124 3 880392873 +298 28 4 884182725 +95 48 4 879197500 +293 255 3 888905146 +94 246 4 891724064 +243 435 4 879988913 +44 118 3 878341197 +222 395 1 878184924 +407 50 4 875045268 +1 129 5 887431908 +389 216 2 879991387 +253 87 5 891628278 +290 204 4 880473696 +399 527 3 882511093 +251 298 5 886272146 +7 673 3 891353744 +244 69 4 880603645 +91 1050 3 891439414 +215 216 4 891435782 +99 871 2 885679411 +318 435 5 884496069 +403 121 5 879786221 +13 405 2 882397742 +268 67 3 875743588 +405 647 1 885546069 +224 720 4 888103906 +397 988 1 875063722 +311 778 4 884365251 +158 273 3 880132356 +373 699 4 877105781 +175 496 5 877108098 +113 286 4 875325377 +187 522 3 879465125 +201 221 3 884111397 +286 1047 1 876522026 +18 275 5 880129421 +234 558 4 892079585 +21 977 2 874951416 +308 578 2 887738847 +181 1379 1 878962168 +250 678 2 878089182 +378 175 4 880055706 +10 234 4 877888877 +127 450 5 884364950 +18 131 4 880131004 +102 675 3 888802940 +181 225 3 878963038 +336 232 3 877757023 +393 1446 5 887746346 +236 705 4 890116402 +16 182 5 877719863 +295 183 1 879517348 +405 789 1 885547268 +14 242 4 876964570 +146 300 3 891457943 +303 591 4 879468082 +407 249 2 884614788 +401 519 4 891033158 +296 815 3 884196806 +200 215 4 884129346 +379 284 4 880568407 +291 89 3 874835116 +236 58 2 890118462 +134 892 2 891732532 +384 689 4 891274232 +130 356 4 880396792 +224 1212 2 888104457 +378 576 3 880333027 +158 593 4 880134261 +243 813 4 879987239 +44 91 2 878348573 +85 708 4 879828349 +115 12 5 881171982 +251 596 3 886272118 +391 180 5 877399066 +164 823 4 889402225 +286 53 2 877533506 +244 367 1 880603442 +26 255 3 891377609 +244 724 4 880605638 +65 736 4 879216949 +286 88 4 877533640 +7 121 5 891352904 +135 79 3 879857843 +389 53 2 880089337 +406 318 5 879792811 +54 411 5 880936296 +293 215 4 888906244 +200 112 3 884127370 +308 127 4 887737243 +376 269 5 879454598 +101 50 4 877135944 +334 525 5 891545876 +367 334 4 876689364 +373 378 5 877100232 +308 64 4 887737383 +380 753 4 885479082 +385 82 1 879446786 +316 1039 5 880854500 +291 755 2 875086958 +399 588 5 882342938 +58 684 4 884305271 +332 409 3 887938601 +268 206 3 875309232 +196 286 5 881250949 +389 153 3 880088510 +357 1095 3 878952190 +369 181 5 889428642 +303 651 5 879468021 +94 405 3 891721615 +210 419 4 887737678 +200 1033 2 891825441 +409 288 1 881104647 +221 70 3 875245870 +405 1118 1 885547268 +256 4 5 882164525 +253 705 5 891628598 +121 192 4 891388250 +75 291 1 884050502 +286 1286 5 877532683 +152 313 4 890322242 +406 496 4 879445378 +388 147 4 886436871 +357 334 4 878951101 +391 134 4 877399171 +303 42 5 879467223 +326 88 2 879877235 +115 470 2 881171694 +241 292 4 887250084 +399 1279 3 882341625 +230 11 4 880484911 +203 151 4 880434384 +218 5 3 881288574 +347 230 4 881654101 +406 605 5 882480749 +71 289 2 877319117 +320 552 4 884751336 +409 200 2 881109175 +13 472 5 882398327 +49 588 4 888067031 +332 22 5 887938934 +374 237 5 880392717 +306 116 5 876504026 +213 1215 1 878871089 +393 294 4 887742145 +181 1330 1 878962052 +303 1178 2 879544130 +141 872 1 886447698 +178 96 4 882826782 +59 1110 4 888206363 +184 116 4 889910481 +271 518 4 885849357 +276 214 5 874787353 +256 120 1 882163754 +372 327 5 876869183 +255 288 4 883216185 +295 380 4 879518455 +66 21 1 883601939 +49 343 2 888065786 +59 419 2 888205228 +363 351 2 891493864 +327 652 4 887819860 +405 426 1 885549192 +151 227 5 879542670 +194 232 2 879553731 +373 842 3 877098343 +343 199 5 876404464 +293 603 5 888905898 +151 792 4 879524268 +320 77 3 884751246 +348 411 4 886523790 +271 530 4 885848770 +385 285 5 879439637 +339 98 4 891032150 +194 226 3 879525761 +152 286 5 875562268 +223 756 3 891550295 +160 604 4 876859778 +5 421 1 875721019 +331 59 5 877196383 +354 124 5 891216632 +406 85 2 880131875 +392 873 3 891037851 +137 15 4 881432965 +294 300 4 877818861 +279 52 3 890780576 +381 1439 3 892696831 +380 433 3 885479186 +56 769 4 892679389 +279 235 3 891209153 +269 423 4 891448048 +92 184 3 877383934 +48 656 4 879434689 +59 1028 1 888203900 +308 175 5 887736999 +13 610 2 882140690 +346 732 3 874948955 +109 552 2 880582414 +82 276 4 876311344 +58 490 4 884304896 +59 729 4 888205265 +233 381 4 877665125 +244 1047 2 880605264 +295 655 5 879517010 +405 1338 1 885549790 +328 76 3 885046580 +409 99 3 881107750 +102 588 4 883748450 +311 528 4 884364724 +91 482 3 891439208 +102 445 2 888803148 +100 752 4 891375146 +367 551 3 876690048 +49 774 2 888067528 +22 386 3 878887347 +67 871 3 875379594 +374 540 3 880939304 +276 41 3 874792277 +90 328 3 891382490 +180 204 3 877127159 +334 160 4 891547190 +153 56 5 881371140 +59 528 4 888205300 +268 453 1 875744611 +87 403 3 879875996 +10 168 4 877888812 +181 1354 1 878962496 +70 189 4 884150202 +385 172 2 879442109 +189 510 5 893266326 +206 314 1 888179948 +116 65 2 876454052 +7 659 5 891351161 +376 289 3 879433599 +265 258 4 875320024 +136 100 5 882693338 +332 546 4 888098432 +393 546 2 887744578 +322 653 4 887314310 +201 50 4 884114471 +382 475 3 875946103 +64 746 5 889739138 +7 448 3 891353828 +385 503 3 879443217 +38 226 1 892431513 +347 685 3 881652684 +374 770 5 880938100 +290 54 3 880475218 +212 197 5 879303795 +405 1554 4 885546445 +324 332 3 880574766 +5 144 3 875636141 +329 147 3 891656072 +416 125 5 893213796 +305 268 3 886307860 +401 499 3 891033319 +175 660 3 877107836 +16 31 5 877717956 +313 649 3 891016325 +276 470 3 874790855 +216 28 4 880244902 +301 229 3 882078228 +194 188 4 879522158 +234 431 3 892078424 +4 288 4 892001445 +329 81 2 891656300 +270 471 5 876954223 +44 191 4 878347234 +312 52 5 891699399 +303 697 3 879484948 +249 216 4 879641305 +250 328 3 883262792 +232 318 5 888549757 +198 176 4 884207136 +280 663 4 891700783 +378 734 3 880334269 +408 689 3 889680045 +406 1126 3 879446588 +374 7 1 880393268 +242 361 5 879741340 +399 418 3 882343605 +193 815 3 889126332 +90 1193 4 891384789 +249 86 4 879572124 +402 16 3 876267096 +405 656 1 885548275 +201 89 3 884112245 +183 265 2 891466350 +166 894 4 886397905 +267 474 5 878974783 +49 172 1 888067691 +399 229 2 882349143 +94 76 4 891720827 +95 371 2 888955909 +59 476 2 888203814 +293 419 3 888906699 +241 350 2 887249889 +332 5 5 888360370 +405 1561 1 885546529 +410 300 3 888626538 +178 216 4 882826868 +358 896 4 891269077 +378 420 4 880056701 +405 440 1 885548330 +280 1478 4 891701090 +303 172 5 879467413 +189 381 3 893277551 +343 778 5 876406391 +22 226 4 878888145 +347 246 4 881652417 +10 497 4 877889261 +334 191 4 891545793 +18 497 4 880131358 +83 110 4 880309185 +407 211 4 875044400 +151 659 5 879524974 +370 511 4 879434804 +301 1028 5 882074801 +345 1 3 884990938 +244 950 1 880606274 +416 724 4 886316409 +393 227 4 889728385 +6 56 4 883601277 +59 447 5 888206095 +373 15 4 877098568 +398 520 5 875717106 +311 200 4 884365718 +279 201 5 890451408 +5 243 1 878844164 +199 405 2 883783005 +332 410 4 887938486 +283 288 2 879297867 +276 288 4 874786392 +328 636 3 885047556 +92 640 5 875653579 +234 322 2 891034007 +251 866 2 886272514 +399 148 4 882341362 +387 1069 2 886480288 +42 732 5 881108346 +94 583 3 891722174 +167 381 5 892738212 +279 1047 4 892864663 +398 493 5 875723337 +387 674 2 886481686 +269 636 3 891450453 +99 288 4 885678247 +27 246 4 891542897 +23 98 5 874786016 +250 813 5 878089581 +56 588 4 892683248 +77 483 4 884752665 +28 479 4 881961157 +13 847 4 882139937 +406 429 4 879446062 +77 357 3 884752970 +330 845 5 876544432 +378 739 4 880333239 +126 288 4 887853469 +350 616 4 882346383 +193 29 3 889126055 +405 722 1 885547735 +253 487 4 891628323 +230 176 4 880485445 +330 153 5 876545970 +243 173 3 879988913 +271 528 3 885848448 +64 633 5 889739243 +97 430 5 884238693 +160 447 4 876859413 +297 748 2 874954060 +314 1057 2 877887035 +254 448 3 886473775 +387 81 3 886483906 +125 174 5 879454309 +406 488 4 879445642 +223 252 1 891550326 +145 680 3 875269871 +158 137 5 880132443 +216 153 4 880244802 +379 294 3 880524363 +391 197 5 877399380 +405 540 1 885548163 +339 286 5 891032349 +56 849 2 892910913 +372 561 5 876869534 +387 651 2 886479689 +399 175 3 882342669 +49 1082 3 888066214 +367 56 5 876689932 +346 291 5 875002643 +119 829 5 874775406 +251 418 4 886271856 +90 501 5 891384885 +347 462 2 881654359 +10 475 4 877888545 +1 241 4 878543133 +343 708 4 876407006 +145 230 5 885557660 +294 125 3 877820272 +337 235 3 875184717 +216 1010 3 880232685 +7 564 3 891354471 +378 10 3 880044454 +99 827 3 885679504 +13 652 5 882141458 +308 486 4 887737432 +303 1048 4 879484871 +222 849 4 881060281 +295 86 5 879966498 +195 921 3 883934716 +130 597 4 874953866 +389 942 3 880165881 +137 51 1 881433605 +345 26 3 884993555 +222 276 5 877563550 +94 616 4 891720498 +334 22 4 891545821 +95 101 1 879198800 +357 864 5 878951653 +95 791 3 880572449 +339 522 5 891033165 +308 921 4 887738268 +56 70 4 892676996 +400 300 4 885676230 +379 523 4 880525108 +385 458 3 879440828 +222 82 4 878182453 +291 1157 3 874834944 +404 333 2 883790286 +303 44 4 879484480 +6 521 4 883601277 +363 307 5 891493795 +188 202 2 875073712 +334 505 4 891546405 +63 408 4 875747242 +291 106 4 874805958 +290 43 3 880475783 +13 294 2 881514683 +181 1151 1 878963304 +363 93 4 891495339 +57 281 4 883697404 +130 800 4 875802237 +416 250 4 876697074 +221 496 3 875246146 +264 683 2 886121811 +345 676 4 884991384 +95 657 5 879198697 +299 150 5 877877535 +409 197 3 881109215 +1 130 3 875072002 +228 427 4 889388547 +34 245 4 888602923 +115 471 2 881170791 +53 258 4 879442654 +413 271 4 879969027 +152 80 5 882477572 +393 742 4 887744517 +330 172 5 876546619 +19 201 3 885412839 +279 804 4 875744416 +399 732 2 882348089 +345 64 5 884902317 +92 475 5 875640148 +363 665 2 891498964 +411 172 5 892845604 +128 210 4 879968125 +401 273 2 891032334 +416 874 1 876696853 +144 393 4 888105743 +255 825 1 883216958 +360 222 2 880355094 +193 750 4 889122950 +7 260 1 892130982 +21 668 1 874951761 +23 518 5 874785194 +284 346 4 885329065 +99 402 4 885680617 +294 1013 2 889242788 +98 938 3 880498624 +41 153 4 890687087 +184 950 4 889907896 +59 547 3 888203482 +327 1075 4 887822832 +92 291 4 886443277 +125 648 4 879454793 +44 588 4 878347742 +286 1118 1 889652989 +184 237 4 889907945 +179 346 3 892151489 +14 845 3 880929564 +375 443 4 886622024 +177 334 3 880130467 +54 1088 3 880937311 +401 322 2 891031784 +263 526 5 891298854 +12 200 1 879959610 +279 184 5 890779991 +327 895 3 887743670 +257 130 2 882050236 +405 997 1 885547644 +29 270 4 882820803 +194 946 3 879527514 +276 156 5 874795704 +405 232 4 885547314 +160 228 2 876862243 +360 496 3 880356092 +94 949 5 885873160 +401 111 4 891032296 +374 385 4 880396048 +201 92 3 884112245 +85 1021 3 882995490 +345 387 4 884992823 +130 128 4 876251728 +85 632 3 879454304 +95 550 4 879196748 +405 1100 1 885546681 +30 538 4 885941798 +327 418 3 887820761 +223 143 4 891550845 +406 651 3 882480595 +311 775 3 884365579 +7 675 5 891352947 +207 1197 4 881681663 +347 182 5 881653736 +49 11 3 888069458 +92 728 3 875907574 +343 38 3 876406257 +293 751 3 888904180 +320 252 2 884749532 +331 503 4 877196504 +344 172 4 884814697 +203 50 5 880434810 +76 121 2 882607017 +256 566 5 882164559 +324 127 4 880575658 +130 184 4 875801695 +238 546 3 883576574 +406 645 5 880131905 +393 386 4 889731390 +389 1203 5 880087544 +5 185 3 875720692 +295 1188 3 879519354 +339 496 5 891032320 +43 191 5 875981247 +406 14 4 879539855 +378 230 3 880055984 +76 603 3 882606147 +119 568 4 874781915 +316 530 2 880853599 +99 107 3 885679138 +13 588 4 882398763 +339 1039 4 891033932 +406 463 5 879793261 +186 546 4 891719775 +271 185 3 885848448 +74 301 3 888333372 +374 87 5 880395320 +56 392 4 892678893 +277 181 3 879543653 +307 239 3 877122138 +194 443 3 879523104 +405 442 1 885548384 +268 385 3 875310206 +291 356 4 874834875 +222 399 4 878182686 +407 231 3 876342031 +344 191 5 889814194 +185 939 3 883524249 +270 569 4 876956419 +253 243 2 891628883 +407 785 3 876341444 +266 283 3 892257897 +303 1239 1 879544020 +378 500 4 880055891 +166 323 5 886397722 +181 980 1 878962496 +387 182 5 886483048 +216 421 5 880235229 +200 148 4 876042340 +221 161 3 875246183 +308 91 4 887737536 +270 509 3 876954965 +58 381 4 890321652 +379 1219 2 883156704 +243 531 4 879988157 +406 58 4 879446718 +363 87 3 891496306 +298 507 4 884182657 +62 125 4 879372347 +144 105 2 888104767 +286 161 2 877533419 +227 93 5 879035431 +174 1312 4 886434484 +158 373 2 880134781 +376 275 5 879455143 +269 512 5 891447216 +145 751 4 883840666 +339 772 4 891032413 +342 724 1 875320297 +279 238 4 891208908 +32 1016 1 883718121 +249 357 4 879572142 +385 1010 3 879440127 +249 42 5 879572630 +276 125 4 874786876 +159 1190 5 881680199 +417 3 4 879646344 +268 699 3 875744712 +417 781 3 880951559 +63 328 2 875746985 +7 273 3 891351547 +194 203 3 879522158 +82 140 3 878769668 +280 723 5 891701853 +294 475 5 877819310 +195 213 4 883934680 +194 222 1 879538960 +16 156 4 877719863 +393 342 5 887742179 +288 237 4 886892195 +283 455 4 879297707 +323 210 4 878739878 +294 895 4 889241309 +73 288 3 888792294 +405 72 3 885547268 +312 528 5 891698695 +371 746 4 880435397 +256 827 3 882163857 +87 732 4 879876703 +5 393 2 875636265 +72 161 5 880037703 +102 554 2 888801577 +398 172 5 875725927 +290 162 3 880474107 +6 470 3 883602690 +94 70 4 891722511 +137 250 5 881433015 +343 642 4 876404343 +112 754 4 884992508 +204 302 5 892389137 +92 576 2 875813171 +377 154 5 891298627 +334 443 3 891547128 +360 166 5 880355527 +92 148 2 877383934 +374 116 1 880393307 +197 289 4 891409422 +7 212 1 891353051 +299 511 4 878192311 +412 318 5 879716918 +301 673 4 882076751 +125 98 5 879454345 +130 195 5 875801470 +404 269 4 883790750 +406 469 4 879446588 +406 419 1 882480443 +349 455 2 879465712 +7 126 3 891353254 +235 7 4 889655723 +314 959 3 877888892 +381 1533 4 892696106 +151 1044 2 879524900 +43 751 2 883954803 +300 872 5 875650068 +263 432 2 891299448 +110 327 3 886987442 +405 135 5 885545333 +75 190 5 884051948 +344 245 3 884813365 +405 700 1 885547645 +296 845 5 884196689 +314 24 1 877886221 +303 208 5 879467706 +293 627 2 888906338 +102 99 2 883748488 +92 43 3 875813314 +410 312 2 888626881 +321 193 3 879441178 +27 978 2 891543222 +280 4 3 891700733 +110 367 3 886989340 +14 204 5 879119651 +342 274 2 874984895 +391 357 5 877399486 +416 348 3 886314660 +375 1073 2 886621950 +405 1434 1 885549942 +178 28 5 882826806 +409 497 3 881168631 +66 742 5 883601388 +286 25 3 875807003 +239 855 5 889179478 +75 151 5 884050502 +398 144 5 875658715 +10 269 4 877886162 +83 685 4 880306951 +80 234 3 887401533 +394 218 4 880889187 +27 475 2 891542942 +347 132 5 881654064 +332 831 3 887938760 +276 640 4 889174904 +80 215 5 887401353 +145 216 5 875272694 +397 1018 4 882839517 +393 169 3 887745912 +338 294 1 879437576 +81 151 2 876533946 +49 175 5 888068715 +325 432 5 891479263 +13 276 5 882140104 +95 627 4 880572288 +224 323 3 888082216 +59 186 5 888205660 +321 56 4 879438651 +7 619 3 891352831 +318 186 5 884498292 +109 237 4 880571770 +254 892 3 886470904 +106 1115 4 883876833 +307 408 5 875645579 +378 596 5 889665232 +343 156 4 876405857 +263 64 5 891298453 +76 23 5 875027355 +280 282 3 891700426 +214 268 2 891542445 +303 1118 3 879484004 +138 614 4 879024184 +49 185 5 888067307 +214 13 3 891543271 +305 258 4 886308064 +44 164 4 878348035 +289 405 2 876790576 +217 231 5 889069974 +199 286 5 883782485 +271 951 2 885849606 +18 1 5 880130802 +417 597 3 879646413 +397 178 5 885349759 +128 86 5 879966919 +200 559 4 884129920 +261 342 3 890454974 +154 462 3 879138831 +406 436 4 879792863 +24 56 4 875323240 +62 742 2 879372965 +264 433 5 886123530 +275 208 3 880314772 +405 96 3 885544881 +328 614 4 885046276 +3 327 4 889237455 +401 204 5 891033684 +72 172 1 880037119 +85 1149 3 886283002 +311 211 3 884364538 +311 86 5 884365252 +230 96 2 880484683 +201 56 5 884111269 +13 520 4 886302261 +280 40 5 891701614 +77 100 3 884732716 +130 567 2 876252225 +171 313 4 891034835 +222 1054 1 883816441 +409 659 5 881107410 +315 168 4 879821037 +189 474 5 893265238 +14 15 4 879119390 +385 629 2 879446643 +276 171 4 874795928 +322 1 2 887314119 +268 761 1 875744136 +189 79 3 893265478 +417 1095 3 879649322 +23 143 3 874786066 +405 1565 1 885549463 +216 1101 4 880235473 +339 642 5 891032953 +49 55 4 888068057 +91 504 3 891439471 +416 356 5 893213019 +99 66 3 886519047 +60 638 5 883326057 +405 734 2 885547506 +36 268 2 882157418 +216 282 5 880232597 +18 97 4 880131525 +21 671 5 874951657 +305 272 3 886307917 +233 257 4 883356847 +181 950 1 878963440 +307 449 4 879538922 +210 187 5 887736017 +200 1228 4 884130721 +1 255 2 885345822 +144 180 4 888105873 +280 54 2 891701747 +325 475 4 891478079 +256 742 5 882150552 +378 252 4 880045288 +125 1052 2 892839457 +269 152 4 891450623 +405 1469 1 885548932 +397 221 4 885349348 +14 42 4 879119579 +102 163 2 892993190 +130 534 5 874953728 +303 141 3 879483900 +292 320 5 881105373 +271 317 3 885848863 +412 218 3 879717147 +102 578 2 888801876 +213 132 5 878956263 +416 578 4 886318546 +325 175 5 891478079 +406 186 3 880131741 +249 919 5 879572668 +62 660 4 879375537 +409 1176 4 881104838 +60 499 3 883326682 +201 9 3 884113343 +301 241 3 882077222 +208 56 2 883108360 +200 717 4 876042493 +406 608 4 884630583 +382 98 3 875946563 +399 383 2 882350431 +269 1028 2 891446838 +405 964 1 885546154 +198 79 3 884208518 +307 655 4 877117166 +130 69 5 875216718 +311 89 5 884364845 +118 22 5 875385136 +48 28 2 879434653 +194 636 2 879553731 +59 1108 3 888204877 +374 1150 1 880937253 +14 176 1 890881484 +313 628 4 891016280 +180 732 3 877128137 +399 71 3 882351580 +186 100 4 879023115 +49 1068 3 888066187 +291 143 3 875086921 +342 255 4 874984574 +23 133 4 874786220 +373 269 5 877098075 +405 1250 1 885547997 +268 569 3 875744582 +405 214 4 885545235 +339 135 5 891033256 +293 866 3 888905322 +359 117 4 886453305 +234 135 4 892079769 +374 758 1 882158481 +243 655 4 879988104 +385 489 5 884631784 +346 1090 2 875265071 +405 450 1 885548093 +16 233 5 877727054 +354 414 4 891218492 +399 744 3 882510147 +326 403 3 879876976 +305 778 4 886325023 +387 169 5 886484336 +345 879 2 884901497 +303 226 4 879467295 +351 359 4 879481589 +60 13 4 883327539 +308 425 4 887737997 +271 1139 3 885849707 +242 291 3 879740593 +310 275 5 879436137 +248 179 3 884534649 +94 443 4 891721439 +234 451 3 892334578 +378 731 3 880056582 +299 724 3 889502687 +6 204 3 883601277 +305 1456 4 886324962 +361 340 3 879441805 +344 286 3 884813183 +248 484 2 884535013 +40 347 2 889041283 +143 347 5 888407741 +168 282 5 884287394 +296 121 5 884196689 +296 482 5 884197330 +316 234 1 880854473 +82 185 3 878769334 +405 127 5 885545167 +268 181 4 875309486 +344 79 4 884900993 +387 380 2 886484098 +389 1298 5 887868071 +293 467 4 888906263 +267 367 4 878971939 +308 264 2 887736408 +44 385 3 878348725 +303 26 4 879468307 +234 844 2 892078521 +112 303 4 884992535 +336 1012 5 877760082 +86 879 2 879570149 +399 986 3 882341586 +416 69 4 876699027 +83 684 4 880307898 +332 866 2 887938631 +286 268 4 884069298 +167 1307 2 892738277 +130 270 5 877984734 +94 566 2 891721815 +234 481 5 892079076 +44 214 5 878348036 +104 235 2 888465675 +387 1118 3 886482695 +363 767 2 891500179 +90 1206 2 891383912 +363 66 4 891496849 +409 199 4 881107117 +365 25 4 891303950 +343 980 5 876403239 +21 326 5 874950889 +280 722 3 891702122 +45 952 4 881014247 +201 331 4 884110967 +5 413 3 875635807 +276 732 4 874790903 +272 357 5 879454726 +334 888 2 891550464 +83 255 5 887665422 +234 202 3 892079585 +125 411 3 892839091 +406 588 4 879793081 +145 770 1 875272245 +399 62 3 882348876 +338 462 4 879438715 +64 1 4 879366214 +363 265 3 891495339 +99 762 2 885679411 +298 274 3 884183640 +102 94 2 892993545 +290 196 4 880474293 +354 57 5 891217575 +373 402 4 877105730 +15 937 4 879455128 +393 355 3 889554171 +115 187 5 881171203 +94 217 4 891722646 +299 151 4 877878227 +308 509 4 887738717 +11 194 4 891904920 +59 172 5 888204552 +278 269 5 891294959 +60 200 4 883326710 +378 133 5 889665232 +81 318 5 876534817 +26 979 3 891383899 +398 659 3 875738391 +286 329 4 886475961 +13 659 3 882141335 +261 410 5 890456142 +374 1407 2 880939304 +280 1168 5 891702544 +21 696 2 874951382 +130 298 5 874953769 +85 127 5 879829301 +239 603 5 889178616 +390 100 5 879694123 +345 132 5 884901371 +326 665 1 879876975 +297 423 3 875240237 +70 482 4 884068704 +343 196 4 876406257 +196 94 3 881252172 +313 56 2 891014313 +296 284 4 884196805 +220 682 4 881198014 +7 563 2 892131978 +361 1119 3 879440740 +385 447 3 879443150 +272 483 5 879454875 +144 65 4 888106182 +338 194 3 879438597 +417 551 3 879649224 +269 655 4 891448019 +301 105 3 882075202 +308 477 4 887739257 +312 543 5 891698424 +401 173 3 891032937 +183 203 3 891466266 +385 199 3 879442559 +291 401 4 875086766 +334 558 4 891546231 +363 561 2 891498884 +184 58 4 889908984 +104 288 2 888442140 +303 1258 2 879544756 +84 1040 3 883452630 +201 27 3 884140891 +327 64 2 887745699 +391 15 4 877399805 +189 31 3 893266027 +163 318 4 891220161 +406 501 5 879793081 +374 932 1 883628159 +363 1016 4 891499568 +401 527 4 891032919 +361 684 4 879441215 +373 404 4 877111422 +409 6 4 881109306 +295 504 4 879517299 +85 268 4 881705073 +276 268 4 877584085 +142 55 2 888640489 +206 990 1 888179913 +279 411 3 875296005 +291 1206 3 874871551 +193 301 4 889123257 +255 218 3 883216544 +268 211 4 875309583 +328 205 4 885045768 +3 307 3 889237224 +394 227 4 881132877 +228 655 4 889388489 +5 89 5 875636033 +102 393 3 892993302 +406 640 3 879793328 +280 468 4 891702028 +145 304 2 885557505 +323 172 5 878739988 +234 198 3 892078837 +279 1219 3 875744358 +70 185 4 884149753 +122 736 4 879270606 +276 742 4 874786756 +336 1059 3 877756890 +244 365 2 880608599 +413 306 4 879968793 +13 173 2 882139863 +57 225 3 883698039 +336 824 3 877756890 +256 722 3 882165269 +385 56 5 879441728 +163 216 3 891220196 +160 328 3 878078096 +385 48 5 879441777 +276 930 2 874787172 +151 164 5 879542984 +117 117 5 880126461 +412 28 4 879716962 +264 42 5 886123358 +373 105 3 877107173 +29 269 4 882820897 +385 216 2 879446868 +420 331 3 891357271 +110 658 3 886988065 +178 491 4 882827247 +392 538 2 891037851 +226 98 5 883889147 +145 69 5 882181632 +254 234 4 886472713 +130 217 3 875801940 +275 636 3 880314383 +383 603 5 891193242 +92 220 1 875644796 +8 183 5 879362233 +320 100 4 884748579 +298 202 3 884182867 +10 493 4 877886661 +110 759 3 886988850 +130 975 5 876251357 +300 257 4 875650267 +193 845 4 889124803 +405 719 1 885547447 +95 498 3 879197445 +416 272 5 893214332 +182 283 2 885613153 +374 1046 5 880938044 +222 160 1 878182154 +110 212 1 886988100 +378 655 4 880045553 +401 26 3 891033395 +71 151 1 877319446 +288 230 2 886629664 +350 176 4 882347653 +312 503 5 891699010 +339 469 5 891032633 +235 747 2 889655550 +323 248 3 878739519 +299 919 3 889501551 +381 97 4 892696960 +422 109 2 875130204 +109 849 2 880582384 +405 90 4 885547447 +289 471 4 876789373 +346 879 5 886273570 +314 377 3 877890982 +7 548 5 891352692 +145 79 5 875271838 +399 127 2 882346585 +58 257 5 884304430 +409 516 4 881109347 +405 1230 1 885547644 +99 628 4 885678813 +217 665 4 889070087 +411 651 4 891035278 +209 1137 4 883417491 +406 317 4 882480772 +346 158 2 875264945 +198 82 3 884209451 +313 98 4 891014444 +119 117 5 874775535 +162 254 3 877636476 +373 211 4 877099178 +181 150 1 878962465 +339 661 5 891033830 +292 535 3 881105031 +197 233 4 891409935 +303 430 4 879467260 +312 382 4 891699568 +371 663 5 880435238 +380 180 2 885478374 +95 432 3 879197886 +319 267 4 875707690 +363 546 3 891497440 +302 258 3 879436739 +283 50 5 879297134 +201 289 2 884111064 +312 474 5 891698454 +130 147 4 876250746 +117 214 5 881012193 +109 158 1 880579916 +268 568 3 875542174 +268 732 3 876514107 +141 1059 1 884584886 +276 169 5 874977555 +387 1008 4 886481183 +330 88 5 876546948 +67 833 4 875379794 +200 228 5 884128372 +279 489 2 888430298 +334 326 1 891544286 +301 864 4 882075110 +246 1222 3 884923372 +42 196 5 881107718 +279 25 5 875295736 +234 874 1 891227463 +305 655 4 886323937 +382 1534 4 875946830 +378 283 4 880044532 +230 181 4 880485066 +95 357 4 879198317 +399 22 3 882342834 +416 1188 3 886318953 +248 96 4 884534968 +97 174 4 884238817 +393 690 4 887742110 +320 33 4 884749385 +6 187 4 883600914 +1 103 1 878542845 +391 97 4 877399301 +246 151 5 884921727 +321 216 4 879441308 +393 1139 3 889729561 +269 614 3 891450471 +303 449 4 879485685 +264 345 4 886121516 +328 879 3 885044566 +59 866 3 888203865 +195 636 2 884504132 +280 942 5 891701431 +314 780 4 877890675 +85 154 4 879828777 +101 122 1 877136928 +122 464 5 879270541 +194 83 3 879521254 +405 206 1 885549589 +308 505 3 887737647 +315 340 4 881017170 +373 474 3 877098919 +126 682 1 887855034 +250 293 4 878089921 +314 772 1 877888212 +13 735 3 882140690 +201 597 2 884310149 +90 191 5 891384424 +393 789 1 887746015 +290 520 3 880473734 +385 168 3 879442109 +201 825 1 884112427 +323 215 5 878739988 +49 931 2 888068336 +293 1046 1 888907061 +195 823 4 881485704 +293 421 3 888906576 +413 124 5 879969734 +291 1210 4 875087656 +83 722 4 880308959 +417 147 4 879646225 +234 872 2 891033627 +125 87 5 892836464 +307 403 3 877122035 +188 127 4 875072799 +405 1531 1 885549094 +348 834 4 886523913 +344 1172 4 884901311 +373 704 2 877107100 +151 699 4 879525035 +16 28 5 877727122 +412 202 3 879717016 +248 290 3 884535582 +398 15 5 875651828 +410 882 3 888626612 +389 493 5 879991147 +290 1091 2 880475735 +312 656 5 891699156 +320 4 3 884749306 +274 117 4 878945264 +188 930 4 875074720 +83 692 4 880307979 +416 210 5 893213918 +327 258 1 887737355 +75 273 5 884050018 +347 871 4 881653300 +239 305 4 889178513 +129 258 2 883245452 +94 12 4 886008625 +342 220 1 874984455 +214 288 3 891542464 +321 484 5 879440244 +87 68 3 879876074 +200 1411 3 884130289 +416 43 1 886318186 +416 1035 3 892441480 +337 229 3 875185319 +5 400 1 878844630 +174 40 4 886514985 +189 513 4 893265865 +330 747 3 876546498 +366 218 3 888857866 +69 129 3 882072778 +268 715 1 875310603 +67 123 4 875379322 +178 15 5 882823858 +393 419 4 887746523 +193 689 2 890834966 +378 432 4 880331938 +405 695 1 885546287 +109 1028 4 880571831 +381 512 4 892696045 +388 184 4 886441083 +308 1421 4 887739212 +151 451 5 879542707 +409 59 5 881108455 +372 77 5 876869794 +276 408 5 874786467 +417 83 5 879648132 +328 79 4 885047194 +327 753 4 887745744 +189 639 4 893265893 +296 24 2 884196605 +117 313 5 886018980 +59 71 3 888205574 +285 455 4 890595726 +92 124 4 886440530 +296 179 4 884197419 +92 223 5 875653723 +11 573 3 891906327 +394 773 4 881060053 +298 185 3 884182774 +72 484 4 880037853 +44 378 3 878348290 +92 518 5 875653579 +94 969 4 891721026 +321 614 3 879440393 +144 197 4 888106106 +338 134 5 879438536 +79 13 3 891271676 +345 301 4 884900543 +374 147 3 880392747 +271 64 5 885848863 +11 277 5 891903226 +298 503 4 884183237 +279 541 3 882146458 +417 423 4 879647118 +44 96 4 878347633 +313 164 3 891014870 +224 294 4 888081976 +6 518 3 883603042 +334 421 4 891547307 +347 7 4 881652590 +150 147 4 878746442 +316 521 5 880854395 +321 89 3 879440716 +168 100 4 884287362 +290 436 2 880475469 +346 174 5 874948547 +1 118 3 875071927 +308 107 4 887741150 +92 678 2 875641428 +279 1110 3 875307379 +417 120 2 880949763 +412 175 4 879717286 +264 12 5 886122508 +113 246 5 875076872 +91 616 4 891439439 +321 647 3 879438699 +89 257 5 879461219 +249 222 4 879640306 +398 357 4 875657926 +263 162 5 891299630 +200 210 5 884128933 +417 578 3 879649610 +99 328 4 885678696 +181 1369 1 878962199 +385 408 5 879443065 +90 517 3 891384789 +197 161 4 891410039 +234 549 3 892335850 +318 414 4 884496008 +213 234 4 878955373 +177 22 4 880130847 +264 606 5 886122099 +393 500 4 887746523 +49 518 4 888069437 +102 144 3 888801360 +83 423 4 880308329 +363 217 2 891498286 +255 976 1 883217030 +89 283 4 879441557 +397 334 3 885349348 +416 1098 3 886316271 +222 71 4 878183173 +202 484 4 879727153 +13 483 5 882139774 +401 210 4 891032976 +288 178 5 886374342 +158 127 5 880132356 +85 523 4 879453965 +385 253 3 879439923 +151 482 4 879524345 +60 138 2 883327287 +405 92 1 885546287 +204 245 3 892391980 +21 245 1 874951006 +307 423 5 879283587 +222 15 3 877563437 +64 662 4 889739319 +327 197 4 887744023 +213 692 4 878955848 +91 234 5 891439503 +187 191 5 879465566 +257 949 3 880496958 +405 1176 3 885549942 +393 576 3 889729938 +405 639 1 885549635 +417 1044 3 879648939 +290 625 4 880475782 +270 872 5 876953827 +49 204 1 888068686 +308 133 3 887738225 +346 83 4 874949923 +145 470 5 875272299 +115 969 1 881172183 +214 461 4 892668249 +184 584 3 889909889 +312 588 5 891699490 +393 568 4 889554563 +328 211 4 885046276 +382 508 3 875946029 +223 111 4 891549792 +343 164 3 876404757 +146 346 4 891457591 +62 286 3 879372813 +29 343 3 882821673 +223 409 3 891549876 +342 558 5 874984341 +394 161 4 880888850 +181 1040 1 878962997 +349 823 4 879466156 +189 596 3 893264407 +145 574 2 888398833 +393 365 3 889729460 +311 125 4 884963179 +66 288 4 883601607 +268 928 1 875745536 +244 955 4 880606593 +189 135 4 893265535 +297 596 3 874955107 +330 427 5 876546920 +94 241 4 891721716 +314 395 2 877889770 +129 268 1 883245452 +314 68 4 877891637 +395 632 5 883764845 +271 95 4 885848916 +314 71 5 877888527 +251 427 4 886271675 +405 366 3 885545552 +7 626 5 892132773 +102 866 2 892993545 +145 100 5 875270458 +374 29 3 880939127 +282 305 4 879949347 +89 277 4 879441271 +393 363 3 887745086 +82 70 4 878769888 +405 470 1 885546247 +194 144 4 879547671 +257 301 3 879029620 +294 751 4 889241309 +214 132 5 892668153 +197 79 5 891409839 +82 1033 1 884714560 +276 94 2 882659602 +425 271 5 890346597 +183 227 4 891463592 +269 1168 2 891448386 +58 69 1 884663351 +56 993 3 892683353 +239 134 5 889179033 +308 168 4 887737593 +393 362 3 887741960 +254 140 4 887347350 +294 926 3 877819713 +276 74 3 884286759 +194 227 1 879535548 +276 566 4 874792601 +419 1451 4 879435722 +377 323 2 891297001 +284 324 3 885329468 +396 678 3 884645838 +305 83 3 886323464 +200 674 4 884130348 +125 781 3 892838463 +57 271 3 883696672 +23 222 4 876785704 +22 238 5 878886423 +279 236 5 875296813 +184 568 2 889909474 +44 433 4 878348752 +372 574 4 876869957 +379 655 5 888044628 +210 523 4 887730472 +293 632 3 888906464 +64 69 4 889739091 +409 201 1 881109019 +49 385 1 888069536 +283 125 5 879297347 +415 1524 5 879439791 +327 81 4 887818904 +65 435 4 879218025 +90 182 3 891383599 +397 325 3 882838853 +222 452 1 878184514 +361 466 4 879441285 +164 748 5 889401410 +151 433 3 879542510 +107 302 4 891264296 +325 835 5 891478099 +13 423 5 882398814 +158 222 3 880132771 +187 582 1 879465683 +42 172 5 881107220 +373 649 4 877098979 +344 660 3 884901235 +234 1455 2 892318158 +116 1257 1 876452651 +210 276 5 887731147 +328 356 3 885047763 +239 210 4 889179032 +372 325 4 876869330 +393 705 4 887746456 +183 273 4 892323452 +171 268 4 891034684 +297 24 4 874954260 +223 597 4 891549604 +49 878 2 888065825 +312 513 5 891698300 +184 805 3 889912232 +83 105 2 891182288 +199 948 1 883782655 +295 174 4 879517062 +314 819 4 877886971 +393 1314 3 889731561 +387 845 4 886484336 +101 237 5 877137015 +125 996 3 892838424 +422 671 4 879744143 +248 168 4 884534945 +311 523 5 884364694 +217 118 4 889070087 +405 1555 1 885549045 +406 213 2 879793179 +425 424 2 878738956 +137 117 5 881433015 +334 709 4 891548368 +379 211 5 880740437 +336 722 3 877757134 +311 208 4 884365104 +279 534 1 878971577 +145 298 1 885557579 +364 288 4 875931432 +227 475 4 879035252 +313 234 4 891013803 +185 223 4 883524249 +372 322 3 876869330 +326 265 4 879876489 +387 984 1 886484460 +387 436 4 886481737 +269 627 1 891451063 +399 128 3 882343293 +45 1 5 881013176 +125 864 3 892838591 +178 540 3 886678484 +18 224 5 880130739 +334 658 3 891547148 +181 277 1 878963441 +416 761 4 886318708 +316 180 4 880853654 +276 91 5 882659577 +168 222 5 884287759 +401 866 3 891032697 +425 748 3 890346567 +264 451 4 886123531 +406 523 3 879446062 +250 628 4 878090114 +110 195 2 886988480 +312 730 3 891699568 +400 259 3 885676490 +222 1059 1 883816150 +186 338 3 889818331 +92 288 3 878679005 +409 520 2 881107943 +344 213 4 884901351 +141 678 4 884584480 +216 234 4 880244870 +320 413 3 884749046 +201 319 2 884110967 +380 118 2 885480301 +27 515 4 891543009 +292 659 5 881105340 +306 269 5 876503792 +62 423 3 879373692 +49 108 2 888068957 +417 710 4 879647826 +112 316 5 892439693 +91 289 4 891438553 +342 952 3 874984619 +349 475 4 879466479 +423 744 4 891395655 +411 182 3 891035278 +194 25 2 879540807 +174 162 5 886514108 +181 948 1 878961474 +35 877 2 875459099 +312 1116 3 891698334 +399 436 2 882348478 +234 1454 3 892336257 +422 559 3 879744085 +87 491 5 879877930 +21 930 1 874951482 +322 313 5 887314417 +239 508 5 889178798 +269 414 3 891449624 +390 740 4 879694123 +425 191 3 878738186 +82 1028 2 876311577 +160 475 5 876767822 +270 684 4 876955938 +413 297 5 879969484 +422 922 4 875130173 +214 134 4 891544070 +401 284 3 891032453 +279 853 1 890451433 +313 1210 4 891032028 +125 275 5 879454532 +291 49 4 875086090 +365 1048 3 891304152 +409 214 4 881109216 +244 151 5 880604326 +276 379 3 874792745 +273 321 4 891293048 +411 209 4 891035550 +405 699 2 885546247 +47 292 4 879438984 +205 243 2 888284758 +268 825 3 875742893 +405 575 5 885547557 +87 186 5 879876734 +222 385 4 878183924 +393 781 4 889729159 +45 21 3 881014193 +18 126 5 880130680 +21 100 5 874951292 +92 164 4 875656201 +363 350 1 891493864 +393 783 3 889729561 +335 347 5 891567004 +43 684 4 883955702 +233 191 4 877665191 +94 61 5 891720761 +84 879 4 883449530 +387 432 4 886480353 +307 24 4 876176161 +13 482 5 882140355 +275 746 4 880314478 +405 422 1 885548836 +342 517 5 875320297 +184 72 3 889909988 +119 1197 4 886176922 +141 252 4 884585195 +198 509 4 884208710 +90 150 3 891385250 +8 687 1 879361825 +194 7 3 879538898 +268 189 4 875744966 +381 501 4 892697133 +378 1061 2 880044454 +222 252 2 877563934 +112 984 3 884992651 +303 763 4 879485319 +327 603 4 887745661 +332 1028 4 887938403 +399 946 3 882343172 +405 1353 1 885549745 +406 12 4 879445897 +26 410 2 891373086 +201 25 3 884114015 +247 1 4 893097024 +376 762 4 879459207 +338 483 4 879438092 +385 174 2 879924297 +317 271 3 891446575 +393 1441 3 889728554 +350 211 2 882347466 +422 184 4 879744085 +1 54 3 878543308 +407 217 4 875044400 +327 234 5 887745840 +400 895 4 885676452 +130 588 4 875216867 +278 173 5 891295360 +391 203 4 877399423 +250 240 4 878092171 +299 553 3 889502865 +91 313 4 891437978 +27 100 5 891543129 +393 366 4 889729345 +417 42 4 879647498 +234 732 2 892334713 +416 277 5 893212572 +406 701 5 879446269 +239 690 1 889178513 +90 131 5 891384066 +49 294 1 888065702 +318 15 5 884470944 +328 294 3 885044733 +253 64 5 891628252 +1 267 4 875692955 +232 515 2 880062413 +402 7 4 876267068 +311 1232 4 884366439 +7 482 3 891351083 +102 748 3 888800994 +286 574 4 877534137 +1 24 3 875071713 +100 323 3 891375359 +348 15 4 886523330 +234 693 2 892333980 +342 297 3 875318267 +295 88 4 879517964 +172 178 3 875538027 +201 642 4 884111485 +328 282 3 885047865 +415 154 4 879439865 +198 196 3 884208098 +99 413 3 885679299 +315 186 4 879821065 +64 72 4 889740056 +344 284 3 884899768 +222 895 4 883815361 +11 109 3 891903836 +173 880 4 877557168 +406 414 2 880131704 +56 122 2 892911494 +184 252 2 889907528 +405 1227 3 885546635 +398 417 3 875719399 +144 176 4 888105338 +287 28 5 875335018 +222 810 2 878184446 +109 949 3 880582384 +407 428 3 875553154 +239 100 3 889179131 +132 124 4 891278996 +94 1223 4 891721494 +83 468 4 880308390 +293 56 4 888905550 +363 1010 4 891496979 +230 182 2 880484370 +56 432 5 892737154 +249 186 4 879572516 +21 319 2 874950889 +334 742 2 891544972 +42 194 5 881107329 +42 496 5 881107718 +187 433 4 879465242 +24 216 4 875323745 +7 645 4 891353614 +125 732 4 879455019 +194 623 1 879551637 +417 159 4 879648656 +63 268 3 875746809 +301 99 4 882078419 +90 1048 4 891385132 +354 152 3 891306974 +277 25 4 879543902 +18 451 3 880131297 +276 386 3 877935306 +223 294 4 891548859 +264 1103 5 886123656 +172 1172 3 875538864 +308 729 3 887740254 +135 653 4 879857765 +10 495 4 877892160 +92 655 4 875654533 +417 12 4 879647275 +299 198 4 889501288 +373 318 5 877098222 +326 670 3 879877387 +234 234 4 892079475 +276 1129 4 874786876 +24 100 5 875323637 +306 150 5 876504286 +387 317 4 886483906 +102 827 2 888802722 +94 1226 4 891724081 +297 204 3 875239422 +193 127 5 890860351 +62 448 2 879375883 +125 493 4 879454448 +174 575 1 886515239 +313 161 4 891015319 +336 1054 1 877754876 +276 665 3 874792520 +378 419 4 880332643 +339 402 3 891034867 +268 1477 2 875742680 +92 276 5 875640251 +42 215 5 881107413 +379 496 5 892879481 +398 284 2 875654781 +372 581 5 876869794 +16 284 1 877719863 +407 616 3 875553018 +151 318 5 879524088 +325 188 2 891478944 +181 1367 2 878962086 +246 83 4 884921086 +294 246 4 889241864 +39 345 3 891400159 +25 239 4 885853415 +303 367 4 879468082 +273 303 4 891293048 +382 1229 5 875947240 +248 854 5 884534735 +425 227 4 878738597 +85 1169 4 879454952 +23 219 1 874788187 +347 324 1 881652230 +312 190 5 891698865 +343 435 4 876404343 +22 554 1 878888066 +268 433 4 876514107 +82 671 1 878769478 +62 181 4 879372418 +150 273 4 878746764 +385 480 5 879441313 +354 607 3 891218208 +7 190 5 891351728 +201 385 2 884112427 +383 86 5 891193210 +345 481 3 884916260 +429 73 3 882387505 +303 38 1 879484981 +297 1007 4 874954763 +90 312 4 891383319 +363 5 1 891497047 +178 326 4 888513095 +226 150 4 883889063 +16 174 5 877719504 +295 747 4 879518590 +28 646 4 881961003 +249 686 5 879641251 +301 333 4 882075454 +363 184 3 891494725 +271 384 3 885849582 +22 407 3 878886845 +329 181 4 891655741 +206 895 5 888179788 +30 531 5 885941156 +308 89 5 887738057 +358 132 5 891270652 +405 451 5 885547360 +5 80 2 875636511 +383 137 5 891192986 +15 929 1 879456168 +92 1033 2 890251592 +422 919 5 875130027 +379 651 4 880568511 +201 241 2 884112487 +399 1274 1 882350870 +64 95 4 889737691 +328 322 3 885044782 +393 1183 3 889731040 +72 180 4 880036579 +349 237 2 879466062 +347 568 4 881654339 +268 105 2 876513927 +416 226 4 886317030 +6 471 2 883599558 +3 272 2 889237055 +235 520 4 889655204 +316 22 4 880853849 +331 182 4 877196567 +120 245 3 889490633 +407 194 4 875115452 +279 59 4 875308843 +294 1016 4 877820189 +239 432 5 889180041 +327 408 2 887745910 +360 157 4 880355994 +13 268 4 881514810 +234 433 2 892079910 +23 238 5 874785526 +399 323 1 882340517 +378 699 4 880055564 +334 396 4 891549103 +417 67 4 880952837 +250 1137 5 878090066 +276 5 3 874792692 +145 42 5 882181785 +428 307 4 885944110 +314 220 4 877886279 +327 264 2 887743725 +69 321 4 882027133 +237 502 4 879376487 +280 465 3 891701148 +301 419 3 882076072 +215 443 4 891436566 +26 322 3 891349122 +92 101 2 875656624 +374 28 5 880395698 +145 51 3 875272786 +168 15 5 884287362 +87 382 3 879876488 +24 475 4 875246216 +221 940 4 875246482 +224 318 5 888082584 +311 62 3 884365929 +412 427 4 879717016 +345 51 5 884993744 +176 948 4 886047595 +94 193 5 891720498 +328 85 1 886038183 +351 292 4 879481550 +412 92 3 879717449 +156 197 5 888185777 +399 94 5 882349022 +206 315 5 888180018 +334 577 2 891550372 +417 658 2 879647947 +200 580 2 884130114 +294 322 1 889243393 +177 172 5 880130990 +332 144 5 887939092 +248 194 4 884534672 +197 1228 4 891410124 +94 1004 3 891723593 +210 751 4 890059441 +416 1147 4 888702100 +318 796 3 884496500 +110 233 4 886988535 +130 255 4 874953794 +339 509 4 891033140 +379 855 4 880961506 +378 194 4 880046100 +313 29 2 891028472 +94 334 3 891725440 +115 496 1 881171203 +295 389 4 879518298 +374 450 4 880938370 +192 1137 4 881367705 +178 1300 3 886678518 +53 748 2 879443329 +345 739 4 884993016 +187 1119 3 879465683 +56 715 1 892911247 +201 321 3 884111029 +201 551 1 884114770 +374 692 5 882158641 +357 405 5 878951784 +62 20 4 879372696 +299 13 4 877877965 +345 269 5 884900466 +10 195 4 877889130 +130 168 3 875216786 +387 854 5 886481686 +290 133 3 880473735 +150 235 4 878746792 +149 321 2 883512856 +87 192 3 879877741 +200 276 5 876041895 +217 38 3 889070266 +393 2 4 887746206 +10 521 4 877892110 +379 216 4 880525926 +393 215 4 887745912 +328 504 3 885046420 +378 696 3 880045044 +212 427 4 879303795 +318 815 3 884494938 +311 315 5 884364108 +429 64 4 882384744 +345 405 4 884991285 +57 222 5 883698581 +6 248 3 883598981 +120 286 5 889489943 +311 1046 3 884366307 +293 366 2 888907981 +276 686 3 874792547 +268 484 4 876513831 +222 471 3 881060992 +393 792 1 889729346 +416 234 5 893213644 +389 662 3 880613750 +46 7 4 883616155 +280 387 4 891701974 +43 181 4 875975211 +230 144 3 880484850 +95 232 4 879196513 +308 197 3 887736743 +183 222 4 892323453 +13 402 4 886303934 +39 306 3 891400342 +393 110 2 889730117 +336 1017 5 877757063 +42 742 4 881105581 +201 1163 1 884140382 +76 385 2 882607017 +394 450 3 881132958 +116 344 5 892683820 +59 82 5 888205660 +128 949 4 879968896 +59 1118 2 888206048 +299 1073 4 879123070 +416 56 5 893212929 +427 938 5 879701253 +239 195 5 889180747 +38 916 5 892428188 +302 299 2 879436932 +18 162 4 880131326 +303 436 4 879484644 +193 155 4 889126376 +279 841 4 879572893 +193 443 4 889126610 +59 18 4 888203313 +401 137 3 891032316 +393 1165 3 889730514 +224 549 3 888103971 +402 127 5 876267014 +92 66 3 875812279 +84 385 4 883453797 +7 264 4 891350703 +347 96 4 881653775 +263 495 5 891298977 +356 300 3 891405978 +128 50 4 879967268 +317 331 4 891446190 +416 134 4 878879619 +123 487 3 879872192 +393 779 3 889729673 +177 338 3 882142221 +398 70 4 875717315 +257 224 4 879029717 +7 681 1 891350594 +32 245 2 883710047 +389 217 3 880088774 +318 1521 3 884497824 +16 606 4 877721071 +385 156 4 881308434 +95 747 5 880573288 +291 1219 4 875087221 +339 845 4 891034718 +203 248 5 880434496 +110 68 2 886988631 +56 451 3 892676970 +64 58 3 889739625 +70 432 3 884067175 +76 772 3 875498117 +58 923 5 884305062 +363 685 4 891496979 +390 181 4 879694198 +354 428 4 891217298 +1 86 5 878543541 +49 39 2 888068194 +380 527 4 885479212 +261 892 5 890455190 +102 181 2 888801406 +130 173 3 875216593 +181 1174 1 878962200 +363 152 5 891494906 +387 943 4 886483357 +198 182 4 884207946 +409 518 1 881109347 +204 1 2 892513979 +21 328 3 874951005 +339 1248 3 891034538 +186 717 3 879023242 +429 86 5 882384579 +365 150 5 891303950 +406 195 5 882480710 +60 161 4 883327265 +379 300 3 890464279 +380 64 3 885481179 +417 552 2 880952066 +72 479 4 880037881 +412 436 4 879717649 +269 763 1 891450555 +381 473 5 892697150 +391 474 5 877399171 +49 998 2 888069194 +348 313 5 886522495 +5 433 5 875636655 +329 655 4 891656237 +357 287 4 878952265 +427 682 5 879701325 +200 50 5 884128400 +338 174 4 879438392 +87 254 4 879876256 +194 616 3 879523243 +109 1157 4 880583646 +94 425 5 885870665 +308 72 4 887740451 +295 133 4 879517432 +334 168 5 891546914 +115 93 3 881170332 +158 183 3 880134332 +256 227 4 882164603 +23 546 3 874784668 +276 588 4 874792907 +13 420 4 882398691 +43 568 4 883955363 +397 1298 3 885350543 +418 362 1 891282765 +279 233 5 875312745 +427 341 5 879701253 +379 54 2 880526100 +399 168 3 882342776 +58 50 4 884304328 +399 114 4 882341974 +398 661 3 875719399 +193 259 2 889123351 +70 109 3 884066514 +381 83 4 892695996 +184 174 3 889908693 +269 665 1 891451810 +363 505 3 891495238 +44 216 1 883613297 +7 622 4 891352984 +106 313 4 888706075 +366 164 5 888857932 +18 70 4 880129668 +254 699 3 886473120 +201 123 2 884114233 +7 161 3 891352489 +423 237 4 891395448 +44 357 4 878347569 +423 315 4 891395141 +14 116 5 876965165 +7 428 5 892133036 +247 151 4 893081396 +309 242 4 877370319 +255 98 5 883216449 +354 659 4 891217221 +7 288 4 891350703 +85 209 4 879454500 +314 1136 5 877890463 +104 827 2 888466086 +116 264 3 876452186 +373 566 4 877105809 +92 93 4 886444049 +374 121 4 880393095 +92 963 5 875652981 +344 176 5 884814507 +387 1538 3 886481151 +83 94 4 880308831 +286 778 5 877534025 +383 513 5 891193016 +316 463 5 880854267 +73 1073 4 888625753 +54 50 5 880931687 +417 196 5 879647090 +299 294 2 877618584 +327 381 4 887819354 +181 1336 1 878963241 +10 13 3 877892050 +28 423 2 881956564 +347 699 1 881654480 +157 93 3 886890692 +116 582 3 876453626 +184 447 3 889910653 +287 276 4 875334126 +311 50 5 884365075 +361 203 5 879441285 +177 198 4 880131161 +18 479 4 880129769 +363 188 4 891495711 +271 237 4 885847763 +381 498 5 892696252 +287 117 5 875334405 +368 218 2 889783453 +346 143 3 874948332 +178 431 4 882827400 +21 688 1 874950972 +35 680 4 875459099 +85 1009 2 879453093 +385 114 5 879441942 +49 70 2 888066614 +309 306 2 877370356 +1 196 5 874965677 +276 196 4 889174849 +246 195 3 884921138 +119 254 2 874781037 +197 174 5 891409798 +393 420 3 889728074 +385 1129 5 879440236 +314 764 3 877886816 +399 578 2 882348722 +92 89 5 875652981 +289 926 3 876790611 +94 448 5 891722939 +295 42 3 879517467 +249 1103 5 879572256 +297 742 3 875774155 +305 289 4 886308064 +128 1063 2 879967047 +393 554 4 889729486 +326 564 3 879877470 +314 948 3 877886029 +246 585 1 884923811 +287 291 5 888177402 +59 109 4 888203175 +365 289 3 891303694 +401 462 4 891033684 +280 1401 5 891700881 +270 402 5 876955770 +363 940 2 891498920 +200 652 2 884127370 +13 805 4 882141458 +331 242 4 877196089 +222 200 3 878181647 +362 268 2 885019435 +338 792 4 879438196 +345 15 4 884991220 +164 276 3 889401771 +286 710 4 889651672 +95 7 5 879197329 +22 878 1 878887598 +387 152 1 886479690 +201 1169 4 884141053 +145 212 2 875272786 +290 144 3 880473802 +373 31 3 877100199 +417 135 3 879647826 +416 304 5 893214225 +290 699 3 880473735 +38 140 5 892430309 +295 159 4 879518107 +275 930 3 876197904 +64 451 2 889739490 +367 201 5 876689991 +330 277 4 876544690 +328 223 4 885045645 +16 134 4 877719158 +145 265 5 875272131 +233 31 3 880610814 +244 559 4 880607154 +320 739 4 884750992 +178 294 2 882823301 +347 294 1 881652142 +250 474 5 878089964 +181 1344 1 878962240 +363 387 1 891497639 +283 95 5 879297965 +56 168 2 892679209 +416 417 3 886317568 +98 116 5 880499053 +246 230 3 884922070 +21 473 3 874951245 +199 475 5 883782918 +293 1217 1 888907913 +376 14 4 879454914 +361 100 5 879440386 +293 1011 3 888905146 +130 798 1 878537631 +43 11 5 875981365 +262 709 5 879795122 +289 147 3 876789581 +95 69 5 879198210 +407 755 3 875553509 +328 531 4 885046455 +330 393 4 876547004 +293 347 2 888904353 +409 680 1 881105677 +286 290 3 876522072 +417 208 3 879648026 +394 232 4 880889374 +144 273 4 888104213 +393 728 3 889730209 +76 286 5 875027206 +305 207 5 886323839 +56 44 4 892679356 +22 455 5 878886479 +417 1023 4 880949479 +18 13 5 880131497 +234 276 3 891228196 +264 602 4 886122194 +379 133 4 881000300 +181 1392 1 878961749 +252 740 3 891456738 +296 240 1 884196765 +141 1142 1 884584688 +334 300 3 891544209 +60 558 4 883326784 +110 751 3 886987183 +346 1018 3 874950536 +272 521 5 879454977 +399 230 3 882344512 +275 118 3 876197678 +320 692 4 884750968 +209 766 4 883460644 +244 926 2 880609193 +417 631 3 879647826 +345 1014 3 884994643 +417 747 3 879648325 +407 466 3 876339101 +344 304 3 884814359 +222 409 3 881061213 +11 241 4 891906389 +318 140 4 884496738 +358 357 4 891270405 +385 1135 1 879448181 +40 294 4 889041671 +417 235 2 879646413 +7 72 5 891353977 +64 96 4 889737748 +378 258 4 882712421 +318 211 5 884496432 +102 840 2 888802508 +276 816 2 874792793 +42 977 2 881106541 +23 70 2 874786513 +20 121 3 879668227 +345 77 3 884993555 +21 242 3 874951617 +389 478 5 879991264 +250 135 5 878091915 +393 83 4 887746523 +254 419 4 886472231 +75 824 1 884051056 +429 1222 3 882387074 +420 19 3 891356927 +276 206 5 874795988 +234 7 2 891227813 +79 262 5 891271203 +308 385 4 887740099 +104 1011 3 888465201 +308 124 4 887737647 +200 147 5 876042451 +256 925 5 882151017 +222 1419 1 878184947 +429 495 3 882385358 +385 194 3 879441538 +207 322 3 879001724 +63 508 4 875747752 +344 303 4 884814359 +49 386 4 888069222 +151 605 4 879528909 +416 738 2 886319825 +321 663 2 879439537 +32 235 3 883718121 +128 265 5 879968663 +330 193 5 876547004 +269 346 2 891445757 +153 216 2 881371032 +316 318 5 880853516 +325 357 4 891477957 +1 39 4 875072173 +20 252 4 879669697 +95 651 5 879196594 +272 201 3 879455113 +349 412 1 879466366 +407 642 2 875045627 +335 271 4 891567029 +125 357 3 879454100 +256 125 5 882150552 +184 11 3 889908694 +307 474 5 879283787 +76 200 5 882606216 +405 1188 3 885547506 +262 755 3 879794446 +30 301 4 875988577 +94 961 4 891721317 +106 48 3 881453290 +13 414 5 882141458 +343 97 4 876405893 +313 498 5 891015144 +10 183 5 877893020 +234 421 1 892334852 +33 751 4 891964188 +7 389 4 891354090 +189 479 5 893265123 +305 921 5 886324410 +405 1207 1 885548686 +59 98 5 888204349 +354 603 5 891217082 +70 338 2 884065248 +3 354 3 889237004 +363 1228 2 891498720 +311 387 4 884365654 +268 665 2 875310745 +405 230 2 885547953 +57 597 3 883697378 +343 475 5 876402668 +354 664 5 891217717 +94 723 3 891721851 +297 95 3 875238814 +59 200 5 888205370 +244 1048 4 880606567 +57 199 5 883698646 +11 524 4 891904949 +104 150 5 888465225 +58 1102 1 892242891 +92 403 4 875654189 +406 662 3 882480481 +13 772 1 882140070 +417 64 5 879647326 +123 707 5 879809943 +387 227 4 886483195 +422 854 4 879744014 +405 62 1 885547996 +98 745 3 880498935 +206 1313 1 888179981 +332 326 5 892484951 +253 496 5 891628278 +309 300 3 877370288 +285 682 4 890595524 +401 654 3 891033184 +385 462 2 881135090 +383 14 5 891192836 +234 15 3 892079538 +346 785 3 875263077 +320 129 4 884748661 +123 704 3 879873120 +106 194 5 881450758 +213 121 5 878870940 +378 939 4 880332307 +405 771 1 885548162 +417 403 4 879649224 +248 678 3 884534419 +280 1060 3 891701278 +404 327 2 883790366 +405 1247 1 885546681 +59 39 4 888205033 +13 812 2 882398933 +272 469 5 879455143 +169 705 5 891359354 +378 723 3 880055396 +314 1089 1 877887356 +44 193 3 878348521 +15 889 3 879455473 +404 748 4 883790430 +160 564 3 876861799 +416 532 3 888700659 +104 312 3 888442485 +303 384 3 879485165 +331 81 5 877196702 +108 10 5 879879834 +416 220 4 878879168 +314 1517 4 877891937 +2 301 4 888550631 +271 1 3 886106038 +75 410 5 884050661 +405 188 1 885547996 +344 511 4 884901311 +64 12 5 889738085 +297 128 4 875239346 +314 7 4 877886375 +135 12 4 879857764 +94 223 5 891721286 +23 512 5 874785843 +354 344 5 891180445 +316 14 4 880853881 +276 333 4 877584220 +398 991 2 875651527 +326 554 3 879877005 +156 22 3 888186093 +262 332 3 879961438 +360 181 4 880355353 +408 683 3 889679982 +295 414 4 879517157 +151 1101 4 879524586 +401 198 4 891033370 +234 186 3 892078567 +402 126 4 876266741 +338 606 3 879438275 +312 136 5 891698613 +343 214 4 876406604 +1 164 3 876893171 +405 578 1 885548093 +330 71 5 876546236 +343 132 5 876404880 +82 482 4 878769668 +249 218 3 879641322 +318 326 4 884470149 +424 1346 4 880859519 +323 764 3 878739415 +343 498 5 876408138 +331 180 5 877196567 +297 108 4 874955085 +311 134 5 884364502 +141 120 4 884585547 +393 222 4 887744239 +275 144 4 880314137 +221 154 3 875245907 +249 591 5 879572890 +249 9 5 879572402 +181 1377 1 878962496 +429 511 5 882385542 +338 306 4 879437548 +58 483 5 884305220 +274 88 4 878946677 +16 602 5 877719333 +102 635 2 888803148 +162 597 4 877636370 +87 8 5 879876447 +280 69 4 891700242 +393 378 4 887746824 +346 94 3 875263845 +399 817 4 882509927 +274 111 4 878945541 +94 715 4 891722278 +101 123 2 877136186 +92 722 3 875907596 +211 455 3 879461498 +194 99 3 879524643 +28 89 4 881961104 +290 826 2 880732271 +327 421 2 887745840 +360 13 3 880354315 +339 525 5 891032737 +354 529 4 891217610 +251 476 2 886272407 +385 293 3 879439728 +56 747 4 892677162 +13 564 1 882396913 +432 222 4 889416012 +256 1061 4 882153321 +177 168 4 880130807 +92 144 4 875810741 +161 1266 2 891170745 +22 358 5 878887443 +111 333 4 891680028 +18 775 3 880131878 +421 474 4 892241389 +435 780 2 884133284 +286 1202 3 876522185 +8 210 4 879362287 +200 576 4 884130415 +58 150 4 884304570 +14 517 4 890881485 +307 197 4 877122115 +249 212 4 879572890 +7 334 5 892130784 +424 25 4 880859723 +429 628 3 882385808 +59 367 4 888204597 +267 227 3 878973088 +230 357 5 880484391 +73 81 5 888626415 +277 872 3 879543768 +151 1017 2 879542939 +8 258 5 879361482 +269 505 3 891449551 +91 318 5 891439090 +296 45 5 884197419 +401 603 4 891033497 +244 161 4 880607990 +126 752 3 887855342 +339 194 4 891037070 +222 302 3 877562748 +176 750 4 886047176 +228 327 1 889387216 +308 100 5 887736797 +119 616 2 886177206 +90 518 2 891385787 +401 385 3 891033603 +387 431 3 886483150 +328 157 5 885046344 +194 127 5 879520813 +246 117 3 884921767 +22 208 5 878886607 +257 1008 5 882050187 +375 566 4 886621985 +94 496 3 885873159 +190 1313 2 891033445 +354 199 4 891217130 +210 953 3 887737488 +6 511 5 883601393 +281 258 2 881200457 +174 415 3 886515591 +5 219 3 875720744 +405 1563 1 885549635 +145 266 3 877343000 +416 49 4 893142283 +327 89 4 887744167 +115 1008 5 881171982 +398 216 5 875723337 +378 418 3 880331938 +385 485 4 879446591 +178 228 5 882826556 +168 819 4 884288270 +109 762 3 880571831 +354 87 3 891217482 +416 866 4 878879130 +425 39 4 878738335 +374 265 5 880937779 +339 1113 4 891033829 +339 76 3 891034254 +41 1 4 890692860 +13 519 5 882140355 +305 550 3 886325023 +399 774 3 882345053 +418 313 3 891282680 +406 745 4 880131550 +299 143 3 877880612 +92 1014 3 890251484 +26 333 3 891348192 +344 237 3 884900353 +334 792 4 891546257 +287 201 5 875334962 +378 48 5 880056701 +91 134 4 891439353 +416 32 2 888702297 +303 551 2 879544021 +138 185 4 879023853 +363 128 5 891495371 +429 45 3 882385118 +393 196 4 887746015 +387 1014 3 886480789 +256 779 4 882164644 +104 147 3 888466002 +303 218 4 879484695 +2 313 5 888552084 +85 530 3 879456350 +264 238 5 886122031 +241 313 4 887249795 +343 269 4 876402390 +395 174 5 883763561 +200 660 3 884129209 +260 362 5 890618729 +52 427 5 882922833 +235 65 2 889655723 +159 756 4 880557464 +389 518 4 880087073 +320 7 4 884748708 +392 286 2 891037385 +18 318 5 880132437 +318 312 4 884470193 +315 187 4 879799423 +85 417 3 882995859 +125 69 4 879454628 +308 129 5 887736925 +391 924 2 877400116 +284 300 3 885329395 +286 640 5 877531830 +393 1091 2 889731840 +239 492 3 889180411 +297 183 4 875238984 +223 846 2 891550193 +180 423 4 877355568 +189 134 5 893265239 +58 198 3 884305123 +130 288 5 874953291 +95 402 3 880571389 +2 279 4 888551745 +345 25 3 884991384 +425 185 2 878738853 +38 419 5 892429347 +28 450 1 881961394 +397 894 1 882838796 +145 270 5 879161577 +216 405 3 880232970 +429 1016 4 882386217 +297 231 3 875239913 +162 710 4 877636860 +58 955 4 884305062 +151 1264 4 879542389 +38 1034 1 892433062 +276 559 4 874792663 +79 150 3 891271652 +361 517 5 879440386 +293 54 3 888907210 +398 204 4 875716013 +6 284 2 883599590 +416 404 3 886316190 +159 411 3 880557677 +328 432 1 885047511 +421 443 5 892241459 +197 226 4 891410038 +109 157 4 880577961 +204 336 1 892391854 +23 269 5 877817151 +284 332 3 885329593 +391 1101 4 877399423 +350 589 5 882346986 +429 735 4 882387757 +398 31 3 875658967 +311 493 4 884364465 +6 304 4 883268322 +416 721 3 886317540 +262 581 3 879794667 +406 612 5 879446718 +181 9 4 878962675 +416 895 4 885114446 +267 273 4 878970503 +346 121 4 874948703 +96 50 5 884402977 +94 1028 2 891723395 +226 1117 3 883890262 +286 155 4 877533640 +398 228 5 875657926 +374 280 3 880393811 +16 9 5 877722736 +177 433 4 880131123 +263 423 5 891299630 +411 1470 3 892845746 +58 318 3 884305087 +432 295 3 889416352 +94 175 4 885870613 +234 747 3 892334578 +59 218 5 888206409 +402 234 4 876266826 +417 588 3 879647540 +13 875 1 881515613 +299 522 3 877880522 +213 174 5 878955848 +421 156 5 892241458 +268 98 4 875309583 +263 269 4 891296842 +267 240 4 878970503 +194 94 3 879528000 +88 904 5 891037276 +406 1047 3 879540358 +366 443 5 888857866 +213 568 4 878955941 +345 535 3 884994136 +409 202 3 881109347 +311 168 4 884365406 +243 196 4 879988298 +4 50 5 892003526 +82 222 3 876311365 +424 261 3 880859115 +8 127 5 879362123 +327 588 4 887820761 +416 770 4 878880154 +87 238 3 879876734 +297 471 3 874954611 +405 350 1 885549903 +1 230 4 878542420 +392 98 5 891038979 +240 336 3 885775745 +269 254 1 891456565 +283 1487 2 879297867 +393 233 3 889730460 +433 302 5 880585028 +405 1046 2 885548633 +428 690 5 885943651 +363 402 2 891498365 +200 597 4 876042824 +391 195 2 877399618 +43 692 5 883955884 +330 133 5 876545625 +405 432 3 885548785 +327 735 2 887818540 +198 65 2 884208241 +130 111 5 874953825 +343 48 3 876405697 +371 174 4 877487751 +393 328 5 887742798 +373 97 3 877099178 +280 735 2 891700475 +102 385 3 888801577 +104 245 2 888442404 +338 582 5 879438419 +83 977 3 880307382 +15 591 2 879455821 +171 306 3 891034606 +276 135 5 874787441 +234 287 3 891228196 +243 317 5 879989217 +398 501 3 875658898 +145 983 1 879161805 +301 357 5 882075994 +8 188 5 879362356 +393 71 3 889554977 +58 123 4 884650140 +397 56 5 882839517 +18 609 4 880130713 +315 746 3 879821120 +344 208 5 884901290 +426 480 5 879444473 +435 240 3 884133818 +393 94 4 889731465 +79 251 5 891271545 +83 568 4 880307724 +153 323 2 881370900 +343 62 2 876406707 +321 515 5 879440109 +349 9 4 879465477 +398 276 4 875652760 +59 521 5 888204877 +72 87 4 880036638 +417 436 3 879648478 +13 377 1 882399219 +432 620 4 889416352 +399 550 3 882345120 +339 153 4 891033932 +303 1188 4 879485204 +405 775 1 885547735 +298 178 5 884127369 +359 24 3 886453354 +286 766 3 877533724 +250 321 5 878089099 +200 542 3 884130592 +189 194 5 893265428 +336 216 5 877757858 +325 493 4 891477905 +354 174 4 891218068 +262 588 4 879793075 +232 14 4 880062574 +145 631 4 885557626 +139 307 4 879537876 +94 550 1 891723033 +159 117 5 880486047 +274 1 4 878945466 +325 313 2 891477489 +436 238 3 887769693 +21 448 4 874951727 +262 140 2 879794635 +435 299 4 884130671 +194 504 2 879523785 +11 22 4 891904241 +417 742 2 879646531 +138 357 4 879024327 +95 178 5 879197652 +244 1054 3 880609089 +36 310 4 882157327 +340 423 4 884990583 +251 295 4 886272249 +249 300 4 879571489 +234 782 3 892335372 +326 172 4 879875431 +244 255 2 880604077 +343 382 3 876406978 +200 123 4 884127568 +154 89 5 879138910 +104 354 3 888442202 +425 318 2 878737841 +393 49 4 889729674 +95 181 4 879193353 +274 150 5 878944679 +347 1059 3 881652813 +271 310 3 885844430 +234 236 3 892079336 +347 298 5 881652590 +89 14 4 879441357 +195 1418 4 891762646 +406 482 5 879446588 +430 10 4 877225726 +336 1218 3 877757790 +359 270 4 886453467 +184 382 5 889909691 +291 619 3 874805927 +396 274 4 884646263 +10 132 5 877893020 +276 551 3 874792767 +222 662 3 878182813 +308 147 3 887739831 +373 206 4 877104284 +74 129 3 888333458 +64 199 4 889737654 +62 541 3 879376535 +217 827 2 889070232 +342 92 4 875320227 +87 576 3 879876163 +215 186 4 891435731 +322 489 3 887313892 +416 294 4 876696739 +401 294 1 891031621 +290 172 5 880474141 +234 1048 3 892335501 +115 181 4 881172049 +243 69 3 879988298 +363 155 2 891497712 +82 357 4 878769888 +189 174 5 893265160 +94 1153 4 891721777 +417 684 3 879647380 +426 603 5 879444472 +1 36 2 875073180 +183 485 5 892323452 +23 189 5 874785985 +320 849 4 884749360 +13 340 2 881514684 +422 325 2 875129692 +405 650 1 885546336 +184 250 4 889907482 +254 621 3 886474807 +264 230 4 886122644 +92 154 4 875657681 +255 444 3 883216599 +21 294 3 874951616 +347 1028 2 881653087 +168 281 2 884288033 +276 186 5 874792018 +344 1050 3 884901290 +406 675 4 879792897 +402 151 5 876266984 +387 116 3 886480206 +345 332 1 884901497 +334 631 4 891547467 +76 1156 3 879576233 +398 654 4 875726730 +157 293 5 874813703 +18 523 4 880130393 +280 780 4 891701897 +123 480 3 879872540 +387 418 3 886483669 +181 1165 1 878962496 +401 50 1 891034050 +11 455 3 891903862 +174 204 4 886452552 +193 1406 4 889123926 +393 1221 3 889554834 +137 257 5 881433048 +276 118 3 874786964 +361 739 4 879441075 +269 1438 3 891448522 +429 1119 3 882387653 +342 129 5 874984684 +378 321 3 880317293 +203 250 4 880434495 +250 89 4 878092144 +347 55 5 881653603 +399 173 3 882349928 +269 447 3 891451303 +405 1316 1 885549942 +370 659 4 879435033 +381 304 5 892697982 +333 276 4 891045031 +152 22 5 882828490 +402 479 5 876267206 +400 689 3 885676316 +116 903 2 890632956 +270 1210 5 876956264 +177 475 4 880130898 +13 185 3 881515011 +323 56 5 878739771 +393 737 2 889730261 +308 461 4 887737535 +128 98 4 879967047 +223 826 1 891550404 +432 742 4 889415983 +151 633 5 879528801 +221 1134 4 875244289 +189 638 5 893265380 +128 1039 4 879967079 +118 164 5 875385386 +284 340 4 885328991 +324 258 4 880575107 +18 135 3 880130065 +383 313 2 891192158 +398 191 4 875721348 +256 402 4 882165269 +221 685 3 875244766 +417 1036 3 879649484 +301 269 5 882075432 +207 433 3 878104569 +117 222 5 886020290 +184 57 5 889908539 +35 322 3 875459017 +158 216 3 880134948 +434 1060 3 886724733 +7 495 5 891351328 +216 1035 1 880245238 +85 509 4 879454189 +354 435 4 891218024 +393 672 3 889729614 +14 23 5 890881216 +181 1360 1 878962119 +325 435 3 891478239 +54 475 5 880937251 +299 546 3 877879980 +301 300 4 882075500 +118 32 5 875384979 +263 483 5 891298336 +338 100 4 879438196 +409 995 4 881105366 +435 380 3 884133026 +125 722 3 892838687 +294 245 3 877818982 +90 287 4 891384611 +345 550 3 884993784 +189 9 3 893263994 +18 241 3 880131525 +256 1086 5 882150943 +94 581 4 891722249 +398 64 4 875660439 +92 203 4 875653699 +100 348 3 891375630 +347 392 2 881654592 +409 270 2 881104916 +344 559 3 884901351 +369 114 5 889428642 +200 363 3 876042753 +417 1135 4 880951717 +389 404 5 880087200 +101 1093 1 877136360 +95 1219 1 888956489 +380 428 3 885480320 +10 420 4 877892438 +283 676 3 879297867 +63 924 3 875748164 +252 100 5 891456797 +330 763 5 876544337 +130 756 4 874953866 +34 332 5 888602742 +219 935 3 889387237 +437 165 4 881002324 +386 546 2 877655195 +7 520 5 892133466 +314 682 5 877885836 +436 161 4 887771897 +183 331 3 892322382 +1 23 4 875072895 +432 111 4 889416456 +162 943 4 877636604 +211 303 3 879437184 +301 276 1 882074384 +426 493 4 879444473 +2 299 4 888550774 +286 732 5 877531899 +298 203 3 884182966 +362 288 4 885019304 +372 448 4 876869445 +418 301 2 891282738 +254 612 3 886471959 +426 504 4 879442083 +393 403 3 889727503 +268 168 4 875310384 +344 183 5 884814507 +405 1275 1 885548632 +90 705 5 891384147 +92 226 3 875813412 +318 657 5 884495696 +64 509 3 889737478 +405 361 2 885549942 +92 328 3 888469687 +201 184 3 884112245 +188 66 3 875075118 +186 118 2 879023242 +428 340 4 885943749 +339 961 3 891034778 +334 268 4 891544102 +429 371 2 882387715 +405 551 1 885548475 +361 179 4 879440545 +62 328 3 879371909 +405 1113 1 885546680 +370 493 5 879434886 +342 287 3 874984619 +307 114 5 879283169 +303 167 3 879468307 +92 62 3 875660468 +334 313 4 891544077 +409 1021 4 881168603 +14 168 4 879119497 +416 475 2 876697074 +303 685 1 879485089 +125 496 5 879454419 +419 705 5 879435663 +13 217 1 882396955 +128 99 4 879967840 +258 243 3 885701024 +337 450 2 875185319 +267 780 4 878973250 +313 849 3 891028360 +194 210 3 879521396 +331 215 3 877196383 +59 699 4 888205370 +342 975 2 875318509 +52 235 2 882922806 +374 475 1 880393191 +324 300 5 880574827 +286 792 3 877532230 +30 231 2 875061066 +158 116 5 880132383 +367 326 4 876689502 +197 316 4 891409535 +94 135 4 885870231 +327 179 2 887820493 +374 576 3 880939186 +269 427 5 891447960 +237 603 5 879376773 +428 316 4 892572382 +222 1 4 877563227 +334 132 3 891546231 +198 631 3 884208624 +299 655 3 889502979 +361 762 2 879440774 +360 127 5 880354149 +256 834 3 882163956 +93 235 4 888705939 +405 1109 1 885548632 +313 441 3 891029964 +14 596 3 879119311 +234 1298 3 892079373 +1 224 5 875071484 +263 265 4 891299815 +199 687 1 883782655 +119 995 4 891287008 +421 124 4 892241344 +48 286 3 879434181 +52 93 4 882922357 +251 1028 3 886272585 +320 369 4 884749097 +280 715 2 891700945 +297 129 4 874954353 +229 302 5 891633028 +380 630 2 885478780 +385 500 4 879443352 +399 768 3 882350401 +52 275 4 882922328 +8 651 5 879362123 +387 1143 5 886480623 +56 258 4 892675999 +10 712 4 877892438 +125 926 3 892839066 +275 101 4 875154535 +416 427 5 893213019 +43 272 5 883953545 +221 173 4 875245406 +404 892 2 883790550 +84 194 5 883453617 +181 424 1 878962240 +299 710 4 877881508 +85 192 4 879454951 +417 979 3 879646437 +49 346 4 888065527 +417 1209 3 879649368 +206 891 2 888180049 +71 65 5 885016961 +103 96 4 880422009 +385 128 5 879442235 +374 234 4 880396256 +354 629 3 891217659 +438 476 5 879868664 +373 732 3 877104048 +437 1121 5 880140466 +305 7 4 886323937 +385 965 4 879445779 +70 762 3 884066399 +291 769 1 875087673 +188 161 3 875073048 +299 662 4 878192429 +194 259 2 879520306 +279 465 5 875310157 +271 549 4 885849231 +262 358 3 879961513 +13 651 5 882140070 +222 719 1 881060578 +222 658 3 881059678 +174 67 1 886515130 +180 173 5 877128388 +405 785 1 885547407 +416 178 5 893213918 +13 24 1 882397741 +280 234 3 891700803 +334 1006 3 891549860 +167 290 3 892737936 +28 223 5 882826496 +200 432 5 884128458 +267 393 3 878973483 +90 148 2 891385787 +141 410 4 884585195 +10 186 4 877886722 +189 16 3 893264335 +416 768 3 893210187 +139 222 3 879538199 +375 39 3 886622024 +345 291 3 884991476 +389 736 5 880088229 +299 173 5 889501163 +389 778 4 880088995 +72 550 4 880037334 +378 100 4 880044198 +178 495 4 882827870 +125 83 4 879454345 +255 323 2 883215723 +244 456 3 880605333 +437 708 4 881002026 +292 168 5 881105318 +416 327 4 876696853 +154 143 3 879139003 +312 114 5 891698793 +405 581 3 885546530 +119 455 4 874774719 +201 1220 2 884140975 +7 579 4 892133361 +215 449 4 891436469 +60 507 4 883326301 +343 147 4 876402814 +15 1 1 879455635 +162 1012 4 877635965 +185 279 4 883525255 +286 546 1 876521835 +370 22 4 879434832 +71 50 3 885016784 +95 239 3 879198262 +378 1439 3 880333144 +429 709 4 882385267 +197 210 5 891409838 +10 199 4 877892050 +177 689 3 882141885 +354 153 3 891218418 +393 189 4 887745717 +269 433 3 891449900 +429 491 3 882384950 +112 307 4 884992585 +59 50 5 888205087 +373 1006 2 877100129 +288 357 5 886373591 +119 268 5 886175117 +216 357 4 880233635 +423 272 5 891394503 +159 121 3 880486071 +90 602 5 891385466 +109 121 5 880571741 +399 1135 2 882349170 +243 632 5 879988487 +13 673 3 882140691 +94 652 4 891721167 +361 234 4 879441285 +363 229 3 891497393 +213 229 4 878955973 +293 739 2 888906804 +118 193 5 875384793 +111 242 4 891679901 +195 235 3 883191566 +292 265 4 881105587 +13 287 1 882141459 +224 723 2 888104313 +200 692 3 884128400 +14 477 4 879119311 +299 136 4 878192078 +279 73 4 875310041 +345 716 3 884993686 +207 580 3 879665232 +235 515 4 889655086 +405 30 1 885549544 +312 173 3 891699345 +415 243 1 879439386 +422 258 4 875129523 +318 865 2 884496099 +233 193 4 877663646 +378 979 3 880333851 +437 1404 2 881002263 +2 298 3 888551441 +120 252 3 889490633 +437 190 3 880140154 +301 239 2 882076682 +269 843 3 891451374 +318 285 4 884470944 +181 1028 2 878962997 +44 204 4 878348725 +390 713 4 879694259 +346 1222 4 875263877 +292 223 5 881105516 +196 692 5 881252017 +399 1179 2 882352324 +363 9 3 891494628 +197 880 3 891409387 +291 540 3 874835141 +44 470 3 878348499 +263 648 5 891297988 +427 680 5 879701326 +234 1263 3 892335142 +102 286 3 883277645 +10 710 4 877892160 +27 508 3 891542987 +174 762 5 886434136 +346 53 1 875263501 +224 581 1 888104219 +312 265 1 891698696 +60 64 4 883325994 +184 606 5 889913687 +405 759 1 885548162 +174 1041 5 886513788 +95 393 5 880571678 +370 608 4 879434860 +380 185 4 885479057 +344 222 4 884899372 +236 298 4 890116793 +431 286 4 877844062 +272 288 4 879454663 +407 174 5 875042675 +113 1252 4 875935610 +363 474 5 891494929 +140 325 3 879013719 +331 514 3 877196173 +351 990 5 879481461 +265 151 2 875320661 +409 22 2 881108077 +22 172 4 878887680 +179 331 2 892151331 +254 655 4 886472313 +184 1397 3 889910233 +360 963 5 880355448 +234 484 5 892078936 +11 175 3 891904551 +221 824 3 875244694 +56 90 2 892677147 +71 135 4 885016536 +102 629 3 888803488 +417 99 4 879647498 +201 260 4 884110967 +244 584 5 880606634 +174 13 3 891551777 +413 255 3 879969791 +255 860 2 883216748 +347 215 4 881654211 +360 191 4 880355958 +345 748 2 884901497 +437 419 5 880141961 +398 479 4 875717020 +295 642 4 879517943 +429 941 3 882387506 +82 1126 4 878770169 +94 202 2 885873423 +14 655 5 879119739 +239 175 5 889180616 +58 558 5 884305165 +42 566 5 881107821 +271 289 4 885844666 +367 448 4 876690098 +354 321 2 891216128 +293 298 4 888904795 +285 514 3 890595859 +200 135 4 884128400 +223 975 1 891550094 +126 327 3 887855087 +271 642 5 885849231 +345 13 4 884991220 +224 51 4 888104457 +207 161 4 875509507 +291 1505 4 874868647 +361 531 5 879440545 +213 274 5 878955188 +75 1047 3 884050979 +287 98 4 875334759 +378 9 5 880044419 +121 515 4 891388391 +109 7 4 880563080 +334 652 5 891546992 +347 56 5 881653736 +399 1401 3 882342219 +1 73 3 876892774 +304 742 3 884968078 +345 98 5 884916235 +434 815 4 886724972 +158 433 3 880135044 +321 462 4 879440294 +49 738 3 888069138 +151 153 3 879524326 +7 223 5 891351328 +387 71 2 886483620 +409 664 4 881108648 +347 125 5 881652568 +118 17 3 875385257 +442 401 2 883388960 +286 127 4 877530570 +200 1049 3 876042922 +399 679 3 882344596 +42 63 4 881108873 +172 514 3 875537964 +389 517 4 880087977 +269 161 1 891451036 +267 545 2 878974723 +330 418 5 876546298 +406 396 3 879792974 +437 14 5 880140369 +407 969 4 884201736 +104 325 1 888442552 +390 304 5 879693561 +314 873 4 877886099 +406 503 3 884631010 +398 648 5 875733496 +159 289 2 880485415 +312 516 3 891699626 +312 195 5 891698254 +271 605 4 885849164 +95 496 4 879198746 +325 517 4 891478219 +314 418 5 877888346 +10 558 4 877886722 +405 1058 1 885546635 +178 323 3 882823530 +148 78 1 877399018 +422 126 4 875129911 +130 1136 4 876252373 +370 631 4 879435369 +336 124 1 877760244 +193 100 5 889124127 +176 50 5 886047879 +405 1317 1 885549746 +301 201 4 882076619 +126 313 5 887854726 +11 713 5 891903024 +279 719 4 875308222 +429 633 3 882385829 +428 875 4 885944136 +311 941 4 884365929 +363 169 5 891494563 +185 15 3 883525255 +417 132 4 879647850 +243 194 4 879988913 +399 295 4 882341264 +181 620 2 878963204 +7 259 3 891350464 +281 322 4 881200789 +416 1517 2 886320054 +316 132 4 880853599 +63 116 5 875747319 +222 161 4 878182279 +293 430 3 888905716 +59 142 1 888206561 +96 23 5 884403123 +328 503 3 885047696 +393 50 5 887743611 +244 738 4 880607489 +181 146 1 878962955 +239 836 5 889180888 +404 294 4 883790430 +380 496 4 885479537 +312 1039 5 891698951 +135 258 4 879857575 +401 435 5 891033250 +324 877 1 880575163 +62 1012 3 879372633 +432 237 5 889415983 +130 619 4 876251409 +82 151 2 876311547 +62 164 5 879374946 +435 431 3 884131950 +343 124 4 876402738 +222 2 3 878183837 +354 162 3 891217659 +367 288 5 876689418 +363 679 4 891497277 +58 195 4 884305123 +427 300 4 879700908 +405 1519 2 885546577 +145 549 5 875272786 +210 152 5 887730676 +405 1045 3 885546112 +361 524 4 879440386 +234 634 4 892079910 +291 294 5 874834481 +234 483 5 892078424 +200 258 4 876041644 +423 310 3 891394558 +398 1119 4 875812011 +194 193 4 879524790 +409 165 4 881107410 +256 1231 3 882164603 +1 67 3 876893054 +276 204 5 874791667 +60 505 4 883326710 +156 318 4 888185947 +436 73 4 887769444 +393 1169 5 887746015 +194 71 4 879524291 +405 959 1 885547222 +339 163 4 891035324 +160 137 4 876767299 +222 1029 1 881060608 +385 325 4 882175397 +210 864 3 887730842 +436 411 4 887771022 +224 300 4 888081843 +230 385 1 880485235 +54 118 4 880937813 +91 748 2 891438314 +297 197 3 875239691 +409 8 3 881108777 +301 385 3 882077055 +230 484 5 880484800 +8 176 5 879362233 +301 204 5 882076264 +407 655 4 875044037 +56 735 2 892678913 +22 230 4 878888026 +286 66 4 877533586 +202 173 2 879726914 +123 962 3 879872405 +311 195 4 884364538 +378 121 4 880044763 +276 101 4 874977555 +279 472 3 876609690 +95 226 4 879196513 +178 478 5 882826514 +56 25 4 892911166 +357 866 5 878951864 +201 693 4 884113949 +297 293 3 874954844 +92 508 5 886443416 +130 271 5 879352077 +354 511 4 891217340 +188 181 3 875072148 +301 231 2 882078580 +405 1217 3 885548633 +401 520 3 891033442 +389 402 3 880613797 +227 121 2 879035934 +391 530 5 877399337 +173 678 3 877556988 +342 1166 1 875319745 +94 603 4 891721414 +276 223 5 874790773 +72 135 4 880037054 +244 77 4 880603512 +269 499 4 891449099 +94 421 4 891721414 +135 939 4 879857797 +5 428 5 875636588 +130 689 2 880396150 +267 647 5 878971629 +32 259 2 883709986 +38 28 4 892429399 +279 248 4 875249259 +329 250 3 891656639 +109 388 5 880583308 +330 473 4 876544632 +276 1035 3 874793035 +164 121 5 889402203 +359 455 4 886453305 +196 8 5 881251753 +221 4 3 875245462 +14 50 5 890881557 +197 362 4 891409199 +94 288 3 885869993 +18 794 3 880131878 +435 1034 2 884134754 +13 27 3 882397833 +318 157 5 884496398 +385 385 1 879443352 +13 912 2 892014861 +374 204 4 880395604 +94 52 5 891721026 +183 450 3 891463592 +405 449 1 885548093 +92 582 5 875641516 +435 462 5 884131328 +230 97 5 880484544 +158 172 4 880134398 +201 1065 3 884113490 +23 1 5 874784615 +294 823 3 877820190 +406 642 3 884631033 +38 22 5 892429347 +119 511 5 874781407 +198 203 3 884207733 +268 134 5 875310083 +271 742 3 886106209 +99 694 1 885680616 +436 174 3 887769335 +208 402 4 883108873 +394 1079 3 881059148 +311 723 4 884366187 +22 997 1 878887377 +440 690 4 891546698 +372 649 3 876869977 +336 410 3 877758001 +117 1012 4 881008815 +392 321 5 891037685 +325 542 2 891479962 +409 480 5 881107056 +66 281 4 883602044 +344 246 4 889814518 +437 655 4 881001945 +239 705 4 889178652 +334 173 4 891628228 +442 385 3 883390416 +31 124 4 881548110 +357 984 3 878950923 +215 182 3 891435266 +115 1073 5 881171488 +90 1200 4 891384066 +102 5 3 888803002 +178 762 3 882824592 +70 96 4 884066910 +391 47 4 877399301 +325 554 1 891479912 +128 505 4 879967136 +426 1116 4 879444251 +60 416 4 883327639 +188 240 1 875072799 +13 201 1 882396869 +218 154 4 877488546 +393 380 2 887746482 +416 546 3 876697807 +393 1179 4 889731437 +325 127 5 891478480 +389 502 4 881384464 +339 302 4 891034592 +314 94 4 877891386 +303 462 3 879468082 +393 25 2 887744294 +389 1451 5 880087544 +44 274 4 878348036 +378 1046 3 880332857 +299 433 5 889501365 +49 583 4 888068143 +327 455 2 887819316 +360 207 4 880355888 +353 300 3 891402310 +385 705 3 879441538 +411 405 4 891035152 +383 19 4 891192911 +119 100 5 874774575 +130 881 4 875801239 +59 625 3 888206295 +435 443 3 884132777 +144 815 1 888104659 +340 174 4 884989913 +102 530 3 888801577 +251 181 4 886271733 +340 504 1 884991742 +442 31 3 883391249 +181 258 3 878961709 +169 234 4 891359418 +37 176 4 880915942 +167 1305 1 892738418 +190 333 4 891033606 +199 259 1 883782583 +160 23 5 876859778 +244 42 5 880602058 +99 409 2 885679411 +399 2 3 882512708 +94 824 4 891722882 +342 813 5 874984480 +409 339 2 881105677 +158 472 3 880132659 +303 1199 3 879468123 +23 527 4 874785926 +200 771 4 884130721 +332 295 3 887916529 +144 785 4 888106016 +24 109 3 875322848 +268 546 4 875743110 +328 1139 1 885049756 +406 199 5 879445810 +249 1016 3 879571752 +188 185 4 875071710 +1 65 4 875072125 +213 778 5 878955680 +385 42 1 879443252 +234 1400 3 892334400 +200 88 4 884128760 +405 169 1 885549192 +442 182 4 883390284 +79 290 3 891271741 +405 527 5 885545200 +117 1095 3 881010938 +387 744 3 886480818 +285 237 4 890595636 +353 316 5 891402757 +268 472 1 875743335 +232 474 5 888550036 +13 385 3 882397502 +308 660 3 887740410 +72 117 4 880035588 +60 234 4 883326463 +130 243 2 874953526 +262 815 2 879791216 +144 190 5 888105714 +393 1053 3 889730011 +406 527 4 879445599 +210 197 5 887736393 +210 300 4 887730066 +213 591 4 878955295 +239 89 4 889179253 +197 530 3 891410082 +236 549 4 890116628 +381 660 2 892696426 +389 498 5 880086918 +426 608 4 879444081 +18 151 3 880131804 +329 245 3 891656640 +416 107 5 893212929 +334 306 4 891544103 +198 527 4 884208061 +423 323 3 891395047 +181 459 1 878962349 +13 852 1 882396869 +246 628 1 884922554 +435 693 3 884131118 +239 488 5 889179033 +342 928 3 875318509 +278 306 5 891295043 +256 550 5 882164525 +393 591 5 887744372 +381 1400 3 892697394 +333 873 3 891045496 +13 238 3 881515411 +445 597 1 891200320 +429 431 5 882384870 +429 97 4 882386171 +178 619 3 888514710 +12 50 4 879959044 +283 209 4 879298271 +373 514 4 877098751 +79 1008 4 891271982 +348 1028 4 886523560 +15 933 1 879456447 +425 183 3 878738486 +63 306 3 875746948 +248 235 3 884536150 +394 181 4 880886796 +26 240 3 891377468 +151 484 4 879524563 +7 555 4 892134811 +222 81 1 878183565 +22 1001 1 878886647 +347 385 4 881654101 +198 228 3 884207206 +343 499 5 876405129 +10 483 5 877889333 +112 286 4 884992484 +44 21 2 878346789 +130 122 3 876251090 +1 190 5 875072125 +58 216 3 884305338 +141 1 3 884584753 +344 1165 1 886381986 +328 511 4 885045678 +406 181 5 879445859 +317 245 4 891446575 +393 303 4 891364609 +294 902 4 891404417 +445 195 2 890987655 +60 56 4 883326919 +226 209 3 883889146 +334 870 3 891545513 +401 196 5 891033497 +379 451 4 880525968 +182 222 3 885613180 +207 997 1 875508693 +397 324 2 882838749 +6 189 3 883601365 +241 887 4 887249685 +216 150 5 880232812 +126 1175 5 887856958 +222 300 5 877562795 +268 926 2 875743012 +256 368 1 882163778 +436 132 1 887769824 +343 69 5 876405735 +293 280 2 888905198 +378 471 3 880057018 +244 866 5 880605131 +378 1232 3 880333121 +435 756 3 884134134 +426 633 4 879444816 +338 603 5 879438690 +427 302 4 879700759 +407 157 2 875046752 +214 20 4 892668197 +416 1503 4 888702629 +74 121 4 888333428 +308 520 4 887738508 +121 508 4 891388333 +14 492 4 890881485 +81 544 2 876546272 +25 114 5 885852218 +308 58 3 887736459 +343 237 4 876402738 +346 455 3 874948889 +178 71 4 882826577 +320 403 4 884749281 +379 504 5 880526141 +342 1073 1 875320199 +250 69 5 878092059 +225 245 2 879539315 +244 52 4 880606476 +5 259 1 878844208 +133 304 3 890588639 +374 257 3 880393223 +372 12 4 876869730 +436 454 4 887768982 +194 941 2 879552569 +385 526 3 879445098 +396 106 4 884646537 +394 121 4 880888452 +195 271 4 879488450 +48 181 5 879434954 +63 225 2 875747439 +429 1113 3 882386711 +429 944 3 882387474 +329 12 4 891656178 +422 1017 4 875130063 +125 384 3 892838591 +412 4 3 879717253 +326 479 5 879875432 +242 1357 5 879741196 +312 156 3 891698224 +276 576 3 874792547 +293 206 4 888907552 +244 685 2 880604642 +351 750 5 883356810 +330 1044 5 876547575 +418 304 4 891282738 +392 1142 5 891038184 +257 405 3 882050397 +89 212 3 879459909 +387 444 4 886481800 +22 153 5 878886423 +416 819 3 888700844 +361 197 5 879440739 +242 237 4 879740594 +76 98 5 875028391 +193 210 4 889125755 +137 266 5 881432735 +10 56 5 877886598 +406 79 3 882480481 +7 604 3 891351547 +429 635 3 882387202 +417 725 4 880952970 +64 175 5 889739415 +430 527 4 877226209 +184 67 3 889912569 +342 179 5 874984175 +95 1018 3 879198946 +386 7 3 877655028 +221 24 5 875244352 +268 101 2 875542174 +109 215 3 880578598 +15 459 5 879455562 +425 825 2 878738643 +387 189 5 886483619 +268 1002 1 875743216 +224 1045 2 888082766 +125 94 5 892839065 +393 396 1 889730514 +330 588 5 876546033 +432 50 5 889416012 +230 140 3 880484320 +399 763 2 882340900 +417 195 5 879647380 +280 629 4 891701852 +233 923 4 877664010 +115 952 5 881170998 +282 879 2 879949504 +279 1312 3 890780962 +263 661 5 891298728 +442 54 3 883391274 +276 1220 4 874791048 +119 310 5 886175117 +73 318 4 888625934 +2 19 3 888550871 +97 192 1 884238778 +447 1034 2 878854918 +445 410 1 891200164 +268 238 3 875310352 +270 282 3 876954093 +227 25 4 879035535 +69 147 3 882072920 +411 196 4 892845804 +64 403 4 889739953 +421 915 4 892241252 +102 502 3 888803738 +153 510 3 881371198 +188 164 4 875072674 +87 161 5 879875893 +243 16 3 879987630 +320 895 4 884748346 +363 37 2 891498510 +197 550 3 891409981 +406 435 5 880131642 +110 11 4 886987922 +396 930 3 884646467 +438 1028 2 879868529 +13 783 3 886304188 +314 1032 4 877891603 +373 196 5 877098487 +43 271 3 880317103 +158 435 5 880134407 +357 713 5 878951576 +334 70 3 891546299 +151 702 3 879524849 +422 273 5 875129791 +313 604 4 891014552 +5 457 1 879198898 +373 651 4 877105075 +311 642 4 884365823 +429 693 4 882386628 +85 622 3 882995833 +277 93 4 879543972 +363 761 3 891498183 +313 155 2 891031577 +294 343 4 889241511 +20 568 4 879669291 +378 286 5 880043650 +216 200 5 880244802 +207 875 2 875718889 +328 690 3 885044418 +10 603 5 877886783 +281 682 3 881200519 +90 180 4 891384065 +311 41 3 884366439 +393 659 4 887746378 +11 726 3 891905515 +385 171 3 879750777 +387 48 4 886483753 +429 318 5 882387731 +339 159 3 891034681 +274 118 4 878945711 +334 708 4 891628833 +409 479 5 881106947 +268 122 2 875743310 +326 386 5 879877284 +178 16 4 882823905 +306 25 3 876504354 +395 365 5 883766403 +348 476 4 886523735 +269 194 5 891448951 +405 1029 1 885547735 +18 152 3 880130515 +279 434 4 892864609 +269 143 3 891450385 +271 430 5 885849419 +213 841 4 878871010 +294 1161 3 877819673 +276 423 5 874790926 +151 51 4 879543055 +343 194 5 876405200 +56 1092 3 892911573 +90 483 5 891384570 +406 209 1 880131608 +158 530 4 880134332 +181 1375 1 878962586 +381 100 4 892697442 +346 241 4 874948929 +275 627 3 875154718 +144 165 4 888105993 +380 181 3 885478391 +387 136 3 886480288 +256 685 5 882151576 +393 123 4 887744328 +92 248 4 886442565 +256 775 5 882165269 +422 926 2 875130100 +326 671 3 879876327 +271 265 5 885849275 +378 50 4 880045145 +308 966 3 887740500 +437 1262 3 881002091 +328 569 4 885049199 +207 100 2 875503786 +301 2 2 882076587 +435 746 4 884132184 +222 568 5 878183481 +56 169 4 892683248 +320 685 4 884748839 +334 1404 4 891549068 +442 98 4 883389983 +21 816 1 874951898 +7 496 5 891351083 +218 4 3 877488546 +393 394 5 889728627 +207 205 4 875991160 +279 638 4 875312441 +254 443 3 886473547 +178 696 4 882824869 +399 568 2 882345842 +25 432 2 885852443 +374 552 4 880938255 +200 1139 3 884130484 +160 7 3 876767822 +233 499 3 877664010 +387 441 1 886481800 +64 539 1 889737126 +186 226 5 879023664 +189 234 5 893265401 +296 309 1 884196209 +64 62 2 889740654 +435 115 4 884131771 +405 1248 1 885548633 +391 204 3 877399658 +425 38 3 878738757 +189 176 4 893265214 +379 196 4 880525062 +421 194 4 892241554 +86 288 3 879570218 +106 196 5 881450578 +297 201 4 875238984 +194 427 4 879521088 +449 971 4 880410701 +435 652 4 884131741 +74 324 3 888333280 +377 219 3 891299078 +57 456 3 883698083 +26 150 3 891350750 +90 83 5 891383687 +393 67 3 889730088 +393 756 4 887745258 +26 127 5 891386368 +354 483 4 891217298 +405 371 1 885549309 +447 121 5 878855107 +385 218 2 879447361 +435 141 2 884132898 +393 241 4 889554930 +301 194 4 882075827 +359 313 5 886453450 +296 268 4 884196238 +299 86 4 889502050 +328 579 3 885049836 +366 573 5 888858078 +59 274 1 888203449 +313 471 4 891015196 +292 408 4 881104068 +94 55 4 885873653 +429 1039 5 882386071 +250 688 2 878089182 +70 206 3 884067026 +203 304 3 880433445 +270 1471 4 876956264 +405 593 1 885549790 +346 265 4 874950794 +334 566 3 891548866 +363 809 4 891497712 +166 748 2 886397751 +249 28 4 879572106 +181 13 2 878962465 +292 125 2 881104401 +133 294 3 890588852 +329 483 4 891656347 +296 134 5 884197264 +328 199 4 885045528 +263 237 2 891300103 +135 265 3 879857797 +391 497 3 877399133 +42 118 4 881105505 +299 1132 1 877880196 +435 1028 2 884133284 +102 96 3 888801316 +22 154 4 878886423 +279 1501 1 889231898 +176 236 4 886048145 +109 295 4 880564707 +11 40 3 891905279 +325 197 4 891478199 +320 405 4 884748774 +348 100 4 886523207 +234 403 1 892335674 +21 291 3 874951446 +62 3 3 879372325 +381 77 2 892696367 +313 1050 4 891016826 +449 381 4 880410777 +389 1052 2 881384711 +328 164 3 885047484 +201 62 1 884310149 +158 516 5 880135044 +160 230 2 876860808 +92 845 3 886442565 +303 541 3 879543988 +321 607 4 879440109 +234 654 5 892333573 +81 98 5 876534854 +320 22 5 884749452 +246 55 4 884921948 +207 153 5 877750617 +202 286 1 879726342 +104 346 3 888442172 +233 423 4 877665239 +407 117 3 875550223 +408 748 5 889680073 +397 261 1 875063722 +28 665 3 881961782 +395 121 3 883765731 +136 515 5 882694387 +201 174 3 884112201 +82 405 3 876311423 +144 297 4 888104150 +305 175 4 886322893 +405 1435 1 885547735 +89 517 5 879459859 +394 508 4 880886978 +450 470 5 887139517 +256 1210 5 882164999 +99 748 4 885678436 +405 795 2 885547605 +346 967 2 874948426 +20 144 2 879669401 +38 550 2 892432786 +383 9 5 891192801 +262 393 2 879794140 +343 405 4 876403776 +308 618 4 887737955 +210 88 4 887737603 +264 175 5 886123472 +64 70 5 889739158 +293 53 3 888907891 +123 132 3 879872672 +1 100 5 878543541 +216 364 2 881721863 +312 611 5 891698764 +300 100 3 875650267 +417 32 2 879647924 +215 434 5 891435394 +13 349 1 892387807 +327 425 3 887822681 +450 783 3 882399818 +16 482 5 877718872 +25 633 4 885852301 +40 750 3 889041523 +254 258 4 887347560 +130 627 5 875801496 +338 516 5 879438366 +429 427 5 882385569 +437 173 4 881001023 +327 96 2 887822530 +279 721 5 875312719 +421 200 3 892241687 +177 470 5 880130951 +271 471 3 885847926 +91 515 5 891439090 +194 479 3 879521167 +265 300 5 875320024 +191 272 4 891560631 +21 258 4 874950889 +47 268 4 879439040 +85 451 4 882995934 +292 127 5 881104268 +435 217 4 884133161 +406 443 4 879792897 +354 1241 4 891216875 +115 9 5 881171982 +405 673 5 885545235 +312 183 5 891699182 +379 686 4 880525502 +267 67 3 878973088 +59 203 4 888204260 +194 660 3 879527421 +447 218 4 878856052 +378 896 4 889665232 +151 707 4 879528537 +416 479 5 893213917 +143 325 5 888407741 +429 109 3 882385034 +445 823 1 891200624 +69 508 4 882072920 +429 197 4 882384772 +276 977 2 874787090 +293 328 2 888904285 +347 73 2 881654773 +342 950 2 875318423 +303 755 2 879485016 +43 173 5 875981190 +389 29 2 880088659 +144 221 3 888104087 +85 479 4 879454951 +92 22 3 875653121 +158 117 3 880132719 +181 1395 1 878961847 +320 771 3 884751316 +125 208 3 879454244 +380 135 3 885479436 +321 100 4 879438882 +347 410 5 881653059 +357 237 5 878951217 +313 659 4 891013773 +114 482 4 881259839 +387 133 2 886480483 +327 423 3 887822752 +230 485 5 880484370 +42 72 3 881108229 +301 871 4 882075148 +181 952 1 878962720 +144 597 4 888104191 +406 99 5 879793081 +437 755 3 880143450 +420 283 5 891357162 +85 286 4 879452259 +90 652 4 891384611 +267 54 3 878973922 +342 122 4 875318783 +263 614 3 891298792 +49 1070 3 888068739 +198 33 3 884209291 +385 181 1 879439923 +276 774 2 877934722 +385 286 3 879438600 +47 323 2 879440360 +305 405 3 886324580 +141 322 4 884584426 +450 1147 4 882374497 +246 790 3 884923405 +50 325 1 877052400 +172 483 3 875538028 +412 135 4 879717621 +158 502 4 880135069 +72 230 1 880037277 +21 979 2 874951416 +341 288 4 890757686 +160 544 4 876768106 +157 147 5 886890342 +401 342 1 891031723 +181 879 2 878961542 +390 331 2 879693723 +373 494 4 877099178 +398 234 4 875659265 +145 477 2 888398069 +343 121 2 876407072 +64 214 3 889737478 +299 70 3 877881320 +234 208 4 892318002 +435 234 4 884132619 +405 1167 1 885547268 +336 153 5 877757669 +382 1142 3 875945451 +142 358 2 888640178 +363 218 2 891497174 +235 211 5 889655162 +405 396 1 885547408 +363 81 4 891496616 +60 606 4 883327201 +43 471 3 883955319 +437 86 4 881001715 +297 1014 3 874954845 +399 772 4 882343358 +311 576 3 884366269 +330 286 5 876543768 +305 201 3 886323998 +57 932 3 883697585 +208 208 4 883108360 +42 479 4 881108147 +320 276 2 884748579 +234 428 4 892334079 +214 187 4 891544070 +416 399 4 878879497 +85 237 3 879452769 +313 526 4 891028197 +387 561 3 886481800 +201 1008 3 884140891 +189 1117 5 893264678 +50 508 5 877052438 +303 1303 3 879543831 +59 564 2 888206605 +42 216 5 881108147 +423 258 5 891394747 +202 604 5 879727058 +42 1049 3 881105882 +178 196 4 882827834 +437 665 2 880143695 +437 239 4 880141529 +342 143 5 875318936 +245 50 4 888513664 +234 963 3 892078983 +407 200 4 875045685 +56 554 4 892679356 +6 506 4 883602174 +196 428 4 881251702 +263 163 5 891299697 +354 134 4 891217298 +95 591 5 880573287 +311 322 4 884364047 +326 98 5 879875112 +292 705 4 881105374 +318 138 4 884498115 +429 1136 4 882386532 +140 880 4 879013832 +134 751 5 891732335 +311 71 4 884364845 +342 13 3 874984480 +231 476 3 879966018 +326 969 4 879875151 +376 98 5 879454598 +346 405 3 886274098 +78 298 3 879633702 +311 420 1 884366334 +221 476 2 875244673 +356 892 1 891406241 +385 180 4 879442706 +26 294 3 891348192 +373 658 4 877105781 +417 226 3 879648096 +293 804 1 888907816 +417 636 3 879648435 +13 333 3 881514810 +435 386 4 884133584 +130 143 5 876251922 +374 405 4 880392992 +132 154 4 891278996 +332 95 5 888360060 +1 226 3 878543176 +70 191 3 884149340 +151 163 4 879542723 +345 325 1 884901497 +348 1120 3 886523387 +181 288 4 878961173 +276 409 3 874792310 +325 180 4 891478910 +239 954 5 889179253 +200 56 4 884128858 +325 525 5 891478579 +234 427 4 892078386 +151 356 2 879528852 +435 1217 3 884133819 +29 874 4 882821020 +393 1215 3 889731729 +416 1407 2 886320112 +94 17 2 891721494 +432 411 3 889416044 +405 1421 1 885546835 +56 728 3 892911420 +90 421 4 891383718 +95 229 3 879196408 +250 56 4 878090004 +42 95 5 881107220 +398 162 5 875811851 +193 56 1 889125572 +38 133 2 892429873 +331 11 2 877196702 +293 226 1 888906906 +29 302 4 882820663 +95 79 4 879196231 +194 568 2 879522819 +293 1042 3 888907575 +102 636 3 888801577 +405 1178 1 885547690 +174 768 1 886515569 +58 1103 5 884305150 +222 218 5 878182370 +426 614 4 879444604 +327 411 3 887818957 +186 300 5 879022858 +339 182 5 891033310 +21 148 1 874951482 +271 221 3 885847927 +445 628 1 891200137 +332 265 4 888360370 +72 51 4 880036946 +363 96 5 891494835 +6 269 4 883268222 +262 365 4 879793939 +22 194 5 878886607 +359 1 4 886453214 +446 332 3 879787149 +327 634 5 887820493 +59 209 5 888204965 +269 716 4 891451111 +58 311 4 890770101 +5 410 1 879198183 +213 238 5 878955635 +345 311 5 884900609 +303 765 3 879485608 +6 87 4 883602174 +405 1557 1 885547222 +103 69 3 880420585 +263 195 5 891299949 +118 421 4 875384946 +279 1247 2 875659924 +201 71 3 884111270 +174 216 5 886439516 +327 219 4 887746219 +145 195 5 882181728 +356 333 5 891405978 +31 79 2 881548082 +217 391 4 889070287 +234 1126 4 892079722 +314 1178 2 877892244 +85 418 3 879455197 +308 191 4 887736797 +130 385 5 875802080 +256 237 4 882150644 +417 563 2 879649560 +126 751 4 887853568 +301 631 1 882078882 +425 323 2 878737684 +81 756 1 876534097 +445 919 1 891200233 +151 1113 4 879542891 +342 1300 1 875318556 +399 389 3 882345078 +375 300 4 886621795 +181 284 2 878962996 +201 559 2 884112627 +128 284 3 879968663 +379 530 5 880525502 +435 252 2 884134677 +405 579 1 885547557 +437 197 5 880141962 +417 47 3 879648004 +276 8 4 874791623 +450 100 4 882374059 +114 100 5 881259927 +308 484 3 887736998 +45 1060 3 881012184 +193 147 2 890860290 +235 652 4 889655403 +293 710 3 888907145 +388 117 5 886436756 +10 127 5 877886661 +260 313 5 890618198 +198 154 4 884208098 +5 369 1 875635372 +449 291 2 879959246 +183 54 2 891467546 +268 55 4 875309998 +262 200 3 879794918 +293 1017 3 888904862 +95 1090 1 888956869 +161 187 3 891170998 +405 386 3 885547605 +18 432 4 880131559 +232 493 4 888549622 +246 3 2 884923390 +342 1009 1 874984596 +181 984 1 878961781 +1 243 1 875241390 +429 967 4 882386378 +106 684 4 881452763 +161 508 2 891171657 +374 150 4 882156767 +280 476 5 891702544 +102 930 2 888802677 +181 1333 1 878962120 +256 473 5 882151088 +224 962 2 888082584 +157 1258 5 886891132 +47 306 4 879439113 +144 531 5 888105473 +22 195 4 878887810 +222 127 5 881059039 +396 328 4 884645813 +59 101 5 888206605 +327 265 2 887818511 +156 11 2 888185906 +65 7 1 879217290 +320 161 4 884749360 +13 874 5 881514876 +59 33 3 888205265 +194 482 3 879521088 +263 528 4 891298854 +114 640 2 881260303 +130 717 3 874953928 +144 707 3 888106322 +119 40 4 886176993 +342 762 2 874984914 +436 133 3 887768982 +290 210 5 880474716 +417 29 2 880952218 +234 1078 2 892336322 +217 121 1 889069944 +439 125 3 882893688 +404 313 5 883790181 +94 541 3 891723525 +62 514 3 879374813 +44 412 1 883613298 +178 214 1 882827985 +62 216 4 879375414 +13 821 3 882141393 +223 300 3 891548712 +417 544 3 879646661 +181 873 1 878961542 +270 176 4 876955976 +425 475 5 878737945 +221 3 4 875244901 +59 427 5 888204309 +109 162 2 880578358 +82 8 4 878769292 +224 162 4 888103611 +150 410 4 878747090 +178 258 4 882823353 +109 546 3 880571979 +291 384 4 875086562 +291 24 5 874834481 +222 373 3 881060659 +10 133 5 877891904 +269 998 5 891451548 +108 14 5 879879720 +378 449 3 880333195 +405 510 1 885545975 +90 904 3 891382121 +89 268 5 879461219 +159 310 5 880989865 +450 58 3 882373464 +429 744 4 882386485 +315 31 3 879821300 +100 313 5 891374706 +393 55 4 889727862 +197 313 4 891409160 +314 795 4 877889834 +387 202 3 886482695 +85 420 4 880838337 +13 682 1 883670742 +290 588 4 880474652 +244 1209 3 880608315 +18 923 5 880132501 +130 44 4 875801662 +405 467 4 885545200 +330 22 5 876545532 +450 142 5 887835352 +315 194 4 879820961 +6 318 4 883600985 +178 597 4 882824869 +407 493 3 875552496 +325 286 4 891477597 +41 209 4 890687642 +181 308 1 878961847 +214 346 3 891542735 +342 134 4 875318936 +339 258 3 891033200 +405 765 1 885547735 +431 748 4 877844377 +379 2 3 880525540 +430 656 4 877226365 +63 126 3 875747556 +271 70 5 885849164 +406 40 3 880131875 +329 288 2 891655191 +425 172 5 878738385 +276 697 2 874791316 +295 1039 4 879517742 +57 321 4 883696629 +350 286 5 882345337 +413 628 4 879969791 +95 43 2 880572356 +24 9 5 875323745 +395 892 3 883762681 +150 278 2 878746889 +428 332 4 885943749 +393 27 4 889555050 +450 801 4 882469863 +115 431 4 881171558 +326 530 5 879875778 +270 237 1 876954484 +391 286 4 877398517 +442 554 2 883390641 +326 1231 3 879877039 +161 191 2 891171734 +19 258 4 885411840 +64 385 4 879365558 +15 411 2 879456351 +326 527 5 879874989 +249 168 4 879572370 +13 449 4 882398385 +445 204 3 890988205 +445 1591 4 891199360 +165 91 4 879525756 +367 452 4 876690120 +342 772 1 875319597 +328 639 2 885048730 +115 50 5 881172049 +299 276 4 877877691 +450 216 5 882373657 +326 197 1 879875723 +158 186 3 880134913 +354 651 3 891217693 +271 882 3 885844547 +327 13 2 887746665 +450 785 3 882395537 +401 100 4 891032170 +158 239 3 880135093 +426 211 4 879444320 +450 162 5 882395913 +405 1562 1 885549506 +293 649 4 888906726 +268 194 4 875310352 +334 476 3 891545540 +239 663 5 889180617 +418 269 5 891282765 +226 258 5 883888671 +384 343 3 891273716 +447 70 3 878856483 +405 768 3 885548932 +103 234 3 880420353 +389 136 4 880087671 +395 255 3 883765731 +450 144 5 882373865 +193 307 4 889123316 +313 586 2 891028426 +216 168 4 880234680 +303 248 2 879544680 +268 40 3 875743708 +308 154 4 887738152 +269 741 5 891457067 +181 337 1 878961709 +406 410 4 879540026 +145 301 4 877342952 +392 166 5 891038466 +416 975 2 878879391 +56 7 5 892679439 +365 742 3 891304039 +34 329 5 888602808 +311 1035 4 884365954 +21 396 2 874951798 +18 514 5 880129990 +389 756 2 880088942 +82 294 4 878768327 +363 741 3 891495338 +293 426 1 888907291 +122 382 3 879270711 +407 222 4 884197027 +145 258 4 875269755 +206 690 2 888179694 +151 461 4 879524738 +87 1184 3 879876074 +450 462 4 882396928 +60 417 4 883327175 +425 83 2 891986445 +87 702 3 879876917 +82 289 1 884713642 +117 25 4 881009470 +342 508 3 874984810 +144 750 4 888103444 +276 562 3 889174870 +382 137 2 875946029 +349 1117 3 879466366 +62 462 2 879373737 +363 792 4 891495918 +43 285 4 875975468 +299 954 3 889503503 +431 538 4 881127620 +339 1244 4 891036423 +367 219 4 876690098 +268 198 4 875309232 +183 257 2 891464558 +425 250 4 878739054 +198 218 3 884209412 +299 52 4 877880962 +243 83 4 879988184 +192 277 3 881367932 +64 230 5 889739994 +278 294 4 891295230 +291 729 4 874871442 +387 294 2 886484413 +445 408 3 891199749 +13 828 1 882399218 +379 199 4 880524860 +425 313 1 890346317 +163 347 4 891219976 +297 326 2 874953892 +186 299 3 879720962 +425 56 5 878737945 +363 215 3 891496306 +6 276 2 883599134 +85 216 3 879454500 +15 744 4 879455789 +429 1296 2 882387392 +407 238 5 875042378 +385 29 1 879447845 +354 197 4 891217512 +249 83 5 879640977 +405 1175 1 885549904 +280 431 4 891701531 +409 965 2 881108777 +402 235 3 876267014 +373 82 1 877099317 +204 304 3 892389328 +363 461 3 891495711 +184 9 5 889907685 +13 787 3 882141582 +174 56 5 886452583 +119 741 4 874774815 +18 487 4 880129454 +432 274 3 889416229 +207 628 3 876018608 +307 195 3 879205470 +280 153 5 891700681 +294 825 3 877820272 +114 210 3 881309511 +59 582 4 888205300 +416 405 5 893213645 +303 158 3 879543959 +167 568 3 892738341 +449 137 5 879958866 +245 240 1 888513860 +286 824 1 876522200 +286 421 1 889651848 +155 292 3 879371061 +450 384 3 882471524 +416 842 4 886317350 +86 289 3 879570366 +13 450 3 882398494 +135 943 3 879857931 +301 222 4 882074345 +234 588 3 892335541 +102 79 2 888801316 +416 568 4 878879861 +280 977 3 891701723 +294 358 2 877818861 +59 764 4 888203709 +201 413 3 884114505 +374 1 4 880392992 +43 409 3 884029493 +450 739 4 887660650 +10 98 4 877889261 +200 125 5 876041895 +152 483 5 882474435 +11 94 3 891905324 +318 708 4 884497994 +18 234 3 880131106 +267 168 4 878971716 +158 410 3 880132794 +297 435 3 875238726 +13 839 1 882396984 +105 752 3 889214406 +330 174 5 876546172 +280 274 5 891701188 +185 515 4 883525255 +64 154 4 889737943 +267 172 5 878974783 +395 924 4 883765156 +263 168 5 891299949 +256 476 4 882152914 +311 1479 3 884365824 +60 77 4 883327040 +345 71 3 884992922 +128 282 3 879967550 +286 275 4 875807074 +344 472 3 884899837 +184 515 5 889907599 +7 480 4 891352093 +151 432 5 879524610 +42 230 5 881109148 +429 423 4 882387757 +123 482 4 879872406 +422 276 5 875129791 +305 246 3 886322122 +451 289 1 879012510 +21 741 3 874951382 +109 58 4 880572950 +92 28 3 875653050 +6 534 4 883599354 +1 154 5 878543541 +352 568 5 884290328 +138 318 5 879024183 +393 38 4 889731010 +7 307 5 891350703 +214 246 2 891542968 +230 228 2 880485216 +450 1269 4 882812635 +262 111 4 879962292 +1 214 4 875072520 +43 628 3 875975580 +204 1281 2 892513979 +5 435 4 875636033 +11 730 3 891904335 +194 692 2 879524215 +437 640 1 881002300 +184 143 3 889908903 +409 187 3 881108126 +385 922 4 881569749 +223 1197 3 891549570 +181 261 1 878961814 +322 272 4 887313698 +419 173 5 879435628 +224 196 4 888103532 +44 229 3 883613334 +291 244 2 874805927 +95 328 5 888953921 +378 241 4 880057137 +70 511 5 884067855 +271 516 4 885849447 +221 258 1 875247297 +299 543 5 889501890 +417 207 4 879647580 +379 1206 2 880961672 +351 754 5 883356614 +42 410 3 881110483 +312 4 3 891698832 +303 358 2 879466291 +244 301 2 880601905 +311 751 3 884363758 +252 7 4 891455743 +242 306 5 879741340 +442 14 1 883389776 +214 269 3 891542735 +343 961 4 876404688 +83 471 3 891182000 +295 435 5 879519556 +219 568 1 889452455 +95 241 3 879196408 +325 47 3 891478712 +435 4 4 884132146 +22 411 1 878887277 +46 909 5 883614766 +323 1050 5 878739988 +59 204 5 888205615 +406 1010 4 879539929 +224 727 4 888082682 +106 699 4 881451421 +200 755 5 884129729 +376 274 3 879459115 +380 1 4 885478218 +74 124 3 888333542 +74 333 4 888333238 +452 25 2 875559910 +313 946 3 891030228 +339 192 5 891032438 +382 9 4 875946830 +234 284 3 892335460 +222 591 4 878181869 +387 210 4 886482928 +313 550 4 891028323 +229 312 3 891632551 +113 678 2 875076044 +305 423 4 886322670 +442 39 3 883390466 +90 143 5 891383204 +234 194 5 892333653 +256 724 4 882165103 +94 768 3 891722609 +144 1285 3 888105922 +236 195 2 890118507 +3 264 2 889237297 +417 11 5 879646938 +93 477 5 888705053 +411 168 5 892845604 +405 1180 1 885547605 +425 429 4 878737908 +375 218 3 886622024 +429 133 3 882385663 +405 511 2 885546112 +214 509 4 892668197 +207 265 3 877846793 +389 1074 2 880613841 +271 117 3 886106003 +215 357 4 891435573 +18 705 3 880130640 +344 896 4 884814359 +433 173 4 880585730 +450 179 5 882394364 +27 295 3 891543164 +437 584 3 880141243 +327 589 3 887743936 +314 327 4 877886099 +119 977 3 874780969 +231 924 5 888605273 +450 38 4 882474001 +429 321 3 882384438 +95 191 5 879198161 +258 748 5 885701004 +279 1007 4 879572694 +338 212 4 879438597 +406 188 4 882480772 +177 294 4 880130481 +235 1119 3 889655550 +114 96 3 881259955 +181 268 1 878961749 +399 1220 2 882343389 +222 833 2 877563913 +269 216 1 891449691 +301 252 3 882075148 +370 257 5 879434468 +417 541 2 879649389 +442 229 3 883391275 +116 137 2 876454308 +42 413 1 881106072 +311 785 3 884366010 +46 538 3 883611513 +361 156 4 879441252 +59 513 4 888205144 +276 569 4 874791169 +148 713 3 877021535 +28 70 4 881961311 +325 234 3 891478796 +62 229 3 879375977 +178 241 5 882827375 +409 684 4 881109420 +280 73 3 891700715 +38 424 3 892432624 +339 603 5 891032542 +319 880 4 889816332 +359 405 3 886453354 +406 50 5 879445897 +405 1004 1 885546577 +23 710 4 874785889 +184 423 4 889909409 +114 186 3 881260352 +62 270 2 879371909 +416 92 3 878880244 +416 833 3 888700719 +90 318 5 891383350 +437 418 3 880141084 +406 826 3 879540275 +379 448 4 880741811 +340 71 5 884990891 +417 98 5 879647040 +174 272 5 886432770 +62 228 3 879374607 +447 69 4 878856209 +13 596 3 882398691 +85 163 3 882813312 +158 184 3 880134407 +59 183 5 888204802 +317 268 3 891446371 +399 42 2 882510250 +207 986 3 877878384 +279 1011 3 875298314 +442 452 3 883390169 +115 178 5 881172246 +236 443 4 890116709 +90 202 3 891385298 +347 827 1 881653266 +305 98 4 886322560 +449 286 4 879958444 +141 300 5 887424721 +97 32 5 884239791 +407 1028 3 876348832 +90 879 3 891382542 +102 444 1 888803245 +174 1139 2 886514651 +198 183 5 884207654 +126 260 1 887855173 +230 926 3 880485489 +141 106 5 884585195 +416 941 3 876699946 +342 23 5 874984154 +207 154 2 878088217 +194 192 5 879521253 +371 98 5 877487213 +303 820 3 879544184 +423 1134 4 891395684 +389 159 2 880088330 +332 127 5 887916653 +38 88 5 892430695 +297 137 5 874954425 +409 491 2 881109019 +328 470 4 885046537 +122 46 5 879270567 +201 39 1 884112427 +387 52 5 886483497 +60 529 4 883326862 +10 1 4 877888877 +254 211 3 886472089 +381 30 4 892697174 +217 1228 2 889070050 +322 591 3 887313984 +221 461 4 875245574 +367 258 4 876689364 +429 710 4 882387731 +28 436 5 881961601 +388 310 5 886438540 +110 748 3 886987478 +331 947 5 877196308 +87 118 4 879876162 +435 675 3 884132873 +297 687 2 875409099 +85 215 4 879829438 +207 1147 4 879665042 +280 135 4 891700552 +330 66 5 876547533 +93 815 4 888705761 +429 273 4 882385489 +108 137 5 879879941 +416 41 3 886319177 +280 132 4 891701090 +7 176 3 891350782 +301 199 4 882076239 +361 934 3 879440974 +119 845 4 886176922 +393 747 4 889727969 +392 1160 2 891038137 +407 478 4 875042642 +308 74 4 887740184 +375 77 4 886622024 +452 523 2 887889774 +58 408 5 884304377 +394 217 5 880888972 +13 604 5 882139966 +379 239 4 880961874 +318 229 1 884497318 +62 168 5 879373711 +410 286 4 888627138 +291 181 5 874805804 +330 419 5 876546298 +254 132 4 886472022 +387 2 4 886483195 +429 1425 3 882387633 +413 260 1 879969148 +425 759 2 878738290 +234 927 4 892334267 +234 673 4 892334189 +333 315 5 891044095 +82 199 4 878769888 +416 51 5 893212895 +13 589 3 881515239 +244 145 3 880608842 +345 846 4 884991348 +379 83 4 880525002 +454 493 2 888267617 +5 214 3 875637485 +325 526 3 891478239 +194 1093 3 879540807 +366 7 2 888857598 +13 481 3 882140038 +409 381 2 881108364 +290 449 1 880473557 +161 276 5 891170881 +338 132 2 879438143 +291 92 4 874835091 +416 506 5 893214041 +305 856 5 886323839 +416 284 4 893142144 +270 740 5 876954062 +453 1032 1 877561911 +130 268 4 875801210 +451 269 2 879012647 +167 204 4 892738384 +389 275 5 879915860 +311 44 3 884365168 +168 619 3 884287536 +253 89 4 891628451 +16 357 5 877720297 +264 654 5 886122508 +10 652 3 877889130 +454 1063 4 881960029 +414 100 5 884999439 +225 22 5 879540678 +389 71 4 880088091 +158 148 4 880132613 +95 286 5 879193353 +435 628 5 884132990 +7 418 4 892131824 +125 283 5 879454986 +100 292 2 891375146 +85 984 2 884906441 +413 301 3 879968794 +246 232 3 884923073 +347 475 4 881652417 +409 937 2 881104966 +323 243 1 878738997 +6 524 3 883600632 +414 264 3 884998993 +207 866 3 876079054 +207 978 3 877878883 +13 477 4 882398934 +453 421 4 888203015 +429 144 4 882387773 +429 499 4 882384896 +134 15 5 891732726 +239 207 5 889180578 +118 134 5 875384916 +216 9 4 880232637 +385 794 2 879448181 +128 763 4 879968718 +208 367 2 883108324 +295 115 5 879517135 +276 578 4 888873675 +249 249 4 879571752 +299 59 5 877880394 +59 732 3 888205370 +151 189 5 879528495 +378 405 3 880044489 +398 1450 5 875717717 +97 661 5 884238817 +323 875 3 878739029 +450 659 5 882374217 +380 474 4 885478558 +189 127 4 893263994 +117 257 5 880125911 +198 381 3 884208273 +435 273 5 884131298 +409 654 3 881107697 +128 614 3 879967879 +14 716 5 879119651 +95 716 3 879198109 +409 154 5 881108648 +450 252 3 887834953 +338 170 5 879438301 +201 655 4 884112800 +382 481 5 875947078 +174 138 1 891551778 +85 317 3 882995577 +82 481 5 878769262 +295 290 4 879518630 +407 161 2 876338279 +222 159 3 878181457 +194 780 2 879527865 +271 423 4 885848802 +3 349 3 889237269 +417 425 4 879648132 +75 742 1 884050590 +94 696 4 891724381 +320 1 3 884748604 +14 283 4 882839936 +450 1160 5 886612330 +314 1165 2 877892566 +268 800 1 875744501 +229 340 4 891632142 +197 259 1 891409422 +268 38 1 875744228 +42 77 5 881108684 +130 41 3 875801662 +412 173 5 879717649 +222 281 3 878184596 +248 405 4 884536165 +264 179 5 886122031 +435 760 1 884133330 +307 214 5 879283091 +118 217 3 875385257 +355 307 4 879486422 +445 123 1 891200137 +394 559 4 880888746 +83 35 1 886534501 +406 942 4 882480890 +373 1079 4 877100061 +429 455 3 882386628 +200 420 5 884129837 +405 530 1 885547953 +20 98 3 879669547 +24 358 3 875246012 +301 737 2 882078906 +366 56 5 888857750 +198 559 3 884208739 +16 629 4 877720437 +268 233 3 875310412 +432 546 3 889416657 +407 68 4 875045269 +41 181 4 890687175 +269 396 4 891451856 +246 930 2 884924764 +429 162 4 882386378 +405 652 1 885547360 +1 161 4 875072303 +56 164 4 892910604 +392 129 4 891038945 +181 472 1 878963380 +7 541 2 891354662 +214 324 5 892668173 +154 708 4 879139003 +327 313 4 887744167 +293 1226 3 888905198 +45 108 4 881014620 +178 458 3 882824467 +303 452 2 879544276 +119 717 3 874775945 +361 513 5 879441215 +298 596 3 884126288 +70 69 4 884065733 +151 420 5 879524760 +292 135 4 881105701 +416 71 4 876699994 +451 323 4 879012510 +393 725 2 889731501 +450 566 4 882373928 +197 665 4 891410124 +181 985 1 878962465 +378 921 4 880056667 +185 447 4 883526268 +130 230 3 876251895 +374 1042 5 880937920 +347 959 5 881654545 +237 185 4 879376773 +82 240 1 884714385 +387 69 3 886480413 +22 168 5 878886517 +145 933 1 875270276 +104 713 3 888465491 +267 294 3 878970155 +222 261 1 878181251 +262 923 4 879962542 +43 215 5 883955467 +275 451 3 880315170 +303 152 4 879468274 +144 160 2 888106181 +391 238 5 877399659 +452 1109 2 875273609 +330 77 4 876547220 +197 323 3 891409422 +409 181 4 881109019 +442 559 2 883390048 +210 179 3 887736429 +453 125 3 877561349 +184 517 4 889909409 +381 135 5 892697150 +447 823 3 878855165 +454 182 3 888266685 +16 195 5 877720298 +447 544 4 878854997 +233 56 5 877661776 +345 312 3 884900709 +405 1550 3 885547691 +301 831 4 882075338 +451 882 1 879012812 +5 364 1 875636571 +325 100 4 891478504 +345 972 4 884993464 +454 418 3 888267128 +328 474 4 885046455 +234 472 2 891228099 +450 496 5 882373532 +407 82 3 876341409 +374 230 5 880396622 +158 204 4 880135001 +286 949 4 877534859 +243 778 4 879988663 +305 527 5 886323189 +38 234 5 892431607 +393 100 1 887744053 +82 1164 2 878768790 +13 516 5 882141485 +325 507 3 891478455 +387 83 4 886480244 +286 423 4 877532385 +276 803 2 874791487 +312 968 5 891698987 +417 1039 3 879647196 +145 1002 1 888398400 +87 201 2 879876673 +332 120 4 887938818 +161 135 2 891170656 +450 679 1 882374422 +341 887 5 890757745 +56 77 3 892679333 +343 921 4 876406640 +365 948 1 891303809 +325 99 5 891479244 +168 742 5 884287362 +64 232 2 889740154 +185 275 4 883524320 +293 653 5 888906119 +216 652 4 880235546 +293 637 3 888907186 +269 176 2 891448980 +1 62 3 878542282 +275 946 3 875154535 +393 840 4 887744658 +337 1016 4 875184825 +253 79 5 891628518 +198 174 5 884208326 +450 387 5 882376446 +234 848 3 892334577 +174 347 4 886432844 +96 1154 5 884403993 +279 616 3 890451408 +156 48 4 888185777 +437 1113 4 881002161 +394 552 3 881060176 +295 395 4 879519501 +327 226 3 887820341 +318 517 3 884496069 +393 148 4 887744419 +332 53 3 888360438 +393 41 4 889728736 +44 147 4 878341343 +405 522 1 885545975 +154 527 4 879139040 +312 179 5 891698793 +26 13 3 891373086 +85 511 4 879454112 +234 1459 3 892335261 +436 658 5 887769673 +125 568 5 879454277 +429 219 4 882386848 +389 4 4 879991352 +453 98 4 877554396 +271 272 3 885844583 +234 751 2 891033394 +238 258 3 883575728 +371 79 5 880435519 +303 759 1 879544385 +263 188 5 891299031 +416 117 5 893212930 +354 52 5 891217547 +22 204 5 878886607 +198 1094 1 884206807 +452 152 2 875264826 +344 251 5 889814518 +435 160 5 884133194 +455 135 5 879111248 +195 55 4 888737417 +233 515 5 875508080 +174 597 3 886434261 +450 908 1 885945114 +65 429 4 879216605 +198 501 4 884209264 +417 628 3 879646413 +360 269 4 880353525 +261 1237 3 890454045 +416 1092 3 886320054 +347 25 2 881652684 +196 1118 4 881252128 +39 300 3 891400280 +405 1424 1 885546725 +438 15 4 879868242 +444 50 5 890247287 +49 100 4 888067307 +277 274 4 879543902 +125 88 5 879455184 +344 486 4 884901156 +334 628 4 891544867 +90 45 3 891385039 +280 655 3 891700400 +89 952 2 879441400 +346 186 3 874948303 +195 132 5 875771441 +399 274 3 882512167 +160 218 4 876861878 +193 260 1 889123777 +344 255 4 889814555 +17 744 3 885272606 +311 265 5 884364812 +160 603 4 876861754 +175 132 3 877107712 +413 7 3 879969614 +43 56 5 875975687 +396 986 4 884646537 +120 148 3 889490499 +379 4 5 880525598 +190 895 3 891033327 +99 978 3 885679382 +429 467 4 882385210 +193 352 1 889123777 +269 498 4 891448926 +435 188 4 884131901 +174 122 1 886434421 +13 109 4 882141306 +13 431 1 882397271 +116 730 4 876453519 +445 12 2 890987617 +314 781 3 877891937 +318 697 5 884496008 +58 13 3 884304503 +354 136 5 891217717 +158 235 1 880132794 +87 628 4 879877709 +294 749 3 877818915 +26 742 3 891352492 +378 12 5 880046132 +334 135 4 891545793 +279 40 4 875306910 +366 184 4 888857866 +406 1267 3 882480710 +255 441 2 883216544 +450 265 5 882371526 +232 919 3 888550036 +246 176 4 884921613 +361 435 5 879440345 +412 634 5 879716918 +449 1009 4 879959190 +450 1226 4 887660820 +64 311 2 889737269 +216 928 3 880233026 +265 591 5 875320424 +30 7 4 875140648 +429 410 4 882387451 +64 4 3 889739138 +403 258 4 879785703 +445 763 2 891200233 +269 597 1 891450978 +417 614 3 879648156 +301 179 3 882076494 +234 651 4 892078485 +104 331 3 888442140 +406 732 4 880131666 +206 309 2 888179647 +167 235 3 892737972 +70 625 3 884151316 +4 354 5 892002353 +330 161 4 876545999 +95 443 3 879198747 +181 841 1 878963204 +417 127 4 879646144 +454 633 2 881959745 +389 699 5 880088038 +158 154 4 880135069 +405 217 1 885548385 +157 268 5 886889729 +102 363 2 888801622 +327 1131 4 887822736 +379 23 4 880524783 +276 876 3 885537717 +200 140 4 884129962 +454 181 3 881959187 +308 226 3 887740833 +79 1017 3 891271697 +99 406 3 885679353 +292 190 5 881105625 +160 1 4 876768025 +296 652 4 884197068 +89 815 4 879441637 +299 175 5 879123190 +92 1012 4 886443231 +361 654 4 879441253 +303 1187 4 879467895 +416 959 5 893213404 +227 1017 4 879035464 +64 52 3 889739625 +435 554 3 884133194 +296 89 5 884197352 +303 229 3 879468581 +228 272 5 889388440 +319 333 4 875707746 +94 161 3 891721439 +321 14 3 879438825 +448 1294 1 891887161 +452 495 4 875560508 +267 80 4 878973597 +92 802 2 875907134 +337 121 5 875185664 +102 720 2 888801812 +279 273 2 880869018 +450 183 4 882394180 +310 222 3 879436062 +154 479 4 879138831 +83 405 5 887665423 +43 732 4 883955498 +268 97 4 875310031 +92 410 3 875640583 +43 77 3 883955650 +407 476 2 884203501 +234 1456 4 892335142 +164 237 2 889401816 +330 527 3 876546071 +373 709 5 877105451 +271 644 3 885848916 +130 295 3 874953698 +193 928 2 889126609 +160 50 4 876767572 +439 14 5 882893245 +307 186 5 879283625 +432 1047 5 889416118 +416 332 4 876696823 +145 739 2 875272927 +429 1224 2 882387114 +75 411 5 884050760 +405 88 3 885547360 +445 1245 1 891200390 +363 91 4 891495238 +436 433 5 887770428 +393 831 1 887745454 +173 879 5 877557076 +382 639 3 875946881 +336 1098 3 877757790 +416 64 5 893212929 +26 1008 3 891377609 +380 483 4 885478668 +436 1206 3 887769868 +303 809 2 879543524 +246 743 1 884924780 +73 518 5 888625835 +389 1518 2 880165787 +48 71 3 879434850 +334 319 3 891544233 +406 164 5 882480748 +267 228 5 878972434 +18 527 4 880130109 +314 739 5 877889861 +385 942 2 879446208 +246 265 4 884921411 +130 1273 2 880396792 +330 95 5 876546105 +5 209 5 875636571 +297 70 5 875239619 +87 120 2 879877173 +178 895 3 884836516 +332 684 5 888360370 +321 730 3 879439179 +437 451 5 880143115 +320 62 4 884749306 +447 148 4 878854729 +401 70 4 891033625 +251 288 4 886271541 +110 1188 4 886988818 +314 409 4 877889480 +94 1147 4 886008354 +436 503 4 887769802 +347 241 3 881654386 +452 134 3 875265446 +396 1 4 884646346 +130 202 5 875216507 +423 269 3 891394558 +276 581 4 886483710 +222 222 4 877563462 +280 288 5 891700184 +244 566 4 880607489 +295 371 4 879518257 +423 15 4 891395573 +168 259 2 884287073 +205 328 3 888284454 +183 294 3 891467280 +167 949 1 892738341 +452 736 3 887890174 +193 327 1 889123777 +349 288 3 879466118 +391 748 3 877398619 +398 58 4 875717106 +140 872 3 879013651 +440 886 5 891550404 +374 369 1 880393864 +320 38 4 884751288 +244 40 2 880608016 +308 686 4 887739831 +224 686 4 888104030 +397 327 2 875063649 +271 312 2 885847280 +11 51 4 891906439 +344 535 3 889814539 +109 1023 2 880572350 +199 989 1 883782509 +43 950 3 883956417 +181 147 1 878963168 +258 690 4 885700811 +450 1037 2 882473760 +60 478 3 883326463 +85 1131 4 879454111 +62 763 1 879372851 +362 294 3 885019357 +326 525 5 879874989 +176 270 4 886047069 +81 222 2 876533619 +95 560 1 880572166 +21 327 3 874950932 +416 174 5 893213917 +397 183 4 885349348 +129 288 1 883245452 +354 211 2 891306946 +409 203 5 881107539 +119 282 5 874775136 +224 1441 3 888104522 +301 743 2 882075356 +350 604 5 882346086 +325 133 3 891478333 +121 275 4 891390233 +396 977 3 884646468 +211 228 3 879460096 +52 742 4 882922540 +313 66 1 891015049 +448 360 4 891887338 +269 568 2 891450719 +326 603 4 879875203 +13 878 1 883670785 +286 91 4 877532470 +254 561 3 886475446 +392 8 5 891039049 +92 412 2 875640609 +392 511 5 891038945 +417 545 1 880953033 +401 65 4 891033250 +385 403 3 879447181 +214 185 5 892668173 +416 301 5 893213796 +87 4 5 879876524 +311 604 3 884364570 +210 127 5 887731230 +303 1210 1 879543773 +387 458 1 886481183 +354 740 4 891216692 +90 33 4 891383600 +144 942 4 888106044 +422 379 2 879744218 +26 926 2 891385692 +425 281 2 878738486 +130 68 5 875216283 +71 154 3 877319610 +407 746 4 875046268 +423 348 3 891394910 +374 717 3 880938255 +119 1261 4 874781198 +345 476 3 884991505 +43 879 4 876159838 +239 736 5 889179291 +145 431 5 875272132 +276 124 5 880913800 +68 125 1 876974096 +109 214 1 880577604 +347 127 5 881652434 +387 39 3 886483049 +125 1060 4 879454699 +393 54 4 889555050 +377 164 4 891299009 +265 934 3 875320574 +222 70 3 878181804 +258 289 2 885701004 +115 77 2 881171623 +405 318 5 885545167 +299 56 4 877880350 +405 670 1 885548384 +221 403 4 875245374 +211 69 3 879460213 +313 403 3 891028285 +398 65 3 875743739 +385 523 4 879441454 +299 170 5 889501190 +232 270 3 880062259 +130 721 3 880396278 +92 455 2 876769302 +326 48 3 879875533 +437 696 3 880142991 +395 64 5 883763958 +224 11 3 888082468 +200 393 4 884129410 +56 372 3 892911290 +354 584 5 891217782 +453 248 4 887942143 +27 325 2 891543191 +287 340 5 888177097 +115 269 3 881169559 +379 157 4 880961600 +334 449 3 891549539 +363 554 1 891498012 +106 956 3 881453290 +194 180 3 879521657 +72 38 3 880037307 +194 951 3 879525761 +181 278 2 878963440 +49 413 1 888067460 +357 977 5 878952287 +408 258 3 889679857 +92 209 5 875652934 +348 1061 5 886523790 +442 41 4 883388609 +194 64 5 879521936 +61 347 5 892302120 +48 228 3 879434792 +399 475 5 882340827 +58 89 3 884305220 +43 155 4 883956518 +455 629 3 879111371 +374 310 5 880392237 +115 22 3 881171273 +18 961 3 880131830 +409 87 3 881108777 +389 142 3 880088878 +11 191 4 891904270 +26 1009 2 891384478 +387 203 4 886483330 +236 69 5 890116426 +130 564 4 875802137 +244 739 3 880604004 +416 266 3 876696853 +193 194 4 889125006 +119 1160 5 887038711 +290 742 2 880475310 +307 82 4 875645340 +189 820 1 893264782 +391 127 5 877399236 +318 792 2 884496218 +342 815 4 875318629 +373 100 3 877100199 +326 86 2 879875644 +312 204 4 891698254 +314 88 5 877888007 +308 284 4 887741554 +269 1154 3 891449608 +374 168 1 880434231 +167 719 1 892738341 +81 147 4 876533389 +94 92 4 891721142 +82 513 4 878769334 +422 200 5 879744015 +303 268 5 879466166 +322 514 4 887314352 +213 100 5 878870749 +148 588 4 877399018 +270 181 4 876954036 +230 70 4 880484637 +85 95 4 879455114 +253 333 2 891628883 +251 252 3 886272456 +16 496 5 877721905 +373 559 3 877106305 +442 578 2 883390466 +5 391 4 875636167 +301 176 4 882075774 +344 295 3 889814571 +49 268 3 888065620 +255 234 5 883216448 +151 729 4 879542492 +23 50 4 874784440 +160 1073 4 876859778 +273 305 4 891292905 +7 653 4 891351161 +374 544 1 880937070 +58 120 2 892242765 +405 28 4 885544947 +271 485 4 885848827 +301 443 4 882078008 +394 228 5 881132876 +313 516 4 891028829 +262 1048 2 879791335 +326 615 4 879875724 +338 435 4 879438597 +160 1016 4 876767440 +299 607 4 877881229 +256 1090 2 882164999 +145 620 3 875271660 +391 507 4 877399512 +60 199 5 883326339 +328 7 4 885046079 +51 485 1 883498790 +62 14 4 879372851 +301 552 3 882078267 +91 97 5 891438947 +392 298 1 891038205 +184 742 3 889908026 +380 114 3 885478539 +222 120 2 881061304 +405 437 1 885548435 +389 151 4 879916135 +222 763 3 881061165 +14 285 5 879119118 +363 154 4 891496306 +298 99 3 884127249 +93 125 1 888705416 +380 465 4 885478845 +287 208 4 875334896 +301 120 2 882079423 +141 290 1 884584817 +335 288 4 891566952 +374 233 3 880937876 +222 403 3 878183481 +435 173 5 884131085 +274 471 4 878945505 +433 50 5 880585885 +297 118 3 875239495 +450 194 5 882373786 +377 1105 3 891296275 +293 924 2 888904814 +436 742 5 887769050 +22 871 3 878886750 +222 808 3 881060130 +37 948 4 880915407 +62 162 4 879375843 +389 1286 5 880087873 +448 262 4 891888042 +457 182 4 882396659 +235 79 4 889655468 +447 234 4 878855782 +454 161 4 888267198 +456 175 3 881372946 +6 100 5 883599176 +342 160 3 874984365 +397 117 3 885349610 +181 690 3 878961511 +334 408 4 891547912 +339 1 5 891032349 +425 259 1 890346825 +206 313 5 888179565 +379 82 4 880525540 +450 902 4 889569016 +417 762 3 879646712 +405 192 5 885545401 +96 96 4 884403531 +387 55 3 886479649 +62 921 2 879375287 +145 796 3 875272833 +258 272 5 885700811 +324 9 5 880575449 +339 196 4 891033416 +358 59 4 891269617 +125 50 5 892836362 +417 1047 4 879646388 +426 429 5 879444081 +287 748 4 875333873 +405 1586 1 885549464 +303 185 5 879467465 +25 275 4 885853335 +24 117 4 875246216 +60 1123 4 883327997 +416 734 3 886319434 +192 258 5 881366456 +406 647 5 879792811 +286 214 1 889651605 +283 194 4 879298295 +12 318 5 879960826 +414 294 2 884999128 +154 135 5 879139003 +91 357 5 891439271 +440 1038 5 891550404 +343 100 5 876402668 +267 727 4 878972289 +328 623 3 885048801 +433 325 2 880585554 +428 343 2 885944093 +60 443 4 883327847 +354 498 4 891217610 +343 188 4 876407749 +320 156 5 884750574 +410 748 2 888626857 +303 825 3 879485016 +64 125 2 889739678 +263 22 5 891298107 +174 476 4 886434136 +453 246 5 877552590 +125 801 3 892838424 +301 22 4 882075859 +416 246 4 876697205 +88 886 5 891038103 +451 294 5 879012470 +435 185 4 884131741 +287 250 3 875334060 +393 313 4 887742040 +184 164 3 889911434 +405 1318 1 885549789 +276 549 3 874791194 +420 302 4 891356790 +444 751 4 890247172 +417 23 3 879647118 +234 218 2 892335541 +394 117 5 880887462 +426 486 3 879444604 +34 286 5 888602513 +366 854 5 888857750 +114 179 5 881260611 +233 249 5 883356871 +354 479 4 891217249 +378 110 3 880333027 +92 925 3 875640214 +401 13 2 891033204 +148 993 4 877400154 +73 173 5 888625292 +55 257 3 878176084 +217 176 4 889069842 +94 810 3 891723076 +207 191 4 877124663 +123 143 5 879872406 +442 129 4 883391146 +99 472 3 885679210 +429 127 4 882384603 +76 327 3 875027271 +201 100 4 884111485 +436 226 4 887770640 +287 298 4 875333965 +157 508 5 886890712 +343 52 5 876404793 +437 652 4 881001983 +393 36 3 889731618 +206 340 3 888180082 +98 173 1 880498935 +425 210 3 890346998 +130 433 3 875216718 +450 1263 4 882396799 +85 250 3 882592687 +366 219 5 888857932 +379 270 3 888646058 +380 449 3 885480902 +397 657 5 885349759 +361 173 5 879440774 +347 721 5 881654715 +305 237 2 886322796 +181 986 2 878963038 +447 100 5 878854552 +398 152 4 875721702 +160 969 1 876861185 +214 340 3 891542735 +327 344 4 887744167 +293 747 2 888905819 +394 97 4 880888223 +449 282 3 879958953 +42 866 4 881105972 +264 671 4 886122261 +439 13 3 882893171 +222 215 4 878183481 +248 114 5 884534901 +82 1162 1 884714361 +388 326 5 886438122 +62 55 5 879373692 +390 328 4 879693677 +307 145 4 879283672 +55 273 5 878176047 +224 15 4 888103611 +15 815 1 879456108 +89 213 4 879459859 +250 96 2 878090254 +130 890 4 880396249 +374 651 4 880395320 +254 1133 3 886475682 +318 142 4 884496219 +186 596 4 879024459 +96 79 4 884403500 +311 451 3 884366397 +450 64 4 882373656 +452 435 3 885476560 +99 273 5 886780105 +308 492 3 887737535 +90 514 3 891384423 +65 216 4 879217912 +393 805 2 889555410 +450 1036 2 882468686 +367 379 4 876690048 +385 257 3 879440236 +150 458 4 878746720 +254 679 2 886472434 +330 73 5 876546782 +380 631 4 885478668 +274 164 5 878946644 +409 325 4 881105077 +238 298 5 883576398 +268 1065 4 875310824 +97 357 5 884239493 +221 76 4 875246662 +313 218 2 891029847 +10 144 4 877892110 +450 942 5 882812558 +109 380 5 880578093 +268 527 4 875309430 +354 131 3 891217811 +312 520 5 891698254 +145 238 4 882181859 +253 98 5 891628295 +354 692 2 891307114 +458 1101 4 886397931 +270 258 3 876953744 +429 1028 3 882386601 +381 133 5 892697413 +12 282 5 879960679 +13 678 3 882140792 +392 872 4 891037790 +52 475 4 882922357 +198 660 4 884208624 +262 736 3 879794829 +342 1163 3 875318266 +442 572 3 883391344 +314 111 4 877886641 +279 831 5 875744257 +288 318 4 886374316 +256 121 5 882151123 +401 473 1 891034050 +303 948 2 879466249 +280 1181 2 891700496 +99 338 4 885678539 +194 95 3 879521719 +347 98 5 881654359 +96 198 5 884403465 +405 941 1 885546577 +164 1025 4 889401510 +92 727 4 875653242 +381 485 4 892696347 +41 286 4 890685449 +303 286 5 879465986 +293 22 3 888905819 +311 318 5 884364569 +58 194 3 884304747 +338 480 5 879438114 +117 298 5 886020525 +407 163 3 876338691 +16 812 2 877723882 +92 725 3 875907727 +274 181 5 878945365 +129 327 3 883244060 +416 230 4 886316797 +308 675 4 887740367 +450 467 4 882374332 +447 68 5 878855819 +390 289 3 879693677 +239 340 5 889178513 +220 268 4 881197771 +339 411 2 891035420 +409 168 5 881107410 +276 154 4 874791747 +267 222 4 878970681 +13 210 3 882140455 +451 300 4 879012550 +430 129 5 877225547 +437 1153 5 880141962 +256 748 4 882150192 +303 507 5 879466604 +401 162 5 891033395 +437 118 2 880142991 +416 54 5 893212929 +295 191 5 879517033 +125 1249 3 892838322 +181 329 1 878961781 +219 215 5 889403843 +313 226 4 891028241 +383 483 5 891192986 +406 238 2 879445475 +222 248 4 877563506 +182 123 4 885612994 +184 254 2 889907569 +295 94 4 879518339 +256 831 4 882152943 +325 345 3 891477660 +160 864 1 876770673 +128 54 2 879968415 +437 499 5 880141962 +327 419 4 887822832 +116 993 2 876453376 +267 480 4 878971438 +378 665 2 880333261 +13 524 4 886302261 +48 425 3 879434850 +405 565 2 885548474 +307 462 4 879284095 +258 332 5 885701024 +181 763 1 878962955 +5 379 3 875720814 +416 287 4 878879237 +130 684 5 875802236 +184 942 3 889909768 +46 294 2 883611307 +378 328 3 892382903 +378 433 4 880045652 +407 418 4 876338910 +43 237 4 875975579 +246 1232 1 884923425 +398 393 5 875732738 +450 1212 4 882396799 +355 872 4 879486529 +397 322 1 875063613 +399 273 3 882340657 +343 729 3 876407291 +458 144 4 886396390 +456 715 3 881373697 +108 471 2 879880076 +405 228 1 885547910 +94 23 5 885870284 +296 269 5 884196258 +151 546 2 879543400 +102 1239 2 888802319 +314 246 5 877886375 +295 142 4 879518590 +345 235 3 884991285 +70 193 4 884149646 +63 1137 5 875747556 +325 483 5 891478079 +44 245 4 878340887 +268 554 3 875744388 +144 195 5 888105081 +308 692 3 887738469 +363 825 4 891497881 +334 840 4 891545674 +423 898 4 891394952 +436 845 5 887771269 +28 800 4 881961904 +82 519 4 878770028 +21 452 4 874951727 +451 872 2 879012857 +406 591 3 879446062 +406 713 4 879539855 +13 11 1 882397146 +346 176 4 874947747 +151 1109 4 879542414 +406 490 3 879446228 +311 480 4 884364593 +76 89 4 875027507 +97 202 5 884239449 +1 188 3 875073128 +70 186 4 884065703 +412 480 4 879717147 +312 713 5 891698334 +399 1459 3 882345473 +92 2 3 875653699 +321 20 3 879440160 +296 435 5 884197108 +363 1074 2 891497679 +268 1079 3 875742916 +328 203 5 885045931 +43 71 4 883955675 +290 205 3 880473777 +417 769 1 880953071 +267 1471 2 878974509 +345 1047 4 884991457 +57 298 3 883697293 +393 21 3 887744765 +457 704 4 882397240 +305 183 4 886324028 +37 265 4 880930072 +210 210 5 887730532 +455 293 4 879109110 +49 179 5 888066446 +85 208 5 879828941 +193 722 3 889126402 +221 109 2 875244369 +59 566 4 888206485 +7 553 3 892134010 +435 696 3 884132342 +184 497 4 889909409 +215 179 4 891435107 +154 414 4 879138910 +426 430 3 879445005 +364 269 4 875931309 +250 117 3 878089628 +457 636 4 882548466 +393 70 3 889555251 +243 1281 5 879989217 +345 272 5 884900426 +429 26 3 882386333 +222 111 3 877563820 +44 176 5 883613372 +224 403 4 888104522 +344 301 4 889813946 +450 97 4 882396351 +401 661 3 891033158 +301 719 4 882079542 +442 38 3 883390674 +394 979 5 881060177 +13 842 2 882399156 +42 276 1 881105405 +454 487 4 888266565 +422 477 4 875130027 +450 762 3 882469627 +379 52 4 880741002 +454 484 3 881960445 +379 177 4 886835699 +18 921 5 880132437 +347 151 3 881652480 +312 609 3 891698634 +407 949 3 875045685 +148 204 3 877016912 +327 9 5 887819860 +220 319 4 881197771 +317 323 2 891446819 +405 541 1 885548162 +35 332 4 875459237 +49 219 1 888067405 +101 1047 2 877136424 +159 412 3 880557824 +381 175 5 892696268 +303 1047 2 879485277 +385 87 3 879441942 +56 402 5 892677186 +334 1137 4 891544764 +267 450 2 878974128 +228 690 5 889387173 +198 280 3 884206401 +286 1504 4 877534903 +58 32 5 884304812 +345 582 5 884992807 +208 186 4 883108518 +6 480 4 883601089 +424 9 5 880859623 +246 101 2 884922740 +401 225 1 891032474 +299 278 3 877879980 +226 250 4 883890491 +1 102 2 889751736 +347 223 4 881653669 +426 182 2 879442702 +144 655 5 888105116 +370 604 4 879434804 +396 322 4 884645790 +457 443 4 882396989 +59 511 5 888204965 +82 265 4 878770169 +198 455 3 884206191 +128 402 1 879969136 +399 400 3 882349170 +405 514 1 885547221 +372 286 5 876868994 +450 143 5 882394364 +330 70 4 876546470 +336 158 3 877756618 +299 393 2 889503503 +183 270 3 891462811 +447 879 3 878854056 +407 62 3 876348318 +7 515 3 891350757 +83 391 2 880308783 +1 69 3 875072262 +322 182 5 887314417 +320 50 4 884749227 +385 189 5 881530739 +444 906 4 891979402 +351 286 5 879481386 +360 423 4 880355623 +343 546 1 876403348 +21 931 2 874951446 +130 554 4 876252288 +261 304 3 890454941 +89 150 5 879441452 +94 8 5 885873653 +450 583 4 882473914 +348 924 4 886523361 +367 200 4 876689962 +381 49 2 892696328 +405 623 1 885549004 +401 501 2 891033184 +218 100 4 877488692 +378 172 4 880045886 +234 288 3 891033738 +402 48 5 876267173 +332 54 4 888360396 +345 126 5 884991105 +158 124 4 880134261 +429 464 3 882386171 +393 1043 3 889728324 +442 636 5 883390416 +387 268 3 886479430 +379 152 5 880740518 +416 254 2 878879391 +125 479 4 879454386 +82 174 5 878769478 +379 603 5 880526074 +286 472 3 876522340 +294 406 2 877819941 +450 480 4 882372178 +119 982 4 874775406 +405 216 2 885547124 +64 157 4 879365491 +313 414 3 891016425 +359 246 3 886453214 +363 403 3 891496414 +62 47 4 879375537 +310 181 4 879436104 +92 367 3 875654533 +276 628 4 874786538 +406 511 5 879792811 +90 155 5 891385040 +270 253 5 876954733 +181 925 2 878963418 +177 59 4 880130825 +121 181 5 891390014 +215 354 4 891434619 +294 1132 4 889242788 +426 526 4 879444734 +176 303 3 886047118 +405 87 1 885546112 +393 223 4 887746119 +407 182 4 887833034 +328 222 3 885046655 +462 682 5 886365231 +269 100 5 891446246 +450 846 3 882471524 +327 1100 4 888251464 +383 197 5 891192888 +339 265 3 891034779 +391 300 2 877398619 +90 547 3 891385899 +213 318 5 878955533 +320 184 5 884749360 +354 605 3 891218271 +152 157 5 882476486 +442 29 3 883390641 +378 636 3 880055186 +110 790 4 886989399 +407 147 4 887833034 +327 195 4 887744277 +363 101 1 891496953 +130 331 3 875801345 +457 775 3 882551021 +286 393 4 877534481 +416 607 5 893212622 +29 294 4 882820730 +188 864 2 875072148 +387 1199 5 886480970 +271 38 2 885849648 +382 717 3 875946347 +30 1013 3 875060334 +334 512 4 891547148 +222 270 2 878181181 +387 24 5 886484522 +459 934 3 879563639 +92 955 4 875658312 +276 262 4 892436298 +96 176 4 884403758 +7 491 5 891351432 +276 652 4 889174849 +14 18 3 879119260 +254 136 4 886471695 +452 191 5 876299004 +210 420 4 887737487 +407 265 3 876344062 +228 98 3 889388607 +82 202 4 878769777 +450 561 4 887660762 +235 494 4 889655112 +267 216 4 878972586 +453 697 4 877561235 +409 133 4 881108455 +102 102 3 883748488 +259 317 5 874809057 +435 576 3 884133447 +63 1009 4 875747731 +305 1104 4 886323779 +377 313 5 891295989 +299 1214 2 889502528 +7 118 2 891353411 +423 300 3 891394874 +271 31 4 885849325 +173 268 4 877556626 +279 1108 1 892174273 +398 176 4 875725256 +63 255 4 875747556 +38 526 1 892430636 +59 227 3 888206015 +317 351 3 891446819 +92 73 3 875656474 +392 632 5 891039015 +425 1314 3 878738813 +388 690 5 886438540 +39 347 4 891400704 +367 567 4 876690077 +417 200 4 879647708 +436 1522 2 887771123 +409 604 4 881108364 +457 192 5 882395018 +7 537 3 891352749 +92 476 2 886443602 +43 302 4 887731794 +417 131 4 879647254 +94 431 4 891721716 +374 210 4 880395202 +247 28 5 893097024 +301 1012 4 882074613 +299 475 4 877877600 +73 271 2 888792294 +10 698 4 877888877 +427 319 3 879700486 +449 1194 4 880410624 +392 847 4 891039015 +393 323 2 887742916 +194 235 2 879541343 +434 406 3 886725027 +221 33 4 875246632 +16 7 5 877724066 +416 936 5 893214127 +454 87 4 881960296 +243 137 3 879987084 +277 285 4 879543486 +363 1052 3 891500134 +384 347 4 891273509 +295 648 4 879517324 +207 181 3 877878828 +268 302 5 876513584 +116 914 2 892683732 +381 459 4 892696738 +450 487 4 887660504 +244 628 4 880604346 +436 157 5 887768982 +184 995 3 889907044 +416 22 5 893212623 +326 234 3 879875797 +455 755 3 879112189 +457 708 4 882398002 +303 483 5 879466795 +100 1238 2 891375068 +397 479 4 885349865 +268 582 5 875309344 +303 940 2 879485659 +130 218 5 875801388 +7 53 5 891354689 +11 12 2 891904194 +297 222 4 874954845 +59 707 3 888205336 +458 648 4 886395899 +102 350 3 892990700 +324 307 5 880574766 +275 226 3 880314914 +85 179 4 879454272 +56 64 5 892678482 +194 70 3 879522324 +350 193 4 882347653 +119 322 4 874774449 +223 332 4 891548802 +456 943 4 881372946 +454 1299 2 888266991 +234 589 3 892078567 +429 229 2 882385613 +378 1107 3 880056351 +460 10 3 882912371 +215 227 5 891436469 +129 245 2 883245452 +425 322 3 890346597 +32 257 4 883717537 +83 1165 2 883868300 +145 122 1 888398307 +60 842 4 883327175 +397 705 5 885350045 +23 357 3 874785233 +116 299 3 876452133 +455 282 3 879109664 +207 79 4 875509888 +318 69 5 884496572 +297 47 2 875240090 +13 258 4 882139327 +15 300 4 879455166 +438 50 5 879868005 +377 56 4 891298407 +412 193 4 879717549 +336 1230 2 877757516 +401 485 4 891033092 +336 926 1 877758935 +102 577 3 892993895 +117 1014 3 886021192 +291 284 4 874833687 +10 474 4 877886783 +110 550 3 886988664 +270 77 2 876956038 +389 705 5 879991196 +90 1020 5 891384997 +87 90 2 879877127 +13 379 1 882396984 +290 515 3 880473918 +286 167 5 877533419 +91 526 4 891439471 +384 748 4 891274028 +313 542 3 891017585 +425 273 4 878738435 +393 202 3 887746015 +75 118 3 884050760 +43 51 1 883956562 +208 70 3 883108430 +120 125 4 889490447 +295 496 5 879517682 +332 174 5 888359866 +186 95 3 879024535 +200 739 4 884130046 +370 153 2 879434832 +380 300 3 885481179 +20 87 5 879669746 +394 423 5 881057839 +452 641 3 875266415 +137 597 5 881432987 +241 302 3 887249576 +178 39 2 882827645 +204 874 3 892388976 +131 285 5 883681723 +59 173 5 888205144 +160 412 3 876768990 +44 161 4 878347634 +28 258 5 881955018 +436 546 3 887771826 +276 198 5 874795949 +275 435 3 880313886 +110 423 4 886987952 +456 294 1 881375667 +457 366 4 882549287 +406 24 3 879540026 +450 2 4 882474001 +234 434 3 892079288 +23 109 3 874784466 +21 320 3 874951658 +1 170 5 876892856 +436 66 5 887770457 +385 1021 5 879441572 +222 825 3 878184675 +391 222 2 877399864 +462 895 4 886365297 +268 288 4 875306477 +21 706 2 874951695 +207 527 4 877879172 +291 288 5 874805453 +60 524 4 883325994 +438 9 4 879868005 +297 69 3 875240171 +461 50 3 885356089 +447 252 3 878854975 +92 82 2 875654846 +28 443 4 881961671 +417 1550 3 879648707 +204 303 5 892389020 +201 658 3 884111677 +103 252 2 880420020 +321 190 4 879439562 +22 651 4 878887810 +279 407 4 875297479 +13 547 1 882397011 +198 198 4 884207654 +437 423 5 880141196 +404 328 4 883790749 +452 61 1 887718917 +409 527 4 881109175 +5 381 1 875636540 +450 237 5 887660650 +244 856 5 880602002 +308 482 5 887738152 +365 272 4 891303357 +72 7 1 880036347 +178 260 1 886678700 +222 1218 1 878183218 +313 391 3 891028360 +128 196 5 879967550 +322 188 3 887314244 +405 1066 1 885549111 +312 372 3 891699568 +421 238 5 892241576 +313 23 4 891013742 +168 9 1 884287394 +215 176 5 891435804 +168 930 3 884288243 +59 756 2 888203658 +374 466 5 880394929 +244 959 4 880607684 +385 486 2 879442189 +425 448 2 878738887 +200 419 4 884129232 +18 663 4 880129454 +59 64 5 888204309 +288 346 5 886372155 +177 23 5 880130758 +7 99 5 891352557 +145 688 4 875269822 +401 154 1 891033184 +189 89 5 893265624 +367 234 4 876690098 +119 755 1 886176678 +279 156 4 875306580 +324 322 4 880575163 +450 39 4 882376282 +246 831 1 884924025 +79 1022 5 891271792 +174 723 5 886514448 +255 322 2 883215723 +109 67 5 880580719 +199 508 4 883782899 +209 333 2 883589568 +314 1473 4 877891089 +190 539 2 891033370 +151 209 4 879524443 +109 173 5 880572786 +92 500 4 883433734 +435 343 5 884130744 +263 496 5 891298218 +90 609 5 891384357 +457 500 5 882553112 +234 1064 4 892333683 +329 282 3 891656300 +145 732 4 875272833 +4 271 4 892001690 +90 151 2 891385190 +194 939 3 879550615 +264 240 4 886124352 +231 289 4 888605273 +316 507 3 880853704 +416 1012 4 876697205 +83 597 2 891182270 +378 959 3 880046408 +94 7 4 885873089 +298 511 4 884127690 +92 56 5 875653271 +170 288 3 884706012 +435 434 2 884131542 +346 571 3 875264262 +189 198 4 893265657 +311 584 3 884365485 +276 734 1 877935262 +222 318 5 878181934 +417 250 4 879646463 +335 333 4 891566952 +459 596 3 879562939 +95 190 4 888954513 +13 757 3 882398934 +117 179 5 881012776 +409 173 3 881108246 +245 21 3 888513502 +247 269 4 893097024 +437 727 3 881001576 +230 141 4 880485489 +213 199 5 878956000 +116 872 3 876452228 +407 179 3 875046427 +299 606 4 889501393 +13 234 5 882140252 +331 475 3 877196173 +460 327 4 882912418 +18 404 4 880132055 +431 879 3 877844489 +346 147 4 874950172 +393 470 4 889554730 +95 597 3 879194663 +59 670 4 888206485 +389 510 3 880165367 +161 309 2 891170018 +435 410 5 884133733 +416 213 5 893213443 +313 662 3 891031576 +22 665 1 878888145 +276 325 3 874786419 +405 423 5 885545306 +70 175 3 884150422 +321 45 4 879439763 +363 44 3 891496927 +210 926 2 887730909 +459 194 3 879566291 +48 647 4 879434819 +251 1012 4 886272175 +385 1097 5 879440158 +224 366 3 888104457 +90 515 5 891385165 +335 258 1 891566808 +327 1019 3 887746665 +268 1476 2 876513897 +125 474 3 892836422 +398 663 2 875735255 +194 100 4 879539305 +64 300 3 879365314 +297 53 3 875239942 +450 778 3 887834953 +417 77 3 879649304 +1 38 3 878543075 +199 1 1 883782854 +249 250 4 879571678 +308 213 4 887739382 +316 191 5 880854539 +303 2 3 879467191 +347 273 5 881652456 +15 926 1 879456424 +134 316 4 891732418 +269 1017 5 892567767 +124 98 4 890287822 +379 179 5 880525132 +399 969 3 882346728 +139 1176 4 879538080 +457 243 2 882393104 +222 233 2 881060205 +316 276 2 880853849 +96 185 5 884403866 +334 945 4 891545973 +137 121 5 881432881 +334 531 5 891545949 +339 56 5 891032221 +1 9 5 878543541 +215 23 3 891436048 +405 1110 1 885547644 +336 41 3 877757477 +454 479 4 881959991 +159 918 4 893255798 +451 360 3 879012858 +7 565 4 892132019 +405 463 1 885548836 +144 173 5 888105902 +269 502 3 891449842 +255 245 1 883215723 +346 132 4 875261235 +387 184 3 886481634 +194 1045 2 879524644 +399 93 3 882512192 +50 288 4 877052008 +238 125 3 883576230 +322 150 4 887314027 +354 792 4 891217340 +385 455 4 879440701 +405 227 1 885548049 +207 1333 3 877995615 +312 512 3 891698951 +90 216 5 891383626 +59 1005 5 888206363 +250 50 5 878089393 +249 298 4 879571715 +214 527 4 891544089 +429 1545 2 882385518 +37 68 5 880915902 +180 729 5 877355598 +405 197 4 885545167 +250 687 1 883263007 +374 120 3 882158147 +43 211 4 883955785 +392 268 5 891037385 +457 527 5 882553113 +364 875 3 875931585 +405 393 4 885547314 +450 815 3 882396153 +144 213 4 888105387 +246 758 1 884924813 +346 550 4 886273914 +73 59 5 888625980 +344 73 3 884901371 +387 1537 4 886480681 +363 333 1 891493634 +268 284 3 875742407 +467 1017 2 879532403 +271 107 1 885848179 +233 509 4 877663646 +149 262 1 883512623 +43 278 3 884029259 +130 343 4 881536273 +304 294 4 884968415 +438 321 5 879867960 +9 276 4 886959423 +397 302 5 889760703 +73 135 5 888626371 +330 118 5 876544582 +457 1030 2 882551134 +256 98 5 882164696 +449 224 4 879958758 +426 527 3 879444550 +105 324 4 889214245 +468 926 2 875280331 +13 89 4 882139717 +84 245 4 883449530 +18 762 3 880132103 +328 448 3 885046744 +279 474 5 892173363 +181 137 2 878962465 +145 259 3 875269871 +102 667 3 888803002 +213 214 5 878955816 +106 1028 3 883876085 +450 708 4 882397049 +416 966 5 893212483 +308 23 5 887737293 +90 965 5 891383561 +207 15 4 876198392 +82 97 4 878769777 +347 597 3 881652788 +62 710 3 879375453 +91 211 2 891439208 +119 52 3 890627339 +222 183 4 878181535 +355 358 4 879485523 +99 815 2 885679237 +380 573 1 885480737 +160 405 3 876770441 +273 315 4 891292846 +116 193 4 876453681 +299 289 3 877877323 +130 305 4 886023938 +437 166 4 880140398 +422 1 3 875130063 +452 27 5 885816916 +64 405 3 889739288 +328 595 3 885048500 +94 525 5 891721439 +70 405 3 884149117 +457 164 4 882547645 +380 529 3 885479235 +423 355 3 891395020 +431 323 3 877844559 +62 9 4 879372182 +90 617 4 891383835 +339 269 5 891032379 +121 792 3 891388250 +458 191 5 886396192 +267 566 3 878973047 +181 294 2 878961173 +145 771 2 888398867 +179 893 2 892151565 +90 493 5 891383600 +223 620 2 891550253 +315 461 4 879799457 +363 258 3 891493603 +11 750 5 891901629 +293 549 3 888907166 +77 133 2 884752997 +450 400 3 882468790 +10 82 4 877886912 +109 1060 4 880571661 +466 308 1 890282957 +339 89 5 891033416 +280 77 3 891702086 +12 170 4 879959374 +92 208 4 875656288 +344 357 5 884814432 +426 199 5 879442702 +233 501 3 877663383 +393 316 5 889554297 +416 1478 2 886319906 +102 327 2 884870872 +426 651 4 879442702 +90 52 5 891385522 +439 242 5 882892424 +328 177 3 885047099 +393 99 3 889727536 +405 1391 1 885549789 +405 1168 1 885546725 +256 583 5 882164603 +90 127 4 891383561 +17 117 3 885272724 +360 10 5 880354624 +435 729 2 884133757 +272 79 5 879455015 +95 532 4 881011974 +74 354 3 888333194 +323 238 4 878740017 +437 5 2 880143663 +363 557 1 891496103 +389 526 3 880087200 +437 214 4 880141041 +10 510 5 877892209 +327 672 2 887746328 +249 114 5 879572314 +312 1167 4 891699295 +7 465 4 891353154 +437 50 5 881000958 +422 100 4 875129791 +159 273 5 880485935 +157 476 1 886891173 +64 168 5 889739243 +233 603 4 880190566 +28 11 4 881956144 +445 291 2 891200233 +447 300 4 878854011 +224 286 3 888081843 +401 248 3 891032367 +174 158 2 886514921 +83 64 5 887665422 +345 381 4 884993505 +59 845 5 888203579 +355 242 4 879486529 +393 161 4 887746883 +378 768 4 880333598 +276 98 5 874792663 +404 342 3 883790750 +259 179 4 877924028 +169 211 5 891359200 +301 607 4 882077176 +32 508 4 883717581 +405 949 5 885545702 +381 89 5 892696426 +174 433 5 886514757 +367 769 3 876690077 +322 64 5 887314148 +79 582 5 891271806 +435 216 3 884131118 +312 71 4 891699599 +186 243 2 879024099 +375 525 4 886621917 +430 253 1 877225484 +412 508 4 879716962 +399 228 2 882347783 +373 1113 1 877099968 +94 1118 4 891722482 +2 277 4 888551174 +378 724 3 880055520 +6 536 4 883599400 +268 391 3 876513897 +468 461 4 875291570 +158 20 4 880134261 +379 203 4 880526100 +4 300 5 892001445 +207 841 3 876018501 +432 250 1 889415895 +186 1016 5 879023643 +194 491 3 879520916 +81 1 4 876534949 +148 432 5 877019698 +416 202 4 876699334 +38 112 5 892432751 +195 47 5 876632643 +343 463 4 876404793 +378 231 3 880333327 +399 364 4 882350813 +426 848 4 879444117 +456 448 3 881374586 +299 204 4 889503112 +200 58 4 884129301 +257 324 5 879029543 +399 67 3 882350899 +75 413 2 884050979 +49 1066 2 888067187 +314 1229 2 877891681 +437 658 4 880141335 +389 965 5 880087599 +13 23 5 882139937 +11 168 3 891904949 +115 237 2 881171075 +345 196 5 884902317 +37 89 4 880930072 +332 106 4 887938687 +276 258 5 874786337 +422 358 2 875129640 +294 1079 2 889242624 +82 238 3 878769373 +430 237 5 877225965 +297 447 4 875239691 +18 403 3 880132103 +87 405 4 879875893 +201 223 4 884113343 +347 172 5 881653933 +55 597 2 878176134 +308 31 3 887739472 +373 215 4 877099211 +320 95 3 884751418 +437 283 1 880141716 +326 89 4 879875398 +312 653 5 891698365 +328 333 3 885044418 +330 67 4 876547500 +145 12 5 882182917 +95 815 3 879193708 +323 204 3 878739771 +158 430 5 880135093 +89 269 5 879461219 +176 347 4 886047442 +13 435 5 882141392 +144 68 2 888105665 +139 296 4 879538218 +182 257 3 885613117 +7 584 4 891352093 +82 588 5 878769917 +94 318 5 891721191 +65 378 5 879217032 +301 474 4 882075803 +313 768 3 891030367 +345 1221 3 884993703 +308 495 3 887740131 +292 20 2 881104760 +293 26 3 888907015 +460 257 2 882912342 +49 218 2 888068651 +437 485 4 880140854 +246 250 4 884924327 +402 245 1 876266860 +343 358 1 876402493 +416 168 5 893212929 +442 591 3 883391221 +349 20 5 879465642 +334 111 3 891547445 +243 14 3 879987239 +267 29 3 878973426 +458 318 4 886397771 +109 1222 4 880579758 +102 230 2 888801232 +416 85 3 893210246 +194 485 3 879546498 +269 928 1 891451754 +1 246 5 874965905 +406 22 3 882480671 +181 471 2 878962919 +269 425 5 891448345 +201 773 4 884112627 +411 451 4 892845634 +328 383 3 885049880 +333 300 4 891044389 +442 22 2 883390813 +197 188 3 891409982 +43 88 5 883955702 +457 720 3 882550925 +54 829 2 880937311 +37 550 4 880915902 +210 411 3 887730931 +11 370 3 891902880 +151 627 2 879542796 +212 382 5 879303929 +347 233 5 881654653 +380 183 4 885478192 +330 370 4 876545058 +284 301 5 885329593 +468 642 3 875291403 +292 214 3 881105701 +268 10 4 875306691 +299 473 3 877878561 +374 844 4 880394000 +59 83 4 888204802 +253 273 3 891628060 +117 743 1 881010401 +215 270 3 891434683 +223 929 3 891549975 +452 506 3 875276081 +91 520 4 891439414 +367 53 4 876690076 +301 42 4 882075743 +406 127 4 879445430 +246 38 2 884923175 +381 607 4 892696130 +268 710 3 875309719 +383 302 4 891192216 +413 326 3 879969027 +347 68 5 881654825 +459 1060 1 879563668 +339 45 5 891033200 +437 65 4 880140787 +339 179 5 891032793 +18 845 3 880131236 +356 326 4 891406193 +174 1074 4 886514529 +286 768 3 889652968 +264 204 5 886123472 +255 829 1 883216903 +234 419 4 892334644 +299 288 3 877618584 +184 657 4 889908497 +239 527 5 889178833 +459 216 3 879566321 +268 47 1 875310645 +373 195 4 877098487 +257 1472 2 880496943 +327 147 2 887820417 +17 150 5 885272654 +26 413 2 891386049 +2 282 4 888551922 +141 756 3 884585363 +271 495 5 885849052 +417 431 4 879647431 +204 242 5 892388935 +265 237 5 875320462 +144 24 4 888104541 +363 444 4 891500406 +22 187 5 878887680 +246 444 4 884923715 +13 550 4 882397741 +380 614 3 885478845 +194 642 2 879527514 +94 154 5 886008791 +42 1 5 881105633 +38 200 5 892432180 +277 237 4 879544145 +297 271 2 881707810 +343 175 5 876405045 +262 974 3 879791447 +330 1084 5 876544432 +224 1058 3 888104219 +430 547 2 877226365 +215 380 3 891436470 +13 538 1 884538448 +38 69 5 892430486 +334 174 4 891546992 +450 495 4 882395052 +299 345 4 884023998 +233 71 5 876812281 +262 1035 3 879794530 +222 450 3 881060824 +57 111 4 883697679 +406 187 2 879445897 +385 111 2 879440267 +373 949 4 877100016 +312 186 3 891699491 +324 872 5 880575045 +65 956 4 879216797 +250 501 5 878090199 +435 465 2 884132515 +308 648 4 887738509 +472 401 4 875982727 +216 122 5 881432488 +417 139 3 879648707 +435 929 2 884133635 +347 271 1 881652191 +373 414 3 877104259 +239 318 1 889178798 +406 1008 4 879539909 +160 844 3 876767822 +339 637 4 891035647 +145 554 3 875272245 +328 273 3 885046134 +348 831 4 886523913 +416 501 5 893213918 +334 1016 3 891545185 +280 158 2 891701764 +374 254 3 880394000 +387 403 3 886483099 +269 707 2 891449304 +405 1580 1 885549543 +258 333 2 885700811 +456 662 4 881374710 +87 132 5 879877930 +113 268 4 875935609 +453 356 2 888205866 +343 11 5 876405172 +151 136 4 879524293 +5 99 3 875721216 +151 1286 5 879524173 +150 151 4 878746824 +89 875 3 879441160 +299 185 3 878192039 +221 568 4 875246398 +219 269 5 889386655 +407 432 4 875552685 +222 636 4 878184055 +189 131 4 893265710 +239 91 4 889180487 +465 202 4 883531487 +43 283 2 883955415 +326 613 5 879874860 +458 387 4 886398246 +378 295 3 886614274 +160 640 3 876860808 +11 70 4 891904573 +472 11 5 892790676 +252 14 4 891456876 +125 364 3 892839191 +425 324 3 878737657 +200 99 5 884128858 +73 650 3 888626152 +450 382 3 882377479 +349 120 3 879466334 +145 150 5 875270655 +13 669 1 882397067 +405 1268 1 885546636 +116 1013 3 876453222 +277 844 4 879543528 +174 722 4 886513896 +363 568 2 891495070 +106 210 4 881450810 +13 475 3 881515113 +407 144 3 876338453 +420 137 4 891357104 +307 210 2 877123746 +70 181 4 884064416 +276 451 3 874792216 +405 999 1 885547557 +346 92 4 886274124 +13 889 3 892015236 +6 21 3 883600152 +459 134 3 879564941 +343 169 5 876405172 +87 791 2 879877280 +130 249 5 876250746 +18 6 5 880130764 +234 745 4 892333573 +181 931 1 878963205 +456 210 3 881374849 +76 769 1 882607018 +379 127 5 880524811 +379 517 4 888044628 +406 69 4 879446748 +346 302 3 877231140 +432 118 4 889416608 +376 197 4 879454598 +151 462 4 879524088 +450 518 4 882374134 +219 382 5 889451412 +280 1066 4 891701928 +406 825 4 879540275 +117 977 3 881009738 +437 501 4 880143315 +461 302 3 885355646 +387 114 5 886484336 +144 524 5 888105081 +249 1039 5 879572725 +405 308 1 885549942 +15 409 3 879456324 +289 151 2 876790499 +64 847 3 879365558 +158 797 3 880134701 +334 271 3 891544340 +298 471 4 884125847 +463 1132 1 889937778 +113 323 4 875325377 +383 237 4 891192836 +94 11 5 885870231 +339 461 5 891033226 +256 89 5 882164525 +399 413 2 882340900 +379 528 5 881996665 +402 511 5 876266775 +223 295 3 891549410 +90 889 3 891382731 +89 13 2 879441672 +42 387 3 881108760 +272 211 5 879454845 +346 394 4 874949116 +176 111 4 886048040 +450 110 4 882469250 +450 1203 3 882373723 +159 595 5 880486009 +174 846 5 886433996 +87 216 5 879876448 +270 183 5 876955938 +85 190 4 879453845 +282 689 2 881703044 +374 291 3 885107905 +342 111 3 875318267 +286 381 5 877532965 +339 447 4 891034923 +314 946 5 877888527 +472 193 5 875981789 +244 471 1 880606874 +224 28 4 888082468 +358 918 1 892731254 +234 23 4 892334368 +269 148 1 891446443 +60 593 5 883326185 +37 27 4 880915942 +393 317 4 889554707 +117 33 4 881011697 +200 188 4 884129160 +232 209 3 888549563 +130 1046 4 880396831 +110 315 4 886987726 +110 173 1 886988909 +399 746 5 882342158 +321 1331 4 879439017 +181 1363 1 878962279 +357 1 5 878951216 +406 183 5 882480567 +322 234 4 887313893 +290 1079 2 880732771 +430 234 4 877226323 +159 24 5 880989865 +428 750 5 885943651 +286 1280 5 884069544 +194 403 2 879527725 +145 242 5 875269755 +457 58 4 882397177 +369 168 3 889428494 +454 144 4 888266643 +417 1028 3 879646785 +94 739 2 891723156 +42 371 4 881108760 +390 515 4 879694259 +11 274 3 891906510 +286 125 4 876521650 +200 679 4 884129920 +398 167 3 875735638 +222 407 2 883816411 +435 597 3 884133284 +326 170 2 879874897 +119 591 4 886177235 +410 313 5 888627137 +221 64 5 875245350 +442 834 2 883389337 +115 596 1 881170663 +435 204 3 884132366 +18 378 3 880131804 +449 212 5 880410624 +193 246 3 890859402 +389 47 4 880086971 +429 208 4 882384772 +311 202 4 884364694 +472 877 3 892789947 +378 401 4 880332347 +130 1039 4 875216420 +99 28 3 885680578 +145 820 2 885557732 +272 746 3 879454797 +62 250 5 879372455 +452 276 1 885490917 +381 631 4 892696654 +373 421 4 877105563 +96 187 5 884402791 +350 204 4 882346161 +425 177 3 878738290 +26 1 3 891350625 +452 201 1 875875685 +399 41 2 882348876 +90 162 5 891385190 +30 242 5 885941156 +422 270 3 878058917 +286 186 5 877534903 +380 31 1 885479730 +64 81 4 889739460 +181 991 1 878961814 +41 474 5 890687066 +365 762 4 891304300 +233 584 4 877663548 +280 118 2 891701027 +92 456 2 888469668 +42 1047 4 881106419 +452 89 5 875263413 +154 474 5 879138783 +42 427 4 881107773 +121 124 5 891388063 +291 1073 5 874834701 +393 842 4 889729212 +144 1138 4 888104684 +102 778 3 892991448 +223 476 3 891550349 +286 47 4 877532419 +348 412 2 886523560 +188 568 4 875072583 +346 22 5 874948059 +98 629 5 880499111 +162 1011 4 877636370 +85 385 3 879455021 +459 358 2 879561783 +92 167 3 875656557 +108 304 3 879879662 +327 132 5 887820828 +309 331 5 877370356 +23 95 4 874786220 +43 742 5 883955650 +450 710 3 882468931 +234 1203 4 892079910 +108 718 4 879879985 +343 66 3 876406421 +305 963 4 886322635 +314 762 4 877886443 +319 340 3 879975481 +345 1053 3 884993903 +437 710 4 880140822 +225 1203 5 879540778 +401 71 2 891033549 +472 258 5 892790953 +312 633 5 891698951 +194 31 3 879549793 +450 660 4 887660762 +64 209 5 889737654 +65 65 3 879216672 +59 963 5 888204757 +447 9 2 878854195 +11 423 5 891904174 +256 38 4 882164927 +85 195 3 882995132 +471 95 4 889827822 +407 1118 4 876340043 +383 427 5 891192748 +214 752 2 891542578 +145 209 4 882181659 +389 475 5 879915780 +463 455 3 877385457 +405 1384 1 885549746 +177 154 4 880130600 +456 274 3 881371977 +174 388 1 886515335 +224 280 4 888104353 +244 410 4 880606593 +223 1291 3 891550431 +234 22 4 892334644 +393 497 4 889555021 +315 382 4 879821089 +450 152 5 882395052 +406 7 4 879445684 +414 678 1 884999066 +334 213 4 891546373 +158 173 5 880134913 +397 288 4 882839517 +457 385 4 882392950 +178 123 4 882824325 +474 8 5 887925497 +472 168 5 892791062 +417 422 3 879648212 +416 549 4 886316922 +137 181 5 881433015 +230 71 5 880484911 +295 720 4 879518801 +216 475 5 880232768 +433 682 2 880585431 +216 188 5 880245075 +280 699 4 891700341 +234 1200 3 892333865 +24 127 5 875323879 +281 288 4 881200264 +45 823 4 881014785 +13 51 3 882399419 +334 500 3 891547334 +471 140 5 889827918 +271 193 5 885848475 +432 871 2 889416456 +303 156 5 879466771 +436 787 5 887770640 +327 1 4 887745622 +307 286 3 881965984 +290 139 2 880475420 +94 274 4 891722511 +236 659 3 890116599 +405 53 2 885548137 +295 386 4 879519308 +149 326 3 883512856 +450 304 4 882216108 +351 751 4 883356614 +411 770 4 892845634 +335 313 3 891566808 +416 10 3 876698364 +324 288 5 880575002 +151 483 5 879524244 +334 347 3 891547445 +269 469 4 891448072 +95 415 3 888956582 +336 790 2 877758187 +95 1231 1 880572787 +131 124 5 883681313 +175 100 2 877107712 +472 449 5 875982967 +336 401 1 877757133 +109 179 4 880577961 +407 382 3 876342706 +309 1025 5 877370356 +466 354 2 890282795 +136 286 5 882693234 +294 122 3 889242661 +378 174 4 880045651 +342 727 3 875320082 +450 520 5 887136083 +410 289 1 888626819 +7 499 4 891351472 +169 213 5 891359354 +138 13 4 879023345 +405 753 1 885549464 +450 604 4 882373231 +398 993 3 875653043 +327 506 3 887744513 +222 623 2 878183985 +405 693 2 885546154 +303 872 3 879466018 +447 206 4 878856209 +66 24 3 883601582 +436 215 4 887770457 +334 429 4 891546299 +293 582 4 888906536 +119 597 4 874775465 +271 130 1 885848218 +105 288 4 889214335 +405 1530 1 885546835 +42 290 3 881106072 +429 636 3 882386027 +345 568 4 884993047 +331 223 4 877196173 +207 660 4 877847100 +255 200 3 883216544 +87 321 2 879876813 +174 742 4 886434087 +194 154 3 879546305 +13 329 2 886952246 +145 407 2 888398400 +201 53 3 884114713 +337 222 5 875185319 +334 239 3 891546914 +465 114 4 883530190 +1 22 4 875072404 +363 290 3 891496753 +435 1039 4 884132755 +223 1009 1 891549475 +119 50 5 874774718 +367 406 4 876689878 +10 216 4 877889333 +308 597 3 887738933 +189 423 5 893265796 +276 153 4 874791667 +303 321 3 879466065 +152 1054 1 880149643 +455 738 3 879112238 +308 712 4 887740833 +456 187 4 881372911 +98 523 5 880498967 +416 106 3 876697913 +5 21 3 875635327 +1 21 1 878542772 +407 510 4 875046752 +453 1157 2 888206576 +314 278 5 877886888 +403 546 3 879786221 +227 322 3 881518461 +110 1231 2 886988664 +44 946 3 878347847 +391 678 2 877398704 +291 685 5 874834254 +125 748 3 892835778 +394 383 2 881059704 +297 17 3 875240201 +150 324 4 878746225 +63 929 3 875747955 +13 804 2 882141997 +450 642 4 882397939 +474 602 3 887926436 +215 229 3 891436469 +75 301 4 884051510 +370 294 1 879434229 +167 1308 1 892738307 +178 2 4 882827375 +177 421 3 880130881 +288 22 5 886374286 +145 1288 4 888398197 +269 1148 4 891447062 +459 357 4 879564308 +274 71 4 878946612 +177 343 3 882141885 +374 135 4 882159077 +456 1248 3 881374767 +269 1479 2 891451111 +159 832 3 880557864 +460 744 3 882912261 +83 2 4 881971771 +373 527 4 877103846 +442 184 2 883390083 +194 456 1 879544303 +13 4 5 882141306 +87 230 5 879875818 +436 98 4 887769280 +412 526 4 879717572 +7 617 5 891354588 +138 435 5 879024232 +145 1047 3 875270764 +405 462 2 885549506 +327 88 2 887819194 +407 56 5 875042569 +42 15 4 881105633 +85 654 4 879454272 +417 449 3 880952674 +21 551 3 874951898 +7 219 1 892131924 +168 125 4 884287731 +90 303 4 891382193 +110 96 4 886988449 +276 380 3 874791383 +406 515 2 879445378 +429 1285 3 882386485 +437 663 5 880141084 +264 192 4 886122099 +144 20 4 888104559 +295 238 4 879517136 +145 673 4 875272299 +334 131 4 891547744 +386 1016 4 877654961 +346 572 5 875266600 +389 568 3 880087782 +280 1133 3 891700242 +455 724 3 879111500 +222 540 3 878184087 +24 249 4 875246216 +279 594 1 891209021 +444 916 3 891979403 +215 523 4 891435060 +193 187 4 890860351 +318 1120 3 884495206 +200 1 5 876042340 +447 760 4 878854838 +244 451 4 880608112 +144 470 2 888105993 +59 51 5 888206095 +295 420 4 879518233 +23 408 5 874784538 +374 71 5 880396292 +317 313 4 891446208 +367 561 4 876690048 +198 187 4 884207239 +188 1263 3 875071891 +267 33 5 878972650 +201 448 3 884112581 +198 979 5 884206748 +151 98 4 879524088 +342 663 4 875320297 +407 416 3 876348957 +99 64 5 885680578 +405 1119 3 885545306 +407 371 2 875116964 +128 622 4 879968332 +178 197 2 882826720 +405 77 1 885546248 +472 826 3 883904224 +299 264 2 877877290 +457 156 5 882397095 +108 222 2 879879720 +394 561 4 881060177 +95 520 4 879197970 +291 825 4 874833983 +303 953 3 879485016 +450 494 3 882373385 +222 89 5 878181739 +363 428 5 891495742 +397 95 4 885349999 +21 123 4 874951382 +184 736 3 889911633 +324 255 4 880575449 +75 225 2 884050940 +389 604 4 879991387 +130 132 5 875802006 +276 197 5 874787549 +64 313 4 889736971 +27 50 3 891542897 +456 979 3 881371694 +340 588 5 884991369 +135 173 4 879857723 +125 211 3 879455184 +403 925 4 879790468 +290 15 4 880474494 +166 751 4 886397665 +417 692 4 879648132 +423 333 3 891394747 +21 767 1 874951314 +59 919 4 888203018 +352 273 2 884290328 +363 137 5 891495742 +288 180 5 886373474 +405 946 2 885548836 +406 633 5 882461684 +235 194 5 889655232 +340 486 4 884991083 +145 558 2 877343121 +109 231 3 880582976 +181 1339 1 878962086 +417 1014 4 879646785 +11 433 4 891905003 +426 428 2 879444081 +117 748 3 880124378 +312 89 5 891698832 +416 258 5 893213549 +410 538 3 888626710 +305 96 3 886324172 +95 127 4 879195062 +383 639 4 891193181 +452 121 5 885816916 +295 965 4 879517271 +383 135 5 891193042 +236 504 3 890118075 +373 155 4 877107235 +85 150 3 890255432 +406 692 3 880131792 +225 566 4 879540678 +465 216 3 883531284 +305 628 4 886324661 +265 1197 2 875320542 +160 169 4 876862077 +308 235 3 887739800 +106 274 3 883876146 +469 513 5 879523891 +246 210 3 884921319 +305 12 5 886322930 +342 123 5 874984832 +233 506 5 877663337 +300 456 4 875650267 +26 300 4 891347537 +200 515 5 884129381 +311 185 2 884366617 +11 749 5 891901797 +5 427 3 875721167 +329 197 4 891656429 +105 270 5 889214245 +329 705 3 891656347 +1 179 3 875072370 +298 183 3 884182600 +460 275 3 882912261 +403 148 5 879786351 +425 678 1 878737593 +21 453 2 874951797 +360 1197 3 880355177 +464 289 4 878354626 +56 151 4 892910207 +460 20 4 882912469 +378 49 3 880332480 +324 123 4 880575714 +110 69 4 886987860 +320 92 5 884749306 +334 430 4 891546206 +366 559 5 888858078 +331 1141 3 877196504 +239 484 5 889179095 +59 435 5 888204553 +197 232 4 891410082 +330 252 4 876544734 +405 175 1 885546069 +334 582 5 891547235 +442 230 3 883390466 +312 863 5 891698695 +230 621 2 880485380 +435 587 3 884132403 +90 632 5 891384113 +59 612 3 888206161 +416 928 3 878879391 +450 211 5 882373865 +313 624 4 891030261 +10 211 5 877889130 +342 248 3 874984455 +223 95 5 891550649 +249 1012 3 879571998 +383 272 3 891192158 +469 855 4 879524302 +90 474 5 891383599 +466 181 4 890284857 +128 193 3 879967249 +288 223 3 886374497 +198 173 4 884207492 +347 403 5 881654386 +280 546 4 891702252 +385 616 4 884119121 +125 728 3 892838425 +203 475 3 880434318 +49 91 5 888066979 +347 820 2 881653340 +319 307 4 879975504 +10 531 5 877886911 +422 448 4 879744085 +311 306 4 884363791 +406 30 4 879793235 +380 161 2 885480046 +244 32 2 880605514 +379 9 4 880524886 +406 735 3 884630554 +416 288 5 893213796 +327 959 5 887819161 +201 188 4 884112201 +472 1011 4 875979187 +255 831 4 883216902 +275 294 4 876197443 +437 479 5 880141335 +213 502 5 878956263 +271 239 3 885849419 +326 136 4 879874933 +339 675 4 891034810 +63 258 3 875746809 +222 772 2 878181906 +92 122 3 875907535 +243 7 3 879987362 +145 452 3 882182762 +345 117 4 884991220 +303 222 3 879468414 +474 410 2 887915645 +275 50 4 876198296 +21 263 1 874951040 +37 127 4 880930071 +299 19 1 877877434 +450 847 4 882376188 +38 681 5 892429065 +425 690 1 890346866 +104 1012 4 888465708 +303 678 1 879544946 +354 7 4 891216607 +99 342 1 885678348 +454 705 3 881959818 +126 272 3 887853469 +379 187 5 880525031 +311 216 5 884364502 +385 603 5 880869422 +405 669 1 885548435 +295 729 4 879518018 +59 404 3 888205463 +269 517 4 891449189 +224 556 1 888103942 +457 285 5 882393648 +476 715 4 883364745 +425 53 4 878738596 +222 769 2 881060608 +91 568 2 891439018 +327 508 2 887744064 +62 188 3 879373638 +398 4 2 875723337 +141 282 5 884585642 +389 64 4 880087151 +419 488 5 879435722 +343 427 5 876405820 +125 56 1 879454345 +181 235 1 878963168 +380 134 3 885478583 +312 276 4 891699010 +343 174 5 876404464 +385 1524 5 879445662 +457 758 2 882551135 +13 96 4 882140104 +399 684 3 882344269 +389 712 3 881384338 +344 7 4 884814668 +407 313 4 893076947 +395 338 4 883762733 +429 747 3 882386071 +418 344 1 891282521 +373 660 4 877105075 +378 1523 2 880334067 +307 83 5 877120874 +234 285 4 891227771 +389 50 5 879915780 +458 530 4 886396005 +435 171 5 884131967 +60 618 3 883327113 +87 789 3 879876610 +328 620 3 885048861 +402 222 4 876266948 +391 510 5 877399066 +267 944 3 878973179 +408 300 3 889679857 +472 233 4 875981759 +403 181 4 879785916 +271 756 2 885848218 +7 216 4 891350900 +246 25 3 884922383 +139 740 2 879538254 +389 558 4 879991242 +190 354 4 891033606 +257 269 3 879029516 +409 429 5 881107817 +402 32 3 876267235 +201 435 4 884112201 +452 186 1 875875499 +407 173 5 875043948 +412 117 4 879717177 +92 153 4 875653605 +339 403 3 891034510 +416 652 4 876699526 +326 208 3 879875534 +202 258 4 879726342 +13 838 1 882397742 +474 480 5 887925186 +246 420 3 884922272 +122 673 3 879270511 +276 591 3 874786632 +221 385 4 875245948 +75 235 4 884050502 +69 123 4 882126125 +218 173 3 877488316 +186 79 5 879023460 +445 121 1 891200233 +299 692 4 877880915 +180 778 2 877128388 +42 469 4 881109324 +13 559 1 882396913 +233 483 5 876021170 +79 306 5 891271792 +445 246 1 891199682 +94 381 4 886008764 +380 414 2 885480046 +450 559 3 882376446 +417 550 3 879649178 +138 187 5 879024043 +141 335 1 886447735 +184 221 5 889907838 +88 308 4 891037396 +474 68 3 887926804 +405 142 1 885549004 +405 559 5 885548330 +69 235 3 882126048 +385 81 3 879442028 +233 828 4 875508169 +131 276 5 883681723 +294 1088 1 889243393 +116 346 4 886310197 +476 792 4 883365019 +478 143 5 889396797 +429 282 3 882386983 +268 195 4 875309719 +373 778 5 877105529 +328 748 3 885045245 +411 186 5 892845605 +407 69 4 875042569 +303 720 2 879468375 +358 382 2 891269913 +286 411 2 876522133 +378 778 3 880056073 +216 221 4 881432501 +474 736 3 887927509 +328 326 4 885044607 +402 96 5 876267234 +265 323 3 875320112 +279 1485 4 878262195 +201 76 4 884140709 +399 546 2 882341383 +22 53 3 878888107 +327 874 3 887737629 +473 273 5 878157329 +159 588 2 884027316 +176 246 5 886047994 +176 343 2 886047595 +291 9 5 874805804 +18 654 4 880130110 +244 92 4 880602478 +421 657 4 892241422 +178 202 5 882826782 +339 91 5 891034282 +268 241 3 875310603 +454 286 3 881958782 +118 180 5 875385136 +278 882 3 891295007 +42 679 2 881108548 +313 684 4 891017088 +40 269 1 889041283 +202 423 3 879727116 +458 178 4 886398187 +474 1014 3 887916567 +450 1446 4 882812558 +119 813 4 874774956 +463 250 4 889935953 +279 229 4 889326161 +423 1011 3 891395547 +466 188 3 890284766 +474 528 5 887923924 +259 185 4 874724781 +49 1080 4 888066734 +200 495 3 884129092 +26 316 3 891349122 +321 61 5 879441128 +463 950 3 877385590 +157 255 3 886889876 +5 451 1 875636571 +249 283 5 879572600 +262 7 4 879790603 +453 73 4 888206132 +49 561 2 888067460 +291 420 4 875086991 +322 513 4 887314185 +442 873 2 883388120 +10 357 5 877889186 +303 198 4 879467413 +56 781 4 892677147 +293 290 2 888905198 +291 412 3 875086669 +151 939 4 879524514 +463 225 3 877385489 +303 324 3 879466065 +450 204 4 882377590 +216 25 3 881428365 +405 654 2 885548579 +24 300 4 875245985 +22 515 5 878887869 +363 431 2 891495301 +23 629 4 874786098 +466 265 3 890285159 +104 1115 4 888465263 +313 8 3 891014551 +447 180 5 878855989 +115 7 5 881171982 +62 866 2 879373195 +394 288 4 880886919 +130 658 5 875802173 +91 495 4 891439171 +368 89 4 889783678 +145 313 4 883840638 +376 663 3 879434750 +184 210 4 889911069 +6 200 3 883602422 +101 111 2 877136686 +91 614 4 891439018 +464 678 3 878354722 +347 118 4 881652710 +305 904 4 886307860 +455 56 5 879110844 +7 556 3 891352659 +378 559 4 880056735 +279 367 3 875309861 +244 86 4 880605896 +391 89 3 877399380 +342 209 5 875319554 +391 200 5 877399269 +266 268 4 892256828 +458 319 4 889323714 +276 86 3 874791101 +472 931 2 883904681 +320 164 4 884751246 +311 323 3 884364139 +10 162 4 877892210 +324 879 4 880575234 +286 597 3 876522360 +276 396 4 874792118 +396 595 3 884646467 +267 128 5 878972170 +318 405 2 884494797 +454 51 2 888267158 +461 259 2 885355679 +43 385 5 883955387 +399 140 4 882343731 +70 496 4 884064545 +450 904 5 889568507 +26 129 4 891350566 +25 141 4 885852720 +316 199 3 880853598 +321 87 3 879439763 +416 1521 3 892440206 +406 25 1 879540106 +474 176 5 887923972 +428 313 5 885943749 +450 1092 3 882469627 +10 161 4 877892050 +308 209 4 887737686 +389 484 5 880087073 +198 959 3 884209264 +436 1061 3 887771997 +457 825 5 882553112 +435 381 4 884133585 +13 237 5 882140285 +226 405 4 883889507 +424 294 5 880858979 +456 708 4 881373756 +327 405 2 887745589 +186 306 4 891717690 +326 174 4 879874825 +334 877 3 891544264 +454 315 4 888015651 +455 20 3 879109594 +158 659 5 880134947 +239 443 5 889181015 +386 281 3 877655145 +435 382 3 884131949 +377 358 3 891297023 +308 408 5 887738268 +361 781 2 879441179 +267 189 4 878971874 +417 176 5 879646891 +133 308 4 890588639 +268 654 5 875309718 +373 286 3 877098042 +60 366 4 883327368 +397 896 4 889760725 +389 410 3 879916238 +175 64 5 877107552 +269 393 1 891451036 +446 269 4 879787730 +472 689 4 883903273 +454 310 4 881958464 +11 659 5 891904920 +116 879 2 876452094 +474 518 4 887926633 +149 338 2 883512904 +189 44 4 893266376 +342 1014 1 874984531 +13 770 4 882397581 +44 143 4 878347392 +293 491 4 888905923 +332 182 5 888098088 +303 223 4 879466742 +323 475 3 878739393 +291 448 5 874867741 +118 288 5 875385386 +429 415 3 882386785 +407 1188 2 876345492 +438 269 4 879867960 +37 92 4 880930072 +374 1014 1 880394138 +45 225 4 881014070 +405 793 1 885547313 +291 761 3 874834914 +195 558 3 890589408 +178 300 5 882823301 +227 124 4 879035158 +92 117 4 875640214 +454 174 4 888266643 +315 178 4 879799486 +416 723 4 886318827 +177 161 3 880130915 +212 527 5 879303892 +411 88 3 891035761 +398 163 3 875738333 +418 331 3 891282521 +114 89 5 881260024 +175 661 4 877107432 +5 430 5 875636631 +363 631 1 891497440 +397 338 4 882839517 +450 281 4 882399664 +81 100 3 876533545 +364 988 2 875931561 +457 546 2 882393860 +119 294 1 892564313 +361 66 4 879441075 +56 483 4 892682889 +44 1 4 878341315 +99 92 4 885680837 +269 488 4 891448926 +405 1479 1 885547735 +425 222 5 878738486 +445 50 2 891199715 +406 42 5 879445936 +333 294 3 891045496 +359 408 5 886453239 +345 148 3 884991303 +416 560 3 886319079 +468 39 3 875296309 +59 56 5 888204465 +345 1096 3 884994682 +435 184 5 884131771 +346 110 2 875266064 +11 707 5 891906389 +102 201 2 888803051 +407 2 4 875553509 +58 496 2 891611593 +42 729 3 881108345 +270 584 5 876955067 +246 41 2 884923811 +16 948 3 877717397 +449 293 4 879958803 +351 288 3 879481550 +450 526 4 882396245 +201 379 3 884114813 +174 238 5 890168700 +398 435 5 875717106 +262 385 2 879795030 +447 91 4 878856549 +393 540 3 889731753 +371 234 5 877487691 +90 721 3 891385215 +436 537 4 887769471 +388 678 4 886442062 +363 1512 1 891494754 +308 186 4 887738152 +307 380 3 879538922 +280 1297 4 891702230 +196 70 3 881251842 +90 193 4 891383752 +18 65 5 880130333 +435 313 5 884268770 +83 580 4 883869630 +222 229 3 878184315 +454 164 3 881960265 +451 243 4 879012510 +256 225 4 882152605 +363 443 4 891500334 +87 38 5 879875940 +99 751 4 885678397 +254 1470 2 886474650 +295 181 4 879517860 +393 571 3 889731793 +463 24 3 877385731 +354 958 4 891218271 +314 595 3 877886375 +194 376 2 879528752 +478 122 2 889397778 +73 269 4 888792172 +1 187 4 874965678 +455 334 3 892230883 +60 1121 3 883326215 +395 237 4 883764974 +427 263 5 879701253 +2 111 4 888551853 +416 480 5 893213918 +72 318 5 880037702 +189 499 4 893265596 +222 63 3 878183713 +276 825 3 874787006 +32 222 3 883717600 +82 111 4 876311423 +347 70 2 881654428 +112 301 3 884992566 +130 450 2 878537602 +452 69 5 875275699 +308 48 4 887736880 +201 288 4 884110887 +273 316 4 891293201 +463 347 1 889936589 +101 181 4 877137015 +387 463 4 886483526 +435 616 2 884133284 +271 196 4 885848886 +455 531 3 879111291 +394 72 4 880889629 +65 393 4 879217881 +456 22 4 881373573 +271 87 3 885848802 +392 99 5 891038433 +102 338 2 887051723 +378 91 3 880331510 +269 537 5 891455816 +474 735 4 887924619 +463 242 2 889935629 +421 89 5 892241362 +418 302 2 891282551 +159 260 2 893255969 +259 147 4 888630664 +301 824 3 882075055 +270 50 5 876954004 +378 176 4 880046362 +43 290 4 884029192 +351 326 5 879481589 +374 100 5 880392873 +374 24 3 880393553 +346 273 4 874948783 +235 191 4 889654971 +18 79 4 880131450 +260 748 4 890618198 +249 175 4 879572106 +279 532 1 875298597 +95 98 4 879197385 +466 128 2 890284819 +354 419 4 891217755 +279 274 3 875296792 +256 1 5 882150980 +357 1047 4 878951691 +147 313 4 885593965 +354 638 4 891217547 +424 14 4 880859552 +198 693 3 884207734 +391 12 5 877399745 +208 97 4 883108797 +447 288 4 878855082 +470 475 4 879178568 +437 162 4 880141129 +246 393 3 884922627 +15 308 5 879455334 +393 1407 3 889731010 +160 182 5 876770311 +128 172 3 879967248 +253 328 4 891627790 +162 508 5 877635662 +370 322 3 879434308 +13 563 1 882397039 +457 45 5 882397133 +397 174 5 885349999 +222 475 4 877563252 +232 76 3 888550060 +421 466 4 892241459 +387 473 4 886481033 +476 1037 1 883365384 +250 331 3 878089033 +305 582 4 886323506 +463 593 1 877386923 +72 147 5 880037702 +85 529 3 879827935 +435 82 5 884132100 +412 487 3 879717118 +152 234 4 882474970 +59 205 3 888204260 +354 513 5 891217782 +311 23 3 884364570 +301 73 4 882075962 +123 9 5 879873726 +454 875 1 888266433 +296 191 5 884197193 +272 514 5 879455254 +395 313 3 883762135 +13 478 4 884538571 +437 683 2 881001121 +179 321 1 892151331 +254 94 3 887347350 +215 15 3 891435761 +435 52 5 884132403 +70 150 3 884065247 +460 297 3 882912342 +474 661 4 887925620 +354 707 4 891217633 +276 951 3 874792969 +99 829 4 885679382 +178 219 4 882828350 +480 190 5 891208265 +165 500 3 879525832 +434 369 4 886724972 +267 108 4 878971224 +360 23 5 880356240 +405 189 1 885549192 +119 710 4 886177162 +13 872 3 882139327 +38 742 5 892430001 +21 17 4 874951695 +151 52 5 879524586 +441 25 3 891036306 +453 566 3 877561593 +377 268 3 891295937 +327 559 2 887746328 +181 681 1 878961474 +393 845 4 887744202 +56 403 4 892678942 +6 494 4 883601713 +474 52 4 887925751 +178 176 4 882826782 +445 886 3 891035539 +11 228 3 891905824 +183 229 3 891463591 +347 831 1 881653340 +171 262 4 891034641 +284 306 4 885329146 +84 98 4 883453755 +255 100 3 883216358 +7 97 5 891351201 +65 365 3 879216672 +417 484 4 879647380 +70 403 4 884064862 +472 977 3 875979317 +250 271 4 883263374 +219 616 5 889403435 +450 139 5 882812558 +417 1119 3 879648382 +158 798 4 880134815 +92 704 3 875812121 +399 597 3 882341330 +249 53 4 879572760 +263 300 3 891297330 +116 1226 2 876454090 +384 989 4 891273905 +99 275 1 888469419 +267 65 4 878972071 +95 892 3 882803890 +370 514 4 879434969 +232 150 3 891565095 +152 783 4 884018961 +305 200 3 886324661 +15 303 3 879455080 +373 715 2 877105075 +42 1042 3 881109325 +342 133 4 874984207 +23 175 5 874785526 +226 25 4 883890235 +385 136 3 879442402 +75 1028 4 884050590 +379 100 5 880524541 +216 1218 3 881428365 +429 153 4 882385090 +44 591 4 878341315 +148 69 5 877019101 +64 32 1 889739346 +31 340 3 881547788 +343 137 4 876402941 +158 570 3 880134445 +458 496 3 886398289 +94 629 4 891721286 +479 680 3 887064404 +327 55 4 887820293 +221 470 3 875245374 +403 7 5 879785867 +151 69 4 879524368 +426 606 5 879442044 +230 418 5 880484937 +303 90 4 879485111 +181 813 2 878962279 +269 821 1 891450427 +450 200 3 882376188 +276 1079 2 874787300 +95 447 2 880572166 +49 1028 2 888069304 +145 635 4 875272349 +332 1315 2 887916623 +151 476 3 879543423 +7 135 5 891351547 +452 502 2 885817844 +417 765 3 879649632 +270 26 5 876954995 +327 10 4 887744432 +264 367 4 886123656 +437 191 4 880140726 +95 140 3 879199014 +419 306 5 879435242 +232 289 4 880062259 +313 474 5 891016193 +200 841 3 876042556 +354 516 5 891217851 +373 1078 3 877105451 +92 826 2 886443534 +157 1051 4 886890835 +357 744 5 878951653 +429 32 4 882386309 +352 89 5 884289693 +100 879 4 891374946 +474 1028 1 887916438 +425 288 5 878737512 +445 150 2 890987617 +97 189 4 884238887 +49 928 2 888068651 +429 569 2 882387506 +293 578 2 888907913 +406 589 5 879445474 +429 1014 3 882386333 +405 574 1 885546724 +416 929 4 876698255 +102 993 2 883748352 +118 1079 4 875385442 +454 1454 2 888266907 +422 50 4 875129911 +110 55 3 886988449 +276 1083 3 877934891 +380 736 4 885478780 +458 174 3 886397109 +463 21 1 890453075 +130 555 4 888211930 +432 405 4 889416490 +254 498 4 886472115 +409 276 4 881108455 +43 1054 3 884029658 +457 79 5 882396869 +437 98 5 880141962 +394 39 4 880888501 +436 715 4 887770668 +22 85 5 878886989 +329 892 2 891655614 +453 231 2 877562293 +450 367 3 882376282 +326 183 5 879875851 +193 366 4 890860428 +472 940 4 875982560 +398 182 4 875657802 +64 143 4 889739051 +381 656 4 892696471 +59 201 4 888204260 +365 315 4 891303384 +385 185 5 880870205 +457 679 4 882547723 +145 1287 2 888398563 +381 79 3 892695996 +201 234 5 884112537 +168 121 4 884287731 +392 199 5 891038466 +416 217 4 886317880 +417 169 3 879647498 +328 1112 4 885049459 +380 416 2 885480239 +391 64 5 877399746 +42 443 3 881108093 +2 258 3 888549961 +417 358 2 879649763 +342 15 3 875318154 +102 671 3 888803002 +343 559 3 876406822 +292 153 4 881105587 +440 1073 4 891577814 +200 280 4 884127798 +412 288 4 879716566 +389 401 3 880088578 +334 969 4 891628832 +299 813 4 878192192 +344 764 1 886381986 +215 134 4 891435266 +366 98 5 888857750 +124 209 3 890399902 +56 423 5 892737191 +454 945 3 881960083 +178 1315 4 882824291 +429 806 2 882384950 +115 121 3 881170065 +264 774 2 886122446 +344 815 2 884900409 +87 167 4 879876703 +275 210 4 880314320 +54 272 5 890608175 +280 31 4 891701344 +478 318 5 889389232 +392 200 3 891038433 +464 269 5 878354626 +173 331 4 877557028 +450 553 2 882373928 +380 1404 2 885478646 +457 949 3 882549287 +351 327 5 883356684 +465 50 4 883530778 +222 24 3 877563622 +193 73 3 889127237 +430 744 3 877225965 +279 809 3 891208945 +292 7 3 881104068 +429 794 3 882385593 +452 609 4 875562374 +401 280 2 891032607 +283 435 5 879298206 +1 135 4 875072404 +479 228 4 879461060 +457 53 4 882548645 +201 962 4 884113082 +249 273 4 879640284 +205 300 3 888284245 +385 1286 3 879446952 +381 673 3 892696209 +286 394 5 877534771 +180 658 5 877355598 +299 728 2 889503159 +256 620 3 882151743 +307 230 5 879538921 +429 568 3 882385859 +84 15 4 883449993 +452 467 3 885491030 +425 491 2 890347047 +118 675 5 875385386 +204 300 3 892388900 +456 568 2 881374246 +321 529 4 879440342 +43 496 5 883955605 +301 237 4 882074291 +344 972 4 884901503 +395 210 5 883763136 +403 123 3 879786112 +320 566 3 884749384 +141 1244 3 884585364 +363 699 2 891495850 +378 280 2 880044489 +405 400 1 885549044 +380 58 2 885479355 +234 630 2 892334141 +416 496 5 893212572 +416 1089 2 876697695 +406 787 3 880132047 +484 235 2 881450160 +295 1473 4 879519473 +290 230 4 880473557 +330 357 4 876546439 +343 117 2 876403121 +144 847 4 888104063 +254 102 3 886473929 +127 750 1 884363851 +454 507 3 881960265 +239 162 5 889179131 +246 138 1 884923715 +326 705 3 879875399 +94 510 5 885873089 +484 550 4 891195390 +440 1504 4 891578226 +409 489 5 881107817 +201 950 3 884140610 +240 272 5 885775536 +416 930 3 878878814 +268 227 4 875310824 +21 563 2 874951898 +274 846 2 878946204 +60 97 3 883326215 +59 9 4 888203053 +246 652 5 884921033 +268 480 5 875309430 +301 94 4 882079172 +172 612 3 875537964 +486 846 2 879875154 +13 216 3 881515193 +405 302 4 885544635 +456 963 4 881374047 +187 735 4 879465532 +378 195 3 880046516 +405 778 1 885546248 +189 196 5 893266204 +268 407 1 876514002 +468 1008 4 875283843 +318 205 3 884496334 +48 483 5 879434607 +299 346 3 886101436 +401 144 5 891033523 +442 546 3 883390574 +140 294 3 879013651 +290 683 2 880473415 +236 1401 3 890116335 +87 100 5 879876488 +357 280 5 878951831 +422 181 4 875129839 +193 412 3 889127787 +416 1007 5 893213918 +198 403 4 884209353 +484 70 5 891195036 +389 630 3 880087389 +468 209 5 875296309 +94 419 3 891721615 +407 399 3 876342618 +41 196 3 890687593 +292 24 4 881104481 +125 210 5 879454243 +387 4 3 886482969 +461 682 1 885355705 +230 501 3 880485352 +250 844 4 878090414 +398 1126 4 875722533 +83 66 4 880307898 +451 262 1 879012647 +387 357 5 886479690 +138 518 4 879024327 +60 661 4 883326808 +445 1187 3 891200137 +236 523 2 890116221 +450 523 5 882371904 +391 205 5 877399337 +332 1011 3 887938631 +274 762 5 878945610 +332 298 4 887916575 +290 434 4 880474422 +455 343 4 882141285 +276 1006 3 874787353 +389 497 4 879991461 +279 824 4 875297456 +385 659 4 879441942 +174 1 3 886433898 +334 1313 4 891544407 +280 215 3 891701723 +406 1021 5 879446718 +15 251 2 879455541 +457 237 4 882393712 +323 121 3 878739618 +276 653 5 874795729 +465 198 2 883532119 +297 508 4 874955210 +341 358 1 890758050 +293 416 4 888907575 +320 763 4 884748683 +52 864 3 882922661 +200 546 3 884127745 +171 340 3 891034756 +262 99 3 879792262 +177 806 4 880131216 +387 603 4 886480548 +151 448 2 879528779 +15 936 5 879455889 +13 800 1 882397067 +246 211 4 884922605 +326 608 4 879875930 +417 928 3 879646821 +313 185 5 891013773 +308 208 4 887736798 +177 654 4 880131106 +254 1263 1 886474426 +405 625 3 885548836 +368 56 4 889783407 +78 301 5 879633467 +411 709 5 892845604 +447 133 4 878856052 +407 1230 2 876342822 +484 195 5 891195349 +360 744 4 880355066 +24 55 5 875323308 +327 746 3 887818992 +200 826 4 876042556 +6 165 5 883600747 +474 180 5 887924028 +60 181 4 883326754 +11 259 3 891902270 +330 699 5 876547032 +244 581 4 880607903 +467 50 4 879532385 +267 364 2 878974460 +49 145 1 888067460 +194 628 3 879540171 +184 117 2 889907995 +444 1483 2 891978807 +346 431 5 874950616 +374 151 3 880393811 +102 56 3 888801360 +269 357 5 891447773 +123 504 5 879872948 +425 241 2 878738548 +448 269 5 891887338 +406 93 4 879445562 +89 7 5 879441422 +405 671 2 885548330 +417 421 4 879647561 +7 192 4 891352010 +295 229 4 879519010 +359 7 5 886453325 +413 181 5 879969591 +46 125 4 883616284 +406 430 4 879445430 +183 216 4 891479033 +465 109 3 883532119 +425 204 4 890347138 +125 294 4 892835778 +299 167 3 889503159 +128 191 4 879967080 +373 162 3 877098568 +183 212 4 891467870 +408 319 5 889679947 +11 414 3 891905393 +92 234 4 875654297 +474 134 4 887923972 +274 1063 4 878946502 +234 182 3 892078567 +346 616 1 874948890 +23 597 3 874785024 +453 7 5 877562135 +262 423 4 879793854 +455 214 3 879112122 +253 156 3 891628614 +54 340 4 890608225 +102 650 3 888801063 +345 170 5 884902317 +159 1278 3 880557782 +334 230 4 891548808 +110 402 4 886988293 +453 456 3 877552540 +417 392 3 880950280 +141 235 1 884585437 +362 323 2 885019651 +387 233 3 886483151 +210 154 4 887730341 +102 182 3 889362833 +399 407 3 882341644 +465 474 3 883531246 +60 121 4 883327664 +326 38 3 879877005 +405 31 1 885548579 +356 315 4 891405619 +367 218 4 876689962 +435 1109 3 884132643 +287 200 4 875335237 +442 79 3 883390366 +77 201 4 884752785 +164 258 5 889401221 +452 805 4 875562441 +184 402 3 889910013 +256 234 5 882164696 +193 274 3 889126272 +268 402 1 875745231 +417 101 3 879649001 +479 931 2 879460681 +16 467 5 877720733 +416 385 5 893213103 +95 183 5 879197329 +54 7 4 880935294 +429 193 4 882385267 +264 222 5 886122577 +480 175 3 891208356 +7 447 5 891350900 +450 685 4 882374134 +253 732 4 891628651 +267 176 5 878971874 +458 48 4 886396192 +399 187 3 882346401 +370 435 3 879434999 +58 176 4 884304936 +258 258 2 885700811 +253 523 4 891628501 +374 202 3 880394716 +276 1245 3 874787091 +279 712 5 875312339 +416 176 4 876699652 +268 100 3 875742316 +188 483 5 875072009 +249 742 3 879640241 +294 472 3 889242370 +200 451 4 884129006 +339 233 1 891036503 +411 304 3 891034982 +69 763 3 882126156 +156 357 4 888185677 +186 106 2 879023242 +18 60 4 880132055 +451 322 4 879012510 +405 664 1 885546724 +279 990 1 875249134 +296 521 4 884197091 +417 748 4 879646785 +339 257 4 891033710 +249 583 4 879640918 +326 177 3 879876881 +85 319 4 879452334 +5 135 4 875637536 +330 238 5 876546323 +336 33 3 877756242 +254 400 3 886475790 +405 653 1 885548579 +480 183 4 891208651 +206 361 1 888180082 +405 452 5 885548434 +30 258 5 885941156 +442 44 2 883391146 +410 898 3 888627138 +94 1091 3 891722306 +378 423 4 880056287 +184 166 3 889910684 +295 217 4 879517705 +253 182 3 891628374 +385 479 5 879441538 +474 317 4 887925187 +254 133 5 886473158 +467 150 4 879532385 +312 488 5 891698334 +185 690 4 883526267 +82 514 4 878769442 +22 996 1 878887158 +130 746 5 876252012 +409 321 2 881104837 +372 23 5 876869701 +77 511 2 884753152 +62 230 2 879375738 +354 1017 3 891216896 +308 123 3 887738619 +437 213 4 881000931 +237 705 3 879376487 +342 28 2 875319383 +409 97 5 881109216 +157 50 4 886890541 +352 100 4 884290428 +99 619 4 885679091 +446 748 2 879787149 +92 29 3 875656624 +200 1419 5 884130679 +197 399 2 891410082 +95 175 5 879197603 +196 66 3 881251911 +387 273 4 886481151 +117 122 2 886022187 +143 272 4 888407586 +372 185 5 876869445 +94 386 4 891722382 +276 50 5 880913800 +312 428 3 891698424 +259 1135 5 877926006 +151 466 5 879528496 +184 631 4 889910612 +484 300 4 887519214 +387 215 2 886483906 +125 79 5 879454100 +316 170 4 880853810 +23 202 3 874785165 +469 499 5 879524485 +214 708 4 891544152 +145 559 2 877343156 +20 498 3 879669001 +296 257 5 884196921 +178 274 4 882824253 +354 173 3 891217394 +405 1240 1 885549192 +487 1044 3 884051761 +363 653 3 891495682 +459 978 2 879563435 +357 270 5 878951101 +280 232 3 891701649 +130 472 4 876251072 +254 313 5 886470465 +429 24 3 882386309 +348 225 3 886523645 +60 144 4 883325944 +412 724 4 879717095 +286 285 1 879781450 +194 197 4 879522021 +259 475 5 877925049 +361 525 4 879441253 +279 660 4 875313473 +428 301 4 885943782 +458 925 3 886395166 +354 387 4 891307180 +405 622 1 885548877 +450 478 5 887835272 +304 313 5 884968415 +417 655 4 879647900 +458 517 4 886398289 +385 1128 3 879441662 +234 48 2 892334107 +263 100 5 891298453 +387 223 5 886479771 +95 451 3 880572249 +463 410 1 890530286 +92 356 3 875813171 +417 638 4 879648078 +145 800 2 875272349 +198 1142 5 884205114 +447 174 5 878856052 +213 685 3 878870987 +422 15 3 875129882 +298 864 3 884183912 +487 56 4 883528441 +391 31 2 877399659 +269 51 2 891451111 +403 866 4 879786294 +194 135 3 879521474 +385 151 2 879440127 +303 12 4 879466937 +262 660 4 879794419 +222 80 2 881060155 +143 333 5 888407708 +286 251 5 876521678 +280 388 2 891702486 +407 684 3 875045268 +345 11 4 884992337 +416 338 3 880159023 +158 120 1 880134014 +459 322 4 879561679 +429 611 4 882385593 +416 204 5 893213404 +301 588 5 882077055 +65 50 5 879217689 +378 326 3 892382865 +110 1218 3 886989473 +75 220 1 884050705 +344 509 4 889814195 +429 56 4 882384683 +486 471 5 879874969 +159 294 4 884026788 +334 346 5 891544209 +387 1240 5 886483620 +401 202 4 891033319 +305 748 3 886308147 +373 161 4 877105005 +227 288 2 879035072 +194 633 3 879521254 +457 727 4 882396832 +276 426 3 874793092 +393 48 2 889728177 +13 523 4 882141306 +303 216 5 879466604 +291 285 4 874833746 +393 172 5 887745883 +405 40 2 885547735 +145 380 3 885557699 +7 612 5 891351121 +287 845 5 875334587 +437 89 2 880140101 +185 181 4 883524475 +279 234 2 875654542 +335 305 4 891566861 +448 292 4 891888178 +417 81 5 879647196 +363 566 3 891496439 +334 277 3 891544904 +26 151 3 891372429 +373 132 3 877106940 +399 809 3 882352357 +75 756 2 884050309 +62 273 4 879371980 +102 185 3 888802940 +10 697 3 877888677 +184 127 5 889907396 +42 229 4 881108684 +236 210 2 890118153 +85 393 4 879828967 +21 567 2 874951858 +427 1296 5 879701225 +249 1047 3 879640603 +85 10 4 879452898 +125 659 4 879454628 +55 117 3 878176047 +314 378 5 877888168 +69 282 3 882126048 +468 69 4 875291570 +158 168 5 880134948 +195 127 5 875771441 +7 91 3 891353860 +152 215 5 880149882 +286 658 5 877533543 +381 493 4 892697111 +72 443 3 880037418 +464 482 5 878355258 +339 484 5 891032495 +474 484 5 887925751 +54 25 4 880936500 +455 255 2 884027240 +392 180 5 891038371 +385 152 3 879445856 +222 679 2 881059678 +378 226 3 880332831 +361 813 4 879440475 +286 552 3 877535072 +416 997 3 876699526 +289 254 1 876790734 +336 122 5 877757134 +59 276 5 888203095 +234 980 2 891227851 +277 276 4 879543454 +457 370 3 882396133 +85 416 3 882994912 +387 735 2 886484012 +373 1087 1 877104086 +327 2 2 887820385 +394 132 4 880887000 +373 48 5 877098223 +279 1195 1 875312339 +152 410 4 882478038 +291 581 5 874834827 +207 993 3 877879206 +466 349 2 890283636 +393 1178 3 889729460 +456 710 3 881374649 +7 588 4 891352261 +429 128 3 882386424 +45 762 4 881013563 +393 81 2 889728324 +234 530 4 892333573 +398 154 2 875718614 +400 321 4 885676452 +151 525 4 879528570 +5 449 2 875636099 +332 8 5 888360108 +429 134 5 882385728 +416 328 5 893213644 +268 27 4 875744136 +38 84 5 892430937 +417 7 3 879646260 +94 225 3 891722646 +120 15 4 889490244 +5 226 3 875635962 +424 989 2 880859084 +482 321 3 887644023 +411 258 4 892845634 +435 63 2 884133757 +379 684 4 880525469 +95 180 3 880570852 +343 1067 3 876403078 +323 479 4 878739801 +451 683 1 879012470 +187 663 3 879465242 +76 216 4 875028624 +92 1040 3 876175658 +222 209 4 878181457 +377 7 4 891299010 +13 824 3 886302261 +236 1039 2 890115996 +437 131 5 880140787 +97 1 4 884238911 +455 508 4 882141385 +144 242 4 888103444 +381 1407 3 892697314 +454 378 3 888267128 +471 596 1 889827881 +329 198 4 891656268 +87 780 4 879877173 +387 549 5 886484012 +354 287 3 891216854 +458 321 3 889323855 +303 517 5 879484480 +20 588 4 879669120 +426 505 4 879445005 +28 164 4 881960945 +113 328 5 875076044 +1 68 4 875072688 +332 293 4 887916624 +343 79 4 876406144 +456 447 3 881374332 +251 22 5 886271955 +58 692 2 884305123 +235 69 4 889655468 +345 1226 3 884994592 +299 259 3 877877323 +332 12 5 888098205 +305 690 4 886307828 +130 469 5 876251693 +406 275 3 879446061 +96 174 5 884403020 +213 156 5 878955474 +212 199 5 879303831 +354 154 4 891217897 +317 264 4 891446843 +177 12 5 880130825 +435 225 3 884134076 +417 1215 2 879646712 +416 53 2 876699946 +152 371 4 882477356 +95 91 5 880573288 +454 153 3 888267521 +314 761 4 877889073 +407 88 3 876340144 +430 436 4 877226365 +153 294 2 881370859 +416 1041 3 886319408 +169 498 3 891359170 +487 280 5 883444860 +179 302 4 892151173 +21 872 2 874950889 +269 197 5 891447961 +102 672 1 888803148 +94 401 4 891722678 +320 586 3 884749412 +250 235 2 878089786 +7 660 5 891353051 +409 709 4 881108496 +222 651 4 878184290 +487 455 2 883444252 +304 286 1 884967017 +276 108 3 874786924 +94 451 4 891723494 +238 926 3 883576543 +270 546 4 876954484 +65 660 5 879216880 +327 484 3 887745303 +279 396 3 875314231 +322 196 4 887314352 +416 123 4 876697205 +271 118 3 885848132 +222 367 2 878181563 +363 222 5 891496513 +462 358 1 886365638 +471 477 5 889827918 +426 478 4 879442785 +373 633 4 877098262 +5 401 5 875636308 +389 95 3 880165832 +188 226 3 875074266 +280 161 4 891701249 +332 257 4 887916575 +182 191 4 876435434 +327 22 4 887744167 +354 955 3 891307180 +106 12 4 881451234 +55 181 4 878176237 +464 358 3 878354680 +35 261 3 875459046 +13 463 5 882140318 +207 224 3 884386473 +303 95 5 879484480 +21 680 1 874950972 +200 1219 3 884130289 +481 318 1 885828807 +13 327 3 881515521 +422 293 3 875130027 +406 769 1 879793011 +429 436 4 882386171 +38 445 2 892429399 +458 847 5 889324370 +42 173 5 881107220 +222 208 3 881059014 +2 295 4 888551164 +87 62 5 879875996 +27 286 3 891543393 +328 198 3 885045844 +115 183 5 881171488 +339 433 4 891033542 +339 383 1 891036834 +354 275 4 891216526 +431 988 2 877844657 +447 591 4 878855139 +119 1052 4 886177162 +183 77 3 891466405 +431 322 4 877844559 +62 431 2 879374969 +326 485 5 879875483 +271 479 4 885848615 +346 157 3 874950966 +439 257 4 882893737 +399 98 4 882342894 +91 612 4 891439471 +450 177 4 887136369 +130 769 3 880396541 +234 470 2 892335797 +166 984 5 886397802 +83 717 4 880307339 +276 473 4 874786831 +389 1147 4 879991387 +13 672 1 882396914 +463 311 4 889936814 +391 508 2 877400037 +293 742 2 888904927 +391 60 5 877399746 +279 153 5 891209077 +333 255 3 891045624 +405 1139 1 885546859 +414 310 4 884998993 +324 248 5 880575493 +487 597 4 883444674 +79 19 5 891271792 +221 23 4 875245462 +451 264 3 879012604 +385 1012 3 879440211 +379 89 4 880525424 +293 367 2 888906288 +450 742 4 882396564 +280 746 4 891701148 +327 151 4 887745871 +334 762 3 891545044 +263 1126 5 891298391 +487 470 5 883530409 +405 947 1 885548048 +7 294 1 892130809 +220 300 5 881197663 +11 56 4 891904949 +62 252 3 879373272 +389 80 3 880614254 +487 474 4 883445752 +365 342 2 891303614 +164 845 3 889402071 +145 988 1 891510040 +23 294 1 876785901 +311 483 4 884364437 +270 928 4 876956137 +94 647 5 891720921 +361 59 4 879440652 +173 321 4 877556864 +276 410 4 874786686 +18 476 3 880132399 +61 304 4 891220884 +72 134 5 880037793 +429 367 3 882386485 +151 286 5 879523838 +450 1044 4 887139844 +291 5 5 874834799 +135 98 5 879857765 +394 655 5 880888313 +5 405 3 875635225 +264 702 4 886123531 +339 1017 5 891033567 +354 100 5 891216656 +103 1089 1 880420178 +280 162 3 891701431 +44 98 2 878347420 +465 477 4 883530742 +308 143 4 887739136 +14 12 5 890881216 +293 313 4 888904004 +1 146 4 875071561 +456 231 2 881375226 +279 16 4 875296792 +314 1210 4 877889861 +423 977 1 891395787 +417 1018 3 879649247 +334 333 4 891544233 +467 762 3 879532478 +173 269 4 877556626 +311 276 4 884963282 +405 655 5 885545401 +460 129 3 882912261 +90 709 5 891383752 +435 841 2 884134553 +471 99 2 889827918 +279 398 4 875310764 +18 735 4 880130582 +435 123 2 884133509 +373 1147 4 877104115 +379 12 5 880524943 +346 29 4 875264137 +450 509 4 882398567 +115 4 4 881172117 +401 157 3 891033582 +472 118 4 875979082 +303 800 3 879485352 +399 265 3 882342776 +230 515 5 880484567 +416 366 4 886318128 +325 174 2 891478006 +69 475 3 882072869 +268 780 3 875743929 +343 23 5 876404499 +313 192 3 891015011 +87 575 3 879877208 +474 100 5 887915413 +339 451 3 891034151 +486 15 3 879875278 +469 484 5 879524062 +178 318 5 882826982 +83 846 3 891181639 +92 1073 5 875653271 +215 480 5 891436543 +130 54 5 876251895 +13 99 4 882398654 +112 879 4 884992566 +11 716 3 891905058 +454 607 2 888267315 +205 286 2 888284245 +295 660 5 879518143 +130 1151 3 877984840 +416 443 5 893213549 +311 622 3 884364437 +58 124 5 884304483 +378 845 3 880044419 +463 100 4 877385237 +401 528 5 891033442 +461 321 3 885355757 +418 315 2 891282521 +451 319 2 879012510 +75 123 3 884050164 +92 294 3 875640679 +432 123 3 889416312 +343 238 4 876404647 +38 70 5 892432424 +224 1221 3 888082742 +472 756 4 875978922 +381 526 4 892696831 +141 815 4 884585070 +307 215 4 879283036 +334 95 3 891548069 +454 746 2 881959778 +149 323 2 883512928 +474 474 5 887923789 +42 83 4 881108093 +229 245 3 891632385 +128 487 5 879968029 +392 297 4 891038137 +85 258 4 882812472 +458 591 3 886394730 +75 323 2 884049789 +10 50 5 877888545 +13 785 3 882141924 +325 211 3 891478627 +174 953 5 886514377 +463 10 1 890453075 +21 201 5 874951658 +151 137 5 879528754 +473 813 3 878157427 +409 162 4 881109264 +457 12 5 882397666 +412 70 4 879717449 +393 1074 3 889730296 +457 4 4 882397829 +269 154 3 891449189 +97 919 5 884239616 +130 1267 4 875217265 +321 633 5 879440109 +269 528 4 891447593 +280 56 5 891702544 +405 1566 1 885546248 +112 269 3 884992651 +58 11 5 884305019 +226 174 4 883889186 +196 257 2 881251577 +293 809 2 888908117 +352 195 4 884289693 +272 193 4 879455254 +340 946 5 884991647 +450 89 5 882371311 +256 1109 4 882164867 +487 76 4 883530484 +451 1392 1 879012812 +243 1 4 879987239 +393 391 3 889731703 +244 66 4 880607683 +402 25 4 876266926 +468 544 3 875280417 +276 1031 2 874793035 +349 10 5 879465569 +7 231 3 892132885 +328 553 3 885048235 +389 8 4 880086755 +468 405 2 875280462 +171 887 4 891034835 +65 185 4 879218449 +178 756 3 882824983 +178 846 3 882824467 +492 1021 3 879969415 +452 185 5 875264355 +416 1139 3 886318768 +458 410 1 886394778 +435 245 2 884130810 +415 328 5 879439135 +408 286 3 889679683 +398 158 3 875738202 +85 506 4 886282959 +463 3 2 877386083 +21 547 2 874951292 +334 61 3 891550409 +405 49 1 885547407 +461 1006 5 885355890 +178 764 3 888514648 +381 657 4 892696831 +484 554 4 891195565 +425 447 3 878738854 +28 670 4 881961600 +346 173 3 874948475 +20 866 1 879668583 +244 200 5 880606698 +286 1105 5 884583549 +181 1085 1 878962623 +459 181 4 879562939 +269 1135 2 891448456 +362 302 5 885019260 +401 237 3 891032367 +101 845 3 877136302 +177 693 4 880130653 +72 229 1 880037307 +406 526 5 882480511 +464 300 4 878354626 +152 1041 5 882477572 +198 871 1 884205277 +15 455 1 879455914 +84 111 4 883453108 +346 259 2 886273426 +128 328 2 879966406 +401 553 5 891033523 +268 399 3 875743656 +458 330 3 889324461 +222 282 4 877563227 +222 121 3 877564031 +293 111 2 888905062 +11 211 3 891905003 +405 648 1 885547124 +450 238 5 882396928 +1 176 5 876892468 +423 327 2 891394673 +478 151 5 889388038 +210 1012 4 887730789 +96 42 1 884403214 +144 257 4 888104258 +268 120 2 875743282 +65 294 4 879217320 +449 122 1 879959573 +373 366 4 877105857 +312 70 5 891699398 +89 187 5 879461246 +479 28 4 879461800 +429 826 3 882387139 +78 1047 1 879634199 +456 200 4 881374390 +334 89 4 891545898 +393 418 3 887746207 +311 768 2 884365889 +18 416 5 880131144 +429 170 5 882384526 +398 126 4 875652700 +463 103 1 890530703 +18 4 3 880132150 +435 300 2 884130647 +96 7 5 884403811 +446 883 3 879786837 +145 595 3 885557505 +445 504 3 890988206 +296 357 5 884197068 +42 385 5 881108147 +109 211 5 880578230 +358 584 4 891269913 +455 597 3 879110123 +141 121 4 884585071 +442 26 3 883388576 +405 772 1 885546379 +422 217 3 879744143 +276 942 4 889174904 +398 134 3 875658898 +197 333 2 891409111 +92 679 4 875660468 +451 331 5 879012431 +387 209 5 886480206 +151 382 4 879528754 +58 645 5 884304838 +486 823 4 879875347 +109 944 3 880579107 +318 238 3 884497359 +212 423 4 879304010 +270 60 5 876955066 +179 917 3 892151231 +299 1006 4 878192804 +348 409 4 886523710 +235 655 4 889655550 +84 1028 3 883452155 +18 45 5 880130739 +426 191 4 879442128 +328 380 3 885047737 +253 56 3 891628229 +122 193 4 879270605 +194 178 3 879521253 +404 243 3 883790465 +416 1495 3 886318707 +391 328 3 877398552 +23 14 4 874784440 +90 875 1 891382612 +59 232 3 888206485 +16 216 5 877722736 +110 849 3 886988664 +145 89 4 882181605 +227 294 3 879035431 +433 690 2 880585028 +130 501 5 875801716 +493 222 3 884130416 +301 143 4 882077330 +379 200 4 880524582 +222 546 3 877563462 +429 89 4 882385168 +450 29 3 887661438 +468 742 3 875280310 +308 473 3 887739951 +486 1014 3 879874784 +213 252 3 878870456 +380 1045 3 885479799 +291 1059 4 874834345 +274 924 3 878945918 +95 436 5 879198547 +7 201 2 891351471 +435 50 5 884132515 +281 333 3 881200457 +405 1210 1 885548670 +308 82 4 887738470 +407 660 3 876338986 +298 483 5 884125441 +301 550 3 882078040 +313 25 2 891016757 +195 59 3 888737346 +188 629 4 875073246 +456 3 4 881371660 +444 300 4 891979402 +24 238 5 875323274 +216 182 4 883981859 +437 433 3 880140369 +54 24 1 880937311 +128 942 5 879968742 +425 379 2 878738887 +125 323 3 892836124 +403 127 4 879786221 +288 544 5 886892241 +484 25 3 881449561 +65 168 4 879217851 +399 174 3 882342187 +407 4 4 876340144 +235 1021 5 889656090 +470 1097 3 879178487 +151 86 5 879524345 +60 195 4 883326086 +43 189 5 875981220 +389 152 4 880087647 +350 133 5 882346900 +336 168 5 877757700 +296 55 5 884197287 +299 191 4 878192039 +451 260 5 879012580 +14 920 4 880929745 +1 166 5 874965677 +320 627 4 884751418 +452 597 5 885816916 +405 1589 1 885549745 +128 838 5 879968164 +303 482 5 879467361 +158 546 3 880132719 +379 405 3 883156925 +387 64 3 886480206 +279 10 4 875295838 +343 77 3 876405004 +152 120 2 880149686 +189 1400 3 893265684 +189 172 5 893265683 +298 705 4 884182148 +387 1128 4 886481033 +60 385 4 883327799 +60 665 4 883326893 +336 1037 1 877757550 +311 465 4 884365406 +348 107 4 886523813 +437 466 2 881001121 +280 925 4 891701723 +249 1073 4 879640918 +234 183 4 892079585 +487 939 3 883446757 +459 846 4 879563435 +468 507 5 875295412 +407 869 3 875548522 +293 3 2 888905399 +435 226 4 884133161 +453 412 2 877553302 +416 259 2 885114559 +429 820 3 882387233 +419 286 4 879435190 +59 781 4 888206605 +468 294 3 875279153 +393 409 4 887745258 +330 864 4 876544278 +354 20 5 891216498 +403 240 1 879786084 +43 25 5 875975656 +437 969 4 881001888 +85 705 5 882994912 +378 117 3 880044419 +69 1142 4 882072956 +318 213 4 884497031 +254 1443 4 887347382 +332 815 4 887938224 +68 258 5 876973692 +346 89 4 874948513 +123 197 5 879872066 +406 453 2 880132319 +492 318 5 879969878 +451 875 2 879012721 +343 144 4 876405004 +101 1 3 877136039 +1 138 1 878543006 +102 175 4 892991117 +490 1 3 875427148 +436 102 4 887770588 +277 473 2 879543879 +262 169 3 879791844 +213 31 4 878956338 +343 155 1 876407379 +490 333 3 875427021 +458 939 4 886398187 +352 692 3 884290361 +407 859 3 876348639 +214 319 3 891542735 +416 423 4 878880195 +478 684 4 889396531 +264 269 5 886121456 +489 1293 5 891446623 +160 13 4 876768990 +37 665 3 880916046 +249 210 3 879641305 +424 683 3 880859084 +98 168 2 880498834 +213 286 3 878870598 +56 720 3 892910860 +313 837 4 891014898 +92 231 3 875654732 +384 878 4 891274962 +266 285 4 892257940 +328 241 5 885047252 +268 384 3 875743868 +15 306 5 879455165 +213 175 4 878955599 +394 154 3 880887152 +52 471 4 882922562 +445 475 5 891200869 +193 269 4 889123086 +465 481 4 883529984 +115 357 5 881171982 +435 257 4 884134363 +241 343 2 887250085 +74 313 5 888333219 +374 56 5 880394885 +434 546 5 886725076 +402 591 4 876267041 +200 282 4 884127745 +64 97 3 889738085 +244 111 4 880604550 +409 135 5 881107860 +187 97 3 879465717 +119 96 5 874781257 +403 410 2 879790445 +95 391 2 879196566 +457 228 5 882392853 +126 333 2 887853919 +276 1221 3 890979470 +486 221 4 879875040 +429 1443 2 882386601 +483 237 3 878953019 +130 888 3 881076146 +226 508 4 883889984 +271 1411 2 885849895 +293 240 2 888905086 +406 481 3 879446168 +472 250 5 875978059 +336 121 4 877760441 +308 432 4 887737036 +62 56 5 879373711 +1 247 1 875241619 +54 471 4 880937399 +406 715 4 880131821 +18 287 4 880131144 +453 568 3 888207161 +327 8 4 887819860 +299 895 2 884993860 +92 200 3 875811717 +452 1534 1 876298233 +308 254 2 887742454 +181 15 3 878962816 +433 748 4 880585491 +471 588 1 889827881 +221 335 4 876502948 +308 318 4 887736743 +100 300 4 891375112 +195 264 3 890721304 +94 642 4 891720590 +151 118 3 879542588 +151 631 3 879524849 +190 125 3 891033863 +393 808 4 889554882 +60 128 3 883326566 +94 190 5 885870231 +113 303 5 875935244 +373 480 3 877098643 +322 608 3 887314027 +394 550 4 881058101 +398 485 5 875657857 +332 11 5 888359882 +330 148 4 876544781 +117 237 4 880126232 +387 96 4 886480447 +1 89 5 875072484 +269 88 1 891450427 +9 615 4 886959344 +474 161 4 887926633 +145 1073 5 875272009 +490 9 4 875428765 +472 1210 3 875983484 +345 43 3 884993890 +128 873 1 879966524 +455 647 4 879111092 +110 33 4 886988631 +426 418 3 879444871 +472 625 4 875981968 +422 235 2 875130173 +92 198 5 875653016 +158 96 4 880134332 +450 15 3 882812350 +463 930 1 889936180 +458 152 5 886397275 +450 837 4 887835478 +327 4 4 887819161 +199 892 1 883782485 +293 258 3 888904092 +236 132 4 890115897 +279 129 1 884986081 +358 863 5 891269666 +226 527 4 883889430 +132 56 5 891278996 +271 392 3 885848343 +478 673 3 889395696 +119 831 2 874775980 +328 11 3 885047450 +404 259 5 883790491 +268 71 3 875309486 +11 577 3 891905555 +452 14 3 888568076 +428 289 4 885943981 +493 284 4 884130619 +194 90 3 879552841 +411 265 5 892845604 +313 328 4 891012907 +453 42 5 877554301 +94 943 3 891722338 +1 2 3 876893171 +336 94 3 877756890 +125 258 5 892835624 +175 193 4 877108098 +337 515 5 875184280 +393 997 1 889731703 +159 1095 5 880557824 +230 134 4 880484755 +487 1188 3 884045361 +301 144 4 882076021 +210 629 3 891035928 +246 412 1 884923305 +298 527 5 884182725 +437 1134 4 880141008 +344 272 5 885769962 +194 194 4 879523575 +76 324 4 875027206 +453 154 3 877554587 +196 108 4 881252110 +224 1401 1 888104554 +221 1090 3 875246783 +325 2 1 891478772 +445 87 3 890988205 +436 90 3 887770266 +429 640 3 882386533 +130 1034 2 876250833 +458 50 2 886396521 +380 770 3 885480222 +484 141 4 891195886 +270 713 5 876954122 +242 1 4 879740362 +253 588 5 891628416 +311 300 4 884363831 +482 988 4 887643499 +343 87 4 876404613 +13 739 4 886303745 +275 826 2 876197904 +305 163 3 886325627 +189 241 3 893265947 +301 76 4 882078250 +406 634 4 879446361 +293 89 5 888905582 +276 1047 3 889174658 +417 178 3 879646965 +288 427 5 886374342 +343 660 3 876405004 +468 31 3 875287615 +394 1033 3 880889475 +234 216 3 892078605 +389 174 4 879991115 +145 1132 3 875271522 +405 212 1 885546445 +313 525 5 891013525 +181 1349 1 878962278 +303 1270 1 879485770 +276 720 2 874791464 +155 990 3 879371194 +459 825 3 879563474 +397 513 5 885349715 +160 100 5 876767023 +403 471 5 879785822 +122 429 3 879270165 +146 258 4 891457714 +314 501 4 877888610 +244 537 5 880602593 +458 333 1 889323582 +286 417 3 877533993 +43 291 3 883955995 +395 342 4 883762414 +457 474 5 882398178 +400 304 4 885676490 +484 96 5 891195323 +376 514 4 879434613 +458 423 2 886396314 +286 475 4 875807074 +385 160 4 879441572 +450 65 3 882376885 +210 172 5 887736261 +222 79 5 878181906 +354 863 3 891306919 +416 708 4 889907392 +254 64 4 886472051 +267 231 4 878973153 +293 62 1 888907624 +210 23 5 887730102 +406 737 3 879793376 +312 1 5 891698832 +367 919 5 876689790 +43 82 4 883955498 +406 756 3 879540387 +373 392 4 877100061 +489 342 3 891445199 +313 480 5 891013742 +301 1074 2 882078580 +271 660 5 885848971 +14 127 2 879644647 +325 1 2 891478665 +308 30 4 887738933 +338 654 5 879438143 +450 49 5 882469728 +450 176 4 882373088 +162 11 4 877636772 +487 293 5 883441813 +407 269 3 893081121 +407 202 4 876338150 +405 552 1 885548686 +152 71 5 882900320 +305 88 2 886323966 +85 481 4 879454582 +446 294 1 879786984 +222 378 1 881059993 +389 172 5 879991175 +246 475 4 884921637 +174 221 4 886433771 +478 50 3 889396509 +474 921 3 887926271 +12 392 4 879959025 +438 237 5 879868278 +6 22 3 883602048 +213 181 4 878870552 +34 1024 5 888602618 +242 475 3 879740223 +207 137 3 877821612 +44 200 4 878347633 +71 64 4 885016536 +354 507 3 891306892 +435 550 3 884133253 +264 1074 4 886123727 +144 533 4 888104258 +479 168 5 889126007 +141 244 5 884585247 +325 272 3 891477537 +201 171 3 884111678 +263 316 5 891297416 +496 142 2 876067686 +344 955 4 889814195 +468 51 3 875293386 +394 554 4 881058101 +455 196 4 879111737 +250 288 4 878088970 +393 87 4 889554706 +398 95 5 875659266 +76 42 3 882606243 +440 283 5 891577894 +374 148 4 880392992 +380 71 4 885479082 +218 203 4 881288620 +25 479 5 885852569 +332 982 3 887938601 +13 83 2 886303585 +176 151 4 886048305 +194 503 4 879522916 +467 264 2 879532296 +455 161 4 879112098 +406 476 4 879540147 +494 64 5 879541207 +286 883 5 884069544 +100 328 4 891375212 +13 313 4 882774047 +64 265 4 879365491 +330 91 4 876547426 +326 491 4 879876235 +279 421 3 892864867 +335 902 5 891566808 +158 275 5 880132313 +452 173 4 875261350 +193 38 3 889126055 +151 528 5 879524849 +201 1422 2 884114194 +387 319 1 886484384 +360 45 4 880355747 +374 845 2 883627072 +71 257 5 877319414 +394 576 2 881058371 +417 727 5 879648325 +472 232 4 875983321 +268 369 1 875744021 +393 1120 3 887745409 +361 90 2 879441179 +271 218 3 885849087 +256 118 5 882151123 +457 471 4 882393421 +279 413 4 889151529 +396 288 3 884645648 +318 381 1 884497516 +50 319 5 877051687 +18 319 4 880129305 +385 865 4 879924267 +471 94 5 889828081 +378 87 4 889665232 +178 237 4 882824291 +314 794 4 877888952 +450 434 3 882372027 +433 657 5 880585802 +464 328 3 878354722 +77 97 2 884753292 +195 797 3 877835268 +455 300 4 878585250 +452 792 5 887890364 +422 410 5 875130230 +128 132 3 879966785 +181 1389 1 878962119 +373 648 4 877099048 +456 80 2 881374967 +326 720 2 879876975 +456 161 3 881374967 +59 216 4 888205228 +420 319 4 891357188 +178 472 4 882824194 +339 117 3 891034152 +435 136 4 884132434 +457 48 5 882397293 +184 528 5 889908462 +124 172 3 890287645 +483 144 2 878954228 +192 284 5 881367987 +73 255 2 888792938 +90 117 3 891385389 +168 126 5 884287962 +457 980 4 882395283 +145 510 4 882181859 +95 82 3 879196408 +19 319 4 885411465 +58 433 5 884305165 +21 322 3 874951005 +271 476 1 885848062 +195 753 3 874824313 +257 676 4 882050006 +430 9 3 877225726 +303 808 2 879484480 +271 12 4 885848314 +267 789 5 878972119 +5 443 4 875720744 +37 82 1 880915942 +313 823 3 891028555 +405 780 3 885547691 +385 24 3 879440726 +10 157 5 877889004 +15 928 1 879456404 +495 174 5 888632319 +454 82 4 881960446 +305 168 4 886323115 +328 739 3 885048611 +326 397 3 879876975 +432 246 4 889415895 +450 729 4 887139517 +301 527 4 882076238 +6 419 4 883602284 +198 690 3 884204427 +198 25 2 884205114 +452 488 4 885546945 +417 441 3 879648611 +207 291 3 876018608 +328 665 2 885048801 +379 461 4 880525031 +318 24 4 884495132 +90 175 3 891383912 +178 340 1 882823353 +449 1318 2 879959573 +323 741 3 878739543 +450 1184 1 882397049 +158 118 5 880132638 +495 167 4 888636958 +251 111 3 886272319 +145 1290 1 875272732 +224 276 3 888104116 +384 328 4 891274091 +486 689 2 879874064 +324 538 4 880574901 +234 174 3 892078605 +437 404 5 880141374 +13 462 5 882140487 +434 121 4 886724666 +293 503 4 888907145 +477 815 5 875941763 +333 435 4 891045245 +395 98 5 883764061 +454 245 3 881958782 +493 762 4 884130439 +481 210 4 885828165 +455 173 4 879111937 +374 819 3 882157793 +293 297 4 888905034 +58 501 2 884305220 +109 763 2 880571715 +6 50 4 883600842 +345 1117 4 884900810 +192 50 4 881367505 +454 172 2 888266906 +490 284 3 875427993 +56 183 5 892676314 +38 97 5 892430369 +280 98 5 891700208 +447 7 5 878854383 +313 496 5 891014753 +343 324 5 876402468 +479 174 5 889125837 +454 173 2 888267028 +311 729 4 884365451 +110 905 3 886987236 +23 414 3 874785526 +328 270 2 885044641 +416 105 2 876698430 +198 215 4 884208098 +94 25 3 891724142 +486 147 2 879875249 +6 520 4 883600985 +222 216 4 878182632 +15 14 4 879455659 +340 215 5 884990620 +460 286 4 882910838 +401 588 2 891033549 +457 631 4 882547620 +43 313 5 887076865 +353 328 2 891402259 +432 151 4 889415895 +445 845 2 891200320 +294 347 5 889241377 +429 1035 3 882386260 +457 699 4 882548615 +303 575 4 879544219 +493 69 5 884130995 +10 302 4 877886162 +387 50 5 886480108 +7 596 5 891351728 +312 434 3 891699263 +23 124 5 874784440 +256 232 3 882164525 +405 469 1 885546288 +284 262 4 885328836 +467 109 5 879532550 +426 754 1 879441707 +62 605 3 879375364 +486 476 3 879875371 +59 123 3 888203343 +361 475 4 879440475 +476 204 4 883364325 +493 751 5 884129793 +7 611 3 891351161 +106 211 4 881452532 +151 496 4 879524974 +339 650 4 891032438 +387 969 3 886480163 +345 696 3 884991267 +319 269 3 875707746 +131 251 5 883681723 +405 624 4 885548836 +487 658 4 883530434 +58 514 5 884305321 +280 94 2 891702028 +151 152 3 879525075 +363 752 5 891493885 +62 744 3 879372304 +460 289 4 882910838 +280 90 4 891701530 +497 234 2 879361847 +234 1447 3 892336119 +464 709 5 878355258 +456 443 4 881373019 +405 431 3 885547996 +326 501 3 879876688 +11 386 3 891905279 +269 723 1 891448643 +416 126 5 893213103 +20 423 2 879669313 +102 319 4 875886434 +295 91 5 879519556 +339 209 5 891032600 +200 1034 3 891825521 +60 210 4 883326241 +57 245 4 883696709 +473 1129 4 878157507 +473 257 4 878157456 +486 620 2 879875441 +363 469 2 891496077 +393 780 4 889731390 +487 121 4 883444832 +479 325 1 879459791 +291 8 4 874871766 +423 304 4 891394632 +406 28 3 882461684 +433 60 5 880585700 +13 768 4 882398724 +291 238 5 874871736 +274 274 4 878945963 +15 269 5 879455165 +468 71 5 875295148 +429 1203 4 882386357 +84 294 3 883449317 +435 254 3 884134910 +495 71 5 888634111 +42 228 4 881107538 +110 64 4 886987894 +80 303 4 883605055 +484 755 4 891195825 +94 260 2 891725049 +405 1111 1 885547360 +362 328 2 885019504 +457 871 1 882393765 +268 1074 3 875744051 +224 97 5 888082552 +312 69 4 891699182 +456 1 2 881371548 +396 329 2 884645615 +416 276 3 876697243 +232 133 4 888549988 +474 316 5 887914979 +48 480 4 879434653 +256 769 5 882164955 +332 159 5 887939071 +436 127 5 887769930 +62 241 1 879375562 +104 126 4 888465513 +256 568 5 882164603 +117 172 5 881012623 +378 1135 2 880333069 +399 91 4 882345023 +174 239 4 886439537 +406 831 2 879540249 +303 13 4 879484918 +357 10 5 878951831 +339 86 4 891032221 +318 605 4 884497425 +201 387 2 884140825 +315 56 5 879821037 +59 284 2 888203449 +457 597 3 882393908 +357 595 4 878951537 +468 283 4 875280331 +189 105 2 893264865 +472 181 5 875978034 +256 56 3 882164406 +373 1188 3 877106597 +181 845 3 878962816 +40 337 4 889041523 +484 53 1 891195663 +305 1513 2 886322212 +293 955 2 888906464 +244 281 3 880605010 +440 512 3 891578059 +368 181 4 889783678 +218 294 2 881288574 +100 1235 4 891375454 +6 169 4 883600943 +371 42 3 880435397 +301 405 4 882074727 +22 451 4 878887062 +158 745 4 880135044 +297 603 5 875239942 +497 840 3 879310679 +244 833 3 880607878 +331 694 4 877196702 +472 1091 4 875982804 +347 1 4 881652518 +488 480 3 891376110 +378 62 4 880333851 +331 482 2 877196235 +236 203 4 890116132 +396 591 3 884646114 +388 845 4 886437163 +498 475 3 881954617 +311 321 3 884363948 +493 61 4 884131263 +454 1003 2 881960446 +470 294 3 879178237 +297 265 3 875239454 +194 1412 2 879551921 +80 100 5 887401453 +214 427 5 892668172 +95 199 5 880570964 +422 590 2 879743948 +56 158 3 892911539 +177 121 2 880131123 +416 155 5 893212895 +456 479 5 881373900 +394 79 5 880887206 +401 318 4 891032737 +442 159 4 883391299 +256 1228 1 882164643 +207 12 3 878104200 +6 246 3 883599509 +268 158 2 875743678 +450 70 4 882374497 +370 98 4 879434937 +235 327 3 889654594 +207 562 2 875509507 +436 447 1 887769444 +256 1114 4 882153699 +165 15 5 879525799 +476 232 3 883364250 +101 924 4 877136535 +442 342 2 883388147 +178 1016 4 882824253 +255 672 2 883216544 +222 176 4 878181804 +495 139 2 888636810 +429 550 3 882387350 +416 197 5 893213103 +435 1419 2 884133785 +32 288 4 883709915 +478 282 3 889398216 +344 385 2 884901503 +104 10 2 888465413 +94 356 4 891722646 +255 118 1 883216958 +387 219 2 886481686 +379 158 1 885063748 +278 245 3 891295230 +294 332 3 877818915 +184 357 5 889913687 +440 515 4 891578301 +435 73 3 884132403 +316 173 1 880853654 +237 357 4 879376327 +236 211 3 890116539 +57 125 3 883697223 +391 460 4 877400091 +361 737 4 879441179 +377 316 4 891297001 +237 190 4 879376515 +125 1246 2 892838687 +87 48 4 879875649 +314 280 3 877887034 +487 501 4 883531122 +407 99 4 876338883 +495 674 3 888635995 +487 252 1 883445079 +474 649 4 887927588 +144 187 4 888105312 +315 25 5 879821120 +435 403 4 884132756 +308 708 4 887739863 +97 135 5 884238652 +249 203 5 879572167 +145 879 5 877343000 +110 94 4 886989473 +470 824 4 879178731 +346 7 2 874947923 +409 474 5 881107351 +450 728 3 887834953 +268 33 3 875310645 +44 135 5 878347259 +100 1237 3 891375630 +457 436 4 882547619 +402 1048 2 876266985 +429 403 4 882385902 +43 756 3 884029519 +194 357 4 879520916 +296 287 4 884196765 +463 864 3 890530351 +136 647 5 882848783 +395 328 4 883762528 +271 507 2 885848707 +43 939 3 883955547 +116 333 2 876452054 +104 845 3 888465634 +484 651 5 891194910 +394 455 4 880889066 +332 763 5 887938421 +18 520 4 880129595 +244 553 5 880606215 +385 674 3 879447250 +267 515 5 878970710 +26 276 4 891386369 +269 204 2 891449842 +60 510 5 883327174 +268 579 1 875744021 +415 56 5 879439865 +405 50 5 885544947 +397 504 5 885349865 +429 481 3 882386237 +201 1428 4 884114099 +72 525 4 880037436 +44 132 4 878347315 +416 1091 3 892441516 +91 988 2 891438583 +405 969 3 885545015 +313 486 3 891015219 +130 299 3 874953526 +336 63 2 877757268 +447 183 5 878856394 +59 59 5 888204928 +496 64 3 876066064 +434 275 3 886724633 +104 840 1 888466086 +497 1185 1 879363205 +488 568 3 891294707 +417 382 2 880949941 +347 187 5 881653652 +63 475 4 875747319 +452 420 3 875562510 +479 248 4 879460192 +246 853 5 884922383 +213 222 3 878870790 +437 393 3 880382747 +58 300 4 884388247 +405 185 4 885544769 +87 232 3 879876037 +488 510 4 891294854 +378 235 4 880045006 +21 878 2 874951039 +270 145 3 876956419 +198 168 4 884207654 +286 176 4 878142001 +383 81 4 891193072 +207 826 2 877751143 +472 400 5 892791062 +412 206 2 879717649 +7 682 2 891350383 +293 856 3 888905686 +75 845 3 884050194 +343 83 4 876404957 +436 392 4 887769079 +133 272 5 890588672 +338 301 4 879437655 +455 1174 3 879109663 +437 1211 4 881001208 +435 190 4 884132146 +290 403 2 880475542 +308 248 4 887741437 +436 895 4 887768717 +497 227 2 879310883 +287 50 5 875334271 +444 100 5 890247385 +406 596 3 879540078 +363 1035 2 891497925 +314 1152 4 877887469 +452 971 4 875560019 +92 742 3 886443192 +237 179 4 879376641 +52 22 5 882922833 +384 271 4 891283502 +456 818 3 881372114 +64 50 5 889737914 +16 143 5 877727192 +311 177 5 884364764 +94 77 3 891721462 +479 528 4 879461060 +328 823 3 885049024 +286 181 3 875807043 +487 672 4 884024462 +421 517 2 892241491 +453 188 4 877554466 +303 1157 2 879543711 +405 179 1 885546201 +230 570 4 880485689 +130 262 3 877926419 +186 829 4 891719775 +94 369 1 891723459 +497 363 2 879310649 +489 289 2 891366748 +432 763 5 889416570 +393 417 3 887746523 +454 88 4 888267560 +22 840 4 878888184 +251 64 5 886271640 +425 363 1 878739095 +429 705 4 882384896 +354 137 3 891216575 +230 609 3 880485311 +279 372 4 875310117 +268 124 4 875742499 +118 919 5 875385386 +417 508 3 879646123 +452 269 5 888568251 +406 222 3 879445735 +296 198 5 884197264 +92 91 3 875660164 +416 55 2 876699102 +181 989 1 878961780 +295 188 3 879518042 +181 1337 1 878963121 +22 932 1 878887277 +462 289 5 886365837 +59 606 4 888204802 +201 227 4 884310149 +264 194 5 886123358 +152 237 5 880148734 +7 529 2 891352626 +419 223 4 879435785 +234 47 2 892334543 +487 276 3 883444252 +363 760 1 891499993 +236 432 5 890118251 +239 675 5 889180617 +145 300 3 875269755 +13 606 4 882140130 +487 932 3 883444941 +391 288 3 877398679 +442 286 2 883388031 +64 162 3 889739262 +83 732 4 880308390 +90 302 5 891383319 +190 281 3 891042916 +404 289 1 883790492 +133 346 3 890588577 +423 1265 4 891394788 +62 554 1 879375562 +23 132 4 874785756 +194 229 1 879535548 +40 305 4 889041430 +312 206 5 891699399 +340 199 5 884990988 +469 610 4 879523947 +357 245 4 878951101 +334 345 2 891544177 +90 606 5 891383173 +5 257 5 875635239 +420 753 5 891356864 +236 483 5 890116221 +330 132 5 876546498 +328 399 2 885049405 +13 773 1 882396869 +416 554 3 886318394 +299 311 4 880198334 +128 340 4 879966355 +465 300 3 883529601 +18 168 3 880130431 +435 90 4 884132756 +455 511 5 879110971 +95 1091 3 880572658 +416 747 5 893212929 +342 606 5 875318882 +413 257 4 879969592 +417 715 2 879648656 +466 321 2 890282986 +450 174 5 882374422 +286 111 5 876521858 +436 746 5 887770015 +152 1301 5 884018462 +499 511 5 885599227 +499 210 3 885599201 +405 1592 1 885549903 +276 84 2 877934232 +437 483 5 880141962 +417 242 3 879645999 +82 168 5 878769748 +417 871 2 886187012 +416 402 5 893212623 +178 82 5 882826242 +126 315 4 887853469 +301 156 4 882076098 +311 549 2 884366111 +87 202 5 879876403 +200 69 5 884128788 +491 475 4 891185170 +267 455 3 878970578 +62 70 3 879373960 +84 274 4 883452462 +130 27 4 875802105 +276 264 3 892436418 +491 45 5 891189631 +276 750 4 882659186 +311 127 4 884364538 +370 856 3 879435033 +474 705 3 887924619 +301 91 3 882078906 +26 750 4 891347478 +334 310 3 891544049 +23 275 5 874785474 +450 1047 4 882469941 +272 98 4 879454797 +354 421 2 891306852 +194 546 3 879541806 +7 143 3 892132627 +13 200 3 882140552 +493 252 4 884130619 +75 926 3 884050393 +481 1089 3 885828072 +244 946 4 880607545 +311 63 3 884365686 +130 423 5 875216978 +268 222 4 875742275 +435 542 1 884133691 +346 141 4 874950692 +498 176 2 881956498 +435 186 4 884132367 +117 678 4 880124435 +292 250 3 881104679 +472 120 5 883904649 +393 727 3 889729614 +442 168 4 883388325 +7 678 3 891350356 +378 744 3 880044609 +87 199 5 879875649 +267 64 5 878972193 +18 153 4 880130551 +95 31 4 888954513 +453 33 4 877561522 +432 315 5 889415763 +437 737 1 880142614 +487 117 5 883443504 +307 227 5 879538922 +129 286 5 883243934 +407 879 3 878597296 +388 111 3 886437163 +85 432 4 880838305 +16 282 5 877718755 +109 735 5 880577989 +347 157 5 881654567 +215 496 5 891435183 +280 176 3 891700426 +130 252 5 876250932 +456 737 3 881375254 +94 703 3 891721562 +21 300 3 874950889 +207 23 4 875509888 +64 22 4 889737376 +387 61 3 886483565 +416 11 4 876699238 +90 703 3 891384997 +207 179 4 877822224 +151 1039 4 879524471 +43 1047 3 883956387 +42 582 3 881108928 +164 293 4 889402121 +286 1375 5 889651445 +200 169 5 884128822 +404 343 1 883790656 +477 280 4 875941022 +379 701 4 892879481 +301 240 4 882074494 +11 258 5 891901696 +61 258 4 891206125 +85 527 4 879455114 +16 502 4 877723670 +456 460 3 881371942 +145 929 2 888398069 +27 244 3 891543222 +445 829 1 891200624 +407 244 3 884614753 +427 874 5 879701326 +39 313 4 891400159 +429 140 1 882386260 +456 933 3 881371595 +367 176 5 876689738 +319 268 4 889816026 +334 1014 2 891545293 +15 13 1 879455940 +486 874 3 879874297 +45 934 2 881015860 +2 242 5 888552084 +427 245 5 879701326 +325 137 5 891477980 +362 264 1 885019695 +297 114 5 875239569 +59 161 3 888205855 +416 297 4 876697448 +328 28 5 885045931 +472 151 3 875978867 +85 284 3 879452866 +426 132 4 879442083 +360 1 3 880354315 +296 293 5 884196765 +455 323 3 878585277 +406 63 3 880131821 +59 22 4 888204260 +21 674 2 874951897 +117 789 4 881011413 +196 202 3 881251728 +279 70 1 875309141 +85 57 5 879828107 +59 1021 4 888204996 +374 763 3 880393754 +75 477 4 884050102 +119 1034 3 874775980 +374 144 5 880394716 +493 431 5 884132037 +28 859 3 881961842 +312 463 5 891698696 +493 121 5 884131690 +276 240 4 874786713 +321 211 4 879440109 +371 210 4 880435313 +83 71 3 880328167 +467 268 5 879532164 +376 246 3 879459054 +271 526 5 885849188 +360 582 4 880355594 +394 679 3 881058062 +201 1011 3 884140853 +393 1244 3 887745380 +272 210 5 879455220 +176 475 5 886047918 +463 285 4 877385125 +311 100 1 884963136 +392 169 4 891038978 +281 308 1 881200297 +325 604 4 891478504 +495 153 5 888633165 +244 721 5 880602031 +313 322 3 891014313 +472 195 5 875982005 +456 218 4 881374522 +169 483 3 891359200 +460 532 3 882912370 +291 706 3 874867785 +312 187 5 891699345 +127 222 5 884364866 +234 430 4 892333683 +380 28 4 885479436 +450 723 3 882399818 +474 488 3 887925977 +343 744 4 876402941 +173 874 4 877556926 +16 95 5 877728417 +59 99 4 888205033 +432 410 4 889415895 +451 457 2 879012890 +388 769 3 886441306 +181 455 1 878962623 +376 198 5 879454598 +442 780 3 883388986 +435 674 2 884132643 +334 678 3 891544446 +387 790 1 886482969 +211 9 3 879460172 +184 378 4 889909551 +298 194 5 884127249 +64 768 2 889739954 +402 864 3 876266926 +393 3 3 887745293 +328 699 4 885046718 +364 294 5 875931432 +53 121 4 879443329 +184 183 4 889908630 +102 665 1 888802319 +474 191 5 887923789 +11 745 5 891905324 +234 153 3 892333830 +165 176 4 879526007 +417 428 3 879647966 +16 404 5 877728417 +462 332 5 886365706 +184 44 4 889909746 +30 259 4 875058280 +95 170 5 880573288 +20 181 4 879667904 +416 289 3 876696788 +456 68 4 881374437 +474 136 4 887925187 +425 298 4 878738992 +92 755 3 875656055 +373 265 4 877105901 +407 185 5 875044597 +379 736 4 880525945 +434 220 5 886724873 +342 282 1 875318366 +366 413 4 888857598 +308 510 3 887736925 +339 69 4 891032633 +495 89 3 888632888 +130 269 4 881075976 +121 479 5 891388113 +318 289 3 884470682 +284 347 5 885328727 +446 880 2 879786943 +125 195 5 892836465 +380 213 2 885479319 +408 288 4 889679791 +486 321 3 879874153 +455 582 2 879111982 +313 770 4 891028285 +144 196 4 888105743 +312 174 5 891698224 +210 94 4 891036181 +348 988 3 886522799 +276 402 3 874791407 +386 515 5 877654961 +395 596 2 886481149 +435 800 4 884133819 +385 896 5 883869456 +189 99 5 893265684 +230 79 5 880484778 +256 403 4 882164603 +396 1399 3 884645942 +345 56 5 884902317 +423 276 5 891395602 +343 152 4 876404612 +85 447 3 882994767 +399 84 2 882345842 +375 939 3 886622024 +393 237 4 887744328 +405 996 1 885547268 +395 257 5 883765386 +296 100 5 884196489 +346 748 4 874947380 +479 135 4 879461255 +280 29 3 891701852 +339 99 4 891035180 +436 1119 4 887769368 +291 31 4 874834768 +199 116 5 883782807 +60 174 4 883326497 +405 66 5 885547268 +128 121 4 879968278 +206 269 4 888180018 +380 95 4 885479274 +500 111 4 888538350 +451 984 4 879012647 +492 492 4 879969512 +123 435 5 879809943 +206 308 2 888180049 +424 275 5 880859410 +496 526 3 876067597 +426 490 4 879444853 +135 288 3 879857575 +38 402 5 892430539 +331 32 4 877196633 +472 763 4 875978922 +484 265 5 891195476 +154 919 4 879138712 +144 215 4 888105714 +369 50 5 889428642 +89 111 4 879441452 +493 82 5 884132058 +457 241 3 882398086 +299 88 3 889502902 +497 566 3 879310941 +232 531 4 888549647 +425 257 3 878738992 +412 408 4 879717016 +165 222 5 879525987 +339 88 4 891035454 +399 405 3 882340599 +94 728 2 891723748 +13 663 5 882140252 +276 931 2 874836682 +174 269 5 886432811 +272 50 4 879454900 +276 79 4 874792436 +83 508 2 887665655 +409 676 2 881108777 +420 275 5 891357071 +180 186 4 877127189 +407 629 3 876339975 +359 286 5 886453161 +474 48 4 887923923 +312 850 5 891698764 +43 111 4 883955745 +339 436 4 891035147 +320 226 4 884749306 +181 363 1 878963342 +397 332 2 882838773 +383 268 5 891192338 +476 72 4 883364433 +12 133 4 879959670 +385 451 1 879447205 +95 1101 2 879197970 +301 265 4 882075672 +387 226 3 886483252 +391 8 3 877399030 +472 747 5 875982051 +450 477 4 887660762 +457 722 4 882550154 +314 393 4 877889133 +346 215 3 874948303 +262 433 4 879791790 +451 682 4 879012580 +114 56 3 881260545 +184 176 4 889908740 +83 527 4 880307807 +13 350 2 886302293 +348 934 4 886523839 +193 310 4 890834947 +405 1099 1 885549588 +379 285 5 880524753 +291 290 4 874834001 +430 273 4 877225894 +349 596 2 879465814 +459 79 3 879566291 +90 607 5 891384673 +82 1163 2 884714204 +502 892 2 883702867 +373 136 4 877099091 +432 258 4 889416657 +236 476 3 890117308 +417 217 4 879648594 +195 982 2 877835350 +488 748 4 891293606 +450 419 5 887660504 +192 121 2 881368127 +15 252 2 879456351 +109 323 3 880562908 +97 204 5 884238966 +334 655 4 891546257 +109 265 5 880578185 +450 689 3 882216026 +172 606 3 875537964 +37 273 3 880915528 +284 307 4 885329322 +423 326 4 891394874 +11 654 3 891905856 +222 735 5 878184087 +118 559 4 875385306 +85 188 2 879454782 +379 62 2 888646058 +437 517 4 880140927 +396 829 3 884646648 +376 111 4 879459115 +181 974 4 878963417 +391 604 4 877399380 +363 159 1 891496667 +214 181 3 891543036 +178 322 3 882823460 +85 222 2 879452831 +13 342 4 885744650 +84 276 4 883449944 +452 554 3 875562245 +214 650 5 892668173 +398 732 4 875719199 +182 203 3 876436556 +22 167 3 878887023 +48 1065 2 879434792 +249 89 5 879572229 +428 908 4 885944024 +457 456 2 882395851 +301 203 4 882077176 +497 465 3 879363610 +452 171 4 875277472 +253 22 5 891628435 +373 403 3 877106741 +464 333 4 878354761 +97 431 3 884239616 +421 182 5 892241624 +181 1038 1 878962005 +480 203 4 891208520 +328 1483 4 893195825 +336 105 4 877755098 +91 498 3 891439271 +434 125 5 886724708 +336 732 3 877756356 +429 15 5 882386941 +424 689 1 880858887 +370 285 3 879435193 +420 251 5 891357070 +500 781 3 883874776 +407 448 4 875553460 +446 326 2 879786943 +487 739 2 884046879 +367 179 5 876689765 +223 866 4 891549945 +389 514 5 879991329 +16 79 5 877727122 +145 202 4 875272694 +33 245 3 891964326 +454 605 2 888267487 +405 1018 1 885549589 +450 582 4 882394097 +339 234 4 891032255 +346 117 4 874950054 +60 8 3 883326370 +289 21 1 876790499 +241 335 3 887250085 +275 515 3 876197552 +43 1023 3 875975323 +297 8 5 875239795 +466 331 5 890284231 +396 619 3 884646191 +264 676 3 886123172 +64 568 4 889737506 +474 257 3 887915511 +198 210 4 884207612 +503 181 5 879438319 +416 1037 2 892440156 +381 150 4 892697542 +275 154 2 875154878 +343 786 4 876406181 +90 837 5 891384476 +85 423 4 879454046 +18 211 5 880131358 +11 57 2 891904552 +474 77 5 887926106 +459 282 3 879562995 +279 146 1 875297281 +94 176 4 891720570 +450 270 4 882216108 +502 301 1 883702370 +393 69 4 887745883 +89 1074 5 879459909 +406 431 3 882480710 +283 175 4 879298270 +222 41 3 881060659 +189 283 5 893264300 +347 77 5 881654386 +406 3 3 879540228 +80 213 3 887401407 +64 603 3 889737506 +474 76 4 887926573 +378 619 3 880044879 +418 258 5 891282551 +95 596 2 879193651 +198 101 5 884209569 +194 498 3 879521595 +472 682 4 887297923 +64 11 4 889737376 +493 100 5 884130308 +472 318 5 892791017 +332 273 5 887938277 +392 1012 4 891038184 +284 748 3 885329671 +294 340 4 889241280 +142 408 4 888640379 +450 7 4 882376885 +303 29 2 879485134 +440 323 1 891577504 +411 720 3 891035761 +427 989 5 879701253 +458 717 1 886395230 +325 1003 3 891480133 +396 1028 3 884646191 +213 432 4 878956047 +303 1273 2 879485278 +488 434 4 891294785 +188 498 5 875073828 +310 1386 1 879436177 +250 1199 3 878089467 +141 259 1 886447904 +13 829 3 882398385 +406 427 4 879445897 +503 1316 1 892667252 +253 331 3 891627664 +92 240 2 875640189 +151 171 5 879524921 +399 722 2 882348153 +429 201 3 882385399 +175 234 5 877108015 +391 69 4 877399618 +472 609 5 875981551 +467 288 4 879532804 +292 58 5 881105442 +499 664 3 885599334 +496 132 3 876065881 +286 90 4 877533224 +419 514 4 879435785 +254 548 2 886475319 +435 367 3 884131741 +496 1074 2 876068100 +346 12 5 874950232 +354 1194 4 891217429 +173 305 5 877556626 +3 321 5 889237455 +387 135 5 886480288 +305 479 3 886323275 +354 189 3 891217249 +378 924 3 880331938 +339 317 4 891032542 +122 661 4 879270327 +188 28 3 875072972 +57 833 4 883697705 +251 685 4 886272585 +345 288 3 884901497 +203 288 5 880433368 +43 269 5 888177393 +313 178 5 891013773 +51 83 5 883498937 +158 209 5 880135001 +487 172 4 883530409 +405 1267 1 885546379 +135 56 4 879857765 +489 292 4 891366693 +450 155 4 882396564 +161 265 2 891171597 +342 732 3 875319786 +222 729 4 878184315 +340 88 5 884991584 +360 405 3 880354347 +344 137 5 884814668 +450 12 4 882373231 +416 82 5 893213444 +360 174 3 880356240 +407 316 4 887833034 +248 196 2 884535013 +450 774 4 882399818 +363 742 2 891497076 +493 879 4 884129823 +314 411 4 877892461 +433 194 5 880585759 +404 258 4 883790181 +327 1170 4 887819860 +430 288 4 877225239 +77 56 4 884752900 +294 476 3 877819792 +15 927 4 879456381 +438 121 5 879868328 +200 177 4 884129656 +479 55 4 879461207 +167 225 3 892737995 +295 230 4 879517271 +43 408 5 875975492 +450 383 2 882468790 +180 380 5 877127796 +415 180 5 879439791 +295 158 4 879518932 +66 741 4 883601664 +383 504 4 891193108 +346 951 2 874950463 +495 478 4 888632443 +392 170 5 891039015 +446 311 2 879787858 +214 318 4 892668249 +334 28 3 891546373 +416 531 5 893212572 +424 243 4 880859115 +366 445 5 888857932 +226 408 5 883888853 +425 7 3 878738290 +170 326 5 886623057 +469 136 4 879524062 +449 171 4 880410599 +487 218 2 883531507 +26 304 4 891348011 +11 317 4 891904174 +324 275 4 880575531 +92 71 5 875654888 +92 12 5 875652934 +244 660 4 880603881 +280 1035 4 891701785 +305 1015 1 886323068 +458 13 4 886394916 +453 233 2 888206003 +437 133 5 880140122 +1 30 3 878542515 +429 291 4 882386309 +426 510 4 879441978 +450 488 4 882371415 +345 28 3 884916441 +7 628 3 891352831 +494 183 5 879541158 +394 50 5 881132876 +18 486 3 880131559 +343 528 3 876405004 +334 50 5 891544867 +423 690 4 891394832 +465 496 3 883531246 +474 265 5 887924425 +489 321 3 891447845 +495 658 3 888635380 +500 1012 4 883865021 +305 153 3 886323153 +15 255 5 879455764 +504 163 4 887840517 +177 55 3 880131143 +288 345 5 886372155 +184 443 3 889911552 +193 402 3 889126375 +21 675 5 874951897 +493 423 2 884131020 +4 328 3 892001537 +222 73 4 878181976 +500 159 2 883876251 +174 1035 4 886515532 +94 569 1 891722980 +368 201 5 889783407 +484 343 2 883402932 +272 23 5 879454725 +453 97 3 877554743 +123 100 4 879872792 +293 933 2 888905399 +416 339 5 893214225 +85 170 4 879453748 +429 1079 2 882387164 +5 25 3 875635318 +261 301 4 890454246 +270 722 4 876955689 +398 63 2 875732862 +399 157 3 882342019 +378 792 4 880046475 +85 100 3 879452693 +336 762 5 877756890 +329 284 3 891656072 +456 431 4 881374437 +275 196 3 880314969 +495 413 5 888636032 +268 541 3 875744357 +378 380 3 880333695 +1 63 2 878543196 +301 29 4 882078492 +462 678 3 886365335 +481 66 3 885828203 +431 754 3 881127436 +435 943 3 884131712 +406 514 1 879445562 +347 235 2 881653224 +323 186 4 878739988 +95 449 3 879196665 +500 665 3 883876714 +130 248 3 874953769 +450 145 3 887661438 +426 525 4 879442227 +221 218 4 875246308 +503 69 4 880383679 +143 313 5 888407586 +125 216 3 879454419 +435 40 3 884133544 +472 685 3 875978740 +5 442 1 879198898 +8 233 4 879362423 +18 61 4 880130803 +440 751 3 891549397 +215 191 4 891435460 +16 941 1 877720437 +48 1064 4 879434688 +294 363 1 889243393 +231 255 3 879965760 +355 264 4 879485760 +64 310 4 889737047 +498 191 4 881957054 +311 215 4 884364999 +151 185 4 879528801 +125 369 3 892838777 +280 217 3 891701832 +40 286 2 889041430 +454 519 2 888267455 +399 318 5 882342589 +222 228 5 878181869 +194 625 3 879527145 +119 689 4 886175431 +331 124 4 877196174 +339 100 5 891032286 +102 168 3 888803537 +405 1547 2 885546288 +174 451 5 886513752 +396 300 3 884645550 +416 21 3 876697415 +251 472 3 886272585 +417 201 4 879648478 +405 207 1 885549543 +498 192 5 881957546 +167 726 1 892738385 +336 796 3 877758035 +478 276 5 889388862 +436 739 4 887771853 +450 401 3 882397224 +70 214 3 884067842 +361 333 2 879441490 +435 11 5 884131542 +372 1273 4 876869957 +405 1400 1 885545975 +207 298 3 875509150 +178 790 3 882827870 +7 98 4 891351002 +346 50 5 874947609 +119 762 4 874775465 +474 553 2 887927339 +5 186 5 875636375 +268 738 2 875744021 +234 1121 5 892334481 +299 190 5 877881356 +10 694 5 877892437 +94 722 2 891723494 +201 82 4 884114471 +85 28 4 879829301 +478 866 1 889388273 +268 164 2 875744556 +82 9 4 876311146 +339 702 4 891035850 +409 749 3 881105367 +347 164 3 881654752 +179 690 1 892151489 +479 286 1 879533972 +435 215 2 884131576 +456 498 4 881373473 +128 499 5 879967767 +94 475 5 885870362 +483 181 4 878950971 +405 557 1 885549650 +130 892 3 884623832 +425 252 2 878739054 +314 697 3 877888996 +483 900 3 885170586 +393 685 3 887744517 +268 229 2 875310784 +227 137 5 879035289 +282 262 4 879949417 +369 243 3 889428228 +303 53 3 879485608 +429 195 4 882385519 +269 239 2 891448386 +463 306 4 877384836 +450 301 4 882216475 +499 312 4 882995923 +505 193 3 889334477 +350 172 5 882345823 +437 484 4 880140051 +345 702 4 884993418 +387 98 4 886480244 +470 544 3 879178830 +246 238 5 884921429 +466 172 4 890284706 +409 9 4 881107992 +489 1238 4 891445352 +371 265 5 880435544 +283 202 5 879298206 +417 184 4 879647749 +62 655 3 879375453 +233 261 5 883356913 +141 7 5 884584981 +426 605 4 879442083 +463 274 3 877385664 +497 31 3 879361802 +102 409 2 892993855 +256 31 5 882164867 +437 216 5 880141041 +263 174 5 891299697 +315 428 4 879821120 +13 686 5 882397146 +234 5 3 892334338 +279 283 3 875296652 +177 358 2 882141918 +14 319 1 884482684 +110 401 3 886989399 +144 435 4 888105387 +405 76 3 885545606 +284 900 4 885328991 +500 836 5 883874290 +177 223 4 880130758 +13 417 2 882398934 +105 748 2 889214406 +399 1035 3 882352065 +487 43 3 884042206 +416 83 5 893213444 +354 509 5 891218249 +145 939 4 875272050 +450 468 4 882376803 +454 482 3 881960230 +446 288 2 879786838 +234 1168 2 892335108 +234 855 3 892079803 +421 516 5 892241554 +193 562 3 889126055 +416 633 4 876699757 +210 56 5 887730264 +307 401 1 879114143 +457 455 4 882393384 +160 1012 5 876769689 +417 764 3 879646677 +48 519 3 879434689 +466 566 3 890284819 +497 540 2 879311007 +426 318 5 879442044 +65 255 3 879217406 +301 118 4 882074903 +126 346 3 887853735 +166 294 3 886397596 +3 260 4 889237455 +313 77 3 891031950 +145 276 1 882182634 +399 1137 4 882340556 +387 293 4 886481002 +352 172 5 884289759 +417 792 4 879648079 +499 347 4 885597932 +463 988 2 877384836 +294 752 3 889241377 +453 578 3 888205764 +264 184 5 886122447 +506 470 4 874873423 +170 984 5 884103918 +322 156 4 887313850 +144 326 4 888103530 +450 157 3 882394180 +379 704 3 880524835 +456 12 3 881373655 +157 290 4 886890787 +493 886 2 884129868 +210 180 4 887735872 +32 240 2 883717967 +422 222 4 875130137 +459 295 3 879563367 +417 475 4 879646437 +279 181 3 875298494 +4 258 5 892001374 +65 651 4 879216371 +416 142 4 886319340 +436 96 4 887769535 +92 92 4 875654846 +495 797 4 888635524 +303 458 3 879467936 +303 381 4 879467574 +394 229 3 881132958 +493 11 3 884130852 +59 3 4 888203814 +49 82 1 888067765 +85 641 4 879454952 +482 289 3 887644023 +405 649 1 885546445 +87 22 4 879875817 +128 71 4 879967576 +14 921 5 890881384 +6 293 3 883599327 +221 386 3 875246662 +495 127 4 888634955 +294 307 3 889241466 +450 771 3 887835478 +456 1478 4 881374993 +342 223 4 875318907 +386 222 4 877654961 +373 156 2 877098374 +405 239 3 885546112 +181 983 2 878963038 +365 1420 2 891303454 +399 1246 1 882511876 +244 780 4 880602843 +216 412 2 880233197 +416 739 5 893212896 +331 214 3 877196702 +279 470 3 878262194 +437 229 3 880142942 +110 226 3 886988536 +90 1097 4 891384885 +496 183 2 876065259 +474 79 5 887924027 +110 56 1 886988449 +178 281 3 882824028 +409 264 1 881105366 +405 1346 1 885549790 +267 1090 3 878973854 +235 303 4 889654483 +399 651 3 882509971 +405 812 1 885548877 +455 2 4 879111786 +70 483 5 884064444 +500 1047 3 883865985 +452 498 4 875264976 +472 380 5 875982511 +488 33 2 891294976 +414 300 4 884999066 +11 405 3 891904016 +327 85 2 887819507 +327 1103 4 887819614 +354 1065 3 891217512 +405 791 1 885547605 +292 1142 4 881104481 +459 3 2 879563288 +270 531 4 876954945 +210 195 4 887736429 +453 11 5 877554174 +118 7 5 875385198 +301 665 2 882079334 +90 485 5 891383687 +457 640 4 882548467 +83 204 5 880307922 +394 208 5 880888746 +5 432 4 875636793 +500 294 3 883864578 +295 43 4 879518107 +145 486 3 882181659 +506 1046 4 874874396 +30 2 3 875061066 +103 204 3 880423118 +308 499 3 887738619 +455 465 3 879112678 +495 140 5 888635419 +317 322 3 891446783 +387 217 3 886481687 +128 222 3 879967249 +405 761 1 885548049 +16 4 5 877726390 +452 96 2 875275699 +216 313 5 883981737 +472 27 4 875980283 +497 242 1 878759351 +282 890 4 879949468 +233 640 2 875508639 +303 847 4 879466830 +62 875 4 879371909 +452 483 5 875263244 +128 197 4 879966729 +381 517 4 892696557 +319 306 4 879975504 +387 222 4 886481073 +474 610 3 887924571 +174 12 5 886439091 +463 1383 2 890530703 +448 303 4 891887161 +214 479 4 891544052 +185 1020 4 883524172 +416 77 4 893142480 +488 198 4 891375822 +200 226 4 884130085 +504 546 4 887831947 +456 1019 4 881372849 +227 324 4 879035963 +417 419 4 879646986 +158 89 5 880133189 +328 1313 4 888641949 +390 277 2 879694123 +457 742 4 882393306 +458 209 4 886397155 +444 678 3 891979403 +293 1208 3 888906990 +269 157 3 891448092 +488 405 3 891294014 +175 147 3 877108146 +4 210 3 892003374 +198 300 2 884204427 +416 317 5 893213444 +7 199 5 892135346 +355 360 4 879486422 +49 627 2 888067096 +505 140 4 889334129 +409 12 4 881107056 +387 547 4 886484561 +435 659 4 884131515 +291 469 5 874867912 +430 1347 5 877226047 +429 570 4 882387434 +18 951 3 880129595 +409 60 5 881108715 +22 862 1 878886845 +448 884 4 891889281 +443 271 4 883504682 +454 196 2 881959778 +357 105 4 878952342 +308 88 4 887740568 +474 646 4 887925395 +271 137 4 885847636 +11 692 4 891905003 +493 96 4 884130793 +429 280 2 882387392 +435 174 5 884131627 +448 896 5 891887216 +291 1478 2 874871585 +399 1231 3 882350487 +1 249 4 874965970 +487 232 4 883530764 +361 1103 4 879440386 +365 995 4 891303694 +7 229 3 891352384 +168 275 3 884287822 +37 174 5 880915810 +328 688 1 886036585 +409 210 4 881109175 +339 483 5 891032121 +404 331 3 883790249 +381 995 4 892698031 +128 652 3 879966603 +44 380 4 883613334 +94 1014 4 891724256 +337 471 5 875235809 +346 944 3 874951714 +90 661 5 891385522 +290 483 5 880473845 +181 924 3 878963168 +437 473 5 881001888 +407 218 4 876338946 +469 641 4 879524241 +92 54 3 875656624 +474 506 5 887924084 +94 179 5 885870577 +224 470 4 888082742 +497 575 3 879362985 +297 302 4 875408934 +59 615 4 888204553 +152 69 5 882474000 +85 1173 4 884820209 +429 1010 3 882386216 +264 288 5 886121631 +407 227 2 875045190 +419 257 4 879435503 +63 108 2 875748164 +397 483 5 885349715 +159 243 4 880485529 +499 181 3 885598827 +113 7 3 875076827 +100 678 3 891375428 +197 586 3 891410170 +308 237 3 887737383 +313 420 5 891014782 +499 514 5 885599334 +453 117 4 877552540 +474 508 3 887915437 +451 303 2 879012648 +381 1018 4 892697031 +318 1044 4 884496985 +505 989 1 888631438 +159 333 5 893255761 +151 70 4 879524947 +470 268 2 879178216 +354 660 3 891218155 +448 268 3 891888367 +363 11 5 891494587 +352 50 5 884289693 +345 111 4 884991244 +454 707 3 881959576 +468 498 5 875291571 +81 726 4 876534505 +495 230 5 888632969 +270 356 3 876956064 +378 684 3 880332643 +468 4 5 875296868 +456 660 5 881374522 +59 55 5 888204553 +385 145 1 879449745 +381 20 5 892696426 +474 322 4 888627937 +305 631 3 886324028 +66 127 4 883601156 +381 318 5 892696654 +397 615 5 885349562 +234 746 2 892335213 +186 934 3 879023968 +405 191 4 885545235 +405 67 5 885547360 +7 23 3 891351383 +339 150 4 891033282 +138 182 4 879023948 +357 147 5 878951457 +476 765 4 883365442 +58 185 2 884304896 +233 192 5 875508485 +398 953 3 875658968 +424 289 5 880858924 +429 549 4 882385749 +181 1002 1 878963122 +374 70 4 880396622 +487 237 4 883441813 +56 200 4 892679088 +457 118 4 882395400 +6 503 3 883602133 +151 181 5 879524394 +452 216 3 888568700 +320 2 4 884749281 +230 240 1 880484320 +379 93 3 885063369 +25 655 4 885852248 +93 866 2 888705780 +26 1014 3 891384414 +145 1291 3 888398563 +42 54 4 881108982 +177 50 5 880131216 +253 1016 3 891628094 +271 443 3 885848943 +311 121 4 884366852 +383 357 5 891193137 +425 302 5 878737511 +442 569 2 883390140 +262 235 2 879790783 +447 135 5 878855989 +234 1269 3 892078297 +218 168 4 877488316 +411 22 4 891035239 +431 307 3 879038461 +239 181 3 889180411 +457 127 5 882396902 +454 323 2 881958783 +456 177 4 881373900 +249 12 5 879572472 +7 583 2 892132380 +478 354 3 889397221 +407 405 3 876348318 +378 223 4 880045651 +464 194 5 878355259 +181 477 1 878962465 +286 924 4 876521773 +118 223 5 875385386 +144 281 3 888104191 +114 156 4 881309662 +498 127 4 881954219 +416 14 4 876697017 +484 228 5 891195349 +422 324 5 875129523 +497 627 3 879310021 +379 568 5 880525566 +479 88 4 879462041 +373 401 4 877106711 +505 591 4 889333676 +342 301 5 874984045 +268 597 2 875743310 +158 684 3 880134332 +250 333 4 883263374 +429 504 3 882385065 +130 246 4 874953698 +189 204 5 893265657 +404 1238 3 883790181 +458 792 4 886398025 +393 321 3 887742179 +466 232 4 890284903 +504 66 4 887839165 +117 763 5 881009890 +387 746 1 886479737 +283 168 5 879298206 +16 770 3 877724979 +406 921 4 879793235 +303 117 3 879468581 +296 125 5 884196985 +378 157 3 880056104 +194 481 3 879524291 +299 300 4 877618619 +301 403 4 882076292 +463 1164 1 877385797 +450 650 4 882376446 +235 512 5 889656044 +486 690 2 879873973 +399 496 3 882349868 +18 430 4 880130155 +488 58 3 891376081 +212 268 5 879303468 +21 669 1 874951761 +506 479 4 874873571 +341 1025 5 890757961 +405 726 1 885547690 +401 483 4 891033121 +457 664 4 882549601 +344 696 3 884900567 +500 244 3 886358931 +487 140 3 883531085 +90 70 5 891383866 +385 604 4 879442189 +450 288 3 884097913 +365 269 4 891303357 +417 1139 3 879649448 +130 765 4 876252420 +484 463 4 882807416 +339 357 5 891032189 +7 175 5 892133057 +392 346 4 891037437 +102 652 2 892992129 +149 286 5 883512591 +52 121 4 882922382 +470 919 3 879178370 +43 1035 4 883955745 +497 780 2 879363181 +437 276 5 880141618 +459 1047 3 879563668 +234 156 2 892078936 +291 367 4 874871800 +13 855 4 882140130 +379 1022 3 892879380 +177 153 4 880130972 +269 778 3 891448547 +497 260 4 878759529 +415 641 3 879439960 +405 2 1 885547953 +325 271 3 891477759 +360 124 5 880354215 +268 4 4 875309829 +201 1193 4 884111873 +239 185 4 889178688 +345 143 5 884992940 +145 236 1 888397981 +141 974 4 884585300 +497 943 4 879362019 +253 494 5 891628341 +262 421 4 879792331 +374 289 1 880392482 +22 105 1 878887347 +506 410 2 882100955 +338 607 4 879438225 +125 451 4 892838288 +311 176 4 884365104 +435 135 3 884131771 +458 346 4 889323539 +465 525 3 883531111 +59 357 5 888204349 +480 172 3 891208492 +123 462 4 879872540 +468 116 4 875280180 +214 223 3 891544200 +437 88 3 880143140 +425 515 3 890347138 +174 364 1 886515240 +505 99 4 889333313 +451 749 3 879012773 +507 343 5 889964074 +98 514 5 880498898 +1 269 5 877482427 +416 1336 1 878879350 +385 429 4 879442028 +271 179 4 885848616 +271 393 4 885849648 +390 275 5 879694123 +406 461 3 879446269 +327 154 4 887747337 +293 7 3 888905062 +468 469 4 875296309 +417 483 5 879647355 +358 511 2 891271035 +416 1400 4 886317029 +313 94 3 891030490 +343 521 5 876408138 +49 382 2 888066705 +450 95 3 882395167 +254 542 3 886475034 +402 124 4 876266926 +151 230 3 879528647 +499 238 2 885599498 +254 196 4 886472400 +417 728 3 879648881 +463 282 3 877385664 +450 1 4 887835272 +87 871 4 879876734 +316 923 5 880854022 +336 4 4 877757790 +60 357 4 883326273 +279 128 5 875296461 +18 402 3 880132225 +378 806 4 880045760 +417 778 4 879648742 +239 474 5 889179095 +417 1000 4 879648403 +94 192 4 891721142 +417 1207 3 880952970 +308 157 5 887738268 +279 1435 3 892174339 +267 385 3 878972873 +429 625 3 882387474 +497 252 3 879310650 +477 781 4 875941191 +423 347 3 891394632 +85 1010 2 879452971 +221 298 4 875244331 +203 100 1 880434411 +455 504 4 879110573 +276 354 4 888873388 +250 527 4 878091735 +236 591 4 890117029 +104 257 4 888465582 +44 100 5 878341196 +183 55 4 891466266 +8 518 4 879362422 +32 475 5 883717766 +291 823 3 874833936 +128 268 3 879966355 +447 258 5 878853977 +5 194 4 878845197 +399 452 3 882350762 +405 554 1 885548049 +372 262 4 876869066 +381 566 2 892696512 +334 1170 4 891548729 +250 313 5 883262672 +230 98 5 880484391 +318 161 3 884496738 +313 118 4 891028197 +279 99 3 890451347 +18 165 4 880129527 +468 411 3 875284879 +308 641 4 887736459 +326 8 4 879875457 +256 106 4 882153724 +385 1159 4 885245956 +389 519 4 879991461 +450 154 3 882377590 +2 283 5 888552084 +497 508 3 878759705 +298 294 3 884184024 +389 132 5 880087544 +504 179 1 887839165 +391 318 4 877399030 +504 807 4 887839081 +417 561 3 879648707 +130 235 4 874953728 +463 127 5 890530105 +268 128 3 875744199 +299 1506 4 878192680 +6 465 1 883683508 +378 7 4 880044697 +130 411 5 876251217 +276 1301 4 885871474 +488 154 3 891293974 +88 311 5 891037336 +207 276 2 875504835 +92 674 4 875906853 +490 993 1 875427739 +5 229 2 875635947 +486 287 4 879875279 +456 484 4 881373983 +327 70 4 887819316 +497 657 3 879361847 +330 63 3 876547165 +80 154 3 887401307 +64 475 5 889738993 +389 467 3 879991512 +399 1184 3 882344638 +120 258 5 889490124 +181 105 1 878963304 +95 168 4 879197970 +262 210 3 879792962 +95 28 4 879197603 +217 29 2 889070011 +421 7 3 892241646 +334 591 4 891544810 +1 32 5 888732909 +452 207 4 875261261 +298 58 4 884182725 +388 301 4 886438602 +191 300 4 891560842 +514 96 5 875311192 +399 188 4 882344310 +378 210 4 880057137 +56 550 4 892910860 +280 220 5 891700426 +184 381 4 889909962 +99 315 4 885678479 +505 713 3 889334217 +221 7 4 875244204 +377 338 3 891297293 +287 237 5 875334151 +297 430 1 875238778 +426 613 3 879444146 +330 98 5 876546033 +392 813 3 891039015 +276 415 3 874793062 +94 111 4 891721414 +425 751 2 890346264 +394 101 4 880886670 +94 528 5 885870323 +251 33 3 886271675 +234 180 3 892079910 +383 100 4 891193016 +83 832 3 883868300 +41 202 2 890687326 +334 428 4 891547955 +378 385 4 880056761 +142 333 5 888639968 +95 491 4 879197783 +169 495 3 891359276 +416 93 4 876697105 +457 219 4 882550304 +336 1041 2 877757837 +363 68 2 891495809 +271 523 4 885848770 +425 877 3 890346198 +312 632 3 891698764 +330 99 4 876546172 +493 925 3 884130668 +493 156 1 884130995 +472 71 2 875981281 +314 423 4 877888060 +490 257 3 875428570 +276 823 3 874786807 +429 211 5 882385090 +468 23 4 875287535 +23 961 5 874785165 +66 405 3 883601990 +61 327 2 891206407 +49 159 2 888068245 +503 659 5 880472148 +417 1232 2 879649369 +234 1051 2 892336322 +503 900 5 892667389 +393 1468 4 887746091 +74 351 3 888333352 +105 690 3 889214306 +232 117 3 891565128 +286 703 2 889651672 +145 156 5 875271896 +503 194 4 880472591 +303 11 4 879467260 +355 271 3 879486422 +292 523 4 881105561 +236 496 3 890116499 +264 1355 4 886124417 +59 483 5 888204309 +474 293 4 887915269 +452 588 3 885804123 +22 431 4 878888026 +416 257 3 876697205 +63 333 4 875746917 +271 98 5 885848559 +508 238 4 883767343 +2 276 4 888551552 +102 245 3 883748222 +435 376 2 884134019 +301 181 5 882074291 +76 1157 1 882607018 +436 504 4 887769151 +503 164 3 880472507 +511 346 4 890004686 +450 1020 4 882376365 +90 89 5 891385039 +338 513 5 879438225 +504 72 4 887840134 +514 15 4 875309350 +6 461 4 883601393 +498 54 2 881961745 +246 441 3 884922538 +371 423 5 880435071 +157 100 5 886890650 +216 280 2 880233043 +315 173 4 879821003 +457 57 4 882397177 +498 187 4 881955960 +207 483 5 875774491 +77 268 5 884733857 +90 300 3 891382163 +104 258 3 888442249 +23 588 4 884550021 +455 70 3 879111194 +60 494 4 883326399 +401 404 2 891033395 +224 284 3 888104117 +493 411 1 884132934 +399 97 4 882343204 +222 186 5 878184195 +153 50 1 881371140 +489 310 4 891449022 +504 678 4 887831115 +486 994 3 879874811 +233 47 5 877661881 +450 712 3 882470642 +96 194 2 884403392 +488 474 2 891294439 +417 774 4 879648707 +413 302 2 879968794 +244 215 4 880603242 +337 127 3 875184682 +497 274 3 879309760 +483 462 3 884047754 +70 24 4 884064743 +417 1041 3 879648478 +253 12 5 891628159 +87 866 4 879877208 +450 227 3 882398313 +404 739 4 883790851 +506 281 3 880198144 +504 1263 4 887909532 +191 891 3 891560481 +477 709 5 875941763 +459 827 3 879563758 +267 732 4 878973650 +396 100 2 884646092 +201 751 3 884110766 +416 196 5 893214128 +425 156 5 878737873 +450 923 5 886612198 +312 493 5 891698365 +316 185 2 880853548 +201 455 3 884112487 +405 732 5 885545456 +200 984 3 884125996 +405 1439 1 885546724 +42 756 5 881106420 +85 205 4 879454004 +165 270 4 879525672 +484 560 4 891195886 +372 129 4 876869667 +360 328 3 880354094 +109 425 2 880582317 +347 432 4 881653973 +445 209 4 891200869 +167 318 5 892738307 +437 69 2 880140501 +254 435 3 886472089 +467 257 4 879532512 +307 56 4 878856967 +83 69 4 887665549 +279 132 3 875308670 +262 451 4 879794446 +480 615 4 891208185 +330 94 4 876547426 +325 434 5 891478376 +457 66 4 882547694 +330 28 5 876546526 +251 1016 3 886272197 +385 186 1 879445260 +311 562 3 884365746 +234 887 3 891034078 +266 25 3 892257940 +411 227 3 891035362 +472 758 1 875979359 +416 515 5 893214041 +425 32 3 890347138 +393 929 3 887745230 +83 233 4 887665549 +38 588 5 892429225 +92 409 3 890251791 +256 785 4 882165296 +435 86 4 884131844 +504 581 4 887910623 +83 15 4 880307000 +321 48 4 879439706 +11 508 4 891903005 +435 5 2 884133046 +472 568 5 892790676 +263 202 4 891299031 +214 64 5 892668130 +269 48 5 891455816 +438 181 4 879868005 +7 187 4 891350757 +281 304 5 881200745 +303 603 5 879466457 +506 229 4 874874895 +276 526 4 874791123 +486 882 2 879874018 +416 692 5 893212484 +402 182 5 876266775 +222 1016 3 877563530 +223 974 2 891550504 +62 50 5 879372216 +76 318 3 882606166 +413 236 4 879969557 +342 26 2 875320037 +385 1103 3 887269178 +194 562 2 879524007 +53 64 5 879442384 +415 754 4 879439311 +361 514 5 879440345 +237 408 5 879376434 +293 684 3 888905481 +404 348 3 883790400 +58 1101 5 890421373 +301 132 4 882076619 +208 194 5 883108360 +324 294 5 880575002 +11 79 4 891905783 +363 79 2 891494835 +109 79 5 880572721 +488 180 2 891294439 +276 192 5 874787353 +489 881 2 891447586 +210 517 4 887730342 +499 482 2 885599182 +177 92 4 882142295 +119 332 4 886175313 +428 331 4 885943847 +13 796 3 886304188 +311 783 3 884366439 +399 431 2 882344906 +469 153 4 879523891 +234 735 3 892079803 +436 642 4 887769079 +230 25 3 880485282 +438 118 4 879868529 +468 249 3 875280310 +383 654 5 891193016 +320 71 3 884751439 +76 7 4 875312133 +385 1160 2 879440211 +500 971 5 883876093 +270 90 5 876955770 +307 185 3 877118565 +121 165 4 891388210 +346 1135 4 874950993 +354 202 3 891307157 +425 68 4 878738386 +321 64 3 879438607 +384 316 5 891274055 +503 127 5 879438161 +13 827 3 882398327 +264 19 5 886122952 +249 588 3 879572256 +314 588 5 877888007 +406 923 3 879446108 +174 715 3 886514397 +193 82 2 889125880 +308 276 4 887736998 +479 1013 1 879460453 +191 900 4 891560481 +455 279 3 882141582 +506 494 5 878044851 +280 769 3 891702441 +210 568 4 887735960 +474 744 3 887916260 +94 187 4 885870362 +405 395 3 885547506 +213 143 5 878955766 +497 382 4 878759745 +500 469 4 883874813 +346 300 5 874947380 +214 127 4 891542986 +375 288 4 886621795 +381 961 3 892696616 +332 931 2 888360532 +64 82 3 889740199 +38 127 2 892429460 +389 127 5 879915701 +423 751 3 891394832 +391 774 2 877399541 +110 895 2 886987354 +215 271 4 891434733 +336 575 3 877757373 +454 404 3 888267590 +11 222 3 891902718 +18 91 3 880130393 +379 631 5 880961600 +343 614 5 876404689 +271 371 5 885849188 +91 132 3 891439503 +406 172 5 879792811 +506 465 4 874874630 +505 245 4 888631349 +190 471 5 891033632 +149 302 4 883512623 +446 888 1 879787859 +363 651 3 891495682 +442 42 4 883388401 +194 423 3 879548121 +405 560 1 885549045 +184 945 4 889909721 +113 424 1 875076357 +215 313 5 891436543 +468 13 4 875280104 +60 735 5 883327711 +437 747 4 880143167 +271 77 4 885849231 +60 435 4 883326122 +378 732 4 880056034 +417 1446 3 879648824 +274 866 4 878946107 +393 154 2 887746302 +450 1222 3 887834953 +331 1194 3 877196444 +461 269 3 885355705 +178 38 3 882827574 +169 684 5 891359354 +336 1437 2 877756890 +70 8 4 884064986 +34 324 5 888602808 +506 560 3 874874458 +151 1203 5 879542670 +194 736 2 879548122 +145 363 4 875271607 +352 129 5 884290428 +515 344 2 887660131 +275 71 3 875154535 +454 234 3 888267087 +31 268 3 881547746 +450 1152 5 882812558 +361 639 4 879440652 +487 255 2 883441890 +31 32 5 881548030 +409 153 4 881168603 +396 25 3 884646191 +447 748 1 878854056 +478 188 4 889396582 +293 588 3 888906748 +297 154 5 875239658 +469 605 4 879524302 +378 68 2 880333446 +395 231 4 883764456 +343 42 4 876404647 +301 739 2 882076966 +301 521 3 882076987 +406 175 5 879792811 +470 950 3 879178645 +326 435 3 879874897 +363 293 4 891499329 +130 692 5 875801422 +493 210 5 884131620 +59 770 4 888205534 +445 479 3 890988206 +496 318 4 876065693 +182 111 4 885613238 +64 511 4 889739779 +425 675 3 890347047 +276 343 4 881563147 +244 732 1 880604148 +227 1028 2 879035803 +305 971 4 886324608 +337 520 5 875236281 +466 546 4 890285159 +321 153 4 879440746 +387 277 4 886481033 +236 225 3 890117465 +10 606 5 877888876 +268 226 4 875310784 +416 750 5 893214128 +303 28 3 879466717 +429 673 3 882386485 +59 210 4 888204309 +186 1399 2 891718530 +393 717 3 887745086 +474 1009 4 887915722 +416 682 3 877902163 +308 1411 4 887741150 +451 1393 2 879012812 +470 546 4 879178950 +406 632 4 879446168 +145 767 2 879161882 +417 293 4 879646123 +486 257 3 879875315 +162 144 3 877636746 +450 101 5 882399359 +417 679 2 879649044 +179 307 3 892151565 +116 304 2 876453376 +342 423 4 875319436 +385 175 4 879441572 +43 97 5 883955293 +422 682 2 879743787 +314 996 4 877891354 +5 183 4 875636014 +487 710 4 883445721 +474 117 4 887915306 +102 210 3 888801522 +370 607 5 879435168 +346 746 3 874949116 +450 395 3 882470642 +145 1028 5 875271607 +58 310 4 884459024 +478 658 3 889395977 +437 124 5 880140101 +66 248 4 883601426 +389 167 3 880089170 +13 679 4 882397650 +113 948 3 875935312 +23 530 4 874789279 +450 1050 4 882812349 +136 137 5 882693339 +450 94 4 882468239 +468 258 4 875279126 +392 249 1 891038224 +387 161 1 886483252 +459 411 2 879563796 +489 457 3 891449254 +361 170 5 879440605 +498 474 4 881957905 +479 640 4 879462168 +512 265 4 888580143 +382 150 2 875946055 +235 83 4 889656068 +405 98 4 885544798 +206 748 4 888179833 +488 468 5 891295023 +347 240 5 881653300 +406 135 5 879445684 +330 451 5 876547813 +388 682 4 886439808 +276 62 2 874792574 +209 286 2 883417458 +59 675 5 888205534 +210 327 4 887735288 +293 25 3 888904696 +20 94 2 879669954 +66 508 4 883601387 +269 582 4 891447234 +62 512 4 879374894 +401 535 2 891032518 +290 496 4 880474156 +416 790 4 886318270 +45 820 4 881015860 +90 639 5 891385039 +239 512 5 889180921 +347 158 3 881654773 +450 272 5 886449009 +296 259 1 884196374 +230 951 5 880485181 +356 347 4 891405619 +389 90 3 880088659 +279 401 5 875310730 +275 62 3 876198328 +474 707 5 887925751 +5 440 1 878844423 +82 284 4 876311387 +451 270 4 879012684 +515 362 4 887658844 +327 328 2 887743600 +1 141 3 878542608 +18 519 4 880129991 +500 116 4 883865232 +293 250 3 888904862 +407 502 2 876338883 +196 340 3 881251045 +69 42 5 882145548 +296 663 5 884198772 +249 546 3 879640436 +339 410 2 891034953 +298 430 5 884182657 +223 930 2 891550326 +295 161 4 879518430 +170 323 3 884293671 +398 88 4 875733660 +360 483 5 880355527 +513 117 5 885062519 +385 425 3 879445724 +291 655 4 874868629 +233 14 4 876021262 +84 1 2 883452108 +374 252 3 880394179 +497 570 3 879362511 +178 24 3 882824221 +198 222 3 884204993 +119 56 4 874781198 +109 568 5 880578186 +244 521 4 880606385 +435 792 4 884131404 +487 12 5 883445580 +475 286 2 891451276 +256 79 5 882164406 +203 815 4 880434882 +406 148 3 879540276 +200 28 5 884128458 +308 19 3 887737383 +413 284 4 879969709 +224 313 5 888081843 +391 61 5 877399746 +249 423 4 879572167 +160 273 5 876767660 +327 475 4 887744405 +416 81 5 893213405 +504 370 3 887832268 +456 1267 4 881373756 +5 29 4 875637023 +450 629 4 882397940 +176 952 2 886048230 +350 185 5 882347531 +454 258 4 881958402 +73 32 4 888626220 +456 57 4 881374521 +177 268 3 880130452 +506 385 4 874873944 +344 291 3 884899791 +500 58 3 883873720 +24 180 5 875322847 +95 708 2 880571951 +497 188 3 879310762 +13 529 4 882140206 +271 127 5 885848863 +458 12 5 886395758 +456 423 3 881374586 +360 515 4 880354315 +339 678 2 891036781 +109 181 5 880563471 +18 284 3 880131804 +400 749 4 885676452 +478 48 4 889388587 +311 444 2 884365746 +262 1095 2 879791537 +313 428 3 891014649 +417 70 4 879647749 +94 763 3 891722006 +442 350 2 883387916 +346 636 3 874950794 +43 231 4 883955995 +45 756 2 881015244 +234 591 3 892335142 +43 196 4 875981190 +327 190 4 887832180 +78 257 4 879633721 +436 168 3 887769050 +105 264 2 889214491 +416 241 5 893213796 +463 249 2 889936035 +42 43 2 881109325 +523 114 5 883701800 +156 651 4 888185906 +378 501 4 880055454 +194 356 2 879524892 +157 934 2 886890878 +403 274 3 879786661 +267 164 3 878972342 +154 288 3 879138235 +429 124 4 882384821 +97 132 5 884238693 +500 237 3 883865483 +57 11 3 883698454 +308 231 3 887740410 +291 33 4 874834850 +417 708 2 879648798 +246 567 5 884923348 +447 151 3 878854520 +488 292 3 891292651 +295 60 5 879517492 +339 127 5 891032349 +415 479 4 879439610 +250 988 4 878089182 +417 56 5 879647519 +198 1 4 884205081 +430 293 3 877225865 +505 748 1 888631208 +512 23 4 888580248 +90 136 5 891383241 +144 1065 4 888105714 +48 294 3 879434212 +312 521 5 891698987 +276 691 4 888873488 +293 462 4 888905819 +435 153 3 884131243 +435 62 3 884133657 +280 507 3 891700682 +321 480 4 879440109 +445 844 2 891200138 +379 649 4 880525084 +387 1134 1 886481183 +222 521 5 878184866 +95 70 4 880571951 +457 229 4 882392853 +447 231 2 878856394 +493 652 5 884131287 +151 716 2 879528778 +398 94 2 875732304 +7 547 3 891353710 +474 172 5 887923789 +114 655 3 881260506 +253 202 5 891628392 +504 1437 2 887911545 +515 313 4 887658604 +518 124 3 876823071 +102 548 2 885126313 +497 258 4 878759351 +325 186 4 891478578 +158 39 5 880134398 +68 458 1 876974048 +309 319 4 877370419 +504 414 5 887838450 +425 583 3 878738245 +495 379 5 888636870 +405 374 1 885549094 +380 665 2 885480870 +387 147 2 886481073 +207 458 3 875991160 +110 215 3 886987894 +343 530 5 876405633 +116 511 4 876453519 +415 195 5 879439685 +85 194 4 879454189 +508 195 3 883767565 +477 15 4 875941863 +360 326 3 880354094 +268 324 4 876513708 +280 725 3 891702387 +407 519 4 875042466 +475 100 5 891452276 +102 231 2 888802319 +339 161 3 891034626 +95 463 5 880573287 +438 286 2 879867960 +417 20 2 880949408 +94 268 4 891724925 +23 100 5 874784557 +313 258 3 891012852 +406 276 4 879539824 +92 218 4 875654846 +495 56 5 888632574 +313 663 5 891013652 +113 124 3 875076307 +86 270 5 879570974 +416 331 4 890021365 +13 884 2 882140814 +392 134 5 891038371 +363 117 5 891495742 +249 741 4 879572402 +498 522 3 881956499 +303 258 4 879465986 +437 211 4 880140100 +118 79 5 875384885 +234 16 2 891227771 +334 642 5 891548436 +346 38 3 874950993 +280 1466 5 891700836 +194 121 2 879539794 +416 845 4 876697361 +495 451 4 888635524 +301 81 3 882077351 +505 498 5 889334274 +437 518 2 880143809 +186 754 2 891717690 +261 687 5 890455020 +308 118 3 887739670 +64 227 3 889740880 +455 321 2 892230438 +213 504 5 878955885 +499 661 3 885599474 +301 447 4 882078955 +26 246 4 891351590 +504 194 3 887832668 +387 470 3 886483970 +279 932 3 892174381 +103 405 3 880416424 +296 79 4 884197068 +7 449 3 891354785 +451 332 4 879012342 +167 96 5 892738307 +21 413 2 874951293 +393 802 3 889729420 +455 204 4 879111249 +31 175 5 881548053 +385 1066 4 879446591 +286 147 5 876522114 +59 642 5 888206254 +259 121 3 881379128 +428 896 4 885943685 +405 1221 1 885546155 +468 285 4 875280104 +328 62 3 885049275 +354 889 5 891217966 +446 303 2 879787859 +448 316 1 891887337 +56 399 4 892910247 +371 627 4 877487656 +96 195 5 884403159 +393 376 4 889730011 +201 772 5 884113343 +374 1215 1 880936522 +308 558 4 887737594 +383 1063 5 891192888 +116 268 5 886310197 +328 226 3 885048235 +178 685 4 882824253 +224 333 3 888081976 +270 5 5 876956064 +57 64 5 883698431 +374 1049 1 883628021 +167 478 5 892738452 +224 326 4 888082071 +193 781 3 889124469 +89 240 4 879441571 +409 483 4 881107602 +327 327 3 887737402 +347 756 2 881653266 +416 1074 5 893213103 +509 319 2 883590913 +326 657 5 879875431 +92 364 3 875907702 +495 391 3 888637440 +6 410 4 883599707 +472 739 5 875982967 +461 313 4 885355646 +122 180 5 879270327 +454 642 2 888267419 +518 1047 4 876823266 +494 237 4 879541375 +499 215 4 885599475 +472 255 5 892791017 +378 496 3 880045935 +387 91 4 886483669 +416 225 1 876697330 +361 430 5 879440475 +429 166 5 882384796 +373 423 2 877103846 +96 318 5 884403057 +307 181 5 879283232 +13 880 3 882140966 +387 151 3 886481228 +48 269 1 879434094 +275 99 3 875154718 +234 185 3 892078936 +68 286 5 876973692 +500 30 4 883875275 +473 547 3 878157600 +473 10 3 878157527 +177 11 4 880131161 +326 64 4 879875024 +366 561 5 888858078 +148 50 5 877016805 +49 1018 2 888066755 +90 972 4 891384476 +486 818 3 879874784 +479 422 3 879461207 +17 137 4 885272606 +64 436 5 889739625 +79 906 5 891271792 +516 199 3 891290649 +450 225 4 887662002 +407 635 3 876345934 +381 847 4 892697542 +479 161 3 879461399 +145 687 2 882181335 +321 510 5 879440317 +505 187 1 889333676 +201 956 4 884140522 +436 125 4 887770037 +256 684 5 882164480 +91 135 4 891439302 +358 558 4 891269511 +279 94 3 892865054 +312 176 4 891699295 +326 511 4 879875593 +301 502 4 882076558 +451 1296 3 879012685 +18 949 3 880131559 +94 90 3 891721889 +331 735 4 877196444 +72 212 5 880036946 +472 365 4 875983129 +421 11 2 892241624 +269 96 1 891450755 +406 641 5 884630523 +314 125 5 877886412 +303 137 4 879468414 +363 531 4 891495879 +518 291 3 876823926 +447 117 4 878854630 +145 23 4 875271896 +374 186 5 880395604 +333 513 4 891045496 +445 295 1 891199843 +383 340 5 891192276 +103 301 4 880416704 +346 180 5 874947958 +409 191 5 881107817 +75 678 3 884049758 +494 1 3 879541374 +326 651 4 879875663 +167 435 5 892738453 +271 286 4 885844610 +315 176 4 879821193 +416 283 5 893213796 +320 550 5 884749384 +307 204 3 879205470 +327 1007 4 887745272 +167 1304 4 892738277 +235 603 3 889655044 +279 624 4 875734996 +425 22 3 878738290 +221 358 3 875244232 +393 1258 3 887744688 +457 282 4 882392785 +145 877 2 885557506 +465 179 3 883531325 +472 88 2 875982607 +510 289 2 887667751 +325 50 5 891478140 +181 1359 1 878962200 +305 327 3 886307948 +361 502 4 879440475 +18 200 3 880131775 +214 154 3 891544000 +13 316 5 888073653 +387 47 4 886480384 +457 258 5 882392853 +487 136 5 883445606 +59 111 4 888203095 +145 789 4 875272132 +378 15 4 880044312 +305 64 5 886323406 +44 249 4 878346630 +348 126 5 886523560 +457 240 3 882395638 +359 298 5 886453354 +393 90 2 889729938 +294 619 3 877820328 +466 1313 3 890283690 +321 9 4 879440472 +174 1282 5 886433862 +132 175 3 891278807 +405 729 4 885545487 +5 378 1 875721167 +159 274 3 880557387 +279 444 3 875659746 +479 71 1 879461143 +435 154 4 884131434 +25 474 4 885852008 +374 161 5 880938965 +234 1133 3 892336358 +449 546 2 879959573 +430 302 4 877225173 +361 60 4 879440605 +328 70 4 885047252 +303 239 3 879484871 +479 748 3 879459710 +450 402 4 882395662 +434 756 2 886725027 +380 463 4 885479372 +476 781 4 883365135 +428 879 4 885943818 +474 234 5 887923788 +330 568 5 876546752 +269 77 1 891451374 +92 591 4 875640294 +351 300 5 879481425 +505 468 4 889334096 +379 233 3 880525638 +201 1268 4 884112077 +425 529 4 890346998 +22 231 2 878887983 +435 284 2 884132898 +406 71 3 879793081 +375 5 4 886622066 +327 12 3 887744205 +437 581 1 880143010 +466 350 4 890284651 +409 484 4 881107310 +202 204 3 879727058 +405 1253 1 885548671 +363 70 2 891496373 +394 84 4 880889583 +494 199 4 879541158 +486 6 4 879874902 +339 530 5 891032413 +383 531 3 891192888 +360 748 2 880354094 +232 246 4 885939945 +277 147 4 879543822 +416 347 4 893214333 +470 93 4 879178518 +22 367 1 878886571 +392 880 4 891037720 +271 505 4 885848475 +246 12 5 884921948 +389 997 3 881384536 +514 429 4 875311225 +280 239 3 891701344 +306 321 3 876503793 +524 151 1 884627327 +472 1469 4 875982337 +501 25 3 883347773 +15 50 5 879455606 +118 132 4 875384793 +495 1444 2 888637018 +125 790 4 892838462 +314 815 5 877886375 +13 155 2 882399615 +203 993 3 880434919 +405 1290 2 885546379 +376 427 4 879454598 +291 140 4 875086887 +244 941 4 880603618 +278 286 5 891295044 +210 435 4 887730407 +495 200 5 888637768 +325 28 3 891478796 +450 736 5 882395167 +43 479 4 875981365 +286 224 5 889651549 +481 313 4 885827861 +227 321 3 881518363 +525 1 4 881085964 +470 221 4 879178370 +250 676 5 878089547 +2 1 4 888550871 +221 156 5 875245533 +63 15 3 875747439 +128 133 5 879967248 +426 1204 4 879444321 +64 679 3 889740033 +389 474 5 879991535 +443 323 2 883504866 +521 81 1 885253861 +178 1101 4 882827019 +471 418 3 889827757 +52 117 4 882922629 +5 392 2 875637330 +181 877 2 878961668 +65 258 3 879216131 +379 191 5 880524886 +271 257 4 886106038 +170 348 3 887646014 +178 1157 3 882827375 +524 205 5 884634707 +56 234 4 892679067 +224 736 3 888082742 +193 94 3 889127592 +216 58 4 880244972 +271 1046 4 885849357 +524 89 5 884634533 +514 746 5 875309276 +158 293 4 880132513 +122 69 2 879270511 +128 655 3 879969064 +479 164 4 879461781 +454 11 1 888266433 +416 1426 5 893212572 +7 419 3 891350900 +486 123 3 879875278 +229 311 5 891633028 +416 268 4 876696643 +292 482 5 881103606 +470 293 4 879178455 +488 655 3 891294246 +71 175 4 885016882 +109 29 3 880582783 +445 480 3 890988206 +160 531 5 876942699 +178 95 5 882826514 +524 660 5 884636152 +447 642 4 878855819 +383 223 3 891193137 +181 336 2 878961709 +195 1416 2 884504132 +458 742 4 886394730 +308 15 3 887739426 +292 156 5 881105516 +130 982 1 880396831 +376 223 4 879454598 +483 250 3 878952837 +178 591 5 882827288 +213 655 4 878956300 +435 85 4 884132840 +405 1588 1 885549789 +40 245 3 889041671 +436 200 3 887769515 +393 257 4 887744294 +347 226 4 881653890 +178 238 4 882826577 +232 302 5 885939473 +524 285 3 884322168 +130 532 5 876250955 +184 512 4 889908716 +59 713 5 888203579 +13 646 4 882140037 +184 527 4 889908462 +479 385 2 879461567 +454 257 4 881959276 +230 265 5 880484544 +101 280 3 877136039 +428 988 1 885943955 +26 628 3 891372429 +454 197 4 881959961 +16 240 4 877724603 +405 573 3 885548435 +262 181 3 879961819 +13 689 2 881515735 +123 98 4 879872672 +62 1 2 879372813 +463 284 3 877385531 +151 781 3 879543181 +178 235 1 882824467 +405 1166 1 885546025 +13 347 5 885185824 +251 1098 3 886271920 +334 83 4 891628832 +325 768 3 891479564 +271 663 4 885849052 +416 329 3 886314592 +503 173 5 880383357 +64 431 4 889737376 +193 72 2 889127301 +22 449 1 878888145 +104 302 5 888441877 +336 388 1 877757418 +46 245 3 883614625 +429 485 3 882385210 +339 80 3 891035707 +378 693 4 880046022 +31 490 4 881548030 +271 614 4 885848373 +265 298 5 875320633 +381 283 5 892697655 +337 15 5 875185596 +467 240 3 879532773 +348 111 5 886523330 +64 748 1 879365314 +303 387 5 879485401 +497 385 3 879310792 +163 433 1 891220137 +470 246 2 879189432 +92 145 2 875654929 +475 347 4 891451341 +405 1590 1 885549789 +117 144 4 881011807 +354 753 5 891217482 +365 288 5 891303357 +10 221 4 877888677 +181 591 4 878962996 +457 1012 4 882393765 +373 655 5 877098374 +329 169 4 891656178 +276 797 3 877934643 +167 240 1 892737972 +102 566 2 888801876 +374 620 3 880394088 +417 123 2 879646500 +437 657 5 881001888 +195 1407 2 874825826 +387 97 2 886483859 +102 91 3 883748488 +506 1608 2 885135497 +327 211 3 887818682 +398 480 5 875658794 +57 763 5 883698581 +457 769 2 882551740 +486 3 2 879875347 +504 755 4 887841177 +217 33 4 889069878 +59 443 5 888205370 +417 273 3 879646286 +59 647 5 888205336 +484 778 5 891195246 +354 255 2 891216788 +441 9 4 891035528 +455 304 3 878585409 +104 313 4 888441878 +293 38 1 888907981 +10 432 4 877892160 +385 482 3 879441728 +374 974 4 880394331 +450 707 5 882373786 +246 208 4 884921394 +91 176 5 891439130 +518 25 5 876823197 +262 959 2 879794739 +492 483 2 879969210 +514 328 3 885180947 +393 876 3 889554316 +125 435 4 892836550 +440 971 5 891577871 +432 150 5 889415853 +270 335 3 876953900 +399 12 3 882509891 +378 248 3 883835834 +303 540 1 879543679 +474 285 5 888628044 +405 1148 1 885546680 +357 597 4 878952080 +479 436 4 879461856 +173 690 5 877557076 +181 475 2 878962720 +458 1261 4 886397413 +152 504 4 882476261 +374 924 5 880393095 +445 117 1 891199821 +298 134 5 884182966 +44 81 4 878348499 +346 366 2 874947609 +365 294 1 891303614 +262 40 4 879795405 +13 554 2 882397833 +343 89 3 876406006 +524 615 2 884637409 +394 128 3 880888896 +11 69 3 891904270 +116 306 3 876751342 +90 1195 5 891384789 +449 1006 4 880410701 +436 288 4 887768445 +84 225 4 883452307 +500 553 2 883876370 +327 1017 2 887819316 +285 302 5 890595313 +5 390 5 875636340 +456 50 4 881373473 +354 652 4 891217194 +142 124 4 888640379 +520 315 4 885169083 +508 69 3 883776748 +337 449 4 875185319 +95 193 3 879198482 +413 9 4 879969591 +303 3 3 879485184 +480 174 5 891208356 +60 1050 3 883327923 +67 25 4 875379420 +327 464 4 887822785 +122 582 5 879270644 +259 288 3 874724905 +519 1617 5 883250102 +496 156 3 876065933 +293 165 3 888905991 +222 31 5 878182453 +90 430 3 891383835 +267 229 4 878972558 +435 423 2 884131157 +495 235 5 888636603 +276 73 3 874791805 +116 116 3 876453733 +504 118 3 887831838 +514 189 5 875318291 +292 607 4 881105625 +450 60 3 882472089 +412 7 5 879717505 +508 144 3 883767728 +374 89 2 880395896 +437 218 2 880142830 +493 180 4 884130793 +26 126 4 891371676 +161 435 2 891171104 +405 525 1 885548632 +279 436 4 891209332 +148 89 5 877398587 +354 1197 3 891219490 +10 116 4 877888944 +321 175 3 879439706 +437 746 4 880141335 +435 751 4 884130725 +360 308 4 880353584 +495 216 4 888632443 +67 546 3 875379288 +354 515 3 891216526 +279 597 5 875297456 +463 1012 2 889935860 +234 602 4 892334368 +346 802 4 875265236 +398 735 4 875659266 +23 652 4 874785926 +435 1401 4 884131868 +456 369 3 881371942 +446 328 3 879786984 +43 140 4 883955110 +449 117 3 879958624 +299 484 4 877881169 +495 68 5 888634987 +267 926 2 878970785 +430 264 2 877225328 +94 809 2 891723155 +201 11 4 884112201 +453 172 5 877554587 +405 776 1 885549094 +393 1228 3 889728074 +222 388 2 878184765 +388 742 5 886437163 +495 44 3 888636032 +429 165 5 882384821 +316 168 3 880853599 +60 608 5 883326028 +363 72 1 891496850 +378 387 4 880056452 +453 384 2 888205711 +386 833 3 877655195 +468 251 4 875280180 +328 317 4 885046976 +6 504 3 883601155 +344 405 2 884900353 +72 582 4 880036783 +419 181 4 879435807 +453 427 3 877554174 +504 402 4 887839835 +483 249 2 878952866 +450 613 4 887660650 +206 262 1 888180049 +293 746 3 888906748 +94 66 2 891721889 +379 79 5 880525368 +455 778 4 879112582 +217 679 5 889069878 +435 161 3 884133710 +394 210 4 880888689 +280 1221 5 891701944 +450 465 4 887834823 +286 209 4 877531691 +459 274 4 879563226 +438 866 5 879868529 +504 215 4 887908861 +488 485 3 891294298 +442 82 3 883390497 +523 382 5 883701018 +417 206 2 879648778 +257 70 4 880496892 +479 230 4 879461898 +348 121 5 886523521 +72 15 5 880035708 +508 735 4 883775341 +246 95 3 884920949 +115 33 4 881171693 +139 460 3 879538199 +456 673 3 881374849 +450 747 4 882395166 +297 514 3 875239383 +442 943 4 883391221 +472 141 4 875982200 +327 321 3 887743761 +525 123 3 881086051 +472 501 3 875982868 +379 559 3 880524669 +523 153 4 883702054 +276 692 4 874791960 +466 2 1 890284819 +174 696 4 886434087 +94 586 1 891723707 +468 321 3 875279126 +230 28 5 880484444 +23 283 4 874784575 +487 143 3 883530841 +303 525 5 879466604 +314 1041 4 877888445 +181 934 3 878963086 +511 292 5 890004686 +382 56 5 875946830 +181 1162 1 878962392 +327 218 3 887746328 +255 685 3 883216845 +416 367 5 893212572 +248 7 2 884534968 +528 485 2 886101872 +378 651 4 880045681 +480 483 3 891208293 +504 199 4 887912236 +393 480 4 889554756 +38 1033 5 892432531 +393 559 3 889729614 +299 461 3 878192601 +284 272 5 885328727 +515 690 2 887660131 +234 4 4 892334610 +268 397 2 875744321 +327 285 4 887744459 +49 1072 1 888069194 +450 493 4 887660722 +14 96 4 890881433 +493 546 5 884131738 +417 265 3 879648026 +492 127 5 879969879 +484 926 4 881450136 +181 1026 1 878961781 +19 288 3 885411840 +85 197 5 879455197 +417 154 4 879647561 +193 300 4 889123039 +254 8 5 887347000 +194 405 2 879539305 +453 100 5 877552612 +497 100 4 878759828 +426 494 3 879442702 +305 121 3 886324898 +378 11 3 880046516 +298 23 4 884183236 +311 1042 3 884366187 +314 367 4 877889770 +205 315 4 888284245 +291 417 4 875086958 +429 216 4 882385090 +276 21 3 874787195 +233 378 4 877663429 +97 526 3 884239687 +406 215 3 884630523 +94 56 5 891725331 +56 210 5 892676377 +18 474 4 880129731 +308 591 3 887739608 +320 421 4 884750968 +32 248 4 883717816 +197 678 2 891409593 +245 133 2 888513058 +401 1016 3 891032607 +201 238 3 884113343 +254 78 3 886475476 +295 118 3 879518840 +498 197 5 881958414 +495 172 5 888632378 +528 239 5 886101632 +270 279 5 876954093 +399 559 3 882344096 +311 750 5 884363706 +416 219 4 876699946 +486 286 2 879873973 +296 523 4 884197235 +280 235 5 891701649 +429 31 3 882386966 +207 60 3 877845845 +16 469 3 877720916 +367 559 4 876690048 +433 59 5 880585730 +371 50 4 877486953 +83 322 3 889681216 +399 710 2 882342537 +493 298 3 884130668 +298 318 5 884182657 +263 690 5 891297209 +178 90 3 882827985 +112 321 3 884992484 +363 537 1 891495402 +6 321 3 883268353 +429 258 4 882386096 +286 144 3 877531434 +92 100 5 875640294 +499 742 4 885599334 +429 392 3 882386051 +497 82 4 879310792 +504 197 4 887832531 +123 483 4 879873020 +318 94 4 884498210 +313 404 4 891030189 +472 411 4 875979113 +126 328 5 887853735 +504 417 3 887841177 +130 82 5 875802080 +345 1008 3 884991267 +94 508 5 891720712 +469 530 5 879524376 +504 719 3 887841248 +504 281 4 887831447 +393 1185 3 889728606 +435 175 4 884132588 +518 919 5 876822967 +474 498 4 887924683 +504 934 4 887832170 +504 75 4 887912568 +497 864 3 879309734 +480 234 4 891208769 +286 216 4 877532013 +494 191 4 879541158 +311 724 4 884365406 +206 1434 1 888180082 +508 172 5 883767157 +314 11 5 877887837 +435 200 5 884131661 +422 53 4 879744183 +504 143 4 887838008 +347 982 1 881652709 +524 650 2 884637528 +474 196 5 887924469 +442 685 2 883390703 +197 684 4 891409981 +472 1095 4 883904614 +483 449 3 878953593 +425 841 1 878738597 +222 238 5 878181673 +450 123 2 882373464 +472 135 4 875982051 +263 87 4 891298977 +479 1244 3 887064647 +241 288 5 887249745 +445 248 1 891199774 +339 186 4 891032255 +456 1008 4 881371427 +18 9 5 880130550 +246 746 4 884922070 +265 245 4 875320112 +486 717 2 879875440 +95 971 3 879198262 +301 195 5 882076098 +532 58 4 888636374 +10 334 4 877886281 +13 613 4 881515411 +48 496 5 879434791 +26 181 4 891386369 +244 1079 2 880605333 +330 554 3 876547500 +458 288 3 886394667 +189 132 5 893265865 +160 671 5 876859778 +489 271 4 891448706 +180 258 5 877125493 +458 956 5 886397377 +354 66 2 891307180 +253 300 4 891627724 +429 137 5 882387731 +291 546 3 874805958 +257 245 4 884151807 +342 8 4 875319597 +436 325 3 887768756 +507 338 5 889964348 +472 578 5 892790952 +1 211 3 878541970 +530 527 4 883784654 +504 1442 3 887911444 +194 69 4 879521595 +416 746 5 893213444 +64 569 3 889740602 +287 9 5 875334089 +311 196 5 884365325 +396 742 4 884646346 +450 10 4 882398567 +276 558 4 874787526 +81 275 4 876533657 +406 204 5 879446718 +452 203 3 875275561 +280 765 4 891701816 +44 159 3 878347633 +531 990 5 887048789 +264 514 5 886123359 +524 1268 3 884637032 +7 574 5 892132402 +463 149 2 877385341 +279 71 3 890780576 +63 1012 3 875747854 +506 72 3 874874802 +503 137 5 879438072 +62 1009 4 879372869 +389 602 4 879991081 +86 328 2 879569555 +370 135 4 879434746 +232 603 4 888549376 +472 217 5 875982867 +478 496 5 889388862 +387 768 1 886483620 +7 616 4 891351002 +59 416 3 888205660 +399 554 3 882348592 +101 257 4 877137015 +321 83 4 879439926 +506 1219 2 874874760 +114 855 3 881260473 +145 117 5 875270655 +92 1011 3 886443471 +85 30 3 882995290 +425 17 4 878738290 +39 937 5 891400704 +42 720 4 881109149 +349 544 4 879465933 +102 501 2 883748418 +276 462 4 874795868 +270 727 5 876955563 +207 88 2 878104627 +151 782 4 879542566 +116 324 2 876452133 +456 273 3 881372328 +488 491 4 891294209 +81 1047 3 876533988 +176 25 3 886048188 +123 319 4 879809220 +213 511 4 878955442 +203 150 5 880434278 +230 237 5 880484800 +500 223 4 883873839 +92 143 3 875653960 +186 595 3 879023390 +374 106 3 880394088 +21 240 4 874951245 +417 118 4 879646548 +65 514 4 879217998 +459 336 2 879561708 +83 739 5 880308141 +266 286 4 892256662 +156 178 5 888185777 +256 185 5 882164696 +347 692 4 881654679 +236 216 5 890116163 +250 340 4 883263374 +353 272 5 891402757 +476 1188 2 883364780 +524 605 1 884637566 +496 633 3 876065822 +435 1074 2 884133415 +95 423 5 880571479 +118 53 5 875385280 +524 182 5 884635031 +401 430 2 891033582 +344 70 3 884901561 +200 107 3 884128022 +399 226 3 882344406 +459 121 5 879563474 +398 125 3 875719764 +73 171 5 888626199 +505 54 3 889334067 +518 284 4 876823324 +37 825 2 880915565 +130 261 4 874953525 +479 122 1 879460648 +190 898 2 891033349 +137 174 5 881433654 +351 245 3 879481550 +227 273 3 879035206 +382 332 3 876803039 +229 272 3 891632073 +109 216 3 880572891 +437 781 4 880143263 +452 1427 5 885816768 +479 655 4 879460959 +514 47 4 875462645 +450 514 5 882468931 +210 290 4 887730813 +409 478 4 881107155 +437 168 3 881002161 +409 1065 2 881109264 +343 1 5 876402668 +416 346 4 886314592 +342 131 5 875319786 +397 588 4 885349528 +458 284 4 886394527 +327 182 4 887744205 +268 729 3 875310673 +301 228 3 882076966 +502 683 3 883702867 +239 65 5 889180041 +467 100 5 879532420 +425 286 1 878737511 +361 129 4 879441285 +460 1115 3 882912235 +532 603 5 893119491 +363 1214 1 891497712 +373 432 5 877098949 +94 786 3 891723593 +314 1311 5 877889994 +234 69 4 892078567 +450 1041 4 882469432 +128 159 4 879968390 +5 101 5 878844510 +524 603 3 884637376 +338 443 5 879438570 +372 1109 4 876869818 +477 88 5 875941085 +456 985 3 881371492 +529 325 3 882535693 +464 705 5 878355258 +419 89 3 879435722 +251 429 4 886271955 +388 298 5 886436582 +198 763 3 884206482 +405 644 3 885545672 +354 193 3 891217782 +483 313 2 884046430 +456 86 2 881374332 +497 765 3 879363155 +160 248 5 876768828 +345 1023 2 884994658 +500 133 3 883875681 +425 445 3 878738887 +19 887 4 885411465 +236 673 4 890116132 +301 127 4 882074262 +294 410 4 877819897 +74 328 4 888333280 +378 404 4 880056034 +144 69 5 888105140 +161 181 2 891171848 +474 210 5 887928562 +105 271 2 889214245 +417 16 3 879646692 +445 831 1 891200447 +303 518 4 879468581 +10 692 4 877889261 +474 756 1 887915646 +454 100 4 881959917 +119 329 3 886433226 +303 420 4 879484563 +174 210 4 886514788 +327 69 2 887822711 +184 1014 2 889907468 +447 5 3 878856422 +94 932 2 891724691 +455 529 3 879111737 +501 307 4 883346651 +506 50 5 878044852 +454 143 4 881960230 +392 59 4 891039049 +394 156 4 880886855 +145 738 3 875272927 +5 208 4 875636675 +524 1044 4 884636931 +346 576 3 875264945 +484 879 4 891194665 +401 632 4 891033014 +401 282 3 891032584 +6 522 5 883601500 +416 94 2 886318546 +495 29 2 888636573 +483 271 3 881273325 +44 25 2 878346431 +303 25 4 879468047 +274 98 5 878946536 +436 276 4 887769824 +508 188 4 883767325 +184 1167 5 889913687 +15 333 1 879455128 +474 496 4 887923708 +171 258 4 891034801 +360 50 4 880354149 +157 1244 3 886891194 +373 143 3 877105005 +148 209 5 877398648 +437 132 5 880141962 +42 934 4 881106419 +416 915 5 893212483 +393 815 4 887744372 +474 676 3 887916369 +493 250 4 884130387 +497 802 2 879362118 +429 184 4 882386260 +234 137 3 891227730 +70 300 4 884063569 +480 319 3 891207539 +256 815 5 882151743 +371 64 4 877487052 +371 655 4 880435238 +457 54 4 882549322 +405 957 1 885549464 +94 93 4 891724282 +405 416 2 885548932 +58 652 5 884304728 +495 109 5 888633594 +496 97 1 876066848 +330 729 5 876545721 +347 356 5 881654134 +392 650 5 891038978 +406 219 3 879792897 +326 483 5 879874963 +271 235 3 885848062 +488 605 3 891294785 +13 357 3 881515411 +92 421 4 875654534 +87 228 5 879875893 +18 972 3 880130515 +3 268 3 889236961 +256 741 4 882151517 +436 794 4 887771123 +92 160 4 875654125 +495 222 5 888633277 +112 339 4 892439990 +315 327 4 879799583 +476 238 3 883364324 +417 198 4 879647924 +333 153 4 891045496 +296 180 5 884198772 +194 820 1 879541742 +222 506 2 878183264 +504 404 4 887910370 +422 327 3 875129603 +399 582 3 882343358 +87 21 3 879877173 +203 283 5 880434359 +299 1005 5 878192833 +311 648 4 884364694 +86 888 4 879570218 +298 1 5 884126061 +275 408 3 875154438 +379 447 4 880524582 +101 742 4 877136302 +496 380 2 876068433 +297 237 4 875239383 +279 291 3 878878420 +517 284 2 892659923 +143 323 3 888407656 +77 250 3 884732873 +500 739 2 883876573 +286 121 3 876522166 +293 939 2 888906516 +346 56 5 874949217 +60 173 4 883326498 +125 705 5 879454243 +455 47 2 879112172 +511 313 5 890004702 +245 1033 5 888513522 +506 779 2 885135954 +509 50 5 883591878 +23 856 4 874787288 +193 508 4 889125319 +104 289 4 888442112 +527 152 2 879456405 +339 276 4 891032495 +1 40 3 876893230 +450 13 3 882373297 +464 326 4 878354761 +527 956 4 879455847 +368 313 5 889783251 +454 509 2 881960230 +271 520 5 885848615 +339 157 4 891032379 +160 410 4 876769148 +524 198 4 884634707 +7 656 3 891351509 +474 61 3 887924619 +339 428 5 891032349 +468 137 4 875280126 +321 1126 3 879439860 +332 264 3 893027312 +387 972 2 886483859 +332 456 4 887938556 +437 208 5 880139997 +485 289 3 891041551 +37 566 4 880916010 +532 95 5 893118711 +7 558 4 892131924 +491 19 4 891185209 +13 191 3 881515193 +489 272 5 891448367 +500 164 4 883874469 +437 794 4 880143243 +436 159 4 887770192 +500 1163 1 883865290 +311 423 5 884365579 +342 1167 1 875319854 +52 204 4 882923012 +429 1217 2 882385489 +519 352 5 883250148 +178 127 5 882823978 +43 133 4 875981483 +532 70 4 888634801 +92 651 4 875653271 +42 58 5 881108040 +109 411 4 880572296 +435 49 4 884132072 +296 303 4 884196238 +406 1202 3 879445684 +85 712 3 882995754 +429 164 4 882385489 +425 55 4 878737945 +91 603 5 891439171 +13 909 5 890704721 +497 152 2 878759898 +177 176 4 880130951 +327 298 3 887744405 +276 222 4 880913800 +456 69 4 881373949 +507 826 5 889966127 +303 544 4 879483617 +200 392 5 884128858 +358 318 5 891271063 +128 387 2 879968774 +514 402 4 875463245 +489 263 2 891448268 +389 780 3 880614316 +495 642 4 888635050 +161 186 4 891171530 +345 223 5 884902317 +459 1 4 879562960 +417 367 2 879648898 +351 1024 4 879481495 +363 216 3 891495879 +26 831 2 891379753 +109 809 4 880582945 +280 324 5 891700185 +299 962 4 889501593 +339 709 5 891032982 +94 993 4 891724303 +450 451 4 882398220 +184 708 4 889909962 +197 895 3 891409199 +439 405 4 882893323 +406 474 5 884630554 +476 944 2 883364813 +42 125 4 881105462 +328 12 5 885045528 +398 494 3 875813142 +497 588 4 879309993 +199 1326 3 883782934 +430 221 5 877225547 +105 313 5 889214193 +210 69 4 887736482 +393 761 4 889728667 +476 734 4 883365274 +205 1025 1 888284495 +385 8 5 880870206 +295 631 5 879966498 +223 591 3 891549627 +268 179 4 875309258 +408 315 5 889679715 +466 334 3 890283690 +416 25 4 876697243 +107 268 4 891264387 +405 419 4 885548785 +360 248 4 880354484 +75 114 4 884051893 +393 421 2 889555000 +385 496 2 879441538 +533 949 4 879439519 +102 38 2 888801622 +18 94 3 880131676 +508 568 4 883777237 +497 230 2 879310762 +184 654 4 889908824 +110 231 1 886988664 +62 436 3 879375883 +507 1034 5 889966127 +521 1016 3 884476002 +223 749 4 891549049 +313 167 3 891029076 +380 566 3 885478519 +393 239 4 889728324 +102 332 3 883277920 +235 701 4 889655086 +350 265 2 882347466 +345 534 4 884994592 +454 651 4 881960083 +104 290 4 888465739 +52 588 4 882922927 +416 785 3 888703399 +447 678 3 878854056 +208 996 3 883108684 +389 208 5 880087415 +532 369 3 874792142 +138 133 4 879024043 +354 661 4 891306946 +312 514 3 891698516 +502 294 3 883702255 +405 1587 1 885546529 +373 189 5 877100416 +502 879 3 883701980 +496 154 2 876066424 +473 276 4 878157404 +452 684 4 888493923 +398 49 3 875736199 +35 881 2 875459127 +453 268 4 877552481 +119 276 2 874775262 +509 288 5 883590443 +189 647 4 893265826 +381 139 3 892697358 +294 413 3 889242166 +429 692 3 882385118 +303 54 3 879484695 +472 552 5 892790576 +291 231 3 874835024 +312 654 5 891698485 +339 640 5 891035035 +246 679 2 884922917 +500 386 3 883875610 +435 118 2 884132458 +493 175 4 884131933 +298 79 5 884182685 +125 780 2 892839270 +450 418 4 882395914 +95 205 3 888954412 +472 395 3 875982559 +506 1016 4 882100828 +318 282 4 884470775 +465 28 3 883531110 +244 105 2 880605333 +380 699 3 885479186 +129 302 4 883243934 +486 597 3 879875187 +425 1464 2 890346998 +26 24 3 891377540 +417 1182 3 879648798 +389 610 5 880086972 +109 403 5 880581719 +275 135 3 880314824 +387 195 4 886479528 +91 182 4 891439439 +195 326 3 887439400 +61 748 2 892302120 +327 708 4 887818596 +533 477 4 880402957 +500 640 4 883874776 +6 47 3 883600943 +346 181 5 874948332 +230 568 3 880484567 +256 88 5 882165296 +318 378 4 884497632 +18 707 3 880131450 +269 185 5 891448951 +425 679 3 878738548 +406 198 2 879793179 +389 612 4 879991218 +367 183 5 876689738 +373 64 4 877098643 +184 738 3 889910372 +330 293 3 876544311 +385 143 3 879446465 +336 1496 1 877757268 +387 650 2 886480163 +198 56 5 884207392 +314 284 3 877886706 +426 524 4 879442785 +293 660 2 888907433 +268 89 4 876513897 +262 735 4 879793854 +524 66 3 884636617 +497 101 4 879310070 +233 196 5 880610814 +254 1183 4 887347350 +497 87 3 879363565 +532 216 5 893119438 +374 928 1 880393892 +44 448 2 878348547 +43 86 4 883955020 +338 708 5 879438627 +313 493 3 891016193 +303 550 3 879467607 +222 806 4 878181534 +487 265 5 883530236 +422 250 5 875130100 +331 958 5 877196504 +474 529 5 887924571 +503 54 2 879454950 +476 585 1 883365336 +429 591 3 882385663 +286 14 4 875807003 +426 835 3 879444853 +460 301 3 882910579 +370 195 4 879434886 +257 1160 4 882049973 +496 727 5 876072633 +230 95 5 880484850 +303 382 3 879467815 +363 322 2 891493959 +279 649 3 875312719 +320 66 4 884751034 +456 1168 4 881375284 +486 276 4 879874969 +374 226 5 880937876 +327 428 4 887819021 +1 270 5 888732827 +446 754 3 879787858 +291 403 4 874835165 +478 604 3 889398289 +393 494 4 889727702 +304 895 3 884967017 +453 17 4 877553928 +35 678 3 875459017 +194 693 4 879524216 +466 333 4 890284652 +385 134 5 879441538 +455 692 3 879111249 +524 95 3 884636617 +239 421 5 889181048 +498 258 2 881955080 +501 324 4 883346694 +214 100 4 891542986 +345 70 5 884992248 +479 752 3 889125284 +1 133 4 876892818 +473 508 2 878157456 +106 216 5 881452998 +405 769 1 885548475 +456 640 4 881373697 +85 512 3 879456199 +90 26 4 891385842 +13 321 2 882140740 +453 276 5 877552564 +521 179 4 885253708 +503 402 3 880383467 +144 244 3 888104588 +484 94 4 891195856 +381 99 5 892696445 +416 710 4 893142441 +514 175 4 875462426 +472 475 5 892791017 +42 175 2 881107687 +291 215 4 874868382 +275 132 3 880314529 +314 78 4 877890463 +417 255 3 879646327 +234 950 2 892079538 +426 1064 4 879444117 +267 655 4 878971989 +145 761 4 882182850 +327 1069 4 887819136 +417 39 3 879648212 +533 1177 1 879192184 +532 333 4 875441189 +425 327 4 890346659 +504 403 3 887910409 +459 222 4 879562994 +416 144 5 893212730 +417 562 4 879648955 +144 144 4 888105254 +474 181 5 887915511 +159 72 3 884026946 +187 651 5 879465566 +64 191 4 889740740 +437 58 4 880141243 +328 559 3 885048986 +60 433 4 883327342 +334 125 3 891544925 +409 615 5 881107084 +450 611 5 887135833 +193 237 4 889124327 +405 211 1 885547177 +327 686 4 887820293 +405 1307 1 885546529 +523 662 4 883703070 +207 756 2 877878923 +435 27 1 884133911 +445 1277 2 891200736 +505 66 4 889333313 +532 399 3 888630360 +311 504 4 884364873 +121 1266 4 891388250 +365 151 4 891304106 +416 393 4 886316118 +378 1048 2 880333851 +429 93 4 882385136 +314 1267 3 877888117 +487 45 5 883446725 +291 563 3 874867824 +373 499 4 877098643 +495 217 5 888637768 +116 191 4 876453961 +305 180 4 886323806 +320 82 3 884749359 +338 83 2 879438064 +62 91 4 879375196 +279 1266 1 875308843 +416 158 3 886319235 +454 79 4 881960083 +453 288 4 877562071 +190 15 4 891033697 +151 549 4 879543324 +484 597 3 881450182 +487 87 5 883445606 +437 381 5 880142426 +405 788 1 885548275 +181 358 2 878961709 +478 17 2 889396180 +97 183 5 884238911 +83 249 2 887664680 +183 176 3 891466266 +18 480 4 880129595 +387 511 3 886483049 +94 741 4 891721352 +177 469 4 880131201 +496 1133 3 876070957 +429 762 4 882386814 +347 117 5 881652518 +13 401 1 882141841 +405 404 4 885548932 +385 483 4 879442028 +407 455 3 884201774 +390 126 5 879694123 +407 1012 3 875548480 +232 514 4 888549879 +87 722 4 879876946 +383 89 3 891193181 +524 143 3 884635085 +222 271 4 881057647 +194 1011 3 879539794 +374 69 5 880394840 +70 83 4 884065895 +313 168 3 891013589 +497 94 3 879363133 +354 272 3 891180399 +454 1269 3 881959698 +305 170 4 886322691 +197 56 1 891409799 +504 1508 3 887911686 +496 921 5 876072633 +268 981 1 875743283 +96 181 5 884403687 +145 977 3 879161931 +373 66 4 877099263 +453 68 4 877561411 +183 1159 3 891479702 +334 197 4 891546181 +521 156 4 884478171 +308 68 4 887740933 +505 705 3 889333758 +3 288 2 889237026 +501 151 4 883348543 +32 313 4 883709840 +308 241 4 887738509 +307 660 3 879205470 +303 357 5 879466717 +83 411 2 880307259 +116 203 5 876453915 +459 8 5 879563903 +73 272 4 888792247 +495 392 5 888635455 +450 258 4 882216108 +107 313 2 891264266 +510 330 2 887667808 +303 455 3 879484421 +189 1065 5 893265478 +23 433 5 874785233 +293 433 3 888907407 +372 559 4 876869481 +15 118 1 879456381 +269 715 4 891448092 +222 257 4 877563353 +160 455 4 876769689 +287 682 4 888177213 +416 468 5 893213549 +391 659 4 877399208 +518 934 3 876823143 +44 24 3 878346575 +533 526 2 879191265 +463 993 2 877387935 +429 531 5 882385729 +378 716 3 880056735 +457 395 2 882551605 +467 1142 5 879532478 +210 482 5 887736739 +13 553 2 882399419 +286 1239 3 877535344 +146 328 3 891458079 +77 215 2 884752757 +215 196 4 891435548 +497 1555 2 879363780 +473 293 4 878157507 +58 741 2 892242159 +525 281 3 881086562 +301 196 4 882077836 +417 485 3 880949880 +183 210 3 891465869 +236 462 4 890115933 +276 331 4 890979062 +60 405 4 883326958 +8 229 5 879362356 +120 121 4 889490290 +26 302 5 891386368 +428 877 5 885943685 +533 50 5 882902988 +464 116 4 878355167 +497 549 4 879310445 +263 543 5 891298727 +437 97 3 880141286 +487 188 4 883445900 +102 771 2 888802508 +463 124 5 877385381 +469 194 5 879524116 +293 160 4 888907036 +478 81 4 889395977 +276 128 4 874792436 +487 549 4 884046879 +407 208 4 887832999 +416 783 3 886318768 +435 54 4 884132403 +424 127 4 880859493 +503 281 3 879454576 +58 171 5 884663379 +276 120 2 874787172 +505 422 3 889333975 +312 1126 4 891699455 +43 735 4 875981275 +451 292 3 879012684 +58 172 5 884305241 +53 568 4 879442538 +118 56 5 875385198 +407 230 4 875045371 +483 277 3 878952636 +327 222 2 887744357 +216 790 3 881428365 +437 42 3 880141129 +486 1202 4 879874995 +199 93 4 883782825 +94 1218 4 891722511 +447 286 2 878855082 +102 53 2 888801577 +178 405 3 882823905 +497 77 3 879362093 +487 541 3 884050711 +85 412 3 879453288 +379 575 2 882044649 +290 1285 3 880475565 +373 828 3 877111951 +202 481 1 879726642 +24 69 5 875323051 +407 1 4 876338278 +18 639 4 880131407 +264 217 3 886122446 +60 835 4 883326893 +236 685 2 890117308 +257 181 5 882050131 +44 678 3 878340887 +504 529 4 887832391 +106 280 2 883876680 +7 140 5 891353124 +514 302 5 885180556 +151 657 5 879524760 +377 98 5 891299009 +334 746 3 891548622 +254 28 4 886472369 +64 218 1 889739517 +43 217 2 883955930 +479 133 2 879461970 +363 58 3 891494962 +287 181 3 875333964 +416 931 3 886315822 +436 381 4 887769209 +479 405 4 879460236 +506 77 3 874874850 +290 926 3 880732538 +351 322 5 879481589 +380 670 1 885480187 +24 486 3 875322908 +478 369 3 889388429 +448 900 3 891887393 +457 114 5 882396868 +399 1139 4 882348974 +53 118 4 879443253 +296 61 3 884197287 +486 886 3 879874388 +151 275 5 879524443 +241 682 2 887249745 +418 899 5 891282706 +16 11 5 877718755 +371 117 3 877487052 +417 665 2 880952400 +43 1048 3 883956260 +267 550 4 878973047 +303 616 4 879484948 +8 228 5 879362286 +435 354 3 889722012 +348 291 4 886523790 +244 746 3 880606180 +497 99 3 879310021 +379 168 4 891674489 +521 69 3 884477727 +499 11 3 885599372 +151 603 5 879524641 +262 55 3 879791790 +344 280 3 884899815 +496 38 2 876068615 +188 5 4 875074266 +299 508 4 877878451 +487 161 5 883530702 +194 1041 2 879553591 +8 195 5 879362287 +432 1016 3 889416397 +200 982 2 891825589 +396 333 4 884645528 +454 686 2 888267280 +495 629 3 888636032 +270 257 4 876954223 +315 271 3 879799546 +308 469 5 887738104 +454 50 4 881959144 +476 1074 4 883365274 +416 684 5 893213405 +85 27 4 879827488 +347 460 3 881652888 +295 705 4 879517682 +260 288 3 890618476 +279 219 2 875736276 +133 313 3 890588524 +374 983 2 880936289 +13 527 5 882140252 +69 886 4 882027284 +251 313 5 886271472 +230 204 4 880484616 +283 49 4 879298333 +405 667 1 885548275 +308 430 4 887738717 +201 735 3 884113975 +339 508 4 891032189 +60 59 5 883326155 +390 319 5 879693561 +456 222 2 881371766 +152 720 5 882477356 +334 657 4 891545898 +524 1560 4 884636444 +397 22 4 885349476 +64 182 4 889738030 +123 286 5 879809053 +222 473 1 877563622 +183 226 3 891466350 +393 630 4 889728150 +53 546 4 879443329 +398 28 5 875660302 +256 210 4 882164443 +312 214 3 891699121 +409 166 4 881107992 +129 311 3 883244059 +215 203 3 891435266 +43 347 3 888177393 +102 29 1 888802677 +330 135 3 876546172 +474 481 4 887927153 +253 8 4 891628323 +532 132 5 893118711 +450 905 5 885945656 +109 64 2 880572560 +314 627 4 877888996 +287 426 3 875336743 +124 28 3 890287068 +474 244 4 887915646 +456 111 3 881371942 +493 79 5 884131287 +308 715 5 887740700 +346 369 3 874948890 +426 492 5 879441931 +487 679 2 883530724 +340 50 4 884990546 +246 24 4 884921345 +380 81 3 885478908 +466 315 5 890284231 +314 1471 4 877892430 +256 15 5 882150644 +343 177 4 876407252 +304 300 5 884968415 +452 234 3 875264355 +269 1397 4 891450575 +417 270 2 879646036 +7 677 3 891354499 +487 735 4 884042206 +433 333 2 880585133 +524 1154 1 884637914 +500 287 3 883865268 +486 718 3 879874449 +115 922 3 881170252 +471 1 4 889827881 +450 1479 3 882377479 +13 843 5 882399156 +495 133 3 888632888 +158 194 5 880134913 +385 169 5 880870205 +249 467 4 879572795 +382 180 5 875946830 +122 724 4 879270677 +324 260 5 880575277 +382 197 4 875946830 +497 56 4 878759659 +239 50 5 889179131 +417 943 3 879648761 +269 212 4 891447002 +159 319 1 880485290 +337 636 4 875236281 +500 1014 2 884527433 +141 313 5 884584271 +380 340 3 885481179 +447 484 5 878856457 +535 1 3 879617663 +221 407 2 875245100 +419 134 5 879435722 +524 234 4 884634877 +453 234 3 877561411 +455 257 4 879109733 +207 524 4 878104569 +145 410 4 875270616 +244 173 4 880605458 +459 147 3 879563435 +174 323 1 886434241 +317 748 5 891446843 +533 288 2 882901971 +429 185 4 882386006 +279 764 3 888425981 +345 294 3 884901497 +305 195 3 886323006 +520 283 4 885170516 +91 98 5 891439130 +158 399 3 880134595 +405 1108 1 885546069 +536 174 5 882359065 +460 322 3 882910722 +267 405 3 878970953 +7 100 5 891351082 +251 813 3 886272086 +401 762 2 891032662 +23 82 3 874787449 +382 14 3 875946055 +97 197 3 884239655 +513 472 4 885062636 +487 820 3 883444884 +523 186 3 883703495 +234 381 3 892335739 +454 56 3 888267590 +219 1014 3 892039611 +303 270 4 879466088 +486 125 3 879874970 +269 783 1 891451889 +118 135 5 875384591 +59 432 4 888204802 +431 300 4 877844248 +221 50 4 875244125 +524 942 4 884636980 +256 22 5 882164259 +286 737 4 877532419 +119 1260 5 874781547 +253 100 4 891628122 +178 97 5 882827020 +478 739 4 889398528 +151 770 4 879542527 +387 113 4 886479575 +215 50 5 891436543 +282 340 3 879949394 +389 451 2 880165881 +405 714 1 885546379 +434 1051 3 886724453 +469 134 5 879524062 +527 588 4 879456289 +169 331 5 891268491 +417 461 3 879647140 +514 748 2 875463906 +528 58 5 886101994 +316 730 4 880853775 +194 762 3 879539305 +394 31 3 880887152 +334 286 4 891544049 +416 13 5 893212623 +325 1232 1 891479228 +405 1571 1 885549463 +2 305 3 888550065 +181 1277 2 878963085 +426 616 4 879444787 +181 920 1 878962496 +213 185 5 878955501 +430 286 4 877225174 +459 864 4 879563435 +476 748 2 883365634 +25 143 3 885852529 +189 501 4 893265893 +405 971 1 885549464 +434 1095 5 886724940 +43 3 2 884029543 +480 347 3 891207605 +314 801 3 877892017 +60 582 4 883327664 +152 275 4 880148664 +442 710 5 883388576 +405 1200 1 885548785 +22 202 5 878886480 +239 961 5 889181093 +293 29 1 888907499 +507 117 3 889965997 +492 124 4 879969345 +16 947 4 877719454 +268 234 4 875309430 +500 827 2 883876904 +465 588 4 883531380 +524 479 4 884637314 +446 688 2 879786985 +455 1137 3 879109881 +455 727 3 879112561 +7 557 4 892132145 +330 210 5 876546866 +495 1110 4 888637147 +15 15 4 879455939 +94 509 5 885873159 +272 96 5 879454845 +87 144 4 879875734 +151 238 5 879542286 +130 98 5 875216507 +535 286 2 879617123 +346 184 1 874950463 +251 151 5 886272118 +109 77 4 880578388 +454 736 3 888266991 +59 423 5 888204465 +416 67 4 886318740 +437 480 4 881002345 +435 294 4 884130584 +476 328 4 883365684 +497 71 4 879309993 +308 201 5 887737334 +535 519 3 879617931 +130 939 4 876252041 +393 410 4 887744419 +276 959 4 874791695 +385 487 4 887670073 +484 234 4 891195687 +533 103 3 887032538 +286 588 5 877532131 +119 22 4 874781698 +458 86 5 886397679 +463 1117 1 877385954 +344 129 4 884899346 +439 282 3 882893859 +450 502 5 882469061 +398 274 3 875655841 +535 515 3 879619224 +502 890 2 883702945 +430 12 4 877226164 +92 620 3 875813224 +389 105 3 880614316 +239 499 5 889179808 +235 181 3 889655360 +99 125 4 885678840 +429 12 5 882386424 +279 978 1 889231898 +504 288 5 887831273 +469 10 5 879525373 +413 245 2 879969027 +177 200 4 880130951 +363 7 3 891495510 +253 343 4 891627815 +198 276 3 884205317 +438 280 5 879868423 +527 28 3 879456289 +271 703 3 885848559 +381 1117 4 892697574 +16 498 5 877719333 +472 720 5 875982096 +455 31 4 879111937 +384 313 5 891273683 +201 631 2 884140750 +454 272 5 888007255 +389 384 2 880089211 +487 69 4 883445859 +456 168 4 881373794 +393 465 4 887746916 +123 657 4 879872066 +416 879 3 892439224 +339 197 5 891033653 +297 258 5 874953892 +457 157 5 882553112 +262 1013 2 879791471 +293 1229 1 888907210 +130 929 4 876251160 +340 520 5 884991544 +451 1025 3 879012773 +339 227 2 891035524 +474 696 3 887916330 +489 343 5 891447913 +134 328 4 891732335 +533 275 4 887721848 +526 7 4 885682400 +75 427 4 884051921 +308 523 4 887737084 +324 749 3 880575277 +394 541 3 880889741 +429 1017 3 882385399 +267 810 3 878973568 +340 173 5 884990703 +75 304 2 884051610 +116 888 2 886309958 +262 582 4 879962517 +89 724 4 879460027 +387 176 3 886480446 +41 318 4 890687353 +387 455 4 886481105 +527 615 4 879456312 +358 529 3 891269464 +145 54 5 888398669 +500 1 4 883865021 +158 652 4 880134966 +393 356 3 889731088 +479 211 4 879461447 +504 276 3 887831790 +485 347 2 891040688 +389 234 4 879991081 +313 483 5 891016193 +405 1549 1 885548671 +487 1217 3 884025080 +10 480 5 877888943 +276 17 4 874791894 +59 508 5 888203095 +184 411 3 889908207 +313 1091 2 891030261 +450 792 4 882396050 +110 230 3 886988750 +404 678 4 883790400 +472 1248 4 875983427 +56 232 4 892676339 +334 371 2 891547283 +141 118 5 884585274 +524 423 4 884635358 +16 200 5 877722736 +269 659 4 891449406 +269 462 3 891447216 +70 161 3 884067638 +381 898 5 892697869 +90 427 5 891384423 +213 405 3 878870904 +358 268 3 891269077 +100 286 3 891375629 +181 1280 1 878961668 +152 161 5 882476363 +487 81 3 883531507 +160 202 4 876862077 +57 24 3 883697459 +116 900 4 888311676 +473 1142 5 878157299 +130 159 4 875802211 +519 1280 5 883250102 +436 400 3 887771924 +506 475 1 874862229 +54 291 1 891898613 +532 746 5 893119438 +391 276 3 877399780 +234 143 3 892079288 +184 401 3 889910418 +274 591 4 878945466 +301 47 4 882076936 +301 235 2 882074408 +427 688 5 879701326 +291 391 1 874835242 +218 712 3 877488902 +497 1042 3 879362178 +456 581 3 881375155 +243 423 3 879988587 +456 578 2 881375127 +533 328 4 887032063 +249 64 5 879572210 +262 785 3 879794359 +524 187 5 884634646 +246 1052 1 884924710 +533 595 2 887032451 +119 916 1 892564442 +427 292 2 879701127 +426 673 4 879442227 +70 313 4 884063469 +517 300 5 892660728 +532 769 2 888630531 +256 54 5 882164955 +110 586 3 886988536 +94 404 4 891721615 +398 159 3 875717020 +114 318 3 881259495 +479 616 4 879462062 +100 908 1 891375068 +527 963 4 879456030 +303 658 5 879484327 +343 229 4 876407340 +18 166 4 880129595 +121 628 3 891389037 +299 1050 4 878192721 +407 29 3 876344410 +64 179 5 889739460 +468 1168 2 875302155 +128 1048 2 879968858 +279 189 5 878082781 +95 506 3 888954552 +457 959 4 882549180 +198 121 3 884206330 +411 527 4 892845926 +320 288 4 884748277 +478 403 2 889398645 +537 28 3 886031438 +312 524 5 891699345 +497 228 3 879310762 +405 226 2 885547953 +256 1041 4 882165328 +254 768 3 886475004 +514 269 4 885180864 +216 215 5 880235120 +63 741 3 875747854 +327 715 4 887819860 +535 789 2 879618613 +479 489 5 879460844 +325 655 4 891479312 +328 172 4 885045528 +499 463 5 885599498 +6 482 4 883601203 +6 529 4 883601459 +215 300 3 891434733 +279 109 5 880869018 +21 436 4 874951858 +450 131 4 882377861 +210 821 3 887730532 +90 651 5 891384997 +535 836 5 879617746 +13 883 3 882140848 +374 741 3 880392717 +201 588 4 884113490 +391 334 5 877399745 +1 239 4 878542845 +85 153 3 879453658 +279 1087 2 891209189 +533 245 3 890659336 +504 77 4 887840681 +339 423 3 891033602 +257 198 3 880496822 +320 79 4 884749255 +512 1 4 888589126 +104 748 2 888442461 +466 882 5 890284231 +482 298 4 887644085 +90 306 4 891382267 +416 452 3 886319106 +347 404 4 881654846 +246 216 3 884920949 +305 286 4 886307828 +490 123 2 875428570 +145 257 5 875270932 +336 56 4 877757601 +490 764 1 875427993 +378 1407 3 880334329 +323 678 2 878738910 +234 474 4 892317967 +311 479 5 884365519 +303 340 5 879466088 +3 355 3 889237247 +21 976 1 874951483 +500 143 3 883875092 +332 1090 5 888360508 +308 522 3 887737484 +92 554 2 875907180 +38 188 2 892431953 +342 367 5 875319967 +341 259 3 890758051 +27 148 3 891543129 +103 250 4 880415918 +416 248 5 893213103 +378 1211 3 880333516 +453 298 4 877552641 +97 96 5 884239712 +194 50 3 879521396 +13 95 5 882140104 +279 1402 1 888462243 +370 183 4 879434937 +303 952 3 879467706 +65 63 2 879217913 +82 99 4 878769949 +82 740 2 884714249 +102 194 3 888803537 +533 582 3 879192278 +334 905 1 891547612 +195 413 3 885110849 +214 180 5 892668130 +360 306 4 880353584 +305 792 4 886323406 +311 357 5 884365104 +406 772 4 882480836 +250 179 4 883263374 +58 1105 2 884794758 +222 710 4 881059714 +537 526 3 886031720 +109 70 4 880578038 +505 195 3 889334096 +189 855 3 893265657 +497 161 5 879310730 +535 165 4 879617613 +504 693 4 887832741 +478 1521 3 889397343 +346 172 5 874947609 +303 508 4 879467260 +497 54 3 879362071 +7 27 4 891352692 +420 288 3 891357271 +21 301 4 874951054 +435 157 4 884132146 +497 501 2 879309993 +456 462 3 881373506 +269 518 4 891447815 +500 815 3 883865374 +373 385 3 877099016 +389 483 5 879991535 +407 291 4 876348681 +533 252 4 880402784 +181 982 1 878963205 +90 170 5 891383561 +118 513 5 875384751 +533 651 4 888845036 +447 111 3 878854954 +527 127 5 879456132 +435 338 2 887509306 +406 508 4 879539883 +472 288 5 875977682 +536 274 4 882318394 +514 609 4 875462826 +489 331 5 891366606 +405 627 1 885548877 +123 479 4 879872066 +276 158 3 874791932 +178 751 4 882823353 +145 566 5 875272010 +454 531 2 888266785 +36 358 5 882157581 +15 302 4 879455049 +109 1074 4 880583308 +216 82 4 880244446 +5 399 3 875635947 +437 217 3 880143695 +71 197 5 885016990 +327 502 3 887747134 +38 105 3 892434217 +534 1047 4 877808361 +295 125 5 879518528 +421 914 3 892241236 +508 223 4 883767361 +285 198 5 890595900 +427 1265 5 879701253 +435 128 3 884132184 +388 895 4 886438540 +435 38 2 884133509 +7 609 3 891352749 +385 871 1 879440986 +79 690 4 891271308 +405 702 1 885547407 +416 448 3 886316797 +405 643 1 885546336 +427 303 5 879701253 +518 14 3 876822923 +458 282 2 886396958 +342 124 4 875318267 +524 483 4 884634533 +200 179 4 884129029 +59 52 4 888205615 +532 348 4 886364825 +184 82 3 889909934 +504 419 3 887832643 +504 1135 4 887911854 +537 46 3 886031678 +313 430 5 891013620 +144 823 3 888104659 +272 42 4 879454939 +239 190 1 889178616 +145 450 3 885557660 +278 258 3 891295099 +87 502 5 879876524 +313 409 2 891030334 +459 252 4 879563506 +342 410 3 874984661 +408 347 3 889679761 +422 515 4 875129882 +506 88 4 874873944 +454 326 4 881958362 +497 217 4 879362382 +398 700 2 875736199 +279 1305 4 875313406 +260 882 5 890618729 +327 582 4 887822711 +511 271 5 890004879 +119 300 5 874774286 +293 302 4 888904092 +329 274 3 891656639 +449 276 5 879958705 +417 89 5 879647604 +291 1303 3 874835279 +299 529 4 877880852 +28 323 3 882826593 +484 255 3 882079980 +535 1093 4 879617931 +450 673 3 882396928 +416 917 4 893214332 +405 399 1 885547408 +468 132 5 875292134 +433 1598 1 880585865 +305 16 3 886324058 +425 98 4 878738186 +399 587 3 882351626 +452 517 2 875562846 +83 191 4 880308038 +491 657 5 891189306 +486 1514 4 879874663 +387 250 4 886480970 +18 781 3 880132188 +342 174 2 875319681 +406 206 1 879445735 +83 121 4 880306951 +144 87 5 888105548 +92 64 4 875653519 +408 539 1 889680018 +466 176 4 890284766 +379 527 3 880524860 +454 631 2 888267643 +507 323 5 889964809 +201 423 4 884112901 +442 1067 3 883388576 +184 20 4 889907771 +327 1073 2 887744241 +308 1126 3 887738268 +188 764 4 875072087 +233 527 5 877665324 +141 127 2 884584735 +469 1558 5 879524177 +274 282 5 878945788 +254 1469 3 886473929 +498 1426 3 881959103 +439 93 4 882893737 +291 763 4 874833841 +18 425 3 880130713 +51 603 3 883498728 +7 77 5 891353325 +130 31 4 875801801 +293 824 3 888905252 +262 473 2 879791216 +346 288 2 886273342 +223 924 1 891549975 +490 126 2 875427812 +194 9 4 879535704 +392 325 4 891037634 +454 427 4 881960173 +454 735 2 888267387 +26 1012 4 891386369 +275 1 4 875154310 +34 294 1 888602808 +407 1044 3 876348639 +469 173 4 879524178 +222 723 3 878184812 +450 56 4 882371645 +493 528 5 884132246 +200 89 5 884128788 +503 182 3 880472321 +332 597 5 887938486 +385 1428 4 879447181 +213 24 5 878870846 +214 172 3 891544390 +50 324 5 877052008 +271 602 3 885848886 +370 425 3 879434860 +450 940 2 882471737 +506 230 4 874873847 +533 450 5 879191713 +217 546 2 889070196 +445 147 2 891199974 +334 510 4 891628832 +378 182 4 880055239 +276 763 3 874787214 +92 800 3 875906802 +88 300 3 891037466 +373 4 4 877100232 +342 196 3 874984128 +151 378 4 879528520 +92 449 3 875812511 +18 132 5 880132437 +5 456 1 875636375 +474 72 3 887927457 +214 522 4 891544052 +180 153 1 877126182 +455 126 5 879172791 +201 582 5 884111873 +437 421 4 881001983 +153 265 4 881371032 +489 681 3 891366805 +428 300 5 885943713 +313 418 3 891014838 +313 840 2 891028360 +488 228 4 891294854 +318 869 3 884498461 +504 1415 3 887912335 +484 122 2 889974407 +347 252 2 881653176 +183 181 2 891463937 +373 208 4 877106773 +520 1051 3 885170585 +59 1050 2 888205188 +224 744 1 888103646 +443 258 5 883504617 +49 80 1 888069117 +14 750 3 891014196 +252 1 5 891456989 +220 305 4 881197771 +42 161 4 881108229 +103 255 5 880416423 +450 1192 5 887137066 +256 233 4 882164479 +357 820 4 878952288 +429 47 4 882384950 +406 179 5 879446718 +168 871 3 884287711 +466 748 2 890283592 +72 118 3 880036346 +457 380 4 882392854 +527 204 5 879455847 +453 156 5 877554908 +25 195 4 885852008 +393 89 3 887745973 +385 192 5 884586327 +435 1133 2 884133224 +254 265 3 886471695 +435 672 1 884133253 +363 859 4 891500462 +58 463 3 884305241 +537 602 3 886031634 +207 210 3 878191574 +180 733 5 877128388 +22 216 4 878886682 +373 110 3 877104086 +256 174 4 882164406 +504 28 4 887839810 +459 22 5 879563903 +495 53 1 888637440 +486 146 2 879875188 +437 748 4 880139631 +450 158 3 882471524 +485 307 3 891040967 +201 789 3 884112840 +16 510 4 877727280 +455 584 4 879111528 +43 317 2 883955319 +454 568 4 888266906 +44 429 4 878347791 +177 628 2 882143736 +457 428 5 882553113 +503 313 5 884637568 +387 769 1 886481851 +110 325 3 886987561 +450 203 4 882396799 +23 780 1 874788388 +127 62 5 884364950 +128 218 3 879969244 +497 562 2 879310941 +133 749 4 890588720 +13 92 3 882397271 +343 508 5 876403514 +500 172 2 883873640 +7 405 3 891353290 +464 258 5 878354626 +348 323 5 886522579 +268 328 1 876513643 +391 462 4 877399588 +59 194 3 888204841 +311 651 4 884364623 +94 97 4 891721317 +230 427 5 880484501 +497 168 5 878760023 +297 117 4 874954497 +345 588 3 884992100 +332 322 4 887916365 +450 193 5 882372027 +534 455 5 877807816 +498 489 3 881956140 +208 739 4 883108873 +374 143 2 882159114 +275 416 3 880314991 +405 569 1 885546680 +110 802 3 886988793 +11 24 3 891904016 +389 131 3 880087739 +399 633 3 882347019 +104 508 2 888465201 +504 972 3 887910552 +409 514 5 881107310 +416 972 4 891476265 +474 11 5 887924571 +314 993 5 877886279 +328 589 4 885046244 +269 1006 3 891447409 +246 77 2 884921839 +497 655 4 878759862 +234 131 3 892334680 +328 649 3 885047417 +109 452 2 880583753 +425 474 4 890347138 +405 41 1 885547735 +405 70 3 885545912 +430 98 5 877226365 +533 724 4 888347691 +456 100 3 881372366 +95 94 5 880573288 +73 289 2 888792410 +405 1182 1 885547557 +497 105 2 879309836 +234 842 4 892334045 +49 692 1 888069040 +326 230 3 879876861 +344 459 4 884899741 +487 215 4 883446027 +489 302 5 891448109 +447 281 3 878854857 +56 1035 4 892910268 +64 183 5 889737914 +500 529 4 883874558 +85 1170 3 879456350 +11 580 5 891905222 +401 328 4 891031723 +2 14 4 888551853 +305 223 4 886322758 +354 423 4 891217575 +346 959 2 875260577 +99 845 3 885679183 +537 682 1 886029083 +181 760 1 878963418 +514 179 4 875463468 +450 612 4 882396564 +445 64 2 890987771 +13 292 5 882140867 +152 15 5 880148843 +348 546 3 886523256 +505 623 3 889333365 +374 872 5 880392268 +508 150 5 883767325 +246 413 4 884923922 +506 510 5 874873067 +321 530 4 879440109 +234 163 3 892335951 +363 895 3 891493840 +168 294 4 884286862 +5 168 3 875636691 +347 468 2 881654825 +62 715 2 879375912 +394 56 5 880887406 +488 662 4 891294896 +489 908 5 891446623 +406 211 5 879445936 +20 763 1 879668476 +476 33 4 883364475 +216 402 2 881432430 +442 482 3 883389747 +527 646 5 879455792 +230 1 5 880484370 +523 154 4 883702125 +96 216 4 884403095 +222 227 3 878184171 +486 270 2 879874064 +500 522 4 883875041 +537 557 3 886032245 +121 595 2 891390521 +252 410 5 891456989 +201 124 3 884112991 +271 864 3 886106165 +406 529 2 879446108 +393 870 3 887745454 +64 203 4 889737851 +269 53 1 891451111 +137 243 4 881432790 +527 64 3 879456030 +451 937 4 879012684 +291 232 4 874835198 +291 128 4 874835062 +233 223 4 875508225 +369 172 5 889428642 +514 83 5 875462568 +406 652 2 879793179 +172 772 1 875537099 +12 195 4 879959670 +451 299 1 879012721 +417 72 4 879649107 +254 423 5 886472799 +271 89 3 885848518 +487 73 3 884050038 +298 257 4 884126240 +82 211 4 878769815 +506 1014 3 880908472 +363 448 5 891497953 +102 235 3 892993605 +87 1041 4 879877007 +363 29 1 891498365 +488 333 4 891293606 +440 271 5 891550404 +541 756 4 883866028 +405 85 4 885547407 +537 504 3 886030652 +466 682 1 890282957 +528 358 2 888520491 +524 410 2 884832742 +497 79 4 879310730 +100 690 4 891375629 +249 1 4 879572210 +504 1004 4 887910023 +486 331 2 879874112 +286 707 5 877531975 +442 1183 3 883390674 +293 482 4 888906096 +82 462 4 878769992 +1 194 4 876892743 +7 391 3 892132943 +109 239 4 880578632 +407 345 4 884614729 +459 993 3 879563146 +393 404 3 889728713 +222 214 4 878182453 +163 272 4 891219977 +121 427 4 891388286 +254 678 3 886470859 +481 42 3 885828426 +291 236 4 874834128 +454 490 2 888266754 +363 603 4 891495109 +343 943 4 876406552 +160 474 4 876857977 +533 673 3 879439143 +382 7 2 875945837 +538 164 3 877108631 +374 550 5 880938965 +90 19 3 891384020 +381 682 2 892697982 +511 299 2 890004827 +450 1054 2 882812495 +293 732 3 888906516 +486 336 2 879874218 +405 548 1 885549095 +301 501 3 882078040 +537 1065 1 886030738 +59 176 5 888205574 +327 651 4 887745744 +343 180 5 876404613 +453 59 2 888202258 +429 264 3 882387551 +447 483 5 878855818 +60 95 4 883327799 +422 1199 3 875129975 +512 198 5 888579920 +279 395 4 875659329 +533 322 4 879193106 +421 174 5 892241362 +221 240 4 875244352 +387 1091 1 886483670 +488 200 2 891294606 +515 288 4 887658604 +360 170 5 880355485 +372 447 5 876869445 +200 195 5 884128822 +15 280 3 879456167 +504 443 3 887910511 +280 1041 5 891702544 +394 222 4 881132876 +325 191 3 891478408 +262 69 4 879793479 +417 286 5 879646286 +492 97 3 879969210 +450 134 3 882373597 +109 739 4 880579107 +64 269 5 879365313 +268 1091 2 875744895 +497 257 4 879309648 +305 215 2 886323464 +207 566 4 875509434 +532 655 5 892861435 +423 328 1 891394874 +303 151 5 879484534 +299 197 3 878192039 +373 163 4 877098891 +509 680 1 883591252 +236 151 2 890116964 +82 81 3 878770059 +409 496 5 881107817 +326 44 1 879875852 +392 344 4 891037490 +486 121 3 879875188 +508 13 4 883777366 +394 385 5 880889010 +524 702 4 884636262 +535 171 3 879618414 +10 527 4 877886597 +455 222 3 878585775 +361 53 2 879441351 +334 1041 3 891549667 +421 302 4 892241236 +94 183 5 891720921 +93 1 5 888705321 +506 520 5 878044852 +394 144 5 880886978 +267 408 5 878974783 +481 596 4 885828773 +181 360 1 878962005 +130 665 3 876252175 +205 875 2 888284532 +339 134 5 891033044 +474 199 5 887927456 +435 1044 4 884132515 +357 471 5 878951498 +94 41 3 891723355 +524 193 4 884636498 +535 506 5 879617819 +389 411 4 880088659 +246 572 3 884923127 +465 190 4 883530054 +240 245 4 885775831 +457 20 5 882393967 +373 144 3 877098949 +145 825 4 875271477 +64 195 5 889737914 +458 234 4 886397808 +393 1014 3 887745086 +327 172 4 887743986 +401 707 2 891032868 +84 866 4 883452174 +473 268 5 878156932 +435 710 4 884131267 +504 96 4 887840098 +200 54 4 884129920 +200 98 5 884128933 +256 117 5 882150313 +293 182 5 888905481 +277 742 4 879543845 +477 255 5 875941763 +276 1407 1 874977513 +28 200 2 881961671 +478 288 5 889388862 +537 150 3 886029974 +180 790 1 877127572 +537 203 4 886031437 +537 177 3 886031506 +95 179 3 880570909 +455 277 4 879109565 +59 489 4 888205300 +514 344 3 891900164 +12 202 4 879959514 +363 707 3 891494906 +219 855 5 889452619 +523 516 5 883702863 +429 179 3 882385012 +537 507 4 886030966 +126 311 4 887855173 +293 15 3 888904777 +499 213 3 885598989 +524 179 5 884635204 +458 952 2 886395119 +457 529 4 882397763 +45 50 5 881007272 +345 365 2 884993760 +370 114 3 879434587 +391 71 3 877399236 +236 275 3 890116499 +495 162 3 888633351 +145 379 3 875272299 +466 27 3 890285113 +458 182 4 886397771 +53 96 4 879442514 +351 880 2 879481460 +406 235 4 879540330 +42 219 1 881109324 +513 546 4 885062601 +298 133 3 884125093 +89 137 1 879441335 +455 1265 3 879108997 +125 41 2 892838510 +98 322 3 880498586 +90 18 3 891383687 +426 657 5 879442160 +535 662 3 879618414 +234 546 1 891227851 +246 1411 2 884924026 +457 64 5 882396868 +521 153 4 884478086 +503 153 2 880472250 +220 294 4 881197663 +442 403 4 883390466 +445 1528 2 891200355 +425 562 1 878738385 +435 255 3 884134290 +56 376 3 892911420 +425 597 1 878739095 +499 427 5 885599474 +393 56 2 887746015 +189 24 4 893264248 +532 412 2 874795951 +269 274 1 891450901 +354 604 4 891217755 +75 408 4 884050046 +194 414 3 879522240 +117 546 3 881009758 +406 411 4 879540199 +445 881 1 891199510 +154 482 4 879138831 +142 463 3 888640489 +450 99 4 882376803 +467 248 3 879532651 +185 276 4 883524475 +8 684 4 879362356 +380 512 3 885479355 +469 923 5 879523891 +299 275 4 877877535 +301 28 4 882076264 +542 206 2 886532602 +358 213 5 891269827 +500 319 4 883864793 +94 392 3 891722646 +291 79 5 874834799 +530 535 4 886198575 +185 111 4 883524529 +101 255 4 877137015 +99 358 2 885678520 +376 181 4 879454598 +255 281 1 883216902 +296 199 5 884197193 +320 568 4 884749327 +498 11 3 881956576 +450 607 5 887135753 +416 473 2 876697387 +521 100 3 884475872 +532 692 5 893119336 +21 261 1 874951006 +130 79 5 875217392 +217 79 5 889069741 +496 1401 3 876065499 +535 285 4 879619144 +67 24 4 875379729 +141 1283 3 884585168 +125 109 3 892838288 +59 149 4 888203313 +355 286 5 879485423 +454 215 4 881959917 +537 312 3 886029211 +501 127 5 883347773 +308 512 5 887736584 +9 690 1 886959344 +194 230 1 879535548 +87 781 5 879876524 +496 1444 1 876066465 +249 228 4 879572496 +144 476 2 888104625 +524 928 4 884323551 +466 550 3 890284903 +250 475 4 878089436 +436 1178 3 887771825 +164 370 5 889402443 +407 229 3 876338691 +178 298 2 882823905 +144 258 4 888103371 +416 12 5 893212572 +268 249 4 875742437 +399 747 5 882345053 +203 276 4 880434810 +487 194 5 883446322 +514 150 3 886189467 +339 203 4 891032466 +269 81 3 891448323 +279 139 3 890780864 +339 208 4 891032827 +195 152 3 890589490 +389 435 4 880087073 +363 849 2 891498365 +268 1037 2 875745255 +94 125 1 891721851 +360 205 5 880356240 +13 419 3 882398814 +95 649 4 880571678 +7 56 5 891351432 +58 732 3 884305321 +398 715 2 875736732 +472 374 2 875982922 +405 1558 1 885549506 +401 724 4 891033319 +312 671 5 891699182 +178 92 3 882827803 +234 610 4 892079769 +343 302 4 876402390 +308 71 4 887739257 +433 294 3 880585271 +339 735 4 891034717 +405 73 5 885547313 +495 163 5 888633277 +346 293 3 875000499 +393 274 4 887744549 +65 778 4 879216949 +537 206 1 886031720 +60 736 5 883327923 +392 488 4 891038978 +390 742 4 879694198 +497 174 4 879310705 +406 4 2 880131792 +332 370 2 887938849 +21 748 1 874950889 +83 1047 2 891182319 +498 302 3 881953659 +380 61 4 885478193 +130 407 2 876251388 +254 210 5 886472172 +429 1033 1 882387350 +255 447 3 883216599 +526 269 5 885681886 +62 729 3 879375414 +158 129 5 880132383 +293 252 2 888905086 +525 829 2 881086393 +57 249 5 883697704 +405 39 1 885546155 +234 140 2 892334766 +514 558 4 875318114 +512 318 5 888579569 +95 282 4 880573506 +458 293 5 886396767 +455 25 3 879109110 +58 512 3 890770101 +541 654 3 883875215 +194 182 3 879521475 +458 317 5 886397155 +445 959 5 891200869 +276 99 4 874792907 +215 288 2 891434563 +441 15 3 891035699 +207 237 4 877878342 +495 616 4 888635050 +250 270 4 883263374 +512 11 5 888579520 +5 50 4 875635758 +405 517 3 885547177 +115 96 3 881172117 +279 455 5 877236424 +236 56 5 890116254 +252 276 5 891456877 +322 23 5 887314417 +478 350 1 889387418 +24 176 5 875323595 +36 289 2 882157356 +242 331 5 879741340 +344 487 5 884900791 +523 242 5 883699464 +95 356 4 880571117 +489 682 4 891366606 +311 12 4 884364436 +135 234 4 879857797 +373 186 5 877099178 +318 376 3 884498314 +82 28 3 878769815 +339 29 3 891035759 +442 156 4 883391221 +417 1210 2 879649044 +295 738 4 879518546 +452 204 3 875275815 +524 127 5 884634533 +459 597 3 879563270 +537 570 2 886031831 +521 230 3 885254250 +354 14 4 891216575 +195 500 4 876617344 +49 13 3 888068816 +222 845 3 877563530 +255 982 2 883217030 +399 214 4 882344722 +325 961 4 891479312 +386 117 5 877655028 +474 1123 4 887923924 +178 249 3 884836855 +457 96 5 882553113 +95 63 3 880572218 +378 277 4 880044609 +412 56 5 879717071 +436 172 3 887768945 +222 132 2 878181829 +505 271 4 888631208 +351 343 3 883356591 +472 97 3 875981281 +318 628 4 884494757 +542 396 4 886533112 +60 153 3 883326733 +387 156 5 886484336 +405 1575 1 885549407 +399 975 2 882344974 +518 763 1 876823994 +393 423 3 887746849 +92 504 3 875653050 +487 294 4 883440572 +297 298 5 874954814 +164 866 5 889402121 +363 298 5 891499411 +184 25 4 889908068 +30 304 4 875988548 +112 323 3 884992651 +537 475 4 886029727 +187 214 4 879465632 +447 85 4 878856526 +311 8 4 884364465 +378 631 4 880045652 +537 134 5 886030862 +36 333 4 882157227 +527 1109 3 879455792 +141 279 1 884584817 +430 117 3 877225484 +197 39 2 891409982 +442 628 4 883391221 +532 1119 5 893119415 +494 107 4 879541405 +498 228 2 881961627 +154 191 4 879138832 +269 1011 4 891446246 +325 23 5 891478276 +532 345 4 884594358 +276 603 5 874795613 +271 570 3 885849742 +295 527 4 879517964 +545 554 3 879899497 +308 357 4 887738151 +399 432 3 882348283 +181 1132 1 878963342 +363 571 1 891498964 +309 334 4 877370356 +119 11 5 874781198 +506 463 3 874873157 +128 245 2 879966524 +463 221 5 877385180 +537 1085 4 886030416 +382 504 3 875946907 +497 1016 4 879310604 +253 685 2 891628884 +233 197 5 877663303 +402 529 4 876266775 +479 144 4 879461741 +459 1040 2 879563701 +532 96 5 892867296 +361 150 2 879440345 +405 1159 1 885549407 +44 71 3 878347633 +455 245 3 878585344 +391 294 2 877398619 +535 8 4 879618288 +429 602 5 882386628 +450 127 5 882373155 +416 588 5 893213644 +312 684 5 891698664 +223 682 4 891548828 +463 14 1 890453075 +361 504 4 879441215 +109 71 4 880578066 +174 111 5 886433898 +299 432 3 877880612 +447 447 3 878855724 +293 1248 2 888907527 +41 175 5 890687526 +62 238 5 879373568 +506 176 5 874873892 +52 237 4 882922227 +59 1119 4 888206094 +207 5 3 880839802 +521 288 3 884475470 +72 664 3 880037020 +237 9 4 879376730 +292 298 4 881103977 +379 398 1 880525638 +151 31 3 879524713 +276 100 5 874786605 +393 473 3 887745135 +514 4 4 875463440 +293 546 1 888904927 +94 83 4 885873653 +254 449 5 886475446 +58 175 5 884663324 +436 821 4 887769733 +486 220 3 879875441 +62 174 4 879374916 +206 691 1 888180081 +301 373 4 882079334 +494 194 4 879541298 +308 198 3 887739172 +193 541 1 889125976 +545 132 4 884134519 +44 231 2 878347915 +474 618 4 887927457 +356 316 4 891406372 +457 232 4 882397666 +144 333 3 888103371 +429 223 4 882385034 +506 97 4 874873374 +399 1090 2 882345212 +537 143 1 886031438 +233 8 3 877663612 +389 173 3 880087003 +506 402 4 877539905 +516 191 4 891290685 +504 234 3 887838740 +303 1510 3 879485659 +289 222 2 876789463 +450 428 4 887660722 +500 216 4 883873556 +405 1274 1 885548137 +344 202 4 884901180 +152 785 5 886535773 +479 54 3 879462121 +326 72 2 879877264 +353 326 2 891402444 +359 472 4 886453402 +151 561 3 879543342 +234 1044 2 892336194 +308 448 3 887740866 +532 338 3 879931705 +504 133 5 887832593 +344 647 4 884814401 +259 15 3 881378653 +482 257 4 887644063 +405 720 1 885546487 +453 416 2 888206132 +495 566 4 888635144 +201 438 1 884114813 +527 207 4 879455873 +454 837 2 888267315 +60 229 4 883327472 +95 779 3 880572288 +368 217 5 889783562 +15 930 2 879456381 +393 138 3 889731793 +389 69 5 880087345 +244 458 3 880604405 +279 190 3 875307407 +274 100 5 878945404 +505 651 3 889333598 +339 151 4 891033676 +254 227 4 886474806 +279 150 3 886019867 +474 42 4 887923923 +345 382 4 884992725 +539 382 5 879787825 +531 905 4 887049166 +380 435 3 885479124 +378 469 5 880046069 +151 517 2 879542588 +435 21 4 884134134 +290 484 3 880474174 +534 926 4 877807780 +128 82 5 879968185 +347 470 5 881654301 +536 2 4 882360227 +186 121 2 879023074 +43 778 5 883955363 +493 527 5 884132037 +410 886 2 888627018 +399 384 2 882345698 +399 234 3 882343294 +311 191 4 884364764 +545 222 4 879899157 +207 696 3 877751310 +18 588 4 880131201 +399 195 2 882342669 +293 460 3 888905005 +481 524 5 885829045 +401 1011 3 891032367 +450 378 5 882373995 +474 1172 4 887924469 +533 274 4 885305541 +45 596 3 881014015 +454 96 4 888266600 +300 876 5 875650105 +197 435 5 891409935 +456 523 4 881373353 +521 72 3 885254323 +249 789 5 879572911 +130 237 5 874953621 +532 301 4 874999563 +493 1278 5 884130215 +465 64 5 883530088 +84 543 5 883453713 +416 354 4 893214333 +287 4 4 875336652 +90 285 5 891383687 +295 421 4 879517802 +276 916 4 892436298 +151 1070 4 879524174 +246 993 3 884920770 +6 510 4 883600785 +466 269 2 890282759 +347 17 4 881654635 +59 673 5 888204802 +399 412 2 882352468 +187 65 5 879465507 +336 90 5 877757062 +458 307 4 889323481 +284 539 2 885329821 +458 1048 4 886395119 +132 523 4 891278996 +301 133 4 882077142 +198 208 3 884208571 +314 161 5 877888168 +233 91 3 876812281 +435 351 2 887509368 +190 823 2 891626040 +151 566 3 879528890 +152 354 3 890322242 +18 435 4 880130890 +271 135 4 885848373 +407 290 3 875042865 +291 1077 4 874834963 +363 271 4 891493840 +479 255 2 879460192 +240 873 2 885775857 +5 408 5 878844495 +514 1 5 875309276 +532 235 3 887041328 +498 1103 4 881957847 +13 79 3 882139746 +437 1075 4 881002374 +38 1035 5 892431907 +69 245 1 882027284 +442 12 4 883390912 +371 197 4 877487364 +211 457 4 879437184 +13 674 3 882396955 +104 316 4 888442461 +290 167 2 880475807 +270 7 4 876954004 +534 117 5 877807973 +221 402 2 875393426 +457 134 5 882396832 +404 300 4 883790749 +474 591 3 887915366 +44 69 4 878347711 +201 1224 2 884140891 +514 11 4 875318082 +542 648 4 886532950 +486 1589 3 879874515 +405 588 2 885548785 +293 133 3 888906045 +81 150 3 876533619 +193 1 4 890859954 +244 1132 4 880605132 +187 197 4 879465597 +94 750 4 891725501 +312 486 5 891699655 +206 1022 1 888179980 +533 475 1 879192500 +299 514 5 877881229 +308 1456 4 887739056 +547 328 4 891282757 +201 129 4 884114471 +392 270 4 891037437 +219 71 1 889452455 +496 746 3 876066633 +321 499 3 879440393 +337 125 4 875185574 +543 210 3 875721967 +303 328 3 879466166 +416 326 5 893214041 +367 145 3 876690077 +239 427 5 889180888 +6 493 5 883601713 +178 729 4 882827020 +201 1070 5 884111677 +269 1188 1 891451857 +82 283 2 884714164 +313 655 4 891014474 +533 122 1 879366118 +500 421 4 883875303 +497 268 4 878759399 +178 876 2 886678484 +406 168 3 879445642 +374 963 5 883629108 +108 127 4 879879720 +293 651 3 888905865 +10 274 4 877889333 +228 938 1 889387173 +393 95 4 889555295 +32 1023 3 883717913 +198 298 1 884204993 +406 468 1 879446361 +72 9 5 880035636 +15 866 4 879456288 +429 428 4 882386942 +437 674 3 880143714 +246 254 1 884924710 +398 85 4 875718731 +7 62 3 891354499 +256 794 4 882165135 +458 237 4 886394623 +290 629 3 880474716 +378 217 3 880332683 +12 242 5 879960826 +279 529 3 875308843 +339 195 3 891032576 +334 425 4 891548835 +59 135 5 888204758 +487 227 3 883531279 +527 99 3 879456186 +430 164 3 877226323 +254 71 3 886472737 +55 118 5 878176134 +409 855 4 881108246 +476 63 3 883365274 +271 441 3 885849648 +37 147 3 880915749 +207 319 3 879664891 +399 1393 3 882340421 +456 449 3 881375226 +58 189 3 884304790 +217 56 5 889069709 +425 325 3 878737684 +416 156 5 893212895 +423 696 3 891395759 +271 651 4 885848584 +455 97 5 879112436 +73 64 5 888625042 +266 275 5 892257831 +421 176 5 892241422 +435 111 3 884132777 +371 22 5 877487134 +243 1148 3 879988723 +21 406 1 874951293 +520 269 5 885168591 +213 942 4 878955533 +346 156 4 874948139 +416 916 3 893141069 +402 696 4 876267014 +246 81 5 884921638 +184 483 5 889908630 +537 844 4 886029692 +244 162 4 880606993 +416 627 5 893213918 +405 51 1 885546577 +533 303 4 893160944 +405 1425 1 885547557 +62 472 2 879373152 +474 183 5 887924619 +454 133 4 881959652 +508 239 2 883777257 +460 146 4 882912370 +533 847 3 880402996 +24 729 5 875323475 +81 121 4 876533586 +263 58 4 891299264 +541 28 4 883864739 +98 88 3 880499087 +533 218 2 879191652 +347 31 5 881654321 +416 87 5 893212484 +324 150 4 880575412 +233 204 5 880923202 +542 318 4 886532602 +227 1007 4 879035158 +399 143 5 882344638 +130 313 5 884623736 +234 195 2 892078936 +280 771 3 891702122 +253 15 4 891628019 +457 717 3 882395894 +401 316 5 891031756 +393 622 4 889555074 +479 523 4 879460894 +184 285 5 889907771 +311 31 4 884364570 +136 318 5 882848820 +488 243 3 891293400 +59 741 4 888203175 +334 423 5 891545821 +426 435 3 879444604 +479 50 4 879460160 +178 654 3 882827506 +18 213 5 880131201 +495 581 5 888635655 +222 396 1 878183381 +416 720 4 886318128 +428 323 3 885943869 +234 133 3 892334680 +221 732 4 875246330 +527 210 4 879455924 +401 197 4 891033417 +442 1098 4 883388237 +330 660 5 876546752 +504 25 4 887831419 +57 318 5 883698580 +151 154 4 879524642 +409 318 4 881107943 +176 325 3 886047375 +449 127 5 879958572 +455 428 4 879111268 +264 123 4 886122952 +456 286 3 887165765 +23 418 4 874786037 +416 985 3 876697165 +416 812 4 893212623 +548 273 5 891044411 +535 182 3 879617574 +307 419 4 877122115 +435 470 2 884131661 +268 1054 1 875744051 +354 32 3 891217929 +245 756 3 888513425 +13 849 1 882397833 +459 278 4 879563270 +405 1074 3 885546636 +217 373 2 889070307 +480 510 4 891208460 +474 237 4 887915366 +548 690 3 891042475 +178 280 4 882824592 +537 318 4 886030707 +416 98 5 893213644 +347 763 5 881652837 +532 938 3 892519553 +486 1093 4 879874692 +374 465 5 882158849 +457 15 4 882393688 +326 433 2 879875644 +104 181 5 888465972 +537 874 3 886029083 +486 1079 2 879875347 +201 546 2 884140891 +305 317 4 886323713 +268 72 3 875743831 +454 685 3 888267198 +320 1215 1 884749097 +325 654 4 891478276 +279 124 3 878261977 +318 763 3 884494897 +230 82 5 880485311 +145 356 4 875272299 +297 160 1 875238853 +268 1231 2 875744228 +121 313 5 891390013 +342 286 4 874984002 +507 682 5 889964620 +117 173 5 881011697 +450 294 4 882370316 +233 129 3 876374463 +263 222 4 891299573 +532 690 4 876696258 +435 1204 3 884132100 +292 209 5 881103874 +178 265 5 882826394 +307 135 4 877122208 +69 273 3 882072803 +334 488 5 891546231 +546 413 4 885140808 +269 931 1 891451754 +398 491 5 875718954 +508 502 4 883776778 +468 182 5 875292320 +263 498 5 891298046 +472 743 4 883904504 +13 339 3 882140718 +381 102 2 892696130 +361 673 4 879441286 +358 127 1 891269117 +375 185 5 886621950 +465 395 1 883532120 +7 29 3 891353828 +50 276 2 877052400 +130 974 4 876250932 +62 1134 2 879372936 +214 475 5 892668153 +32 271 3 883709953 +70 393 4 884068497 +533 161 4 879439465 +144 288 2 888103509 +36 875 3 882157470 +151 131 5 879525075 +401 272 3 891031508 +238 845 3 883576424 +429 448 3 882386006 +137 476 1 881433524 +180 684 5 877442058 +487 95 4 883446872 +466 357 4 890285706 +8 435 5 879362233 +486 285 5 879874482 +524 527 5 884634785 +201 505 3 884113772 +425 1597 3 878738596 +373 142 3 877111362 +548 636 4 891044538 +465 584 3 883531325 +338 175 4 879438762 +45 411 3 881015657 +26 14 3 891371505 +42 202 5 881107687 +158 985 4 880134261 +328 540 3 885048730 +452 161 5 885816915 +262 131 5 879961282 +274 69 5 878946644 +523 393 5 883702411 +409 89 5 881107539 +416 70 5 893213019 +59 462 5 888205787 +445 748 1 891199458 +352 385 4 884289760 +504 420 3 887840560 +59 403 5 888206605 +435 402 3 884131996 +492 511 5 879969879 +393 443 3 887745624 +537 687 1 886029526 +399 95 3 882343068 +450 469 4 882396153 +463 150 2 889943683 +327 919 5 887820828 +264 873 3 886121517 +495 501 3 888634536 +374 1134 4 880392846 +157 289 4 886889876 +103 257 3 880415892 +223 926 4 891549792 +524 467 4 884635287 +406 174 4 879445809 +468 98 5 875288196 +478 23 2 889388562 +188 157 3 875072674 +393 364 2 889731139 +399 38 2 882345164 +109 373 5 880583241 +380 306 4 885477802 +45 13 5 881012356 +454 228 3 881959960 +417 579 2 879649467 +339 180 5 891032793 +459 123 3 879563312 +222 941 3 881059736 +307 529 4 877381142 +292 180 5 881103652 +432 844 4 889415947 +474 171 4 887926804 +532 763 5 892866230 +264 185 5 886122261 +141 298 5 884584790 +435 80 2 884133610 +404 332 4 883790749 +533 82 4 879439204 +405 796 3 885547447 +532 532 3 887040858 +408 358 4 889680045 +385 144 3 879443102 +56 117 5 892679439 +299 474 5 877880474 +476 42 4 883364295 +301 746 3 882075774 +467 124 5 879532534 +537 663 3 886031540 +181 1097 1 878962720 +437 654 5 880141041 +327 865 5 887745774 +398 497 3 875717407 +110 41 4 886989399 +210 181 5 887731082 +249 237 5 879640361 +512 1459 4 888579569 +399 760 1 882341554 +535 181 4 879617818 +548 276 3 891415512 +147 937 3 885593997 +389 23 4 879991147 +545 399 4 879900794 +222 549 4 878184055 +503 88 4 880383468 +522 100 5 876960824 +330 197 5 876546071 +458 694 4 886396140 +201 95 3 884114015 +409 609 3 881108829 +378 403 4 880046408 +327 676 3 887746686 +176 741 3 886048145 +527 285 5 879456363 +391 544 4 877400092 +312 510 5 891699490 +254 588 3 886473701 +25 265 4 885853415 +7 552 4 891354531 +296 528 5 884197068 +393 117 4 887745575 +410 328 3 888626786 +433 12 5 880585803 +339 1110 4 891034657 +405 1579 1 885549408 +287 121 4 875334494 +496 42 5 876066676 +222 655 4 878182210 +393 479 4 889555295 +312 414 3 891699626 +184 97 2 889908539 +135 230 3 879857843 +542 214 3 886533452 +532 492 4 888637105 +456 133 3 881373084 +13 585 4 882141814 +26 546 2 891371676 +470 952 3 879178884 +508 73 3 883777329 +399 566 4 882344871 +521 241 4 885254006 +406 519 4 879445378 +129 678 1 883245452 +268 381 3 875309344 +417 685 1 879646570 +522 96 3 876961076 +7 600 4 891354090 +411 195 3 891035239 +213 257 4 878870846 +276 800 3 874792745 +174 739 5 886513729 +500 175 5 883874341 +497 1407 3 879362609 +456 61 4 881373228 +535 39 4 879617574 +487 196 5 883446830 +243 215 3 879988046 +484 422 3 891195825 +387 806 1 886483824 +450 208 5 882377358 +100 874 1 891374868 +394 433 4 880886919 +181 291 3 878962997 +311 732 4 884365617 +385 658 2 879445454 +506 603 5 874873198 +227 934 2 879035874 +288 234 4 886374473 +498 32 4 881956363 +184 215 4 889909812 +505 566 3 889334503 +217 541 3 889069974 +194 529 4 879523575 +443 327 4 883504593 +345 278 3 884991505 +499 750 5 885597747 +13 712 4 882141872 +221 79 4 875245715 +479 118 3 887064767 +450 290 4 882399509 +160 770 4 876861878 +533 405 3 879192793 +518 547 3 876823645 +10 333 4 877886359 +454 250 4 881959238 +454 566 4 888267087 +97 205 2 884238817 +490 15 1 875427739 +435 196 4 884131597 +85 134 5 879454004 +279 1499 4 890451408 +458 9 5 886394373 +429 77 3 882385705 +65 28 4 879216734 +504 295 4 887831567 +343 1073 4 876405771 +70 168 4 884065423 +521 202 3 884478530 +405 1112 2 885546530 +498 538 1 881962988 +487 260 2 883441026 +510 325 1 887667575 +413 275 5 879969557 +329 137 5 891655812 +303 50 5 879466866 +417 325 2 880949231 +327 772 3 887822646 +200 325 5 876041719 +517 1016 1 892607194 +535 212 4 879618613 +339 5 3 891034953 +389 954 4 880614031 +399 420 3 882347783 +137 260 3 881432735 +498 12 4 881957195 +378 632 5 880055564 +384 289 5 891283502 +525 411 3 881086612 +132 12 4 891278867 +534 237 4 877808002 +551 684 5 892783212 +538 963 4 877363775 +521 161 2 885254116 +181 413 2 878963241 +174 100 5 886433788 +338 216 4 879438196 +49 420 4 888067031 +498 515 4 881956953 +373 409 2 877107235 +95 275 3 879192819 +524 168 3 884634995 +293 810 1 888907674 +275 162 3 880315276 +295 417 5 879518474 +494 126 4 879541476 +417 386 3 879648382 +311 218 4 884366363 +277 925 4 879543592 +116 310 4 886309549 +328 232 3 885047670 +59 11 5 888205744 +437 91 3 880143315 +551 578 5 892784672 +378 720 2 880056798 +417 68 3 879647275 +452 458 1 875266197 +311 228 5 884365325 +527 634 5 879456363 +321 463 3 879440393 +13 110 3 882141130 +472 3 5 892790676 +435 637 4 884132691 +303 250 4 879544712 +429 366 3 882387181 +84 25 3 883452462 +24 421 5 875323712 +189 136 4 893265535 +194 837 4 879546671 +466 651 3 890284819 +488 520 4 891293660 +494 50 5 879541246 +339 649 5 891034007 +468 435 4 875292027 +360 165 4 880356059 +130 477 4 875216593 +492 185 3 879969512 +18 504 5 880129940 +438 845 4 879868042 +497 89 4 879310850 +487 586 2 884051840 +484 258 5 883402900 +521 232 3 886063553 +459 220 3 879563367 +297 283 4 874954387 +112 1106 4 892439835 +495 404 4 888635380 +9 294 4 886959453 +497 197 3 879310419 +7 446 2 892132020 +426 174 3 879442044 +69 246 5 882072827 +70 183 4 884149894 +21 281 2 874951416 +521 248 3 884476110 +515 292 3 887659805 +253 591 3 891628358 +472 368 3 875979685 +332 333 5 889069499 +395 378 5 883764421 +308 1154 2 887740367 +119 25 5 886177013 +84 317 3 883453587 +7 380 4 891354053 +340 417 5 884991544 +56 191 4 892678526 +291 946 4 875086887 +290 465 3 880474799 +551 756 1 892784437 +543 135 5 875667109 +387 593 3 886480483 +506 367 3 874873068 +479 1016 3 879460254 +3 320 5 889237482 +518 1017 3 876823071 +20 934 4 879668783 +544 326 3 884795580 +344 926 2 886381985 +488 186 4 891294108 +267 144 5 878971463 +276 271 4 880913800 +361 165 5 879440573 +487 202 5 883445943 +303 650 5 879483941 +537 529 3 886031375 +397 177 5 882843746 +450 1030 1 882468789 +473 7 2 878157329 +542 746 4 886532838 +435 474 3 884131085 +525 300 4 881085217 +303 1073 4 879467191 +90 174 5 891383866 +308 842 3 887740099 +60 418 3 883327342 +313 485 3 891016425 +458 521 4 886397377 +345 241 4 884992142 +467 340 3 879532198 +393 1040 3 887745410 +151 638 5 879528819 +471 969 2 889828154 +426 610 4 879444550 +347 276 3 881652657 +43 172 4 883955135 +506 678 3 879074774 +532 312 2 884594422 +160 201 5 876858346 +307 200 3 877117875 +450 632 5 882395914 +295 513 4 879517492 +535 489 4 879619000 +495 62 3 888635937 +22 988 1 878887116 +141 261 1 886447904 +524 742 3 884627446 +519 335 5 883248595 +291 12 5 874834701 +33 294 3 891964166 +90 317 4 891383626 +504 71 5 887909321 +363 121 2 891497393 +90 896 3 891382163 +346 2 5 875263473 +497 386 2 879363111 +234 1205 1 892335501 +339 474 4 891032286 +546 928 4 885141132 +445 313 2 890988206 +301 111 1 882074708 +332 1047 3 887938652 +504 716 4 887909532 +543 982 3 877452676 +496 1473 3 876072548 +416 264 3 876696938 +399 393 4 882343455 +119 226 3 887038665 +481 507 4 885828773 +543 83 4 877547441 +524 506 4 884634938 +299 811 4 877880794 +194 118 3 879539229 +293 942 4 888907210 +283 625 3 879298007 +450 663 4 882373019 +387 102 3 886483669 +498 218 3 881961877 +313 144 4 891015144 +474 346 5 887914688 +315 1065 4 879799526 +393 1224 3 889555176 +500 83 4 888538350 +452 259 2 888494119 +323 763 4 878739459 +206 359 1 888179980 +458 753 4 886397110 +101 841 2 877136763 +291 475 5 874805699 +429 805 3 882385963 +331 198 4 877196634 +222 391 3 881060635 +262 485 4 879793363 +405 519 2 885546025 +426 98 4 879442737 +363 88 2 891498087 +43 559 1 883956468 +393 843 3 889731861 +96 238 4 884403250 +548 322 4 891043509 +543 95 3 874865728 +336 1011 2 877754536 +263 204 4 891298854 +405 710 4 885547268 +64 237 4 889740310 +530 156 4 883790381 +450 878 2 884098534 +506 295 4 879074845 +454 210 4 881960361 +452 97 4 885476560 +109 122 2 880583493 +489 355 5 891447872 +215 636 2 891436690 +459 255 4 879563613 +226 507 2 883889146 +312 855 5 891699538 +416 316 3 888700030 +195 508 3 886782519 +523 83 5 883700870 +447 845 3 878854678 +551 405 3 892783612 +495 831 1 888637325 +450 132 5 882374422 +354 9 3 891216607 +315 276 4 879799526 +484 1 5 881450058 +535 923 4 879617531 +327 644 3 887747410 +336 125 3 877760032 +303 1142 4 879544659 +363 200 3 891495918 +393 1239 3 889729508 +286 763 2 876521809 +290 69 4 880473696 +399 48 3 882349868 +542 508 3 886532762 +480 298 2 891207665 +439 288 3 882892424 +435 834 5 884134910 +189 97 4 893277579 +503 385 1 880472298 +211 1127 1 879461395 +407 172 4 875044037 +339 737 3 891035180 +2 287 3 888551235 +535 454 3 879617894 +92 1157 2 875812435 +249 309 3 879571456 +521 238 3 884478101 +416 249 3 876697558 +339 22 5 891033735 +332 824 3 887938818 +44 313 4 883612268 +48 528 5 879434954 +201 591 3 884140307 +178 578 4 882828021 +301 559 4 882078955 +407 28 4 875042826 +327 209 4 887747939 +92 7 4 876175754 +96 190 4 884402978 +301 1135 3 882078906 +405 707 1 885549309 +270 447 4 876956360 +14 238 5 879119579 +314 806 4 877887802 +308 195 5 887738619 +38 356 2 892430309 +421 117 5 892241624 +224 689 3 888082246 +90 762 3 891385250 +10 33 4 877893020 +184 747 3 889909672 +435 1231 2 884134019 +263 646 5 891299877 +161 22 2 891171282 +271 234 5 885848640 +10 245 4 877886281 +504 204 3 887838908 +270 794 4 876955689 +279 1361 3 878261977 +453 239 3 877554927 +16 509 2 877720118 +363 77 2 891496587 +276 298 5 874786467 +459 323 3 879561708 +364 262 3 875931432 +460 302 4 882910837 +48 183 5 879434608 +141 333 5 887424639 +186 568 4 879024014 +210 483 5 887736482 +451 995 1 879012721 +453 651 4 877554743 +379 153 4 880525284 +239 1204 4 889178986 +334 1198 3 891544735 +345 709 4 884993033 +535 953 5 879618019 +380 168 4 885479436 +474 517 4 887925916 +68 475 5 876973917 +217 720 3 889070011 +527 190 4 879456362 +437 179 4 881002345 +293 291 2 888905377 +276 974 2 874786945 +548 264 4 891043547 +157 269 4 886889876 +458 8 4 886395899 +553 505 5 879949107 +181 290 2 878963168 +526 315 5 885682102 +106 1242 4 881516731 +102 204 4 888803487 +399 153 2 882351347 +499 414 3 885599533 +295 105 4 879519473 +545 210 5 879899158 +433 322 2 880585466 +406 1220 3 882480802 +286 212 1 877531830 +378 200 3 880045681 +516 523 3 891290649 +543 79 4 877545356 +511 294 4 890005011 +216 943 5 881721799 +178 469 3 882827870 +508 218 2 883777237 +94 49 4 891722174 +138 487 3 879023853 +88 1191 5 891038103 +220 264 3 881198524 +370 176 4 879435217 +87 111 4 879876611 +313 449 3 891028323 +370 64 4 879434745 +374 176 4 880937692 +494 748 1 879540720 +430 100 5 877225570 +303 928 3 879485589 +194 28 5 879522324 +12 168 4 879959513 +16 109 4 877719333 +544 312 2 884796086 +347 333 5 881652077 +279 172 2 878082751 +311 209 2 884364502 +239 268 2 889178512 +99 345 3 885678696 +234 160 2 892336119 +506 222 4 884517178 +330 151 4 876544734 +286 217 3 877533447 +532 682 4 877898976 +429 457 1 882384438 +293 14 3 888904985 +389 81 3 880086972 +552 13 3 879222238 +537 1111 3 886031506 +387 737 3 886484098 +314 942 3 877888346 +508 436 4 883777109 +385 811 4 879443315 +329 185 3 891656347 +109 1035 2 880579787 +541 210 5 883865575 +504 50 3 887831293 +64 588 4 889739091 +237 485 4 879376553 +405 1184 1 885547996 +20 210 4 879669065 +487 4 4 883531003 +456 54 3 881375416 +85 193 3 879454189 +506 70 4 874874055 +508 209 5 883767325 +102 211 3 892993190 +268 11 4 875309507 +484 202 5 891195179 +151 845 4 879525035 +422 558 4 879744085 +314 685 4 877886788 +498 652 5 881961182 +417 222 3 879646388 +389 693 4 880088038 +269 632 4 891447931 +551 552 3 892784259 +343 231 5 876407032 +458 663 4 886398289 +551 13 1 892783411 +463 689 2 889936731 +109 449 5 880581987 +453 174 4 877554564 +280 200 5 891702544 +10 404 4 877886911 +506 1279 4 880198144 +545 101 4 879901538 +113 116 3 875076246 +15 243 1 879455362 +389 1444 3 880088445 +454 203 2 888267487 +178 1048 2 884837073 +439 475 3 882893220 +447 963 5 878855963 +197 22 5 891409839 +201 381 3 884111986 +380 423 3 885478218 +407 732 4 876341443 +429 755 3 882387685 +363 193 3 891494962 +498 171 3 881955866 +203 222 4 880434318 +465 1078 2 883532119 +7 258 4 892135277 +75 294 3 884049758 +267 182 5 878971773 +450 751 5 885945114 +537 1068 3 886029974 +454 654 2 888267419 +182 126 5 885613153 +532 373 3 888630658 +320 1522 3 884751316 +416 865 3 886316477 +472 559 5 875981708 +490 1128 4 875428765 +343 63 4 876406062 +450 1039 5 887137271 +474 493 4 887925837 +450 967 5 882373994 +99 201 3 885680348 +356 310 3 891405721 +399 1192 3 882344638 +478 219 2 889398289 +540 7 4 882157011 +314 699 5 877888527 +407 91 4 875044337 +72 628 4 880035857 +128 815 3 879968827 +442 800 3 883390139 +210 208 5 887730443 +85 99 5 880838306 +453 721 4 888205696 +455 318 3 879111528 +303 1013 1 879544860 +454 1107 4 888267617 +535 607 5 879618700 +234 1445 4 892336286 +425 230 4 878738644 +435 473 3 884133544 +175 419 5 877108098 +308 655 4 887738664 +325 502 4 891479058 +533 525 3 879191770 +538 202 4 877108250 +450 1603 3 887139728 +437 512 4 880140978 +280 1207 4 891701998 +298 118 4 884183016 +447 435 4 878855756 +293 831 3 888905286 +60 506 5 883327441 +541 399 3 883866093 +407 118 3 876338309 +482 301 4 887643315 +506 655 4 874873892 +85 14 4 879452638 +454 248 3 881959238 +269 66 1 891451063 +387 117 3 886480788 +507 892 5 889964809 +5 416 1 875721196 +342 68 3 875319992 +56 88 1 892683895 +222 468 2 881060412 +456 216 4 881374193 +207 248 3 877878409 +201 191 4 884114471 +22 184 5 878887869 +497 298 3 879310580 +328 186 4 886037065 +328 344 4 893195665 +343 931 3 876403938 +489 334 4 891448453 +486 299 1 879874113 +373 90 4 877103846 +138 194 5 879024184 +146 301 2 891457905 +407 400 1 876348583 +497 722 3 879362985 +213 478 5 878956129 +363 179 4 891496373 +405 1265 2 885549942 +347 50 5 881652456 +92 204 4 875653913 +7 593 5 891351851 +534 1028 5 877807816 +128 1035 3 879968921 +421 56 5 892241421 +326 96 3 879875057 +472 633 4 875981428 +503 514 3 880472102 +299 47 4 877881508 +449 170 4 880410652 +459 832 3 879563758 +545 73 4 879900121 +456 92 4 881374048 +327 550 2 887820448 +532 515 5 889327324 +497 155 3 879310522 +504 1136 5 887840560 +506 608 4 874874055 +381 259 2 892698054 +59 181 5 888204877 +372 452 4 876869534 +321 186 4 879440245 +392 114 4 891038401 +8 174 5 879362183 +244 655 5 880605766 +535 174 4 879617747 +129 882 2 883244662 +338 514 5 879438114 +389 393 2 880088717 +554 28 4 876232758 +409 1537 4 881106605 +144 117 4 888103969 +528 751 4 888520371 +250 237 2 878089753 +440 319 2 891549397 +457 168 5 882395018 +217 550 1 889069842 +227 460 2 879035963 +492 86 3 879969454 +125 399 3 892838509 +372 100 3 876869388 +230 650 4 880484778 +437 684 3 880382747 +244 246 5 880604302 +399 382 3 882344134 +405 1239 1 885548163 +521 291 1 885254166 +478 79 4 889388743 +24 8 5 875323002 +305 1073 1 886323591 +497 692 3 879310379 +382 258 2 875945173 +59 174 5 888204553 +450 472 4 882397813 +184 956 3 889908693 +346 358 4 886273570 +313 479 5 891013652 +533 357 3 879191085 +90 480 5 891383835 +357 117 5 878951217 +521 427 3 884477630 +553 511 5 879948869 +298 97 4 884183063 +128 497 3 879967102 +294 240 3 877820294 +128 26 4 879969032 +280 219 2 891702199 +70 95 4 884065501 +125 914 1 892835594 +132 127 4 891278937 +348 7 4 886523302 +412 114 4 879716874 +506 646 4 874874947 +330 470 5 876546267 +32 405 4 883718008 +125 585 4 892838463 +416 388 2 886320177 +495 1419 1 888635995 +464 181 3 878354998 +536 143 5 882360425 +269 644 5 891447593 +442 210 3 883388609 +365 1137 5 891303950 +547 316 5 891282797 +380 286 5 885477802 +437 672 1 881002300 +318 566 4 884496472 +90 1199 5 891385652 +10 174 4 877886661 +85 659 4 879453844 +385 273 2 879440557 +497 748 4 878759432 +347 1016 3 881652730 +425 853 4 878738853 +456 1220 3 881375051 +550 259 2 883426119 +421 213 3 892241491 +83 871 2 891182319 +453 471 4 888205557 +398 82 5 875721348 +380 217 2 885480093 +455 694 4 879110870 +556 327 5 882135508 +101 597 3 877136928 +249 125 3 879640210 +387 246 3 886480623 +57 126 3 883697293 +104 333 2 888442305 +426 607 4 879444734 +181 1114 1 878963342 +343 277 4 876402978 +425 943 4 890347172 +499 207 5 885599533 +293 177 4 888906193 +276 151 5 874786568 +374 743 1 880394000 +200 411 3 876042824 +234 463 4 892333865 +532 331 4 890021268 +120 117 3 889490979 +69 181 5 882072778 +13 68 3 882397741 +533 931 2 879366160 +500 1111 4 883874529 +85 182 4 893110061 +518 717 5 876823963 +421 175 2 892241576 +161 50 2 891170972 +442 281 3 883391299 +495 69 3 888632070 +500 1616 4 883875501 +346 77 4 874950937 +203 257 3 880434298 +299 538 3 881605700 +398 385 3 875723253 +48 523 5 879434689 +311 520 5 884365251 +95 210 5 879196566 +426 601 3 879444321 +347 28 4 881654612 +301 426 4 882076967 +184 66 4 889910013 +537 1073 3 886031149 +405 1522 1 885548670 +394 7 5 880888390 +10 129 4 877891966 +336 237 5 877759598 +124 154 5 890287645 +492 64 4 879969539 +189 238 5 893265683 +197 230 4 891409893 +100 880 1 891375260 +87 172 5 879875737 +505 79 3 889333274 +7 178 4 891350932 +429 581 2 882385684 +535 185 4 879617931 +269 182 4 891447961 +389 531 4 880086918 +96 98 5 884403214 +111 344 2 891680243 +391 132 4 877398951 +311 194 4 884364724 +276 802 3 874792634 +515 329 2 887660131 +484 318 5 891194932 +429 55 4 882384847 +305 735 4 886324128 +532 210 5 888637085 +445 871 2 891200592 +351 289 5 879481613 +368 569 3 889783586 +90 568 5 891385165 +264 286 2 886121691 +506 209 4 874873529 +360 936 4 880354181 +372 332 4 876869330 +269 69 1 891448048 +465 855 4 883531444 +476 435 3 883364218 +416 576 5 893213103 +503 607 5 880472272 +387 265 4 886483049 +467 108 4 879532744 +249 483 5 879572314 +234 211 3 892079475 +446 270 4 879786892 +409 175 4 881107251 +524 284 3 884323525 +425 229 3 878738548 +435 357 4 884131771 +511 333 4 890004778 +246 118 1 884923175 +519 349 5 883250148 +453 475 5 877552514 +460 311 5 882912418 +28 449 2 881961394 +426 836 3 879444117 +559 524 3 891035917 +294 331 4 877818580 +13 709 4 882139863 +454 131 3 881960330 +394 1371 2 880886546 +385 127 4 879439667 +459 111 3 879563201 +537 1139 2 886032000 +445 405 4 891200869 +378 111 3 880044562 +417 181 3 879646286 +354 709 5 891217928 +186 303 3 891717938 +435 961 1 884133635 +456 919 4 881371548 +550 405 4 883426027 +54 1 4 880931595 +501 1278 3 883348372 +251 117 4 886272009 +234 393 2 892335108 +375 183 5 886621917 +370 323 2 879434333 +79 268 5 891271792 +331 414 4 877196504 +151 582 5 879524563 +334 312 2 891544286 +495 679 3 888634784 +535 203 3 879619035 +457 218 4 882547554 +87 1177 1 879877280 +186 332 4 891719775 +85 191 4 879455021 +551 690 5 892775584 +472 755 4 875981829 +445 544 2 891200417 +237 178 4 879376671 +523 549 4 883703144 +474 195 5 887923789 +130 181 5 874953621 +405 956 2 885546069 +405 555 1 885546835 +454 434 3 888267387 +95 1133 3 880572416 +373 191 4 877102549 +16 237 5 877719504 +478 392 2 889398571 +313 50 5 891013859 +201 1073 2 884111899 +515 893 1 887660131 +541 420 4 883874749 +399 826 2 882349353 +389 605 5 879991512 +504 567 2 887839196 +533 546 3 879192769 +184 399 3 889910159 +328 561 3 885049431 +250 100 5 878089786 +201 729 2 884140975 +405 1104 1 885549408 +482 295 3 887644063 +416 357 5 893213645 +429 81 3 882385243 +269 241 1 891450405 +381 1401 4 892697013 +75 1 4 884050018 +262 100 3 879962366 +452 614 3 875562198 +452 494 5 885805554 +445 325 1 891199533 +532 205 5 887788806 +357 1034 2 878952222 +551 365 5 892784524 +336 383 1 877758935 +553 182 3 879949290 +293 636 4 888906576 +6 495 4 883601366 +486 748 2 879874218 +270 250 2 876954223 +433 754 3 880585162 +62 1091 3 879376709 +448 750 5 891888099 +326 790 1 879877198 +63 405 4 875748109 +496 420 3 876069927 +8 82 5 879362356 +393 415 4 889730117 +313 629 3 891028873 +234 102 2 892335616 +405 183 1 885547909 +271 699 4 885849025 +447 405 2 878854704 +553 523 4 879948508 +435 786 4 884133657 +222 338 1 881058145 +116 258 4 876451911 +487 540 2 884050192 +128 732 4 879967047 +524 490 3 884634679 +186 540 4 879024014 +125 513 4 879454385 +460 149 4 882912174 +450 474 5 882812558 +276 88 3 874791960 +160 508 5 876768025 +249 568 4 879572256 +504 186 3 887840637 +373 382 4 877100458 +94 808 2 891723931 +338 1 3 879438143 +551 864 5 892785091 +437 1090 1 880143092 +518 458 3 876823266 +113 50 5 875076416 +339 663 5 891032952 +494 507 4 879541207 +527 513 4 879456030 +264 211 5 886123472 +38 395 3 892434164 +370 484 4 879434937 +262 559 3 879792792 +130 894 4 884624087 +90 528 5 891384065 +188 462 4 875073246 +495 1183 4 888637228 +144 729 4 888105665 +94 204 4 891721317 +234 516 3 892079140 +299 251 5 877877434 +79 319 4 891271278 +535 70 4 879618849 +553 22 5 879949324 +94 716 3 885873006 +15 310 4 879455049 +506 732 4 874874109 +21 989 3 874951039 +334 405 3 891547040 +474 198 3 887925621 +271 269 4 885844430 +489 878 2 891448565 +332 328 5 887916217 +188 553 4 875071775 +450 765 3 882471362 +115 56 5 881171409 +293 497 4 888906217 +243 1465 3 879988215 +70 1146 3 884151576 +385 506 2 879445291 +417 324 1 879646463 +263 250 2 891300103 +251 118 3 886272514 +455 898 3 883768822 +455 174 4 879111763 +299 746 4 889502979 +457 845 4 882393801 +221 59 2 875245514 +13 170 5 882139774 +75 196 4 884051948 +472 658 5 875983231 +92 425 4 875812898 +82 424 1 878768811 +339 614 3 891034867 +504 616 4 887910267 +416 58 5 893212929 +435 72 4 884132809 +290 1047 4 880475757 +472 1119 5 875983023 +524 199 4 884634646 +529 331 4 882535220 +313 393 4 891015268 +416 795 2 892440060 +487 732 5 884025080 +437 144 2 880141196 +232 132 5 888549721 +453 50 5 877562313 +58 1089 1 892242818 +24 582 4 875323368 +94 143 4 891722609 +234 515 5 892078424 +269 428 5 891448980 +295 134 5 879519556 +293 204 3 888906012 +500 275 1 883873439 +560 7 3 879975718 +181 118 2 878962955 +456 101 3 881375284 +202 242 3 879726342 +181 749 1 878961586 +506 148 3 877539905 +458 357 3 886397275 +334 1312 4 891628832 +503 241 5 880383425 +57 748 4 883696629 +495 470 5 888637768 +465 283 3 883530560 +540 100 5 882156948 +444 912 4 891978663 +299 498 4 878192237 +452 162 3 875277319 +70 132 4 884067281 +122 269 5 879269963 +23 7 4 874784385 +526 283 3 885682400 +381 228 4 892697373 +320 1091 4 884751462 +276 144 5 874792401 +21 760 1 874951293 +343 930 1 876403587 +424 323 5 880859084 +417 65 4 879647011 +42 471 4 881105505 +87 449 3 879876110 +58 70 4 890321652 +118 551 5 875385306 +416 462 5 893212895 +92 78 3 876175191 +385 961 4 879446868 +452 60 1 887718917 +38 247 5 892429460 +128 692 4 879967197 +464 1598 3 878355088 +178 11 5 882826162 +486 872 5 879874153 +454 485 4 888267386 +99 121 3 885679261 +449 105 1 879959573 +371 180 4 877487656 +125 1185 3 892838509 +216 318 5 880233564 +116 297 3 890633075 +339 511 5 891032885 +79 116 5 891271676 +204 262 4 892389137 +26 405 2 891376986 +269 42 5 891449646 +548 248 4 891043852 +60 160 4 883326525 +561 51 3 885810834 +215 202 4 891435295 +537 70 4 886031786 +234 528 4 892079689 +211 520 4 879460096 +497 720 2 879310941 +5 162 1 875721572 +332 746 5 888360129 +500 120 3 883865826 +551 286 4 892775466 +33 682 4 891964274 +62 283 4 879372598 +24 11 5 875323100 +429 578 3 882386942 +554 8 4 876550526 +354 1063 3 891218230 +393 552 2 889729638 +423 9 5 891395395 +406 202 3 880131704 +269 315 4 891446132 +82 409 1 884714421 +102 450 1 888802768 +497 13 2 878759927 +259 781 3 888630664 +279 843 4 875314313 +244 64 5 880605638 +327 164 3 887746219 +466 902 5 890283497 +551 458 2 892784166 +178 763 4 882824253 +279 1121 4 875310101 +38 313 5 892428216 +394 746 2 880888313 +378 285 4 880044312 +450 482 5 882371904 +503 747 3 880383424 +551 31 4 892783451 +560 123 2 879976542 +303 619 3 879467574 +511 355 2 890004827 +425 244 1 878739015 +43 280 3 883955806 +536 230 5 882359779 +303 168 5 879467223 +447 1132 3 878855164 +519 327 4 883248134 +266 14 4 892258004 +56 862 3 892910292 +500 276 5 883865290 +530 476 4 886198206 +560 108 1 879976988 +269 218 2 891450509 +267 380 2 878973426 +431 245 4 877844489 +322 656 5 887314027 +178 354 4 892239771 +505 1285 3 889333711 +508 88 3 883777299 +326 33 2 879876975 +508 109 3 883768886 +60 212 5 883327087 +11 238 3 891905032 +458 57 1 886395758 +15 257 4 879455821 +533 345 3 888347628 +361 190 5 879440573 +537 588 1 886031473 +541 781 5 883866093 +526 301 2 885682031 +511 358 1 890004916 +378 153 4 880055779 +18 582 5 880131450 +1 256 4 889751712 +268 1046 3 875745501 +7 416 5 891353051 +405 141 2 885548877 +435 151 3 884132898 +327 72 2 887819582 +114 176 5 881260203 +537 697 2 886031966 +552 151 3 879222238 +397 127 5 885349427 +489 991 3 891445439 +267 124 5 878970473 +361 274 3 879441034 +201 31 1 884114232 +374 97 5 880394571 +5 95 4 875721168 +68 409 3 876974677 +334 231 2 891549024 +152 274 5 880149166 +416 143 5 893213918 +157 117 5 886890296 +450 1261 4 882472964 +373 165 5 877100354 +327 340 4 887744167 +450 614 4 882377479 +532 468 5 893119491 +373 497 3 877099317 +456 202 3 881374586 +109 413 3 880572382 +58 209 5 884305019 +429 168 5 882387773 +360 284 3 880354991 +536 204 4 882359938 +230 216 4 880484444 +286 805 3 878141931 +454 194 3 881959698 +504 132 5 887838815 +374 64 5 880396256 +501 1534 4 883348743 +380 654 4 885478953 +311 521 4 884366686 +533 118 4 879192792 +24 727 3 875322727 +463 597 2 890531227 +483 405 3 878952966 +379 195 3 880525368 +454 655 3 881959746 +110 340 3 886987183 +401 321 2 891031554 +501 298 4 883347950 +405 528 1 885546248 +277 619 4 879543801 +374 5 4 880937875 +512 313 3 888578289 +130 227 3 875801868 +500 56 5 883873976 +487 288 4 883440572 +308 699 4 887737193 +101 117 4 877136067 +527 653 4 879456077 +499 183 4 885599718 +82 826 3 876311646 +476 175 4 883364143 +294 298 5 877819265 +338 490 5 879438275 +263 879 2 891297416 +445 595 2 891200624 +201 121 2 884114275 +505 258 1 888630999 +535 508 5 879617931 +62 222 5 879372480 +200 549 4 884129567 +393 194 4 887746239 +68 111 3 876974276 +116 1254 2 876453377 +57 1096 3 883697940 +343 257 3 876402941 +500 3 4 883865786 +249 183 4 879572540 +537 291 2 886030235 +561 164 2 885809626 +235 196 3 889655162 +434 833 4 886724914 +251 281 4 886272456 +360 845 3 880354942 +114 180 3 881309718 +321 7 4 879438793 +293 941 2 888907407 +452 969 2 875276006 +545 710 3 879900227 +387 76 3 886484215 +416 140 4 886317030 +369 166 4 889428418 +534 591 5 877807845 +126 344 4 887853735 +450 700 1 882469863 +318 174 4 884495590 +297 83 4 875774306 +545 228 5 879899266 +244 174 3 880605896 +22 1003 1 878887277 +351 678 4 879481675 +189 656 4 893265568 +481 435 5 885828510 +349 15 4 879465785 +90 356 4 891385752 +429 151 5 882386870 +542 8 3 886532908 +308 96 4 887737432 +532 685 5 892521554 +504 416 4 887910294 +151 198 4 879524472 +479 840 1 879460547 +514 45 4 876061444 +532 586 4 888636373 +397 156 5 885350381 +401 168 1 891033442 +385 461 4 879441942 +540 50 5 882156948 +145 17 3 875272132 +454 97 4 881960029 +532 591 5 893119335 +131 242 5 883681723 +387 123 3 886480970 +497 250 3 879310581 +189 516 1 893265568 +456 282 3 881371694 +15 323 1 879455311 +345 655 4 884991851 +553 1451 4 879949212 +25 968 4 885852218 +455 228 4 879111153 +541 660 5 883865039 +82 456 1 884714618 +496 11 4 876067022 +521 659 4 885253376 +158 250 4 880132356 +405 556 1 885546636 +429 382 3 882386601 +533 69 4 879438849 +342 382 3 875320623 +400 307 3 885676526 +181 456 1 878962586 +344 8 5 889814194 +472 49 5 875982607 +374 1277 3 880394331 +405 1539 1 885546724 +500 316 3 891916809 +480 517 4 891208460 +463 741 1 889937778 +85 291 3 882994658 +23 386 4 874789001 +243 509 4 879988369 +249 317 5 879572106 +7 571 3 891353950 +370 661 5 879435217 +264 14 4 886122771 +59 762 4 888203708 +53 628 5 879443253 +75 111 4 884050502 +332 70 2 888360179 +387 20 4 886480789 +94 732 3 891721216 +186 1046 3 879023751 +545 25 2 880348933 +561 23 5 885807888 +474 194 5 887924571 +504 372 4 887839195 +416 775 4 893142245 +25 186 4 885852569 +320 679 4 884749306 +295 22 4 879517372 +328 601 4 885048004 +548 1051 4 891415677 +339 160 5 891033512 +503 97 4 880383424 +224 349 4 888082246 +327 960 5 887745774 +308 97 1 887738469 +394 4 4 880888037 +479 117 3 889125627 +363 625 4 891498038 +77 209 4 884752562 +316 183 1 880853654 +323 292 4 878738997 +391 504 5 877398856 +435 290 3 884132484 +85 310 3 880838201 +92 1028 2 876769174 +303 586 2 879485659 +60 168 5 883326837 +280 197 2 891700836 +468 8 4 875288196 +198 6 2 884206270 +434 844 3 886724505 +501 844 4 883347023 +249 117 4 879640414 +446 690 2 879786892 +483 286 3 878950353 +385 631 3 879461422 +94 864 2 891723397 +325 208 3 891478771 +537 3 2 886030317 +554 582 3 876232758 +262 294 2 879962366 +489 872 2 891448530 +380 38 2 885479537 +54 930 1 880937813 +246 1139 2 884923811 +541 699 4 883864985 +63 224 4 875747635 +506 662 5 878044851 +11 290 3 891903877 +554 229 3 876369907 +514 307 4 880210104 +299 1103 4 889503013 +533 180 3 879439379 +479 288 3 879459836 +267 1185 2 878973995 +416 526 5 893214226 +417 157 4 879647966 +379 427 5 881996665 +295 403 4 879517762 +76 77 2 882607017 +269 445 3 891450385 +22 211 3 878886518 +504 117 4 887831694 +279 60 4 875310263 +312 211 4 891698254 +221 222 3 875244232 +425 590 3 878737945 +207 281 3 876018471 +422 370 2 879744287 +410 269 5 888627137 +13 578 3 882397974 +454 692 5 888267158 +434 763 5 886724873 +500 662 2 883876005 +509 751 3 883590443 +305 480 5 886322758 +244 318 5 880603082 +198 411 1 884206659 +10 178 5 877888677 +474 1050 4 887926106 +541 423 3 883864985 +95 448 3 879197783 +386 685 4 877655085 +249 471 4 879640241 +380 139 1 885480414 +114 679 2 881259741 +256 151 5 882151623 +354 89 4 891217547 +339 130 4 891034040 +527 56 4 879456611 +246 173 5 884921227 +393 85 3 889729375 +508 115 3 883767383 +479 463 4 879460984 +506 1110 1 885135955 +200 866 4 891825324 +472 1053 4 875982397 +327 11 4 887745303 +318 56 3 884495561 +223 993 4 891549876 +474 633 4 887926436 +417 323 3 879646820 +472 455 4 883903686 +556 496 5 882136252 +181 1255 1 878962086 +41 216 3 890687571 +405 1444 2 885549005 +450 92 4 887660650 +363 54 3 891497440 +479 182 4 879460984 +226 224 4 883889690 +28 195 4 881957250 +343 1211 4 876406677 +433 1005 5 880585730 +10 11 4 877888677 +494 100 5 879541475 +234 1204 3 892078297 +486 109 3 879874902 +536 441 2 882361018 +13 404 5 882399014 +92 182 4 875653836 +346 496 5 875260242 +318 480 4 884495795 +185 514 5 883524428 +398 476 3 875652760 +265 240 3 875320633 +293 403 3 888906869 +40 879 2 889041595 +543 199 4 875663056 +274 1152 4 878945939 +530 1300 2 890627207 +551 950 2 892783861 +177 568 3 880130915 +497 240 4 879309734 +194 225 3 879543589 +343 739 3 876406939 +130 412 4 874953866 +328 645 4 885046344 +351 341 4 879481425 +504 384 2 887912447 +343 86 5 876404836 +551 260 5 892775869 +479 1039 4 879461015 +95 72 2 880571389 +374 318 2 880394886 +457 403 4 882397177 +526 875 3 885682264 +535 137 4 879618502 +505 56 1 889333560 +417 474 4 879647118 +551 576 2 892784743 +436 347 4 887768398 +552 252 2 879222002 +211 423 5 879459846 +377 508 4 891298549 +286 818 2 877531281 +194 86 3 879520991 +533 26 3 879192035 +320 588 3 884750766 +542 399 2 886533172 +144 654 4 888105823 +152 794 5 886535773 +94 53 4 891721378 +465 286 4 883529338 +301 39 3 882076292 +158 123 3 880132488 +447 204 4 878856458 +411 568 4 892845634 +538 191 5 877106665 +246 92 1 884921661 +463 596 3 877385731 +498 919 4 881954451 +545 524 4 879900185 +456 60 4 881373838 +537 459 3 886030381 +468 582 3 875287535 +479 421 4 879460762 +92 411 4 875640189 +7 507 5 891352383 +429 1110 2 882387234 +532 284 5 893119438 +528 748 3 888520471 +318 132 4 884495868 +402 50 4 876266741 +183 1090 2 891467546 +360 357 5 880355958 +551 223 4 892776650 +536 70 2 882359906 +125 372 1 879454892 +249 290 2 879640521 +429 505 4 882384821 +551 292 3 892775612 +525 121 4 881085893 +451 242 1 879012857 +84 1047 2 883452694 +487 195 4 883446907 +116 519 5 886310197 +213 479 4 878955534 +539 661 5 879788045 +533 411 2 879365998 +551 581 5 892783972 +365 271 4 891303408 +168 678 1 884287109 +274 211 5 878946612 +92 1214 2 876174925 +157 685 3 886890372 +548 118 5 891415855 +520 289 4 885169052 +7 646 5 891351383 +551 181 2 892778074 +479 249 2 879460236 +416 416 4 886319038 +10 182 5 877888876 +87 181 5 879876194 +85 610 3 879454582 +345 1012 3 884994606 +426 332 4 879441781 +213 118 4 878870871 +426 194 4 879444919 +527 124 4 879455680 +291 565 2 874867852 +343 1194 4 876405129 +551 22 5 892776650 +470 19 4 879178813 +489 330 4 891445277 +553 434 3 879948771 +253 689 5 891627775 +481 514 4 885829045 +409 207 3 881108715 +524 185 4 884635204 +499 176 4 885599447 +429 520 3 882384603 +293 463 4 888906619 +412 96 5 879717286 +501 249 3 883348411 +521 423 3 884478792 +537 58 4 886031719 +33 678 4 891964306 +13 1 3 882140487 +303 1232 3 879484948 +435 413 2 884134104 +480 191 4 891208265 +242 111 4 879741196 +234 970 4 892335437 +400 323 4 885676582 +94 923 5 885882685 +226 176 4 883888978 +435 42 3 884131267 +538 237 4 877109986 +78 327 1 879633495 +497 783 3 879362908 +506 53 4 874874985 +83 546 4 887665549 +92 642 3 875654929 +435 109 4 884132297 +429 702 5 882387757 +40 896 4 889041402 +249 478 4 879572911 +75 685 4 884050134 +456 238 4 881373756 +288 175 1 886629664 +561 143 1 885810000 +472 1 5 892790627 +144 271 2 888103632 +193 354 3 889123158 +537 661 4 886031149 +9 483 5 886960056 +82 418 4 878769848 +538 496 5 877107491 +563 1035 4 880507204 +18 478 5 880129691 +474 495 4 887927728 +554 696 3 876232023 +60 515 5 883326784 +326 780 2 879877326 +256 739 5 882165135 +409 156 2 881108715 +469 705 5 879524302 +504 94 4 887841158 +542 265 4 886532238 +286 819 3 876521835 +122 660 3 879270644 +519 909 5 883250148 +194 1207 1 879555410 +234 608 3 892078741 +497 1157 2 879362178 +385 384 1 884118861 +537 1050 2 886031575 +201 180 3 884140078 +527 201 3 879456490 +144 280 1 888104625 +566 177 4 881650654 +563 692 5 880506842 +194 22 5 879521474 +556 192 5 882136440 +488 210 4 891294896 +126 690 3 887853735 +452 648 4 875273292 +320 24 3 884748641 +35 358 1 875459073 +374 521 4 880395530 +24 41 5 875323594 +550 892 2 883426119 +343 357 5 876408139 +478 381 5 889397221 +474 996 3 887927153 +145 823 3 875271397 +446 334 3 879787149 +164 411 2 889402407 +455 515 4 878585775 +194 732 3 879522021 +533 659 4 879439379 +160 1197 4 876768609 +472 99 3 875981595 +342 357 3 874984234 +58 116 5 884304409 +533 845 4 882902989 +406 133 5 882461684 +276 461 4 874787526 +342 1103 3 874984395 +533 4 3 888845066 +234 319 3 892334883 +159 96 4 884360539 +496 141 3 876067493 +115 273 4 881169984 +548 887 4 891043442 +524 42 3 884636453 +121 127 5 891388333 +481 650 3 885828650 +378 144 4 880046100 +308 605 4 887740603 +305 70 4 886324221 +334 338 1 891544524 +246 1028 3 884923653 +115 177 5 881172117 +543 694 4 874862966 +256 288 5 882150122 +497 3 4 879309715 +515 243 3 887659667 +195 809 3 877835548 +378 21 3 880044944 +527 203 4 879456662 +532 242 4 888817735 +534 1034 3 877808120 +339 1526 4 891035116 +537 654 3 886031506 +466 95 2 890285788 +407 712 2 876340043 +354 281 1 891216915 +130 1089 2 876250718 +121 250 2 891388676 +491 273 5 891188230 +295 137 4 879517271 +382 177 4 875947005 +6 203 3 883602864 +184 529 4 889909445 +308 517 4 887737483 +484 69 5 891194743 +387 663 4 886482883 +7 665 4 891354471 +532 241 5 892859148 +407 403 4 875045658 +399 118 3 882341383 +378 1230 2 880334305 +71 357 5 885016495 +389 454 2 880086868 +520 300 4 885168906 +342 7 4 875318266 +467 1016 4 879532671 +109 177 4 880578358 +58 1048 1 892242190 +516 628 4 891290649 +60 491 4 883326301 +109 12 4 880577542 +492 187 5 879969878 +394 802 1 881058201 +518 685 5 876823597 +193 763 3 889127457 +401 83 4 891033122 +447 248 5 878854383 +409 1393 1 881105367 +385 650 5 880870205 +464 1226 4 878355033 +530 214 2 886202320 +92 230 3 875656055 +450 928 3 882397813 +338 208 3 879438225 +279 684 3 880825843 +216 156 5 880233608 +201 408 4 884111436 +389 527 3 880086868 +347 1039 5 881653830 +405 1179 1 885547690 +345 416 4 884992142 +561 7 5 885808738 +363 164 2 891496722 +28 56 5 881957479 +557 262 2 882458820 +380 751 3 885481179 +377 271 4 891295957 +15 282 3 879456204 +326 434 5 879875203 +305 941 2 886324792 +380 163 2 885478539 +496 87 5 876073616 +328 323 3 885044940 +457 1140 2 882551344 +503 561 5 879454977 +463 1014 2 889936324 +557 166 4 881179397 +542 496 4 886532534 +62 44 3 879374142 +402 1060 3 876267041 +244 754 4 880603960 +360 304 4 880353660 +521 228 4 884478007 +391 282 4 877399894 +18 461 4 880130713 +545 89 3 879899125 +222 11 5 878181534 +456 693 3 881373949 +389 631 5 880087493 +451 308 1 879012890 +141 823 3 884585437 +110 196 4 886987978 +417 380 3 879648860 +552 225 3 879221876 +503 382 4 880383174 +52 13 5 882922485 +147 270 3 885594204 +457 105 3 882396001 +149 337 2 883512968 +405 1231 1 885548136 +450 589 3 882813241 +219 258 5 889386635 +49 946 2 888067096 +474 603 5 887923788 +253 485 5 891628435 +342 298 3 874984619 +417 245 4 879649779 +481 216 5 885828339 +34 292 5 888602742 +66 50 5 883601236 +373 71 5 877098891 +48 185 4 879434819 +276 1194 3 874790875 +498 182 4 881955596 +541 763 3 883866068 +232 750 3 885939690 +454 496 4 881959991 +416 245 2 876696788 +453 214 3 877553928 +545 229 3 879899380 +168 597 3 884288112 +13 654 5 881515295 +435 713 5 884131385 +359 546 3 886453373 +533 427 4 879191373 +532 721 4 874791671 +345 298 5 884902339 +152 49 5 882477402 +374 183 4 880434204 +406 173 2 879446684 +312 608 5 891699372 +537 488 4 886030622 +346 375 1 875266176 +417 385 5 879648184 +276 915 4 892436368 +542 866 2 886533046 +75 405 4 884050164 +539 242 5 879787770 +524 161 4 884637095 +455 57 4 879112460 +31 875 4 881547938 +295 202 5 879517943 +429 83 4 882385168 +399 301 4 882340242 +49 42 4 888068791 +378 736 4 889665232 +381 705 5 892696209 +413 250 3 879969674 +479 175 4 879461102 +561 805 3 885810240 +124 144 4 890287645 +214 705 4 891544414 +385 507 3 879445631 +546 17 4 885141411 +417 340 3 880949136 +503 488 5 880472216 +484 56 5 891195057 +440 937 5 891548567 +223 125 3 891549294 +236 127 5 890116032 +308 214 2 887738104 +354 166 4 891218379 +145 762 3 875272926 +160 282 4 876768025 +536 727 3 882359697 +523 935 5 883700186 +548 458 3 891415512 +87 657 4 879877740 +437 1007 5 881002374 +41 195 4 890687042 +72 220 3 880035786 +454 70 4 888267419 +385 900 4 885168653 +382 100 4 875945812 +541 1 4 883874645 +457 651 5 882396799 +99 475 5 885678785 +497 550 4 879310913 +187 216 5 879465394 +101 1132 3 877136954 +543 179 4 874862879 +542 69 4 886532552 +18 42 3 880130713 +145 412 4 888398492 +318 1012 4 884471076 +474 216 4 887924683 +22 94 3 878887277 +263 315 4 891296896 +201 425 3 884140246 +74 258 4 888333194 +406 421 4 882480628 +293 211 4 888906338 +456 721 4 881373756 +393 569 4 889728736 +291 566 4 874834799 +280 697 5 891701506 +15 676 4 879455871 +398 239 3 875747539 +472 38 4 875981358 +393 240 2 887745380 +189 246 4 893264048 +56 794 3 892683960 +496 39 5 876072633 +425 198 4 890347247 +277 1129 3 879543421 +530 692 4 883784258 +558 116 5 879436396 +563 233 4 880507165 +523 3 4 883702474 +542 56 5 886532706 +201 282 2 884140428 +556 170 4 882136162 +10 134 5 877889131 +56 11 4 892676376 +239 753 5 889179478 +452 79 4 875269386 +339 79 4 891032701 +174 1221 5 886514398 +130 420 5 876252472 +280 284 3 891701090 +457 483 5 882396705 +425 176 3 878738386 +361 269 4 879441490 +456 174 4 881373019 +226 713 5 883889884 +112 887 5 884992444 +483 199 3 882165665 +520 1028 1 885170476 +423 148 3 891395417 +207 111 3 880839802 +497 38 3 879310965 +532 1470 5 888630402 +545 472 5 879899266 +185 423 5 883524428 +532 562 5 892859148 +234 124 4 891227689 +551 132 5 892777583 +526 270 3 885681860 +463 15 4 877385287 +500 721 1 883875561 +451 690 4 879012382 +396 871 2 884646289 +193 476 2 889127698 +201 464 1 884140522 +274 685 5 878945542 +524 184 1 884636416 +138 15 4 879023389 +110 765 3 886989028 +339 4 4 891033653 +537 226 2 886032000 +332 369 4 887938556 +561 1101 3 885808887 +559 902 4 891035111 +343 168 4 876404612 +564 1399 2 888718470 +200 358 5 884127221 +474 521 5 887925977 +52 151 5 882922249 +57 820 3 883698039 +407 197 4 875553731 +504 258 5 887831273 +417 1247 3 880953033 +276 715 3 874791194 +30 172 4 875060742 +463 244 4 877387935 +286 930 2 876522240 +234 1169 4 892334543 +1 220 3 875241390 +524 554 4 884636746 +532 421 5 888637085 +405 1042 1 885548671 +405 265 2 885547910 +426 655 4 879444952 +269 58 2 891447842 +429 546 3 882387140 +560 1160 3 879976215 +450 591 4 887660762 +435 1103 4 884131627 +400 288 4 885676365 +405 1585 1 885546487 +544 1280 3 884795542 +122 956 4 879270850 +236 176 2 890115933 +16 642 5 877719075 +360 286 5 880353526 +447 926 3 878854438 +381 214 2 892697338 +535 433 5 879618160 +566 395 1 881651672 +528 423 1 888522642 +325 498 4 891478333 +548 311 3 891042194 +530 328 4 886198454 +313 633 5 891014597 +356 292 3 891405978 +494 289 1 879540630 +363 578 4 891497925 +99 22 5 885679596 +188 651 4 875073408 +474 170 4 887925620 +378 1181 2 880332537 +508 214 3 883775341 +334 305 2 891544135 +189 313 2 893263960 +264 856 3 886123472 +537 956 4 886031751 +497 127 5 879310580 +565 52 5 891037524 +209 1 5 883460644 +321 863 3 879440746 +425 187 3 878738386 +83 584 4 880308453 +10 137 4 877889186 +354 151 3 891218356 +454 318 5 881959576 +281 326 1 881200491 +104 628 4 888465347 +59 168 5 888204641 +128 690 3 879966274 +394 38 4 881058146 +479 58 4 879461432 +458 461 4 886397377 +552 336 3 879221267 +76 137 5 875498777 +334 640 4 891548129 +563 401 4 880507108 +551 561 5 892785363 +561 151 2 885808843 +536 265 5 882360300 +417 391 2 879649519 +406 117 4 879539824 +239 300 1 889178513 +118 320 5 875385386 +551 318 5 892776824 +7 286 4 891350703 +429 763 4 882387053 +251 978 2 886272585 +394 313 5 883304657 +573 194 4 885844431 +99 300 4 885678397 +506 663 4 874874947 +497 407 2 879309852 +450 385 4 882396489 +450 282 5 882377653 +69 236 4 882072827 +507 147 5 889965997 +275 257 3 876197645 +121 100 4 891388035 +308 56 5 887736924 +308 646 5 887738508 +523 50 5 883700186 +552 322 3 879220760 +499 136 4 885599447 +328 44 3 885047864 +541 560 3 883874872 +508 82 3 883777145 +537 242 3 886028498 +195 198 3 884420000 +453 424 1 888206768 +406 240 4 879540078 +549 866 4 881672573 +567 1019 5 882425874 +54 295 3 880936905 +485 538 3 891040560 +496 181 5 876064168 +532 155 4 888630086 +456 743 2 881372256 +363 831 1 891498469 +406 357 4 879446108 +243 1197 4 879988337 +144 319 3 888103509 +456 170 5 881373353 +332 237 5 887916529 +311 468 4 884365140 +352 12 4 884290428 +62 83 5 879375000 +194 8 3 879521719 +209 285 5 883417613 +500 28 3 883874078 +49 640 1 888066685 +444 515 4 891979402 +390 302 5 879693461 +118 55 5 875385099 +533 127 5 879192278 +201 803 2 884112282 +269 56 5 891455815 +561 204 3 885808716 +510 286 3 887667439 +567 636 4 882427155 +455 380 3 879112654 +7 613 4 891352010 +176 328 4 886047375 +569 111 3 879793948 +562 443 5 879196604 +291 998 1 875086728 +29 300 3 882820897 +416 237 3 876697330 +428 243 4 885943713 +144 1 4 888104063 +425 1596 2 878738695 +1 93 5 875071484 +489 687 3 891445439 +89 702 5 879459999 +416 1300 3 886315494 +92 120 2 875642089 +538 211 4 877109986 +425 566 2 878738695 +435 327 3 884130765 +56 173 4 892737191 +393 147 5 887744549 +459 250 5 879563270 +478 427 4 889388633 +303 1089 1 879544978 +488 419 3 891294976 +450 305 4 885944806 +417 1 4 879646413 +536 603 4 882359653 +84 95 4 883453642 +322 603 5 887314417 +276 755 3 874792870 +200 401 2 884130085 +236 9 5 890116792 +451 336 4 879012811 +502 338 4 883702370 +536 69 5 882359938 +435 584 3 884132297 +308 371 3 887738469 +416 934 2 876698178 +343 297 5 876403283 +337 380 4 875185319 +479 500 4 879461255 +184 508 4 889907738 +189 527 5 893265327 +321 60 4 879440954 +13 222 3 882140285 +87 281 4 879876074 +479 632 5 879460785 +437 12 5 880382685 +545 226 3 879899438 +195 1413 2 877835268 +397 345 4 889760663 +435 715 3 884133635 +70 208 4 884149431 +436 761 4 887770693 +104 13 3 888465634 +225 427 5 879539615 +419 617 4 879435628 +346 470 3 874948513 +543 513 4 874863035 +56 111 2 892683877 +187 428 4 879465308 +557 294 3 880484929 +138 513 5 879024043 +454 474 4 881959917 +561 343 4 885807035 +357 123 4 878951864 +457 172 5 882553113 +267 169 5 878972614 +406 212 2 879793210 +95 25 3 879192597 +450 275 4 882372178 +416 242 4 888819254 +299 129 4 877877733 +64 425 4 889739051 +339 235 3 891036387 +473 116 5 878157544 +221 108 3 875244866 +476 194 5 883364143 +452 99 3 875562410 +448 321 4 891888509 +428 272 5 885943651 +276 1042 1 874795823 +393 999 4 889730187 +416 1051 3 886319079 +496 136 1 876066424 +263 527 5 891299148 +479 127 5 879460192 +537 736 3 886031634 +537 470 2 886032029 +454 1 3 881959818 +378 257 4 880045207 +7 47 5 891352692 +43 660 4 883955859 +123 523 3 879872406 +151 761 3 879542813 +496 135 2 876066038 +406 434 5 879446269 +11 742 3 891902815 +424 172 3 880859385 +537 258 4 886029286 +42 924 3 881105677 +329 174 4 891656639 +567 252 1 882427384 +255 682 5 883215759 +441 288 2 891035056 +463 362 1 889943741 +498 512 5 881957757 +514 423 5 875462568 +311 501 5 884365954 +527 143 2 879456289 +94 22 4 885872758 +118 396 5 875385335 +484 293 5 881254899 +542 693 4 886533395 +308 24 4 887738057 +536 50 5 882318139 +89 321 4 879441049 +480 166 5 891208185 +463 1605 2 877387935 +456 505 4 881373473 +276 289 2 890979634 +239 132 5 889178986 +312 185 5 891699121 +313 95 3 891014313 +554 286 4 876231521 +6 501 5 883602730 +374 665 4 880939228 +474 203 5 887926059 +339 528 5 891033044 +184 651 3 889908462 +552 301 4 879220720 +109 1228 3 880582758 +457 31 4 882397543 +486 300 4 879874388 +435 825 3 884133372 +362 748 1 885019592 +234 1453 2 892335415 +501 282 4 883348185 +450 873 3 882216475 +487 68 5 883530949 +344 121 3 884899792 +535 1149 4 879618288 +505 151 3 889334162 +533 19 3 879365781 +6 259 1 883268375 +339 415 3 891035553 +576 9 3 887168978 +90 509 5 891383866 +264 202 5 886123596 +186 98 5 891719859 +291 569 3 874868580 +385 1007 3 879439949 +181 1331 1 878962052 +567 482 5 882425966 +417 174 3 879647498 +543 1262 2 876382812 +207 55 3 875509395 +399 69 3 882342019 +567 615 4 882425932 +532 500 5 889235367 +533 98 4 879438543 +354 116 5 891216692 +474 135 5 887924424 +206 1024 1 888180049 +130 1095 3 876251192 +399 186 4 882342669 +303 1110 1 879543939 +479 121 4 879460236 +533 435 4 879438455 +512 97 5 888579520 +434 1152 5 886724633 +18 177 3 880131297 +474 708 4 887927339 +119 168 5 874781351 +323 933 3 878739393 +305 793 5 886324712 +342 197 4 875318988 +60 12 4 883326463 +308 945 4 887739136 +44 450 2 883613335 +354 531 4 891217897 +529 873 4 882535091 +295 95 4 879518080 +387 194 3 886480206 +314 22 4 877889724 +429 48 3 882384896 +173 302 5 877556626 +308 494 5 887738570 +550 255 3 883425388 +537 681 1 886029488 +456 42 4 881373655 +313 1 4 891013436 +459 300 4 879561574 +523 1022 4 883699629 +453 79 3 888207161 +533 47 1 879191998 +5 452 1 878844397 +60 166 4 883326593 +561 584 3 885809781 +245 1047 3 888513393 +274 276 4 878945437 +194 1066 3 879554383 +471 8 5 889827881 +533 54 4 888844601 +379 385 2 882563616 +466 183 3 890284766 +251 282 4 886272223 +397 340 2 882838664 +491 190 4 891189631 +18 198 3 880130613 +343 703 4 876404426 +256 66 4 882165103 +306 756 3 876504472 +405 68 1 885547996 +202 1 3 879727059 +125 105 3 892839021 +504 82 4 887837918 +499 651 4 885598895 +401 194 4 891033395 +499 87 4 885599598 +495 507 4 888633316 +222 1139 3 878185137 +26 458 3 891352941 +140 302 4 879013617 +325 183 3 891477980 +286 390 1 889652378 +524 291 4 884627777 +535 735 5 879619067 +280 748 2 891700080 +405 1209 3 885547645 +460 14 5 882912418 +493 327 5 884129868 +510 294 3 887667681 +328 912 3 893195852 +174 764 4 886434343 +49 90 1 888069194 +506 227 4 874875062 +546 672 3 885141438 +90 543 3 891383173 +352 82 3 884290328 +192 108 4 881368339 +234 1450 3 892335213 +244 156 4 880602517 +63 676 3 875747470 +416 827 4 878879350 +208 310 4 883108105 +346 712 3 875264985 +268 1222 2 875744174 +417 218 3 879648184 +498 591 4 881961877 +429 161 3 882385934 +357 151 5 878951728 +406 559 3 879792974 +472 561 5 875982050 +334 297 5 891544680 +417 248 4 879646286 +392 255 3 891038224 +465 97 2 883532120 +495 1135 5 888634475 +474 173 5 887924027 +536 133 4 882359477 +405 427 5 885545306 +577 471 3 880471640 +246 559 3 884922898 +474 463 5 887927457 +406 234 4 879792863 +573 143 2 885844339 +456 720 3 881375515 +540 109 4 882157194 +261 125 5 890456142 +318 58 4 884496243 +347 1012 4 881652590 +336 111 3 877756999 +573 192 4 885844535 +554 546 3 876231886 +190 989 3 891033327 +532 538 4 881048155 +340 143 5 884990669 +130 100 3 874953558 +470 295 3 879178455 +416 298 4 876697387 +190 313 5 891033606 +92 265 4 875657620 +415 480 5 879439960 +1 8 1 875072484 +217 183 3 889069741 +271 357 5 885848408 +573 127 4 885843596 +542 367 4 886532881 +498 1083 3 881961932 +536 584 5 882360530 +49 698 2 888066776 +253 679 3 891628578 +533 240 1 879192474 +75 825 1 884050393 +198 98 4 884207611 +128 419 3 879967268 +466 117 5 890285034 +416 585 1 886318085 +553 478 4 879948964 +124 474 3 890287221 +73 382 4 888626496 +525 237 4 881085893 +56 78 3 892910544 +328 301 2 885044607 +90 954 4 891385522 +286 461 2 877532930 +449 273 4 879959003 +38 259 3 892428754 +276 391 2 874977442 +90 650 5 891384516 +110 1249 3 886989612 +29 286 5 882820663 +407 289 3 875115339 +496 222 3 876064290 +269 302 3 891446132 +174 417 4 886515490 +235 192 4 889655298 +72 194 4 880037793 +334 163 4 891548602 +506 550 4 885135881 +406 705 4 879445935 +2 291 3 888551647 +535 479 4 879617977 +262 288 3 879961374 +313 443 5 891013971 +178 819 2 882824670 +311 356 4 884365653 +539 19 5 879788007 +434 147 3 886724822 +474 461 5 887924683 +567 613 4 882426927 +463 235 2 877385457 +543 231 3 877545230 +513 265 5 885062919 +563 367 4 880507083 +326 654 1 879875151 +59 514 5 888204641 +290 125 3 880475245 +467 7 5 879532385 +496 1063 3 876066485 +457 144 5 882397494 +472 431 5 875982607 +214 166 4 891544512 +535 502 5 879618502 +454 12 3 881960114 +506 654 4 874876486 +299 58 3 878192601 +453 586 2 892447163 +244 268 5 880601904 +542 1218 3 886532762 +84 300 4 883449419 +422 127 4 875129839 +43 79 4 875981335 +235 431 2 889655490 +188 100 4 875074127 +62 195 5 879373960 +553 482 4 879948831 +478 161 3 889396645 +269 134 4 891448849 +257 129 4 880008245 +536 217 3 882360601 +518 370 4 876823963 +527 50 4 879455706 +449 702 5 880410778 +504 63 3 887912504 +339 942 4 891034484 +500 89 4 883873505 +189 13 4 893264220 +183 356 3 891466447 +99 471 4 885679091 +44 121 4 878346946 +497 625 3 879310021 +279 403 1 879573060 +354 216 3 891217782 +279 890 3 882146458 +1 205 3 878542909 +410 347 1 888626538 +409 1379 3 881106451 +293 591 3 888904712 +429 768 3 882387551 +579 1 4 880951740 +322 302 5 887314417 +514 318 4 875318331 +299 483 5 877880961 +363 264 3 891494049 +43 785 3 883956538 +109 164 5 880578066 +419 14 5 879435828 +574 300 4 891279012 +533 258 4 884007368 +49 96 1 888069512 +201 207 3 884111360 +465 12 4 883530088 +166 286 1 886397562 +417 73 3 879648343 +472 393 3 875983129 +188 97 5 875071891 +521 176 4 884477820 +498 23 4 881955596 +409 526 3 881107117 +474 653 4 887926999 +519 336 5 883248595 +393 173 5 887745759 +500 70 4 883875388 +312 208 5 891698334 +490 124 4 875427629 +308 568 5 887740649 +506 56 4 874873374 +151 204 4 879524641 +487 38 2 884052069 +402 273 4 876267014 +425 670 3 878738914 +401 153 2 891033466 +551 274 2 892783488 +393 825 4 887745230 +450 195 4 882371826 +311 639 4 884365686 +189 603 5 893265239 +290 435 3 880473802 +22 175 4 878886682 +385 444 1 879448994 +393 588 4 887746824 +407 100 5 875042905 +447 147 4 878854678 +171 315 4 891034835 +487 298 5 883442431 +474 684 4 887925977 +181 100 3 878962816 +454 58 4 881960029 +399 471 3 882340719 +385 739 1 879448665 +459 120 2 879563392 +70 576 2 884065248 +450 299 2 889568793 +405 1422 1 885548632 +561 582 4 885808796 +542 721 2 886533003 +452 491 4 875261100 +485 341 4 891042027 +342 194 3 875318858 +342 144 5 875319912 +523 792 4 883702263 +543 175 3 874864182 +59 61 4 888204597 +442 665 2 883390139 +21 854 5 874951657 +472 177 4 875981358 +136 204 4 882848866 +484 578 3 891195444 +334 937 3 891544367 +335 323 4 891567125 +417 855 2 879647450 +456 608 4 881373168 +409 382 4 881108170 +479 304 4 879459692 +296 294 1 884196374 +117 210 4 881012293 +551 237 4 892777825 +318 842 2 884495742 +454 603 4 881959876 +403 845 4 879786052 +344 322 2 889814470 +336 100 3 877756934 +194 73 3 879527145 +311 519 3 884365548 +421 87 4 892241736 +373 173 5 877098751 +426 488 5 879442785 +23 203 4 874786746 +560 203 4 879975613 +152 364 4 884019146 +60 609 3 883327923 +378 572 3 880333995 +164 100 5 889401998 +542 28 4 886533452 +537 516 3 886030966 +577 229 4 880475094 +328 755 3 885048801 +457 744 3 882393457 +234 873 3 891034007 +367 672 4 876689991 +521 474 3 884477677 +95 200 2 888954552 +399 58 3 882344942 +237 238 4 879376435 +130 215 5 875802035 +277 50 3 879543652 +483 612 3 878953751 +158 92 4 880134407 +1 234 4 876892355 +92 450 2 875907134 +417 214 5 879647254 +116 358 2 876452094 +16 234 5 877720185 +392 328 3 891037634 +340 662 2 884991584 +450 153 5 882374422 +426 204 3 879442128 +500 252 2 883865889 +29 480 4 882821989 +181 767 1 878963381 +479 101 4 879462185 +57 109 4 883697293 +401 9 3 891032218 +87 1049 3 879876812 +454 28 4 888267560 +131 293 3 883681442 +379 659 5 880568307 +528 193 4 886101873 +452 1089 1 876215899 +286 211 4 879781579 +517 283 4 892660728 +533 295 4 888844601 +511 895 4 890004863 +399 180 3 882345001 +50 1008 5 877052805 +533 879 3 892469600 +224 469 1 888104219 +567 302 4 882426300 +547 301 3 891282680 +234 178 5 892078890 +347 508 3 881652629 +85 229 3 882813248 +64 969 3 889737889 +267 235 3 878970578 +244 3 5 880602451 +378 1400 3 880057088 +342 699 4 875319808 +538 195 4 877108919 +297 13 3 874955210 +450 381 2 882374497 +286 179 5 889651822 +455 402 4 879112356 +141 292 1 884584906 +496 99 3 876066598 +531 323 5 887049081 +181 282 4 878962816 +519 1592 5 883250148 +504 428 3 887910511 +507 245 5 889964809 +285 100 4 890595636 +545 447 3 879899978 +496 509 3 876067272 +497 67 3 879362858 +503 405 3 879438685 +406 20 3 879446529 +13 13 5 882141617 +290 228 4 880473556 +116 252 2 876453376 +531 289 3 887048862 +363 317 5 891495596 +514 204 5 875318331 +442 318 4 883391046 +174 553 5 886513674 +472 229 5 875982560 +401 451 2 891033343 +532 1496 2 874795634 +161 132 1 891171458 +487 1035 4 884044329 +256 36 3 882165269 +109 125 5 880564534 +551 582 5 892783749 +207 514 4 877878343 +87 783 4 879877279 +425 307 4 890346411 +95 89 3 879196353 +299 255 2 877878036 +405 421 1 885549309 +538 956 3 877107914 +569 222 3 879794265 +3 258 2 889237026 +514 243 2 885181043 +327 1101 4 887746665 +555 168 4 879975419 +405 1518 2 885546577 +576 280 5 886985003 +244 1057 4 880608992 +347 258 4 881652077 +280 731 3 891702049 +534 930 4 877808002 +339 498 4 891033044 +425 144 4 878738335 +562 56 1 879195156 +327 273 2 887745911 +180 660 5 877372188 +215 99 4 891435731 +194 624 2 879525695 +84 203 3 883453587 +59 234 5 888204928 +497 1052 2 879309869 +84 597 3 883452200 +506 554 3 885135912 +276 323 3 874786392 +406 274 3 879539987 +561 469 4 885809099 +540 245 3 882157172 +156 187 5 888185778 +406 746 3 880131741 +94 80 2 891723525 +314 1014 3 877886317 +573 661 4 885844431 +222 284 3 877563462 +405 397 4 885548094 +293 550 1 888906781 +284 345 4 885328728 +187 660 5 879465744 +481 238 4 885828245 +299 732 4 889502688 +553 427 5 879948508 +548 255 4 891043852 +474 419 4 887925916 +279 81 4 875732652 +429 132 3 882385636 +545 810 4 879899523 +157 313 5 886889616 +291 975 2 874834146 +527 181 4 879456464 +458 180 4 886397679 +291 164 4 874834875 +459 225 3 879563777 +429 535 2 882386941 +562 636 2 879195007 +500 1324 2 883865985 +534 24 5 877807780 +1 105 2 875240739 +229 300 2 891632142 +299 652 3 877880522 +374 458 5 880393710 +211 491 3 879459876 +251 742 5 886272486 +524 707 4 884634995 +379 174 5 880525368 +222 569 2 878184866 +486 1017 3 879874970 +201 521 2 884111637 +545 54 4 884134519 +84 117 4 883450553 +151 609 4 879525075 +357 1277 5 878951918 +521 90 2 885254006 +338 474 4 879438627 +139 297 5 879538275 +455 191 5 879111422 +337 250 3 875185219 +194 997 3 879553988 +243 514 4 879989006 +313 88 2 891028956 +277 1283 2 879543592 +1 147 3 875240993 +424 427 4 880859346 +13 790 2 882141841 +508 443 4 883777071 +326 423 3 879876159 +441 751 4 891035247 +453 143 2 888206053 +62 98 4 879373543 +57 871 3 883697536 +366 217 5 888857990 +459 687 3 879561782 +354 98 3 891218312 +361 56 4 879440516 +115 23 5 881171348 +197 245 4 891409352 +577 284 4 880470732 +469 127 4 879525373 +251 275 4 886271675 +472 655 5 875982397 +484 924 5 880937157 +125 181 5 879454139 +95 77 4 880571746 +558 936 5 879436396 +239 498 4 889179623 +294 1081 3 889242328 +13 621 4 882398934 +307 395 3 877121789 +436 179 3 887770015 +532 1046 4 874790629 +200 68 5 884129729 +151 215 3 879524420 +71 248 3 877319446 +557 8 5 881179653 +332 123 4 887916653 +566 33 2 881650907 +276 358 3 874786419 +109 986 2 880572382 +530 322 4 886203949 +216 11 5 880234346 +493 746 4 884131143 +276 395 2 877935377 +567 7 4 882426622 +14 428 4 879119497 +478 98 5 889388862 +52 815 4 882922357 +58 640 5 884304767 +486 258 5 879874064 +450 231 3 887662002 +299 634 2 877880852 +564 333 3 888718521 +83 25 2 883867729 +399 43 3 882348664 +130 250 3 876250833 +381 16 4 892697266 +95 1188 2 880572787 +500 498 4 883873911 +561 501 3 885808620 +95 705 5 880570964 +495 1119 4 888634784 +457 230 4 882392853 +334 13 3 891545089 +253 895 4 891627893 +342 1170 3 875319659 +234 25 3 892335797 +72 228 1 880037204 +342 326 1 874984002 +406 72 3 880131954 +506 1073 4 874873247 +486 127 5 879874448 +556 520 5 882136441 +421 333 4 892241236 +509 310 1 883590443 +24 173 5 875323474 +534 595 4 877807747 +378 756 3 880057088 +447 1 3 878854273 +467 276 5 879532460 +137 1 3 881433048 +537 327 2 886028730 +543 85 2 877547580 +537 447 3 886031752 +334 127 4 891544840 +551 91 1 892783025 +354 169 3 891217511 +226 182 1 883889322 +505 402 5 889333937 +424 333 5 880859228 +151 26 3 879542252 +21 559 1 874951761 +498 1422 3 881961877 +401 172 3 891032896 +291 55 4 874834735 +398 229 3 875744031 +291 1217 3 874834850 +137 892 3 882809210 +343 58 4 876406283 +405 1442 1 885546835 +87 127 4 879876194 +523 1009 5 883701154 +280 729 2 891700963 +188 468 4 875073329 +472 473 4 875978867 +517 873 3 892660034 +370 107 4 879435244 +452 513 4 875561734 +466 302 5 890284651 +479 181 5 879460028 +86 683 5 879570974 +560 118 3 879976892 +294 269 5 877818457 +334 483 5 891628266 +385 508 2 879439728 +442 177 4 883390366 +158 544 2 880132638 +368 672 2 889783453 +416 689 4 885114578 +488 259 1 891293051 +13 871 2 882141924 +546 118 5 885141260 +521 173 4 884477896 +519 243 1 883250021 +85 143 4 879456247 +417 183 4 879647298 +276 634 4 874795888 +83 111 3 884647519 +472 748 5 875977682 +488 845 3 891294853 +200 760 4 876042753 +142 176 5 888640455 +533 283 3 879365733 +369 919 5 889428642 +280 174 3 891700588 +548 147 5 891415540 +286 969 5 878142001 +168 325 1 884287073 +405 504 2 885548579 +1 99 3 875072547 +28 227 4 881961393 +77 127 2 884732927 +572 300 4 879449243 +264 26 4 886123727 +181 977 1 878962997 +392 172 5 891038401 +454 661 4 881959991 +390 283 4 879694316 +474 132 4 887924683 +94 686 4 891720540 +195 143 5 875771441 +559 188 5 891034609 +393 64 4 887745973 +504 1439 4 887840517 +575 215 3 878148229 +49 433 5 888068739 +401 365 4 891033497 +222 1011 4 881061049 +536 271 3 882317149 +501 406 3 883348656 +301 109 5 882074236 +243 736 4 879988520 +537 151 2 886030177 +72 241 4 880037242 +503 233 5 879454811 +5 395 2 879198898 +483 538 2 886470912 +435 385 5 884131771 +493 235 2 884130593 +584 114 4 885778238 +189 630 4 893266376 +407 181 3 875045027 +560 319 4 879975173 +498 98 4 881957681 +280 315 5 891700184 +543 15 3 888209697 +535 22 3 879619107 +108 748 3 879879662 +113 237 3 875076246 +554 87 4 876550654 +430 1240 3 877226470 +504 237 3 887831753 +551 316 5 892696165 +385 256 4 879439728 +546 286 2 885139580 +493 343 3 884130074 +218 8 3 881288574 +379 205 5 880524973 +311 621 4 884365579 +102 436 2 888803051 +394 98 5 880887088 +564 750 3 888718771 +332 679 5 887939021 +455 24 3 879111662 +576 825 4 886986304 +87 1181 3 879875940 +457 143 5 882548099 +497 139 3 879363696 +16 531 5 877722736 +398 525 3 875908134 +378 203 4 880055239 +349 121 2 879465712 +278 315 4 891294932 +262 486 5 879794296 +311 416 4 884365853 +247 300 2 893081411 +72 655 5 880037702 +104 111 1 888465675 +288 880 1 886373007 +61 300 5 891206407 +398 502 3 875717717 +334 221 5 891544904 +301 568 4 882076538 +299 249 3 877878414 +236 692 4 890116670 +416 403 5 893212730 +64 196 4 889737992 +508 1 5 883777430 +6 530 4 883601203 +381 479 5 892696929 +200 758 3 884127370 +276 433 4 874791960 +201 1135 5 884140750 +346 100 3 874948426 +1 1 5 874965758 +320 241 4 884750968 +405 651 5 885545167 +543 1194 4 875659174 +318 26 5 884497471 +87 435 5 879875818 +41 414 4 890687550 +405 904 1 885549904 +533 234 2 879191373 +378 126 4 880057018 +18 98 5 880129527 +42 237 4 881105882 +92 5 4 875654432 +320 808 4 884749359 +407 565 3 876348702 +406 1065 2 882480567 +15 546 2 879456324 +394 265 4 880888390 +514 682 4 875463891 +526 346 3 885681860 +489 260 3 891366693 +148 151 4 877400124 +276 241 4 874792402 +454 118 4 888267128 +357 273 5 878951457 +387 127 4 886479575 +59 651 5 888204997 +425 340 4 890346264 +450 865 4 887136139 +435 211 4 884131627 +437 134 5 880139951 +416 194 5 893214041 +557 257 2 880485764 +222 175 3 878181739 +452 294 2 886148704 +16 385 5 877727192 +184 694 5 889908824 +405 606 3 885545070 +210 657 4 887736429 +181 307 1 878962006 +532 568 5 892521554 +498 1007 3 881954219 +246 198 4 884922196 +416 251 5 893213405 +343 57 5 876404426 +429 3 2 882386785 +551 566 5 892783212 +243 458 4 879987397 +361 83 3 879440345 +524 237 3 884322169 +588 31 3 890015722 +565 179 5 891037778 +538 405 3 877109564 +151 132 5 879524669 +497 792 3 879362954 +450 484 3 887662002 +500 584 1 883874528 +587 995 3 892871503 +506 490 3 874873529 +361 23 5 879441215 +145 515 5 875270394 +485 294 1 891041103 +469 654 4 879524177 +269 1040 1 891456425 +77 641 5 884733621 +569 1 4 879793399 +408 312 3 889680073 +429 157 4 882384920 +474 71 5 887926872 +488 70 3 891294854 +387 229 2 886483195 +506 28 4 874874308 +13 801 3 886303172 +249 135 5 879572668 +393 1063 4 889554540 +496 625 4 876067306 +323 873 3 878738949 +269 523 5 891447593 +373 214 4 877100326 +450 1033 3 882468401 +498 164 3 881961689 +488 28 4 891293805 +336 998 1 877757062 +94 797 2 891723848 +94 391 3 891723644 +438 100 4 879868024 +453 385 3 888207161 +14 210 5 879119739 +378 1042 3 880056287 +546 98 5 885141332 +553 131 5 879948655 +302 301 4 879436820 +380 182 3 885478391 +569 3 1 879795551 +479 190 4 879461354 +314 1519 4 877892181 +246 235 3 884921965 +446 302 4 879787730 +177 135 5 880130712 +458 469 4 886397377 +93 283 4 888705146 +363 650 2 891495197 +493 265 5 884131048 +100 349 3 891375629 +286 82 3 889651605 +85 955 4 879454400 +160 933 3 876767621 +20 174 4 879669087 +347 181 5 881652377 +567 1131 4 882426601 +59 410 3 888203270 +535 283 4 879618160 +503 654 5 879454753 +553 604 5 879949107 +524 866 2 884626810 +557 508 4 880485956 +305 135 3 886323189 +354 88 2 891307206 +457 549 4 882398178 +380 956 4 885478271 +567 1204 5 882427023 +272 205 5 879454726 +568 606 5 877907720 +387 8 4 886480108 +276 24 4 874792366 +504 51 4 887839260 +13 551 1 882397084 +405 1470 2 885549045 +393 1000 3 889731139 +449 410 3 879959134 +328 97 3 885046174 +184 639 3 889909590 +399 117 2 882347620 +568 835 4 877907157 +478 218 3 889396731 +574 315 3 891278860 +199 100 3 883782807 +569 283 4 879793847 +450 199 5 882371732 +193 23 4 889126609 +577 996 3 880475094 +529 323 4 882535091 +305 251 5 886321764 +290 176 4 880473971 +468 475 4 875280041 +504 396 2 887911369 +268 184 4 875310524 +346 183 4 874948382 +24 289 3 875245985 +12 591 5 879959212 +514 408 5 875311225 +474 7 5 887915414 +502 358 4 883702518 +363 380 4 891496481 +91 127 5 891439018 +536 21 3 882320267 +193 403 3 889125945 +64 144 3 889737771 +586 628 3 884064631 +492 186 3 879969539 +214 171 4 891544323 +556 479 5 882136162 +73 179 5 888626041 +308 275 4 887737891 +280 409 3 891702441 +271 546 2 885848102 +49 557 3 888066394 +514 1014 2 885180645 +311 133 3 884364652 +118 641 5 875385386 +497 810 3 879310941 +436 1468 5 887770668 +60 637 4 883327975 +405 1478 1 885546636 +468 612 4 875294549 +301 197 5 882075774 +184 203 3 889908571 +527 324 3 879455415 +157 286 5 874813268 +493 763 4 884130593 +560 756 2 879977032 +497 229 2 879310850 +90 990 3 891382522 +303 215 5 879467413 +378 686 4 880056350 +417 555 1 879649389 +164 515 4 889401906 +402 286 5 876266650 +467 298 4 879532385 +484 588 5 891195773 +201 231 2 884310104 +276 388 2 874792094 +363 423 3 891495711 +576 435 4 886986400 +181 117 2 878962918 +585 1488 4 891283921 +447 65 3 878856422 +119 412 4 874775136 +91 210 5 891439208 +541 465 4 883874716 +222 732 4 878183425 +455 1034 2 879110767 +429 356 3 882386942 +201 466 4 884113453 +464 301 4 878354829 +288 190 1 886374286 +435 752 3 887509539 +47 683 3 879439143 +587 748 1 892871438 +320 800 4 884751190 +378 729 4 880046069 +562 462 5 879196074 +59 610 4 888205615 +559 73 4 891035812 +416 1516 5 893213549 +291 941 4 874868284 +536 511 5 882359603 +13 795 2 882399219 +313 632 4 891013620 +489 873 3 891447008 +64 423 4 889739569 +532 1415 2 892520390 +216 569 3 880245291 +533 430 5 879191972 +145 294 4 875269871 +181 876 1 878961781 +405 184 1 885547952 +416 591 5 893212895 +524 541 1 884702593 +560 864 3 879976970 +399 1244 3 882341607 +393 243 4 887742916 +385 18 5 884915008 +508 216 5 883768886 +527 193 3 879455680 +494 322 2 879540819 +151 474 5 879524222 +416 9 5 893212572 +57 284 3 883697158 +44 737 1 883613298 +519 263 5 883250102 +522 523 5 876961133 +464 294 4 878354721 +416 469 4 893141989 +468 293 5 875280395 +28 609 3 881956220 +495 742 5 888632888 +588 721 5 890023722 +250 258 4 878088969 +334 68 3 891548387 +201 230 3 884112487 +506 82 5 874873745 +546 288 4 885141260 +234 432 4 892079722 +354 258 4 891180399 +138 12 5 879024232 +416 286 5 893212929 +551 121 5 892783411 +472 362 5 892790627 +13 603 4 884538571 +283 21 3 879297867 +369 890 3 889428268 +550 323 5 883425465 +536 582 2 882360100 +488 9 4 891294063 +486 936 3 879874629 +357 476 3 878951616 +402 515 5 876266860 +387 428 4 886482969 +299 915 4 892250102 +326 181 4 879875592 +503 714 4 880383126 +321 174 3 879441111 +478 145 1 889398599 +232 269 3 891565001 +521 182 3 884477993 +394 233 3 881058062 +545 22 3 879899158 +518 7 3 876823197 +532 734 3 874791786 +378 99 4 880045791 +416 918 4 893214332 +399 754 3 882340242 +206 749 2 888179980 +458 32 4 886395963 +402 10 2 876266985 +211 230 3 879460294 +207 462 3 877845656 +416 1 5 893212483 +294 237 4 889242035 +200 63 4 884130415 +342 125 2 875318585 +536 31 3 882360685 +392 515 5 891038110 +445 235 1 891200272 +489 689 5 891447913 +102 1240 2 883748450 +456 410 4 881372160 +109 722 3 880583493 +425 232 3 878738548 +417 518 5 879647604 +389 739 2 880088229 +500 535 3 890010025 +577 204 4 880474338 +517 111 3 892659922 +473 25 4 878157427 +493 98 4 884131460 +264 645 4 886123358 +201 1421 3 884141015 +318 70 5 884496368 +429 238 5 882384526 +428 312 4 885944005 +405 1193 1 885549506 +549 50 5 881672199 +269 191 5 891457067 +391 58 4 877398898 +357 220 5 878951954 +535 42 3 879618849 +561 53 3 885810538 +347 371 1 881654715 +536 387 3 882363919 +291 1 5 874834481 +215 1063 5 891436543 +201 1006 2 884112136 +343 950 3 876403121 +374 978 2 880936233 +320 570 4 884749384 +504 167 3 887909556 +520 274 3 885170516 +331 234 4 877196633 +38 1036 4 892433704 +345 226 3 884993418 +523 727 4 883703167 +389 642 4 880087804 +452 111 3 886061565 +551 161 5 892782936 +460 713 4 882912469 +325 82 3 891479263 +126 340 5 887854982 +334 151 4 891544925 +518 100 4 876822967 +283 294 4 879297013 +72 77 4 880036945 +189 207 5 893266161 +30 892 4 884310496 +278 313 5 891294932 +479 879 4 879459657 +336 1051 2 877757094 +462 271 1 886365928 +373 226 3 877107024 +440 921 5 891578264 +500 208 4 883873745 +110 258 4 886987183 +194 76 2 879549503 +454 121 4 888267128 +560 260 1 879977973 +311 539 4 884364268 +551 50 2 892776336 +263 699 4 891299207 +72 591 5 880035708 +561 109 1 885810271 +226 109 4 883889063 +401 1 2 891032170 +500 255 3 883865374 +401 276 4 891032433 +15 248 1 879455871 +565 212 5 891037453 +385 443 3 879445098 +560 423 4 879975586 +472 355 3 892790003 +339 566 3 891034717 +527 213 4 879456186 +227 14 4 879035463 +332 252 5 888098524 +556 48 5 882136252 +439 1048 4 882893602 +450 311 4 885945425 +504 655 4 887840713 +566 1232 2 881651126 +399 282 3 882340775 +567 221 5 882426927 +497 381 3 878759898 +289 125 2 876789373 +6 485 5 883602664 +533 378 4 879439290 +425 127 4 878738290 +141 831 2 884585470 +526 147 4 885682503 +514 732 5 875462901 +6 137 5 883599327 +561 489 4 885807743 +569 25 4 879793785 +198 191 4 884208682 +363 231 1 891497679 +586 665 3 884061256 +445 908 1 891199331 +405 1560 1 885549635 +41 188 4 890687571 +379 64 5 882563520 +251 147 3 886272319 +537 137 4 886029841 +399 77 2 882349094 +10 462 3 877891747 +533 65 4 879439465 +64 121 2 889739678 +429 404 4 882386121 +344 1142 5 889814518 +178 423 4 882826556 +371 393 2 880435397 +508 101 5 883777430 +561 1009 4 885810706 +276 1011 3 874836682 +455 223 4 879111554 +379 172 4 880525400 +450 433 3 882469061 +538 98 5 877107012 +254 181 5 886471151 +18 283 5 880130551 +529 292 4 882535180 +314 866 4 877892461 +561 15 3 885809291 +95 188 3 879196354 +504 1421 4 887841073 +295 121 4 879518455 +564 827 3 888731038 +507 827 5 889966088 +312 625 3 891699538 +587 327 3 892871252 +229 269 4 891633029 +283 409 4 879297442 +537 82 2 886031752 +235 496 4 889655662 +132 484 4 891278807 +197 228 4 891409894 +496 17 3 876065645 +59 975 4 888203610 +3 339 3 889237141 +137 680 5 881432735 +49 1083 2 888068651 +466 385 4 890284819 +453 963 4 888202307 +7 64 5 891350756 +130 565 3 880396541 +497 98 4 879361802 +282 300 3 879949438 +497 408 4 879309955 +485 245 3 891041782 +145 134 4 882181695 +88 319 3 891037708 +551 135 5 892778129 +280 389 5 891701913 +385 211 3 879446183 +372 333 5 876869109 +532 66 5 893118712 +409 1097 2 881108829 +194 13 4 879539410 +294 121 5 877819714 +537 417 2 886031831 +506 182 5 888848342 +479 1 5 879459939 +535 1124 4 879617613 +363 657 5 891494587 +311 399 4 884366269 +417 144 3 879647232 +453 69 4 877554647 +144 8 4 888105612 +582 948 1 882960718 +389 210 2 879990996 +298 514 4 884182989 +540 741 3 882157797 +362 322 3 885019651 +530 50 4 883781669 +480 642 4 891208822 +57 181 5 883697352 +476 209 4 883364218 +566 8 4 881650690 +345 464 3 884992084 +293 544 3 888905062 +379 144 5 880525367 +219 879 4 892039556 +253 220 4 891628060 +234 1461 2 892078297 +92 370 1 875644796 +380 506 3 885481179 +267 174 5 878971405 +196 287 3 881251884 +454 316 4 888015879 +391 511 5 877398855 +178 56 4 882825767 +533 479 4 879191184 +561 211 4 885808824 +39 270 4 891400609 +536 183 3 882359455 +399 941 3 882347577 +313 523 5 891014401 +551 616 5 892777052 +95 153 5 879197022 +503 246 5 884638548 +498 628 4 881961627 +77 246 5 884732808 +567 480 4 882426508 +301 455 5 882074437 +394 282 3 880888096 +507 300 5 889964239 +177 217 3 880131230 +327 301 3 887743725 +543 117 3 874861792 +206 683 1 888179980 +552 1277 3 879222763 +553 646 4 879949251 +210 301 4 887731435 +302 680 2 879437035 +435 122 3 884134677 +180 201 2 877127189 +480 165 5 891208390 +532 300 5 888635239 +216 257 3 880232830 +405 1206 1 885546530 +542 1059 4 886533193 +254 22 4 887347350 +405 802 1 885548049 +141 926 4 884585300 +509 300 3 883590800 +254 225 3 886475952 +420 475 4 891357162 +269 410 4 891446662 +343 471 4 876402941 +416 559 3 886317272 +584 258 4 885774483 +339 50 4 891032576 +194 549 3 879527263 +187 168 5 879465273 +303 721 4 879484194 +393 751 2 887741960 +12 708 3 879959394 +359 121 4 886453373 +342 547 5 875318347 +591 787 3 891031500 +524 497 2 884637467 +547 354 4 891282640 +438 255 4 879868242 +116 1214 3 876453422 +537 237 3 886030011 +460 676 4 882912285 +49 50 1 888067691 +137 210 5 881433654 +494 174 5 879541112 +69 98 5 882145375 +210 4 4 887730443 +406 699 4 884630617 +551 15 5 892782936 +53 1087 4 879443329 +472 117 3 875978740 +437 607 5 880140892 +566 1193 5 881649548 +504 563 3 887911314 +585 1347 2 891285658 +95 650 4 880572132 +455 42 2 879110767 +389 503 3 880087739 +500 179 4 883873782 +561 19 3 885808673 +579 845 4 880952549 +410 754 3 888626710 +271 509 4 885848559 +566 423 2 881649709 +305 1512 3 886322796 +62 1132 2 879373404 +178 9 2 882823758 +13 637 2 882396913 +533 190 2 879439379 +378 181 4 880045167 +415 269 4 879439108 +539 50 3 879788136 +386 24 4 877655028 +504 151 4 887831678 +194 467 5 879521253 +416 127 5 893213796 +504 210 4 887832643 +417 27 3 879648594 +437 660 4 880141441 +587 881 2 892871641 +363 518 4 891494835 +437 155 3 880143189 +314 379 3 877890463 +465 191 4 883530133 +465 199 3 883531026 +92 195 5 875652981 +588 365 5 890028385 +548 1405 3 891415572 +434 237 5 886724754 +420 408 4 891356927 +537 460 2 886030442 +197 265 5 891409893 +26 118 3 891385691 +486 250 1 879874753 +263 271 1 891297276 +255 564 1 883216600 +398 230 3 875908666 +416 432 2 878879861 +537 615 3 886031074 +228 750 3 889388440 +537 269 3 886028446 +527 156 3 879456334 +385 236 2 879439637 +561 1524 4 885809897 +313 333 4 891012877 +455 317 3 879111616 +543 207 5 875665787 +436 39 3 887769887 +488 199 4 891293911 +267 665 4 878973825 +31 319 4 881547788 +532 829 3 892520073 +248 176 5 884534808 +263 136 4 891298337 +561 518 4 885808620 +22 636 3 878888106 +7 603 4 891350757 +238 471 4 883576359 +20 820 2 879668626 +299 488 4 877881508 +314 845 5 877886483 +398 796 3 875732862 +177 963 4 880130736 +409 322 2 881105077 +276 1141 3 874790773 +552 14 4 879221649 +332 282 5 887916692 +314 196 3 877888212 +59 484 4 888204502 +479 358 1 879459732 +13 484 5 882139804 +561 1139 1 885810744 +90 20 4 891384357 +271 88 4 885849087 +588 204 5 890015323 +95 542 2 888954039 +246 981 1 884924765 +405 1471 1 885548670 +416 1217 4 886319366 +13 138 1 882399218 +296 237 5 884196785 +475 316 5 891627927 +30 174 5 885941156 +405 939 5 885545200 +533 9 4 879192414 +452 143 3 885805093 +405 1063 5 885548785 +561 678 2 885807080 +409 1524 4 881107666 +92 237 4 875640318 +501 181 4 883347857 +164 717 3 889402265 +401 64 3 891032757 +234 307 2 891033427 +15 235 1 879456424 +157 340 5 886889616 +553 98 5 879948996 +537 207 4 886030682 +533 1282 3 879773572 +435 148 3 884133284 +425 1089 2 878739095 +374 1513 2 883961242 +430 628 3 877225832 +561 468 1 885809291 +532 1210 4 888636373 +519 324 1 883248191 +473 137 4 878157357 +294 291 2 889242469 +591 1017 3 891039616 +311 77 5 884365718 +507 689 5 889964844 +404 270 4 883790749 +71 181 3 877319414 +524 525 3 884634615 +170 259 3 886623680 +581 50 4 879641698 +327 269 3 887737629 +144 61 3 888106182 +334 265 3 891545876 +22 24 5 878888026 +349 471 3 879465535 +411 566 4 892845634 +486 766 4 879874417 +303 1411 2 879483941 +442 53 3 883390048 +392 289 5 891037769 +23 224 5 874784638 +587 875 1 892871462 +535 238 4 879618809 +189 500 5 893266351 +379 576 4 880525678 +459 328 3 879561574 +308 216 3 887737789 +546 346 5 885139634 +208 517 3 883108398 +254 415 3 886475523 +539 131 4 879788159 +459 230 4 879564941 +11 357 5 891904241 +532 485 5 893119491 +405 537 1 885546445 +587 349 3 892871400 +399 735 3 882344512 +405 520 2 885546025 +484 50 5 881254239 +181 1059 1 878963440 +498 1142 4 881955432 +524 931 3 884627932 +457 132 5 882547619 +373 550 3 877105588 +62 651 4 879373848 +228 137 1 889388662 +13 117 3 882398138 +292 235 3 881104797 +429 627 2 882387114 +62 403 4 879375588 +456 1324 4 881371720 +150 288 4 878746174 +417 616 2 879648048 +561 124 3 885807842 +161 257 3 891172174 +214 462 4 892668197 +440 1191 5 891550404 +574 321 1 891279285 +336 290 3 877756934 +545 648 3 879899719 +83 406 2 891182431 +552 717 3 879222368 +343 153 5 876404539 +406 428 5 879446684 +363 678 1 891494012 +131 127 4 883681418 +104 294 3 888442404 +399 231 3 882350375 +18 973 3 880129595 +207 849 3 877822704 +397 878 1 875063722 +270 581 5 876955938 +244 401 3 880607424 +537 457 1 886029444 +500 660 2 883874835 +484 510 4 889974386 +378 620 3 880056582 +503 20 5 879438285 +268 544 3 875743090 +560 13 3 879976602 +523 629 5 883702125 +177 173 4 880130667 +455 462 3 879110436 +94 665 3 891723328 +528 310 3 888520371 +561 222 3 885807843 +451 881 4 879012721 +575 322 3 878146541 +555 87 4 879975505 +592 418 4 882956551 +145 282 5 875270570 +69 307 2 882027204 +393 797 3 889731138 +270 860 5 876956464 +553 307 4 879948235 +458 193 4 886396460 +54 546 3 880937583 +425 831 3 878739095 +487 1244 2 883444859 +516 310 4 891290565 +257 582 5 879547608 +374 483 3 880394716 +268 203 5 876513855 +422 1187 4 875130137 +580 825 4 884125339 +77 15 2 884732873 +551 959 5 892784166 +303 741 4 879466604 +264 1118 4 886123656 +271 285 4 885847876 +308 176 4 887736696 +334 955 1 891547563 +276 399 2 874792634 +316 83 4 880853992 +435 762 4 884132840 +532 153 4 888629670 +13 311 3 881514726 +128 924 3 879967341 +521 721 4 885253337 +60 404 3 883327287 +592 124 5 882607986 +88 313 3 891037201 +463 13 3 877385664 +75 13 5 884050102 +500 284 3 883865632 +401 1289 2 891032495 +537 7 4 886029727 +500 845 4 883865566 +303 780 5 879483900 +412 154 3 879717071 +456 13 4 881372604 +294 50 5 877819353 +495 214 5 888632219 +405 1553 1 885548632 +87 570 3 879876163 +592 50 5 882607872 +70 230 4 884064269 +586 148 3 884065745 +299 237 2 877877649 +92 737 4 875654125 +550 993 4 883425426 +543 176 4 874865635 +459 742 4 879562834 +11 727 3 891904335 +222 168 4 878181616 +405 1517 1 885547735 +57 405 4 883697459 +303 64 5 879466457 +566 83 4 881650148 +316 678 1 880853310 +487 794 5 883530503 +96 445 4 884403095 +450 1140 2 882471362 +338 135 5 879438570 +479 298 3 879459909 +537 241 3 886031540 +84 685 3 883452274 +13 12 5 881515011 +336 275 4 877759730 +294 928 3 889242468 +255 665 3 883216748 +92 271 2 880149111 +456 1218 3 881374921 +54 181 5 880931358 +592 204 5 882956158 +276 159 3 874795637 +8 273 3 879362287 +457 44 4 882548214 +460 591 2 882911603 +13 518 4 882140252 +474 503 4 887925838 +201 679 3 884310104 +582 246 4 882961082 +403 288 4 879785822 +314 121 4 877886221 +373 96 4 877098262 +271 277 4 885847714 +503 176 5 879454754 +551 307 4 892775516 +450 315 4 884098435 +154 874 3 879138368 +429 441 3 882386848 +102 187 3 888801232 +144 4 4 888105873 +85 1103 3 882995489 +389 423 5 880087461 +481 648 5 885828165 +22 684 3 878887983 +370 433 3 879434860 +286 396 4 877534414 +405 199 1 885546025 +405 1559 1 885546577 +351 888 4 879481589 +246 401 1 884923750 +329 331 3 891656639 +561 530 4 885807547 +439 300 4 882892424 +218 56 3 881288574 +449 558 4 880410599 +293 678 2 888904439 +288 121 2 886893063 +399 806 3 882344096 +49 71 3 888067096 +189 487 5 893265568 +178 87 4 885784558 +472 930 5 875979317 +425 147 3 878738643 +297 11 4 875240015 +497 145 4 879362382 +551 742 5 892782838 +374 48 5 880395426 +405 1032 1 885549044 +363 774 4 891498835 +465 318 4 883531487 +52 111 4 882922357 +456 182 3 881373228 +330 105 4 876545150 +145 603 5 875272009 +545 636 3 879899472 +48 209 5 879434954 +429 186 4 882385294 +387 582 3 886483497 +500 1326 4 883865020 +10 205 5 877888812 +181 1197 1 878962774 +551 238 5 892777638 +445 293 3 891199945 +328 195 3 885045899 +586 39 4 884061623 +447 981 2 878855139 +417 396 2 879649560 +178 200 3 882826983 +425 207 2 891986445 +405 415 2 885549005 +186 56 3 879023460 +342 866 1 875318585 +23 151 3 874784668 +435 318 5 884131385 +491 340 4 891189716 +189 7 3 893264300 +555 480 4 879975474 +197 373 1 891410124 +344 151 5 884899719 +328 1439 3 885048827 +178 226 4 882826187 +579 83 5 880952360 +476 710 5 883364324 +474 483 5 887924424 +503 204 3 880383703 +567 483 5 882425843 +10 663 3 877886598 +479 739 1 879461932 +267 53 4 878972842 +326 154 2 879875271 +255 5 2 883216599 +411 655 4 891035639 +291 829 2 874834308 +246 1044 1 884922869 +188 64 5 875071891 +449 753 5 880410700 +542 187 4 886533395 +394 172 4 880886919 +532 168 5 892519934 +42 627 2 881109271 +378 969 4 880056195 +206 1431 1 888180018 +81 283 4 876533504 +15 181 5 879455710 +299 965 4 889501260 +329 117 3 891655868 +36 288 4 882157227 +345 772 4 884993121 +10 467 4 877891904 +493 318 5 884132315 +435 260 3 884130810 +33 260 4 891964306 +101 147 4 877136506 +411 161 2 891035761 +270 79 4 876955938 +409 433 4 881108170 +323 144 4 878739988 +118 171 5 875384825 +549 252 3 881672538 +92 1018 4 875653769 +6 367 2 883602690 +154 174 5 879138657 +90 443 4 891385250 +406 960 2 879793376 +561 506 3 885809146 +399 727 4 882344722 +429 686 2 882385519 +25 116 4 885853335 +405 645 1 885546635 +268 174 5 875309882 +497 39 3 879310913 +561 497 4 885809064 +545 474 3 884134205 +16 12 5 877718168 +430 124 5 877225726 +577 662 4 880474933 +409 170 4 881107084 +567 1 3 882426899 +394 195 5 880886919 +405 461 3 885545639 +407 357 4 875042569 +592 297 5 882607844 +13 851 5 882139966 +435 95 3 884131868 +254 1028 2 886474619 +236 435 4 890115966 +405 807 1 885546680 +456 432 4 881374390 +561 1220 2 885810538 +7 157 5 891352059 +28 286 3 881955018 +590 285 5 879438735 +405 82 4 885547952 +387 238 5 886482928 +6 64 4 883600597 +416 1048 3 876698255 +416 824 2 876697592 +530 178 5 883787080 +463 50 4 890530818 +503 778 5 892667730 +164 1016 3 889402091 +506 747 2 874874629 +233 275 5 885147637 +280 140 4 891701223 +527 868 4 879456663 +396 405 3 884646314 +497 771 4 879362638 +515 315 4 887658604 +574 258 5 891278916 +543 591 4 876896210 +506 661 5 874874308 +397 457 1 875063722 +307 257 5 875645340 +421 164 4 892241687 +474 298 3 887915645 +532 818 2 888631077 +269 160 2 891448220 +503 45 5 880383064 +585 582 3 891282894 +566 480 4 881649471 +407 972 3 876340120 +59 498 5 888204927 +361 770 3 879441352 +243 162 4 879988459 +406 498 5 879445378 +409 204 5 881108496 +454 76 1 888266433 +38 418 5 892431026 +404 302 4 883790218 +447 17 3 878856110 +542 475 3 886532359 +298 588 4 884125022 +456 185 4 881372849 +435 317 2 884132483 +448 338 1 891888712 +290 141 4 880474740 +497 403 3 879310883 +435 436 4 884133691 +537 187 4 886030767 +374 463 1 880396511 +509 260 2 883591195 +326 317 3 879875243 +49 1071 3 888069138 +24 237 4 875323002 +92 949 3 875653664 +577 117 4 880471359 +579 528 4 880951708 +303 227 3 879542884 +85 495 3 882994860 +105 340 3 889214245 +537 313 4 886028446 +405 779 1 885548137 +111 303 3 891680028 +268 59 5 875309282 +416 864 3 888700529 +539 483 5 879788101 +551 185 5 892777885 +546 436 5 885141438 +405 1146 2 885546724 +435 435 3 884132230 +190 245 4 891033487 +401 121 3 891032662 +435 520 4 884132027 +267 159 4 878974659 +97 175 5 884239616 +94 484 5 891720996 +224 365 3 888104188 +551 355 4 892776041 +227 748 1 879035387 +428 334 4 885943847 +592 79 4 882955583 +543 238 3 874866319 +373 553 4 877100267 +324 323 4 880575163 +414 272 5 884998953 +253 190 5 891628278 +271 161 2 885849470 +399 1074 4 882345842 +506 54 4 874876651 +508 181 3 883767047 +288 268 4 886372812 +405 403 5 885546445 +494 924 4 879541475 +158 53 1 880134781 +455 65 3 879111396 +586 756 1 884067105 +269 318 4 891447791 +48 191 5 879434954 +480 265 3 891208390 +416 628 4 876697283 +60 73 4 883326995 +348 926 3 886523683 +488 299 3 891293051 +593 633 5 875671081 +486 305 3 879874218 +271 529 4 885848475 +13 233 4 882397650 +269 679 1 891449962 +453 401 3 888206038 +488 87 5 891294297 +194 159 3 879552401 +124 168 5 890287645 +364 319 3 875931309 +533 96 4 879438767 +158 221 2 880132421 +500 42 5 883874139 +434 148 3 886724797 +458 408 5 886396637 +109 156 5 880573084 +76 547 2 882607017 +7 595 2 891353801 +457 476 2 882392810 +561 1 2 885807713 +156 83 3 888185677 +474 258 4 887914688 +94 209 5 886008301 +440 243 1 891577504 +308 171 4 887738346 +158 111 4 880134261 +217 50 1 889069684 +98 25 5 880499111 +326 565 3 879877470 +94 200 4 891721414 +363 979 1 891497748 +76 1048 2 882607017 +87 50 5 879876194 +455 313 4 884649784 +354 1137 4 891219376 +592 969 4 882956718 +456 91 2 881373948 +586 559 5 884060807 +472 196 4 875982005 +95 198 5 880570823 +540 742 4 882157584 +449 1367 4 879958976 +524 31 4 884636205 +276 721 3 874791871 +85 1121 3 879454820 +406 813 4 879539824 +537 472 2 886030415 +239 589 3 889180978 +82 3 2 878768765 +408 302 5 889679683 +511 880 5 890004778 +52 19 5 882922407 +465 180 3 883530015 +391 191 3 877399336 +363 250 1 891499468 +194 134 2 879521719 +416 307 1 889907392 +270 559 5 876956442 +170 988 3 884706063 +451 687 2 879012510 +364 948 4 875931561 +282 343 4 881702939 +343 241 3 876407291 +391 11 3 877398951 +542 246 3 886532359 +396 282 4 884646052 +339 204 3 891033542 +405 509 1 885546112 +268 260 3 876513643 +583 83 4 879384338 +243 468 3 879988298 +429 154 3 882384683 +206 1395 1 888180081 +569 126 5 879793909 +328 161 4 885047670 +21 244 4 874951349 +174 278 5 886433833 +60 30 5 883325944 +568 269 4 877906547 +521 271 3 884475524 +234 417 3 892336119 +450 790 2 882374332 +548 1073 4 891044411 +106 25 4 881451016 +91 429 4 891439324 +517 369 5 892660727 +263 480 3 891298453 +537 467 3 886031634 +214 135 3 891544175 +393 905 3 887742851 +473 327 3 878156857 +523 166 4 883701018 +303 673 4 879468250 +457 934 3 882396092 +479 692 3 879461700 +279 158 3 875313351 +497 455 4 878759777 +318 191 5 884496069 +522 173 4 876961020 +26 748 1 891348192 +387 197 2 886483824 +541 274 4 883866093 +569 924 3 879793784 +94 506 5 891721642 +313 538 2 891014313 +262 420 3 879793854 +472 417 4 875982337 +506 530 5 874874110 +311 449 3 884365823 +450 371 3 887661961 +459 866 5 879563312 +183 375 2 891467545 +540 150 3 882157036 +301 3 2 882075082 +59 211 5 888206048 +576 181 4 887081041 +373 225 4 877106676 +118 564 1 875385335 +218 47 4 877488492 +524 607 3 884637314 +43 9 4 875975656 +124 174 3 890287317 +184 175 3 889908985 +435 229 2 884133544 +378 702 4 880056453 +537 922 3 886030442 +167 521 5 892738307 +59 226 4 888206362 +487 768 3 884025080 +524 290 2 884323525 +160 293 5 876767572 +119 879 5 875720232 +243 318 4 879988071 +308 202 4 887737084 +596 678 3 883538965 +457 373 2 882551189 +11 728 3 891905366 +119 459 4 887038711 +294 682 3 889241486 +472 123 4 875979317 +437 287 2 881000931 +405 22 5 885545167 +457 38 3 882549651 +435 797 3 884133872 +570 303 5 881262256 +401 493 4 891033370 +200 501 4 884129504 +460 7 3 882912205 +83 196 5 880307996 +525 412 2 881086757 +59 747 4 888205410 +592 20 4 882608315 +328 272 5 888641556 +545 144 3 879899125 +445 23 3 890987465 +599 682 4 880951079 +474 92 4 887927509 +234 477 1 892335108 +80 260 1 883605215 +115 174 5 881171137 +236 174 3 890116539 +468 181 3 875280041 +156 772 3 888185947 +385 122 3 883791694 +458 1070 4 886395963 +568 194 3 877907671 +233 143 4 877663383 +541 810 3 883871719 +587 879 1 892871536 +115 673 3 881171558 +593 392 3 886193788 +474 966 4 887925837 +466 324 1 890283690 +363 805 4 891497205 +524 724 3 884636444 +336 186 4 877757730 +262 72 3 879962366 +105 327 4 889214406 +478 518 4 889395638 +432 181 5 889416118 +448 304 3 891888137 +541 255 3 884046321 +119 301 4 886176779 +92 222 4 886440557 +213 187 5 878956022 +358 666 3 891269992 +201 334 4 884110927 +417 58 3 879647140 +437 497 5 880140192 +497 412 1 878759926 +56 408 4 892683248 +451 688 1 879012811 +244 716 3 880607641 +445 221 1 891200203 +495 504 4 888632546 +401 147 2 891032662 +472 4 3 875980418 +95 141 4 888954631 +550 300 4 883425652 +429 85 4 882387234 +357 274 4 878951784 +465 194 4 883531072 +234 188 2 892079288 +365 222 4 891303950 +535 168 5 879618385 +18 805 4 880131358 +13 661 5 881515411 +234 692 3 892335990 +525 332 4 881085178 +302 988 2 879436875 +181 19 1 878962392 +536 570 3 882361162 +276 356 3 874791101 +507 271 5 889964312 +249 148 3 879640361 +196 116 3 881251753 +472 80 3 875981230 +214 92 4 892668249 +114 646 4 881260473 +197 679 1 891409935 +577 684 4 880474394 +378 450 3 880334476 +452 485 2 875276589 +130 11 5 875216545 +503 134 5 880383588 +434 9 1 886724563 +291 38 3 874834914 +450 357 5 882373531 +548 657 5 891044411 +81 42 4 876534704 +576 70 5 886986361 +318 284 3 884470775 +19 211 4 885412840 +432 508 5 889415853 +303 979 4 879484213 +437 301 3 881002067 +423 689 4 891395020 +381 1532 2 892696831 +546 458 1 885140689 +291 22 5 874835062 +279 204 3 878082751 +537 90 1 886032029 +474 98 5 887924027 +471 102 5 889828081 +174 139 3 886515591 +553 496 3 879948460 +43 1056 3 883955498 +293 283 2 888904884 +18 709 5 880131028 +361 213 5 879440605 +181 129 2 878962279 +525 1011 3 881086274 +37 118 2 880915633 +463 813 4 877385125 +551 203 5 892782975 +433 95 3 880585802 +545 254 4 879898995 +136 237 4 882693597 +453 393 3 888207162 +479 216 3 879461399 +295 431 5 879518233 +495 650 5 888634956 +138 662 4 879024128 +193 742 4 889126673 +159 126 5 880557038 +308 566 4 887739014 +243 461 3 879988132 +201 644 3 884113924 +148 496 3 877015066 +533 708 2 879439167 +593 79 4 875671674 +350 210 4 882345918 +107 323 1 891264566 +177 64 4 880130736 +308 162 4 887739095 +437 1039 2 880140101 +303 709 5 879468021 +361 204 4 879440516 +94 549 5 891721528 +97 191 5 884239472 +305 181 4 886321799 +246 288 5 884922235 +589 313 5 883352434 +435 1228 2 884133972 +521 73 3 885253827 +195 93 3 891762536 +488 100 2 891293910 +301 1016 4 882074684 +373 393 4 877104284 +145 692 2 885557505 +497 384 2 879362985 +370 210 3 879434745 +329 194 3 891656429 +551 746 5 892777013 +489 539 4 891448834 +535 480 4 879618207 +503 430 5 880383653 +405 1404 1 885547360 +401 14 3 891032271 +270 1009 5 876954522 +495 389 5 888637643 +326 837 4 879875507 +535 521 5 879618809 +558 124 4 879435855 +535 629 4 879618776 +182 479 5 876436556 +548 235 3 891415746 +545 265 4 883115423 +523 575 4 883702800 +594 237 3 874784095 +348 756 4 886523735 +184 739 3 889910257 +474 641 4 887926436 +328 708 2 885048101 +207 127 5 875506634 +449 459 4 879958803 +326 228 4 879876861 +505 88 4 889334334 +256 203 4 882164867 +394 419 5 880887250 +561 62 3 885810144 +222 1336 2 877563998 +541 239 4 883865211 +435 451 4 884133487 +406 1118 3 880132091 +59 436 5 888206094 +347 544 4 881652862 +417 1157 4 880952616 +541 419 5 883874682 +566 71 2 881650958 +514 336 1 885180842 +568 923 3 877906995 +58 1012 4 884304627 +401 655 3 891033417 +498 144 1 881958471 +254 1033 3 886475034 +92 171 4 875652981 +257 475 5 879029716 +299 228 3 878191823 +538 692 3 877107765 +10 511 4 877888877 +52 1011 4 882922588 +577 95 5 880474747 +597 328 4 875339132 +293 70 3 888907101 +474 848 4 887926998 +453 591 3 877552969 +458 596 4 886395350 +533 380 4 879438510 +373 734 3 877111313 +543 810 3 877547004 +278 752 5 891295164 +577 188 3 880474715 +54 288 4 880928957 +344 298 4 889814571 +417 746 5 879648048 +472 951 1 875983426 +56 820 3 892683303 +95 208 4 879198353 +531 457 1 887049341 +283 208 5 879298239 +6 174 4 883600985 +130 118 4 874953895 +578 294 3 888957453 +425 1434 4 890346317 +271 276 3 885847800 +59 529 4 888205145 +85 79 3 879453845 +488 521 3 891294942 +551 340 4 892775584 +497 25 4 879309780 +379 124 5 883156810 +533 496 5 879439061 +586 203 3 884059027 +506 581 2 874874850 +393 255 4 887744328 +420 116 4 891357162 +543 385 3 877545717 +554 98 5 876550491 +180 367 1 877127486 +536 679 4 882360495 +545 219 2 880348933 +83 274 4 880306810 +589 268 1 883352463 +152 549 4 882476261 +72 174 5 880037702 +390 1 5 879694066 +504 183 3 887832531 +534 240 5 877807873 +498 1131 3 881955866 +173 306 5 877556626 +222 102 2 878183043 +504 54 4 887909936 +96 182 4 884402791 +95 121 4 879194114 +368 774 4 889783562 +378 319 3 884530934 +48 98 5 879434954 +293 196 4 888906012 +467 455 3 879532744 +91 50 5 891439386 +393 1210 3 889731593 +601 324 4 876346383 +213 985 3 878955164 +162 208 3 877636746 +363 710 5 891495596 +504 68 5 887912665 +63 546 2 875747789 +548 477 1 891415786 +5 172 5 875636130 +535 423 5 879618613 +602 678 4 888638193 +391 963 5 877399746 +499 202 4 885598961 +497 808 2 879310941 +528 479 4 886101505 +158 694 5 880133209 +405 5 4 885545070 +472 746 5 875983023 +532 679 5 888629565 +311 754 3 884363758 +298 530 5 884182600 +575 506 2 878148087 +237 197 4 879376515 +237 489 4 879376381 +472 370 4 875979317 +504 585 2 887909864 +347 471 4 881652518 +394 597 2 881058201 +537 1008 2 886030078 +480 8 5 891208576 +380 7 3 885478334 +314 562 4 877890960 +548 760 3 891416049 +552 829 3 879222738 +378 727 4 880055454 +488 176 4 891293734 +38 590 1 892434373 +184 523 4 889909618 +416 433 4 886316226 +483 365 2 878953277 +70 231 3 884064862 +429 150 5 882385569 +232 186 4 888549790 +500 39 4 883875092 +175 12 4 877108146 +167 8 5 892738237 +543 216 4 874864666 +181 18 1 878962623 +201 47 4 884140610 +268 180 3 875309719 +521 826 2 884476920 +600 92 3 888451665 +590 221 4 879439645 +181 224 1 878962623 +169 243 3 891268851 +162 1 4 877635819 +18 236 3 880131077 +256 405 4 882151088 +592 433 5 882956761 +189 124 5 893264048 +261 243 5 890454351 +353 340 4 891401942 +470 288 4 879178216 +561 239 3 885809336 +538 69 5 877107340 +303 106 2 879543796 +327 232 4 887819538 +342 818 4 875318488 +405 1484 1 885547690 +224 423 4 888103581 +457 673 4 882397829 +389 79 4 879991461 +383 480 5 891193242 +452 874 2 887718965 +293 199 5 888905582 +577 15 3 880470350 +288 289 3 886372937 +385 1143 4 880828451 +416 980 4 886314987 +566 89 4 881650423 +22 229 2 878887925 +223 864 3 891550094 +432 1049 2 889415983 +524 213 4 884635136 +184 393 4 889909788 +450 1172 5 882373231 +76 1006 3 875027907 +294 546 4 877819761 +8 241 4 879362423 +452 243 5 886148336 +92 405 2 875644795 +409 427 5 881107251 +605 127 5 879366240 +566 242 5 881649273 +603 21 3 891956715 +76 60 4 875028007 +59 79 5 888204260 +514 659 3 875463245 +537 102 1 886032123 +125 176 5 879454448 +95 274 4 879193881 +15 879 3 879455311 +263 732 5 891299265 +92 284 2 876175733 +221 29 3 875245739 +152 117 4 880148782 +253 96 5 891628651 +264 1070 4 886123415 +214 174 4 892668249 +579 179 3 880952038 +548 619 3 891415786 +47 327 4 879440360 +523 211 4 883702292 +518 1028 3 876824266 +429 248 5 882386870 +92 577 3 875907649 +164 291 5 889401963 +370 174 3 879434587 +592 323 1 882607690 +400 286 4 885676230 +389 179 4 879991461 +495 201 2 888633594 +181 111 3 878962774 +92 80 2 875907504 +109 332 3 880562908 +537 205 5 886031297 +603 230 4 891955922 +468 603 5 875296309 +533 87 4 879191184 +577 186 4 880472153 +576 381 3 886986445 +525 1012 3 881086078 +286 339 5 884583549 +40 270 3 889041477 +89 66 3 879459980 +62 1018 3 879375606 +533 1028 2 879192769 +580 7 3 884124844 +197 354 2 891409199 +592 336 1 882607476 +476 211 5 883365019 +293 48 5 888905819 +561 513 3 885807345 +130 1244 4 876251192 +385 511 4 879441881 +545 520 4 884133794 +318 864 2 884495032 +510 358 1 887667780 +348 368 3 886523876 +468 19 4 875280126 +291 82 4 874835116 +62 97 2 879373795 +119 23 3 874782100 +332 1 4 887938245 +399 53 4 882345271 +387 532 3 886480970 +406 125 3 879539987 +561 64 3 885809605 +299 1507 3 877881170 +443 644 3 883505465 +163 301 3 891219977 +334 235 3 891545293 +453 3 4 877552717 +442 56 5 883388237 +174 843 2 886515551 +537 461 3 886031105 +221 230 3 875246506 +200 890 4 884127082 +265 293 4 875320661 +500 125 3 883865632 +279 41 2 875313646 +378 476 3 880044642 +314 721 5 877891465 +568 59 1 877906995 +416 678 2 876696788 +276 189 4 874977555 +449 179 4 880410674 +485 288 3 891041171 +57 710 3 883698324 +530 70 4 886198864 +416 1014 3 876697847 +561 616 3 885808929 +371 523 4 880435210 +81 405 3 876533764 +87 427 4 879877824 +190 272 5 891033606 +538 216 4 877364204 +1 197 5 875072956 +433 435 4 880585700 +151 147 2 879524947 +334 498 4 891545898 +297 919 1 874954260 +450 1401 4 882372103 +37 231 2 880916046 +437 116 3 880139997 +323 11 5 878739953 +496 480 3 876065289 +378 629 5 880056318 +5 414 3 875636691 +474 418 3 887928562 +94 1222 3 891723848 +528 393 2 886101695 +484 15 5 881449527 +90 462 5 891383752 +236 423 5 890116304 +425 576 3 878738813 +432 322 3 889416657 +268 1314 2 875744289 +342 535 3 874984727 +595 1264 2 887588203 +308 732 4 887738847 +222 375 1 878182880 +416 1540 4 893142245 +213 393 3 878955973 +588 207 2 890025076 +556 325 2 882135684 +363 32 2 891496667 +436 21 3 887772028 +561 1119 3 885810144 +29 879 3 882821161 +518 123 2 876823143 +322 48 4 887313946 +215 127 4 891435183 +286 40 4 877534824 +29 661 5 882821942 +59 477 3 888203415 +207 38 3 875509507 +301 121 4 882075148 +539 185 4 879788101 +303 1426 2 879484804 +449 15 4 879958866 +161 133 2 891171023 +244 1168 4 880608788 +552 118 3 879222520 +405 1031 1 885549045 +398 519 4 875723337 +210 956 3 887736900 +561 1024 3 885806883 +409 1593 4 881108971 +193 739 4 889126427 +489 1243 4 891445231 +198 356 3 884208455 +535 59 3 879618338 +95 78 3 888956901 +416 1160 4 876697760 +6 505 4 883602422 +334 485 3 891548224 +586 281 3 884062405 +92 474 4 875653519 +551 62 5 892784524 +320 458 4 884748868 +451 1394 1 879012858 +136 116 5 882693723 +468 692 4 875292027 +479 226 3 879461280 +287 313 4 888177170 +533 196 4 888844941 +346 578 2 874950463 +429 732 4 882385882 +3 342 4 889237174 +181 831 1 878963241 +429 62 3 882387350 +263 515 5 891298592 +82 432 4 878769373 +6 507 4 883601310 +393 553 3 887747108 +381 934 2 892697495 +487 183 5 883446637 +446 292 5 879786838 +499 318 5 885599286 +500 304 2 883864749 +568 954 2 877907671 +496 229 2 876070655 +548 222 5 891044596 +552 760 3 879222306 +447 1028 3 878855139 +190 273 4 891033676 +279 12 2 875306515 +83 1016 4 883868345 +49 419 4 888067691 +392 491 5 891039049 +239 504 4 889179544 +417 50 3 879646123 +119 825 3 874780860 +152 402 5 882829501 +392 1258 1 891038247 +116 288 3 886309812 +533 221 3 888844601 +528 657 5 886101505 +569 50 5 879793717 +524 898 4 884701702 +456 696 3 881372078 +222 580 3 878715168 +234 642 3 892334766 +498 50 4 881954821 +516 181 4 891290566 +82 326 2 879788343 +561 163 3 885808963 +561 154 4 885807612 +275 431 3 880314969 +592 324 4 882607387 +221 544 4 875244512 +95 640 3 880571746 +2 293 4 888550939 +1 173 5 878541803 +94 399 4 891722802 +503 416 2 880472250 +181 270 4 878961270 +311 1119 4 884366703 +506 772 1 874873247 +441 117 4 891035489 +505 7 3 889334129 +606 123 3 878143605 +321 382 3 879440245 +592 202 5 882956803 +320 546 4 884748818 +437 732 4 880143167 +472 790 3 875981968 +562 114 1 879195156 +501 237 4 883348011 +597 824 3 875342875 +207 609 4 877879173 +330 216 5 876546470 +82 430 5 878769703 +49 262 5 888065620 +385 657 4 879442109 +405 94 5 885547408 +497 1419 2 879362638 +316 707 4 880853485 +214 608 4 891544114 +474 380 4 887927588 +207 239 3 876079016 +200 527 4 884129656 +321 132 5 879440342 +535 209 5 879617819 +195 1415 1 874825827 +351 323 5 883356710 +417 758 2 879649247 +561 671 3 885808673 +263 132 5 891298392 +267 62 3 878973597 +600 229 3 888451840 +543 86 4 876896210 +600 1110 3 888452564 +488 511 4 891294209 +523 707 5 883701093 +411 38 4 891035405 +201 923 3 884113592 +456 508 4 881371427 +339 527 4 891032793 +551 1267 4 892783906 +457 174 5 882397267 +414 346 5 884999037 +290 97 3 880475016 +533 202 4 879191938 +399 155 2 882348773 +406 573 3 880132319 +524 76 4 884636182 +399 395 3 882350733 +62 959 4 879375269 +13 433 4 881515239 +108 294 4 879879662 +303 715 4 879484441 +274 125 4 878945711 +421 674 5 892241687 +505 176 4 889333340 +517 269 3 892659922 +128 471 4 879967804 +452 660 4 875560068 +42 501 5 881108345 +524 642 4 884636182 +63 591 3 875747581 +537 770 3 886031913 +413 508 4 879969484 +509 879 1 883590913 +223 333 4 891548675 +454 968 2 888267198 +559 204 3 891035708 +600 127 5 888451492 +222 95 4 878182453 +490 237 1 875427993 +437 11 1 880139951 +500 1008 4 883865786 +381 529 5 892696060 +562 191 5 879196176 +13 7 2 882396790 +291 568 4 874835141 +222 365 4 878184765 +47 269 4 879438984 +122 11 1 879270424 +467 93 4 879532595 +47 258 4 879438984 +357 472 3 878952166 +524 178 3 884634968 +566 154 3 881651151 +151 847 5 879528459 +85 458 3 879452867 +309 304 3 877370319 +422 201 4 879744014 +493 172 5 884131597 +65 735 4 879216769 +7 215 4 891351624 +403 284 1 879790389 +577 393 4 880475363 +487 99 4 883530434 +523 652 2 883703495 +514 750 4 885180627 +107 286 2 891264266 +579 1074 3 880952579 +416 275 5 893212484 +561 458 4 885809197 +299 302 4 889501087 +194 659 4 879520743 +89 100 5 879441271 +575 181 2 878148295 +439 237 5 882893220 +429 225 2 882387599 +533 222 5 884007368 +573 427 4 885844091 +299 298 4 877878227 +474 923 4 887926632 +458 127 5 886396390 +269 200 4 891449984 +577 38 2 880475453 +256 808 4 882164559 +591 1099 5 891031203 +497 395 4 879363284 +7 572 3 891354331 +592 1623 4 882955794 +505 199 4 889333442 +251 405 3 886272547 +521 33 4 885254133 +485 313 4 891040423 +554 69 5 876232682 +405 1576 1 885549464 +318 892 3 884470391 +181 547 1 878962720 +331 238 4 877196383 +243 86 5 879989217 +435 697 4 884133372 +13 792 5 882139686 +537 11 3 886030937 +559 514 4 891035633 +1 75 4 878543238 +583 663 4 879384338 +568 185 4 877907834 +393 739 3 887746671 +544 332 3 884795437 +293 50 5 888905519 +495 550 3 888635235 +538 117 3 877107492 +405 1437 1 885547557 +63 282 1 875747657 +524 646 5 884637347 +141 293 2 884584735 +454 836 2 888266785 +407 525 4 875046427 +505 614 3 889334162 +543 190 5 875665787 +592 1315 2 882609056 +125 340 1 892835659 +514 367 5 875318164 +498 340 2 881954618 +537 95 1 886030891 +342 193 5 875320199 +503 1194 5 879438072 +392 288 4 891037531 +551 343 4 892775869 +487 779 2 884050879 +276 44 3 874795637 +57 826 2 883697990 +305 199 4 886323779 +389 763 1 879916203 +401 356 4 891033122 +449 244 4 879959152 +537 648 4 886031505 +389 40 3 880088825 +535 1396 4 879618058 +514 392 4 875463351 +264 1009 4 886124417 +16 427 5 877722001 +330 177 4 876546267 +354 956 4 891218271 +532 403 4 892865321 +264 656 4 886122099 +276 627 3 874792907 +68 25 4 876974176 +18 66 3 880131728 +582 250 3 882961000 +198 117 1 884205114 +309 1296 2 877370319 +250 325 4 883262927 +184 51 4 889909069 +158 744 4 880132462 +374 118 5 880393864 +216 408 3 880232547 +592 742 4 882608357 +518 236 3 876823597 +286 1288 4 876522114 +159 1049 4 880485972 +308 92 4 887737293 +536 199 3 882359499 +12 216 5 879960826 +174 662 5 886513752 +247 222 3 893081411 +493 191 4 884132225 +592 988 1 882607745 +518 222 5 876823597 +575 507 2 878148137 +351 301 3 879481424 +222 576 3 881060305 +198 143 3 884208951 +116 302 3 876451911 +151 492 3 879524738 +586 219 3 884060705 +495 465 5 888635180 +435 23 4 884132942 +523 514 4 883702172 +558 508 5 879436396 +525 685 4 881086295 +416 313 5 893214226 +397 273 4 889760803 +471 151 2 889828154 +21 243 2 874951039 +227 221 4 879035535 +529 269 3 882534996 +301 193 3 882075994 +85 510 4 879454400 +314 67 4 877891386 +13 791 5 882141686 +409 174 4 881108881 +405 739 2 885549309 +554 228 5 876550011 +476 288 4 883365734 +421 234 5 892241646 +197 172 5 891409839 +255 147 4 883216845 +190 591 4 891033863 +389 700 2 881384441 +268 658 3 875310524 +363 1 2 891494563 +109 597 2 880571715 +537 1105 1 886029153 +334 175 4 891546257 +508 173 4 883767140 +97 408 5 884238652 +593 211 4 875671198 +292 748 3 877718776 +42 402 5 881108982 +319 750 3 889816107 +603 174 3 891956927 +577 720 4 880475043 +559 294 1 891035519 +59 1101 5 888205265 +94 670 3 891722249 +608 1172 5 880404636 +46 50 4 883616254 +118 98 5 875384979 +423 628 4 891395602 +437 254 3 881002300 +592 288 5 882607528 +226 191 4 883889229 +102 127 2 888801316 +330 739 5 876545368 +318 255 4 884494693 +344 275 4 884899397 +451 1026 1 879012773 +280 156 4 891700643 +254 151 2 886474396 +537 13 4 886029806 +328 127 5 885045645 +204 170 5 892513865 +506 33 3 874873703 +552 471 3 879222306 +437 566 3 881002161 +456 179 5 881372779 +5 70 4 875636389 +480 237 2 891207836 +508 151 5 883768886 +400 306 3 885676230 +16 208 5 877727054 +579 168 4 880952142 +555 1054 3 879964335 +378 692 4 880045580 +450 354 4 892141784 +145 563 3 877343280 +542 238 4 886532706 +285 346 4 890595456 +523 208 5 883702209 +378 517 3 880056384 +405 586 4 885548136 +291 325 4 874805610 +474 283 3 887915437 +399 264 3 882340517 +514 1035 3 875463595 +523 269 5 883699464 +391 480 4 877398991 +276 572 3 874795823 +552 742 4 879222103 +7 237 5 891351772 +344 88 3 884901403 +92 1208 4 875812741 +519 908 5 883250148 +447 470 4 878856208 +523 285 5 883701962 +535 4 3 879618777 +378 1009 3 880318415 +200 568 5 884128372 +474 178 4 887926105 +394 449 3 881132958 +417 1183 4 879648676 +378 635 2 880333802 +409 877 2 881105366 +20 357 1 879669244 +161 473 1 891172358 +449 473 3 879958866 +407 483 4 875042642 +315 183 3 879821267 +201 181 2 884112245 +7 213 3 891351686 +354 1511 4 891216575 +472 567 4 875982922 +601 1073 2 876350230 +226 97 3 883889355 +293 248 3 888904985 +405 200 2 885548330 +316 187 2 880853548 +402 476 3 876266985 +457 234 5 882548426 +320 17 5 884751190 +472 477 5 875978387 +416 564 4 892440782 +429 218 3 882387350 +343 200 2 876404539 +237 180 4 879376730 +538 56 4 877107408 +577 218 3 880475269 +201 667 2 884114682 +33 348 4 891964404 +314 66 5 877887763 +554 542 3 876369995 +456 959 4 881375127 +244 468 1 880606947 +541 143 4 883874645 +555 546 3 879962551 +500 699 3 883875523 +379 622 5 880525839 +450 54 4 887138820 +13 441 1 882396984 +537 285 4 886029806 +256 147 4 882152540 +60 629 3 883327175 +215 228 5 891436543 +243 732 4 879988557 +21 874 2 874951005 +501 129 4 883348036 +292 98 5 881103758 +479 266 3 879459791 +601 181 5 876347039 +321 513 4 879440294 +385 851 5 880870205 +456 194 3 881373472 +83 477 2 887665798 +387 23 2 886479528 +425 178 3 878737841 +485 321 3 891041275 +607 487 4 883879213 +429 283 3 882385136 +29 79 4 882821989 +551 241 4 892783057 +432 100 3 889415895 +354 650 3 891217693 +384 333 4 891273509 +76 628 2 882606768 +569 151 5 879793948 +89 880 5 879461219 +214 156 5 892668172 +524 210 3 884635287 +407 993 4 884203128 +533 462 2 879190926 +560 478 4 879975752 +318 85 3 884497180 +484 143 4 891195746 +606 418 5 880923745 +449 1372 4 880410834 +588 432 4 890027113 +404 22 5 883790911 +397 171 5 882839540 +395 273 2 886481149 +580 148 4 884125773 +548 298 4 891043882 +123 289 1 879809220 +144 316 5 888103666 +13 914 2 892870589 +514 42 5 875318331 +99 405 4 885678813 +329 7 3 891655961 +586 187 4 884058566 +592 1134 5 882608234 +561 65 3 885808673 +495 88 4 888635380 +213 127 5 878870790 +498 59 4 881961312 +406 381 3 879793261 +160 185 5 876861185 +85 664 4 879829562 +524 172 3 884634849 +265 688 2 875320084 +495 84 3 888633011 +311 72 4 884365686 +487 367 3 883530674 +524 289 4 884321591 +201 665 2 884114770 +70 450 1 884064269 +130 449 4 878537516 +493 687 1 884130055 +479 195 4 879460939 +354 1119 4 891307114 +601 834 1 876348381 +136 275 4 882693723 +383 315 5 891192158 +494 9 2 879541404 +218 1073 5 881288265 +62 290 3 879373007 +303 470 4 879468375 +230 280 4 880485254 +248 69 1 884534695 +466 898 1 890283667 +404 754 3 883790218 +589 288 5 883352536 +272 183 4 879454726 +336 88 2 877757910 +233 194 4 877663913 +525 276 5 881086468 +455 265 4 879112152 +533 25 4 884096575 +6 516 4 883602664 +479 257 4 879459955 +453 509 4 877553850 +577 110 4 880475581 +470 813 3 879178370 +120 237 3 889490172 +428 329 3 892572335 +154 651 4 879138783 +437 70 3 881002161 +92 823 4 875654846 +506 792 2 874876598 +452 187 3 875265265 +299 209 3 889503013 +603 173 4 891956877 +151 211 5 879528588 +444 271 3 891979403 +221 763 4 875244232 +532 302 5 875441085 +352 17 2 884289728 +482 311 4 887643340 +313 820 2 891030228 +6 13 2 883599400 +392 248 4 891038205 +311 294 4 884364047 +155 332 2 879371121 +293 357 4 888905760 +568 1050 4 877907835 +392 173 4 891039050 +455 4 3 879111786 +293 483 5 888905481 +585 113 3 891283681 +436 287 4 887770169 +589 340 1 883352494 +276 239 4 874791194 +608 490 4 880405824 +338 650 5 879438275 +194 402 3 879524008 +327 100 4 887744513 +405 1078 1 885549004 +484 252 3 880270616 +453 367 2 888202813 +381 693 4 892697280 +577 1291 3 880471954 +605 527 4 879424429 +257 166 4 880496522 +399 928 2 882341586 +237 659 4 879376553 +283 820 4 879297904 +497 809 3 879362609 +551 991 2 892775935 +361 237 4 879440740 +147 319 4 885593812 +303 423 4 879483535 +130 5 4 876251650 +403 1047 2 879786381 +532 117 5 893119335 +293 356 3 888907955 +495 50 5 888632134 +474 615 4 887924619 +201 514 3 884112747 +486 696 3 879875041 +116 328 3 876452186 +119 823 3 874775406 +109 55 2 880572756 +472 924 2 875978994 +561 1074 3 885810813 +507 302 5 889963959 +326 609 3 879875930 +62 170 3 879373848 +592 1009 3 882608662 +104 273 3 888465972 +195 678 3 883295570 +479 535 3 887064690 +460 293 4 882911603 +526 754 2 885681886 +548 323 4 891043547 +518 1079 1 876824266 +216 403 3 880244446 +314 294 5 877885887 +528 82 4 886101632 +379 729 4 880961621 +194 183 3 879520916 +303 535 1 879544681 +312 165 5 891698726 +588 227 3 890028385 +603 11 5 891956927 +317 355 4 891446783 +13 494 4 881515295 +347 99 3 881654591 +303 413 2 879543524 +185 9 4 883524396 +405 364 1 885547766 +1 268 5 875692927 +168 685 3 884287759 +254 21 3 886474518 +537 60 3 886031297 +175 508 1 877107712 +370 923 4 879435074 +567 318 2 882425901 +422 742 2 875130204 +121 937 4 891389924 +579 89 3 880952102 +327 23 4 887745463 +207 684 3 875509307 +481 367 3 885829153 +116 655 4 886309958 +151 512 5 879524712 +373 181 5 877099178 +537 772 3 886031297 +214 249 3 891543256 +554 67 3 876369932 +361 258 3 879440286 +484 625 4 891195825 +360 100 5 880354379 +542 288 2 886532149 +470 137 3 879178406 +405 391 1 885548137 +199 7 4 883782854 +350 136 5 882347699 +279 554 1 875314231 +606 15 5 878143729 +553 199 4 879949153 +459 15 4 879563102 +7 590 2 891354730 +449 1404 5 880410801 +410 258 2 888626538 +585 463 5 891284816 +87 510 5 879875818 +589 289 3 883352679 +437 778 3 881002092 +280 313 3 891699839 +374 832 1 882157930 +35 328 3 875459046 +495 282 5 888637768 +13 833 2 882397974 +262 125 3 879961882 +304 278 4 884968415 +115 98 3 881171409 +128 25 3 879968185 +440 171 5 891577871 +478 41 3 889396330 +581 919 5 879643155 +437 95 4 880143315 +514 58 4 875462689 +547 311 2 891282699 +442 226 3 883390416 +95 1221 4 880572448 +378 300 4 889665232 +569 248 4 879793741 +442 810 2 883390674 +429 143 3 882385829 +588 71 4 890024195 +303 100 5 879466420 +514 170 3 875462764 +545 68 4 879899266 +561 1120 4 885807318 +74 7 4 888333458 +496 7 4 876064168 +350 258 3 882347465 +167 1225 3 892738277 +468 357 5 875294549 +554 82 4 876550257 +376 707 4 879434750 +519 299 5 884545961 +59 147 5 888203270 +600 1228 2 888452490 +592 408 5 882607955 +376 11 4 879454598 +484 135 4 891194820 +437 651 4 881002345 +457 507 4 882397059 +3 303 3 889236983 +269 151 5 891450489 +429 274 3 882386096 +43 686 3 883955884 +529 984 4 882535353 +535 603 4 879617613 +593 210 2 875673181 +59 650 5 888205534 +417 999 3 880952434 +539 367 3 879787801 +405 376 5 885547690 +325 114 5 891478307 +286 535 5 875806918 +1 34 2 878542869 +164 326 3 889401362 +455 447 4 879111153 +527 709 5 879455961 +537 937 3 886029488 +62 53 2 879376270 +313 739 3 891031747 +561 318 3 885807345 +27 118 3 891543222 +13 706 1 882396869 +270 583 5 876956038 +504 623 3 887910433 +406 452 2 879793011 +270 739 4 876955729 +193 1168 4 890860234 +94 132 4 891720862 +374 696 3 880394233 +204 318 5 892513819 +601 419 4 876351263 +292 528 5 881105657 +435 164 2 884132515 +606 241 3 880926246 +566 651 4 881650242 +235 175 4 889654971 +164 934 5 889402547 +121 582 2 891390034 +468 428 4 875291403 +437 1161 4 880141770 +493 115 4 884131665 +118 603 4 875384916 +280 126 3 891700643 +374 393 4 880395973 +524 474 4 884634578 +8 341 2 879361825 +587 347 3 892871223 +405 786 1 885547644 +68 275 5 876973969 +380 664 3 885479415 +297 55 4 875238922 +437 730 3 880141374 +509 687 1 883591489 +119 1166 5 887038711 +355 260 4 879485760 +249 1011 5 879640284 +553 265 5 879948508 +249 462 5 879572725 +537 352 1 886028544 +263 511 5 891299324 +536 163 5 882360080 +370 678 4 879435369 +372 79 5 876869667 +470 285 3 879178619 +28 760 3 882826399 +184 182 4 889908497 +158 181 3 880132383 +505 265 4 889333598 +152 1053 5 882475618 +382 507 4 875946809 +432 121 4 889416312 +345 747 3 884993139 +447 89 5 878855723 +454 195 4 888266810 +138 56 5 879024232 +363 590 3 891500527 +385 50 1 879440127 +522 79 3 876960824 +100 310 3 891375522 +383 517 5 891192748 +437 47 4 880140534 +109 628 2 880564640 +488 203 4 891295023 +593 5 4 875671525 +588 1047 3 890031141 +387 79 4 886483049 +58 269 4 884304267 +405 515 1 885546025 +181 1372 1 878962279 +606 186 5 880925290 +566 235 3 881650534 +416 1226 3 893013826 +69 50 5 882072748 +328 405 4 885047018 +222 642 3 878181421 +313 183 5 891013554 +608 1115 4 880406168 +119 537 5 886176618 +484 248 4 883973581 +434 347 1 886724329 +500 147 3 887720583 +551 1518 4 892785363 +358 324 4 891269077 +13 879 2 881515697 +548 649 4 891044538 +59 220 2 888203175 +198 55 3 884207525 +234 497 4 892334481 +497 452 2 879362202 +521 743 1 886061689 +136 303 4 882693234 +320 257 4 884749499 +595 1067 4 886922069 +385 208 3 879442360 +592 455 4 882608402 +361 98 5 879441215 +90 488 5 891384065 +453 318 4 877553761 +450 558 3 882396050 +334 1525 4 893074672 +21 925 2 874951447 +498 61 4 881957431 +312 166 5 891698391 +249 405 3 879640284 +568 475 4 877907782 +435 826 2 884134713 +96 486 3 884403392 +508 180 5 883767565 +588 144 3 890024564 +87 204 5 879876447 +566 7 4 881649747 +176 222 5 886048145 +18 95 4 880131297 +297 213 3 875240171 +181 104 1 878962866 +497 679 3 879310850 +523 289 4 883699869 +454 277 2 881959960 +561 42 3 885809025 +573 211 5 885843964 +514 210 5 876067462 +354 93 4 891216805 +395 343 5 883762614 +422 760 3 879744287 +533 286 4 879193088 +504 257 5 887831753 +607 529 4 883880027 +488 222 4 891376029 +381 1119 4 892696252 +462 321 5 886365734 +560 25 3 879976706 +77 175 4 884733655 +588 40 4 890026154 +429 365 2 882386237 +197 2 3 891409981 +608 661 3 880405927 +144 647 4 888105338 +454 419 4 881959917 +62 196 4 879374015 +201 483 3 884111546 +217 779 1 889070266 +221 273 5 875244183 +60 185 4 883326682 +543 194 3 874864870 +201 699 3 884140610 +498 525 4 881961547 +193 905 4 889123458 +498 1286 3 881956576 +184 1117 2 889907771 +507 405 5 889966127 +605 531 4 879424583 +321 654 4 879439927 +325 115 3 891478557 +194 655 5 879520813 +601 699 3 876350812 +503 156 1 880472250 +344 844 1 886381985 +72 476 4 880036048 +554 9 4 876231468 +552 864 3 879221876 +537 1009 2 886030254 +181 93 1 878962773 +445 174 4 891200869 +198 216 4 884208490 +393 186 3 887746734 +49 403 3 888069636 +269 111 1 891446703 +60 528 4 883326086 +248 50 5 884535013 +610 315 4 888702764 +327 117 3 887820385 +297 268 4 881707737 +293 294 2 888904410 +284 750 3 885328906 +393 821 3 889554756 +416 199 5 893214225 +75 1059 1 884050760 +399 50 3 882343040 +59 44 4 888206048 +21 984 1 874951040 +455 58 3 879111318 +230 447 1 880485513 +455 1136 3 879111705 +332 405 4 887938503 +144 1101 4 888105312 +450 241 4 882376658 +501 117 4 883347975 +276 1028 3 874787044 +488 523 3 891293699 +194 720 2 879553883 +566 755 2 881651561 +343 334 5 876402468 +399 1178 3 882350341 +417 815 4 879646741 +607 107 4 883879756 +488 8 3 891295067 +293 198 4 888906143 +321 657 4 879440660 +222 559 3 878184291 +611 300 5 891636244 +588 783 4 890027297 +270 244 3 876954004 +363 698 2 891495987 +545 231 4 879899472 +493 176 5 884132197 +7 80 4 891354381 +130 403 5 876251922 +364 261 2 875931432 +141 147 4 884584906 +405 132 5 885544698 +119 132 5 874782228 +222 1074 3 881060504 +528 50 5 886101695 +281 294 3 881200643 +218 183 5 881288265 +504 1110 2 887911583 +502 333 4 883701866 +253 125 3 891628033 +49 98 4 888067307 +543 53 3 877547190 +455 939 4 879111454 +594 744 3 874783298 +488 22 4 891294108 +7 51 2 891352984 +566 77 4 881651183 +416 203 3 886316596 +551 193 5 892777363 +421 96 4 892241343 +270 164 5 876956137 +23 161 2 874787017 +313 720 2 891028472 +556 132 5 882136396 +222 392 4 881059920 +342 478 3 875319967 +346 325 1 886273717 +243 694 4 879988262 +469 495 5 879525237 +506 250 2 880198224 +617 637 3 883789507 +388 569 5 886441248 +352 228 3 884289729 +440 582 3 891577919 +104 456 3 888465853 +6 310 2 883268353 +82 820 3 878768902 +445 310 1 891199331 +483 275 4 878951388 +483 12 2 878953999 +23 472 2 874784972 +293 1311 3 888907603 +297 288 3 874955131 +526 886 3 885682077 +417 472 2 879646369 +518 151 3 876823018 +553 89 5 879948386 +330 126 5 876544480 +521 1022 4 884475591 +58 474 4 884305087 +374 1051 4 880394138 +416 121 5 893213645 +506 611 5 874874525 +37 546 3 880915565 +532 404 5 893119336 +533 568 5 879438849 +13 193 5 882139937 +273 340 3 891292761 +484 451 4 891195127 +455 1 4 878585685 +144 135 5 888105364 +90 684 3 891385335 +330 866 5 876544998 +221 96 5 875245672 +500 517 4 883873839 +606 147 5 880922503 +238 286 5 883575683 +110 873 2 886987505 +18 157 3 880131849 +543 129 4 874862036 +332 470 5 887939157 +72 2 3 880037376 +234 321 2 891033393 +269 162 3 891448141 +503 248 4 884638469 +382 50 1 875945451 +405 1249 1 885547408 +476 186 5 883365019 +460 221 4 882912285 +269 660 1 891448220 +592 1187 4 882608358 +593 655 3 886193724 +559 435 2 891035781 +161 483 3 891171214 +506 193 4 874873944 +490 273 1 875427629 +188 281 3 875074772 +51 203 4 883498685 +592 201 5 882955794 +437 582 5 880140855 +293 233 2 888907266 +254 417 3 886473408 +567 606 4 882425630 +537 231 3 886032246 +393 951 3 889728531 +515 271 4 887658844 +222 28 5 878182370 +535 172 3 879617747 +504 38 4 887840134 +583 209 4 879384404 +542 63 3 886533090 +449 118 1 879959573 +518 595 3 876824266 +234 268 2 891033261 +557 343 4 881095995 +233 623 3 876374602 +545 680 2 879898486 +118 413 4 875385306 +565 640 4 891037837 +531 332 4 887048813 +582 750 5 882960418 +20 151 3 879668555 +299 1223 3 878191779 +405 562 1 885548137 +188 177 4 875073329 +417 669 2 880953014 +184 121 2 889908026 +608 150 3 880406299 +459 473 4 879563102 +376 268 3 879432976 +296 251 5 884196523 +527 22 5 879456132 +312 505 5 891698987 +551 755 4 892784008 +428 305 3 885944136 +36 873 3 882157386 +594 222 4 874783052 +437 736 5 881001888 +551 127 5 892776420 +405 215 5 885545263 +82 230 2 878769815 +507 310 4 889964162 +618 204 3 891307098 +207 712 4 877847025 +68 121 1 876974176 +353 332 5 891402757 +325 269 4 891477567 +532 266 4 875441640 +393 578 4 889728413 +521 250 3 884476020 +346 549 4 874950966 +11 719 3 891905279 +421 185 4 892241422 +586 1407 3 884063080 +537 201 3 886031831 +562 720 4 879196483 +394 1 4 880886855 +614 126 4 879464183 +52 762 3 882922806 +178 535 3 882824671 +381 95 4 892696534 +331 286 4 877196089 +429 679 4 882387653 +276 1170 4 877934392 +151 50 5 879525034 +493 150 5 884130495 +327 527 4 887745319 +151 499 5 879524585 +213 284 5 878955164 +63 828 1 875747936 +313 153 3 891015268 +504 499 4 887909595 +349 325 3 879465326 +577 380 3 880474991 +499 177 3 885599660 +416 50 5 893212730 +595 1134 5 886921392 +85 485 5 879454400 +586 174 4 884058898 +609 538 1 886895795 +378 161 4 880056034 +274 877 3 878944543 +263 1020 3 891298337 +389 181 4 879915806 +90 464 5 891385039 +497 1092 3 879363233 +264 88 3 886123728 +455 170 3 879111616 +110 2 3 886988536 +600 227 4 888451977 +618 100 4 891308063 +164 342 2 889401691 +532 750 5 884594358 +493 1126 2 884131517 +336 288 3 877760521 +334 324 4 891628832 +615 735 3 879448823 +193 199 5 889125535 +606 473 4 878149415 +550 254 1 883426119 +181 126 2 878962585 +328 180 4 885046134 +344 14 5 884814532 +457 186 5 882397575 +399 63 3 882348615 +610 11 4 888703432 +618 781 3 891309382 +239 489 5 889178833 +373 756 3 877106900 +592 184 5 882956419 +597 300 5 875338983 +587 261 3 892871438 +468 257 4 875280417 +508 211 3 883777047 +615 517 5 879449068 +303 56 5 879466547 +436 553 3 887769777 +339 521 4 891032737 +533 229 4 879191621 +250 153 2 878090066 +405 63 3 885547408 +95 71 5 880573288 +454 270 4 881958606 +411 732 4 892845634 +524 978 3 884628212 +26 222 3 891371369 +361 657 5 879441253 +437 151 5 881002374 +527 1333 3 879456104 +551 43 2 892784976 +600 554 4 888451977 +334 98 4 891545793 +283 393 4 879298295 +151 81 5 879524293 +566 727 4 881650850 +77 455 3 884732873 +403 748 5 879786406 +535 338 3 879617098 +518 546 4 876823447 +425 272 4 890346317 +577 443 4 880475269 +316 651 5 880854227 +158 252 3 880132893 +409 98 5 881107817 +618 185 5 891308260 +537 179 4 886031105 +246 219 5 884922801 +496 228 1 876065588 +599 282 5 880951657 +381 217 2 892696757 +455 288 2 879110767 +99 456 3 885679504 +314 202 5 877888610 +573 478 4 885844674 +59 393 2 888205714 +617 7 3 883789425 +568 525 3 877907720 +616 269 4 891224517 +608 65 5 880406469 +468 826 3 875284096 +399 338 1 882509709 +537 405 2 886030381 +95 539 4 884266022 +452 455 1 876297413 +95 586 2 881599672 +551 423 1 892782975 +44 871 3 883613005 +92 980 3 883433686 +198 161 3 884208454 +264 182 5 886122098 +603 172 5 891956139 +409 172 5 881107750 +227 1047 2 879035834 +618 367 3 891309319 +535 505 4 879618569 +489 264 4 891445721 +128 202 2 879968579 +615 170 4 879447895 +218 39 2 881288265 +470 847 3 879178568 +237 525 4 879376487 +593 172 4 886193379 +189 492 3 893265535 +437 1148 4 881001983 +178 1033 2 882824869 +374 642 1 880937920 +608 1153 3 880406623 +151 488 4 879524900 +23 185 4 874785756 +560 288 4 879975116 +566 196 4 881650405 +273 272 4 891292811 +416 498 4 876699287 +318 527 5 884496596 +374 1094 4 882158020 +566 485 3 881650242 +200 552 4 884130540 +454 191 4 888266724 +207 742 4 876018580 +200 756 3 876042493 +554 845 3 876231993 +254 204 4 886472434 +422 124 3 875129839 +163 269 3 891219977 +498 548 2 881957267 +57 546 4 883697482 +363 185 5 891495338 +524 712 4 884637147 +271 194 5 885848770 +536 49 3 882360753 +599 873 5 880951174 +589 995 1 883352562 +13 900 5 888279677 +164 742 5 889401981 +378 22 5 880045520 +583 265 4 879384522 +256 5 5 882164727 +145 816 5 877343156 +382 511 4 875946730 +551 692 4 892777092 +573 69 4 885844091 +277 111 4 879543487 +346 1025 3 886273570 +387 228 5 886484336 +280 751 3 891699925 +234 488 4 892078386 +365 100 5 891303901 +620 71 5 889988005 +280 1473 3 891700904 +591 191 5 891031116 +368 11 4 889783678 +524 192 4 884634877 +372 628 4 876869915 +506 86 3 874876551 +224 221 2 888103812 +13 565 1 882397040 +339 185 4 891032885 +334 288 3 891544209 +554 411 3 876231886 +221 566 3 875246308 +120 1 4 889490412 +593 1035 3 875671464 +618 93 3 891307019 +486 1134 3 879875040 +535 97 4 879618880 +614 287 3 879464456 +566 82 4 881650709 +3 329 4 889237455 +537 239 2 886031933 +196 382 4 881251843 +335 307 5 891566952 +589 327 3 883352535 +157 410 4 886890855 +21 443 4 874951761 +577 40 4 880475435 +586 928 3 884065665 +474 192 4 887924571 +487 462 2 883445859 +497 431 4 879310825 +537 606 3 886030938 +610 751 4 888702795 +487 402 4 883531507 +114 197 4 881260506 +508 506 5 883777430 +569 287 4 879795551 +197 11 1 891409893 +479 261 1 879533993 +456 325 3 881372687 +542 382 3 886532726 +506 342 3 888848304 +25 568 4 885852529 +399 64 3 882342313 +514 715 4 876067592 +499 1302 5 885598378 +330 31 5 876546812 +464 260 2 878354859 +393 926 4 887745200 +158 450 3 880134815 +484 665 4 891195602 +383 285 5 891193210 +292 492 4 881105318 +445 603 3 890988205 +323 619 3 878739519 +585 1512 5 891283000 +280 1112 4 891702324 +450 1402 2 882473230 +293 506 5 888906428 +253 81 4 891628614 +535 1166 4 879617779 +450 207 4 882374497 +523 794 4 883703144 +193 313 4 889122950 +385 492 2 879445531 +568 491 2 877907126 +94 160 4 891721942 +479 153 4 879462140 +145 934 1 875270394 +592 806 4 882956586 +611 350 4 891636399 +558 19 5 879436396 +347 97 4 881654101 +416 161 4 886316739 +178 313 5 884836422 +488 187 3 891293863 +435 831 2 884134677 +430 514 4 877226568 +551 944 2 892784320 +281 331 3 881200491 +115 847 4 881170844 +362 350 5 885019537 +373 175 3 877099352 +452 624 2 875560067 +201 458 4 884140428 +128 651 5 879966983 +399 977 3 882341607 +450 550 4 882473915 +3 317 2 889237482 +94 597 2 891723078 +600 2 3 888451908 +178 1314 3 882827134 +283 56 5 879298206 +363 559 3 891496927 +566 88 3 881650090 +87 80 4 879877241 +488 880 3 891293606 +588 260 2 890014930 +334 272 4 891544103 +60 602 4 883326958 +332 227 5 888360371 +416 375 1 886319930 +288 688 1 886373007 +72 405 3 880036346 +437 183 3 880140892 +35 258 2 875458941 +592 255 4 882608915 +200 1091 4 884129814 +385 1131 3 879445587 +145 1087 1 875271357 +497 1210 4 879362178 +444 313 4 890246940 +532 592 3 874791850 +504 97 4 887832760 +13 177 5 882397271 +363 226 1 891497015 +583 12 5 879384522 +190 685 3 891033725 +503 121 3 879438707 +114 485 3 881260409 +571 496 3 883354886 +559 4 4 891035876 +43 250 2 875975383 +472 218 4 875980120 +406 693 3 884630583 +486 284 2 879874784 +252 475 5 891456876 +195 877 3 887567629 +7 679 5 891353124 +325 190 4 891478432 +450 637 4 882395662 +291 123 4 874806006 +618 182 4 891307289 +286 336 5 884069544 +567 517 5 882426673 +385 238 5 879442085 +452 531 4 875263244 +4 329 5 892002352 +551 955 3 892783411 +64 190 4 889737851 +527 474 3 879455792 +530 483 3 883785248 +121 546 1 891390521 +301 82 5 882077078 +536 234 4 882360405 +553 485 3 879948695 +568 474 5 877907834 +425 357 5 878737981 +318 301 4 884470034 +357 24 4 878951457 +514 380 4 875462965 +463 112 1 890530721 +190 276 4 891033632 +618 28 4 891309887 +406 13 2 879539987 +537 558 4 886030584 +332 841 4 887938669 +388 266 5 886439918 +550 846 2 883426119 +503 498 5 880383588 +379 204 5 880525236 +2 294 1 888551648 +562 480 4 879195126 +608 9 4 880403765 +261 288 4 890454087 +580 358 4 884124472 +541 625 4 883874717 +619 245 4 885953743 +371 527 5 877487309 +425 1419 3 878738757 +130 452 4 880396495 +186 880 3 891718700 +429 833 3 882386895 +330 651 5 876547311 +498 649 3 881961745 +351 689 4 879481386 +328 155 4 885048198 +432 678 4 889416570 +452 654 2 875273543 +328 149 2 885048730 +484 151 4 881450017 +227 250 2 879035637 +278 288 5 891295230 +579 98 4 880951804 +272 604 4 879455113 +500 196 4 883874835 +417 674 2 879649560 +130 1079 3 876251217 +453 655 3 877553999 +520 678 2 885170330 +617 860 1 883789635 +206 300 1 888179565 +303 334 3 879466184 +125 191 5 879454385 +435 132 3 884131156 +509 258 4 883590526 +429 58 4 882385090 +239 150 5 889179131 +435 168 5 884131515 +457 411 3 882395894 +472 204 5 875980823 +393 476 3 887744688 +59 58 4 888204389 +500 235 5 883865567 +407 559 3 875553424 +537 210 3 886031912 +506 404 5 878044851 +554 742 3 876231546 +465 134 4 883530133 +56 323 3 892676028 +557 254 4 880485908 +210 423 5 887737338 +527 514 5 879455961 +1 144 4 875073180 +561 640 5 885809005 +461 121 2 885355890 +452 8 4 875266060 +474 221 4 888628044 +532 895 3 884594450 +536 724 4 882359988 +284 268 5 885329065 +268 506 4 875310625 +614 25 1 879464376 +13 442 1 890705056 +416 937 2 876696823 +592 847 5 882607986 +232 419 4 888550013 +13 845 3 882141503 +505 332 4 888631126 +580 300 3 884124103 +363 575 1 891498681 +217 210 4 889069709 +97 153 5 884239686 +1 271 2 887431672 +429 508 4 882385569 +451 337 2 879012857 +150 319 4 878746174 +116 20 3 892683858 +62 129 3 879372276 +452 168 4 888568251 +486 282 2 879875278 +378 575 3 880334409 +487 978 1 883445251 +326 232 2 879876941 +120 827 2 889490979 +210 99 4 887736937 +533 692 4 879191902 +486 762 4 879874939 +451 883 1 879012858 +403 685 4 879786662 +450 414 3 882396564 +613 258 5 891227365 +293 222 3 888904861 +537 136 4 886030583 +500 714 2 883874469 +327 546 2 887820448 +478 93 4 889387871 +339 427 5 891034778 +500 258 4 883864578 +543 770 4 874863803 +537 188 4 886030891 +268 1273 2 875745476 +538 97 5 877107086 +399 738 4 882350583 +373 748 4 877098042 +559 315 5 891033635 +622 2 4 882671363 +15 292 5 879455128 +621 404 3 874965496 +577 365 5 880475504 +435 455 3 884132208 +498 558 4 882205321 +276 739 2 874795538 +235 522 5 889655086 +174 147 4 886433936 +383 203 5 891193242 +303 170 5 879467574 +405 1569 1 885549505 +543 403 4 875663543 +222 326 4 877562819 +450 340 4 882216178 +151 504 4 879528868 +37 50 5 880915838 +601 623 1 876349897 +488 260 2 891293304 +263 194 5 891298107 +201 179 5 884114471 +423 313 4 891394595 +399 110 2 882343523 +535 357 2 879617531 +479 176 4 889125562 +216 423 4 881432467 +588 99 5 890023646 +534 456 5 877808300 +510 687 2 887667752 +23 155 3 874787059 +512 191 4 888579747 +222 620 3 877563873 +542 89 4 886532294 +538 196 4 877107408 +482 876 3 887644023 +515 322 3 887659073 +181 407 2 878963038 +24 919 3 875246185 +81 111 3 876534174 +22 546 3 878888107 +537 191 4 886030862 +6 186 4 883602730 +44 405 3 878346512 +315 175 5 879799423 +94 230 2 891723124 +189 166 4 893265657 +561 141 2 885809781 +241 346 3 887249482 +557 271 4 881179557 +575 173 5 878148258 +601 176 2 876348820 +85 378 4 879829642 +297 1 3 874954425 +621 567 3 874964991 +303 1511 3 879544843 +359 748 3 886453271 +85 496 4 879453781 +328 1478 3 885049275 +58 127 4 884304503 +448 340 4 891888137 +268 466 3 875310571 +457 122 2 882396158 +496 659 3 876065822 +274 280 1 878946162 +521 1059 1 884476821 +506 274 4 874862229 +345 50 5 884992367 +586 926 4 884067199 +13 688 1 883670819 +222 66 4 878183837 +619 117 5 885953778 +24 357 5 875323100 +48 479 4 879434723 +524 518 3 884635031 +393 722 2 889728736 +144 318 5 888105419 +343 631 4 876407175 +426 1079 3 879442892 +267 179 5 878972314 +474 121 4 887916260 +423 302 5 891394595 +476 890 1 883365989 +486 460 4 879875316 +486 7 5 879874753 +99 238 4 885680616 +442 684 3 883391221 +484 227 5 891195506 +276 31 4 874795704 +426 185 5 879445005 +416 763 5 893212623 +187 213 4 879465858 +428 344 3 892572308 +317 299 4 891446371 +119 348 3 886433226 +268 727 2 875310116 +137 385 5 881433719 +116 47 3 876454238 +297 474 4 875239125 +385 959 3 879446741 +345 736 3 884992897 +109 174 5 880572721 +514 239 5 876067462 +403 117 4 879786112 +59 595 3 888203658 +70 99 4 884067222 +551 25 1 892783366 +220 995 3 881197948 +244 772 4 880601937 +545 568 3 879899299 +498 151 4 881956140 +432 108 3 889416608 +5 437 1 878844423 +622 845 3 882590291 +431 358 2 877844489 +488 230 3 891375900 +380 382 3 885478759 +518 924 3 876822873 +6 512 4 883601155 +91 389 2 891439130 +425 338 1 890346781 +407 97 4 875116167 +457 56 4 882396868 +218 55 4 881288265 +465 175 5 883530054 +188 54 4 875074589 +94 142 3 891721749 +551 471 5 892783365 +276 771 2 874795795 +92 157 4 875653988 +429 265 4 882386096 +422 257 4 875129839 +378 227 3 880332857 +474 87 4 887925916 +181 1245 1 878962550 +532 329 4 886364769 +459 1016 4 879563506 +13 183 4 882397271 +303 78 2 879544238 +405 1568 1 885547222 +348 118 4 886523588 +524 191 4 884634707 +466 873 2 890283056 +445 28 4 890987772 +532 38 3 874789332 +130 427 5 875217033 +417 326 4 879649669 +540 125 3 882157011 +114 483 4 881260246 +334 328 3 891544311 +295 96 1 879517299 +450 506 5 882373088 +506 951 3 874875062 +592 157 5 882955918 +75 25 5 884049875 +308 419 4 887737194 +385 346 3 883791602 +497 578 4 879310965 +535 58 5 879618502 +109 451 5 880583192 +536 229 4 882361142 +130 470 2 875217096 +295 109 4 879517911 +181 1054 2 878963418 +221 695 4 875245776 +401 481 3 891033014 +606 1110 2 880927358 +602 304 4 888638022 +35 879 4 875459073 +346 54 4 874949217 +453 157 4 877561172 +450 313 5 882811655 +435 895 3 884130647 +393 271 3 887742179 +540 1 3 882157126 +487 781 3 884030528 +314 796 2 877891518 +615 1021 5 879448119 +205 268 2 888284618 +496 528 4 876065933 +615 886 2 879447692 +197 526 5 891409935 +442 17 4 883388535 +274 9 5 878945404 +82 866 3 878768840 +313 461 3 891014925 +608 69 4 880405702 +342 238 4 875319012 +343 581 4 876405820 +620 444 3 889987682 +35 937 4 875459237 +117 423 4 881012472 +551 273 4 892782865 +11 180 2 891904335 +271 79 4 885848672 +379 251 5 885063301 +476 790 4 883365274 +315 513 5 879821299 +378 485 4 880055921 +224 239 4 888104554 +70 554 3 884068277 +393 283 3 887744239 +534 290 4 877807845 +527 631 4 879456030 +497 405 3 879310621 +405 716 1 885547408 +201 672 2 884112673 +50 1010 5 877052329 +422 307 4 879743925 +318 404 3 884496639 +479 97 3 879461651 +423 754 4 891394832 +436 708 3 887770457 +566 207 5 881650502 +429 159 3 882386051 +472 946 2 875981122 +582 258 4 882960396 +585 863 5 891283000 +472 418 3 875980120 +299 647 4 878192804 +160 15 2 876768609 +291 121 2 874805984 +574 272 4 891278860 +76 358 2 878101114 +504 84 3 887840589 +541 222 4 883864848 +297 191 3 875238923 +401 357 4 891032896 +447 31 4 878856526 +56 386 3 892911494 +537 762 3 886030051 +334 237 4 891545067 +586 28 3 884066087 +573 480 4 885844481 +351 311 4 879481589 +450 1221 5 887660722 +17 286 3 885165619 +116 253 3 876452492 +312 1516 4 891698334 +208 371 5 883108842 +308 294 3 887736408 +399 80 3 882349068 +535 178 4 879618925 +308 1252 3 887741604 +110 288 4 886987145 +132 151 3 891278774 +537 402 1 886031752 +523 181 5 883700186 +6 191 4 883601088 +144 15 4 888104150 +318 269 5 884469970 +358 582 5 891269723 +524 215 2 884636735 +109 940 3 880583133 +551 719 1 892784898 +280 13 5 891700257 +339 1153 4 891035035 +435 732 4 884132341 +488 1025 2 891293263 +293 1298 3 888906045 +435 433 5 884131243 +450 283 3 887661961 +62 568 3 879375080 +185 205 3 883524320 +450 692 4 882373724 +417 963 4 879647431 +59 137 5 888203234 +537 421 2 886030863 +121 742 5 891390013 +551 1067 2 892785091 +401 69 3 891033417 +504 699 4 887838573 +487 411 3 883444793 +506 300 3 888178161 +597 1152 4 875339876 +336 70 5 877757910 +94 432 4 885873089 +312 519 5 891698726 +606 620 4 887059014 +622 797 2 882670862 +312 432 5 891699491 +200 472 4 884127890 +283 151 4 879297318 +499 1101 5 885599182 +297 1073 3 875238695 +619 39 2 885954083 +422 288 3 875129640 +399 825 2 882341586 +128 1221 3 879968279 +561 218 3 885810000 +604 444 2 883668175 +193 25 4 889127301 +59 288 5 888202787 +622 106 2 882591172 +269 602 4 891449346 +480 114 4 891208547 +524 24 3 884626906 +136 283 4 882693529 +26 109 3 891376987 +102 82 2 888801360 +374 1033 4 883628021 +446 286 3 879787730 +5 151 3 875635723 +151 1098 1 879528890 +617 396 1 883789590 +579 328 3 880951444 +178 153 4 882826347 +329 323 2 891655594 +490 298 3 875427532 +474 175 4 887925497 +450 80 3 882471737 +621 542 2 874965093 +215 218 3 891436607 +334 287 3 891545162 +615 87 4 879448780 +459 19 3 879563064 +500 43 3 883876859 +561 205 3 885807393 +380 425 4 885479163 +174 747 5 886513729 +52 126 5 882922589 +548 281 4 891044538 +286 761 4 877533640 +279 1059 4 891209332 +479 147 3 889125665 +64 520 5 889737851 +543 371 5 875665787 +592 125 2 882608795 +438 220 4 879868328 +379 511 4 880524811 +606 96 5 880925074 +95 144 5 879197329 +378 70 4 882642831 +561 346 5 885806862 +201 1045 2 884140788 +487 79 5 883446543 +231 1 3 879965704 +476 216 4 883364250 +518 696 5 876823266 +617 565 4 883789635 +304 328 3 884967167 +417 167 3 880952355 +255 834 4 883216358 +452 1403 1 875875272 +601 174 4 876348572 +130 328 4 874953525 +23 230 4 874785809 +110 294 3 886987540 +429 209 4 882384950 +593 234 2 875660850 +622 756 3 882591321 +152 632 4 882474734 +284 938 3 885329821 +593 196 5 875670939 +474 276 5 887915221 +255 559 4 883216748 +293 230 2 888907384 +540 249 3 882157687 +417 173 5 879647519 +349 458 4 879465933 +181 1150 1 878963305 +226 69 4 883889430 +591 382 4 891031500 +346 1231 3 875265106 +586 568 3 884061623 +90 531 4 891383204 +592 354 4 888553156 +385 1121 4 879443315 +97 663 5 884239791 +417 91 2 879647800 +607 86 4 883880079 +534 1199 5 877807780 +94 98 4 891721192 +512 527 5 888579645 +557 127 4 880485718 +259 154 5 876365003 +404 879 3 883790465 +255 121 2 883216902 +427 937 5 879701326 +498 933 3 881959018 +246 132 4 884921319 +521 206 5 884476637 +499 8 5 885599682 +336 859 2 877758103 +100 347 4 891375212 +561 661 4 885808715 +82 181 4 876311241 +417 15 5 879646166 +429 502 3 882385543 +618 96 3 891307749 +624 471 4 879792493 +389 185 5 879991434 +457 111 3 882393384 +72 98 5 880037417 +476 712 3 883364475 +385 305 4 879740222 +327 92 4 887748006 +447 150 4 878854438 +532 11 5 893119491 +568 165 4 877906935 +327 65 2 887747617 +567 257 3 882427250 +234 404 4 892333830 +85 476 3 879453018 +13 740 1 882140355 +234 111 3 892318060 +378 143 4 880046022 +72 25 5 880035588 +591 322 2 891031013 +596 123 2 883539767 +234 609 3 892335186 +121 357 5 891388063 +159 1013 4 880557170 +356 331 3 891405619 +334 906 5 891544177 +324 875 3 880575163 +128 168 4 879966685 +189 317 4 893265826 +608 276 2 880404975 +590 754 3 879438686 +303 195 4 879466937 +551 1087 1 892784437 +475 313 2 891451083 +496 77 2 876066531 +222 1087 1 878185102 +174 140 4 886515514 +387 320 4 886480325 +151 497 5 879524325 +442 67 3 883389028 +458 304 4 889323982 +209 14 3 883417547 +496 774 5 876066424 +455 197 5 879111057 +257 1129 5 879585415 +592 1008 4 882608357 +188 877 2 875071361 +612 926 2 875324789 +15 690 4 879455128 +532 195 5 892521554 +603 931 2 891956715 +268 941 2 875310463 +439 895 3 882892424 +57 1073 3 883698525 +184 644 4 889908947 +90 811 4 891384516 +476 343 4 883365634 +387 93 5 886480703 +592 347 4 885280098 +87 824 3 879877043 +439 147 4 882893737 +84 546 3 883452462 +417 384 4 879649284 +526 676 5 885682370 +442 672 3 883390048 +600 583 3 888451977 +566 117 4 881650886 +495 357 5 888633277 +234 64 4 892078983 +535 813 5 879618777 +485 326 2 891041705 +130 62 4 876252175 +367 324 5 876689418 +222 1178 2 878184392 +518 13 4 876823266 +498 484 4 881957546 +416 712 4 886318795 +567 919 4 882426105 +585 730 3 891285188 +399 1219 3 882348448 +327 856 4 887744167 +455 627 3 879111705 +486 181 4 879874482 +537 215 3 886031342 +32 9 3 883717747 +272 423 4 879454939 +437 387 2 880140726 +214 175 5 892668153 +603 157 1 891957031 +398 197 5 875660226 +128 729 2 879968447 +504 56 3 887832643 +380 1065 4 885478519 +542 411 4 886533275 +624 278 4 879793545 +561 393 2 885810309 +95 968 5 880571117 +82 523 5 878769373 +515 307 4 887659123 +234 646 3 892335500 +569 302 4 879792991 +506 183 5 874874308 +276 655 4 874791297 +314 216 3 877888722 +189 209 1 893265826 +457 357 5 882396735 +465 656 3 883531410 +60 327 4 883325508 +426 208 4 879442161 +597 242 4 875338983 +452 419 4 887719030 +544 286 4 884795135 +54 255 3 882153415 +456 955 4 881374162 +592 251 5 882607955 +605 601 5 879426339 +151 741 2 879524394 +303 443 4 879468459 +13 733 5 882399528 +178 744 3 882824028 +489 270 4 891448731 +433 268 3 880585162 +344 210 4 884814401 +336 763 3 877756890 +594 286 3 875917841 +537 330 2 886029488 +593 609 3 886194241 +588 143 5 890015684 +620 1043 4 889988340 +130 1231 4 878537778 +90 310 3 891382240 +11 237 4 891903005 +504 728 3 887908974 +210 72 3 891036310 +481 659 5 885829153 +17 294 4 885166209 +615 1192 4 879448715 +127 271 5 884364866 +543 516 4 876896210 +470 50 5 879178487 +136 475 4 882693339 +49 1067 3 888068842 +533 484 3 879190724 +325 548 3 891480086 +606 210 3 880924557 +586 176 3 884061623 +42 419 5 881107178 +416 762 3 876697524 +551 748 4 892775612 +429 188 4 882386566 +606 763 5 887060488 +2 310 4 888979061 +417 264 2 879649763 +595 289 4 886920602 +435 717 3 884134104 +468 662 4 875291570 +368 145 2 889783586 +373 209 4 877098437 +295 427 4 879517412 +87 323 3 879876256 +481 780 1 885829240 +483 20 2 878952993 +410 315 4 888627138 +405 383 1 885547605 +387 659 4 886480325 +489 266 5 891446232 +500 988 3 883864840 +471 501 3 889828027 +279 1215 2 884556545 +279 1025 2 880825843 +425 305 3 890346411 +606 124 3 878143246 +224 1152 3 888104313 +457 372 4 882548382 +558 847 4 879436396 +562 418 5 879195738 +560 1 4 879976449 +601 257 2 876347224 +401 684 4 891033651 +60 650 4 883327201 +593 245 3 888872154 +561 537 4 885808866 +480 127 3 891207715 +579 655 3 880952201 +456 1328 4 881372328 +394 665 2 881130009 +554 951 3 876369840 +411 50 5 892845604 +394 780 2 881059180 +592 318 5 882955863 +429 117 4 882387757 +546 860 4 885141439 +236 318 5 890116539 +405 388 4 885547558 +537 721 2 886031752 +200 43 3 884129814 +481 505 5 885828574 +476 1118 3 883364392 +593 402 4 875672970 +493 127 3 884130416 +456 95 4 881373756 +91 483 4 891439208 +279 802 4 875313600 +311 173 5 884364569 +430 222 4 877225682 +620 930 2 889987875 +488 172 3 891293863 +569 676 4 879793847 +534 150 3 877807873 +616 300 4 891224644 +70 204 3 884066399 +592 1377 3 882607872 +363 1073 4 891496337 +298 603 5 884125093 +344 216 4 884901156 +293 49 3 888907312 +537 1019 1 886031606 +164 298 3 889401835 +104 3 3 888465739 +217 568 4 889069782 +504 723 4 887910896 +279 869 1 892176473 +290 318 4 880473776 +452 636 5 885816916 +188 121 4 875073647 +551 2 2 892784780 +280 66 5 891701148 +207 1225 3 875508817 +542 319 3 886532950 +42 283 3 881110483 +437 288 2 880139533 +201 42 4 884113713 +619 809 1 885954238 +489 883 2 891448811 +365 340 5 891303536 +200 423 5 884129275 +450 66 4 882398770 +489 1025 5 891366652 +493 275 1 884131357 +169 480 4 891359137 +592 187 5 882956157 +437 83 4 880140325 +430 56 4 877226323 +303 264 3 879466214 +590 150 5 879438878 +627 26 3 879530824 +235 692 4 889655595 +17 323 1 885166256 +293 1016 2 888905086 +399 622 4 882343605 +334 58 4 891546914 +518 118 5 876823804 +536 189 5 882360143 +483 107 3 878951717 +472 378 4 875981759 +202 318 1 879727116 +275 420 2 875154535 +496 378 1 876066794 +346 642 3 874949952 +60 205 4 883326426 +558 14 4 879436097 +13 732 5 882141617 +577 845 4 880471578 +436 581 4 887772060 +278 538 4 891295164 +197 322 3 891409475 +200 141 4 884129346 +524 1456 3 884635031 +621 833 3 880738462 +554 432 4 876550491 +83 4 2 880336655 +384 751 4 891274091 +244 50 5 880604379 +286 312 4 884069415 +163 879 2 891219643 +13 427 5 882398814 +537 194 3 886030891 +498 203 5 881961547 +588 258 4 890014591 +577 932 3 880471287 +350 50 5 882345502 +220 289 4 881198113 +585 1266 3 891286059 +559 191 5 891034139 +582 826 3 882962652 +216 789 5 880233957 +540 591 3 882157036 +441 259 3 891035211 +279 1206 5 884986688 +405 1399 1 885549942 +592 147 4 882608357 +194 1411 1 879554331 +508 176 4 883767565 +483 432 3 884047278 +533 528 4 879438999 +234 524 3 892079910 +527 87 3 879456132 +271 527 5 885848736 +399 423 3 882344052 +19 210 3 885412840 +417 96 3 879646915 +533 276 1 889451077 +393 826 3 889731729 +82 121 4 876311387 +144 1197 4 888104322 +536 561 3 882364065 +301 51 4 882078928 +221 282 4 875244558 +373 1133 3 877112076 +475 259 5 891628024 +56 67 2 892677114 +21 988 1 874951005 +623 50 5 891035112 +453 357 5 877554174 +628 270 5 880776981 +92 4 4 875654222 +421 4 3 892241624 +497 724 5 879310445 +523 9 4 883700564 +239 634 4 889180487 +561 92 3 885809897 +288 515 4 886373591 +567 1020 3 882425820 +577 727 5 880474747 +398 124 5 875717717 +551 550 5 892784130 +381 176 4 892696698 +321 432 5 879439812 +405 798 1 885546724 +465 603 4 883531284 +51 479 3 883498655 +288 216 4 886629592 +554 274 3 876232317 +623 275 5 891035112 +95 509 4 879197728 +621 263 1 883800011 +420 100 5 891357104 +617 294 1 883788511 +144 588 4 888105549 +601 276 4 876346890 +198 923 3 884207946 +391 646 4 877399066 +43 276 4 883954876 +435 228 4 884131157 +536 214 2 882360450 +580 329 3 884124191 +622 284 1 882590670 +537 172 3 886030707 +66 294 4 883601089 +354 1085 3 891219432 +435 12 5 884131434 +541 596 4 884645816 +291 369 3 874834388 +625 748 3 891262561 +145 312 3 885622510 +276 1056 4 874796201 +450 222 3 882395778 +532 545 2 874791976 +354 25 2 891216854 +489 301 3 891366805 +11 286 5 891901606 +431 327 3 877844559 +533 151 3 879192474 +465 22 3 883531246 +509 603 4 883591826 +315 523 4 879799390 +500 1226 4 883865715 +501 293 4 883347823 +130 436 3 875801573 +8 259 1 879361604 +347 176 3 881653866 +450 647 4 887136622 +347 655 5 881653973 +505 203 4 889334162 +207 284 3 877746137 +474 382 3 887927339 +450 192 4 882467868 +268 53 3 875744173 +499 539 1 885598827 +87 477 3 879876610 +447 157 4 878856290 +440 86 5 891577919 +508 219 1 883767628 +104 276 4 888465290 +579 111 4 880952142 +504 58 3 887837740 +291 416 4 875087100 +565 730 5 891037837 +62 387 2 879376115 +378 132 4 880046256 +178 783 4 886678484 +536 862 3 882360834 +18 125 3 880131004 +65 238 3 879218449 +533 193 4 879439379 +436 721 3 887770092 +374 95 4 882158577 +398 737 2 875811449 +486 13 4 879874811 +622 993 4 882590809 +500 325 3 883864862 +479 210 4 889125866 +23 79 4 874785957 +125 1115 3 879454345 +429 301 3 882387252 +463 288 1 889943851 +524 613 4 884637347 +535 591 4 879617977 +507 316 5 889964844 +346 333 4 886273342 +615 259 1 879447642 +532 1337 3 874790930 +463 257 4 889935910 +536 227 5 882361066 +342 1315 1 875318742 +497 1000 2 878759777 +425 1016 3 878739054 +433 340 3 880585162 +497 645 3 878759659 +280 367 5 891701002 +92 396 3 875654733 +87 728 4 879876768 +456 603 5 881373019 +449 9 4 879958624 +85 435 4 879828911 +59 581 5 888206015 +194 991 2 879520306 +589 678 4 883352735 +450 549 3 882377358 +474 1518 3 887927338 +152 487 5 882474587 +425 346 5 890346198 +460 303 3 882910553 +560 258 5 879975116 +614 117 3 879464352 +437 51 1 880382644 +516 902 5 891290565 +627 699 1 879530263 +344 124 5 884899346 +472 715 4 875982607 +449 1195 5 880410754 +311 794 4 884366270 +279 294 2 875249117 +409 213 4 881107750 +585 1524 3 891283124 +561 597 3 885810428 +541 181 5 884046910 +608 162 3 880406862 +343 90 4 876406677 +403 1012 1 879786190 +429 671 3 882385065 +196 285 5 881251753 +12 159 4 879959306 +592 425 5 882956467 +417 800 2 879649467 +575 483 3 878148137 +574 690 3 891279174 +532 831 2 874790629 +151 430 4 879528418 +417 825 4 879646463 +533 195 4 879439082 +553 151 5 879949181 +148 521 1 877398836 +445 1252 1 891199749 +332 234 5 888360342 +180 1046 2 877442125 +304 111 3 884968264 +425 201 3 878738104 +57 295 5 883698581 +608 419 4 880405702 +194 944 2 879551999 +548 258 4 891042474 +24 200 5 875323440 +487 226 3 883531085 +588 73 3 890026262 +532 121 4 888636374 +524 29 3 884637173 +56 523 4 892676970 +551 698 4 892782734 +479 179 1 879461142 +7 324 1 892135078 +297 249 3 874955210 +295 204 4 879517655 +395 181 5 883764336 +457 531 5 882392906 +305 686 3 886324330 +438 471 4 879868184 +232 166 4 888549815 +312 663 5 891699599 +233 432 3 877663383 +347 163 4 881654801 +600 1407 2 888453083 +259 97 4 874809292 +524 286 5 884287379 +344 89 5 884814479 +387 732 1 886484215 +402 455 3 876266886 +536 402 4 882361042 +394 364 3 881059544 +430 1007 3 877225599 +435 1128 2 884132027 +538 238 5 877110174 +249 257 3 879571715 +537 509 4 886031540 +2 309 1 888980029 +621 147 3 880738282 +501 475 5 883348080 +477 25 5 875940755 +195 740 3 890985743 +115 657 3 881171488 +553 492 3 879949042 +268 630 4 875542174 +234 517 3 892333919 +40 316 3 889041643 +194 87 4 879523104 +566 707 4 881650442 +233 234 4 877664010 +179 333 5 892151459 +229 288 4 891633028 +457 100 5 882393244 +459 100 1 879562859 +385 498 3 879441942 +393 79 4 887745973 +517 597 4 892660034 +566 772 4 881650467 +298 127 5 884125847 +153 258 5 881371336 +13 328 3 881514811 +487 748 4 883440540 +567 298 4 882426279 +254 554 3 886475952 +417 145 3 879648979 +308 928 4 887742103 +276 421 4 874795500 +215 195 5 891435655 +621 107 4 880737311 +451 288 5 879012470 +514 658 4 875463028 +428 347 4 885943782 +207 1028 3 877847025 +106 161 3 881452816 +629 284 4 880117719 +102 892 2 883278138 +524 277 3 884322379 +7 429 5 891351002 +472 234 4 875980081 +523 66 4 883702292 +280 1182 3 891702214 +437 770 3 881001208 +313 484 5 891016193 +583 268 5 879384094 +559 687 3 891035551 +286 476 4 876521993 +141 284 5 884585071 +331 682 5 877196820 +456 99 3 881374767 +184 79 3 889909551 +567 191 3 882427124 +60 265 5 883327591 +305 184 3 886323937 +405 1408 1 885549094 +569 117 3 879793847 +551 317 5 892777092 +608 489 5 880403765 +379 1 4 883156176 +497 187 5 879310825 +407 521 3 884201716 +429 250 2 882386357 +94 29 2 891723883 +385 191 2 879444597 +389 168 5 879991434 +193 895 1 889123777 +601 196 3 876349810 +455 1028 2 879110767 +328 117 4 885046420 +497 153 4 878759659 +537 875 1 886028544 +244 357 5 880605553 +486 879 3 879874297 +401 509 4 891033582 +495 496 5 888632888 +297 185 5 875239870 +56 946 4 892737210 +6 274 4 883602501 +493 95 5 884131287 +595 1059 4 886921344 +151 9 4 879524199 +177 1218 4 880131231 +69 265 4 882145400 +299 283 3 889417370 +82 834 1 884714618 +621 748 4 880226710 +59 1 2 888203053 +393 29 4 889729398 +521 144 3 884478171 +537 653 4 886030738 +379 271 3 886835602 +452 924 5 885816916 +350 479 5 882345789 +57 105 3 883698009 +506 175 5 874873327 +104 255 1 888465604 +52 285 5 882922227 +421 448 3 892241687 +457 8 5 882397734 +271 521 5 885848373 +54 328 4 880928957 +327 631 3 887747133 +469 483 5 879524177 +528 238 3 886101782 +367 563 4 876690077 +381 931 4 892697628 +465 87 4 883530054 +499 657 5 885599413 +429 387 4 882386051 +268 455 3 875742499 +533 282 4 888844577 +50 268 4 877051656 +591 740 4 891039974 +608 609 5 880406950 +79 93 2 891271676 +621 135 5 885596819 +85 345 4 884820077 +479 483 4 879460844 +537 749 2 886028544 +224 329 3 888082187 +346 250 3 886274255 +25 837 4 885852611 +59 746 5 888204642 +537 698 3 886031178 +380 521 2 885479397 +276 53 4 883822485 +539 153 5 879788533 +387 952 5 886484561 +189 162 3 893266230 +570 245 1 881262497 +553 474 5 879948609 +601 184 3 876350230 +450 136 5 882812349 +402 258 4 876266650 +627 179 5 879530536 +286 172 4 889651549 +553 177 4 879949180 +526 408 5 885682562 +537 275 4 886029806 +56 778 4 892678669 +385 1154 5 880870205 +601 496 4 876349302 +388 333 5 886439561 +555 249 4 879963127 +429 761 2 882386711 +487 128 5 883531333 +191 750 4 891560253 +416 696 3 876697524 +448 1602 4 891888042 +151 463 5 879525002 +308 679 4 887739426 +417 642 5 879647947 +479 100 3 879460028 +181 1338 1 878962240 +109 531 4 880578066 +585 212 5 891282894 +545 88 3 879901941 +589 259 5 883352631 +551 651 4 892776750 +318 1063 3 884495973 +562 501 5 879196653 +457 265 5 882397699 +580 1028 3 884125829 +145 342 4 882181205 +533 14 3 879192582 +450 610 4 882371904 +99 1 4 886518459 +436 1135 4 887771022 +423 546 2 891395684 +334 185 4 891545950 +588 423 3 890015649 +6 178 4 883600785 +59 649 4 888205660 +394 184 3 880889010 +483 109 5 882165734 +468 273 2 875280499 +318 739 5 884496984 +389 480 5 879991175 +110 1210 3 886989191 +487 620 3 883445168 +392 304 4 891037720 +290 265 4 880475371 +453 1017 3 887942122 +288 435 4 889225633 +610 483 5 888702859 +308 288 4 887736408 +385 675 5 879446952 +25 131 4 885852611 +301 43 5 882078994 +621 541 4 874964605 +319 689 3 881355802 +633 28 4 877212366 +518 273 5 876823804 +605 137 5 879425432 +496 133 5 876066567 +145 652 5 882181571 +186 203 5 879023529 +437 244 3 881001270 +38 405 5 892432205 +365 895 4 891303515 +514 357 4 875462901 +370 497 3 879434636 +104 405 3 888466028 +19 268 2 885412034 +411 181 5 892845605 +290 732 4 880473777 +11 86 4 891904551 +152 692 5 880149963 +70 568 3 884149722 +592 195 4 882955863 +453 210 4 877554587 +297 4 1 875240201 +181 818 1 878963380 +291 798 4 874871655 +382 1381 3 875945757 +553 481 3 879948806 +406 190 5 879793210 +506 234 5 874873111 +541 376 3 883866210 +378 409 2 880044642 +344 316 4 889814343 +608 97 3 880405659 +6 473 2 883600111 +506 58 4 874874985 +301 142 3 882078420 +31 328 2 881547746 +605 180 4 879424315 +627 1004 4 879531504 +452 510 4 875562475 +537 235 1 886030317 +516 50 5 891290565 +483 270 3 891917351 +595 825 2 886921606 +125 367 4 892836551 +267 31 4 878972119 +452 430 3 885817719 +608 265 3 880406470 +455 1197 4 879109565 +320 453 3 884751610 +500 729 4 883875303 +601 411 2 876348107 +276 393 4 874792094 +430 50 4 877225516 +503 435 3 880472125 +622 730 4 882669509 +472 588 3 875979797 +307 209 5 879283798 +389 1114 2 880614050 +565 170 5 891037291 +420 508 3 891357162 +85 301 4 886283002 +338 427 4 879438419 +537 613 3 886031831 +542 191 5 886532338 +536 501 3 882360834 +6 408 4 883599075 +541 196 4 883864928 +145 1215 2 888398400 +532 250 3 891910110 +145 572 5 888398747 +343 527 5 876404757 +442 273 4 883390328 +409 283 4 881109264 +327 79 3 887745661 +328 29 3 885048930 +618 2 2 891309091 +393 566 3 887745717 +433 507 4 880585730 +64 1140 1 889740676 +293 492 5 888906096 +489 988 3 891446982 +128 181 4 879966954 +592 264 2 882607528 +64 188 4 889739586 +21 145 1 874951761 +555 236 5 879962769 +561 1529 3 885809064 +590 864 1 879439567 +621 451 1 874963028 +526 919 3 885682400 +345 378 4 884993436 +178 506 3 882827084 +277 124 3 879543421 +276 658 4 874791194 +119 210 5 874781407 +543 735 4 874863269 +174 9 5 886439492 +548 31 5 891044481 +130 354 5 888211701 +454 693 2 888267315 +555 489 5 879975455 +276 1244 3 874836608 +354 489 4 891217851 +508 317 4 883767246 +26 1011 3 891371597 +506 538 3 880908452 +566 15 3 881650030 +605 582 4 879424661 +405 52 1 885546379 +292 844 5 881104481 +275 96 3 880314914 +615 289 2 879447670 +91 136 4 891438909 +529 321 4 882535353 +582 222 4 882961804 +125 520 5 892836309 +109 82 5 880572680 +327 202 4 887822400 +354 558 4 891217082 +625 739 3 891263665 +608 789 3 880405971 +449 269 5 879958444 +504 1030 3 887911314 +608 695 5 880405565 +244 82 3 880606667 +94 173 4 885872758 +297 151 3 875239975 +497 741 4 879361707 +618 237 4 891307343 +334 115 5 891545768 +432 24 1 889416188 +533 10 2 879192414 +87 89 4 879875818 +532 879 3 892519328 +450 35 2 882468790 +116 390 4 876454090 +350 515 5 882346756 +478 763 5 889388375 +592 197 5 882955863 +380 1113 4 885479730 +526 678 1 885682214 +493 50 5 884131553 +184 93 4 889907771 +177 288 5 880130467 +618 131 4 891307343 +621 554 4 874964657 +6 538 2 883268483 +614 100 5 879464119 +308 428 5 887739426 +181 1302 1 878962086 +622 755 4 882670211 +498 1070 3 881959103 +308 825 4 887740700 +92 780 3 875660494 +201 1069 2 884111312 +498 603 4 881955960 +514 257 4 880209981 +107 902 5 891264501 +163 300 3 891219977 +407 25 3 876339975 +28 176 5 881956445 +426 99 4 879444081 +249 480 5 879572210 +18 613 5 880129769 +378 796 2 880333626 +592 271 4 882607647 +517 275 5 892660728 +539 956 5 879788405 +461 255 2 885355890 +504 180 4 887837918 +506 796 3 874875062 +320 231 2 884749411 +599 471 4 880953441 +541 257 5 884046320 +44 211 4 878347598 +619 403 5 885954159 +479 282 5 879460049 +592 1025 1 882607745 +591 204 4 891031500 +632 188 4 879457857 +312 835 5 891712535 +250 181 4 878089393 +452 245 2 876216206 +593 65 3 875671674 +521 1012 3 884476049 +472 1036 4 875983484 +541 215 4 885595771 +291 85 2 874877699 +389 525 4 880165277 +268 204 3 875310311 +280 67 4 891701785 +380 712 2 885480585 +442 695 5 883387935 +378 703 4 890572396 +268 12 4 875310116 +450 507 5 882373020 +601 164 4 876350875 +335 748 2 891567098 +7 597 3 891353744 +588 25 4 890024677 +76 513 5 882606305 +221 469 3 875245481 +197 38 3 891410039 +314 99 4 877888391 +406 89 4 879446361 +320 368 3 884748946 +535 658 4 879618569 +350 214 3 882347465 +113 273 4 875935609 +463 116 5 877385381 +486 1272 3 879875154 +450 490 5 882373786 +182 181 5 885612967 +566 512 4 881650148 +385 200 3 879446110 +308 135 5 887737243 +207 33 2 877125422 +495 227 5 888636899 +256 657 5 882164727 +239 228 2 889180651 +553 1021 2 879949153 +577 12 4 880474257 +346 98 2 874948173 +600 38 3 888452491 +298 186 4 884183256 +504 579 4 887911391 +591 286 4 891030956 +184 283 5 889913687 +350 489 4 882347465 +520 25 4 885170476 +545 217 5 879899934 +378 807 3 880334199 +371 357 5 877487751 +622 479 4 882669668 +312 613 5 891698454 +605 284 2 880762139 +378 28 4 880045989 +600 526 4 888451750 +270 121 4 876954093 +158 55 4 880134407 +524 281 2 884323464 +579 408 3 880951740 +454 740 2 888266433 +174 1262 5 886434566 +365 235 2 891304278 +624 864 3 879793198 +474 73 3 887928793 +286 428 5 877532303 +222 508 3 877563326 +416 658 5 893214226 +65 88 4 879217942 +64 135 4 889737889 +410 340 2 888626506 +521 392 3 886063254 +568 6 3 877907235 +491 900 5 891189761 +537 92 3 886031678 +457 52 4 882398055 +279 922 3 890451433 +195 1193 4 888737346 +207 414 2 876078916 +23 432 4 884550048 +181 1340 1 878962240 +479 79 4 879460894 +441 683 2 891035350 +204 321 1 892388900 +463 544 4 877385415 +601 250 4 876346930 +551 447 5 892783711 +425 568 3 878738643 +532 470 5 892859148 +322 528 5 887314418 +416 7 4 876697205 +126 300 4 887854943 +605 15 5 879427151 +92 125 4 876175004 +453 742 3 888207161 +254 1 3 887347350 +498 121 2 881962699 +407 40 1 876338799 +620 268 4 889986452 +405 233 1 885547952 +478 412 4 889388249 +385 250 3 879440701 +312 1020 5 891698553 +557 872 5 881095916 +583 239 2 879384522 +73 153 3 888626007 +537 349 1 886028845 +104 534 2 888465554 +546 56 5 885141332 +533 1 4 879192521 +35 876 2 875458970 +623 523 4 891034756 +454 451 4 888267455 +294 100 4 877819265 +577 385 5 880474530 +500 930 3 883865929 +303 475 4 879467155 +538 240 2 877109422 +472 72 5 892791017 +622 12 5 882669468 +590 244 3 879439431 +151 381 5 879528754 +15 291 3 879456084 +535 204 5 879617856 +308 423 5 887736999 +170 687 3 884706063 +620 565 4 889987682 +551 384 1 892785223 +104 237 3 888465263 +458 473 4 886395022 +562 197 4 879196105 +109 88 4 880581942 +354 251 5 891216691 +316 172 1 880854197 +53 7 3 879442991 +256 1051 4 882150552 +1 119 5 876893098 +478 237 5 889388863 +250 751 2 883262694 +399 1480 3 882350899 +406 543 4 884631010 +560 281 3 879976828 +474 99 4 887927339 +303 762 4 879468179 +89 237 4 879441381 +455 405 3 879109764 +522 318 4 876961248 +618 496 4 891307619 +527 59 5 879455792 +585 707 5 891282894 +484 250 4 891194646 +271 659 3 885848827 +405 1224 1 885546487 +435 944 2 884133911 +586 403 4 884061807 +592 876 1 882607690 +305 202 3 886323684 +458 709 4 886396192 +56 176 5 892676377 +416 195 5 893214128 +621 181 5 874965408 +250 367 4 878090330 +363 572 2 891498469 +293 895 3 888904410 +617 132 1 883789006 +478 216 5 889396029 +608 193 4 880405824 +152 133 5 882474845 +581 847 3 879641787 +279 666 2 890451373 +1 26 3 875072442 +602 125 4 888638674 +615 644 4 879448599 +554 576 4 876549377 +543 202 4 874863734 +608 1113 3 880406862 +406 203 4 882480891 +527 19 3 879456611 +486 864 3 879875041 +342 873 3 874984068 +109 118 3 880571801 +234 429 4 892079434 +22 163 1 878886845 +336 284 4 877759833 +479 209 4 879460863 +478 357 5 889388724 +526 243 1 885682295 +257 381 5 880496690 +318 215 2 884496218 +504 98 5 887832433 +592 263 1 882607779 +466 455 3 890285113 +343 515 4 876402626 +496 532 5 876072633 +181 322 1 878961814 +572 1010 2 879449683 +493 754 3 884129868 +195 373 3 875158215 +301 1283 4 882075386 +385 1158 5 879443150 +145 1025 4 877343020 +391 546 3 877400037 +115 13 5 881171983 +454 107 3 888267087 +44 90 2 878348784 +457 425 4 882397828 +31 299 4 881547814 +535 630 2 879619144 +487 1446 3 883530814 +458 287 4 886394822 +303 960 4 879467361 +545 69 4 884133906 +528 194 5 886101956 +13 754 4 882140718 +441 1 5 891035468 +352 194 3 884290361 +379 674 3 880524614 +551 1207 1 892785300 +402 1101 4 876267234 +286 527 4 877531407 +406 64 4 879445430 +560 235 2 879976867 +311 1221 4 884364502 +405 1359 1 885549790 +450 510 4 887660722 +405 584 1 885548785 +338 213 5 879438250 +465 529 3 883529984 +510 881 2 887667838 +592 42 5 882955918 +568 286 3 877906547 +179 362 1 892151231 +60 641 5 883326086 +60 411 3 883327827 +406 945 3 884631010 +620 465 4 889988232 +460 253 3 882912316 +458 427 4 886396460 +416 88 3 886316140 +313 152 3 891016878 +416 29 2 886318228 +484 97 5 891194957 +141 286 4 884584247 +267 826 3 878971266 +592 411 2 882608457 +108 252 3 879879961 +478 469 3 889395879 +468 275 4 875280143 +396 1215 2 884646709 +478 28 3 889395655 +303 1215 1 879544435 +406 607 4 882480511 +495 147 5 888637768 +355 681 4 879485523 +221 186 4 875245641 +173 984 4 877556988 +573 205 3 885844674 +64 340 4 879365313 +600 435 5 888451750 +537 193 4 886031375 +328 729 4 885047737 +534 628 5 877807747 +399 26 2 882510126 +586 235 3 884066859 +380 750 4 885477859 +393 1055 4 889728895 +271 126 3 885848034 +506 81 1 874874000 +244 197 4 880605838 +414 258 5 884998953 +507 328 5 889964162 +291 1229 2 874868027 +267 206 5 878974783 +620 768 5 889988069 +456 228 3 881374548 +139 150 4 879538327 +551 808 3 892783791 +498 271 2 881962988 +508 528 5 883777430 +312 537 5 891698516 +500 381 4 883875585 +207 175 1 877845982 +459 333 3 879561574 +292 264 3 877628138 +393 1440 3 889731359 +42 66 4 881108280 +414 260 3 884999193 +332 895 5 887916385 +525 255 1 881086078 +399 156 3 882342537 +532 865 2 888630531 +534 471 5 877807935 +561 13 3 885810060 +6 427 4 883600707 +441 405 3 891035507 +561 436 4 885807843 +447 176 4 878856148 +85 1172 4 879453781 +342 789 3 875319412 +555 7 4 879962172 +632 288 3 879458977 +85 462 4 879454189 +633 1132 2 875325691 +538 215 5 877107536 +361 212 5 879440941 +148 222 4 877398901 +566 95 2 881649913 +465 257 4 883530818 +495 671 2 888634956 +18 708 3 880129595 +567 273 5 882427068 +62 159 3 879375762 +601 109 4 876346930 +631 272 4 888464916 +560 480 3 879975613 +78 813 2 879633745 +634 458 4 875729148 +299 23 4 878192154 +2 306 4 888550774 +181 409 2 878963276 +363 506 2 891496077 +429 780 3 882387685 +291 735 4 874868027 +522 133 3 876961314 +334 315 4 891550535 +303 552 2 879485048 +604 183 3 883668021 +249 806 5 879572167 +592 460 3 882608873 +537 357 4 886030707 +320 760 3 884748946 +565 855 5 891037628 +188 470 5 875073647 +140 286 5 879013617 +561 1069 4 885808053 +417 797 3 880952656 +299 25 3 877878227 +537 133 4 886030707 +532 259 3 884594498 +601 39 1 876350443 +537 610 4 886031912 +553 648 4 879948552 +378 365 2 880318158 +141 330 1 886447735 +445 276 3 891199869 +145 274 3 875270800 +233 203 3 880923202 +554 118 4 876550257 +322 157 5 887314244 +535 151 4 879618338 +494 15 5 879541475 +407 484 4 875042378 +606 95 4 880924188 +186 1336 3 879024346 +324 827 4 880575715 +618 273 4 891309293 +176 874 4 886047118 +64 194 5 889737710 +417 404 3 879647947 +412 172 5 879717449 +535 282 3 879618091 +634 476 3 875729668 +463 7 4 877385180 +99 595 4 885679504 +488 208 4 891294298 +381 432 5 892696587 +11 544 4 891903226 +308 148 3 887740788 +308 8 5 887736696 +617 53 1 883789537 +497 1047 3 879309836 +622 283 4 882590534 +585 166 4 891283338 +83 1060 3 880306926 +274 15 5 878945505 +551 1314 2 892783750 +230 693 2 880485594 +130 1028 4 876250805 +455 281 3 879110281 +536 385 4 882359085 +553 490 4 879949073 +585 190 4 891282808 +555 285 5 879963127 +474 489 4 887923972 +537 85 2 886032123 +181 242 1 878961814 +552 455 3 879221764 +624 50 5 879792581 +311 498 4 884364931 +618 778 3 891308515 +324 14 5 880575531 +486 887 5 879874218 +33 879 3 891964230 +454 357 3 881959844 +238 301 3 883575855 +81 591 5 876534124 +10 32 4 877886661 +621 364 3 874963446 +437 181 4 880140466 +627 281 3 879531504 +600 550 4 888452071 +48 527 4 879434654 +458 124 4 886394822 +336 765 4 877757516 +567 496 5 882426184 +617 98 2 883789080 +387 13 4 886480788 +422 334 4 877162682 +546 569 4 885141502 +615 179 4 879447968 +399 508 3 882509971 +518 866 5 876823540 +511 872 5 890004728 +351 328 4 879481550 +151 516 5 879542707 +422 93 4 875129882 +561 304 3 891710572 +39 269 4 891400188 +119 931 1 886178294 +216 42 5 880234469 +496 432 4 876066652 +464 748 4 878354681 +560 813 4 879976478 +625 172 4 891263057 +279 502 5 875310263 +596 258 3 883539011 +495 168 5 888632738 +290 1060 3 880732271 +552 249 3 879222368 +329 313 4 891655191 +184 596 4 889907812 +59 491 4 888206689 +524 180 4 884634579 +227 1011 4 879035834 +548 270 5 891044304 +214 603 4 891544089 +536 176 3 882359726 +595 1094 3 886921820 +586 186 2 884059287 +593 216 5 875671277 +566 705 4 881649871 +621 33 4 874962824 +249 294 3 879571557 +569 252 3 879795551 +450 164 4 882396050 +455 301 2 879110767 +141 248 3 884585039 +552 620 3 879222738 +201 750 3 884110598 +559 265 4 891033696 +606 197 3 880926862 +458 425 3 886398246 +474 1045 4 887927728 +592 303 5 882607325 +561 32 4 885807455 +288 1358 5 886892241 +545 388 3 880347984 +276 647 4 874790903 +597 988 1 875339237 +5 415 1 875636842 +385 719 2 879447136 +559 127 4 891033956 +407 123 3 876342671 +588 347 5 890014648 +437 463 5 880141008 +94 281 3 891722576 +439 285 5 882893220 +413 300 4 879968959 +577 623 5 880475149 +634 237 5 877018125 +496 246 4 876064198 +66 121 3 883601834 +455 39 2 879111345 +365 125 3 891304152 +422 458 3 875130173 +6 435 4 883601529 +271 198 4 885848616 +639 88 3 891239638 +624 346 3 885215462 +85 1006 3 882995833 +3 181 4 889237482 +416 36 2 878879809 +314 628 5 877886606 +109 233 4 880578502 +128 705 3 879968096 +618 697 3 891308063 +325 319 3 891477638 +224 925 3 888104281 +634 273 3 875729069 +64 210 3 889737654 +538 127 5 877107231 +23 91 4 884550049 +542 1098 4 886532818 +551 79 5 892776824 +585 45 5 891282808 +456 490 4 881373084 +13 91 2 882398724 +437 234 4 880142851 +297 174 5 875410071 +524 530 4 884634785 +535 11 4 879618849 +627 210 3 879531248 +110 313 5 886987183 +399 386 3 882349353 +246 1228 1 884923971 +479 732 4 879461120 +603 100 4 891956776 +151 523 5 879524173 +588 1039 4 890024611 +279 1132 1 892864828 +123 276 4 879873830 +606 11 5 880923579 +292 1 4 881104147 +318 318 5 884496218 +95 515 5 879197329 +56 154 2 892911144 +542 58 4 886532571 +305 751 3 886307971 +181 275 3 878962720 +515 310 3 887658975 +385 945 5 879441313 +492 923 5 879969878 +394 763 3 881058929 +246 633 3 884920997 +315 154 5 879821158 +567 611 4 882425998 +588 15 5 890015608 +430 515 4 877225660 +514 69 4 875309276 +590 276 4 879439645 +114 357 4 881259525 +177 292 3 880130415 +352 302 4 884289619 +106 712 3 881452599 +537 22 2 886030767 +90 273 3 891385040 +301 465 4 882077811 +553 99 5 879948508 +457 155 4 882550065 +52 258 5 882922065 +128 1192 2 879967576 +528 174 5 886101821 +23 145 3 874786244 +534 1059 4 877807692 +577 561 4 880474955 +276 252 3 874787006 +417 1228 2 879649304 +133 300 3 890588577 +478 255 4 889398363 +176 321 4 886047176 +543 664 4 874863336 +298 435 5 884182573 +536 699 3 882360209 +230 239 4 880484320 +588 623 3 890026939 +98 428 5 880498834 +72 97 4 880036638 +85 516 4 879454272 +478 137 4 889398260 +87 235 3 879877208 +307 631 3 879283544 +532 1426 3 874791506 +405 195 5 885544881 +313 186 3 891017011 +585 116 3 891284393 +533 603 4 879190670 +312 491 5 891699702 +361 421 3 879440974 +406 624 5 879793112 +536 648 3 882359678 +561 382 4 885807842 +490 258 2 875427021 +497 746 5 878759777 +624 271 3 879791884 +595 928 3 886921820 +442 161 3 883390497 +554 86 4 876369678 +541 769 1 884046888 +537 171 3 886030967 +59 87 4 888205228 +102 260 2 883277645 +548 991 1 891044050 +599 1152 4 880951623 +630 294 4 885666018 +586 226 4 884061806 +303 502 4 879484421 +545 444 3 879899978 +452 482 5 885544110 +269 647 4 891447815 +412 276 5 879717572 +345 955 4 884993932 +416 660 5 893213404 +639 242 4 891238514 +174 15 5 886434065 +298 951 4 884183130 +499 326 3 892501059 +405 234 5 885548275 +95 186 5 880573288 +442 550 2 883390466 +279 186 5 875309482 +407 436 3 875045814 +484 144 4 891195298 +393 28 4 889554674 +246 97 3 884922272 +345 239 4 884993485 +537 498 3 886031105 +537 965 2 886031540 +71 14 5 877319375 +577 795 3 880476630 +621 876 2 883799203 +363 523 3 891494659 +169 300 5 891268491 +544 689 2 884795706 +184 1148 3 889910098 +248 64 5 884534735 +634 405 4 877017872 +466 89 3 890284819 +210 167 4 891036054 +342 47 5 874984430 +224 748 3 888082099 +239 434 5 889180041 +163 258 4 891219977 +484 239 4 891195036 +307 28 3 877119480 +287 546 4 875334271 +299 1056 4 889502292 +553 205 4 879948869 +627 144 2 879531158 +296 515 5 884196555 +544 325 1 884796016 +389 25 3 879916170 +405 219 5 885548384 +470 125 4 879178969 +561 193 3 885808673 +435 199 5 884132072 +630 934 3 885667624 +489 340 4 891448367 +325 236 3 891478695 +543 443 4 874864857 +137 405 5 881433336 +417 69 3 879647471 +551 42 5 892783212 +162 105 2 877636458 +346 204 4 874948730 +632 622 4 879459418 +429 276 5 882385542 +535 478 5 879617931 +495 191 3 888632219 +402 42 4 876267173 +591 56 4 891031344 +537 306 3 886028604 +239 221 5 889180447 +622 11 4 882669740 +620 294 5 889986557 +269 956 3 891448475 +361 694 4 879440774 +407 159 3 876338453 +593 70 5 875658983 +495 575 3 888637477 +530 319 3 891568424 +314 257 5 877886413 +489 294 3 891366748 +608 886 1 880402564 +405 661 3 885546025 +450 135 3 882373231 +23 250 4 874784338 +486 295 3 879874630 +221 1185 3 875246710 +457 509 4 882398086 +221 1017 4 875244268 +237 169 5 879376381 +44 655 3 878347455 +18 285 5 880130333 +271 461 5 885849582 +344 174 5 884900993 +545 161 4 879899472 +587 303 4 892871068 +474 15 5 887915600 +589 895 5 883352562 +342 1008 3 875318669 +453 168 4 877553708 +201 216 4 884111360 +7 134 4 892134959 +547 347 4 891282680 +472 550 5 875983066 +449 983 2 879959331 +308 663 5 887738469 +296 144 4 884197131 +381 151 5 892697526 +458 430 5 886398543 +158 187 5 880134332 +268 13 3 875742647 +398 710 2 875716830 +425 79 4 878738335 +125 455 5 879454987 +356 286 3 891405721 +312 191 5 891698334 +496 561 5 876068582 +448 333 2 891887161 +291 210 5 875086491 +2 25 4 888551648 +7 585 4 892133180 +561 410 1 885810117 +592 1060 2 882609057 +444 251 5 890247385 +627 1194 4 879529855 +630 845 3 885666918 +533 181 5 879191085 +417 13 2 879646591 +499 69 5 885599718 +561 735 3 885809712 +374 77 5 880937779 +51 173 5 883498844 +614 411 3 879465452 +559 1101 4 891035111 +642 70 2 886132189 +475 381 4 891627606 +294 235 3 877819532 +393 26 3 887746767 +484 9 1 881449910 +545 665 3 879899299 +120 742 4 889490549 +380 315 4 885477975 +472 584 1 875980377 +399 781 2 882350617 +301 64 5 882075672 +381 15 2 892697358 +7 194 5 891351851 +590 1017 4 879439196 +606 228 5 880924663 +178 143 4 882827574 +577 1032 3 880475561 +514 709 3 876067380 +609 287 5 886894940 +621 423 4 880739654 +162 358 3 877635375 +405 549 1 885546336 +373 1110 4 877107379 +504 1133 3 887910871 +306 111 4 876504442 +468 159 3 875292320 +387 99 5 886483620 +64 652 2 879365590 +586 276 3 884057692 +149 325 2 883512834 +620 101 2 889988069 +326 481 1 879874964 +552 123 3 879222033 +213 258 4 878870226 +254 1091 3 886475586 +521 132 3 885253186 +397 135 5 885349825 +620 121 5 889987825 +510 678 4 887667780 +3 338 2 889237297 +482 127 4 887644063 +637 100 4 882902924 +190 544 4 891033806 +619 328 1 885953684 +416 312 3 885114480 +624 262 4 891961078 +425 636 4 878738596 +308 404 3 887736998 +18 649 3 880131591 +501 508 4 883347920 +543 831 2 876718718 +487 845 4 883442260 +198 70 3 884207691 +627 403 2 879530694 +421 672 3 892241687 +560 1163 3 879976988 +59 237 3 888203371 +560 250 4 879976126 +500 129 4 886359266 +505 378 5 889333466 +330 501 5 876546719 +640 11 4 874777440 +512 302 4 888578289 +374 568 5 880396622 +548 603 5 891044356 +487 3 5 883444583 +214 196 4 891544493 +200 117 5 876042268 +323 258 4 878738826 +262 1 3 879962366 +637 690 5 882900888 +198 132 4 884208137 +546 895 3 885139608 +117 406 3 881010556 +620 379 4 889987656 +148 175 4 877016259 +417 395 4 879649199 +335 355 3 891567053 +195 433 3 878019342 +578 380 3 888957833 +418 288 5 891282836 +198 655 4 884209188 +577 595 4 880471170 +497 186 4 878759806 +87 414 3 879876673 +474 1020 3 887926573 +295 208 5 879517157 +343 461 2 876404957 +343 265 2 876406878 +566 1044 3 881651583 +387 121 2 886481228 +543 647 3 874864182 +116 285 4 876454023 +130 589 4 875216717 +622 30 4 882670190 +333 186 4 891045335 +548 307 4 891042474 +600 1231 2 888452152 +588 1041 2 890027063 +481 692 4 885828339 +632 164 4 879458692 +634 302 5 877974667 +416 821 4 886317146 +416 364 2 886319855 +311 197 4 884365686 +141 323 4 884584480 +194 238 5 879521396 +344 198 5 884814507 +409 28 2 881107943 +533 597 3 879192939 +579 100 4 880952201 +487 181 4 883441956 +532 1502 1 874796400 +263 622 4 891299949 +453 223 4 888203147 +642 1039 5 885602630 +385 502 3 879446235 +194 91 3 879524892 +27 9 4 891542942 +327 482 4 887745661 +458 1011 3 886394471 +435 67 4 884132919 +62 62 3 879375781 +28 429 5 881960794 +295 629 5 879518780 +116 325 3 876452186 +256 1047 4 882151743 +13 241 3 882397502 +85 813 4 879452664 +90 1137 2 891384516 +158 202 5 880135001 +585 639 4 891283921 +268 1228 1 875744357 +374 247 1 880936522 +553 86 3 879948771 +612 878 2 875324400 +524 100 5 884322047 +336 1188 3 877757418 +407 70 4 884197052 +456 658 3 881375351 +630 717 3 885667661 +276 765 3 877935335 +472 751 5 892790628 +435 392 3 884131404 +288 520 5 886374497 +519 288 4 883248089 +510 259 2 887667708 +69 742 3 882072956 +389 1041 3 880088269 +209 181 4 883417491 +483 99 3 884047323 +389 58 4 880087695 +445 346 5 891200869 +206 1062 3 888180018 +572 1137 3 879449708 +560 136 3 879975661 +409 58 4 881108170 +82 228 3 878769629 +610 216 4 888703291 +32 742 3 883717628 +468 15 4 875280518 +254 389 3 886473852 +566 392 4 881650519 +77 833 1 884733284 +142 346 5 888639815 +13 639 3 882139804 +346 318 5 874948105 +416 778 3 886316835 +72 170 3 880037793 +601 179 5 876351073 +506 226 4 885135844 +391 59 5 877399745 +554 227 3 876369198 +15 285 4 879455635 +447 1046 3 878856602 +546 930 5 885141260 +600 176 5 888451665 +540 240 3 882157662 +440 1591 5 891548567 +536 470 5 882360530 +405 523 2 885545975 +588 333 5 890014710 +312 154 4 891699372 +457 755 4 882549356 +542 346 3 886532149 +234 649 3 892335870 +509 332 2 883590800 +214 1073 5 892668130 +503 479 4 880383653 +457 462 5 882396283 +331 491 3 877196383 +533 319 3 879193132 +130 816 5 880396518 +592 457 1 882607779 +387 230 3 886483194 +552 866 3 879222002 +13 394 2 882399615 +374 123 2 880393511 +642 951 3 886568618 +587 272 5 892870956 +617 606 3 883788929 +286 433 5 877531537 +373 217 3 877098821 +160 763 4 876768025 +518 120 3 876824218 +83 371 3 880308408 +387 192 5 886484336 +533 412 1 879366159 +599 120 3 880953441 +450 735 4 882377590 +298 22 4 884182965 +23 156 3 877817091 +442 100 2 883388325 +207 735 4 877878688 +288 511 4 886373509 +72 461 3 880036824 +201 172 5 884111269 +506 417 4 874874396 +628 330 5 880777096 +642 38 4 885843141 +623 815 2 891034053 +618 1071 1 891308542 +85 210 3 879454981 +508 121 2 883767047 +82 288 3 876311518 +624 748 3 879792109 +102 228 4 888801465 +374 174 5 880395530 +334 936 3 891544764 +490 596 1 875427225 +626 288 3 878771243 +488 483 3 891293660 +325 443 4 891478817 +293 658 1 888907499 +144 475 1 888104032 +460 273 4 882912371 +313 133 5 891014956 +306 286 4 876503793 +559 238 1 891035674 +502 539 3 883701980 +23 174 4 874785652 +618 724 3 891309091 +464 298 4 878355061 +517 50 5 892660727 +194 449 1 879554897 +286 95 5 877531407 +468 423 4 875296868 +312 487 5 891699655 +181 820 1 878963342 +577 281 3 880470447 +416 1016 5 893213444 +214 24 3 891543176 +525 25 5 881085917 +417 388 3 879649178 +576 259 2 887168978 +562 427 4 879195244 +498 985 1 881961877 +435 404 2 884132266 +514 135 4 875311193 +378 742 4 880044697 +73 154 5 888625343 +492 523 4 879969583 +484 399 4 891195565 +305 91 2 886323303 +551 715 1 892785128 +85 465 4 879454437 +447 742 3 878854658 +618 12 4 891307263 +83 174 5 880307699 +160 240 4 876768990 +330 432 4 876546753 +442 508 3 883388283 +308 856 4 887738387 +294 249 5 877819941 +613 303 4 891227111 +334 74 2 891549246 +327 357 4 887747338 +217 147 3 889070174 +349 1128 3 879466062 +500 61 4 883875431 +345 245 2 884901497 +617 488 4 883789386 +612 1063 5 875325049 +371 186 5 880435288 +30 873 1 875061066 +373 603 4 877098262 +597 936 3 875343067 +429 662 3 882386309 +543 96 4 875665787 +126 326 2 887853919 +535 121 4 879618123 +193 280 4 889124016 +552 15 3 879222484 +535 421 4 879617701 +530 172 4 883790882 +454 612 3 881960145 +378 281 3 880044609 +504 452 2 887911974 +573 492 4 885843964 +466 87 3 890285706 +76 343 3 882129361 +435 183 5 884132619 +417 944 4 880952141 +448 305 4 891888509 +446 887 4 879786943 +270 694 5 876954927 +85 69 4 879454582 +429 69 5 882386309 +574 331 1 891279013 +458 169 5 886396390 +389 481 5 879991147 +3 302 2 889236939 +338 196 2 879438505 +57 8 4 883698292 +634 977 3 877018033 +541 82 3 883871562 +489 259 2 891445743 +495 2 2 888635595 +556 507 5 882136205 +587 688 3 892871536 +276 458 4 874786854 +279 659 5 877756699 +429 1418 3 882385267 +298 866 3 884183930 +469 656 5 879524116 +334 606 5 891545793 +536 195 4 882359431 +577 225 4 880470827 +592 291 3 882609008 +497 940 2 879362954 +314 410 5 877886706 +207 197 4 875774463 +534 151 4 877807692 +643 419 4 891448002 +600 27 3 888451977 +464 879 4 878354791 +21 262 4 874950931 +476 202 4 883364295 +389 407 1 880614292 +210 153 5 887730297 +592 56 5 882955948 +104 130 1 888465554 +429 275 4 882384603 +387 508 4 886479690 +627 467 5 879530042 +484 823 4 891195506 +468 214 5 875288771 +293 81 4 888906576 +234 863 5 892079689 +530 357 5 883784456 +290 271 3 880473557 +446 301 3 879786838 +270 443 3 876955976 +454 356 1 888267279 +246 741 5 884921533 +598 323 4 886711452 +606 966 5 880923745 +290 229 3 880473557 +174 151 3 886434013 +561 80 2 885810372 +239 659 3 889179808 +14 427 5 890881433 +500 246 5 883865128 +416 1220 3 886318155 +145 328 5 875270006 +54 338 3 880929490 +539 155 4 879788480 +616 355 4 891224881 +466 24 4 890285159 +295 559 4 879518674 +207 1049 3 877878860 +561 708 3 885809447 +141 250 4 884585128 +87 297 3 879877404 +436 218 4 887771123 +642 921 5 885603849 +262 95 3 879793503 +623 642 3 891034472 +102 188 2 888801812 +463 151 4 877385341 +621 197 4 885596884 +378 591 4 880044385 +397 475 4 885350045 +312 837 4 891699426 +618 944 2 891309266 +214 168 3 891544222 +486 237 4 879874629 +1 158 3 878542699 +407 705 4 875116117 +7 440 1 892131978 +211 462 4 879460096 +500 97 4 883874715 +244 527 5 880606155 +532 472 5 893119335 +506 356 3 874874630 +267 720 3 878973946 +532 177 4 888636501 +1 37 2 878543030 +484 568 3 891195417 +478 42 5 889388763 +542 179 4 886532571 +561 645 3 885808767 +573 176 3 885844481 +491 285 5 891185919 +375 302 5 886621795 +642 746 3 885602483 +455 125 3 879109133 +551 780 5 892785431 +615 660 4 879448882 +373 70 4 877099968 +638 194 3 876695774 +60 429 5 883326733 +194 15 4 879539127 +323 293 4 878739299 +110 451 4 886988909 +328 286 5 885044452 +537 491 4 886030584 +64 546 3 889739883 +554 79 5 876550491 +510 288 3 887667545 +450 245 4 892141986 +109 790 2 880580662 +145 354 4 891509877 +635 873 3 878878752 +468 856 4 875302155 +280 80 3 891701998 +279 380 4 889326161 +459 291 4 879563312 +538 168 3 877107408 +234 675 4 892078342 +433 174 5 880585730 +468 160 3 875295148 +569 340 4 879793075 +21 993 4 874951245 +621 72 2 874962900 +23 134 4 874786098 +640 53 4 874778274 +280 1048 4 891701002 +169 258 5 891268552 +606 287 4 880921656 +455 176 3 879111960 +625 96 5 892000372 +397 23 5 885350132 +342 656 5 875319151 +644 100 4 889076775 +237 127 5 879376671 +320 300 4 884748229 +618 196 4 891307889 +474 83 3 887925977 +532 357 5 892519935 +630 476 5 885667108 +353 258 5 891402757 +560 1171 3 879976807 +308 403 4 887738571 +606 1277 3 878148493 +14 32 5 890881485 +195 384 2 874825826 +207 180 3 879665352 +621 4 4 874962988 +435 246 5 884134345 +595 742 2 886921521 +523 189 5 883701800 +312 531 5 891698254 +487 419 3 883530644 +374 1248 3 880938044 +286 1038 5 884583549 +644 748 4 889076222 +11 549 4 891904617 +392 246 5 891038110 +429 1011 4 882387731 +91 31 5 891438875 +446 359 3 879787226 +635 294 3 878878588 +551 334 4 892775970 +406 404 5 884630554 +277 137 3 879543336 +627 956 2 879530463 +13 760 1 882396914 +130 864 2 874953595 +291 427 4 874868304 +297 455 4 874954611 +207 282 4 879577372 +76 56 5 875027739 +628 168 4 880777167 +451 263 2 879012811 +561 202 3 885808867 +177 527 4 880130898 +592 266 1 882607744 +504 385 4 887832571 +261 321 3 890455521 +631 286 3 888465033 +371 452 2 880435634 +457 173 5 882395049 +334 12 5 891547016 +144 423 5 888105714 +592 258 5 882607476 +67 105 4 875379683 +110 1222 2 886989191 +453 158 2 888205937 +497 173 5 878759659 +630 117 5 885666804 +230 91 3 880485043 +538 317 4 877107765 +513 181 5 885062332 +314 36 2 877889103 +627 97 2 879529958 +436 219 5 887770064 +198 200 4 884207239 +457 86 3 882397455 +138 603 4 879024184 +44 423 4 878348111 +567 132 3 882426021 +334 886 4 891544233 +490 515 3 875427224 +608 729 4 880407079 +622 240 3 882590420 +615 294 3 879447613 +529 340 1 882535181 +276 123 4 874786657 +210 732 4 887730676 +21 289 3 874950972 +83 755 5 887665423 +472 541 5 892791017 +579 288 4 880951346 +328 215 3 885046773 +488 385 4 891294014 +151 111 4 879542775 +378 273 4 880044221 +406 87 3 879445809 +450 842 4 882376446 +297 109 4 874954814 +551 354 3 892775752 +417 298 3 879646327 +301 693 5 882076806 +256 323 5 882150193 +481 4 3 885829196 +543 110 2 874865635 +144 251 4 888103929 +499 879 3 885598827 +109 386 1 880579916 +102 373 2 888802508 +506 892 1 888848224 +633 176 3 875325577 +405 585 1 885547447 +497 114 4 879309992 +361 86 4 879440941 +198 433 2 884208326 +215 237 4 891435761 +481 98 4 885828574 +406 52 5 879793235 +599 1095 4 880952316 +566 479 4 881649428 +564 121 4 888730534 +457 554 4 882549682 +303 1218 4 879484350 +543 1619 3 874865635 +286 1075 5 877532385 +328 684 5 885046537 +577 230 3 880474357 +442 276 4 883391027 +430 294 2 877225239 +624 742 4 879793093 +625 258 4 891262561 +454 520 4 881959607 +534 370 4 877808260 +542 204 3 886532762 +428 538 4 885944005 +452 188 4 875560300 +629 58 4 880117215 +232 32 4 888549467 +96 56 5 884403336 +506 140 3 874873327 +452 174 4 875263413 +538 568 3 877107491 +439 273 2 882892675 +417 709 3 879647355 +489 680 5 891445439 +510 1025 3 887667780 +10 513 4 877886598 +303 379 4 879485546 +173 937 4 877557077 +325 628 3 891478772 +200 235 2 884128065 +320 769 3 884751288 +551 56 5 892776450 +83 781 4 883868890 +537 101 2 886031860 +618 77 3 891309720 +506 38 3 885135912 +636 222 5 891449148 +481 1039 4 885828732 +13 850 4 882140318 +369 752 4 889428011 +526 312 2 885682295 +253 222 4 891628548 +193 1074 3 889126453 +405 482 3 885544739 +606 258 4 887058788 +452 286 4 876298932 +385 1462 4 879447555 +409 30 4 881108881 +495 705 4 888634111 +573 632 4 885844007 +385 89 4 879441853 +363 98 3 891495402 +44 89 5 878347315 +293 286 3 888904265 +14 222 4 876965061 +370 50 4 879434707 +483 1 4 878950971 +411 28 4 892845986 +460 258 3 882910637 +589 307 1 883352402 +137 89 5 881433719 +645 748 1 892052039 +521 117 4 884475913 +32 307 2 883709915 +317 288 4 891446190 +607 528 4 883879556 +267 391 3 878973675 +552 1315 3 879222452 +13 747 4 882140624 +551 846 3 892783942 +268 50 5 875309719 +425 358 4 890346630 +250 558 4 878091965 +94 589 5 891720786 +28 117 4 881957002 +522 128 4 876961133 +442 203 3 883391146 +435 89 4 884131489 +642 720 5 885606787 +599 934 3 880953441 +373 180 3 877098678 +387 496 3 886480515 +85 168 4 879454304 +504 5 4 887912462 +387 684 3 886483099 +315 770 3 879821348 +249 191 4 879572167 +497 2 1 879310883 +405 347 4 885544635 +342 1528 3 875318585 +540 126 3 882157105 +638 183 4 876694704 +419 478 5 879435785 +487 174 5 883446404 +466 568 3 890285034 +299 94 1 889503564 +233 95 5 877661496 +344 372 4 884901469 +465 638 3 883531380 +551 1035 2 892778244 +43 312 4 883953502 +642 728 4 886131674 +326 182 2 879876861 +640 941 5 874778095 +435 588 4 884131996 +234 181 3 892079373 +640 173 5 886354270 +401 815 3 891032662 +643 671 4 891446652 +166 243 3 886397827 +283 1079 4 879297526 +58 1006 2 884304865 +344 1014 4 889814600 +407 385 4 875045658 +201 402 2 884140975 +262 52 3 879792331 +363 451 2 891497130 +536 542 1 882364876 +586 578 3 884062621 +22 109 4 878886710 +478 111 3 889397582 +527 543 4 879455740 +293 272 4 888904180 +648 96 5 884368538 +213 521 4 878955474 +184 118 2 889908344 +548 504 5 891044482 +543 381 4 877547580 +13 194 5 882141458 +642 1469 4 886568725 +610 527 4 888703801 +459 264 4 879561755 +445 895 2 891035897 +54 151 2 880936670 +194 640 1 879535548 +385 32 5 879442988 +550 538 5 883425812 +397 197 5 885349825 +379 383 2 881000374 +580 294 4 884124337 +14 288 4 876964936 +553 479 5 879948386 +325 1230 3 891479737 +478 72 1 889397841 +82 511 3 878769948 +151 134 4 879524131 +548 345 1 891042194 +393 108 2 887744658 +542 479 4 886532265 +625 151 3 891999874 +425 219 2 878738956 +458 405 4 886395022 +19 325 4 885412251 +550 310 5 883425627 +595 763 3 886921551 +345 433 4 884992142 +527 317 4 879456405 +622 519 3 882591938 +456 71 3 881374710 +174 31 4 886434566 +534 322 4 877807461 +457 584 4 882548615 +562 727 5 879196267 +111 258 4 891679692 +235 338 1 889654821 +145 650 4 875273120 +632 71 4 879458649 +598 349 4 886711452 +393 109 3 887744419 +427 681 5 879701326 +60 546 4 883326837 +633 526 4 877212250 +197 29 3 891410170 +379 88 4 880525968 +416 748 4 876696687 +468 222 4 875279269 +90 497 5 891384996 +541 452 3 883874518 +642 132 3 885603636 +246 11 4 884922512 +253 1468 3 891628142 +592 1319 1 882608234 +399 288 3 882340200 +95 203 3 879198888 +324 50 5 880575618 +551 291 4 892778337 +472 1228 4 875983270 +127 343 5 884364151 +542 790 3 886533090 +351 748 4 879481613 +633 143 4 877211134 +606 756 3 878146986 +31 1021 3 881548082 +620 678 3 889986642 +62 483 4 879373768 +194 864 2 879539305 +640 38 4 874778612 +457 448 4 882548537 +230 99 3 880485066 +456 172 5 881373019 +145 405 3 875270970 +13 846 2 882141997 +470 284 4 879178884 +542 73 3 886533227 +334 228 5 891547894 +308 678 3 887736408 +630 278 4 885667508 +533 742 4 879192681 +195 1030 2 877835451 +392 324 1 891037720 +445 324 1 891199297 +580 123 4 884125199 +429 290 3 882386333 +497 781 3 879310445 +533 21 3 888239930 +401 235 1 891032474 +635 300 3 878879107 +1 181 5 874965739 +491 1281 3 891186806 +447 158 3 878856262 +630 1040 4 885667660 +194 241 2 879527725 +178 316 4 888513290 +622 196 3 882669695 +72 521 4 880036718 +435 24 4 884133084 +538 213 3 877364067 +298 205 5 884181969 +493 258 5 884129725 +385 653 4 881948265 +60 275 4 883326682 +385 276 3 879440098 +108 319 5 879879662 +533 194 4 879191061 +21 200 5 874951695 +551 658 5 892783559 +246 228 3 884921558 +592 952 4 882608699 +413 270 4 879969027 +585 638 4 891284016 +146 271 3 891457749 +489 286 4 891366571 +421 12 5 892241458 +532 151 5 892519935 +514 405 2 875463386 +503 168 5 880383624 +91 187 5 891438908 +524 679 2 884636746 +620 1035 4 889988232 +497 80 3 879363181 +195 313 5 883688297 +586 470 4 884064631 +462 313 5 886365231 +511 908 4 890004938 +532 914 5 893118711 +627 175 1 879530110 +437 99 4 881001946 +451 989 1 879012857 +500 298 4 890009939 +455 87 3 879110905 +497 288 2 878759351 +6 272 4 883717304 +645 69 4 892053644 +325 16 1 891478981 +74 294 4 888333311 +320 410 4 884748839 +49 217 3 888067405 +429 652 4 882385118 +527 507 5 879455654 +393 72 4 889730045 +426 134 4 879444787 +130 289 5 874953291 +171 906 3 891034684 +474 209 5 887927670 +85 631 4 886282927 +541 1035 3 883874749 +244 393 3 880607365 +561 170 4 885808738 +268 743 1 875743335 +85 180 4 879454820 +207 509 4 877878688 +642 105 5 885606482 +281 310 4 881200264 +361 659 5 879441324 +648 473 3 882211965 +449 748 2 879959273 +59 654 4 888204309 +561 302 4 885806797 +335 300 5 891567029 +535 131 4 879618532 +497 109 4 878759659 +330 168 3 876546439 +526 936 5 885682448 +445 1601 1 891199533 +357 546 5 878951729 +102 218 3 888803002 +308 239 3 887740033 +595 129 3 886921088 +298 393 4 884183099 +123 242 5 879809053 +442 186 4 883388429 +639 488 4 891240160 +286 315 5 889651138 +417 288 3 879647749 +561 1153 3 885808986 +236 866 3 890117223 +292 462 3 881105657 +504 537 3 887910811 +622 120 1 882592643 +429 183 4 882385489 +398 1020 3 875659843 +456 232 2 881374389 +356 1294 4 891405721 +13 430 5 882139495 +346 1228 4 875265825 +401 478 2 891033497 +392 127 5 891038110 +606 64 5 880923579 +49 1021 5 888066647 +450 714 4 882472144 +624 272 5 885215463 +128 70 3 879967341 +474 227 4 887926872 +573 183 3 885844091 +385 473 3 879440584 +189 191 5 893265402 +312 478 5 891698664 +500 742 3 883865290 +634 1008 2 877017951 +536 63 4 882360802 +577 808 3 880475094 +7 234 5 891351041 +429 95 3 882385012 +506 258 4 884517178 +57 42 5 883698324 +479 82 4 879461898 +524 670 4 884637203 +632 25 1 879459418 +648 288 4 882211654 +490 277 3 875428531 +506 878 3 874872812 +330 993 4 876544632 +630 127 2 885666536 +633 288 2 875324233 +473 275 5 878157527 +194 155 3 879550737 +488 83 4 891294530 +234 525 4 892078984 +232 127 3 888550101 +514 651 4 875462901 +456 806 3 881373617 +566 25 2 881651077 +551 825 5 892784049 +175 172 5 877107339 +393 228 3 889728385 +500 44 1 883875862 +244 169 5 880606274 +6 405 1 883600066 +229 344 5 891633028 +588 289 2 890015063 +184 1160 5 889907363 +481 427 4 885828807 +624 952 3 879793129 +592 238 5 882956321 +381 14 5 892696512 +543 185 4 875662979 +638 472 3 876695307 +303 109 4 879467131 +494 427 5 879541112 +642 1033 3 886569278 +525 118 3 881086393 +212 528 5 879303950 +271 494 4 885848770 +634 919 2 877979309 +387 325 2 886484460 +404 901 2 883790585 +83 161 4 887665549 +591 275 4 891039974 +44 260 4 878340905 +603 181 5 891956154 +609 878 1 886895827 +6 166 4 883601426 +62 405 3 879373118 +107 288 3 891264432 +535 44 4 879619035 +198 1244 2 884206659 +36 1026 5 882157581 +437 447 4 880143663 +267 218 4 878972650 +588 699 4 890024385 +254 1050 3 886472609 +405 58 1 885546247 +436 568 5 887769416 +484 257 5 882079956 +427 359 5 879701253 +13 763 1 882141458 +337 831 1 875236281 +276 47 4 874787407 +454 649 2 888267279 +160 192 5 876861185 +639 306 4 891238550 +18 134 5 880129877 +457 89 5 882397058 +234 531 3 892078984 +21 561 1 874951761 +7 403 4 891351234 +542 209 4 886532762 +300 288 4 875649995 +459 546 1 879563367 +600 228 3 888451840 +90 1134 3 891385752 +534 325 4 877807461 +385 131 4 879445754 +144 1226 4 888104737 +18 969 3 880131106 +531 312 5 887048899 +130 24 5 874953866 +642 1415 4 886569783 +595 597 2 886921634 +311 1041 3 884366334 +634 286 5 877018125 +603 748 5 891956302 +592 273 5 882607986 +324 289 5 880575163 +551 268 4 892775516 +550 304 3 883425743 +249 56 5 879572189 +389 191 5 880087493 +10 529 3 877892438 +577 655 4 880474394 +393 721 2 889727930 +56 97 3 892677186 +532 526 5 893119415 +556 64 5 882136162 +506 47 4 874876486 +600 226 4 888451977 +145 979 3 879161882 +621 559 5 874964915 +385 525 4 879444685 +412 64 4 879717505 +320 235 3 884748929 +585 224 2 891283681 +489 989 3 891446201 +634 124 3 875728913 +405 149 1 885549746 +280 79 4 891700453 +545 689 4 879898362 +534 742 5 877807653 +13 355 3 888688733 +269 365 2 891448738 +431 689 3 881127786 +450 4 3 882373865 +532 419 5 888635366 +16 1 5 877717833 +93 151 1 888705360 +621 293 3 880227385 +617 134 3 883788900 +146 319 4 891457538 +405 75 2 885546069 +297 230 2 875238814 +443 286 5 883504521 +588 316 5 890015021 +387 715 5 886484157 +99 117 5 885678784 +221 178 4 875245989 +374 1210 4 880938100 +221 181 4 875244087 +82 21 1 884714456 +634 221 1 875729105 +391 491 3 877398898 +226 652 3 883889012 +647 554 4 876533810 +479 189 2 879461298 +644 300 5 889075967 +206 343 1 888179788 +595 368 1 886921977 +207 70 3 875506737 +606 760 3 880923349 +588 652 2 890026339 +507 1089 5 889966088 +470 100 4 879178370 +187 69 4 879465566 +466 127 3 890284766 +585 1018 2 891286059 +26 121 3 891377540 +542 684 4 886532238 +151 965 5 879524849 +422 98 5 879744014 +494 1197 3 879541405 +399 551 1 882349022 +605 174 3 879424743 +327 204 4 887818658 +621 231 4 874964375 +246 576 1 884923864 +542 818 4 886533112 +536 139 4 882361317 +563 254 3 880506963 +223 284 2 891549683 +313 495 2 891016280 +498 483 3 881957625 +642 768 4 885606609 +380 152 2 885478312 +499 516 4 885599572 +271 648 4 885848770 +334 318 4 891545926 +493 273 4 884131717 +621 67 4 880739654 +374 554 2 880938370 +403 597 2 879786747 +416 662 4 876699994 +621 208 4 874962824 +335 342 2 891566976 +109 98 4 880572755 +151 632 4 879528779 +617 217 1 883789507 +346 276 1 874950029 +280 678 2 891700124 +650 630 5 891371061 +393 270 5 887742040 +592 689 2 882607690 +514 14 3 875318331 +537 182 4 886030862 +296 1160 4 884196964 +251 45 5 886271855 +184 845 3 889907971 +189 83 4 893265624 +308 367 4 887738571 +625 428 5 891953755 +553 641 4 879948386 +448 1176 2 891887393 +85 751 3 884820157 +590 126 5 879439316 +422 551 2 879744218 +450 302 5 882215617 +588 278 5 890027600 +644 823 4 889076997 +478 743 1 889388534 +262 443 3 879792027 +622 521 5 882670009 +626 324 4 878771281 +21 981 2 874951382 +378 528 5 880056034 +201 222 3 884112201 +435 176 5 884131627 +277 508 4 879543487 +612 9 3 875324876 +160 168 4 876858091 +487 300 5 883441026 +618 282 3 891307289 +587 873 3 892871284 +303 801 1 879543679 +593 66 5 875671807 +176 927 3 886048305 +642 210 5 885842610 +537 259 1 886029116 +458 192 4 886396240 +342 482 5 875318936 +319 259 2 889816172 +328 752 2 888641528 +144 70 4 888105587 +151 952 3 879528729 +642 135 3 886131953 +498 275 3 881955348 +198 265 3 884207206 +198 1245 4 884205317 +330 257 5 876544609 +311 530 3 884365201 +552 1620 3 879222071 +604 234 5 883668097 +276 274 3 874791960 +566 157 5 881649985 +63 302 3 875746809 +452 432 2 875264432 +296 282 4 884196712 +606 746 5 880925394 +459 148 5 879563367 +276 201 5 889174849 +194 483 4 879520916 +106 275 4 883877219 +495 288 4 888633165 +500 1018 3 883875756 +76 1019 3 879576256 +493 56 4 884130911 +525 595 2 881086803 +624 886 4 879792251 +429 91 3 882386260 +576 237 4 886985003 +508 1135 3 883777382 +2 273 4 888551647 +154 945 3 879138713 +363 682 1 891493634 +618 392 3 891308979 +231 471 5 888605273 +104 311 1 888442112 +639 58 3 891239296 +94 54 4 891722432 +239 428 5 889180978 +264 478 5 886122194 +650 517 3 891382033 +479 324 1 879459611 +118 210 5 875384825 +455 89 3 879111616 +457 470 5 882398204 +566 186 3 881649893 +13 286 3 881514683 +648 298 2 884884466 +436 216 4 887770064 +368 561 2 889783617 +592 1 4 882608021 +519 878 5 884545961 +284 690 3 885329468 +487 684 5 883446543 +622 105 3 882591726 +13 867 5 882399615 +521 11 4 884477993 +532 689 4 880484527 +151 14 5 879524325 +561 45 3 885808716 +417 24 3 879646531 +454 454 3 881959745 +405 356 5 885545912 +599 928 4 880953441 +301 702 4 882077784 +308 32 5 887737432 +387 515 5 886480755 +501 456 3 883348610 +271 845 1 885847800 +543 737 3 874866535 +556 288 4 882135646 +18 238 5 880132437 +643 154 4 891447286 +406 639 4 879793295 +450 121 3 882395537 +216 201 3 880235734 +561 14 3 885808929 +445 742 1 891200078 +601 290 3 876350501 +625 692 3 892000518 +637 829 2 882905070 +201 118 1 884310148 +406 712 3 880132091 +189 485 4 893265710 +561 1110 2 885809524 +577 1531 4 880475408 +474 963 5 887926105 +256 1046 4 882164927 +72 792 3 880036718 +334 902 4 891550520 +591 934 3 891039769 +421 100 4 892241422 +648 674 3 884883476 +135 260 3 879857575 +413 877 3 879969100 +394 391 4 881058330 +286 139 3 889653012 +305 315 5 886308168 +222 826 2 883816093 +271 190 4 885848707 +375 770 3 886622131 +13 413 1 882396984 +514 729 4 886189841 +561 715 3 885809606 +44 196 4 878348885 +313 892 4 891013059 +393 40 1 889729185 +543 28 4 875663543 +535 469 3 879618464 +559 210 4 891034957 +280 527 5 891700768 +638 50 4 876694704 +405 810 1 885548094 +344 708 4 884901561 +158 742 4 880134261 +633 778 2 877211886 +11 98 2 891905783 +57 472 1 883697253 +318 403 2 884496759 +487 111 3 883444558 +363 172 5 891495711 +94 518 5 891720950 +632 202 4 879457712 +532 601 3 888629518 +601 140 1 876351298 +378 787 3 880332480 +537 399 2 886032246 +497 651 4 879310762 +615 640 3 879448182 +142 514 5 888640317 +144 262 3 888103444 +552 7 3 879221580 +563 50 5 880507404 +198 185 3 884209264 +358 1021 5 891269464 +314 405 4 877886522 +3 322 3 889237269 +214 169 4 891544175 +551 527 5 892777123 +532 658 5 893119335 +647 748 4 876532501 +314 56 1 877887568 +59 1115 3 888203128 +450 430 4 882377590 +230 628 3 880485421 +437 212 3 880141402 +396 222 5 884646152 +643 229 3 891449640 +539 197 5 879787985 +551 98 5 892776524 +592 262 5 882607356 +622 194 4 882669762 +179 340 4 892151064 +618 79 5 891307494 +568 1203 5 877907281 +481 197 3 885828773 +535 514 5 879617531 +488 11 1 891294158 +650 514 3 891371020 +474 789 4 887927152 +651 292 2 879348881 +589 271 3 883352654 +554 252 4 876232528 +1 136 3 876893206 +481 153 5 885828165 +604 185 2 883668175 +592 272 5 882955387 +545 215 3 884133881 +487 956 4 883530702 +521 380 3 884478483 +648 304 5 884363798 +144 466 2 888105823 +497 526 3 879362478 +548 315 3 891415258 +308 11 5 887737837 +5 371 1 875720967 +178 50 5 882823857 +588 496 3 890023879 +378 234 4 880045652 +592 61 4 882956586 +627 300 4 879529486 +264 1474 2 886123728 +346 597 3 875003052 +181 844 1 878962816 +345 79 4 884992291 +81 237 4 876533764 +587 312 2 892871563 +422 665 5 879744143 +210 514 5 887730532 +543 71 4 874864870 +472 66 5 875981158 +543 748 3 876110379 +551 1079 1 892785431 +537 553 2 886032123 +592 32 5 882956067 +579 1047 3 880952579 +394 226 2 880888850 +92 1211 3 876175395 +501 313 3 883346623 +618 210 3 891308703 +561 98 4 885807393 +7 578 3 891354090 +363 1101 3 891495004 +210 15 4 887737710 +94 191 5 885870175 +136 744 5 882693569 +13 769 3 882397040 +405 603 3 885548578 +457 747 4 882397787 +399 237 3 882510490 +254 622 4 887347350 +62 357 4 879374706 +501 257 4 883348114 +393 824 3 889731793 +397 435 4 885349376 +243 708 3 879988520 +551 912 3 892775723 +1 257 4 874965954 +70 411 3 884066399 +311 509 3 884366590 +334 553 1 891548866 +457 655 5 882397879 +642 443 2 885603870 +210 392 3 887736017 +308 21 3 887740729 +634 150 3 875728834 +498 202 3 881958897 +18 627 3 880131931 +534 687 5 877807486 +393 273 3 889727768 +308 117 3 887738620 +503 640 1 880383201 +334 303 4 891544077 +567 181 1 882426246 +394 540 4 881058330 +188 22 5 875072459 +253 482 5 891628451 +128 770 3 879968008 +592 330 3 882607606 +618 50 5 891307175 +406 520 4 879445735 +568 1005 1 877907877 +628 302 5 880776981 +543 165 4 874863436 +639 170 4 891239790 +207 748 3 877750478 +523 8 5 883702125 +413 15 4 879969709 +398 87 4 875716709 +178 319 1 884836946 +234 290 3 892333980 +572 1171 3 879449734 +532 929 3 874791786 +354 59 5 891218208 +406 517 2 880131550 +373 275 5 877098437 +599 988 4 880951211 +73 213 4 888625753 +416 538 4 885114408 +180 12 2 877355568 +595 291 3 886921656 +560 1008 3 879976731 +479 241 3 879461800 +457 453 2 882551854 +417 402 4 879648656 +324 282 5 880575619 +612 924 5 875324710 +443 678 2 883504818 +279 760 3 875297522 +312 1451 4 891699156 +235 318 5 889654971 +305 664 2 886324462 +354 190 4 891217221 +99 367 4 886519075 +291 940 3 875086608 +549 288 4 881672605 +470 118 4 879178645 +449 61 5 880410700 +472 771 4 875983427 +472 384 3 875982051 +303 692 4 879468123 +317 879 3 891446575 +256 356 3 882164927 +194 174 4 879520916 +632 28 3 879458649 +466 344 5 890284231 +506 930 1 877984514 +474 513 5 887924571 +608 58 2 880406800 +472 228 5 875979910 +491 236 4 891185919 +606 33 4 880928180 +496 554 2 876070997 +566 856 5 881650690 +437 137 5 880140221 +479 197 4 879461102 +235 86 4 889656113 +496 89 5 876072633 +639 487 5 891240566 +496 418 3 876066848 +109 584 2 880581127 +297 243 1 878771163 +532 1226 4 893015131 +144 48 5 888105197 +234 613 4 892079434 +503 205 4 880472344 +43 588 4 883955745 +489 315 5 891448389 +264 603 5 886122508 +637 831 1 882904961 +213 463 5 878956000 +569 475 3 879793717 +472 90 5 892791063 +591 88 3 891031525 +303 98 5 879466572 +577 168 5 880472124 +606 288 4 877641931 +416 1132 2 876697913 +276 281 3 874787065 +222 929 1 881061213 +551 234 4 892777092 +570 302 4 881262145 +16 946 5 877724727 +452 781 3 888568714 +76 514 4 882129456 +295 69 5 879517911 +456 452 2 881375515 +256 451 4 882165135 +416 24 5 893212730 +629 9 4 880117485 +110 684 4 886988480 +514 510 3 886190480 +385 135 3 879444991 +594 14 4 874781173 +207 631 2 877847187 +621 576 2 874964605 +234 389 3 892335309 +630 871 2 885666918 +500 708 5 883873999 +542 655 4 886532908 +627 162 3 879530568 +395 97 5 883763800 +405 1222 1 885548049 +417 186 5 879647118 +435 167 3 884133224 +401 651 4 891032919 +300 300 4 875649995 +608 1119 5 880406552 +123 514 5 879872193 +505 553 4 889333937 +567 478 5 882426079 +523 72 4 883702351 +621 301 4 880226534 +295 228 4 879518414 +373 1228 2 877107379 +533 23 3 879191770 +503 318 5 880383679 +627 581 3 879530662 +593 501 2 886193661 +264 746 3 886123358 +110 421 4 886988873 +134 326 5 891732296 +326 219 2 879877349 +26 50 4 891386368 +455 71 3 879112098 +271 168 2 885848343 +279 558 4 875307210 +296 1284 4 884196765 +481 190 5 885828732 +619 62 1 885954185 +639 462 5 891239838 +545 208 3 879899619 +462 310 5 886365197 +541 15 3 883864806 +449 59 5 880410599 +435 924 3 884132072 +472 73 4 875981317 +269 173 1 891449429 +286 210 5 877535208 +463 270 3 889936535 +397 423 5 885349999 +194 380 1 879535549 +639 659 3 891240111 +548 327 3 891042794 +447 597 3 878855021 +642 97 4 885602418 +500 88 4 883875926 +363 174 4 891495109 +454 497 3 881959876 +479 70 4 879461630 +332 105 2 887938631 +479 185 4 879461604 +524 97 5 884636583 +622 693 4 882592383 +279 166 4 879572893 +526 1 5 885682562 +559 527 4 891034172 +137 748 4 881432626 +464 286 3 878354626 +342 208 4 874984430 +551 222 5 892783411 +234 88 3 892335920 +645 179 5 892054600 +97 82 4 884239552 +246 178 5 884920918 +334 484 5 891545793 +214 8 4 892668196 +534 825 4 877808281 +345 44 3 884992770 +554 174 5 876550257 +6 194 4 883601365 +601 740 4 876347196 +346 363 3 874951062 +433 474 3 880585759 +643 1101 3 891448002 +436 762 4 887771722 +295 213 5 879517324 +479 398 1 889125474 +110 689 3 886987584 +327 271 3 887743644 +543 186 3 877550660 +425 289 1 878737635 +597 298 5 875339723 +69 294 2 882027233 +409 461 3 881108364 +462 315 4 886365837 +450 1425 4 882471737 +185 25 4 883525206 +548 7 5 891044304 +234 313 4 891033261 +534 986 5 877808319 +519 748 2 883248307 +13 32 4 882140286 +642 1023 3 885842351 +207 185 4 875509832 +274 300 5 878944464 +210 393 3 891035904 +303 1145 2 879544219 +561 135 4 885809336 +452 479 5 885544109 +545 404 4 884133839 +642 133 5 886206274 +374 218 4 880396444 +442 635 4 883389380 +429 2 3 882387599 +642 50 5 885604280 +226 813 4 883890235 +644 294 4 889076095 +95 290 3 879193973 +144 327 3 888103444 +160 151 4 876769097 +318 193 3 884496367 +396 455 2 884646582 +295 196 5 879966498 +417 513 5 879647580 +13 204 5 882140318 +586 229 3 884062742 +381 121 2 892696793 +130 895 5 884623799 +194 81 2 879523576 +592 334 3 882607476 +618 378 4 891309514 +174 69 5 886514201 +341 682 3 890757961 +373 417 3 877099092 +654 4 4 887864830 +52 527 5 882922927 +595 1009 4 886921584 +76 1155 2 882607017 +414 301 3 884999128 +500 639 4 883875195 +622 168 4 882592041 +170 322 5 884103801 +537 301 2 886028647 +514 631 4 875463386 +643 546 3 891445660 +455 40 3 879111662 +527 517 5 879456186 +160 153 3 876860808 +504 318 5 887832593 +601 482 4 876350142 +394 416 5 880889350 +632 419 4 879457903 +102 72 3 888803602 +112 937 4 884992801 +321 212 3 879440342 +551 174 4 892776650 +545 55 3 879899233 +543 88 4 877550535 +161 100 4 891171127 +393 347 4 887742040 +76 172 5 882606080 +520 242 5 885168819 +315 645 4 879821065 +643 1149 3 891447835 +395 240 1 886481149 +605 754 3 879425457 +487 823 1 883445302 +470 508 5 879178932 +488 64 5 891294529 +476 367 3 883364475 +368 184 5 889783453 +536 1118 2 882360776 +328 315 4 885044782 +90 905 4 891383319 +81 619 3 876534009 +184 1061 3 889908264 +331 221 4 877196308 +493 59 5 884132315 +458 245 2 889324066 +244 763 4 880604830 +437 753 4 880140927 +21 7 5 874951292 +495 479 4 888632574 +178 155 4 882828021 +537 744 3 886030380 +360 64 5 880355485 +63 286 4 875746809 +634 596 3 875729105 +394 739 4 880889766 +551 240 3 892784673 +265 327 3 875320052 +639 709 3 891239581 +94 800 3 891723296 +279 1242 1 888797284 +118 800 4 875385280 +621 117 5 880227268 +363 206 2 891496587 +653 164 3 878854633 +529 1038 4 882535304 +541 225 4 885595846 +618 705 3 891307825 +13 5 1 882396869 +527 479 4 879455707 +277 293 4 879544145 +588 288 4 890014818 +286 132 5 877531791 +535 269 4 879617063 +316 69 3 880853881 +213 182 4 878955766 +267 180 5 878971690 +363 597 4 891498286 +293 159 3 888907674 +592 168 5 882955825 +308 49 3 887740833 +500 62 3 883876690 +514 109 3 876067235 +548 12 5 891044356 +290 252 3 880732575 +64 434 4 889739052 +146 331 5 891458193 +299 1226 2 877878602 +348 1060 3 886523621 +474 1016 3 887915567 +639 553 3 891240868 +368 292 4 889783251 +642 151 3 886568791 +620 625 3 889988005 +21 5 2 874951761 +191 339 3 891562090 +497 510 3 879362496 +543 187 4 874866535 +488 133 4 891294606 +66 237 4 883601355 +348 123 5 886523361 +276 9 5 889174849 +280 755 2 891701278 +565 10 5 891037453 +217 562 3 889070211 +65 15 5 879217138 +122 1044 5 879270923 +644 257 5 889077278 +521 258 4 884475503 +566 98 4 881649445 +604 413 3 883668175 +648 586 3 884883149 +653 573 1 880152843 +504 1522 3 887840942 +43 781 3 883956494 +580 281 2 884126077 +305 42 4 886324172 +401 97 4 891033582 +6 514 5 883600657 +588 1508 3 890029795 +71 282 3 885016990 +542 230 4 886533774 +606 22 5 880927357 +630 25 2 885666779 +456 922 4 881371595 +545 71 5 879901459 +559 528 4 891034209 +326 393 4 879876327 +637 595 3 882904537 +380 12 5 885478218 +497 95 4 879309993 +539 481 4 879788572 +561 241 2 885809119 +591 72 3 891040366 +406 665 3 879792928 +535 971 2 879618569 +619 241 5 885954083 +178 184 5 882827947 +650 843 2 891388266 +130 342 3 881076199 +94 219 4 891721528 +125 427 4 879454277 +493 7 3 884130372 +378 926 1 880318158 +293 65 3 888906945 +653 402 1 880151488 +465 478 4 883531246 +405 567 2 885548474 +567 617 4 882425843 +606 7 4 878143509 +385 745 4 879443352 +144 500 4 888105419 +592 319 4 882607434 +87 546 3 879876074 +90 863 4 891384114 +320 385 4 884749327 +125 300 5 892835836 +374 98 5 880394929 +585 1158 4 891282573 +378 294 2 880043804 +118 960 5 875385136 +422 436 3 879744085 +533 97 2 879438666 +532 353 2 886364951 +539 527 4 879788136 +561 93 4 885809224 +495 184 5 888633086 +533 313 5 884007337 +636 596 5 891449212 +388 259 3 886440334 +559 427 4 891034095 +474 435 5 887926573 +592 179 5 882956761 +555 326 4 879962096 +634 823 3 877017923 +159 195 3 884360539 +320 121 5 884748733 +119 986 3 874781068 +542 100 4 886532432 +363 171 5 891495849 +444 275 4 891979402 +110 376 2 886989340 +623 204 5 891035112 +553 603 5 879948695 +637 280 2 882904679 +104 345 4 888442171 +59 618 4 888205956 +389 616 4 879991329 +246 798 2 884924001 +561 959 3 885810060 +622 367 4 882670712 +653 444 1 880153329 +551 183 4 892776824 +592 345 4 888553233 +328 8 3 885047018 +458 1338 3 886395393 +437 281 1 881001148 +36 878 5 882157581 +407 423 4 876340001 +409 633 4 881108126 +555 271 3 879961963 +591 921 4 891031257 +13 332 3 881515457 +487 133 4 883530865 +415 323 2 879439205 +497 108 3 879309760 +391 421 2 877399269 +569 237 4 879793717 +465 319 3 883529372 +448 887 2 891888042 +450 686 4 882473826 +422 1007 4 875129839 +601 584 4 876350142 +587 343 4 892871337 +601 418 2 876350766 +181 326 1 878961709 +201 567 3 884112673 +592 28 4 882956586 +94 585 3 891723494 +13 737 4 882399615 +279 751 4 882593314 +151 1299 4 879543423 +230 420 5 880485726 +533 210 5 879191401 +465 475 3 883530313 +463 117 3 877385731 +533 1033 4 879192702 +618 549 2 891308342 +523 204 5 883702171 +500 181 3 883865462 +478 168 4 889388697 +187 736 4 879465632 +537 549 2 886031965 +413 269 4 879968793 +144 343 2 888103725 +560 975 3 879977081 +630 222 4 885666779 +14 628 5 880929697 +588 451 5 890026059 +532 197 5 889235367 +650 747 3 891384202 +514 735 4 875462764 +600 265 3 888451582 +551 12 4 892776419 +544 258 3 884795135 +286 749 3 889651060 +638 410 4 876695774 +334 176 3 891547040 +507 352 1 889964274 +622 72 3 882671142 +493 264 3 884129923 +193 343 1 889123777 +629 528 5 880117395 +405 536 1 885549746 +468 1014 3 875280539 +474 642 4 887927152 +343 3 4 876406256 +592 169 5 882955663 +450 775 4 882469432 +573 1012 2 885844339 +285 205 4 890595900 +255 264 2 883215829 +23 204 3 874786122 +588 428 4 890024730 +235 1193 4 889655232 +313 121 4 891015114 +363 56 5 891495301 +653 50 5 878854100 +92 1046 3 875812841 +346 168 4 874948252 +90 286 5 891382267 +625 602 3 891263057 +412 340 4 879716637 +627 157 4 879530110 +7 436 5 891351471 +654 423 4 887864432 +428 350 4 885944005 +343 283 4 876403212 +642 375 1 886131744 +399 926 2 882348850 +593 597 2 875660347 +151 661 4 879524419 +180 98 5 877544444 +10 664 4 877886911 +416 185 4 876699101 +488 111 4 891294785 +567 176 5 882425874 +417 97 4 879647326 +314 783 3 877888855 +332 210 5 887938981 +301 150 4 882074345 +279 425 4 875306430 +22 523 5 878886845 +409 631 3 881108077 +629 1109 4 880117813 +492 83 4 879969644 +334 855 3 891547513 +642 258 3 885601865 +1 237 2 875071749 +634 979 3 875729710 +405 57 1 885546577 +361 178 5 879441462 +269 192 4 891447979 +507 879 5 889964706 +549 225 3 881672804 +416 396 2 886318587 +653 1044 1 880153304 +535 435 5 879618246 +642 72 4 885843087 +609 901 1 886895886 +277 7 2 879543377 +354 50 4 891216498 +532 926 3 888630146 +409 618 4 881107011 +642 468 3 886568479 +466 62 3 890285159 +439 246 4 882892755 +405 379 1 885548475 +627 649 4 879530071 +405 1474 1 885547645 +222 225 1 877563353 +102 386 2 892993735 +618 143 4 891308515 +109 72 5 880577892 +312 515 5 891699677 +303 871 1 879485685 +181 919 1 878962550 +15 935 3 879455710 +213 483 5 878955848 +452 170 4 875261261 +393 4 4 889555384 +48 136 4 879434689 +130 65 4 875216786 +560 1333 3 879976071 +608 478 3 880403606 +353 245 4 891402405 +137 1117 2 881433435 +500 405 4 883865567 +327 26 3 887747299 +648 188 5 884882664 +210 235 3 887730842 +307 1 5 878066938 +435 684 4 884131356 +325 650 3 891478079 +130 763 5 874953728 +536 318 5 882359431 +524 469 4 884636416 +311 700 3 884365852 +450 312 4 882812205 +655 274 3 888474872 +333 168 4 891045496 +561 258 2 885806823 +104 307 2 888442249 +592 652 4 882956467 +326 216 2 879876235 +631 346 4 888465004 +555 147 4 879962172 +592 533 4 882608827 +531 358 1 887049187 +267 156 5 878971599 +293 203 3 888906781 +546 717 5 885141162 +611 303 3 891636073 +301 763 4 882074665 +450 205 4 882373531 +436 595 5 887770731 +108 255 2 879880094 +214 89 4 892668249 +344 1 3 884899372 +632 58 3 879459210 +592 137 5 882608145 +60 50 5 883326566 +327 403 3 887820384 +366 234 1 888857750 +334 634 4 891547513 +60 799 4 883326995 +269 403 1 891448522 +620 563 5 889987682 +567 504 4 882425874 +30 315 4 885941412 +493 181 5 884130308 +436 723 3 887771853 +456 672 1 881374849 +582 288 3 882960396 +141 126 5 884585642 +621 1012 5 880227233 +367 333 4 876689501 +537 1197 3 886029889 +145 123 4 879161848 +394 63 4 881059464 +271 580 2 885849386 +537 1069 2 886030938 +157 515 5 874813477 +557 1070 2 884357600 +461 347 4 885355679 +363 511 4 891495850 +596 288 4 883538847 +255 343 2 883215867 +271 282 2 885847666 +22 21 4 878886750 +455 678 3 878585344 +18 736 4 880131028 +136 525 5 882848925 +417 923 3 879647065 +276 1118 4 874791830 +66 295 3 883601456 +6 177 4 883600818 +532 1221 5 874788957 +99 763 5 885679138 +417 62 3 879648939 +385 664 3 879445335 +114 659 4 881259495 +622 66 3 882670480 +327 201 5 887820828 +247 259 3 893081411 +299 171 4 877880961 +406 919 2 879446684 +648 105 3 882212560 +384 300 4 891273809 +234 224 4 892334107 +62 199 4 879373692 +622 364 1 882672922 +601 21 3 876347113 +622 373 1 882672922 +454 1190 3 881959437 +447 153 4 878855756 +239 511 5 889178798 +256 282 3 882151017 +551 1376 1 892784524 +405 712 1 885547506 +488 496 4 891294246 +592 833 4 882608662 +647 326 3 876532517 +561 273 5 885808824 +332 651 5 888098060 +234 505 4 892333798 +181 883 1 878961847 +323 319 2 878738827 +416 209 5 893214332 +579 49 3 880952360 +178 809 4 882827084 +357 111 5 878951784 +496 33 4 876067108 +305 171 5 886323237 +525 111 4 881086051 +545 993 2 879898802 +470 248 3 879189434 +271 62 2 885849386 +617 89 4 883789294 +456 475 5 881372366 +600 403 3 888451908 +276 523 4 874787496 +200 496 5 884128904 +618 150 2 891308175 +400 294 3 885676411 +653 272 4 893275949 +561 228 3 885807930 +490 286 2 875427021 +69 237 3 882072920 +592 59 4 882956718 +385 187 4 879441728 +505 423 4 889333711 +449 100 5 879958664 +405 1225 1 885547176 +551 827 5 892784710 +592 64 5 882956039 +495 770 3 888635339 +194 580 4 879525876 +586 82 2 884062010 +587 300 4 892871171 +552 222 4 879221764 +130 527 5 875801447 +535 639 4 879618019 +234 175 2 892079076 +200 48 2 884129029 +9 402 4 886959343 +556 1065 4 882136162 +468 173 5 875295093 +561 461 3 885807369 +435 121 3 884133284 +600 210 4 888451665 +311 702 3 884365284 +225 604 5 879540778 +271 4 5 885849357 +503 38 3 879454977 +488 183 4 891293698 +435 546 4 884132942 +505 237 3 889333711 +430 165 4 877226130 +429 118 3 882386145 +650 552 4 891370031 +606 421 4 880923989 +655 126 2 887426732 +627 549 3 879530625 +314 1016 4 877886483 +378 1531 4 880056423 +651 306 5 880126473 +89 202 3 879459859 +503 558 5 880383098 +554 223 3 876232996 +536 54 2 882364876 +99 25 3 885679025 +193 294 1 889123777 +547 258 4 891282596 +642 501 2 885603740 +595 15 4 886921423 +221 346 5 885081300 +585 1535 4 891284816 +244 222 2 880604379 +642 966 5 886569140 +154 642 3 879138910 +495 195 5 888633396 +154 61 4 879138657 +648 154 5 884881621 +592 432 1 882956321 +128 478 5 879966840 +168 291 4 884287668 +347 245 5 881652230 +44 99 4 878348812 +493 117 5 884130416 +533 91 2 879190991 +601 1615 4 876348107 +627 720 2 879531397 +585 207 5 891284016 +488 211 4 891294158 +159 255 3 885501660 +574 245 5 891279362 +330 195 3 876546694 +539 58 3 879788195 +527 531 3 879456077 +638 127 2 876694861 +483 197 3 878953815 +174 340 5 886432749 +650 1474 3 891385288 +365 473 4 891304106 +437 154 4 880141129 +630 12 4 885667854 +621 151 5 880737929 +524 1204 3 884635225 +653 566 5 878854190 +234 1039 3 892078741 +321 604 5 879438651 +380 502 1 885480530 +505 133 5 889334189 +518 117 5 876823804 +105 302 5 889214193 +591 235 3 891039676 +503 186 5 880472061 +244 317 5 880602083 +125 201 3 879455019 +119 685 4 886177048 +387 619 1 886481073 +610 1558 3 888703475 +345 234 4 884991831 +286 174 4 877531537 +11 731 4 891904789 +497 72 3 879362835 +222 578 3 881060281 +475 315 4 891452177 +405 1583 1 885549543 +380 663 4 885478799 +504 323 4 887831274 +207 471 3 875509715 +621 300 3 890517589 +2 10 2 888551853 +342 135 3 874984395 +511 322 3 890005102 +607 847 4 883879638 +608 1124 4 880404846 +396 717 3 884646467 +575 194 4 878148087 +458 14 5 886394576 +41 516 5 890687242 +406 131 2 884630617 +640 385 5 874778569 +449 310 3 880410951 +190 310 4 891033607 +389 1098 4 880087096 +655 693 3 888984506 +436 186 3 887769801 +81 289 3 876533229 +655 1403 3 888813372 +181 1355 1 878963086 +643 189 4 891447093 +161 496 3 891171734 +455 100 4 878585826 +502 893 2 883702867 +601 127 4 876346810 +298 143 5 884182966 +638 161 4 876695307 +378 282 4 880044454 +13 403 2 882397271 +654 258 4 887863436 +593 100 5 875658824 +454 73 3 888267521 +378 1063 4 880046100 +553 111 4 879948869 +536 83 5 882359307 +379 563 2 880962106 +518 471 3 876822873 +7 527 5 891351772 +486 595 2 879875408 +592 823 1 882609009 +60 211 4 883327493 +450 81 4 882376188 +239 174 4 889179131 +545 739 4 884134780 +303 1153 3 879484899 +379 842 4 880525794 +108 284 3 879879911 +445 1010 1 891200506 +405 577 3 885547557 +542 588 4 886533562 +654 318 5 887864230 +480 603 4 891208239 +155 288 3 879370860 +339 199 5 891032576 +399 1086 3 882340827 +22 1002 1 878887186 +293 1048 3 888905034 +654 250 1 887863557 +429 475 4 882384579 +346 11 4 874948174 +49 270 2 888065432 +552 274 3 879222162 +217 300 4 889069555 +428 338 4 885943818 +627 704 4 879530967 +592 782 2 882956510 +483 230 5 878953592 +79 333 2 891271086 +297 347 3 885922424 +425 452 2 878738956 +621 249 5 880738282 +640 204 5 874777974 +43 1052 1 892350297 +14 124 5 876964936 +109 928 3 880572134 +369 268 5 889428642 +474 275 3 887915269 +548 117 4 891415384 +561 219 1 885809583 +637 363 2 882904148 +655 198 4 887428871 +620 148 3 889987299 +495 843 3 888637385 +524 181 3 884634731 +536 132 4 882359962 +545 135 4 884134060 +429 484 5 882384920 +416 419 4 892441448 +311 101 4 884366397 +311 684 4 884365075 +527 176 2 879455740 +58 12 5 884304895 +483 450 4 878953593 +639 166 3 891239838 +566 405 5 881650943 +125 751 5 892835624 +121 83 4 891388210 +592 820 3 882609057 +648 194 5 882213535 +409 482 4 881168712 +497 185 3 879361802 +555 269 5 879962096 +474 499 5 887924683 +312 207 5 891699121 +583 198 4 879384404 +462 288 5 886365260 +128 483 5 879966785 +456 346 5 887165765 +291 235 2 874805860 +455 518 4 879111318 +457 137 5 882393278 +403 370 3 879790344 +495 1118 5 888632888 +487 206 4 883531003 +246 204 3 884921638 +405 1053 5 885545456 +468 56 5 875286450 +234 177 3 892079040 +455 628 4 879109692 +501 288 4 883346694 +566 213 5 881649670 +308 531 4 887738057 +632 96 5 879457902 +495 145 4 888637147 +489 308 4 891447653 +620 281 5 889987852 +454 873 2 881958782 +551 479 3 892776380 +83 70 4 880308256 +548 532 4 891043910 +629 187 5 880117031 +448 902 4 891888779 +655 670 3 887430142 +308 65 3 887738301 +251 248 4 886272223 +213 192 5 878955474 +362 689 5 885019504 +486 111 4 879874693 +530 56 3 886202320 +632 159 3 879459460 +130 465 5 875801596 +264 1475 2 886123596 +268 151 3 875742470 +532 148 5 888817717 +407 648 3 875552647 +644 50 4 889077247 +16 58 4 877720118 +119 917 4 892564349 +95 207 5 880571164 +73 152 3 888626496 +354 135 3 891218230 +472 185 5 875980081 +402 475 3 876266741 +200 161 4 884128979 +579 183 4 880952038 +491 258 4 891189815 +642 596 5 885604113 +407 447 3 876338249 +343 449 5 876407138 +216 237 5 880232752 +496 50 5 876072633 +466 306 5 890284231 +534 820 3 877808340 +293 715 3 888907674 +433 303 4 880585068 +52 463 5 882922927 +592 236 3 882608061 +218 659 4 877488366 +501 124 4 883347919 +446 327 2 879787858 +530 163 3 886202320 +487 1019 5 883447117 +643 56 5 891446791 +312 526 5 891698334 +561 890 1 885807080 +328 449 3 885049607 +59 657 4 888204597 +560 597 2 879976914 +567 506 5 882425701 +319 751 3 889816136 +586 210 4 884059027 +481 678 3 885828016 +488 258 4 891293606 +307 739 2 877122317 +374 449 4 880938044 +99 591 4 885678840 +450 1286 3 882377479 +218 269 4 877487931 +279 663 3 875310394 +90 153 5 891384754 +505 161 3 889333711 +269 3 3 891446722 +429 22 5 882384744 +624 137 4 879792623 +385 254 1 879453094 +357 831 3 878952080 +450 525 3 882467271 +592 619 1 882608234 +270 226 4 876956038 +102 1228 1 888802508 +593 71 4 875661567 +567 497 5 882425901 +221 215 4 875245514 +542 23 5 886532602 +452 443 5 885544109 +487 28 4 883446352 +614 9 4 879464063 +528 181 5 886812857 +181 1152 2 878962496 +116 349 2 886977905 +622 252 1 882591582 +506 403 4 874874458 +130 531 5 875216628 +94 1073 5 891720540 +416 685 3 876697955 +315 209 5 879821003 +552 1152 3 879222002 +425 218 3 878738887 +460 294 2 882910637 +655 523 3 887427268 +537 649 3 886031720 +374 197 5 882158940 +533 133 5 879191085 +7 620 4 891353892 +366 671 5 888857990 +655 736 3 888685734 +592 682 4 882607573 +593 724 3 875670796 +504 1041 3 887910694 +606 530 4 880925074 +138 117 4 879023245 +595 369 3 886921977 +555 117 4 879962152 +260 891 5 890618729 +23 19 4 874784466 +587 682 3 892871372 +251 250 3 886272378 +216 100 5 880232597 +201 127 5 884111708 +268 235 3 875742556 +504 543 4 887908861 +559 199 5 891034040 +346 91 1 874950029 +101 7 3 877135944 +47 288 2 879439078 +214 516 5 892668173 +361 707 4 879440974 +500 1009 4 883865532 +151 88 5 879542645 +324 293 4 880575714 +437 56 4 880140325 +42 203 4 881107413 +338 52 5 879438690 +417 940 2 879649337 +616 689 4 891224748 +650 309 3 891369071 +11 39 3 891905824 +525 252 3 881086780 +639 1020 4 891240136 +495 622 2 888635886 +511 948 3 890004916 +234 785 3 892336119 +59 199 4 888205410 +425 333 3 890346411 +601 588 3 876350719 +152 527 4 882477356 +618 161 4 891308946 +610 568 4 888703648 +621 1118 3 874962824 +593 182 2 886193627 +58 511 5 884304979 +638 554 3 876695059 +204 1296 5 892392078 +316 673 2 880854083 +620 682 2 889986985 +639 1194 5 891239271 +493 742 3 884130253 +457 739 4 882549483 +380 60 4 885478292 +576 56 3 886986444 +608 673 4 880405484 +506 1244 2 884517295 +655 53 2 887429812 +110 1247 2 886988413 +181 756 2 878962866 +280 155 5 891702544 +567 491 3 882426135 +603 429 5 891956981 +437 642 1 880141441 +497 721 3 879362740 +178 62 4 882827083 +497 19 4 879310245 +479 945 5 879460785 +535 129 5 879619000 +440 328 3 891546895 +213 56 5 878955635 +510 876 2 887667574 +587 1624 2 892871752 +416 73 3 876699994 +357 275 5 878951784 +536 52 3 882360187 +624 327 4 879791819 +283 204 4 879298239 +617 100 4 883789425 +1 131 1 878542552 +436 649 5 887771269 +358 639 4 891269584 +13 17 1 882396954 +387 190 5 886483150 +312 175 3 891699321 +342 756 3 874984895 +178 230 4 882826889 +405 55 1 885547909 +463 1033 2 890530703 +14 820 3 882839856 +279 151 4 875249259 +477 724 4 875941086 +625 166 3 891960843 +621 769 3 874964991 +535 116 3 879618246 +453 238 4 877554396 +217 222 5 889069944 +276 453 1 880913767 +417 625 4 879649064 +521 625 3 885253937 +640 732 4 886354499 +6 12 4 883601053 +429 319 3 882387685 +409 1194 5 881107750 +363 778 4 891495510 +99 332 3 885678348 +270 742 2 876954248 +381 344 3 892697905 +468 200 4 875292319 +655 66 2 890887261 +276 367 3 874791667 +44 631 1 883613297 +639 527 4 891239323 +201 226 3 884114232 +561 317 3 885808824 +655 281 2 887426732 +184 50 4 889907396 +608 332 4 880402982 +442 975 3 883391377 +648 69 1 884628564 +519 1062 5 883250148 +504 195 4 887838510 +593 125 4 875659708 +313 193 4 891013887 +615 69 4 879448632 +639 517 2 891239492 +125 412 3 892839191 +474 238 4 887924083 +234 40 2 892335894 +632 237 3 879458570 +16 204 5 877722736 +320 233 4 884749281 +536 449 4 882361262 +655 52 3 891585279 +654 558 3 887864471 +610 402 5 888704000 +41 430 5 890692860 +236 196 1 890115966 +570 326 1 881262437 +617 242 3 883788511 +360 271 2 880354839 +625 209 3 891262633 +568 988 1 877906737 +407 180 4 875044597 +588 220 5 890025023 +645 675 4 892053747 +234 606 5 892318060 +532 51 5 888635365 +533 83 2 879191902 +529 294 4 882535466 +655 224 3 887425845 +576 275 3 886985695 +551 975 5 892784130 +429 629 3 882387163 +612 322 3 875324294 +95 182 2 879198210 +655 918 2 892436609 +547 312 4 891282824 +450 77 4 887139143 +634 460 3 875729710 +616 750 5 891224590 +601 1079 3 876347148 +381 487 5 892697083 +593 584 3 875671579 +56 1057 3 892683978 +160 195 4 876859413 +650 197 4 891372233 +59 523 4 888204389 +394 402 4 880888775 +622 780 4 882671574 +130 315 4 884623887 +313 177 4 891015566 +116 748 2 876452186 +374 185 5 880395665 +151 953 5 879524948 +347 930 2 881653340 +89 275 5 879441307 +138 222 4 879023345 +643 143 4 891447868 +543 578 3 877546305 +100 1234 1 891375068 +308 602 4 887737536 +425 145 3 878738956 +640 239 5 874778274 +450 921 4 882372178 +327 1070 4 887744513 +484 230 5 891195417 +301 418 3 882076751 +590 100 5 879438825 +655 344 4 888204230 +627 740 1 879530501 +655 14 3 891585450 +527 208 4 879456289 +551 156 5 892777723 +295 97 5 879517761 +457 553 5 882396314 +502 678 3 883702448 +405 1468 1 885546287 +614 281 3 879464308 +596 294 4 883539079 +603 380 4 891955972 +381 1098 4 892696045 +503 526 3 880472188 +649 1 5 891440235 +409 481 3 881107602 +452 64 4 875266518 +60 705 4 883326710 +94 81 4 885870577 +658 276 4 875145572 +549 678 3 881671982 +316 482 3 880854337 +339 64 5 891033629 +380 100 4 885478193 +272 175 5 879455043 +435 9 4 884131055 +553 174 4 879949073 +377 682 3 891296448 +7 503 4 891353950 +535 727 4 879618502 +551 875 4 892775970 +315 203 3 879821194 +621 17 4 880739965 +566 218 4 881650242 +7 444 5 891354288 +223 257 4 891550005 +417 364 3 880953014 +533 756 4 879193004 +401 659 3 891033061 +655 935 3 887425498 +502 342 4 883702088 +351 332 5 879481495 +296 688 1 884196374 +180 196 5 877355617 +429 845 4 882386401 +207 202 3 875506771 +236 429 1 890118632 +456 196 4 881374649 +607 382 3 883880110 +533 58 4 888845150 +406 845 3 879540051 +555 302 3 879962096 +334 143 2 891548647 +181 1022 1 878962006 +592 306 5 882607528 +437 238 5 880140369 +445 100 2 890987569 +504 212 4 887909911 +399 542 3 882344021 +336 42 5 877757669 +648 411 2 882212288 +374 986 3 880936113 +323 288 3 878738827 +244 629 4 880606442 +448 286 2 891887393 +567 646 5 882427046 +373 472 3 877111951 +524 480 4 884634911 +554 43 3 876369968 +222 712 3 881060735 +416 651 4 886316439 +141 25 5 884585105 +450 1048 3 882397813 +615 199 5 879448599 +416 181 5 893213019 +614 288 2 879463630 +437 185 5 880140192 +585 971 3 891282894 +438 245 5 879867960 +585 1323 3 891284588 +530 60 5 883790997 +477 36 4 875941224 +371 435 3 877487751 +255 895 2 883216185 +639 210 3 891240136 +548 23 5 891044410 +85 328 3 884906441 +280 393 4 891702323 +416 676 5 893213549 +553 218 4 879948996 +399 1541 3 882510107 +554 14 4 876550182 +567 641 5 882426158 +307 1028 4 875746067 +653 257 3 890181185 +92 174 5 875654189 +141 985 4 884585363 +655 179 4 888813272 +303 824 3 879483901 +342 408 5 875318266 +656 689 2 892319276 +656 327 2 892318738 +374 566 3 880394571 +579 216 5 880952299 +621 63 1 874963445 +189 150 4 893277702 +387 558 4 886480384 +399 215 2 882510226 +10 530 4 877892210 +498 288 3 881953815 +405 433 4 885545070 +643 484 5 891448756 +616 315 4 891224447 +303 1023 2 879544898 +91 192 4 891439302 +620 501 4 889988036 +551 80 1 892785300 +109 111 4 880564570 +244 697 4 880607335 +63 1010 3 875747829 +592 215 5 882956467 +16 227 5 877727193 +92 116 3 875640251 +295 65 5 879517655 +440 750 5 891546784 +650 50 5 891372232 +592 1609 1 882608698 +626 682 3 878771447 +554 318 5 876369730 +606 265 4 880924663 +393 1539 2 889730460 +92 383 1 876175191 +533 72 2 879192157 +499 692 4 885599119 +298 168 5 884182933 +401 735 5 891033158 +503 482 5 880383588 +450 965 4 882394364 +450 26 5 882396489 +510 333 3 887667465 +121 118 2 891390501 +582 93 5 882960844 +562 477 4 879195688 +639 198 2 891239885 +621 100 5 880227104 +271 405 2 885848179 +542 210 3 886532706 +181 758 1 878963418 +561 732 3 885809958 +592 250 4 882608145 +524 781 1 884636583 +504 218 4 887910267 +653 226 3 878867346 +276 679 3 874792520 +553 1200 3 879948964 +479 173 5 879460984 +647 604 4 876537591 +56 226 4 892679277 +280 294 2 891700021 +245 597 4 888513326 +85 606 4 886282959 +587 259 4 892871223 +637 332 4 882900888 +612 15 4 875324455 +526 250 2 885682477 +620 240 5 889987954 +348 25 4 886523521 +13 128 1 882397502 +595 282 4 886921344 +279 169 5 875306910 +653 576 1 880152955 +300 409 4 875650329 +462 22 5 886365498 +26 313 5 891386368 +303 474 5 879466457 +201 318 5 884111269 +378 930 2 880044906 +468 1051 2 875284635 +450 651 5 882376658 +109 227 5 880579417 +622 132 4 882669851 +536 215 4 882360530 +247 1022 4 893097024 +618 168 5 891308342 +43 482 4 875981421 +505 77 3 889334248 +435 227 4 884133372 +537 735 3 886031576 +515 682 4 887659192 +29 182 4 882821989 +328 637 3 885047865 +660 82 2 891200491 +492 69 3 879969385 +521 268 5 884475470 +447 559 3 878856172 +200 193 4 884129209 +532 482 5 888629254 +642 1011 3 885842351 +343 68 1 876406878 +559 523 4 891035812 +201 218 4 884114471 +327 150 4 887744356 +625 169 5 891263665 +452 404 4 875561978 +566 96 3 881650171 +90 647 5 891383204 +524 684 4 884636236 +292 1073 5 881105318 +618 9 3 891308141 +561 8 3 885807455 +279 679 4 884556545 +618 241 4 891309887 +534 147 5 877808031 +462 300 5 886365260 +151 469 1 879528852 +241 689 3 887250085 +109 395 3 880583672 +160 922 5 876767621 +346 144 4 886273914 +504 106 3 887831879 +537 458 3 886030176 +463 107 3 889936181 +655 98 4 887472744 +164 252 4 889402265 +303 70 4 879467739 +179 288 5 892151489 +474 282 4 887916411 +610 489 4 888703343 +635 269 5 878878587 +445 1598 1 891200592 +504 386 3 887912431 +595 994 4 886921897 +115 240 5 881171982 +658 8 5 875147873 +582 124 4 882961082 +477 289 5 875941793 +619 332 4 885953742 +268 576 1 875744289 +392 58 4 891038433 +378 694 3 880055101 +622 722 3 882670862 +100 270 3 891375016 +125 430 4 879454309 +528 523 4 886101846 +659 66 4 891385306 +86 242 4 879569486 +447 96 5 878855847 +466 210 4 890284706 +655 726 2 887475055 +551 717 3 892785164 +495 54 5 888637768 +487 921 5 884042629 +417 433 4 879648403 +394 238 5 880887348 +655 945 2 887476008 +451 301 4 879012431 +496 173 5 876065349 +623 692 3 891034951 +152 1300 4 886535827 +336 1048 4 877757134 +339 174 4 891032320 +18 386 2 880131986 +555 357 4 879975455 +610 97 3 888703453 +354 186 4 891217811 +532 450 2 874796421 +305 179 1 886323966 +390 329 3 879693608 +69 7 5 882126086 +586 249 2 884058005 +561 229 3 885810271 +638 172 4 876694787 +585 1121 4 891283339 +484 562 3 891195565 +321 519 4 879441336 +436 47 4 887769930 +290 211 3 880474235 +341 1280 2 890757782 +363 201 2 891495371 +648 133 4 882212651 +624 242 4 891961040 +118 201 5 875385198 +276 411 4 874786807 +60 69 4 883326215 +307 588 4 877118284 +58 255 4 890321652 +543 226 4 875663372 +269 417 2 891451303 +523 476 3 883702441 +653 153 2 878867228 +488 238 1 891375965 +577 241 5 880474766 +176 237 3 886048145 +653 1210 2 880153705 +493 48 4 884130995 +477 778 4 875941191 +56 42 4 892676933 +330 69 5 876546890 +276 768 3 874793118 +308 665 4 887741003 +524 1454 3 884637128 +72 647 1 880036550 +639 962 1 891243532 +588 215 5 890024564 +437 90 3 880143289 +56 53 3 892679163 +393 144 3 887746174 +606 410 3 880921656 +629 162 5 880117361 +452 427 4 875264976 +241 270 3 887250026 +551 118 5 892784008 +495 924 3 888634441 +378 298 3 883835761 +234 480 4 892078485 +529 245 3 882535639 +239 745 5 889180338 +561 231 2 885810744 +90 234 4 891383835 +58 25 4 884304570 +7 591 3 891352179 +282 268 4 879949438 +621 383 2 874963166 +606 423 5 880925200 +146 340 4 891457714 +375 573 4 886622131 +293 77 2 888907210 +554 209 4 876232997 +655 185 4 887430102 +363 640 2 891496927 +627 724 2 879530305 +215 517 5 891436543 +559 318 5 891033835 +634 597 4 877017923 +336 785 1 877758935 +227 1067 4 879035572 +445 268 1 890987410 +334 79 4 891546992 +454 478 2 888267487 +226 236 3 883889844 +487 92 4 883446600 +261 245 4 890454190 +413 690 4 879968793 +643 820 3 891446381 +59 755 4 888206254 +279 1012 5 875298447 +634 129 4 875729105 +440 313 4 891546631 +622 432 5 882670009 +342 433 5 874984395 +640 1073 5 874778299 +478 1101 4 889396005 +638 181 5 876694787 +277 472 1 879544058 +623 483 5 891035112 +592 484 4 882956551 +648 1050 4 884797033 +650 521 3 891387616 +222 44 3 881059877 +336 1446 1 877757790 +218 642 3 881288351 +593 1028 3 875659896 +506 73 4 874873703 +133 902 3 890588672 +548 302 4 891042194 +604 201 3 883668352 +532 164 5 892519934 +264 116 4 886122892 +586 161 5 884062671 +551 591 5 892783612 +588 751 3 890014887 +629 269 3 880115840 +94 164 3 891721528 +385 521 3 879446208 +315 286 5 879799301 +497 183 4 879310825 +648 1244 3 882212373 +389 923 5 880087151 +276 193 4 874790952 +254 323 3 886470765 +420 478 3 891356864 +58 213 5 884663379 +599 237 5 880951595 +655 347 3 887424948 +188 118 3 875072972 +429 500 1 882384772 +615 707 3 879447990 +650 217 3 891389162 +239 1332 3 889180888 +650 7 4 891369656 +151 408 5 879524222 +104 750 5 888442171 +159 7 5 880485861 +330 205 3 876546105 +452 465 5 886148336 +506 147 3 888848342 +426 1451 4 879444734 +276 183 5 874792402 +577 11 2 880474293 +26 591 3 891351590 +297 752 4 888643376 +505 96 4 889333442 +538 183 4 877106768 +160 514 4 876858091 +660 392 2 891200072 +222 328 5 877562772 +629 332 4 880116722 +543 586 3 877547190 +393 771 3 889731793 +392 257 5 891038184 +226 89 5 883889229 +658 257 4 875145667 +471 422 5 889827982 +650 737 2 891383832 +654 821 3 887864907 +201 186 3 884114069 +537 53 2 886032029 +276 725 2 877935392 +648 554 4 884883323 +538 31 3 877109422 +85 582 4 879828014 +354 81 3 891217249 +614 546 1 879463965 +499 127 4 885598312 +492 286 4 879969099 +629 204 5 880117285 +363 284 2 891495987 +537 111 3 886030077 +582 181 4 882961301 +263 443 5 891298914 +585 70 5 891286256 +646 690 3 888528417 +201 273 2 884112352 +577 423 4 880472124 +381 887 3 892697941 +218 591 3 881288574 +361 79 4 879441286 +6 302 4 883268222 +437 482 5 880140051 +347 550 5 881654734 +65 179 3 879216605 +592 508 5 882608021 +551 172 2 892778164 +95 485 5 888954129 +183 230 5 892323452 +403 129 4 879785822 +480 504 4 891208822 +155 327 2 879371061 +324 259 5 880575107 +541 477 4 883865654 +221 286 4 885081264 +189 1402 4 893266051 +328 328 4 885044566 +334 134 5 891545973 +181 263 1 878961709 +599 111 5 880951885 +543 519 4 875662979 +642 1181 2 885607143 +434 819 3 886724873 +244 71 4 880606874 +324 475 5 880575449 +655 1158 3 888984255 +608 238 5 880403810 +566 327 3 881649273 +541 8 5 883874645 +644 243 4 889076364 +90 194 5 891383424 +523 167 4 883702233 +625 188 4 891262724 +378 180 3 880045822 +299 730 4 889501926 +119 255 3 874775914 +399 210 3 882342805 +197 307 3 891409323 +458 529 3 886398120 +52 473 4 882922661 +254 393 3 886473489 +214 298 3 891543191 +518 591 3 876823447 +490 151 1 875428185 +604 670 5 883668352 +6 309 2 883268430 +499 272 5 885597680 +30 50 3 875061066 +514 275 5 875463028 +648 797 3 884883031 +521 227 3 885253808 +133 243 3 890589035 +185 116 4 883526268 +472 56 5 875979853 +358 8 5 891269179 +262 1014 5 879961954 +645 1018 3 892053518 +593 692 3 886193724 +85 152 5 879454751 +524 494 4 884637409 +13 471 1 882140455 +643 117 3 891445823 +11 603 4 891905783 +299 1 3 877877535 +524 831 3 884628212 +577 203 3 880474455 +62 582 4 879374753 +296 111 3 884196712 +624 475 4 879793223 +532 252 4 888636478 +95 209 4 879197021 +7 384 3 891353710 +280 2 3 891701278 +452 211 2 875266197 +21 992 2 874951349 +334 42 4 891545741 +94 930 2 891724747 +234 317 2 892334189 +18 414 4 880131054 +403 864 4 879786747 +655 205 3 887650538 +474 211 5 887925751 +72 187 4 880036638 +629 463 4 880117852 +488 500 4 891294568 +7 487 3 891352178 +270 421 5 876955633 +660 167 2 891201565 +327 111 4 887819462 +54 307 4 891813846 +58 497 2 884305123 +61 333 3 891206232 +327 682 3 887737629 +592 705 5 882955978 +423 1238 3 891394874 +318 77 3 884497078 +397 641 5 885349999 +312 490 5 891699655 +489 327 5 891448409 +663 588 4 889493628 +605 1040 2 879425689 +653 436 1 880151673 +639 1121 2 891239885 +458 278 2 886395469 +374 1010 5 880393921 +524 451 3 884637202 +634 1199 1 875728913 +312 607 5 891698424 +1 109 5 874965739 +294 1134 3 877819761 +90 126 2 891384611 +145 316 5 888396966 +648 1072 2 884882527 +551 505 5 892777397 +562 66 1 879195927 +653 622 3 880152377 +324 1 5 880575412 +40 272 2 889041283 +601 671 4 876348572 +563 412 2 880507108 +615 127 5 879448399 +537 176 2 886031606 +328 182 2 885045678 +518 126 4 876823018 +532 501 5 889235367 +586 651 3 884059287 +565 1018 5 891037862 +201 233 4 884310104 +497 273 4 879310604 +415 322 4 879439205 +598 350 4 886711452 +532 292 4 884594621 +397 100 5 882839517 +498 186 4 881960591 +249 4 4 879572142 +642 1178 3 885606067 +588 723 2 890026459 +645 197 5 892055244 +295 740 4 879517225 +84 258 4 883449347 +169 204 3 891359317 +90 519 5 891384423 +354 286 4 891180445 +527 202 3 879456691 +18 753 4 880129816 +417 51 3 879648526 +13 299 3 881515698 +460 250 2 882912261 +484 849 3 891195506 +630 258 3 885666143 +389 416 4 880087996 +472 665 4 875983023 +653 1014 2 884405682 +130 578 5 878537681 +465 511 4 883530991 +472 7 5 892790953 +16 321 3 877717116 +70 429 3 884150369 +642 552 4 886569347 +648 98 4 884368313 +321 170 4 879438651 +646 304 3 888529014 +643 203 4 891446956 +191 331 4 891560631 +189 378 4 893266137 +457 191 5 882396659 +655 550 2 887611677 +82 678 1 884714726 +388 628 4 886436661 +336 15 4 877754621 +371 431 5 880435601 +421 82 4 892241294 +250 993 5 878089881 +493 455 5 884131690 +627 172 3 879531196 +541 118 4 883871670 +401 11 2 891033227 +152 66 5 886535773 +555 169 5 879975419 +486 1369 3 879874582 +650 399 3 891381784 +303 22 5 879467413 +339 74 4 891033382 +385 433 4 879442673 +332 756 2 887938687 +537 582 3 886030966 +271 487 4 885848770 +577 338 3 880469983 +625 213 4 891999608 +1 182 4 875072520 +655 303 4 888474107 +534 274 3 877807846 +47 874 3 879439078 +514 531 3 875308734 +493 483 5 884131534 +43 969 5 875981159 +640 720 3 874778612 +650 708 3 891383356 +660 96 3 891200430 +588 282 5 890015894 +227 129 5 879035387 +458 98 3 886396240 +267 141 4 878972147 +464 293 5 878355033 +301 163 3 882076264 +655 805 2 888474327 +13 667 1 882397040 +341 330 5 890758113 +567 306 3 882426327 +561 81 2 885808000 +606 549 4 880926862 +653 83 5 878853936 +372 176 3 876869667 +504 527 4 887838624 +655 58 3 887427600 +534 619 4 877807653 +360 172 4 880356240 +108 124 4 879879757 +363 747 5 891495918 +394 496 5 880887206 +219 936 4 889387284 +291 924 4 874833962 +650 480 5 891371090 +653 1140 1 880153841 +286 888 5 884583549 +617 590 1 883789747 +466 56 4 890284706 +234 845 3 892335825 +291 90 5 874871800 +623 629 3 891034973 +298 946 3 884182868 +363 550 4 891497205 +592 1039 4 882955582 +479 213 4 879461039 +425 24 2 878738386 +96 89 5 884402896 +498 136 3 881958174 +635 748 2 878878838 +608 337 4 880402982 +94 735 5 891721528 +514 483 4 875462795 +429 298 5 882386145 +474 697 4 887928498 +406 487 3 884630973 +487 412 1 883445220 +643 597 2 891446301 +593 83 5 886194064 +198 237 2 884206191 +311 64 5 884364502 +145 88 5 875272833 +524 1129 2 884832580 +293 402 2 888907702 +659 507 5 891383561 +655 162 3 888474165 +542 195 3 886532294 +505 510 3 889334477 +642 53 2 885604940 +449 936 5 879958721 +655 100 3 888474138 +472 68 5 892791017 +271 173 4 885848672 +643 928 4 891445660 +505 660 3 889334477 +373 746 4 877098714 +457 209 5 882553113 +526 343 3 885682264 +588 832 1 890027865 +527 652 4 879456248 +18 747 3 880132225 +497 24 4 879310260 +290 199 3 880474799 +373 1119 5 877105708 +161 640 2 891171558 +435 163 3 884131489 +489 261 2 891449155 +597 293 5 875340939 +504 660 4 887839195 +417 257 3 879646244 +458 651 3 886397988 +655 1651 4 891913500 +393 354 4 889554151 +535 210 5 879618160 +655 51 2 887611677 +457 568 4 882547590 +543 410 3 877453103 +442 367 2 883388887 +592 174 5 882955918 +601 186 4 876349542 +103 211 3 880420565 +416 319 5 893213444 +630 243 2 885666301 +500 996 1 883875241 +279 301 4 878082781 +39 748 5 891400704 +315 121 2 879821300 +437 265 3 880142942 +629 886 3 880116278 +370 480 4 879434886 +407 710 4 875046460 +515 323 3 887659192 +464 176 4 878355211 +419 615 5 879435785 +506 198 2 874873703 +592 919 5 882608061 +398 430 4 875659265 +326 616 5 879875724 +438 21 2 879868683 +379 131 5 882563797 +660 845 3 891198385 +385 183 3 879442706 +647 588 4 876531955 +514 988 2 885180989 +64 531 3 889740718 +605 133 5 879424661 +523 163 5 883702411 +545 1 5 879901359 +479 183 5 889125563 +646 682 3 888529153 +630 71 3 885667854 +363 709 4 891495003 +23 211 4 874786512 +94 654 5 885872684 +151 195 3 879524642 +398 2 3 875718614 +429 566 3 882386357 +373 166 5 877098262 +495 151 5 888635236 +72 471 4 880035588 +640 663 5 874778240 +659 646 4 891332122 +642 65 4 886132172 +616 272 5 891224517 +156 806 3 888185777 +593 158 3 875671891 +458 301 1 889323539 +236 750 5 890117676 +655 727 2 888685914 +592 1265 1 882607690 +200 483 5 884128426 +517 1 3 892659892 +194 371 3 879527584 +373 239 3 877105708 +504 223 5 887832364 +486 322 2 879874262 +224 582 4 888104030 +1 71 3 876892425 +653 157 5 878855483 +90 56 5 891384516 +500 464 4 883875274 +564 345 4 888718521 +13 492 5 882140552 +198 195 3 884207267 +457 22 5 882396705 +592 521 5 882955703 +650 751 2 891369001 +401 630 4 891033370 +10 319 3 877886223 +504 1444 3 887911133 +99 240 4 885679279 +618 477 2 891308791 +536 662 5 882360100 +660 510 3 891199056 +592 546 4 882608500 +524 516 4 884634578 +545 633 3 884133963 +213 455 4 878870749 +451 680 1 879012811 +49 57 4 888066571 +290 930 3 880732131 +171 305 2 891034606 +423 471 3 891395626 +291 974 1 874833962 +1 223 5 876892918 +114 615 2 881260441 +239 172 4 889178833 +493 65 4 884132146 +472 1090 5 875983321 +537 919 4 886030012 +401 25 4 891032412 +532 354 4 887672256 +401 1009 4 891032626 +141 676 5 884585001 +227 1143 4 879035803 +454 660 3 888267128 +450 934 3 882471362 +23 102 3 874785957 +399 660 3 882510250 +642 259 5 885605095 +525 125 3 881085709 +597 15 5 875341758 +173 687 1 877557132 +291 219 4 874867785 +591 1111 4 891031603 +85 23 4 879454272 +633 79 5 875325128 +268 574 2 875745579 +44 64 5 878347915 +437 946 3 881002092 +514 713 3 875309415 +585 1009 5 891285491 +514 70 5 875462826 +536 596 3 882317312 +560 246 5 879976109 +92 72 3 875658159 +387 193 5 886484065 +43 28 4 875981452 +11 15 5 891903067 +458 582 1 886398488 +493 12 3 884132225 +312 640 2 891698951 +461 285 4 885356112 +345 66 3 884993069 +548 654 5 891044411 +655 744 2 887427636 +18 549 4 880131173 +588 97 2 890023587 +586 496 3 884059426 +608 4 3 880406168 +538 381 3 877110175 +450 1444 4 882468239 +236 181 4 890115933 +250 116 4 878089921 +572 476 4 879449573 +267 209 5 878971745 +569 458 2 879794498 +453 1230 2 888202271 +582 7 5 882961082 +293 531 4 888905642 +119 340 4 886176485 +294 148 3 877820155 +664 179 4 876523654 +311 796 3 884365889 +645 175 5 892054537 +568 435 2 877907721 +542 127 5 886532294 +472 485 3 875980377 +606 455 2 880923349 +522 430 5 876961314 +526 748 1 885682214 +373 627 4 877105901 +536 135 5 882359370 +174 546 3 886514323 +457 1168 5 882548761 +406 451 2 880131954 +518 864 3 876823324 +406 5 4 880132276 +215 28 4 891435416 +633 234 4 877212594 +531 327 3 887048718 +495 452 2 888637070 +618 173 3 891307404 +537 573 2 886031886 +43 301 5 875975135 +399 399 3 882342354 +72 380 1 880036854 +72 685 4 880035588 +95 67 2 879198109 +561 642 3 885809356 +99 1079 3 885679504 +645 512 5 892055072 +363 1012 4 891499355 +627 685 3 879531351 +236 934 4 890117570 +23 131 4 884550021 +405 842 5 885548932 +541 651 5 883864782 +394 164 4 880886612 +664 89 5 878092649 +222 934 2 877563758 +523 194 5 883702210 +537 44 3 886031886 +540 323 3 882156851 +158 583 3 880134477 +343 4 5 876408139 +389 65 4 880088171 +663 181 4 889493732 +267 679 4 878974509 +625 546 2 891273897 +653 211 1 880149947 +21 438 1 874951858 +106 495 4 881451016 +387 92 4 886483098 +488 185 4 891376137 +347 290 3 881653132 +537 873 2 886029211 +551 1169 4 892778297 +649 1016 4 891440511 +231 597 3 879966146 +3 352 2 889237055 +592 1047 1 882608736 +213 756 2 878955319 +429 1048 2 882386966 +293 1041 2 888907674 +538 710 3 877107726 +645 523 5 892053686 +409 286 5 881104697 +85 732 3 879455238 +591 580 2 891031526 +244 1109 4 880607116 +429 96 4 882387053 +399 575 1 882350762 +536 1039 5 882360029 +528 615 4 886101715 +457 50 5 882393620 +577 58 4 880474414 +495 447 4 888635420 +622 1303 2 882672060 +577 545 3 880476578 +18 434 3 880131297 +659 601 3 891386241 +235 483 5 889655204 +490 150 5 875428765 +401 161 2 891033603 +13 638 3 881515239 +507 898 5 889964202 +501 1007 4 883995203 +601 71 1 876349937 +618 762 3 891309636 +142 186 4 888640430 +109 542 3 880582045 +638 144 5 876694861 +457 223 5 882396734 +313 215 4 891015011 +577 866 5 880470570 +330 100 4 876544277 +655 1097 3 887426008 +524 436 4 884636864 +538 735 3 877108785 +374 248 1 880393191 +207 196 4 880911845 +476 386 2 883365135 +523 934 4 883702602 +254 82 4 886472767 +639 1163 1 891239349 +525 250 3 881085917 +368 183 5 889783678 +656 245 1 892319084 +90 154 5 891384516 +469 215 4 879523802 +517 222 4 892660033 +62 380 5 879375626 +545 413 4 879899977 +472 21 3 875978686 +479 295 1 879460424 +161 204 2 891170947 +589 294 5 883352600 +492 212 3 879969367 +297 419 3 875240016 +643 443 4 891446919 +61 271 1 892302231 +655 509 3 887427441 +650 665 2 891381819 +49 358 1 888065805 +663 1047 4 889492679 +419 604 5 879435590 +345 762 5 884991285 +401 515 4 891032367 +90 387 5 891385215 +629 880 4 880116722 +16 583 4 877720186 +657 690 4 884238002 +629 195 4 880116847 +312 596 5 891699626 +642 1079 5 885605987 +157 597 3 886890406 +615 527 4 879448399 +328 204 3 885045993 +201 258 2 884110667 +629 207 4 880117000 +405 1091 1 885549004 +324 328 4 880575002 +405 83 1 885545974 +280 496 5 891700321 +409 523 4 881106682 +655 959 3 887427958 +276 82 4 874792402 +430 328 4 877225327 +524 301 4 884321179 +659 607 5 891331825 +463 477 2 877385489 +496 164 3 876066153 +116 11 5 886310197 +51 210 4 883498844 +477 553 5 875941155 +353 905 4 891402674 +655 685 2 887426666 +665 762 4 884290480 +506 261 3 885135514 +665 287 4 884290575 +311 660 4 884365252 +387 206 4 886483429 +49 324 4 888065702 +554 692 4 876549579 +334 865 2 891549631 +605 827 3 879429729 +343 50 5 876402814 +387 1018 3 886483526 +663 245 4 889491891 +450 71 3 882377358 +56 655 4 892676996 +303 251 4 879544533 +450 98 4 882371732 +320 204 5 884750717 +552 50 4 879221876 +529 326 4 882535304 +399 204 3 882342061 +13 895 1 883670515 +593 77 4 875671619 +595 930 2 886921870 +551 421 4 892778202 +416 137 3 876697165 +291 411 4 874834220 +268 622 3 875310145 +207 435 4 875506807 +493 171 5 884130825 +664 73 2 878090764 +275 432 4 875154535 +425 117 3 878738435 +181 300 3 878961227 +253 153 3 891628278 +593 451 3 875672999 +579 603 5 880952006 +97 434 4 884239791 +397 1001 1 885350326 +582 760 3 882962886 +77 31 3 884753292 +468 144 5 875287826 +618 959 4 891309756 +633 410 2 875325865 +445 55 1 890987712 +497 222 3 879310580 +303 85 3 879484588 +295 357 4 879517136 +637 1374 1 882903447 +514 680 1 885180893 +588 272 5 890014748 +435 845 3 884132100 +291 1012 4 874805892 +174 246 5 886433833 +500 45 4 883874170 +588 110 3 890027247 +104 591 4 888465263 +500 531 3 883873911 +506 55 4 874873287 +429 114 5 882385663 +598 313 5 886711452 +489 243 4 891445389 +102 612 4 879082395 +139 100 5 879538199 +237 134 5 879376327 +382 122 3 875946440 +514 470 3 875462901 +276 1098 4 880913684 +594 126 3 874781173 +158 576 4 880134607 +201 682 3 884110887 +125 172 5 879454448 +167 530 5 892738453 +643 712 3 891449249 +540 310 4 882156710 +332 845 3 887938421 +291 282 4 874833788 +297 529 3 875238778 +648 252 4 882212374 +241 310 4 887249576 +653 310 4 884405406 +614 1009 3 879464119 +255 56 5 883216448 +387 196 2 886484012 +518 1011 4 876823645 +429 233 3 882385593 +474 215 5 887926804 +89 235 5 879441657 +379 137 5 890464307 +555 120 4 879964334 +379 436 3 885063346 +623 88 4 891034973 +201 469 4 884113453 +514 65 3 886190207 +170 304 4 887646133 +308 614 3 887739757 +398 194 5 875717638 +116 479 4 876454191 +524 77 3 884637095 +429 631 4 882385243 +373 568 4 877100199 +550 125 4 883425958 +239 45 5 889180578 +567 156 5 882426055 +440 1105 5 891548567 +620 99 3 889988005 +345 639 4 884993139 +469 611 5 879525237 +317 354 4 891446251 +640 566 4 874778569 +466 96 5 890284819 +95 65 4 879197918 +437 1036 5 880143562 +484 431 4 891194692 +486 1375 3 879874449 +409 708 4 881109019 +425 689 2 890346517 +363 22 3 891494962 +201 303 2 884110667 +653 732 2 878866724 +573 185 3 885844605 +344 367 5 884901560 +584 172 4 885778080 +574 302 4 891278860 +13 657 4 882139829 +493 22 5 884131114 +12 161 5 879959553 +493 238 3 884131985 +443 687 3 883504889 +11 430 3 891905032 +500 475 5 883865232 +197 403 3 891410038 +608 961 4 880405431 +326 173 5 879874989 +642 240 3 885606137 +657 300 2 884237751 +541 432 4 883874716 +648 203 1 884796571 +660 252 2 891198459 +591 514 4 891031383 +177 322 2 880130534 +65 423 5 879216702 +500 135 5 883875041 +122 469 5 879270644 +343 176 5 876405553 +264 100 5 886122261 +299 792 4 889503112 +639 51 2 891239613 +363 691 3 891493663 +326 229 3 879876941 +295 561 5 879518696 +5 396 5 875636265 +532 305 3 878372701 +493 209 5 884130933 +410 316 4 888627138 +600 50 4 888451492 +467 117 2 879532437 +615 988 1 879447735 +334 856 4 891545926 +592 313 5 882955258 +621 881 2 883798770 +201 1128 4 884140825 +194 432 4 879524007 +393 291 4 887744202 +375 233 4 886621985 +541 62 4 883871644 +295 265 4 879518042 +454 435 2 881960145 +452 521 3 885545770 +59 184 4 888206094 +536 97 3 882360662 +619 226 5 885954133 +618 1468 3 891308665 +603 923 4 891957139 +561 285 4 885808715 +72 56 5 880037702 +457 59 5 882397575 +660 926 2 891201587 +96 127 5 884403214 +176 298 4 886047918 +342 846 2 875318688 +653 527 2 878855510 +118 175 5 875384885 +373 679 2 877107355 +541 121 3 883871695 +10 273 4 877888613 +331 1296 5 877196820 +197 241 3 891409893 +468 1012 4 875280462 +387 258 4 886480818 +148 132 4 877020715 +665 527 3 884294880 +458 289 2 889323582 +551 402 4 892784049 +542 150 2 886532908 +650 429 4 891383523 +352 156 4 884290428 +595 926 1 886921897 +40 310 3 889041283 +175 133 4 877107390 +425 823 3 878738757 +503 840 1 879454292 +655 1370 3 890887261 +378 1145 3 880334409 +622 15 4 882590670 +13 179 2 882140206 +457 819 2 882396001 +407 201 4 875045240 +58 651 4 884305185 +492 291 4 879969692 +234 28 4 892079538 +601 133 4 876350812 +639 212 4 891239550 +416 369 2 888701033 +452 490 4 875261350 +650 1119 3 891383303 +358 512 5 891269511 +532 9 5 893119438 +546 347 5 885139580 +577 1209 4 880476578 +666 56 4 880139090 +490 7 3 875427739 +655 476 2 887428671 +121 644 4 891388035 +60 230 4 883327441 +239 165 5 889180411 +592 342 2 882607745 +37 841 3 880915711 +577 4 4 880474635 +58 135 4 884305150 +501 118 3 883348474 +56 395 3 892911625 +646 346 2 888528392 +159 1023 2 880557741 +605 237 3 879424661 +501 410 4 883348207 +59 479 5 888205370 +555 288 3 879962096 +608 301 1 880402633 +498 210 2 881957054 +131 269 5 883681723 +450 233 3 882474001 +644 121 5 889077344 +666 173 4 880139253 +515 258 4 887658676 +593 9 3 875659306 +642 623 4 886570010 +56 265 4 892676314 +648 33 1 884881722 +374 423 3 880394484 +392 209 5 891038978 +653 180 5 878854593 +380 265 3 885481179 +405 561 1 885548475 +409 1073 4 881107750 +609 314 1 886895941 +405 48 1 885546154 +234 197 5 892333616 +561 1230 3 885810813 +405 694 1 885546336 +405 1072 1 885547222 +660 184 3 891200741 +73 748 2 888792247 +498 56 3 881957353 +585 1344 3 891282573 +605 9 4 879365773 +429 742 4 882386711 +69 879 1 882027284 +244 949 4 880606874 +548 121 5 891415939 +55 79 5 878176398 +486 93 4 879874629 +666 1047 3 880313858 +552 117 3 879222412 +569 121 3 879794699 +655 273 4 887426373 +632 172 5 879457157 +357 304 5 878951101 +305 770 3 886324521 +592 253 1 882608279 +606 31 4 880925199 +524 435 4 884635053 +661 183 4 876035466 +389 661 4 880165168 +479 274 4 879460370 +195 1414 2 874825826 +70 173 4 884149452 +286 483 5 877531661 +401 174 4 891032803 +650 445 4 891388210 +379 238 5 880525236 +605 98 5 879425432 +534 823 4 877807973 +617 436 3 883789464 +125 122 1 892839312 +579 238 3 880952201 +566 461 4 881649853 +269 1444 1 891451947 +645 658 4 892054632 +405 1037 3 885547506 +655 1232 3 887472606 +524 44 4 884636416 +313 195 5 891013620 +655 1605 3 888685850 +455 275 4 878585826 +661 132 5 886841714 +648 178 4 884368273 +65 215 5 879217689 +484 168 4 891195036 +477 732 4 875941111 +587 326 3 892871284 +411 1197 4 892846971 +398 117 4 875653091 +280 402 4 891701249 +442 288 4 883390048 +498 222 3 881961877 +460 248 4 882912342 +388 508 3 886436930 +663 411 3 889492877 +622 165 5 882591938 +263 50 5 891300029 +205 322 3 888284577 +638 514 2 876695714 +301 797 4 882078558 +582 237 3 882960941 +387 321 3 886484384 +595 591 4 886921344 +158 238 5 880134913 +525 596 4 881086195 +116 1255 2 876453377 +653 181 4 878854145 +450 141 3 882377726 +663 658 4 889493467 +538 11 4 877109516 +662 515 4 880571006 +322 303 3 887313611 +487 471 3 883441956 +398 496 5 875721111 +248 22 2 884534752 +202 516 4 879726778 +650 95 3 891371186 +591 367 3 891031403 +135 1217 2 879857956 +70 28 4 884065757 +488 429 4 891375991 +82 412 1 884714513 +151 216 4 879524713 +567 133 4 882425790 +450 956 4 882394097 +246 431 3 884921661 +405 944 3 885547447 +627 399 3 879531557 +344 203 4 884901328 +664 433 3 876525998 +624 347 4 891961140 +222 1060 2 878184055 +276 759 1 874796412 +181 236 1 878962350 +279 210 4 878261893 +293 393 3 888906906 +601 476 1 876347765 +551 38 1 892784553 +639 971 4 891239913 +282 333 3 879949394 +524 845 5 884323426 +648 675 2 884883424 +353 331 4 891401992 +557 892 3 884357648 +363 408 5 891494865 +405 204 5 885544769 +486 236 3 879874629 +152 21 3 880149253 +457 623 3 882550065 +389 732 4 880087850 +545 181 5 879898644 +99 1132 4 885679319 +109 15 4 880577868 +634 275 3 875728834 +263 588 3 891298273 +454 431 3 888266991 +624 815 3 879793174 +574 1313 4 891278916 +463 147 3 877386047 +537 485 3 886031576 +661 131 3 886841714 +406 8 4 879445562 +655 508 3 887426030 +126 337 5 887938392 +240 353 1 885775959 +279 1486 1 875314076 +606 660 5 880926470 +536 496 5 882359455 +526 293 5 885682477 +560 134 5 879975406 +601 949 2 876351214 +90 10 5 891383987 +637 111 3 882903645 +91 143 4 891439386 +338 1124 4 879438301 +587 887 2 892871310 +621 755 3 874965299 +537 644 5 886031438 +614 410 3 879464437 +13 636 2 882397502 +331 269 5 877196819 +532 510 5 888635197 +355 324 4 879486422 +207 160 2 878191632 +75 56 5 884051921 +299 28 4 877880474 +659 272 4 891044849 +201 511 3 884112201 +634 1048 3 875729668 +130 934 4 876251341 +630 412 1 885667508 +405 201 1 885547176 +514 792 4 875462611 +496 1459 4 876067376 +586 156 4 884064459 +527 96 4 879456611 +374 222 4 880392778 +287 108 4 875334519 +405 1438 1 885546835 +248 283 1 884535157 +606 483 5 880924921 +483 1152 4 893098572 +262 402 4 879795059 +660 473 2 891198996 +224 676 3 888103942 +610 143 5 888703290 +85 230 3 882813248 +339 156 5 891032495 +454 414 2 888267226 +458 121 1 886395022 +602 871 3 888638589 +425 180 4 878738077 +242 1011 3 879740800 +283 433 4 879298333 +416 44 4 886316596 +608 506 4 880406728 +535 205 3 879618464 +579 303 3 880951494 +373 281 3 877103935 +542 501 4 886533562 +493 196 4 884130933 +210 315 5 887731417 +600 233 2 888452071 +396 546 4 884646647 +82 1 4 876311241 +660 97 3 891200406 +343 1140 3 876405943 +660 362 2 891197585 +11 662 3 891904300 +505 164 4 889334189 +6 71 4 883601053 +234 498 5 892078699 +378 245 3 880906161 +365 285 4 891303999 +644 326 5 889076148 +587 288 4 892870992 +648 507 1 884796598 +133 245 3 890588878 +660 1181 1 891200594 +667 234 2 891034730 +666 122 2 880313723 +7 631 4 891352984 +392 310 4 891037490 +58 151 3 884304553 +642 22 4 885602285 +26 111 3 891371437 +458 179 4 886397808 +334 736 3 891548979 +530 191 5 883785574 +536 169 5 882359047 +45 288 3 880996629 +655 533 2 887651114 +634 471 4 875729478 +524 380 2 884637202 +298 604 5 884127720 +565 70 5 891037629 +614 476 3 879464507 +388 773 3 886441083 +553 484 5 879949324 +540 596 4 882157126 +658 1 4 875145614 +667 285 5 891034810 +577 25 4 880470504 +9 371 5 886960055 +207 233 3 877124847 +37 96 4 880915810 +527 429 5 879456611 +427 990 5 879701326 +52 741 4 882922302 +346 520 5 874948105 +334 712 3 891549594 +268 1303 1 875744228 +74 690 4 888333352 +579 428 4 880952335 +624 258 4 879791792 +207 286 2 875504669 +640 952 4 886474538 +104 270 4 888442337 +486 273 3 879874871 +497 118 4 879310621 +479 588 1 879461378 +545 196 4 884133859 +178 1038 2 882823566 +99 975 3 885679472 +549 1047 3 881672700 +439 240 3 882893859 +191 340 4 891560842 +601 472 1 876348177 +459 472 5 879563226 +466 995 5 890284231 +159 326 3 880485345 +619 1314 3 885954341 +303 82 4 879467465 +518 300 3 876822581 +477 282 4 875941948 +592 631 3 882956624 +394 250 4 881130076 +641 59 4 879370259 +664 229 3 876526631 +60 482 4 883326958 +378 977 3 880334305 +650 243 2 891369215 +110 43 3 886988100 +459 174 4 879566291 +234 636 3 892336358 +592 283 4 882956241 +599 595 5 880952144 +666 223 3 880314144 +627 215 1 879529767 +62 463 4 879374916 +214 93 4 892668249 +561 172 2 885807743 +385 320 3 885367060 +487 17 3 883531279 +13 86 1 881515348 +639 70 3 891239862 +290 720 3 880475695 +466 294 3 890282986 +655 27 3 888984478 +196 1241 3 881251642 +527 467 3 879455999 +375 603 4 886621917 +200 118 4 876042299 +393 775 4 889731390 +521 229 2 884478314 +286 739 3 877532683 +286 137 4 884203281 +290 650 2 880475625 +109 508 4 880571629 +411 4 4 892845634 +380 462 4 885478374 +514 178 4 875308925 +661 480 5 876016491 +267 143 4 878973329 +254 465 3 886473078 +144 478 4 888105337 +615 194 5 879449164 +629 117 5 880116963 +659 569 2 891386910 +618 433 2 891309410 +224 356 4 888103840 +202 191 2 879727294 +655 517 4 891585450 +654 546 4 887863885 +399 549 4 882347190 +642 294 5 885601998 +393 755 3 889729831 +22 201 4 878886449 +474 971 4 887924469 +246 411 3 884923715 +193 69 5 889125287 +349 125 4 879466541 +542 47 5 886532855 +343 473 3 876403212 +450 491 3 882373297 +645 200 5 892054906 +667 223 5 891034767 +328 260 2 885044940 +474 12 5 887924683 +500 476 2 883865851 +158 367 4 880134913 +573 162 4 885844007 +429 804 3 882387599 +557 299 4 881095916 +458 183 4 886396460 +260 1243 5 890618729 +484 655 5 891194820 +194 209 3 879521936 +491 7 3 891185298 +535 527 3 879617574 +385 207 4 881530739 +413 471 4 879969642 +668 345 2 890349041 +664 187 5 876524699 +566 127 5 881650219 +621 417 3 874965299 +654 222 5 887863534 +86 338 1 879570277 +637 985 2 882905284 +561 179 4 885807261 +500 514 5 883873941 +90 141 5 891385899 +23 55 4 874785624 +398 432 3 875718670 +495 228 5 888632738 +661 97 4 888299980 +329 11 3 891656237 +664 659 5 876526518 +556 603 5 882136440 +655 628 3 890887261 +650 66 3 891384285 +590 1129 3 879438735 +404 310 4 883790750 +497 1303 2 879311007 +416 471 5 893213645 +368 98 3 889783407 +370 603 5 879435244 +385 430 5 880870206 +33 323 4 891964373 +490 473 2 875428417 +495 64 5 888632496 +353 346 4 891402757 +673 294 4 888787376 +90 134 5 891383204 +474 252 4 887916567 +55 22 5 878176397 +363 660 4 891496588 +514 228 5 875463202 +293 186 2 888906045 +450 185 5 882376365 +500 568 1 883874715 +363 195 4 891495238 +409 343 3 881105677 +620 288 4 889986452 +655 283 3 887425936 +435 214 4 884131741 +567 648 4 882426021 +416 239 5 893212730 +425 310 3 890346411 +264 156 2 886122577 +454 255 4 881959276 +343 657 5 876404464 +650 204 4 891369707 +472 768 5 875982771 +450 448 4 882371526 +579 269 3 880951346 +200 132 5 884130792 +250 222 4 878089547 +648 497 4 884796769 +450 169 5 882371732 +360 654 5 880355715 +417 582 3 879647749 +620 683 3 889986984 +643 87 5 891447663 +496 172 5 876065558 +459 7 5 879563245 +184 40 4 889910326 +653 87 4 878854332 +384 329 3 891273761 +609 304 5 886895436 +154 197 5 879139003 +256 1424 3 882165066 +643 794 3 891450376 +595 1259 3 886921819 +136 124 5 882693489 +519 1591 5 883250102 +271 347 3 885844634 +648 748 3 882211886 +567 60 5 882425966 +184 664 3 889911712 +666 1170 4 880568352 +662 291 2 880570487 +667 301 1 891034513 +90 610 5 891383753 +308 739 4 887739639 +655 36 2 888685955 +222 181 4 877563168 +399 454 3 882510989 +567 135 3 882426837 +654 66 4 887864727 +457 11 4 882397020 +664 118 3 876526604 +18 197 4 880130109 +493 271 1 884129823 +447 367 3 878856232 +453 1016 4 877552991 +459 1190 4 879563169 +631 289 4 888465216 +256 283 3 882150313 +11 646 3 891904389 +574 910 1 891279362 +671 947 3 884035775 +537 23 4 886030738 +405 553 1 885546379 +380 419 3 885479124 +619 288 3 885953931 +648 191 5 884368002 +116 1142 4 876452492 +569 125 3 879794348 +347 595 2 881653244 +62 128 2 879374866 +110 566 4 886988574 +250 95 5 878090499 +553 435 4 879948869 +662 50 3 880570142 +85 513 4 879454350 +500 25 3 883865755 +313 735 3 891014649 +605 318 5 879426144 +535 170 4 879618160 +270 324 2 876954733 +70 404 4 884149622 +669 505 3 891517159 +503 125 3 880390153 +484 313 5 885237934 +648 107 4 882212200 +201 269 3 886013700 +78 288 4 879633467 +409 285 4 881168712 +343 236 5 876402668 +171 346 4 891034835 +593 117 4 875659497 +479 356 3 879461951 +406 638 4 879446684 +379 188 4 892879481 +645 81 4 892055039 +537 268 4 886028647 +286 1502 2 877535499 +632 79 5 879457317 +548 14 1 891043182 +332 122 5 887938886 +661 118 4 876037058 +655 505 3 891735725 +537 427 4 886030831 +648 564 1 884883724 +405 1030 1 885547605 +582 1215 4 882963027 +99 173 4 885680062 +668 231 2 881605433 +217 181 1 889069878 +526 1084 5 885682590 +503 387 4 880383358 +99 210 5 885679705 +204 301 4 892389328 +537 170 3 886031211 +663 956 4 889493732 +429 53 1 882386814 +632 97 4 879458856 +624 285 5 879792557 +457 27 4 882549483 +618 597 4 891309041 +543 936 4 888209568 +401 507 4 891033014 +676 265 5 892686703 +533 12 4 879438543 +585 1485 3 891283124 +643 152 4 891446956 +407 479 4 875045240 +450 1441 3 882397940 +125 401 4 892838656 +217 472 3 889070011 +186 1083 1 879023599 +299 478 4 877880612 +653 1228 2 880153378 +510 258 4 887667465 +472 548 1 875982867 +643 216 4 891448136 +363 1009 2 891497205 +647 631 4 876532425 +268 1073 4 875309304 +663 7 4 889492841 +640 474 4 874777623 +62 723 2 879375738 +42 135 4 881109148 +641 514 4 879370062 +562 89 1 879195819 +660 462 2 891199293 +521 829 2 884476168 +648 685 5 882211924 +416 717 2 876697283 +659 602 4 891385986 +624 108 3 879793198 +586 239 3 884067058 +363 1157 2 891498558 +654 69 4 887864641 +485 319 3 891041485 +339 488 5 891032379 +648 118 4 882212200 +445 203 3 890988205 +291 1220 5 874868382 +328 118 3 885048396 +632 68 1 879459394 +419 100 5 879435722 +595 255 3 886921392 +499 182 2 885599551 +239 46 4 889180487 +487 273 5 883443504 +416 1054 3 876698083 +239 419 3 889178689 +663 117 4 889492390 +145 1023 1 885557545 +658 137 3 875145572 +455 471 4 879109692 +600 586 2 888453083 +425 171 3 890347138 +521 151 3 884476240 +599 815 3 880953441 +267 774 3 878973701 +429 123 4 882386448 +674 127 5 887762799 +450 1153 5 882397223 +450 328 4 886449488 +233 735 5 880610635 +509 302 5 883590443 +601 191 4 876350016 +666 203 4 880139180 +296 304 3 884196149 +44 67 3 878348111 +59 97 5 888205921 +494 222 5 879541375 +393 841 3 887745199 +561 100 4 885807484 +595 762 4 886922069 +77 252 1 884733379 +593 807 4 875672999 +380 708 3 885478759 +393 24 3 889729674 +514 73 4 876067258 +176 117 4 886048305 +233 100 4 877661294 +548 443 4 891044446 +374 322 4 880392482 +504 162 4 887832741 +479 283 4 879460140 +303 1092 1 879544435 +18 482 5 880130582 +637 471 2 882903822 +222 693 4 878184514 +457 181 4 882393384 +574 345 2 891278860 +551 476 5 892784259 +90 447 5 891385389 +1 46 4 876893230 +454 939 2 888267386 +629 317 4 880117430 +559 216 5 891035876 +450 421 4 887834823 +296 289 3 884196351 +94 944 1 891723619 +460 1 2 882911203 +397 192 5 885349610 +557 288 1 884357600 +200 385 5 884129696 +7 417 3 892132652 +595 237 3 886921315 +271 477 3 885847955 +589 538 5 883352494 +389 471 4 879916077 +393 628 4 887744626 +130 67 4 876252064 +606 144 4 880924664 +570 288 2 881262307 +393 477 3 889727833 +327 87 3 887818620 +470 458 4 879178542 +468 178 5 875296401 +535 604 4 879617663 +592 963 5 882955663 +314 106 2 877886584 +551 230 5 892782901 +90 64 4 891383912 +303 402 4 879485250 +606 28 4 880924921 +537 848 3 886030552 +203 258 3 880433368 +634 341 2 890779883 +653 502 2 878866995 +655 707 3 887472671 +44 163 4 878348627 +495 98 5 888632943 +279 591 2 875297381 +637 515 4 882902540 +409 1360 2 881106087 +313 744 3 891016986 +212 246 5 879303571 +503 297 5 879438346 +629 197 5 880117031 +269 661 4 891447773 +448 344 4 891888244 +416 31 5 893212730 +425 573 3 878738914 +592 339 3 882607572 +200 748 3 884125953 +380 258 4 885477742 +178 476 3 882824713 +592 11 5 882955978 +551 431 4 892777583 +344 1082 2 889814622 +417 559 4 879648979 +360 531 4 880355678 +585 1193 5 891282894 +270 213 5 876955067 +323 876 2 878738949 +464 603 5 878355259 +471 50 3 889827757 +305 282 3 886323806 +109 17 4 880582132 +221 1217 4 875247421 +183 380 4 891463592 +194 294 4 879520305 +3 271 3 889237224 +666 182 4 880139526 +501 7 4 883348236 +372 637 4 876869512 +524 504 5 884634877 +495 684 5 888634956 +583 276 4 879384338 +293 273 4 888904901 +615 22 4 879448797 +458 704 2 886397857 +332 450 5 888360508 +405 558 1 885546069 +405 1394 1 885549903 +504 141 3 887909578 +430 181 4 877225484 +188 566 5 875074200 +606 1518 4 880926760 +589 892 4 883352762 +59 106 4 888203959 +116 221 4 876453560 +115 124 5 881170332 +268 173 4 875310031 +666 638 3 880139563 +592 216 4 882955978 +316 515 4 880853654 +81 25 5 876533946 +472 254 4 875978191 +587 749 2 892871223 +350 183 3 882347465 +65 73 4 879217998 +397 199 5 885349790 +349 118 2 879466283 +53 257 4 879443188 +650 182 3 891385775 +308 962 4 887738104 +622 1 3 882590344 +519 330 5 884545961 +553 423 3 879948655 +271 603 4 885848802 +638 515 4 876694704 +628 938 5 880777095 +387 318 3 886479610 +552 412 2 879222583 +535 483 5 879618742 +506 66 4 874874676 +546 222 4 885141260 +488 98 4 891293698 +437 176 2 880143809 +531 288 1 887048686 +457 83 5 882396487 +601 287 1 876348215 +91 204 4 891438909 +447 27 3 878856601 +399 161 3 882344434 +162 403 3 877636713 +144 124 4 888104063 +630 250 1 885666650 +45 597 3 881014070 +664 478 5 878090415 +620 354 5 889986477 +18 411 3 880131986 +435 1215 3 884134810 +608 215 3 880406299 +70 264 4 884063668 +451 333 5 879012550 +655 280 2 888474490 +350 179 5 882347653 +453 975 2 887942451 +269 1073 3 891447169 +620 795 4 889988340 +297 582 4 875238814 +638 230 5 876695259 +576 514 5 886986400 +332 172 5 888098088 +630 191 3 885668090 +399 444 1 882350733 +650 140 2 891389132 +647 117 3 876776321 +488 265 4 891294473 +395 15 3 883765928 +69 298 4 882072998 +268 95 4 875309945 +627 182 4 879529916 +652 323 3 882567100 +437 603 5 880140051 +660 797 2 891201753 +642 826 5 888963032 +437 955 4 881002404 +436 313 5 887768521 +504 310 4 887831273 +537 265 3 886031473 +650 485 3 891385422 +153 325 2 881370935 +474 1113 3 887926059 +194 521 4 879524504 +514 28 5 875311192 +95 1228 3 880572689 +642 996 2 885605932 +393 118 4 887744578 +432 3 3 889416260 +284 754 3 885329065 +436 26 3 887771146 +328 685 4 885047450 +542 410 4 886532971 +526 282 3 885682370 +328 65 4 885046912 +460 127 4 882912150 +85 782 2 879829757 +660 546 2 891198588 +551 693 5 892777943 +504 208 4 887838450 +52 318 5 882922974 +577 560 3 880475363 +60 434 5 883327368 +603 183 4 891957110 +660 17 1 891265453 +405 516 1 885547314 +275 121 3 876197678 +645 434 4 892055389 +646 683 3 888529014 +301 210 4 882076211 +405 849 1 885548049 +625 265 3 892054198 +621 944 5 874963126 +46 100 4 883616134 +23 8 4 874785474 +660 63 2 891201823 +450 182 5 882376585 +113 255 5 875935609 +557 150 3 881179621 +666 183 5 880139180 +331 1017 2 877196235 +234 215 3 892079722 +622 1552 2 882670793 +234 166 5 892079237 +417 849 1 879649632 +677 286 1 889399113 +334 433 5 891628158 +271 177 3 885848373 +334 1426 4 891548647 +425 550 4 878738813 +593 815 3 875659826 +132 1154 3 891278896 +637 410 2 882904148 +293 234 5 888906726 +650 498 4 891369587 +59 503 4 888205855 +429 658 3 882386448 +268 56 4 875309998 +154 324 2 879138287 +106 739 3 881453290 +391 237 4 877399864 +321 32 3 879440716 +189 663 3 893265773 +99 105 2 885679353 +416 187 5 893214128 +455 475 4 879109069 +392 482 5 891038945 +477 1041 5 875941225 +457 197 5 882396705 +373 1066 4 877106233 +450 163 4 882377358 +435 117 3 884131356 +600 11 5 888451665 +619 651 5 885954053 +252 286 5 891455263 +643 282 3 891445230 +668 307 4 881523762 +435 358 4 884130864 +303 583 1 879483901 +457 77 4 882398345 +650 202 3 891372258 +219 4 4 889452481 +600 651 4 888451492 +484 679 2 891195476 +291 933 4 874833936 +608 199 1 880403606 +537 181 2 886031437 +190 121 3 891033773 +535 921 4 879617489 +422 287 3 878199757 +450 83 4 882372027 +500 250 4 883865195 +614 255 5 879464119 +15 925 2 879455764 +606 1039 4 880923690 +601 157 3 876349716 +496 1614 3 876070690 +638 89 4 876694704 +541 235 1 883866049 +524 1166 5 884635031 +577 1271 3 880475581 +387 625 2 886483669 +637 833 1 882905070 +597 225 4 875342875 +417 1011 3 880949438 +617 647 3 883789006 +682 924 5 888517627 +328 77 4 885046977 +628 874 5 880776981 +609 908 1 886895699 +521 475 3 884475889 +655 950 3 887611566 +623 234 4 891034343 +435 394 4 884132873 +606 214 4 880926018 +474 69 5 887924618 +358 1524 5 891269418 +592 100 5 882608182 +567 170 3 882426184 +291 423 4 874868210 +606 432 5 880926339 +200 91 4 884129814 +234 489 3 892079237 +593 220 3 875660274 +535 173 5 879617747 +234 504 4 892078485 +21 185 5 874951658 +613 471 3 891227410 +665 343 3 884292654 +204 146 3 892513979 +456 211 4 881374162 +245 894 1 888513860 +618 190 4 891307404 +235 195 4 889655162 +148 474 5 877019882 +607 180 4 883879556 +293 1286 4 888906844 +92 684 3 875656502 +292 665 3 881103478 +472 834 3 875979685 +622 568 4 882592449 +587 325 5 892871252 +158 231 2 880134532 +70 501 4 884067201 +405 774 1 885548475 +663 11 5 889493628 +343 193 4 876405857 +545 17 3 879899472 +432 117 4 889415853 +379 357 5 881000269 +332 121 5 887916692 +286 569 4 877534313 +276 735 4 874791214 +379 219 3 890464337 +650 435 4 891372286 +577 99 3 880474674 +354 248 4 891216956 +586 155 3 884067874 +414 302 5 884998953 +405 97 2 885545638 +659 258 4 891331825 +606 928 4 880928180 +422 260 3 875129668 +614 279 3 879464287 +478 238 3 889388818 +548 333 4 891042624 +602 50 5 888638460 +102 596 2 883748352 +549 515 5 881672276 +194 276 3 879539127 +500 274 3 883865807 +363 50 5 891495168 +38 452 5 892434523 +336 710 4 877757700 +406 504 4 879445859 +622 542 2 882671346 +92 274 4 876175626 +608 568 5 880406032 +58 249 4 892242272 +666 4 5 880314477 +249 96 4 879572600 +655 611 3 887475345 +423 340 4 891394504 +667 435 3 891035104 +653 1620 2 886052291 +407 183 4 875046799 +479 479 4 879461378 +503 210 5 880383703 +591 94 3 891031603 +496 1139 2 876073882 +606 709 5 880927417 +496 825 3 876065015 +380 1039 3 885481179 +664 1090 1 876526739 +618 132 4 891307057 +543 471 3 875657863 +527 93 4 879456078 +654 278 3 887863757 +94 501 4 891721642 +437 28 3 880140534 +246 1089 1 884924710 +506 539 4 884517135 +181 412 2 878963122 +344 96 4 889814195 +385 235 5 879440940 +81 596 3 876533824 +13 736 4 882399528 +268 802 3 875744388 +664 7 3 878091393 +106 14 4 881449486 +629 11 2 880116789 +393 1181 3 889731064 +655 210 3 888474646 +207 521 4 878191679 +474 1421 4 887928562 +535 133 5 879618019 +357 685 3 878951616 +43 174 4 875975687 +457 402 4 882548583 +659 96 4 891384552 +585 923 5 891282808 +543 44 3 874865728 +130 398 3 878537516 +587 892 3 892871462 +291 393 3 875086235 +230 223 5 880484415 +467 742 2 879532671 +533 685 4 887032380 +577 44 3 880474934 +469 64 5 879523802 +13 865 5 882141425 +151 265 5 879542566 +519 266 5 883248595 +393 105 3 887745544 +579 173 5 880951765 +405 853 1 885547124 +640 195 4 874778515 +334 155 2 891549927 +135 321 4 879857575 +587 342 1 892871503 +453 364 3 888206676 +246 748 1 884924441 +125 393 4 879455241 +97 603 4 884238817 +629 991 1 880115923 +663 603 4 889493540 +515 750 2 887658782 +430 462 3 877226164 +504 69 4 887837918 +67 1052 3 875379419 +660 313 4 891197481 +342 412 3 875318648 +655 576 2 888893313 +650 127 2 891369520 +303 150 5 879467190 +59 474 5 888204430 +639 692 3 891239550 +606 132 5 880923925 +544 749 4 884795471 +381 303 3 892697999 +551 979 4 892784479 +468 157 4 875294741 +447 1048 2 878854579 +293 129 3 888904814 +552 411 3 879222002 +437 180 4 880139868 +479 328 4 879459611 +296 186 3 884199624 +486 255 3 879874692 +592 331 3 882607528 +577 87 5 880474216 +417 399 3 879648898 +345 125 3 884991191 +459 969 3 879564882 +59 672 5 888206015 +43 12 5 883955048 +650 674 4 891386778 +502 680 3 883702255 +287 476 1 875334340 +28 322 2 881955343 +542 70 4 886532788 +85 419 5 882819427 +334 494 4 891547235 +13 656 5 882139746 +533 186 3 879438850 +513 405 3 885062559 +551 3 5 892784093 +655 1319 3 887426373 +417 63 3 879649021 +682 735 4 888517627 +660 432 4 891199104 +411 73 4 892845634 +503 216 5 880383357 +624 924 4 879792493 +669 537 3 891517159 +649 275 2 891440412 +608 658 3 880408150 +666 492 4 880139252 +616 299 3 891224801 +429 1 3 882385785 +621 41 4 874963273 +610 294 1 888702795 +614 122 3 879465320 +637 544 3 882903914 +457 540 3 882551740 +669 462 5 892550137 +627 586 3 879531557 +653 409 2 880153406 +497 248 4 879309673 +86 269 4 879569486 +178 124 4 882823758 +574 289 4 891279285 +599 535 4 880952267 +13 411 2 882141924 +479 188 2 879461545 +18 427 5 880129421 +403 477 4 879786165 +682 623 3 888523288 +144 405 4 888104419 +624 534 3 879792358 +288 173 3 886373474 +435 1225 3 884131597 +184 165 4 889911178 +319 332 4 876280289 +569 276 4 879793493 +407 255 4 884197052 +73 1 2 888626065 +514 19 4 875463128 +561 520 4 885807318 +267 186 5 878972071 +411 58 3 892845804 +494 479 3 879541207 +303 23 5 879467936 +474 699 4 887927457 +605 483 5 879425432 +664 732 3 876525315 +295 497 5 879519556 +472 343 5 892790628 +610 427 5 888703730 +633 183 4 875325577 +405 23 5 885545372 +546 349 4 885141260 +463 952 1 890453075 +374 619 3 880393553 +537 65 3 886030767 +116 355 2 887605347 +90 654 5 891384357 +528 178 4 886101695 +478 340 5 889398260 +145 284 4 888398104 +305 1485 3 886323902 +56 153 4 892911144 +642 80 5 885606557 +551 455 1 892783525 +153 181 1 881371140 +350 195 5 882347832 +287 710 4 875334807 +407 449 2 876344772 +298 153 3 884127369 +194 1091 3 879528568 +640 578 3 874778612 +588 172 5 890026459 +265 117 5 875320332 +577 651 5 880475043 +442 240 2 883388833 +625 248 4 891629673 +407 657 4 875553625 +655 252 2 888474490 +528 484 3 886101695 +308 321 3 887736408 +664 514 5 876526179 +165 260 3 879525673 +627 458 3 879530824 +659 419 5 891331916 +496 158 2 876069951 +537 317 3 886031786 +49 501 3 888066979 +653 1012 4 878854852 +537 525 3 886030891 +620 895 3 889986984 +548 1025 4 891043278 +313 503 5 891014697 +184 235 2 889907862 +196 1007 4 881251601 +537 512 3 886031438 +277 471 3 879543377 +422 452 3 879744183 +391 772 2 877399030 +617 185 5 883789042 +59 313 5 888202532 +332 77 4 888360343 +640 357 5 874778274 +618 71 4 891309041 +489 875 2 891449465 +552 291 2 879222661 +457 304 4 882392853 +566 483 4 881649357 +661 527 4 876035679 +232 170 5 888549929 +486 277 3 879874418 +682 215 4 888517197 +189 214 1 893266326 +641 83 4 879370119 +537 959 3 886032154 +664 466 4 876526519 +110 385 3 886988574 +23 479 5 874785728 +621 393 3 874962705 +314 151 4 877886522 +303 72 3 879485111 +378 715 4 889665232 +70 225 3 884148916 +466 326 3 890282925 +49 1079 1 888069165 +587 938 2 892871141 +682 265 3 888520922 +506 380 4 874874585 +655 1208 3 887430746 +13 568 3 882140552 +109 186 3 880572786 +326 180 1 879875457 +648 429 4 884368130 +682 325 4 888521174 +605 462 5 881016176 +587 902 2 892871584 +83 298 4 891181511 +436 785 2 887770731 +373 431 5 877098643 +591 238 5 891031228 +92 227 1 875654846 +522 179 5 876961190 +311 192 3 884366528 +541 50 5 884046910 +656 750 2 892318648 +144 55 4 888105254 +82 539 3 884713704 +188 294 2 875071249 +474 70 4 887928498 +588 318 4 890015435 +174 401 1 886515063 +442 449 2 883390739 +278 923 5 891295330 +666 206 4 880139669 +295 382 5 879519556 +495 1046 5 888636837 +476 83 3 883364143 +376 321 3 879433164 +188 742 5 875073909 +234 923 4 892078741 +199 323 3 883782655 +564 312 3 888718443 +595 678 1 886920819 +346 739 3 874950316 +385 428 3 879442706 +380 744 3 885480144 +1 169 5 878543541 +591 86 5 891031171 +514 214 5 875318163 +303 501 4 879484981 +159 364 1 884026964 +661 313 4 886829961 +627 732 3 879530568 +679 520 4 884487031 +291 456 3 874834165 +299 81 4 889504036 +298 484 4 884182627 +303 597 1 879485204 +97 195 5 884238966 +521 746 4 884478152 +655 1007 3 891585504 +308 153 5 887737484 +10 693 4 877886783 +311 1050 3 884365485 +474 60 3 887925620 +297 746 3 875239569 +346 55 5 874948639 +405 1570 1 885549544 +481 50 4 885827974 +373 169 5 877099016 +127 901 5 884363990 +212 645 3 879303795 +234 277 3 892334680 +351 310 5 879481386 +489 326 4 891362773 +290 174 5 880473891 +125 186 3 879454448 +342 378 4 875319617 +344 127 5 889814518 +608 98 5 880403855 +487 191 4 883446027 +300 264 1 875650132 +493 693 4 884132129 +451 880 1 879012773 +514 258 4 875308674 +630 477 4 885667200 +465 258 5 883529482 +122 135 4 879270327 +121 282 1 891389037 +411 229 3 891035362 +640 1016 3 886474538 +452 780 1 885476356 +373 95 5 877099263 +135 324 3 879857575 +586 200 4 884060941 +543 566 4 877545605 +130 1210 2 880396831 +523 25 4 883702054 +663 274 3 889493182 +381 640 5 892696168 +660 826 3 891198762 +474 604 4 887926059 +660 98 4 891199348 +87 1188 2 879876110 +489 752 5 891448109 +657 1009 4 884240629 +654 257 4 887863802 +136 9 5 882693429 +567 268 4 882426327 +308 603 5 887736743 +583 175 5 879384471 +559 187 3 891033911 +301 735 2 882077871 +533 333 4 886425803 +239 1098 5 889180487 +653 737 1 880151839 +601 58 1 876350400 +665 177 3 884294374 +301 742 4 882074437 +663 471 3 889492841 +532 26 3 888629359 +432 257 5 889416118 +478 231 1 889398598 +429 385 3 882386915 +252 290 3 891456877 +393 1168 3 889729346 +625 195 4 891262983 +43 491 4 883954997 +536 56 3 882360405 +405 697 1 885545883 +581 100 5 879641603 +627 117 3 879531248 +668 258 2 881523929 +537 307 3 886028791 +257 1022 2 879547764 +660 249 2 891198109 +545 729 3 884134114 +582 410 3 882961481 +290 121 4 880475266 +387 187 4 886483049 +587 338 4 892871462 +295 790 3 879519265 +257 313 5 884151683 +666 179 5 880139323 +521 235 3 884476221 +38 202 2 892431665 +145 352 4 885556043 +293 17 2 888907335 +94 250 4 891724257 +244 235 1 880604910 +263 180 4 891297921 +435 890 1 884130883 +597 713 2 875340010 +354 308 4 891180569 +158 455 4 880132772 +18 23 4 880130065 +659 855 2 891386576 +457 200 5 882396799 +605 191 5 879426212 +380 629 2 885478497 +271 381 3 885849536 +255 930 1 883216958 +388 288 5 886439506 +58 655 5 884304865 +642 1029 3 885606271 +598 750 5 886711452 +659 161 3 891386492 +421 50 5 892241294 +648 122 1 882212609 +264 525 5 886122508 +62 521 5 879374706 +389 66 3 880088401 +498 160 5 881958174 +559 163 4 891035840 +268 636 3 875744174 +447 1142 5 878854481 +161 428 3 891171023 +255 222 3 883216845 +537 468 2 886032029 +620 300 3 889986411 +389 300 3 879990863 +63 325 2 875747047 +537 202 3 886031540 +660 101 3 891201243 +567 604 4 882426508 +660 1178 1 891265453 +625 222 4 891273543 +671 250 5 875389187 +682 68 5 888522575 +524 81 1 884636262 +650 484 5 891372365 +618 192 5 891307367 +541 476 5 883866007 +632 470 4 879459677 +660 7 3 891198203 +421 219 3 892241687 +148 181 5 877399135 +534 756 4 877808175 +387 1129 4 886480623 +334 20 4 891544867 +450 187 5 882373597 +221 27 4 875247754 +256 679 3 882164525 +11 717 2 891902815 +505 496 5 889333534 +288 134 2 886374129 +613 64 5 891227204 +305 196 4 886324097 +592 81 4 882956201 +207 357 5 878191679 +452 603 4 887718667 +327 658 2 887747668 +605 340 4 879365132 +476 999 2 883365385 +559 519 5 891034004 +94 196 4 891721462 +457 756 2 882395742 +445 273 2 891199869 +640 12 5 874777491 +673 288 4 888787423 +539 22 3 879788195 +276 1267 4 874791102 +632 746 3 879459481 +406 524 4 879446361 +472 183 5 875980376 +343 65 5 876405172 +206 346 5 888179981 +160 461 5 876857977 +684 64 4 878759907 +163 357 4 891220097 +669 169 3 891517159 +606 68 5 880927127 +588 934 4 890030736 +627 86 3 879530263 +301 97 4 882076121 +63 480 3 875748245 +640 201 4 874778240 +588 531 3 890015722 +385 919 4 879440158 +347 100 3 881652417 +344 1137 3 884899339 +77 25 2 884733055 +634 293 3 877018347 +493 404 4 884132351 +305 165 4 886323153 +466 79 3 890284706 +161 272 5 891170514 +454 211 2 888267158 +546 185 4 885141360 +436 660 4 887771825 +350 173 4 882347465 +479 258 5 879459552 +5 398 2 875636167 +492 657 3 879969345 +301 340 4 882075432 +682 352 1 888518424 +485 303 4 891040688 +542 531 4 886533452 +634 100 4 875728834 +262 411 2 879791130 +488 776 4 891294298 +488 890 1 891293478 +666 831 2 880313841 +554 939 4 876550342 +326 1 3 879876159 +518 1335 3 876823018 +437 588 3 881002092 +542 192 5 886533421 +407 177 4 887833034 +416 86 1 886316439 +503 729 3 880472454 +216 216 4 883981877 +643 89 3 891448630 +406 143 1 879445935 +169 321 3 891268777 +130 538 5 884623983 +286 184 3 877534506 +380 170 4 885478192 +597 50 5 875339876 +95 102 4 880572474 +267 47 5 878972369 +577 132 4 880472153 +591 516 3 891031469 +537 489 3 886030738 +655 1351 3 888984539 +326 441 2 879877433 +156 510 4 888186093 +229 896 4 891633029 +600 761 4 888451977 +566 384 3 881651360 +537 727 2 886032245 +311 735 4 884366637 +637 1344 4 882901356 +313 748 3 891012934 +417 122 2 879646838 +665 684 3 884294286 +528 588 2 886101736 +198 581 3 884209504 +360 25 4 880355209 +568 504 3 877907596 +450 661 3 882373231 +459 164 4 879564941 +279 176 3 875310606 +620 993 5 889987954 +492 531 4 879969539 +115 137 5 881169776 +178 679 4 882826944 +151 97 5 879528801 +466 273 4 890284857 +276 1109 3 882659656 +385 417 2 879447671 +178 144 4 882825768 +643 70 3 892502414 +685 269 3 879451401 +665 1040 4 884291550 +166 347 5 886397562 +579 56 3 880952360 +401 477 1 891034050 +6 168 4 883602865 +405 808 1 885546487 +109 202 5 880578632 +532 915 4 891909850 +600 62 4 888452151 +94 302 4 891928684 +342 531 3 874984175 +568 659 3 877907050 +665 346 2 884289897 +70 135 4 884065387 +107 259 2 891264630 +506 972 3 874874760 +341 872 4 890757841 +21 573 2 874951898 +606 172 5 880924322 +436 655 5 887769233 +642 142 4 886569380 +500 15 2 883865129 +374 558 1 882158738 +552 926 2 879222698 +94 1012 4 891724100 +505 526 5 889333823 +662 591 4 880570112 +653 388 2 880153705 +541 234 5 883874433 +495 157 5 888635294 +538 258 3 877095640 +435 68 4 884131901 +334 887 5 891544491 +608 144 4 880405659 +662 286 3 880569465 +538 187 5 877107840 +222 158 3 878184171 +50 544 4 877052937 +7 634 5 891351287 +673 269 4 888786942 +503 485 4 880472383 +551 5 4 892783314 +450 471 4 882396153 +542 175 3 886532762 +184 185 4 889908843 +349 1028 2 879466200 +506 731 4 874873374 +600 89 5 888451492 +682 92 5 888519059 +347 689 4 881652250 +532 364 3 874791976 +655 1046 3 887430779 +411 117 2 891035761 +332 406 3 887938601 +655 1169 3 887427210 +112 272 5 886398204 +181 1173 1 878962052 +515 328 2 887660131 +500 393 3 883875793 +600 540 3 888453083 +418 895 4 891282595 +395 196 4 883764378 +504 479 4 887832571 +630 257 3 885667037 +200 509 4 884129602 +462 11 5 886365498 +487 160 4 884041685 +214 508 4 891543157 +606 225 1 880923349 +543 855 4 875663543 +551 332 4 892775547 +474 601 5 887927509 +529 886 4 882535353 +380 9 3 885479301 +405 783 2 885547645 +474 289 3 887914906 +49 1074 2 888069165 +536 283 3 882318369 +591 48 4 891031286 +629 509 5 880116818 +533 100 5 882902988 +174 871 1 886434166 +676 520 4 892686758 +207 655 4 877878342 +610 331 3 888702764 +64 101 2 889740225 +380 194 4 885478799 +374 66 3 880394571 +94 1211 5 891722458 +284 310 3 885328991 +588 597 4 890026543 +639 512 2 891239759 +489 325 5 891445439 +592 461 4 882955765 +460 458 2 882911603 +354 533 5 891216805 +546 100 3 885140706 +621 172 5 874965407 +417 827 2 879646860 +125 376 3 892838510 +200 462 4 884128858 +314 470 3 877889770 +683 1483 3 893286346 +193 177 4 890860290 +510 300 5 887667439 +269 762 1 891446662 +577 1033 4 880471170 +220 258 3 881197771 +56 473 2 892683323 +617 767 3 883789747 +429 68 3 882385963 +276 455 4 874786713 +380 270 3 885481179 +524 52 4 884636453 +682 351 4 888518468 +16 98 5 877718107 +621 222 4 880736904 +653 395 1 880153674 +443 340 5 883504748 +334 181 4 891544904 +429 82 4 882386121 +691 603 5 875543191 +342 692 1 875319090 +94 418 3 891721317 +684 147 2 878232961 +595 508 5 886921199 +654 746 3 887864204 +561 724 3 885808867 +432 864 2 889416657 +334 675 4 891547148 +634 14 3 875728783 +524 55 2 884634911 +659 77 4 891386680 +543 4 4 875658853 +503 50 5 879438161 +436 628 5 887770457 +537 299 2 886028791 +363 95 3 891496694 +338 197 5 879438473 +682 1303 2 888522699 +626 294 3 878771243 +585 1021 3 891283681 +561 684 3 885808867 +653 1206 3 880152377 +665 476 4 884291133 +460 307 4 882912418 +655 1395 3 887768594 +660 402 3 891201380 +299 531 3 877880350 +458 589 4 886396140 +577 829 3 880470884 +684 38 3 878759635 +460 1251 3 882912285 +82 7 3 876311217 +269 1110 2 891450385 +550 50 5 883425283 +654 1035 4 887864697 +163 28 3 891220019 +668 554 3 881702723 +11 125 4 891903108 +519 325 1 883248535 +487 955 5 884024462 +372 288 5 876869066 +561 216 3 885807173 +299 274 3 877878339 +621 257 5 880738699 +52 25 5 882922562 +483 195 3 878954753 +610 288 3 888702795 +539 285 4 879788623 +294 151 5 877819761 +648 28 5 884628437 +85 121 2 879453167 +650 581 2 891370155 +624 1047 3 879793436 +552 988 3 879220650 +49 25 2 888068791 +566 673 4 881649775 +537 718 4 886029771 +499 357 5 885599372 +430 276 1 877225753 +634 235 3 875729825 +499 271 3 882995586 +541 142 5 883874778 +624 237 4 879793174 +18 614 4 880130861 +139 302 3 879537844 +331 304 5 877196820 +198 153 4 884207858 +378 479 4 880055564 +437 702 1 880141335 +661 178 4 876013492 +647 490 4 876532145 +629 7 2 880117635 +360 523 3 880356240 +352 653 3 884290428 +276 328 4 874786366 +352 144 5 884290328 +643 223 4 891447696 +622 144 5 882592103 +605 879 3 879365417 +271 205 5 885848343 +487 686 4 884044329 +345 287 4 884991670 +639 98 4 891240643 +618 655 4 891309887 +314 1469 4 877889103 +327 845 3 887818957 +625 183 3 892000438 +531 302 5 887048686 +369 316 5 889428641 +524 65 4 884636646 +586 233 4 884062405 +345 69 4 884992755 +632 480 5 879459739 +7 641 5 892135346 +433 919 5 880585923 +472 577 3 875982680 +386 982 3 877655195 +541 88 3 883865738 +459 678 4 879561783 +577 56 3 880474934 +459 301 2 879561574 +115 654 5 881171409 +498 448 4 882205321 +617 519 3 883789105 +521 121 2 884475889 +296 221 5 884196524 +60 675 4 883326995 +626 328 1 878771505 +502 895 4 883702370 +622 82 3 882670767 +655 1418 4 888474646 +83 409 4 880307417 +595 1312 3 886921787 +2 311 5 888552084 +536 172 5 882359539 +13 224 4 882140166 +666 202 5 880139493 +561 240 1 885810726 +463 126 4 877385531 +451 286 1 879012343 +5 204 4 875636675 +618 1058 3 891309114 +363 227 4 891498135 +375 1217 4 886622131 +407 132 4 875043800 +644 307 4 889076031 +100 1233 3 891375112 +683 248 4 893286603 +580 471 3 884125018 +391 100 4 877399805 +607 121 2 883879811 +271 69 4 885848559 +654 1285 4 887864998 +601 842 1 876351171 +682 1118 3 888521711 +617 184 1 883789464 +458 126 4 886394730 +515 302 3 887658604 +624 881 3 879792132 +631 313 4 888464915 +458 750 5 889323771 +11 738 3 891905324 +314 742 4 877886221 +496 143 3 876067146 +526 342 2 885682295 +592 257 4 882608107 +291 67 4 875086308 +358 1149 3 891270043 +41 97 3 890687665 +445 333 2 890987410 +650 637 3 891387353 +42 462 2 881108093 +641 124 4 879370299 +674 405 4 887762861 +618 318 5 891307825 +655 134 4 887431976 +533 211 4 879191972 +200 924 5 876042368 +174 623 3 886515532 +632 131 4 879458941 +551 157 4 892782765 +567 168 5 882425736 +138 602 4 879024382 +406 505 4 879540515 +548 460 4 891416122 +493 876 1 884129923 +407 143 4 875117053 +234 418 3 892079373 +85 504 4 879453748 +18 178 3 880129628 +537 990 2 886029153 +279 763 3 875297522 +256 319 2 882150053 +614 405 2 879464525 +327 98 4 887746196 +360 933 3 880354408 +200 443 5 884129468 +353 315 4 891402757 +456 763 4 881372015 +299 213 5 878192555 +629 1119 5 880116756 +259 298 4 874724754 +350 271 3 882347466 +73 175 5 888625785 +623 66 4 891034993 +661 443 4 876035933 +624 1017 3 879792322 +659 144 4 891384499 +209 271 2 883589607 +280 609 4 891701278 +92 436 4 875654534 +533 1041 2 879192069 +591 116 4 891039616 +479 172 4 879461084 +84 87 5 883453587 +308 613 4 887738620 +672 127 4 879787729 +524 568 4 884636152 +692 56 3 876953204 +573 275 4 885843596 +459 1051 3 879563667 +504 942 4 887841136 +625 584 3 891636000 +588 217 4 890030473 +601 12 3 876348947 +473 256 4 878157648 +279 625 3 878261977 +577 939 5 880474933 +580 405 2 884126077 +314 496 4 877888060 +275 625 2 875154655 +474 617 3 887925620 +437 161 2 880140288 +592 320 5 882955735 +313 683 3 891030792 +269 629 2 891451396 +535 52 4 879618091 +542 237 4 886532238 +13 367 3 882141458 +13 33 5 882397581 +561 243 1 885807010 +624 249 3 879793380 +650 507 4 891371153 +378 5 3 880332609 +551 313 4 892775389 +171 354 3 891034606 +435 577 3 884133973 +426 511 4 879441978 +546 7 5 885140689 +660 710 3 891199942 +590 744 4 879438769 +458 980 5 886394667 +342 965 4 875319195 +453 93 2 887941962 +426 654 5 879442785 +134 315 3 891732122 +570 324 2 881262437 +145 173 5 875272604 +650 77 3 891370093 +370 181 4 879434832 +330 1 5 876544432 +160 825 2 876767299 +346 127 5 874947747 +553 617 4 879949042 +679 174 3 884486837 +503 280 1 892667653 +128 465 4 879968008 +599 756 5 880952037 +184 451 4 889909914 +654 313 5 887862952 +6 303 3 883268321 +57 496 4 883698362 +236 191 4 890116335 +294 111 4 877819999 +115 479 5 881171825 +457 1037 2 882551818 +311 623 2 884366112 +661 436 4 876036043 +421 144 5 892241624 +532 1207 2 874790439 +666 792 4 880568694 +121 300 3 891387810 +378 86 4 880045935 +508 23 4 883767361 +666 301 4 880138999 +585 510 5 891284016 +148 56 5 877398212 +21 978 1 874951483 +545 257 5 879898678 +424 310 3 880858829 +234 496 4 892079190 +640 336 3 886353894 +207 92 2 875509346 +682 780 3 888522217 +671 385 5 884035892 +639 664 2 891239324 +350 168 5 882346847 +488 692 4 891294707 +354 582 4 891217897 +663 544 4 889492841 +314 747 1 877889698 +690 384 3 881177804 +13 684 5 882397271 +630 1047 4 885667200 +506 203 4 874874152 +194 474 4 879521396 +587 687 1 892871683 +537 955 4 886031149 +622 56 5 882592103 +442 174 4 883389776 +552 147 3 879222412 +690 364 3 881178026 +537 530 4 886030768 +521 50 4 884475799 +263 482 4 891298976 +236 207 3 890116221 +550 748 4 883425365 +390 845 2 879694232 +62 597 2 879373254 +673 344 5 888787376 +178 724 4 882827433 +328 1217 3 885049790 +161 1117 3 891172402 +70 597 3 884148999 +181 323 2 878961304 +567 299 4 882426350 +655 1045 3 887427473 +474 605 3 887927670 +554 678 3 876231229 +664 168 4 878090705 +148 549 3 877398385 +268 159 2 875745350 +387 446 2 886481800 +246 404 3 884922434 +48 194 4 879434819 +256 1208 3 882164927 +429 23 4 882385243 +234 436 3 892334765 +405 1232 1 885546681 +405 679 1 885547997 +588 118 3 890026210 +660 24 3 891198277 +505 172 3 889334129 +268 479 4 875310463 +643 208 5 891448136 +392 312 4 891037561 +666 174 3 880139586 +573 713 4 885843817 +689 273 3 876676165 +690 218 5 881179906 +665 65 4 884293523 +466 231 1 890285159 +639 387 3 891239380 +184 707 4 889908873 +87 195 5 879875736 +406 610 1 879446228 +461 319 3 885355778 +592 367 4 882956510 +60 227 4 883326784 +364 990 4 875931478 +314 655 4 877887605 +7 540 3 892132972 +416 431 4 886316164 +527 238 5 879456405 +663 47 4 889493576 +518 1040 3 876823541 +271 498 5 885848672 +497 418 3 879310021 +345 4 4 884993619 +363 90 5 891498183 +201 556 4 884111397 +268 559 2 875744556 +586 742 3 884057578 +686 28 4 879546147 +624 628 4 879793198 +450 239 5 882373865 +453 871 1 888206233 +281 301 3 881200643 +653 98 2 878854633 +11 332 5 891901769 +665 328 4 884290055 +527 60 4 879456132 +634 258 4 884980585 +627 273 4 879531196 +452 423 5 885544110 +615 529 5 879448036 +472 12 5 892791017 +537 923 3 886031342 +655 32 4 887426900 +558 253 5 879436396 +514 186 4 875463028 +606 150 4 878143246 +92 51 4 875812305 +296 480 5 884197068 +527 962 3 879456312 +592 702 4 882956510 +274 628 4 878945505 +532 508 4 888636373 +340 428 1 884991618 +399 506 3 882344406 +507 298 5 889965997 +439 7 4 882893245 +315 642 5 879821267 +435 152 4 884132072 +178 1258 4 882823930 +171 303 4 891034801 +665 588 4 884294772 +396 9 4 884646401 +178 625 3 884837073 +264 637 4 886122446 +452 48 5 885816769 +153 357 5 881371059 +302 748 1 879436739 +618 216 3 891308791 +496 53 3 876070655 +590 475 4 879439645 +655 525 2 892333973 +455 127 5 879111586 +40 876 3 889041694 +299 202 4 889501325 +554 11 4 876233069 +682 655 5 888519725 +616 678 2 891224718 +527 655 3 879456464 +348 243 3 886522740 +457 412 2 882396217 +451 259 4 879012721 +458 588 5 886396460 +480 96 4 891208623 +385 93 3 880682080 +541 877 1 884046888 +537 147 2 886030012 +210 763 2 887730750 +655 962 5 887473674 +667 651 5 891034767 +592 751 3 882955258 +295 216 5 879517580 +1 41 2 876892818 +508 474 5 883777430 +393 636 3 889729508 +674 294 4 887762296 +213 106 4 878870904 +478 1270 1 889396212 +22 568 4 878887810 +645 55 3 892053748 +128 684 4 879969390 +586 144 4 884059287 +329 879 2 891655515 +454 614 3 888267590 +441 294 4 891035211 +361 207 4 879440545 +532 330 4 888636373 +66 763 4 883602094 +378 53 3 880333695 +1 162 4 878542420 +389 238 5 879991387 +181 1326 1 878963342 +450 497 5 882374422 +693 181 3 875483881 +70 174 5 884065782 +201 286 2 884110702 +106 244 4 883877094 +546 457 1 885139608 +668 294 3 890349076 +551 176 4 892776876 +648 184 5 884368643 +660 846 2 891198174 +11 715 3 891904764 +31 136 5 881548030 +363 173 5 891494658 +311 282 5 884963228 +276 51 3 874791025 +668 403 4 881605433 +552 125 3 879222484 +184 213 5 889909045 +551 180 5 892777052 +586 358 4 884069523 +625 528 3 891961633 +639 168 1 891240678 +346 120 3 875264287 +621 722 4 881444887 +151 507 5 879524394 +500 619 3 883865341 +686 98 5 879546651 +563 237 5 880506666 +653 685 3 878854769 +334 81 4 891546299 +592 144 5 882956668 +682 509 2 888517235 +334 462 4 891628832 +65 98 4 879218418 +49 240 3 888067031 +193 218 4 889126705 +653 7 2 878866951 +535 56 3 879617613 +425 231 3 878738435 +686 474 5 879545413 +614 472 3 879464416 +371 181 3 877486953 +409 493 4 881108364 +279 203 2 875310676 +101 926 3 877136628 +642 44 3 885603870 +669 898 1 891182812 +222 619 4 877563953 +429 527 5 882387757 +516 250 4 891290565 +436 95 4 887770037 +624 919 4 879792581 +654 128 5 887865053 +119 405 4 874775815 +454 69 4 881959818 +643 262 3 892502480 +481 430 4 885829196 +110 272 4 886987145 +397 611 5 885349562 +608 76 4 880408115 +321 286 4 879438932 +406 237 1 879540078 +188 162 4 875072972 +429 921 2 882385962 +618 559 3 891309382 +38 155 5 892432090 +682 1045 3 888517792 +254 69 5 886471959 +463 224 3 877385181 +46 305 5 883614766 +650 629 3 891387398 +426 427 5 879442737 +629 566 5 880117395 +474 14 5 887915306 +685 286 1 879447443 +666 1098 4 880314384 +472 121 5 875978600 +650 196 4 891370998 +591 466 3 891031116 +590 255 1 879439374 +406 220 3 879540388 +173 299 4 877556926 +627 214 3 879530408 +89 50 5 879461219 +152 8 5 882829050 +559 1141 2 891034316 +80 531 4 887401430 +652 259 2 882567058 +158 226 3 880134675 +671 204 5 884204510 +211 1025 3 879461394 +537 209 4 886030966 +655 782 3 887650483 +473 321 2 878156950 +566 529 4 881649358 +411 318 4 892845712 +647 222 4 876534274 +307 62 3 881966033 +495 444 3 888636958 +586 33 5 884061807 +279 976 3 877756631 +530 183 4 883790882 +586 849 3 884062742 +666 258 4 880138999 +643 249 3 891446323 +455 9 4 878585685 +222 219 4 878184675 +566 97 3 881650090 +102 328 2 883277645 +561 234 3 885808824 +436 974 5 887771997 +665 7 4 884290635 +445 9 2 891199655 +665 1283 3 884292654 +489 1612 5 891446623 +606 83 5 880925289 +457 417 4 882549575 +605 255 2 879510904 +381 514 5 892697394 +221 576 3 875246824 +181 6 1 878962866 +169 499 3 891359354 +367 302 5 876689364 +565 30 5 891037499 +533 107 3 879773606 +639 202 2 891239581 +18 489 4 880129769 +6 472 1 883600003 +293 200 4 888906655 +389 99 5 880087832 +303 171 4 879467105 +487 333 3 883440491 +339 449 3 891036316 +291 124 5 874834481 +682 164 3 888521005 +181 1084 2 878962550 +472 41 4 875982511 +538 173 3 877107914 +619 825 2 885953850 +312 172 4 891699677 +45 257 5 881008781 +608 607 5 880405395 +673 303 5 888787376 +297 750 5 888643345 +688 288 5 884153712 +21 637 4 874951695 +378 42 4 880046256 +435 258 4 884130647 +224 193 4 888082552 +586 720 4 884062742 +95 960 2 888954129 +429 708 3 882386895 +634 7 4 875729069 +385 58 4 879441881 +25 404 3 885852920 +1 110 1 878542845 +13 650 2 882140425 +344 864 3 884900454 +342 93 4 874984684 +416 333 4 876696788 +524 197 4 884637347 +405 642 1 885548579 +661 727 4 888300194 +457 452 3 882551228 +2 269 4 888550774 +29 264 3 882820897 +403 106 2 879786084 +618 720 3 891309293 +160 285 4 876767660 +450 264 3 882370581 +600 562 3 888452564 +648 216 4 882213596 +334 116 4 891545044 +405 37 1 885548384 +44 298 2 883612726 +11 367 3 891905058 +268 70 3 875309282 +666 199 5 880314253 +325 58 3 891478333 +429 237 3 882384526 +406 747 2 879446108 +606 89 5 880927358 +619 313 5 885953601 +400 301 4 885676411 +663 286 3 889491515 +346 240 1 874948929 +648 523 3 884628644 +450 966 4 882377861 +604 5 2 883668261 +629 50 5 880117395 +14 302 5 890880970 +537 455 1 886030317 +279 137 4 886014686 +629 709 3 880117062 +207 411 3 877750701 +569 9 5 879793493 +661 425 4 886841714 +398 211 4 875717407 +684 553 4 878760305 +243 22 3 879988104 +21 817 3 874951695 +95 95 3 879198109 +690 25 3 881177430 +276 160 4 874787441 +584 82 3 885778458 +581 813 5 879641603 +537 1101 3 886031720 +551 76 4 892778202 +373 727 4 877098784 +554 58 4 876549808 +207 317 4 875506634 +305 845 3 886323335 +7 73 3 892133154 +299 48 4 877880612 +407 96 3 875042569 +178 77 4 882827947 +655 159 3 887477216 +617 607 4 883789212 +194 542 3 879551849 +102 273 3 888801465 +650 227 2 891369836 +232 655 4 888549721 +159 876 2 893255905 +503 1317 4 879438874 +697 294 4 882621569 +439 591 4 882892818 +280 486 5 891700751 +432 471 3 889416229 +618 66 4 891309697 +262 427 4 879791999 +608 693 3 880405927 +608 132 2 880403899 +524 520 3 884637314 +551 917 3 892775466 +532 1 5 893119335 +116 1020 3 887605454 +608 702 1 880406862 +643 228 4 891447260 +387 107 3 886481002 +548 39 5 891044481 +595 268 4 886920576 +430 318 5 877226130 +244 1188 4 880608864 +407 729 4 876348660 +495 1182 3 888636871 +500 1441 2 885237683 +455 423 5 879111862 +542 109 4 886532416 +360 275 4 880354149 +208 86 2 883108895 +527 209 4 879456405 +514 132 4 875463469 +660 2 2 891201151 +189 50 5 893263994 +677 237 4 889399402 +378 1058 3 880333695 +276 794 2 874793198 +341 895 4 890757961 +82 274 3 876311492 +286 316 5 889651121 +311 88 4 884365450 +486 628 3 879875278 +406 92 4 882480836 +566 80 3 881651531 +642 1028 4 885605735 +667 124 5 891035164 +522 654 4 876960824 +256 975 3 882151017 +593 275 3 875658862 +234 259 2 891033686 +102 655 3 888803802 +198 369 1 884206806 +533 371 3 879439488 +497 358 4 878759378 +532 559 5 892859148 +495 435 5 888632969 +606 203 5 880926084 +601 98 3 876348526 +693 499 4 875484539 +562 5 4 879196576 +683 895 2 893284138 +313 499 3 891016452 +343 536 4 876403310 +643 53 4 891449719 +94 328 3 891724990 +269 631 4 891447891 +689 879 2 876674692 +658 433 4 875147994 +201 228 3 884112427 +486 508 4 879874753 +582 121 3 882961133 +667 316 4 891034584 +648 240 2 882211857 +637 294 3 882900888 +580 546 1 884126077 +601 185 4 876349577 +568 162 2 877906935 +56 969 3 892683303 +271 924 3 885847974 +592 14 5 882607986 +561 895 1 885807035 +437 207 4 880142365 +40 259 2 889041643 +615 160 3 879448599 +13 22 4 882140487 +360 1134 3 880355261 +648 878 3 884367366 +677 405 4 889399328 +374 192 5 880395665 +508 153 3 883777329 +648 174 5 884882664 +198 73 3 884208419 +655 1016 3 887425601 +526 323 2 885682214 +476 168 5 883364143 +610 12 5 888703157 +650 219 3 891386671 +64 384 2 889740367 +531 895 2 887049214 +557 58 4 880555684 +533 236 4 890659276 +346 67 3 875264985 +577 447 3 880475226 +682 1107 2 888517896 +347 386 1 881654846 +615 632 5 879448759 +669 23 4 891260474 +90 208 3 891384065 +660 431 4 891200658 +561 811 3 885808963 +527 651 5 879455654 +370 172 4 879435369 +586 1047 3 884067058 +207 722 3 878191750 +299 487 5 889501230 +685 302 3 879451401 +80 514 3 887401533 +535 166 4 879618385 +339 657 4 891032221 +280 416 5 891701666 +409 367 3 881109264 +697 713 5 882622505 +368 670 3 889783562 +174 763 1 886434260 +2 255 4 888551341 +43 747 4 883956169 +293 404 4 888907122 +698 1063 2 886367406 +218 175 3 877488492 +620 246 4 889987276 +523 944 4 883702324 +670 482 5 877975285 +592 4 4 882956418 +153 182 5 881371198 +59 465 2 888206363 +101 370 2 877136711 +308 230 4 887739014 +359 268 4 886453490 +135 55 4 879857797 +192 235 3 881368090 +313 432 5 891016583 +664 79 4 876526519 +610 56 3 888703213 +654 1009 3 887863885 +151 748 2 879523925 +643 288 4 891445255 +222 424 1 881061049 +690 210 3 881177581 +303 269 5 879466018 +533 20 5 882902988 +10 197 5 877888944 +626 243 1 878771505 +474 614 4 887926999 +684 48 4 875812176 +484 204 5 891195057 +664 197 4 876523654 +305 48 5 886323591 +508 185 5 883777430 +626 286 5 878771242 +682 333 4 888518279 +648 79 5 884796689 +542 772 4 886533694 +617 569 1 883789537 +379 516 4 880525306 +365 277 4 891304078 +328 549 4 885047556 +186 291 4 879023073 +453 53 3 877561894 +64 91 4 889739733 +445 245 2 891035830 +629 135 5 880117586 +511 288 4 890004795 +356 307 4 891406040 +409 186 5 881109420 +643 150 5 891445823 +503 321 2 879438024 +374 172 3 880434204 +669 257 3 892549514 +496 191 5 876072632 +605 252 4 879510953 +406 53 4 879792928 +493 195 3 884131314 +320 1059 4 884748868 +429 52 4 882387074 +268 1098 3 875743534 +437 1599 5 880142614 +474 218 4 887927588 +618 385 4 891309163 +95 1126 4 879197445 +474 416 4 887926271 +374 979 3 880936113 +92 243 1 875644795 +294 313 5 889241339 +94 317 5 885873653 +685 991 1 879451282 +256 363 3 882163834 +405 843 2 885549005 +533 382 1 879191998 +425 895 4 890346198 +28 28 4 881956853 +626 988 1 878771281 +490 455 4 875428152 +189 863 4 893266161 +524 322 4 884320358 +487 97 5 883446600 +659 127 5 891331825 +618 423 5 891309886 +428 326 3 892572448 +270 535 5 876954123 +686 425 5 879546651 +291 780 5 875086636 +58 98 4 884304747 +406 123 4 879540173 +227 274 4 879035963 +85 822 3 880581629 +268 561 3 876513897 +58 199 4 891611501 +586 240 3 884066799 +90 1205 3 891383687 +592 854 5 882955948 +592 173 5 882956276 +622 1207 2 882671958 +619 720 4 885954238 +59 679 4 888205714 +568 615 5 877907235 +497 1228 2 879362569 +600 810 3 888451977 +506 215 5 878044852 +185 160 1 883524281 +405 447 4 885548331 +305 143 3 886323275 +323 23 5 878739925 +488 328 4 891293606 +198 727 4 884208876 +466 885 2 890283667 +312 945 5 891699068 +463 473 4 877385731 +655 1029 1 887475032 +130 64 5 875801549 +537 425 3 886031297 +391 498 4 877399513 +623 504 3 891034343 +692 1023 2 876954083 +693 273 3 875481549 +660 996 1 891265453 +244 80 3 880607489 +225 286 4 879539027 +177 186 4 880130990 +279 61 4 875306552 +295 809 4 879519438 +268 728 2 875744051 +347 183 3 881654232 +536 435 3 882359755 +426 197 4 879444816 +484 405 4 881450182 +269 530 3 891448926 +608 166 3 880403388 +409 209 5 881107117 +234 154 3 892078605 +627 1134 1 879530305 +629 660 5 880117772 +561 679 3 885807235 +450 527 5 882374059 +6 185 5 883601393 +374 1013 2 880936476 +344 281 3 884900374 +644 597 4 889077513 +504 4 4 887839260 +20 148 5 879668713 +189 118 1 893264735 +354 473 3 891216498 +539 170 5 879788533 +638 430 5 876695714 +485 330 3 891042162 +415 748 5 879439349 +465 423 3 883531533 +543 480 4 876896210 +354 311 5 891180445 +586 31 4 884064631 +354 303 5 891180548 +326 484 5 879874933 +584 40 4 885778385 +648 676 2 882211384 +665 24 3 884291300 +577 63 4 880476606 +543 529 4 874866208 +586 27 3 884062405 +343 134 5 876404568 +370 199 4 879434999 +505 191 3 889333792 +655 1585 4 887523403 +125 508 1 892838351 +181 1391 1 878962168 +469 306 4 879450473 +391 182 4 877399696 +635 13 2 878879164 +470 1067 4 879178568 +698 568 2 886367955 +587 339 3 892871284 +94 780 3 891723558 +590 15 3 879438936 +682 1089 2 888518871 +424 538 5 880858861 +560 411 3 879976828 +346 391 2 875266600 +690 790 3 881177970 +467 249 3 879532671 +642 570 1 886131332 +559 197 4 891035111 +250 248 2 883263390 +619 515 1 885953778 +474 291 4 887916567 +568 638 3 877907877 +479 318 5 879461039 +672 50 3 879787753 +234 66 3 892334765 +389 491 5 879991352 +642 63 3 885606090 +484 73 4 891195199 +174 126 5 886433166 +441 342 4 891035267 +262 1135 3 879794599 +559 511 2 891034347 +254 231 3 886474712 +610 7 2 888703137 +694 1050 3 875726759 +267 153 5 878974783 +543 163 4 874864870 +655 527 3 887427568 +330 102 4 876546586 +361 611 4 879441462 +588 174 3 890015323 +645 286 4 892051844 +606 125 4 878148493 +624 687 2 891961362 +94 679 4 891722006 +396 245 3 884645720 +182 50 5 885613018 +361 49 3 879441179 +492 772 1 879969512 +318 385 4 884496398 +538 42 1 877108077 +586 591 3 884058249 +450 731 3 882398084 +470 1 3 879178428 +303 143 4 879483680 +690 80 3 881177778 +174 178 5 886513947 +72 1147 5 880036783 +517 127 4 892660033 +500 268 5 883864840 +7 666 4 892132192 +318 618 3 884496984 +327 152 3 887819194 +468 111 4 875280518 +435 162 1 884132755 +1 66 4 878543030 +345 255 4 884994156 +239 462 5 889179623 +13 39 3 882397581 +311 66 4 884365325 +658 96 4 875147873 +552 1014 4 879222520 +682 597 1 888522699 +622 855 3 882592103 +654 678 4 888687055 +262 153 3 879793346 +664 663 4 876525998 +481 283 5 885828389 +545 549 4 879901920 +593 183 4 875670915 +606 161 4 880926994 +426 135 3 879444604 +269 255 1 891446703 +536 708 3 882361179 +680 20 4 877075273 +76 93 4 882606572 +561 52 4 885809583 +207 475 2 875503932 +295 381 5 879518528 +346 541 3 874951104 +234 765 3 892336322 +276 769 1 874977334 +21 259 2 874951005 +677 148 4 889399265 +427 258 4 879700792 +606 993 5 887059716 +401 511 2 891033092 +138 509 4 879024232 +234 650 3 892078837 +478 1048 4 889388357 +388 9 3 886437226 +232 100 5 880062447 +483 180 2 878954086 +683 268 4 893286261 +90 496 4 891385787 +634 508 4 880067125 +542 357 5 886532534 +198 431 3 884208137 +496 356 2 876070764 +408 313 4 889679761 +417 1416 2 880952534 +379 434 3 880961672 +554 173 3 876369527 +622 50 5 882592815 +291 117 5 874834481 +642 462 4 886455357 +295 465 4 879518630 +486 935 4 879874516 +222 1188 3 881060281 +345 485 4 884992141 +434 7 1 886724505 +642 527 4 886207132 +176 286 2 886046979 +151 93 5 879525002 +223 1016 5 891549657 +705 1043 5 883427857 +682 357 3 888516979 +85 710 2 879828912 +85 82 3 879454633 +655 698 4 887473727 +543 518 3 874864736 +524 416 4 884636152 +363 204 2 891495402 +537 281 1 886030281 +693 132 4 875484562 +230 121 4 880484998 +256 538 5 882150122 +653 474 4 880150019 +551 943 5 892783451 +592 12 5 882955825 +26 116 2 891352941 +398 602 4 875660302 +680 1012 3 877075214 +110 1090 2 886989191 +597 264 4 875339156 +705 578 3 883428276 +524 705 3 884634818 +84 628 3 883450434 +378 94 3 880332752 +567 209 4 882426812 +129 903 2 883245311 +502 687 4 883702867 +514 293 3 880209950 +524 950 4 884323351 +115 176 5 881171203 +416 1262 5 893213019 +244 433 5 880603683 +299 91 4 889501654 +690 276 3 881178293 +655 1379 3 888685879 +149 346 4 883512658 +268 191 4 875310784 +387 429 3 886484065 +541 174 4 883871524 +59 180 4 888204597 +650 238 4 891382032 +276 475 5 874786756 +437 275 5 881001888 +655 208 3 888813272 +527 7 5 879456162 +532 251 4 888636374 +650 449 3 891370031 +111 315 5 891679692 +197 183 5 891409839 +513 127 4 885062286 +91 601 4 891439171 +605 475 3 879424369 +521 22 4 884477677 +500 98 4 883873811 +334 629 4 891548460 +145 1051 2 888398087 +528 298 4 888520849 +535 61 3 879619107 +279 1037 1 888806543 +405 666 1 885549635 +499 157 3 885599447 +543 704 3 875662979 +562 416 5 879195613 +659 179 1 891384077 +611 896 3 891636152 +72 5 4 880037418 +478 65 4 889395879 +660 197 3 891199965 +141 1014 3 884585572 +442 1218 2 883388960 +655 1134 3 887611594 +323 50 5 878739137 +203 323 3 880433558 +640 750 5 886353742 +487 239 5 883531507 +9 242 4 886958715 +624 342 3 891961267 +236 328 5 890117711 +670 651 4 877975070 +701 285 5 891447139 +223 1051 3 891549945 +429 418 3 882386096 +624 333 4 879791884 +299 502 4 878192756 +257 286 5 879029516 +299 402 3 889502865 +218 648 4 877488233 +693 131 3 875484953 +565 638 4 891037837 +406 405 3 879540296 +671 233 4 883547351 +620 35 3 889988340 +538 566 3 877107765 +443 12 5 883505379 +592 305 4 885280098 +92 363 3 886443455 +671 581 2 884035173 +584 313 5 885773921 +653 196 2 880151539 +642 1076 2 885606648 +693 480 4 875484454 +492 285 4 879969345 +435 195 5 884131118 +160 483 5 876859413 +493 60 2 884131263 +694 432 4 875727513 +91 328 4 891438245 +699 748 2 879382698 +507 690 4 889964074 +639 197 3 891239492 +337 879 3 875429233 +623 435 5 891035112 +214 582 3 891544236 +653 230 3 890181186 +699 100 4 878882667 +694 191 5 875727749 +240 269 5 885775536 +144 514 5 888105197 +698 512 4 886367644 +279 480 3 875309189 +632 184 5 879458277 +458 143 4 886396005 +456 143 3 881373983 +336 204 5 877757601 +495 1469 5 888636810 +532 1188 4 874790998 +495 229 3 888634918 +298 211 5 884125093 +560 654 5 879975613 +658 458 3 875145926 +518 147 4 876823324 +545 419 3 884134177 +655 909 3 890611503 +619 350 3 885953641 +279 342 4 881375917 +521 431 4 884478601 +416 754 5 893214128 +301 12 4 882076239 +59 789 4 888205087 +62 569 1 879376158 +632 282 4 879458806 +102 68 2 888801673 +621 398 2 874964605 +653 448 4 878867249 +692 285 3 876953204 +349 100 4 879466479 +606 174 5 880924663 +519 259 1 883248278 +371 183 5 880435519 +545 182 3 883115423 +388 307 4 886439506 +486 124 5 879874545 +655 1008 3 887426300 +343 98 5 876404836 +457 1039 5 882397934 +1 77 4 876893205 +111 354 4 891679692 +704 205 5 891397819 +417 258 4 879645999 +524 584 1 884635205 +606 153 3 880926700 +200 62 5 884130146 +659 654 4 891384526 +595 1061 3 886921945 +507 750 5 889964274 +671 23 4 883547351 +405 193 4 885544698 +669 326 1 891182678 +487 685 3 883444252 +546 164 4 885141360 +149 874 3 883512752 +618 576 4 891309608 +608 133 4 880405165 +125 687 3 892836268 +472 28 5 892791063 +679 288 4 884312660 +582 3 3 882961723 +555 410 4 879962769 +417 357 5 879647118 +301 250 4 882074236 +347 202 4 881654211 +553 515 5 879948386 +393 68 4 889729537 +72 466 4 880037461 +650 55 4 891369889 +301 393 3 882078735 +270 582 3 876955087 +279 1185 1 888805868 +436 92 3 887770115 +184 715 4 889909590 +373 435 4 877098979 +404 690 5 876889178 +338 215 3 879438092 +347 203 5 881654232 +647 328 3 876531582 +621 561 4 874964945 +650 692 3 891384226 +465 32 3 883531026 +322 258 4 887313698 +457 117 4 882393457 +59 185 5 888205228 +457 203 4 882397133 +435 15 3 884132146 +707 14 3 880060118 +609 258 3 886894677 +692 692 3 876953130 +499 275 3 885599447 +429 210 4 882387731 +160 589 3 876857977 +461 158 2 885355930 +234 1100 2 892335500 +623 659 5 891035112 +409 1093 2 881106087 +643 111 4 891446301 +589 286 3 883352372 +345 620 2 884991614 +195 386 2 874825826 +463 1163 4 877385982 +514 181 4 875463494 +498 212 3 881958238 +417 946 4 880950324 +389 283 5 879916099 +12 416 3 879959025 +476 1036 2 883364780 +653 1023 3 878855109 +487 550 3 883530841 +250 458 5 878092104 +210 443 4 887737487 +666 1266 5 880139493 +648 5 4 884883476 +543 111 4 874861699 +537 88 2 886032204 +268 831 3 875744357 +44 496 4 878348885 +435 31 5 884131157 +501 125 3 883348435 +224 687 2 888082135 +700 181 5 884493523 +194 88 3 879549394 +405 8 4 885545015 +682 94 3 888522021 +481 100 4 885828426 +145 447 5 877343185 +563 210 4 880507483 +200 410 3 876042204 +595 151 5 886921475 +704 209 3 891397667 +429 405 3 882387202 +618 97 5 891308913 +592 534 5 882608531 +457 70 4 882396935 +630 172 3 885667918 +23 214 3 874785701 +466 328 4 890284652 +643 24 4 891449614 +49 997 1 888069117 +64 273 2 889739381 +671 188 2 884035992 +685 319 2 879451401 +568 509 4 877906935 +411 1475 3 891035617 +178 7 4 882823805 +655 1607 3 887768472 +463 1377 4 889935837 +610 591 3 888703316 +518 820 2 876824218 +620 1 5 889987954 +697 331 3 882621431 +655 77 3 887430746 +655 500 2 887651149 +588 164 5 890026262 +94 951 3 891722214 +450 823 3 887139729 +141 619 4 884585039 +291 597 3 874833857 +450 274 4 882469627 +450 380 5 882398939 +474 664 4 887925620 +315 204 5 879821158 +664 469 3 876524474 +291 202 4 874871736 +85 132 5 879453965 +293 174 5 888905923 +269 792 4 891448436 +72 69 4 880036579 +592 307 4 882607528 +16 684 5 877719863 +627 939 3 879530264 +388 559 5 886441133 +548 234 4 891044356 +353 358 1 891402617 +249 421 5 879572516 +222 716 2 878183481 +490 926 2 875428185 +533 1016 3 887721769 +242 283 4 879740362 +244 68 5 880602170 +551 728 2 892785331 +504 448 5 887840134 +378 237 4 880044697 +686 187 5 879545481 +659 89 4 891384637 +500 611 5 883873940 +547 333 4 891282555 +222 816 1 881060412 +222 191 2 878181906 +5 216 1 875720967 +685 340 2 879451401 +704 354 4 891397015 +299 970 4 877880350 +479 281 3 879460285 +430 248 3 877225832 +405 1103 2 885546025 +110 88 4 886988967 +457 195 5 882395049 +405 1070 1 885547123 +113 9 3 875076307 +655 1538 3 887425498 +642 88 5 886131546 +692 287 3 876953130 +496 204 3 876066531 +666 529 5 880568129 +655 792 3 891585380 +642 139 1 886569417 +452 62 2 875563098 +102 49 2 892992129 +529 319 4 882535220 +655 284 2 887426732 +655 619 3 887430746 +235 1176 5 889655820 +187 179 5 879465782 +682 443 3 888520977 +405 684 3 885547996 +406 663 5 879446269 +648 471 4 882211685 +605 325 2 879365219 +397 855 4 885349476 +109 95 4 880572721 +455 64 4 879111500 +472 78 1 875982967 +158 1016 3 880132701 +687 245 3 884652276 +301 758 3 882075242 +263 1 5 891299207 +429 202 4 882385829 +531 688 1 887048998 +18 528 4 880129489 +682 940 2 888521907 +472 928 4 875979562 +627 1136 4 879530762 +299 77 3 878192638 +695 300 1 888805767 +657 151 4 884239886 +399 233 3 882347061 +182 150 3 885613294 +246 181 5 884920978 +693 289 3 889167919 +373 571 1 877111864 +457 231 4 882549998 +437 843 4 880143520 +593 193 4 886193361 +40 321 4 889041523 +85 136 4 879454349 +219 38 1 889452455 +543 239 2 877550660 +393 204 4 887746301 +60 684 4 883328033 +550 288 5 883425979 +234 443 3 892334079 +28 288 5 882826398 +388 596 4 886436661 +545 384 3 879900863 +542 273 3 886532466 +654 825 3 887863826 +582 50 5 882961082 +5 420 3 875721168 +655 733 3 888474138 +167 83 5 892738384 +653 967 2 880153123 +497 399 4 879310883 +328 692 4 885046976 +675 306 5 889488487 +405 1219 1 885549094 +533 22 4 879438961 +562 402 5 879196074 +650 650 2 891372203 +405 784 1 885548275 +524 403 4 884636182 +496 227 1 876066794 +658 772 3 875147591 +320 274 4 884748683 +661 676 4 886841222 +405 1044 4 885545552 +180 961 5 877544384 +90 454 2 891383423 +697 298 4 882621940 +291 100 5 874834481 +291 69 5 874868146 +378 125 2 880044609 +215 174 4 891435995 +543 170 4 874863269 +12 215 4 879959553 +666 699 3 880568297 +406 39 4 884630523 +645 59 5 892053429 +128 393 4 879969136 +632 150 2 879457525 +483 229 3 878953485 +151 628 5 879528674 +12 4 5 879960826 +479 727 5 879461818 +627 83 3 879530071 +457 792 4 882548312 +606 42 3 880926245 +59 616 5 888206049 +586 397 3 884063080 +361 168 4 879440386 +666 132 4 880139669 +72 222 1 880036346 +474 274 3 887916330 +633 172 3 877212250 +336 780 3 877756934 +141 871 3 884585148 +683 511 5 893286207 +568 478 4 877907235 +90 221 4 891383987 +621 250 4 880738568 +365 268 5 891303474 +589 749 3 883352631 +368 234 3 889783365 +523 509 4 883700870 +63 25 4 875747292 +181 1345 1 878962168 +255 325 1 883215723 +705 58 2 883518834 +373 510 3 877100379 +433 326 2 880585386 +639 305 1 891238668 +445 7 1 891200078 +116 323 3 876452186 +630 832 2 885667528 +480 89 4 891208651 +490 1386 4 875428416 +303 425 4 879466795 +587 350 3 892871372 +416 463 4 886316703 +13 818 3 882141814 +250 754 4 883263374 +650 1065 4 891383547 +634 748 3 875729217 +313 505 5 891014524 +269 496 5 891455816 +436 559 4 887770640 +682 1074 4 888517792 +43 294 5 875975061 +99 313 5 885678348 +201 196 4 884111677 +608 185 5 880405484 +405 480 4 885544739 +393 696 4 887745258 +435 105 3 884133872 +643 367 4 891447518 +194 507 4 879520916 +405 12 5 885545306 +440 350 5 891550404 +385 1069 4 879442235 +35 333 4 875459017 +697 301 5 882621523 +345 1281 4 884991105 +708 322 3 892719062 +534 273 5 877807747 +655 936 3 887425625 +301 462 2 882076587 +663 332 4 889491768 +569 473 4 879794699 +405 790 1 885547360 +537 168 4 886030552 +650 671 3 891386878 +621 180 4 885596944 +665 156 5 884294772 +444 9 5 890247287 +457 94 3 882549544 +671 748 3 875386402 +507 315 5 889964593 +64 288 4 879365313 +288 136 5 886374316 +56 443 4 892679144 +184 65 4 889909516 +551 685 1 892782901 +682 293 4 888523581 +217 403 5 889069944 +527 4 2 879456162 +398 174 5 875660535 +437 699 4 880143419 +534 294 5 877807461 +389 154 3 880087200 +416 472 4 876698204 +494 294 4 879540593 +622 472 3 882591687 +666 245 3 880138865 +561 702 3 885809873 +406 1194 4 879446588 +600 510 5 888451665 +184 1 4 889907652 +654 50 5 887863323 +655 1085 2 888813416 +284 751 3 885329322 +397 346 4 890172230 +246 172 5 884922042 +294 1011 2 889242370 +142 425 4 888640489 +601 225 1 876347462 +293 518 5 888906489 +487 96 5 883446801 +398 73 3 875723337 +445 118 2 891200506 +336 1183 1 877757972 +642 364 5 885843025 +56 373 4 892910950 +447 284 4 878854552 +619 405 3 885953826 +524 1152 3 884626906 +583 7 5 879384471 +207 69 4 877878342 +124 173 2 890287687 +655 481 2 888474390 +168 225 5 884288304 +307 70 4 877121347 +181 289 4 878961332 +655 1649 3 892333993 +325 200 2 891478120 +423 125 2 891395547 +707 663 4 886286979 +634 21 2 875729668 +20 378 3 879669630 +524 836 2 884637409 +661 95 5 876036190 +465 705 4 883531444 +569 508 3 879793785 +610 79 3 888702859 +629 340 2 880115971 +303 255 4 879544516 +313 211 5 891013859 +82 474 3 878769597 +548 1014 4 891043932 +474 208 3 887925497 +607 45 4 883880079 +592 1514 5 882608625 +623 648 5 891035112 +308 210 4 887737130 +383 345 2 891192251 +698 83 5 886366731 +618 596 4 891309065 +95 465 3 882803918 +567 484 4 882426508 +450 316 4 889568753 +450 166 5 887660440 +684 161 3 878760137 +627 69 3 879529855 +287 100 5 888177364 +409 192 4 881107666 +99 147 5 885678997 +537 64 3 886030707 +621 241 4 874964604 +202 269 4 879726420 +642 148 5 885604163 +495 143 1 888634315 +41 168 5 890687304 +602 988 4 888638248 +505 588 5 889333823 +655 672 2 891585573 +295 237 4 879517994 +450 125 4 882376803 +579 286 4 880951444 +617 175 4 883789386 +617 573 4 883789590 +686 180 5 879546147 +566 192 5 881649747 +609 288 2 886894677 +405 101 1 885549192 +90 218 5 891385899 +71 174 2 877319610 +642 68 3 885606765 +109 229 5 880578632 +599 1315 4 880951743 +346 423 4 874949057 +452 154 5 888568251 +618 239 3 891309293 +533 696 3 887032538 +450 535 3 882812636 +650 286 3 891369022 +533 204 4 879192157 +330 969 5 876546409 +346 842 1 874948513 +637 408 5 882901355 +682 50 5 888518639 +130 29 3 878537558 +94 228 4 891720996 +543 8 4 875658853 +476 80 3 883364392 +198 434 3 884208061 +637 255 3 882903645 +498 514 4 881958093 +457 405 5 882553113 +222 377 1 881060205 +624 741 4 879792557 +582 268 4 882960396 +393 1435 3 889731821 +87 153 5 879876703 +670 945 4 877975285 +56 501 3 892737210 +506 92 3 874876551 +435 566 4 884132643 +498 887 3 881953907 +655 213 4 888474934 +682 541 3 888522612 +648 399 4 884882104 +116 678 3 876452228 +111 302 5 891679971 +14 265 3 890881216 +457 732 4 882548426 +308 496 3 887736532 +472 569 4 892790676 +643 181 3 891445476 +595 929 2 886921722 +59 371 4 888206095 +506 224 1 885136005 +650 175 4 891372233 +505 204 3 889334162 +622 298 4 882590559 +682 122 3 888522260 +387 295 3 886480818 +14 923 5 890881294 +145 343 5 882181082 +709 219 4 879848120 +145 898 1 885555980 +621 268 4 890517367 +632 186 5 879459738 +704 381 3 891397713 +116 515 4 876452443 +659 659 3 891332006 +328 1107 3 885048532 +707 256 4 880061024 +664 81 5 876524474 +686 172 4 879545181 +233 633 5 877663185 +181 460 1 878963418 +707 716 2 886287051 +159 476 5 880557564 +660 625 3 891200513 +694 196 5 875727226 +262 283 3 879962366 +474 107 3 887915722 +650 143 5 891369656 +492 479 3 879969583 +409 661 5 881107817 +452 631 4 888568464 +38 401 3 892434585 +266 321 3 892256892 +535 153 4 879617663 +393 810 4 889731138 +525 15 4 881085964 +478 69 3 889388612 +435 239 4 884132968 +663 273 4 889492679 +92 258 4 886440479 +533 291 3 882902727 +90 133 5 891384147 +524 930 3 884832772 +628 305 5 880776981 +618 4 2 891308459 +553 135 4 879948996 +399 544 2 882340556 +524 72 4 884636958 +23 144 3 874785926 +551 595 2 892784744 +435 3 3 884133911 +148 227 4 877399083 +506 391 2 885135912 +334 879 3 891544264 +352 56 5 884289760 +609 125 4 886895193 +550 121 5 883426027 +276 184 4 874792547 +54 100 5 880931595 +204 316 4 892388935 +573 479 4 885844051 +504 651 4 887832531 +474 212 4 887927670 +167 288 3 892737972 +18 704 3 880131986 +693 1522 3 875483670 +401 566 5 891033684 +407 248 4 884197006 +592 405 4 882608531 +13 573 3 882396955 +530 582 4 883783631 +585 61 4 891283338 +234 416 4 892335616 +83 225 3 880307208 +541 1185 2 883866028 +361 794 3 879441033 +372 443 4 876869481 +456 226 2 881375482 +665 298 3 884292654 +426 50 4 879442226 +568 855 1 877906935 +506 241 2 874874850 +325 647 5 891478529 +257 275 4 879029716 +694 229 4 875728801 +552 286 4 879220564 +416 1441 3 886318546 +128 367 4 879968858 +569 826 3 879794660 +634 411 4 877018059 +8 227 4 879362423 +43 168 4 875981159 +705 827 4 883427297 +521 56 4 884478530 +346 385 5 886274124 +648 175 3 882213597 +201 317 3 884113634 +313 300 4 891012907 +588 94 2 890027865 +392 705 5 891038433 +325 32 3 891478665 +121 156 4 891388145 +588 419 5 890023646 +495 790 3 888636635 +705 400 4 883427817 +74 276 4 888333458 +622 47 3 882670406 +267 155 3 878973088 +577 407 4 880471271 +693 604 3 875484480 +474 168 3 887927670 +619 50 4 885953778 +590 14 5 879438852 +194 783 2 879527865 +420 603 4 891356864 +665 15 4 884290676 +276 546 3 874786568 +634 126 3 875729106 +432 815 3 889416260 +577 1 5 880470282 +532 636 5 892859149 +569 979 3 879793948 +269 508 4 891446265 +666 429 5 880139409 +389 506 4 879991330 +207 182 3 891759050 +653 509 4 878854441 +250 1426 5 878091771 +615 303 5 879447530 +385 46 5 880870206 +671 628 3 883950232 +276 313 5 885159577 +454 89 1 888266433 +297 984 1 881707865 +92 583 3 875907134 +426 705 5 879441931 +601 47 3 876349542 +378 1035 3 880332911 +210 234 4 887737108 +671 53 3 884034800 +487 742 5 883442053 +92 636 3 875812064 +478 160 2 889395921 +407 715 4 876340239 +709 564 1 879848318 +618 123 2 891308063 +300 881 5 875650105 +624 876 3 879792251 +362 245 4 885019504 +60 7 5 883326241 +682 1220 4 888518130 +665 172 4 884293523 +479 108 4 879460424 +642 769 5 885842903 +130 1279 4 876251217 +514 136 4 875462867 +352 39 5 884289728 +235 462 3 889656168 +378 410 3 882022445 +545 820 3 879901359 +59 198 5 888204389 +42 64 5 881106711 +645 87 4 892055444 +392 271 1 891037490 +457 65 5 882547967 +16 476 3 877720437 +537 243 1 886029239 +619 1016 4 885953826 +533 191 4 879192315 +711 421 4 879993674 +618 673 3 891309139 +632 483 5 879459738 +535 221 3 879618700 +44 102 2 878348499 +650 968 4 891372258 +417 106 2 879646741 +148 418 3 877019251 +416 737 3 886318613 +661 52 4 876017029 +603 229 4 891955972 +159 276 5 880485824 +497 731 3 879310474 +379 654 5 880526123 +666 474 5 880139323 +429 700 3 882386485 +660 527 3 891200073 +320 232 4 884749281 +561 578 3 885810575 +44 7 5 878341246 +664 450 3 876526604 +123 23 4 879873020 +638 238 4 876695819 +655 1017 3 887611566 +665 508 2 884290751 +293 638 4 888906168 +406 151 2 879540051 +378 318 5 880045823 +398 47 3 875738523 +639 724 3 891239581 +454 1035 3 888266601 +125 117 3 879454699 +474 511 5 887925620 +405 448 4 885548331 +109 81 2 880580030 +158 1067 4 880134261 +707 526 1 886287405 +655 728 2 887431019 +409 606 4 881108829 +454 237 4 881960361 +525 151 5 881086562 +308 203 5 887737997 +514 473 3 875462520 +454 879 4 881958402 +468 655 5 875294464 +405 1271 2 885547506 +633 322 3 875325888 +632 655 3 879457641 +506 68 4 874873944 +401 143 4 891033034 +663 1073 3 889493691 +117 596 3 880126392 +204 322 3 892391947 +636 740 4 891449263 +588 208 3 890023879 +635 301 3 878878587 +239 69 1 889179544 +449 1142 4 879958803 +183 202 4 891463320 +654 294 3 887863127 +233 498 5 877663465 +650 4 3 891386695 +655 97 3 887426931 +709 64 5 879846293 +537 135 5 886031149 +561 212 3 885809025 +709 769 3 879848239 +707 153 3 886286844 +200 582 4 884129782 +174 721 2 886514889 +503 275 5 879438411 +684 218 1 878232961 +621 746 4 874963028 +655 867 4 887427307 +313 142 3 891030261 +499 295 2 885598827 +501 1067 5 883348011 +235 50 5 889655403 +655 117 2 887426030 +682 97 4 888517587 +655 149 4 887425936 +667 318 5 891034976 +562 1039 4 879196105 +463 1197 4 877385180 +389 1036 2 880087170 +630 70 2 885667994 +442 27 2 883390416 +601 172 4 876348736 +621 174 3 874965407 +345 131 4 884992998 +87 926 4 879877043 +306 283 3 876503995 +72 402 4 880036824 +593 69 5 875660419 +248 250 3 884535532 +28 185 5 881957002 +581 181 3 879641787 +58 462 4 884304865 +658 98 4 875147800 +588 125 3 890026154 +91 750 5 891438209 +648 68 1 884882916 +622 46 4 882670610 +627 1074 3 879530694 +627 258 4 879529339 +710 627 4 882064377 +626 948 1 878771281 +480 213 5 891208492 +183 228 4 891463591 +642 195 3 885602718 +625 191 3 891636079 +361 451 3 879440740 +608 423 4 880406727 +524 578 5 884637031 +586 379 4 884060941 +417 393 4 879648096 +632 81 5 879458834 +498 183 4 881957905 +576 257 4 887168556 +13 761 4 882398076 +592 118 3 882609056 +337 181 2 875184353 +429 338 3 882387599 +602 127 5 888638491 +608 753 5 880405395 +509 754 1 883590676 +592 1097 4 882608021 +130 294 5 874953337 +338 525 4 879438449 +708 471 4 877325455 +416 27 4 886318270 +39 294 4 891400609 +59 1048 4 888203270 +279 31 3 875309667 +693 472 3 875484089 +598 292 4 886710735 +488 196 3 891293974 +665 111 4 884290608 +493 357 5 884130891 +334 744 3 891545108 +325 1149 4 891479228 +230 491 3 880484975 +458 696 3 886395512 +167 237 4 892737972 +393 290 3 887745322 +454 483 3 881960145 +605 300 2 879365101 +116 181 4 876452523 +466 258 4 890284652 +232 250 4 880062618 +528 402 4 888520911 +643 235 4 891445698 +45 1059 2 881014417 +707 676 4 880060180 +458 526 5 886396241 +634 313 5 884980565 +532 335 3 888636389 +478 300 3 889387471 +318 179 4 884497546 +499 605 1 885599533 +495 423 5 888633522 +442 117 3 883390366 +435 69 4 884131243 +707 866 2 880060974 +49 171 4 888066551 +694 419 4 875729907 +442 33 3 883388508 +60 204 4 883326086 +249 173 5 879572229 +705 298 5 883426892 +639 137 3 891239271 +490 93 4 875427993 +359 118 3 886453402 +452 947 5 885816915 +189 178 5 893265191 +265 756 4 875320574 +253 433 3 891628670 +694 300 4 875726453 +70 142 3 884150884 +429 181 5 882384870 +85 1136 3 879455402 +653 216 3 878866900 +506 173 4 874874308 +645 403 3 892055603 +537 1451 3 886030552 +104 871 2 888465853 +661 357 4 876014469 +618 356 2 891309608 +116 1039 4 876453915 +344 928 2 884900409 +540 1048 4 882157635 +693 427 4 875484908 +206 337 2 888180049 +82 367 4 878769848 +399 576 3 882350563 +178 735 5 882827083 +496 433 4 876066904 +561 1449 5 885808620 +592 121 4 882608573 +472 373 4 875983129 +399 451 3 882344684 +100 326 3 891375630 +201 346 4 884110766 +618 371 3 891308980 +588 781 2 890028509 +168 1012 5 884287509 +318 321 4 884470149 +268 525 4 875309913 +615 518 4 879448632 +248 1 3 884535744 +354 241 3 891307069 +70 408 4 884152129 +561 47 4 885809557 +569 16 3 879794348 +254 403 3 887347350 +301 576 4 882079199 +682 273 4 888520864 +614 717 4 879465414 +615 462 4 879447990 +705 622 4 883427778 +332 742 5 887938224 +141 1047 4 884585220 +479 177 4 889125665 +666 1045 4 880567974 +606 1280 2 889137292 +268 240 2 875742341 +570 690 3 881262307 +301 451 4 882078061 +435 159 5 884132898 +561 174 4 885808053 +684 88 4 878761788 +472 576 5 892790952 +378 79 4 880045722 +590 130 1 879439567 +373 380 4 877112017 +508 168 4 883767172 +450 1208 3 882399359 +618 215 4 891307494 +592 1281 3 882608795 +435 29 3 884133691 +221 1267 3 875246459 +493 71 5 884131020 +519 332 3 883248159 +456 135 4 881373169 +542 99 5 886533587 +648 195 5 884368313 +60 215 4 883327566 +56 227 3 892676430 +592 922 3 882608736 +699 1 3 878882272 +417 895 3 886186520 +393 168 4 887746482 +463 268 4 877384940 +474 45 5 887924618 +495 402 3 888635050 +405 143 5 885548785 +686 504 5 879545662 +618 1032 2 891309192 +13 670 3 882396955 +529 271 4 882535536 +463 472 3 877385922 +579 433 3 880952237 +643 100 5 891445140 +234 13 3 892335342 +59 212 4 888205463 +201 145 3 884114813 +318 722 4 884497546 +264 7 5 886122261 +230 266 4 880484286 +413 332 3 879968890 +686 357 5 879545549 +490 224 2 875428702 +622 705 3 882592217 +234 301 3 892826947 +586 254 4 884064246 +521 755 3 885254872 +655 271 3 887425103 +600 1188 3 888452152 +234 223 3 892079336 +704 316 4 891397015 +487 230 5 884036466 +504 631 4 887837701 +436 1048 2 887770379 +450 393 4 882812349 +381 132 5 892696426 +380 570 3 885479706 +373 83 5 877098599 +712 747 3 874730552 +488 612 4 891294210 +488 515 4 891293699 +663 924 3 889492351 +450 845 4 882373385 +612 237 3 875324455 +19 202 4 885412723 +194 419 2 879521088 +642 790 4 885605932 +683 264 2 893283997 +561 614 3 885809336 +617 429 3 883789212 +194 1044 2 879524579 +561 405 2 885809313 +474 497 5 887926106 +190 326 4 891033305 +398 495 4 875660439 +659 202 4 891385306 +343 179 5 876405633 +704 604 5 891397366 +198 69 4 884207560 +655 1067 2 887650593 +527 498 4 879455961 +655 572 2 887651149 +566 959 4 881651406 +577 208 4 880474556 +422 286 5 875129523 +608 318 4 880404916 +642 699 5 886568959 +189 934 2 893264678 +621 96 5 874963797 +559 502 4 891035946 +506 239 3 874874152 +569 15 4 879794265 +656 347 4 892318488 +514 215 4 875462689 +433 273 3 880585923 +399 564 3 882350899 +653 239 5 878854475 +226 203 5 883888978 +601 410 4 876347113 +456 421 3 881374086 +537 434 3 886031211 +459 332 3 879561630 +22 181 5 878887765 +320 89 4 884749327 +429 281 3 882386027 +487 403 4 884050247 +101 288 4 877137015 +633 385 4 875325497 +673 347 4 888787290 +534 1 5 877807718 +217 172 1 889069684 +297 168 5 875049192 +548 1278 4 891416371 +524 492 3 884634679 +648 385 5 884368130 +427 332 5 879701253 +648 290 3 882211707 +466 313 5 890284651 +330 15 5 876544366 +564 257 4 888731011 +102 95 4 883748488 +694 684 4 875730313 +552 248 4 879221795 +91 1126 1 891439301 +648 827 3 882211924 +152 173 5 882474378 +393 655 3 887746346 +694 193 4 875728435 +638 241 3 876695217 +394 257 4 881130047 +588 131 5 890024918 +665 307 3 884292654 +669 521 4 892550196 +456 845 3 881371839 +561 188 4 885807261 +38 409 5 892433135 +500 559 4 883875523 +655 1197 3 887474289 +158 866 2 880132701 +582 472 4 882962561 +189 165 5 893265535 +648 722 3 884882104 +344 285 5 889814068 +405 1036 1 885547506 +505 1 3 889333414 +680 276 5 877075135 +336 1079 1 877757094 +506 195 4 874873374 +661 1045 3 886841865 +429 90 4 882387731 +210 755 3 887737631 +650 313 4 891381546 +642 15 5 885602314 +186 356 5 879023663 +601 91 5 876349251 +600 530 4 888451664 +327 896 5 887820828 +537 321 3 886028791 +393 84 3 889731009 +347 159 4 881654635 +465 136 4 883530133 +303 746 4 879467514 +533 687 2 879193517 +541 1036 2 883866280 +514 313 5 891900147 +468 70 3 875287535 +626 289 1 878771281 +592 192 5 882955460 +700 144 4 884494252 +465 172 3 883531026 +417 1040 2 879649428 +585 1319 2 891285820 +343 1008 4 876403418 +327 86 4 887822433 +524 443 4 884636542 +407 315 4 891873158 +567 293 5 882427250 +201 185 5 884111217 +532 554 4 874790813 +389 285 5 879916076 +453 77 3 888207161 +18 189 5 880129816 +666 656 4 880139120 +248 180 3 884534735 +189 151 5 893264378 +548 717 4 891416050 +650 367 2 891387490 +653 748 5 878853734 +693 143 4 875484613 +664 210 4 878090054 +85 1174 3 879454633 +354 733 3 891217693 +505 294 3 888631311 +646 319 3 888529054 +653 405 3 878854810 +577 673 3 880474851 +193 153 4 889125629 +178 157 5 882827400 +13 453 2 882397067 +314 775 3 877888645 +683 286 2 893282977 +486 333 2 879873973 +479 270 4 879459641 +676 751 4 892685695 +405 1415 1 885549045 +505 210 4 889333508 +328 849 3 885048333 +344 71 3 884901371 +642 249 5 885604805 +385 173 4 879441386 +389 520 3 879991175 +549 472 3 881672408 +484 173 5 891195036 +246 672 4 884923047 +655 1252 3 887425601 +244 70 4 880604077 +643 77 3 891449557 +128 220 1 879968352 +18 631 5 880129691 +577 210 3 880474715 +276 42 4 874791623 +57 288 4 883696347 +533 294 4 879193088 +695 307 4 888806120 +506 425 4 874874585 +666 518 4 880567742 +393 132 2 887746207 +608 196 5 880405395 +190 148 4 891033742 +561 130 4 885810429 +387 774 3 886481737 +316 633 4 880854472 +94 710 3 891721117 +715 228 3 875963486 +181 109 1 878962955 +286 781 4 877532777 +701 316 5 891446857 +378 482 4 880046229 +588 85 5 890026882 +550 301 2 883426119 +625 179 4 891961170 +426 23 4 879444734 +60 9 5 883326399 +65 476 3 879217290 +100 269 4 891374641 +627 184 4 879531248 +499 902 5 892501173 +371 69 5 877486953 +311 404 3 884365406 +92 382 4 875656317 +587 269 3 892870956 +571 124 4 883354760 +177 258 3 880130379 +13 815 4 886303934 +492 131 3 879969720 +642 625 3 885603932 +561 12 5 885809356 +666 186 2 880139587 +254 1060 3 886472466 +456 1010 5 881371766 +622 166 5 882669695 +602 748 3 888638160 +577 949 2 880475408 +713 310 4 888882133 +311 755 4 884366035 +561 665 3 885810309 +537 479 4 886030938 +234 511 5 892078567 +668 286 4 881523612 +629 265 4 880116887 +195 276 4 880710086 +288 174 4 886374286 +474 182 5 887923924 +112 751 4 884992754 +667 1101 3 891035015 +149 1295 3 883512813 +664 169 5 878092569 +608 969 5 880407079 +713 539 3 888882085 +151 199 3 879524563 +271 131 4 885849419 +715 202 5 875962931 +586 672 2 884061084 +500 396 3 883876224 +429 496 4 882384603 +573 178 4 885844395 +698 497 3 886367473 +429 1218 3 882387653 +477 756 4 875940755 +387 434 5 886483970 +163 305 2 891219977 +592 294 3 882607434 +639 707 5 891239492 +392 250 3 891038158 +497 122 1 879309802 +181 1335 1 878963241 +533 504 4 888845229 +507 748 5 889964844 +399 628 3 882340719 +588 72 4 890026939 +437 1227 3 880142630 +64 650 3 889740225 +387 231 3 886483194 +450 609 5 882398312 +334 1132 2 891545616 +504 411 4 887831447 +181 683 1 878962006 +399 824 2 882341445 +497 28 3 879363586 +135 203 4 879857797 +619 258 5 885953622 +551 70 4 892783057 +653 22 5 878854284 +682 658 4 888517390 +484 51 4 891194910 +534 763 4 877808361 +192 25 4 881367618 +436 585 3 887771722 +329 295 4 891656012 +354 60 5 891217160 +412 651 4 879717548 +648 4 1 884881646 +640 4 4 874778065 +71 429 4 877319610 +690 85 1 881177430 +456 97 4 881373838 +661 531 4 876013552 +16 125 3 877726944 +654 969 5 887864204 +437 286 2 880139482 +707 640 2 886287471 +707 302 4 886285168 +561 132 2 885809269 +23 217 2 874787144 +327 447 4 887746196 +445 762 1 891200355 +716 318 5 879794962 +613 28 3 891227262 +363 69 3 891494865 +379 310 4 888646088 +569 748 2 879793228 +230 284 1 880485634 +622 737 5 882592678 +527 100 5 879455905 +538 275 4 877107050 +643 508 4 891445287 +144 282 4 888104123 +383 435 4 891192836 +506 715 2 874876486 +659 317 4 891331874 +506 802 4 885135954 +627 434 4 879529855 +236 100 3 890116402 +94 813 5 891720786 +659 181 3 891384107 +640 186 5 888026047 +190 508 3 891033905 +648 687 1 882212527 +569 225 3 879794408 +361 218 3 879441324 +713 1656 2 888882085 +606 56 5 880924483 +634 340 4 881952599 +682 1428 3 888518131 +149 1296 3 883512752 +24 79 4 875322796 +112 294 3 884992566 +406 136 4 879445522 +503 19 5 879438319 +425 1 2 878737873 +450 1091 4 882468047 +655 166 3 891585530 +167 512 5 892738341 +347 405 4 881652610 +293 192 5 888905582 +608 50 1 880403765 +14 191 4 890881557 +561 319 2 885809005 +154 211 4 879139002 +595 324 3 886920632 +200 622 3 884129782 +13 410 1 882141997 +536 746 5 882359838 +699 321 3 879383009 +158 408 5 880132313 +429 4 4 882385684 +407 561 4 887832999 +57 240 2 883697512 +405 1405 1 885549745 +668 354 4 890349060 +385 1252 5 879578355 +716 483 5 879795790 +566 1005 5 881650090 +416 425 4 886316647 +707 478 4 886285762 +11 29 3 891904805 +509 289 2 883590972 +13 775 4 886304188 +484 392 4 891194932 +622 558 2 882592523 +594 988 2 874780945 +497 545 3 879363233 +437 739 3 880143243 +586 436 2 884060807 +682 69 4 888519206 +478 196 3 889395921 +21 564 3 874951797 +519 1293 5 883250148 +499 300 4 882995625 +532 307 4 880831630 +524 604 4 884637501 +601 443 4 876350766 +593 470 2 875671062 +682 191 3 888517197 +679 181 5 884487279 +551 544 4 892784093 +665 427 5 884293309 +324 276 5 880575531 +655 1475 3 887477386 +697 273 5 882622481 +38 411 3 892433290 +659 735 3 891385079 +327 568 2 887820417 +711 64 4 876278860 +314 332 5 877886029 +586 237 4 884057783 +43 248 4 875975237 +102 88 3 892991311 +543 97 3 874864346 +25 495 4 885852862 +660 21 3 891198671 +588 399 3 890027379 +447 815 3 878854658 +89 49 4 879460347 +379 393 4 892879325 +711 684 3 879993758 +637 717 3 882905572 +263 98 4 891297988 +11 724 3 891904551 +145 66 4 875272786 +666 25 3 880313559 +661 408 5 876015530 +408 324 5 889680018 +656 286 1 892318343 +472 1110 5 875981429 +305 433 2 886324792 +347 943 4 881654545 +10 69 4 877889131 +561 447 3 885808767 +670 615 3 877974605 +603 1240 5 891956058 +495 90 4 888635637 +565 713 5 891037693 +640 168 5 886354114 +524 751 4 884701677 +342 251 5 875318267 +167 655 4 892738237 +659 402 3 891387400 +131 9 5 883681723 +616 1313 4 891224840 +224 660 4 888103703 +661 216 5 876017933 +672 281 3 879788819 +404 307 4 883790749 +6 79 3 883600747 +561 191 3 885807484 +681 898 4 885409515 +288 651 4 886374342 +660 202 2 891199683 +664 735 4 878092802 +64 559 3 889740310 +95 22 4 888953953 +545 79 4 879899233 +524 129 5 884322047 +178 460 2 882824869 +389 202 5 880087599 +416 395 2 886319620 +98 502 2 880499053 +453 552 2 877561713 +595 922 4 886921036 +437 1098 3 880141243 +291 1079 2 875086608 +633 276 3 875326698 +571 64 4 883355063 +152 153 4 880149924 +527 177 5 879456405 +449 742 3 879958839 +303 283 3 879467936 +633 317 3 875324598 +545 378 3 884134177 +526 50 5 885682426 +26 456 1 891386174 +5 438 1 878844423 +507 334 5 889964748 +694 195 4 875726708 +715 739 2 875964681 +588 154 4 890024529 +87 802 4 879875940 +87 47 3 879876637 +587 1483 4 892871337 +380 204 2 885479274 +523 116 5 883700766 +625 433 3 891636427 +29 268 5 882820686 +301 959 4 882078778 +708 268 3 892718876 +458 896 5 889323481 +472 69 5 892790628 +276 27 3 874787407 +373 24 4 877100016 +418 346 2 891282595 +663 985 3 889493210 +592 248 4 882608279 +642 235 2 885606047 +450 1220 5 882398084 +684 238 3 878759545 +622 577 2 882672143 +102 522 3 888803487 +523 866 5 883700618 +561 223 4 885807235 +90 836 5 891385190 +330 283 5 876544432 +633 651 3 877212283 +246 550 3 884922740 +477 1051 5 875941763 +267 230 4 878972493 +661 237 4 876037519 +591 100 5 891039565 +606 208 3 880925074 +651 242 5 880126430 +648 443 2 884883424 +269 196 1 891448283 +678 111 4 879544397 +514 200 2 875462867 +109 545 2 880583493 +370 423 4 879435369 +180 318 5 877355315 +585 970 3 891284915 +593 162 5 875671807 +343 747 4 876407174 +1 199 4 875072262 +139 676 4 879538275 +506 660 3 874873157 +640 64 5 874777701 +77 132 3 884753028 +293 1018 3 888907552 +658 724 3 875148059 +560 1014 4 879976215 +474 692 4 887927588 +663 741 4 889493351 +399 1540 3 882350282 +712 731 5 874729750 +660 1078 2 891201521 +370 613 2 879434587 +244 241 4 880602893 +393 258 4 887741960 +432 7 2 889415983 +543 24 3 874861639 +660 161 1 891201223 +628 300 5 880776981 +445 340 5 891035571 +524 79 4 884634818 +399 56 3 882346649 +181 1095 1 878962955 +243 724 3 879988459 +524 319 4 884638062 +653 378 3 890181185 +497 194 3 878759705 +546 322 4 885139921 +63 713 3 875747556 +561 1103 4 885807291 +396 237 4 884646092 +647 705 4 876530628 +487 651 5 883445606 +716 91 5 879796438 +655 393 2 887428334 +308 77 3 887740788 +374 229 5 880937780 +560 358 3 879975358 +588 559 5 890025951 +346 211 4 874948475 +655 958 3 887428993 +658 511 4 875147935 +276 375 1 874791339 +409 195 4 881109306 +610 699 2 888703507 +514 259 4 885180989 +367 670 4 876690021 +525 288 4 881085217 +673 311 4 888787396 +326 161 3 879875873 +417 498 4 879647540 +660 71 2 891200430 +94 201 4 891721378 +305 144 2 886323068 +168 280 4 884287580 +383 484 4 891192949 +650 223 3 891369656 +393 1182 3 889731413 +671 1222 3 884036365 +66 286 1 883601089 +346 743 2 875265295 +716 275 5 879793501 +648 862 1 884882441 +249 275 4 879572451 +454 259 4 881958606 +181 24 1 878962866 +239 921 5 889181092 +600 450 4 888453144 +580 181 5 884125042 +671 1239 3 884036683 +189 654 3 893265291 +410 311 3 888626913 +698 50 5 886366101 +412 81 2 879717829 +292 199 5 881105481 +343 385 3 876406939 +156 515 3 888185735 +648 636 4 884882916 +465 169 4 883531072 +372 446 4 876869512 +686 204 4 879546553 +591 47 3 891031426 +655 321 3 887425103 +601 378 2 876351041 +711 652 4 879993824 +201 86 4 884111637 +653 2 1 880151839 +276 233 3 874792436 +575 427 4 878148329 +290 1035 4 880475782 +249 258 5 879571438 +417 831 2 879646820 +648 226 4 884882916 +660 50 4 891197980 +16 945 4 877719158 +171 690 3 891034756 +17 471 2 885272779 +276 552 3 874795795 +660 930 2 891198762 +313 419 3 891014313 +601 1135 2 876351141 +493 597 4 884131738 +130 38 4 876252263 +627 177 5 879531158 +593 159 4 875671302 +653 101 3 880151817 +545 183 4 879899125 +648 103 1 884367274 +474 514 4 887926632 +495 660 3 888635144 +699 1060 3 879147367 +699 324 4 879147497 +648 434 5 884628437 +49 1081 3 888069246 +627 546 3 879531429 +548 292 4 891042530 +639 638 4 891239790 +683 748 3 893286347 +386 323 4 877655085 +642 412 2 885606271 +551 696 2 892785194 +584 229 3 885774172 +201 137 4 884112901 +301 186 4 882076121 +622 552 2 882671863 +650 269 4 891368885 +12 174 5 879958969 +393 561 3 889728438 +379 56 5 880524541 +617 644 4 883789386 +313 661 4 891015082 +535 686 5 879617489 +313 102 3 891030189 +442 7 4 883389983 +560 89 5 879975752 +276 195 5 874792483 +715 410 4 875962227 +144 963 4 888105254 +294 879 4 877818580 +104 15 5 888465413 +456 559 3 881373574 +601 1047 1 876347557 +308 22 4 887737647 +334 899 4 891547348 +524 71 3 884634755 +385 557 2 879446786 +664 673 3 876526718 +548 928 3 891415890 +421 603 4 892241422 +446 306 3 879786691 +521 28 3 885253323 +230 132 5 880484475 +378 2 2 880333851 +619 300 5 885953684 +13 655 5 886261387 +312 479 5 891698365 +486 1129 4 879874726 +524 649 4 884636205 +479 1007 4 879460140 +535 657 5 879618338 +456 9 3 881372328 +109 238 2 880580637 +503 603 3 880383653 +661 168 5 876017294 +270 869 1 876955633 +381 59 3 892697266 +492 242 5 879969878 +495 219 4 888636992 +667 186 4 891035033 +682 399 4 888522612 +385 177 4 879442673 +618 676 2 891307977 +660 569 2 891201499 +461 304 4 885355805 +532 29 3 888636521 +608 275 5 880403810 +532 97 5 893119415 +276 709 4 874792018 +671 258 5 875386402 +198 652 3 884209569 +670 228 5 877975344 +331 1101 4 877196633 +552 257 3 879221795 +417 202 4 879647140 +334 124 5 891544680 +406 575 1 880132188 +639 66 3 891240868 +402 135 4 876266775 +693 655 3 875482604 +429 249 4 882386662 +588 810 4 890029445 +389 178 4 880086755 +13 891 1 892015288 +313 502 3 891017395 +486 475 4 879874583 +69 289 4 882027133 +661 428 4 876016726 +498 594 2 881956498 +660 603 4 891199182 +295 70 5 879517779 +655 1103 3 887428417 +719 673 3 879360965 +74 13 4 888333542 +94 72 3 891723220 +621 273 4 880739654 +506 749 4 888178129 +405 81 3 885546025 +299 727 4 878192379 +458 195 4 886397318 +43 8 4 875975717 +666 467 4 880568094 +593 659 5 875671464 +505 228 2 889333894 +391 258 3 877398517 +344 694 5 884901093 +535 655 4 879618385 +589 300 5 883352600 +533 792 3 879190771 +471 768 3 889827982 +561 430 3 885809336 +223 619 2 891549570 +330 708 3 876545598 +562 684 4 879196517 +145 1273 5 875272196 +130 392 4 876252243 +654 756 4 887864071 +479 511 5 879461280 +451 877 4 879012471 +537 4 2 886031634 +560 183 5 879975586 +276 67 3 874791993 +711 720 3 879995077 +83 319 1 886532955 +472 51 5 875981708 +624 288 4 879791922 +214 69 2 891544445 +379 178 5 880741811 +297 200 3 875239092 +450 1271 2 882468686 +663 925 3 889493069 +655 291 3 887523177 +577 531 4 890089749 +308 196 3 887739951 +503 10 5 879438257 +683 313 2 893282664 +344 709 5 886382364 +101 125 4 877137015 +526 332 2 885682006 +1 57 5 878542459 +682 51 5 888517740 +658 182 5 875147448 +478 959 4 889396049 +712 392 5 874729996 +145 454 1 885557699 +454 289 3 881958783 +598 898 4 886711452 +450 79 4 882376446 +214 191 4 891544472 +429 537 4 882387773 +648 924 1 884795447 +82 946 2 878769748 +642 71 5 886131547 +416 834 3 878879314 +705 196 4 883518903 +638 100 3 876695560 +661 423 4 876016726 +702 346 1 885767306 +590 282 2 879439374 +416 281 5 893213103 +694 9 5 875726618 +7 551 1 892131978 +622 380 4 882592850 +207 242 4 890793823 +686 185 5 879545603 +514 301 4 880209797 +524 573 4 884636827 +184 476 2 889908207 +642 1413 3 886569809 +693 39 3 875482396 +234 510 4 892079840 +501 1010 4 883348308 +664 678 2 876523288 +65 402 4 879216949 +450 1116 3 887661961 +342 319 4 874984002 +176 1008 4 886048040 +561 431 2 885808738 +622 685 2 882590862 +64 419 2 889740310 +436 367 4 887770217 +721 87 3 877140859 +709 227 2 879848551 +445 1097 1 891199682 +268 77 2 875745453 +562 806 1 879195289 +343 429 4 876407138 +524 709 5 884635171 +526 879 3 885682102 +60 393 4 883327754 +481 163 4 885828389 +38 1031 5 892433801 +455 69 4 879111937 +621 420 4 874965298 +63 813 5 875747265 +339 1267 3 891033766 +323 544 4 878739459 +40 328 3 889041595 +497 568 3 879310792 +107 264 3 891264598 +270 574 3 876956038 +450 278 5 882473476 +659 566 3 891383889 +1 50 5 874965954 +429 393 3 882385749 +659 670 2 891385689 +276 355 3 887601451 +269 448 2 891450623 +707 487 2 886286360 +605 521 5 879424743 +624 286 5 879791792 +493 260 1 884129979 +655 286 3 887424831 +640 382 4 874777528 +659 492 3 891332189 +662 6 5 880571006 +311 56 5 884364437 +551 144 5 892778035 +619 331 4 885953574 +393 871 3 887745174 +674 118 3 887763150 +269 133 3 891449280 +160 211 4 876862171 +308 50 5 887737431 +639 199 3 891239155 +198 382 4 884207525 +627 92 4 879529702 +159 301 2 880485344 +539 45 4 879788345 +405 859 1 885547506 +638 118 3 876695385 +409 1449 5 881107817 +145 181 5 875270507 +669 340 4 891182948 +608 16 2 880406950 +714 282 4 892777903 +378 918 3 892383162 +454 657 3 881959876 +372 696 4 876869667 +552 243 3 879220651 +539 357 4 879787917 +537 414 4 886030938 +208 66 4 883108477 +223 185 2 891550684 +561 121 3 885810372 +545 743 3 879901322 +561 568 3 885807962 +699 456 1 880696679 +669 523 4 891260638 +648 1047 2 882212288 +174 371 5 886513674 +496 1286 2 876065382 +235 1451 4 889655112 +308 1135 4 887740099 +510 243 3 887667780 +498 443 3 881958237 +448 271 4 891888509 +440 1194 5 891577843 +107 312 4 891264535 +503 427 5 880472216 +498 607 3 881958093 +686 205 5 879545181 +11 123 3 891902745 +379 566 4 880525540 +637 148 3 882905070 +699 760 3 879147239 +652 699 5 882567383 +354 429 3 891218439 +429 432 4 882385443 +543 214 3 874864421 +328 181 4 885046244 +158 227 2 880134499 +452 318 5 885544110 +699 983 3 886568097 +453 122 3 877553532 +234 619 2 891227851 +697 150 5 882622127 +690 67 4 881177836 +503 451 4 880383425 +267 1336 1 878974659 +642 959 5 885605794 +450 969 4 882376584 +495 91 2 888634859 +577 265 5 880474851 +709 195 5 879848432 +593 866 5 875660236 +174 244 4 886433881 +676 181 5 892686164 +644 258 4 889075928 +399 147 5 882340620 +559 322 4 891034987 +398 474 4 875657926 +577 582 4 880475540 +326 239 3 879875612 +83 393 5 887665423 +488 1039 4 891294654 +697 333 3 882621431 +339 81 5 891033566 +526 750 4 885681886 +626 332 3 878771355 +242 268 5 879741340 +682 182 4 888523619 +552 240 2 879222133 +334 508 3 891544867 +279 1321 4 888806671 +717 287 5 884642558 +373 1039 4 877098437 +65 69 3 879216479 +719 659 4 879373935 +26 274 3 891385634 +11 42 3 891905058 +712 1178 4 874957086 +612 118 3 875324947 +532 506 5 889235367 +682 80 1 888521803 +684 520 4 875812065 +273 347 4 891293008 +425 100 4 878738853 +537 288 2 886028706 +454 1203 2 888267521 +660 1035 2 891201116 +22 17 4 878886682 +664 223 4 876523654 +712 385 5 874729778 +305 172 4 886323757 +429 726 2 882386751 +592 421 5 882956158 +561 744 3 885809781 +128 490 5 879966785 +382 135 3 875947078 +487 42 3 883446685 +715 231 3 875963273 +678 181 3 879544450 +411 435 3 891035478 +279 517 4 879572893 +267 100 5 878970427 +450 277 3 882397223 +284 333 3 885329146 +463 258 5 877387935 +328 984 3 885044940 +435 1411 1 884133104 +648 393 4 884881679 +664 805 5 878090381 +496 98 4 876073160 +374 820 4 882158327 +407 203 4 876341467 +162 237 4 877635980 +593 781 3 875671334 +233 12 2 880610333 +230 294 5 880484286 +709 561 3 879848209 +536 71 5 882360467 +533 284 1 879192641 +217 233 4 889069878 +625 214 4 891961632 +716 235 2 879794154 +474 527 5 887923923 +718 756 5 883349384 +450 1248 4 882399664 +70 143 5 884149431 +474 230 3 887927728 +712 366 5 874956713 +188 288 4 875071195 +457 632 5 882397543 +682 1305 3 888522021 +696 1176 4 886403631 +699 16 3 879148259 +684 186 4 878762087 +577 100 4 880470350 +176 129 3 886048391 +367 7 5 876689878 +655 183 4 887429999 +690 174 4 881179505 +671 685 5 884035992 +99 931 2 886780147 +659 675 4 891386936 +217 636 2 889069878 +361 276 4 879441417 +684 121 3 875810574 +637 411 1 882904678 +537 782 3 886031831 +498 172 3 881956362 +407 223 4 891868745 +345 81 4 884992998 +538 144 4 877107558 +539 127 3 879788046 +721 879 4 877136175 +503 132 5 880472148 +92 268 4 890251912 +635 875 2 878878838 +159 628 3 880486071 +655 1226 3 891585529 +560 111 3 879976731 +422 129 4 875129839 +655 1108 3 887427083 +13 886 5 881515613 +707 166 3 880061579 +198 122 1 884206807 +405 960 1 885545975 +417 44 2 880951252 +537 655 3 886030831 +343 10 4 876403009 +369 900 4 889428642 +557 269 3 881179139 +344 4 4 884901235 +715 181 4 875961816 +285 222 4 890595636 +483 116 3 878951532 +453 258 4 876191239 +716 143 5 879796171 +144 751 4 888103725 +716 118 2 879793763 +334 203 4 891546181 +472 271 5 892790628 +436 748 3 887768738 +712 97 5 874729816 +318 210 4 884496069 +13 231 3 882397582 +2 284 4 888552017 +581 283 2 879642274 +275 472 3 876197944 +265 628 4 875320516 +553 615 5 879949073 +58 603 5 884304812 +637 50 4 882901146 +405 1407 1 885548137 +705 427 2 883518783 +605 293 3 879366256 +291 129 5 874805699 +642 1473 4 886568874 +102 226 2 888801673 +660 404 2 891200621 +251 210 4 886271675 +59 584 4 888205145 +52 107 4 882922540 +686 79 4 879546443 +456 53 4 881375284 +373 232 3 877105075 +116 1134 4 886310197 +588 133 5 890015894 +722 546 3 891280866 +246 67 2 884923893 +271 182 3 885848408 +665 71 4 884293933 +711 95 4 879993758 +455 17 3 879111862 +698 168 3 886366731 +655 1194 5 887474605 +634 819 2 876171049 +173 324 5 877556864 +190 597 2 891626023 +707 154 3 886286742 +466 144 5 890284707 +244 126 4 880604302 +658 510 3 875147800 +659 837 3 891386307 +7 625 3 892131824 +688 682 5 884153712 +249 248 5 879571695 +654 111 4 887863635 +483 380 3 878953592 +308 1045 4 887740033 +654 317 4 887864757 +487 216 4 883530484 +457 559 4 882398054 +201 1131 5 884111359 +7 204 5 891351121 +51 184 3 883498685 +642 541 5 885607028 +635 262 5 878878654 +332 628 4 887938556 +716 196 5 879796596 +716 159 4 879797475 +311 186 3 884364464 +406 194 5 880131550 +551 554 5 892783906 +551 217 1 892784093 +505 988 3 888631371 +458 685 3 886394373 +642 250 5 886131457 +717 748 3 884641884 +650 663 4 891370971 +659 520 3 891332006 +537 199 4 886030682 +716 194 5 879795576 +655 923 3 888685734 +416 713 4 876697448 +421 653 3 892241422 +145 164 4 875271948 +698 529 5 886366731 +627 284 2 879530306 +634 282 4 875729749 +682 763 4 888521783 +503 615 5 880472061 +455 934 3 879110260 +596 313 5 883538815 +694 610 4 875729983 +666 5 2 880568465 +59 430 5 888205228 +402 471 4 876267041 +222 451 3 878185014 +394 230 3 881132958 +504 393 3 887909456 +666 661 4 880139765 +56 233 1 892679308 +363 435 3 891495850 +532 125 5 893119415 +660 125 3 891198421 +656 316 3 892318450 +539 289 4 879787770 +13 157 3 882140552 +450 191 5 887660440 +655 25 3 887611511 +655 1128 3 887472791 +290 109 3 880475564 +654 168 4 887864369 +435 673 3 884132341 +51 655 3 883498728 +586 273 5 884057692 +186 684 4 879023599 +712 72 4 874730261 +655 402 2 887431019 +87 578 3 879875940 +239 171 5 889178986 +321 1050 3 879441336 +637 475 1 882903191 +13 896 5 891036745 +487 404 4 883446725 +682 1016 2 888518747 +715 216 4 875963452 +197 879 4 891409535 +698 95 3 886367406 +417 142 3 879648184 +617 136 3 883789079 +707 283 4 880059957 +659 385 5 891331825 +425 62 4 878738548 +617 497 3 883788782 +354 381 5 891217851 +538 423 4 877108919 +487 578 3 884036466 +615 949 3 879448149 +405 736 5 885546336 +308 942 3 887737432 +486 14 5 879874725 +41 58 3 890687353 +378 95 4 880055296 +407 188 3 875043801 +601 763 5 876348035 +676 271 3 892685621 +426 648 3 879441931 +721 984 3 877137527 +457 783 3 882549936 +109 234 4 880578286 +486 137 4 879874871 +102 269 2 891427996 +421 183 5 892241459 +458 467 4 886396240 +618 969 3 891307889 +697 302 5 882621460 +184 340 5 889906905 +682 742 3 888519738 +399 755 2 882344757 +535 71 4 879618502 +707 1281 4 880060820 +487 49 4 884036466 +491 696 3 891188296 +634 274 3 876170992 +295 84 2 879518107 +361 166 4 879440605 +393 153 3 887746671 +638 228 3 876694917 +405 464 1 885546379 +291 364 3 875086699 +504 65 4 887838717 +634 924 4 877017810 +334 23 4 891545821 +501 147 3 883348080 +256 988 4 882150193 +514 647 3 875463079 +721 687 3 877137358 +178 1047 2 882824326 +201 59 4 884111546 +524 304 4 884321179 +460 1380 3 882912469 +482 315 3 887643146 +693 53 4 875483597 +488 135 4 891294785 +21 379 3 874951820 +437 812 3 881002092 +655 20 3 887611537 +354 528 5 891218155 +303 491 4 879466631 +393 924 4 887744688 +344 11 3 884901270 +97 23 5 884239553 +326 367 3 879877264 +711 204 3 879992994 +588 728 3 890027707 +592 322 1 882607647 +447 260 2 878854120 +712 734 4 874957027 +480 209 4 891208599 +622 157 4 882670389 +665 234 3 884293610 +7 402 5 891352904 +567 603 5 882425631 +378 775 3 880333305 +712 1119 4 874957269 +254 386 2 886475616 +552 282 3 879222133 +593 241 5 875672874 +717 25 5 884642710 +399 68 3 882347577 +565 970 4 891037757 +690 98 5 881179196 +699 544 4 879147109 +666 79 3 880567919 +62 402 3 879375883 +178 484 4 882826187 +152 1136 5 882477202 +388 300 4 886438122 +622 809 2 882671081 +686 64 5 879547224 +345 300 3 884900427 +570 301 3 881262404 +401 275 4 891032271 +267 127 5 878970529 +648 218 3 884883424 +567 430 4 882426927 +41 357 4 890687175 +648 56 1 884881592 +314 158 3 877892099 +525 127 3 881085647 +670 650 2 877975200 +437 496 4 880140662 +533 15 4 879192641 +494 357 5 879541245 +378 597 3 880044763 +293 180 5 888906428 +622 1039 5 882669575 +44 222 4 883613334 +307 163 3 879283384 +622 142 3 882670826 +630 411 4 885667108 +591 127 4 891031203 +448 307 2 891888042 +525 475 3 881086108 +82 71 4 878770169 +303 298 4 879544607 +307 736 3 877118152 +426 483 5 879442226 +407 226 3 876345024 +151 133 5 879524797 +583 258 4 879384094 +398 203 4 875908134 +344 297 4 889814555 +305 269 4 886307948 +64 235 4 889740567 +537 292 2 886029116 +693 23 4 875482168 +386 840 5 877655145 +497 597 3 879310649 +622 408 5 882590223 +540 820 3 882157545 +236 64 5 890116163 +222 747 2 878181976 +545 491 3 884134035 +429 21 2 882386508 +217 586 2 889070050 +637 1226 2 882903191 +661 501 4 876036190 +70 88 4 884067394 +318 866 4 884494976 +64 185 4 889739517 +682 379 4 888519260 +595 330 4 886920819 +566 240 3 881651225 +664 513 4 876524053 +717 324 3 884641842 +187 423 4 879465745 +416 686 5 893213444 +194 674 2 879553988 +194 157 4 879547184 +365 476 4 891304278 +373 577 1 877111423 +655 172 4 887477167 +303 127 5 879466523 +698 478 4 886366814 +567 675 4 882426812 +650 194 4 891369588 +94 544 3 891721562 +591 662 3 891031145 +724 305 3 883757259 +152 871 3 884018842 +239 652 5 889178762 +324 331 4 880574827 +727 123 3 883709402 +215 56 5 891436543 +416 476 5 893213796 +676 354 4 892685437 +425 750 2 890346317 +374 403 2 880939126 +109 755 5 880578814 +521 1244 3 884476887 +565 166 4 891037252 +650 210 3 891381585 +178 64 5 882826242 +379 116 4 880525194 +147 304 5 885593942 +633 252 3 875325273 +721 289 3 877137597 +280 8 5 891700303 +532 228 5 893118712 +405 238 5 885545070 +705 560 2 883427951 +709 29 3 879848695 +638 449 2 876694995 +656 875 2 892318842 +498 806 3 881957905 +301 802 2 882078883 +478 655 3 889395541 +69 182 4 882145400 +43 566 3 883955969 +495 416 5 888636899 +666 302 5 880138999 +198 164 3 884208571 +684 934 3 875811158 +655 875 3 888685850 +715 33 3 875964751 +606 562 4 880928181 +617 667 2 883789590 +60 136 4 883326057 +472 313 5 892790628 +622 496 4 882592314 +357 473 3 878951831 +694 671 3 875728989 +650 969 3 891371186 +453 186 4 877554466 +537 741 2 886030199 +13 306 3 881514876 +642 29 5 886454812 +676 748 4 892685538 +711 269 5 879991028 +95 665 2 879196666 +665 216 4 884293690 +648 1092 1 884882502 +191 316 5 891561456 +198 108 3 884206270 +595 844 4 886922069 +102 258 4 875886337 +715 284 4 875962109 +577 85 3 880475170 +429 482 3 882384683 +674 282 5 887763231 +709 22 5 879847946 +143 1038 3 888407656 +391 168 4 877399455 +188 144 3 875071520 +487 727 3 884029774 +493 410 4 884132883 +557 327 3 882458785 +454 392 2 888266991 +7 545 2 891354882 +60 745 5 883327442 +624 328 4 879792131 +466 518 4 890284903 +348 974 4 886523683 +621 624 5 874965093 +388 258 5 886439506 +537 519 3 886030584 +721 333 3 877137358 +365 137 3 891303999 +280 229 3 891702171 +564 344 4 888718521 +617 774 1 883789635 +725 1197 3 876106243 +394 109 4 880889159 +684 371 2 878576866 +60 70 4 883326838 +593 280 3 875660194 +701 297 4 891447197 +506 761 2 874873327 +508 222 3 883777281 +514 486 3 886189869 +538 143 3 877364003 +38 78 5 892433062 +7 652 3 891352659 +96 83 3 884403758 +488 318 4 891293734 +601 64 4 876349503 +305 708 3 886324963 +535 98 2 879617977 +707 531 5 886286214 +601 125 1 876347320 +87 72 3 879876848 +181 476 4 878962996 +503 443 5 879454811 +346 64 4 874948214 +239 180 5 889178833 +164 405 5 889402160 +633 566 3 877212173 +151 82 3 879524819 +16 273 5 877722736 +497 577 2 879363284 +524 513 4 884634938 +416 840 4 886315536 +398 756 3 875654592 +488 96 3 891294014 +13 789 5 882140389 +718 841 4 883349557 +640 126 4 886474802 +682 546 3 888517740 +76 192 5 875027442 +314 318 5 877888796 +682 157 4 888517484 +250 322 3 878089182 +660 132 3 891199683 +357 455 5 878951498 +665 369 4 884291747 +533 150 3 886425704 +608 328 4 880402983 +460 276 5 882912418 +533 239 3 879192157 +280 1217 5 891702544 +573 144 4 885844638 +716 153 4 879796311 +334 740 3 891548678 +395 154 5 883764878 +569 236 4 879793717 +629 182 5 880116818 +291 985 3 874805984 +479 272 4 889125255 +279 1491 5 890451408 +706 245 3 880996945 +291 94 2 875086354 +94 1011 4 891722214 +407 193 3 875046799 +642 597 4 885607065 +109 405 5 880564640 +233 588 5 877661553 +545 393 4 879900891 +279 546 3 875296924 +216 169 3 880233635 +666 515 5 880313230 +680 408 5 876816268 +560 137 4 879976427 +456 427 4 881372779 +719 291 3 884900301 +577 69 4 880474829 +617 631 2 883789212 +708 1051 4 892719193 +658 31 3 875148108 +178 172 4 882826555 +643 69 3 891447430 +592 1085 3 882608625 +276 174 5 874792366 +588 739 4 890025704 +655 129 3 887426008 +693 25 4 883975697 +589 258 2 883352463 +454 528 4 881959818 +207 470 3 879665381 +363 816 1 891498787 +516 169 5 891290685 +501 922 4 883347857 +87 423 3 879877710 +707 83 3 886286926 +709 823 3 879849573 +579 65 3 880951944 +458 597 3 886395022 +711 343 3 882457816 +567 582 3 882426899 +276 346 4 885159545 +639 269 3 891238599 +424 288 1 880858924 +553 186 3 879948552 +24 12 5 875323711 +454 300 4 881958326 +435 720 2 884133818 +707 1176 2 879438910 +727 678 3 883708229 +295 186 5 879517512 +682 70 4 888517416 +643 173 4 891447663 +303 124 4 879466491 +108 405 3 879880157 +449 337 4 880411035 +691 1 5 875543346 +223 243 3 891549079 +474 486 4 887924425 +445 144 3 890987569 +561 425 4 885808000 +3 333 2 889236939 +497 66 3 879362720 +551 1217 1 892784524 +497 225 3 879363510 +655 960 3 887427210 +568 462 4 877907236 +637 273 3 882903250 +674 929 3 887763150 +393 245 3 887742145 +715 756 2 875962280 +566 12 4 881649802 +622 449 2 882592850 +707 427 4 886285907 +622 212 3 882669740 +417 234 4 879646965 +18 223 5 880129731 +347 192 4 881653798 +452 156 4 875261819 +620 674 3 889987586 +141 597 4 884585071 +406 1 4 879446107 +6 173 5 883602462 +660 434 3 891200430 +648 373 3 884883149 +705 265 5 883428154 +181 718 1 878962675 +62 1077 3 879374607 +727 441 2 883711924 +653 765 1 880153207 +417 95 5 879646965 +13 279 5 882139804 +682 188 4 888522417 +499 483 5 885598854 +663 284 4 889492841 +545 746 4 879900321 +269 649 2 891448220 +379 746 3 880961839 +711 1074 3 879995754 +676 313 4 892685224 +727 117 3 883708660 +654 181 3 887863381 +650 648 3 891384201 +697 683 1 882621813 +727 181 3 883708750 +344 516 5 884901311 +472 29 5 875982867 +655 1255 3 887425732 +192 813 4 881367456 +83 864 4 883954588 +85 657 4 879454189 +472 63 4 875982511 +663 405 3 889492877 +148 168 5 877015900 +271 847 4 885847926 +625 945 3 891262724 +639 191 3 891239109 +90 482 5 891383204 +140 873 2 879013719 +545 97 3 879901865 +324 411 5 880575589 +489 313 4 891362740 +6 268 3 883268406 +655 1344 3 887474020 +554 864 4 876231993 +682 651 4 888517168 +720 872 3 891262780 +564 472 4 888730658 +568 301 1 877906737 +432 1 2 889415983 +429 141 3 882386966 +416 28 5 893212730 +698 210 5 886366690 +450 455 4 882376188 +521 25 2 884476002 +162 79 4 877636713 +632 357 4 879456844 +575 50 2 878148258 +718 975 2 883349301 +141 346 1 886447613 +560 100 5 879975752 +213 164 5 878956300 +588 395 4 890030781 +478 26 5 889396212 +712 213 3 876251366 +645 956 4 892053310 +407 250 4 890687564 +436 265 3 887769106 +680 248 4 877075312 +729 328 3 893286638 +334 9 4 891544707 +537 47 4 886030768 +716 707 4 879795121 +694 199 5 875728435 +623 183 3 891034294 +693 333 3 875481397 +49 428 5 888068791 +694 50 5 875730386 +727 105 1 883709884 +299 513 4 877881228 +682 222 4 888519725 +532 771 3 874791172 +435 977 2 884134829 +296 127 5 884196489 +199 313 4 883782557 +7 230 3 891353326 +619 118 5 885953827 +328 1518 3 885049503 +659 699 3 891384499 +551 328 5 892775584 +466 346 3 890283056 +387 742 2 886481105 +174 905 3 890168415 +675 531 5 889489108 +399 179 3 882344406 +298 423 5 884183063 +650 659 3 891369798 +718 222 4 883348712 +476 85 2 883364433 +524 640 1 884636541 +650 233 2 891370243 +642 391 4 885607143 +380 1116 4 885479397 +136 127 5 882693404 +693 432 4 875484908 +648 24 3 882211532 +727 720 2 883712037 +145 894 1 883840965 +601 151 3 876346930 +586 238 2 884059027 +393 377 3 889728200 +554 220 3 876232109 +234 1369 3 892333765 +292 499 5 881105245 +659 762 3 891387227 +663 280 3 889492841 +727 1119 3 883711923 +521 191 4 884477868 +30 683 3 885941798 +650 195 4 891369442 +142 7 4 888640489 +499 132 4 885599040 +637 150 1 882903447 +592 181 3 882608182 +523 533 4 883700395 +716 836 4 879795425 +613 127 4 891227204 +655 656 3 887430072 +711 483 5 879992739 +52 919 5 882922140 +141 930 4 884585247 +606 748 3 880921753 +502 300 2 883701980 +609 319 1 886895516 +643 155 2 891449345 +540 294 4 882156617 +478 451 5 889396282 +405 1107 1 885546635 +600 241 5 888451582 +618 955 2 891307540 +557 887 3 881179118 +567 357 2 882425901 +727 68 4 883710347 +339 1135 2 891033898 +711 229 3 879995461 +416 707 4 876699179 +615 275 4 879447872 +501 840 4 883348655 +726 355 3 889829235 +56 229 3 892676340 +486 1086 3 879874482 +303 956 4 879466421 +590 9 3 879438972 +159 405 5 880557564 +704 304 2 891396595 +682 581 2 888517948 +716 602 5 879795691 +450 197 5 882374059 +561 180 4 885807261 +537 581 3 886031886 +416 815 4 876697243 +622 403 4 882592735 +639 274 1 891240495 +595 411 3 886921448 +655 175 3 887426931 +443 343 5 883504771 +639 796 1 891240805 +715 175 3 875962964 +81 186 5 876534783 +498 425 2 881957431 +164 282 5 889401927 +479 187 4 879460785 +542 625 3 886533588 +699 678 3 879147032 +694 200 4 875726968 +707 140 2 886287191 +655 330 2 887425295 +59 191 4 888204841 +284 687 3 885329902 +114 474 5 881260170 +115 317 5 881171137 +666 410 2 880313447 +655 516 2 887523581 +480 462 4 891208520 +567 811 4 882426210 +647 250 3 876532975 +676 688 1 892685695 +642 559 5 885604874 +643 420 4 891449803 +338 488 5 879438449 +622 143 4 882670228 +646 258 3 888528417 +568 603 5 877907157 +83 235 1 883867920 +315 23 5 879821193 +659 805 5 891383561 +654 56 4 887864414 +724 342 3 883757874 +256 678 5 882150192 +279 130 1 892864707 +579 676 3 880951784 +283 866 3 879297867 +464 984 2 878354681 +453 12 5 877553813 +327 99 4 887820761 +500 569 4 883876370 +566 393 2 881651434 +684 625 3 878760041 +727 125 4 883710598 +600 188 4 888451750 +174 70 5 886453169 +669 508 3 892549292 +234 173 3 892334577 +644 1610 3 889077115 +345 9 4 884900976 +634 287 3 877018059 +392 615 5 891038371 +301 678 2 882075386 +450 86 4 887660440 +243 151 3 879987397 +102 200 3 888803051 +557 322 3 880485052 +648 479 4 884368538 +502 751 3 883702120 +588 142 5 890024117 +593 846 2 875660295 +429 79 4 882385243 +21 853 5 874951658 +472 392 4 875981503 +600 541 1 888451977 +328 723 3 885047223 +655 1642 4 888474934 +339 939 4 891034115 +437 204 5 880141528 +524 111 5 884323426 +608 213 4 880404693 +450 432 4 882377861 +92 428 4 875653519 +291 93 4 874805927 +675 509 5 889489465 +638 265 5 876695216 +579 1446 2 880952165 +87 577 4 879877127 +274 258 5 878944379 +409 179 5 881107817 +504 485 4 887839745 +54 252 3 880937630 +437 318 4 880140466 +593 476 2 875659943 +679 327 4 884312731 +699 749 3 893140897 +561 277 3 885809223 +429 419 4 882385293 +665 97 2 884294329 +557 334 4 881179362 +722 124 4 891280842 +15 931 1 879456507 +331 302 5 877196819 +181 305 2 878961542 +555 762 4 879964159 +527 425 4 879455792 +645 203 4 892053456 +693 69 3 875482336 +686 234 4 879546715 +110 161 5 886988631 +513 250 3 885062332 +130 475 3 874953595 +630 255 5 885666740 +729 689 4 893286638 +303 281 3 879543375 +658 70 3 875148196 +655 38 2 887429875 +712 465 4 874957113 +247 64 5 893097024 +13 444 4 882396984 +391 213 4 877398856 +591 487 4 891031203 +611 333 4 891636073 +621 333 4 890517503 +728 508 4 879443265 +212 269 3 879303468 +457 629 4 882397177 +256 460 4 882153987 +313 452 3 891029993 +57 678 3 883696547 +542 13 4 886533002 +650 679 3 891381709 +653 282 3 884405616 +116 896 2 890632896 +397 688 1 875063649 +627 121 3 879531397 +590 515 3 879438972 +708 535 2 877325838 +618 966 4 891307931 +416 990 2 876696739 +614 1134 2 879464556 +397 989 1 875063722 +648 367 3 884881837 +419 405 3 879435503 +426 133 5 879441978 +43 473 3 884029309 +563 118 4 880506863 +450 287 4 887660504 +657 1 3 884239123 +588 602 3 890015580 +561 710 4 885809897 +693 1232 2 875483114 +608 655 5 880405395 +660 153 4 891200388 +453 24 4 877553108 +13 797 5 882398327 +487 747 4 883531466 +653 476 2 878855211 +458 208 4 886395963 +682 124 2 888517097 +683 350 2 893284184 +405 377 1 885547690 +406 228 3 884630974 +545 258 3 879898617 +201 637 3 884112627 +97 100 2 884238778 +468 195 5 875291902 +405 1572 1 885549635 +181 292 1 878961781 +664 172 5 878090054 +429 178 4 882384772 +688 339 5 884153712 +551 272 5 892775389 +679 121 2 884488260 +13 561 1 882396914 +269 122 1 891446873 +92 735 3 875656121 +653 458 2 878866475 +293 265 3 888906193 +567 493 4 882426719 +152 284 5 880149045 +268 257 4 875742866 +581 9 5 879641787 +716 160 2 879797303 +300 833 4 875650329 +486 275 4 879874582 +660 357 2 891200014 +256 243 4 882150193 +286 70 5 877531975 +562 98 4 879195081 +397 134 5 885350132 +533 31 3 879191265 +246 1188 3 884924001 +658 718 3 875145667 +716 499 4 879796942 +615 306 4 879447556 +707 467 4 886286057 +702 294 1 885767555 +193 580 4 889127270 +567 174 1 882426869 +263 602 4 891298592 +524 133 5 884634968 +455 747 4 879111422 +230 451 4 880485402 +436 441 3 887772060 +286 946 3 889652221 +405 1218 5 885547360 +272 654 5 879454977 +425 316 4 890346705 +682 1437 2 888521942 +727 367 3 883712430 +294 252 4 877820240 +655 187 5 888474357 +588 1428 5 890032056 +592 338 2 882607647 +581 221 2 879642274 +456 79 3 881373228 +691 294 4 875542868 +234 473 5 892334976 +455 12 3 879111123 +479 215 3 879461651 +333 269 2 891044134 +637 1102 3 882904537 +472 240 4 875979187 +108 740 3 879880055 +727 217 3 883712913 +643 94 4 891450240 +327 311 3 887737629 +546 690 2 885139693 +257 60 5 879547440 +23 194 4 874786016 +704 211 5 891398726 +389 396 3 880089037 +109 636 5 880581817 +603 385 4 891957012 +627 461 3 879530042 +351 312 5 883356784 +682 29 2 888522699 +35 748 4 875458970 +727 933 1 883709009 +637 744 4 882903044 +457 931 2 882395916 +303 845 4 879485221 +703 293 4 875242990 +314 53 1 877891426 +684 111 4 878760164 +271 73 2 885848707 +658 943 3 875148196 +437 614 5 880139951 +429 232 4 882385859 +101 979 2 877136711 +354 518 3 891217340 +411 208 4 891035617 +548 313 5 891044304 +674 25 4 887763035 +548 591 3 891415465 +711 1466 4 883589693 +637 405 1 882903250 +567 475 4 882426508 +716 416 3 879796354 +543 38 3 877545717 +694 121 5 875726886 +128 742 3 879967197 +417 1086 4 879646369 +216 79 4 880235381 +220 332 3 881198246 +352 92 3 884289728 +478 222 2 889387931 +121 135 5 891388090 +561 356 1 885809752 +634 50 4 877018347 +661 310 2 889500835 +87 1179 3 879877127 +610 271 1 888702795 +313 331 3 891013013 +506 578 3 885135881 +145 331 3 879161554 +49 77 1 888068289 +514 283 4 875309231 +299 1036 2 889503856 +308 506 4 887738191 +537 198 2 886030652 +343 1039 5 876404689 +629 64 5 880117513 +721 403 4 877139638 +345 293 4 884994592 +714 252 3 892777619 +709 28 5 879847946 +606 191 5 880923988 +430 258 4 877225570 +716 470 4 879797152 +616 260 3 891224864 +159 250 3 881679988 +113 289 2 875075887 +632 404 5 879459544 +184 492 4 889908947 +689 151 3 876676501 +391 661 5 877398898 +588 417 5 890026009 +658 515 5 875145493 +280 575 2 891702422 +711 699 5 879993728 +279 410 5 890780547 +665 133 3 884294771 +269 1428 5 891447409 +587 905 3 892871503 +592 483 5 882955613 +307 168 5 879283798 +623 298 2 891032433 +479 602 4 879461492 +187 23 4 879465631 +665 194 3 884294671 +474 50 5 887915221 +332 294 5 887916324 +629 147 5 880117534 +647 134 4 876534275 +305 1 5 886323153 +429 468 3 882384896 +650 780 2 891389237 +717 293 5 884715103 +716 503 3 879795071 +579 709 5 880952142 +8 177 4 879362233 +664 481 5 878091912 +560 429 3 879975485 +343 127 5 876404464 +468 22 5 875287686 +269 509 4 891447280 +483 274 4 878953129 +585 171 3 891285491 +648 578 4 884882987 +707 186 3 886286133 +619 257 3 885953805 +648 265 4 884796886 +655 60 3 887564614 +73 268 3 888625754 +571 174 4 883354940 +394 411 4 881058969 +89 181 4 879441491 +529 310 4 882534996 +570 243 1 881262557 +490 475 4 875427629 +684 237 5 875811158 +684 94 3 878762183 +514 342 1 885180909 +144 651 4 888105197 +712 399 5 874956872 +535 447 5 879617574 +712 542 4 874956543 +483 480 3 878953862 +711 137 5 886030557 +567 836 3 882426998 +243 280 1 879987148 +727 585 2 883713257 +353 333 4 891402757 +738 188 3 875350456 +551 90 1 892784199 +648 117 2 882211301 +618 91 4 891309756 +695 882 4 888805836 +519 339 3 883248222 +468 25 5 875280214 +601 820 1 876348316 +488 659 3 891293771 +537 83 4 886030891 +56 144 5 892910796 +694 275 4 875727640 +41 276 2 890687304 +457 190 5 882396602 +659 661 5 891331916 +408 270 5 889679683 +314 65 4 877888855 +374 282 5 880392936 +493 188 5 884131314 +650 739 2 891384328 +170 258 3 884104016 +389 1197 3 880165664 +643 49 3 891449848 +719 126 2 884900234 +699 112 3 884152976 +41 1039 3 890687642 +689 471 4 876676433 +472 101 5 875981624 +21 983 2 874951416 +699 235 3 878882272 +11 25 3 891903836 +473 319 3 878156824 +78 237 5 879634264 +643 1074 2 891448630 +587 340 5 892871141 +665 127 4 884292654 +453 94 4 877561956 +618 44 4 891308791 +606 239 4 880926339 +234 56 3 892078837 +577 217 5 880475363 +383 514 5 891192949 +738 651 4 892957752 +169 683 3 891268976 +567 521 3 882425701 +311 581 3 884366137 +541 1074 1 884046888 +676 344 5 892685657 +466 22 5 890284706 +671 578 3 884036411 +339 144 3 891033794 +648 615 4 884796652 +619 55 1 885954053 +81 269 3 876533229 +588 315 4 890014591 +727 208 4 883711240 +559 69 5 891034003 +450 807 4 887834823 +101 278 2 877136737 +463 744 3 877385457 +721 317 4 877147872 +48 289 1 879434252 +386 273 3 877655028 +621 71 3 874965208 +679 357 5 884486812 +487 1 5 883443504 +504 70 3 887838869 +561 10 3 885808766 +640 249 4 886474493 +474 685 3 887915784 +379 186 5 880740495 +690 204 3 881177430 +599 975 5 880952357 +707 496 3 886286433 +671 576 5 884035939 +235 971 4 889656113 +655 228 3 887429594 +169 134 5 891359250 +479 472 1 879460354 +456 1057 3 881372191 +618 117 5 891307494 +498 156 5 881957054 +542 80 3 886533142 +270 200 5 876956360 +468 150 5 875280309 +655 610 4 887432283 +456 268 5 887165395 +642 1285 4 886132043 +586 250 3 884057661 +14 762 3 876964936 +76 6 5 875028165 +333 174 5 891045082 +648 568 5 882212651 +546 250 4 885141260 +379 63 2 880962215 +660 80 1 891201796 +719 66 3 888454637 +305 300 3 886307828 +342 98 3 874984261 +354 143 4 891217547 +343 67 3 876407663 +416 1058 5 893213019 +235 153 4 889655662 +222 678 3 877562973 +514 527 4 875462466 +479 198 5 879460939 +659 1119 4 891383674 +339 205 5 891033629 +543 474 5 875665787 +594 181 3 874781076 +467 273 4 879532565 +664 64 4 876524474 +468 191 4 875287686 +504 961 4 887839081 +410 873 4 888627138 +422 396 4 879744143 +90 660 4 891385652 +686 588 4 879546497 +480 705 4 891208520 +23 96 4 874785551 +77 1 5 884732808 +713 1431 3 888881939 +592 221 5 882608357 +632 423 4 879459003 +655 1629 3 887427083 +489 358 5 891445439 +666 864 3 880313523 +48 56 3 879434723 +736 181 2 878708646 +486 1171 3 879874417 +720 258 4 891262762 +262 278 3 879790741 +551 331 5 892775584 +504 88 3 887909839 +569 1014 3 879795581 +207 226 2 877125390 +181 885 1 878962006 +734 82 4 891022704 +276 382 4 874791236 +176 289 3 886047292 +144 357 4 888105254 +588 846 4 890025621 +270 665 4 876956419 +728 282 4 879443291 +654 284 4 887863914 +547 332 3 891282681 +339 1404 5 891034592 +640 684 4 874778568 +311 655 4 884365406 +147 750 5 885593812 +688 678 5 884153750 +84 744 4 883449965 +87 845 4 879876564 +425 686 3 878738757 +505 177 3 889334477 +514 156 4 875311225 +229 937 2 891632347 +195 358 2 883463275 +543 313 3 887912223 +524 118 4 884627463 +708 280 4 877325316 +405 770 1 885548048 +452 73 3 875277472 +607 485 3 883879442 +82 473 2 878768765 +637 546 1 882905182 +650 1126 4 891369620 +671 182 4 884035685 +374 412 4 883627129 +435 448 3 884132230 +370 136 4 879434999 +42 38 3 881109148 +437 402 2 880143263 +537 6 2 886029806 +550 328 5 883425652 +499 887 5 882995826 +524 382 3 884636596 +416 211 5 893214041 +201 65 4 884113806 +374 235 3 880394301 +707 1397 1 886289521 +712 728 4 874956384 +178 435 4 882827043 +235 1 4 889655571 +655 629 3 887428559 +536 472 3 882319003 +533 1047 3 887032276 +721 681 3 877137214 +701 304 4 891446679 +659 143 5 891384973 +470 150 5 879178406 +425 209 2 890347085 +658 318 4 875148196 +682 748 3 888516814 +653 416 1 880152426 +184 655 3 889908630 +526 328 2 885682006 +308 588 5 887738893 +661 709 4 886841685 +281 690 5 881200264 +543 302 4 887912238 +561 371 1 885809426 +606 628 4 878143729 +450 51 4 882377358 +327 663 4 887819582 +99 651 5 885679833 +393 949 3 889731465 +109 161 3 880572756 +346 1232 1 875264262 +141 100 4 884584688 +543 531 4 874864347 +705 50 4 883427012 +559 153 3 891035708 +705 172 3 883427663 +705 627 3 883427932 +276 1481 2 877934446 +532 346 5 885761690 +655 717 1 887430830 +639 155 3 891239638 +223 535 3 891549876 +618 692 4 891309091 +618 276 3 891309266 +239 632 5 889181015 +695 338 2 888806270 +650 222 4 891369924 +406 611 3 879446268 +184 591 3 889907711 +126 681 5 887938392 +442 217 3 883390083 +447 469 4 878856394 +392 345 4 891037385 +373 202 3 877099352 +194 29 2 879528342 +588 483 4 890015500 +345 303 4 884900448 +466 182 4 890284706 +210 684 3 887737171 +635 886 4 878878901 +79 258 5 891271308 +457 588 5 882397411 +51 136 4 883498756 +233 318 5 877665324 +313 28 3 891016193 +190 696 3 891042883 +574 310 4 891279012 +642 729 3 885603566 +43 418 4 883955387 +590 287 4 879439645 +655 150 3 888893279 +727 692 4 883711240 +730 298 4 880310426 +236 97 5 890118228 +688 332 5 884153712 +548 1089 2 891044049 +505 202 3 889333508 +486 880 5 879874112 +172 425 1 875536591 +743 321 2 881277690 +488 181 4 891376029 +74 340 5 888333194 +291 1209 1 875086308 +279 926 4 875296696 +399 79 3 882512214 +533 356 4 879191652 +78 880 5 879633600 +376 328 3 879433164 +698 177 1 886367366 +100 258 4 891374675 +539 303 5 879787770 +125 8 4 879454419 +622 597 5 882591687 +244 26 5 880606274 +41 238 5 890687472 +693 183 2 875483301 +110 326 4 886987417 +577 228 3 880474338 +222 571 2 881060823 +30 252 3 875140740 +100 900 4 891374832 +625 647 4 891263822 +686 170 5 879547043 +456 121 2 881372052 +682 356 3 888517986 +94 286 4 891724122 +707 170 5 886285824 +201 160 5 884113368 +472 1047 4 875979082 +682 573 4 888521116 +425 195 4 878738245 +717 268 5 884642133 +454 526 4 881959698 +173 334 4 877556926 +207 293 2 878104486 +650 198 4 891381546 +274 597 3 878946133 +716 163 4 879795949 +452 863 5 885816769 +393 203 4 887746091 +693 162 3 875482912 +653 77 3 880152843 +383 134 5 891192778 +553 136 4 879948655 +561 175 4 885807429 +650 234 4 891369890 +405 851 1 885549407 +577 140 4 880475043 +653 64 4 878867272 +615 211 5 879449164 +634 325 1 877974690 +630 595 5 885667660 +589 272 5 883352535 +588 386 2 890029445 +642 1219 4 885603932 +606 157 4 880926018 +301 68 4 882076558 +541 1053 3 883865317 +13 762 5 882141336 +318 1048 4 884495001 +151 1 5 879524151 +716 157 3 879796914 +378 755 3 880056073 +445 237 2 891199906 +577 8 4 880474257 +566 54 3 881651013 +271 747 3 885849087 +528 210 5 886101976 +286 198 4 877533887 +521 1014 3 884476320 +578 323 3 888957735 +611 344 5 891636073 +416 794 5 893213019 +64 31 4 889739318 +110 692 4 886988937 +705 233 3 883428154 +514 435 3 875463551 +554 222 4 876231802 +642 218 3 886130929 +151 642 3 879524713 +660 559 2 891201069 +703 294 2 875242281 +293 187 3 888905865 +604 200 1 883668261 +604 164 4 883668175 +639 313 1 891238514 +537 87 3 886030622 +698 485 4 886367473 +409 608 4 881107155 +593 4 4 877728878 +593 140 4 875671226 +721 305 3 877137285 +697 1059 2 882622208 +83 828 3 883868208 +675 305 4 889488548 +528 185 4 886101652 +586 761 3 884062742 +622 89 5 882669740 +533 197 5 882902988 +655 778 2 890497653 +276 29 3 874796373 +42 468 4 881108346 +537 32 3 886031178 +527 169 4 879455961 +671 405 3 884035939 +541 1078 4 883874834 +666 31 3 880314500 +508 154 5 883767704 +409 23 4 881109175 +711 25 4 876185920 +716 628 3 879793376 +721 632 4 877147675 +672 864 3 879789278 +234 44 3 892335707 +642 1 5 885603565 +677 150 3 889399402 +536 98 4 882360029 +7 668 4 891352778 +478 410 3 889388357 +655 739 4 891585450 +214 1017 4 891543156 +454 1105 3 888015988 +653 449 3 880153740 +308 151 4 887741795 +491 129 4 891185170 +697 123 5 882622016 +666 191 4 880139090 +742 258 5 881005590 +405 1441 1 885546835 +7 635 3 891352864 +454 742 3 888267315 +290 191 3 880474235 +181 932 1 878963121 +707 1628 5 886287353 +271 956 4 885848997 +328 229 3 885046977 +416 955 4 876699839 +498 53 4 881961689 +540 1014 4 882157224 +334 257 4 891544764 +145 678 2 879161675 +737 428 4 884315066 +708 1 5 877325375 +453 1170 3 877562135 +655 42 3 887428184 +679 169 3 884486904 +293 121 3 888905198 +334 710 3 891548295 +389 591 3 879915726 +708 938 3 892718896 +129 748 2 883245452 +478 568 5 889396615 +415 432 4 879439610 +537 404 3 886031720 +682 291 1 888517364 +313 696 3 891032028 +601 22 4 876348820 +579 82 3 880951783 +234 172 3 892078837 +533 237 2 879193048 +456 789 3 881374522 +551 24 5 892783142 +59 736 5 888205145 +655 1462 3 887429077 +439 293 3 882892818 +683 321 5 893286207 +651 268 2 880126473 +531 748 4 887049081 +276 219 4 874792692 +687 336 2 884652144 +280 71 4 891700818 +254 416 4 886472713 +297 211 4 875240090 +90 490 5 891383753 +527 466 2 879455765 +119 1244 3 874781037 +502 350 3 883701792 +514 431 4 875463595 +529 876 3 882535466 +642 56 4 885602656 +422 294 3 875129692 +343 7 5 876402941 +138 137 5 879023131 +541 941 4 883865394 +644 289 1 889076364 +630 295 4 885666875 +457 410 4 882393937 +142 259 3 888640104 +569 268 3 880559356 +497 204 3 879362683 +564 831 3 888730658 +459 258 3 879561574 +237 474 5 879376327 +711 488 4 879992407 +395 458 3 883765731 +467 327 4 879532164 +405 438 1 885548384 +484 746 4 891195179 +276 122 3 874787150 +426 168 3 879444081 +712 181 5 874729901 +279 710 4 890451408 +500 479 5 883873811 +655 1532 2 887476999 +213 69 3 878955534 +716 663 5 879795467 +303 111 3 879467639 +715 425 4 875964655 +342 3 2 875318606 +347 742 5 881652610 +588 873 3 890014887 +666 209 4 880139205 +567 192 4 882426021 +31 262 5 881547766 +661 222 3 876013121 +671 298 4 875389187 +659 393 3 891387054 +409 607 5 881107697 +69 1144 5 882126156 +716 471 2 879795375 +426 631 3 879442006 +354 855 4 891306852 +707 486 3 886287662 +354 246 4 891216607 +290 117 3 880474799 +403 472 4 879790319 +158 325 4 880133920 +705 385 4 883428084 +521 168 4 884477585 +605 282 4 879424743 +535 631 5 879619176 +536 82 4 882360929 +313 202 5 891014697 +338 286 4 879437522 +495 11 5 888634536 +733 10 3 879535559 +245 300 4 888513026 +734 204 4 891022938 +184 632 5 889913687 +500 775 1 883877001 +284 303 5 885328991 +303 395 2 879544080 +745 492 5 880123572 +42 926 3 881105766 +297 535 3 874954814 +435 182 4 884131356 +159 948 2 880485344 +435 206 5 884133223 +1 192 4 875072547 +268 208 4 875309430 +268 223 3 875745728 +637 535 2 882905573 +543 582 3 874863550 +265 748 5 875320112 +736 296 4 878709365 +552 1048 3 879221683 +235 923 4 889656132 +655 1131 5 887428772 +58 1084 4 884304896 +84 411 2 883452516 +664 127 5 876525044 +734 99 4 891023086 +26 148 3 891377540 +654 468 4 887864757 +291 1305 3 875086766 +521 7 3 884475973 +1 178 5 878543541 +478 843 5 889397582 +713 1434 3 888882133 +130 1088 2 876250805 +402 12 4 876266826 +360 1149 4 880356025 +354 109 3 891216692 +487 347 2 884806595 +653 517 1 880150330 +90 59 5 891383173 +62 1129 5 879372060 +604 48 5 883667946 +711 1152 1 879991762 +721 690 3 877136967 +379 514 3 880961718 +204 288 3 892389137 +394 28 4 880886821 +718 926 2 883348912 +405 659 4 885544739 +494 65 5 879541207 +676 948 1 892685803 +363 210 4 891494905 +638 234 4 876695627 +650 98 4 891369798 +708 326 4 892719007 +655 522 3 887426900 +690 239 2 881177532 +708 871 1 892719101 +456 234 3 881373473 +586 160 4 884066360 +405 1147 2 885546069 +169 50 5 891359250 +43 69 4 875981421 +537 942 3 886031913 +659 636 3 891387400 +268 860 1 875744501 +586 181 4 884057344 +405 745 1 885547506 +623 283 4 891032275 +62 949 4 879376210 +145 246 4 888397946 +745 190 5 880123905 +463 248 3 889935953 +645 91 3 892054990 +380 443 4 885480283 +615 526 4 879448735 +533 747 5 879438767 +664 268 3 876523093 +504 490 4 887909816 +200 202 5 884129275 +738 367 3 875351346 +694 48 4 875726759 +618 763 2 891309319 +130 1275 5 876252288 +207 1435 2 877821612 +389 1204 4 880165411 +320 122 3 884749097 +250 12 5 878090499 +655 806 3 887523224 +523 634 5 883700743 +442 144 4 883390328 +548 340 1 891042794 +601 673 1 876351264 +539 124 4 879788480 +270 1073 5 876955202 +422 151 4 875130173 +121 717 5 891390688 +123 64 3 879872791 +387 410 3 886480789 +685 334 1 879451168 +638 550 5 876695059 +683 900 1 893282740 +293 789 2 888906071 +592 150 5 882607955 +21 656 5 874951797 +328 427 3 885045740 +416 172 5 893213796 +506 1136 3 877539905 +92 193 4 875654222 +705 151 3 883427134 +504 53 4 887911730 +374 323 3 880392482 +566 163 5 881649622 +460 242 4 882910838 +620 975 3 889987852 +224 1381 3 888104589 +655 880 2 887523271 +450 606 5 882371904 +645 518 5 892055285 +565 652 5 891037563 +291 722 4 875086460 +650 183 4 891369924 +491 124 5 891185170 +533 1173 4 885820219 +655 1490 2 887489792 +321 357 4 879439832 +659 942 3 891386347 +188 678 3 875071361 +587 690 3 892871252 +1 5 3 889751712 +645 168 4 892054797 +606 1190 3 889137308 +537 882 4 886028791 +244 1 4 880604405 +686 134 5 879545340 +716 97 4 879794996 +660 164 2 891200307 +429 961 3 882385518 +343 288 2 876402428 +597 1534 1 875341758 +311 630 5 884365929 +712 790 4 874956931 +343 56 5 876404880 +637 1233 5 882900888 +625 255 2 891629673 +106 28 4 881451144 +486 248 4 879874663 +618 195 3 891308431 +716 484 4 879795867 +710 116 4 882063852 +313 63 4 891030490 +740 319 3 879522781 +59 458 4 888203128 +735 1 4 876698796 +83 56 1 886534501 +314 1074 3 877890857 +529 270 4 882535304 +351 989 4 883356684 +393 22 4 887745973 +253 1404 3 891628651 +684 722 2 878762302 +7 575 3 892133271 +653 214 3 880151311 +95 58 3 879197834 +385 1110 2 879446566 +232 1149 5 888549674 +693 11 4 875482197 +271 462 4 885848448 +235 179 5 889656028 +412 182 4 879716983 +588 433 5 890024246 +454 77 4 888266955 +538 385 3 877108345 +715 73 4 875964410 +551 1419 1 892785332 +543 56 5 874866535 +561 362 2 893105375 +705 8 3 883427904 +698 751 3 886365557 +437 707 3 880141374 +292 48 5 881105318 +7 672 1 892131925 +502 258 2 883701927 +645 627 2 892055244 +280 764 4 891701685 +560 489 3 879975662 +562 218 4 879196576 +429 1071 2 882385729 +590 125 3 879439509 +65 1044 3 879217002 +463 1244 1 890530329 +490 293 2 875427993 +619 568 5 885954083 +641 192 4 879370150 +648 177 5 884882702 +533 423 5 888844906 +520 286 5 885168591 +524 1113 3 884636236 +472 404 3 875982922 +298 208 5 884182867 +507 333 4 889964121 +222 180 3 878181804 +270 1074 5 876955770 +707 1171 3 880059687 +663 272 5 889491515 +716 381 4 879795644 +435 1268 5 884131950 +294 827 1 889243393 +43 699 4 883956040 +606 71 5 880923745 +458 134 5 886395963 +661 238 4 876016491 +13 87 5 882398814 +624 147 4 879792557 +610 275 4 888703453 +255 300 3 883215358 +455 276 4 879109594 +393 977 4 887745501 +697 1245 1 882622526 +620 740 5 889987349 +503 70 4 880383174 +453 9 3 888207161 +697 754 3 882621431 +67 235 3 875379643 +13 631 3 882140624 +665 748 4 884290076 +493 684 4 884132267 +472 1058 4 875980081 +167 735 4 892738277 +279 33 4 875308510 +536 188 3 882359755 +666 502 3 880567883 +478 616 4 889398260 +689 597 4 876676165 +515 900 4 887658975 +92 9 4 875640148 +634 756 3 875729749 +712 785 5 874730206 +712 82 5 874730031 +658 129 3 875145750 +305 684 3 886323591 +551 11 5 892777052 +342 327 4 874984025 +83 259 2 883869199 +459 1115 3 879563506 +664 92 4 876525002 +132 521 4 891278996 +586 468 3 884066087 +590 127 4 879439645 +234 1285 3 892335764 +457 473 4 882395360 +115 980 4 881169984 +222 294 3 877562795 +634 762 3 879787667 +43 550 3 883956040 +500 709 4 883873640 +60 378 4 883327566 +541 1442 1 884046888 +238 294 3 883575813 +363 208 4 891496190 +613 126 5 891227338 +734 419 4 891023066 +92 575 2 875907763 +695 301 3 888806120 +589 243 3 883352735 +82 1078 3 878769748 +624 1028 3 879793485 +94 928 3 891723774 +130 2 4 876252327 +683 306 3 893286347 +504 1084 4 887837958 +710 300 3 882063407 +644 293 4 889076851 +497 11 3 879310825 +480 661 4 891208327 +648 407 4 884367248 +151 290 1 879543400 +490 181 4 875427873 +184 223 4 889911195 +663 243 3 889492076 +527 182 5 879456132 +496 96 4 876065881 +469 582 5 879524266 +310 50 5 879436177 +144 98 4 888105587 +747 228 4 888639736 +699 495 3 878883113 +160 276 5 876768106 +7 434 4 891352384 +439 1328 4 882893891 +197 332 2 891409290 +59 321 4 888206764 +473 9 5 878157357 +655 753 3 887860615 +5 387 3 875637419 +189 175 5 893265506 +393 1051 3 887745544 +621 763 4 880738462 +103 181 4 880415875 +544 323 2 884796016 +655 1535 3 887429023 +59 774 2 888206562 +723 28 3 880498970 +497 373 4 879311007 +608 1183 1 880405484 +398 168 3 875658967 +607 498 4 883879556 +658 45 5 875147800 +606 25 5 878149689 +85 707 4 879454350 +739 359 5 886825529 +606 925 4 880922566 +474 86 4 887927456 +710 200 4 882063793 +243 477 4 879987736 +592 898 2 887257199 +536 62 4 882360873 +175 195 3 877107790 +655 1600 3 888474286 +188 928 3 875074847 +632 215 4 879458834 +653 506 2 880606619 +605 1226 4 879510864 +526 544 1 885682477 +711 707 5 879993579 +694 699 4 875728639 +178 229 4 885784558 +155 331 3 879370860 +316 531 5 880853704 +10 60 3 877892110 +506 423 5 874874850 +429 70 4 882386401 +740 748 3 879522872 +230 588 5 880484683 +503 753 1 880383064 +201 473 3 884141470 +145 111 3 875270322 +503 504 4 880472298 +655 1560 2 887429136 +669 82 4 892550310 +699 258 5 883278844 +374 1001 1 882158327 +179 300 4 892151231 +503 702 2 880383236 +749 2 4 878849375 +654 22 5 887864292 +332 230 5 888360342 +144 307 1 888103407 +10 708 4 877892438 +377 194 5 891298549 +617 145 1 883789716 +1 87 5 878543541 +748 154 3 879454602 +709 816 2 879848318 +487 1016 5 883444515 +459 117 5 879563146 +567 469 4 882426837 +675 1653 5 889489913 +632 181 5 879457016 +321 182 3 879439679 +603 1483 5 891956283 +537 1045 3 886032154 +676 169 5 892686524 +697 277 5 882622581 +661 200 3 876035896 +521 8 3 884477914 +276 72 4 874791960 +378 31 4 880045652 +630 895 4 885666143 +546 977 5 885140939 +648 238 3 882213535 +512 56 5 888579996 +548 344 1 891042530 +619 252 3 885953878 +301 546 4 882078228 +745 215 3 880123751 +405 45 1 885549506 +718 300 5 883348269 +490 1067 2 875428309 +457 235 3 882395894 +724 311 1 883757597 +618 11 4 891307263 +646 347 2 888528392 +707 995 4 879439418 +23 162 3 874786950 +378 674 3 880056735 +691 56 4 875543025 +234 1452 4 892335342 +321 283 3 879438987 +416 781 4 893142283 +121 411 1 891390544 +435 625 2 884132588 +655 700 3 887523200 +486 1082 2 879875221 +374 2 4 880939035 +493 183 5 884132225 +417 219 3 879648979 +716 969 4 879794815 +577 191 4 880472055 +694 22 5 875726759 +536 443 3 882360833 +222 56 5 878182058 +616 348 3 891224801 +735 258 4 876697561 +385 652 5 881530738 +63 596 2 875747470 +488 514 2 891294063 +577 194 4 880474216 +301 412 4 882075110 +405 351 1 885549942 +416 1469 3 878880195 +734 98 4 891025247 +747 25 3 888639318 +682 697 4 888517816 +715 217 2 875963452 +650 546 1 891382877 +488 724 3 891375751 +718 111 4 883348634 +621 109 4 880737607 +749 56 2 878847404 +373 946 5 877104048 +447 629 3 878855907 +748 528 3 879454880 +389 56 5 880086868 +608 136 3 880403280 +648 70 2 884881592 +680 274 3 877075312 +621 53 4 874964496 +326 419 3 879875203 +660 228 3 891200193 +462 259 3 886365773 +717 322 5 884642133 +587 691 4 892871031 +214 173 4 892668249 +280 528 3 891700553 +95 216 5 880573287 +13 668 1 882397068 +499 50 3 882996761 +311 499 4 884365519 +534 286 3 877807602 +266 319 2 892256765 +601 154 5 876350017 +399 31 3 882345649 +704 461 3 891397712 +69 234 5 882145505 +24 92 5 875323241 +654 13 1 887863780 +92 95 3 875653664 +644 291 4 889076949 +450 1435 4 882471362 +666 1011 4 880313723 +707 799 4 886287876 +716 187 3 879795189 +479 1608 2 889125499 +201 436 3 884112627 +339 131 5 891033382 +665 117 4 884290575 +328 597 3 885048465 +435 156 4 884131822 +646 1237 3 888529127 +749 125 5 878848764 +294 1012 4 877819792 +727 746 4 883710514 +655 1644 1 888474327 +486 298 3 879874871 +682 737 3 888518104 +453 496 4 888203066 +295 222 4 879517136 +585 1623 4 891283921 +350 435 5 882346900 +600 22 5 888451491 +682 327 3 888518299 +648 997 1 884882636 +653 234 3 878854633 +113 288 3 875075887 +279 1490 4 875312947 +440 70 4 891577950 +435 631 2 884132540 +479 24 3 879460236 +524 405 2 884627065 +405 794 5 885549309 +499 194 4 885599372 +653 451 2 880152351 +746 96 4 885075267 +654 963 4 887864414 +215 180 3 891435060 +537 42 3 886030622 +655 433 2 887428030 +378 213 5 880045935 +413 328 3 879968933 +532 451 4 874789474 +246 96 3 884920900 +654 268 1 887863017 +490 137 3 875427739 +506 67 3 874874894 +746 117 4 885075304 +718 591 4 883349191 +738 196 4 875350086 +85 65 3 879455021 +344 476 3 884900499 +89 731 3 879460347 +151 443 5 879524947 +666 636 4 880568322 +694 216 4 875729830 +286 301 5 879780879 +653 790 2 880152523 +393 1028 3 887745174 +357 760 3 878952080 +269 208 2 891449304 +573 10 4 885843818 +731 197 5 886185743 +417 232 3 879648510 +709 633 3 879846561 +515 1399 4 887659718 +699 224 3 878883249 +657 922 4 884239123 +586 202 4 884066689 +508 229 2 883777346 +716 1039 5 879796808 +546 234 4 885141332 +642 1480 1 886569922 +233 293 4 877660832 +708 751 4 892718687 +696 523 5 886404542 +611 751 4 891636098 +504 632 3 887837701 +455 270 4 878585321 +429 928 2 882386849 +577 71 5 880474433 +514 385 3 886189965 +233 371 5 880190399 +28 332 2 881954915 +692 1040 2 876954021 +690 64 5 881179682 +279 1488 4 875659924 +325 1523 4 891478504 +606 135 5 880926245 +332 96 5 887939051 +82 175 4 878769598 +495 944 5 888637768 +376 301 3 879433102 +276 235 4 874786734 +504 90 3 887910552 +488 168 4 891293910 +85 246 4 881704999 +577 147 4 880470604 +325 205 4 891478307 +701 100 5 891447139 +440 904 5 891546654 +716 191 5 879796046 +405 317 4 885544911 +734 166 3 891022849 +553 191 4 879949153 +629 984 3 880116278 +682 412 1 888521907 +549 100 4 881672333 +544 271 3 884795986 +561 1512 5 885807455 +733 253 3 879535407 +719 50 2 879358671 +164 222 4 889401927 +693 568 4 875483947 +641 303 3 879369827 +451 1265 4 879012772 +171 304 3 891034756 +439 121 2 882893768 +429 654 4 882385542 +207 546 3 876018553 +386 405 4 877655145 +1 238 4 875072235 +735 741 2 876698796 +653 520 3 880151488 +663 928 3 889492679 +606 326 4 889137188 +749 663 4 878847988 +450 761 4 882398939 +406 11 4 879446529 +606 194 4 880925199 +347 76 5 881654679 +490 246 2 875427812 +717 328 4 884641842 +737 186 5 884314944 +417 80 4 879649247 +627 4 2 879531248 +650 742 3 891369889 +514 582 4 875318224 +552 934 3 879222336 +643 501 4 891448062 +711 196 5 879993918 +315 324 3 879799302 +339 485 5 891032413 +405 563 1 885548475 +106 647 3 881450440 +450 67 3 882469941 +705 121 5 883427479 +551 216 5 892777609 +663 23 4 889493818 +595 294 2 886920748 +244 1136 3 880608162 +664 212 4 878090180 +586 29 5 884062405 +423 299 3 891394788 +561 980 3 885809146 +234 942 3 892334610 +393 930 3 889731593 +389 72 3 880614164 +378 254 1 880318158 +234 956 3 892826643 +514 393 3 876067592 +657 286 4 884238002 +548 284 3 891415619 +134 301 2 891732296 +616 333 2 891224448 +642 585 5 885606178 +749 366 4 878849903 +545 742 4 880347813 +699 300 3 893140897 +697 596 4 882622372 +299 152 4 877880474 +546 294 1 885139779 +608 25 4 880406506 +655 498 3 887523453 +280 1051 4 891700904 +557 325 3 880485074 +655 70 2 887474727 +721 259 3 877137527 +198 131 3 884208952 +712 812 4 874729996 +716 673 4 879797535 +2 274 3 888551497 +750 330 2 879446215 +457 472 4 882395768 +664 328 3 876523314 +663 268 3 889491617 +655 903 3 887425070 +320 145 4 884751552 +665 845 4 884292654 +552 25 3 879221833 +743 288 2 881277690 +564 300 4 888718470 +639 513 4 891239030 +653 696 1 880152989 +656 344 4 892318520 +525 1014 3 881086468 +49 181 1 888067765 +286 742 5 877530860 +483 318 3 884046480 +343 81 5 876408139 +409 430 4 881168604 +563 153 4 880507625 +32 111 3 883717986 +632 402 3 879458725 +682 317 4 888517390 +425 1595 2 878738757 +436 38 3 887771924 +694 504 3 875728912 +691 170 5 875543395 +694 197 5 875727926 +522 12 5 876960894 +721 191 3 877140490 +699 479 3 878883038 +66 825 3 883602268 +184 170 5 889913687 +633 110 3 877211817 +642 233 4 885606964 +532 1039 4 888629863 +689 125 3 876675152 +686 327 5 879543445 +327 7 3 887744023 +94 210 4 886008459 +707 286 5 879438988 +394 186 5 880887322 +739 69 5 886959069 +624 273 4 879793129 +721 82 4 877139015 +13 692 4 882141659 +514 403 3 875463202 +716 86 5 879796072 +682 205 3 888518164 +697 242 5 882621486 +56 578 3 892910860 +669 517 3 892550282 +627 226 1 879531397 +207 82 3 877125249 +694 1263 3 875729146 +682 75 4 888518185 +523 1 5 883701763 +194 871 2 879554603 +451 328 5 879012470 +384 302 5 891273509 +538 294 3 877095702 +251 300 4 886271472 +299 248 5 877877933 +747 108 4 888733415 +480 1007 4 891207715 +632 144 4 879457812 +738 318 5 892844112 +201 607 4 884111485 +691 8 2 875543346 +683 299 3 893283997 +361 742 1 879441351 +653 88 3 880152399 +577 549 5 880475539 +655 64 4 887426931 +721 749 3 877137359 +1 156 4 874965556 +743 273 3 881278061 +620 225 3 889988281 +294 743 2 889242905 +664 479 5 878090087 +535 962 4 879617747 +13 576 3 882398076 +682 554 3 888521116 +727 628 3 883709774 +648 173 5 882213502 +650 179 2 891383786 +654 288 3 887863064 +629 15 5 880117719 +503 739 1 880383490 +676 117 4 892686244 +532 796 5 888635445 +407 496 5 875042425 +655 906 2 888813416 +588 1053 3 890027780 +479 265 4 879460918 +634 932 3 877018004 +617 1019 4 883788782 +456 474 5 881373353 +655 740 3 888474713 +293 568 4 888906489 +738 151 4 875352737 +393 78 2 889731521 +222 1066 1 881060435 +186 38 5 879023723 +624 1048 4 879793223 +454 22 4 881959844 +38 717 1 892433945 +489 887 2 891447845 +747 208 5 888640862 +496 56 5 876066009 +85 87 4 879829327 +738 205 5 892844079 +715 70 3 875964105 +13 510 5 882139717 +537 392 2 886032245 +581 224 4 879641698 +503 285 4 884637911 +379 306 3 892879325 +533 663 5 879191022 +738 180 5 892844112 +749 49 4 878848137 +565 639 5 891037291 +699 325 5 879148050 +474 507 4 887924424 +334 91 4 891547306 +445 1012 1 891199843 +488 357 4 891293699 +727 259 4 883708265 +585 213 5 891284393 +661 603 3 876016726 +551 849 5 892785128 +561 559 1 885809336 +586 1042 4 884065773 +502 681 1 883702631 +479 96 4 879460959 +597 295 3 875340117 +642 89 2 886455538 +543 157 3 874863549 +548 1016 4 891043882 +605 260 4 879365417 +472 890 4 883903272 +450 479 4 882371526 +564 597 4 888730699 +256 387 4 882165328 +274 220 4 878946107 +7 202 3 891352947 +741 95 2 891018400 +588 230 1 890023692 +308 792 3 887737594 +393 944 4 889728712 +579 211 3 880952476 +268 1188 3 875743735 +479 380 3 879462007 +701 255 3 891447164 +487 790 3 884045135 +709 125 4 879847730 +748 748 4 879454208 +455 7 4 879111213 +522 192 5 876960894 +554 423 4 876550182 +545 199 4 880347770 +117 7 3 880125780 +693 403 2 875483049 +530 64 5 883790942 +704 152 2 891397819 +574 269 5 891279173 +250 1073 5 878090114 +121 472 3 891390599 +632 735 4 879458649 +472 391 2 875983129 +62 144 3 879374785 +269 818 3 891446873 +673 750 5 888786969 +389 615 4 879991115 +579 326 3 880951494 +215 168 5 891436024 +513 118 4 885062559 +479 111 4 879460323 +441 121 4 891035489 +590 13 4 879438972 +550 1620 4 883425448 +416 97 5 893213549 +655 239 2 887428507 +727 831 3 883709839 +251 60 4 886271641 +692 756 2 876953681 +345 461 3 884992175 +667 168 3 891035206 +561 432 5 885807776 +484 692 5 891194998 +721 135 3 877140490 +422 326 3 875129523 +6 502 4 883602664 +182 596 5 885613152 +405 441 1 885548435 +137 866 3 881433090 +405 61 1 885549589 +719 281 3 888897264 +453 49 3 877561172 +608 321 2 880402633 +458 255 2 886396521 +603 271 2 891955922 +655 92 3 891585477 +574 1062 5 891279122 +60 225 3 883327976 +500 72 4 883876155 +406 1203 2 884630860 +194 1410 2 879553404 +506 96 4 874873423 +648 143 4 884368002 +543 98 4 874863336 +370 269 5 879434206 +747 23 5 888639735 +135 452 2 879857843 +8 96 3 879362183 +198 820 1 884206773 +660 216 2 891199804 +738 183 5 892844079 +303 41 5 879485686 +363 854 1 891497047 +537 426 1 886032154 +452 659 4 875266415 +110 397 3 886988688 +145 597 4 875271477 +104 330 1 888442530 +680 845 4 877075241 +640 56 5 874777528 +489 874 2 891448774 +450 705 4 882373656 +584 449 2 885778571 +13 572 2 882398255 +716 496 5 879795467 +393 65 2 887746346 +593 661 2 886193103 +660 316 4 891197728 +331 178 3 877196173 +452 418 4 875275700 +457 948 1 882393156 +536 153 4 882359540 +517 538 4 892607155 +393 86 2 889729674 +450 821 2 882812495 +73 660 4 888625754 +714 181 5 892777876 +749 1 4 881602577 +699 276 3 885775479 +458 644 4 886397275 +5 447 3 875720744 +588 69 2 890023556 +207 216 5 877878688 +280 103 3 891702122 +597 763 4 875340191 +325 132 3 891478665 +659 157 4 891383636 +102 546 3 888801876 +537 469 3 886030652 +655 86 4 887650978 +664 778 3 876525192 +535 609 4 879618019 +429 207 4 882385729 +474 836 3 887926804 +537 445 3 886030767 +37 385 4 880915902 +727 33 3 883711150 +745 7 4 880123019 +659 172 3 891384526 +738 199 4 892938594 +654 116 4 887863436 +666 187 5 880139439 +291 756 3 874833878 +559 182 4 891035111 +690 649 4 881179906 +269 8 2 891449985 +381 778 4 892697066 +716 96 2 879795122 +642 565 4 886569870 +643 410 4 891445597 +642 579 4 885606537 +642 444 1 886569417 +286 724 3 877532013 +577 728 3 880475226 +185 321 5 883524428 +303 829 2 879485814 +342 1070 3 875319412 +7 523 4 891350845 +537 1335 3 886030347 +660 67 1 891201859 +663 25 4 889492917 +58 181 3 884304447 +508 423 5 883777430 +534 121 4 877808002 +543 272 3 888300821 +617 288 1 883788566 +726 845 3 889832358 +648 67 4 884882192 +738 96 5 892844112 +218 42 4 877488546 +601 201 5 876349503 +85 174 4 879454139 +429 66 2 882386357 +141 257 3 884584773 +669 117 1 891260577 +43 186 3 875981335 +305 382 5 886323617 +653 55 3 878854051 +724 937 3 883757670 +413 936 4 879969484 +480 479 4 891208215 +3 344 4 889236939 +717 150 4 884642339 +465 181 3 883530521 +728 117 4 879443321 +533 566 4 879191652 +654 28 5 887864610 +592 1014 4 882609009 +722 118 4 891281349 +339 719 3 891036753 +537 705 3 886031074 +606 313 5 887841727 +657 628 3 884241192 +749 142 4 878850456 +345 1074 3 884993890 +244 158 3 880608904 +648 406 3 882212373 +270 319 5 876955633 +657 475 4 884239057 +692 100 4 876953482 +503 133 5 880472272 +683 302 5 893286207 +440 988 1 891577504 +653 136 1 880149965 +624 323 2 879792155 +628 845 5 880777167 +239 514 1 889178562 +515 748 2 887660131 +733 147 1 879535938 +580 289 5 884124382 +572 289 3 879449277 +398 127 4 875651657 +524 204 3 884635358 +234 222 3 892079803 +676 1527 1 892685657 +528 505 4 886101956 +690 163 3 881177459 +279 239 4 875310418 +187 8 5 879465273 +474 519 4 887926872 +624 1095 2 879793408 +405 1548 1 885547952 +537 1134 3 886030176 +650 281 2 891382877 +650 554 2 891382877 +450 622 5 882468239 +699 989 4 883279196 +618 124 1 891308542 +303 174 5 879466523 +733 676 4 879535603 +625 483 5 891262983 +201 1192 3 884113772 +385 1037 1 879449950 +593 322 2 875644752 +432 294 4 889416229 +593 568 4 886193361 +345 258 4 884916532 +541 732 3 883865173 +682 1091 3 888523288 +537 141 3 886032183 +5 228 5 875636070 +130 290 3 876250955 +268 294 3 876513675 +624 678 3 879792155 +378 1047 2 880044726 +554 238 3 876232682 +655 354 2 891667570 +718 240 1 883349467 +751 568 3 889133334 +104 124 2 888465226 +332 323 5 888098276 +387 678 3 886484460 +717 294 3 884641842 +537 93 3 886030077 +113 1251 5 875325377 +630 1023 4 885667581 +747 223 5 888638913 +454 694 2 888266874 +247 750 4 893081381 +707 124 4 880059876 +74 539 3 888333255 +712 783 3 874956981 +618 625 4 891309192 +312 137 3 891698224 +168 313 5 884286862 +309 258 5 877370288 +749 399 3 878849433 +452 180 4 875560300 +234 1221 4 892334852 +506 461 2 874873944 +730 332 3 880309870 +684 239 4 878762118 +640 318 5 874777948 +388 237 5 886436813 +707 45 4 886286926 +666 591 2 880313604 +405 439 1 885548330 +727 24 3 883709711 +26 815 2 891371597 +301 503 3 882078228 +223 117 5 891549529 +707 705 4 886285851 +94 121 2 891721815 +7 141 5 891353444 +707 1109 5 886286283 +78 871 3 879634199 +749 252 3 878847057 +654 216 4 887864432 +716 340 3 879792665 +505 435 3 889333676 +538 100 4 877109748 +212 735 4 879304010 +392 303 4 891037437 +478 7 1 889387871 +716 23 4 879795643 +543 1441 3 874863436 +238 538 4 883575749 +528 168 4 888522642 +489 316 5 891447872 +697 125 3 882622559 +711 1119 4 879994632 +528 203 4 888522613 +747 432 5 888640567 +714 255 2 892777140 +416 42 3 876699578 +572 277 1 879449799 +452 518 5 885816768 +561 751 3 885806779 +467 246 5 879532534 +625 480 4 891263589 +599 508 3 880953441 +129 242 4 883243972 +727 73 4 883713048 +705 64 5 883518709 +702 228 5 885767774 +617 563 1 883789747 +750 286 4 879445755 +17 919 4 885272696 +417 804 3 879649153 +398 604 5 875658794 +669 902 2 891182948 +429 559 3 882386662 +59 900 4 888202814 +554 820 2 876232176 +711 739 3 879995215 +178 180 3 882826395 +216 98 5 881432467 +373 184 4 877104086 +712 498 3 874729935 +586 541 3 884063080 +639 414 3 891240719 +643 550 3 891450273 +532 227 4 874788566 +648 181 5 882211066 +523 70 5 883700743 +653 572 2 880153522 +593 619 3 877727927 +40 300 3 889041523 +328 135 3 885046853 +378 509 4 880055672 +298 523 4 884182774 +506 503 4 874874396 +296 628 5 884196640 +404 683 4 883790366 +24 288 3 875245985 +756 63 3 874830908 +738 178 4 875349628 +561 971 3 885809269 +426 491 4 879442702 +632 705 5 879459738 +627 239 3 879530662 +710 22 3 882063852 +174 381 5 886513706 +334 506 3 891547763 +497 325 2 878759505 +399 203 4 882344434 +33 271 4 891964166 +666 523 4 880314194 +303 734 1 879543711 +654 79 5 887864256 +665 393 3 884295080 +293 780 3 888907816 +749 31 5 878847209 +429 584 4 882385749 +269 68 3 891449751 +615 178 5 879448547 +606 729 4 880927247 +485 328 2 891040560 +262 955 2 879792604 +649 1244 3 891440676 +536 213 5 882360704 +727 433 5 883710994 +545 551 4 879900053 +676 144 4 892686459 +373 496 5 877098643 +671 720 3 884036050 +389 824 3 881384649 +373 150 4 877098821 +645 183 4 892053340 +244 871 3 880605010 +254 616 1 886473736 +586 11 3 884059693 +655 44 2 887564639 +700 96 4 884494310 +537 24 1 886030176 +757 399 3 888466782 +682 723 1 888518063 +271 474 3 885848518 +703 7 4 875242599 +705 1 5 883427101 +629 423 5 880117333 +711 463 5 879993959 +747 48 5 888639890 +450 90 4 887660650 +621 401 1 874963210 +615 175 5 879448439 +344 742 3 884900248 +525 124 3 881086108 +601 153 4 876350060 +469 511 5 879524062 +52 100 4 882922204 +455 709 3 879111471 +260 258 3 890618198 +707 735 4 886286792 +407 209 5 875042378 +267 198 5 878971745 +479 510 4 879461337 +648 679 3 884882802 +756 367 4 874827614 +500 118 3 883865610 +669 127 5 891260596 +549 127 5 881672441 +594 50 3 874783018 +513 222 5 885062519 +480 258 3 891207859 +403 291 4 879790319 +178 79 4 882826306 +751 301 5 887134816 +388 100 3 886437039 +635 276 3 878879257 +487 423 4 883446685 +672 1028 4 879789030 +293 1421 2 888907794 +373 99 5 877099091 +417 451 4 879649266 +141 291 5 884585220 +627 191 4 879529957 +274 200 4 878946612 +682 862 1 888522021 +532 135 3 888629938 +531 245 4 887049049 +268 1118 3 875310673 +560 240 3 879976970 +437 428 5 881001983 +627 729 1 879530600 +618 191 4 891307175 +660 810 3 891265495 +42 239 5 881108187 +566 575 1 881651652 +234 9 3 891227689 +436 65 4 887771753 +62 245 2 879373232 +660 755 2 891201026 +499 690 4 882995558 +399 289 4 882340311 +568 132 2 877907236 +399 1217 4 882350282 +470 283 5 879178370 +551 117 5 892782807 +483 582 3 887677797 +591 172 3 891031116 +498 89 5 881957353 +567 659 4 882426508 +286 451 5 877533993 +585 1005 4 891283339 +658 151 5 875148319 +611 286 5 891636244 +181 833 1 878963205 +711 658 4 879994581 +545 230 5 879899327 +399 227 2 882344794 +466 268 2 890282759 +482 269 4 887643096 +692 321 3 876946833 +370 31 3 879434766 +577 65 5 880475539 +579 209 4 880951944 +337 228 5 875185319 +392 272 5 891037437 +639 471 2 891239349 +699 825 3 879147917 +488 732 4 891294606 +454 199 3 881960413 +622 118 1 882591663 +664 70 3 878092758 +11 690 4 891901716 +718 689 4 883348355 +621 128 4 880740034 +232 48 5 888549879 +130 455 4 874953728 +504 447 4 887909816 +536 474 5 882359678 +733 294 2 879536001 +639 1195 2 891239838 +7 670 5 891353254 +655 647 3 888813306 +313 615 4 891013652 +603 12 5 891955991 +757 196 4 888445604 +207 1272 3 879132830 +734 607 5 891023066 +476 1271 2 883364433 +456 357 4 881373084 +241 268 4 887249576 +256 628 5 882150848 +347 660 2 881654186 +655 234 3 888474713 +60 755 4 883327639 +455 382 3 879112239 +561 214 3 885809670 +83 993 2 883868978 +95 197 4 888954243 +588 132 5 890015476 +669 527 3 891517185 +487 378 5 883530973 +699 307 3 893140697 +380 357 4 885478425 +606 176 5 880923925 +452 212 2 885490812 +527 628 3 879456289 +566 161 4 881651097 +682 673 3 888517049 +472 1074 5 892790676 +717 100 4 884642268 +682 1222 3 888523657 +64 153 3 889739243 +636 1 3 891448229 +498 447 3 882205321 +495 186 5 888633277 +666 604 3 880139669 +92 758 1 875644796 +650 180 3 891383164 +326 663 1 879877159 +417 546 3 879646712 +346 234 2 874950291 +618 197 3 891307825 +499 521 4 885599119 +741 783 3 891457633 +556 12 5 882136440 +711 476 4 876185832 +588 83 5 890015435 +576 319 3 886985695 +503 740 5 879438411 +567 124 4 882426812 +690 194 4 881177349 +631 301 4 888465107 +517 258 5 892660728 +94 436 5 891721815 +24 98 5 875323401 +697 989 2 882621813 +217 62 2 889070050 +543 161 4 877545356 +481 86 5 885828650 +551 710 5 892777753 +177 60 4 880130634 +682 9 3 888517168 +442 231 3 883390609 +757 71 4 888445838 +640 919 5 886474436 +60 286 5 883325421 +342 487 5 874984315 +453 164 3 877554771 +756 603 5 874831383 +381 94 3 892697337 +99 120 2 885679472 +432 249 5 889416352 +618 82 4 891308704 +655 537 3 887489086 +280 728 3 891701614 +629 292 4 880116722 +4 11 4 892004520 +669 300 4 892549238 +593 174 4 875660546 +416 200 5 893213103 +198 64 4 884207206 +671 1073 3 883949781 +385 1499 5 881047168 +246 841 1 884923829 +524 965 4 884635288 +586 452 3 884060941 +62 699 4 879375022 +526 690 3 885681910 +57 473 3 883697916 +639 584 2 891239790 +500 211 3 883875241 +298 88 5 884183236 +307 164 4 879283514 +624 124 4 879792358 +401 508 3 891032433 +707 163 2 886285939 +677 323 4 885191280 +693 1145 2 875483049 +716 105 2 879794450 +751 178 5 889132896 +548 466 5 891044446 +587 266 1 892871536 +495 231 3 888635294 +654 204 4 887864610 +435 862 1 884133972 +353 327 2 891402443 +504 102 3 887910409 +495 768 3 888636216 +334 248 4 891544997 +200 455 3 876042340 +647 291 3 876534275 +589 323 2 883352631 +141 717 4 884585470 +655 529 4 887428965 +451 268 2 879012684 +62 127 4 879372216 +468 238 3 875286036 +327 302 3 887737355 +551 235 1 892784629 +664 462 4 878091912 +551 188 5 892783672 +435 748 4 884130765 +727 132 2 883710271 +698 491 2 886367644 +399 164 2 882344553 +585 736 4 891284184 +738 916 3 892938181 +64 98 4 889737654 +679 416 3 884488226 +747 1050 3 888640099 +505 50 3 889334067 +707 371 3 886287497 +727 419 2 883710236 +653 1188 1 880153568 +180 739 3 877128156 +627 949 2 879530824 +537 625 3 886032184 +510 681 1 887667808 +326 176 2 879876184 +556 513 4 882136396 +158 284 5 880132638 +682 1655 2 888517922 +484 111 4 881450111 +567 9 4 882426696 +374 934 3 882158146 +724 877 1 883757834 +286 934 3 889653107 +737 89 4 884314664 +634 13 4 878916178 +514 890 1 885180929 +672 931 1 879789164 +406 480 4 882480802 +619 307 2 885953601 +276 1 5 874786568 +650 1247 1 891384110 +314 25 3 877886753 +727 177 4 883710687 +7 605 4 891353290 +457 176 5 882397542 +693 631 3 875482826 +294 535 4 877820240 +490 50 5 875428765 +459 260 2 879561782 +716 405 4 879793844 +168 405 4 884287927 +318 196 3 884495973 +715 204 4 875964025 +405 674 1 885548275 +618 419 4 891309887 +660 120 1 891198996 +144 632 4 888105472 +682 447 2 888522857 +622 250 4 882590252 +284 289 3 885329671 +756 527 3 874828242 +718 273 3 883348712 +537 664 3 886031634 +90 340 4 891382121 +410 690 4 888627138 +501 741 5 883347857 +632 98 4 879457217 +276 1046 3 874795772 +197 1222 3 891410082 +307 483 5 875680937 +591 393 4 891031644 +514 652 4 886189466 +16 180 5 877726790 +501 342 4 883346823 +551 55 5 892777753 +459 1039 3 879564915 +610 477 2 888703475 +717 331 3 884641681 +627 554 2 879531557 +684 204 4 875812299 +527 14 2 879456663 +472 895 4 892790628 +648 505 4 884796652 +460 515 5 882912418 +629 202 4 880117635 +271 1120 2 885847800 +200 405 3 884127370 +152 121 5 880149166 +23 541 4 876785720 +655 294 3 887425103 +710 264 2 882063564 +474 659 5 887925187 +682 761 4 888521090 +326 127 1 879875507 +536 151 3 882318442 +445 818 1 891200656 +457 185 5 882397375 +369 358 3 889428228 +727 1217 3 883711965 +219 631 5 889403559 +653 550 3 890181186 +622 233 4 882670423 +531 286 5 887048741 +595 824 3 886921748 +557 180 5 881179653 +291 11 4 874835024 +712 746 4 874730085 +314 731 4 877892099 +707 151 4 880059810 +624 260 2 879792251 +496 1060 1 876071243 +474 26 4 887927509 +747 486 5 888732609 +588 588 4 890023692 +181 864 2 878962774 +643 519 4 891447663 +363 161 4 891496753 +22 1000 3 878886333 +648 403 4 884882802 +708 1047 2 877325726 +280 203 4 891701530 +22 566 3 878888145 +620 404 4 889988232 +653 742 3 886052040 +747 1375 4 888732571 +745 425 4 880123540 +344 118 3 884900353 +648 1376 2 884367180 +656 303 4 892318553 +203 742 3 880434882 +195 451 5 875771441 +94 433 4 891721078 +551 282 5 892777092 +537 310 3 886028647 +639 275 4 891239492 +606 428 3 880927247 +411 56 4 891035278 +655 1221 3 891585477 +499 251 5 882996735 +699 319 3 883279146 +58 773 4 884304790 +508 230 2 883768706 +507 257 5 889966054 +378 663 3 880046437 +301 271 4 882075473 +393 501 3 889729614 +639 300 3 891238790 +227 240 1 879035934 +672 476 5 879789462 +711 340 5 886030557 +668 29 3 881605433 +99 282 3 885678753 +553 661 5 879949324 +741 399 2 891457456 +458 474 4 886397109 +546 145 4 885141502 +630 930 3 885667551 +504 1277 4 887832012 +678 7 4 879544952 +316 89 1 880854197 +699 977 2 879147550 +532 44 5 888637085 +561 589 3 885807510 +665 249 5 884290608 +374 975 4 880936113 +452 615 3 875261350 +597 235 4 875340062 +664 234 3 876526554 +634 864 3 877368475 +311 944 4 884366439 +128 404 3 879968308 +533 205 5 882902988 +650 163 3 891386878 +627 597 3 879531557 +698 603 4 886366770 +727 1231 3 883713082 +447 11 4 878856208 +181 1319 1 878962120 +690 1207 3 881180138 +664 47 4 876525076 +605 176 4 879426339 +521 655 4 885253904 +146 1293 5 891458080 +568 213 4 877907835 +703 117 4 875242814 +500 412 1 883876370 +668 333 3 881524020 +486 150 3 879874838 +620 118 4 889987825 +562 230 1 879195954 +187 462 5 879466062 +7 452 5 891353860 +618 427 5 891308431 +622 217 4 882671185 +458 203 5 886396460 +385 1008 4 879440628 +650 154 3 891381993 +417 168 4 879647355 +602 181 5 888638547 +433 246 4 880585885 +600 269 4 888451388 +682 83 3 888517011 +747 783 1 888732921 +537 81 3 886031106 +711 692 3 879993150 +640 751 4 886353742 +563 181 4 880507374 +611 299 1 891636223 +660 1183 1 891201049 +666 684 4 880568063 +374 637 4 882159237 +5 250 3 875635265 +59 402 4 888206296 +635 1 4 878879283 +63 473 2 875747635 +537 337 3 886029526 +660 1074 1 891201399 +416 216 5 893213444 +715 174 4 875963306 +618 176 4 891307426 +332 56 5 888098256 +305 713 4 886323115 +11 504 3 891905856 +521 135 4 885254226 +97 133 1 884239655 +305 198 4 886322838 +745 520 3 880123696 +316 44 4 880853881 +658 56 5 875148108 +714 121 4 892777903 +650 82 3 891381585 +345 498 4 884992117 +740 289 4 879523187 +561 657 4 885807235 +736 532 4 878709365 +496 186 4 876065558 +493 405 2 884130619 +665 195 3 884294819 +393 393 3 889731064 +526 475 5 885682635 +102 73 3 892992297 +532 925 4 892520642 +751 248 5 889132413 +588 638 4 890024289 +474 44 3 887926998 +33 339 3 891964111 +401 315 4 891031464 +587 271 4 892871310 +752 286 1 891207940 +749 188 3 878848302 +659 269 4 891331825 +653 204 4 878867093 +387 22 5 886483049 +645 228 3 892053748 +291 246 5 874834481 +651 286 4 879348880 +615 631 4 879448843 +525 928 3 881086586 +632 234 3 879457641 +541 588 4 883874682 +249 403 4 879640998 +139 288 4 879537918 +561 183 5 885807215 +715 150 4 875961898 +710 751 3 882860806 +271 815 3 885848153 +10 170 4 877889333 +698 659 3 886367013 +690 794 3 881180543 +648 125 2 882211654 +256 182 4 882164479 +758 347 3 885257453 +374 1218 2 881291426 +59 179 5 888204996 +7 606 3 891352904 +457 180 5 882396989 +632 510 5 879459738 +666 1132 3 880313992 +13 163 3 882141582 +405 91 2 885548932 +654 246 1 887863471 +573 174 4 885844431 +607 475 4 883879811 +22 144 5 878887680 +391 490 4 877399658 +49 85 3 888068934 +292 491 4 881105318 +659 177 5 891384850 +486 1120 3 879875465 +749 1337 3 882804605 +658 527 5 875147800 +363 248 5 891499595 +655 293 4 887650683 +671 241 5 884035686 +666 530 3 880139323 +655 1140 3 887474699 +599 319 2 880951046 +610 117 4 888704000 +436 111 4 887771773 +655 167 4 888474713 +604 448 5 883668261 +568 494 4 877907835 +749 735 5 878847716 +378 780 2 880334241 +655 1602 3 891817435 +450 709 3 882371826 +7 386 4 892133310 +440 198 4 891577843 +592 479 4 882956668 +507 222 5 889965997 +142 294 3 888640054 +554 66 3 876369615 +145 826 2 875271312 +399 455 4 882340924 +334 537 4 891547995 +407 257 4 884202243 +504 40 4 887910409 +399 332 3 882340242 +634 1142 3 877018347 +716 133 5 879795239 +344 86 4 884901129 +655 346 4 888474713 +417 5 4 879648593 +132 251 4 891278996 +575 304 2 878146638 +207 125 4 877878688 +194 1408 1 879555267 +468 121 4 875280628 +537 670 2 886031342 +627 405 3 879531458 +58 367 5 892243053 +436 790 3 887770428 +741 69 4 891018550 +416 843 3 886317748 +88 880 3 891037466 +221 384 3 875246919 +537 1113 3 886031606 +749 154 5 878847988 +389 383 2 881384649 +716 144 2 879795467 +557 96 5 881179653 +312 427 5 891698224 +373 22 5 877098919 +747 116 4 888639318 +457 257 3 882393036 +350 89 4 882347465 +727 569 2 883713286 +84 273 4 883452086 +430 42 3 877226568 +399 385 3 882344597 +715 1011 4 875962524 +344 13 3 884899768 +655 654 3 887474077 +676 1654 1 892685960 +595 181 5 886921199 +524 558 4 884634533 +405 1297 1 885546577 +749 406 4 881072892 +223 1088 4 891550326 +60 513 5 883325994 +279 1027 4 891208908 +675 1101 4 889490029 +78 93 4 879633766 +119 826 4 874775580 +527 283 4 879456405 +633 121 3 875325168 +405 173 5 885544798 +43 367 4 883956494 +82 546 3 876311423 +590 286 5 879439645 +742 109 1 881335960 +733 1009 2 879536723 +654 173 5 887864181 +272 238 5 879455143 +748 22 4 879455126 +314 1012 4 877886584 +457 658 4 882398308 +130 321 5 874953291 +682 204 3 888521413 +594 319 3 874780864 +682 1232 2 888517896 +737 222 3 884315127 +474 648 4 887926804 +727 432 2 883711298 +230 498 5 880484755 +393 369 3 887745174 +515 687 3 887659718 +363 325 1 891494012 +332 38 2 888360488 +359 323 3 886453431 +650 63 2 891388294 +181 1117 2 878962585 +554 100 3 876231441 +749 151 5 878846783 +586 1273 4 884065825 +716 443 4 879796381 +92 49 3 875907416 +707 525 3 886286999 +267 56 5 878972493 +478 1 4 889387931 +676 962 4 892686525 +393 135 1 887747108 +718 1048 2 883349363 +741 435 4 891455353 +159 25 5 880557112 +311 1217 3 884365686 +561 956 4 885809336 +407 393 2 876344736 +393 5 3 887746849 +595 880 3 886920819 +374 240 1 880394301 +678 924 2 879544397 +328 230 3 885048101 +148 234 3 877020297 +758 135 5 881974742 +311 393 4 884366066 +630 322 3 885666211 +732 300 4 882589552 +627 76 3 879530173 +588 959 5 890026459 +344 494 4 884901210 +307 178 3 877118976 +476 648 4 883364295 +291 783 2 875087432 +630 96 4 885668277 +731 378 1 886187652 +403 222 5 879786190 +666 427 4 880139382 +642 575 3 886454901 +646 300 3 888528418 +423 329 3 891394952 +532 267 3 875441348 +724 266 1 883758119 +379 161 2 880525502 +595 820 2 886921870 +535 1136 4 879618465 +514 26 3 875463595 +627 11 4 879529702 +104 1028 2 888465818 +160 1142 5 876768609 +637 289 2 882900047 +451 1022 4 879012858 +608 487 4 880406032 +737 47 3 884314970 +752 272 4 891207898 +63 284 3 875747581 +102 219 2 888803149 +559 393 2 891035917 +592 193 5 882955948 +436 182 5 887769150 +435 1061 3 884134754 +151 33 5 879543181 +523 306 5 883699583 +624 1016 3 879793582 +751 305 2 887134730 +6 308 3 883600445 +738 175 4 875349968 +427 304 4 879700850 +198 480 4 884207239 +7 238 5 891351814 +670 15 4 877975200 +698 307 4 886365629 +486 129 4 879874939 +549 118 4 881672479 +721 302 3 877137358 +694 654 4 875727099 +504 245 4 887831274 +69 197 5 882145548 +701 315 5 891446559 +555 121 3 879962551 +535 1045 4 879617663 +634 106 3 877017923 +683 187 5 893286501 +608 660 5 880406800 +617 648 3 883789080 +504 465 3 887909936 +621 391 3 874964657 +435 569 3 884134019 +286 386 3 877534975 +58 405 2 892242047 +458 117 4 886394623 +449 248 4 879958888 +661 48 4 876016726 +49 396 4 888067482 +276 1482 4 874791383 +643 732 3 891447868 +194 737 4 879553003 +472 226 5 875982867 +731 168 1 886185744 +167 513 4 892738385 +660 201 3 891200513 +416 66 5 893213019 +353 270 2 891402358 +588 475 2 890015684 +658 844 3 875145667 +707 269 4 882200810 +5 145 1 875720830 +161 486 1 891171657 +592 844 4 882608021 +712 431 3 874730552 +524 47 2 884635136 +623 181 5 891032291 +524 209 4 884634755 +642 8 5 885603662 +537 495 2 886031678 +537 510 3 886031575 +545 575 3 879900985 +110 184 1 886988631 +405 420 5 885548785 +453 1273 2 877561258 +159 1258 1 884026823 +608 61 5 880404693 +655 475 3 887693376 +92 202 3 875653805 +537 1245 3 886030051 +505 125 3 889334373 +505 385 4 889334477 +632 17 3 879459573 +234 712 2 892336077 +640 85 5 874778065 +296 313 5 884196114 +567 653 5 882425843 +500 204 3 883874265 +561 443 4 885809197 +655 1288 3 887523427 +466 292 4 890284651 +294 1254 3 889242661 +517 105 1 892654653 +125 144 5 879454197 +435 172 5 884132619 +643 195 5 891447063 +682 942 2 888517324 +619 1231 2 885954215 +89 1119 3 879459884 +551 747 3 892783025 +694 98 5 875726886 +28 447 3 881961532 +13 164 3 882396790 +758 298 4 880672727 +554 265 4 876232956 +714 597 3 892777533 +538 28 3 877107491 +59 197 5 888205462 +629 301 3 880115922 +715 58 4 875964131 +429 493 4 882385663 +487 88 4 884024901 +625 134 4 891263665 +140 245 3 879013720 +13 635 1 882396984 +608 300 1 880402327 +95 237 2 879192708 +468 372 2 875301098 +667 313 3 891034404 +511 682 4 890004844 +719 223 5 879360442 +757 161 3 888468909 +599 888 5 880951249 +459 108 1 879563796 +352 86 4 884290505 +94 194 4 885870284 +659 192 4 891384372 +83 356 4 880308755 +642 82 5 885602285 +532 268 4 875441085 +458 58 5 886396140 +431 302 3 877844062 +397 172 5 885350381 +211 64 3 879460213 +37 405 4 880915565 +303 93 5 879467223 +682 3 3 888519113 +381 1 5 892697394 +207 9 4 880911845 +532 898 4 884594575 +738 265 4 892957967 +543 761 2 876105554 +399 307 3 882340264 +104 926 1 888465936 +90 530 3 891385522 +644 1620 4 889077247 +448 301 1 891888099 +463 926 1 890453075 +488 50 4 891293974 +588 658 5 890025751 +495 161 4 888634746 +520 302 3 885170330 +720 304 4 891262697 +437 143 5 880141528 +712 584 4 874730342 +682 802 2 888521047 +698 275 4 886366558 +234 99 5 892333573 +538 82 4 877107558 +757 100 3 888444056 +692 412 4 876954196 +727 949 3 883711616 +533 43 4 879439341 +503 662 3 880383467 +407 258 4 884197027 +128 955 5 879969064 +696 689 1 886404208 +566 230 2 881650123 +64 141 4 889739517 +468 462 4 875288196 +758 517 3 881976377 +244 1119 5 880606993 +705 300 5 883426780 +405 1499 1 885549407 +416 500 5 893212573 +262 90 4 879795270 +587 316 4 892870992 +711 283 4 876185788 +660 483 4 891199804 +346 403 3 874950383 +618 22 4 891308390 +708 328 3 892718964 +264 93 5 886123993 +654 124 4 887863412 +301 145 3 882078040 +664 636 3 876526631 +385 37 4 880013483 +479 688 1 887064434 +181 1102 1 878963381 +606 216 5 880925579 +207 461 3 878104017 +671 327 1 875387273 +506 210 5 885135737 +557 50 4 881095916 +655 1061 2 887428623 +279 845 1 888426577 +592 825 1 882608795 +758 127 5 880672637 +514 169 5 875308734 +462 272 5 886365142 +303 246 5 879544515 +707 165 3 886285939 +536 210 5 882359477 +722 300 3 891279945 +663 287 5 889492720 +586 586 2 884063080 +232 423 4 888549595 +750 301 4 879445911 +749 1089 3 882804586 +562 118 3 879196483 +696 312 4 886404322 +298 196 4 884182891 +550 688 3 883425762 +703 458 3 875242935 +617 444 4 883789590 +716 588 4 879795606 +716 181 4 879793221 +758 258 4 880672230 +666 257 3 880313682 +279 1170 1 891209102 +244 1095 2 880605333 +551 44 4 892777825 +128 1053 3 879968494 +347 24 3 881652657 +611 268 5 891636192 +643 255 4 892502414 +354 520 3 891217811 +747 303 5 888638091 +756 99 3 874829258 +690 523 4 881177430 +92 1 4 875810511 +297 32 4 875239267 +619 879 4 885953743 +51 144 5 883498894 +237 187 3 879376553 +660 542 2 891201887 +201 202 3 884112747 +655 319 3 888685879 +749 73 4 878849586 +618 684 3 891306991 +303 653 4 879466937 +603 294 4 891956330 +72 50 2 880037119 +411 228 3 891035309 +620 423 5 889988168 +521 385 3 885254837 +284 903 4 885329238 +495 431 5 888632546 +608 174 3 880406506 +614 294 4 879464507 +224 54 3 888104313 +694 517 4 875727926 +693 300 2 875481397 +206 1176 1 888180049 +665 357 4 884293979 +323 1012 4 878739594 +705 932 5 883427339 +256 82 5 882164559 +607 222 3 883879613 +648 71 3 884368165 +560 270 4 879975173 +579 381 3 880952360 +293 179 4 888905898 +642 627 3 885606581 +593 423 4 875671505 +619 127 4 885953778 +655 772 3 887426972 +587 270 4 892871171 +158 29 3 880134607 +90 699 4 891385298 +498 631 3 881957905 +655 19 2 887472719 +524 432 1 884636151 +329 333 4 891655322 +308 615 3 887739213 +73 433 4 888626437 +459 879 4 879561630 +201 97 2 884140115 +13 346 4 883670552 +757 7 4 888444826 +234 550 2 892334883 +627 631 3 879529885 +741 94 3 891457483 +217 1034 3 889070266 +342 421 3 875319435 +663 321 5 889491739 +640 342 5 886353780 +592 752 4 888553156 +715 156 4 875964438 +296 1007 4 884196921 +641 484 5 879370299 +479 89 4 879460959 +712 49 3 874956872 +478 975 4 889388229 +592 223 5 882955863 +484 181 5 881254239 +58 210 4 884305042 +741 1029 1 891457506 +676 315 4 892685224 +398 13 3 875652318 +709 265 4 879846489 +653 423 2 880152039 +503 26 2 880383200 +398 399 4 875721702 +642 417 3 886568791 +606 749 4 888333338 +758 272 4 884413293 +733 1129 4 879535338 +293 47 3 888907061 +82 304 3 884713664 +480 511 4 891208599 +592 900 4 887257094 +320 833 1 884748904 +450 500 4 882376188 +566 202 4 881650551 +591 300 3 891030956 +699 234 3 878883172 +741 1090 1 891455880 +642 1140 4 886569732 +405 955 1 885549308 +762 302 5 878718810 +610 313 4 888702841 +489 288 4 891366693 +650 608 4 891369520 +569 281 3 879793466 +271 202 4 885849025 +374 467 4 880395735 +56 89 4 892676314 +478 134 2 889397467 +100 886 3 891375522 +455 241 4 879111808 +157 120 1 886891243 +650 501 3 891385980 +329 286 4 891655291 +493 239 5 884131952 +498 137 3 881954357 +372 56 4 876869445 +543 252 3 889308778 +731 510 1 886186091 +629 87 5 880117635 +642 974 3 886569765 +487 82 5 883446252 +708 847 3 892719246 +450 396 2 882469941 +648 447 5 884883578 +592 853 5 882956201 +455 217 4 879112320 +121 744 3 891388936 +479 751 4 889125759 +758 597 2 881978805 +291 204 4 874871736 +751 316 4 888871453 +479 651 5 889125921 +466 1176 5 890284651 +355 328 4 879486422 +744 127 5 881171481 +92 55 3 875654245 +65 87 5 879217689 +312 177 3 891698832 +626 264 1 878771476 +345 237 4 884991077 +593 15 4 875659636 +405 1195 1 885549590 +314 790 4 877889698 +738 22 3 875349713 +699 271 3 880695324 +473 14 4 878157242 +712 796 4 874957268 +178 168 4 882826347 +622 385 5 882592421 +385 727 1 879443102 +95 196 4 879198354 +463 1017 2 877385731 +303 132 5 879466966 +394 73 3 881058929 +13 199 5 882140001 +472 1002 4 883904649 +533 300 4 888844557 +374 468 4 880396359 +417 465 4 879648079 +721 258 3 877135269 +280 76 2 891700699 +524 472 3 884323500 +754 676 3 879451517 +711 1221 4 879994777 +400 332 2 885676526 +664 708 4 876525077 +474 207 4 887925751 +450 202 4 882397223 +249 1069 5 879572890 +537 50 4 886030805 +749 554 3 878849612 +398 132 5 875716829 +103 487 4 880421001 +13 67 1 882141686 +222 145 2 878181804 +627 39 4 879530408 +182 178 5 876435434 +731 192 5 886182457 +376 154 4 879434558 +708 538 2 892718762 +416 99 4 876700137 +650 673 3 891369924 +586 228 3 884061459 +704 180 4 891397491 +121 1194 4 891388210 +305 287 3 886324097 +758 235 5 881978274 +65 655 4 879216769 +398 403 4 875657734 +534 3 4 877808031 +435 81 3 884131661 +268 655 4 875309486 +437 87 3 880140891 +654 172 4 887864532 +735 9 4 876698755 +504 238 3 887912416 +747 650 4 888639014 +339 7 4 891032952 +736 255 1 878709025 +683 308 3 893284420 +514 173 5 875462826 +476 692 3 883364143 +536 1140 1 882364876 +478 1221 2 889398645 +253 659 5 891628358 +753 673 1 891402379 +116 539 2 886309573 +24 71 5 875323833 +539 236 3 879788345 +518 412 1 876824266 +296 50 5 884196469 +286 17 4 877531537 +705 275 5 883427048 +506 432 4 874873112 +757 569 3 888467400 +524 837 2 884637467 +676 172 5 892686490 +618 497 2 891307019 +682 410 3 888521740 +553 1124 4 879948695 +167 238 4 892738341 +468 58 4 875288771 +248 89 5 884535046 +260 333 4 890618198 +393 73 4 887746206 +655 310 3 887473937 +708 934 4 892719172 +22 2 2 878887925 +303 282 3 879467895 +693 523 4 875482448 +561 58 3 885809654 +409 498 4 881108715 +537 236 3 886029726 +524 1124 3 884637528 +548 100 5 891044304 +588 404 3 890026656 +763 28 3 878915765 +189 990 3 893264849 +442 294 2 883388120 +599 948 4 880951281 +311 487 4 884365519 +674 288 3 887762296 +498 675 4 881958414 +617 475 1 883789294 +618 462 2 891307540 +409 275 4 881107351 +313 636 4 891028241 +279 797 4 875744512 +622 215 3 882592523 +711 345 4 884485683 +529 682 4 882535256 +495 385 3 888633042 +495 505 5 888633473 +540 250 4 882157172 +536 419 3 882360993 +425 188 3 878738386 +51 172 5 883498936 +346 216 3 874949011 +666 238 4 880139615 +362 1025 2 885019746 +566 511 4 881649445 +343 582 3 876404836 +12 98 5 879959068 +666 742 3 880313723 +464 321 4 878354680 +342 294 3 874984067 +659 648 3 891332006 +393 620 4 887745199 +657 346 4 884238162 +175 11 5 877107339 +290 419 4 880474235 +489 678 4 891366693 +758 587 4 881978635 +690 79 4 881179809 +79 902 3 891271086 +734 591 4 891022977 +94 215 4 891722174 +666 339 4 880138999 +553 8 3 879949290 +655 326 2 888474742 +598 308 4 886710612 +3 326 2 889237224 +648 430 5 884881563 +455 292 3 879108751 +524 124 5 884322113 +764 86 3 876246358 +537 294 1 886029083 +674 117 5 887762861 +276 1074 3 877934446 +552 748 4 879220651 +390 1296 2 879693770 +638 636 3 876695108 +767 1068 4 891462829 +393 42 4 889554976 +545 82 4 879899266 +393 1337 3 887745380 +383 1005 3 891193072 +681 259 2 885409882 +738 127 4 892957753 +524 94 2 884637245 +276 582 3 874787407 +429 435 4 882385636 +500 448 3 883873745 +100 294 4 891375313 +551 627 3 892783906 +639 427 4 891239064 +148 135 5 877016514 +655 612 3 888474456 +676 245 4 892685592 +414 325 3 884999193 +567 607 4 882426762 +454 162 3 888267315 +548 282 4 891415384 +666 181 2 880139563 +737 175 5 884315246 +763 588 4 878918213 +62 13 4 879372634 +536 1115 5 882318369 +92 245 4 877966971 +500 964 4 883874557 +469 490 5 879524485 +365 326 2 891303614 +537 628 2 886030177 +705 174 5 883427640 +721 50 5 877138584 +47 289 4 879439040 +561 946 3 885810813 +587 353 2 892871706 +648 1003 4 884882375 +523 582 4 883701154 +620 8 3 889988121 +655 320 5 888474456 +537 975 3 886030281 +1 106 4 875241390 +712 568 5 874730491 +648 410 2 884882375 +741 54 3 891455610 +536 190 5 882359431 +498 293 4 881955189 +654 174 5 887864727 +504 731 3 887840014 +153 172 1 881371140 +8 187 4 879362123 +743 15 3 881277855 +60 1125 4 883326497 +538 12 4 877107633 +313 568 4 891015114 +618 1066 3 891309756 +246 185 5 884921428 +757 651 4 888445279 +532 824 4 888634802 +634 742 4 875729794 +374 846 2 883627509 +543 180 4 874866208 +717 980 4 884642268 +332 833 5 887938556 +682 809 2 888522755 +320 195 5 884749255 +541 585 2 883866114 +527 91 2 879455873 +608 172 1 880405927 +221 762 4 875244598 +484 222 5 883402900 +668 97 2 881702632 +622 31 3 882669594 +262 172 2 879791875 +376 288 3 879454598 +568 772 1 877906995 +561 608 3 885809119 +715 426 5 875964104 +457 14 4 882393457 +518 476 4 876823324 +293 510 3 888905716 +754 937 4 879451061 +592 8 5 882955582 +13 448 1 882396869 +524 612 3 884635204 +128 66 3 879969329 +527 528 3 879456104 +727 1657 3 883711991 +457 458 3 882393765 +732 873 5 882589845 +503 319 3 879438024 +767 486 4 891462560 +181 628 3 878962392 +480 1388 4 891207665 +16 302 5 877716993 +620 91 2 889988069 +234 836 4 892317967 +628 361 5 880776981 +645 209 5 892053483 +655 1436 2 888474679 +500 509 4 883874216 +458 286 4 886396637 +497 70 4 879362798 +551 195 5 892777052 +483 290 3 878953199 +727 1047 2 883709750 +395 89 5 883764264 +397 223 4 885350132 +728 871 2 879443321 +769 269 5 885422510 +648 225 1 882212527 +87 709 3 879876812 +21 437 1 874951858 +634 121 5 877018125 +566 215 3 881650739 +188 591 5 875072674 +425 200 4 878738854 +417 640 5 879648742 +553 238 5 879948655 +684 402 3 878759310 +230 504 3 880485136 +577 566 4 880474216 +720 995 4 891262762 +628 173 3 880777167 +448 327 2 891888367 +472 672 4 875982771 +699 1129 3 878882319 +320 946 5 884751462 +450 530 3 887661843 +416 807 4 886319649 +237 498 4 879376698 +665 1225 2 884294286 +528 56 3 886101428 +311 494 4 884364593 +486 1197 4 879874582 +94 1110 4 891722801 +275 169 3 875154535 +547 340 4 891282757 +606 91 5 880926610 +23 655 3 874787330 +244 609 3 880607154 +551 572 1 892784672 +691 98 4 875543281 +421 129 5 892241459 +271 511 5 885848736 +650 755 3 891386187 +455 98 4 879110436 +577 28 5 880472077 +315 520 4 879799526 +639 660 2 891239271 +75 831 3 884051056 +622 64 5 882669391 +437 514 4 880140369 +514 7 5 875309415 +744 603 5 881170528 +323 762 4 878739488 +233 521 5 877663071 +536 403 3 882360496 +717 301 4 884641717 +621 298 4 883801703 +561 157 4 885808053 +750 331 4 879446114 +17 126 4 885272724 +354 487 3 891217298 +209 16 4 883417810 +230 622 3 880485380 +582 477 4 882961540 +91 735 4 891439503 +57 258 5 883698581 +704 429 4 891397366 +671 986 2 884035173 +429 288 3 882387685 +324 292 3 880575045 +584 109 4 885778204 +524 895 4 884320358 +561 95 2 885809605 +145 1046 4 888398702 +59 1111 5 888204758 +101 820 3 877136954 +648 662 3 884368485 +293 371 2 888906906 +407 8 5 875042425 +331 1199 1 877196634 +495 265 5 888633316 +173 995 5 877556988 +537 385 2 886032098 +431 690 3 877844183 +13 82 2 882397503 +587 310 3 892870992 +82 133 4 878769410 +454 169 4 888266955 +389 427 5 879991196 +709 200 4 879848053 +655 979 3 888893279 +276 1140 2 874791894 +610 153 5 888703766 +212 86 4 879303830 +715 252 1 875962049 +416 1053 4 886319434 +344 269 4 884814359 +474 462 4 887925497 +744 237 4 881171907 +548 748 3 891043910 +154 515 4 879138657 +88 898 4 891037859 +618 485 3 891307646 +727 153 4 883710856 +487 772 3 883530885 +416 849 3 886318676 +605 276 4 879365773 +551 315 5 892775389 +758 810 3 881980195 +606 200 5 880923862 +188 1041 3 875072328 +1 167 2 878542383 +496 485 3 876065477 +472 540 3 875982239 +450 427 5 882371415 +344 95 4 884901180 +119 1016 5 874775262 +662 93 5 880571006 +715 732 3 875964179 +150 276 5 878746982 +94 435 4 885870418 +640 790 4 874777260 +463 319 1 889936589 +462 323 2 886365837 +731 183 1 886185744 +756 550 2 874829152 +719 660 5 879360493 +650 510 3 891371090 +417 216 3 879647298 +702 313 5 885767336 +659 23 5 891332006 +501 845 3 883348036 +318 732 5 884496267 +301 1013 3 882075286 +699 151 3 878882002 +545 96 5 879899233 +543 479 4 874866208 +709 187 5 879847945 +749 23 3 878849176 +682 127 5 888517011 +701 333 3 891446788 +490 302 4 875428765 +26 840 2 891386049 +642 1063 3 885603740 +339 549 4 891034040 +661 514 3 876013398 +452 88 2 875559842 +457 239 5 882397267 +618 125 3 891308704 +640 14 4 886474436 +597 283 5 875340010 +664 649 4 876525044 +266 245 1 892257446 +680 121 3 876816268 +16 158 4 877727280 +620 15 5 889987210 +227 127 4 879035387 +693 428 3 875484763 +280 1099 5 891701114 +521 184 4 884478358 +349 126 2 879465598 +704 50 5 891397262 +605 831 1 879429729 +629 172 5 880117333 +504 196 4 887838935 +464 302 5 878354626 +18 517 2 880129388 +554 125 3 876550913 +755 319 3 882569801 +279 1028 4 875296104 +408 1296 4 889679901 +498 435 3 881956363 +653 313 4 890180685 +267 411 3 878974325 +627 58 5 879529958 +758 431 3 881977309 +405 367 1 885547222 +224 92 1 888103812 +385 520 3 879441599 +252 149 5 891456876 +753 79 4 891401665 +731 357 5 886187538 +771 762 2 880659970 +644 328 4 889076222 +83 300 3 889050543 +450 481 5 882373231 +711 1014 4 886030873 +386 825 4 877655146 +318 540 4 884498141 +435 250 4 884134290 +119 252 3 874780832 +643 177 4 891448002 +294 1089 2 877820132 +653 197 3 878854332 +457 450 4 882392853 +514 430 4 875462901 +49 1036 2 888069304 +659 196 4 891384888 +659 153 4 891045891 +650 515 4 891369678 +312 506 4 891699121 +200 95 5 884128979 +738 210 5 892844112 +659 794 3 891386910 +477 369 4 875940836 +527 462 3 879455707 +276 890 3 880913460 +6 153 4 883603013 +669 174 3 891260369 +454 15 2 881960029 +101 1009 2 877136598 +450 936 5 889569270 +145 892 2 885557505 +618 1185 2 891309471 +416 322 3 876696788 +373 705 4 877099934 +768 173 5 883835053 +715 12 4 875963657 +298 284 4 884126240 +381 276 3 892696587 +619 281 4 885954133 +175 50 5 877107138 +758 892 2 883190434 +399 72 4 882350323 +682 808 4 888517762 +230 405 4 880485634 +566 288 3 881650627 +328 956 4 885046912 +503 452 1 879454950 +666 288 3 880138999 +716 82 5 879796138 +695 319 5 888806056 +196 411 4 881252090 +89 709 3 879459980 +482 748 4 887643365 +669 427 4 892550137 +717 290 3 884642738 +119 137 5 886176486 +222 393 4 878184028 +416 792 4 876699526 +601 840 2 876347599 +1 115 5 878541637 +773 169 5 888539232 +627 510 4 879529730 +236 427 5 890118153 +108 931 2 879880190 +606 183 5 880926162 +724 690 1 883757468 +554 151 4 876550100 +577 118 3 880471658 +627 582 3 879529916 +189 661 4 893265569 +13 881 2 881514876 +624 181 4 879792378 +64 228 4 889739438 +129 906 5 883245310 +749 879 4 878846449 +655 904 5 887473639 +758 7 5 881975243 +734 198 1 891022734 +551 95 5 892783791 +762 116 1 878719186 +42 523 5 881107375 +286 741 4 876521887 +436 1058 4 887770547 +514 48 4 875318114 +621 584 5 874965094 +525 762 4 881085917 +654 169 5 887864275 +184 396 3 889910326 +524 484 4 884634646 +749 144 5 878847835 +508 132 5 883767279 +487 1440 4 884045494 +387 27 1 886483252 +346 3 3 875265392 +308 134 5 887737686 +714 477 2 892777408 +234 770 4 892335920 +578 1264 3 890939815 +624 591 3 879792557 +655 124 3 887426087 +763 88 4 878918486 +425 2 2 878738757 +495 523 5 888632155 +757 226 3 888467038 +666 177 3 880567612 +716 491 4 879794934 +90 1005 2 891383912 +621 123 4 880738080 +340 584 3 884991369 +686 99 5 879546553 +506 294 4 877861414 +585 584 3 891286256 +523 477 3 883703495 +477 731 4 875941275 +288 632 4 886373591 +467 1 4 879532459 +545 379 4 879900010 +666 506 5 880139252 +561 790 1 885810538 +608 427 4 880403765 +135 327 4 879857575 +291 245 2 874805577 +455 96 4 879111616 +497 716 4 878759745 +453 254 2 877562293 +619 188 4 885954158 +409 733 4 881109264 +329 199 4 891656347 +158 283 5 880132421 +665 315 4 884697720 +487 566 4 883529540 +497 559 4 879362359 +339 568 3 891035061 +374 11 4 880395202 +708 864 3 892719172 +413 303 5 879968793 +270 251 5 876954752 +656 346 3 892318488 +59 622 4 888206015 +648 929 4 882211066 +747 173 3 888640862 +664 77 3 876526631 +234 357 4 892333573 +551 227 5 892783488 +435 219 5 884133691 +577 739 3 880474871 +734 174 4 891025247 +738 191 4 875350086 +466 327 3 890282956 +765 285 5 880346694 +452 66 4 885816884 +234 607 4 892079140 +134 302 2 891732150 +660 496 3 891199082 +643 423 4 891447370 +655 50 4 887425458 +660 825 2 891198549 +519 264 2 883248251 +7 68 4 891351547 +56 385 4 892676429 +543 742 3 874861699 +440 300 3 891546785 +426 178 4 879444080 +13 223 5 882139901 +667 527 4 891035121 +360 661 5 880356131 +450 73 3 887661438 +749 403 4 878849903 +551 1047 4 892785264 +541 527 3 883864638 +547 345 5 891282555 +405 564 1 885547606 +716 1 5 879793192 +233 504 5 877663128 +318 14 4 884471030 +211 205 5 879459952 +712 110 5 874956956 +727 155 3 883712068 +490 117 1 875427948 +558 20 5 879436396 +648 520 4 884367538 +561 515 3 885807215 +363 946 4 891498510 +275 434 3 880315396 +176 508 3 886047879 +664 484 5 878090705 +302 294 1 879436911 +249 31 4 879572688 +328 343 3 885044452 +682 15 4 888523581 +772 312 4 889028941 +495 101 5 888632943 +492 137 4 879969670 +378 220 2 880044944 +124 195 4 890399864 +286 340 4 879780905 +715 239 4 875963867 +582 455 1 882961481 +710 265 4 883705484 +70 289 3 884066399 +113 245 3 875325377 +749 11 5 878848189 +84 286 5 883449271 +416 619 4 886315423 +766 451 2 891310824 +669 310 4 892549126 +489 304 3 891362812 +640 210 5 876067710 +554 218 4 876550654 +756 117 4 874828826 +476 655 4 883365019 +756 178 5 874831383 +102 541 2 888801673 +704 178 5 891397535 +531 751 4 887048836 +487 31 5 883446685 +200 323 3 884125973 +758 177 5 881974823 +707 903 3 886285216 +665 185 4 884294200 +706 628 4 880997412 +720 906 4 891262697 +340 274 4 884991618 +588 645 5 890024488 +576 15 4 886985104 +435 7 4 884131597 +606 298 4 880920725 +525 289 3 881085256 +731 487 4 886184682 +198 27 2 884208595 +600 172 4 888451665 +63 287 3 875747829 +471 932 5 889828027 +621 385 5 874963797 +748 48 4 879455083 +506 208 4 874873423 +586 467 4 884066230 +586 790 3 884067151 +573 685 3 885843779 +393 51 4 887746456 +244 710 3 880607034 +378 393 3 880057018 +30 321 4 875988547 +669 118 2 892549838 +98 435 5 880498967 +293 686 3 888906869 +279 977 4 875297281 +268 652 4 875309232 +758 1142 5 880672766 +452 136 4 875266060 +699 1143 3 879146941 +429 642 4 882386600 +600 515 5 888451492 +725 264 1 876103811 +464 16 4 878355211 +764 223 3 876244625 +320 176 4 884749255 +290 31 4 880475032 +715 250 2 875962806 +561 607 5 885807173 +295 794 4 879518978 +385 529 4 879445949 +532 570 4 888629804 +655 547 4 887523176 +450 1028 4 882469250 +313 231 2 891028323 +435 561 2 884133064 +698 656 1 886367133 +659 498 3 891383733 +606 69 4 880926339 +197 554 4 891410170 +730 50 4 880310285 +379 395 2 880741868 +672 756 2 879789244 +26 250 3 891350826 +165 169 5 879525832 +301 71 4 882077007 +308 17 4 887739056 +49 239 2 888068912 +255 335 4 883215630 +352 176 5 884289693 +405 402 3 885546445 +524 583 4 884635326 +747 180 5 888639735 +536 707 5 882359678 +619 273 4 885953778 +62 1135 2 879376159 +586 153 2 884058956 +712 776 4 874730155 +610 705 3 888703710 +369 346 4 889427890 +654 109 3 887863635 +59 96 5 888205659 +72 972 4 880036911 +636 258 5 891448155 +699 413 3 884152706 +638 121 4 876694995 +145 62 2 885557699 +401 257 2 891032563 +187 134 3 879465079 +608 310 1 880402450 +733 1142 4 879535694 +179 1127 1 892151270 +500 59 4 883873528 +622 949 3 882672941 +154 258 3 879138235 +146 272 5 891457538 +435 568 2 884131868 +707 12 3 886286004 +514 172 4 875462726 +717 117 4 884642339 +176 319 3 886046979 +744 508 5 881171907 +661 196 3 888300680 +721 358 1 877137214 +6 89 4 883600842 +676 482 4 892686702 +399 470 4 882344832 +487 2 3 883531122 +699 285 4 879148050 +716 293 4 879793258 +216 22 5 880234346 +385 12 3 879441425 +767 478 4 891463095 +664 152 3 878091463 +279 778 4 891209332 +733 288 2 879535694 +137 411 5 881433490 +227 13 5 879035205 +758 248 4 880672747 +665 538 4 884290143 +774 1091 1 888558041 +460 1142 4 882911203 +462 237 5 886365387 +275 542 3 880313680 +750 270 4 879445877 +389 649 4 880165344 +457 148 4 882395360 +699 991 3 879382830 +586 676 3 884066112 +64 127 5 879366214 +507 313 5 889964121 +541 102 4 883874778 +164 307 5 889401284 +771 690 4 880659235 +536 740 4 882318630 +724 909 1 883758208 +561 746 3 885809025 +640 302 5 888025971 +31 271 4 881547854 +749 622 3 878850675 +394 797 3 881058330 +397 751 3 885349348 +671 925 3 883949781 +707 715 3 886286954 +452 197 5 885816768 +541 500 4 883874682 +774 1419 1 888557409 +683 358 2 893283948 +521 393 3 884478667 +373 259 5 877098041 +751 250 3 889132397 +642 1036 4 885606234 +711 763 1 876185767 +713 1127 3 888882225 +760 65 2 875667131 +763 200 4 878915015 +722 122 3 891281655 +751 472 2 889299043 +572 121 2 879449610 +643 163 4 891448839 +693 196 2 875482548 +488 414 2 891293863 +325 1203 5 891478159 +463 310 3 889936490 +540 258 4 882156584 +429 466 2 882384847 +660 265 2 891199241 +482 50 4 887644063 +145 31 5 875271896 +60 1060 4 883326995 +454 134 3 881959991 +504 219 3 887911314 +761 278 4 876190370 +456 23 4 881373019 +406 134 5 879445430 +556 481 5 882136441 +450 112 2 882468307 +38 400 1 892434036 +711 778 4 884485635 +721 328 5 877136303 +757 771 2 888467160 +655 1466 3 890497592 +746 128 3 885075211 +405 566 1 885547953 +279 671 2 875296238 +655 694 3 887428772 +765 237 3 880346797 +717 235 4 884642762 +763 1 4 878915559 +638 186 5 876695859 +411 210 5 892845605 +518 9 3 876822811 +687 749 4 884651746 +276 218 4 874792663 +533 823 4 879192901 +698 255 3 886366213 +705 554 2 883428201 +498 79 3 881959104 +59 369 2 888203959 +466 405 3 890284903 +693 423 3 875482136 +640 1244 3 886474849 +514 1160 4 886189748 +718 284 4 883349191 +682 41 3 888522073 +488 207 3 891294942 +548 237 4 891415540 +660 139 2 891202060 +574 900 4 891278860 +21 50 3 874951131 +751 418 5 889135211 +758 269 4 880672230 +747 531 4 888732609 +299 55 2 877881061 +693 673 4 875483050 +712 732 5 874730370 +694 641 4 875726618 +664 603 5 876526518 +761 289 2 876189871 +537 59 3 886031178 +586 76 5 884059196 +453 22 5 877553870 +18 702 3 880131407 +755 294 3 882569574 +719 392 4 879360846 +321 531 4 879440294 +79 676 3 891271957 +535 60 5 879618613 +611 313 3 891636125 +682 1440 2 888517538 +591 451 3 891040366 +684 181 4 875810999 +633 117 3 875326491 +345 191 5 884902317 +87 496 5 879877709 +707 712 3 886288624 +40 242 4 889041330 +648 230 5 884796822 +777 286 2 875979137 +537 1070 3 886031678 +655 288 3 887472814 +757 678 2 888443531 +495 188 4 888632250 +747 279 4 888732571 +738 95 4 875350122 +508 70 4 883776748 +567 511 2 882425701 +219 664 5 889403761 +26 249 2 891377609 +212 127 2 879303571 +527 855 2 879455814 +10 602 5 877889057 +435 983 2 884134830 +429 50 5 882384553 +715 399 2 875963418 +305 191 3 886322966 +259 181 4 874809057 +276 28 4 874787441 +561 644 3 885807743 +601 87 4 876349503 +402 19 4 876267096 +655 1639 4 887650483 +630 272 5 885756030 +398 589 3 875657734 +116 303 3 890633075 +666 496 4 880139149 +405 1229 1 885546835 +311 39 4 884364999 +680 1089 2 877075214 +271 504 3 885849025 +440 736 5 891578036 +560 12 5 879975661 +573 283 4 885843817 +474 288 3 887914615 +712 420 3 874957140 +654 431 4 887864414 +713 1176 3 888882224 +269 59 4 891447141 +653 578 1 880153009 +622 433 4 882669886 +542 864 3 886533112 +745 519 5 880123751 +660 386 2 891200904 +327 131 4 887818783 +389 499 4 880087873 +660 56 1 891265453 +313 157 3 891017372 +391 482 4 877399380 +666 430 4 880139614 +503 14 3 879438161 +332 222 4 887916529 +551 735 5 892783110 +13 160 4 882140070 +532 946 5 888635366 +757 2 3 888466490 +445 208 2 890987712 +682 304 1 888523810 +452 22 5 885544110 +554 294 3 876231229 +759 1016 5 881476922 +514 10 4 875462867 +730 748 4 880310082 +473 303 4 878156932 +655 831 2 887564549 +739 79 4 886958938 +215 692 3 891436277 +666 11 4 880314453 +518 10 3 876822744 +747 661 5 888639642 +222 51 3 881059816 +144 1010 3 888104834 +696 883 4 886404208 +642 624 3 885606608 +85 923 4 879455403 +605 121 1 879429706 +647 427 4 876534275 +551 68 2 892783972 +690 88 4 881177689 +543 1555 3 874863155 +456 46 3 881374613 +764 245 4 876244181 +650 232 3 891381634 +435 640 4 884132873 +776 422 2 892210688 +405 218 5 885548330 +389 94 2 880089115 +167 673 4 892738341 +605 118 3 879429729 +271 81 3 885849113 +435 424 1 884134536 +666 168 4 880314272 +620 416 4 889988196 +524 511 5 884634707 +543 1099 4 874863878 +731 393 5 886183978 +606 477 4 878143247 +465 1 4 883530054 +536 180 4 882359431 +303 1230 1 879485447 +704 486 4 891397764 +618 746 2 891308946 +666 924 2 880313582 +480 64 3 891208293 +374 156 2 880395896 +771 203 1 880659482 +669 347 3 891182948 +347 928 3 881653176 +545 541 4 879899548 +658 168 3 875148108 +537 638 3 886030682 +381 525 5 892696982 +625 588 4 891263057 +104 825 1 888466028 +551 182 5 892776824 +724 299 1 883758119 +641 434 4 879370259 +6 7 2 883599102 +437 412 3 880142147 +642 403 4 886454812 +551 186 5 892783142 +503 286 3 879438191 +602 148 4 888638517 +642 485 5 885602612 +145 859 3 882182763 +609 294 2 886895346 +622 67 1 882671463 +777 168 5 875980492 +709 164 3 879848120 +647 742 4 876534275 +554 21 1 876232212 +629 191 3 880116887 +399 1170 3 882510250 +405 1065 1 885546069 +545 151 4 880348074 +728 25 4 879443155 +469 520 4 879523947 +760 183 2 875667366 +429 190 5 882387773 +661 506 3 886841865 +168 252 1 884288304 +653 177 3 880150702 +80 237 4 887401732 +575 98 4 878146853 +554 132 4 876550453 +675 1255 1 889490151 +111 305 2 891680243 +92 432 3 876175031 +576 323 3 886960604 +749 121 3 878847645 +533 109 2 879192986 +555 748 4 879962096 +450 503 4 882371311 +455 1160 4 879108892 +22 161 4 878887925 +600 399 4 888452491 +94 553 3 891722511 +733 847 3 879535471 +758 288 4 882056007 +627 196 5 879530172 +102 13 3 892991118 +756 404 3 874830908 +780 70 2 891363969 +587 937 4 892871031 +717 291 4 884642479 +409 266 1 881105677 +773 72 3 888539531 +532 402 5 893118712 +416 401 2 886318651 +676 682 1 892685716 +757 260 3 888443511 +766 487 3 891309090 +712 4 4 874730179 +444 748 1 890247172 +694 448 3 875729489 +70 507 4 884066886 +538 79 4 877107050 +455 148 3 879110346 +572 13 4 879449763 +716 507 5 879796072 +716 1047 3 879794200 +606 248 5 887058736 +745 177 3 880123572 +560 847 4 879976449 +332 313 5 887916125 +699 109 3 879147109 +429 7 2 882385569 +133 750 4 890588720 +222 1440 3 878184697 +1 11 2 875072262 +727 343 3 883708149 +646 313 5 888528457 +361 727 3 879440740 +492 134 3 879969644 +299 60 5 878192680 +437 705 4 880141335 +470 471 5 879178593 +704 1296 4 891397015 +145 728 2 875272988 +774 195 3 888557236 +90 57 5 891385389 +510 313 5 887667439 +250 191 5 878091869 +571 964 4 883355063 +650 99 4 891372365 +699 277 3 878882319 +535 87 5 879618965 +719 742 4 879358893 +709 92 4 879848397 +658 1079 2 875145572 +604 56 2 883668097 +175 186 4 877107790 +391 603 5 877398991 +716 47 3 879795606 +276 943 4 883822485 +363 283 2 891495987 +751 487 5 889134705 +521 763 4 884476152 +437 219 3 880143663 +542 775 2 886533253 +340 66 5 884990798 +450 716 4 882469166 +586 427 3 884066016 +504 506 4 887910552 +761 147 4 876190370 +286 372 4 877532683 +709 229 2 879848645 +554 111 4 876550526 +693 572 2 875484148 +727 541 4 883712751 +664 52 5 876525736 +660 211 4 891199104 +334 169 4 891546348 +468 377 2 875288503 +726 819 3 889832688 +648 323 5 882212526 +429 603 4 882384847 +652 301 1 882566948 +592 261 1 882607744 +537 10 4 886030109 +728 322 4 879442761 +721 1392 3 877137598 +7 510 5 891352134 +554 216 3 876369162 +580 252 5 884125829 +1 245 2 875071713 +7 594 3 891354114 +677 307 5 885191227 +472 1035 4 875981759 +738 226 3 875351299 +109 732 3 880572588 +379 372 4 880961807 +406 727 3 882480749 +184 1008 4 889907896 +330 559 3 876547500 +542 15 2 886533483 +592 243 1 882607780 +537 739 1 886032154 +233 216 5 877665357 +357 411 3 878952041 +615 319 4 879447585 +669 114 5 892550196 +629 333 4 880116722 +766 1444 2 891310508 +655 216 4 887428086 +653 202 3 880151794 +645 640 4 892055285 +664 770 4 876526659 +347 15 2 881652535 +606 427 4 880924106 +664 425 3 876524937 +744 963 5 881170576 +68 1089 1 876974484 +605 288 5 879365158 +94 736 5 891721077 +7 640 3 891353614 +336 546 3 877760310 +621 122 2 880738838 +561 131 4 885808929 +389 420 3 880088229 +130 932 3 876251389 +761 294 3 876189664 +42 227 4 881109060 +72 233 4 880037242 +158 161 2 880134477 +128 274 4 879969084 +207 367 3 875508873 +295 385 4 879518864 +151 487 5 879524669 +314 401 3 877890769 +437 435 3 881001945 +660 663 2 891199833 +452 202 3 885547846 +450 82 3 887834953 +233 187 4 876021170 +293 527 4 888906598 +727 890 1 883708478 +279 170 3 875312643 +30 313 5 885941156 +116 289 4 876452094 +201 200 5 884112537 +81 284 3 876533894 +280 742 4 891701249 +642 120 3 886206256 +666 331 4 880138999 +505 154 1 889334555 +640 79 5 874778515 +497 164 4 879361872 +501 369 4 883348703 +537 123 2 886030109 +744 428 4 881170528 +645 188 4 892054906 +424 681 3 880859115 +561 91 4 885807455 +13 439 1 882397040 +110 808 2 886988250 +773 27 1 888540218 +7 387 3 892133670 +180 372 5 877127237 +407 235 4 875044531 +71 177 2 885016961 +294 323 3 877818729 +527 657 4 879455999 +629 81 3 880117689 +141 15 5 884584981 +714 871 3 892777903 +30 257 4 885941257 +650 444 2 891388341 +269 402 2 891448697 +765 15 2 880346491 +192 515 4 881367889 +474 945 4 887923923 +95 133 3 888954341 +774 739 2 888558187 +232 165 4 888550036 +399 340 2 882340517 +60 708 4 883326784 +152 278 4 880149166 +279 288 3 875249102 +761 924 4 876190723 +585 340 2 891281651 +387 474 5 886480163 +249 156 5 879572402 +655 474 3 888813306 +708 358 2 892719007 +711 1518 3 879993997 +614 458 4 879464287 +586 51 4 884066336 +378 762 3 880044879 +717 222 4 884642215 +613 1 4 891227410 +587 286 4 892870992 +779 284 3 875994401 +763 960 4 878915958 +655 24 3 887473831 +684 70 4 878761788 +409 1558 5 881107281 +495 155 3 888635455 +665 475 3 884290349 +474 478 4 887926804 +377 272 5 891295989 +319 346 3 889816026 +579 66 4 880952516 +752 748 4 891208392 +16 423 5 877721142 +460 847 3 882912205 +174 286 5 890168158 +766 53 4 891310281 +712 622 4 874730293 +220 269 5 881197597 +387 580 5 886483565 +603 449 4 891955972 +592 301 1 882607573 +727 826 2 883713738 +694 82 5 875728345 +406 96 5 879446529 +125 209 4 879455241 +360 187 4 880355527 +649 15 4 891440373 +407 72 4 876344772 +665 282 4 884291094 +677 126 1 889399265 +758 224 4 881975922 +472 122 3 875979153 +327 129 4 887744384 +276 202 4 874791871 +752 300 3 891208126 +676 50 5 892686083 +588 1 4 890015684 +301 1052 1 882075386 +587 878 2 892871641 +537 971 4 886031375 +576 137 3 886985695 +588 393 4 890026939 +737 180 4 884314644 +654 71 3 887864610 +405 816 1 885548435 +774 920 2 888559297 +764 118 3 876243046 +562 231 1 879196446 +37 172 4 880930072 +766 229 3 891310210 +661 117 4 886841250 +760 181 3 875666268 +115 229 3 881171693 +6 192 4 883600914 +399 132 3 882343327 +453 959 4 877561676 +428 268 4 885943818 +756 398 3 874831050 +776 769 3 892920446 +456 419 4 881374124 +303 813 4 879467985 +715 193 5 875965127 +223 309 4 891548750 +707 238 4 886286764 +764 140 3 876245940 +172 124 4 875537151 +560 496 3 879975752 +406 289 3 879445250 +711 230 3 879995053 +303 1135 2 879485589 +734 662 3 891022704 +682 556 2 888517840 +477 90 4 875941275 +303 670 2 879544062 +187 209 4 879465370 +655 1650 4 892871225 +497 96 4 879310705 +450 126 5 882396051 +219 223 5 892039530 +580 100 3 884124872 +665 833 3 884291210 +676 1 5 892686188 +328 153 2 886037257 +385 347 3 885844578 +470 235 3 879178486 +747 132 4 888732640 +201 515 5 884111546 +524 482 5 884634938 +59 510 4 888204502 +619 302 4 885953600 +533 596 2 880402996 +224 157 4 888103971 +643 1 5 891445287 +454 678 2 881958782 +326 515 5 879874897 +574 319 5 891279236 +327 31 2 887820531 +474 525 4 887925837 +372 5 4 876869445 +7 502 5 891352261 +722 7 4 891280842 +524 478 3 884637376 +95 405 3 879194159 +711 1285 3 879995238 +536 405 2 882318246 +711 588 4 879993173 +618 729 3 891308945 +745 285 1 880123905 +450 373 3 887834953 +665 191 3 884293475 +639 778 5 891239613 +727 809 4 883713082 +774 511 3 888556483 +615 523 5 879448735 +234 1170 1 892336077 +731 216 5 886184682 +778 94 2 891233603 +110 333 4 886987288 +763 367 3 878918871 +472 239 5 875982398 +627 318 5 879529701 +757 28 3 888467794 +406 368 2 880132115 +92 984 2 888469687 +671 591 3 883546333 +564 289 4 888718546 +343 26 3 876404689 +345 566 3 884992194 +624 123 3 879793223 +59 705 4 888205087 +49 182 3 888069416 +463 20 5 877385590 +707 492 2 886286818 +393 281 4 887745343 +299 820 3 889501620 +758 108 5 881978148 +679 64 4 884487052 +719 9 4 883354106 +416 252 4 876698115 +663 316 4 889491974 +435 125 3 884132483 +655 895 3 887472767 +58 169 4 884304936 +601 928 1 876348140 +417 290 4 879646661 +234 478 3 892079538 +272 204 4 879454939 +267 498 5 878971902 +559 55 4 891035111 +712 177 2 874730155 +92 743 2 890251826 +573 513 4 885844395 +385 318 2 879441572 +68 596 2 876974023 +761 1197 3 876190025 +73 187 5 888625934 +99 290 4 886518628 +382 134 3 875947149 +624 1120 4 879793269 +562 1 2 879194894 +409 945 3 881108971 +716 357 5 879795762 +655 289 3 887425070 +506 435 5 874873744 +407 656 4 875042865 +256 123 2 882150508 +616 873 3 891224767 +606 419 4 880924188 +683 1280 3 893284032 +116 902 2 890632896 +664 209 4 876525998 +743 224 5 881277931 +599 1277 4 880952496 +722 237 4 891280988 +110 393 3 886989363 +782 1216 2 891500150 +224 321 2 888082134 +655 521 3 887426900 +628 340 5 880777095 +664 180 4 876524641 +643 23 5 891447835 +665 31 3 884294880 +520 898 5 885168939 +468 246 5 875280352 +736 50 3 878708579 +758 619 4 881977205 +154 238 5 879139040 +586 318 3 884065986 +117 156 4 881011376 +314 717 3 877890769 +764 742 3 876243410 +517 761 5 892660727 +405 1228 1 885548137 +484 98 4 891195687 +588 731 2 890026705 +79 257 3 891271545 +758 58 4 881977169 +643 66 3 891448786 +463 121 3 877385797 +704 289 3 891396881 +102 856 2 892993927 +487 55 5 883446685 +738 63 3 875351905 +221 391 3 875247754 +312 657 5 891698485 +567 175 5 882425630 +625 202 3 891262633 +492 205 4 879969692 +286 4 5 877531899 +297 546 3 874954763 +786 276 1 882841875 +537 707 4 886031576 +416 412 2 892440119 +405 782 1 885546636 +195 60 3 888737240 +747 44 2 888639437 +477 237 4 875940451 +377 168 5 891298407 +711 741 4 886030774 +705 282 5 883427216 +618 68 3 891309608 +682 66 3 888521740 +198 186 5 884207733 +747 835 3 888640180 +704 154 3 891398702 +417 190 5 879647065 +754 284 3 879451775 +523 301 4 883700064 +328 778 3 885047822 +308 485 3 887737719 +430 674 4 877226405 +495 732 4 888634070 +715 82 4 875964025 +690 746 2 881177532 +764 820 3 876243953 +500 281 3 883865463 +716 661 3 879794870 +655 161 2 887429758 +588 578 5 890029212 +638 504 2 876695560 +180 747 4 877128156 +646 892 2 888529180 +399 673 3 882343789 +747 183 5 888732899 +663 258 3 889491560 +295 100 5 879518080 +244 144 1 880602264 +389 835 5 879991242 +97 83 1 884238817 +640 550 4 874778722 +213 458 4 878870679 +633 665 3 875325577 +682 87 5 888517235 +473 124 4 878157357 +680 9 4 876816106 +466 174 5 890284706 +395 472 3 883765965 +506 62 3 874874894 +601 123 1 876347148 +493 550 4 884132181 +506 69 5 874873327 +632 56 3 879458277 +758 1085 5 881975503 +18 957 3 880132188 +621 176 3 874963797 +608 699 5 880406507 +774 576 1 888557520 +275 1219 2 880313679 +457 216 5 882396765 +291 1067 4 874805892 +630 126 4 885667305 +758 56 5 881976031 +393 338 2 887742964 +92 186 4 875653960 +405 139 3 885549005 +773 64 4 888540507 +715 789 4 875963353 +291 636 4 874834799 +293 468 2 888906869 +395 215 5 883763768 +151 470 3 879528674 +517 335 3 875492066 +13 873 1 881515565 +286 884 5 884069544 +62 676 3 879372633 +548 185 5 891044356 +371 443 4 880435576 +312 194 4 891699207 +59 187 5 888204349 +76 223 2 882606623 +693 508 2 875482447 +92 1074 3 875907535 +747 292 4 888638293 +408 328 2 889679791 +325 210 2 891478796 +243 25 3 879987875 +474 116 5 887915366 +542 734 3 886533303 +551 356 4 892783829 +708 764 4 877325934 +465 143 4 883531380 +716 25 4 879793737 +233 50 3 876021213 +721 157 3 877140137 +4 327 5 892002352 +458 273 4 886394730 +472 43 4 875982560 +602 895 3 888637925 +553 513 4 879948806 +671 177 4 884035775 +121 276 3 891388453 +195 134 5 875771441 +92 789 5 875653242 +771 88 4 880659970 +642 99 2 885602446 +445 1008 1 891200320 +94 1225 3 891723262 +176 7 5 886048188 +311 238 4 884365357 +546 769 4 885141465 +650 91 4 891371061 +778 78 1 890803860 +267 742 3 878970621 +417 78 2 879649632 +459 748 4 879561754 +13 485 1 882140624 +327 792 4 887819021 +506 699 4 888848303 +709 82 4 879848645 +758 50 4 884999132 +704 191 3 891397262 +754 9 4 879451626 +435 187 4 884131489 +627 808 2 879531557 +250 943 4 878091870 +734 143 5 891022958 +256 218 3 882164727 +682 572 4 888521116 +723 174 4 880498996 +715 926 4 875962201 +450 280 4 882397940 +579 258 5 880951444 +642 815 4 892241051 +499 97 4 885599227 +671 356 3 883949781 +399 693 3 882510165 +5 409 2 878844651 +592 1023 1 882608873 +747 443 5 888640136 +181 116 1 878962550 +554 732 4 876550833 +401 151 1 891032584 +249 7 5 879572760 +721 357 5 877140221 +786 405 4 882842311 +328 357 4 885046244 +409 1099 4 881168712 +405 208 5 885547124 +588 485 5 890015835 +405 434 3 885546201 +639 648 3 891239491 +698 705 4 886366611 +566 582 5 881650186 +447 123 3 878854459 +624 111 3 879792671 +178 1 4 882823805 +716 502 3 879795867 +152 411 4 880149350 +95 389 4 880572388 +305 709 5 886324221 +592 265 4 882956039 +748 71 3 879454546 +401 748 3 891031784 +503 166 5 880472188 +698 190 5 886366515 +158 121 4 880132701 +543 919 2 874863549 +682 323 2 888516865 +221 42 5 875245813 +540 1226 4 882157732 +327 48 4 887745662 +347 188 5 881654480 +773 959 4 888539608 +201 1136 1 884140637 +711 509 4 879993674 +626 748 2 878771281 +15 328 3 879455192 +734 210 3 891022937 +587 304 4 892871141 +52 302 4 882922065 +92 771 1 875907180 +584 165 1 885778780 +747 654 5 888639939 +766 357 4 891309558 +640 1054 1 886474010 +286 1074 4 889652912 +1 35 1 878542420 +267 82 4 878973675 +173 319 4 877556926 +596 13 2 883539402 +663 125 3 889492720 +453 80 2 888205783 +699 24 3 879147239 +472 64 5 875981829 +612 604 4 875325256 +749 64 4 878847171 +333 100 4 891045666 +554 121 4 876232267 +664 222 3 876524641 +11 527 4 891904335 +650 164 4 891369798 +654 265 5 887864330 +618 501 4 891308884 +687 678 4 884652482 +682 834 3 888522971 +466 908 4 890284651 +725 245 4 876103793 +493 647 4 884131287 +405 180 3 885546069 +534 978 4 877808175 +704 514 4 891397112 +592 845 4 882608573 +25 463 4 885852529 +717 302 5 884641599 +727 566 3 883711449 +559 233 3 891034688 +487 257 4 883442260 +681 539 4 885409810 +295 743 4 879518674 +655 1281 3 891585477 +686 1184 1 879547337 +456 188 4 881373573 +740 242 4 879523187 +643 168 5 891447157 +459 523 4 879564915 +497 475 4 878759705 +527 200 3 879455999 +436 83 5 887770115 +87 514 4 879876672 +671 554 4 884036411 +671 29 3 884036050 +784 269 5 891387155 +748 496 4 879454455 +532 795 2 874789538 +415 185 4 879439960 +758 865 4 881975005 +768 282 4 880135987 +521 97 3 884478049 +505 22 5 889333274 +582 763 2 882961804 +264 137 3 886122892 +409 647 5 881107817 +354 606 5 891217633 +541 553 4 883865289 +326 187 1 879875243 +642 1531 3 886569226 +184 692 4 889909672 +222 418 2 878182959 +334 569 2 891548920 +327 108 3 887819614 +291 550 4 874835218 +405 80 1 885547557 +409 528 4 881107281 +677 1 4 889399229 +588 121 5 890026154 +504 409 4 889550757 +719 7 2 877311269 +435 218 3 884133194 +664 203 4 876526685 +709 4 3 879848551 +627 568 2 879531301 +347 1047 1 881653224 +727 562 2 883713548 +276 790 3 877935306 +721 699 3 877147080 +243 125 3 879988298 +757 195 4 888445802 +682 328 3 888518363 +720 306 4 891262635 +650 72 2 891386755 +239 242 5 889178512 +447 144 5 878856078 +389 205 4 880165939 +653 82 4 880150393 +711 694 5 879993318 +495 204 4 888632155 +533 866 2 887032297 +676 508 1 892686134 +771 83 5 880659369 +724 300 3 883757468 +328 194 3 885046976 +344 751 4 886381635 +331 175 4 877196235 +522 510 5 876961190 +711 432 4 879992870 +770 477 4 875972259 +393 644 3 889555074 +257 121 3 882050360 +92 783 3 875907574 +682 181 5 888518639 +495 176 5 888632496 +715 298 4 875962076 +716 417 3 879797257 +408 294 5 889680045 +504 1210 3 887840637 +377 173 5 891298589 +161 284 3 891172246 +777 153 1 875980541 +42 467 3 881108425 +724 1176 1 883757397 +561 631 3 885808000 +653 223 3 878866636 +313 402 3 891031747 +416 65 5 893212930 +495 226 4 888633011 +480 257 4 891208037 +345 742 4 884991191 +184 485 4 889908947 +710 50 4 882063766 +533 367 2 879191972 +176 881 3 886047531 +445 127 2 890987687 +704 496 5 891397712 +551 411 1 892784437 +626 330 3 878771447 +780 433 1 891363826 +707 378 3 886287628 +497 1240 5 879310070 +562 73 4 879195881 +561 48 4 885807547 +788 568 3 880869862 +514 174 5 875310992 +398 588 4 875659517 +615 187 5 879448598 +674 50 4 887762584 +642 392 4 886132237 +561 217 3 885810858 +722 412 2 891281679 +630 298 5 885666686 +472 186 5 888183325 +279 781 3 875314001 +230 435 4 880484444 +588 275 3 890024246 +655 221 3 891585242 +788 723 3 880870207 +708 271 1 892718796 +76 129 3 878101114 +640 347 3 886353742 +80 205 5 887401533 +222 386 2 881060205 +566 203 4 881650148 +437 523 3 881002191 +211 705 4 879459952 +291 262 4 874833603 +176 150 4 886047879 +115 279 3 881170725 +766 483 3 891309250 +173 303 5 877556864 +56 204 5 892676908 +655 1062 3 887650979 +417 109 2 879646369 +59 190 5 888205033 +532 842 4 888635407 +201 431 1 884112352 +766 82 3 891309558 +709 739 3 879849049 +543 169 4 875663267 +618 203 3 891308176 +152 143 5 882474378 +456 414 3 881374331 +650 188 3 891381610 +452 194 4 885816440 +758 153 5 881976377 +770 301 4 875971703 +671 1217 4 883547351 +209 127 5 883417589 +614 756 4 879465398 +738 969 4 892957860 +434 471 2 886724797 +608 499 4 880403484 +749 625 3 878848430 +472 780 4 875982922 +470 7 3 879178518 +627 183 5 879531196 +655 732 3 887428445 +776 672 3 892920381 +318 188 3 884497031 +650 229 2 891370031 +712 949 4 874730370 +498 754 2 881962988 +462 292 5 886365260 +707 1257 2 880061190 +788 23 3 880868277 +757 157 3 888467855 +698 1149 3 886367013 +328 572 3 885049658 +145 690 4 877342952 +751 735 4 889134332 +417 1091 3 879648435 +457 729 4 882547857 +758 287 5 881975182 +452 462 4 875264825 +756 122 1 874831227 +498 381 3 881961312 +702 259 3 885767604 +615 23 5 879448547 +694 1205 3 875727550 +468 95 4 875287826 +517 1047 2 892659923 +535 14 3 879618743 +655 604 4 888984325 +682 272 5 888523619 +632 204 4 879458277 +353 750 4 891402757 +680 98 4 876816224 +499 307 4 885597747 +586 405 5 884061807 +771 237 5 880659482 +416 133 2 876699903 +379 183 4 886317511 +583 357 5 879384575 +413 50 5 879969674 +586 800 3 884061189 +731 205 1 886187652 +655 1196 3 888984325 +332 452 4 888360508 +308 61 3 887739336 +532 72 3 888636538 +532 619 5 889235367 +387 528 4 886483906 +262 546 2 879791049 +97 169 5 884238887 +648 152 5 884368485 +622 550 4 882670929 +773 239 4 888539512 +766 77 2 891310313 +468 172 4 875293386 +567 188 5 882426055 +773 229 3 888540112 +234 412 2 892336322 +49 287 4 888068842 +149 328 2 883512689 +343 318 5 876406707 +435 393 2 884133610 +458 654 5 886397771 +403 515 4 879785867 +207 1331 3 877995673 +782 250 4 891499440 +91 22 5 891439208 +539 286 4 879787771 +746 184 4 885075267 +628 288 5 880777096 +503 423 5 880472321 +676 13 1 892686319 +479 604 3 879461084 +492 654 4 879969323 +290 49 3 880475542 +453 410 4 877552951 +478 40 1 889398198 +31 811 4 881548053 +13 205 2 881515193 +592 589 5 882955825 +254 172 5 886472051 +297 42 3 875238853 +679 73 4 884488036 +653 105 3 890181185 +650 403 3 891381709 +747 87 5 888640222 +264 23 5 886122577 +593 26 4 875660886 +268 200 4 875309459 +357 126 5 878951537 +720 345 2 891262762 +479 264 3 879459791 +145 329 4 888397542 +509 301 2 883591043 +250 418 5 878090199 +39 307 2 891400342 +682 1028 3 888523657 +747 467 4 888639222 +561 719 1 885810785 +234 226 2 892335673 +536 96 4 882359988 +474 89 5 887924425 +648 1176 1 884628278 +697 628 4 882622016 +682 806 3 888523658 +726 274 4 889831222 +739 100 5 886825383 +500 1385 4 883865290 +621 125 4 880739654 +660 515 2 891199391 +139 1233 5 879537844 +549 411 3 881672667 +715 447 3 875963452 +486 20 3 879875069 +749 521 4 878847765 +789 1012 4 880332169 +334 255 3 891544840 +625 190 3 892000576 +743 100 5 881277962 +671 510 3 884035892 +405 384 3 885547605 +717 286 3 884641644 +201 581 3 884140788 +727 1411 2 883713419 +710 197 4 882064200 +279 230 4 892865054 +786 177 4 882843646 +388 323 4 886442062 +465 154 2 883532119 +666 96 3 880568270 +708 690 4 892718919 +299 194 3 877881229 +393 111 3 887745293 +749 222 3 878847716 +186 477 4 891719775 +1 137 5 875071541 +715 83 4 875963792 +211 199 5 879459952 +706 333 1 880996945 +85 478 4 879454951 +234 605 3 892333798 +621 539 1 883799884 +409 1369 4 881106287 +782 1600 3 891500066 +545 563 3 879900011 +716 238 4 879797286 +406 158 2 880132115 +741 5 3 891455671 +707 1107 3 886288239 +757 248 4 888444209 +435 541 4 884134187 +579 514 3 880952165 +498 449 3 881961932 +320 572 3 884751316 +399 239 3 882344553 +642 395 5 885604187 +710 99 4 882064434 +646 310 3 888528483 +606 117 4 878143605 +109 679 3 880578093 +548 882 4 891043442 +514 31 4 886190665 +559 385 4 891035111 +409 303 4 881104727 +334 164 3 891548104 +539 239 3 879788572 +758 303 4 880672321 +643 233 4 891449249 +672 1061 4 879789566 +561 523 4 885809269 +393 405 4 887744626 +504 1050 4 887832433 +178 156 2 882826395 +307 99 4 879283449 +122 1119 3 879270769 +669 276 2 892550259 +772 898 3 889028941 +749 944 4 878849482 +786 633 4 882843237 +11 526 3 891904859 +682 520 4 888519725 +640 151 4 886474515 +500 50 3 883864992 +790 380 4 885157419 +715 159 3 875964330 +456 180 4 881373084 +790 1074 3 885158235 +528 109 4 886812980 +466 11 3 890284707 +618 404 5 891309192 +697 124 5 882622505 +504 399 4 887840882 +659 647 3 891384823 +311 967 3 884364764 +164 751 4 889401263 +435 83 4 884131434 +323 222 3 878739251 +787 310 5 888979007 +542 208 4 886532881 +539 640 2 879788101 +31 1020 3 881548030 +128 88 4 879969390 +581 1375 5 879641787 +693 684 3 875483435 +712 1091 3 874956543 +298 504 3 884127249 +630 288 4 885666102 +771 258 5 880659323 +420 750 4 891356790 +643 482 4 891447063 +495 95 3 888634315 +561 97 3 885809312 +244 9 5 880604179 +234 806 2 892334766 +747 1194 5 888639102 +207 56 4 875503973 +6 527 4 883600877 +747 211 5 888639014 +532 24 5 892867296 +128 433 4 879967225 +690 90 1 881179469 +23 694 4 884550049 +222 226 3 878185044 +352 98 5 884290428 +782 1023 3 891499611 +407 286 4 890687500 +766 90 1 891310313 +695 313 2 888805836 +527 671 5 879455873 +327 732 1 887819316 +537 262 5 886028446 +622 184 5 882592103 +417 809 3 880951251 +670 174 4 877975344 +786 230 4 882844295 +499 301 4 882995808 +650 452 2 891370155 +303 5 2 879484534 +606 507 4 880923689 +171 269 4 891034835 +655 1192 4 887650851 +188 153 5 875075062 +716 95 4 879794775 +770 875 4 875971612 +6 519 5 883601365 +782 322 4 891498381 +122 1168 4 879270902 +749 837 5 878848587 +751 1011 4 889132599 +694 491 3 875731050 +773 91 4 888539232 +398 205 5 875660535 +577 665 4 880475644 +546 447 3 885141360 +701 750 5 891446588 +639 371 1 891240495 +94 1058 4 891722609 +655 1211 4 887427681 +783 288 3 884326274 +6 491 4 883602174 +766 98 3 891309522 +654 117 4 887864350 +733 293 4 879535559 +455 95 4 879111057 +540 281 3 882157011 +406 499 5 884630973 +454 659 2 888267028 +314 546 4 877886788 +393 544 3 887745135 +659 313 5 891331825 +551 198 5 892778035 +450 292 5 882215922 +524 211 5 884635136 +455 307 4 892230486 +391 22 4 877398951 +773 639 4 888538931 +680 169 5 876816162 +145 135 5 885557731 +268 627 3 875310603 +92 58 4 875653836 +297 27 1 875239535 +660 890 1 891198996 +537 1267 3 886032123 +92 282 4 876769303 +749 159 4 878849956 +378 468 5 880055396 +286 1119 3 877534054 +90 1196 4 891383599 +655 202 2 887651114 +593 173 5 877728878 +508 96 2 883768886 +314 15 5 877886483 +748 8 4 879455126 +420 513 5 891356864 +474 179 5 887924424 +705 2 3 883428058 +682 465 3 888523054 +648 502 5 884881679 +741 31 3 891455516 +145 1009 2 875270764 +777 357 5 875980235 +332 118 5 887938330 +648 49 2 884881679 +580 455 4 884125492 +495 433 4 888634315 +603 62 2 891955972 +708 873 5 892718965 +500 8 4 883874621 +493 201 5 884131089 +5 386 2 875636230 +682 1048 3 888521564 +600 177 5 888451583 +768 278 2 883835210 +661 498 5 876017801 +755 875 1 882570023 +409 504 2 881106682 +313 385 4 891015296 +574 333 3 891279285 +783 334 3 884326461 +198 4 3 884209536 +476 738 3 883364812 +385 654 5 879442085 +146 245 5 891458080 +690 226 3 881179969 +785 195 4 879438984 +474 436 3 887926873 +484 275 3 891195973 +610 735 3 888703360 +548 581 4 891044596 +561 198 3 885808986 +645 70 4 892055325 +665 866 3 884290676 +256 1042 5 882164927 +621 24 4 880737433 +715 627 3 875964614 +541 168 4 883865555 +694 1203 4 875729489 +363 1014 1 891499760 +454 293 4 881959238 +467 919 2 879532535 +541 259 1 884046888 +484 24 1 881449826 +535 628 4 879618246 +523 663 5 883701962 +151 473 4 879524974 +697 222 4 882622016 +504 392 5 887908645 +642 125 4 885603586 +653 492 4 880149999 +442 11 4 883390284 +655 518 2 888813186 +345 204 4 884991925 +90 676 2 891384066 +622 214 4 882670228 +658 429 4 875147800 +757 50 4 888444056 +625 250 4 891273750 +716 414 4 879797152 +422 475 4 875129881 +472 173 5 875982641 +234 11 2 892079140 +551 150 3 892782807 +74 302 4 888333219 +535 558 5 879618385 +305 408 5 886323189 +53 151 4 879443011 +655 684 3 887473965 +634 985 4 877017790 +543 550 2 877547005 +343 9 5 876402738 +724 346 1 883757703 +727 203 5 883710236 +502 259 3 883702448 +265 111 2 875320371 +305 1074 2 886324330 +537 724 3 886031886 +328 433 2 885047670 +751 736 5 889134533 +778 7 4 890725886 +399 697 2 882345454 +542 789 3 886532909 +642 731 5 885605909 +747 500 4 888640222 +703 147 3 875243049 +707 778 3 886287160 +782 938 3 891498030 +661 69 4 876013492 +747 1660 2 888640731 +109 317 2 880573085 +374 68 1 880396622 +663 96 5 889493628 +751 480 4 889133129 +630 620 4 885667661 +601 107 4 876347113 +654 81 2 887864831 +116 272 3 886309505 +514 294 3 885180929 +184 428 4 889909551 +714 237 3 892776261 +776 234 5 892920290 +749 145 4 878849433 +372 436 5 876869445 +217 96 4 889069741 +616 347 4 891224677 +347 686 5 881654101 +133 316 4 890588928 +152 739 5 882475924 +653 480 4 880150239 +650 523 3 891382066 +467 475 4 879532460 +715 92 3 875963899 +711 65 4 879992968 +440 310 3 891546631 +313 519 5 891013436 +621 825 3 880738142 +653 523 4 878854284 +316 286 5 880853038 +417 1288 1 879646741 +81 288 3 876533229 +592 122 4 882608960 +671 54 3 884035173 +384 327 4 891273761 +789 127 5 880332039 +650 172 4 891369442 +264 789 4 886122644 +660 243 2 891197757 +763 286 4 878914901 +128 161 5 879968896 +770 508 5 875972322 +637 1051 2 882905388 +291 820 4 875087125 +94 32 5 891721851 +328 744 4 885046878 +731 507 3 886184771 +407 214 4 875042466 +67 412 1 875379540 +609 890 1 886895914 +508 191 5 883767383 +751 419 4 889134533 +600 449 4 888452564 +69 1016 3 882072956 +244 109 4 880604798 +703 257 5 875242990 +711 404 3 879993579 +17 7 4 885272487 +279 728 4 875314287 +303 241 4 879483301 +498 554 3 881962385 +749 550 4 878850212 +642 722 3 885606113 +417 574 2 879649428 +428 1024 4 885943651 +646 315 4 888528483 +305 89 3 886322719 +398 510 4 875658715 +788 480 3 880868473 +553 100 5 879948869 +727 801 2 883713194 +707 694 4 886286246 +399 291 3 882510126 +561 550 1 885810117 +379 414 5 880740415 +659 448 4 891385438 +668 210 5 881605849 +95 692 4 879198482 +152 423 5 882899511 +752 313 3 891207791 +21 800 1 874951727 +429 480 4 882386071 +18 737 3 880132055 +270 815 4 876954522 +400 690 3 885676365 +299 7 3 877877847 +760 723 2 875669011 +630 118 4 885666875 +397 853 4 885350045 +378 135 2 880046362 +655 800 2 887430197 +634 840 2 875729794 +222 585 3 881060062 +116 50 3 876452443 +454 55 2 888267617 +749 105 1 878849508 +234 1330 3 892078343 +592 1017 4 882608279 +3 319 2 889237026 +595 9 4 886922069 +25 183 4 885852008 +720 315 4 891262608 +445 752 1 891199167 +488 493 3 891294297 +774 527 1 888556698 +622 294 3 882589830 +87 472 4 879875996 +254 126 3 887347350 +23 526 3 874787116 +574 347 3 891278860 +711 1117 4 883589726 +165 318 5 879525961 +660 195 4 891406212 +608 319 4 880402983 +548 642 4 891044538 +648 816 1 884883724 +62 81 4 879375323 +567 479 5 882425997 +201 685 3 884112352 +13 50 5 882140001 +684 401 3 878762302 +451 329 4 879012721 +258 286 5 885700778 +794 242 5 891034156 +758 192 4 882053053 +420 14 5 891356927 +561 380 2 885809524 +280 226 3 891701998 +433 323 1 880585530 +181 875 3 878961623 +416 592 3 892441347 +750 294 4 879445961 +528 77 3 886101428 +648 66 5 882213535 +363 38 3 891498407 +629 22 5 880116818 +22 688 1 878886307 +149 268 4 883512715 +437 692 4 880143115 +507 269 2 889964121 +442 234 4 883389983 +733 1173 2 879535814 +241 300 4 887249685 +505 307 4 889332705 +593 50 4 875660009 +784 307 4 891387623 +504 291 4 887832043 +450 422 3 882467991 +574 332 3 891279410 +695 260 4 888806150 +276 225 3 874786854 +58 1063 1 884304728 +664 286 4 876523092 +497 603 3 879361802 +543 118 3 874862036 +776 485 2 891628656 +635 255 4 878879213 +448 345 5 891887440 +774 89 2 888557198 +297 111 3 874955085 +69 302 4 882027109 +439 301 3 882892424 +711 215 3 879994555 +749 238 3 878847863 +721 393 5 877138200 +43 121 4 883955907 +663 762 4 889492473 +279 1480 3 875314370 +407 1090 2 876348799 +329 651 4 891656639 +592 657 4 882956011 +303 1509 1 879544435 +627 797 4 879531504 +593 357 5 875661486 +664 504 4 876526518 +530 487 4 883784557 +109 367 3 880578121 +474 1134 3 887915306 +758 95 3 881977057 +747 496 5 888640136 +693 419 2 875484501 +393 472 3 887745199 +22 712 4 878887186 +389 731 3 880089152 +498 693 3 881957625 +497 849 2 879310913 +727 312 3 883708435 +664 427 4 876524053 +71 744 4 877319294 +145 394 1 888398833 +758 197 3 881975687 +711 744 4 876185896 +499 520 3 885599572 +537 99 2 886031375 +402 204 5 876267206 +559 194 3 891035781 +90 1039 5 891383599 +666 662 3 880568094 +463 1067 2 877385531 +749 86 4 878848369 +607 511 5 883879556 +707 1007 4 880060180 +669 324 3 891517159 +695 1024 5 888805913 +342 844 3 874984789 +542 1061 2 886533275 +650 216 4 891381546 +174 386 1 886515130 +145 731 3 875272833 +474 475 4 887915479 +497 423 3 879363586 +68 763 1 876973917 +767 207 5 891462759 +698 194 4 886366454 +627 562 2 879531504 +323 294 3 878738827 +601 427 4 876348736 +652 395 3 882567383 +499 484 4 885599013 +611 269 4 891636072 +567 1451 3 882426952 +738 405 2 875349968 +420 86 5 891357021 +49 320 5 888067334 +136 15 4 882693723 +13 406 1 882397011 +720 1062 5 891262812 +533 230 4 879191563 +401 127 1 891032170 +613 509 4 891227236 +565 83 5 891037628 +768 340 2 879523820 +697 268 5 882621548 +456 1059 4 881372052 +239 42 5 889180578 +488 164 3 891293911 +521 96 4 884477853 +395 252 3 883765897 +445 591 2 891200020 +748 174 5 879454405 +570 305 5 881262256 +442 746 3 883388354 +758 81 5 881975815 +463 93 4 877385457 +629 199 5 880117772 +676 300 4 892685403 +551 708 1 892783830 +503 732 3 880383467 +239 482 3 889180978 +166 313 5 886397478 +372 875 4 876869183 +13 473 4 882398724 +536 566 5 882360264 +500 202 4 883874239 +253 1 5 891628467 +405 64 5 885544739 +624 270 3 891961120 +453 181 5 877552612 +794 887 4 891034284 +437 82 3 880140192 +159 829 4 880557741 +452 135 3 875560790 +280 471 3 891700553 +95 1047 3 879193881 +413 258 4 879968794 +620 928 5 889987825 +729 333 4 893286638 +297 90 4 875239942 +655 417 2 888771346 +380 582 4 885478583 +690 716 1 881179469 +551 204 4 892777673 +711 1118 4 879994633 +758 427 4 881974742 +56 22 5 892676376 +532 77 5 892519935 +532 676 5 892521554 +62 71 4 879374661 +305 528 4 886323378 +608 333 4 880402983 +569 19 5 879794127 +747 316 4 888638552 +439 100 3 882892705 +538 181 3 877107700 +780 662 5 891363756 +456 864 4 881371660 +147 301 5 885594204 +13 348 2 886952246 +379 163 4 880740495 +756 642 2 874829924 +738 357 4 875353869 +758 155 1 882054226 +501 591 4 883348138 +157 118 2 886890439 +682 252 3 888518773 +648 550 4 884882802 +676 257 5 892686220 +676 288 1 892685437 +542 427 5 886532294 +615 237 4 879448843 +588 566 2 890023557 +181 1047 2 878962866 +630 100 3 885666592 +697 1 5 882622481 +724 245 2 883757874 +514 64 4 875462645 +343 159 2 876405893 +721 655 2 877140490 +344 562 2 886381985 +649 291 5 891440330 +697 818 4 882622228 +459 568 3 879564941 +514 425 5 875318291 +246 809 2 884923767 +327 186 2 887744064 +606 195 5 880926162 +578 355 1 888957758 +437 842 4 880143451 +521 732 3 884478135 +787 899 3 888979074 +764 143 5 876245331 +444 245 4 891979402 +451 305 3 879012647 +6 317 3 883602174 +778 1273 3 890726925 +354 737 4 891307206 +472 82 5 892791017 +735 744 3 876698714 +541 755 5 883874716 +461 242 3 885355735 +207 204 3 875506737 +704 131 5 891398726 +345 274 3 884991267 +781 483 5 879633942 +737 12 4 884314922 +225 606 5 879540649 +654 54 3 887864941 +524 1553 3 884635136 +533 297 4 893160944 +653 819 3 880149751 +234 1446 3 892335739 +758 172 4 881974880 +660 22 4 891199262 +533 134 4 879439379 +534 15 4 877807873 +548 1244 4 891043953 +542 418 4 886533562 +456 506 4 881374332 +655 190 3 887427338 +94 42 4 885870577 +731 95 3 886183978 +666 13 4 880313542 +445 181 2 891199945 +195 234 5 875771441 +771 28 5 880659392 +711 716 5 879995215 +687 340 4 884651894 +450 869 4 882470064 +786 471 4 882842311 +741 70 4 891456573 +85 231 2 882995615 +457 9 5 882393485 +458 23 4 886397931 +707 211 3 886287051 +541 1084 4 883864569 +774 294 1 888555792 +591 357 5 891031228 +699 933 3 878882226 +788 754 4 880867477 +472 1034 3 875979359 +538 234 3 877108077 +627 810 3 879531459 +747 648 5 888734012 +339 124 4 891032885 +42 294 4 881105296 +402 13 3 876266701 +416 1020 5 893212483 +705 241 4 883428128 +779 257 4 875993201 +796 1074 1 893047691 +462 100 4 886365387 +774 229 2 888557329 +644 261 4 889076502 +690 663 4 881177376 +311 54 4 884366439 +595 109 2 886921365 +59 277 4 888203234 +543 720 2 877546306 +597 250 4 875340939 +543 656 4 875665787 +10 582 4 877892276 +767 98 5 891462560 +452 181 4 886151027 +727 204 3 883710395 +437 77 4 880143040 +407 228 4 875046799 +470 257 4 879178568 +727 195 4 883710375 +452 124 5 885816768 +773 559 2 888540314 +632 275 3 879457582 +256 471 5 882150644 +210 105 3 891036331 +648 559 2 884883578 +761 214 1 876190510 +484 136 5 891194766 +721 70 3 877145403 +602 257 4 888638618 +416 873 5 893213645 +414 343 2 884999193 +291 200 4 874867740 +406 561 3 879792974 +13 897 1 886952422 +755 689 3 882570077 +648 519 4 884628482 +60 615 5 883326215 +693 488 4 875484539 +756 1119 4 874828349 +655 345 3 887473803 +533 176 1 879191332 +85 845 3 879828456 +774 403 2 888556814 +763 238 4 878915559 +795 172 3 880570209 +130 808 5 878537631 +237 656 4 879376730 +794 118 2 891035413 +642 845 5 891318088 +619 174 4 885953992 +660 215 3 891199082 +417 447 3 879649064 +555 150 4 879963127 +622 679 3 882671483 +53 25 4 879442538 +788 185 4 880868316 +756 234 3 874829924 +313 47 3 891015268 +569 286 5 879792991 +178 1197 4 882824055 +224 70 2 888103812 +592 259 2 882607573 +790 154 4 885156290 +224 715 1 888104487 +604 637 4 883668261 +679 132 4 884487374 +496 109 3 876064357 +332 79 5 888098088 +128 392 3 879967102 +157 276 4 886889876 +144 474 4 888105311 +694 174 5 875727061 +153 79 5 881371198 +393 7 4 887744419 +640 134 5 874777623 +795 117 4 880558122 +648 510 5 884796728 +130 236 5 876251160 +756 753 2 874832788 +667 137 3 891035206 +567 194 3 882425874 +622 86 4 882670587 +547 315 4 891282555 +587 886 2 892871171 +517 823 2 892659923 +759 332 4 881476516 +537 221 3 886029841 +754 619 4 879451517 +672 225 2 879789437 +619 183 5 885953992 +371 194 3 877486953 +588 421 5 890023830 +600 684 4 888451582 +417 223 5 879646986 +641 865 5 879370149 +758 889 3 889038958 +232 582 5 888549595 +694 131 5 875727715 +271 302 5 885844430 +450 476 4 882469306 +363 187 2 891494725 +545 373 3 879899523 +721 294 3 877137447 +780 491 4 891363651 +222 1045 3 881060412 +694 226 3 875729271 +793 276 3 875103971 +721 215 4 877141373 +709 636 3 879848645 +622 28 3 882592314 +648 231 2 884882987 +518 544 3 876823324 +771 242 4 880659235 +506 746 5 874875062 +638 227 2 876695259 +434 975 5 886724873 +592 763 5 882608531 +405 715 1 885546445 +758 324 5 880672230 +709 174 5 879848396 +532 295 5 884594761 +561 693 3 885808620 +708 50 5 877325186 +782 683 1 891498213 +577 151 4 880470604 +681 288 1 885409810 +727 401 2 883713521 +736 246 4 878708929 +417 1539 2 879649539 +121 197 4 891388286 +417 100 3 879646166 +660 177 2 891200014 +623 79 5 891035112 +782 249 2 891499399 +276 590 2 874977334 +574 270 3 891279121 +718 1165 3 883349598 +711 713 3 879991283 +409 404 2 881109019 +428 1313 4 892572362 +308 382 4 887739521 +664 132 4 878092569 +453 693 5 877561172 +741 651 4 891018507 +637 926 2 882904898 +727 201 4 883710717 +774 673 2 888556545 +201 64 3 884111436 +614 1 5 879464093 +660 898 4 891197561 +746 196 4 885075612 +758 826 3 882054854 +773 37 3 888540352 +293 427 4 888906288 +101 412 2 877136842 +76 270 3 879117602 +486 591 4 879874662 +521 163 3 884478483 +346 669 1 875265690 +697 751 5 882622481 +506 181 5 874874676 +533 13 3 879192475 +774 54 1 888556814 +781 100 5 879634175 +435 562 5 884133819 +690 94 4 881177836 +642 1509 2 885606270 +316 435 2 880854337 +474 792 4 887926573 +495 386 3 888636837 +15 111 4 879455914 +589 682 4 883352494 +158 471 4 880132513 +570 748 3 881262497 +423 924 4 891395602 +380 121 3 885479896 +621 472 3 880738462 +793 1067 4 875103875 +780 202 4 891363783 +721 300 5 877135806 +152 781 5 882476486 +642 1503 2 885602446 +276 1208 3 882659656 +7 4 5 891351772 +364 286 5 875931309 +665 597 3 884290853 +669 749 3 891517159 +731 462 5 886186568 +501 546 4 883348283 +318 4 2 884497516 +741 77 3 891455671 +249 409 4 879640452 +399 5 3 882345001 +711 949 4 879994719 +782 984 2 891498821 +795 367 3 883252202 +218 176 5 881288299 +645 474 5 892053398 +422 275 5 875130026 +542 451 3 886532971 +782 329 3 891498213 +194 89 3 879521328 +506 94 3 874876599 +796 401 3 893219427 +796 184 1 892761544 +521 99 3 885253937 +222 422 2 878183657 +13 832 4 882399156 +533 71 4 889450972 +599 255 5 880951479 +738 195 4 875349628 +747 844 4 888640136 +774 172 3 888557198 +487 356 4 884024462 +637 325 1 882899928 +417 294 4 879646463 +748 228 3 879454687 +432 300 4 889415763 +629 684 5 880117430 +761 546 5 876190468 +705 38 5 883428258 +790 157 2 885156193 +497 163 2 879363181 +749 293 4 878846783 +491 100 5 891186806 +761 148 5 876189829 +721 715 2 877147726 +447 209 4 878856148 +450 443 4 882377861 +403 235 5 879786165 +295 168 5 879517467 +119 410 1 890627339 +676 132 5 892686703 +374 1217 2 880938100 +781 474 5 879633976 +784 678 4 891387895 +655 385 3 887429669 +599 1014 4 880951885 +607 483 4 883879379 +665 143 4 884293475 +546 590 4 885141538 +494 98 4 879541158 +693 118 2 875483597 +747 705 5 888639939 +545 121 5 879899299 +735 333 4 876697647 +642 1014 5 886131547 +705 28 4 883427640 +364 302 4 875931309 +389 186 2 880087435 +321 86 4 879440294 +758 64 5 881974931 +672 25 5 879789056 +746 231 2 885075476 +507 678 5 889966088 +634 1284 3 875729794 +500 234 3 883875638 +698 230 3 886367337 +379 710 4 880961839 +15 934 4 879456507 +7 544 3 891353254 +318 712 4 884496368 +790 1063 5 885156478 +537 433 4 886031634 +595 475 5 886921166 +536 136 4 882359780 +716 131 5 879796311 +655 536 3 887650512 +539 238 3 879788045 +425 385 2 878738813 +749 1047 3 878849740 +345 323 3 884916551 +43 625 4 883956146 +437 709 5 881000931 +87 944 5 879876848 +434 477 5 886724940 +344 169 5 884814457 +246 69 3 884921202 +614 871 2 879465376 +504 628 4 887831678 +622 90 4 882671574 +679 8 2 884486856 +621 810 3 874964657 +493 323 4 884129979 +551 762 5 892784130 +102 431 3 888801407 +372 201 2 876869387 +774 644 4 888556777 +487 282 4 883442105 +642 367 5 885605866 +789 475 5 880332063 +407 427 4 876338966 +749 199 5 878847171 +393 794 4 889730117 +505 174 4 889333340 +13 37 1 882397011 +625 173 3 891953681 +524 238 4 884634755 +660 117 3 891197934 +537 290 2 886030254 +666 855 4 880568270 +749 254 2 881602674 +703 275 4 875242663 +18 221 5 880129816 +404 689 2 883790585 +506 1089 1 889979761 +399 121 3 882341403 +608 480 3 880405165 +606 816 2 880927358 +782 1538 3 891500109 +709 385 4 879848397 +543 1524 4 874866319 +406 218 3 879792863 +604 184 3 883668352 +643 468 4 891449900 +727 549 3 883712219 +653 127 5 878853780 +575 127 2 878148137 +43 539 3 883953716 +625 357 3 891262784 +416 318 5 893213549 +747 474 5 888639526 +766 521 4 891309261 +696 305 4 886403578 +777 100 1 875979380 +325 182 3 891478835 +747 152 3 888640222 +655 81 3 887427371 +560 277 3 879976731 +296 256 5 884196741 +551 1139 4 892785263 +129 304 3 883244707 +476 67 4 883365218 +373 389 3 877099352 +684 1283 3 875811708 +563 862 1 880507672 +474 356 5 887928793 +653 756 1 878854996 +6 489 5 883601011 +742 321 3 881005611 +698 513 2 886366558 +495 158 3 888637477 +551 1443 5 892784942 +533 514 3 879190670 +406 478 4 879445378 +696 344 5 886403672 +307 228 5 879538921 +312 23 4 891698613 +373 50 5 877098678 +758 607 5 881976032 +735 276 4 876698796 +167 99 4 892738385 +734 751 4 891021937 +592 522 5 882955662 +764 71 5 876429672 +660 186 3 891199781 +766 202 3 891310281 +181 1350 1 878962120 +85 531 4 879454112 +303 569 3 879484159 +60 445 5 883326273 +747 939 3 888639362 +87 410 4 879876565 +643 209 5 891446652 +548 283 3 891415572 +586 841 3 884063854 +450 832 2 882468307 +655 306 3 887424883 +308 122 4 887742165 +559 257 3 891035466 +456 1222 2 881375019 +716 1203 2 879795239 +724 680 1 883758119 +474 23 4 887925620 +542 186 4 886532909 +54 346 4 890608303 +25 604 4 885852008 +650 495 3 891372316 +423 245 4 891394952 +693 1311 1 875482939 +796 418 4 893218933 +592 234 5 882955863 +654 473 2 887863933 +751 88 4 889298660 +374 742 5 880393331 +506 161 4 885135881 +200 596 4 876042584 +707 293 4 880059810 +361 705 5 879441416 +301 420 3 882077285 +537 466 4 886031149 +495 181 5 888632180 +557 300 4 881095916 +654 660 5 887864532 +650 496 4 891369707 +664 149 3 876525315 +741 1074 2 891457395 +425 538 2 890346866 +508 511 4 883767246 +540 111 4 882157148 +557 198 5 881179513 +608 44 4 880406469 +451 359 2 879012721 +655 1069 1 887473535 +758 684 4 881977872 +774 1028 2 888558829 +206 1432 1 888180082 +562 181 3 879195125 +363 282 2 891495596 +535 196 4 879617894 +407 215 3 875045658 +554 819 3 876231688 +470 13 4 879178518 +23 713 4 874784337 +429 191 5 882385065 +192 125 3 881367849 +642 451 5 885605794 +342 212 5 875319992 +425 121 4 878738813 +758 24 4 881979891 +391 174 5 877399301 +606 48 4 880924483 +417 260 3 879649779 +742 117 2 881335528 +714 472 2 892777730 +379 636 3 880525502 +42 284 3 881105581 +655 708 3 887427307 +704 654 5 891397667 +171 310 4 891034835 +330 385 5 876546378 +721 881 3 877137359 +181 981 1 878962279 +535 482 4 879619107 +703 258 4 875242076 +20 274 4 879668248 +178 333 3 884836479 +686 651 5 879545413 +798 94 3 875914939 +417 413 3 879646327 +683 303 3 893283104 +216 735 5 880244758 +479 1444 1 879462121 +442 219 3 883390009 +405 675 1 885548275 +476 26 4 883364475 +592 925 3 882608915 +798 1 4 875295695 +172 463 4 875537502 +518 280 4 876824218 +645 28 4 892053310 +733 279 2 879535968 +222 742 5 877563597 +749 578 3 878850429 +609 1012 1 886896237 +367 800 4 876690049 +643 200 3 891448265 +525 1047 2 881086274 +796 229 3 893048471 +398 186 4 875733496 +660 208 4 891199201 +405 921 1 885549634 +535 9 5 879617779 +527 647 5 879455654 +616 322 4 891224840 +358 1266 4 891269944 +704 662 3 891397819 +786 404 4 882843500 +788 229 3 880870299 +788 51 4 880870018 +750 306 4 879445877 +664 175 4 876524699 +276 928 3 874836629 +346 97 4 874948929 +617 1073 3 883789105 +655 1368 5 888474285 +601 504 4 876350300 +279 28 2 875296461 +456 380 3 881375097 +196 153 5 881251820 +777 1 4 875979431 +614 841 2 879465398 +561 195 3 885808963 +328 133 5 885047018 +406 447 4 879792897 +749 172 5 878847239 +608 100 4 880403280 +143 294 3 888407708 +637 333 3 882900888 +230 371 4 880485330 +633 177 3 875325654 +682 1410 3 888517324 +707 730 3 886286742 +745 174 3 880123179 +536 713 4 882318741 +774 563 1 888557883 +536 498 5 882359906 +479 455 4 889125853 +94 4 4 891721168 +796 679 4 893048471 +276 185 4 874792663 +18 111 3 880131631 +394 386 3 881058897 +655 87 3 887476943 +610 95 2 888703316 +733 19 5 879535338 +350 132 5 882346929 +637 1 4 882902924 +542 122 3 886533253 +95 97 4 879198652 +758 689 1 881295176 +707 162 5 886285968 +715 475 4 875962049 +454 423 4 881959607 +177 216 4 880130653 +94 692 4 891722249 +798 998 3 875915317 +450 226 4 882474001 +326 194 4 879874825 +30 161 4 875060883 +222 402 4 878185044 +643 521 4 891448586 +10 701 4 877888812 +796 87 5 893218728 +764 321 1 876233034 +566 1437 2 881651434 +586 385 3 884058956 +758 752 3 887086705 +551 924 5 892783451 +708 21 1 877325316 +436 710 4 887769281 +757 743 2 888445172 +665 79 3 884293831 +110 366 3 886988341 +125 482 1 892836309 +731 194 3 886183681 +747 156 3 888639362 +645 433 4 892054906 +198 127 5 884204919 +288 1065 4 886373474 +181 1365 1 878963086 +402 237 4 876266948 +648 254 3 884367248 +405 42 1 885547313 +533 228 4 879191332 +683 316 4 893286208 +168 300 5 884287011 +671 1215 3 884036365 +234 279 3 892333980 +454 185 2 881960265 +458 514 5 886397504 +486 332 3 879874187 +29 326 2 882820869 +551 774 5 892783314 +640 1228 4 889235993 +645 963 4 892053241 +643 418 4 891447518 +671 559 4 884338399 +684 692 4 878576614 +625 154 3 891998289 +363 235 5 891497130 +48 357 5 879434653 +462 330 3 886365803 +716 392 2 879796895 +782 1390 3 891500028 +713 307 3 888882311 +543 1014 4 875655073 +184 7 3 889907738 +234 97 2 892334267 +655 324 3 890103072 +303 790 4 879485507 +314 433 3 877887642 +55 50 4 878176005 +747 1203 5 888639685 +682 259 3 888518424 +149 300 3 883512715 +724 1617 1 883757703 +791 289 4 879448087 +250 175 5 878090004 +760 216 2 875667366 +660 145 2 891202022 +788 235 3 880871328 +766 648 3 891309913 +160 237 3 876768609 +728 678 4 879442794 +655 249 3 887474630 +164 472 5 889402071 +588 724 2 890015648 +676 318 5 892686459 +802 135 4 875985347 +650 434 4 891382218 +650 627 2 891387520 +507 319 3 889964074 +629 258 4 880116722 +524 550 3 884636958 +733 7 3 879535603 +70 101 3 884150753 +665 319 4 884289897 +642 542 5 885606609 +308 285 5 887736622 +180 939 4 877355472 +642 143 5 885603018 +727 790 2 883711616 +468 42 4 875294549 +663 357 5 889493732 +342 276 3 874984531 +735 690 4 876697561 +593 631 3 886194296 +496 268 4 876063784 +195 582 4 883822804 +209 813 5 883417810 +563 781 4 880507582 +486 117 3 879874939 +630 276 1 885667108 +795 1036 2 883255578 +514 229 3 875463525 +25 98 5 885853415 +382 357 4 875947149 +49 432 5 888066979 +290 651 3 880474034 +758 391 3 881980386 +292 96 4 881103568 +709 96 5 879848397 +451 938 4 879012772 +93 121 3 888705053 +642 138 4 886570173 +551 448 4 892783242 +222 476 3 877563739 +608 448 5 880406593 +771 222 2 880659709 +503 432 5 880472102 +524 321 3 884321179 +148 8 4 877020297 +296 19 5 884196524 +758 163 5 881976089 +606 151 5 878148493 +389 671 5 880087516 +663 1324 3 889492473 +755 690 5 882569574 +798 988 3 875295469 +746 566 4 885075367 +560 318 4 879975406 +788 692 3 880869106 +647 255 4 876534131 +664 45 4 878090415 +733 121 3 879536723 +399 450 2 882350791 +343 197 4 876404836 +664 684 4 876526580 +435 331 5 884130671 +298 193 5 884182867 +714 289 3 892778092 +457 7 4 882393278 +504 357 4 887832705 +308 99 4 887738057 +787 361 3 888979075 +758 373 4 882055347 +275 470 3 880314772 +695 995 4 888806150 +696 315 5 886403578 +795 636 3 883253661 +223 820 4 891550371 +271 499 3 885848971 +785 209 3 879439043 +798 1119 3 875916421 +582 15 3 882961481 +506 676 1 874945513 +367 184 5 876689990 +236 133 5 890116059 +350 654 5 882345918 +279 948 3 891209078 +716 186 3 879795867 +292 631 5 881105778 +798 164 4 875303502 +623 227 4 891034528 +303 1052 2 879544365 +497 1177 1 879363111 +694 617 4 875728181 +679 69 4 884487688 +731 504 3 886183209 +622 94 2 882671694 +442 209 4 883388283 +450 939 4 882376803 +82 197 4 878769847 +800 742 4 887646477 +767 187 4 891462658 +664 480 5 878091393 +561 656 4 885807455 +499 12 5 885599040 +804 11 4 879442954 +411 230 3 891035362 +682 240 4 888521637 +22 384 3 878887413 +506 755 4 874876486 +751 1661 1 889299429 +650 1031 3 891369480 +595 1023 1 886921977 +76 70 4 875027981 +152 155 5 884018390 +424 50 3 880859519 +458 546 3 886394863 +538 210 3 877106665 +480 863 4 891208356 +705 373 3 883428237 +748 678 2 879454233 +294 181 5 877819532 +328 798 2 885048159 +13 758 1 882397084 +747 3 2 888733567 +688 326 5 884153606 +644 127 4 889076775 +731 153 3 886182555 +72 553 5 880036638 +125 269 1 879454002 +432 276 4 889415947 +675 650 5 889489971 +493 288 4 884129823 +2 237 4 888552017 +640 568 4 874778569 +435 100 3 884131711 +727 271 4 883708149 +705 568 5 883428058 +70 222 4 884064269 +354 865 3 891217109 +429 92 4 882385684 +501 685 3 883347774 +655 1099 3 887428965 +711 40 4 879994875 +253 192 1 891628884 +756 92 3 874828027 +84 466 4 883453148 +655 750 2 887472879 +668 311 4 881591023 +174 125 5 886514069 +693 650 3 875482364 +280 58 4 891700514 +798 274 5 875295772 +303 875 4 879466291 +548 3 1 891415967 +579 333 4 880951372 +727 765 2 883712780 +803 286 5 880054592 +92 47 4 875654732 +287 952 4 875334036 +682 687 2 888518871 +234 625 3 892336286 +189 61 3 893265826 +18 269 5 880129305 +665 181 4 884291936 +532 269 4 891288537 +487 258 5 883440613 +186 258 1 879720880 +796 1042 4 893194740 +802 294 4 875984637 +275 450 3 876198296 +697 689 4 882621714 +101 151 3 877136628 +395 50 5 883763009 +754 476 4 879451742 +345 220 3 884991457 +378 43 3 880056609 +416 159 1 886317412 +593 723 4 875671890 +648 172 5 884367538 +118 672 4 875385257 +119 354 5 890626231 +145 219 5 877343185 +201 1423 3 884140853 +180 785 4 877128388 +637 323 1 882899182 +721 989 3 877137527 +796 159 3 893194685 +6 257 2 883599478 +655 165 3 887650512 +654 276 1 887863866 +788 70 4 880869908 +593 761 2 875671951 +533 66 4 879439204 +670 232 3 877975448 +216 56 5 880233608 +536 480 5 882359370 +476 239 4 883364475 +336 26 5 877757877 +557 750 4 884357373 +405 231 3 885548094 +638 679 3 876695259 +467 10 4 879532496 +308 1515 4 887738346 +454 260 1 888000454 +551 739 4 892784710 +580 687 3 884124583 +194 488 3 879521475 +130 185 5 875217033 +437 30 4 880140855 +796 540 2 893048672 +633 405 4 875325654 +610 419 5 888703241 +501 24 3 883348519 +18 208 4 880131004 +675 347 4 889488431 +773 188 3 888540091 +92 974 2 886443626 +780 199 5 891363723 +757 4 5 888466461 +248 156 5 884534945 +505 31 4 889334067 +486 1302 3 879874515 +151 178 5 879524586 +537 678 1 886029181 +623 222 4 891034110 +472 2 5 892790676 +680 815 3 877075312 +475 902 5 891451402 +588 778 3 890027600 +551 72 5 892783972 +514 194 4 875463525 +582 411 1 882962652 +524 32 4 884634679 +628 333 5 880777096 +764 31 4 876246687 +536 493 4 882359333 +733 298 2 879535502 +278 515 5 891295330 +484 82 4 891195444 +780 98 1 891364027 +181 259 1 878961668 +712 842 3 874957160 +537 20 3 886029974 +233 511 5 876021120 +709 230 2 879848551 +294 324 4 877818729 +443 309 5 883504866 +122 1045 4 879270605 +780 467 3 891363904 +786 449 2 882844096 +83 31 5 880307751 +642 174 5 885842594 +381 742 4 892697677 +666 517 4 880139563 +740 322 3 879522839 +7 513 4 891351772 +719 778 3 883982002 +788 205 4 880868068 +643 205 5 891447222 +733 248 3 879535752 +387 919 5 886479575 +758 286 5 880672230 +360 321 3 880354094 +430 19 5 877225623 +405 728 4 885547690 +738 56 4 875350418 +301 249 3 882074801 +666 82 3 880314194 +592 312 2 882607780 +568 656 3 877907281 +519 313 5 883248134 +586 173 3 884059287 +727 747 2 883712519 +622 833 4 882590955 +629 467 5 880117565 +56 732 4 892677147 +615 855 4 879448088 +766 510 3 891310038 +759 300 5 875227686 +548 326 4 891043278 +296 297 4 884196665 +766 135 4 891309053 +796 527 3 892675654 +754 742 3 879451991 +327 44 3 887745840 +450 608 4 882373088 +796 154 3 892676155 +143 315 4 888407542 +374 228 5 880395973 +106 191 5 881451453 +608 28 4 880405484 +775 348 3 891032804 +495 472 5 888635144 +802 286 2 875984532 +655 257 3 887474020 +378 747 3 880055597 +689 7 5 876676334 +253 1039 4 891628199 +610 28 4 888703258 +244 1118 4 880608087 +804 546 3 879443884 +756 554 1 874829152 +638 403 3 876695059 +758 128 4 881977625 +751 652 4 889133951 +407 89 4 875043948 +804 31 4 879442792 +792 111 3 877910126 +537 1103 4 886031407 +425 669 3 878737908 +229 751 3 891632164 +735 813 4 876698570 +717 111 4 884642479 +694 178 4 875727099 +774 127 4 888557198 +504 725 3 887911973 +793 298 4 875103971 +642 1311 3 886569715 +405 29 4 885545639 +151 614 4 879528729 +592 678 2 882607690 +194 282 3 879539614 +251 471 3 886272319 +566 31 3 881650825 +637 338 4 882900888 +371 1 4 877487440 +730 109 4 880310390 +141 696 4 884585498 +385 283 2 879439984 +775 286 4 891032741 +618 70 3 891307495 +92 179 5 875653077 +562 161 3 879196445 +689 250 5 876676334 +663 1276 3 889492679 +295 79 4 879517600 +600 184 3 888451750 +751 85 3 889297767 +619 22 5 885953992 +593 660 5 875671372 +758 69 5 881976233 +684 742 4 875810830 +660 1411 2 891201294 +465 56 4 883531110 +398 498 5 875657734 +500 471 4 883865391 +454 956 2 888266955 +749 15 5 878846841 +54 117 5 880935384 +763 210 3 878915015 +546 53 5 885141502 +642 376 3 885606194 +34 990 5 888602808 +496 421 3 876066229 +487 25 1 883445130 +650 404 3 891369443 +645 4 4 892055347 +614 147 5 879464332 +752 271 5 891208452 +344 98 4 884901180 +526 288 4 885681910 +535 152 4 879618385 +290 1 5 880474327 +303 187 5 879466631 +714 685 4 892777903 +524 447 5 884636182 +636 9 3 891448185 +731 419 4 886183039 +604 127 4 883667946 +535 692 4 879618880 +85 232 3 882995966 +642 216 3 885603083 +735 628 3 876698755 +159 456 3 880557848 +513 323 5 885062636 +560 255 4 879976109 +650 1149 4 891383856 +709 2 4 879848511 +378 582 5 889665232 +299 154 4 878191943 +782 878 3 891498918 +634 315 5 889464384 +600 96 5 888451664 +389 197 5 879991485 +455 393 3 879112152 +592 191 5 882955735 +255 827 2 883216958 +715 87 4 875963024 +798 151 3 875554819 +43 581 3 883956468 +250 123 3 878089837 +675 874 4 889488679 +770 1 5 875972219 +497 552 3 879362155 +777 216 4 875980597 +774 28 3 888556698 +313 143 3 891014925 +437 698 2 880142426 +86 304 3 879570149 +724 304 4 883757703 +487 286 2 883439831 +763 11 4 878918333 +104 847 2 888465263 +727 539 2 883708523 +194 651 3 879520991 +535 1474 4 879618207 +786 86 4 882843006 +434 111 5 886724540 +735 25 4 876698684 +474 88 4 887926106 +741 280 3 891458403 +453 628 3 887942025 +406 284 1 879539987 +712 79 4 874729850 +334 172 3 891548954 +132 286 3 891278680 +671 231 3 884035993 +454 99 3 881960296 +744 628 2 881172357 +682 570 2 888517948 +601 143 3 876351073 +140 304 4 879013747 +777 690 4 875979137 +766 134 5 891308968 +746 546 3 885075434 +774 185 2 888557683 +758 634 5 881975922 +705 191 1 883518871 +151 971 5 879528607 +608 1009 4 880406032 +457 1210 4 882549905 +796 270 4 892611799 +712 660 4 874730234 +745 8 4 880123627 +758 1501 3 881978258 +537 322 1 886029153 +474 193 4 887925497 +738 208 4 875350418 +682 423 5 888519206 +442 576 2 883390703 +374 50 3 880394367 +241 895 2 887250085 +792 595 3 877910305 +747 494 5 888639015 +776 442 2 892920480 +445 330 2 891199274 +466 68 3 890285159 +800 127 4 887646980 +500 217 4 883876053 +718 820 2 883349642 +716 611 5 879795496 +223 339 4 891549212 +180 222 5 877127815 +557 12 5 881179653 +399 1210 2 882348690 +492 528 5 879969878 +593 161 5 875671464 +768 65 4 887305100 +654 283 5 887863471 +709 447 2 879848167 +663 1048 4 889492562 +675 258 3 889488679 +758 656 5 881976032 +605 100 5 879425432 +318 1050 4 884496738 +272 200 5 879455043 +35 327 3 875459017 +305 478 3 886323275 +738 172 4 875349895 +581 269 3 879641348 +630 975 4 885667108 +647 993 4 876534131 +682 167 2 888522101 +651 327 4 880126473 +73 82 2 888625754 +620 946 4 889988036 +406 196 2 879446588 +621 87 5 874965408 +697 283 5 882622146 +452 86 4 875274683 +666 603 4 880567943 +621 894 1 883800011 +629 523 3 880116963 +634 717 4 875729794 +763 375 2 878923513 +766 366 3 891310875 +201 972 3 884140522 +291 212 4 874868027 +463 751 4 889943769 +497 202 4 878760023 +161 316 5 891170275 +676 114 5 892686606 +793 121 3 875104193 +639 111 2 891239613 +551 1135 5 892785331 +527 673 4 879456587 +795 100 5 880555946 +643 99 4 891447485 +716 1050 4 879797303 +699 221 4 878882667 +268 405 2 875742822 +648 17 2 884882078 +396 125 3 884646191 +487 77 3 883530814 +659 649 3 891386307 +782 1658 2 891500230 +515 269 2 887658844 +318 514 2 884496524 +608 357 5 880404916 +405 1021 1 885549543 +774 871 1 888558876 +354 485 4 891217659 +327 95 3 887818596 +661 272 4 893281023 +638 510 3 876694704 +752 310 1 891207791 +663 50 5 889493502 +804 204 4 879441450 +533 125 5 891263021 +532 147 4 888634802 +181 744 2 878962720 +62 210 4 879374640 +749 736 3 878847988 +715 735 4 875964224 +158 188 4 880134332 +497 797 3 879362586 +641 268 4 879369827 +416 755 4 893214333 +188 180 5 875073329 +608 8 2 880405484 +655 632 3 887523224 +720 269 3 891262608 +618 1 4 891308063 +617 313 1 883788511 +193 161 3 889125912 +705 255 5 883427152 +502 243 3 883702945 +59 504 5 888205921 +624 1089 2 879793408 +342 496 4 875319334 +648 169 5 882212651 +484 294 4 878060860 +617 669 1 883789635 +548 245 4 891042624 +753 898 4 891400364 +508 357 5 883767246 +303 665 4 879485475 +727 54 3 883711045 +677 845 3 889399327 +754 819 3 879452116 +772 879 4 877533731 +454 961 1 888267279 +181 1252 1 878962168 +299 239 3 878192601 +276 387 3 874787526 +781 288 2 879633862 +355 1392 4 879485760 +429 63 2 882387505 +600 161 4 888451908 +429 1209 3 882387350 +354 270 5 891216082 +747 327 4 888638425 +559 508 3 891034209 +488 190 5 891376046 +92 1023 2 892655775 +320 825 4 884749550 +234 199 5 892079040 +708 313 5 892718687 +606 939 4 880927247 +796 164 3 893194548 +707 208 5 886285939 +492 482 3 879969720 +339 327 4 891032150 +617 480 4 883789179 +567 47 4 882426696 +193 755 4 889126919 +343 523 5 876404647 +727 294 4 883708087 +584 423 4 885778263 +804 82 5 879442001 +276 254 2 874796373 +76 1153 2 882607017 +685 325 3 879451401 +752 340 4 891208077 +114 168 3 881259927 +416 735 5 893213549 +688 336 2 884153728 +671 597 4 884036365 +523 430 4 883702125 +650 612 4 891369656 +406 115 4 879446108 +500 282 4 883875092 +541 91 5 883874683 +783 346 5 884326424 +429 340 5 882384870 +655 387 3 888984538 +299 512 4 889501995 +573 50 4 885843738 +397 181 4 885349955 +6 127 5 883599134 +779 471 4 875993165 +328 89 5 885046344 +798 719 1 875743196 +621 419 4 874965093 +457 161 4 882397829 +7 655 5 891351384 +98 152 3 880498968 +276 678 3 874786419 +647 257 2 876776321 +521 240 3 884476067 +487 652 5 883530374 +721 877 3 877137285 +331 268 5 877196820 +618 202 2 891307714 +552 1051 3 879222238 +391 458 4 877399864 +672 124 3 879787922 +684 1 4 875810928 +177 302 4 880130379 +796 193 3 892662964 +606 647 3 880924663 +578 343 2 888957735 +710 1039 4 882063736 +406 47 4 880131741 +764 527 4 876339982 +712 692 5 874729995 +503 268 5 884637610 +774 52 3 888556659 +659 195 4 891384152 +425 234 3 878738853 +463 301 5 889936512 +236 117 3 890116818 +96 144 4 884403250 +495 559 4 888635180 +545 29 3 880347984 +702 288 1 885767306 +624 905 4 891961250 +698 421 2 886367366 +706 100 1 880997211 +685 327 2 879451234 +620 98 4 889987560 +693 514 4 875484431 +743 297 5 881277931 +474 660 5 887926999 +645 488 4 892053241 +587 332 4 892871171 +790 174 4 885155572 +379 208 4 880525214 +658 117 4 875145879 +561 155 2 885810785 +204 268 3 892388935 +324 678 3 880575277 +724 310 5 883757170 +694 181 5 875730386 +524 50 4 884634615 +706 50 5 880997142 +642 463 3 885602232 +504 99 3 887837739 +474 566 5 887926632 +429 684 4 882385882 +44 197 4 878347420 +592 1199 5 882608358 +799 479 5 879254026 +95 707 3 880572009 +592 1073 5 882956276 +782 346 2 891497854 +650 96 4 891369479 +347 977 5 881653224 +585 10 3 891286256 +643 32 4 891447459 +691 50 4 875543191 +619 82 5 885954053 +595 358 2 886920714 +679 419 3 884487514 +804 1076 3 879446162 +534 405 3 877807935 +562 286 4 879194616 +592 328 1 882607476 +599 274 5 880952144 +85 173 3 879454045 +301 162 3 882078287 +534 546 4 877808120 +588 42 5 890024529 +707 631 4 886286844 +469 286 5 879450367 +90 1204 4 891384959 +430 137 3 877225433 +524 549 4 884636931 +327 709 4 887819411 +719 121 1 879372253 +588 184 4 890025951 +588 165 2 890015649 +796 431 4 892676231 +716 729 2 879795375 +505 71 4 889333937 +449 285 5 879958572 +546 751 3 885139871 +613 194 5 891227299 +745 527 3 880123486 +131 813 3 883681466 +115 282 4 881171009 +805 319 2 881696876 +773 92 4 888540041 +747 591 2 888640776 +506 42 3 874873247 +528 173 5 886101610 +776 168 5 891628656 +295 155 4 879518715 +543 70 4 874863155 +176 262 4 886047292 +721 527 5 877140046 +452 163 4 886151027 +544 343 2 884796062 +574 327 3 891279122 +592 1226 4 882608873 +392 244 3 891038247 +790 38 2 885157929 +690 281 3 881180005 +225 705 5 879540707 +339 238 5 891032827 +1 127 5 874965706 +409 300 3 881104697 +267 81 4 878972434 +383 193 4 891193072 +303 385 4 879467669 +608 305 3 880402633 +623 194 5 891035112 +625 403 3 891961882 +543 684 4 874864737 +621 1028 4 880737861 +805 715 4 881698828 +465 174 3 883531409 +250 933 3 878089467 +354 464 4 891217512 +724 880 3 883757834 +407 514 4 875042675 +670 480 5 877975017 +312 1192 3 891699491 +763 213 4 878917468 +171 286 3 891034801 +194 629 3 879552401 +767 495 4 891463095 +708 763 4 877326158 +751 778 3 889297178 +255 117 2 883216845 +358 1006 5 891269913 +350 23 5 882345823 +660 774 3 891200594 +56 596 4 892683275 +798 138 3 876176160 +539 69 5 879787801 +215 77 3 891436690 +774 105 1 888558946 +774 520 3 888556398 +690 12 4 881179631 +486 319 3 879874388 +92 8 5 875654159 +749 195 5 878848639 +591 517 4 891040366 +795 502 3 883251421 +757 693 4 888467498 +707 529 4 886287376 +804 318 5 879441450 +194 540 1 879554950 +201 183 4 884112245 +346 219 2 875263664 +145 1289 1 875271660 +325 480 4 891478455 +504 142 3 887841158 +682 38 3 888521116 +522 134 5 876961020 +15 220 4 879456262 +387 679 5 886483194 +564 323 3 888730838 +588 684 4 890024246 +758 316 5 888020827 +796 399 4 893048471 +378 568 4 880055779 +268 92 4 875310745 +465 404 2 883532120 +13 398 2 882398410 +268 578 2 875744388 +790 284 4 884461888 +655 594 3 887430778 +216 64 5 881432544 +122 1267 4 879270769 +10 185 5 877888876 +508 52 4 883777047 +497 208 3 878759806 +746 56 3 885075211 +119 181 4 874775406 +743 268 4 881277551 +747 502 5 888733182 +747 1028 1 888733480 +416 2 4 886317115 +782 246 3 891499321 +788 639 3 880870710 +354 171 4 891306892 +607 30 4 883880180 +538 153 4 877106976 +804 588 4 879442687 +424 435 3 880859346 +802 323 5 875984722 +751 856 2 889134393 +758 387 2 881978495 +698 222 4 886366611 +429 174 4 882387773 +407 135 3 875119886 +342 192 4 875320082 +437 111 3 881002067 +308 152 5 887739292 +647 72 4 876534083 +551 77 3 892784130 +447 298 4 878854195 +711 132 5 879993150 +125 70 3 892838287 +16 661 4 877726789 +690 376 3 881177910 +532 315 3 888636423 +492 192 3 879969583 +503 12 3 879454675 +236 255 3 890116747 +710 310 3 882063224 +796 1119 4 892675528 +145 930 2 888398833 +76 1071 3 882606017 +753 515 5 891401712 +750 271 4 879445911 +143 326 5 888407708 +447 498 4 878856321 +343 561 3 876405172 +508 1153 4 883768797 +766 228 3 891309811 +804 399 4 879445111 +435 743 3 884134910 +727 424 1 883713454 +764 77 4 876246687 +593 286 5 875660009 +345 715 4 884993069 +806 324 2 882384513 +671 431 2 883546677 +763 258 3 878914901 +553 520 5 879949153 +796 491 4 892662964 +790 412 4 885158495 +57 471 4 883697134 +666 300 3 880138702 +254 118 4 886475406 +715 53 1 875963946 +104 332 2 888442305 +786 429 4 882843237 +657 109 1 884239886 +658 603 4 875147994 +608 461 4 880406507 +391 173 4 877399030 +291 670 5 874867785 +463 845 3 877385830 +802 452 4 875985976 +387 62 2 886483252 +388 315 3 886438122 +659 76 4 891383917 +648 498 3 884368130 +510 457 2 887667969 +135 470 4 879857931 +450 631 4 882394251 +716 211 5 879796171 +493 890 3 884130074 +484 699 4 891195773 +763 461 4 878915015 +437 174 5 880140122 +417 55 5 879647900 +346 657 4 875260577 +548 331 4 891042530 +436 23 4 887770064 +222 156 4 878183777 +790 1183 2 885157956 +804 198 5 879441391 +707 191 5 880061699 +59 32 4 888205228 +514 747 4 875463245 +455 1171 3 882141702 +495 395 1 888637147 +363 552 4 891497853 +486 975 3 879874783 +58 153 5 884304896 +363 919 5 891494659 +655 466 3 887474630 +624 125 3 879793093 +281 289 3 881200704 +608 475 3 880405971 +796 517 2 893047208 +796 795 3 893219254 +425 168 5 890347172 +301 562 3 882077256 +452 729 1 885981574 +497 652 5 878759777 +605 873 3 879365219 +654 252 2 887864031 +675 311 3 889488647 +542 41 4 886533068 +524 186 3 884634995 +682 549 3 888517415 +554 595 3 876232109 +157 111 3 886889876 +689 222 5 876674954 +485 748 2 891041551 +42 369 4 881105931 +764 100 4 876242649 +435 45 5 884131681 +56 300 4 892675935 +159 67 1 884026964 +207 526 4 875509507 +501 13 4 883348011 +534 1327 2 877808281 +525 322 2 881085256 +591 1028 3 891039658 +381 418 3 892696471 +654 100 1 887863436 +221 151 1 875246008 +523 384 3 883703495 +698 434 4 886366515 +599 763 5 880952316 +611 262 4 891636223 +805 17 4 881695346 +562 143 5 879196074 +13 70 3 882140691 +804 433 4 879444714 +416 8 5 893212484 +5 450 1 875635962 +619 385 5 885954053 +601 163 4 876350400 +667 131 5 891034810 +733 242 4 879535011 +663 619 4 889493182 +585 1449 5 891283338 +712 699 5 874956586 +660 1020 4 891199833 +654 739 4 887864886 +458 147 2 886395065 +724 908 1 883758208 +91 657 4 891439130 +130 179 4 875217265 +269 163 2 891449751 +506 418 4 874874055 +687 264 3 884652197 +662 813 3 880570194 +768 1016 2 883834814 +497 233 2 879310883 +805 387 3 881696905 +60 479 5 883326301 +712 416 3 874957113 +769 15 3 885423824 +532 411 3 874792031 +699 929 3 879147366 +109 210 5 880573084 +256 284 4 882151576 +537 178 4 886030767 +751 659 5 889133012 +776 496 3 891628708 +130 827 4 876251312 +59 591 4 888203270 +125 746 3 879455018 +387 10 4 886481228 +378 269 4 890513693 +642 862 4 892241015 +660 68 4 891199391 +455 14 3 883768822 +711 732 4 879994495 +798 1224 2 875638842 +593 580 1 876507120 +804 231 4 879445334 +321 275 4 879440109 +521 402 3 885253501 +744 482 3 881171420 +606 175 4 880927127 +551 324 3 892775824 +658 952 2 875145926 +406 277 3 879540106 +724 288 4 883757597 +7 638 4 892132122 +504 1118 3 887911035 +244 118 2 880604981 +459 16 2 879562939 +379 210 4 883156880 +279 456 3 875296924 +798 196 3 875743006 +687 319 4 884652276 +340 179 1 884989963 +749 187 3 881073104 +475 70 4 891627606 +645 430 5 892054797 +428 1280 3 885944069 +458 181 2 886396824 +715 89 3 875963538 +89 1 5 879461219 +758 827 3 882055257 +25 23 4 885852529 +682 150 4 888517197 +592 744 3 882608500 +734 172 4 891022212 +796 742 3 892660505 +487 176 5 883445540 +716 866 3 879794200 +343 28 5 876404793 +498 464 4 881958471 +757 207 2 888468632 +733 1171 3 879535780 +265 100 5 875320601 +532 535 5 888637085 +394 578 2 880888927 +755 304 4 882569881 +747 497 5 888639890 +254 343 2 886470904 +59 684 3 888204553 +661 28 5 876013975 +537 614 3 886031473 +655 1171 3 887426200 +699 268 4 884152267 +738 69 5 892844079 +602 9 4 888638490 +727 187 5 883710104 +676 352 1 892685875 +267 579 3 878973126 +748 144 4 879454707 +486 10 4 879874871 +624 150 4 879792493 +592 344 4 888553156 +514 197 4 875310992 +758 1098 5 881976746 +243 116 4 879987526 +398 66 4 875736732 +24 402 4 875323308 +790 139 2 885157748 +796 871 1 893219001 +627 651 4 879530109 +308 274 3 887738760 +699 252 4 879148050 +793 824 3 875104000 +309 989 3 877370383 +787 269 3 888979547 +299 99 3 889501790 +690 712 4 881177880 +293 232 2 888907384 +758 765 2 881980315 +90 732 5 891383241 +92 658 3 875654353 +721 382 4 877147675 +786 187 4 882843112 +539 487 3 879788101 +533 1147 3 879439204 +216 396 3 880245260 +788 71 3 880868144 +121 237 5 891388708 +806 405 3 882385762 +727 284 3 883709607 +222 1035 2 881060015 +568 486 4 877907720 +741 228 2 891455610 +420 301 3 891357188 +630 1055 3 885667898 +374 225 3 882158071 +774 179 5 888556634 +380 549 3 885479926 +151 151 5 879524760 +416 154 4 876699839 +595 952 5 886921424 +357 1028 5 878951729 +763 151 4 878923488 +535 1039 4 879618058 +486 245 3 879875441 +601 156 4 876348782 +794 475 5 891035822 +775 258 4 891032837 +394 68 5 881058419 +655 48 4 887472744 +587 895 4 892871113 +221 174 4 875245514 +82 79 3 878769334 +807 399 4 893080801 +774 238 5 888555928 +711 401 3 879995405 +276 173 5 874791993 +327 523 4 887818800 +745 203 3 880123696 +194 516 3 879522021 +704 655 3 891397190 +489 748 4 891366838 +123 432 5 879873120 +659 182 4 891332044 +421 127 4 892241624 +654 385 4 887864308 +347 156 5 881653652 +671 33 5 883949781 +771 993 4 880660199 +807 419 5 892528813 +198 707 2 884207009 +323 179 4 878739904 +593 278 3 875659686 +222 363 2 877563852 +254 665 2 886475234 +650 849 2 891381745 +455 252 3 879110818 +290 527 4 880474590 +221 94 3 875246857 +735 147 1 876698643 +711 50 4 876185648 +303 386 4 879485352 +739 969 1 886959039 +280 384 4 891702137 +561 345 4 885806823 +758 412 5 882054797 +788 504 4 880867970 +806 629 3 882389862 +798 116 3 875554781 +470 360 2 879189269 +450 167 5 882469863 +748 196 3 879454958 +706 1 4 880997324 +3 325 1 889237297 +639 510 3 891239862 +145 1210 1 888398766 +279 198 3 882456211 +378 186 3 880055186 +707 382 3 886287191 +581 285 5 879641533 +655 1009 2 887523271 +561 46 4 885808796 +561 1015 2 885810060 +777 56 5 875980670 +766 588 3 891309484 +161 210 2 891171698 +342 499 5 875319912 +592 98 5 882955918 +695 346 5 888806011 +174 50 4 886433166 +751 1007 4 889132222 +782 288 4 891498079 +655 215 2 887472943 +693 357 5 875482169 +181 595 2 878962918 +591 381 4 891040366 +532 52 4 888629446 +569 405 3 879794498 +177 129 3 880130653 +276 624 2 874792969 +327 160 4 887822209 +499 198 5 885599682 +8 181 4 879362183 +773 56 2 888539328 +568 612 3 877907720 +807 117 4 892528813 +518 475 4 876822811 +717 274 4 884642581 +600 29 2 888452490 +627 673 2 879530110 +738 496 4 875351346 +727 356 3 883712365 +699 244 3 878882319 +268 156 3 875745398 +792 124 4 877909865 +109 834 3 880583308 +456 181 3 881373120 +611 873 3 891636399 +407 232 3 876344993 +488 269 3 891293606 +755 269 5 882569604 +177 340 4 880130415 +727 69 4 883710186 +704 302 4 891397015 +641 496 2 879370337 +287 1067 2 875334036 +648 215 2 884796689 +768 756 3 883835053 +291 1277 4 874834019 +757 89 4 888445279 +739 286 2 886825020 +682 977 3 888521090 +724 872 1 883757537 +22 290 5 878886607 +401 302 3 891031464 +557 298 5 881095916 +380 98 4 885478698 +83 862 4 883868805 +798 480 3 875303765 +643 790 4 891449249 +537 523 3 886030682 +218 186 3 877488366 +406 182 4 879445734 +417 452 2 880952970 +467 269 4 879532145 +682 100 3 888517011 +611 887 2 891636125 +561 168 4 885807261 +591 792 4 891031383 +741 785 3 891457371 +548 925 2 891415709 +16 172 5 877724726 +214 496 4 891544545 +543 134 5 874862967 +543 16 3 875655073 +746 232 3 885075304 +707 723 3 886286954 +577 77 3 880475561 +727 1088 2 883709884 +797 307 2 879439190 +372 299 4 876869147 +146 315 5 891458193 +109 748 3 880562908 +801 890 2 890333150 +459 249 2 879562860 +425 520 3 890347085 +385 53 1 879446110 +790 123 3 884461413 +551 66 2 892783281 +432 628 5 889416398 +704 735 4 891397305 +805 321 3 881705292 +313 465 3 891030096 +506 582 3 874873423 +748 258 5 879454081 +709 27 3 879848590 +459 815 4 879563102 +663 31 4 889493628 +749 69 5 878847576 +405 43 1 885546680 +145 176 5 875271838 +561 955 3 885808738 +37 827 3 880915607 +435 399 3 884133253 +305 285 5 886322930 +780 208 3 891364125 +640 231 5 874778424 +450 693 3 887139232 +416 295 5 893213405 +496 1229 1 876071097 +782 294 3 891498381 +45 282 4 881008636 +474 302 5 887914615 +326 385 3 879876882 +712 73 5 874730293 +796 932 4 893219254 +210 792 3 887730532 +655 265 3 887477314 +435 573 1 884132515 +653 722 1 880152800 +472 210 5 875981664 +748 135 4 879454998 +372 595 4 876869878 +698 489 3 886367849 +579 748 3 880951569 +776 127 5 891628731 +642 864 3 885605987 +796 496 5 892662223 +367 413 4 876689879 +499 313 5 885597821 +198 531 5 884207525 +578 1098 2 890939753 +325 529 4 891478528 +736 248 4 878709365 +207 302 4 891759118 +747 952 2 888733630 +393 385 4 887746207 +749 477 3 878848405 +782 310 4 891497963 +475 50 5 891627857 +809 678 2 891037172 +522 23 5 876961248 +608 549 4 880405824 +806 705 4 882387595 +489 892 3 891449532 +659 739 4 891387022 +535 654 5 879617856 +668 323 4 881591198 +543 102 4 874863155 +452 1383 1 886149828 +804 85 4 879445190 +59 792 4 888206362 +749 194 5 878847541 +681 304 3 885409742 +537 435 3 886031933 +561 367 3 885809583 +605 597 3 879427755 +125 72 4 892838322 +514 462 4 875310992 +234 30 4 892335951 +805 595 3 881695951 +711 111 2 876185574 +608 1039 5 880406552 +396 471 4 884646263 +697 336 3 882621523 +301 431 4 882078008 +399 15 5 882340828 +405 71 1 885548836 +743 311 5 881277551 +658 178 5 875148195 +796 765 3 893047691 +756 100 5 874831383 +711 735 5 886030557 +569 1284 2 879795512 +569 756 3 879794660 +189 4 5 893265741 +656 269 3 892318343 +92 1090 3 875907079 +342 381 5 875320312 +536 408 5 882318561 +690 159 3 881180005 +232 69 3 888549376 +82 286 4 876311004 +760 604 4 875668219 +807 385 4 892530349 +609 475 2 886896281 +782 308 4 891498030 +707 582 5 886286433 +290 323 3 880473346 +540 508 4 882156983 +489 1280 3 891447653 +707 1530 3 886288356 +327 338 1 887743815 +440 1265 5 891548567 +133 343 2 890589188 +312 10 5 891699455 +254 29 2 886474847 +184 496 5 889908539 +579 245 2 880951595 +754 255 3 879451585 +809 289 1 891037020 +138 45 5 879024232 +133 269 4 890588766 +363 449 3 891498863 +804 49 2 879447476 +561 276 4 885807713 +561 203 4 885807261 +479 180 4 879460819 +378 106 2 880334241 +718 274 3 883349363 +778 265 4 890726003 +524 496 2 884637314 +711 10 5 876185943 +650 654 3 891369890 +124 7 4 890287645 +644 237 4 889076775 +745 286 1 880123905 +330 185 4 876546236 +586 127 4 884057313 +355 288 5 879485523 +201 396 3 884114682 +152 778 3 882476683 +100 272 4 891375629 +551 732 4 892783711 +788 708 2 880869908 +325 105 3 891480175 +7 145 1 891354530 +479 1142 5 879459939 +104 50 5 888465972 +365 846 3 891304152 +632 588 2 879457217 +748 514 4 879454749 +523 210 5 883702209 +291 21 2 874834389 +525 1315 4 881086393 +551 73 2 892784130 +533 871 2 879192730 +276 881 3 885537717 +661 173 4 876014469 +558 1068 2 879435896 +463 870 2 877385615 +727 282 4 883709157 +516 660 5 891290593 +525 405 4 881086693 +447 98 4 878855873 +604 558 4 883668175 +556 187 5 882136396 +804 192 4 879441752 +795 4 4 881253238 +622 156 5 882592143 +206 360 1 888180081 +733 1658 3 879535780 +484 7 4 881449706 +677 1240 5 889399671 +532 318 5 893119439 +95 177 3 879196408 +389 674 2 880088900 +671 5 2 883949781 +711 286 4 876185488 +627 96 3 879531196 +379 173 5 880525259 +535 721 3 879618464 +815 196 4 878694526 +159 988 3 880485529 +666 197 4 880568129 +785 22 4 879438957 +709 939 4 879847082 +360 210 4 880356166 +671 4 5 884035939 +468 100 5 875279269 +493 300 4 884129725 +321 611 4 879439832 +144 54 2 888105473 +307 172 5 879283786 +727 1218 4 883712068 +276 479 5 874836703 +659 664 4 891386380 +272 651 4 879454797 +804 550 4 879445739 +650 416 3 891387312 +634 1009 2 875729794 +711 248 5 886030732 +537 346 3 886028544 +593 966 5 886193788 +650 715 3 891383206 +527 70 4 879455873 +496 10 5 876064845 +7 601 5 891353744 +763 22 4 878921853 +51 134 2 883498844 +653 381 2 880606620 +354 238 4 891217394 +655 207 3 888893279 +617 219 4 883789536 +763 275 5 878915958 +712 402 4 874729935 +509 345 1 883590115 +293 589 4 888906677 +87 1185 4 879876885 +295 89 5 879519555 +606 99 4 880923799 +90 8 5 891383424 +508 98 3 883767140 +450 431 5 882473914 +642 90 4 885606024 +617 201 1 883789465 +648 202 5 884881524 +298 265 4 884127720 +621 1013 2 880738282 +501 405 4 883347857 +339 191 5 891033676 +524 402 2 884636617 +739 132 4 886959039 +802 447 2 875985686 +387 241 1 886483194 +679 291 4 884487960 +18 204 3 880131407 +606 531 5 880924188 +670 98 2 877975731 +807 465 4 892529448 +497 420 3 879309993 +389 1050 4 879991242 +220 340 4 881197663 +592 875 4 882607434 +804 1222 3 879446276 +642 313 5 886454784 +650 571 3 891387915 +675 312 2 889488624 +716 527 5 879795813 +727 72 3 883712476 +766 423 3 891309844 +655 1501 3 887523200 +625 257 4 891273543 +654 591 5 887863412 +748 319 3 879454107 +721 324 3 877137447 +807 471 4 892775416 +796 49 3 893047287 +545 31 4 884133988 +313 520 5 891013939 +817 748 4 874815649 +6 425 3 883602865 +82 822 2 878769262 +653 563 1 880153406 +677 457 1 889399113 +417 783 3 879649064 +641 89 4 879370364 +664 12 5 876524699 +782 678 3 891498767 +786 200 5 882844010 +532 4 5 893119415 +715 976 1 875962339 +553 638 3 879948732 +708 255 5 877325601 +404 245 3 883790401 +639 750 2 891238514 +749 951 4 878848533 +521 31 3 884478135 +506 478 4 874873067 +694 1455 3 875727061 +773 234 2 888540279 +387 856 5 886484124 +390 286 4 879693461 +804 213 3 879441651 +454 842 2 881960266 +553 190 5 879949251 +251 24 3 886272283 +89 475 5 879441307 +752 288 5 891208452 +807 250 4 893084375 +749 472 4 878849149 +756 161 3 874831194 +624 7 4 879792623 +662 319 3 880569520 +749 78 3 878850632 +328 192 4 885045805 +499 497 2 885599498 +276 3 3 874786924 +88 354 5 891037708 +450 1521 3 882812350 +600 181 4 888451491 +307 1065 3 879205470 +677 471 4 889399171 +440 329 5 891548567 +805 755 3 881705810 +721 1296 3 877137285 +805 747 3 881696729 +267 483 5 878971463 +84 486 5 883453664 +806 177 3 882388254 +436 763 4 887771042 +102 288 2 887051621 +569 685 4 879794075 +537 180 4 886031342 +399 779 4 882350850 +60 89 5 883326463 +633 128 3 875325225 +627 578 3 879531351 +109 391 2 880581127 +181 1328 1 878962240 +710 603 4 882063921 +476 88 4 883364717 +561 2 3 885809752 +771 154 2 880659426 +708 748 4 892719033 +751 50 5 889132162 +693 660 3 875483020 +5 235 4 875635384 +655 152 3 890887261 +666 270 3 880138720 +575 294 1 878146447 +716 837 4 879796475 +234 867 4 892826174 +805 176 4 881684185 +648 414 1 884797033 +712 739 4 874729935 +268 562 4 875744357 +698 205 4 886367013 +234 130 1 892336194 +13 586 3 882398326 +763 1268 5 878918933 +705 231 3 883428201 +382 23 5 875946978 +374 12 4 880395202 +287 652 4 875335018 +420 484 5 891356864 +821 742 4 874793130 +634 125 4 875729710 +197 82 5 891409893 +406 15 4 879540051 +770 255 4 875972099 +307 580 4 879283514 +708 304 4 892718876 +671 96 5 884035686 +409 205 3 881107992 +474 64 5 887924027 +130 944 4 876252042 +539 962 4 879788195 +738 380 3 875351530 +518 1114 2 876824079 +758 1111 4 881977375 +533 94 4 879192184 +368 100 4 889783407 +213 597 5 878871062 +104 271 1 888442370 +652 245 4 882567058 +795 235 3 880560263 +501 111 3 883348474 +773 384 2 888539766 +576 248 4 887169019 +642 755 3 885603495 +210 451 3 891036054 +708 148 4 892719246 +762 237 3 878719294 +358 855 3 891269464 +188 76 4 875073048 +711 731 4 879994656 +530 815 4 886202404 +655 302 4 887424720 +774 208 2 888555897 +263 133 5 891298977 +543 576 4 877546306 +325 482 4 891478333 +320 183 4 884749255 +539 133 4 879788136 +758 997 4 881979969 +591 210 3 891031469 +552 250 3 879222336 +763 742 4 878921584 +758 302 5 882848498 +758 480 5 881975213 +815 944 3 878696318 +213 582 4 878955442 +561 1035 3 885810390 +467 24 4 879532496 +452 496 5 875261666 +537 543 5 886031074 +422 561 3 879744143 +666 489 4 880314194 +680 15 3 877075048 +768 845 2 880135875 +796 576 3 893048562 +688 754 5 884153606 +43 131 3 883954997 +557 529 5 881179455 +492 100 4 879969292 +268 268 5 876513491 +221 227 3 875247522 +790 232 4 885156773 +28 573 4 881961842 +625 517 3 891636079 +818 302 5 891870264 +381 509 5 892696872 +712 1043 3 874956788 +587 355 3 892871610 +655 919 2 888474490 +805 475 5 881704016 +774 672 1 888557772 +627 55 4 879531301 +543 204 4 874864737 +788 601 4 880868876 +456 186 4 881374048 +514 97 5 875462764 +795 407 3 880560679 +673 328 4 888787355 +75 322 1 884049789 +459 989 5 879561708 +648 825 4 882212039 +7 506 5 891353614 +793 294 5 875103584 +747 91 5 888640820 +538 22 5 877107232 +814 565 3 885411347 +588 747 4 890025797 +255 443 1 883216544 +741 38 2 891455832 +805 576 4 881695040 +747 135 5 888640437 +761 678 2 876189689 +806 182 5 882387925 +773 1021 5 888539011 +495 417 3 888636741 +524 107 3 884628284 +655 275 4 887425845 +378 1101 3 880055983 +181 1161 1 878962119 +704 136 4 891397819 +650 526 4 891369554 +435 567 3 884133785 +290 28 5 880474235 +6 1 4 883599478 +50 15 2 877052438 +529 328 4 882535256 +495 132 4 888632916 +639 178 5 891240543 +798 932 4 875637927 +328 73 4 885048062 +693 509 3 883975500 +5 169 5 878844495 +517 333 3 892659922 +595 748 2 886920655 +184 301 3 889907045 +618 507 4 891309239 +606 747 4 880927468 +110 468 3 886988202 +716 425 5 879796279 +236 274 1 890117073 +812 288 4 877625294 +16 71 5 877721071 +682 79 4 888520705 +91 56 1 891439057 +792 1132 3 877910160 +391 483 3 877399423 +561 196 4 885808620 +320 732 3 884751013 +189 517 4 893265535 +90 322 4 891382658 +336 151 1 877759473 +424 740 5 880859674 +400 258 5 885676316 +815 386 2 878696563 +786 231 2 882844127 +709 293 4 879847879 +798 21 5 875554953 +734 482 2 891025591 +159 1092 2 880989744 +605 22 4 879424548 +742 181 3 881335281 +627 636 4 879531302 +244 1041 4 880608788 +335 322 4 891567125 +130 1245 3 876251312 +552 826 2 879222002 +721 755 4 877139773 +796 716 3 893047167 +633 5 3 877212085 +298 215 5 884182685 +753 96 1 891401366 +526 508 4 885682590 +699 1615 3 883884998 +221 809 3 875247775 +279 515 3 875295943 +805 527 3 881698798 +500 100 4 883865104 +292 2 4 881105778 +474 22 4 887924571 +305 431 4 886323806 +751 100 4 889132252 +378 709 4 880055921 +622 795 2 882672079 +658 32 3 875147800 +548 678 4 891043547 +633 1019 4 875324766 +566 204 3 881649828 +399 268 3 882340284 +688 259 5 884153750 +748 173 4 879454831 +383 238 5 891192836 +216 466 4 880234347 +776 436 4 892920350 +303 144 5 879467035 +655 1223 3 891585242 +121 347 3 891389304 +749 468 3 878848333 +545 569 3 879900011 +457 82 5 882397494 +627 27 3 879530762 +623 291 3 891034129 +655 89 4 887650683 +738 298 3 875348670 +615 428 5 879449111 +57 1001 1 883698039 +798 586 2 875303765 +342 262 2 874984025 +216 238 5 880244446 +230 496 5 880484501 +59 240 2 888203579 +730 300 3 880309964 +618 1048 3 891308980 +500 1160 5 883865483 +823 94 2 878439497 +545 99 4 880347957 +551 88 4 892783314 +806 407 3 882386125 +671 684 3 883546890 +568 242 4 877906547 +709 860 3 879848318 +659 356 3 891385012 +367 637 3 876690021 +664 196 4 878090054 +671 144 4 884035686 +622 395 2 882672143 +768 117 4 883834981 +655 770 2 892011201 +567 205 3 882425736 +676 845 5 892686398 +555 181 5 879962172 +715 318 5 875963867 +474 709 5 887928755 +489 333 4 891362740 +566 318 4 881649471 +417 82 4 879647326 +805 222 4 881694823 +630 174 3 885668131 +622 169 5 882669374 +354 478 5 891217365 +332 125 5 887938224 +796 488 2 892662400 +303 228 4 879467574 +751 56 4 889132775 +517 405 4 892659893 +748 710 3 879455410 +385 133 1 879441728 +682 294 3 888516841 +416 183 5 893214127 +766 99 3 891309810 +788 570 3 880869862 +576 50 4 887081005 +757 1090 2 888467187 +543 89 4 877545605 +59 644 4 888205033 +746 550 4 885075367 +268 88 2 875743760 +570 258 3 881262189 +158 233 3 880134477 +548 1013 3 891043910 +642 418 5 885606581 +305 749 2 886308111 +532 708 4 877634392 +521 109 5 884475845 +702 300 3 885767461 +710 142 3 882064377 +788 403 3 880870516 +101 411 2 877136891 +704 1454 3 891397441 +306 1514 4 876504614 +768 257 4 880136012 +1 16 5 878543541 +805 473 4 881695591 +626 313 5 887772871 +222 109 3 878184136 +234 492 3 892078936 +642 234 1 885603662 +747 205 5 888639102 +655 1421 3 887523477 +788 54 4 880869174 +790 449 2 885157594 +178 658 5 882827162 +7 433 5 892135347 +529 288 4 882535353 +222 185 4 881059419 +592 327 4 882607387 +83 38 5 887665422 +805 96 4 881694713 +226 509 4 883889322 +508 196 3 883776704 +787 292 3 888979236 +804 365 4 879446194 +322 654 5 887314118 +535 284 4 879619144 +665 214 4 884294935 +63 1 3 875747368 +378 59 4 880046475 +11 434 4 891904270 +404 66 4 883790883 +663 127 5 889493540 +620 820 4 889987954 +320 751 4 884748470 +724 344 1 883757468 +676 259 4 892685621 +303 1220 2 879484899 +710 313 4 882860832 +276 392 3 874790996 +488 1050 4 891294568 +659 629 4 891386680 +44 553 3 878347847 +665 815 4 884290608 +561 22 3 885809223 +684 386 3 878759184 +798 197 2 875303502 +655 921 3 887474656 +530 660 3 883785464 +671 742 5 884035173 +788 188 4 880870083 +42 151 4 881110578 +806 3 2 882385916 +694 423 5 875727018 +536 121 4 882318820 +749 732 4 878848452 +650 631 3 891383424 +720 749 3 891262812 +806 192 4 882387798 +122 190 4 879270424 +798 1089 3 875295616 +7 649 5 891353254 +682 282 4 888519918 +452 509 4 875560790 +200 71 4 884129409 +535 942 4 879619035 +660 33 2 891200193 +620 125 2 889987255 +772 326 4 877533625 +674 1 4 887762799 +790 376 2 885157533 +429 172 5 882385118 +747 153 4 888639989 +456 582 5 881374162 +794 50 5 891035307 +510 323 4 887667752 +299 153 3 877881320 +618 942 2 891309293 +795 186 3 883249522 +653 385 4 878854190 +435 821 2 884132840 +554 405 4 876550654 +313 588 4 891016354 +682 476 1 888522100 +671 161 5 884035892 +712 215 3 874730031 +660 680 2 891405088 +116 607 2 876453961 +450 602 4 882373532 +280 22 5 891700552 +178 720 3 882827645 +776 164 3 892920290 +727 542 2 883712993 +804 654 3 879441651 +234 520 4 892078890 +686 176 3 879545413 +254 432 2 886473158 +342 461 3 874984315 +42 318 5 881107718 +435 222 3 884132027 +780 133 5 891364086 +617 183 4 883789386 +809 272 5 891036743 +768 70 4 888798611 +764 1152 3 876242755 +224 699 4 888103703 +738 42 2 875350012 +769 546 4 885424242 +804 81 4 879441913 +660 106 2 891903867 +334 82 4 891547083 +803 271 2 880054833 +176 93 5 886047963 +425 118 1 878738596 +2 300 4 888979197 +550 877 4 883425723 +398 523 4 875717779 +531 338 1 887048938 +174 780 1 886515030 +608 939 4 880405896 +708 756 2 877326062 +788 194 4 880870052 +786 180 4 882843112 +97 186 3 884239574 +698 220 3 886367874 +158 10 4 880132513 +530 88 4 890627443 +499 474 4 885599227 +405 1261 1 885546529 +301 218 4 882076643 +606 250 4 878143047 +700 50 5 884493899 +796 168 5 892662871 +766 654 4 891309090 +655 955 3 887860615 +804 609 3 879444583 +354 42 2 891217512 +796 202 4 893047167 +454 98 1 888266433 +92 627 3 875654159 +20 496 5 879669244 +243 191 5 879989217 +151 652 5 879524472 +210 708 5 887731391 +181 285 2 878962816 +716 490 4 879794870 +236 50 3 890116059 +532 498 4 888629124 +757 217 3 888467381 +262 56 4 879792027 +422 672 3 879744086 +423 823 3 891395759 +556 294 2 882135855 +87 13 3 879876734 +611 355 1 891636399 +559 226 5 891034688 +756 176 4 874828826 +688 329 5 884153606 +825 111 3 892947930 +715 172 4 875963452 +629 381 4 880117852 +804 151 3 879442412 +519 351 5 883250102 +243 737 3 879988557 +552 932 3 879222194 +807 239 4 892529805 +216 655 5 880233726 +817 124 4 874815885 +543 715 3 877550534 +543 709 3 874866535 +627 423 3 879530145 +601 389 2 876350537 +764 597 4 876243440 +619 346 3 885953622 +294 117 4 877819634 +554 596 3 876232758 +571 462 4 883354992 +508 200 4 883768842 +345 268 4 884900448 +292 64 5 881105373 +773 433 3 888539471 +367 564 2 876690077 +773 238 4 888539347 +726 257 3 889831166 +655 297 4 888474107 +347 195 4 881653603 +292 248 4 881103999 +88 286 5 891037111 +207 143 4 878191679 +489 258 5 891366570 +711 1046 3 879994367 +360 1039 5 880356131 +709 470 3 879847026 +690 739 3 881180564 +796 26 2 893047208 +178 1011 3 882824431 +823 211 5 878438585 +608 64 4 880405165 +535 193 4 879618700 +776 21 3 892313317 +449 1011 4 879958685 +466 98 3 890285762 +567 183 4 882425701 +771 91 4 880659815 +760 278 4 875666242 +727 42 5 883710375 +350 483 5 882347734 +650 155 2 891384249 +164 471 5 889402245 +738 79 3 875351019 +487 272 5 885322350 +804 175 4 879444583 +130 329 4 874953337 +763 196 4 878919206 +596 181 4 883539431 +694 203 4 875728801 +716 521 3 879796846 +671 864 3 884204727 +807 636 4 892530752 +389 118 2 880088900 +521 967 3 885254071 +749 216 4 878848137 +712 722 3 874957086 +770 118 4 875973080 +625 516 3 892000518 +721 732 4 877147079 +805 447 4 881695293 +608 56 5 880403690 +610 50 4 888702961 +216 67 3 881721843 +513 50 5 885062365 +771 949 5 880659941 +425 398 1 878738597 +639 97 1 891240495 +286 462 5 877531537 +339 546 4 891036423 +25 929 4 885852178 +746 157 4 885075590 +25 430 4 885852920 +293 213 3 888906905 +749 781 4 878849979 +62 474 4 879373613 +653 128 3 880606620 +802 327 2 875984861 +472 132 5 875979853 +769 934 4 885424462 +534 149 2 877808237 +535 194 5 879617663 +62 652 4 879375364 +305 1018 5 886324580 +733 14 5 879535368 +727 131 2 883711699 +591 615 4 891031116 +815 173 5 878695241 +434 743 1 886725027 +429 1089 2 882387053 +343 276 5 876403078 +747 739 3 888734072 +682 11 4 888517049 +345 305 4 884900483 +653 930 4 880148885 +420 270 3 891356790 +541 418 5 883874646 +655 188 3 888474807 +268 39 3 875309914 +732 882 5 882589819 +711 724 5 879995461 +500 9 4 883865042 +184 1297 2 889910257 +758 527 5 881977169 +709 637 3 879848168 +593 143 4 886193303 +795 675 3 883251659 +264 201 5 886122261 +566 182 4 881649428 +642 254 4 886454812 +752 896 3 891207846 +464 248 5 878354998 +699 250 4 879148050 +661 647 4 876013356 +684 208 3 878761120 +70 538 2 884066399 +827 329 3 882807787 +270 123 5 876954223 +790 29 2 885158082 +537 234 3 886031211 +113 258 5 875075887 +748 86 4 879455126 +37 930 3 880915711 +634 763 3 875729825 +642 723 4 886132088 +655 1378 3 887523176 +393 357 2 887745815 +284 302 4 885328906 +708 597 2 877326345 +774 1182 1 888556278 +715 1045 2 875965171 +654 300 5 887863017 +671 12 5 883546120 +451 884 1 879012890 +416 378 5 893212896 +749 148 3 878850212 +727 95 4 883710948 +354 494 4 891217194 +178 233 4 882827375 +500 285 3 883865020 +823 81 4 878437836 +716 481 4 879795025 +416 191 5 893213019 +536 736 5 882360264 +796 174 5 892662069 +637 274 5 882904065 +825 423 5 881101641 +802 444 4 875985840 +184 220 3 889908264 +561 67 1 885810240 +751 272 4 887134672 +677 1245 4 889399199 +524 517 4 884635136 +806 654 5 882387837 +645 73 3 892055445 +642 153 3 885602572 +595 246 4 886921068 +774 31 1 888558284 +628 292 5 880776981 +644 323 4 889076433 +648 1 5 882211109 +254 629 2 886472337 +593 155 5 875671579 +65 1 3 879217290 +782 264 4 891498381 +473 302 4 878156824 +224 328 4 888081947 +435 1151 1 884134019 +586 23 2 884058674 +95 257 5 879197329 +554 275 4 876231634 +795 514 4 883250472 +416 729 5 893212896 +429 1228 3 882387163 +721 318 4 877140047 +625 208 3 891968164 +734 699 4 891022752 +749 389 3 878849375 +655 1053 1 887489159 +15 237 3 879455871 +712 136 1 874730443 +56 87 4 892678508 +479 31 4 889125905 +497 1 4 879309955 +653 195 5 878854100 +211 275 2 879460096 +629 729 4 880117852 +466 187 3 890284857 +477 846 4 875942042 +806 238 4 882388082 +144 1012 4 888104521 +268 230 3 875310824 +567 234 3 882426762 +796 636 2 893048505 +194 133 3 879523575 +378 218 3 880056491 +745 646 4 880123416 +751 131 5 889132966 +675 937 1 889490151 +60 617 4 883326273 +13 264 4 882140848 +793 1142 5 875104068 +804 254 4 879441195 +660 64 3 891199035 +554 71 4 876550257 +1 79 4 875072865 +43 258 5 875975028 +82 1063 3 878769815 +401 892 1 891031867 +781 322 2 879633862 +710 23 5 882064200 +201 315 3 884111029 +663 330 4 889491739 +23 62 3 874786880 +551 1621 1 892785194 +780 357 5 891363723 +611 334 5 891636223 +270 943 5 876956038 +766 494 3 891309177 +344 713 3 884899742 +655 1167 3 887428384 +686 521 5 879546786 +189 10 5 893264335 +796 5 4 893194607 +279 211 4 875309616 +565 1396 5 891037333 +807 1444 3 893082702 +522 543 4 876961076 +711 232 3 879993799 +616 331 4 891224677 +648 500 5 884368002 +82 1128 1 884714361 +656 322 1 892319238 +801 895 5 890332929 +128 73 3 879969032 +804 1488 3 879445579 +457 841 4 882395516 +805 42 2 881704193 +655 405 2 887429900 +805 90 2 881705412 +778 239 4 890726303 +234 552 2 892336322 +635 1025 2 878878901 +221 184 4 875245574 +334 1504 3 891549718 +736 515 5 878709365 +650 525 3 891369954 +514 116 4 875462426 +650 530 4 891372233 +435 264 3 884130671 +795 797 3 883254750 +280 88 3 891701556 +660 191 4 891406212 +85 924 1 879453114 +371 504 4 880435576 +791 299 2 879448035 +829 278 1 881712488 +639 727 2 891239613 +782 1279 3 891499660 +707 86 4 886286283 +585 59 4 891283124 +569 13 3 879793847 +194 143 3 879524643 +721 22 5 877139147 +749 134 4 878847286 +723 137 3 880498970 +759 678 2 875227742 +343 606 5 876404836 +373 390 3 877098890 +655 631 4 887473570 +602 121 4 888638434 +731 1 2 886184421 +406 191 5 882480443 +364 325 4 875931432 +266 237 3 892257940 +747 634 5 888639222 +7 474 5 891351002 +727 1273 3 883713286 +682 53 2 888519519 +222 237 4 877563437 +621 1029 2 874963210 +788 739 2 880870149 +588 678 2 890015063 +276 871 2 874836608 +501 952 4 883348114 +804 385 4 879445904 +745 183 3 880123205 +600 779 2 888452564 +773 191 4 888540448 +189 1401 4 893266137 +338 189 4 879438449 +14 81 5 890881384 +642 83 5 885603636 +468 724 4 875287615 +807 1050 5 892529311 +692 127 3 876948910 +715 265 5 875964105 +790 790 2 885157928 +592 466 5 882955766 +201 192 4 884111637 +70 15 3 884148728 +580 250 5 884125072 +498 1161 3 881960777 +783 876 4 884326424 +742 508 4 881335461 +469 474 5 879524117 +804 664 3 879446090 +665 105 2 884291810 +417 1016 4 886186827 +496 607 3 876065822 +596 682 4 883539173 +678 50 4 879544450 +581 127 5 879643079 +100 881 1 891375186 +541 402 3 883864946 +432 284 4 889416521 +804 663 5 879442793 +76 517 5 882129432 +592 188 5 882956387 +537 238 4 886030966 +650 373 1 891382877 +403 276 4 879785941 +545 173 5 879900185 +752 347 4 891207846 +486 151 2 879875041 +490 847 3 875427873 +442 64 5 883389682 +472 323 4 892790117 +782 248 4 891499321 +370 321 2 879434265 +655 887 3 887650979 +774 1305 3 888555829 +699 118 4 879148051 +643 12 5 891446720 +829 189 4 891992008 +521 172 3 884478049 +405 662 1 885546155 +753 359 4 891399477 +804 674 4 879445699 +666 151 2 880313582 +53 50 4 879442978 +807 99 5 892529401 +642 168 5 885842943 +758 428 4 881976745 +528 69 3 886101761 +7 356 4 891351728 +380 959 2 885479455 +712 662 5 874730320 +380 684 3 885478886 +782 687 2 891498865 +398 25 4 875655011 +18 492 4 880131054 +537 709 4 886031342 +630 300 4 885665975 +602 457 3 888638305 +387 789 4 886482928 +16 448 5 877722736 +648 94 5 884882234 +807 842 4 892979600 +811 301 5 886377530 +682 21 4 888522194 +681 286 5 885409370 +757 58 3 888467592 +804 405 4 879443776 +487 941 3 884045297 +527 183 5 879456691 +679 56 4 884487418 +739 96 5 886959039 +709 451 1 879848969 +543 147 4 877543316 +456 1547 4 881373948 +752 326 1 891208299 +435 64 5 884131036 +710 335 1 882063564 +722 151 5 891281020 +393 550 3 887746482 +666 729 4 880314225 +450 1053 3 882396352 +560 321 3 879975151 +807 271 3 892527385 +682 419 3 888523054 +178 293 4 882823954 +625 393 4 891263665 +747 1142 4 888732952 +186 298 3 879023073 +308 434 4 887736584 +270 93 5 876954522 +762 1662 1 878719324 +577 226 4 880475094 +655 974 2 887477025 +430 152 4 877226569 +523 722 3 883703495 +796 1049 4 893219151 +515 286 2 887660131 +804 194 4 879442490 +342 875 1 874984045 +366 201 5 888857866 +325 199 5 891478199 +429 655 3 882385399 +741 88 4 891457456 +377 234 5 891299078 +613 607 4 891227236 +682 238 3 888521540 +259 65 3 883371001 +664 192 4 876524096 +458 96 4 886398543 +758 742 4 881976168 +815 483 5 878696284 +830 385 4 891561805 +263 258 3 891296969 +119 9 4 890627252 +798 993 3 875554639 +586 69 4 884059426 +825 20 2 889021180 +685 873 2 879451401 +619 665 5 885954261 +346 708 3 874951714 +221 210 5 875245760 +805 761 3 881695040 +606 841 3 880922625 +742 1012 4 881335528 +380 222 3 885478519 +615 732 4 879449211 +255 273 2 883216845 +661 427 4 876016491 +790 109 3 884461775 +304 763 4 884968415 +764 9 4 876242649 +704 491 5 891397535 +201 1170 4 884141053 +145 1283 1 875270903 +694 97 5 875727399 +375 176 4 886621917 +497 181 5 879310580 +178 792 5 882827834 +13 835 3 882139901 +795 80 3 883254212 +271 625 3 885849606 +624 305 4 891961140 +326 226 5 879876975 +385 732 3 879442189 +703 1047 3 875243028 +663 876 3 889491739 +537 988 1 886029488 +545 550 3 879899327 +524 546 4 884627594 +826 336 4 885690064 +234 286 3 891033314 +731 1269 3 886187652 +642 577 4 886569870 +804 1079 4 879444133 +655 1322 2 887523641 +630 280 2 885667148 +751 70 4 889297870 +405 518 1 885546287 +666 333 3 880138999 +817 118 3 874815947 +454 724 3 888267158 +622 1079 2 882591663 +758 790 4 881978115 +826 313 5 885689782 +612 300 4 875324266 +629 319 4 880116722 +314 542 4 877890300 +712 99 4 874729995 +559 398 3 891034904 +457 215 4 882398002 +537 746 3 886031149 +831 877 2 891354391 +757 549 5 888468540 +405 453 3 885548385 +729 683 2 893286511 +806 483 4 882387409 +38 144 5 892430369 +567 212 2 882427023 +92 566 4 875658112 +389 657 5 879991115 +365 276 2 891303901 +343 462 4 876404385 +778 193 4 890769241 +437 186 3 881001208 +598 258 5 886711452 +659 7 3 891331564 +311 97 4 884365357 +302 358 3 879436981 +345 280 3 884991457 +674 125 5 887762779 +85 483 5 879453933 +374 15 3 880393380 +318 100 5 884470896 +712 220 5 874729682 +741 722 3 891457528 +653 455 3 878854051 +452 7 5 885816915 +693 581 3 875482731 +322 127 4 887313801 +110 642 2 886989126 +393 459 4 887744517 +142 315 3 888639837 +44 144 4 878347532 +703 50 5 875242813 +268 1413 2 875744388 +236 98 5 890116253 +713 340 3 888882133 +766 646 4 891309053 +660 1419 1 891202022 +525 597 3 881086413 +379 227 4 880525638 +782 1241 2 891500150 +521 95 3 885253266 +393 1035 3 889731329 +45 1001 3 881014785 +561 28 2 885808053 +819 1537 5 884012662 +711 909 4 889911007 +378 722 3 880334017 +580 1014 3 884125135 +312 499 4 891699296 +753 182 3 891401851 +786 238 4 882843646 +683 56 5 893286364 +577 55 3 880474694 +748 474 4 879454475 +473 129 4 878157329 +487 50 4 883442018 +130 156 3 875801447 +773 60 5 888538931 +695 270 4 888805952 +215 98 5 891436543 +539 610 4 879788533 +650 735 3 891369588 +747 28 4 888640915 +778 1035 1 890804607 +710 134 5 882063648 +655 651 4 887564613 +682 7 4 888522455 +627 227 3 879531352 +717 271 2 884641842 +372 98 5 876869388 +790 229 3 885156686 +587 750 3 892871113 +43 729 4 883956387 +678 282 3 879544952 +452 183 4 888492759 +707 1113 2 886287990 +749 295 3 881602635 +474 414 4 887927153 +667 504 3 891035015 +653 228 4 878854190 +617 238 3 883789249 +650 212 3 891383713 +474 520 5 887925837 +69 124 4 882072869 +132 285 4 891278996 +454 385 3 888266810 +303 8 5 879467223 +682 31 3 888520705 +655 425 3 887477409 +565 382 5 891037586 +524 7 2 884627065 +416 693 3 878879976 +733 237 3 879535338 +521 13 2 884476240 +668 283 5 881605324 +778 616 4 890726086 +407 274 3 876344287 +5 431 3 875636099 +8 688 1 879361732 +712 625 3 874956516 +586 77 3 884065719 +457 1028 3 882393828 +450 648 5 887660503 +573 657 4 885843928 +745 515 4 880122863 +804 451 2 879446063 +567 185 5 882426899 +828 1646 4 893186124 +655 1632 3 888685759 +735 332 3 876698022 +654 144 5 887864907 +808 333 4 883949519 +537 657 3 886030966 +327 286 2 887737328 +450 715 3 887137066 +788 98 5 880868919 +250 98 5 878090365 +626 923 5 887772922 +94 469 4 891721048 +85 735 3 879454905 +632 432 3 879456910 +271 697 4 885848863 +815 182 3 878693424 +545 732 4 879899619 +451 879 4 879012580 +752 690 4 891208170 +430 101 2 877226501 +521 159 3 885253904 +543 651 3 877546306 +416 215 5 893213644 +663 363 2 889492990 +597 127 4 875340062 +543 211 4 877547441 +509 326 4 883591043 +756 55 5 875129318 +707 116 5 880059974 +694 132 5 875727640 +487 432 3 883447015 +520 240 1 885170476 +561 705 3 885808000 +276 1016 3 874786713 +92 68 3 875653699 +537 116 3 886029841 +721 196 5 877139147 +545 176 4 879899125 +648 820 2 882212131 +450 215 5 882396051 +387 33 3 886483098 +593 98 5 875661596 +296 301 5 884196284 +301 685 3 882074867 +285 357 5 890595777 +747 79 4 888640392 +330 1035 4 876547470 +588 362 3 890014710 +85 596 3 880838337 +394 96 5 880886919 +344 276 4 889814194 +655 449 3 887429732 +561 652 5 885809312 +487 144 5 883446725 +474 205 5 887924469 +551 346 4 892775547 +109 527 3 880577604 +450 900 5 885944864 +621 871 3 881445723 +602 343 2 888638022 +666 32 4 880139466 +796 367 5 893048150 +299 169 4 878192555 +629 307 5 880116722 +528 1618 1 888521905 +450 254 3 887662083 +59 425 4 888204928 +773 53 3 888540147 +233 478 5 877661437 +752 905 2 891207940 +732 690 5 882589626 +807 528 4 892530173 +606 237 4 878148365 +506 880 1 885135560 +151 606 5 879528496 +367 50 5 876689696 +806 89 5 882387756 +450 210 3 887835408 +827 347 3 892157356 +757 117 4 888444181 +694 692 4 875728729 +805 581 2 881695793 +554 215 5 876550833 +567 203 4 882426508 +543 11 3 874866116 +559 196 5 891033805 +776 486 4 892920189 +145 347 3 891509921 +532 218 5 889235367 +543 636 3 876718718 +416 1135 2 886319234 +798 384 2 875915279 +588 554 3 890032281 +537 688 1 886029153 +588 471 5 890024289 +721 264 1 877135806 +291 84 3 874868327 +823 684 4 878439391 +649 1283 2 891440528 +804 186 4 879442687 +94 368 2 891724846 +346 1039 2 874948303 +634 122 3 877017975 +336 475 4 877756934 +661 615 4 876013774 +308 1065 5 887739382 +799 45 4 879253969 +197 177 5 891409935 +101 826 3 877136686 +85 1171 3 879452638 +387 186 2 886480515 +726 1014 1 889832744 +37 1027 3 880930072 +555 195 4 879975438 +660 748 3 891197757 +95 139 4 880572250 +249 209 5 879572582 +119 277 4 874774993 +456 197 4 881373793 +639 153 3 891240752 +56 62 5 892910890 +751 62 4 889298660 +669 302 4 891182948 +778 230 2 890804025 +623 163 3 891034756 +777 205 4 875980306 +748 654 4 879454998 +456 655 3 881373838 +562 133 2 879195007 +770 919 5 875972024 +825 1047 3 880756934 +804 473 4 879443884 +684 710 5 875812109 +548 751 4 891042851 +823 1217 1 878438435 +643 399 3 891450376 +514 1047 3 876063961 +698 284 1 886368545 +399 616 1 882341881 +441 7 4 891035468 +199 539 1 883782509 +374 1101 4 880395634 +488 245 3 891292897 +64 89 3 889737376 +493 192 3 884132015 +771 241 1 880659791 +518 847 5 876823447 +814 656 3 885410957 +276 25 4 874786686 +7 214 5 891352384 +606 924 5 880921408 +437 697 4 880140978 +741 241 4 891019625 +474 248 4 887916438 +639 716 1 891240805 +682 64 5 888517011 +692 204 5 876953340 +561 31 2 885809146 +329 39 2 891656391 +506 29 2 874874894 +655 248 2 888685759 +417 767 1 879646860 +746 38 2 885075476 +378 1 4 880044251 +655 1 2 887650876 +795 219 3 883252104 +736 257 3 878708721 +655 26 3 887427338 +793 844 4 875103842 +823 502 5 878439008 +698 191 2 886367406 +656 272 3 892318343 +694 31 4 875728345 +592 289 4 882607606 +831 96 5 891354668 +794 238 5 891035135 +661 79 5 886841798 +798 839 4 875638649 +595 346 4 886920576 +63 321 3 875746917 +798 1282 3 875296234 +262 417 2 879795319 +92 934 2 875639642 +347 91 1 881654679 +488 69 4 891294209 +645 211 4 892054364 +804 121 4 879442377 +124 117 3 890287181 +804 185 4 879444890 +634 137 3 875728834 +770 25 5 875972582 +275 624 3 880313679 +429 87 3 882384821 +804 141 3 879445841 +391 234 4 877399455 +392 294 4 891037561 +397 498 4 885349955 +478 77 1 889395879 +183 431 2 891467545 +568 319 2 877906697 +696 234 4 886404617 +578 678 3 888957490 +90 527 5 891384959 +429 378 3 882386916 +790 378 3 885156934 +695 311 4 888805767 +552 591 3 879222412 +709 218 4 879848168 +601 222 4 876347039 +814 100 4 885410957 +60 96 4 883326122 +828 887 4 891033611 +577 111 4 880470604 +796 746 3 893048115 +796 855 3 893279958 +606 1199 3 878143246 +694 157 4 875729667 +181 1321 1 878962200 +151 724 4 879542270 +709 56 5 879848053 +658 181 3 875145614 +395 1 5 883765062 +213 213 5 878956300 +770 546 4 875972699 +7 671 5 891351728 +536 546 2 882318533 +618 790 3 891309471 +686 208 5 879547275 +345 738 3 884993636 +758 14 5 883287566 +588 28 5 890024051 +521 405 2 884476820 +707 133 2 886287268 +53 284 2 879442901 +637 936 4 882902487 +487 1011 3 883444768 +650 576 1 891382877 +495 234 5 888634144 +807 193 4 892529483 +459 172 5 879563902 +666 510 4 880139409 +756 423 3 874830675 +503 47 5 880472216 +829 1067 4 891990842 +246 432 3 884921511 +708 412 1 877326159 +749 826 3 878850038 +655 483 4 888685734 +745 222 2 880123126 +798 1249 4 875914785 +805 422 4 881695560 +599 845 5 880951974 +763 197 4 878918360 +378 1425 2 880056930 +521 748 3 884475618 +784 1038 3 891387704 +650 371 2 891387725 +720 302 5 891262608 +7 568 5 891352261 +815 183 5 878694381 +479 423 2 879461084 +805 470 5 881695872 +712 232 3 874956903 +823 739 4 878439582 +1 261 1 875692992 +682 699 3 888523658 +587 989 2 892871438 +586 185 2 884058860 +804 445 4 879445766 +35 326 3 875459017 +290 168 3 880474204 +761 181 5 876190072 +526 751 2 885681958 +682 281 3 888520864 +756 930 3 874830344 +653 152 2 878866951 +721 680 3 877137448 +758 271 4 884999132 +345 886 3 884900736 +666 28 3 880139381 +359 181 5 886453305 +653 674 3 880151983 +392 1007 5 891038137 +343 476 2 876403239 +373 418 5 877104235 +23 234 2 874785624 +457 318 5 882397337 +545 174 4 879899125 +581 275 3 879641787 +13 771 3 882398410 +655 1553 4 888474019 +279 21 3 875297456 +676 895 1 892685562 +13 58 4 882139966 +393 964 2 889555461 +644 322 5 889076364 +699 298 4 883278699 +790 56 4 885155150 +159 1014 4 884027206 +768 50 4 883834705 +825 369 3 880756862 +747 461 5 888639526 +665 405 3 884291300 +389 926 3 879916099 +682 779 3 888522754 +790 401 4 885157621 +741 82 3 891018400 +835 1 3 891033420 +625 181 4 891262633 +833 340 5 879818293 +833 544 1 875133458 +605 295 4 879366240 +689 111 3 876676501 +476 173 5 883364218 +679 204 3 884487191 +811 292 3 886377041 +237 58 4 879376434 +374 284 1 880393753 +344 235 3 884900423 +638 62 3 876695307 +601 131 4 876350766 +666 525 4 880139467 +146 336 5 891458193 +181 274 4 878962720 +727 202 4 883711354 +94 1046 2 891723262 +804 128 5 879441702 +725 258 4 876106729 +239 518 3 889180949 +715 826 2 875962652 +79 283 4 891271627 +144 116 4 888104258 +669 354 1 891182622 +523 1195 5 883700969 +416 315 3 889341306 +422 299 1 875129602 +183 177 5 892323452 +659 136 5 891331874 +727 38 1 883712993 +207 423 4 875774463 +782 243 3 891498381 +128 174 3 879966954 +758 282 3 881977488 +267 202 5 878972398 +222 68 4 881059876 +586 92 3 884061459 +373 12 5 877098343 +762 475 5 878719219 +556 134 5 882136252 +751 181 5 889132397 +609 408 5 886896185 +766 382 3 891310281 +770 300 5 875971612 +682 190 4 888519725 +768 1 5 883835025 +749 228 5 878848828 +749 501 4 878847209 +408 271 3 889679947 +548 295 5 891044304 +649 323 3 891440624 +537 480 4 886030622 +653 215 2 880606619 +551 28 4 892776982 +788 284 3 880869323 +354 811 5 891218091 +90 523 4 891383423 +10 499 4 877893021 +212 631 5 879303929 +452 384 2 875559398 +734 222 1 891022849 +823 31 5 878439038 +659 211 3 891384077 +804 210 5 879441372 +318 307 3 884470681 +85 221 2 879452693 +426 474 4 879442785 +695 288 4 888806120 +406 153 3 879445522 +495 79 5 888632546 +530 98 4 883784195 +747 492 4 888639060 +673 242 4 888787508 +89 736 3 879460027 +540 455 4 882157477 +234 1063 3 892079769 +279 636 5 875313387 +545 211 3 879900586 +749 250 3 878846978 +301 1230 1 882079221 +632 763 3 879459304 +468 126 3 875280214 +13 687 1 883670705 +244 708 4 880607231 +294 831 3 889242542 +790 1044 4 885158185 +666 234 3 880139323 +601 1028 2 876347557 +836 165 4 885754149 +774 537 2 888556893 +499 193 4 885599682 +233 23 5 877665324 +435 1047 3 884132315 +435 1185 1 884133371 +366 53 5 888857990 +429 430 4 882384553 +161 69 4 891171657 +707 221 4 880059749 +682 710 3 888521413 +18 175 4 880130431 +374 23 3 880395896 +101 717 3 877136928 +505 73 4 889334248 +593 118 4 875660009 +447 222 3 878854340 +659 173 4 891383412 +796 4 5 893048150 +653 300 4 889151716 +577 579 4 880475602 +2 100 5 888552084 +583 55 4 879384404 +714 50 5 892777876 +85 52 3 881705026 +766 174 3 891308968 +655 1074 3 891999461 +497 758 2 879362292 +774 293 1 888559123 +792 546 3 877910353 +699 13 4 879146941 +484 427 5 891195746 +697 295 3 882622733 +477 722 5 875941763 +765 127 5 880346722 +87 158 3 879877173 +619 144 5 885954083 +748 143 3 879454546 +645 11 4 892054278 +445 840 1 891200320 +823 210 4 878439498 +816 309 5 891711801 +753 484 5 891401757 +650 527 3 891383229 +667 880 3 891034568 +559 550 4 891035111 +207 1012 3 876109074 +694 645 4 875727143 +770 181 3 875972219 +682 619 3 888519226 +835 325 5 891032391 +698 153 2 886367586 +717 751 4 884642001 +550 252 1 883426119 +727 63 2 883713454 +13 602 4 884538634 +207 535 3 877750595 +624 358 3 891961210 +561 181 3 885807318 +450 657 4 887660504 +524 367 5 884636453 +405 1509 1 885547557 +629 322 3 880116240 +561 1149 4 885807713 +533 148 3 882902641 +605 496 5 879424600 +348 477 3 886523521 +428 271 2 892572448 +807 427 4 892528427 +385 405 2 879440961 +456 1009 5 881372160 +712 386 3 874956956 +82 235 1 876311517 +699 225 3 878882133 +320 172 4 884749227 +796 1090 4 893194992 +423 748 3 891394985 +125 388 2 892839270 +489 353 4 891449555 +693 942 2 875482396 +783 333 4 884326383 +468 96 5 875295148 +159 1048 3 880557584 +536 168 5 882359863 +694 393 3 875728952 +447 28 4 878856110 +201 715 4 884140382 +707 499 4 886287450 +435 191 4 884131200 +566 465 2 881650654 +94 181 4 885872942 +435 578 5 884132230 +752 1105 3 891207983 +275 22 3 880314528 +426 200 2 879442702 +249 242 5 879571438 +318 8 4 884495616 +496 393 1 876069951 +693 693 3 875482860 +222 78 1 878184899 +136 269 5 882693234 +711 144 2 879993871 +109 191 4 880577844 +535 381 3 879617818 +615 13 4 879449184 +733 146 3 879536001 +619 294 1 885953684 +486 1094 2 879874838 +591 732 3 891031500 +714 7 4 892777903 +487 100 5 883442105 +244 1053 2 880606993 +588 655 3 890025864 +409 486 3 881109175 +393 191 3 887745717 +766 230 3 891310444 +588 402 5 890026882 +790 52 4 885156934 +363 328 3 891493840 +684 728 2 878762243 +716 248 4 879793293 +389 59 5 880087151 +221 405 3 875244633 +494 528 3 879541245 +529 286 4 882534996 +370 494 3 879435033 +776 443 3 892920290 +770 295 4 875972290 +280 660 5 891701114 +543 303 4 875664365 +496 484 3 876065382 +461 9 5 885356112 +655 396 2 887428507 +381 443 5 892696616 +721 194 5 877138024 +751 734 1 889299637 +544 310 2 884795264 +77 154 5 884733922 +555 248 4 879963127 +521 154 2 884478119 +152 280 5 880148941 +74 307 4 888333329 +432 93 2 889415812 +658 654 4 875148059 +659 606 5 891331959 +826 1239 4 885690854 +686 182 5 879546217 +177 7 4 880130881 +593 385 4 886194041 +523 1041 4 883702411 +566 100 5 881649548 +90 211 5 891383424 +825 544 3 889021037 +782 690 4 891497793 +667 482 4 891035140 +378 58 4 880046408 +707 309 2 880684605 +796 117 5 892660283 +6 460 2 883600004 +640 369 3 886474977 +428 259 4 885943685 +648 111 5 882211886 +833 546 2 875036354 +561 451 2 885810117 +716 423 4 879795496 +738 136 4 892958170 +693 527 3 875482280 +747 997 3 888733480 +716 176 3 879795189 +445 744 2 891200272 +406 420 4 879793112 +823 191 5 878437623 +633 289 3 875324233 +407 588 4 875552964 +314 820 5 877892461 +630 983 3 885667699 +758 977 2 882055347 +225 215 5 879539789 +545 193 3 884133988 +618 421 3 891308615 +697 107 5 882622581 +537 979 2 886030317 +655 1647 3 891817435 +554 282 3 876232267 +772 321 5 877533625 +42 50 5 881107178 +483 151 2 878952582 +445 1011 1 891200320 +78 294 3 879633495 +716 111 4 879793443 +286 762 2 876522008 +188 519 4 875072972 +387 772 4 886483782 +201 81 1 884140488 +493 475 3 884130495 +524 748 2 884321592 +393 922 4 887744419 +815 357 5 878693906 +401 44 4 891032868 +644 1025 4 889076433 +437 521 4 880141164 +442 176 5 883390284 +500 257 3 883865321 +706 118 3 880997464 +387 129 5 886480583 +406 121 5 879540199 +830 413 1 891899475 +807 576 4 893081656 +458 285 4 886394423 +426 196 4 879444734 +221 485 2 875245265 +626 358 1 878771505 +347 293 5 881652709 +780 97 5 891363617 +567 847 4 882425791 +262 68 2 879794887 +805 443 5 881695196 +665 763 4 884291210 +450 88 5 882396799 +450 117 4 882397373 +593 164 4 875671861 +806 233 2 882390614 +749 1228 4 878850748 +766 127 5 891309011 +421 187 4 892241624 +721 875 3 877137527 +836 268 3 885753475 +659 50 3 891044882 +805 168 5 881704016 +264 47 5 886123472 +291 801 3 875086766 +654 1020 4 887864566 +682 654 4 888520799 +537 921 3 886031074 +838 298 3 887064476 +648 187 3 884882664 +459 25 2 879563201 +750 300 3 879446013 +601 1296 1 876346344 +537 14 4 886030108 +707 792 4 886287107 +471 404 2 889827757 +493 328 4 884129823 +796 176 5 892662523 +689 109 5 876675152 +477 49 5 875941155 +116 307 3 879864042 +506 642 4 874874000 +255 872 4 883215723 +402 1 5 876266860 +782 689 3 891498720 +234 653 3 892335108 +399 403 3 882350502 +710 318 4 882063710 +488 358 3 891293051 +206 272 5 888179565 +455 549 4 879112320 +737 127 5 884315175 +305 2 2 886324580 +839 237 3 875752317 +239 64 1 889178616 +790 771 4 885158436 +457 214 5 882548280 +716 445 3 879797221 +498 175 5 881956498 +823 7 5 878438298 +608 1101 4 880405863 +655 1005 4 887474605 +835 143 5 891033819 +659 316 4 891044849 +97 496 2 884238693 +585 529 3 891283124 +805 664 5 881697667 +363 67 1 891498038 +437 1091 3 880143392 +567 487 4 882427155 +790 566 3 885156618 +705 111 4 883427012 +128 869 3 879969064 +787 304 4 888980193 +761 1277 1 876190752 +724 361 1 883758241 +305 597 2 886324551 +308 657 4 887736696 +206 310 5 888179625 +64 271 3 889737047 +403 9 3 879786052 +840 479 4 891204385 +786 699 4 882844295 +82 475 1 884714181 +551 351 3 892775894 +759 258 4 875227686 +532 181 5 889235367 +194 393 2 879524007 +707 1018 3 886288455 +521 2 3 886063310 +551 147 4 892783525 +773 175 4 888539425 +1 45 5 875241687 +666 114 4 880567919 +210 230 3 887736323 +788 302 4 880867326 +452 52 3 888494119 +764 496 5 876244991 +712 787 3 876251366 +423 344 4 891394558 +625 380 3 891263589 +661 161 4 876013588 +707 952 3 880060724 +709 781 3 879849185 +660 250 4 891198174 +733 221 4 879535265 +271 238 4 885848408 +699 597 3 884152570 +119 286 5 874774286 +749 595 4 878850107 +529 258 4 882535091 +474 385 4 887927670 +479 629 3 879461161 +392 197 5 891038978 +230 205 3 880484476 +380 109 2 885480093 +432 845 4 889416260 +385 383 1 879449871 +387 68 4 886483099 +456 366 2 881374967 +472 172 5 892791063 +806 254 3 882387272 +747 967 3 888639318 +680 100 3 877075214 +428 286 3 885943980 +10 276 4 877891904 +453 369 2 877553051 +434 928 5 886724913 +332 983 2 887938886 +641 427 4 879370119 +595 298 4 886921166 +541 417 4 883874749 +370 134 4 879434859 +675 344 4 889488754 +674 763 5 887762799 +5 121 4 875635189 +798 563 2 875638323 +655 195 3 887473965 +774 834 1 888559013 +416 182 4 876698934 +697 129 5 882622016 +774 186 3 888556047 +796 728 3 893047691 +451 991 2 879012647 +796 1269 5 892662765 +760 819 1 875666064 +236 505 3 890116575 +16 15 5 877722001 +314 939 4 877888060 +771 707 4 880659507 +757 22 4 888466407 +775 264 4 891033071 +665 620 3 884291613 +484 829 2 891195663 +115 48 5 881171203 +840 152 4 891204160 +606 662 4 880926162 +630 409 3 885667037 +318 968 3 884496671 +654 736 5 887864757 +524 1065 1 884636646 +152 775 4 884018798 +545 391 2 883115552 +661 70 4 876017029 +536 486 4 882359652 +796 1001 2 893219180 +710 1101 4 883705436 +561 56 5 885807291 +199 9 5 883782853 +43 411 3 884029519 +763 879 3 878914901 +567 177 4 882426673 +416 1264 4 886316381 +629 327 3 880116201 +637 118 1 882904961 +406 655 3 880131704 +533 988 2 882821725 +7 470 3 891352489 +715 90 5 875964386 +526 742 3 885682562 +808 294 5 883949986 +297 215 2 875240133 +450 655 4 882377653 +749 173 5 878847740 +565 512 3 891037453 +542 433 3 886532838 +719 532 3 888449606 +450 269 5 882215617 +796 751 5 892611979 +383 182 5 891192836 +387 642 4 886483395 +655 174 3 888474456 +825 294 4 880755305 +768 1014 2 882816126 +632 276 2 879457856 +630 50 3 885666536 +727 91 4 883710396 +747 419 5 888640820 +38 410 3 892432750 +379 194 5 880525194 +343 223 5 876405735 +637 286 5 882900888 +757 588 3 888467286 +650 97 3 891383110 +627 553 3 879530967 +453 132 3 877554871 +840 845 5 891203553 +833 161 1 875224515 +763 164 4 878917850 +648 127 3 884365970 +437 378 4 880143451 +774 514 2 888555998 +790 172 4 885155540 +776 511 5 891628632 +823 1118 3 878437836 +833 156 4 875038775 +738 39 3 875350720 +541 843 4 884645883 +666 205 3 880139562 +816 258 3 891711378 +716 49 4 879797286 +83 566 4 880308099 +735 293 3 876698570 +690 431 2 881179856 +621 271 5 880226633 +43 354 4 891293957 +835 193 4 891033148 +218 466 4 881288234 +506 46 3 874874802 +299 98 4 877881229 +92 250 4 890251534 +183 62 2 891479217 +805 89 4 881694713 +358 179 4 891269666 +43 926 2 875975613 +426 432 3 879444192 +643 969 4 891446826 +826 431 5 885690636 +593 56 5 875658887 +7 566 4 891353411 +622 277 4 882590252 +653 11 2 878854145 +533 174 4 879191184 +781 127 5 879634017 +621 28 4 874965408 +767 100 5 891462560 +236 194 3 890116426 +770 253 5 875971949 +532 230 5 893118712 +782 1237 3 891497906 +738 393 3 875350944 +798 687 4 875295566 +699 1284 3 879147239 +385 219 1 879446952 +601 241 4 876350652 +605 528 5 879424273 +766 447 3 891309522 +115 284 2 881170902 +757 1210 2 888467187 +514 183 3 875462645 +301 50 5 882074647 +454 204 4 881960504 +524 618 3 884636416 +406 509 3 879540515 +740 288 4 879523187 +815 216 3 878693381 +799 50 4 879254077 +437 507 5 880140015 +745 1126 2 880123572 +741 98 5 891455516 +305 160 4 886323937 +840 423 5 891209449 +495 403 5 888634475 +756 1009 4 874827247 +788 1248 3 880871460 +643 715 5 891450210 +819 862 2 884012586 +684 734 3 878762302 +551 164 4 892776650 +366 200 5 888857990 +683 588 4 893286584 +683 887 4 893286261 +508 269 4 883766931 +638 98 3 876695560 +588 880 1 890014996 +186 820 2 879024345 +535 188 3 879618999 +722 147 3 891281158 +416 411 3 876698006 +363 234 3 891495197 +642 204 4 885602593 +650 134 5 891369520 +668 257 3 881605269 +758 512 5 881975416 +332 195 5 887939051 +354 313 3 891180399 +130 1019 4 875801530 +516 286 5 891290565 +746 523 3 885075497 +619 187 5 885953992 +480 272 4 891207539 +85 135 5 879453845 +392 189 4 891038433 +700 79 3 884494420 +650 476 2 891388080 +474 470 3 887926437 +447 56 5 878855782 +399 720 3 882348565 +743 300 4 881277267 +642 1049 3 885606271 +130 89 4 875216458 +782 1477 3 891499344 +447 156 5 878856625 +818 316 4 891870301 +117 96 5 881012530 +324 301 5 880575108 +764 11 4 876244652 +200 234 4 884129381 +711 315 4 886030353 +549 620 3 881672650 +561 921 3 885810769 +622 83 5 882592178 +324 327 4 880575002 +693 483 3 875484352 +815 524 4 878693381 +318 1204 2 884496156 +457 770 4 882547794 +507 894 5 889964162 +605 301 3 879365237 +807 405 4 892684722 +823 97 5 878439113 +580 249 5 884125243 +498 262 2 881954618 +660 62 2 891201243 +234 273 3 892336165 +455 53 1 879112415 +615 209 5 879449068 +1 48 5 875072520 +198 824 2 884206847 +42 273 3 881105817 +40 358 3 889041741 +49 93 5 888068912 +458 844 4 886394576 +833 673 4 875224039 +471 878 4 889827710 +740 938 1 879522906 +760 185 2 875667450 +716 192 3 879794870 +802 441 3 875985840 +816 343 4 891711423 +101 846 3 877135914 +748 183 4 879454584 +709 215 3 879846259 +621 410 4 880738623 +605 286 4 879365101 +555 21 4 879964265 +682 582 1 888517816 +518 276 5 876822923 +537 323 1 886029211 +747 99 5 888640524 +790 184 3 885156958 +814 185 3 885411030 +425 362 3 890346317 +280 928 5 891700850 +650 161 3 891381709 +326 498 5 879875083 +721 990 5 877137213 +13 630 2 886302261 +787 348 4 888979875 +637 149 2 882901356 +801 307 4 890332853 +256 1150 5 882152570 +463 508 4 877385125 +833 483 4 875122716 +504 298 4 887831717 +705 405 4 883427479 +779 411 3 875999002 +807 527 5 892528646 +531 690 5 887048789 +696 310 4 886403673 +805 200 5 881695244 +398 969 4 875659518 +711 99 3 879993534 +766 520 4 891309146 +451 325 3 879012721 +476 300 5 883365561 +417 444 4 880952691 +827 258 3 882201175 +667 461 4 891034913 +698 1299 2 886367775 +622 553 3 882670929 +269 831 2 891451611 +803 243 1 880055548 +733 284 2 879535129 +551 751 4 892775797 +438 864 3 879868547 +526 331 3 885681935 +643 663 4 891447747 +497 175 4 878759745 +495 1208 4 888636032 +802 300 4 875986155 +833 121 1 875133458 +487 572 1 884050940 +732 286 5 882589593 +618 785 3 891309351 +768 275 4 880135736 +22 430 4 878886607 +640 202 5 874778366 +450 180 4 882373020 +763 658 3 878915600 +474 628 4 887915414 +655 702 2 887477262 +757 685 3 888444684 +747 408 5 888639481 +788 301 2 880867855 +574 303 3 891278962 +599 260 1 880951113 +658 9 4 875145572 +830 739 4 892503093 +369 751 4 889428097 +326 391 4 879877005 +680 117 4 877075312 +545 578 4 884134936 +805 569 1 881695414 +666 945 4 880567883 +452 45 4 875265446 +711 966 5 879994390 +527 496 4 879456248 +294 597 3 889242306 +387 205 5 886480384 +476 4 4 883364143 +727 234 2 883711699 +149 678 2 883512928 +406 129 5 879539949 +378 1311 4 880332949 +746 226 4 885075434 +831 245 2 891354226 +823 33 3 878438332 +562 79 4 879196445 +654 926 4 887863981 +653 194 3 880150260 +755 259 3 882570140 +730 125 4 880310521 +776 648 3 893077100 +832 181 3 888260089 +650 288 3 891369889 +393 939 4 887745816 +642 49 4 885605909 +676 879 3 892685489 +404 323 3 883790430 +749 62 3 878849052 +694 210 4 875728293 +795 719 2 883254675 +807 1034 5 893082544 +708 846 2 892719269 +435 411 3 884132484 +835 708 5 891035078 +267 614 5 878972015 +6 242 4 883268170 +552 288 2 879221267 +609 243 1 886895886 +601 132 5 876350104 +398 235 2 875716709 +678 25 2 879544915 +751 483 5 889132849 +807 151 4 893081163 +435 1 5 884131712 +472 465 3 875982149 +591 508 4 891039616 +586 230 2 884061623 +524 393 3 884637032 +624 269 4 891961120 +734 111 3 891025993 +660 380 2 891201587 +830 69 5 891898262 +114 98 4 881259495 +707 630 3 886287608 +346 153 3 874948252 +271 47 3 885849386 +545 751 3 883115062 +810 301 5 890083124 +840 517 4 891204322 +339 168 4 891033710 +738 257 3 875348912 +632 156 3 879457437 +280 1114 4 891702199 +119 506 5 886176779 +225 194 5 879540678 +222 627 3 878183173 +534 21 4 877807905 +254 584 3 886473283 +786 318 5 882843190 +545 94 3 879900794 +255 760 1 883216185 +398 521 5 875717779 +145 642 3 875272010 +792 21 3 877910444 +659 604 4 891331916 +836 12 5 885754118 +256 526 3 882164443 +825 986 5 881185343 +87 179 4 879875649 +49 8 3 888067691 +378 417 3 880056034 +839 123 3 875752560 +805 248 4 881683074 +807 498 4 892529150 +771 275 5 880659392 +648 199 4 884368313 +490 741 4 875427629 +844 22 4 877386855 +758 385 4 881974742 +716 956 4 879796011 +406 32 5 879446639 +805 183 5 881684185 +399 380 3 882345164 +694 520 5 875726618 +650 1110 4 891388467 +201 568 3 884112245 +642 409 5 885605909 +693 282 4 875482626 +134 1 5 891732756 +749 843 3 878848998 +655 443 4 887430102 +697 748 5 882621569 +128 179 3 879967767 +788 237 4 880869584 +589 301 2 883352535 +74 245 3 888333280 +239 137 5 889178688 +742 250 3 881336006 +180 469 5 877372278 +587 351 2 892871683 +650 1118 3 891385746 +800 118 3 887646342 +403 928 3 879786008 +313 546 4 891028426 +401 582 4 891033523 +151 962 1 879524394 +608 462 4 880406552 +743 298 4 881278061 +162 147 4 877636147 +773 218 2 888540295 +843 186 2 879447170 +532 139 5 874792232 +659 481 5 891385866 +608 956 3 880405896 +634 628 4 876170992 +672 15 3 879787922 +562 141 4 879195334 +198 50 5 884204919 +387 385 3 886483150 +709 403 3 879848590 +532 316 4 888631773 +693 318 4 875482092 +429 756 2 882386711 +181 1394 1 878961847 +253 1025 3 891627878 +766 679 3 891310337 +713 689 3 888882225 +487 627 4 883531122 +840 647 5 891205004 +144 234 4 888105115 +563 403 4 880506963 +170 876 3 886190449 +711 89 5 879993997 +43 58 3 883955859 +398 591 3 875652876 +666 185 4 880139466 +178 66 4 882826868 +412 23 4 879717147 +520 100 4 885170394 +617 604 2 883788955 +708 147 4 892719246 +774 423 1 888556634 +527 153 5 879455847 +716 675 2 879796766 +655 116 2 887476999 +733 125 2 879535814 +331 506 2 877196504 +805 827 4 881695040 +496 417 1 876066465 +72 684 4 880037203 +699 181 3 878882082 +580 323 2 884124383 +753 483 5 891401712 +435 384 3 884134047 +309 690 3 877370319 +13 806 5 882140426 +254 871 2 886475682 +608 1204 2 880403606 +47 322 2 879439078 +733 1067 5 879535603 +640 68 4 874778479 +682 358 3 888518450 +711 277 5 879991476 +792 1011 3 877910730 +707 1381 3 880061346 +823 209 4 878438379 +664 160 3 876524731 +829 268 4 886631672 +579 877 1 880951594 +387 211 4 886480108 +458 189 4 886396460 +763 96 2 878918213 +669 348 1 891182572 +705 226 3 883428028 +747 29 1 888734152 +804 87 4 879442954 +454 322 2 881958782 +548 229 5 891044596 +769 824 2 885424511 +817 1 4 874815835 +535 612 4 879618385 +686 198 5 879546443 +611 346 5 891636152 +59 133 3 888204349 +487 125 5 883444736 +804 164 4 879442025 +607 474 4 883879473 +405 102 1 885548877 +363 675 3 891495849 +94 1188 3 891723525 +178 483 4 882826210 +13 675 5 882396955 +838 173 5 887065782 +807 622 3 892530656 +828 171 3 891036568 +449 763 2 879959190 +795 164 3 883253368 +802 559 2 875985840 +775 310 3 891032837 +752 270 4 891208077 +293 317 4 888906193 +577 425 2 880474808 +698 330 4 886365606 +92 466 4 875811549 +784 303 4 891387077 +551 232 5 892783365 +532 100 5 893119335 +639 59 3 891239658 +757 168 4 888468756 +724 271 2 883757834 +416 132 4 876699652 +655 65 2 887477511 +290 257 4 880731518 +636 313 5 891448155 +793 458 3 875104243 +834 269 5 890860566 +541 1315 1 884046202 +703 864 2 875242912 +738 153 4 875350223 +455 234 4 879110436 +196 13 2 881251955 +686 514 5 879545662 +798 748 5 875295521 +738 747 4 875351603 +301 157 2 882076021 +44 636 4 878348969 +286 728 3 889652740 +490 919 4 875428765 +666 471 4 880313423 +758 305 4 880672257 +601 183 4 876348674 +222 195 4 878182132 +280 167 4 891701631 +653 511 4 878854100 +286 204 3 877531941 +234 329 2 891033922 +181 1115 1 878962774 +764 756 3 876243595 +189 914 2 893265046 +487 692 5 883530434 +717 471 4 884642427 +301 363 4 882078326 +705 144 3 883427988 +836 896 3 885753506 +57 475 2 883697223 +561 503 4 885808887 +782 343 2 891498821 +744 28 3 881170416 +787 311 4 888979605 +699 455 3 878882178 +778 582 1 891232769 +271 208 4 885848916 +804 215 5 879441752 +804 33 4 879445975 +476 1180 3 883365336 +621 779 3 880740296 +846 1074 3 883950859 +797 50 5 879439314 +831 591 4 891355004 +314 70 1 877890531 +399 276 3 882510107 +761 1 1 876190094 +788 234 3 880868473 +766 419 3 891309913 +379 339 3 883031585 +698 507 4 886366611 +828 19 5 891035613 +780 508 3 891363826 +294 123 4 877819634 +188 151 3 875073909 +17 100 4 885272520 +564 50 4 888730974 +660 207 4 891199620 +807 420 3 892979368 +650 451 2 891384202 +655 133 4 888474106 +181 1323 1 878962119 +788 447 3 880870299 +619 29 1 885954238 +595 235 3 886921392 +671 568 5 884035686 +174 716 5 886513674 +805 108 3 881705082 +756 135 2 874827884 +843 452 2 879443442 +833 367 3 875123359 +109 54 3 880578286 +792 1335 4 877910353 +741 815 3 891458647 +764 323 3 876233088 +361 55 2 879441253 +694 632 4 875727399 +393 11 3 887745844 +642 1095 2 885606271 +763 237 3 878919153 +826 38 3 885690750 +344 122 1 886381985 +606 222 3 878147770 +687 748 3 884652276 +593 739 5 875672970 +465 615 3 883530991 +205 242 4 888284313 +592 293 5 882607986 +186 1033 3 879024212 +537 333 2 886028707 +763 176 4 878919116 +437 195 2 880141286 +703 259 1 875242336 +548 905 4 891044198 +663 678 2 889492140 +833 129 3 875035718 +751 380 3 889298548 +387 11 3 886480325 +567 173 4 882425630 +553 378 3 879948655 +186 887 4 891717761 +81 276 4 876533545 +825 283 2 880756224 +201 96 4 884112352 +181 1086 1 878962464 +279 514 4 875307210 +586 820 4 884057412 +246 223 5 884921033 +796 1228 4 893048713 +682 366 4 888517896 +682 568 3 888522575 +806 343 3 882384656 +599 748 4 880951144 +668 271 4 881523787 +533 257 4 882195275 +377 200 5 891299010 +804 202 4 879442079 +288 294 2 886372841 +835 393 5 891033718 +460 285 4 882912205 +814 200 4 885411204 +704 480 5 891397086 +838 596 5 887064275 +751 436 4 889135879 +697 682 2 882621523 +733 820 2 879536608 +751 405 3 889298528 +749 280 4 878847835 +179 691 3 892151331 +593 1119 5 875660823 +788 597 3 880870582 +788 73 3 880869174 +773 665 2 888540187 +363 151 4 891497076 +616 328 3 891224590 +709 89 3 879848397 +621 546 3 880738894 +336 628 3 877760374 +399 543 3 882509971 +293 163 4 888907290 +616 329 3 891224748 +846 94 4 883950711 +642 365 4 886569922 +7 186 4 891350900 +271 210 4 885848447 +298 276 2 884183833 +606 498 4 880923862 +487 318 3 883528237 +737 427 3 884314970 +712 421 4 874729935 +416 253 3 876697283 +686 528 5 879547336 +422 137 5 875129882 +571 604 3 883354886 +727 993 4 883709750 +450 1163 3 882396928 +308 507 3 887738893 +524 606 4 884634968 +642 946 2 885606581 +466 55 4 890284857 +830 82 3 891561673 +7 25 3 891352451 +378 207 4 880055002 +95 228 4 879196231 +256 796 5 882165328 +161 487 3 891171357 +833 187 5 875124348 +413 14 5 879969513 +439 307 3 882892424 +757 203 5 888445521 +750 269 4 879445755 +688 1234 5 884153712 +699 222 3 883884642 +379 712 3 880741832 +312 589 5 891698695 +605 124 3 879365748 +642 378 3 885603517 +761 261 1 876189871 +156 86 4 888185854 +704 170 3 891397086 +474 326 3 887914822 +715 455 3 875962109 +790 1132 2 885158329 +536 84 4 882363820 +328 662 3 885047593 +655 332 3 888984255 +405 943 1 885548633 +666 959 4 880139149 +846 627 4 883949594 +805 238 5 881704223 +756 418 3 874829333 +560 1405 4 879976215 +474 530 5 887926271 +567 1022 5 882426350 +674 300 3 887762296 +806 121 4 882385916 +739 216 4 886958831 +795 577 3 883254987 +506 248 2 880198305 +630 929 4 885667249 +804 205 4 879442434 +458 744 4 886394623 +774 240 1 888558787 +174 1086 5 886434047 +804 135 3 879444407 +690 742 3 881179878 +767 56 4 891462759 +664 227 3 876526718 +788 521 4 880869945 +666 423 3 880139381 +693 64 3 875482136 +778 262 4 891482843 +521 17 1 885254888 +568 493 3 877907281 +544 750 3 884795135 +730 15 4 880310264 +393 1249 4 889731329 +535 136 5 879619107 +151 1269 5 879528438 +116 340 3 879864008 +790 738 3 885158396 +158 823 2 880132941 +474 13 5 887915684 +606 100 5 878146986 +708 1117 4 892719269 +468 7 3 875280214 +729 879 3 893286299 +671 770 2 883547351 +684 781 3 878762183 +600 56 5 888451492 +399 55 2 882343171 +526 300 2 885682031 +780 887 4 891363073 +518 125 5 876823645 +389 428 3 880087461 +787 333 3 888979074 +846 57 2 883949121 +634 1 3 875728872 +653 763 1 878854906 +781 324 4 879633862 +766 188 4 891309484 +711 185 4 876278721 +682 4 3 888521599 +650 199 4 891369520 +716 205 5 879796438 +536 389 5 882360734 +215 234 4 891435655 +571 47 3 883354818 +803 748 1 880054885 +118 844 5 875385256 +130 42 4 875801422 +749 511 4 878847286 +632 161 3 879459053 +524 654 5 884634877 +67 125 4 875379643 +639 179 1 891239324 +128 715 4 879968512 +729 690 2 893286149 +1 25 4 875071805 +843 298 2 879444531 +449 1073 5 880410734 +346 1258 4 875002895 +807 143 4 892528062 +624 294 3 879792109 +738 186 4 875351773 +758 253 5 880672855 +676 916 5 892685849 +407 603 4 875044037 +440 312 5 891550404 +796 215 5 892676115 +319 261 3 889816267 +624 240 2 879793129 +230 214 4 880485573 +788 483 5 880867933 +757 265 3 888466614 +259 484 4 888720541 +690 216 4 881177302 +771 289 4 886640547 +840 732 3 891204947 +535 237 4 879617779 +160 497 4 876858346 +291 234 4 874834735 +472 1239 5 892790676 +405 626 1 885548877 +774 300 2 888555792 +579 186 3 880952237 +270 88 5 876955711 +181 828 1 878963086 +484 71 2 891194743 +648 123 4 884366184 +242 740 5 879741196 +606 652 3 880925200 +747 639 5 888732899 +263 357 5 891299573 +778 238 3 890725804 +626 268 4 878771355 +303 388 2 879544365 +658 518 4 875147873 +450 794 5 882473476 +87 273 3 879875857 +326 510 5 879876141 +720 333 4 891262669 +712 59 2 874730420 +443 358 1 883504748 +684 252 4 875812227 +531 890 1 887049341 +758 837 4 881976377 +423 591 5 891395547 +782 902 2 891497906 +655 96 3 887651060 +825 276 1 880756575 +450 951 4 882399508 +606 1047 2 880923349 +198 229 3 884209353 +308 365 3 887739915 +109 288 5 880562908 +807 584 4 892529031 +682 518 4 888517324 +235 207 4 889656132 +666 70 4 880139526 +637 124 3 882902835 +668 82 4 881702925 +639 237 1 891239296 +658 50 4 875145750 +516 212 4 891290649 +745 100 5 880122809 +615 792 4 879448632 +727 121 4 883709518 +656 338 3 892319359 +735 269 3 876698022 +64 186 4 889737691 +221 1011 4 875244792 +556 127 5 882136205 +539 963 4 879788533 +332 73 4 888360229 +201 144 4 884112245 +780 423 5 891363618 +670 657 5 877974857 +837 476 3 875722225 +566 403 3 881650654 +345 14 4 884991077 +60 131 4 883327441 +766 434 5 891309947 +778 780 3 890803133 +327 333 2 887737493 +85 526 4 879454500 +468 192 4 875291403 +670 479 5 877975594 +192 7 4 881367791 +23 235 1 874784712 +606 1010 3 878149278 +746 181 5 885075166 +813 294 1 883752051 +472 496 4 875980823 +334 238 4 891546231 +380 479 4 885478374 +566 763 4 881651045 +642 41 3 885605347 +371 77 5 880435601 +625 640 3 891999796 +727 248 5 883709207 +471 465 5 889827822 +606 1151 3 889137292 +90 65 4 891385298 +334 301 2 891544233 +621 735 4 880739654 +374 38 4 880937876 +501 1011 4 883348519 +640 778 4 886354499 +99 780 5 886780007 +712 575 3 874957053 +742 222 2 881336006 +95 495 4 888954760 +551 288 4 892775466 +406 170 3 879445599 +267 217 4 878973760 +834 744 4 890862527 +328 809 4 885048895 +276 405 3 874787044 +761 50 5 876189795 +450 568 4 882397939 +442 1188 3 883390609 +693 7 4 875483947 +256 546 4 882151088 +842 362 3 891217891 +532 496 5 893119491 +686 480 5 879547224 +442 62 2 883390641 +744 1134 3 881171482 +534 235 4 877807973 +334 19 4 891544925 +826 241 4 885690600 +474 150 5 887915188 +479 566 3 879461800 +727 210 3 883710123 +653 1028 2 880152902 +666 134 5 880567695 +389 584 4 879991512 +537 196 3 886030831 +577 29 3 880474903 +758 159 3 881977408 +417 179 4 879647749 +795 8 5 880569317 +682 339 2 888518364 +701 257 4 891447197 +293 1333 4 888905618 +772 307 4 889028773 +597 678 1 875339041 +344 273 4 884900677 +334 1048 4 891545480 +806 522 3 882388128 +226 275 3 883889764 +268 60 5 875309344 +567 1252 3 882427294 +739 1429 5 886825529 +606 121 4 878148425 +694 153 4 875728508 +758 380 4 884999133 +495 449 5 888637768 +750 688 1 879446013 +715 276 3 875962454 +661 166 5 888300194 +580 222 3 884125292 +318 133 4 884496432 +718 471 5 883348634 +647 22 5 876534131 +452 371 3 875562573 +790 941 3 885157061 +62 69 4 879374015 +194 219 2 879527865 +645 447 3 892053541 +682 420 3 888523115 +393 412 3 887745380 +293 4 4 888906489 +435 25 5 884132434 +719 23 3 888897264 +338 269 4 879437523 +543 509 3 874863734 +542 11 2 886533710 +542 97 4 886533754 +5 374 3 875636905 +307 196 3 879205470 +130 1013 4 876251287 +846 377 2 883950155 +706 25 4 880997385 +666 318 5 880139180 +405 951 1 885548877 +727 197 3 883710271 +773 1475 4 888539027 +308 141 3 887739891 +750 358 3 879446216 +457 692 4 882396989 +734 56 1 891022752 +514 234 3 876063765 +712 202 4 874730031 +588 354 5 890014930 +501 121 4 883347023 +792 844 4 877910822 +655 1506 3 887428871 +782 1389 3 891500028 +82 496 4 878769992 +307 72 3 877122721 +644 333 3 889075967 +462 866 5 886365387 +173 332 4 877557028 +648 193 4 884628607 +405 708 1 885546487 +796 203 3 892690173 +291 413 4 874834054 +11 208 4 891905032 +749 603 5 878847804 +664 154 5 876525963 +184 724 4 889909672 +295 451 4 879518864 +829 192 5 881712519 +837 845 4 875722392 +498 168 4 881958174 +588 62 2 890027865 +758 4 4 881977375 +679 710 4 884487374 +773 52 3 888538853 +499 7 4 882996793 +393 1049 4 887744688 +551 202 4 892783177 +543 12 5 875665787 +796 322 3 892611953 +700 180 3 884494278 +487 366 3 883530929 +650 141 4 891386210 +658 408 5 875145614 +537 127 5 886030622 +790 583 2 885157489 +749 633 4 878848764 +458 20 4 886394778 +535 461 3 879617663 +665 1009 4 884291936 +327 367 4 887819355 +535 778 2 879617819 +642 465 4 885603932 +847 290 4 878775523 +796 419 5 893219001 +785 423 2 879438957 +506 665 2 885135882 +299 753 5 877880852 +374 17 2 880937876 +673 268 1 888786997 +201 886 1 884110927 +26 283 3 891371437 +715 955 4 875963596 +578 258 1 888957735 +719 282 4 879358874 +683 332 3 893283997 +792 24 3 877910091 +567 134 5 882425873 +334 283 4 891544810 +774 468 2 888556968 +796 278 4 892660323 +790 265 4 885155770 +490 292 3 875428185 +161 15 2 891172284 +176 405 2 886048262 +234 219 2 892336287 +327 336 2 887737569 +487 270 5 883440572 +16 152 4 877728417 +739 526 5 886958895 +772 678 4 877533546 +655 1170 3 891585242 +521 1013 1 884476820 +472 546 4 875979041 +715 117 3 875961816 +199 14 4 883783005 +434 274 5 886724797 +293 1209 2 888908117 +782 1643 2 891499321 +836 180 5 885754200 +770 244 4 875973047 +716 504 5 879795189 +296 315 5 884196351 +633 939 4 877212045 +642 1126 1 885603495 +843 665 3 879443482 +630 31 2 885667968 +796 29 3 893048672 +613 514 4 891227236 +754 744 3 879452073 +484 315 3 883973609 +450 28 4 882377861 +610 276 4 888703766 +389 346 4 885681315 +59 228 4 888205714 +716 568 4 879796718 +844 403 3 877387825 +776 439 1 892920480 +788 781 3 880871205 +747 163 4 888733111 +128 405 4 879968859 +605 223 5 881015099 +339 173 5 891034254 +527 11 4 879456662 +399 172 3 882342537 +682 125 4 888523635 +683 690 4 893286260 +94 477 2 885870323 +624 276 5 879792446 +60 209 5 883326593 +405 501 3 885548837 +161 315 5 891169965 +370 443 5 879435369 +665 1132 2 884291662 +592 936 4 882608315 +422 5 3 879744085 +268 3 1 875743161 +760 202 3 875667834 +586 188 2 884058956 +270 475 5 876954122 +50 327 3 877052093 +835 660 4 891033986 +699 23 4 878883113 +326 378 4 879875724 +690 396 2 881177861 +132 50 3 891278774 +763 629 5 878918871 +840 135 5 891204356 +848 164 5 887043421 +503 25 4 879438685 +354 306 5 891180445 +620 969 4 889988037 +648 840 1 884367180 +610 272 4 888702815 +125 111 3 892838322 +286 202 4 877532204 +733 287 3 879535129 +833 441 1 875224352 +325 495 3 891478180 +805 33 5 881694885 +457 162 5 882548793 +249 252 2 879571998 +766 131 3 891309703 +715 27 3 875964051 +663 351 2 889491919 +125 395 3 892838687 +703 410 4 875243028 +506 393 3 874874802 +128 685 3 879968774 +676 902 4 892685740 +838 732 4 887066782 +332 9 4 887916653 +648 928 4 882212071 +642 377 3 886569809 +18 963 5 880132437 +721 175 5 877140282 +595 304 3 886920774 +550 294 3 883426119 +710 182 4 882063967 +474 141 4 887926059 +758 249 4 880672782 +648 756 2 884366939 +665 125 4 884291340 +130 426 4 875801897 +324 458 4 880575619 +694 468 4 875729270 +652 282 4 882567294 +295 71 5 879517822 +437 478 5 881002323 +823 48 5 878438642 +807 1 4 892528231 +360 199 5 880355678 +547 313 5 891282611 +308 659 3 887736532 +118 558 5 875385228 +516 194 4 891290593 +308 1169 5 887739136 +1 251 4 875071843 +396 121 5 884646235 +643 162 3 891448436 +833 160 5 875124535 +846 382 3 883948989 +694 480 4 875726759 +763 627 3 878923488 +591 202 3 891031469 +313 125 3 891017059 +605 132 5 879425432 +727 380 3 883712397 +267 92 4 878971514 +773 268 4 888538249 +694 659 4 875728181 +533 527 4 879191022 +770 289 5 875971655 +661 191 4 888300344 +670 168 3 877974549 +131 137 1 883681466 +567 12 4 882426508 +713 313 3 888882179 +394 179 5 880886919 +650 705 4 891371153 +622 222 5 882592815 +780 510 4 891363904 +554 1 3 876231938 +715 380 3 875965058 +22 210 3 878886479 +692 238 4 876953340 +790 609 2 885156773 +848 294 5 887037669 +383 657 5 891192858 +548 277 3 891415540 +622 1181 4 882670367 +698 144 2 886367586 +92 210 4 875653519 +674 685 3 887762861 +151 956 4 879542567 +798 257 4 875295842 +805 216 2 881696699 +540 300 3 882156618 +654 1016 4 887863841 +663 473 3 889492917 +719 357 4 879360583 +741 234 4 891455545 +843 238 3 879446359 +807 946 3 893081338 +454 124 4 881959960 +798 365 3 875639656 +795 381 2 883774317 +805 240 3 881705350 +719 289 2 877311150 +758 685 5 881979987 +561 403 3 885809690 +717 475 5 884642187 +840 478 3 891204627 +560 1265 3 879975194 +782 987 3 891499660 +374 39 4 880937876 +586 215 4 884066141 +843 98 3 879443668 +290 180 1 880474913 +514 154 4 875462689 +311 650 3 884364846 +722 291 4 891281228 +837 220 4 875722007 +608 694 3 880405085 +207 96 3 877847025 +332 31 4 888098205 +102 411 2 892993786 +828 57 3 891037640 +551 205 5 892776575 +10 629 4 877886722 +506 328 4 885135476 +764 176 4 876244856 +704 607 4 891397535 +524 638 2 884637914 +666 248 3 880313640 +734 604 4 891023086 +48 529 4 879434850 +716 4 2 879796046 +822 1091 1 891038627 +429 101 4 882386662 +577 436 4 880475339 +815 153 4 878695020 +144 1013 1 888104446 +125 756 4 892838424 +825 7 5 880755612 +792 476 1 877910206 +193 122 1 889127698 +85 521 3 879829471 +587 308 3 892871642 +223 984 3 891548987 +749 294 2 878846265 +474 584 5 887927728 +731 662 3 886183209 +488 304 4 891293606 +711 222 3 876185896 +601 258 5 876346344 +788 435 3 880869278 +184 488 5 889913687 +387 89 5 886483048 +815 528 5 887978255 +846 60 4 883948606 +119 89 4 874781352 +830 233 3 891561737 +533 471 4 882902330 +683 62 4 893286208 +487 249 1 884637200 +568 187 3 877907596 +541 71 5 883874716 +615 208 4 879449130 +551 809 5 892784629 +381 294 5 892698068 +796 273 2 892660856 +325 134 4 891478599 +786 70 4 882843534 +565 213 4 891037803 +763 195 4 878918360 +393 17 1 889728895 +774 521 2 888556483 +344 478 4 884901210 +90 97 5 891383987 +456 32 4 881372911 +796 781 4 893047241 +533 187 4 879438811 +666 1110 3 880314366 +711 402 4 879993674 +293 67 3 888907575 +682 12 5 888516953 +455 118 4 879109733 +711 8 5 879993707 +666 264 3 880138999 +713 347 4 888882337 +60 23 4 883326652 +640 66 4 874778345 +699 14 3 878881952 +363 89 4 891494688 +847 185 2 878939503 +468 1016 3 875280670 +648 222 5 882211258 +442 154 4 883389491 +632 183 4 879456909 +749 168 5 878847765 +838 748 3 887060972 +619 550 5 885954134 +830 100 5 891560934 +681 258 1 885409516 +806 172 3 882387373 +83 243 3 891181725 +405 529 1 885549543 +109 655 3 880577735 +385 940 3 879447089 +660 176 3 891199182 +823 144 5 878438535 +774 649 3 888556814 +405 861 1 885548275 +416 136 5 893212623 +465 651 3 883531155 +782 1315 3 891499440 +576 815 3 886985695 +763 111 2 878918871 +786 216 4 882843272 +551 761 1 892785164 +791 327 5 879447977 +354 496 3 891217109 +747 588 5 888639989 +1 195 5 876892855 +716 570 3 879797286 +810 879 5 890083124 +276 431 3 874977474 +699 308 4 879382955 +641 285 5 879370028 +807 265 5 892529076 +109 365 4 880581817 +668 358 3 881524153 +790 786 3 885157533 +766 318 5 891309522 +846 1518 2 883950186 +727 184 3 883710761 +500 238 4 883873839 +761 258 4 876189585 +724 882 1 883758267 +846 90 2 883950001 +18 81 3 880130890 +629 286 4 880115839 +567 640 4 882426927 +768 288 4 883834705 +537 652 3 886031074 +625 405 3 891273859 +200 243 3 876041719 +608 11 5 880405927 +830 511 5 891561673 +564 292 4 888718546 +727 154 3 883711567 +749 378 5 878847612 +526 307 2 885681958 +560 1073 3 879975586 +758 297 4 880672700 +416 285 2 876697165 +749 175 3 878847576 +231 50 4 888605273 +758 716 2 881978864 +745 188 3 880123540 +748 193 3 879454789 +731 97 5 886183681 +102 334 2 888295889 +780 22 4 891363969 +758 121 2 881978864 +561 427 4 885807484 +62 82 4 879375414 +450 633 5 887660440 +788 327 3 880867855 +676 173 5 892686665 +796 520 3 892662223 +828 971 4 891380167 +345 518 4 884916484 +747 580 5 888734112 +660 349 3 891197757 +560 653 4 879975529 +833 831 1 875297256 +634 240 3 877018033 +715 755 2 875964704 +588 79 4 890023722 +416 157 4 886317316 +234 479 5 892334107 +639 216 3 891239528 +564 181 4 888730974 +807 1091 3 893082703 +804 396 3 879445956 +556 493 5 882136441 +719 237 2 877917981 +498 922 5 881955432 +792 291 2 877910629 +682 234 3 888520705 +804 993 2 879441236 +553 23 5 879948806 +151 170 5 879524669 +682 578 3 888522575 +771 4 1 880659748 +823 475 5 878438297 +588 1058 2 890030656 +636 121 5 891449212 +611 336 5 891636399 +542 732 3 886533227 +727 275 3 883708927 +188 673 4 875074127 +666 176 4 880139120 +653 233 3 880151599 +328 606 3 885046244 +70 755 3 884150865 +746 399 3 885075211 +563 678 2 880506368 +362 332 5 885019537 +358 638 3 891269584 +805 660 3 881698881 +834 282 4 890863052 +663 1245 4 889492959 +506 10 2 874862734 +478 467 5 889395563 +774 741 1 888558762 +540 222 4 882157224 +588 1044 4 890025674 +648 1110 3 884881621 +221 259 4 875243990 +642 404 3 886569122 +807 177 4 892705191 +543 114 4 874864346 +585 19 3 891282808 +406 10 3 879445684 +831 181 5 891354866 +756 138 2 874830864 +766 211 4 891310009 +428 322 4 885943782 +240 751 3 885775683 +763 507 4 878918933 +655 662 2 888686011 +334 337 4 891544177 +848 1126 5 887043265 +44 480 4 878347315 +746 431 5 885075304 +716 127 5 879793293 +487 833 4 888262381 +109 431 3 880578186 +745 480 3 880123361 +535 16 4 879618532 +269 663 4 891449880 +693 215 4 875482860 +412 186 5 879717071 +638 204 5 876695917 +738 751 3 892938297 +639 87 3 891239218 +487 1410 5 883446637 +457 582 5 882548350 +751 591 1 889132375 +592 242 5 882607286 +298 419 5 884182774 +760 162 3 875668418 +301 219 4 882078955 +102 476 3 892993827 +452 461 4 875273609 +85 589 3 879453587 +834 293 3 890862974 +194 72 3 879554100 +833 205 4 875122814 +549 237 4 881672605 +178 748 4 882823460 +828 921 4 891037948 +798 403 4 875743140 +562 504 4 879196709 +435 71 3 884132208 +225 510 5 879539672 +821 180 5 874793517 +401 312 3 891031784 +758 191 5 881975853 +805 386 3 881704224 +518 829 3 876824156 +835 157 4 891033526 +731 8 2 886184681 +749 182 3 878848639 +699 121 3 878882366 +666 519 4 880139205 +619 576 4 885954261 +790 1 3 884461306 +313 147 4 891016583 +540 293 4 882157084 +795 200 3 883251581 +761 288 4 876189614 +561 494 4 885808824 +769 258 3 885422650 +795 433 4 880588141 +779 222 4 875503280 +773 1188 2 888539842 +174 155 4 886513767 +393 710 4 889554607 +405 1581 1 885548579 +216 302 5 881966913 +682 173 4 888521381 +694 614 4 875726886 +29 12 5 882821989 +445 1199 1 891200447 +472 109 4 875978686 +843 615 3 879446215 +805 40 3 881704553 +437 436 4 880143635 +648 728 2 884882078 +601 204 2 876348783 +821 97 5 874793848 +380 554 2 885479754 +89 88 4 879459980 +577 31 4 880474216 +216 50 4 880232637 +396 840 3 884646648 +848 481 3 887038527 +826 172 5 885690481 +10 478 5 877889004 +833 52 3 878078390 +148 663 5 877399018 +227 285 4 879035347 +699 211 1 878883113 +834 258 4 890860194 +504 211 4 887837739 +553 519 5 879949042 +216 184 4 880245056 +796 485 4 893279958 +593 747 4 877728878 +547 338 2 891282967 +788 183 5 880868743 +833 204 1 875039255 +346 203 4 874948139 +756 409 2 874830998 +484 216 4 891195105 +660 739 2 891201925 +352 79 4 884289693 +655 285 4 887425936 +616 323 4 891224801 +708 1061 3 892719143 +216 66 2 881428365 +91 501 2 891439130 +783 335 3 884326545 +407 239 4 875553509 +757 241 3 888466863 +647 403 4 876533657 +715 69 4 875963692 +757 202 4 888445730 +460 224 4 882911603 +834 100 4 890862311 +484 237 3 881450112 +778 195 4 890769370 +622 101 5 882592662 +585 713 4 891282808 +666 436 3 880568637 +94 658 3 891722533 +42 491 3 881106711 +92 235 3 875640338 +697 282 4 882622559 +147 898 5 885593965 +332 327 5 887916324 +724 538 2 883757537 +504 1046 4 887912298 +551 410 5 892784093 +504 294 2 887912722 +453 684 3 888205336 +500 762 4 883865532 +393 623 3 889731562 +788 69 4 880868144 +90 385 4 891385899 +852 685 3 891036435 +788 451 4 880871240 +729 354 5 893286637 +682 724 4 888517948 +588 231 4 890028987 +49 372 4 888069040 +815 623 3 878697043 +815 603 3 878694664 +751 42 5 889133429 +851 1009 2 874789084 +758 578 4 881977872 +782 991 2 891500230 +648 483 5 882212708 +201 855 4 884111873 +56 1028 4 892911227 +141 276 1 884584817 +152 740 4 880149197 +849 928 5 879695153 +527 170 3 879456637 +528 83 5 886101632 +828 269 4 891033574 +472 597 5 892791062 +787 329 4 888980193 +655 1375 3 887426008 +417 373 3 880952988 +484 29 3 891195532 +673 272 5 888786942 +342 1057 2 875318783 +798 690 4 877117972 +660 347 3 891197585 +500 780 3 883876904 +647 213 3 876534151 +367 98 5 876689932 +405 38 5 885548093 +257 57 5 879547717 +790 367 4 885156114 +660 771 2 891201984 +397 680 1 875063649 +721 688 3 877136967 +102 396 2 892993735 +835 628 3 891032930 +789 93 4 880332063 +655 125 2 887426200 +804 228 4 879441391 +796 98 5 892663090 +207 223 3 880388784 +653 121 4 878854769 +90 402 5 891385335 +567 32 5 882426644 +276 993 3 874787065 +385 484 4 879442559 +435 28 3 884131799 +788 798 2 880870827 +506 187 5 885135819 +468 367 4 875296868 +643 824 3 891449681 +23 216 4 874787204 +694 604 4 875727399 +493 91 3 884132287 +334 56 4 891546914 +637 873 1 882899608 +688 338 5 884153751 +669 490 5 892550283 +182 48 3 876436556 +830 288 1 891899475 +851 27 4 875806765 +680 285 5 877075079 +805 1232 3 881703472 +634 922 4 875728913 +649 147 4 891440214 +840 465 4 891204798 +425 124 2 878737945 +378 623 3 880333168 +524 195 2 884634849 +121 298 2 891388676 +671 147 1 884035992 +406 152 2 880131666 +313 504 5 891013859 +276 518 4 888873407 +339 404 4 891035147 +840 166 5 891204798 +763 283 4 878915600 +837 225 3 875722371 +26 252 3 891385569 +178 607 3 882826347 +168 744 5 884288058 +621 1047 3 880738080 +773 45 4 888538776 +301 4 4 882077033 +13 197 4 881515239 +805 147 5 881694286 +303 319 5 879466065 +342 216 5 875320104 +804 1178 3 879445990 +815 131 2 878698449 +119 70 3 874781829 +595 1165 1 886921748 +194 173 5 879521088 +425 976 1 878738992 +821 275 5 874792369 +291 3 3 874833936 +838 181 5 887063696 +43 222 4 883955547 +693 98 4 875483268 +450 87 5 882374059 +758 100 5 881975119 +96 183 4 884403123 +405 288 5 885544635 +837 274 4 875721989 +392 260 1 891037790 +699 820 2 880696597 +419 79 4 879435590 +472 94 5 892791063 +87 535 4 879876315 +77 96 3 884752562 +794 514 5 891035604 +60 656 4 883327018 +606 103 3 880923349 +442 204 3 883389028 +638 431 4 876695108 +418 333 5 891282520 +623 127 4 891032275 +788 699 3 880869323 +56 237 5 892679540 +694 1035 4 875728345 +659 496 5 891385258 +551 603 5 892776524 +782 872 2 891498513 +528 294 3 888520438 +639 57 3 891239862 +716 48 5 879795314 +535 45 3 879618655 +680 195 4 876816106 +222 154 3 878183747 +484 150 4 891195246 +847 826 3 878939266 +833 127 5 875035660 +566 70 4 881649563 +642 231 3 886454812 +770 282 5 875972927 +53 156 4 879442561 +560 127 5 879976071 +796 357 4 892662400 +758 221 3 881976335 +268 290 3 875742866 +618 815 4 891309552 +798 832 4 875637822 +755 343 3 882570077 +318 40 4 884497882 +727 684 4 883710948 +645 483 5 892053456 +305 166 4 886322719 +151 194 4 879524443 +323 295 3 878739519 +655 1406 3 888984325 +796 121 5 892661043 +805 148 2 881695911 +545 588 4 879901459 +782 352 1 891498513 +20 143 3 879669040 +407 127 3 875044597 +557 253 3 880485693 +605 294 4 879365219 +286 382 5 877531830 +661 751 4 886840577 +562 4 1 879196517 +588 742 4 890024002 +831 333 4 891353915 +730 117 3 880310300 +813 289 4 883752455 +699 717 1 878882511 +830 225 3 891560596 +402 276 5 876267014 +773 769 1 888540390 +351 882 5 879481589 +109 168 3 880577734 +839 260 2 875751560 +833 854 4 875038529 +639 958 4 891241052 +796 417 4 893218933 +735 126 3 876698570 +370 52 4 879434969 +707 97 4 886285876 +498 664 5 881955596 +671 117 3 875389187 +758 1159 5 881974639 +749 117 4 878846654 +751 291 3 889299155 +499 191 5 885599307 +343 53 5 876407421 +767 141 4 891462870 +682 17 3 888520923 +213 170 5 878955886 +733 16 3 879535969 +94 464 5 885873302 +643 1012 4 891445550 +424 151 2 880859722 +588 367 5 890024117 +489 319 3 891447218 +798 367 3 875743434 +844 195 3 877387825 +703 471 4 875242885 +654 275 5 887863394 +767 172 5 891462614 +497 1030 1 879363780 +738 233 3 875353678 +492 1147 1 879969670 +689 15 5 876676502 +839 257 3 875751930 +312 1298 5 891699426 +167 241 5 892738419 +191 345 4 891560753 +648 432 5 884368538 +854 186 3 882814298 +551 763 5 892784008 +246 570 1 884923592 +425 174 3 878738149 +756 399 2 874828967 +334 607 3 891546206 +637 291 4 882905183 +848 69 2 887043340 +600 231 3 888452152 +600 230 4 888451839 +656 301 3 892318648 +683 312 3 893284183 +18 529 5 880130515 +838 318 5 887067085 +758 26 4 881977108 +616 286 5 891224448 +627 62 4 879531397 +271 493 4 885848558 +486 1047 2 879875316 +586 204 3 884066723 +109 564 3 880582633 +455 298 4 882818787 +387 101 4 886479528 +194 465 3 879527513 +838 72 4 887067162 +87 808 3 879875996 +663 333 5 889491655 +253 427 5 891628229 +645 216 4 892054732 +791 328 4 879448087 +537 730 3 886031211 +506 576 4 885135954 +668 300 4 881523612 +826 50 5 885690525 +840 1065 5 891209285 +839 244 3 875751958 +694 176 5 875729146 +287 815 3 875334248 +660 272 4 891197481 +848 32 5 887042871 +805 137 5 881697713 +815 451 3 878696965 +788 540 3 880871394 +846 566 5 883948874 +537 1010 2 886030381 +69 117 4 882072748 +380 208 2 885480301 +650 1060 3 891387833 +850 204 5 883194859 +487 1425 4 884024462 +757 1188 3 888466651 +815 405 4 878692071 +806 197 4 882387728 +806 204 5 882388205 +573 182 4 885843892 +699 147 2 883279472 +392 493 4 891038945 +655 1273 2 888984386 +659 367 3 891385166 +650 1039 3 891383229 +458 190 4 886397771 +405 1584 1 885549407 +367 5 4 876689991 +451 1280 1 879012773 +502 270 2 883702043 +286 1051 4 876522261 +763 127 4 878920656 +484 79 5 891195322 +674 323 3 887762937 +655 258 2 887650944 +745 98 5 880123905 +648 40 4 884882234 +72 191 5 880036515 +704 259 2 891396904 +490 410 4 875428570 +500 387 2 883875388 +747 478 4 888639437 +666 504 4 880139120 +854 979 4 882813315 +790 1119 4 885156732 +125 21 3 892838424 +5 365 1 875637144 +836 880 4 885753506 +13 455 3 882141425 +452 856 4 885817937 +409 327 2 881104837 +65 511 4 879216567 +367 164 4 876690119 +308 519 4 887737997 +361 228 4 879441285 +397 286 4 882839517 +405 855 1 885549543 +749 132 4 878847926 +406 86 4 879793295 +843 444 2 879443442 +233 133 5 877661364 +470 181 4 879189434 +637 293 3 882902835 +606 491 4 880923799 +749 659 5 878847611 +37 833 4 880915565 +234 951 1 892334766 +715 655 4 875964203 +793 150 4 875103842 +378 275 5 880044312 +707 100 5 880059810 +746 79 5 885075165 +158 449 2 880134815 +55 121 3 878176084 +486 1011 4 879874939 +835 654 5 891033173 +545 234 3 879899905 +648 930 3 882212131 +818 912 3 891870301 +715 591 4 875962109 +782 1394 4 891498323 +222 140 1 881060062 +299 396 4 889503503 +606 138 3 880927923 +774 22 2 888556600 +627 161 2 879531302 +829 318 5 883149860 +648 413 2 882212609 +758 483 5 881975577 +459 289 4 879561679 +552 815 3 879222336 +851 1245 4 875730826 +323 93 4 878739177 +655 531 4 887473570 +405 747 1 885549309 +711 257 3 876185726 +291 772 4 874868169 +839 825 4 875752274 +459 245 3 879561731 +805 32 4 881697792 +207 117 3 875504809 +738 71 3 875350352 +682 201 4 888519365 +387 298 3 886480623 +620 409 4 889988196 +670 511 4 877975285 +230 211 5 880485181 +637 1011 1 882904961 +458 1067 5 886395311 +312 509 5 891699490 +13 307 2 881514684 +13 227 5 882397650 +653 139 2 880153123 +622 1074 2 882671185 +629 690 2 880116067 +784 328 3 891387502 +854 475 4 882812352 +497 291 3 879361707 +21 444 3 874951859 +293 245 3 888904265 +814 559 3 885411132 +569 321 4 879793103 +405 1194 1 885546201 +383 132 5 891193108 +804 203 4 879442122 +468 170 4 875301056 +782 1244 3 891499660 +601 69 3 876348987 +849 143 5 879695515 +286 955 5 877533914 +858 331 3 880932343 +847 288 4 878774722 +848 529 5 887042871 +456 546 4 881371942 +639 615 5 891240160 +749 434 4 878848369 +833 379 2 875224178 +751 381 1 889134419 +378 255 4 882642831 +573 507 5 885844638 +796 546 4 893048505 +503 1 5 879438233 +92 307 4 892655699 +851 987 1 875730601 +49 161 1 888069513 +399 102 3 882344236 +766 559 4 891310824 +749 616 3 878848612 +689 298 4 876676211 +393 122 1 889731465 +591 655 4 891031469 +786 82 4 882844096 +732 938 1 882590201 +807 450 4 893082931 +201 654 3 884113422 +837 535 1 875722246 +655 1213 2 887489282 +89 222 5 879441491 +794 221 4 891036222 +592 881 1 882607476 +543 730 3 874864346 +694 239 4 875729520 +542 585 2 886533068 +117 1165 3 881010727 +805 12 4 881695677 +654 218 2 887864330 +484 229 5 891195476 +760 125 4 875666242 +655 813 3 888474456 +504 139 3 887840589 +144 127 4 888105823 +130 1280 4 877984734 +203 1049 2 880434463 +190 546 3 891626000 +452 58 3 875261666 +747 501 5 888639362 +340 180 3 884991236 +660 222 2 891198063 +684 118 4 878760274 +854 499 4 882813537 +697 473 5 882622372 +593 371 3 875659076 +716 472 3 879794032 +432 248 4 889416352 +320 147 4 884748641 +751 755 4 889298116 +393 280 4 887744724 +405 444 3 885548385 +709 129 2 879846332 +806 144 5 882388658 +686 127 5 879545481 +197 4 3 891409981 +440 242 5 891546594 +786 520 4 882843311 +782 326 5 891498322 +813 335 2 883752417 +521 186 4 884478358 +717 106 4 884642932 +607 213 4 883880027 +826 92 4 885690636 +181 1199 1 878962675 +222 477 2 883815749 +506 211 4 874873198 +56 421 4 892677186 +606 685 3 880923349 +87 1028 4 879876946 +853 1025 4 879365360 +388 591 4 886437039 +435 679 3 884133372 +328 227 3 885047129 +621 121 3 880227385 +738 230 4 875351530 +788 712 3 880871804 +92 1042 3 875907079 +293 275 3 888904696 +698 505 2 886367750 +663 69 4 889493770 +245 596 4 888513361 +722 307 4 891280245 +618 69 4 891308176 +122 1113 5 879270677 +543 192 4 874863878 +582 369 1 882963114 +682 56 4 888519077 +454 279 4 881960330 +640 233 4 874778479 +710 187 5 882064096 +144 147 3 888104402 +378 392 3 880055636 +533 408 4 880402916 +851 693 5 875731816 +727 507 2 883710948 +768 111 3 880136139 +167 831 3 892738141 +752 289 1 891208299 +825 988 3 889020557 +846 258 3 883946284 +697 928 3 882622044 +200 94 4 884130046 +112 891 3 892439990 +782 1644 2 891500110 +642 366 4 886131707 +378 708 4 880055949 +734 83 4 891022733 +725 300 4 876106729 +801 259 3 890332986 +654 238 4 887864452 +804 662 4 879442413 +843 448 4 879443297 +708 866 5 892719143 +674 304 3 887762296 +758 482 5 881975922 +633 333 3 875567562 +766 482 3 891309117 +659 176 4 891045747 +109 576 3 880580663 +436 217 4 887771146 +301 232 4 882078287 +825 841 4 880756904 +560 845 3 879976602 +851 11 5 875731441 +31 153 4 881548110 +804 157 4 879442862 +802 445 3 875985686 +539 1211 3 879788371 +844 90 3 877387242 +690 223 4 881179069 +850 208 5 883194973 +748 179 4 879454728 +826 182 4 885690600 +224 380 4 888104188 +721 288 3 877137447 +751 168 5 888871900 +758 764 1 882054519 +695 305 3 888805797 +815 496 5 878694027 +855 283 3 879825383 +780 300 3 891362937 +294 254 3 889242937 +189 181 3 893264023 +840 1266 5 891204535 +422 219 4 879744086 +748 188 4 879455167 +752 322 1 891208261 +617 675 4 883789425 +640 22 4 874778479 +597 323 3 875339041 +782 750 4 891497793 +109 715 2 880583519 +830 194 4 891898720 +840 252 4 891203810 +805 175 5 881697229 +746 50 5 885075165 +533 77 4 879191713 +484 385 4 891195416 +807 705 4 892528918 +650 79 3 891369924 +592 281 4 882608573 +705 286 3 883426747 +146 345 4 891457538 +573 258 4 885843700 +423 286 4 891394632 +417 1090 3 879649577 +524 1093 4 884628136 +277 258 4 879544145 +465 7 5 883529916 +400 269 4 885676230 +592 1129 5 882608021 +31 303 3 881547719 +8 403 4 879362234 +303 477 3 879483827 +835 131 5 891033560 +817 358 4 874815679 +747 4 4 888733111 +833 653 4 875039558 +854 87 4 882814063 +424 115 1 880859385 +234 358 1 891034007 +824 678 3 877021121 +776 276 4 892313295 +700 168 3 884494420 +303 230 3 879483511 +786 161 4 882843534 +7 180 5 891350782 +655 371 3 887611537 +95 781 2 880572495 +381 178 4 892696291 +215 433 3 891435501 +747 302 5 888638091 +788 82 3 880870116 +846 205 5 883948141 +694 356 4 875729622 +796 282 4 892660364 +782 1609 1 891499439 +705 1228 2 883428258 +639 357 3 891239156 +470 276 5 879178619 +806 157 3 882387974 +615 736 5 879448149 +293 150 3 888904838 +531 259 1 887048789 +566 165 5 881649530 +790 748 1 884461073 +642 225 4 886569942 +632 91 3 879459187 +629 98 5 880117254 +785 1050 3 879439232 +620 951 3 889988258 +717 246 5 884715146 +665 293 4 884290728 +533 476 2 879365951 +828 325 2 891035438 +487 58 5 883446907 +591 211 4 891031469 +639 12 3 891239030 +606 845 4 878147770 +277 762 3 879543931 +653 746 5 878853936 +835 50 4 891035309 +378 951 3 880056547 +378 961 3 880055706 +787 307 4 888979074 +758 686 3 881974823 +184 813 4 889907711 +160 61 4 876861799 +635 327 5 878878752 +747 693 5 888732899 +158 562 4 880134607 +852 473 3 891036884 +706 331 5 880996945 +804 95 2 879447476 +738 603 5 892844079 +709 568 4 879848396 +615 423 5 879448672 +766 52 4 891309177 +852 408 5 891036843 +843 636 4 879443837 +624 250 4 879792623 +753 510 4 891401457 +627 697 5 879530042 +827 268 4 882201175 +293 316 3 888904392 +757 144 4 888466490 +666 632 4 880568028 +59 687 1 888206764 +796 731 3 893047320 +117 410 3 886021458 +715 288 4 875962201 +189 952 5 893264619 +677 222 4 889399171 +734 582 2 891022684 +711 193 4 879993092 +345 124 5 884900777 +707 65 4 886286004 +747 1204 4 888639102 +122 403 4 879270805 +833 154 5 875038775 +592 332 3 882607286 +230 100 4 880485856 +679 241 3 884488149 +827 313 3 892157221 +632 233 3 879459441 +798 356 3 875639236 +245 210 3 888513026 +642 383 5 886570062 +849 172 5 879695469 +710 223 4 882063766 +775 270 2 891032742 +493 124 3 884130253 +489 332 5 891447823 +840 428 4 891209547 +758 434 3 881976233 +580 258 5 884124103 +682 154 5 888521489 +399 57 4 882343260 +376 357 4 879434750 +704 172 2 891397058 +797 328 2 879439136 +682 254 2 888518871 +476 208 5 883364250 +606 435 4 880923862 +727 680 3 883708462 +641 242 5 879370299 +845 311 4 885409493 +788 125 3 880870335 +326 4 1 879876688 +689 748 5 876674637 +853 302 4 879364669 +13 507 1 882140070 +603 419 2 891957012 +463 243 1 877384970 +795 771 3 883255324 +788 744 4 880869621 +158 175 4 880135044 +774 203 2 888558447 +201 1401 2 884140670 +621 940 3 874963166 +443 313 4 883504564 +506 568 5 889979761 +578 250 2 888957735 +738 385 5 892844079 +472 810 5 875982922 +715 111 3 875962173 +308 420 4 887740216 +839 281 3 875752456 +851 272 5 891961663 +465 8 4 883530991 +648 455 3 882211685 +707 956 5 886287107 +500 301 2 888538350 +254 167 3 886474712 +841 892 3 889067182 +663 134 5 889493818 +796 1040 3 893047460 +506 770 3 874874110 +859 111 4 885776056 +807 495 4 892530792 +862 50 5 879304196 +791 50 5 879448338 +312 610 5 891698921 +757 1035 2 888469113 +846 36 2 883950665 +238 405 4 883576424 +360 56 4 880356131 +655 746 3 891999461 +197 182 3 891409935 +1 153 3 876893230 +684 596 3 875812351 +826 161 3 885690677 +436 43 2 887770300 +339 136 5 891033898 +586 295 3 884068393 +682 218 3 888520977 +856 879 3 891489450 +733 224 4 879535265 +546 181 5 885140754 +558 15 3 879436140 +530 204 4 883790833 +474 943 4 887925751 +727 109 2 883709266 +813 538 3 883752380 +773 1187 3 888540020 +724 326 4 883757671 +648 168 5 884797068 +486 1 4 879874870 +763 69 4 878915600 +738 174 5 875349968 +825 298 5 880756726 +391 471 2 877399864 +26 678 2 891349122 +820 538 3 887954906 +417 79 3 879647924 +292 50 4 881103977 +709 452 3 879848318 +863 754 3 889289067 +732 324 2 882590201 +749 245 4 878846423 +563 70 4 880506528 +784 292 4 891387315 +653 654 2 880606620 +280 228 3 891701405 +42 660 3 881108484 +706 7 3 880997412 +179 914 5 892151174 +332 356 3 888360396 +39 272 2 891400094 +815 102 3 878694028 +606 93 4 878142865 +308 182 5 887737194 +357 407 3 878952341 +642 726 2 886570131 +548 898 1 891043509 +327 507 4 887744205 +699 405 3 878882608 +532 781 5 877635505 +844 423 3 877382762 +418 750 2 891282626 +790 230 4 885155846 +536 404 4 882359838 +622 396 1 882671222 +772 332 4 877533731 +619 17 1 885954184 +852 323 3 891036039 +707 602 4 886287290 +658 488 4 875148196 +49 1075 2 888066424 +756 3 1 874829174 +666 255 4 880313423 +690 237 4 881178330 +653 597 4 878854810 +437 629 3 881002405 +766 95 3 891309421 +373 433 3 877098223 +793 109 4 875104119 +768 332 4 879523820 +201 212 4 884111899 +422 447 4 879744143 +715 232 4 875964905 +835 610 5 891034401 +272 208 4 879455176 +429 847 3 882385569 +543 663 4 874866208 +689 121 5 876676433 +661 194 5 876016667 +552 405 3 879222268 +690 234 4 881179878 +643 211 4 891447617 +776 569 3 892920403 +535 79 3 879618502 +571 194 3 883354818 +543 397 3 877547005 +633 1046 4 877212085 +786 240 1 882842762 +851 255 3 890343651 +412 211 4 879717177 +694 237 4 875728509 +846 136 3 883947861 +607 212 3 883880052 +653 193 4 878866951 +833 614 2 875131539 +381 462 4 892697442 +836 507 4 885754149 +851 544 4 874728396 +554 684 4 876550342 +722 678 3 891280443 +280 111 4 891700983 +823 233 4 878439365 +340 15 5 884991396 +391 148 3 877400062 +666 616 3 880139253 +499 153 4 885599269 +363 186 3 891494865 +405 60 1 885549589 +455 660 4 879111454 +650 69 2 891382877 +773 171 5 888538726 +582 475 5 882961000 +747 929 3 888733218 +5 189 5 878844495 +846 1411 4 883950364 +702 1127 2 885767414 +476 56 4 883365019 +690 233 3 881179968 +268 201 3 875309801 +393 184 4 889555251 +104 250 3 888465972 +632 1 3 879458692 +707 647 5 880061652 +494 86 3 879541298 +83 820 2 881971231 +639 651 4 891239349 +782 532 2 891499370 +389 588 5 879991298 +794 557 4 891036008 +436 1227 2 887772028 +587 323 4 892871284 +82 169 4 878769442 +280 385 5 891702544 +507 691 5 889964162 +452 127 5 885544109 +567 474 5 882426135 +405 727 1 885546247 +391 479 4 877399030 +802 1025 3 875984637 +355 329 3 879486421 +399 401 3 882350710 +643 1139 3 891449680 +118 258 5 875385386 +318 265 4 884495664 +102 265 3 888801622 +846 403 3 883948765 +244 1150 4 880604195 +804 675 3 879445355 +854 126 3 882812826 +390 13 2 879694409 +537 474 5 886030805 +795 742 2 880556833 +775 269 4 891032742 +158 810 4 880134759 +548 358 2 891043547 +798 465 4 876176115 +766 675 3 891308927 +368 777 2 889783586 +301 404 3 882076463 +498 83 3 881957846 +437 432 3 880140854 +830 22 5 891561673 +686 174 4 879545966 +59 633 3 888204641 +487 588 5 883446725 +445 644 3 890988205 +838 497 5 887067162 +12 228 4 879959465 +447 1326 4 878854838 +506 497 5 874873703 +14 173 4 879119579 +830 177 4 891561870 +508 234 4 883767465 +585 1558 5 891282893 +833 1214 4 875225193 +378 1053 3 880332831 +459 286 4 879561532 +643 404 4 891447959 +788 10 4 880869584 +582 293 5 882961082 +618 526 5 891308141 +308 567 4 887741329 +637 934 1 882905285 +433 293 3 880585843 +805 603 4 881696335 +676 64 5 892686563 +712 60 1 874730520 +573 347 4 885843476 +455 591 4 879109923 +714 15 3 892777197 +654 97 3 887864727 +606 12 2 880924384 +299 749 1 877618647 +398 429 4 875716829 +725 100 5 876106729 +691 478 4 875543281 +606 655 4 880926469 +417 810 3 879649178 +216 763 4 880232953 +788 53 1 880871717 +237 176 3 879376328 +749 841 3 878850768 +846 736 4 883948874 +804 1 5 879442661 +716 282 3 879793501 +850 490 5 883194859 +199 408 5 883782716 +389 945 4 880165070 +605 357 5 879426180 +397 210 4 885349825 +403 100 5 879785974 +665 109 4 884292654 +733 322 2 879536523 +230 168 4 880484616 +435 321 3 889722170 +345 65 4 884992158 +778 209 4 890769470 +391 628 4 877399864 +498 124 3 881955291 +790 572 3 885157956 +843 145 3 879443597 +479 148 2 879460354 +303 271 2 879466065 +766 674 3 891310772 +833 22 3 875122716 +450 1282 3 882394364 +489 268 2 891448453 +13 228 4 882140389 +177 642 4 880130972 +378 435 4 889665232 +216 673 4 880244779 +835 1153 4 891035309 +782 1379 3 891500028 +860 4 4 885991163 +561 673 3 885809313 +271 481 3 885848559 +623 121 4 891034129 +551 177 5 892777274 +756 1274 2 874828278 +407 756 2 876348232 +85 50 5 882813248 +435 926 3 884133972 +782 515 3 891500028 +553 1009 4 879949212 +412 150 4 879717621 +745 181 2 880122965 +743 879 4 881277656 +798 222 3 875295616 +116 315 3 886309605 +436 99 3 887770344 +825 864 3 880756725 +567 23 4 882426740 +749 231 4 878849660 +487 71 3 883530786 +472 386 5 892790953 +268 178 4 876518557 +716 526 5 879795269 +830 402 4 892503093 +360 297 4 880354484 +569 258 5 879792991 +848 152 5 887046166 +746 24 4 885075434 +642 292 2 887663326 +201 46 4 884140247 +379 141 4 880525839 +49 725 2 888069354 +712 26 2 874957053 +358 65 4 891270405 +744 238 4 881170416 +496 147 3 876064356 +508 91 4 883767246 +741 275 4 891019587 +776 22 5 891628752 +823 274 4 878439038 +694 378 3 875730313 +592 252 3 882608915 +566 684 4 881649802 +747 1067 2 888733348 +542 71 3 886533562 +22 89 5 878887680 +663 260 2 889491861 +806 24 3 882385394 +500 472 3 883865374 +642 66 5 885603740 +484 174 5 891195298 +787 259 4 888979721 +499 117 3 885599246 +627 70 4 879530408 +659 578 3 891387351 +774 258 1 888555792 +716 28 5 879794815 +667 192 5 891034947 +648 145 4 884883616 +78 25 3 879633785 +663 288 4 889491617 +328 318 5 885045740 +830 95 3 891561474 +625 168 3 891262837 +496 469 3 876065962 +585 18 2 891283124 +532 722 3 888629836 +524 498 5 884636453 +764 1221 4 876430033 +554 13 2 876232730 +826 684 3 885690600 +843 195 4 879444711 +766 951 3 891310540 +654 735 4 887864846 +845 903 4 885409493 +832 334 2 888259984 +59 662 3 888206125 +389 88 3 880613773 +854 409 2 882813421 +608 418 1 880405971 +599 276 2 880951439 +534 477 3 877807780 +683 133 5 893286208 +606 471 4 878146986 +61 269 3 891206125 +773 228 3 888539993 +472 174 5 875981595 +128 605 3 879967804 +293 469 4 888906378 +450 168 5 882376803 +407 158 2 876342927 +682 772 4 888517922 +640 180 5 874777528 +851 338 3 891961750 +707 900 4 890008041 +612 275 5 875324710 +488 707 2 891294707 +655 764 1 887431074 +682 121 4 888520799 +638 176 3 876694861 +727 265 4 883710326 +221 55 4 875245319 +595 546 4 886922069 +551 92 5 892783672 +608 742 4 880406299 +837 19 4 875721948 +529 322 4 882535383 +227 249 2 879035775 +665 9 4 884290608 +606 24 5 878143509 +795 240 2 883767338 +467 1226 4 879532744 +286 431 5 889651822 +682 47 1 888517870 +778 121 3 890803561 +588 161 4 890015580 +445 1081 1 891200447 +393 1016 5 887744688 +643 739 3 891449476 +627 802 2 879531557 +751 269 5 888871900 +373 213 4 877100061 +340 502 2 884991678 +405 545 1 885547766 +561 480 4 885807484 +774 135 3 888556600 +853 331 2 879364822 +788 218 4 880871328 +616 303 4 891224558 +727 50 4 883708951 +825 50 4 880755418 +593 106 2 875660347 +246 724 4 884922383 +853 245 3 879365091 +21 994 2 874951104 +856 678 3 891489666 +863 264 3 889289385 +436 327 5 887768694 +405 777 1 885548275 +392 50 5 891038110 +719 118 2 879360001 +846 1286 4 883948173 +642 871 3 885605835 +283 412 5 879297526 +828 753 4 891037047 +709 127 5 879847945 +592 939 3 882956510 +725 358 3 876103744 +766 493 4 891309261 +841 331 5 889066999 +843 183 5 879443800 +94 504 5 885870612 +553 56 4 879949042 +655 337 2 887433538 +660 99 2 891200704 +286 278 5 876521700 +297 228 2 875238984 +302 289 3 879436874 +561 215 3 885809872 +846 603 5 883947960 +666 856 5 880139765 +856 258 4 891489356 +755 302 4 882569771 +796 326 4 892612032 +659 131 4 891383412 +468 97 5 875288503 +757 193 4 888445521 +847 405 3 878938982 +782 1669 2 891500150 +807 612 5 892528690 +313 625 4 891030189 +696 313 3 886403672 +625 23 4 891263960 +524 414 4 884635136 +618 23 5 891306990 +774 849 1 888557482 +151 222 5 879525002 +759 298 4 875227858 +178 304 4 882823375 +798 142 3 876175427 +839 276 3 875751799 +486 327 3 879874112 +715 179 4 875963596 +826 1219 4 885690442 +606 129 3 878142865 +815 465 5 878694952 +425 343 3 890346517 +344 26 3 884901561 +308 671 4 887739014 +718 742 5 883348873 +514 13 3 876063880 +748 176 5 879454773 +381 134 5 892696347 +81 1059 3 876534366 +577 468 3 880474766 +472 742 5 883903715 +655 855 3 887428965 +807 22 5 892528470 +851 564 3 875806892 +621 578 5 874964604 +650 502 3 891387353 +766 272 4 891306880 +774 436 2 888557739 +841 748 4 889067253 +804 568 4 879442793 +380 651 3 885478292 +655 1147 3 887472767 +634 991 3 875729239 +727 378 3 883712603 +854 122 3 882813287 +857 294 3 883432251 +308 69 2 887738664 +711 420 5 879995302 +437 237 4 880140466 +727 386 2 883712805 +282 319 4 879949394 +434 151 5 886724453 +653 941 1 880153040 +850 202 4 883194737 +450 630 3 882376188 +846 674 4 883949046 +144 14 4 888104122 +864 71 3 888889389 +765 25 4 880346418 +682 566 3 888519260 +65 531 4 879218328 +249 327 4 879571489 +661 684 3 888299899 +625 498 4 891263703 +197 1420 1 891409683 +757 129 3 888444400 +545 1228 3 884134603 +346 1217 4 886274201 +804 522 3 879445190 +625 144 4 891962917 +823 659 4 878437589 +838 169 4 887067390 +85 238 2 879453965 +804 243 3 879440727 +710 192 5 882063921 +45 7 3 881008080 +863 301 4 889289240 +472 443 4 875982149 +718 546 4 883349158 +751 386 3 889299078 +655 311 3 887473702 +694 584 4 875727877 +447 1016 3 878854918 +311 645 5 884366111 +660 38 2 891201842 +167 615 5 892738277 +518 121 5 876823804 +760 50 3 875666268 +619 53 2 885954341 +798 662 3 875916187 +763 418 4 878921530 +722 458 4 891280955 +650 636 3 891370066 +763 98 4 878914968 +684 202 4 878759384 +796 393 4 893218933 +669 12 5 891517287 +690 120 1 881179469 +625 655 3 891999926 +601 210 4 876350060 +84 823 3 883452672 +653 575 1 880153406 +417 796 4 879648881 +788 76 3 880869323 +447 546 2 878854704 +806 150 4 882385563 +227 405 2 879035934 +298 820 4 884183897 +864 408 5 877214085 +682 384 2 888522073 +705 284 3 883427190 +751 748 2 887135437 +543 94 3 877550791 +183 94 3 891466863 +239 647 5 889180651 +711 143 5 879993236 +864 53 4 888891794 +865 1028 1 880144024 +648 368 2 884366748 +833 157 2 875132195 +753 499 3 891402323 +758 529 4 881979609 +551 779 4 892785399 +429 277 4 882386096 +778 738 1 891578101 +807 1483 4 892527385 +506 684 5 874873529 +297 156 4 875240090 +846 585 2 883949643 +606 307 4 888334083 +765 242 5 880345862 +841 288 3 889067046 +480 294 1 891208058 +343 154 5 876406552 +648 444 3 884883679 +544 331 3 884795516 +358 174 1 891270560 +847 238 2 878939975 +862 407 3 879303843 +672 815 4 879788819 +798 270 4 880483677 +712 623 4 874729778 +188 318 5 875072518 +683 682 1 893284032 +387 526 4 886483150 +357 687 3 878951101 +805 358 3 879971215 +16 87 4 877720916 +748 357 3 879454584 +786 234 3 882843753 +838 311 4 887060659 +403 118 5 879785974 +795 184 4 880588118 +279 550 4 880850073 +435 781 3 884133447 +693 606 4 875484584 +847 1172 1 878939803 +326 849 1 879876975 +788 1135 2 880871460 +811 304 5 886377311 +535 702 1 879619067 +848 584 3 887039531 +854 1014 3 882813315 +125 1270 3 892838977 +714 300 5 892778035 +757 423 3 888445279 +775 272 4 891032742 +864 642 3 888890432 +332 240 4 887938299 +826 188 4 885690636 +778 204 4 890726518 +807 1138 5 893084886 +825 832 3 881101246 +846 672 4 883949594 +537 338 1 886029239 +697 1160 1 882622824 +286 747 4 877533796 +798 1517 4 875743605 +703 237 5 875242787 +661 209 4 876013492 +743 222 4 881277962 +139 242 3 879537876 +567 1021 4 882425736 +752 311 3 891207983 +292 197 5 881105246 +648 15 1 884795447 +363 4 5 891494962 +475 127 4 891627857 +279 864 5 875296829 +663 742 4 889492720 +540 475 4 882156983 +370 193 4 879435168 +234 100 4 892079769 +829 250 3 882816754 +125 49 3 879455241 +598 343 2 886710795 +735 327 3 876698022 +669 258 2 891182622 +298 132 5 884182966 +417 501 3 879647540 +489 538 4 891448222 +716 412 2 879794727 +648 9 1 884795447 +524 419 1 884635031 +458 283 5 886394730 +790 191 3 885155209 +537 212 3 886032123 +727 232 3 883712780 +17 111 3 885272674 +294 268 4 889241426 +817 147 3 874815947 +268 423 2 875309859 +770 325 4 875971703 +767 176 3 891462759 +293 528 4 888906490 +254 142 3 886474489 +435 369 1 884134771 +535 511 3 879618655 +804 184 5 879441727 +255 546 3 883216902 +621 270 4 890517239 +419 50 5 879435541 +785 301 4 879438565 +515 1430 3 887658604 +618 98 5 891307494 +276 443 4 874792692 +773 100 4 888539347 +406 418 5 879793081 +834 762 4 890863072 +833 449 2 875223923 +645 427 5 892053483 +697 300 5 882621431 +337 50 5 875184413 +605 153 4 879424784 +58 313 5 884304267 +650 644 3 891371061 +645 134 5 892054364 +416 699 5 893212895 +775 331 4 891032923 +321 651 3 879441178 +757 24 4 888444616 +216 356 3 880245125 +535 213 5 879618849 +21 975 3 874951447 +288 528 4 886374286 +286 22 4 877532889 +474 131 4 887927509 +514 211 3 876067235 +851 760 4 875730418 +712 404 3 874730467 +234 125 3 892335739 +542 315 4 886532120 +334 931 1 891549513 +731 508 1 886186811 +786 183 4 882843150 +50 124 1 877052400 +758 1025 3 881295176 +741 25 3 891458428 +772 304 4 876250442 +727 775 4 883713147 +275 448 3 880314383 +308 194 5 887739257 +682 386 2 888521942 +795 1110 3 883251943 +868 204 2 877105882 +151 168 5 879528495 +103 118 3 880420002 +676 258 2 892685370 +717 282 5 884642817 +198 823 2 884206587 +42 1046 3 881108760 +786 143 4 882843039 +643 92 4 891447835 +293 663 3 888906516 +578 324 1 888957735 +437 450 3 880143040 +158 511 5 880134296 +802 56 3 875985601 +777 157 3 875980235 +718 879 2 883348355 +1 101 2 878542845 +854 273 4 882812852 +835 609 4 891034310 +784 286 3 891386988 +212 318 5 879303928 +94 417 3 891722799 +634 741 3 875728834 +830 633 4 891898661 +181 222 4 878962919 +345 1101 4 884993436 +458 250 1 886396637 +622 402 3 882670252 +122 83 5 879270327 +478 447 4 889396732 +427 328 4 879700908 +843 635 2 879443544 +733 459 4 879535440 +185 286 4 883523876 +711 1160 5 884485704 +301 318 5 882075962 +458 298 5 886396677 +832 326 4 888259121 +798 306 3 875637329 +436 340 5 887768445 +708 362 1 892718575 +434 283 3 886724505 +112 245 4 884992691 +668 752 4 890349005 +642 470 4 886206991 +851 527 5 891961663 +588 1469 3 890026705 +839 475 5 875751856 +741 202 3 891455316 +328 520 5 885045844 +312 673 5 891699426 +379 502 5 887437190 +308 653 5 887736999 +666 582 4 880139642 +532 833 4 888629804 +560 181 4 879975661 +573 22 4 885844394 +80 86 5 887401496 +867 660 4 880078723 +438 815 5 879868581 +776 661 5 893077159 +686 135 5 879547276 +585 740 4 891284588 +487 1074 1 884051840 +771 873 3 886635816 +796 427 4 892662355 +542 121 2 886532381 +851 172 5 875731567 +532 191 5 888635366 +852 118 4 891037262 +184 134 5 889909618 +579 194 5 880952271 +474 510 4 887925837 +838 480 4 887066078 +805 161 1 881694823 +655 582 2 887427131 +712 781 4 874956841 +658 1101 4 875147995 +782 1511 2 891500194 +828 1268 2 891038098 +85 357 4 879454045 +650 181 4 891371116 +313 489 4 891017372 +650 1 3 891369759 +409 530 4 881107602 +547 303 3 891282715 +796 56 5 892663009 +716 705 5 879794892 +435 108 1 884132540 +815 31 4 878695490 +314 72 2 877888996 +600 576 3 888451840 +717 358 2 884642001 +507 121 5 889965997 +756 325 3 874832132 +110 1182 2 886989566 +847 763 1 878775914 +619 295 4 885953804 +833 128 3 875123536 +548 13 1 891415677 +716 427 5 879795375 +268 588 3 875310745 +867 196 3 880079043 +201 173 3 884111360 +655 882 3 887473879 +665 215 2 884294880 +784 271 3 891387623 +457 709 5 882547856 +775 343 4 891033022 +627 51 5 879530866 +786 381 3 882843397 +758 441 3 882054797 +709 294 3 879847304 +682 659 1 888520638 +503 707 5 880382768 +334 217 2 891549805 +495 421 1 888634389 +682 991 2 888518871 +845 877 2 885409719 +70 63 3 884151168 +482 881 3 887644022 +553 197 5 879948831 +699 1068 3 879146547 +664 71 4 878090125 +682 720 4 888522699 +790 91 3 885157862 +196 762 3 881251955 +790 386 2 885158208 +864 50 5 877214085 +798 1049 3 875638150 +748 50 5 879454428 +512 273 5 888579645 +854 281 3 882813047 +627 12 4 879529819 +554 1042 3 876550610 +711 216 4 879993149 +593 1012 3 877727961 +846 519 4 883947694 +658 169 5 875147935 +786 132 5 882842946 +471 225 5 889828026 +655 512 3 887474050 +825 508 4 880756725 +417 668 2 880953014 +601 1540 2 876350017 +398 173 4 875719080 +825 1015 2 880756321 +867 480 5 880078401 +551 802 4 892784437 +703 222 4 875242704 +535 319 5 879617310 +650 228 4 891369954 +470 9 5 879178370 +727 658 5 883711720 +697 181 4 882621913 +780 172 5 891363723 +712 1469 4 874730206 +846 651 3 883948141 +859 25 4 885776056 +861 170 5 881274672 +334 154 4 891547235 +831 1 4 891354573 +805 223 5 881698139 +625 603 4 891636000 +632 684 5 879457903 +629 4 3 880117513 +694 228 4 875727306 +385 1022 3 883791570 +810 326 5 891873739 +94 69 3 885870057 +334 171 4 891546132 +44 447 4 878347598 +395 216 3 883764378 +221 121 2 875244813 +548 156 5 891044356 +867 23 5 880078723 +679 196 4 884487610 +830 227 3 891561737 +405 365 1 885545672 +391 48 4 877399171 +249 2 3 879641284 +798 29 4 875915913 +548 595 4 891416071 +865 928 1 880144368 +693 188 2 875483847 +653 97 3 878854383 +246 1039 4 884921227 +705 550 2 883428058 +454 114 3 881960330 +654 1 4 887863557 +782 1038 4 891498213 +202 195 4 879726914 +843 152 2 879446458 +405 202 4 885547221 +774 357 2 888556434 +846 601 5 883947500 +267 203 5 878972241 +319 682 3 879977089 +645 660 3 892055628 +289 742 4 876789463 +731 945 4 886183209 +179 902 1 892151064 +868 1031 1 877109535 +610 210 3 888703290 +300 1094 5 875650298 +572 124 5 879449610 +786 191 4 882843272 +434 628 1 886724873 +790 708 3 885158082 +711 568 3 879995238 +790 864 4 884462647 +276 1000 2 877935262 +225 603 5 879540649 +721 325 3 877137109 +363 120 1 891500218 +267 239 4 878972873 +334 1226 4 891545540 +276 783 1 874792143 +246 174 3 884921086 +588 51 4 890026395 +825 741 4 881343947 +119 259 4 886175571 +707 902 5 890008121 +598 312 5 886711452 +770 288 4 875971612 +434 287 5 886724359 +697 25 3 882622188 +843 159 2 879443951 +506 168 5 874874055 +765 286 5 880345862 +217 385 2 889069808 +151 208 4 879524443 +846 648 5 883948343 +610 183 4 888703749 +378 77 4 880056453 +497 195 4 879310730 +788 983 3 880871173 +530 195 3 883784105 +716 488 4 879796171 +767 506 5 891462829 +474 526 5 887927339 +221 1437 3 875245967 +659 524 4 891332158 +704 657 4 891397667 +10 59 4 877886722 +848 615 5 887037980 +455 289 3 892230574 +643 268 4 891450748 +805 154 5 881704063 +833 928 2 879818689 +523 1014 5 883700307 +330 202 5 876546948 +643 483 4 891446889 +373 941 4 877105563 +269 181 2 891448871 +418 327 1 891282836 +117 265 4 881012940 +500 69 4 883873839 +389 42 4 879991147 +854 925 2 882813179 +809 328 5 891036989 +355 306 4 879486422 +407 98 5 875044510 +788 121 4 880869469 +396 597 4 884646647 +796 615 4 892690263 +562 435 4 879195125 +804 403 3 879445739 +338 523 3 879438366 +701 50 5 891447197 +110 12 4 886987826 +545 546 3 879901281 +798 940 1 875914898 +276 820 3 874793062 +239 205 3 889181015 +639 83 4 891239790 +650 200 4 891386047 +343 234 1 876405633 +768 826 1 883835210 +588 443 3 890024876 +65 356 5 879216825 +786 15 3 882841855 +682 576 4 888522754 +648 931 2 882212609 +707 498 3 886286133 +127 228 5 884364866 +857 321 4 883432352 +690 168 3 881177376 +395 739 3 886481149 +832 471 4 888260089 +717 405 3 884642738 +773 14 5 888538620 +757 333 4 888443263 +750 881 2 879446114 +864 273 5 878179555 +591 428 4 891031500 +618 283 3 891309217 +18 956 5 880131525 +840 98 5 891204160 +796 381 3 893047208 +782 315 4 891497698 +561 71 2 885810039 +158 232 3 880134477 +624 295 3 879793511 +840 498 5 891204264 +686 181 4 879547337 +592 194 4 882955543 +537 464 4 886031506 +782 1258 2 891499440 +862 210 4 879304410 +504 773 3 887909936 +744 50 3 881172357 +532 1016 4 888636450 +575 321 3 878146540 +405 858 1 885548435 +679 70 4 884487325 +269 451 1 891450880 +557 532 5 881095916 +181 332 2 878961173 +786 465 4 882844010 +840 663 4 891204322 +265 107 1 875320398 +655 1198 3 888984538 +823 404 4 878438484 +320 240 3 884748818 +537 213 4 886031830 +795 831 2 880560971 +498 1073 3 881961496 +708 283 1 892719363 +846 193 5 883948417 +837 628 3 875722225 +843 403 2 879444934 +717 340 4 884641599 +841 270 4 889067045 +870 517 2 875680597 +805 1170 5 881700749 +804 209 3 879442538 +493 1 3 884130416 +766 431 3 891310067 +405 723 1 885546288 +535 64 5 879617531 +629 12 5 880117333 +305 486 5 886323563 +843 449 3 879444083 +48 524 3 879434723 +592 597 2 882609056 +293 97 4 888905898 +276 447 4 874792663 +571 657 4 883354992 +299 166 4 889501926 +181 1380 1 878962086 +828 1073 4 891036630 +815 96 5 878693871 +365 1 4 891303999 +505 604 5 889333598 +863 1294 4 889289618 +634 477 3 876171093 +820 289 2 887955020 +825 1291 2 889021258 +207 255 3 877845763 +843 227 3 879443908 +782 1386 3 891500066 +682 959 4 888521803 +843 205 4 879446888 +796 603 4 892662152 +472 33 5 875981829 +597 111 3 875342355 +738 511 4 875349584 +671 31 2 883546333 +655 845 2 887426446 +739 56 4 886958938 +774 254 1 888559144 +234 1021 4 892333765 +669 172 3 891517159 +722 13 2 891281876 +766 209 3 891309053 +236 655 3 890116670 +597 24 3 875341858 +757 179 4 888467855 +860 289 3 880829225 +715 1047 3 875962500 +772 313 5 889028363 +660 168 5 891199477 +527 211 4 879456289 +788 370 2 880870881 +839 1664 1 875752902 +372 44 4 876869837 +749 755 4 878848866 +577 307 3 890089564 +642 765 3 885606234 +659 204 4 891384152 +450 1303 4 887136016 +440 272 5 891546631 +843 151 2 879447007 +824 286 2 877020871 +686 12 5 879545758 +185 701 3 883524364 +308 131 4 887739383 +588 173 5 890024677 +324 270 5 880575045 +817 15 3 874815836 +233 121 4 880190627 +783 328 4 884326545 +256 554 4 882164644 +234 445 2 892334713 +541 676 3 883865063 +579 582 4 880952102 +586 121 5 884062010 +840 234 5 891204948 +109 222 4 880563471 +858 286 4 879458829 +489 751 5 891362773 +778 496 1 891234406 +707 224 4 880059876 +851 405 5 874767550 +828 301 2 893186210 +600 195 4 888451492 +823 229 3 878439211 +830 696 2 892502651 +262 418 3 879794223 +499 530 4 885599390 +268 259 3 876513675 +527 286 2 879455354 +87 27 4 879876037 +682 89 4 888522418 +549 181 4 881672241 +393 139 4 889729185 +634 1335 2 877017975 +45 151 2 881013885 +682 1090 2 888521047 +197 184 1 891409981 +495 144 4 888634070 +301 323 4 882075110 +868 398 1 877109082 +771 542 4 880659834 +271 40 1 885849558 +712 955 2 874957293 +489 1613 4 891449466 +38 501 5 892429801 +846 423 4 883949335 +299 165 4 889501890 +130 1276 4 876251312 +850 56 1 883195034 +104 127 3 888465201 +497 97 4 879310473 +749 183 5 878847286 +313 309 4 891031125 +698 283 2 886367849 +829 339 2 891992167 +64 751 2 889737047 +49 328 2 888068651 +818 1105 1 891883071 +462 136 4 886365498 +848 480 5 887040025 +145 890 2 885557505 +542 523 4 886532788 +761 222 4 876190025 +276 7 5 874786517 +115 741 3 881170065 +871 245 3 888192475 +416 509 5 893214041 +756 421 4 874829637 +796 974 3 893194740 +373 194 4 877098714 +437 292 5 880139631 +655 296 4 888474934 +532 310 4 888634802 +411 222 3 891035152 +761 1014 1 876190256 +757 205 4 888467498 +281 342 1 881200789 +22 228 4 878887810 +848 207 5 887043265 +766 504 3 891309484 +665 1061 4 884292654 +2 127 5 888552084 +825 472 5 880756442 +846 483 5 883948173 +6 298 3 883599558 +128 451 4 879967879 +394 216 3 880888063 +715 743 2 875962806 +11 54 3 891905936 +653 380 3 880151984 +749 176 4 878847954 +271 591 4 885847901 +495 202 4 888633042 +727 159 2 883712016 +293 285 5 888904632 +472 562 5 875983023 +453 48 4 877553761 +588 941 5 890026513 +607 311 4 883879971 +472 260 4 875977827 +854 79 4 882814298 +796 217 4 893218556 +62 708 3 879375912 +825 924 2 880756725 +862 505 4 879305016 +342 320 5 875318833 +805 423 1 881698175 +532 483 5 892867296 +303 773 4 879466891 +569 1197 4 879793465 +838 223 3 887065807 +357 322 3 878951101 +562 144 5 879196445 +830 651 4 891561737 +445 689 1 891199458 +846 796 1 883950524 +721 402 4 877147200 +290 596 4 880474141 +840 737 4 891205320 +830 183 4 891462467 +831 1063 4 891354668 +498 229 2 881961877 +807 679 4 892705307 +631 307 4 888465033 +279 44 1 875313514 +23 153 4 874786438 +783 345 4 884326461 +389 301 4 879916385 +59 290 3 888203750 +655 328 2 887425025 +468 180 5 875291902 +417 164 3 879648156 +862 127 5 879304196 +684 395 2 878762243 +708 274 4 877326086 +823 568 3 878439293 +786 199 4 882843006 +385 1017 3 883791666 +850 566 5 883195256 +674 315 3 887762296 +215 88 3 891436277 +460 279 2 882912316 +106 566 4 881452711 +811 294 4 886377483 +694 489 4 875727640 +683 911 3 893286346 +175 273 2 877107640 +851 240 4 875730629 +596 323 4 883538965 +269 464 3 891448283 +541 38 3 883871617 +710 1 4 882064377 +269 121 1 891451013 +709 181 4 879846375 +648 546 4 882211736 +587 313 5 892870956 +79 340 4 891271180 +378 13 3 880044609 +89 236 5 879441400 +766 1203 3 891309421 +608 207 5 880404975 +221 651 4 875245350 +870 952 3 880584584 +332 1042 4 888360396 +854 255 1 882812852 +854 291 2 882813074 +265 282 5 875320714 +554 378 4 876549808 +655 1071 2 888984293 +798 576 3 875639324 +405 1387 2 885549745 +773 204 3 888539559 +864 168 4 888888067 +773 47 4 888539512 +196 173 2 881251820 +846 1110 3 883950390 +847 434 3 878941520 +852 257 4 891036414 +764 588 5 876246409 +875 772 5 876465188 +783 260 4 884326690 +805 91 5 881695527 +867 211 3 880078484 +844 179 3 877387548 +500 300 4 883864749 +533 48 4 879191373 +18 603 3 880129388 +24 132 3 875323274 +592 730 4 882956011 +747 509 5 888639176 +503 744 2 879454442 +416 418 4 876699793 +560 1021 4 879975718 +567 647 5 882425998 +823 333 3 878439845 +664 717 1 876526555 +655 282 3 888685989 +660 100 3 891198063 +141 255 4 884585039 +707 1311 3 886287608 +775 307 4 891032989 +349 276 5 879465841 +137 1028 5 881433409 +605 143 1 879424345 +6 535 2 883600030 +32 298 5 883717581 +642 96 5 885842289 +661 189 4 876013850 +727 403 4 883712282 +343 189 4 876405697 +661 215 3 876015657 +821 181 4 874792521 +648 22 4 884628482 +727 156 4 883710326 +805 582 3 881698798 +254 62 3 886474009 +49 919 5 888066133 +605 126 5 880762240 +710 654 4 882064524 +303 833 2 879484327 +104 272 4 888441878 +497 167 2 879363111 +862 357 3 879305204 +492 193 4 879969415 +838 1115 4 887064476 +130 739 5 876252420 +699 111 3 878881875 +592 132 5 882955794 +553 153 5 879949107 +480 100 4 891207715 +789 1161 3 880332189 +415 531 5 879439684 +682 257 2 888518704 +731 56 2 886179161 +325 523 3 891478376 +463 137 2 877385237 +768 252 3 880136317 +694 528 3 875728842 +724 358 1 883757834 +664 588 3 878092569 +710 269 3 882063224 +650 187 2 891381585 +91 651 5 891439057 +846 1055 3 883949459 +694 230 4 875727143 +774 4 2 888556090 +794 24 5 891035957 +416 553 4 886317079 +565 462 4 891037692 +694 496 4 875727640 +797 781 5 879439594 +711 191 5 879993959 +21 260 2 874950972 +344 311 4 884814359 +683 915 2 893282977 +831 273 3 891354773 +709 145 3 879848319 +521 298 3 884476126 +807 127 3 892529647 +846 443 4 883948643 +606 196 4 880926759 +520 311 3 885168591 +539 372 2 879787985 +796 815 4 893047321 +160 1134 4 876768828 +876 294 4 879428145 +476 294 3 883365634 +334 896 5 891544049 +705 118 4 883427377 +429 483 5 882384821 +733 275 3 879535265 +453 196 4 877554174 +753 462 4 891401510 +601 288 1 876346515 +680 286 4 876815942 +655 403 2 891585574 +443 294 5 883504593 +716 478 4 879795735 +126 350 2 887854892 +758 202 5 881976821 +342 188 3 875318936 +582 151 4 882961133 +687 288 4 884651576 +323 993 4 878739488 +821 174 5 874793773 +727 866 3 883709710 +872 332 3 888480019 +160 150 4 876767440 +829 1018 2 881707829 +234 45 4 892079140 +472 215 4 875981968 +264 186 5 886123728 +627 205 5 879529767 +280 72 4 891702276 +680 515 4 876816268 +714 763 4 892777903 +200 742 4 876042133 +467 1012 3 879532534 +843 413 2 879443482 +32 268 5 883709797 +690 1042 4 881180035 +829 512 4 881698976 +576 475 1 887168978 +654 195 4 887864350 +757 684 4 888445864 +766 231 2 891310851 +758 554 3 882055007 +151 302 3 879523860 +579 204 3 880952201 +534 105 4 877808198 +276 148 3 874786924 +442 55 3 883390813 +831 340 4 891354000 +207 22 3 875509262 +844 71 3 877388040 +804 678 4 879440700 +788 204 3 880868644 +564 930 3 888730699 +643 50 4 891445140 +426 653 4 879442841 +303 1034 1 879544184 +846 555 2 883949508 +791 286 3 879447907 +246 1135 1 884922605 +566 219 1 881651286 +558 286 4 879435828 +864 708 3 888889863 +668 124 3 881605489 +843 416 2 879448352 +521 742 3 884477512 +347 369 4 881653300 +660 29 2 891357371 +659 58 4 891385012 +735 100 2 876698796 +450 332 4 882369964 +718 982 4 883348912 +574 262 5 891279122 +474 313 4 887914615 +620 769 4 889987706 +805 274 2 881705055 +385 217 2 879448208 +655 181 3 887425601 +875 169 5 876465025 +795 756 3 880559895 +747 282 2 888640475 +279 22 1 875296374 +845 750 3 885409719 +624 248 4 879793485 +536 164 4 882361018 +684 151 3 875810633 +279 1178 4 875744641 +804 259 4 879440700 +866 319 4 891221302 +835 216 4 891033560 +262 367 4 879792818 +834 275 3 890862648 +853 748 2 879364883 +407 508 4 876348660 +738 144 5 892844079 +679 184 4 884487491 +201 93 5 884113662 +694 449 4 875727271 +279 257 5 875295736 +608 283 4 880406623 +663 710 3 889493437 +452 132 2 875560255 +627 176 5 879531158 +6 132 5 883602422 +692 1054 3 876954197 +260 350 4 890618476 +527 197 4 879455740 +766 507 3 891309878 +682 255 3 888518722 +694 429 4 875726759 +497 1077 4 879361847 +645 673 3 892054600 +62 1130 4 879376686 +334 179 4 891546231 +854 318 5 882813825 +716 651 5 879796278 +868 738 2 877108624 +775 300 4 891032956 +234 116 2 892079434 +429 203 5 882385684 +727 783 3 883713737 +650 509 3 891372233 +429 729 2 882386684 +276 257 4 874786657 +285 194 4 890595777 +767 657 4 891462917 +2 285 5 888552084 +828 1196 2 891036492 +397 390 3 885349427 +812 1393 3 877625224 +643 470 4 891448352 +862 288 5 879302533 +298 479 5 884182685 +796 249 1 892661011 +833 208 3 875039326 +478 367 4 889396235 +868 562 2 877112440 +707 1251 4 880059647 +823 1107 3 878438332 +828 874 3 891380355 +506 90 2 874876599 +738 403 3 875351638 +777 117 5 875979380 +871 515 4 888193176 +666 432 3 880139439 +173 327 5 877557168 +543 29 2 877546306 +631 338 2 888465299 +630 7 4 885666571 +444 258 3 890246907 +470 286 4 879178216 +710 204 4 882063824 +709 161 5 879848511 +308 132 3 887737891 +393 496 5 887746119 +679 484 4 884486658 +864 208 4 888888994 +189 1315 3 893264220 +868 206 5 877108352 +560 132 3 879975485 +653 862 2 880153378 +652 538 4 882567012 +213 508 4 878870790 +387 1078 1 886483670 +104 895 2 888442507 +409 216 4 881107251 +864 1446 3 888889948 +297 92 3 875239346 +771 71 5 880659815 +860 283 4 885990998 +692 845 3 876948910 +545 202 4 879900388 +790 211 4 885156046 +457 91 4 882547302 +642 165 4 885604480 +805 83 4 881696671 +290 89 3 880473971 +393 206 3 889731329 +837 596 3 875721969 +794 847 5 891035822 +864 566 4 888889601 +653 222 3 884405596 +401 181 3 891032518 +102 117 3 888801232 +823 22 5 878438058 +854 287 3 882813143 +789 286 1 880332039 +825 742 4 880756224 +630 597 4 885667006 +5 446 4 875720845 +624 268 4 879791962 +833 191 4 875132134 +418 328 1 891282738 +397 195 3 885350381 +410 905 4 888627138 +781 64 4 879634387 +803 690 4 880055210 +782 1383 3 891499611 +798 52 3 876176979 +486 235 2 879875370 +741 48 4 891018550 +538 223 4 877107700 +798 71 3 875303589 +800 864 4 887646980 +650 430 4 891382138 +458 509 4 886397857 +608 606 5 880404693 +391 9 5 877399780 +804 105 3 879444077 +766 192 4 891309391 +757 38 3 888467038 +537 1475 2 886031786 +230 135 2 880485216 +6 462 5 883600914 +13 748 4 882140792 +402 628 3 876267067 +463 253 5 877387935 +711 173 3 879993890 +263 465 4 891299697 +707 419 3 886285968 +798 118 4 875295842 +655 605 3 887474241 +818 286 4 891870222 +474 58 4 887925977 +493 462 2 884132015 +234 378 4 892335213 +425 82 3 878738757 +823 91 3 878439365 +454 492 3 888266643 +680 25 4 876816310 +751 194 5 889297693 +748 250 5 879454383 +698 968 1 886368545 +701 272 5 891446559 +708 284 5 892719340 +618 471 3 891309041 +803 887 5 880054671 +148 190 2 877398586 +416 1428 3 886319204 +380 356 2 885480064 +758 732 4 881977057 +766 168 5 891309090 +343 568 1 876406640 +818 328 4 891870301 +92 257 2 875640273 +804 739 4 879444805 +642 554 4 885842962 +73 683 2 888792535 +821 118 3 874793218 +745 531 3 880123517 +264 98 5 886122098 +712 243 4 874956228 +654 210 5 887864350 +94 959 5 891725332 +280 584 4 891701223 +811 748 3 886377579 +255 294 2 883215406 +634 283 2 875728783 +213 218 4 878956074 +537 97 2 886031720 +699 1375 3 878882836 +429 163 4 882387599 +870 481 4 875680046 +862 215 4 879304624 +877 382 3 882677012 +23 171 5 874785809 +568 1286 4 877907327 +648 678 3 884366792 +753 50 4 891401902 +853 326 2 879364955 +843 265 3 879443865 +608 508 4 880406593 +453 184 4 877554846 +643 514 3 891446688 +868 1480 1 877111932 +1 168 5 874965478 +682 455 4 888521866 +707 8 5 886285762 +800 457 2 887646168 +612 1 4 875324876 +804 125 4 879443709 +648 179 4 884368442 +542 959 3 886532971 +320 27 3 884749384 +637 741 1 882903644 +709 727 2 879849049 +861 294 3 881274504 +381 855 3 892696291 +796 291 4 893188576 +523 508 3 883703495 +763 469 4 878915958 +488 498 3 891294707 +746 578 4 885075399 +763 162 4 878923433 +363 719 3 891498365 +747 109 5 888733274 +727 2 4 883711874 +87 692 5 879876565 +299 517 4 889502688 +786 283 4 882841906 +831 272 5 891353915 +711 217 4 879994454 +844 627 3 877388040 +799 499 4 879253969 +211 596 3 879460294 +741 288 4 891018070 +857 898 5 883432141 +774 234 2 888557683 +738 202 4 875351299 +59 15 5 888203449 +846 33 5 883948571 +495 173 5 888632180 +489 948 2 891447960 +500 768 2 883876596 +618 151 3 891309514 +692 249 3 876953681 +293 693 4 888906781 +472 358 5 892790676 +807 501 3 892529358 +13 371 3 882399385 +814 674 3 885411030 +666 200 5 880568465 +99 116 2 888469419 +450 3 4 882398220 +295 735 5 879519556 +843 217 4 879443341 +95 51 4 879198353 +577 399 4 880475269 +721 173 5 877138745 +840 496 5 891204089 +666 284 3 880313523 +796 313 4 892610692 +303 479 5 879466572 +747 596 5 888640437 +751 432 4 889134420 +405 1035 1 885548877 +606 735 5 880926610 +417 125 5 879646369 +493 168 5 884131143 +843 603 2 879446596 +96 265 5 884403758 +128 131 5 879967452 +642 13 4 886206806 +873 292 5 891392177 +327 257 2 887746728 +610 1 4 888703157 +747 301 1 888638335 +565 165 4 891037252 +851 68 3 875731722 +70 229 3 884064269 +731 478 4 886182555 +387 1110 2 886483009 +712 378 4 874730370 +792 1015 5 877910822 +496 743 2 876065190 +860 715 4 885991198 +586 809 3 884061459 +493 182 5 884130971 +387 569 2 886481737 +158 1047 4 880134261 +576 125 4 886985177 +378 173 5 880057088 +843 655 3 879447030 +468 1 5 875280395 +268 79 3 875309801 +786 588 5 882843039 +508 318 4 883767704 +782 1025 2 891498436 +326 449 3 879877039 +548 343 4 891043547 +123 182 4 879872671 +823 374 1 878438733 +779 243 4 875501402 +436 204 5 887769209 +794 751 3 891034523 +747 265 4 888639060 +821 64 5 874793649 +296 1 5 884196689 +593 276 1 875659150 +17 475 4 885272520 +827 331 3 892157376 +731 132 3 886182632 +592 1184 5 882956551 +661 300 3 876036477 +393 181 4 887743141 +496 288 2 876063810 +851 111 3 874767408 +862 193 4 879304326 +782 1663 2 891499700 +815 199 4 878694055 +497 393 4 879362858 +784 312 3 891387623 +628 242 5 880777096 +294 1014 2 889242306 +787 347 4 888979606 +817 281 4 874816007 +117 11 5 881011824 +843 208 3 879446716 +833 151 4 875036418 +342 654 4 875319745 +537 970 3 886032184 +383 180 5 891192778 +592 469 4 882955825 +843 288 4 879443544 +593 157 3 875671732 +864 693 4 888888168 +207 11 3 878104245 +662 285 5 880571005 +176 919 2 886048391 +840 169 5 891204215 +378 317 5 880056195 +506 430 4 874873703 +723 1 3 880499050 +753 199 5 891401510 +307 505 3 879205470 +655 860 3 887477386 +708 237 5 892719144 +168 1 5 884287509 +59 466 4 888204389 +659 4 3 891383917 +305 863 4 886324387 +389 477 4 880087939 +806 923 3 882389080 +840 628 4 891209285 +828 923 3 891037047 +291 631 5 874871479 +469 65 4 879524178 +234 647 3 892826411 +145 55 3 875272009 +731 480 4 886187652 +641 305 5 879369848 +561 952 3 885810192 +530 100 4 883784058 +716 492 3 879795425 +535 215 4 879619144 +126 353 5 887938392 +694 519 4 875728293 +168 763 2 884288033 +609 259 1 886895763 +727 178 4 883710123 +684 435 3 878761717 +608 1262 5 880406095 +532 226 4 892859148 +543 198 4 876896210 +392 181 5 891038137 +144 248 4 888104032 +798 155 3 875639581 +452 472 5 885816916 +758 508 4 881975962 +862 168 4 879304526 +757 128 3 888466490 +772 327 4 877533873 +393 58 3 887746734 +867 135 5 880079065 +862 1011 5 879303123 +537 26 3 886031913 +716 610 4 879795375 +826 184 3 885690677 +741 215 4 891456615 +791 269 4 879447940 +753 194 4 891401757 +804 925 4 879443946 +677 748 4 889399113 +795 265 3 881265483 +850 8 5 883195055 +629 331 3 880116067 +486 264 3 879874262 +653 510 2 880150040 +533 824 1 879366160 +118 172 5 875384751 +16 100 5 877720437 +749 465 4 878847716 +637 922 1 882902487 +710 720 3 882063649 +698 465 3 886367720 +748 699 3 879455454 +91 205 5 891438947 +864 227 4 888889510 +548 346 4 891042624 +262 65 4 879793897 +616 346 3 891224558 +43 122 2 884029709 +545 204 4 879899641 +450 717 4 887834953 +796 807 2 893047691 +677 245 5 885191403 +291 158 2 875086208 +776 135 4 891628656 +852 151 4 891036922 +299 1258 2 877878451 +587 678 2 892871438 +523 95 4 883701800 +758 605 3 881977057 +846 217 4 883950022 +880 386 3 880174995 +653 357 4 878854383 +622 100 5 882590252 +561 426 1 885810220 +823 71 3 878439008 +466 288 4 890284651 +13 323 3 882140848 +311 570 4 884365890 +196 1022 4 881251143 +325 530 4 891478376 +569 300 3 879793036 +796 315 5 892611769 +417 162 3 880951886 +851 680 3 886534717 +878 283 3 880868035 +130 188 4 876251895 +757 326 3 888443434 +650 661 3 891385206 +625 286 4 891262561 +740 300 4 879523187 +49 209 5 888068877 +92 50 5 875640148 +7 9 5 891351432 +851 363 4 875730629 +665 685 2 884290515 +796 218 3 893194607 +653 386 1 880152864 +569 284 4 879793886 +561 484 4 885807215 +254 441 3 886475831 +421 879 4 892241274 +828 347 1 891035438 +353 301 3 891401992 +515 289 1 887660131 +709 550 3 879848475 +815 250 1 878691779 +290 692 5 880474293 +684 365 4 878759820 +251 7 3 886272146 +707 488 4 886286491 +608 126 1 880405165 +195 748 2 876632518 +528 541 3 888520782 +833 50 2 875035718 +577 143 3 880474635 +130 1 5 874953595 +194 211 4 879524292 +184 56 3 889908657 +854 32 4 882813574 +730 815 3 880310490 +178 222 4 882823857 +385 512 5 880958750 +629 328 3 880116103 +840 191 4 891204160 +714 405 5 892777876 +622 866 2 882591484 +113 257 5 875935609 +606 537 2 880925074 +435 476 3 884133872 +790 1282 5 884462551 +379 257 4 880741811 +389 501 5 880087804 +792 7 4 877910822 +870 642 4 875680258 +782 297 3 891500067 +690 211 3 881177349 +232 4 4 888550130 +393 373 4 889731437 +880 824 4 880174879 +51 50 5 883498685 +661 144 5 876016580 +295 227 4 879517635 +473 242 3 878156824 +877 31 4 882678483 +833 203 5 875124299 +763 97 3 878919153 +532 107 5 893119415 +710 89 4 882063736 +207 158 3 878191798 +828 730 3 891036972 +648 563 5 884883679 +747 82 4 888639642 +173 259 3 877557239 +841 353 1 889067253 +450 557 5 882472306 +643 129 5 891445354 +112 346 5 891307980 +805 472 2 881695040 +437 1206 4 881002191 +13 382 1 882140624 +378 566 3 880045856 +711 58 4 879993028 +795 1052 3 883255477 +524 132 4 884634968 +18 382 3 880129595 +574 883 4 891279520 +498 656 3 881957999 +747 50 5 888639060 +869 412 5 884493279 +880 307 4 892958090 +702 229 4 885767775 +846 433 4 883948457 +655 256 3 887651060 +833 328 2 875035534 +271 313 4 885844583 +746 230 1 885075337 +848 204 5 887039078 +552 515 3 879221543 +642 423 3 885602506 +545 405 4 879899380 +236 88 2 890116709 +595 544 3 886921699 +83 240 1 883870084 +868 568 1 877107847 +29 312 4 882821705 +655 773 3 887430072 +815 215 5 878694820 +416 625 5 893212623 +627 521 2 879529767 +479 546 2 879460305 +707 473 4 880060820 +664 1101 3 876525002 +670 659 5 877974699 +807 358 3 892527606 +527 511 5 879456248 +648 379 1 884883724 +807 630 4 892529573 +478 327 3 889387577 +17 243 1 885166209 +851 742 5 874767519 +642 949 1 885605834 +848 318 5 887038231 +537 52 3 886030891 +871 346 3 888192859 +878 582 4 880866810 +804 584 4 879444964 +360 479 4 880356092 +792 282 3 877909931 +623 211 3 891034814 +840 66 3 891209509 +210 1028 3 887730931 +786 172 5 882843112 +336 3 1 877758935 +56 441 4 892679163 +815 125 5 878692242 +655 203 3 887476943 +737 156 5 884314693 +760 682 3 878530117 +362 313 4 885019304 +642 843 3 886569682 +450 218 4 882397224 +606 168 5 880924557 +314 997 1 877892214 +640 428 5 874778299 +424 1084 5 880859591 +846 1044 4 883950820 +749 627 2 878848951 +786 7 5 882841955 +648 1228 3 884883149 +532 1092 2 888630838 +831 266 3 891354338 +790 47 2 885156988 +844 553 4 877387242 +735 285 4 876698897 +435 665 3 884133973 +833 657 4 875123986 +664 319 4 876523133 +551 1011 5 892783177 +829 13 4 881086933 +595 293 4 886922069 +389 847 4 879915806 +839 321 1 875751470 +301 481 4 882075827 +870 566 2 882123618 +257 921 5 883982173 +312 612 5 891699263 +481 173 4 885828165 +813 342 1 883752417 +394 22 5 880886919 +682 1035 3 888523227 +642 94 2 885605909 +314 150 4 877886522 +447 293 4 878854459 +256 732 5 882165067 +551 518 4 892783212 +826 566 3 885690636 +791 319 2 879448086 +551 1059 3 892785128 +727 483 4 883710236 +450 223 3 882371732 +577 54 4 880474903 +292 117 4 881104606 +643 276 5 891445354 +399 501 2 882346851 +334 1074 2 891548979 +774 650 1 888556893 +830 613 4 891898603 +654 332 4 887863081 +585 634 4 891285491 +435 572 2 884133938 +630 988 2 885666301 +851 1132 3 875730757 +481 479 4 885828619 +823 273 3 878437890 +862 974 2 879304113 +846 231 2 883950711 +265 50 2 875320398 +823 732 5 878439183 +489 890 5 891447990 +686 467 5 879547336 +291 977 2 874834071 +653 94 2 880153494 +841 286 5 889066959 +880 299 4 892958517 +821 126 5 874792570 +622 206 1 882670899 +481 207 3 885828619 +535 83 4 879618091 +804 1188 2 879446245 +237 174 4 879376773 +367 443 4 876690119 +328 58 4 885046206 +450 499 5 882372178 +880 398 3 880167965 +834 313 5 890860566 +682 185 4 888520639 +665 926 3 884291376 +828 903 4 891380167 +401 133 4 891032847 +262 496 4 879792402 +151 4 5 879524922 +566 273 5 881650063 +334 707 4 891546153 +276 80 3 874792237 +279 29 2 879573041 +62 952 3 879372505 +703 235 1 875242885 +655 468 3 887427681 +200 245 3 884126687 +87 451 4 879876448 +815 132 5 878695278 +787 690 5 888979007 +843 578 3 879448604 +864 54 4 888891473 +830 126 5 892502421 +537 490 4 886031786 +684 225 3 875811341 +524 508 5 884322047 +477 20 4 875941888 +498 150 3 881954451 +236 370 3 890117353 +474 430 3 887925977 +345 737 3 884993418 +804 222 5 879442591 +698 433 4 886366848 +401 484 3 891032737 +871 174 5 888193176 +155 326 2 879371121 +407 45 4 875552352 +741 475 3 891018152 +880 232 4 880167806 +399 238 1 882342061 +271 51 4 885849386 +372 678 4 876869183 +37 230 4 880915942 +487 66 5 883530484 +800 304 3 887645987 +165 328 3 879525673 +622 41 3 882672060 +392 313 5 891037385 +694 127 5 875730386 +840 117 3 891209408 +506 200 4 874873112 +417 246 4 879646225 +757 566 3 888466490 +815 735 5 878695438 +825 1117 3 880756402 +782 1405 2 891499213 +822 333 4 891033747 +269 232 1 891450817 +632 174 5 879457856 +721 179 5 877141038 +450 173 5 882371526 +642 166 5 885604434 +796 717 3 893194862 +411 9 4 891035827 +252 224 4 891456738 +59 472 3 888203482 +476 73 4 883364475 +870 521 3 875679795 +223 259 3 891548920 +710 330 3 882063612 +752 294 3 891208261 +455 8 4 879111345 +707 216 3 886286092 +685 337 2 879451401 +445 79 4 890987742 +308 156 4 887738057 +474 315 5 887914615 +715 128 3 875964300 +837 283 5 875722069 +833 479 2 875039101 +542 172 4 886532265 +815 185 3 878693830 +804 771 3 879446108 +312 740 4 891699568 +457 393 3 882548583 +695 242 5 888805837 +551 26 4 892785056 +678 287 3 879544397 +749 934 3 878850333 +683 340 4 893286260 +589 873 5 883352600 +881 54 4 876539387 +690 51 3 881180543 +851 1314 1 890862741 +851 238 5 875731330 +782 990 3 891499611 +181 331 1 878961511 +448 319 5 891888099 +344 132 4 889814194 +655 212 3 887477409 +62 271 1 879371909 +486 262 1 879874017 +689 763 4 876676165 +305 197 2 886322758 +707 950 2 880061287 +588 68 5 890026705 +387 7 5 886479528 +738 209 4 875350485 +715 685 3 875962173 +635 323 3 878878714 +200 1073 3 884129542 +429 470 5 882386309 +833 512 4 875225257 +653 163 4 880151629 +844 154 3 877387052 +705 79 5 883428028 +501 221 3 883348011 +286 117 2 876521650 +648 200 2 884883476 +622 423 3 882670121 +861 1227 4 881274936 +601 56 3 876349577 +417 420 4 879648452 +832 25 2 888260157 +409 428 4 881109175 +706 288 3 880996945 +747 951 2 888640648 +363 143 2 891496667 +537 1129 1 886030051 +798 819 3 875295930 +821 1084 5 874792285 +447 55 4 878856573 +638 82 2 876694917 +846 610 4 883948221 +738 418 3 875353105 +488 1 3 891294896 +713 898 3 888882276 +212 863 2 879303863 +59 655 5 888204642 +63 79 3 875748245 +498 486 2 881957431 +643 65 4 891448786 +697 979 5 882622044 +721 330 3 877136967 +184 473 4 889908133 +638 174 5 876694861 +495 4 3 888633129 +747 1003 1 888733314 +863 270 3 889288943 +125 202 5 892836523 +197 538 3 891409535 +848 196 5 887044238 +586 655 4 884066294 +453 423 4 877554819 +567 179 5 882426135 +376 603 4 879434613 +474 286 5 887914646 +593 699 4 875671334 +450 161 5 882396245 +862 405 2 879303123 +881 133 4 876537718 +868 581 2 877109748 +521 77 3 885254338 +374 628 3 880392778 +456 4 3 881374849 +160 955 4 876862243 +535 492 4 879618742 +843 102 2 879449177 +162 7 3 877635869 +764 191 3 876244688 +380 561 2 885479519 +666 520 3 880139562 +619 363 2 885954215 +215 132 5 891435548 +826 294 4 885689918 +699 129 4 878882667 +405 1073 1 885548578 +854 117 3 882812755 +833 715 2 875133633 +200 79 5 884128499 +450 1119 4 882374332 +184 403 3 889909746 +618 234 4 891307714 +851 192 4 875731441 +880 301 4 880166557 +805 420 4 881695560 +765 248 2 880346392 +804 657 4 879445904 +291 291 5 874834054 +870 54 2 879714458 +846 622 4 883950220 +671 27 3 884036050 +457 97 5 882397699 +231 313 3 888604920 +232 690 4 880062259 +805 856 4 881698881 +664 153 4 876526152 +786 709 2 882843607 +151 663 4 879524268 +551 187 5 892776450 +650 209 3 891382032 +724 272 5 883756996 +489 1265 2 891449466 +244 153 4 880606069 +545 968 5 884134395 +691 524 5 875543153 +495 380 3 888635339 +567 198 5 882425631 +92 156 4 875656086 +881 423 4 876538726 +487 1276 2 885239896 +632 508 2 879458570 +836 429 4 885754200 +788 162 3 880869787 +41 56 4 890687472 +694 177 5 875726886 +95 99 4 888954699 +605 678 1 879366335 +92 304 4 888469716 +864 1531 3 888890690 +798 810 3 875915855 +852 546 4 891037245 +749 431 5 878848069 +865 7 5 880143425 +151 56 4 879524879 +119 125 5 874775262 +781 223 4 879634175 +655 1400 3 887427268 +694 23 3 875727926 +741 273 3 891458066 +804 363 4 879446245 +642 78 3 886570084 +640 170 5 874777583 +372 218 5 876869481 +42 97 3 881107502 +374 789 4 882158609 +852 127 4 891035544 +758 411 4 881978115 +872 258 4 888478698 +181 411 3 878963276 +416 274 4 893142100 +798 87 3 875639680 +621 540 3 874964657 +536 380 4 882360734 +879 300 3 887760802 +268 452 1 876514002 +847 1050 3 878940618 +711 451 5 879994749 +658 730 3 875147995 +514 202 4 875309414 +268 188 4 875309859 +501 1081 3 883348703 +774 402 2 888556938 +145 358 4 875273234 +210 832 3 887730264 +622 405 4 882590886 +738 470 4 875350551 +805 648 4 881696729 +830 187 2 891464054 +178 164 3 882827288 +757 288 4 888443307 +188 199 4 875071658 +405 32 1 885546025 +844 228 3 877387858 +184 272 4 889907301 +803 754 2 880054754 +13 111 5 882140588 +870 511 3 881001249 +871 27 2 888193275 +233 614 4 877661437 +255 597 4 883216958 +257 113 4 879547534 +686 48 5 879545180 +69 288 5 882027173 +693 193 4 875482092 +508 1067 4 883767665 +719 318 5 879360493 +617 447 4 883789386 +655 591 3 887426237 +782 323 3 891498512 +532 931 3 892520696 +189 418 3 893266204 +524 1126 1 884637409 +869 846 2 884492201 +767 163 4 891462560 +618 187 5 891307098 +414 690 4 884999347 +200 609 3 884129457 +758 484 5 881975814 +294 538 5 889241562 +773 588 1 888539232 +494 286 4 879540508 +83 591 4 880306745 +196 845 4 881251954 +567 100 1 882425791 +378 167 4 880333446 +286 257 3 875806837 +869 310 4 884493279 +416 657 5 893214225 +545 203 4 880347831 +593 366 4 875671255 +749 82 5 878848405 +82 338 1 884713704 +468 699 3 875287686 +486 845 4 879874995 +717 50 4 884715122 +271 707 4 885849140 +650 205 4 891370971 +564 313 4 888718415 +198 518 3 884208876 +145 546 3 875271047 +249 181 3 879571998 +851 826 4 875730719 +815 135 2 878694493 +864 70 4 888888168 +608 848 4 880403690 +256 44 4 882164893 +697 286 4 882621486 +693 199 3 883975558 +763 5 4 878920895 +624 14 5 879792623 +823 471 3 878438608 +721 457 3 877137214 +862 474 5 879304722 +758 29 3 882054935 +264 235 5 886122952 +724 989 1 883757874 +90 644 5 891384065 +303 588 5 879468459 +621 1 3 880227233 +698 294 4 886365733 +846 520 5 883947960 +435 96 5 884131822 +398 183 4 875659518 +749 480 5 878847328 +784 270 3 891387249 +707 155 3 886288598 +655 135 4 887427083 +843 79 2 879445658 +872 323 2 888480019 +90 1203 5 891385466 +360 1142 4 880354250 +665 699 4 884294374 +294 273 3 877819421 +264 742 2 886122578 +44 427 3 878348547 +747 430 4 888639437 +846 55 5 883948642 +604 100 5 883668097 +482 346 3 887644022 +580 871 4 884125135 +833 211 3 875124495 +721 69 4 877140282 +43 124 4 891294050 +837 15 3 875721869 +188 265 5 875071520 +627 1135 3 879530625 +537 273 3 886029727 +94 372 4 891723124 +659 49 3 891385438 +497 451 2 879310419 +11 718 5 891903836 +880 791 2 880174961 +591 923 4 891031116 +550 924 4 883426027 +279 1205 3 888461244 +267 98 5 878971989 +629 111 5 880117689 +624 597 3 879793129 +481 204 4 885829196 +836 875 1 885753752 +201 17 3 884112581 +716 215 5 879796046 +883 792 4 891694182 +709 210 4 879848432 +308 661 4 887736532 +867 79 4 880079142 +206 682 3 888179694 +206 332 3 888179602 +796 542 3 893219403 +200 1217 4 884130014 +773 509 4 888538995 +343 208 4 876404426 +862 187 4 879304672 +280 750 5 891700185 +483 121 2 878952692 +566 228 2 881650262 +619 323 3 885953878 +519 680 5 883248595 +299 72 3 889503305 +60 134 4 883326215 +747 558 4 888640046 +474 651 5 887927670 +855 198 4 879825613 +198 405 2 884206428 +766 378 4 891310540 +843 219 2 879443394 +814 590 2 885411749 +49 1077 4 888068057 +711 255 4 886030579 +747 427 5 888732899 +653 944 2 880152657 +239 208 3 889181015 +778 174 4 890725804 +519 340 5 883248251 +397 50 5 885349955 +774 654 2 888558284 +849 15 5 879695896 +239 238 5 889180747 +682 1011 4 888517986 +90 198 5 891383204 +795 181 4 880557060 +703 845 4 875243028 +653 291 4 878855275 +239 1115 2 889180651 +621 143 2 874965208 +788 579 3 880871804 +776 474 5 891628632 +843 588 2 879447579 +394 658 3 880889159 +878 642 3 880866971 +15 275 4 879455562 +21 635 4 874951727 +665 100 3 884290349 +753 215 5 891402272 +870 466 4 878737789 +158 174 5 880134332 +707 533 5 880060420 +6 497 4 883601088 +405 1305 1 885547644 +13 751 5 882774081 +774 1110 1 888557519 +581 253 5 879642333 +568 530 3 877907782 +757 474 3 888469045 +14 507 4 890881521 +533 203 4 879438743 +421 172 5 892241707 +774 373 2 888557557 +468 47 5 875301056 +417 182 4 879646938 +689 328 5 879211479 +796 219 4 893218453 +301 284 4 882074708 +844 690 3 877381230 +247 7 4 893081395 +851 50 5 891961663 +812 326 4 877625294 +761 688 2 876189913 +346 161 3 874950413 +841 272 4 889066780 +582 257 3 882961608 +864 526 4 888889784 +500 283 2 883865341 +535 195 4 879618288 +495 121 5 888633473 +653 328 4 884408848 +650 22 3 891369707 +834 7 4 890862974 +867 956 4 880079142 +880 651 5 880167695 +716 648 4 879796138 +815 675 2 878698831 +11 699 4 891904389 +771 313 3 886635643 +393 692 3 889554908 +823 124 4 878437925 +442 979 3 883391344 +806 286 3 882384513 +442 195 4 883390328 +832 245 3 888259984 +94 527 5 886008885 +661 568 4 888301266 +514 25 4 875463028 +648 185 5 884368485 +215 204 3 891436129 +454 117 3 888267343 +815 471 2 878692149 +832 681 2 888259984 +665 147 4 884291057 +504 969 4 887838677 +712 506 3 874730520 +843 515 3 879444801 +7 549 4 891353086 +312 152 2 891698485 +57 930 2 883698039 +593 11 4 875660482 +829 153 4 887584684 +648 357 2 884628534 +881 550 3 876539261 +846 464 2 883947778 +269 775 1 891451571 +537 132 3 886031074 +727 101 2 883711771 +588 162 5 890026339 +559 12 3 891034067 +189 133 5 893265773 +788 195 3 880868876 +862 214 3 879304834 +442 769 1 883391397 +878 427 5 880872394 +774 559 1 888557715 +271 124 4 886105886 +505 1039 4 889334004 +684 117 4 875810999 +697 121 4 882622066 +684 82 5 875812227 +665 183 4 884293933 +201 358 1 884111095 +582 300 3 882960446 +537 896 3 886028604 +711 168 4 879993318 +880 820 3 880167384 +1 123 4 875071541 +799 258 5 879253668 +655 724 3 887427600 +881 671 3 876537512 +452 195 4 875265114 +314 412 3 877892052 +430 300 3 877225239 +854 216 3 882814028 +674 151 2 887763274 +707 869 1 886289521 +522 492 4 876961190 +696 307 5 886404144 +164 407 2 889402443 +669 879 2 891182703 +629 651 5 880117163 +295 50 5 879517540 +880 295 5 892958887 +665 294 2 884289922 +655 268 3 887474077 +749 385 3 878848272 +543 521 4 874865636 +872 815 4 888479434 +875 334 4 876464800 +556 178 5 882136162 +193 79 4 889125755 +693 651 3 875482548 +846 1050 4 883949046 +796 186 3 892676114 +332 660 3 888098125 +500 210 3 883874290 +21 358 3 874951616 +711 162 5 879994875 +484 472 4 891195565 +295 83 5 879518257 +389 1007 4 879915832 +883 7 5 891754985 +660 144 3 891199856 +455 44 3 879112678 +574 213 4 891279712 +830 403 4 891561806 +184 216 4 889908539 +45 926 3 881015386 +291 172 5 874835062 +768 354 3 888798611 +554 237 3 876231570 +620 147 3 889987299 +334 521 4 891548835 +10 192 4 877891966 +870 171 4 875050698 +796 433 2 892675694 +186 330 4 891718038 +880 769 3 880241492 +671 201 3 884204509 +432 109 2 889416188 +585 83 3 891282808 +574 316 4 891279451 +524 273 3 884322113 +805 661 4 881697713 +393 1180 4 889731465 +624 831 3 879793545 +711 762 3 879991585 +750 749 3 879446271 +828 960 5 891036568 +474 97 5 887924028 +753 22 4 891401798 +453 550 3 888207161 +303 744 3 879467607 +495 86 5 888637768 +543 702 2 877550399 +784 321 3 891387249 +592 655 5 882955543 +578 272 2 888957735 +456 125 4 881372015 +561 116 4 885809146 +14 523 4 879119497 +757 173 4 888445604 +851 153 3 875806683 +804 56 3 879441371 +864 11 5 888887502 +845 1592 3 885409493 +883 144 4 892557605 +741 393 2 891040490 +880 833 4 880167288 +392 463 3 891038946 +846 524 3 883947819 +774 176 4 888557198 +677 268 5 889398907 +294 301 4 877818915 +378 606 5 880055478 +854 237 3 882812406 +790 774 4 885156904 +128 319 5 879966274 +854 15 3 882812451 +607 211 5 883879556 +739 327 5 886825529 +526 276 4 885682477 +463 1060 2 889936244 +451 874 4 879012684 +447 1315 4 878854838 +727 434 5 883710717 +660 640 1 891201223 +363 933 2 891498920 +593 591 4 877728878 +592 149 4 882607910 +810 294 5 879895233 +553 367 4 879949153 +13 239 4 882141752 +804 62 4 879445305 +92 993 4 890251516 +828 313 3 891033342 +782 533 2 891500151 +416 148 5 893212730 +299 207 3 877880394 +751 708 4 889298140 +42 559 2 881109271 +655 729 2 887476031 +682 467 3 888517364 +727 27 4 883711847 +680 273 3 877075214 +450 229 4 882474001 +863 882 4 889289570 +186 689 4 889817888 +833 550 2 887158946 +584 161 4 885778170 +868 1 4 877103320 +666 106 2 880313992 +880 80 2 880175050 +738 650 3 875351712 +877 237 4 882677827 +883 68 4 891696957 +59 480 5 888204802 +22 732 4 878886710 +678 147 4 879544882 +201 895 3 884110702 +548 257 5 891044304 +769 748 2 885422821 +588 181 5 890015608 +451 307 4 879012431 +835 673 4 891034117 +484 28 5 880937193 +682 72 3 888521540 +807 252 4 893084689 +821 100 2 874792285 +514 384 3 876067623 +58 111 4 884304638 +339 503 4 891035093 +327 718 4 887745494 +245 258 4 888513691 +105 269 4 889214193 +577 82 4 880474433 +666 269 5 880314564 +764 1012 4 876244181 +502 264 3 883702518 +326 505 3 879875271 +18 392 3 880130193 +882 193 5 879867263 +57 194 4 883698272 +435 885 3 887509396 +397 8 4 885349913 +653 81 1 880151651 +774 68 3 888557329 +804 68 3 879445975 +328 302 4 885044380 +506 542 3 874873794 +85 313 4 884820133 +660 290 4 891198549 +678 1 5 879544882 +796 210 3 892662441 +715 161 5 875964905 +758 257 5 880672700 +847 108 2 878939266 +487 596 5 883441956 +643 231 2 891450316 +757 1273 2 888467187 +533 318 5 879438849 +757 450 2 888467205 +463 283 5 877385287 +730 742 3 880310553 +716 64 5 879795314 +405 731 3 885546202 +752 258 3 891207898 +835 162 5 891033420 +126 266 5 887938392 +881 663 5 876538322 +457 62 3 882550925 +782 296 3 891500109 +880 204 5 880174652 +622 1078 3 882671160 +627 288 3 879529381 +68 9 4 876974073 +791 288 3 879447907 +216 91 4 880235546 +229 898 5 891633028 +465 132 4 883531325 +751 434 4 889297670 +846 417 4 883950129 +664 326 2 876523225 +643 639 4 891447790 +768 300 5 883835026 +815 202 4 878694341 +620 140 4 889988258 +833 663 3 875134317 +776 760 3 892920241 +807 1615 4 893084653 +873 258 3 891392818 +861 714 4 881274899 +119 121 4 874775311 +215 272 3 891434619 +347 204 4 881653830 +655 233 3 887611537 +804 196 4 879441752 +664 162 4 876525764 +392 323 3 891037769 +840 506 5 891204385 +877 270 4 882676054 +164 825 4 889402203 +201 157 4 884113453 +81 456 1 876533504 +446 268 2 879786892 +94 1209 2 891723459 +747 675 2 888640180 +747 526 5 888639642 +435 447 3 884132315 +592 292 1 882607434 +7 615 4 891351585 +606 3 5 880922084 +779 181 5 875501734 +606 385 4 880925200 +308 853 5 887736797 +663 844 2 889492841 +833 488 5 878078229 +234 207 2 892078605 +870 134 4 875050697 +90 1202 5 891385132 +416 240 1 886315446 +206 1429 1 888180018 +682 1231 2 888522612 +823 237 4 878439037 +102 841 2 888802319 +733 296 2 879535265 +457 194 5 882397058 +524 449 3 884637245 +82 100 5 876311299 +779 15 4 875501782 +174 709 4 890168554 +830 205 5 891462531 +782 680 1 891498865 +676 345 2 892685621 +127 258 5 884364017 +615 638 5 879447968 +643 28 4 891448002 +884 116 4 876858914 +798 493 3 875638514 +491 286 4 891184567 +479 294 3 879459578 +601 1084 5 876346849 +749 541 3 878850825 +882 616 4 879879807 +509 307 2 883590729 +7 488 4 891351041 +463 880 4 890452525 +754 595 2 879452073 +790 660 3 885156904 +424 15 4 880859722 +864 775 1 888891473 +782 1007 3 891500067 +164 678 4 889401432 +861 949 4 881274937 +782 1652 1 891500230 +561 475 3 885807393 +363 47 5 891496264 +706 756 4 880997412 +481 70 5 885828389 +880 841 3 880167411 +749 358 3 878846422 +256 1033 4 882152838 +629 504 4 880117719 +60 517 4 883327265 +775 345 5 891032895 +81 475 5 876533504 +206 242 3 888180049 +606 179 5 880927552 +537 48 4 886030805 +807 751 3 892527467 +393 731 3 889730227 +26 841 2 891380200 +176 268 5 886046979 +479 1028 1 879460192 +38 243 3 892429095 +825 174 5 881101782 +786 89 4 882842878 +495 796 4 888637070 +669 50 5 891517215 +747 15 4 888639780 +833 93 4 875036056 +336 959 3 877758138 +823 222 3 878438179 +709 282 5 879847945 +639 747 3 891239528 +770 151 5 875973080 +373 172 5 877098678 +552 410 3 879222070 +666 613 5 880139295 +821 405 4 874793022 +881 1118 3 876538131 +85 697 3 879829471 +145 925 4 875271047 +774 712 1 888556169 +731 204 4 886184682 +149 272 3 883512591 +810 333 5 886614819 +817 129 4 874815836 +805 197 5 881696671 +497 189 4 879309993 +95 420 4 888956001 +666 111 3 880313523 +642 1066 3 885606608 +258 328 3 885700877 +705 318 5 883518731 +476 579 2 883365385 +703 9 2 875242814 +405 860 1 885548435 +664 631 4 876525077 +751 257 4 889132542 +738 177 4 892958051 +326 135 3 879875852 +13 491 4 882140166 +59 451 5 888206049 +796 448 4 893218485 +823 240 3 878438119 +834 292 5 890860566 +883 129 5 891755088 +353 343 2 891402636 +776 706 3 892920480 +457 193 5 882397666 +435 307 5 884130744 +757 181 3 888444314 +644 988 4 889076475 +788 429 3 880868919 +537 98 3 886030583 +187 241 3 879465858 +201 134 4 884113772 +749 1274 2 878850212 +752 301 4 891208077 +745 124 5 880122775 +222 246 4 877563597 +405 543 1 885549407 +555 25 4 879963127 +707 719 3 886288189 +707 58 3 886285907 +815 89 4 878695092 +442 228 5 883390366 +642 1030 4 886570173 +826 1091 3 885690379 +551 1039 4 892777013 +393 996 3 889731139 +698 654 1 886367586 +881 180 5 876538063 +268 358 3 876513643 +686 56 5 879546147 +487 713 4 883444631 +865 825 1 880144123 +755 748 4 882570141 +209 9 3 883417547 +711 676 5 876185812 +714 1016 5 892777876 +655 270 4 887650943 +883 727 3 891696750 +846 8 4 883947861 +727 729 2 883711720 +838 24 4 887064231 +417 211 4 880949907 +748 69 4 879454849 +833 159 2 879818659 +447 233 4 878856526 +705 228 3 883428109 +330 225 4 876544507 +654 249 5 887863866 +883 83 3 891693200 +835 458 4 891032869 +596 276 3 883539431 +567 136 5 882426210 +537 387 4 886031860 +457 288 4 882392853 +537 566 2 886032183 +859 249 5 885775086 +748 692 3 879455410 +652 288 2 882566890 +828 246 2 893186163 +721 303 3 877137285 +660 366 1 891405958 +667 272 5 891034404 +763 510 4 878915559 +639 702 2 891240868 +878 692 4 880869191 +843 474 3 879445738 +472 416 3 875982867 +774 230 2 888557237 +343 408 5 876403121 +861 289 5 881274504 +805 537 5 881703643 +312 606 5 891698300 +770 678 2 875971655 +711 240 1 879991425 +811 690 5 886377248 +778 197 4 891232569 +643 204 3 891447901 +204 880 2 892388976 +863 1062 4 889289570 +64 111 4 889739975 +815 99 4 878694665 +770 7 5 875972185 +189 503 3 893266137 +648 477 3 882211585 +370 100 4 879435369 +141 1023 4 884585274 +815 94 3 878697705 +833 98 3 875123359 +399 66 3 882343171 +92 38 3 875657640 +654 336 3 887863227 +334 196 4 891547128 +830 790 1 891899476 +537 15 3 886030051 +628 326 5 880777095 +650 157 3 891382960 +500 94 2 883877023 +620 706 3 889987706 +838 276 4 887064825 +851 304 3 877831020 +847 658 3 878940855 +650 54 2 891385876 +848 419 5 887043421 +883 749 3 891695490 +861 52 5 881274718 +332 117 4 887916575 +184 487 4 889908571 +510 245 3 887667574 +865 929 2 880144539 +450 704 3 882372178 +721 471 5 877138200 +848 185 3 887037861 +456 127 5 881373019 +642 832 3 892240991 +620 145 5 889987682 +770 331 3 875971703 +474 66 4 887926437 +798 231 2 875638817 +738 926 3 875350456 +805 88 2 881696876 +70 473 3 884066399 +244 114 4 880603219 +350 480 5 882345918 +583 530 4 879384404 +830 99 3 891561474 +405 33 1 885547360 +406 528 4 879446361 +207 64 5 877846793 +833 111 2 875134110 +826 55 5 885690636 +753 211 4 891402240 +707 1008 3 880060460 +716 197 5 879794962 +425 540 2 878738486 +618 118 3 891309004 +741 401 3 891457483 +728 100 5 879443321 +58 1070 4 884304936 +877 949 3 882677440 +846 516 4 883948457 +825 595 3 889021134 +457 204 5 882397699 +757 31 4 888445570 +792 471 4 877910822 +848 423 4 887038197 +357 932 4 878952341 +492 56 5 879969878 +360 521 5 880355845 +811 258 5 886377311 +790 849 4 885157205 +264 447 5 886122352 +886 4 3 876031601 +562 127 5 879196401 +743 289 3 881277357 +715 546 4 875962076 +828 302 4 891380166 +608 865 4 880403537 +708 1280 1 892718819 +808 271 3 883949602 +881 49 5 876538986 +592 686 5 882956387 +250 28 4 878090153 +593 97 4 877728878 +659 215 4 891385258 +655 325 2 887425197 +674 252 2 887763151 +442 988 1 883388064 +589 689 4 883352787 +807 71 5 892530705 +215 226 4 891436633 +624 257 3 879793269 +708 126 4 892719340 +128 501 3 879968921 +771 197 1 880659919 +668 272 5 890349005 +537 117 2 886030011 +611 347 4 891636244 +116 640 3 876453560 +806 14 3 882385394 +843 402 2 879447599 +128 432 2 879968125 +254 168 1 886472400 +663 455 2 889492679 +864 716 2 888889744 +804 10 4 879442298 +733 137 5 879535406 +683 754 3 893284184 +862 198 5 879304484 +693 708 3 875483049 +880 54 3 880242503 +601 1063 3 876350340 +560 122 3 879977081 +747 97 5 888640437 +776 848 2 892210321 +64 625 3 889740286 +537 694 4 886031407 +617 615 3 883789294 +104 286 1 888442304 +837 289 5 875721539 +453 476 3 890939266 +881 53 2 876539448 +487 591 2 883444462 +804 932 3 879444077 +877 271 4 882676507 +790 282 4 884461590 +693 127 4 875482056 +727 1076 2 883712632 +599 872 2 880951046 +330 21 5 876544953 +605 14 5 879427619 +129 1176 4 883244059 +788 58 4 880868355 +868 91 3 877107817 +846 53 3 883950820 +144 9 5 888104191 +881 204 4 876538506 +256 591 5 882151017 +862 526 4 879304623 +470 258 4 879178216 +796 564 1 893194929 +846 216 4 883948571 +791 300 5 879447977 +541 526 4 883865088 +805 952 5 881704553 +756 566 4 874830168 +717 826 2 884642868 +663 1 4 889492679 +429 1118 4 882385902 +308 471 3 887739382 +694 523 4 875727877 +715 40 1 875964681 +878 511 4 880866810 +812 358 3 877625461 +535 30 4 879617531 +581 276 3 879641850 +862 216 5 879304410 +113 222 3 875076872 +659 1203 4 891385258 +474 939 4 887928562 +711 281 3 879995362 +881 559 2 876539220 +83 751 3 883869440 +770 358 3 875971655 +236 199 4 890118307 +458 28 3 886396005 +846 86 5 883949290 +168 473 2 884288178 +805 382 4 881698258 +290 825 3 880732508 +181 303 1 878961749 +833 640 3 875123986 +610 582 4 888703749 +178 31 4 882827083 +642 422 3 885606608 +627 47 2 879530346 +560 278 1 879976892 +851 1016 5 891961664 +807 384 4 893080838 +682 233 2 888520864 +299 313 3 887135516 +868 89 4 877107446 +832 328 3 888259020 +579 88 4 880952440 +663 1086 3 889492959 +222 470 3 878181869 +757 229 3 888466652 +828 10 3 891035970 +735 475 4 876698570 +562 132 4 879195721 +354 19 5 891216549 +531 300 4 887048862 +425 912 2 891986392 +810 313 5 885406451 +149 258 3 883512658 +274 318 5 878946577 +666 505 4 880139526 +299 244 2 877878001 +28 229 2 881961393 +454 610 3 881959576 +863 352 1 889289491 +405 854 1 885547222 +695 991 5 888806011 +662 1380 2 880570952 +820 748 1 887955223 +833 53 1 875224039 +727 1229 2 883713473 +606 508 4 878147350 +884 70 4 876859208 +472 24 5 892791017 +145 821 3 875272833 +880 50 5 880167175 +806 186 4 882387925 +520 690 5 885168677 +525 472 2 881086012 +878 659 4 880870854 +457 248 4 882393008 +807 1063 4 892529112 +92 546 2 875640512 +664 22 2 876524731 +795 554 3 883254802 +222 717 1 877563716 +804 414 4 879444890 +588 384 1 890032013 +22 4 5 878886571 +320 1047 4 884748733 +363 1215 1 891498920 +296 7 5 884196896 +824 991 3 877021121 +434 225 4 886724453 +844 1474 4 877387195 +6 474 5 883601277 +617 179 4 883789386 +712 102 4 874956543 +753 322 3 891401167 +137 289 3 881432671 +268 218 2 875744469 +389 82 4 880087977 +798 1270 3 875915190 +505 692 3 889334583 +534 331 4 877807429 +854 1077 3 882813907 +864 134 5 888887013 +749 88 4 878849534 +535 708 5 879618777 +354 209 3 891218155 +802 687 3 875984722 +862 181 5 879305143 +543 1199 2 877542776 +455 237 3 879109923 +495 232 5 888635202 +640 70 4 874778065 +821 15 5 874792835 +470 1134 4 879178486 +293 152 4 888905716 +883 311 4 891691505 +682 96 4 888523635 +593 200 5 875661567 +843 193 3 879446863 +711 1446 2 879994608 +761 127 3 876190025 +243 111 4 879987793 +200 378 5 884129301 +859 276 4 885776056 +458 187 5 886398543 +710 504 4 882063649 +567 195 3 882426782 +503 213 5 880383030 +711 219 2 879995792 +514 50 5 875462466 +692 328 4 876953340 +883 50 4 891696824 +716 102 2 879797256 +457 401 3 882550654 +594 483 3 874786695 +851 31 4 875807058 +740 286 5 879523187 +194 179 4 879521329 +423 322 3 891395020 +87 188 4 879875818 +249 144 4 879572567 +343 555 1 876407706 +308 200 5 887738933 +866 321 3 891221302 +490 127 5 875428765 +409 14 5 881107992 +788 200 4 880869075 +788 549 4 880869753 +782 268 3 891497854 +380 729 3 885479252 +424 1 1 880859493 +94 1045 4 891721815 +87 801 3 879876768 +316 192 1 880854267 +299 435 3 877881061 +851 772 3 875807019 +213 55 5 878955680 +747 481 5 888639525 +697 876 3 882621595 +587 880 3 892871536 +749 110 2 878850703 +537 713 3 886030177 +742 13 4 881335361 +864 219 4 888889129 +778 161 3 890727175 +637 275 3 882903191 +450 416 5 882395779 +664 276 5 876524053 +292 115 4 881104194 +747 923 5 888639939 +747 428 3 888640046 +343 510 5 876408139 +146 327 3 891457905 +846 659 5 883948908 +586 566 3 884062621 +805 550 3 881694854 +640 354 4 888262331 +847 225 1 878775647 +840 705 4 891204713 +796 233 4 893048471 +774 77 1 888556938 +405 1062 1 885549904 +735 124 5 876698643 +682 58 3 888517627 +514 587 4 880210105 +704 497 3 891397764 +717 846 4 884642339 +345 744 4 884991348 +796 2 5 893048377 +579 169 4 880951867 +486 995 4 879874388 +597 1 3 875339723 +838 249 4 887064315 +804 639 4 879442591 +445 302 1 891199195 +43 169 5 875981128 +769 831 1 885424534 +504 526 3 887838624 +561 50 3 885807429 +744 23 4 881171420 +425 355 3 890346705 +749 484 5 881073043 +666 709 4 880314144 +709 628 3 879847000 +435 790 4 884133818 +488 527 3 891294473 +807 505 3 892528110 +71 514 4 877319567 +291 773 3 874834827 +624 24 3 879793380 +733 129 2 879535299 +561 286 4 885806710 +836 216 4 885753979 +880 181 5 880166719 +50 547 4 877052297 +207 316 5 891759050 +659 13 4 891331361 +880 783 1 880175187 +347 137 2 881652568 +111 321 3 891680076 +42 86 3 881107880 +393 298 4 887743453 +717 1137 5 884642580 +216 747 4 880245260 +793 815 3 875103901 +850 173 5 883195008 +713 362 1 888882040 +886 175 4 876031550 +880 508 4 880166966 +385 47 4 879441982 +424 882 3 880858829 +880 721 1 880174749 +482 288 3 887644023 +634 127 5 877018347 +804 1285 2 879445766 +343 235 4 876403078 +749 1051 3 878846676 +655 1257 3 887433685 +854 289 2 882811962 +684 376 3 878762273 +56 280 4 892683913 +871 1197 3 888193136 +758 1052 5 882055497 +7 610 5 891353086 +805 343 5 881684185 +294 286 5 877818457 +640 338 5 886353852 +378 14 5 880044251 +486 924 3 879875069 +423 282 4 891395448 +580 748 2 884126077 +882 409 4 879863031 +668 538 5 881523787 +825 286 4 889912073 +757 210 4 888445570 +339 145 3 891036557 +398 56 4 875659843 +447 582 4 878855724 +222 455 3 877563437 +548 203 5 891044446 +433 358 2 880585554 +871 1119 3 888193384 +758 183 5 882055987 +883 135 4 891717319 +630 252 2 885667464 +280 619 4 891701913 +838 1005 4 887066678 +675 1007 4 889489522 +632 168 4 879457248 +736 1388 5 878709365 +207 692 3 877750738 +865 597 1 880144368 +751 3 3 889299391 +679 531 4 884487153 +601 238 2 876349897 +833 28 3 875135213 +591 25 4 891039658 +807 633 4 892529401 +523 412 3 883702351 +721 581 2 877141373 +392 663 4 891039049 +805 455 4 881694854 +332 840 4 887938781 +833 518 3 875039100 +201 58 4 884140488 +284 270 3 885328906 +243 283 3 879987362 +773 792 4 888539471 +640 304 4 876067605 +595 325 3 886920774 +509 343 3 883591319 +280 218 4 891701474 +222 356 4 878184571 +201 268 4 884110637 +516 431 3 891290649 +300 294 3 875649995 +655 730 2 890497653 +705 22 5 883427988 +502 261 2 883702945 +650 1035 2 891389132 +618 609 4 891309440 +540 220 3 882157820 +230 162 4 880484587 +486 1379 3 879874515 +863 902 5 889289456 +790 722 3 885157686 +763 961 5 878919083 +505 1409 3 889333974 +779 300 3 875501300 +525 257 4 881085739 +303 1407 1 879544063 +611 752 5 891636223 +26 475 3 891350826 +592 1048 3 882608625 +268 718 4 875306805 +758 122 4 881980408 +749 257 3 878846957 +303 73 3 879484918 +537 1084 3 886030050 +880 755 3 880242848 +529 749 4 882535466 +189 742 3 893264270 +837 237 3 875721793 +297 28 4 875239913 +758 489 5 881975687 +495 120 5 888637768 +864 892 3 887686497 +747 71 5 888639102 +880 1016 4 880167223 +167 493 4 892738307 +727 431 4 883711045 +338 498 4 879438250 +279 1072 4 890780735 +860 303 3 876074139 +790 111 3 884461849 +766 208 5 891309810 +749 523 4 878847285 +538 4 3 877107726 +846 132 5 883948840 +328 689 5 885044733 +207 871 5 880839802 +551 468 5 892783559 +514 648 3 886189869 +877 515 5 882677640 +866 306 4 891221165 +666 137 4 880313423 +670 949 2 877974465 +790 358 2 885154848 +325 1018 3 891479038 +796 873 3 892874827 +77 173 5 884752689 +512 258 3 888578768 +883 407 3 892557605 +291 774 3 874867852 +145 155 2 875272871 +44 109 3 878346431 +690 684 4 881179938 +716 965 2 879797504 +846 186 5 883948949 +851 109 4 875730379 +823 196 5 878439211 +414 748 3 884999147 +373 645 5 877098599 +711 1115 4 876185812 +868 448 2 877110401 +846 83 4 883947911 +429 214 3 882384526 +447 866 2 878855082 +18 143 4 880131474 +795 173 4 880567884 +884 275 4 876857845 +537 924 3 886030254 +846 92 4 883948495 +495 94 3 888636992 +877 274 4 882678105 +782 948 2 891499699 +823 140 3 878438332 +843 121 3 879444047 +642 202 3 885842351 +854 405 4 882812755 +883 867 5 891695588 +846 1168 4 883950569 +745 507 1 880123335 +796 810 3 893048622 +332 431 5 888360412 +405 47 5 885545429 +813 259 2 883752528 +764 14 4 876752116 +758 420 3 882053499 +738 229 3 875351906 +270 86 4 876955067 +648 423 4 884368442 +198 447 4 884209188 +450 417 4 882376365 +514 49 2 886189676 +666 222 3 880313423 +532 186 4 891910189 +870 48 4 875050603 +568 224 4 877907236 +621 80 4 874963126 +650 402 3 891383272 +620 623 4 889988232 +301 429 4 882076072 +380 228 3 885479235 +417 723 5 879648938 +716 946 2 879796718 +885 1311 2 885714582 +378 1438 3 880333098 +864 22 5 888888937 +743 338 1 881277800 +92 408 4 876175704 +398 692 4 875717020 +468 216 5 875288771 +828 61 5 891037466 +843 97 3 879447377 +286 821 4 877534550 +354 305 4 891180489 +624 15 4 879793330 +151 125 4 879542939 +708 596 4 877326158 +643 566 3 891449476 +840 462 3 891205287 +499 486 3 885599598 +587 243 3 892871401 +70 820 1 884152379 +741 290 3 891457956 +543 22 3 877545230 +655 789 3 887473879 +742 15 4 881335461 +748 517 3 879455083 +883 72 4 891694431 +665 432 4 884294025 +445 979 2 891200272 +557 268 5 881179653 +541 542 1 884046888 +645 268 4 892051811 +643 356 4 891448218 +648 831 1 882212131 +291 1248 4 875087634 +617 670 1 883789590 +854 1197 3 882812263 +653 258 3 886051833 +871 177 5 888193336 +82 87 3 878769598 +793 1187 2 875104167 +56 410 4 892911348 +59 151 5 888203053 +864 722 2 888892091 +833 675 4 875224252 +437 79 4 880143855 +472 161 5 875982149 +738 89 5 892844112 +747 736 5 888732899 +840 497 4 891209571 +699 880 3 893140941 +100 895 2 891375212 +130 196 5 875801695 +804 702 2 879447476 +849 288 5 879695056 +648 484 5 884368442 +637 866 3 882905285 +534 475 4 877807747 +860 211 3 885990998 +884 9 5 876858820 +75 460 5 884050829 +868 160 4 877104414 +435 230 3 884132809 +487 48 2 883445540 +704 347 4 891397015 +716 81 4 879796475 +665 423 4 884294611 +711 845 4 879991247 +870 663 3 879540005 +746 144 5 885075211 +383 479 4 891192985 +554 31 4 876369085 +655 1265 3 887425025 +778 234 3 890726231 +583 513 5 879384338 +848 209 5 887038397 +676 22 5 892686606 +854 268 3 882811865 +622 204 3 882592559 +655 55 2 887429302 +826 820 3 885690250 +428 886 4 885943651 +774 758 1 888559036 +879 237 4 887761309 +660 239 2 891200989 +618 582 4 891309217 +398 196 4 875746951 +796 197 3 892676231 +436 1028 4 887770693 +303 564 1 879485447 +643 505 4 891447260 +275 164 4 880313886 +840 945 3 891204509 +422 867 3 878059137 +200 951 5 884130014 +297 498 3 875239018 +666 133 3 880139439 +885 210 5 885713544 +699 978 4 886568066 +821 132 5 874793898 +846 708 3 883948685 +727 636 3 883711616 +535 496 5 879618246 +883 516 4 891694372 +682 67 4 888523581 +672 269 3 879787460 +884 269 5 876857704 +727 1042 2 883712068 +505 568 4 889333466 +673 315 5 888786942 +882 515 5 879865307 +788 271 3 880867855 +92 452 2 875906828 +399 9 3 882510018 +656 270 3 892318676 +429 411 3 882386848 +250 234 3 878091736 +881 601 5 876539186 +655 786 2 887472965 +727 928 3 883709802 +707 135 2 886286032 +872 106 3 888479624 +682 217 4 888523581 +327 184 3 887820341 +827 272 4 884213984 +95 1116 4 888956137 +450 483 3 882371826 +692 294 3 876946833 +690 496 4 881179222 +824 321 2 877021002 +788 56 3 880868235 +805 142 4 881705843 +84 477 4 883452307 +593 255 5 875659055 +764 696 3 876243465 +566 170 5 881650739 +885 405 4 885715691 +731 320 1 886186811 +798 62 4 875915855 +871 895 3 888192689 +130 95 5 875216867 +682 1084 2 888518164 +889 72 3 880181317 +566 419 2 881650907 +751 785 4 889298010 +721 111 4 877154765 +564 1034 3 888730838 +102 751 3 885100000 +830 50 5 891561606 +201 211 3 884112840 +852 597 3 891037562 +25 173 4 885852969 +243 285 5 879989217 +870 42 2 879270213 +138 209 4 879023948 +642 942 4 886207151 +788 432 1 880869323 +519 328 2 883248251 +747 216 2 888639060 +851 10 3 875730030 +592 885 2 887257199 +615 678 1 879447713 +465 100 3 883532119 +286 1101 5 877532715 +717 597 4 884642710 +889 659 4 880178367 +409 485 2 881107155 +862 230 3 879305273 +222 575 3 881060550 +298 210 5 884182891 +303 595 2 879484421 +399 241 4 882342866 +755 327 2 882569801 +591 196 4 891031116 +786 418 4 882843352 +488 182 3 891293734 +617 170 1 883788929 +843 1411 3 879449377 +397 318 4 885349610 +624 473 3 879793093 +710 268 4 882063276 +664 191 3 876523833 +782 258 4 891497906 +648 112 2 884367366 +577 173 5 880472055 +339 167 4 891036058 +672 275 5 879787955 +645 664 4 892054402 +838 385 4 887067127 +749 571 3 878850456 +1 191 5 875072956 +813 877 1 883752331 +279 364 4 891209077 +504 240 1 887832012 +669 1 5 892549412 +647 231 4 876533657 +833 444 3 875224352 +181 122 2 878963276 +126 678 3 887855283 +515 905 2 887660131 +676 1483 4 892685826 +600 385 3 888451582 +847 473 2 878938855 +391 76 3 877399618 +851 290 4 874728430 +698 511 2 886367693 +804 528 4 879443048 +536 141 4 882361042 +804 1074 1 879447476 +464 1025 2 878354829 +497 472 3 879310650 +385 1014 2 879450441 +230 22 5 880484850 +792 100 4 877910822 +774 2 1 888557383 +8 11 3 879362233 +590 237 3 879438911 +537 96 3 886031576 +102 294 2 883277645 +863 333 5 889289123 +48 215 4 879434751 +889 134 4 880179648 +647 88 4 876534041 +184 640 4 889909551 +886 819 4 876033897 +860 514 5 885991040 +109 282 3 880564678 +535 499 4 879617894 +601 508 4 876346964 +798 444 2 875639115 +622 674 2 882670929 +761 291 3 876190770 +838 179 5 887067340 +601 591 3 876347267 +865 245 3 880235263 +772 288 2 889028773 +386 127 5 877654961 +552 1047 3 879222521 +642 1047 3 885606327 +423 678 3 891395020 +889 160 4 880180945 +852 289 2 891035325 +307 64 4 879283371 +878 949 3 880871600 +334 73 3 891548695 +833 919 2 875124348 +378 707 3 880046475 +288 269 5 886373071 +592 48 5 882955735 +382 482 5 875946945 +201 1267 3 884141053 +59 89 5 888204965 +330 963 5 876547533 +766 212 5 891310125 +203 890 2 880433499 +771 709 5 880659894 +768 628 3 880136174 +845 313 4 885409374 +676 168 5 892686459 +863 315 5 889288910 +15 125 5 879456049 +699 1013 3 879147722 +854 382 4 882813761 +545 194 3 879899677 +881 790 3 876539549 +787 880 3 888979123 +435 928 3 884134187 +862 147 5 879304196 +561 428 4 885810084 +622 70 3 882670562 +774 515 2 888556398 +416 1189 5 893213917 +836 496 4 885754231 +698 625 3 886366731 +488 526 4 891294530 +125 153 2 879454419 +787 342 2 888979875 +659 69 3 891384916 +474 607 4 887926872 +889 654 3 880178512 +532 431 5 892521553 +747 347 5 888638091 +552 294 4 879220688 +505 190 4 889333598 +786 69 4 882844295 +459 676 3 879563288 +313 238 4 891013859 +604 443 3 883668352 +868 1035 1 877107817 +774 577 2 888556278 +409 879 1 881105366 +347 177 5 881654386 +747 409 1 888733595 +621 686 5 880739852 +409 714 3 881108170 +699 1011 4 880696196 +537 230 2 886031860 +749 133 4 878849052 +704 632 3 891397441 +425 879 2 878737593 +436 506 5 887770485 +59 69 5 888205087 +788 823 3 880871294 +244 214 5 880603219 +592 93 4 882608061 +551 71 4 892783281 +233 89 3 875508225 +566 191 4 881649853 +387 475 3 886480657 +782 1226 2 891499439 +452 530 3 875562062 +712 433 3 874956903 +581 515 4 879641533 +694 521 3 875730042 +22 127 5 878887869 +385 1495 3 879443186 +807 380 4 893080442 +363 65 4 891495682 +823 87 5 878438887 +609 877 5 886895649 +831 100 4 891354573 +782 1105 3 891498766 +610 283 3 888703316 +874 306 4 888632194 +886 781 4 876033340 +621 183 4 874963594 +532 520 5 892861434 +782 286 2 891497906 +749 496 5 878847673 +545 890 2 880347690 +782 989 3 891498267 +833 1016 1 875133458 +659 134 4 891332189 +474 657 5 887924028 +270 268 5 876953745 +889 65 4 880180817 +870 568 4 879714588 +879 282 4 887761865 +762 875 5 878718996 +450 505 5 882376658 +707 536 3 880059921 +862 1093 5 879304196 +638 685 4 876695307 +848 151 4 887043180 +429 88 3 882386895 +740 294 4 879523187 +868 265 3 877108302 +806 485 5 882388381 +731 588 3 886184682 +399 1396 4 882343455 +828 1153 3 891037948 +764 173 3 876245383 +666 319 4 880138999 +290 135 4 880474510 +214 960 2 891544152 +334 258 4 891544264 +577 64 5 880474394 +177 324 4 880130434 +402 9 4 876266741 +413 147 2 879969860 +684 274 2 878759884 +846 702 4 883949380 +679 143 2 884487135 +615 216 4 879449068 +632 50 5 879459738 +542 871 2 886533142 +694 1221 3 875728842 +751 95 5 889134419 +663 872 3 889491919 +561 474 5 885807318 +361 176 4 879441215 +720 1176 5 891262812 +489 750 5 891448080 +837 13 4 875721843 +257 61 5 879547534 +823 433 4 878438379 +296 181 5 884198772 +829 237 3 891204271 +592 178 5 882956241 +848 234 4 887037861 +862 491 3 879304799 +405 446 1 885548385 +885 428 4 885713461 +877 286 2 882675993 +486 1598 5 879874583 +867 318 5 880078424 +773 217 3 888540314 +436 1053 4 887771853 +889 58 3 880178130 +716 473 4 879794379 +477 294 4 875940693 +847 926 1 878938792 +774 56 2 888555928 +23 522 4 874785447 +345 118 3 884991520 +735 106 3 876698714 +884 322 3 876857745 +582 1033 2 882962030 +675 891 2 889488779 +435 22 4 884131156 +766 1126 4 891309767 +846 398 1 883950753 +215 552 3 891436730 +244 1467 5 880605553 +739 1431 5 886825529 +886 68 3 876032422 +378 381 4 882642831 +459 651 3 879564309 +748 222 4 879454707 +457 183 5 882397455 +802 672 3 875985767 +805 167 3 881705534 +650 420 3 891385826 +881 222 5 876536079 +179 1234 1 892151459 +883 239 3 891694401 +654 239 4 887864868 +878 172 4 880870854 +892 134 5 886608591 +44 133 4 878347569 +711 170 5 876279059 +848 1118 5 887048573 +328 720 3 885049535 +580 15 3 884125339 +234 238 3 892079040 +867 96 5 880078656 +298 333 5 884126600 +497 12 4 879362019 +119 82 2 874781352 +789 293 4 880332259 +709 405 3 879848590 +151 44 4 879542413 +380 515 4 885478218 +527 603 4 879456078 +758 546 3 882053613 +805 174 3 881694798 +789 9 5 880332114 +768 591 4 883834945 +857 300 3 883432251 +643 98 3 891446688 +694 492 4 875727581 +483 257 2 878952519 +712 1053 4 874730490 +606 969 5 880925074 +828 286 4 891033342 +872 597 4 888479370 +263 520 3 891298163 +577 7 2 880470447 +650 316 3 891369190 +843 23 2 879446696 +458 736 4 886398543 +271 48 4 885849087 +850 300 5 883194367 +758 547 5 881975472 +383 478 5 891193042 +397 109 4 889760803 +567 246 4 882426508 +763 209 4 878918213 +518 106 5 876823804 +661 433 5 876016545 +796 487 5 892676195 +393 463 4 889555225 +532 82 5 892521554 +313 514 4 891013887 +256 595 4 882164037 +653 425 2 880606619 +862 64 5 879304326 +630 310 3 885665975 +850 210 5 883195301 +804 679 4 879445393 +710 496 4 882063793 +413 286 5 879968793 +339 170 5 891032286 +450 528 5 882371526 +881 1124 4 876538627 +833 696 3 875036912 +566 122 2 881651583 +292 486 4 881105246 +880 228 3 880167843 +326 53 1 879877039 +119 288 4 886175150 +557 337 5 881179653 +663 1009 3 889493069 +489 339 3 891448428 +267 715 4 878972682 +743 303 5 881277357 +868 73 1 877108220 +886 147 5 876033228 +436 72 5 887770693 +524 216 5 884634849 +154 222 2 879138910 +251 535 3 886272283 +890 118 2 882915661 +787 245 3 888980193 +334 244 3 891545044 +600 679 2 888451839 +561 1018 3 885809806 +851 588 4 875731529 +892 273 4 886608681 +798 953 2 875639290 +833 628 4 875036102 +886 235 3 876032739 +491 237 3 891187226 +457 51 5 882397734 +178 246 4 884837324 +592 1143 5 882607872 +401 371 3 891033550 +676 9 2 892686134 +128 381 3 879969033 +699 1028 2 880696678 +870 255 2 889409590 +618 735 3 891308571 +234 663 4 892335707 +327 684 4 887820293 +889 168 4 880178449 +354 735 3 891218312 +534 243 3 877807461 +643 114 4 891446854 +80 483 5 887401328 +268 286 5 875306477 +435 1291 1 884134853 +224 980 1 888104353 +522 11 4 876961076 +889 762 3 880177154 +823 53 5 878439229 +739 661 2 886958831 +889 246 4 880176926 +669 194 3 891517159 +792 1197 4 877910822 +881 441 2 876539549 +773 531 5 888538853 +893 56 5 874829733 +843 625 2 879448542 +825 275 3 881100775 +692 763 3 876954381 +757 232 3 888466435 +825 122 1 889021209 +798 66 3 875639364 +452 237 2 875263068 +747 73 4 888640305 +703 628 4 875242762 +440 340 2 891549397 +290 405 2 880732365 +625 254 3 891273897 +885 1 5 885714990 +650 137 3 891385105 +838 96 4 887065781 +841 754 4 889067045 +783 264 4 884326726 +887 931 3 881379009 +592 544 4 882608107 +613 632 3 891227204 +886 233 3 876032126 +826 288 3 885689759 +863 1024 3 889289619 +653 366 2 880152901 +615 509 4 879448149 +727 174 4 883710186 +843 674 2 879443394 +489 324 3 891445320 +781 205 5 879634256 +756 1 4 874826629 +655 653 3 892011201 +854 505 4 882813600 +848 755 5 887046674 +314 132 4 877890644 +859 421 5 885776384 +882 204 5 879864697 +650 380 2 891383735 +526 277 2 885682657 +269 135 4 891447931 +881 13 4 876536364 +848 172 5 887038022 +537 76 3 886031934 +851 307 4 878574215 +664 528 5 876523833 +130 453 3 880396602 +663 123 3 889492562 +542 235 3 886533228 +648 619 3 882211301 +854 223 4 882814177 +798 163 3 875814110 +883 224 4 891692683 +891 546 3 883489282 +894 15 3 880416340 +303 554 2 879484500 +758 294 5 880672523 +321 197 5 879439812 +868 358 2 877103098 +347 174 4 881654248 +113 127 4 875935610 +867 174 5 880078991 +798 173 5 875656071 +886 160 1 876031550 +392 300 2 891037437 +399 99 3 882344269 +192 100 5 881367706 +634 331 4 875728702 +773 403 2 888540091 +771 1129 5 880660106 +821 213 5 874793806 +450 570 4 887139728 +87 94 4 879876703 +90 1045 2 891385843 +751 193 5 889133556 +174 1311 3 886514430 +741 673 4 891455671 +655 49 1 887428417 +593 471 3 875659826 +805 86 4 881696729 +758 123 1 881977872 +854 86 3 882814436 +747 1456 3 888732747 +608 269 3 880402272 +472 796 4 875981595 +437 170 5 880140787 +524 815 3 884627519 +314 722 1 877891089 +630 240 3 885667200 +868 109 3 877107627 +660 491 4 891199348 +783 269 4 884326274 +145 636 4 875272050 +748 237 4 879454880 +805 101 2 881695591 +412 24 3 879717177 +463 887 5 890452468 +617 646 4 883789386 +724 682 1 883757703 +653 70 2 880151340 +453 204 4 877554704 +555 340 4 879962096 +454 193 2 881959818 +893 147 3 874828569 +500 77 3 883875793 +805 212 3 881696729 +642 1146 1 886570084 +792 831 2 877910666 +810 331 4 891873686 +630 735 2 885668231 +749 87 4 878849558 +892 781 4 886610137 +889 819 2 880177738 +829 213 4 881698933 +766 639 3 891309622 +804 1028 3 879445556 +868 183 5 877104414 +286 931 4 876522340 +846 180 5 883947630 +846 317 3 883947778 +880 1291 3 880175468 +664 50 5 878090415 +666 286 5 880138999 +575 96 5 878148199 +7 573 5 891353828 +492 221 3 879969454 +22 926 1 878887062 +894 888 4 879896756 +354 83 4 891217851 +883 665 4 891695717 +880 396 2 880174995 +798 795 3 876176160 +435 571 2 884134047 +894 405 3 880416177 +860 294 2 880829225 +551 7 5 892777638 +805 771 5 881695999 +638 195 4 876694787 +578 222 4 888957788 +661 71 4 876015530 +215 87 5 891436543 +796 198 4 892662871 +754 359 3 879451299 +870 603 5 875050723 +69 172 5 882145548 +65 64 5 879216529 +405 198 2 885549506 +383 58 4 891193210 +716 265 5 879797414 +566 110 1 881651813 +854 1086 3 882812195 +881 89 4 876537577 +847 372 5 878940189 +752 306 5 891208451 +95 381 4 880571678 +561 209 4 885807369 +749 742 4 878849375 +601 405 1 876347765 +761 235 3 876190182 +625 238 4 891636000 +243 157 5 879989217 +224 553 4 888104393 +882 173 5 879867980 +716 632 4 879795691 +737 96 2 884314715 +881 1046 3 876539051 +840 48 3 891204418 +375 773 3 886621985 +425 522 3 878738077 +417 252 3 879646530 +854 603 4 882813600 +468 12 4 875291902 +880 72 3 880174996 +854 928 3 882813143 +648 227 3 884882803 +27 288 3 891543129 +778 98 4 890725951 +458 632 4 886398289 +174 724 5 886453169 +731 69 5 886179040 +579 732 4 880952335 +882 140 3 879879868 +11 372 4 891904968 +541 627 4 883874749 +846 755 3 883950311 +439 276 5 882892755 +854 22 2 882813691 +891 117 3 883488774 +790 98 5 885156375 +312 14 5 891698664 +788 693 2 880868705 +447 410 2 878854630 +802 443 4 875985686 +186 159 5 879023723 +200 449 5 884130540 +445 1143 4 891200870 +561 200 4 885807743 +781 204 4 879634256 +412 684 4 879717313 +864 966 4 888888994 +796 271 5 892874827 +877 60 5 882677183 +7 379 4 891353325 +102 55 3 888801465 +394 158 3 881059315 +645 513 5 892054481 +846 770 5 883948606 +847 1160 4 878939153 +686 451 4 879546847 +848 899 3 887037471 +881 294 3 876535642 +530 333 3 890627264 +815 596 5 878692043 +846 228 5 883947737 +867 258 3 880077751 +890 98 4 882403446 +780 526 5 891364125 +177 181 4 880130931 +543 233 4 877545716 +455 123 3 879111705 +627 713 2 879530306 +806 1071 4 882388965 +1 4 3 876893119 +405 526 1 885546154 +865 169 5 880235059 +715 376 2 875964545 +854 250 4 882812376 +313 82 3 891014838 +255 324 5 883215586 +692 168 2 876953204 +882 71 5 879867631 +629 655 5 880117333 +883 561 3 891695717 +561 539 1 885807035 +753 134 4 891402323 +60 501 3 883327472 +468 118 3 875280417 +537 646 2 886030552 +506 1407 2 885135954 +537 382 3 886030938 +1 263 1 875693007 +214 98 4 892668249 +671 257 5 875388720 +857 14 4 883432633 +892 151 4 886609330 +312 507 5 891698300 +796 9 3 892660251 +871 1385 3 888193136 +868 173 4 877107961 +804 188 4 879442096 +784 754 3 891387249 +90 270 4 891382310 +566 155 2 881651225 +42 71 4 881108229 +389 211 4 880087415 +393 1044 4 889731821 +456 403 2 881373900 +878 655 3 880866687 +145 227 4 885557660 +821 357 5 874793517 +741 496 5 891456718 +887 1012 1 881378153 +524 823 4 884628136 +863 303 1 889288911 +406 507 4 879445735 +551 461 3 892778074 +588 63 5 890028385 +870 386 4 880584752 +796 1101 5 892690382 +660 405 2 891198479 +840 529 4 891204891 +577 79 4 880474530 +655 209 3 887473831 +705 849 3 883428201 +484 449 4 891195602 +749 808 3 878849929 +474 490 5 887926059 +387 289 1 886484413 +559 515 4 891035111 +605 69 5 879425432 +559 144 5 891034551 +788 1 3 880867970 +468 471 3 875279269 +804 719 3 879445132 +402 117 3 876267173 +767 222 5 891462760 +751 849 2 889299133 +296 483 5 884197307 +545 426 3 879901483 +867 252 2 880078179 +696 1062 4 886403631 +666 544 4 880313682 +222 1220 4 878184290 +756 731 3 874827920 +481 322 4 885828016 +847 118 3 878775982 +506 873 4 889874717 +844 50 5 877388182 +814 448 3 885411030 +551 470 5 892783711 +411 449 3 891035405 +288 214 2 886374316 +455 1086 3 879109692 +687 988 3 884652429 +894 333 4 879896756 +679 268 4 884312834 +887 839 4 881379566 +894 246 4 882404137 +805 151 5 881705810 +871 747 3 888193541 +894 297 4 880416380 +622 209 5 882592421 +653 658 2 880151817 +543 391 3 877547190 +718 815 4 883348873 +435 1016 4 884134377 +334 950 3 891545162 +871 1345 3 888193136 +194 78 1 879535549 +648 13 3 882212071 +492 45 3 879969814 +852 820 4 891037754 +712 768 5 874956560 +586 85 3 884067003 +49 1017 3 888069040 +870 216 4 875680520 +327 1218 4 887822400 +642 1000 3 885602340 +727 1139 3 883713348 +637 24 2 882903511 +664 194 4 876525998 +655 269 3 888474807 +524 693 5 884636562 +825 120 3 889020852 +892 849 2 886610341 +758 213 5 881976377 +655 1623 4 887428735 +564 1016 2 888730699 +790 826 1 884462714 +785 12 4 879439137 +851 273 5 891961663 +763 157 4 878917467 +863 326 5 889289157 +846 239 4 883947694 +77 28 5 884753061 +763 70 5 878917468 +676 328 5 892685657 +536 1063 5 882359938 +859 1014 4 885775564 +727 820 2 883709539 +846 1018 4 883949421 +276 260 3 874786439 +536 179 2 882359625 +646 893 3 888529080 +655 46 4 887523403 +647 831 3 876776321 +268 25 3 875742556 +361 70 4 879440386 +756 435 3 874832788 +708 25 3 877325838 +886 1303 1 876033987 +466 1607 5 890284231 +642 1136 4 888123195 +655 1278 2 887433780 +483 743 1 893098548 +606 405 4 878148493 +145 901 1 885556116 +881 183 4 876537995 +592 547 4 882607910 +411 276 3 892845575 +655 520 3 887523427 +795 97 2 881529761 +835 526 3 891033927 +751 1078 3 889299290 +881 161 3 876538506 +79 1 4 891271870 +768 151 2 880135923 +450 1115 4 882395778 +45 111 4 881011550 +634 1047 3 875729668 +26 369 2 891379664 +181 1163 2 878963086 +405 417 2 885548836 +870 770 4 875679992 +881 514 4 876537457 +728 546 2 879443155 +353 260 1 891402617 +876 48 5 879428481 +417 17 4 879648183 +857 325 1 883432397 +698 258 3 886365527 +261 326 4 890454279 +524 499 4 884637598 +761 295 4 876190130 +696 245 4 886404208 +681 690 4 885409770 +293 455 2 888905229 +880 348 4 892958376 +663 322 4 889491739 +886 232 3 876032973 +453 515 4 876191626 +632 591 4 879459053 +290 809 4 880475664 +889 488 2 880180265 +820 315 3 887954828 +339 515 5 891033072 +768 121 4 883834705 +113 325 4 875935610 +176 876 3 886047375 +786 99 4 882843112 +301 294 4 882074408 +1 203 4 878542231 +450 196 5 882371526 +63 1138 2 875747789 +487 289 2 883441083 +862 478 4 879305016 +600 570 4 888452563 +896 1101 2 887159110 +177 96 3 880130898 +843 542 2 879448392 +896 403 1 887160554 +378 40 3 880333653 +313 172 4 891014335 +864 13 4 877214125 +682 946 4 888523155 +598 691 2 886710330 +699 831 2 884152570 +660 385 3 891199883 +385 419 2 879442606 +561 1131 4 885807173 +690 8 4 881177430 +389 509 4 880614449 +864 386 3 888891288 +721 216 5 877138498 +873 300 4 891392238 +363 315 3 891493603 +457 196 5 882397763 +642 67 4 885843025 +393 344 3 891364581 +68 713 2 876974073 +5 406 1 875635807 +451 327 4 879012580 +488 173 4 891294473 +293 956 3 888906726 +460 313 4 882910837 +457 151 5 882394010 +253 655 4 891628142 +486 1322 3 879875347 +880 566 3 880167880 +13 531 3 882140104 +864 163 4 888888680 +693 1135 3 875482689 +506 399 5 874874054 +824 294 3 877021002 +210 654 5 887737559 +880 931 3 880243564 +312 660 4 891699321 +401 604 4 891033370 +487 150 5 883442430 +788 645 3 880870626 +881 135 4 876537900 +796 196 5 892675693 +374 1048 3 880394179 +636 100 5 891448228 +858 292 3 879459087 +554 22 4 876232794 +63 748 4 875747010 +738 214 4 875350157 +601 99 3 876350536 +52 1085 4 882922454 +864 222 4 888887502 +655 655 3 888474285 +838 143 5 887067631 +848 162 2 887048541 +878 794 4 880869418 +33 329 4 891964326 +692 25 4 876953340 +812 294 5 877625367 +757 156 3 888445551 +361 216 5 879440740 +554 230 5 876369968 +422 670 2 879744143 +637 121 4 882904458 +867 524 5 880078604 +864 173 5 888889129 +455 455 3 879111862 +109 209 1 880572756 +713 345 3 888881939 +758 474 5 881976089 +870 549 2 879270213 +618 443 4 891308665 +782 266 1 891498919 +747 480 5 888639060 +807 485 5 892531977 +187 83 5 879465274 +753 195 1 891401851 +298 526 5 884182573 +336 367 3 877757910 +852 930 3 891037777 +290 235 3 880474451 +761 326 1 876189715 +711 82 3 879994632 +825 870 3 880931932 +465 428 3 883531246 +43 70 4 883955048 +887 1015 5 881377933 +590 116 5 879439196 +844 318 4 877382762 +328 939 4 885046655 +407 675 3 876349153 +877 59 5 882677012 +630 756 4 885667551 +329 302 5 891655191 +661 972 3 876016581 +447 227 2 878856233 +293 218 2 888906168 +248 172 4 884534992 +10 654 5 877886597 +639 1465 2 891239048 +883 69 2 891717356 +881 179 5 876538400 +731 648 4 886183515 +889 1589 5 880177219 +642 944 5 885605987 +833 427 3 878078390 +686 97 2 879546847 +846 46 4 883949199 +313 58 3 891015387 +655 287 3 890497592 +592 1010 5 882608357 +773 2 3 888540146 +838 302 4 887060659 +640 496 4 874777491 +356 312 3 891406317 +846 1133 2 883950711 +727 1 3 883708660 +639 116 3 891239739 +788 228 3 880870365 +854 487 4 882813990 +727 206 3 883711896 +893 426 4 874829733 +402 483 5 876267173 +286 116 5 875806888 +691 631 4 875543025 +311 210 5 884364652 +896 108 3 887159854 +601 259 1 876346515 +858 181 2 879460595 +702 687 1 885767629 +640 47 4 874777735 +279 862 5 875313646 +424 100 5 880859446 +661 230 4 888300344 +605 117 2 879365748 +845 272 3 885409374 +592 890 1 882607745 +852 678 3 891036414 +682 1188 3 888519408 +846 1101 3 883948685 +804 972 3 879445783 +365 309 1 891303566 +606 1055 4 880923690 +790 173 3 885156046 +882 186 5 879879731 +870 1006 2 881001249 +653 657 4 890181185 +882 215 5 879867816 +410 354 3 888626481 +591 79 4 891031171 +193 121 3 889125913 +57 117 4 883697512 +634 222 3 875728913 +308 73 3 887738972 +552 284 3 879222071 +844 69 5 877388182 +790 42 5 885156686 +878 286 4 880865183 +510 322 3 887667752 +595 948 3 886920919 +660 1110 2 891201823 +764 28 4 876245069 +755 311 4 882569771 +248 98 5 884534673 +799 654 5 879254027 +631 334 2 888464941 +846 504 5 883948221 +560 268 4 879975173 +782 1283 2 891499469 +650 568 3 891381709 +868 452 2 877111394 +382 334 5 876802971 +883 53 5 891696999 +449 60 5 880410652 +712 755 4 874957113 +842 268 5 891218059 +835 215 4 891033199 +862 22 5 879304571 +766 496 5 891309767 +592 89 4 882955543 +606 55 4 880926245 +437 415 4 880143591 +386 597 3 877655145 +805 7 5 881694693 +796 173 5 892662483 +764 866 4 876244181 +655 1634 2 888474019 +555 129 4 882385841 +543 367 4 876105366 +848 125 5 887040159 +463 475 3 877385341 +303 128 4 879467542 +466 184 4 890285113 +450 133 5 882373019 +889 196 5 880180612 +666 866 2 880313582 +894 134 4 879897198 +861 86 5 881274630 +91 511 5 891439243 +90 212 4 891384147 +892 87 5 886609263 +541 511 4 883864739 +159 1221 5 884027141 +879 1 4 887761865 +505 102 1 889334526 +666 89 4 880139149 +828 83 3 891036826 +703 596 3 875242912 +479 526 4 879461378 +454 1126 2 888266955 +645 239 3 892055445 +663 682 3 889491891 +734 423 4 891022734 +728 147 4 879443418 +95 195 5 879196231 +234 832 2 892335501 +698 482 2 886367406 +606 963 5 880923925 +768 966 4 883834814 +662 985 4 880571006 +682 249 3 888518722 +582 1014 4 882962247 +889 886 3 880176666 +618 127 5 891307619 +537 448 3 886032001 +479 95 4 879461818 +846 400 1 883950889 +450 620 4 882399818 +504 440 3 887910370 +710 334 2 882063327 +806 162 3 882388557 +802 484 3 875985239 +886 108 5 876033200 +889 73 3 880181663 +194 387 2 879527146 +882 105 3 879863735 +385 98 4 879442189 +450 310 4 887660650 +804 63 4 879445334 +297 210 4 875410100 +896 281 2 887161172 +660 230 3 891199856 +846 1182 2 883950488 +846 837 5 883948495 +429 28 3 882385636 +666 144 3 880314144 +372 674 5 876869512 +249 407 3 879640618 +758 231 3 881979012 +9 201 5 886960055 +804 826 3 879443776 +653 294 2 878853618 +682 274 4 888521740 +896 67 2 887160983 +727 29 3 883712603 +630 687 3 885666301 +717 975 2 884642843 +796 232 3 893048911 +886 273 2 876032274 +493 173 4 884131114 +603 216 4 891957139 +883 882 4 891691388 +886 419 3 876032353 +853 873 3 879365091 +18 22 5 880130640 +365 591 4 891303901 +698 199 2 886367065 +181 884 1 878961847 +244 249 4 880604930 +666 1021 5 880139669 +869 312 2 884490251 +533 120 1 879366160 +678 1115 3 879544815 +896 310 4 887157208 +51 181 5 883498655 +846 739 4 883949459 +506 323 3 875444631 +740 269 4 879523187 +665 12 4 884294286 +551 796 4 892785264 +481 484 4 885828686 +749 197 4 878848044 +878 126 3 880865940 +745 258 5 880122502 +727 435 3 883710687 +870 487 4 879270313 +500 821 2 883876837 +753 504 3 891401457 +388 680 5 886439808 +871 259 3 888192971 +798 283 5 875637963 +892 441 3 886610267 +450 618 4 882373995 +536 423 4 882360601 +332 307 5 888098170 +764 15 4 876242945 +814 443 3 885411132 +897 1 5 879994113 +642 1209 3 885606212 +554 756 3 876231938 +328 915 3 893195665 +594 357 4 874786664 +878 22 2 880866918 +279 373 4 875659844 +706 294 4 880996945 +682 948 2 888516865 +751 485 4 889134483 +399 181 3 882342689 +405 1311 1 885546859 +657 118 1 884240732 +777 521 5 875980235 +796 928 2 893194929 +779 71 4 875999285 +75 1152 1 884050502 +214 357 5 892668130 +848 195 3 887040097 +763 505 4 878919206 +848 99 3 887038397 +724 678 2 883757874 +642 122 2 885606463 +682 25 4 888521564 +405 161 1 885547997 +847 180 2 878939945 +847 183 4 878940332 +370 222 3 879434746 +851 313 4 883148627 +853 879 4 879364955 +419 275 5 879435520 +843 511 3 879447837 +606 173 5 880924859 +734 165 3 891025393 +458 603 4 886397155 +659 98 4 891045943 +825 1016 3 880756077 +663 1051 3 889493118 +711 241 4 879994536 +894 269 3 879896041 +560 476 2 879977124 +655 1296 3 891585242 +844 109 2 877381850 +314 508 3 877886789 +831 250 5 891354931 +293 420 4 888907356 +518 288 3 876822581 +363 429 5 891496077 +820 264 3 887955180 +399 378 3 882348284 +561 675 3 885808904 +383 205 4 891193210 +815 404 4 878695147 +504 939 4 887838869 +537 486 3 886031149 +862 433 4 879304445 +658 7 4 875145879 +271 690 4 885844430 +513 252 5 885063549 +839 220 3 875753029 +705 720 5 883428178 +469 199 4 879524006 +727 239 4 883711449 +393 597 3 887745293 +890 237 3 882575209 +293 571 2 888908041 +679 223 5 884487052 +450 300 4 882216475 +622 482 3 882592178 +788 492 3 880868235 +642 356 4 886132104 +758 273 4 881977714 +664 302 4 876523093 +347 200 4 881654452 +833 597 1 875133458 +826 627 4 885690342 +864 603 4 888888025 +131 744 4 883681384 +653 53 2 880153304 +829 640 3 881707829 +828 213 2 891037865 +717 678 3 884641842 +345 87 5 884991984 +7 546 4 891353444 +690 554 3 881180005 +291 1090 2 875087634 +423 307 3 891394673 +787 324 2 888979605 +328 657 4 885046134 +830 97 4 892502984 +540 628 3 882157148 +75 1048 4 884050705 +13 202 5 882141425 +807 678 3 892527569 +707 212 4 886286792 +862 429 5 879304526 +507 250 5 889966024 +890 181 4 882405808 +823 160 4 878438232 +620 123 3 889987190 +158 217 5 880133095 +693 378 2 883975537 +421 709 4 892241389 +694 511 5 875728048 +271 480 4 885848475 +890 89 4 882403446 +632 385 4 879458649 +547 289 3 891282775 +684 168 4 878761120 +618 109 2 891308615 +14 473 5 876964936 +398 72 3 875719399 +705 623 5 883427778 +823 164 3 878437658 +864 123 4 888890594 +588 82 5 890024829 +696 906 3 886403769 +222 537 4 881060735 +796 1 2 892660251 +846 172 4 883949834 +880 597 3 880167436 +727 926 3 883709438 +577 161 5 880475561 +698 588 4 886367558 +541 404 4 883874646 +853 292 4 879364669 +746 449 1 885075476 +705 89 2 883428083 +890 340 4 882402181 +750 683 1 879445911 +788 474 3 880868599 +790 288 4 884460942 +867 1608 2 880078110 +897 597 5 879993519 +451 330 3 879012721 +707 606 4 886285762 +887 993 5 881378251 +374 572 2 880938255 +839 129 4 875751893 +833 434 3 875038888 +881 141 3 876538889 +463 819 1 889937778 +818 322 2 891870389 +704 175 3 891397712 +626 258 4 878771243 +840 97 3 891205041 +796 183 5 892662441 +524 241 5 884635205 +18 210 5 880131054 +141 409 5 884585274 +621 676 3 880737607 +354 602 3 891217717 +535 699 4 879619000 +710 874 3 882063254 +379 193 4 880524783 +741 423 3 891018339 +758 33 4 881976335 +727 246 4 883708806 +790 231 4 885158057 +764 432 5 876245421 +565 381 2 891037628 +698 648 4 886367100 +249 179 5 879641140 +868 232 1 877109082 +56 50 5 892737154 +881 281 3 876536439 +675 318 5 889489273 +537 272 4 886028446 +889 655 4 880178224 +890 163 3 883010005 +683 22 4 893286550 +586 451 4 884067422 +892 226 3 886610201 +807 73 3 892532030 +606 260 3 887059561 +747 268 5 888638091 +846 238 5 883948377 +398 202 3 875725256 +795 386 3 883254649 +233 127 5 877661364 +641 50 3 879370150 +393 687 3 887742916 +814 675 3 885410957 +655 1214 2 891999461 +793 288 4 875103584 +825 258 4 880932625 +826 232 3 885690713 +535 425 5 879618338 +880 1284 4 880167355 +149 245 3 883512813 +658 86 4 875147873 +887 369 5 881378896 +770 93 5 875971989 +505 471 4 889333392 +831 150 3 891354815 +852 841 4 891037625 +880 879 3 880166529 +749 232 4 878848483 +322 346 3 887313611 +728 285 4 879443446 +554 1012 3 876231839 +684 49 4 878762243 +863 242 4 889289570 +496 150 2 876064230 +862 121 5 879304196 +864 215 4 888888994 +508 208 5 883776748 +747 508 5 888638876 +234 557 1 892335989 +639 582 3 891239739 +617 1021 4 883788730 +758 780 5 882054468 +450 114 5 887660504 +47 301 4 879440333 +880 451 2 880243230 +677 678 4 889399113 +883 709 5 891694431 +442 68 3 883390416 +889 1103 2 880180071 +845 1434 4 885409719 +334 225 3 891545645 +749 96 5 878847498 +731 196 5 886186811 +846 606 4 883948685 +387 430 3 886482882 +7 443 5 891353254 +766 175 3 891309118 +830 523 4 891898661 +701 311 5 891446679 +430 528 4 877226164 +299 93 2 877877775 +70 684 3 884149646 +456 1017 4 881372574 +271 792 4 885849536 +194 657 4 879521328 +537 1005 3 886031752 +805 541 3 882216971 +271 763 3 885847876 +897 472 5 879993620 +374 527 4 883628801 +789 50 5 880332114 +653 179 4 880149927 +731 427 5 886186940 +773 176 4 888539962 +561 70 4 885808673 +561 86 4 885809064 +863 361 5 889289618 +685 299 2 879451540 +887 1 5 881377972 +13 750 5 883670552 +379 644 5 880961648 +85 1070 4 879453809 +399 144 3 882342689 +697 288 2 882621431 +881 112 2 876536978 +632 82 4 879457903 +889 728 3 880181995 +554 204 5 876550610 +373 80 3 877107235 +198 462 3 884209535 +727 167 2 883713419 +676 471 3 892686273 +387 248 4 886481151 +833 1231 4 875132237 +878 212 3 880867987 +623 210 5 891035112 +781 174 5 879634256 +13 817 1 882396914 +171 288 2 891034606 +758 657 5 881975213 +458 129 4 886394667 +374 756 3 882157967 +165 174 4 879525961 +313 654 5 891013681 +648 275 5 882211016 +901 275 3 877130677 +780 187 5 891363904 +727 369 2 883709948 +655 375 2 888984293 +545 98 5 879899861 +823 642 4 878439089 +489 902 4 891448931 +181 847 1 878962550 +894 302 4 879896041 +379 96 5 880741811 +825 515 4 880756076 +846 673 4 883949422 +545 423 4 884134114 +495 665 1 888637169 +43 542 3 883956518 +572 319 4 879449209 +760 1037 5 875668781 +880 1001 2 880167435 +627 100 5 879529702 +751 226 3 889134237 +417 172 3 879647519 +505 127 1 889333711 +780 511 5 891364027 +271 2 1 885849386 +293 175 2 888906244 +629 475 4 880117121 +543 792 4 877550535 +494 121 4 879541429 +13 506 5 882140691 +488 289 1 891293263 +843 672 3 879443297 +886 118 1 876032673 +757 432 3 888467269 +209 1086 4 883417667 +586 83 2 884059196 +509 268 2 883590443 +815 1078 2 878695903 +803 688 1 880055043 +774 774 1 888557883 +369 179 4 889428442 +655 1256 3 887425655 +889 381 4 880180784 +308 185 4 887736925 +212 87 5 879304010 +634 544 3 875729478 +788 809 3 880870401 +545 78 2 884134578 +553 559 3 879949251 +577 1517 3 880475644 +168 458 1 884288058 +896 525 5 887158164 +7 651 5 891350932 +829 855 4 881698934 +23 367 4 874785957 +889 1267 3 880182629 +648 183 5 884368442 +840 495 3 891209322 +399 388 2 882350791 +493 369 2 884130271 +871 241 3 888193385 +682 881 3 888521291 +388 302 5 886438122 +379 331 4 880526281 +660 254 1 891357371 +417 596 3 879646244 +840 285 4 891203203 +896 212 2 887160582 +305 729 3 886324712 +765 522 5 880346951 +746 1 4 885075714 +592 358 1 882607690 +314 283 4 877886483 +65 25 4 879217406 +682 98 4 888520638 +503 277 4 879438580 +892 1219 2 886611079 +716 601 4 879794892 +707 311 4 879439624 +484 274 4 881450085 +385 855 5 882081995 +774 692 1 888556121 +272 234 4 879455143 +585 165 4 891284184 +666 163 3 880567742 +487 222 4 883442018 +892 661 5 886608473 +867 498 4 880078401 +617 859 3 883789590 +723 169 4 880498938 +750 288 4 879445808 +827 690 3 882807503 +429 433 3 882385858 +599 288 4 880950997 +573 180 4 885844091 +665 257 3 884292654 +598 347 3 886710330 +676 890 1 892685900 +416 38 3 886318228 +574 340 1 891279174 +749 746 5 878848764 +716 393 3 879796596 +561 87 3 885809197 +749 322 4 878846422 +405 229 1 885548048 +647 121 4 876534274 +654 215 4 887864587 +410 323 3 888626990 +805 5 4 881695293 +491 284 3 891185330 +371 449 3 880435733 +779 21 5 875996932 +627 471 3 879530463 +283 91 5 879297965 +343 410 3 876403212 +201 468 4 884140927 +773 1240 3 888539256 +713 342 3 888882179 +236 179 1 890118417 +749 237 3 878846782 +545 117 4 879899233 +21 769 1 874951916 +42 941 4 881109060 +13 69 4 884538766 +848 95 5 887041354 +718 1047 3 883349442 +892 432 4 886610996 +870 704 3 879714532 +629 193 5 880117565 +116 603 3 876454174 +746 222 3 885075267 +864 245 4 887686369 +896 136 5 887158768 +875 923 5 876465370 +709 508 4 879846590 +698 172 5 886367100 +813 988 3 883752528 +878 402 4 880869303 +721 77 5 877147200 +493 151 3 884130516 +853 301 1 879364744 +899 208 3 884121857 +901 509 4 877288977 +741 478 5 891456741 +727 79 4 883710806 +782 681 3 891498436 +826 11 4 885690526 +142 147 1 888640356 +221 1098 4 875245283 +833 385 3 875039204 +896 752 1 887161916 +311 1297 4 884365654 +505 742 4 889334162 +291 173 5 874871800 +450 511 5 882372178 +592 333 5 882607476 +316 174 1 880854539 +548 79 5 891044482 +385 59 2 879442490 +666 607 4 880139563 +747 1159 2 888639685 +779 195 5 875999211 +840 79 4 891204135 +622 1408 1 882672922 +715 1215 1 875962762 +365 316 4 891303638 +798 805 4 875743813 +749 510 4 878847404 +657 282 3 884239745 +825 281 3 880756678 +398 178 5 875718614 +503 1475 5 880382768 +764 743 1 876243100 +648 431 5 884882664 +878 71 4 880870130 +705 826 4 883428238 +457 226 3 882548825 +141 407 2 884585523 +846 1239 2 883950634 +774 528 4 888556698 +702 227 4 885767775 +671 226 3 883949693 +380 215 3 885479163 +642 141 4 886568744 +602 1 4 888638547 +798 280 2 875554523 +690 581 2 881180109 +409 435 3 881107310 +766 568 2 891310313 +833 558 4 875039204 +763 144 3 878915722 +286 988 3 875806722 +551 597 4 892784976 +677 14 1 889399265 +875 514 5 876465112 +125 709 3 879454891 +640 346 4 886353742 +13 902 3 891749765 +495 1245 5 888633129 +661 8 5 876016491 +457 378 4 882548312 +848 165 5 887038397 +627 230 4 879531397 +824 292 3 877020927 +833 185 5 875039416 +655 238 3 887473831 +727 127 4 883708830 +428 294 4 885943651 +561 511 4 885807510 +882 559 3 879876806 +719 293 3 883982002 +339 655 4 891033452 +368 127 4 889783678 +579 1110 1 880952516 +288 197 5 889225574 +881 630 4 876539187 +584 431 3 885774702 +777 1079 2 875979431 +886 173 5 876031932 +831 174 5 891354534 +634 288 3 875729178 +844 216 5 877388183 +682 151 5 888523115 +840 531 5 891204089 +18 72 3 880132252 +748 153 4 879454930 +771 1 5 880659449 +782 1251 3 891500028 +22 62 4 878887925 +363 735 3 891496077 +650 214 3 891369587 +90 1136 3 891385899 +889 402 3 880182496 +699 340 4 893140639 +731 705 5 886182632 +506 855 4 874874802 +840 507 4 891208667 +880 802 3 880167918 +533 934 3 879366118 +519 350 5 883250102 +276 501 4 874793035 +699 191 3 878883173 +705 99 3 883427691 +648 1028 2 882212288 +717 280 4 884642738 +711 496 5 879993073 +429 473 3 882387551 +504 517 4 887832782 +618 962 1 891307784 +655 899 2 887433492 +867 295 4 880078069 +753 180 2 891401712 +64 132 4 889737851 +804 511 4 879442792 +715 697 2 875963566 +882 15 5 879862141 +629 132 5 880117395 +727 5 3 883711680 +263 260 2 891297677 +894 845 3 881443365 +823 692 4 878439438 +831 258 2 891354020 +846 578 3 883949200 +287 235 4 875334248 +826 802 4 885690854 +897 214 5 879990923 +493 24 4 884130593 +730 410 1 880310440 +787 750 5 888979075 +44 194 5 878347504 +805 725 3 881705672 +712 729 5 874730491 +405 168 1 885547124 +385 427 4 879441386 +406 672 2 879792897 +506 518 4 874873198 +279 100 4 875249259 +852 515 5 891036414 +577 627 5 880475339 +664 56 4 876525962 +453 4 4 877554490 +843 450 2 879444083 +75 508 4 884050102 +188 194 3 875073329 +429 72 2 882387551 +248 121 2 884536206 +830 313 5 891462165 +62 704 2 879375477 +592 346 4 885280098 +821 106 2 874793196 +891 50 4 891638682 +619 566 4 885954105 +298 199 4 884127690 +788 1277 3 880870583 +391 215 4 877399100 +878 530 5 880872619 +416 614 5 893212572 +664 702 4 876526052 +881 151 2 876536241 +595 222 3 886921274 +881 118 4 876536332 +764 13 2 876242755 +625 1020 3 892000629 +896 686 3 887159146 +145 106 4 875270655 +623 216 4 891034756 +568 479 5 877906995 +899 694 5 884121009 +262 650 4 879792604 +189 433 5 893266326 +738 161 4 875350720 +746 202 5 885075518 +470 1084 3 879178406 +717 307 5 884642133 +903 1132 3 891031949 +533 182 3 879191265 +604 218 3 883668175 +637 1244 1 882904458 +13 690 3 881514811 +848 640 1 887037935 +721 181 5 877138951 +580 348 3 884124382 +670 611 5 877975129 +782 298 4 891499278 +826 228 3 885690600 +758 20 4 881976574 +595 864 4 886922069 +586 54 3 884068393 +493 154 4 884131952 +655 251 3 888984417 +880 1267 4 880242356 +145 222 5 885557660 +846 232 3 883949290 +835 197 5 891033889 +899 209 5 884121173 +804 24 5 879443776 +822 926 2 891040155 +886 208 3 876031764 +212 317 5 879303638 +894 752 3 888280083 +394 771 4 881060366 +277 221 4 879544146 +784 898 4 891387895 +543 423 3 874863035 +621 367 3 874962900 +854 147 3 882812492 +889 81 4 880180849 +808 245 4 883949822 +699 127 3 878881828 +174 1091 3 886515591 +552 280 3 879222002 +565 515 5 891037803 +868 101 4 877109996 +693 79 4 875483330 +806 133 5 882389908 +880 118 3 880167551 +597 118 3 875343067 +606 678 3 877642127 +606 206 4 880927552 +774 826 2 888558623 +230 161 5 880485468 +588 117 4 890027062 +697 833 3 882622228 +776 635 4 892920403 +389 77 2 880088922 +851 132 4 875731370 +896 849 2 887161563 +894 255 3 879896836 +539 275 4 879787917 +805 99 2 881695560 +13 558 1 882397011 +896 744 3 887160040 +110 54 4 886988202 +498 10 5 881960711 +880 1518 2 880242422 +648 1029 2 884882636 +177 1110 3 880131123 +796 222 5 892660364 +804 181 5 879440947 +761 471 3 876190336 +442 410 4 883388508 +805 259 1 879971049 +561 238 4 885807547 +472 1014 4 875978191 +880 4 4 880167843 +886 357 4 876031601 +492 527 5 879969879 +452 815 2 875277472 +882 1015 3 879863457 +402 510 5 876267235 +507 50 5 889965997 +821 763 3 874792491 +379 381 5 885063301 +904 9 4 879735316 +886 3 3 876032330 +303 1182 2 879543459 +397 268 4 889760703 +533 143 4 879438850 +18 59 4 880132501 +833 665 3 875224309 +264 675 4 886122352 +819 303 4 879952508 +795 217 1 883774317 +889 1074 3 880181515 +545 566 4 879899438 +235 82 2 889655403 +456 1198 4 881371595 +378 239 3 880055148 +887 111 5 881378370 +889 576 3 880182541 +520 310 4 885168862 +537 539 1 886029212 +758 109 3 881975687 +587 877 2 892871372 +786 732 4 882843353 +291 249 4 874805893 +546 313 2 885139580 +617 345 1 883788511 +619 808 3 885954053 +401 471 4 891032495 +533 126 4 879192414 +357 456 3 878952265 +815 501 3 878694028 +587 330 3 892871372 +760 172 3 875667294 +823 1135 3 878437836 +883 30 4 891693058 +334 753 4 891545741 +886 7 5 876031330 +514 216 5 875309350 +177 678 3 882142086 +707 194 4 886286246 +774 926 1 888558946 +454 317 4 888267343 +732 305 2 882590201 +837 20 4 875721919 +43 546 4 875975613 +706 471 4 880997172 +758 186 5 881974931 +390 258 5 879693461 +883 194 3 891694218 +112 310 4 884992444 +659 792 4 891384003 +667 216 4 891034894 +500 407 3 883877252 +622 111 4 882591014 +868 403 2 877111837 +907 1057 3 880159151 +846 229 3 883949771 +766 729 3 891310394 +463 1606 2 889936565 +864 124 5 877214158 +487 546 3 883444674 +655 1268 3 892914357 +796 403 4 893048410 +303 866 2 879485277 +731 1503 5 886184578 +577 735 5 880474338 +543 13 3 876896210 +711 829 2 879992018 +568 641 5 877907596 +704 603 5 891397262 +839 950 4 875752408 +840 638 3 891204239 +871 337 3 888192475 +880 578 3 880168411 +870 238 4 875050865 +666 26 3 880568505 +682 393 4 888521711 +653 638 1 878866636 +791 322 4 879448128 +905 333 3 884982806 +774 200 2 888557715 +868 1028 3 877103195 +780 496 4 891364027 +553 611 5 879948386 +764 289 5 876244991 +456 461 4 881373168 +588 1240 5 890025864 +433 276 5 880585843 +697 50 5 882621913 +380 238 3 885479057 +339 222 4 891033512 +487 259 2 883441083 +846 1540 3 883949121 +795 3 2 880561783 +6 170 4 883602574 +6 223 4 883600747 +874 321 3 888632275 +63 259 3 875747047 +907 763 5 880159081 +757 155 2 888469095 +757 101 4 888467309 +833 1071 3 875134150 +904 289 5 879735177 +524 1041 2 884636746 +499 663 5 885599718 +826 101 5 885690442 +454 66 4 888266685 +711 52 5 879993534 +812 748 5 877625368 +406 132 5 879445430 +567 297 3 882426246 +655 1267 2 887427840 +763 73 3 878919180 +435 820 1 884132367 +345 781 3 884993636 +474 434 4 887928562 +798 1283 4 875295695 +896 458 1 887235027 +749 24 2 878849508 +659 490 4 891384215 +570 289 1 881262497 +276 575 2 874792310 +530 196 5 883784601 +862 276 5 879303079 +896 48 4 887158635 +233 435 5 877665324 +197 947 2 891410083 +757 658 2 888467765 +543 174 4 874864666 +801 326 4 890332885 +561 1478 3 885809626 +887 279 5 881378478 +659 88 2 891385955 +897 478 3 879991105 +715 405 3 875962374 +234 204 2 892079617 +727 196 4 883710514 +650 662 3 891371153 +854 535 3 882813364 +881 88 3 876538595 +826 432 3 885690379 +567 109 2 882425673 +792 129 4 877909753 +387 181 4 886479610 +505 1063 3 889334334 +553 275 5 879948552 +854 333 3 882811742 +774 227 5 888557383 +479 66 3 879462103 +317 678 2 891446887 +887 200 1 881380883 +303 21 2 879484004 +234 243 1 891034107 +226 513 3 883889256 +864 1135 3 888890594 +642 560 4 886568978 +850 172 5 883195301 +726 1059 5 889832806 +689 295 1 876676334 +682 135 4 888517484 +846 723 2 883948949 +826 53 5 885690900 +798 862 3 875914534 +830 181 5 891561673 +758 1007 5 880672727 +592 172 5 882956011 +881 642 4 876538027 +761 476 2 876190468 +894 1016 3 879896920 +846 748 3 883946477 +833 403 1 875133458 +751 1101 1 889298379 +322 505 4 887314119 +868 651 5 877103249 +263 199 5 891298914 +537 149 3 886030078 +280 550 2 891701764 +795 153 3 880569085 +387 477 1 886480733 +437 145 1 880143663 +491 319 1 891184567 +611 301 4 891636152 +468 297 4 875280462 +729 288 2 893286261 +871 781 4 888193541 +409 505 5 881107943 +501 411 4 883348564 +188 174 5 875072741 +815 713 4 878692016 +378 89 4 880046363 +627 68 4 879531429 +244 234 3 880606593 +870 52 2 880584400 +406 606 3 879445642 +659 97 5 891384798 +608 603 5 880403537 +666 480 4 880568063 +798 79 4 875638627 +774 161 2 888557409 +459 873 4 879561731 +201 1056 2 884113592 +580 1 3 884125243 +892 73 3 886610523 +553 480 5 879948552 +864 349 4 887686388 +794 1 4 891035864 +468 153 5 875287720 +840 513 5 891204295 +551 570 4 892785264 +715 79 5 875964579 +896 684 4 887158959 +881 282 4 876536773 +506 186 4 874875062 +535 223 5 879618207 +907 619 2 880159038 +630 237 5 885666823 +758 864 4 882053726 +543 515 4 876896210 +655 644 3 887474288 +896 713 2 887159630 +804 143 3 879442490 +795 581 4 883253316 +823 286 5 878437499 +757 570 3 888466683 +759 1 5 875227798 +293 429 4 888906045 +706 742 2 880997324 +181 410 1 878962955 +596 149 3 883539402 +639 549 2 891239427 +561 780 1 885810769 +737 173 4 884314970 +238 1258 1 883576666 +836 659 5 885754096 +108 7 5 879879812 +174 132 2 886439516 +890 172 5 882402905 +468 318 5 875293386 +738 88 3 875351712 +405 755 2 885548877 +255 7 2 883216358 +796 474 2 892663009 +875 171 5 876465370 +648 219 4 884883578 +792 696 3 877910241 +902 258 3 879463109 +821 435 4 874793773 +672 280 2 879787729 +643 42 4 891446750 +735 286 5 876697561 +629 300 4 880115923 +848 1101 5 887046533 +281 271 5 881200457 +500 735 4 883873941 +896 318 4 887158294 +661 219 2 876035968 +699 98 4 878883038 +506 8 5 874873374 +82 125 3 877452380 +855 60 3 879825528 +896 384 2 887160860 +833 552 3 875223976 +559 180 4 891035111 +312 648 5 891699068 +268 186 3 875310311 +588 1074 5 890032056 +344 22 3 884901180 +763 56 5 878919116 +830 202 5 891464148 +648 780 1 884882501 +851 932 3 875730455 +634 322 3 875729217 +645 772 3 892055728 +222 255 3 883815804 +567 679 4 882426055 +533 132 5 879191220 +804 615 5 879442298 +639 528 4 891239239 +738 474 4 875349775 +427 286 4 879700792 +373 197 3 877099352 +537 380 2 886032154 +796 38 5 893048505 +741 403 5 891456083 +859 762 5 885775437 +851 258 4 883148669 +533 88 4 879191902 +628 338 5 880776981 +894 638 3 882404669 +201 733 3 884140522 +417 171 3 879647800 +532 79 5 889235367 +821 318 5 874793368 +637 225 3 882904829 +897 127 5 879990647 +661 538 3 886830056 +294 281 3 889242035 +625 514 3 891262724 +293 235 3 888905146 +880 243 2 892958608 +4 324 5 892002353 +766 662 3 891310281 +595 336 2 886920966 +334 275 4 891544707 +497 590 2 879362461 +750 879 4 879445961 +891 591 4 891639497 +293 100 4 888904734 +841 323 3 889066880 +486 678 1 879874297 +815 393 4 878696473 +414 340 4 884999066 +682 246 5 888518659 +621 395 4 880739654 +617 269 1 883788511 +514 191 5 875318224 +898 288 4 888294529 +187 186 4 879465308 +877 640 2 882677311 +903 100 5 891031203 +901 1049 3 877127021 +503 226 5 879454841 +584 25 3 885778571 +734 318 5 891022648 +788 1273 3 880871771 +388 871 2 886440608 +655 301 2 887424991 +872 932 4 888479498 +692 1012 1 876953553 +765 971 4 880346911 +18 52 5 880130680 +846 540 2 883950711 +895 597 2 879438101 +18 716 5 880131676 +758 185 4 881975182 +507 597 5 889966089 +109 11 4 880572786 +663 183 4 889493770 +397 748 2 889760845 +690 121 3 881179906 +751 538 4 887134672 +271 539 1 885847170 +402 116 3 876267067 +566 736 4 881650690 +270 603 5 876955868 +456 1081 4 881372191 +553 1126 4 879948508 +896 325 1 887157732 +635 237 3 878879257 +603 176 2 891956776 +601 8 3 876348736 +618 65 3 891309720 +85 64 5 879454046 +655 79 5 887429559 +782 338 2 891498676 +705 225 4 883427594 +473 1007 4 878157329 +515 347 3 887658604 +868 176 4 877103248 +524 228 3 884636152 +907 100 5 880158712 +906 100 4 879434846 +682 26 3 888517986 +540 20 4 882157509 +276 531 4 874790801 +645 65 4 892054824 +868 202 3 877104264 +741 281 2 891455792 +497 790 2 879362720 +826 174 5 885690481 +221 578 4 875247023 +601 230 4 876350583 +524 1101 4 884635053 +655 1100 3 887427371 +835 281 4 891032718 +417 732 4 879647825 +222 654 3 878184087 +11 748 1 891902270 +862 11 4 879305172 +889 1134 4 880177219 +500 245 2 883864862 +454 468 3 888267087 +588 1180 2 890032056 +669 133 4 891260779 +442 150 4 883388283 +880 182 5 880167670 +789 294 3 880332275 +896 789 2 887157978 +621 240 4 880738893 +871 275 3 888193384 +899 216 5 884121885 +807 374 3 893083109 +75 988 2 884049820 +697 455 4 882622170 +429 672 2 882387551 +312 143 4 891698893 +769 1028 3 885424186 +453 354 4 888201923 +890 443 4 882404541 +655 171 2 887523641 +642 473 1 886131585 +165 127 4 879525706 +853 323 3 879364883 +374 762 5 880393460 +716 520 4 879794935 +758 452 3 882054468 +314 710 3 877888796 +416 938 3 892439155 +430 148 2 877226047 +707 962 2 886285792 +44 756 3 878346904 +292 150 4 881105135 +49 455 1 888068791 +328 1021 3 885045740 +87 804 3 879877083 +559 195 3 891034647 +21 628 3 874951616 +370 525 4 879434666 +778 180 4 890725725 +193 286 4 889122906 +411 1 4 892845604 +752 327 5 891208451 +655 356 3 887430804 +726 310 4 889828404 +262 369 2 879791160 +864 98 5 888886946 +870 17 4 880584752 +246 227 4 884922475 +493 174 3 884131211 +752 1294 3 891207898 +568 512 1 877907596 +661 172 5 876036358 +747 482 5 888639526 +94 568 3 891721974 +416 1077 1 886317030 +790 17 2 885157399 +845 269 4 885409493 +906 121 4 879435598 +863 1038 1 889289327 +793 250 4 875104031 +882 815 2 879861678 +788 471 3 880869862 +98 988 1 880498668 +144 174 5 888105612 +805 93 5 881704016 +601 455 4 876347148 +409 100 5 881107992 +561 479 4 885807547 +435 655 2 884131799 +458 238 4 886397679 +879 151 3 887761425 +804 558 3 879441627 +872 1 3 888479151 +551 596 5 892784049 +774 431 4 888557329 +778 56 3 891232041 +397 991 1 875063678 +181 108 1 878963343 +782 1588 3 891500067 +104 268 3 888442172 +537 607 4 886030682 +889 382 2 880178248 +178 51 4 882828021 +753 23 2 891401665 +868 474 4 877105882 +634 116 3 875729069 +903 318 5 891032793 +643 679 3 891447747 +200 230 5 884128400 +704 344 4 891397015 +621 161 3 874964447 +640 313 5 888639815 +758 959 3 881978864 +639 381 2 891239581 +407 844 2 884196984 +181 1011 1 878963204 +814 219 4 885411030 +892 127 5 886607878 +437 559 3 880143695 +449 251 3 879958603 +642 679 2 885606986 +7 70 1 891352557 +805 180 3 881698139 +327 180 4 887745774 +586 1249 3 884067058 +263 28 3 891298219 +659 174 4 891384215 +393 333 4 889554171 +165 187 3 879526046 +807 140 3 892530004 +232 589 3 888549790 +896 159 2 887160880 +840 747 4 891209490 +755 881 1 882569732 +802 7 5 875986303 +711 393 4 879994778 +894 288 3 879896141 +251 845 4 886272378 +396 117 4 884646191 +611 324 3 891636399 +113 292 3 875076105 +653 56 5 878853975 +275 181 4 876197615 +548 525 5 891044446 +486 742 2 879874693 +843 831 4 879444977 +479 204 4 879461583 +870 51 2 879714500 +319 301 4 875707721 +748 56 4 879455083 +660 83 3 891199556 +897 227 3 879992190 +526 333 3 885681935 +885 866 3 885713102 +346 188 4 874948252 +733 302 4 879535011 +807 101 4 893080637 +862 184 2 879305097 +887 1136 5 881381071 +642 732 4 885605538 +758 567 4 881978016 +729 748 4 893286638 +840 884 5 891203087 +711 423 3 879993534 +798 825 3 875638178 +904 97 4 879735678 +684 178 4 878760250 +864 294 4 878179381 +521 12 5 884477853 +824 304 3 877020964 +524 1421 5 884637147 +372 164 4 876869446 +882 471 4 879861562 +836 288 1 885753475 +497 432 3 879309993 +751 945 3 889133852 +889 494 3 880181275 +665 472 3 884291242 +537 958 2 886030652 +803 311 5 880054754 +653 4 3 878866755 +661 749 2 889500304 +239 209 5 889179032 +835 179 5 891033819 +870 559 2 879714532 +781 180 4 879633895 +875 133 4 876464967 +668 252 2 881702925 +671 79 2 883546120 +774 233 2 888557383 +407 186 4 876348198 +887 473 4 881378896 +863 258 5 889289122 +608 86 5 880403484 +847 258 5 878774722 +875 268 4 876464755 +757 121 2 888444635 +456 1134 4 881372281 +840 210 3 891204592 +178 781 4 882827716 +854 591 2 882812451 +535 520 4 879618058 +835 237 4 891035310 +498 772 1 881957999 +648 104 1 884367274 +881 98 5 876537612 +742 50 4 881335248 +499 886 4 885598215 +646 332 3 888528870 +881 97 3 876537613 +804 624 2 879445536 +537 963 3 886030805 +60 484 5 883326370 +571 357 4 883355063 +537 640 3 886031211 +632 11 4 879458142 +634 595 4 877017923 +508 210 4 883777125 +336 781 3 877757373 +326 195 4 879875752 +896 186 4 887159069 +456 1240 3 881374332 +690 546 4 881178383 +774 98 4 888557682 +539 603 4 879787985 +469 507 5 879523803 +512 286 5 888578937 +303 432 3 879468274 +831 331 4 891353979 +849 298 5 879695086 +889 56 5 880177857 +654 137 4 887863596 +308 472 2 887739336 +849 588 5 879695680 +833 647 4 875123427 +758 1019 4 881975736 +716 99 5 879796214 +674 222 3 887762839 +880 252 2 880167551 +350 98 4 882347832 +815 188 3 878693906 +883 1045 5 891717462 +452 1013 1 876215773 +900 458 2 877833326 +805 95 3 881695527 +650 603 4 891369836 +694 88 4 875727018 +455 291 3 879109984 +577 405 3 880470282 +450 435 4 882374332 +200 9 4 884126833 +468 427 5 875291722 +666 482 4 880567997 +487 179 3 883528237 +559 587 4 891034095 +898 319 5 888294676 +188 510 3 875071775 +201 1174 5 884140670 +608 262 3 880402368 +334 689 3 891544340 +561 1170 3 885809407 +151 371 4 879542891 +31 306 3 881547814 +416 323 3 876696739 +820 301 2 887955046 +230 431 3 880485254 +406 582 4 879793295 +453 402 3 888207161 +527 1101 4 879456691 +81 928 4 876534214 +334 186 3 891547128 +250 55 5 878091915 +885 432 4 885714820 +882 8 5 879864789 +279 1244 3 875298652 +459 1038 4 879561654 +406 485 3 879445735 +327 174 4 887744513 +899 685 3 884119954 +387 583 4 886483098 +749 576 3 878850533 +756 111 4 874829670 +796 684 5 892676195 +727 411 3 883709905 +766 217 4 891310650 +618 164 3 891309041 +823 423 5 878438780 +701 689 3 891446822 +299 97 4 878192680 +521 89 3 885253266 +537 1445 3 886031576 +864 951 3 888891288 +535 198 4 879618850 +607 707 4 883880027 +262 86 3 879791948 +660 151 5 891198335 +826 588 4 885690342 +268 550 2 875310524 +268 940 2 875743888 +387 435 3 886480483 +900 137 3 877832803 +538 96 4 877109669 +758 421 4 881975814 +711 747 4 879993871 +259 39 4 888720644 +798 321 3 875286981 +592 1067 5 882608698 +840 153 3 891204627 +484 419 4 891195825 +703 25 3 875242683 +472 175 5 875979910 +332 827 4 887938503 +886 1324 2 876032308 +363 393 4 891497925 +379 428 4 880568452 +585 52 3 891284184 +782 260 2 891498079 +868 615 4 877109375 +773 393 2 888539711 +760 204 4 875668105 +659 185 4 891332223 +13 274 3 882399384 +823 159 3 878438484 +379 529 4 891674436 +557 197 5 881179653 +395 100 4 883765155 +664 531 2 876523833 +399 223 3 882343012 +849 27 5 879695469 +524 818 3 884628308 +892 604 5 886608296 +381 1115 4 892697600 +908 56 4 879722642 +831 328 3 891354000 +735 298 4 876698897 +534 748 4 877807429 +889 211 4 880180765 +361 186 3 879440516 +780 657 3 891363723 +345 137 4 884991077 +588 550 3 890026513 +311 726 3 884366035 +684 282 4 875811274 +774 79 2 888557236 +82 112 1 877452357 +828 52 3 891037639 +395 186 5 883764817 +886 17 4 876032596 +868 179 4 877107056 +826 403 4 885690750 +309 286 4 877370383 +811 323 5 886377579 +796 1037 2 893047967 +900 130 1 877833512 +442 436 3 883390048 +378 928 2 880044488 +653 200 4 878866952 +159 866 5 880557539 +758 414 4 881977487 +903 994 3 891031883 +437 253 1 880141796 +884 179 5 876859109 +702 538 4 885767461 +744 657 5 881170575 +454 136 3 881959745 +673 301 3 888787450 +95 419 4 879198547 +717 890 1 884642001 +645 616 3 892054508 +821 234 5 874793574 +613 1315 4 891227338 +644 181 4 889077189 +456 208 4 881374710 +577 663 5 880474612 +881 924 3 876536850 +774 795 1 888555864 +694 673 4 875726926 +655 1041 3 887611537 +464 264 4 878354886 +829 14 2 881712488 +256 322 4 882150152 +796 720 4 893048562 +354 168 5 891218507 +747 287 4 888733182 +682 631 3 888517922 +472 79 5 892790953 +334 529 5 891547445 +417 228 3 879646915 +569 294 2 879793149 +862 479 4 879305351 +850 969 5 883194908 +804 133 3 879445904 +826 56 5 885690525 +610 318 5 888703378 +840 213 4 891205199 +405 1076 2 885549044 +377 258 4 891296356 +663 655 4 889493869 +867 195 5 880078452 +13 511 5 882139863 +180 191 4 877372188 +804 559 3 879445334 +845 1463 1 885409374 +733 282 3 879535814 +558 283 3 879436097 +495 179 5 888632470 +719 79 4 877310859 +800 257 4 887646980 +686 527 3 879547177 +554 289 4 876549656 +727 1303 2 883713737 +429 8 3 882386237 +805 934 1 881705611 +538 318 5 877106768 +624 245 3 879792109 +621 455 4 880738462 +655 709 3 888475039 +876 178 4 879428378 +334 815 3 891545540 +39 339 3 891400609 +181 1171 1 878962773 +493 118 4 884132898 +626 323 1 878771505 +889 568 3 880179785 +311 942 5 884366112 +880 280 2 880243204 +233 168 5 877663302 +379 419 4 880525794 +783 887 5 884326620 +788 519 4 880868235 +916 467 3 880844420 +798 239 4 875814157 +782 539 3 891498865 +823 184 3 878439629 +804 419 3 879444624 +911 357 4 892838954 +663 180 4 889493691 +421 218 4 892241687 +838 111 4 887064357 +813 358 3 883752606 +486 1609 3 879875220 +332 255 4 887938330 +659 1297 2 891387306 +450 748 4 882370410 +617 174 1 883788820 +847 168 4 878939912 +650 427 4 891383424 +642 156 1 886454965 +711 114 5 879992870 +62 171 4 879373659 +634 475 5 877018125 +771 403 4 880659769 +896 82 3 887159068 +821 1 5 874792813 +912 238 4 875966320 +881 81 3 876538666 +505 495 3 889333823 +56 114 4 892683248 +456 433 4 881373120 +883 20 4 891693723 +460 117 3 882912342 +912 1041 4 875966616 +776 196 3 891628773 +870 1041 2 879270213 +566 387 4 881651512 +831 347 3 891354191 +806 433 4 882389523 +18 419 3 880131878 +506 271 4 880198184 +504 717 4 887911730 +887 210 5 881379649 +371 185 3 880435519 +705 215 2 883518871 +782 993 3 891499370 +539 269 5 879787770 +301 128 5 882078228 +716 546 1 879794094 +711 77 3 879994749 +357 150 4 878951615 +847 410 1 878938855 +885 596 4 885714990 +747 631 5 888638957 +908 414 3 879723022 +896 144 4 887158333 +300 687 2 875650042 +880 347 5 892958301 +390 9 5 879694232 +624 1 4 879792581 +479 8 5 879461415 +63 3 2 875748068 +407 216 4 875552401 +629 55 4 880117094 +800 1047 3 887646804 +875 582 5 876465408 +847 176 3 878941398 +312 419 3 891699182 +825 717 4 889021088 +863 294 4 889289327 +294 276 4 877819421 +699 21 3 884152916 +804 323 4 879440765 +890 324 4 882404093 +18 714 4 880130334 +749 160 3 878847461 +894 221 4 885428233 +868 122 3 877113586 +468 529 3 875287686 +398 1041 3 875733660 +412 357 4 879717548 +870 92 4 875679861 +605 405 3 879429706 +102 1052 2 892993983 +894 1142 4 882404137 +862 175 5 879305172 +880 1002 3 880175527 +798 1544 3 875638925 +548 628 2 891415890 +840 203 5 891204627 +825 14 3 880755942 +532 633 5 888635197 +636 813 5 891448297 +456 1020 4 881373506 +532 480 5 893119491 +655 8 3 887477336 +434 476 4 886725076 +434 288 5 886724797 +543 237 4 876896210 +759 121 5 881476858 +828 1597 3 891037813 +320 238 4 884751672 +882 117 4 879861492 +345 1009 2 884991546 +90 171 2 891384476 +839 285 5 875752138 +896 385 4 887160426 +707 517 3 886287079 +821 70 4 874793933 +389 820 3 880089211 +758 569 3 881978460 +664 156 4 876526784 +894 328 4 879896466 +788 38 3 880871359 +908 156 3 879722603 +663 919 3 889492562 +863 1607 2 889288973 +472 375 5 875982680 +682 471 3 888517537 +806 195 3 882388328 +502 288 5 883701866 +789 181 4 880332437 +323 268 4 878738865 +630 496 3 885667854 +472 760 5 892790953 +650 423 3 891372316 +903 182 5 891380461 +487 628 4 883444558 +808 302 5 883949986 +582 235 3 882962803 +280 670 2 891702485 +551 357 5 892777274 +201 48 3 884111485 +815 418 4 878695744 +392 340 5 891037437 +914 724 3 887123464 +466 82 3 890284819 +168 118 4 884288009 +833 183 5 875123026 +723 289 2 880498816 +325 195 2 891478276 +548 310 3 891042474 +741 15 4 891456573 +303 1046 3 879468375 +839 319 1 875751411 +882 86 5 879867568 +152 724 5 884035936 +823 55 4 878438484 +887 1540 5 881380739 +788 222 3 880869945 +514 176 4 875463128 +608 131 4 880406032 +409 357 5 881107410 +334 150 4 891628832 +453 508 4 877552612 +334 846 3 891545318 +741 566 4 891455671 +608 483 4 880404916 +630 640 1 885668276 +393 879 3 887742798 +452 70 5 888492838 +276 508 5 874786467 +72 526 4 880037164 +894 249 3 879896872 +684 100 4 875810574 +844 625 3 877388040 +738 238 4 875349895 +842 269 5 891217834 +345 5 3 884992922 +650 294 3 891369190 +648 89 4 884797033 +881 291 3 876537177 +862 111 5 879302844 +883 16 4 891692713 +177 183 4 880130972 +825 926 4 880756643 +23 195 4 874786993 +795 150 3 883766579 +503 234 5 879454675 +506 233 4 874874109 +823 155 3 878439211 +279 1088 4 877756804 +269 521 4 891448048 +875 474 5 876465188 +769 405 2 885424214 +606 806 5 880923579 +606 234 4 880927179 +416 90 4 876699102 +334 220 3 891545513 +757 62 3 888466758 +751 746 4 889133219 +795 182 4 881530041 +721 938 3 877137359 +725 15 4 876106206 +752 305 4 891207940 +851 123 4 875730379 +885 186 4 885713434 +234 622 2 892335415 +451 1395 1 879012858 +192 1171 2 881368358 +757 122 1 888445218 +295 470 3 879518257 +642 739 5 886568838 +565 1622 4 891037478 +718 118 4 883348912 +852 181 4 891036414 +405 746 1 885547176 +548 742 5 891044596 +693 729 4 875482912 +424 508 3 880859519 +870 789 4 879705466 +560 483 5 879975406 +846 1267 3 883949728 +454 627 2 888267643 +847 39 2 878940531 +897 186 5 879994113 +11 318 5 891904194 +878 275 4 880865469 +561 676 3 885810674 +871 302 5 888192970 +650 186 4 891370998 +666 210 2 880139493 +647 70 3 876776321 +914 111 1 887124121 +638 435 3 876694787 +277 278 1 879543879 +693 222 2 875482524 +59 265 4 888205410 +722 756 3 891281369 +592 1070 5 882956158 +911 588 4 892840837 +11 449 3 891906327 +388 1 5 886436813 +885 70 5 885713585 +864 1119 3 888890548 +648 566 4 884882702 +839 292 3 875751559 +99 1048 4 885679411 +551 281 5 892784320 +504 127 5 887831510 +671 68 3 884035892 +847 234 2 878939645 +184 506 4 889909569 +174 280 5 886433862 +846 22 4 883948222 +621 94 2 874963081 +718 717 4 883349214 +682 890 2 888518564 +46 300 3 883611307 +916 1428 3 880845415 +169 443 4 891359418 +256 229 3 882164644 +548 226 5 891044596 +705 399 5 883427778 +152 596 2 880148941 +148 191 1 877020715 +454 465 3 888267343 +802 760 3 875986303 +716 514 5 879796331 +788 518 3 880869754 +804 378 4 879445605 +869 118 1 884492338 +887 181 5 881378040 +705 195 2 883428083 +493 234 5 884132037 +890 843 3 882916650 +798 259 5 875295566 +876 238 4 879428406 +795 727 3 881530317 +864 176 5 888887289 +846 64 4 883948221 +659 1138 4 891045266 +577 298 4 884819086 +586 930 2 884063080 +525 291 2 881086644 +896 133 2 887159502 +137 118 5 881433179 +478 591 3 889387958 +561 733 3 885809099 +877 955 4 882677936 +877 216 4 882677827 +715 157 4 875963024 +181 598 1 878962623 +659 1172 4 891332122 +757 385 3 888468596 +297 465 3 875238984 +658 212 3 875148059 +897 393 4 879991493 +499 425 3 885599474 +846 482 5 883948173 +194 367 3 879525624 +514 152 4 875318163 +561 1070 4 885809043 +756 210 4 874828902 +441 313 4 891035056 +398 414 3 875721111 +175 88 4 877108146 +468 952 3 875280310 +90 242 4 891382267 +440 749 3 891547746 +587 294 3 892871197 +20 633 4 879668979 +677 687 4 889399113 +782 292 4 891498213 +698 176 4 886366814 +880 831 4 880167411 +847 448 4 878940013 +692 326 3 876948579 +826 946 3 885690342 +385 61 2 879441572 +780 275 4 891363685 +716 480 5 879795025 +365 352 1 891303728 +392 191 5 891039015 +788 133 5 880868473 +378 382 4 880055520 +870 1134 4 879376967 +749 802 3 878850789 +618 924 4 891309040 +498 204 2 881957267 +774 418 2 888558019 +764 99 4 876246687 +537 964 3 886031407 +758 203 5 881978016 +728 742 4 879443321 +889 217 4 880182582 +13 152 5 882141393 +489 349 4 891449155 +757 68 4 888466435 +617 440 4 883789635 +497 364 3 879363233 +808 325 1 883949873 +905 258 3 884982806 +870 504 5 880584497 +479 201 4 879461142 +328 64 4 885046276 +643 33 3 891449417 +906 321 4 879434436 +647 568 4 876533832 +643 516 4 891447037 +733 1023 1 879544411 +622 121 1 882590955 +606 88 4 880926533 +870 272 4 890920916 +457 628 4 882393688 +416 803 3 886319177 +833 186 1 875133458 +452 492 4 875263413 +593 546 3 875659849 +782 324 2 891498381 +26 298 3 891371505 +551 168 5 892777723 +198 291 2 884205219 +878 736 5 880868035 +627 123 3 879530305 +457 566 4 882548583 +892 76 4 886609977 +292 603 5 881105318 +796 1041 5 893047287 +738 181 4 875348856 +393 538 3 887742071 +884 1214 1 876860434 +694 965 4 875727672 +377 895 3 891296307 +804 1047 3 879443852 +101 819 1 877136424 +32 7 4 883717766 +682 380 4 888517510 +805 735 4 881698139 +172 23 3 875537717 +423 127 4 891395394 +659 469 4 891385136 +560 211 4 879975752 +13 662 5 882399420 +773 1367 5 888538643 +896 398 2 887161469 +520 294 3 885170330 +864 7 5 878179608 +840 238 5 891204239 +844 151 4 877381674 +862 199 5 879304761 +234 466 4 892334368 +889 479 4 880177994 +560 617 3 879975661 +892 71 3 886608348 +682 552 3 888520977 +896 222 4 887159109 +593 763 3 875660105 +458 25 1 886394576 +493 257 5 884130495 +798 391 3 875915855 +834 343 4 890860416 +729 901 1 893286491 +742 237 4 881335960 +324 250 4 880575531 +474 491 4 887925187 +663 289 1 889491861 +896 273 5 887157947 +437 583 1 880143040 +232 900 5 888364663 +528 31 5 886101761 +449 288 3 879959082 +803 245 4 880055378 +452 576 2 875563050 +537 100 4 886029692 +373 177 3 877100161 +639 135 4 891239239 +750 305 4 879445877 +234 164 3 892334644 +345 262 5 884901701 +653 89 5 878854100 +828 306 3 891033342 +892 578 4 886609469 +618 136 3 891307931 +339 823 3 891035850 +416 451 5 893212623 +429 972 4 882387757 +101 225 3 877136814 +38 288 5 892428188 +871 947 2 888193177 +144 12 4 888105419 +546 898 4 885141260 +705 148 5 883427134 +222 541 2 878184973 +705 29 5 883428237 +445 460 2 891200624 +480 12 5 891208433 +423 879 3 891394558 +642 1179 3 885606048 +823 180 4 878439008 +533 474 3 879190771 +892 708 4 886607879 +774 947 2 888557276 +795 238 3 881266197 +828 1005 3 891037813 +363 73 2 891497234 +787 271 1 888979721 +733 149 4 879535440 +864 720 3 888891238 +198 31 3 884207897 +746 89 4 885075243 +807 231 4 892530705 +504 451 1 887912584 +586 779 3 884062856 +664 151 4 878091912 +883 529 5 891693012 +846 731 3 883949594 +751 756 2 889299249 +902 318 5 879465522 +804 472 3 879443976 +758 125 2 881977205 +221 150 5 875244557 +556 604 5 882136205 +294 258 3 877818457 +825 491 4 881101782 +54 240 4 880936500 +193 24 2 889125880 +643 185 5 891447157 +850 228 5 883195394 +802 396 2 875985840 +847 479 3 878940405 +831 326 4 891354275 +881 655 4 876539448 +911 168 4 892838676 +736 1278 1 878709262 +561 232 3 885810428 +561 510 3 885808673 +804 406 3 879444133 +825 176 5 881101641 +727 755 2 883712828 +679 721 3 884487611 +395 423 5 883764742 +667 196 5 891034993 +763 16 5 878918332 +719 378 4 879360555 +875 176 4 876465112 +865 122 3 880144539 +907 290 4 880159259 +859 846 5 885775612 +850 15 5 883195256 +38 326 5 892428688 +158 686 5 880134499 +686 430 4 879546786 +860 159 3 889984855 +880 928 2 880167435 +847 367 3 878940189 +143 307 4 888407622 +879 763 5 887761425 +639 52 3 891239838 +28 230 4 881961393 +577 742 4 880470504 +748 89 5 879454831 +786 871 1 882842762 +524 173 4 884637436 +868 151 5 877104879 +682 276 3 888517097 +896 98 5 887158359 +712 969 4 874729850 +314 934 4 877887155 +435 1240 4 884132296 +534 333 5 877807486 +524 98 3 884634615 +527 172 5 879456490 +632 55 2 879457857 +916 271 3 880843185 +916 232 3 880844897 +908 192 2 879722489 +880 8 4 880174677 +798 1183 1 875915190 +399 845 3 882340719 +660 307 3 891197503 +901 287 3 877126935 +893 264 3 874828296 +835 354 3 891032224 +307 222 4 879538922 +660 1483 3 892520856 +744 1 4 881171926 +773 354 2 888538143 +867 210 5 880078547 +540 473 3 882157687 +864 217 4 888891524 +871 883 3 888192475 +727 257 2 883708806 +311 198 3 884364812 +659 62 4 891386380 +660 135 4 891199833 +844 431 4 877387825 +894 273 3 880416220 +840 194 3 891204264 +582 748 3 882960601 +543 944 3 877547863 +457 1119 4 882398308 +702 343 2 885767629 +815 7 4 878691975 +211 1330 3 879460096 +796 280 4 893047208 +423 750 5 891394704 +833 325 4 875035885 +798 405 5 875296148 +125 90 5 892838623 +881 50 3 876535927 +650 15 3 891383594 +828 224 3 891035614 +13 62 5 882397833 +724 336 1 883757784 +194 97 3 879524291 +75 79 5 884051893 +416 690 5 893214127 +576 276 3 887080905 +566 2 5 881650739 +451 681 1 879012773 +141 1028 4 884585168 +871 237 3 888193386 +459 685 3 879563613 +660 41 1 891265453 +717 281 4 884642958 +727 444 2 883712851 +810 304 4 885406558 +798 228 3 875915639 +877 275 4 882677183 +640 761 5 874778613 +702 683 1 885767576 +880 235 3 880166990 +405 568 4 885547910 +25 1 5 885853415 +824 268 4 877020871 +466 50 5 890284819 +899 275 4 884119877 +830 820 1 891899475 +70 451 4 884065678 +85 630 3 879453623 +869 181 3 884490825 +535 529 3 879618655 +727 1244 3 883709859 +768 405 4 883834883 +622 49 3 882671273 +489 303 4 891448109 +198 248 3 884205385 +712 738 4 874956841 +271 692 4 885849582 +181 1329 1 878962240 +615 937 2 879447530 +536 144 4 882359962 +862 413 4 879303952 +793 696 3 875104303 +514 111 5 875463165 +648 25 2 882211760 +808 750 5 883949986 +907 724 5 880159642 +380 190 5 885478668 +681 294 5 885409938 +92 451 3 875660083 +342 289 2 874984067 +796 597 5 892661043 +867 11 3 880078547 +916 100 5 880843288 +13 53 1 882396955 +875 501 4 876465335 +593 133 4 876507391 +840 99 5 891204509 +739 97 5 886959115 +214 482 4 891544114 +298 174 5 884125022 +723 191 3 880499019 +833 451 1 875134016 +654 742 4 887863339 +293 436 3 888906990 +918 488 3 891987846 +757 546 3 888444881 +886 472 3 876033755 +840 509 3 891204564 +663 148 4 889492989 +891 278 4 883489438 +64 87 4 889737851 +806 511 5 882387520 +253 234 4 891628252 +486 280 2 879875249 +698 480 2 886367100 +764 356 4 876430571 +815 436 3 878695241 +840 655 5 891205245 +823 92 5 878438357 +727 510 4 883710717 +563 476 3 880507311 +611 307 4 891636125 +533 489 4 879438961 +833 1597 5 875225193 +648 23 3 882212709 +537 673 3 886031505 +605 471 3 879365748 +269 657 4 891449550 +10 709 4 877888613 +804 1056 4 879442762 +776 192 5 891628836 +774 205 4 888556434 +907 685 5 880158960 +627 2 3 879531352 +312 222 3 891698764 +660 722 1 891265453 +823 216 5 878438584 +617 635 4 883789716 +707 449 2 886288688 +804 948 1 879447476 +537 1006 2 886032245 +429 514 3 882385243 +790 436 4 885156686 +464 322 3 878354680 +864 356 4 888889268 +882 294 4 879860936 +591 285 5 891039565 +892 177 4 886608507 +825 307 4 880755305 +452 526 4 875562645 +569 273 3 879793810 +416 238 4 876699179 +897 928 5 879993621 +435 291 4 884133446 +806 475 4 882385083 +636 275 3 891448229 +830 435 5 891561737 +429 665 2 882387474 +747 30 5 888638913 +222 117 5 877563227 +868 209 4 877103195 +796 181 5 892660177 +318 216 4 884495868 +834 151 4 890862974 +899 231 1 884122844 +342 11 5 874984315 +919 1101 5 875373470 +637 596 2 882903582 +606 187 4 880926861 +535 47 5 879618160 +845 1394 4 885409719 +886 161 5 876033478 +840 297 5 891203334 +846 675 2 883949379 +456 616 3 881373655 +457 469 4 882397208 +416 1221 5 893213103 +622 511 4 882592103 +411 485 4 892845986 +690 1028 4 881177836 +733 619 3 879536488 +919 787 3 875921283 +921 24 3 879380097 +916 366 3 880845658 +738 81 4 875351092 +392 347 4 891037600 +782 1605 2 891500194 +600 771 3 888452564 +453 717 2 888206467 +524 1050 2 884637501 +543 692 4 877547580 +586 550 4 884061459 +397 313 4 889760640 +70 596 3 884148728 +861 275 5 881274612 +846 289 4 883946548 +693 492 3 875484539 +769 284 3 885423927 +884 166 3 876859207 +755 264 2 882570077 +910 182 4 880821696 +447 290 4 878854838 +864 132 5 888887128 +503 736 4 880383174 +6 340 2 883268278 +896 672 2 887161218 +532 1189 5 892521554 +383 496 5 891192888 +886 318 5 876031308 +532 1168 4 888630436 +433 269 5 880585068 +606 294 2 880923349 +200 720 4 884130114 +847 474 4 878941562 +883 752 4 892872163 +908 173 3 879722901 +551 460 3 892784320 +596 895 3 883539049 +326 175 1 879874933 +532 272 5 884594422 +271 188 2 885849087 +758 676 2 881977428 +786 724 4 882844295 +339 121 3 891035454 +903 409 4 891031794 +716 50 5 879793192 +399 769 3 882350813 +197 326 3 891409199 +766 136 3 891310009 +891 280 3 883489646 +76 156 3 882606108 +896 526 4 887159211 +665 411 4 884291242 +567 481 5 882426899 +606 238 4 880927179 +639 923 4 891239702 +337 392 5 875236512 +846 269 5 883946315 +840 170 4 891204713 +296 11 5 884197131 +711 288 1 879991364 +773 547 4 888538643 +853 887 2 879365169 +860 1061 3 879169685 +305 176 4 886323839 +664 715 3 876525718 +913 99 4 881366878 +773 1097 4 888538590 +561 171 5 885807261 +910 1012 4 884229250 +899 154 5 884122420 +500 1166 4 883874139 +670 606 4 877975391 +826 229 4 885690713 +807 404 3 892528427 +72 493 5 880037768 +823 197 5 878437623 +889 498 4 880178748 +749 157 3 878847364 +854 127 4 882813933 +113 874 5 875935338 +734 132 3 891022212 +892 649 5 886608135 +896 356 3 887160427 +840 180 5 891205143 +527 180 5 879456334 +519 1612 5 883250148 +717 125 4 884642339 +749 448 2 878847645 +726 1028 2 889832592 +846 378 4 883948989 +850 663 2 883194768 +846 480 5 883947861 +605 949 5 879427164 +916 1046 2 880845722 +758 1022 5 885698979 +707 303 3 879438988 +542 180 3 886532602 +716 88 4 879796596 +545 627 3 879901504 +655 250 3 887425625 +696 347 1 886403578 +536 489 4 882360451 +603 747 3 891956897 +751 270 4 887134730 +751 89 3 889132966 +832 876 3 888259480 +798 463 3 876175467 +838 187 3 887067019 +6 9 4 883599205 +582 269 4 882960418 +56 161 4 892910890 +514 95 4 875309350 +603 751 4 891956242 +662 1381 5 880571005 +862 24 4 879302990 +634 118 4 875729106 +834 347 4 890860007 +378 458 4 880044697 +194 177 3 879523104 +871 50 5 888193275 +660 430 4 891199747 +106 162 5 881450758 +653 518 2 878866755 +882 476 3 879863735 +790 1446 4 885157230 +195 431 3 877835063 +788 258 4 880867855 +815 969 5 878694306 +90 223 4 891383912 +735 7 3 876698683 +882 692 4 879867631 +554 273 3 876231839 +650 472 3 891381784 +338 180 4 879438505 +332 682 4 889069561 +293 193 3 888905990 +454 202 3 881960201 +903 746 2 891033302 +870 381 3 889409590 +91 69 5 891439057 +875 173 5 876465111 +886 697 1 876033368 +809 286 4 891036809 +712 140 4 874957140 +839 866 2 875752687 +901 78 4 877131738 +817 328 4 874815679 +575 111 1 878148329 +916 470 3 880845476 +871 690 3 888192315 +881 434 2 876538889 +467 1011 2 879532630 +800 597 4 887646555 +562 458 2 879195982 +426 646 3 879444787 +790 559 3 885156773 +512 183 5 888579474 +18 216 4 880129527 +450 727 4 882812635 +705 685 5 883427190 +537 274 2 886030235 +805 25 4 881704193 +587 268 4 892871068 +426 1020 4 879442702 +648 204 5 884368002 +805 396 4 881695396 +692 300 4 876953340 +854 220 4 882813248 +551 159 4 892784743 +883 256 5 891692713 +642 386 5 885605932 +325 737 4 891479846 +766 526 2 891309558 +158 56 5 880134296 +868 167 1 877110191 +767 28 4 891462759 +782 344 3 891497854 +262 66 3 879794338 +787 350 1 888979721 +54 245 4 880929738 +299 384 3 889503774 +682 156 5 888519207 +450 926 4 882470125 +311 76 4 884365140 +16 199 5 877719645 +435 649 3 884133330 +709 217 5 879848168 +846 31 4 883948571 +896 768 2 887160653 +916 160 3 880844511 +553 132 4 879948610 +907 340 2 880158425 +694 660 3 875729270 +537 511 5 886030652 +506 742 5 878044851 +758 496 3 881976031 +782 535 3 891499469 +187 435 4 879465242 +890 153 3 882403345 +901 22 5 877131045 +11 176 3 891905783 +634 9 5 877018125 +299 603 3 877880474 +664 627 1 878090125 +463 304 3 877384881 +560 284 3 879976525 +897 151 5 879993519 +577 237 4 880470323 +854 191 4 882813825 +653 1444 3 880153077 +438 1 4 879868096 +454 222 3 888266785 +532 420 4 888636374 +677 980 2 889399470 +645 212 4 892054857 +655 781 1 887428384 +382 1017 4 875946830 +561 483 4 885807612 +293 161 2 888907081 +627 33 1 879531397 +848 428 5 887047809 +222 99 3 878182059 +764 174 5 876245475 +758 1046 4 881978767 +362 300 5 885019304 +831 749 2 891354225 +907 591 5 880158913 +887 1035 5 881381740 +479 300 2 879459641 +545 328 4 879898301 +201 656 4 884111775 +305 33 3 886325627 +688 304 5 884153606 +798 821 5 875916505 +541 403 3 883865110 +896 123 3 887159748 +916 451 3 880845227 +600 4 4 888451908 +280 380 2 891700226 +94 177 5 885870284 +804 4 4 879442192 +823 186 4 878438672 +826 231 3 885690713 +429 1020 4 882387757 +751 742 3 889132347 +796 809 4 893048471 +857 19 4 883432633 +445 1014 1 891200506 +314 1253 4 877892017 +694 161 4 875727018 +843 142 2 879448604 +747 949 5 888733182 +216 276 4 880232830 +183 144 3 891479783 +699 273 3 878882563 +738 662 4 875350418 +828 190 3 891036826 +834 117 4 890862386 +422 117 2 875129975 +250 151 4 878089677 +749 686 4 878850429 +709 363 3 879848695 +535 507 5 879617856 +618 925 2 891308854 +222 1439 3 878183951 +744 276 4 881171907 +847 202 4 878940255 +739 187 4 886959115 +787 331 3 888979235 +683 311 3 893283049 +807 62 3 892979256 +705 684 3 883428084 +293 217 3 888907955 +561 3 3 885810390 +537 750 3 886028498 +897 419 4 879990430 +823 68 3 878438930 +864 64 5 888887830 +607 275 4 883879756 +426 205 4 879444893 +64 326 3 879365313 +603 180 4 891956946 +616 313 5 891224590 +379 47 5 880740461 +244 845 3 880606634 +763 173 4 878914968 +717 237 5 884642400 +843 252 3 879445114 +854 270 4 882811810 +315 301 2 879799327 +378 118 4 880044879 +299 4 3 889503074 +532 7 5 893119415 +887 768 4 881381471 +766 179 4 891309484 +897 473 3 879993644 +790 496 3 885155172 +910 100 4 880821098 +805 117 3 881694798 +594 242 4 875997093 +417 156 3 879647380 +666 494 4 880314310 +711 16 5 886031006 +860 301 2 880829226 +455 193 4 879111586 +687 895 4 884652331 +919 257 4 875288848 +529 880 4 882535304 +730 276 3 880310390 +627 849 4 879531504 +650 272 4 891381546 +870 181 4 875680119 +756 226 3 874830103 +178 331 4 882823301 +880 237 4 880166798 +912 204 2 875966202 +74 268 3 888333195 +908 55 3 879722334 +629 294 3 880115922 +859 1095 2 885775513 +450 1284 3 887139594 +830 241 4 891464148 +493 338 4 884130032 +825 1028 3 889021037 +854 619 2 882812376 +683 344 3 893284138 +243 10 4 879987526 +314 846 3 877886971 +883 1121 3 891693702 +506 482 5 878044852 +889 273 4 880177016 +880 728 4 880243410 +916 252 2 880843864 +201 182 4 884111485 +542 763 4 886533253 +915 304 3 891030032 +222 258 5 877562748 +330 405 5 876544872 +783 271 5 884326506 +653 973 2 880150348 +816 259 2 891711423 +770 742 4 875972927 +845 1022 2 885409493 +184 317 3 889909426 +889 129 5 880177266 +671 222 1 883546333 +633 498 2 875324922 +758 542 2 881978495 +561 173 4 885807393 +207 763 3 877743609 +407 796 2 876338663 +747 672 4 888734152 +881 77 2 876538627 +637 151 5 882904064 +826 768 3 885690442 +126 990 4 887855231 +804 1041 3 879446037 +908 288 4 879722097 +642 102 5 885603849 +286 734 2 877534618 +590 6 5 879439145 +412 969 3 879716961 +751 2 4 889298116 +502 271 5 883702088 +398 484 4 875659319 +514 144 3 875462520 +908 694 4 879722603 +606 333 5 887059213 +450 749 4 892141807 +524 70 4 884636519 +887 633 5 881380584 +922 161 3 891450401 +890 516 2 882916537 +848 588 3 887043514 +312 178 5 891698553 +796 185 4 893194548 +676 270 4 892685489 +450 284 4 887139517 +864 422 3 888892968 +843 432 2 879447326 +894 244 4 879896985 +497 553 2 879310379 +886 1073 4 876031805 +638 229 1 876695108 +454 402 3 888267419 +773 260 2 888538348 +712 655 5 874730467 +749 404 5 878847673 +877 732 4 882677898 +894 281 3 880416102 +823 282 3 878439364 +905 245 3 884983273 +331 634 3 877196308 +648 926 3 882212400 +435 496 4 884131243 +854 7 4 882812352 +199 813 3 883782807 +258 294 4 885700898 +354 1466 5 891217547 +790 215 2 885157797 +606 108 1 880923349 +892 54 3 886609828 +882 473 3 879862936 +663 508 4 889492503 +342 169 5 875318907 +556 318 5 882136252 +901 8 3 877131307 +918 131 3 891987824 +870 470 3 879901727 +504 307 4 887831273 +201 506 4 884114471 +506 44 4 874874850 +923 410 3 880387908 +354 433 3 891217221 +503 293 4 879438411 +798 1034 2 875638547 +123 185 4 879873120 +653 403 2 880151461 +886 483 4 876031656 +745 151 2 880122948 +31 519 4 881548053 +896 191 4 887158604 +65 111 4 879217375 +724 349 2 883757537 +808 262 5 883949986 +453 226 3 877561214 +537 478 4 886030938 +620 859 4 889987657 +311 380 4 884366067 +405 942 1 885546336 +805 172 4 881694713 +543 2 3 877546306 +914 88 2 887124121 +665 186 4 884293569 +500 831 3 883866004 +427 289 5 879701326 +276 71 4 874792870 +911 435 5 892839993 +44 50 5 878341246 +7 71 5 891352692 +403 257 2 879786112 +378 160 2 880332998 +407 504 3 875043948 +828 958 5 891038262 +174 988 1 886515335 +829 275 4 892312770 +862 978 3 879303591 +425 265 3 878738643 +870 131 4 875050865 +790 1048 4 884462692 +705 94 4 883427857 +727 1034 2 883713692 +498 185 4 881955960 +758 76 3 881977265 +234 749 3 891033772 +407 930 2 876348901 +276 1145 2 874977115 +803 988 1 880055454 +840 8 5 891208958 +95 715 1 880572060 +810 321 5 879895290 +474 616 4 887924028 +246 133 3 884921705 +13 862 3 882399074 +643 1065 4 891448756 +313 481 4 891014000 +798 158 2 875914604 +378 543 4 880055840 +806 12 5 882388204 +901 988 4 877125716 +890 1065 3 882402949 +398 447 2 875658967 +712 585 4 874730234 +592 443 5 882956158 +577 172 4 880472124 +766 177 3 891309844 +315 303 4 879799302 +256 986 5 882164059 +913 58 5 880759221 +216 508 4 881432564 +94 172 4 885870175 +534 1054 5 877807973 +868 423 2 877107373 +861 736 4 881274672 +790 977 1 885158208 +880 363 4 880167200 +902 295 2 879465128 +751 490 4 889133429 +883 1 3 891914583 +727 157 3 883711965 +250 91 5 878091965 +833 384 3 875134724 +380 151 4 885478759 +198 230 3 884209073 +831 298 5 891355004 +881 385 4 876538666 +805 385 1 881694693 +922 143 4 891449021 +733 985 3 879535909 +263 662 4 891299324 +889 7 3 880177219 +18 48 4 880130515 +485 311 3 891040423 +928 8 5 880936905 +650 566 3 891369890 +840 405 4 891203585 +902 327 3 879463373 +682 22 5 888519725 +537 305 4 886028498 +326 521 2 879875399 +757 343 3 888443555 +624 300 4 879792132 +798 1539 2 876177839 +823 172 5 878437589 +333 520 4 891045117 +894 740 4 880416253 +653 28 4 878866814 +567 271 4 882426327 +892 230 4 886609793 +778 11 5 890725951 +374 203 3 880937735 +703 118 5 875242852 +864 511 4 888886846 +593 25 3 875659826 +764 274 3 876243410 +624 763 3 879792671 +620 164 5 889987586 +747 1098 4 888640437 +405 571 5 885547605 +450 318 5 882373531 +912 172 3 875966027 +187 300 4 879464783 +343 203 5 876406764 +450 968 4 882395537 +697 323 4 882621621 +851 974 2 875730979 +817 840 2 874816007 +782 1191 3 891498558 +308 410 4 887741329 +748 186 5 879454498 +861 1148 3 881274913 +857 475 5 883432663 +521 324 2 886059923 +557 292 4 880485019 +654 114 5 887864532 +746 127 2 885075243 +914 197 4 887122028 +291 96 4 874835062 +627 197 5 879529730 +311 417 3 884366035 +870 499 4 879713935 +447 294 4 878855082 +682 433 3 888521540 +749 211 5 878847887 +373 856 3 877105809 +913 357 5 880824372 +682 685 3 888522541 +620 63 5 889988232 +894 285 4 880416136 +465 281 2 883532120 +615 357 5 879448399 +839 286 4 875751411 +705 222 5 883427318 +892 89 5 886608714 +887 84 4 881381114 +313 222 3 891017708 +875 651 5 876466687 +795 826 3 880560736 +746 685 3 885075304 +883 1019 5 891695570 +863 305 4 889289122 +303 679 2 879484534 +886 98 4 876032352 +456 697 4 881374390 +650 578 3 891381661 +775 327 5 891032956 +787 938 3 888979605 +301 402 2 882076915 +592 60 4 882955460 +880 546 3 880167410 +840 474 5 891204089 +705 95 4 883427640 +864 1210 2 888892667 +903 203 4 891032911 +458 460 4 886394916 +272 133 1 879455143 +393 1039 3 887745973 +757 939 4 888467498 +805 45 4 881697128 +727 570 2 883713194 +456 395 2 881375542 +467 258 2 879532164 +125 243 2 892836123 +7 602 3 891352594 +775 312 3 891032866 +188 684 3 875073477 +519 903 5 883248595 +927 222 5 879177177 +561 455 3 885808766 +197 311 4 891409070 +280 142 4 891701747 +318 121 1 884495052 +671 234 4 883546890 +864 483 5 888886913 +189 498 5 893265773 +752 346 4 891207983 +922 210 3 891450368 +682 55 4 888520705 +303 1337 1 879485770 +343 215 5 876405943 +715 24 3 875962374 +659 175 5 891386829 +916 229 3 880845328 +437 425 4 880141374 +381 159 3 892696674 +778 268 2 890803859 +896 597 4 887159854 +859 1061 4 885776056 +449 14 3 879958603 +751 417 2 889297615 +394 405 3 880889010 +921 1060 2 879379942 +790 552 2 885157984 +867 68 4 880079020 +721 1039 5 877140780 +545 80 3 879900654 +561 268 3 885806710 +176 293 5 886048040 +487 392 4 883529363 +892 63 4 886610480 +882 526 4 879864642 +788 318 5 880868355 +889 462 5 880180707 +831 50 5 891354900 +843 429 4 879446503 +847 645 3 878940132 +514 1039 5 875318163 +334 29 2 891549751 +395 1028 2 886481149 +832 294 4 888259121 +655 193 3 887427307 +417 90 3 879649107 +782 1417 2 891500193 +790 188 4 885157399 +748 451 1 879455186 +844 258 4 877381147 +416 15 4 876697017 +843 800 4 879443482 +591 13 4 891039637 +568 135 4 877907782 +922 371 3 891448348 +867 650 5 880078818 +488 234 4 891293911 +733 127 3 879535265 +630 193 3 885667939 +285 258 2 890595408 +321 491 3 879440746 +167 554 1 892738237 +554 770 1 876369382 +620 760 3 889987073 +833 730 4 875038888 +653 117 4 878854810 +927 138 4 879198655 +450 501 4 882371416 +267 1028 3 878971143 +831 300 3 891354191 +805 412 3 881705592 +838 275 5 887064193 +454 48 4 881960114 +846 451 4 883949379 +881 38 3 876538763 +694 187 4 875727582 +537 789 2 886030805 +568 661 4 877907126 +311 699 4 884365075 +90 505 5 891383687 +693 313 5 885703726 +92 228 4 875653867 +757 751 3 888443398 +857 348 1 883432170 +210 222 4 887737603 +708 9 1 877325135 +487 156 4 883446027 +682 657 4 888520638 +724 301 4 883757670 +179 682 5 892151459 +450 307 5 882216475 +804 226 4 879445372 +686 317 5 879546553 +727 526 4 883711113 +712 173 5 874729901 +924 96 4 886760020 +875 4 3 876466687 +851 682 1 890804746 +588 570 4 890032281 +552 873 3 879220688 +3 347 5 889237455 +625 212 3 891968320 +699 322 3 879382698 +923 333 5 880386897 +655 766 3 891585450 +385 182 5 880870205 +796 826 2 893049362 +130 347 4 884623800 +279 1030 4 875659761 +249 603 5 879640935 +464 307 5 878354859 +265 676 2 875320487 +682 231 1 888522612 +699 116 4 887503290 +878 416 5 880870854 +593 744 3 886193049 +886 636 3 876032473 +721 306 3 877137285 +761 864 4 876190336 +855 1021 3 879825578 +705 143 3 883427663 +889 782 2 880182784 +892 173 5 886607778 +360 520 4 880355448 +806 95 5 882388658 +905 328 3 884983034 +721 260 3 877137109 +504 633 3 887912542 +866 300 1 891220881 +423 293 4 891395547 +537 647 4 886030891 +899 751 4 884120724 +655 1193 3 887477360 +655 28 3 887427210 +929 89 5 879640126 +896 546 2 887160938 +445 1051 1 891200390 +650 185 3 891369836 +805 55 5 881694693 +886 129 5 876033015 +823 95 4 878439257 +788 409 3 880871057 +747 56 5 888639526 +109 25 4 880571741 +846 135 4 883947694 +807 451 5 892530112 +924 117 2 887421305 +456 824 3 881372256 +6 261 3 883268522 +847 144 4 878940189 +508 179 4 883767465 +923 827 3 880387997 +919 243 3 875288418 +842 270 5 891218251 +896 562 2 887161448 +92 702 3 875656054 +497 629 2 878759862 +880 233 4 880167918 +848 490 5 887043514 +847 485 3 878941539 +537 277 2 886029973 +885 239 3 885713609 +900 589 5 877833631 +642 651 4 885602571 +205 748 4 888284710 +758 603 5 881976262 +828 340 5 891033756 +838 206 4 887067020 +442 222 3 883391221 +897 202 2 879990683 +409 1392 1 881105367 +676 193 5 892686606 +640 189 5 874778181 +860 153 4 885990965 +852 7 3 891036485 +796 1285 4 893188622 +790 776 3 885155119 +913 301 1 880753802 +521 226 4 884478721 +698 486 4 886366815 +928 98 5 880936884 +919 690 3 885059658 +91 418 2 891439503 +844 326 3 877381268 +246 616 5 884922475 +602 237 4 888638547 +169 538 4 891268653 +540 9 5 882156965 +922 215 3 891453653 +405 381 1 885547222 +743 292 3 881277267 +870 520 5 875050559 +731 434 1 886186811 +854 200 5 882814121 +862 603 5 879304445 +553 45 4 879948732 +658 100 4 875145493 +429 99 3 882386601 +575 963 1 878148199 +374 684 5 880937692 +534 1052 4 877808300 +896 685 3 887160465 +854 125 3 882813099 +885 65 2 885714336 +177 307 4 882141842 +798 1425 4 875915317 +804 200 3 879445493 +748 200 3 879454522 +286 1079 3 876522240 +833 504 4 875038671 +896 452 3 887161564 +712 560 3 874730261 +931 50 3 891036715 +916 781 3 880845451 +881 478 4 876537612 +823 153 4 878438856 +875 96 4 876465144 +391 50 4 877399588 +817 363 3 874816007 +751 1446 2 889298694 +886 62 3 876033265 +355 1175 5 879486421 +7 463 4 891353192 +867 228 5 880078958 +642 2 4 885606787 +822 408 5 891037291 +738 697 2 875353869 +839 696 2 875752479 +924 174 5 885458009 +864 276 5 878179411 +701 303 4 891446618 +874 340 3 888632194 +786 204 4 882843925 +488 751 3 891292771 +312 97 5 891698391 +292 169 5 881105625 +572 9 5 879449610 +507 538 4 889964239 +707 953 4 886288015 +642 801 3 885605794 +650 483 5 891372315 +903 708 4 891033808 +428 303 3 892572308 +887 692 5 881380654 +758 234 4 881974823 +846 528 5 883948417 +189 486 5 893266105 +758 533 4 882055948 +130 471 2 874953928 +803 338 2 880055454 +655 642 3 887430714 +682 153 3 888521465 +151 277 4 879524642 +840 165 5 891204239 +397 665 3 885349348 +543 700 2 874865923 +872 111 4 888479151 +330 318 5 876546377 +904 694 3 879735551 +87 49 5 879876564 +889 1419 2 880182924 +887 99 5 881380539 +99 310 3 885678348 +759 117 5 881476781 +98 211 4 880498797 +790 66 3 885156560 +645 243 1 892052232 +561 4 3 885809044 +746 684 4 885075337 +887 826 1 881379239 +618 699 3 891309410 +826 391 4 885690854 +861 547 4 881274857 +781 258 2 879633862 +883 64 4 891717988 +913 92 4 881725846 +917 25 4 882911390 +119 924 4 874775535 +927 501 4 879190422 +886 238 3 876031459 +190 328 3 891033305 +25 408 5 885852920 +924 1400 4 886327641 +790 96 3 885155648 +174 648 5 886513648 +22 250 5 878888251 +801 294 5 890332748 +826 343 5 885690046 +751 300 2 887134622 +621 501 3 874965299 +524 1074 2 884637128 +595 14 5 886921223 +733 546 1 879544466 +711 213 5 879994390 +711 69 3 879993194 +864 623 3 888889035 +858 289 3 879459337 +453 453 2 888206768 +870 554 2 879714800 +655 214 3 887650851 +374 288 4 885107876 +402 748 3 876266860 +854 537 3 882813797 +12 328 4 879958742 +747 651 5 888640862 +619 827 3 885953878 +497 4 3 879310825 +660 472 2 891198421 +244 1028 3 880604830 +899 660 4 884122564 +574 344 5 891278962 +727 88 5 883711394 +892 191 5 886607879 +889 302 4 880176518 +346 233 4 874948889 +295 52 5 879966498 +455 449 4 879112582 +267 293 4 878970785 +894 847 4 879897122 +790 781 4 885157107 +843 959 2 879447523 +838 271 4 887060972 +738 176 5 892844079 +844 778 4 877387195 +122 239 4 879270741 +882 237 5 879862327 +896 141 3 887159012 +864 56 5 888887097 +885 95 4 885714933 +285 300 4 890595584 +660 90 2 891201346 +707 174 2 886286133 +94 627 3 891722678 +916 1335 4 880843798 +679 28 5 884486732 +675 900 4 889488624 +637 7 1 882903044 +862 201 3 879304326 +893 117 4 874828772 +846 50 5 883948003 +25 419 4 885852218 +463 25 3 877385664 +655 939 3 887473905 +354 610 4 891217429 +582 597 3 882962267 +927 294 5 879199250 +845 900 3 885409719 +711 135 4 879992445 +900 280 2 877833364 +481 252 4 885828016 +711 1163 4 879991347 +721 107 4 877140780 +850 174 5 883195419 +782 1256 2 891500230 +657 9 4 884239123 +776 675 3 892920321 +650 215 2 891371152 +455 269 4 878585250 +701 690 4 891446520 +535 963 5 879617977 +556 172 5 882136441 +862 919 4 879303409 +840 56 5 891204239 +896 227 4 887161728 +903 204 3 891033335 +647 1047 4 876534275 +391 125 3 877399894 +417 1057 2 880949763 +679 154 4 884486658 +822 1240 3 891036703 +694 1028 3 875728581 +595 258 4 886920602 +889 186 5 880181563 +707 660 5 886287107 +637 25 4 882904537 +504 418 3 887832391 +820 343 4 887955241 +545 77 3 884134704 +230 117 5 880484320 +57 845 4 883697253 +486 741 3 879875221 +715 470 4 875963538 +293 1135 3 888907575 +618 54 3 891309319 +711 169 5 879992929 +915 288 2 891031450 +750 245 3 879446215 +694 648 5 875728639 +916 244 4 880843401 +683 906 4 893286261 +342 293 4 874984619 +648 14 2 882211223 +896 200 4 887158768 +818 887 4 891870590 +889 386 3 880182207 +652 294 2 882566890 +524 466 4 884636583 +919 259 4 875288362 +673 258 2 888786969 +891 934 3 883489806 +932 135 5 891249538 +738 455 4 875350551 +820 316 3 887955204 +437 721 2 880141335 +128 496 5 879967225 +425 546 3 878738548 +635 117 2 878879284 +23 56 4 874785233 +711 313 4 889910848 +651 294 1 879348880 +116 343 2 881246552 +639 792 2 891240752 +880 692 3 880174652 +47 307 4 879439112 +932 7 4 891250109 +751 737 4 889298945 +909 286 4 891919160 +932 435 4 891249821 +908 98 5 879722300 +493 1016 4 884130550 +796 211 3 893048115 +776 816 2 892920423 +694 498 5 875726618 +172 642 4 875538028 +800 125 3 887646608 +416 447 4 876699027 +843 96 3 879444711 +883 715 5 891694311 +807 657 4 892529573 +889 175 4 880180101 +805 546 2 881703473 +358 45 3 891269464 +932 285 4 891250392 +771 294 4 886640547 +886 172 5 876031527 +682 762 3 888521637 +836 419 2 885753979 +499 257 5 885598342 +889 678 3 880177352 +562 153 4 879195954 +608 70 4 880406552 +921 8 3 884673699 +610 8 4 888702902 +321 19 4 879438825 +682 5 3 888520799 +279 1494 1 889232401 +896 1672 2 887159554 +752 351 3 891207898 +759 742 5 875227798 +527 185 5 879455680 +862 737 4 879305386 +102 229 3 888801623 +620 1036 4 889988258 +709 203 4 879849372 +416 151 3 876697105 +880 1000 3 880175128 +659 167 3 891385438 +877 300 3 882676366 +774 405 1 888558539 +346 68 3 874951062 +592 467 5 882955582 +764 70 4 876244559 +566 386 1 881651375 +826 435 4 885690677 +786 708 4 882844171 +326 550 5 879876505 +660 134 4 891199153 +551 69 4 892776982 +630 325 3 885666301 +703 993 4 875242787 +913 260 1 881037229 +922 1035 3 891449552 +223 71 5 891550649 +916 523 3 880844511 +921 1 3 879379601 +506 95 5 874873198 +823 188 5 878438672 +709 173 4 879846169 +112 313 5 884992444 +896 367 4 887160227 +790 181 4 884461283 +896 549 2 887160209 +450 713 3 882395778 +455 121 4 878585685 +291 742 3 874805927 +435 265 3 884131996 +887 1278 2 881378087 +880 65 4 880241977 +629 23 5 880117001 +932 105 2 891252338 +922 89 5 891450368 +198 181 4 884205050 +527 492 3 879456405 +846 1148 3 883950220 +417 322 3 886186468 +541 405 3 883871695 +773 382 3 888538829 +916 170 4 880844612 +497 90 4 879310445 +835 1673 3 891034023 +393 785 3 889729749 +601 141 4 876350443 +846 507 3 883947861 +848 530 5 887043040 +629 174 5 880116847 +870 209 4 875680546 +679 153 2 884486904 +880 69 4 880175646 +868 121 2 877111542 +206 1175 1 888180049 +932 1204 5 891249821 +790 762 5 884462105 +487 783 4 884045361 +757 746 3 888468435 +64 79 4 889737943 +811 892 4 886377530 +643 219 5 891449614 +833 636 3 879818659 +338 497 3 879438165 +762 173 5 878719533 +29 1019 4 882821989 +566 443 4 881649505 +626 272 5 887772871 +442 859 3 883390169 +868 188 3 877103320 +806 28 3 882388286 +632 132 5 879459738 +116 249 2 876452705 +716 387 4 879797391 +587 918 3 892871113 +110 238 3 886989340 +13 38 3 882397974 +854 604 4 882813601 +833 72 2 875134724 +218 603 4 881288234 +421 197 3 892241491 +463 1284 4 877385381 +889 520 4 880179756 +316 275 5 880853810 +671 802 3 884036411 +795 1555 3 883249643 +311 231 4 884365746 +922 72 4 891452470 +661 1035 3 876017717 +802 657 4 875985239 +445 433 2 890987617 +757 809 4 888466758 +783 258 4 884326348 +201 441 1 884112537 +399 468 3 882344134 +508 232 3 883777109 +846 486 5 883948948 +610 9 3 888702961 +666 647 5 880139439 +595 3 4 886922069 +13 211 4 882140002 +788 614 4 880868803 +774 53 4 888557383 +716 180 3 879794815 +864 794 3 888889268 +256 409 4 882163654 +871 751 4 888192744 +43 208 5 883955547 +707 297 3 880060261 +804 981 3 879444077 +661 140 3 876013552 +128 702 3 879967879 +755 271 1 882570023 +380 272 4 885477742 +232 508 1 880062447 +913 1112 1 882044453 +868 96 2 877107056 +606 684 3 880925579 +445 1047 1 891200656 +522 521 5 876961190 +397 186 5 885349955 +833 1154 4 875039101 +804 984 4 879440727 +796 112 4 893219477 +881 196 3 876538185 +682 258 3 888516814 +747 887 5 888638335 +880 1276 3 880167384 +712 196 4 874730396 +863 349 1 889289457 +772 310 4 889028363 +589 879 4 883352654 +790 41 3 885158235 +774 684 1 888557329 +908 701 4 879722780 +752 345 1 891207898 +862 820 4 879303774 +795 576 2 883254780 +522 48 4 876961020 +301 409 4 882075242 +66 284 3 883601812 +846 1473 5 883949335 +782 900 3 891497963 +833 144 4 887158945 +648 637 2 884883424 +623 186 3 891034814 +896 76 3 887158359 +847 732 4 878940510 +846 71 4 883948141 +663 748 2 889492019 +719 240 1 879372631 +795 204 3 880570209 +455 213 4 879111453 +780 79 4 891363860 +416 232 5 893213549 +846 393 3 883949547 +144 223 4 888105197 +472 660 5 875982096 +887 710 5 881380709 +766 396 2 891310934 +664 159 3 876526739 +262 92 3 879794205 +894 332 3 879896233 +758 462 4 881975687 +653 1135 2 880152759 +158 518 4 880134398 +305 474 5 886322838 +870 781 3 881001249 +896 414 3 887159145 +881 103 1 876536745 +711 542 1 879995754 +918 1065 4 891988002 +881 127 4 876536079 +807 415 3 893082702 +703 1197 3 875242762 +903 254 2 891032101 +757 11 4 888466583 +916 1135 3 880845556 +321 493 4 879441110 +806 155 3 882390164 +880 1030 2 880243147 +397 652 3 885350326 +705 210 5 883427988 +444 306 5 890246907 +178 511 5 882827532 +846 552 4 883950634 +328 1401 2 885046537 +256 841 2 882163857 +468 50 5 875280352 +622 280 3 882590534 +234 629 4 892335042 +868 225 1 877111453 +642 783 4 885606024 +306 258 2 876503793 +870 591 2 879270212 +145 590 1 882182802 +725 181 4 876106206 +843 99 2 879448751 +496 961 2 876070655 +807 739 4 892684321 +886 813 4 876032029 +181 508 3 878962623 +216 1 4 880232615 +466 17 5 890284766 +643 481 4 891447127 +919 19 4 875288681 +749 185 4 878847740 +749 89 4 878848098 +839 326 4 875751519 +406 491 4 884631010 +782 335 2 891498918 +463 237 4 877385237 +707 220 2 880060549 +554 4 2 876369560 +554 531 4 876549731 +796 321 2 892611871 +521 87 3 884478314 +450 188 3 882395778 +932 504 4 891250236 +552 1278 3 879222452 +864 476 2 888892917 +497 62 4 879310913 +846 719 2 883949643 +328 159 3 885047194 +872 237 4 888479275 +761 426 1 876190510 +707 1174 5 880059749 +774 519 5 888556434 +201 366 2 884141015 +763 61 5 878915628 +889 515 5 880176807 +624 455 3 879793358 +226 286 4 883888600 +887 235 3 881378537 +733 405 2 879536659 +553 181 4 879948695 +551 636 5 892784130 +756 123 2 874830344 +616 289 4 891224840 +833 933 4 875035914 +144 126 4 888104150 +716 614 4 879795159 +881 943 4 876537404 +704 611 3 891397764 +919 253 3 875288748 +853 271 3 879364668 +896 423 3 887159172 +853 328 3 879364744 +474 188 5 887926437 +82 50 5 876311146 +786 66 4 882843607 +506 517 2 874874585 +846 72 4 883950129 +1 55 5 875072688 +716 792 4 879796010 +416 353 2 886314834 +928 187 5 880936884 +913 8 2 880825916 +345 628 3 884991105 +541 66 4 883865929 +145 310 4 883840666 +804 240 4 879443958 +605 269 4 879365101 +514 511 3 886189990 +828 895 2 891035437 +575 79 5 878148199 +71 286 4 877319080 +272 194 5 879455043 +908 204 4 879722427 +915 310 3 891029965 +746 172 5 885075165 +897 194 5 879991403 +877 402 3 882677997 +897 568 5 879992216 +491 127 3 891185129 +535 517 4 879617977 +896 436 3 887159692 +878 82 3 880870609 +537 129 3 886029889 +894 582 4 882404485 +328 69 4 885045844 +790 940 3 885157928 +916 866 3 880843798 +567 89 5 882425820 +749 628 4 878846903 +716 493 5 879795949 +837 276 1 875721843 +864 140 3 888892016 +724 876 1 883757784 +886 67 4 876033228 +745 205 2 880123205 +758 1016 4 880672855 +868 427 4 877103679 +625 408 4 891997054 +804 929 3 879444092 +181 1187 1 878962816 +834 150 5 890862564 +247 121 4 893081396 +693 1248 3 875483597 +924 6 4 886759441 +682 268 5 888518279 +708 926 3 877325523 +119 299 4 890626446 +11 121 3 891902745 +630 550 3 885667968 +505 313 5 889332743 +886 824 4 876033413 +798 722 3 875914534 +868 501 3 877103449 +361 28 3 879441417 +287 168 5 875335190 +667 86 5 891034894 +587 334 3 892871171 +716 622 3 879797152 +262 132 3 879792604 +447 13 5 878854630 +887 206 5 881381471 +739 301 5 886825529 +59 525 3 888204758 +655 9 3 891585450 +594 15 4 874783052 +896 132 3 887158579 +881 739 4 876539091 +334 307 3 891544135 +889 1079 2 880177647 +934 50 5 891189363 +756 473 3 874829296 +892 500 5 886609622 +881 401 1 876539260 +592 747 4 882956102 +870 462 4 875679860 +843 679 4 879444851 +899 230 4 884122472 +138 1 4 879023031 +934 423 3 891191660 +863 332 4 889288943 +228 286 5 889387172 +178 684 5 882827019 +649 254 4 891440695 +848 154 5 887038634 +846 746 3 883949254 +782 1382 3 891500109 +815 127 3 878691739 +889 399 3 880182359 +565 971 5 891037862 +10 482 4 877889262 +61 751 3 891206274 +792 13 4 877910822 +698 1021 1 886367615 +871 335 3 888192475 +655 204 3 887477192 +674 742 5 887762714 +68 276 5 876973884 +721 65 1 877140221 +788 227 3 880867890 +606 585 4 880927358 +806 1074 3 882390515 +334 129 4 891544735 +828 270 5 891034148 +864 216 4 888886882 +462 261 2 886365773 +933 1017 3 874854953 +880 579 3 880243882 +704 661 4 891397667 +913 12 4 881366897 +911 185 5 892841255 +918 1200 4 891988276 +655 1479 2 887475032 +889 771 2 880182961 +312 223 5 891698485 +788 85 1 880869984 +457 1029 3 882551135 +694 663 4 875727926 +804 212 3 879445933 +807 21 4 892823188 +830 230 3 891561806 +360 69 3 880355994 +919 322 3 875288253 +868 210 5 877103248 +886 27 2 876031829 +154 200 5 879138832 +825 413 3 889020940 +536 568 4 882360209 +854 3 1 882813047 +519 1295 5 883248595 +653 168 3 890181186 +707 1101 4 880061652 +72 188 4 880037203 +886 182 4 876031932 +458 499 4 886397450 +327 537 4 887744023 +458 1226 2 886396910 +759 257 4 881476824 +525 269 5 881087067 +587 264 4 892871400 +665 660 4 884294935 +903 181 4 891031309 +59 182 5 888204877 +663 192 4 889493628 +62 1028 1 879373215 +380 845 4 885479706 +7 586 3 891354639 +807 820 3 892532068 +892 102 3 886610078 +796 402 5 893047320 +796 132 4 892662222 +911 174 4 892838577 +437 221 5 880140154 +935 476 4 884472465 +602 538 4 888638048 +813 901 1 883752708 +643 673 4 891448095 +7 96 5 891351383 +363 549 4 891496225 +370 302 5 879434182 +664 215 4 876525293 +537 837 3 886031211 +854 176 3 882813877 +798 560 3 875638972 +693 855 2 883975636 +889 1072 3 880182444 +38 294 5 892428584 +194 518 4 879524291 +655 1514 2 887472879 +896 215 5 887158959 +711 318 5 879992968 +690 1041 3 881177804 +194 1107 3 879525624 +893 294 3 874827789 +130 257 4 874953665 +44 520 5 878347874 +416 1011 4 885114897 +539 132 5 879788284 +819 248 5 880382511 +830 432 3 891561474 +754 276 5 879451841 +59 1112 3 888206161 +727 845 3 883709325 +843 21 2 879448392 +584 230 4 885774171 +707 949 3 886287191 +666 169 4 880567883 +739 172 4 886958938 +709 728 4 879849185 +758 238 5 881975538 +889 747 4 880181515 +622 1203 3 882669645 +450 662 4 882395914 +843 176 4 879447837 +105 343 2 889214524 +130 355 4 888211731 +819 268 4 884012614 +730 258 5 880309940 +891 281 5 891639920 +643 153 4 891447196 +900 493 2 877833603 +682 1079 3 888523657 +497 237 3 879310314 +747 392 3 888734178 +585 919 2 891283681 +705 403 4 883428154 +478 12 5 889388862 +324 690 4 880574901 +897 1254 2 880253037 +885 418 4 885714933 +854 488 4 882813761 +842 886 4 891218459 +932 1065 5 891251538 +533 216 4 879191864 +460 298 2 882912440 +663 89 4 889493818 +889 183 3 880178019 +733 1115 3 879535338 +887 82 4 881381028 +846 102 2 883950286 +847 567 3 878940783 +938 864 4 891356827 +933 317 4 874853779 +899 2 3 884122563 +862 657 5 879304369 +291 184 4 874835198 +604 441 2 883668261 +896 462 3 887159069 +922 756 2 891455185 +343 403 4 876406878 +442 153 3 883388237 +812 261 1 877625461 +772 300 4 877533731 +602 358 4 888637965 +774 448 2 888557715 +774 1218 3 888556169 +900 474 4 877833781 +659 431 4 891385627 +843 447 2 879443297 +94 67 3 891723296 +455 144 3 879110436 +753 435 4 891401712 +903 276 5 891380461 +35 300 5 875458970 +821 427 5 874793649 +575 182 3 878148295 +868 524 3 877107730 +523 1047 5 883702800 +707 1068 4 880061405 +805 501 5 881695560 +589 322 3 883352631 +878 137 3 880865562 +895 284 3 879438062 +738 206 3 875350223 +328 235 3 885048464 +815 193 4 878696054 +374 294 2 880392193 +924 523 5 885458121 +887 423 2 881379954 +420 173 3 891356864 +435 58 3 884131328 +746 8 4 885075539 +222 150 3 878181869 +459 259 4 879561630 +833 670 1 875124428 +707 811 4 886287531 +721 873 3 877137447 +655 1529 2 887489792 +897 204 4 879990396 +919 358 3 875288304 +909 582 5 891920125 +399 302 4 882340101 +62 190 5 879374686 +935 284 4 884472673 +406 660 3 882461650 +476 66 3 883364433 +892 97 5 886608802 +339 343 3 891031800 +21 986 1 874951482 +909 292 4 891919160 +650 393 3 891386778 +160 213 4 876859778 +761 455 2 876190439 +846 780 4 883949380 +874 748 3 888633197 +500 183 4 883873461 +913 527 5 881036957 +435 144 4 884131085 +256 228 3 882164559 +724 1062 1 883758208 +660 227 2 891201172 +504 1147 4 887832741 +387 1011 3 886481033 +518 628 5 876823804 +792 591 2 877909865 +271 654 5 885848475 +919 887 3 885059452 +833 320 4 875124647 +727 398 2 883713714 +878 181 3 880865770 +716 172 4 879795542 +774 23 3 888556634 +868 273 3 877107284 +846 679 3 883948989 +442 447 3 883390048 +747 290 3 888733144 +295 1 4 879517580 +825 12 5 881101782 +501 597 3 883348260 +461 258 4 885355735 +385 1449 4 881047049 +891 471 5 891639941 +79 222 4 891271957 +497 210 4 878759777 +339 200 5 891033118 +234 989 2 891033966 +853 258 3 879364883 +899 218 4 884122155 +630 932 2 885667108 +846 1248 4 883949254 +664 285 5 876524053 +889 173 5 880178019 +815 200 5 878693871 +854 285 4 882812165 +870 396 3 875680668 +445 289 1 891199510 +458 735 2 886397679 +682 299 4 888518363 +474 469 4 887925916 +693 174 4 875483881 +775 329 3 891033071 +758 705 5 881976203 +862 183 5 879304834 +107 325 3 891264659 +929 209 3 880817752 +747 1225 3 888733314 +394 89 5 880889349 +815 50 5 878691739 +532 136 5 892865321 +484 2 4 891195391 +874 289 4 888633197 +885 91 3 885714820 +796 191 4 892690382 +343 198 4 876406006 +817 324 2 874815789 +352 431 2 884289728 +749 620 4 882804506 +788 211 4 880868401 +711 425 4 879993728 +863 898 1 889288973 +327 246 4 887744384 +634 272 5 889464384 +486 21 3 879875371 +878 15 4 880872273 +251 125 4 886272346 +709 11 5 879847945 +506 202 5 874873374 +285 270 4 890595456 +276 1213 1 874791407 +771 79 1 880659729 +707 1642 5 886286491 +496 842 2 876068249 +707 93 5 880059995 +927 24 3 879181042 +303 1039 5 879466457 +901 623 4 877131793 +745 427 4 880123361 +940 193 3 885921893 +642 237 5 885603870 +404 750 3 883790750 +387 563 2 886481851 +773 258 5 888538143 +655 1633 3 889331315 +883 28 3 891717908 +119 204 4 886177659 +897 143 5 879991069 +864 382 3 888887437 +882 222 5 879861562 +916 214 3 880844958 +474 200 3 887925497 +804 183 4 879445904 +916 175 4 880845011 +497 725 3 879363253 +87 476 2 879877241 +372 292 5 876869183 +790 1091 1 885157728 +747 313 5 888638265 +804 756 3 879443976 +628 1025 5 880777095 +632 143 5 879459053 +739 197 1 886958860 +378 949 3 880056318 +846 1118 5 883948495 +551 84 1 892785020 +919 347 3 885059569 +888 869 4 879365086 +900 183 3 877833781 +905 282 3 884983889 +524 570 4 884637128 +524 523 4 884634615 +642 571 3 885606113 +868 417 1 877108087 +788 661 5 880868473 +616 343 4 891224864 +497 49 3 879310474 +880 402 3 880242115 +223 313 5 891548750 +397 298 4 885349348 +474 1011 4 887916203 +932 176 5 891250449 +393 449 2 889731088 +313 15 2 891016962 +882 988 5 879861385 +782 898 3 891498720 +7 577 2 892133310 +881 1540 1 876539091 +894 83 4 882404250 +749 526 5 878847804 +833 396 3 875134063 +269 735 2 891448120 +593 233 2 875671549 +889 461 3 880181159 +819 1160 4 880382533 +707 1211 4 886287268 +886 171 4 876032072 +59 603 5 888204309 +454 480 4 881959652 +551 451 1 892784976 +608 1221 2 880406800 +940 568 3 885921870 +592 482 4 882955582 +897 56 2 879991037 +831 31 4 891354612 +222 770 3 878181592 +624 122 3 879793436 +870 68 3 879714087 +641 209 4 879370365 +621 88 2 874962772 +935 100 3 884472110 +715 274 3 875963899 +693 281 3 875483597 +872 748 3 888478942 +696 427 5 886404542 +892 144 5 886609179 +116 292 4 876453847 +940 14 3 885921710 +860 305 4 878567538 +771 69 5 880659606 +922 382 4 891451373 +863 1022 2 889289569 +331 22 4 877196235 +802 234 5 875985601 +899 172 4 884121089 +625 235 3 891631761 +925 5 4 884718156 +488 136 4 891294158 +771 144 1 880659507 +934 573 2 891197530 +710 174 4 882064283 +568 56 4 877907720 +595 275 4 886921166 +313 141 4 891030189 +942 117 4 891282816 +863 873 2 889289491 +889 155 3 880182582 +286 330 5 884069544 +771 408 5 880659302 +774 241 4 888557237 +466 895 3 890283056 +697 118 3 882622044 +123 14 5 879872540 +894 863 5 881105162 +664 408 5 878094973 +721 172 5 877138884 +880 864 3 880167200 +940 205 3 885921243 +548 181 4 891043008 +587 358 3 892871284 +444 328 5 890247082 +933 28 4 874853977 +84 318 5 883453617 +234 1075 3 892335797 +897 497 3 879990430 +256 50 4 882164443 +399 222 3 882344434 +846 967 3 883950791 +865 676 2 880144153 +940 272 4 884801316 +194 679 2 879523104 +640 461 4 874777833 +712 388 3 874957053 +846 727 4 883948873 +406 180 5 879445599 +911 496 3 892838954 +868 919 4 877103757 +817 546 4 874815947 +830 480 5 891462594 +766 393 3 891310372 +622 162 3 882670389 +847 404 3 878940732 +279 32 3 875298696 +608 22 4 880405395 +864 1228 3 888892375 +912 132 5 875965981 +610 127 5 888702902 +886 789 3 876031656 +937 275 4 876769323 +152 88 5 884035964 +868 117 2 877110332 +557 682 2 881179213 +1 42 5 876892425 +610 185 5 888703191 +882 33 2 879868197 +833 92 2 875135363 +706 181 4 880997105 +889 24 4 880177266 +835 313 5 891032224 +405 44 1 885548670 +748 326 3 879454171 +346 177 4 874948476 +825 117 5 889021393 +781 215 3 879634124 +860 300 4 874967063 +830 2 3 891561806 +394 252 3 881130112 +828 509 2 891036630 +253 490 5 891628374 +716 225 3 879794482 +606 111 4 878146986 +1 139 3 878543216 +790 25 2 884461925 +487 802 4 884051006 +479 509 4 879461756 +301 122 2 882074818 +846 469 2 883949290 +942 200 4 891282840 +798 97 1 875638474 +371 31 5 880435576 +846 190 5 883947694 +940 655 4 885921775 +529 343 3 882535180 +173 326 5 877556988 +806 216 4 882388128 +601 864 1 876347320 +443 260 1 883504818 +840 197 5 891204509 +305 275 2 886323153 +825 1244 5 881185672 +789 1 3 880332089 +592 472 1 882608795 +767 483 5 891462870 +913 1240 2 881037004 +896 25 3 887159261 +321 127 3 879438651 +831 316 3 891354338 +722 476 4 891281635 +890 625 3 882575104 +682 660 2 888517870 +730 327 2 880309964 +933 187 4 874854294 +258 877 3 885701044 +271 470 3 885848707 +429 65 3 882386216 +215 159 3 891436707 +766 386 3 891310620 +758 526 4 882052744 +593 288 4 877728878 +892 118 4 886610649 +805 655 3 881698175 +859 294 3 885775218 +710 299 3 882063612 +345 1007 5 884994119 +433 286 5 880585068 +831 7 5 891354947 +125 1204 3 879454419 +835 527 4 891033048 +537 1166 2 886031886 +932 55 3 891249994 +864 99 3 888890730 +938 122 1 891357190 +393 729 4 887746431 +911 381 5 892839846 +792 147 4 877910822 +903 288 4 891031105 +650 419 4 891370971 +774 201 2 888556090 +178 628 4 882824027 +843 191 3 879446755 +848 89 5 887040097 +896 481 4 887158683 +73 894 1 888625592 +880 40 2 880174904 +867 98 5 880078937 +830 612 4 891898061 +770 303 4 875971568 +437 101 3 880143355 +444 307 3 891979402 +161 929 1 891172377 +235 429 4 889655662 +469 161 3 879523802 +833 943 4 875124382 +671 56 1 883546120 +897 477 3 879993315 +17 628 1 885272724 +556 340 5 882135646 +865 268 4 880142652 +747 111 4 888733480 +883 212 5 891695570 +766 89 4 891309090 +843 675 5 879443174 +865 91 3 880235059 +753 294 5 891399737 +559 520 5 891033911 +194 79 3 879521088 +527 427 4 879455740 +903 191 5 891032872 +745 125 5 880123069 +389 302 5 879915633 +773 179 5 888538810 +655 5 2 887523641 +653 526 3 880151752 +551 294 4 892775824 +747 133 5 888732695 +688 359 5 884153606 +305 318 3 886322560 +450 96 4 887834823 +567 498 4 882425966 +435 44 2 884132619 +455 147 4 879109764 +92 385 4 875653665 +899 640 1 884122228 +893 148 3 874829287 +653 225 1 886052230 +864 87 5 888887403 +937 9 5 876769373 +542 627 3 886533604 +662 1652 3 880570909 +846 1311 2 883950712 +924 127 3 884371438 +805 631 5 881698243 +584 249 4 885774551 +905 300 4 884983556 +913 481 3 880758579 +379 1113 4 892879325 +659 568 4 891384850 +486 304 3 879874186 +128 258 2 879966299 +846 219 4 883948607 +779 109 3 875501782 +497 450 2 879362202 +825 293 3 880931805 +626 266 1 878771476 +637 301 1 882899527 +942 604 4 891283139 +452 663 2 885817516 +185 178 4 883524364 +881 117 5 876535796 +566 181 2 881649985 +826 510 4 885690677 +940 315 4 884801125 +642 742 5 885602839 +125 205 5 879454345 +911 98 2 892839015 +801 288 5 890332820 +141 1282 3 884585320 +681 1176 4 885409515 +587 689 1 892871438 +74 508 4 888333542 +144 56 4 888105387 +321 116 3 879439595 +902 50 5 879464726 +880 367 4 880174730 +885 195 4 885715827 +851 343 2 883148773 +301 205 4 882076046 +650 80 2 891389216 +795 42 3 881252510 +617 567 2 883789747 +701 328 4 891446707 +698 96 4 886366515 +645 186 4 892053340 +735 283 2 876698796 +854 1677 3 882814368 +291 98 5 874834701 +869 240 4 884491734 +642 780 5 885606270 +183 121 3 891463809 +544 288 2 884795135 +709 859 3 879848318 +885 56 3 885714641 +807 210 4 892528646 +442 433 4 883388283 +919 321 2 875288164 +826 678 4 885689942 +379 286 4 880524329 +654 153 4 887864414 +707 294 2 879438988 +828 1056 1 891036630 +588 1219 2 890028385 +435 687 2 884130834 +782 1380 2 891500150 +844 7 3 877381784 +378 98 5 880045760 +758 505 5 881979012 +826 570 4 885690790 +654 151 4 887863471 +474 467 4 887928498 +933 64 5 874853605 +401 286 2 891031464 +407 204 3 875116964 +325 383 1 891480034 +896 1018 3 887160116 +864 234 4 888887658 +910 845 4 880821405 +890 449 1 882915661 +886 218 3 876031829 +871 547 3 888193136 +733 117 2 879535779 +409 61 4 881109420 +881 94 2 876539020 +843 581 3 879443951 +643 169 4 891447222 +880 1053 3 880242660 +892 95 4 886608770 +710 510 4 882064283 +877 79 4 882678387 +537 714 3 886031886 +551 363 4 892784710 +942 423 5 891283095 +886 76 4 876033897 +41 96 4 890687019 +877 748 4 882676423 +933 447 2 874854678 +863 1679 3 889289491 +739 176 1 886958938 +887 91 5 881380884 +496 495 3 876066300 +671 779 3 884036683 +655 1473 3 888474872 +459 696 4 879563736 +474 174 5 887925750 +499 527 5 885599307 +915 300 3 891031477 +536 720 4 882361207 +870 395 3 879901999 +222 91 2 878183777 +850 121 5 883195055 +889 187 4 880177857 +622 210 3 882669784 +339 1258 3 891034717 +95 398 1 888956804 +503 130 5 879438837 +804 139 3 879444943 +472 432 5 875979964 +655 1129 3 891585242 +773 231 2 888540186 +896 20 1 887235027 +846 2 5 883948949 +621 432 4 874965093 +587 680 1 892871503 +452 842 2 875265368 +184 313 4 889906905 +892 596 3 886608136 +553 497 4 879948460 +846 588 4 883949380 +818 751 5 891870473 +583 708 5 879384338 +428 315 5 885943980 +734 193 4 891025340 +908 657 4 879722822 +846 654 5 883948089 +795 214 4 881265372 +910 237 4 880822060 +397 65 2 875063876 +181 596 4 878962866 +399 379 3 882512003 +521 751 3 884475485 +503 463 1 880383126 +802 53 4 875985840 +798 623 3 876175980 +894 1131 4 879897198 +894 511 4 879897198 +877 566 4 882678547 +916 81 5 880844527 +798 740 2 875296148 +620 313 5 889986477 +49 465 3 888067798 +703 508 3 875243028 +805 143 3 881705765 +871 22 5 888193177 +315 164 4 879821349 +760 739 4 875668888 +790 228 3 885156647 +940 66 4 885922016 +454 283 3 888267590 +868 81 4 877107373 +109 572 3 880583308 +933 156 4 874854135 +862 203 4 879305312 +892 110 3 886610523 +747 615 5 888640348 +561 542 1 885810858 +417 1230 2 880953088 +416 1119 5 893214225 +890 258 3 882404055 +885 173 4 885713357 +678 275 2 879544450 +648 161 3 884882802 +815 584 3 878696355 +568 234 3 877907092 +385 1456 4 879447205 +894 1560 4 882404641 +605 70 3 879424680 +474 96 4 887925497 +796 735 2 893188514 +894 257 3 880416315 +616 288 4 891224676 +798 603 3 875743267 +673 327 4 888787396 +919 596 3 885059887 +881 934 3 876537011 +917 471 4 882911099 +839 111 4 875752237 +923 237 4 880387908 +765 137 5 880346255 +815 174 4 878693424 +354 221 4 891216788 +934 1425 1 891197851 +926 286 4 888636202 +932 1266 4 891248937 +637 9 1 882902924 +181 678 2 878961369 +201 10 3 884114169 +899 282 5 884120007 +227 741 3 879035464 +778 568 3 890726190 +303 375 2 879544276 +768 310 4 883835026 +823 182 4 878438260 +690 435 5 881177616 +366 773 3 888858078 +320 185 4 884751141 +747 40 2 888733480 +222 67 4 878183616 +924 195 5 886065785 +882 660 3 879879731 +815 181 5 878691844 +943 58 4 888639118 +452 100 5 885544109 +503 694 5 880383030 +886 371 1 876033435 +884 165 3 876859070 +527 191 5 879455654 +794 269 5 891034213 +738 64 4 875351092 +825 243 4 884642187 +709 228 3 879848397 +424 286 4 880858792 +561 603 4 885807842 +478 11 4 889395638 +285 64 3 890595777 +417 231 4 879648798 +414 886 4 884999286 +686 173 5 879546847 +524 715 4 884636182 +932 679 2 891251538 +795 1199 3 880557953 +872 288 5 888478743 +924 273 3 889286721 +883 277 4 891717936 +864 161 4 888891288 +870 494 3 879865875 +745 204 3 880123335 +463 302 5 877384835 +907 317 5 880159910 +682 943 3 888520864 +782 1534 2 891500194 +751 917 2 892486699 +405 1577 1 885549506 +296 114 5 884198772 +499 588 4 885599334 +870 528 4 875050801 +541 584 3 883874646 +622 581 4 882670562 +880 722 3 880174904 +751 710 3 889298051 +480 443 4 891208746 +591 306 5 891030956 +676 295 1 892686220 +854 129 3 882812165 +776 195 3 891628836 +833 977 2 879818799 +551 1028 4 892785056 +860 347 4 886424396 +835 499 5 891033675 +846 1179 2 883949121 +693 121 2 875483564 +540 597 4 882157248 +622 484 3 882669803 +927 228 5 879184644 +655 170 3 887523224 +899 250 2 884120105 +551 226 5 892783411 +332 41 5 887938997 +693 157 4 875482779 +862 484 4 879304571 +456 952 4 881371766 +368 5 3 889783454 +655 1111 3 887473856 +561 1044 2 885810834 +116 246 5 876452405 +630 216 5 885667968 +837 275 4 875721989 +592 176 5 882956039 +882 225 5 879862865 +751 197 3 889296961 +919 462 3 875372844 +903 23 5 891033541 +840 144 3 891209104 +250 9 2 878089547 +669 151 5 892549370 +354 222 3 891216854 +896 1221 2 887159261 +650 622 3 891387468 +276 397 1 874792601 +104 246 3 888465319 +878 496 5 880867387 +921 932 3 879381128 +761 988 1 876189715 +592 224 5 882608357 +892 237 4 886608802 +867 250 4 880078091 +864 969 4 888887172 +682 683 2 888518503 +768 815 3 880135963 +31 1022 5 881547814 +744 340 3 881171820 +830 56 2 891464054 +305 326 2 886307917 +437 71 3 880141402 +901 929 4 877126902 +256 381 5 882165135 +788 621 3 880871026 +536 436 3 882359883 +846 387 3 883950634 +185 845 4 883524507 +833 511 4 875038742 +790 145 2 885158299 +59 524 3 888206689 +853 300 5 879364744 +782 873 4 891498512 +940 873 3 889480440 +370 137 4 879434707 +613 272 5 891227111 +298 50 5 884125578 +374 227 4 880937876 +383 660 4 891192748 +474 737 4 887926633 +276 385 4 874792547 +886 393 3 876033181 +27 930 2 891543222 +880 79 4 880167670 +416 550 4 886317599 +508 47 3 883777257 +634 473 2 875729558 +903 187 5 891033754 +764 121 5 876244991 +92 44 3 875906989 +627 328 4 879529486 +909 116 5 891920010 +541 659 5 883865555 +826 230 4 885690600 +627 358 3 879529556 +379 7 5 891674489 +398 231 2 875743840 +450 389 4 882396051 +868 98 4 877103371 +935 471 4 884472352 +618 52 3 891307224 +450 50 5 882371415 +327 181 4 887745537 +648 234 5 884368314 +425 12 5 878737791 +868 662 2 877103714 +825 1163 3 880756076 +840 515 5 891203280 +815 141 4 878694613 +907 620 4 880159113 +727 455 3 883709671 +933 98 5 874853734 +837 280 2 875722350 +495 1079 5 888636511 +301 233 4 882077872 +796 692 5 892761544 +561 1010 3 885809781 +773 958 4 888538908 +445 300 1 890987410 +360 223 5 880355803 +922 202 5 891448115 +664 664 4 876524474 +723 189 3 880498938 +658 42 4 875147873 +943 111 4 875502192 +889 1070 3 880178367 +716 418 4 879796620 +87 765 3 879877006 +907 274 5 880158986 +864 2 4 888889657 +708 473 1 877325656 +932 1305 2 891252260 +812 286 2 877625109 +843 582 2 879445658 +795 477 3 880558562 +889 755 3 880182017 +207 195 3 875509307 +610 172 4 888702962 +524 14 5 884322047 +939 931 2 880262196 +890 662 3 882575303 +6 531 4 883600747 +622 253 3 882591047 +344 546 3 884899837 +895 181 5 879437950 +840 257 3 891204056 +697 595 4 882622066 +823 90 4 878438552 +497 7 3 879310604 +401 428 4 891033092 +145 118 3 875270764 +751 704 2 889133429 +892 732 4 886610480 +880 44 4 880243712 +683 880 3 893283641 +181 1034 1 878962586 +684 158 3 878760372 +883 549 4 891696782 +870 179 4 875680165 +778 367 5 890802895 +747 234 5 888640099 +867 117 3 880079117 +829 222 4 882816987 +823 1267 4 878438780 +144 7 2 888104087 +741 118 1 891455855 +262 609 3 879793736 +130 326 5 874953239 +460 1067 4 882912316 +654 143 5 887864275 +406 122 3 879540405 +276 217 4 874792692 +58 137 5 884304430 +885 501 3 885714820 +731 613 2 886186568 +782 688 2 891498918 +854 4 2 882814436 +593 282 5 875659518 +788 120 2 880871520 +393 1076 3 889731109 +815 257 3 884320266 +889 223 4 880177906 +788 281 4 880871205 +462 326 4 886365297 +661 165 5 876013975 +394 358 3 880886546 +790 158 2 885157797 +548 56 5 891044356 +218 23 4 881288298 +604 7 4 883668097 +850 584 4 883195276 +886 1 4 876031433 +472 405 5 875978600 +671 265 3 884035992 +896 358 1 887235749 +586 581 2 884065745 +701 289 4 891446857 +665 202 3 884294612 +540 340 4 882156710 +286 42 4 877533698 +62 455 3 879372696 +618 218 3 891308115 +592 23 5 882955735 +222 167 3 878183588 +848 118 2 887047243 +843 551 3 879443544 +911 485 3 892839454 +864 747 3 888890380 +655 300 3 887476919 +239 531 5 889178762 +883 168 5 891694218 +303 1 5 879466966 +846 494 5 883947590 +446 245 4 879787226 +788 231 3 880871267 +608 317 5 880405527 +311 705 3 884365201 +344 431 3 884901469 +892 11 3 886608897 +573 157 4 885844161 +848 1021 5 887043777 +683 270 3 893283049 +896 175 2 887159603 +896 603 4 887158384 +833 7 3 875035953 +605 238 1 879424783 +943 11 4 888639000 +823 13 5 878438642 +872 363 4 888479582 +682 179 4 888517627 +38 637 2 892434452 +899 186 4 884121767 +916 46 4 880844480 +796 755 4 893219033 +936 1258 2 886833281 +650 478 4 891371186 +866 242 3 891221165 +882 243 4 879861325 +795 465 3 883252686 +921 313 5 884673044 +699 370 3 879148129 +458 204 4 886396390 +624 25 4 879792446 +796 1217 3 893194607 +908 133 5 879722603 +665 50 4 884290432 +577 313 4 890089462 +592 382 4 882956761 +853 259 3 879365034 +399 96 3 882342019 +846 554 4 883949728 +536 778 4 882359988 +917 50 3 882910915 +161 70 3 891171064 +715 135 2 875964203 +313 1470 1 891017319 +468 174 5 875294549 +894 713 4 880416177 +889 89 4 880177941 +680 269 4 876815942 +234 527 3 892334189 +731 136 4 886182826 +755 289 1 882569912 +690 1185 1 881177778 +665 473 4 884290882 +734 191 4 891025523 +162 179 3 877636794 +820 288 5 887954934 +886 801 3 876034205 +510 292 4 887667524 +776 564 3 892920446 +919 1136 2 875374269 +667 98 4 891035104 +806 1514 3 882385643 +928 496 5 880936863 +521 754 3 885252562 +655 458 3 887426407 +887 72 4 881381471 +741 204 4 891018266 +668 289 2 881523929 +747 606 5 888638958 +841 307 5 889067152 +727 760 1 883713388 +643 132 5 891448265 +601 436 4 876350230 +784 313 5 891386988 +773 198 4 888538950 +938 313 5 891349471 +731 521 1 886184682 +446 307 3 879786892 +339 396 4 891036316 +629 173 5 880116847 +756 274 3 874829637 +42 655 3 881107642 +275 380 3 876198328 +782 876 2 891498267 +932 614 4 891280138 +749 414 4 878848189 +413 327 3 879968933 +171 270 4 891034835 +564 1025 2 888718443 +536 79 4 882359813 +491 513 5 891189306 +357 121 5 878951576 +541 1047 2 883866173 +655 11 2 887427307 +194 204 4 879522324 +307 161 3 879205470 +901 12 5 877132065 +754 118 2 879451775 +336 1 3 877759342 +748 495 3 879454687 +795 209 5 880587862 +894 690 4 879896200 +489 885 4 891448861 +127 230 5 884364866 +445 257 2 891199945 +929 31 2 880817708 +95 8 5 879198262 +836 611 5 885754096 +505 132 5 889333598 +514 655 4 875462568 +650 218 3 891370065 +654 196 5 887864757 +802 263 1 875985032 +918 640 3 891988163 +851 301 3 890343401 +655 467 3 887523790 +541 140 5 883874682 +870 38 3 879714608 +43 257 4 875975276 +234 106 4 892336322 +763 462 5 878921529 +834 255 3 890862940 +621 7 4 880738353 +922 249 3 891455250 +474 924 4 887915600 +608 204 4 880405527 +622 588 4 882592246 +790 709 3 885156686 +504 187 3 887840559 +368 559 3 889783562 +864 780 2 888892968 +883 1591 3 891695570 +344 1048 3 884899815 +10 414 4 877891966 +880 746 4 892959246 +533 226 4 879191621 +13 903 3 890704759 +500 60 5 883874557 +518 129 5 876823804 +588 206 4 890025023 +328 903 3 893195755 +554 245 3 876231229 +759 937 4 881476756 +472 367 5 892790953 +788 223 4 880868181 +339 218 3 891034810 +643 674 3 891449901 +313 237 2 891016757 +886 388 1 876033850 +862 1117 4 879303668 +210 163 3 887730407 +577 102 4 880475043 +666 1071 3 880567771 +543 160 3 874863803 +870 1112 2 879714902 +929 517 5 879640329 +881 472 4 876537285 +715 227 3 875964272 +907 825 3 880159404 +805 106 5 881695968 +378 96 4 880055740 +910 245 2 881420474 +13 911 2 892015141 +835 543 5 891033232 +488 191 3 891293974 +868 150 5 877103834 +749 1615 4 878847076 +893 1 5 874827725 +814 665 4 885411204 +536 8 5 882359047 +244 58 3 880605438 +269 604 3 891448895 +862 117 5 879302844 +660 183 2 891199499 +77 519 5 884752874 +223 1284 1 891550295 +871 213 3 888193386 +299 515 4 877877691 +868 195 2 877104212 +630 323 4 885666237 +321 704 3 879440423 +896 515 3 887158029 +804 748 4 879440700 +845 268 3 885409374 +720 286 5 891262635 +738 203 3 892958137 +663 1017 2 889492679 +869 284 1 884491966 +727 199 4 883710288 +13 569 2 882396955 +894 344 4 887825614 +120 127 4 889489772 +868 178 5 877103714 +389 1168 3 880088717 +932 497 5 891249933 +550 1 3 883425913 +934 177 3 891192623 +792 1 4 877910822 +562 135 5 879196075 +639 213 5 891239528 +90 511 5 891384476 +464 299 4 878354791 +306 19 5 876503995 +749 223 4 881602704 +843 563 2 879443545 +846 493 5 883947590 +751 302 4 888870893 +600 232 3 888451839 +719 58 3 879360933 +867 289 5 880077950 +448 302 5 891887337 +854 55 4 882814467 +150 150 3 878746824 +923 472 4 880388547 +814 56 3 885410957 +408 327 5 889679982 +932 1184 3 891250169 +435 721 4 884132072 +451 335 4 879012721 +260 334 5 890618729 +503 503 3 880472250 +862 982 4 879303622 +897 172 4 879990466 +312 530 5 891698921 +395 286 4 883762088 +782 1302 3 891500028 +916 824 3 880843838 +894 355 3 889469028 +854 483 4 882813691 +931 237 3 891036552 +82 241 3 878769992 +893 405 5 874828864 +344 762 3 884900391 +458 519 4 886395899 +882 235 3 879863560 +738 423 4 875350223 +629 137 5 880117001 +918 428 5 891988001 +580 147 3 884125658 +655 980 2 888984354 +910 288 3 884229224 +851 291 4 875730244 +363 223 5 891495197 +790 208 3 885156014 +711 1170 3 879993842 +919 270 4 885059422 +774 118 1 888558594 +721 327 2 877136967 +862 179 5 879304410 +90 275 5 891383626 +311 96 5 884365653 +890 427 5 882405586 +533 169 4 879438543 +896 152 3 887160116 +869 50 4 884490892 +807 8 4 892528374 +97 69 5 884239616 +851 685 4 875731022 +942 261 4 891282673 +615 427 5 879448475 +694 1269 5 875726793 +826 449 4 885690819 +919 1047 3 875289697 +758 629 4 881978715 +187 707 5 879465882 +283 1009 3 879297867 +887 832 2 881379059 +618 183 4 891307494 +835 735 5 891033349 +757 222 4 888444400 +537 289 1 886029153 +709 441 4 879848239 +848 633 3 887043040 +903 1008 3 891031505 +885 233 3 885715889 +450 347 4 887047775 +13 288 1 882396790 +624 127 4 879792322 +483 283 5 878952582 +843 95 2 879446716 +907 282 4 880158939 +305 475 4 886324199 +886 71 4 876032274 +899 25 3 884120249 +897 951 3 879991186 +618 159 3 891309670 +299 480 4 878191995 +693 216 4 875484613 +667 238 3 891035140 +201 1426 2 884114015 +608 182 4 880403484 +210 655 5 887730496 +808 313 5 883949986 +409 1541 4 881107992 +825 546 5 880756603 +347 926 1 881654846 +921 282 2 879379714 +824 322 4 877021044 +938 240 2 891356847 +913 265 4 880757553 +708 150 4 892719246 +922 216 3 891448115 +930 121 4 879535392 +377 689 3 891297256 +276 586 3 874977512 +914 387 3 887124121 +881 678 2 876535695 +815 172 5 878694613 +881 178 3 876537512 +511 300 4 890004658 +921 720 4 879381128 +500 532 4 883865952 +495 511 4 888634536 +532 980 4 884594911 +918 204 1 891987317 +664 367 3 876526152 +943 570 1 888640125 +661 175 2 888299899 +790 248 4 884461888 +158 651 5 880134296 +435 527 4 884130995 +833 432 4 875132134 +465 48 3 883530313 +936 818 4 886832903 +868 419 3 877103449 +381 307 2 892697959 +347 418 4 881654134 +417 203 4 879646915 +524 521 4 884636182 +782 252 3 891499469 +758 144 4 881975267 +210 969 4 887730221 +932 967 4 891251331 +11 401 3 891905324 +716 22 5 879795159 +437 13 4 880141129 +319 358 3 889816233 +645 319 3 892051708 +915 1038 2 891030070 +940 289 3 884801144 +541 946 5 883874749 +508 710 4 883777071 +840 272 4 891202756 +760 928 1 875666242 +782 1666 2 891500194 +815 665 2 878698525 +913 237 4 881725960 +886 746 3 876032473 +788 620 3 880871088 +316 162 3 880854472 +508 524 5 883767608 +880 222 4 880166990 +406 629 3 880131977 +286 232 4 877534701 +653 307 4 889151627 +733 220 2 879544411 +896 872 3 887157322 +450 230 4 882371732 +768 471 3 880135875 +561 194 4 885807612 +457 371 4 882398275 +446 879 3 879786691 +846 230 3 883948720 +896 174 5 887161710 +846 716 3 883949508 +943 232 4 888639867 +621 1093 4 880738568 +619 181 4 885953778 +864 1217 3 888889327 +487 380 2 883531466 +505 123 3 889333894 +887 1473 1 881379522 +913 98 4 881725761 +707 1120 4 880060974 +339 639 4 891034115 +416 542 1 886317599 +754 328 3 879450984 +708 713 4 877325316 +577 568 3 880475021 +582 547 4 882961608 +788 164 3 880870115 +702 230 4 885767774 +786 423 5 882843150 +592 116 4 882608182 +700 28 3 884493712 +851 121 4 874728565 +823 1 4 878438206 +904 628 3 879735362 +665 631 2 884294459 +399 419 3 882343327 +713 344 5 888882276 +816 355 2 891711472 +922 56 1 891447628 +619 685 3 885953850 +801 300 5 890332748 +896 182 4 887157924 +804 227 4 879443136 +537 753 2 886030622 +655 1186 3 888984538 +807 684 5 892529851 +532 304 5 893118711 +901 196 4 877288864 +863 682 3 889289491 +890 135 5 882405546 +293 173 5 888905550 +672 109 4 879788774 +889 1006 4 880181563 +933 577 1 874938705 +62 466 3 879374785 +846 426 1 883949046 +788 657 4 880868277 +803 242 5 880054592 +661 181 5 876015607 +863 872 2 889289240 +709 192 4 879846705 +666 175 4 880567612 +875 71 2 876465336 +682 108 3 888521564 +899 265 4 884122087 +788 1518 3 880871394 +453 85 3 877561301 +757 271 3 888443307 +437 1063 5 880141661 +417 343 2 886186253 +896 217 2 887161198 +889 696 3 880177407 +454 632 3 881960145 +722 471 4 891281020 +901 168 4 877131342 +429 257 4 882386121 +834 288 5 890860566 +791 181 5 879448338 +311 496 5 884364593 +619 195 5 885954019 +896 880 4 887235664 +683 472 3 893286550 +798 423 3 875639864 +790 411 3 884462929 +13 158 1 882142057 +177 748 3 880130534 +7 341 3 892333206 +881 483 4 876537418 +786 125 4 882841745 +646 349 2 888529127 +880 140 4 880243001 +84 4 3 883453713 +787 1434 1 888979657 +897 177 5 879990465 +536 228 5 882359863 +942 427 5 891283017 +270 219 5 876956389 +846 415 2 883950605 +901 498 4 877131990 +60 237 4 883327442 +920 347 4 884220131 +102 947 3 888801360 +479 480 5 889125737 +870 447 4 879713953 +699 1187 4 879148051 +781 191 4 879633995 +919 298 3 875288983 +823 111 4 878438206 +334 246 4 891544952 +230 174 5 880484661 +286 41 2 877535323 +682 542 2 888523227 +392 589 4 891038946 +854 358 2 882812001 +618 420 3 891309163 +864 137 4 878179514 +758 152 5 881975853 +291 592 3 874834895 +59 219 5 888206485 +741 427 5 891018221 +567 187 5 882425673 +889 240 3 880177246 +851 1028 3 875730686 +485 301 2 891041551 +892 284 5 886610840 +764 294 3 876233213 +357 1048 2 878951217 +425 190 3 890347085 +756 53 3 874830432 +532 1428 4 874791420 +663 151 3 889492841 +487 248 1 883443504 +759 328 5 881476590 +298 121 4 884126202 +748 180 4 879454958 +850 742 5 883195214 +436 435 4 887769256 +932 229 4 891251063 +405 4 4 885547314 +593 153 5 875671107 +58 121 2 892242300 +798 486 4 875639889 +766 367 2 891309878 +47 303 4 879439112 +621 65 3 885596944 +747 483 5 888639318 +347 282 5 881652590 +805 769 2 881695999 +450 372 4 882396245 +931 678 3 891036247 +774 168 1 888555964 +922 395 4 891452879 +727 260 1 883708265 +654 381 3 887864886 +739 603 4 886959069 +930 148 1 879534886 +894 264 3 879896309 +455 568 4 879112298 +854 823 2 882813316 +409 1070 4 881107410 +897 409 4 879993553 +482 245 4 887643461 +805 225 1 881705892 +737 187 5 884315175 +620 174 5 889988121 +178 194 4 882826306 +894 1315 3 879896985 +618 1039 4 891309887 +308 479 5 887738346 +899 435 3 884122450 +623 286 2 891032107 +541 254 3 884046953 +776 438 2 892920506 +933 523 4 874853957 +935 846 4 884472999 +833 405 3 875038395 +654 1165 1 887864146 +913 234 4 880825443 +647 15 4 876532975 +942 487 4 891282985 +896 97 4 887158265 +416 846 3 878878779 +851 892 2 886534635 +836 134 3 885754096 +840 143 4 891209490 +897 603 5 879991666 +747 625 3 888640648 +533 549 4 879439340 +240 242 5 885775683 +425 217 1 878738914 +312 661 5 891698726 +887 871 5 881378325 +378 183 4 880331829 +916 82 4 880845772 +877 83 3 882677085 +881 129 4 879052141 +807 173 3 892528285 +625 484 4 891262783 +368 7 4 889783365 +839 1085 5 875752877 +894 346 4 884036796 +889 952 3 880178411 +655 461 2 887427130 +863 1237 4 889289618 +886 5 3 876032929 +655 240 3 887650538 +822 272 3 891033683 +222 100 5 877563052 +694 1020 4 875728345 +718 405 5 883349384 +789 1008 4 880332365 +275 473 3 880313679 +711 272 5 884485798 +840 632 3 891204296 +26 271 3 891348070 +102 384 2 892993827 +863 690 4 889289067 +727 233 4 883713473 +145 271 4 885557660 +419 191 4 879435590 +26 291 3 891379753 +669 222 3 892549434 +889 39 2 880181191 +577 1044 4 880475504 +556 323 2 882136058 +637 244 1 882903645 +799 690 3 879253668 +733 1114 3 879535603 +537 547 1 886029771 +788 193 4 880868235 +846 721 4 883948719 +200 380 5 884129381 +174 11 5 886439516 +355 1233 4 879486421 +592 92 5 882956358 +795 568 3 883251659 +907 828 5 880159361 +852 405 3 891037262 +793 456 3 875104752 +647 1014 3 876531583 +327 324 3 887743644 +682 551 2 888522977 +859 955 5 885776352 +464 257 4 878355088 +936 285 4 886832221 +385 215 2 879442559 +897 69 5 879990396 +911 423 4 892840837 +128 633 4 879967729 +748 425 4 879454773 +236 28 4 890116539 +72 654 4 880037461 +538 137 3 877108372 +883 1041 3 891694603 +846 479 4 883947694 +474 186 4 887925977 +642 472 5 885607081 +435 179 5 884131085 +889 212 2 880181225 +647 237 3 876776320 +4 359 5 892002352 +907 125 4 880159259 +760 841 3 875666421 +627 22 5 879530205 +435 298 4 884134500 +597 326 1 875339083 +145 228 4 885557660 +870 1042 2 879902127 +868 219 2 877107817 +279 193 2 875307407 +568 79 4 877907782 +562 385 2 879196483 +864 184 4 888890775 +822 410 1 891039486 +387 29 1 886483252 +782 1016 3 891499321 +929 419 4 880817844 +764 280 4 876244181 +551 128 4 892783829 +758 955 2 881977021 +887 410 4 881378040 +693 229 2 875483435 +119 28 5 874782022 +650 152 3 891382138 +717 126 5 884642580 +887 258 1 881377893 +929 134 4 880817752 +316 462 3 880853516 +639 174 4 891240160 +79 515 5 891271792 +807 121 4 892529278 +481 198 4 885828686 +303 293 4 879544515 +630 153 3 885668277 +356 322 3 891406289 +907 472 5 880159360 +790 235 1 884462551 +889 475 4 880176896 +465 528 3 883530190 +790 417 2 885156538 +535 427 4 879618246 +492 514 3 879969415 +919 937 4 875920627 +653 229 3 880153145 +268 143 2 875310116 +932 709 4 891251395 +709 747 2 879848925 +645 173 4 892053748 +660 474 2 891200037 +661 174 5 876013447 +838 300 2 887060778 +642 427 3 886132043 +592 87 4 882956467 +618 770 2 891309756 +665 69 5 884293475 +500 121 3 883865611 +821 509 5 874793574 +621 879 4 880227012 +886 22 4 876032378 +721 174 5 877139015 +632 99 5 879458941 +222 54 4 878183111 +907 301 4 880158537 +102 447 4 888803002 +764 276 3 876752289 +595 288 3 886920602 +474 197 5 887923788 +806 82 4 882389179 +823 428 5 878438511 +669 329 1 891182771 +870 90 4 875680668 +295 144 4 879518166 +625 210 3 892054095 +909 275 5 891920166 +865 845 1 880144123 +222 188 3 878184393 +537 699 4 886031149 +574 346 4 891278962 +896 798 2 887160983 +711 121 1 876185726 +752 316 3 891208329 +588 1061 5 890024876 +733 290 4 879535752 +840 611 4 891204509 +321 511 4 879440954 +886 96 3 876031392 +488 478 3 891294530 +766 183 4 891309484 +345 385 3 884993418 +532 313 5 884594326 +85 281 3 879452971 +783 872 4 884326545 +690 585 2 881177970 +787 898 3 888979182 +94 673 3 891721615 +788 12 5 880868919 +780 497 2 891364059 +665 274 3 884290408 +568 30 4 877907877 +11 83 5 891904335 +332 1157 4 888360532 +823 217 3 878439655 +806 153 4 882388658 +354 724 2 891307114 +508 204 3 883767510 +653 508 3 886052198 +776 50 5 891628977 +862 1110 5 879305386 +374 153 5 880395487 +911 1203 4 892838357 +790 274 3 884461950 +741 265 5 891455735 +355 689 4 879485423 +99 172 5 885679952 +450 181 4 882372103 +833 302 3 884828670 +710 180 4 882063736 +741 194 4 891457242 +474 611 4 887925395 +637 1033 3 882904233 +883 172 4 891696824 +753 527 4 891401510 +913 465 2 880826366 +715 7 3 875962110 +751 578 4 889298174 +897 588 4 879990877 +938 125 3 891356742 +13 370 1 882396984 +664 655 3 876524097 +889 1170 2 880182127 +741 1152 3 891458597 +844 210 4 877386928 +303 403 5 879468274 +758 751 4 882597651 +569 257 4 879794302 +908 185 4 879722822 +593 732 3 875660850 +95 431 3 879196629 +14 195 5 890881336 +919 50 3 875288570 +751 87 5 889297927 +886 732 3 876032029 +644 330 4 889076173 +885 949 4 885714452 +726 249 1 889832422 +907 86 5 880160162 +543 61 4 875659098 +698 204 2 886366770 +823 239 4 878438959 +90 156 4 891384147 +506 216 4 874873794 +329 1011 3 891655981 +782 1138 2 891499699 +931 476 3 891036974 +560 458 3 879976731 +716 479 4 879796010 +790 122 2 884462954 +939 106 3 880262019 +372 1090 5 876869878 +399 665 3 882345408 +453 215 3 877554419 +804 411 3 879443776 +768 476 4 883834705 +792 9 3 877909631 +487 809 2 884050192 +500 117 4 883865755 +642 628 3 891317897 +854 303 3 882811810 +903 845 1 891031450 +774 411 1 888558853 +942 323 3 891282644 +727 207 5 883710889 +833 573 1 875223976 +724 879 1 883757259 +409 115 2 881108777 +699 309 3 882000505 +551 508 4 892783366 +711 959 5 879995322 +794 248 4 891036463 +781 403 4 879634340 +758 802 3 881978572 +883 9 4 891717495 +682 232 3 888519408 +793 597 3 875104565 +890 183 3 882404917 +840 566 5 891209285 +393 96 4 889555434 +166 688 3 886397855 +917 740 5 882912385 +766 602 4 891310038 +416 265 5 893213796 +548 696 4 891415912 +615 26 4 879448233 +158 978 3 880133937 +751 79 4 889132776 +643 273 3 891445287 +562 174 5 879196105 +92 732 3 875812841 +252 847 4 891456738 +641 1194 3 879370299 +880 1059 4 880166939 +731 170 5 886179040 +567 223 4 882426508 +436 423 4 887769992 +190 100 4 891033653 +721 720 5 877138395 +868 455 5 877103410 +855 531 3 879825614 +897 871 3 879993519 +804 84 3 879445933 +271 215 4 885849300 +934 25 4 891195233 +693 144 4 875483847 +493 358 4 884129979 +880 12 5 880175622 +919 202 3 875373582 +886 150 4 876031656 +735 245 3 876698022 +655 636 3 888475015 +537 175 4 886030966 +710 172 4 882064283 +19 8 5 885412723 +668 882 3 881523929 +551 34 4 892778336 +731 127 4 886179415 +45 278 3 881014550 +905 150 4 884984148 +385 198 3 881128357 +608 517 4 880403856 +806 228 4 882389230 +819 340 5 879952627 +768 248 3 883834705 +609 894 1 886895852 +664 14 4 878090764 +870 443 3 882123736 +374 79 4 880394997 +773 1 3 888539232 +643 72 4 891449301 +916 1113 4 880844897 +686 192 5 879545340 +487 689 1 883441407 +418 300 3 891282656 +472 403 5 875982200 +642 35 2 886570027 +909 531 4 891920166 +833 198 4 875123677 +295 951 5 879517893 +880 92 4 880167778 +606 281 4 880922148 +921 1047 1 879380015 +665 410 3 884291165 +805 269 5 879971251 +854 829 2 882813287 +83 248 3 883868788 +885 356 3 885714317 +49 54 2 888068265 +627 431 4 879531302 +864 238 5 888890432 +442 188 3 883390782 +367 268 4 876689364 +851 916 3 891961195 +796 187 5 892662904 +707 603 3 886286926 +796 821 4 893047126 +115 684 3 881171489 +689 50 5 876676397 +709 117 4 879846623 +847 948 1 878774764 +657 273 3 884239566 +54 634 1 892681013 +269 939 2 891448177 +363 770 4 891497174 +560 301 3 879975116 +119 194 5 874781257 +941 147 4 875049077 +921 72 4 879380806 +795 403 3 883250829 +869 1134 1 884492445 +828 1672 2 891037722 +896 228 5 887158266 +903 91 5 891033005 +653 802 2 880153040 +807 554 4 892684529 +637 181 4 882902540 +786 222 4 882842044 +627 228 4 879531301 +432 15 4 889416456 +239 483 5 889179253 +704 22 2 891397441 +159 299 3 893256013 +627 180 5 879529794 +896 765 4 887160750 +385 55 2 879441728 +938 988 3 891356282 +606 293 5 878143605 +524 559 3 884637067 +640 174 5 876067863 +889 64 5 880178313 +806 2 3 882389862 +708 685 3 877326158 +713 327 2 888882085 +271 203 4 885848448 +903 521 5 891033781 +693 96 4 875483881 +890 101 2 882915661 +695 682 1 888805952 +235 524 5 889655204 +438 284 2 879868308 +844 511 3 877387825 +654 408 5 887863381 +667 79 3 891034930 +346 79 5 874948105 +336 257 4 877759730 +610 187 4 888703213 +573 216 4 885844674 +647 203 3 876776321 +757 176 5 888445730 +713 286 3 888881939 +642 441 1 886569942 +862 105 3 879303346 +487 231 1 884050940 +932 525 5 891250418 +918 419 3 891987622 +542 202 3 886532314 +870 69 4 875050603 +499 208 4 885599718 +854 134 4 882813825 +802 567 4 875985976 +524 476 3 884628212 +14 430 5 879119692 +405 1019 1 885549465 +896 161 3 887159302 +130 1142 4 874953595 +13 310 4 881514683 +727 1437 2 883713082 +644 298 4 889077513 +857 687 1 883432470 +826 576 4 885690900 +836 657 5 885754096 +894 129 4 880416253 +95 234 2 879197886 +503 13 3 879438377 +905 7 4 884984329 +935 127 4 884472086 +790 209 1 885155540 +752 904 4 891207845 +843 28 3 879446977 +838 100 4 887063994 +530 255 4 886198864 +934 197 5 891192041 +790 186 3 885156165 +316 716 5 880853881 +850 480 5 883194810 +942 615 3 891283017 +918 923 4 891987317 +49 820 1 888067164 +805 105 2 881705238 +504 176 3 887837739 +940 96 5 885921265 +924 1036 2 886759690 +892 472 3 886610523 +773 221 2 888540448 +875 692 2 876465230 +642 217 2 886569659 +932 1397 4 891250793 +13 172 5 882140355 +523 407 4 883702800 +37 210 4 880915810 +130 373 4 878537681 +570 879 2 881262795 +774 1017 3 888558829 +856 750 5 891489250 +677 1049 3 889399139 +159 130 1 880557322 +798 289 3 875286981 +843 135 5 879449177 +11 28 5 891904241 +924 300 2 884337243 +931 1152 4 891037177 +555 318 4 879975419 +693 298 3 885703740 +756 71 3 874828391 +624 928 3 879793511 +758 748 1 880672522 +828 382 3 891037639 +863 313 5 889288910 +832 873 2 888259984 +928 333 3 880937258 +308 654 5 887736881 +850 494 3 883195168 +892 5 4 886611354 +586 569 3 884060807 +851 352 1 890343544 +923 148 4 880387474 +897 455 3 879993772 +92 111 3 875641135 +697 820 3 882622373 +839 532 3 875752560 +822 432 3 891037394 +346 164 3 874948824 +881 443 5 876539448 +639 451 4 891239529 +846 168 5 883947737 +911 238 2 892839970 +738 434 4 875351872 +889 455 4 880177647 +566 523 4 881649622 +916 53 4 880844834 +629 416 4 880117813 +929 515 5 878402162 +886 1074 2 876033645 +650 550 3 891381661 +716 1020 5 879795314 +537 1400 2 886031678 +495 225 4 888635524 +454 972 2 888267128 +823 762 4 878439557 +13 722 3 882399528 +695 895 1 888805864 +447 15 1 878854481 +579 435 5 880952038 +913 789 4 880946415 +699 1033 4 884152917 +682 2 3 888522541 +592 69 5 882956201 +856 310 3 891489217 +648 295 4 882211464 +299 481 3 877880566 +541 79 5 883871524 +804 206 3 879445440 +825 984 5 884642187 +877 538 4 882676533 +700 222 3 884493899 +655 1022 3 887424948 +606 568 4 880923988 +452 83 3 885490812 +610 750 4 888702841 +532 1312 4 888631036 +873 294 4 891392303 +821 79 5 874793517 +664 1109 4 876526555 +407 95 3 875045190 +790 931 2 884462105 +712 210 5 874730293 +894 147 3 880993709 +859 368 3 885775880 +478 202 4 889396256 +757 91 4 888467309 +500 727 2 883875041 +749 210 4 878848587 +831 270 4 891354000 +332 471 4 887938351 +864 44 4 888890144 +733 534 3 879544377 +747 418 5 888639102 +901 71 4 877131654 +678 15 3 879544449 +912 154 4 875966027 +805 742 3 881695872 +796 659 3 892662482 +276 472 3 874787109 +464 255 4 878355061 +894 326 3 879896168 +668 269 5 881523612 +940 194 5 885921953 +904 66 4 879735641 +889 403 3 880179868 +406 521 3 882480511 +908 181 3 879722754 +932 179 5 891249239 +529 327 4 882535353 +890 85 1 882917090 +370 427 5 879435146 +918 137 5 891987879 +933 470 4 874854611 +522 200 4 876961314 +697 270 5 882622481 +860 245 3 880829225 +623 525 4 891034294 +883 270 4 891691436 +320 625 4 884751439 +444 286 2 890246847 +655 459 2 891408204 +90 268 4 891382392 +897 222 4 879993042 +835 23 4 891035310 +285 319 3 890595523 +639 311 3 891238599 +504 174 4 887909455 +823 150 4 878438058 +314 787 2 877889927 +886 186 4 876033460 +703 764 2 875242885 +765 14 5 880346204 +7 365 4 891353744 +854 616 4 882813877 +846 786 4 883949771 +560 928 3 879977062 +181 1382 1 878962168 +633 921 3 875324812 +130 552 5 876252225 +621 1228 3 880740296 +843 77 2 879443975 +916 506 3 880844728 +916 1206 2 880845543 +42 969 5 881107687 +826 373 3 885690900 +690 780 4 881177910 +627 7 5 879531158 +894 283 3 880993490 +174 384 1 886515121 +638 168 4 876695714 +933 63 2 874938563 +913 179 3 881368269 +881 15 3 876536241 +49 4 2 888069512 +894 336 3 879982820 +541 378 5 883864908 +807 511 5 892705391 +392 510 4 891038979 +660 318 3 891199133 +901 228 5 877131045 +766 72 2 891310704 +429 200 3 882386333 +112 333 4 884992566 +62 511 4 879373586 +778 451 1 891234405 +741 790 3 891457456 +919 204 4 875921396 +928 1007 5 880937163 +523 874 4 883699869 +844 56 4 877386897 +927 380 5 879196283 +828 198 4 891036492 +796 155 5 893047241 +181 333 3 878961227 +796 275 4 892660211 +374 273 2 880392747 +584 227 4 885774172 +216 416 3 880245165 +702 879 1 885767604 +897 451 4 879991607 +707 1401 3 886286663 +522 135 5 876960824 +766 182 4 891309053 +116 1256 1 876453222 +422 248 3 875130100 +797 988 1 879439230 +875 1422 3 876465274 +430 121 2 877225832 +505 69 3 889333974 +571 1039 3 883354760 +937 285 4 876769436 +868 449 3 877113540 +380 498 4 885478738 +686 197 5 879545814 +491 116 5 891185209 +137 685 5 881433296 +896 431 3 887159262 +798 1023 3 875295772 +497 83 2 878759898 +644 457 4 889076502 +930 8 3 879535713 +488 418 3 891294530 +385 954 4 879446235 +896 1284 2 887160958 +495 521 5 888632219 +632 720 3 879459025 +94 94 2 891723883 +727 62 3 883712603 +87 433 3 879876702 +110 722 3 886989028 +773 655 3 888539347 +601 118 1 876347320 +38 406 2 892434251 +436 81 3 887770244 +899 496 5 884121379 +621 95 4 880739654 +574 100 5 891279712 +935 717 4 884472872 +642 931 4 885606857 +389 134 5 879991045 +385 205 2 879443253 +704 318 5 891397491 +943 1067 2 875501756 +666 118 3 880313903 +639 655 3 891239406 +498 109 3 881955189 +588 8 5 890023557 +536 10 4 882318772 +256 64 5 882164231 +875 504 5 876465275 +868 240 5 877107373 +774 449 1 888557482 +920 331 3 884220094 +690 4 3 881177459 +690 451 4 881177910 +883 147 2 891717419 +715 433 2 875963082 +867 511 5 880078371 +832 258 3 888258960 +7 179 5 891352303 +776 184 4 892920381 +711 197 4 879993110 +538 188 4 877108195 +924 526 3 886327826 +632 227 3 879459025 +934 297 5 891189969 +916 17 4 880845135 +764 1028 4 876244181 +764 220 3 876243925 +773 1018 3 888539095 +763 1065 5 878915559 +763 174 4 878919019 +790 217 4 885158459 +374 4 2 880395924 +145 1041 5 875272987 +472 366 4 892790952 +846 191 5 883948048 +286 401 1 877535446 +864 1047 3 888888680 +309 879 4 877370319 +730 7 4 880310352 +545 450 2 883115718 +860 1602 3 893009852 +125 1271 2 892839021 +724 327 4 883757670 +551 824 1 892784629 +158 302 4 880132193 +831 117 3 891354970 +734 213 5 891022684 +880 1423 3 880175577 +665 240 5 884291271 +908 322 2 879722169 +817 245 2 874815789 +567 50 1 882426246 +472 230 5 875981876 +894 479 5 879897198 +102 11 3 888801232 +908 69 3 879722513 +451 334 3 879012648 +747 98 5 888639480 +790 117 5 884461283 +329 186 3 891656268 +44 157 4 878347711 +514 208 4 875463494 +669 915 3 892549178 +878 531 2 880866564 +830 226 5 891561806 +846 609 5 883949199 +774 175 3 888555897 +823 175 4 878438457 +868 436 3 877104913 +881 477 4 876536107 +393 141 2 889729537 +804 260 2 879440787 +13 275 3 886303585 +688 349 5 884153712 +897 484 3 879991341 +854 1061 1 882813421 +456 258 4 887165802 +936 340 4 886831535 +759 275 4 875227858 +795 1101 4 881528779 +905 321 4 884983463 +942 584 4 891283239 +670 417 4 877975129 +109 63 3 880582679 +841 300 4 889066780 +230 56 3 880484416 +943 808 4 888639868 +753 242 4 891399477 +904 778 3 879735678 +857 259 4 883432397 +539 496 3 879787985 +479 193 3 879460939 +796 949 4 893047460 +867 216 3 880079043 +921 471 2 879379821 +889 94 4 880181646 +896 216 5 887159658 +796 396 2 893218621 +861 382 5 881274780 +681 328 3 885409810 +841 358 1 889067348 +758 890 3 880672552 +883 250 3 892439468 +721 243 3 877137527 +829 100 4 881086893 +665 687 2 884290143 +280 173 3 891700453 +593 1221 3 875671982 +592 1356 4 882608915 +932 570 4 891251178 +724 347 4 883757670 +832 323 3 888259984 +734 275 4 891023019 +472 1079 4 883904360 +722 508 4 891281020 +94 403 3 891723188 +819 182 4 884105025 +798 225 4 875637487 +883 589 5 891754985 +498 663 4 881956363 +495 183 5 888633277 +79 276 3 891271957 +717 831 3 884642958 +532 367 5 893119439 +774 122 1 888558924 +870 550 3 879714310 +228 812 5 889388547 +262 58 3 879792452 +790 1039 3 885155490 +838 405 4 887064589 +680 318 5 876816106 +845 1399 3 885409493 +942 347 5 891282396 +835 357 5 891033232 +671 88 4 884036846 +529 264 2 882535820 +280 673 4 891701223 +787 1024 2 888979606 +902 134 3 879465523 +865 24 4 880143612 +640 1067 4 876068799 +654 1283 1 887863779 +940 172 4 885921451 +918 289 2 891988559 +653 719 3 880153841 +561 1039 3 885807612 +835 612 4 891033927 +916 655 3 880844350 +727 70 5 883710856 +588 561 3 890027780 +790 15 5 884461413 +865 101 1 880235099 +907 147 5 885862325 +764 227 4 876246358 +882 932 4 879863969 +89 301 5 879461219 +648 291 3 882211736 +919 57 5 875373621 +409 1512 5 881106947 +538 199 5 877364067 +334 137 2 891544953 +397 182 5 885349759 +254 496 4 886471982 +699 275 3 879148201 +585 170 5 891282573 +666 46 4 880139348 +891 531 4 883430128 +356 294 1 891406076 +883 79 4 891696864 +747 179 5 888639780 +590 546 1 879439538 +804 237 4 879443709 +788 64 5 880868005 +80 79 4 887401407 +727 1222 1 883713574 +774 367 2 888556047 +782 1013 3 891499439 +298 427 5 884127369 +716 497 3 879795949 +727 1249 3 883711991 +506 525 4 874876486 +881 755 4 876538922 +707 736 4 886286311 +882 496 5 879866320 +653 1016 3 890181186 +566 69 4 881650108 +872 310 4 888478698 +512 50 5 888579997 +921 288 3 879379265 +648 758 2 884795447 +736 293 4 878709365 +864 250 3 891044057 +505 98 4 889333792 +922 227 4 891447777 +561 772 4 885808715 +450 627 3 882396489 +859 928 3 885775473 +733 107 4 879536001 +738 1047 3 875351872 +588 385 3 890023557 +435 91 4 884131597 +434 974 5 886724940 +406 433 3 880131791 +5 239 4 875636655 +758 184 5 881974823 +872 118 4 888479560 +796 1407 3 893049362 +595 826 1 886921819 +841 271 4 889067216 +754 117 4 879451626 +308 1140 4 887740933 +627 550 1 879531352 +875 181 4 876465335 +727 358 2 883708462 +727 567 2 883713388 +592 55 4 882956067 +922 588 4 891448580 +487 399 5 884046800 +805 1017 3 881704337 +892 12 5 886608022 +880 346 5 892958128 +102 234 3 888802940 +869 756 1 884492780 +897 195 5 879991137 +752 539 4 891208357 +851 331 3 877830970 +830 627 3 891561541 +896 1 4 887158579 +896 479 3 887158713 +910 293 4 880822060 +823 419 4 878438780 +606 249 3 880922503 +828 1622 1 891038060 +800 276 3 887646245 +648 1030 2 884882552 +903 317 4 891033808 +298 546 3 884184098 +851 1277 2 875730418 +862 141 4 879305237 +860 716 2 887754411 +834 127 5 890862412 +566 121 3 881650755 +428 894 4 885943955 +625 216 4 891262899 +794 150 4 891034956 +861 83 5 881274672 +522 530 4 876961314 +647 357 5 876534131 +405 205 3 885546025 +846 499 4 883948840 +514 1074 4 876067623 +116 300 3 876452094 +894 558 5 882404250 +815 433 3 878695199 +734 742 4 891025958 +694 526 5 875729431 +422 185 4 879744015 +898 300 2 888294375 +526 294 3 885681982 +488 15 4 891294568 +927 15 5 879177509 +488 197 2 891294473 +751 1140 2 889299503 +133 306 4 890588612 +910 23 4 881421332 +409 1020 5 881107410 +817 24 4 874815947 +864 1 5 877214125 +64 480 3 879365619 +889 153 5 880181317 +621 625 4 874965299 +10 518 4 877886722 +711 134 5 876278804 +694 582 4 875728801 +896 134 5 887159109 +119 298 4 874775038 +505 227 2 889334334 +76 1154 5 878100710 +878 8 3 880866288 +888 269 5 879364981 +790 742 4 884461541 +763 518 4 878919180 +293 11 3 888905898 +641 338 3 879369958 +318 531 4 884495921 +918 211 2 891987752 +112 328 4 884992566 +339 506 4 891033766 +686 435 5 879545758 +660 568 3 891199182 +109 1245 2 880571872 +934 151 3 891189401 +669 355 2 891182792 +727 80 4 883713454 +627 195 4 879531301 +456 382 1 881374710 +934 202 5 891193132 +846 530 5 883948606 +790 65 4 885155846 +881 449 3 876539549 +854 135 4 882813933 +389 67 2 880614340 +324 285 4 880575412 +690 1090 3 881180138 +521 568 3 884478101 +117 132 4 881012110 +184 1121 4 889910545 +749 80 1 878850533 +85 270 3 890255063 +639 519 4 891239380 +635 879 3 878878866 +453 99 3 888205588 +649 24 4 891440460 +854 244 3 882812826 +756 181 4 874831383 +919 1315 2 875289611 +387 516 3 886482928 +633 328 4 875324298 +870 219 2 879714351 +729 322 4 893286637 +851 1047 3 874789005 +699 523 2 878883038 +435 203 4 884131434 +378 47 4 880055984 +283 100 4 879297160 +234 694 3 892079040 +472 222 5 876882530 +893 471 4 874828897 +536 94 4 882363972 +587 888 3 892871563 +524 661 3 884637467 +541 63 3 883866049 +932 379 2 891251798 +889 70 3 880180979 +781 187 5 879633976 +868 156 3 877103834 +747 31 4 888639222 +305 86 4 886323757 +633 958 3 877210979 +638 96 4 876694917 +907 740 5 880158960 +49 62 2 888069660 +796 89 5 892662222 +64 655 4 889739243 +840 606 4 891205004 +774 228 4 888557237 +919 168 1 875373074 +918 275 4 891987176 +711 660 5 879994825 +929 188 4 880817728 +758 353 4 886743253 +745 510 3 880123720 +183 274 5 892323452 +890 271 3 882404055 +660 328 3 891197585 +38 940 1 892434742 +921 181 5 879379562 +894 319 4 879896756 +763 39 4 878918360 +898 324 4 888294621 +564 245 4 888718546 +707 88 3 886287331 +916 39 4 880845011 +474 318 5 887923708 +655 1516 3 887474630 +922 63 3 891449363 +325 469 4 891478504 +777 42 5 875980670 +535 389 4 879619177 +293 513 5 888905990 +939 258 4 880260692 +846 565 2 883950712 +579 520 4 880951708 +894 1313 3 889229605 +907 181 4 880158692 +896 504 3 887159926 +711 86 5 886030557 +878 1065 1 880871600 +907 287 4 880158913 +151 385 3 879542775 +923 456 4 880388562 +365 237 3 891304278 +472 125 5 875979041 +711 202 4 879993194 +64 258 3 879365313 +773 427 3 888540484 +655 428 3 887428157 +478 68 1 889396582 +314 808 4 877892052 +851 696 3 874728338 +64 28 4 889737851 +476 746 3 883364295 +542 420 3 886533587 +709 53 3 879848272 +82 170 4 878769703 +854 93 5 882814571 +637 847 3 882903191 +864 218 4 888890316 +804 211 4 879444805 +435 919 5 884132184 +864 47 5 888887502 +452 514 3 875261350 +804 768 3 879445493 +825 116 3 880755693 +921 87 2 884673673 +592 71 4 882956668 +921 728 3 879381299 +521 520 3 884477585 +892 481 5 886610011 +798 485 5 875639784 +682 627 4 888523171 +644 117 4 889077418 +896 708 2 887159926 +165 156 3 879525894 +890 479 5 882402238 +890 515 5 882402518 +766 705 4 891309668 +624 319 3 891961140 +831 315 3 891353915 +708 125 4 877325601 +889 1011 3 880177287 +506 945 4 874874585 +711 301 4 889910848 +655 236 3 887426407 +13 777 1 882397084 +519 333 3 883248089 +880 22 4 880167695 +829 198 4 884736647 +825 925 4 880756904 +64 718 4 889739243 +889 67 2 880182541 +716 203 4 879796311 +737 58 4 884314970 +883 707 3 891693139 +851 271 5 883148692 +877 170 5 882677012 +715 1 5 875961843 +911 383 3 892841094 +798 756 3 875296109 +514 79 4 875462520 +63 276 4 875747265 +871 197 3 888193385 +758 436 3 881978572 +796 258 4 892611840 +474 294 3 887916330 +76 955 4 882606789 +303 405 4 879483802 +904 421 5 879735772 +747 530 5 888734041 +532 277 5 893119439 +523 451 5 883702441 +535 100 5 879617531 +807 1089 4 893084724 +721 8 4 877154765 +682 163 3 888521833 +291 575 2 875086699 +498 480 5 881960523 +782 354 2 891497698 +639 48 4 891239295 +721 518 2 877140221 +493 806 3 884131143 +201 640 4 884112029 +939 1054 4 880261868 +210 79 4 887736352 +435 127 4 884131681 +658 195 3 875148059 +934 195 4 891191600 +881 228 3 876537995 +721 735 4 877141039 +421 331 2 892241236 +863 879 2 889289123 +940 181 3 885921310 +642 622 4 886568941 +489 269 3 891362740 +110 939 4 886988042 +823 125 4 878438585 +913 144 5 880946236 +724 308 1 883757170 +851 144 5 875806849 +423 620 4 891395711 +864 182 3 888886913 +804 39 2 879447475 +880 826 3 880167551 +131 287 4 883681351 +661 135 5 876013398 +622 213 5 882670009 +782 1662 4 891500110 +476 732 3 883364250 +782 1296 3 891498030 +788 7 4 880868559 +645 558 4 892053429 +918 582 4 891987723 +85 519 4 879829265 +795 710 3 881265617 +936 106 3 886833148 +7 629 3 891352526 +534 93 1 877807692 +877 269 4 882676098 +796 628 4 893194740 +406 208 2 880131582 +934 411 3 891190377 +290 181 5 880473696 +627 792 4 879530501 +796 588 5 893218728 +846 110 3 883950568 +650 118 4 891381546 +405 646 2 885546202 +861 584 5 881274815 +801 333 5 890332885 +916 65 3 880845327 +889 497 4 880179893 +624 898 1 891961380 +425 1110 1 878738486 +635 15 3 878879346 +633 98 4 875324715 +796 97 3 892690059 +684 1028 4 875810966 +109 826 3 880572064 +864 588 3 888887289 +682 475 3 888521465 +533 443 3 879191595 +454 313 5 888000454 +90 481 5 891384516 +399 39 2 882344310 +886 941 2 876032072 +856 315 5 891489250 +889 127 4 880176845 +788 282 4 880869819 +919 1137 4 875289170 +17 221 2 885272654 +659 693 4 891331417 +844 251 4 877381484 +792 1047 3 877909798 +914 371 4 887122029 +288 327 1 886373007 +916 708 4 880845673 +910 117 4 880822012 +896 187 5 887157924 +561 96 1 885809336 +48 323 3 879434181 +471 420 1 889828027 +921 692 4 884673724 +780 660 3 891363969 +870 649 4 889717102 +293 1228 1 888908041 +698 173 5 886366652 +918 645 4 891988090 +682 109 3 888521539 +308 501 4 887740099 +648 665 2 884882987 +606 209 4 880926018 +650 482 3 891385775 +878 50 4 880865562 +837 762 2 875722318 +735 242 5 876697561 +632 195 5 879459738 +476 393 4 883365135 +682 451 3 888521637 +840 443 5 891209490 +931 303 4 891035917 +295 1297 4 879519529 +817 928 3 874815835 +541 622 3 883874804 +756 860 1 874830068 +844 300 3 877381268 +883 566 3 891696999 +198 201 3 884207897 +943 356 4 888639598 +883 455 4 891916411 +796 272 4 892610692 +311 69 5 884364999 +738 429 3 875353813 +782 244 4 891499321 +885 208 3 885713406 +896 12 3 887158604 +798 98 1 875639581 +699 243 2 879147597 +593 237 4 877728878 +291 844 5 874805804 +385 874 3 879438975 +119 473 3 874775647 +417 780 4 880952880 +529 309 3 882535353 +197 568 4 891410038 +834 50 5 890862362 +749 685 4 878848137 +710 234 4 882064321 +719 69 5 879360536 +790 364 2 885158161 +559 174 4 891035111 +568 483 5 877907281 +207 211 5 878191679 +919 327 4 875288304 +848 135 4 887038022 +305 428 3 886323902 +897 66 3 879990973 +496 652 5 876065693 +15 121 3 879456168 +254 269 2 887346935 +896 1406 3 887160676 +447 737 4 878855907 +902 993 3 879465180 +796 709 3 892676155 +486 301 4 879874113 +736 993 4 878709365 +562 229 1 879195848 +366 288 4 888857598 +283 211 4 879298271 +807 29 4 892530626 +774 428 1 888556090 +896 233 2 887160631 +328 23 3 886036795 +903 977 1 891031810 +843 141 4 879447327 +918 433 2 891987082 +682 824 1 888521907 +773 567 2 888540352 +474 468 4 887926999 +498 496 3 881957905 +629 210 5 880117689 +755 872 1 882569844 +725 321 2 876103700 +271 148 3 886106165 +648 229 4 884882802 +867 50 5 880078027 +870 10 4 879376967 +886 240 3 876031720 +683 609 3 893286502 +640 827 3 886474833 +496 174 4 876066507 +299 118 2 877880111 +886 80 3 876034228 +637 245 3 882900047 +830 15 4 891561065 +848 747 5 887043777 +720 313 3 891262608 +532 588 5 893119415 +229 303 1 891632073 +886 187 4 876031309 +417 506 4 879647471 +405 436 1 885548384 +693 12 4 875482056 +864 210 4 888887469 +798 1540 4 875743576 +59 42 5 888204841 +70 655 4 884150153 +184 29 3 889910326 +586 195 4 884058956 +318 482 5 884496156 +151 686 3 879525035 +806 496 5 882387798 +804 514 4 879443032 +49 717 2 888068651 +828 955 3 891379818 +831 288 1 891354043 +394 141 3 880888815 +766 604 4 891309329 +321 173 4 879440636 +643 29 2 891449901 +787 904 3 888979182 +742 7 3 881335492 +932 177 4 891250609 +543 466 4 874864094 +747 390 4 888640862 +868 621 2 877103449 +782 1528 2 891499577 +889 820 2 880182103 +68 127 4 876973969 +782 1300 2 891499469 +842 344 1 891217835 +174 215 5 886514220 +864 710 2 888888115 +5 425 2 875637440 +562 591 4 879196176 +913 82 3 881368310 +874 276 4 888632484 +714 250 5 892777876 +708 300 4 892718939 +932 617 4 891251588 +906 696 4 879435758 +778 42 5 890670510 +798 768 4 876175980 +682 849 2 888522699 +151 805 4 879542567 +868 229 3 877111154 +823 566 4 878439605 +145 240 5 875270764 +727 148 2 883709438 +919 1152 4 875288612 +548 978 2 891416122 +268 117 4 875742613 +733 740 3 879535886 +185 47 4 883524249 +638 222 4 876694787 +712 69 3 874730085 +486 1226 4 879874902 +864 31 4 888888202 +510 299 3 887667681 +666 147 3 880313661 +916 14 5 880843378 +263 135 5 891299877 +222 588 4 881059537 +916 179 3 880844420 +806 176 5 882387798 +899 428 4 884122254 +457 121 4 882393066 +913 127 4 882044440 +846 612 5 883949421 +181 713 2 878962774 +882 427 5 879877026 +405 36 2 885546859 +391 176 3 877398856 +789 508 4 880332169 +682 186 4 888521413 +643 631 3 891447930 +312 813 5 891698516 +655 1160 3 888685850 +715 42 5 875963112 +693 234 2 875483330 +618 64 4 891306990 +889 194 5 880178248 +653 428 1 880151580 +255 328 2 883215630 +634 678 2 877017632 +271 649 3 885849510 +889 172 4 880177941 +582 405 3 882962133 +827 750 3 892157198 +414 288 5 884999066 +721 299 3 877137447 +836 170 5 885754200 +864 496 5 888887944 +786 133 5 882843353 +354 896 4 891180527 +804 23 4 879442557 +541 427 4 883864638 +243 699 4 879988397 +130 350 4 886023989 +894 1226 4 879896920 +802 330 2 875985031 +535 640 3 879618742 +686 214 5 879546651 +911 659 3 892838677 +435 210 4 884131799 +637 283 2 882903822 +891 1197 5 891638734 +709 172 5 879848397 +42 132 5 881107502 +933 231 1 874939031 +684 173 3 878761120 +864 144 5 888887830 +708 149 3 892719246 +847 444 3 878940782 +708 476 3 892719385 +259 172 4 883371882 +664 483 4 878091463 +324 763 5 880575589 +854 257 3 882812877 +911 143 5 892840889 +751 239 4 889134237 +795 118 2 883254314 +399 225 3 882345212 +823 77 4 878438958 +913 1 2 880758579 +796 50 5 892660147 +880 90 3 880174858 +897 228 4 879991607 +577 62 3 880475504 +868 470 1 877107924 +457 222 5 882392853 +548 17 3 891044596 +474 111 4 887916203 +850 181 5 883195419 +727 87 4 883710347 +865 919 5 880143713 +592 302 5 882607325 +654 8 5 887864497 +933 433 1 874854251 +807 435 3 892528690 +350 181 4 882346720 +72 642 4 880037479 +715 248 4 875962280 +837 286 4 875721473 +699 1093 3 880696051 +896 232 3 887160427 +345 470 4 884992084 +876 19 5 879428354 +244 171 5 880606385 +883 656 5 891695666 +840 88 4 891209241 +826 127 5 885690482 +569 298 3 879793784 +752 259 5 891208451 +804 566 4 879444820 +648 454 3 884368232 +179 916 5 892151064 +787 326 4 888979547 +726 248 2 889832422 +344 529 5 884814668 +222 542 2 878183837 +788 646 3 880868513 +426 663 4 879444604 +551 111 5 892783612 +898 683 3 888294775 +880 173 3 880174780 +451 326 4 879012431 +749 1028 4 878849149 +669 664 4 892550104 +608 327 2 880402450 +669 96 2 891260392 +703 181 5 875242762 +565 707 5 891037453 +804 510 5 879441346 +940 8 5 885921577 +900 429 2 877833747 +878 274 3 880869003 +567 514 5 882425701 +645 89 4 892053483 +901 546 4 877127250 +805 383 2 881706146 +847 7 3 878775647 +190 7 4 891033653 +924 283 4 884371495 +77 527 4 884752853 +868 136 5 877104414 +880 810 3 880168411 +881 11 4 876537752 +577 240 3 880470884 +881 174 5 876537718 +903 223 5 891033354 +903 56 5 891466376 +586 96 4 884059110 +506 71 5 874873068 +799 319 4 879253668 +545 266 2 879898447 +757 471 4 888444738 +30 751 3 884310551 +864 94 4 888891423 +773 145 3 888540390 +804 89 4 879441524 +846 449 3 883950950 +645 32 5 892054906 +400 748 2 885676411 +914 155 5 887124121 +184 504 4 889908630 +35 264 2 875459099 +742 475 4 881335492 +119 475 4 874775580 +901 144 5 877288015 +621 780 4 874962824 +697 591 4 882622016 +527 640 4 879456464 +566 210 4 881650030 +585 86 5 891284016 +940 153 2 885921953 +347 106 2 881652813 +655 1141 3 888474986 +881 134 5 876539260 +892 648 4 886607642 +495 432 5 888633396 +645 514 5 892053686 +455 435 4 879110544 +788 630 2 880869355 +905 717 1 884984149 +749 932 3 878850333 +621 173 4 874965407 +588 842 3 890015542 +667 23 3 891035084 +618 432 5 891308979 +871 511 2 888193177 +90 220 4 891385165 +708 347 3 892718637 +286 929 4 876522098 +587 876 2 892871536 +484 88 4 891195179 +932 652 3 891248893 +485 286 2 891040897 +655 1635 3 887432079 +681 310 3 885409572 +661 192 4 888299461 +846 1029 1 883950859 +645 469 5 892054707 +295 511 5 879516961 +907 821 5 880160008 +798 705 4 875638447 +720 898 4 891262812 +932 566 4 891251463 +115 772 4 881171273 +648 250 4 882211464 +643 659 5 891447127 +627 523 4 879529767 +910 282 3 880821319 +782 1160 2 891500150 +886 222 4 876032615 +629 223 5 880117813 +18 137 5 880132437 +716 723 4 879796072 +896 429 5 887158866 +721 199 4 877147323 +652 257 2 882567356 +628 1296 5 880777096 +933 182 4 874854853 +798 1411 1 875639656 +511 260 4 890004916 +484 231 2 891195476 +905 326 3 884983034 +934 183 2 891190903 +503 58 4 880472565 +592 325 2 882607647 +618 1225 2 891309382 +493 134 3 884132246 +655 578 2 887488694 +13 326 3 882140792 +773 13 4 888539471 +69 334 3 882125962 +774 501 1 888558019 +641 1039 4 879370337 +725 286 5 876106729 +655 178 4 887427009 +897 200 5 879991434 +934 269 2 891188367 +374 526 4 880938965 +930 651 3 879535574 +851 182 5 875731406 +741 134 5 891455381 +566 11 3 881649962 +346 182 5 874948031 +885 419 4 885716328 +385 2 3 879446786 +200 172 5 884128554 +831 687 2 891354424 +566 631 4 881650605 +354 655 3 891217575 +505 419 3 889333560 +655 1014 3 890103072 +548 55 5 891044482 +883 462 5 891693085 +864 91 5 888887172 +489 245 3 891366838 +868 412 5 877112001 +431 294 5 877844377 +268 24 2 876514002 +823 401 4 878439365 +756 258 3 874826502 +796 722 3 893047460 +643 240 5 891445823 +635 328 3 878878752 +647 173 5 876534131 +923 762 4 880387525 +391 1163 2 877399864 +933 399 3 874939157 +896 196 3 887159173 +420 1347 3 891356927 +758 301 3 880672427 +749 642 2 878848137 +645 709 3 892054570 +786 102 4 882844096 +104 340 3 888441878 +756 742 3 874830026 +505 259 3 888631208 +345 91 4 884993016 +417 4 3 879648360 +709 808 4 879848645 +942 539 3 891282673 +749 229 3 878849482 +824 289 2 877021044 +730 273 2 880310324 +804 755 3 879445305 +663 693 4 889493732 +648 726 3 884882271 +892 203 5 886609390 +766 8 5 891309329 +653 186 5 880151557 +460 100 5 882912418 +579 69 2 880951868 +882 929 1 879863176 +539 319 5 879787770 +667 269 5 891034444 +622 125 3 882590457 +9 50 5 886960055 +694 52 4 875729667 +405 65 1 885546379 +903 467 3 891033606 +610 352 1 888702795 +913 430 2 882544617 +716 659 4 879794962 +654 154 3 887864797 +631 1527 2 888465351 +931 245 4 891037024 +693 159 4 875483521 +856 749 3 891489450 +707 1163 4 880060724 +773 183 4 888539962 +787 302 3 888979123 +674 1197 3 887763386 +748 181 4 879454455 +59 30 5 888205787 +802 260 4 875984938 +667 962 2 891035164 +846 1188 2 883950524 +643 121 4 891445741 +394 651 4 880888223 +216 546 2 880233197 +913 117 1 882544673 +894 691 3 889468982 +56 167 3 892911494 +727 249 2 883708927 +918 1101 4 891987824 +294 840 3 889242516 +393 451 3 887746995 +663 124 3 889492390 +721 145 4 877139773 +788 55 4 880868876 +868 50 5 877103449 +435 1014 2 884134515 +577 470 5 880475245 +896 942 4 887160209 +670 199 4 877974549 +527 187 5 879455999 +884 736 3 876859329 +659 494 4 891383965 +655 1499 3 888685556 +899 463 4 884121342 +514 419 4 875463468 +551 386 1 892785364 +784 272 4 891387077 +890 435 5 882574437 +787 1433 3 888979181 +524 170 4 884634785 +854 293 5 882812102 +493 204 5 884130852 +394 204 5 880888223 +307 433 5 879283625 +643 385 3 891449344 +840 631 4 891205004 +11 729 4 891904637 +655 1070 4 887474050 +796 510 3 892761578 +425 898 3 890346705 +880 195 4 880167670 +456 405 1 881371942 +782 935 2 891500150 +480 50 4 891207951 +806 461 4 882388706 +392 513 5 891039049 +749 100 3 878849052 +766 22 3 891309261 +721 197 4 877140221 +314 365 3 877891465 +361 194 4 879440345 +698 423 2 886366731 +893 724 3 874830160 +916 474 4 880844175 +544 338 2 884796062 +776 656 5 891628678 +527 661 5 879456186 +796 549 3 893047208 +85 1018 4 882995668 +675 463 5 889489003 +534 148 4 877808198 +13 746 3 884538766 +942 313 3 891282396 +746 183 4 885075165 +117 184 3 881012601 +776 177 4 891628937 +682 385 3 888522456 +826 397 3 885690854 +326 611 3 879875572 +562 194 5 879196075 +588 1411 1 890032421 +712 398 4 874957179 +429 843 1 882387114 +303 401 3 879543003 +552 127 4 879221580 +843 270 4 879442947 +859 1132 3 885775513 +756 121 3 874829152 +389 485 5 879991081 +798 208 3 875639010 +314 827 4 877887292 +686 209 5 879545550 +606 148 3 878150506 +941 124 5 875048996 +804 423 3 879441371 +293 143 4 888906428 +648 412 1 884367318 +674 257 4 887762641 +347 210 4 881653973 +773 210 2 888539398 +939 689 5 880260636 +642 401 4 885606178 +724 307 3 883757468 +761 1157 5 876189775 +883 197 4 891696689 +699 283 4 879147032 +119 7 5 874775185 +405 187 5 885544739 +733 124 5 879535213 +303 123 4 879468149 +370 390 1 879434587 +514 209 3 876062951 +577 410 3 880471170 +936 281 4 886832903 +847 1086 4 878775404 +825 257 4 880931887 +92 1216 4 886442386 +450 336 3 882370464 +880 368 1 880175503 +870 218 4 889717102 +711 704 4 879993650 +833 1012 4 875036418 +561 1059 1 885808867 +128 416 3 879967367 +15 249 1 879455764 +338 143 2 879438652 +654 98 5 887864641 +896 299 1 887235709 +823 193 5 878439113 +889 1218 4 880178511 +806 122 3 882385694 +2 289 3 888979353 +710 333 3 882063367 +94 195 3 885870231 +655 1121 3 887428938 +711 995 4 879991134 +394 672 3 880888540 +897 8 3 879990744 +926 322 2 888636270 +95 215 4 879198109 +849 427 4 879695317 +479 915 4 893281238 +246 447 3 884922714 +571 45 4 883354940 +936 952 4 886832966 +884 582 5 876859351 +875 478 4 876465025 +922 229 4 891447777 +532 491 5 893119491 +91 1192 4 891439243 +788 174 2 880868316 +62 134 4 879373768 +699 762 3 878882455 +561 379 2 885810428 +338 517 5 879438505 +290 234 3 880474451 +458 762 3 886395065 +524 582 3 884635326 +530 176 3 886202320 +332 748 4 887916385 +747 989 3 888638508 +533 1048 3 889450842 +642 28 5 885603636 +883 312 3 891692044 +474 655 5 887924083 +180 53 5 877442125 +871 56 5 888193177 +344 50 5 884814401 +922 451 4 891448247 +535 950 3 879618019 +311 747 3 884364502 +650 121 3 891369836 +532 203 5 893118712 +181 743 1 878963241 +768 744 3 880136272 +896 135 3 887158926 +363 239 3 891495272 +854 922 5 882813143 +561 655 3 885807930 +886 43 2 876033134 +389 15 2 879916135 +458 484 5 886397109 +406 492 4 879445859 +537 550 2 886032246 +663 187 5 889493869 +399 545 2 882345164 +525 100 4 881086108 +913 310 3 880753802 +758 98 5 881976289 +940 56 5 885921577 +500 286 1 883864527 +911 313 2 892838135 +880 1296 3 892958128 +495 196 3 888632546 +922 191 3 891454587 +514 272 4 885180603 +758 346 2 883099368 +537 855 3 886030937 +790 472 2 884462416 +823 459 4 878438379 +28 5 3 881961600 +271 1117 3 885847763 +630 98 5 885667898 +178 161 5 882827645 +886 506 4 876032308 +641 511 5 879370337 +798 707 2 875303559 +579 7 3 880952006 +870 244 3 875051043 +844 181 5 877388183 +514 168 4 875308925 +805 28 3 881698243 +561 849 2 885810193 +793 591 4 875104752 +580 597 1 884126077 +758 171 5 881976262 +658 735 3 875148108 +900 121 2 877832803 +655 18 3 888984478 +889 729 3 880179785 +620 28 4 889988121 +762 515 5 878719186 +870 23 4 875050865 +307 472 3 877123683 +798 769 2 876249507 +919 7 3 875288848 +640 91 4 874777998 +92 729 4 875656624 +913 475 4 880757473 +922 290 4 891451277 +524 39 5 884636583 +480 527 4 891208327 +85 316 3 893110061 +741 742 4 891455766 +900 1028 2 877833393 +733 126 2 879535938 +942 269 2 891282396 +833 33 2 875134264 +780 183 2 891363860 +847 71 4 878940653 +84 282 4 883450434 +880 269 4 892958090 +724 286 1 883758268 +514 22 4 875463202 +329 50 4 891655812 +334 209 3 891545821 +551 100 4 892776486 +727 550 4 883712519 +764 282 4 876243291 +756 402 4 874831383 +721 239 4 877147007 +269 639 4 891447216 +654 638 4 887864868 +676 302 5 892685224 +795 705 4 883250829 +831 317 4 891354798 +921 173 5 884673780 +219 906 4 892039575 +593 51 3 875671982 +840 582 5 891204265 +721 937 3 877137359 +689 150 4 876676134 +749 812 3 878849586 +883 405 3 891916961 +45 742 4 881013176 +487 559 3 884029657 +888 792 5 879365054 +804 367 3 879445605 +236 135 2 890116033 +313 651 3 891014552 +821 274 5 874792778 +649 298 4 891440293 +878 100 2 880865661 +682 243 1 888516865 +922 151 5 891449152 +712 486 4 874730521 +731 611 3 886184683 +871 896 3 888192858 +747 524 5 888640222 +435 268 5 884130688 +630 69 3 885667939 +621 577 3 874963446 +889 202 3 880178773 +243 631 4 879988298 +868 567 1 877113481 +682 148 3 888520923 +348 117 4 886523256 +373 367 3 877100458 +843 590 3 879443544 +671 22 4 884035406 +608 195 1 880405527 +882 195 5 879867568 +782 259 1 891498267 +712 88 4 874730155 +880 276 4 880166872 +806 588 4 882388795 +85 428 5 879454235 +514 88 4 875463468 +122 57 2 879270644 +666 121 3 880313603 +705 193 3 883518903 +823 64 5 878437753 +919 15 5 875289250 +429 196 4 882385012 +222 412 1 877564050 +158 107 3 880132960 +916 593 4 880843551 +665 483 4 884293610 +385 1070 5 880870206 +589 333 5 883352402 +919 475 3 875288898 +523 14 5 883700991 +418 1313 2 891282813 +624 313 5 885215463 +753 286 3 891399477 +618 193 4 891308432 +714 291 3 892777117 +143 286 2 888407586 +757 56 4 888445279 +187 173 5 879465307 +916 831 1 880843864 +561 660 3 885810144 +1 240 3 875071898 +838 7 5 887064072 +532 427 5 892519934 +924 836 3 885457975 +881 218 4 876539260 +846 241 4 883947911 +943 186 5 888639478 +940 355 1 889480552 +815 134 4 878694613 +149 340 4 883512775 +10 617 5 877892160 +13 917 4 892015104 +674 597 3 887763150 +883 692 3 891694249 +870 210 4 879270313 +721 261 3 877137214 +679 63 3 884489283 +393 259 4 887742851 +875 321 3 876464755 +919 201 4 875920887 +864 12 5 888886984 +699 930 2 880696344 +554 202 4 876232956 +223 1052 1 891550404 +682 175 3 888517265 +847 218 3 878940254 +921 132 3 884673699 +854 225 1 882813364 +655 735 3 887427338 +774 429 1 888556698 +726 535 3 889832806 +89 86 5 879459859 +771 189 5 880659815 +640 693 5 874778207 +617 448 3 883789507 +234 939 2 892333798 +303 1335 3 879485048 +850 82 5 883194950 +798 380 3 875638680 +417 185 3 879647708 +843 209 3 879446806 +655 423 3 887693376 +334 190 4 891547083 +863 288 4 889288911 +305 464 3 886322796 +881 304 3 876535642 +134 294 4 891732365 +889 451 3 880181488 +648 1271 4 884882234 +788 187 4 880867933 +452 501 3 885476356 +823 747 4 878438585 +198 939 3 884209412 +515 300 5 887658975 +729 362 4 893286637 +750 303 4 879445911 +627 735 4 879530600 +555 505 4 879975474 +826 332 3 885689821 +646 678 3 888529127 +495 182 5 888632043 +22 405 1 878888067 +661 249 3 886841443 +508 514 5 883767301 +864 102 4 888890997 +896 739 2 887159723 +294 986 3 889242810 +657 294 5 884238247 +246 257 4 884924327 +796 566 4 893048343 +707 1479 5 886287854 +292 181 4 881104068 +655 1068 3 891585417 +870 792 3 879540005 +880 595 1 880243541 +786 127 4 882841692 +435 427 3 884131542 +638 450 1 876695415 +923 1028 4 880387624 +293 168 4 888905716 +299 1068 3 877877600 +916 944 2 880845476 +908 147 2 879722932 +152 763 5 884018370 +43 100 4 875975656 +892 187 5 886608682 +659 197 5 891385080 +847 104 3 878939266 +450 235 3 887661217 +42 595 1 881106582 +151 1047 2 879543036 +305 13 3 886323998 +892 178 5 886608681 +23 679 3 874788443 +862 480 5 879304761 +847 756 1 878776020 +643 435 5 891447314 +648 153 4 884881621 +586 172 4 884058708 +476 94 2 883364780 +234 724 4 892335739 +168 931 3 884288329 +601 96 2 876350185 +916 1268 3 880845451 +916 381 3 880845738 +727 291 4 883709009 +841 344 3 889066880 +862 1199 2 879303729 +537 641 4 886031178 +650 239 3 891385876 +881 333 5 876535642 +564 117 4 888730974 +883 174 4 891696824 +606 596 4 878149415 +710 418 3 882063685 +62 451 3 879375716 +523 523 3 883703495 +454 472 3 888266874 +719 423 3 879360583 +863 749 2 889289419 +782 1391 4 891500066 +918 658 3 891987059 +551 415 4 892784710 +429 786 2 882386966 +889 879 3 880176596 +194 168 5 879521254 +711 559 3 879994020 +790 89 4 885155770 +943 215 5 888639000 +774 210 1 888555964 +618 288 3 891307343 +919 508 5 875288570 +804 134 4 879444890 +599 476 4 880953441 +655 2 3 888474138 +851 157 4 875731605 +836 238 4 885754200 +273 313 3 891292873 +846 518 4 883948571 +804 480 5 879442057 +730 301 1 880310202 +407 153 4 875042569 +655 511 3 887427009 +647 71 4 876534275 +629 69 5 880117485 +514 81 4 875463416 +855 45 3 879825383 +707 490 2 886285792 +588 98 1 890015324 +530 174 4 883784503 +183 649 4 891464079 +755 887 3 882569845 +379 577 4 892879355 +899 228 3 884121572 +620 834 2 889987073 +28 96 5 881957250 +934 461 4 891191660 +476 245 4 883365784 +102 550 2 888801812 +559 660 1 891034250 +833 108 2 875036102 +694 606 4 875727189 +670 135 3 877974549 +435 609 4 884132873 +389 709 4 879991115 +224 555 3 888104030 +887 183 1 881379449 +899 135 4 884121857 +894 937 4 880415903 +764 946 4 876246555 +875 527 4 876465230 +891 15 4 891638780 +648 810 4 884883031 +458 1 4 886394423 +943 443 2 888639746 +881 100 4 876536414 +919 286 4 885059400 +788 291 4 880870905 +536 487 4 882359813 +712 367 4 874956841 +397 480 5 885349476 +59 929 2 888203018 +624 100 5 879792581 +474 471 3 887915307 +662 10 4 880570142 +918 28 4 891987541 +833 1017 4 875036017 +84 79 4 883453520 +932 671 3 891250915 +913 42 3 880824372 +919 289 3 875288164 +737 196 3 884314694 +655 315 4 887424720 +267 158 4 878973126 +807 235 1 892530173 +715 658 4 875963693 +760 288 4 875665867 +887 8 4 881380025 +892 385 3 886608000 +936 298 4 886832134 +727 161 4 883712716 +934 228 4 891193778 +885 97 5 885714136 +919 819 3 875288805 +698 606 2 886366770 +651 285 4 879348966 +639 162 3 891239380 +547 319 4 891282926 +622 202 4 882670252 +632 95 5 879456955 +840 489 3 891204385 +276 1483 3 892436354 +559 87 4 891034003 +313 742 3 891016932 +690 722 3 881177937 +894 877 3 882403414 +592 895 3 882607528 +110 63 3 886989363 +660 1050 4 891200678 +287 941 3 875335424 +685 324 3 879451401 +897 926 4 879993674 +757 1240 3 888445820 +693 977 3 875483597 +835 180 5 891033675 +648 208 5 884796652 +788 380 3 880869215 +693 664 2 875482689 +506 566 4 885135819 +501 122 4 883348236 +488 294 4 891293606 +833 206 4 875038671 +260 270 5 890618728 +495 96 4 888634110 +844 1039 4 877382717 +886 230 2 876033106 +918 487 4 891987446 +291 717 3 874834388 +537 343 2 886029153 +639 786 3 891241022 +798 1297 3 875916505 +716 257 5 879793465 +224 591 3 888082584 +653 213 2 880150190 +257 14 5 879029742 +864 419 4 888887984 +758 8 5 881975577 +890 204 4 882403085 +463 749 3 877384882 +806 50 5 882385200 +189 1056 3 893265123 +868 475 4 877104987 +932 483 5 891249962 +486 306 1 879874063 +886 474 4 876031720 +374 1197 4 880393892 +932 157 4 891250667 +682 769 2 888522951 +758 212 4 881976919 +385 421 2 879446026 +887 934 4 881379188 +713 302 4 888882040 +664 137 3 876524641 +805 1091 2 881695591 +836 258 4 885753475 +896 168 4 887158738 +406 216 3 880131741 +663 108 2 889492796 +625 678 3 891262561 +496 277 5 876072633 +790 222 3 884461441 +622 207 5 882592278 +102 449 4 888802176 +425 5 1 878738887 +847 735 4 878940890 +399 890 2 882340517 +776 441 2 892920403 +819 321 4 880381928 +821 1060 5 874793022 +942 511 4 891282931 +758 200 5 881977229 +758 1039 5 881975787 +334 193 4 891547334 +452 82 3 886149040 +935 257 2 884472110 +416 164 5 893214041 +776 437 1 892920446 +707 696 4 880061405 +561 72 2 885810084 +270 185 5 876955938 +884 300 1 876857789 +537 1025 1 886029488 +748 189 4 879454749 +886 288 4 876031122 +421 208 2 892241554 +524 235 1 884628059 +452 23 2 876825745 +162 826 3 877635965 +99 326 3 885678267 +909 300 5 891919232 +659 319 3 891331322 +843 204 3 879448073 +405 1334 1 885549789 +460 1137 3 882912235 +543 1174 3 876894981 +927 456 2 879182709 +327 178 4 887745661 +49 367 3 888069117 +361 443 3 879441253 +194 265 4 879520991 +907 813 5 880158770 +846 196 4 883949290 +488 742 4 891295023 +910 332 2 880821834 +707 747 3 886287900 +125 663 3 879454956 +901 476 5 877289381 +648 180 1 884368643 +714 151 3 892777812 +897 485 3 879991037 +550 181 5 883425283 +683 300 3 893283728 +227 100 5 879035251 +757 233 3 888467038 +62 172 5 879373794 +922 212 2 891448473 +314 1094 1 877887065 +831 12 5 891354687 +774 986 1 888558594 +700 531 4 884494380 +514 185 3 875311225 +179 353 1 892151270 +919 742 4 875289499 +181 593 1 878962349 +554 597 4 876232176 +655 156 2 887430634 +881 230 4 876539291 +934 315 4 891188403 +689 118 4 876676433 +804 468 4 879442687 +655 211 3 887428334 +750 328 4 879445808 +908 200 2 879722642 +727 1016 3 883709802 +815 432 5 878694952 +11 52 3 891904335 +610 505 4 888703537 +863 691 3 889289067 +936 111 4 886832597 +474 748 3 887914979 +840 367 4 891205287 +43 755 3 883956075 +522 205 4 876961020 +718 751 5 883449953 +753 347 2 891401167 +663 323 2 889492230 +708 508 4 892719193 +457 485 4 882396832 +919 325 4 875288418 +606 156 4 880924789 +778 186 4 890802724 +897 736 3 879991186 +207 685 3 876018471 +631 310 4 888464980 +756 245 3 874832096 +625 4 4 892000372 +819 315 5 884618354 +671 472 5 884036411 +745 64 5 880123905 +151 611 4 879524514 +615 528 4 879448399 +1 7 4 875071561 +811 289 2 886377426 +747 463 3 888732695 +847 257 3 878775863 +595 815 3 886921584 +747 209 3 888640437 +389 946 3 880088363 +279 713 3 886015169 +344 19 4 884899346 +451 886 4 879012773 +721 455 5 877138884 +709 578 4 879848645 +919 1086 4 875289322 +896 572 2 887160676 +758 25 4 881977669 +738 193 5 892844112 +592 340 5 882607476 +798 961 1 875303558 +771 216 5 880659894 +783 750 4 884326274 +881 524 4 876537825 +391 322 3 877398619 +429 530 4 882384986 +625 100 3 891878363 +279 462 3 875309911 +227 1068 4 879035289 +663 307 4 889491690 +649 282 4 891440330 +384 879 4 891273874 +62 739 2 879375454 +753 71 5 891401457 +606 717 3 878147770 +454 367 4 888267128 +648 83 4 884628482 +848 603 5 887047308 +883 919 4 891692713 +938 1033 2 891357137 +921 82 3 884673954 +586 1207 2 884065879 +639 647 3 891239217 +634 929 3 877018033 +802 218 3 875985767 +210 402 5 887737171 +796 389 4 893219092 +747 945 4 888639481 +580 343 5 884124304 +542 168 4 886532602 +354 13 3 891216825 +452 607 5 875266680 +782 1142 3 891499243 +929 474 4 879640126 +933 734 2 874938644 +551 673 4 892778164 +731 15 4 886182632 +886 229 3 876032509 +710 95 3 882064434 +486 16 3 879874583 +907 118 4 880159360 +498 531 3 881957195 +94 423 4 885873302 +118 188 5 875384669 +751 588 5 889133291 +537 185 4 886030805 +603 450 3 891955972 +465 357 4 883531325 +146 269 4 891457591 +846 202 5 883949594 +682 223 1 888517011 +710 1019 4 882064555 +659 443 5 891385136 +659 642 2 891386492 +854 919 4 882812406 +255 743 1 883217030 +409 1159 2 881109019 +97 172 4 884238939 +650 38 3 891381784 +833 195 5 875038529 +752 358 4 891208452 +786 121 2 882842416 +650 21 2 891387767 +886 241 4 876032531 +747 189 4 888639272 +666 478 4 880139526 +527 154 3 879455814 +637 125 3 882903582 +656 326 1 892318888 +854 288 5 882814571 +416 118 2 876697479 +863 900 3 889289067 +880 123 4 880167247 +23 1004 3 874788318 +399 658 3 882350198 +682 211 4 888522311 +833 642 3 875038626 +792 151 3 877909753 +314 117 4 877886484 +407 395 1 876348957 +862 431 5 879305312 +666 805 4 880568436 +94 939 4 885873423 +96 200 5 884403215 +705 655 3 883518852 +406 23 4 879446529 +665 421 4 884294552 +70 678 3 884063627 +793 257 4 875103901 +369 335 2 889428072 +458 1109 4 886397318 +303 873 3 879466214 +405 418 5 885548836 +116 145 2 876452980 +751 142 4 889299175 +393 892 3 887742939 +454 312 3 888015842 +42 1048 1 881106220 +942 304 5 891282457 +510 261 2 887667780 +490 100 3 875427629 +577 96 4 880474257 +655 276 4 887473778 +201 12 4 884111269 +405 1540 2 885548877 +499 166 5 885599334 +806 17 4 882389506 +653 429 3 878866679 +799 484 3 879254077 +707 1141 3 886285791 +489 754 5 891448109 +848 642 5 887039164 +881 356 3 876539477 +556 209 5 882136162 +766 485 3 891309913 +653 1267 1 880153253 +848 179 5 887042377 +456 98 3 881372779 +863 1234 3 889289619 +885 28 4 885714136 +435 401 3 884133447 +802 258 5 875984532 +429 587 3 882386895 +766 196 3 891309703 +919 318 5 875372903 +422 773 3 879744183 +709 567 2 879848272 +757 350 3 888443511 +864 501 3 888891836 +913 185 4 881367173 +551 40 1 892785056 +532 1162 2 888631576 +574 896 2 891279013 +940 147 4 885921893 +643 127 5 891445476 +932 209 5 891250258 +802 424 2 875986303 +748 650 1 879454573 +741 121 2 891455766 +619 750 3 885953537 +823 98 5 878437890 +40 1038 1 889041741 +655 896 4 887474605 +591 45 5 891031257 +897 742 3 879993314 +880 272 5 892958036 +617 672 3 883789537 +804 234 4 879442862 +648 29 2 884883149 +903 118 4 891031794 +660 294 3 891197701 +666 48 4 880139180 +666 435 4 880567883 +450 190 4 882373385 +747 21 2 888733111 +880 471 4 880167114 +653 779 1 880153467 +943 210 4 888639147 +627 174 3 879531195 +58 1008 1 884304609 +322 33 4 887313946 +593 131 4 876506731 +799 173 5 879254077 +506 1019 5 878044851 +619 554 3 885954238 +933 219 1 874854217 +741 781 4 891457424 +798 709 5 875914860 +334 866 3 891545239 +655 751 3 888474960 +807 597 4 892705277 +890 193 4 882402826 +766 613 3 891310009 +486 1137 5 879874545 +488 754 4 891293606 +655 796 2 887428280 +688 341 5 884153606 +447 257 3 878854520 +880 697 2 880242281 +886 451 3 876033965 +658 477 3 875145750 +454 751 4 888265376 +934 239 4 891194802 +405 735 5 885545306 +796 623 3 893219122 +388 98 5 886441015 +661 197 4 876013975 +374 276 4 880393056 +914 736 3 887123465 +798 204 4 875742878 +214 188 5 892668173 +911 7 4 892839551 +10 230 4 877892210 +405 203 1 885548578 +760 120 1 875669077 +588 366 5 890027430 +480 197 3 891208215 +29 180 4 882821989 +545 177 3 879899299 +925 678 3 884717790 +201 692 3 884114895 +778 150 3 890802549 +246 941 1 884923547 +94 208 4 891720643 +939 476 5 880261974 +780 485 4 891363826 +301 282 4 882074561 +936 236 5 886832183 +917 1014 2 882911246 +757 969 3 888468741 +503 79 5 879454675 +429 234 4 882386566 +303 1097 3 879466523 +825 248 4 880755869 +828 702 2 891037466 +415 204 4 879439865 +742 1 4 881335281 +832 322 3 888259984 +663 150 5 889492435 +705 227 4 883428178 +621 68 4 880739654 +391 651 5 877399133 +671 50 5 875388719 +532 495 4 888634801 +901 568 5 877131045 +875 12 5 876465230 +851 866 3 875730895 +705 843 2 883427796 +649 50 4 891440235 +920 300 3 884220058 +235 1105 2 889654460 +23 59 4 874785526 +897 679 5 879991630 +925 218 4 884717862 +664 518 4 876524290 +712 61 3 874730031 +429 510 4 882387773 +665 196 4 884294026 +229 886 1 891632164 +544 328 3 884795581 +532 105 3 874789704 +887 416 2 881380539 +222 637 2 878183713 +330 237 4 876544690 +896 15 3 887158900 +334 142 3 891548272 +580 125 3 884125387 +29 306 4 882820730 +784 310 4 891387155 +632 845 4 879459677 +600 431 3 888451908 +543 508 4 874861792 +474 515 5 887915269 +751 98 5 889134186 +886 651 5 876034074 +790 226 3 885156396 +556 988 1 882135994 +612 117 4 875324599 +303 725 1 879544153 +921 252 4 879380142 +537 124 4 886029806 +592 343 3 882607476 +13 497 5 882140166 +398 133 3 875726786 +776 218 4 892920321 +943 685 4 875502042 +608 111 1 880406507 +655 363 3 887426770 +846 715 4 883949380 +940 610 1 885921953 +900 508 3 877832764 +578 288 3 887229335 +870 185 4 875050672 +664 529 4 878090125 +732 245 4 882590200 +918 174 3 891987154 +736 1089 1 878709187 +896 70 4 887160086 +385 656 5 879441425 +706 325 1 880996945 +598 269 3 886710494 +653 227 3 880151488 +493 25 4 884132717 +650 561 3 891370113 +865 189 4 880235059 +907 497 5 880160204 +854 846 3 882813453 +561 549 2 885809654 +630 742 5 885666918 +893 122 2 874829249 +933 214 3 874853666 +303 92 4 879467131 +704 648 5 891397667 +889 137 4 880177016 +774 1079 1 888558897 +463 271 1 889943811 +526 121 2 885682590 +800 300 4 887646980 +798 949 3 875914337 +655 144 3 887429594 +537 279 2 886030177 +324 340 5 880574827 +654 95 4 887864204 +366 675 4 888857866 +786 9 5 882841955 +843 225 2 879449256 +898 748 4 888294739 +747 11 5 888638958 +223 329 2 891549079 +222 596 3 877563739 +673 292 4 888787376 +931 362 3 891035970 +693 48 5 875482280 +872 864 3 888479498 +641 513 5 879370150 +848 476 3 887047674 +918 45 4 891986959 +919 477 4 875289025 +883 568 3 891696999 +674 1620 4 887763035 +654 11 4 887864452 +466 899 5 890284231 +360 879 3 880354094 +889 597 3 880182741 +487 841 2 883445168 +29 657 4 882821942 +486 926 2 879875408 +823 135 4 878438379 +276 540 1 874792519 +907 756 4 880159198 +773 12 3 888540448 +676 303 4 892685403 +65 1041 3 879217942 +164 329 4 889401410 +588 815 4 890024829 +653 797 2 880153841 +867 475 5 880078656 +863 751 4 889289122 +437 26 2 880142399 +399 552 1 882350733 +484 183 4 891195323 +731 140 2 886186811 +840 64 4 891204664 +768 25 4 880136157 +435 768 3 884133509 +840 750 4 891202784 +943 12 5 888639093 +935 742 5 884472266 +887 87 5 881380335 +856 323 2 891489593 +5 66 1 875721019 +416 421 5 893214041 +314 38 5 877889994 +586 231 3 884062010 +749 158 3 878849903 +682 591 3 888517097 +853 678 4 879365170 +881 484 4 876537512 +693 177 3 875484882 +480 1121 4 891208689 +880 1197 3 880167151 +823 474 5 878437890 +933 215 3 874854031 +194 186 5 879521088 +523 954 5 883702474 +571 114 4 883355063 +617 357 4 883789386 +755 288 1 882569771 +658 273 4 875148262 +663 815 4 889492759 +624 824 2 879793582 +713 311 3 888882040 +830 310 4 891462185 +463 764 2 877385457 +938 477 1 891356702 +505 501 2 889334373 +615 180 4 879448475 +488 144 3 891293974 +674 827 4 887762899 +798 720 5 875915940 +10 470 4 877891747 +704 272 5 891397015 +231 300 4 888605273 +927 7 3 879177298 +747 416 5 888640916 +889 430 4 880178411 +833 5 1 879818535 +669 408 5 892549316 +890 134 5 882403122 +911 89 4 892838405 +528 427 4 886813104 +878 66 3 880869354 +715 168 4 875963657 +840 707 5 891204114 +669 647 5 891260596 +864 178 4 888887248 +189 1020 4 893265657 +721 1265 3 877138661 +249 50 4 879571695 +487 53 2 883447118 +869 242 2 884490097 +639 196 3 891239456 +766 633 4 891309947 +676 539 4 892685920 +881 476 2 879052198 +622 99 4 882592383 +622 159 3 882670309 +858 269 4 879458608 +552 181 3 879221399 +479 222 4 879460028 +923 174 5 880388872 +448 258 4 891887440 +474 505 5 887924425 +13 145 2 882397011 +59 60 5 888204965 +771 137 4 880659302 +916 28 4 880844861 +436 239 3 887769952 +804 144 4 879444890 +661 707 5 876016858 +774 215 3 888556517 +474 671 3 887926105 +854 815 2 882812981 +660 485 3 891200491 +54 250 4 880933834 +716 842 3 879796846 +87 66 5 879876403 +72 1148 4 880036911 +416 898 4 885114374 +919 418 4 875373945 +560 472 2 879976945 +669 246 4 892549497 +897 22 5 879990361 +702 222 5 885767775 +903 1073 3 891032842 +666 507 3 880567771 +586 411 2 884067199 +651 116 2 879348966 +795 655 3 881530154 +882 597 4 879863106 +897 82 5 879990361 +886 549 3 876032929 +796 286 2 892610876 +226 370 3 883890235 +848 638 5 887038073 +661 318 5 876013935 +816 313 5 891710780 +894 515 4 879896654 +503 489 4 880383625 +876 187 4 879428354 +480 79 4 891208718 +511 887 5 890004747 +892 174 5 886608616 +593 122 1 875660347 +524 126 4 884323427 +833 654 5 875039558 +727 635 2 883713419 +413 289 4 879969027 +919 268 3 875920245 +683 317 4 893286501 +303 204 4 879466491 +892 845 4 886610174 +158 385 3 880134445 +620 924 3 889987164 +655 242 4 887424795 +698 662 2 886367406 +521 108 3 884476020 +405 781 5 885547447 +648 561 2 884883679 +851 1089 3 875730418 +534 7 4 877807780 +748 64 4 879454707 +923 181 5 880387363 +343 217 3 876405771 +896 95 4 887158555 +417 411 2 879649001 +514 1115 4 875462826 +882 122 2 879863831 +940 1401 1 885921371 +919 5 4 875374088 +660 3 1 891405958 +311 222 4 884366852 +774 231 1 888557383 +174 407 1 886515295 +719 582 3 888451748 +919 1114 3 875920823 +263 484 4 891298107 +733 324 4 879535694 +766 62 3 891310475 +435 1069 4 884131489 +485 269 4 891040493 +477 794 4 875941111 +210 1118 4 887730496 +455 124 4 879109594 +540 181 4 882157060 +296 285 5 884196469 +360 285 5 880354250 +343 157 4 876405045 +773 924 1 888540146 +4 362 5 892002352 +868 228 5 877103935 +595 744 3 886921274 +652 984 2 882567180 +846 294 3 883946477 +497 719 3 879363253 +158 208 5 880135093 +668 355 2 890349190 +497 684 3 879310792 +554 527 4 876233137 +342 763 3 874984854 +664 57 4 878092649 +368 573 3 889783617 +893 237 4 874828097 +913 655 4 881725846 +820 271 2 887955020 +784 751 4 891387316 +816 288 4 891710724 +298 845 3 884183773 +851 353 3 890862878 +853 330 1 879365091 +798 88 4 875743642 +595 240 3 886921424 +738 527 5 892844111 +385 176 2 879441386 +435 636 4 884134047 +262 631 4 879793536 +716 606 5 879796214 +207 515 5 878191679 +890 142 3 882916650 +450 102 4 882468047 +683 323 3 893283903 +830 1 4 891560596 +937 268 1 876762200 +796 570 2 893048505 +898 751 3 888294621 +747 14 3 888734152 +720 268 4 891262669 +130 300 5 874953239 +727 413 2 883709710 +716 474 5 879795122 +115 79 4 881171273 +481 498 5 885828619 +70 343 4 884066910 +116 1258 2 876453376 +858 307 3 880933013 +399 24 4 882341239 +632 451 4 879459505 +919 582 5 875373214 +776 194 4 891628752 +896 238 3 887158165 +659 252 4 891045227 +847 476 4 878775961 +682 239 3 888517439 +529 332 4 882535049 +504 575 3 887912401 +606 619 4 880922565 +280 866 3 891701997 +585 1155 5 891285820 +867 181 5 880078050 +502 343 5 883702370 +378 44 3 880055037 +733 1 2 879535129 +276 65 4 874787467 +449 544 3 879959023 +676 174 5 892686459 +488 678 2 891293400 +658 467 4 875147448 +897 132 5 879990531 +896 271 1 887157278 +347 95 4 881654410 +240 349 1 885775878 +911 99 3 892840889 +301 866 4 882075171 +893 259 3 874827960 +790 273 5 884461888 +804 28 4 879445904 +795 928 1 883774317 +796 443 2 893202878 +262 476 3 879962366 +561 210 3 885809146 +380 50 4 885478497 +835 633 5 891033889 +833 826 2 875297292 +931 121 2 891036604 +576 210 4 886986400 +297 124 4 874954353 +326 227 3 879876941 +864 63 3 888893088 +747 117 2 888639780 +213 117 4 878870987 +83 1041 4 880308909 +37 7 4 880915528 +542 196 4 886533452 +733 150 2 879535440 +521 651 3 885253376 +621 50 5 874965407 +880 327 3 880166475 +334 71 3 891546299 +836 654 5 885754150 +660 95 2 891200491 +823 228 3 878438435 +624 980 4 879793358 +21 980 2 874951349 +487 966 5 883530562 +727 808 2 883712245 +922 406 4 891447944 +417 993 3 879646800 +279 95 3 875309950 +881 286 2 876961961 +875 512 5 876465408 +634 740 2 875729749 +690 655 4 881177272 +577 693 1 880475408 +253 121 5 891628142 +435 56 5 884131055 +868 201 2 877104264 +493 109 4 884130416 +286 169 3 877533101 +487 64 5 883445859 +655 581 2 887477000 +634 676 4 875729633 +413 460 3 879969536 +782 347 1 891498139 +854 664 4 882814091 +851 147 4 874728461 +846 663 4 883948873 +913 588 3 881449256 +880 1023 2 880175405 +922 449 4 891447802 +499 430 3 885598989 +880 71 4 880241289 +608 218 4 880406862 +934 223 5 891191659 +151 436 3 879524947 +178 215 5 882826807 +518 1 4 876823143 +544 313 5 884795413 +788 562 3 880871294 +655 82 2 887429559 +773 364 4 888539875 +543 318 3 874863549 +766 173 4 891309261 +596 295 4 883539402 +401 278 4 891032412 +590 1014 3 879439283 +938 763 4 891356656 +936 1086 3 886832134 +902 333 3 879463310 +839 410 1 875752274 +600 665 5 888452152 +897 161 5 879993309 +901 96 5 877130999 +919 1048 3 875289113 +923 831 4 880388211 +700 318 4 884494420 +649 471 5 891440412 +650 168 4 891381546 +538 712 3 877109773 +561 162 3 885809781 +306 303 3 876503793 +847 11 3 878939876 +373 135 1 877098784 +456 485 4 881373574 +436 348 4 887768521 +665 721 3 884294772 +872 280 3 888479275 +185 50 4 883525998 +797 127 4 879439297 +664 692 3 878152048 +618 660 3 891309040 +11 737 4 891904789 +775 302 3 891032742 +627 679 3 879531429 +361 283 4 879440694 +625 22 3 891262899 +795 96 2 881530415 +655 186 3 887428157 +293 1 2 888904861 +936 313 4 886831374 +881 625 5 876538465 +679 748 4 884312926 +897 199 4 879990465 +875 1073 5 876465230 +747 485 5 888640222 +878 707 2 880866409 +678 237 3 879544915 +537 690 2 886028604 +592 431 2 882956510 +892 423 5 886608185 +489 346 5 891362904 +332 226 5 887939092 +66 282 3 883601266 +727 841 3 883709208 +566 173 3 881649945 +894 170 4 882404329 +678 742 4 879544783 +864 229 4 888891836 +109 1016 5 880571661 +705 699 5 883427640 +610 162 5 888703343 +757 79 4 888445750 +776 708 5 891628599 +405 392 5 885545487 +840 168 5 891204868 +566 156 4 881649428 +924 1011 3 886760052 +682 1217 3 888521047 +647 79 4 876530687 +790 69 1 885155209 +751 91 4 889134705 +682 271 4 888518279 +463 1 1 890453075 +921 15 4 879379621 +303 333 4 879466088 +901 13 1 877129839 +94 91 5 891722006 +399 78 3 882348948 +748 515 4 879454662 +763 47 3 878915692 +256 96 5 882164444 +864 100 5 877214125 +633 318 4 875324813 +894 310 3 882403366 +537 190 4 886030552 +789 284 3 880332259 +712 71 5 874730261 +889 317 4 880180849 +67 756 3 875379566 +455 620 3 879108829 +536 304 3 882317183 +902 250 4 879465073 +774 393 1 888556090 +883 213 2 891693058 +847 121 3 878775523 +929 23 3 880817681 +527 129 2 879455905 +472 257 4 875978096 +919 221 4 875288898 +341 335 4 890757782 +844 24 5 877388183 +727 228 4 883711527 +216 27 3 881428365 +866 305 2 891221006 +567 492 4 882425966 +276 1036 2 889174870 +882 82 5 879867885 +629 357 4 880117062 +184 262 5 889906946 +457 388 2 882551343 +537 121 1 886030380 +385 715 3 879446671 +276 55 4 874792366 +900 200 2 877833632 +751 28 5 889133064 +840 1018 3 891211664 +630 1 4 885666779 +595 273 3 886921140 +702 449 3 885767775 +476 319 1 883365561 +899 51 1 884122387 +854 170 4 882813537 +13 853 1 882397010 +896 343 1 887235690 +500 370 3 883865952 +566 879 2 881649273 +933 546 2 874939105 +303 596 4 879468274 +406 558 3 880132276 +913 202 4 880825052 +880 603 5 880243629 +532 452 5 888630585 +897 193 3 879990466 +921 79 4 879380704 +496 705 2 876065382 +189 318 5 893265191 +407 195 4 875119886 +327 56 2 887745805 +655 340 3 888984325 +796 739 5 893047207 +844 1099 2 877387391 +886 231 2 876032247 +450 403 4 887660440 +790 825 3 884462385 +763 625 4 878923488 +294 93 4 877819713 +887 38 5 881381503 +16 591 4 877726944 +41 152 4 890687326 +831 64 5 891354534 +892 214 2 886608897 +788 550 3 880869508 +450 221 4 882395052 +488 873 3 891293152 +727 283 2 883709009 +874 150 4 888632448 +749 25 4 878846697 +941 117 5 875048886 +716 199 4 879796096 +910 252 2 881421035 +932 1512 5 891249038 +671 159 5 883949781 +766 965 3 891310540 +661 418 4 876036240 +455 50 5 878585826 +894 381 3 882404430 +447 228 4 878855682 +688 898 5 884153606 +360 83 4 880355845 +761 293 4 876190130 +243 367 3 879988976 +405 1006 1 885546445 +279 385 4 875309351 +166 315 3 886397478 +938 333 4 891356146 +884 381 5 876859751 +934 100 4 891189511 +756 89 4 874828769 +655 869 2 889282952 +654 535 3 887863962 +865 302 5 880142614 +881 432 3 876537825 +618 731 2 891309514 +178 410 4 882824467 +533 846 2 879365886 +42 826 3 881106419 +790 63 2 885157837 +545 510 3 880347957 +839 1009 3 875752560 +897 182 4 879990683 +833 209 5 875124604 +592 514 5 882955543 +803 339 3 880054834 +622 135 4 882592346 +694 510 5 875726927 +792 597 3 877910478 +870 2 2 879714351 +643 496 4 891446688 +815 542 4 878694820 +666 433 3 880568560 +181 106 2 878963167 +653 176 3 878854145 +290 993 4 880473630 +539 204 4 879788045 +486 950 4 879875069 +628 8 2 880777167 +830 71 4 891561474 +925 682 4 884717586 +407 747 3 876339940 +56 559 4 892910646 +645 22 4 892054508 +796 434 4 892676195 +269 17 2 891449670 +896 631 2 887159464 +435 1552 3 884134187 +923 245 3 880387199 +177 127 5 880130667 +552 1095 3 879222738 +796 188 2 892675654 +871 173 5 888193383 +621 313 5 883798770 +655 128 3 887429732 +401 751 1 891031532 +468 82 5 875292320 +663 1119 3 889493437 +913 175 5 881366473 +890 655 3 882915818 +774 7 2 888558539 +92 199 3 875811628 +472 150 3 875978686 +776 187 4 891628632 +879 15 4 887761865 +867 276 1 880079020 +930 763 3 879535102 +592 357 4 882956102 +521 343 3 884475605 +586 22 3 884058708 +303 461 4 879484159 +887 418 4 881380025 +637 931 1 882905388 +916 222 3 880843419 +588 222 3 890015722 +896 201 3 887158900 +474 187 5 887923708 +911 501 3 892840916 +577 708 3 880475067 +794 420 4 891035662 +939 409 4 880261532 +886 657 5 876031695 +265 288 4 875320024 +853 688 3 879365169 +119 1265 3 891287060 +618 458 3 891309579 +210 98 5 887736429 +854 463 3 882814395 +564 118 4 888730699 +527 69 4 879456490 +618 62 2 891309697 +198 475 4 884205277 +716 482 5 879795867 +704 528 3 891397491 +934 405 5 891189819 +818 690 3 891870301 +405 1487 1 885546724 +537 183 3 886031407 +752 882 4 891207846 +925 56 3 884717963 +689 410 1 876676293 +781 268 2 879633862 +286 413 3 877531226 +655 255 3 887477336 +846 1069 4 883948221 +504 330 4 887831274 +13 566 5 882397502 +280 392 5 891701328 +645 318 5 892053241 +635 682 2 878878685 +178 12 5 882826162 +379 151 4 880525771 +453 826 1 877553430 +198 343 3 884204666 +766 216 3 891310038 +828 14 4 891035819 +773 475 3 888538533 +805 47 5 881698778 +846 492 3 883947737 +111 311 4 891680028 +880 245 2 892958350 +711 42 3 876278831 +901 566 5 877131118 +815 191 5 878693183 +936 927 4 886833052 +841 873 4 889067121 +846 684 5 883948141 +749 1088 2 881602596 +422 567 3 879744218 +693 56 4 875483268 +612 259 3 875324355 +618 403 4 891309608 +700 423 4 884493943 +666 385 3 880568028 +849 174 5 879695469 +591 866 3 891039658 +524 704 4 884636691 +637 740 2 882903914 +663 15 4 889493069 +763 475 4 878915722 +704 493 4 891397190 +450 23 5 887136837 +655 23 3 887426971 +344 588 5 884900993 +882 228 5 879867694 +860 890 2 880829225 +303 1040 1 879485844 +696 748 1 886404268 +90 316 5 891382658 +536 148 4 882318820 +16 732 5 877726944 +894 898 4 883518875 +667 69 3 891035104 +268 96 5 876513953 +498 135 5 881956576 +499 624 2 885599372 +881 403 3 876539330 +828 381 3 891036568 +655 900 3 887424991 +682 790 3 888521942 +692 1047 2 876953616 +893 1218 3 874830338 +916 91 4 880844223 +474 255 4 887915600 +694 89 4 875728220 +479 431 4 879461741 +879 1284 3 887761562 +796 238 3 892761427 +420 190 5 891356864 +616 339 3 891224718 +790 68 3 885157440 +919 4 1 875374032 +128 69 4 879966867 +682 696 4 888518035 +798 1164 3 875637744 +890 215 4 882916356 +249 853 4 879572256 +608 190 4 880405527 +654 3 3 887864071 +923 689 3 880387001 +11 427 4 891904300 +864 628 4 888890639 +683 307 3 893286347 +542 282 3 886533452 +545 168 4 879900156 +900 834 1 877833536 +648 2 4 884882742 +43 421 3 883954853 +618 275 3 891307577 +174 951 1 886515551 +927 367 5 879199250 +671 566 4 884035303 +568 520 2 877907327 +666 135 4 880139562 +798 194 4 875743366 +524 1046 3 884637173 +543 183 4 874864034 +298 125 3 884125912 +608 443 5 880405824 +943 237 4 888692413 +825 130 2 889021235 +756 171 4 874827062 +899 95 5 884121612 +716 615 3 879795269 +796 45 3 892675605 +903 1101 4 891033828 +6 468 3 883602174 +712 168 2 874956357 +834 475 5 890862311 +677 289 1 889399113 +440 361 5 891548567 +374 54 4 880396048 +782 339 3 891498676 +867 168 4 880078604 +28 448 4 881961600 +160 11 4 876858091 +789 1017 3 880332316 +590 740 4 879439645 +95 250 4 882803989 +918 135 1 891986634 +854 24 4 882812352 +749 866 3 878848639 +804 195 5 879442538 +13 262 4 881514876 +714 3 5 892777876 +548 286 1 891042194 +406 724 3 884630973 +915 270 3 891030070 +562 185 5 879196075 +524 461 3 884635287 +190 258 3 891033183 +869 15 1 884491993 +717 300 5 884641808 +387 953 2 886484012 +883 49 3 891694636 +851 828 2 875730482 +186 12 1 879023460 +886 1208 3 876032596 +643 448 3 891449580 +406 444 3 879792928 +76 264 3 875027292 +345 248 5 884994083 +13 393 3 882141617 +727 941 2 883711874 +654 70 4 887864663 +524 4 4 884636498 +776 145 2 892920381 +916 721 4 880845049 +715 64 5 875963242 +929 1 3 878402162 +647 73 5 876537697 +373 233 3 877105588 +901 679 4 877131205 +790 246 4 884461283 +385 357 4 879441339 +788 963 4 880868644 +807 313 5 892527050 +632 527 4 879458429 +790 49 3 885156852 +95 1227 2 880572581 +181 1356 1 878963204 +667 210 3 891035051 +916 281 3 880843727 +416 791 2 886319550 +682 229 4 888520923 +394 24 5 880889350 +852 260 3 891036414 +749 167 2 878848701 +696 302 5 886403632 +868 198 5 877103757 +643 156 5 891446826 +13 127 5 881515411 +346 159 4 874949011 +927 274 1 879181133 +342 152 4 874984341 +404 272 4 883790181 +618 25 2 891308260 +187 137 5 879464895 +666 514 4 880139295 +240 358 2 885775857 +283 291 2 879297867 +774 44 1 888558343 +886 54 3 876031279 +7 592 5 891353652 +734 97 4 891022993 +406 602 3 882480865 +524 259 3 884320358 +732 875 1 882590201 +508 629 4 883775341 +373 88 4 877106623 +878 60 4 880867035 +796 1303 2 893048713 +694 143 4 875727513 +298 549 4 884183307 +485 346 4 891040967 +637 676 3 882903767 +846 1045 3 883950364 +474 284 4 887915645 +854 840 2 882813364 +211 528 4 879459803 +825 385 5 881101641 +788 177 3 880868513 +716 70 4 879796046 +883 331 3 891691654 +751 83 5 889134705 +64 174 5 889737478 +796 611 4 892675694 +498 517 4 881957353 +793 282 4 875104340 +690 1273 3 881180382 +850 294 5 883194367 +655 1648 2 891817435 +766 435 3 891309053 +672 1023 2 879789672 +268 219 3 875744533 +643 144 4 891447286 +900 471 2 877833259 +823 318 5 878438179 +706 148 4 880997464 +588 553 4 890025864 +887 365 5 881381610 +443 333 5 883504654 +26 284 3 891371505 +655 47 3 887426972 +790 7 4 884461796 +721 28 5 877140137 +562 318 3 879194894 +463 16 4 877385830 +880 185 5 880241355 +601 357 4 876349150 +840 430 5 891204418 +684 763 2 878232961 +743 308 2 881277314 +470 319 3 879178216 +387 286 2 886484385 +847 411 1 878939349 +354 710 4 891217340 +13 474 4 881515112 +754 477 5 879451775 +642 993 4 891317955 +764 132 5 876246236 +724 748 1 883757784 +653 984 4 884408848 +683 305 4 893286261 +311 371 5 884366137 +449 640 5 880410734 +505 724 4 889333861 +207 393 4 877838977 +806 179 5 882387870 +756 173 3 874826565 +450 734 2 882471737 +62 204 3 879373737 +514 1600 4 875723266 +790 678 3 884461115 +782 1399 2 891498919 +864 466 4 888887794 +527 86 4 879456438 +537 484 4 886031105 +662 275 4 880571006 +936 250 5 886832337 +694 69 5 875727715 +593 318 5 875671413 +535 955 3 879618338 +804 160 4 879442707 +943 471 5 875502042 +727 421 5 883711181 +164 9 4 889402050 +56 678 4 892676056 +916 51 2 880845658 +896 118 2 887159805 +841 678 4 889067313 +725 9 4 876106243 +669 191 3 892550310 +790 249 3 884461849 +836 89 4 885754029 +5 366 3 875637145 +10 699 4 877893020 +712 462 3 874730085 +934 617 4 891191778 +867 175 5 880078818 +435 824 1 884134627 +887 1079 1 881378773 +707 137 5 880059876 +838 455 4 887064275 +901 748 4 877125480 +311 51 4 884366010 +672 255 2 879789278 +345 200 4 884916339 +474 213 4 887927509 +788 726 4 880871128 +931 310 3 891035876 +290 66 4 880731963 +428 302 5 885943651 +468 963 5 875286036 +731 606 3 886182366 +405 1055 3 885546202 +715 39 3 875964273 +803 303 4 880054629 +788 100 5 880868277 +796 100 3 892611093 +690 402 3 881180497 +544 259 1 884795581 +807 418 4 892529358 +883 559 3 891695692 +144 284 3 888104213 +881 265 5 876538286 +706 682 2 880996945 +840 429 3 891204827 +149 303 4 883512752 +717 262 4 884641621 +773 710 3 888539366 +851 981 1 875730826 +618 181 5 891307263 +761 15 5 876190314 +650 432 4 891386830 +665 566 2 884293741 +650 160 3 891383572 +690 763 4 881177553 +480 185 2 891208718 +764 218 4 876245837 +927 421 4 879194661 +541 265 5 885595654 +452 385 4 875560933 +836 793 2 885754029 +697 122 4 882622248 +885 402 3 885715489 +748 498 4 879454831 +777 818 5 875980669 +857 547 3 883432633 +896 89 5 887159262 +916 1109 3 880844861 +648 1041 3 884882192 +942 193 5 891283043 +256 222 4 882150313 +46 332 4 883611482 +473 246 5 878157404 +655 381 3 887474656 +508 378 5 883777430 +826 181 5 885690526 +840 300 3 891204056 +826 195 5 885690636 +621 568 5 874963797 +661 274 4 876037199 +938 476 4 891357137 +846 133 4 883948534 +41 180 5 890687019 +934 229 4 891194539 +606 501 4 880926084 +663 237 4 889492473 +269 89 2 891448800 +886 384 3 876034074 +806 56 5 882387999 +513 685 4 885062601 +883 60 5 891693012 +774 450 2 888557557 +880 549 4 880243230 +660 809 2 891201565 +407 388 2 876348849 +925 185 4 884717963 +148 238 4 877398586 +940 170 4 885921401 +802 413 4 875986303 +393 322 4 887742825 +607 494 5 883879556 +416 72 2 886318707 +619 176 5 885954053 +95 472 5 879197329 +870 483 5 880584497 +938 9 3 891356413 +161 197 3 891171734 +893 410 4 874828649 +697 1012 1 882622824 +768 16 3 880135943 +368 53 2 889783562 +682 427 4 888523581 +854 238 5 882813648 +712 234 2 874729935 +783 881 4 884326584 +145 436 5 877343121 +450 671 3 882371416 +633 56 2 875326491 +537 642 4 886031342 +109 226 5 880578503 +504 1090 4 887910961 +665 238 4 884294772 +606 919 2 880923349 +537 419 2 886031342 +698 427 1 886367013 +619 562 3 885954341 +453 732 3 877561695 +758 540 3 882054637 +497 169 4 879309992 +610 70 4 888703609 +406 193 4 879445771 +488 239 4 891294976 +890 1039 4 882403122 +796 699 4 893188576 +754 15 5 879451743 +836 192 5 885754118 +399 794 3 882349274 +927 79 3 879184644 +530 1226 4 891568366 +535 276 3 879618965 +403 151 4 879786270 +881 826 1 879052109 +7 39 5 891353614 +524 943 3 884636453 +545 232 3 883115515 +625 423 4 891263760 +862 56 3 879305204 +798 588 4 875638447 +899 69 3 884121125 +500 151 3 883874059 +72 1051 4 880035958 +92 246 4 890251289 +472 140 3 875980823 +592 189 5 882955583 +881 168 3 876537933 +606 825 5 878149689 +804 732 4 879445037 +782 1527 2 891498641 +521 23 3 884478428 +659 1168 4 891386641 +535 566 3 879618338 +884 258 5 876857704 +595 1142 5 886921199 +639 739 3 891240868 +406 565 3 880132319 +650 732 3 891371061 +896 472 2 887160983 +670 485 5 877974945 +663 827 2 889492796 +796 1057 2 893047967 +697 7 5 882622798 +612 1060 4 875324756 +653 712 3 880153639 +437 606 4 880140978 +848 732 5 887048573 +758 344 3 888715390 +267 69 4 878971659 +920 332 3 884219953 +867 270 5 880077780 +62 237 3 879372563 +532 204 5 892863286 +632 739 3 879459210 +787 305 3 888979721 +830 211 4 891898720 +916 530 4 880844202 +121 25 5 891390316 +889 170 4 880177994 +279 152 5 882146492 +918 1171 4 891988646 +694 485 4 875728952 +916 143 3 880844463 +308 42 4 887738191 +653 185 2 880606620 +120 744 4 889490522 +592 268 5 882607286 +665 134 4 884293569 +484 211 4 891195036 +923 546 4 880387507 +815 435 4 878694269 +833 616 5 875124024 +13 322 3 882140792 +863 346 5 889288911 +537 216 3 886031540 +210 205 4 887736393 +833 30 4 875225297 +930 245 3 879534165 +573 276 3 885843964 +479 22 4 879461280 +889 180 4 880180650 +256 265 4 882164479 +851 595 3 875731021 +867 150 5 880078677 +521 222 4 884475799 +286 97 4 877533101 +782 1096 2 891499699 +758 227 4 884999133 +908 648 4 879722333 +679 168 5 884487534 +280 595 3 891701666 +887 24 5 881378219 +622 183 4 882669826 +934 554 4 891194462 +551 67 5 892785164 +862 742 5 879303298 +880 801 3 880175239 +851 1025 2 884205201 +810 288 3 879895233 +567 387 4 882426899 +454 530 2 881960174 +59 620 4 888203959 +533 748 3 890659295 +597 181 4 875340062 +40 343 1 889041790 +922 172 5 891449021 +854 294 2 882811742 +593 301 4 877728878 +779 1028 4 875996932 +393 1531 4 889731794 +897 622 3 879990877 +428 754 4 885943847 +717 888 5 884642133 +698 525 1 886367615 +586 80 2 884067003 +666 196 3 880568129 +933 550 1 874939185 +7 125 4 891353192 +327 1129 2 887745891 +878 20 2 880865715 +52 333 4 882922038 +837 25 3 875722169 +580 271 5 884124248 +150 124 2 878746442 +312 638 5 891698580 +373 69 4 877099137 +92 39 3 875656419 +47 304 3 879439144 +618 7 4 891309887 +676 269 2 892685224 +665 157 3 884294671 +868 1098 5 877107416 +624 236 3 879792358 +495 498 3 888633165 +848 679 3 887047674 +796 794 4 893047320 +714 284 3 892777438 +682 562 2 888522700 +412 214 3 879717253 +551 655 5 892783142 +579 382 3 880952237 +615 135 4 879448599 +901 56 1 877130999 +709 234 5 879847945 +262 727 3 879792897 +677 508 5 889399171 +746 403 4 885075337 +543 62 3 875663687 +575 176 4 878148087 +694 470 4 875727144 +288 98 5 886373474 +554 328 4 878801354 +890 524 4 882403379 +792 276 3 877910305 +860 846 2 887754411 +567 1012 3 882427273 +888 69 4 879365104 +704 679 2 891398726 +537 1163 1 886030347 +841 333 4 889066780 +682 801 3 888521907 +61 310 4 891206194 +844 168 4 877386990 +724 750 2 883757170 +747 304 4 888638370 +158 648 5 880135020 +548 1011 2 891415746 +715 118 2 875962395 +735 117 3 876698897 +795 429 3 880568492 +426 609 3 879441931 +130 1058 5 876252064 +698 428 1 886367955 +64 48 5 879365619 +932 1573 4 891249239 +853 288 4 879364822 +234 702 2 892335707 +831 323 2 891354275 +894 223 4 879897149 +551 531 5 892777485 +537 61 4 886031211 +809 307 5 891036809 +18 516 5 880130861 +374 274 4 880393668 +864 770 3 888891322 +887 187 4 881381610 +835 185 4 891033957 +864 541 2 888892667 +682 1067 3 888520497 +636 118 5 891449305 +663 1011 3 889493027 +689 596 3 876676134 +466 226 4 890285034 +889 676 2 880176874 +360 955 5 880356166 +273 304 3 891292935 +650 109 3 891386167 +601 743 1 876348410 +298 204 4 884182148 +339 293 5 891033282 +655 312 2 892011201 +453 780 3 877561522 +328 347 5 885596118 +887 697 1 881380623 +378 55 4 880046229 +677 300 5 889398960 +346 196 3 874950692 +913 174 5 881367620 +512 325 2 888579139 +405 380 2 885545883 +516 214 3 891290649 +643 447 4 891449249 +862 60 5 879305143 +763 234 3 878923288 +711 485 4 879993278 +451 678 5 879012510 +871 313 5 888192858 +693 528 1 875484613 +712 627 4 874956515 +670 8 4 877975594 +7 663 5 891352220 +669 522 4 892550196 +385 671 3 879443315 +933 110 1 874938664 +698 1115 2 886367955 +902 515 5 879464726 +713 269 4 888882040 +562 173 5 879196308 +447 278 3 878854810 +387 109 4 886481073 +903 98 5 892760784 +484 153 5 891194716 +405 1551 1 885546835 +663 313 5 889491617 +884 640 1 876859161 +912 483 5 875965906 +487 746 4 883529540 +863 268 5 889289240 +602 117 5 888638674 +689 260 3 879211543 +144 276 3 888104122 +883 322 5 891692168 +515 294 3 887658910 +606 181 5 878143047 +476 47 3 883364392 +666 663 4 880139409 +795 135 3 881530126 +804 552 4 879446209 +693 258 4 875481336 +758 1001 5 882055227 +863 748 3 889289456 +786 28 5 882843646 +639 483 5 891240520 +714 1 3 892776123 +831 307 2 891354064 +43 127 4 875981304 +617 453 1 883789715 +567 631 3 882426869 +655 1063 3 888474909 +645 340 4 892051762 +259 293 4 883371861 +846 96 4 883947694 +809 313 4 891036743 +887 718 1 881377812 +903 177 4 891033541 +773 855 2 888538726 +805 331 4 879971214 +810 902 5 890083210 +846 488 5 883948343 +213 64 5 878955680 +919 58 5 875374032 +877 226 3 882678547 +669 531 3 892550310 +435 33 3 884132672 +503 174 5 880472250 +833 452 1 875224178 +871 750 3 888192689 +804 1170 3 879445393 +464 295 5 878355033 +868 159 2 877107416 +907 281 5 881030348 +618 8 3 891307862 +931 744 4 891036463 +721 334 1 877136831 +828 904 3 891618316 +900 325 1 877832320 +931 275 5 891037521 +294 1028 3 877819897 +149 345 4 883512623 +788 931 2 880871551 +711 921 5 879993318 +548 305 1 891042624 +387 550 2 886483252 +393 1270 3 889731673 +201 479 4 884111397 +480 654 4 891208718 +118 508 4 875385057 +690 9 3 881178232 +901 949 3 877131500 +474 127 5 887915188 +537 528 3 886030805 +489 351 5 891446623 +13 78 1 882399218 +276 12 5 874787407 +683 272 4 893286260 +275 199 4 880315170 +653 174 5 878854051 +361 285 4 879440516 +482 328 4 887643289 +523 258 5 883699583 +763 25 4 878922982 +504 216 4 887838450 +846 575 2 883950569 +863 1434 2 889289618 +194 496 4 879520743 +682 628 4 888517364 +625 174 4 891263589 +452 1057 1 876215627 +661 657 4 876013714 +733 1226 3 879535968 +647 405 4 876532747 +805 469 4 881698243 +932 54 4 891251038 +276 303 4 892436271 +889 11 5 880177941 +747 393 2 888733111 +829 170 4 881698933 +435 181 5 884132208 +622 781 3 882671595 +679 1 3 884487688 +922 403 3 891450805 +804 1228 3 879446090 +881 71 4 876538322 +396 823 2 884646647 +198 423 3 884208241 +321 435 5 879439860 +785 168 4 879438810 +100 892 2 891375484 +13 691 4 889316404 +447 12 5 878855907 +457 284 3 882394010 +442 227 3 883390574 +659 474 2 891384739 +697 328 5 882621486 +358 114 5 891270652 +274 472 3 878945918 +387 513 5 886483330 +758 331 4 882322862 +671 1597 1 884035892 +454 147 3 888267455 +654 476 3 887863914 +844 144 3 877387825 +694 118 4 875729983 +907 333 5 885860288 +914 1355 1 887123886 +533 1174 3 882821669 +224 468 4 888104030 +889 979 3 880177435 +455 181 4 878585826 +840 512 5 891205371 +773 184 2 888540041 +514 949 3 886189510 +640 269 5 886803575 +707 64 3 886286170 +626 333 1 878771281 +943 595 2 875502597 +621 588 3 874965208 +843 133 3 879448431 +796 111 4 893047288 +699 137 4 878882667 +883 384 3 891694431 +834 25 3 890862468 +561 524 4 885807888 +889 29 3 880182428 +585 1475 3 891283681 +693 576 2 875484148 +116 298 3 876452555 +752 1127 3 891208170 +906 740 4 879435415 +498 673 3 881958343 +121 736 5 891387992 +532 234 5 889235367 +667 28 5 891034913 +679 727 4 884487961 +890 423 5 882402905 +262 255 3 879790816 +847 216 3 878940356 +883 137 5 891717356 +429 39 3 882386378 +749 658 4 878849404 +557 289 4 880484992 +606 50 5 878142864 +148 174 5 877015066 +937 515 5 876769253 +860 900 3 886354648 +787 877 2 888980193 +877 55 4 882678512 +699 220 2 885775430 +738 231 3 875350995 +869 269 4 884493279 +880 1151 3 880167454 +515 342 3 887659423 +868 825 1 877109435 +922 265 5 891447777 +788 444 3 880870626 +291 800 2 874834944 +500 411 2 883865826 +378 1074 3 880332802 +607 887 3 883878999 +276 39 3 874790995 +338 275 5 879438063 +409 180 5 881107155 +480 249 1 891207975 +432 288 5 889416456 +881 202 4 876537825 +218 204 3 877488692 +795 432 3 881258945 +763 607 4 878917850 +344 83 4 884901503 +790 431 3 885157159 +627 520 5 879529916 +18 242 5 880129305 +488 215 5 891294742 +93 276 2 888705257 +624 117 3 879792446 +796 151 5 893218765 +730 875 2 880310201 +776 432 1 891628977 +679 294 1 884312763 +826 679 2 885690712 +922 71 4 891448580 +450 43 4 887139080 +655 645 3 887474288 +843 56 3 879443174 +466 173 3 890285762 +440 923 5 891577843 +95 399 4 880572449 +843 566 3 879444766 +890 637 3 882404610 +671 1109 2 883546677 +804 692 5 879442122 +870 154 4 876319311 +236 510 3 890118543 +870 988 2 875050439 +476 90 3 883364433 +749 98 5 878847404 +899 471 4 884120007 +921 190 2 884673602 +932 589 5 891250609 +916 727 4 880845049 +690 70 2 881179584 +324 125 5 880575714 +122 357 3 879270084 +698 175 3 886367406 +468 135 5 875287895 +809 302 5 891036743 +747 603 5 888639362 +896 46 2 887160750 +537 497 4 886030863 +857 116 5 883432663 +311 91 3 884366439 +542 42 3 886532726 +271 472 2 886106165 +504 729 5 887832571 +918 190 5 891986720 +459 619 4 879563169 +435 685 2 884134345 +189 137 4 893264407 +943 62 3 888640003 +795 25 5 880556527 +795 120 3 883255416 +706 273 3 880997142 +527 558 4 879456162 +934 388 3 891197678 +462 655 5 886365467 +666 195 3 880314272 +256 1471 3 882164999 +660 1135 2 891201675 +303 636 3 879484695 +279 450 4 889326161 +608 303 4 880402983 +527 214 4 879456030 +796 484 5 892675528 +110 364 3 886989612 +912 496 4 875965939 +450 172 4 882372103 +929 271 2 880817603 +405 373 2 885548162 +916 134 5 880844123 +940 95 5 885921800 +601 135 4 876350443 +906 628 5 879435551 +912 143 5 875966694 +94 636 4 891721351 +336 585 3 877756966 +716 420 4 879796766 +857 988 2 883432423 +666 153 4 880314103 +889 190 3 880177994 +660 403 3 891357371 +125 1170 1 892838591 +838 235 2 887064515 +880 254 2 880167599 +900 294 4 877832113 +774 808 1 888557451 +765 222 2 880346340 +883 1222 5 891696999 +655 902 2 892333973 +936 14 4 886832373 +245 151 3 888513279 +608 23 5 880403239 +486 1176 3 879874388 +28 31 4 881956082 +653 809 3 880153620 +843 436 2 879443394 +709 214 1 879846922 +890 489 4 882402826 +747 875 3 888638455 +932 647 5 891250987 +774 307 1 888555792 +660 470 2 891199883 +269 186 2 891449670 +897 566 2 879991976 +655 118 2 887426666 +496 483 4 876065259 +504 205 3 887909299 +840 664 3 891204474 +532 339 5 892859148 +773 61 5 888538908 +177 174 4 880130990 +877 702 4 882677386 +745 207 2 880123609 +545 175 4 879899641 +925 323 4 884633287 +743 269 4 881277267 +504 476 5 887831447 +789 137 2 880332189 +18 88 3 880130890 +527 192 4 879455765 +843 271 5 879442947 +665 188 4 884293366 +616 349 4 891224748 +927 41 4 879195407 +532 739 5 893119335 +854 69 4 882814395 +622 174 4 882592559 +823 531 4 878437890 +889 17 4 880181910 +912 423 5 875966694 +807 969 4 892528375 +712 401 3 874957027 +807 161 4 892528919 +870 697 4 875050603 +174 99 3 886515457 +793 293 4 875104091 +152 294 4 880149098 +619 96 5 885954083 +506 529 3 874873615 +778 157 3 891233153 +103 294 4 880416515 +786 237 5 882842195 +857 283 5 883432633 +883 226 3 892557605 +393 288 3 887741960 +728 304 4 879442794 +18 856 5 880131676 +540 280 3 882157797 +280 3 2 891702406 +361 603 5 879441215 +875 753 3 876465188 +101 546 4 877137015 +936 249 5 886832808 +407 739 3 876344062 +833 240 4 875035624 +709 431 5 879848511 +919 1012 4 875289611 +901 35 4 877131685 +345 974 3 884991581 +633 77 3 877212173 +880 734 3 880175240 +442 268 4 883388092 +838 12 4 887067063 +851 881 3 875729751 +766 672 3 891310824 +64 234 4 889737800 +907 198 5 880160162 +627 28 3 879529987 +786 696 3 882842149 +896 474 3 887159426 +684 67 3 878762144 +7 132 5 891351287 +394 69 5 880887063 +293 185 5 888905840 +289 121 3 876789736 +804 432 3 879441677 +699 50 3 878881875 +447 25 4 878854630 +815 65 5 878694664 +603 222 4 891955922 +632 693 2 879458692 +804 265 4 879445037 +788 270 2 880867855 +119 751 3 886175361 +804 173 4 879442412 +747 86 5 888638958 +885 946 3 885714933 +791 9 5 879448314 +274 629 5 878946645 +918 179 2 891988337 +894 744 3 880416072 +393 398 4 889731753 +618 99 3 891308019 +870 471 4 885071869 +758 364 4 882055394 +156 157 4 888185906 +498 9 2 881954931 +931 116 4 891036734 +655 566 3 888893279 +889 97 3 880178748 +924 202 4 886760020 +600 373 3 888452490 +897 73 3 879991341 +749 9 3 878846903 +218 663 3 877488492 +592 1258 1 882608960 +486 831 3 879875316 +880 88 3 880174705 +690 73 2 881177271 +940 174 4 885921310 +623 202 1 891034620 +711 189 5 886030557 +736 286 4 878709365 +709 1218 4 879846623 +321 603 5 879438607 +128 468 1 879968243 +437 121 3 881001766 +878 317 4 880866054 +474 929 3 887916330 +541 110 4 883866114 +766 402 3 891310565 +102 785 2 892991376 +890 737 3 882917152 +837 1047 1 875722267 +721 323 3 877137598 +880 405 4 880167328 +870 641 4 875050524 +700 169 3 884493862 +94 1009 4 891722845 +535 25 4 879619176 +71 52 4 877319567 +128 229 2 879968071 +712 66 5 874729816 +870 192 5 889717102 +417 268 4 879649657 +664 611 5 878090705 +334 1202 4 891544680 +757 175 3 888445551 +896 1078 3 887160983 +693 697 4 875482574 +655 658 3 887427130 +907 713 5 880159172 +684 1301 3 878760019 +937 297 4 876769436 +487 431 3 883529593 +846 179 5 883948571 +805 772 3 881698881 +5 455 4 875635174 +411 8 3 891035761 +867 207 5 880079094 +887 760 5 881378669 +615 168 5 879449110 +474 582 5 887927728 +825 235 3 880756678 +409 475 4 881107750 +827 301 4 882201885 +648 197 3 884628644 +459 105 4 879563819 +747 39 4 888640684 +423 339 2 891394788 +881 106 4 879052493 +437 511 5 880141962 +434 15 3 886724453 +671 17 4 883546889 +207 73 3 876079087 +757 276 4 888444181 +843 275 3 879446680 +572 14 4 879449683 +586 218 3 884060705 +764 89 4 876245837 +815 650 2 878696213 +911 404 3 892840950 +897 97 5 879990622 +716 122 2 879794727 +89 15 5 879441307 +433 205 3 880585730 +751 179 4 889298074 +716 175 2 879795644 +513 841 4 885062602 +932 238 3 891250609 +940 319 2 884800944 +184 238 4 889909069 +504 185 5 887838624 +693 649 2 875483169 +719 620 4 879359034 +299 1300 2 877878382 +347 123 3 881654301 +870 302 4 878737704 +846 143 5 883948804 +783 331 3 884326461 +267 233 4 878972731 +678 515 4 879544782 +751 215 4 889133334 +674 539 1 887763151 +134 269 3 891732122 +215 181 4 891435597 +11 8 4 891904949 +624 307 3 891961056 +815 631 4 887978234 +701 275 5 891447228 +880 365 2 880242660 +751 117 4 889132269 +788 79 4 880868559 +863 339 3 889289353 +587 914 4 892871031 +763 730 5 878923456 +654 291 4 887863914 +853 299 4 879365092 +923 288 5 880386897 +640 184 5 889235992 +828 60 4 891380167 +796 316 5 892610692 +880 768 2 880242848 +907 729 5 880159821 +719 97 3 879360845 +887 252 4 881378972 +129 990 2 883245452 +665 126 4 884290751 +787 352 2 888979657 +135 554 3 879858003 +659 241 3 891387121 +788 363 2 880871088 +817 289 2 874815789 +435 549 3 884132588 +85 515 5 879829265 +629 144 5 880117430 +543 463 3 874864034 +838 408 4 887066040 +234 611 5 892078605 +537 948 1 886029239 +847 456 1 878939393 +790 585 2 885157686 +727 39 2 883712780 +443 175 2 883505396 +912 482 5 875965939 +887 926 5 881378537 +815 163 4 878695841 +256 245 4 882150152 +911 204 4 892839930 +592 1016 4 882608145 +82 895 1 884713704 +682 1178 1 888521866 +707 200 2 886286491 +795 121 3 880558035 +363 176 4 891495109 +627 1478 3 879530967 +700 73 3 884494380 +694 215 3 875728181 +758 1143 5 880672637 +537 508 4 886030108 +897 183 5 879990531 +883 227 3 891696930 +454 252 2 881959336 +198 526 4 884208273 +326 178 5 879875175 +914 451 2 887122085 +788 436 3 880871127 +622 1407 1 882672922 +880 719 3 880174961 +908 488 4 879722642 +724 1234 1 883757170 +868 180 4 877104913 +682 678 1 888516814 +263 323 1 891297485 +823 8 5 878437925 +930 283 4 879535544 +451 988 1 879012773 +223 405 1 891550005 +846 23 4 883948089 +821 476 4 874792403 +503 183 5 879454754 +666 273 3 880313292 +913 530 2 881367312 +771 304 5 886640562 +173 301 5 877557076 +788 97 3 880868235 +907 1119 5 880159865 +373 1530 2 877107138 +201 770 3 884112426 +908 479 4 879723022 +943 1011 2 875502560 +571 484 4 883354992 +916 154 4 880844552 +694 451 4 875729068 +536 378 5 882360405 +920 682 3 884220058 +630 357 3 885668090 +620 1066 5 889988069 +542 95 3 886533562 +711 116 5 888458447 +778 200 5 890726264 +812 678 4 877625294 +642 136 3 885602232 +885 196 3 885714201 +537 639 2 886031438 +889 512 5 880181372 +398 705 5 875658898 +707 4 3 886286170 +621 1035 4 880739654 +313 511 4 891013742 +429 25 4 882385985 +178 283 5 882823784 +727 440 1 883713548 +860 285 5 885990901 +577 196 5 880474357 +583 425 5 879384575 +527 168 5 879456405 +389 521 3 879991330 +663 276 3 889492435 +504 629 4 887841136 +772 259 2 877533957 +833 649 3 875224178 +711 180 4 876279059 +10 589 5 877891905 +497 22 5 879310730 +712 1221 4 874956641 +267 1145 3 878974608 +863 877 1 889289277 +806 1016 1 882386110 +435 2 4 884132619 +924 1 5 884371535 +693 591 3 875482779 +531 892 3 887049187 +767 505 4 891462560 +931 515 5 891036506 +507 252 5 889966054 +881 276 5 876536079 +802 261 3 875985032 +919 1109 3 875373824 +689 405 5 876676292 +661 170 4 888300680 +499 429 4 885599372 +318 692 4 884495561 +777 527 4 875980306 +364 268 3 875931309 +666 116 4 880313270 +854 8 5 882814571 +472 426 4 875980010 +711 238 4 879993126 +699 458 4 879148051 +429 1076 2 882387350 +747 85 3 888733144 +671 181 5 875388719 +629 245 3 880116240 +864 93 3 888889948 +288 211 5 886374473 +758 118 2 881978326 +268 37 3 876514002 +804 163 3 879445579 +405 140 3 885548932 +889 55 4 880181191 +859 293 4 885776056 +378 292 3 882136243 +299 785 2 889502865 +894 753 5 882404278 +347 180 5 881654101 +474 357 5 887924618 +707 921 4 886286361 +655 1161 3 887426446 +899 527 4 884121767 +632 679 4 879459321 +682 866 2 888522101 +862 79 5 879304623 +571 191 4 883354761 +343 202 4 876406256 +921 651 3 884673891 +550 313 5 883425610 +933 934 1 874938412 +360 651 4 880355845 +230 233 1 880485513 +775 690 3 891033022 +851 264 2 890343477 +519 1238 5 883248595 +919 326 3 875288304 +942 31 5 891283517 +385 504 4 879442360 +456 580 4 881374767 +10 238 4 877892276 +695 268 5 888805864 +711 66 4 879994801 +396 472 5 884646647 +682 184 4 888519307 +943 549 1 888639772 +880 625 4 880242933 +660 231 2 891357371 +429 469 4 882386751 +716 218 3 879796766 +500 443 4 883873679 +878 197 4 880866971 +85 204 4 879828821 +355 682 4 879485523 +527 234 5 879455706 +200 176 5 884129627 +717 333 4 884641681 +762 955 5 878719551 +554 1046 4 876550526 +934 1037 1 891197344 +864 471 5 888888862 +815 434 3 878696619 +927 1089 5 879177457 +788 68 3 880869819 +847 211 4 878940383 +548 233 5 891044596 +186 55 4 879023556 +921 422 3 879380957 +900 124 4 877832837 +771 181 4 880659653 +796 12 5 892662483 +77 121 2 884733261 +894 107 3 880993709 +777 202 5 875980669 +109 144 4 880572560 +588 755 3 890025797 +747 1631 3 888638957 +826 554 4 885690749 +368 448 3 889783365 +655 942 4 888685850 +684 66 4 878762033 +850 71 5 883195118 +889 248 4 880176984 +618 470 3 891308615 +606 204 4 880924384 +215 208 4 891436202 +766 234 4 891309558 +552 237 4 879221617 +711 566 2 879995259 +551 1304 1 892783942 +279 805 3 879573022 +314 173 1 877889359 +922 568 3 891450524 +940 549 2 885921915 +643 474 5 891446955 +456 747 4 881374331 +440 57 5 891577949 +6 464 2 883601365 +127 50 4 884364866 +587 333 4 892871031 +624 293 4 879792623 +705 625 5 883427691 +854 744 2 882812787 +716 662 3 879794962 +372 326 4 876869330 +537 328 2 886029083 +710 185 4 882064321 +690 1118 1 881177459 +606 257 5 880922503 +561 762 3 885809654 +667 357 5 891034767 +599 1278 5 880952185 +659 234 4 891384798 +655 6 4 887425812 +805 209 4 881684202 +690 240 1 881179469 +905 475 3 884984329 +751 144 4 889133219 +629 196 4 880117062 +389 182 5 879991175 +360 257 4 880354515 +912 602 5 875965981 +897 385 3 879990622 +940 474 3 885921687 +766 747 5 891310210 +666 405 2 880313662 +468 584 4 875288771 +500 31 4 883875092 +622 721 4 882670610 +924 277 3 889286765 +663 318 4 889493576 +843 1480 2 879449377 +601 318 4 876348572 +524 230 3 884636907 +764 673 4 876246504 +774 412 3 888558924 +198 71 3 884208419 +625 204 3 891999874 +900 480 4 877833603 +620 323 5 889986580 +924 228 4 886327826 +673 345 4 888787396 +757 515 5 888444007 +794 127 5 891035117 +370 650 5 879435369 +901 1620 5 877126743 +259 294 3 881641699 +119 458 5 874774575 +708 1152 5 892719143 +655 912 3 891817522 +905 313 4 884982870 +665 154 3 884294025 +881 506 4 876539020 +419 212 1 879435749 +896 275 4 887158713 +894 751 3 885427971 +682 559 4 888522837 +537 286 3 886028498 +521 290 3 884477262 +643 179 4 891447901 +903 281 4 891031677 +49 301 3 888065640 +707 305 5 879439188 +240 340 4 885775710 +746 62 3 885075434 +331 467 3 877196702 +7 427 5 891352220 +634 515 4 877018346 +13 424 1 882397068 +429 506 4 882386711 +641 64 4 879370337 +749 1139 3 878850084 +891 717 4 883489728 +698 131 4 886366955 +886 803 2 876033015 +881 523 4 876537825 +286 189 3 877533296 +709 546 4 879848475 +637 685 3 882904829 +537 72 1 886031966 +453 750 4 888201942 +838 168 5 887066678 +777 204 5 875980670 +537 140 2 886032001 +899 410 1 884122535 +918 170 4 891987205 +666 1013 3 880314029 +730 873 2 880310035 +712 94 4 874957005 +899 188 2 884121720 +429 111 2 882386532 +308 550 4 887738847 +568 199 3 877906935 +429 167 3 882386629 +655 31 3 887523200 +911 203 4 892841196 +654 689 3 887863194 +831 748 2 891354297 +661 258 4 876012997 +73 197 5 888625934 +875 481 5 876465370 +447 200 3 878855963 +506 836 4 874875062 +689 475 4 876676334 +902 176 5 879465834 +458 302 5 886394314 +605 215 3 879426163 +559 70 3 891035917 +450 345 2 884906309 +640 55 5 874777765 +402 95 5 876267235 +336 294 4 877759103 +856 688 2 891489666 +934 629 4 891191334 +933 52 3 874854161 +716 136 5 879795790 +43 102 4 875981483 +896 302 2 887157234 +923 3 4 880387707 +438 281 4 879868494 +354 185 3 891218068 +46 93 4 883616218 +881 121 5 876536391 +630 123 4 885668203 +922 94 3 891449333 +437 203 1 880140978 +792 544 4 877910822 +79 10 5 891271901 +875 172 4 876465072 +788 503 4 880869984 +903 649 4 891033628 +903 412 2 891032077 +847 161 2 878940830 +443 748 4 883505171 +909 1121 5 891920703 +374 55 2 880394929 +923 117 4 880387598 +684 217 2 875811965 +461 575 2 885355930 +833 68 4 875224515 +588 1091 4 890027865 +526 100 5 885682448 +655 1113 3 887427810 +543 212 4 875659175 +13 184 1 882397011 +699 9 2 878882133 +880 87 4 880241913 +796 483 5 892663044 +864 658 2 888890690 +798 491 4 875743196 +487 385 4 883530454 +887 1033 4 881379295 +387 521 3 886483906 +909 509 5 891920211 +151 418 3 879525002 +732 322 3 882590201 +919 471 3 875289638 +385 234 1 879445493 +263 196 4 891298164 +84 70 5 883452906 +271 97 5 885848736 +758 479 5 881975539 +833 96 5 875132134 +601 173 5 876348736 +709 672 2 879848239 +795 768 3 883252985 +655 1356 3 887426059 +606 202 4 880924921 +860 286 4 874967063 +901 578 3 877131961 +870 385 3 879714159 +524 515 4 884637409 +660 657 2 891199579 +303 236 4 879468274 +934 88 4 891194866 +141 1280 1 887424890 +716 660 4 879796718 +627 289 2 879530899 +940 4 2 885922040 +643 629 3 891450168 +714 1028 4 892777877 +913 656 3 881726004 +666 127 5 880139180 +265 284 4 875320689 +327 305 5 887820828 +194 125 2 879548026 +94 238 5 891721168 +682 941 4 888518035 +677 151 4 889399431 +588 239 5 890025704 +249 195 4 879572911 +716 174 5 879795025 +889 178 5 880178078 +894 45 4 882404250 +538 172 4 877107765 +845 346 3 885409493 +880 1478 3 880242547 +804 64 5 879442001 +62 217 2 879376387 +729 313 3 893286638 +291 64 5 874867994 +642 51 5 886132172 +919 741 3 875288805 +532 918 4 893013954 +394 940 3 881059103 +796 724 2 893047241 +719 456 1 879373729 +684 265 4 878759435 +697 127 5 882622481 +807 624 3 892530705 +682 405 2 888522456 +790 926 2 884462598 +897 71 5 879991566 +717 685 4 884642581 +59 515 4 888204430 +72 518 4 880036824 +276 179 5 874791102 +450 741 3 882376282 +221 246 5 875244457 +286 455 1 889652378 +807 63 5 892531504 +600 182 4 888451750 +916 298 3 880843334 +389 135 2 879990996 +121 257 5 891390014 +645 191 5 892053644 +622 248 4 882590420 +716 428 3 879795838 +634 15 4 875729436 +913 183 4 880757553 +503 496 5 880472474 +889 652 5 880180784 +761 275 4 876190130 +863 306 5 889289570 +940 317 4 885921577 +751 399 3 889298912 +798 377 3 875639061 +255 840 1 883216958 +64 463 4 889739212 +938 595 2 891357042 +373 528 3 877104115 +558 744 4 879436027 +871 258 5 888192970 +474 222 4 887915479 +694 657 4 875728952 +593 949 2 875672949 +879 127 5 887761249 +483 50 5 878953485 +576 294 3 886960098 +940 751 3 884801227 +674 751 3 887762398 +645 172 4 892054537 +663 696 3 889492877 +634 933 3 877017951 +668 367 5 881605587 +800 751 4 887646980 +839 50 5 875751930 +544 294 2 884795581 +186 294 3 879024099 +881 175 2 876537418 +650 493 4 891369554 +454 471 3 881960445 +698 25 2 886367917 +662 13 4 880570265 +670 484 5 877975391 +272 174 5 879455043 +37 578 3 880916010 +552 100 4 879221716 +324 286 5 880574766 +183 449 2 891463592 +695 903 4 888806082 +711 381 5 879994749 +911 102 3 892840889 +216 496 5 880233635 +747 269 4 888638183 +934 208 5 891191258 +127 690 1 884363851 +506 710 5 874874151 +517 237 1 892659923 +721 84 3 877147675 +291 1489 2 875086766 +268 61 4 875309282 +738 260 2 875348571 +682 183 3 888520638 +887 699 1 881379566 +883 342 4 891692116 +669 269 3 891517159 +866 302 2 891220955 +735 277 3 876698604 +664 1098 3 876526152 +655 657 3 891585504 +494 845 4 879541429 +207 208 4 878191679 +210 1 5 887731052 +868 56 3 877107143 +453 273 4 877552678 +592 410 5 882608402 +919 144 4 875373889 +13 174 4 882139829 +927 560 2 879191978 +933 179 5 874854135 +530 443 4 883790943 +697 1089 3 882621958 +727 66 3 883712068 +632 64 5 879457525 +299 642 4 877881276 +807 96 3 892528564 +863 1243 4 889289277 +303 783 2 879543756 +663 173 3 889493818 +712 230 3 874730467 +842 754 1 891218251 +889 185 4 880180266 +897 435 3 879991069 +397 58 5 885349202 +807 968 4 892530498 +887 1051 4 881378773 +203 237 3 880434411 +655 1380 4 887425625 +835 272 4 891035309 +883 45 5 891695570 +671 210 5 884035892 +148 969 4 877398513 +709 79 3 879846440 +629 234 4 880117215 +652 286 3 882567012 +823 660 5 878438435 +893 1215 3 874829287 +110 1055 2 886988134 +542 952 4 886533193 +276 407 2 874792310 +343 13 5 876402894 +816 349 4 891711554 +912 318 4 875966385 +846 505 5 883948343 +871 435 3 888193336 +608 286 4 880402272 +240 307 4 885775683 +717 250 1 884715146 +297 248 3 874954814 +823 218 4 878438232 +560 249 5 879976247 +588 107 5 890030781 +499 915 4 892501128 +246 155 1 884923687 +727 393 3 883712397 +453 797 1 888206339 +503 823 2 879438817 +591 1041 2 891031644 +796 775 2 893047691 +607 435 3 883879473 +637 1028 3 882905182 +413 307 2 879968794 +587 315 4 892870956 +726 117 1 890080144 +912 197 5 875966429 +846 1035 4 883949771 +774 550 2 888557277 +569 7 4 879793909 +899 385 3 884121612 +234 686 3 892334976 +445 274 2 891200164 +215 172 4 891435394 +761 358 3 876189689 +896 1217 2 887160446 +943 181 4 875409978 +653 248 3 884405730 +764 95 5 876246475 +189 157 4 893265865 +764 591 3 876243572 +697 284 5 882622581 +788 427 2 880868316 +758 968 5 881976746 +125 168 5 879454793 +934 709 3 891196314 +90 192 4 891384959 +690 294 3 881177237 +656 896 5 892318842 +451 261 2 879012647 +892 501 3 886611023 +923 281 4 880387875 +822 1110 4 891036395 +833 56 4 875122716 +642 318 2 885602369 +287 222 5 875334224 +557 875 4 881179291 +503 269 5 879438024 +671 679 3 884036050 +916 427 4 880844654 +500 483 4 883874039 +807 174 5 892528866 +213 831 4 878871062 +247 340 3 893081396 +938 105 1 891357137 +931 1022 1 891036003 +750 304 4 879446013 +479 273 4 879459909 +18 100 5 880130065 +889 1195 3 880182317 +156 655 3 888185677 +622 8 4 882592421 +314 1053 5 877891490 +809 258 3 891036903 +883 399 5 891696999 +235 66 2 889655266 +796 301 1 892611903 +682 210 4 888522326 +639 661 4 891239155 +771 768 4 880659867 +671 176 2 883546120 +750 876 2 879446014 +330 376 4 876547378 +280 112 3 891702485 +808 286 4 883949560 +167 1200 4 892738384 +846 427 4 883948948 +495 185 5 888633042 +435 76 3 884131328 +889 154 4 880180612 +892 100 5 886607642 +374 443 5 880937735 +622 665 2 882671769 +576 255 3 887081086 +864 1016 4 877214125 +815 616 1 878697189 +772 323 4 876250551 +901 234 4 877287882 +406 88 2 880131608 +712 38 4 874730553 +451 878 1 879012811 +708 127 3 877325213 +894 307 3 880415834 +337 25 3 875184963 +943 412 2 875501856 +189 8 5 893265710 +559 661 3 891034040 +918 737 3 891988123 +916 2 3 880845391 +545 431 3 879899472 +405 59 1 885549507 +537 174 3 886030622 +114 153 3 881309622 +878 70 3 880868035 +804 180 4 879442348 +501 979 3 883348308 +749 584 3 878848483 +738 408 5 875349584 +366 637 5 888858078 +639 382 2 891239913 +666 1154 3 880567658 +450 118 3 882395166 +371 127 4 877487052 +591 216 4 891031426 +542 393 3 886533142 +437 94 4 881001436 +645 960 4 892054278 +855 86 2 879825462 +842 751 4 891218192 +558 275 4 879435896 +874 191 4 888633311 +916 317 4 880845098 +694 630 3 875728912 +865 111 1 880144123 +119 124 4 874781994 +796 178 3 892662223 +932 234 3 891250060 +663 56 5 889493502 +297 181 4 875410178 +748 328 4 879454208 +746 281 3 885075434 +660 266 2 891197639 +92 118 2 875640512 +393 249 3 887744373 +2 304 4 888979197 +887 763 5 881378087 +655 1107 4 888813272 +85 921 3 879827989 +759 222 5 881476922 +505 584 4 889334067 +7 31 4 892134959 +26 293 3 891371369 +532 352 3 886585109 +450 386 4 882397049 +472 1139 5 875983231 +698 143 3 886367530 +625 283 3 891629673 +641 30 4 879370365 +708 278 4 877325956 +939 121 5 880261373 +807 416 3 892528771 +707 648 4 886285824 +150 123 4 878746852 +922 173 5 891448040 +896 86 1 887159926 +481 580 4 885829153 +910 289 3 881420491 +281 323 3 881200789 +658 471 4 875145879 +915 328 2 891031450 +886 663 4 876032823 +724 683 1 883757834 +815 69 4 878694106 +854 597 2 882813143 +724 333 4 883757670 +303 97 5 879468459 +554 15 4 876231964 +805 1054 3 881705637 +849 633 5 879695420 +532 87 5 892866230 +324 310 4 880574827 +670 175 2 877975448 +835 97 5 891033501 +738 200 3 875350086 +634 285 4 875728872 +711 1168 4 879995753 +185 703 4 883524172 +880 124 5 880166847 +722 100 4 891280894 +577 174 5 880475043 +894 327 4 881625708 +374 278 2 880393754 +119 64 4 874781460 +885 383 2 885713939 +682 111 3 888521740 +924 121 4 886760071 +184 1101 4 889909515 +710 419 4 882063766 +864 38 3 888891628 +716 222 4 879793192 +796 451 5 893047167 +878 116 2 880869638 +637 13 1 882904458 +773 1071 2 888539662 +823 198 4 878439065 +581 222 3 879641698 +342 149 5 874984788 +840 132 4 891204356 +409 289 1 881105077 +498 134 3 881956498 +200 812 4 884130621 +796 516 4 893048115 +699 15 1 878882511 +788 591 3 880869469 +898 242 4 888294441 +686 11 4 879546083 +240 748 3 885775831 +848 25 5 887046890 +927 780 1 879195783 +417 49 3 880951737 +1 149 2 878542791 +291 195 4 874835165 +814 218 3 885411030 +883 134 5 891754950 +825 181 4 880756224 +587 258 4 892871069 +70 91 3 884068138 +72 58 4 880036638 +181 871 2 878963168 +632 196 3 879457064 +625 294 3 891536483 +76 182 4 882606392 +618 568 4 891309409 +936 181 4 886832596 +268 475 4 875306644 +417 180 5 879647604 +942 969 4 891282817 +805 288 1 881695244 +43 845 5 883955547 +932 380 4 891250498 +718 831 3 883349663 +364 687 1 875931561 +249 408 5 879572540 +751 367 4 889133950 +885 189 5 885714820 +749 141 4 878848217 +447 79 3 878856110 +314 419 4 877889039 +896 732 4 887159674 +773 265 2 888540146 +628 258 5 880777167 +675 286 4 889488431 +727 268 4 883708087 +452 945 4 888323595 +660 174 4 891199293 +222 734 2 881060735 +831 83 4 891354848 +936 333 3 886831415 +805 94 1 881705412 +894 748 3 879896233 +770 15 5 875971902 +733 286 4 879535471 +790 50 4 884461387 +248 806 3 884534772 +828 510 3 891037231 +655 1646 3 891913577 +690 238 5 881177302 +460 321 3 882910510 +632 1183 2 879458142 +514 306 4 876672606 +773 121 2 888540163 +735 676 3 876698837 +15 283 4 879455505 +707 347 5 886285277 +646 908 3 888529054 +268 51 3 875745202 +943 184 5 888639247 +798 781 2 875639061 +872 763 3 888479405 +13 619 3 886952245 +693 97 5 875482604 +417 713 2 879646052 +634 1049 2 877018004 +94 746 4 891721716 +498 234 4 881957625 +747 663 5 888733111 +661 64 4 876014060 +487 67 3 884050247 +666 640 4 880314477 +36 261 5 882157581 +896 721 4 887160465 +813 898 1 883752264 +681 990 4 885409770 +407 491 4 875550328 +800 292 5 887646979 +741 692 1 891019587 +892 291 4 886607744 +312 50 5 891698300 +203 879 4 880433474 +801 354 4 890332645 +416 311 3 886314877 +292 282 4 881104661 +655 874 4 888984255 +514 12 5 875318263 +786 71 5 882843786 +851 619 4 875730629 +62 207 3 879375676 +665 418 4 884294611 +60 654 4 883326399 +896 230 4 887161728 +854 511 4 882814298 +347 249 5 881652683 +867 183 3 880078863 +719 64 5 879360442 +764 117 5 876244991 +342 88 1 875320644 +246 651 4 884921638 +870 195 4 875050602 +896 226 3 887160270 +162 122 2 877636300 +666 499 4 880139562 +933 451 1 874938507 +253 699 4 891628630 +942 131 5 891283094 +892 172 5 886607743 +592 15 5 882608457 +472 252 4 875978191 +649 181 4 891440309 +790 298 5 884461849 +18 418 3 880130515 +472 678 4 883904118 +834 294 3 890860159 +239 12 5 889178729 +807 526 5 892530061 +401 678 3 891031936 +666 310 5 880313163 +715 158 2 875965035 +934 121 3 891189819 +883 506 5 891754950 +934 771 3 891196950 +724 328 4 883757727 +743 276 5 881277855 +552 323 2 879221267 +684 756 4 875811455 +660 1 3 891406276 +927 230 5 879199250 +624 845 3 879793129 +916 22 4 880844627 +35 266 3 875458941 +327 168 4 887820828 +870 28 4 875680258 +554 179 3 876369785 +537 428 4 886031506 +620 1503 4 889988196 +663 9 2 889492435 +457 956 4 882548214 +888 286 5 879364981 +356 258 5 891406040 +862 228 5 879305097 +275 229 3 876198296 +478 946 2 889396917 +825 245 5 882109193 +684 8 5 878761120 +880 678 3 880166662 +817 327 4 874815593 +692 208 4 876953340 +121 50 5 891390014 +671 686 3 884036365 +648 62 5 884882916 +785 183 5 879439232 +721 582 3 877140490 +888 762 5 879365497 +401 490 3 891033250 +8 336 3 879361664 +934 210 4 891191206 +463 866 3 877385862 +727 227 4 883710974 +664 321 3 876526179 +323 847 3 878739225 +770 326 4 876598016 +693 521 5 875482092 +201 566 3 884112352 +883 372 3 891694544 +774 204 3 888556316 +564 298 3 888730534 +833 249 1 875133458 +707 618 3 886288282 +330 989 5 876543930 +739 318 4 886958831 +847 153 4 878941496 +586 183 4 884059196 +655 1084 3 888813272 +698 1 4 886366815 +435 39 3 884131822 +501 100 4 883347799 +657 111 5 884239368 +578 298 4 888957584 +743 302 5 881277267 +711 265 2 879994536 +877 176 5 882678484 +648 7 3 882211109 +770 328 3 875971736 +642 173 5 885602314 +798 1066 2 876175427 +537 39 2 886031407 +823 83 3 878438024 +906 307 3 879434378 +788 554 3 880870257 +730 100 5 880310371 +130 928 4 876251287 +193 182 4 890860290 +670 969 2 877975070 +919 193 2 875373471 +932 498 5 891250363 +387 239 1 886483970 +741 239 2 891456040 +416 179 2 876699578 +94 357 5 891720921 +666 213 4 880139120 +825 250 5 880755693 +435 420 4 884132561 +796 554 2 893048713 +322 507 4 887314119 +932 515 4 891249373 +880 815 4 893028814 +707 527 5 880061699 +872 925 4 888479654 +478 283 4 889388137 +913 273 3 881037670 +499 173 5 885599307 +666 98 4 880139381 +13 774 1 882396913 +486 515 5 879874417 +636 10 5 891449123 +757 665 3 888466652 +580 866 4 884125856 +916 4 4 880844395 +889 435 4 880179536 +757 257 4 888444400 +848 65 2 887038527 +731 283 4 886182367 +669 323 1 891182792 +388 672 4 886441083 +269 202 2 891450405 +90 209 5 891383173 +927 67 4 879190473 +934 675 4 891192285 +848 133 4 887047308 +924 742 3 886065661 +460 137 5 882912418 +677 243 3 889399113 +896 542 3 887160677 +592 58 5 882956388 +683 271 3 893284183 +472 67 4 892790628 +943 655 4 888639269 +820 313 5 887954934 +882 1060 3 879862652 +784 333 4 891387501 +66 535 4 883602044 +539 306 4 879787770 +394 202 5 880888245 +943 96 4 888638920 +807 133 5 892705060 +21 619 2 874951416 +436 840 3 887771997 +143 288 5 888407586 +782 691 3 891498079 +645 258 3 892051708 +709 402 3 879849185 +924 173 5 885458060 +898 286 2 888294408 +648 1033 2 882212288 +682 86 2 888518206 +44 625 3 878348691 +938 1012 5 891356500 +821 161 4 874793898 +864 181 5 888887984 +921 1034 3 879380457 +935 121 4 884472434 +346 88 4 874949380 +833 1118 3 875133924 +645 208 5 892054797 +176 458 4 886048305 +391 187 4 877399030 +598 690 3 886710735 +739 465 1 886959039 +727 546 2 883709607 +409 705 2 881109175 +179 538 4 892151231 +733 742 3 879535502 +57 988 4 883696785 +708 258 5 892719007 +269 1103 5 891447773 +654 269 4 889451420 +886 1435 3 876034174 +661 304 2 886829961 +474 1286 2 887927670 +23 154 3 874785552 +682 820 3 888523323 +892 403 3 886610372 +389 603 5 880086943 +942 500 5 891282816 +910 508 4 880821349 +524 311 4 884287428 +655 514 5 887650683 +682 738 3 888522021 +868 214 3 877106470 +650 620 2 891383977 +932 1451 5 891249675 +500 16 4 883865462 +843 1118 2 879448112 +537 517 4 886031341 +943 373 3 888640275 +605 619 4 880762205 +880 421 2 880243204 +560 151 3 879976542 +653 1183 1 880153329 +887 318 5 881379649 +880 689 4 880166577 +921 755 4 884673910 +877 70 5 882677012 +911 835 3 892838405 +153 568 4 881371140 +932 161 3 891251507 +872 977 3 888479737 +653 161 4 878854247 +707 381 3 886286457 +885 237 5 885715151 +888 137 4 879365104 +422 302 3 877162650 +138 14 3 879022730 +770 1012 5 875972730 +463 1009 3 877386047 +727 665 3 883713257 +763 222 5 878918406 +848 501 3 887048073 +878 481 5 880870854 +942 479 4 891283118 +497 231 3 879310883 +650 1215 3 891381850 +730 237 3 880310233 +398 96 4 875716709 +542 181 4 886532359 +717 299 4 884641743 +363 1067 3 891496849 +581 475 4 879641850 +884 475 4 876858914 +417 743 2 880953053 +611 680 4 891636125 +532 22 5 892867296 +910 414 4 881421332 +674 313 5 887762296 +899 934 3 884120603 +630 535 4 885667624 +796 281 4 893194929 +776 866 3 892313273 +892 88 4 886609884 +659 70 4 891383412 +713 882 3 888881988 +883 55 4 891696864 +703 322 3 875242336 +707 317 3 886286433 +659 315 3 891044991 +676 750 4 892685252 +268 176 5 875309998 +57 323 3 883696709 +690 208 5 881177302 +845 909 4 885409789 +913 210 2 880826706 +251 79 5 886271733 +916 135 4 880844552 +457 676 3 882395400 +880 21 2 880174961 +916 50 5 880843436 +728 116 4 879443291 +812 245 2 877625367 +911 240 1 892840297 +643 159 3 891449345 +286 250 4 876521887 +405 26 3 885545552 +679 322 3 884312763 +650 391 2 891382877 +405 1041 5 885547447 +659 708 3 891386641 +774 447 1 888557715 +332 678 4 887916284 +531 898 5 887049081 +455 550 4 879112700 +830 265 5 891561607 +934 179 2 891191600 +754 237 3 879451805 +524 82 4 884636583 +843 69 3 879446476 +274 1051 4 878945763 +25 121 4 885853030 +452 179 5 875265368 +919 246 3 875288523 +522 480 5 876961076 +613 435 5 891227299 +882 416 4 879879868 +734 487 4 891025498 +474 479 5 887923972 +712 1503 4 874730235 +823 173 5 878438148 +715 28 5 875963242 +393 125 4 887744239 +317 260 4 891446887 +597 151 4 875342314 +919 717 3 875288805 +697 975 1 882622044 +13 49 4 882399419 +883 1115 4 891692765 +526 273 2 885682562 +889 226 2 880182016 +883 65 4 891717319 +553 506 4 879948655 +486 408 3 879874481 +85 1113 2 879454981 +608 735 4 880406799 +894 311 4 880993317 +210 174 5 887736045 +606 475 4 878143785 +318 275 4 884470718 +815 614 3 878695964 +707 638 4 886286361 +497 1046 3 879362041 +894 1379 4 879896673 +744 9 3 881170416 +918 64 4 891987025 +790 51 3 885156193 +860 311 4 882120528 +872 350 3 888478840 +693 191 2 875482136 +769 235 3 885424186 +233 70 5 879147810 +749 740 3 878847716 +660 742 2 891198312 +611 288 3 891636073 +234 641 4 892078297 +751 382 3 889298463 +932 489 4 891249710 +684 483 5 878576905 +59 1074 4 888206409 +877 582 2 882677280 +804 123 4 879443645 +551 209 5 892777123 +313 232 3 891014957 +883 89 5 891696864 +942 172 5 891282963 +886 1231 3 876033828 +938 300 3 891350008 +287 64 5 875336775 +712 417 4 874729750 +207 597 3 876018471 +669 482 4 892550170 +795 588 5 880587862 +389 1121 4 879991485 +805 806 4 881698175 +406 513 5 879445378 +151 427 5 879524108 +795 257 3 881252002 +747 1134 5 888732609 +201 1398 4 884140079 +342 1012 4 874984639 +660 238 3 891200340 +853 332 3 879364822 +883 770 4 891696957 +215 54 4 891436607 +553 528 3 879949180 +101 866 4 877137015 +551 1253 2 892784629 +303 993 2 879544576 +303 514 5 879466667 +811 307 4 886377248 +932 1050 4 891251015 +684 411 3 875811455 +650 133 4 891381546 +713 750 3 888881939 +314 949 4 877890428 +737 474 5 884314740 +704 173 4 891397058 +692 411 4 876954021 +862 597 3 879303697 +159 591 4 880557060 +758 91 4 881977375 +731 482 3 886184770 +933 209 2 874854678 +588 380 3 890028987 +806 521 3 882387595 +561 470 3 885809872 +332 769 3 888360532 +567 657 5 882425762 +889 71 3 880180849 +269 717 1 891456493 +931 312 4 891036105 +894 471 4 880416314 +846 69 5 883947500 +622 1060 3 882671160 +718 685 4 883349301 +805 195 3 881694693 +474 423 5 887924425 +458 845 3 886394527 +472 421 5 875982200 +97 173 3 884238728 +42 111 1 881105931 +489 299 2 891447522 +408 272 4 889679683 +858 690 3 879459087 +436 925 4 887770507 +838 128 4 887066724 +889 150 5 880176984 +435 472 2 884133466 +894 275 4 882404137 +494 181 4 879541298 +703 123 4 875242787 +435 501 3 884132266 +334 761 2 891549718 +326 520 5 879875151 +805 568 3 881694854 +26 751 4 891347477 +896 497 3 887158332 +532 549 5 888637085 +379 94 5 883156810 +314 756 3 877886641 +926 300 3 888351623 +889 734 3 880182815 +577 768 3 880474787 +557 246 5 880485693 +737 11 3 884314903 +481 663 4 885828297 +823 69 5 878438095 +504 364 2 887912382 +44 328 4 878340848 +716 432 5 879795269 +601 325 4 876346551 +496 559 5 876068153 +14 654 4 890881294 +870 79 4 879270313 +200 470 4 884129782 +721 991 3 877137214 +659 479 5 891383412 +176 340 5 886046979 +553 81 3 879948732 +893 411 3 874829056 +731 66 4 886184577 +573 179 4 885844091 +738 659 4 875350804 +402 228 3 876267173 +664 53 3 876526580 +716 208 5 879795790 +877 203 4 882678427 +821 56 5 874793847 +833 177 5 875123299 +883 86 3 891693086 +288 199 4 886629592 +909 682 3 891920763 +721 678 3 877137527 +882 684 3 879877026 +721 423 5 877141373 +902 294 2 879463212 +891 25 5 891638734 +835 294 3 891032356 +670 603 5 877974465 +453 120 1 877553678 +878 517 4 880866687 +918 638 4 891987267 +8 510 4 879362233 +224 991 1 888082277 +379 181 4 880525368 +567 527 3 882426673 +876 276 4 879428354 +932 428 4 891251105 +653 581 1 880152819 +301 69 5 882076682 +798 1469 3 876175427 +573 286 3 885843476 +711 736 5 879993871 +409 538 3 881104756 +496 721 5 876067215 +56 225 2 892910292 +679 50 5 884486758 +862 173 5 879304484 +191 315 5 891560253 +909 165 5 891920233 +314 1217 2 877891638 +690 202 2 881177349 +698 499 3 886366515 +648 205 3 884628607 +868 233 2 877109566 +116 56 5 886310197 +889 327 3 880176620 +425 92 5 878738335 +719 285 4 877917156 +731 207 4 886182827 +524 708 4 884636645 +286 274 2 876521917 +553 498 4 879949042 +913 302 4 880794297 +429 596 3 882385808 +90 1192 5 891384673 +291 223 5 874867912 +479 137 4 889125448 +897 205 3 879990556 +341 299 5 890757745 +676 687 1 892685803 +405 209 3 885547124 +345 38 2 884993830 +637 246 2 882903447 +295 461 5 879966498 +130 419 5 876251515 +270 234 5 876955976 +655 411 3 887650512 +514 24 3 875463164 +726 323 3 889828641 +487 720 4 884036466 +721 660 5 877147616 +763 1101 3 878918486 +432 827 3 889416570 +925 299 3 884717478 +425 1416 3 878738695 +748 234 4 879454475 +914 692 3 887122324 +416 302 5 893214127 +712 588 4 874956515 +918 213 5 891988054 +291 27 3 874835024 +285 183 4 890595859 +751 558 3 889298216 +387 175 5 886479771 +650 506 3 891385508 +665 98 4 884293569 +425 294 2 878737512 +222 17 2 878183079 +1 43 4 878542869 +716 185 5 879796046 +828 275 3 891035614 +405 856 1 885546287 +178 993 5 882824592 +822 25 3 891039543 +592 1022 5 885280183 +535 86 4 879618385 +668 50 5 881605642 +666 194 3 880139348 +943 127 5 875501774 +865 294 4 880235263 +926 288 3 888636202 +121 12 5 891390014 +707 882 4 879439382 +896 411 2 887160842 +799 174 5 879254026 +851 125 4 875730826 +503 223 5 880472362 +625 751 4 891536426 +880 435 4 880167778 +880 1013 3 880167355 +697 815 3 882622430 +334 187 4 891547107 +843 185 3 879443341 +870 186 4 875680186 +567 178 4 882425820 +41 194 3 890687242 +666 7 4 880313329 +231 866 3 879965961 +643 197 4 891446983 +586 288 4 884057861 +862 462 4 879304624 +918 606 4 891987132 +155 306 5 879371121 +660 746 4 891199478 +213 627 4 878955680 +291 785 4 875086308 +696 1126 3 886404617 +708 546 3 877325601 +866 887 3 891221165 +298 9 4 884126202 +474 487 4 887923972 +286 123 5 876521586 +902 480 5 879465711 +653 167 2 880153429 +263 434 4 891299514 +788 1112 3 880870428 +854 49 4 882814665 +773 154 5 888539471 +891 1028 3 883489521 +889 271 3 880176573 +229 316 1 891632347 +715 222 3 875962227 +710 135 5 882064041 +325 176 3 891478455 +802 299 4 875986155 +379 1075 3 888044628 +918 16 4 891988560 +269 65 4 891448072 +497 394 3 878759862 +933 80 2 874938689 +405 241 1 885547909 +627 665 3 879531459 +698 257 3 886366141 +878 99 4 880870130 +452 481 5 885544110 +634 109 4 877017810 +718 750 3 883449953 +927 125 4 879177298 +433 457 1 880585554 +793 129 4 875104067 +804 1210 2 879447476 +880 100 5 880166966 +720 262 4 891262608 +43 4 4 875981421 +922 50 5 891447447 +937 224 4 876769480 +569 325 1 879793149 +703 300 4 875242077 +496 651 2 876065610 +805 719 4 881705389 +776 479 4 891813013 +303 997 2 879544219 +716 399 3 879797414 +188 455 4 875075432 +892 588 5 886607879 +308 546 3 887740500 +724 893 3 883757874 +751 111 3 889132657 +459 455 2 879563392 +722 628 4 891280894 +864 191 4 888887869 +533 215 4 879438941 +484 22 5 891194841 +810 269 5 891293811 +557 176 4 880486028 +720 310 4 891262762 +524 796 3 884636958 +740 302 5 879523187 +736 127 4 878709365 +719 88 3 888454637 +641 134 5 879370062 +691 500 3 875543068 +210 302 5 890059415 +927 739 3 879191360 +687 313 5 884651420 +938 873 3 891356085 +601 168 5 876350944 +870 949 3 881001249 +77 156 4 884733621 +885 451 2 885713716 +378 531 4 880045520 +829 124 4 892312784 +749 357 4 878847862 +655 863 3 887473995 +303 83 5 879467607 +81 116 3 876533504 +92 707 4 875653162 +421 98 5 892241458 +426 143 3 879444852 +523 732 4 883702125 +902 181 3 879464783 +325 616 4 891477924 +698 404 1 886368545 +491 23 2 891189306 +62 167 2 879376727 +587 289 3 892871113 +268 713 4 875742365 +758 488 3 881976262 +301 117 5 882074584 +474 609 4 887927509 +249 223 4 879572370 +154 187 5 879139096 +708 111 4 877325570 +709 209 3 879846332 +363 12 5 891495070 +620 243 3 889986676 +815 252 2 884267891 +897 133 4 879991037 +90 656 5 891385132 +941 181 5 875048887 +716 1016 3 879794032 +806 168 4 882387595 +54 823 2 880938088 +826 1222 3 885690819 +486 685 3 879875188 +889 546 4 880177435 +747 845 2 888640046 +655 742 3 888813272 +932 175 4 891250449 +497 29 4 879362569 +271 9 4 885847738 +894 1381 3 880993766 +705 62 5 883428178 +214 253 5 892668173 +843 53 2 879443442 +847 99 2 878940013 +699 288 3 878881675 +885 278 3 885715468 +764 1 4 876244181 +239 633 5 889180040 +889 95 4 880178342 +416 742 4 876697524 +169 199 4 891359353 +749 99 5 878847804 +716 216 5 879795239 +268 273 3 875742470 +128 186 5 879966895 +831 1012 4 891354970 +648 121 5 882211654 +597 688 4 875339132 +902 304 3 879464257 +268 210 3 875310571 +359 930 4 886453402 +890 230 3 882404947 +828 271 2 891035438 +899 283 4 884121424 +130 404 5 875802137 +846 1004 3 883950791 +790 763 3 884462692 +276 902 4 890979199 +379 185 5 880524582 +677 742 4 889399139 +748 132 3 879454998 +747 69 5 888640475 +933 475 2 874853605 +893 172 5 874829883 +290 385 4 880474716 +883 902 4 891691534 +422 859 3 879744218 +870 527 5 875679687 +758 1023 4 880672855 +747 12 4 888639272 +835 423 4 891033857 +830 210 5 891561607 +87 222 4 879875940 +871 345 3 888192859 +497 367 4 879362835 +659 159 4 891386540 +622 98 5 882669449 +524 203 4 884634819 +517 25 2 892659923 +880 111 4 880167132 +561 79 3 885808887 +865 432 1 880235059 +671 455 4 884035775 +533 936 4 889450822 +655 12 3 887427130 +699 619 2 887503290 +924 258 3 884336994 +495 82 5 888632969 +181 1296 1 878962006 +430 235 2 877225727 +173 329 4 877557345 +551 1044 3 892785223 +8 222 5 879362356 +936 547 5 886833795 +8 431 2 879362356 +891 459 5 891638682 +906 10 4 879435339 +363 737 1 891497174 +711 354 3 889910865 +894 900 3 887044070 +537 283 4 886029889 +736 678 1 878709212 +883 229 4 891696930 +407 184 4 875044473 +943 1074 4 888640250 +595 410 4 886921315 +675 1628 5 889489837 +5 367 3 875636281 +519 879 5 883248595 +655 127 5 888474106 +853 327 3 879364955 +666 216 3 880139642 +806 181 2 882384988 +624 321 4 879791962 +666 143 2 880568064 +806 210 5 882387520 +499 143 3 885598961 +749 164 3 878848866 +753 185 3 891401410 +324 339 3 880574827 +734 603 4 891022958 +725 333 5 876106729 +798 1239 4 875915965 +805 1 4 881695527 +535 645 4 879617856 +665 1 4 884290491 +59 434 4 888205574 +429 147 2 882385859 +843 443 4 879443297 +854 274 3 882812906 +463 19 5 877385341 +303 121 3 879485016 +415 136 5 879439684 +724 259 2 883757726 +59 1093 5 888203578 +503 582 5 880383064 +644 250 4 889077463 +825 406 2 889021208 +14 919 4 876964725 +682 196 5 888523581 +537 271 2 886028791 +833 443 3 875124348 +160 458 5 876768025 +653 1207 1 880153329 +479 357 4 889125798 +13 916 4 892870589 +542 12 4 886533774 +924 705 5 885457858 +729 300 4 893286638 +478 195 4 889396509 +868 408 5 877103935 +297 144 3 875238778 +909 289 3 891920763 +804 168 5 879442377 +395 127 5 883765034 +223 873 3 891549111 +363 24 3 891494754 +592 196 5 882955978 +501 294 3 883346694 +747 519 5 888639989 +682 713 3 888517537 +796 859 2 893218622 +412 939 4 879717253 +893 144 4 874830101 +758 430 5 881975503 +697 1047 3 882622228 +778 281 2 890803859 +690 56 4 881177349 +345 238 5 884916495 +666 963 3 880139090 +683 269 3 893282664 +674 289 2 887763151 +891 285 5 891638757 +639 526 4 891239177 +796 307 4 892611799 +871 908 3 888192745 +896 993 4 887235498 +721 245 3 877137527 +916 295 2 880843551 +301 658 3 882076463 +409 923 5 881107410 +702 748 2 885767556 +889 470 4 880180554 +354 747 2 891307069 +13 235 2 882141841 +797 687 2 879439190 +664 83 4 876524869 +632 609 3 879459677 +348 237 4 886523078 +295 546 4 879518780 +846 184 5 883949697 +653 156 4 878854633 +669 132 4 891260519 +756 230 3 874829010 +438 148 5 879868443 +506 79 5 874874054 +758 887 5 882322840 +653 143 3 880150104 +894 535 4 879896920 +638 385 5 876694917 +936 741 4 886832808 +792 926 3 877909798 +807 381 2 892530004 +630 121 4 885666823 +602 880 4 888637925 +476 401 3 883364812 +655 1426 2 888474390 +592 117 5 882608234 +747 93 4 888639685 +665 239 3 884293475 +931 269 3 891035876 +540 333 4 882156617 +727 405 3 883709571 +663 235 2 889492917 +702 258 5 885767306 +528 258 4 886812857 +921 274 4 879379971 +893 246 3 874829968 +896 640 2 887160701 +246 418 3 884921453 +894 923 5 882404278 +645 47 4 892054824 +620 138 5 889988312 +688 307 4 884153505 +497 440 1 879362430 +782 247 1 891499700 +58 1 5 884304483 +543 660 3 875659098 +389 524 5 879991081 +725 322 4 876103762 +334 1020 4 891546181 +833 262 2 875035534 +846 42 5 883948606 +129 300 3 883243934 +221 12 5 875245283 +805 748 2 879971215 +308 273 2 887737084 +936 591 4 886832373 +92 685 3 875640708 +561 473 3 885810428 +419 28 3 879435663 +312 213 5 891699067 +474 323 2 887915020 +847 261 1 878774763 +648 449 3 884882987 +560 264 3 879975231 +385 1118 3 879447047 +638 523 4 876695917 +568 519 3 877907157 +897 33 5 879992310 +795 395 2 883255008 +885 88 4 885713461 +851 228 4 875731776 +880 156 4 880243680 +152 283 4 880148616 +458 433 4 886398289 +880 11 4 880167695 +864 231 3 888891288 +57 477 4 883697655 +455 230 3 879111291 +906 475 3 879435253 +85 405 2 879453018 +682 290 1 888522217 +328 983 3 885049234 +894 1010 4 880993662 +922 257 4 891455049 +694 836 4 875727821 +48 1063 3 879434654 +566 86 4 881649622 +234 837 3 892079434 +756 235 3 874827755 +733 1163 2 879535603 +933 583 3 874854217 +455 82 5 879110818 +168 546 3 884287962 +592 285 5 882607910 +145 449 3 885557699 +500 582 4 883874290 +454 463 2 888267560 +130 123 4 875216112 +618 121 4 891308913 +894 111 3 880416102 +130 291 4 876250932 +184 160 3 889911459 +606 468 4 880923989 +711 655 4 879993605 +727 278 2 883709325 +680 150 5 877075105 +627 187 5 879529855 +934 1449 5 891191976 +288 176 4 886373565 +830 98 5 891462467 +741 699 4 891018400 +896 1134 3 887159950 +913 432 3 881366721 +450 776 4 882468402 +758 38 3 881980408 +545 434 3 884134177 +159 873 2 893256062 +586 184 2 884060807 +747 525 5 888640684 +774 196 3 888556746 +922 471 3 891453501 +235 170 4 889656113 +804 1411 3 879446129 +780 164 4 891363996 +778 54 2 890803859 +793 508 4 875104620 +762 274 4 878719371 +892 50 5 886608802 +815 647 5 878694055 +501 1014 4 883348543 +145 628 2 875270932 +901 140 4 877288179 +741 174 5 891018303 +417 40 3 879649199 +559 205 5 891033805 +838 286 4 887061035 +119 449 5 874782190 +613 576 3 891227204 +537 513 4 886030891 +900 288 2 877832113 +479 474 5 879461279 +545 944 4 879900731 +639 604 4 891240520 +747 190 4 888640305 +880 288 4 880166451 +63 14 4 875747401 +851 977 3 875730533 +882 662 3 879879807 +840 7 4 891203408 +906 7 3 879434846 +864 67 4 888891190 +587 1265 4 892871252 +568 179 2 877906935 +885 151 4 885716221 +514 89 4 875318331 +677 109 1 889399327 +942 878 4 891282702 +357 926 4 878951831 +717 288 1 884641717 +885 386 2 885713680 +851 346 5 884831499 +690 167 2 881177662 +242 294 4 879740082 +385 558 2 879442673 +846 498 4 883947861 +895 13 5 879437950 +727 685 3 883709518 +653 531 5 878854284 +210 168 5 887730342 +565 190 5 891037563 +733 744 4 879535723 +934 436 3 891196610 +911 190 5 892838864 +733 1085 4 879536607 +875 183 5 876465144 +699 10 4 883884599 +896 87 4 887158295 +435 194 4 884131627 +145 742 4 875270616 +848 200 2 887040302 +941 993 4 875048996 +450 519 4 887660820 +660 219 1 891406212 +350 187 5 882347782 +481 88 4 885829153 +406 702 3 879793295 +455 250 3 879109966 +454 285 2 881959917 +846 1066 3 883950568 +698 487 2 886367508 +882 168 5 879867631 +59 193 4 888204465 +919 285 5 875288748 +660 456 1 891198996 +844 260 1 877381312 +840 121 2 891204056 +306 1251 5 876504026 +624 477 3 879793198 +757 153 3 888468995 +735 748 3 876698022 +533 1291 1 879366076 +858 100 3 880932746 +405 99 5 885548785 +428 352 4 885943651 +269 52 4 891447329 +616 879 4 891224864 +664 182 4 876524641 +131 297 4 883681514 +499 525 4 885599660 +766 133 3 891309844 +395 866 3 883766119 +314 1063 5 877887568 +600 511 5 888451492 +828 1466 4 891380166 +650 301 2 891385035 +328 313 4 893195532 +921 227 3 879381051 +835 196 5 891033173 +561 802 1 885810726 +826 176 5 885690600 +744 302 5 881171820 +704 269 4 891397015 +630 213 2 885667994 +44 87 5 878347742 +606 211 5 880926759 +617 656 4 883789386 +59 519 4 888204965 +552 756 2 879221683 +344 408 5 884814532 +751 11 1 889133177 +620 237 4 889987123 +889 121 4 880177308 +374 829 2 885083439 +508 183 5 883767588 +871 17 3 888193275 +682 833 1 888522260 +716 486 5 879795121 +365 1011 3 891304152 +601 294 1 876346515 +883 209 3 891694311 +927 69 4 879183164 +798 378 4 875743858 +727 511 4 883710948 +905 124 4 884983889 +749 291 4 878848137 +686 265 4 879545550 +622 586 3 882671916 +796 879 4 892612031 +865 472 1 880144229 +622 404 3 882670562 +577 472 4 880470570 +160 129 4 876768828 +934 393 2 891193013 +867 186 5 880078937 +507 288 5 889964020 +625 1016 2 891273699 +286 280 4 876522097 +550 596 2 883426119 +802 302 4 875984532 +871 876 3 888192689 +276 428 4 874791870 +644 871 4 889077513 +389 969 4 880086755 +717 298 3 884715172 +799 289 3 879253720 +930 151 2 879534724 +918 443 3 891988248 +756 197 2 874829446 +299 12 5 877880350 +13 826 5 882398385 +655 640 2 888685955 +883 464 5 891717533 +665 151 3 884291017 +788 331 4 880867372 +625 522 3 891968164 +721 406 1 877154989 +199 269 5 883782458 +655 160 3 887427473 +697 257 5 882621913 +693 742 3 875483407 +898 270 4 888294408 +330 403 5 876545417 +605 371 5 879427369 +696 311 5 886404063 +295 402 5 879518820 +807 1133 3 892823295 +254 451 2 886474426 +192 255 2 881367505 +363 751 1 891493772 +452 504 2 875273544 +860 202 4 885990932 +896 291 3 887160795 +361 319 5 879440941 +930 288 1 879534001 +297 357 4 875238922 +451 302 3 879012647 +117 931 3 881010728 +218 514 4 877488316 +860 316 3 889627165 +1 165 5 874965518 +442 218 3 883390048 +655 785 2 887490946 +577 48 5 880474530 +860 333 3 876074177 +794 275 4 891034792 +586 3 5 884068767 +661 210 5 876015530 +569 100 5 879793784 +429 227 2 882385934 +833 381 4 875134016 +877 258 4 882676234 +343 150 4 876402941 +535 707 4 879618809 +715 108 4 875962315 +757 313 3 888443263 +646 751 2 888528870 +910 137 3 880822060 +807 257 4 893084232 +932 172 5 891250472 +758 898 3 883287566 +505 144 3 889333861 +846 570 4 883949698 +718 15 5 883348962 +457 147 5 882395400 +705 183 2 883427988 +681 682 1 885409810 +348 685 4 886523560 +535 265 3 879619144 +692 866 4 876953733 +883 703 3 891693139 +758 154 5 881975267 +431 269 3 877844062 +222 446 3 881060824 +652 96 4 882567356 +303 869 2 879485703 +290 95 4 880474590 +937 242 3 876762200 +429 155 2 882387633 +732 289 3 882590201 +933 196 4 874854932 +904 328 2 879735136 +916 212 5 880844879 +474 608 4 887925187 +721 684 4 877138200 +95 511 4 879196298 +921 892 3 884673402 +591 709 4 891031426 +416 80 2 886317825 +870 384 3 875680597 +716 519 3 879796555 +579 202 5 880952270 +747 507 3 888639890 +741 173 2 891018366 +497 1415 2 879363748 +567 127 5 882426246 +393 121 4 887744419 +329 8 2 891656391 +707 248 4 886285498 +648 452 3 884883679 +853 264 3 879365169 +889 12 5 880177880 +699 124 4 878882667 +826 501 3 885690380 +856 313 5 891489217 +708 118 5 877325545 +674 245 4 887762430 +456 547 3 881371660 +903 333 4 891032653 +767 183 4 891462870 +536 427 5 882359455 +303 147 4 879467816 +374 779 3 880939186 +721 51 4 877141038 +804 284 4 879442732 +643 238 3 891448095 +532 240 3 888629938 +709 7 3 879846440 +943 51 1 888640088 +87 121 5 879875893 +682 195 4 888522418 +773 185 4 888540279 +298 357 5 884181969 +738 2 3 875351530 +610 508 3 888703629 +940 855 5 885921980 +932 154 5 891249994 +429 204 4 882387757 +864 789 4 888886946 +899 483 4 884121572 +45 284 4 881014130 +75 289 1 884049789 +881 375 1 876539387 +640 391 3 874778756 +458 513 4 886396314 +682 1093 3 888522100 +42 1050 3 881107538 +800 294 3 887645970 +716 202 4 879794935 +655 262 5 888474934 +882 21 2 879863909 +500 1311 1 883877467 +883 4 4 891694276 +908 151 3 879722875 +154 496 3 879138910 +749 135 4 878848189 +714 471 4 892777903 +690 197 4 881180427 +217 17 3 889069903 +553 514 3 879948695 +847 95 4 878939503 +263 23 3 891298654 +936 243 2 886831820 +868 227 1 877110060 +711 181 4 876185574 +936 1014 3 886833571 +901 161 5 877131147 +666 162 4 880568662 +883 873 3 891695173 +452 199 5 885816768 +70 559 3 884066399 +933 72 3 874938538 +933 1246 1 874938728 +847 198 4 878940161 +487 349 3 885239880 +714 410 3 892777767 +649 250 3 891440356 +653 154 3 878867137 +903 186 5 891466376 +707 318 5 880061699 +82 640 3 878769292 +847 428 3 878940732 +916 223 4 880844087 +717 866 1 884642932 +655 761 2 888686011 +429 381 3 882385882 +927 288 5 879199250 +659 603 5 891331825 +825 289 1 882109193 +788 144 4 880868599 +810 243 4 879895350 +325 771 1 891480115 +373 529 4 877105901 +201 603 4 884113924 +760 66 2 875668932 +444 272 5 891978637 +303 289 2 879466065 +397 289 3 885349348 +308 770 4 887738057 +883 346 4 891691353 +943 226 4 888639660 +715 88 3 875964633 +311 47 2 884365654 +699 482 2 878883038 +23 89 5 874785582 +445 96 4 890987655 +798 692 4 875743140 +298 187 5 884183063 +414 324 4 884999127 +294 881 3 889241707 +433 137 5 880585904 +758 338 4 881295151 +276 316 4 892436314 +913 269 5 881725938 +927 240 3 879177456 +187 52 4 879465683 +922 183 3 891450401 +883 19 2 891692657 +875 461 4 876466687 +630 11 5 885668028 +894 86 4 882404306 +916 393 2 880845067 +877 197 4 882677827 +374 281 3 880393425 +479 157 5 879461856 +901 257 4 877127196 +655 182 4 888474106 +474 956 4 887926271 +693 192 2 875482477 +503 949 3 892667891 +615 100 3 879448693 +535 275 4 879619177 +615 97 4 879448759 +783 307 5 884326506 +297 196 4 875239267 +795 167 3 883254348 +643 845 3 891445476 +774 545 1 888555864 +234 964 4 892334852 +913 89 5 880794731 +447 276 4 878854552 +577 546 3 880470483 +725 19 5 876106729 +272 56 5 879455220 +835 484 4 891034219 +137 96 5 881433654 +915 313 4 891029965 +315 4 4 879821065 +821 560 3 874793773 +749 1023 3 881073104 +548 762 4 891415709 +223 155 5 891550952 +664 845 2 878090381 +919 687 1 875288362 +758 514 5 881974823 +940 708 3 885921953 +642 1239 4 885607097 +126 316 4 887855231 +151 174 5 879524088 +279 971 4 875314231 +782 1514 2 891500194 +750 873 3 879446013 +838 8 4 887066972 +351 895 3 883356591 +826 226 4 885690677 +707 458 3 880060724 +655 723 3 887650851 +758 628 4 881977714 +692 211 4 876953340 +474 650 4 887925187 +934 174 5 891191511 +753 181 3 891402240 +850 97 5 883195168 +743 326 3 881277656 +500 295 4 883865128 +749 153 4 878848828 +109 151 5 880571661 +732 937 4 882589967 +749 968 3 878850186 +788 637 2 880870516 +896 1423 2 887160631 +894 59 5 882404397 +416 477 4 892441480 +269 281 1 891451590 +686 178 5 879546715 +936 301 3 886831637 +442 89 4 883390416 +363 150 5 891496667 +897 410 3 879993621 +934 514 5 891191546 +334 44 4 891548224 +846 268 4 883946938 +674 15 4 887762584 +393 395 3 889731753 +437 443 4 880142851 +712 1037 4 874956981 +903 1070 4 891033335 +151 629 4 879528754 +629 309 3 880116240 +840 96 2 891204592 +711 79 4 879992739 +648 72 4 884881722 +749 418 5 878847498 +322 1019 4 887314073 +436 167 3 887770403 +274 873 3 878944491 +310 294 1 879436712 +830 172 5 891561606 +379 435 5 882563752 +615 191 5 879448759 +425 319 1 878737511 +474 421 3 887928562 +145 308 2 885557505 +429 100 5 882385807 +305 49 3 886324962 +584 450 2 885778571 +193 826 2 889126146 +567 608 4 882426021 +921 845 4 879379601 +749 527 4 878847364 +1 116 3 878542960 +28 219 5 881961728 +738 517 3 892938492 +243 237 2 879987148 +904 739 4 879735678 +896 824 1 887161541 +234 119 3 892335261 +880 144 5 880167670 +618 651 5 891307263 +514 180 3 886189927 +622 532 3 882591091 +886 518 4 876031601 +18 510 4 880130680 +554 133 4 876369272 +863 340 3 889288911 +617 531 2 883788859 +750 322 2 879445877 +193 1407 3 889126146 +892 182 5 886608507 +151 945 5 879524419 +94 1221 3 891721216 +385 528 4 879470274 +174 65 5 886514123 +760 451 5 875668781 +696 9 5 886404617 +426 100 4 879442128 +488 486 4 891295023 +615 192 5 879448780 +889 1188 2 880182784 +768 315 3 883834448 +931 258 3 891036003 +328 646 3 885046174 +50 100 2 877052400 +504 441 4 887911314 +546 758 4 885140808 +839 277 2 875752082 +843 550 3 879449152 +500 552 1 883876738 +918 792 3 891986904 +797 181 5 879439362 +822 111 4 891039414 +639 286 4 891238618 +232 294 2 880062259 +535 471 4 879618743 +721 304 3 877137285 +743 744 5 881277892 +256 11 5 882164406 +733 713 4 879535938 +870 239 3 875680597 +943 200 4 888639388 +704 135 5 891397305 +758 654 4 881975061 +545 28 4 884133814 +489 322 5 891366571 +233 523 4 877663913 +731 143 5 886182827 +630 239 4 885668061 +271 506 4 885849052 +555 111 4 879964159 +664 494 5 878089975 +227 823 2 879035599 +719 214 2 879360965 +896 157 4 887159555 +521 246 4 884475913 +290 402 4 880474422 +757 206 4 888445683 +729 294 2 893286338 +941 258 4 875048495 +263 31 4 891299387 +815 712 3 878696563 +865 1011 1 880144405 +912 194 4 875966238 +372 872 4 876869330 +933 173 3 874855020 +251 1 4 886272009 +248 79 3 884534992 +940 89 4 885921828 +13 175 4 882139717 +933 318 4 874853605 +899 193 3 884121946 +739 55 1 886958972 +724 1127 3 883758267 +669 216 3 892550170 +134 508 3 891732726 +729 751 3 893286338 +870 1267 2 879270213 +868 184 3 877107730 +921 125 3 879379774 +676 546 3 892686371 +308 211 4 887737535 +184 371 5 889909840 +855 179 3 879825528 +843 498 2 879446155 +727 118 4 883709729 +724 343 1 883757259 +642 588 5 886131546 +602 294 5 888637987 +94 51 3 891721026 +744 156 4 881170452 +737 64 4 884314740 +897 660 4 879991630 +896 576 2 887160677 +472 231 5 875980418 +536 588 3 882359726 +426 519 4 879444117 +707 1168 3 886287990 +564 272 3 888718415 +894 904 4 890409804 +663 763 5 889492614 +495 1542 4 888637643 +805 122 5 881705350 +591 64 5 891031203 +238 257 4 883576261 +942 216 4 891282963 +326 588 3 879875691 +313 427 5 891014029 +393 1225 3 889731820 +491 654 5 891189306 +736 254 1 878709262 +752 325 2 891208126 +570 286 4 881262625 +234 82 3 892334079 +119 31 5 874781779 +694 135 5 875727018 +403 147 5 879786052 +618 895 3 891309929 +788 546 3 880871429 +768 742 3 880136033 +313 89 5 891014373 +870 715 3 875680597 +506 496 5 874873615 +779 328 4 875501334 +458 76 4 886398121 +804 498 5 879442239 +597 477 5 875339970 +919 217 4 875373669 +892 176 5 886608681 +940 427 5 885921451 +379 524 4 880961742 +790 384 2 885158374 +666 188 5 880314564 +891 282 5 891639793 +727 169 5 883710419 +326 568 4 879876882 +886 475 5 876031501 +804 401 2 879445798 +819 319 4 879952627 +561 546 1 885810557 +796 1522 3 893194740 +443 269 3 883504564 +705 69 3 883518834 +549 1 5 881672182 +561 153 3 885808844 +498 317 3 881957625 +840 492 5 891204215 +406 282 3 879539987 +221 847 4 875244051 +757 98 4 888445767 +287 246 4 875333964 +417 161 3 879647519 +712 365 3 874730234 +630 465 1 885668203 +833 69 2 875039326 +297 485 3 875240267 +683 301 2 893283728 +417 163 4 879647604 +758 1527 3 888039070 +484 951 1 891195886 +655 131 2 893002283 +13 165 3 881515295 +415 258 4 879439135 +890 527 4 882405473 +682 708 3 888518104 +922 222 4 891447681 +734 173 3 891025247 +495 67 3 888636635 +901 174 5 877130965 +937 126 4 876769374 +464 520 5 878355167 +741 274 4 891019587 +921 560 2 879380981 +880 188 4 880167842 +932 226 3 891251292 +269 23 5 891447773 +621 692 4 874962614 +630 819 3 885667108 +896 198 4 887158636 +804 172 4 879442001 +883 553 4 891696782 +16 939 4 877717833 +279 1001 4 882160106 +409 657 3 881108126 +719 87 2 879360617 +778 28 4 890726618 +589 688 4 883352707 +495 80 3 888636992 +447 201 2 878855723 +757 151 4 888444684 +232 50 4 880062302 +807 477 4 892775458 +608 83 5 880406862 +509 892 1 883591489 +561 423 2 885808796 +627 591 3 879530205 +790 108 3 884462415 +271 566 4 885848707 +87 252 3 879876224 +551 97 5 892777013 +643 88 2 891449417 +825 593 3 880755468 +537 515 4 886031297 +666 527 4 880139253 +363 589 3 891496077 +843 25 2 879447523 +707 880 2 887860711 +737 154 4 884314694 +168 276 1 884287642 +326 9 1 879875852 +892 25 4 886609828 +632 356 4 879459248 +877 111 3 882677967 +757 742 4 888444563 +868 189 5 877109300 +216 315 5 883981859 +264 150 5 886122952 +480 152 4 891208390 +929 174 3 879640329 +767 724 4 891462658 +677 7 4 889399171 +894 13 4 882404137 +883 461 5 891717988 +868 922 5 877106505 +687 300 4 884652089 +846 452 3 883950950 +634 25 4 877018125 +751 1 3 889132162 +545 167 3 879900731 +591 956 4 891031286 +666 180 4 880139562 +755 300 4 882569574 +798 946 2 875639889 +456 550 2 881375381 +85 141 3 879829042 +462 539 3 886365773 +109 53 4 880583336 +450 866 4 882396565 +868 447 2 877107284 +899 73 4 884121720 +698 100 2 886367809 +246 50 5 884920788 +537 109 1 886030051 +712 495 4 874730520 +254 138 1 886474122 +489 323 5 891445388 +472 1215 4 875979562 +709 423 3 879846741 +56 238 5 892676885 +460 124 4 882912150 +628 690 5 880776981 +847 243 1 878774856 +606 516 4 880924859 +751 216 4 889133602 +174 240 1 886434241 +723 322 2 880499254 +857 275 5 883432663 +481 393 3 885829045 +550 222 4 883425979 +943 188 4 888639269 +436 50 4 887769415 +773 6 3 888538620 +551 587 4 892783525 +770 258 5 875971568 +935 237 5 884472159 +159 291 4 880485766 +761 205 4 876190511 +239 505 5 889180169 +486 9 5 879874449 +615 213 5 879447990 +498 179 4 881961133 +654 597 4 887864812 +762 270 4 878718855 +18 958 5 880129731 +892 429 4 886608559 +399 540 2 882348722 +537 222 2 886029974 +618 154 3 891308615 +881 528 5 876538536 +642 1078 5 885604239 +788 684 5 880868401 +471 82 5 889827822 +363 312 3 891494106 +894 14 4 880416472 +916 48 5 880844861 +14 240 5 880929697 +747 262 5 888638242 +691 604 5 875543025 +561 1229 1 885810220 +589 339 5 883352494 +24 655 5 875323915 +213 7 4 878870518 +693 449 2 875483407 +405 1556 1 885549635 +561 512 4 885808000 +894 909 3 889469007 +889 721 3 880179536 +884 100 5 876858820 +406 466 4 879446228 +521 550 3 885253844 +189 792 5 893265741 +669 150 3 892549477 +807 491 5 892528062 +778 132 2 891232769 +94 411 3 891724508 +705 546 3 883427377 +489 897 2 891448565 +896 518 3 887159234 +887 1116 5 881381610 +913 222 3 881037459 +218 153 4 877488692 +747 423 5 888638958 +222 1079 1 878183984 +911 727 2 892842738 +38 1028 5 892432624 +39 301 3 891400280 +538 527 3 877364067 +846 91 4 883948417 +343 496 5 876404426 +551 720 2 892784744 +495 1157 4 888637300 +733 696 3 879535909 +764 405 4 876243772 +860 949 3 885991163 +707 168 3 886286170 +406 281 3 879540296 +586 118 4 884062671 +827 689 3 882201884 +393 627 4 889729296 +586 159 4 884065719 +541 278 2 883875063 +739 751 3 886825083 +587 331 3 892871197 +807 199 5 892528374 +537 186 4 886031211 +486 324 4 879874262 +534 410 5 877807816 +916 702 3 880845157 +825 591 4 880755943 +276 554 2 874795823 +938 281 2 891356594 +907 409 4 880159151 +899 257 4 884120185 +727 423 3 883710830 +773 462 5 888538776 +435 193 3 884131243 +887 472 4 881378402 +707 6 3 886285627 +422 237 4 875130230 +13 749 3 881515521 +787 300 4 888979657 +796 69 5 892662483 +92 322 3 890251700 +766 414 4 891310150 +892 671 5 886608212 +769 1312 2 885424776 +799 748 2 879253755 +429 582 3 882384950 +560 24 2 879976772 +699 685 3 879147367 +771 892 5 886640606 +119 827 3 874775815 +896 55 3 887157978 +807 605 3 892529150 +415 483 5 879439791 +807 1411 1 893082619 +716 732 5 879795375 +846 1209 1 883950858 +452 625 3 875562159 +906 15 3 879435415 +763 230 3 878923288 +786 866 3 882842173 +627 199 5 879529702 +883 283 4 891692742 +345 570 2 884993662 +871 121 4 888193275 +899 746 4 884121512 +691 318 5 875543281 +760 365 5 875668737 +606 959 5 880927128 +767 242 4 891462614 +74 315 5 888333194 +758 687 3 881295189 +388 218 5 886441083 +387 399 3 886482969 +546 258 4 885139634 +850 168 5 883195456 +894 885 2 887044250 +924 286 3 884337043 +653 631 2 880150412 +222 50 4 877563194 +881 4 3 876538286 +552 977 3 879222033 +709 62 3 879848590 +756 79 4 874829990 +847 109 5 878938982 +666 484 4 880139149 +43 277 1 883955498 +296 211 4 884197068 +503 306 5 879438024 +838 228 4 887067390 +889 79 3 880179705 +811 286 5 886376983 +887 69 4 881380025 +715 196 4 875964131 +728 124 3 879443155 +451 306 2 879012684 +545 403 5 879899380 +733 285 4 879535299 +537 616 2 886031752 +738 169 5 892844079 +716 11 4 879795790 +505 183 3 889333392 +901 405 4 877127250 +805 418 2 881695527 +806 240 2 882385455 +880 1052 1 880175503 +460 312 4 882910837 +222 101 4 878183539 +890 654 5 882404851 +102 435 3 888801315 +253 82 3 891628295 +500 1048 3 883865532 +615 387 3 879448915 +872 1028 3 888479434 +392 517 5 891038466 +874 124 4 888632411 +79 311 4 891271278 +405 737 1 885546487 +606 282 4 878147641 +717 327 3 884641681 +704 208 3 891397262 +457 831 2 882396001 +798 220 3 875295810 +798 90 3 875914860 +307 132 4 879283333 +789 111 3 880332400 +705 1035 4 883427737 +815 494 5 878696093 +755 937 4 882569604 +916 235 3 880843749 +659 660 3 891384798 +429 789 4 882385443 +269 170 2 891447216 +756 147 4 874828826 +535 518 5 879618569 +822 358 3 891037112 +847 82 4 878941466 +878 140 2 880870486 +714 111 3 892777330 +406 924 4 879540228 +731 213 5 886183515 +943 794 3 888640143 +816 326 4 891710803 +109 810 3 880583410 +655 469 3 887427778 +875 333 5 876464801 +313 127 5 891013620 +10 502 4 877889261 +207 3 2 877846284 +930 455 1 879534692 +693 288 2 883975203 +794 181 4 891035957 +110 338 1 886987540 +181 685 2 878963381 +487 229 3 884042207 +289 15 3 876789581 +938 181 5 891356390 +863 1678 1 889289570 +143 322 4 888407708 +884 509 4 876859090 +663 475 4 889492435 +395 163 5 883764378 +922 418 4 891448580 +422 333 4 875655986 +860 381 3 885990998 +170 678 4 886623680 +722 322 3 891280402 +327 47 4 887746553 +897 55 3 879990622 +624 544 4 879792557 +201 116 1 884112800 +579 289 2 880951569 +823 151 4 878438732 +479 670 3 879461530 +918 921 4 891988029 +289 477 2 876790323 +664 654 5 876526604 +616 326 3 891224590 +796 228 5 892761629 +880 1270 3 880175187 +848 474 5 887038441 +640 214 5 874778274 +597 1016 4 875342355 +924 632 4 885458121 +291 760 2 874834037 +506 449 2 885135882 +883 116 5 891692786 +514 778 4 876067546 +751 402 3 889298216 +922 174 5 891449021 +734 478 4 891022849 +814 17 3 885411073 +931 250 2 891036673 +802 563 3 875985976 +663 100 4 889492503 +59 959 4 888206095 +344 1020 5 884814457 +757 895 4 888443483 +786 186 4 882843786 +903 931 2 891032038 +941 7 4 875048952 +457 145 3 882549998 +665 56 5 884294611 +16 286 2 877716993 +852 840 3 891036866 +274 237 4 878945678 +693 506 2 875484932 +932 183 4 891249877 +456 265 3 881374048 +201 702 1 884111986 +56 298 4 892683695 +807 1413 2 893083486 +585 20 4 891285658 +379 143 4 880525839 +735 304 4 876697679 +70 1145 3 884151622 +834 246 4 890863023 +434 118 5 886724873 +192 1265 3 881366585 +1 198 5 878542717 +693 471 3 875482653 +868 23 5 877104949 +457 28 5 882396989 +773 431 1 888540063 +385 533 4 879440602 +709 232 5 879848590 +810 300 5 890083187 +503 484 4 880472188 +295 209 5 879518233 +776 28 5 891628895 +920 328 2 884220058 +691 185 5 875543281 +681 1394 5 885409742 +889 1014 2 880177778 +574 288 4 891279174 +863 752 4 889289277 +868 658 3 877108742 +749 661 5 878847576 +887 477 1 881378570 +786 202 4 882843812 +591 168 3 891031724 +896 64 4 887158926 +167 606 4 892738452 +749 435 4 878847888 +413 515 5 879969591 +521 684 3 884478807 +813 890 4 883752708 +693 195 4 875483847 +856 322 4 891489593 +763 702 3 878917877 +527 12 4 879456637 +774 226 2 888557330 +890 174 5 882405780 +590 1061 2 879439538 +637 268 2 882898692 +271 496 5 885849140 +613 478 5 891227262 +133 539 1 890588720 +239 304 1 889181248 +846 66 4 883949290 +727 176 4 883710948 +543 1159 5 875665787 +542 94 3 886533021 +870 673 5 875679721 +643 68 3 891447338 +689 13 1 876676397 +624 690 4 879791962 +717 130 2 884642958 +886 790 4 876034095 +879 222 4 887761460 +615 302 4 879447500 +927 300 5 879176156 +797 948 1 879439230 +301 15 4 882074460 +520 871 1 885170547 +920 1612 4 884219953 +500 919 3 883865341 +141 984 4 886447880 +752 621 1 891208491 +885 318 5 885714093 +682 719 2 888521982 +452 50 5 875264825 +639 511 4 891239240 +557 252 3 880485846 +610 484 3 888703507 +753 427 5 891401712 +771 243 3 886640629 +889 204 4 880179757 +665 286 4 884289850 +111 286 4 891680076 +701 313 4 891446521 +839 508 3 875752479 +721 56 3 877150031 +758 531 5 881975061 +889 4 3 880180765 +886 1046 2 876033755 +810 286 4 891293811 +399 151 2 882511876 +747 88 2 888733218 +588 762 4 890026705 +924 923 5 886327748 +881 546 4 876536012 +643 405 3 891445859 +916 182 3 880844123 +546 200 5 885141332 +181 151 2 878962866 +234 1101 3 892335372 +843 654 2 879446359 +659 135 3 891383412 +715 205 5 875964410 +535 792 4 879618655 +738 227 4 875353533 +176 285 5 886047963 +871 96 5 888193177 +846 692 3 883949594 +932 144 3 891249710 +635 874 3 878878714 +758 151 5 881975814 +682 925 3 888520923 +249 318 5 879572256 +605 302 4 879365132 +639 173 1 891239492 +750 748 3 879446013 +634 591 4 875729535 +883 1021 5 891693058 +880 418 4 880241256 +134 678 4 891732271 +406 73 2 880131704 +429 616 3 882386333 +749 1092 3 878850703 +445 1129 4 891199994 +152 33 5 882475924 +748 647 3 879454602 +727 258 2 883709325 +896 1074 2 887161393 +744 479 5 881171482 +764 845 4 876242972 +716 241 3 879796138 +11 196 5 891904270 +933 453 1 874938833 +887 176 5 881381348 +879 597 2 887761229 +854 50 4 882812102 +909 166 5 891920166 +682 250 4 888523635 +540 257 4 882157584 +374 713 1 880935656 +926 303 3 888351713 +919 878 2 875288443 +715 81 4 875963112 +803 269 5 880054592 +840 303 5 891202889 +524 855 4 884634911 +399 176 3 882342127 +862 100 5 879304196 +457 287 4 882394010 +118 317 5 875384885 +864 48 5 888886945 +632 549 3 879459210 +940 683 3 884800988 +682 1135 2 888518035 +695 354 4 888806056 +766 205 5 891309975 +563 255 5 880506528 +749 705 4 878847612 +691 672 1 875543153 +269 476 1 891446703 +846 542 3 883950712 +908 357 3 879723046 +333 483 4 891045496 +561 1267 3 885809690 +709 413 2 879848209 +716 151 5 879793631 +622 96 5 882592449 +868 402 1 877113412 +303 17 4 879466830 +308 293 4 887741415 +711 312 5 883589763 +615 514 5 879449110 +765 275 4 880346768 +864 562 4 888891794 +610 51 5 888703523 +269 1411 3 891451829 +823 157 5 878438435 +186 1213 3 879023882 +29 303 4 882820686 +771 8 5 880659583 +497 294 4 878759351 +890 168 5 882916704 +895 50 5 879438062 +712 652 3 876251407 +843 393 2 879448858 +207 538 2 880853139 +896 596 2 887159426 +899 239 3 884121946 +693 520 2 875485037 +629 100 5 880116847 +886 582 1 876032029 +710 282 2 882063921 +184 792 4 889909840 +397 693 4 885349955 +615 325 2 879447693 +655 272 3 888474138 +316 58 3 880854267 +707 485 4 886287079 +745 202 3 880123486 +659 212 4 891387227 +487 24 4 883444558 +793 823 3 875104648 +526 325 3 885682102 +497 826 3 879311007 +733 922 3 879535406 +776 947 2 891628836 +780 603 2 891364059 +710 198 4 883705435 +783 301 4 884326424 +693 99 3 875484763 +637 257 2 882903511 +624 316 4 891961232 +856 326 2 891489450 +637 322 3 882900888 +410 689 2 888626881 +876 529 4 879428451 +606 844 4 878149278 +652 307 4 882566890 +916 190 4 880846339 +699 1061 3 879147169 +450 33 5 882398083 +890 660 2 882917026 +320 1052 2 884749097 +889 207 3 880179785 +846 1451 4 883948089 +135 581 4 879857931 +735 181 4 876698604 +655 1101 2 887427243 +804 474 4 879441524 +864 43 3 888891524 +745 230 2 880123572 +651 683 3 880126096 +244 651 4 880606069 +864 523 4 888888202 +381 124 5 892697690 +864 432 2 888887502 +912 97 4 875966783 +821 705 5 874793649 +844 89 3 877387857 +727 82 3 883711527 +785 1 4 879439137 +399 780 1 882350850 +537 347 4 886028845 +751 372 3 889297990 +782 682 4 891498513 +860 313 4 885145375 +496 28 2 876066153 +454 135 2 888266433 +478 153 3 889396212 +711 1053 4 879995099 +780 286 4 891362937 +700 174 4 884493862 +754 459 4 879451805 +551 433 5 892777787 +592 123 4 882608573 +782 1385 4 891500028 +605 210 3 879424452 +145 98 5 875271896 +269 231 1 891451013 +517 311 3 892660034 +316 427 5 880853704 +449 268 2 880410988 +297 147 3 874955183 +943 73 3 888639598 +776 355 3 892210668 +447 535 4 878854954 +556 319 3 882135437 +828 283 3 891035864 +527 357 5 879455654 +323 98 4 878739699 +600 187 5 888451750 +922 98 5 891447665 +669 187 5 892550170 +868 208 3 877108624 +656 903 2 892318777 +131 248 3 883681262 +797 286 2 879438957 +587 890 1 892871503 +694 603 4 875727476 +405 1567 1 885547123 +806 156 4 882388128 +881 435 3 876538796 +938 840 2 891357190 +775 344 5 891032777 +721 15 4 877140632 +540 15 3 882157084 +916 527 4 880845135 +70 257 4 884063946 +280 68 3 891701066 +653 245 4 893276091 +776 181 4 891628916 +774 202 5 888555964 +862 831 3 879303542 +707 766 3 886287051 +504 559 5 887840745 +503 199 4 880383625 +99 678 2 885678479 +912 185 3 875966065 +937 293 4 876769530 +454 238 3 881960361 +201 792 4 884140579 +373 739 3 877111819 +899 710 3 884122619 +413 333 2 879968933 +655 292 2 889293132 +781 87 4 879634340 +872 1061 4 888479701 +214 114 4 891544290 +894 324 3 879896168 +766 185 4 891310038 +623 15 4 891032375 +768 313 5 883835026 +741 7 3 891040277 +805 545 1 881705488 +903 105 3 891031794 +766 187 4 891309053 +593 735 4 886193600 +619 326 2 885953601 +795 168 5 881528760 +717 343 4 884641983 +464 332 4 878354761 +425 184 4 878738596 +870 646 4 875050524 +926 325 1 888636269 +189 199 5 893265263 +648 436 5 884883476 +919 919 2 875288805 +83 79 5 887665423 +690 186 4 881177349 +932 194 5 891250472 +654 121 4 887863757 +30 164 4 875060217 +781 327 4 879633862 +843 569 1 879443482 +727 188 3 883711679 +934 488 5 891192197 +727 7 2 883708927 +707 279 3 886285627 +678 276 5 879544952 +594 19 3 874781004 +694 483 5 875727449 +606 1016 3 887062032 +934 648 3 891190695 +457 25 4 882393828 +926 315 4 888351623 +840 83 5 891204215 +881 395 3 876538322 +864 209 3 888887172 +877 381 4 882677345 +907 596 4 880159015 +450 702 4 882371904 +472 566 4 875982727 +815 993 2 878691939 +399 320 3 882342537 +830 197 4 891464415 +297 367 2 875239018 +790 584 4 885156773 +901 229 4 877131205 +416 942 4 893214333 +222 38 2 878185102 +328 586 1 885048666 +567 248 4 882427273 +671 203 3 884035173 +577 465 4 880474851 +932 114 5 891249903 +818 300 2 891870222 +588 468 3 890015835 +780 339 4 891363073 +268 80 3 875743909 +5 434 5 875637033 +25 133 3 885852381 +194 67 1 879549793 +62 22 4 879373820 +643 128 3 891447617 +378 370 2 880333494 +896 674 2 887160446 +548 50 5 891044304 +346 472 4 874950937 +736 253 5 878709365 +888 535 4 879365497 +868 47 2 877108302 +389 187 5 879990996 +840 505 5 891204714 +479 831 2 879460562 +727 471 3 883709188 +222 358 2 877562839 +347 121 3 881652535 +494 514 2 879541246 +823 770 4 878438754 +318 898 4 884470237 +807 194 4 892528427 +774 365 2 888556989 +650 136 4 891372203 +870 505 4 880584752 +627 233 2 879531351 +524 12 3 884634646 +727 596 4 883709188 +577 409 5 880470682 +256 665 4 882164644 +747 215 5 888732899 +758 1244 3 881713279 +910 125 3 880821383 +598 895 2 886710977 +890 228 4 882404879 +514 710 5 875318331 +504 928 4 887831353 +938 1014 4 891356632 +730 246 4 880310264 +889 22 3 880178158 +664 582 1 876525044 +751 347 4 887134587 +378 83 4 880045989 +846 414 4 883949771 +440 324 5 891548567 +457 179 4 882397963 +577 179 2 880474829 +892 729 4 886610174 +716 404 4 879796438 +892 265 4 886608380 +701 300 3 891446520 +57 15 4 883697223 +751 96 4 889133154 +897 50 5 879994113 +671 849 3 884036050 +796 785 5 893047287 +746 204 5 885075539 +904 451 4 879735584 +189 525 5 893265946 +766 577 3 891310934 +642 1053 3 886207279 +565 509 4 891037692 +18 512 5 880131407 +200 931 3 891825627 +406 1197 3 879539884 +916 246 5 880843318 +506 607 4 874874851 +770 748 5 875971655 +727 470 5 883711847 +807 79 5 892528690 +32 455 2 883717796 +922 949 5 891454320 +447 118 4 878854578 +881 526 5 876538251 +881 125 5 876536745 +881 405 4 876536667 +593 405 3 875659943 +727 1035 2 883712245 +561 496 3 885807369 +767 300 4 891462511 +711 427 5 886030557 +13 765 2 886303934 +172 428 4 875537964 +916 213 4 880844675 +704 187 4 891397143 +223 288 3 891548562 +499 98 4 885599119 +894 121 3 880993662 +805 554 1 881695080 +695 323 2 888806292 +497 53 3 879362178 +747 475 5 888639397 +816 294 5 891711801 +758 1012 4 880672727 +94 1135 4 891722646 +758 665 2 882055988 +910 24 3 880821367 +932 611 5 891250418 +479 408 5 879460091 +398 71 5 875743517 +712 724 3 874957268 +655 313 4 888474285 +939 1190 5 880260883 +622 375 2 882592625 +859 1315 4 885775251 +611 882 4 891636192 +875 300 3 876464800 +642 405 3 885606946 +247 70 5 893097024 +659 423 4 891384414 +893 412 3 874829249 +938 370 5 891357137 +864 1303 2 888890997 +279 946 3 875313032 +796 1048 2 893047288 +807 94 2 892823225 +394 715 4 880888689 +679 249 3 884486594 +648 826 3 882212526 +536 755 4 882360993 +916 194 4 880843997 +798 28 4 875638354 +23 423 3 874786488 +843 250 4 879445087 +594 245 3 874780909 +697 456 3 882622287 +921 411 2 879380142 +652 300 4 882566890 +650 633 4 891371091 +805 476 1 881705592 +10 430 3 877886597 +662 276 3 880570080 +83 728 4 880308909 +805 525 4 881696335 +567 673 3 882427089 +201 22 2 884112201 +634 1067 4 875729069 +773 152 5 888539398 +785 288 3 879438537 +534 760 2 877808098 +763 509 5 878920895 +429 529 4 882385243 +889 511 4 880178183 +674 678 3 887762480 +659 178 5 891332261 +535 302 3 879617063 +819 381 4 884105841 +930 269 4 879535392 +902 306 4 879463212 +877 340 3 882676395 +645 656 4 892053241 +881 27 3 876538953 +379 234 5 880524541 +38 1016 5 892429542 +737 169 4 884314644 +336 368 1 877756695 +472 472 5 875979153 +551 393 5 892782901 +919 112 3 875289417 +463 125 4 877385590 +547 302 5 891282575 +634 690 3 877368446 +707 1022 3 879439088 +303 47 5 879467959 +596 300 4 883539011 +811 315 4 886377579 +774 58 1 888556698 +588 202 1 890015500 +518 289 4 876823804 +942 607 5 891282931 +504 202 3 887909347 +925 948 2 884717790 +697 742 3 882622044 +437 1006 3 881001472 +216 81 4 880233726 +580 286 4 884124750 +867 651 5 880079065 +712 716 5 874730370 +394 173 5 881057730 +437 52 3 880141402 +808 300 4 883949681 +496 190 5 876072632 +823 152 5 878437703 +899 79 5 884122278 +927 1229 3 879197198 +764 284 4 876243015 +773 209 5 888539425 +57 50 5 883697105 +722 333 5 891279945 +484 117 4 881449561 +488 178 4 891294158 +894 252 3 879896897 +507 1237 5 889964311 +235 463 4 889656008 +716 117 4 879793542 +747 429 4 888639823 +892 496 5 886609435 +707 782 3 886288263 +749 986 3 878850107 +908 484 4 879722361 +724 289 1 883757703 +437 172 4 880140257 +43 274 5 883955441 +869 294 3 884490151 +868 59 4 877103757 +854 12 5 882813990 +561 544 2 885809872 +234 31 4 892334803 +758 580 4 881974880 +601 421 1 876350060 +934 664 4 891193331 +933 651 3 874854081 +889 117 4 880177154 +11 58 3 891904596 +804 22 5 879444407 +643 403 3 891449534 +775 900 3 891032956 +710 343 3 882063327 +731 527 5 886184682 +727 328 4 883708149 +64 591 4 889740394 +643 325 2 891446581 +538 642 3 877107633 +886 939 4 876031765 +933 746 4 874854762 +899 168 4 884121799 +393 483 4 889554540 +705 1544 4 883427691 +383 316 5 891192472 +608 1063 5 880405659 +527 135 2 879456587 +170 294 3 884705913 +821 117 3 874792442 +816 331 5 891710922 +727 71 3 883711069 +447 235 2 878854605 +927 1093 4 879177243 +943 195 4 888639407 +734 313 4 891022311 +744 301 3 881171857 +880 1210 4 880243790 +822 235 3 891039543 +693 582 2 875482477 +648 472 3 882211965 +435 271 4 884130671 +796 776 4 893219065 +852 50 5 891036414 +671 1491 1 884034132 +889 300 3 880176620 +804 1016 4 879441099 +754 282 4 879451804 +324 873 5 880575108 +537 197 4 886030891 +930 845 3 879534724 +758 218 4 881977487 +717 825 2 884642558 +640 169 5 874777890 +666 237 3 880313391 +836 1065 4 885754231 +468 1070 5 875301653 +823 721 4 878438695 +916 472 3 880843697 +2 272 5 888979061 +920 270 3 884219993 +741 66 3 891018266 +484 176 4 891195298 +708 1023 3 877326114 +663 410 3 889492759 +87 174 5 879875736 +479 169 5 879460917 +374 96 4 880938870 +693 187 3 875482336 +940 310 3 884800966 +11 301 4 891902157 +389 199 5 880165388 +860 690 4 876750421 +784 315 4 891386988 +527 116 4 879456611 +932 507 5 891249675 +222 198 4 881059039 +524 275 3 884832616 +189 255 2 893277551 +286 16 3 876521809 +650 658 3 891387571 +773 432 4 888539232 +857 258 5 883432193 +787 319 3 888979721 +871 307 3 888192315 +830 29 1 891899476 +919 458 2 875289212 +417 515 4 879646225 +328 121 4 885048266 +786 357 5 882842878 +870 276 4 889717102 +863 324 5 889289385 +627 468 2 879530408 +637 237 2 882903511 +734 496 5 891025523 +609 1 1 886896185 +551 125 4 892783791 +5 63 1 878844629 +479 756 1 879462203 +751 394 4 889297640 +696 520 5 886404617 +874 197 4 888633310 +883 487 5 891755066 +897 389 3 879991341 +630 273 5 885666779 +506 218 3 874873615 +303 4 4 879467936 +472 423 5 892791017 +745 28 2 880123671 +758 550 4 881978115 +486 297 4 879874629 +432 282 5 889416456 +913 25 3 881366974 +908 111 3 879723073 +782 748 4 891498720 +846 849 3 883950129 +739 195 5 886958939 +506 604 4 874873528 +484 415 3 891195857 +904 300 4 879735109 +655 200 4 887473639 +886 239 3 876032635 +868 132 4 877103195 +618 1212 2 891309410 +641 969 4 879370259 +666 657 4 880139642 +90 750 4 891383319 +847 1204 3 878940757 +387 204 2 886479771 +711 755 3 879994581 +697 246 5 882622798 +766 403 3 891310444 +781 318 3 879634124 +795 89 4 880569085 +938 151 4 891356679 +788 199 5 880868673 +764 56 4 876244472 +666 92 3 880139493 +758 481 5 881976031 +751 154 3 888871900 +847 93 1 878775570 +871 1024 3 888192689 +532 1228 3 874789704 +863 299 2 889289385 +922 746 4 891451143 +296 276 5 884198772 +91 343 4 891438151 +648 635 2 884883476 +873 750 3 891392303 +815 86 5 878693989 +23 116 5 874784466 +334 496 3 891547040 +633 147 4 875325740 +835 183 4 891034023 +445 298 2 891199906 +899 254 2 884122845 +796 66 5 893047241 +495 631 2 888632677 +903 183 4 891032872 +864 86 4 888890547 +788 141 3 880869984 +334 208 5 891546405 +899 83 4 884121214 +892 946 3 886610996 +94 365 3 891722383 +676 222 4 892686273 +846 4 5 883948908 +882 180 4 879865307 +496 771 2 876073865 +770 298 4 875971902 +422 218 4 879744086 +791 754 4 879448086 +454 111 1 888267086 +650 494 3 891371153 +871 1137 3 888193541 +450 1135 4 882396352 +654 147 3 887863488 +387 100 5 886484336 +13 132 4 882140002 +867 22 5 880078424 +682 187 5 888517235 +894 343 2 883518895 +38 35 5 892433801 +870 332 2 879982785 +888 180 4 879365004 +655 660 2 888475101 +782 1012 2 891499344 +540 274 4 882157662 +546 50 5 885140368 +650 56 3 891369798 +706 258 4 880997001 +758 170 5 881976233 +107 322 1 891264535 +862 977 4 879302877 +354 971 3 891217482 +551 310 4 892775516 +800 289 4 887646980 +354 196 3 891218457 +181 1025 1 878961668 +603 313 5 891956091 +655 953 3 887427243 +61 294 2 891220884 +303 559 4 879467670 +919 244 2 875289025 +763 55 4 878917384 +715 471 4 875962202 +486 288 4 879874153 +751 709 4 889132929 +655 1135 3 887427743 +216 210 4 880235229 +655 56 3 887428060 +747 188 5 888639890 +456 1107 4 881375587 +916 509 4 880844312 +360 96 3 880355803 +387 172 4 886480206 +893 240 4 874828864 +58 174 4 884305271 +486 268 3 879874064 +738 189 4 875351404 +758 141 4 881977533 +279 687 4 878793072 +785 152 4 879439527 +843 52 2 879447110 +848 82 5 887039164 +540 286 4 882156584 +5 181 5 875635757 +497 665 2 879310966 +5 412 3 875635416 +871 202 4 888193385 +472 176 5 875981664 +627 942 2 879530408 +405 970 1 885546487 +276 334 4 877935456 +642 54 4 886206959 +901 181 4 877127128 +246 1220 3 884921794 +262 338 4 879961532 +2 278 3 888551647 +474 4 5 887927588 +878 165 4 880866241 +833 118 2 875038483 +864 391 4 888893224 +525 14 3 881086078 +932 1205 5 891250643 +591 435 4 891031724 +556 268 4 882135646 +859 535 5 885774867 +906 544 4 879435664 +405 1308 1 885546336 +843 628 2 879443951 +868 685 1 877111394 +763 153 4 878915692 +617 56 1 883789425 +791 301 3 879448035 +767 170 5 891462717 +314 477 3 877886375 +600 174 4 888451665 +524 1048 4 884627594 +764 237 4 876243440 +826 422 2 885690379 +754 292 3 879451958 +328 911 3 893195879 +844 97 3 877386855 +293 877 2 888904265 +711 475 5 876185673 +924 421 4 885458060 +827 302 4 882201356 +389 486 4 880086971 +716 506 4 879794775 +727 55 3 883710375 +911 205 3 892839454 +452 661 4 875261747 +727 977 2 883709948 +782 127 4 891499213 +793 248 4 875103875 +472 227 5 875981429 +751 82 4 889133334 +459 409 2 879563796 +854 735 3 882813990 +709 50 5 879846489 +424 276 2 880859623 +426 968 3 879444952 +749 215 4 878847172 +488 89 4 891294854 +158 210 4 880134296 +940 343 2 884801246 +326 427 4 879875483 +586 234 3 884060614 +936 253 5 886832454 +863 903 3 889289570 +715 2 3 875964926 +303 615 4 879467413 +276 245 3 877935446 +405 920 1 885549746 +478 393 4 889397306 +900 284 2 877833287 +928 358 5 880936023 +774 222 3 888558539 +262 596 4 879961980 +625 192 2 892000438 +489 338 3 891448200 +880 849 3 880167918 +260 881 4 890618537 +659 1267 3 891385689 +269 1427 2 891448141 +791 245 4 879448087 +885 154 3 885713434 +709 1059 5 879847945 +18 32 2 880132129 +871 1022 3 888192689 +144 100 5 888104063 +653 496 2 878866679 +276 567 3 874792794 +788 118 3 880870335 +854 461 3 882814298 +387 191 4 886479610 +896 471 3 887159972 +883 175 5 891694312 +642 411 5 885605834 +454 486 3 881960385 +7 69 5 891351728 +222 692 4 878182370 +863 342 1 889289241 +665 135 4 884294880 +819 346 5 884012487 +455 239 3 879111397 +344 628 4 884899442 +844 184 3 877387769 +15 748 3 879455262 +303 287 4 879485203 +452 102 2 875560150 +546 379 4 885141465 +455 200 5 879111092 +807 227 4 892529805 +679 215 3 884487999 +60 496 4 883326682 +305 505 3 886323006 +895 301 4 879437793 +874 14 4 888632411 +939 993 4 880260853 +405 1591 1 885549943 +279 30 2 877756984 +672 284 4 879789030 +885 588 4 885714820 +16 202 5 877724726 +463 111 2 877385414 +843 71 2 879449256 +796 761 3 893048622 +741 181 4 891036681 +790 67 3 885158007 +705 82 5 883427663 +698 181 3 886366141 +405 923 2 885549464 +655 317 3 887474269 +577 215 5 880474556 +69 79 4 882145524 +663 978 4 889492614 +795 174 4 880569625 +650 926 3 891388294 +479 485 3 879460844 +927 105 1 879181879 +568 178 4 877907327 +880 793 4 880174677 +790 716 4 885158033 +833 428 2 875134110 +661 280 3 886841562 +848 845 5 887046565 +854 144 3 882814298 +762 246 1 878719294 +425 854 4 878738854 +648 1258 2 884366613 +903 248 2 891031309 +618 73 3 891309440 +664 497 3 878092649 +798 275 4 875295842 +886 200 3 876031573 +903 1 3 891031280 +699 828 3 884152917 +650 417 3 891387591 +83 756 4 883867791 +316 582 5 880854539 +592 235 3 882608662 +568 100 4 877907281 +764 4 3 876245421 +456 402 2 881375416 +449 475 5 879958603 +830 501 3 891561474 +655 1024 3 887650979 +653 780 2 880606620 +169 482 3 891359171 +936 93 5 886833795 +919 976 2 875289453 +578 245 3 887229523 +487 803 2 884045297 +771 97 1 880659919 +293 96 3 888905519 +933 132 3 874853605 +906 676 5 879435415 +899 479 4 884121612 +655 1407 2 887491131 +758 653 3 881975922 +592 480 4 882955662 +747 176 4 888638958 +397 243 1 875063613 +932 213 3 891249038 +931 690 4 891036003 +710 346 4 883705502 +22 50 5 878887765 +848 357 5 887038104 +378 323 3 890572396 +538 483 5 877109932 +542 780 3 886533003 +896 39 2 887158739 +606 942 4 880926700 +279 180 2 875308670 +788 679 2 880871057 +707 1545 2 886288189 +934 161 4 891193290 +851 79 4 875731722 +536 631 2 882363934 +742 100 5 881335492 +886 558 3 876031656 +747 8 5 888639175 +889 252 3 880177503 +738 179 3 875353869 +830 161 4 891561870 +923 928 4 880388306 +380 97 3 885478271 +764 125 4 876243795 +712 432 4 874730056 +610 755 5 888703710 +682 363 2 888522612 +868 998 2 877112063 +942 362 3 891282420 +399 235 4 882340876 +445 281 1 891200417 +13 819 1 882141924 +916 49 3 880845673 +709 427 4 879846489 +922 550 3 891450805 +590 274 3 879439256 +721 988 3 877137598 +391 194 4 877399486 +673 323 2 888787508 +506 2 4 874874850 +504 282 4 887831838 +851 915 5 893090752 +607 462 4 883880110 +31 1019 5 881548082 +647 496 4 876534275 +796 880 3 892611840 +425 443 2 878738956 +901 111 3 877126434 +406 97 5 879446639 +102 760 1 888803245 +931 220 3 891037046 +849 568 4 879695317 +546 816 3 885141411 +869 13 3 884491199 +880 584 3 880242933 +896 568 2 887159603 +851 455 3 875730379 +751 433 3 889134186 +601 148 3 876348140 +794 286 3 891034156 +496 22 4 876065259 +447 1009 4 878854876 +757 231 2 888466614 +757 258 5 888443306 +943 27 4 888639954 +796 414 3 892663044 +453 790 4 877561800 +616 748 3 891224840 +605 12 4 881016144 +630 15 3 885666718 +861 301 4 881274504 +184 368 1 889908104 +665 88 3 884294552 +624 1067 4 879793330 +847 173 5 878940332 +708 121 3 877325349 +669 190 3 892550170 +803 321 4 880054792 +894 979 3 880416473 +738 173 5 875350012 +748 169 4 879454848 +682 585 4 888522021 +655 464 3 887523367 +259 1074 3 874725264 +417 779 2 879649577 +758 290 5 881978495 +798 82 4 875915855 +727 1224 3 883712219 +312 614 4 891698865 +934 389 3 891195811 +796 409 3 893219122 +616 895 3 891224644 +320 1291 3 884749172 +878 175 2 880869911 +308 629 4 887738894 +100 887 2 891374868 +796 1299 2 892676043 +85 42 3 879453876 +316 100 4 880854083 +773 428 4 888539512 +882 419 5 879864917 +559 566 5 891034688 +500 740 3 883865632 +62 72 3 879375762 +293 815 2 888905122 +894 475 3 880416176 +379 97 3 882563752 +222 147 4 877563694 +880 29 2 880167965 +788 1407 3 880871717 +919 100 5 875288522 +796 194 4 892662826 +738 732 3 875350316 +912 611 3 875965830 +566 134 5 881649853 +736 323 1 878709187 +70 79 4 884149453 +765 50 2 880346255 +732 332 5 882589819 +642 416 5 886455469 +782 881 3 891498381 +897 659 5 879990923 +152 393 5 884018430 +717 1282 4 884642762 +622 227 3 882592815 +382 496 3 875946945 +719 220 5 888454728 +689 300 5 876674606 +625 91 4 891263057 +521 833 2 884476869 +545 679 2 879899438 +912 654 3 875966027 +718 255 4 883348773 +727 231 3 883713286 +721 286 5 877137285 +843 661 3 879447077 +426 482 5 879442737 +921 815 5 879379942 +669 290 2 892549820 +896 209 3 887158790 +714 117 5 892777876 +880 392 3 880242475 +383 488 4 891193242 +640 42 5 874778345 +234 89 3 892079910 +758 722 3 881980408 +666 172 3 880139090 +807 195 3 892528999 +560 93 3 879976559 +782 299 3 891498079 +336 871 2 877757550 +315 137 5 879799423 +387 178 3 886483824 +798 14 2 875295930 +7 217 4 891352778 +237 483 5 879376381 +644 259 4 889076433 +336 1249 3 877756356 +606 827 3 880922625 +653 290 3 880153522 +504 225 4 887832207 +655 1149 3 887429107 +907 628 5 880158986 +911 638 4 892839391 +907 202 5 880160204 +293 229 2 888907726 +458 631 4 886397541 +234 52 4 892334141 +875 496 4 876465144 +707 732 4 886287160 +416 150 5 893214041 +766 214 2 891309667 +804 456 3 879444011 +865 240 2 880143680 +805 1014 4 881694265 +527 431 3 879456363 +825 125 5 880755942 +561 40 2 885810834 +72 708 4 880036691 +457 154 5 882397058 +674 121 4 887762881 +550 271 5 883425652 +748 483 4 879455040 +798 602 3 875639260 +684 15 5 878759758 +116 916 2 892683699 +269 432 4 891450005 +718 289 3 883348391 +437 417 5 880143482 +569 762 3 879794740 +593 204 4 875660886 +886 1095 2 876033897 +897 429 5 879990587 +932 576 2 891252198 +790 216 5 885156435 +668 288 4 882818604 +522 208 5 876961248 +648 569 3 884883578 +503 224 3 880390128 +773 98 4 888540279 +343 1267 4 876406576 +406 163 3 880131582 +790 143 3 885156193 +916 87 3 880844262 +751 494 4 889133556 +450 485 5 882373088 +758 250 4 880672766 +759 756 4 875227922 +271 729 4 885848996 +94 587 4 891721078 +222 423 4 878183657 +601 234 1 876348947 +878 435 4 880866103 +184 241 3 889909812 +747 222 2 888640180 +899 1016 3 884120149 +276 844 4 877934677 +64 1065 1 889737968 +935 924 4 884472392 +402 275 5 876266741 +751 143 5 889133882 +932 657 5 891249767 +936 50 4 886832282 +704 185 4 891398702 +407 569 3 876348296 +378 193 4 880056160 +943 405 4 875502042 +763 972 3 878918333 +894 323 2 879896268 +684 215 5 875812176 +886 227 3 876032331 +747 985 2 888732640 +453 941 2 877561613 +578 246 2 890939697 +500 755 3 883876251 +650 230 4 891369656 +703 1 4 875242851 +886 157 4 876031695 +757 1016 3 888444563 +877 737 1 882677749 +913 963 4 881725737 +561 960 4 885809605 +686 969 5 879546083 +521 249 4 884476257 +798 95 5 876175467 +697 1067 5 882622170 +805 337 2 881180971 +698 9 3 886367956 +864 578 3 888889948 +749 258 4 878846265 +181 687 1 878961814 +329 248 3 891656640 +330 694 5 876545971 +551 284 4 892783110 +663 12 5 889493576 +899 747 1 884122535 +707 703 4 886287236 +389 728 3 880089302 +880 55 3 880167778 +77 199 5 884733988 +860 1041 2 887754411 +533 121 4 879192901 +498 174 3 881956953 +818 271 4 891870389 +915 333 3 891031450 +885 821 3 885713585 +409 45 4 881168603 +373 632 3 877106233 +720 316 4 891263387 +447 175 3 878855847 +331 160 5 877196702 +805 558 5 881695243 +761 1272 1 876190160 +445 327 2 891035830 +592 246 5 882608500 +645 214 4 892054570 +493 678 3 884129979 +566 1065 5 881650709 +871 270 5 888192858 +496 94 1 876070975 +817 597 2 874816007 +711 416 3 879995215 +7 318 5 891352010 +711 250 2 876185855 +454 942 2 888267198 +697 325 4 882621673 +749 72 3 878850388 +645 708 3 892055072 +906 276 5 879435299 +541 474 5 884047153 +659 43 4 891385955 +566 411 4 881651013 +840 483 5 891208703 +222 265 3 878182279 +727 597 3 883709641 +749 402 4 878849829 +805 50 4 879971214 +763 168 5 878919055 +749 1263 2 878850533 +592 245 1 882607434 +770 988 3 875971703 +682 558 1 888519276 +758 448 4 881978805 +766 50 4 891309053 +620 100 1 889987073 +618 90 1 891309351 +464 292 5 878354722 +790 550 4 885156618 +642 932 5 885605866 +932 225 2 891251985 +933 405 3 874939157 +524 385 3 884636453 +833 923 5 875039153 +102 4 2 888801522 +500 1195 4 883875468 +708 269 3 892718875 +782 251 3 891500109 +835 421 4 891034023 +253 132 5 891628416 +332 568 4 888098151 +608 306 4 880402983 +911 272 4 892838135 +63 269 3 875746948 +784 323 4 891387704 +715 4 4 875964300 +18 8 5 880130802 +864 596 4 888890001 +903 515 4 891031178 +915 268 5 891031477 +622 934 2 882591726 +582 932 2 882963114 +160 157 5 876858346 +807 234 3 892530216 +314 540 3 877890407 +918 514 2 891987082 +561 230 3 885809426 +815 57 5 878694854 +870 22 4 875680165 +706 410 4 880997444 +727 211 4 883710464 +569 14 4 879793948 +715 257 4 875962423 +894 1658 4 882404137 +913 156 3 880824512 +627 947 3 879531301 +487 197 3 883446404 +650 431 3 891369620 +652 333 4 882566857 +416 875 2 876696938 +897 238 4 879990779 +864 1412 1 888892461 +847 1137 5 878775404 +592 222 1 882608145 +844 597 3 877382339 +533 660 5 882902988 +683 322 2 893283903 +554 95 4 876550526 +804 322 5 879440700 +748 194 4 879454773 +808 288 3 883949454 +345 462 5 884901637 +913 79 4 880758974 +903 820 4 891031768 +738 222 4 875350913 +249 92 5 879572567 +790 1244 1 884462598 +911 484 3 892839363 +286 81 3 889652601 +394 577 2 881059704 +802 674 2 875985768 +741 582 3 891456156 +4 358 2 892004275 +666 546 4 880313640 +665 756 3 884292654 +332 411 4 887938738 +936 137 4 886832544 +744 188 3 881170528 +899 204 4 884121683 +763 357 4 878919116 +851 71 4 875731567 +804 443 5 879442122 +308 179 4 887736584 +808 312 3 883949873 +847 1012 1 878775729 +704 435 4 891397058 +889 1113 5 880182295 +922 159 3 891447853 +545 380 3 884134628 +781 181 5 879634318 +747 584 5 888640524 +796 1036 4 893219522 +416 491 4 886316596 +943 423 3 888639231 +417 651 4 879648212 +883 403 5 891696999 +774 569 2 888557857 +710 432 5 882064434 +493 186 5 884131897 +770 50 3 875971949 +326 500 3 879875644 +619 27 4 885954159 +804 25 4 879442490 +425 672 2 878738887 +296 9 4 884196523 +709 541 3 879848695 +867 176 3 880079094 +503 546 4 879438685 +933 385 3 874939207 +128 506 4 879968125 +840 163 4 891204295 +919 756 3 875289170 +382 59 5 875947049 +770 14 5 875972024 +387 1187 4 886480623 +610 98 5 888702902 +908 427 5 879722642 +724 313 5 883756996 +929 318 4 879640225 +894 1048 4 880993661 +918 382 4 891986846 +800 222 4 887646226 +429 176 3 882385542 +881 530 5 876538571 +194 515 4 879524216 +655 121 3 887651060 +802 448 3 875985686 +807 610 3 892684802 +851 406 2 875731674 +580 50 5 884124927 +748 175 5 879455019 +387 179 5 886484336 +911 399 5 892840120 +755 322 3 882569912 +645 174 4 892053518 +388 328 4 886439561 +846 949 2 883949643 +804 91 4 879442192 +453 575 2 892447163 +639 1193 4 891239702 +373 459 4 877106966 +886 66 3 876032442 +731 14 3 886179040 +756 183 4 874831383 +899 238 2 884121424 +916 33 2 880845135 +782 1127 2 891497793 +569 124 5 879793886 +239 507 5 889180651 +698 709 4 886367065 +890 211 2 882915661 +239 276 5 889179506 +523 67 4 883702654 +892 820 3 886611079 +880 42 5 880174808 +901 395 3 877131500 +783 948 3 884326726 +279 431 4 875310303 +622 195 5 882591938 +402 710 2 876267206 +773 790 3 888539825 +751 174 4 889133012 +715 564 2 875964300 +813 680 2 883752660 +897 616 5 879990877 +889 1073 5 880179893 +727 1215 2 883713521 +671 550 3 884035406 +561 235 3 885809806 +815 136 5 878695311 +437 475 3 880140288 +374 693 5 880396359 +533 402 4 888845284 +279 461 3 875306820 +473 20 3 878157568 +475 258 1 891451205 +549 121 4 881672461 +567 490 4 882425673 +497 141 3 879363611 +712 395 4 874957005 +796 500 4 892761629 +872 328 4 888478822 +109 228 5 880577604 +379 663 3 891674403 +163 316 5 891219976 +592 1275 3 882956624 +692 523 3 876953204 +487 98 5 883446637 +915 307 3 891030032 +452 15 4 875275763 +712 423 3 874729960 +425 301 4 890346705 +664 186 5 876526052 +469 603 5 879524376 +429 1101 5 882385399 +506 31 4 874873247 +682 88 4 888521599 +588 326 4 890014782 +346 96 5 874948252 +113 299 5 875076986 +639 204 3 891240751 +349 291 3 879465934 +805 625 3 881695560 +745 96 4 880123399 +289 455 4 876790464 +943 943 5 888639614 +437 716 5 881002345 +910 257 3 880821349 +844 121 3 877382055 +457 135 5 882397240 +880 176 5 880167731 +796 153 5 892676155 +536 191 4 882360187 +807 627 4 892684456 +416 103 3 886320119 +321 479 4 879438607 +833 67 3 875134891 +659 86 5 891386071 +639 580 2 891239581 +891 933 3 883429998 +532 982 3 888631077 +250 154 4 878090114 +846 76 4 883949200 +438 257 4 879868159 +764 255 4 876244181 +727 779 2 883712717 +642 140 3 886569257 +497 769 3 879362430 +234 465 2 892334803 +507 751 5 889964162 +682 781 2 888521833 +305 462 5 886323525 +416 218 3 876699488 +308 709 3 887737334 +746 568 4 885075211 +429 226 3 882386145 +286 348 4 889651179 +939 222 5 880260956 +18 633 5 880131358 +804 191 4 879442025 +551 770 2 892778244 +912 14 5 875966927 +795 189 3 881265284 +878 225 3 880870765 +716 605 3 879796215 +805 118 3 881695745 +800 25 4 887646980 +923 273 5 880387474 +524 239 2 884636498 +577 202 4 880474787 +788 729 4 880870052 +141 249 2 884585386 +711 172 5 879992445 +671 184 3 884035775 +534 717 5 877808198 +756 1074 4 874831383 +933 21 1 874854383 +939 1023 4 880262057 +151 423 4 879528570 +758 134 5 881975005 +769 121 4 885423865 +854 458 3 882812826 +444 269 4 891979402 +807 141 3 892684576 +650 719 3 891387833 +200 204 5 884128822 +441 338 4 891035289 +370 523 3 879434999 +835 210 5 891033303 +648 21 3 882212609 +708 319 5 892719062 +911 82 2 892840888 +747 357 5 888638876 +494 358 3 879540901 +627 77 2 879530305 +673 300 3 888786942 +668 137 3 881605093 +774 273 1 888558539 +777 509 4 875980449 +805 202 2 881696729 +551 640 4 892783750 +839 455 4 875752107 +590 248 4 879439645 +894 256 3 879896704 +907 42 4 880159957 +747 1205 3 888639594 +681 1105 3 885409742 +927 393 5 879193732 +831 713 5 891354970 +92 708 4 875654432 +42 141 3 881109059 +456 480 4 881373573 +795 552 2 883774317 +650 88 3 891384226 +601 483 4 876348782 +854 96 3 882814467 +804 127 3 879440947 +577 317 5 880474871 +249 69 5 879572600 +268 1208 2 875745398 +659 90 2 891386577 +298 356 3 884182627 +924 211 3 885457891 +533 135 3 879191022 +758 116 5 881976289 +924 285 4 884371386 +450 273 3 882377726 +128 458 4 879968921 +650 809 3 891383926 +669 208 2 891517215 +862 416 3 879305351 +595 845 3 886921448 +766 474 5 891309011 +717 269 5 884642133 +618 679 1 891308615 +624 979 4 879793511 +624 619 3 879793408 +548 950 4 891415643 +788 755 3 880870881 +782 302 3 891497698 +378 1221 3 880056351 +682 95 5 888523581 +387 718 4 886480206 +916 221 4 880843594 +21 990 2 874951039 +613 50 5 891227365 +527 174 4 879455847 +479 203 3 879460893 +870 658 4 875679992 +130 802 5 876252136 +495 211 5 888633194 +708 845 5 892719269 +655 910 3 889458990 +85 186 3 879454273 +882 50 5 879867694 +268 765 2 875743979 +904 278 5 879735616 +624 546 3 879793093 +870 856 3 879715002 +540 13 4 882157585 +653 659 1 880150330 +786 655 4 882843683 +371 73 5 880435397 +693 161 3 875484089 +201 924 3 884140751 +747 493 5 888734012 +648 565 3 884883679 +532 12 5 893119491 +878 204 2 880869911 +297 946 2 875239092 +757 328 3 888469286 +239 133 3 889178652 +417 230 3 879647850 +702 350 1 885767336 +640 315 5 886353894 +500 328 3 883864749 +889 818 4 880177540 +807 135 5 892705362 +666 479 4 880139642 +838 22 4 887065878 +527 179 3 879456587 +772 322 4 877533546 +854 283 3 882812492 +789 742 3 880332400 +488 97 4 891293863 +270 566 5 876955939 +120 508 2 889490979 +880 316 5 892958128 +843 860 3 879443443 +709 183 5 879846590 +831 603 5 891354535 +755 880 4 882569732 +253 168 3 891628278 +450 76 3 882395913 +94 637 3 891723186 +280 405 2 891700963 +848 971 5 887043421 +409 211 4 881108829 +445 272 3 890988205 +417 188 4 879647232 +84 100 4 883452155 +727 520 4 883710288 +892 1224 4 886609792 +387 243 1 886484460 +591 70 4 891031321 +763 1129 4 878918908 +815 391 2 878697734 +554 526 4 876550100 +586 1090 3 884065797 +738 235 2 875350764 +870 431 3 885586224 +592 276 5 882608401 +296 13 3 884196665 +693 507 4 875484837 +405 1412 1 885549005 +488 322 3 891293009 +796 298 5 892660954 +919 564 2 875373770 +632 133 4 879457064 +627 628 4 879530501 +194 167 2 879549900 +805 522 5 881698095 +683 132 5 893286207 +603 988 4 891956529 +650 528 3 891370998 +805 164 3 881695293 +15 297 3 879455606 +51 692 3 883498685 +880 1664 4 892958799 +643 685 3 891445354 +853 294 2 879365035 +450 492 5 882397049 +482 243 2 887644023 +524 194 4 884634646 +592 70 4 882956803 +902 300 4 879463373 +123 288 3 879809053 +900 186 2 877833957 +747 695 2 888733111 +846 810 3 883950434 +52 282 4 882922302 +758 571 4 882054936 +600 1239 2 888452564 +1 124 5 875071484 +880 2 3 880167732 +758 650 5 881979419 +409 1346 3 881168711 +46 748 5 883614645 +690 1210 3 881180035 +711 923 5 879993629 +440 883 5 891550404 +749 609 4 881073104 +802 196 3 875985239 +327 228 4 887820171 +875 50 5 876465370 +672 874 4 879787643 +442 121 2 883390544 +829 515 4 881698803 +743 294 2 881277656 +934 432 5 891191976 +902 483 4 879465448 +454 8 5 888266643 +788 1478 3 880871173 +853 1280 4 879365091 +387 28 5 886483939 +786 195 4 882843312 +818 875 1 891870590 +468 89 4 875291722 +804 526 4 879442792 +666 654 5 880139382 +919 1278 4 875289761 +730 181 2 880310465 +524 700 5 884637246 +828 45 4 891380166 +533 554 1 879191691 +864 114 5 888888168 +741 180 4 891457855 +756 91 3 874830954 +458 56 5 886397679 +922 184 3 891449901 +92 998 2 875907649 +731 481 3 886182456 +583 519 5 879384338 +194 1112 3 879527999 +933 4 3 874854383 +566 742 3 881650627 +655 914 3 891817471 +339 187 5 891032700 +892 321 5 886610341 +738 228 5 875350316 +815 154 5 878694453 +671 89 5 884035406 +222 249 1 883815768 +875 654 4 876465230 +845 690 5 885409719 +682 362 2 888518251 +886 1048 4 876032840 +942 514 4 891283069 +479 609 5 879461951 +393 724 3 889729159 +883 647 5 891717319 +429 1220 3 882387233 +399 82 3 882344512 +748 187 4 879454958 +119 316 4 890626706 +474 137 5 887915188 +932 131 4 891250525 +398 610 4 875745631 +318 809 4 884498210 +758 173 5 881975182 +655 246 3 887474020 +749 58 3 878847988 +748 527 5 879454749 +407 67 1 876339975 +896 696 1 887235027 +757 198 4 888445864 +778 8 1 891234406 +561 178 4 885807713 +847 239 5 878940688 +653 286 4 884405346 +912 152 4 875966320 +719 71 3 883354106 +754 243 1 879451163 +476 268 4 883365503 +800 223 5 887646979 +506 657 5 874873745 +582 841 2 882962133 +589 338 3 883352654 +303 46 3 879467706 +360 258 4 880353585 +782 908 3 891498322 +313 631 2 891014313 +342 249 3 874984661 +925 332 4 884717404 +773 233 1 888540112 +37 831 2 880915607 +871 813 3 888193136 +716 511 5 879795542 +459 50 4 879563064 +928 878 5 880936022 +747 318 5 888732899 +94 47 5 891720498 +449 639 5 880410700 +815 95 3 878693381 +836 318 5 885754172 +561 156 4 885807484 +717 326 3 884641621 +374 597 4 880393460 +851 342 2 888540205 +587 301 3 892871197 +645 496 3 892053686 +774 194 3 888555998 +927 449 4 879196230 +354 65 4 891218046 +148 133 5 877019251 +755 245 4 882569881 +407 134 5 875042569 +934 384 4 891195573 +930 405 3 879534803 +693 88 3 883975500 +758 228 3 881977021 +716 69 5 879795188 +805 559 3 881695347 +932 648 5 891249903 +669 181 5 892549390 +727 89 5 883711298 +748 137 3 879454958 +699 304 4 880695431 +880 948 4 880166662 +669 514 3 892550215 +896 22 5 887157947 +42 181 5 881107291 +897 136 5 879990843 +498 423 3 881957267 +883 176 4 891696895 +843 188 2 879444767 +782 1537 3 891500066 +314 41 5 877887802 +561 233 1 885809246 +392 1226 4 891038288 +592 22 5 882955506 +523 255 5 883700144 +747 187 5 888639318 +741 92 3 891456427 +880 412 3 880167306 +638 117 4 876694995 +715 96 4 875963538 +787 937 3 888979074 +886 589 3 876031365 +908 434 4 879723128 +887 421 5 881379954 +501 108 4 883348564 +804 176 4 879441702 +543 1073 3 874863269 +795 152 4 881260622 +13 799 4 882139937 +696 124 5 886404617 +543 23 4 874864183 +276 248 4 882659269 +727 397 2 883712780 +798 110 4 875914458 +791 259 3 879448087 +825 619 4 880756834 +630 125 3 885666875 +887 946 4 881381348 +753 357 4 891401901 +450 750 3 884098229 +653 219 1 880152780 +1 95 4 875072303 +279 191 3 875734031 +642 186 5 885602739 +927 237 4 879177508 +785 886 3 879438591 +25 134 4 885852008 +758 241 3 881977109 +3 336 1 889237198 +846 26 4 883949335 +330 422 4 876547853 +807 566 4 892528999 +774 526 4 888556600 +880 293 4 880166872 +797 748 1 879439105 +865 328 3 880142857 +664 173 4 876525963 +807 181 5 892528954 +259 271 3 888721050 +449 274 2 879959003 +916 9 5 880843378 +746 161 3 885075304 +291 50 5 874805860 +706 9 3 880997105 +484 226 4 891195390 +804 1140 3 879446276 +10 180 5 877889333 +236 526 3 890116500 +213 154 5 878956101 +504 356 4 887840098 +907 696 5 880159081 +806 258 3 882384589 +543 177 4 877545356 +812 881 4 877625537 +871 127 5 888193081 +871 575 5 888192909 +763 382 5 878922829 +675 896 5 889488575 +710 886 3 882063528 +747 959 5 888733144 +896 569 2 887161488 +188 356 4 875074200 +605 79 5 879425432 +481 8 3 885828245 +795 550 3 883252004 +222 738 3 878182959 +162 474 3 877636556 +354 676 5 891216788 +912 56 2 875966027 +774 679 5 888557383 +762 815 1 878719406 +555 258 3 879962096 +741 480 5 891457855 +322 9 4 887314212 +907 248 5 880159038 +551 280 3 892778337 +766 69 4 891309668 +130 1220 5 876252343 +864 1101 4 888887502 +741 660 3 891040362 +758 28 4 881975990 +870 194 3 875679795 +890 403 1 882915661 +535 258 5 879619286 +889 171 4 880177970 +883 355 5 891692168 +899 284 3 884120205 +349 106 1 879466283 +234 495 4 892335042 +852 681 4 891036414 +889 649 2 880178511 +528 845 3 886812857 +673 12 4 888787587 +313 210 4 891014898 +657 269 5 884238002 +548 15 2 891415854 +391 705 5 877399133 +551 64 5 892776380 +450 1311 4 887139844 +330 443 4 876546377 +650 193 3 891382901 +713 270 2 888882179 +758 124 5 884999132 +533 242 4 884698095 +864 62 4 888889035 +406 563 1 879792975 +906 273 4 879434882 +796 161 5 893048377 +597 289 5 875338983 +298 742 3 884125553 +532 1300 3 888632446 +12 88 5 879960826 +538 162 3 877363863 +932 98 5 891249586 +880 720 2 880167965 +497 176 4 879310762 +597 294 4 875339083 +798 451 2 875638547 +184 318 5 889908571 +593 417 5 875671598 +682 823 2 888522613 +815 423 5 878694613 +852 274 3 891036369 +672 321 4 879787518 +774 659 3 888555864 +592 1011 4 882608699 +502 263 1 883702448 +773 940 2 888539766 +790 151 4 884461988 +658 475 4 875145667 +614 14 3 879464093 +429 228 2 882386485 +409 116 4 881107117 +854 23 4 882813647 +457 13 3 882393883 +796 586 3 893049257 +95 566 2 879196594 +408 334 2 889679901 +883 8 4 891694249 +447 716 2 878856573 +749 68 4 878849612 +498 181 2 881955014 +59 24 4 888203579 +580 619 3 884125175 +854 324 3 882811937 +398 603 4 875721548 +122 86 5 879270458 +886 623 1 876033069 +622 506 3 882670139 +778 144 4 890670638 +399 560 3 882352404 +348 151 3 886523456 +406 150 4 879446748 +435 405 4 884132540 +712 172 5 874729901 +502 313 4 883701792 +642 407 5 885606482 +582 125 3 882961632 +894 1462 3 882404642 +199 751 3 883782557 +733 283 3 879535368 +668 328 4 881523787 +759 405 4 881476969 +727 240 3 883709607 +497 123 3 879361727 +447 223 5 878856394 +45 845 4 881011188 +758 384 5 881979788 +11 88 3 891905003 +738 47 3 875353569 +620 676 3 889987190 +72 1 4 880035614 +779 258 5 875501254 +805 229 2 881694885 +189 511 4 893265349 +588 210 4 890015500 +267 157 5 878971874 +771 15 5 880659303 +870 96 4 879270357 +782 992 2 891499370 +673 528 5 888787587 +865 121 1 880144024 +568 303 4 877906697 +225 482 5 879540707 +268 144 4 875744106 +892 229 3 886610011 +867 657 5 880078769 +864 202 5 888887354 +796 747 4 893047167 +499 898 4 885597901 +801 301 5 890332820 +796 180 2 892675606 +774 510 2 888556484 +363 148 3 891497439 +659 257 2 891044849 +738 568 3 875350485 +458 527 2 886397857 +222 457 1 878181287 +806 952 2 882385578 +201 29 3 884141053 +534 125 3 877807816 +804 831 3 879443852 +368 447 1 889783453 +864 29 4 888891794 +894 1251 4 879896654 +316 127 2 880853548 +870 6 4 875680311 +804 71 4 879442538 +308 47 4 887738933 +783 300 4 884326348 +886 1170 3 876031481 +416 924 5 893212623 +881 400 2 876539128 +640 926 3 886474913 +532 1136 2 888636558 +265 815 3 875320424 +805 709 4 881696699 +543 357 4 874863803 +437 200 4 880140398 +896 770 5 887160702 +784 258 5 891387249 +782 1144 3 891499243 +934 2 4 891192087 +936 9 4 886832373 +805 323 5 879971214 +804 282 4 879444714 +727 168 5 883710152 +763 941 3 878915958 +918 962 4 891988029 +189 659 4 893265796 +108 281 4 879879985 +437 189 2 881001946 +864 106 3 877214236 +712 794 4 874957243 +913 173 5 880826542 +782 358 4 891498641 +757 230 4 888466614 +769 111 5 885424001 +882 1444 4 879877245 +921 1032 5 879381199 +751 238 3 889297524 +766 1021 2 891309011 +921 133 5 884673843 +897 465 5 879992030 +201 201 4 884112537 +682 395 3 888523657 +643 665 3 891449930 +457 1047 2 882395964 +308 1147 4 887738387 +754 922 3 879452073 +541 111 1 884645883 +154 185 5 879139002 +912 168 5 875966107 +875 258 4 876464694 +393 282 4 887744053 +724 995 1 883757597 +936 116 4 886832636 +627 655 4 879530536 +870 959 4 875680046 +643 246 5 891445312 +734 479 4 891025541 +805 190 5 881694423 +143 258 3 888407586 +642 117 4 886131655 +942 303 4 891282477 +112 258 3 884992484 +274 744 5 878945678 +753 657 5 891401665 +806 222 4 882385563 +749 271 5 879788762 +752 302 5 891208451 +877 333 4 882676259 +751 310 3 887134816 +934 145 3 891196610 +824 288 3 877020927 +887 1413 4 881380176 +406 285 5 879792811 +816 687 2 891711554 +919 676 4 875289061 +897 840 3 879993887 +766 28 5 891309668 +271 100 5 885847738 +712 67 3 874957086 +7 265 5 891350845 +717 148 3 884642958 +764 275 4 876242851 +747 333 4 888638335 +51 705 1 883498756 +381 120 1 892696587 +847 301 5 878774832 +13 767 1 882397011 +586 217 5 884061084 +796 293 5 892660251 +496 168 3 876065324 +854 100 5 882812225 +932 778 4 891251272 +733 13 3 879535694 +758 425 5 881977337 +7 275 4 891352831 +402 168 5 876267206 +269 1074 1 891448697 +890 214 4 882916588 +308 1074 3 887741271 +815 158 2 878695645 +730 322 1 880310202 +804 199 5 879442239 +642 795 4 886570173 +675 303 5 889488522 +189 588 4 893266105 +850 28 5 883195214 +913 741 4 881037004 +709 318 5 879846210 +537 184 3 886032246 +815 203 4 878696650 +505 97 4 889333676 +848 214 5 887048573 +880 99 3 880241219 +279 1288 4 891209077 +650 928 2 891370093 +797 990 2 879439456 +447 274 1 878854552 +933 241 2 874855069 +746 82 4 885075337 +455 662 4 879111554 +429 772 3 882386508 +786 111 5 882841667 +379 709 5 880526032 +927 158 2 879198608 +130 96 5 875216786 +692 194 4 876953340 +893 849 3 874830372 +740 328 3 879522814 +345 54 3 884993506 +525 676 2 881086518 +802 304 3 875985142 +913 216 4 881725796 +641 23 5 879370364 +342 89 3 875319090 +608 507 3 880403899 +634 323 4 875729217 +807 699 4 892528515 +868 90 3 877109874 +724 258 4 883757537 +504 382 4 887839709 +901 523 4 877132400 +764 1284 3 876244529 +442 1170 4 883388909 +892 615 5 886609029 +903 529 4 891033278 +326 447 4 879877388 +727 90 3 883711991 +629 288 4 880116722 +887 969 5 881379954 +393 304 4 887742110 +386 118 3 877655085 +843 667 2 879443597 +934 949 3 891197678 +354 165 4 891217755 +796 22 4 892662523 +826 99 3 885690379 +516 204 4 891290649 +805 866 1 881705412 +889 151 3 880177016 +450 1249 3 882812821 +640 540 3 874778479 +796 230 5 893048377 +932 274 5 891250704 +825 827 4 881184695 +921 934 3 879380496 +798 143 5 875639061 +901 250 3 877127196 +497 216 3 879310399 +923 334 5 880387129 +128 462 4 879966729 +738 168 3 875353869 +749 635 1 878850703 +790 405 3 884461925 +650 235 3 891388080 +534 25 5 877807845 +748 709 4 879454546 +836 56 4 885754096 +503 1009 2 884638911 +741 17 2 891455711 +389 664 4 880088290 +523 179 3 883703495 +330 284 5 876544311 +864 317 4 888887128 +723 258 4 880498768 +766 265 3 891309357 +865 117 2 880143746 +450 1107 4 887138957 +854 264 1 882811888 +943 124 3 875501995 +459 98 5 879564941 +911 969 5 892840807 +670 191 4 877975731 +756 1060 4 874831383 +847 96 4 878940301 +758 355 4 888461050 +332 173 5 888360092 +503 221 5 879438377 +697 343 4 882621548 +838 289 5 887061035 +727 164 5 883711497 +387 551 2 886481800 +916 186 3 880844175 +756 591 4 874829924 +833 656 4 875123536 +629 273 2 880117001 +385 488 5 879441599 +868 187 4 877107284 +618 709 2 891308665 +652 125 2 882567383 +1 217 3 876892676 +694 163 4 875729982 +326 90 1 879877198 +234 148 3 891228196 +655 930 2 887429812 +60 1122 5 883326498 +347 1011 3 881653155 +752 307 5 891208451 +328 751 3 885596088 +467 293 4 879532385 +521 679 3 884478515 +758 39 2 881974931 +57 195 3 883698431 +716 134 5 879795314 +757 550 3 888445820 +308 180 5 887737997 +851 748 3 874788804 +758 31 3 881977872 +746 64 4 885075790 +712 50 4 874729750 +868 410 3 877104414 +601 178 4 876348526 +617 423 1 883789294 +341 908 3 890758080 +327 778 3 887819462 +291 97 4 875087264 +577 403 4 880475187 +12 238 5 879960826 +798 996 3 875638717 +886 179 2 876032673 +374 179 1 880395575 +567 96 4 882427155 +473 1143 4 878157242 +572 222 2 879449763 +780 659 4 891363756 +606 118 4 878143785 +488 153 2 891293974 +476 780 3 883365274 +576 208 3 886986445 +680 242 4 876815942 +637 282 3 882903250 +733 258 3 879535011 +796 106 2 893194895 +938 717 2 891357060 +106 100 3 881449487 +848 517 5 887043514 +429 358 3 882387053 +864 286 5 890463283 +526 302 5 885681860 +717 24 2 884642297 +894 258 4 879896109 +839 742 3 875752200 +450 260 2 889568753 +406 806 4 879446748 +463 539 1 889936753 +512 1238 4 888578602 +599 278 3 880953441 +417 663 3 879647040 +58 134 5 884304766 +268 127 4 875309945 +314 1145 4 877892488 +673 286 4 888787508 +617 234 3 883789464 +899 50 5 884119794 +885 71 4 885714820 +726 898 2 889829235 +532 8 5 893119415 +749 300 4 878846365 +790 402 2 885156796 +455 942 4 879112011 +655 963 3 888475015 +294 257 3 877819599 +653 679 2 880153406 +804 824 3 879444133 +442 181 4 883390416 +830 449 2 891899475 +339 1240 5 891033855 +92 558 3 875906765 +882 172 5 879864970 +286 1060 5 889652989 +796 467 3 892675654 +497 151 3 879363510 +788 132 5 880869014 +798 400 3 876176160 +470 305 4 879178257 +796 831 2 893049303 +833 122 2 875135058 +786 176 4 882843069 +602 259 4 888638160 +851 330 3 884205246 +526 260 1 885681982 +570 271 4 881262256 +934 663 5 891192849 +607 137 4 883879556 +788 582 4 880869396 +233 528 5 877665324 +899 658 2 884121911 +840 671 3 891204891 +846 59 4 883948457 +496 155 1 876070859 +889 235 3 880177648 +934 605 4 891195288 +159 125 5 880557192 +780 385 4 891364125 +406 130 3 879540147 +774 178 4 888556483 +467 127 5 879532478 +419 174 5 879435628 +622 625 3 882671120 +653 293 3 886051879 +918 495 3 891987689 +641 657 4 879370062 +592 9 5 882608182 +503 190 5 880383030 +892 570 3 886610566 +709 97 5 879846784 +711 433 4 879992994 +901 443 3 877287910 +932 218 3 891250915 +385 497 5 879443186 +138 474 5 879024327 +585 855 3 891284184 +162 55 3 877636713 +727 250 5 883709242 +787 258 5 888979605 +83 127 4 887665549 +463 591 4 877385590 +901 419 5 877131763 +650 117 4 891370852 +594 221 4 874781207 +936 475 5 886832282 +95 855 3 888954609 +487 568 4 883446322 +492 650 2 879969644 +490 1383 1 875428417 +883 693 4 891717988 +807 550 5 892979747 +239 463 5 889178689 +727 219 3 883712476 +751 313 2 889727869 +860 272 3 885145344 +655 223 3 887473856 +937 301 1 876768812 +192 269 3 881366436 +436 747 5 887770640 +796 432 2 893218728 +871 794 3 888193541 +705 142 2 883427932 +882 118 4 879863031 +940 628 4 885921800 +863 262 3 889289618 +655 220 2 887426583 +776 282 3 892313246 +934 56 5 891191922 +390 754 4 879693561 +894 1501 4 882404363 +828 327 4 891033756 +705 597 4 883427339 +271 178 3 885849087 +624 1289 3 879793093 +851 841 3 875730757 +557 165 5 881179653 +303 1228 2 879543459 +387 531 3 886479528 +647 1263 3 876776321 +417 405 3 879646531 +781 289 3 879633862 +718 121 4 883348773 +405 425 2 885546112 +279 1070 3 875309760 +790 250 5 885158562 +875 64 5 876465275 +393 560 3 889728584 +846 404 4 883949046 +698 479 2 886368545 +159 293 4 880485879 +210 121 4 887737244 +804 415 3 879446391 +592 680 1 882607690 +650 135 4 891381545 +144 58 3 888105548 +648 713 2 884795447 +880 770 4 880167880 +936 268 4 886831415 +504 834 2 887911059 +654 87 4 887864471 +595 111 4 886921496 +342 114 5 875318962 +621 2 3 880739909 +479 32 3 879461354 +655 741 3 887426201 +760 873 4 875665908 +655 218 3 887523477 +277 100 4 879543421 +457 210 5 882397337 +763 432 5 878922982 +145 1033 1 875270903 +374 1322 3 880394000 +764 64 5 876244991 +846 732 4 883948840 +243 26 3 879988459 +634 281 4 877017829 +437 153 5 881001888 +588 542 3 890026787 +476 451 3 883364475 +747 462 5 888639272 +498 190 4 881956203 +815 419 3 878695490 +795 231 4 883254844 +95 739 3 880572689 +340 95 5 884991083 +613 318 5 891227299 +711 380 3 879993959 +889 232 3 880182270 +145 226 1 875272196 +766 630 3 891310772 +796 250 5 892660984 +871 183 3 888193177 +672 515 5 879787812 +168 273 4 884287509 +823 100 5 878437658 +897 68 5 879994113 +900 618 4 877833957 +810 338 4 891873660 +193 715 3 890860076 +506 705 5 878044851 +130 820 5 876251312 +826 91 4 885690342 +702 688 1 885767629 +506 174 5 874873157 +363 302 5 891493571 +938 15 2 891356615 +694 318 5 875727099 +804 7 4 879443673 +940 300 5 884801316 +536 80 2 882360802 +907 98 5 880160037 +710 656 5 882064321 +806 789 4 882389319 +774 94 2 888556248 +450 1197 3 882395662 +778 79 3 890725776 +739 498 4 886958939 +330 423 5 876545971 +789 248 3 880332148 +562 50 5 879196445 +173 262 4 877556864 +493 89 4 884130933 +826 1 4 885690250 +890 1149 5 883009400 +199 243 1 883782636 +825 687 5 882109250 +425 233 2 878738643 +487 1314 1 883530929 +666 64 4 880139120 +122 127 5 879270424 +256 977 4 882154058 +555 319 5 879962096 +234 513 5 892333980 +747 529 5 888640099 +758 1074 1 882054297 +429 999 2 882387163 +416 282 5 893213796 +314 1 5 877886317 +625 176 4 891263960 +821 121 3 874792752 +62 1133 4 879376332 +592 568 5 882956201 +552 121 4 879222698 +524 739 2 884637128 +882 566 4 879876806 +899 157 4 884122419 +846 29 2 883949508 +649 121 2 891440214 +406 709 5 880131642 +437 139 3 881001576 +2 288 3 888550252 +848 650 4 887037822 +285 185 3 890595859 +842 313 4 891217891 +731 485 4 886187414 +568 653 4 877907877 +534 1215 3 877808120 +109 175 1 880577734 +621 783 3 874963273 +328 498 5 885046654 +761 123 3 876190160 +747 1497 4 888732538 +795 319 4 880554132 +896 405 2 887160270 +169 606 5 891359137 +802 379 4 875985976 +726 833 5 889832807 +456 289 4 881372687 +95 62 4 879196354 +737 192 5 884314970 +728 1355 4 879443265 +723 172 4 880498890 +203 477 4 880434755 +606 591 3 880923349 +486 289 3 879874262 +460 1011 4 882912205 +870 810 3 879714883 +804 720 3 879445072 +880 128 3 880167806 +59 285 4 888202941 +770 813 5 875971850 +867 431 4 880078841 +291 747 4 875087290 +374 1093 2 883627582 +346 515 5 874948890 +883 748 5 891692168 +276 109 4 874786686 +452 275 4 875264491 +716 121 5 879794116 +846 127 5 883947911 +407 708 3 876344712 +761 458 1 876190623 +189 531 3 893265327 +682 1225 4 888521783 +499 165 5 885598961 +772 315 5 889028363 +339 504 5 891032255 +936 1097 5 886833795 +164 826 4 889402340 +561 88 2 885810769 +943 94 4 888639929 +919 1277 4 875289887 +715 208 3 875963836 +921 96 4 879380656 +831 354 4 891354063 +728 237 4 879443155 +593 977 3 875660215 +802 681 4 875986155 +600 720 3 888452151 +936 1007 5 886833795 +894 306 4 879896756 +655 1174 3 887523477 +485 242 5 891040423 +839 93 4 875752056 +766 605 3 891310650 +659 705 5 891383561 +45 181 4 881010742 +533 393 4 879192069 +881 323 2 879051487 +671 810 2 884036050 +712 376 3 874956903 +730 269 5 880309870 +932 676 4 891251738 +279 449 3 875312378 +654 118 2 887863914 +234 661 5 892333573 +939 326 5 880260636 +757 96 4 888466461 +144 235 1 888104715 +749 650 3 878848189 +452 265 3 887719158 +378 225 3 880045006 +661 756 3 876037089 +44 419 4 878348784 +796 553 4 893047208 +661 573 3 876036043 +901 89 3 877288929 +778 249 3 891233675 +622 434 4 882592523 +533 550 4 879439340 +671 838 3 884036365 +916 56 5 880844038 +555 50 5 879962152 +456 209 3 881372849 +853 877 2 879364882 +612 147 4 875324975 +727 552 2 883712751 +821 28 5 874793469 +655 650 3 887427009 +222 174 5 878181934 +409 171 4 881107084 +864 568 4 888888115 +90 1201 5 891383687 +535 709 5 879618925 +492 199 3 879969255 +496 1157 1 876070937 +243 1115 3 879987465 +733 1047 2 879536659 +608 479 5 880404636 +846 401 5 883949643 +497 946 4 879310021 +771 274 4 880659941 +554 735 3 876369162 +387 567 2 886481737 +813 310 4 883752290 +577 1054 3 880471823 +628 332 5 880777096 +95 49 3 879198604 +611 353 3 891636125 +497 433 3 878759806 +429 307 3 882384437 +417 210 3 879647749 +894 299 3 879896200 +234 367 4 892334976 +279 1224 3 878082804 +774 29 1 888557519 +871 549 3 888193541 +537 732 3 886031912 +587 307 4 892870992 +463 276 3 877385287 +177 327 3 880130467 +670 1099 3 877975018 +650 1135 2 891383977 +838 56 5 887066782 +663 210 3 889493818 +929 185 5 879640184 +843 485 2 879447007 +450 588 4 882376658 +747 162 5 888639594 +279 2 4 875313311 +244 276 5 880604234 +405 182 1 885545974 +618 693 3 891307540 +805 123 4 881695723 +44 523 4 878348784 +653 1478 2 880153705 +764 22 4 876245549 +617 855 3 883789294 +543 197 4 874866116 +830 204 3 891898551 +244 528 3 880606533 +940 9 3 885921687 +655 7 3 887425969 +450 546 4 887139019 +774 188 3 888557329 +674 255 4 887763012 +190 327 2 891033349 +648 167 4 884882407 +13 779 3 882398255 +611 311 4 891636073 +185 258 4 883526267 +303 484 5 879466966 +391 177 4 877398951 +719 890 1 879358395 +773 1069 4 888539559 +773 216 4 888539608 +233 647 5 877661364 +586 393 3 884066799 +484 566 4 891195416 +903 696 3 891031906 +407 154 5 875116964 +588 155 5 890026882 +592 1071 4 882956668 +483 510 3 878953751 +909 744 3 891920763 +111 307 2 891680243 +708 742 1 892719385 +779 926 4 875992442 +926 289 3 888636269 +471 393 5 889827918 +694 527 5 875727449 +826 233 4 885690713 +784 326 5 891387155 +7 415 2 891354438 +537 1194 3 886030584 +939 818 3 880262057 +455 716 3 879112259 +891 313 5 891638337 +618 550 3 891308261 +901 135 4 877131961 +627 402 3 879530866 +194 435 4 879520813 +133 286 2 890588524 +532 1199 3 874789155 +68 181 5 876973884 +541 73 4 883865693 +458 960 1 886397726 +877 328 2 882676366 +655 219 2 890497653 +75 117 4 884050164 +495 491 5 888632443 +291 125 4 874834019 +693 130 1 875483144 +862 928 4 879303542 +747 285 5 888732899 +929 32 3 880817818 +749 136 5 878849404 +916 578 1 880844985 +299 597 3 877880111 +782 1252 3 891500066 +867 64 5 880078547 +537 314 1 886029239 +758 536 2 880672747 +291 151 5 874833668 +561 462 3 885809246 +833 218 4 875124495 +425 1222 2 878738757 +650 29 2 891382877 +585 543 3 891284393 +247 58 4 893081396 +756 159 4 874829924 +181 473 2 878962919 +682 298 4 888518639 +299 856 3 889503334 +429 443 4 882385210 +923 763 4 880387908 +880 180 5 880241822 +682 583 2 888517587 +766 181 4 891309177 +586 177 3 884061343 +869 411 4 884492828 +650 100 4 891369954 +786 416 4 882843534 +774 182 4 888556398 +943 281 4 875502299 +932 459 4 891250944 +72 198 5 880037881 +829 509 5 881698976 +891 286 5 891638433 +104 222 3 888465319 +526 248 4 885682635 +812 289 1 877625461 +803 306 4 880054629 +290 566 3 880474388 +830 203 4 891898061 +840 949 4 891211530 +445 546 2 891200417 +564 127 4 888730974 +213 197 5 878955707 +798 49 4 875814021 +773 187 5 888539962 +916 217 4 880845282 +263 322 3 891297485 +835 186 4 891034285 +605 408 5 881016144 +99 276 2 885678973 +451 304 3 879012684 +588 729 3 890024488 +381 96 5 892697174 +840 640 3 891209242 +619 298 5 885953778 +424 990 5 880858979 +770 334 5 876597960 +936 1344 5 886832183 +778 82 3 890803491 +1 58 4 878542960 +797 1254 2 879439548 +756 289 4 874828027 +62 546 4 879373118 +851 1094 1 875730455 +645 435 4 892054364 +776 5 4 892920320 +207 428 4 877838826 +262 567 1 879795430 +610 133 4 888703648 +833 445 4 875123299 +886 715 1 876033434 +13 810 5 882398076 +790 664 3 885158235 +577 550 3 880475130 +738 636 3 875350944 +447 508 3 878854195 +823 478 4 878439113 +640 691 4 890014144 +766 432 3 891309250 +152 367 3 882475972 +379 526 4 880525031 +399 526 3 882343171 +504 181 3 887831773 +924 82 4 885458168 +836 603 5 885754029 +626 681 1 878771477 +880 117 4 880166872 +648 90 3 884882271 +642 398 2 886454837 +347 284 3 881652480 +276 425 4 874791101 +715 462 4 875963998 +790 1025 1 884461188 +311 135 4 884366617 +804 1291 3 879444115 +560 405 4 879976970 +629 277 5 880117459 +829 70 4 881699060 +379 175 5 880525108 +851 367 2 875731674 +881 195 4 876539636 +553 525 4 879949153 +405 357 5 885544974 +796 39 3 893048562 +896 27 1 887235026 +363 455 5 891496927 +840 134 3 891204160 +870 77 3 879714103 +780 318 5 891364124 +776 514 5 891628916 +921 395 3 879380908 +738 147 3 875350764 +872 742 4 888479171 +883 286 3 891691654 +807 82 4 892529278 +862 271 5 879302763 +344 69 2 884901093 +703 276 3 875242964 +601 479 4 876349358 +498 509 3 881955867 +308 637 3 887741108 +934 529 5 891194866 +567 433 4 882426673 +766 215 3 891309250 +429 816 2 882387474 +496 195 4 876065715 +934 97 4 891192329 +15 258 3 879455473 +373 153 5 877100354 +250 183 4 878091870 +933 508 3 874853927 +588 969 5 890023831 +916 732 3 880844862 +500 7 5 883865104 +921 369 1 879380328 +217 761 4 889070232 +704 69 3 891397441 +793 1365 2 875104718 +674 866 5 887763062 +807 570 4 893081426 +936 1279 3 886833360 +301 387 3 882078084 +889 50 4 880176807 +251 468 2 886271641 +267 1110 3 878973329 +588 268 5 890014648 +201 232 2 884112282 +780 474 3 891363723 +232 178 5 888549988 +165 326 5 879525672 +854 246 3 882812195 +919 85 2 875372947 +18 524 4 880129816 +682 219 2 888522857 +296 244 1 884196896 +650 389 3 891387571 +379 474 5 886317533 +200 288 5 884125846 +928 877 5 880936022 +878 474 5 880868819 +425 181 4 878738435 +595 50 5 886921112 +279 269 4 892865492 +664 98 4 876526462 +393 585 2 889731649 +406 70 3 879793295 +757 183 4 888445864 +894 886 3 879982820 +916 85 2 880845115 +840 526 4 891204971 +343 64 5 876405697 +727 183 3 883710186 +835 133 5 891033718 +305 60 3 886324097 +834 405 4 890862563 +643 186 4 891447663 +545 164 4 879899906 +629 92 4 880117163 +931 347 4 891035946 +389 489 4 879991115 +107 327 3 891264501 +699 473 3 880696344 +834 315 5 890860687 +254 457 2 886470931 +97 1126 3 884239687 +744 307 4 881171839 +802 185 3 875985601 +322 483 5 887314417 +713 315 4 888881988 +645 98 4 892053241 +666 760 3 880313789 +92 401 3 875907535 +747 842 5 888640916 +337 227 5 875185319 +463 1115 4 877385531 +555 328 4 879962096 +894 919 4 881625708 +469 168 4 879524006 +738 254 2 875349111 +524 22 3 884634731 +174 781 4 886513788 +864 577 3 888892917 +716 73 4 879797256 +773 181 5 888540020 +761 1163 2 876190752 +748 323 4 879454208 +694 144 4 875728912 +845 751 2 885409719 +802 326 5 875984637 +862 172 5 879304243 +660 122 1 891198996 +13 438 1 882397068 +496 496 1 876066424 +862 182 5 879304526 +622 419 4 882670009 +508 451 3 883777281 +747 182 5 888639272 +599 1357 2 880952905 +682 202 4 888521413 +807 211 4 892529448 +412 174 5 879716918 +453 227 3 888207162 +416 293 5 893213019 +661 631 3 886841831 +787 681 3 888979657 +894 855 4 882404460 +871 92 3 888193338 +735 319 4 876697647 +235 344 5 889654419 +610 203 4 888703749 +798 162 3 876177353 +727 100 2 883708830 +817 7 4 874815885 +316 988 1 880853152 +854 133 3 882814091 +929 182 4 879640225 +862 143 5 879304722 +311 443 3 884365718 +751 559 4 889298622 +474 654 5 887924469 +842 1105 2 891218353 +745 79 3 880123540 +802 331 4 875986155 +480 485 4 891208186 +148 189 4 877019698 +805 56 4 881694423 +622 1016 3 882591014 +881 51 5 876538889 +161 194 1 891171503 +342 150 3 874984531 +367 185 5 876689991 +806 257 4 882385394 +758 252 3 880672830 +540 269 4 882156584 +650 588 3 891372286 +494 329 3 879540819 +332 225 3 887938706 +899 197 4 884121512 +860 274 3 885991476 +144 1028 3 888104495 +95 73 4 879198161 +788 1126 5 880869278 +128 223 5 879966839 +660 786 1 891265453 +622 29 4 882592735 +851 1034 1 875731105 +550 237 3 883426119 +565 171 5 891037252 +194 715 3 879527263 +880 742 4 880166847 +863 910 2 889289570 +58 203 5 884305185 +587 262 4 892871069 +405 468 3 885544698 +561 943 3 885809197 +639 1005 2 891239813 +535 207 4 879618613 +923 338 4 880387172 +592 754 3 882607325 +207 517 3 882081278 +472 191 5 875980283 +718 744 3 883348824 +896 50 5 887159211 +687 321 4 884651818 +549 748 4 881671952 +837 294 4 875721502 +297 527 5 875239018 +268 1178 1 875743534 +892 393 4 886607679 +771 462 3 880659426 +349 619 4 879466000 +648 746 4 884881524 +5 163 5 879197864 +774 554 1 888557556 +481 181 5 885827974 +829 462 4 881698976 +501 222 4 883347919 +617 443 4 883788782 +178 471 4 882823930 +934 168 4 891191875 +437 182 2 880140432 +222 193 4 878182005 +846 1107 4 883950128 +807 546 4 892978966 +149 313 5 883512557 +815 417 5 878694664 +613 297 5 891227338 +901 521 2 877289241 +850 648 5 883195527 +749 127 4 881073104 +566 133 4 881649670 +474 1200 4 887927339 +846 388 3 883950950 +860 56 4 885990862 +774 386 2 888556225 +595 717 2 886921977 +748 208 4 879454522 +653 642 1 878866604 +864 136 4 888886913 +484 471 4 881449737 +315 433 4 879821037 +788 685 3 880870996 +506 762 3 877861473 +18 172 3 880130551 +806 357 3 882387373 +498 14 4 881955189 +835 288 2 891032224 +727 180 3 883711589 +521 208 3 885253562 +786 280 3 882841745 +833 475 3 875035718 +782 1615 3 891499611 +833 431 2 875223813 +406 197 4 882480710 +758 352 4 885948283 +703 288 4 875242076 +786 501 4 882843534 +666 204 3 880139090 +450 392 4 887660762 +798 951 3 875639767 +634 1084 2 875728783 +786 1044 4 882844127 +862 434 5 879304410 +634 117 4 875729535 +533 38 2 879191691 +798 1139 3 876177661 +916 930 2 880843934 +380 89 5 885478583 +158 22 5 880134333 +198 474 5 884207298 +757 97 4 888445714 +938 284 2 891356827 +374 472 2 880393783 +749 655 5 878848044 +724 948 1 883758119 +276 728 2 874792277 +429 1109 2 882386448 +505 358 3 888631555 +702 352 1 885767435 +869 126 2 884491927 +934 67 4 891193373 +896 1248 2 887160187 +639 194 4 891240160 +727 774 3 883713257 +833 671 5 875039204 +843 379 2 879443394 +405 698 1 885546069 +902 298 2 879465016 +561 615 4 885807930 +485 345 1 891040560 +523 197 5 883703048 +747 26 3 888733314 +858 334 4 880933072 +592 96 5 882956241 +580 151 2 884126077 +819 300 5 879952538 +534 129 4 877807718 +541 29 2 883865336 +872 1047 4 888479603 +821 1197 5 874792889 +763 100 5 878915958 +682 228 4 888520923 +698 431 1 886367750 +767 524 5 891462560 +308 7 4 887738847 +758 291 4 881978115 +875 185 4 876466687 +807 154 2 892528919 +201 590 1 884114813 +759 984 2 881476642 +763 392 4 878919055 +804 1050 3 879442269 +506 132 4 874873615 +851 129 4 875730379 +561 186 3 885809447 +378 67 2 880332563 +830 968 4 891898211 +916 959 4 880845328 +110 780 3 886989566 +829 281 3 881712349 +425 157 2 878738149 +342 488 5 875319536 +916 1 4 880843361 +274 1060 4 878945645 +130 389 3 875216786 +686 518 5 879546497 +380 480 4 885478718 +779 7 3 875993165 +59 68 2 888205228 +468 508 4 875280539 +707 319 5 879439088 +551 509 4 892777274 +838 87 4 887065750 +843 177 3 879444767 +455 28 4 879111371 +13 209 3 882141306 +716 1124 3 879795838 +299 241 3 889502640 +592 475 5 882608107 +506 523 5 874873112 +899 474 3 884121612 +825 322 5 884642187 +398 837 4 875718614 +256 92 1 882164603 +653 62 3 880151691 +531 311 4 887048763 +503 356 4 879454841 +779 509 2 875999211 +805 102 4 881695591 +938 815 3 891356532 +648 38 5 884882803 +291 71 4 875086887 +890 636 3 882404879 +733 515 5 879535213 +833 522 2 875039039 +60 133 4 883326893 +881 554 1 876539636 +288 258 4 886372882 +871 1388 4 888193136 +741 22 5 891018303 +707 744 3 880060261 +450 78 2 882396245 +896 1522 2 887160750 +830 588 5 891561474 +347 148 3 881652888 +405 1546 1 885549408 +488 589 3 891294400 +327 255 3 887745911 +660 40 2 891201674 +743 301 4 881277357 +354 181 4 891216656 +548 659 4 891044446 +128 553 3 879968718 +303 1044 3 879485685 +470 129 3 879178542 +660 658 1 891200193 +405 303 1 885549904 +616 258 4 891224676 +374 239 4 880396622 +796 732 5 893047241 +893 1245 2 874828812 +291 939 4 874834768 +413 25 3 879969791 +279 56 4 875306515 +716 692 5 879795239 +682 226 3 888520923 +121 172 5 891388090 +475 354 2 891627606 +649 117 5 891440460 +541 393 3 883865693 +868 128 5 877108123 +818 346 4 891870364 +645 180 4 892054402 +249 238 5 879572451 +332 367 4 888360212 +48 243 3 879434330 +934 855 4 891192849 +889 191 4 880178078 +847 200 3 878940756 +450 597 4 882473914 +277 284 4 879543972 +728 289 3 879442761 +221 56 5 875245592 +429 1301 4 882385963 +796 608 3 892675492 +751 161 2 889134419 +13 187 5 882140205 +712 195 3 874730085 +625 519 2 891263703 +811 300 5 886377373 +509 338 3 883591319 +288 205 5 889225443 +806 1018 4 882389908 +877 921 4 882677128 +613 176 5 891227237 +913 603 4 880758150 +939 890 2 880260636 +881 21 3 876536667 +509 266 1 883591489 +653 728 2 880153568 +429 380 3 882387576 +903 96 2 891032842 +465 135 3 883531380 +795 143 3 883252292 +773 172 5 888539992 +907 934 4 880159222 +894 245 4 882404136 +807 1084 4 892529519 +832 286 3 888258806 +826 68 3 885690677 +815 1039 5 878693870 +588 24 2 890015766 +642 496 4 885603516 +429 637 3 882387506 +129 323 1 883245452 +654 1048 3 887864050 +741 83 4 891457855 +815 176 4 878694705 +653 702 3 880151918 +57 1016 4 883697730 +577 49 4 880474955 +868 94 1 877109814 +911 210 3 892839745 +836 269 5 885753475 +276 215 4 874791145 +459 235 1 879563367 +773 96 2 888540063 +500 215 1 883874528 +504 846 4 887831806 +455 183 4 879111862 +747 168 4 888639015 +503 197 5 880383358 +869 596 3 884491734 +886 237 4 876031850 +532 120 2 888630742 +645 367 3 892055039 +506 194 5 874873247 +533 511 4 879439379 +759 220 5 875227904 +833 684 3 875123195 +721 81 2 877139301 +95 552 1 888956422 +899 367 4 884122450 +498 657 3 881957488 +758 510 3 881974823 +761 840 4 876190753 +878 151 1 880870609 +670 83 3 877975018 +387 42 4 886480548 +646 1022 4 888528955 +806 98 4 882387798 +54 405 4 880934806 +889 1231 3 880182871 +224 222 4 888103729 +159 272 5 885501645 +724 938 3 883757671 +830 498 5 891899535 +489 749 4 891366571 +699 1336 3 884152976 +642 399 3 886131257 +194 661 5 879523104 +826 420 3 885690342 +904 736 4 879735499 +722 111 3 891281077 +892 143 2 886608238 +620 181 4 889988146 +854 195 3 882813537 +935 148 4 884472892 +151 258 5 879523838 +727 751 3 883708208 +843 82 3 879444801 +919 748 1 875288253 +416 415 4 886319408 +656 302 3 892318450 +916 961 3 880844202 +402 137 4 876266701 +705 252 1 883427552 +942 496 5 891283043 +933 73 4 874854629 +211 443 1 879460096 +804 576 4 879445355 +901 465 4 877131654 +682 248 3 888518640 +1 142 2 878543238 +207 385 3 875509346 +905 1011 3 884984382 +268 379 1 875744582 +623 228 3 891034343 +279 759 4 875313616 +483 222 3 878953485 +236 273 1 890116670 +720 347 3 891262608 +943 1188 3 888640250 +479 490 4 879461337 +880 1415 2 880243093 +798 161 3 875639235 +622 808 3 882671534 +28 672 3 881961728 +13 143 1 882140205 +762 749 1 878718996 +311 966 4 884365617 +924 13 3 887421305 +159 880 1 893256084 +894 1073 4 882404397 +537 693 4 886031786 +109 257 5 880563331 +804 70 4 879443137 +303 805 4 879485475 +636 283 3 891448916 +856 690 4 891489356 +796 1012 3 892660466 +648 210 4 882213502 +885 660 5 885714317 +819 70 4 884105841 +476 399 3 883364812 +923 125 4 880388289 +551 1136 5 892784049 +506 177 5 888848342 +916 54 3 880845790 +296 632 5 884197264 +290 102 3 880475585 +896 31 3 887158830 +919 240 3 875289611 +450 213 4 882396351 +802 678 4 875984776 +735 289 1 876698022 +881 812 2 876539505 +295 449 4 879518864 +760 631 3 875668368 +830 484 5 891898661 +815 77 4 878695798 +399 426 3 882350431 +195 1315 4 878019299 +689 257 5 876676397 +566 231 1 881651317 +934 963 5 891192914 +585 60 4 891282808 +660 204 3 891200370 +521 566 3 885254925 +881 90 3 876539595 +306 1028 2 876504581 +824 687 2 877021077 +804 358 3 879440787 +490 118 2 875428703 +769 1011 3 885424142 +663 121 4 889493182 +430 1375 4 877225660 +787 308 3 888979181 +788 405 4 880868974 +503 98 5 879454675 +917 276 5 882912385 +592 95 4 882956276 +829 1193 4 881699425 +864 72 4 888891288 +524 23 5 884635031 +788 636 3 880870583 +881 214 4 876538322 +887 96 4 881380403 +822 588 2 891037394 +815 87 5 878694199 +545 172 5 879899125 +781 245 2 879633862 +923 295 5 880387579 +882 89 5 879867508 +833 152 2 875134063 +406 670 3 879792928 +333 127 4 891045496 +887 47 5 881381679 +391 186 5 877399658 +694 1126 5 875727449 +815 518 3 878693183 +870 45 5 875679795 +617 413 1 883789635 +693 939 4 875483381 +840 514 5 891205093 +196 269 3 881250949 +833 589 5 875038807 +680 203 3 876816162 +889 566 3 880181275 +251 595 3 886272486 +588 225 5 890027113 +682 39 4 888518009 +595 121 2 886921550 +712 944 4 874956981 +43 144 4 883955415 +775 750 5 891032804 +916 77 3 880845620 +699 246 4 883278783 +843 501 2 879447578 +184 276 4 889907685 +905 125 3 884984009 +846 431 5 883947590 +851 299 4 886534617 +223 289 1 891549017 +648 63 4 884882103 +721 332 4 877137358 +10 70 4 877891747 +595 472 3 886921847 +342 1094 3 874984873 +269 187 4 891447841 +406 661 5 879446268 +889 93 3 880177219 +943 117 4 875501937 +655 503 3 887523477 +805 135 4 881698095 +1 216 5 876892701 +130 1157 3 880396861 +889 1067 3 880177131 +757 679 4 888466583 +407 176 4 875046427 +838 114 4 887065822 +727 771 3 883713692 +562 393 2 879195954 +122 513 4 879270084 +197 272 4 891409160 +835 318 5 891033718 +699 1163 5 879148050 +893 77 4 874829706 +741 56 4 891018303 +733 130 2 879544411 +669 614 4 891260778 +796 78 3 893219254 +826 258 4 885689759 +181 717 1 878963418 +787 306 3 888979007 +665 419 4 884295126 +305 228 2 886323998 +758 179 5 881976031 +178 588 4 882826242 +650 1627 3 891383786 +655 995 3 887424991 +870 1208 2 879902128 +884 1009 2 876859024 +880 68 5 880167843 +535 488 5 879618965 +889 749 2 880176718 +128 531 4 879966685 +797 269 3 879438957 +735 93 2 876698604 +927 410 1 879190223 +533 654 3 879191770 +327 245 1 887743705 +477 739 4 875941191 +275 393 3 880314772 +365 815 3 891304152 +861 531 4 881274529 +344 530 4 884901403 +796 1076 2 893219150 +92 368 1 886443672 +234 1011 3 891227730 +263 435 4 891298914 +738 164 5 892844112 +829 733 2 887584684 +591 182 3 891031171 +30 403 2 875061066 +805 1033 3 881706146 +491 294 2 891189842 +767 615 4 891463095 +936 508 3 886832282 +851 122 2 875731105 +716 549 4 879797372 +807 254 4 893085166 +878 371 3 880869239 +279 379 3 875314386 +586 50 4 884057387 +886 826 1 876032929 +683 325 2 893286346 +543 234 4 876896210 +897 234 5 879991729 +838 134 3 887066304 +891 237 5 891638601 +693 176 2 875483268 +777 15 4 875980306 +867 655 4 880078906 +325 511 4 891478047 +788 1303 3 880871577 +524 227 2 884636498 +207 847 3 885139179 +442 470 4 883391167 +551 196 5 892776982 +776 618 3 892474057 +562 582 4 879196249 +804 747 3 879445699 +749 239 4 878849286 +487 27 5 884044329 +188 11 5 875071520 +838 274 4 887064388 +846 209 4 883948377 +870 66 4 875680493 +450 489 4 882373464 +822 71 4 891037465 +564 685 3 888730658 +504 158 3 887910737 +796 945 5 892663009 +391 715 2 877399588 +850 519 4 883195168 +587 319 3 892871113 +365 741 2 891304059 +682 263 1 888518541 +524 222 2 884323500 +503 100 5 879438346 +795 58 4 881259362 +538 655 3 877108345 +833 515 3 875035660 +848 610 5 887046259 +727 114 5 883710152 +666 154 3 880568662 +159 742 2 880557192 +922 237 4 891448247 +833 667 1 875224381 +899 176 4 884121173 +846 367 4 883949121 +630 864 4 885667600 +933 1 3 874854294 +805 235 2 881705350 +560 109 3 879976651 +684 50 4 875810897 +862 70 4 879305172 +870 813 4 875051101 +846 185 5 883948534 +586 123 3 884057661 +828 902 4 891380167 +848 495 2 887039018 +574 242 5 891278860 +924 408 3 889286721 +495 636 3 888634475 +343 286 4 876402390 +90 479 5 891384147 +805 352 5 885845656 +887 254 4 881379145 +276 96 5 874792435 +291 404 4 875086958 +389 386 3 880089302 +608 157 1 880405085 +864 972 2 888890475 +919 11 4 875373582 +393 80 3 889729561 +927 763 4 879181749 +942 95 5 891283516 +825 363 4 881185343 +883 323 5 891692168 +757 270 3 888443434 +629 693 5 880117215 +464 270 4 878354762 +543 60 5 874864346 +896 840 2 887161469 +875 511 5 876465188 +392 495 3 891038401 +840 52 3 891205320 +321 1101 3 879440660 +345 86 4 884916235 +427 268 5 879701253 +622 451 4 882671221 +645 61 5 892054508 +846 608 4 883948377 +615 271 2 879447642 +698 483 3 886367133 +602 261 3 888638248 +499 55 4 885599598 +429 425 3 882385859 +494 143 5 879541245 +724 988 1 883758119 +773 455 4 888539471 +635 307 4 878878654 +622 22 4 882592178 +804 670 4 879444536 +712 63 4 874956903 +461 294 3 885355805 +880 1095 3 880175503 +642 771 3 885607115 +937 300 4 876768813 +363 257 2 891499595 +615 48 5 879448399 +804 1489 3 879445441 +854 188 4 882814368 +816 332 4 891710994 +914 643 4 887123886 +717 472 4 884642581 +815 582 1 878695311 +765 42 5 880346975 +896 8 5 887159343 +500 1135 3 883875561 +837 258 4 875721473 +749 1041 4 878849979 +456 544 3 881372114 +721 97 4 877140780 +592 887 5 882607780 +825 455 4 880756796 +939 934 3 880262139 +527 1211 3 879455765 +886 425 4 876032029 +831 28 3 891354848 +630 111 5 885666956 +239 116 5 889181093 +918 631 4 891986664 +786 496 5 882843312 +8 55 5 879362286 +405 398 1 885548094 +803 683 1 880054885 +593 238 4 877728878 +919 328 2 875288304 +846 525 4 883947819 +835 427 4 891033380 +774 1016 3 888559123 +938 472 4 891356656 +824 323 2 877020965 +506 580 3 874875062 +563 257 5 880506596 +72 215 4 880036718 +436 470 4 887770566 +859 1281 3 885774937 +757 53 3 888466737 +144 455 3 888104382 +496 443 2 876066353 +566 378 4 881650467 +533 289 2 879773297 +847 1007 4 878775444 +845 310 4 885409493 +407 402 2 876344329 +537 966 2 886032098 +653 208 3 890181185 +786 322 3 882842463 +481 199 5 885828543 +436 278 2 887771924 +189 405 2 893264487 +807 473 3 892530705 +868 181 5 877103280 +387 1 4 886480681 +846 227 4 883949698 +543 778 4 877550399 +830 96 3 891561673 +894 12 5 881625708 +919 1284 3 875289566 +815 240 2 878692319 +639 731 2 891239613 +804 636 3 879445334 +312 1172 5 891699538 +864 405 5 877214158 +645 60 5 892053748 +639 740 4 891239324 +665 1315 4 884291413 +847 151 4 878775914 +882 205 5 879865307 +15 823 2 879456351 +387 530 4 886483099 +655 1106 2 891817472 +496 506 3 876067215 +861 14 4 881274612 +551 1439 5 892783612 +445 902 4 891200870 +194 228 1 879535548 +450 619 3 882377861 +886 380 3 876032929 +671 379 3 884035303 +506 191 4 874873615 +582 919 5 882961540 +291 402 4 874871498 +566 576 2 881651013 +919 709 3 875374088 +793 928 3 875104864 +773 919 5 888538643 +585 1149 4 891283921 +870 873 2 875050370 +417 450 2 880953014 +98 210 4 880498968 +664 657 5 876526685 +116 1220 2 876453865 +712 996 4 874956903 +717 455 2 884642479 +425 326 1 890346567 +742 546 1 881335598 +521 1240 3 884478667 +789 249 3 880332296 +890 739 2 882915661 +455 15 2 879110767 +77 192 3 884752900 +663 3 4 889492614 +677 91 5 889399671 +627 387 2 879529916 +394 742 5 880888167 +880 986 3 880167569 +655 391 2 887429784 +719 216 4 879373935 +420 124 5 891356891 +666 1474 3 880567612 +924 504 5 885458009 +889 144 4 880178224 +833 100 4 875036169 +749 209 4 878848828 +871 272 2 888192859 +263 234 4 891298792 +464 515 5 878354965 +823 450 1 878439412 +887 294 5 881378219 +500 409 4 883865985 +754 1016 4 879451585 +763 1006 2 878919116 +699 1328 4 879148051 +682 553 3 888517627 +889 664 2 880182695 +398 100 3 875652816 +715 588 4 875963353 +450 214 1 882371416 +913 750 4 883110363 +200 429 5 884130014 +919 218 4 875374032 +474 523 5 887924083 +59 492 4 888205370 +659 720 3 891386492 +804 120 3 879444077 +878 213 3 880867854 +276 975 3 874836629 +545 720 3 883115664 +833 188 4 875124495 +848 265 4 887047808 +830 474 5 891898661 +532 118 4 888634813 +881 465 3 876538595 +629 658 4 880117813 +340 497 5 884990951 +697 310 3 882621431 +854 118 2 882813219 +848 496 2 887037980 +756 118 2 874828967 +630 181 3 885666650 +783 343 5 884326787 +33 880 3 891964230 +454 371 3 888267198 +299 640 3 889501995 +645 96 3 892054444 +920 350 4 884219953 +790 862 1 885158374 +186 1042 5 879023632 +535 144 3 879618123 +615 70 4 879448915 +326 474 5 879875025 +71 302 3 880864015 +642 1224 4 886132139 +654 462 4 887864998 +420 127 5 891357104 +790 105 2 884462907 +405 54 2 885546379 +13 504 5 881515011 +855 165 4 879825382 +455 77 4 879111528 +297 294 3 874953948 +304 243 3 884967391 +790 485 3 885156709 +727 158 2 883713668 +500 134 5 883873461 +889 1262 3 880182270 +790 294 2 884460878 +234 464 4 892079288 +640 182 5 874777925 +809 748 3 891037091 +857 24 1 883432711 +919 372 3 875920948 +883 127 5 891717319 +805 413 2 881695414 +542 347 3 886532176 +797 300 2 879439031 +556 707 3 882136396 +830 195 3 891464054 +189 1404 5 893266325 +875 98 5 876464967 +758 195 5 881975416 +429 808 3 882387576 +730 248 3 880310324 +892 1454 3 886610267 +896 223 4 887158830 +920 346 4 884219768 +390 475 1 879694232 +796 493 3 892675424 +919 628 3 875288898 +634 290 3 877017891 +851 355 4 888540240 +600 183 5 888451750 +790 214 3 885156618 +796 86 5 893047321 +887 28 5 881379522 +92 406 2 881008058 +880 258 4 880166499 +184 387 4 889909515 +486 303 4 879874388 +846 642 5 883950220 +845 302 3 885409374 +694 665 4 875728729 +5 404 2 875721216 +835 371 5 891034366 +795 175 5 881263767 +847 499 4 878940013 +313 326 4 891012907 +59 567 4 888206562 +852 1052 4 891037888 +716 485 5 879795375 +389 654 5 879991411 +729 272 4 893286638 +13 647 5 882140206 +716 724 4 879796138 +698 202 3 886367775 +389 371 4 880088309 +755 331 3 882569771 +394 29 3 881058201 +312 618 5 891698300 +715 11 4 875963306 +532 1217 4 888630453 +145 1216 2 888398238 +910 250 1 880821033 +622 80 3 882671446 +792 121 4 877910412 +682 192 3 888516979 +269 132 5 891449145 +297 148 3 875239619 +819 327 4 879952656 +178 147 4 886678902 +699 185 4 878883038 +625 121 3 891273698 +378 216 4 880055268 +870 327 4 875050410 +764 111 4 876243595 +405 401 1 885547448 +863 321 4 889289157 +660 391 2 891201823 +625 476 2 891632164 +450 696 4 882398666 +862 476 4 879303622 +719 298 2 888451537 +880 375 1 880242782 +108 1 4 879879720 +871 315 3 888192286 +661 89 5 888300344 +933 403 3 874939105 +880 217 4 880241411 +445 288 2 891035830 +805 1101 5 881698745 +601 121 2 876347267 +393 485 2 887746670 +693 685 4 875483947 +710 340 4 882063367 +457 175 5 882547139 +533 591 4 887721848 +805 1110 5 881694978 +420 855 5 891357021 +523 97 4 883702946 +882 380 5 879868197 +830 679 3 891561805 +605 338 2 881015064 +825 928 3 880756224 +198 682 3 884204709 +71 168 5 885016641 +730 257 5 880310541 +116 295 3 876452582 +917 150 5 882912385 +351 307 4 879481550 +659 451 5 891385534 +379 197 5 880568253 +745 194 4 880123262 +781 195 4 879633942 +447 83 5 878856458 +659 183 4 891385079 +897 265 3 879990466 +704 1299 3 891398702 +703 748 3 875242281 +908 447 3 879722850 +399 218 4 882344597 +896 1183 2 887160842 +682 686 4 888519725 +472 294 4 875977735 +301 636 3 882077811 +130 77 5 880396792 +897 240 4 879993823 +577 1219 3 880475067 +753 523 4 891401851 +716 620 3 879797287 +734 15 4 891026009 +780 294 3 891363259 +788 215 3 880869908 +642 21 5 885605148 +349 285 5 879465477 +815 117 3 878691884 +240 895 5 885775711 +655 568 3 887429640 +936 628 1 886832758 +166 687 1 886397777 +935 864 5 884472704 +704 631 3 891397366 +279 566 4 875313387 +884 382 5 876859351 +846 178 4 883947630 +849 121 5 879695086 +586 284 3 884057518 +628 294 4 880777167 +748 83 3 879455019 +846 751 5 883946938 +504 791 3 887911789 +788 286 5 880867372 +292 419 4 881105657 +276 919 4 874786467 +557 346 2 884357321 +780 186 4 891363651 +835 25 5 891032764 +474 504 5 887924469 +815 485 4 878694820 +398 208 5 875723253 +624 93 5 879792557 +181 546 2 878962919 +870 1118 3 881001249 +474 204 4 887924084 +753 174 4 891402323 +916 570 3 880845368 +933 471 3 874854611 +747 404 5 888640648 +840 659 5 891204827 +727 722 2 883712993 +654 568 4 887864868 +380 211 3 885479487 +843 174 4 879444670 +472 651 4 875981830 +332 147 4 887938524 +698 198 2 886367442 +497 951 2 879363695 +728 15 4 879443387 +234 925 2 892334976 +868 480 4 877103280 +385 210 1 879453773 +638 128 3 876695216 +181 1008 1 878963276 +524 485 2 884635085 +774 401 2 888556169 +889 262 4 880176620 +843 739 2 879447523 +835 69 5 891034366 +795 931 2 880560078 +793 148 4 875104498 +160 55 4 876858091 +885 79 4 885715803 +788 433 2 880869621 +936 282 2 886832714 +666 644 3 880314453 +782 1255 2 891500194 +745 12 5 880123905 +695 324 2 888805981 +853 358 1 879365035 +774 197 1 888556746 +642 288 1 885604085 +523 638 4 883701065 +178 100 4 882823758 +763 50 4 878914968 +839 713 2 875751774 +214 276 3 891543271 +201 549 3 884140750 +802 573 4 875985840 +354 451 3 891307114 +870 328 3 875050410 +577 496 5 880474455 +339 434 4 891033350 +325 93 4 891478627 +684 716 2 878761751 +833 435 2 878078229 +889 856 4 880181138 +601 50 5 876346810 +94 465 5 891721851 +608 505 5 880406862 +851 879 4 875729820 +804 988 4 879440663 +64 275 4 879365670 +870 401 3 880584584 +276 150 4 874786924 +568 631 5 877907367 +872 895 5 888478882 +255 332 2 883215586 +669 268 3 891517159 +455 553 3 879111907 +921 275 1 879379642 +581 1097 4 879641787 +139 237 3 879538254 +823 606 4 878438856 +805 217 2 881695293 +493 1088 2 884131777 +727 274 5 883709438 +495 568 1 888635294 +389 1 4 879915860 +889 636 4 880181663 +497 200 3 879362359 +833 168 5 875038775 +846 484 5 883948048 +770 929 4 875971989 +830 176 3 891561673 +921 1279 2 879380142 +804 447 3 879445625 +441 538 3 891035144 +271 181 5 885848707 +752 1024 3 891207940 +788 431 2 880868401 +450 220 4 882394097 +142 42 4 888640489 +747 13 3 888733348 +430 748 3 877225239 +859 287 5 885775358 +487 274 4 883444631 +461 327 4 885355757 +788 182 2 880868599 +715 234 4 875963242 +716 609 3 879796354 +880 790 3 880175050 +806 655 3 882388128 +730 328 2 880310201 +690 747 3 881180427 +47 286 3 879438984 +826 624 4 885690379 +833 289 1 875035487 +537 521 2 886030831 +453 1145 2 888206492 +452 475 2 876299004 +916 1005 4 880845303 +666 511 4 880139120 +439 290 4 882894084 +786 203 4 882843753 +922 217 3 891449993 +381 313 2 892697869 +543 249 2 888209667 +222 48 5 878181592 +634 276 5 877018125 +650 177 2 891371061 +814 53 4 885411132 +497 402 4 879310508 +746 2 3 885075304 +851 983 2 875731021 +763 483 4 878915628 +102 153 2 892991376 +14 186 4 879119497 +495 55 2 888634389 +793 151 5 875104142 +354 170 4 891217194 +85 9 4 879456308 +246 827 1 884923829 +907 8 3 880159688 +637 460 2 882905388 +833 238 2 875124225 +586 808 3 884062405 +837 151 5 875721734 +7 52 4 891353801 +378 71 4 880055672 +854 9 5 882814570 +913 747 3 881369407 +504 595 4 887832097 +851 250 5 875730379 +938 748 2 891356282 +846 559 5 883949200 +788 326 4 880867477 +758 242 3 880672230 +867 588 3 880078887 +894 1080 4 882404507 +699 886 3 893140639 +611 340 5 891636192 +200 930 3 876042790 +707 81 2 886286491 +224 125 3 888103942 +878 509 4 880866288 +807 541 4 893083740 +236 294 2 890116895 +417 212 1 879647800 +398 684 4 875908134 +863 1313 1 889289067 +925 333 3 884717790 +911 622 3 892840996 +621 25 4 880738699 +608 469 3 880405395 +761 877 2 876189931 +796 934 3 893048024 +748 210 3 879454584 +275 825 2 876197904 +867 9 5 880078958 +201 55 4 884114471 +919 794 4 875373521 +690 357 5 881179122 +796 480 4 892663155 +535 301 4 879617199 +795 472 3 880559543 +562 190 4 879196445 +588 625 3 890024325 +798 258 4 875286981 +450 812 4 882468402 +181 988 2 878961847 +796 768 2 893219065 +318 1160 5 884494976 +899 655 4 884121267 +631 682 2 888465247 +938 546 3 891356532 +759 591 3 881476891 +694 179 4 875730980 +409 127 4 881106605 +380 200 4 885479104 +903 185 5 891033070 +769 411 3 885424099 +844 117 4 877381450 +851 412 2 875731105 +868 739 2 877111542 +790 227 3 885156647 +308 392 4 887740367 +749 101 4 878848700 +474 25 5 887916608 +342 486 5 874984207 +82 770 4 878769777 +498 237 2 881957625 +852 825 3 891037586 +506 516 4 874874525 +808 332 4 883949639 +222 35 1 878184007 +896 327 5 887235643 +830 925 4 892502651 +279 321 5 875249102 +824 325 4 877021121 +851 411 3 875731021 +761 237 5 876190417 +645 482 4 892053340 +621 154 5 881444499 +13 863 4 882140487 +805 58 4 881698778 +381 596 3 892697297 +773 59 5 888540617 +918 856 4 891988491 +679 222 4 884487418 +826 33 3 885690600 +644 977 4 889076922 +684 63 4 878762087 +272 32 4 879455113 +768 14 5 883835026 +879 866 5 887761460 +500 1469 1 883876224 +700 173 5 884493713 +910 751 3 884229194 +848 478 5 887039531 +752 344 4 891208212 +497 68 4 879310850 +561 184 3 885808843 +346 175 4 874947644 +486 242 4 879874018 +887 411 4 881379059 +886 1209 2 876034041 +557 1244 2 880485863 +863 328 5 889288943 +601 239 3 876350537 +316 487 3 880853810 +429 235 3 882386966 +825 1087 3 881343153 +740 326 3 879522814 +786 289 4 882844336 +537 431 4 886031678 +869 1382 3 884492201 +42 174 5 881106711 +532 815 4 888635376 +354 527 4 891217394 +640 62 3 874778612 +117 475 5 880125746 +838 190 4 887066988 +586 164 2 884059486 +790 144 4 885155572 +192 289 4 881366615 +645 641 5 892054600 +904 155 4 879735616 +724 873 3 883757784 +903 48 4 891033005 +716 56 5 879796171 +804 515 5 879441000 +828 886 1 891035438 +318 134 5 884495639 +548 370 3 891416050 +715 71 3 875963354 +854 423 4 882813963 +929 483 4 879640036 +824 989 2 877021121 +457 120 2 882551344 +889 249 3 880177266 +540 332 4 882156677 +790 83 3 885155034 +734 274 4 891025943 +416 273 4 876697415 +855 529 4 879825613 +378 56 4 880045760 +933 1070 2 874854031 +739 333 4 886825227 +622 386 3 882671727 +822 539 2 891035086 +707 614 2 886287876 +551 559 5 892784479 +422 717 3 875130173 +758 23 4 881975814 +709 472 4 879848792 +76 203 4 875027507 +102 241 3 888802038 +407 659 5 875550174 +344 64 5 884900818 +393 195 3 889555272 +799 286 5 879253668 +576 763 3 886985695 +909 529 3 891920763 +839 121 3 875752237 +486 919 3 879874902 +798 417 3 876176043 +627 52 3 879530146 +854 924 4 882812314 +943 581 4 888639814 +777 127 1 875980391 +923 322 4 880387130 +534 291 4 877808031 +484 1016 4 883402866 +886 20 2 876031739 +846 188 3 883948642 +915 321 3 891030002 +25 527 4 885852248 +620 755 5 889988169 +634 248 4 877018311 +495 576 3 888637440 +556 324 4 882135805 +846 640 1 883948642 +156 480 5 888185606 +851 347 5 891961663 +71 153 4 885016495 +838 71 3 887066782 +813 892 1 883752708 +717 303 4 884641644 +790 393 2 885156290 +537 568 2 886031912 +843 206 3 879448112 +222 72 4 878183311 +935 1016 4 884472434 +579 234 3 880951708 +747 175 4 888640180 +18 493 5 880132437 +843 157 2 879448199 +932 550 2 891251331 +804 366 4 879445579 +655 1266 3 887428911 +542 321 4 886532928 +504 620 4 887831419 +801 328 5 890332748 +881 99 3 876538571 +932 211 5 891249710 +514 157 4 875309350 +630 9 2 885666536 +698 300 4 886365577 +75 833 2 884051113 +887 140 5 881381425 +293 451 3 888907245 +853 286 3 879364668 +655 584 3 887429171 +691 178 5 875543281 +887 828 3 881378854 +284 319 3 885329238 +366 17 5 888857866 +735 515 4 876698755 +600 947 4 888452071 +790 73 4 885157489 +795 419 3 880569526 +805 1098 3 881704150 +862 436 4 879305386 +541 151 3 883874717 +798 121 5 875295930 +751 751 4 887396425 +776 98 4 891628837 +338 86 4 879438505 +293 51 3 888907674 +878 588 2 880870048 +758 168 5 881975416 +867 323 3 880077951 +943 55 5 888639118 +764 747 3 876246291 +25 204 5 885853415 +559 863 5 891033956 +592 129 5 882608457 +833 202 4 875133924 +943 54 4 888639972 +340 480 5 884991114 +888 514 5 879365154 +825 979 4 889021134 +637 815 2 882904678 +445 508 2 891200078 +747 315 4 888638774 +847 527 2 878939536 +889 650 2 880178130 +736 533 3 878709108 +887 431 3 881379685 +790 237 4 884461541 +715 746 5 875964025 +603 22 4 891956776 +786 285 3 882842726 +711 155 4 879995382 +648 781 4 884882078 +388 276 2 886440608 +795 234 4 883251200 +704 492 5 891397491 +417 111 3 879647768 +60 175 5 883326919 +28 567 4 881961782 +548 546 4 891415815 +334 11 4 891545741 +532 426 5 888635197 +812 292 3 877625610 +908 963 4 879722397 +745 483 1 880123361 +782 289 3 891498436 +397 343 2 885349148 +642 673 2 886130929 +848 181 5 887046674 +290 472 4 880475495 +852 969 5 891037917 +181 1061 2 878963086 +940 521 4 885921915 +331 31 2 877196567 +920 302 4 884219701 +653 684 5 878854247 +327 28 3 887747971 +299 10 5 877878601 +863 327 5 889289327 +595 274 3 886921584 +850 568 5 883194768 +645 64 3 892053429 +846 697 5 883949254 +653 1139 3 880153145 +553 1 3 879949153 +580 121 4 884125457 +614 276 4 879464234 +872 274 3 888479560 +562 204 1 879196288 +766 481 4 891308968 +786 181 4 882841955 +805 22 1 881694423 +584 222 4 885774483 +854 1134 3 882812787 +896 508 2 887159035 +825 825 4 881187129 +268 172 5 875310031 +823 356 3 878439467 +844 70 4 877386990 +911 483 3 892838637 +756 96 4 874828640 +601 416 3 876350683 +506 48 2 874873158 +756 755 3 874830598 +465 98 4 883531409 +727 65 2 883712343 +738 118 3 875351438 +94 245 1 891724828 +737 475 4 884314693 +815 615 2 878696181 +874 325 2 888633197 +256 216 5 882165032 +892 153 5 886609793 +770 475 5 875972381 +566 20 4 881650551 +749 191 4 878848217 +860 49 2 885991316 +276 95 5 874792839 +843 380 3 879448262 +44 172 4 878348521 +269 441 1 891450857 +806 403 4 882388706 +850 22 5 883195527 +78 476 3 879633767 +758 896 5 886658068 +458 475 4 886394729 +833 1029 1 875134940 +854 64 5 882814121 +655 638 4 890497592 +848 509 4 887046674 +7 664 3 891353977 +933 765 1 874938644 +476 384 4 883365274 +249 302 4 879571438 +833 233 2 875223756 +655 480 4 888984506 +751 385 4 889135244 +182 1 4 885613092 +539 531 4 879788572 +336 1094 1 877757062 +7 11 3 891352451 +56 930 3 892679481 +828 322 3 891034515 +504 44 4 887838846 +751 55 4 889134419 +677 539 3 889399113 +773 386 3 888539643 +896 121 3 887159343 +868 217 2 877109895 +889 866 4 880177407 +905 742 4 884983888 +586 265 5 884062405 +436 264 2 887768669 +360 193 5 880355803 +464 288 4 878354626 +896 1437 1 887161564 +705 71 5 883427640 +826 309 4 885689892 +795 7 5 880557294 +666 293 3 880313310 +916 70 4 880845099 +865 21 2 880144229 +621 233 3 874964375 +892 132 5 886608897 +194 710 3 879524393 +345 412 3 884991600 +624 329 3 891961120 +933 161 2 874939105 +545 205 4 884134276 +749 1185 4 878849375 +711 955 1 879992739 +425 1013 1 878739054 +712 843 3 874957140 +426 404 3 879444321 +919 140 5 875373471 +508 175 4 883767465 +942 50 5 891282816 +79 275 4 891271627 +766 186 3 891309522 +875 174 5 876465025 +537 107 3 886030281 +648 769 1 884883724 +854 484 3 882814368 +576 324 2 887168978 +425 96 4 878738335 +343 387 4 876405521 +648 47 2 884881807 +551 380 3 892783488 +899 31 3 884121513 +907 318 5 880159642 +881 357 5 876537457 +896 808 3 887160270 +859 15 4 885776056 +908 423 4 879722822 +627 271 5 879529432 +846 468 4 883948949 +198 367 3 884209379 +756 195 3 874828967 +712 191 3 874730396 +727 179 3 883711150 +721 880 3 877137109 +537 723 2 886032098 +868 746 2 877109082 +437 1267 4 880141528 +536 209 2 882360030 +870 56 5 875050826 +541 655 4 883864782 +688 309 5 884153606 +870 174 5 875050698 +416 510 4 876698853 +453 56 5 877554771 +63 262 4 875746917 +831 741 2 891354726 +579 692 4 880952440 +7 632 5 891352261 +629 392 4 880117747 +881 63 4 876538853 +650 447 3 891386120 +900 318 4 877833672 +690 153 5 881177485 +815 684 4 878696441 +666 66 4 880568560 +906 125 4 879435365 +181 130 1 878963241 +548 316 4 891044139 +896 476 2 887161541 +624 246 4 879792493 +725 301 4 876106729 +393 332 4 887742764 +776 525 2 891629157 +222 90 2 878181647 +643 1016 3 891445766 +846 485 5 883947590 +909 14 4 891920763 +796 797 3 893049257 +655 237 3 887426116 +590 275 4 879439645 +406 472 3 879539884 +828 26 3 891037948 +372 53 5 876869553 +781 286 1 879633495 +823 28 3 878438058 +622 173 5 882670057 +738 128 4 875351873 +305 59 3 886322758 +741 50 5 891018339 +846 208 5 883949547 +749 531 5 878847171 +881 451 1 876539186 +456 739 3 881375226 +932 640 2 891249239 +503 66 3 880383468 +906 117 4 879435574 +474 482 3 887925395 +829 319 4 892312728 +622 480 4 882669414 +833 235 4 875036418 +566 49 2 881651561 +505 328 4 888631175 +315 741 5 879821349 +796 118 4 893048505 +267 554 3 878972040 +799 292 4 879253720 +682 876 3 888521290 +643 509 3 891448839 +924 1478 4 886759691 +657 302 2 884237291 +874 116 4 888632484 +864 401 4 888893271 +812 328 4 877625368 +814 672 3 885411030 +15 472 3 879456204 +846 720 4 883949643 +738 141 3 875352771 +435 479 3 884131901 +42 73 4 881108484 +650 551 3 891370446 +806 158 2 882390404 +912 173 4 875966238 +632 568 3 879458142 +536 222 4 882360552 +627 9 4 879530014 +693 272 4 885703603 +843 182 2 879444739 +805 24 4 881694923 +581 7 4 879643079 +833 324 3 875035487 +848 202 5 887043040 +393 820 3 887745380 +537 660 3 886031149 +97 193 4 884238997 +815 449 2 878698661 +936 275 4 886832134 +209 249 2 883417640 +580 282 5 884125292 +487 85 2 884044654 +527 508 3 879456363 +851 531 3 875731189 +804 177 5 879441727 +851 975 2 875731105 +797 340 2 879439735 +524 96 4 884635172 +698 855 2 886367615 +862 200 5 879304980 +708 687 2 892719062 +487 301 4 883440613 +305 469 2 886323757 +932 180 4 891251014 +921 322 3 879379428 +811 308 4 886377082 +748 318 5 879454475 +907 245 4 880158556 +647 29 4 876533657 +561 77 1 885809246 +246 252 1 884924473 +875 289 4 876464800 +704 14 3 891397190 +642 775 4 886569570 +690 629 1 881177459 +847 79 4 878941588 +643 432 5 891449771 +390 300 5 879693770 +749 284 4 878846812 +92 402 3 875813098 +817 258 3 874815541 +890 632 5 882916538 +901 520 5 877287882 +447 181 5 878854520 +698 490 3 886366814 +911 21 4 892840144 +861 179 1 881274672 +916 763 3 880843683 +639 662 2 891239581 +653 205 1 880150126 +788 356 4 880870827 +931 255 4 891036755 +608 127 5 880403320 +823 195 4 878437703 +585 509 4 891283000 +863 330 2 889289191 +102 511 3 888801407 +846 56 5 883948003 +665 89 4 884294935 +819 302 5 884012512 +854 455 2 882812906 +868 164 2 877104157 +498 410 3 881954931 +749 95 3 878848333 +479 584 3 879461873 +831 358 2 891354371 +461 748 1 885355839 +277 1008 3 879543621 +863 1431 4 889289618 +761 1287 1 876190072 +863 322 1 889289327 +828 694 2 891036717 +889 523 4 880178078 +848 498 5 887037935 +216 151 3 880232936 +880 1165 2 880175527 +758 143 5 881975314 +496 196 3 876066374 +758 217 2 881978805 +480 56 4 891208492 +159 298 5 880557386 +594 269 4 877816219 +469 152 4 879523947 +599 245 3 880953441 +788 1139 1 880871605 +515 304 4 887658782 +339 9 5 891033044 +91 662 4 891439439 +727 408 4 883708895 +892 367 4 886610588 +901 230 5 877131087 +655 1233 3 887650512 +524 69 4 884634578 +712 415 4 874957161 +851 840 3 875731105 +840 70 3 891208919 +756 50 4 874828592 +892 58 4 886609469 +896 88 5 887159426 +872 756 4 888479370 +770 275 5 875972219 +715 595 3 875962718 +916 228 3 880845049 +871 190 2 888193275 +882 748 5 879861155 +758 313 4 882926095 +586 1218 5 884066959 +735 288 4 876697610 +886 1119 4 876032553 +573 423 3 885844127 +851 336 4 890804691 +666 956 4 880568637 +782 355 3 891498821 +921 121 5 879379736 +339 211 5 891034215 +11 431 2 891905896 +435 202 4 884131901 +711 961 5 886030557 +660 449 3 891201796 +186 177 4 891719775 +850 705 5 883195034 +567 434 5 882425997 +765 1009 5 880346606 +798 1076 3 876176043 +474 652 4 887925838 +782 1082 3 891500230 +650 563 3 891388170 +823 709 3 878438095 +911 183 4 892839492 +791 748 3 879448035 +889 1016 3 880177070 +829 427 4 891204271 +537 319 4 886028604 +429 412 4 882387411 +645 72 3 892053686 +844 173 5 877388182 +868 153 2 877105916 +244 28 4 880606300 +385 378 1 879447555 +416 571 3 886318860 +875 195 4 876466687 +739 98 3 886958972 +896 636 3 887159464 +796 182 4 893048342 +749 398 3 878850038 +532 1407 2 874794386 +589 310 5 883352494 +943 174 4 875410099 +851 880 3 886534617 +889 1097 3 880176984 +587 681 2 892871641 +851 1676 2 875731674 +20 323 4 879667684 +686 299 5 879543557 +308 218 5 887738717 +770 246 5 875971813 +570 886 2 881262534 +648 717 4 884366425 +181 1353 1 878962200 +655 454 3 888813372 +840 173 5 891204356 +854 235 2 882813179 +868 382 4 877109874 +877 207 3 882677012 +650 231 2 891381709 +331 306 5 877196819 +867 1159 5 880078796 +751 173 4 889134393 +524 218 3 884636453 +881 108 3 879052402 +409 1328 2 881106287 +849 133 5 879696059 +614 508 4 879464093 +749 77 3 878849534 +823 215 4 878437925 +489 895 4 891448147 +825 1199 4 880755762 +617 424 1 883789716 +825 931 3 889021287 +848 663 5 887046329 +523 257 5 883700187 +711 275 5 876185855 +497 111 4 878759828 +905 302 5 884982870 +784 877 4 891387622 +659 56 5 891331825 +407 1263 2 876344668 +828 1068 4 891035864 +398 482 5 875657802 +796 568 4 892676114 +919 1134 2 875289356 +889 642 3 880181455 +635 331 4 878878654 +795 382 4 881529077 +896 887 2 887235769 +6 306 4 883268246 +835 650 5 891033957 +437 226 1 880142942 +863 901 1 889288972 +674 111 5 887763336 +327 393 3 887819507 +896 575 2 887161469 +437 15 4 881001946 +622 79 5 882591979 +838 172 5 887066143 +867 474 5 880078840 +653 132 3 880149897 +839 258 4 875751411 +863 319 2 889289123 +7 197 4 891351082 +152 944 4 882476632 +664 31 4 876526555 +612 864 4 875324756 +887 443 4 881380883 +630 282 3 885666804 +511 1527 4 890004952 +378 164 4 880056582 +906 473 4 879435598 +601 429 5 876349387 +488 286 1 891292852 +515 538 3 887658676 +843 434 4 879447146 +622 230 3 882592815 +659 294 4 891044849 +774 12 3 888559437 +690 66 3 881177581 +854 492 4 882814333 +932 661 5 891250109 +758 455 4 881977309 +394 431 5 880889607 +655 1086 3 888474358 +880 47 4 880174730 +693 218 4 875483473 +130 330 4 874953424 +622 1216 4 882590344 +894 1115 4 882404430 +657 301 3 884237633 +883 740 4 891692742 +115 644 3 881172183 +49 147 1 888069416 +241 286 5 887249482 +834 346 3 890860194 +637 147 1 882903645 +788 385 3 880869434 +553 609 4 879948806 +848 489 5 887043821 +937 14 4 876769080 +648 575 3 884882553 +934 674 4 891193814 +160 408 4 876767023 +749 540 3 878850388 +425 435 3 878738334 +815 602 3 878694269 +249 427 5 879572472 +919 531 3 875373669 +788 589 5 880868005 +804 582 3 879444963 +870 315 2 883876178 +774 831 2 888558594 +308 356 3 887740833 +666 1451 3 880139614 +624 993 4 879793486 +457 276 4 882393306 +795 1413 3 883254987 +506 137 2 874872872 +707 480 3 886286360 +886 591 3 876031765 +660 259 4 891197778 +868 783 1 877113481 +21 873 2 874950932 +643 504 4 891447370 +889 631 3 880178449 +833 293 4 875035885 +721 292 3 877137527 +727 191 4 883710717 +533 403 3 879439341 +932 441 2 891252504 +878 498 4 880866758 +880 394 3 880243319 +865 627 1 880235060 +296 194 5 884197193 +393 411 2 887745501 +454 984 3 891377968 +586 576 3 884062671 +729 310 3 893286204 +716 559 2 879796846 +192 9 5 881367527 +880 28 5 880175690 +660 173 5 891199556 +669 511 5 891260778 +447 411 2 878855107 +524 64 2 884634877 +32 628 4 883718121 +524 208 5 884635287 +671 174 5 884035685 +451 324 4 879012647 +460 304 2 882911101 +724 268 4 883757397 +13 445 4 882139774 +938 473 3 891357106 +897 184 4 879991226 +463 1028 2 877386082 +405 512 1 885549589 +754 291 4 879451991 +346 1011 1 874947609 +711 651 4 879993707 +940 358 1 884801227 +889 132 4 880181910 +913 498 3 880757473 +655 686 2 887427866 +854 106 3 882813248 +405 542 1 885549095 +916 484 4 880844156 +506 586 2 885135882 +474 1221 4 887926999 +773 357 4 888540448 +436 941 4 887771997 +823 56 5 878438119 +889 471 3 880176926 +716 162 4 879796311 +537 684 3 886030738 +690 705 1 881179505 +795 559 2 883774317 +846 198 5 883948457 +622 363 4 882591484 +561 794 2 885809731 +222 566 4 878185044 +347 696 4 881653266 +840 195 5 891204847 +932 745 5 891250584 +468 117 2 875280499 +716 58 5 879795239 +938 1028 5 891356679 +653 175 2 878854332 +919 1 4 875289321 +533 281 4 887032214 +588 713 3 890015791 +896 895 2 887235788 +655 927 3 887564613 +835 286 3 891032224 +279 1039 4 881731303 +942 1050 5 891283043 +746 423 3 885075612 +94 1010 4 891721117 +748 114 4 879454773 +313 181 4 891014782 +286 408 4 875806800 +536 614 4 882359653 +478 64 5 889388862 +325 408 5 891478307 +514 195 5 876063938 +850 196 3 883194792 +815 222 4 884320310 +655 731 3 888474872 +163 326 3 891219977 +479 196 4 879461207 +916 71 3 880844897 +752 350 4 891208357 +846 1530 2 883949335 +699 477 3 878882411 +516 515 4 891290566 +778 755 2 890804547 +807 1066 5 893081508 +113 300 3 875075887 +796 82 3 892676195 +498 462 3 881958897 +882 756 3 879863457 +880 284 4 880242528 +806 187 5 882387670 +830 79 4 891561607 +943 721 5 888639660 +843 153 3 879446281 +479 202 4 879461567 +660 1065 2 891201049 +749 184 2 878848137 +881 831 2 879052493 +834 316 5 890860566 +274 596 3 878945404 +821 845 5 874792591 +483 515 4 878950971 +535 186 4 879618925 +740 873 2 879522872 +246 56 1 884920948 +489 880 2 891447302 +932 1454 4 891251985 +933 1028 2 874938620 +87 715 3 879876885 +941 475 4 875049038 +778 69 2 890803860 +693 291 3 889167954 +694 194 5 875727143 +618 133 4 891307784 +851 1276 2 875730601 +535 187 2 879617701 +186 1385 2 879023968 +825 249 3 880755693 +831 260 2 891354371 +257 86 4 879547655 +480 302 4 891207539 +698 707 2 886366814 +569 288 3 879793228 +542 423 4 886532676 +6 285 3 883599431 +526 1007 3 885682657 +524 526 3 884636907 +543 188 4 877545717 +462 873 4 886365706 +190 237 5 891033773 +234 631 3 892334577 +916 1401 3 880844262 +158 1303 3 880134865 +846 513 5 883947589 +551 1220 5 892784524 +405 429 5 885545200 +911 923 4 892842509 +637 742 4 882904233 +457 528 5 882397543 +568 127 4 877907050 +116 650 2 876452806 +715 173 5 875963998 +804 637 3 879444943 +942 892 3 891282644 +894 316 4 888280105 +293 88 3 888907266 +621 55 5 874963594 +603 326 4 891956344 +933 559 2 874938808 +478 96 2 889396509 +621 40 3 874963273 +450 571 2 882471604 +336 734 1 877757516 +890 234 5 882404484 +655 722 1 887431047 +559 1556 3 891033759 +374 457 1 880392626 +543 265 4 877545356 +751 431 4 889134705 +896 73 3 887159368 +846 44 1 883947737 +757 562 3 888466737 +932 430 4 891249849 +815 217 3 878696681 +902 497 5 879465894 +889 237 4 880176874 +132 100 4 891278744 +577 559 3 880474903 +210 173 4 887730264 +373 684 4 877098784 +593 742 4 888872002 +676 294 4 892685591 +357 748 5 878951101 +870 1090 2 879902161 +758 147 4 881977021 +608 163 1 880405085 +406 657 5 884630493 +898 358 4 888294739 +334 527 3 891546231 +544 304 3 884795135 +768 15 2 883835210 +411 603 5 892845986 +893 820 3 874829161 +504 612 4 887838677 +863 1680 2 889289570 +794 14 5 891034956 +145 338 3 882181335 +847 426 2 878940485 +498 64 4 881956575 +870 469 4 875679958 +943 421 2 888639351 +380 79 4 885479104 +727 1165 2 883709948 +505 173 3 889333534 +699 596 3 884152780 +749 111 3 878848405 +843 627 2 879447718 +49 577 1 888069329 +664 356 3 876526685 +919 21 2 875289356 +886 1065 4 876033731 +659 64 4 891384152 +814 234 3 885410957 +705 862 1 883427875 +859 257 2 885775330 +793 235 3 875104068 +826 22 5 885690481 +790 944 1 885157299 +653 628 4 878866413 +828 24 4 891035864 +815 671 4 878695679 +486 269 4 879874388 +486 883 3 879874388 +392 837 5 891038466 +833 106 2 879818799 +654 845 4 887863613 +264 275 5 886122706 +533 483 4 879438470 +840 419 5 891208897 +104 678 2 888442404 +776 440 2 892920480 +498 7 3 881954741 +897 423 5 879994113 +535 211 4 879617489 +939 1051 5 880262090 +815 402 5 878695438 +807 222 4 892528174 +682 318 4 888517168 +917 278 3 882911767 +842 1395 4 891218060 +246 735 4 884921679 +887 470 3 881380773 +407 151 4 876340363 +785 318 4 879439232 +844 568 4 877387964 +454 498 3 888267559 +18 174 4 880130613 +872 313 5 888478786 +889 268 4 880176620 +715 122 4 875962718 +872 928 2 888479582 +881 392 5 876538155 +890 50 5 882405807 +236 333 3 890117748 +846 693 5 883949335 +804 292 2 879441099 +846 265 5 883947630 +551 326 4 892775612 +632 877 1 879459777 +838 70 4 887066207 +883 11 2 891696824 +883 603 4 891755017 +115 185 5 881171409 +863 334 5 889289353 +936 129 4 886832134 +875 55 3 876465370 +13 549 4 882399357 +437 23 4 880140288 +749 586 4 878850657 +747 504 5 888640605 +880 685 4 880167083 +896 430 3 887159234 +885 582 2 885714487 +846 772 4 883949421 +181 1366 1 878962200 +796 257 5 892660283 +454 275 2 888267419 +861 1009 5 881274857 +774 8 1 888556090 +664 642 4 876526554 +374 806 3 880396659 +942 97 5 891283239 +896 1471 1 887235026 +336 210 5 877757700 +747 732 3 888639138 +328 299 2 885044904 +5 383 3 875636588 +758 568 4 881977669 +540 270 4 882156731 +294 515 5 889242081 +494 300 5 879540593 +840 154 3 891204564 +886 1019 4 876031695 +728 319 3 879442612 +129 310 2 883244011 +464 510 4 878355167 +900 483 4 877833924 +733 1338 4 879536608 +541 99 4 883874717 +733 591 3 879535440 +452 474 3 875263067 +619 233 4 885954158 +889 282 4 880177246 +878 191 4 880866564 +633 50 4 875326664 +533 192 3 879438486 +752 900 4 891207791 +497 128 4 879362496 +805 393 3 881705843 +880 240 4 880167151 +495 378 5 888634896 +727 410 2 883709710 +363 385 4 891497129 +881 233 3 876538922 +847 220 4 878939327 +727 1025 2 883708149 +823 187 5 878438148 +937 93 4 876780336 +532 447 4 888630205 +585 1501 4 891284393 +779 235 4 875502286 +878 650 2 880866883 +763 59 5 878915765 +347 421 2 881653635 +660 172 4 891199017 +403 1 4 879785974 +771 588 5 880659815 +681 289 5 885410009 +501 829 3 883348656 +393 507 2 889554859 +391 301 4 877399745 +566 496 5 881649428 +615 699 3 879448823 +768 475 2 883835210 +86 326 3 879570423 +625 385 4 892053920 +663 628 4 889492615 +932 736 3 891249261 +643 515 4 891445140 +327 749 3 887743644 +115 192 5 881171137 +586 735 3 884066230 +805 436 3 881695347 +718 597 5 883348938 +663 147 3 889493069 +721 331 3 877137285 +823 654 5 878437703 +650 450 1 891382877 +776 431 4 891628916 +226 12 5 883889322 +773 168 5 888539425 +927 866 4 879181621 +843 657 3 879443668 +495 1188 5 888637147 +430 523 4 877226568 +707 425 5 886287268 +896 484 4 887159302 +727 739 4 883711735 +671 570 3 884036411 +648 384 4 884882235 +629 86 5 880117163 +552 126 4 879221876 +524 310 4 884701677 +711 662 3 879993918 +385 30 5 879442988 +892 117 4 886611161 +826 1228 3 885690900 +595 460 4 886921699 +653 15 3 878854383 +880 82 3 880167806 +686 2 3 879546443 +744 481 3 881171420 +321 705 3 879439812 +726 763 2 889831115 +688 1127 5 884153606 +506 443 4 874874760 +864 290 3 888892053 +873 286 2 891392091 +868 1509 1 877111487 +425 64 4 878738245 +655 794 1 887431019 +759 471 4 881476969 +102 879 3 879443144 +65 237 4 879217320 +416 869 3 892439992 +772 752 3 889028773 +782 325 2 891498720 +531 329 5 887049081 +154 641 5 879138831 +280 9 5 891700664 +158 195 5 880134398 +474 259 1 887914878 +821 237 5 874792491 +851 64 5 875731674 +268 388 1 875743979 +880 249 4 880166966 +343 531 5 876404539 +378 470 3 880056104 +299 855 4 889502087 +796 1297 2 893047504 +667 660 4 891035164 +676 892 4 892685900 +437 156 2 880140627 +903 528 4 892760784 +405 1552 1 885546636 +528 204 5 888522547 +721 359 3 877137359 +633 237 4 875324891 +606 451 3 880927247 +406 100 4 879446062 +933 218 3 874854678 +273 307 2 891292761 +318 735 5 884496182 +60 603 5 883326652 +729 338 1 893286373 +741 682 3 891455960 +645 1159 4 892054632 +864 561 4 888888937 +189 179 5 893265478 +621 721 4 874963126 +873 289 2 891392577 +678 100 5 879544750 +113 333 4 875935609 +533 580 3 879192034 +833 89 5 875124495 +233 304 5 877665323 +442 172 5 883389580 +687 294 3 884651894 +660 800 2 891201675 +568 427 4 877907720 +708 15 3 877325404 +707 111 4 880060420 +286 3 2 876522316 +95 238 5 880570823 +868 579 1 877108241 +770 333 5 875971612 +422 295 3 875130063 +880 456 3 880175270 +611 342 3 891636223 +877 727 4 882677967 +682 716 2 888522074 +622 257 3 882590485 +185 480 4 883526267 +709 144 3 879846622 +468 531 4 875295368 +733 277 1 879536523 +889 357 4 880177906 +843 258 4 879442947 +921 929 1 879380142 +943 161 4 888639772 +445 994 1 891199682 +222 628 5 877563485 +731 484 3 886179289 +262 216 3 879793216 +592 47 5 882955889 +276 97 3 874787549 +653 693 1 880151651 +661 1 5 876016545 +865 546 1 880143917 +840 50 4 891203366 +943 720 1 888640048 +478 762 4 889388161 +654 25 1 887863381 +788 586 2 880871490 +807 172 5 892528515 +84 756 3 883452765 +869 515 5 884493279 +790 161 4 885157181 +381 196 5 892697083 +772 748 3 877533625 +311 227 4 884365617 +650 355 2 891369190 +716 260 1 879793001 +870 340 3 882464808 +501 696 4 883348185 +836 322 2 885753639 +109 358 2 880562908 +453 257 3 877552590 +878 19 4 880865470 +13 811 5 882139829 +763 212 4 878920656 +867 56 5 880078818 +614 293 3 879464157 +883 276 5 891717462 +684 393 4 878761751 +537 276 4 886029806 +324 273 5 880575449 +872 278 3 888479206 +870 65 3 879713898 +943 23 4 888638897 +361 47 4 879440516 +870 333 3 882123130 +889 85 3 880181976 +463 275 5 877385287 +868 636 3 877103449 +7 144 5 891351201 +887 562 5 881381071 +536 694 5 882360622 +836 327 3 885753639 +666 81 4 880314194 +873 313 5 891392177 +943 928 5 875502074 +896 836 3 887158635 +871 937 3 888192689 +577 234 3 880474257 +476 430 4 883364143 +234 93 3 891227771 +796 144 5 892662524 +110 29 3 886988374 +871 195 5 888193274 +817 329 4 874815649 +699 7 2 878882272 +269 1005 4 891447427 +845 1238 2 885409374 +929 480 3 879639969 +920 292 3 884220058 +508 527 5 883775361 +868 239 3 877107924 +359 50 5 886453271 +687 323 2 884651894 +383 166 4 891192858 +500 168 4 883873616 +308 172 4 887736532 +881 56 1 876962037 +934 83 4 891191831 +833 291 3 879818619 +357 283 5 878951616 +694 141 5 875727399 +815 529 5 878694854 +796 447 3 893218485 +653 125 2 878866973 +659 610 3 891332044 +917 535 4 882912385 +174 284 4 886433771 +751 196 4 889133039 +773 737 3 888539064 +145 77 3 875272348 +198 204 3 884207584 +854 302 3 882811836 +878 462 4 880866509 +916 239 3 880844627 +838 210 4 887067359 +805 708 3 881699661 +623 603 4 891034294 +505 207 3 889334004 +854 203 4 882813933 +773 170 5 888538980 +716 636 2 879796651 +795 169 5 880567884 +642 584 4 885842877 +774 91 1 888558018 +889 718 4 880176807 +882 423 5 879878486 +308 1121 3 887737647 +585 640 2 891284816 +297 208 4 875049192 +590 1331 4 879439645 +15 938 3 879455233 +279 375 1 884556678 +299 747 4 889502640 +398 427 4 875657734 +659 476 3 891331534 +716 200 4 879795606 +934 526 2 891192197 +864 423 5 888887739 +882 11 4 879867816 +873 321 1 891392577 +707 641 1 886285907 +353 898 2 891402587 +833 508 5 875035953 +393 689 3 887742991 +703 323 2 875242281 +521 273 3 884476168 +864 663 4 888887248 +795 151 3 880558562 +897 416 5 879991186 +829 294 2 881707829 +780 520 4 891363904 +280 245 3 891700185 +677 294 5 885191227 +773 89 4 888540020 +568 604 4 877907156 +862 423 4 879305273 +814 441 2 885411347 +766 523 3 891309011 +385 1535 4 879448294 +807 826 3 893082505 +794 116 5 891035307 +488 79 4 891294334 +805 204 2 881704016 +716 209 3 879795543 +43 1055 2 883955969 +450 1297 4 882812635 +643 174 4 891446652 +788 720 3 880870482 +869 253 4 884493279 +504 121 4 887831642 +829 259 2 881707829 +680 14 5 877075079 +887 288 4 881378040 +62 673 2 879375323 +666 97 4 880139642 +24 223 5 875322727 +880 619 4 880243499 +437 961 5 881002323 +752 331 4 891208036 +757 204 4 888468577 +660 281 3 891198588 +301 24 4 882074312 +85 474 5 879454500 +880 246 5 892958837 +847 174 4 878941168 +648 743 1 884367366 +846 514 3 883947590 +456 367 3 881373900 +696 286 5 886403578 +854 124 5 882814570 +831 905 4 891354020 +846 441 4 883950252 +864 237 4 878179514 +907 647 3 880159844 +763 83 3 878917877 +804 94 4 879446194 +671 546 5 884036050 +380 179 3 885478313 +918 417 2 891988521 +828 70 3 893186210 +892 625 3 886610565 +345 12 5 884901701 +776 91 4 891628752 +712 238 3 874730206 +786 546 4 882844294 +746 385 5 885075367 +825 982 5 881184695 +916 1220 3 880845282 +96 514 4 884402977 +606 81 3 880924921 +497 416 2 879363611 +897 99 5 879994113 +328 275 4 885046420 +792 840 2 877910539 +72 271 1 880036346 +878 482 4 880866134 +426 484 5 879444662 +707 483 5 886286004 +592 893 1 882955292 +58 491 4 891611593 +870 354 4 889409590 +865 148 3 880144194 +741 209 3 891457342 +878 9 4 880865562 +393 384 3 889729508 +643 161 3 891449381 +537 89 4 886030862 +889 544 3 880177104 +884 323 2 876857745 +216 65 4 880233939 +883 387 5 891696750 +865 271 1 880142778 +527 275 3 879455961 +653 191 5 880150019 +872 905 4 888479034 +782 312 4 891498436 +95 110 2 880572323 +881 456 1 879052291 +722 294 2 891280219 +931 127 5 891037521 +705 419 3 883427663 +712 418 3 874730553 +71 98 4 885016536 +805 21 2 881705055 +900 1132 1 877833364 +393 748 3 887742851 +495 633 5 888632738 +580 288 5 884125658 +620 82 5 889988146 +900 871 1 877833443 +256 984 3 882150192 +836 292 5 885753475 +796 449 4 893048622 +493 1013 1 884131777 +892 425 5 886608977 +301 367 4 882076619 +524 495 4 884635358 +802 134 3 875985347 +859 1048 3 885775767 +456 191 3 881372849 +870 265 4 880584497 +558 9 4 879436069 +883 519 5 891717283 +758 93 5 881975922 +704 300 2 891396674 +524 269 4 884287379 +421 525 4 892241422 +645 654 5 892053686 +881 192 5 876537577 +851 1105 4 890862961 +698 1020 2 886367558 +59 380 3 888205956 +126 286 3 887853469 +526 285 5 885682503 +254 112 2 886473631 +889 408 3 880176960 +887 284 4 881378669 +886 685 2 876032378 +223 477 3 891550144 +826 849 4 885690750 +921 215 4 879380677 +304 879 3 884966972 +901 259 2 877129839 +848 393 5 887047962 +486 547 3 879874753 +405 703 2 885546112 +865 222 2 880143482 +910 298 2 880821124 +438 301 4 879867960 +349 546 3 879466200 +886 496 4 876031952 +809 245 3 891037127 +453 282 4 877561382 +25 79 4 885852757 +833 175 4 875124535 +815 195 4 878695278 +883 796 3 891696782 +85 1039 4 879453903 +749 429 4 878847461 +458 1039 5 886397275 +517 328 3 892660034 +577 183 5 880474747 +699 471 3 879147597 +752 354 2 891208261 +593 121 4 875660036 +286 473 3 875806918 +864 692 2 888890316 +863 350 1 889289457 +437 1142 4 880141696 +648 864 3 882211418 +804 161 4 879442269 +776 674 3 892920321 +453 82 3 877561694 +347 105 2 881653198 +784 304 4 891387501 +894 10 4 880416381 +868 139 1 877109300 +939 597 4 880261610 +663 591 3 889492759 +921 202 4 884673891 +647 77 4 876533851 +290 136 4 880474367 +540 117 4 882157706 +788 180 4 880869174 +663 42 5 889493732 +720 319 3 891263340 +708 151 4 892719211 +865 71 1 880235059 +806 1098 4 882387925 +862 519 4 879304326 +645 30 4 892054824 +667 268 3 891034404 +650 315 3 891368885 +769 222 4 885423824 +566 693 5 881649727 +313 216 4 891013525 +666 498 5 880139669 +883 1009 4 891692811 +588 29 3 890027063 +655 13 3 887426237 +851 473 4 874728396 +394 12 4 880887035 +804 969 4 879442687 +916 5 3 880845099 +648 585 3 884882234 +606 127 4 878143509 +754 295 4 879451626 +846 490 4 883947862 +854 757 3 882814235 +497 622 2 879363586 +650 499 3 891372316 +896 658 4 887159895 +647 177 5 876534131 +694 490 4 875727877 +663 129 3 889492503 +715 176 5 875963792 +864 629 3 888888282 +668 596 3 881591297 +627 135 4 879529702 +177 210 4 880130990 +643 656 4 891447196 +834 323 2 890860471 +503 237 4 879438505 +642 569 2 886569538 +218 288 2 877487931 +239 509 5 889180071 +286 101 5 877532204 +771 381 3 880659970 +864 735 5 888886882 +788 44 4 880869434 +716 213 5 879795906 +854 151 4 882812451 +838 28 4 887065709 +890 404 4 882915696 +592 299 1 882607573 +450 725 3 882469863 +880 568 5 880167843 +437 117 1 881001121 +943 450 1 888693158 +151 491 4 879524536 +735 50 5 876698683 +56 636 4 892683533 +870 772 4 875679767 +823 708 4 878438930 +627 511 4 879529986 +255 219 5 883216544 +780 419 4 891363826 +840 708 4 891209033 +551 9 5 892776982 +222 98 4 878181387 +230 499 4 880484870 +893 815 3 874830372 +405 443 4 885548330 +798 1285 3 876177330 +889 33 5 880180817 +737 32 4 884314993 +846 630 3 883948642 +854 150 3 882812314 +731 64 5 886179040 +748 271 3 879454302 +750 327 4 879446013 +409 890 1 881105677 +8 243 2 879361732 +886 1267 3 876032072 +280 423 5 891700276 +774 585 1 888556225 +541 172 5 884645816 +727 556 2 883713632 +653 521 4 878854441 +643 2 3 891448218 +746 22 4 885075211 +665 546 2 884291376 +734 28 4 891022627 +864 9 5 877214236 +885 662 3 885714362 +883 661 4 891718914 +579 210 3 880951944 +395 515 4 883765297 +566 234 3 881650148 +410 303 3 888626583 +346 720 2 875265528 +702 751 4 885767576 +452 153 4 875276361 +416 631 3 886316295 +788 1183 2 880871891 +497 441 2 879362407 +354 8 5 891217160 +882 275 5 879861678 +758 240 3 882053986 +864 25 4 888888240 +894 315 4 885428012 +793 118 2 875104119 +655 504 5 887650683 +697 235 4 882622188 +676 272 4 892685224 +545 1188 3 883115515 +232 172 4 888549412 +113 742 3 875076827 +634 546 4 875729535 +506 712 3 874873893 +886 202 3 876032509 +878 194 4 880869911 +932 646 4 891250498 +707 387 4 886287733 +756 739 4 874829743 +868 145 1 877109082 +655 676 2 887426665 +901 662 4 877132632 +655 1238 2 888474843 +727 28 5 883710075 +429 231 2 882385489 +860 220 3 885145702 +629 270 3 880116023 +837 763 1 875722123 +495 655 5 888634536 +651 127 4 879348965 +715 254 1 875962762 +922 153 4 891451037 +790 373 3 885158459 +844 207 4 877387392 +561 433 1 885808867 +399 28 2 882344134 +431 328 4 877844377 +538 528 5 877107536 +796 665 2 893048622 +660 435 4 891199883 +416 1337 1 876698083 +475 269 4 891451276 +843 435 2 879446477 +155 300 2 879370963 +816 328 4 891710968 +675 86 4 889489574 +698 435 3 886366980 +840 186 4 891204827 +533 53 1 879191621 +486 1611 3 879874692 +828 328 3 891033988 +506 739 4 874874525 +871 360 3 888192475 +618 111 3 891308946 +84 815 4 883452462 +796 356 4 893194646 +841 313 5 889066779 +886 783 1 876033784 +758 223 5 881975119 +896 83 5 887159554 +543 568 3 877547005 +747 83 4 888732571 +803 325 4 880054885 +805 629 3 881704553 +903 282 4 891031384 +332 385 5 888098398 +898 689 3 888294842 +470 273 3 879178370 +846 11 5 883948343 +848 606 4 887038441 +506 204 5 874874055 +457 367 4 882396989 +864 569 3 888891794 +846 662 3 883948765 +823 425 5 878438298 +871 1431 4 888192971 +416 520 5 893214225 +503 347 5 884637610 +388 294 4 886439561 +21 15 4 874951188 +833 521 4 875124495 +764 1046 4 876244895 +764 692 4 876246358 +588 12 5 890015324 +793 100 4 875104031 +498 269 4 881953527 +655 966 3 887477409 +823 170 4 878438357 +738 550 3 875351603 +881 654 4 876539156 +705 97 3 883518765 +930 1315 3 879534692 +650 625 3 891387616 +568 1125 4 877907281 +416 235 2 885115041 +936 813 5 886832222 +896 719 1 887235026 +256 274 5 882151456 +331 8 3 877196444 +459 294 5 879561755 +882 132 5 879864970 +524 92 4 884635171 +846 226 4 883948495 +682 245 3 888516841 +885 655 3 885713294 +919 681 2 875920347 +178 823 2 882824592 +448 1062 5 891888178 +749 227 4 878848189 +865 118 1 880144229 +833 234 3 875122884 +620 172 4 889988146 +207 18 2 877878739 +749 763 1 878848483 +308 449 3 887741003 +793 240 4 875104565 +880 380 3 880242281 +327 175 2 887744205 +828 547 2 891035864 +523 863 4 883700743 +303 1041 2 879485507 +648 95 3 884368371 +210 132 4 887736206 +758 175 4 881976061 +669 168 4 891517259 +378 473 3 880906178 +901 1041 5 877131443 +401 584 3 891033227 +782 1668 3 891500067 +728 287 4 879443155 +837 250 2 875722104 +707 443 3 886287191 +826 540 3 885690854 +886 10 3 876032030 +866 889 2 891221006 +889 687 2 880177797 +831 313 5 891354000 +236 282 5 890117028 +543 200 4 874864870 +813 9 3 883752051 +496 699 3 876068220 +345 980 4 884991688 +620 78 4 889988340 +890 480 5 882403477 +826 1409 2 885690442 +673 307 3 888787355 +883 724 4 891696689 +392 604 5 891039015 +454 687 3 881959468 +830 229 2 891561937 +759 748 4 875227708 +326 199 5 879875552 +177 144 5 880131011 +332 350 4 891214762 +884 268 4 876857704 +95 946 3 888956489 +457 225 4 882395825 +299 408 4 877877847 +151 1050 4 879524879 +943 765 3 888640227 +834 307 4 890860566 +870 503 4 879713899 +732 288 4 882590200 +865 847 5 880143386 +795 91 5 881265483 +519 874 5 883250102 +895 275 5 879438011 +774 318 1 888556483 +833 194 3 875133840 +520 893 2 885170330 +504 161 4 887839195 +405 1564 1 885546288 +807 588 5 892530251 +374 220 2 882158147 +387 588 3 886480163 +880 7 3 880166872 +735 764 3 876698837 +380 196 4 885479777 +926 340 4 888351623 +72 197 5 880037702 +815 1 5 878691975 +710 202 3 882063793 +535 614 5 879618850 +645 506 5 892055072 +378 64 4 880055239 +533 292 4 883583127 +269 11 3 891448365 +762 934 1 878719406 +311 131 3 884365252 +141 742 4 884584930 +798 472 3 875638178 +846 562 5 883950463 +87 1180 3 879877127 +497 232 3 879310850 +731 486 4 886182556 +99 789 4 885680176 +709 554 4 879848744 +939 1277 5 880261945 +899 121 5 884120164 +916 177 3 880844312 +500 10 3 883865391 +921 228 3 884673823 +716 230 3 879797198 +751 172 5 889133129 +642 368 4 885606271 +889 31 3 880178449 +303 687 1 879544923 +398 607 3 875720467 +856 289 1 891489525 +886 726 1 876033340 +495 418 4 888633440 +936 118 3 886833516 +835 1063 4 891034285 +933 367 4 874854190 +788 112 3 880871173 +90 69 1 891383424 +916 210 4 880844694 +773 288 2 888538199 +11 213 4 891906389 +788 9 4 880869508 +378 1092 3 880332683 +374 1206 2 880396080 +766 176 2 891308927 +843 420 3 879448073 +779 121 3 875503280 +741 1016 3 891458249 +805 451 5 881696759 +537 733 3 886031297 +504 664 3 887910718 +942 357 4 891283239 +840 580 3 891211972 +905 129 4 884984009 +923 291 4 880387707 +336 25 3 877756934 +90 753 4 891385751 +788 879 4 880867422 +907 283 4 880158827 +932 968 4 891250816 +123 187 4 879809943 +934 1285 3 891196516 +796 237 5 893047126 +798 577 2 875639441 +933 168 3 874853869 +943 98 5 888638980 +235 96 4 889654971 +854 194 3 882814235 +747 655 3 888639685 +327 161 3 887820417 +539 340 2 879787771 +842 315 3 891217834 +276 187 5 874791102 +828 512 5 891037948 +464 259 4 878354859 +921 603 3 884673868 +144 72 4 888105338 +861 529 5 881274718 +806 47 4 882387563 +792 596 3 877910241 +776 483 5 891628731 +527 475 3 879455847 +598 751 3 886710494 +130 88 2 875217265 +385 568 3 879446465 +587 260 4 892871284 +934 660 5 891194836 +804 1139 3 879446145 +709 849 4 879848590 +18 612 4 880131591 +758 105 2 882054936 +234 655 3 892333616 +843 473 2 879449193 +666 653 4 880139120 +785 56 4 879438920 +903 179 5 891466376 +314 1047 4 877886279 +721 269 5 877135269 +514 796 4 876067205 +326 202 4 879875724 +907 275 5 880158692 +9 7 4 886960030 +11 356 4 891906327 +716 210 5 879796651 +782 349 3 891498720 +932 649 4 891251199 +721 58 2 877140781 +592 97 4 882956718 +804 99 4 879442984 +73 96 2 888626523 +34 289 1 888602950 +460 19 5 882912418 +912 15 4 875967028 +797 336 2 879439136 +709 121 4 879848475 +896 190 5 887159530 +907 520 5 880159865 +721 942 4 877147140 +394 91 4 880886821 +618 172 5 891307098 +875 332 3 876464801 +454 81 1 888266433 +776 551 3 892920480 +805 665 4 881684185 +551 162 5 892783242 +592 526 5 882956241 +770 222 4 875973686 +825 871 3 880932283 +894 903 4 888280029 +682 932 1 888522017 +736 294 3 878709025 +807 386 4 893080516 +848 215 5 887046565 +870 514 5 875050637 +792 125 3 877910539 +451 358 1 879012550 +839 255 3 875752138 +880 571 2 880175187 +790 391 2 885158299 +883 319 3 891691560 +624 121 3 879793156 +95 671 3 880571045 +716 294 4 879793653 +796 429 4 892690102 +774 406 1 888559013 +541 931 3 883875370 +756 141 3 874831227 +774 732 1 888556814 +704 488 5 891397570 +893 118 4 874828864 +697 546 4 882622626 +872 826 3 888479654 +274 234 5 878946536 +112 888 4 886398699 +447 50 5 878854552 +825 118 4 880756725 +740 332 3 879522681 +805 13 3 881704063 +840 528 5 891209260 +861 582 2 881274796 +769 118 4 885424099 +844 255 3 877382008 +854 1226 4 882814571 +486 106 1 879875408 +883 1592 5 891692168 +224 924 3 888103646 +187 710 4 879465242 +738 252 4 875349045 +610 480 5 888702962 +848 166 5 887038159 +426 136 4 879442083 +887 597 5 881378325 +682 28 3 888516953 +904 216 4 879735461 +765 507 5 880347034 +538 276 1 877107340 +840 519 5 891204356 +588 178 5 890015323 +468 65 3 875294549 +647 1063 3 876776320 +870 582 5 879713817 +606 284 4 878148425 +523 432 5 883701800 +524 302 5 884287406 +622 763 4 882591047 +924 7 4 885458060 +313 176 4 891013713 +933 151 4 874853977 +128 275 5 879967016 +766 226 3 891310150 +452 1255 2 876298932 +877 549 4 882677935 +189 28 4 893266298 +424 969 1 880859385 +880 49 3 880174858 +916 561 3 880845227 +188 635 2 875074667 +345 244 3 884994658 +666 381 3 880139349 +315 163 3 879821158 +940 792 2 885921892 +733 273 4 879535603 +886 26 4 876032929 +665 96 3 884293831 +721 321 3 877137447 +894 179 5 882404485 +94 188 4 885870665 +556 286 4 882135437 +94 159 3 891723081 +848 527 3 887038280 +886 81 4 876032531 +766 194 3 891309117 +605 245 3 879366335 +347 11 5 881653544 +279 547 1 875295812 +660 393 2 891201541 +655 462 3 888474960 +751 631 5 889297711 +414 313 4 884998953 +804 373 2 879447476 +843 50 3 879444670 +716 183 2 879796279 +642 725 4 885606067 +435 444 3 884134075 +865 455 4 880143612 +763 171 3 878915015 +507 1016 5 889966088 +81 717 2 876533824 +848 433 3 887043180 +790 561 3 885158082 +805 509 5 881698095 +393 982 3 889731649 +1 126 2 875071713 +603 210 4 891957110 +699 683 3 880695597 +363 1056 4 891496169 +905 116 3 884984066 +617 653 4 883788955 +214 182 4 891544175 +901 28 5 877131624 +544 270 3 884795135 +343 72 5 876407706 +627 125 2 879530346 +887 412 5 881379188 +308 504 4 887738570 +828 59 5 891036972 +296 469 5 884197264 +807 1039 4 892528324 +886 79 5 876032884 +896 1004 2 887161542 +15 322 3 879455262 +889 1142 4 880176926 +882 739 4 879880131 +738 313 5 892938181 +643 568 4 891447663 +850 50 5 883195143 +389 419 3 880087003 +405 1192 1 885545975 +712 762 4 874956244 +833 79 3 875039254 +690 148 3 881178365 +293 85 3 888906927 +6 496 4 883601155 +621 1016 4 880737785 +692 476 3 876953279 +405 213 2 885549309 +555 89 4 879975438 +798 420 3 876175937 +445 1534 1 891199749 +897 98 5 879990361 +28 444 3 881961728 +942 1028 4 891283209 +373 170 5 877098751 +698 183 3 886366916 +447 471 4 878854340 +938 111 5 891356742 +486 251 5 879874582 +859 282 3 885774964 +854 1016 2 882812406 +862 521 5 879304762 +496 252 2 876065105 +664 449 2 876526718 +834 544 4 890862563 +568 735 2 877907327 +694 138 3 875730082 +391 228 2 877399486 +876 289 3 879428145 +844 99 3 877388040 +783 299 5 884326620 +676 480 5 892686666 +833 460 2 875036827 +748 97 4 879454848 +916 68 3 880845636 +848 805 5 887048111 +523 694 5 883703048 +795 123 4 880558447 +840 216 4 891205123 +361 202 3 879440941 +489 360 5 891362904 +793 273 3 875103942 +864 275 4 878179445 +918 133 1 891987267 +870 180 3 875679860 +452 196 4 875275763 +567 612 4 882427124 +18 212 5 880129990 +840 516 5 891205245 +248 343 4 884534436 +667 9 5 891034831 +684 172 5 875812299 +606 98 5 880923925 +851 160 5 875731224 +311 241 3 884364695 +399 541 3 882345622 +869 125 3 884491867 +666 811 4 880568396 +167 674 2 892738384 +406 124 4 879446588 +774 410 1 888558762 +235 970 4 889655204 +665 255 4 884290608 +455 463 4 879111737 +652 275 4 882567294 +807 520 5 892529358 +659 218 4 891384798 +655 451 3 887428280 +648 596 3 882211419 +267 1240 5 878974783 +406 483 4 879446062 +882 211 4 879867431 +643 67 4 891449476 +642 734 3 886569960 +654 274 4 887863635 +334 236 4 891544765 +690 781 2 881177662 +788 715 3 880871664 +905 748 2 884983627 +1 83 3 875072370 +880 577 3 880175207 +828 1062 4 891380166 +751 428 4 889297239 +518 744 4 876823266 +796 269 3 892610692 +870 763 4 879902059 +380 610 2 885478886 +301 425 4 882077033 +886 195 4 876032030 +486 713 3 879874902 +869 116 4 884490892 +682 237 3 888517324 +936 748 2 886831738 +827 269 5 882201356 +10 23 5 877886911 +110 576 2 886988574 +566 144 3 881649530 +421 269 3 892241210 +880 779 3 880167965 +424 690 3 880858792 +709 559 3 879848209 +852 259 4 891036414 +854 328 1 882811865 +922 476 1 891455167 +541 501 4 883874682 +101 763 3 877136789 +896 28 2 887158738 +788 655 3 880868644 +934 175 4 891190854 +780 210 5 891364027 +91 300 4 891438004 +543 469 4 875663056 +11 173 5 891904920 +686 654 5 879546954 +717 742 5 884642427 +705 83 4 883518834 +906 742 3 879435278 +889 54 3 880182815 +765 10 4 880346308 +897 230 4 879991607 +730 294 4 880309996 +862 96 4 879305051 +782 1393 2 891498512 +843 7 5 879443297 +276 172 5 874792435 +704 214 2 891398702 +96 196 4 884403057 +334 121 3 891545067 +160 59 4 876858346 +892 636 4 886609884 +682 1047 3 888521803 +761 748 4 876189614 +321 419 4 879439620 +504 292 5 887831273 +620 595 5 889987792 +588 88 5 890024730 +716 274 5 879793631 +741 196 5 891018460 +782 534 3 891500109 +234 1449 4 892333573 +893 151 4 874829427 +881 685 2 876536877 +844 83 5 877388183 +896 1194 3 887158604 +896 1042 2 887161151 +911 93 4 892839784 +246 597 2 884921965 +943 559 4 888639638 +925 563 2 884718204 +934 190 4 891191660 +579 70 3 880952299 +640 33 3 874778696 +894 61 4 882404572 +790 1188 3 885157984 +548 300 5 891044304 +908 47 3 879723095 +833 1386 4 875035660 +592 298 5 882608061 +749 4 4 878847863 +846 373 3 883950391 +91 294 3 891438288 +655 534 2 887693376 +878 732 4 880869302 +758 82 4 881976168 +889 177 4 880178183 +823 625 4 878438807 +58 354 3 890321652 +849 234 5 879695469 +533 739 5 882902988 +230 143 5 880484501 +889 473 4 880177503 +632 173 5 879458649 +268 408 5 875742316 +882 79 5 879878486 +790 687 1 884461162 +887 240 5 881378972 +934 302 4 891188367 +749 48 3 878848015 +806 6 2 882385063 +428 288 4 885943847 +886 466 1 876032577 +930 237 3 879534587 +650 491 3 891385775 +332 276 3 887938299 +875 135 4 876465188 +662 1342 4 880570112 +883 971 3 891693200 +886 449 3 876033784 +539 59 5 879788224 +279 284 1 886015853 +405 1419 2 885548137 +732 243 5 882589879 +343 22 4 876406181 +264 430 5 886123531 +227 319 4 879035072 +766 1298 3 891309736 +893 258 3 874827508 +788 553 3 880869687 +624 1012 4 879793408 +597 275 4 875339876 +698 89 4 886366454 +846 430 3 883947778 +682 732 3 888517740 +880 477 3 880166966 +881 527 3 876537900 +233 660 5 877661634 +479 199 5 879460863 +566 64 5 881649530 +798 585 3 875743912 +889 91 4 880180784 +183 739 4 891467353 +450 322 4 882370316 +925 245 3 884633287 +901 121 4 877127219 +810 323 4 879895314 +586 182 3 884066016 +940 116 2 885921741 +863 359 3 889289158 +26 760 1 891383899 +699 878 3 879382955 +328 651 5 885046580 +472 265 4 892790676 +506 63 4 874873944 +534 109 4 877808053 +641 270 3 879369827 +456 1604 4 881372849 +435 17 2 884132540 +296 250 2 884196689 +823 792 3 878438057 +897 95 3 879990586 +745 182 2 880123314 +872 820 3 888479624 +773 90 4 888539643 +896 1214 2 887159302 +305 66 3 886325023 +795 820 3 880560679 +868 200 3 877107189 +90 215 2 891385335 +526 150 2 885682370 +840 100 5 891203166 +640 591 4 875732368 +529 301 4 882535639 +789 1007 4 880332215 +269 603 5 891448871 +694 71 4 875730889 +804 153 4 879441346 +847 25 3 878775796 +939 220 5 880261658 +399 462 3 882510290 +540 1016 4 882157662 +301 258 4 882074363 +540 471 4 882157706 +707 367 4 886291531 +901 477 3 877127021 +784 300 4 891386988 +871 172 5 888193177 +345 469 5 884916274 +899 202 4 884122419 +921 240 1 879379621 +780 705 5 891363685 +833 55 3 875038807 +314 585 2 877890381 +132 664 5 891278996 +7 211 5 891352557 +629 238 5 880117285 +635 246 5 878879190 +899 153 5 884122331 +553 631 5 879948695 +727 67 4 883712652 +505 11 4 889333861 +880 105 3 880175077 +852 25 3 891036802 +560 121 3 879976705 +702 271 1 885767534 +323 64 5 878740017 +777 223 4 875980306 +790 116 4 884461334 +638 188 3 876694995 +703 15 5 875242814 +885 169 5 885714820 +826 1240 5 885690442 +896 202 2 887159464 +592 471 4 882608234 +758 311 4 880672321 +709 273 4 879847686 +940 321 4 884801316 +429 284 3 882386424 +188 50 4 875072741 +932 615 5 891249621 +938 405 3 891356847 +936 1368 5 886832337 +31 611 4 881548111 +643 7 4 891445354 +854 1 3 882812225 +864 472 4 888888861 +621 1036 1 874963446 +669 192 5 891260542 +746 121 3 885075337 +650 823 3 891381661 +788 498 5 880867933 +524 116 4 884322047 +240 286 5 885775625 +671 288 5 883950232 +282 358 3 879949594 +924 322 2 884337164 +916 163 3 880844834 +747 154 3 888733182 +667 283 4 891034947 +541 204 4 884645816 +537 30 3 886031606 +625 25 2 891632018 +840 45 4 891205222 +712 1055 4 874730155 +472 200 4 875981158 +497 541 4 879362546 +533 449 4 879191713 +130 771 2 878537631 +537 211 4 886030831 +43 73 4 883956099 +825 678 4 880757103 +771 134 4 880659482 +897 211 5 879991186 +796 565 3 893218556 +844 55 4 877387769 +863 300 5 889289157 +879 255 4 887761156 +880 64 5 880175646 +889 169 5 880177906 +496 426 3 876071419 +794 109 4 891035941 +883 315 3 891691353 +194 223 4 879547032 +456 1101 3 881374710 +451 1295 2 879012811 +240 302 5 885775536 +302 271 4 879436911 +777 238 4 875980541 +676 1234 1 892685775 +606 651 4 880926018 +894 279 4 880993709 +815 71 5 878694341 +117 252 3 881010322 +459 307 5 879561630 +896 820 2 887159926 +899 48 4 884122044 +756 323 3 874832096 +897 550 3 879990923 +697 369 5 882622481 +754 293 4 879451466 +627 528 4 879530662 +514 898 2 885180893 +844 921 5 877388183 +305 663 3 886323591 +846 1124 4 883948048 +65 471 4 879217434 +873 879 2 891392577 +457 125 4 882393343 +221 751 4 885081300 +503 124 5 879438233 +417 418 4 879647471 +833 135 4 875123677 +757 172 4 888445587 +647 197 5 876534131 +763 224 5 878919153 +707 702 3 886286193 +833 227 2 879818619 +429 136 4 882386071 +101 831 3 877136954 +460 306 4 882912418 +92 63 3 875907504 +11 393 4 891905222 +748 168 3 879454930 +889 428 4 880179536 +844 45 4 877387548 +894 508 3 880993490 +595 1028 3 886921475 +864 65 3 888890690 +256 187 3 882164444 +405 1544 1 885549095 +833 745 4 875134063 +843 164 3 879443297 +62 931 1 879373522 +588 168 5 890024002 +911 507 4 892839289 +425 11 3 878737981 +863 683 1 889289241 +560 1215 2 879977336 +416 78 2 886319785 +922 662 3 891448246 +16 480 5 877720297 +449 462 5 880410674 +690 393 4 881177616 +742 14 5 881335361 +782 270 4 891497963 +840 484 5 891204295 +747 811 3 888639735 +901 155 5 877132671 +899 222 4 884119910 +579 393 4 880952409 +862 647 5 879304369 +943 121 3 875502096 +527 878 1 879455511 +622 95 4 882669556 +916 931 1 880843798 +402 118 4 876267096 +450 111 4 882377590 +798 81 3 876177211 +861 319 5 881274504 +887 1029 5 881381740 +471 432 1 889827822 +395 750 5 883762266 +888 100 4 879365004 +922 274 3 891448247 +13 242 2 881515193 +621 1185 3 881445012 +336 591 5 877759598 +454 611 2 888266685 +234 280 3 892334803 +748 603 5 879454455 +505 181 3 889333974 +654 588 4 887864797 +286 235 4 875807003 +279 259 3 883546906 +806 271 3 882384844 +934 506 4 891193331 +862 238 4 879304624 +889 192 3 880178204 +452 94 1 888568349 +253 518 5 891628392 +888 644 4 879365054 +838 919 5 887064316 +484 720 4 891195532 +268 1110 3 876514077 +181 1079 1 878963122 +387 518 4 886483151 +318 187 4 884495742 +854 620 2 882813453 +411 79 4 892845634 +655 359 3 887424883 +775 313 4 891032837 +165 1119 3 879525922 +532 282 5 893119415 +896 1240 4 887159012 +899 291 4 884122279 +176 1097 4 886047963 +279 1481 4 875313925 +913 168 4 881725796 +18 604 5 880129731 +870 83 4 889717102 +486 544 4 879875249 +682 684 3 888520705 +758 895 4 883190310 +860 204 4 885990901 +823 640 1 878439315 +601 921 5 876351214 +833 436 2 875224252 +894 148 3 880416137 +459 127 4 879562834 +655 76 3 888813372 +497 743 3 879362638 +551 54 3 892784093 +897 378 5 879991137 +878 269 4 880865183 +648 217 2 884883616 +838 258 5 887060659 +880 876 4 892958376 +760 111 4 875666242 +847 447 3 878940890 +931 283 4 891036604 +648 629 4 882213596 +13 905 2 886302261 +829 286 4 891204271 +735 321 3 876698022 +350 427 5 882346118 +868 854 4 877103371 +915 334 3 891031477 +654 255 2 887863513 +934 257 4 891189598 +818 269 3 891870173 +933 211 4 874854251 +897 479 4 879991566 +796 478 5 892761629 +807 831 4 892530881 +804 238 4 879441727 +786 849 2 882844052 +903 89 4 891032842 +854 713 4 882812288 +851 833 3 875731105 +804 216 4 879441450 +851 340 5 883148669 +903 642 4 891033005 +452 520 3 875261100 +568 423 4 877907281 +736 748 2 878708465 +440 462 5 891577994 +833 24 4 875036213 +548 275 3 891415411 +11 451 2 891905003 +655 43 3 888474456 +798 191 4 875743458 +670 705 5 877974905 +942 322 3 891282539 +474 663 4 887924084 +630 1197 3 885667464 +757 27 4 888466683 +74 331 4 888333352 +665 33 2 884293873 +396 281 3 884646647 +882 405 4 879861939 +524 135 3 884634679 +815 660 4 878696441 +545 155 3 879902060 +541 993 4 884046295 +758 216 4 881974931 +180 40 4 877127296 +406 604 3 879446361 +94 474 5 885870322 +655 844 4 887650979 +525 282 4 881085648 +864 55 4 888887045 +763 732 3 878919206 +847 289 5 878774856 +885 274 5 885712996 +13 176 3 882140455 +916 423 3 880844654 +903 111 3 891031677 +216 129 4 880232615 +839 813 4 875752082 +537 302 4 886028446 +715 95 4 875963621 +425 1129 3 878738245 +653 96 4 878854145 +806 230 4 882388520 +756 22 3 874828592 +885 568 4 885715889 +406 531 3 879445475 +752 751 4 891208212 +913 132 3 880758150 +897 864 4 879993772 +569 471 3 879793466 +889 431 4 880179725 +931 300 5 891037521 +798 498 3 875639581 +747 288 4 888638091 +112 332 4 886398611 +936 926 4 886833191 +839 7 2 875751992 +887 22 5 881379566 +268 719 1 875744021 +896 143 4 887158901 +666 660 4 880568094 +560 168 4 879975718 +588 307 4 890014887 +331 1 1 877196567 +534 597 5 877808175 +533 255 2 882195237 +304 323 3 884967391 +804 393 3 879445072 +887 222 3 881378153 +805 214 2 881700713 +660 217 2 891200817 +888 153 4 879365154 +917 287 4 882911185 +747 367 3 888733070 +265 975 4 875320601 +870 211 3 879539713 +586 117 4 884057578 +23 181 4 874784337 +846 1218 4 883950434 +796 391 4 893048713 +523 42 3 883703495 +882 56 4 879865307 +707 632 4 886287426 +802 358 3 875984722 +872 272 4 888478822 +326 94 4 879877304 +653 670 1 880152902 +877 288 3 882675993 +548 254 1 891043999 +788 482 4 880869787 +719 655 4 879360617 +619 121 5 885953805 +931 896 3 891036080 +774 568 2 888557329 +720 321 4 891262762 +642 969 2 885603662 +756 1149 5 874827023 +851 266 3 886534672 +819 246 4 884012614 +734 144 2 891023019 +766 40 3 891310851 +922 175 3 891451240 +867 496 5 880078574 +161 177 2 891171848 +880 956 3 880242380 +731 125 3 886186940 +662 246 5 880571006 +815 945 4 878697261 +938 298 4 891356573 +847 56 1 878939975 +654 146 3 887864105 +773 42 3 888539398 +924 205 4 886327826 +337 67 4 875236631 +843 210 3 879444670 +807 28 4 892528918 +828 6 1 891035614 +840 1214 1 891211729 +406 506 4 882480802 +280 70 4 891700366 +892 613 5 886608714 +796 265 5 892761544 +632 201 4 879457641 +907 83 5 880159865 +146 294 1 891457668 +890 1 4 882402975 +886 178 5 876031829 +771 477 5 880660199 +620 406 4 889987073 +59 526 4 888204928 +405 1574 1 885546529 +854 632 4 882813797 +611 1243 3 891636244 +839 1048 1 875752990 +806 227 2 882388353 +713 752 2 888882276 +840 661 5 891204441 +749 161 3 878847461 +477 546 4 875941972 +894 1404 3 882404536 +198 89 5 884208623 +864 196 4 888887914 +568 488 5 877907782 +626 678 1 878771505 +620 94 5 889988340 +874 305 4 888632057 +751 214 4 889298463 +632 523 3 879458900 +826 578 5 885690713 +640 2 4 874778568 +7 569 4 892131978 +940 151 3 885921800 +664 566 4 876526631 +747 1020 4 888639642 +848 108 5 887040302 +808 751 3 883949560 +771 86 5 880659539 +49 652 5 888066446 +669 22 3 891517159 +924 496 5 886327689 +839 118 2 875752317 +846 705 3 883948141 +859 275 3 885774828 +548 347 2 891415257 +483 101 2 884047278 +463 313 4 889935655 +880 260 4 892958484 +822 91 3 891037394 +655 15 3 888685735 +638 202 3 876695819 +757 576 3 888469012 +869 1061 1 884492377 +617 496 1 883789080 +782 1378 2 891499494 +889 174 4 880178183 +230 422 3 880485633 +73 183 4 888626262 +902 172 4 879465522 +659 1064 5 891385866 +489 688 2 891448861 +899 255 4 884120149 +854 652 3 882813825 +883 100 4 891717462 +802 288 3 875984637 +790 928 3 884462598 +755 258 5 882569732 +503 211 5 880472435 +399 820 4 882341191 +404 938 4 883790749 +303 655 5 879483568 +698 10 4 886366652 +933 467 3 874854479 +279 833 4 875297410 +854 56 5 882814571 +864 239 4 888889466 +664 431 2 876526631 +891 111 3 891639737 +805 1629 5 881703690 +697 280 3 882622597 +544 877 2 884795612 +746 132 4 885075756 +655 803 3 888474358 +638 211 4 876695774 +614 289 2 879463669 +886 94 4 876033200 +923 105 4 880388547 +894 529 4 881625708 +510 748 3 887667707 +815 82 4 884267891 +780 204 5 891363651 +876 435 4 879428421 +798 394 4 875914484 +938 829 1 891357085 +487 204 4 883445495 +618 755 2 891309670 +843 1065 3 879448751 +786 198 5 882843753 +37 233 4 880916046 +603 250 5 891956173 +943 402 2 888639702 +883 1448 5 891695570 +806 1048 3 882385806 +883 956 4 891717885 +569 301 4 879793149 +753 272 4 891399135 +881 411 3 879052376 +527 279 4 879456438 +524 651 4 884634578 +806 45 4 882388159 +940 173 4 885921400 +561 507 4 885807429 +546 5 5 885141411 +276 685 4 874786784 +727 588 4 883710495 +535 484 5 879617819 +773 109 4 888539328 +453 763 4 877553221 +830 625 3 891561541 +453 451 2 877561836 +655 1098 3 887473905 +459 405 3 879563334 +327 83 2 887744101 +308 223 4 887737130 +622 541 2 882592781 +854 1335 2 882812288 +142 91 5 888640404 +394 123 5 880888566 +827 245 3 882807611 +801 302 4 890332645 +862 825 5 879303668 +836 531 4 885754150 +723 168 5 880498912 +807 470 5 892529448 +184 192 4 889908843 +919 558 5 875372988 +128 380 4 879968946 +611 906 2 891636223 +835 191 4 891033276 +699 286 3 880695246 +750 325 1 879446215 +838 705 5 887065750 +489 347 5 891448774 +42 168 3 881107773 +864 5 4 888889657 +221 399 3 875246459 +500 313 3 893192133 +94 86 5 891720971 +274 756 3 878946030 +747 210 4 888639272 +437 602 3 880140822 +586 780 4 884067151 +44 22 4 878347942 +861 286 4 881274504 +498 430 4 881958174 +747 238 3 888638957 +886 403 4 876031765 +796 54 4 893194685 +790 665 3 885158495 +807 402 5 892705096 +827 294 4 882807611 +833 506 2 875132079 +339 53 4 891034254 +593 111 5 875659576 +880 1258 3 880175368 +740 340 4 879523187 +640 580 5 874778096 +234 371 3 892335850 +880 238 4 880174652 +828 582 3 891037813 +453 452 2 888206630 +327 396 3 887819538 +733 458 2 879535129 +745 50 2 880122928 +835 15 5 891032930 +804 98 5 879441503 +796 226 3 893048410 +849 676 5 879695896 +871 300 4 888192971 +889 615 3 880180707 +833 1143 4 887158946 +686 542 1 879546443 +774 183 4 888557198 +250 259 1 883262792 +593 762 4 875659849 +576 124 4 886985002 +697 244 5 882622481 +827 288 3 882204460 +770 250 5 875971902 +883 1462 5 891695570 +449 515 5 879958685 +291 95 4 875086921 +766 197 3 891309011 +551 385 5 892783791 +719 284 2 888449573 +437 476 4 880142177 +903 693 5 891466376 +109 22 4 880572950 +346 660 2 874948979 +468 647 5 875293386 +497 944 3 879362798 +774 187 3 888556483 +405 663 2 885547221 +899 423 4 884121214 +889 575 3 880182850 +59 81 4 888205336 +806 408 5 882385237 +921 484 3 884673633 +790 196 3 885156500 +451 948 3 879012890 +880 208 5 880174652 +137 79 5 881433689 +122 519 4 879270129 +673 321 3 888787355 +481 202 4 885829240 +807 206 2 892684932 +823 1046 3 878439467 +790 72 2 885157661 +279 131 1 886020902 +870 168 4 875680472 +872 268 1 888478864 +485 889 5 891040560 +806 76 3 882389054 +863 906 4 889289570 +887 172 5 881379718 +758 53 4 882053613 +764 50 3 876242649 +303 77 4 879483978 +21 127 5 874951188 +908 527 3 879722754 +592 971 4 882955978 +429 192 3 882385612 +901 1389 5 877127052 +851 1280 4 890343493 +517 740 4 892660728 +606 323 4 877642209 +854 522 2 882814189 +567 79 2 882427023 +275 230 3 876198296 +770 117 5 875971989 +560 498 4 879975718 +868 218 3 877104913 +903 47 5 891033522 +927 405 5 879181451 +935 405 4 884472704 +662 100 5 880571006 +898 347 3 888294485 +790 1165 2 884462890 +406 176 5 879445474 +859 476 5 885775727 +627 1044 2 879530899 +517 294 1 892607194 +513 210 5 885063273 +406 569 3 879792974 +749 38 3 878850724 +257 285 5 882049950 +788 561 3 880870626 +716 284 3 879794116 +532 531 5 893119491 +932 863 4 891249063 +868 496 2 877107597 +175 869 3 877107500 +119 315 5 886175571 +913 418 3 881368742 +194 318 5 879521328 +667 182 5 891034767 +708 993 4 877325349 +933 176 3 874854315 +694 499 4 875728345 +887 1239 3 881381679 +13 590 2 882397068 +524 386 4 884637032 +903 443 5 891033755 +561 748 2 888557502 +396 118 4 884646314 +133 355 2 890588928 +903 196 4 891033781 +868 367 2 877106505 +867 204 4 880078958 +495 1133 3 888636487 +862 520 4 879304484 +907 284 5 881030348 +862 10 5 879303249 +870 288 4 875050370 +682 1039 4 888517510 +660 72 3 891201436 +499 328 5 882996296 +268 185 3 875309801 +795 546 3 880559275 +682 729 3 888518035 +747 136 5 888639481 +870 1021 2 881001249 +916 764 3 880843798 +708 299 1 892718964 +833 861 3 875224309 +863 908 1 889289240 +474 185 5 887923923 +586 17 5 884060807 +714 258 4 892777903 +851 48 4 875731489 +797 309 3 879438992 +344 290 2 884899837 +321 221 5 879438793 +124 1 3 890287733 +694 474 4 875727226 +885 685 3 885715671 +213 212 4 878955474 +514 134 3 875463665 +640 1258 3 886474866 +916 171 4 880844332 +870 135 3 875680045 +73 285 4 888792900 +880 845 3 880167200 +351 898 5 883356784 +537 702 3 886031375 +668 347 4 890349005 +883 202 4 891694312 +790 2 3 885156988 +749 214 3 878849177 +796 236 4 893048149 +828 1462 3 891037948 +922 176 3 891450401 +330 479 5 876546105 +578 346 3 887229335 +839 264 3 875751559 +798 415 3 875639260 +796 1046 3 893194607 +868 162 3 877109505 +181 245 2 878961369 +887 932 2 881379009 +244 744 3 880606923 +870 182 5 883876178 +792 363 3 877910478 +756 8 4 874827755 +903 180 5 891033585 +105 751 2 889214381 +851 56 5 875731489 +178 531 4 882826242 +905 237 3 884983951 +484 742 3 881449737 +586 1046 3 884064912 +867 12 5 880078656 +92 69 5 875653198 +885 584 3 885716328 +889 69 3 880179785 +619 391 3 885954215 +1 231 1 876893031 +589 334 1 883352631 +184 1086 4 889907711 +437 196 4 880140627 +629 1038 3 880116240 +907 260 2 885860511 +901 864 5 877289441 +880 1139 4 880242577 +807 542 5 893081951 +786 173 4 882843069 +682 174 4 888523581 +916 428 4 880844350 +719 127 3 879358453 +618 56 4 891307175 +880 1446 4 880174705 +509 328 1 883590800 +603 228 3 891955922 +942 183 3 891283184 +533 713 2 879192582 +312 602 4 891699263 +393 77 3 889729440 +870 479 5 875050801 +463 129 2 877385287 +889 847 4 880176926 +887 202 5 881379346 +813 271 4 883752455 +900 405 3 877833364 +724 751 2 883757397 +200 22 4 884128372 +758 652 5 881975853 +807 136 5 892529185 +655 176 2 887429999 +878 179 4 880866626 +712 393 3 874730320 +347 748 2 881652142 +871 210 5 888193275 +890 520 4 882403643 +923 168 5 880388872 +873 269 2 891392092 +741 79 4 891455610 +899 144 3 884121173 +922 155 2 891448473 +872 892 3 888479052 +707 15 4 880059876 +329 294 2 891655383 +648 405 4 882211924 +649 678 3 891440562 +144 294 4 888103573 +407 1041 3 876345492 +417 771 3 879649368 +878 168 4 880866626 +894 883 3 880415885 +414 895 4 884999170 +513 739 5 885063056 +372 844 4 876869481 +833 172 2 875224482 +533 480 4 879190670 +485 302 5 891040423 +536 500 4 882360946 +325 1118 3 891479665 +916 265 4 880844813 +647 300 4 876534131 +682 241 4 888522541 +881 226 3 876538400 +790 159 3 885156934 +67 273 4 875379288 +868 216 2 877109234 +619 406 2 885953931 +622 450 1 882592850 +889 554 4 880181976 +912 246 2 875967072 +717 312 5 884642133 +542 87 3 886532676 +892 482 5 886608136 +474 55 4 887926271 +727 609 3 883711923 +714 1152 2 892777651 +762 709 3 878719594 +409 206 4 881109264 +899 431 1 884122645 +528 526 4 886101505 +894 1258 3 879896949 +898 243 1 888294707 +343 663 5 876405045 +833 430 4 875133840 +210 114 4 887736175 +796 479 4 892761427 +883 1227 3 891693200 +796 63 3 893218764 +833 182 5 875039254 +749 423 4 878847645 +870 841 2 878737915 +802 217 3 875985767 +759 245 3 881476616 +622 153 4 882592314 +868 237 1 877108989 +472 91 5 892791063 +840 182 4 891204798 +778 117 3 890727011 +883 386 3 891694372 +867 286 5 880077721 +486 889 4 879873973 +760 776 5 875667247 +422 563 3 879744219 +834 333 5 890860566 +363 232 2 891495272 +835 488 5 891034117 +543 1416 2 876718718 +851 1376 2 875730895 +328 578 2 885048895 +115 218 3 881171623 +666 650 5 880139409 +710 479 5 882064120 +592 683 1 882607745 +921 924 3 879379736 +347 4 4 881654452 +301 90 3 882078360 +87 134 4 879877740 +907 1326 4 880159512 +917 591 3 882911185 +49 289 4 888065744 +790 959 3 885156686 +453 237 4 877552657 +757 559 4 888467400 +454 588 3 881960083 +846 176 4 883947694 +276 89 5 874792366 +655 122 2 887523605 +569 455 3 879794265 +673 310 5 888786997 +870 425 4 889717575 +767 22 4 891462614 +801 752 4 890332853 +747 792 5 888639102 +323 1073 4 878739857 +724 338 3 883758119 +453 1037 1 888206630 +714 100 1 892775786 +682 672 2 888522894 +795 201 4 880569984 +232 268 4 885939544 +10 700 4 877892277 +216 134 4 880233651 +804 1065 3 879441727 +655 823 2 888685759 +738 50 5 892844112 +914 1406 4 887123886 +862 650 4 879304941 +798 210 4 875743410 +788 241 5 880869075 +663 895 4 889491811 +867 132 3 880078629 +399 328 4 882340311 +575 357 5 878148388 +479 471 4 879460028 +852 235 4 891036765 +474 28 4 887924619 +896 53 1 887235026 +533 684 4 879191594 +862 186 3 879305143 +858 333 4 880933013 +682 159 3 888521005 +896 760 2 887235788 +815 258 4 884320310 +98 659 5 880498861 +916 55 3 880844369 +405 640 1 885549589 +841 306 4 889066824 +892 121 4 886609829 +915 345 4 891030145 +655 775 2 887523815 +851 912 4 891961214 +934 212 4 891194802 +409 603 5 881107351 +927 422 4 879199110 +715 1217 2 875963998 +881 480 4 876537679 +788 627 4 880870654 +400 343 4 885676552 +919 432 4 875373824 +717 546 3 884642932 +880 283 3 880167008 +894 126 3 880416381 +938 406 3 891357060 +455 924 3 879110154 +805 346 4 883766007 +286 629 5 877531661 +465 151 3 883530818 +880 38 3 880168411 +592 427 5 882955735 +524 433 5 884636444 +712 1036 5 874956981 +796 134 3 892663009 +91 527 4 891439057 +664 482 5 878090180 +503 172 5 880383588 +593 845 3 875671033 +805 678 4 879971214 +474 678 2 887915020 +234 662 3 892079585 +458 137 5 886394730 +684 585 2 878762273 +829 190 4 881698876 +548 472 2 891415967 +883 185 5 891695692 +848 435 3 887042427 +844 864 3 877381873 +116 326 2 876453376 +297 34 3 875410124 +413 283 5 879969484 +930 153 2 879535685 +259 173 4 874724843 +404 286 1 883790181 +174 582 4 886439537 +379 265 4 883156656 +514 265 4 886190600 +766 616 3 891309589 +897 510 3 879990531 +774 69 4 888556544 +638 455 3 876695059 +864 399 4 888893088 +907 144 5 880159937 +887 225 4 881379094 +864 96 5 888887830 +487 70 3 883530929 +919 323 4 875288362 +902 302 3 879463109 +847 369 1 878939451 +677 129 5 889399199 +726 255 2 889832297 +468 248 4 875280352 +640 96 5 874778240 +655 825 2 887429669 +667 315 4 891034426 +608 79 5 880405863 +405 668 1 885548275 +405 1535 1 885549635 +416 269 4 876696643 +719 185 4 877310932 +831 284 3 891355004 +556 427 5 882136440 +643 215 3 891447037 +900 602 1 877834025 +268 435 4 875309859 +484 684 5 891195390 +446 289 3 879786984 +851 754 2 891961831 +536 86 3 882360573 +846 139 2 883949508 +367 565 2 876690048 +624 302 4 885215462 +782 538 4 891498214 +816 342 4 891711519 +585 557 4 891285820 +846 391 3 883950605 +615 215 4 879448632 +616 245 3 891224767 +758 129 4 881975962 +646 294 2 888528870 +890 589 5 882403221 +297 479 5 875240015 +912 443 4 875966027 +922 427 5 891449123 +332 552 3 888360488 +796 23 2 892690382 +411 89 3 891035761 +109 476 3 880571831 +551 155 4 892784259 +880 148 2 880167030 +756 143 5 874831383 +109 831 2 880572296 +187 1065 4 879465717 +892 192 5 886608473 +567 423 2 882426869 +866 269 3 891221165 +783 286 3 884326274 +389 161 2 880088269 +899 546 2 884120317 +637 591 3 882904233 +883 634 3 891692874 +405 733 1 885546248 +92 926 3 875640542 +930 126 5 879535392 +753 750 2 891401167 +823 161 3 878438535 +663 98 5 889493540 +463 246 4 877387935 +707 1204 3 886286283 +896 317 4 887159069 +626 302 4 878771242 +727 222 3 883709350 +393 893 3 889554457 +521 147 4 884476837 +872 117 4 888479171 +450 286 4 882215617 +405 27 1 885546487 +435 930 3 884134019 +401 125 3 891033651 +48 650 3 879434819 +437 100 4 880140051 +880 655 4 880174623 +405 1266 1 885549634 +933 135 4 874854444 +448 1022 5 891888244 +840 616 5 891209364 +716 237 5 879793844 +892 417 3 886610588 +340 211 3 884991431 +458 199 4 886396140 +782 879 3 891498267 +641 336 3 879369943 +436 693 5 887769515 +846 436 4 883950286 +692 1132 4 876953954 +860 1047 2 885991563 +119 196 5 886177162 +758 475 5 881977205 +717 313 5 884642133 +880 70 4 880174677 +823 294 3 878439981 +849 197 5 879695782 +761 117 5 876190314 +391 652 4 877399588 +474 427 5 887923924 +864 800 1 888891154 +23 603 4 874785448 +896 425 2 887159110 +715 273 5 875961998 +650 271 3 891369143 +840 118 3 891204056 +896 371 2 887159723 +916 202 3 880845028 +405 725 1 885547691 +916 1208 2 880845249 +535 1063 4 879618613 +882 1 5 879864558 +806 288 3 882384554 +659 489 4 891045747 +593 8 3 875673098 +776 241 1 892313489 +779 1 4 875501555 +590 284 2 879439345 +1 204 5 875072688 +655 1445 3 887427538 +592 423 5 882955918 +178 881 2 886678484 +601 82 1 876351298 +785 748 3 879438705 +911 193 4 892839056 +896 426 2 887160722 +566 22 3 881649358 +436 469 3 887769128 +655 318 4 887473702 +877 553 4 882678137 +897 436 4 879991037 +466 4 3 890285034 +870 378 3 879902226 +892 68 4 886611162 +99 98 5 885679596 +640 81 5 874777735 +923 455 4 880387946 +334 130 4 891545318 +5 233 4 875729064 +629 425 3 880117163 +312 189 5 891698516 +865 501 1 880235060 +854 762 2 882812905 +534 685 3 877807653 +864 197 4 888888282 +724 1591 1 883757468 +880 825 4 880167288 +407 568 2 876338730 +921 304 2 879379428 +395 748 3 883762577 +694 435 4 875728639 +667 694 4 891034730 +363 153 3 891495169 +839 117 5 875752169 +412 431 4 879717549 +707 13 4 880059957 +843 616 3 879449256 +276 269 4 885871420 +487 22 5 883445495 +881 58 3 876538796 +637 235 1 882904233 +564 281 3 888730658 +70 739 2 884150753 +917 246 4 882910971 +849 421 5 879695588 +894 754 4 880993317 +244 65 4 880605766 +684 381 2 878762033 +889 484 4 880178313 +610 607 5 888703157 +271 216 5 885848672 +860 302 4 876074139 +90 276 4 891384476 +329 657 3 891656391 +747 95 3 888639318 +927 72 5 879193848 +921 328 5 879379338 +675 244 3 889489775 +883 24 4 891692657 +840 14 5 891203250 +828 86 3 891037047 +896 554 2 887161199 +913 742 3 881036957 +796 28 3 892662523 +620 742 5 889987792 +476 201 4 883364324 +892 222 4 886608094 +597 742 4 875341603 +788 984 3 880867855 +666 516 5 880139348 +707 1021 3 886287079 +715 268 4 875961674 +92 147 2 875640542 +788 151 1 880869908 +825 740 2 880756320 +311 81 3 884365451 +880 781 3 880174961 +616 307 2 891224448 +818 303 5 891870222 +864 755 4 888892128 +829 310 3 890956632 +617 446 2 883789590 +263 378 5 891299630 +896 154 3 887159212 +682 128 4 888522575 +802 219 5 875985767 +405 1545 2 885546201 +722 310 4 891279945 +866 900 4 891221165 +326 648 5 879875644 +886 201 3 876031695 +903 129 3 891031144 +605 135 5 879424369 +577 823 3 880471304 +538 182 4 877107408 +897 88 4 879991283 +883 257 5 891914605 +474 143 4 887926573 +389 482 5 880086777 +380 234 2 885478447 +862 59 5 879305204 +639 694 5 891239492 +321 133 5 879440612 +615 1065 4 879448567 +234 984 2 891033966 +838 204 4 887066040 +854 606 4 882813691 +125 1037 2 892839143 +429 42 5 882385593 +327 466 3 887820171 +843 158 2 879449336 +621 418 3 874965298 +630 820 4 885667391 +934 237 4 891189879 +943 68 4 888639500 +642 369 2 885606090 +267 210 4 878972434 +460 288 2 882910678 +773 675 5 888540279 +500 174 2 883873505 +330 64 5 876546409 +913 613 5 881725796 +764 151 4 876242912 +863 876 2 889289457 +671 511 3 884035406 +382 151 4 875946830 +727 384 2 883712804 +788 176 5 880868743 +178 295 3 882824055 +935 815 4 884472576 +747 466 3 888640136 +345 393 3 884993485 +345 678 2 884901497 +843 690 5 879442947 +843 144 3 879444711 +911 186 5 892839929 +541 812 3 883874872 +940 746 3 885921669 +871 662 3 888193541 +863 259 1 889289240 +933 710 2 874938309 +403 760 1 879790343 +465 868 2 883532119 +755 323 4 882570077 +883 316 5 891692168 +774 180 5 888556634 +538 208 3 877107085 +39 288 5 891400704 +927 623 3 879199110 +606 230 2 880926084 +716 468 3 879796596 +868 640 5 877103371 +916 417 2 880845949 +21 264 3 874950972 +940 316 4 889480582 +796 204 5 892662441 +880 780 3 880175157 +535 180 4 879618655 +548 750 4 891042353 +864 660 4 888889510 +882 841 1 879863909 +689 117 4 876676293 +758 737 3 881978864 +468 286 4 875279126 +374 1194 4 880396292 +653 199 4 880150239 +943 1028 2 875502096 +472 22 5 892790953 +452 515 4 875261747 +716 1113 4 879797443 +222 431 4 881059461 +892 401 3 886609264 +724 242 1 883758268 +802 184 4 875986155 +891 107 5 883490041 +815 1299 3 878697015 +610 516 3 888703710 +279 388 3 875659844 +92 631 4 875658112 +846 955 3 883948720 +293 176 4 888906536 +790 1215 1 884462737 +854 173 4 882813537 +624 298 4 879792378 +938 471 3 891356413 +417 823 2 879646860 +939 127 5 880260745 +887 755 5 881381425 +837 328 4 875721604 +925 773 1 884717862 +678 117 4 879544989 +700 48 4 884494215 +880 1215 1 880167599 +846 61 3 883947911 +815 227 2 878695147 +205 294 3 888284402 +201 217 3 884112627 +320 470 5 884751263 +903 582 3 891033564 +823 79 4 878439038 +653 63 2 880153077 +900 31 2 877833995 +707 197 4 886287130 +863 331 4 889289278 +593 283 4 875659665 +870 1230 2 879901998 +807 298 4 893083851 +796 339 2 892874859 +236 595 3 890117267 +881 8 4 876537457 +843 440 1 879443544 +13 362 4 890704999 +919 237 4 875288805 +885 523 3 885713357 +919 715 5 875921442 +497 774 4 879362407 +716 435 4 879795071 +747 604 5 888638913 +883 732 3 891694340 +293 237 3 888904696 +875 603 4 876465111 +885 225 3 885716242 +848 661 3 887040302 +694 427 4 875727226 +694 482 5 875728435 +762 332 1 878718996 +742 294 3 881005590 +654 596 3 887863802 +867 203 4 880078484 +889 686 3 880180612 +417 151 5 879646463 +734 465 4 891022734 +659 506 3 891385379 +815 9 4 878691739 +725 881 5 876106729 +417 537 4 880949849 +867 31 5 880078656 +327 121 2 887822530 +663 328 4 889491861 +387 367 3 886482883 +650 357 4 891372286 +831 237 4 891355004 +295 232 3 879518900 +847 125 3 878774969 +110 1228 3 886988689 +707 863 4 886286662 +715 480 5 875963387 +342 182 5 875319173 +591 1120 4 891039637 +256 989 5 882150192 +504 504 4 887909890 +631 288 3 888464916 +782 536 2 891500150 +611 272 5 891636098 +860 508 4 885991076 +796 318 4 892661988 +760 300 1 875665867 +627 576 3 879531504 +749 174 5 878847209 +657 117 4 884240629 +13 798 2 882397974 +896 237 5 887158714 +812 873 4 877625537 +922 1110 4 891450768 +921 66 5 884673700 +556 302 4 882135437 +916 76 3 880845049 +694 205 5 875726968 +216 47 4 880244870 +886 48 4 876031526 +821 111 4 874793049 +606 255 5 887061723 +788 649 3 880869649 +868 1285 2 877109926 +900 744 2 877833195 +776 1219 3 891628837 +391 696 4 877400117 +758 131 3 881975243 +868 451 2 877112063 +660 358 2 891197796 +588 66 3 890023646 +897 1051 3 879993772 +886 268 5 876031109 +431 332 3 877844377 +445 56 5 891200869 +738 258 4 875348442 +830 554 5 891561999 +877 88 4 882677967 +804 597 3 879444011 +907 1040 5 880159496 +389 430 5 880087003 +642 419 4 885603537 +757 827 3 888466758 +752 348 4 891208213 +833 1428 3 875123494 +927 257 5 879177353 +679 527 4 884486985 +606 8 2 880923579 +881 216 4 876538922 +634 294 4 876170101 +363 116 4 891495595 +152 319 2 890322385 +892 612 5 886609551 +705 755 5 883427691 +721 729 3 877141222 +347 147 4 881652710 +716 498 5 879795122 +707 106 3 886288189 +892 739 4 886609469 +551 264 3 892775970 +450 724 5 882395537 +885 69 4 885714201 +933 157 4 874854932 +697 287 4 882622170 +717 815 3 884642817 +752 909 3 891208036 +530 220 5 886628953 +870 640 3 886883147 +901 82 5 877131624 +828 207 4 891036492 +427 331 4 879700850 +870 684 3 879714246 +352 174 5 884289760 +807 1078 4 892979639 +540 405 3 882157612 +178 133 4 885784518 +533 227 4 879191563 +453 272 5 887941892 +847 1167 5 878939645 +616 362 3 891224517 +883 318 4 891717936 +802 769 5 875985976 +619 161 4 885954133 +84 408 5 883450553 +542 1 4 886532534 +881 188 4 876538665 +685 872 2 879447443 +406 631 5 882461650 +174 934 4 886434421 +840 473 5 891203408 +181 120 1 878963204 +881 414 5 876537752 +593 685 3 875660081 +308 525 5 887738847 +776 667 2 892920480 +843 179 4 879446774 +484 233 5 891195444 +452 516 3 888324014 +925 327 3 884717790 +492 153 4 879969454 +194 790 1 879535549 +916 709 3 880844123 +851 984 3 874809850 +898 334 3 888294739 +269 710 1 891449843 +843 175 4 879446911 +227 287 4 879035704 +279 451 1 888465592 +679 109 3 884488283 +795 12 4 881260621 +943 76 4 888639523 +653 755 2 880153077 +851 231 4 875807019 +500 289 4 883864818 +874 346 3 888632147 +709 231 3 879848646 +934 156 3 891190813 +846 665 4 883950434 +159 254 3 884026738 +913 518 4 881725761 +916 790 2 880845790 +846 699 3 883947960 +887 655 1 881379609 +314 8 4 877888059 +807 503 3 892530004 +896 139 2 887161033 +611 305 4 891636192 +916 433 3 880844958 +114 135 4 881260611 +655 1112 2 887475641 +846 474 5 883947960 +276 200 5 874792663 +76 806 4 882606471 +342 137 2 874984455 +747 320 5 888732899 +761 457 1 876189950 +144 527 5 888105665 +342 246 4 874984480 +936 827 2 886833191 +486 325 2 879874296 +600 578 2 888451839 +694 495 4 875727018 +536 28 5 882359678 +616 937 4 891224919 +867 483 5 880078372 +471 172 4 889827822 +907 869 5 880160123 +536 197 3 882359567 +774 385 1 888557329 +934 501 4 891196464 +942 1204 4 891283209 +798 254 5 875637836 +748 209 4 879454728 +928 1025 5 880936022 +802 98 4 875985601 +569 277 2 879794385 +911 482 4 892838864 +543 153 3 874863035 +758 502 4 881978864 +615 269 4 879447500 +63 257 3 875747342 +726 409 3 890087998 +592 249 4 882608795 +537 633 3 886031342 +716 735 5 879795644 +936 405 2 886833053 +457 660 5 882396449 +294 334 4 877818861 +798 1032 3 875639212 +918 707 5 891987446 +680 50 5 876816310 +890 447 3 882404541 +379 403 4 880525598 +881 1089 1 876537011 +896 204 4 887157947 +608 690 4 880402527 +733 1011 4 879535644 +698 127 4 886366101 +210 651 4 887736140 +178 232 5 882827162 +897 443 5 879991666 +908 525 4 879722300 +758 1135 2 881980034 +916 181 4 880843401 +572 286 4 879449179 +486 1016 2 879874970 +260 307 3 890618295 +796 514 3 892676231 +790 70 3 885157776 +881 1028 3 876537056 +699 985 3 879147814 +450 457 2 882466909 +758 11 3 881975289 +622 229 2 882592850 +930 107 3 879535207 +761 1152 2 876190623 +804 742 4 879442732 +655 674 3 887523427 +269 371 5 891450880 +903 523 5 891033606 +479 335 3 879459752 +648 684 4 884882702 +650 323 3 891369285 +551 82 5 892783525 +698 613 5 886366770 +385 251 2 879440098 +892 422 1 886610996 +567 199 4 882425820 +924 562 3 886759657 +896 591 3 887160702 +688 877 5 884153751 +73 129 4 888625907 +930 871 3 879535138 +892 274 4 886610451 +916 72 3 880845808 +763 60 5 878914968 +833 134 5 875038987 +776 95 4 892210688 +919 25 4 875289113 +670 519 5 877974604 +913 184 3 880826706 +378 932 2 880056930 +711 218 4 879994852 +658 24 3 875145493 +436 144 5 887769444 +916 96 3 880844813 +864 715 4 888891238 +943 122 1 875502576 +741 226 2 891455711 +492 651 3 879969814 +930 300 4 879535392 +871 352 3 888192971 +246 111 3 884921861 +765 847 4 880346466 +454 302 4 881958326 +852 1 4 891036457 +327 24 2 887745934 +186 331 3 889817888 +840 202 5 891204322 +918 1137 5 891986999 +909 261 5 891919599 +605 1 4 879365748 +869 276 4 884491082 +399 1 4 882340657 +844 432 5 877388183 +707 1061 3 880060118 +932 1021 4 891249146 +650 579 3 891370182 +363 180 3 891494754 +932 516 5 891249877 +766 191 4 891310067 +28 196 4 881956081 +655 607 4 887523427 +123 134 4 879872275 +82 118 3 878768510 +892 768 4 886609977 +184 837 3 889908630 +99 294 4 885678453 +826 271 4 885690022 +374 818 3 880394301 +834 751 3 890860298 +442 69 3 883390935 +583 483 5 879384338 +757 323 3 888443483 +894 879 4 879896141 +632 73 3 879459649 +833 1210 1 879818799 +865 1047 1 880144265 +458 79 5 886396192 +1 3 4 878542960 +303 284 4 879467465 +854 514 4 882813537 +246 164 3 884921613 +880 41 1 880175239 +829 129 4 881712252 +936 273 3 886832453 +106 9 4 883876572 +880 174 4 880167670 +864 732 4 888888067 +878 514 4 880870854 +707 718 5 880059876 +454 95 2 888266433 +592 877 2 882607647 +625 95 3 891953755 +932 141 4 891250363 +896 203 5 887158713 +804 573 3 879445232 +695 264 1 888806222 +890 265 2 882405059 +659 502 4 891385438 +655 30 5 888474646 +465 845 4 883530743 +878 529 5 880870854 +87 152 4 879876564 +466 909 5 890284231 +632 54 3 879459304 +930 45 4 879535492 +937 258 4 876762200 +796 769 4 893218622 +896 23 2 887159145 +429 685 3 882387434 +782 888 3 891498919 +932 659 5 891250770 +905 273 3 884984148 +347 186 5 881653912 +396 271 4 884645790 +805 636 4 881694978 +885 417 3 885716369 +533 111 4 879192474 +782 1388 3 891500028 +269 806 3 891448019 +381 1060 5 892697677 +747 286 4 888638335 +308 824 3 887742013 +788 186 3 880868559 +307 109 5 879283787 +496 416 1 876067754 +585 275 4 891283124 +848 170 5 887039271 +833 192 5 875038529 +904 781 4 879735678 +663 521 3 889493467 +595 979 3 886921847 +429 173 4 882384494 +328 237 4 885047373 +883 289 5 891692168 +655 295 3 887425530 +771 286 2 880659235 +889 13 4 880177179 +930 175 2 879535713 +721 301 4 877136358 +919 832 3 875289726 +907 1221 5 880160080 +892 81 3 886608473 +5 200 2 875720717 +728 243 2 879442892 +473 475 5 878157299 +110 651 4 886988018 +896 582 2 887160040 +877 164 5 882678547 +655 113 3 891585477 +766 972 3 891310907 +867 1039 5 880078677 +554 728 3 876369995 +878 318 5 880866013 +294 1 5 877819634 +653 471 2 884405560 +934 172 5 891191206 +650 73 3 891387542 +553 1194 5 879948995 +685 333 1 879451147 +760 237 3 875666179 +804 520 4 879445904 +891 742 4 891639497 +881 187 4 876539091 +776 670 3 892920351 +734 724 3 891022684 +159 1152 4 880557464 +697 1025 2 882621523 +862 496 5 879304902 +721 64 4 877139301 +922 747 3 891448247 +886 234 3 876031932 +827 316 3 892157262 +815 1157 2 884267828 +458 338 3 889323660 +915 315 4 891029965 +90 60 4 891385039 +618 487 4 891309886 +94 338 4 891725030 +922 294 4 891447296 +826 265 5 885690526 +43 580 3 883956417 +697 126 5 882622581 +730 535 2 880310506 +59 946 1 888206445 +642 245 4 891317923 +469 607 5 879524117 +921 380 4 879381051 +371 66 4 877487213 +657 744 4 884239566 +664 228 4 876526462 +943 485 5 888639523 +601 260 4 876346633 +540 1011 4 882157509 +936 117 4 886832713 +727 135 2 883711069 +805 998 4 881705327 +535 693 3 879619107 +620 596 2 889987954 +747 498 5 888639318 +478 708 3 889397239 +896 1231 1 887160880 +646 1176 4 888528955 +363 256 3 891499542 +932 188 3 891250142 +896 85 3 887160427 +211 117 4 879461498 +932 196 4 891251038 +889 562 3 880181911 +593 49 3 875671891 +328 327 3 885044566 +937 408 5 876769323 +91 474 3 891438947 +843 561 4 879443482 +889 87 4 880178367 +746 597 4 885075304 +83 151 3 880306745 +758 746 4 881976746 +922 22 5 891450586 +645 955 4 892054989 +919 222 3 875288983 +350 603 5 882345975 +943 756 2 875502146 +916 636 3 880845391 +537 950 3 886030347 +875 56 5 876466687 +901 91 1 877131817 +591 66 2 891031526 +835 234 5 891033857 +861 740 4 881274760 +820 333 5 887954878 +789 591 3 880332259 +49 789 4 888068033 +670 222 4 877974857 +704 98 5 891397305 +663 300 4 889491655 +886 127 4 876032472 +693 186 2 875484882 +303 631 4 879483617 +517 748 4 892660728 +764 25 2 876243015 +907 689 4 885860672 +940 168 3 885921597 +913 69 2 880757553 +167 86 4 892738212 +773 730 3 888538852 +881 412 1 876536523 +888 274 4 879365497 +454 327 3 881958428 +887 9 2 881378118 +928 266 5 880936022 +625 654 3 891262837 +747 479 5 888732719 +823 89 5 878438780 +393 1409 4 889729536 +763 135 5 878918332 +167 137 5 892738081 +843 172 3 879444711 +595 871 2 886921945 +862 174 5 879304721 +586 53 5 884061084 +41 969 4 890687438 +798 174 4 875743140 +347 546 4 881653059 +315 673 4 879821267 +860 516 3 885991040 +13 837 4 882139717 +711 403 4 879994513 +693 632 5 875482626 +927 417 4 879184710 +894 1023 3 879896898 +931 252 3 891037070 +707 57 4 886287310 +506 1063 5 888848303 +667 487 5 891035084 +887 125 5 881377933 +894 295 3 879896704 +389 274 4 880088421 +751 332 3 887134842 +314 144 3 877889275 +405 372 1 885547313 +716 650 3 879796278 +553 50 4 879948732 +837 284 1 875722104 +773 93 3 888539366 +864 118 4 888888994 +268 456 2 875743012 +617 611 4 883789386 +795 716 3 880569984 +936 1241 4 886832808 +301 226 5 882077222 +913 268 2 880753802 +899 111 4 884120105 +809 1025 1 891037205 +446 338 2 879786943 +535 197 5 879618288 +632 228 3 879457157 +654 83 5 887864680 +49 99 4 888067031 +442 1074 3 883389053 +741 367 2 891457280 +457 294 2 882393514 +608 59 5 880403856 +867 51 3 880079142 +839 100 3 875751991 +650 206 4 891371186 +880 1181 3 880242781 +522 168 5 876960956 +41 173 4 890687549 +878 88 4 880869418 +92 212 4 875656086 +870 95 4 875050559 +493 974 3 884132914 +533 117 5 879192901 +805 4 2 881694798 +852 122 1 891037738 +881 140 2 876538098 +806 856 5 882387644 +178 69 5 882826437 +592 975 4 882608873 +918 25 4 891988123 +694 100 4 875727640 +924 701 4 885457922 +749 748 3 878846384 +264 234 4 886122261 +831 144 5 891354815 +899 663 4 884122719 +885 143 4 885716344 +521 127 4 885253352 +825 1254 1 880756678 +624 235 4 879793156 +92 260 1 890463551 +714 1014 3 892777694 +643 55 4 891448218 +773 7 2 888539992 +301 288 4 882074291 +179 271 1 892151565 +354 292 4 891180489 +851 92 5 875806791 +608 288 5 880402982 +548 291 5 891415677 +896 468 2 887158866 +782 877 3 891498213 +618 723 3 891309514 +747 582 5 888639362 +804 982 4 879444048 +633 97 3 877211083 +570 358 2 881262582 +941 257 4 875048952 +224 544 1 888103812 +293 1264 3 888905582 +916 697 4 880844937 +573 654 4 885844535 +745 14 3 880122863 +204 269 4 892388976 +642 1133 3 886569295 +805 452 3 881695445 +416 1152 4 876697105 +896 234 4 887157925 +758 181 4 880672747 +311 436 3 884366269 +931 909 5 891037521 +678 1129 1 879544915 +325 71 3 891478981 +498 251 3 881954219 +327 268 4 887737629 +44 318 5 878347340 +504 503 4 887837958 +601 365 3 876350812 +806 1010 3 882385806 +655 553 2 887431019 +416 278 3 876698280 +259 748 4 883371839 +852 827 2 891036866 +82 483 5 878769888 +790 546 1 884461590 +887 476 1 881379059 +752 333 3 891207791 +393 310 4 887742040 +826 39 4 885690600 +670 245 4 877974070 +904 288 4 879735109 +653 407 1 878867398 +937 286 4 876762200 +919 98 5 875373470 +234 165 5 892079040 +738 951 2 875351906 +224 402 5 888103872 +267 188 5 878971745 +896 746 3 887159658 +936 1190 3 886833707 +545 142 3 884135088 +450 259 3 887834953 +881 209 3 876537718 +807 142 3 892530752 +766 518 3 891309878 +864 174 5 888887354 +883 463 3 891693058 +518 240 1 876824079 +676 326 2 892685592 +868 843 1 877109748 +731 28 4 886182826 +807 102 4 892979501 +791 306 5 879447977 +267 135 5 878972463 +866 344 2 891221165 +866 347 4 891221165 +690 993 3 881178697 +868 426 4 877103935 +577 318 5 880472055 +770 294 3 875971655 +825 291 5 880756603 +158 514 3 880135093 +59 116 4 888203018 +831 479 4 891354726 +586 241 4 884061623 +65 66 3 879217972 +840 215 4 891209285 +807 1409 4 892978256 +749 326 4 878846365 +500 249 3 887720111 +689 237 3 876676293 +747 64 5 888639642 +864 655 4 888887128 +475 327 4 891451149 +679 100 3 884487089 +846 174 5 883947737 +863 344 4 889289456 +836 210 4 885754058 +829 1120 2 881707829 +521 210 3 884478119 +683 347 4 893286208 +780 498 5 891363756 +484 4 4 891195154 +921 196 5 884673724 +779 304 3 875501254 +934 135 4 891191659 +102 792 3 892992297 +846 234 5 883948495 +847 1400 5 878940830 +898 539 3 888294441 +695 328 3 888806056 +715 549 3 875964519 +919 245 2 875288253 +664 237 2 876525002 +823 101 3 878438807 +936 325 5 886831709 +840 204 4 891205245 +775 245 3 891032989 +715 31 4 875963692 +897 323 4 879988868 +200 934 2 884127370 +934 65 4 891192914 +502 328 4 883701980 +896 11 2 887158333 +707 185 3 886286032 +504 505 4 887837957 +653 69 4 878854284 +886 544 4 876031850 +880 200 4 880241355 +312 1050 5 891698832 +933 1228 1 874939247 +648 164 4 884883424 +790 4 3 885156773 +128 117 5 879967631 +670 195 4 877974787 +831 301 2 891354275 +716 228 4 879794870 +804 55 4 879442141 +940 286 3 884800898 +709 5 4 879848167 +932 30 4 891249196 +643 492 4 891448586 +648 386 4 884882192 +7 12 5 892135346 +916 118 2 880843838 +301 80 3 882078883 +547 294 1 891282757 +450 44 3 882376658 +21 330 4 874951040 +891 1040 3 883489783 +474 485 4 887926804 +735 331 3 876698022 +650 132 4 891372365 +453 202 4 877553999 +655 304 2 888475101 +940 294 4 884801316 +721 162 2 877147503 +395 21 3 883764534 +872 300 5 888478766 +449 106 3 879958936 +727 1049 1 883709711 +168 181 4 884287298 +181 1276 1 878962586 +109 1135 4 880582976 +836 690 3 885753435 +622 24 4 882590367 +923 264 3 880387199 +551 765 1 892785194 +863 1395 4 889289491 +483 68 1 878953693 +919 284 3 875289280 +633 871 3 875326698 +885 756 2 885713101 +374 1059 2 883627906 +881 193 5 876538131 +863 885 1 889289456 +291 943 4 874834735 +864 433 3 888887703 +334 882 3 891544135 +663 315 4 889491560 +719 215 4 879360781 +476 940 3 883365336 +593 1014 1 875659755 +181 107 1 878963343 +603 50 5 891955922 +680 137 4 876816310 +802 879 5 875984938 +682 895 4 888518380 +608 168 1 880403810 +600 566 3 888451908 +145 827 2 888398238 +901 378 5 877131654 +881 64 5 876537933 +940 69 2 885921265 +354 45 5 891218046 +885 625 3 885714858 +885 1061 2 885713138 +717 147 4 884642297 +412 169 4 879717038 +894 248 4 879896836 +588 67 1 890032343 +846 602 4 883949255 +407 162 4 876339101 +551 218 5 892783212 +823 206 4 878439089 +804 69 4 879444890 +702 289 2 885767604 +668 993 4 881591257 +749 393 5 878849903 +815 523 4 878693462 +677 288 5 885191166 +838 713 4 887064193 +326 493 5 879874825 +528 422 2 886813066 +931 286 5 891037521 +761 125 4 876190798 +521 125 3 884476020 +660 747 4 891200639 +91 333 5 891438106 +715 195 4 875963657 +537 200 3 886031473 +923 100 5 880387474 +639 280 3 891240868 +838 494 4 887066644 +889 257 4 880176845 +892 435 4 886609149 +346 566 5 874950766 +862 97 4 879305143 +798 265 5 875915777 +523 408 5 883700527 +796 988 3 893219180 +787 1671 1 888980193 +514 474 5 875462689 +387 731 1 886482969 +943 42 5 888639042 +504 973 4 887911444 +610 673 4 888704000 +21 321 3 874950972 +712 51 3 874957293 +601 475 4 876346890 +894 339 4 880415854 +504 735 5 887838510 +807 68 4 892705239 +406 671 5 879792863 +389 559 3 880088680 +847 98 4 878940067 +752 338 3 891208329 +297 751 4 885922463 +283 173 5 879298206 +770 936 5 875971902 +798 878 4 875295521 +905 873 3 884983396 +64 389 4 889739834 +526 127 4 885682426 +885 245 2 885712224 +829 458 3 891990881 +698 481 3 886367473 +927 738 3 879196762 +543 195 4 874863155 +504 200 4 887838450 +709 182 4 879846741 +922 99 4 891448580 +554 50 4 876550778 +880 282 2 880166966 +234 176 3 892079190 +870 1 5 889717102 +112 690 4 884992462 +724 269 4 883756996 +426 661 4 879444321 +893 759 3 874830137 +518 713 5 876823071 +109 1210 3 880582230 +537 689 1 886029239 +825 9 3 880755418 +795 746 3 881529904 +694 605 4 875727513 +202 96 4 879727059 +896 709 3 887158866 +292 472 3 881104760 +653 823 2 880153568 +919 895 4 885059623 +870 258 4 886883539 +659 191 5 891332293 +907 286 5 880158316 +749 71 4 878847576 +343 425 5 876406514 +868 946 1 877107189 +66 9 4 883601265 +840 1451 5 891205123 +881 208 3 876538098 +936 975 3 886832714 +848 443 5 887047921 +678 298 3 879544750 +213 195 5 878956156 +334 810 3 891549267 +320 56 5 884749227 +848 582 4 887046329 +802 669 1 875985840 +405 672 1 885548434 +695 748 1 888806270 +393 833 4 887744626 +518 237 4 876823804 +64 10 5 889739733 +870 178 4 875050559 +423 316 4 891394985 +870 474 4 875050559 +618 238 1 891308391 +615 435 5 879449089 +758 343 2 882055987 +76 293 4 879117673 +936 124 4 886832282 +870 50 3 875050865 +96 234 4 884403336 +398 79 4 875660535 +87 648 5 879876448 +790 1230 2 885158235 +62 509 4 879373568 +82 318 4 878769629 +916 762 3 880843579 +341 881 5 890757961 +556 133 5 882136396 +244 291 2 880604379 +710 210 4 882064283 +815 639 2 878696681 +18 15 4 880131054 +655 1176 4 888474934 +549 282 3 881672300 +919 740 3 875289113 +817 455 3 874815947 +788 572 3 880871891 +711 154 4 879992739 +639 193 3 891239177 +63 137 4 875747368 +891 274 5 883429853 +427 881 5 879701253 +913 317 4 881725876 +774 121 1 888558565 +405 35 2 885549095 +417 576 3 879649410 +303 7 4 879467514 +92 1194 4 875654432 +864 214 2 888890052 +868 61 5 877109435 +846 1439 2 883950463 +152 401 3 884018905 +881 9 3 876536198 +458 21 2 886395393 +486 292 4 879874388 +363 386 1 891498407 +11 399 3 891905279 +25 612 4 885852120 +445 249 2 891200447 +92 761 2 875907134 +907 294 4 880158502 +711 120 2 879992038 +467 1059 4 879532693 +128 507 4 879966685 +313 225 4 891030228 +311 739 4 884365823 +722 286 4 891280046 +384 258 4 891273683 +901 795 3 877131738 +867 652 5 880078745 +870 273 3 875051100 +415 684 3 879439610 +828 751 3 891034306 +899 258 5 884119973 +774 451 1 888556169 +537 960 3 886031540 +763 280 2 878915015 +524 514 5 884634938 +938 255 1 891356329 +478 178 4 889388562 +612 7 3 875324876 +592 286 5 882607356 +881 849 2 876539051 +883 648 4 891694249 +280 241 2 891700945 +905 294 3 884983556 +905 100 4 884983888 +450 722 5 882471524 +551 184 1 892777855 +932 613 4 891250363 +939 118 5 880261450 +727 43 3 883712123 +277 1 4 879544145 +592 269 4 882607286 +426 659 4 879442128 +863 329 2 889289157 +345 684 4 884992005 +902 246 1 879465073 +883 313 3 891692285 +566 135 5 881649389 +755 328 4 882569881 +939 298 5 880261184 +447 22 4 878856422 +715 761 3 875965009 +911 548 3 892841073 +250 276 4 878089436 +903 52 3 891466551 +254 163 2 886472023 +467 181 3 879532420 +497 33 4 879310730 +823 234 4 878438608 +326 196 4 879875822 +259 286 4 874724727 +894 236 4 880416177 +933 789 4 874853957 +174 87 5 886514089 +489 359 5 891362812 +756 95 3 874829258 +752 1265 3 891208126 +691 650 5 875543281 +942 315 4 891282355 +880 137 4 880166827 +897 470 4 879991493 +822 169 4 891037394 +627 237 4 879530346 +610 204 1 888703343 +637 285 3 882901356 +882 174 5 879864697 +892 90 2 886610078 +592 326 4 882607573 +275 188 2 880315243 +773 780 4 888539857 +815 83 4 878695311 +545 233 4 879899380 +897 699 4 879990973 +447 265 4 878856394 +851 823 3 875730532 +160 628 3 876767360 +870 1019 3 881001249 +916 318 4 880844175 +707 199 2 886285824 +276 237 5 874786756 +833 1019 5 875039039 +690 1 4 881179631 +822 751 3 891035141 +703 591 4 875243049 +848 88 4 887048260 +481 191 5 885828543 +624 1010 4 879793155 +342 428 5 875320334 +606 201 4 880927417 +598 286 5 886711452 +141 988 3 884584460 +551 153 3 892777310 +877 557 4 882677715 +380 199 3 885478845 +405 194 1 885547176 +864 609 3 888888861 +479 986 1 879460648 +653 1133 2 880153674 +881 1133 2 876539360 +311 511 4 884365202 +933 239 3 874938412 +924 196 4 886759657 +848 514 5 887043777 +923 685 4 880387396 +145 235 4 875270507 +625 855 4 891953479 +610 378 5 888703609 +550 1089 3 883425485 +572 301 4 879449243 +877 228 4 882678387 +618 468 3 891308665 +933 202 2 874854745 +937 304 4 876768813 +712 294 4 876251330 +904 1041 2 879735710 +896 160 3 887160247 +794 285 5 891035355 +930 174 3 879535513 +280 451 5 891701377 +881 864 3 876536198 +870 489 4 875050827 +562 357 1 879195125 +896 250 3 887235144 +94 71 4 891721642 +174 167 3 886514953 +684 408 5 875810796 +890 23 5 882403221 +899 717 1 884120967 +198 137 4 884205252 +936 258 3 886831374 +887 164 4 881380139 +655 574 2 887489222 +823 194 5 878439136 +870 1008 3 879377028 +389 553 2 880089015 +862 515 4 879302877 +587 916 3 892871610 +922 168 3 891450968 +383 286 5 891192186 +780 216 4 891363617 +891 100 5 891638433 +653 546 2 880153253 +861 26 3 881274936 +882 95 4 879877155 +453 144 4 877554443 +796 762 3 892676115 +943 318 3 888639093 +593 974 2 875660347 +336 949 4 877757952 +846 52 4 883949290 +724 302 3 883756996 +879 294 3 887760951 +881 185 5 876537418 +833 455 3 875297104 +883 1065 5 891717533 +417 134 4 879647196 +804 108 3 879443819 +827 748 4 882808465 +55 174 4 878176397 +860 865 4 885990862 +749 179 4 878848015 +896 1220 1 887161033 +756 251 4 875129238 +882 98 5 879865750 +639 283 4 891239913 +762 421 4 878719594 +615 475 4 879447919 +139 475 5 879538415 +660 159 1 891200817 +504 122 1 887832268 +829 408 4 891991300 +854 25 3 882813219 +846 657 5 883947590 +514 274 4 876067433 +566 56 4 881649828 +224 237 3 888082742 +836 42 3 885754266 +786 179 4 882843500 +751 497 4 889134393 +878 236 2 880865470 +524 663 2 884635358 +774 235 1 888558806 +776 109 4 892210576 +766 527 5 891309558 +450 47 3 882394180 +276 1199 4 888873674 +919 276 5 875288612 +543 324 3 890723992 +94 367 4 891723328 +764 864 4 876243232 +63 283 4 875747401 +896 651 4 887158958 +804 529 4 879441913 +643 603 5 891447459 +897 1028 4 879993621 +114 224 3 881259839 +821 284 3 874792521 +907 88 5 881030348 +683 245 2 893283728 +94 1219 4 891722306 +938 676 3 891356428 +301 820 3 882075082 +756 419 3 874830513 +500 170 5 883874446 +916 219 3 880845755 +116 1244 2 876453191 +938 127 5 891356446 +757 254 2 888445172 +758 292 4 880672402 +874 357 5 888633311 +666 974 4 880313929 +807 89 4 892528470 +94 233 3 891722934 +809 340 4 891036744 +932 650 5 891250498 +660 428 4 891200594 +883 211 5 891694249 +916 173 4 880844332 +625 479 4 891262983 +803 261 1 880054754 +848 431 5 887038528 +493 881 1 884130009 +864 188 3 888887172 +560 271 4 879975194 +670 474 3 877975070 +880 56 5 880167731 +828 896 4 891379760 +896 705 5 887158768 +37 472 2 880915711 +933 238 2 874853819 +722 130 4 891281679 +886 128 4 876031551 +756 30 4 874827283 +804 50 4 879440912 +312 169 5 891698893 +144 962 4 888105612 +76 919 3 875027945 +586 679 3 884062742 +625 200 3 892000686 +184 509 4 889908694 +843 181 3 879444670 +788 289 4 880867565 +682 76 3 888517049 +611 886 4 891636399 +561 701 3 885807930 +284 877 2 885329395 +894 300 4 879896466 +570 268 3 881262404 +608 611 3 880403537 +653 686 2 878854247 +756 501 3 874829296 +104 310 2 888442275 +399 54 4 882343126 +830 751 2 891464054 +232 744 3 880062645 +62 116 3 879372480 +851 302 5 888540054 +651 515 5 879348966 +456 150 4 881371453 +828 303 4 891033574 +936 269 4 886831415 +194 604 3 879546498 +632 69 4 879457371 +804 154 3 879441598 +848 462 5 887038634 +829 257 4 881699584 +868 506 4 877104879 +435 778 4 884131844 +932 494 4 891250060 +562 511 2 879195819 +543 462 4 874864182 +711 71 3 879994581 +561 739 2 885810271 +774 232 2 888556121 +312 836 5 891698921 +773 1529 5 888539120 +405 724 1 885546530 +933 87 4 874854723 +491 408 5 891185298 +896 54 2 887160606 +793 1014 3 875103810 +629 632 3 880117031 +790 241 5 885156825 +650 597 3 891381818 +798 736 5 875639010 +681 750 5 885409438 +442 313 3 883387916 +804 379 3 879445465 +504 214 4 887840764 +931 316 5 891037521 +608 294 3 880402450 +680 7 5 876816310 +303 290 4 879483941 +882 227 4 879879868 +916 1098 4 880844862 +560 302 5 879975087 +851 22 5 875731330 +880 423 5 880175690 +40 346 2 889041358 +48 302 4 879434954 +279 87 1 875306613 +881 1215 1 879052376 +262 655 4 879793938 +833 164 2 879818575 +803 300 3 880054629 +878 418 3 880870130 +592 1059 3 882608457 +813 307 4 883752265 +846 1206 3 883948989 +373 471 3 877100458 +936 248 4 886833006 +846 203 5 883948606 +468 955 4 875288504 +924 31 3 885458168 +450 616 4 882373597 +904 553 3 879735710 +745 923 3 880123720 +654 302 5 887862964 +913 9 5 881725816 +302 333 3 879436785 +429 121 3 882386145 +937 847 4 876769213 +723 89 3 880498996 +394 77 3 880888603 +790 269 3 892305174 +820 324 3 887955020 +500 423 3 883875388 +835 176 4 891035309 +682 158 2 888522260 +234 503 2 892333653 +292 789 4 881105701 +894 293 4 881625708 +668 302 5 881523612 +130 681 3 875801315 +601 100 4 876346757 +815 629 4 878695527 +798 63 5 875914939 +87 194 5 879876403 +474 630 3 887928793 +521 421 4 885254070 +927 1014 3 879176876 +563 321 5 880506197 +295 11 4 879517062 +749 498 4 878847926 +10 525 5 877892210 +462 181 4 886365443 +864 109 5 888888994 +916 480 4 880844201 +427 322 3 879701051 +721 631 5 877147260 +453 151 3 877552970 +890 127 5 882402949 +881 1177 1 876539418 +870 188 5 875050672 +764 595 4 876243703 +796 1163 3 892660364 +468 432 5 875287826 +64 172 4 889739091 +724 1432 1 883758208 +830 193 5 891898415 +916 528 3 880846339 +363 705 2 891495371 +926 258 4 888636202 +761 1012 1 876190417 +497 91 2 879309993 +916 631 4 880844654 +880 121 2 880167030 +782 751 2 891498323 +908 419 4 879722875 +927 395 3 879193732 +883 183 5 891696895 +796 143 5 893218728 +169 525 3 891359250 +497 569 2 879362359 +749 273 4 878848243 +429 1074 3 882387163 +882 1412 3 879867368 +367 876 3 876689418 +842 328 2 891218192 +336 407 1 877757373 +755 688 3 882570077 +787 328 3 888979874 +833 806 4 875122675 +825 127 3 880755612 +286 906 5 884069544 +664 705 4 878092802 +777 522 5 875980669 +610 423 4 888703710 +936 476 4 886832544 +894 26 4 882404460 +901 63 5 877131307 +541 678 5 883864160 +663 265 4 889493691 +603 273 1 891956124 +823 427 4 878439038 +846 288 4 883946837 +655 157 3 887611445 +313 229 3 891028241 +864 1112 2 888891097 +313 582 2 891016622 +893 161 5 874830122 +940 47 3 885921758 +864 95 5 888887045 +864 939 4 888890102 +173 881 3 877557168 +680 143 4 876816224 +938 25 4 891356532 +268 29 1 875744356 +943 64 5 875409939 +819 345 4 884618137 +276 332 4 877933879 +768 9 5 883835026 +536 1030 3 882364170 +796 849 4 893048562 +937 255 3 876769323 +805 1119 3 881696759 +87 1118 3 879877007 +184 629 3 889911162 +389 663 4 880087026 +456 56 5 881373353 +716 154 5 879795867 +864 546 4 888892015 +529 991 1 882535639 +937 124 4 876769212 +484 732 5 891194864 +463 740 4 877385922 +869 815 1 884491966 +823 141 4 878438484 +527 175 3 879456132 +877 307 3 882676190 +361 155 3 879441008 +344 463 4 884901210 +715 56 5 875963387 +497 239 4 879362835 +749 196 4 878848302 +833 742 3 875036468 +680 294 4 876816043 +805 724 2 881696699 +840 656 4 891205041 +689 181 5 876674861 +312 124 3 891698726 +902 307 3 879463582 +313 576 3 891028472 +423 100 5 891395448 +682 161 3 888522542 +796 172 4 892663090 +870 13 4 876319137 +328 50 4 885045702 +891 409 4 883490041 +880 357 5 880175622 +930 705 2 879535609 +601 934 1 876348285 +93 934 3 888705988 +725 288 3 876103725 +828 355 2 891035437 +698 28 2 886366916 +773 50 5 888539993 +531 1316 4 887049214 +37 226 5 880916010 +381 520 5 892696757 +916 715 4 880845099 +593 468 3 886193438 +814 444 2 885411347 +566 168 4 881650003 +347 237 4 881652629 +793 628 3 875103942 +627 79 3 879531158 +618 418 3 891308260 +537 1 2 886029889 +363 1478 1 891498469 +336 1118 4 877758055 +749 292 4 878846384 +525 742 3 881085843 +745 168 3 880123671 +907 1284 5 881030348 +527 23 5 879456611 +666 696 3 880313811 +565 207 4 891037393 +854 260 3 882812030 +864 993 4 878179411 +647 82 4 876533912 +532 761 4 874787387 +598 748 4 886711034 +883 269 3 891691436 +834 15 4 890863052 +458 276 5 886394470 +872 405 4 888479151 +936 259 3 886831709 +919 307 4 885059506 +902 228 3 879465834 +804 554 2 879447476 +786 208 5 882843150 +896 1351 2 887160399 +847 742 3 878774969 +854 153 4 882813990 +886 1067 5 876032509 +125 66 5 879455184 +902 423 4 879465765 +708 1054 3 877326158 +551 219 5 892784479 +214 896 4 892668197 +601 1039 4 876350185 +443 307 3 883504564 +653 54 3 880152523 +872 974 4 888479701 +919 367 4 875921085 +748 421 4 879454630 +561 24 3 885807776 +891 1278 5 883489709 +312 459 4 891698365 +450 91 4 887660763 +535 466 3 879618385 +655 695 3 891585242 +881 240 1 879052141 +792 237 3 877910444 +863 307 5 889289157 +297 100 5 874954183 +470 874 3 879189137 +653 38 3 880152955 +851 751 4 883148669 +615 262 4 879447556 +892 951 4 886610649 +806 419 5 882388706 +30 135 5 885941156 +407 234 3 875042268 +686 427 5 879546319 +564 302 3 888718415 +927 401 2 879196762 +863 310 5 889288943 +824 245 2 877021121 +654 1014 3 887863981 +841 689 5 889067253 +657 340 4 884237291 +406 1073 3 882480671 +489 984 5 891362904 +391 291 3 877400062 +826 1231 3 885690854 +778 154 5 890670560 +868 556 3 877110060 +804 685 4 879443946 +883 153 5 891723290 +792 118 2 877910538 +405 1488 1 885546680 +773 809 1 888540186 +763 527 3 878915692 +708 112 1 877325934 +535 919 4 879618207 +805 8 3 881704063 +328 810 3 885049535 +837 222 3 875721793 +253 200 4 891628392 +216 1067 5 881432392 +724 329 4 883757670 +6 533 4 883599830 +867 1154 5 880078991 +694 202 4 875727189 +845 1234 4 885409719 +927 227 2 879196283 +886 799 1 876032973 +721 1025 3 877138200 +788 322 4 880867422 +267 68 4 878972931 +795 109 3 880557210 +618 939 2 891308791 +883 523 5 891694276 +804 429 4 879445037 +797 243 2 879439104 +942 258 4 891282438 +933 233 2 874939008 +921 222 5 879381128 +622 578 4 882670843 +11 365 3 891904764 +446 322 3 879787226 +839 127 5 875751723 +912 186 3 875966202 +409 134 5 881106734 +566 790 3 881651464 +476 325 1 883365684 +804 79 4 879441627 +904 402 4 879735679 +677 455 5 889399470 +914 739 2 887124376 +927 625 3 879191360 +790 577 2 885158122 +892 195 5 886607710 +233 462 5 879147730 +535 132 5 879619035 +840 190 5 891211236 +790 1471 2 885158374 +757 125 2 888467666 +727 395 3 883713692 +919 261 3 885059658 +601 65 4 876350017 +886 721 5 876033460 +590 591 3 879439256 +880 210 4 880167670 +777 273 4 875979432 +847 47 2 878939700 +751 596 4 889133852 +921 1016 4 879379562 +717 289 4 884641911 +788 43 3 880870299 +535 268 3 879617199 +943 284 2 875502192 +521 257 3 884476035 +868 646 5 877109435 +933 195 4 874854589 +868 142 1 877109874 +265 294 4 875320052 +730 340 3 880309892 +840 23 5 891204827 +757 64 5 888445298 +871 310 3 888192858 +622 175 4 882669645 +293 223 4 888905990 +560 546 2 879976705 +804 307 4 879440600 +837 16 2 875721793 +588 584 3 890024677 +892 210 4 886608507 +798 482 3 875638884 +115 302 4 881169559 +896 742 1 887159464 +749 495 4 878847612 +749 1136 4 878847804 +901 73 5 877131416 +864 443 4 888890639 +401 216 4 891032803 +848 180 2 887038993 +130 144 5 875216717 +610 71 4 888703258 +889 480 5 880178019 +823 4 5 878438607 +767 1121 5 891462917 +660 118 2 891198479 +938 1047 3 891357107 +145 269 5 879161576 +700 202 3 884493899 +516 474 5 891290648 +486 405 4 879875040 +269 747 4 891449646 +838 1 5 887064024 +815 91 3 878696840 +708 276 2 877325905 +928 288 3 880935738 +470 222 3 879178711 +804 434 4 879442642 +429 1139 2 882387434 +233 135 4 877661881 +702 690 1 885767392 +917 100 4 882910830 +774 444 1 888557772 +749 428 3 878849534 +506 1020 4 874873067 +902 87 4 879465834 +661 515 5 876017294 +716 79 4 879794935 +596 328 5 883539103 +650 519 4 891381545 +864 282 3 888887469 +830 550 5 891561870 +797 720 2 879439735 +514 118 2 875463416 +624 312 4 891961343 +276 710 4 889174849 +653 356 1 880151734 +487 405 4 883443504 +406 432 5 879793081 +933 265 4 874854697 +368 844 3 889783453 +840 607 4 891204627 +709 250 4 879847626 +349 284 5 879466156 +104 121 2 888466002 +629 268 5 880116722 +405 382 1 885546336 +558 100 5 879436396 +899 742 4 884119830 +851 204 4 875731567 +362 347 5 885019261 +640 373 3 874778756 +406 1170 4 880131851 +343 258 5 876402390 +876 174 4 879428378 +662 268 5 880571005 +613 530 5 891227262 +899 566 3 884122535 +880 97 4 880175714 +326 507 2 879875873 +669 515 5 891517238 +936 995 3 886831637 +892 516 5 886608263 +892 155 2 886609435 +758 79 4 881976061 +708 281 4 877326014 +634 547 4 877979407 +621 276 4 880736723 +804 328 4 879440600 +758 1088 3 880672830 +553 507 3 879948831 +60 423 4 883326593 +589 304 5 883352599 +497 55 3 879310705 +259 168 5 876365003 +883 88 4 891696715 +100 885 2 891375359 +758 713 3 881977533 +519 895 4 883248222 +58 823 1 892242419 +790 268 4 884460878 +733 274 3 879536723 +836 286 3 885753435 +392 316 5 891037811 +577 1042 4 880475286 +804 152 4 879445466 +712 941 5 874730491 +175 136 4 877108051 +312 529 5 891699121 +624 411 4 879793269 +716 949 3 879796718 +916 30 4 880844463 +246 765 2 884924026 +535 179 4 879617489 +889 607 4 880179868 +569 274 4 879794740 +466 300 3 890282795 +717 121 2 884642762 +406 57 4 879446062 +710 156 4 882064524 +629 324 2 880116023 +711 98 5 879992994 +933 357 4 874853635 +643 780 4 891449442 +916 512 5 880844675 +633 45 3 877211326 +758 262 5 880672257 +533 177 4 879191300 +932 204 4 891250667 +846 792 4 883948221 +653 771 2 880606620 +595 127 5 886921199 +806 111 3 882385237 +567 340 3 882426300 +406 1109 4 882480865 +817 876 4 874815542 +868 434 3 877107056 +934 225 2 891197375 +506 447 4 874873847 +851 328 3 886534572 +897 28 4 879990779 +883 61 5 891693012 +886 176 4 876032143 +773 286 3 888538269 +886 212 2 876031897 +708 930 3 892719363 +835 509 4 891035309 +880 366 2 880242257 +492 462 3 879969292 +916 192 4 880844552 +875 963 4 876465275 +197 50 5 891409839 +478 71 3 889388790 +846 785 4 883950364 +927 95 5 879184447 +682 1132 3 888521907 +10 153 4 877886722 +542 88 3 886532727 +880 410 4 880166938 +733 20 5 879535299 +922 83 4 891448115 +716 740 4 879793714 +886 733 4 876032776 +881 22 5 876538028 +776 23 4 891628708 +524 221 4 884323464 +378 265 4 880045989 +13 60 4 884538767 +936 1023 2 886833661 +640 92 4 874778515 +270 242 5 876953744 +887 121 5 881378370 +901 436 4 877131961 +795 567 2 883253903 +52 277 5 882922661 +864 549 3 888890730 +679 42 4 884487584 +393 941 4 889729212 +880 575 3 880175077 +5 380 3 875637191 +94 584 4 885872942 +468 218 4 875294971 +804 239 4 879442122 +94 737 4 891723459 +818 245 4 891870515 +731 190 5 886187538 +562 483 4 879195954 +766 484 4 891309391 +606 215 4 880923925 +941 15 4 875049144 +805 226 3 881694978 +21 877 2 874950972 +796 977 2 893194992 +655 1018 3 887472791 +567 427 3 882427124 +294 872 4 877818580 +804 72 4 879445281 +823 1070 4 878438332 +882 510 5 879864642 +327 33 3 887820341 +931 297 4 891036673 +393 250 4 887743453 +878 796 2 880869473 +779 596 4 875994324 +848 485 5 887042341 +234 1120 3 892079288 +825 628 4 880756504 +660 235 3 891198401 +735 123 3 876698866 +831 210 5 891354612 +380 86 4 885478374 +766 23 4 891309177 +72 237 3 880036346 +210 28 4 887736175 +906 823 3 879435664 +456 588 3 881374462 +896 181 5 887158829 +197 576 4 891410039 +934 435 4 891191365 +851 159 3 875806953 +303 33 4 879468021 +107 1243 3 891264466 +795 425 3 883249522 +829 125 3 891990619 +639 423 2 891239030 +796 227 4 893048471 +412 1 4 879716962 +883 712 3 891694249 +932 432 4 891250109 +755 340 1 882569732 +632 100 3 879457603 +673 326 4 888787423 +727 94 4 883713257 +406 372 4 880131929 +798 418 4 875639212 +592 527 5 882955889 +897 239 2 879992310 +756 919 5 874831383 +429 498 5 882384796 +599 284 4 880952229 +381 118 1 892697051 +671 123 5 883546677 +463 892 2 889936774 +92 369 3 886443672 +710 92 3 883705436 +572 924 1 879449840 +829 276 4 891990694 +796 15 4 893188341 +363 127 4 891495169 +660 675 3 891199556 +58 191 5 892791893 +601 382 4 876351582 +851 127 5 891961664 +866 882 2 891221165 +883 39 4 891696864 +326 429 5 879875175 +727 226 3 883711966 +889 1153 4 880181935 +624 340 3 879791884 +189 489 5 893265452 +622 739 2 882671554 +825 930 5 881184695 +315 475 4 879821036 +5 105 3 875635443 +838 945 4 887065917 +614 235 5 879464437 +602 508 3 888638618 +804 2 4 879445493 +110 31 3 886989057 +1 207 5 875073067 +922 447 1 891449901 +901 866 3 877126963 +579 327 3 880951494 +413 276 4 879969674 +886 423 3 876032422 +712 40 5 874956956 +38 451 5 892431727 +758 199 4 881975687 +57 168 3 883698362 +214 209 5 892668173 +932 495 5 891251105 +925 876 3 884717404 +64 919 4 889739834 +405 792 5 885545552 +627 245 4 879529556 +769 597 2 885424001 +170 300 5 884103732 +530 607 5 883790567 +835 28 4 891034052 +932 1126 5 891250862 +804 1025 4 879440765 +901 216 4 877132578 +919 332 4 885059537 +42 2 5 881109271 +144 198 4 888105287 +929 435 3 880817753 +904 181 3 879735362 +429 293 4 882385293 +788 89 5 880869548 +728 471 4 879443291 +731 1086 1 886186091 +716 633 4 879796808 +734 288 4 891022311 +856 294 4 891489502 +666 443 4 880568638 +936 20 5 886833795 +851 1143 5 891961798 +838 82 4 887066783 +930 238 4 879535544 +919 283 4 875288748 +682 468 5 888517869 +655 699 2 887650593 +707 476 3 880061111 +389 684 4 880087761 +904 237 5 879735551 +854 507 4 882813623 +717 285 5 884642214 +906 1009 2 879435212 +588 22 5 890024195 +782 1611 3 891500066 +668 69 1 881702566 +872 591 3 888479253 +758 230 4 884999132 +532 298 4 892859148 +934 818 1 891190288 +617 668 4 883789716 +872 151 2 888479434 +801 332 5 890332719 +87 685 3 879875856 +943 182 5 888639066 +497 413 3 879362292 +614 7 2 879464215 +87 372 3 879876565 +504 676 4 887908756 +387 655 3 886480352 +495 210 5 888632496 +805 433 4 883415418 +606 38 4 880927923 +892 79 5 886609622 +871 1386 3 888193136 +934 427 4 891191027 +710 56 5 882064021 +868 64 5 877103548 +709 69 5 879846332 +391 209 5 877399541 +806 131 4 882390496 +679 83 5 884486694 +727 982 4 883713632 +830 294 3 891464054 +864 542 4 888892841 +806 455 3 882385455 +922 660 3 891453122 +267 161 4 878972706 +916 216 4 880844312 +880 468 3 880242422 +253 751 3 891627815 +495 582 4 888635080 +165 432 5 879526046 +650 670 3 891387915 +815 625 4 878694705 +283 732 4 879298239 +665 92 4 884295080 +837 278 3 875722246 +906 129 4 879435469 +747 235 5 888733444 +151 143 5 879524878 +796 200 5 893218420 +916 234 4 880845206 +389 686 3 879991434 +445 343 1 891199385 +850 69 5 883195456 +393 577 4 889731437 +933 160 3 874853755 +743 259 3 881277656 +89 25 5 879441637 +896 127 5 887158578 +906 270 4 879434471 +887 588 4 881380298 +640 226 5 874778569 +303 577 3 879544340 +766 436 4 891310038 +899 470 4 884122016 +566 508 4 881649577 +99 544 4 885679183 +903 1048 4 891031906 +766 659 3 891309736 +135 38 3 879858003 +699 333 3 893140662 +532 2 5 893119336 +206 1433 1 888180049 +921 526 4 884673930 +109 56 5 880577804 +399 139 3 882348153 +806 175 5 882387756 +566 172 3 881649644 +500 462 4 883874715 +764 278 4 876243343 +804 671 3 879445493 +18 50 4 880130155 +537 311 3 886028446 +691 748 4 875542868 +650 211 4 891370971 +899 1101 5 884122112 +796 126 3 892690173 +889 231 3 880182444 +279 1250 1 888466349 +606 82 5 880925646 +916 1042 3 880845328 +561 117 3 885810220 +735 13 4 876698643 +862 282 5 879303123 +788 423 5 880868235 +892 2 4 886609006 +832 243 2 888259984 +354 512 3 891306892 +758 222 4 884999132 +342 476 4 875318488 +592 140 3 882956551 +901 243 2 877129839 +194 570 3 879529356 +792 762 4 877910206 +927 403 4 879194335 +918 1265 1 891986494 +795 739 1 883774317 +805 1149 4 881697229 +905 319 2 884983463 +621 299 1 880227012 +749 678 2 878846423 +648 809 3 884883323 +604 98 2 883668097 +933 1110 3 874938728 +848 109 4 887043421 +37 568 3 880915942 +407 175 4 875042865 +651 301 3 880126632 +567 654 5 882425701 +498 479 3 881957054 +880 1496 4 880243147 +643 1221 3 891450316 +751 101 4 889298622 +916 511 5 880844395 +889 436 3 880181275 +181 1281 1 878963241 +363 17 4 891495918 +883 477 5 891914545 +913 483 3 880757975 +682 365 3 888517986 +924 480 3 885457891 +21 991 2 874951039 +415 174 5 879439864 +653 692 2 880151884 +705 96 5 883428028 +890 286 5 882402181 +691 304 3 875542868 +882 185 5 879877245 +442 77 3 883391325 +189 14 5 893263994 +854 512 3 882814063 +711 214 4 879993871 +890 167 2 883010326 +178 203 4 882826242 +938 762 4 891356780 +764 202 4 876246312 +32 50 4 883717521 +934 132 4 891190609 +916 735 4 880844879 +76 1159 3 882606623 +332 685 4 887938277 +942 234 4 891283161 +783 292 4 884326382 +878 855 3 880867803 +930 113 5 879535573 +805 271 3 880055033 +934 4 5 891195713 +429 180 5 882385464 +939 742 5 880260915 +833 271 5 879818341 +497 739 4 879310474 +924 2 3 886759997 +627 188 4 879531196 +889 23 3 880179785 +508 163 3 883768862 +656 312 1 892318777 +807 523 3 892529519 +739 168 1 886958831 +901 235 3 877126963 +292 228 5 881105211 +835 486 4 891034084 +551 228 5 892783212 +577 133 4 880474694 +660 175 3 891199367 +622 4 4 882671120 +253 4 4 891628670 +594 292 3 874780864 +425 89 4 878738435 +618 87 3 891307931 +871 1072 3 888193541 +64 356 3 889740154 +679 432 4 884487514 +224 107 3 888104522 +313 497 4 891015296 +603 89 5 891956825 +437 8 4 880140752 +943 218 4 888639929 +707 739 2 886287919 +436 869 4 887771722 +661 185 5 876013447 +851 298 5 875730379 +405 1464 1 885546154 +540 343 4 882156677 +922 195 3 891450401 +303 562 4 879485447 +402 15 5 876267115 +918 175 3 891987339 +6 216 5 883601500 +907 1163 4 880159015 +536 87 3 882359584 +733 151 4 879535694 +823 418 4 878438672 +436 986 3 887770300 +655 132 3 887565138 +421 423 2 892241707 +642 609 3 885604859 +590 111 3 879438936 +846 41 3 883950859 +566 50 2 881650063 +606 273 4 878143509 +788 810 3 880870773 +232 475 5 880062469 +821 125 4 874792860 +837 9 3 875721889 +923 222 4 880388211 +330 966 5 876547311 +524 792 4 884636519 +840 493 5 891208958 +479 151 4 879461914 +296 153 4 884197419 +846 561 3 883950753 +727 238 2 883710910 +864 684 4 888887289 +896 4 3 887159173 +933 230 3 874854338 +890 195 5 882403045 +886 29 1 876033576 +406 56 5 879792811 +330 209 3 876547032 +533 498 4 879438850 +794 473 4 891036222 +778 143 1 890804547 +752 269 5 891208451 +717 7 4 884642160 +457 69 5 882396659 +889 182 4 880179586 +741 451 3 891457395 +721 282 4 877145657 +450 699 4 882395537 +864 85 2 888889327 +889 250 4 880177179 +420 493 3 891356864 +825 121 5 880756076 +399 1207 3 882350813 +392 326 2 891037685 +653 1 4 878855383 +790 79 4 885156538 +373 1444 3 877112116 +936 1008 5 886833098 +393 684 4 889554811 +177 98 5 880131026 +864 805 4 888889327 +38 185 2 892432573 +916 73 3 880845829 +653 100 4 878854666 +328 72 3 885046686 +807 132 4 892530003 +551 1303 1 892785399 +394 546 4 881058167 +848 405 5 887046915 +435 249 4 884134242 +466 195 4 890284857 +889 627 2 880181646 +661 228 5 876016545 +932 509 3 891248893 +920 310 4 884219768 +882 203 4 879867508 +936 1163 5 886833099 +899 732 3 884122776 +768 245 2 879523820 +846 527 5 883947500 +567 190 4 882427068 +932 14 4 891248856 +429 1133 2 882386848 +633 423 4 877212367 +873 328 4 891392756 +668 13 4 881591075 +28 588 3 881957425 +20 22 5 879669339 +654 24 4 887863651 +927 588 5 879183683 +486 25 4 879874838 +786 97 4 882843683 +807 373 4 893081695 +864 1044 3 888891049 +851 262 4 890343320 +822 101 2 891037465 +654 14 2 887863557 +349 985 3 879466118 +871 187 5 888193081 +327 433 4 887818991 +655 435 2 887860616 +815 79 4 878694493 +545 218 4 879899906 +897 433 4 879991434 +881 1033 1 876536745 +640 150 4 886474493 +254 143 4 886472643 +897 173 3 879990779 +903 4 4 891033564 +655 316 4 889978343 +932 133 4 891249675 +798 112 3 875296234 +514 188 5 875463028 +746 506 3 885075824 +715 944 2 875963755 +593 478 5 875660788 +640 209 5 874778154 +920 299 2 884220163 +796 578 4 893048562 +707 707 5 886286133 +633 82 4 875325273 +748 192 3 879454584 +825 405 5 880756442 +635 358 1 878878838 +648 663 1 882213502 +930 265 3 879535685 +321 430 3 879439734 +128 28 5 879966785 +428 242 4 885943651 +896 578 2 887160653 +896 455 2 887159723 +593 285 2 886193129 +586 410 3 884057783 +893 928 3 874829129 +697 326 4 882621548 +490 952 2 875427532 +345 58 4 884916322 +825 685 4 880756321 +592 654 5 882955703 +623 451 4 891034973 +747 1021 5 888640099 +659 82 4 891384499 +472 214 4 875979964 +934 173 3 891192965 +409 876 2 881105677 +707 770 3 886287405 +234 162 3 892335541 +506 231 3 874873847 +682 49 3 888522194 +804 449 3 879445281 +810 876 3 886614969 +910 273 3 880821492 +393 790 4 889729773 +457 695 3 882398345 +24 7 4 875323676 +201 806 3 884140049 +922 82 3 891449123 +222 245 3 878181198 +882 216 4 879867508 +213 42 5 878956263 +870 513 4 879713578 +749 1188 3 878850610 +221 550 4 875246183 +702 895 1 885767534 +719 274 3 888449274 +336 273 5 877760032 +77 636 2 884753061 +627 53 4 879531504 +913 7 5 881725846 +292 193 4 881105734 +875 418 4 876465230 +358 258 4 891269077 +168 845 4 884287668 +836 163 5 885754058 +890 385 4 882574402 +901 393 5 877131738 +494 238 5 879541207 +626 336 1 878771477 +619 33 3 885954133 +914 313 3 887121969 +906 471 3 879435415 +867 1065 5 880078424 +916 256 3 880843551 +864 470 4 888890052 +798 568 4 875656111 +436 507 4 887769801 +854 825 3 882813143 +896 148 2 887160606 +671 62 5 884036411 +717 887 5 884642133 +753 98 5 891401366 +913 57 4 880758348 +798 73 4 875914114 +721 335 3 877137359 +560 1019 4 879975529 +896 9 4 887158266 +844 294 2 877381206 +279 854 1 875306613 +833 226 3 887158946 +303 390 3 879544365 +312 601 5 891699067 +870 58 5 875050723 +56 193 5 892678669 +847 262 5 878774788 +919 31 3 875373416 +916 685 2 880843727 +711 88 5 886030557 +840 1639 4 891211447 +484 121 4 881449910 +851 925 3 875731022 +521 195 4 884477775 +21 408 5 874951188 +506 521 5 874873529 +847 317 3 878940732 +784 334 3 891387812 +151 124 5 879524491 +893 976 1 874828981 +815 226 3 878698704 +932 519 4 891249710 +878 276 3 880865715 +679 568 2 884488259 +804 647 5 879442001 +697 324 5 882622481 +648 435 5 882212651 +903 461 3 891033334 +694 661 5 875727926 +497 63 3 879362985 +669 357 4 891260616 +650 628 3 891369982 +931 459 4 891036506 +587 328 1 892871284 +833 840 2 875297195 +659 611 4 891384606 +454 606 2 881960330 +934 492 4 891192087 +458 116 4 886394623 +394 168 5 880886919 +851 690 4 891961166 +907 462 4 880159666 +537 482 4 886031375 +650 604 3 891385178 +655 507 4 888813371 +422 339 2 879743848 +398 111 3 875652318 +664 95 4 878090125 +711 186 3 879993237 +928 165 5 880936863 +886 709 3 876032473 +450 601 3 882376658 +821 484 5 874793898 +450 186 3 882396799 +295 143 4 879517682 +887 257 5 881377854 +566 260 2 881649273 +805 768 2 881706049 +715 249 4 875961919 +514 177 3 886189816 +332 1210 3 888360460 +823 238 5 878438057 +576 471 4 886986237 +321 526 3 879440245 +541 83 5 883864806 +747 664 2 888638876 +144 411 4 888104588 +757 227 4 888466652 +259 928 4 874724937 +646 877 3 888529014 +854 58 3 882813825 +440 258 4 891547637 +453 229 2 888206219 +869 476 1 884492519 +311 939 2 884364694 +933 388 1 874938620 +454 504 2 888266955 +560 201 3 879975718 +87 1186 3 879876886 +372 7 3 876869387 +893 1012 3 874828163 +524 6 5 884627388 +823 631 4 878439293 +308 259 3 887736408 +548 539 2 891415257 +868 432 2 877108624 +808 340 5 883949986 +796 1055 3 893188577 +892 1035 3 886608643 +830 174 5 891561606 +664 306 4 876523133 +661 164 4 876035968 +774 150 1 888558787 +815 686 5 878695092 +303 63 1 879484327 +878 215 2 880866687 +766 429 4 891310067 +922 181 5 891449122 +586 44 3 884065692 +796 71 4 893218764 +865 412 1 880144504 +354 714 4 891217449 +372 234 5 876869387 +910 56 4 880821656 +13 825 1 882397651 +450 603 5 882373088 +847 1 3 878775523 +764 273 3 876242649 +487 210 4 883529505 +339 654 5 891032150 +798 125 3 875296178 +805 428 5 881704337 +936 274 3 886832858 +457 423 5 882397699 +488 193 3 891293911 +919 313 5 885059400 +254 241 4 886473190 +504 454 5 887838008 +939 255 5 880261094 +670 96 5 877975070 +897 483 3 879991921 +645 185 5 892054537 +826 779 3 885690900 +833 433 3 875124181 +194 136 5 879521167 +934 13 5 891189566 +530 237 4 886629307 +823 58 5 878438930 +394 118 4 880889066 +648 228 5 884882702 +881 575 2 876539330 +930 235 2 879535207 +887 243 1 881378370 +801 245 3 890333042 +712 142 4 876251366 +927 143 3 879196231 +567 507 5 882425820 +934 414 5 891191027 +279 1034 4 875297381 +230 423 5 880484825 +682 775 1 888521981 +645 50 4 892054824 +790 570 2 885158057 +279 428 1 875307379 +279 429 4 875306910 +581 844 5 879642274 +576 678 3 886960535 +848 739 5 887048260 +1 244 2 887431973 +936 696 2 886833191 +939 266 2 880260636 +815 230 5 878698098 +737 171 4 884314644 +478 780 3 889397808 +660 8 2 891199781 +590 476 3 879439345 +130 17 5 875217096 +727 627 3 883711150 +943 79 5 888639019 +498 100 3 881955291 +925 788 3 884718204 +936 678 3 886831820 +474 1124 4 887927152 +151 301 4 879523925 +655 191 4 887472744 +543 82 4 877545605 +457 47 4 882396935 +645 653 5 892054990 +197 802 4 891410082 +922 739 3 891448516 +479 235 3 879460503 +890 667 2 882404652 +758 362 5 888020763 +222 790 1 878185068 +821 471 4 874792752 +768 127 5 883835026 +918 154 2 891987411 +782 257 3 891499278 +497 417 2 879363627 +883 56 5 891694276 +92 1037 2 875907702 +842 752 4 891218353 +815 613 5 878694983 +927 1035 4 879199030 +588 552 1 890031021 +753 64 4 891402379 +365 108 2 891304019 +805 642 4 881695830 +393 625 4 889554780 +810 328 5 885406635 +862 655 5 879305016 +382 235 5 875946830 +833 150 3 875036213 +435 412 3 884134677 +848 520 5 887039329 +796 633 5 892662070 +879 181 4 887761088 +880 1277 4 880167355 +555 47 2 879975505 +916 581 4 880845543 +584 228 5 885774171 +890 501 4 882403085 +858 678 1 879459926 +82 603 5 878769479 +495 662 5 888636810 +625 300 3 891262561 +299 503 4 878192601 +846 506 3 883948908 +428 245 5 885943713 +347 627 4 881654545 +698 195 4 886366483 +880 250 3 880167521 +303 155 3 879484159 +288 210 3 886373509 +835 591 4 891032579 +280 403 3 891701506 +659 214 3 891387399 +562 1126 4 879196045 +804 655 4 879442377 +896 527 4 887159723 +838 175 3 887066186 +881 95 4 876537679 +660 210 4 891199293 +902 479 4 879465583 +813 266 2 883752660 +833 217 2 875224252 +933 181 2 874854100 +881 521 4 876537870 +94 248 4 891724341 +575 318 5 878148087 +634 950 5 877018125 +486 458 3 879875069 +630 22 3 885668328 +787 362 3 888979657 +83 479 5 880307699 +747 70 4 888733218 +68 926 1 876974298 +746 455 4 885075304 +868 709 4 877109197 +883 347 4 891691559 +796 48 3 892663090 +7 421 3 891352134 +828 179 4 891036972 +608 736 4 880403484 +221 737 4 875393346 +752 750 2 891207791 +562 323 2 879194768 +453 55 4 877554301 +916 290 3 880845206 +293 284 2 888905122 +624 3 3 879793436 +92 149 3 886443494 +825 100 4 880755942 +856 286 4 891489299 +943 508 5 875501795 +727 568 3 883711476 +853 270 4 879364822 +705 257 4 883426944 +537 1420 1 886029181 +938 756 3 891357019 +903 61 4 891033302 +854 98 4 882814394 +632 685 2 879459394 +897 526 5 879990813 +537 204 3 886031786 +762 286 4 878718810 +188 259 3 875071443 +223 1234 3 891548646 +566 685 3 881651183 +59 658 4 888205188 +606 833 5 887060394 +472 105 3 875979402 +932 429 5 891249675 +939 1028 5 880261868 +552 258 4 879220564 +339 92 4 891033452 +311 578 2 884365930 +548 597 4 891415890 +934 792 3 891193132 +629 153 5 880116818 +865 588 2 880235060 +716 495 4 879795762 +830 427 5 891462531 +854 297 4 882812263 +833 181 2 875036321 +658 69 4 875147995 +708 336 2 892718846 +524 676 3 884322379 +568 1137 4 877907092 +234 385 2 892335309 +16 135 4 877720916 +436 143 2 887770092 +647 1016 4 876534131 +796 779 3 893048713 +659 447 3 891386910 +454 604 3 881959960 +916 164 4 880845028 +825 148 4 880756725 +795 402 2 883254905 +509 690 3 883590676 +617 74 5 883788859 +521 203 3 884477896 +296 898 4 884196284 +234 144 3 892079840 +648 475 1 884364250 +931 137 3 891036552 +886 159 2 876031695 +639 215 1 891239271 +747 433 3 888733387 +779 111 4 875994324 +627 82 4 879531248 +871 262 3 888192970 +20 50 3 879667937 +876 604 5 879428406 +757 17 3 888466490 +535 32 3 879617574 +733 148 3 879536607 +774 778 5 888556046 +870 70 4 889409590 +30 780 4 875060217 +64 435 4 889737771 +588 159 1 890029795 +743 258 5 881277357 +897 406 3 879993577 +867 603 5 880078452 +233 180 5 877661364 +64 241 3 889739380 +696 327 4 886404144 +1 19 5 875071515 +38 673 5 892432062 +201 1355 1 884111637 +765 170 5 880346854 +853 304 4 879364822 +667 475 5 891035051 +896 265 4 887158604 +690 232 4 881177689 +774 548 1 888558041 +663 676 3 889492435 +716 630 4 879796138 +916 755 2 880845574 +371 176 4 877487135 +608 421 5 880406427 +666 124 3 880313391 +514 137 3 875318114 +506 333 4 887230118 +846 1297 3 883950665 +746 265 4 885075399 +655 1010 3 887477191 +154 475 4 879138832 +270 563 3 876956442 +804 32 3 879444352 +763 137 4 878918332 +458 275 5 886394471 +880 1058 2 880242421 +936 125 4 886832757 +913 200 5 880825443 +716 515 5 879793293 +159 118 4 880557464 +928 487 5 880936769 +927 420 5 879193437 +62 76 4 879374045 +271 428 4 885849188 +815 233 3 878694381 +363 372 4 891496077 +548 250 5 891044304 +712 178 2 874956357 +749 240 1 878850656 +880 1036 2 880243147 +913 235 1 881725960 +244 924 4 880604550 +535 608 4 879617856 +763 194 5 878918406 +843 504 2 879446911 +855 855 4 879825488 +534 288 4 877807429 +597 990 2 875339041 +782 181 3 891499213 +2 286 4 888549960 +842 306 4 891217942 +627 566 3 879531249 +407 737 4 875117053 +666 23 4 880139467 +343 222 4 876402978 +840 603 5 891204564 +790 739 4 885156686 +276 1052 2 889174870 +786 281 4 882842044 +571 69 2 883354760 +873 342 4 891392698 +95 52 4 879198800 +328 447 2 885045528 +472 825 5 875979439 +459 186 4 879566321 +892 8 5 886607879 +901 435 5 877131342 +894 171 3 882404595 +258 326 5 885701024 +577 50 4 880474394 +716 300 5 879792599 +878 14 5 880865865 +621 184 3 874964267 +56 393 4 892677047 +727 402 3 883711847 +899 174 5 884121125 +378 313 5 889665301 +276 1019 5 883822485 +733 544 1 879535407 +749 1013 1 881073081 +785 69 4 879439137 +932 38 2 891251696 +611 354 3 891636192 +682 23 4 888519725 +548 431 5 891044446 +873 339 3 891392871 +831 742 3 891354866 +887 596 5 881378118 +562 514 1 879195848 +20 243 4 879667799 +815 97 5 878694983 +653 183 3 878854100 +335 340 5 891566808 +827 289 3 882807571 +748 7 4 879454662 +833 163 3 875122814 +883 113 4 891693723 +650 1419 3 891381884 +880 85 3 880174904 +897 79 5 879994113 +18 142 4 880131173 +651 995 1 880126547 +467 222 3 879532651 +863 909 3 889289619 +256 449 3 882164999 +782 304 4 891497906 +922 579 3 891447988 +648 692 4 882213535 +424 840 4 880859693 +497 805 3 879362835 +398 655 4 875658967 +790 135 3 885156538 +722 25 4 891281108 +399 561 2 882345335 +861 242 5 881274504 +886 69 2 876031932 +939 756 5 880261532 +892 56 4 886607957 +919 238 3 875372988 +654 237 4 887863339 +880 150 4 880166798 +478 150 4 889388098 +727 815 3 883709188 +883 208 4 891694340 +673 895 3 888787423 +378 287 2 880044802 +655 502 4 887477168 +933 654 4 874854338 +831 327 2 891353940 +94 412 2 891724485 +280 452 2 891702387 +757 250 4 888444088 +642 91 4 885603897 +46 286 5 883611352 +250 588 5 878091736 +804 252 4 879441160 +343 116 5 876403009 +886 1010 5 876032103 +923 280 3 880388097 +795 191 4 883249962 +880 231 2 880167880 +425 161 3 878738187 +494 323 3 879540901 +699 546 3 879147769 +781 294 1 879633862 +447 211 4 878855724 +883 96 4 891696864 +832 264 3 888259480 +894 32 4 882404137 +605 508 5 879425432 +526 181 4 885682448 +929 195 4 880817681 +876 527 5 879428406 +508 228 5 883777430 +940 692 4 885921651 +437 249 5 880142027 +537 494 4 886031752 +35 321 3 875458970 +835 132 5 891033232 +916 559 3 880845658 +385 240 4 879447317 +916 767 4 880845522 +536 993 3 882318629 +848 238 4 887046329 +931 685 4 891036902 +620 432 4 889988036 +550 15 5 883426027 +476 959 3 883364433 +655 1082 3 887425655 +3 353 1 889237122 +119 727 5 887038711 +903 198 4 891032872 +843 1135 3 879447377 +634 410 4 877017872 +484 14 4 885237963 +847 417 2 878941588 +807 144 4 892528771 +863 292 2 889289067 +301 299 3 882075520 +119 172 4 874782191 +513 435 5 885063304 +160 832 1 876770673 +840 503 4 891209322 +925 260 3 884717669 +184 480 4 889908571 +699 270 4 893140745 +664 157 3 876524731 +405 181 5 885547909 +747 1170 2 888733182 +406 425 3 884630617 +764 222 4 876243440 +285 286 3 890595584 +527 582 2 879456078 +805 1118 5 881704553 +823 181 4 878438260 +804 1244 2 879441132 +937 326 1 876768813 +751 916 1 893113145 +851 327 4 890804671 +546 343 3 885140117 +913 227 1 881368310 +825 195 5 881101543 +586 356 4 884065692 +407 85 4 876339975 +655 793 3 888813186 +437 420 3 881002191 +919 126 4 875289170 +825 620 3 889021134 +579 268 3 880951444 +897 208 5 879991037 +698 187 2 886366916 +622 9 4 882669969 +394 418 4 880887462 +943 187 5 888639147 +897 168 3 879991341 +478 1041 3 889396449 +38 433 5 892433771 +592 815 3 882608625 +846 550 4 883949156 +42 658 2 881107502 +916 919 5 880843465 +846 448 5 883949547 +395 300 3 883762362 +393 541 3 889555384 +694 133 5 875727189 +81 79 5 876534817 +542 432 5 886532552 +158 83 5 880134913 +279 27 5 875313015 +372 273 5 876869730 +888 631 4 879365224 +794 224 4 891035793 +394 403 4 880889034 +836 289 1 885753691 +694 530 5 875726708 +683 288 3 893286259 +321 659 4 879440980 +149 311 3 883512752 +14 382 5 879119739 +49 200 3 888067358 +416 345 5 893214332 +846 1078 2 883949982 +832 895 2 888259285 +768 763 2 883835210 +643 716 3 891449507 +806 128 3 882388419 +942 528 5 891282840 +453 1303 2 888206730 +603 227 3 891955972 +435 658 3 884133223 +863 304 3 889289240 +119 287 4 874775465 +805 411 2 881705350 +843 216 2 879446806 +416 173 5 893214127 +537 506 3 886031860 +802 259 2 875984938 +911 134 4 892838823 +560 58 3 879975485 +629 42 2 880117430 +850 659 4 883194709 +896 379 2 887159805 +829 86 4 891992008 +523 202 4 883702054 +125 289 5 892835854 +942 659 5 891283161 +763 12 5 878918486 +406 9 5 879445735 +880 976 2 880243588 +727 108 3 883709948 +506 641 5 874873158 +886 9 5 876032274 +588 697 5 890024002 +892 357 5 886607568 +458 194 2 886397504 +823 174 5 878437589 +901 194 5 877131342 +747 199 4 888639102 +572 100 3 879449632 +600 1004 4 888451839 +595 1010 4 886922069 +393 720 3 889554648 +864 651 5 888888168 +577 763 3 880470638 +870 793 5 875680258 +566 78 1 881651829 +807 428 4 892530439 +933 392 3 874854652 +671 11 4 884035774 +497 795 1 879363284 +868 24 2 877108385 +756 225 1 874830864 +864 28 5 888887247 +829 410 3 881086959 +854 258 4 882811810 +907 117 5 880159172 +833 526 4 875224515 +184 676 4 889907925 +659 512 3 891386040 +498 268 2 881954618 +919 989 2 875288418 +589 751 4 883352562 +377 678 2 891297043 +846 425 5 883949156 +655 1578 3 887650714 +936 286 5 886833794 +892 465 4 886609295 +59 608 4 888204502 +757 143 3 888468693 +697 339 2 882621714 +661 86 4 876035679 +450 61 4 882376446 +872 845 3 888479313 +496 68 4 876067192 +299 211 4 877880961 +201 697 4 884140115 +751 865 2 889135211 +455 52 3 879112011 +919 116 3 875288749 +869 275 4 884490936 +807 205 3 892528605 +887 109 5 881378289 +554 717 3 876232553 +59 90 2 888206363 +361 121 2 879441324 +731 694 5 886184421 +479 143 1 879461669 +846 200 4 883948685 +927 815 3 879181259 +58 56 5 884305369 +405 435 1 885547176 +741 732 4 891456509 +542 401 3 886533193 +389 418 4 880165168 +682 752 4 888523634 +342 9 5 874984233 +932 654 5 891249877 +546 219 5 885141439 +897 530 3 879990531 +807 422 4 893082741 +868 193 2 877108123 +878 174 3 880872669 +569 118 4 879794265 +932 479 5 891249794 +303 419 4 879467328 +917 756 4 882911622 +92 841 3 886443455 +897 135 3 879990843 +712 510 2 874729749 +350 190 4 882346900 +830 173 4 891464148 +537 708 3 886031860 +804 632 3 879444488 +397 484 5 885349759 +795 202 3 881529874 +442 92 5 883389776 +749 22 5 878847327 +734 483 4 891025247 +565 86 5 891037757 +710 179 4 882063766 +701 326 4 891446707 +516 357 3 891290685 +864 203 5 888886846 +911 584 3 892841033 +892 136 4 886609365 +682 625 3 888523155 +840 22 3 891204265 +414 11 5 884999347 +934 614 3 891191334 +514 100 4 875318163 +654 508 1 887863355 +632 550 2 879458900 +768 682 3 883834776 +886 328 3 876031173 +727 186 5 883710598 +918 216 2 891987205 +712 42 1 874729935 +201 1 3 884113635 +392 11 4 891038371 +552 628 3 879221833 +315 466 1 879821349 +745 20 1 880123905 +922 455 4 891450688 +904 709 3 879735499 +222 472 2 877563998 +535 848 3 879618743 +476 433 4 883364250 +664 414 5 878090415 +711 941 3 879994608 +145 234 5 875271948 +915 346 2 891030070 +903 655 5 891466376 +846 489 4 883948606 +158 298 3 880132513 +896 188 3 887159011 +883 504 5 891754950 +764 371 3 876246436 +398 633 4 875726786 +486 50 5 879874582 +28 529 4 881957310 +340 969 5 884991647 +545 67 1 880348933 +934 661 4 891190960 +517 1177 5 892660728 +930 117 3 879534803 +869 1132 1 884492906 +328 316 5 888641915 +715 97 3 875964330 +381 268 4 892697982 +843 650 3 879447801 +847 663 2 878940954 +586 423 2 884058708 +484 87 5 891195746 +766 663 5 891310067 +634 744 5 877018125 +276 373 2 874977513 +878 921 4 880867665 +551 520 4 892777339 +870 286 4 875050332 +587 322 3 892871113 +881 1066 3 876538726 +892 663 5 886609330 +49 283 3 888066086 +848 183 3 887038104 +862 472 5 879303505 +403 476 4 879790468 +774 101 2 888558018 +704 432 5 891397535 +479 470 5 889125718 +747 1427 2 888639594 +231 15 4 879965704 +782 313 5 891497697 +806 29 4 882390296 +177 156 5 880130931 +666 294 3 880139037 +563 301 4 880506234 +59 73 4 888206254 +416 620 4 878879237 +833 200 4 875131847 +899 515 3 884121945 +336 85 3 877758078 +389 722 2 880089192 +932 67 2 891251611 +856 307 4 891489250 +450 11 5 882376365 +922 433 4 891451143 +919 129 5 875289025 +714 281 3 892777651 +882 208 5 879868197 +173 258 4 877556625 +828 752 1 891035438 +537 972 3 886032123 +301 41 3 882079446 +234 615 5 892079722 +862 81 5 879305237 +869 237 4 884490745 +805 928 3 881695930 +779 879 3 875501300 +899 455 3 884119910 +524 528 4 884634818 +18 187 5 880130393 +234 304 3 891033591 +582 742 3 882961082 +500 557 3 883875136 +847 210 3 878940584 +842 324 4 891218060 +915 347 5 891031477 +537 378 2 886032154 +870 53 2 879714351 +890 357 5 882403299 +429 357 5 882385636 +934 755 4 891196610 +848 973 5 887046619 +234 635 2 892336358 +875 187 4 876466687 +815 114 5 878695019 +758 62 2 881978368 +159 1012 5 880557080 +919 20 1 875289499 +466 260 4 890283592 +416 597 3 876698178 +798 432 4 876176259 +881 1480 2 876539636 +827 300 3 882201725 +861 292 4 881274504 +343 466 4 876404957 +734 485 5 891022976 +796 693 3 893188650 +592 182 5 882955662 +102 2 2 888801522 +472 402 5 892791063 +886 33 4 876033088 +474 431 4 887926999 +806 879 3 882384802 +303 412 3 879543756 +789 150 5 880332333 +878 285 5 880865562 +727 230 3 883711847 +826 29 3 885690750 +13 899 1 892015288 +876 511 5 879428354 +805 273 2 883415418 +545 1028 4 879900731 +823 426 4 878437658 +838 60 4 887067575 +881 756 4 876536012 +938 328 2 891356282 +269 167 1 891451648 +815 521 4 878694381 +659 517 5 891384888 +825 823 4 881342978 +932 173 3 891250337 +655 1042 2 887523641 +882 429 4 879866320 +774 508 3 888558731 +595 676 2 886921140 +734 202 5 891022684 +392 269 5 891037385 +899 827 2 884120388 +897 974 4 879993553 +903 188 5 891466376 +645 182 5 892053686 +524 1540 2 884635326 +805 890 3 882216972 +708 405 4 877325881 +764 2 3 876244856 +752 887 1 891207846 +897 528 3 879991933 +885 117 4 885715643 +903 871 3 891031833 +749 328 4 878846422 +648 186 5 882213597 +671 66 5 884204727 +820 328 2 887955079 +886 100 4 876032187 +796 31 4 893194547 +854 269 4 882811742 +606 1 5 878148365 +452 527 3 885490722 +452 825 5 885816916 +851 333 5 890862741 +435 288 4 884130605 +379 1035 3 880962256 +894 7 4 880993632 +731 655 5 886183515 +922 250 2 891454910 +913 19 5 881366383 +505 121 4 889334004 +887 559 4 881381555 +764 693 3 876246687 +881 23 4 876537419 +766 193 3 891309668 +896 800 3 887161448 +276 696 2 874786632 +542 435 4 886532818 +756 228 3 874828640 +875 213 4 876465408 +284 334 3 885329468 +936 272 4 886831374 +887 7 4 881377812 +786 210 4 882843039 +750 886 3 879446114 +805 950 3 881698828 +934 254 4 891190478 +292 331 5 877560833 +152 568 5 882829846 +608 268 4 880402983 +600 391 3 888452491 +378 561 3 880333695 +389 155 2 880088900 +916 24 2 880843419 +620 931 3 889987875 +622 88 3 882670749 +758 236 4 881974742 +921 97 2 884673891 +627 530 3 879531195 +834 276 5 890862468 +881 1411 2 876539595 +851 681 1 886534672 +896 33 2 887160209 +937 864 3 876769530 +250 323 2 878089100 +365 319 4 891303694 +753 313 5 891399135 +537 430 3 886031297 +546 109 5 885141260 +691 182 5 875543228 +887 118 5 881378289 +886 168 4 876031573 +770 240 2 875972582 +643 147 3 891445526 +308 480 4 887736532 +538 273 3 877107879 +678 222 3 879544989 +848 186 5 887039271 +734 605 4 891025555 +869 287 2 884492047 +883 1656 5 891692168 +592 24 4 882608021 +266 289 3 892256967 +764 819 3 876243159 +710 64 4 882063766 +717 628 5 884644605 +537 471 3 886030012 +102 174 4 888801360 +534 985 4 877807815 +880 281 4 880167384 +500 358 4 887755810 +887 151 5 881378325 +222 1145 3 878185137 +655 1195 3 887693376 +860 315 3 884029545 +896 284 4 887159972 +125 95 5 879454628 +486 100 5 879875465 +49 702 3 888066614 +937 236 4 876769373 +588 928 4 890027063 +840 639 4 891204564 +805 1002 1 881705592 +677 117 4 889399171 +826 586 4 885690819 +624 1059 1 879793358 +409 1050 4 881109420 +830 566 3 891561937 +862 767 4 879303807 +899 161 4 884122367 +246 226 2 884923329 +90 137 5 891384754 +773 235 4 888539677 +504 9 4 887831567 +299 381 3 889502198 +892 576 4 886610840 +125 85 3 892838424 +11 382 3 891904573 +943 609 2 888639702 +883 279 3 891717356 +803 304 3 880054792 +870 1451 3 891214479 +855 170 2 879825383 +823 202 4 878438672 +854 271 4 882811937 +938 343 4 891356062 +932 708 4 891251647 +933 105 2 874938475 +782 894 2 891498031 +464 479 4 878355167 +279 630 4 875313351 +592 180 5 882956102 +798 671 2 875639115 +500 554 3 883877162 +846 54 3 883949459 +855 919 3 879825462 +844 2 4 877387933 +370 57 5 879435431 +655 226 3 887429732 +870 64 5 889717102 +833 591 2 875036139 +659 73 4 891387083 +474 151 3 887916203 +167 216 4 892738237 +94 823 3 891722458 +698 135 3 886366483 +907 356 4 880159937 +804 290 4 879443795 +907 322 5 881030348 +392 657 5 891038401 +273 286 3 891292761 +600 518 5 888451908 +833 1335 2 875038433 +771 202 4 880659941 +840 71 3 891209572 +846 655 3 883948804 +786 455 1 882842762 +689 717 3 876676359 +886 12 5 876031279 +883 435 4 891696895 +362 879 5 885019357 +798 648 3 875914785 +773 887 2 888538175 +262 204 3 879793667 +621 790 4 874963081 +655 972 3 887475213 +618 633 3 891308571 +764 472 3 876243925 +761 7 4 876190206 +683 327 4 893286260 +524 488 4 884634707 +145 64 4 882181785 +769 473 3 885424337 +894 334 3 879896200 +874 751 3 888632147 +406 1101 4 879445771 +416 4 4 876699903 +772 344 4 889028581 +890 474 5 882403587 +314 812 4 877889163 +582 100 5 882960863 +879 685 4 887761865 +848 654 5 887038104 +567 182 5 882425701 +803 340 5 880055088 +895 988 3 879437845 +634 93 5 877018125 +617 452 1 883789590 +742 124 4 881335461 +711 1024 5 883589512 +13 28 5 882398814 +692 257 4 876953340 +934 94 4 891196117 +774 655 1 888555998 +554 284 3 876549009 +104 328 3 888442249 +843 226 3 879443865 +846 88 4 883948948 +203 748 2 880433474 +916 483 5 880844419 +455 22 4 879111500 +618 566 3 891308261 +804 629 3 879445072 +844 174 4 877387768 +334 561 2 891549455 +532 368 3 888630991 +846 140 4 883950634 +618 313 4 891306927 +216 97 4 880235571 +901 932 4 877127021 +886 191 5 876031309 +566 137 5 881649928 +337 151 5 875185627 +846 141 4 883948948 +749 568 4 878848098 +758 285 5 881974823 +942 484 5 891282963 +848 403 4 887043266 +664 96 3 878094973 +807 300 5 892527168 +916 550 2 880844985 +669 175 4 892550170 +760 71 4 875668080 +524 13 4 884323551 +497 372 4 879362875 +491 325 1 891189876 +56 1091 2 892737210 +875 518 4 876465408 +790 1185 2 885158257 +573 135 4 885843964 +663 466 3 889493467 +715 977 2 875962718 +833 429 3 875123506 +870 497 4 875050559 +829 116 4 881698644 +10 85 4 877892438 +119 349 3 887038665 +930 756 3 879535015 +374 825 3 880394233 +903 721 4 891380524 +504 705 4 887838935 +815 871 1 878693073 +941 455 4 875049038 +701 124 5 891447164 +632 485 4 879457157 +704 156 3 891397819 +938 243 4 891356085 +877 326 4 882676190 +804 651 4 879445904 +774 380 2 888556968 +63 10 4 875748004 +659 514 5 891385044 +847 181 4 878775821 +907 483 4 880159937 +785 661 3 879438810 +815 835 3 878694269 +653 111 2 878854996 +592 931 1 882608960 +782 1598 2 891499556 +7 509 5 891352778 +586 72 2 884067378 +91 183 5 891438909 +616 316 4 891224840 +883 659 3 891694218 +772 264 4 876250551 +457 169 5 882396935 +796 152 3 892690101 +868 169 5 877106505 +888 191 5 879365004 +749 1244 3 878847101 +864 133 5 888887984 +710 327 3 882063407 +612 477 2 875324876 +615 83 4 879448399 +933 95 3 874853666 +829 705 4 891204271 +907 699 5 880159619 +823 50 5 878438435 +907 471 5 880159059 +327 217 3 887746328 +691 64 5 875543191 +903 11 2 891033335 +868 127 4 877103679 +611 690 3 891636098 +880 823 3 880167435 +825 124 3 881097389 +886 156 4 876031413 +898 1296 4 888294942 +701 269 5 891446488 +892 515 5 886608380 +495 419 1 888632070 +916 204 3 880844813 +880 693 5 880242191 +531 894 1 887049214 +649 252 4 891440624 +543 69 4 874863436 +867 28 5 880078887 +727 544 3 883709518 +932 193 3 891250142 +78 411 4 879634223 +735 301 3 876697610 +276 452 3 880913767 +840 525 5 891204535 +145 9 2 875270394 +875 358 3 876464800 +885 142 2 885716369 +76 851 4 879576570 +487 393 4 884042207 +468 204 5 875287826 +852 252 3 891036866 +898 343 3 888294805 +851 483 4 875806721 +648 526 3 884368232 +665 456 4 884291662 +436 1248 3 887770485 +881 199 5 876538824 +758 388 3 882055289 +823 655 5 878439364 +525 293 3 881086108 +360 15 3 880354436 +44 175 4 878347972 +855 509 3 879825613 +308 684 3 887737593 +198 470 3 884208571 +936 1011 4 886832757 +687 879 3 884651894 +659 528 4 891385012 +918 69 3 891987497 +643 176 5 891447157 +545 271 3 879898362 +425 228 4 878738334 +16 127 5 877719206 +437 152 4 880141129 +399 433 3 882344269 +346 658 3 874949011 +880 902 4 892958301 +825 831 3 880756796 +648 428 2 884881754 +267 710 4 878972493 +495 77 4 888634475 +682 280 3 888517740 +870 98 4 880584497 +649 257 5 891440496 +530 1136 4 891568851 +823 12 4 878437925 +771 169 5 880659426 +201 1208 4 884140927 +738 28 4 875350913 +776 185 4 892920290 +494 603 3 879541298 +643 11 4 891446720 +709 38 3 879848744 +275 174 4 875155257 +749 1133 2 878850084 +511 343 3 890004892 +543 218 3 874864034 +90 847 5 891383753 +748 657 4 879455221 +363 8 5 891497853 +805 98 5 881695196 +707 251 5 880059647 +82 1059 1 884714456 +686 806 5 879546319 +536 275 5 882318287 +939 285 5 880261184 +452 1204 4 875560150 +860 692 5 885990965 +880 17 3 880174808 +699 870 3 879147814 +535 495 3 879618849 +504 756 3 887910240 +835 505 3 891033857 +521 827 1 884476904 +911 647 4 892839140 +782 300 4 891497906 +885 167 3 885713807 +886 144 4 876032509 +405 704 2 885546577 +393 82 4 887746174 +13 671 3 882396790 +500 425 4 883874413 +905 471 4 884983952 +881 182 3 876538571 +786 504 4 882843352 +648 391 3 884883031 +13 358 3 881515521 +577 98 4 880474530 +823 66 4 878439391 +770 596 4 875972988 +278 302 3 891294959 +474 606 3 887924571 +710 181 3 882064160 +721 326 4 877136236 +92 40 3 875656164 +393 732 4 889555272 +894 165 4 882404329 +908 216 3 879723074 +903 1067 2 891031412 +714 276 2 892777242 +804 797 4 879445280 +786 98 5 882843190 +791 304 4 879448035 +846 700 2 883950605 +671 451 4 884037004 +653 367 3 878867228 +318 294 4 884469971 +894 20 5 881625708 +790 685 4 884461988 +838 93 3 887063937 +914 732 2 887123465 +538 289 1 877095667 +378 803 3 880334440 +886 940 2 876034255 +745 276 1 880123905 +788 1459 2 880871857 +887 100 2 881377854 +835 988 3 891032391 +561 488 4 885807290 +870 1074 2 879270213 +460 151 3 882912205 +630 866 3 885667148 +933 575 1 874938620 +141 866 5 884585071 +840 657 5 891205287 +790 365 4 885157465 +455 770 3 879111586 +933 474 5 874853734 +521 216 2 885253247 +682 797 2 888522613 +798 1435 2 875639836 +445 93 1 891199945 +49 174 1 888067691 +913 604 2 882201336 +868 726 2 877109926 +851 591 5 891961663 +887 128 5 881380218 +327 318 5 887820828 +806 675 3 882388381 +566 136 4 881649621 +881 274 3 876536850 +889 789 2 880179508 +825 237 4 880931932 +92 155 2 875654888 +786 88 4 882844010 +542 293 3 886532466 +880 763 3 880167247 +401 211 4 891033092 +862 544 5 879304196 +846 357 4 883947960 +543 59 4 875659256 +871 324 3 888192689 +694 204 4 875728639 +933 153 3 874853779 +870 421 2 879539965 +653 79 4 878854051 +669 183 3 891260577 +788 130 2 880869396 +848 427 5 887039136 +458 97 1 886397931 +44 173 5 878348725 +455 159 3 879111500 +776 509 5 891628773 +870 722 2 879270213 +406 1153 2 882480836 +42 755 4 881108425 +622 127 5 882590534 +786 385 4 882844294 +877 56 5 882678483 +476 210 4 883364218 +923 282 4 880387624 +806 484 4 882387373 +846 478 4 883947819 +634 1197 4 875729106 +796 405 5 892660954 +881 1 4 876535796 +851 1287 1 875731105 +790 949 4 885156825 +745 169 4 880123671 +758 88 4 881979942 +618 144 4 891309887 +707 10 5 880059687 +174 143 5 886515457 +417 25 2 879646413 +561 636 1 885809670 +815 143 5 878694665 +747 735 4 888639735 +21 672 3 874951727 +760 375 4 875669114 +567 152 4 882426673 +651 690 3 880126508 +224 570 4 888104522 +653 739 3 880152902 +394 82 4 880889553 +393 66 3 889554707 +782 1620 3 891499440 +825 325 5 882109250 +835 127 4 891032536 +429 607 3 882385785 +806 79 3 882387448 +843 101 3 879447424 +863 990 1 889289385 +899 403 3 884122844 +884 529 5 876859301 +699 1057 3 880696553 +510 326 4 887667751 +708 225 2 892719172 +751 537 4 889134006 +880 385 4 880167843 +872 1165 2 888479537 +907 402 5 880160037 +408 310 4 889679761 +1 29 1 878542869 +886 761 4 876033368 +653 142 2 880153378 +484 197 4 891195973 +542 695 2 886532788 +846 836 5 883950186 +846 944 2 883949547 +727 576 4 883713454 +709 665 3 879848272 +140 321 4 879013651 +848 174 5 887038104 +151 135 5 879524471 +894 887 4 880993374 +932 480 5 891250746 +881 238 1 876537679 +943 1228 3 888640275 +789 276 5 880332063 +790 202 3 885156904 +854 498 3 882813877 +940 200 3 885922016 +789 151 2 880332365 +615 153 4 879449130 +621 142 3 874965299 +766 180 4 891308927 +670 144 4 877975285 +913 151 4 881368824 +342 12 5 874984315 +893 771 3 874830424 +472 385 5 892790676 +642 1336 2 885606520 +21 9 5 874951188 +472 831 5 875979498 +130 819 3 874953825 +542 509 4 886532209 +697 305 5 882621431 +115 628 5 881169883 +789 129 5 880332063 +645 301 2 892052070 +896 1267 2 887160165 +938 866 5 891356991 +425 743 4 878739054 +551 210 4 892777787 +446 321 4 879786943 +181 1368 1 878962200 +943 475 5 875501889 +781 69 3 879634147 +777 180 5 875980306 +677 290 1 889399295 +880 300 3 880166451 +280 33 3 891700715 +619 333 2 885953574 +877 159 4 882678512 +841 326 4 889067216 +915 301 2 891030032 +929 521 5 879640184 +492 275 2 879969210 +805 241 2 881694923 +160 288 5 876771285 +606 637 3 880927750 +663 845 3 889492796 +909 382 5 891920327 +769 1 4 885423720 +929 187 5 879640290 +409 511 5 881107943 +605 523 5 879424345 +92 217 3 875657595 +796 231 3 893048622 +643 1028 3 891446404 +907 819 4 880159442 +435 53 3 884133447 +824 319 2 877020927 +503 86 5 880383098 +5 210 3 875636099 +326 514 3 879875612 +660 652 4 891200370 +890 132 5 882403045 +846 65 3 883949254 +939 411 4 880261917 +943 840 4 888693104 +620 173 5 889988121 +913 176 5 880759221 +904 275 5 879735461 +521 526 3 885254307 +659 483 4 891383889 +907 185 4 880159801 +759 50 4 881476824 +752 323 1 891208261 +343 252 4 876403491 +875 131 4 876465229 +807 843 2 892684615 +875 421 4 876465335 +840 82 3 891209183 +885 72 1 885713631 +773 408 5 888539232 +604 672 1 883668261 +454 71 3 888266754 +201 284 3 884140336 +854 466 3 882813761 +465 929 3 883530818 +429 98 4 882384494 +752 1176 2 891208170 +867 528 4 880078371 +370 170 4 879435369 +829 529 4 881698976 +921 210 4 884673633 +716 52 5 879795467 +938 1016 3 891356799 +391 378 3 877399171 +880 818 2 880175468 +267 77 3 878972650 +643 959 3 891449741 +893 11 4 874829753 +931 333 5 891037521 +885 213 3 885715221 +588 568 4 890024876 +235 1134 4 889655723 +619 231 4 885954185 +698 357 4 886366454 +379 345 3 892879380 +537 91 2 886031438 +927 542 2 879193676 +642 410 1 885605988 +636 15 5 891449237 +823 176 4 878438807 +661 96 4 876015607 +886 228 4 876031601 +870 202 3 879714181 +406 207 2 879446529 +776 174 5 891629157 +94 622 3 891722609 +859 1009 4 885775277 +868 498 3 877104913 +535 192 4 879617931 +896 587 3 887159603 +62 7 4 879372277 +524 657 4 884634995 +876 288 3 879428101 +568 191 4 877907126 +751 25 5 889132252 +669 649 4 891260754 +864 82 5 888887830 +92 25 3 875640072 +327 176 4 887744240 +897 633 5 879991007 +733 471 3 879535814 +397 357 5 885350381 +504 514 4 887838485 +748 402 2 879454476 +909 880 4 891919406 +428 892 4 885944044 +642 1185 4 885606024 +697 276 5 882622505 +792 742 3 877909709 +854 479 4 882813623 +336 716 2 877758001 +846 95 3 883947778 +686 191 5 879546954 +207 45 3 878104569 +663 281 3 889492759 +425 334 4 890346567 +707 310 4 882200872 +818 312 2 891870546 +609 285 5 886894879 +593 144 4 875660569 +429 507 5 882385210 +615 238 3 879449044 +865 100 4 880143232 +766 219 3 891310241 +788 11 2 880868513 +709 959 4 879846169 +936 1202 4 886832221 +847 235 1 878776020 +843 708 2 879448230 +425 269 4 890346376 +682 693 3 888517537 +406 1147 4 879446228 +592 892 1 882607690 +544 300 4 884795612 +295 1050 5 879517761 +919 312 2 885059658 +896 173 5 887158683 +721 809 1 877139384 +332 89 5 888098060 +42 282 4 881105677 +778 712 3 890803176 +234 127 4 892078386 +638 22 5 876694787 +860 257 3 891733877 +738 121 4 875353780 +557 865 3 881179268 +655 1153 3 887477336 +775 347 3 891032837 +642 975 2 886130929 +615 521 4 879448475 +897 294 3 879988800 +749 140 3 878847673 +897 203 4 879990813 +774 100 1 888558731 +588 95 4 890015722 +233 64 5 880612285 +890 444 4 882404610 +697 307 4 882621431 +94 127 5 885870175 +303 71 3 879468179 +13 841 1 882398076 +896 557 3 887160426 +896 145 1 887161413 +862 211 5 879305051 +887 1120 5 881378439 +846 806 3 883948343 +144 760 2 888104283 +579 50 5 880951984 +798 571 3 875914458 +868 778 2 877109375 +929 100 4 878402162 +561 435 3 888232990 +542 90 4 886533227 +456 33 4 881374086 +829 639 4 881699005 +897 708 2 879991226 +156 9 4 888185735 +239 186 1 889179253 +892 67 4 886610480 +639 1065 1 891239030 +922 421 4 891448473 +73 188 5 888625553 +938 678 3 891356282 +806 161 3 882388328 +758 1090 1 882055460 +598 22 5 886711521 +4 360 5 892002352 +886 1489 1 876034074 +896 320 3 887159530 +870 433 3 879901879 +25 125 5 885852817 +871 216 3 888193384 +648 294 3 884366184 +933 940 1 874938664 +879 50 4 887761865 +643 226 2 891449476 +687 268 5 884652088 +804 1615 4 879441195 +921 662 4 884673724 +881 490 4 876538763 +398 478 5 875657857 +504 1037 1 887912584 +776 182 3 891628773 +405 46 1 885546445 +6 111 2 883599478 +748 813 4 879454497 +472 554 5 875982771 +610 195 3 888703583 +938 117 3 891356350 +868 509 3 877106470 +875 42 4 876465336 +373 238 4 877098890 +894 340 4 879896756 +932 1030 2 891252338 +880 550 4 880167880 +435 755 2 884132266 +524 1073 5 884635287 +774 573 2 888557804 +763 4 5 878917877 +880 31 4 880243629 +731 603 5 886182631 +624 696 4 879793223 +648 474 4 884368002 +546 760 5 885140808 +721 1119 4 877147795 +875 327 4 876464873 +650 585 1 891387979 +587 305 4 892871068 +846 89 5 883948003 +901 172 5 877131205 +682 300 2 888518320 +918 166 4 891987238 +536 483 4 882359625 +642 118 3 885603566 +795 640 4 883251200 +630 120 4 885667678 +857 892 3 883432515 +932 56 4 891250584 +130 219 5 876252472 +573 519 4 885844567 +905 137 3 884984148 +934 516 3 891191334 +840 414 4 891204535 +276 143 5 874792870 +871 526 5 888193337 +417 94 3 879649177 +883 154 4 891754985 +758 68 3 881977265 +105 880 3 889214335 +695 289 2 888806150 +932 167 4 891251647 +882 357 4 879864917 +198 128 3 884209451 +741 357 5 891018507 +13 803 3 882398255 +934 154 3 891191401 +472 916 5 892790627 +213 1012 3 878870719 +226 474 3 883889063 +936 1079 1 886832714 +880 1225 2 880174834 +886 188 4 876031365 +768 1061 1 883835210 +871 242 3 888192858 +795 1041 3 883254780 +805 150 5 883766549 +60 519 4 883326370 +799 427 5 879254077 +757 732 3 888467829 +646 748 3 888529054 +393 864 3 887745230 +833 64 3 875039204 +399 11 4 882344199 +405 940 1 885547605 +627 941 3 879530866 +303 173 5 879466604 +918 485 3 891987689 +852 358 3 891036414 +940 657 4 885921471 +106 463 3 881453413 +916 236 4 880843482 +933 216 3 874938239 +699 20 4 879147239 +363 582 2 891496306 +606 404 4 880925200 +430 168 4 877226568 +214 11 5 892668153 +633 94 4 877211684 +925 561 3 884718100 +646 272 4 888528483 +749 780 1 878849682 +864 52 4 888888861 +573 836 3 885844605 +401 99 4 891033582 +904 274 5 879735551 +896 810 1 887160958 +807 168 4 892529893 +791 275 5 879448314 +917 268 4 882910409 +715 155 4 875964580 +864 717 3 878179608 +880 93 4 880174623 +876 878 2 879428253 +458 99 4 886397110 +399 511 3 882341848 +489 312 2 891366748 +896 206 3 887159368 +846 177 3 883947737 +843 154 3 879446281 +677 101 5 889399671 +843 671 3 879446889 +854 799 3 882814298 +692 410 5 876953824 +296 150 1 884196556 +872 476 4 888479737 +850 419 5 883195394 +616 301 3 891224748 +303 221 5 879466491 +881 573 3 876539260 +639 86 4 891239406 +727 1188 2 883712632 +308 411 4 887739987 +748 216 4 879454998 +748 655 3 879454879 +560 1134 3 879976478 +752 315 2 891207791 +637 1258 1 882905070 +916 88 4 880845157 +320 827 4 884749030 +563 172 5 880507339 +741 164 3 891455766 +99 174 5 885679705 +788 523 4 880868559 +550 249 4 883425388 +928 176 3 880936817 +870 177 4 875050827 +289 117 4 876789514 +887 1383 4 881379239 +784 750 5 891386988 +474 378 4 887927152 +922 91 4 891448833 +734 95 4 891025573 +782 295 2 891499321 +593 73 2 875671807 +897 243 4 879988868 +385 1506 4 879442606 +758 99 3 882052960 +798 1043 3 875915279 +788 117 4 880869014 +793 406 2 875104221 +262 219 3 879794206 +380 514 2 885478780 +232 425 4 888549790 +65 77 5 879217689 +790 85 3 885156825 +592 1264 4 882955460 +373 328 4 877098041 +120 515 5 889489772 +856 347 2 891489217 +864 73 5 888888994 +203 628 4 880434810 +792 25 2 877909892 +885 135 2 885714159 +758 405 4 881978635 +586 696 3 884065851 +928 876 5 880936023 +533 919 2 888239673 +733 950 4 879535643 +663 111 3 889492562 +659 345 4 891044849 +831 294 4 891354043 +835 205 3 891034084 +927 541 5 879199250 +551 200 4 892782936 +756 432 4 874829258 +482 286 3 887644023 +663 294 3 889491811 +913 343 1 881037310 +548 271 3 891043509 +795 998 3 883255182 +883 511 4 891717419 +373 125 4 877098821 +416 765 4 886319522 +342 716 2 875320014 +661 294 4 876036384 +881 561 4 876538465 +174 708 5 886514243 +666 744 3 880313661 +823 410 4 878438535 +488 651 5 891294014 +839 323 4 875751559 +804 495 3 879442792 +934 316 4 891188727 +843 637 2 879443297 +686 89 4 879545481 +911 176 4 892841255 +486 1143 3 879874726 +918 1266 4 891988586 +671 443 3 884034132 +495 739 4 888637042 +774 1118 3 888556047 +942 661 4 891283139 +875 8 3 876465072 +592 886 3 882607476 +868 68 2 877106505 +784 344 4 891387078 +889 869 3 880182428 +782 1664 4 891499699 +919 305 4 885059623 +919 16 4 875289533 +721 948 1 877137109 +913 64 5 881725876 +328 96 4 885046174 +655 327 3 888685734 +823 230 3 878439557 +828 316 5 891034440 +758 137 5 881975539 +298 275 3 884125672 +637 300 3 882900888 +704 222 3 891397058 +374 595 3 880393921 +678 127 5 879544782 +874 311 4 888632098 +21 987 3 874951616 +870 172 4 875680098 +752 589 4 891208491 +232 196 5 888549757 +130 258 4 874953526 +908 123 3 879722822 +815 1204 5 878696619 +291 928 2 874834389 +143 271 4 888407708 +668 475 4 881605210 +697 881 2 882621523 +677 475 4 889399265 +896 231 1 887160771 +883 781 3 891694340 +751 7 3 889132251 +201 125 2 884140709 +497 391 3 879362545 +852 472 3 891037605 +837 111 4 875722050 +846 70 4 883949156 +655 88 2 890887261 +486 459 2 879875040 +734 283 5 891023066 +806 143 5 882390296 +595 290 4 886921748 +471 71 3 889828154 +804 97 4 879442057 +825 222 5 880755468 +151 922 4 879542847 +743 748 4 881277656 +675 321 2 889488708 +870 608 4 875680098 +788 391 2 880871746 +535 318 4 879618502 +712 1220 5 874729996 +830 661 4 891462594 +920 333 4 884219993 +244 1428 4 880603411 +548 515 5 891044304 +870 651 3 879539936 +44 151 4 878341370 +932 663 4 891251506 +385 1065 3 879445153 +816 260 3 891711579 +920 307 3 884219993 +846 47 5 883948803 +782 1513 2 891499440 +758 750 2 883518021 +761 283 4 876190160 +624 762 4 879793330 +851 875 5 884205151 +338 479 5 879438250 +553 487 5 879948996 +846 233 5 883949547 +763 738 2 878922982 +942 879 4 891282539 +896 92 1 887160296 +833 679 3 875224482 +532 917 4 892520128 +884 127 4 876858877 +911 83 4 892839784 +933 384 1 874938475 +7 50 5 891351042 +576 204 4 886986445 +452 290 2 875562903 +424 688 2 880859228 +896 282 2 887158555 +661 204 5 876017801 +663 324 2 889492019 +378 443 4 880055336 +761 263 1 876189950 +883 896 5 891691465 +908 28 4 879723073 +296 246 4 884196584 +791 302 4 879447940 +655 712 3 887474050 +894 512 5 879897489 +591 237 3 891039974 +654 367 4 887864923 +716 31 3 879794996 +938 275 4 891356350 +867 7 5 880078604 +882 177 5 879867885 +933 228 4 874854217 +804 402 3 879445441 +852 117 4 891036707 +885 815 4 885715169 +904 796 3 879735710 +886 385 3 876033293 +880 393 3 880174926 +158 285 5 880132383 +666 646 3 880139180 +860 629 3 885991198 +834 284 4 890862468 +694 481 4 875727781 +85 172 4 882813285 +864 128 4 888886882 +503 963 5 880472061 +330 25 5 876544582 +749 202 5 878847461 +161 225 1 891172322 +642 110 2 885606048 +870 127 5 875050602 +390 690 3 879693677 +661 199 5 876016726 +804 949 3 879445254 +524 131 5 884636498 +872 1040 3 888479701 +751 1035 2 889298585 +757 235 3 888444935 +908 223 4 879722953 +892 763 2 886609726 +368 164 3 889783364 +885 423 4 885714136 +566 385 3 881650825 +854 544 3 882812852 +903 64 5 891033564 +882 183 4 879864789 +417 117 4 879646484 +456 772 4 881373228 +880 161 2 880167778 +503 303 5 879438024 +537 1154 1 886032000 +840 588 4 891205321 +932 639 5 891249171 +688 302 5 884153425 +606 79 3 880927127 +709 176 4 879848432 +526 845 5 885682590 +330 228 5 876547220 +932 482 5 891250211 +716 525 3 879794815 +864 116 4 888887045 +862 845 4 879303249 +896 180 5 887158660 +401 591 3 891032607 +896 7 4 887159145 +860 26 3 885991163 +932 70 4 891249171 +758 1292 1 880672876 +56 281 2 892683611 +901 391 5 877131205 +848 163 5 887048073 +238 255 3 883576644 +621 91 3 874965299 +151 966 4 879543457 +933 476 2 874854953 +845 340 1 885409719 +156 528 4 888185906 +416 727 5 893212730 +504 449 4 887839810 +793 7 3 875104031 +896 80 2 887160938 +322 655 5 887313946 +800 476 3 887646776 +724 1434 1 883757597 +880 356 4 880242475 +592 151 4 882608402 +459 271 4 879561731 +527 1149 4 879456637 +875 921 5 876465275 +933 569 1 874938850 +682 378 3 888517986 +916 183 4 880844395 +624 508 4 879793092 +821 473 3 874792813 +551 333 5 892775584 +782 1590 3 891500028 +77 98 4 884752901 +934 1018 4 891192849 +130 752 5 888211864 +567 1298 5 882425998 +872 121 4 888479206 +537 224 3 886030109 +769 685 3 885424305 +450 423 5 882371904 +862 568 3 879304799 +727 559 2 883712282 +159 322 5 880485443 +788 665 2 880867890 +932 560 2 891252198 +102 301 3 885697464 +391 427 5 877399512 +715 98 5 875963792 +217 405 3 889069878 +387 324 4 886481002 +722 845 5 891280842 +805 38 3 881695080 +854 14 4 882812225 +710 357 4 882063649 +798 1063 3 875303502 +642 147 4 885606986 +104 407 2 888465936 +933 866 2 874938620 +655 1631 4 888685734 +782 316 4 891498436 +633 71 3 875325804 +176 181 3 886047879 +587 302 3 892870956 +790 155 3 885157061 +271 963 5 885848518 +387 173 4 886480288 +943 172 4 888638940 +602 243 3 888638277 +883 66 3 891694636 +537 131 4 886031407 +553 213 5 879949290 +788 470 3 880868042 +389 196 3 880087516 +878 739 3 880869303 +893 298 4 874827623 +344 473 4 884900248 +941 222 2 875049038 +482 249 2 887644102 +753 304 4 891399686 +854 1281 2 882812314 +305 865 3 886323563 +878 321 2 880865300 +472 143 4 875980823 +234 258 2 891033627 +521 496 2 885253668 +698 22 1 886368545 +184 212 4 889909618 +833 346 5 884828744 +762 256 3 878719448 +919 988 3 875288362 +518 742 5 876823804 +919 412 2 875289061 +914 775 3 887124121 +942 71 5 891282840 +896 172 5 887158555 +923 460 4 880388426 +773 652 3 888538950 +890 429 4 882403045 +790 1028 3 884462692 +280 364 3 891702291 +886 153 3 876031279 +880 369 1 880175503 +399 465 3 882350005 +631 294 3 888465155 +804 159 4 879445441 +833 655 2 875131810 +498 238 4 881957195 +864 69 5 888889863 +846 12 5 883947777 +892 420 2 886610267 +747 134 5 888640180 +940 50 4 885921542 +489 328 4 891366748 +326 428 5 879877283 +795 410 2 880559227 +134 338 4 891732532 +892 1124 4 886608423 +459 932 4 879563334 +883 170 3 891693139 +878 393 3 880870487 +653 145 2 880153705 +843 632 2 879447146 +727 53 1 883712851 +664 1 4 878090087 +25 7 4 885853155 +892 436 3 886610201 +712 78 4 874957207 +869 100 5 884493279 +669 252 2 892549865 +840 499 4 891209241 +350 127 5 882345502 +452 288 2 876298593 +903 824 3 891031833 +236 717 3 890117409 +851 8 4 875731776 +474 1063 5 887927728 +883 302 5 891691410 +385 100 4 879440098 +5 448 2 875720692 +913 204 4 880946539 +874 182 4 888633311 +7 357 5 892135347 +622 117 4 882590291 +798 785 3 875639553 +639 990 1 891238689 +712 228 3 874730261 +116 124 3 876453733 +933 25 2 874854589 +497 156 5 879361872 +483 173 4 884047454 +825 566 5 881101543 +513 257 4 885062519 +374 241 5 880939035 +862 823 4 879303869 +753 69 4 891401851 +405 730 1 885545975 +789 100 5 880332089 +846 495 4 883948840 +11 239 4 891904617 +851 831 5 875731105 +682 922 3 888517816 +847 740 4 878938982 +489 300 5 891366571 +932 155 3 891251869 +918 958 3 891988491 +889 156 5 880178204 +271 174 5 885848314 +776 200 4 892920381 +916 756 3 880843892 +709 226 3 879848551 +452 285 3 888492147 +298 485 3 884124993 +544 346 4 884795135 +605 546 2 879429729 +472 581 4 875981551 +342 475 5 874984233 +764 418 4 876430033 +903 156 5 891466376 +918 1 3 891987059 +826 89 5 885690526 +851 326 3 891961717 +524 501 2 884636262 +823 514 5 878438024 +773 1036 3 888539907 +462 322 5 886365773 +889 731 2 880181191 +895 1014 3 879438082 +881 504 3 876537577 +846 365 2 883950434 +862 222 5 879304196 +927 29 5 879194033 +804 1101 3 879444805 +302 266 2 879436981 +892 473 3 886611023 +351 258 5 879481386 +851 223 4 875731567 +846 580 5 883949335 +877 738 4 882678137 +919 99 4 875373945 +175 111 4 877108015 +897 498 5 879990683 +290 62 2 880473583 +314 93 1 877886221 +772 1025 3 877533820 +719 162 4 879361003 +823 588 3 878438179 +42 136 4 881107329 +416 147 5 893212730 +347 411 5 881653132 +650 363 2 891382876 +661 179 4 876014125 +850 435 4 883194859 +230 64 5 880484416 +781 135 5 879634387 +749 1034 2 878850656 +201 1166 3 884113806 +405 1027 1 885548048 +450 781 4 882398220 +886 435 3 876031459 +622 418 3 882669905 +178 873 3 886678647 +506 205 5 874874760 +711 447 4 879994656 +880 461 4 880175666 +863 302 4 889288910 +896 616 3 887160653 +851 180 5 875731605 +943 53 3 888640067 +840 504 3 891208647 +294 455 3 877819490 +910 284 3 880821969 +943 541 4 888639954 +868 1206 3 877112033 +314 1291 1 877892519 +576 1 4 886985079 +866 315 4 891221206 +707 70 3 886287376 +880 53 4 880168411 +782 1190 2 891500230 +862 257 5 879303207 +887 195 4 881380438 +741 28 3 891018339 +328 471 3 885048004 +609 948 1 886895886 +453 403 4 877562293 +782 331 3 891497854 +767 432 5 891462829 +872 334 1 888479894 +936 16 4 886832596 +856 300 4 891489386 +796 1197 3 892660955 +925 447 4 884717963 +792 405 3 877909753 +805 425 5 881698745 +747 22 3 888640099 +547 321 4 891282732 +561 639 3 885809291 +715 22 4 875963792 +647 294 3 876532501 +738 4 4 875351486 +722 405 3 891280918 +861 321 1 881274504 +725 873 4 876103794 +387 153 4 886479649 +680 1 4 876816224 +805 588 2 881695527 +887 168 4 881380067 +880 298 4 880166827 +503 381 5 880383174 +906 300 3 879434378 +787 748 4 888979606 +719 468 3 879361023 +939 15 5 880261094 +882 546 2 879863031 +405 757 1 885549095 +833 860 2 875124604 +796 525 4 892761390 +437 401 5 880143505 +847 496 4 878940954 +385 693 4 879443315 +793 181 4 875103810 +747 96 5 888639397 +6 182 4 883268776 +486 279 4 879874939 +82 212 4 878769410 +618 88 4 891309440 +10 40 4 877892438 +741 131 4 891456776 +405 341 1 885549904 +374 406 3 880936233 +871 326 5 888192971 +665 924 4 884291165 +899 427 5 884121267 +459 477 1 879562995 +668 340 4 881523737 +22 209 4 878886518 +805 1065 5 881697792 +521 183 3 884477630 +790 1016 2 884461925 +354 10 5 891216692 +429 737 4 882387505 +654 1115 3 887863779 +807 432 5 892530498 +916 268 5 880843093 +497 172 5 879310705 +598 260 3 886711034 +870 558 4 879270313 +650 1050 3 891369620 +930 282 4 879534667 +911 432 3 892839551 +632 318 5 879456843 +608 134 3 880403810 +612 202 2 875325221 +806 127 5 882386323 +770 302 2 875971568 +669 235 2 892549865 +924 12 4 885458093 +195 135 5 875771440 +835 1045 4 891034023 +801 682 5 890332775 +114 522 5 881309662 +805 942 3 881698861 +682 756 2 888521942 +778 550 4 890670638 +663 546 3 889493118 +459 926 4 879563639 +642 384 5 886131546 +13 280 4 882399528 +916 249 3 880843579 +892 755 4 886610048 +900 654 2 877833924 +620 112 4 889988341 +870 496 5 882801371 +914 381 3 887122325 +867 273 3 880078991 +886 87 4 876032473 +198 942 4 884209569 +831 156 4 891354751 +502 754 2 883701927 +599 846 5 880952229 +694 180 4 875727672 +405 658 4 885545516 +727 553 2 883710186 +751 121 4 889135401 +846 794 5 883948495 +846 376 2 883950665 +661 496 5 876015530 +921 71 4 879380957 +880 771 3 880243848 +875 652 5 876465275 +807 403 4 892979116 +922 288 2 891445064 +659 387 4 891387227 +788 520 4 880868919 +650 504 3 891369889 +934 66 4 891193187 +671 583 3 884034132 +378 550 2 880332949 +450 521 4 882394180 +63 285 3 875747470 +328 51 3 885047417 +809 319 3 891036744 +886 216 5 876031695 +911 855 5 892839084 +424 259 2 880858979 +761 9 2 876190235 +755 299 2 882569732 +479 154 3 889126007 +94 631 5 891720950 +759 127 2 875227798 +798 72 3 875638883 +664 4 4 876526152 +536 1 5 882318394 +707 275 4 880059687 +548 252 3 891043977 +619 597 4 885953850 +943 233 5 888639327 +902 275 4 879465894 +339 250 5 891033830 +793 50 5 875103942 +346 58 3 875122112 +545 385 3 879899266 +892 135 5 886608643 +843 162 2 879447625 +642 1054 3 885606482 +682 77 3 888517562 +456 204 3 881374086 +642 796 4 885605909 +539 202 5 879788405 +710 271 3 882063367 +851 9 4 875730379 +615 190 3 879447968 +835 257 3 891032738 +18 381 4 880131474 +896 801 2 887161564 +896 117 2 887159173 +766 178 4 891308968 +659 836 4 891045943 +545 395 4 879901092 +273 268 5 891292905 +486 148 2 879874903 +632 7 3 879456955 +448 874 3 891889281 +798 1003 3 875639478 +887 65 5 881381679 +391 131 2 877399455 +62 275 4 879372325 +782 1143 2 891500194 +629 276 5 880116887 +187 204 2 879465370 +878 662 1 880871600 +593 1016 4 888872636 +617 1612 1 883788511 +805 196 2 881698778 +846 173 4 883947819 +833 223 4 875038888 +878 237 3 880868955 +910 1025 2 881420507 +115 83 3 881172183 +891 866 5 883489497 +458 52 4 886398187 +932 484 5 891249586 +308 257 4 887741526 +537 676 4 886029889 +892 96 4 886608977 +537 514 4 886030583 +792 1054 1 877910666 +934 234 2 891191875 +408 242 4 889679947 +885 82 4 885715907 +864 283 5 878179514 +279 482 4 875306613 +833 401 2 875135113 +879 304 4 887760912 +698 211 2 886367066 +927 255 4 879177027 +442 871 1 883389455 +782 887 4 891498676 +660 429 4 891199833 +344 117 3 884899767 +308 66 4 887740788 +407 1160 1 890687550 +883 1404 3 891694372 +889 955 3 880179536 +843 527 3 879448138 +933 1188 1 874938474 +64 693 3 889737654 +919 331 4 875920290 +140 988 3 879013719 +840 127 4 891203366 +524 56 4 884634849 +913 60 3 880946006 +394 795 2 881059103 +916 42 5 880844958 +478 235 2 889388357 +782 333 3 891497698 +936 246 4 886832282 +410 272 4 888627138 +276 23 5 874787467 +639 714 2 891239886 +167 641 4 892738341 +279 47 4 875296375 +840 520 5 891204089 +434 411 5 886724873 +617 218 2 883789464 +749 208 5 878848044 +714 748 5 892777877 +894 117 3 880416219 +862 180 5 879305097 +896 632 2 887159261 +907 96 5 881030348 +303 831 4 879544080 +878 640 1 880867751 +934 495 4 891195604 +104 471 3 888465290 +416 1483 4 893214333 +339 94 2 891036423 +407 443 3 876341493 +496 333 3 876063848 +592 1276 1 882609057 +378 69 3 880046069 +933 652 3 874854424 +621 890 1 883799608 +870 458 1 879377028 +795 132 3 883249522 +724 264 3 883758119 +938 50 5 891356314 +798 1035 4 875638717 +201 1103 3 884140487 +387 53 4 886481737 +763 133 3 878923609 +716 142 3 879797555 +488 509 2 891294365 +748 286 3 879454107 +470 291 2 879178777 +707 173 2 886286380 +293 696 2 888905229 +848 121 4 887043266 +805 9 3 881697667 +775 887 4 891032866 +847 191 4 878940652 +528 202 5 886101846 +786 4 4 882844294 +582 271 4 882960418 +502 323 4 883702447 +666 108 3 880313929 +868 69 2 877107416 +659 467 3 891384414 +768 620 2 880136410 +76 24 2 882607536 +455 372 4 879112055 +346 395 1 875264785 +649 815 3 891440274 +271 125 3 885848062 +846 218 4 883948089 +848 421 5 887043777 +632 182 3 879457641 +699 19 4 878882667 +868 161 2 877107056 +749 621 3 878848795 +660 181 4 891197998 +286 173 4 877531407 +324 268 4 880575045 +847 8 4 878941082 +223 278 4 891549901 +788 448 2 880869355 +926 313 3 888351622 +869 127 5 884493279 +391 96 3 877399171 +798 476 2 875637822 +781 878 1 879633752 +385 514 4 879443045 +776 318 4 891628632 +888 280 3 879365475 +143 690 2 888407622 +919 260 4 875288362 +566 1028 2 881651339 +840 971 4 891209449 +870 317 4 875050723 +437 129 1 880140433 +625 705 3 891262983 +554 7 3 876549087 +793 122 3 875104532 +779 117 4 875503280 +652 748 3 882566948 +429 746 3 882386096 +710 12 4 882063648 +878 535 1 880871600 +417 121 3 879646591 +625 597 2 891273801 +932 178 5 891249821 +748 633 4 879454428 +101 1028 3 877136449 +716 227 3 879797177 +860 269 2 891535991 +630 264 2 885666353 +506 489 4 874876651 +345 215 4 884993464 +62 117 4 879372563 +848 504 3 887038397 +776 588 4 892210723 +558 137 4 879435896 +815 427 5 887978255 +586 693 3 884066060 +648 514 2 884796822 +709 1188 4 879848695 +882 194 3 879879668 +882 147 4 879863106 +805 68 3 881694886 +907 1244 5 880159381 +636 106 4 891449328 +275 419 3 880314383 +851 472 3 875730312 +875 937 4 876464830 +843 230 3 879443763 +23 451 2 874787256 +705 363 2 883427530 +167 184 1 892738278 +70 993 3 884064688 +363 39 4 891495339 +709 98 4 879846648 +938 1283 3 891357190 +840 212 4 891209159 +101 472 3 877136711 +123 294 1 879809529 +749 67 1 878850588 +659 226 4 891387194 +574 887 4 891279214 +280 216 5 891701685 +494 498 4 879541246 +883 1226 3 891914483 +683 879 3 893283997 +747 231 3 888734113 +786 286 4 882841571 +557 270 3 881179166 +880 762 4 893028813 +643 96 5 891447747 +874 676 3 888632585 +633 581 3 877212085 +833 576 3 875224603 +755 310 4 882569604 +734 22 3 891025301 +561 1294 1 891710133 +406 95 4 879793081 +916 792 3 880844569 +696 178 4 886404542 +910 300 4 881420194 +615 28 4 879448759 +426 617 3 879441978 +840 645 3 891204714 +894 902 3 890409704 +222 380 4 878184545 +773 318 4 888540484 +116 690 3 877934548 +593 284 4 875659236 +918 88 2 891988276 +622 1419 2 882672120 +577 427 4 880474715 +805 111 3 881696671 +504 548 2 887909864 +883 1131 5 891695570 +660 47 2 891200456 +543 603 5 875665787 +903 293 4 891031226 +480 208 2 891208650 +916 60 4 880844058 +862 260 5 879302583 +509 245 2 883591109 +595 986 2 886921945 +847 141 3 878941144 +607 174 3 883879516 +479 234 5 879461318 +862 195 5 879304902 +378 569 3 880056736 +881 143 5 876539128 +538 176 4 877106918 +889 279 2 880177104 +190 826 3 891626040 +638 511 3 876695478 +497 144 4 879310792 +882 191 5 879867694 +886 710 4 876031601 +709 651 4 879846705 +1 18 4 887432020 +821 95 5 874793898 +871 359 3 888192743 +577 1336 1 880472018 +804 616 3 879442984 +875 479 4 876466687 +612 243 2 875324355 +14 276 4 879119390 +393 33 3 889554648 +903 324 4 891031697 +936 535 2 886833052 +709 833 4 879848792 +929 172 4 879640329 +927 471 4 879193906 +58 730 5 884305004 +534 824 4 877808260 +561 182 3 885807318 +887 1496 4 881380996 +676 993 5 892686294 +653 585 2 880153522 +854 1047 1 882812906 +529 324 2 882535563 +880 302 5 880166451 +896 195 4 887159578 +486 307 3 879874388 +881 763 3 879052317 +301 334 3 882075500 +694 172 5 875727399 +893 845 3 874828772 +254 228 4 886472609 +894 260 2 879896268 +699 95 3 878883173 +196 110 1 881252305 +882 143 4 879876806 +682 472 3 888522699 +642 385 5 885602571 +653 118 3 878854810 +447 202 3 878856078 +94 134 5 886008885 +721 268 4 877136831 +663 326 4 889491861 +798 243 4 875295566 +804 155 3 879445660 +703 121 5 875243049 +733 1375 3 879535559 +864 186 4 888887658 +916 150 4 880843318 +389 488 5 880087260 +838 718 5 887064051 +354 744 4 891216656 +817 300 3 874815542 +117 249 4 880125911 +707 160 5 886286193 +668 895 3 890349136 +774 96 2 888557276 +698 516 2 886367809 +826 665 5 885690819 +903 7 2 891031259 +669 79 2 891260474 +487 340 1 883440613 +696 285 4 886404617 +561 284 1 885809626 +940 98 4 885921421 +911 428 4 892839929 +361 226 3 879441352 +896 662 3 887160529 +782 301 3 891498139 +837 1049 1 875722298 +881 62 4 876538666 +578 268 2 890939697 +606 713 4 878142865 +878 781 1 880871600 +885 1221 3 885714362 +821 281 3 874793218 +777 9 5 875979380 +916 159 3 880845303 +870 87 5 889717575 +892 82 3 886609149 +883 900 5 891691654 +765 151 4 880346204 +930 176 3 879535663 +777 523 4 875980235 +863 362 1 889289122 +894 971 3 882404460 +847 117 2 878775570 +690 63 3 881177804 +472 264 3 875977870 +395 318 4 883764004 +805 100 5 881695196 +468 24 3 875280462 +828 331 4 891380166 +869 298 3 884491734 +922 810 4 891450866 +551 721 5 892784898 +881 419 5 876538691 +868 67 3 877109597 +334 38 2 891550141 +303 240 3 879468513 +806 302 4 882384513 +533 208 4 879191374 +291 576 4 874835198 +924 144 3 885458093 +899 518 4 884121379 +516 582 5 891290594 +138 147 4 879023779 +568 529 4 877907877 +901 402 4 877132632 +837 472 3 875722141 +416 420 3 886318155 +388 219 5 886441083 +897 140 3 879991403 +592 315 5 885280156 +924 433 5 885458168 +593 553 2 875672852 +843 214 3 879447453 +848 689 1 887037584 +932 109 2 891251891 +502 682 5 883701927 +867 222 4 880079094 +663 176 5 889493502 +887 845 4 881378087 +897 501 5 879991566 +648 1060 2 882212373 +683 626 3 893286550 +747 202 4 888733047 +587 1625 4 892871732 +494 245 3 879540720 +921 778 3 879380704 +911 479 5 892838787 +705 566 4 883428058 +903 121 3 891031487 +632 2 4 879459505 +751 237 2 889132301 +894 116 4 880416473 +735 275 4 876698643 +374 654 3 880396622 +1 59 5 876892817 +855 171 3 879825383 +826 426 2 885690379 +189 459 4 893264595 +588 732 4 890024325 +937 222 3 876769530 +889 1 3 880177104 +883 945 4 891754985 +664 496 5 878090381 +943 816 4 888640186 +193 159 4 889124191 +919 88 2 875373621 +378 588 5 880318415 +500 122 3 883876795 +639 323 1 891238876 +863 538 2 889289122 +774 1228 1 888557556 +532 834 4 874796151 +774 72 1 888556121 +811 895 5 886377311 +374 27 4 880396444 +879 117 4 887761865 +13 522 5 882140425 +839 235 4 875752433 +871 4 3 888193338 +159 358 1 893255969 +301 62 3 882078419 +38 1032 4 892432624 +880 27 3 880167965 +504 322 4 887831274 +525 7 3 881086051 +804 230 4 879442001 +394 90 3 880889528 +782 340 3 891497963 +694 385 4 875730082 +833 264 2 878077967 +896 496 4 887158029 +840 209 4 891204418 +503 116 5 879438559 +943 97 2 888639445 +715 85 3 875964300 +749 809 3 878848673 +690 77 3 881179906 +747 185 5 888640437 +592 463 4 882956321 +810 881 4 879895350 +897 684 2 879991524 +244 188 4 880605869 +892 641 5 886607845 +405 378 4 885546379 +701 312 3 891446730 +198 151 4 884206401 +889 1139 1 880182582 +804 737 3 879444781 +1 15 5 875071608 +838 174 4 887066078 +788 651 4 880868838 +541 90 4 883866093 +896 393 3 887159464 +889 739 3 880182517 +932 524 5 891249675 +57 1 5 883698581 +931 471 3 891036506 +354 1039 4 891217249 +919 300 4 875288164 +936 1009 4 886833231 +883 210 4 891723351 +870 132 4 882123548 +435 406 3 884134810 +393 248 4 887744202 +549 24 3 881672556 +875 462 4 876465188 +916 978 1 880843949 +570 321 1 881262795 +916 863 3 880846735 +823 25 3 878438642 +901 195 5 877131118 +393 1 3 887743611 +727 17 1 883711011 +774 1090 1 888558419 +788 566 4 880869908 +758 276 2 881976574 +856 312 2 891489450 +293 315 3 888904513 +886 101 4 876032103 +643 430 5 891447403 +537 651 3 886030862 +899 173 3 884121089 +493 317 3 884132267 +342 1016 1 874984596 +803 289 3 880055309 +450 498 3 882396351 +932 222 4 891251485 +835 606 5 891033200 +911 1039 4 892838357 +880 473 3 880167132 +435 139 2 884134134 +882 135 5 879876806 +660 1615 2 891198441 +747 32 5 888639890 +913 428 3 881367151 +864 736 5 888888025 +748 847 4 879454546 +620 95 4 889988005 +894 262 4 879896141 +401 185 4 891033523 +835 160 3 891034219 +268 450 1 875745536 +305 650 4 886323406 +723 164 4 880499019 +331 132 3 877196174 +932 163 4 891251246 +884 86 3 876859208 +917 282 4 882911480 +912 28 4 875966756 +609 147 1 886895016 +833 23 5 875123427 +825 274 4 889020826 +846 134 4 883947630 +371 496 4 877487052 +526 271 3 885682124 +682 774 4 888522894 +875 288 4 876464755 +548 9 1 891043008 +758 229 3 881978057 +536 416 4 882360929 +653 619 3 880152085 +373 216 4 877100232 +932 529 4 891251153 +707 936 4 880059836 +655 1044 3 887564483 +916 196 4 880844920 +833 32 5 875123255 +790 10 1 884461988 +907 225 5 880159442 +577 588 4 880474808 +900 478 2 877833923 +279 62 3 875310303 +300 1012 4 875650329 +882 181 5 879867430 +678 332 4 879544254 +862 7 5 879304196 +363 25 3 891496337 +854 469 5 882814571 +837 125 5 875722032 +921 172 4 884673823 +456 59 4 881372779 +514 237 4 875462611 +682 367 3 888521783 +894 676 3 880416315 +847 219 4 878940618 +280 946 4 891701027 +942 316 4 891282618 +892 15 4 886608237 +911 709 5 892839846 +895 117 3 879438082 +843 446 3 879443442 +750 338 3 879445961 +903 9 3 891031309 +843 528 3 879447030 +405 954 4 885547268 +897 176 5 879990492 +878 127 4 880867444 +835 378 4 891035309 +833 184 3 875039039 +159 845 1 880557130 +442 928 3 883391299 +601 228 5 876350400 +896 153 4 887158165 +881 7 4 876536164 +751 118 2 889298074 +550 682 4 883425783 +458 531 5 886395758 +660 423 3 891199942 +707 172 2 886286134 +545 139 3 884134959 +436 928 4 887770547 +160 302 5 878078074 +773 1555 4 888540618 +776 191 5 891628837 +798 172 4 875639656 +557 305 3 881179268 +747 473 3 888640305 +393 272 4 887742006 +838 124 4 887063696 +543 9 4 876382812 +871 79 5 888193275 +518 235 4 876823597 +894 472 3 880993730 +659 121 4 891331301 +817 924 3 874815947 +532 684 5 888635197 +514 68 4 875463551 +344 100 5 886382272 +806 504 4 882388658 +567 39 3 882426974 +886 433 2 876032165 +908 183 4 879722427 +748 204 3 879454662 +454 988 2 888015879 +738 271 3 892938330 +907 268 4 885860288 +704 286 5 891397015 +749 391 3 878849149 +844 161 3 877387857 +303 238 4 879467295 +893 290 3 874829161 +561 596 2 885809958 +854 19 3 882812826 +938 291 4 891356594 +387 95 2 886483620 +203 458 3 880434336 +868 191 3 877107143 +749 200 4 878848302 +788 4 3 880868401 +521 1 2 884475825 +496 151 3 876067445 +907 182 5 880159844 +854 13 3 882812755 +699 269 4 893140697 +328 300 5 885044640 +916 7 4 880843361 +551 300 4 892775687 +2 275 5 888550939 +276 365 3 874791339 +493 208 4 884131897 +684 216 3 878761717 +749 930 3 878849558 +932 434 5 891251015 +60 592 4 883327566 +846 569 3 883949728 +484 930 3 880270596 +63 322 2 875746986 +607 950 3 883879691 +297 724 3 875238883 +650 898 3 891368914 +521 403 4 885253758 +916 111 4 880843636 +417 818 2 886186925 +885 7 3 885715889 +655 59 4 887564613 +697 254 2 882621958 +719 410 1 883354126 +940 529 3 885921669 +180 735 4 877355337 +692 762 4 876953681 +923 823 4 880388383 +181 1215 1 878963304 +846 302 5 883946861 +907 928 5 880159198 +655 427 4 891585242 +660 209 4 891406212 +814 413 2 885411749 +550 258 5 883425409 +311 428 4 884366111 +916 642 3 880845227 +907 1220 5 880159642 +625 135 5 891999874 +633 96 4 875324997 +617 674 3 883789536 +935 286 5 884471835 +620 234 3 889987560 +749 233 5 878849286 +910 357 4 880821718 +298 402 3 884183063 +745 1 2 880122809 +708 628 3 892719246 +707 865 5 886286360 +790 233 3 885157230 +299 733 3 888855244 +622 69 4 882592041 +907 123 4 880159442 +787 294 3 888979606 +889 469 4 880180414 +746 405 2 885075476 +405 89 1 885547952 +643 210 4 891448318 +908 654 3 879722822 +892 566 4 886610318 +665 313 4 884618217 +887 496 4 881379685 +885 209 2 885713502 +882 96 4 879878140 +83 944 3 880308871 +807 930 5 893082778 +601 1116 4 876350944 +928 269 5 880935738 +870 589 4 880584534 +660 163 2 891199992 +655 479 4 888474107 +619 11 2 885954019 +940 213 4 885921597 +1 111 5 889751711 +782 307 4 891497854 +650 25 3 891385826 +1 52 4 875072205 +721 319 3 877137527 +521 265 3 885253247 +503 44 5 879454841 +655 333 2 887472879 +916 597 2 880843727 +624 405 4 879792671 +588 1078 4 890026999 +880 1620 3 880167288 +374 137 2 880393511 +915 305 2 891030070 +911 211 3 892839418 +916 385 3 880844834 +878 57 4 880867987 +916 155 2 880845808 +795 412 3 883254675 +256 100 4 882150313 +833 581 1 875223813 +92 1052 2 890251841 +834 628 5 890862648 +394 1484 4 881059619 +357 825 3 878952080 +313 778 2 891028904 +942 174 5 891283209 +618 416 4 891309720 +498 180 4 881955866 +654 282 3 887863513 +835 928 3 891032899 +332 64 5 888359944 +851 303 4 890804569 +671 38 5 884035992 +279 1437 3 892173418 +881 289 1 876535544 +919 295 3 875289170 +881 215 3 876538726 +873 358 2 891392698 +937 225 2 876769436 +917 879 2 882910604 +883 1118 4 891694276 +892 765 2 886610840 +620 627 5 889988037 +379 843 4 880962285 +561 526 3 885808796 +95 294 2 884266083 +825 407 3 889021180 +671 452 4 884035173 +556 523 5 882136205 +580 25 3 884125457 +846 419 5 883948949 +530 275 5 890627396 +767 481 5 891462614 +417 141 3 879648510 +880 383 3 880243147 +588 313 5 890014782 +864 145 4 888892230 +561 11 4 885807743 +907 744 5 880159015 +447 24 3 878854520 +859 381 4 885776352 +305 45 5 886323275 +870 31 4 875680070 +592 409 1 882609056 +474 729 4 887927152 +891 121 4 883490041 +219 433 5 889403133 +940 482 5 885921198 +816 243 4 891711554 +378 412 2 880334409 +779 275 4 875992583 +429 230 2 882385985 +886 568 3 876032973 +741 255 3 891458098 +642 1425 2 885606024 +835 685 4 891032627 +916 684 3 880844395 +843 89 5 879444670 +618 1221 2 891309636 +468 91 5 875301056 +622 190 4 882669762 +933 194 4 874854135 +864 333 5 890463283 +607 855 4 883880027 +938 235 1 891357137 +526 298 4 885682528 +882 101 3 879879807 +774 174 3 888557198 +864 66 3 888889784 +385 231 2 879449309 +898 271 3 888294567 +880 409 2 880243069 +144 690 3 888103573 +903 13 5 891031632 +851 112 1 875730629 +619 849 2 885954184 +880 1093 3 880167384 +748 172 4 879454810 +924 178 5 885457922 +676 255 5 892686348 +844 930 2 877382574 +885 25 4 885713017 +886 28 4 876031413 +847 196 3 878939839 +896 450 1 887161728 +805 65 3 881698861 +919 236 5 875288681 +943 282 5 875502230 +795 81 4 883250055 +890 523 4 882403299 +639 28 4 891239239 +690 203 4 881179631 +144 137 4 888104150 +315 79 4 879821349 +904 732 3 879735584 +150 291 4 878746764 +932 100 5 891249586 +690 158 4 881177835 +881 322 4 879051511 +795 62 4 883254564 +913 461 4 881725816 +200 239 3 884129602 +417 158 2 879649389 +537 463 3 886030738 +902 289 3 879463433 +588 821 4 890026339 +826 720 3 885690819 +22 526 4 878888026 +721 329 3 877137214 +627 56 2 879531248 +587 321 2 892871113 +456 94 3 881375482 +715 125 3 875962477 +548 405 4 891415643 +160 250 4 876768106 +773 343 1 888538175 +854 696 2 882812961 +42 735 4 881108548 +671 121 4 875389187 +537 890 1 886029526 +868 158 1 877111328 +462 328 5 886365773 +943 614 5 888639351 +614 121 4 879464398 +609 313 5 886894637 +291 405 4 874805984 +708 678 2 892719007 +846 380 3 883949380 +907 1167 5 880160106 +894 298 3 879896673 +908 194 3 879722932 +933 229 1 874939078 +726 1 4 890079166 +933 89 4 874853957 +301 721 3 882076494 +655 975 3 887426446 +590 298 2 879438911 +712 451 5 874956872 +940 301 3 884800988 +381 142 3 892697337 +844 549 3 877387280 +655 378 1 887430410 +642 1091 4 885606608 +450 140 3 882376585 +904 747 4 879735584 +694 506 4 875727270 +416 387 3 886319288 +506 135 5 874873157 +541 304 4 883864207 +125 67 5 892838865 +843 300 3 879442947 +916 153 3 880844087 +655 448 4 888474934 +552 1362 3 879222698 +157 244 5 886890406 +745 275 1 880123905 +69 222 3 882072956 +924 288 3 886065748 +246 433 5 884921488 +907 1157 5 885862211 +663 975 4 889492720 +276 33 4 874792018 +870 569 2 879714631 +670 521 4 877975344 +865 99 1 880235060 +795 564 1 883774317 +292 203 4 881105442 +833 664 3 875124225 +492 172 3 879969415 +924 114 3 886327724 +106 70 3 881452355 +537 806 3 886031074 +645 177 4 892053274 +567 197 5 882425901 +157 235 5 874813703 +145 96 5 882181728 +405 69 4 885545111 +884 949 2 876860604 +582 676 2 882961133 +659 357 4 891331959 +871 286 3 888193136 +891 476 5 883489605 +716 283 4 879793294 +893 125 3 874828864 +495 969 4 888632443 +534 300 4 877807486 +782 261 2 891498865 +916 948 2 880843838 +233 9 5 876021262 +758 328 1 880672321 +60 483 5 883326497 +116 270 3 879864042 +870 461 4 875680099 +825 16 3 889020779 +889 1065 4 880180817 +855 59 3 879825488 +798 746 4 875914066 +265 1016 3 875320462 +783 880 4 884326545 +247 100 3 893081395 +642 779 3 885843177 +756 97 3 874829484 +699 1010 3 878882563 +835 465 3 891033957 +907 1048 5 880159404 +868 732 3 877107416 +804 96 5 879441677 +882 393 4 879880132 +495 233 4 888633594 +452 76 4 875562410 +548 683 4 891042954 +305 961 3 886323440 +269 479 4 891448980 +588 463 4 890023879 +802 665 4 875985469 +382 1268 5 875947296 +801 355 3 890332929 +566 108 2 881651360 +843 239 3 879447670 +701 292 4 891446754 +349 696 3 879465934 +416 255 5 893214041 +913 191 5 881725737 +758 506 3 881975061 +883 512 5 891693058 +721 380 5 877138661 +269 697 4 891447931 +757 148 4 888444948 +478 232 2 889396180 +632 475 3 879457582 +625 50 5 891273543 +943 151 4 888692699 +896 493 5 887157978 +938 222 5 891356479 +385 197 4 879442360 +445 1067 1 891200390 +863 886 3 889289327 +589 336 1 883352535 +318 208 4 884495664 +24 1007 5 875322758 +158 290 4 880135160 +450 151 5 882376658 +868 631 4 877111453 +910 50 5 880822060 +854 180 4 882813537 +663 1161 3 889493069 +280 379 5 891702171 +503 283 5 879438258 +897 418 4 879991282 +721 125 3 877147080 +881 176 4 876537679 +886 184 4 876031309 +806 174 5 882387870 +848 141 4 887040159 +880 1041 4 880175128 +476 70 3 883364680 +864 367 5 888890316 +894 935 3 879896815 +872 282 5 888479253 +933 53 1 874855104 +814 288 4 885410789 +941 358 2 875048581 +313 357 5 891013773 +719 509 2 879360933 +49 477 2 888067727 +761 402 3 876189829 +871 342 4 888192475 +624 410 4 879793156 +695 887 3 888805797 +622 154 4 882669740 +709 288 5 879847945 +892 168 4 886607778 +855 512 4 879825382 +23 642 3 874785843 +747 63 3 888733510 +373 229 4 877104048 +870 657 5 875050748 +741 1041 4 891457424 +885 100 3 885712944 +453 90 3 877561942 +239 382 3 889180578 +916 286 4 880843062 +535 429 3 879618569 +913 228 5 881368310 +880 177 5 880167778 +189 568 4 893266205 +328 385 3 885046027 +507 754 5 889964121 +880 230 3 880167732 +763 1039 4 878923513 +760 255 3 875666375 +598 243 2 886711192 +216 189 3 880244972 +882 131 4 879876573 +664 522 3 876525998 +559 259 3 891035407 +932 174 4 891250017 +645 23 5 892054364 +734 282 4 891025974 +559 261 3 891035378 +770 100 5 875971949 +805 127 3 879971215 +334 218 3 891548317 +18 28 3 880129527 +747 94 4 888733537 +561 737 3 885810706 +934 209 1 891190695 +900 100 4 877832904 +897 181 3 879990622 +847 568 4 878941442 +697 260 3 882621651 +178 328 3 882823416 +881 255 3 876536332 +466 7 4 890284819 +878 154 3 880866369 +878 1149 4 880868820 +563 167 4 880506771 +189 170 4 893265380 +655 515 4 887425458 +374 546 5 880936389 +423 887 5 891394673 +268 239 3 875310491 +643 527 3 891448502 +582 508 4 882961082 +614 286 2 879464507 +393 392 4 889555225 +58 223 5 884305150 +922 77 4 891447833 +757 470 3 888467016 +932 517 5 891250643 +899 71 4 884121424 +864 157 4 888886984 +561 478 4 885807290 +698 945 2 886367100 +207 129 3 877751037 +916 218 3 880845303 +825 456 3 889021287 +927 168 4 879193383 +642 581 2 886569209 +702 380 4 885767774 +787 879 4 888979721 +391 435 5 877399100 +665 1028 4 884291133 +487 94 3 884050838 +886 56 4 876031365 +864 1248 3 888891628 +693 211 2 875484789 +635 877 3 878878901 +833 38 1 879818760 +904 682 4 879735158 +653 198 4 880151426 +537 195 3 886031407 +261 300 5 890454310 +910 12 4 880821718 +429 697 3 882385858 +615 286 4 879447500 +537 483 4 886030583 +796 294 3 892611979 +903 421 3 891380488 +782 1173 2 891500230 +573 237 4 885843527 +892 378 4 886610137 +32 181 4 883717628 +513 258 4 885062286 +832 288 3 888259984 +758 209 5 881975118 +18 56 5 880129454 +939 717 4 880261784 +607 100 4 883879316 +85 745 3 879829021 +896 720 1 887235026 +751 21 5 889298093 +842 749 4 891218060 +479 498 5 879461179 +902 144 5 879465894 +708 117 4 877325236 +932 636 3 891251063 +119 492 5 874781198 +223 819 3 891550404 +769 237 3 885423954 +451 887 1 879012858 +878 97 3 880869090 +906 405 3 879435551 +653 318 4 878854383 +343 583 4 876407202 +826 177 5 885690676 +727 163 4 883711550 +578 313 5 887229355 +514 98 5 875309473 +488 223 4 891294158 +711 167 2 879995146 +568 523 3 877907877 +409 499 3 881168631 +627 17 2 879531397 +593 88 4 875672874 +813 304 1 883752380 +902 191 5 879465583 +95 194 5 879197603 +672 301 4 879787500 +757 405 4 888444583 +894 50 4 880416008 +328 71 4 885048004 +489 307 4 891363191 +682 550 2 888522541 +269 108 5 891457067 +878 1041 1 880871600 +227 756 3 879035658 +126 310 2 887854652 +892 72 4 886609939 +620 50 4 889988121 +903 272 4 892493587 +666 651 5 880139149 +577 1035 3 880475130 +707 506 2 886286742 +846 67 4 883950252 +882 202 4 879876806 +893 235 3 874829035 +456 214 4 881374586 +638 4 4 876695108 +653 333 5 878853678 +840 187 3 891205222 +90 942 4 891385165 +930 286 3 879533975 +833 1187 5 875035850 +426 489 5 879441978 +486 293 3 879874545 +293 411 2 888905170 +378 399 3 880333598 +545 227 4 879899380 +198 96 4 884208326 +870 428 4 875050672 +899 66 4 884122087 +805 234 5 881695244 +59 969 3 888204802 +793 237 3 875103842 +790 22 5 885155540 +824 748 1 877021077 +110 739 4 886988937 +305 222 2 886323378 +864 226 3 888889601 +747 608 4 888640475 +802 264 4 875986155 +622 1411 4 882671664 +500 161 2 883877001 +468 5 3 875287686 +648 763 2 882212200 +592 512 5 882956803 +429 241 3 882385934 +746 229 2 885075399 +851 1095 3 875731105 +870 55 3 879713899 +786 211 4 882843500 +835 405 3 891032793 +878 59 3 880866054 +659 210 5 891383889 +907 686 4 880159778 +733 762 4 879535847 +773 189 5 888539232 +693 504 5 875483302 +854 42 4 882813990 +934 1311 1 891195713 +733 245 3 879544466 +846 161 4 883948534 +796 248 3 892660465 +595 100 4 886921112 +542 64 4 886533421 +846 211 2 883948089 +494 204 5 879541298 +345 318 5 884916354 +737 258 5 884315127 +276 1232 3 874791488 +923 1011 4 880388097 +486 294 2 879874187 +532 229 5 892859148 +663 64 5 889493502 +311 79 4 884364623 +533 64 5 882902988 +903 157 4 891033430 +330 143 5 876546470 +393 1197 3 887743611 +924 482 4 885457858 +887 180 4 881380177 +910 313 4 884229092 +537 56 5 886030652 +653 237 2 878855365 +798 140 4 876175467 +320 358 4 884748485 +916 31 3 880844789 +883 273 4 892557850 +503 83 5 880383098 +478 869 2 889396102 +592 198 5 882956241 +613 1157 2 891227204 +207 177 3 891759050 +200 1028 2 884128176 +844 82 3 877387857 +504 667 3 887911808 +395 1060 2 886481149 +924 275 4 889286721 +397 474 5 882839559 +436 1489 2 887770731 +843 392 2 879447377 +217 11 4 889069741 +786 275 4 882841772 +710 301 3 882063407 +834 286 4 890860566 +862 99 4 879305097 +925 217 2 884718100 +537 325 1 886029153 +475 539 3 891451693 +868 503 3 877106421 +612 476 3 875324947 +805 140 3 881705892 +862 930 5 879303843 +734 162 3 891025393 +841 315 4 889066780 +622 1230 1 882672922 +806 628 3 882385309 +526 125 2 885682657 +746 233 4 885075399 +870 246 3 881000751 +541 924 5 883865133 +887 432 5 881379988 +401 429 3 891032847 +804 412 2 879445955 +505 951 3 889334067 +896 77 4 887160270 +85 482 4 879454304 +618 265 4 891307289 +487 426 3 884025034 +10 12 5 877886911 +30 69 5 885941156 +881 28 5 876537612 +652 328 4 882567058 +648 740 4 882211301 +932 675 4 891249538 +424 304 4 880858861 +738 91 4 875351462 +733 244 2 879535886 +836 750 3 885753475 +637 328 4 882900888 +916 1074 3 880844985 +942 272 5 891282420 +773 212 2 888538980 +406 502 1 880131642 +861 462 4 881274698 +932 603 5 891249877 +30 319 4 875060217 +580 829 2 884126077 +276 284 4 874786605 +500 367 3 883875835 +747 1015 4 888640046 +562 88 5 879196680 +916 820 2 880843636 +899 740 5 884120077 +583 286 4 879384052 +348 369 3 886523758 +711 408 5 886030557 +222 333 5 877562819 +468 124 5 875280331 +723 988 1 880499254 +934 211 4 891194661 +854 826 2 882813453 +754 127 4 879451420 +87 396 1 879877280 +95 392 3 880571428 +663 282 3 889492759 +795 431 4 883253193 +878 216 4 880869135 +271 427 5 885848518 +131 536 5 883681723 +711 958 5 876278721 +918 430 1 891987205 +935 274 5 884472352 +896 101 3 887160070 +766 514 4 891308927 +393 143 5 889554930 +851 456 2 875730719 +805 162 2 881698069 +727 111 3 883709266 +840 644 4 891204592 +825 106 4 880756504 +790 259 2 884461023 +577 1147 4 880474394 +671 2 4 884035892 +757 568 4 888466490 +592 762 5 882608402 +486 473 3 879875188 +831 208 2 891354612 +663 685 4 889492917 +894 9 4 880416039 +442 986 1 883391377 +100 346 3 891375630 +766 503 3 891309329 +709 825 2 879848744 +268 363 1 875744228 +642 121 5 885842289 +698 132 4 886367066 +435 432 3 884132968 +913 423 3 881368310 +566 660 4 881650172 +671 7 5 875388719 +543 66 3 874866535 +776 1172 2 892051948 +700 56 3 884493899 +782 1665 2 891500194 +830 418 3 891561540 +682 143 3 888523115 +796 385 5 893048342 +864 403 5 888887944 +928 114 5 880936742 +4 301 5 892002353 +387 676 1 886480733 +1 88 4 878542791 +826 1110 4 885690900 +610 66 3 888704000 +830 732 5 891464415 +614 237 2 879464216 +942 662 4 891283517 +883 382 3 891693200 +406 674 4 879792897 +271 176 3 885848640 +552 619 3 879222632 +838 750 4 887060879 +709 118 5 879848824 +751 90 3 889298528 +698 640 2 886367849 +655 164 2 887430072 +352 210 3 884290328 +807 757 4 892528374 +901 50 4 877126576 +886 1421 2 876034174 +851 193 4 875731722 +928 173 4 880936863 +617 1187 3 883788900 +883 52 3 891693169 +109 250 2 880563471 +851 248 4 875730379 +363 28 4 891495339 +798 50 5 875295810 +634 147 2 875729749 +405 1069 1 885546154 +867 1 4 880078521 +896 328 1 887235731 +860 216 4 885990901 +747 274 4 888733348 +927 154 3 879184534 +868 154 3 877107539 +744 174 4 881171421 +477 275 5 875941763 +693 382 4 875482689 +751 213 5 889132808 +486 222 3 879874939 +830 87 4 891462594 +810 678 4 879895453 +195 242 4 879141989 +659 609 4 891385769 +835 285 4 891032792 +567 59 5 882425762 +618 24 2 891308515 +622 7 5 882590269 +182 15 4 885612967 +843 194 2 879445590 +919 1014 4 875289384 +881 588 3 876538027 +360 175 3 880355888 +766 65 4 891309810 +633 148 1 875326138 +840 81 4 891204948 +922 252 2 891455230 +119 655 5 874781628 +883 1171 5 891695570 +867 182 4 880078521 +398 185 5 875717638 +406 185 5 879792811 +897 141 4 879991403 +126 303 3 887854825 +862 188 5 879305312 +903 214 4 891033781 +455 1167 4 879111123 +796 1415 3 893219254 +682 144 3 888522418 +413 321 3 879969259 +119 93 4 874775262 +151 531 3 879524738 +921 392 4 884673868 +640 161 4 874778479 +709 155 2 879849185 +195 841 2 891841129 +109 28 3 880572721 +902 328 3 879463212 +879 1047 2 887761477 +881 620 2 879052198 +893 597 4 874829230 +586 763 4 884067105 +184 197 4 889908873 +70 1 4 884065277 +583 655 5 879384471 +878 98 4 880866848 +871 289 3 888192475 +318 423 5 884495561 +936 1016 3 886832966 +293 117 3 888904696 +624 126 4 879792395 +796 300 4 892611903 +911 506 3 892839518 +296 514 5 884199624 +894 1281 3 885428159 +583 100 5 879384404 +691 692 5 875543153 +892 826 2 886610523 +852 826 3 891037806 +604 567 5 883668352 +647 196 4 876537620 +394 176 5 881130008 +628 984 5 880776981 +733 276 5 879535299 +939 283 5 880261291 +839 106 2 875752317 +877 173 4 882677865 +696 899 3 886403673 +903 12 5 891033334 +372 264 4 876869330 +506 199 4 874874109 +870 699 3 879901671 +894 331 4 881625708 +889 188 5 880181317 +645 746 4 892054683 +823 866 2 878438179 +435 946 2 884132072 +608 509 1 880403855 +921 1317 2 879380981 +886 399 3 876034041 +807 229 4 892530752 +738 117 3 875350913 +918 165 4 891986998 +642 1037 2 885605866 +884 923 3 876859109 +902 204 3 879465952 +527 433 4 879456464 +883 414 3 891694431 +906 124 4 879435212 +916 748 2 880843249 +757 472 3 888445086 +921 763 3 879380258 +738 269 2 892938254 +923 307 4 880386897 +463 1007 3 877387935 +807 421 3 892529805 +757 252 3 888444827 +564 924 3 888730534 +815 179 2 878694228 +439 268 4 882892424 +870 631 2 882123130 +894 1150 4 882404137 +784 332 4 891387812 +825 1008 1 889020680 +486 328 2 879873973 +870 945 4 879714039 +618 233 3 891309471 +399 356 3 882344512 +644 276 4 889077344 +655 1090 3 887430855 +492 478 2 879969583 +853 334 3 879364744 +715 367 3 875964272 +567 523 3 882425966 +782 1243 3 891498558 +864 159 4 888891049 +694 484 4 875726707 +943 824 4 875502483 +879 292 4 887760823 +847 480 3 878940039 +757 825 3 888444865 +79 285 5 891271652 +655 1248 3 887473879 +316 223 4 880853849 +929 127 5 878402162 +342 153 4 874984261 +885 735 3 885714764 +631 323 2 888465216 +646 259 3 888528978 +798 755 3 875638627 +794 455 4 891034986 +788 742 3 880869508 +704 506 4 891397712 +414 433 5 884999394 +892 180 5 886609622 +887 491 2 881379566 +488 127 4 891294606 +319 350 3 889816233 +430 123 2 877225965 +773 732 3 888539492 +649 127 5 891440356 +797 327 2 879438992 +588 716 5 890028167 +41 156 4 890687304 +901 739 5 877132671 +807 720 4 893080801 +419 1 4 879435590 +785 496 4 879438810 +535 300 3 879617199 +932 191 4 891249620 +897 196 3 879991258 +852 121 4 891036901 +363 230 2 891497440 +795 21 3 880557953 +599 1048 2 880952357 +844 588 4 877388040 +281 300 4 881200643 +830 424 1 891560972 +845 896 3 885409374 +142 268 5 888639837 +927 768 4 879195972 +537 79 3 886032123 +505 95 4 889333313 +412 195 4 879717621 +936 815 3 886833571 +864 223 5 888887097 +916 678 2 880843249 +912 479 4 875966107 +373 231 3 877104976 +936 300 3 886831501 +655 197 3 887426864 +299 399 2 889503373 +881 393 4 876539091 +894 289 2 879896109 +885 953 3 885714531 +720 896 5 891262669 +342 42 3 875319659 +350 1039 4 882345975 +16 943 3 877719206 +612 100 4 875324790 +321 942 3 879440954 +655 447 4 888813372 +919 750 3 885059452 +807 398 3 893082268 +279 231 2 879573060 +940 629 3 885921800 +306 257 4 876504354 +882 196 4 879867263 +451 873 5 879012684 +636 272 5 891448155 +896 928 3 887161033 +724 906 1 883757468 +802 201 4 875985601 +629 732 5 880117430 +833 273 3 875035954 +92 169 5 875653121 +916 549 3 880845543 +332 50 5 887916675 +870 653 4 875050559 +896 482 3 887158359 +271 43 3 885849817 +504 155 3 887912634 +805 729 3 881699728 +774 181 3 888557236 +537 603 4 886030622 +712 1074 3 874957086 +758 715 4 881977057 +870 191 3 881001249 +638 187 2 876694704 +914 781 5 887123464 +894 113 4 882404484 +749 143 4 878847926 +927 121 5 879199250 +924 172 4 885458060 +894 678 3 879896268 +520 990 4 885168906 +655 1136 2 887427568 +722 328 5 891280272 +406 367 4 880131929 +757 82 4 888466490 +916 198 4 880844463 +223 28 4 891550684 +732 294 3 882590201 +882 290 4 879862217 +269 268 5 891446132 +871 651 2 888193337 +399 1042 3 882348283 +345 40 3 884993662 +621 118 3 880738353 +655 639 3 887473803 +339 229 3 891035584 +715 145 2 875963657 +593 496 5 875671198 +911 209 5 892839784 +864 591 4 878179608 +385 204 1 879441728 +766 606 3 891309011 +456 217 3 881374883 +455 581 3 879111763 +62 747 3 879375247 +697 271 4 882621460 +896 679 3 887160813 +733 281 2 879536567 +868 566 1 877111394 +693 185 5 875483301 +930 255 3 879534667 +733 250 1 879535502 +63 993 2 875747635 +277 1012 3 879543454 +796 79 5 892661988 +726 294 5 889828701 +823 735 4 878438754 +766 172 3 891309052 +940 382 3 885921953 +894 1194 5 879897235 +263 181 4 891299448 +864 318 5 888887071 +621 3 5 881444887 +724 294 4 883757726 +553 187 5 879948609 +453 652 3 877554443 +885 174 5 885715780 +634 866 3 875729668 +655 1549 2 891585574 +344 258 3 884814359 +701 19 5 891447164 +394 294 4 880886919 +38 162 5 892431727 +892 233 5 886610049 +697 252 1 882621940 +916 380 2 880845206 +913 346 3 883110406 +592 813 4 882607955 +943 100 5 875501725 +92 418 3 875653769 +680 517 4 876816162 +845 308 4 885409493 +592 735 5 882956158 +758 922 5 881980034 +618 95 3 891309319 +75 222 5 884050194 +924 318 5 885458060 +354 887 4 891180527 +934 533 3 891189640 +6 8 4 883600657 +881 105 3 876537285 +922 715 3 891452354 +887 465 5 881381307 +931 293 4 891036604 +650 203 3 891369924 +592 287 3 882608457 +773 11 2 888539963 +897 118 5 879993275 +899 229 2 884122254 +851 820 3 875730947 +524 58 4 884635031 +314 1225 3 877891575 +405 1429 1 885549903 +578 751 3 887229503 +749 941 5 878849877 +786 174 4 882844294 +136 257 3 882693234 +442 164 2 883390083 +575 603 5 878148012 +684 73 4 878762087 +897 496 5 879994113 +340 196 4 884990861 +936 346 4 886831445 +773 23 5 888540507 +929 284 2 878402162 +727 810 2 883712652 +903 664 4 891033755 +222 685 4 881061165 +897 281 4 879993553 +911 154 4 892839492 +442 441 3 883390083 +276 636 4 874792483 +773 720 1 888540218 +916 746 3 880844262 +903 346 3 891380391 +693 611 4 875484406 +862 250 5 879303158 +347 713 3 881652568 +682 346 2 888518320 +57 257 5 883698580 +940 204 4 885922015 +782 321 2 891498381 +218 657 5 881288265 +789 741 5 880332148 +495 208 5 888632134 +910 98 4 881421309 +664 183 3 876526462 +828 906 3 891034148 +301 755 4 882078308 +682 235 1 888521833 +936 898 1 886831535 +932 528 5 891249962 +788 29 3 880871240 +680 24 4 877075214 +625 97 4 891263057 +826 79 4 885690526 +397 529 4 885350326 +642 926 5 885605454 +932 357 5 891280138 +814 669 3 885411204 +727 144 4 883710395 +940 12 4 885921979 +803 259 2 880054971 +934 550 4 891193097 +545 188 2 879899233 +882 412 1 879863735 +908 494 3 879723046 +927 928 4 879183019 +921 678 5 879379447 +458 969 4 886395899 +620 420 3 889988005 +943 202 2 888639170 +123 1269 2 879872867 +698 385 4 886367366 +499 205 5 885599413 +336 393 3 877756618 +851 895 3 886534529 +889 128 5 880180897 +911 172 4 892838636 +523 1472 5 883701124 +294 293 4 877819897 +786 451 2 882844171 +716 419 5 879794775 +781 56 3 879633919 +749 66 3 878849433 +470 277 4 879178593 +848 512 5 887040025 +868 433 4 877103195 +447 952 4 878854315 +271 315 4 885847170 +894 109 1 880416219 +666 493 5 880139252 +906 9 4 879434846 +894 313 4 883518874 +782 1014 2 891499611 +678 14 3 879544815 +529 307 5 882534996 +592 237 4 882608061 +175 566 3 877108015 +907 1051 5 880159530 +831 1119 3 891354751 +566 143 3 881650502 +551 1051 4 892784593 +10 286 4 877886162 +605 930 2 879429706 +479 338 1 887064372 +416 470 4 878880154 +758 509 5 881975213 +926 321 3 888636202 +160 9 3 876767023 +773 568 1 888540091 +942 99 5 891282880 +626 270 2 878771355 +905 345 4 884983089 +658 201 3 875147873 +637 1284 1 882905070 +421 173 1 892241319 +922 1 5 891448551 +943 426 4 888640027 +748 213 3 879455454 +26 471 2 891371676 +592 985 4 882608698 +693 230 2 875483381 +316 323 1 880853152 +18 83 5 880129877 +10 179 5 877889004 +314 69 5 877888212 +908 591 4 879722996 +805 403 4 881694886 +806 265 4 882388328 +742 24 3 881335248 +790 121 3 884461657 +682 82 4 888522541 +883 805 4 891723323 +495 9 5 888632069 +471 627 1 889827881 +833 174 2 875038529 +892 215 4 886608743 +168 1028 2 884287846 +699 1643 3 879147169 +916 476 2 880843775 +393 367 3 889730187 +833 1149 4 875123677 +860 100 4 885991075 +788 510 5 880867933 +843 495 3 879447170 +186 77 5 879023694 +934 153 5 891225716 +389 579 1 881384611 +328 56 4 885045993 +911 142 4 892840950 +654 751 3 887863034 +896 147 2 887159464 +727 1206 2 883712315 +632 258 4 879459777 +911 216 4 892839929 +189 1154 3 893265380 +807 510 5 892529401 +7 607 3 891352831 +596 289 3 883539079 +537 381 3 886031678 +885 94 2 885713833 +495 1263 4 888636062 +617 1316 1 883788511 +781 50 5 879634362 +874 100 4 888632411 +828 170 3 891037231 +795 1095 3 883767108 +279 17 4 875306552 +913 11 4 881037106 +711 70 5 879993824 +808 875 4 883949915 +878 152 4 880870854 +921 151 3 879379994 +875 28 4 876465408 +799 127 4 879254026 +884 146 3 876858877 +773 32 4 888540467 +715 68 4 875963486 +823 156 5 878438403 +851 824 4 874767550 +616 292 4 891224448 +659 186 3 891385197 +247 181 4 893081396 +913 164 2 880826620 +815 472 1 878692826 +851 1059 3 875730533 +249 1167 4 879572284 +897 673 5 879990744 +627 148 3 879530463 +879 751 2 887760879 +441 100 3 891035441 +756 275 3 874827103 +642 220 4 887663380 +711 317 4 879993173 +684 732 4 878761717 +752 1527 1 891208077 +727 940 2 883713521 +561 1021 4 885807962 +455 385 3 879111907 +907 19 5 880158730 +854 1011 2 882813047 +717 240 2 884642868 +450 756 3 882398940 +532 1483 4 891909911 +653 840 4 878854737 +624 689 3 891961187 +882 66 4 879867980 +829 151 4 891990672 +860 1059 1 891536049 +156 77 2 888185906 +859 458 3 885775382 +632 210 5 879459738 +851 410 4 875730379 +624 255 3 879793435 +405 313 4 885544635 +880 209 3 880174623 +588 370 5 890031141 +851 845 3 874767408 +685 882 3 879451401 +862 61 5 879304244 +843 215 2 879447214 +426 671 4 879444170 +877 241 4 882678194 +896 1098 3 887159146 +874 125 3 888632585 +854 493 5 882813933 +790 1118 3 885156046 +488 288 2 891292682 +853 690 2 879364744 +661 652 2 888300680 +748 197 3 879454630 +503 475 2 879438319 +912 474 3 875965906 +705 526 3 883428028 +933 127 5 874853898 +889 411 2 880177541 +838 568 4 887067309 +847 578 3 878940805 +879 125 5 887761174 +436 273 4 887769233 +864 169 5 888887402 +829 1121 4 883149815 +416 223 5 893212572 +871 955 3 888193541 +193 333 1 889123039 +821 148 3 874792650 +805 739 1 881697013 +185 239 3 883524206 +373 735 5 877099137 +704 210 4 891397112 +862 640 3 879305351 +43 226 3 883956442 +875 269 4 876464694 +890 452 2 882404723 +746 176 5 885075243 +145 869 4 875272926 +606 472 4 880921408 +194 550 3 879524504 +142 338 2 888640199 +370 173 3 879434707 +854 83 4 882813691 +306 289 3 876503793 +881 200 2 876538185 +881 728 3 876539129 +664 174 5 878092802 +875 707 4 876464967 +605 526 5 879426371 +81 210 4 876534704 +606 527 4 880924790 +588 21 5 890015791 +661 566 4 876015688 +270 1007 5 876954036 +561 692 1 885810084 +708 819 3 877325349 +181 299 1 878961749 +713 272 4 888881939 +801 343 4 890332986 +798 584 3 876176071 +621 108 3 881445012 +851 23 4 875806721 +886 772 1 876031973 +863 272 5 889288910 +186 405 3 879023677 +747 192 5 888639014 +894 60 5 882404363 +936 24 4 886832904 +868 747 2 877109566 +768 255 4 888798611 +73 246 3 888792938 +701 127 4 891447139 +896 735 3 887159262 +868 1037 1 877113481 +766 198 4 891310210 +206 1233 1 888180018 +805 432 5 881695527 +120 118 2 889490979 +807 208 4 892528646 +669 483 3 892550196 +7 86 4 891350810 +432 313 4 889415763 +889 746 4 880179893 +916 399 3 880845135 +738 216 3 875352679 +795 919 4 880557617 +882 465 3 879876573 +728 286 3 879442532 +851 676 3 875729887 +452 77 3 875562997 +42 411 4 881106317 +862 135 5 879304762 +807 659 4 892977077 +555 1013 4 879962642 +776 89 5 891628708 +690 89 2 881179505 +847 13 3 878938897 +757 174 5 888445637 +805 946 2 881695591 +804 496 5 879441973 +936 324 5 886831576 +881 136 4 876538537 +763 26 4 878919055 +907 173 4 880160140 +933 232 1 874938354 +592 458 3 882608107 +715 1016 4 875962049 +630 472 3 885667391 +574 1022 2 891278916 +862 89 5 879304526 +368 441 3 889783617 +589 690 4 883352600 +877 202 4 882677936 +429 739 3 882387140 +379 707 5 880525926 +753 173 5 891401757 +854 421 3 882814028 +864 474 4 888889863 +624 879 3 879792171 +561 201 3 885807291 +396 974 4 884646152 +714 924 3 892777408 +637 619 2 882903914 +780 28 5 891363618 +940 209 4 885921800 +892 1118 3 886609939 +655 944 3 891585504 +779 125 4 875996809 +429 651 4 882384772 +145 11 5 875273120 +326 1126 2 879875243 +798 554 2 875638884 +259 546 3 883372151 +869 1163 2 884492238 +442 239 3 883388401 +796 36 1 893047967 +896 1249 2 887161518 +559 22 1 891034003 +629 56 5 880117430 +450 1112 3 882396352 +217 684 5 889069782 +622 231 4 882592735 +690 53 2 881180005 +632 1028 2 879459649 +23 449 2 874787083 +460 9 3 882912150 +591 710 3 891031603 +716 826 2 879794410 +934 162 3 891191546 +618 174 5 891307539 +859 763 4 885775699 +882 568 5 879865629 +943 399 1 888639886 +902 95 4 879465834 +927 132 2 879194268 +425 403 4 878738548 +708 981 3 892719304 +889 98 4 880177857 +378 577 2 880333995 +894 990 3 879896268 +784 690 4 891387249 +645 521 4 892054990 +887 127 3 881377854 +897 188 5 879991493 +788 748 3 880867855 +666 707 5 880314103 +92 239 4 875654125 +887 928 5 881378620 +715 182 5 875965035 +62 285 4 879372455 +758 210 4 882053302 +438 619 4 879868159 +921 128 1 879381287 +830 222 3 891561065 +763 692 2 878915958 +830 451 4 892503035 +861 45 5 881274698 +328 258 5 885044482 +788 658 3 880869862 +429 540 3 882386916 +851 435 4 875731225 +653 172 3 878854051 +854 471 2 882812928 +695 312 3 888806193 +257 1010 4 882050150 +640 301 2 886353820 +591 85 3 891031500 +758 350 4 885016523 +488 132 3 891294108 +938 928 5 891356656 +141 294 4 884584247 +776 510 5 891628708 +817 294 4 874815593 +889 493 3 880178313 +886 63 3 876033015 +301 183 3 882076291 +389 87 5 879991330 +854 357 4 882814235 +802 200 4 875985686 +437 202 5 881001715 +796 550 3 893048562 +8 358 2 879361732 +787 359 3 888979547 +363 789 4 891494962 +711 582 5 879993605 +145 926 3 875271094 +865 547 5 880143232 +813 750 4 883752264 +95 679 2 879196513 +38 1029 1 892434626 +330 117 5 876544654 +532 311 2 885415471 +178 174 5 882826719 +892 7 4 886608473 +315 202 3 879821037 +430 151 4 877225516 +797 298 3 879439362 +940 1167 4 885921198 +334 290 3 891544997 +437 215 3 880140325 +742 127 5 881335361 +707 482 3 886286032 +922 29 3 891450805 +497 449 2 879310966 +561 1115 3 885809146 +644 546 4 889076875 +833 578 1 875224603 +880 541 2 880167918 +650 208 5 891371090 +881 43 3 876539595 +903 106 2 891031883 +591 712 3 891040366 +642 4 3 885605768 +936 25 4 886833231 +147 286 5 885594040 +495 1207 5 888637300 +465 275 4 883530521 +874 313 3 888632098 +698 228 3 886367442 +916 180 5 880844753 +910 307 2 880821815 +165 202 4 879525855 +34 898 5 888602842 +938 121 5 891356895 +327 875 4 887743600 +497 388 4 879363253 +805 679 4 881694854 +848 23 2 887040025 +652 879 3 882566924 +455 79 4 879112377 +896 62 2 887161488 +38 1037 4 892434283 +374 196 1 880395426 +743 9 5 881278061 +881 96 3 876537718 +658 530 4 875147995 +650 191 4 891381546 +405 1101 3 885546287 +835 200 4 891033927 +312 181 4 891699426 +883 124 5 891717419 +786 126 4 882842019 +114 200 3 881260409 +747 7 4 888639176 +761 742 2 876190370 +18 962 4 880131631 +922 380 4 891454218 +623 258 4 891032358 +760 195 4 875668535 +908 50 4 879722397 +911 1060 4 892841033 +887 56 5 881381382 +784 299 3 891387155 +943 393 2 888639638 +469 238 4 879525237 +848 50 5 887038397 +917 237 5 882912385 +843 651 2 879447837 +877 692 4 882677898 +631 315 4 888464916 +871 333 2 888192202 +763 13 3 878919116 +927 82 2 879197269 +930 165 5 879535609 +919 117 4 875288934 +903 120 2 891032101 +328 518 2 885048198 +668 902 2 890349285 +880 1119 3 880242028 +932 443 4 891250059 +847 70 3 878940584 +555 252 5 879962551 +894 70 3 882404536 +22 174 5 878887765 +19 294 3 885412034 +397 14 3 885349348 +795 95 4 881529851 +897 521 5 879990877 +916 825 1 880843750 +181 1325 1 878962816 +537 845 2 886030078 +559 94 3 891035979 +887 385 4 881380502 +804 425 4 879442643 +59 727 2 888205265 +886 919 4 876031869 +864 404 4 888890316 +519 268 5 883248065 +812 333 5 877625294 +600 53 4 888452563 +559 202 1 891035674 +523 169 5 883701800 +665 471 3 884292009 +749 180 4 878848483 +899 89 4 884121647 +490 255 1 875428309 +712 141 3 874730320 +451 1038 1 879012889 +940 70 3 885921500 +699 206 3 878883173 +893 260 2 874828296 +823 1067 4 878438511 +930 64 4 879535641 +216 3 4 880233061 +222 1250 1 881060635 +881 576 3 876538824 +916 147 1 880843578 +405 709 1 885547314 +840 654 4 891204160 +417 238 4 879647768 +551 265 4 892776336 +561 207 3 885809245 +759 118 5 875227954 +545 542 2 880348933 +751 486 3 889133737 +916 652 4 880844291 +804 930 3 879444115 +925 98 4 884717862 +716 494 5 879795542 +722 823 3 891281570 +927 775 3 879197949 +885 50 3 885712252 +279 222 1 875295943 +472 100 5 875978534 +881 768 3 876539505 +551 672 1 892785056 +538 174 4 877106619 +806 553 3 882389831 +519 751 4 884545801 +790 427 4 885155172 +913 180 3 880758150 +472 216 4 875981230 +10 479 5 877891966 +752 260 3 891208261 +450 59 4 882371904 +592 685 2 882608662 +59 505 4 888204260 +796 1039 4 892662223 +843 385 3 879444801 +896 422 3 887159972 +511 678 2 890005076 +913 83 4 881725904 +447 132 4 878855963 +896 380 2 887159748 +482 294 4 887643365 +334 419 3 891546181 +738 82 5 892844079 +843 229 3 879443908 +551 1118 5 892784199 +62 276 5 879372182 +420 286 4 891356790 +650 601 3 891386964 +864 127 4 888887216 +424 258 2 880858792 +854 1028 2 882813421 +698 526 2 886366611 +181 1242 1 878962349 +561 629 3 885809119 +896 655 4 887159109 +903 427 5 891466376 +626 879 1 878771418 +847 482 2 878940584 +664 724 3 876525695 +655 1144 3 888475015 +636 25 5 891449237 +422 271 3 879743635 +821 389 5 874793469 +854 756 3 882813364 +886 405 3 876033434 +768 597 2 883835210 +436 592 3 887770379 +893 476 3 874828772 +562 550 4 879196445 +887 501 4 881380884 +796 209 3 893048115 +938 260 4 891355996 +202 179 1 879727294 +943 406 3 875502597 +828 748 2 891035438 +247 258 5 893097024 +588 692 4 890024051 +862 467 4 879305143 +417 66 3 879648026 +551 760 3 892784592 +537 715 4 886032029 +894 1 4 880416286 +542 744 2 886532676 +751 481 4 889133684 +773 1170 3 888539711 +94 1065 4 885872942 +881 417 2 876538131 +426 641 4 879441931 +274 1163 2 878946162 +804 162 2 879446037 +727 474 3 883710910 +796 1511 3 892660955 +707 847 5 880060066 +506 484 4 882100828 +931 355 2 891036148 +8 566 3 879362423 +44 432 5 878347569 +749 485 4 878848097 +870 100 4 889717102 +929 22 5 879640394 +26 515 4 891352940 +774 250 3 888559123 +460 13 3 882912371 +838 9 4 887063696 +755 538 4 882570023 +923 1012 5 880387624 +551 211 5 892778035 +597 825 5 875343583 +177 42 4 880130972 +645 92 3 892054444 +930 137 2 879535734 +929 56 4 880817844 +871 181 3 888193335 +782 1292 3 891499700 +862 98 5 879304865 +1 13 5 875071805 +809 333 3 891036903 +875 32 5 876465275 +373 190 5 877100161 +880 1134 5 880241609 +457 160 4 882395078 +916 237 3 880843419 +153 322 3 881370900 +904 762 2 879735617 +938 323 3 891356282 +622 198 4 882669612 +622 431 5 882670169 +501 276 4 883348138 +891 148 5 891639793 +932 385 2 891251331 +933 144 4 874854932 +870 124 4 879376994 +60 228 4 883327472 +747 47 5 888639939 +588 286 4 890014710 +561 176 4 885807345 +655 471 3 887611594 +878 497 2 880872395 +897 1033 4 879993713 +859 288 4 885776056 +881 132 3 876538726 +117 1059 3 881008632 +715 629 2 875963921 +910 9 4 880821079 +555 301 4 879962096 +698 498 4 886366515 +653 482 2 880150218 +450 69 4 882373532 +406 1079 2 880132048 +846 87 4 883948417 +176 345 5 886046979 +838 83 5 887065807 +942 79 5 891282903 +33 288 4 891964066 +840 181 3 891204056 +717 1011 4 884644419 +868 755 4 877112184 +456 1421 3 881374437 +177 238 3 880131143 +898 327 5 888294529 +860 517 4 885991076 +385 23 5 879441313 +870 574 1 879902181 +363 384 1 891498066 +645 56 3 892053241 +227 15 4 879035725 +923 628 4 880387428 +753 653 4 891401851 +932 427 4 891249709 +880 109 4 880167114 +533 28 4 879192315 +690 636 4 881179969 +780 174 5 891363783 +887 419 2 881379748 +16 33 2 877722001 +936 455 3 886833148 +425 258 2 878737511 +921 820 3 879380328 +625 165 3 891999926 +145 333 2 885557626 +318 167 4 884497611 +926 302 4 888351713 +912 653 3 875965906 +508 79 2 883767543 +389 209 4 880087048 +16 410 5 877718107 +925 816 3 884718156 +865 475 4 880143425 +617 302 4 883788511 +928 48 5 880936817 +933 840 3 874939230 +933 167 2 874938491 +881 420 3 876539549 +360 471 4 880355177 +862 498 4 879304445 +504 401 2 887911789 +622 226 4 882670367 +661 195 5 888300488 +933 94 1 874938475 +897 65 4 879992811 +918 664 4 891987914 +921 1028 4 879380142 +689 358 4 876674762 +843 168 3 879446255 +222 230 4 878182058 +903 763 5 891031450 +740 271 2 879522753 +158 294 1 880132193 +66 300 5 883601089 +907 1016 5 880158939 +825 409 3 889020852 +622 1228 1 882672922 +872 546 4 888479560 +343 1047 1 876403776 +405 738 1 885547447 +848 127 3 887038159 +643 187 4 891447127 +499 519 3 885599040 +937 295 4 876780336 +813 263 3 883752606 +815 403 4 878697532 +859 118 3 885775193 +178 269 4 882823324 +21 286 3 874950889 +254 200 3 886472504 +754 286 3 879450947 +851 1014 3 874767408 +690 642 3 881179937 +867 69 2 880078797 +816 264 4 891711495 +771 172 4 880659482 +636 760 5 891449263 +707 167 2 886288133 +796 778 4 893047021 +772 328 5 876250551 +627 23 4 879529986 +766 497 3 891309736 +847 89 2 878940332 +896 24 4 887159344 +777 135 3 875980391 +837 1009 5 875721765 +724 895 4 883757727 +90 135 5 891384570 +387 12 5 886484336 +774 214 3 888556517 +929 433 2 880817753 +496 1091 1 876068433 +145 1279 1 875270903 +401 88 4 891033319 +734 164 3 891025524 +919 879 3 875920627 +764 633 5 876244991 +313 79 5 891015114 +425 455 2 878738992 +234 1010 2 892335415 +790 183 4 885156193 +919 875 1 875288362 +537 340 4 886028604 +792 15 4 877909865 +710 286 4 882063223 +419 69 4 879435628 +621 82 5 874964267 +748 408 5 879454428 +499 1483 1 892501259 +916 144 3 880844016 +719 98 5 877310859 +12 69 5 879958902 +908 515 4 879722463 +545 451 3 879900366 +897 866 5 879993797 +810 342 5 890083580 +686 50 4 879545413 +894 290 2 880416285 +605 333 4 880554130 +13 336 2 882140848 +629 435 4 880116756 +796 685 4 892660466 +892 98 5 886607912 +636 235 4 891449371 +932 162 4 891250704 +896 420 4 887158739 +213 924 4 878870846 +749 298 4 879788916 +807 515 4 892528999 +466 679 3 890285159 +344 496 4 889814194 +942 705 4 891283095 +941 763 3 875048996 +805 258 3 879971215 +883 785 3 891694372 +752 332 4 891208170 +326 523 4 879875057 +880 1014 4 892959041 +846 215 5 883949156 +688 879 5 884153712 +880 1224 3 880242632 +878 136 4 880866241 +344 319 1 886381985 +870 198 4 875679860 +218 98 5 881288233 +643 956 4 891448586 +752 752 3 891208213 +171 326 2 891034801 +695 333 2 888805952 +883 173 4 891694182 +394 549 4 880888452 +455 172 4 879112054 +795 50 3 880557114 +892 568 4 886610451 +608 197 5 880405431 +848 197 5 887038021 +266 100 5 892257865 +749 821 3 878847328 +846 515 5 883948457 +388 200 5 886441083 +883 304 3 891691534 +600 568 4 888451908 +891 118 4 883490041 +500 846 3 883865566 +513 763 3 885062453 +599 1 4 880951657 +663 864 3 889492917 +436 425 4 887769335 +326 519 5 879875533 +470 327 3 879178274 +889 405 2 880177567 +456 793 3 881374883 +716 72 3 879796766 +72 106 4 880036185 +373 465 4 877104202 +44 190 5 878348000 +833 13 2 875036139 +800 121 4 887646423 +908 482 3 879722667 +711 161 4 879994495 +655 372 3 887428507 +394 627 5 880888972 +727 25 3 883708927 +863 336 2 889289327 +724 351 1 883758241 +934 498 3 891191511 +751 739 3 889133556 +561 25 2 885809426 +221 117 4 875244633 +899 357 4 884121342 +436 11 5 887769777 +928 172 5 880936769 +293 410 2 888905034 +612 25 3 875324915 +160 325 3 878078115 +804 646 4 879441936 +916 425 5 880844102 +267 12 5 878971659 +647 202 4 876534275 +771 694 3 880659894 +798 801 3 875915317 +932 1411 4 891251647 +872 1376 2 888479603 +374 925 3 880394301 +704 197 5 891397948 +864 49 3 888892091 +523 1036 4 883702552 +829 20 3 881707829 +509 181 4 883591826 +13 813 1 882139863 +766 968 4 891310241 +877 98 5 882678427 +727 679 5 883712315 +650 642 3 891370065 +342 514 5 874984341 +778 35 1 891234406 +293 238 4 888906464 +458 515 4 886396729 +943 2 5 888639953 +614 1142 3 879463965 +862 1009 4 879303622 +638 226 5 876695217 +764 7 4 876243159 +272 134 5 879455176 +918 529 3 891987290 +887 143 5 881379781 +95 462 4 879197022 +840 637 3 891205199 +881 520 5 876538986 +883 550 3 892557605 +894 960 5 882404572 +936 221 4 886832373 +887 115 5 881380218 +642 393 5 885605834 +880 556 3 880242451 +549 323 2 881671879 +152 660 5 880150075 +833 76 2 875124382 +201 508 4 884140458 +833 197 3 875123427 +666 69 3 880139149 +910 1 4 880822060 +730 151 4 880310371 +932 165 4 891248996 +826 651 4 885690526 +293 820 2 888905306 +868 82 2 877112001 +757 145 3 888467442 +591 110 2 891031676 +642 191 4 886131970 +823 143 4 878438024 +916 188 3 880844789 +682 1019 5 888519519 +782 245 4 891498139 +782 1254 3 891499829 +592 688 1 882607744 +661 180 5 876016545 +721 876 3 877137447 +323 156 5 878739720 +94 997 4 891723190 +923 129 5 880387474 +250 202 4 878090253 +454 602 2 888267521 +795 203 3 881530198 +816 271 4 891711378 +116 127 5 876454257 +492 699 3 879969210 +193 347 4 889122906 +782 1088 2 891499611 +776 657 3 891628977 +896 183 4 887235690 +840 89 5 891204418 +501 544 4 883348372 +825 866 4 880756376 +627 690 5 879529406 +905 879 3 884983627 +13 882 3 886952438 +807 50 5 892529076 +916 566 3 880845574 +527 318 3 879456104 +12 127 4 879959488 +708 289 4 892719062 +796 559 3 893218453 +398 483 5 875720673 +592 1142 5 882608145 +393 9 4 887744448 +788 135 3 880869014 +328 715 2 885046853 +627 89 5 879531158 +907 71 5 880159911 +894 93 4 880416219 +374 823 1 880936476 +886 117 2 876033624 +374 181 3 880392846 +826 210 5 885690526 +910 25 3 880822203 +508 186 3 883777109 +901 210 4 877130999 +927 374 4 879195783 +659 79 4 891384036 +898 272 4 888294375 +920 288 3 884219768 +766 530 4 891309703 +328 167 3 885048861 +591 603 5 891031116 +813 270 5 883752380 +915 752 3 891030120 +834 287 2 890862974 +833 298 5 875036383 +932 478 4 891249962 +936 410 3 886833099 +896 68 3 887160313 +892 129 3 886608897 +183 50 2 891467546 +938 1254 1 891357019 +911 443 4 892841220 +727 128 4 883712016 +939 9 5 880260745 +706 117 4 880997195 +884 462 4 876859237 +870 693 4 879713979 +892 419 3 886609520 +860 307 3 879801617 +854 249 3 882812928 +880 147 4 880167224 +930 1048 2 879535160 +896 402 4 887159173 +872 930 3 888479654 +890 162 4 882403007 +936 6 5 886832636 +707 507 5 886286819 +830 134 3 891464054 +670 1299 4 877974905 +864 559 4 888888680 +805 810 2 881695105 +878 702 1 880871600 +870 9 5 879376967 +896 274 2 887158865 +591 283 4 891039565 +506 12 5 874873247 +655 61 3 887564614 +482 258 2 887644023 +882 1116 4 879879868 +899 684 3 884122501 +782 1670 3 891497793 +722 696 4 891281570 +931 315 5 891037577 +658 919 2 875145841 +774 597 2 888558565 +244 193 4 880605638 +588 216 5 890024781 +786 484 4 882843398 +660 257 4 891197934 +788 736 3 880870299 +435 55 5 884131434 +943 194 5 888639192 +864 194 4 888886984 +881 25 3 876536198 +537 980 3 886030051 +881 515 4 876535967 +763 317 3 878919180 +706 24 3 880997172 +430 303 4 877225239 +489 879 5 891366652 +590 137 5 879438878 +806 226 3 882389908 +676 286 4 892685252 +889 294 3 880176686 +38 768 5 892433062 +587 988 2 892871641 +758 640 5 881975119 +387 568 2 886483099 +871 1430 3 888192744 +716 489 4 879795496 +661 471 4 876037167 +829 1 4 891990554 +922 51 4 891448451 +95 631 4 880573627 +650 258 3 891368960 +844 222 3 877381629 +719 402 4 879360933 +748 4 4 879454912 +249 844 5 879572795 +643 357 5 891446889 +680 151 5 877075164 +450 366 3 882396489 +711 306 5 879991049 +425 50 5 878738335 +781 172 5 879634362 +903 1142 5 891466376 +673 898 3 888787312 +940 516 4 885921401 +844 919 3 877381534 +425 27 3 878738695 +457 208 4 882396705 +864 678 4 887686545 +659 655 4 891383561 +883 955 5 891696689 +929 423 4 879640394 +839 864 3 875751958 +790 80 2 885157575 +539 163 4 879788572 +714 9 3 892775786 +405 1529 1 885549635 +759 24 3 875227904 +723 178 3 880498938 +827 938 3 892157282 +330 82 4 876546298 +92 597 2 886443328 +711 200 4 879993918 +940 302 4 884801316 +807 393 4 892528954 +497 926 2 879309759 +592 518 5 882956011 +804 642 3 879445556 +238 237 3 883576281 +733 297 3 879535559 +846 213 3 883948534 +924 427 4 885458010 +560 22 2 879975613 +705 377 4 883427857 +898 315 5 888294375 +659 1044 4 891386071 +428 310 4 885943651 +766 71 3 891309913 +429 936 4 882385934 +711 387 4 879994777 +907 313 5 885860093 +551 143 4 892777274 +330 468 5 876547608 +887 142 1 881381207 +889 433 4 880180612 +213 288 4 878870226 +933 210 3 874853734 +882 1052 2 879864125 +393 315 5 887741960 +422 323 3 875129668 +851 332 1 884205263 +429 177 4 882385065 +940 651 4 885921243 +731 494 3 886179161 +541 623 3 883874778 +496 206 4 876068615 +868 114 5 877103371 +806 231 3 882390614 +904 202 2 879735584 +940 269 4 884801316 +656 300 2 892318614 +796 8 5 892690059 +878 515 4 880865900 +622 725 3 882672177 +766 1050 3 891309668 +632 203 3 879457217 +567 83 4 882425791 +823 42 4 878438357 +865 1240 5 880235099 +892 184 4 886609726 +224 729 3 888104188 +273 896 4 891292873 +938 508 4 891356367 +446 300 3 879787149 +840 756 4 891203664 +716 168 5 879796942 +804 182 4 879444924 +781 134 5 879634256 +896 128 4 887159321 +479 647 5 879461039 +933 665 1 874938878 +902 326 3 879463310 +870 382 3 875680568 +798 734 3 875639061 +527 134 5 879456490 +885 99 4 885714858 +883 1005 5 891695570 +883 778 4 891694372 +782 256 2 891500150 +790 203 4 885155459 +815 121 2 878692344 +825 844 2 892949244 +840 501 4 891209159 +499 258 2 885598932 +904 603 4 879735843 +435 818 2 884133938 +929 205 4 879639969 +933 186 4 874938563 +871 82 3 888193336 +916 568 4 880845949 +592 282 4 882608572 +764 531 5 876244991 +863 286 5 889289191 +880 384 3 880175157 +655 111 2 887523664 +899 603 4 884121379 +878 584 4 880867803 +871 331 3 888192202 +567 489 5 882426673 +655 357 4 887426864 +870 196 3 879539965 +114 172 5 881259495 +883 204 4 891694182 +181 370 2 878963418 +852 264 3 891035999 +758 61 3 881976289 +601 387 3 876350583 +537 173 4 886030682 +713 690 1 888882179 +870 477 4 876319062 +883 12 4 891717356 +506 85 3 874873795 +940 100 3 885921471 +883 285 5 891723351 +256 21 4 882163677 +405 170 1 885549506 +737 160 4 884314881 +756 983 2 874830305 +678 300 4 879544295 +846 802 2 883949508 +884 1018 2 876860514 +749 546 3 878849857 +855 475 4 879825383 +633 654 3 875324654 +622 172 5 882669826 +554 77 4 876550778 +851 176 4 875731816 +125 763 3 892836574 +121 315 4 891389282 +886 693 4 876033897 +572 813 4 879449573 +505 82 4 889333274 +435 235 4 884132266 +923 713 5 880388173 +624 282 4 879793330 +405 1573 1 885549464 +709 540 3 879848744 +844 421 4 877387219 +472 208 5 875981317 +663 13 3 889492562 +346 226 3 886273914 +788 528 5 880868144 +450 1518 4 887138957 +27 1017 4 891542897 +790 475 3 884461657 +846 432 3 883948457 +897 402 5 879991069 +280 411 3 891701871 +919 250 3 875288749 +904 794 4 879735710 +417 1411 3 880952418 +25 177 3 885852488 +795 405 1 883774317 +851 689 3 883148867 +715 233 3 875964468 +892 487 5 886609295 +222 223 4 878181535 +753 187 3 891401851 +868 1188 1 877110060 +620 1091 4 889988069 +903 79 4 891033070 +665 931 3 884291810 +809 315 5 891036743 +758 419 4 881974639 +561 925 3 885810084 +862 559 4 879305312 +911 153 5 892839784 +533 44 4 879191594 +939 280 5 880261291 +868 317 5 877107961 +749 139 4 878850084 +627 276 2 879530173 +934 213 4 891190744 +663 1067 3 889492562 +766 132 4 891309522 +786 50 4 882844295 +548 98 5 891044410 +267 89 5 878971690 +788 172 3 880869687 +593 179 5 877728878 +479 15 3 879460140 +653 232 2 880152426 +453 67 4 888205882 +870 710 3 875680212 +933 56 5 874853688 +634 225 3 875729668 +864 81 3 888891836 +7 317 4 892133670 +881 229 4 876538726 +94 721 2 891721078 +927 278 1 879181133 +934 99 3 891194379 +897 40 3 879990361 +529 689 2 882535049 +707 504 1 886286246 +937 50 5 876769374 +887 50 5 881377758 +778 246 2 890769632 +854 175 4 882813797 +159 597 5 880989838 +308 1118 4 887740500 +773 251 3 888538573 +868 550 4 877112393 +254 135 5 886471880 +217 825 3 889070266 +484 161 4 891195444 +643 234 4 891447260 +629 200 4 880117333 +450 405 4 882474001 +494 127 5 879541080 +751 99 4 889134483 +738 197 4 875353869 +829 258 3 886993238 +663 948 4 889492258 +788 662 4 880871359 +276 469 4 874787441 +524 1184 3 884637173 +916 535 3 880843949 +398 662 2 875723172 +73 514 4 888626153 +854 168 4 882814435 +529 260 4 882535693 +429 562 2 882387575 +795 39 4 883253661 +445 879 2 891199331 +880 1217 3 880243712 +704 100 4 891397491 +882 99 5 879878486 +162 28 4 877636746 +430 298 3 877225547 +201 45 2 884111958 +906 286 5 879434335 +74 300 3 888333194 +862 678 4 879302614 +181 287 2 878963038 +889 83 4 880180817 +524 418 1 884637598 +63 294 2 875747047 +226 23 3 883889355 +144 183 4 888105140 +919 334 4 885059506 +917 248 4 882912385 +395 288 2 886481149 +825 25 4 880756904 +883 430 5 891694401 +880 1244 3 880167411 +342 1011 3 875318467 +430 297 4 877225599 +670 419 4 877974945 +833 645 3 875039416 +72 770 4 880037306 +756 222 2 874828967 +738 930 3 875351956 +343 735 5 876406576 +452 71 3 875273415 +782 1257 1 891500230 +392 875 3 891037851 +646 323 3 888529153 +655 603 4 887473605 +894 276 5 880416314 +663 984 3 889491690 +738 1 5 892844079 +709 65 2 879846868 +938 456 1 891357161 +901 1 5 877129870 +329 322 3 891655570 +815 837 5 878694983 +933 735 3 874853846 +617 854 1 883789464 +934 732 5 891194089 +405 466 1 885548633 +642 812 4 886455357 +504 739 3 887841201 +887 13 1 881378928 +932 77 2 891251869 +892 64 4 886608347 +778 405 3 890727091 +437 248 2 880141716 +804 504 3 879444444 +883 584 3 891693200 +721 204 5 877154765 +794 137 5 891035307 +796 245 3 892612031 +894 268 3 879896041 +429 300 3 882385168 +831 688 1 891354424 +553 527 3 879949290 +250 159 4 878092144 +851 310 5 891961663 +60 141 3 883327472 +586 56 5 884060112 +798 1503 3 876176071 +244 1012 2 880604670 +582 313 5 882960461 +833 448 3 875124495 +570 340 3 881262145 +788 230 3 880869754 +833 980 3 875035800 +320 51 5 884750992 +529 300 4 882535049 +911 451 2 892840253 +753 316 4 891399903 +892 1091 2 886611079 +505 648 4 889334614 +38 413 1 892434626 +650 639 3 891371116 +849 118 5 879695153 +703 926 4 875242885 +793 222 3 875103971 +178 223 4 882827433 +522 180 5 876960824 +571 181 4 883354940 +853 880 5 879364822 +936 235 3 886833099 +922 576 4 891450805 +796 216 5 892761543 +749 226 4 878848533 +846 778 4 883948804 +234 843 2 892334400 +864 164 4 888887216 +293 73 2 888906869 +314 568 5 877888391 +823 503 5 878439315 +846 497 5 883948685 +506 455 3 876070976 +867 191 5 880079117 +630 568 4 885668328 +537 499 3 886031634 +252 124 5 891457490 +921 400 4 879381158 +882 411 3 879863457 +297 659 4 881708055 +710 100 4 882063920 +267 959 3 878972524 +378 82 4 880045935 +877 52 4 882677507 +886 180 5 876031392 +486 281 3 879874629 +932 1116 4 891250943 +75 866 2 884050733 +577 22 5 880472153 +399 919 2 882510379 +880 401 3 880175077 +892 238 4 886608296 +660 523 3 891200534 +913 100 3 880824823 +85 663 5 879454437 +546 892 4 885141260 +620 588 5 889988036 +457 252 4 882395638 +932 447 3 891250944 +378 204 4 880056826 +918 72 1 891988491 +715 713 4 875962201 +629 326 3 880116103 +908 79 4 879722850 +244 56 5 880602440 +299 510 5 889501392 +416 926 2 886315298 +608 234 5 880404847 +805 645 5 881704193 +919 304 4 875920245 +665 237 3 884290635 +761 282 4 876190752 +588 151 4 890026263 +775 315 5 891032742 +314 1048 4 877886221 +690 127 4 881178213 +293 66 2 888906781 +746 174 5 885075243 +886 58 4 876032331 +443 948 1 883504844 +617 200 5 883789425 +234 768 2 892335990 +450 415 3 882398220 +537 953 3 886031473 +903 240 4 891031730 +787 691 4 888979123 +493 959 2 884131263 +234 699 3 892079538 +783 294 3 884326506 +666 50 3 880313447 +877 463 4 882677311 +675 223 1 889490151 +230 10 3 880485530 +524 493 4 884638025 +860 287 3 885991407 +666 100 4 880313310 +450 232 4 882398666 +719 294 2 877311109 +295 941 4 879518359 +648 286 1 882210926 +868 207 3 877107189 +416 1136 4 886318186 +416 624 3 886317237 +429 583 3 882386121 +758 43 3 881977747 +932 470 3 891251331 +748 79 4 879454998 +468 143 5 875288197 +448 288 1 891887161 +459 1014 1 879563506 +269 673 4 891448322 +717 1051 3 884642868 +816 678 4 891710837 +43 143 4 883955247 +872 294 3 888478882 +846 99 4 883948989 +693 228 2 875483947 +670 161 2 877975392 +328 481 3 885048500 +470 742 4 879178455 +916 58 5 880844291 +756 88 1 874829743 +863 348 2 889289456 +374 732 4 880395320 +661 298 3 886841348 +405 1090 1 885548670 +349 459 4 879465569 +535 135 3 879617978 +679 111 3 884487715 +877 155 2 882677997 +296 659 5 884198772 +551 33 5 892778297 +790 168 4 885155230 +843 197 2 879446638 +833 467 2 875038626 +939 680 2 880260636 +159 15 5 880485972 +833 230 1 875223923 +751 738 4 889299733 +896 51 2 887159951 +327 250 2 887745272 +303 1209 2 879544021 +594 276 3 874783470 +790 283 2 884461517 +246 175 4 884921362 +933 411 2 874938689 +643 172 5 891447093 +591 511 3 891031145 +201 33 4 884112487 +889 147 3 880176926 +592 591 4 882608402 +6 237 2 883599914 +425 684 2 878738385 +655 1448 3 887523224 +268 449 2 875744357 +41 514 4 890687042 +130 203 4 875801716 +435 10 5 884131950 +7 164 5 891351813 +757 1014 3 888444827 +880 731 4 880175023 +90 491 4 891384959 +536 95 5 882360361 +445 1378 2 891199635 +362 678 2 885019651 +695 302 4 888805836 +407 189 4 875042268 +889 124 4 880177050 +538 58 4 877109688 +621 62 4 874964496 +858 754 4 879459087 +664 525 4 876526580 +846 212 5 883948804 +479 200 5 889125775 +910 124 3 880821124 +825 1051 4 880755693 +591 4 4 891040366 +887 471 3 881377972 +747 1041 4 888733567 +330 627 5 876545479 +936 244 4 886833099 +286 183 4 877531864 +859 410 4 885776056 +422 234 4 879744015 +872 717 4 888479582 +679 751 5 884325826 +835 514 3 891033986 +941 298 5 875048887 +378 728 3 880332998 +14 524 5 879119497 +682 48 4 888517264 +748 300 4 879454172 +877 531 5 882677128 +635 742 3 878879190 +567 303 3 882426350 +727 147 3 883709402 +463 286 4 877387935 +382 252 2 875946262 +846 181 5 883947694 +846 271 5 883946611 +174 98 5 886452583 +429 11 4 882385464 +921 762 2 879380237 +664 317 3 878095280 +694 241 3 875727877 +892 760 3 886609330 +870 713 4 879376966 +815 659 5 878694952 +539 215 4 879788623 +940 709 5 885921451 +918 1639 5 891987571 +830 399 5 891561999 +435 79 4 884131016 +757 188 3 888466614 +586 551 2 884061189 +514 268 4 885180579 +727 366 3 883712397 +918 1195 4 891986664 +851 597 4 875730686 +897 290 4 879993457 +435 155 3 884133710 +267 181 5 878974783 +222 465 2 878183898 +296 462 4 884197330 +543 47 3 877547672 +807 484 4 892530966 +790 568 3 885157087 +919 148 3 875289417 +774 674 2 888557683 +799 331 4 879253795 +224 526 4 888082495 +92 108 2 886443416 +455 744 3 879109881 +721 237 3 877145312 +892 525 5 886607957 +588 50 5 890024427 +881 580 5 876538251 +666 129 4 880313270 +588 403 3 890027525 +201 737 2 884112077 +582 473 3 882962062 +919 82 5 875373945 +405 621 1 885548932 +885 188 3 885715946 +606 1011 3 880921408 +671 654 3 884034800 +916 117 2 880843509 +851 1051 2 875730279 +618 1163 2 891309266 +741 216 4 891457342 +878 485 3 880866103 +846 182 5 883948089 +705 117 5 883426944 +786 188 5 882843237 +890 663 4 882402949 +585 286 4 891281385 +657 508 4 884239057 +318 941 4 884497715 +885 393 3 885713680 +239 179 5 889180410 +745 302 4 880122475 +803 264 2 880055309 +615 14 5 879448016 +889 239 4 880180554 +880 96 4 880167695 +731 202 5 886186568 +397 591 4 885349562 +474 126 4 887915366 +884 638 4 876859301 +883 338 4 891695193 +849 207 5 879695680 +648 151 2 882212288 +472 603 5 875980376 +588 720 4 890027247 +767 648 4 891462917 +864 625 4 888890273 +939 591 5 880260994 +413 100 4 879969535 +885 111 4 885712996 +398 283 3 875652760 +270 118 3 876956038 +916 674 3 880845522 +886 265 4 876032553 +864 563 3 888892539 +784 260 4 891387704 +435 953 3 884132968 +886 15 3 876031869 +599 866 2 880952229 +886 659 4 876033731 +776 679 4 891628708 +200 465 4 884129112 +676 483 4 892686459 +682 1228 1 888522699 +897 121 5 879993376 +880 761 4 880167965 +43 731 4 875981190 +449 213 3 880410652 +643 82 3 891448095 +529 690 3 882535180 +896 1045 3 887159012 +935 282 4 884472539 +592 99 5 882955663 +768 274 3 880136201 +804 951 3 879444781 +289 109 3 876789628 +655 1311 3 887474473 +794 273 4 891036111 +697 263 1 882621714 +815 190 5 878693381 +889 919 5 880177050 +868 547 3 877112559 +795 1 4 883767204 +660 182 2 891200213 +503 185 5 879454753 +727 399 3 883712717 +380 1101 4 885479487 +345 210 4 884992174 +189 185 5 893265428 +892 62 4 886610011 +862 483 5 879304326 +497 42 4 878759777 +716 234 5 879795269 +828 288 3 891034237 +880 24 3 880167175 +831 271 2 891354225 +758 616 4 881976377 +796 43 4 893188486 +942 265 5 891282880 +659 1021 5 891331825 +932 600 2 891252412 +886 92 3 876031481 +833 47 5 875123299 +491 493 4 891185129 +115 100 5 881171982 +886 959 3 876032473 +634 845 3 875729148 +588 234 5 890024161 +121 11 2 891387992 +883 863 3 891693497 +80 887 4 887401236 +201 705 3 884113302 +795 10 4 880556527 +943 1044 3 888639903 +793 3 4 875104592 +545 684 4 879899380 +311 781 2 884366307 +889 258 4 880176550 +665 121 2 884290480 +933 166 3 874854062 +633 195 4 875324997 +347 260 1 881652250 +910 118 3 881420857 +416 330 3 885114446 +754 1197 3 879451841 +747 644 5 888639397 +13 778 3 886302694 +757 449 3 888466782 +535 504 3 879617574 +938 597 3 891356679 +634 245 3 875729217 +710 420 4 882064434 +393 586 3 889731040 +181 1341 1 878962169 +209 293 4 883417796 +617 671 4 883789425 +880 588 4 880241219 +741 178 5 891018435 +312 484 5 891698174 +843 1 3 879446186 +655 93 3 888474986 +118 234 5 875385386 +897 235 3 879993519 +532 98 5 893119438 +934 1411 4 891195437 +814 667 2 885411204 +294 255 3 889241958 +782 880 4 891498322 +763 1180 2 878915765 +488 134 2 891294707 +524 429 2 884635358 +707 462 4 886286133 +895 294 4 879437727 +145 249 4 875270832 +818 258 4 891870301 +901 423 4 877131685 +853 340 1 879364744 +758 433 5 881976820 +758 447 4 881977487 +180 181 2 877125956 +541 709 5 885595735 +654 223 4 887864497 +860 712 3 885991316 +880 248 4 892958863 +487 178 5 883445540 +830 49 5 892503093 +887 378 5 881381207 +46 262 5 883614766 +842 340 5 891218192 +918 168 3 891986999 +880 234 5 880241327 +540 147 3 882157612 +655 1388 3 887477336 +823 52 3 878439605 +239 1065 5 889181015 +815 1133 3 878697466 +648 527 4 884368643 +592 1166 3 882956668 +528 250 3 886812886 +864 232 4 888889327 +841 1294 5 889067507 +26 936 4 891352136 +796 64 4 892662400 +887 1013 4 881379295 +145 218 3 877343121 +901 151 3 877129870 +918 196 3 891987267 +727 1185 1 883711847 +758 293 3 880672727 +942 310 4 891282396 +601 195 3 876348611 +44 181 4 878341290 +567 56 4 882425630 +889 385 3 880180376 +326 131 2 879875457 +932 487 3 891250558 +734 821 2 891023086 +885 420 4 885714858 +743 340 3 881277551 +654 12 5 887864389 +868 429 2 877103834 +774 566 2 888557277 +532 840 4 892867296 +299 49 4 889502823 +534 282 5 877808174 +513 121 5 885062602 +788 62 3 880870179 +716 708 4 879797443 +940 258 5 884801316 +38 627 5 892431586 +827 332 3 882204460 +596 50 5 883539402 +682 721 4 888518937 +533 451 2 879439465 +894 875 3 880415952 +383 528 4 891193242 +682 180 3 888516979 +537 1011 3 886030416 +892 418 4 886610996 +265 273 5 875320714 +894 961 4 882404642 +225 478 5 879539767 +642 928 5 886131546 +938 288 5 891354203 +401 482 4 891033343 +805 191 4 881697713 +402 408 5 876266741 +815 133 5 878694613 +833 378 3 875124648 +514 87 5 875318163 +559 521 2 891033911 +774 743 1 888558623 +561 709 3 885808824 +324 508 5 880575618 +880 930 2 880167551 +916 125 3 880843750 +409 79 4 881108246 +790 258 3 884461387 +938 225 4 891357161 +693 566 2 875483473 +919 315 3 885059569 +776 603 4 891628599 +796 1032 3 893219451 +804 413 4 879443918 +506 196 4 874873745 +924 200 4 885458093 +880 81 4 880242094 +725 748 4 876103744 +375 1046 2 886622131 +836 900 2 885753475 +846 381 4 883950311 +934 163 4 891193331 +919 28 4 875373888 +899 179 2 884121267 +795 72 3 883252003 +653 1136 2 880152759 +579 523 3 880951740 +917 751 2 882910409 +888 111 4 879365072 +405 665 1 885548094 +870 690 2 886372265 +634 696 4 875729535 +180 655 5 877127159 +758 66 3 881977169 +757 931 2 888445150 +846 638 4 883947694 +537 591 3 886030051 +383 124 4 891192949 +747 517 5 888734012 +871 182 5 888192925 +243 77 3 879988587 +686 22 5 879545181 +922 258 4 891454681 +646 880 3 888529127 +48 193 2 879434751 +532 864 4 887041540 +653 620 3 880153740 +533 508 4 879192702 +608 514 5 880403320 +922 67 3 891452928 +855 510 4 879825578 +111 304 4 891679840 +719 300 2 888449132 +635 333 5 878878685 +894 536 5 879896756 +406 210 5 880131703 +546 665 2 885141411 +903 684 3 891033828 +865 473 3 880144194 +634 1162 1 877017951 +569 333 3 879793036 +64 496 5 889737567 +894 736 4 882404572 +151 173 5 879524130 +548 293 4 891043760 +307 269 4 879283333 +892 194 4 886608423 +280 318 5 891700607 +74 358 2 888333372 +780 4 3 891363969 +889 203 2 880181275 +728 323 3 879442685 +864 258 5 877214042 +862 196 5 879304799 +33 300 4 891964131 +878 923 3 880866687 +938 1061 4 891357085 +890 194 5 882402774 +747 174 5 888639138 +447 762 3 878855139 +642 432 2 885602369 +583 195 4 879384404 +669 195 2 891260542 +751 204 4 889133950 +95 648 3 888954170 +866 896 2 891221006 +851 818 2 875730279 +805 597 3 881695080 +847 419 3 878941027 +823 231 3 878439337 +236 521 3 890115996 +823 128 2 878438733 +478 204 4 889388658 +497 928 3 879361744 +608 340 4 880402982 +542 22 3 886532314 +894 1005 5 882404669 +901 636 2 877131147 +811 988 4 886377686 +678 277 3 879544882 +151 28 4 879524199 +677 740 1 889399265 +743 408 4 881277931 +532 1240 2 874793852 +916 168 4 880844369 +890 484 3 882915942 +758 96 5 881976985 +877 690 4 882676098 +799 321 4 879253720 +672 181 3 879788708 +639 949 3 891240868 +881 409 4 879052545 +766 375 2 891310907 +190 24 3 891033773 +936 3 4 886833148 +539 56 2 879788046 +766 609 3 891309767 +757 164 3 888445684 +296 696 4 884196805 +398 97 4 875721348 +932 205 5 891250211 +935 9 1 884472352 +747 653 5 888639939 +892 659 4 886608681 +181 544 1 878962919 +878 64 5 880866446 +903 154 4 891033781 +891 924 5 891639737 +391 98 4 877399133 +393 652 3 889729375 +121 458 1 891388847 +883 275 4 891692657 +921 1051 3 879380433 +194 199 4 879521329 +898 312 2 888294707 +64 347 3 889737062 +648 576 4 884882916 +776 444 2 892920423 +877 302 2 882676054 +807 998 3 893081656 +398 135 3 875657802 +471 1219 4 889828026 +824 259 4 877020927 +738 225 3 875351837 +429 796 3 882386601 +102 1 3 883748352 +407 219 4 876348318 +498 337 4 881954617 +343 1117 3 876403563 +774 530 5 888557197 +100 751 4 891374868 +819 177 4 884105025 +787 313 5 888979547 +828 475 4 891035724 +921 1287 1 879380401 +778 216 3 890726264 +880 1017 3 880175077 +683 354 3 893286347 +930 106 4 879535392 +13 515 2 881515193 +465 836 3 883531155 +769 1093 3 885423632 +746 720 3 885075399 +880 470 4 880242306 +466 241 5 890284857 +868 327 4 877103039 +882 199 5 879867508 +327 183 3 887744065 +864 235 5 888891794 +913 596 1 881367210 +796 486 5 892676072 +523 1121 5 883700969 +363 301 3 891493918 +770 268 5 875971568 +907 50 4 880158692 +543 796 3 877550790 +378 660 4 880056547 +872 290 2 888479537 +840 175 4 891205004 +100 271 3 891375260 +860 321 3 880829225 +745 9 4 880122809 +646 1313 3 888529180 +943 31 4 888639066 +903 87 4 891032981 +787 286 3 888979007 +89 173 5 879459859 +932 195 4 891250643 +697 9 4 882622505 +406 294 3 879445250 +916 971 4 880845476 +424 300 2 880859199 +504 168 5 887839164 +148 173 5 877017054 +13 9 3 882140205 +903 60 4 891033048 +523 531 5 883700792 +682 27 3 888518104 +642 208 5 886131547 +681 292 4 885409883 +911 374 1 892841118 +429 80 3 882386684 +936 121 4 886832544 +938 1152 3 891357106 +880 310 3 892958036 +650 257 3 891384844 +889 651 4 880177906 +916 569 2 880845606 +916 97 4 880844789 +275 679 3 880315080 +234 447 3 892336047 +919 294 3 875288304 +561 928 2 885810330 +916 1101 4 880844419 +94 226 2 891721238 +807 543 2 892528427 +684 83 5 878761676 +854 411 2 882813143 +669 111 4 892549583 +912 661 2 875965981 +919 271 4 885059476 +312 429 5 891698951 +927 11 5 879183303 +408 751 4 889679982 +848 153 5 887039271 +895 742 4 879438123 +883 13 4 891723351 +942 750 4 891282355 +922 204 3 891451100 +261 596 2 890456142 +872 284 3 888479369 +158 70 4 880135118 +901 1047 3 877131391 +618 483 5 891308199 +894 277 4 880416341 +921 194 3 879380704 +934 420 4 891191469 +899 181 3 884119877 +318 1030 2 884498787 +894 212 5 882404572 +843 143 2 879447757 +896 179 2 887159630 +141 1040 3 884585547 +746 68 4 885075337 +582 294 1 882960396 +833 517 2 875133633 +632 468 3 879457925 +693 654 3 875483381 +805 141 2 881705843 +941 408 5 875048886 +563 220 4 880506703 +774 97 2 888556600 +796 387 3 893047504 +313 559 3 891029877 +864 665 3 888892300 +881 542 1 876538763 +157 1016 5 886890341 +738 211 3 892958137 +901 451 4 877132604 +913 531 2 880946475 +835 485 5 891033525 +593 393 4 886194041 +99 329 4 886518562 +848 484 5 887043040 +913 474 5 881725737 +881 186 3 876538221 +456 109 3 881371660 +214 518 3 891544000 +663 1059 2 889492614 +933 50 4 874854383 +293 712 2 888907603 +894 125 3 885428261 +784 346 4 891387077 +917 696 5 882912385 +596 286 4 883538815 +882 820 3 879863969 +642 660 3 886132089 +894 19 4 879897100 +927 535 3 879181694 +836 523 5 885754150 +598 300 4 886710671 +831 750 4 891354225 +569 546 3 879794302 +506 692 4 874873529 +683 315 4 893285557 +754 340 2 879451010 +541 95 4 883874682 +905 301 4 884983556 +722 866 4 891281108 +894 198 4 882404460 +881 582 1 876538465 +738 109 4 875353678 +256 829 4 882153751 +409 83 3 881108971 +474 9 5 887916203 +782 890 1 891498865 +937 19 1 876769436 +629 699 3 880117460 +374 88 3 880395665 +933 578 1 874939230 +796 342 5 892611871 +883 10 5 892557605 +916 193 4 880844420 +840 615 5 891204356 +892 484 5 886607568 +742 284 3 881335492 +798 694 3 875303718 +763 515 4 878915628 +208 781 3 883108498 +455 258 5 878585250 +79 763 5 891271741 +932 148 2 891252140 +776 524 5 891628752 +655 137 4 892333972 +882 151 5 879862327 +880 1185 1 880174995 +378 1168 3 880333383 +932 189 5 891250449 +896 29 2 887160916 +175 98 5 877107390 +773 541 1 888540187 +843 170 1 879446863 +456 14 5 881371427 +933 184 1 874938850 +894 190 5 879897100 +514 222 4 875462611 +932 530 4 891249903 +756 66 4 874829705 +591 194 4 891031171 +918 855 5 891987497 +825 597 5 880756933 +774 1215 1 888558623 +892 70 4 886608802 +848 528 3 887037980 +918 153 1 891987291 +588 100 1 890015374 +576 7 5 886985003 +840 609 4 891204627 +938 148 3 891356500 +641 558 5 879370299 +840 855 4 891205093 +894 303 4 879896756 +615 666 2 879448270 +815 168 3 878693424 +640 175 5 874777735 +882 121 4 879861739 +303 259 3 879466116 +206 326 1 888179713 +907 25 5 880159113 +645 48 4 892053748 +859 1008 4 885776056 +297 1136 3 875240053 +865 744 4 880144024 +694 72 4 875729107 +894 978 3 880416176 +303 81 4 879466866 +267 1035 4 878973971 +916 79 3 880845249 +712 946 4 874730521 +625 197 5 891262724 +7 309 3 891350704 +938 7 4 891356679 +568 430 3 877907834 +643 58 4 891448062 +795 17 2 883252686 +343 715 5 876405943 +771 164 2 880660025 +820 286 4 887954853 +757 1 4 888443974 +882 258 3 879860936 +834 148 4 890862563 +788 399 3 880871128 +655 298 4 887425564 +932 134 4 891250169 +642 40 4 885605866 +727 1250 1 883713760 +892 69 5 886610048 +24 699 3 875323051 +848 134 5 887043265 +914 1259 1 887123886 +835 135 5 891033560 +747 129 5 888639138 +733 116 4 879535368 +334 1011 4 891544680 +677 908 4 885191403 +503 8 5 880472435 +930 523 2 879535574 +910 254 1 881421240 +913 419 5 881725737 +890 179 5 882403299 +22 998 1 878886571 +752 995 4 891208261 +777 692 5 875980670 +790 582 3 885156852 +846 521 3 883948141 +588 111 1 890028509 +790 275 4 884461774 +561 588 2 885809197 +146 342 1 891457978 +880 381 4 880174808 +716 385 1 879796011 +758 12 5 881975243 +933 627 2 874854874 +551 727 5 892783559 +716 631 5 879795867 +669 654 5 891260754 +500 82 4 883874290 +427 334 5 879701326 +838 69 4 887067609 +930 1 3 879534525 +458 1335 1 886395565 +872 682 3 888478822 +715 1188 2 875964843 +916 250 4 880843361 +710 173 3 882063685 +313 235 3 891029148 +847 1031 2 878941005 +290 64 4 880474034 +847 820 1 878939375 +929 135 5 880817818 +276 293 4 874786686 +795 68 3 883253137 +916 541 2 880845206 +933 38 2 874939185 +221 423 2 875245167 +880 127 5 880167066 +934 428 4 891195503 +371 204 5 880435210 +643 202 3 891447835 +459 275 4 879562859 +935 597 4 884472576 +660 298 2 891198441 +342 324 1 874984002 +881 495 5 876537752 +886 132 3 876032399 +422 7 3 875129882 +923 293 4 880387908 +834 300 3 890860334 +207 1170 2 875506807 +218 431 3 881288386 +708 1049 2 877326086 +94 690 4 891928703 +561 385 2 885810144 +655 889 3 888474285 +288 100 5 886629749 +834 181 5 890862526 +532 660 4 888634801 +497 1041 3 879310473 +683 914 2 893283104 +932 616 5 891251153 +883 385 1 891696999 +464 50 4 878354966 +916 161 3 880845658 +927 111 4 879177457 +916 387 4 880845328 +617 192 5 883788900 +708 676 3 892719172 +488 31 4 891294439 +435 169 5 884130995 +59 143 1 888204641 +290 357 3 880474107 +841 325 3 889067216 +181 1352 1 878962240 +663 319 1 889492229 +738 528 4 875352679 +112 315 5 891299783 +881 1228 3 876538986 +645 46 5 892054508 +935 300 4 884471955 +670 483 5 877975200 +26 282 4 891373086 +826 82 3 885690482 +936 1335 4 886833325 +435 627 3 884133194 +931 126 4 891036463 +805 169 4 881695527 +870 197 5 875050723 +149 333 1 883512591 +411 194 5 892845605 +887 305 5 881377532 +896 637 2 887160041 +664 134 5 878092758 +89 405 3 879441586 +592 558 5 882955948 +671 526 2 884035406 +560 275 4 879975718 +943 231 2 888640186 +216 833 2 880233233 +605 934 4 879425706 +930 116 5 879535392 +830 88 4 891464148 +911 465 5 892840807 +843 74 2 879448830 +880 1188 2 880167880 +865 685 3 880144071 +445 271 1 891199458 +804 448 3 879445841 +793 106 3 875104340 +727 98 4 883710152 +537 518 4 886031105 +910 174 5 880822060 +886 566 3 876033461 +276 1273 2 874795823 +642 1058 3 886132139 +838 255 4 887063937 +711 727 4 879993629 +865 108 1 880143680 +803 538 4 880054834 +836 324 4 885753595 +655 1118 3 887473605 +95 50 5 879197329 +561 651 3 885807574 +648 220 3 882212039 +846 63 3 883950220 +868 378 2 877108056 +841 258 5 889067076 +650 290 2 891387979 +889 3 4 880177664 +102 684 2 888802176 +482 313 5 887643146 +892 159 4 886609977 +843 196 2 879446806 +937 303 4 876762200 +655 279 3 888685989 +934 630 4 891192285 +846 82 2 883948089 +542 249 4 886532432 +102 1076 2 883748527 +805 357 5 881697713 +620 151 4 889988196 +862 546 4 879302944 +787 351 3 888979657 +639 14 5 891239813 +858 9 5 880932449 +779 294 5 875501334 +194 712 3 879555147 +796 655 3 893048115 +825 840 4 880757103 +727 252 2 883709438 +620 758 2 889987073 +378 51 3 880333195 +824 243 1 877021002 +885 365 3 885714431 +777 652 5 875980670 +45 24 3 881014550 +748 118 2 879455040 +798 181 5 875295772 +421 509 2 892241532 +683 127 4 893286501 +934 712 4 891196564 +771 173 4 880659894 +809 322 3 891037069 +817 9 3 874815836 +406 462 5 879445562 +751 655 3 889133377 +932 493 5 891249767 +894 30 4 882404250 +530 470 3 891568895 +916 257 3 880843401 +932 228 4 891251442 +796 195 5 892675424 +894 718 3 885428386 +239 528 5 889178562 +932 520 4 891249794 +41 50 5 890687066 +329 534 3 891656639 +642 172 5 885604299 +59 507 4 888204877 +709 295 3 879847731 +389 367 4 880086820 +436 427 3 887769105 +905 751 3 884983034 +887 455 5 881378620 +693 546 1 875483234 +940 183 3 885921422 +551 17 5 892784942 +911 173 5 892838677 +250 469 4 878091772 +605 187 5 879425432 +863 895 5 889289385 +460 245 3 882910657 +881 194 3 876538185 +155 322 2 879371261 +798 1446 4 875914898 +690 69 5 881179293 +650 520 4 891369759 +938 259 2 891356282 +724 323 2 883757874 +608 42 5 880406168 +894 270 3 879896141 +514 199 3 875463351 +648 742 5 882211175 +545 50 5 879898644 +905 1051 2 884984329 +577 294 4 880469903 +933 39 3 874854100 +296 1251 5 884196469 +617 17 1 883789507 +294 21 3 877819897 +653 1035 2 880153099 +655 196 3 888685556 +919 880 3 885059601 +642 1032 4 886569012 +22 731 3 878887116 +180 235 4 877127758 +864 393 3 888889129 +934 449 4 891194900 +784 302 5 891386988 +782 752 4 891497793 +757 118 3 888444920 +870 427 4 880584516 +429 528 4 882385034 +897 25 2 879993346 +533 627 2 879439593 +151 664 5 879524713 +846 463 5 883948222 +910 597 3 881421048 +833 819 1 875133458 +378 956 3 880332034 +435 585 3 884133447 +468 55 5 875287615 +930 14 4 879535392 +492 474 5 879969879 +90 516 5 891383987 +286 1133 4 877534137 +645 288 3 892051741 +13 218 1 882396869 +840 463 5 891205287 +804 928 4 879443736 +864 58 5 888887739 +276 949 3 874836725 +868 1240 5 877107284 +429 71 3 882385705 +806 70 2 882388628 +109 50 5 880563331 +932 212 4 891249109 +805 549 3 881696759 +734 705 4 891023131 +838 487 4 887067126 +268 840 2 875744357 +846 97 4 883949255 +619 293 3 885953804 +502 307 4 883701980 +898 328 2 888294567 +543 144 4 874863269 +814 447 3 885411030 +805 82 3 881694854 +807 1274 3 893083179 +659 559 1 891386641 +307 121 1 879114143 +524 60 5 884634938 +416 303 4 876696643 +299 354 4 888854746 +145 544 4 875271312 +933 164 2 874854461 +328 610 3 886036967 +330 384 2 876547813 +553 483 5 879948423 +455 736 3 879112460 +872 975 4 888479654 +267 265 5 878972903 +758 319 4 880672321 +504 100 5 887831486 +536 205 5 882360424 +555 13 5 879964092 +934 89 5 891191157 +618 214 2 891308176 +657 7 3 884239057 +896 952 4 887159012 +798 828 4 875637986 +91 79 5 891439018 +756 151 4 874830550 +934 170 4 891190744 +224 147 3 888103646 +367 217 5 876690021 +870 88 2 879270213 +562 148 5 879195442 +864 509 5 888887944 +883 496 2 891755066 +622 427 4 882592178 +903 273 3 891031203 +363 1013 3 891499875 +645 135 5 892054707 +479 205 3 879461015 +722 117 4 891281132 +774 518 1 888556746 +650 145 3 891387953 +918 381 5 891988123 +896 129 4 887159531 +862 979 5 879303409 +837 277 2 875722169 +144 212 5 888105993 +537 19 4 886030051 +393 769 4 889731593 +329 423 4 891656237 +578 300 4 887229386 +405 550 2 885547909 +894 124 5 881625708 +883 237 3 891717963 +325 172 4 891478851 +179 347 3 892151064 +655 559 2 887472965 +896 164 4 887159321 +478 433 3 889396330 +897 125 4 879993314 +916 367 3 880845451 +222 597 1 877564076 +271 735 4 885849140 +552 111 3 879222238 +577 216 4 880472124 +398 237 3 875653168 +880 151 4 880242848 +929 28 4 879640084 +26 1013 1 891383836 +452 480 5 875261261 +323 273 4 878739355 +896 43 3 887161171 +758 77 3 882054049 +751 597 2 889299290 +472 235 5 875978994 +933 834 1 874938878 +788 828 3 880869396 +889 165 3 880178131 +881 748 3 876535544 +880 63 3 880174926 +886 214 3 876032072 +591 954 3 891031403 +877 222 2 882678484 +880 636 3 880167918 +723 150 3 880499050 +524 647 3 884634911 +332 472 3 887938277 +887 409 4 881378971 +868 55 5 877106505 +286 402 3 877534216 +932 96 4 891250060 +926 272 5 888351623 +650 176 4 891369798 +847 603 3 878939876 +279 945 5 879647064 +738 100 2 875349968 +747 172 5 888639222 +393 819 3 889731592 +487 1220 4 884050879 +795 583 4 883250168 +817 288 4 874815593 +943 204 3 888639117 +655 1628 2 888729735 +870 579 2 879902161 +586 232 3 884058809 +830 510 4 891561673 +263 141 5 891299877 +648 364 5 884882528 +870 313 4 883405554 +540 762 4 882157545 +698 214 1 886367874 +722 148 3 891281710 +916 369 2 880843906 +653 393 2 880152426 +747 1246 1 888733415 +774 211 3 888555897 +774 62 2 888557520 +537 792 3 886030805 +804 167 3 879445956 +805 338 1 879970974 +883 265 3 891696864 +801 358 4 890333094 +645 194 4 892053644 +773 324 3 888538269 +472 95 3 875980209 +603 474 4 891956803 +808 264 5 883949986 +922 834 1 891455565 +871 1434 3 888192689 +942 328 3 891282503 +537 978 2 886029841 +870 692 2 879270213 +943 132 3 888639093 +162 294 3 877634955 +85 162 2 879454235 +543 562 2 877547004 +601 406 2 876350998 +539 301 5 879787770 +828 462 3 891036630 +919 423 5 875374032 +490 289 1 875427021 +484 89 4 891195298 +430 64 4 877226130 +543 432 4 874862967 +727 1615 1 883709884 +577 941 4 880475435 +582 988 1 882960718 +846 737 4 883949771 +307 708 4 879283322 +918 82 3 891988521 +618 186 4 891307224 +919 287 4 875289611 +943 56 5 888639269 +705 423 2 883427904 +407 152 4 875043826 +886 64 5 876031573 +838 121 2 887064248 +919 527 4 875373416 +405 174 5 885544739 +279 242 3 877756647 +932 510 4 891249146 +784 268 3 891387501 +918 630 3 891988672 +617 164 1 883789664 +532 143 4 874788755 +916 462 4 880844058 +807 318 5 892528062 +935 546 4 884472743 +870 268 3 881000751 +629 881 3 880116023 +715 50 5 875961998 +234 1003 2 892334267 +747 169 5 888640305 +554 276 3 876548886 +860 332 2 880829226 +884 921 5 876859277 +840 11 3 891204921 +189 297 3 893264023 +454 732 4 888267560 +848 176 4 887037980 +804 250 4 879441000 +307 831 1 879114143 +704 382 4 891397571 +889 514 1 880178158 +807 449 5 893082893 +831 508 3 891354947 +823 127 5 878438357 +741 172 5 891018339 +481 144 4 885828732 +320 597 3 884748774 +318 451 4 884497546 +533 70 4 879191938 +771 128 2 880659482 +881 596 3 876536241 +883 396 2 891695743 +815 204 4 878693871 +896 654 3 887159895 +747 17 4 888733387 +650 614 3 891385876 +102 316 3 889362833 +870 1221 3 881001249 +592 789 4 882956419 +850 318 5 883194737 +848 647 5 887039329 +582 117 3 882961000 +883 530 3 891696823 +880 1049 3 892959087 +867 257 4 880078090 +772 294 4 877533625 +894 347 4 885427952 +758 386 3 881978259 +907 79 5 880160008 +13 870 3 882397271 +841 751 3 889066880 +645 39 3 892054324 +583 602 4 879384471 +568 482 4 877907781 +854 197 4 882813797 +862 633 5 879304722 +896 1028 2 887160554 +293 432 5 888906516 +505 755 3 889334248 +617 441 3 883789590 +704 494 5 891397948 +883 989 5 891692168 +936 717 2 886833325 +807 95 4 892529185 +303 116 5 879466771 +910 210 4 881421309 +642 794 4 886568429 +764 939 4 876245880 +846 48 5 883949046 +449 86 4 880410599 +758 196 4 881977229 +194 654 2 879522445 +890 176 4 882404851 +707 654 4 880061578 +776 7 4 891629077 +806 690 2 882384589 +931 845 3 891036883 +673 340 5 888786969 +851 349 3 890862917 +938 258 5 891353196 +834 13 2 890862648 +880 1047 3 880175157 +890 187 5 882403221 +919 953 3 875921051 +369 196 5 889428642 +854 121 1 882813074 +653 1087 2 880153207 +534 276 5 877807873 +463 985 1 877386923 +659 482 4 891383674 +936 358 4 886831820 +399 1060 3 882510269 +862 969 5 879304410 +463 936 2 890460826 +560 197 4 879975613 +897 120 3 879993886 +698 419 3 886367474 +600 759 2 888453145 +256 934 3 882163730 +642 64 5 885602482 +727 616 2 883713348 +346 195 5 874948703 +242 275 5 879741196 +498 1404 3 881957054 +577 121 5 880470258 +156 100 4 888185677 +907 475 3 880158692 +862 132 5 879304980 +495 135 3 888633011 +479 62 3 879462007 +479 250 4 879460393 +416 544 2 888700566 +705 230 4 883428083 +894 591 4 880416137 +763 79 5 878919083 +874 20 3 888632615 +661 31 3 876017533 +881 712 3 876539156 +693 402 3 883975558 +842 874 5 891218060 +891 595 3 883489668 +733 1117 2 879536659 +922 80 3 891452817 +773 174 3 888539962 +889 509 2 880180650 +874 127 5 888633310 +699 202 3 878883112 +429 1112 3 882386785 +660 87 2 891199133 +867 300 2 880077751 +877 14 5 882677048 +933 435 4 874854251 +497 1615 3 879310650 +627 693 2 879530205 +826 511 3 885690482 +281 259 3 881200789 +848 566 4 887046823 +821 71 5 874793969 +899 195 4 884121884 +176 273 4 886048230 +556 173 3 882136162 +876 22 4 879428451 +899 1 3 884120105 +900 117 2 877833029 +658 923 3 875148059 +940 164 2 885921915 +618 55 2 891308063 +514 568 4 875462689 +741 186 5 891455317 +807 748 4 892527267 +889 276 4 880177104 +287 742 3 875334196 +748 427 4 879454405 +930 411 1 879535272 +65 194 4 879217881 +776 860 3 892920381 +908 7 3 879722334 +422 441 4 879744183 +312 197 4 891698764 +60 419 3 883327612 +881 14 1 879051971 +892 318 5 886607641 +438 300 4 879867960 +916 650 4 880844711 +387 665 2 886481851 +521 231 2 885254307 +611 750 5 891636222 +880 342 3 892958275 +932 491 5 891249621 +846 661 4 883948840 +527 423 3 879456248 +870 606 4 875679687 +758 902 4 889328320 +577 819 3 880470604 +902 257 3 879464964 +886 550 4 876034228 +75 129 3 884049939 +1 28 4 875072173 +882 407 2 879863831 +867 855 5 880078604 +880 1012 4 880166827 +827 312 2 882809814 +934 965 4 891192914 +164 248 4 889402030 +847 928 3 878939375 +900 205 4 877833712 +632 22 4 879457394 +916 92 5 880844291 +927 25 3 879177403 +891 405 3 883489646 +721 682 3 877137285 +700 651 4 884493712 +194 575 1 879554453 +880 226 4 880167806 +942 1221 4 891282783 +768 237 4 883834705 +642 940 2 886569847 +706 237 4 880997482 +903 175 4 891032760 +943 625 3 888639427 +59 53 5 888206161 +659 170 3 891045943 +532 99 5 893119438 +786 419 4 882843312 +117 164 5 881011727 +25 82 4 885852150 +872 628 4 888479151 +625 652 4 891262983 +296 187 5 884198772 +785 269 5 879438537 +454 511 3 881960173 +691 322 3 875542976 +918 197 2 891987387 +796 243 3 892612354 +178 173 5 882826306 +382 514 3 875946730 +600 82 5 888451583 +592 748 2 882607434 +941 300 4 875048495 +643 408 4 891445176 +655 915 4 891817435 +805 419 4 881705766 +795 747 3 883252630 +707 134 4 886286004 +889 59 4 880177906 +711 378 4 879995099 +535 134 5 879619144 +878 740 2 880865813 +918 965 4 891988276 +798 1284 3 875637744 +763 143 3 878918332 +889 763 4 880177502 +848 945 5 887043821 +782 348 4 891498213 +861 70 4 881274672 +927 195 4 879183245 +711 729 3 879994413 +754 307 3 879451191 +618 713 4 891307224 +646 352 1 888529153 +327 952 2 887819354 +730 1 4 880310285 +435 101 3 884132184 +943 1330 3 888692465 +847 507 3 878940161 +405 641 1 885546201 +854 11 5 882814570 +409 663 4 881107251 +121 1 4 891388475 +291 293 5 874833668 +872 273 3 888479274 +882 7 4 879862652 +464 12 5 878355167 +887 368 5 881381679 +308 583 4 887737483 +624 595 3 879793408 +909 339 4 891919406 +389 412 3 880089170 +886 95 5 876032531 +34 899 5 888603123 +865 95 1 880235059 +496 1041 1 876068615 +402 100 5 876266904 +501 273 4 883347975 +508 215 3 883776977 +125 82 5 879454386 +132 1019 3 891278867 +796 477 2 892660465 +682 172 5 888522417 +204 9 5 892513979 +537 501 3 886032000 +100 898 4 891375454 +267 576 3 878973760 +532 754 4 892854961 +117 271 4 880124397 +908 124 3 879722694 +919 275 5 875288522 +851 480 5 875731406 +896 473 2 887161393 +843 521 2 879446359 +891 126 5 891638601 +887 1084 5 881377893 +870 490 3 886883147 +691 205 5 875543395 +880 467 4 880241821 +500 1315 4 883865463 +456 483 4 881372911 +836 260 2 885753691 +666 566 3 880314500 +532 453 4 888631524 +94 1007 4 891724282 +49 208 4 888068715 +786 703 3 882843190 +886 1014 5 876034371 +862 185 5 879304571 +665 248 4 884292068 +653 188 5 878854145 +706 125 5 880997172 +279 1274 3 875314001 +383 604 5 891193042 +447 474 3 878856022 +545 386 2 884134780 +561 531 1 885807215 +655 1636 4 887473570 +814 635 2 885411749 +561 357 3 885807612 +3 340 5 889237455 +715 692 3 875963836 +796 125 4 892660465 +942 520 5 891282963 +887 405 5 881378439 +943 569 2 888640186 +56 1074 3 892683941 +442 738 3 883389164 +621 386 3 874963126 +917 763 3 882911480 +440 245 4 891548470 +230 627 5 880484661 +932 705 4 891250017 +709 597 4 879848824 +524 117 3 884322113 +747 649 3 888640916 +884 14 4 876858946 +548 127 5 891043008 +553 170 4 879948806 +933 597 1 874939230 +686 603 5 879546847 +435 596 4 884132184 +747 276 5 888639989 +38 678 5 892428658 +887 25 2 881378537 +658 171 4 875147448 +758 1047 3 882054250 +880 732 4 880174652 +869 25 2 884491767 +860 894 2 883678286 +699 117 4 879148051 +840 91 5 891208998 +934 199 4 891191778 +907 291 5 880158913 +101 595 2 877136391 +886 42 5 876032248 +451 748 4 879012550 +814 201 2 885410957 +606 180 4 880926245 +896 710 4 887159657 +934 1065 2 891191108 +804 118 4 879443900 +771 496 5 880659606 +840 172 3 891204627 +705 393 4 883427716 +705 576 4 883428128 +943 546 4 875502229 +251 185 5 886271884 +922 15 4 891453122 +788 402 3 880870544 +21 858 1 874951858 +834 886 4 890860566 +889 1239 1 880182815 +847 66 3 878941398 +932 488 5 891250282 +916 713 3 880843636 +707 9 5 880059647 +862 1050 5 879305351 +495 577 1 888637477 +401 203 4 891033288 +291 739 3 875087334 +927 56 4 879184534 +650 71 3 891386755 +932 890 1 891248778 +574 305 3 891279012 +258 300 5 885700877 +437 558 3 880142365 +910 181 1 880821033 +927 477 3 879176876 +358 221 5 891269077 +246 477 4 884921767 +650 559 3 891387520 +110 569 4 886988321 +913 50 4 880758348 +846 576 4 883950186 +232 44 4 888549412 +924 511 5 885457827 +568 524 2 877907281 +727 371 2 883712193 +840 157 4 891208998 +916 582 4 880844728 +244 383 3 880608957 +746 186 4 885075497 +429 462 4 882386662 +528 79 5 886101911 +334 403 4 891547016 +49 225 2 888068651 +49 256 4 888066215 +745 127 2 880122986 +878 1100 3 880869418 +266 325 1 892257419 +927 412 1 879182833 +411 202 4 891035663 +641 203 4 879370337 +846 523 4 883948048 +921 538 4 884673311 +912 517 4 875966458 +705 283 5 883427048 +411 174 4 892845634 +892 27 4 886610682 +536 549 3 882360283 +867 188 4 880078796 +758 289 2 880672402 +936 19 5 886832092 +916 475 4 880843334 +743 242 4 881277267 +934 483 3 891190609 +26 328 2 891348011 +842 258 3 891217835 +591 8 3 891031203 +763 190 4 878917384 +248 187 3 884535046 +886 762 5 876033228 +883 517 4 891694218 +664 318 5 876525044 +877 61 5 882677244 +524 174 4 884634911 +334 214 3 891549045 +372 1212 4 876869932 +843 357 2 879446502 +788 22 5 880868513 +892 227 4 886609520 +798 944 4 875914573 +634 1011 4 875729633 +432 475 4 889416147 +790 721 3 885157017 +766 739 2 891310241 +161 118 2 891172421 +934 811 4 891192145 +504 622 4 887910487 +802 194 4 875986155 +727 748 4 883708119 +804 156 4 879444781 +631 877 2 888465131 +693 1090 4 875483564 +585 14 4 891282808 +541 826 3 883871755 +846 768 4 883949508 +899 203 4 884121513 +110 67 3 886989566 +922 450 4 891447876 +682 1153 3 888517869 +943 385 4 888639308 +910 831 1 881421142 +812 332 4 877625368 +932 612 5 891249620 +26 1010 2 891377609 +77 191 3 884752948 +846 1249 3 883949771 +195 109 3 878019342 +653 265 4 878866995 +896 1681 3 887160722 +889 42 5 880180191 +699 1009 4 878882668 +470 124 3 879178486 +940 191 4 885921710 +705 820 3 883427817 +707 242 4 879439088 +892 28 4 886607845 +276 541 3 874792520 +655 1638 3 887488947 +145 1011 5 888398162 +922 391 3 891450840 +328 566 5 885047374 +939 257 5 880260805 +893 288 3 874827526 +899 568 4 884121720 +763 819 2 878915766 +783 895 4 884326787 +560 1016 3 879976216 +275 228 4 876198296 +919 447 4 875372903 +878 663 5 880868635 +708 1028 2 877326217 +237 64 5 879376671 +815 443 3 878695055 +918 132 4 891986904 +773 153 5 888539425 +844 405 2 877382189 +690 154 3 881179222 +665 535 4 884291094 +606 63 3 880927666 +484 172 5 891195298 +403 50 5 879785736 +931 508 4 891036696 +697 291 5 882622481 +593 163 4 876506675 +374 193 4 883628973 +774 88 1 888556193 +842 349 3 891218459 +342 236 3 875318536 +788 175 3 880868401 +933 69 4 874854009 +927 761 3 879198085 +407 498 4 875046427 +416 603 5 893212484 +11 107 4 891903276 +617 515 3 883788782 +84 591 4 883451664 +795 226 3 883251800 +932 527 4 891249710 +854 1284 2 882812961 +916 233 3 880845391 +908 172 3 879722780 +826 190 3 885690636 +749 162 3 878848333 +906 991 3 879434410 +840 208 4 891204295 +927 71 5 879190473 +880 257 5 880167521 +228 275 3 889388521 +932 47 4 891250142 +525 181 4 881085740 +708 1040 2 877326037 +630 195 4 885667968 +94 355 2 891725090 +488 321 3 891293152 +592 681 1 882607780 +723 50 4 880498889 +596 222 3 883539402 +826 568 4 885690636 +752 678 3 891208299 +194 399 2 879528454 +938 250 3 891356532 +561 206 3 885809506 +686 168 5 879547129 +936 257 3 886832808 +808 748 4 883949873 +497 249 5 879309734 +57 717 4 883697960 +59 1120 1 888203900 +788 623 3 880870936 +804 245 4 879441132 +645 181 4 892053483 +914 216 3 887122324 +542 48 5 886533452 +653 447 2 880606620 +880 570 3 880167965 +907 506 5 881030348 +880 657 4 880243629 +653 238 1 878866604 +731 215 5 886182555 +838 257 5 887064014 +908 558 4 879722667 +796 511 4 892676155 +804 523 5 879441476 +723 433 3 880499019 +620 699 5 889988121 +180 356 3 877442079 +655 716 2 888475101 +807 417 3 892979746 +890 521 5 882916429 +410 352 3 888626682 +599 220 5 880951479 +624 870 4 879793155 +753 269 5 891399367 +878 549 4 880869303 +526 272 5 885681860 +897 179 3 879991069 +771 95 4 880659606 +899 147 2 884120106 +894 312 3 883518949 +623 70 4 891034950 +777 212 5 875980348 +577 452 3 880475644 +358 1159 5 891269617 +279 576 3 875312441 +106 82 3 881453290 +927 1415 4 879196853 +833 1070 5 875038987 +928 268 5 880935814 +770 410 4 875973047 +846 421 4 883948173 +435 559 3 884132342 +450 504 5 882377590 +9 385 5 886960055 +813 893 3 883752708 +416 1229 2 893210527 +835 187 4 891033078 +731 237 4 886185851 +933 204 3 874854723 +655 1137 3 888474807 +795 210 4 880567593 +874 521 5 888633311 +463 690 4 877384802 +450 63 4 882469941 +846 1220 2 883950434 +711 905 3 886559521 +70 449 2 884065247 +862 45 4 879304721 +693 28 2 875482280 +657 327 1 884238247 +864 225 3 878179608 +730 1012 5 880310426 +600 79 4 888451582 +639 835 4 891240543 +429 663 4 882385358 +846 728 4 883949422 +916 583 4 880845690 +710 277 4 882063967 +911 228 4 892841220 +705 173 2 883427640 +772 751 3 889028876 +493 170 3 884131089 +805 145 2 881695445 +834 515 5 890862231 +935 313 5 884471835 +934 82 4 891194221 +889 695 3 880179586 +1 172 5 874965478 +327 66 3 887819582 +353 313 5 891402757 +924 153 4 886327689 +883 59 5 891692982 +479 238 4 879461039 +894 1403 3 882404641 +871 905 3 888192744 +679 173 5 884486966 +846 68 3 883948765 +762 111 2 878719371 +867 678 3 880078004 +644 125 4 889076851 +703 328 3 875242303 +226 92 2 883889102 +417 102 3 879648656 +901 222 4 877126648 +407 71 3 875046460 +393 210 4 887747108 +846 385 5 883949156 +660 679 2 891201069 +840 650 4 891209364 +843 596 3 879448486 +936 1068 4 886832904 +896 966 4 887159531 +152 451 5 882476911 +889 164 4 880179757 +826 625 3 885690442 +416 1286 5 893213549 +913 131 5 881367150 +766 443 3 891309844 +897 1531 4 879991933 +401 634 1 891033319 +881 205 4 876538465 +933 154 2 874938389 +885 172 3 885715888 +407 408 4 875552445 +545 1091 3 879901483 +738 154 3 875353105 +883 251 5 891692657 +468 161 3 875296309 +931 181 4 891036786 +883 922 5 891717963 +487 789 4 883446757 +915 750 4 891030070 +506 172 5 885135819 +669 64 4 891260440 +615 683 1 879447642 +847 455 2 878775647 +943 227 1 888693158 +234 190 3 892079190 +437 319 5 881001538 +804 431 4 879442707 +929 204 4 879640126 +536 117 4 882318415 +537 284 3 886030347 +906 1011 4 879435365 +901 826 2 877129839 +801 681 1 890332820 +887 568 2 881379566 +643 436 4 891449870 +942 689 3 891282644 +634 760 3 879787621 +501 93 4 883347891 +752 1243 4 891207939 +854 89 4 882814467 +764 318 5 876244991 +733 1132 4 879536488 +805 417 2 881705918 +861 10 3 881274739 +651 269 5 880126096 +925 288 5 884633224 +705 15 3 883427297 +716 367 4 879796942 +416 1168 4 886318953 +130 239 4 878538071 +922 62 3 891450768 +286 856 2 877533698 +847 135 4 878941144 +888 202 4 879365072 +626 292 1 878771281 +805 155 1 881696923 +881 172 4 876538986 +934 703 4 891195437 +900 136 2 877833712 +301 217 3 882079503 +727 451 5 883712681 +825 932 3 880756862 +893 323 2 874827595 +877 371 5 882677935 +819 533 4 884618086 +674 292 4 887762415 +815 313 5 884222552 +23 387 3 874786098 +178 339 3 892239822 +892 405 4 886609977 +356 288 4 891406076 +861 116 4 881274739 +463 1216 3 877387935 +727 538 3 883708066 +864 380 3 888889744 +758 239 3 881976574 +885 179 1 885714226 +122 1074 4 879270901 +561 69 1 885807215 +940 357 4 885921219 +639 509 3 891239271 +823 102 4 878438807 +469 510 4 879523802 +393 866 3 889728074 +264 517 5 886123358 +409 529 5 881109019 +881 227 4 876538953 +691 79 5 875543025 +591 856 4 891040366 +399 182 4 882342570 +519 682 1 883248278 +40 302 3 889041283 +918 199 3 891986846 +47 1022 3 879440429 +933 62 1 874854994 +714 118 5 892777877 +561 514 4 885807713 +834 1017 2 890862563 +847 228 4 878940383 +13 135 5 882139541 +712 553 5 874729850 +24 97 4 875323193 +130 293 5 874953769 +236 520 4 890116095 +299 89 5 878192756 +892 213 3 886608942 +892 447 3 886610174 +916 121 3 880843864 +436 234 3 887769471 +923 325 4 880387081 +655 1284 2 887477511 +880 62 3 880168411 +908 496 5 879722361 +889 1194 4 880180817 +398 86 3 875726010 +923 257 5 880387946 +151 610 5 879528607 +106 318 5 881449830 +833 1427 3 875131974 +749 566 3 878849857 +935 1048 3 884472465 +848 432 2 887038022 +653 144 3 878867346 +698 607 2 886368545 +665 265 3 884294716 +18 133 5 880130713 +222 1291 2 877564031 +922 122 2 891455788 +230 549 5 880485380 +711 49 4 879994903 +871 147 5 888193136 +919 535 3 885059887 +911 514 3 892839454 +815 732 5 878694106 +930 274 4 879534803 +942 210 4 891283184 +621 8 5 874965407 +675 235 1 889490151 +651 302 5 879348880 +417 496 3 879647040 +796 147 5 893048410 +933 42 1 874853635 +399 100 3 882509855 +892 523 5 886607711 +886 833 5 876033460 +838 254 3 887065606 +72 23 4 880036550 +864 24 5 888887502 +495 448 5 888634896 +916 960 4 880844861 +624 301 3 879792131 +886 692 3 876032225 +880 39 4 880167731 +922 68 4 891450586 +942 480 5 891282985 +714 323 4 892777903 +647 136 5 876534131 +766 465 3 891310281 +586 79 4 884058986 +250 81 4 878092143 +207 1023 3 875506634 +584 541 3 885774508 +664 792 4 876524474 +425 4 4 878738290 +907 1028 5 880158913 +610 135 3 888703730 +806 1012 4 882385278 +312 511 5 891699156 +830 431 3 891561737 +883 794 4 891696750 +474 492 4 887925838 +906 237 4 879435469 +709 515 4 879846816 +835 225 2 891032898 +435 177 5 884131267 +897 826 4 879993578 +833 931 4 879818760 +906 240 3 879435758 +888 237 5 879365449 +548 1 4 891043182 +693 636 1 875483473 +669 196 3 892550234 +859 1326 4 885775859 +533 1086 3 880402916 +936 1 4 886832453 +404 876 2 883790286 +777 288 4 875979201 +745 936 1 880122907 +151 202 5 879542753 +804 527 4 879441752 +894 1255 4 879896949 +868 520 4 877103756 +884 515 4 876858914 +875 180 5 876464967 +919 125 4 875289113 +249 129 5 879571883 +558 285 5 879436396 +795 926 2 880561783 +85 715 4 882995967 +538 50 5 877107656 +863 343 5 889289328 +841 302 5 889066959 +804 444 4 879444743 +456 1551 3 881374193 +897 288 5 879988800 +924 313 4 886065805 +903 234 4 891033808 +475 303 1 891451341 +882 582 5 879876573 +916 211 4 880844395 +747 555 2 888734152 +936 1160 5 886833795 +425 300 2 878737512 +851 1023 3 875730601 +621 751 4 883799651 +782 1667 3 891500110 +935 255 4 884472247 +880 329 4 892958250 +852 109 3 891036505 +796 530 3 893048410 +878 45 3 880867665 +370 14 3 879434707 +896 461 3 887159069 +823 408 5 878437589 +705 161 5 883428028 +880 328 4 880166557 +328 38 3 885049275 +435 742 4 884132840 +682 288 4 888516814 +843 222 3 879443837 +901 204 5 877131307 +870 89 3 879539936 +23 176 3 874785843 +842 302 5 891217834 +787 749 4 888979657 +936 1199 4 886833148 +816 300 4 891710724 +749 419 5 878847765 +823 651 5 878438179 +889 474 4 880177941 +932 389 3 891251331 +854 222 4 882812492 +846 787 4 883949335 +890 186 2 882916276 +249 123 3 879640261 +363 260 2 891494049 +299 83 5 878192344 +846 614 5 883948765 +544 327 2 884795516 +916 69 4 880844694 +328 281 4 885048930 +381 483 5 892696698 +833 357 4 875038709 +864 77 4 888891627 +545 449 2 879899497 +825 1013 2 881185672 +536 73 4 882360894 +833 447 5 875224309 +870 223 4 878737979 +716 604 3 879795071 +716 193 5 879796596 +887 289 5 881380623 +87 56 4 879876524 +840 69 4 891204535 +592 350 4 885280124 +267 2 3 878972463 +109 385 4 880577961 +497 177 4 879310762 +936 756 4 886833052 +803 260 3 880055454 +877 739 4 882678105 +943 468 2 888639575 +886 512 1 876031526 +488 300 4 891293606 +749 969 4 878848243 +276 1010 3 874786784 +830 568 4 891561607 +315 1084 4 879799423 +848 1063 5 887038197 +301 655 1 882076187 +705 181 5 883426892 +912 64 4 875966027 +682 527 3 888517168 +389 675 3 880165702 +126 881 5 887938392 +693 135 4 875482524 +894 463 4 882404430 +899 8 4 884121572 +541 173 5 883865534 +922 11 5 891450401 +345 815 3 884991546 +931 306 4 891036026 +661 121 2 876037619 +907 476 4 880159134 +916 209 3 880844017 +650 159 3 891370093 +266 276 3 892258004 +254 405 3 886471522 +916 1070 4 880844202 +86 259 4 879570423 +800 237 4 887646980 +871 11 3 888193274 +782 293 2 891499278 +727 385 3 883710994 +795 222 3 880558122 +457 202 4 882398275 +704 889 3 891397015 +407 121 4 876343028 +880 1044 4 880242577 +904 1152 4 879735551 +890 657 5 882403379 +715 183 3 875964491 +846 581 4 883950129 +257 1137 5 882049896 +920 268 3 884220163 +896 774 3 887159973 +338 169 5 879438196 +378 1147 4 880055101 +49 904 2 888065527 +758 576 4 882055054 +883 1288 4 892439357 +889 322 3 880176717 +911 197 4 892842771 +650 162 3 891382928 +907 151 4 880159222 +546 567 4 885141502 +868 679 3 877109748 +146 286 3 891457493 +642 58 3 886131744 +502 266 3 883702255 +901 117 4 877127196 +405 385 1 885547910 +606 951 2 880928181 +880 992 4 892959014 +318 629 4 884497236 +916 693 3 880844087 +634 284 4 875729668 +870 7 4 875051072 +533 298 4 882195203 +823 136 5 878438206 +932 755 2 891251822 +677 351 2 889399113 +249 658 4 879572944 +896 307 3 887157636 +607 482 5 883879556 +709 379 3 879848209 +716 430 5 879796620 +934 972 3 891225716 +889 482 4 880178367 +711 254 2 879992038 +431 303 4 877844183 +419 197 5 879435749 +595 547 4 886922069 +880 122 3 880175208 +881 259 3 876535599 +646 895 3 888528978 +588 1098 4 890026656 +903 238 5 891033502 +897 368 1 879993886 +805 402 2 881697013 +334 14 3 891544810 +731 720 3 886184771 +423 10 4 891395734 +66 257 3 883601355 +221 288 3 875244232 +885 204 4 885713294 +641 198 5 879370028 +943 234 3 888693184 +816 323 4 891711324 +566 388 3 881651512 +136 258 5 882693234 +758 139 4 882053834 +486 532 4 879874871 +659 187 5 891331825 +854 275 4 882814571 +642 420 4 885606581 +313 490 4 891016280 +901 409 3 877129911 +314 476 5 877886921 +738 152 4 875350265 +872 871 3 888479677 +880 184 4 880167843 +848 1065 2 887048154 +872 354 4 888478822 +716 505 4 879796381 +44 201 2 878347392 +44 31 4 878348998 +347 1244 3 881653300 +875 211 5 876465144 +757 1073 4 888466983 +825 290 4 880755869 +807 602 5 893083772 +624 326 3 891961210 +716 451 4 879796961 +943 72 2 888639814 +833 577 1 875135113 +460 283 3 882912316 +796 660 5 892690101 +709 233 3 879848511 +503 684 4 879454950 +650 489 3 891387277 +417 549 3 879647924 +13 756 2 886302858 +221 1016 3 875244713 +269 825 1 891456033 +451 258 4 879012343 +844 172 4 877387768 +712 143 5 874957306 +896 1112 3 887161393 +457 133 4 882547820 +279 823 3 875297456 +751 153 4 889133240 +634 988 1 875729217 +95 450 2 880572787 +640 770 4 874777658 +901 560 3 877131624 +895 748 3 879437712 +559 56 3 891034550 +843 211 2 879446255 +666 208 3 880139467 +833 179 5 875124181 +198 81 5 884208326 +13 8 4 882140001 +727 930 3 883709802 +795 755 3 883254564 +840 196 4 891205070 +83 50 3 880327590 +305 311 5 886307971 +860 393 2 885991129 +627 658 3 879530536 +286 215 3 889651630 +738 343 3 892938330 +13 285 5 882139937 +727 578 3 883711897 +682 216 4 888521381 +767 344 4 891462511 +669 313 4 891182948 +844 946 3 877388107 +623 153 3 891034757 +940 150 3 885921422 +903 211 5 891033808 +627 317 5 879530071 +320 96 5 884749255 +533 744 2 887721800 +541 1091 3 883874804 +692 1028 3 876953823 +17 269 4 885165619 +717 476 4 884642868 +405 1043 1 885547644 +537 493 4 886030707 +642 69 5 885602631 +758 566 4 881977488 +276 161 3 874792483 +892 49 4 886610173 +90 708 5 891385787 +340 378 5 884990891 +550 275 4 883425958 +208 393 4 883108398 +586 431 3 884061343 +307 50 5 879284239 +928 749 5 880936022 +936 866 2 886833099 +450 795 3 882468790 +907 496 4 880159666 +577 356 4 880474903 +490 24 4 875428765 +805 231 3 881694978 +796 333 5 892610876 +271 136 3 885848863 +518 508 3 876823266 +707 190 5 886286283 +833 646 5 875123427 +250 991 2 878089202 +768 272 5 884970491 +13 260 1 882140848 +771 652 4 880659507 +486 1142 5 879874725 +940 161 3 885921870 +500 182 2 883873556 +299 1379 3 877878080 +724 749 4 883757670 +782 1278 4 891499278 +925 559 3 884717963 +844 471 3 877381736 +472 50 5 875978010 +939 424 3 880262019 +912 192 4 875966349 +222 162 2 878184087 +833 1274 1 878078280 +542 50 4 886532209 +643 393 4 891450273 +197 751 3 891409290 +878 755 2 880870486 +851 1291 2 875730979 +890 675 5 882404541 +908 603 4 879722361 +889 519 4 880179757 +246 240 3 884923547 +650 265 4 891370031 +932 9 5 891249649 +377 294 5 891296356 +851 174 5 875731776 +763 464 3 878918960 +795 473 2 880561783 +737 137 5 884314694 +872 347 2 888478743 +716 566 3 879796010 +393 302 4 891364609 +118 100 5 875384751 +802 436 4 875985686 +785 294 4 879438705 +933 117 2 874939157 +60 15 4 883328033 +450 628 4 882377590 +807 118 4 892529713 +118 5 2 875385256 +391 133 4 877398898 +507 181 5 889965997 +735 1012 2 876698897 +894 818 3 880416340 +768 762 1 883835210 +899 177 3 884122367 +887 1047 5 881378773 +877 475 4 882677085 +858 689 5 879459087 +757 69 3 888445768 +416 124 4 876697017 +749 380 3 878849586 +391 648 5 877399100 +82 134 4 878769442 +436 187 5 887768982 +913 171 3 880758348 +269 237 2 891446368 +923 294 4 880387081 +851 1675 3 884222085 +327 275 4 887747338 +776 607 4 892920221 +592 185 5 882956201 +695 678 4 888806292 +785 79 4 879438984 +561 185 4 885807173 +868 95 2 877108302 +686 23 5 879547177 +916 741 3 880843401 +812 300 5 877625461 +790 97 2 885155770 +387 232 2 886483289 +590 19 5 879438735 +154 152 4 879138832 +866 313 1 891220955 +622 176 4 882669851 +881 225 2 876536012 +446 340 2 879786691 +937 100 3 876769080 +45 826 3 881015386 +394 183 4 881130008 +897 546 4 879993489 +749 984 3 881073009 +863 750 4 889288973 +889 303 3 880176550 +826 96 5 885690600 +380 318 4 885478624 +841 316 4 889067313 +116 596 5 876452854 +927 755 5 879192381 +695 286 3 888805913 +7 561 4 891354611 +916 86 4 880844655 +901 403 2 877131086 +804 219 3 879445072 +399 404 3 882344684 +490 987 3 875428702 +804 603 5 879441937 +896 1119 3 887160040 +665 301 4 884290096 +683 678 1 893283948 +848 42 2 887040097 +472 338 4 892790531 +901 88 5 877132604 +650 173 5 891369520 +457 275 5 882393648 +498 527 3 881957757 +532 248 4 888635264 +587 292 3 892871141 +846 1221 3 883950220 +852 1615 2 891036457 +807 408 3 892528813 +561 133 3 885807888 +881 69 3 876537933 +887 105 3 881379009 +727 12 5 883710598 +889 524 4 880180650 +399 232 2 882350431 +894 698 4 882404669 +864 394 3 888890432 +738 234 4 875349850 +758 820 4 882054112 +458 619 2 886394778 +813 326 3 883752380 +843 422 2 879448431 +837 926 1 875722371 +882 420 5 879879807 +409 466 4 881107666 +895 283 4 879438028 +924 50 5 884371386 +308 121 3 887739471 +118 179 5 875384612 +881 234 3 876537870 +313 845 3 891016853 +633 300 4 875324233 +881 568 4 876539020 +617 427 4 883789042 +811 321 3 886377483 +796 607 4 892662964 +791 332 5 879448166 +553 657 5 879949212 +536 22 5 882359863 +622 218 3 882670057 +815 175 3 878694952 +911 194 4 892839929 +327 156 4 887747668 +535 1098 5 879618464 +483 228 5 878953485 +490 1012 3 875428416 +620 1219 3 889988069 +894 292 4 879896168 +825 370 3 889021180 +848 511 4 887037822 +207 805 3 882081278 +436 550 4 887771093 +92 233 3 875654732 +751 202 4 889133129 +385 132 4 879446235 +230 69 4 880484338 +85 325 2 879452386 +943 24 4 875502074 +768 235 2 885319496 +314 1297 4 877890734 +908 195 4 879722754 +679 588 3 884487825 +882 210 4 879867568 +658 960 4 875147873 +559 1401 3 891034172 +881 820 2 876537285 +286 345 4 884069337 +847 652 5 878941005 +907 272 5 885860093 +833 201 4 875134150 +10 610 4 877888613 +897 411 5 879993797 +268 1016 3 875742470 +405 1220 3 885546202 +698 174 3 886367337 +862 495 4 879305097 +500 1069 4 883876300 +280 276 5 891700664 +709 569 3 879848209 +901 118 3 877127250 +933 121 3 874855138 +5 419 3 875636815 +886 559 2 876033265 +885 29 1 885714487 +642 155 3 886568726 +749 637 1 878850456 +943 80 2 888640048 +782 936 3 891500110 +894 1009 4 880993709 +910 222 4 880822060 +889 159 3 880182295 +868 100 5 877103935 +627 193 5 879529767 +271 116 2 885847636 +758 312 3 883190351 +399 366 3 882345271 +760 1135 4 875668968 +472 866 5 875978600 +885 290 1 885712921 +815 479 4 878694106 +804 631 3 879444463 +557 739 3 881179539 +466 403 3 890284857 +249 93 4 879640194 +867 144 3 880078484 +552 300 4 879220610 +671 55 3 883546890 +863 316 5 889289419 +789 288 3 880331942 +200 139 3 884130540 +677 358 5 885191454 +749 234 4 878848044 +514 114 5 875462466 +751 227 4 889298892 +270 672 5 876956390 +883 479 5 891755017 +880 403 3 880167778 +907 697 5 880159982 +433 245 3 880585491 +908 100 4 879722427 +17 276 4 885272654 +548 164 5 891044446 +896 559 3 887160187 +843 530 3 879444670 +894 242 4 879896041 +363 496 4 891494563 +577 200 3 880475226 +817 222 4 874815835 +716 173 4 879797328 +643 194 4 891446652 +698 121 2 886368545 +554 70 4 876369382 +592 170 5 882955703 +798 105 3 875555000 +796 796 4 893047320 +890 151 5 882916941 +177 187 4 880131040 +834 9 3 890862311 +903 59 4 891466808 +452 164 4 875269386 +491 12 5 891189305 +870 235 3 885312790 +889 290 2 880181601 +929 50 4 878402162 +338 478 3 879438505 +927 64 5 879199250 +865 405 2 880144194 +846 470 5 883949200 +886 23 4 876031365 +873 875 1 891392577 +682 332 4 888518320 +655 22 2 888474424 +588 186 4 890024079 +758 332 4 886464043 +918 517 3 891987622 +639 516 4 891240678 +532 161 5 892519934 +892 601 5 886609149 +463 476 3 877385664 +653 1101 2 878866755 +870 583 2 879714351 +737 501 1 884314922 +815 705 5 878693183 +826 526 3 885690677 +932 496 4 891250169 +879 25 4 887761865 +835 134 3 891033927 +903 1098 5 891033606 +922 271 3 891445117 +883 198 5 891695570 +913 478 4 880824512 +59 28 5 888204841 +642 934 2 885606137 +880 187 5 880167671 +327 42 3 887746665 +891 181 3 891638601 +933 172 2 874939031 +577 402 4 880475318 +907 924 5 880159240 +929 484 3 879639969 +601 15 1 876347040 +846 194 4 883947630 +339 143 5 891034810 +44 633 3 878347633 +881 705 1 876537679 +711 622 4 879993997 +897 651 3 879990587 +875 423 5 876464967 +14 588 4 890881433 +897 760 5 879993609 +67 117 5 875379794 +848 97 5 887043607 +835 239 5 891034084 +782 895 4 891497964 +880 158 2 880175128 +62 191 5 879373613 +901 95 4 877131685 +838 354 4 892153360 +717 127 4 884715172 +930 50 2 879534410 +798 1509 3 875915155 +897 89 4 879990683 +916 206 3 880844597 +815 392 4 878697163 +694 238 3 875727306 +639 953 2 891239407 +796 284 3 892660954 +938 286 3 891356282 +119 258 2 887037225 +291 577 1 875086669 +823 183 4 878438403 +825 411 3 889021134 +936 1370 4 886833571 +389 494 5 879991411 +833 761 2 879818719 +800 181 4 887646203 +682 431 4 888520799 +852 407 3 891037778 +790 1040 2 884462954 +159 1132 5 880557584 +894 702 4 882404768 +423 292 4 891394504 +846 511 5 883947911 +758 841 3 882055193 +749 79 4 878848069 +621 795 1 874963273 +49 715 3 888069040 +458 83 4 886398071 +880 202 4 880174834 +561 617 4 885808738 +521 68 4 886061689 +509 309 2 883590609 +912 418 4 875966694 +883 151 5 892439523 +501 678 3 883346886 +909 86 5 891920125 +664 458 3 878091463 +704 58 3 891397366 +792 508 2 877910478 +890 152 4 882403299 +432 293 5 889415812 +881 1057 1 879052341 +857 328 3 883432301 +142 322 2 888640054 +786 197 3 882843431 +908 205 3 879722901 +788 65 4 880869584 +725 879 4 876106729 +687 324 2 884651648 +796 213 4 893047167 +864 288 5 878179381 +625 515 4 891263589 +201 7 3 884112201 +654 418 4 887864588 +919 70 4 875921442 +776 567 2 892920351 +896 660 5 887159872 +635 150 3 878879236 +653 571 1 880153406 +651 332 3 879348880 +805 959 2 881705327 +916 1194 4 880844753 +551 399 3 892785364 +934 131 4 891191778 +655 762 2 888984255 +222 64 5 878183136 +324 846 5 880575715 +774 708 2 888556893 +727 1028 2 883712016 +761 151 2 876190394 +828 20 2 891035969 +796 423 4 892690262 +928 134 5 880936742 +859 475 4 885776056 +788 167 3 880870582 +923 742 4 880387792 +510 873 3 887667780 +536 510 4 882359838 +887 204 5 881380067 +39 302 5 891400188 +868 7 5 877104157 +764 717 3 876243644 +796 283 3 892660322 +218 164 3 881288574 +844 176 3 877387933 +537 208 4 886031297 +943 449 1 888693158 +749 94 5 878849829 +716 161 3 879796651 +937 137 3 876769480 +405 1480 2 885549005 +378 97 5 880045612 +798 399 5 875638680 +488 205 4 891375784 +916 280 2 880843864 +659 521 5 891384499 +922 230 4 891447723 +815 527 5 878693830 +817 831 1 874816007 +712 95 4 874730552 +908 174 3 879722642 +846 623 1 883950889 +308 139 3 887741179 +506 324 1 877984213 +517 181 4 892660033 +403 405 5 879786747 +749 731 3 878848828 +796 672 3 893218485 +907 762 5 880159496 +704 639 2 891397667 +532 448 4 888635429 +777 196 5 875980306 +863 347 2 889289067 +420 690 5 891357271 +553 589 5 879948964 +854 132 5 882813877 +766 433 3 891309391 +373 131 4 877099968 +472 202 5 875979737 +632 194 4 879457712 +543 642 3 874863803 +556 482 5 882136440 +892 478 5 886608616 +655 57 3 887427743 +582 458 4 882961968 +449 1005 5 880410734 +588 735 5 890024196 +615 519 5 879448598 +558 269 4 879436396 +492 521 5 879969644 +405 1005 1 885549407 +771 114 4 880659539 +840 357 5 891204114 +711 228 3 879993997 +655 865 4 887523909 +560 50 5 879976109 +758 356 2 881977872 +886 578 4 876034205 +916 106 3 880843934 +878 512 5 880867709 +870 1073 5 875050748 +907 633 5 881030348 +763 99 4 878915765 +890 121 2 882915661 +472 419 4 875982337 +634 292 3 876170101 +409 326 3 881105077 +930 275 4 879534550 +48 428 4 879434608 +771 596 4 880659815 +70 946 3 884150691 +712 1040 4 874729682 +77 134 4 884752562 +890 185 5 882402301 +932 199 5 891249538 +936 294 3 886831679 +851 286 4 883148669 +819 286 5 879952508 +915 286 4 891030032 +654 785 4 887864976 +13 525 5 882140624 +724 898 1 883757784 +540 825 4 882157172 +943 205 5 888639478 +916 64 5 880843996 +911 427 3 892838538 +543 461 3 875659175 +15 845 2 879456108 +889 265 4 880180816 +411 238 3 891035525 +880 623 4 880243069 +880 315 5 892958175 +878 553 3 880869303 +311 448 5 884365718 +894 936 4 879896836 +767 921 5 891462717 +917 476 5 882912385 +804 257 5 879441014 +571 32 2 883355063 +627 435 5 879531158 +478 15 5 889397306 +383 736 5 891192949 +145 49 3 875272926 +394 62 4 881132876 +654 748 4 887863081 +174 202 5 886513729 +609 750 4 886895397 +190 930 2 891042916 +567 589 5 882425932 +457 1 4 882393244 +880 33 3 880167880 +664 69 3 876525364 +380 302 5 885477742 +932 541 1 891251421 +7 521 5 891353124 +601 284 4 876347523 +488 216 2 891294785 +642 447 4 886569328 +535 419 3 879618654 +878 202 4 880869090 +806 273 4 882385524 +881 1164 1 876537106 +305 485 2 886323648 +491 14 2 891185298 +620 260 5 889986624 +855 582 3 879825578 +664 54 3 876526684 +671 172 5 884035774 +560 508 3 879976502 +881 177 4 876537900 +798 38 4 875915806 +782 937 1 891498918 +833 824 1 875134843 +741 479 5 891456874 +318 458 4 884494861 +749 230 3 878848272 +495 637 3 888635995 +535 50 5 879618091 +758 340 3 880672345 +95 219 4 880572658 +825 748 5 880756504 +923 405 4 880387429 +863 271 4 889289191 +731 845 2 886184681 +72 81 3 880036876 +846 58 4 883949200 +886 584 4 876031993 +437 210 3 881002191 +49 1073 5 888066424 +665 1048 4 884292325 +6 539 2 883681433 +660 179 4 891200073 +833 267 1 875655669 +817 117 5 874815947 +897 232 5 879994113 +158 4 4 880134477 +655 543 3 887474050 +618 33 2 891309351 +399 123 2 882340807 +561 144 3 885807547 +936 323 3 886831820 +171 272 5 891034835 +708 222 5 892719172 +570 327 4 881262795 +331 511 5 877196633 +592 183 5 882955613 +763 125 3 878923322 +796 869 4 893047287 +451 321 3 879012470 +795 79 2 880568325 +854 855 4 882814063 +806 188 3 882388159 +186 147 4 891719774 +701 751 4 891446788 +819 245 3 879952688 +798 419 4 876175937 +387 641 5 886483824 +538 121 3 877110209 +933 823 2 874854813 +870 735 3 875679721 +622 719 2 882671622 +69 628 3 882126125 +863 887 3 889289328 +908 96 4 879722932 +907 1054 3 880159598 +938 929 2 891356966 +768 100 5 883835026 +648 88 4 884881679 +445 151 4 891200869 +894 278 4 880416419 +924 134 4 885457827 +890 451 2 882575274 +793 1 4 875104091 +846 1478 4 883950523 +545 95 4 879901458 +940 176 4 885921979 +850 98 1 883195192 +832 307 4 888259231 +804 926 4 879443993 +602 118 3 888638703 +899 748 4 884120232 +551 276 5 892783451 +763 191 4 878915063 +801 313 5 890332694 +887 1283 5 881378896 +201 583 1 884112352 +846 789 4 883948417 +509 294 2 883590972 +537 894 1 886029526 +942 135 3 891283017 +586 222 3 884057387 +923 50 5 880387306 +936 276 5 886832282 +806 249 4 882385476 +645 195 4 892054537 +533 168 4 879191864 +940 347 3 884801024 +119 271 4 886175150 +363 42 2 891495070 +152 1035 4 882477755 +13 793 5 882141841 +715 121 4 875962524 +774 265 3 888557237 +417 209 4 879647299 +825 147 5 880756643 +869 315 3 884490332 +798 473 2 875296109 +739 288 1 886825083 +344 715 4 889814195 +932 811 4 891250392 +407 191 5 876339940 +798 728 4 875914458 +643 4 4 891448136 +216 147 4 880232787 +889 338 1 880176666 +901 294 3 877125532 +539 258 4 879787770 +868 133 2 877108302 +833 523 3 875133840 +536 167 3 882361317 +736 324 3 878708991 +738 665 2 875351873 +230 195 3 880484416 +919 64 5 875374088 +851 128 4 875731330 +795 105 1 883774317 +900 129 4 877833080 +363 652 4 891495143 +584 181 4 885778120 +933 284 2 874854294 +877 451 4 882677865 +704 606 2 891397441 +916 1011 4 880843666 +566 467 3 881650030 +868 222 3 877108989 +746 208 4 885075569 +406 144 1 879445475 +389 608 3 880087832 +693 77 2 875482860 +705 815 3 883427297 +510 324 1 887667618 +774 199 4 888556517 +918 709 4 891986820 +483 9 2 878952471 +807 186 4 892530004 +416 732 5 893213404 +767 1 5 891462829 +927 568 5 879199250 +806 1 4 882385082 +664 121 3 876526659 +135 226 3 879857956 +927 1016 5 879199250 +846 270 3 883946284 +778 226 4 890670638 +326 237 2 879875572 +446 299 2 879787149 +883 47 3 891694182 +676 316 4 892685224 +838 45 4 887066644 +130 7 5 874953557 +854 742 2 882812960 +243 8 5 879989217 +517 472 2 892659923 +647 402 4 876534009 +851 1258 3 890343790 +646 286 3 888528927 +181 1317 1 878962086 +899 356 2 884122087 +896 219 3 887160500 +770 297 5 875972099 +624 750 4 891961163 +330 231 5 876545418 +669 657 5 891517185 +406 382 5 879793295 +934 193 4 891192236 +254 526 3 886472609 +517 755 3 892659893 +916 720 2 880844920 +859 313 5 885774773 +413 237 4 879969755 +846 586 2 883950712 +711 472 1 879991585 +673 313 4 888786942 +751 52 2 889297948 +716 108 2 879794290 +303 427 4 879466547 +405 806 1 885545974 +943 22 4 888639042 +796 371 5 893047167 +941 919 5 875048887 +653 1244 3 878854769 +796 95 4 892690382 +474 549 5 887926999 +864 200 4 888889162 +192 111 2 881368222 +879 121 4 887761865 +883 367 5 891694218 +669 271 2 891182948 +889 1428 3 880179757 +790 470 4 885158547 +109 1161 3 880564678 +906 221 4 879435365 +796 88 5 893047287 +802 183 5 875985469 +721 872 3 877137598 +345 161 3 884993555 +394 720 2 881058146 +28 603 3 881957090 +810 339 5 891294039 +882 288 3 879860762 +758 150 5 881975243 +868 234 4 877103935 +416 535 4 876697847 +314 322 4 877886029 +525 248 4 881085709 +864 597 4 888888625 +682 1267 3 888517627 +363 273 3 891495630 +618 148 3 891309670 +908 127 4 879722694 +87 128 3 879876037 +901 728 4 877132632 +800 275 4 887646203 +889 60 3 880181275 +613 603 5 891227298 +894 286 5 879896756 +800 50 4 887646263 +815 655 3 878694563 +774 567 1 888557772 +675 272 3 889488431 +864 1284 3 888891900 +815 210 2 878698553 +838 419 5 887066989 +478 182 5 889389014 +864 111 3 888888115 +311 614 4 884365357 +540 25 4 882157635 +850 153 4 883194792 +791 331 1 879447940 +903 25 4 891031259 +617 547 1 883789464 +867 529 5 880078863 +827 326 3 882807503 +450 22 5 882373865 +943 28 4 875409978 +760 25 2 875666317 +764 1057 1 876243990 +920 245 2 884220131 +505 117 4 889333508 +840 137 5 891203309 +828 961 2 891038222 +878 111 4 880867282 +771 283 4 880659303 +420 179 5 891356864 +929 136 3 879640184 +60 601 4 883325944 +560 257 3 879976172 +889 833 3 880177472 +716 501 5 879796215 +506 89 5 874874109 +334 1263 4 891549926 +615 283 4 879448015 +632 191 5 879457603 +896 1011 2 887160296 +844 684 3 877387933 +655 222 2 887650944 +920 258 4 884220094 +756 9 2 874828453 +615 72 2 879449164 +916 151 3 880843578 +405 428 1 885547314 +821 707 5 874793848 +903 357 5 891032872 +409 136 4 881107992 +878 432 3 880870048 +840 936 4 891203504 +391 23 4 877398992 +497 642 3 879362041 +454 589 2 888267487 +805 831 4 881695040 +457 368 1 882396133 +918 1099 4 891987571 +323 181 5 878739177 +538 204 3 877363950 +63 181 3 875747556 +878 234 1 880872619 +699 294 3 878881676 +58 200 3 884305295 +795 658 2 883251696 +83 845 3 880306648 +934 451 4 891192562 +715 941 2 875964072 +468 1134 5 875280670 +190 9 1 891033725 +716 229 3 879797177 +881 380 4 876538763 +250 629 4 878091965 +889 100 4 880176845 +655 1011 3 887651060 +894 462 4 882404278 +772 258 5 877533440 +234 1460 3 892335460 +916 11 4 880844369 +881 615 4 876539291 +445 933 1 891200390 +472 62 5 875981876 +648 109 5 882211419 +893 531 4 874830160 +181 281 2 878963038 +671 219 3 884338399 +58 7 5 884304656 +479 403 3 879461988 +531 908 1 887048836 +347 455 2 881653087 +887 1028 5 881379059 +928 246 5 880937184 +723 748 5 880498795 +534 919 5 877807816 +653 431 4 878854666 +907 748 5 880158537 +835 204 3 891033380 +851 252 3 875730418 +479 475 1 879460028 +618 135 4 891307224 +896 58 3 887159531 +890 434 4 882403587 +42 433 2 881108760 +831 129 2 891354866 +882 28 5 879867508 +844 175 3 877386897 +922 200 3 891449878 +881 197 3 876537870 +903 30 5 891466808 +699 106 3 886568066 +840 675 4 891205093 +588 237 2 890015894 +332 820 4 887938524 +886 49 4 876032187 +269 1478 1 891448643 +580 3 5 884125916 +750 1280 1 879445877 +877 584 4 882677507 +585 198 5 891283921 +819 304 4 879952565 +682 540 2 888521291 +727 802 2 883712780 +535 156 2 879617613 +566 23 4 881650405 +655 513 3 891585504 +832 748 3 888259984 +121 318 5 891390013 +357 412 2 878951918 +181 1358 1 878962120 +881 139 3 876538922 +118 427 5 875384751 +635 268 5 878878654 +886 89 4 876031720 +936 127 5 886833795 +537 371 3 886031407 +793 9 3 875103810 +851 284 3 874728338 +805 401 4 881705108 +653 1046 1 880151580 +942 300 5 891282564 +500 371 4 883874341 +486 1610 2 879874811 +286 1053 4 877532093 +864 473 4 888892300 +889 943 3 880178512 +537 270 3 886028498 +537 496 4 886030831 +931 14 4 891036648 +584 108 3 885774575 +455 11 3 879110971 +481 500 4 885828732 +938 290 3 891356679 +751 603 4 889132776 +747 1179 1 888733387 +244 88 4 880607684 +851 295 5 874728370 +869 696 2 884493021 +271 244 2 886106039 +890 69 4 882403446 +871 907 3 888192745 +719 510 4 879360493 +942 215 5 891283117 +569 295 3 879793983 +807 472 4 892530625 +294 520 5 889854323 +756 300 4 874826502 +846 568 4 883948571 +529 268 5 882535220 +866 272 2 891221006 +655 673 3 887523427 +648 633 3 884796858 +648 144 4 884368273 +782 749 4 891498079 +466 33 4 890285113 +622 249 5 882590394 +267 195 4 878972092 +886 174 5 876032739 +894 284 3 880416220 +254 842 3 886475952 +932 203 4 891250584 +320 248 5 884750644 +399 29 3 882349198 +294 354 3 889241377 +897 201 5 879990556 +851 825 4 875730533 +846 729 4 883950053 +896 763 2 887161199 +13 116 5 882140455 +921 230 3 879381051 +82 435 5 878769409 +336 238 3 877757700 +425 33 4 878738435 +490 222 3 875427103 +664 176 4 876526462 +920 340 4 884219993 +346 365 1 874951029 +907 121 4 880159015 +896 1208 3 887160339 +712 174 5 874729995 +919 732 3 875373471 +246 658 4 884923329 +724 332 4 883757670 +345 150 5 884991105 +533 385 4 879438666 +139 744 5 879538169 +677 322 4 885191280 +693 9 3 875481856 +867 134 5 880078723 +466 510 2 890284857 +682 403 3 888517792 +892 228 3 886608095 +758 520 5 881976089 +495 441 3 888633440 +790 328 3 884461023 +870 203 4 875680098 +798 1337 3 875554892 +892 582 3 886608559 +821 495 5 874793574 +325 386 4 891479890 +882 70 3 879876573 +500 763 3 883865589 +187 694 5 879465532 +919 264 3 875288362 +114 171 4 881309511 +401 663 1 891033549 +901 430 3 877131416 +497 73 3 879362858 +383 188 5 891192949 +805 405 3 881694885 +883 190 4 891693058 +251 480 5 886271733 +592 7 5 882607986 +540 515 5 882157105 +788 203 5 880869215 +7 173 5 891351002 +669 121 3 892549673 +896 809 2 887160771 +758 342 4 881295151 +825 288 1 880931932 +450 356 4 887138756 +535 1101 4 879619177 +716 627 4 879797475 +669 205 4 892550137 +916 943 4 880844834 +782 885 3 891498766 +332 974 4 888360532 +886 396 2 876032739 +934 902 4 891188580 +540 276 4 882157061 +875 357 5 876465072 +924 28 4 885457827 +870 208 4 879270313 +405 1306 1 885546529 +927 1095 2 879182939 +927 63 4 879197074 +863 289 4 889289457 +818 288 5 891870364 +514 190 5 875318224 +494 663 5 879541080 +831 204 5 891354645 +402 181 4 876266860 +846 604 4 883947777 +804 380 4 879445715 +468 772 4 875291722 +921 147 3 879379843 +619 546 2 885953826 +857 20 3 883432688 +914 402 5 887124376 +549 258 5 881671833 +892 31 4 886608643 +478 144 5 889396509 +883 58 3 891717380 +738 97 4 875350122 +563 304 2 880506234 +870 1098 4 889812986 +45 764 4 881015310 +938 411 3 891357042 +851 234 4 875731189 +72 403 3 880037277 +886 631 4 876033645 +912 523 4 875965830 +799 307 3 879253795 +554 288 3 876231123 +617 558 3 883789425 +932 665 2 891252058 +899 588 3 884122155 +306 285 4 876504354 +292 165 4 881105657 +619 68 3 885954105 +716 603 5 879794775 +342 165 3 875318907 +806 200 4 882387670 +772 354 4 889028692 +655 847 2 891585279 +555 244 5 879962642 +619 327 3 885953743 +488 174 4 891294853 +807 743 3 893083216 +919 813 4 875288681 +868 710 3 877103320 +782 350 4 891498641 +49 12 4 888068057 +496 217 5 876073320 +889 732 2 880179612 +1 122 3 875241498 +152 559 1 882475972 +468 127 4 875280126 +195 507 4 875436627 +460 1171 3 882912235 +805 294 1 879970879 +878 170 4 880867485 +468 226 2 875302208 +814 184 3 885411073 +943 732 4 888639789 +675 750 4 889488487 +774 1274 1 888557557 +693 178 5 875482309 +860 312 4 888169119 +721 1442 4 877147872 +912 648 3 875966616 +942 282 5 891282816 +539 660 5 879788346 +725 111 3 876106206 +445 1009 2 891200321 +655 961 3 888685735 +832 313 5 888258754 +889 92 3 880177970 +923 340 5 880387080 +892 1269 5 886607958 +45 993 4 881014785 +697 763 4 882622208 +875 806 4 876465230 +711 258 4 876185488 +916 276 4 880843551 +880 98 5 880241327 +666 12 4 880139323 +896 665 1 887235690 +900 864 2 877833000 +763 159 3 878917818 +854 472 1 882813143 +897 11 2 879990744 +864 465 3 888889327 +805 179 4 881697792 +927 826 4 879181451 +354 922 4 891216825 +532 1594 4 893115576 +741 283 4 891458250 +892 125 4 886610588 +592 501 4 882956276 +244 735 5 880605697 +407 168 5 875042424 +889 663 3 880180554 +532 576 5 893118712 +872 409 3 888479677 +275 227 3 876198296 +932 490 4 891250891 +883 306 3 891691410 +907 120 4 880159562 +651 322 3 880126632 +855 462 4 879825383 +934 1 2 891225958 +393 134 2 887746824 +895 885 2 879437868 +394 151 5 880886919 +555 274 4 879964240 +716 83 4 879795906 +891 323 3 883489806 +862 789 5 879304941 +943 831 2 875502283 +622 977 2 882591804 +645 357 5 892053274 +10 707 5 877886783 +764 231 3 876246409 +648 1626 1 884795447 +916 739 3 880845589 +167 465 5 892738341 +882 455 3 879862652 +343 260 1 876402556 +138 742 4 879023245 +592 3 4 882608960 +343 317 5 876405130 +416 96 4 893142245 +919 660 4 875373945 +918 143 4 891988726 +823 219 2 878439038 +896 715 3 887159895 +882 969 5 879880132 +236 411 1 890117095 +843 62 4 879444891 +671 237 5 884037003 +507 895 5 889964202 +815 167 2 878697705 +465 513 5 883530015 +18 317 5 880131144 +650 226 3 891370031 +798 133 3 875303559 +6 537 4 883601277 +795 144 4 881265483 +495 154 4 888633277 +655 715 3 887476942 +619 56 3 885953992 +828 116 4 891035724 +869 1014 4 884493279 +425 97 2 890347247 +840 221 4 891203309 +317 683 2 891446412 +761 243 3 876189749 +932 86 4 891249146 +592 628 3 882608107 +870 732 2 882123355 +936 1377 5 886832183 +854 509 4 882814333 +498 265 2 881957489 +834 237 5 890862437 +551 568 4 892783906 +847 77 4 878941421 +826 2 3 885690713 +856 316 5 891489547 +901 20 1 877130406 +898 313 4 888294375 +452 528 4 875261261 +638 185 5 876695601 +836 302 5 885753506 +536 88 4 882360601 +452 172 4 876297413 +927 8 4 879183164 +342 57 3 875319457 +929 654 3 879640290 +703 742 3 875242852 +933 483 4 874854424 +927 411 4 879182939 +207 238 2 876079087 +858 293 3 880932692 +932 836 5 891250142 +894 1153 3 882404642 +892 99 3 886610996 +907 393 5 880160009 +823 154 5 878438607 +119 471 4 886177338 +773 264 2 888538348 +748 588 4 879454497 +930 281 4 879535056 +747 9 5 888734012 +776 637 3 892920381 +894 25 2 880416137 +295 582 5 879517721 +546 271 5 885139779 +933 424 1 874938833 +451 885 1 879012890 +655 954 2 887428031 +666 282 3 880313482 +814 145 2 885411749 +846 175 5 883948048 +768 222 4 883834705 +500 49 4 883876053 +798 395 3 875915279 +643 428 4 891447196 +507 306 5 889964677 +886 282 3 876032378 +897 649 3 879992004 +757 433 4 888445684 +894 707 4 882404250 +903 479 4 891032793 +825 1034 4 881185343 +695 343 4 888806120 +394 33 4 880889259 +859 151 2 885775067 +916 176 4 880844419 +379 28 4 880524943 +862 566 3 879304571 +436 1263 3 887772060 +39 319 4 891400094 +269 940 1 891451908 +406 184 2 879792863 +592 203 5 882956276 +271 1282 2 885847666 +708 352 1 892718596 +719 427 4 883354106 +625 486 3 891953617 +894 639 5 882404430 +632 633 4 879459003 +933 67 1 874938430 +214 721 3 891635915 +450 1421 4 882399664 +943 173 5 888638960 +794 13 4 891035582 +456 129 3 881372604 +779 225 4 877454525 +833 336 2 878078056 +336 50 4 877759224 +864 195 4 888888937 +922 127 3 891453105 +889 269 4 880176518 +311 230 5 884364931 +896 470 2 887159531 +786 684 4 882843607 +864 97 4 888887216 +840 183 5 891204664 +908 12 3 879722603 +184 274 4 889907812 +831 197 4 891354751 +873 259 1 891392698 +770 123 3 875972100 +653 441 3 890181186 +916 1010 4 880843482 +889 700 3 880182295 +95 473 4 879193353 +917 285 4 882911122 +796 591 3 892611093 +905 871 2 884984149 +645 428 4 892054684 +829 582 4 881699060 +752 1279 3 891208491 +119 1137 5 886176922 +940 508 5 885921198 +10 484 5 877891904 +796 53 1 893048713 +655 1645 4 892871225 +854 185 4 882813877 +450 25 3 882376188 +880 172 5 880167695 +850 132 5 883195236 +790 317 4 885155949 +527 499 5 879456490 +293 558 3 888906143 +904 255 5 879735380 +868 588 1 877106421 +197 227 3 891409936 +405 972 1 885546445 +890 436 3 882402949 +443 39 1 883505492 +727 22 4 883710236 +899 318 4 884121512 +757 403 4 888466461 +77 222 4 884732873 +634 685 4 875729535 +585 462 3 891283124 +839 130 3 875753029 +806 1129 3 882384988 +905 322 3 884983341 +805 367 4 881705108 +686 194 5 879546443 +870 47 3 875679958 +916 1014 3 880843683 +617 559 1 883789507 +175 187 4 877107338 +846 73 4 883949728 +405 1208 1 885546577 +897 717 1 879993912 +588 283 4 890015835 +932 511 5 891250282 +405 638 1 885549589 +932 805 4 891250236 +896 399 1 887161151 +896 241 5 887158791 +117 895 2 886019030 +586 806 4 884058611 +807 578 4 892530582 +937 988 2 876768983 +521 79 4 884477656 +774 413 1 888559013 +85 1075 3 879454400 +627 229 2 879531459 +711 1289 2 879991458 +683 607 5 893286207 +551 51 5 892784780 +552 845 3 879222368 +882 69 5 879864917 +854 286 1 882811742 +741 313 4 891455095 +788 629 1 880870149 +919 333 4 875920290 +746 210 5 885075211 +922 145 3 891450315 +892 480 4 886607844 +660 121 2 891197954 +683 346 4 893286347 +936 864 4 886833360 +773 200 4 888540279 +483 473 3 878953090 +361 527 4 879441462 +466 121 3 890285034 +650 151 3 891387418 +889 540 2 880182317 +927 328 4 879176059 +299 319 3 889501480 +695 358 5 888806270 +148 164 4 877398444 +164 690 4 889401241 +882 378 5 879868198 +486 246 3 879874545 +151 498 5 879524150 +887 673 5 881381382 +846 615 5 883948003 +908 481 3 879722754 +907 5 5 881030348 +896 260 2 887157732 +246 384 2 884923632 +716 1101 5 879795467 +697 895 2 882621548 +693 662 4 875482604 +606 154 3 880923862 +814 98 4 885410957 +671 98 4 883949357 +405 877 1 885549903 +650 2 3 891381709 +924 100 4 884371558 +911 627 3 892840888 +26 248 3 891377468 +416 231 3 878880244 +666 428 3 880139439 +429 44 3 882386171 +248 323 1 884534472 +907 258 4 880158316 +747 258 2 888638335 +332 562 5 888098328 +916 1597 3 880845206 +892 202 4 886608135 +844 241 4 877387150 +815 88 4 878695176 +601 9 4 876347196 +77 183 5 884732606 +198 428 4 884209188 +935 125 4 884472575 +177 204 3 880131011 +115 696 4 881169984 +267 183 4 878971438 +834 268 3 890860194 +932 136 5 891249736 +222 1206 2 878184899 +378 428 3 880055101 +846 496 3 883947630 +683 513 5 893286208 +883 739 2 891696715 +679 423 3 884487112 +933 234 3 874853957 +927 118 5 879181042 +592 134 5 882955794 +798 703 4 876177414 +474 343 3 887915082 +159 1254 1 884360361 +804 746 4 879444890 +532 759 2 888631120 +387 188 5 886483151 +870 570 2 879714681 +591 26 3 891031526 +913 276 3 881037047 +926 292 3 888636202 +916 844 3 880843465 +796 649 3 893194646 +788 317 4 880869945 +909 170 5 891920276 +532 127 5 893119438 +543 732 3 877547863 +794 1251 4 891034755 +730 685 2 880310569 +10 686 4 877886911 +374 82 4 880394484 +922 219 1 891449901 +484 186 4 891195219 +13 141 2 890705034 +339 736 3 891035093 +691 227 4 875543108 +711 83 5 879993628 +749 833 2 878850565 +455 286 5 878585250 +663 597 3 889492917 +436 635 3 887771875 +823 204 4 878438930 +643 218 3 891449680 +835 523 3 891033560 +871 909 3 888192475 +707 923 5 886286092 +741 210 3 891455353 +499 524 4 885599073 +327 260 1 887743705 +889 26 4 880178748 +548 272 2 891042194 +886 467 4 876032577 +145 943 3 875272050 +727 209 3 883710186 +843 633 3 879447285 +666 357 4 880139526 +457 386 3 882549133 +759 294 5 875227708 +932 235 2 891250770 +234 1185 3 892335951 +711 419 5 879994581 +658 628 3 875145841 +536 181 5 882318369 +805 228 3 881694423 +682 728 3 888522021 +786 692 4 882843190 +70 418 3 884149806 +864 15 4 888887658 +943 419 2 888638920 +908 483 4 879722718 +880 218 4 880241355 +749 729 4 878848015 +697 879 4 882621486 +921 111 4 879380097 +487 11 5 883445495 +925 325 4 884633349 +896 489 5 887159674 +851 1598 3 886534882 +889 533 3 880177352 +921 259 4 884673369 +378 38 3 880333383 +936 904 5 886831415 +472 356 3 875983231 +508 50 5 883777430 +146 311 4 891457714 +920 313 5 884219701 +425 293 4 878738992 +943 239 5 888639867 +893 358 2 874828296 +721 222 5 877138584 +911 151 5 892840916 +669 97 4 891517238 +414 270 5 884998972 +405 176 1 885547909 +5 375 3 875637587 +24 518 4 875323552 +892 22 5 886608714 +846 28 5 883948685 +535 498 4 879619224 +524 134 5 884634848 +683 328 2 893283728 +13 182 5 882139347 +95 433 4 880571950 +357 826 3 878951984 +546 121 5 885140909 +559 513 5 891033956 +26 323 2 891349184 +919 23 3 875373074 +833 250 3 875036499 +716 178 5 879795269 +379 433 4 880525259 +787 288 1 888979236 +450 228 4 882373019 +932 1449 5 891248937 +904 815 4 879735678 +846 510 4 883948003 +807 230 4 892530216 +921 245 1 879379361 +618 31 4 891307577 +899 29 2 884122844 +932 1558 5 891248996 +618 506 4 891308296 +825 284 3 880756603 +416 392 5 893213444 +847 716 3 878941370 +56 295 3 893257941 +855 166 4 879825578 +721 1393 3 877137598 +934 708 3 891192329 +932 121 3 891251669 +671 562 5 884036365 +902 8 5 879465765 +913 95 4 880826766 +781 302 5 879633862 +299 114 4 878191943 +923 9 4 880387306 +913 729 3 881368824 +650 131 3 891372258 +305 69 3 886324299 +181 1137 1 878962392 +779 118 5 875994324 +642 1152 5 886569828 +880 227 2 880167918 +387 25 2 886481271 +864 257 4 891044192 +931 298 4 891036849 +887 95 4 881379718 +940 436 4 885921542 +699 323 4 879147366 +62 528 5 879375080 +841 322 4 889067152 +896 2 3 887160000 +560 606 4 879975613 +896 480 3 887158185 +693 58 3 875482477 +908 478 4 879723046 +759 281 4 881476991 +438 252 4 879868364 +906 283 4 879435524 +812 682 4 877625224 +901 94 4 877131738 +825 252 5 880757103 +913 427 4 881725960 +890 671 5 882404571 +932 855 5 891249109 +875 294 2 876464755 +671 118 5 875389187 +537 12 3 886031074 +934 72 3 891195982 +666 291 3 880313640 +622 3 1 882672922 +224 126 3 888103704 +684 210 3 878759474 +798 732 2 875638759 +669 248 4 892549412 +935 118 4 884472704 +392 174 5 891038979 +374 471 4 880393056 +913 919 4 880758150 +34 288 2 888601628 +711 94 2 879995728 +778 219 3 890727129 +283 109 4 879297237 +720 272 4 891262762 +864 729 4 888889035 +745 10 5 880123905 +651 276 4 879348966 +429 939 4 882384986 +719 520 5 879360466 +922 43 3 891454445 +864 143 4 888887703 +833 58 2 875124495 +805 716 4 881696980 +524 471 4 884322169 +910 628 1 880821319 +660 79 2 891199348 +53 15 5 879443027 +833 4 3 875123781 +542 72 3 886532818 +788 1107 3 880870773 +870 357 5 875679687 +456 72 1 881374801 +24 58 3 875323745 +342 1010 1 874984574 +902 271 2 879463433 +913 657 5 881725761 +788 96 3 880868803 +718 1028 4 883349191 +864 117 4 888889466 +715 576 2 875964468 +897 506 4 879991524 +889 28 4 880181995 +865 763 1 880143680 +911 655 5 892839719 +693 50 3 875483881 +651 309 1 880126632 +862 435 5 879304244 +727 827 3 883709839 +727 229 2 883711476 +554 866 3 876232486 +794 19 4 891036111 +883 694 5 891693110 +923 151 4 880388021 +404 339 1 883790609 +809 300 4 891036903 +711 157 3 879994608 +758 6 2 881976919 +648 441 3 884883724 +551 229 5 892784779 +931 750 5 891037521 +463 1199 1 889937778 +912 659 5 875966202 +523 155 4 883703091 +927 552 4 879196283 +664 509 4 876523654 +758 541 4 881977747 +833 940 2 875134411 +667 427 5 891034767 +666 513 4 880139323 +624 866 3 879793436 +878 1039 3 880866508 +860 344 3 887028250 +554 56 4 876550257 +749 478 5 878847328 +387 408 4 886484492 +768 346 3 883834705 +823 17 4 878439655 +398 712 2 875736732 +567 429 4 882426899 +627 526 4 879529916 +907 710 4 880160106 +95 507 4 880571226 +880 1184 3 880167806 +856 327 4 891489478 +551 628 5 892783177 +839 845 4 875752237 +804 357 5 879441450 +886 628 3 876031695 +704 519 3 891397262 +804 455 5 879443609 +354 936 4 891216607 +336 579 3 877757373 +639 165 3 891239658 +490 458 3 875428417 +907 1047 5 881030348 +890 313 5 882914803 +659 164 4 891384606 +20 82 4 879669697 +893 286 4 874828384 +942 435 5 891282931 +429 194 4 882385705 +312 644 5 891698987 +323 651 5 878739829 +786 458 3 882842195 +880 191 5 880175597 +675 427 5 889489691 +901 1605 5 877127052 +560 11 4 879975485 +618 49 3 891309514 +778 423 1 890803860 +819 147 5 884105025 +620 560 4 889988232 +926 294 3 888636269 +748 58 4 879455083 +862 82 4 879305237 +843 234 4 879443297 +378 436 4 880046437 +660 123 2 891198109 +700 98 3 884494215 +642 95 5 886131547 +822 1 4 891037291 +709 697 5 879847946 +886 943 3 876032248 +63 121 1 875748139 +890 136 5 882403045 +603 288 3 891956283 +927 155 4 879193972 +924 237 4 889286746 +826 810 3 885690854 +64 732 4 889739288 +659 499 4 891385438 +883 14 3 891693675 +689 1 3 876676211 +682 42 5 888518979 +374 25 5 880393191 +906 277 3 879435469 +363 100 5 891495070 +886 47 4 876031601 +93 118 3 888705416 +756 588 4 874829258 +664 100 5 876523833 +867 156 5 880078574 +940 271 2 884801053 +70 1030 2 884151801 +347 693 5 881654156 +592 1620 1 882609057 +703 1012 4 875242852 +884 713 3 876858914 +639 356 2 891239380 +608 187 4 880403055 +704 89 5 891397305 +499 100 4 885599040 +92 225 3 875640740 +648 496 4 884796822 +299 20 3 877880111 +606 546 4 878149278 +916 83 4 880845206 +578 325 1 888957735 +747 1659 1 888733313 +940 137 3 885921758 +919 755 3 875373889 +694 28 4 875729304 +533 1001 1 879366160 +290 183 4 880474054 +939 254 3 880262319 +939 841 4 880261868 +407 94 4 876345492 +913 436 3 881367312 +798 941 3 876176561 +867 328 5 880077855 +7 639 5 891353676 +409 854 4 881108648 +119 323 4 874774449 +896 387 2 887159368 +679 286 5 884312660 +386 181 3 877654961 +593 775 3 875672949 +620 422 1 889988036 +290 151 2 880474835 +406 157 3 882480865 +871 226 5 888193177 +749 977 4 878850502 +804 229 4 879445816 +894 1592 4 889469391 +784 331 4 891387155 +804 100 5 879445904 +892 521 5 886608263 +897 76 4 879992811 +352 175 1 884290574 +548 1047 4 891416011 +653 42 2 880151818 +554 117 4 876231777 +598 259 3 886710977 +323 334 3 878738865 +690 72 2 881177553 +669 125 3 892549622 +688 749 5 884153712 +889 1553 3 880180979 +900 237 4 877832803 +653 410 1 878855024 +933 227 1 874939078 +239 39 5 889181093 +766 550 3 891310210 +692 66 2 876953130 +49 235 2 888068990 +613 89 5 891227237 +927 404 4 879197692 +682 284 4 888519725 +613 12 5 891227299 +455 546 3 879110767 +849 406 4 879695125 +896 313 4 887235122 +869 151 5 884493279 +506 5 4 874874947 +804 208 5 879441412 +927 402 4 879192123 +758 208 4 881978148 +801 881 3 890332820 +417 568 2 879648155 +682 765 4 888523581 +919 301 3 875288164 +815 444 2 878698407 +646 288 3 888529127 +852 568 4 891037947 +808 872 5 883949986 +160 488 5 876862078 +890 603 5 882404851 +575 168 5 878148358 +683 331 2 893283728 +907 277 5 880158794 +72 844 4 880035708 +899 214 4 884122044 +56 405 4 892679460 +847 204 4 878939912 +764 286 4 876232900 +721 322 4 877136891 +188 300 4 875071195 +881 474 3 876537870 +428 269 5 885943749 +11 229 4 891905878 +405 1382 1 885549790 +758 435 5 881975853 +790 213 3 885156336 +779 252 3 877453656 +883 81 5 891717908 +906 287 5 879435524 +328 582 5 885045844 +694 434 5 875727018 +537 1147 3 886031473 +883 354 4 891692000 +939 405 4 880261450 +927 722 3 879197421 +749 401 1 878850015 +916 431 3 880844655 +932 45 5 891249063 +416 111 4 876697592 +430 127 4 877225484 +830 487 5 891898415 +615 86 5 879448439 +911 603 5 892838864 +708 457 4 892718965 +325 1487 3 891480086 +864 172 5 888887795 +381 588 3 892697338 +297 690 5 876717812 +921 136 4 879380806 +541 459 5 884047153 +648 671 3 884883476 +717 1047 4 884642981 +748 195 4 879455083 +314 609 4 877889311 +890 200 4 882402633 +896 1622 2 887160296 +886 181 5 876031392 +567 10 4 882426508 +940 82 4 885922040 +817 273 5 874815885 +927 756 4 879181259 +429 156 4 882384920 +42 87 4 881107576 +433 300 3 880585068 +731 1039 4 886182366 +201 239 1 884140275 +891 756 4 883429918 +600 1419 3 888452564 +846 616 3 883950753 +655 956 3 888984538 +743 286 3 881277602 +933 11 4 874853899 +776 193 3 891628895 +875 302 5 876464694 +633 226 4 877212085 +602 300 3 888637847 +889 1110 3 880182943 +660 1133 2 891201419 +638 405 3 876695338 +683 289 4 893286260 +568 134 5 877907092 +930 690 3 879534335 +650 144 3 891381585 +892 1285 4 886609435 +526 258 3 885681860 +790 90 2 885157440 +924 849 3 886760052 +934 286 4 891188367 +321 498 5 879438699 +650 443 5 891369982 +682 209 3 888521381 +890 604 5 882403299 +533 293 3 879191469 +579 4 2 880952271 +796 99 3 893218764 +782 328 5 891498030 +943 722 3 888640208 +181 273 1 878962774 +721 127 5 877140409 +868 1076 1 877111487 +711 723 5 879994852 +933 7 4 874854190 +608 216 5 880403239 +756 622 3 874830790 +627 660 4 879530463 +43 254 3 875975323 +889 881 3 880176717 +922 69 3 891453106 +435 208 4 884131515 +901 768 3 877131793 +654 189 4 887864230 +627 684 4 879531301 +880 881 4 892958401 +222 410 2 877563326 +406 26 3 879793235 +405 79 5 885544798 +567 705 5 882426105 +655 1173 2 887431157 +622 109 5 882590559 +622 391 2 882671827 +701 237 5 891447198 +666 962 3 880314272 +899 597 2 884120270 +41 191 4 890687473 +105 347 3 889214334 +93 14 4 888705200 +533 56 3 879439379 +919 319 3 875288164 +896 845 3 887159531 +409 632 3 881107902 +858 323 2 879459926 +843 180 3 879447234 +769 1322 2 885424730 +865 946 1 880235099 +896 42 4 887160000 +919 93 5 875288681 +354 432 3 891218380 +764 200 4 876244895 +761 1558 1 876190511 +393 1001 4 887745410 +200 447 4 884130014 +938 126 4 891356656 +889 684 2 880180376 +708 740 5 877325687 +514 153 4 875463386 +943 785 2 888640088 +635 688 2 878878838 +881 511 5 876537419 +660 419 2 891199348 +837 950 2 875722169 +440 304 5 891546785 +321 52 3 879440612 +15 225 3 879456447 +579 153 4 880952335 +551 49 3 892783281 +865 411 1 880144153 +850 496 5 883195079 +749 449 3 878850610 +276 92 4 888873675 +621 926 3 880738894 +291 240 4 874833726 +754 273 3 879451516 +64 651 4 889740795 +933 180 5 874854723 +883 199 4 891717462 +845 904 3 885409374 +890 173 4 882575167 +772 331 5 876250551 +835 632 5 891033747 +488 162 3 891376081 +593 535 3 875659943 +505 300 4 888631046 +894 272 4 885427952 +130 751 5 884623756 +796 748 5 892611979 +629 271 4 880116722 +862 658 5 879304526 +144 59 4 888105197 +658 192 4 875147935 +735 300 4 876697647 +226 596 3 883889884 +600 1274 2 888453145 +917 405 3 882911215 +561 492 4 885807369 +704 193 5 891397305 +943 229 2 888693158 +934 481 4 891191402 +874 514 5 888633311 +270 1109 5 876955899 +935 1 3 884472064 +879 118 3 887761562 +286 800 5 877534528 +839 1 4 875751723 +339 213 4 891033542 +861 463 3 881274698 +896 642 2 887160702 +184 735 3 889909868 +58 168 5 891611548 +826 183 5 885690482 +883 48 4 891717283 +747 403 5 888734113 +89 451 3 879459884 +373 168 5 877098297 +912 507 3 875965906 +479 131 3 879460999 +676 250 4 892686164 +594 100 4 874781004 +916 101 3 880845690 +846 183 4 883948048 +805 922 5 881702716 +741 67 3 891457456 +553 605 4 879949251 +474 509 5 887927457 +154 523 5 879138831 +262 747 4 879793641 +195 366 3 885110899 +592 531 5 882955765 +676 100 5 892686083 +854 709 4 882814395 +715 1088 1 875962454 +424 292 4 880859228 +919 419 5 875374269 +734 121 4 891026028 +804 763 4 879443776 +721 435 4 877139384 +806 196 5 882388437 +897 925 5 879993739 +747 726 2 888733387 +881 399 4 876538465 +393 575 2 889728712 +890 208 5 882403007 +655 153 2 887523641 +814 7 4 885411073 +735 237 4 876698714 +825 273 5 880756401 +308 396 4 887740099 +627 241 4 879531397 +943 566 4 888639886 +814 358 2 885410837 +825 696 3 889020961 +566 166 4 881649709 +504 561 4 887910023 +747 181 5 888639014 +14 663 5 879119651 +881 742 4 876536773 +778 168 5 890670560 +655 54 2 887430746 +373 79 4 877098979 +805 1157 5 881696124 +643 183 5 891447790 +563 294 3 880506121 +47 305 5 879439040 +802 266 3 875984938 +929 12 4 879640036 +85 196 4 879454952 +487 173 4 883445580 +145 293 4 875270276 +279 826 4 875297456 +681 538 3 885409516 +213 194 4 878955766 +642 252 5 885842962 +336 746 3 877758103 +530 181 3 886202320 +854 123 1 882812406 +14 25 2 876965165 +618 200 5 891307367 +936 928 3 886832502 +707 285 5 880059749 +903 46 4 891033123 +727 83 5 883710889 +523 56 3 883703495 +589 326 1 883352600 +561 160 3 885808904 +757 426 3 888467270 +943 230 1 888693158 +616 327 3 891224558 +887 756 5 881379094 +768 301 5 883835026 +880 186 4 880174808 +851 1254 1 875730895 +178 268 4 884837324 +795 154 3 881529904 +276 413 3 877934705 +551 660 3 892783672 +758 13 5 881977205 +67 1047 3 875379750 +495 1 4 888632943 +918 340 1 891986174 +556 321 4 882135994 +521 174 4 884478721 +866 303 4 891221165 +416 122 3 886315885 +5 373 3 875635907 +918 971 4 891987780 +534 118 4 877807935 +875 428 4 876465112 +620 393 5 889988196 +483 258 4 878950353 +802 569 3 875985840 +256 597 4 882152509 +49 404 3 888067765 +500 13 5 883865232 +648 1337 3 884367366 +454 387 2 888267279 +221 1208 3 875247565 +498 77 2 881961627 +924 429 4 886760020 +815 229 3 878695527 +650 174 4 891369479 +525 147 3 881085893 +848 199 5 887042341 +755 301 3 882569771 +697 237 5 882622414 +559 300 4 891035137 +775 333 4 891033022 +798 815 5 875295695 +398 8 3 875716709 +456 324 4 881372687 +727 472 2 883709374 +902 268 1 879463373 +862 69 5 879304244 +181 880 1 878961668 +848 483 5 887038021 +847 195 4 878940301 +459 257 5 879563245 +902 989 2 879465336 +314 12 4 877888758 +704 481 5 891397667 +660 444 2 891201948 +592 135 5 882955765 +847 172 4 878939803 +270 56 5 876955976 +586 978 2 884065825 +506 693 4 874876651 +843 431 3 879443763 +452 456 1 876209837 +751 484 3 889134483 +815 265 5 878696181 +880 67 1 880175023 +545 62 5 879899438 +883 195 5 891696824 +933 576 1 874939185 +870 802 3 879714763 +312 91 3 891699655 +923 926 4 880388383 +198 684 3 884208778 +189 473 5 893264558 +931 344 4 891035917 +880 179 4 880175735 +526 313 5 885681934 +435 98 5 884131576 +901 1643 5 877130473 +663 299 2 889491739 +271 466 4 885849490 +85 161 4 882819528 +435 333 3 884130647 +397 522 5 885349476 +452 223 5 885816768 +838 191 5 887065709 +798 323 4 875295469 +919 310 3 885059537 +727 96 4 883710152 +679 95 3 884487688 +727 363 3 883709641 +62 15 2 879372634 +579 331 3 880951346 +934 313 3 891188441 +916 402 3 880845177 +703 127 5 875242663 +931 125 4 891036786 +763 466 4 878922422 +122 197 5 879270482 +582 1 4 882961257 +655 1012 3 888474357 +456 229 3 881375482 +144 170 4 888105364 +130 794 5 875802137 +706 323 4 880996945 +832 678 2 888259984 +910 405 4 881420841 +848 519 5 887037980 +87 1178 3 879877208 +272 69 4 879455113 +932 506 4 891249710 +924 216 4 885458010 +644 873 4 889076310 +934 152 4 891194303 +592 148 2 882608961 +851 717 3 874728598 +682 692 3 888519207 +807 625 3 892978296 +301 17 4 882077142 +102 272 3 888112484 +943 431 4 888639724 +919 343 4 885059506 +922 631 3 891453171 +543 14 4 876896210 +916 132 3 880844597 +661 58 4 886841865 +394 393 4 880889350 +943 724 1 888639478 +650 378 3 891383879 +854 431 3 882813726 +943 67 4 888640143 +912 174 3 875966756 +918 86 4 891986798 +867 180 5 880078656 +922 402 3 891448451 +933 410 3 874854383 +843 161 2 879444891 +936 321 3 886831769 +757 455 3 888445035 +290 99 4 880473918 +41 205 4 890687353 +782 1589 3 891500028 +923 825 4 880387525 +864 451 4 888889563 +861 509 5 881274739 +864 228 5 888888067 +620 1480 3 889988281 +698 133 2 886367586 +721 748 3 877136967 +913 186 3 880946006 +883 514 4 891694182 +585 652 4 891285658 +911 163 4 892839846 +798 168 4 875743765 +720 902 4 891263460 +308 642 5 887738226 +846 204 3 883948141 +314 1029 2 877891603 +722 748 4 891280154 +537 703 3 886031859 +536 432 4 882360552 +919 946 4 875373416 +733 933 1 879535752 +889 1022 4 880176667 +940 313 5 884801316 +104 9 2 888465201 +884 198 5 876859237 +653 1231 2 880153349 +405 660 2 885546247 +757 561 2 888467380 +699 475 4 878882667 +405 389 2 885548932 +925 219 3 884718099 +943 201 5 888639351 +499 647 5 885599013 +682 1221 3 888517265 +892 1 5 886608185 +752 1463 4 891208261 +825 326 4 886696420 +507 345 5 889964202 +749 430 4 878847926 +189 532 4 893264150 +938 358 4 891355972 +407 131 3 875552400 +868 589 4 877106421 +943 386 1 888640186 +850 95 5 883195301 +862 252 3 879302910 +577 770 4 880475149 +234 623 2 892318107 +938 871 2 891356549 +553 524 5 879948996 +894 213 4 882404278 +631 332 3 888465180 +604 447 4 883668352 +94 182 5 885873089 +773 182 4 888539993 +907 111 5 880158883 +722 871 2 891281876 +90 500 4 891384721 +718 257 4 883348845 +334 10 4 891545265 +541 1409 4 883874778 +292 483 5 881105442 +642 759 3 885843824 +880 1035 4 880242933 +922 214 2 891454071 +488 323 1 891293263 +934 794 4 891192849 +532 187 4 884594932 +128 180 5 879967174 +907 405 4 880159113 +738 98 4 875350515 +886 194 3 876031365 +894 57 4 882404397 +757 574 3 888467187 +757 298 4 888444208 +339 346 5 891032255 +880 1157 4 880243817 +913 96 5 881725904 +533 778 4 879192157 +655 45 3 891585477 +880 591 4 880166990 +650 474 4 891385315 +870 1046 3 879714310 +771 111 4 880659919 +856 270 3 891489412 +932 153 4 891251063 +332 245 4 888098170 +751 809 3 889299429 +416 184 4 876699758 +770 473 5 875972612 +638 175 4 876695774 +623 185 4 891034343 +291 153 4 874871736 +682 24 4 888522575 +718 282 5 883348712 +641 483 5 879370259 +606 236 3 878150506 +822 189 4 891037394 +781 232 3 879634318 +854 482 3 882813761 +495 578 3 888636653 +916 531 4 880844331 +201 195 3 884111397 +447 237 4 878854234 +542 173 4 886532265 +918 462 3 891986933 +826 385 5 885690677 +828 463 2 891036717 +903 628 3 891031384 +894 933 3 880416472 +865 418 1 880235099 +542 384 3 886533227 +802 440 3 875985686 +233 215 5 877665324 +840 511 4 891204089 +585 30 4 891284393 +589 332 4 883352536 +643 118 2 891445741 +504 400 3 887911277 +889 9 4 880176896 +850 162 3 883195301 +647 298 3 876533005 +716 298 5 879793501 +821 459 5 874792698 +934 186 2 891190854 +620 418 3 889988005 +825 126 3 880755982 +59 129 5 888202941 +459 471 3 879562659 +886 581 4 876032103 +457 433 5 882397020 +533 755 3 888845338 +630 732 4 885668203 +280 222 3 891700624 +545 326 3 879898447 +622 161 3 882670712 +701 1 4 891447139 +901 688 2 877129839 +727 379 2 883712805 +854 811 3 882814091 +854 628 2 882812451 +480 169 5 891208327 +846 131 3 883948457 +653 76 3 880150702 +776 53 2 892313246 +592 1082 3 882608625 +885 300 4 885712224 +943 228 3 888693158 +896 386 3 887161172 +328 435 4 885045844 +473 285 4 878157404 +203 744 2 880434495 +798 826 5 875295695 +615 268 4 879447642 +320 340 2 884748230 +741 218 4 891455711 +935 934 4 884472743 +681 270 1 885409370 +921 419 5 879381234 +370 835 5 879434909 +398 153 4 875732862 +629 241 5 880116911 +839 1245 4 875752408 +466 684 4 890285034 +851 806 4 875731330 +645 674 3 892054402 +627 282 2 879530463 +637 1060 2 882904148 +663 1327 4 889493210 +922 375 2 891454552 +920 301 2 884220058 +927 204 4 879183511 +903 709 4 891033502 +879 276 4 887761865 +547 269 3 891282555 +889 427 4 880177880 +870 204 4 875680448 +115 117 4 881171009 +788 226 4 880870710 +933 79 3 874853819 +819 258 2 879952538 +932 562 2 891251611 +713 300 2 888881939 +546 682 3 885140097 +927 409 4 879176876 +903 520 4 891032911 +429 1438 1 882385705 +343 274 3 876403443 +899 499 3 884122308 +864 781 3 888891238 +923 1277 5 880388322 +774 525 2 888558305 +892 470 4 886609977 +563 871 2 880507263 +851 1540 2 875731529 +666 692 3 880568505 +927 819 3 879181508 +619 684 4 885954083 +345 42 2 884991873 +158 709 5 880135020 +911 191 5 892838676 +354 97 3 891217610 +839 181 3 875751991 +883 22 3 891696824 +403 237 5 879786221 +521 215 1 886062095 +217 808 2 889069808 +833 219 4 875224309 +548 294 3 891042954 +466 92 4 890285034 +910 134 3 880821676 +918 499 4 891986775 +933 200 4 874854783 +632 367 2 879459544 +297 338 2 881707832 +690 118 4 881180056 +919 183 3 875372802 +639 285 1 891239131 +535 190 4 879617747 +630 64 5 885668276 +781 1500 5 879634096 +793 685 3 875104718 +883 90 3 891694672 +935 281 5 884472310 +193 487 5 889124287 +498 1495 3 881958237 +85 520 3 882996257 +682 54 4 888517628 +889 297 3 880176845 +653 472 1 880606675 +606 58 3 880924483 +643 1098 4 891447696 +916 1682 3 880845755 +764 411 3 876243668 +904 117 4 879735316 +897 1219 4 879991137 +799 191 3 879254077 +707 26 3 886286954 +690 106 3 881180138 +811 678 5 886377686 +637 15 4 882903447 +135 5 3 879857868 +393 787 5 889554674 +308 537 4 887739136 +825 746 5 881101782 +607 19 3 883879613 +846 39 3 883948873 +919 1173 3 885059859 +927 174 3 879185327 +916 203 4 880844157 +884 213 4 876859207 +442 742 3 883391146 +901 211 4 877131342 +687 286 3 884651648 +769 476 4 885424142 +930 171 1 879535685 +537 584 2 886031678 +940 527 3 885921710 +882 369 3 879863257 +332 984 2 887916411 +820 302 5 887954906 +874 137 4 888632484 +142 134 5 888640356 +507 841 5 889966054 +537 423 2 886030622 +711 203 4 879994433 +880 201 4 880174834 +342 14 5 874984661 +616 302 5 891224517 +638 29 2 876694917 +889 216 4 880180191 +936 1115 4 886832859 +648 603 5 882212651 +889 1152 3 880177778 +847 705 3 878939700 +607 238 4 883879556 +860 310 4 880914645 +875 523 4 876465408 +708 294 3 892719033 +804 428 3 879445841 +270 554 1 876956264 +844 418 3 877388040 +694 185 4 875729520 +943 941 1 888639725 +933 561 3 874938808 +889 658 4 880181086 +606 184 5 880924790 +885 538 4 885712224 +896 392 3 887160187 +381 419 5 892696446 +585 283 4 891283124 +897 670 3 879991258 +870 253 4 887567321 +659 180 5 891385044 +562 566 4 879196483 +507 258 4 889963959 +659 162 3 891385136 +181 826 1 878963304 +535 382 5 879618058 +312 647 5 891698726 +899 433 4 884122178 +389 286 2 879915633 +890 102 3 882574982 +194 502 4 879548624 +642 568 4 885606735 +814 436 3 885411073 +450 170 5 887660440 +840 435 4 891204114 +766 385 3 891310281 +870 480 5 875680142 +58 584 5 884305271 +846 487 4 883948685 +771 251 5 880660087 +503 633 5 880472344 +927 96 5 879184761 +675 242 4 889488522 +890 210 4 882403587 +793 405 3 875104340 +6 490 5 883601365 +707 287 4 880059774 +454 86 2 888267280 +932 198 4 891249109 +87 598 2 879877279 +932 436 3 891251225 +790 240 3 884462692 +772 245 5 877533546 +932 101 3 891251225 +927 385 4 879193625 +749 1016 5 878846958 +676 912 3 892685489 +864 1033 2 888891473 +752 683 4 891208299 +846 549 4 883949421 +834 326 4 890860386 +897 117 3 879993210 +882 265 5 879867431 +145 268 4 888396828 +865 258 4 880142652 +921 405 3 879379774 +425 347 4 890346517 +432 1012 5 889415947 +907 553 5 880160056 +95 227 2 880572356 +756 155 4 874829637 +459 1013 3 879563226 +886 686 4 876033228 +916 230 3 880845177 +883 222 3 891717495 +898 316 5 888294739 +673 896 5 888787355 +843 419 2 879446617 +551 941 4 892782734 +70 227 3 884067476 +894 628 3 880416102 +582 321 3 882960555 +835 616 4 891033718 +660 91 4 891200193 +577 1028 4 880470764 +851 318 5 891961664 +851 17 5 875807089 +624 310 4 891961078 +823 26 5 878438930 +194 208 3 879521329 +916 3 3 880843838 +495 218 4 888635080 +761 477 1 876190235 +621 73 5 874962772 +864 343 5 887686545 +504 462 4 887838740 +707 1255 3 880061252 +671 255 5 884375221 +883 713 3 891692742 +663 509 4 889493437 +593 313 4 888871903 +551 475 5 892777910 +347 357 5 881653774 +541 543 4 883875432 +405 1260 1 885546835 +650 511 5 891369520 +878 1121 2 880867895 +243 306 4 879988830 +25 692 4 885852656 +899 28 5 884121214 +650 68 3 891381784 +479 252 2 879460628 +922 135 2 891453820 +796 707 3 892663154 +519 346 4 885929222 +889 125 4 880177435 +894 100 4 882404137 +756 1240 4 874829333 +658 55 4 875148059 +858 1368 4 880932449 +673 322 4 888787450 +655 528 5 887473570 +698 988 1 886365802 +922 228 4 891447665 +813 751 5 883752264 +334 304 3 891550557 +493 833 2 884131738 +417 191 5 879647498 +484 95 4 891195773 +932 208 5 891249794 +870 169 4 888095560 +201 15 3 884140670 +752 321 3 891208212 +615 582 3 879447968 +721 209 3 877150031 +883 515 5 891692657 +813 300 4 883752331 +514 432 4 875311156 +666 649 3 880568694 +194 501 3 879548319 +887 720 5 881380813 +793 979 3 875104620 +899 64 4 884121647 +899 724 5 884122776 +915 302 4 891029965 +933 159 3 874854190 +483 227 3 878953592 +178 118 4 882824291 +906 744 4 879435524 +417 153 5 879647580 +106 59 4 881453318 +797 257 5 879439362 +886 24 4 876031973 +913 169 4 880757553 +932 170 4 891248967 +548 471 5 891415709 +885 476 4 885713062 +223 173 5 891550711 +845 286 5 885409719 +535 632 4 879618965 +23 919 5 874784440 +802 646 4 875986155 +936 252 2 886833099 +661 50 5 876013935 +933 125 4 874854251 +586 227 2 884062010 +524 212 5 884635326 +889 742 3 880177219 +450 1126 4 887661961 +932 185 4 891250392 +941 273 3 875049038 +843 199 3 879446503 +848 479 5 887040302 +553 607 4 879949107 +251 202 4 886271920 +731 133 1 886184852 +380 174 4 885478924 +943 217 3 888640067 +894 350 3 886027788 +397 12 4 885349790 +860 70 5 885991040 +854 156 3 882813574 +332 554 3 888360460 +851 924 4 874789109 +493 262 3 884129793 +587 245 1 892871253 +796 91 2 893219033 +808 270 4 883949560 +71 100 4 877319197 +393 145 3 889731820 +886 367 4 876031622 +27 123 5 891543191 +936 825 4 886832502 +886 381 2 876032308 +747 511 5 888639138 +642 452 1 886569699 +843 660 2 879447484 +295 56 4 879517348 +405 582 3 885546336 +823 88 5 878438780 +20 204 3 879670039 +764 252 3 876244023 +405 657 1 885548578 +615 1128 1 879448715 +897 96 5 879990430 +561 89 4 885809556 +395 258 4 883762309 +429 778 3 882385294 +864 167 4 888891794 +691 243 1 875542944 +617 868 4 883788820 +759 181 5 875227798 +405 86 1 885546154 +721 1 5 877137877 +677 988 4 889399113 +128 1136 3 879969084 +938 596 5 891356532 +234 86 2 892333765 +892 430 5 886608296 +936 319 4 886831576 +940 420 4 885921979 +562 432 5 879196074 +642 827 1 886131332 +805 552 3 881696124 +880 1468 4 880242139 +486 108 4 879874810 +919 382 5 875373214 +934 581 2 891193814 +234 494 4 892078837 +515 259 3 887659123 +772 302 5 877533625 +918 520 3 891987571 +846 526 4 883947960 +869 1079 2 884493021 +328 54 3 885047194 +848 655 4 887040097 +95 623 3 880572388 +497 300 3 878759351 +181 237 5 878962996 +840 642 4 891204664 +447 282 4 878856290 +863 269 3 889288973 +643 79 4 891446826 +620 7 4 889987073 +804 193 4 879444518 +533 921 2 879439061 +683 259 3 893283642 +671 841 2 875388720 +932 632 4 891249649 +892 479 5 886608616 +361 50 5 879441417 +896 184 3 887159578 +784 327 4 891387315 +38 195 1 892429952 +917 473 3 882911390 +825 285 3 880756504 +838 584 4 887066143 +807 1076 3 893082227 +942 478 5 891283017 +927 217 1 879196955 +2 302 5 888552084 +806 234 4 882388036 +892 216 5 886609028 +234 792 4 892336165 +14 525 5 890881557 +637 93 3 882903511 +714 369 3 892777581 +559 347 3 891035343 +627 541 4 879531504 +842 288 3 891218192 +362 683 1 885019722 +862 258 5 879302461 +660 315 4 891197462 +776 219 3 892920321 +90 730 5 891384147 +293 501 4 888906378 +776 590 1 892920446 +892 150 5 886608136 +861 737 3 881274883 +669 474 4 891260369 +574 268 5 891279174 +440 213 4 891577950 +776 179 4 891628678 +528 1254 3 886812920 +659 519 4 891383889 +711 133 5 879992739 +465 127 4 883530667 +588 472 4 890026059 +185 302 4 883526267 +807 228 4 892529448 +788 511 5 880868277 +62 215 3 879374640 +92 922 1 875644796 +621 200 4 874964816 +671 504 4 883949781 +931 100 4 891036430 +770 129 5 875972352 +707 1024 5 890008041 +927 820 4 879177403 +621 79 5 874963594 +798 132 4 875639134 +695 989 3 888806056 +885 181 3 885712280 +305 242 5 886307828 +266 924 2 892258038 +795 108 3 880559483 +30 29 3 875106638 +735 127 4 876698755 +600 802 2 888453082 +881 217 3 876538131 +933 449 1 874939207 +898 310 4 888294441 +660 550 2 891201541 +912 268 2 875965695 +181 1033 1 878963381 +749 483 4 878847540 +38 447 5 892434430 +889 234 4 880177857 +913 56 5 880758974 +449 333 3 879958474 +748 732 4 879454749 +918 208 3 891988002 +116 275 2 876453519 +907 739 5 880159982 +916 405 2 880843579 +821 597 3 874793022 +864 357 5 888887794 +916 238 4 880845011 +250 144 4 878092059 +919 340 5 885059506 +878 451 2 880869135 +933 100 5 874853927 +838 127 5 887063657 +925 672 3 884718099 +826 95 5 885690342 +262 82 3 879794918 +725 328 4 876106729 +206 336 1 888179928 +659 616 4 891386577 +553 178 5 879948460 +862 197 4 879304623 +605 274 3 879425663 +907 235 4 880159222 +894 322 3 879896267 +586 257 3 884057471 +355 1429 4 879485423 +854 705 4 882813963 +805 79 5 881694423 +655 382 3 887427131 +894 1089 2 885428261 +893 69 5 874827818 +919 69 3 875921182 +666 211 4 880139382 +907 129 5 885862428 +643 571 3 891450316 +299 45 3 878192238 +864 402 3 888892128 +864 930 3 888892841 +877 185 4 882678387 +569 291 4 879794348 +880 684 4 880167778 +911 480 4 892838823 +924 896 4 884337242 +517 117 4 892659893 +90 498 5 891383173 +583 200 5 879384404 +795 28 4 880569414 +648 235 4 882212071 +927 1047 4 879181192 +709 693 4 879847082 +877 744 5 882677280 +880 239 4 880174808 +897 705 3 879991226 +864 1109 4 888890639 +826 227 4 885690713 +511 340 4 890004687 +880 95 3 880241219 +834 272 4 890860566 +551 4 2 892783711 +579 25 4 880952335 +807 1016 4 893083991 +576 100 4 886984965 +846 1210 2 883950791 +925 324 4 884633348 +707 692 4 886286092 +268 380 2 875310704 +693 443 2 875483741 +719 254 1 879360298 +373 317 4 877100061 +711 151 4 876185920 +18 116 5 880131358 +627 470 3 879530264 +222 405 3 877563570 +682 168 5 888521381 +733 100 5 879535471 +753 328 3 891401167 +489 876 2 891447218 +897 273 3 879993164 +551 85 1 892783749 +716 98 5 879795336 +877 971 4 882677386 +862 151 5 879304196 +394 928 4 881059902 +933 273 3 874855069 +842 303 5 891218002 +11 324 1 891902222 +25 657 4 885852720 +405 576 1 885548093 +343 1112 3 876406314 +582 240 4 882961804 +782 886 3 891498267 +936 295 3 886832502 +154 172 4 879138783 +863 354 1 889289191 +653 708 2 880152598 +921 50 4 879381051 +896 124 4 887158830 +933 58 3 874855121 +886 1228 2 876034228 +766 519 4 891308968 +896 435 4 887158579 +899 234 4 884122674 +758 211 4 881975736 +827 343 4 882201532 +26 288 4 891347477 +213 98 5 878955598 +22 385 4 878887869 +881 795 2 876539418 +660 271 3 891197561 +781 97 4 879634096 +830 648 5 891464148 +320 774 4 884751552 +755 938 3 882570023 +880 628 2 880166799 +439 1600 5 882893291 +524 226 3 884635085 +491 684 5 891189575 +457 88 4 882397763 +721 1221 3 877139637 +743 181 3 881277931 +880 1 4 880166744 +892 204 4 886608714 +268 747 3 875310412 +387 174 5 886480384 +880 194 5 880174623 +222 762 3 877563530 +923 475 5 880387664 +506 434 4 874876599 +758 300 2 880672402 +919 1073 4 875373416 +416 655 5 893213103 +805 181 3 879971215 +721 1295 3 877137214 +622 228 5 882592815 +905 508 4 884984066 +877 662 5 882677936 +622 501 3 882670480 +551 89 4 892777787 +903 302 4 891380461 +846 1479 3 883948720 +537 569 2 886032183 +854 171 4 882814333 +641 301 4 879369925 +326 478 3 879875083 +747 195 4 888640136 +665 222 3 884290676 +921 257 3 879379898 +721 266 3 877136967 +899 237 4 884120026 +934 157 2 891194498 +543 168 3 875663170 +419 494 3 879435749 +120 50 4 889489973 +588 1311 1 890029079 +825 98 5 881101641 +776 238 4 891628708 +943 41 4 888640251 +99 1047 4 885679472 +880 287 4 892958966 +451 990 3 879012684 +606 441 4 880927750 +401 610 4 891033651 +52 191 5 882923031 +533 521 3 879191022 +916 89 5 880844241 +223 121 3 891549294 +846 660 3 883948765 +763 845 4 878918712 +886 65 3 876031870 +672 237 2 879787811 +95 1222 2 880572602 +939 546 4 880261610 +908 528 4 879722397 +823 227 1 878439497 +894 689 3 880993390 +524 175 3 884634911 +629 160 4 880117361 +883 886 3 892439422 +917 312 2 882910627 +47 262 5 879439040 +788 670 3 880870935 +938 591 3 891356463 +691 735 5 875543228 +489 898 3 891366652 +748 479 4 879454428 +921 472 2 879380057 +943 92 5 888639660 +554 1284 3 876232053 +674 410 3 887763150 +805 431 1 881694713 +773 948 2 888538438 +796 33 3 893048471 +7 441 2 891354257 +867 198 5 880078723 +189 186 2 893266027 +293 628 3 888905004 +796 783 4 893047691 +733 846 2 879535848 +21 876 2 874950932 +354 210 3 891217717 +496 661 3 876067001 +933 679 1 874939078 +435 8 3 884131576 +758 582 3 881974823 +655 367 3 887428031 +49 1069 3 888068912 +804 174 5 879441476 +297 1109 3 875238922 +561 55 4 885808796 +918 83 4 891987914 +748 182 4 879454630 +712 90 3 874957027 +835 194 4 891034143 +405 110 1 885547506 +429 182 4 882384821 +881 1078 3 876539260 +684 477 5 878759560 +504 154 4 887839081 +501 1097 5 883347950 +751 689 2 888871738 +699 532 3 878882410 +507 307 5 889964239 +472 1029 4 875983321 +715 206 4 875964438 +663 749 3 889491617 +916 174 5 880844569 +449 1010 4 879958664 +756 82 3 874830748 +109 871 2 880572350 +921 760 2 879380164 +664 516 5 876525963 +663 259 2 889491861 +724 331 3 883757468 +833 347 3 887158791 +826 771 3 885690900 +671 1303 3 884036365 +94 559 4 891721777 +751 323 1 888871598 +899 190 4 884121051 +867 423 3 880078991 +376 705 3 879434750 +508 174 4 883767728 +450 516 5 882396564 +313 531 3 891014524 +722 597 3 891281710 +813 690 4 883752331 +731 195 1 886185851 +87 849 5 879875996 +286 240 3 876521858 +590 293 3 879439114 +645 198 3 892053644 +601 431 4 876351413 +544 301 2 884795580 +702 307 2 885767336 +419 300 4 879435347 +654 15 3 887863557 +125 571 3 892838827 +924 519 4 886759888 +548 413 3 891416049 +64 197 3 889737506 +657 455 1 884239498 +917 328 2 882910506 +682 944 3 888522073 +541 395 2 883866300 +298 282 4 884125629 +299 61 4 877880648 +851 4 5 875731489 +837 717 1 875722393 +897 646 5 879994113 +835 310 4 891035309 +875 286 3 876464694 +23 173 5 874787587 +592 260 4 882607690 +59 392 2 888206562 +846 195 4 883948141 +525 713 4 881086393 +92 433 5 875654665 +859 3 5 885775513 +332 302 5 893027264 +737 174 2 884314740 +632 651 5 879459738 +825 105 3 889021208 +474 448 5 887925751 +763 87 2 878919019 +693 628 4 875483020 +846 941 2 883949379 +339 178 5 891033310 +671 553 5 884036846 +871 752 3 888192744 +654 82 5 887864797 +870 193 5 889717102 +345 218 3 884992218 +861 381 4 881274780 +717 258 5 884642133 +821 483 5 874793517 +934 657 3 891191027 +110 403 3 886988134 +740 258 3 879522681 +551 245 3 892775723 +532 523 5 888637085 +912 655 5 875966320 +916 806 4 880844552 +299 179 4 878191943 +699 328 2 885775345 +279 644 1 875306552 +514 196 5 875318331 +870 21 3 876319159 +892 133 3 886609149 +830 127 4 891464054 +938 252 4 891357042 +551 790 2 892783942 +933 22 5 874853634 +896 258 5 887157258 +621 235 3 880738142 +92 855 5 875653162 +844 95 4 877388040 +864 531 5 888887739 +934 70 4 891195713 +551 96 5 892777987 +715 237 4 875962280 +679 290 2 884487715 +846 392 2 883950185 +938 245 3 891356282 +505 243 2 888631415 +913 189 3 881367594 +832 50 3 888260089 +870 1210 1 879902161 +435 366 2 884133134 +902 127 3 879464726 +804 187 4 879441973 +109 1139 2 880583463 +933 636 2 874939105 +820 358 1 887954972 +923 975 4 880388245 +932 486 5 891251177 +864 768 3 888890776 +665 271 2 884290055 +932 230 4 891251153 +537 45 3 886031786 +280 12 5 891700803 +458 64 4 886396005 +919 151 4 875289025 +597 286 3 875338983 +934 805 4 891194221 +484 125 4 881450017 +919 288 4 875288164 +345 286 3 884900521 +461 305 2 885355757 +914 778 5 887122085 +771 98 1 880659990 +577 732 4 880474414 +393 934 3 887745544 +655 535 2 888685914 +925 567 3 884718156 +434 424 1 886724913 +843 200 3 879447801 +269 1361 4 891446756 +897 180 5 879991007 +738 1016 3 875348912 +782 330 4 891498213 +905 117 3 884984066 +402 1284 3 876266984 +738 54 3 875351872 +697 225 3 882622680 +896 257 4 887235105 +176 257 1 886048188 +650 385 4 891381585 +918 70 3 891988248 +932 1139 2 891251562 +526 591 4 885682503 +864 79 5 888887830 +889 318 4 880180265 +659 155 3 891386540 +698 66 3 886367100 +297 284 4 874954497 +655 690 2 887477489 +805 71 3 881695560 +864 373 2 888892053 +472 549 5 892791063 +593 272 5 888871874 +565 923 4 891037333 +643 47 4 891446791 +159 9 3 880485766 +650 657 4 891372339 +911 478 5 892838823 +397 358 2 882838937 +293 98 4 888905898 +632 12 5 879456910 +894 1007 3 880416072 +846 142 3 883950053 +54 148 3 880937490 +763 85 4 878918960 +90 23 5 891384997 +892 181 4 886608212 +831 173 3 891354798 +823 715 5 878439065 +878 265 3 880866626 +327 249 2 887744432 +296 498 5 884197352 +867 197 4 880078796 +483 676 4 878950972 +151 73 4 879528909 +664 764 4 878092758 +758 608 5 881975182 +24 276 5 875322951 +429 479 4 882385358 +693 172 3 875483947 +445 1016 1 891200164 +892 684 5 886608743 +796 705 4 892690263 +76 96 5 875312034 +782 255 4 891499321 +773 240 2 888539273 +562 234 5 879196074 +452 210 4 875561852 +198 93 3 884205346 +927 229 3 879191722 +756 1031 2 874830819 +435 722 3 884133818 +757 228 4 888466461 +835 287 4 891035309 +727 879 4 883708208 +711 316 4 889911048 +943 50 4 875501835 +907 237 5 880159059 +561 159 1 885809356 +103 56 5 880416602 +880 554 3 880168411 +913 15 3 881367770 +870 1664 4 890057322 +924 605 3 885457975 +303 542 2 879484194 +871 989 3 888192744 +642 357 2 885603565 +919 191 5 875373824 +500 93 4 883865020 +934 650 4 891195503 +451 245 2 879012550 +363 224 4 891495682 +865 456 1 880144405 +889 604 3 880178342 +883 750 3 891691485 +890 7 4 882402739 +663 174 5 889493540 +551 215 4 892778035 +589 877 4 883352562 +786 265 4 882842946 +454 132 2 888266874 +936 100 4 886832092 +599 546 4 880953441 +666 655 4 880139439 +301 155 1 882078308 +911 625 5 892840807 +930 100 3 879534506 +644 308 4 889076095 +760 845 5 875666110 +612 127 2 875325049 +629 39 2 880117747 +825 323 4 881185672 +349 713 3 879465673 +611 302 5 891636073 +852 100 4 891036457 +875 45 3 876465072 +244 121 1 880604583 +797 1023 3 879439519 +489 683 2 891449099 +934 191 5 891190695 +918 498 4 891987025 +632 51 4 879459166 +716 135 3 879795071 +462 346 1 886365928 +885 338 3 885712224 +942 124 4 891283068 +868 80 2 877111453 +805 121 3 881694885 +407 650 2 875044400 +467 302 4 879532127 +581 137 5 879641787 +886 1093 1 876032654 +389 240 3 879916254 +921 659 5 884673799 +320 292 3 884748299 +77 42 5 884752948 +861 20 4 881274857 +815 98 4 878693183 +682 117 4 888522455 +943 367 4 888639679 +504 125 4 889550735 +715 17 3 875964105 +878 956 2 880866810 +936 237 4 886832672 +919 282 4 875289113 +326 701 4 879876141 +896 19 2 887159211 +905 591 4 884983951 +804 479 4 879441542 +816 322 4 891710922 +279 165 4 875310233 +774 64 3 888556517 +38 420 5 892429347 +845 242 4 885409493 +782 50 3 891499243 +868 12 5 877103834 +224 378 4 888103775 +566 94 2 881651636 +883 216 4 891694249 +913 22 5 881369920 +276 175 5 874787376 +130 117 5 874953895 +56 28 5 892678669 +533 820 2 887032380 +650 62 3 891381784 +586 67 5 884067059 +554 191 5 876243914 +482 682 3 887644022 +889 86 4 880180191 +328 176 5 885046052 +934 510 5 891193751 +648 82 5 884882742 +603 7 5 891956075 +280 1063 3 891700607 +839 458 5 875751893 +865 408 5 880143385 +496 88 1 876067346 +881 257 5 876536040 +802 565 3 875985976 +290 120 4 880732712 +595 1047 2 886921769 +795 2 3 883252599 +825 833 4 881101329 +886 546 1 876031550 +715 235 2 875962140 +750 258 3 879445755 +942 414 4 891282857 +930 24 1 879535015 +892 29 2 886610565 +899 498 4 884121767 +910 127 5 880822060 +761 508 1 876190206 +933 183 4 874853819 +804 1260 3 879445660 +776 134 4 892210460 +405 95 3 885548785 +916 382 4 880844674 +345 941 3 884993932 +889 291 3 880182815 +712 83 4 874730396 +234 659 3 892078660 +94 151 5 891721716 +757 95 4 888467270 +785 50 5 879439021 +912 498 5 875965830 +533 1142 4 888347670 +747 521 5 888640567 +526 245 2 885682124 +912 610 4 875966027 +894 345 4 884036815 +211 890 2 879461395 +911 431 4 892842368 +560 515 3 879976109 +641 432 5 879370119 +934 86 3 891191831 +815 559 3 878695877 +663 652 4 889493540 +919 303 4 875920245 +393 1058 4 887746916 +775 305 4 891032837 +694 15 4 875728842 +621 804 4 881445120 +843 423 2 879448019 +913 143 5 881725761 +207 792 2 876079016 +883 26 3 891693139 +919 1197 4 875288613 +550 257 4 883425337 +615 629 4 879449184 +719 382 2 879360965 +864 797 3 888892539 +59 86 3 888205145 +515 895 4 887659123 +920 286 2 884219953 +788 371 3 880870626 +793 127 5 875103773 +927 1 5 879191524 +757 554 3 888466683 +871 566 3 888193337 +782 1384 3 891500110 +910 684 4 880821696 +747 204 5 888732899 +659 712 3 891386307 +940 678 4 884801316 +486 813 5 879874516 +753 183 1 891401798 +840 521 5 891205069 +25 86 4 885852248 +866 340 2 891221165 +294 294 4 877818860 +606 185 3 880926759 +540 121 2 882157148 +910 310 3 881420170 +682 81 3 888517439 +782 269 3 891497698 +933 163 2 874938309 +752 902 5 891208452 +500 402 3 883875388 +846 558 4 883948221 +848 451 4 887042377 +358 208 2 891270510 +727 173 5 883710437 +833 802 1 887158946 +869 249 4 884493279 +846 386 3 883950154 +519 991 2 883250021 +931 304 4 891036105 +907 427 5 880159821 +912 646 3 875966429 +435 430 5 884131712 +631 873 2 888465084 +938 742 3 891356702 +932 474 5 891250418 +94 293 4 891724044 +875 23 5 876466687 +763 955 2 878917433 +851 161 3 875731490 +938 926 3 891357137 +716 1269 4 879795122 +896 100 3 887158294 +918 704 4 891988123 +294 295 4 877820132 +434 1 4 886724590 +922 432 5 891448551 +349 25 3 879465966 +533 609 4 879191184 +865 1 1 880143424 +896 211 4 887159554 +841 888 5 889067432 +103 98 3 880420565 +316 304 3 880853193 +332 550 5 887939092 +693 117 4 875483977 +679 483 5 884487010 +795 423 2 881265617 +919 118 4 875373582 +904 88 3 879735710 +893 220 3 874829187 +919 9 5 875288749 +555 235 3 879964209 +553 134 4 879948806 +892 196 4 886609622 +763 1098 3 878919083 +56 871 2 892910207 +552 1 3 879221716 +721 284 4 877141038 +477 111 5 875941763 +801 268 5 890332645 +880 23 5 880175735 +638 210 4 876695478 +621 585 4 874962988 +790 1047 3 885157621 +825 1049 3 880756834 +334 518 4 891547334 +49 300 1 888065577 +544 302 5 884795135 +523 168 4 883701962 +828 985 3 893186246 +297 153 5 875240053 +293 1119 1 888906655 +551 366 5 892784049 +916 157 4 880845011 +96 423 5 884403057 +788 323 3 880867855 +821 22 5 874793418 +892 239 4 886609829 +747 476 3 888733595 +716 696 2 879794615 +406 98 4 879446529 +642 402 4 885603792 +279 744 2 892864943 +758 176 5 882055987 +707 313 2 886288754 +900 661 4 877833747 +916 172 5 880843997 +403 282 5 879786052 +823 742 4 878438535 +889 135 2 880180101 +521 597 2 884476302 +919 137 2 875288749 +774 561 1 888557772 +532 407 2 874794386 +782 994 2 891500194 +854 343 3 882811773 +766 837 3 891309878 +406 286 3 879445250 +606 235 3 880922566 +114 527 3 881309586 +486 302 5 879873973 +903 210 4 891033541 +801 271 5 890332929 +936 988 3 886831912 +381 225 3 892697495 +923 544 4 880387507 +524 150 2 884832650 +551 686 3 892783829 +815 144 4 878693989 +646 307 3 888528902 +798 1102 4 875637680 +893 50 5 874829883 +840 1674 4 891211682 +942 678 3 891282673 +192 287 4 881368016 +606 198 4 880927665 +658 235 2 875145572 +747 659 4 888639175 +864 672 2 888889389 +893 819 3 874829355 +753 89 3 891402240 +897 371 2 879991007 +877 86 4 882677827 +805 371 1 881696759 +893 24 4 874828649 +514 1101 4 886189893 +847 164 3 878941056 +49 813 3 888068686 +693 134 4 875484539 +99 473 4 885679353 +881 70 2 876539220 +930 1010 2 879534692 +606 188 4 880924921 +878 153 5 880866177 +477 274 5 875941763 +872 685 4 888479348 +664 58 4 876525292 +712 501 3 874957140 +870 736 1 879901654 +312 83 4 891699538 +751 210 5 889133106 +666 192 4 880139615 +383 185 5 891192985 +312 525 5 891698424 +794 257 4 891036265 +711 91 4 879994413 +705 588 3 883427640 +758 345 5 883806413 +904 535 3 879735404 +708 880 3 892718919 +453 781 3 888206022 +896 288 3 887235788 +896 199 3 887158005 +896 79 5 887158384 +894 1295 3 879896268 +537 315 4 886029116 +889 82 4 880180122 +943 585 1 888640250 +881 79 4 876537825 +876 318 5 879428406 +504 153 3 887838624 +109 595 3 880572108 +833 284 1 885328485 +672 220 2 879787729 +308 530 4 887736584 +705 797 4 883428258 +634 111 4 875729794 +730 268 4 880309927 +773 29 2 888540218 +880 376 3 880175239 +661 665 3 876035999 +860 262 4 874967063 +138 497 5 879023947 +295 132 5 879517348 +933 452 1 874938808 +647 147 4 876532975 +463 269 5 877384802 +75 864 4 884049876 +871 97 3 888193541 +643 1215 3 891446489 +936 13 4 886832596 +714 257 3 892776410 +921 237 3 879379562 +213 70 3 878955766 +22 265 3 878888066 +379 317 5 880525001 +790 403 4 885157036 +773 367 2 888539576 +833 410 3 878078390 +782 361 3 891498139 +99 433 4 886780105 +11 11 2 891904271 +932 503 4 891249962 +764 69 5 876244991 +284 315 5 885329593 +784 340 3 891387895 +929 197 3 880817780 +918 972 5 891988054 +585 313 3 891281385 +862 406 4 879303843 +468 44 4 875302208 +630 471 4 885666955 +889 96 4 880181015 +264 173 5 886123358 +716 465 5 879797177 +682 586 1 888522700 +244 455 2 880604503 +846 509 4 883948765 +291 582 4 875087720 +486 825 2 879875188 +663 833 4 889492796 +628 301 4 880777046 +790 1014 2 884462551 +690 514 1 881177430 +641 258 3 879369806 +878 1092 3 880867444 +311 415 3 884365654 +880 91 3 880241256 +457 1221 4 882549438 +807 596 4 892530792 +880 411 4 880167328 +804 476 3 879443852 +674 181 4 887762603 +537 303 4 886028706 +829 10 3 881707829 +305 127 5 886322412 +788 148 3 880869215 +11 747 3 891906426 +690 443 3 881179937 +645 959 4 892053541 +579 294 4 880951494 +291 562 4 874835242 +655 916 2 892436455 +893 121 4 874830313 +711 549 4 879994719 +751 94 3 889298964 +661 218 3 876035933 +771 82 2 880659686 +829 212 4 881699005 +49 121 1 888068100 +581 936 3 879643155 +200 523 4 884129627 +906 284 4 879435469 +878 690 2 880865230 +877 306 3 882675993 +922 367 3 891452743 +823 919 4 878438206 +82 660 5 878769848 +10 604 4 877892110 +820 347 4 887954853 +915 691 4 891030108 +918 42 3 891987059 +682 401 1 888522260 +936 1171 5 886832757 +435 409 3 884134019 +343 478 5 876404499 +921 185 3 879380826 +758 237 4 881976377 +843 482 2 879447007 +130 444 4 880396495 +683 258 3 893282978 +729 346 1 893286168 +257 936 4 882050151 +682 147 1 888523619 +747 127 5 888639362 +378 25 4 880044489 +744 483 4 881171452 +740 1038 4 879523187 +716 1126 3 879796138 +892 288 4 886610626 +756 1652 1 874828198 +760 748 4 875665867 +721 1026 3 877137214 +804 40 3 879445739 +22 233 3 878888066 +493 435 5 884132015 +864 201 5 888887172 +326 56 2 879875691 +606 1065 5 880924323 +92 1210 1 875907179 +533 740 4 879192815 +890 448 2 882915661 +662 1511 4 880570301 +870 659 4 875680020 +454 1089 2 881959437 +935 620 2 884472627 +880 475 4 880166798 +881 473 2 876536636 +892 511 5 886608296 +639 865 1 891239427 +881 120 2 879052376 +682 62 3 888522541 +660 301 3 891197661 +902 79 5 879465952 +871 269 3 888192970 +711 969 5 886030557 +64 503 4 889740342 +731 608 4 886183515 +938 237 2 891356549 +840 653 5 891209389 +788 531 4 880868144 +932 1456 4 891250891 +932 502 4 891249710 +512 186 5 888579520 +339 644 5 891033200 +541 1030 3 885595972 +930 257 4 879535392 +800 15 4 887646631 +655 1142 2 891585344 +796 573 4 893218521 +588 447 3 890026009 +375 234 5 886621917 +788 159 3 880869135 +253 966 5 891628181 +763 198 5 878915958 +592 984 1 882607690 +880 794 4 880243265 +535 277 5 879619107 +846 51 4 883949121 +406 101 3 879793112 +846 1041 4 883950791 +679 318 5 884486812 +927 426 4 879191432 +918 1172 3 891987622 +618 1063 3 891308459 +804 483 5 879441627 +815 159 3 878694306 +509 271 4 883591195 +860 663 3 885991101 +871 301 4 888192475 +932 82 3 891251246 +13 429 5 884538727 +848 523 5 887042341 +787 345 3 888979007 +269 739 1 891451431 +734 230 2 891022803 +851 815 3 874767550 +653 1042 2 880151488 +924 527 4 885458009 +318 143 5 884495944 +911 26 4 892840048 +843 1157 3 879444114 +894 237 4 880416176 +913 258 4 889331049 +919 124 3 875288522 +934 624 4 891193290 +793 742 3 875104648 +548 176 4 891044355 +864 1140 1 888892491 +655 1245 3 887426087 +561 99 3 885808673 +279 544 1 890451433 +44 97 2 878348000 +805 213 3 881696699 +886 55 4 876031622 +178 1028 3 882824670 +852 506 4 891037917 +567 513 4 882426719 +907 312 5 885860416 +608 287 3 880406950 +16 66 4 877719075 +797 294 3 879439105 +495 240 4 888636773 +776 559 4 892920351 +601 473 3 876347665 +682 65 3 888517416 +117 282 5 880126295 +1 152 5 878542589 +933 393 2 874938371 +806 180 4 882388082 +177 160 4 880131011 +41 135 4 890687473 +658 198 5 875148108 +221 38 2 875246506 +622 1149 3 882592314 +514 421 4 875463269 +657 873 3 884238614 +659 505 4 891385769 +500 1057 3 883877359 +823 517 5 878437658 +919 111 4 875288681 +892 300 4 886607521 +445 183 2 890987687 +836 187 5 885754200 +705 471 5 883427339 +650 602 4 891371116 +305 97 4 886322560 +812 302 3 877625109 +303 191 5 879466937 +567 494 5 882425932 +919 147 4 875289322 +554 1028 3 876551044 +338 990 4 879437607 +758 117 4 881976203 +560 222 4 879976706 +913 408 5 880758348 +829 105 3 881711924 +435 603 3 884131118 +623 274 4 891034053 +639 60 3 891239790 +862 176 5 879304672 +373 178 4 877099352 +896 91 2 887159369 +279 7 5 891209102 +804 291 4 879443819 +930 143 2 879535462 +280 183 3 891700588 +561 9 4 885807546 +838 1039 5 887065782 +929 144 3 879640394 +315 288 3 879821349 +709 762 3 879848925 +588 301 5 890015021 +21 53 4 874951820 +630 1079 1 885667508 +642 257 5 886131546 +942 318 5 891282903 +891 127 4 883431353 +21 273 4 874951349 +883 70 3 891693169 +492 1121 2 879969720 +747 196 2 888640046 +499 56 4 885599182 +875 134 5 876465188 +899 414 2 884122228 +606 588 5 880923862 +642 1055 4 886569483 +839 333 4 875751442 +130 1278 5 876251127 +3 346 5 889237455 +887 1060 5 881378570 +719 255 2 883981599 +387 581 4 886483394 +382 756 3 875946185 +922 411 1 891455379 +769 13 4 885424214 +889 705 4 880178287 +904 785 5 879735731 +582 328 3 882960555 +870 1044 2 879714772 +729 894 1 893286511 +916 137 5 880843482 +749 433 3 878848217 +892 483 5 886607642 +938 118 5 891356799 +929 589 5 880817708 +846 187 4 883947911 +458 69 2 886397988 +645 202 3 892053518 +630 546 3 885667056 +889 959 3 880182103 +407 101 3 876338186 +935 181 4 884472039 +654 248 2 887863596 +330 496 5 876546172 +559 652 4 891035633 +896 69 5 887158768 +833 180 5 875123677 +932 523 4 891250080 +923 121 4 880387908 +650 153 4 891382138 +830 228 3 891561607 +896 661 4 887158384 +465 835 3 883531026 +788 192 4 880868838 +940 264 1 884801053 +901 321 1 877129839 +916 98 5 880844038 +911 87 5 892839056 +85 333 1 886282927 +691 772 5 875543281 +449 70 4 880410777 +907 172 4 880160008 +739 749 5 886825529 +847 157 1 878940463 +268 116 4 875306760 +484 393 1 891195246 +897 405 5 879993042 +932 99 4 891250236 +842 902 5 891218459 +524 1107 4 884636262 +833 26 1 875133661 +312 199 5 891698516 +293 162 3 888907312 +773 196 4 888540467 +374 117 5 880392846 +833 153 3 875038709 +881 651 5 876539549 +435 441 3 884133084 +239 203 1 889179291 +900 9 2 877832868 +943 427 4 888639147 +601 208 4 876350017 +577 97 5 880472153 +838 153 4 887066783 +896 300 2 887157234 +595 108 2 886921634 +770 323 5 875971612 +831 22 5 891354573 +829 475 4 891990718 +269 378 3 891449962 +868 65 2 877104212 +815 228 5 878694735 +682 804 3 888521740 +521 239 5 885254354 +625 732 3 891263960 +158 7 5 880132744 +374 477 1 885107929 +627 385 2 879531351 +894 271 2 880993335 +882 746 4 879865163 +908 663 3 879723022 +56 66 3 892911110 +932 513 5 891250316 +756 403 2 874828826 +659 526 5 891332224 +378 1091 2 880332911 +907 742 5 880158939 +931 281 3 891036883 +917 289 4 882910457 +184 95 4 889908801 +938 100 5 891356350 +885 1030 1 885713975 +642 400 4 886569278 +361 692 4 879440774 +407 73 4 892060474 +773 522 4 888539328 +803 322 2 880055043 +792 1164 3 877910629 +389 347 4 887868071 +894 52 4 882404507 +478 32 3 889395678 +527 9 5 879455873 +806 318 5 882387484 +916 1079 2 880843811 +621 148 4 880739654 +710 887 2 882063612 +894 595 3 880993632 +882 470 4 879867816 +715 101 3 875964131 +825 321 3 886697076 +733 9 3 879535406 +548 328 4 891042954 +923 1 3 880387306 +830 151 3 891560596 +847 602 3 878940732 +932 168 5 891250746 +329 127 4 891655741 +493 274 5 884131480 +167 1125 5 892738419 +823 168 5 878437658 +188 187 3 875072211 +496 419 2 876066874 +936 1323 4 886833281 +916 226 3 880845177 +727 447 3 883713194 +464 249 2 878355119 +749 178 4 878847540 +896 245 4 887235265 +864 108 3 888891627 +28 434 4 881961104 +588 382 3 890024730 +442 96 4 883390328 +913 172 5 881726004 +537 1048 2 886030381 +895 222 3 879437965 +574 312 4 891279410 +782 254 2 891499660 +901 429 5 877132301 +324 321 3 880575002 +868 155 2 877111623 +648 249 3 882211348 +766 294 2 891307007 +551 302 3 892775389 +43 202 5 875981190 +911 473 3 892840996 +890 133 5 882402518 +537 345 4 886028446 +747 100 5 888639397 +310 1142 5 879436467 +770 111 5 875972059 +897 185 5 879991137 +643 5 3 891449741 +834 298 4 890862648 +573 495 2 885844339 +654 455 3 887863826 +5 368 1 875635457 +85 181 4 882813312 +889 947 4 880181225 +849 38 5 879695420 +916 273 3 880843361 +531 313 5 887049364 +901 1035 4 877131793 +670 515 2 877974699 +804 820 4 879444115 +442 405 3 883390497 +939 274 5 880261334 +939 252 3 880261185 +805 1071 4 881705456 +474 411 2 887915684 +864 1425 2 888890475 +650 635 3 891370155 +37 62 5 880916070 +646 354 3 888528902 +774 217 2 888557772 +610 485 5 888703815 +656 340 3 892318488 +269 1267 1 891448643 +938 220 4 891357085 +181 280 4 878963381 +339 518 5 891033984 +854 476 3 882813219 +907 220 5 880159360 +887 578 4 881381610 +834 342 2 890860334 +601 660 3 876349937 +416 17 2 886318084 +807 139 2 893082430 +705 416 3 883427716 +924 1149 3 888351470 +556 135 2 882136252 +919 277 5 875288805 +907 988 3 880158612 +864 230 2 888889129 +896 483 3 887158333 +823 686 4 878439257 +286 367 5 877531574 +707 479 3 886286092 +642 131 3 885603566 +294 333 4 877818861 +943 185 2 888639370 +749 405 2 878848673 +908 264 3 879722206 +286 537 4 889651402 +640 1010 3 886474753 +400 313 5 885676316 +781 523 5 879634038 +672 1190 2 879789437 +201 440 2 884114770 +795 436 3 883767338 +634 269 4 890779855 +759 323 4 875227724 +943 403 4 888639746 +385 448 3 879448263 +804 145 3 879446276 +716 195 1 879795425 +882 230 5 879867508 +504 248 4 887831622 +934 1203 5 891193013 +566 521 4 881649802 +837 181 3 875721869 +943 401 1 888639867 +917 3 1 882911567 +751 658 3 889133106 +741 724 4 891019625 +843 228 4 879443763 +933 515 3 874854062 +749 356 4 878847804 +109 410 1 880564534 +125 222 5 892836465 +932 399 4 891251798 +655 1262 3 891585279 +881 447 4 876538953 +932 526 5 891250746 +851 339 4 888540093 +934 602 3 891195063 +450 1480 3 882468686 +533 147 1 884698117 +692 1 4 876953340 +44 183 4 883613372 +865 831 1 880144480 +917 255 3 882911158 +798 699 3 875303502 +719 137 1 884899841 +189 523 4 893265596 +409 178 5 881107817 +328 68 3 885048198 +870 170 5 875050637 +936 343 3 886831576 +789 762 3 880332232 +749 1440 3 878849534 +747 488 5 888640524 +65 9 5 879217138 +829 845 3 891990650 +622 742 3 882590420 +712 204 4 874956810 +321 428 4 879441336 +610 317 3 888703553 +611 315 5 891636098 +280 585 3 891702441 +648 211 4 884368643 +919 181 4 875289250 +864 121 4 877214085 +303 634 3 879467035 +833 1353 3 875035885 +863 355 4 889289419 +749 420 4 878849682 +664 230 3 876526659 +458 483 5 886396460 +798 402 3 875916297 +795 208 4 881252835 +407 288 4 890687293 +846 428 3 883948377 +653 182 3 878854051 +716 190 5 879797152 +709 738 1 879849330 +324 742 5 880575493 +201 1137 4 884111830 +761 201 2 876190511 +650 89 4 891381585 +65 392 5 879217689 +305 173 3 886322670 +551 546 2 892784673 +746 135 1 885075655 +500 242 3 891916883 +393 774 4 889731673 +145 53 2 875272245 +627 518 4 879530146 +806 96 5 882389908 +858 127 5 880932912 +861 213 5 881274759 +751 479 2 889132776 +804 218 4 879445072 +805 477 4 881705810 +608 1281 4 880407079 +886 1467 5 876033987 +24 151 5 875322848 +584 50 4 885777950 +774 177 4 888557277 +429 472 3 882387434 +758 204 4 881975787 +680 257 4 877075273 +528 213 4 886101505 +406 601 3 882480749 +323 1048 3 878739594 +593 40 1 875671757 +6 202 3 883602690 +922 431 4 891447723 +406 154 5 879792811 +840 176 3 891204755 +537 462 3 886030805 +883 207 3 891693012 +774 421 1 888558128 +715 100 2 875961816 +532 347 4 884594422 +699 591 2 880696196 +731 1275 1 886186940 +442 450 3 883391377 +536 1050 5 882360124 +860 327 3 880829225 +452 213 4 875265265 +521 181 4 884475845 +821 504 4 874793848 +828 345 1 891035438 +537 527 4 886031860 +774 82 2 888557277 +757 638 3 888468871 +421 79 4 892241459 +881 72 2 876539220 +123 321 4 879809220 +474 647 4 887924571 +916 640 4 880845157 +72 649 4 880036783 +314 932 4 877887316 +805 1105 2 884881781 +748 227 3 879455150 +932 89 5 891249586 +727 198 4 883710687 +435 201 4 884131356 +918 656 4 891986609 +660 1139 2 891201966 +642 686 5 886131546 +366 758 3 888857684 +846 560 1 883950889 +717 245 4 884641842 +648 176 4 884367538 +721 739 4 877139551 +749 155 2 878849829 +690 47 1 881179469 +578 1016 4 888957666 +887 228 4 881380709 +749 203 4 878848639 +936 1315 3 886833191 +919 1119 3 875373824 +459 298 3 879562895 +890 205 5 882405473 +435 635 3 884133544 +864 204 5 888888937 +738 655 3 875350456 +577 68 4 880475021 +877 1402 4 882677386 +868 655 4 877107996 +798 83 4 875303683 +936 289 5 886831769 +711 51 4 879994778 +526 123 3 885682614 +806 88 4 882390191 +907 107 5 880158939 +840 199 4 891209183 +918 507 5 891987363 +401 188 1 891033267 +934 303 4 891188441 +382 168 4 875946700 +347 363 1 881653244 +875 480 5 876465275 +262 234 3 879794359 +807 496 5 892528918 +843 427 2 879446281 +904 1074 4 879735710 +921 797 3 879381287 +913 4 4 874786460 +881 498 4 876537577 +556 243 1 882135994 +327 529 3 887822770 +844 100 4 877381607 +871 1176 3 888192858 +474 59 3 887923708 +884 212 4 876859238 +846 192 5 883949254 +631 886 4 888465216 +848 430 5 887041354 +532 1011 5 893119491 +873 326 4 891392656 +834 245 4 890860416 +889 737 3 880181515 +77 228 3 884753105 +808 327 5 883949986 +747 715 5 888733274 +360 137 5 880354379 +648 904 2 884794555 +23 73 3 874787016 +308 429 4 887737890 +660 636 2 891200704 +889 208 4 880181275 +940 879 3 889480535 +901 142 4 877131739 +457 356 4 882547670 +892 477 4 886609551 +537 1404 2 886032204 +234 2 2 892335142 +937 283 4 876769212 +772 271 4 889028773 +666 236 4 880313250 +790 176 3 885155489 +815 588 5 878693906 +851 261 3 877831111 +62 151 5 879372651 +804 235 5 879443736 +698 496 3 886366690 +588 356 4 890025751 +682 1311 3 888518035 +618 588 4 891307224 +833 1006 1 875039153 +666 642 5 880139586 +291 833 3 874834236 +721 228 5 877138585 +896 802 2 887161172 +903 509 4 891033380 +902 301 2 879463373 +389 487 5 879991115 +800 405 4 887646705 +454 527 4 881960201 +918 151 2 891988646 +592 603 5 882955543 +845 303 1 885409374 +844 125 3 877382269 +279 1496 3 875298419 +806 702 3 882388795 +862 651 5 879304624 +398 708 3 875747159 +533 243 3 879193517 +561 566 3 885809873 +385 92 3 879443217 +426 496 3 879442841 +339 790 2 891034151 +758 307 3 880672345 +181 815 3 878963168 +13 188 4 882140130 +707 345 5 886285168 +642 181 5 885603699 +782 1608 3 891499399 +457 569 3 882549356 +577 5 4 880475318 +749 181 5 878846998 +648 377 3 884881837 +882 291 4 879862936 +758 270 4 889062124 +788 153 3 880868277 +571 144 2 883354992 +88 326 5 891038103 +851 687 2 874728168 +174 1017 2 886434187 +641 528 4 879370150 +758 393 4 881979012 +417 473 2 879646860 +862 432 5 879304902 +459 125 4 879563169 +930 709 4 879535663 +351 304 3 879481675 +87 180 4 879875649 +924 181 3 884371535 +787 906 1 888979721 +871 271 5 888192349 +796 662 5 893047207 +919 293 4 875288681 +937 237 4 876769530 +295 416 4 879518630 +639 61 3 891239790 +862 91 5 879304762 +774 218 1 888557739 +916 52 5 880844813 +881 243 2 876535663 +655 815 2 887651149 +609 15 5 886895150 +854 322 1 882811865 +619 182 4 885954019 +551 895 3 892775752 +460 870 2 882912469 +151 705 5 879524778 +794 187 5 891035117 +503 529 2 880383030 +927 1178 2 879192052 +940 171 2 885921401 +897 763 3 879993404 +934 226 4 891191831 +318 944 2 884497208 +639 100 1 891240495 +521 204 4 884477853 +880 407 1 880175503 +214 55 4 892668197 +833 1628 3 875225219 +932 448 2 891251588 +922 385 3 891450586 +864 183 4 888888115 +864 189 4 888889268 +933 177 4 874854994 +336 173 5 877757637 +796 62 4 893048562 +929 496 3 879640256 +514 433 5 875462795 +622 769 1 882672922 +442 2 3 883390544 +715 1222 2 875965035 +751 315 3 887134587 +130 233 4 875801750 +559 167 3 891035840 +883 580 3 891693200 +889 210 4 880178342 +62 924 1 879373175 +851 1120 2 890343707 +561 1210 1 885810813 +934 705 4 891191778 +908 144 4 879722850 +870 12 4 875050748 +675 269 5 889488487 +697 986 1 882622680 +924 276 2 884371386 +399 47 3 882511093 +880 940 3 880175157 +886 204 3 876031932 +545 692 3 879900654 +536 386 4 882361162 +577 125 4 880470604 +934 144 4 891192087 +917 121 1 882911567 +738 240 3 875350385 +921 174 5 884673780 +901 756 4 877126935 +840 179 5 891205069 +886 209 4 876031850 +276 772 4 874790826 +936 7 4 886832221 +763 703 5 878923433 +932 462 4 891249038 +843 173 2 879446215 +566 265 4 881650849 +938 410 1 891356780 +83 704 3 880327216 +189 582 5 893265998 +856 272 5 891489217 +747 1045 4 888639823 +846 197 4 883948417 +805 144 3 881694693 +243 246 4 879987085 +451 266 2 879012811 +933 175 4 874854444 +404 301 3 883790286 +313 603 5 891013681 +896 248 4 887235249 +593 274 3 875659849 +924 56 3 886327724 +374 504 4 880395973 +655 1155 3 887474289 +874 285 4 888632411 +669 7 3 892549266 +59 243 1 888206764 +751 274 4 889298694 +933 9 3 874854402 +389 239 3 880087939 +943 576 4 888640106 +244 67 4 880608820 +239 14 5 889179478 +922 919 5 891454625 +183 1215 1 891467546 +177 221 3 880130775 +773 68 2 888540091 +872 926 4 888479516 +232 286 3 880062259 +796 450 3 893049399 +157 258 3 886890296 +528 678 3 888520525 +880 1222 4 880168411 +391 591 4 877399894 +919 406 3 875289417 +523 1069 5 883701962 +810 878 4 879895500 +363 313 5 891493571 +682 33 4 888520864 +742 282 3 881335857 +246 159 3 884923003 +913 466 3 882544673 +799 1545 4 879254026 +726 1038 2 889832053 +931 111 3 891036648 +847 50 4 878774969 +862 265 5 879304980 +923 815 4 880387792 +82 484 4 878769597 +884 510 5 876859330 +846 738 4 883950364 +883 349 2 892557605 +909 707 5 891920327 +503 187 5 880383625 +796 145 2 893218485 +929 429 4 879640225 +225 479 4 879539614 +59 4 4 888205188 +821 993 4 874792570 +339 216 3 891032286 +912 419 4 875966756 +305 566 3 886324486 +209 129 2 883417667 +374 411 3 880394088 +936 1375 5 886832596 +617 320 5 883789424 +315 318 5 879799422 +232 435 4 888550013 +276 182 5 874787549 +488 746 4 891293771 +854 1283 2 882813047 +919 22 5 875374269 +799 306 4 879253795 +788 294 3 880867855 +835 1278 5 891032653 +795 1030 3 883255381 +311 550 3 884364812 +907 978 5 880159473 +868 2 2 877112290 +660 94 2 891201887 +894 534 4 879896704 +655 307 3 892011201 +642 748 5 885601998 +681 894 1 885409742 +435 84 2 884133757 +523 213 5 883700743 +926 245 3 888636270 +429 129 4 882385065 +441 300 3 891035056 +293 122 3 888905399 +199 1354 1 883782952 +774 553 2 888556867 +151 380 5 879543146 +653 371 1 880152058 +921 276 1 879381004 +903 127 5 891031144 +542 194 4 886532534 +938 845 1 891356780 +885 549 3 885714409 +924 9 4 886759657 +709 17 4 879848120 +889 949 3 880181646 +903 928 2 891031749 +751 660 4 889297990 +610 176 4 888703157 +615 300 4 879447613 +882 133 5 879867263 +758 831 4 882054415 +548 924 3 891415786 +805 519 4 881698095 +892 497 4 886608347 +786 100 4 882841667 +803 305 5 880055604 +537 604 3 886031211 +813 243 3 883752660 +927 210 5 879194937 +759 237 3 881476891 +665 200 4 884293741 +79 236 5 891271719 +10 93 4 877892160 +773 24 3 888538677 +592 295 4 882608357 +758 320 5 881976061 +780 427 3 891363904 +894 287 4 880993766 +846 747 3 883948417 +345 181 4 884992479 +405 1445 1 885546336 +8 260 3 879361665 +699 291 3 892709098 +795 47 3 881265108 +181 1381 2 878962349 +164 328 5 889401362 +532 215 5 892866230 +436 856 4 887769952 +534 508 4 877807973 +870 367 4 875679768 +629 194 5 880116887 +604 288 3 883668261 +536 431 5 882359813 +701 286 4 891446488 +912 357 5 875966429 +537 609 3 886031606 +653 210 4 880150103 +13 400 4 885744650 +826 4 4 885690526 +159 932 3 880557464 +541 1041 3 883865929 +747 194 3 888639222 +682 1478 3 888519226 +667 275 4 891035084 +393 8 3 887746145 +734 498 4 891022938 +229 882 4 891633029 +871 402 3 888193541 +903 369 4 891032101 +425 827 1 878739095 +851 95 4 875731282 +416 95 3 878879688 +588 660 4 890024002 +537 228 3 886031474 +272 187 5 879455043 +910 121 1 880821492 +453 1079 1 887942484 +805 317 4 881698745 +497 226 3 879310913 +910 742 4 880822031 +547 751 4 891282597 +488 492 2 891375784 +910 183 4 880822060 +747 900 5 888638183 +788 445 4 880869718 +779 447 4 875999211 +830 231 2 891561938 +887 71 5 881380996 +854 508 4 882812492 +927 571 3 879196853 +271 610 3 885848584 +901 69 5 877132346 +825 1011 3 881101246 +332 619 3 887938524 +907 781 5 885862325 +870 939 3 879714066 +389 257 3 879916077 +796 234 2 892690173 +887 609 4 881381207 +860 781 2 887754411 +826 399 4 885690790 +943 717 4 875502116 +731 520 4 886186567 +892 797 4 886610372 +876 286 5 879428072 +758 315 5 883793836 +606 1149 4 880925289 +881 1217 5 876538506 +271 429 4 885848672 +876 523 5 879428378 +924 402 3 886759965 +916 66 3 880845264 +770 257 4 875972059 +927 1284 4 879181133 +916 421 5 880844291 +745 603 4 880123243 +586 939 4 884064459 +940 7 4 885921597 +815 239 5 878694563 +892 175 4 886608559 +921 69 4 879380862 +919 678 2 875288253 +848 132 5 887038197 +546 300 3 885139842 +919 95 4 875921182 +321 59 4 879440687 +597 748 5 875339041 +537 69 2 886031178 +785 137 2 879438810 +389 618 4 880088115 +484 38 4 891195532 +933 226 2 874854874 +746 83 4 885075497 +574 311 4 891279410 +637 127 2 882901356 +856 328 3 891489478 +862 202 5 879304624 +790 210 4 885155209 +618 776 2 891307098 +133 271 5 890588766 +495 393 5 888635339 +871 305 3 888192475 +728 748 3 879442532 +682 8 3 888521833 +469 487 5 879524178 +883 241 4 891696714 +721 1065 5 877147383 +201 28 3 884111217 +457 238 5 882392976 +536 640 4 882361042 +896 478 5 887158739 +776 427 3 892313246 +886 164 4 876033053 +655 410 2 891585344 +280 182 3 891700276 +303 88 4 879468307 +712 96 5 874729850 +896 427 4 887158384 +686 26 5 879546847 +42 591 4 881110138 +394 343 3 881130008 +350 429 4 882345668 +298 679 3 884183099 +598 538 4 886711452 +622 978 2 882591453 +934 1135 3 891196117 +710 501 3 882064435 +882 501 5 879879807 +802 748 4 875984776 +804 513 5 879441937 +791 294 3 879447940 +679 97 3 884487300 +495 590 4 888637612 +870 654 4 875050801 +916 23 4 880843997 +363 80 4 891498434 +917 1 3 882910888 +851 930 3 875730312 +864 88 4 888887469 +727 840 2 883709884 +860 678 3 887754112 +288 286 4 886372862 +639 863 4 891239702 +643 572 3 891450341 +930 210 2 879535713 +650 158 2 891388149 +889 193 4 880180191 +815 333 3 887978234 +624 275 4 879792493 +279 374 1 888806649 +768 284 1 883835210 +434 1197 5 886724913 +669 603 5 891260719 +735 756 2 876698684 +782 1387 3 891499278 +503 580 3 880383236 +895 151 5 879438101 +59 517 5 888205714 +392 528 5 891038371 +448 270 5 891888137 +592 750 5 886394208 +659 673 4 891384499 +847 222 5 878775470 +303 943 2 879467815 +100 315 5 891375557 +749 470 5 878849259 +882 432 5 879865307 +755 286 5 882569670 +20 15 4 879667937 +327 628 2 887820226 +880 527 4 880241943 +115 558 5 881171203 +557 307 5 881179653 +368 413 1 889783454 +943 216 4 888639327 +883 1012 5 891916324 +371 202 5 880435313 +790 792 2 885155603 +245 717 4 888513447 +901 1120 4 877127021 +416 100 5 893212895 +2 296 3 888550871 +605 111 3 879425663 +650 23 3 891369890 +923 741 5 880387792 +234 1448 3 892335187 +671 82 4 884035686 +924 129 4 889286888 +805 11 2 881694423 +21 1 5 874951244 +916 558 3 880844767 +907 15 5 880158861 +847 501 3 878940463 +844 12 5 877388182 +44 198 4 878348947 +883 82 3 891696999 +788 300 5 880867477 +860 339 3 882831410 +886 410 4 876031459 +546 236 4 885141260 +246 66 3 884922252 +830 692 4 891464148 +880 318 5 880241746 +334 161 3 891549304 +916 123 3 880843524 +908 709 4 879722490 +815 318 5 878693497 +928 127 5 880936905 +883 490 4 891755017 +911 199 3 892839333 +937 874 3 876768956 +655 1640 3 888474646 +724 1105 1 883757537 +786 376 3 882844096 +874 654 5 888633311 +383 213 5 891193137 +577 660 3 880474613 +804 841 4 879443709 +621 405 5 880740034 +930 240 1 879535207 +904 280 5 879735678 +655 734 3 887523477 +573 134 4 885843928 +18 127 5 880129668 +887 90 5 881381071 +934 204 4 891192444 +704 633 5 891397819 +779 255 4 875993165 +145 1012 4 875270322 +837 285 4 875722187 +894 922 4 882404137 +537 300 1 886028446 +216 181 3 880232597 +645 184 3 892055213 +515 326 2 887660131 +873 348 3 891392577 +943 763 4 875501813 +806 1059 3 882390426 +846 80 4 883949594 +774 399 2 888556169 +710 294 3 882063224 +374 31 5 880396659 +815 919 5 878691844 +646 328 3 888528457 +815 2 3 878696355 +658 127 5 875145614 +892 526 4 886608771 +425 70 3 878738245 +928 276 5 880937144 +798 2 4 875743787 +908 209 3 879722694 +886 53 1 876032422 +902 1 5 879465583 +864 8 5 888887402 +389 143 3 880087026 +727 491 4 883710213 +305 484 3 886322838 +239 433 5 889180447 +815 28 4 878694199 +894 874 4 879982788 +889 483 4 880178183 +819 255 1 884105841 +724 887 3 883757468 +937 508 1 876780336 +931 313 4 891035876 +862 92 5 879305051 +538 88 2 877108078 +916 710 3 880844332 +374 184 2 880939034 +627 1267 4 879530346 +634 300 3 881952599 +753 300 1 891401167 +868 168 3 877104157 +796 199 3 892662223 +293 507 4 888905665 +882 4 4 879868118 +924 71 5 885457922 +271 515 5 885848558 +609 352 1 886895699 +912 520 2 875966429 +640 802 3 874778756 +622 178 4 882592421 +711 365 3 879995850 +346 640 3 874947923 +749 975 4 878848369 +922 562 3 891450866 +727 849 2 883713348 +827 286 3 882201725 +682 783 2 888521291 +838 50 5 887063657 +910 291 1 881421090 +723 286 3 880498746 +641 497 5 879370259 +731 1087 1 886186091 +921 122 2 879380433 +468 943 3 875287721 +786 228 4 882844295 +903 475 4 891031144 +923 276 5 880387429 +315 93 5 879821065 +566 153 2 881649747 +878 166 4 880870854 +393 1419 3 889729319 +561 664 4 885807574 +798 111 1 875296109 +543 191 4 874863035 +473 127 5 878157299 +706 687 1 880996945 +428 751 5 885943818 +593 293 1 877727988 +785 995 3 879438736 +803 990 2 880054792 +620 419 2 889988169 +524 614 5 884634731 +189 59 3 893265191 +296 23 5 884197235 +774 193 5 888556746 +452 98 5 875263330 +819 744 5 880382355 +793 252 4 875104498 +308 513 3 887736584 +921 410 2 879380957 +916 227 3 880845067 +726 25 4 889831222 +360 474 5 880355803 +756 568 3 874828903 +543 528 4 874864666 +507 294 5 889964274 +290 378 3 880475169 +796 323 2 892611953 +854 945 3 882813761 +805 659 3 881695677 +703 100 4 875242663 +519 1434 5 883250102 +711 97 4 879993605 +894 509 4 882404278 +885 153 2 885713357 +443 245 3 883504796 +748 1 4 879455040 +693 735 4 875482912 +726 832 5 889832807 +405 177 1 885547996 +753 172 3 891401510 +911 419 5 892840916 +933 732 3 874854651 +918 161 1 891988824 +568 497 2 877907092 +575 531 1 878148199 +271 186 4 885848915 +766 380 2 891310475 +773 840 1 888540218 +420 285 5 891356891 +592 13 5 882608401 +588 56 4 890024246 +622 1406 3 882671381 +827 358 2 882808622 +693 180 3 875482309 +889 944 3 880182173 +416 1133 4 893142244 +399 246 3 882340639 +234 656 4 892079288 +551 233 4 892784259 +855 638 4 879825462 +452 1410 1 876297577 +843 91 3 879446155 +921 280 3 879379562 +943 69 5 888639427 +730 121 4 880310506 +923 249 4 880388021 +886 183 5 876033088 +71 6 3 880864124 +901 58 4 877132091 +193 405 3 889125945 +913 508 3 880759072 +796 606 4 892761504 +883 856 5 891694401 +119 257 4 874775614 +506 514 5 874873287 +727 235 3 883709518 +817 121 3 874815835 +883 684 3 891755066 +116 532 2 876452651 +930 244 4 879535392 +757 29 2 888466683 +909 294 3 891920763 +363 739 3 891498183 +840 174 4 891204114 +767 659 5 891462560 +892 449 2 886610565 +776 549 5 891628731 +279 486 4 875310041 +828 557 2 891036826 +850 79 5 883195192 +683 683 3 893286347 +901 180 2 877289290 +871 510 3 888193335 +798 845 5 875295930 +779 95 5 875999285 +828 737 1 891037948 +529 333 4 882534996 +919 12 3 875373294 +884 285 4 876858820 +655 1166 3 891585477 +922 1079 1 891455277 +794 936 5 891035219 +916 1217 1 880845606 +774 398 1 888557482 +943 168 2 888638897 +665 496 3 884294200 +850 385 5 883195099 +7 198 3 891351685 +697 1022 1 882621523 +650 565 3 891388266 +889 1069 1 880182127 +798 610 3 875743314 +907 366 5 885862156 +373 187 2 877098849 +773 70 3 888538810 +342 833 3 874984751 +938 1 4 891356314 +13 541 1 882397650 +938 273 5 891356532 +642 1287 2 885606463 +677 240 5 889399431 +396 151 3 884646401 +484 241 3 891195390 +889 32 4 880180376 +396 323 4 884645790 +916 158 2 880845829 +933 585 1 874938728 +188 176 4 875072876 +919 864 2 875288848 +847 142 3 878941168 +505 491 3 889333861 +805 406 1 881695445 +892 380 4 886609180 +830 837 5 891462467 +551 833 3 892784166 +594 127 4 874781076 +934 69 5 891193013 +157 475 3 886890650 +743 322 3 881277750 +874 111 3 888632411 +693 197 3 875482197 +589 324 1 883352402 +483 91 3 884047427 +533 1161 3 883583033 +13 893 3 882774005 +930 190 4 879535492 +323 535 3 878739643 +935 15 5 884472177 +749 549 3 878847926 +311 392 5 884366067 +280 739 3 891701359 +677 1011 3 889399431 +932 1020 5 891249621 +642 477 5 886131563 +907 485 5 880160008 +378 735 4 880046229 +847 133 3 878941027 +758 310 3 880672402 +753 179 2 891401410 +747 305 5 888638183 +749 85 4 878849259 +471 946 2 889827982 +930 16 1 879534925 +567 525 5 882425901 +234 200 5 892335074 +537 901 1 886029488 +764 21 2 876243794 +889 1048 3 880177435 +727 122 2 883709802 +748 133 3 879454455 +731 496 5 886179040 +699 3 3 879147917 +773 751 3 888538175 +720 311 5 891262635 +639 673 4 891239406 +541 139 3 884047204 +346 1188 1 875264472 +533 172 4 879191184 +803 307 4 880055604 +783 330 1 884326755 +763 609 4 878918712 +916 241 4 880845368 +870 647 4 879270400 +715 144 5 875962991 +682 176 4 888521195 +43 892 3 883954776 +660 1240 3 891201637 +934 527 3 891191334 +21 323 2 874950972 +836 357 5 885754173 +935 283 4 884472136 +934 584 4 891196384 +416 310 5 893214225 +653 1065 1 880152085 +901 66 5 877131307 +848 855 5 887046915 +908 300 3 879722076 +932 1149 4 891249767 +682 722 4 888522073 +796 939 3 892761504 +653 1132 1 880153429 +798 393 3 875915029 +156 646 4 888185947 +774 546 1 888558565 +13 629 1 882141582 +747 505 5 888639823 +204 12 4 892513865 +577 826 4 880470852 +158 431 5 880134477 +632 176 3 879457812 +727 651 3 883710104 +862 1109 5 879305016 +899 151 2 884122367 +645 650 5 892055285 +52 7 5 882922204 +780 604 3 891363933 +325 235 1 891479292 +782 272 5 891497698 +339 660 4 891034778 +868 578 2 877112439 +870 289 2 875050332 +378 238 3 880046161 +450 1061 4 882398313 +593 126 5 875659777 +923 1017 5 880387525 +711 710 4 879994903 +573 523 4 885844007 +334 479 4 891545926 +806 117 2 882385237 +183 258 3 891462811 +57 144 3 883698408 +895 328 4 879437748 +774 50 4 888557198 +805 210 3 881694693 +919 272 5 885059452 +606 393 4 880925453 +933 174 4 874854745 +751 209 4 889133377 +659 486 4 891383733 +544 748 3 884795986 +487 62 3 884042630 +899 213 4 884122698 +435 709 4 884131822 +642 553 5 886132153 +790 597 3 884462047 +262 269 3 879961283 +940 471 4 885921628 +918 660 4 891987752 +44 692 3 878347532 +642 1182 2 885606178 +774 866 1 888558853 +450 234 3 882396245 +799 1063 4 879254026 +738 250 4 875348912 +622 62 4 882592850 +869 288 3 884490011 +398 367 3 875717020 +887 122 5 881379239 +401 537 4 891033466 +222 241 3 878181696 +789 628 3 880332215 +242 1355 5 879741196 +497 265 4 879310883 +55 7 3 878176047 +778 196 2 890769633 +932 1035 4 891251869 +919 255 4 875289170 +174 1313 4 888155294 +926 262 3 888636082 +324 410 5 880575449 +928 168 5 880936817 +771 50 4 880659347 +880 926 3 880167328 +807 91 5 892684675 +827 333 3 892157242 +293 1044 2 888908117 +590 1009 3 879439483 +228 56 2 889388607 +903 192 5 891033628 +497 50 5 879310580 +868 199 5 877105882 +911 474 5 892838637 +894 827 3 880993766 +833 641 4 875038626 +890 97 4 882402774 +416 300 4 876696823 +594 199 4 877816302 +151 1041 3 879543306 +919 302 4 875920245 +883 345 3 891691465 +833 176 2 875038850 +881 29 2 876539091 +406 205 2 879445642 +780 515 3 891364124 +922 235 2 891452407 +658 22 4 875147448 +532 477 4 892520198 +840 198 3 891204356 +622 276 4 882590485 +629 127 5 880117605 +488 82 4 891294942 +927 742 5 879199250 +632 566 4 879458649 +871 161 5 888193275 +145 754 3 882181058 +436 468 4 887771826 +625 198 4 891263665 +406 217 4 879792928 +933 70 2 874855020 +617 816 1 883789747 +913 289 5 880658260 +880 795 2 880243147 +568 611 3 877907782 +880 379 4 880241434 +428 749 4 885943782 +279 83 5 878082781 +807 258 3 892527100 +647 174 4 876530784 +766 448 3 891310934 +940 259 4 884801316 +768 895 2 883750415 +52 288 3 882922454 +230 203 2 880484890 +870 111 3 880584548 +896 550 2 887160880 +846 633 3 883948534 +843 218 2 879443297 +592 109 4 882608145 +815 515 5 878691739 +847 240 1 878939309 +709 841 4 879848824 +880 120 2 880175503 +70 172 5 884064217 +232 357 4 888549721 +896 1222 2 887161393 +727 172 5 883710104 +659 199 4 891383965 +429 1012 3 882385963 +918 995 3 891986143 +891 597 3 883489324 +887 132 4 881380218 +693 484 3 875484837 +903 81 5 891466376 +870 284 2 875051072 +605 64 5 879425432 +581 1353 4 879641850 +59 91 4 888205265 +362 321 2 885019435 +326 211 4 879876184 +733 924 4 879536523 +763 737 2 878919055 +938 823 4 891357019 +848 812 2 887038475 +820 258 3 887954853 +738 919 4 875349807 +326 97 4 879874897 +894 250 4 879896898 +878 699 1 880871600 +716 177 2 879794935 +738 755 3 875350913 +934 196 5 891191108 +795 70 3 883253481 +894 1038 3 880415855 +155 872 3 879370860 +782 1089 2 891499660 +405 1423 1 885546725 +786 528 5 882842878 +910 286 3 883760216 +49 2 1 888069606 +932 607 4 891249621 +868 135 5 877104987 +933 959 1 874938430 +671 273 4 875389187 +858 515 4 880932911 +798 731 3 875303765 +679 172 5 884486758 +903 595 2 891031714 +562 485 5 879196074 +886 196 3 876031365 +566 289 1 881649273 +887 1279 3 881378402 +900 410 2 877833326 +378 402 4 880045856 +294 829 3 889242788 +907 764 4 880159113 +686 179 5 879545814 +435 763 5 884133544 +537 429 3 886030863 +938 106 5 891357019 +642 998 3 886569765 +544 292 4 884795470 +269 708 4 891448323 +709 68 5 879848551 +406 393 4 880131851 +904 90 2 879735731 +892 431 4 886607957 +685 289 2 879451253 +479 340 1 887064320 +577 88 3 880475226 +912 616 3 875966065 +898 309 5 888294805 +334 549 4 891547261 +861 475 3 881274760 +102 227 4 888801673 +60 135 5 883327087 +864 742 4 878179445 +817 405 3 874815947 +801 299 2 890333011 +916 90 3 880845115 +7 152 4 891351851 +779 50 5 875992279 +193 1090 2 889124778 +475 302 3 891451083 +561 197 4 885807484 +796 77 5 893194646 +887 427 5 881379718 +889 603 4 880180122 +303 368 1 879544340 +883 271 2 891692116 +222 133 1 878182338 +846 199 5 883947911 +878 258 3 880865562 +685 875 3 879451401 +561 17 2 885810167 +845 306 2 885409374 +704 523 5 891397667 +455 523 4 879110946 +323 322 2 878738910 +655 192 3 887473753 +318 25 5 884494757 +533 676 5 879439720 +685 886 1 879451211 +7 367 5 891350810 +927 99 2 879195472 +515 340 3 887658782 +919 223 4 875372844 +707 420 3 886287160 +508 655 4 883767525 +416 659 5 893213404 +932 841 2 891250317 +940 354 5 889480493 +862 748 4 879302533 +450 399 4 882468239 +453 25 4 877552872 +486 244 3 879875220 +749 118 3 878846841 +591 523 4 891031724 +896 730 4 887158294 +886 177 4 876031973 +716 1286 2 879795239 +938 248 1 891356390 +564 258 4 888718771 +766 584 3 891309844 +807 2 4 892978338 +246 739 2 884922678 +173 245 4 877556927 +716 655 4 879795838 +504 300 4 887831274 +863 1127 4 889289157 +896 588 5 887158265 +749 365 3 878848951 +291 1047 2 874834165 +760 258 5 875665793 +328 46 2 885048004 +363 168 4 891494905 +455 117 3 879111345 +504 742 4 887831860 +387 214 5 886483753 +887 393 4 881381114 +497 121 4 879310581 +267 5 3 878972399 +897 23 3 879990683 +314 768 5 877890261 +432 255 5 889416608 +256 230 4 882164480 +283 71 4 879297965 +561 942 3 885809712 +178 1119 4 882827400 +586 68 4 884062010 +870 1020 3 882385179 +478 710 5 889396029 +727 92 2 883710806 +659 188 3 891384606 +892 495 4 886609218 +561 199 4 885809939 +682 999 2 888521942 +724 322 1 883757784 +848 173 5 887038134 +931 290 2 891036883 +501 628 4 883348519 +901 732 5 877132578 +625 70 3 891262724 +235 285 4 889655204 +698 663 1 886366955 +653 160 3 878854441 +837 740 5 875722123 +643 630 3 891448352 +766 607 1 891309090 +883 513 5 891717319 +86 1176 5 879570973 +764 98 5 876244991 +747 178 5 888639939 +805 322 2 879971215 +798 15 4 875295810 +201 800 2 884114713 +865 471 1 880143612 +851 12 4 875731370 +919 877 3 875288304 +936 1129 5 886833795 +301 100 5 882074408 +943 526 4 888639523 +823 710 4 878438457 +828 558 3 891037047 +18 959 3 880131450 +899 133 3 884122308 +910 3 2 881421019 +233 845 4 880190627 +933 193 4 874853927 +665 210 4 884293789 +94 1101 3 891720590 +778 441 3 890804387 +897 77 4 879990877 +870 746 3 879270400 +620 452 3 889987604 +867 89 5 880078769 +892 692 4 886608296 +293 45 5 888906315 +374 164 4 880937735 +936 327 4 886831445 +296 209 4 884199625 +588 378 3 890026059 +213 125 5 878955295 +897 404 4 879991186 +796 96 4 892662523 +481 211 5 885828426 +908 631 4 879723128 +493 333 4 884133084 +343 963 5 876404880 +835 504 5 891033772 +897 187 5 879990622 +896 239 4 887158165 +916 195 3 880844920 +870 148 2 879377064 +931 302 4 891035876 +373 174 4 877099137 +943 196 5 888639192 +387 847 3 886480325 +890 483 5 882402477 +432 298 3 889415852 +357 841 3 878951918 +712 419 3 874730234 +782 905 4 891498791 +276 807 2 874795574 +869 122 3 884493060 +858 327 3 879459504 +903 1009 4 891031906 +686 318 5 879545814 +82 22 3 878769777 +861 937 4 881274504 +130 272 5 888962577 +896 570 2 887161198 +328 187 4 885045993 +495 1116 3 888632738 +536 450 2 882364152 +548 151 1 891415786 +490 547 4 875428765 +437 135 4 880140101 +889 219 2 880178131 +915 896 2 891030070 +933 391 1 874939230 +168 924 2 884287614 +790 368 2 884462954 +615 197 4 879448439 +116 311 3 886978067 +758 471 3 881975472 +796 58 3 892675605 +704 134 5 891397441 +902 754 3 879463310 +892 825 4 886610682 +13 166 5 884538663 +583 524 5 879384522 +826 550 3 885690750 +655 1554 2 887611677 +648 448 3 884883476 +756 256 4 874827486 +601 198 4 876350104 +890 229 2 882405059 +509 705 4 883591687 +933 763 3 874938644 +907 332 5 885862325 +870 475 5 875051100 +932 1 4 891249932 +605 275 4 879366177 +650 270 4 891368959 +943 9 3 875501960 +804 708 3 879445783 +17 222 3 885272751 +843 83 3 879446948 +629 275 5 880117565 +918 89 5 891987780 +710 302 4 882063224 +798 945 3 875743518 +900 696 2 877833195 +711 417 4 879994749 +655 1465 2 887472943 +887 404 4 881381071 +458 7 4 886394373 +654 720 4 887864923 +262 70 4 879962517 +16 367 3 877726390 +398 582 2 875659518 +870 318 5 875050865 +889 980 4 880178748 +804 288 1 879447476 +889 657 4 880177941 +868 186 2 877109234 +13 834 1 882397068 +653 187 4 878853780 +920 311 3 884219701 +612 480 4 875325049 +687 269 4 884651420 +854 20 2 882813179 +573 528 4 885843928 +868 174 5 877107320 +655 4 2 887611649 +853 682 4 879364823 +251 25 4 886272615 +885 739 4 885715241 +839 846 2 875753052 +811 243 3 886377579 +406 654 4 879445522 +500 383 3 883877467 +768 535 3 882190750 +727 392 4 883711847 +756 383 3 874831050 +836 185 5 885754118 +928 191 5 880936863 +727 465 2 883712159 +401 243 3 891031867 +666 483 5 880139348 +896 566 4 887159805 +472 96 5 875980823 +361 1152 2 879441008 +735 325 1 876698022 +938 458 4 891356780 +916 546 2 880843864 +505 182 1 889334555 +922 276 3 891453854 +450 178 4 882394251 +179 313 4 892151270 +923 866 4 880388383 +639 1101 3 891239177 +665 417 3 884293569 +916 1073 4 880844445 +61 301 1 891206450 +846 435 5 883948222 +606 87 4 880924483 +825 919 1 881099316 +846 396 5 883949508 +239 269 5 889181247 +768 269 3 885319349 +59 953 5 888205787 +642 756 5 885604859 +913 181 3 880825135 +363 238 4 891497583 +715 939 4 875964545 +49 154 5 888068715 +703 819 2 875242912 +147 302 4 885593845 +934 96 4 891191157 +376 815 3 879459207 +294 328 4 877818982 +732 321 3 882590201 +82 237 3 876311319 +774 219 4 888557739 +886 655 4 876032973 +864 125 4 888889162 +648 458 2 882211418 +348 827 4 886523387 +393 399 4 889728353 +793 117 4 875103739 +943 672 5 888640125 +477 451 5 875941763 +682 1046 3 888520799 +833 540 1 875224687 +766 161 3 891310372 +655 1637 3 888984255 +796 127 5 892660147 +932 521 5 891249994 +922 384 4 891452521 +673 302 3 888786942 +158 125 3 880132745 +42 103 3 881106162 +843 441 2 879443544 +864 1208 2 888890731 +916 1009 5 880843551 +683 294 3 893286346 +685 288 2 879451147 +923 591 5 880387875 +682 85 3 888521833 +624 833 4 879793582 +346 1210 3 875265335 +772 272 5 889028581 +938 841 3 891357190 +795 434 3 880569983 +137 690 2 881432482 +916 537 4 880844087 +66 1016 3 883601859 +830 89 5 891561607 +940 430 4 885921542 +515 332 3 887658676 +14 19 5 880929651 +655 1143 3 887425458 +757 358 3 888443570 +831 56 5 891354751 +833 12 5 875039416 +336 72 3 877756127 +293 765 3 888907836 +667 197 4 891035033 +423 508 4 891395394 +537 492 3 886031342 +842 272 4 891217834 +940 238 4 885921628 +823 96 4 878438179 +255 826 1 883216958 +943 38 3 888640208 +936 255 5 886833795 +655 911 2 891817522 +479 136 4 879461447 +507 118 5 889966127 +384 286 4 891273649 +587 539 3 892871437 +890 190 4 882403587 +938 1013 2 891357042 +796 94 3 893219065 +932 475 4 891248856 +758 174 5 881975005 +835 98 5 891034401 +308 778 3 887740603 +393 572 4 889731618 +898 258 3 888294407 +837 934 2 875722483 +942 197 5 891283043 +501 928 3 883347773 +22 792 4 878886647 +474 47 4 887927339 +903 410 4 891031677 +670 186 4 877975594 +934 134 4 891191157 +911 530 4 892838677 +929 98 5 879640394 +892 542 1 886611023 +934 181 4 891189275 +385 201 4 879441982 +458 435 4 886397504 +767 177 5 891462614 +921 294 4 879379338 +804 625 3 879445493 +551 58 5 892783451 +325 1140 3 891479681 +732 304 5 882589792 +701 344 3 891446788 +880 25 4 880166938 +939 508 5 880261141 +916 80 3 880845476 +468 237 4 875280181 +613 279 4 891227410 +889 179 3 880179705 +940 216 4 885921310 +867 690 5 880077751 +720 887 5 891262608 +592 127 5 882608021 +623 288 1 891032140 +890 530 4 882405780 +809 331 2 891036809 +941 1 5 875049144 +684 98 4 878759970 +474 381 4 887924683 +395 118 3 883765791 +922 1157 2 891447853 +883 98 3 891695666 +669 480 5 891517259 +844 257 4 877381784 +291 508 5 874805892 +899 98 4 884121572 +870 1014 2 884789665 +934 474 4 891191976 +599 280 5 880952229 +569 328 4 879793253 +537 745 2 886031074 +822 95 4 891037394 +339 241 4 891034152 +26 683 3 891350372 +798 930 5 875637661 +722 121 5 891281182 +416 680 3 876696938 +622 181 5 882592041 +715 282 3 875962423 +454 140 3 888267386 +690 428 1 881177506 +795 825 2 880559026 +625 961 4 891962917 +889 741 4 880177131 +553 655 4 879949289 +523 435 5 883702263 +682 746 3 888521413 +846 491 3 883947960 +233 4 3 877663337 +943 274 3 875502074 +711 22 4 879993073 +594 520 4 874786664 +582 25 3 882961608 +883 745 5 891694431 +883 408 5 891914522 +262 699 5 879793022 +913 469 3 881037459 +237 286 3 879376220 +401 191 4 891032847 +532 332 4 876696298 +429 217 3 882387715 +894 137 5 880416340 +786 196 4 882843683 +807 431 4 892528062 +437 66 3 880143167 +661 169 5 876017294 +450 584 5 882397223 +198 673 3 884209451 +721 153 4 877150031 +878 51 4 880869239 +504 1093 1 887841073 +749 204 4 878847576 +425 1188 3 878738695 +707 1142 1 880059921 +889 199 5 880181138 +629 876 3 880116023 +892 186 3 886608643 +938 257 5 891356350 +442 90 3 883388609 +766 712 3 891310444 +846 1109 3 883948908 +710 483 5 882063685 +535 162 3 879619035 +822 902 4 891033747 +829 284 3 891990799 +826 62 4 885690790 +880 748 4 892958250 +660 84 2 891201823 +308 9 4 887737194 +798 660 3 876177436 +887 548 1 881381555 +923 248 4 880387474 +292 602 4 881105481 +266 9 4 892258004 +840 185 5 891204356 +92 13 4 886443292 +660 196 4 891199557 +864 153 5 888886946 +880 585 1 880175050 +918 659 4 891987622 +552 148 3 879222452 +559 311 3 891033635 +308 169 5 887736532 +506 363 3 874862646 +618 521 2 891307784 +761 628 4 876190689 +230 699 4 880484975 +890 674 3 882404610 +344 173 5 884814697 +116 269 3 886309452 +874 302 5 888632098 +896 1046 2 887160583 +798 281 4 875296234 +937 1007 4 876769373 +758 1034 4 882054415 +13 822 3 884538634 +722 928 3 891281228 +448 312 1 891888653 +70 380 3 884066399 +710 258 2 882063224 +97 208 5 884239744 +109 924 3 880564415 +934 507 4 891192145 +634 934 2 877018033 +132 806 3 891278896 +889 195 4 880178204 +868 268 4 877102974 +881 430 4 876537870 +550 243 2 883426119 +426 289 2 879441754 +892 837 5 886608743 +815 54 3 878696355 +648 110 3 884882407 +852 250 4 891036414 +457 227 4 882392853 +405 1475 1 885547268 +246 158 1 884923955 +870 523 5 875050774 +537 928 1 886030442 +158 230 2 880134445 +655 1630 3 887428735 +497 184 3 879310792 +579 228 3 880951984 +890 496 5 882916460 +503 509 5 880383098 +802 176 5 875985469 +763 498 4 878915600 +574 754 4 891279122 +864 619 3 888889327 +358 1396 4 891269827 +551 583 3 892778369 +897 215 4 879990683 +521 188 4 884478101 +942 945 5 891283239 +904 111 4 879735641 +186 295 2 879023390 +551 192 5 892776750 +286 652 4 877531899 +864 190 4 888887437 +790 62 3 885157465 +881 679 1 876539129 +884 1073 4 876859138 +854 282 2 882812960 +280 172 3 891700768 +746 168 3 885075790 +499 174 3 885598961 +727 11 3 883710152 +933 282 3 874855104 +896 71 5 887158927 +705 229 3 883428154 +930 535 4 879535392 +763 132 3 878920656 +710 127 5 882064096 +825 137 2 880756224 +479 496 3 879461084 +941 294 4 875048532 +929 431 1 879640225 +639 19 4 891239813 +891 116 3 891639552 +429 222 4 882385518 +796 1126 1 892662826 +773 127 5 888539962 +848 71 5 887046915 +555 118 4 879962569 +269 823 3 891446514 +854 1013 1 882813453 +474 190 3 887923972 +889 1487 3 880182871 +330 732 5 876547220 +782 253 2 891500150 +95 386 2 880572356 +413 273 2 879969484 +788 1042 3 880871240 +921 323 4 879379428 +919 1060 3 875289322 +393 823 3 889730262 +939 275 4 880260852 +342 507 4 875319295 +119 1264 3 886176993 +293 502 3 888906428 +610 606 5 888703343 +589 328 5 883352562 +614 535 2 879464376 +655 1643 5 887611511 +590 547 4 879439086 +796 274 5 893047167 +518 920 3 876824121 +943 568 3 888639042 +826 71 5 885690342 +766 238 4 891309450 +663 182 5 889493691 +389 629 2 880166028 +733 1380 2 879536567 +907 1 5 880158712 +653 151 3 878866475 +299 212 4 878191889 +141 181 4 884584709 +405 513 1 885546112 +862 866 4 879303697 +913 238 3 880825052 +921 254 3 879380908 +910 748 3 881420228 +312 430 5 891699426 +387 1198 3 886479575 +506 228 5 874873571 +876 531 4 879428481 +364 678 4 875931478 +339 480 5 891032885 +798 926 4 875638203 +878 463 2 880866177 +464 127 5 878354966 +313 197 5 891013910 +7 598 3 891353801 +698 515 4 886366190 +22 68 4 878887925 +334 99 4 891548533 +749 186 4 878847862 +721 229 5 877138585 +615 708 2 879448882 +519 348 5 883250148 +816 1025 4 891711495 +466 161 2 890285113 +915 258 2 891030108 +666 91 3 880139409 +916 498 3 880844241 +940 1137 3 885921577 +286 72 4 877534025 +804 436 5 879444984 +724 352 1 883757259 +500 546 4 887720050 +936 919 5 886832808 +660 946 2 891201696 +943 139 1 888640027 +815 484 4 878693989 +548 288 3 891042794 +847 88 2 878941168 +303 546 2 879484373 +409 338 3 881104916 +355 319 5 879486529 +774 453 2 888557804 +501 274 3 883348474 +790 153 3 885155077 +535 638 4 879618655 +913 462 3 881037459 +712 400 3 874957179 +488 633 5 891294334 +761 245 5 876189715 +782 1610 1 891500230 +871 347 5 888192315 +521 300 3 884475555 +916 939 3 880844694 +907 326 5 880158448 +854 174 3 882813574 +896 210 4 887158332 +838 283 5 887063994 +281 748 5 881200745 +938 685 3 891356894 +286 403 5 877533543 +416 291 4 878879275 +749 739 3 878848558 +236 304 4 890117676 +916 12 4 880844445 +293 94 2 888908066 +83 88 5 880308186 +387 727 5 886484098 +802 670 4 875986155 +843 526 3 879447625 +457 451 4 882549212 +741 945 5 891456827 +710 303 4 882063224 +308 255 4 887741693 +727 56 3 883711150 +756 420 4 874829373 +919 258 4 875288164 +829 255 3 891547657 +648 39 3 884882742 +407 169 5 875042642 +923 1001 1 880388173 +682 717 3 888521090 +407 474 3 875042378 +907 271 5 881030073 +267 431 4 878973426 +517 229 3 892660034 +715 412 2 875962783 +727 205 5 883710104 +823 473 3 878439065 +765 283 4 880346282 +769 120 1 885424401 +919 1258 3 875289453 +524 265 4 884636583 +848 191 5 887038564 +725 294 3 876103726 +186 269 1 889818094 +655 155 4 887473702 +881 191 5 876537457 +889 161 4 880180897 +682 470 5 888517628 +273 338 3 891293304 +790 451 3 885157299 +870 1412 2 879714435 +716 487 5 879794934 +639 514 4 891240566 +454 64 4 881959652 +430 7 3 877225660 +327 678 3 887743705 +635 302 4 878878587 +178 111 4 882823905 +889 423 4 880177941 +932 119 5 891249586 +504 371 3 887912236 +454 748 4 881958551 +913 195 4 881725846 +774 117 2 888558646 +936 108 4 886832758 +790 13 3 884461820 +406 971 3 879793328 +836 174 5 885754266 +326 1118 2 879877264 +896 229 4 887160399 +655 558 4 887427506 +872 1011 1 888479333 +934 961 4 891193854 +864 328 5 887686456 +251 597 3 886272514 +932 169 5 891249649 +853 322 3 879364883 +719 77 3 879360846 +716 132 5 879796438 +833 288 2 875035487 +774 523 2 888555964 +881 82 5 876538286 +846 79 4 883947630 +807 69 5 892528110 +97 423 5 884239472 +648 50 5 882211016 +659 255 3 891045161 +548 475 4 891415411 +622 185 3 882592041 +755 879 4 882569844 +195 615 4 880650666 +487 825 3 883444674 +554 68 2 876368907 +753 193 4 891401366 +145 59 1 882181695 +917 9 5 882912385 +524 955 1 884637914 +548 183 5 891044410 +881 181 4 876535928 +894 318 5 879897168 +298 482 5 884182657 +673 79 5 888787587 +450 732 3 882395662 +921 284 4 879379943 +864 4 4 888890690 +931 900 4 891035917 +716 823 3 879794428 +738 7 4 875349530 +907 143 5 880159982 +487 1209 4 884045135 +911 215 3 892839140 +682 73 5 888521564 +828 652 5 891036492 +630 1061 2 885667581 +911 208 4 892839970 +690 284 4 881178442 +838 222 4 887064356 +881 31 5 876537577 +684 924 2 878232961 +894 531 3 882404363 +488 56 4 891294785 +456 1129 4 881371548 +892 969 4 886608380 +919 591 3 875289667 +12 480 4 879959161 +788 46 3 880870018 +393 97 4 889555126 +561 226 1 885809806 +802 197 3 875985347 +62 64 4 879373638 +634 333 4 881007052 +289 363 3 876790653 +527 144 4 879456186 +776 523 4 891628937 +518 619 4 876823018 +419 269 4 879435190 +606 692 5 880924790 +548 218 4 891044538 +907 97 5 880160204 +475 306 5 891451276 +18 724 4 880132055 +160 952 4 876767299 +468 64 5 875286450 +808 346 5 883949986 +889 831 2 880177387 +593 181 4 875658800 +758 735 5 881976855 +848 241 5 887047243 +344 756 2 884900529 +70 94 3 884151014 +932 481 4 891249877 +80 64 5 887401475 +847 609 2 878940383 +826 102 4 885690442 +868 230 3 877112349 +923 829 4 880388426 +130 761 3 876251650 +702 450 1 885767775 +893 781 3 874828569 +555 100 5 879964092 +883 228 4 891696824 +697 250 4 882621940 +901 237 3 877126757 +708 181 5 877325279 +494 707 4 879541112 +933 1183 3 874938596 +606 178 5 880925579 +864 265 5 888886946 +856 748 3 891489638 +932 1121 5 891249261 +714 294 4 892777903 +416 305 3 878877919 +501 248 4 883347975 +773 1252 4 888538643 +868 238 4 877103249 +192 118 2 881367932 +141 591 4 884584865 +804 1177 3 879446390 +825 282 4 880755693 +921 367 4 879381021 +581 1367 5 879641603 +582 831 2 882962561 +901 38 3 877131087 +844 13 3 877381708 +125 710 5 879454699 +293 303 4 888904220 +655 1641 3 887427810 +405 375 1 885546835 +697 886 5 882622481 +889 647 2 880181191 +607 56 5 883880155 +846 735 2 883948141 +805 1008 4 881699661 +201 471 2 884140637 +892 633 4 886609551 +826 187 4 885690481 +477 66 5 875941763 +882 25 2 879862652 +922 655 2 891451327 +426 481 5 879442892 +145 97 5 875272652 +381 480 5 892696019 +794 249 3 891035885 +493 249 4 884132784 +293 28 3 888906071 +892 679 3 886610049 +24 324 5 875322875 +666 370 2 880313811 +786 497 4 882842946 +405 445 4 885548435 +790 131 2 885156852 +811 901 4 886377771 +880 94 3 880175097 +916 109 3 880845099 +892 1078 3 886610566 +695 340 4 888806082 +798 827 4 875637541 +37 121 2 880915528 +846 942 4 883948765 +279 1444 3 875313351 +932 514 5 891249932 +711 1190 3 886030579 +767 180 5 891462870 +846 650 5 883948534 +901 322 4 877125575 +301 21 2 882074967 +843 378 2 879448230 +752 355 2 891208036 +934 502 4 891194539 +420 547 4 891357104 +557 1176 5 881179653 +774 391 1 888557520 +34 991 4 888602618 +883 238 4 891694218 +843 127 2 879445059 +942 498 5 891282931 +153 187 2 881371198 +941 1007 4 875049077 +903 252 3 891031715 +26 845 3 891377468 +897 210 5 879991007 +627 64 5 879530015 +843 1039 3 879446215 +919 292 3 875288253 +178 220 3 882827247 +943 825 3 875502283 +665 1047 1 884291376 +671 195 5 884035774 +892 183 5 886608681 +213 157 4 878955501 +478 124 4 889387982 +870 248 4 880124496 +943 193 4 888639093 +887 218 5 881381471 +870 724 4 875679906 +848 210 5 887039271 +145 121 2 875270507 +850 96 4 883195236 +642 955 3 888123262 +887 420 5 881381425 +913 288 2 880755823 +429 440 1 882387411 +666 193 4 880567810 +868 1183 1 877112141 +548 25 2 891415746 +778 623 1 890804625 +886 364 3 876034006 +49 475 4 888066109 +882 284 3 879862865 +933 88 3 874854696 +450 388 3 882471604 +933 82 3 874939130 +678 285 3 879544397 +873 307 3 891392360 +807 483 5 892529756 +404 288 3 883790314 +899 194 5 884121125 +932 414 4 891251959 +916 1119 3 880845505 +537 86 4 886031786 +885 216 3 885715221 +934 462 4 891191511 +766 810 2 891310620 +896 235 1 887161198 +815 514 1 878693183 +850 485 5 883195168 +899 96 4 884121125 +574 286 3 891278916 +665 742 4 884290704 +933 12 4 874854135 +854 321 3 882811913 +883 1074 4 891694340 +919 539 3 885059682 +542 386 3 886533046 +796 378 4 893218764 +407 210 4 875044037 +694 211 5 875727189 +721 878 3 877137598 +708 887 2 892718820 +121 292 4 891388960 +896 225 1 887161518 +880 273 5 880166770 +655 143 4 887523176 +561 504 3 885809447 +1 94 2 875072956 +843 465 2 879449152 +764 732 3 876246475 +942 259 4 891282673 +504 423 4 887840960 +551 258 4 892775584 +650 27 3 891381745 +184 372 3 889910053 +815 151 4 878692207 +543 64 4 874863336 +458 100 4 886394373 +399 90 2 882350653 +716 141 4 879797555 +909 326 4 891919458 +747 865 5 888640916 +654 496 4 887864230 +727 1446 3 883712123 +932 405 4 891251177 +943 470 4 888639814 +457 98 5 882553113 +894 305 4 880415834 +882 176 4 879867980 +294 1047 3 877820240 +821 294 4 874792194 +221 633 3 875246459 +833 1181 1 875133458 +567 650 4 882426762 +504 67 2 887912382 +807 289 4 892527665 +806 237 2 882385135 +796 328 5 892612057 +250 984 3 878089229 +846 1178 2 883950524 +764 106 2 876243990 +486 546 2 879875440 +797 259 3 879439136 +816 690 4 891710922 +788 443 4 880868473 +880 168 3 880174623 +399 343 2 882340517 +758 919 5 881976262 +932 197 5 891249649 +908 732 3 879722974 +59 602 2 888206295 +691 1172 5 875543191 +549 151 3 881672300 +721 995 3 877137447 +928 135 4 880936884 +828 640 2 891037948 +766 499 3 891310125 +303 1217 1 879484948 +16 39 5 877720118 +562 82 5 879196401 +224 731 4 888103872 +608 93 4 880406299 +927 38 5 879195783 +492 1098 4 879969512 +717 260 1 884641911 +919 1514 2 885059812 +861 305 4 881274504 +943 1047 2 875502146 +99 348 4 886518562 +804 310 4 879440600 +449 198 4 880410624 +842 333 4 891218107 +214 250 2 891543036 +933 568 2 874939207 +561 417 2 885809690 +810 873 3 879895403 +637 117 2 882904148 +361 367 3 879440475 +831 690 4 891354064 +937 116 4 876769080 +234 835 3 892334481 +94 1140 2 891723328 +405 1246 1 885547735 +264 209 5 886123415 +886 1217 4 876033602 +615 332 2 879447585 +287 895 2 888177213 +592 1079 1 882608873 +932 210 4 891250793 +786 117 4 882841996 +437 462 5 881002324 +897 849 4 879990877 +555 405 4 879962569 +189 180 5 893265741 +919 14 4 875288934 +887 929 1 881379059 +292 249 3 881104820 +836 663 5 885754266 +478 100 5 889388863 +896 1303 4 887161518 +65 178 5 879217689 +251 294 3 886272283 +271 28 5 885849025 +626 327 4 878771419 +13 432 4 882398654 +943 415 1 888640027 +174 168 1 886434621 +934 403 4 891195537 +738 204 4 875350053 +339 176 4 891032413 +906 408 4 879435212 +416 1594 5 893212484 +155 245 2 879371061 +880 268 5 892958128 +655 21 2 888685787 +862 12 5 879304571 +883 736 3 891696750 +592 1012 5 882608401 +806 81 5 882389727 +474 405 4 887916260 +638 153 3 876695819 +788 28 5 880868876 +82 582 4 878769410 +922 95 3 891448580 +919 174 4 875372947 +709 576 4 879848695 +697 245 3 882621621 +790 100 2 884461334 +821 14 4 874792369 +113 979 5 875936424 +910 205 4 880822060 +796 736 3 893047126 +480 98 4 891208239 +588 7 3 890024611 +704 322 2 891396881 +857 304 2 883432301 +256 930 3 882153258 +524 519 4 884634818 +875 179 5 876465188 +479 271 3 879459692 +880 627 3 880241256 +848 72 5 887042341 +253 318 5 891628323 +919 815 2 875289533 +606 926 3 880922625 +846 429 2 883947819 +739 22 5 886958860 +833 11 5 875038850 +865 625 1 880235099 +916 737 3 880845328 +56 748 4 892676028 +417 365 4 879648860 +889 298 4 880177016 +622 1231 2 882670653 +804 197 4 879443136 +354 283 4 891216632 +901 252 3 877127250 +501 150 5 883347773 +304 274 4 884968415 +864 734 3 888892874 +883 847 4 892557605 +890 514 5 882402478 +90 196 4 891385250 +622 199 5 882592143 +140 288 3 879013617 +929 479 4 879640329 +805 173 4 881696671 +794 515 5 891034755 +738 449 3 875351438 +486 1405 5 879874516 +339 217 3 891034254 +922 699 3 891449048 +846 210 5 883947500 +561 505 4 885807510 +917 628 5 882912385 +122 699 5 879270541 +145 740 2 875272786 +110 1229 3 886988374 +774 840 2 888558594 +26 122 1 891380200 +664 202 4 878094973 +305 1286 5 886324687 +809 299 4 891037069 +588 294 4 890014887 +280 588 5 891700803 +815 380 3 878695744 +198 238 4 884207733 +931 272 5 891037521 +524 430 3 884637914 +785 273 3 879439527 +850 88 5 883195479 +913 203 4 880825916 +692 508 3 876953424 +388 121 4 886436756 +720 242 4 891262608 +265 1 5 875320247 +919 892 3 885059724 +805 153 4 881704063 +223 546 5 891550118 +18 357 4 880129421 +367 331 4 876689418 +538 89 4 877109831 +190 288 5 891033606 +325 527 4 891478140 +880 294 4 880166557 +699 70 4 878883038 +707 815 2 880060609 +484 423 5 891195746 +894 280 3 880993709 +554 1041 3 876369560 +110 585 2 886989473 +870 644 2 882123665 +338 382 5 879438762 +694 357 5 875726618 +163 202 3 891220137 +83 1049 3 880307588 +709 1 4 879847730 +316 97 5 880854142 +882 588 4 879867430 +357 508 5 878951616 +296 137 4 884196741 +484 468 5 891194886 +551 403 3 892782807 +545 195 4 879899158 +894 16 3 880993614 +742 591 4 881335461 +919 297 4 875288749 +473 150 5 878157329 +276 300 4 874786338 +786 95 5 882843397 +549 405 4 881672556 +468 9 5 875280041 +385 522 4 879924244 +347 1291 1 881653340 +892 276 4 886608559 +900 1298 2 877833923 +774 452 1 888557805 +770 937 4 876598016 +624 1114 4 879792557 +655 69 3 887476943 +13 904 1 892015178 +517 131 3 892659922 +279 969 3 875308799 +555 265 3 879975505 +916 156 5 880844016 +871 276 5 888193136 +717 995 5 884642132 +737 357 5 884314944 +924 64 4 886327778 +776 132 3 891629157 +868 762 4 877109535 +933 97 2 874854161 +664 97 3 876525363 +943 219 4 888639575 +311 170 5 884364999 +269 124 5 891446165 +833 344 4 888536031 +758 1283 4 880672876 +438 282 5 879868264 +397 492 4 885349955 +376 100 4 879454598 +318 393 5 884497449 +445 458 2 891200272 +757 431 4 888466584 +896 692 4 887159173 +150 14 4 878746889 +806 518 3 882388231 +748 96 5 879454662 +719 735 5 888454612 +864 673 3 888890273 +148 194 5 877015066 +542 132 3 886532620 +828 900 2 891035438 +151 836 4 879524514 +770 924 5 875971902 +151 190 4 879528673 +102 154 3 888803708 +85 1166 4 879455021 +294 342 3 889241466 +31 192 4 881548054 +916 679 3 880845690 +908 318 5 879722717 +425 405 2 878738643 +787 751 4 888979235 +402 410 1 876266985 +904 724 4 879735616 +932 431 3 891250944 +883 582 3 891693387 +249 147 5 879640343 +523 949 5 883700792 +168 1051 4 884288222 +906 285 5 879434846 +18 952 2 880130582 +445 1 3 891199749 +197 306 2 891409160 +669 56 2 891260497 +851 475 4 875731674 +916 461 4 880844087 +270 283 5 876954456 +655 649 3 888685989 +618 382 2 891307540 +711 715 4 879994581 +360 144 2 880355527 +868 727 2 877110277 +853 261 3 879365360 +896 647 3 887159502 +522 514 2 876960956 +398 1 5 875652927 +159 288 3 884026901 +276 1413 1 874977513 +193 282 5 889124965 +778 629 2 890802784 +807 423 5 892528470 +902 1016 2 879464783 +838 238 4 887067359 +661 255 3 876037088 +574 750 3 891278962 +44 307 4 878340940 +527 526 5 879456312 +174 88 5 886513752 +868 211 3 877107730 +682 1 4 888523054 +637 508 2 882903301 +863 1296 3 889289617 +889 646 3 880177970 +748 199 4 879455454 +497 182 4 879310705 +907 288 5 880158476 +279 901 4 883893835 +403 1199 2 879790506 +853 307 1 879364744 +899 125 3 884120185 +897 609 5 879991105 +89 402 4 879460347 +788 696 3 880871173 +829 313 4 891204191 +582 118 2 882962523 +865 926 1 880144405 +864 550 4 888889389 +599 294 4 880951113 +429 409 2 882386751 +764 216 4 876245520 +551 926 2 892785300 +396 406 2 884646468 +932 64 2 891250059 +733 291 2 879536608 +416 79 5 893213405 +822 206 3 891036851 +870 655 4 875050865 +590 124 5 879438735 +577 1046 4 880475226 +731 591 1 886184577 +655 305 4 887523909 +412 208 4 879717621 +225 98 5 879539672 +694 183 5 875727061 +932 151 3 891251225 +895 1 4 879437950 +790 755 3 885157928 +716 517 5 879797221 +634 408 3 875728783 +543 947 4 877545605 +521 42 5 884478721 +916 284 2 880843666 +892 705 4 886607912 +864 801 3 888892667 +382 286 2 875945173 +889 209 2 880178019 +749 47 4 878848098 +938 276 3 891356572 +488 705 4 891294473 +832 260 3 888259404 +59 1114 5 888203415 +279 779 3 878262194 +926 237 3 888351813 +852 926 3 891036902 +682 1012 4 888518747 +458 823 3 886395119 +594 515 5 874781050 +747 1 5 888639138 +905 458 4 884984382 +455 259 2 884027220 +804 435 3 879444488 +821 98 5 874793847 +661 145 1 876035968 +749 845 3 878848189 +927 94 2 879198972 +668 896 4 882818549 +777 245 5 875979241 +660 154 4 891200534 +611 306 5 891636152 +810 289 5 879895403 +782 332 4 891498139 +455 164 4 879110844 +903 147 3 891031178 +919 200 4 875373294 +894 330 3 880415951 +776 217 4 892920351 +716 13 2 879793376 +405 196 1 885546112 +883 531 3 891693497 +181 1287 1 878963380 +280 233 4 891702049 +581 922 5 879642333 +923 411 4 880387664 +872 893 4 888478902 +885 161 4 885715827 +291 573 4 874834944 +785 174 5 879438957 +749 443 4 878847954 +938 289 1 891356282 +89 107 5 879441780 +899 117 4 884119830 +862 177 4 879305016 +747 58 3 888639594 +580 257 5 884125243 +122 28 4 879270084 +449 593 4 879959101 +640 689 4 886353852 +643 721 2 892502531 +806 252 1 882386110 +572 284 3 879449840 +344 302 5 884814359 +608 92 3 880408150 +940 215 2 885921451 +632 134 5 879457217 +899 180 3 884121308 +294 405 4 877819761 +698 86 2 886367508 +782 271 2 891498213 +666 960 4 880567810 +588 91 5 890026656 +891 740 5 891639497 +417 302 3 879645999 +160 127 5 876770168 +293 127 5 888904614 +802 333 4 875986155 +486 252 3 879875316 +699 764 3 886568162 +533 8 3 879191938 +911 420 4 892840950 +760 98 3 875667717 +804 294 5 879441099 +532 916 3 893115293 +737 100 5 884314664 +148 127 1 877399351 +506 686 3 889874717 +57 121 4 883697432 +732 269 5 882589593 +643 655 4 891448176 +708 1079 1 892719385 +684 409 3 878760614 +912 501 4 875966756 +541 1412 1 883874834 +886 217 2 876032776 +734 50 4 891022627 +932 606 4 891250169 +922 596 4 891448833 +892 188 5 886608185 +715 106 2 875962140 +347 427 4 881654004 +501 245 3 883346844 +933 1037 1 874938620 +889 513 4 880178748 +617 498 3 883788955 +782 342 2 891498322 +115 508 5 881170438 +529 875 4 882535714 +421 427 4 892241735 +875 1103 5 876465144 +936 845 4 886833006 +919 689 2 885059506 +644 255 4 889077513 +537 192 4 886031473 +346 693 4 874950937 +92 65 4 875653960 +798 929 3 875638090 +774 189 2 888557987 +58 238 5 884305185 +804 132 4 879445305 +815 214 5 878693497 +916 704 3 880845177 +690 274 3 881177721 +846 318 5 883947777 +497 584 4 879363611 +868 385 2 877103834 +618 15 3 891308391 +488 71 3 891294606 +621 38 3 874964495 +627 232 3 879531302 +561 49 2 885809269 +940 285 4 885921846 +927 91 4 879196955 +524 318 4 884635287 +788 357 4 880869687 +883 421 5 891696689 +883 952 3 891916924 +429 1018 3 882386051 +804 1060 3 879443918 +747 514 4 888639823 +542 240 3 886533142 +749 50 5 878846978 +916 215 3 880844552 +110 947 3 886988574 +165 223 4 879525894 +852 290 4 891036817 +894 166 4 882404306 +894 750 4 883518875 +902 879 4 879463485 +270 265 4 876956137 +766 664 2 891309589 +590 676 4 879439060 +10 9 4 877889005 +75 473 3 884050733 +933 222 1 874854783 +293 509 3 888905948 +201 237 4 884140307 +660 89 3 891199965 +893 96 4 874830314 +497 763 3 879309780 +926 269 5 888636082 +221 931 3 875245100 +805 185 5 881695196 +854 111 3 882812906 +226 179 4 883888853 +321 478 4 879439926 +721 161 5 877138816 +654 405 4 887863866 +537 25 2 886030199 +269 515 4 891446132 +109 180 3 880581127 +657 258 2 884238559 +936 312 3 886831853 +693 210 3 875484044 +622 474 3 882669509 +928 328 3 880937258 +643 451 2 891449301 +655 692 3 887523453 +244 650 3 880607231 +393 693 3 887746883 +894 905 3 887044109 +892 162 4 886609390 +806 100 4 882385063 +669 475 3 892549336 +938 293 3 891356501 +943 796 3 888640311 +541 258 4 883864123 +151 559 2 879543075 +450 1490 3 882396929 +566 462 4 881650090 +927 28 4 879183511 +541 468 4 883865007 +708 762 5 877325838 +928 9 5 880937163 +535 7 5 879618776 +881 566 4 876538796 +870 943 2 879714310 +707 505 4 886286311 +717 591 4 884642297 +847 685 2 878938922 +892 1444 3 886610267 +820 895 2 887955046 +334 47 4 891547171 +209 276 2 883417796 +495 1039 5 888635180 +786 1 4 882841828 +318 340 4 884470115 +465 408 5 883530391 +552 281 3 879222306 +867 294 3 880077831 +936 1226 3 886833148 +871 904 3 888192858 +903 405 4 891031678 +901 447 3 877132015 +934 419 4 891192849 +862 208 2 879304282 +59 273 2 888203129 +886 50 5 876031501 +912 427 5 875965830 +798 924 3 875296148 +892 131 4 886610451 +339 212 4 891035215 +909 224 5 891920089 +897 174 5 879990587 +593 58 4 875671579 +354 319 3 891180399 +64 184 4 889739243 +889 181 4 880177131 +798 443 3 876249370 +901 15 5 877130439 +830 834 1 891899475 +773 895 2 888538417 +528 410 4 886813104 +271 169 5 885848475 +346 151 4 874949244 +838 993 3 887064231 +698 134 3 886366558 +238 151 2 883576398 +474 31 4 887926573 +642 73 4 885605735 +870 11 4 875679992 +643 39 4 891447747 +887 98 3 881379345 +846 40 2 883950253 +846 98 4 883947819 +503 692 3 880383467 +898 302 4 888294567 +916 557 4 880844527 +896 751 4 887235605 +918 747 3 891988705 +664 660 3 876525718 +935 120 3 884472942 +766 498 4 891309913 +806 170 5 882387520 +907 278 5 880159016 +588 265 5 890025621 +805 128 5 881694798 +931 546 3 891036849 +554 181 4 876550100 +913 28 3 881369039 +820 751 1 887955180 +896 176 5 887235690 +306 741 1 876504286 +533 265 3 879191563 +939 237 5 880261056 +782 351 3 891498139 +738 135 5 892844111 +790 1077 3 885156619 +875 22 3 876465072 +83 245 2 891181703 +870 508 3 881001249 +787 268 4 888979007 +574 358 2 891279520 +303 627 3 879484733 +815 526 4 878696093 +621 384 3 874963081 +43 591 5 875975656 +43 123 1 875975520 +800 1 4 887646283 +847 120 1 878939349 +880 3 1 880175023 +518 405 5 876823926 +655 872 3 888685879 +712 1480 4 874957161 +25 176 4 885852862 +886 11 5 876031365 +890 157 4 882916239 +694 188 5 875727715 +881 732 5 876538465 +496 660 3 876067108 +749 444 2 878850632 +388 53 5 886441248 +704 340 3 891396636 +781 179 5 879634017 +682 71 5 888523135 +451 876 4 879012431 +474 56 5 887924083 +422 267 4 875655986 +920 272 3 884219701 +707 52 3 886287268 +741 151 3 891458539 +715 143 3 875963946 +870 4 2 879270213 +619 79 5 885953992 +648 281 3 884365970 +933 96 2 874855020 +746 228 4 885075243 +872 1284 3 888479434 +525 106 2 881086938 +691 496 5 875543025 +140 303 5 879013684 +327 498 4 887819860 +32 408 3 883717684 +892 208 4 886609029 +840 480 5 891208647 +98 194 5 880498898 +518 410 3 876823541 +798 202 2 875639095 +814 5 3 885411030 +577 181 5 880474612 +869 1047 2 884492571 +843 132 3 879446186 +472 420 3 875982149 +399 1542 2 882348592 +924 471 4 884371635 +474 124 5 887915269 +892 157 5 886609029 +939 471 5 880261254 +862 485 5 879304410 +495 573 4 888636928 +405 958 1 885549590 +749 712 3 878849375 +807 204 4 892528954 +721 242 3 877137597 +868 172 5 877107847 +854 290 1 882813179 +839 1381 3 875752456 +902 187 3 879465834 +864 418 3 888887247 +862 205 4 879304282 +766 428 5 891309622 +603 56 4 891957053 +789 124 4 880332089 +826 260 3 885690022 +18 967 3 880131901 +907 815 5 880158913 +450 654 4 882373928 +665 378 3 884294237 +854 528 4 882813623 +378 441 3 880333995 +880 110 3 880175128 +532 425 4 888634801 +851 553 4 875731225 +633 159 4 875325093 +653 135 5 878866755 +348 596 4 886523456 +749 205 4 878847804 +934 786 1 891194089 +806 875 3 882384802 +524 481 4 884634785 +860 732 4 885991129 +721 263 3 877137598 +618 531 4 891309886 +903 544 2 891031470 +737 22 4 884314993 +752 268 2 891208036 +897 523 5 879991186 +56 575 3 892911469 +865 743 1 880144504 +886 2 4 876033368 +781 210 4 879634295 +849 625 5 879695420 +606 576 3 880927750 +303 939 3 879467739 +870 435 3 880584549 +13 446 1 882397039 +747 124 5 888639138 +204 333 1 892391748 +925 558 1 884718099 +878 155 3 880869418 +880 5 3 880241379 +916 356 3 880845722 +188 484 5 875072392 +846 101 4 883949336 +389 133 5 880086888 +879 596 2 887761380 +840 432 5 891209342 +626 680 1 878771476 +804 233 4 879445815 +663 240 3 889493027 +145 769 2 877343280 +818 313 4 891870173 +574 328 3 891279174 +648 456 2 884367180 +806 169 5 882387756 +666 265 3 880139274 +794 100 5 891035063 +303 1086 1 879468021 +933 441 2 874938833 +519 887 5 883250102 +867 172 5 880078769 +889 550 3 880181434 +938 993 5 891356413 +532 990 3 875511963 +487 313 3 883439795 +659 216 4 891045892 +943 739 4 888639929 +416 153 4 886317272 +864 151 5 888889466 +932 416 3 891250498 +734 294 1 891025891 +874 275 4 888632448 +903 1381 4 891031864 +303 363 1 879485134 +921 25 3 879379736 +788 157 5 880869396 +634 1028 3 875729456 +916 148 2 880843892 +892 631 4 886609726 +401 405 2 891032453 +10 198 3 877889005 +689 258 5 876674954 +5 174 5 875636130 +891 978 4 883489282 +921 143 5 879381257 +23 227 3 874787738 +848 216 5 887040159 +739 50 4 886958895 +869 282 3 884490987 +747 510 5 888639890 +913 318 4 880794731 +835 588 3 891033857 +723 9 3 880498912 +935 685 4 884472310 +537 675 3 886031860 +694 705 5 875728048 +937 294 1 876769480 +707 864 4 880060262 +899 200 4 884122674 +561 611 5 885807547 +826 748 4 885689918 +773 232 3 888540146 +749 823 3 878850060 +806 90 4 882390164 +884 463 5 876859070 +707 708 3 886286170 +535 1170 3 879618019 +383 200 5 891193181 +903 651 5 891032793 +887 274 1 881378478 +484 210 5 891194743 +715 778 2 875965171 +879 111 4 887761865 +710 79 4 882064283 +711 48 4 879993053 +669 479 5 891260806 +684 248 3 878576473 +407 7 4 893253637 +889 8 3 880179757 +619 578 4 885954215 +485 752 3 891040967 +393 613 4 887745937 +853 333 4 879364669 +887 1063 1 881380404 +838 313 5 887060659 +447 770 3 878856601 +527 659 4 879455617 +606 97 5 880925453 +630 815 3 885667229 +806 209 3 882387837 +867 748 4 880077951 +693 1136 3 883975358 +648 318 3 884368371 +875 964 4 876465335 +749 636 4 878849929 +490 109 5 875428765 +441 282 4 891035528 +851 1013 2 891961856 +883 234 4 891695666 +102 7 2 888801407 +896 96 5 887158635 +935 117 4 884472229 +358 1005 4 891269723 +874 286 4 888632057 +896 511 5 887158830 +828 531 4 891036972 +835 174 5 891033623 +593 223 5 888872089 +904 173 3 879735499 +764 281 3 876243854 +741 696 3 891455901 +930 410 3 879534973 +798 659 4 875914337 +211 215 5 879460294 +554 172 5 876550372 +659 657 5 891383965 +931 257 4 891036530 +221 144 4 875245427 +207 173 3 877878923 +936 251 4 886832134 +868 405 1 877109082 +102 172 3 888801232 +903 50 5 891031329 +653 411 2 878854906 +895 100 4 879437997 +379 621 4 880525815 +130 824 3 875801830 +929 276 2 879640184 +788 328 4 880867477 +577 176 5 880474311 +725 276 4 876106243 +851 1337 3 875730719 +889 77 3 880182359 +780 313 5 891362901 +828 346 4 891380167 +593 1 3 875659150 +363 181 5 891494783 +925 200 2 884717963 +862 120 3 879303953 +848 708 4 887046619 +563 566 4 880507042 +500 1010 4 883865483 +780 50 5 891363685 +823 134 5 878438232 +130 93 5 874953665 +130 121 5 876250746 +537 778 3 886031106 +655 913 4 891817521 +889 2 3 880182460 +865 1009 5 880144368 +851 979 3 875730244 +833 474 5 875122675 +394 380 4 881132876 +193 690 4 889123221 +621 809 4 880740136 +766 91 5 891310125 +650 479 5 891372339 +429 199 5 882386006 +847 596 3 878938982 +934 216 1 891191511 +788 556 2 880871128 +897 369 4 879993713 +936 287 4 886832419 +936 766 3 886832597 +449 120 1 879959573 +661 762 2 876037121 +721 874 3 877137447 +821 151 4 874792889 +764 596 3 876243046 +537 443 3 886031752 +618 628 2 891308019 +487 291 3 883445079 +113 975 5 875936424 +943 391 2 888640291 +864 685 4 888891900 +750 323 3 879445877 +279 64 1 875308510 +646 750 3 888528902 +654 370 2 887863914 +617 582 4 883789294 +913 690 3 880824288 +660 229 2 891406212 +421 498 4 892241344 +495 1091 4 888637503 +806 421 4 882388897 +676 538 4 892685437 +721 262 3 877137285 +913 209 2 881367150 +378 78 3 880056976 +880 476 3 880175444 +716 204 5 879795543 +276 1090 1 874795795 +13 225 2 882399156 +12 203 3 879959583 diff --git a/data/u.item b/data/u.item new file mode 100644 index 0000000..91bb56d --- /dev/null +++ b/data/u.item @@ -0,0 +1,1682 @@ +1|Toy Story (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +2|GoldenEye (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?GoldenEye%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +3|Four Rooms (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +4|Get Shorty (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)|0|1|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +5|Copycat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Copycat%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +6|Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)|01-Jan-1995||http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +7|Twelve Monkeys (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +8|Babe (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Babe%20(1995)|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +9|Dead Man Walking (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +10|Richard III (1995)|22-Jan-1996||http://us.imdb.com/M/title-exact?Richard%20III%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +11|Seven (Se7en) (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Se7en%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +12|Usual Suspects, The (1995)|14-Aug-1995||http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +13|Mighty Aphrodite (1995)|30-Oct-1995||http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +14|Postino, Il (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +15|Mr. Holland's Opus (1995)|29-Jan-1996||http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +16|French Twist (Gazon maudit) (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gazon%20maudit%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +17|From Dusk Till Dawn (1996)|05-Feb-1996||http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)|0|1|0|0|0|1|1|0|0|0|0|1|0|0|0|0|1|0|0 +18|White Balloon, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +19|Antonia's Line (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Antonia%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +20|Angels and Insects (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Angels%20and%20Insects%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +21|Muppet Treasure Island (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)|0|1|1|0|0|1|0|0|0|0|0|0|1|0|0|0|1|0|0 +22|Braveheart (1995)|16-Feb-1996||http://us.imdb.com/M/title-exact?Braveheart%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +23|Taxi Driver (1976)|16-Feb-1996||http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +24|Rumble in the Bronx (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +25|Birdcage, The (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +26|Brothers McMullen, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Brothers%20McMullen,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +27|Bad Boys (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +28|Apollo 13 (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +29|Batman Forever (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)|0|1|1|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +30|Belle de jour (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Belle%20de%20jour%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +31|Crimson Tide (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0 +32|Crumb (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crumb%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +33|Desperado (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Desperado%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +34|Doom Generation, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Doom%20Generation,%20The%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +35|Free Willy 2: The Adventure Home (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Free%20Willy%202:%20The%20Adventure%20Home%20(1995)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +36|Mad Love (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mad%20Love%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +37|Nadja (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nadja%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +38|Net, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Net,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +39|Strange Days (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0 +40|To Wong Foo, Thanks for Everything! Julie Newmar (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +41|Billy Madison (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Billy%20Madison%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +42|Clerks (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clerks%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +43|Disclosure (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Disclosure%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +44|Dolores Claiborne (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Dolores%20Claiborne%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +45|Eat Drink Man Woman (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +46|Exotica (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Exotica%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +47|Ed Wood (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +48|Hoop Dreams (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +49|I.Q. (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I.Q.%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +50|Star Wars (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0 +51|Legends of the Fall (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|1 +52|Madness of King George, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +53|Natural Born Killers (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +54|Outbreak (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Outbreak%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +55|Professional, The (1994)|01-Jan-1994||http://us.imdb.com/Title?L%E9on+(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|1|0|0 +56|Pulp Fiction (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +57|Priest (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Priest%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +58|Quiz Show (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +59|Three Colors: Red (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +60|Three Colors: Blue (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +61|Three Colors: White (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +62|Stargate (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Stargate%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +63|Santa Clause, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Santa%20Clause,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +64|Shawshank Redemption, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +65|What's Eating Gilbert Grape (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?What's%20Eating%20Gilbert%20Grape%20(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +66|While You Were Sleeping (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +67|Ace Ventura: Pet Detective (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +68|Crow, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +69|Forrest Gump (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|1|0 +70|Four Weddings and a Funeral (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +71|Lion King, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +72|Mask, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)|0|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0 +73|Maverick (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Maverick%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +74|Faster Pussycat! Kill! Kill! (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Faster%20Pussycat!%20Kill!%20Kill!%20(1965)|0|1|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +75|Brother Minister: The Assassination of Malcolm X (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Brother%20Minister:%20The%20Assassination%20of%20Malcolm%20X%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +76|Carlito's Way (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Carlito's%20Way%20(1993)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +77|Firm, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Firm,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +78|Free Willy (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +79|Fugitive, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +80|Hot Shots! Part Deux (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +81|Hudsucker Proxy, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +82|Jurassic Park (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +83|Much Ado About Nothing (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +84|Robert A. Heinlein's The Puppet Masters (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Robert%20A.%20Heinlein's%20The%20Puppet%20Masters%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +85|Ref, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +86|Remains of the Day, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +87|Searching for Bobby Fischer (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +88|Sleepless in Seattle (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +89|Blade Runner (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0 +90|So I Married an Axe Murderer (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +91|Nightmare Before Christmas, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +92|True Romance (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?True%20Romance%20(1993)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0 +93|Welcome to the Dollhouse (1995)|24-May-1996||http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +94|Home Alone (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +95|Aladdin (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Aladdin%20(1992)|0|0|0|1|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +96|Terminator 2: Judgment Day (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +97|Dances with Wolves (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +98|Silence of the Lambs, The (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +99|Snow White and the Seven Dwarfs (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +100|Fargo (1996)|14-Feb-1997||http://us.imdb.com/M/title-exact?Fargo%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +101|Heavy Metal (1981)|08-Mar-1981||http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)|0|1|1|1|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +102|Aristocats, The (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +103|All Dogs Go to Heaven 2 (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?All%20Dogs%20Go%20to%20Heaven%202%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +104|Theodore Rex (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Theodore%20Rex%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +105|Sgt. Bilko (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +106|Diabolique (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Diabolique%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +107|Moll Flanders (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Moll%20Flanders%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +108|Kids in the Hall: Brain Candy (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?Kids%20in%20the%20Hall:%20Brain%20Candy%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +109|Mystery Science Theater 3000: The Movie (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +110|Operation Dumbo Drop (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +111|Truth About Cats & Dogs, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +112|Flipper (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Flipper%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +113|Horseman on the Roof, The (Hussard sur le toit, Le) (1995)|19-Apr-1996||http://us.imdb.com/M/title-exact?Hussard%20sur%20le%20toit,%20Le%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +114|Wallace & Gromit: The Best of Aardman Animation (1996)|05-Apr-1996||http://us.imdb.com/Title?Wallace+%26+Gromit%3A+The+Best+of+Aardman+Animation+(1996)|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +115|Haunted World of Edward D. Wood Jr., The (1995)|26-Apr-1996||http://us.imdb.com/Title?Haunted+World+of+Edward+D.+Wood+Jr.,+The+(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +116|Cold Comfort Farm (1995)|23-Apr-1996||http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +117|Rock, The (1996)|07-Jun-1996||http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +118|Twister (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Twister%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +119|Maya Lin: A Strong Clear Vision (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Maya%20Lin:%20A%20Strong%20Clear%20Vision%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +120|Striptease (1996)|28-Jun-1996||http://us.imdb.com/M/title-exact?Striptease%20(1996)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +121|Independence Day (ID4) (1996)|03-Jul-1996||http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +122|Cable Guy, The (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +123|Frighteners, The (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +124|Lone Star (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +125|Phenomenon (1996)|29-Jun-1996||http://us.imdb.com/M/title-exact?Phenomenon%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +126|Spitfire Grill, The (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +127|Godfather, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +128|Supercop (1992)|26-Jul-1996||http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +129|Bound (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Bound%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|1|0|0 +130|Kansas City (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Kansas%20City%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +131|Breakfast at Tiffany's (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +132|Wizard of Oz, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)|0|0|1|0|1|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +133|Gone with the Wind (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +134|Citizen Kane (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +135|2001: A Space Odyssey (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|1|1|0|0 +136|Mr. Smith Goes to Washington (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +137|Big Night (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Big%20Night%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +138|D3: The Mighty Ducks (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?D3:%20The%20Mighty%20Ducks%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +139|Love Bug, The (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +140|Homeward Bound: The Incredible Journey (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +141|20,000 Leagues Under the Sea (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +142|Bedknobs and Broomsticks (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +143|Sound of Music, The (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +144|Die Hard (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +145|Lawnmower Man, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +146|Unhook the Stars (1996)|30-Oct-1996||http://us.imdb.com/M/title-exact?Unhook%20the%20Stars%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +147|Long Kiss Goodnight, The (1996)|05-Oct-1996||http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +148|Ghost and the Darkness, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +149|Jude (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Jude%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +150|Swingers (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Swingers%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +151|Willy Wonka and the Chocolate Factory (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +152|Sleeper (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Sleeper%20(1973)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +153|Fish Called Wanda, A (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +154|Monty Python's Life of Brian (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +155|Dirty Dancing (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +156|Reservoir Dogs (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +157|Platoon (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Platoon%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +158|Weekend at Bernie's (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +159|Basic Instinct (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Basic%20Instinct%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +160|Glengarry Glen Ross (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +161|Top Gun (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +162|On Golden Pond (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +163|Return of the Pink Panther, The (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +164|Abyss, The (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +165|Jean de Florette (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +166|Manon of the Spring (Manon des sources) (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +167|Private Benjamin (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +168|Monty Python and the Holy Grail (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +169|Wrong Trousers, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +170|Cinema Paradiso (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +171|Delicatessen (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Delicatessen%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +172|Empire Strikes Back, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|1|1|0|1|0 +173|Princess Bride, The (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +174|Raiders of the Lost Ark (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +175|Brazil (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Brazil%20(1985)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +176|Aliens (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Aliens%20(1986)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|1|0 +177|Good, The Bad and The Ugly, The (1966)|01-Jan-1966||http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +178|12 Angry Men (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +179|Clockwork Orange, A (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +180|Apocalypse Now (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +181|Return of the Jedi (1983)|14-Mar-1997||http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0 +182|GoodFellas (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?GoodFellas%20(1990)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +183|Alien (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Alien%20(1979)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +184|Army of Darkness (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)|0|1|1|0|0|1|0|0|0|0|0|1|0|0|0|1|0|0|0 +185|Psycho (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Psycho%20(1960)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|1|0|0 +186|Blues Brothers, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +187|Godfather: Part II, The (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +188|Full Metal Jacket (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +189|Grand Day Out, A (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +190|Henry V (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Henry%20V%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +191|Amadeus (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Amadeus%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +192|Raging Bull (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +193|Right Stuff, The (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +194|Sting, The (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +195|Terminator, The (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +196|Dead Poets Society (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +197|Graduate, The (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +198|Nikita (La Femme Nikita) (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Nikita%20(1990)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +199|Bridge on the River Kwai, The (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +200|Shining, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +201|Evil Dead II (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)|0|1|1|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +202|Groundhog Day (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +203|Unforgiven (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Unforgiven%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +204|Back to the Future (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +205|Patton (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?Patton%20(1970)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +206|Akira (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Akira%20(1988)|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +207|Cyrano de Bergerac (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Cyrano%20de%20Bergerac%20(1990)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +208|Young Frankenstein (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +209|This Is Spinal Tap (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)|0|0|0|0|0|1|0|0|1|0|0|0|1|0|0|0|0|0|0 +210|Indiana Jones and the Last Crusade (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +211|M*A*S*H (1970)|01-Jan-1970||http://us.imdb.com/M/title-exact?MASH%20(1970)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +212|Unbearable Lightness of Being, The (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +213|Room with a View, A (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +214|Pink Floyd - The Wall (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|1|0 +215|Field of Dreams (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +216|When Harry Met Sally... (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +217|Bram Stoker's Dracula (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0 +218|Cape Fear (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +219|Nightmare on Elm Street, A (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +220|Mirror Has Two Faces, The (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Mirror%20Has%20Two%20Faces,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +221|Breaking the Waves (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +222|Star Trek: First Contact (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +223|Sling Blade (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +224|Ridicule (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?Ridicule%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +225|101 Dalmatians (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +226|Die Hard 2 (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +227|Star Trek VI: The Undiscovered Country (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +228|Star Trek: The Wrath of Khan (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +229|Star Trek III: The Search for Spock (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +230|Star Trek IV: The Voyage Home (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +231|Batman Returns (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)|0|1|1|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +232|Young Guns (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +233|Under Siege (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +234|Jaws (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Jaws%20(1975)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +235|Mars Attacks! (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|1|0 +236|Citizen Ruth (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Citizen%20Ruth%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +237|Jerry Maguire (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +238|Raising Arizona (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +239|Sneakers (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Sneakers%20(1992)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|1|0|0|0 +240|Beavis and Butt-head Do America (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +241|Last of the Mohicans, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +242|Kolya (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Kolya%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +243|Jungle2Jungle (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +244|Smilla's Sense of Snow (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +245|Devil's Own, The (1997)|26-Mar-1997||http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0 +246|Chasing Amy (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +247|Turbo: A Power Rangers Movie (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?Turbo%3A%20A%20Power%20Rangers%20Movie%20%281997%29|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +248|Grosse Pointe Blank (1997)|11-Apr-1997||http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +249|Austin Powers: International Man of Mystery (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +250|Fifth Element, The (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +251|Shall We Dance? (1996)|11-Jul-1997||http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +252|Lost World: Jurassic Park, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +253|Pillow Book, The (1995)|13-Jun-1997||http://us.imdb.com/M/title-exact?Pillow%20Book%2C%20The%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +254|Batman & Robin (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Batman+%26+Robin+(1997)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +255|My Best Friend's Wedding (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +256|When the Cats Away (Chacun cherche son chat) (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?Chacun+cherche+son+chat+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +257|Men in Black (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Men+in+Black+(1997)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +258|Contact (1997)|11-Jul-1997||http://us.imdb.com/Title?Contact+(1997/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +259|George of the Jungle (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +260|Event Horizon (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Event+Horizon+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|1|1|0|0 +261|Air Bud (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Air+Bud+(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +262|In the Company of Men (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +263|Steel (1997)|15-Aug-1997||http://us.imdb.com/M/title-exact?Steel+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +264|Mimic (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Mimic+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +265|Hunt for Red October, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +266|Kull the Conqueror (1997)|29-Aug-1997||http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +267|unknown||||1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +268|Chasing Amy (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +269|Full Monty, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +270|Gattaca (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Gattaca+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|1|0|0 +271|Starship Troopers (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +272|Good Will Hunting (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119217|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +273|Heat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Heat%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +274|Sabrina (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sabrina%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +275|Sense and Sensibility (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +276|Leaving Las Vegas (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +277|Restoration (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Restoration%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +278|Bed of Roses (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Bed%20of%20Roses%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +279|Once Upon a Time... When We Were Colored (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time... When%20We%20Were%20Colored%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +280|Up Close and Personal (1996)|01-Mar-1996||http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +281|River Wild, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +282|Time to Kill, A (1996)|13-Jul-1996||http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +283|Emma (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Emma%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +284|Tin Cup (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +285|Secrets & Lies (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +286|English Patient, The (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +287|Marvin's Room (1996)|18-Dec-1996||http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +288|Scream (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Scream%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +289|Evita (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Evita%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +290|Fierce Creatures (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +291|Absolute Power (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +292|Rosewood (1997)|21-Feb-1997||http://us.imdb.com/M/title-exact?Rosewood%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +293|Donnie Brasco (1997)|28-Feb-1997||http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +294|Liar Liar (1997)|21-Mar-1997||http://us.imdb.com/Title?Liar+Liar+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +295|Breakdown (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Breakdown%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +296|Promesse, La (1996)|16-May-1997||http://us.imdb.com/M/title-exact?Promesse%2C%20La%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +297|Ulee's Gold (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +298|Face/Off (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Face/Off+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +299|Hoodlum (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Hoodlum+(1997)|0|0|0|0|0|0|1|0|1|0|1|0|0|0|0|0|0|0|0 +300|Air Force One (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Air+Force+One+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +301|In & Out (1997)|19-Sep-1997||http://us.imdb.com/Title?In+%26+Out+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +302|L.A. Confidential (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|1|0|0 +303|Ulee's Gold (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +304|Fly Away Home (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +305|Ice Storm, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +306|Mrs. Brown (Her Majesty, Mrs. Brown) (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +307|Devil's Advocate, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)|0|0|0|0|0|0|1|0|0|0|0|1|0|1|0|0|1|0|0 +308|FairyTale: A True Story (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|0|0|0|0 +309|Deceiver (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Liar+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +310|Rainmaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +311|Wings of the Dove, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wings+of+the+Dove%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|1|0|0 +312|Midnight in the Garden of Good and Evil (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)|0|0|0|0|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0 +313|Titanic (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120338|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +314|3 Ninjas: High Noon At Mega Mountain (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118539|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +315|Apt Pupil (1998)|23-Oct-1998||http://us.imdb.com/Title?Apt+Pupil+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +316|As Good As It Gets (1997)|23-Dec-1997||http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +317|In the Name of the Father (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +318|Schindler's List (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +319|Everyone Says I Love You (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +320|Paradise Lost: The Child Murders at Robin Hood Hills (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +321|Mother (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Mother%20(1996/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +322|Murder at 1600 (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +323|Dante's Peak (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +324|Lost Highway (1997)|21-Feb-1997||http://us.imdb.com/Title?Lost+Highway+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +325|Crash (1996)|21-Mar-1997||http://us.imdb.com/M/title-exact?Crash%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +326|G.I. Jane (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +327|Cop Land (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Cop+Land+(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0 +328|Conspiracy Theory (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +329|Desperate Measures (1998)|30-Jan-1998||http://us.imdb.com/Title?Desperate+Measures+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +330|187 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?187+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +331|Edge, The (1997)|26-Sep-1997||http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +332|Kiss the Girls (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +333|Game, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Game%2C+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +334|U Turn (1997)|01-Jan-1997||http://us.imdb.com/Title?U+Turn+(1997)|0|1|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0 +335|How to Be a Player (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?How+to+Be+a+Player+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +336|Playing God (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Playing+God+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +337|House of Yes, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?House+of+Yes,+The+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|1|0|0 +338|Bean (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Bean+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +339|Mad City (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mad+City+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +340|Boogie Nights (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +341|Critical Care (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Critical+Care+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +342|Man Who Knew Too Little, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Man+Who+Knew+Too+Little%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +343|Alien: Resurrection (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +344|Apostle, The (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118632|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +345|Deconstructing Harry (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118954|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +346|Jackie Brown (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119396|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +347|Wag the Dog (1997)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120885|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +348|Desperate Measures (1998)|30-Jan-1998||http://us.imdb.com/Title?Desperate+Measures+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +349|Hard Rain (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120696|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +350|Fallen (1998)|16-Jan-1998||http://us.imdb.com/Title?Fallen+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +351|Prophecy II, The (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119959|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +352|Spice World (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120185|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +353|Deep Rising (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118956|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +354|Wedding Singer, The (1998)|13-Feb-1998||http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +355|Sphere (1998)|13-Feb-1998||http://us.imdb.com/M/title-exact?Sphere+(1998)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +356|Client, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Client,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|1|0|0 +357|One Flew Over the Cuckoo's Nest (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +358|Spawn (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Spawn+(1997/I)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +359|Assignment, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Assignment%2C+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +360|Wonderland (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wonderland+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +361|Incognito (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Incognito+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +362|Blues Brothers 2000 (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?Blues+Brothers+2000+(1998)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +363|Sudden Death (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +364|Ace Ventura: When Nature Calls (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Ace%20Ventura:%20When%20Nature%20Calls%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +365|Powder (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Powder%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +366|Dangerous Minds (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dangerous%20Minds%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +367|Clueless (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Clueless%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +368|Bio-Dome (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Bio-Dome%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +369|Black Sheep (1996)|02-Feb-1996||http://us.imdb.com/M/title-exact?Black%20Sheep%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +370|Mary Reilly (1996)|23-Feb-1996||http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +371|Bridges of Madison County, The (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +372|Jeffrey (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jeffrey%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +373|Judge Dredd (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Judge%20Dredd%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +374|Mighty Morphin Power Rangers: The Movie (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mighty%20Morphin%20Power%20Rangers:%20The%20Movie%20(1995)|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +375|Showgirls (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Showgirls%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +376|Houseguest (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Houseguest%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +377|Heavyweights (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Heavyweights%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +378|Miracle on 34th Street (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +379|Tales From the Crypt Presents: Demon Knight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +380|Star Trek: Generations (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +381|Muriel's Wedding (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +382|Adventures of Priscilla, Queen of the Desert, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +383|Flintstones, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Flintstones,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +384|Naked Gun 33 1/3: The Final Insult (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +385|True Lies (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?True%20Lies%20(1994)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +386|Addams Family Values (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +387|Age of Innocence, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +388|Beverly Hills Cop III (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Beverly%20Hills%20Cop%20III%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +389|Black Beauty (1994)|01-Jan-1994||http://us.imdb.com/Title?Black+Beauty+(1994/I)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +390|Fear of a Black Hat (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fear%20of%20a%20Black%20Hat%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +391|Last Action Hero (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +392|Man Without a Face, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +393|Mrs. Doubtfire (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +394|Radioland Murders (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Radioland%20Murders%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0|0|0|0 +395|Robin Hood: Men in Tights (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Robin%20Hood:%20Men%20in%20Tights%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +396|Serial Mom (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)|0|0|0|0|0|1|1|0|0|0|0|1|0|0|0|0|0|0|0 +397|Striking Distance (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Striking%20Distance%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +398|Super Mario Bros. (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Super%20Mario%20Bros.%20(1993)|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +399|Three Musketeers, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +400|Little Rascals, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Rascals,%20The%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +401|Brady Bunch Movie, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +402|Ghost (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Ghost%20(1990)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +403|Batman (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Batman%20(1989)|0|1|1|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +404|Pinocchio (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Pinocchio%20(1940)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +405|Mission: Impossible (1996)|22-May-1996||http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +406|Thinner (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Thinner%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +407|Spy Hard (1996)|24-May-1996||http://us.imdb.com/M/title-exact?Spy%20Hard%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +408|Close Shave, A (1995)|28-Apr-1996||http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +409|Jack (1996)|07-Aug-1996||http://us.imdb.com/M/title-exact?Jack%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +410|Kingpin (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Kingpin%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +411|Nutty Professor, The (1996)|28-Jun-1996||http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)|0|0|0|0|0|1|0|0|0|1|0|0|0|0|1|1|0|0|0 +412|Very Brady Sequel, A (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Very%20Brady%20Sequel,%20A%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +413|Tales from the Crypt Presents: Bordello of Blood (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +414|My Favorite Year (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +415|Apple Dumpling Gang, The (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Apple%20Dumpling%20Gang,%20The%20(1975)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +416|Old Yeller (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +417|Parent Trap, The (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +418|Cinderella (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Cinderella%20(1950)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +419|Mary Poppins (1964)|01-Jan-1964||http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +420|Alice in Wonderland (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +421|William Shakespeare's Romeo and Juliet (1996)|25-Oct-1996||http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +422|Aladdin and the King of Thieves (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Aladdin%20and%20the%20King%20of%20Thieves%20(1996)%20(V)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +423|E.T. the Extra-Terrestrial (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|1|0|0|0 +424|Children of the Corn: The Gathering (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +425|Bob Roberts (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +426|Transformers: The Movie, The (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Transformers:%20The%20Movie,%20The%20(1986)|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|1|1|1|0 +427|To Kill a Mockingbird (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +428|Harold and Maude (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +429|Day the Earth Stood Still, The (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +430|Duck Soup (1933)|01-Jan-1933||http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +431|Highlander (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Highlander%20(1986)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +432|Fantasia (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Fantasia%20(1940)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +433|Heathers (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Heathers%20(1989)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +434|Forbidden Planet (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +435|Butch Cassidy and the Sundance Kid (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +436|American Werewolf in London, An (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +437|Amityville 1992: It's About Time (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +438|Amityville 3-D (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +439|Amityville: A New Generation (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +440|Amityville II: The Possession (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +441|Amityville Horror, The (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +442|Amityville Curse, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Amityville%20Curse,%20The%20(1990)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +443|Birds, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +444|Blob, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +445|Body Snatcher, The (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +446|Burnt Offerings (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +447|Carrie (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Carrie%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +448|Omen, The (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +449|Star Trek: The Motion Picture (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +450|Star Trek V: The Final Frontier (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +451|Grease (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Grease%20(1978)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +452|Jaws 2 (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Jaws%202%20(1978)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +453|Jaws 3-D (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +454|Bastard Out of Carolina (1996)|15-Dec-1996||http://us.imdb.com/M/title-exact?Bastard%20Out%20of%20Carolina%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +455|Jackie Chan's First Strike (1996)|10-Jan-1997||http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +456|Beverly Hills Ninja (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +457|Free Willy 3: The Rescue (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +458|Nixon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nixon%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +459|Cry, the Beloved Country (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cry,%20the%20Beloved%20Country%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +460|Crossing Guard, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crossing%20Guard,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +461|Smoke (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Smoke%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +462|Like Water For Chocolate (Como agua para chocolate) (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +463|Secret of Roan Inish, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +464|Vanya on 42nd Street (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Vanya%20on%2042nd%20Street%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +465|Jungle Book, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jungle%20Book,%20The%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +466|Red Rock West (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Red%20Rock%20West%20(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +467|Bronx Tale, A (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +468|Rudy (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Rudy%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +469|Short Cuts (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Short%20Cuts%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +470|Tombstone (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Tombstone%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +471|Courage Under Fire (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +472|Dragonheart (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Dragonheart%20(1996)|0|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +473|James and the Giant Peach (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +474|Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0 +475|Trainspotting (1996)|19-Jul-1996||http://us.imdb.com/Title?Trainspotting+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +476|First Wives Club, The (1996)|14-Sep-1996||http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +477|Matilda (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Matilda%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +478|Philadelphia Story, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +479|Vertigo (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Vertigo%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +480|North by Northwest (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +481|Apartment, The (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +482|Some Like It Hot (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +483|Casablanca (1942)|01-Jan-1942||http://us.imdb.com/M/title-exact?Casablanca%20(1942)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +484|Maltese Falcon, The (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0 +485|My Fair Lady (1964)|01-Jan-1964||http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +486|Sabrina (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Sabrina%20(1954)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +487|Roman Holiday (1953)|01-Jan-1953||http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +488|Sunset Blvd. (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +489|Notorious (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Notorious%20(1946)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|1|0|0 +490|To Catch a Thief (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?To%20Catch%20a%20Thief%20(1955)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|1|0|0 +491|Adventures of Robin Hood, The (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +492|East of Eden (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +493|Thin Man, The (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +494|His Girl Friday (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +495|Around the World in 80 Days (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +496|It's a Wonderful Life (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +497|Bringing Up Baby (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +498|African Queen, The (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +499|Cat on a Hot Tin Roof (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +500|Fly Away Home (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +501|Dumbo (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Dumbo%20(1941)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +502|Bananas (1971)|01-Jan-1971||http://us.imdb.com/M/title-exact?Bananas%20(1971)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +503|Candidate, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Candidate,%20The%20(1972)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +504|Bonnie and Clyde (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +505|Dial M for Murder (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +506|Rebel Without a Cause (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +507|Streetcar Named Desire, A (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +508|People vs. Larry Flynt, The (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +509|My Left Foot (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +510|Magnificent Seven, The (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +511|Lawrence of Arabia (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +512|Wings of Desire (1987)|01-Jan-1987||http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +513|Third Man, The (1949)|01-Jan-1949||http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +514|Annie Hall (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +515|Boot, Das (1981)|04-Apr-1997||http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +516|Local Hero (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +517|Manhattan (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Manhattan%20(1979)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +518|Miller's Crossing (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +519|Treasure of the Sierra Madre, The (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +520|Great Escape, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +521|Deer Hunter, The (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +522|Down by Law (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +523|Cool Hand Luke (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +524|Great Dictator, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +525|Big Sleep, The (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0 +526|Ben-Hur (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +527|Gandhi (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Gandhi%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +528|Killing Fields, The (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +529|My Life as a Dog (Mitt liv som hund) (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +530|Man Who Would Be King, The (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +531|Shine (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Shine%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +532|Kama Sutra: A Tale of Love (1996)|07-Mar-1997||http://us.imdb.com/M/title-exact?Kama%20Sutra%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +533|Daytrippers, The (1996)|21-Mar-1997||http://us.imdb.com/M/title-exact?Daytrippers%2C%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +534|Traveller (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Traveller%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +535|Addicted to Love (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Addicted%20to%20Love%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +536|Ponette (1996)|23-May-1997||http://us.imdb.com/M/title-exact?Ponette%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +537|My Own Private Idaho (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?My+Own+Private+Idaho+(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +538|Anastasia (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Anastasia+(1997)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +539|Mouse Hunt (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119715|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +540|Money Train (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Money%20Train%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +541|Mortal Kombat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +542|Pocahontas (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pocahontas%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +543|Misérables, Les (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mis%E9rables%2C%20Les%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +544|Things to Do in Denver when You're Dead (1995)|02-Feb-1996||http://us.imdb.com/M/title-exact?Things%20to%20Do%20in%20Denver%20when%20You're%20Dead%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|0|0|0 +545|Vampire in Brooklyn (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Vampire%20in%20Brooklyn%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +546|Broken Arrow (1996)|09-Feb-1996||http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +547|Young Poisoner's Handbook, The (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +548|NeverEnding Story III, The (1994)|02-Feb-1996||http://us.imdb.com/M/title-exact?NeverEnding%20Story%20III,%20The%20(1994)|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +549|Rob Roy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +550|Die Hard: With a Vengeance (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +551|Lord of Illusions (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +552|Species (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Species%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +553|Walk in the Clouds, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Walk%20in%20the%20Clouds,%20A%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +554|Waterworld (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Waterworld%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +555|White Man's Burden (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?White%20Man's%20Burden%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +556|Wild Bill (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Wild%20Bill%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +557|Farinelli: il castrato (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Farinelli:%20il%20castrato%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +558|Heavenly Creatures (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)|0|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0 +559|Interview with the Vampire (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +560|Kid in King Arthur's Court, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kid%20in%20King%20Arthur's%20Court,%20A%20(1995)|0|0|1|0|1|1|0|0|0|1|0|0|0|0|1|1|0|0|0 +561|Mary Shelley's Frankenstein (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +562|Quick and the Dead, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Quick%20and%20the%20Dead,%20The%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +563|Stephen King's The Langoliers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +564|Tales from the Hood (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +565|Village of the Damned (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +566|Clear and Present Danger (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +567|Wes Craven's New Nightmare (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +568|Speed (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Speed%20(1994/I)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +569|Wolf (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wolf%20(1994)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +570|Wyatt Earp (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wyatt%20Earp%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +571|Another Stakeout (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Another%20Stakeout%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +572|Blown Away (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blown%20Away%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +573|Body Snatchers (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +574|Boxing Helena (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Boxing%20Helena%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +575|City Slickers II: The Legend of Curly's Gold (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?City%20Slickers%20II:%20The%20Legend%20of%20Curly's%20Gold%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +576|Cliffhanger (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cliffhanger%20(1993)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +577|Coneheads (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Coneheads%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +578|Demolition Man (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +579|Fatal Instinct (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fatal%20Instinct%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +580|Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Englishman%20Who%20Went%20Up%20a%20Hill,%20But%20Came%20Down%20a%20Mountain,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +581|Kalifornia (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Kalifornia%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +582|Piano, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +583|Romeo Is Bleeding (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Romeo%20Is%20Bleeding%20(1993)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +584|Secret Garden, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Secret%20Garden,%20The%20(1993)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +585|Son in Law (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Son%20in%20Law%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +586|Terminal Velocity (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Terminal%20Velocity%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +587|Hour of the Pig, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hour%20of%20the%20Pig,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +588|Beauty and the Beast (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +589|Wild Bunch, The (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +590|Hellraiser: Bloodline (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +591|Primal Fear (1996)|30-Mar-1996||http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +592|True Crime (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?True%20Crime%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +593|Stalingrad (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Stalingrad%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +594|Heavy (1995)|05-Jun-1996||http://us.imdb.com/M/title-exact?Heavy%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +595|Fan, The (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Fan,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +596|Hunchback of Notre Dame, The (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +597|Eraser (1996)|21-Jun-1996||http://us.imdb.com/M/title-exact?Eraser%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +598|Big Squeeze, The (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Big%20Squeeze,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +599|Police Story 4: Project S (Chao ji ji hua) (1993)|16-Aug-1996||http://us.imdb.com/M/title-exact?Project%20S%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +600|Daniel Defoe's Robinson Crusoe (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Robinson%20Crusoe%20(1996)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +601|For Whom the Bell Tolls (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?For%20Whom%20the%20Bell%20Tolls%20(1943)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +602|American in Paris, An (1951)|01-Jan-1951||http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +603|Rear Window (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +604|It Happened One Night (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +605|Meet Me in St. Louis (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Meet%20Me%20in%20St.%20Louis%20(1944)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +606|All About Eve (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +607|Rebecca (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Rebecca%20(1940)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +608|Spellbound (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Spellbound%20(1945)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|1|0|0 +609|Father of the Bride (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +610|Gigi (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Gigi%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +611|Laura (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Laura%20(1944)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|0|0|0 +612|Lost Horizon (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +613|My Man Godfrey (1936)|01-Jan-1936||http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +614|Giant (1956)|01-Jan-1956||http://us.imdb.com/M/title-exact?Giant%20(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +615|39 Steps, The (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +616|Night of the Living Dead (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Night%20of%20the%20Living%20Dead%20(1968)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0 +617|Blue Angel, The (Blaue Engel, Der) (1930)|01-Jan-1930||http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +618|Picnic (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Picnic%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +619|Extreme Measures (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +620|Chamber, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Chamber,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +621|Davy Crockett, King of the Wild Frontier (1955)|01-Jan-1955||http://us.imdb.com/M/title-exact?Davy%20Crockett%2C%20King%20of%20the%20Wild%20Frontier%20%281955%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +622|Swiss Family Robinson (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Swiss%20Family%20Robinson%20(1960)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +623|Angels in the Outfield (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Angels%20in%20the%20Outfield%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +624|Three Caballeros, The (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Three%20Caballeros,%20The%20(1945)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +625|Sword in the Stone, The (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Sword%20in%20the%20Stone,%20The%20(1963)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +626|So Dear to My Heart (1949)|01-Jan-1949||http://us.imdb.com/Title?So+Dear+to+My+Heart+(1949)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +627|Robin Hood: Prince of Thieves (1991)|01-Jan-1991||http://us.imdb.com/Title?Robin+Hood%3A+Prince+of+Thieves+(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +628|Sleepers (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Sleepers%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +629|Victor/Victoria (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +630|Great Race, The (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +631|Crying Game, The (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +632|Sophie's Choice (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Sophie's%20Choice%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +633|Christmas Carol, A (1938)|01-Jan-1938||http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +634|Microcosmos: Le peuple de l'herbe (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Microcosmos%3A%20Le%20peuple%20de%20l%27herbe%20%281996%29|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +635|Fog, The (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +636|Escape from New York (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +637|Howling, The (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +638|Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Retour%20de%20Martin%20Guerre,%20Le%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +639|Tin Drum, The (Blechtrommel, Die) (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +640|Cook the Thief His Wife & Her Lover, The (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Cook%20the%20Thief%20His%20Wife%20&%20Her%20Lover,%20The%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +641|Paths of Glory (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Paths%20of%20Glory%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +642|Grifters, The (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)|0|0|0|0|0|0|1|0|1|0|1|0|0|0|0|0|0|0|0 +643|The Innocent (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Innocent,%20The%20(1994)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +644|Thin Blue Line, The (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Thin%20Blue%20Line,%20The%20(1988)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +645|Paris Is Burning (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Paris%20Is%20Burning%20(1990)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +646|Once Upon a Time in the West (1969)|01-Jan-1969||http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +647|Ran (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Ran%20(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +648|Quiet Man, The (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?Quiet%20Man,%20The%20(1952)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +649|Once Upon a Time in America (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time%20in%20America%20(1984)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +650|Seventh Seal, The (Sjunde inseglet, Det) (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Sjunde%20inseglet,%20Det%20(1957)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +651|Glory (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Glory%20(1989)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +652|Rosencrantz and Guildenstern Are Dead (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +653|Touch of Evil (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Touch%20of%20Evil%20(1958)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +654|Chinatown (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Chinatown%20(1974)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|1|0|0 +655|Stand by Me (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)|0|0|1|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +656|M (1931)|01-Jan-1931||http://us.imdb.com/M/title-exact?M%20(1931)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +657|Manchurian Candidate, The (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +658|Pump Up the Volume (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Pump%20Up%20the%20Volume%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +659|Arsenic and Old Lace (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|1|0|0 +660|Fried Green Tomatoes (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +661|High Noon (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?High%20Noon%20(1952)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +662|Somewhere in Time (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +663|Being There (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Being%20There%20(1979)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +664|Paris, Texas (1984)|01-Jan-1984||http://us.imdb.com/M/title-exact?Paris,%20Texas%20(1984)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +665|Alien 3 (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Alien%203%20(1992)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +666|Blood For Dracula (Andy Warhol's Dracula) (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Andy%20Warhol's%20Dracula%20(1974)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +667|Audrey Rose (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Audrey%20Rose%20(1977)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +668|Blood Beach (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +669|Body Parts (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +670|Body Snatchers (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|1|0|0 +671|Bride of Frankenstein (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +672|Candyman (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Candyman%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +673|Cape Fear (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Cape%20Fear%20(1962)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +674|Cat People (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Cat%20People%20(1982)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +675|Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)|01-Jan-1922||http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +676|Crucible, The (1996)|27-Nov-1996||http://us.imdb.com/M/title-exact?Crucible,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +677|Fire on the Mountain (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Fire%20on%20the%20Mountain%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +678|Volcano (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Volcano%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +679|Conan the Barbarian (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +680|Kull the Conqueror (1997)|29-Aug-1997||http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +681|Wishmaster (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Wishmaster+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +682|I Know What You Did Last Summer (1997)|17-Oct-1997||http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|1|0|0 +683|Rocket Man (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Rocket+Man+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +684|In the Line of Fire (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +685|Executive Decision (1996)|09-Mar-1996||http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +686|Perfect World, A (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +687|McHale's Navy (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +688|Leave It to Beaver (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +689|Jackal, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +690|Seven Years in Tibet (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +691|Dark City (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118929|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0 +692|American President, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +693|Casino (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Casino%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +694|Persuasion (1995)|25-Sep-1995||http://us.imdb.com/Title?Persuasion+(1995/I)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +695|Kicking and Screaming (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kicking%20and%20Screaming%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +696|City Hall (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?City%20Hall%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +697|Basketball Diaries, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Basketball%20Diaries,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +698|Browning Version, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Browning%20Version,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +699|Little Women (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Women%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +700|Miami Rhapsody (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Miami%20Rhapsody%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +701|Wonderful, Horrible Life of Leni Riefenstahl, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Macht%20der%20Bilder:%20Leni%20Riefenstahl,%20Die%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +702|Barcelona (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Barcelona%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +703|Widows' Peak (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Widows'%20Peak%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +704|House of the Spirits, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?House%20of%20the%20Spirits,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +705|Singin' in the Rain (1952)|01-Jan-1952||http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0|0 +706|Bad Moon (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +707|Enchanted April (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +708|Sex, Lies, and Videotape (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +709|Strictly Ballroom (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +710|Better Off Dead... (1985)|01-Jan-1985||http://us.imdb.com/Title?Better+Off+Dead...+(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +711|Substance of Fire, The (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +712|Tin Men (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +713|Othello (1995)|18-Dec-1995||http://us.imdb.com/M/title-exact?Othello%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +714|Carrington (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Carrington%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +715|To Die For (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?To%20Die%20For%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +716|Home for the Holidays (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +717|Juror, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Juror,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +718|In the Bleak Midwinter (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?In%20the%20Bleak%20Midwinter%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +719|Canadian Bacon (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Canadian%20Bacon%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +720|First Knight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?First%20Knight%20(1995)|0|1|1|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +721|Mallrats (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mallrats%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +722|Nine Months (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nine%20Months%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +723|Boys on the Side (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Boys%20on%20the%20Side%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +724|Circle of Friends (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Circle%20of%20Friends%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +725|Exit to Eden (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Exit%20to%20Eden%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +726|Fluke (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fluke%20(1995)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +727|Immortal Beloved (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Immortal%20Beloved%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +728|Junior (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Junior%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +729|Nell (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nell%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +730|Queen Margot (Reine Margot, La) (1994)|01-Jan-1996||http://us.imdb.com/Title?Reine+Margot,+La+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +731|Corrina, Corrina (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Corrina,%20Corrina%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +732|Dave (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Dave%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +733|Go Fish (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Go%20Fish%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +734|Made in America (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Made%20in%20America%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +735|Philadelphia (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Philadelphia%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +736|Shadowlands (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Shadowlands%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +737|Sirens (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sirens%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +738|Threesome (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Threesome%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +739|Pretty Woman (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +740|Jane Eyre (1996)|05-Apr-1996||http://us.imdb.com/M/title-exact?Jane%20Eyre%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +741|Last Supper, The (1995)|05-Apr-1996||http://us.imdb.com/M/title-exact?Last%20Supper,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +742|Ransom (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Ransom%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +743|Crow: City of Angels, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Crow%3A%20City%20of%20Angels%2C%20The%20%281996%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +744|Michael Collins (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +745|Ruling Class, The (1972)|01-Jan-1972||http://us.imdb.com/M/title-exact?Ruling%20Class,%20The%20(1972)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +746|Real Genius (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Real%20Genius%20(1985)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +747|Benny & Joon (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +748|Saint, The (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +749|MatchMaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +750|Amistad (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118607|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +751|Tomorrow Never Dies (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120347|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +752|Replacement Killers, The (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?Replacement+Killers%2C+The+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +753|Burnt By the Sun (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Utomlyonnye%20Solntsem%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +754|Red Corner (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Red+Corner+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +755|Jumanji (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jumanji%20(1995)|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +756|Father of the Bride Part II (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20Part%20II%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +757|Across the Sea of Time (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Across%20The%20Sea%20of%20Time%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +758|Lawnmower Man 2: Beyond Cyberspace (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Lawnmower%20Man%202:%20Beyond%20Cyberspace%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +759|Fair Game (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fair%20Game%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +760|Screamers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Screamers%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +761|Nick of Time (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nick%20of%20Time%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +762|Beautiful Girls (1996)|09-Feb-1996||http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +763|Happy Gilmore (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +764|If Lucy Fell (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?If%20Lucy%20Fell%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +765|Boomerang (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Boomerang%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +766|Man of the Year (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Man%20of%20the%20Year%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +767|Addiction, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Addiction,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +768|Casper (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Casper%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +769|Congo (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Congo%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0 +770|Devil in a Blue Dress (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Devil%20in%20a%20Blue%20Dress%20(1995)|0|0|0|0|0|0|1|0|0|0|1|0|0|1|0|0|1|0|0 +771|Johnny Mnemonic (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Johnny%20Mnemonic%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +772|Kids (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kids%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +773|Mute Witness (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mute%20Witness%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +774|Prophecy, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Prophecy,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +775|Something to Talk About (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Something%20to%20Talk%20About%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +776|Three Wishes (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Three%20Wishes%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +777|Castle Freak (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Castle%20Freak%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +778|Don Juan DeMarco (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Don%20Juan%20DeMarco%20and%20the%20Centerfold%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +779|Drop Zone (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Drop%20Zone%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +780|Dumb & Dumber (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +781|French Kiss (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?French%20Kiss%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +782|Little Odessa (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Odessa%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +783|Milk Money (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Milk%20Money%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +784|Beyond Bedlam (1993)|01-Jan-1993||http://us.imdb.com/Title?Beyond+Bedlam+(1993)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +785|Only You (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Only%20You%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +786|Perez Family, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Perez%20Family,%20The%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +787|Roommates (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Roommates%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +788|Relative Fear (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Relative%20Fear%20(1994)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +789|Swimming with Sharks (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Swimming%20with%20Sharks%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +790|Tommy Boy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tommy%20Boy%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +791|Baby-Sitters Club, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Baby-Sitters%20Club,%20The%20(1995)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +792|Bullets Over Broadway (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +793|Crooklyn (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Crooklyn%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +794|It Could Happen to You (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?It%20Could%20Happen%20to%20You%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +795|Richie Rich (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Richie%20Rich%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +796|Speechless (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Speechless%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +797|Timecop (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Timecop%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +798|Bad Company (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bad%20Company%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +799|Boys Life (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Boys%20Life%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +800|In the Mouth of Madness (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +801|Air Up There, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Air%20Up%20There,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +802|Hard Target (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Hard%20Target%20(1993)|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +803|Heaven & Earth (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Heaven%20&%20Earth%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +804|Jimmy Hollywood (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jimmy%20Hollywood%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +805|Manhattan Murder Mystery (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Manhattan%20Murder%20Mystery%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +806|Menace II Society (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Menace%20II%20Society%20(1993)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +807|Poetic Justice (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Poetic%20Justice%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +808|Program, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Program,%20The%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +809|Rising Sun (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Rising%20Sun%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +810|Shadow, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Shadow,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +811|Thirty-Two Short Films About Glenn Gould (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Thirty-Two%20Short%20Films%20About%20Glenn%20Gould%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +812|Andre (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Andre%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +813|Celluloid Closet, The (1995)|15-Mar-1996||http://us.imdb.com/M/title-exact?Celluloid%20Closet,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +814|Great Day in Harlem, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Great%20Day%20in%20Harlem,%20A%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +815|One Fine Day (1996)|30-Nov-1996||http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +816|Candyman: Farewell to the Flesh (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Candyman:%20Farewell%20to%20the%20Flesh%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +817|Frisk (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Frisk%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +818|Girl 6 (1996)|22-Mar-1996||http://us.imdb.com/M/title-exact?Girl%206%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +819|Eddie (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Eddie%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +820|Space Jam (1996)|15-Nov-1996||http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)|0|0|1|1|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +821|Mrs. Winterbourne (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mrs.%20Winterbourne%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +822|Faces (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Faces%20(1968)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +823|Mulholland Falls (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Mulholland%20Falls%20(1996)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +824|Great White Hype, The (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Great%20White%20Hype,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +825|Arrival, The (1996)|31-May-1996||http://us.imdb.com/M/title-exact?Arrival,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +826|Phantom, The (1996)|07-Jun-1996||http://us.imdb.com/M/title-exact?Phantom,%20The%20(1996)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +827|Daylight (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Daylight%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +828|Alaska (1996)|21-Aug-1996||http://us.imdb.com/M/title-exact?Alaska%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +829|Fled (1996)|19-Jul-1996||http://us.imdb.com/M/title-exact?Fled%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +830|Power 98 (1995)|17-May-1996||http://us.imdb.com/M/title-exact?Power%2098%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +831|Escape from L.A. (1996)|09-Aug-1996||http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +832|Bogus (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Bogus%20(1996)|0|0|0|0|1|0|0|0|1|1|0|0|0|0|0|0|0|0|0 +833|Bulletproof (1996)|06-Sep-1996||http://us.imdb.com/M/title-exact?Bulletproof%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +834|Halloween: The Curse of Michael Myers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Halloween:%20The%20Curse%20of%20Michael%20Myers%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +835|Gay Divorcee, The (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Gay%20Divorcee%2C%20The%20%281934%29|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +836|Ninotchka (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Ninotchka%20(1939)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +837|Meet John Doe (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Meet%20John%20Doe%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +838|In the Line of Duty 2 (1987)|30-Aug-1996||http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Duty%202%20(1987)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +839|Loch Ness (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Loch%20Ness%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +840|Last Man Standing (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +841|Glimmer Man, The (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +842|Pollyanna (1960)|01-Jan-1960||http://us.imdb.com/M/title-exact?Pollyanna%20(1960)|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +843|Shaggy Dog, The (1959)|01-Jan-1959||http://us.imdb.com/M/title-exact?Shaggy%20Dog,%20The%20(1959)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +844|Freeway (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Freeway%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +845|That Thing You Do! (1996)|28-Sep-1996||http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +846|To Gillian on Her 37th Birthday (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?To%20Gillian%20on%20Her%2037th%20Birthday%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +847|Looking for Richard (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Looking%20for%20Richard%20(1996)|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +848|Murder, My Sweet (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Murder,%20My%20Sweet%20(1944)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +849|Days of Thunder (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Days%20of%20Thunder%20(1990)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +850|Perfect Candidate, A (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Perfect%20Candidate,%20A%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +851|Two or Three Things I Know About Her (1966)|01-Jan-1966||http://us.imdb.com/M/title-exact?Deux%20ou%20trois%20choses%20que%20je%20sais%20d'elle%20(1966)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +852|Bloody Child, The (1996)|26-Oct-1996||http://us.imdb.com/M/title-exact?Bloody%20Child%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +853|Braindead (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Braindead%20(1992)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +854|Bad Taste (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Bad%20Taste%20(1987)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +855|Diva (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Diva%20(1981)|0|1|0|0|0|0|0|0|1|0|0|0|0|1|1|0|1|0|0 +856|Night on Earth (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +857|Paris Was a Woman (1995)|08-Nov-1996||http://us.imdb.com/M/title-exact?Paris%20Was%20a%20Woman%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +858|Amityville: Dollhouse (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Amityville:%20Dollhouse%20(1996)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +859|April Fool's Day (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +860|Believers, The (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Believers,%20The%20(1987)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +861|Nosferatu a Venezia (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Nosferatu%20a%20Venezia%20(1986)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +862|Jingle All the Way (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Jingle%20All%20the%20Way%20(1996)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +863|Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)|08-Nov-1996||http://us.imdb.com/M/title-exact?Giardino%20dei%20Finzi-Contini,%20Il%20(1970)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +864|My Fellow Americans (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +865|Ice Storm, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +866|Michael (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Michael%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +867|Whole Wide World, The (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Whole%20Wide%20World,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +868|Hearts and Minds (1996)|10-Jan-1997||http://us.imdb.com/M/title-exact?Hearts%20and%20Minds%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +869|Fools Rush In (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Fools%20Rush%20In%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +870|Touch (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Touch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +871|Vegas Vacation (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +872|Love Jones (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +873|Picture Perfect (1997)|01-Aug-1997||http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +874|Career Girls (1997)|08-Aug-1997||http://us.imdb.com/M/title-exact?Career+Girls+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +875|She's So Lovely (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +876|Money Talks (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Money+Talks+(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +877|Excess Baggage (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +878|That Darn Cat! (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +879|Peacemaker, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0 +880|Soul Food (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Soul+Food+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +881|Money Talks (1997)|22-Aug-1997||http://us.imdb.com/M/title-exact?Money+Talks+(1997)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +882|Washington Square (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Washington+Square+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +883|Telling Lies in America (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Telling+Lies+in+America+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +884|Year of the Horse (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Year+of+the+Horse+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +885|Phantoms (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?Phantoms+(1998)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +886|Life Less Ordinary, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Life+Less+Ordinary,+A+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +887|Eve's Bayou (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Eve's+Bayou+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +888|One Night Stand (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?One+Night+Stand+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +889|Tango Lesson, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Tango+Lesson,+The+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +890|Mortal Kombat: Annihilation (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mortal+Kombat%3A+Annihilation+(1997)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +891|Bent (1997)|18-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118698|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +892|Flubber (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119137|0|0|0|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +893|For Richer or Poorer (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119142|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +894|Home Alone 3 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119303|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +895|Scream 2 (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120082|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +896|Sweet Hereafter, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Sweet+Hereafter%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +897|Time Tracers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?imdb-title-128755|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +898|Postman, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119925|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +899|Winter Guest, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120521|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +900|Kundun (1997)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119485|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +901|Mr. Magoo (1997)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119718|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +902|Big Lebowski, The (1998)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118715|0|0|0|0|0|1|1|0|0|0|0|0|0|1|0|0|1|0|0 +903|Afterglow (1997)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-118566|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +904|Ma vie en rose (My Life in Pink) (1997)|26-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119590|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +905|Great Expectations (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119223|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +906|Oscar & Lucinda (1997)|31-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119843|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +907|Vermin (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120881|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +908|Half Baked (1998)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120693|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +909|Dangerous Beauty (1998)|23-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118892|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +910|Nil By Mouth (1997)|06-Feb-1998||http://us.imdb.com/Title?Nil+By+Mouth+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +911|Twilight (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119594|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +912|U.S. Marshalls (1998)|10-Mar-1998||http://us.imdb.com/Title?U.S.+Marshals+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +913|Love and Death on Long Island (1997)|10-Mar-1998||http://us.imdb.com/Title?Love+and+Death+on+Long+Island+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +914|Wild Things (1998)|14-Mar-1998||http://us.imdb.com/Title?Wild+Things+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|1|0|0 +915|Primary Colors (1998)|20-Mar-1998||http://us.imdb.com/Title?Primary+Colors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +916|Lost in Space (1998)|27-Mar-1998||http://us.imdb.com/Title?Lost+in+Space+(1998)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +917|Mercury Rising (1998)|27-Mar-1998||http://us.imdb.com/Title?Mercury+Rising+(1998)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +918|City of Angels (1998)|03-Apr-1998||http://us.imdb.com/Title?City+of+Angels+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +919|City of Lost Children, The (1995)|01-Jan-1995||http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +920|Two Bits (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Two%20Bits%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +921|Farewell My Concubine (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Ba%20Wang%20Bie%20Ji%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +922|Dead Man (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Dead%20Man%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +923|Raise the Red Lantern (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Da%20Hong%20Deng%20Long%20Gao%20Gao%20Gua%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +924|White Squall (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?White%20Squall%20(1996)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +925|Unforgettable (1996)|23-Feb-1996||http://us.imdb.com/Title?Unforgettable+(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +926|Down Periscope (1996)|01-Mar-1996||http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +927|Flower of My Secret, The (Flor de mi secreto, La) (1995)|08-Mar-1996||http://us.imdb.com/M/title-exact?Flor%20de%20mi%20secreto,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +928|Craft, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Craft,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0 +929|Harriet the Spy (1996)|03-Jul-1996||http://us.imdb.com/M/title-exact?Harriet%20the%20Spy%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +930|Chain Reaction (1996)|31-Jul-1996||http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +931|Island of Dr. Moreau, The (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +932|First Kid (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?First%20Kid%20(1996)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +933|Funeral, The (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Funeral,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +934|Preacher's Wife, The (1996)|13-Dec-1996||http://us.imdb.com/M/title-exact?Preacher's%20Wife,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +935|Paradise Road (1997)|18-Apr-1997||http://us.imdb.com/M/title-exact?Paradise%20Road%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +936|Brassed Off (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Brassed%20Off%20%281996%29|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +937|Thousand Acres, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Thousand+Acres%2C+A+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +938|Smile Like Yours, A (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Smile+Like+Yours%2C+A+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +939|Murder in the First (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Murder%20in%20the%20First%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +940|Airheads (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Airheads%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +941|With Honors (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?With%20Honors%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +942|What's Love Got to Do with It (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?What's%20Love%20Got%20to%20Do%20with%20It%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +943|Killing Zoe (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Killing%20Zoe%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +944|Renaissance Man (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Renaissance%20Man%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|1|0 +945|Charade (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?Charade%20(1963)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|1|0|1|0|0 +946|Fox and the Hound, The (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Fox%20and%20the%20Hound,%20The%20(1981)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +947|Big Blue, The (Grand bleu, Le) (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Grand%20bleu,%20Le%20(1988)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +948|Booty Call (1997)|28-Feb-1997||http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +949|How to Make an American Quilt (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?How%20to%20Make%20an%20American%20Quilt%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +950|Georgia (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Georgia%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +951|Indian in the Cupboard, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Indian%20in%20the%20Cupboard,%20The%20(1995)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +952|Blue in the Face (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Blue%20in%20the%20Face%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +953|Unstrung Heroes (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Unstrung%20Heroes%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +954|Unzipped (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Unzipped%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +955|Before Sunrise (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Before%20Sunrise%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +956|Nobody's Fool (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nobody's%20Fool%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +957|Pushing Hands (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Tui%20Shou%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +958|To Live (Huozhe) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Huozhe%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +959|Dazed and Confused (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Dazed%20and%20Confused%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +960|Naked (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Naked%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +961|Orlando (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Orlando%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +962|Ruby in Paradise (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Ruby%20in%20Paradise%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +963|Some Folks Call It a Sling Blade (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Some%20Folks%20Call%20It%20a%20Sling%20Blade%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +964|Month by the Lake, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Month%20by%20The%20Lake,%20A%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +965|Funny Face (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Funny%20Face%20(1957)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +966|Affair to Remember, An (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Affair%20to%20Remember,%20An%20(1957)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +967|Little Lord Fauntleroy (1936)|01-Jan-1936||http://us.imdb.com/M/title-exact?Little%20Lord%20Fauntleroy%20(1936)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +968|Inspector General, The (1949)|01-Jan-1949||http://us.imdb.com/M/title-exact?Inspector%20General,%20The%20(1949)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +969|Winnie the Pooh and the Blustery Day (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Winnie%20the%20Pooh%20and%20the%20Blustery%20Day%20%281968%29|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +970|Hear My Song (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Hear%20My%20Song%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +971|Mediterraneo (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Mediterraneo%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +972|Passion Fish (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Passion%20Fish%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +973|Grateful Dead (1995)|18-Oct-1996||http://us.imdb.com/M/title-exact?Grateful%20Dead%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +974|Eye for an Eye (1996)|01-Jan-1996||http://us.imdb.com/Title?Eye+for+an+Eye+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +975|Fear (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?Fear%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +976|Solo (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Solo%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +977|Substitute, The (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Substitute,%20The%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +978|Heaven's Prisoners (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Heaven's%20Prisoners%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +979|Trigger Effect, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Trigger%20Effect,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +980|Mother Night (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Mother%20Night%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +981|Dangerous Ground (1997)|04-Sep-1996||http://us.imdb.com/M/title-exact?Dangerous%20Ground%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +982|Maximum Risk (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Maximum%20Risk%20(1996)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +983|Rich Man's Wife, The (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Rich%20Man's%20Wife,%20The%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +984|Shadow Conspiracy (1997)|31-Jan-1997||http://us.imdb.com/M/title-exact?Shadow%20Conspiracy%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +985|Blood & Wine (1997)|15-Nov-1996||http://us.imdb.com/Title?Blood+%26+Wine+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +986|Turbulence (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Turbulence%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +987|Underworld (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Underworld%20(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +988|Beautician and the Beast, The (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Beautician%20and%20the%20Beast,%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +989|Cats Don't Dance (1997)|26-Mar-1997||http://us.imdb.com/M/title-exact?Cats%20Don%27t%20Dance%20(1997)|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +990|Anna Karenina (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Anna%20Karenina%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +991|Keys to Tulsa (1997)|11-Apr-1997||http://us.imdb.com/Title?Keys+to+Tulsa+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +992|Head Above Water (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?Head+Above+Water+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +993|Hercules (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Hercules+(1997)|0|0|1|1|1|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +994|Last Time I Committed Suicide, The (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Last+Time+I+Committed+Suicide%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +995|Kiss Me, Guido (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kiss+Me%2C+Guido+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +996|Big Green, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Big%20Green,%20The%20(1995)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +997|Stuart Saves His Family (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Stuart%20Saves%20His%20Family%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +998|Cabin Boy (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cabin%20Boy%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +999|Clean Slate (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Clean%20Slate%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1000|Lightning Jack (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lightning%20Jack%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +1001|Stupids, The (1996)|30-Aug-1996||http://us.imdb.com/M/title-exact?Stupids,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1002|Pest, The (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?Pest,%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1003|That Darn Cat! (1997)|14-Feb-1997||http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1004|Geronimo: An American Legend (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Geronimo:%20An%20American%20Legend%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1 +1005|Double vie de Véronique, La (Double Life of Veronique, The) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Podwojne%20zycie%20Weroniki%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1006|Until the End of the World (Bis ans Ende der Welt) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Bis%20ans%20Ende%20der%20Welt%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0 +1007|Waiting for Guffman (1996)|31-Jan-1997||http://us.imdb.com/M/title-exact?Waiting%20for%20Guffman%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1008|I Shot Andy Warhol (1996)|01-May-1996||http://us.imdb.com/M/title-exact?I%20Shot%20Andy%20Warhol%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1009|Stealing Beauty (1996)|14-Jun-1996||http://us.imdb.com/M/title-exact?Stealing%20Beauty%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1010|Basquiat (1996)|16-Aug-1996||http://us.imdb.com/M/title-exact?Basquiat%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1011|2 Days in the Valley (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?2%20Days%20in%20the%20Valley%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1012|Private Parts (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Private%20Parts%20(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1013|Anaconda (1997)|11-Apr-1997||http://us.imdb.com/M/title-exact?Anaconda%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1014|Romy and Michele's High School Reunion (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Romy%20and%20Michele%27s%20High%20School%20Reunion%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1015|Shiloh (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Shiloh%20%281997%29|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1016|Con Air (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Con%20Air%20%281997%29|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1017|Trees Lounge (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Trees%20Lounge%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1018|Tie Me Up! Tie Me Down! (1990)|01-Jan-1990||http://us.imdb.com/Title?%A1%C1tame%21+(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1019|Die xue shuang xiong (Killer, The) (1989)|01-Jan-1989||http://us.imdb.com/M/title-exact?Die%20xue%20shuang%20xiong%20(1989)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1020|Gaslight (1944)|01-Jan-1944||http://us.imdb.com/M/title-exact?Gaslight%20(1944)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1021|8 1/2 (1963)|01-Jan-1963||http://us.imdb.com/M/title-exact?8%201/2%20(1963)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1022|Fast, Cheap & Out of Control (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fast,+Cheap+&+Out+of+Control+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1023|Fathers' Day (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Fathers%27%20Day%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1024|Mrs. Dalloway (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Mrs%2E+Dalloway+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1025|Fire Down Below (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Fire+Down+Below+(1997)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1026|Lay of the Land, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Lay+of+the+Land%2C+The+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1027|Shooter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Shooter,%20The%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1028|Grumpier Old Men (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Grumpier%20Old%20Men%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1029|Jury Duty (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jury%20Duty%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1030|Beverly Hillbillies, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Beverly%20Hillbillies,%20The%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1031|Lassie (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lassie%20(1994)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1032|Little Big League (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Little%20Big%20League%20(1994)|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1033|Homeward Bound II: Lost in San Francisco (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Homeward%20Bound%20II:%20Lost%20in%20San%20Francisco%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1034|Quest, The (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Quest,%20The%20(1996/I)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1035|Cool Runnings (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cool%20Runnings%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1036|Drop Dead Fred (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Drop%20Dead%20Fred%20(1991)|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +1037|Grease 2 (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Grease%202%20(1982)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1038|Switchback (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Switchback+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1039|Hamlet (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?Hamlet%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1040|Two if by Sea (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Two%20if%20by%20Sea%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1041|Forget Paris (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Forget%20Paris%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1042|Just Cause (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Just%20Cause%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1043|Rent-a-Kid (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Rent-a-Kid%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1044|Paper, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Paper,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1045|Fearless (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fearless%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1046|Malice (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Malice%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1047|Multiplicity (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Multiplicity%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1048|She's the One (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?She's%20the%20One%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1049|House Arrest (1996)|02-Aug-1996||http://us.imdb.com/Title?House+Arrest+(1996/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1050|Ghost and Mrs. Muir, The (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Ghost%20and%20Mrs.%20Muir,%20The%20(1947)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1051|Associate, The (1996)|19-Oct-1996||http://us.imdb.com/M/title-exact?Associate,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1052|Dracula: Dead and Loving It (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dracula:%20Dead%20and%20Loving%20It%20(1995)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1053|Now and Then (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Now%20and%20Then%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1054|Mr. Wrong (1996)|16-Feb-1996||http://us.imdb.com/M/title-exact?Mr.%20Wrong%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1055|Simple Twist of Fate, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Simple%20Twist%20of%20Fate,%20A%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1056|Cronos (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Cronos%20(1992)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1057|Pallbearer, The (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Pallbearer,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1058|War, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?War,%20The%20(1994)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1059|Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Don't%20Be%20a%20Menace%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1060|Adventures of Pinocchio, The (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Adventures%20of%20Pinocchio,%20The%20(1996)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1061|Evening Star, The (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Evening%20Star,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1062|Four Days in September (1997)|23-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119815|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1063|Little Princess, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Little%20Princess,%20A%20(1995)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1064|Crossfire (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Crossfire%20(1947)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0 +1065|Koyaanisqatsi (1983)|01-Jan-1983||http://us.imdb.com/M/title-exact?Koyaanisqatsi%20(1983)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0 +1066|Balto (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Balto%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1067|Bottle Rocket (1996)|21-Feb-1996||http://us.imdb.com/M/title-exact?Bottle%20Rocket%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1068|Star Maker, The (Uomo delle stelle, L') (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Uomo%20delle%20stelle,%20L'%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1069|Amateur (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Amateur%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1070|Living in Oblivion (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Living%20in%20Oblivion%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1071|Party Girl (1995)|01-Jan-1995||http://us.imdb.com/Title?Party+Girl+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1072|Pyromaniac's Love Story, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pyromaniac's%20Love%20Story,%20A%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1073|Shallow Grave (1994)|01-Jan-1994||http://us.imdb.com/Title?Shallow+Grave+(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1074|Reality Bites (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Reality%20Bites%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1075|Man of No Importance, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Man%20of%20No%20Importance,%20A%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1076|Pagemaster, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pagemaster,%20The%20(1994)|0|1|1|1|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1077|Love and a .45 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Love%20and%20a%20.45%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1078|Oliver & Company (1988)|29-Mar-1988||http://us.imdb.com/M/title-exact?Oliver%20&%20Company%20(1988)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1079|Joe's Apartment (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Joe's%20Apartment%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +1080|Celestial Clockwork (1994)|12-Jul-1996||http://us.imdb.com/Title?Cort%E1zar+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1081|Curdled (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Curdled%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1082|Female Perversions (1996)|25-Apr-1997||http://us.imdb.com/M/title-exact?Female%20Perversions%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1083|Albino Alligator (1996)|17-Jan-1997||http://us.imdb.com/M/title-exact?Albino%20Alligator%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1084|Anne Frank Remembered (1995)|23-Feb-1996||http://us.imdb.com/M/title-exact?Anne%20Frank%20Remembered%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1085|Carried Away (1996)|29-Mar-1996||http://us.imdb.com/M/title-exact?Carried%20Away%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1086|It's My Party (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?It's%20My%20Party%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1087|Bloodsport 2 (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Bloodsport%202%20%281995%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1088|Double Team (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Double%20Team%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1089|Speed 2: Cruise Control (1997)|13-Jun-1997||http://us.imdb.com/M/title-exact?Speed%202%3A%20Cruise%20Control%20%281997%29|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +1090|Sliver (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Sliver%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1091|Pete's Dragon (1977)|01-Jan-1977||http://us.imdb.com/M/title-exact?Pete's%20Dragon%20(1977)|0|0|1|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +1092|Dear God (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Dear%20God%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1093|Live Nude Girls (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Live%20Nude%20Girls%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1094|Thin Line Between Love and Hate, A (1996)|03-Apr-1996||http://us.imdb.com/M/title-exact?Thin%20Line%20Between%20Love%20and%20Hate,%20A%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1095|High School High (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?High%20School%20High%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1096|Commandments (1997)|02-May-1997||http://us.imdb.com/Title?Commandments+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1097|Hate (Haine, La) (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Haine,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1098|Flirting With Disaster (1996)|22-Mar-1996||http://us.imdb.com/M/title-exact?Flirting%20With%20Disaster%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1099|Red Firecracker, Green Firecracker (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pao%20Da%20Shuang%20Deng%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1100|What Happened Was... (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?What%20Happened%20Was...%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1101|Six Degrees of Separation (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Six%20Degrees%20of%20Separation%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +1102|Two Much (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Two%20Much%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1103|Trust (1990)|01-Jan-1990||http://us.imdb.com/Title?Trust+(1990)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1104|C'est arrivé près de chez vous (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?C%27est%20arriv%E9%20pr%E8s%20de%20chez%20vous%20%281992%29|0|0|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1105|Firestorm (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120670|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1106|Newton Boys, The (1998)|14-Mar-1998||http://us.imdb.com/Title?Newton+Boys,+The+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1107|Beyond Rangoon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Beyond%20Rangoon%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1108|Feast of July (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Feast%20of%20July%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1109|Death and the Maiden (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Death%20and%20the%20Maiden%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1110|Tank Girl (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tank%20Girl%20(1995)|0|1|0|0|0|1|0|0|0|0|0|0|1|0|0|1|0|0|0 +1111|Double Happiness (1994)|01-Mar-1996||http://us.imdb.com/M/title-exact?Double%20Happiness%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1112|Cobb (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cobb%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1113|Mrs. Parker and the Vicious Circle (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mrs.%20Parker%20and%20the%20Vicious%20Circle%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1114|Faithful (1996)|03-Apr-1996||http://us.imdb.com/M/title-exact?Faithful%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1115|Twelfth Night (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Twelfth%20Night:%20Or%20What%20You%20Will%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1116|Mark of Zorro, The (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Mark%20of%20Zorro,%20The%20(1940)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1117|Surviving Picasso (1996)|20-Sep-1996||http://us.imdb.com/M/title-exact?Surviving%20Picasso%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1118|Up in Smoke (1978)|01-Jan-1978||http://us.imdb.com/M/title-exact?Up%20in%20Smoke%20(1978)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1119|Some Kind of Wonderful (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Some%20Kind%20of%20Wonderful%20(1987)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1120|I'm Not Rappaport (1996)|13-Nov-1996||http://us.imdb.com/M/title-exact?I'm%20Not%20Rappaport%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1121|Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)|05-Apr-1996||http://us.imdb.com/M/title-exact?Parapluies%20de%20Cherbourg,%20Les%20(1964)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1122|They Made Me a Criminal (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?They%20Made%20Me%20a%20Criminal%20(1939)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1123|Last Time I Saw Paris, The (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Last%20Time%20I%20Saw%20Paris,%20The%20(1954)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1124|Farewell to Arms, A (1932)|01-Jan-1932||http://us.imdb.com/M/title-exact?Farewell%20to%20Arms,%20A%20(1932)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1125|Innocents, The (1961)|01-Jan-1961||http://us.imdb.com/M/title-exact?Innocents,%20The%20(1961)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1126|Old Man and the Sea, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Old%20Man%20and%20the%20Sea,%20The%20(1958)|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1127|Truman Show, The (1998)|01-Jan-1998||http://us.imdb.com/Title?Truman+Show,+The+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1128|Heidi Fleiss: Hollywood Madam (1995) |09-Feb-1996||http://us.imdb.com/M/title-exact?Heidi%20Fleiss:%20Hollywood%20Madam%20(1995)%20(TV)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1129|Chungking Express (1994)|16-Feb-1996||http://us.imdb.com/M/title-exact?Chongqing%20Senlin%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0|0|0 +1130|Jupiter's Wife (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Jupiter's%20Wife%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1131|Safe (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Safe%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1132|Feeling Minnesota (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Feeling%20Minnesota%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1133|Escape to Witch Mountain (1975)|01-Jan-1975||http://us.imdb.com/M/title-exact?Escape%20to%20Witch%20Mountain%20(1975)|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1134|Get on the Bus (1996)|16-Oct-1996||http://us.imdb.com/M/title-exact?Get%20on%20the%20Bus%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1135|Doors, The (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Doors,%20The%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1136|Ghosts of Mississippi (1996)|20-Dec-1996||http://us.imdb.com/M/title-exact?Ghosts%20of%20Mississippi%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1137|Beautiful Thing (1996)|09-Oct-1996||http://us.imdb.com/M/title-exact?Beautiful%20Thing%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1138|Best Men (1997)|01-Sep-1997||http://us.imdb.com/M/title-exact/Independence%20(1997)|0|1|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1139|Hackers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hackers%20(1995)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1140|Road to Wellville, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Road%20to%20Wellville,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1141|War Room, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?War%20Room,%20The%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1142|When We Were Kings (1996)|14-Feb-1997||http://us.imdb.com/M/title-exact?When%20We%20Were%20Kings%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1143|Hard Eight (1996)|28-Feb-1997||http://us.imdb.com/Title?Hard+Eight+(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1144|Quiet Room, The (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Quiet%20Room%2C%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1145|Blue Chips (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blue%20Chips%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1146|Calendar Girl (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Calendar%20Girl%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1147|My Family (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?My%20Family%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1148|Tom & Viv (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tom%20&%20Viv%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1149|Walkabout (1971)|20-Dec-1971||http://us.imdb.com/M/title-exact?Walkabout%20(1971)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1150|Last Dance (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Last%20Dance%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1151|Original Gangstas (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Original%20Gangstas%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1152|In Love and War (1996)|24-Jan-1997||http://us.imdb.com/M/title-exact?In%20Love%20and%20War%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1153|Backbeat (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Backbeat%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1154|Alphaville (1965)|01-Jan-1965||http://us.imdb.com/M/title-exact?Alphaville%20(1965)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1155|Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)|28-Jun-1996||http://us.imdb.com/M/title-exact?Rendez-vous%20de%20Paris,%20Les%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1156|Cyclo (1995)|02-Aug-1996||http://us.imdb.com/M/title-exact?Cyclo%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1157|Relic, The (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Relic,%20The%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1158|Fille seule, La (A Single Girl) (1995)|30-Oct-1996||http://us.imdb.com/M/title-exact?Fille%20seule,%20La%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1159|Stalker (1979)|01-Jan-1979||http://us.imdb.com/M/title-exact?Stalker%20(1979)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0|0 +1160|Love! Valour! Compassion! (1997)|16-May-1997||http://us.imdb.com/Title?Love%21+Valour%21+Compassion%21+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1161|Palookaville (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Palookaville%20(1996)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1162|Phat Beach (1996)|02-Aug-1996||http://us.imdb.com/M/title-exact?Phat%20Beach%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1163|Portrait of a Lady, The (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?Portrait%20of%20a%20Lady%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1164|Zeus and Roxanne (1997)|10-Jan-1997||http://us.imdb.com/M/title-exact?Zeus%20and%20Roxanne%20(1997)|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1165|Big Bully (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Big%20Bully%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1166|Love & Human Remains (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Love%20&%20Human%20Remains%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1167|Sum of Us, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sum%20of%20Us,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1168|Little Buddha (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Little%20Buddha%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1169|Fresh (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Fresh%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1170|Spanking the Monkey (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Spanking%20the%20Monkey%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1171|Wild Reeds (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Roseaux%20sauvages%2C%20Les%20%281994%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1172|Women, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Women,%20The%20(1939)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1173|Bliss (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Bliss%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1174|Caught (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Caught%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1175|Hugo Pool (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Hugo+Pool+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1176|Welcome To Sarajevo (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Welcome+To+Sarajevo+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1177|Dunston Checks In (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Dunston%20Checks%20In%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1178|Major Payne (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Major%20Payne%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1179|Man of the House (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Man%20of%20the%20House%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1180|I Love Trouble (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I%20Love%20Trouble%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1181|Low Down Dirty Shame, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Low%20Down%20Dirty%20Shame,%20A%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1182|Cops and Robbersons (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cops%20and%20Robbersons%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1183|Cowboy Way, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Cowboy%20Way,%20The%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1184|Endless Summer 2, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Endless%20Summer%202,%20The%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1185|In the Army Now (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?In%20the%20Army%20Now%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0 +1186|Inkwell, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Inkwell,%20The%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1187|Switchblade Sisters (1975)|17-May-1975||http://us.imdb.com/M/title-exact?Switchblade%20Sisters%20(1975)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1188|Young Guns II (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Young%20Guns%20II%20(1990)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1 +1189|Prefontaine (1997)|24-Jan-1997||http://us.imdb.com/M/title-exact?Prefontaine%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1190|That Old Feeling (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?That%20Old%20Feeling%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1191|Letter From Death Row, A (1998)|01-Feb-1998||http://us.imdb.com/M/title-exact?Letter+From+Death+Row%2C+A+(1998)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1192|Boys of St. Vincent, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Boys%20of%20St.%20Vincent,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1193|Before the Rain (Pred dozhdot) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Pred%20dozhdot%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1194|Once Were Warriors (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Once%20Were%20Warriors%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1195|Strawberry and Chocolate (Fresa y chocolate) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fresa%20y%20chocolate%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1196|Savage Nights (Nuits fauves, Les) (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Nuits%20fauves,%20Les%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1197|Family Thing, A (1996)|23-Mar-1996||http://us.imdb.com/M/title-exact?Family%20Thing,%20A%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1198|Purple Noon (1960)|28-Jun-1960||http://us.imdb.com/M/title-exact?Plein%20soleil%20(1960)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1199|Cemetery Man (Dellamorte Dellamore) (1994)|12-Apr-1996||http://us.imdb.com/M/title-exact?Dellamorte%20Dellamore%20(1994)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1200|Kim (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Kim%20(1950)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1201|Marlene Dietrich: Shadow and Light (1996) |02-Apr-1996||http://us.imdb.com/M/title-exact?Marlene%20Dietrich:%20Shadow%20and%20Light%20(1996)%20(TV)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1202|Maybe, Maybe Not (Bewegte Mann, Der) (1994)|19-Jul-1996||http://us.imdb.com/M/title-exact?Bewegte%20Mann,%20Der%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1203|Top Hat (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Top%20Hat%20(1935)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1204|To Be or Not to Be (1942)|01-Jan-1942||http://us.imdb.com/M/title-exact?To%20Be%20or%20Not%20to%20Be%20(1942)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|1|0 +1205|Secret Agent, The (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Secret%20Agent,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1206|Amos & Andrew (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Amos%20&%20Andrew%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1207|Jade (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jade%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1208|Kiss of Death (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Kiss%20of%20Death%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1209|Mixed Nuts (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mixed%20Nuts%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1210|Virtuosity (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Virtuosity%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1211|Blue Sky (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blue%20Sky%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1212|Flesh and Bone (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Flesh%20and%20Bone%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|1|0|0|0|0 +1213|Guilty as Sin (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Guilty%20as%20Sin%20(1993)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0 +1214|In the Realm of the Senses (Ai no corrida) (1976)|08-Mar-1976||http://us.imdb.com/M/title-exact?Ai%20no%20Corrida%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1215|Barb Wire (1996)|03-May-1996||http://us.imdb.com/M/title-exact?Barb%20Wire%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1216|Kissed (1996)|18-Apr-1997||http://us.imdb.com/M/title-exact?Kissed%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1217|Assassins (1995)|01-Jan-1995||http://us.imdb.com/Title?Assassins+(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1218|Friday (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Friday%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1219|Goofy Movie, A (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Goofy%20Movie,%20A%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1220|Higher Learning (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Higher%20Learning%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1221|When a Man Loves a Woman (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?When%20a%20Man%20Loves%20a%20Woman%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1222|Judgment Night (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Judgment%20Night%20(1993)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1223|King of the Hill (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?King%20of%20the%20Hill%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1224|Scout, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Scout,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1225|Angus (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Angus%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1226|Night Falls on Manhattan (1997)|16-May-1997||http://us.imdb.com/M/title-exact?Night%20Falls%20on%20Manhattan%20(1997)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1227|Awfully Big Adventure, An (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Awfully%20Big%20Adventure,%20An%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1228|Under Siege 2: Dark Territory (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Under%20Siege%202:%20Dark%20Territory%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1229|Poison Ivy II (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Poison%20Ivy%20II%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1230|Ready to Wear (Pret-A-Porter) (1994)|01-Jan-1994||http://us.imdb.com/Title?Pr%EAt-%E0-Porter+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1231|Marked for Death (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Marked%20for%20Death%20(1990)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1232|Madonna: Truth or Dare (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Madonna:%20Truth%20or%20Dare%20(1991)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1233|Nénette et Boni (1996)|01-Jan-1996||http://us.imdb.com/Title?N%E9nette+et+Boni+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1234|Chairman of the Board (1998)|01-Jan-1998||http://us.imdb.com/Title?Chairman+of+the+Board+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1235|Big Bang Theory, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?imdb-title-109266|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1236|Other Voices, Other Rooms (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119845|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1237|Twisted (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?imdb-title-117994|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1238|Full Speed (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?imdb-title-118230|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1239|Cutthroat Island (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cutthroat%20Island%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1240|Ghost in the Shell (Kokaku kidotai) (1995)|12-Apr-1996||http://us.imdb.com/M/title-exact?Kokaku%20Kidotai%20(1995)|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1241|Van, The (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Van%2C%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1242|Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?Vieille%20qui%20marchait%20dans%20la%20mer,%20La%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1243|Night Flier (1997)|06-Feb-1998||http://us.imdb.com/M/title-exact?Night+Flier+(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1244|Metro (1997)|17-Jan-1997||http://us.imdb.com/M/title-exact?Metro%20(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1245|Gridlock'd (1997)|29-Jan-1997||http://us.imdb.com/M/title-exact?Gridlock'd%20(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1246|Bushwhacked (1995)|01-Jan-1995||http://us.imdb.com/Title?Bushwhacked+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1247|Bad Girls (1994)|01-Jan-1994||http://us.imdb.com/Title?Bad+Girls+(1994/I)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1248|Blink (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Blink%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1249|For Love or Money (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?For%20Love%20or%20Money%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1250|Best of the Best 3: No Turning Back (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Best%20of%20the%20Best%203:%20No%20Turning%20Back%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1251|A Chef in Love (1996)|25-Apr-1997||http://us.imdb.com/M/title-exact?Mille%20et%20une%20recettes%20du%20cuisinier%20amoureux%2C%20Les%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1252|Contempt (Mépris, Le) (1963)|27-Jun-1997||http://us.imdb.com/M/title-exact?M%E9pris%2C+Le+(1963)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1253|Tie That Binds, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tie%20That%20Binds,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1254|Gone Fishin' (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Gone%20Fishin'%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1255|Broken English (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Broken%20English%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1256|Designated Mourner, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Designated%20Mourner%2C%20The%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1257|Designated Mourner, The (1997)|23-May-1997||http://us.imdb.com/M/title-exact?Designated%20Mourner%2C%20The%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1258|Trial and Error (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Trial%20and%20Error%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1259|Pie in the Sky (1995)|09-Feb-1996||http://us.imdb.com/M/title-exact?Pie%20in%20the%20Sky%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1260|Total Eclipse (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Total%20Eclipse%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1261|Run of the Country, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Run%20of%20the%20Country,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1262|Walking and Talking (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Walking%20and%20Talking%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1263|Foxfire (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Foxfire%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1264|Nothing to Lose (1994)|16-Aug-1996||http://us.imdb.com/M/title-exact?Nothing%20to%20Lose%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1265|Star Maps (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Star+Maps+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1266|Bread and Chocolate (Pane e cioccolata) (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Pane%20e%20Cioccolata%20(1973)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1267|Clockers (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Clockers%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1268|Bitter Moon (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lunes%20de%20fiel%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1269|Love in the Afternoon (1957)|01-Jan-1957||http://us.imdb.com/M/title-exact?Love%20in%20the%20Afternoon%20(1957)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1270|Life with Mikey (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Life%20with%20Mikey%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1271|North (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?North%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1272|Talking About Sex (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Talking%20About%20Sex%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1273|Color of Night (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Color%20of%20Night%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1274|Robocop 3 (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Robocop%203%20(1993)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1275|Killer (Bulletproof Heart) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Killer%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1276|Sunset Park (1996)|26-Apr-1996||http://us.imdb.com/M/title-exact?Sunset%20Park%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1277|Set It Off (1996)|25-Sep-1996||http://us.imdb.com/M/title-exact?Set%20It%20Off%20(1996)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1278|Selena (1997)|21-Mar-1997||http://us.imdb.com/M/title-exact?Selena%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0 +1279|Wild America (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Wild+America+(1997)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1280|Gang Related (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Gang+Related+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1281|Manny & Lo (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Manny%20&%20Lo%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1282|Grass Harp, The (1995)|11-Oct-1996||http://us.imdb.com/M/title-exact?Grass%20Harp,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1283|Out to Sea (1997)|04-Jul-1997||http://us.imdb.com/M/title-exact?Out+to+Sea+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1284|Before and After (1996)|23-Feb-1996||http://us.imdb.com/M/title-exact?Before%20and%20After%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0 +1285|Princess Caraboo (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Princess%20Caraboo%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1286|Shall We Dance? (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Shall%20We%20Dance?%20(1937)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1287|Ed (1996)|08-Mar-1996||http://us.imdb.com/M/title-exact?Ed%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1288|Denise Calls Up (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Denise%20Calls%20Up%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1289|Jack and Sarah (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?Jack%20and%20Sarah%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1290|Country Life (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Country%20Life%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1291|Celtic Pride (1996)|19-Apr-1996||http://us.imdb.com/M/title-exact?Celtic%20Pride%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1292|Simple Wish, A (1997)|11-Jul-1997||http://us.imdb.com/M/title-exact?Simple+Wish%2C+A+(1997)|0|0|0|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1293|Star Kid (1997)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120478|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0|1|0|0|0 +1294|Ayn Rand: A Sense of Life (1997)|13-Feb-1998||http://us.imdb.com/Title?Ayn+Rand%3A+A+Sense+of+Life+(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1295|Kicked in the Head (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Kicked+in+the+Head+(1997)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1296|Indian Summer (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Indian+Summer+(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1297|Love Affair (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Love%20Affair%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1298|Band Wagon, The (1953)|01-Jan-1953||http://us.imdb.com/M/title-exact?Band%20Wagon,%20The%20(1953)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0 +1299|Penny Serenade (1941)|01-Jan-1941||http://us.imdb.com/M/title-exact?Penny%20Serenade%20(1941)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1300|'Til There Was You (1997)|30-May-1997||http://us.imdb.com/Title?%27Til+There+Was+You+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1301|Stripes (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Stripes+(1981)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1302|Late Bloomers (1996)|06-Jun-1997||http://us.imdb.com/M/title-exact?Late%20Bloomers%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1303|Getaway, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Getaway,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1304|New York Cop (1996)|01-Jan-1996||http://us.imdb.com/Title?New+York+Cop+(1996)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1305|National Lampoon's Senior Trip (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?National%20Lampoon's%20Senior%20Trip%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1306|Delta of Venus (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Delta%20of%20Venus%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1307|Carmen Miranda: Bananas Is My Business (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Carmen%20Miranda:%20Bananas%20Is%20My%20Business%20(1994)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1308|Babyfever (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Babyfever%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1309|Very Natural Thing, A (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Very%20Natural%20Thing,%20A%20(1974)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1310|Walk in the Sun, A (1945)|01-Jan-1945||http://us.imdb.com/M/title-exact?Walk%20in%20the%20Sun,%20A%20(1945)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1311|Waiting to Exhale (1995)|15-Jan-1996||http://us.imdb.com/M/title-exact?Waiting%20to%20Exhale%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1312|Pompatus of Love, The (1996)|26-Jul-1996||http://us.imdb.com/M/title-exact?Pompatus%20of%20Love,%20The%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1313|Palmetto (1998)|20-Feb-1998||http://us.imdb.com/M/title-exact?Palmetto+(1998)|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0|1|0|0 +1314|Surviving the Game (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Surviving%20the%20Game%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1315|Inventing the Abbotts (1997)|04-Apr-1997||http://us.imdb.com/M/title-exact?Inventing%20the%20Abbotts%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1316|Horse Whisperer, The (1998)|25-Dec-1997||http://us.imdb.com/M/title-exact?imdb-title-119314|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1317|Journey of August King, The (1995)|22-Mar-1996||http://us.imdb.com/M/title-exact?Journey%20of%20August%20King,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1318|Catwalk (1995)|07-Jun-1996||http://us.imdb.com/Title?Catwalk+(1995/I)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1319|Neon Bible, The (1995)|01-Mar-1996||http://us.imdb.com/M/title-exact?Neon%20Bible,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1320|Homage (1995)|03-May-1996||http://us.imdb.com/M/title-exact?Homage%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1321|Open Season (1996)|10-May-1996||http://us.imdb.com/Title?Open+Season+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1322|Metisse (Café au Lait) (1993)|01-Jan-1993||http://us.imdb.com/Title?M%E9tisse+(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1323|Wooden Man's Bride, The (Wu Kui) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wu%20Kui%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1324|Loaded (1994)|12-Apr-1996||http://us.imdb.com/M/title-exact?Loaded%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1325|August (1996)|12-Apr-1996||http://us.imdb.com/M/title-exact?August%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1326|Boys (1996)|10-May-1996||http://us.imdb.com/M/title-exact?Boys%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1327|Captives (1994)|16-Sep-1994||http://us.imdb.com/Title?Captives+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1328|Of Love and Shadows (1994)|10-May-1996||http://us.imdb.com/M/title-exact?Of%20Love%20and%20Shadows%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1329|Low Life, The (1994)|10-May-1996||http://us.imdb.com/Title?Low+Life,+The+(1994/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1330|An Unforgettable Summer (1994)|01-Jan-1994||http://us.imdb.com/Title?Un+%E9t%E9+inoubliable+(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1331|Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Last%20Klezmer%3A%20Leopold%20Kozlowski%2C%20His%20Life%20and%20Music%2C%20The%20%281995%29|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1332|My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?En%20compagnie%20d'Antonin%20Artaud%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1333|Midnight Dancers (Sibak) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Sibak%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1334|Somebody to Love (1994)|14-Jun-1996||http://us.imdb.com/Title?Somebody+to+Love+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1335|American Buffalo (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?American%20Buffalo%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1336|Kazaam (1996)|17-Jul-1996||http://us.imdb.com/M/title-exact?Kazaam%20(1996)|0|0|0|0|1|1|0|0|0|1|0|0|0|0|0|0|0|0|0 +1337|Larger Than Life (1996)|01-Nov-1996||http://us.imdb.com/M/title-exact?Larger%20Than%20Life%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1338|Two Deaths (1995)|09-Aug-1996||http://us.imdb.com/Title?Two+Deaths+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1339|Stefano Quantestorie (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Stefano%20Quantestorie%20%281993%29|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1340|Crude Oasis, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Crude%20Oasis,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1341|Hedd Wyn (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Hedd%20Wyn%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1342|Convent, The (Convento, O) (1995)|14-Jun-1996||http://us.imdb.com/M/title-exact?Convento,%20O%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1343|Lotto Land (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Lotto%20Land%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1344|Story of Xinghua, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Story%20of%20Xinghua,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1345|Day the Sun Turned Cold, The (Tianguo niezi) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tianguo%20Niezi%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1346|Dingo (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Dingo%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1347|Ballad of Narayama, The (Narayama Bushiko) (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Narayama%20Bushiko%20%281958%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1348|Every Other Weekend (1990)|01-Jan-1990||http://us.imdb.com/Title?Un+week-end+sur+deux+(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1349|Mille bolle blu (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mille%20bolle%20blu%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1350|Crows and Sparrows (1949)|01-Jan-1949||http://us.imdb.com/Title?Wuya+yu+maque+(1949)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1351|Lover's Knot (1996)|12-Jul-1996||http://us.imdb.com/M/title-exact?Lover's%20Knot%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1352|Shadow of Angels (Schatten der Engel) (1976)|01-Jan-1976||http://us.imdb.com/M/title-exact?Schatten%20der%20Engel%20(1976)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1353|1-900 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?06%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1354|Venice/Venice (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Venice/Venice%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1355|Infinity (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Infinity%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1356|Ed's Next Move (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Ed%27s%20Next%20Move%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1357|For the Moment (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?For%20the%20Moment%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0 +1358|The Deadly Cure (1996)|16-Sep-1996|||0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1359|Boys in Venice (1996)|24-Sep-1996|||0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1360|Sexual Life of the Belgians, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Vie%20sexuelle%20des%20Belges,%20La%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1361|Search for One-eye Jimmy, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Search%20for%20One-eye%20Jimmy,%20The%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1362|American Strays (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?American%20Strays%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1363|Leopard Son, The (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Leopard%20Son,%20The%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1364|Bird of Prey (1996)|04-Oct-1996||http://us.imdb.com/M/title-exact?Bird%20of%20Prey%20(1996)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1365|Johnny 100 Pesos (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Johnny%20100%20Pesos%20(1993)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1366|JLG/JLG - autoportrait de décembre (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?JLG/JLG%20-%20autoportrait%20de%20d%E9cembre%20%281994%29|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +1367|Faust (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Faust%20%281994%29|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1368|Mina Tannenbaum (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Mina%20Tannenbaum%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1369|Forbidden Christ, The (Cristo proibito, Il) (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Cristo%20proibito%2C%20Il%20%281950%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1370|I Can't Sleep (J'ai pas sommeil) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?J'ai%20pas%20sommeil%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1371|Machine, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Machine,%20La%20(1994)|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0|0|0 +1372|Stranger, The (1994)|01-Jan-1994||http://us.imdb.com/Title?Stranger,+The+(1994/II)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1373|Good Morning (1971)|4-Feb-1971||http://us.imdb.com/M/title-exact?Good%20Morning%20(1971)|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1374|Falling in Love Again (1980)|01-Jan-1980||http://us.imdb.com/M/title-exact?Falling%20in%20Love%20Again%20(1980)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1375|Cement Garden, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Cement%20Garden,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1376|Meet Wally Sparks (1997)|31-Jan-1997||http://us.imdb.com/M/title-exact?Meet%20Wally%20Sparks%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1377|Hotel de Love (1996)|07-Feb-1997||http://us.imdb.com/M/title-exact?Hotel%20de%20Love%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1378|Rhyme & Reason (1997)|05-Mar-1997||http://us.imdb.com/M/title-exact?Rhyme%20%26%20Reason%20(1997)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1379|Love and Other Catastrophes (1996)|28-Mar-1997||http://us.imdb.com/M/title-exact?Love%20and%20Other%20Catastrophes%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1380|Hollow Reed (1996)|02-May-1997||http://us.imdb.com/Title?Hollow+Reed+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1381|Losing Chase (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Losing%20Chase%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1382|Bonheur, Le (1965)|16-May-1997||http://us.imdb.com/M/title-exact?Bonheur%2C%20Le%20%281965%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1383|Second Jungle Book: Mowgli & Baloo, The (1997)|16-May-1997||http://us.imdb.com/M/title-exact?Second%20Jungle%20Book%3A%20Mowgli%20%26%20Baloo%2C%20The%20%281997%29|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1384|Squeeze (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Squeeze%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1385|Roseanna's Grave (For Roseanna) (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Roseanna%27s+Grave+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1386|Tetsuo II: Body Hammer (1992)|20-Jun-1997||http://us.imdb.com/M/title-exact?Tetsuo+II%3A+Body+Hammer+(1992)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1387|Fall (1997)|27-Jun-1997||http://us.imdb.com/M/title-exact?Fall+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1388|Gabbeh (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Gabbeh+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1389|Mondo (1996)|27-Jun-1997||http://us.imdb.com/M/title-exact?Mondo+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1390|Innocent Sleep, The (1995)|27-Jun-1997||http://us.imdb.com/M/title-exact?Innocent+Sleep%2C+The+(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1391|For Ever Mozart (1996)|04-Jul-1997||http://us.imdb.com/M/title-exact?For+Ever+Mozart+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1392|Locusts, The (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Locusts%2C+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1393|Stag (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Stag+(1997)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1394|Swept from the Sea (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Swept+from+the+Sea+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1395|Hurricane Streets (1998)|01-Jan-1998||http://us.imdb.com/Title?Hurricane+Streets+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1396|Stonewall (1995)|26-Jul-1996||http://us.imdb.com/M/title-exact?Stonewall%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1397|Of Human Bondage (1934)|01-Jan-1934||http://us.imdb.com/M/title-exact?Of%20Human%20Bondage%20(1934)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1398|Anna (1996)|13-Nov-1996||http://us.imdb.com/M/title-exact?Anna%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1399|Stranger in the House (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-120222|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1400|Picture Bride (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Picture%20Bride%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1401|M. Butterfly (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?M.%20Butterfly%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1402|Ciao, Professore! (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Io%20speriamo%20che%20me%20la%20cavo%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1403|Caro Diario (Dear Diary) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Caro%20diario%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1404|Withnail and I (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Withnail%20and%20I%20(1987)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1405|Boy's Life 2 (1997)|07-Mar-1997||http://us.imdb.com/M/title-exact?Boy%27s%20Life%202%20(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1406|When Night Is Falling (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?When%20Night%20is%20Falling%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1407|Specialist, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Specialist,%20The%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1408|Gordy (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gordy%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1409|Swan Princess, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Swan%20Princess,%20The%20(1994)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1410|Harlem (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Harlem%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1411|Barbarella (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Barbarella%20(1968)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1412|Land Before Time III: The Time of the Great Giving (1995) (V)|01-Jan-1995||http://us.imdb.com/M/title-exact?Land%20Before%20Time%20III%3A%20The%20Time%20of%20the%20Great%20Giving%20%281995%29%20%28V%29|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1413|Street Fighter (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Street%20Fighter%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1414|Coldblooded (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Coldblooded%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1415|Next Karate Kid, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Next%20Karate%20Kid,%20The%20(1994)|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1416|No Escape (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?No%20Escape%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1417|Turning, The (1992)|02-May-1997||http://us.imdb.com/M/title-exact?Turning%2C%20The%20%281992%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1418|Joy Luck Club, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Joy+Luck+Club%2C+The+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1419|Highlander III: The Sorcerer (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Highlander%20III:%20The%20Sorcerer%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0 +1420|Gilligan's Island: The Movie (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119195|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1421|My Crazy Life (Mi vida loca) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mi%20vida%20loca%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1422|Suture (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Suture%20(1993)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0 +1423|Walking Dead, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Walking%20Dead,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1424|I Like It Like That (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I%20Like%20It%20Like%20That%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|1|0|0|0|0 +1425|I'll Do Anything (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?I'll%20Do%20Anything%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1426|Grace of My Heart (1996)|13-Sep-1996||http://us.imdb.com/M/title-exact?Grace%20of%20My%20Heart%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1427|Drunks (1995)|01-Nov-1996||http://us.imdb.com/M/title-exact?Drunks%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1428|SubUrbia (1997)|07-Feb-1997||http://us.imdb.com/M/title-exact?SubUrbia%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1429|Sliding Doors (1998)|01-Jan-1998||http://us.imdb.com/Title?Sliding+Doors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1430|Ill Gotten Gains (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119352|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1431|Legal Deceit (1997)|01-Jan-1997||http://us.imdb.com/Title?Legal+Deceit+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1432|Mighty, The (1998)|09-Oct-1998||http://us.imdb.com/Title?Mighty,+The+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1433|Men of Means (1998)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119655|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1434|Shooting Fish (1997)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120122|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1435|Steal Big, Steal Little (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Steal%20Big,%20Steal%20Little%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1436|Mr. Jones (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mr.%20Jones%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1437|House Party 3 (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?House%20Party%203%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1438|Panther (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Panther%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1439|Jason's Lyric (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jason's%20Lyric%20(1994)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1440|Above the Rim (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Above%20the%20Rim%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1441|Moonlight and Valentino (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Moonlight%20and%20Valentino%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1442|Scarlet Letter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1443|8 Seconds (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?8%20Seconds%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1444|That Darn Cat! (1965)|01-Jan-1965||http://us.imdb.com/Title?That+Darn+Cat%21+(1965)|0|0|0|0|1|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1445|Ladybird Ladybird (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Ladybird%20Ladybird%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1446|Bye Bye, Love (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Bye%20Bye,%20Love%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1447|Century (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Century%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1448|My Favorite Season (1993)|19-Apr-1996||http://us.imdb.com/Title?Ma+saison+pr%E9f%E9r%E9e+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1449|Pather Panchali (1955)|22-Mar-1996||http://us.imdb.com/M/title-exact?Pather%20Panchali%20(1955)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1450|Golden Earrings (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Golden%20Earrings%20%281947%29|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1451|Foreign Correspondent (1940)|01-Jan-1940||http://us.imdb.com/M/title-exact?Foreign%20Correspondent%20(1940)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1452|Lady of Burlesque (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?Lady%20of%20Burlesque%20(1943)|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0|0 +1453|Angel on My Shoulder (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Angel%20on%20My%20Shoulder%20(1946)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1454|Angel and the Badman (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?Angel%20and%20the%20Badman%20(1947)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1455|Outlaw, The (1943)|01-Jan-1943||http://us.imdb.com/M/title-exact?Outlaw,%20The%20(1943)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1456|Beat the Devil (1954)|01-Jan-1954||http://us.imdb.com/M/title-exact?Beat%20the%20Devil%20(1954)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1457|Love Is All There Is (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Love%20Is%20All%20There%20Is%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1458|Damsel in Distress, A (1937)|01-Jan-1937||http://us.imdb.com/M/title-exact?Damsel%20in%20Distress,%20A%20(1937)|0|0|0|0|0|1|0|0|0|0|0|0|1|0|1|0|0|0|0 +1459|Madame Butterfly (1995)|20-Sep-1996||http://us.imdb.com/M/title-exact?Madame%20Butterfly%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0 +1460|Sleepover (1995)|25-Oct-1996||http://us.imdb.com/M/title-exact?Sleepover%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1461|Here Comes Cookie (1935)|01-Jan-1935||http://us.imdb.com/M/title-exact?Here%20Comes%20Cookie%20(1935)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1462|Thieves (Voleurs, Les) (1996)|25-Dec-1996||http://us.imdb.com/M/title-exact?Voleurs,%20Les%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|1|0|0|0|0 +1463|Boys, Les (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-118764|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1464|Stars Fell on Henrietta, The (1995)|01-Jan-1995||http://us.imdb.com/Title?Stars+Fell+on+Henrietta,+The+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1465|Last Summer in the Hamptons (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Last%20Summer%20in%20the%20Hamptons%20(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1466|Margaret's Museum (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Margaret's%20Museum%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1467|Saint of Fort Washington, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Saint%20of%20Fort%20Washington,%20The%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1468|Cure, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Cure,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1469|Tom and Huck (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tom%20and%20Huck%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1470|Gumby: The Movie (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gumby:%20The%20Movie%20(1995)|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1471|Hideaway (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hideaway%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1472|Visitors, The (Visiteurs, Les) (1993)|19-Jul-1996||http://us.imdb.com/M/title-exact?Visiteurs,%20Les%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0|0 +1473|Little Princess, The (1939)|01-Jan-1939||http://us.imdb.com/M/title-exact?Little%20Princess,%20The%20(1939)|0|0|0|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1474|Nina Takes a Lover (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Nina%20Takes%20a%20Lover%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1475|Bhaji on the Beach (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Bhaji%20on%20the%20Beach%20(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1476|Raw Deal (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?Raw%20Deal%20(1948)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +1477|Nightwatch (1997)|22-Apr-1997||http://us.imdb.com/M/title-exact?Nightwatch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +1478|Dead Presidents (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dead%20Presidents%20(1995)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1479|Reckless (1995)|01-Jan-1995||http://us.imdb.com/Title?Reckless+(1995/I)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1480|Herbie Rides Again (1974)|01-Jan-1974||http://us.imdb.com/M/title-exact?Herbie%20Rides%20Again%20(1974)|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1481|S.F.W. (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?S.F.W.%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1482|Gate of Heavenly Peace, The (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Gate%20of%20Heavenly%20Peace,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1483|Man in the Iron Mask, The (1998)|17-Mar-1998||http://us.imdb.com/Title?Man+in+the+Iron+Mask,+The+(1998/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1484|Jerky Boys, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Jerky%20Boys,%20The%20(1994)|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1485|Colonel Chabert, Le (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Colonel%20Chabert,%20Le%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|1|0 +1486|Girl in the Cadillac (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Girl%20in%20the%20Cadillac%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1487|Even Cowgirls Get the Blues (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Even%20Cowgirls%20Get%20the%20Blues%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1488|Germinal (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Germinal%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1489|Chasers (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Chasers%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1490|Fausto (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Fausto%20%281993%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1491|Tough and Deadly (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Tough%20and%20Deadly%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1492|Window to Paris (1994)|01-Jan-1994||http://us.imdb.com/Title?Okno+v+Parizh+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1493|Modern Affair, A (1995)|06-Sep-1996||http://us.imdb.com/M/title-exact?Modern%20Affair,%20A%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1494|Mostro, Il (1994)|19-Apr-1996||http://us.imdb.com/M/title-exact?Mostro,%20Il%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1495|Flirt (1995)|07-Aug-1996||http://us.imdb.com/Title?Flirt+(1995/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1496|Carpool (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Carpool%20(1996)|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +1497|Line King: Al Hirschfeld, The (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Line%20King,%20The%20(1996)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1498|Farmer & Chase (1995)|10-Jan-1997||http://us.imdb.com/M/title-exact?Farmer%20&%20Chase%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1499|Grosse Fatigue (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Grosse%20fatigue%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1500|Santa with Muscles (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Santa%20with%20Muscles%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1501|Prisoner of the Mountains (Kavkazsky Plennik) (1996)|31-Jan-1997||http://us.imdb.com/M/title-exact?Kavkazsky%20Plennik%20(1996)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1502|Naked in New York (1994)|01-Jan-1994||http://us.imdb.com/Title?Naked+in+New+York+(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1503|Gold Diggers: The Secret of Bear Mountain (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Gold%20Diggers:%20The%20Secret%20of%20Bear%20Mountain%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1504|Bewegte Mann, Der (1994)|12-Jul-1996||http://us.imdb.com/M/title-exact?Bewegte%20Mann%2C%20Der%20%281994%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1505|Killer: A Journal of Murder (1995)|06-Sep-1996||http://us.imdb.com/M/title-exact?Killer:%20A%20Journal%20of%20Murder%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1506|Nelly & Monsieur Arnaud (1995)|12-Apr-1996||http://us.imdb.com/M/title-exact?Nelly%20%26%20Monsieur%20Arnaud%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1507|Three Lives and Only One Death (1996)|11-Oct-1996||http://us.imdb.com/M/title-exact?Trois%20vies%20et%20une%20seule%20mort%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1508|Babysitter, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Babysitter,%20The%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1509|Getting Even with Dad (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Getting%20Even%20with%20Dad%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1510|Mad Dog Time (1996)|08-Nov-1996||http://us.imdb.com/M/title-exact?Mad%20Dog%20Time%20(1996)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1511|Children of the Revolution (1996)|01-May-1997||http://us.imdb.com/M/title-exact?Children%20of%20the%20Revolution%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1512|World of Apu, The (Apur Sansar) (1959)|05-Apr-1996||http://us.imdb.com/M/title-exact?Apur%20Sansar%20(1959)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1513|Sprung (1997)|14-May-1997||http://us.imdb.com/M/title-exact?Sprung%20%281997%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1514|Dream With the Fishes (1997)|20-Jun-1997||http://us.imdb.com/M/title-exact?Dream+With+the+Fishes+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1515|Wings of Courage (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Wings%20of%20Courage%20(1995)|0|0|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1516|Wedding Gift, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Wedding%20Gift,%20The%20(1994)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1517|Race the Sun (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?Race%20the%20Sun%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1518|Losing Isaiah (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Losing%20Isaiah%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1519|New Jersey Drive (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?New%20Jersey%20Drive%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1520|Fear, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Fear,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1521|Mr. Wonderful (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Mr.%20Wonderful%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1522|Trial by Jury (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Trial%20by%20Jury%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1523|Good Man in Africa, A (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Good%20Man%20in%20Africa,%20A%20(1994)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1524|Kaspar Hauser (1993)|07-Jun-1996||http://us.imdb.com/Title?Kaspar+Hauser+(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1525|Object of My Affection, The (1998)|20-Mar-1998||http://us.imdb.com/Title?Object+of+My+Affection,+The+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1526|Witness (1985)|01-Jan-1985||http://us.imdb.com/M/title-exact?Witness+(1985)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|1|0|0 +1527|Senseless (1998)|09-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-120820|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1528|Nowhere (1997)|09-May-1997||http://us.imdb.com/M/title-exact?Nowhere%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1529|Underground (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Underground%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1530|Jefferson in Paris (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Jefferson%20in%20Paris%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1531|Far From Home: The Adventures of Yellow Dog (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Far%20From%20Home:%20The%20Adventures%20of%20Yellow%20Dog%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1532|Foreign Student (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Foreign%20Student%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1533|I Don't Want to Talk About It (De eso no se habla) (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?De%20Eso%20No%20Se%20Habla%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1534|Twin Town (1997)|30-May-1997||http://us.imdb.com/M/title-exact?Twin%20Town%20%281997%29|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0 +1535|Enfer, L' (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Enfer,%20L'%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1536|Aiqing wansui (1994)|22-Jul-1996||http://us.imdb.com/M/title-exact?Aiqing%20Wansui%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1537|Cosi (1996)|11-Apr-1997||http://us.imdb.com/M/title-exact?Cosi%20(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1538|All Over Me (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?All%20Over%20Me%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1539|Being Human (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Being%20Human%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1540|Amazing Panda Adventure, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Amazing%20Panda%20Adventure,%20The%20(1995)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1541|Beans of Egypt, Maine, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Beans%20of%20Egypt,%20Maine,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1542|Scarlet Letter, The (1926)|01-Jan-1926||http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1926)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1543|Johns (1996)|18-Oct-1996||http://us.imdb.com/M/title-exact?Johns%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1544|It Takes Two (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?It%20Takes%20Two%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1545|Frankie Starlight (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Frankie%20Starlight%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1546|Shadows (Cienie) (1988)|01-Jan-1988||http://us.imdb.com/M/title-exact?Cienie%20(1988)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1547|Show, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Show,%20The%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1548|The Courtyard (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Courtyard,%20The%20(1995)%20(TV)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1549|Dream Man (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dream%20Man%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1550|Destiny Turns on the Radio (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Destiny%20Turns%20on%20the%20Radio%20(1995)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1551|Glass Shield, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Glass%20Shield,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1552|Hunted, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Hunted,%20The%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1553|Underneath, The (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Underneath,%20The%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|1|0|0 +1554|Safe Passage (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Safe%20Passage%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1555|Secret Adventures of Tom Thumb, The (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Secret%20Adventures%20of%20Tom%20Thumb,%20The%20(1993)|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0 +1556|Condition Red (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Condition%20Red%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1557|Yankee Zulu (1994)|16-Feb-1996||http://us.imdb.com/M/title-exact?Yankee%20Zulu%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1558|Aparajito (1956)|29-Mar-1996||http://us.imdb.com/M/title-exact?Aparajito%20(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1559|Hostile Intentions (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Hostile%20Intentions%20(1994)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1560|Clean Slate (Coup de Torchon) (1981)|01-Jan-1981||http://us.imdb.com/M/title-exact?Coup%20de%20torchon%20(1981)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1561|Tigrero: A Film That Was Never Made (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Tigrero:%20A%20Film%20That%20Was%20Never%20Made%20(1994)|0|0|0|0|0|0|0|1|1|0|0|0|0|0|0|0|0|0|0 +1562|Eye of Vichy, The (Oeil de Vichy, L') (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Oeil%20de%20Vichy,%20L'%20(1993)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1563|Promise, The (Versprechen, Das) (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Versprechen,%20Das%20(1994)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1564|To Cross the Rubicon (1991)|01-Jan-1991||http://us.imdb.com/M/title-exact?To%20Cross%20the%20Rubicon%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1565|Daens (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Daens%20(1992)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1566|Man from Down Under, The (1943)|01-Jan-1943||http://us.imdb.com/Title?Man+from+Down+Under,+The+(1943)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1567|Careful (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Careful%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1568|Vermont Is For Lovers (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Vermont%20Is%20For%20Lovers%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1569|Vie est belle, La (Life is Rosey) (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Vie%20est%20belle,%20La%20(1987)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1570|Quartier Mozart (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Quartier%20Mozart%20(1992)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1571|Touki Bouki (Journey of the Hyena) (1973)|01-Jan-1973||http://us.imdb.com/M/title-exact?Touki%20Bouki%20(1973)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1572|Wend Kuuni (God's Gift) (1982)|01-Jan-1982||http://us.imdb.com/M/title-exact?Wend%20Kuuni%20(1982)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1573|Spirits of the Dead (Tre passi nel delirio) (1968)|01-Jan-1968||http://us.imdb.com/M/title-exact?Tre%20passi%20nel%20delirio%20(1968)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0 +1574|Pharaoh's Army (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Pharaoh's%20Army%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1575|I, Worst of All (Yo, la peor de todas) (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?Yo,%20la%20Peor%20de%20Todas%20(1990)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1576|Hungarian Fairy Tale, A (1987)|01-Jan-1987||http://us.imdb.com/M/title-exact?Hol%20volt,%20hol%20nem%20volt%20(1987)|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1577|Death in the Garden (Mort en ce jardin, La) (1956)|01-Jan-1956||http://us.imdb.com/Title?Mort+en+ce+jardin,+La+(1956)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1578|Collectionneuse, La (1967)|01-Jan-1967||http://us.imdb.com/M/title-exact?Collectionneuse,%20La%20(1967)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1579|Baton Rouge (1988)|01-Jan-1988||http://us.imdb.com/Title?B%E2ton+rouge+(1988)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1580|Liebelei (1933)|01-Jan-1933||http://us.imdb.com/M/title-exact?Liebelei%20(1933)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1581|Woman in Question, The (1950)|01-Jan-1950||http://us.imdb.com/M/title-exact?Woman%20in%20Question,%20The%20(1950)|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0 +1582|T-Men (1947)|01-Jan-1947||http://us.imdb.com/M/title-exact?T-Men%20(1947)|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0 +1583|Invitation, The (Zaproszenie) (1986)|01-Jan-1986||http://us.imdb.com/M/title-exact?Zaproszenie%20(1986)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1584|Symphonie pastorale, La (1946)|01-Jan-1946||http://us.imdb.com/M/title-exact?Symphonie%20pastorale,%20La%20(1946)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1585|American Dream (1990)|01-Jan-1990||http://us.imdb.com/M/title-exact?American%20Dream%20(1990)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1586|Lashou shentan (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Lashou%20Shentan%20(1992)|0|1|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1587|Terror in a Texas Town (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Terror%20in%20a%20Texas%20Town%20(1958)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1 +1588|Salut cousin! (1996)|21-Feb-1997||http://us.imdb.com/M/title-exact?Salut%20cousin!%20(1996)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1589|Schizopolis (1996)|23-May-1997||http://us.imdb.com/Title?Schizopolis+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1590|To Have, or Not (1995)|06-Jun-1997||http://us.imdb.com/M/title-exact?En%20avoir%20%28ou%20pas%29%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1591|Duoluo tianshi (1995)|21-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-112913|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1592|Magic Hour, The (1998)|30-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-119594|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1593|Death in Brunswick (1991)|16-Aug-1996||http://us.imdb.com/M/title-exact?Death%20in%20Brunswick%20(1991)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1594|Everest (1998)|10-Mar-1998||http://us.imdb.com/Title?Everest+(1998)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1595|Shopping (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Shopping%20(1994)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1596|Nemesis 2: Nebula (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nemesis%202:%20Nebula%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|1|0|0 +1597|Romper Stomper (1992)|01-Jan-1992||http://us.imdb.com/M/title-exact?Romper%20Stomper%20(1992)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1598|City of Industry (1997)|14-Mar-1997||http://us.imdb.com/M/title-exact?City%20of%20Industry%20(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0 +1599|Someone Else's America (1995)|10-May-1996||http://us.imdb.com/M/title-exact?Someone%20Else's%20America%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1600|Guantanamera (1994)|16-May-1997||http://us.imdb.com/M/title-exact?Guantanamera%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1601|Office Killer (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?imdb-title-119819|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1602|Price Above Rubies, A (1998)|20-Mar-1998||http://us.imdb.com/Title?Price+Above+Rubies,+A+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1603|Angela (1995)|16-Feb-1996||http://us.imdb.com/M/title-exact?Angela%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1604|He Walked by Night (1948)|01-Jan-1948||http://us.imdb.com/M/title-exact?He%20Walked%20by%20Night%20(1948)|0|0|0|0|0|0|1|0|0|0|1|0|0|0|0|0|1|0|0 +1605|Love Serenade (1996)|11-Jul-1997||http://us.imdb.com/M/title-exact?Love+Serenade+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1606|Deceiver (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Liar+(1997)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1607|Hurricane Streets (1998)|01-Jan-1998||http://us.imdb.com/Title?Hurricane+Streets+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1608|Buddy (1997)|06-Jun-1997||http://us.imdb.com/M/title-exact?Buddy%20%281997%29|0|0|1|0|1|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1609|B*A*P*S (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?B%2EA%2EP%2ES%2E%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1610|Truth or Consequences, N.M. (1997)|02-May-1997||http://us.imdb.com/Title?Truth+or+Consequences,+N.M.+(1997)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0|0|0 +1611|Intimate Relations (1996)|09-May-1997||http://us.imdb.com/M/title-exact?Intimate%20Relations%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1612|Leading Man, The (1996)|16-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-116845|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1613|Tokyo Fist (1995)|11-Feb-1998||http://us.imdb.com/M/title-exact?Tokyo+Fist+(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1614|Reluctant Debutante, The (1958)|01-Jan-1958||http://us.imdb.com/M/title-exact?Reluctant%20Debutante,%20The%20(1958)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1615|Warriors of Virtue (1997)|02-May-1997||http://us.imdb.com/M/title-exact?Warriors%20of%20Virtue%20%281997%29|0|1|1|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0 +1616|Desert Winds (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Desert%20Winds%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1617|Hugo Pool (1997)|01-Jan-1997||http://us.imdb.com/M/title-exact?Hugo+Pool+(1997)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1618|King of New York (1990)|01-Jan-1990||http://us.imdb.com/Title?King+of+New+York+(1990)|0|1|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0 +1619|All Things Fair (1996)|08-Mar-1996||http://us.imdb.com/Title?Lust+och+f%E4gring+stor+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1620|Sixth Man, The (1997)|28-Mar-1997||http://us.imdb.com/M/title-exact?Sixth%20Man%2C%20The%20(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1621|Butterfly Kiss (1995)|26-Apr-1996||http://us.imdb.com/M/title-exact?Butterfly%20Kiss%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1622|Paris, France (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Paris,%20France%20(1993)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1623|Cérémonie, La (1995)|20-Dec-1996||http://us.imdb.com/M/title-exact?C%E9r%E9monie%2C%20La%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1624|Hush (1998)|10-Mar-1998||http://us.imdb.com/Title?Hush+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1625|Nightwatch (1997)|22-Apr-1997||http://us.imdb.com/M/title-exact?Nightwatch%20(1997)|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0|1|0|0 +1626|Nobody Loves Me (Keiner liebt mich) (1994)|09-Feb-1996||http://us.imdb.com/M/title-exact?Keiner%20liebt%20mich%20(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1627|Wife, The (1995)|26-Jul-1996||http://us.imdb.com/Title?Wife,+The+(1995)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1628|Lamerica (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Lamerica%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1629|Nico Icon (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Nico%20Icon%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1630|Silence of the Palace, The (Saimt el Qusur) (1994)|02-Feb-1996||http://us.imdb.com/M/title-exact?Saimt%20el%20Qusur%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1631|Slingshot, The (1993)|01-Jan-1993||http://us.imdb.com/Title?K%E5disbellan+(1993)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1632|Land and Freedom (Tierra y libertad) (1995)|29-Mar-1996||http://us.imdb.com/M/title-exact?Tierra%20y%20libertad%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0 +1633|Á köldum klaka (Cold Fever) (1994)|08-Mar-1996||http://us.imdb.com/Title?%C1+k%F6ldum+klaka+(1994)|0|0|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0 +1634|Etz Hadomim Tafus (Under the Domin Tree) (1994)|19-Apr-1996||http://us.imdb.com/M/title-exact?Etz%20Hadomim%20Tafus%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1635|Two Friends (1986) |26-Apr-1986||http://us.imdb.com/M/title-exact?Two%20Friends%20(1986)%20(TV)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1636|Brothers in Trouble (1995)|26-Apr-1996||http://us.imdb.com/M/title-exact?Brothers%20in%20Trouble%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1637|Girls Town (1996)|23-Aug-1996||http://us.imdb.com/M/title-exact?Girls%20Town%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1638|Normal Life (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Normal%20Life%20(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0 +1639|Bitter Sugar (Azucar Amargo) (1996)|22-Nov-1996||http://us.imdb.com/M/title-exact?Bitter%20Sugar%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1640|Eighth Day, The (1996)|01-Nov-1996||http://us.imdb.com/Title?Huiti%E8me+jour,+Le+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1641|Dadetown (1995)|18-Sep-1996||http://us.imdb.com/M/title-exact?Dadetown%20(1995)|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0 +1642|Some Mother's Son (1996)|27-Dec-1996||http://us.imdb.com/M/title-exact?Some%20Mother's%20Son%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1643|Angel Baby (1995)|10-Jan-1997||http://us.imdb.com/Title?Angel+Baby+(1995/I)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1644|Sudden Manhattan (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Sudden%20Manhattan%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1645|Butcher Boy, The (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118804|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1646|Men With Guns (1997)|06-Mar-1998||http://us.imdb.com/Title?Men+with+Guns+(1997/I)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1647|Hana-bi (1997)|20-Mar-1998||http://us.imdb.com/Title?Hana-bi+(1997)|0|0|0|0|0|1|1|0|1|0|0|0|0|0|0|0|0|0|0 +1648|Niagara, Niagara (1997)|20-Mar-1998||http://us.imdb.com/Title?Niagara,+Niagara+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1649|Big One, The (1997)|27-Mar-1998||http://us.imdb.com/Title?Big+One,+The+(1997)|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|0|0|0|0 +1650|Butcher Boy, The (1998)|01-Jan-1998||http://us.imdb.com/M/title-exact?imdb-title-118804|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1651|Spanish Prisoner, The (1997)|27-Mar-1998||http://us.imdb.com/Title?Spanish+Prisoner,+The+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|1|0|0 +1652|Temptress Moon (Feng Yue) (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Feng%20Yue%20%281996%29|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|0 +1653|Entertaining Angels: The Dorothy Day Story (1996)|27-Sep-1996||http://us.imdb.com/M/title-exact?Entertaining%20Angels:%20The%20Dorothy%20Day%20Story%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1654|Chairman of the Board (1998)|01-Jan-1998||http://us.imdb.com/Title?Chairman+of+the+Board+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1655|Favor, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?Favor,%20The%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1656|Little City (1998)|20-Feb-1998||http://us.imdb.com/M/title-exact?Little+City+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0|0|0|0 +1657|Target (1995)|28-Feb-1996||http://us.imdb.com/M/title-exact?Target%20(1995)|0|1|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1658|Substance of Fire, The (1996)|06-Dec-1996||http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1659|Getting Away With Murder (1996)|12-Apr-1996||http://us.imdb.com/Title?Getting+Away+With+Murder+(1996)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1660|Small Faces (1995)|09-Aug-1996||http://us.imdb.com/M/title-exact?Small%20Faces%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1661|New Age, The (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?New%20Age,%20The%20(1994)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1662|Rough Magic (1995)|30-May-1997||http://us.imdb.com/M/title-exact?Rough%20Magic%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1663|Nothing Personal (1995)|30-Apr-1997||http://us.imdb.com/M/title-exact?Nothing%20Personal%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0 +1664|8 Heads in a Duffel Bag (1997)|18-Apr-1997||http://us.imdb.com/Title?8+Heads+in+a+Duffel+Bag+(1997)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1665|Brother's Kiss, A (1997)|25-Apr-1997||http://us.imdb.com/M/title-exact?Brother%27s%20Kiss%2C%20A%20%281997%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1666|Ripe (1996)|02-May-1997||http://us.imdb.com/M/title-exact?Ripe%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1667|Next Step, The (1995)|13-Jun-1997||http://us.imdb.com/M/title-exact?Next%20Step%2C%20The%20%281995%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1668|Wedding Bell Blues (1996)|13-Jun-1997||http://us.imdb.com/M/title-exact?Wedding%20Bell%20Blues%20%281996%29|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1669|MURDER and murder (1996)|20-Jun-1997||http://us.imdb.com/M/title-exact?MURDER+and+murder+(1996)|0|0|0|0|0|0|1|0|1|0|0|0|0|1|0|0|0|0|0 +1670|Tainted (1998)|01-Feb-1998||http://us.imdb.com/M/title-exact?Tainted+(1998)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|1|0|0 +1671|Further Gesture, A (1996)|20-Feb-1998||http://us.imdb.com/M/title-exact?Further+Gesture%2C+A+(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1672|Kika (1993)|01-Jan-1993||http://us.imdb.com/M/title-exact?Kika%20(1993)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1673|Mirage (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Mirage%20(1995)|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0 +1674|Mamma Roma (1962)|01-Jan-1962||http://us.imdb.com/M/title-exact?Mamma%20Roma%20(1962)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1675|Sunchaser, The (1996)|25-Oct-1996||http://us.imdb.com/M/title-exact?Sunchaser,%20The%20(1996)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1676|War at Home, The (1996)|01-Jan-1996||http://us.imdb.com/M/title-exact?War%20at%20Home%2C%20The%20%281996%29|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1677|Sweet Nothing (1995)|20-Sep-1996||http://us.imdb.com/M/title-exact?Sweet%20Nothing%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1678|Mat' i syn (1997)|06-Feb-1998||http://us.imdb.com/M/title-exact?Mat%27+i+syn+(1997)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 +1679|B. Monkey (1998)|06-Feb-1998||http://us.imdb.com/M/title-exact?B%2E+Monkey+(1998)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|1|0|0 +1680|Sliding Doors (1998)|01-Jan-1998||http://us.imdb.com/Title?Sliding+Doors+(1998)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0 +1681|You So Crazy (1994)|01-Jan-1994||http://us.imdb.com/M/title-exact?You%20So%20Crazy%20(1994)|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0|0|0|0 +1682|Scream of Stone (Schrei aus Stein) (1991)|08-Mar-1996||http://us.imdb.com/M/title-exact?Schrei%20aus%20Stein%20(1991)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0 diff --git a/data/u.user b/data/u.user new file mode 100644 index 0000000..05baa1e --- /dev/null +++ b/data/u.user @@ -0,0 +1,944 @@ +user_id|age|gender|occupation|zip_code +1|24|M|technician|85711 +2|53|F|other|94043 +3|23|M|writer|32067 +4|24|M|technician|43537 +5|33|F|other|15213 +6|42|M|executive|98101 +7|57|M|administrator|91344 +8|36|M|administrator|05201 +9|29|M|student|01002 +10|53|M|lawyer|90703 +11|39|F|other|30329 +12|28|F|other|06405 +13|47|M|educator|29206 +14|45|M|scientist|55106 +15|49|F|educator|97301 +16|21|M|entertainment|10309 +17|30|M|programmer|06355 +18|35|F|other|37212 +19|40|M|librarian|02138 +20|42|F|homemaker|95660 +21|26|M|writer|30068 +22|25|M|writer|40206 +23|30|F|artist|48197 +24|21|F|artist|94533 +25|39|M|engineer|55107 +26|49|M|engineer|21044 +27|40|F|librarian|30030 +28|32|M|writer|55369 +29|41|M|programmer|94043 +30|7|M|student|55436 +31|24|M|artist|10003 +32|28|F|student|78741 +33|23|M|student|27510 +34|38|F|administrator|42141 +35|20|F|homemaker|42459 +36|19|F|student|93117 +37|23|M|student|55105 +38|28|F|other|54467 +39|41|M|entertainment|01040 +40|38|M|scientist|27514 +41|33|M|engineer|80525 +42|30|M|administrator|17870 +43|29|F|librarian|20854 +44|26|M|technician|46260 +45|29|M|programmer|50233 +46|27|F|marketing|46538 +47|53|M|marketing|07102 +48|45|M|administrator|12550 +49|23|F|student|76111 +50|21|M|writer|52245 +51|28|M|educator|16509 +52|18|F|student|55105 +53|26|M|programmer|55414 +54|22|M|executive|66315 +55|37|M|programmer|01331 +56|25|M|librarian|46260 +57|16|M|none|84010 +58|27|M|programmer|52246 +59|49|M|educator|08403 +60|50|M|healthcare|06472 +61|36|M|engineer|30040 +62|27|F|administrator|97214 +63|31|M|marketing|75240 +64|32|M|educator|43202 +65|51|F|educator|48118 +66|23|M|student|80521 +67|17|M|student|60402 +68|19|M|student|22904 +69|24|M|engineer|55337 +70|27|M|engineer|60067 +71|39|M|scientist|98034 +72|48|F|administrator|73034 +73|24|M|student|41850 +74|39|M|scientist|T8H1N +75|24|M|entertainment|08816 +76|20|M|student|02215 +77|30|M|technician|29379 +78|26|M|administrator|61801 +79|39|F|administrator|03755 +80|34|F|administrator|52241 +81|21|M|student|21218 +82|50|M|programmer|22902 +83|40|M|other|44133 +84|32|M|executive|55369 +85|51|M|educator|20003 +86|26|M|administrator|46005 +87|47|M|administrator|89503 +88|49|F|librarian|11701 +89|43|F|administrator|68106 +90|60|M|educator|78155 +91|55|M|marketing|01913 +92|32|M|entertainment|80525 +93|48|M|executive|23112 +94|26|M|student|71457 +95|31|M|administrator|10707 +96|25|F|artist|75206 +97|43|M|artist|98006 +98|49|F|executive|90291 +99|20|M|student|63129 +100|36|M|executive|90254 +101|15|M|student|05146 +102|38|M|programmer|30220 +103|26|M|student|55108 +104|27|M|student|55108 +105|24|M|engineer|94043 +106|61|M|retired|55125 +107|39|M|scientist|60466 +108|44|M|educator|63130 +109|29|M|other|55423 +110|19|M|student|77840 +111|57|M|engineer|90630 +112|30|M|salesman|60613 +113|47|M|executive|95032 +114|27|M|programmer|75013 +115|31|M|engineer|17110 +116|40|M|healthcare|97232 +117|20|M|student|16125 +118|21|M|administrator|90210 +119|32|M|programmer|67401 +120|47|F|other|06260 +121|54|M|librarian|99603 +122|32|F|writer|22206 +123|48|F|artist|20008 +124|34|M|student|60615 +125|30|M|lawyer|22202 +126|28|F|lawyer|20015 +127|33|M|none|73439 +128|24|F|marketing|20009 +129|36|F|marketing|07039 +130|20|M|none|60115 +131|59|F|administrator|15237 +132|24|M|other|94612 +133|53|M|engineer|78602 +134|31|M|programmer|80236 +135|23|M|student|38401 +136|51|M|other|97365 +137|50|M|educator|84408 +138|46|M|doctor|53211 +139|20|M|student|08904 +140|30|F|student|32250 +141|49|M|programmer|36117 +142|13|M|other|48118 +143|42|M|technician|08832 +144|53|M|programmer|20910 +145|31|M|entertainment|V3N4P +146|45|M|artist|83814 +147|40|F|librarian|02143 +148|33|M|engineer|97006 +149|35|F|marketing|17325 +150|20|F|artist|02139 +151|38|F|administrator|48103 +152|33|F|educator|68767 +153|25|M|student|60641 +154|25|M|student|53703 +155|32|F|other|11217 +156|25|M|educator|08360 +157|57|M|engineer|70808 +158|50|M|educator|27606 +159|23|F|student|55346 +160|27|M|programmer|66215 +161|50|M|lawyer|55104 +162|25|M|artist|15610 +163|49|M|administrator|97212 +164|47|M|healthcare|80123 +165|20|F|other|53715 +166|47|M|educator|55113 +167|37|M|other|L9G2B +168|48|M|other|80127 +169|52|F|other|53705 +170|53|F|healthcare|30067 +171|48|F|educator|78750 +172|55|M|marketing|22207 +173|56|M|other|22306 +174|30|F|administrator|52302 +175|26|F|scientist|21911 +176|28|M|scientist|07030 +177|20|M|programmer|19104 +178|26|M|other|49512 +179|15|M|entertainment|20755 +180|22|F|administrator|60202 +181|26|M|executive|21218 +182|36|M|programmer|33884 +183|33|M|scientist|27708 +184|37|M|librarian|76013 +185|53|F|librarian|97403 +186|39|F|executive|00000 +187|26|M|educator|16801 +188|42|M|student|29440 +189|32|M|artist|95014 +190|30|M|administrator|95938 +191|33|M|administrator|95161 +192|42|M|educator|90840 +193|29|M|student|49931 +194|38|M|administrator|02154 +195|42|M|scientist|93555 +196|49|M|writer|55105 +197|55|M|technician|75094 +198|21|F|student|55414 +199|30|M|writer|17604 +200|40|M|programmer|93402 +201|27|M|writer|E2A4H +202|41|F|educator|60201 +203|25|F|student|32301 +204|52|F|librarian|10960 +205|47|M|lawyer|06371 +206|14|F|student|53115 +207|39|M|marketing|92037 +208|43|M|engineer|01720 +209|33|F|educator|85710 +210|39|M|engineer|03060 +211|66|M|salesman|32605 +212|49|F|educator|61401 +213|33|M|executive|55345 +214|26|F|librarian|11231 +215|35|M|programmer|63033 +216|22|M|engineer|02215 +217|22|M|other|11727 +218|37|M|administrator|06513 +219|32|M|programmer|43212 +220|30|M|librarian|78205 +221|19|M|student|20685 +222|29|M|programmer|27502 +223|19|F|student|47906 +224|31|F|educator|43512 +225|51|F|administrator|58202 +226|28|M|student|92103 +227|46|M|executive|60659 +228|21|F|student|22003 +229|29|F|librarian|22903 +230|28|F|student|14476 +231|48|M|librarian|01080 +232|45|M|scientist|99709 +233|38|M|engineer|98682 +234|60|M|retired|94702 +235|37|M|educator|22973 +236|44|F|writer|53214 +237|49|M|administrator|63146 +238|42|F|administrator|44124 +239|39|M|artist|95628 +240|23|F|educator|20784 +241|26|F|student|20001 +242|33|M|educator|31404 +243|33|M|educator|60201 +244|28|M|technician|80525 +245|22|M|student|55109 +246|19|M|student|28734 +247|28|M|engineer|20770 +248|25|M|student|37235 +249|25|M|student|84103 +250|29|M|executive|95110 +251|28|M|doctor|85032 +252|42|M|engineer|07733 +253|26|F|librarian|22903 +254|44|M|educator|42647 +255|23|M|entertainment|07029 +256|35|F|none|39042 +257|17|M|student|77005 +258|19|F|student|77801 +259|21|M|student|48823 +260|40|F|artist|89801 +261|28|M|administrator|85202 +262|19|F|student|78264 +263|41|M|programmer|55346 +264|36|F|writer|90064 +265|26|M|executive|84601 +266|62|F|administrator|78756 +267|23|M|engineer|83716 +268|24|M|engineer|19422 +269|31|F|librarian|43201 +270|18|F|student|63119 +271|51|M|engineer|22932 +272|33|M|scientist|53706 +273|50|F|other|10016 +274|20|F|student|55414 +275|38|M|engineer|92064 +276|21|M|student|95064 +277|35|F|administrator|55406 +278|37|F|librarian|30033 +279|33|M|programmer|85251 +280|30|F|librarian|22903 +281|15|F|student|06059 +282|22|M|administrator|20057 +283|28|M|programmer|55305 +284|40|M|executive|92629 +285|25|M|programmer|53713 +286|27|M|student|15217 +287|21|M|salesman|31211 +288|34|M|marketing|23226 +289|11|M|none|94619 +290|40|M|engineer|93550 +291|19|M|student|44106 +292|35|F|programmer|94703 +293|24|M|writer|60804 +294|34|M|technician|92110 +295|31|M|educator|50325 +296|43|F|administrator|16803 +297|29|F|educator|98103 +298|44|M|executive|01581 +299|29|M|doctor|63108 +300|26|F|programmer|55106 +301|24|M|student|55439 +302|42|M|educator|77904 +303|19|M|student|14853 +304|22|F|student|71701 +305|23|M|programmer|94086 +306|45|M|other|73132 +307|25|M|student|55454 +308|60|M|retired|95076 +309|40|M|scientist|70802 +310|37|M|educator|91711 +311|32|M|technician|73071 +312|48|M|other|02110 +313|41|M|marketing|60035 +314|20|F|student|08043 +315|31|M|educator|18301 +316|43|F|other|77009 +317|22|M|administrator|13210 +318|65|M|retired|06518 +319|38|M|programmer|22030 +320|19|M|student|24060 +321|49|F|educator|55413 +322|20|M|student|50613 +323|21|M|student|19149 +324|21|F|student|02176 +325|48|M|technician|02139 +326|41|M|administrator|15235 +327|22|M|student|11101 +328|51|M|administrator|06779 +329|48|M|educator|01720 +330|35|F|educator|33884 +331|33|M|entertainment|91344 +332|20|M|student|40504 +333|47|M|other|V0R2M +334|32|M|librarian|30002 +335|45|M|executive|33775 +336|23|M|salesman|42101 +337|37|M|scientist|10522 +338|39|F|librarian|59717 +339|35|M|lawyer|37901 +340|46|M|engineer|80123 +341|17|F|student|44405 +342|25|F|other|98006 +343|43|M|engineer|30093 +344|30|F|librarian|94117 +345|28|F|librarian|94143 +346|34|M|other|76059 +347|18|M|student|90210 +348|24|F|student|45660 +349|68|M|retired|61455 +350|32|M|student|97301 +351|61|M|educator|49938 +352|37|F|programmer|55105 +353|25|M|scientist|28480 +354|29|F|librarian|48197 +355|25|M|student|60135 +356|32|F|homemaker|92688 +357|26|M|executive|98133 +358|40|M|educator|10022 +359|22|M|student|61801 +360|51|M|other|98027 +361|22|M|student|44074 +362|35|F|homemaker|85233 +363|20|M|student|87501 +364|63|M|engineer|01810 +365|29|M|lawyer|20009 +366|20|F|student|50670 +367|17|M|student|37411 +368|18|M|student|92113 +369|24|M|student|91335 +370|52|M|writer|08534 +371|36|M|engineer|99206 +372|25|F|student|66046 +373|24|F|other|55116 +374|36|M|executive|78746 +375|17|M|entertainment|37777 +376|28|F|other|10010 +377|22|M|student|18015 +378|35|M|student|02859 +379|44|M|programmer|98117 +380|32|M|engineer|55117 +381|33|M|artist|94608 +382|45|M|engineer|01824 +383|42|M|administrator|75204 +384|52|M|programmer|45218 +385|36|M|writer|10003 +386|36|M|salesman|43221 +387|33|M|entertainment|37412 +388|31|M|other|36106 +389|44|F|writer|83702 +390|42|F|writer|85016 +391|23|M|student|84604 +392|52|M|writer|59801 +393|19|M|student|83686 +394|25|M|administrator|96819 +395|43|M|other|44092 +396|57|M|engineer|94551 +397|17|M|student|27514 +398|40|M|other|60008 +399|25|M|other|92374 +400|33|F|administrator|78213 +401|46|F|healthcare|84107 +402|30|M|engineer|95129 +403|37|M|other|06811 +404|29|F|programmer|55108 +405|22|F|healthcare|10019 +406|52|M|educator|93109 +407|29|M|engineer|03261 +408|23|M|student|61755 +409|48|M|administrator|98225 +410|30|F|artist|94025 +411|34|M|educator|44691 +412|25|M|educator|15222 +413|55|M|educator|78212 +414|24|M|programmer|38115 +415|39|M|educator|85711 +416|20|F|student|92626 +417|27|F|other|48103 +418|55|F|none|21206 +419|37|M|lawyer|43215 +420|53|M|educator|02140 +421|38|F|programmer|55105 +422|26|M|entertainment|94533 +423|64|M|other|91606 +424|36|F|marketing|55422 +425|19|M|student|58644 +426|55|M|educator|01602 +427|51|M|doctor|85258 +428|28|M|student|55414 +429|27|M|student|29205 +430|38|M|scientist|98199 +431|24|M|marketing|92629 +432|22|M|entertainment|50311 +433|27|M|artist|11211 +434|16|F|student|49705 +435|24|M|engineer|60007 +436|30|F|administrator|17345 +437|27|F|other|20009 +438|51|F|administrator|43204 +439|23|F|administrator|20817 +440|30|M|other|48076 +441|50|M|technician|55013 +442|22|M|student|85282 +443|35|M|salesman|33308 +444|51|F|lawyer|53202 +445|21|M|writer|92653 +446|57|M|educator|60201 +447|30|M|administrator|55113 +448|23|M|entertainment|10021 +449|23|M|librarian|55021 +450|35|F|educator|11758 +451|16|M|student|48446 +452|35|M|administrator|28018 +453|18|M|student|06333 +454|57|M|other|97330 +455|48|M|administrator|83709 +456|24|M|technician|31820 +457|33|F|salesman|30011 +458|47|M|technician|Y1A6B +459|22|M|student|29201 +460|44|F|other|60630 +461|15|M|student|98102 +462|19|F|student|02918 +463|48|F|healthcare|75218 +464|60|M|writer|94583 +465|32|M|other|05001 +466|22|M|student|90804 +467|29|M|engineer|91201 +468|28|M|engineer|02341 +469|60|M|educator|78628 +470|24|M|programmer|10021 +471|10|M|student|77459 +472|24|M|student|87544 +473|29|M|student|94708 +474|51|M|executive|93711 +475|30|M|programmer|75230 +476|28|M|student|60440 +477|23|F|student|02125 +478|29|M|other|10019 +479|30|M|educator|55409 +480|57|M|retired|98257 +481|73|M|retired|37771 +482|18|F|student|40256 +483|29|M|scientist|43212 +484|27|M|student|21208 +485|44|F|educator|95821 +486|39|M|educator|93101 +487|22|M|engineer|92121 +488|48|M|technician|21012 +489|55|M|other|45218 +490|29|F|artist|V5A2B +491|43|F|writer|53711 +492|57|M|educator|94618 +493|22|M|engineer|60090 +494|38|F|administrator|49428 +495|29|M|engineer|03052 +496|21|F|student|55414 +497|20|M|student|50112 +498|26|M|writer|55408 +499|42|M|programmer|75006 +500|28|M|administrator|94305 +501|22|M|student|10025 +502|22|M|student|23092 +503|50|F|writer|27514 +504|40|F|writer|92115 +505|27|F|other|20657 +506|46|M|programmer|03869 +507|18|F|writer|28450 +508|27|M|marketing|19382 +509|23|M|administrator|10011 +510|34|M|other|98038 +511|22|M|student|21250 +512|29|M|other|20090 +513|43|M|administrator|26241 +514|27|M|programmer|20707 +515|53|M|marketing|49508 +516|53|F|librarian|10021 +517|24|M|student|55454 +518|49|F|writer|99709 +519|22|M|other|55320 +520|62|M|healthcare|12603 +521|19|M|student|02146 +522|36|M|engineer|55443 +523|50|F|administrator|04102 +524|56|M|educator|02159 +525|27|F|administrator|19711 +526|30|M|marketing|97124 +527|33|M|librarian|12180 +528|18|M|student|55104 +529|47|F|administrator|44224 +530|29|M|engineer|94040 +531|30|F|salesman|97408 +532|20|M|student|92705 +533|43|M|librarian|02324 +534|20|M|student|05464 +535|45|F|educator|80302 +536|38|M|engineer|30078 +537|36|M|engineer|22902 +538|31|M|scientist|21010 +539|53|F|administrator|80303 +540|28|M|engineer|91201 +541|19|F|student|84302 +542|21|M|student|60515 +543|33|M|scientist|95123 +544|44|F|other|29464 +545|27|M|technician|08052 +546|36|M|executive|22911 +547|50|M|educator|14534 +548|51|M|writer|95468 +549|42|M|scientist|45680 +550|16|F|student|95453 +551|25|M|programmer|55414 +552|45|M|other|68147 +553|58|M|educator|62901 +554|32|M|scientist|62901 +555|29|F|educator|23227 +556|35|F|educator|30606 +557|30|F|writer|11217 +558|56|F|writer|63132 +559|69|M|executive|10022 +560|32|M|student|10003 +561|23|M|engineer|60005 +562|54|F|administrator|20879 +563|39|F|librarian|32707 +564|65|M|retired|94591 +565|40|M|student|55422 +566|20|M|student|14627 +567|24|M|entertainment|10003 +568|39|M|educator|01915 +569|34|M|educator|91903 +570|26|M|educator|14627 +571|34|M|artist|01945 +572|51|M|educator|20003 +573|68|M|retired|48911 +574|56|M|educator|53188 +575|33|M|marketing|46032 +576|48|M|executive|98281 +577|36|F|student|77845 +578|31|M|administrator|M7A1A +579|32|M|educator|48103 +580|16|M|student|17961 +581|37|M|other|94131 +582|17|M|student|93003 +583|44|M|engineer|29631 +584|25|M|student|27511 +585|69|M|librarian|98501 +586|20|M|student|79508 +587|26|M|other|14216 +588|18|F|student|93063 +589|21|M|lawyer|90034 +590|50|M|educator|82435 +591|57|F|librarian|92093 +592|18|M|student|97520 +593|31|F|educator|68767 +594|46|M|educator|M4J2K +595|25|M|programmer|31909 +596|20|M|artist|77073 +597|23|M|other|84116 +598|40|F|marketing|43085 +599|22|F|student|R3T5K +600|34|M|programmer|02320 +601|19|F|artist|99687 +602|47|F|other|34656 +603|21|M|programmer|47905 +604|39|M|educator|11787 +605|33|M|engineer|33716 +606|28|M|programmer|63044 +607|49|F|healthcare|02154 +608|22|M|other|10003 +609|13|F|student|55106 +610|22|M|student|21227 +611|46|M|librarian|77008 +612|36|M|educator|79070 +613|37|F|marketing|29678 +614|54|M|educator|80227 +615|38|M|educator|27705 +616|55|M|scientist|50613 +617|27|F|writer|11201 +618|15|F|student|44212 +619|17|M|student|44134 +620|18|F|writer|81648 +621|17|M|student|60402 +622|25|M|programmer|14850 +623|50|F|educator|60187 +624|19|M|student|30067 +625|27|M|programmer|20723 +626|23|M|scientist|19807 +627|24|M|engineer|08034 +628|13|M|none|94306 +629|46|F|other|44224 +630|26|F|healthcare|55408 +631|18|F|student|38866 +632|18|M|student|55454 +633|35|M|programmer|55414 +634|39|M|engineer|T8H1N +635|22|M|other|23237 +636|47|M|educator|48043 +637|30|M|other|74101 +638|45|M|engineer|01940 +639|42|F|librarian|12065 +640|20|M|student|61801 +641|24|M|student|60626 +642|18|F|student|95521 +643|39|M|scientist|55122 +644|51|M|retired|63645 +645|27|M|programmer|53211 +646|17|F|student|51250 +647|40|M|educator|45810 +648|43|M|engineer|91351 +649|20|M|student|39762 +650|42|M|engineer|83814 +651|65|M|retired|02903 +652|35|M|other|22911 +653|31|M|executive|55105 +654|27|F|student|78739 +655|50|F|healthcare|60657 +656|48|M|educator|10314 +657|26|F|none|78704 +658|33|M|programmer|92626 +659|31|M|educator|54248 +660|26|M|student|77380 +661|28|M|programmer|98121 +662|55|M|librarian|19102 +663|26|M|other|19341 +664|30|M|engineer|94115 +665|25|M|administrator|55412 +666|44|M|administrator|61820 +667|35|M|librarian|01970 +668|29|F|writer|10016 +669|37|M|other|20009 +670|30|M|technician|21114 +671|21|M|programmer|91919 +672|54|F|administrator|90095 +673|51|M|educator|22906 +674|13|F|student|55337 +675|34|M|other|28814 +676|30|M|programmer|32712 +677|20|M|other|99835 +678|50|M|educator|61462 +679|20|F|student|54302 +680|33|M|lawyer|90405 +681|44|F|marketing|97208 +682|23|M|programmer|55128 +683|42|M|librarian|23509 +684|28|M|student|55414 +685|32|F|librarian|55409 +686|32|M|educator|26506 +687|31|F|healthcare|27713 +688|37|F|administrator|60476 +689|25|M|other|45439 +690|35|M|salesman|63304 +691|34|M|educator|60089 +692|34|M|engineer|18053 +693|43|F|healthcare|85210 +694|60|M|programmer|06365 +695|26|M|writer|38115 +696|55|M|other|94920 +697|25|M|other|77042 +698|28|F|programmer|06906 +699|44|M|other|96754 +700|17|M|student|76309 +701|51|F|librarian|56321 +702|37|M|other|89104 +703|26|M|educator|49512 +704|51|F|librarian|91105 +705|21|F|student|54494 +706|23|M|student|55454 +707|56|F|librarian|19146 +708|26|F|homemaker|96349 +709|21|M|other|N4T1A +710|19|M|student|92020 +711|22|F|student|15203 +712|22|F|student|54901 +713|42|F|other|07204 +714|26|M|engineer|55343 +715|21|M|technician|91206 +716|36|F|administrator|44265 +717|24|M|technician|84105 +718|42|M|technician|64118 +719|37|F|other|V0R2H +720|49|F|administrator|16506 +721|24|F|entertainment|11238 +722|50|F|homemaker|17331 +723|26|M|executive|94403 +724|31|M|executive|40243 +725|21|M|student|91711 +726|25|F|administrator|80538 +727|25|M|student|78741 +728|58|M|executive|94306 +729|19|M|student|56567 +730|31|F|scientist|32114 +731|41|F|educator|70403 +732|28|F|other|98405 +733|44|F|other|60630 +734|25|F|other|63108 +735|29|F|healthcare|85719 +736|48|F|writer|94618 +737|30|M|programmer|98072 +738|35|M|technician|95403 +739|35|M|technician|73162 +740|25|F|educator|22206 +741|25|M|writer|63108 +742|35|M|student|29210 +743|31|M|programmer|92660 +744|35|M|marketing|47024 +745|42|M|writer|55113 +746|25|M|engineer|19047 +747|19|M|other|93612 +748|28|M|administrator|94720 +749|33|M|other|80919 +750|28|M|administrator|32303 +751|24|F|other|90034 +752|60|M|retired|21201 +753|56|M|salesman|91206 +754|59|F|librarian|62901 +755|44|F|educator|97007 +756|30|F|none|90247 +757|26|M|student|55104 +758|27|M|student|53706 +759|20|F|student|68503 +760|35|F|other|14211 +761|17|M|student|97302 +762|32|M|administrator|95050 +763|27|M|scientist|02113 +764|27|F|educator|62903 +765|31|M|student|33066 +766|42|M|other|10960 +767|70|M|engineer|00000 +768|29|M|administrator|12866 +769|39|M|executive|06927 +770|28|M|student|14216 +771|26|M|student|15232 +772|50|M|writer|27105 +773|20|M|student|55414 +774|30|M|student|80027 +775|46|M|executive|90036 +776|30|M|librarian|51157 +777|63|M|programmer|01810 +778|34|M|student|01960 +779|31|M|student|K7L5J +780|49|M|programmer|94560 +781|20|M|student|48825 +782|21|F|artist|33205 +783|30|M|marketing|77081 +784|47|M|administrator|91040 +785|32|M|engineer|23322 +786|36|F|engineer|01754 +787|18|F|student|98620 +788|51|M|administrator|05779 +789|29|M|other|55420 +790|27|M|technician|80913 +791|31|M|educator|20064 +792|40|M|programmer|12205 +793|22|M|student|85281 +794|32|M|educator|57197 +795|30|M|programmer|08610 +796|32|F|writer|33755 +797|44|F|other|62522 +798|40|F|writer|64131 +799|49|F|administrator|19716 +800|25|M|programmer|55337 +801|22|M|writer|92154 +802|35|M|administrator|34105 +803|70|M|administrator|78212 +804|39|M|educator|61820 +805|27|F|other|20009 +806|27|M|marketing|11217 +807|41|F|healthcare|93555 +808|45|M|salesman|90016 +809|50|F|marketing|30803 +810|55|F|other|80526 +811|40|F|educator|73013 +812|22|M|technician|76234 +813|14|F|student|02136 +814|30|M|other|12345 +815|32|M|other|28806 +816|34|M|other|20755 +817|19|M|student|60152 +818|28|M|librarian|27514 +819|59|M|administrator|40205 +820|22|M|student|37725 +821|37|M|engineer|77845 +822|29|F|librarian|53144 +823|27|M|artist|50322 +824|31|M|other|15017 +825|44|M|engineer|05452 +826|28|M|artist|77048 +827|23|F|engineer|80228 +828|28|M|librarian|85282 +829|48|M|writer|80209 +830|46|M|programmer|53066 +831|21|M|other|33765 +832|24|M|technician|77042 +833|34|M|writer|90019 +834|26|M|other|64153 +835|44|F|executive|11577 +836|44|M|artist|10018 +837|36|F|artist|55409 +838|23|M|student|01375 +839|38|F|entertainment|90814 +840|39|M|artist|55406 +841|45|M|doctor|47401 +842|40|M|writer|93055 +843|35|M|librarian|44212 +844|22|M|engineer|95662 +845|64|M|doctor|97405 +846|27|M|lawyer|47130 +847|29|M|student|55417 +848|46|M|engineer|02146 +849|15|F|student|25652 +850|34|M|technician|78390 +851|18|M|other|29646 +852|46|M|administrator|94086 +853|49|M|writer|40515 +854|29|F|student|55408 +855|53|M|librarian|04988 +856|43|F|marketing|97215 +857|35|F|administrator|V1G4L +858|63|M|educator|09645 +859|18|F|other|06492 +860|70|F|retired|48322 +861|38|F|student|14085 +862|25|M|executive|13820 +863|17|M|student|60089 +864|27|M|programmer|63021 +865|25|M|artist|11231 +866|45|M|other|60302 +867|24|M|scientist|92507 +868|21|M|programmer|55303 +869|30|M|student|10025 +870|22|M|student|65203 +871|31|M|executive|44648 +872|19|F|student|74078 +873|48|F|administrator|33763 +874|36|M|scientist|37076 +875|24|F|student|35802 +876|41|M|other|20902 +877|30|M|other|77504 +878|50|F|educator|98027 +879|33|F|administrator|55337 +880|13|M|student|83702 +881|39|M|marketing|43017 +882|35|M|engineer|40503 +883|49|M|librarian|50266 +884|44|M|engineer|55337 +885|30|F|other|95316 +886|20|M|student|61820 +887|14|F|student|27249 +888|41|M|scientist|17036 +889|24|M|technician|78704 +890|32|M|student|97301 +891|51|F|administrator|03062 +892|36|M|other|45243 +893|25|M|student|95823 +894|47|M|educator|74075 +895|31|F|librarian|32301 +896|28|M|writer|91505 +897|30|M|other|33484 +898|23|M|homemaker|61755 +899|32|M|other|55116 +900|60|M|retired|18505 +901|38|M|executive|L1V3W +902|45|F|artist|97203 +903|28|M|educator|20850 +904|17|F|student|61073 +905|27|M|other|30350 +906|45|M|librarian|70124 +907|25|F|other|80526 +908|44|F|librarian|68504 +909|50|F|educator|53171 +910|28|M|healthcare|29301 +911|37|F|writer|53210 +912|51|M|other|06512 +913|27|M|student|76201 +914|44|F|other|08105 +915|50|M|entertainment|60614 +916|27|M|engineer|N2L5N +917|22|F|student|20006 +918|40|M|scientist|70116 +919|25|M|other|14216 +920|30|F|artist|90008 +921|20|F|student|98801 +922|29|F|administrator|21114 +923|21|M|student|E2E3R +924|29|M|other|11753 +925|18|F|salesman|49036 +926|49|M|entertainment|01701 +927|23|M|programmer|55428 +928|21|M|student|55408 +929|44|M|scientist|53711 +930|28|F|scientist|07310 +931|60|M|educator|33556 +932|58|M|educator|06437 +933|28|M|student|48105 +934|61|M|engineer|22902 +935|42|M|doctor|66221 +936|24|M|other|32789 +937|48|M|educator|98072 +938|38|F|technician|55038 +939|26|F|student|33319 +940|32|M|administrator|02215 +941|20|M|student|97229 +942|48|F|librarian|78209 +943|22|M|student|77841 diff --git a/data/u.user_original b/data/u.user_original new file mode 100644 index 0000000..53d296f --- /dev/null +++ b/data/u.user_original @@ -0,0 +1,943 @@ +1|24|M|technician|85711 +2|53|F|other|94043 +3|23|M|writer|32067 +4|24|M|technician|43537 +5|33|F|other|15213 +6|42|M|executive|98101 +7|57|M|administrator|91344 +8|36|M|administrator|05201 +9|29|M|student|01002 +10|53|M|lawyer|90703 +11|39|F|other|30329 +12|28|F|other|06405 +13|47|M|educator|29206 +14|45|M|scientist|55106 +15|49|F|educator|97301 +16|21|M|entertainment|10309 +17|30|M|programmer|06355 +18|35|F|other|37212 +19|40|M|librarian|02138 +20|42|F|homemaker|95660 +21|26|M|writer|30068 +22|25|M|writer|40206 +23|30|F|artist|48197 +24|21|F|artist|94533 +25|39|M|engineer|55107 +26|49|M|engineer|21044 +27|40|F|librarian|30030 +28|32|M|writer|55369 +29|41|M|programmer|94043 +30|7|M|student|55436 +31|24|M|artist|10003 +32|28|F|student|78741 +33|23|M|student|27510 +34|38|F|administrator|42141 +35|20|F|homemaker|42459 +36|19|F|student|93117 +37|23|M|student|55105 +38|28|F|other|54467 +39|41|M|entertainment|01040 +40|38|M|scientist|27514 +41|33|M|engineer|80525 +42|30|M|administrator|17870 +43|29|F|librarian|20854 +44|26|M|technician|46260 +45|29|M|programmer|50233 +46|27|F|marketing|46538 +47|53|M|marketing|07102 +48|45|M|administrator|12550 +49|23|F|student|76111 +50|21|M|writer|52245 +51|28|M|educator|16509 +52|18|F|student|55105 +53|26|M|programmer|55414 +54|22|M|executive|66315 +55|37|M|programmer|01331 +56|25|M|librarian|46260 +57|16|M|none|84010 +58|27|M|programmer|52246 +59|49|M|educator|08403 +60|50|M|healthcare|06472 +61|36|M|engineer|30040 +62|27|F|administrator|97214 +63|31|M|marketing|75240 +64|32|M|educator|43202 +65|51|F|educator|48118 +66|23|M|student|80521 +67|17|M|student|60402 +68|19|M|student|22904 +69|24|M|engineer|55337 +70|27|M|engineer|60067 +71|39|M|scientist|98034 +72|48|F|administrator|73034 +73|24|M|student|41850 +74|39|M|scientist|T8H1N +75|24|M|entertainment|08816 +76|20|M|student|02215 +77|30|M|technician|29379 +78|26|M|administrator|61801 +79|39|F|administrator|03755 +80|34|F|administrator|52241 +81|21|M|student|21218 +82|50|M|programmer|22902 +83|40|M|other|44133 +84|32|M|executive|55369 +85|51|M|educator|20003 +86|26|M|administrator|46005 +87|47|M|administrator|89503 +88|49|F|librarian|11701 +89|43|F|administrator|68106 +90|60|M|educator|78155 +91|55|M|marketing|01913 +92|32|M|entertainment|80525 +93|48|M|executive|23112 +94|26|M|student|71457 +95|31|M|administrator|10707 +96|25|F|artist|75206 +97|43|M|artist|98006 +98|49|F|executive|90291 +99|20|M|student|63129 +100|36|M|executive|90254 +101|15|M|student|05146 +102|38|M|programmer|30220 +103|26|M|student|55108 +104|27|M|student|55108 +105|24|M|engineer|94043 +106|61|M|retired|55125 +107|39|M|scientist|60466 +108|44|M|educator|63130 +109|29|M|other|55423 +110|19|M|student|77840 +111|57|M|engineer|90630 +112|30|M|salesman|60613 +113|47|M|executive|95032 +114|27|M|programmer|75013 +115|31|M|engineer|17110 +116|40|M|healthcare|97232 +117|20|M|student|16125 +118|21|M|administrator|90210 +119|32|M|programmer|67401 +120|47|F|other|06260 +121|54|M|librarian|99603 +122|32|F|writer|22206 +123|48|F|artist|20008 +124|34|M|student|60615 +125|30|M|lawyer|22202 +126|28|F|lawyer|20015 +127|33|M|none|73439 +128|24|F|marketing|20009 +129|36|F|marketing|07039 +130|20|M|none|60115 +131|59|F|administrator|15237 +132|24|M|other|94612 +133|53|M|engineer|78602 +134|31|M|programmer|80236 +135|23|M|student|38401 +136|51|M|other|97365 +137|50|M|educator|84408 +138|46|M|doctor|53211 +139|20|M|student|08904 +140|30|F|student|32250 +141|49|M|programmer|36117 +142|13|M|other|48118 +143|42|M|technician|08832 +144|53|M|programmer|20910 +145|31|M|entertainment|V3N4P +146|45|M|artist|83814 +147|40|F|librarian|02143 +148|33|M|engineer|97006 +149|35|F|marketing|17325 +150|20|F|artist|02139 +151|38|F|administrator|48103 +152|33|F|educator|68767 +153|25|M|student|60641 +154|25|M|student|53703 +155|32|F|other|11217 +156|25|M|educator|08360 +157|57|M|engineer|70808 +158|50|M|educator|27606 +159|23|F|student|55346 +160|27|M|programmer|66215 +161|50|M|lawyer|55104 +162|25|M|artist|15610 +163|49|M|administrator|97212 +164|47|M|healthcare|80123 +165|20|F|other|53715 +166|47|M|educator|55113 +167|37|M|other|L9G2B +168|48|M|other|80127 +169|52|F|other|53705 +170|53|F|healthcare|30067 +171|48|F|educator|78750 +172|55|M|marketing|22207 +173|56|M|other|22306 +174|30|F|administrator|52302 +175|26|F|scientist|21911 +176|28|M|scientist|07030 +177|20|M|programmer|19104 +178|26|M|other|49512 +179|15|M|entertainment|20755 +180|22|F|administrator|60202 +181|26|M|executive|21218 +182|36|M|programmer|33884 +183|33|M|scientist|27708 +184|37|M|librarian|76013 +185|53|F|librarian|97403 +186|39|F|executive|00000 +187|26|M|educator|16801 +188|42|M|student|29440 +189|32|M|artist|95014 +190|30|M|administrator|95938 +191|33|M|administrator|95161 +192|42|M|educator|90840 +193|29|M|student|49931 +194|38|M|administrator|02154 +195|42|M|scientist|93555 +196|49|M|writer|55105 +197|55|M|technician|75094 +198|21|F|student|55414 +199|30|M|writer|17604 +200|40|M|programmer|93402 +201|27|M|writer|E2A4H +202|41|F|educator|60201 +203|25|F|student|32301 +204|52|F|librarian|10960 +205|47|M|lawyer|06371 +206|14|F|student|53115 +207|39|M|marketing|92037 +208|43|M|engineer|01720 +209|33|F|educator|85710 +210|39|M|engineer|03060 +211|66|M|salesman|32605 +212|49|F|educator|61401 +213|33|M|executive|55345 +214|26|F|librarian|11231 +215|35|M|programmer|63033 +216|22|M|engineer|02215 +217|22|M|other|11727 +218|37|M|administrator|06513 +219|32|M|programmer|43212 +220|30|M|librarian|78205 +221|19|M|student|20685 +222|29|M|programmer|27502 +223|19|F|student|47906 +224|31|F|educator|43512 +225|51|F|administrator|58202 +226|28|M|student|92103 +227|46|M|executive|60659 +228|21|F|student|22003 +229|29|F|librarian|22903 +230|28|F|student|14476 +231|48|M|librarian|01080 +232|45|M|scientist|99709 +233|38|M|engineer|98682 +234|60|M|retired|94702 +235|37|M|educator|22973 +236|44|F|writer|53214 +237|49|M|administrator|63146 +238|42|F|administrator|44124 +239|39|M|artist|95628 +240|23|F|educator|20784 +241|26|F|student|20001 +242|33|M|educator|31404 +243|33|M|educator|60201 +244|28|M|technician|80525 +245|22|M|student|55109 +246|19|M|student|28734 +247|28|M|engineer|20770 +248|25|M|student|37235 +249|25|M|student|84103 +250|29|M|executive|95110 +251|28|M|doctor|85032 +252|42|M|engineer|07733 +253|26|F|librarian|22903 +254|44|M|educator|42647 +255|23|M|entertainment|07029 +256|35|F|none|39042 +257|17|M|student|77005 +258|19|F|student|77801 +259|21|M|student|48823 +260|40|F|artist|89801 +261|28|M|administrator|85202 +262|19|F|student|78264 +263|41|M|programmer|55346 +264|36|F|writer|90064 +265|26|M|executive|84601 +266|62|F|administrator|78756 +267|23|M|engineer|83716 +268|24|M|engineer|19422 +269|31|F|librarian|43201 +270|18|F|student|63119 +271|51|M|engineer|22932 +272|33|M|scientist|53706 +273|50|F|other|10016 +274|20|F|student|55414 +275|38|M|engineer|92064 +276|21|M|student|95064 +277|35|F|administrator|55406 +278|37|F|librarian|30033 +279|33|M|programmer|85251 +280|30|F|librarian|22903 +281|15|F|student|06059 +282|22|M|administrator|20057 +283|28|M|programmer|55305 +284|40|M|executive|92629 +285|25|M|programmer|53713 +286|27|M|student|15217 +287|21|M|salesman|31211 +288|34|M|marketing|23226 +289|11|M|none|94619 +290|40|M|engineer|93550 +291|19|M|student|44106 +292|35|F|programmer|94703 +293|24|M|writer|60804 +294|34|M|technician|92110 +295|31|M|educator|50325 +296|43|F|administrator|16803 +297|29|F|educator|98103 +298|44|M|executive|01581 +299|29|M|doctor|63108 +300|26|F|programmer|55106 +301|24|M|student|55439 +302|42|M|educator|77904 +303|19|M|student|14853 +304|22|F|student|71701 +305|23|M|programmer|94086 +306|45|M|other|73132 +307|25|M|student|55454 +308|60|M|retired|95076 +309|40|M|scientist|70802 +310|37|M|educator|91711 +311|32|M|technician|73071 +312|48|M|other|02110 +313|41|M|marketing|60035 +314|20|F|student|08043 +315|31|M|educator|18301 +316|43|F|other|77009 +317|22|M|administrator|13210 +318|65|M|retired|06518 +319|38|M|programmer|22030 +320|19|M|student|24060 +321|49|F|educator|55413 +322|20|M|student|50613 +323|21|M|student|19149 +324|21|F|student|02176 +325|48|M|technician|02139 +326|41|M|administrator|15235 +327|22|M|student|11101 +328|51|M|administrator|06779 +329|48|M|educator|01720 +330|35|F|educator|33884 +331|33|M|entertainment|91344 +332|20|M|student|40504 +333|47|M|other|V0R2M +334|32|M|librarian|30002 +335|45|M|executive|33775 +336|23|M|salesman|42101 +337|37|M|scientist|10522 +338|39|F|librarian|59717 +339|35|M|lawyer|37901 +340|46|M|engineer|80123 +341|17|F|student|44405 +342|25|F|other|98006 +343|43|M|engineer|30093 +344|30|F|librarian|94117 +345|28|F|librarian|94143 +346|34|M|other|76059 +347|18|M|student|90210 +348|24|F|student|45660 +349|68|M|retired|61455 +350|32|M|student|97301 +351|61|M|educator|49938 +352|37|F|programmer|55105 +353|25|M|scientist|28480 +354|29|F|librarian|48197 +355|25|M|student|60135 +356|32|F|homemaker|92688 +357|26|M|executive|98133 +358|40|M|educator|10022 +359|22|M|student|61801 +360|51|M|other|98027 +361|22|M|student|44074 +362|35|F|homemaker|85233 +363|20|M|student|87501 +364|63|M|engineer|01810 +365|29|M|lawyer|20009 +366|20|F|student|50670 +367|17|M|student|37411 +368|18|M|student|92113 +369|24|M|student|91335 +370|52|M|writer|08534 +371|36|M|engineer|99206 +372|25|F|student|66046 +373|24|F|other|55116 +374|36|M|executive|78746 +375|17|M|entertainment|37777 +376|28|F|other|10010 +377|22|M|student|18015 +378|35|M|student|02859 +379|44|M|programmer|98117 +380|32|M|engineer|55117 +381|33|M|artist|94608 +382|45|M|engineer|01824 +383|42|M|administrator|75204 +384|52|M|programmer|45218 +385|36|M|writer|10003 +386|36|M|salesman|43221 +387|33|M|entertainment|37412 +388|31|M|other|36106 +389|44|F|writer|83702 +390|42|F|writer|85016 +391|23|M|student|84604 +392|52|M|writer|59801 +393|19|M|student|83686 +394|25|M|administrator|96819 +395|43|M|other|44092 +396|57|M|engineer|94551 +397|17|M|student|27514 +398|40|M|other|60008 +399|25|M|other|92374 +400|33|F|administrator|78213 +401|46|F|healthcare|84107 +402|30|M|engineer|95129 +403|37|M|other|06811 +404|29|F|programmer|55108 +405|22|F|healthcare|10019 +406|52|M|educator|93109 +407|29|M|engineer|03261 +408|23|M|student|61755 +409|48|M|administrator|98225 +410|30|F|artist|94025 +411|34|M|educator|44691 +412|25|M|educator|15222 +413|55|M|educator|78212 +414|24|M|programmer|38115 +415|39|M|educator|85711 +416|20|F|student|92626 +417|27|F|other|48103 +418|55|F|none|21206 +419|37|M|lawyer|43215 +420|53|M|educator|02140 +421|38|F|programmer|55105 +422|26|M|entertainment|94533 +423|64|M|other|91606 +424|36|F|marketing|55422 +425|19|M|student|58644 +426|55|M|educator|01602 +427|51|M|doctor|85258 +428|28|M|student|55414 +429|27|M|student|29205 +430|38|M|scientist|98199 +431|24|M|marketing|92629 +432|22|M|entertainment|50311 +433|27|M|artist|11211 +434|16|F|student|49705 +435|24|M|engineer|60007 +436|30|F|administrator|17345 +437|27|F|other|20009 +438|51|F|administrator|43204 +439|23|F|administrator|20817 +440|30|M|other|48076 +441|50|M|technician|55013 +442|22|M|student|85282 +443|35|M|salesman|33308 +444|51|F|lawyer|53202 +445|21|M|writer|92653 +446|57|M|educator|60201 +447|30|M|administrator|55113 +448|23|M|entertainment|10021 +449|23|M|librarian|55021 +450|35|F|educator|11758 +451|16|M|student|48446 +452|35|M|administrator|28018 +453|18|M|student|06333 +454|57|M|other|97330 +455|48|M|administrator|83709 +456|24|M|technician|31820 +457|33|F|salesman|30011 +458|47|M|technician|Y1A6B +459|22|M|student|29201 +460|44|F|other|60630 +461|15|M|student|98102 +462|19|F|student|02918 +463|48|F|healthcare|75218 +464|60|M|writer|94583 +465|32|M|other|05001 +466|22|M|student|90804 +467|29|M|engineer|91201 +468|28|M|engineer|02341 +469|60|M|educator|78628 +470|24|M|programmer|10021 +471|10|M|student|77459 +472|24|M|student|87544 +473|29|M|student|94708 +474|51|M|executive|93711 +475|30|M|programmer|75230 +476|28|M|student|60440 +477|23|F|student|02125 +478|29|M|other|10019 +479|30|M|educator|55409 +480|57|M|retired|98257 +481|73|M|retired|37771 +482|18|F|student|40256 +483|29|M|scientist|43212 +484|27|M|student|21208 +485|44|F|educator|95821 +486|39|M|educator|93101 +487|22|M|engineer|92121 +488|48|M|technician|21012 +489|55|M|other|45218 +490|29|F|artist|V5A2B +491|43|F|writer|53711 +492|57|M|educator|94618 +493|22|M|engineer|60090 +494|38|F|administrator|49428 +495|29|M|engineer|03052 +496|21|F|student|55414 +497|20|M|student|50112 +498|26|M|writer|55408 +499|42|M|programmer|75006 +500|28|M|administrator|94305 +501|22|M|student|10025 +502|22|M|student|23092 +503|50|F|writer|27514 +504|40|F|writer|92115 +505|27|F|other|20657 +506|46|M|programmer|03869 +507|18|F|writer|28450 +508|27|M|marketing|19382 +509|23|M|administrator|10011 +510|34|M|other|98038 +511|22|M|student|21250 +512|29|M|other|20090 +513|43|M|administrator|26241 +514|27|M|programmer|20707 +515|53|M|marketing|49508 +516|53|F|librarian|10021 +517|24|M|student|55454 +518|49|F|writer|99709 +519|22|M|other|55320 +520|62|M|healthcare|12603 +521|19|M|student|02146 +522|36|M|engineer|55443 +523|50|F|administrator|04102 +524|56|M|educator|02159 +525|27|F|administrator|19711 +526|30|M|marketing|97124 +527|33|M|librarian|12180 +528|18|M|student|55104 +529|47|F|administrator|44224 +530|29|M|engineer|94040 +531|30|F|salesman|97408 +532|20|M|student|92705 +533|43|M|librarian|02324 +534|20|M|student|05464 +535|45|F|educator|80302 +536|38|M|engineer|30078 +537|36|M|engineer|22902 +538|31|M|scientist|21010 +539|53|F|administrator|80303 +540|28|M|engineer|91201 +541|19|F|student|84302 +542|21|M|student|60515 +543|33|M|scientist|95123 +544|44|F|other|29464 +545|27|M|technician|08052 +546|36|M|executive|22911 +547|50|M|educator|14534 +548|51|M|writer|95468 +549|42|M|scientist|45680 +550|16|F|student|95453 +551|25|M|programmer|55414 +552|45|M|other|68147 +553|58|M|educator|62901 +554|32|M|scientist|62901 +555|29|F|educator|23227 +556|35|F|educator|30606 +557|30|F|writer|11217 +558|56|F|writer|63132 +559|69|M|executive|10022 +560|32|M|student|10003 +561|23|M|engineer|60005 +562|54|F|administrator|20879 +563|39|F|librarian|32707 +564|65|M|retired|94591 +565|40|M|student|55422 +566|20|M|student|14627 +567|24|M|entertainment|10003 +568|39|M|educator|01915 +569|34|M|educator|91903 +570|26|M|educator|14627 +571|34|M|artist|01945 +572|51|M|educator|20003 +573|68|M|retired|48911 +574|56|M|educator|53188 +575|33|M|marketing|46032 +576|48|M|executive|98281 +577|36|F|student|77845 +578|31|M|administrator|M7A1A +579|32|M|educator|48103 +580|16|M|student|17961 +581|37|M|other|94131 +582|17|M|student|93003 +583|44|M|engineer|29631 +584|25|M|student|27511 +585|69|M|librarian|98501 +586|20|M|student|79508 +587|26|M|other|14216 +588|18|F|student|93063 +589|21|M|lawyer|90034 +590|50|M|educator|82435 +591|57|F|librarian|92093 +592|18|M|student|97520 +593|31|F|educator|68767 +594|46|M|educator|M4J2K +595|25|M|programmer|31909 +596|20|M|artist|77073 +597|23|M|other|84116 +598|40|F|marketing|43085 +599|22|F|student|R3T5K +600|34|M|programmer|02320 +601|19|F|artist|99687 +602|47|F|other|34656 +603|21|M|programmer|47905 +604|39|M|educator|11787 +605|33|M|engineer|33716 +606|28|M|programmer|63044 +607|49|F|healthcare|02154 +608|22|M|other|10003 +609|13|F|student|55106 +610|22|M|student|21227 +611|46|M|librarian|77008 +612|36|M|educator|79070 +613|37|F|marketing|29678 +614|54|M|educator|80227 +615|38|M|educator|27705 +616|55|M|scientist|50613 +617|27|F|writer|11201 +618|15|F|student|44212 +619|17|M|student|44134 +620|18|F|writer|81648 +621|17|M|student|60402 +622|25|M|programmer|14850 +623|50|F|educator|60187 +624|19|M|student|30067 +625|27|M|programmer|20723 +626|23|M|scientist|19807 +627|24|M|engineer|08034 +628|13|M|none|94306 +629|46|F|other|44224 +630|26|F|healthcare|55408 +631|18|F|student|38866 +632|18|M|student|55454 +633|35|M|programmer|55414 +634|39|M|engineer|T8H1N +635|22|M|other|23237 +636|47|M|educator|48043 +637|30|M|other|74101 +638|45|M|engineer|01940 +639|42|F|librarian|12065 +640|20|M|student|61801 +641|24|M|student|60626 +642|18|F|student|95521 +643|39|M|scientist|55122 +644|51|M|retired|63645 +645|27|M|programmer|53211 +646|17|F|student|51250 +647|40|M|educator|45810 +648|43|M|engineer|91351 +649|20|M|student|39762 +650|42|M|engineer|83814 +651|65|M|retired|02903 +652|35|M|other|22911 +653|31|M|executive|55105 +654|27|F|student|78739 +655|50|F|healthcare|60657 +656|48|M|educator|10314 +657|26|F|none|78704 +658|33|M|programmer|92626 +659|31|M|educator|54248 +660|26|M|student|77380 +661|28|M|programmer|98121 +662|55|M|librarian|19102 +663|26|M|other|19341 +664|30|M|engineer|94115 +665|25|M|administrator|55412 +666|44|M|administrator|61820 +667|35|M|librarian|01970 +668|29|F|writer|10016 +669|37|M|other|20009 +670|30|M|technician|21114 +671|21|M|programmer|91919 +672|54|F|administrator|90095 +673|51|M|educator|22906 +674|13|F|student|55337 +675|34|M|other|28814 +676|30|M|programmer|32712 +677|20|M|other|99835 +678|50|M|educator|61462 +679|20|F|student|54302 +680|33|M|lawyer|90405 +681|44|F|marketing|97208 +682|23|M|programmer|55128 +683|42|M|librarian|23509 +684|28|M|student|55414 +685|32|F|librarian|55409 +686|32|M|educator|26506 +687|31|F|healthcare|27713 +688|37|F|administrator|60476 +689|25|M|other|45439 +690|35|M|salesman|63304 +691|34|M|educator|60089 +692|34|M|engineer|18053 +693|43|F|healthcare|85210 +694|60|M|programmer|06365 +695|26|M|writer|38115 +696|55|M|other|94920 +697|25|M|other|77042 +698|28|F|programmer|06906 +699|44|M|other|96754 +700|17|M|student|76309 +701|51|F|librarian|56321 +702|37|M|other|89104 +703|26|M|educator|49512 +704|51|F|librarian|91105 +705|21|F|student|54494 +706|23|M|student|55454 +707|56|F|librarian|19146 +708|26|F|homemaker|96349 +709|21|M|other|N4T1A +710|19|M|student|92020 +711|22|F|student|15203 +712|22|F|student|54901 +713|42|F|other|07204 +714|26|M|engineer|55343 +715|21|M|technician|91206 +716|36|F|administrator|44265 +717|24|M|technician|84105 +718|42|M|technician|64118 +719|37|F|other|V0R2H +720|49|F|administrator|16506 +721|24|F|entertainment|11238 +722|50|F|homemaker|17331 +723|26|M|executive|94403 +724|31|M|executive|40243 +725|21|M|student|91711 +726|25|F|administrator|80538 +727|25|M|student|78741 +728|58|M|executive|94306 +729|19|M|student|56567 +730|31|F|scientist|32114 +731|41|F|educator|70403 +732|28|F|other|98405 +733|44|F|other|60630 +734|25|F|other|63108 +735|29|F|healthcare|85719 +736|48|F|writer|94618 +737|30|M|programmer|98072 +738|35|M|technician|95403 +739|35|M|technician|73162 +740|25|F|educator|22206 +741|25|M|writer|63108 +742|35|M|student|29210 +743|31|M|programmer|92660 +744|35|M|marketing|47024 +745|42|M|writer|55113 +746|25|M|engineer|19047 +747|19|M|other|93612 +748|28|M|administrator|94720 +749|33|M|other|80919 +750|28|M|administrator|32303 +751|24|F|other|90034 +752|60|M|retired|21201 +753|56|M|salesman|91206 +754|59|F|librarian|62901 +755|44|F|educator|97007 +756|30|F|none|90247 +757|26|M|student|55104 +758|27|M|student|53706 +759|20|F|student|68503 +760|35|F|other|14211 +761|17|M|student|97302 +762|32|M|administrator|95050 +763|27|M|scientist|02113 +764|27|F|educator|62903 +765|31|M|student|33066 +766|42|M|other|10960 +767|70|M|engineer|00000 +768|29|M|administrator|12866 +769|39|M|executive|06927 +770|28|M|student|14216 +771|26|M|student|15232 +772|50|M|writer|27105 +773|20|M|student|55414 +774|30|M|student|80027 +775|46|M|executive|90036 +776|30|M|librarian|51157 +777|63|M|programmer|01810 +778|34|M|student|01960 +779|31|M|student|K7L5J +780|49|M|programmer|94560 +781|20|M|student|48825 +782|21|F|artist|33205 +783|30|M|marketing|77081 +784|47|M|administrator|91040 +785|32|M|engineer|23322 +786|36|F|engineer|01754 +787|18|F|student|98620 +788|51|M|administrator|05779 +789|29|M|other|55420 +790|27|M|technician|80913 +791|31|M|educator|20064 +792|40|M|programmer|12205 +793|22|M|student|85281 +794|32|M|educator|57197 +795|30|M|programmer|08610 +796|32|F|writer|33755 +797|44|F|other|62522 +798|40|F|writer|64131 +799|49|F|administrator|19716 +800|25|M|programmer|55337 +801|22|M|writer|92154 +802|35|M|administrator|34105 +803|70|M|administrator|78212 +804|39|M|educator|61820 +805|27|F|other|20009 +806|27|M|marketing|11217 +807|41|F|healthcare|93555 +808|45|M|salesman|90016 +809|50|F|marketing|30803 +810|55|F|other|80526 +811|40|F|educator|73013 +812|22|M|technician|76234 +813|14|F|student|02136 +814|30|M|other|12345 +815|32|M|other|28806 +816|34|M|other|20755 +817|19|M|student|60152 +818|28|M|librarian|27514 +819|59|M|administrator|40205 +820|22|M|student|37725 +821|37|M|engineer|77845 +822|29|F|librarian|53144 +823|27|M|artist|50322 +824|31|M|other|15017 +825|44|M|engineer|05452 +826|28|M|artist|77048 +827|23|F|engineer|80228 +828|28|M|librarian|85282 +829|48|M|writer|80209 +830|46|M|programmer|53066 +831|21|M|other|33765 +832|24|M|technician|77042 +833|34|M|writer|90019 +834|26|M|other|64153 +835|44|F|executive|11577 +836|44|M|artist|10018 +837|36|F|artist|55409 +838|23|M|student|01375 +839|38|F|entertainment|90814 +840|39|M|artist|55406 +841|45|M|doctor|47401 +842|40|M|writer|93055 +843|35|M|librarian|44212 +844|22|M|engineer|95662 +845|64|M|doctor|97405 +846|27|M|lawyer|47130 +847|29|M|student|55417 +848|46|M|engineer|02146 +849|15|F|student|25652 +850|34|M|technician|78390 +851|18|M|other|29646 +852|46|M|administrator|94086 +853|49|M|writer|40515 +854|29|F|student|55408 +855|53|M|librarian|04988 +856|43|F|marketing|97215 +857|35|F|administrator|V1G4L +858|63|M|educator|09645 +859|18|F|other|06492 +860|70|F|retired|48322 +861|38|F|student|14085 +862|25|M|executive|13820 +863|17|M|student|60089 +864|27|M|programmer|63021 +865|25|M|artist|11231 +866|45|M|other|60302 +867|24|M|scientist|92507 +868|21|M|programmer|55303 +869|30|M|student|10025 +870|22|M|student|65203 +871|31|M|executive|44648 +872|19|F|student|74078 +873|48|F|administrator|33763 +874|36|M|scientist|37076 +875|24|F|student|35802 +876|41|M|other|20902 +877|30|M|other|77504 +878|50|F|educator|98027 +879|33|F|administrator|55337 +880|13|M|student|83702 +881|39|M|marketing|43017 +882|35|M|engineer|40503 +883|49|M|librarian|50266 +884|44|M|engineer|55337 +885|30|F|other|95316 +886|20|M|student|61820 +887|14|F|student|27249 +888|41|M|scientist|17036 +889|24|M|technician|78704 +890|32|M|student|97301 +891|51|F|administrator|03062 +892|36|M|other|45243 +893|25|M|student|95823 +894|47|M|educator|74075 +895|31|F|librarian|32301 +896|28|M|writer|91505 +897|30|M|other|33484 +898|23|M|homemaker|61755 +899|32|M|other|55116 +900|60|M|retired|18505 +901|38|M|executive|L1V3W +902|45|F|artist|97203 +903|28|M|educator|20850 +904|17|F|student|61073 +905|27|M|other|30350 +906|45|M|librarian|70124 +907|25|F|other|80526 +908|44|F|librarian|68504 +909|50|F|educator|53171 +910|28|M|healthcare|29301 +911|37|F|writer|53210 +912|51|M|other|06512 +913|27|M|student|76201 +914|44|F|other|08105 +915|50|M|entertainment|60614 +916|27|M|engineer|N2L5N +917|22|F|student|20006 +918|40|M|scientist|70116 +919|25|M|other|14216 +920|30|F|artist|90008 +921|20|F|student|98801 +922|29|F|administrator|21114 +923|21|M|student|E2E3R +924|29|M|other|11753 +925|18|F|salesman|49036 +926|49|M|entertainment|01701 +927|23|M|programmer|55428 +928|21|M|student|55408 +929|44|M|scientist|53711 +930|28|F|scientist|07310 +931|60|M|educator|33556 +932|58|M|educator|06437 +933|28|M|student|48105 +934|61|M|engineer|22902 +935|42|M|doctor|66221 +936|24|M|other|32789 +937|48|M|educator|98072 +938|38|F|technician|55038 +939|26|F|student|33319 +940|32|M|administrator|02215 +941|20|M|student|97229 +942|48|F|librarian|78209 +943|22|M|student|77841 diff --git a/data/ufo.csv b/data/ufo.csv new file mode 100644 index 0000000..bb37007 --- /dev/null +++ b/data/ufo.csv @@ -0,0 +1,80544 @@ +City,Colors Reported,Shape Reported,State,Time +Ithaca,,TRIANGLE,NY,6/1/1930 22:00 +Willingboro,,OTHER,NJ,6/30/1930 20:00 +Holyoke,,OVAL,CO,2/15/1931 14:00 +Abilene,,DISK,KS,6/1/1931 13:00 +New York Worlds Fair,,LIGHT,NY,4/18/1933 19:00 +Valley City,,DISK,ND,9/15/1934 15:30 +Crater Lake,,CIRCLE,CA,6/15/1935 0:00 +Alma,,DISK,MI,7/15/1936 0:00 +Eklutna,,CIGAR,AK,10/15/1936 17:00 +Hubbard,,CYLINDER,OR,6/15/1937 0:00 +Fontana,,LIGHT,CA,8/15/1937 21:00 +Waterloo,,FIREBALL,AL,6/1/1939 20:00 +Belton,RED,SPHERE,SC,6/30/1939 20:00 +Keokuk,,OVAL,IA,7/7/1939 2:00 +Ludington,,DISK,MI,6/1/1941 13:00 +Forest Home,,CIRCLE,CA,7/2/1941 11:30 +Los Angeles,,,CA,2/25/1942 0:00 +Hapeville,,,GA,6/1/1942 22:30 +Oneida,,RECTANGLE,TN,7/15/1942 1:00 +Bering Sea,RED,OTHER,AK,4/30/1943 23:00 +Nebraska,,DISK,NE,6/1/1943 15:00 +,,,LA,8/15/1943 0:00 +,,LIGHT,LA,8/15/1943 0:00 +Owensboro,,RECTANGLE,KY,10/15/1943 11:00 +Wilderness,,DISK,WV,1/1/1944 10:00 +San Diego,,CIGAR,CA,1/1/1944 12:00 +Wilderness,,DISK,WV,1/1/1944 12:00 +Clovis,,DISK,NM,4/2/1944 11:00 +Los Alamos,,DISK,NM,6/1/1944 12:00 +Ft. Duschene,,DISK,UT,6/30/1944 10:00 +South Kingstown,,SPHERE,RI,7/1/1944 20:00 +North Tampa,,CYLINDER,FL,7/15/1944 13:00 +Ft. Lee,,CIGAR,VA,1/1/1945 12:00 +Salinas AFB,,DISK,CA,6/1/1945 12:00 +Jasper,,FIREBALL,FL,6/1/1945 13:30 +Winston-Salem,,DISK,NC,6/7/1945 7:00 +Portsmouth,RED,FORMATION,VA,7/10/1945 1:30 +Dallas,,SPHERE,TX,7/15/1945 14:00 +Huntington Beach,,DISK,CA,8/8/1945 12:00 +San Antonio,,OVAL,NM,8/16/1945 11:30 +Roswell,,SPHERE,NM,12/15/1945 2:00 +New York City,,DISK,NY,1/8/1946 2:00 +Merced,,SPHERE,CA,2/1/1946 17:00 +Alice,,DISK,TX,3/15/1946 15:30 +Blairsden,GREEN,SPHERE,CA,6/30/1946 19:00 +Index,,FIREBALL,WA,6/30/1946 21:00 +South Portland,,OVAL,ME,7/1/1946 13:30 +Oak Lawn,,FORMATION,IL,9/12/1946 0:00 +Dome,,FLASH,AZ,9/30/1946 20:30 +Conroe,,OTHER,TX,1/10/1947 20:00 +Syracuse,,DISK,NY,2/20/1947 22:15 +Miami,,OTHER,FL,4/15/1947 14:00 +San Deigo,,TRIANGLE,CA,4/15/1947 23:00 +Minden,,,LA,6/1/1947 0:00 +Cleveland,,LIGHT,OH,6/1/1947 2:30 +Espanola,,CIRCLE,NM,6/1/1947 17:00 +Oroville,,,CA,6/1/1947 18:00 +Oakmont,,,PA,6/13/1947 20:18 +Winona,,DISK,MN,6/15/1947 10:00 +Gackle,,OTHER,ND,6/15/1947 14:00 +Madison,,DISK,WI,6/15/1947 18:00 +Hayward,,CIRCLE,CA,6/20/1947 12:00 +Tacoma,,OTHER,WA,6/30/1947 0:00 +Baltimore,,OVAL,MD,6/30/1947 18:00 +Cashmere,,FORMATION,WA,7/1/1947 20:00 +Maywood,,DISK,CA,7/1/1947 20:00 +Wexford,BLUE,,PA,7/1/1947 20:00 +Sioux Falls,,,SD,7/4/1947 0:00 +Seattle,,OVAL,WA,7/4/1947 17:30 +Dell Rapids,,,SD,7/5/1947 0:00 +Philadelphia,,DISK,PA,7/5/1947 11:30 +Roswell,,,NM,7/7/1947 0:00 +Johnston City,,DISK,IL,7/9/1947 20:00 +Roswell,,,NM,7/11/1947 0:00 +Syracuse,,CIGAR,NY,7/14/1947 10:30 +Richmond,,CIRCLE,CA,7/14/1947 11:00 +Las Vegas,,DISK,NV,7/15/1947 10:00 +Keeneyville,,FORMATION,IL,7/15/1947 12:00 +Clintwood,,CYLINDER,VA,7/15/1947 15:00 +Hazelton,,DISK,ID,7/15/1947 15:00 +Minneapolis,,DISK,MN,7/15/1947 17:00 +Morehouse,,CYLINDER,MO,7/15/1947 21:00 +San Jose,BLUE,CHEVRON,CA,7/15/1947 21:00 +Raton,,OVAL,NM,7/20/1947 22:00 +Modesto,BLUE,DISK,CA,8/8/1947 22:00 +Green Valley,,,WI,8/10/1947 20:00 +Henrietta,,LIGHT,OK,8/12/1947 1:00 +Saranac Lake,,DISK,NY,8/12/1947 22:00 +Proctor,,CIGAR,OK,8/15/1947 20:15 +Whitmore Lake,,CIGAR,MI,12/24/1947 21:00 +Kelseyville,,DISK,CA,4/30/1948 12:00 +Scipio,RED,SPHERE,IN,5/10/1948 19:00 +Borger,,DISK,TX,6/15/1948 16:00 +Baltimore,,OVAL,MD,6/30/1948 0:00 +Jim Ridge,,,WV,6/30/1948 8:00 +Ojai,,LIGHT,CA,7/15/1948 22:00 +New York City,,CIRCLE,NY,8/1/1948 2:00 +Conshohocken,,OVAL,PA,8/15/1948 12:00 +Sharpsburg,,CIRCLE,MD,12/12/1948 23:30 +Seattle,,DISK,WA,4/10/1949 15:00 +Oak Ridge,,OTHER,WV,5/1/1949 14:00 +Grays,,LIGHT,SC,5/15/1949 6:30 +Los Angeles,,CIRCLE,CT,6/4/1949 10:00 +Anchorage,,DISK,AK,6/10/1949 21:00 +Knoxville,,OTHER,TN,6/30/1949 15:00 +Salem,,CIGAR,OR,6/30/1949 21:00 +Fairbanks,,DISK,AK,7/1/1949 11:00 +Marion,,FORMATION,AL,7/1/1949 16:00 +Booneville,,,MS,7/15/1949 20:30 +Excelsior,,CIRCLE,MN,8/15/1949 0:00 +Mill Valley,,LIGHT,CA,8/15/1949 21:00 +Tarrant City,ORANGE,CIRCLE,AL,8/15/1949 22:00 +Steilacoom,,DISK,WA,8/25/1949 19:00 +Mt Gilead,,CIRCLE,OH,9/15/1949 21:00 +Post,,DISK,TX,9/15/1949 21:00 +San Marcos,,CYLINDER,TX,10/10/1949 20:30 +Lackland AFB,,LIGHT,TX,10/10/1949 21:00 +Baltimore,,CIGAR,MD,10/15/1949 20:00 +Mount Hope,,,WV,1/1/1950 22:00 +New York City,,OVAL,NY,1/2/1950 0:00 +Roswell,RED,,NM,3/22/1950 0:00 +Arkansas,,DISK,AR,4/15/1950 8:00 +Waynesborough,,DISK,VA,4/15/1950 14:00 +Fort Lewis,,TRIANGLE,WA,5/12/1950 14:00 +Crowder,,,MS,6/1/1950 0:00 +Philadelphia,,DISK,MS,6/1/1950 16:00 +Pittsburgh,,OVAL,PA,6/1/1950 20:00 +Kensington,,OVAL,MD,6/7/1950 20:00 +Kansas City,,DISK,MO,6/8/1950 10:00 +Napa,GREEN,DISK,CA,6/10/1950 0:00 +Grosse Pointe Park,,OVAL,MI,6/15/1950 13:00 +Bonifay,,DISK,FL,6/15/1950 20:00 +Fort Worth,,DISK,TX,6/15/1950 20:00 +Booneville,,DISK,MS,6/20/1950 10:00 +Galveston,,SPHERE,TX,6/20/1950 17:00 +Lac Du Flambeau,,DISK,WI,6/30/1950 16:00 +Florence,,DISK,CO,6/30/1950 17:30 +Florence,,LIGHT,CO,6/30/1950 17:30 +Coeur d'Alene,ORANGE,CIGAR,ID,7/2/1950 13:00 +Bay St. Louis,,LIGHT,MS,7/2/1950 21:00 +East Palestine,,LIGHT,OH,7/10/1950 20:30 +Newark,,SPHERE,NJ,7/15/1950 21:30 +Los Padres National Forest,,FORMATION,CA,7/15/1950 23:00 +Smithport,,DISK,PA,7/20/1950 21:30 +Louisville,,OTHER,KY,8/1/1950 4:00 +Stanfield,,DISK,OR,8/15/1950 14:00 +Pikeville,,DISK,KY,10/1/1950 11:00 +Sandy Hook,,TRIANGLE,NJ,10/15/1950 15:00 +Half Moon Bay,,OTHER,CA,12/12/1950 22:00 +Palm Springs,,CIGAR,CA,1/20/1951 4:30 +Thompsonville,,DISK,CT,2/3/1951 22:00 +Los Angeles,,DISK,CA,2/15/1951 11:00 +Irving,BLUE,DISK,KS,4/15/1951 0:30 +Fort Sill,,OVAL,OK,5/15/1951 3:00 +Oklahoma,,CIGAR,OK,6/1/1951 19:00 +Jasper,,OVAL,NC,6/3/1951 13:00 +Mount Pinos,,DISK,CA,6/6/1951 2:00 +Greenville,GREEN,DISK,MS,6/15/1951 20:30 +Jackson Heights,,DISK,NY,6/30/1951 7:00 +Birmingham,,,AL,6/30/1951 19:00 +Otis Orchards,,DISK,WA,7/1/1951 3:00 +Atlanta,,,GA,7/1/1951 14:00 +Calaveras County,,DISK,CA,7/3/1951 3:00 +Green River,GREEN,SPHERE,WY,7/3/1951 12:00 +Provo,BLUE,DISK,UT,7/10/1951 23:30 +Spokane Valley,,SPHERE,WA,7/15/1951 14:00 +Sunland,,CIRCLE,CA,8/10/1951 1:00 +Altoona,,DISK,PA,8/15/1951 13:00 +Jacksonville,,DISK,FL,10/15/1951 20:00 +Holloman AFB,,CIRCLE,NM,11/15/1951 6:00 +Salt Lake City,,,UT,1/1/1952 0:00 +Binghamton,,DISK,NY,2/10/1952 21:00 +Nellis AFB,,DISK,NV,2/17/1952 18:00 +Chicago,,DISK,IL,4/15/1952 13:00 +Greenville,ORANGE,TRIANGLE,TX,4/15/1952 16:00 +Pittsburgh,,CYLINDER,PA,5/15/1952 10:15 +Allyn,,DISK,WA,5/15/1952 20:00 +Dousman,,,WI,6/1/1952 11:00 +Norfolk,RED,FIREBALL,VA,6/1/1952 22:00 +Evergreen,,DISK,CO,6/6/1952 13:00 +Chicago,,CIRCLE,IL,6/10/1952 12:00 +Fortville,,DISK,IN,6/13/1952 7:30 +Luke Airforce Base,,EGG,AZ,6/15/1952 0:00 +Piedra Blanka,,CIGAR,CA,6/15/1952 0:00 +Jacksonville,,TRIANGLE,FL,6/15/1952 21:00 +Maywood,,CIRCLE,CA,6/15/1952 23:00 +Lansing,,OTHER,MI,6/21/1952 22:00 +Chester,,OVAL,PA,6/22/1952 17:45 +Cheyenne,,DISK,WY,6/30/1952 0:00 +Pecos,,DISK,TX,6/30/1952 3:00 +Barksdale AFB,,,LA,6/30/1952 6:00 +Miami,,LIGHT,FL,6/30/1952 9:00 +New York City,,DISK,NY,6/30/1952 13:00 +Auburn,,OVAL,WA,6/30/1952 18:30 +Miami,,DISK,FL,6/30/1952 21:00 +Miami,,DISK,FL,6/30/1952 21:00 +Miami,,LIGHT,FL,6/30/1952 21:00 +Sebeka,,OTHER,MN,7/1/1952 15:00 +Detroit,,SPHERE,MI,7/1/1952 22:00 +Tacoma,,SPHERE,WA,7/5/1952 16:00 +Evergreen,,CIRCLE,CO,7/7/1952 10:00 +Arlington,,DISK,TX,7/7/1952 13:00 +Arlington,GREEN,OVAL,VA,7/13/1952 21:00 +Wilmington,,DISK,CA,7/15/1952 12:00 +,,DISK,CA,7/15/1952 12:30 +Litchfield,,OTHER,PA,7/15/1952 13:00 +South Gate,,CIRCLE,CA,7/15/1952 14:00 +North Bend,,OTHER,WA,7/15/1952 18:30 +New York City,,OTHER,NY,7/15/1952 19:00 +Okolona,,OVAL,MS,7/22/1952 9:30 +Tacoma,,SPHERE,WA,7/25/1952 16:00 +Manville,,SPHERE,RI,7/30/1952 15:00 +Tampa,,OVAL,FL,8/1/1952 21:30 +Smithson's Valley,,CIGAR,TX,8/15/1952 17:00 +Prairie Grove,,DISK,AR,8/15/1952 17:30 +Hamilton,,LIGHT,OH,8/15/1952 22:15 +Philadelphia,,CIRCLE,PA,9/9/1952 20:00 +Norridgewock,,DISK,ME,9/15/1952 14:00 +Kansas City,,DISK,MO,10/1/1952 12:00 +Richland,,CIRCLE,WA,10/15/1952 21:00 +Chicago,,OTHER,IL,12/6/1952 19:00 +Camp McCoy,,CYLINDER,WI,12/30/1952 12:00 +Nebraska,,,NE,1/1/1953 0:00 +Oklahoma,,CIGAR,TX,1/1/1953 14:00 +Palm Springs,,,CA,3/15/1953 0:00 +Haverhill,,CHEVRON,MA,4/1/1953 15:00 +Cambridge,RED,SPHERE,MA,4/1/1953 18:00 +Chariton,,OTHER,IA,4/10/1953 13:00 +Los Angeles,,FIREBALL,CA,4/15/1953 12:00 +Midwest City,YELLOW,FIREBALL,OK,4/15/1953 16:00 +Jamison,,CIGAR,PA,4/30/1953 16:00 +Kingman,,,AZ,5/20/1953 8:00 +Fresno,,,CA,6/1/1953 21:00 +Roswell,,,NM,6/15/1953 0:00 +Wenatchee,,DISK,WA,6/15/1953 12:00 +Fort Worth,,SPHERE,TX,6/15/1953 13:00 +North Bend,,CIRCLE,WA,6/15/1953 18:00 +Galveston,,CIGAR,TX,6/17/1953 7:30 +Cleveland,RED,FIREBALL,OH,6/30/1953 0:00 +Kelso,,OVAL,WA,6/30/1953 15:00 +Colorado Springs,,DISK,CO,7/1/1953 5:30 +,BLUE,DISK,MT,7/4/1953 14:00 +Ogallala,,OTHER,NE,7/4/1953 21:00 +Nashville,,CYLINDER,TN,7/15/1953 13:00 +Dublin,,CONE,IN,7/17/1953 22:00 +Berkeley,,FIREBALL,MO,8/1/1953 12:00 +"San Bernadino Mtns, Church Camp",,DISK,CA,8/1/1953 14:00 +Vallejo,,LIGHT,CA,8/7/1953 21:00 +Louisville,,CIRCLE,KY,8/15/1953 11:00 +Artesia,ORANGE,OTHER,NM,8/15/1953 19:00 +Bowleys Quarters,,SPHERE,MD,8/15/1953 21:00 +Homer,,,PA,9/15/1953 14:00 +Mauriceville,,DISK,TX,10/15/1953 14:00 +New Orleans,,OVAL,LA,10/31/1953 19:00 +Cicero,,OTHER,IL,11/13/1953 20:00 +Keansburg,,CIRCLE,NJ,11/15/1953 3:00 +Pendleton,GREEN,DISK,IN,11/21/1953 22:30 +Lackland Air Force Base,,DISK,TX,11/25/1953 4:25 +Brunswick,,,ME,1/1/1954 0:00 +Lakeland,,DISK,FL,1/1/1954 1:00 +Souix City,,CIRCLE,IA,1/1/1954 22:00 +Santa Monica,,LIGHT,CT,1/15/1954 20:00 +Fairbanks,,,AK,2/1/1954 2:00 +Burney,,DISK,CA,2/15/1954 19:30 +Stanford Campus,,DISK,CA,4/1/1954 22:00 +Corvallis,,DIAMOND,OR,5/15/1954 12:00 +Quincy,,DISK,IL,5/26/1954 4:30 +Houston,,DISK,TX,6/1/1954 0:00 +Ovid,,DISK,NY,6/1/1954 6:00 +Springfield,,CYLINDER,IL,6/1/1954 8:00 +El Cerrito,,LIGHT,CA,6/1/1954 19:00 +Toledo,,DISK,OH,6/1/1954 19:00 +Norfolk,,DISK,VA,6/1/1954 20:00 +Philadelphia,,DISK,PA,6/1/1954 20:00 +Fish Canyon,,LIGHT,CA,6/1/1954 23:00 +Atlanta,,DISK,GA,6/6/1954 10:00 +Estes Park,,CIGAR,CO,6/10/1954 20:00 +Glenburn,,,ME,6/11/1954 2:00 +Palm Beach,,LIGHT,CA,6/15/1954 11:00 +Claymont,,DISK,DE,6/15/1954 11:45 +Ellington AFB,,DISK,TX,6/15/1954 16:30 +Lorton,,OTHER,VA,6/23/1954 2:00 +Langley Air Force Base,,CIRCLE,VA,6/23/1954 23:00 +Thrifty,,CIRCLE,TX,6/25/1954 3:30 +Marion,,CIRCLE,VA,6/30/1954 0:00 +Methuen,,,MA,6/30/1954 0:00 +Hawthorne,,LIGHT,CA,6/30/1954 12:00 +Pasadena,,CIRCLE,CA,6/30/1954 15:00 +St. Louis Airport,RED,OVAL,MO,7/1/1954 21:00 +Los Angeles,RED,CIRCLE,CA,7/1/1954 22:00 +Walnut Creek,,,CA,7/7/1954 20:00 +West Columbia,,FORMATION,SC,7/7/1954 22:00 +Morroco,,VARIOUS,IN,7/12/1954 17:30 +Philadelphia,,DISK,PA,7/15/1954 11:00 +Greenfield,,CIGAR,IN,7/15/1954 14:00 +Kansas City,,CHEVRON,KS,7/15/1954 21:00 +Oakdale,,DISK,NY,7/15/1954 21:00 +Bridge Hampton,,LIGHT,NY,7/15/1954 22:00 +Farmingdale,,OVAL,NY,8/1/1954 12:00 +Dyer,,TRIANGLE,IN,8/1/1954 17:00 +Canton,,DISK,PA,8/1/1954 21:00 +North Hollywood,,LIGHT,CA,8/1/1954 22:00 +Puyallup,,OVAL,WA,8/15/1954 21:00 +Geneva,,DISK,NY,9/1/1954 13:00 +Beaumont,RED,DISK,TX,9/9/1954 12:30 +Palmer Township,,OTHER,PA,9/15/1954 9:30 +Flatwoods,,CIRCLE,WV,10/1/1954 19:00 +Blanco,,OTHER,TX,10/15/1954 16:30 +Manistee,,CIRCLE,MI,10/15/1954 21:30 +Denver,,FIREBALL,CO,11/1/1954 18:30 +Thelma,,DISK,TX,11/14/1954 1:00 +Red Bank,ORANGE,CIRCLE,NJ,12/15/1954 23:10 +Yucaipa,,OVAL,CA,12/16/1954 16:50 +New York City,,LIGHT,NY,2/15/1955 19:00 +Holbrook,YELLOW,EGG,MA,5/1/1955 15:00 +Warrington,,FIREBALL,FL,5/15/1955 3:00 +Homaland,,CIRCLE,CA,6/1/1955 0:00 +Bagley,,CIRCLE,MN,6/1/1955 2:00 +Cincinnati,,DISK,OH,6/1/1955 15:29 +Martinez,,CIRCLE,CA,6/1/1955 17:00 +Clinton,,EGG,TN,6/1/1955 20:30 +Pensacola,,LIGHT,FL,6/6/1955 1:00 +South St. Paul,,DISK,MN,6/15/1955 0:00 +Terre Haute,ORANGE,CIRCLE,IN,6/15/1955 0:00 +Missouri,,LIGHT,MO,6/15/1955 4:30 +Youngstown,,,PA,6/15/1955 8:00 +Daytona Beach,,FIREBALL,FL,6/15/1955 21:00 +Rantoul,,LIGHT,IL,6/17/1955 7:00 +Beach Haven Park,,DISK,NJ,6/23/1955 7:00 +Quartz Hill,,DISK,CA,6/30/1955 0:00 +Lubbock,,CIGAR,TX,6/30/1955 13:00 +Dumas,,LIGHT,TX,6/30/1955 21:00 +Morehead City,,DISK,NC,6/30/1955 21:00 +Carnation,,DISK,WA,7/1/1955 14:00 +Dierks,,CIGAR,AR,7/1/1955 22:00 +Woodland Park,,OVAL,CO,7/15/1955 14:00 +Ringold,,LIGHT,LA,7/15/1955 22:00 +Newtown Square,,CIRCLE,PA,8/6/1955 19:00 +Independence,,FIREBALL,MO,8/8/1955 1:00 +Madisonville,,LIGHT,KY,8/14/1955 1:00 +Eagle Pass,,CIGAR,TX,8/15/1955 0:01 +Covina,,DISK,CA,8/17/1955 21:00 +Bullhead,,DISK,AZ,9/10/1955 23:00 +Mono Lake,,CIRCLE,CA,10/1/1955 22:00 +West Covina,GREEN,,CA,10/9/1955 18:00 +Rhinebeck,,LIGHT,NY,10/15/1955 20:00 +Weirton,,DISK,WV,1/1/1956 5:30 +Petaluma,,OVAL,CA,3/1/1956 13:00 +Bowie,,DISK,MD,3/20/1956 20:00 +Hampton,,SPHERE,MN,3/22/1956 17:30 +Canton,,CIGAR,OH,5/1/1956 12:00 +Pine castle AFB,,LIGHT,FL,5/15/1956 20:00 +Ada,,CIRCLE,OK,5/17/1956 10:22 +Belton,,OTHER,MO,6/1/1956 19:00 +Memphis,ORANGE,CYLINDER,TN,6/1/1956 20:00 +Elmore,,SPHERE,AL,6/5/1956 0:00 +Salt Lake City,,CIRCLE,UT,6/5/1956 0:00 +Upper Glade,,EGG,WV,6/6/1956 12:00 +Akron,,OTHER,OH,6/6/1956 22:00 +Edroy,,,TX,6/15/1956 1:00 +San Francisco,,OTHER,CA,6/15/1956 12:15 +Palo Alto,,FIREBALL,CA,6/15/1956 18:00 +Richfield Springs,,CIGAR,NY,6/15/1956 18:00 +Vista,ORANGE,CIGAR,CA,6/15/1956 19:15 +Farragut,,CIGAR,TN,6/15/1956 20:00 +Tulsa,,FLASH,OK,6/15/1956 20:00 +Salem,,DISK,NJ,6/15/1956 20:32 +New York City,,LIGHT,NY,6/15/1956 21:00 +Cincinnati,,DISK,OH,6/16/1956 13:00 +Madera,,SPHERE,CA,6/24/1956 14:00 +Willow Grove,,LIGHT,PA,6/30/1956 1:00 +Cape Girardeau,,DIAMOND,MO,6/30/1956 13:00 +New Brunswick,,DISK,NJ,6/30/1956 16:00 +Houston,,TRIANGLE,TX,6/30/1956 18:30 +Beatrice,,OTHER,NE,7/1/1956 16:00 +Wichita,,,KS,7/12/1956 19:00 +Sacramento,,DISK,CA,7/14/1956 19:30 +East Hampton,,DISK,CT,7/15/1956 0:00 +Yellowstone Park,,DISK,WY,7/15/1956 0:00 +Sugarcreek,,DISK,OH,7/15/1956 5:00 +Harvard,,,MA,8/1/1956 20:00 +Bradford,YELLOW,SPHERE,AL,8/1/1956 23:30 +Norfolk,,CIGAR,VA,9/9/1956 5:55 +Middle River,BLUE,CIRCLE,MD,9/15/1956 20:00 +Hope,,CIRCLE,AR,9/20/1956 16:00 +Greenwich,,LIGHT,CT,9/21/1956 0:00 +Newport,,RECTANGLE,NH,10/1/1956 19:00 +Edna,,CIRCLE,TX,10/10/1956 21:00 +Mt. Vernon,,DISK,IN,10/15/1956 21:30 +Aberdeen,ORANGE,CIRCLE,SD,11/15/1956 18:30 +Painsville,,RECTANGLE,OH,11/27/1956 22:00 +Columbus,,FORMATION,OH,12/1/1956 23:00 +Dallas,,,TX,1/1/1957 21:00 +Jena,,SPHERE,LA,3/5/1957 19:30 +Fort Devans,,OVAL,MA,3/7/1957 4:00 +Los Angeles,,FORMATION,CA,3/15/1957 13:00 +Los Angeles,,DISK,CA,3/15/1957 15:00 +Canton,,CIGAR,OH,5/1/1957 12:00 +Rhinebeck,,DIAMOND,NY,5/25/1957 13:00 +Union Bower are irving,,FORMATION,TX,6/1/1957 0:00 +El Paso,,DISK,TX,6/1/1957 10:00 +E. Los Angeles,,LIGHT,CA,6/1/1957 12:00 +Glens Falls,,DISK,NY,6/1/1957 20:00 +Irving,,LIGHT,TX,6/1/1957 22:00 +Hicksville,,CIRCLE,NY,6/6/1957 22:00 +Green Lake,,OVAL,MI,6/12/1957 19:00 +Livermore Falls,,DIAMOND,ME,6/14/1957 10:00 +Great Falls,,,MT,6/15/1957 0:00 +Hartford City,,DISK,IN,6/15/1957 13:00 +Walled Lake,,CYLINDER,MI,6/15/1957 23:30 +San Leandro,,LIGHT,CA,6/19/1957 21:00 +Lubbock,,TRIANGLE,TX,6/21/1957 17:00 +Norwalk,,DISK,CA,6/21/1957 19:30 +Arctic,,CIGAR,AK,6/30/1957 0:00 +Dallas,,OTHER,TX,6/30/1957 0:00 +Birmingham,,,MI,6/30/1957 3:30 +New York City,,TEARDROP,NY,6/30/1957 12:00 +Burlington,,CIRCLE,IA,6/30/1957 13:00 +Russellville,ORANGE,SPHERE,AR,6/30/1957 18:00 +Barker,,DISK,NY,6/30/1957 20:00 +Albany,,CIRCLE,CA,6/30/1957 21:00 +Mullens,,OVAL,WV,7/1/1957 13:00 +Talcott,,SPHERE,WV,7/1/1957 13:00 +Del Rio,,CIGAR,TX,7/1/1957 20:00 +Phillipsburg,,CIGAR,NJ,7/10/1957 20:00 +Baltimore,,OTHER,MD,7/10/1957 22:00 +Chesapeake,,DISK,OH,7/13/1957 9:00 +Temple City,,LIGHT,CA,7/15/1957 12:00 +Houston,,DIAMOND,TX,7/15/1957 13:00 +Williamsport,,CIGAR,PA,7/15/1957 14:00 +Long Beach,,DISK,CA,7/15/1957 15:00 +Denver,,LIGHT,CO,7/15/1957 22:00 +Kresgeville,,,PA,7/15/1957 22:00 +Salt Lake City,,DISK,UT,7/15/1957 22:00 +Kansas City,RED,LIGHT,MO,7/15/1957 23:30 +Arco,,DISK,ID,8/1/1957 12:00 +Vandalia,,DISK,OH,8/3/1957 20:00 +Bainbridge,,FIREBALL,MD,8/4/1957 2:00 +Indianapolis,,LIGHT,IN,8/7/1957 1:00 +San Diego,,DISK,CA,8/9/1957 0:30 +Ticonderoga,,DISK,NY,8/14/1957 16:00 +California,,FIREBALL,CA,8/14/1957 21:00 +Longview,,TRIANGLE,WA,8/15/1957 1:00 +Ludlow,,CIGAR,MA,8/15/1957 1:00 +Exeter,,DISK,NH,8/15/1957 21:00 +Auburn,,,MA,8/15/1957 21:30 +Smith's Ferry,,DISK,ID,8/16/1957 21:30 +Huntington,,TRIANGLE,IN,8/17/1957 23:00 +Graham,,SPHERE,TX,9/1/1957 16:00 +Brecksville,,CIRCLE,OH,9/1/1957 23:00 +Los Gatos,,DISK,CA,9/5/1957 17:30 +St. Paul,,DISK,MN,9/10/1957 19:15 +El Paso,,DISK,TX,9/15/1957 4:00 +Lake Jackson,,FIREBALL,TX,9/15/1957 21:30 +Tacoma,,DISK,WA,9/15/1957 23:00 +Hopkinsville,,CIGAR,KY,9/20/1957 0:00 +Nelchina,,,AK,10/1/1957 16:00 +Martelle,,CIGAR,IA,10/1/1957 20:30 +Paterson,,DISK,NJ,10/1/1957 21:00 +Northeast Cape AFS,,,AK,10/1/1957 22:00 +St. Paul,,LIGHT,MN,10/5/1957 19:00 +England,,DISK,AR,10/15/1957 1:45 +New York City,,,NY,10/15/1957 2:00 +Houston,,LIGHT,TX,10/15/1957 20:30 +Commerce City,,FIREBALL,CO,10/15/1957 22:00 +Teaneck,,CYLINDER,NJ,11/10/1957 17:00 +Corpus Christi,,LIGHT,TX,11/10/1957 19:00 +St Lawrence Island,,OTHER,AK,11/10/1957 20:00 +Madison,,CIGAR,WI,12/28/1957 0:00 +Madison,,CIGAR,WI,12/28/1957 0:00 +Pep,,FIREBALL,TX,1/1/1958 22:00 +Howell,,CIGAR,MI,2/15/1958 2:30 +Winooski,,OVAL,VT,4/17/1958 21:30 +Winooski,,OVAL,VT,4/17/1958 21:30 +Palmer Park,,SPHERE,MD,5/5/1958 20:00 +North Hollywood,,CIRCLE,CA,5/7/1958 10:00 +Cincinnati,,DIAMOND,OH,5/16/1958 0:00 +North Hollywood,,SPHERE,CA,5/20/1958 0:00 +Middlesex,,CIRCLE,NC,6/1/1958 2:00 +San Francisco,,OVAL,CA,6/1/1958 19:00 +New York City,,OVAL,NY,6/1/1958 21:00 +Timpson,,LIGHT,TX,6/1/1958 22:00 +Grand Island,,CIRCLE,NE,6/1/1958 22:30 +Cincinnati,,DIAMOND,OH,6/6/1958 9:30 +Baldwin Park,,CIGAR,CA,6/10/1958 12:00 +Florala ?,,DISK,AL,6/15/1958 0:00 +Mountain View,,OTHER,MO,6/15/1958 0:00 +Coffeyville,,CIGAR,KS,6/15/1958 15:00 +Yonkers,,LIGHT,NY,6/15/1958 15:00 +Menlo Park,,LIGHT,CA,6/15/1958 19:15 +Houston,,DISK,TX,6/15/1958 20:00 +Oklahoma,,LIGHT,OK,6/15/1958 22:00 +Pawnee,,,OK,6/15/1958 23:00 +Pawnee,,LIGHT,OK,6/15/1958 23:00 +Silverdale,,CYLINDER,WA,6/30/1958 12:00 +Conyers,,TEARDROP,GA,6/30/1958 13:00 +Camden,,DISK,ME,6/30/1958 16:00 +Fort Worth,,DISK,TX,6/30/1958 20:00 +Durham,,LIGHT,KS,6/30/1958 21:30 +Thibodaux,,FIREBALL,LA,6/30/1958 23:00 +Osmond,,,NE,7/1/1958 4:48 +Muncie,,,IN,7/1/1958 21:00 +Cheektowaga,,TEARDROP,NY,7/10/1958 9:00 +Woodland Hills,,LIGHT,FL,7/10/1958 17:00 +no data,,DISK,UT,7/11/1958 23:00 +Novato,,DISK,CA,7/15/1958 17:30 +Rock Springs,,DISK,WY,7/20/1958 21:30 +Randallstown,,TRIANGLE,MD,7/30/1958 22:00 +Derby,,DISK,CT,8/1/1958 19:00 +Scarborough,,DISK,ME,8/8/1958 15:00 +Bellevue,,LIGHT,WA,8/10/1958 21:30 +Monroe,,OVAL,GA,8/15/1958 14:00 +Fargo,,DISK,ND,9/1/1958 20:00 +Perry,RED,TRIANGLE,IA,9/1/1958 21:00 +Arthur,,,ND,9/7/1958 19:00 +Ashland,,CIRCLE,KY,9/14/1958 19:30 +Davis Jct.,,FIREBALL,IL,9/20/1958 22:20 +Phelps County,,DISK,NE,9/25/1958 19:00 +St. Paul,,OTHER,MN,10/20/1958 21:00 +Terrebonne,,,OR,10/25/1958 20:00 +Riverside,,LIGHT,IL,10/30/1958 1:00 +Greenville,,DISK,RI,11/15/1958 22:30 +Milwaukee,,DISK,WI,11/25/1958 23:00 +South San Francisco,,DISK,CA,1/10/1959 18:30 +New York City,,,NY,3/1/1959 23:00 +Miami,,SPHERE,FL,4/1/1959 1:00 +Mendham,,DISK,NJ,4/15/1959 21:00 +Baden,,CYLINDER,PA,4/26/1959 19:00 +Columbus,,LIGHT,OH,5/1/1959 18:30 +El Sobrante,YELLOW,CIRCLE,CA,5/5/1959 9:00 +Evanston,,,IL,5/15/1959 4:00 +Cincinnati,,DISK,OH,5/30/1959 17:00 +Wabash River,,CIRCLE,IN,6/1/1959 8:00 +Nashville,,,TX,6/1/1959 12:00 +Orange,,CYLINDER,CT,6/1/1959 12:00 +Sidney,,LIGHT,OH,6/1/1959 18:30 +Nelson,,CIGAR,NE,6/1/1959 22:00 +Arvada,,CIRCLE,CO,6/5/1959 13:00 +Monroe,,,MI,6/10/1959 13:00 +Missoula,,,MT,6/15/1959 1:00 +Minneapolis,,OTHER,MN,6/15/1959 8:30 +Campbell,,DISK,CA,6/15/1959 10:00 +Buffalo,,LIGHT,WV,6/15/1959 23:00 +Minneapolis,,FORMATION,MN,6/23/1959 22:00 +Globe,,RECTANGLE,AZ,6/28/1959 13:00 +Campbellsport,,CIRCLE,WI,6/30/1959 14:00 +New York City,,OVAL,NY,6/30/1959 20:00 +Phoenix,,DISK,AZ,6/30/1959 21:00 +Strathmore,,DISK,CA,7/1/1959 1:00 +Castle Rock,,CIGAR,WA,7/1/1959 20:00 +Gardner Lake,,OVAL,ME,7/4/1959 20:00 +Long Beach,,LIGHT,CA,7/7/1959 23:00 +Nort Sutton,,,NH,7/15/1959 12:00 +New Albany,,CIGAR,IN,7/15/1959 23:00 +Worcester,,OTHER,MA,7/16/1959 18:00 +Salem,,DISK,OH,7/19/1959 1:00 +Fort Lauderdale,,LIGHT,FL,7/20/1959 21:30 +Allendale,,LIGHT,KY,7/22/1959 14:30 +Golden,,DISK,TX,8/1/1959 18:00 +Reseda,,DISK,CA,8/10/1959 1:30 +Troy,,,NY,8/13/1959 21:00 +Jewett,,LIGHT,NY,8/13/1959 22:30 +Roswell,,,NM,8/15/1959 15:00 +Mohave,,LIGHT,CA,8/15/1959 21:00 +Lake Bonita,,FIREBALL,NM,8/20/1959 3:00 +Fallon,,OVAL,NV,9/15/1959 0:00 +Goldfield,,LIGHT,NV,9/15/1959 1:00 +Dayton,,DISK,OH,9/15/1959 11:30 +New York City,,OTHER,NY,10/1/1959 16:00 +Jacksonville,,,IL,10/1/1959 19:00 +Duluth,,,WI,10/1/1959 20:45 +Duluth,,,WI,10/5/1959 18:30 +Rock Hill,,TRIANGLE,SC,10/5/1959 19:00 +Marysville,,OTHER,WA,10/15/1959 0:00 +Four States,RED,SPHERE,WV,10/16/1959 22:30 +Starke,,SPHERE,FL,11/11/1959 20:00 +Lafayette,,CIRCLE,IN,11/15/1959 1:30 +Los Angeles,,DISK,CA,12/20/1959 18:30 +Tehachapi,,FIREBALL,CA,12/30/1959 18:35 +Del Mar,,,CA,12/30/1959 23:00 +Bristol,,DISK,VA,1/15/1960 22:00 +St. Paul,,CIGAR,MN,2/1/1960 22:15 +Hartwell,,CIGAR,GA,2/1/1960 23:00 +Winston-Salem,,CIGAR,NC,2/18/1960 21:00 +Houston,,TRIANGLE,TX,3/12/1960 23:00 +Houston,,OTHER,TX,4/1/1960 21:00 +Tucson,,LIGHT,AZ,5/1/1960 20:00 +Schenectady,,,NY,5/15/1960 0:00 +Terre Haute,,OTHER,IN,5/15/1960 18:00 +Great Bend,,OTHER,KS,6/1/1960 0:00 +Salt Lake City,,DISK,UT,6/1/1960 0:00 +Seattle,GREEN,OVAL,WA,6/1/1960 0:00 +Yakima,,OTHER,WA,6/1/1960 2:30 +Palmdale,,DISK,CA,6/1/1960 12:00 +Sacramento,,CIGAR,CA,6/1/1960 12:00 +Chadd's Ford,,CYLINDER,PA,6/1/1960 13:00 +New Jersey,,CIGAR,NJ,6/1/1960 13:00 +Watervliet,,DISK,MI,6/1/1960 18:00 +Vassalboro,,OVAL,ME,6/1/1960 20:00 +Silverfdale,,VARIOUS,WA,6/1/1960 22:00 +Santa Ana,,DISK,CA,6/3/1960 18:00 +Cape Canaveral,,FIREBALL,FL,6/6/1960 12:00 +Philadelphia,,SPHERE,PA,6/10/1960 18:00 +Barstow-Baker,,DISK,CA,6/11/1960 2:00 +Great Falls,,FORMATION,MT,6/12/1960 14:30 +Quincy,,DISK,CA,6/13/1960 2:00 +Baltimore,,OTHER,MD,6/15/1960 21:00 +Kansas City,,DISK,KS,6/15/1960 21:45 +Chicago,,OVAL,IL,6/18/1960 23:00 +East Bernstadt,,DISK,KY,6/21/1960 14:00 +Albertson,,,NY,6/30/1960 0:00 +Litchfield,,OTHER,PA,6/30/1960 12:00 +Portland,,DISK,OR,6/30/1960 20:30 +,,DISK,NV,7/1/1960 12:00 +Stevens,,OTHER,MN,7/1/1960 12:00 +Portland,,,OR,7/1/1960 20:00 +New Berlin,,CIRCLE,WI,7/4/1960 21:30 +Springdale,,FORMATION,AR,7/7/1960 22:00 +La Verne,ORANGE YELLOW,CIRCLE,CA,7/15/1960 1:00 +Pacific Coast Highway,,,CA,7/15/1960 10:00 +Goldsboro,,SPHERE,NC,7/15/1960 16:00 +Amarillo,,DIAMOND,TX,7/15/1960 21:00 +Upland,,CIRCLE,CA,7/30/1960 21:00 +Allentown,,CYLINDER,PA,8/1/1960 12:00 +Taftville,,DISK,CT,8/1/1960 15:00 +Boston,,DISK,MA,8/1/1960 18:00 +Carteret,,CIGAR,NJ,8/1/1960 18:00 +Crystal,,CIRCLE,WI,8/1/1960 23:00 +Cherokee,,FIREBALL,NC,8/2/1960 23:00 +Belmont,,CIRCLE,NY,8/10/1960 1:00 +Watchung,RED,CIGAR,NJ,8/10/1960 18:00 +Cottonwood,,,WA,8/13/1960 19:00 +Saugus,,CIRCLE,MA,8/15/1960 15:00 +Framingham,,OVAL,MA,8/15/1960 16:00 +Long Beach,,OTHER,CA,8/17/1960 21:10 +Pittsburgh,,SPHERE,PA,8/20/1960 21:30 +Dickinson,,CIRCLE,ND,8/28/1960 21:00 +Buffalo,,OVAL,NY,9/5/1960 21:00 +Wichita,,OVAL,KS,9/10/1960 10:00 +Kingsport,ORANGE,CIRCLE,TN,9/15/1960 19:00 +Seattle,,DISK,WA,9/15/1960 20:30 +Susanville,,,CA,9/15/1960 21:00 +Kaneohe,,LIGHT,HI,10/10/1960 20:00 +Burnsville,,,MN,10/18/1960 0:00 +Westbury,,DISK,NY,11/2/1960 18:00 +Sumner,,SPHERE,WA,11/11/1960 2:00 +Kansas City,,,KS,11/15/1960 22:00 +Santa Clara,,CIRCLE,CA,1/1/1961 12:00 +Kendallville,,CIRCLE,IN,1/1/1961 13:00 +Lancaster,,DISK,CA,2/2/1961 1:00 +Panhandle,,DIAMOND,TX,2/22/1961 20:00 +McGuire AFB,RED GREEN,SPHERE,NJ,3/12/1961 21:00 +New York City,,CROSS,NY,3/29/1961 0:00 +Shenandoah,,LIGHT,PA,4/1/1961 20:00 +Altus,,CIRCLE,OK,4/15/1961 21:00 +Auburn,,CIGAR,WA,5/1/1961 22:00 +Parris Island,,VARIOUS,SC,5/15/1961 4:00 +Alpine,,DISK,UT,6/1/1961 0:00 +no data,,TEARDROP,NY,6/1/1961 18:00 +Opa Locka,,OTHER,FL,6/1/1961 18:00 +Carrollton,,,TX,6/10/1961 19:30 +Huntsville,,TRIANGLE,AL,6/15/1961 12:00 +Richardson,GREEN,LIGHT,TX,6/15/1961 15:00 +Frederick,,LIGHT,OK,6/15/1961 20:30 +Chicago,,DISK,IL,6/17/1961 19:00 +Webster Groves,,CIRCLE,MO,6/20/1961 0:00 +Dallas,,DISK,GA,6/22/1961 0:00 +Greensboro,,CIGAR,NC,6/30/1961 8:00 +Orlando,,DISK,FL,6/30/1961 15:00 +La Mirada,ORANGE,CIGAR,CA,6/30/1961 19:00 +Rotan,,SPHERE,TX,6/30/1961 22:00 +Lawrenceville,,CIRCLE,GA,7/1/1961 21:00 +West Haven,,LIGHT,CT,7/8/1961 21:00 +Sapulpa,,,OK,7/15/1961 1:00 +Gettysburg,,CIGAR,PA,7/15/1961 11:00 +Mount Hope,,,WV,7/15/1961 23:00 +Newberg,,EGG,OR,7/15/1961 23:30 +Arlington Heights,,DISK,IL,7/16/1961 19:50 +Mill Valley,,DISK,CA,8/1/1961 0:00 +Glenshaw,,DISK,PA,8/5/1961 21:15 +Pittsburgh,,SPHERE,PA,8/5/1961 23:00 +Palatine,ORANGE,DISK,IL,8/9/1961 20:00 +New York City,,DISK,NY,8/15/1961 19:00 +Evendale,,,OH,8/30/1961 0:00 +Fort Benning,,DISK,GA,9/1/1961 18:46 +Toledo,,LIGHT,OH,9/1/1961 20:30 +Wahoo,,EGG,NE,9/15/1961 20:00 +Toledo,,SPHERE,OH,10/1/1961 3:00 +Tulsa,,DISK,OK,10/1/1961 3:30 +Nashville,,DISK,TN,10/1/1961 19:00 +Graham,,TRIANGLE,NC,10/1/1961 22:00 +Bristol,,SPHERE,TN,10/10/1961 19:00 +Indialantic,,OVAL,FL,10/15/1961 18:00 +Bakersfield,RED,CIRCLE,CA,11/11/1961 23:00 +Leesville,,FLASH,SC,11/26/1961 10:00 +Bartow,,SPHERE,FL,12/17/1961 21:00 +Forestburg,,SPHERE,TX,12/26/1961 20:00 +Key West,,SPHERE,FL,1/1/1962 8:00 +Fayetteville,,CIRCLE,NC,2/19/1962 21:00 +Snohomish,,DIAMOND,WA,3/1/1962 8:00 +Wendover,,DISK,UT,3/3/1962 3:00 +Clayton,,,NC,3/8/1962 21:00 +Camden,,SPHERE,OH,3/15/1962 10:00 +Shenandoah,YELLOW,LIGHT,PA,3/31/1962 21:00 +Huntingdon,GREEN,,GA,4/15/1962 21:00 +Acoma,,CYLINDER,NM,5/15/1962 21:00 +Toms River,,DISK,NJ,5/15/1962 21:00 +Pittsburg,RED,VARIOUS,OK,5/15/1962 21:30 +Whitehouse,,LIGHT,NJ,5/20/1962 23:00 +Garland,,DISK,TX,5/30/1962 20:00 +Bartlesville,,,OK,6/1/1962 0:00 +Charleston,,DISK,SC,6/1/1962 12:00 +Ellwood City,,DISK,PA,6/1/1962 12:00 +Liberty Homes,,SPHERE,SC,6/1/1962 12:00 +San Francisco,,CIRCLE,CA,6/1/1962 19:00 +Aurora,,LIGHT,CO,6/1/1962 20:00 +Benton,,DISK,IL,6/1/1962 21:30 +Lempster,,CIRCLE,NH,6/14/1962 19:45 +Castle Rock,,SPHERE,WA,6/15/1962 0:00 +Lawrence County,,DISK,IL,6/15/1962 19:30 +Booneville,,DISK,NC,6/15/1962 20:00 +IL,,DISK,IL,6/15/1962 21:30 +Joyce,,OTHER,WA,6/16/1962 23:30 +Ossining,,,NY,6/25/1962 2:00 +Orlando,,SPHERE,FL,6/30/1962 0:00 +Granada Hills,,SPHERE,CA,6/30/1962 2:00 +Cadiz,,,CA,6/30/1962 7:00 +Royal Oak,,DISK,MI,6/30/1962 17:30 +Bethpage,,TRIANGLE,NY,6/30/1962 18:00 +Bay Area,,DISK,CA,6/30/1962 19:00 +Miami,,OVAL,FL,7/1/1962 0:00 +Chicago,,DISK,IL,7/1/1962 22:00 +Seattle,,OTHER,WA,7/1/1962 22:00 +Spearman,,,TX,7/4/1962 21:00 +Lindsay,,CYLINDER,OK,7/7/1962 2:00 +Tannersville,,LIGHT,NY,7/10/1962 10:00 +Avon-by-the-Sea,ORANGE,VARIOUS,NJ,7/15/1962 2:00 +Chicago,,OTHER,IL,7/15/1962 19:00 +East Windsor,ORANGE,CIRCLE,CT,7/15/1962 21:00 +Frankfort,,OVAL,MI,7/15/1962 21:00 +Mentor,,DISK,OH,7/15/1962 21:00 +Sunrise Beach,,CYLINDER,MO,7/15/1962 23:00 +Burkesville,,DISK,KY,7/20/1962 18:00 +Springdale,,LIGHT,AR,7/20/1962 21:00 +Rensselaer,,OTHER,NY,7/24/1962 12:00 +Savannah,,DISK,GA,8/1/1962 15:00 +Beaverton,,TRIANGLE,OR,8/1/1962 19:30 +Ship's Bottom,,,NJ,8/1/1962 23:00 +Lodi,RED,OTHER,OH,8/8/1962 14:00 +Wellington,,,KS,8/10/1962 15:00 +Denver,,DISK,CO,8/15/1962 17:30 +Nenana,,OVAL,AK,8/15/1962 19:00 +Ann Arbor,,DISK,MI,8/15/1962 20:00 +Haverhill,,DISK,MA,8/16/1962 12:00 +San Juan Island,,DISK,WA,9/1/1962 12:00 +Seattle,,CIRCLE,WA,9/1/1962 12:00 +Hopewell,,LIGHT,VA,9/1/1962 15:00 +St. Louis,,SPHERE,MO,9/4/1962 15:30 +Wisconsin,ORANGE,DISK,WI,9/14/1962 17:30 +Severn,,,NC,9/15/1962 14:00 +Island Beach State Park,,DISK,NJ,9/15/1962 18:00 +Savannah,,OVAL,GA,9/29/1962 22:00 +Ft. Lee,,,VA,10/15/1962 0:00 +Chicago,,OTHER,IL,10/15/1962 22:30 +Valparaiso,,CIGAR,FL,11/1/1962 18:00 +Pharr,,CHEVRON,TX,11/9/1962 20:30 +Alameda Naval Air Station,,,CA,11/15/1962 14:00 +Runge,,SPHERE,TX,11/15/1962 21:00 +New York City,,CIGAR,NY,12/21/1962 23:21 +Markleville,,DISK,CA,1/1/1963 10:00 +Helena,,DIAMOND,MT,1/1/1963 22:00 +Holyoke,,DISK,MA,1/20/1963 22:00 +Cape May Court House,,,NJ,2/21/1963 21:30 +Husten,,,TX,2/23/1963 11:30 +Normandy Park,,CYLINDER,WA,3/15/1963 13:00 +Great Lakes,,DISK,IL,3/15/1963 17:30 +Tucson,,TRIANGLE,AZ,4/1/1963 7:00 +Vero Beach,,DISK,FL,4/7/1963 20:00 +Russellton,,SPHERE,PA,4/10/1963 0:00 +Lompoc,,DISK,CA,4/15/1963 19:30 +Alexandria,RED,LIGHT,VA,4/20/1963 17:00 +Lynn,,DISK,MA,5/7/1963 3:00 +New York City,,OTHER,NY,5/15/1963 7:00 +Towson,,OVAL,MD,5/15/1963 14:00 +Tishimingo,,VARIOUS,OK,5/15/1963 22:00 +Emporia,,RECTANGLE,KS,5/30/1963 17:30 +Cocoa,,,FL,6/1/1963 0:00 +Houston,,,TX,6/1/1963 0:00 +San Francisco,,DISK,CA,6/1/1963 0:00 +St. Louis County,,CIGAR,MO,6/1/1963 2:00 +Williamsport,RED,OTHER,MD,6/1/1963 8:00 +Gonzales,,CIGAR,TX,6/1/1963 8:30 +Albemarle,,DISK,NC,6/1/1963 11:00 +Houston,,CIGAR,TX,6/1/1963 12:00 +Kirksey,,TRIANGLE,KY,6/1/1963 13:00 +Waukegan,,FORMATION,IL,6/1/1963 16:00 +Royal Oak,RED,TRIANGLE,MI,6/1/1963 18:00 +Laguna Beach,,LIGHT,CA,6/1/1963 20:00 +Rodeo,,SPHERE,CA,6/1/1963 21:00 +Big Kandiyohi Lake,,LIGHT,MN,6/1/1963 22:00 +Colorado Springs,,DISK,CO,6/1/1963 23:00 +Fort Collins,,CIGAR,CO,6/10/1963 3:00 +Menasha,,CIRCLE,WI,6/11/1963 11:00 +Hollywood,,DISK,FL,6/15/1963 1:00 +Milford,,OTHER,CT,6/15/1963 3:00 +Washougal,,,WA,6/15/1963 3:33 +North St. Paul,,DISK,MN,6/15/1963 11:30 +Jonesboro,,CIGAR,AR,6/15/1963 18:00 +Sacramento,,CYLINDER,CA,6/15/1963 18:15 +Newaygo,,SPHERE,MI,6/15/1963 19:00 +Trion,,CIRCLE,GA,6/15/1963 21:00 +Newburgh,,OTHER,NY,6/15/1963 22:00 +Mansfield,,LIGHT,CT,6/27/1963 19:00 +Johnstown,,RECTANGLE,PA,6/30/1963 0:00 +Zebulon,,OTHER,NC,6/30/1963 0:00 +Newark,,DISK,TX,6/30/1963 6:00 +Salt Lake City,,DISK,UT,6/30/1963 13:00 +Anaheim,,DISK,CA,6/30/1963 14:00 +New York City,,OVAL,NY,7/1/1963 16:00 +Jonesboro,,DISK,AR,7/1/1963 18:00 +Lincoln,,OTHER,MO,7/1/1963 21:00 +Lincoln,,OTHER,MO,7/1/1963 21:12 +Tucson,,OTHER,AZ,7/2/1963 19:30 +East Vassalboro,ORANGE,TRIANGLE,ME,7/3/1963 21:00 +Evanston,,DISK,IL,7/10/1963 20:00 +Albert Lea,BLUE,OVAL,MN,7/11/1963 20:00 +Hornell,,,NY,7/14/1963 21:30 +Mantua,,CIRCLE,NJ,7/15/1963 0:00 +Weingarten,,DISK,MO,7/15/1963 0:00 +Kimberling City,,DISK,MO,7/15/1963 10:30 +Great Lakes,,DISK,IL,7/15/1963 18:00 +Great Lakes,,CIRCLE,IL,7/15/1963 21:00 +Virginia Beach,,CIRCLE,VA,7/15/1963 21:00 +Oklahoma City,,LIGHT,OK,7/15/1963 22:00 +Santa Ana,,LIGHT,CA,7/15/1963 22:30 +Portland,,SPHERE,OR,7/15/1963 23:00 +Boston,,TRIANGLE,MA,7/17/1963 9:00 +Tupelo,,DISK,MS,7/20/1963 19:30 +Amsterdam,,DISK,NY,8/1/1963 2:00 +Compton,,LIGHT,CA,8/1/1963 22:00 +Wenatchee,,FORMATION,WA,8/1/1963 22:00 +Fresno,,OTHER,CA,8/10/1963 22:00 +Riverside,,DISK,OH,8/12/1963 21:00 +Claycomo,,,MO,8/15/1963 6:00 +Camas,,,WA,8/20/1963 2:30 +Broadalbin,,LIGHT,NY,8/23/1963 22:00 +Belchertown,BLUE,,MA,8/25/1963 22:00 +New York City,,CIRCLE,NY,10/3/1963 21:00 +Millington,,DISK,NJ,10/4/1963 0:00 +Prince George,,DISK,VA,10/4/1963 19:10 +Laurel,,OVAL,MS,10/9/1963 21:30 +Danville,,DISK,IN,10/20/1963 19:00 +Engelwood Cliffs,,,NJ,11/1/1963 0:00 +Rome,,OVAL,GA,12/10/1963 23:00 +El Cerrito,,FIREBALL,CA,1/10/1964 20:00 +Omaha,,SPHERE,NE,1/25/1964 20:30 +Bristow,,,OK,3/1/1964 20:00 +Cherry Valley,,CIRCLE,CA,3/29/1964 21:00 +Fries,,CYLINDER,VA,3/30/1964 13:00 +Miami,,OTHER,FL,4/3/1964 18:00 +Valley Station,,OTHER,KY,4/15/1964 19:00 +Bancroft,,LIGHT,MI,4/15/1964 20:30 +Seattle,,DISK,WA,4/15/1964 22:00 +Orangevale,,LIGHT,CA,5/1/1964 22:00 +Rangely,,,CO,5/5/1964 1:00 +Pineville,,,KY,5/10/1964 2:00 +Hardwick,,DISK,VT,5/15/1964 10:15 +Texarkana,,DISK,AR,5/15/1964 12:00 +Covina,,CIGAR,CA,5/15/1964 15:00 +Covina,,CIGAR,CA,5/15/1964 15:00 +Walden,,CIGAR,VT,5/15/1964 19:30 +Cave Springs,,,GA,5/16/1964 8:00 +Haltom City,,LIGHT,TX,6/1/1964 4:30 +Sallisaw,,LIGHT,OK,6/1/1964 15:00 +Butler,,,PA,6/1/1964 16:00 +Los Angeles,,DISK,CA,6/1/1964 20:00 +North Yakima,BLUE,CIRCLE,WA,6/1/1964 21:30 +New York City,,DISK,NY,6/5/1964 10:00 +Baltimore,,SPHERE,MD,6/9/1964 21:00 +Montrose,BLUE,LIGHT,CO,6/10/1964 3:00 +Chicago,ORANGE,CIRCLE,IL,6/10/1964 22:00 +Auburndale,,CIRCLE,MA,6/11/1964 20:15 +Dedham,,CIRCLE,MA,6/11/1964 21:40 +Reno,,DISK,NV,6/14/1964 13:00 +Winnamucca,,LIGHT,NV,6/15/1964 1:00 +Miami,,LIGHT,FL,6/15/1964 6:00 +Great Falls,,SPHERE,MT,6/15/1964 11:00 +Tulsa,,CIRCLE,OK,6/15/1964 13:00 +Milan,RED,SPHERE,TN,6/15/1964 21:00 +Anchorville,,DISK,MI,6/15/1964 21:30 +Marble Falls,,LIGHT,TX,6/15/1964 22:00 +Destrehan,,LIGHT,LA,6/15/1964 23:00 +Tucson,,TRIANGLE,AZ,6/19/1964 20:00 +Thompson,,DISK,GA,6/22/1964 14:00 +Alexandria,RED,DISK,VA,6/28/1964 21:00 +Atlanta,,VARIOUS,GA,6/29/1964 21:50 +Ontonagon,,RECTANGLE,MI,6/30/1964 1:00 +Hoquiam,,OTHER,WA,6/30/1964 14:00 +Ft. Wayne,,TRIANGLE,IN,6/30/1964 18:00 +Lewistown,,OTHER,IL,6/30/1964 21:30 +Paloma,ORANGE,OTHER,CA,6/30/1964 22:00 +Laurel Springs,,OTHER,NJ,7/1/1964 12:00 +Omaha,,DISK,NE,7/1/1964 20:00 +Wautoma,,LIGHT,WI,7/7/1964 21:30 +no data,,LIGHT,PA,7/8/1964 0:00 +Chicago,,DISK,IL,7/9/1964 22:30 +Defiance,,LIGHT,OH,7/10/1964 22:00 +Drew,,CIRCLE,OR,7/12/1964 12:00 +Hamilton,RED,OVAL,MT,7/14/1964 13:00 +Dayton,,DISK,OH,7/15/1964 8:00 +Brunswick,,FORMATION,GA,7/15/1964 12:00 +Washington,,OTHER,MO,7/15/1964 15:00 +Fishersville,,FIREBALL,VA,7/15/1964 19:00 +Las Vegas,,CIRCLE,NV,7/15/1964 23:00 +Rosebush,,,MI,7/16/1964 1:00 +New Jersey,,LIGHT,NJ,7/20/1964 20:00 +Holden,,LIGHT,MA,7/31/1964 22:00 +Stonington,,DISK,CT,8/1/1964 6:00 +Chicago,,FORMATION,IL,8/1/1964 9:30 +Duquesne,,CIGAR,PA,8/1/1964 15:00 +Samuel-,,FIREBALL,KY,8/1/1964 19:30 +Charlestown,,LIGHT,RI,8/1/1964 20:00 +Morro Bay,,TRIANGLE,CA,8/1/1964 21:00 +Boston,,CIRCLE,MA,8/4/1964 9:30 +Bonfield,,DIAMOND,IL,8/12/1964 0:00 +Taylorville,,DISK,IL,8/13/1964 23:30 +Portland,,CIRCLE,ME,8/14/1964 23:00 +St. Louis,,FIREBALL,MO,8/15/1964 20:00 +Atlantic Ocean,,CIGAR,VA,8/15/1964 21:00 +Los Angeles,,CROSS,CA,8/20/1964 13:00 +St. Petersburg,,,FL,8/20/1964 22:45 +Florence,,DISK,AL,8/22/1964 18:40 +Oxen Hill,,OVAL,MD,9/1/1964 20:00 +East Hartford,,FIREBALL,CT,9/1/1964 20:30 +New York City,,DISK,NY,9/5/1964 21:00 +Spartanburg,,DISK,SC,9/10/1964 22:00 +Crescent Junction,,DISK,UT,9/15/1964 2:00 +Arcade,,DISK,NY,9/15/1964 20:00 +Yakima,,DISK,WA,9/15/1964 21:00 +Cowpens,,DISK,SC,9/15/1964 22:00 +Monterey,,DISK,CA,9/15/1964 22:30 +Chicago,,SPHERE,IL,9/20/1964 20:00 +Mt. Prospect,,DISK,IL,9/25/1964 19:00 +Mt. Prospect,,DISK,IL,9/25/1964 19:00 +Wilmington,,,DE,9/30/1964 0:00 +Terrebonne,,CIGAR,OR,10/5/1964 16:45 +Bettendorf,,OTHER,TX,10/14/1964 2:00 +Columbus,,CIGAR,OH,10/15/1964 0:00 +New Iberia,,CIRCLE,LA,10/20/1964 12:00 +Detroit,,CIRCLE,MI,10/20/1964 21:00 +Cotullia,,SPHERE,TX,11/1/1964 18:00 +Glen Allen,,DISK,VA,11/12/1964 20:00 +Memphis,,CIRCLE,TN,11/15/1964 22:00 +Memphis,,SPHERE,TN,11/15/1964 22:00 +Memphis,,CIRCLE,TN,11/22/1964 22:00 +Mokena,,LIGHT,IL,1/1/1965 17:00 +Conway,,LIGHT,AR,1/1/1965 20:00 +St. Ansgar,,FIREBALL,IA,1/1/1965 20:00 +Indianapolis,,CIRCLE,IN,2/1/1965 7:30 +Seattle,,SPHERE,WA,2/2/1965 6:00 +Chicago,,OVAL,IL,2/15/1965 17:00 +Metairie,,CIRCLE,LA,2/16/1965 21:00 +Jonesboro,BLUE,DISK,GA,3/15/1965 14:00 +Waterville,,EGG,ME,3/15/1965 17:00 +Austin,,,TX,4/1/1965 5:30 +Schertz,,DISK,TX,4/1/1965 15:30 +Nesquehoning,,TRIANGLE,PA,4/1/1965 22:30 +Daytona Beach,,CIGAR,FL,4/14/1965 23:00 +Tampa,,DISK,FL,4/15/1965 12:00 +Orlando,,DISK,FL,4/20/1965 19:00 +Newtown Square,,TRIANGLE,PA,4/28/1965 0:00 +Guernsey,,SPHERE,WY,5/1/1965 13:00 +York County,,OVAL,PA,5/1/1965 15:30 +Appelton,,DISK,WI,5/1/1965 16:30 +St. Louis County,,CIGAR,MO,5/5/1965 5:35 +Scotland,,OTHER,AR,5/5/1965 17:00 +Massapequa Park,,OVAL,NY,5/12/1965 21:00 +Burlington,,DISK,WA,5/15/1965 7:30 +Gadsden,,SPHERE,AL,5/15/1965 14:00 +La Mesa,,DISK,CA,5/15/1965 15:00 +Shasta Lake,,DISK,CA,5/31/1965 13:00 +Norman,,DISK,OK,6/1/1965 0:00 +St. Louis,,SPHERE,MO,6/1/1965 1:00 +Deming,,DISK,NM,6/1/1965 5:00 +Laconia,ORANGE,CYLINDER,NH,6/1/1965 9:00 +Marathon,,DISK,WI,6/1/1965 11:00 +Knobnoster,,OVAL,MO,6/1/1965 12:00 +Long Beach,,CYLINDER,CA,6/1/1965 13:00 +Scottsville,,LIGHT,KY,6/1/1965 13:00 +Lakewood,,DISK,OH,6/1/1965 15:00 +Newport,,LIGHT,NH,6/1/1965 19:00 +Chicago,,LIGHT,IL,6/1/1965 20:00 +Fallon,,,NV,6/1/1965 20:00 +Miami,,OVAL,FL,6/1/1965 20:00 +Rochester,,SPHERE,NY,6/1/1965 21:00 +San Lorenzo,,LIGHT,CA,6/1/1965 21:00 +Toledo,,SPHERE,OH,6/1/1965 21:00 +Caliham,,LIGHT,TX,6/6/1965 2:45 +College Park,,CIRCLE,GA,6/6/1965 17:00 +Rustburg,,LIGHT,VA,6/8/1965 21:00 +Whittier,,OTHER,CA,6/15/1965 0:00 +Woodland HIlls,,CIRCLE,CA,6/15/1965 3:30 +West Corners,,OTHER,NY,6/15/1965 9:00 +Glenvil,,,NE,6/15/1965 10:00 +Thomson,,CIRCLE,GA,6/15/1965 10:00 +Hurley,,CHEVRON,MO,6/15/1965 12:30 +New Kensington,,DISK,PA,6/15/1965 19:00 +Utica,,DISK,MI,6/15/1965 19:00 +Mesquite,,OVAL,TX,6/15/1965 20:00 +Oklahoma City,,SPHERE,OK,6/15/1965 20:00 +St. Petersburg,,,FL,6/15/1965 20:00 +St. Marys,,DISK,WV,6/15/1965 20:15 +Medford,,OVAL,MA,6/15/1965 21:00 +Delano,,FORMATION,CA,6/15/1965 23:00 +Pottstown,,OTHER,PA,6/15/1965 23:00 +Wellington,,,KS,6/15/1965 23:00 +Albuquerque,GREEN,DISK,NM,6/20/1965 2:00 +Portland,,DISK,OR,6/25/1965 13:00 +Philadelphia,YELLOW,CIGAR,PA,6/25/1965 15:00 +Vassalboro,,DISK,ME,6/28/1965 0:00 +Cadotte Pass,,,MT,6/30/1965 0:00 +Colville,,FLASH,WA,6/30/1965 0:00 +Tampa,,,FL,6/30/1965 2:00 +Montgomery,,DISK,AL,6/30/1965 3:00 +Brentwood,,,NY,6/30/1965 14:00 +Mount Shasta,BLUE,CIGAR,CA,6/30/1965 14:00 +Ocala,,CIGAR,FL,6/30/1965 15:00 +Elkins,,DISK,AR,6/30/1965 19:00 +Chesapeake,,EGG,VA,6/30/1965 20:00 +Blasdell,,OVAL,NY,6/30/1965 21:00 +Otisville,,,NY,6/30/1965 22:00 +Fountain Valley,ORANGE,SPHERE,CA,6/30/1965 23:00 +Ringwood,,DISK,NJ,7/1/1965 12:00 +Mt. Vernon,,DISK,IL,7/1/1965 17:00 +Moberly,,LIGHT,MO,7/1/1965 21:00 +New Orleans,,,LA,7/1/1965 22:00 +Narragansett,,EGG,RI,7/2/1965 22:30 +Panama City Beach,,FIREBALL,FL,7/4/1965 19:00 +Hains Falls,,LIGHT,NY,7/4/1965 20:00 +Winnemucca,,LIGHT,NV,7/6/1965 0:00 +Waterford,,VARIOUS,MI,7/6/1965 23:00 +Hudson,,LIGHT,MA,7/7/1965 21:00 +Oak Park,,,IL,7/7/1965 22:30 +San Fernando,,OTHER,CA,7/10/1965 20:00 +Fayetteville,GREEN,CIRCLE,NC,7/12/1965 2:15 +Los Angeles,RED BLUE,CIGAR,CA,7/12/1965 18:30 +Tehachapi,,TRIANGLE,CA,7/15/1965 0:30 +Jackson,,RECTANGLE,MI,7/15/1965 6:30 +San Gabriel,RED BLUE,OVAL,TX,7/15/1965 14:00 +Sistersville,,FIREBALL,WV,7/15/1965 14:00 +Westbury,,EGG,NY,7/15/1965 15:00 +Nyona Lake,,CIGAR,IN,7/15/1965 16:00 +Hornick,ORANGE,FIREBALL,IA,7/15/1965 18:00 +Stoughton,,LIGHT,WI,7/15/1965 18:00 +Whitesburg,,LIGHT,KY,7/15/1965 21:00 +Aurora,RED,SPHERE,OH,7/15/1965 22:00 +Mansfield,,DISK,OH,7/15/1965 22:00 +Pittsfield,,DISK,MA,7/15/1965 22:00 +Pulaski,,FIREBALL,VA,7/20/1965 3:00 +Harrisburg,,OVAL,PA,7/20/1965 19:00 +Santa Ana,,CIRCLE,CA,7/20/1965 20:30 +Portland,ORANGE,DISK,OR,7/20/1965 23:45 +Highland,,SPHERE,MI,7/24/1965 13:00 +Concord,,,CA,7/25/1965 20:00 +Norwalk,,LIGHT,OH,7/27/1965 12:30 +Old Lyme,,OVAL,CT,7/30/1965 23:00 +Pell Lake,,EGG,WI,7/31/1965 22:00 +Wilson,,DISK,NC,8/1/1965 0:00 +Potter,,,NE,8/1/1965 1:30 +St. Louis,,SPHERE,MO,8/1/1965 16:00 +Virden,,SPHERE,IL,8/1/1965 18:00 +Pearland,,LIGHT,TX,8/1/1965 23:00 +Pittsburgh,,OVAL,PA,8/2/1965 1:42 +San Clemente,,FIREBALL,CA,8/3/1965 21:00 +San Antonio,,EGG,TX,8/6/1965 1:00 +South Yarmouth,,LIGHT,MA,8/7/1965 13:00 +Tularosa,,DISK,NM,8/8/1965 12:30 +Minneapolis,,VARIOUS,MN,8/8/1965 23:10 +Hollis,,SPHERE,NH,8/10/1965 18:00 +Culver City,,OVAL,CA,8/11/1965 21:00 +Virginia Beach,,DISK,VA,8/12/1965 1:00 +Dillon,,OVAL,MT,8/12/1965 21:00 +Fort Ord,,TRIANGLE,CA,8/12/1965 21:30 +Tahlequah,,OVAL,OK,8/15/1965 0:00 +Sullivan,,LIGHT,IL,8/15/1965 20:00 +Oneonta,,OVAL,NY,8/15/1965 20:45 +Beaverton,,CIGAR,OR,8/15/1965 21:00 +Aurora,RED,SPHERE,OH,8/15/1965 22:00 +Roseville,,DISK,MI,8/15/1965 22:00 +West Lafayette,RED,DISK,IN,8/15/1965 22:00 +Vernon,,LIGHT,TX,8/15/1965 23:00 +Lowell,RED,FIREBALL,IN,8/15/1965 23:59 +Lowell,,SPHERE,IN,8/15/1965 23:59 +Charleston,,SPHERE,SC,8/20/1965 19:00 +New York City,,CYLINDER,NY,8/20/1965 20:30 +New York City,,CYLINDER,NY,8/20/1965 20:30 +Rutland,RED,CIGAR,MA,8/20/1965 22:00 +Jefferson City,,SPHERE,MO,9/1/1965 13:00 +Spotswood,,CYLINDER,NJ,9/5/1965 8:25 +New Kensington,,CIGAR,PA,9/10/1965 0:00 +Indianapolis,,EGG,IN,9/15/1965 15:00 +Titusville,,TRIANGLE,PA,9/15/1965 20:00 +Terrebonne,RED,LIGHT,OR,9/15/1965 21:30 +Great Bend,,VARIOUS,KS,9/15/1965 22:00 +Kennewick,,OVAL,WA,9/23/1965 14:00 +Waterville,BLUE,CIRCLE,ME,9/27/1965 5:00 +Desert,,DISK,NM,10/1/1965 2:00 +Biloxi,,OTHER,MS,10/1/1965 6:40 +Colonial Heights,BLUE,SPHERE,VA,10/1/1965 14:00 +Dushore,,DISK,PA,10/1/1965 21:00 +Pittsburgh,,DISK,PA,10/2/1965 22:00 +Studio City,,,CA,10/7/1965 0:00 +Reseda,,DISK,CA,10/7/1965 10:00 +Norwalk,RED ORANGE,DISK,CT,10/10/1965 23:45 +Pittsburgh,,CIRCLE,PA,10/12/1965 12:00 +Pittsburgh,BLUE,DISK,PA,10/12/1965 13:00 +Ponca City,,,OK,10/14/1965 21:00 +New Rochelle,,SPHERE,NY,10/15/1965 15:00 +Tabor,,OVAL,IA,10/15/1965 21:00 +Beverly,,CYLINDER,MA,10/16/1965 15:00 +La Jolla,,,CA,10/17/1965 19:15 +La Jolla,,DISK,CA,10/17/1965 19:15 +La Jolla,,DISK,CA,10/17/1965 19:15 +Joppatown,,FIREBALL,MD,10/20/1965 15:00 +Danvers,,EGG,MA,10/24/1965 18:15 +Billerica,,CIGAR,MA,11/1/1965 19:00 +B-52; inflight,,LIGHT,NH,11/2/1965 0:30 +Jacksonville,,LIGHT,FL,11/5/1965 21:00 +Old Saybrook,RED,LIGHT,CT,11/9/1965 17:45 +Middletown,,SPHERE,NY,11/9/1965 18:00 +Syosset,BLUE,DISK,NY,11/15/1965 16:30 +Colmar Manor,,,MD,11/15/1965 21:00 +New York City,RED,OVAL,NY,11/15/1965 21:00 +Cherokee,RED GREEN,OTHER,OK,11/23/1965 20:00 +Poughkeepsie,,TRIANGLE,NY,12/1/1965 17:00 +Grand Island,,FIREBALL,NY,12/9/1965 0:00 +Newtown Square,BLUE,FIREBALL,PA,12/9/1965 0:00 +Pittsburgh,,,PA,12/9/1965 0:00 +Fairmont,,OTHER,WA,12/9/1965 16:00 +Mantua,,CIGAR,NJ,12/9/1965 16:30 +Enfield,,CIRCLE,CT,12/9/1965 16:48 +Enfield,,CIRCLE,CT,12/9/1965 16:48 +Enfield,,FIREBALL,CT,12/9/1965 16:48 +Enfield,,FIREBALL,CT,12/9/1965 17:00 +Middletown,,FIREBALL,CT,12/9/1965 17:00 +San Marcos,,LIGHT,TX,12/10/1965 21:00 +Spartanburg,,OVAL,SC,12/12/1965 23:00 +Houston,,FORMATION,TX,12/22/1965 9:00 +Davidsville,,LIGHT,PA,12/24/1965 1:00 +Bellmar,,TRIANGLE,NJ,12/24/1965 23:59 +Flagstaff,,DISK,AZ,1/1/1966 17:00 +Leavenworth,,TRIANGLE,WA,1/12/1966 0:00 +Fort Smith,,CIRCLE,AR,1/15/1966 22:00 +Ft. Smith,,,AR,1/15/1966 22:00 +Randolph,,OVAL,OH,2/1/1966 1:00 +Kent,,DISK,OH,2/10/1966 18:15 +Bakersfield,,DISK,CA,2/13/1966 17:00 +Gibralter,,DISK,MI,3/8/1966 11:00 +Ann Arbor,BLUE,,MI,3/14/1966 20:00 +Ft. Worth area,,CYLINDER,TX,3/15/1966 10:30 +Childs,,CIRCLE,MD,3/15/1966 14:00 +Warren,,SPHERE,NJ,3/15/1966 20:00 +St Joseph,,LIGHT,MI,3/15/1966 21:00 +North Stonington,,DISK,CT,3/16/1966 8:00 +Elizabeth,,CHEVRON,NJ,3/16/1966 22:00 +Hillsdale,,DISK,MI,3/21/1966 21:00 +El Paso,,OVAL,TX,3/24/1966 22:10 +Auburn,,CIGAR,WA,3/26/1966 16:30 +Roscoe,,CHEVRON,IL,3/29/1966 20:00 +Dearborn,,CHEVRON,MI,3/31/1966 23:50 +Dearborn,,OVAL,MI,3/31/1966 23:50 +Richmond,,DISK,MO,4/1/1966 19:00 +New Braintree,RED,CIRCLE,MA,4/1/1966 21:00 +Corpus Christi,,LIGHT,TX,4/1/1966 23:15 +Geneva,ORANGE,DISK,NY,4/14/1966 22:30 +Interior,,DISK,SD,4/15/1966 13:30 +Hingham,,OVAL,MA,4/15/1966 18:50 +Francis E Warren AFB,,,WY,4/15/1966 23:00 +Atwater,,OTHER,OH,4/17/1966 5:10 +Reading,,OTHER,PA,4/25/1966 20:25 +Bonney Lake area,,,WA,4/25/1966 23:00 +Kent,,SPHERE,WA,5/1/1966 0:00 +Omaha,,CIGAR,NE,5/1/1966 3:00 +Michigan City,RED,RECTANGLE,IN,5/1/1966 17:00 +Beltsville,,SPHERE,MD,5/5/1966 17:00 +Tulsa,,RECTANGLE,OK,5/10/1966 0:00 +East Liverpool,,TRIANGLE,OH,5/11/1966 19:30 +Gering,,,NE,5/15/1966 0:00 +Nanakuli,,DISK,HI,5/15/1966 17:00 +Mentone,,EGG,AL,5/15/1966 22:00 +no data,,DISK,AZ,5/15/1966 22:00 +Lexington,,OTHER,KY,5/19/1966 20:00 +Holly,,LIGHT,MI,5/20/1966 1:00 +Fort Lee,,LIGHT,VA,5/26/1966 23:00 +International Falls,,DISK,MN,6/1/1966 0:00 +New Rochelle,,LIGHT,NY,6/1/1966 2:00 +Gainesville,,DISK,MO,6/1/1966 8:00 +Old Washoe City,,DISK,NV,6/1/1966 9:00 +Bellingham,,DISK,WA,6/1/1966 12:00 +Chicago,,DISK,IL,6/1/1966 12:00 +Punxsutawney,,,PA,6/1/1966 12:00 +Carson City,,DISK,MI,6/1/1966 13:00 +Glenvil,,,NE,6/1/1966 13:00 +Betteravia,,OTHER,CA,6/1/1966 14:00 +Coyanosa,,DISK,TX,6/1/1966 15:00 +Odessa,,OTHER,TX,6/1/1966 15:00 +Miramar NAS,,DISK,CA,6/1/1966 16:32 +Cambridge,,DISK,OH,6/1/1966 17:00 +Grandview,,TRIANGLE,MO,6/1/1966 17:30 +Pleasantville,,DISK,NY,6/1/1966 17:50 +Dearborn Heights,,DISK,MI,6/1/1966 19:00 +District Heights,,DISK,MD,6/1/1966 19:30 +Oil City,,SPHERE,PA,6/1/1966 21:00 +Conshohocken,,DISK,PA,6/1/1966 22:00 +Billings,,LIGHT,MT,6/1/1966 23:00 +Sonoma,,CIGAR,CA,6/6/1966 12:00 +Sonoma,,CIGAR,CA,6/6/1966 12:00 +Hickory,,DISK,NC,6/10/1966 21:00 +Hickory,,DISK,NC,6/10/1966 21:30 +Ypsilanti,,DISK,MI,6/11/1966 13:00 +Playa del Rey,,LIGHT,CA,6/12/1966 1:30 +Vermontville,,OVAL,MI,6/12/1966 20:00 +Mexia,,OVAL,TX,6/12/1966 21:00 +Baltimore,,OVAL,MD,6/15/1966 0:00 +Stoughton,,SPHERE,WI,6/15/1966 4:00 +Columbus,RED,CIRCLE,OH,6/15/1966 5:00 +Roseburg,BLUE,OTHER,OR,6/15/1966 11:00 +Salem,,OVAL,OR,6/15/1966 12:00 +Reading,,SPHERE,PA,6/15/1966 15:00 +Oakdale,,DISK,PA,6/15/1966 16:00 +Monterey Bay,,DISK,CA,6/15/1966 17:00 +Cincinnati,,DISK,OH,6/15/1966 19:00 +Glendale,,CIRCLE,AZ,6/15/1966 19:00 +McClellandtown,,DISK,PA,6/15/1966 19:00 +Bellevue,,DISK,IA,6/15/1966 21:00 +Toutle River,,,WA,6/15/1966 21:00 +Whiteman AFB,,DISK,MO,6/15/1966 21:00 +Duluth,,DISK,MN,6/18/1966 11:00 +Newington,,TRIANGLE,CT,6/18/1966 21:30 +Greenhills,,DISK,OH,6/20/1966 17:00 +Huntington,,DISK,IN,6/20/1966 21:00 +Little Axe,,LIGHT,OK,6/21/1966 21:45 +Rapid City,,,SD,6/25/1966 21:30 +Rapid City,,DISK,SD,6/25/1966 21:30 +Manor,,OVAL,PA,6/30/1966 0:00 +New Mexico,,DISK,NM,6/30/1966 0:01 +Mendota,,DISK,CA,6/30/1966 1:00 +New York City,,CIRCLE,NY,6/30/1966 5:00 +Washington,,CIRCLE,IN,6/30/1966 10:00 +Lake Cushman,,OTHER,WA,6/30/1966 14:00 +Montague,,OTHER,CA,6/30/1966 14:00 +Jonesboro,,DISK,AR,6/30/1966 15:00 +Corning,,DISK,CA,6/30/1966 16:00 +Wayne,,CIGAR,PA,6/30/1966 17:00 +Blocksburg,,DISK,CA,6/30/1966 21:00 +Peoria,,CIGAR,IL,6/30/1966 21:00 +Spartanburg,ORANGE,LIGHT,SC,6/30/1966 21:00 +Santa Fe,,DISK,NM,6/30/1966 22:30 +Auburn,,OTHER,CA,6/30/1966 23:00 +Winston-Salem,,OTHER,NC,6/30/1966 23:00 +Dover,,DISK,DE,7/1/1966 0:30 +New Salem,,OVAL,PA,7/1/1966 19:00 +Jarrettsville,,LIGHT,MD,7/1/1966 20:00 +New Salem,,SPHERE,PA,7/1/1966 20:00 +Milton,,LIGHT,WV,7/1/1966 20:30 +Malden,,SPHERE,MA,7/1/1966 21:00 +Grand Prairie,,OTHER,TX,7/1/1966 21:30 +Cape Rosier,GREEN,LIGHT,ME,7/4/1966 0:00 +San Jose,,DISK,CA,7/4/1966 17:15 +Interlachen,,FIREBALL,FL,7/6/1966 21:00 +Hopkinsville,,OTHER,KY,7/9/1966 12:00 +Dracut,,CIRCLE,MA,7/15/1966 0:00 +Springfield,,OTHER,MA,7/15/1966 12:00 +Galveston,,OVAL,TX,7/15/1966 19:00 +La Puente,,TRIANGLE,CA,7/15/1966 21:00 +Centerville,,LIGHT,IA,7/15/1966 22:00 +Cold Springs,,,NY,7/15/1966 22:00 +Malibu,,TRIANGLE,CA,7/15/1966 22:00 +Waukegan,,CIRCLE,IL,7/17/1966 11:00 +Gahanna,,LIGHT,OH,7/31/1966 21:30 +Douglas,,CIGAR,MI,7/31/1966 23:00 +Columbus,ORANGE,CIRCLE,OH,8/1/1966 5:30 +Garden City,,CIGAR,MI,8/1/1966 22:30 +Santa Rosa,,DISK,CA,8/6/1966 1:30 +Newcastle,,,DE,8/9/1966 0:00 +Ovando,,OVAL,MT,8/10/1966 3:30 +Caseyville,,LIGHT,IL,8/12/1966 19:00 +Renton,,OVAL,WA,8/14/1966 14:30 +Rochester,,OTHER,NY,8/15/1966 12:00 +Amherst,,DISK,NY,8/15/1966 22:00 +Galesburg,,DISK,IL,8/15/1966 22:00 +Seattle,,DISK,WA,8/15/1966 22:30 +Bass Harbor,BLUE,DISK,ME,8/17/1966 1:45 +Beverly,,CIGAR,OH,8/17/1966 23:00 +Big Sur,,DIAMOND,CA,8/18/1966 19:00 +Indianapolis,,LIGHT,IN,8/20/1966 1:00 +Seatac,,,WA,8/22/1966 23:00 +Grovertown,,CIGAR,IN,8/28/1966 0:00 +Rochester,,DISK,NY,8/30/1966 17:30 +New York City,,SPHERE,NY,9/1/1966 22:00 +Bakersfield,RED GREEN BLUE,CIRCLE,CA,9/5/1966 0:00 +Columbus,RED YELLOW GREEN,CIRCLE,NE,9/5/1966 21:00 +Pasco,,DISK,WA,9/6/1966 21:00 +Hundred,,OVAL,WV,9/8/1966 20:30 +Terre Haute,,SPHERE,IN,9/15/1966 3:00 +Clifton,,FLASH,TX,9/15/1966 9:00 +Delta Junction,ORANGE,CIGAR,AK,9/15/1966 18:00 +Canoga Park,,CIGAR,CA,9/15/1966 20:00 +Toledo,,TRIANGLE,OH,9/15/1966 21:00 +Huntington,RED,TRIANGLE,WV,9/15/1966 23:00 +Chicago,,CIGAR,IL,9/16/1966 20:00 +Granby,,,CT,9/20/1966 19:00 +Los Banos,,EGG,CA,9/25/1966 17:00 +Norfolk,,OVAL,VA,9/27/1966 0:00 +Red Oak,GREEN,OVAL,IA,9/27/1966 1:00 +Coventry,,CIRCLE,RI,9/28/1966 20:00 +Huntington,,CIRCLE,WV,9/30/1966 21:00 +Buffalo,,LIGHT,NY,10/1/1966 20:00 +Anacortes,,LIGHT,WA,10/1/1966 22:00 +Anamosa,,,IA,10/1/1966 22:30 +Corvallis,,DISK,OR,10/1/1966 23:00 +Troy,,,OH,10/5/1966 21:00 +Pell City,,DISK,AL,10/10/1966 20:00 +Live Oak,,DISK,FL,10/10/1966 21:00 +Mission,,DISK,TX,10/13/1966 7:00 +Boca Raton,,CIRCLE,FL,10/15/1966 2:00 +Martinsville,,DISK,IN,10/15/1966 18:30 +Running Springs,,DISK,CA,10/15/1966 19:00 +Ukiah,,OVAL,OR,10/15/1966 20:00 +Utica,RED GREEN,TRIANGLE,NY,10/15/1966 20:00 +Fremont,,,CA,10/15/1966 22:00 +Albuquerque,,DIAMOND,NM,10/20/1966 2:00 +Santa Fe,,DISK,NM,10/21/1966 22:15 +Gulfport,RED,EGG,MS,10/30/1966 17:50 +Miami,,,FL,11/1/1966 12:00 +North Dade County,,,FL,11/1/1966 12:00 +Opa Locka,,CHEVRON,FL,11/1/1966 12:00 +Opa Locka,,CYLINDER,FL,11/1/1966 12:00 +Opa Locka,,DISK,FL,11/1/1966 12:00 +Kodiak Naval Station,,FORMATION,AK,11/10/1966 21:00 +Seattle,RED,DISK,WA,11/11/1966 2:00 +Hempstead,,,NY,11/11/1966 20:00 +Jacksonville,,CHEVRON,FL,11/12/1966 0:00 +Corpus Christi,,OVAL,TX,11/14/1966 22:15 +Huntington Beach,BLUE,CIRCLE,CA,11/15/1966 19:40 +Winston-Salem,,TRIANGLE,NC,11/15/1966 22:30 +Wanaque,,OVAL,NJ,11/25/1966 22:05 +Webster City,RED,SPHERE,IA,12/15/1966 17:30 +Valley Forge,,SPHERE,PA,12/15/1966 19:00 +Phoenixville,,OVAL,PA,12/15/1966 23:00 +Salem,ORANGE,DISK,OR,12/19/1966 2:39 +Rockford,,,IL,12/25/1966 4:00 +Hammond,,TRIANGLE,IN,12/28/1966 19:00 +Opa Locka,,CHEVRON,FL,1/1/1967 13:00 +Forbes AFB,,DISK,KS,1/15/1967 1:30 +Fort Bliss,,DISK,TX,2/1/1967 0:15 +Martin,,DISK,TN,2/1/1967 16:00 +Lakeview,,OTHER,OR,2/2/1967 21:00 +Stony Point,,,NY,2/13/1967 22:19 +Andover,,LIGHT,MA,2/15/1967 20:00 +Meriden,,,CT,2/20/1967 19:30 +Whittier,,OVAL,CA,3/1/1967 19:30 +Hickman,,FORMATION,KY,3/2/1967 19:50 +Oak Grove,,,LA,3/3/1967 22:00 +Mt. Washington,,CIRCLE,NH,3/10/1967 23:00 +San Angelo,,CIRCLE,TX,3/15/1967 8:00 +Norwalk,,CIGAR,OH,3/15/1967 18:00 +Galesburg,,OVAL,IL,3/16/1967 23:00 +Valdosta,,DISK,GA,4/1/1967 0:00 +Opa Locka,,,FL,4/1/1967 13:00 +Opa Locka,,OVAL,FL,4/1/1967 13:00 +Las Vegas,BLUE,LIGHT,NV,4/1/1967 17:45 +Homestead,,,FL,4/1/1967 21:00 +Tampa,,LIGHT,FL,4/1/1967 21:00 +Miami,,OTHER,FL,4/1/1967 23:00 +Albany,,,GA,4/4/1967 22:00 +middle of desert,,LIGHT,TX,4/5/1967 22:00 +Miami,,DISK,FL,4/7/1967 10:00 +Nashville,,DISK,TN,4/11/1967 15:00 +Westbury,,FORMATION,NY,4/14/1967 22:30 +El Paso,,CHEVRON,TX,4/15/1967 18:00 +North Hollywood,,FORMATION,CA,4/15/1967 22:00 +Stamford,,CYLINDER,CT,4/21/1967 19:30 +Gibson,,OVAL,NY,4/22/1967 21:00 +Chattahoochee,,LIGHT,FL,4/25/1967 21:00 +Enid,,DISK,OK,5/1/1967 12:00 +Maryville,,CIGAR,TN,5/1/1967 21:00 +Hallandale,,TRIANGLE,FL,5/5/1967 22:00 +Fallon,,OVAL,NV,5/10/1967 11:00 +Kent,,DISK,WA,5/15/1967 0:50 +Gainesville,RED,TRIANGLE,FL,5/15/1967 19:30 +Belvedere,,TEARDROP,CA,5/15/1967 20:00 +Palm Wells,,FORMATION,CA,5/15/1967 20:00 +Monroe,,LIGHT,LA,5/15/1967 23:00 +El Paso,,LIGHT,TX,5/29/1967 21:00 +Bangor,,,ME,6/1/1967 0:00 +Bangor,,,ME,6/1/1967 0:00 +Farmersville,,CIRCLE,OH,6/1/1967 0:00 +Oxen Hill,,SPHERE,MD,6/1/1967 0:00 +Shofield Barracks-Civilian,,VARIOUS,HI,6/1/1967 0:00 +Edgemoor,,DISK,SC,6/1/1967 1:00 +Fort Knox,,CYLINDER,KY,6/1/1967 6:00 +St. Paul,,DISK,MN,6/1/1967 6:00 +San Diego,,CIRCLE,CA,6/1/1967 12:00 +El Cerrito,,OVAL,CA,6/1/1967 14:00 +Red Oak,,LIGHT,IA,6/1/1967 16:00 +Warrensburg on Highway 13,,OTHER,MO,6/1/1967 16:00 +Cordova,,DISK,AL,6/1/1967 18:00 +West Bend,,LIGHT,WI,6/1/1967 20:00 +Myrtle Creek,,CIRCLE,OR,6/1/1967 20:30 +Cincinnati,,CIGAR,OH,6/1/1967 21:00 +Sumner,,FORMATION,WA,6/1/1967 21:00 +Gerry,,DISK,NY,6/1/1967 22:00 +Laddonia,,,MO,6/1/1967 22:00 +Yucca Valley,,LIGHT,CA,6/1/1967 22:00 +Hyde Park,,OTHER,PA,6/1/1967 23:00 +Ventura,,CIGAR,CA,6/1/1967 23:00 +Boise,,DISK,ID,6/1/1967 23:59 +Decatur,,LIGHT,AL,6/4/1967 20:30 +Tacoma,,OTHER,WA,6/5/1967 14:00 +Cedar Rapids,,OVAL,IA,6/6/1967 12:00 +El Paso,,LIGHT,TX,6/10/1967 19:00 +Poteau,,LIGHT,OK,6/12/1967 22:00 +Thomasville,BLUE,OTHER,GA,6/14/1967 15:30 +DeSoto,,LIGHT,KS,6/15/1967 0:00 +Kent,,DISK,WA,6/15/1967 0:30 +Highway,,CIRCLE,AZ,6/15/1967 2:00 +Detroit,,SPHERE,MI,6/15/1967 3:00 +China Lake,,SPHERE,CA,6/15/1967 8:00 +Edison,,OTHER,NJ,6/15/1967 12:00 +Glens Falls,,TEARDROP,NY,6/15/1967 14:00 +Oak Ridge,,SPHERE,TN,6/15/1967 19:30 +Arbuckle,,TRIANGLE,CA,6/15/1967 20:00 +Salt Lake City,,DISK,UT,6/15/1967 20:30 +Savannah,ORANGE,CHEVRON,GA,6/15/1967 22:00 +Baker,,DISK,OR,6/15/1967 23:00 +Fairfield,,CIGAR,CA,6/20/1967 18:00 +Boise,,LIGHT,ID,6/23/1967 22:30 +none,,DISK,MI,6/25/1967 13:00 +Glendale,,LIGHT,AZ,6/27/1967 23:00 +Peoria,,DISK,IL,6/30/1967 0:00 +Kansas city,,OTHER,KS,6/30/1967 1:00 +Lander,,LIGHT,WY,6/30/1967 3:00 +Oakwood,,CIRCLE,OH,6/30/1967 3:00 +Goleta,,,CA,6/30/1967 9:00 +Pine River,,LIGHT,MN,6/30/1967 13:00 +Portmouth,,DISK,RI,6/30/1967 19:00 +Reidsville,RED YELLOW,CIRCLE,NC,6/30/1967 20:00 +Slidell,,CIRCLE,LA,6/30/1967 20:00 +Lansing,,LIGHT,KS,6/30/1967 21:00 +Schofield Barracks,,CIRCLE,HI,6/30/1967 21:00 +Aiken,,OVAL,SC,6/30/1967 21:30 +Ft. Lewis,,LIGHT,WA,6/30/1967 22:00 +Glenview,,CIRCLE,IL,6/30/1967 22:00 +New Market,,TRIANGLE,AL,6/30/1967 22:00 +Maury Mountains,,FIREBALL,OR,7/1/1967 0:00 +Chatfield,,,MN,7/1/1967 1:00 +Corpus Christi,,OTHER,TX,7/1/1967 15:00 +East Hanover,,CIGAR,NJ,7/1/1967 20:30 +Colorado Springs,,TRIANGLE,CO,7/1/1967 22:30 +Fort Smith,,TRIANGLE,AR,7/5/1967 20:45 +Wyoming,,CIGAR,WY,7/12/1967 2:00 +Marshfield,,DISK,WI,7/15/1967 2:00 +Carmichaels,,CHEVRON,PA,7/15/1967 3:00 +Boydstown,,DISK,PA,7/15/1967 19:00 +Lakeville,,FORMATION,CT,7/15/1967 20:00 +Sacramento,,LIGHT,CA,7/15/1967 21:45 +Barboursville,,SPHERE,WV,7/16/1967 14:00 +Crystal Beach,,DISK,TX,7/16/1967 20:45 +West Lake,ORANGE,CIRCLE,ME,7/20/1967 9:00 +West Palm Beach,,FIREBALL,FL,7/20/1967 20:00 +Churchville,,DISK,NY,7/31/1967 18:15 +Wadsworth,,OTHER,OH,7/31/1967 22:30 +Marathon County,,DISK,WI,8/1/1967 15:30 +Coxsackie,,CIRCLE,NY,8/1/1967 19:00 +New York City,,DIAMOND,NY,8/1/1967 19:00 +Roseburg,RED,SPHERE,OR,8/1/1967 19:00 +Downey,,,CA,8/1/1967 20:00 +Davis Park,,TRIANGLE,NY,8/1/1967 21:30 +Sturgeon Bay,,CIGAR,WI,8/1/1967 21:30 +Fort Smith,,CHEVRON,AR,8/5/1967 1:00 +Fort Smith,,CHEVRON,AR,8/5/1967 21:00 +Fort Smith,,TEARDROP,AR,8/5/1967 21:00 +Middlesboro,,OVAL,KY,8/8/1967 10:00 +Babylon,,CIRCLE,NY,8/8/1967 11:00 +Alamosa,,LIGHT,CO,8/8/1967 16:00 +Little Rock,,CIRCLE,AR,8/11/1967 19:00 +Chicago,,TRIANGLE,IL,8/12/1967 19:45 +Albuquerque,,CIGAR,NM,8/15/1967 14:00 +Westford,,,MA,8/15/1967 20:00 +Melbourne,,,FL,8/15/1967 20:30 +Burien,,LIGHT,WA,8/15/1967 21:00 +Sag Harbor,GREEN,SPHERE,NY,8/15/1967 21:30 +Lee Vining,,DISK,CA,8/15/1967 22:00 +Gula,,CIRCLE,AK,8/15/1967 23:00 +Camden,,VARIOUS,NJ,8/16/1967 16:30 +Edgartown,,SPHERE,MA,8/20/1967 3:30 +Huron,,CIGAR,IN,8/20/1967 18:30 +Azusa Canyon,,,CA,8/20/1967 21:00 +Pittsburgh,,CIRCLE,PA,8/22/1967 20:00 +Fort Lauderdale,,CIGAR,FL,8/24/1967 19:00 +Princeton,,DISK,ID,8/25/1967 3:15 +Playa del Rey,,OVAL,CA,8/25/1967 23:30 +Fort Mitchell,,DISK,KY,8/29/1967 21:29 +Lansing,,,KS,8/30/1967 21:00 +Bentonia,,LIGHT,MS,9/1/1967 18:00 +Winchester,,CIGAR,KY,9/1/1967 19:30 +North Royalton,,DISK,OH,9/1/1967 23:00 +Crestone,,FIREBALL,CO,9/3/1967 21:00 +Corydon,,DISK,KY,9/5/1967 17:00 +Beatrice,,DISK,NE,9/6/1967 18:00 +Baltimore,,,MD,9/7/1967 17:00 +Hermosa Beach,RED,CIGAR,CA,9/8/1967 15:00 +Brownville,,CIRCLE,ME,9/10/1967 0:00 +Portsmouth,,OTHER,OH,9/10/1967 21:30 +Atlanta,,CIGAR,GA,9/10/1967 22:00 +Caribou,,DISK,ME,9/15/1967 0:00 +Cedar Point,,LIGHT,KS,9/15/1967 0:00 +Chiloquin,,DISK,OR,9/15/1967 19:30 +Schofield Barracks Military area,,CIRCLE,HI,9/15/1967 20:00 +Santa Rosa,,CIRCLE,CA,9/15/1967 22:00 +Woodland Hills,,TRIANGLE,CA,9/20/1967 21:00 +Tipp City,BLUE,LIGHT,OH,9/20/1967 22:30 +Albuquerque,,,NM,9/22/1967 22:30 +Lone Rock,,OVAL,WI,9/30/1967 23:00 +Chaffee,,SPHERE,NY,10/1/1967 2:00 +Greenville,,CIRCLE,IL,10/1/1967 13:00 +Minneapolis,,DISK,MN,10/1/1967 20:00 +Syracuse,,DISK,NY,10/5/1967 4:00 +Whippany,,DISK,NJ,10/6/1967 19:00 +Lantana,,OTHER,FL,10/7/1967 22:00 +Birmingham,,OVAL,AL,10/15/1967 18:00 +Hampstead,,DISK,NC,10/15/1967 21:00 +North Hollywood,,FIREBALL,CA,10/15/1967 21:00 +Saugus,,LIGHT,CA,10/15/1967 23:00 +Travis AFB,,,CA,10/15/1967 23:00 +Cherokee Village,,CIRCLE,AR,10/17/1967 23:00 +Old Greenwich,BLUE,DISK,CT,10/20/1967 18:00 +Midland,,LIGHT,TX,10/31/1967 20:00 +Ada,,CIRCLE,OK,10/31/1967 20:30 +Tiburon,,TEARDROP,CA,11/2/1967 22:00 +Fort Polk,,,LA,11/10/1967 6:00 +Clearmont,,,MO,11/10/1967 19:00 +Chicago,RED,DISK,IL,11/12/1967 21:30 +Blaine,,,WA,11/15/1967 23:30 +Silver Lake,RED,,OR,11/20/1967 21:00 +Broadview Heights,,LIGHT,OH,12/6/1967 3:30 +La Plata,,CIRCLE,MD,12/15/1967 19:30 +Bithlo,,DISK,FL,12/30/1967 17:10 +Burlington,,CIRCLE,NJ,1/1/1968 0:00 +Lawndale,,CIRCLE,CA,1/1/1968 0:00 +West Monroe,,LIGHT,LA,1/1/1968 21:00 +Wheaton,RED,CIRCLE,MD,1/1/1968 23:00 +Tucson,,DISK,AZ,1/8/1968 19:00 +Jacksonville,,,FL,1/10/1968 23:00 +American Falls,GREEN,DISK,ID,1/12/1968 22:00 +Anjean,,OVAL,WV,1/15/1968 17:30 +Gloucester,,DISK,NJ,1/20/1968 19:00 +Carpinteria,,SPHERE,CA,1/29/1968 18:00 +Dayton,,DISK,OH,1/30/1968 1:00 +on plane wing,,DISK,NY,1/31/1968 5:00 +Temple,RED,LIGHT,OK,2/15/1968 19:00 +Ironwood,,SPHERE,MI,2/25/1968 22:00 +New York City,,DISK,NY,3/1/1968 15:00 +Alamosa,,SPHERE,CO,3/12/1968 11:00 +Savannah,,CIRCLE,GA,4/1/1968 20:30 +Gainesville,,CIGAR,GA,4/3/1968 14:50 +Little Rock,,CYLINDER,AR,4/4/1968 10:00 +Westland,,DISK,MI,4/5/1968 23:00 +Columbia Station,,SPHERE,OH,4/7/1968 10:00 +Walla Walla,,TRIANGLE,WA,4/8/1968 18:45 +Scottsville,,DISK,KY,4/12/1968 21:00 +Overton,,OVAL,NE,4/15/1968 2:00 +Las Vegas,,SPHERE,NV,4/15/1968 18:30 +Silver City,,CIRCLE,IA,4/15/1968 23:30 +New Kensington,,CIRCLE,PA,4/19/1968 16:00 +Redfield,,CONE,IA,5/1/1968 13:00 +Franconia Notch,,CIRCLE,NH,5/1/1968 14:00 +Valparaiso,,,IN,5/12/1968 9:00 +Valparaiso,,,IN,5/12/1968 9:00 +Omaha,,DISK,NE,5/12/1968 21:00 +St. Louis,,OVAL,MO,5/15/1968 18:00 +Stevens Point,,SPHERE,WI,5/15/1968 19:50 +Jones,,OVAL,MI,5/15/1968 20:30 +Provo,YELLOW,SPHERE,UT,5/15/1968 21:00 +Towaco,,CIRCLE,NJ,5/20/1968 19:00 +Morehead,,LIGHT,KY,5/25/1968 20:00 +Delta,RED,SPHERE,CO,5/25/1968 21:30 +Binghamton,,DISK,NY,6/1/1968 0:00 +Clovis,,CIGAR,CA,6/1/1968 0:00 +Sanford,,FIREBALL,FL,6/1/1968 0:00 +Dayton,,OVAL,OH,6/1/1968 2:00 +Chicago,,OVAL,IL,6/1/1968 4:30 +Las Vegas,BLUE,LIGHT,NV,6/1/1968 13:00 +Camden,,CIRCLE,AR,6/1/1968 16:00 +Corry,,FIREBALL,PA,6/1/1968 17:00 +Billings,,CIRCLE,MT,6/1/1968 18:00 +Ash Grove,RED ORANGE,SPHERE,MD,6/1/1968 19:00 +Fairfield,,CIGAR,CA,6/1/1968 19:00 +Gadsden,,OTHER,AL,6/1/1968 19:00 +Columbia,,TRIANGLE,SC,6/1/1968 21:00 +Monmouth Junction,,LIGHT,NJ,6/1/1968 21:00 +Winnie,,FIREBALL,TX,6/1/1968 21:00 +Zanesville,,DISK,OH,6/1/1968 21:00 +Houston,,TRIANGLE,TX,6/1/1968 22:00 +Mississippi,,CIRCLE,MS,6/1/1968 22:00 +Renton,ORANGE,VARIOUS,WA,6/1/1968 22:00 +Minot,,CIGAR,ND,6/1/1968 23:20 +Rocky Mountains,,OTHER,CA,6/3/1968 11:45 +Rocky Mountains,,OTHER,CA,6/3/1968 11:45 +Lake Havasu City,,CIGAR,AZ,6/6/1968 11:00 +Duluth,,DISK,MN,6/6/1968 20:00 +NAS Fallon,,DISK,NV,6/6/1968 21:00 +Minot,,DISK,ND,6/6/1968 22:00 +State College,,OVAL,PA,6/6/1968 23:00 +Downers Grove,,DISK,IL,6/10/1968 11:00 +Woodland Hills,,DISK,CA,6/10/1968 20:30 +St. Paul,,CIRCLE,MN,6/12/1968 2:30 +Shrewsbury,,RECTANGLE,MA,6/12/1968 12:30 +Coyanosa,,LIGHT,TX,6/15/1968 0:00 +Panama City,,LIGHT,FL,6/15/1968 2:00 +Greensboro,GREEN BLUE,TRIANGLE,NC,6/15/1968 3:00 +Akron,,DISK,OH,6/15/1968 15:00 +Canoga Park,,CYLINDER,CA,6/15/1968 15:00 +Fort Hood,,DISK,TX,6/15/1968 16:30 +Baytown,,CIGAR,TX,6/15/1968 17:00 +Bishop,,DISK,CA,6/15/1968 17:00 +Louisville,,,KY,6/15/1968 17:00 +Oak Cliff,,DISK,TX,6/15/1968 17:00 +Oak Cliff,,DISK,TX,6/15/1968 17:00 +Pasadena,,CIGAR,TX,6/15/1968 17:00 +Livingston,,DISK,NJ,6/15/1968 18:00 +Allentown,,SPHERE,PA,6/15/1968 20:00 +Pittsburgh,,LIGHT,PA,6/15/1968 20:00 +Wytheville,,DISK,VA,6/15/1968 20:30 +Brevard,ORANGE,CIRCLE,NC,6/15/1968 21:00 +Mariposa,,,CA,6/15/1968 22:00 +Mojave Desert,,LIGHT,CA,6/15/1968 22:00 +Garden Valley,,DISK,CA,6/15/1968 22:30 +Salt Lake City,,LIGHT,UT,6/20/1968 7:00 +Fairfield,,OTHER,IA,6/20/1968 15:00 +York,,EGG,PA,6/20/1968 19:00 +Badlands,,,SD,6/20/1968 22:00 +Upper Lisle,,TRIANGLE,NY,6/21/1968 20:30 +Honolulu,,CIRCLE,HI,6/25/1968 11:00 +Wyoming,,DISK,MN,6/26/1968 13:00 +Cottonwood,,CIRCLE,AZ,6/28/1968 21:00 +Thurmont,,DISK,MD,6/29/1968 1:00 +Harahan,,LIGHT,LA,6/30/1968 0:00 +Chicago,,,IL,6/30/1968 1:00 +Whittier,BLUE,SPHERE,CA,6/30/1968 1:00 +Hueytown,,OVAL,AL,6/30/1968 9:00 +Auburn,,OTHER,MA,6/30/1968 10:00 +Ponca City,RED,LIGHT,OK,6/30/1968 11:00 +Gardendale,,DISK,AL,6/30/1968 12:00 +Gilmer,,CIGAR,TX,6/30/1968 12:00 +Yankton,,,SD,6/30/1968 12:00 +Christmas Valley,,DISK,OR,6/30/1968 13:00 +Hillsboro,GREEN,,KS,6/30/1968 14:00 +Oldtown,,DISK,MD,6/30/1968 20:00 +Stockton,,DISK,CA,6/30/1968 21:00 +Dallas,,OTHER,TX,7/1/1968 3:30 +Tempe,,TRIANGLE,AZ,7/1/1968 18:00 +Plantsville,BLUE,LIGHT,CT,7/1/1968 18:30 +New Castle,,DISK,PA,7/1/1968 19:00 +Salt Lake City,,CIRCLE,UT,7/1/1968 20:45 +Cincinnati,,DISK,OH,7/1/1968 22:00 +Santa Barbara,,FORMATION,CA,7/1/1968 22:00 +Vega,,DISK,TX,7/3/1968 20:30 +Otis Air Force Base,,LIGHT,MA,7/4/1968 21:00 +Otis Air Force Base,,LIGHT,MA,7/4/1968 21:00 +Thomasville,,,AL,7/6/1968 1:00 +Houston,,DISK,TX,7/7/1968 12:00 +Augusta,,TRIANGLE,GA,7/7/1968 20:00 +Rumson,,DISK,NJ,7/7/1968 20:00 +Nashville,,CIGAR,IN,7/9/1968 0:00 +Quantico Marine Base,,CIGAR,VA,7/10/1968 23:00 +Perth Amboy,,CIRCLE,NJ,7/13/1968 22:00 +North Little Rock,,CIRCLE,AR,7/14/1968 21:00 +Norwich,,DIAMOND,CT,7/15/1968 0:01 +Bena,,VARIOUS,VA,7/15/1968 0:50 +Phoenix,,LIGHT,AZ,7/15/1968 2:00 +Pyramid Lake Indian Reservation,,LIGHT,NV,7/15/1968 2:00 +Seattle,,CIRCLE,WA,7/15/1968 2:00 +Rosemead,,CIGAR,CA,7/15/1968 7:00 +Homeworth,,TRIANGLE,OH,7/15/1968 18:00 +Marion,BLUE,OTHER,MA,7/15/1968 19:00 +Columbus,,OTHER,MS,7/15/1968 22:00 +Stillwater,GREEN,FIREBALL,ME,7/15/1968 23:00 +Martinez,,DISK,GA,7/19/1968 23:00 +Des Moines,,CIRCLE,IA,7/20/1968 1:00 +Cleveland Heights,,OVAL,OH,7/20/1968 14:00 +Zell,,DISK,SD,7/20/1968 15:00 +San Jose,,CIRCLE,CA,7/20/1968 19:00 +Oakland,,CIGAR,CA,7/21/1968 14:00 +Brainerd,,CIRCLE,MN,7/22/1968 22:00 +Freeport,,DISK,IL,7/25/1968 23:00 +Draffenville,,DISK,KY,7/27/1968 20:00 +Corpus Christi,,OTHER,TX,8/1/1968 12:00 +Baytown,,LIGHT,TX,8/1/1968 18:00 +Coxsackie,,CIRCLE,NY,8/1/1968 19:00 +Panama City Beach,,LIGHT,FL,8/1/1968 19:00 +Georgetown,,OTHER,SC,8/1/1968 20:00 +Pollack Pines,,LIGHT,CA,8/1/1968 22:00 +Lake Dorothy,,DISK,WA,8/4/1968 23:00 +Cherry Hill,,DISK,NJ,8/8/1968 18:00 +Eugene,RED,CIGAR,OR,8/9/1968 21:00 +Vineland,,FIREBALL,NJ,8/10/1968 19:00 +Niantic,BLUE,DISK,CT,8/11/1968 20:20 +Morro Bay,,LIGHT,CA,8/12/1968 17:00 +Byron,,DISK,GA,8/14/1968 21:00 +Ft. Benning,,SPHERE,GA,8/15/1968 0:00 +Austin,,DISK,TX,8/15/1968 5:00 +Yosemite Pass,,DISK,CA,8/15/1968 11:30 +Sewickley,,CIGAR,PA,8/15/1968 12:00 +Cannon,,OVAL,DE,8/15/1968 13:00 +Church Hill,,SPHERE,PA,8/15/1968 15:00 +East Palestine,,DISK,OH,8/15/1968 18:00 +Pomona,,LIGHT,CA,8/15/1968 20:00 +Greensboro,,DISK,NC,8/15/1968 21:35 +Kansas Ciy,RED,VARIOUS,KS,8/16/1968 3:00 +Norfolk Naval Operation Base,,CIRCLE,VA,8/20/1968 3:30 +Elwood,,CIGAR,NJ,8/20/1968 18:30 +Gulf of Mexico,,OVAL,LA,9/1/1968 23:00 +Tracy,,,CA,9/9/1968 20:00 +Santa Rosa,ORANGE,CIRCLE,CA,9/9/1968 21:00 +Corydon,,DISK,KY,9/10/1968 16:00 +Colorado Springs,,SPHERE,CO,9/10/1968 19:00 +Tontitown,,,AR,9/10/1968 21:00 +White Owl,,FIREBALL,SD,9/15/1968 0:00 +Oelwein,,CIGAR,IA,9/15/1968 22:00 +covington,,CIRCLE,KY,9/20/1968 4:00 +Edison,,DISK,NJ,9/30/1968 21:00 +Edison,,DISK,NJ,9/30/1968 21:00 +Edison,,DISK,NJ,9/30/1968 21:00 +Boston,RED ORANGE,CIGAR,MA,10/1/1968 0:00 +Kennebunkport,,CIRCLE,ME,10/1/1968 20:00 +London Mills,,DISK,IL,10/5/1968 2:00 +Nunda,,DISK,SD,10/5/1968 21:30 +Hawthorne,ORANGE,CIRCLE,CA,10/10/1968 13:00 +Brevard,RED,FIREBALL,NC,10/10/1968 19:00 +Hastings,,TRIANGLE,MN,10/15/1968 2:00 +Crystal Lake,,CIGAR,IL,10/15/1968 7:30 +Bancroft,,LIGHT,WI,10/15/1968 20:00 +Fort Polk,,LIGHT,LA,10/15/1968 23:30 +Shadyside,,OVAL,MD,10/15/1968 23:30 +Ashtabula,,DISK,OH,10/20/1968 1:00 +Bullskin,,CIRCLE,PA,10/20/1968 19:00 +Wayne,,OVAL,MI,10/20/1968 20:00 +Lakeland,,DISK,FL,10/22/1968 20:00 +Walla Walla,,OTHER,WA,10/23/1968 15:00 +Springfield,,DISK,MA,10/25/1968 19:00 +Miami,,FIREBALL,FL,10/30/1968 19:00 +Loring AFB,,,ME,10/30/1968 22:00 +Enid,,FLASH,OK,11/1/1968 22:00 +Nacaome,,OVAL,MA,11/5/1968 16:00 +San Diego,,,CA,11/10/1968 3:00 +Ocean off Miami,GREEN,LIGHT,FL,11/18/1968 1:00 +Kent,,TRIANGLE,WA,11/20/1968 7:30 +Locust Fork,,LIGHT,AL,11/30/1968 21:30 +Gasconade,,,MO,12/3/1968 2:00 +Abbeville,,DISK,SC,12/10/1968 0:30 +Logansport,,CIGAR,IN,12/12/1968 3:00 +Joshua Tree National Park,,FLASH,CA,12/15/1968 21:00 +Hollywood,,OTHER,CA,12/15/1968 23:00 +Juneau,,OTHER,AK,12/20/1968 2:00 +Juneau,,OTHER,AK,12/20/1968 2:00 +Greensburg,,,PA,1/1/1969 10:00 +Farmerville,,OTHER,LA,1/1/1969 20:00 +Nevada test site,,TRIANGLE,NV,1/1/1969 23:00 +Naples,,OVAL,FL,1/4/1969 23:30 +Pittsburgh,,OTHER,PA,1/8/1969 21:30 +Butte,,RECTANGLE,MT,1/15/1969 23:00 +Miami,,SPHERE,FL,1/15/1969 23:00 +Butte,,OTHER,MT,1/19/1969 22:00 +Lake Wales,,DISK,FL,1/20/1969 19:00 +Monroe,,SPHERE,IN,2/15/1969 22:00 +Omaha,ORANGE,OVAL,NE,3/1/1969 0:00 +Oak Lawn,,DISK,IL,3/1/1969 15:00 +Perth Amboy,,LIGHT,NJ,3/1/1969 21:00 +Oroville,,CROSS,WA,3/15/1969 11:00 +Little Axe,,CIGAR,OK,3/15/1969 21:00 +Loganville,,CIGAR,GA,4/1/1969 7:00 +City of Commerce,,CIGAR,CA,4/5/1969 13:00 +At sea,,LIGHT,HI,4/15/1969 21:30 +Little Rock,,CYLINDER,AR,4/21/1969 16:30 +Youngstown,,DISK,OH,5/1/1969 5:00 +Ridgefield,,,CT,5/1/1969 6:00 +San Diego,,OVAL,CA,5/1/1969 12:00 +Wheaton,,DISK,MD,5/1/1969 20:00 +Estill,,CIGAR,SC,5/1/1969 22:00 +St. Louis,,CIGAR,MO,5/15/1969 14:00 +Dallas,,LIGHT,TX,5/15/1969 20:00 +Wilshire,ORANGE YELLOW,SPHERE,CA,5/15/1969 20:00 +Boulder,,OTHER,CO,6/1/1969 1:00 +Wacousta,ORANGE,SPHERE,MI,6/1/1969 3:00 +Kyle,,OVAL,TX,6/1/1969 12:00 +La Puenty,,FORMATION,CA,6/1/1969 12:00 +Sarasota,,LIGHT,FL,6/1/1969 12:00 +Barrington,,SPHERE,IL,6/1/1969 12:09 +Highwood,,DISK,MT,6/1/1969 13:00 +Oahu,,LIGHT,HI,6/1/1969 14:00 +Highwood,,DISK,MT,6/1/1969 17:00 +Falls Church,,OTHER,VA,6/1/1969 18:45 +HWY 77,,,TX,6/1/1969 21:00 +Lawrenceburg,,DISK,KY,6/1/1969 21:00 +Sausalito,,,CA,6/1/1969 21:00 +Akron,,LIGHT,OH,6/1/1969 22:00 +Athens,,RECTANGLE,NY,6/1/1969 22:00 +Orangevale,ORANGE,,CA,6/1/1969 23:00 +Philadelphia,,CIRCLE,MS,6/1/1969 23:00 +Chance,,DISK,MD,6/4/1969 1:00 +Windsor,,DISK,SC,6/5/1969 7:00 +Portland,,DISK,OR,6/10/1969 1:00 +North Wildwood,,TRIANGLE,NJ,6/10/1969 18:30 +Whitmore Lake,,LIGHT,MI,6/10/1969 22:00 +Land O'Lakes,RED,DISK,FL,6/14/1969 23:00 +Islip,,OTHER,NY,6/15/1969 6:00 +Grang junction colorado,,DISK,CO,6/15/1969 7:00 +Little Rock,,CYLINDER,AR,6/15/1969 15:00 +Kent,,OTHER,WA,6/15/1969 17:00 +Altoona,,OTHER,PA,6/15/1969 19:00 +Bryan,,TRIANGLE,TX,6/15/1969 20:00 +Fairfax,,OVAL,VA,6/15/1969 23:50 +Ronkonkoma,,,NY,6/21/1969 23:00 +Moline,,,IL,6/25/1969 0:00 +Fort Lauderdale,,OTHER,FL,6/29/1969 21:30 +Kyle,,OVAL,TX,6/30/1969 0:00 +Westphalia,,EGG,IN,6/30/1969 10:00 +Christmas Valley,,DISK,OR,6/30/1969 12:00 +Holliston,,,MA,6/30/1969 12:00 +Detroit,,LIGHT,MI,6/30/1969 15:00 +Indianapolis,,DISK,IN,6/30/1969 18:00 +Bristol,,,CT,7/1/1969 15:00 +Issaquah,,DISK,WA,7/1/1969 16:00 +Scottsdale,,,AZ,7/1/1969 18:00 +Whittier,,DISK,CA,7/1/1969 18:00 +New York Mills,,DISK,MN,7/1/1969 20:00 +Payson,YELLOW,DISK,AZ,7/1/1969 20:00 +Chambers County,,CIRCLE,AL,7/1/1969 22:15 +Lakewood,,OTHER,CO,7/4/1969 10:30 +Sunnyvale,,DISK,CA,7/4/1969 11:15 +Cachuma Lake,,OTHER,CA,7/4/1969 13:45 +Jacksonville Beach,,OTHER,FL,7/4/1969 20:00 +March AFB,,TRIANGLE,CA,7/5/1969 10:30 +Valdez,,DISK,AK,7/5/1969 10:53 +Fresno,,OTHER,CA,7/7/1969 22:00 +Brainerd,,TRIANGLE,MN,7/7/1969 23:00 +Miami,,LIGHT,FL,7/7/1969 23:30 +Salt Lake City,,CIRCLE,UT,7/10/1969 12:00 +Chariton,,CIRCLE,IA,7/10/1969 21:00 +Upper Dublin,,SPHERE,PA,7/10/1969 21:00 +Whitemarsh,,FIREBALL,PA,7/11/1969 21:00 +Bridgeport,,CIGAR,NY,7/14/1969 19:00 +South Glens,,FLASH,NY,7/15/1969 0:00 +Geneseo,,,IL,7/15/1969 1:00 +Enid,,,OK,7/15/1969 2:00 +Wasco,,DISK,OR,7/15/1969 9:00 +Cape Canaveral,,SPHERE,FL,7/15/1969 9:35 +Champaign,,DISK,IL,7/15/1969 14:00 +Peoria,,DISK,IL,7/15/1969 14:00 +Fairfax,,DISK,CA,7/15/1969 20:30 +Somerville,,LIGHT,OH,7/15/1969 22:30 +Burlington,,OTHER,WA,7/15/1969 23:00 +Hawley,ORANGE,CIRCLE,PA,7/25/1969 0:00 +Rocky Mount,,SPHERE,NC,7/27/1969 21:45 +Akron,,CIRCLE,OH,7/30/1969 13:00 +Summerville,,LIGHT,SC,7/31/1969 20:00 +Independence,,SPHERE,MO,8/1/1969 3:00 +Ohio,,OTHER,OH,8/1/1969 12:00 +Dayton,,DISK,OH,8/1/1969 17:30 +Fort Lauderdale,GREEN,LIGHT,FL,8/1/1969 20:30 +New Castle,,OVAL,PA,8/1/1969 21:00 +Minnetonka,,LIGHT,MN,8/1/1969 22:00 +North Haven,,DISK,CT,8/5/1969 19:00 +Barstow,,LIGHT,CA,8/10/1969 0:00 +Port Chester,,OTHER,NY,8/13/1969 0:30 +,YELLOW,CIRCLE,AZ,8/15/1969 1:00 +Baldwin City,,CIRCLE,KS,8/15/1969 1:00 +Johnstown,,TRIANGLE,PA,8/15/1969 2:00 +Port Jefferson,,DISK,NY,8/15/1969 12:00 +El Cajon,,OTHER,CA,8/15/1969 19:00 +East Barre,,CYLINDER,VT,8/15/1969 20:00 +Rockford,,OTHER,IL,8/15/1969 20:00 +Biola,,CIGAR,CA,8/15/1969 21:30 +Lamont,,FORMATION,CA,8/15/1969 22:00 +North Hollywood,ORANGE,SPHERE,CA,8/17/1969 2:30 +Enfield,,OVAL,ME,8/27/1969 21:00 +Walpole,,OVAL,MA,9/1/1969 2:30 +Austin,,SPHERE,TX,9/9/1969 21:10 +Merced,,,CA,9/15/1969 22:00 +Fairbanks,,CIGAR,AK,9/20/1969 23:00 +Raceland,,TRIANGLE,LA,9/29/1969 11:15 +San Francisco,,OVAL,CA,10/1/1969 16:00 +Millington,,FORMATION,TN,10/13/1969 21:15 +Memphis,,FORMATION,TN,10/13/1969 22:00 +Sharon,,OVAL,CT,10/15/1969 0:00 +Pearl,,CIGAR,MS,10/15/1969 6:00 +Portland,,CIGAR,OR,10/15/1969 13:00 +Wilmington,,CIRCLE,DE,10/15/1969 18:30 +Hurst,,DISK,TX,10/15/1969 19:00 +Miami,,VARIOUS,FL,10/15/1969 19:00 +Exeter,,CIGAR,NH,10/15/1969 21:00 +Alpine,,DISK,AZ,10/15/1969 23:30 +Erie,,CIRCLE,PA,10/25/1969 6:00 +Fulton,,CIGAR,NY,10/29/1969 21:00 +Fulton,,CIGAR,NY,10/30/1969 21:00 +Fulton,,CIGAR,NY,10/30/1969 21:00 +Fulton,ORANGE,CIRCLE,NY,10/31/1969 23:00 +San Juan Capistrano,,,CA,11/1/1969 7:00 +Fairbanks,,FORMATION,AK,11/1/1969 19:30 +Camp Pendleton,,LIGHT,CA,11/1/1969 22:00 +Hogans Camp Resort,,CIRCLE,CA,11/1/1969 22:00 +Buford,,DISK,GA,11/5/1969 1:00 +San Jose,GREEN,LIGHT,CA,11/13/1969 21:03 +Kenai,,LIGHT,AK,11/22/1969 17:00 +Glenmore,,CIRCLE,LA,12/15/1969 16:00 +Richmond,,CIRCLE,KY,12/15/1969 23:00 +Middletown,,FIREBALL,CT,12/23/1969 15:00 +Middletown,,CIRCLE,CT,12/23/1969 18:00 +Rogersville,RED,,AL,12/25/1969 21:38 +Joplin,,,MO,1/1/1970 2:00 +Grand Rapids,,DISK,MI,1/1/1970 12:00 +Candia,,LIGHT,NH,1/5/1970 22:00 +Hemet,BLUE,CYLINDER,CA,1/15/1970 21:00 +Lake Wales,,OVAL,FL,1/16/1970 19:00 +Danville,,EGG,NH,1/20/1970 15:00 +San Mateo,,SPHERE,CA,1/22/1970 10:00 +Denver,ORANGE GREEN BLUE,CIGAR,CO,1/24/1970 20:15 +Los Angeles,,DISK,CA,2/10/1970 20:30 +Colorado Springs,,,CO,2/15/1970 0:00 +Lafayette,,DISK,CA,2/15/1970 22:00 +Ft. Dix,,CIRCLE,NJ,2/20/1970 5:00 +Columbus,ORANGE,OTHER,GA,2/20/1970 19:30 +Cutler Ridge,,LIGHT,FL,2/22/1970 22:00 +St. Petersburg,,DISK,FL,3/10/1970 0:00 +Monessen,,CYLINDER,PA,3/12/1970 3:00 +Fort Worth,,DISK,TX,3/20/1970 16:00 +Camp Pendleton,,DISK,CA,3/21/1970 20:00 +Slocomb,,CIRCLE,AL,3/30/1970 21:00 +Interstate 40,,LIGHT,AZ,4/15/1970 3:00 +East Aurora,,EGG,NY,4/15/1970 21:30 +Evansville,,DISK,IN,4/20/1970 14:00 +New York City,,OTHER,NY,5/1/1970 0:00 +New York City,,OTHER,NY,5/1/1970 0:00 +Houston,,DISK,TX,5/1/1970 3:00 +Oak Ridge,,DISK,TN,5/1/1970 14:30 +La Grange,,CIRCLE,IL,5/1/1970 15:30 +New York City,,VARIOUS,NY,5/5/1970 19:00 +Kansas City,GREEN,LIGHT,MO,5/15/1970 16:00 +Vero Beach,,OVAL,FL,5/16/1970 17:00 +Tampa,ORANGE,OVAL,FL,5/18/1970 2:00 +Reading,,TRIANGLE,PA,5/20/1970 23:30 +Ritter,,DISK,OR,6/1/1970 0:00 +Hopewell,,DISK,VA,6/1/1970 1:00 +Burlingame,,DISK,CA,6/1/1970 11:00 +Hilmar,,DISK,CA,6/1/1970 15:00 +Rogers Dry Lake,,OVAL,CA,6/1/1970 15:30 +Columbus,,DISK,OH,6/1/1970 17:00 +Fulton,,CIRCLE,NY,6/1/1970 17:00 +Medford,,OVAL,MA,6/1/1970 19:30 +New York City,,DISK,NY,6/1/1970 19:30 +Westfield,,DISK,IA,6/1/1970 22:00 +Russia,,,OH,6/1/1970 23:00 +Cleveland,,DISK,OH,6/5/1970 0:50 +Downers Grove,,DISK,IL,6/6/1970 0:00 +Maui,,EGG,HI,6/6/1970 3:00 +Not sure,,DISK,CA,6/8/1970 10:00 +Eureka,,OVAL,CA,6/9/1970 15:00 +Kalispell,,CIGAR,MT,6/10/1970 13:00 +Princess Anne,ORANGE,OVAL,MD,6/10/1970 17:00 +Huntington,,,NY,6/10/1970 19:00 +West Ocean City,,LIGHT,MD,6/10/1970 21:00 +Geneseo,,,IL,6/15/1970 2:00 +Houston,,DISK,TX,6/15/1970 3:00 +Oxford,,OTHER,IN,6/15/1970 11:00 +Milford,,DISK,CT,6/15/1970 13:00 +San Bruno Mountain Ranges,,DISK,CA,6/15/1970 15:00 +Yorktown Heights,,LIGHT,NY,6/15/1970 18:00 +Chicago,,CIRCLE,IL,6/15/1970 19:00 +CT,,CIRCLE,RI,6/15/1970 19:30 +River Pines,,DISK,CA,6/15/1970 20:00 +Snowbank Lake,,DISK,MN,6/15/1970 21:00 +Malibu Canyon,,,CA,6/15/1970 23:30 +Whitmire,,CIRCLE,SC,6/17/1970 0:00 +Cheyenne,,CIRCLE,WY,6/20/1970 2:00 +West Jefferson,ORANGE,SPHERE,NC,6/23/1970 21:00 +Poughkeepsie,,DISK,NY,6/25/1970 15:00 +Honolulu,,SPHERE,HI,6/30/1970 1:00 +Kent,GREEN BLUE,DISK,WA,6/30/1970 23:00 +San Antonio,,OVAL,TX,7/1/1970 0:00 +Warren,,DISK,MI,7/1/1970 19:00 +Lockport,,LIGHT,IL,7/1/1970 23:30 +McLean,,OTHER,VA,7/7/1970 1:00 +La Habra,ORANGE,SPHERE,CA,7/7/1970 20:00 +Lansing,ORANGE,LIGHT,MI,7/11/1970 20:30 +Bemus Point,,OTHER,NY,7/15/1970 2:00 +Provo,,DISK,UT,7/15/1970 11:00 +South Windsor,,OVAL,CT,7/15/1970 19:00 +Indian Orchard,,,MA,7/15/1970 20:00 +Tyre,,OTHER,NY,7/15/1970 21:30 +Roseville,,DISK,CA,7/15/1970 22:00 +Pittsfield,,LIGHT,MA,7/15/1970 23:30 +Pearl Harbor,,,HI,7/16/1970 23:00 +Custer,,LIGHT,MT,7/18/1970 23:00 +Englewood,,SPHERE,FL,7/20/1970 19:00 +Kindred,,OVAL,ND,7/20/1970 19:00 +Levittown,,DISK,NY,7/20/1970 21:15 +Newark,,OVAL,NY,7/20/1970 22:00 +Grand Blanc,,,MI,7/22/1970 3:00 +Grand Blanc,,LIGHT,MI,7/22/1970 3:00 +Stockton,,FIREBALL,CA,7/22/1970 20:00 +Cottonwood,,CYLINDER,AZ,7/26/1970 23:30 +,,,NH,8/1/1970 9:30 +Racine,,,HI,8/1/1970 18:45 +Pompano Beach,,OTHER,FL,8/1/1970 20:00 +Everton,,LIGHT,MO,8/1/1970 21:00 +Palmdale,,CYLINDER,CA,8/1/1970 21:30 +Ocean City,,DISK,NJ,8/15/1970 0:30 +Newport,,RECTANGLE,RI,8/15/1970 12:00 +Seymore,,DISK,IL,8/15/1970 20:00 +Spring City,,FIREBALL,TN,8/20/1970 1:00 +Sebastian,,,FL,8/22/1970 21:30 +Toms River,,SPHERE,NJ,8/24/1970 23:50 +Brady,,CIRCLE,TX,8/26/1970 9:30 +Brady,,DISK,TX,8/26/1970 23:00 +Los Angeles,,DISK,CA,9/1/1970 14:00 +Pittsburgh,,DISK,PA,9/7/1970 23:11 +Mundelin,,DISK,IL,9/10/1970 11:00 +San Angelo,,LIGHT,TX,9/10/1970 21:30 +Deer Creek,,DIAMOND,CA,9/15/1970 7:30 +Sturgeon,,,MO,9/15/1970 20:00 +Russellton,ORANGE,TRIANGLE,PA,9/20/1970 20:00 +Quincy,BLUE,,IL,9/21/1970 18:30 +Homestead,,LIGHT,FL,9/22/1970 1:00 +New York City,,SPHERE,NY,9/22/1970 23:00 +New York City,,DISK,NY,10/1/1970 16:00 +Bentonville,,OTHER,AR,10/1/1970 17:30 +Summit Lake Indian Reservation,,OVAL,NV,10/1/1970 19:00 +Tampa,,OTHER,FL,10/1/1970 19:00 +New York City,,DISK,NY,10/1/1970 21:00 +Bellmore,,DISK,NY,10/10/1970 16:00 +Manchester,,,KY,10/10/1970 19:00 +Westland,,,MI,10/15/1970 10:00 +San Diego,,LIGHT,CA,10/15/1970 23:00 +Lindenhurst,,SPHERE,NY,10/29/1970 19:50 +Corpus Christi,,OVAL,TX,10/30/1970 3:00 +Rochester,RED,,NY,11/1/1970 20:30 +Beardstown,,LIGHT,IL,11/5/1970 1:00 +Franklin,,SPHERE,TN,11/7/1970 21:00 +Columbus,RED,SPHERE,OH,11/15/1970 20:00 +Somerville,,DISK,NJ,11/15/1970 21:00 +Union,,DISK,NJ,12/1/1970 16:30 +Albuquerque,,OTHER,NM,12/5/1970 20:00 +Newton Centre,YELLOW,OTHER,MA,12/15/1970 21:00 +Meriden,,,CT,12/20/1970 17:00 +Lake Wales,,OVAL,FL,12/21/1970 19:00 +Colorado Springs,,RECTANGLE,CO,12/24/1970 0:00 +Berlin,,CYLINDER,NJ,12/24/1970 18:00 +Tewksbury,,,MA,1/7/1971 22:00 +Waverly Hall,,CIRCLE,GA,2/1/1971 18:30 +Gorham,,LIGHT,NH,2/1/1971 19:00 +Conshohocken,,CIRCLE,PA,2/5/1971 18:45 +Havensville,,CIRCLE,KS,2/5/1971 20:30 +Everglades,,DISK,FL,2/15/1971 0:00 +Savannah,,CIRCLE,GA,2/15/1971 19:00 +Deltona,,VARIOUS,FL,2/15/1971 21:00 +Los Angeles,,OTHER,CA,3/3/1971 18:00 +Boulder Creek,,CIGAR,CA,4/1/1971 21:00 +Santa Rosa,,LIGHT,CA,4/3/1971 20:00 +Orlando,,DISK,FL,4/5/1971 18:00 +Talladega,,DISK,AL,4/5/1971 19:00 +Osceola,,DISK,IA,4/6/1971 20:00 +Carrolton,,CIRCLE,GA,4/11/1971 23:00 +Dennis,,,MA,4/14/1971 20:00 +Rural New Mexico,,TRIANGLE,NM,4/15/1971 3:15 +Burlington,,CIRCLE,NC,4/15/1971 15:30 +Thomasville,,DISK,GA,4/15/1971 21:00 +Lewisburg,,TRIANGLE,WV,5/1/1971 2:00 +Cherokee,,LIGHT,AL,5/1/1971 19:00 +Molson,,CIRCLE,WA,5/5/1971 18:00 +New Martinsville,,LIGHT,WV,5/5/1971 20:00 +Cowpen,,CONE,SC,5/15/1971 16:00 +Irmo,,CIRCLE,SC,5/20/1971 16:00 +Kennett Square,,DISK,PA,5/21/1971 18:00 +Palos Verde,,SPHERE,CA,5/29/1971 21:00 +Holliday,,DISK,TX,6/1/1971 1:00 +Newport,,LIGHT,TN,6/1/1971 1:00 +Westminster,,FLASH,CO,6/1/1971 3:00 +Albany,ORANGE,DISK,GA,6/1/1971 8:00 +Vancouver,,DISK,WA,6/1/1971 11:30 +Berne,,DISK,IN,6/1/1971 14:00 +Forrest City,,DISK,AR,6/1/1971 17:00 +Moultrie,,CIGAR,GA,6/1/1971 21:00 +Victorville,,LIGHT,CA,6/6/1971 21:00 +Fremont,,CIRCLE,CA,6/10/1971 9:00 +Allen,,SPHERE,MD,6/10/1971 10:00 +Goodman,,DISK,MO,6/10/1971 11:00 +Portage,,CIGAR,WI,6/10/1971 15:00 +Spokane,,DISK,WA,6/10/1971 15:50 +Broken Bow,,TRIANGLE,OK,6/14/1971 20:45 +Sparta,,OVAL,NJ,6/15/1971 0:45 +Brockton,,DISK,MA,6/15/1971 11:00 +Orange,,DISK,CA,6/15/1971 12:00 +Chuluota,,TRIANGLE,FL,6/15/1971 20:00 +Santa Clara,,DISK,CA,6/15/1971 20:00 +Karnes County,ORANGE,CIRCLE,TX,6/15/1971 23:10 +Sunnyvale,,OTHER,CA,6/27/1971 23:00 +Vandenberg AFB,,DISK,CA,6/30/1971 1:00 +Yellowstone National Park,,EGG,WY,6/30/1971 14:00 +Morrice,,DISK,MI,6/30/1971 20:00 +Ashland,,DISK,VA,6/30/1971 21:00 +Dayton,,OVAL,OH,6/30/1971 22:00 +Georgia,,CIRCLE,GA,7/1/1971 13:00 +Morgantown-Martinsville area,,OTHER,IN,7/1/1971 20:00 +Santa Barbara,,,CA,7/4/1971 19:00 +Liberal,,CIGAR,KS,7/4/1971 22:00 +Colorado River Highway,,CHEVRON,AZ,7/5/1971 3:00 +New Orleans,,OVAL,LA,7/10/1971 14:00 +St. Cloud,,LIGHT,MN,7/10/1971 18:00 +Danese,,,WV,7/14/1971 22:00 +Genoa,,CIGAR,WV,7/15/1971 12:00 +Big Rapids,,OVAL,MI,7/15/1971 18:00 +Steelville,,LIGHT,MO,7/15/1971 20:00 +Hancock,,FORMATION,MI,7/15/1971 22:00 +Wauwatosa,,DISK,WI,7/17/1971 21:00 +Kelso,,TRIANGLE,WA,7/20/1971 4:00 +Manchester,,LIGHT,CT,7/20/1971 21:00 +New Goshen,,DIAMOND,IN,7/20/1971 22:00 +Tucson,,TEARDROP,AZ,7/22/1971 0:15 +Allentown,,LIGHT,PA,7/25/1971 0:00 +Puyallup,,CIRCLE,WA,7/25/1971 23:40 +Bolivar,ORANGE,CIGAR,MO,7/30/1971 18:00 +Lamoille,,CIGAR,NV,8/1/1971 15:00 +Goldsmith,,LIGHT,TX,8/1/1971 20:00 +Fredonia,,,AL,8/1/1971 21:00 +Kauai,,DISK,HI,8/2/1971 20:00 +Holt,,DISK,CA,8/9/1971 23:00 +Corning,,DISK,NY,8/10/1971 22:00 +Fallsburg,,CROSS,NY,8/11/1971 13:00 +Beavercreek,,LIGHT,OH,8/15/1971 19:00 +Woodland,,LIGHT,WA,8/15/1971 23:00 +Nuevo Laredo,,FORMATION,TX,8/17/1971 18:30 +Quonsett Pt. NAS,,OTHER,RI,8/17/1971 22:15 +Oakland,,DISK,CA,8/19/1971 0:00 +North Ridgeville,,CIRCLE,OH,8/20/1971 21:30 +FREEWAY BY AIR FORCE BASE,,CIGAR,CA,9/1/1971 4:00 +Humboldt,,CIGAR,IA,9/1/1971 8:00 +Dexter,,SPHERE,ME,9/1/1971 14:00 +Buffalo,,TRIANGLE,NY,9/1/1971 15:00 +Orono,RED,RECTANGLE,ME,9/1/1971 22:00 +Forest Grove,,CIRCLE,MI,9/1/1971 22:30 +Indianapolis,,OTHER,IN,9/10/1971 19:00 +Mojave Desert,,DISK,CA,9/15/1971 1:00 +San Antonio,RED,OVAL,TX,9/15/1971 10:30 +Houston,,CIRCLE,TX,9/15/1971 18:00 +Crescent City,,,CA,9/15/1971 19:00 +Blacksburg,,DISK,SC,9/15/1971 20:00 +Hazlet,,DISK,NJ,9/15/1971 23:00 +Woodland,,DISK,WA,9/20/1971 16:00 +St. Marys,,CIGAR,PA,9/30/1971 7:30 +Pasadena,,DISK,CA,10/1/1971 22:00 +Lexington,,OVAL,NC,10/10/1971 21:00 +Menands,,CHEVRON,NY,10/12/1971 22:00 +Bristol,,DISK,CT,10/13/1971 21:00 +Lago Vista,,FORMATION,TX,10/15/1971 0:00 +Bremerton,,DISK,WA,10/15/1971 18:00 +Litchfield,,CIRCLE,CT,10/15/1971 20:30 +Tinley Park,,DISK,IL,10/15/1971 20:30 +Bristol,,TRIANGLE,CT,10/29/1971 16:00 +Holliston,,,MA,10/29/1971 18:45 +Monterey Park,,CIRCLE,CA,11/12/1971 16:45 +Lake Victor,,SPHERE,TX,11/15/1971 21:00 +Knox,,DISK,NY,11/17/1971 21:00 +Vindoen Island,YELLOW,DISK,OH,11/22/1971 8:05 +Mountainview,,TRIANGLE,CA,12/20/1971 16:00 +Oxnard,BLUE,SPHERE,CA,12/25/1971 8:00 +Seattle,,TRIANGLE,WA,1/1/1972 16:00 +Huntsville,,,AL,1/1/1972 20:00 +Gering,,LIGHT,NE,1/5/1972 19:30 +Malmstrom AFB,,,MT,1/15/1972 23:00 +Blacksburg,,LIGHT,SC,1/18/1972 21:00 +Cherry Hill,,,NJ,2/20/1972 6:30 +Salinas,,CIGAR,CA,3/1/1972 23:30 +Scottsville,,DISK,KY,3/4/1972 2:00 +Chicago,,OTHER,IL,3/8/1972 18:00 +Los Lunas,,,NM,3/15/1972 1:00 +Panama City,,SPHERE,FL,3/15/1972 19:00 +Millers Falls,,,MA,3/15/1972 22:00 +Anaheim,,CYLINDER,CA,3/20/1972 17:30 +Boca Raton,,TEARDROP,FL,3/24/1972 20:30 +Indianapolis,,DISK,IN,4/1/1972 19:00 +Sulphur Springs,BLUE,DISK,TX,4/1/1972 20:00 +New Mexico,,,NM,5/1/1972 1:00 +Moline,,SPHERE,IL,5/1/1972 18:00 +Port Penn,BLUE,,DE,5/1/1972 18:30 +Hico,,DISK,TX,5/5/1972 3:00 +Livingston,,FIREBALL,MT,5/8/1972 16:00 +Schaumburg,,OVAL,IL,5/15/1972 22:00 +Wilmington,,OTHER,DE,5/30/1972 17:00 +Gautier,,OTHER,MS,6/1/1972 0:00 +Oxford,,LIGHT,MI,6/1/1972 0:00 +Two Egg Mariana,,CIRCLE,FL,6/1/1972 2:30 +Burnsville,,CYLINDER,NC,6/1/1972 6:00 +Nevada Desert,,OVAL,NV,6/1/1972 12:00 +Austin,,LIGHT,TX,6/1/1972 18:00 +Farmers Branch,,SPHERE,TX,6/1/1972 18:00 +Shelter Cove,,DISK,CA,6/1/1972 19:20 +Monterey,,,CA,6/1/1972 20:00 +Stratford,,CIGAR,WI,6/1/1972 20:00 +Newnan,,,GA,6/1/1972 21:00 +Greenville,GREEN,CIRCLE,SC,6/1/1972 21:30 +Bilxoi,,DISK,MS,6/1/1972 22:00 +Sierra Vista,,SPHERE,AZ,6/1/1972 22:00 +Texas City,ORANGE,LIGHT,TX,6/1/1972 22:00 +Winnebago,,TRIANGLE,IL,6/1/1972 22:00 +Moreland,,LIGHT,KY,6/1/1972 22:30 +Vienna,,CIGAR,MO,6/1/1972 23:00 +Tate,,CIRCLE,GA,6/1/1972 23:30 +Asheville,,OTHER,NC,6/2/1972 5:00 +Lyndhurst,,OVAL,OH,6/7/1972 14:00 +Anderson,RED ORANGE,CIRCLE,CA,6/9/1972 13:00 +Millerton,BLUE,DISK,NY,6/10/1972 0:00 +LaCoste,,CIRCLE,TX,6/10/1972 5:00 +Broadelbin,,LIGHT,NY,6/11/1972 22:00 +Allentown,,CHEVRON,PA,6/14/1972 22:15 +Ohio City,,DISK,OH,6/15/1972 0:00 +Two Egg,,CIRCLE,FL,6/15/1972 2:00 +Union Grove,,FORMATION,AL,6/15/1972 20:30 +Chermont,,OTHER,FL,6/15/1972 21:00 +Greensboro,RED,DISK,NC,6/15/1972 21:00 +Lowell,,OTHER,OH,6/15/1972 22:00 +Provo,,DISK,UT,6/16/1972 18:30 +Pocono Mts.,,LIGHT,PA,6/20/1972 5:30 +Arlington Heights,,DISK,IL,6/20/1972 16:00 +Arlington Heights,,DISK,IL,6/20/1972 16:00 +Los Angeles,,LIGHT,CA,6/20/1972 20:00 +Oregon City,,TRIANGLE,OR,6/22/1972 3:15 +Williamsport,,CIGAR,PA,6/22/1972 18:00 +Millerton,,DISK,NY,6/22/1972 23:45 +Buffalo,RED,DISK,NY,6/24/1972 23:00 +Albany,,CIGAR,NY,6/25/1972 15:00 +Arroy Seco,GREEN,CIRCLE,CA,6/30/1972 0:00 +Fairfield,,FIREBALL,CA,6/30/1972 0:00 +Loomis,,,CA,6/30/1972 0:00 +Roanoke,,,VA,6/30/1972 3:30 +Roanoke,,OVAL,FL,6/30/1972 3:30 +Burnsville,,CIRCLE,NC,6/30/1972 5:00 +Dallas,GREEN,,TX,6/30/1972 12:00 +Sanford,,CIRCLE,FL,6/30/1972 14:00 +Fort Stockton,,OTHER,TX,6/30/1972 15:00 +Beachwood,,DISK,OH,6/30/1972 16:30 +Tarpon Springs,,LIGHT,FL,6/30/1972 18:00 +Lenoir,,DISK,NC,6/30/1972 19:00 +Hutsonville,,DISK,IL,6/30/1972 20:00 +Conway,,DISK,NC,6/30/1972 21:00 +Greensboro,ORANGE,LIGHT,NC,6/30/1972 21:00 +Highway,,CIRCLE,KS,6/30/1972 21:00 +Fort Collins,,OTHER,CO,6/30/1972 23:00 +Osowatomie,,CIRCLE,KS,6/30/1972 23:00 +Goshen,BLUE,OVAL,WI,7/1/1972 0:00 +Stone Mountain,,CIRCLE,GA,7/1/1972 3:00 +Salt Lake,,OVAL,UT,7/1/1972 12:00 +Bedford Park,,OTHER,IL,7/1/1972 15:00 +Provo,,DISK,UT,7/1/1972 19:00 +Campbell,,OVAL,CA,7/1/1972 21:30 +Rehobeth Beach,RED YELLOW,DISK,DE,7/4/1972 21:00 +Powell,,FIREBALL,WY,7/5/1972 1:00 +Park City,,DISK,KS,7/5/1972 14:00 +Bryan,,TRIANGLE,TX,7/9/1972 21:00 +Southington,,DISK,CT,7/12/1972 12:15 +East Brunswick,,DISK,NJ,7/15/1972 0:00 +Sioux Falls,,CYLINDER,SD,7/15/1972 0:00 +Kekaha Highway,,CIRCLE,HI,7/15/1972 13:00 +Brea,,OTHER,CA,7/15/1972 16:00 +Indianapolis,RED YELLOW,CIGAR,IN,7/15/1972 17:00 +Morton,ORANGE,TRIANGLE,MN,7/15/1972 17:00 +Chesterfield,,CIGAR,NH,7/15/1972 20:00 +Houston,,LIGHT,TX,7/15/1972 20:00 +Cincinnati,,TRIANGLE,PA,7/15/1972 21:00 +El Paso,,LIGHT,TX,7/15/1972 22:00 +Medford,,LIGHT,OR,7/15/1972 22:00 +Mariemont,,OVAL,OH,7/15/1972 23:00 +Williamsport,,FIREBALL,PA,7/20/1972 15:00 +Wayland,,LIGHT,MA,7/21/1972 22:00 +West Pittson,,CIRCLE,PA,7/28/1972 0:00 +Mojave,,LIGHT,CA,7/30/1972 18:00 +Phoenix,,DISK,AZ,8/1/1972 15:00 +Ponca City,,LIGHT,OK,8/2/1972 2:00 +Tucson,,CYLINDER,AZ,8/2/1972 23:00 +High Island,,LIGHT,TX,8/4/1972 23:00 +Bloomington,,CIRCLE,IL,8/10/1972 12:10 +Cincinnati,,DIAMOND,OH,8/10/1972 16:00 +Milford,,CIRCLE,CT,8/14/1972 6:00 +Ellensburg,,CIRCLE,WA,8/15/1972 1:00 +Mt. Sterling,,DISK,OH,8/15/1972 1:00 +Roanoke,,CIRCLE,VA,8/15/1972 9:00 +Aberdeen,,TRIANGLE,MD,8/18/1972 1:30 +Milwaukie,,LIGHT,OR,8/20/1972 19:00 +Sayreville,GREEN,LIGHT,NJ,8/22/1972 22:30 +Coldwater,,TRIANGLE,AL,8/25/1972 8:30 +Cincinnati,,DIAMOND,OH,8/25/1972 17:00 +Waukesha,,OVAL,WI,8/28/1972 1:15 +Bixby South,,CIRCLE,OK,8/28/1972 23:15 +Anchorage,BLUE,CIRCLE,AK,8/30/1972 1:30 +Onawa,RED,DISK,IA,9/1/1972 10:00 +Lago Vista,,LIGHT,TX,9/1/1972 19:00 +Loveland,,DISK,OH,9/1/1972 22:00 +Panama City,,,FL,9/15/1972 3:00 +Tupelo,,OVAL,MS,9/15/1972 7:00 +Maple Valley,,DISK,WA,9/15/1972 18:00 +Rensselaer,,LIGHT,IN,9/15/1972 21:00 +Hermann,ORANGE GREEN,DISK,MO,9/20/1972 16:00 +Hartville,,CHEVRON,MO,9/20/1972 17:30 +Sweet Home,,,OR,10/1/1972 0:00 +Potwin,,,KS,10/1/1972 1:00 +Denton,,,TX,10/1/1972 4:00 +Mosheim,,DISK,TX,10/1/1972 20:00 +Monroe,,RECTANGLE,WA,10/1/1972 23:00 +Pickens,,CHEVRON,SC,10/1/1972 23:00 +Greenville,,LIGHT,SC,10/4/1972 22:00 +Fortuna,,SPHERE,CA,10/5/1972 21:45 +Eatonton,,DISK,GA,10/8/1972 18:45 +Harlan County,,CIRCLE,KY,10/10/1972 19:00 +West Bloomfield,,DISK,MI,10/10/1972 22:30 +North Tarrytown,,DISK,NY,10/15/1972 16:00 +New Albany,,DISK,IN,10/17/1972 21:00 +Wellsville,,DISK,NY,10/25/1972 20:00 +Monroeville,,CYLINDER,AL,10/29/1972 15:30 +Winding Stair Camp Ground,,LIGHT,OK,11/1/1972 1:00 +Trinidad,,LIGHT,CA,11/1/1972 8:00 +Crescent City,,,CA,11/1/1972 19:30 +Hiawassee,,CIRCLE,GA,11/1/1972 22:00 +Tucson,,TRIANGLE,AZ,11/8/1972 20:00 +Lebanon,,OVAL,TN,11/20/1972 21:00 +Chattanooga,,CIRCLE,TN,12/1/1972 17:00 +Eddington,,CIRCLE,ME,12/1/1972 19:00 +Osowatomie,,CIRCLE,KS,12/1/1972 20:00 +Colorado Springs,,DISK,CO,12/24/1972 2:00 +Chattanooga,,OVAL,TN,1/1/1973 23:30 +Mussel Shoals,ORANGE,OVAL,AL,1/8/1973 21:00 +Farmington,,LIGHT,NM,1/12/1973 3:00 +Scranton,,RECTANGLE,PA,1/14/1973 19:00 +Glendora,,DISK,CA,1/28/1973 23:38 +Honolulu,BLUE,SPHERE,HI,2/1/1973 22:00 +Port Sulphur,,CIRCLE,LA,2/1/1973 23:00 +Roanoke,,SPHERE,VA,2/2/1973 21:00 +Fort Rucker,,LIGHT,AL,2/3/1973 16:00 +Houston,,RECTANGLE,TX,2/10/1973 16:00 +Lake Okeechoobee,,,FL,2/15/1973 22:00 +Santa Fe,,,NM,3/1/1973 1:00 +Winston-Salem,,LIGHT,NC,3/1/1973 6:00 +St. Augustine,,LIGHT,FL,3/1/1973 20:00 +Plain,,OTHER,WA,3/12/1973 2:00 +New Orleans,,CIRCLE,LA,3/13/1973 4:00 +Inkster,,FIREBALL,MI,3/15/1973 5:00 +Hartford,,TRIANGLE,CT,3/15/1973 17:00 +Sacramento,,CYLINDER,CA,3/23/1973 17:00 +Lufkin,,DISK,TX,4/1/1973 0:00 +Houston,,DISK,TX,4/5/1973 21:30 +Goose Creek,BLUE,CIRCLE,SC,4/15/1973 11:00 +Mayfield,,CIGAR,KY,4/15/1973 15:00 +Glenolden,,OVAL,PA,4/15/1973 18:30 +Oakcliff,RED GREEN,CIRCLE,TX,4/16/1973 16:00 +Grand Chenier,,SPHERE,LA,4/25/1973 18:30 +Ocean Springs,,TRIANGLE,MS,4/28/1973 20:00 +Gaithersburg,GREEN,DISK,MD,5/1/1973 9:00 +Brownfield,,LIGHT,TX,5/1/1973 14:00 +Rockville,,OTHER,MD,5/1/1973 20:00 +Texas City,,DISK,TX,5/1/1973 20:00 +Hampton,ORANGE,FIREBALL,AR,5/5/1973 3:00 +San Luis Obispo,,,CA,5/14/1973 16:00 +Madison,,DISK,AL,5/14/1973 20:00 +Tacoma,,SPHERE,WA,5/15/1973 1:30 +Chugiak,,RECTANGLE,AK,5/15/1973 22:00 +Huntsville,,DISK,AL,5/19/1973 20:10 +Huntsville,,CYLINDER,AL,5/21/1973 20:00 +Peoria,,OVAL,IL,5/23/1973 0:00 +Bentonville,,OTHER,AR,6/1/1973 0:00 +Schenectady,,CIRCLE,NY,6/1/1973 0:00 +Sultan,,CIRCLE,WA,6/1/1973 0:00 +Folkston,,LIGHT,GA,6/1/1973 2:00 +Oak Harbor,,,WA,6/1/1973 3:00 +San Rafael,,OVAL,CA,6/1/1973 13:00 +Gainsville,,SPHERE,GA,6/1/1973 18:00 +Eddington,,CIRCLE,ME,6/1/1973 19:00 +Landis,,LIGHT,NC,6/1/1973 19:30 +Austin,,SPHERE,TX,6/1/1973 21:00 +Fredericktown,,LIGHT,MO,6/1/1973 21:00 +Pensacola,,CIRCLE,FL,6/1/1973 21:00 +Honolulu,,DISK,HI,6/1/1973 22:30 +Larchwood,,DIAMOND,IA,6/6/1973 22:00 +Brockton,,SPHERE,MA,6/6/1973 23:00 +La Porte,,DISK,TX,6/7/1973 15:00 +Clearfield,,LIGHT,PA,6/8/1973 17:00 +St. Charles,,SPHERE,MO,6/10/1973 21:00 +Irwin,,OTHER,PA,6/12/1973 21:00 +Blackhawk,,CIRCLE,CO,6/15/1973 0:00 +Mechanicsburg,RED,DISK,PA,6/15/1973 0:00 +Fort Lawn,,OVAL,SC,6/15/1973 6:00 +Huntington Beach,,CIGAR,CA,6/15/1973 6:00 +Los Alamos,,CIGAR,NM,6/15/1973 8:00 +Hillsboro,RED,CIRCLE,WV,6/15/1973 14:00 +Bridgeport,,DISK,AL,6/15/1973 15:30 +Tampa,,CIGAR,FL,6/15/1973 19:30 +River Vale,,CIRCLE,NJ,6/15/1973 20:00 +Decatur,,CIRCLE,AL,6/15/1973 21:00 +Medaryville,,DISK,IN,6/15/1973 21:00 +Ballwin,,DISK,MO,6/15/1973 21:30 +Upper Freehold,RED GREEN,DISK,NJ,6/15/1973 21:50 +Citrus Heights,,CHEVRON,CA,6/15/1973 22:00 +Hampton,BLUE,FORMATION,VA,6/15/1973 22:00 +Whitesburg,,LIGHT,KY,6/15/1973 22:00 +Calera,,DISK,AL,6/15/1973 22:30 +San Jose,,TRIANGLE,CA,6/15/1973 22:30 +Weslaco,ORANGE,FORMATION,TX,6/15/1973 23:00 +Teterboro Airport,,CIGAR,NJ,6/21/1973 2:00 +Jackson,,OVAL,TN,6/21/1973 21:00 +Hinsdale,,DISK,MA,6/22/1973 10:00 +East Liverpool,,SPHERE,OH,6/25/1973 22:00 +Los Alamos,,,NM,6/30/1973 0:00 +Ocala,,,FL,6/30/1973 2:00 +Whitesburg,,CIGAR,KY,6/30/1973 17:30 +West Allis,,LIGHT,WI,6/30/1973 20:00 +Newport Beach,,FORMATION,CA,6/30/1973 23:00 +Dobson,,DISK,MT,7/1/1973 0:00 +Erie,,LIGHT,PA,7/1/1973 0:00 +Titusville,,,PA,7/1/1973 0:00 +Gaithersburg,GREEN,DISK,MD,7/1/1973 8:00 +Perth,ORANGE,LIGHT,NY,7/1/1973 20:00 +Powell,,SPHERE,OK,7/1/1973 20:00 +Macon,,DISK,GA,7/1/1973 21:00 +Richmond,,OTHER,CA,7/1/1973 21:00 +Alabama,,,AL,7/1/1973 22:00 +Wolf Lake,,LIGHT,IN,7/1/1973 22:00 +Fort Huachuca,,OTHER,AZ,7/1/1973 22:30 +Oakcliff,,DISK,TX,7/4/1973 8:00 +Powell,,,WY,7/5/1973 1:00 +Stockton,,VARIOUS,CA,7/5/1973 20:00 +Portland,,FIREBALL,OR,7/7/1973 17:30 +Odessa,,DISK,TX,7/7/1973 18:00 +Odessa,,DISK,TX,7/7/1973 18:00 +Odessa,,DISK,TX,7/7/1973 18:00 +Greensboro,,CIGAR,NC,7/8/1973 20:30 +Bar Harbor,,CIRCLE,ME,7/10/1973 0:00 +Norwalk,,CIGAR,CT,7/12/1973 0:00 +Green Bay,,OTHER,WI,7/14/1973 1:00 +Lexington,,OVAL,NC,7/14/1973 20:00 +Rochester,,SPHERE,NY,7/15/1973 16:30 +Columbus?,,OTHER,OH,7/15/1973 18:00 +Poland,,CONE,OH,7/15/1973 18:00 +Connellsville,,TRIANGLE,PA,7/15/1973 20:00 +Cleveland,,OVAL,OH,7/15/1973 21:00 +Dallas,,CIRCLE,TX,7/15/1973 21:00 +Decatur,,TRIANGLE,GA,7/15/1973 21:00 +Asheville,ORANGE,DISK,NC,7/17/1973 21:00 +Martinsburg,,DISK,WV,7/20/1973 19:00 +Salem,RED,CIRCLE,IL,7/20/1973 21:30 +Kenosha,,OTHER,WI,7/22/1973 1:00 +Warm Springs,GREEN,DISK,OR,7/22/1973 9:00 +Gilmanton,,CIRCLE,NH,7/22/1973 19:45 +Nags Head,GREEN,,NC,7/23/1973 20:10 +Blackfoot,,TRIANGLE,ID,7/24/1973 2:24 +St. Croix Falls,,DIAMOND,WI,7/24/1973 5:32 +Milwaukee,,,WI,7/25/1973 20:00 +Burlington,,DISK,NC,7/31/1973 18:20 +Morrow,,TRIANGLE,GA,8/1/1973 0:00 +Scituate,,TRIANGLE,MA,8/1/1973 0:00 +Kittery,,FORMATION,ME,8/1/1973 4:00 +Steubenville,,CYLINDER,OH,8/1/1973 13:00 +Appleton,ORANGE,,WI,8/1/1973 22:00 +Piedmont,,OVAL,MO,8/1/1973 22:00 +Charles City Co.,,CIGAR,VA,8/2/1973 21:30 +San Antonio,,SPHERE,TX,8/3/1973 21:45 +Irvington,,OVAL,NJ,8/3/1973 22:00 +Victory Lakes,,OVAL,NJ,8/5/1973 20:00 +Denver,,TRIANGLE,CO,8/6/1973 22:00 +Kenosha,,DISK,WI,8/10/1973 14:50 +West Hazleton,,DISK,PA,8/12/1973 20:00 +Mriemont,,OVAL,OH,8/12/1973 23:30 +San Diego,,,CA,8/15/1973 0:00 +Phillipsburg,,DISK,NJ,8/15/1973 19:00 +Farmers Branch,,DISK,TX,8/15/1973 20:00 +South China,,SPHERE,ME,8/15/1973 21:00 +Hudson,RED,TRIANGLE,KS,8/15/1973 21:30 +Takoma Park,,SPHERE,MD,8/15/1973 22:00 +Brocton,,DISK,NY,8/15/1973 23:00 +Yellville,,LIGHT,AR,8/19/1973 19:00 +Poland,,TRIANGLE,OH,8/20/1973 19:00 +Hallandale,,DISK,FL,8/25/1973 21:30 +Robbins AFB,BLUE,CIRCLE,GA,9/1/1973 20:00 +Elyria,,,OH,9/3/1973 9:00 +Lewisburg,,TRIANGLE,PA,9/8/1973 20:00 +Moss Point,,CIRCLE,MS,9/10/1973 17:00 +San Antonio,,CIRCLE,TX,9/12/1973 23:00 +Nassau,RED,DISK,FL,9/14/1973 23:00 +Laguna Beach,,,CA,9/15/1973 2:00 +Little Meadows,RED BLUE,OVAL,PA,9/15/1973 19:15 +Baldwinsville,,,NY,9/15/1973 19:30 +North Royalton,,DISK,OH,9/15/1973 19:30 +Loomis,RED,LIGHT,CA,9/15/1973 23:00 +Jefferson,,OVAL,IA,9/16/1973 23:30 +Mansfield,,OVAL,OH,9/20/1973 10:00 +Salina,,LIGHT,KS,9/20/1973 10:30 +Mansfield,,CIGAR,OH,9/20/1973 15:15 +Mansfield,,CIGAR,OH,9/20/1973 15:30 +Houston,,CHEVRON,TX,9/20/1973 17:15 +Philip,,DISK,SD,9/22/1973 15:00 +Cape Girardeau,,DISK,MO,9/22/1973 18:02 +Graybill,,DISK,IN,9/23/1973 0:00 +Strongsville,,OTHER,OH,9/28/1973 0:00 +Wooster,,TRIANGLE,OH,9/30/1973 22:30 +Montezuma,,SPHERE,IN,10/1/1973 1:00 +Virginia Beach,,DISK,VA,10/1/1973 15:00 +Bloomington,,LIGHT,IN,10/1/1973 20:00 +North St. Paul,,TRIANGLE,MN,10/1/1973 20:30 +Waco,,TRIANGLE,TX,10/1/1973 20:45 +Roseburg,,CYLINDER,OR,10/1/1973 21:00 +Beatty,,DISK,NV,10/1/1973 21:30 +Hixson,RED,OVAL,TN,10/1/1973 21:30 +Valley City,,DISK,OH,10/1/1973 22:45 +El Centro,,LIGHT,CA,10/6/1973 9:00 +Tupelo,,DISK,MS,10/8/1973 18:30 +Atwater,,OTHER,CA,10/8/1973 22:30 +Niantic,GREEN,DISK,CT,10/10/1973 19:00 +Jupiter,,EGG,FL,10/11/1973 16:45 +Birmingham,GREEN,DISK,AL,10/12/1973 19:00 +Weldon,RED,OVAL,NC,10/13/1973 18:00 +Spokane,,CIRCLE,WA,10/15/1973 12:40 +Collierville,,DISK,TN,10/15/1973 16:00 +Chazy,,LIGHT,NY,10/15/1973 17:30 +Englewood,,DISK,TN,10/15/1973 18:00 +Houston,,CIRCLE,TX,10/15/1973 19:30 +Millington,,DISK,TN,10/15/1973 20:00 +Warner Robins,,CIGAR,GA,10/17/1973 21:30 +Montgomery,,LIGHT,AL,10/17/1973 23:30 +Baltimore,,DISK,MD,10/18/1973 0:00 +Charlotte,,OVAL,NC,10/18/1973 20:00 +New York City,,,NY,10/20/1973 0:00 +Carthage,,FIREBALL,IN,10/20/1973 23:30 +Federalsburg,,DISK,MD,10/21/1973 14:30 +Baltimore,,DISK,MD,10/21/1973 17:30 +Baltimore,,DISK,MD,10/21/1973 18:30 +Jacksonville Beach,,VARIOUS,FL,10/24/1973 0:00 +Centerville,,OTHER,OH,10/24/1973 18:45 +Centerville,,CIRCLE,OH,10/24/1973 19:30 +,,FIREBALL,OH,10/25/1973 23:30 +Green River,,DISK,UT,10/30/1973 4:00 +Green River,RED,DISK,UT,10/30/1973 4:00 +Wilson,,CIGAR,OK,10/31/1973 19:30 +Huntington,ORANGE,,NY,11/1/1973 19:00 +Orange County,ORANGE,OVAL,CA,11/9/1973 1:00 +Boone,,DISK,NC,11/10/1973 20:00 +West Chester,,DISK,PA,11/11/1973 19:00 +New York City,,DISK,NY,11/15/1973 0:00 +Key West,RED,DISK,FL,11/15/1973 17:30 +Colbert Heights,YELLOW GREEN,DISK,AL,11/15/1973 18:00 +Talahassee,,LIGHT,FL,11/15/1973 23:00 +Kapaa,,CIGAR,HI,11/23/1973 19:00 +Florida,,OVAL,FL,11/24/1973 20:00 +Vienna,,CIGAR,VA,11/25/1973 22:00 +Avoca,RED,,IA,12/3/1973 19:00 +Glen Rose,,LIGHT,AR,12/5/1973 19:00 +Kirkland,,TRIANGLE,WA,12/12/1973 21:00 +Olympia,RED,DIAMOND,WA,12/15/1973 1:00 +Colorado,ORANGE,DISK,CO,12/23/1973 16:00 +Kent,,CIGAR,WA,1/1/1974 1:00 +Carbondale,,CIRCLE,PA,1/9/1974 21:00 +Terre Haute,,DISK,IN,1/15/1974 5:00 +Madison,RED YELLOW GREEN,OVAL,ME,1/18/1974 19:00 +Pawtucket,,DISK,RI,1/24/1974 0:00 +Pawtucket,,DISK,RI,1/24/1974 22:00 +San Diego,,,CA,1/30/1974 23:00 +Woodlawn,BLUE,FIREBALL,VA,2/14/1974 21:00 +Orange,,FLASH,CA,2/15/1974 20:00 +Simpson,BLUE,,PA,2/15/1974 22:10 +Indianapolis,ORANGE,DISK,IN,2/19/1974 3:00 +Metarie,,DISK,LA,3/15/1974 6:00 +Tula,,CIRCLE,MS,3/15/1974 18:00 +Moosic,,CIRCLE,PA,3/15/1974 19:30 +Cotton County,ORANGE,RECTANGLE,OK,3/15/1974 22:00 +Santa Rosa,,DISK,CA,3/15/1974 22:30 +Wewahitchka,,DISK,FL,3/21/1974 23:00 +Aurora,,VARIOUS,CO,4/1/1974 7:30 +Mill Valley,,CIRCLE,CA,4/1/1974 13:00 +Birmingham,,DISK,AL,4/2/1974 23:30 +Petaluma,,SPHERE,CA,4/4/1974 7:30 +Hallsville,,SPHERE,OH,4/10/1974 7:10 +Chicago,,OVAL,IL,4/15/1974 18:00 +Santa Ana,RED,SPHERE,CA,4/15/1974 22:00 +Ventura,,CIRCLE,CA,4/15/1974 22:00 +Wooster,,SPHERE,OH,4/15/1974 22:00 +Dexter,,DISK,MO,4/15/1974 23:00 +Galesburg,,DISK,MI,4/20/1974 2:15 +Rosalia,GREEN,CHEVRON,WA,4/23/1974 20:00 +Houston,,LIGHT,TX,4/23/1974 21:00 +Brooksville,,DISK,ME,4/25/1974 20:30 +Port Everglades,,,FL,4/29/1974 3:15 +Ft. Bragg,,CIRCLE,NC,5/1/1974 1:00 +Franklin,,OVAL,KY,5/1/1974 17:00 +Athens,RED,CIRCLE,GA,5/10/1974 19:00 +Taylorsville,RED ORANGE,DISK,NC,5/14/1974 21:00 +Jackson,,,MS,5/15/1974 0:00 +Esopus,,OTHER,NY,5/15/1974 1:30 +Bristow,,CIGAR,OK,5/15/1974 13:00 +Howard Beach,,DISK,NY,5/15/1974 15:15 +Atlanta,RED YELLOW BLUE,DISK,GA,5/15/1974 20:00 +Smyrna,,DISK,GA,5/15/1974 20:30 +Aurora,,DISK,OR,5/15/1974 21:00 +Passaic,,CIGAR,NJ,5/15/1974 21:00 +Jonesboro,,DISK,GA,5/20/1974 20:30 +Mescalero Indian Reservation,,RECTANGLE,NM,5/22/1974 5:30 +Spring Lake,,OVAL,MI,5/27/1974 12:00 +Lyndhurst,,CIRCLE,NJ,5/27/1974 17:00 +Bardstown,,DISK,KY,6/1/1974 0:00 +East Liverpool,,FIREBALL,OH,6/1/1974 0:00 +Garrison,,DISK,NY,6/1/1974 0:00 +Marquette,,OVAL,MI,6/1/1974 0:00 +Napa,,CIGAR,CA,6/1/1974 0:00 +Peebles,GREEN,CIRCLE,OH,6/1/1974 0:00 +Wilmington,,TRIANGLE,NC,6/1/1974 2:00 +Lakeside to North Bend,,LIGHT,OR,6/1/1974 6:00 +Ore City,,CIRCLE,TX,6/1/1974 10:00 +Colorado Springs,,CIRCLE,CO,6/1/1974 12:00 +Terrytown,RED ORANGE,OTHER,LA,6/1/1974 13:00 +Tucson,,CYLINDER,AZ,6/1/1974 13:00 +Niles,,FIREBALL,CA,6/1/1974 15:00 +Boulder Creek,,OTHER,CA,6/1/1974 19:00 +Davidson County,,DISK,NC,6/1/1974 21:00 +N. Miami,,FIREBALL,FL,6/1/1974 21:00 +Douglasville,,OTHER,GA,6/1/1974 22:00 +Ovid,,,CO,6/1/1974 22:00 +Placerville,,CHEVRON,CA,6/1/1974 22:00 +Madison,,SPHERE,CT,6/1/1974 22:30 +Manistee,,,MI,6/1/1974 23:00 +Milo,,LIGHT,MO,6/1/1974 23:00 +Green Cove Springs,,CIRCLE,FL,6/6/1974 14:00 +Bells,,TRIANGLE,TX,6/6/1974 23:00 +Commerce,RED GREEN BLUE,LIGHT,TX,6/7/1974 21:00 +Tulsa,,,OK,6/8/1974 5:00 +Merkel,,DISK,TX,6/10/1974 14:30 +Kentucky,,OTHER,KY,6/10/1974 19:00 +Rexburg,,OVAL,ID,6/12/1974 3:00 +La Mesa,RED,TRIANGLE,CA,6/14/1974 5:30 +Westline,,LIGHT,PA,6/15/1974 0:00 +Erie,,CIRCLE,PA,6/15/1974 2:45 +Roseville,,TRIANGLE,MI,6/15/1974 8:00 +Shady Point,,DISK,OK,6/15/1974 12:00 +Janesville,,OTHER,WI,6/15/1974 12:20 +Albany,,TRIANGLE,NY,6/15/1974 13:00 +Austin,,OTHER,MN,6/15/1974 13:00 +Live Oak,,TRIANGLE,CA,6/15/1974 15:00 +Bellingham,,OTHER,MA,6/15/1974 15:30 +San Diego,,SPHERE,CA,6/15/1974 20:00 +Kingston,RED GREEN BLUE,,MA,6/15/1974 21:00 +Pensacola,,SPHERE,FL,6/15/1974 21:00 +Truckee,,CIGAR,CA,6/15/1974 22:00 +Calera,,DISK,AL,6/15/1974 22:30 +Paulsboro,,OVAL,NJ,6/17/1974 13:00 +Gibralter,ORANGE,LIGHT,MI,6/20/1974 1:00 +Ashland,,DISK,OH,6/20/1974 5:30 +Minneapolis,,LIGHT,MN,6/20/1974 16:00 +Fort Scott,,DIAMOND,KS,6/20/1974 20:00 +South Haven,,DISK,MI,6/25/1974 9:00 +Caribou Maine,,DISK,ME,6/30/1974 0:00 +Columbus,,DISK,GA,6/30/1974 0:00 +Springfield,,CIRCLE,MO,6/30/1974 9:30 +Los Angeles,,SPHERE,CA,6/30/1974 12:00 +Hutchinson,,CIGAR,KS,6/30/1974 14:00 +New York,,DISK,NY,6/30/1974 18:30 +Camden,,RECTANGLE,NJ,6/30/1974 19:00 +Herkimer,,CIGAR,NY,6/30/1974 21:00 +Kingston,,DISK,MA,6/30/1974 21:00 +New York City,,CIRCLE,NY,6/30/1974 21:00 +Minot,,OTHER,ND,6/30/1974 22:00 +Bedford,,LIGHT,VA,6/30/1974 23:00 +Maple Valley,,LIGHT,WA,7/1/1974 6:00 +Benton,,FIREBALL,KY,7/1/1974 20:00 +Mishawaka,,CIRCLE,IN,7/1/1974 20:00 +Lynden,,LIGHT,WA,7/1/1974 21:30 +Plantation,,OVAL,FL,7/2/1974 22:00 +North Carolina,,CIRCLE,NC,7/4/1974 0:00 +Jackson,,TRIANGLE,MS,7/5/1974 23:00 +Council Bluffs,RED,DISK,IA,7/7/1974 3:00 +Boston,,CIRCLE,MA,7/7/1974 21:00 +Marion,,SPHERE,OH,7/10/1974 0:00 +Mosinee,,OVAL,WI,7/12/1974 10:10 +Conrath,,DISK,WI,7/13/1974 0:00 +Valley Falls,YELLOW,EGG,KS,7/15/1974 2:30 +Live Oak,,TRIANGLE,CA,7/15/1974 3:30 +Jermyn,RED,FIREBALL,PA,7/15/1974 5:30 +Vining,,OTHER,MN,7/15/1974 13:00 +Carthage,,,MS,7/15/1974 14:00 +Evanston,ORANGE,DISK,IL,7/15/1974 17:00 +Overland Park,,LIGHT,KS,7/15/1974 19:00 +Hampton,,LIGHT,VA,7/15/1974 20:00 +Jacksonville,,TRIANGLE,FL,7/15/1974 21:00 +Ottawa,,,IL,7/15/1974 21:00 +Bridgeview,,TRIANGLE,IL,7/15/1974 22:00 +Valencia,,DISK,CA,7/15/1974 22:00 +New Albany,RED GREEN,TRIANGLE,IN,7/15/1974 22:30 +Fort Lauderdale,,FIREBALL,FL,7/16/1974 1:00 +Scottsville,,CROSS,KY,7/16/1974 23:00 +Bremerton,,DELTA,WA,7/18/1974 20:00 +Marfa,,OVAL,TX,7/20/1974 2:00 +Morgan City,,TRIANGLE,LA,7/20/1974 3:00 +Salem,,CIGAR,MA,7/20/1974 18:30 +Woodbridge,,DISK,NJ,7/20/1974 22:00 +Newark,,DISK,DE,7/21/1974 21:00 +Apple Valley,,DISK,MN,7/21/1974 22:30 +Gulf of Mexico,,DISK,FL,7/22/1974 14:00 +Salida,,DISK,CO,7/22/1974 22:30 +Hagerstown,,DISK,MD,7/24/1974 19:00 +East Berkshire,ORANGE,LIGHT,VT,7/24/1974 21:00 +Hagerstown,,DISK,MD,7/24/1974 22:00 +Bridgeport,RED,CIRCLE,CT,7/25/1974 21:00 +Claremont,,OVAL,NC,7/26/1974 20:30 +Cohasset,,LIGHT,MA,7/27/1974 2:30 +Wilton,,CYLINDER,CT,8/1/1974 3:00 +Grafton,,CIRCLE,MA,8/1/1974 19:00 +Chester,,TRIANGLE,CA,8/1/1974 21:00 +Clarkston,,OVAL,GA,8/1/1974 21:00 +Pemberton,,CIRCLE,NJ,8/1/1974 21:30 +Springfield,,CIGAR,OH,8/1/1974 22:00 +Lexington,,DISK,KY,8/1/1974 22:45 +Campbell,,TRIANGLE,CA,8/1/1974 23:00 +Warren,,CIRCLE,OH,8/2/1974 16:00 +Morganfield,,CIRCLE,KY,8/7/1974 20:00 +East Haven,,LIGHT,CT,8/8/1974 3:00 +Mentor,,DISK,OH,8/8/1974 10:00 +Lake Zurich,,SPHERE,IL,8/8/1974 22:00 +Spokane,,CIGAR,WA,8/9/1974 12:00 +Spokane,,OTHER,WA,8/9/1974 12:00 +New Rochelle,,OVAL,NY,8/10/1974 1:00 +New Rochelle,,OVAL,NY,8/10/1974 13:00 +Greenville,,RECTANGLE,SC,8/10/1974 18:00 +Boardman,,DISK,OH,8/12/1974 20:30 +Kent,,DISK,OH,8/15/1974 7:00 +Pullman,,CIRCLE,MI,8/15/1974 17:00 +Gold Beach,,CIRCLE,OR,8/15/1974 20:00 +Niagara Falls,,TRIANGLE,NY,8/15/1974 20:00 +Redondo,,DISK,WA,8/15/1974 20:00 +Miami,,CIGAR,FL,8/15/1974 20:30 +Canon AFB,,LIGHT,NM,8/15/1974 22:00 +Girard,,,OH,8/15/1974 22:00 +Chubbuck,,OTHER,ID,8/15/1974 22:30 +Somersworth,,DISK,NH,8/16/1974 19:30 +King City,GREEN,OVAL,CA,8/20/1974 22:00 +Delta,,DISK,UT,8/20/1974 23:45 +Holloman AFB,,OTHER,NM,8/21/1974 11:00 +North Windham,,DISK,ME,8/23/1974 2:30 +Bridgeport,,TRIANGLE,CT,8/23/1974 19:30 +Colliers,,DISK,WV,8/25/1974 21:00 +Rochester Hills,,DISK,MI,8/29/1974 22:00 +Owensboro,,,KY,9/1/1974 16:00 +Cumberland,,LIGHT,MD,9/1/1974 17:30 +Auburn,,RECTANGLE,AL,9/1/1974 20:00 +Bremen,,DISK,IN,9/1/1974 21:00 +Sitka,,DISK,AK,9/1/1974 23:00 +Murfreesboro,,DISK,TN,9/3/1974 22:00 +Denver,,OTHER,CO,9/11/1974 20:00 +Columbia,,DISK,SC,9/13/1974 21:00 +Piedmont,,DISK,OK,9/14/1974 3:00 +Kelso,,TRIANGLE,WA,9/15/1974 2:00 +Chico,,CHEVRON,CA,9/15/1974 3:00 +"Heber Springs, Greers Ferry Lake",,DISK,AR,9/15/1974 17:20 +Detroit,,DISK,MI,9/15/1974 18:30 +Hattiesburg,,TRIANGLE,MS,9/15/1974 20:00 +Westerlo,,LIGHT,NY,9/15/1974 20:00 +no data,,DISK,KY,9/15/1974 21:00 +Woodburn,,RECTANGLE,IN,9/15/1974 21:30 +Independence,,OTHER,MO,9/15/1974 22:30 +Jamul,,FIREBALL,CA,9/22/1974 17:00 +Spanaway,,OTHER,WA,9/23/1974 21:30 +Baskin,,OVAL,LA,9/30/1974 1:00 +Denton,,,TX,10/1/1974 1:00 +Weirton,,SPHERE,WV,10/1/1974 18:00 +Deerwood,,,MN,10/1/1974 20:00 +Chester,,LIGHT,NJ,10/1/1974 21:00 +Chicago,,OVAL,IL,10/6/1974 22:00 +Yakima,,CONE,WA,10/7/1974 19:50 +Willow Beach,,LIGHT,AZ,10/10/1974 17:00 +Hudson,,OTHER,MA,10/10/1974 19:30 +Hudson,,LIGHT,KS,10/10/1974 23:00 +Fulton,ORANGE,DIAMOND,MO,10/14/1974 16:30 +Oran,,,MO,10/14/1974 20:00 +North of Colorado Springs,,LIGHT,CO,10/15/1974 1:30 +Oak Creek,,CIGAR,CO,10/15/1974 2:30 +Memphis,,CIGAR,TN,10/15/1974 18:00 +Bath,,OVAL,OH,10/15/1974 18:30 +San Francisco,,LIGHT,CA,10/15/1974 22:30 +La Junta,GREEN,OTHER,CO,10/15/1974 23:00 +Hopkinsville,,CIRCLE,KY,10/18/1974 1:00 +San Jose,,FIREBALL,CA,10/20/1974 7:00 +Houston,RED,CIRCLE,TX,10/20/1974 19:30 +Owensboro,,LIGHT,KY,10/20/1974 21:00 +Oneonta,,CIRCLE,AL,10/22/1974 20:00 +Eastland,,SPHERE,UT,10/27/1974 21:00 +Rockford,,LIGHT,IL,10/31/1974 7:00 +Chicago,,,IL,10/31/1974 17:45 +Nashville,,LIGHT,TN,11/1/1974 1:00 +Alpine,,LIGHT,TX,11/1/1974 20:00 +Davenport,,LIGHT,IA,11/1/1974 20:00 +Oil City,,,PA,11/1/1974 21:00 +New Orleans,RED,OTHER,LA,11/2/1974 0:00 +Tullahoma,,DISK,TN,11/4/1974 20:00 +Charlotte,,CIRCLE,NC,11/9/1974 22:00 +York,,TRIANGLE,ME,11/10/1974 21:00 +New Orleans,,DISK,LA,11/13/1974 22:00 +West Orange,,,NJ,11/15/1974 0:00 +Cordova,,DISK,AK,11/15/1974 9:00 +Aiken,RED GREEN,VARIOUS,SC,11/15/1974 21:00 +Higgins Lake,,CIRCLE,MI,11/15/1974 21:00 +Huber Heights,,DISK,OH,11/15/1974 21:00 +Deland,,LIGHT,FL,11/15/1974 22:00 +Van Nuys,,TEARDROP,CA,11/15/1974 23:30 +Juneau,,OTHER,WI,11/16/1974 17:01 +Higgens Lake,,LIGHT,MI,11/17/1974 21:00 +West Milton,ORANGE,CIRCLE,OH,11/25/1974 21:00 +Verbena,RED,SPHERE,AL,11/25/1974 22:00 +Fort Polk,,,LA,12/1/1974 1:00 +Cullowhee,,LIGHT,NC,12/1/1974 20:30 +Cullowhee,,SPHERE,NC,12/1/1974 22:30 +Presque Isle,,OTHER,ME,12/5/1974 20:30 +Pauncetony,,,PA,12/10/1974 10:00 +Palmdale,,DISK,CA,12/12/1974 3:00 +Beaumont,,CIGAR,TX,12/15/1974 2:00 +Goree,,LIGHT,TX,1/1/1975 1:00 +Jamestown,,SPHERE,NY,1/1/1975 3:00 +Phoenix,,DISK,AZ,1/1/1975 12:00 +Silver Hill,,DISK,MD,1/1/1975 13:00 +Waverly Hall,,SPHERE,GA,1/1/1975 19:00 +Denver,,DISK,CO,1/1/1975 20:00 +Houston,,DISK,TX,1/4/1975 22:40 +Uxbridge,,LIGHT,MA,1/13/1975 1:30 +Cairo,,TRIANGLE,NY,1/15/1975 16:00 +Pipestone,,SPHERE,MN,1/15/1975 16:00 +Miami,,LIGHT,FL,1/15/1975 19:00 +Springfield,,,PA,1/15/1975 21:15 +Albany,,LIGHT,NY,1/17/1975 18:00 +Pasco,,SPHERE,WA,2/2/1975 11:30 +Mukwanago,,CHEVRON,WI,2/15/1975 21:00 +Akin,RED,TRIANGLE,IL,2/18/1975 23:00 +Fall City,,,WA,3/1/1975 8:00 +Roseville,,DISK,CA,3/1/1975 21:00 +Cowiche,,DISK,WA,3/6/1975 21:00 +Fort Lauderdale,,DISK,FL,3/7/1975 19:00 +Detroit,,SPHERE,MI,3/8/1975 19:00 +New Cambria,,RECTANGLE,KS,3/15/1975 19:00 +Cowiche,,CIRCLE,WA,3/15/1975 21:00 +Carlsbad,,DISK,CA,3/20/1975 16:00 +St. Marys,RED,CIGAR,PA,4/1/1975 7:00 +New Boston,,LIGHT,TX,4/1/1975 19:30 +Reno,RED YELLOW,CIGAR,NV,4/1/1975 20:00 +Waterford,,CIRCLE,CT,4/1/1975 23:00 +Gilkey,,DISK,NC,4/10/1975 22:00 +Houston,,,TX,4/12/1975 7:00 +Florida,,SPHERE,FL,4/15/1975 0:00 +Huntsville,,LIGHT,AL,4/15/1975 0:00 +Highway location,,LIGHT,FL,4/15/1975 1:30 +Onalaska,,DISK,WI,4/15/1975 2:00 +Tifton,,SPHERE,GA,4/15/1975 2:00 +Waterford,,DISK,PA,4/18/1975 7:40 +Mount Vernon,,OVAL,VA,4/20/1975 17:00 +Kettering,,DISK,OH,4/23/1975 3:45 +Oil City,,DISK,PA,4/25/1975 0:00 +Alexandria,,FIREBALL,VA,5/1/1975 2:40 +Reno,,DISK,NV,5/1/1975 17:00 +Jacksonville,,SPHERE,NC,5/5/1975 2:00 +Lodi,RED,LIGHT,OH,5/7/1975 2:00 +Holmen,,DISK,WI,5/15/1975 0:00 +Little Rock,,CIGAR,AR,5/15/1975 1:00 +Denton,,OTHER,TX,5/15/1975 13:00 +Pomeroy,,DISK,WA,5/15/1975 16:00 +Lithia Springs,,DISK,GA,5/15/1975 20:00 +San Antonio,RED,DISK,TX,5/23/1975 17:00 +Delroy,,TRIANGLE,OH,5/25/1975 17:00 +Rochester,,FLASH,NY,5/25/1975 23:00 +Mountain Top,,TRIANGLE,PA,5/30/1975 20:00 +Clovis,,LIGHT,NM,6/1/1975 0:00 +Douglas,,CIRCLE,AZ,6/1/1975 0:10 +Benton Harbor,,DISK,MI,6/1/1975 2:00 +Iowa City,BLUE,DISK,IA,6/1/1975 3:00 +Cerritos,,,CA,6/1/1975 12:00 +Daleville,,DISK,IN,6/1/1975 12:00 +Lakewood,,CIGAR,CA,6/1/1975 12:00 +Nashville,,TRIANGLE,TN,6/1/1975 12:00 +Cold Spring,,OVAL,NY,6/1/1975 13:00 +Youngstown,,CIRCLE,OH,6/1/1975 13:00 +Milwaukee,,VARIOUS,WI,6/1/1975 15:00 +Milford,,DISK,MA,6/1/1975 18:00 +Scott AFB,,,IL,6/1/1975 18:00 +Cannon AFB,,,NM,6/1/1975 18:46 +Denver,,CIRCLE,CO,6/1/1975 19:00 +Half Moon Bay,,OVAL,CA,6/1/1975 19:00 +Silver Spring,,DISK,PA,6/1/1975 19:00 +Williams,,OVAL,CA,6/1/1975 20:00 +Kenmore,BLUE,DISK,NY,6/1/1975 20:30 +Kenmore,,OVAL,NY,6/1/1975 20:30 +Carthage,,,TX,6/1/1975 21:00 +Central,,FIREBALL,OK,6/1/1975 21:00 +Goffstown,,SPHERE,NH,6/1/1975 21:00 +Newnan,ORANGE,SPHERE,GA,6/1/1975 21:00 +Grand Island,,OVAL,NY,6/1/1975 21:30 +Robstown,,OVAL,TX,6/1/1975 21:30 +Clovis,,,NM,6/1/1975 22:00 +Kennett Square,,OTHER,PA,6/1/1975 22:00 +Richmond,,DISK,VA,6/1/1975 22:00 +Sciotoville,,OTHER,OH,6/1/1975 22:00 +Sedro-Woolley,,CIRCLE,WA,6/1/1975 22:00 +Longview,,DISK,TX,6/1/1975 23:00 +Minneapolis,,TRIANGLE,MN,6/1/1975 23:00 +Nashville,YELLOW,LIGHT,TN,6/1/1975 23:59 +Charlotte,,DISK,NC,6/6/1975 17:00 +Lexington,,CIRCLE,KY,6/6/1975 22:00 +Winchester,,FIREBALL,IN,6/8/1975 21:00 +Albany,,CIGAR,NY,6/10/1975 2:00 +Roberts Creek Mtn.,,,NV,6/10/1975 2:30 +Rockdale,,OTHER,TX,6/10/1975 20:00 +Albany,,LIGHT,NY,6/10/1975 22:00 +Bon Air,,CIGAR,VA,6/15/1975 0:00 +Cocoa Beach,,TRIANGLE,FL,6/15/1975 2:00 +Hallandale,,DISK,FL,6/15/1975 3:00 +Praire Creek,,,IN,6/15/1975 5:00 +Rifle,,DISK,CO,6/15/1975 10:00 +Noxen,,CIGAR,PA,6/15/1975 12:30 +Fulton,,DISK,NY,6/15/1975 13:00 +Baton Rouge,,DISK,LA,6/15/1975 16:00 +Reisterstown,GREEN,FORMATION,MD,6/15/1975 18:00 +Nulato,,LIGHT,AK,6/15/1975 18:30 +Riverside,,DISK,CT,6/15/1975 18:30 +Minneapolis,,TRIANGLE,MN,6/15/1975 20:00 +Detroit,,TRIANGLE,MI,6/15/1975 21:00 +Levittown,,LIGHT,PA,6/15/1975 21:00 +Burna,,LIGHT,KY,6/15/1975 22:00 +Florence,,RECTANGLE,SC,6/15/1975 22:00 +Angeles Crest,,OTHER,CA,6/15/1975 23:00 +Scotts,,OVAL,MI,6/15/1975 23:00 +Warren,,CIRCLE,OH,6/20/1975 0:00 +Brainerd,,CIRCLE,MN,6/20/1975 2:00 +East Grand Forks,,LIGHT,MN,6/20/1975 2:00 +Spokane,,DISK,WA,6/20/1975 11:30 +Brainerd,,CIGAR,MN,6/20/1975 12:00 +Bedford,,LIGHT,MA,6/20/1975 23:30 +Lincoln,,OVAL,IL,6/22/1975 9:00 +Arlington,,TRIANGLE,TX,6/23/1975 21:00 +Arlington,,TRIANGLE,TX,6/23/1975 21:00 +Arlington,,TRIANGLE,TX,6/23/1975 21:00 +Greenwich,,SPHERE,CT,6/30/1975 0:00 +Pensacola,,OTHER,FL,6/30/1975 0:00 +Rocky Point,,LIGHT,NY,6/30/1975 0:00 +San Jose,,,CA,6/30/1975 0:00 +Yorba Linda,,FORMATION,CA,6/30/1975 0:00 +Fairmont,,CIGAR,MN,6/30/1975 1:00 +Kimberly,,TRIANGLE,WI,6/30/1975 3:00 +Springfield,,CIRCLE,MO,6/30/1975 9:30 +Louisville,,CIRCLE,KY,6/30/1975 11:00 +Bourbonnais,BLUE,OVAL,IL,6/30/1975 13:00 +Keys,,OTHER,FL,6/30/1975 13:00 +Denison,,,IA,6/30/1975 17:00 +Anderson,,CIRCLE,SC,6/30/1975 20:00 +Miami,,SPHERE,FL,6/30/1975 20:00 +Miami Beach,,LIGHT,FL,6/30/1975 20:00 +Windsor,RED,DISK,NC,6/30/1975 21:00 +Lancaster,,,PA,6/30/1975 21:30 +Angeles Crest Forest,,LIGHT,CA,6/30/1975 23:00 +El Monte,,OTHER,CA,6/30/1975 23:00 +Salt Lake City,,LIGHT,UT,7/1/1975 3:00 +Coarsegold,GREEN,CIRCLE,CA,7/1/1975 9:00 +Sandy Springs,,LIGHT,SC,7/1/1975 13:20 +Marsh Creek,,CIGAR,CA,7/1/1975 16:00 +Kansas City,,OVAL,MO,7/1/1975 20:00 +Fair Haven,,SPHERE,NY,7/4/1975 10:00 +Marley Park,,CIRCLE,MD,7/4/1975 13:00 +Golden,BLUE,SPHERE,CO,7/4/1975 14:00 +Franconia Notch,,CONE,NH,7/5/1975 23:00 +Fort Washakie,,LIGHT,WY,7/7/1975 19:00 +Bellevue,,CIGAR,WA,7/8/1975 22:00 +Midway,,OTHER,KY,7/8/1975 22:30 +Manchester,,,CT,7/10/1975 1:00 +Marlborough,,DISK,CT,7/10/1975 19:00 +Mt. Hope,,TRIANGLE,WI,7/11/1975 20:00 +Cassville,,,WI,7/11/1975 22:00 +Shoreline,,EGG,WA,7/13/1975 19:30 +Girard,,,MI,7/14/1975 21:00 +Pound,,DISK,VA,7/15/1975 1:30 +Angleton,,SPHERE,TX,7/15/1975 5:00 +Mason,,TEARDROP,MI,7/15/1975 9:30 +Flathead Lake,,DISK,MT,7/15/1975 13:00 +Paul,,CIGAR,ID,7/15/1975 14:00 +Green Bay,,TRIANGLE,WI,7/15/1975 16:00 +Birmingham,,DISK,AL,7/15/1975 17:00 +Morehead,,CIRCLE,KY,7/15/1975 17:00 +Ramsey,,DISK,MN,7/15/1975 18:30 +Triadelphia,,DISK,WV,7/15/1975 18:30 +Decatur,,DISK,IL,7/15/1975 19:00 +Brea,,,CA,7/15/1975 20:00 +Wittman,,TRIANGLE,MD,7/15/1975 20:00 +Estes Park,,LIGHT,CO,7/15/1975 20:30 +Raleigh,,DISK,NC,7/15/1975 21:00 +Reseda,GREEN,FORMATION,CA,7/15/1975 21:00 +Smithland,,TRIANGLE,KY,7/15/1975 21:00 +Dover,,OTHER,NJ,7/15/1975 22:00 +Turbeville,GREEN,LIGHT,SC,7/15/1975 22:00 +Grinnell,,RECTANGLE,IA,7/15/1975 23:00 +Dumas,ORANGE,OVAL,TX,7/18/1975 19:00 +Spokane,,SPHERE,WA,7/19/1975 23:30 +Albion,BLUE,LIGHT,NY,7/20/1975 1:30 +Blackstone,,DISK,MA,7/20/1975 12:00 +Tupelo,,CIGAR,MS,7/20/1975 20:30 +Murphysboro,,,IL,7/21/1975 0:30 +Indiana,,CONE,PA,7/22/1975 2:00 +Cranston,,LIGHT,RI,7/22/1975 21:00 +Raleigh,,,NC,7/22/1975 21:00 +Port Washington,RED,DISK,WI,8/1/1975 3:15 +Sunland,,EGG,CA,8/1/1975 4:00 +Lopez Island,,CIRCLE,WA,8/1/1975 12:00 +Savannah`,,CIGAR,GA,8/1/1975 14:30 +Ravenna,,CYLINDER,OH,8/1/1975 18:00 +Pittsburgh,ORANGE YELLOW,FIREBALL,PA,8/1/1975 20:30 +James Island,,DISK,SC,8/2/1975 17:00 +Bristolville,,DISK,OH,8/4/1975 14:00 +Richmond,,OVAL,VA,8/5/1975 16:35 +Richmond,,EGG,VA,8/5/1975 18:31 +Walla Walla,GREEN,LIGHT,WA,8/7/1975 21:30 +Damarascotta Lake,,DISK,ME,8/8/1975 21:30 +Dekalb,,LIGHT,IL,8/8/1975 22:00 +River Ridge,ORANGE,CIRCLE,LA,8/10/1975 18:00 +Anthony,,TEARDROP,KS,8/12/1975 20:00 +Brigham City,,DISK,UT,8/15/1975 0:00 +Luning,,DISK,NV,8/15/1975 1:00 +Ricketts Glen SP,,OTHER,PA,8/15/1975 2:00 +Kingman,,CYLINDER,AZ,8/15/1975 3:00 +Orange Lake,,DISK,FL,8/15/1975 6:00 +Beverly,,DISK,MA,8/15/1975 18:00 +Grenada,,DISK,MS,8/15/1975 18:00 +McKenzie,,CONE,TN,8/15/1975 19:30 +Albion,,CIGAR,NY,8/15/1975 20:00 +Lapeer,RED,OTHER,MI,8/15/1975 20:15 +Fildale,,TRIANGLE,VA,8/15/1975 22:00 +Solomon,,FIREBALL,KS,8/15/1975 23:00 +Terre Haute,,CIRCLE,IN,8/15/1975 23:00 +Highlands,,FIREBALL,TX,8/16/1975 20:00 +Indianapolis,,TRIANGLE,IN,8/16/1975 21:00 +Dalton,,CIRCLE,MA,8/17/1975 23:00 +Santa Barbara,,DISK,CA,8/19/1975 1:00 +Portland,,DISK,OR,8/19/1975 21:00 +Fort Wayne,,OTHER,IN,8/20/1975 1:00 +Jackson,RED GREEN,TRIANGLE,NJ,8/20/1975 2:00 +Orange Lake,,DISK,FL,8/20/1975 7:00 +Brewster,,CYLINDER,NY,8/20/1975 16:30 +Joppa,RED ORANGE,CIRCLE,MD,8/20/1975 22:00 +White Bird,,LIGHT,ID,8/30/1975 22:00 +White Bird,,LIGHT,ID,8/30/1975 22:00 +Fullerton,,OTHER,CA,9/1/1975 20:00 +Independence,,DISK,MO,9/1/1975 20:00 +Valencia,,OVAL,CA,9/1/1975 22:00 +Palmyra,,CIRCLE,NJ,9/4/1975 0:00 +Union Grove,,CIGAR,AL,9/4/1975 2:00 +Sonoma Mountain,,LIGHT,CA,9/5/1975 20:00 +Vineland,,DISK,NJ,9/9/1975 15:00 +Meriden,YELLOW,DISK,CT,9/10/1975 19:45 +Grand Coulee,,CIGAR,WA,9/11/1975 21:00 +Anderson,,TRIANGLE,IN,9/12/1975 18:00 +Prescott,,,AZ,9/15/1975 0:00 +Prescott,,CIGAR,AZ,9/15/1975 0:00 +Prescott,,FIREBALL,AZ,9/15/1975 0:00 +Haines City,ORANGE,DISK,FL,9/15/1975 18:00 +North Branch,,CHEVRON,NJ,9/15/1975 18:30 +Pennsville,,DISK,NJ,9/15/1975 21:30 +Roscommon,,OVAL,MI,9/20/1975 18:30 +Wimberley,,LIGHT,TX,9/20/1975 19:00 +Weston,,CIRCLE,CT,9/23/1975 2:00 +Little Valley,,LIGHT,OR,9/25/1975 22:30 +St. Agatha,,LIGHT,ME,9/29/1975 21:00 +"Kincheloe Air Force Base, Michigan",,TRIANGLE,MI,10/1/1975 21:00 +Maricopa,ORANGE,VARIOUS,AZ,10/1/1975 22:00 +North Charleston,,LIGHT,SC,10/10/1975 17:00 +Warwick,,DISK,RI,10/13/1975 16:30 +Greenwich,,LIGHT,CT,10/15/1975 0:00 +Rockville,,DISK,MD,10/15/1975 2:30 +Rockville,,DISK,MD,10/15/1975 3:00 +Polland Junction,,CIRCLE,AZ,10/15/1975 3:30 +Killeen,,VARIOUS,TX,10/15/1975 6:30 +Batesville,,SPHERE,MS,10/15/1975 16:00 +Marianna,,DISK,FL,10/15/1975 16:00 +Marion,GREEN,LIGHT,KS,10/15/1975 16:00 +Scituate,ORANGE,CIRCLE,RI,10/15/1975 17:00 +Nesconset,,DISK,NY,10/15/1975 18:00 +Williston,,DISK,ND,10/15/1975 18:00 +Monroe,,DISK,NY,10/15/1975 19:00 +Swannanoa,,OTHER,NC,10/15/1975 19:00 +Montpelier,,OTHER,VT,10/15/1975 19:30 +Ryegate,,CIRCLE,MT,10/15/1975 22:00 +Collinsville,,TRIANGLE,AL,10/15/1975 23:00 +Greenwich,,CIRCLE,CT,10/17/1975 19:00 +McDermott,,SPHERE,NV,10/20/1975 1:30 +Watkins Glen,,,NY,10/20/1975 3:15 +Enterprise,,OTHER,AL,10/20/1975 22:00 +Indian Rocks Beach,,LIGHT,FL,10/21/1975 23:20 +Baytown,,LIGHT,TX,10/24/1975 22:00 +Muscatine,ORANGE,CIRCLE,IA,10/25/1975 22:25 +Limestone,,LIGHT,ME,10/27/1975 0:00 +Cleves,,CIGAR,OH,10/28/1975 18:00 +Allen,,DISK,KY,10/30/1975 20:00 +Kent,,CIRCLE,CT,10/30/1975 21:00 +Camp Pendelton,,FLASH,CA,11/1/1975 2:00 +Natchez,,OVAL,MS,11/1/1975 17:00 +Ware Shoals,,CIRCLE,SC,11/1/1975 23:00 +Winslow,BLUE,FIREBALL,AZ,11/5/1975 0:00 +Beloit,,DISK,WI,11/9/1975 21:15 +Falls Church,,CIRCLE,VA,11/13/1975 21:00 +Woodbridge,,CIRCLE,VA,11/13/1975 21:15 +Albany,,CIRCLE,NY,11/15/1975 20:00 +Catskill,,FORMATION,NY,11/15/1975 20:00 +Anderson,,DISK,IN,11/15/1975 21:00 +Girard,,OVAL,OH,11/15/1975 21:30 +Miami,,DISK,FL,11/15/1975 23:00 +Townsend,,CIRCLE,MA,11/15/1975 23:00 +Miami,,TEARDROP,FL,11/16/1975 3:00 +Miami,,OVAL,FL,11/20/1975 1:00 +Hudson,,,NY,11/20/1975 17:00 +Yonkers,,LIGHT,NY,11/20/1975 20:00 +,RED,TRIANGLE,WV,11/25/1975 23:00 +Reno,,DISK,NV,11/27/1975 16:30 +Edgewater,,FIREBALL,FL,12/1/1975 2:00 +Hollywood,,DISK,CA,12/1/1975 4:00 +Louisville,ORANGE,FIREBALL,KY,12/1/1975 22:30 +Jacksonville,,TRIANGLE,FL,12/7/1975 11:45 +Clermont,,DISK,IN,12/18/1975 0:30 +Sunnyvale,BLUE,LIGHT,CA,12/20/1975 21:00 +no data,,DISK,IN,12/20/1975 22:30 +North Attleboro,,SPHERE,MA,12/21/1975 19:00 +Bowie,,OVAL,AZ,12/23/1975 2:00 +Winters Freeway,,RECTANGLE,CA,12/24/1975 21:00 +Tampa,,TRIANGLE,FL,12/25/1975 23:00 +New Britghton,RED GREEN BLUE,SPHERE,MN,12/26/1975 20:00 +Webb,,DISK,MS,12/31/1975 19:30 +Lisle,,LIGHT,IL,12/31/1975 22:30 +Fort Gardens,,FLASH,GA,1/1/1976 21:00 +Dayton,,OTHER,OH,1/2/1976 12:00 +Cannon AFB,,DISK,NM,1/6/1976 1:00 +Nashville,,TRIANGLE,TN,1/8/1976 20:00 +"Fairbanks, Trans Alaskan Pipeline haul road 250 mi N of",,,AK,1/11/1976 23:00 +Thousand Oaks,,VARIOUS,CA,1/15/1976 20:00 +Millis,,,MA,1/20/1976 2:00 +Ft. Yukon,,OVAL,AK,2/3/1976 13:00 +Whiteland,,,IN,2/3/1976 22:00 +Fern Park,,,FL,2/11/1976 22:30 +Ft. Yukon,BLUE,OVAL,AK,2/13/1976 13:30 +Flint,,RECTANGLE,MI,2/14/1976 11:55 +Memphis,,DISK,TN,2/14/1976 18:00 +Spooner,,SPHERE,WI,2/15/1976 1:00 +Sacramento,YELLOW,OTHER,CA,2/15/1976 20:30 +Baker,,OVAL,MT,2/20/1976 22:00 +Pahokee,,OVAL,FL,3/15/1976 0:00 +Fountain,,DISK,CO,3/15/1976 12:00 +Bennington,,DISK,VT,3/20/1976 23:30 +Houston,,DISK,TX,3/24/1976 21:00 +Riverside,,TEARDROP,CA,4/15/1976 1:30 +Americus,,RECTANGLE,GA,4/15/1976 13:30 +Winchester,,DISK,KY,4/15/1976 20:30 +Marianna,,OVAL,FL,4/18/1976 17:00 +Dayton,,VARIOUS,OH,4/20/1976 13:30 +Brownsville,,CIRCLE,TN,4/25/1976 21:00 +Fricot City,,DISK,CA,4/30/1976 20:00 +St. Thomas,,DIAMOND,PA,5/1/1976 12:00 +Eastland,,,TX,5/1/1976 16:00 +Coventry,,FORMATION,RI,5/1/1976 20:00 +Lakewood,,TRIANGLE,CO,5/1/1976 22:00 +Miami,,SPHERE,FL,5/1/1976 23:00 +Covelo,,DISK,CA,5/10/1976 11:00 +New Danville,,DISK,PA,5/10/1976 20:15 +Grapevine,,EGG,CA,5/12/1976 23:50 +Hydes,,VARIOUS,MD,5/15/1976 19:00 +Newtown,,FIREBALL,CT,5/16/1976 20:00 +Ridgefield,,,CT,5/17/1976 2:00 +Enfield,,TRIANGLE,CT,5/20/1976 22:00 +South Lake Tahoe,,LIGHT,CA,5/29/1976 23:00 +Mountaintop,,CIGAR,PA,5/30/1976 18:00 +Mountaintop,,TRIANGLE,PA,5/30/1976 19:00 +Bell,,OTHER,CA,6/1/1976 0:00 +Haines City,,SPHERE,FL,6/1/1976 0:00 +Pine City,,CIGAR,MS,6/1/1976 0:00 +Washington,,LIGHT,IL,6/1/1976 0:00 +Midvale,,CHEVRON,UT,6/1/1976 1:00 +Scottsville,,OVAL,KY,6/1/1976 1:00 +Howell,,,MI,6/1/1976 2:00 +Pass Christian,,LIGHT,MS,6/1/1976 2:00 +Federal Way,,CIRCLE,WA,6/1/1976 4:00 +Syracuse,,OVAL,NY,6/1/1976 8:30 +Richmond,,DISK,VA,6/1/1976 9:00 +Meridien,,OTHER,CT,6/1/1976 12:00 +Orlando,,CYLINDER,FL,6/1/1976 12:00 +Gulf of Mexico,,OVAL,FL,6/1/1976 14:00 +Meriden,,,CT,6/1/1976 16:00 +Raceland,,CIRCLE,LA,6/1/1976 16:30 +Pacific Palisades,,TRIANGLE,CA,6/1/1976 17:00 +Barberton,,OVAL,OH,6/1/1976 18:00 +Fayetteville,,TRIANGLE,IL,6/1/1976 18:00 +Upper Saddle River,,DISK,NJ,6/1/1976 18:00 +Chunky,,DISK,MS,6/1/1976 19:00 +Glennville,,TRIANGLE,GA,6/1/1976 19:00 +Santa Paula,,RECTANGLE,CA,6/1/1976 19:00 +Columbus,,LIGHT,OH,6/1/1976 20:00 +Covington,,DISK,KY,6/1/1976 20:00 +Niagara Falls,,FLASH,NY,6/1/1976 20:00 +Shepherd,,TRIANGLE,TX,6/1/1976 20:00 +Tacoma,,SPHERE,WA,6/1/1976 20:00 +Jacksonville,,DISK,FL,6/1/1976 20:30 +Alexandria,,LIGHT,LA,6/1/1976 21:00 +Covington,,DISK,KY,6/1/1976 21:00 +Point Pleasent,,LIGHT,NJ,6/1/1976 21:00 +Cossayuna,,,NY,6/1/1976 22:00 +Gresham,,VARIOUS,OR,6/1/1976 22:00 +Kannapolis,,OVAL,NC,6/1/1976 23:00 +Newark,,CIRCLE,OH,6/1/1976 23:00 +no data,,LIGHT,TN,6/1/1976 23:00 +Rutherfordton,BLUE,,NC,6/1/1976 23:00 +Waco,,SPHERE,TX,6/1/1976 23:00 +Everett,,,WA,6/2/1976 0:00 +Holyoke,,DISK,MA,6/5/1976 23:00 +Copley,,DISK,OH,6/6/1976 13:00 +Fort Worth,BLUE,FIREBALL,TX,6/6/1976 16:00 +San Diego,,CIRCLE,CA,6/6/1976 21:00 +Imperial Beach,,LIGHT,CA,6/6/1976 22:00 +Mansfield,,DISK,OH,6/6/1976 23:00 +Littleton,,,CO,6/10/1976 22:35 +Wurtland,,CIGAR,KY,6/14/1976 3:30 +South Hattisburg,,OVAL,MS,6/14/1976 13:00 +Midland,,LIGHT,TX,6/15/1976 2:00 +Odessa,,DISK,TX,6/15/1976 2:00 +Greenbush,,CIRCLE,MN,6/15/1976 3:00 +"Woodberry Forest Preparatory School, VA",,LIGHT,VA,6/15/1976 3:00 +Bonney Lake,,OTHER,WA,6/15/1976 6:30 +Strathmore,,CIGAR,CA,6/15/1976 7:00 +Canton,,CIGAR,OH,6/15/1976 11:00 +Winchester,,CIRCLE,MA,6/15/1976 13:00 +Bergenfield,,CIGAR,NJ,6/15/1976 14:00 +Ford City,RED,CIGAR,PA,6/15/1976 17:00 +Mt. Royal,,,NJ,6/15/1976 19:00 +Simi Valley,,LIGHT,CA,6/15/1976 20:00 +Smithtown,,DISK,NY,6/15/1976 20:00 +Brentwood,,DISK,NY,6/15/1976 21:00 +Long Beach,,DISK,NY,6/15/1976 21:00 +Western,,RECTANGLE,KS,6/15/1976 21:00 +Wyandotte,,TRIANGLE,MI,6/15/1976 21:30 +Beaver Creek,,DISK,OR,6/15/1976 22:00 +Joshua Tree National Monument,,FORMATION,CA,6/15/1976 22:00 +Simi Valley,,CIRCLE,CA,6/15/1976 22:00 +Wilkes-Barre,,DISK,PA,6/15/1976 22:00 +Tulsa,,LIGHT,OK,6/15/1976 22:45 +Drumright,,,OK,6/15/1976 23:00 +Hobbs,,FLASH,NM,6/15/1976 23:00 +Dale,,OTHER,IN,6/17/1976 21:00 +Warden,,LIGHT,WA,6/18/1976 21:00 +Limestone,,CIGAR,ME,6/20/1976 0:00 +Dunbar,,TRIANGLE,WV,6/20/1976 20:00 +Little Rock,,SPHERE,AR,6/21/1976 1:30 +Palo Alto,,LIGHT,CA,6/22/1976 1:00 +Madison,,CIRCLE,NH,6/23/1976 22:00 +Phoenix,,DISK,AZ,6/25/1976 22:00 +Youngstown,,DISK,OH,6/25/1976 23:00 +Fargo,,DISK,ND,6/26/1976 11:00 +Lake McClure,,,CA,6/30/1976 0:00 +Kutztown,,DISK,PA,6/30/1976 0:30 +Cactus Flat,RED ORANGE,FIREBALL,SD,6/30/1976 1:00 +San Jose,,SPHERE,CA,6/30/1976 7:00 +Berrien Springs,,DISK,MI,6/30/1976 12:00 +Cambridge,,DIAMOND,MA,6/30/1976 18:00 +Hadley,,OVAL,KY,6/30/1976 20:00 +Simi Valley,,LIGHT,CA,6/30/1976 20:00 +Elmira Heights,,CIRCLE,NY,6/30/1976 21:15 +Springfield,,DISK,LA,6/30/1976 22:00 +Brooksville,,DISK,FL,6/30/1976 23:00 +Johnstown,,TRIANGLE,CO,7/1/1976 0:00 +San Diego,RED,TRIANGLE,CA,7/1/1976 0:00 +Santa Cruz,,,CA,7/1/1976 0:00 +Grand Chain,,FIREBALL,IL,7/1/1976 14:00 +Corpus Christi,,CYLINDER,TX,7/1/1976 15:00 +Lompoc,,CIRCLE,CA,7/1/1976 20:00 +Philadelphia,,OVAL,PA,7/1/1976 20:00 +Charleston,GREEN,,SC,7/1/1976 21:00 +Daytona,,FIREBALL,FL,7/1/1976 21:00 +Hudson,,CIGAR,MI,7/1/1976 21:00 +Ft. Belvoir,,FORMATION,VA,7/1/1976 22:00 +Gadsden,,DISK,AL,7/1/1976 22:00 +San Diego,,LIGHT,CA,7/1/1976 23:30 +Boulder,,DISK,CO,7/3/1976 21:00 +Allenspark,,TEARDROP,CO,7/4/1976 1:00 +Ridinger Lake,,RECTANGLE,IN,7/4/1976 2:00 +Ausable Forks,,SPHERE,NY,7/4/1976 22:00 +Taylorville,,LIGHT,IL,7/4/1976 23:59 +Allentown,,,PA,7/5/1976 2:46 +Kings Bay,YELLOW,LIGHT,GA,7/5/1976 23:45 +St. Clair Shores,,DISK,MI,7/8/1976 15:00 +Phoenix,,DISK,AZ,7/10/1976 11:30 +Strongsville,,TRIANGLE,OH,7/10/1976 23:00 +Warwick,,CIGAR,RI,7/12/1976 18:01 +Cave Junction,,TRIANGLE,OR,7/15/1976 0:00 +Nevada,,LIGHT,MO,7/15/1976 2:00 +Santa Monica,,,CA,7/15/1976 3:00 +Winter Park,,FIREBALL,FL,7/15/1976 10:00 +St. Louis,,CYLINDER,MO,7/15/1976 13:00 +Hyde Park,,DISK,NY,7/15/1976 14:00 +Vashon Island,ORANGE,SPHERE,WA,7/15/1976 14:30 +Berthold,,CIGAR,ND,7/15/1976 15:00 +Kissimmee,,CIRCLE,FL,7/15/1976 19:00 +Orlando,,DISK,FL,7/15/1976 20:00 +Silverthorne,,DISK,CO,7/15/1976 20:00 +West Liberty,,CIRCLE,IA,7/15/1976 20:00 +Memphis,,LIGHT,TN,7/15/1976 21:30 +Leakey,,LIGHT,TX,7/15/1976 21:50 +Pine City,,OVAL,MN,7/15/1976 22:00 +St. Charles,,LIGHT,MO,7/15/1976 22:30 +Bokchito,,CIRCLE,OK,7/15/1976 23:00 +Greenup,,LIGHT,KY,7/15/1976 23:00 +Leominster,,,MA,7/15/1976 23:00 +Hampton,,,NH,7/17/1976 1:00 +Iowa City,,CIGAR,IA,7/17/1976 21:00 +Roseville,,RECTANGLE,MN,7/20/1976 5:30 +New Gulf,,TRIANGLE,TX,7/20/1976 21:00 +Newbury Park,,,CA,7/20/1976 22:50 +Durham,,,FL,7/20/1976 23:30 +Warren,,DISK,MI,7/21/1976 1:00 +Brevard,ORANGE,SPHERE,NC,7/21/1976 23:00 +Casper,,CIRCLE,WY,7/25/1976 18:00 +Warwick,,LIGHT,NY,7/26/1976 19:00 +Cowley,,CYLINDER,WY,7/27/1976 1:00 +Fort Lauderdale,,DISK,FL,7/28/1976 3:30 +Fort Lauderdale,,DISK,FL,7/28/1976 21:00 +South Africa,,OVAL,AR,7/30/1976 20:00 +Georgetown,,LIGHT,TX,8/1/1976 0:00 +Arlington,,DISK,VT,8/1/1976 18:00 +San Jose,,DISK,CA,8/1/1976 21:00 +Houston,,,TX,8/1/1976 23:20 +Sacramento,,RECTANGLE,CA,8/8/1976 19:30 +Mountlake Terrace,,TRIANGLE,WA,8/8/1976 23:00 +Port Richey,GREEN,FORMATION,FL,8/8/1976 23:30 +Northwood,,LIGHT,IA,8/10/1976 1:00 +Arcola,,CROSS,VA,8/10/1976 21:00 +Sebago,,LIGHT,ME,8/10/1976 22:30 +Portland,,TRIANGLE,OR,8/11/1976 21:00 +Avenue City,,LIGHT,MO,8/15/1976 2:00 +McDermitt,RED,CYLINDER,NV,8/15/1976 16:30 +Birmingham,,DISK,AL,8/15/1976 18:00 +Buellton,,OTHER,CA,8/15/1976 19:00 +Kenosha,,TRIANGLE,WI,8/15/1976 21:00 +Lincoln Park,,CIRCLE,MI,8/15/1976 22:00 +Hatboro,,SPHERE,PA,8/15/1976 22:30 +Weekapaug,,FORMATION,RI,8/15/1976 22:30 +Ossipee,,LIGHT,NH,8/15/1976 23:00 +Tierra Verde,,VARIOUS,FL,8/15/1976 23:00 +Sycamore,,TRIANGLE,IL,8/18/1976 17:00 +Los Angeles,,RECTANGLE,CA,8/20/1976 1:00 +Kissimmee,,DISK,FL,8/20/1976 20:00 +Jonesboro,,TRIANGLE,LA,8/25/1976 22:00 +Portland,,CIGAR,OR,8/30/1976 2:00 +Canon City,,OVAL,CO,9/1/1976 4:00 +San Antonio,,SPHERE,TX,9/1/1976 9:00 +St. Agatha,,LIGHT,ME,9/1/1976 19:00 +Lighthouse Point,,DISK,FL,9/1/1976 21:00 +Washougal,,LIGHT,WA,9/1/1976 22:00 +Belzoni,,LIGHT,MS,9/1/1976 22:30 +Ahwahnee,BLUE,FIREBALL,CA,9/1/1976 23:00 +Moose Lake,,DISK,MN,9/2/1976 3:00 +Broadview Heights,,DISK,OH,9/5/1976 2:00 +County,RED,OTHER,KY,9/7/1976 18:45 +Franconia,,OTHER,NH,9/10/1976 3:00 +O'Fallon,RED,DISK,IL,9/10/1976 15:30 +New York City,,DISK,NY,9/10/1976 22:00 +Albany,,CIRCLE,NY,9/10/1976 23:00 +Rancho Palos Verdes,,SPHERE,MT,9/15/1976 16:30 +Laredo,,OVAL,TX,9/15/1976 18:00 +Lynch Station,,LIGHT,VA,9/15/1976 19:30 +Sacramento,,OVAL,CA,9/15/1976 20:00 +Centralia,,OTHER,IL,9/15/1976 21:00 +Hoodsport,,,WA,9/15/1976 21:00 +Bordentown,,OVAL,NJ,9/19/1976 22:00 +Williamsburg,,CIRCLE,KY,9/20/1976 7:30 +Akron,,LIGHT,OH,9/25/1976 22:00 +St. Paul,GREEN,,MN,9/27/1976 3:00 +Hartville,,DISK,OH,10/1/1976 7:00 +Fairport,,DISK,NY,10/1/1976 19:00 +Thonotosassa,,DISK,FL,10/1/1976 21:00 +Charleston AFS,,,ME,10/2/1976 1:00 +Limestone,,DISK,ME,10/2/1976 22:00 +Washougal,,OVAL,WA,10/10/1976 20:30 +Emporia,,DISK,KS,10/12/1976 23:00 +Mineral King,,DISK,CA,10/15/1976 17:30 +Rochester,RED,,NY,10/15/1976 19:30 +Eveleth,,LIGHT,MN,10/15/1976 21:00 +Almena,,,WI,10/15/1976 23:00 +New Gretna,,TRIANGLE,NJ,10/16/1976 0:00 +Avon Lake,,CIRCLE,OH,10/20/1976 0:00 +Soldotna,RED,SPHERE,AK,10/20/1976 22:00 +St. George,RED,LIGHT,UT,10/21/1976 21:00 +Dallas,,DISK,TX,10/30/1976 16:30 +Louisville,,DISK,KY,10/30/1976 22:50 +Los Angeles,,OVAL,CA,10/31/1976 18:00 +Garland,,OTHER,TX,10/31/1976 20:00 +Wilmington,,DISK,DE,11/1/1976 21:30 +Orchard Lake,,RECTANGLE,MI,11/5/1976 19:30 +Hartsville,,LIGHT,SC,11/11/1976 20:00 +Tarboro,,DISK,NC,11/12/1976 18:00 +Oscoda,,DISK,MI,11/15/1976 21:00 +Taunton,ORANGE,FIREBALL,MA,11/15/1976 22:00 +Bedford Heights,BLUE,OVAL,OH,11/15/1976 23:00 +Pennsylvania,,DISK,PA,11/17/1976 15:00 +Sierra Vista,,,AZ,11/19/1976 23:00 +Virginia,,FIREBALL,VA,11/25/1976 20:20 +Omaha,,RECTANGLE,NE,11/25/1976 23:00 +Houston,,CIRCLE,TX,11/26/1976 3:30 +Stead Nevada,,DISK,NV,11/27/1976 15:00 +Milford,,DISK,CT,12/3/1976 15:30 +Monrovia,,TRIANGLE,IN,12/3/1976 23:00 +Davie,,VARIOUS,FL,12/6/1976 5:30 +Junction City,,DIAMOND,KS,12/15/1976 22:15 +Winslow,,DISK,ME,12/25/1976 19:00 +Conshohocken,,OTHER,PA,12/27/1976 19:00 +New Canaan,,,CT,1/1/1977 2:30 +Great Neck,,CYLINDER,NY,1/1/1977 12:00 +New York City,,SPHERE,NY,1/1/1977 19:30 +La Crescenta,,FORMATION,CA,1/1/1977 20:00 +Westminster,,DISK,CA,1/1/1977 20:00 +El Paso,,,TX,1/14/1977 22:00 +Dingman's Ferry,,LIGHT,PA,1/15/1977 1:00 +Scottsbluff County,,CHEVRON,NE,1/15/1977 20:10 +Fall River,,OVAL,RI,1/18/1977 17:45 +Riverside,,OVAL,RI,1/18/1977 17:45 +Coventry,,TRIANGLE,RI,1/19/1977 20:30 +Ft. Knox,,LIGHT,KY,2/15/1977 2:30 +Joyce Kilmer Slickrock Creek Wilderness,,CIRCLE,NC,2/15/1977 20:00 +Bloomington,,OVAL,IN,2/21/1977 23:42 +Terre Haute,,,IN,3/1/1977 12:12 +Hamlet,,SPHERE,IL,3/1/1977 20:00 +Hometown,,TRIANGLE,PA,3/2/1977 20:45 +St. Louis,,CIRCLE,MO,3/11/1977 13:00 +Stevens Pass,ORANGE,SPHERE,WA,3/15/1977 20:30 +Brea,,FORMATION,CA,3/15/1977 22:00 +Los Angeles,,DISK,CA,3/17/1977 18:00 +Lake Worth,,CHEVRON,TX,3/19/1977 19:00 +Los Angeles,,OTHER,CA,3/19/1977 20:30 +Minneola,,CIGAR,FL,3/20/1977 11:00 +Ridgway,RED,RECTANGLE,IL,3/20/1977 20:00 +Southgate,,DISK,MI,3/27/1977 10:00 +Louisville,RED,LIGHT,KY,4/1/1977 22:00 +Silver Spring,,DISK,MD,4/11/1977 14:00 +Hattiesburg,RED GREEN,CIGAR,MS,4/15/1977 5:00 +Hattiesburg,RED GREEN,CIGAR,MS,4/15/1977 17:00 +Phoenix,,CIGAR,AZ,4/15/1977 21:00 +Clearence Center,,OVAL,NY,4/15/1977 23:00 +South Royalton,,DISK,VT,4/16/1977 14:00 +Long Green,,DISK,MD,4/17/1977 16:30 +Augusta,,RECTANGLE,GA,4/17/1977 22:00 +Kansas City,RED,OTHER,MO,4/26/1977 18:05 +Sinton,,OVAL,TX,4/30/1977 23:00 +Bridgeport,,DISK,CT,5/1/1977 0:00 +Jacksonville,,TRIANGLE,AR,5/1/1977 0:00 +none,,SPHERE,FL,5/1/1977 1:00 +Yazoo City,,OVAL,MS,5/1/1977 17:00 +Des Plaines,,OVAL,IL,5/1/1977 19:00 +Palatine,,OVAL,IL,5/1/1977 19:00 +Winamuccha,,CIGAR,NV,5/1/1977 20:25 +Freeland,,OTHER,MI,5/1/1977 21:30 +Denver,,LIGHT,CO,5/1/1977 22:00 +Kinder,,SPHERE,LA,5/8/1977 16:00 +Kemah,,LIGHT,TX,5/10/1977 1:00 +Salem,,CIGAR,OR,5/15/1977 0:00 +Elmont,,DISK,VA,5/15/1977 8:00 +Minneapolis,RED GREEN,,MN,5/15/1977 23:00 +Marana,,SPHERE,AZ,5/22/1977 20:00 +Mettacahonts,,CIRCLE,NY,5/23/1977 21:00 +Marshall,,CIGAR,IL,5/25/1977 1:00 +Meridian,,DISK,ID,5/28/1977 0:00 +Meridian,,DISK,ID,5/28/1977 0:01 +Los Angeles,,CIGAR,CA,5/28/1977 21:00 +Watertown,,CIGAR,NY,5/29/1977 23:30 +Bratenhaul,,DISK,OH,5/30/1977 10:00 +Clements,,VARIOUS,CA,6/1/1977 0:00 +Miami,,DIAMOND,FL,6/1/1977 0:00 +Raymond,,TRIANGLE,NH,6/1/1977 0:30 +Hesperia,,EGG,CA,6/1/1977 1:00 +Coral Springs,,TRIANGLE,FL,6/1/1977 1:30 +Hanna City,,CYLINDER,IL,6/1/1977 2:00 +Plantation,,CIRCLE,FL,6/1/1977 2:00 +Shaver Lake,,CIGAR,CA,6/1/1977 3:30 +Fort Worth,,DISK,TX,6/1/1977 16:00 +Shelby,,CIRCLE,OH,6/1/1977 17:00 +Meriden,,OVAL,CT,6/1/1977 20:00 +San Antonio,,OVAL,TX,6/1/1977 21:00 +Butte Meadows,,,CA,6/1/1977 22:00 +Hart's Location,,CIRCLE,NH,6/1/1977 22:00 +John Day,RED ORANGE,OVAL,OR,6/1/1977 22:00 +Simi Valley,RED,DISK,CA,6/1/1977 22:00 +Grand Forks,,CIRCLE,ND,6/1/1977 23:00 +Houtzdale R.D.,,EGG,PA,6/1/1977 23:00 +Yazoo City,,OVAL,MS,6/1/1977 23:00 +Hudson,,CIRCLE,NH,6/1/1977 23:30 +Gaithersburg,,CIGAR,MD,6/1/1977 23:45 +Valley Station,,CIRCLE,KY,6/4/1977 23:00 +Napa,,DISK,CA,6/6/1977 19:00 +Winston,,CIRCLE,OR,6/7/1977 23:00 +Kingsville,,DISK,TX,6/10/1977 15:00 +Stockton,,DISK,CA,6/10/1977 20:00 +Leesburg,,OTHER,FL,6/10/1977 20:30 +Santa Rosa,,CHEVRON,CA,6/10/1977 21:00 +Dekalb,,OTHER,IL,6/10/1977 22:30 +Barstow,,,CA,6/15/1977 1:00 +Fort Worth,,SPHERE,TX,6/15/1977 1:00 +Stillwater,,LIGHT,OK,6/15/1977 1:00 +Kodiak Island,,CIRCLE,AK,6/15/1977 2:00 +Indiana,,,IN,6/15/1977 10:00 +Cedar City,,TRIANGLE,UT,6/15/1977 13:00 +West Palm Beach,,DISK,FL,6/15/1977 15:00 +Arlington Heights,,DISK,IL,6/15/1977 19:00 +Medina,,DISK,OH,6/15/1977 20:00 +New Orleans,,,LA,6/15/1977 20:00 +Sacramento,,DISK,CA,6/15/1977 20:30 +Asheville,,,NC,6/15/1977 21:00 +Auburn,,TRIANGLE,CA,6/15/1977 21:00 +Gaithersburg,,OVAL,MD,6/15/1977 21:00 +Newington,,DISK,NH,6/15/1977 21:00 +Newport,,LIGHT,OR,6/15/1977 21:30 +San Diego,BLUE,SPHERE,CA,6/15/1977 21:30 +Fort Collins,,CIGAR,CO,6/15/1977 22:00 +Otis,RED GREEN,DISK,MA,6/15/1977 22:30 +Topeka,,LIGHT,KS,6/15/1977 22:30 +Ridgefield,,CIRCLE,WA,6/15/1977 23:00 +Rockville,,DISK,MD,6/16/1977 19:00 +Interstate 65,,LIGHT,AL,6/16/1977 22:00 +Columbia,,OVAL,NC,6/17/1977 1:00 +Lake Worth,,CIGAR,FL,6/17/1977 23:15 +Arvada,,LIGHT,CO,6/19/1977 22:05 +Accord,RED,TRIANGLE,NY,6/20/1977 20:30 +Chopin,,FIREBALL,LA,6/21/1977 21:00 +Boston,,SPHERE,MA,6/24/1977 1:00 +Scott County,,CIRCLE,KY,6/25/1977 0:00 +Waitesfield,ORANGE,LIGHT,VT,6/29/1977 3:00 +Lawrenceville,,DISK,GA,6/30/1977 0:00 +Russellville,,LIGHT,AR,6/30/1977 1:00 +Whittier,,TRIANGLE,CA,6/30/1977 16:00 +San Jose,,FLASH,CA,6/30/1977 20:30 +Cambridge,,OTHER,MA,6/30/1977 21:00 +Clarion,,DIAMOND,PA,6/30/1977 22:00 +St. Joseph,,OVAL,MI,6/30/1977 23:45 +Edgemoor,,DISK,SC,7/1/1977 0:00 +Edgemoore,,DISK,SC,7/1/1977 0:00 +Racine,,DISK,WI,7/1/1977 2:00 +Anniston,,DISK,AL,7/1/1977 12:00 +Miami,,TRIANGLE,FL,7/1/1977 15:00 +Fenton,GREEN,CIRCLE,MI,7/1/1977 19:00 +Burnet,,LIGHT,TX,7/1/1977 22:00 +Nashua,,DISK,NH,7/1/1977 23:00 +Close to Carlsbad Cavrans,,EGG,NM,7/2/1977 1:00 +Glen Head,,CIGAR,NY,7/2/1977 14:00 +Don't remember,,CIRCLE,NH,7/2/1977 20:30 +Hampton,,CIRCLE,NH,7/2/1977 21:00 +Waddy,,LIGHT,KY,7/3/1977 11:00 +Marley Park,,SPHERE,MD,7/4/1977 14:00 +Toppenish,,DISK,WA,7/4/1977 19:45 +Federal Way,,CIRCLE,WA,7/4/1977 22:00 +Happy,,DIAMOND,TX,7/4/1977 23:59 +Kekaha,,CIRCLE,HI,7/5/1977 2:00 +Greenup,,CIGAR,IL,7/7/1977 18:00 +Brier Hill,,DISK,PA,7/8/1977 15:30 +California Hotsprings,,DISK,CA,7/9/1977 20:30 +Calumet City,ORANGE BLUE,CIRCLE,IL,7/10/1977 21:00 +Des Moines,,TRIANGLE,IA,7/12/1977 1:30 +Hillsborough,,CIGAR,CA,7/12/1977 1:30 +St. Petersburg,,DISK,FL,7/12/1977 14:00 +Live Oak,,TRIANGLE,CA,7/14/1977 13:00 +Greenville,,,MI,7/14/1977 23:00 +Rock Hill,,DISK,SC,7/15/1977 0:00 +Edgemoore,,,SC,7/15/1977 0:01 +Arleta,,TRIANGLE,CA,7/15/1977 1:00 +New Albany,,OVAL,OH,7/15/1977 19:00 +Albuquerque,,CHEVRON,NM,7/15/1977 21:00 +Orlando,,DISK,FL,7/15/1977 21:00 +San Francisco,,CIRCLE,CA,7/15/1977 21:30 +Huntington Beach,RED GREEN,RECTANGLE,CA,7/15/1977 21:45 +Houtzdale,,FIREBALL,PA,7/15/1977 22:30 +Orlando,,DISK,FL,7/15/1977 23:00 +Fairview,,CIRCLE,NJ,7/17/1977 15:00 +Williamsburg,,CIGAR,VA,7/20/1977 20:15 +Milwaukee,,FORMATION,WI,7/20/1977 22:30 +Atwater,,DISK,CA,7/22/1977 23:00 +Albuquerque,,OVAL,NM,7/24/1977 7:00 +Cerrillos,,TRIANGLE,NM,7/24/1977 23:45 +Danbury,,DISK,CT,7/25/1977 20:00 +Hebron,,OVAL,KY,7/25/1977 23:00 +So. Farmingdale,BLUE,,NY,7/26/1977 14:00 +So. Farmingdale,,CIRCLE,NY,7/26/1977 14:00 +Aurora,,CHEVRON,CO,7/30/1977 3:00 +Aurora,,LIGHT,CO,7/30/1977 22:00 +Whittier,,CHEVRON,CA,8/1/1977 2:00 +Pleasenton,,DISK,CA,8/1/1977 16:00 +Tinsley,,CIGAR,MS,8/1/1977 16:00 +Fairfield,,OTHER,CT,8/1/1977 19:00 +Marthasville,,CIRCLE,MO,8/1/1977 21:30 +Mechanicsburg,,TRIANGLE,PA,8/1/1977 22:00 +Washburn,,CHEVRON,TN,8/1/1977 23:30 +Branford,,DISK,CT,8/7/1977 20:30 +Tomahawk,,OVAL,WI,8/7/1977 21:44 +Portsmouth,,RECTANGLE,NH,8/8/1977 18:00 +Jefferson,RED BLUE,TRIANGLE,OH,8/8/1977 21:00 +Twentynine Palms,,,CA,8/8/1977 23:00 +Denver,,TRIANGLE,CO,8/9/1977 22:00 +Hazard,,LIGHT,KY,8/10/1977 1:00 +Minneapolis,,DISK,MN,8/10/1977 21:10 +Cartecay,,TRIANGLE,GA,8/11/1977 17:00 +San Leandro,,DISK,CA,8/12/1977 3:00 +Michigan City,,SPHERE,IN,8/12/1977 22:00 +Olney,,TRIANGLE,IL,8/14/1977 16:30 +Rockford,,,MN,8/15/1977 1:00 +Brea,,LIGHT,CA,8/15/1977 2:00 +Portage Lake,,DISK,ME,8/15/1977 2:00 +Plymouth,,LIGHT,IN,8/15/1977 3:00 +Rolla,,DISK,MO,8/15/1977 17:00 +Bristol,ORANGE,SPHERE,IN,8/15/1977 20:30 +Caribou,GREEN,LIGHT,ME,8/15/1977 20:30 +Interstate 65,,LIGHT,AL,8/15/1977 23:00 +Black River Falls,,LIGHT,WI,8/18/1977 19:30 +Huntington Beach,,CIRCLE,CA,8/22/1977 0:00 +Ukiah,,VARIOUS,CA,8/28/1977 21:50 +Everton,,,MO,8/31/1977 0:00 +Bourbonnais,,TRIANGLE,IL,9/1/1977 0:00 +Middletown,,,PA,9/1/1977 0:00 +Plano,,DISK,TX,9/1/1977 13:00 +Everett,,TRIANGLE,WA,9/1/1977 16:00 +Arlington,,SPHERE,VT,9/1/1977 18:00 +Diamond Bar,,CHEVRON,CA,9/1/1977 18:30 +Middletown,,DISK,PA,9/1/1977 18:30 +Grand Rapids,,CONE,MI,9/1/1977 20:00 +Keene Valley,BLUE,LIGHT,NY,9/1/1977 20:00 +Dublin,,TRIANGLE,HI,9/1/1977 21:00 +Tahlequah,,TRIANGLE,OK,9/1/1977 23:00 +Texas,,CIGAR,TX,9/10/1977 13:00 +Gabbs,,TRIANGLE,NV,9/12/1977 19:00 +Beatty,,LIGHT,OR,9/15/1977 0:00 +Childs,,,AZ,9/15/1977 0:00 +Alhambra,,DISK,CA,9/15/1977 13:44 +Knoxville,,DISK,TN,9/15/1977 18:00 +Dublin,,TRIANGLE,NH,9/15/1977 20:00 +Heber,,TRIANGLE,AZ,9/15/1977 21:00 +Iselton,,LIGHT,CA,10/1/1977 1:00 +Fountain Valley,ORANGE,OTHER,CA,10/1/1977 19:00 +Ferndale,,OTHER,CA,10/1/1977 22:00 +Akron,,CYLINDER,OH,10/5/1977 22:00 +San Antonio,,OTHER,TX,10/10/1977 12:00 +Louisville,,LIGHT,KY,10/10/1977 22:00 +Biloxi,,TRIANGLE,MS,10/15/1977 21:00 +Orlando,GREEN,DISK,FL,10/15/1977 22:00 +Kennewick,RED,LIGHT,WA,10/15/1977 23:00 +East Haven,,DISK,CT,10/16/1977 18:00 +Christmas Valley,,FORMATION,OR,10/25/1977 19:30 +Ft. Wayne,,DISK,IN,10/27/1977 23:30 +Marble Hill,,,MO,11/1/1977 23:30 +Brockport,,DISK,NY,11/4/1977 17:00 +Weimar,,OTHER,CA,11/8/1977 14:00 +Jackson,,TRIANGLE,MS,11/11/1977 22:00 +Newburgh,,DISK,NY,11/15/1977 1:00 +Sidney,RED GREEN BLUE,CIRCLE,MT,11/15/1977 20:30 +Kalamazoo,,DISK,MI,11/15/1977 22:30 +Bensalem,RED,SPHERE,PA,11/17/1977 19:00 +Aurora,,CIRCLE,CO,11/20/1977 19:00 +Tahlequah,,TRIANGLE,OK,11/22/1977 23:30 +Saint James,RED,SPHERE,NY,11/23/1977 16:15 +New Hampton,,OTHER,NH,11/24/1977 22:30 +Canandaigua,,TRIANGLE,NY,11/26/1977 14:00 +Jones,RED BLUE,OTHER,MS,11/27/1977 19:06 +Fort Lauderdale,,CHEVRON,FL,12/3/1977 0:50 +New Albany,,DISK,IN,12/15/1977 12:00 +Malvern,RED,LIGHT,AR,12/15/1977 22:00 +Muscoda,RED,TRIANGLE,WI,12/17/1977 19:30 +Jackson,,,MS,12/24/1977 0:00 +Philadelphia,,OVAL,NY,12/24/1977 23:00 +Worcester,,DISK,MA,12/28/1977 20:00 +Carlyss,,,LA,1/1/1978 1:00 +June Lake,,DISK,CA,1/1/1978 1:00 +Whittier,,TRIANGLE,CA,1/1/1978 2:30 +Sagle,,SPHERE,ID,1/1/1978 13:00 +Warwick,RED,SPHERE,RI,1/5/1978 0:00 +Westport,,OTHER,CA,1/6/1978 1:00 +Bristol,,,TN,1/7/1978 2:00 +Chatsworth,,CIRCLE,CA,1/9/1978 3:30 +Thousand Oaks,YELLOW,CIRCLE,CA,1/9/1978 4:30 +Grand Rapids,,DISK,MI,1/12/1978 20:00 +Grand Rapids,,DISK,MI,1/12/1978 20:00 +Midland,,CIGAR,TX,1/20/1978 2:00 +Meriden,,DIAMOND,CT,1/22/1978 22:00 +Massachusetts,,FIREBALL,NH,1/27/1978 0:00 +Detroit,,,MI,2/1/1978 0:00 +Dublin,,TRIANGLE,NH,2/1/1978 22:00 +Brighton,,TRIANGLE,MI,2/9/1978 19:45 +Escawtawpa,,DISK,MS,2/11/1978 3:00 +Eastport,ORANGE,CIGAR,ME,2/15/1978 2:00 +Waltham,,,MA,2/15/1978 3:00 +Geneseo,,,NY,2/20/1978 19:00 +Soccoro,BLUE,,NM,2/21/1978 3:00 +Los Gatos,,OVAL,CA,3/1/1978 17:00 +Saint Clair Shores,,OVAL,MI,3/1/1978 19:30 +Stoughton,,OTHER,MA,3/1/1978 22:00 +Yreka,,TRIANGLE,CA,3/4/1978 22:00 +Rose Hill,,RECTANGLE,NC,3/5/1978 21:00 +Simi Valley,,OVAL,CA,3/7/1978 22:00 +Bellevue,,DISK,WA,3/10/1978 21:00 +Lolo,,LIGHT,MT,3/15/1978 1:00 +Mississippi,,DISK,MS,3/15/1978 13:00 +Denver,,TRIANGLE,CO,3/17/1978 19:00 +Medford,,DISK,OR,3/21/1978 4:00 +Winterhaven,,DISK,CA,3/25/1978 22:00 +Farmington,,CIRCLE,NM,4/1/1978 4:00 +Green Springs,,CYLINDER,OH,4/1/1978 21:30 +Los Angeles,BLUE,,CA,4/4/1978 2:00 +Natick,,SPHERE,MA,4/4/1978 21:00 +Natick,,SPHERE,MA,4/4/1978 21:15 +Natick,,SPHERE,MA,4/4/1978 22:00 +Chittenango,,FIREBALL,NY,4/6/1978 20:00 +Pleasant Hill,,,OR,4/15/1978 13:00 +Richardson,,OTHER,TX,4/15/1978 13:00 +Albuquerque,,DISK,NM,4/15/1978 18:00 +Westland,,DISK,MI,4/19/1978 23:00 +Tiffen Valley,,FLASH,OH,4/21/1978 0:00 +Wrightstown,,LIGHT,PA,5/1/1978 0:00 +Big Bear Lake,,DISK,CA,5/1/1978 18:00 +Midway,,OTHER,KY,5/2/1978 21:00 +Gardner,,OVAL,MA,5/5/1978 6:30 +Pasadena,,CIGAR,CA,5/5/1978 13:00 +Fort Worth,,LIGHT,TX,5/6/1978 0:00 +Barrington,,TRIANGLE,IL,5/6/1978 21:00 +Grand Prairie,,TRIANGLE,TX,5/7/1978 21:50 +San Diego,,VARIOUS,CA,5/10/1978 20:30 +Sandwich,BLUE,TRIANGLE,MA,5/10/1978 20:30 +Paramus,,CIGAR,NJ,5/24/1978 1:30 +Philadelphia,,FIREBALL,PA,5/29/1978 20:00 +Grants Pass,RED YELLOW GREEN BLUE,DISK,OR,6/1/1978 0:00 +Grand Saline,,LIGHT,TX,6/1/1978 0:30 +Marshall,,CIGAR,IL,6/1/1978 1:00 +Lancaster,,SPHERE,OH,6/1/1978 3:00 +Las Vegas,,LIGHT,NV,6/1/1978 5:00 +Hudsonville,,OTHER,MI,6/1/1978 12:00 +Katy,,EGG,TX,6/1/1978 13:00 +Georgia coast,,DIAMOND,GA,6/1/1978 14:00 +Attica,,OVAL,MI,6/1/1978 18:00 +Fulton,,FIREBALL,MO,6/1/1978 18:00 +North Adams,,SPHERE,MA,6/1/1978 19:00 +Pensacola,,OVAL,FL,6/1/1978 19:00 +Elsberry,,LIGHT,MO,6/1/1978 20:00 +Fort Hood,,CIRCLE,TX,6/1/1978 20:00 +Ocean City,,TRIANGLE,NJ,6/1/1978 20:00 +Philadelphia,,OTHER,PA,6/1/1978 20:00 +Columbia,,CIRCLE,SC,6/1/1978 21:00 +John's Island,GREEN,OVAL,SC,6/1/1978 21:00 +Paterson,,DISK,NJ,6/1/1978 21:00 +Lee Park,,DISK,PA,6/1/1978 21:30 +Bourbonnais,,DISK,IL,6/1/1978 22:00 +Florida Keys,,,FL,6/1/1978 22:00 +Paxton,GREEN,,IL,6/1/1978 22:00 +Sterling Park,,DISK,VA,6/1/1978 22:00 +Victoria,,OVAL,TX,6/1/1978 22:00 +Dallas,,OVAL,TX,6/5/1978 19:20 +Tennyson,,FLASH,TX,6/10/1978 13:00 +Diamond Bar,,,CA,6/12/1978 0:00 +Los Angeles,,TRIANGLE,CA,6/14/1978 9:15 +Warrensville,,TRIANGLE,PA,6/15/1978 0:00 +Appleton,,LIGHT,MN,6/15/1978 0:30 +Michigan,,,MI,6/15/1978 1:30 +Boston,,SPHERE,MA,6/15/1978 3:00 +Hoopa,,OVAL,CA,6/15/1978 12:00 +Orange,,CIRCLE,CA,6/15/1978 14:00 +Levittown,,DISK,NY,6/15/1978 17:00 +Granite Station,,CYLINDER,CA,6/15/1978 17:30 +Zimmerman,,TEARDROP,MN,6/15/1978 18:00 +Madison Heights,,CIRCLE,VA,6/15/1978 19:30 +Lowell,,CIGAR,MA,6/15/1978 20:00 +Mancelona,,DISK,MI,6/15/1978 20:00 +Baton Rouge,,OVAL,LA,6/15/1978 20:30 +Chattanooga,,DISK,TN,6/15/1978 21:00 +Mancelona,,DISK,MI,6/15/1978 21:00 +Stanwood,,OTHER,WA,6/15/1978 21:00 +Mancelona,,DISK,MI,6/15/1978 22:00 +Mansfield,,,PA,6/15/1978 22:00 +Seattle,,,WA,6/15/1978 22:30 +Madera,,FIREBALL,PA,6/15/1978 23:00 +St. Clair,,SPHERE,PA,6/20/1978 0:00 +Three Oaks,,DISK,MI,6/20/1978 23:00 +Albany,,FIREBALL,NY,6/21/1978 3:00 +Lemoore Naval Air Force Base,,OVAL,CA,6/23/1978 9:30 +Gulfport,,OTHER,MS,6/24/1978 1:00 +Sadieville,,DISK,KY,6/25/1978 7:00 +Griffin,,DISK,GA,6/30/1978 0:00 +New Bedford,,FIREBALL,MA,6/30/1978 1:00 +Twentynine Palms,,EGG,CA,6/30/1978 2:30 +SerlingHights,ORANGE,CIRCLE,IL,6/30/1978 3:00 +Hollister,,DISK,CA,6/30/1978 14:00 +St. Petersburg,,FORMATION,FL,6/30/1978 15:00 +Elmsford,,DISK,NY,6/30/1978 16:00 +Ashtabula,,CYLINDER,OH,6/30/1978 18:00 +Nashua,,DISK,NH,6/30/1978 20:00 +Del Rio,,OVAL,TX,6/30/1978 20:30 +Lake Havasu,,TRIANGLE,AZ,6/30/1978 21:00 +New York City,,OVAL,NY,6/30/1978 21:00 +Taylor,,DISK,MI,6/30/1978 21:00 +Miami,,LIGHT,FL,6/30/1978 22:00 +Piscataway,,,NJ,6/30/1978 22:00 +Oreland,,OTHER,PA,7/1/1978 0:00 +Edina,,TRIANGLE,MN,7/1/1978 0:30 +Lakes Region area of Central New Hampshire,,DISK,NH,7/1/1978 1:00 +Memphis,,TRIANGLE,TN,7/1/1978 1:00 +Los Angeles,,CIRCLE,CA,7/1/1978 2:00 +Fort Drum,RED,LIGHT,NY,7/1/1978 8:45 +Chester,,CHEVRON,NY,7/1/1978 14:00 +Quincy,,TRIANGLE,CA,7/1/1978 15:00 +Mojave,,SPHERE,CA,7/1/1978 17:00 +Carson,,,CA,7/1/1978 17:30 +Riverside,,TRIANGLE,CA,7/1/1978 20:00 +Toledo,,LIGHT,OH,7/1/1978 21:30 +Delta,BLUE,DISK,PA,7/1/1978 22:00 +Logansport,,SPHERE,IN,7/1/1978 22:00 +Monsey,,TRIANGLE,NY,7/1/1978 22:00 +New Rochelle,,OVAL,NY,7/1/1978 22:00 +Lake Martin,,OVAL,AL,7/1/1978 23:00 +Newnan,,RECTANGLE,GA,7/1/1978 23:00 +Kansas City,,DISK,KS,7/2/1978 8:00 +Kansas City,,DISK,PA,7/2/1978 9:00 +Greenriver Lake State Park,,CIRCLE,KY,7/4/1978 2:00 +Oak Harbor,,CIGAR,WA,7/4/1978 12:00 +Fayetteville,,DISK,NC,7/4/1978 19:00 +San Diego,,TRIANGLE,CA,7/4/1978 19:00 +Nashua,,CIRCLE,NH,7/4/1978 20:00 +Reseda,RED,SPHERE,CA,7/4/1978 21:00 +Danville,,SPHERE,IL,7/4/1978 22:15 +Morgantown,,VARIOUS,WV,7/4/1978 23:00 +Allentown,,DISK,PA,7/4/1978 23:59 +New Albany,,OTHER,IN,7/7/1978 12:00 +Ardmore,,SPHERE,AL,7/7/1978 13:00 +Tahlequah,,TRIANGLE,OK,7/7/1978 22:00 +Shelby,,LIGHT,NC,7/8/1978 0:30 +Grand Rapids,,TRIANGLE,MI,7/10/1978 21:00 +Corry,GREEN,LIGHT,PA,7/12/1978 8:00 +San Diego,BLUE,LIGHT,CA,7/12/1978 22:00 +New Symrna beach,,FORMATION,FL,7/14/1978 14:30 +Spokane,,DISK,WA,7/14/1978 22:30 +Santa Fe,RED,LIGHT,NM,7/15/1978 0:00 +Gautier,,DISK,MS,7/15/1978 2:00 +Mesa,,CIGAR,AZ,7/15/1978 12:00 +Weston,,DISK,MA,7/15/1978 16:00 +Pointe Reyes,,SPHERE,CA,7/15/1978 17:00 +Amenia,,DISK,ND,7/15/1978 18:00 +Ottawa,RED,OVAL,KS,7/15/1978 18:30 +Fort Mill,,CIRCLE,SC,7/15/1978 20:30 +San Francisco,,DISK,CA,7/15/1978 20:45 +March Air Force Base,,DISK,CA,7/15/1978 21:30 +Grant,GREEN,LIGHT,CO,7/15/1978 22:00 +Fargo,,TRIANGLE,ND,7/15/1978 23:00 +Centereach,RED,DISK,NY,7/16/1978 21:00 +Hammond,,OTHER,IN,7/18/1978 1:00 +Mojave,,LIGHT,CA,7/19/1978 21:00 +New York City,RED,TRIANGLE,NY,7/20/1978 2:00 +Arizona,,LIGHT,AZ,7/20/1978 4:15 +Livonia,GREEN,FORMATION,MI,7/20/1978 20:00 +Pine Grove,,FORMATION,CA,7/20/1978 20:00 +Westport,,,OR,7/20/1978 23:00 +Ft Irin,,OVAL,CA,7/22/1978 1:30 +Gulfport,,CHEVRON,MS,7/22/1978 2:30 +Phoenix,,VARIOUS,AZ,7/22/1978 18:00 +Brenham,,,TX,7/22/1978 20:00 +Kingsport,RED,DISK,TN,7/25/1978 21:00 +St. Robert,,LIGHT,MO,7/25/1978 21:30 +St. Robert,RED,LIGHT,MO,7/26/1978 0:00 +Eureka,,LIGHT,MO,7/26/1978 15:00 +St. Louis,,,MO,7/26/1978 18:30 +Union,ORANGE,LIGHT,MO,7/26/1978 20:00 +Union,,LIGHT,MO,7/26/1978 22:00 +Union,,LIGHT,MO,7/27/1978 0:45 +Fort Stockton,,LIGHT,TX,7/27/1978 21:00 +Valdosta,,OTHER,GA,7/29/1978 16:00 +Highland,,DISK,IN,7/29/1978 23:30 +Myles Inlet,,OTHER,SC,7/30/1978 23:50 +Phelan,,OVAL,CA,8/1/1978 5:30 +Van Nuys,,SPHERE,CA,8/1/1978 12:00 +Clifton Park,,OVAL,NY,8/1/1978 19:30 +Garland,RED,DISK,TX,8/1/1978 20:00 +Dundee,,SPHERE,FL,8/1/1978 20:30 +Yakima,,LIGHT,WA,8/1/1978 21:00 +Clarksville,,CIRCLE,TN,8/1/1978 22:00 +Reading,,FORMATION,PA,8/1/1978 22:00 +Shelley,,LIGHT,ID,8/2/1978 23:00 +Coldwater,,CYLINDER,MI,8/3/1978 22:00 +Ketchikan,,RECTANGLE,AK,8/5/1978 14:00 +Black Hills,BLUE,LIGHT,AZ,8/6/1978 22:00 +Pecos,,DISK,NM,8/7/1978 22:00 +San Diego,,OVAL,CA,8/10/1978 22:00 +Spokane,,DISK,WA,8/10/1978 22:20 +Auburn,,,CA,8/11/1978 22:00 +Des Moines,,TRIANGLE,IA,8/12/1978 2:00 +Arizona,,FORMATION,AZ,8/13/1978 11:00 +Saginaw,,FORMATION,MI,8/14/1978 13:00 +Simi Valley,,FIREBALL,CA,8/15/1978 2:00 +West Bloomfield,GREEN,FLASH,MI,8/15/1978 2:00 +Longmont,,RECTANGLE,CO,8/15/1978 12:00 +Rochester,,,MN,8/15/1978 13:00 +Gadsden,,SPHERE,AL,8/15/1978 15:30 +Romayor,RED,FIREBALL,TX,8/15/1978 16:30 +Covington,,DISK,WA,8/15/1978 17:00 +Cape Cod,,OTHER,MA,8/15/1978 18:00 +Provo,,DISK,UT,8/15/1978 18:00 +Carbon Hill,,TRIANGLE,AL,8/15/1978 19:30 +Statesboro,,LIGHT,GA,8/15/1978 20:30 +Lawrenceburg,,CIGAR,TN,8/15/1978 21:00 +Suffolk,,CIRCLE,VA,8/15/1978 21:00 +Ticonderoga,,TRIANGLE,NY,8/15/1978 21:00 +Heath,,CIRCLE,MA,8/15/1978 22:00 +Steubenville,,DISK,OH,8/15/1978 22:00 +Pendleton,,LIGHT,OR,8/15/1978 23:00 +Fullerton,,CYLINDER,CA,8/16/1978 0:00 +Ridgecrest,,DISK,CA,8/17/1978 23:00 +Harvey,,DISK,MI,8/18/1978 20:00 +New Britain,,FIREBALL,CT,8/19/1978 1:00 +La Mesa,YELLOW,DISK,CA,8/20/1978 0:00 +Lake Geneva,,DISK,WI,8/20/1978 21:15 +Bastrop,,RECTANGLE,LA,8/21/1978 19:00 +Monroe-Bastrop,,RECTANGLE,LA,8/21/1978 19:00 +Langhorne,,DISK,PA,8/22/1978 20:00 +Bluepoint,,DISK,NY,8/23/1978 19:00 +Fort Worth,,TRIANGLE,TX,8/24/1978 17:00 +Santa Rosa,ORANGE,OVAL,CA,8/25/1978 19:30 +St. Petersburg,,LIGHT,FL,8/27/1978 3:00 +Avon,,RECTANGLE,CT,8/30/1978 1:00 +San Francisco,,CIRCLE,CA,9/1/1978 3:00 +Sioux City,,OTHER,IA,9/1/1978 14:00 +Memphis,,TRIANGLE,TN,9/1/1978 19:00 +Sunnyside,,LIGHT,WA,9/1/1978 19:00 +Greenfield,,LIGHT,IN,9/1/1978 21:15 +Bartlett,,DISK,IL,9/1/1978 22:00 +Leavenworth,ORANGE,LIGHT,KS,9/2/1978 21:00 +Imperial Beach,YELLOW,OTHER,CA,9/9/1978 21:00 +Wells,,TRIANGLE,ME,9/15/1978 10:00 +Flemington,,OVAL,FL,9/15/1978 16:00 +Covington,,DISK,WA,9/15/1978 18:00 +Hayward,,,WI,9/15/1978 20:00 +Pampa,GREEN,LIGHT,TX,9/15/1978 20:00 +Braceville,,DIAMOND,OH,9/15/1978 21:00 +Shelby,,TRIANGLE,OH,9/15/1978 23:00 +Tampa,,SPHERE,FL,9/20/1978 16:00 +Park Ridge,,RECTANGLE,IL,9/20/1978 20:00 +Chelmsford,,DISK,MA,9/28/1978 18:00 +Windsor,,CONE,NC,10/1/1978 0:00 +Lecompte,,DISK,LA,10/1/1978 20:00 +Francesville,,CYLINDER,IN,10/1/1978 23:15 +Burt,,CIRCLE,MI,10/3/1978 18:00 +Philadelphia,,SPHERE,PA,10/4/1978 19:30 +Hudson,,CIRCLE,NH,10/5/1978 20:00 +Elmont,,RECTANGLE,NY,10/10/1978 2:00 +Brighton,,CIRCLE,MI,10/11/1978 23:00 +Kannapolis,,DISK,NC,10/12/1978 3:30 +Dyersburg,,TRIANGLE,TN,10/12/1978 21:00 +Alpine,,CIRCLE,AZ,10/12/1978 23:00 +Atlanta,,DISK,GA,10/14/1978 7:00 +Greenwich,,CIRCLE,CT,10/15/1978 0:00 +Redondo Beach,,OTHER,CA,10/15/1978 0:00 +Des Plaines,,DISK,IL,10/15/1978 2:30 +Shelby Township,,DISK,MI,10/15/1978 18:00 +Coeur d'Alene,,OVAL,ID,10/15/1978 19:00 +Port St. Joe,,CIRCLE,FL,10/15/1978 19:30 +Cherokee,,LIGHT,NC,10/15/1978 20:00 +"Haena, Kauai",BLUE,LIGHT,HI,10/15/1978 21:00 +Candia,,OVAL,NH,10/15/1978 22:00 +Birmingham,,OVAL,AL,10/18/1978 23:30 +West Seneca,,TRIANGLE,NY,10/20/1978 22:00 +Virginia City,,OTHER,MT,10/25/1978 16:00 +Monroe,,DISK,NC,10/25/1978 21:00 +Culloden,,,WV,11/1/1978 3:00 +Mooresville,,OTHER,IN,11/1/1978 8:00 +June Lake,,DISK,CA,11/1/1978 10:00 +San Angelo,,CHEVRON,TX,11/1/1978 13:00 +Troy,,LIGHT,NY,11/1/1978 20:00 +Lebanon,RED,TRIANGLE,NH,11/5/1978 19:00 +Carlyss,,LIGHT,LA,11/11/1978 13:00 +Las Vegas,,CIGAR,NV,11/15/1978 20:00 +West Tibury,,DISK,MA,11/15/1978 23:00 +Interstate 80,,OTHER,WY,11/17/1978 15:00 +North Branch,,RECTANGLE,MN,11/21/1978 23:45 +Fredericksburg,,LIGHT,TX,11/25/1978 22:00 +Baileyville,,LIGHT,ME,11/27/1978 19:00 +Ukiah,,SPHERE,CA,11/27/1978 19:00 +Ukiah,,SPHERE,CA,11/27/1978 20:00 +Arvana,,DISK,TX,11/28/1978 0:00 +Arvana-Lamesa,,DISK,TX,11/28/1978 18:00 +Mt. Rainier National Park,,,WA,11/29/1978 3:00 +Deer Park,,DISK,WA,11/30/1978 8:00 +Rockland County,,,NY,12/1/1978 1:00 +Edison,,OTHER,NJ,12/1/1978 1:30 +Ringwood,,TRIANGLE,NJ,12/9/1978 19:00 +Mexico,,DISK,PA,12/10/1978 1:00 +Lake Don Pedro,,RECTANGLE,CA,12/15/1978 14:00 +Sisters,,OTHER,OR,12/15/1978 20:00 +Huntington Park,,DISK,CA,12/20/1978 17:00 +Seattle,,DISK,WA,12/20/1978 18:00 +Helmetta,,CIRCLE,NJ,12/20/1978 19:00 +Valdosta,,CHEVRON,GA,12/23/1978 21:30 +Indianapolis,RED,DISK,IN,12/23/1978 22:00 +Hopewell,,DISK,NJ,12/31/1978 0:30 +Hwy 80,,DISK,CA,1/1/1979 2:00 +Orange,,DISK,CA,1/1/1979 17:00 +Redondo Beach,RED,DISK,CA,1/1/1979 20:00 +Norman,,,OK,1/2/1979 3:00 +Key West,,DISK,FL,1/9/1979 14:30 +Los Angeles,,FIREBALL,CA,1/15/1979 17:00 +Clines Corners,,TRIANGLE,NM,1/15/1979 20:00 +Salt Lake City,,TRIANGLE,UT,1/15/1979 20:30 +Houston,,RECTANGLE,TX,1/31/1979 11:00 +Lake Arrowhead,,CIRCLE,CA,2/1/1979 2:30 +Tallmadge,,TRIANGLE,OH,2/5/1979 21:00 +Helena,,DISK,MT,2/10/1979 9:30 +Huntersville,,OVAL,NC,2/10/1979 23:00 +Louden County,,DISK,VA,2/11/1979 14:00 +Alexandria,,LIGHT,VA,2/13/1979 1:00 +Grover Beach,,OTHER,CA,2/15/1979 21:30 +Pismo Beach,,TRIANGLE,CA,2/20/1979 2:00 +Tallmadge,,TRIANGLE,OH,2/25/1979 21:00 +Medford,,,OR,3/1/1979 4:00 +Downey,,CHEVRON,CA,3/1/1979 23:29 +Buies Creek,,DISK,NC,3/10/1979 2:00 +California Hot Springs,,DISK,CA,3/10/1979 20:00 +Lee's Summit,,FLASH,MO,3/11/1979 16:00 +Woodinville,,LIGHT,WA,3/15/1979 19:00 +Baker City,,CIGAR,OR,3/24/1979 22:00 +Big Sur,,TRIANGLE,CA,3/25/1979 20:00 +North Webster,,OTHER,IN,3/25/1979 23:50 +Middletown,,DISK,PA,3/29/1979 5:30 +Between Jackson Fla.,,CIRCLE,GA,3/30/1979 22:00 +Middletown,,OVAL,PA,3/31/1979 6:10 +Salinas,,DISK,CA,4/1/1979 17:00 +Berkeley,,RECTANGLE,CA,4/1/1979 21:00 +Thomasville,RED,TRIANGLE,NC,4/1/1979 22:00 +West Milford,,DISK,NJ,4/2/1979 0:00 +Dallas,BLUE,LIGHT,TX,4/4/1979 6:00 +Portland,,TRIANGLE,OR,4/4/1979 13:00 +East Providence,,CHEVRON,RI,4/12/1979 22:00 +Jupiter,,LIGHT,FL,4/13/1979 2:00 +Jacksonville,,OTHER,TX,4/15/1979 3:00 +Monterey,,RECTANGLE,NY,4/15/1979 8:00 +Kenton,,FORMATION,MI,4/15/1979 10:00 +Lexington,,TRIANGLE,NC,4/15/1979 21:00 +North Brunswick,,CIRCLE,NJ,4/15/1979 22:50 +New Brunswick,,DISK,NJ,4/20/1979 14:00 +Gainesville,,FIREBALL,FL,5/1/1979 21:00 +Marlboro,YELLOW,CIRCLE,NJ,5/5/1979 16:00 +Kerrville,,DIAMOND,TX,5/5/1979 20:30 +Watson,,DISK,LA,5/6/1979 1:00 +Panama City Beach,,LIGHT,FL,5/6/1979 21:00 +Wordens Pond Road,,DISK,RI,5/15/1979 1:00 +Albuquerque,,CIRCLE,NM,5/15/1979 2:00 +Sanderville,,OVAL,MS,5/15/1979 14:30 +Omaha,,TRIANGLE,NE,5/15/1979 20:00 +San Antonio,,OTHER,TX,5/15/1979 20:30 +Bradford,,CIRCLE,PA,5/18/1979 10:00 +Brady,,,TX,5/21/1979 21:00 +Baltic,,TRIANGLE,SD,5/22/1979 21:00 +Daytona,,DISK,FL,5/26/1979 17:30 +Minot,,RECTANGLE,ND,6/1/1979 0:00 +Tatum,,LIGHT,TX,6/1/1979 5:00 +Cleveland,,CROSS,OH,6/1/1979 16:00 +Laredo,,CIRCLE,TX,6/1/1979 16:00 +Alameda,,DISK,CA,6/1/1979 18:00 +Morrice,,DISK,MI,6/1/1979 18:45 +Ithaca,,CIGAR,NY,6/1/1979 19:00 +Margate,,OVAL,FL,6/1/1979 20:00 +Mesa,,OTHER,AZ,6/1/1979 20:30 +Fredericksburg,,OTHER,VA,6/1/1979 21:00 +Griffin,,DISK,GA,6/1/1979 21:00 +Knoxville,,LIGHT,TN,6/1/1979 21:00 +Victory Heights,,LIGHT,PA,6/1/1979 21:00 +Whitman,,SPHERE,MA,6/1/1979 21:00 +Wilsonville,,CIRCLE,IL,6/1/1979 21:15 +Castro Valley,,RECTANGLE,CA,6/1/1979 22:00 +Court House Bay,,LIGHT,NC,6/1/1979 22:00 +Farmington,,RECTANGLE,NY,6/1/1979 22:00 +Hollister,,EGG,CA,6/1/1979 22:00 +Whidbey Island,,CIRCLE,WA,6/1/1979 22:00 +Marion,,TRIANGLE,IN,6/1/1979 23:00 +Attica,,DISK,MI,6/1/1979 23:40 +Paterson,,OTHER,NJ,6/5/1979 18:30 +Green Township,,OTHER,PA,6/8/1979 0:00 +Huntington,,,NY,6/10/1979 19:00 +Sagamore Hills,,,OH,6/15/1979 3:00 +Los Angeles,,,CA,6/15/1979 4:30 +Dorchester,YELLOW,OTHER,IA,6/15/1979 14:00 +Baton Rouge,,DISK,LA,6/15/1979 15:00 +Woodland,,,WA,6/15/1979 15:00 +Fort Worth,,TEARDROP,TX,6/15/1979 17:00 +Manteca,BLUE,DISK,CA,6/15/1979 19:00 +Oquawka,,RECTANGLE,IL,6/15/1979 19:00 +Baton Rouge,,DISK,LA,6/15/1979 19:30 +San Jose,,DISK,CA,6/15/1979 20:00 +Huntsville,RED YELLOW,OVAL,TN,6/15/1979 21:00 +Jonesboro,,,AR,6/15/1979 23:00 +Napa,,TRIANGLE,CA,6/16/1979 23:30 +Terre Haute,,VARIOUS,IN,6/20/1979 13:00 +Orlando,,CIRCLE,FL,6/20/1979 18:00 +Valley Cottage,,DISK,NY,6/20/1979 20:00 +Bohemia,,LIGHT,NY,6/20/1979 23:30 +Las Vegas,BLUE,,NV,6/23/1979 0:00 +Two Rivers,,CIGAR,WI,6/26/1979 0:00 +St. Paul,YELLOW,LIGHT,MN,6/29/1979 22:45 +Leola,GREEN,LIGHT,PA,6/30/1979 1:00 +Richmond,,FORMATION,ME,6/30/1979 20:00 +Columbia City,,TRIANGLE,IN,6/30/1979 21:00 +Ramona,GREEN,LIGHT,CA,6/30/1979 21:00 +Wilsonville,,CIRCLE,IL,6/30/1979 21:00 +Janesville,,FIREBALL,IL,6/30/1979 23:00 +Sunnyvale,GREEN,,CA,6/30/1979 23:30 +Florence,,DISK,MS,7/1/1979 0:00 +Maxwelton Beach,,CIRCLE,WA,7/1/1979 0:00 +Chico,,OTHER,CA,7/1/1979 1:00 +Chico,,RECTANGLE,CA,7/1/1979 3:00 +East Orange,,DISK,NJ,7/1/1979 10:00 +Desert Center,,LIGHT,CA,7/1/1979 18:00 +Whitman,,DISK,MA,7/1/1979 19:00 +Whitman,,DISK,MA,7/1/1979 19:00 +Houghton Lake,,LIGHT,MI,7/1/1979 23:00 +Syracuse,,LIGHT,NY,7/4/1979 23:00 +Tampa,,DISK,FL,7/5/1979 2:30 +Pichacho Peak,,OTHER,AZ,7/6/1979 10:00 +Pasadena,,FORMATION,MD,7/10/1979 19:00 +Kansas City,RED,CYLINDER,MO,7/11/1979 2:00 +Santa Clarita,,DISK,CA,7/13/1979 22:00 +Honeoye Falls,,CIGAR,NY,7/14/1979 8:00 +Arcadia,,CIGAR,WI,7/15/1979 1:30 +Cumberland,,OTHER,KY,7/15/1979 1:30 +Clackamas,,LIGHT,OR,7/15/1979 7:30 +Hattiesburg,,,MS,7/15/1979 12:00 +Fairmount,,CIGAR,IN,7/15/1979 14:00 +Lansing,,OTHER,MI,7/15/1979 14:00 +Yorktown,,CIGAR,IN,7/15/1979 14:00 +Apple Valley,,SPHERE,CA,7/15/1979 14:30 +La Habra,,TRIANGLE,CA,7/15/1979 19:00 +Louisville,,DISK,KY,7/15/1979 21:30 +Rancho Palos Verdes,,CHEVRON,CA,7/15/1979 21:30 +Ranger,,TRIANGLE,WV,7/15/1979 21:30 +Yakima,,OTHER,WA,7/15/1979 22:30 +N. Cascades Nat. Park,GREEN,LIGHT,WA,7/15/1979 23:00 +Arnheim,,TRIANGLE,MI,7/16/1979 12:00 +Niagara Falls,,LIGHT,NY,7/18/1979 21:00 +Saginaw,,,MI,7/25/1979 15:00 +Hayti,,TRIANGLE,MO,7/28/1979 22:30 +Ocala,,VARIOUS,FL,7/29/1979 2:00 +Boone,,CYLINDER,NC,7/30/1979 22:00 +Fort Valley,,SPHERE,GA,8/1/1979 0:00 +Twenty Nine Palms,,,CA,8/1/1979 0:00 +North Miami Beach,,OTHER,FL,8/1/1979 19:00 +Little Falls,,FIREBALL,NY,8/1/1979 21:00 +Omaha,,TRIANGLE,NE,8/1/1979 22:00 +Springfield,,RECTANGLE,MA,8/1/1979 22:00 +Tinley Park,,LIGHT,IL,8/10/1979 21:00 +New Londons,,TRIANGLE,WI,8/10/1979 21:45 +Lee Vining,,DISK,CA,8/14/1979 1:30 +La Habra,ORANGE GREEN,OVAL,CA,8/15/1979 0:00 +Mammoth Lakes,,CIRCLE,CA,8/15/1979 1:00 +Bistolville,,TRIANGLE,OH,8/15/1979 1:30 +Campbellsville,,OVAL,KY,8/15/1979 17:00 +West New York,,DISK,NJ,8/15/1979 18:00 +Wenatchee,,TRIANGLE,WA,8/15/1979 22:00 +Beach Haven Terrace,,FIREBALL,NJ,8/15/1979 22:10 +Gaithersburg,,CIRCLE,MD,8/15/1979 23:00 +Phoenix,,SPHERE,AZ,8/17/1979 20:30 +Painesville,,TRIANGLE,OH,8/17/1979 21:37 +Clay City,,SPHERE,KY,8/19/1979 22:50 +Dekalb,RED,FIREBALL,IL,8/20/1979 19:00 +Phoenix,,DISK,AZ,8/20/1979 21:00 +Lake Wateree,,LIGHT,SC,8/22/1979 21:00 +Cass City,,DISK,MI,8/25/1979 12:36 +North Platte,BLUE,OTHER,NE,8/25/1979 22:00 +Stone Mountain,,TRIANGLE,GA,8/25/1979 22:00 +Chicago,,VARIOUS,IL,8/28/1979 2:45 +Rockford,,DISK,IL,9/1/1979 0:05 +Crowley,,,LA,9/1/1979 2:00 +New York City,,DISK,NY,9/1/1979 19:30 +Commack,,OTHER,NY,9/1/1979 20:00 +Farmville,,DISK,VA,9/1/1979 20:00 +Greenville,,TRIANGLE,PA,9/1/1979 20:00 +Kenna,,CIRCLE,WV,9/1/1979 20:00 +Spotsylvania,,OTHER,VA,9/1/1979 20:00 +Carrollton,,SPHERE,MO,9/1/1979 21:30 +Rockford,,FORMATION,IL,9/1/1979 22:00 +Sickles,,TRIANGLE,OK,9/1/1979 22:00 +Lake Conroe,,CIRCLE,TX,9/1/1979 23:59 +Mount Wilson Observatory,,SPHERE,CA,9/9/1979 22:00 +Honolulu,BLUE,SPHERE,IL,9/12/1979 4:00 +East New York,,DISK,NJ,9/15/1979 17:00 +Bryan,RED BLUE,OVAL,TX,9/15/1979 18:00 +Mobile,,RECTANGLE,AL,9/17/1979 18:15 +Fayetteville,,CYLINDER,NC,9/17/1979 20:10 +Baltimore,,LIGHT,MD,9/19/1979 22:45 +Cape Elizabeth,,LIGHT,ME,9/21/1979 1:00 +Cottage Grove,,CIRCLE,MN,9/25/1979 20:30 +Monsey,,DISK,NY,9/26/1979 17:00 +New Brighton,,DISK,MN,9/29/1979 10:00 +Haltom Ciy,,TRIANGLE,TX,9/29/1979 17:00 +Sanford,,CIGAR,NC,9/30/1979 18:00 +Ballentine,,OVAL,SC,9/30/1979 19:00 +Joliet,,EGG,IL,9/30/1979 21:03 +Lomita,,DISK,CA,10/1/1979 16:00 +Columbia,,RECTANGLE,MD,10/1/1979 19:00 +Buffalo,,LIGHT,NY,10/1/1979 21:00 +Olympia,,DISK,WA,10/1/1979 21:00 +Pittsburgh,,DISK,PA,10/1/1979 21:00 +Cranbury,,LIGHT,NJ,10/1/1979 23:00 +Poughkeepsie,ORANGE,CHEVRON,NY,10/10/1979 0:00 +San Diego,,OVAL,CA,10/10/1979 22:00 +Security,,,CO,10/10/1979 22:00 +Barnegat,,RECTANGLE,NJ,10/12/1979 0:45 +Ellwood City,,,PA,10/15/1979 16:30 +Bemidji,,,MN,10/15/1979 19:35 +Gig Harbor,,CIRCLE,WA,10/15/1979 21:00 +Arcadia,,DISK,LA,10/24/1979 17:00 +Wausau,,FORMATION,WI,11/1/1979 13:30 +Meriden,,LIGHT,CT,11/1/1979 16:30 +Haltom City,,TRIANGLE,TX,11/1/1979 21:00 +Emerson,BLUE,RECTANGLE,NJ,11/10/1979 1:00 +Ypsilanti,,OTHER,MI,11/10/1979 21:00 +Wickenburg,,,AZ,11/11/1979 19:30 +Wickenburg,GREEN,LIGHT,AZ,11/11/1979 19:30 +Fort Lauderdale,,CIGAR,FL,11/12/1979 22:00 +Hatcreek Campground,,RECTANGLE,CA,11/14/1979 22:00 +Honolulu,BLUE,SPHERE,HI,11/15/1979 4:00 +Austin,,TRIANGLE,TX,11/15/1979 21:00 +Wassaic,,CIRCLE,NY,11/15/1979 22:30 +Detroit,,LIGHT,MI,11/20/1979 7:10 +Clarksburg,,DISK,WV,11/22/1979 23:00 +Ft. Jackson,,,SC,11/30/1979 1:00 +Water Valley,,CIGAR,MS,12/1/1979 1:00 +Arkansas,,FIREBALL,AR,12/5/1979 22:00 +Albuquerque,,CIRCLE,NM,12/8/1979 20:30 +Morris,,LIGHT,IL,12/15/1979 19:00 +Houlton,,TRIANGLE,ME,12/20/1979 22:00 +Waterloo,,,IA,12/29/1979 2:00 +Kansas City,BLUE,CIRCLE,MO,12/31/1979 22:35 +Spartanburg,,CIRCLE,SC,12/31/1979 23:00 +Indianapolis,GREEN,LIGHT,IN,1/1/1980 1:00 +Omaha,,OTHER,NE,1/1/1980 2:00 +Chicopee,,DIAMOND,MA,1/1/1980 23:30 +Oklahoma City,,OTHER,OK,1/7/1980 13:00 +Exeter,ORANGE YELLOW,DISK,NH,1/10/1980 0:00 +Wichita,RED,CIGAR,KS,1/11/1980 23:00 +Orinda,,SPHERE,CA,1/12/1980 23:00 +Albany,,DISK,IL,1/15/1980 22:00 +Pittsburgh,,OVAL,PA,1/15/1980 22:00 +Los Angeles,,DIAMOND,CA,1/21/1980 14:30 +Murphy,,SPHERE,CA,1/22/1980 2:00 +Virginia Beach,,CYLINDER,VA,1/23/1980 22:30 +Georgetown,,TRIANGLE,DE,2/2/1980 20:30 +Hollister,,EGG,CA,2/15/1980 22:00 +Canton,,LIGHT,NY,2/17/1980 19:10 +Bend,,OVAL,OR,2/18/1980 18:30 +Oxford,,CIGAR,CT,3/1/1980 0:30 +Bisbee,,OTHER,AZ,3/1/1980 18:00 +San Francisco,BLUE,LIGHT,CA,3/1/1980 18:30 +Patterson,,DISK,NJ,3/1/1980 21:00 +Homestead,,CIRCLE,FL,3/14/1980 20:00 +Wayland,YELLOW,LIGHT,MA,3/15/1980 1:00 +Concord,GREEN,OTHER,NH,3/15/1980 2:00 +Manassas,,DISK,VA,3/15/1980 16:30 +Morning Sun,,DISK,IA,3/20/1980 0:00 +Not Sure,,OTHER,NH,3/20/1980 2:00 +Paterson,,DISK,NJ,3/20/1980 20:00 +Westminster,RED,DISK,CO,3/24/1980 14:00 +Canoga Park,,DISK,CA,3/31/1980 19:15 +Costa Mesa,,VARIOUS,CA,4/1/1980 16:00 +Seattle,,TRIANGLE,WA,4/5/1980 0:00 +Alameda,,FIREBALL,CA,4/10/1980 19:50 +Middletown,RED,SPHERE,OH,4/18/1980 23:59 +Dayton,,CIGAR,OH,4/20/1980 14:00 +Pittsburg,,OVAL,CA,5/1/1980 0:00 +Seattle,,DISK,WA,5/1/1980 7:00 +Salt Lake City,,CYLINDER,UT,5/1/1980 12:00 +Los Angeles,,LIGHT,CA,5/5/1980 4:00 +Livermore,,DISK,CA,5/5/1980 18:00 +Gladstone,,LIGHT,MI,5/10/1980 10:30 +Gladstone,,LIGHT,MI,5/10/1980 10:30 +Milford,,OTHER,CT,5/10/1980 13:00 +Wilton,GREEN,LIGHT,CA,5/10/1980 20:00 +Raytown,,DISK,MO,5/12/1980 20:30 +Greenfield,,LIGHT,IN,5/12/1980 21:00 +Hat Creek,,RECTANGLE,CA,5/15/1980 1:00 +Eureka,,CIGAR,CA,5/15/1980 16:00 +Yonkers,,TRIANGLE,NY,5/15/1980 17:40 +Oklahoma City,,VARIOUS,OK,5/15/1980 20:00 +Oklahoma City,,VARIOUS,OK,5/15/1980 20:00 +St. Cloud,,OTHER,MN,5/15/1980 22:00 +Salt Lake City,,SPHERE,UT,5/20/1980 12:30 +Denver,RED,OVAL,CA,5/20/1980 13:00 +Little Rock,,,AR,5/22/1980 2:00 +Dekalb,,CIRCLE,IL,5/25/1980 23:00 +Alma,,,KS,6/1/1980 0:00 +Overton,,OTHER,TX,6/1/1980 0:00 +Rochester,,OTHER,WA,6/1/1980 0:00 +Parkersburg,,CIRCLE,WV,6/1/1980 5:00 +Oldtown,,SPHERE,ME,6/1/1980 9:00 +Victorville,,LIGHT,CA,6/1/1980 11:00 +Baadon,,VARIOUS,MI,6/1/1980 12:00 +Temple Terrace,,DISK,FL,6/1/1980 13:00 +Evansville,,CIRCLE,IN,6/1/1980 14:00 +Montgomery,,DISK,AL,6/1/1980 16:00 +Ethell,,OTHER,WA,6/1/1980 17:00 +Andover,,DISK,MN,6/1/1980 18:00 +Homedale,,FIREBALL,ID,6/1/1980 18:00 +Auxvasse,,DISK,MO,6/1/1980 19:00 +Hamburg,,SPHERE,NY,6/1/1980 19:00 +Bethel,,OTHER,CT,6/1/1980 20:00 +Greeneville,,TRIANGLE,TN,6/1/1980 20:00 +Ladue,,TRIANGLE,MO,6/1/1980 20:00 +Oroville,,SPHERE,CA,6/1/1980 20:00 +Port Wentworth,,CIGAR,GA,6/1/1980 20:30 +Birmingham,,TRIANGLE,AL,6/1/1980 21:00 +Gray,,OTHER,GA,6/1/1980 21:00 +Newport,,,AR,6/1/1980 21:00 +Houston,,OTHER,TX,6/1/1980 21:30 +Marlow Heights,,LIGHT,MD,6/1/1980 22:00 +Morganton,,LIGHT,NC,6/1/1980 22:00 +Willard,,,OH,6/1/1980 22:00 +Algonquin,,DISK,IL,6/1/1980 23:00 +Warminster,,DISK,PA,6/1/1980 23:00 +Lake Forest,,TRIANGLE,IL,6/3/1980 15:00 +Darien,,,IL,6/5/1980 1:00 +Tucson,,DIAMOND,AZ,6/8/1980 16:00 +Seattle,,DISK,WA,6/10/1980 5:30 +Seiling,,CIRCLE,OK,6/10/1980 21:00 +Middle Valley,YELLOW,TRIANGLE,TN,6/12/1980 1:00 +Barnsdall,,OTHER,OK,6/15/1980 0:00 +Yacolt,,DISK,WA,6/15/1980 10:00 +Wapello,,CIRCLE,IA,6/15/1980 10:30 +Mentor,,DISK,OH,6/15/1980 18:00 +Columbia,,LIGHT,MO,6/15/1980 20:00 +Point Mugu,,LIGHT,CA,6/15/1980 21:00 +Sterling,,DISK,VA,6/15/1980 21:00 +Nashville,,TRIANGLE,TN,6/15/1980 21:42 +San Francisco,,DISK,CA,6/15/1980 21:45 +El Paso,,LIGHT,TX,6/15/1980 22:00 +Waterford,,OTHER,MI,6/15/1980 23:00 +Bridgeton,,CIRCLE,NJ,6/20/1980 20:00 +Philadelphia,,SPHERE,PA,6/23/1980 20:00 +Mount Weather,,,VA,6/24/1980 14:00 +Cave Junction,,,OR,6/25/1980 10:00 +Parma,,,ID,6/26/1980 19:00 +Clinton,,RECTANGLE,MO,6/30/1980 0:00 +Phoenix,,,AZ,6/30/1980 0:00 +North Lauderdale,,OTHER,FL,6/30/1980 4:00 +Hollister,,DISK,CA,6/30/1980 9:00 +South Lake Tahoe,,LIGHT,CA,6/30/1980 19:00 +Tampa,,CIRCLE,FL,6/30/1980 21:30 +Athens,,LIGHT,TX,6/30/1980 22:00 +Grand Rivers,BLUE,FLASH,KY,6/30/1980 23:00 +Del Mar,BLUE,,CA,7/1/1980 0:00 +Parm,RED,SPHERE,OH,7/1/1980 0:00 +Caldwell,,TRIANGLE,WI,7/1/1980 1:00 +Tracy,,TRIANGLE,CA,7/1/1980 2:00 +Black Earth,ORANGE,OVAL,WI,7/1/1980 21:00 +Plainfield,,CIRCLE,CT,7/1/1980 21:30 +Rapid City,GREEN,TRIANGLE,MI,7/4/1980 21:00 +St. Paul,,OVAL,MN,7/4/1980 22:00 +Forest Park,,DISK,GA,7/6/1980 21:00 +Hudson,,,MA,7/7/1980 8:30 +Louisville,,CIGAR,KY,7/8/1980 2:00 +Louisville,,CIGAR,KY,7/8/1980 4:00 +Town of Preble,,LIGHT,NY,7/10/1980 15:00 +Norwalk,,OVAL,CT,7/10/1980 21:00 +Knife River,,,MN,7/10/1980 22:00 +Ridgefield,,SPHERE,WA,7/10/1980 23:00 +San Andreas,,,CA,7/11/1980 11:00 +Hardwick,,CYLINDER,VT,7/13/1980 0:00 +Hamburg,,TRIANGLE,NY,7/14/1980 23:00 +Moline,,DISK,IL,7/15/1980 2:00 +Miami,,TRIANGLE,FL,7/15/1980 6:00 +Buffalo,,OVAL,NY,7/15/1980 8:30 +Conroe,,LIGHT,TX,7/15/1980 21:00 +Valencia,,DISK,CA,7/15/1980 21:00 +Fort Mill,RED,LIGHT,SC,7/15/1980 22:00 +Omaha,,OVAL,NE,7/15/1980 22:00 +Salt Lake City,,LIGHT,UT,7/15/1980 23:00 +Fleetville,,DISK,PA,7/16/1980 10:00 +Seattle,,CYLINDER,WA,7/16/1980 13:40 +North Platte,,FORMATION,NE,7/17/1980 22:10 +Benton Harbor,,CIGAR,MI,7/20/1980 1:00 +no data,,TRIANGLE,FL,7/20/1980 13:00 +Cleveland,RED YELLOW,OVAL,OH,7/20/1980 21:00 +Exeter,,CIGAR,CA,7/21/1980 14:00 +Exeter,,CIGAR,CA,7/21/1980 22:00 +Pecos,,TRIANGLE,NM,7/22/1980 23:00 +Gresham,,SPHERE,OR,7/29/1980 23:15 +Henrietta,,OTHER,NY,7/30/1980 20:30 +Clinton,,OVAL,ME,7/30/1980 22:00 +San Antonio,,DISK,TX,8/1/1980 8:00 +Kendall,,CIGAR,FL,8/1/1980 20:00 +Barrington,,TRIANGLE,IL,8/1/1980 23:00 +Bremham,,CHEVRON,TX,8/1/1980 23:30 +Maricopa,,OTHER,AZ,8/5/1980 21:00 +Glennallen,,RECTANGLE,AK,8/5/1980 23:15 +Tillamook,,RECTANGLE,OR,8/7/1980 1:00 +Tullahoma,,LIGHT,TN,8/8/1980 20:00 +Taunton,,DISK,MA,8/12/1980 17:45 +Honolulu,,RECTANGLE,HI,8/12/1980 19:00 +Bandon,,DISK,OR,8/12/1980 22:00 +Arthur,,LIGHT,NE,8/15/1980 17:30 +Bend,,,OR,8/15/1980 20:00 +Bricktown,,FORMATION,NJ,8/15/1980 20:00 +Apollo,,SPHERE,PA,8/15/1980 20:30 +Glenndale,,CIRCLE,MD,8/15/1980 23:00 +Detroit,,DISK,MI,8/15/1980 23:30 +Pine Springs,,LIGHT,TX,8/16/1980 23:30 +Clarksfield,,CIGAR,OH,8/18/1980 21:30 +Edwards,,CHEVRON,NY,8/20/1980 1:00 +Gifford Pinchot National Forrest,,DISK,WA,8/20/1980 21:00 +Kent,,TEARDROP,WA,8/22/1980 18:00 +Rush City,,,MN,8/30/1980 16:00 +Maquoketa,,,IA,8/30/1980 20:00 +Concordia,,SPHERE,MO,9/1/1980 17:00 +Hansville,,DISK,WA,9/1/1980 20:15 +Kansas City,,SPHERE,MO,9/3/1980 21:25 +Orlando,,RECTANGLE,FL,9/4/1980 17:30 +Morgan Hill,,DISK,CA,9/5/1980 17:00 +Brewerton,,VARIOUS,NY,9/8/1980 6:00 +Brick,,VARIOUS,NJ,9/9/1980 20:30 +Atlantic Ocean,RED,LIGHT,NC,9/12/1980 21:00 +Maynardville,,LIGHT,TN,9/15/1980 0:30 +Royal Oak,RED,DISK,MI,9/15/1980 1:30 +Fort Wayne,,CYLINDER,IN,9/15/1980 21:00 +Southwest Harbor,,LIGHT,ME,9/15/1980 21:00 +Black Creek Community,ORANGE,OVAL,GA,9/15/1980 22:00 +Dam B Lake,,LIGHT,TX,9/15/1980 22:00 +Elko,,LIGHT,NV,9/15/1980 22:00 +Tekamah,,,NE,9/15/1980 22:00 +Bridgeport,,TRIANGLE,CT,9/15/1980 23:00 +Clinton Township,,OVAL,MI,9/16/1980 23:00 +Louisville,,CIRCLE,KY,9/20/1980 20:30 +Samsonville,,DISK,NY,9/20/1980 22:00 +Savannah,,TRIANGLE,GA,9/24/1980 23:59 +St. Paul,,LIGHT,MN,9/27/1980 21:00 +Fremont,,OTHER,CA,10/1/1980 1:30 +Mountainboro,,FIREBALL,AL,10/1/1980 20:00 +Shirleysburg,,FORMATION,PA,10/1/1980 21:00 +Jersey City,,CIGAR,NJ,10/1/1980 22:00 +Homer,,DISK,LA,10/1/1980 23:00 +Irvine,,SPHERE,CA,10/2/1980 21:30 +Richardson,,DIAMOND,TX,10/3/1980 18:00 +Allenspark,,LIGHT,CO,10/5/1980 21:00 +Wind Lake,,DISK,WI,10/9/1980 6:45 +Houston,,SPHERE,TX,10/10/1980 19:00 +Dallas,,,TX,10/10/1980 22:00 +Manchester,RED,LIGHT,NH,10/10/1980 23:30 +Boonville,ORANGE,SPHERE,CA,10/15/1980 0:00 +Columbus,,FIREBALL,OH,10/15/1980 2:30 +Guntersville,,TRIANGLE,AL,10/15/1980 3:00 +Sandy,,SPHERE,UT,10/15/1980 14:00 +Avon,,DISK,CT,10/15/1980 19:00 +Denham Springs,,RECTANGLE,LA,10/15/1980 19:00 +National Forest,GREEN,CYLINDER,CO,10/15/1980 19:00 +Boonville,,SPHERE,CA,10/15/1980 20:00 +Jonesport,,OVAL,ME,10/15/1980 23:00 +Bald Knob,,TRIANGLE,AR,10/19/1980 1:00 +Corpus Christi,,DISK,TX,10/20/1980 18:00 +Dallas,RED,TRIANGLE,TX,10/20/1980 19:00 +Detroit,,RECTANGLE,MI,10/29/1980 20:00 +Virginia Beach,,OTHER,VA,10/31/1980 5:25 +Rochester,,OVAL,IN,11/1/1980 0:00 +Garland,,LIGHT,TX,11/5/1980 22:00 +Lansing,,RECTANGLE,MI,11/10/1980 20:00 +Lampasas,,LIGHT,TX,11/15/1980 22:00 +Clarksburg,,OVAL,WV,11/21/1980 0:00 +Alloy,,DISK,WV,11/22/1980 11:00 +Roswell,,,NM,12/1/1980 0:01 +Franklin,,RECTANGLE,TN,12/1/1980 21:00 +Newport News,,DISK,VA,12/1/1980 21:00 +Winfield,,LIGHT,KS,12/1/1980 22:00 +Artesia,,DISK,CA,12/8/1980 19:30 +Santa Monica,,DISK,CA,12/9/1980 0:00 +Newport News,,OTHER,VA,12/10/1980 0:00 +Weyerhaeuser,,DISK,WI,12/10/1980 21:00 +Bellingham,,FIREBALL,WA,12/12/1980 20:40 +Decatur,,,IL,12/20/1980 19:00 +Hanover,,LIGHT,MD,12/27/1980 11:00 +Savannah,,SPHERE,GA,12/28/1980 19:00 +Chicopee,GREEN,DIAMOND,MA,12/30/1980 23:30 +El Cajon,,SPHERE,CA,1/1/1981 0:01 +El Reno,,DISK,OK,1/1/1981 1:00 +Glendora,,,CA,1/10/1981 20:30 +West Jefferson,,TRIANGLE,OH,1/12/1981 22:00 +Davenport,,CIGAR,IA,1/15/1981 1:15 +Colorado Springs,,TRIANGLE,CO,1/15/1981 10:00 +Long Beach,RED,TRIANGLE,CA,1/15/1981 20:00 +Oroville,,DIAMOND,CA,1/17/1981 21:00 +Wilmont,RED,LIGHT,MN,1/19/1981 21:30 +Chula Vista,,OTHER,CA,1/21/1981 17:00 +Flagstaff,,CIGAR,AZ,2/12/1981 12:23 +Flint,,,MI,2/20/1981 14:00 +Cameron,,LIGHT,NC,2/23/1981 21:00 +Azusa,,LIGHT,CA,2/27/1981 10:00 +McKinleyville,,OTHER,CA,3/1/1981 17:45 +Campbell,,CIGAR,CA,3/1/1981 22:00 +Needles,,DISK,CA,3/15/1981 0:00 +Pompano Beach,,TRIANGLE,FL,3/25/1981 19:30 +Sarasota,,CYLINDER,FL,3/25/1981 20:00 +Arenzville,,OTHER,IL,4/1/1981 21:00 +Tomberlin,,VARIOUS,AR,4/12/1981 3:00 +Milwaukie,GREEN BLUE,DISK,OR,4/14/1981 0:00 +Mohave Desert,,OTHER,CA,4/14/1981 17:00 +Burbank,,SPHERE,CA,4/15/1981 15:00 +Long Beach,,FORMATION,CA,4/18/1981 17:00 +Citrus Heights,,CIRCLE,CA,4/22/1981 15:00 +Rochester,RED GREEN BLUE,,NH,4/23/1981 21:20 +Bridgewater,,TRIANGLE,MA,4/25/1981 20:00 +Petaluma,RED ORANGE,RECTANGLE,CA,4/28/1981 23:30 +no data,,DIAMOND,LA,4/30/1981 23:00 +Boulder,,FIREBALL,CO,5/1/1981 18:30 +San Diego,,TRIANGLE,CA,5/1/1981 20:00 +Scottsdale,ORANGE,FIREBALL,AZ,5/9/1981 0:00 +Wayne,,OVAL,NJ,5/10/1981 21:00 +Twenty Nine Palms,,LIGHT,CA,5/15/1981 2:00 +Grass Valley,,CIGAR,CA,5/15/1981 16:00 +Durham,,SPHERE,NC,5/20/1981 22:00 +Humboldt,,DISK,TN,5/20/1981 23:00 +Sierra Vista,,CHEVRON,AZ,5/25/1981 20:30 +Camden,,DISK,AR,6/1/1981 0:00 +The Dalles,,FIREBALL,OR,6/1/1981 17:00 +Lake Morena,,CIGAR,CA,6/1/1981 19:00 +South Saint Paul,,CHEVRON,MN,6/1/1981 19:00 +Detroit,,CIRCLE,MI,6/1/1981 20:00 +Kittanning,,DISK,PA,6/1/1981 20:00 +Mesa,,OTHER,AZ,6/1/1981 20:00 +New Bedford,,DISK,MA,6/1/1981 20:00 +Portland,,TRIANGLE,OR,6/1/1981 21:00 +South St. Paul,,CHEVRON,MN,6/1/1981 22:00 +Reno,,LIGHT,NV,6/1/1981 22:30 +Wedgefield,,DISK,SC,6/5/1981 10:00 +Myrtle Beach,,LIGHT,SC,6/5/1981 21:00 +Columbus,,OTHER,NE,6/6/1981 23:59 +Vandergrift,,DISK,PA,6/8/1981 20:00 +Camp Pendelton,,,CA,6/10/1981 14:00 +Fremont,,DIAMOND,CA,6/10/1981 22:00 +Hollywood,,OVAL,FL,6/10/1981 23:00 +Providence,,DIAMOND,RI,6/11/1981 18:00 +North Bend,,OVAL,OR,6/13/1981 19:30 +Kulpmount,,TRIANGLE,PA,6/13/1981 22:00 +none,,CIRCLE,NV,6/15/1981 0:00 +Point Barrow,,CYLINDER,AK,6/15/1981 0:00 +Morrow,RED,LIGHT,OH,6/15/1981 0:30 +Huntsville,,,OH,6/15/1981 1:00 +Baldwin,,CIRCLE,WI,6/15/1981 16:00 +Crawford,,FIREBALL,CO,6/15/1981 20:00 +Wellston,,TRIANGLE,OH,6/15/1981 20:00 +Red Bluff,,,CA,6/15/1981 21:00 +Aberdeen,,CYLINDER,WA,6/15/1981 22:00 +Hendersonville,,,TN,6/15/1981 22:00 +Las Vegas,,,NV,6/15/1981 22:30 +Seattle,,RECTANGLE,WA,6/15/1981 22:30 +Elizaville,,OTHER,KY,6/15/1981 23:30 +Kenner,,CIRCLE,LA,6/17/1981 13:00 +Mondel,,,NM,6/18/1981 3:00 +Whitney,,FORMATION,TX,6/20/1981 2:30 +Olympia,ORANGE,SPHERE,WA,6/20/1981 23:00 +Huntsville,RED,CIRCLE,AL,6/30/1981 0:00 +Webster,,OTHER,MA,6/30/1981 0:00 +Manchester,,SPHERE,CT,6/30/1981 12:00 +Whitney,,FORMATION,TX,6/30/1981 15:30 +Raynham,,DISK,MA,6/30/1981 17:00 +Sharon Springs,,CIRCLE,NY,6/30/1981 19:00 +Grand Rivers,,,KY,6/30/1981 21:00 +Lebanon,,TRIANGLE,MO,6/30/1981 21:00 +Paragon,,SPHERE,IN,6/30/1981 21:00 +Watsonville,,,CA,7/1/1981 21:30 +Indian Springs,,LIGHT,NV,7/1/1981 22:00 +Dillonvale,,LIGHT,OH,7/3/1981 22:30 +Brighton,,LIGHT,IL,7/5/1981 1:00 +Ellwood city,,SPHERE,PA,7/6/1981 13:30 +Edwards AFB,,DIAMOND,CA,7/7/1981 21:30 +Christiansburg,,LIGHT,VA,7/8/1981 20:00 +Lisbon Falls,BLUE,FIREBALL,ME,7/8/1981 20:00 +Cape Cod,,LIGHT,MA,7/10/1981 22:00 +Connorsville,,LIGHT,WI,7/10/1981 23:30 +Tabernacle,,RECTANGLE,NJ,7/11/1981 21:45 +Stony Brook University,,DISK,NY,7/15/1981 2:30 +Fayetteville,,OTHER,AR,7/15/1981 19:00 +Mayfield,,CIGAR,NY,7/18/1981 22:00 +Berkeley,,DIAMOND,MO,7/22/1981 13:00 +Foresthill,,CIGAR,CA,7/28/1981 23:59 +Vinton,,TRIANGLE,IA,7/29/1981 18:00 +Hobbs,,CONE,NM,7/30/1981 19:30 +Carnation,,DISK,WA,7/30/1981 23:00 +Coloma,YELLOW,SPHERE,CA,8/1/1981 2:00 +Austin,,FORMATION,TX,8/1/1981 3:00 +Carnes,,TRIANGLE,MS,8/1/1981 20:00 +Stockton,,RECTANGLE,CA,8/1/1981 20:00 +Estes Park,,,CO,8/1/1981 22:00 +Murphysboro,,CIRCLE,IL,8/1/1981 22:00 +Ruston,,OVAL,LA,8/8/1981 12:00 +Salinas,,DISK,CA,8/10/1981 19:00 +Murray,,,UT,8/11/1981 18:49 +Gurnee,,,IL,8/15/1981 1:00 +Jensen,,CYLINDER,UT,8/15/1981 7:00 +Sultan,,,WA,8/15/1981 10:40 +Jacksonville,,SPHERE,FL,8/15/1981 19:00 +Vichy,,,MO,8/15/1981 21:00 +Huntington Beach,,TRIANGLE,CA,8/15/1981 22:00 +Cambridge,,,OH,8/15/1981 23:00 +Jacksonville Beach,,VARIOUS,FL,8/15/1981 23:00 +Saratoga,RED,OVAL,NY,8/23/1981 3:30 +Los Angeles,,CIGAR,CA,8/28/1981 4:30 +Sadieville,,LIGHT,KY,8/30/1981 21:00 +Trona,,DISK,CA,8/31/1981 19:30 +Jacksonveil,GREEN,SPHERE,NC,9/1/1981 0:00 +Diamond,,LIGHT,MO,9/1/1981 16:50 +Fairburn,,DISK,GA,9/1/1981 19:00 +Port Jervis,RED,TRIANGLE,NY,9/1/1981 20:00 +Raynham,,DISK,MA,9/4/1981 17:00 +Solomon,,OTHER,KS,9/7/1981 3:00 +Henderson,,RECTANGLE,NC,9/10/1981 23:00 +Lilburn,,DISK,GA,9/14/1981 20:30 +Georgetown,,TRIANGLE,SC,9/15/1981 6:30 +Bryan,,OTHER,TX,9/15/1981 10:30 +Ft. Hauchuca,,CIGAR,AZ,9/15/1981 12:30 +Trenton,,RECTANGLE,MO,9/15/1981 19:30 +Star Junction,,CIRCLE,PA,9/15/1981 20:30 +Grand Prairie,,LIGHT,TX,9/15/1981 21:00 +Twin Falls,,OTHER,ID,9/16/1981 18:00 +Andrews AFB,,CIRCLE,MD,9/20/1981 18:00 +Blue Springs,,OTHER,MO,9/25/1981 22:00 +Keystone,,OVAL,SD,9/27/1981 15:30 +Edina,,DISK,MN,9/29/1981 0:00 +Texas City,,,TX,10/1/1981 0:00 +Hesperia,GREEN,OVAL,MI,10/1/1981 20:00 +Mt. Sterling,,DISK,KY,10/1/1981 20:00 +Columbus,,DISK,OH,10/4/1981 19:00 +Apache Lake,,EGG,AZ,10/15/1981 9:00 +Beaverton,,CIGAR,OR,10/15/1981 16:00 +San Jose,,DISK,CA,10/15/1981 16:30 +Clark County,,DISK,KY,10/15/1981 19:00 +Detroit,,CIGAR,OR,10/18/1981 7:30 +Boulder,,DISK,CO,10/18/1981 16:00 +Sherwood,,OTHER,OR,10/20/1981 21:00 +West Elk Wilderness Area,,CIRCLE,CO,10/30/1981 23:00 +Weed,,DISK,CA,10/31/1981 18:00 +Lincoln,,SPHERE,NE,11/1/1981 22:00 +San Francisco,,OTHER,CA,11/10/1981 21:00 +Plum Grove,,CIRCLE,TX,11/11/1981 3:00 +Sherwood,,OTHER,OR,11/20/1981 19:00 +Broken Arrow,,OVAL,OK,11/20/1981 20:00 +Delmar,RED GREEN BLUE,LIGHT,DE,11/21/1981 21:30 +Pacifica,,VARIOUS,CA,11/23/1981 20:30 +Angleton,,SPHERE,TX,11/25/1981 22:00 +Stowe,,RECTANGLE,VT,11/25/1981 22:00 +North Bergen,,FIREBALL,NJ,11/27/1981 9:00 +Bartlesville,,,OK,11/29/1981 0:30 +Vernon,,TRIANGLE,NJ,11/30/1981 20:00 +Albuquerque,,RECTANGLE,NM,12/1/1981 19:00 +Orlando,,LIGHT,FL,12/1/1981 21:00 +Fort Lauderdale,,,FL,12/20/1981 2:00 +Bedford County,,DISK,VA,12/24/1981 20:00 +Woodstown,,DISK,NJ,12/29/1981 22:00 +Orange County,,CIRCLE,NC,1/1/1982 20:00 +Carlsbad,RED,,NM,1/1/1982 22:00 +Edwards AFB,,LIGHT,CA,1/6/1982 17:00 +Fort Lee,,DISK,VA,1/14/1982 5:00 +Cape Hatteras,,CIRCLE,NC,2/1/1982 13:00 +Mt. Palomar,,,CA,2/1/1982 22:00 +Windsor,,TRIANGLE,CO,2/12/1982 23:54 +Windsor,,TRIANGLE,CO,2/12/1982 23:54 +Yuma,ORANGE,OVAL,AZ,2/15/1982 23:30 +Siamese Ponds Wilderness,,DISK,NY,4/1/1982 4:00 +Walhalla,,OTHER,SC,4/12/1982 20:30 +Piscataway,,DISK,NJ,5/1/1982 20:00 +Fort Collins,ORANGE,FORMATION,CO,5/7/1982 16:30 +Bono,,,AR,5/7/1982 20:00 +Longmont,,DISK,CO,5/9/1982 20:00 +Piscataway,,DISK,NJ,5/11/1982 20:00 +Edinboro,,,PA,5/12/1982 21:50 +Tullahoma,ORANGE,OVAL,TN,5/15/1982 4:30 +Detroit,,TRIANGLE,MI,5/15/1982 16:00 +West Reno,,OTHER,NV,5/15/1982 20:00 +Marin,,DISK,CA,5/18/1982 14:00 +Sterling,,LIGHT,KS,5/20/1982 2:00 +Cheshire,,,CT,5/20/1982 20:00 +Stewart State Park,,FORMATION,OR,5/28/1982 18:00 +Fort Worth,,OVAL,TX,6/1/1982 0:00 +Moki Dugway,,TRIANGLE,UT,6/1/1982 0:00 +Oakland,,LIGHT,MD,6/1/1982 0:00 +Olalla,,CIRCLE,WA,6/1/1982 0:00 +Hershey,RED,OVAL,PA,6/1/1982 1:00 +Sequim,ORANGE,OVAL,WA,6/1/1982 6:00 +Excelsior Springs,,TRIANGLE,MO,6/1/1982 10:00 +Tully,,TRIANGLE,NY,6/1/1982 12:00 +Pineville,,FORMATION,LA,6/1/1982 17:00 +San Antonio,,OTHER,TX,6/1/1982 18:00 +Agawam,,DISK,MA,6/1/1982 20:00 +Indianapolis,,CIRCLE,IN,6/1/1982 20:00 +Tullahoma County,,FORMATION,TN,6/1/1982 20:00 +Great Falls,,CIRCLE,MT,6/1/1982 21:00 +Malmstrom AFB,,CIGAR,MT,6/1/1982 21:00 +Titusville,,LIGHT,FL,6/1/1982 21:00 +Gainesville,,LIGHT,TX,6/1/1982 22:00 +Peekskill,,CHEVRON,NY,6/1/1982 22:00 +Arcola,,TEARDROP,IL,6/1/1982 23:00 +Clovis,,LIGHT,CA,6/2/1982 11:00 +Newark,,FIREBALL,NJ,6/6/1982 0:00 +Warwick,ORANGE,DISK,RI,6/6/1982 1:00 +Dennisport,,DISK,MA,6/8/1982 18:30 +Greensboro,,SPHERE,NC,6/10/1982 21:30 +Coronado,,EGG,CA,6/10/1982 22:00 +Flint,,SPHERE,MI,6/12/1982 13:00 +Steger,GREEN,DIAMOND,IL,6/12/1982 22:30 +Alpine,,LIGHT,CA,6/14/1982 10:00 +Bowie,,DISK,AZ,6/15/1982 0:00 +Sonisidro,,DIAMOND,CA,6/15/1982 0:00 +Seattle,,TRIANGLE,WA,6/15/1982 2:30 +Goldsboro,,DISK,NC,6/15/1982 12:45 +Juneau,ORANGE,SPHERE,AK,6/15/1982 14:00 +Lincoln,,OTHER,CA,6/15/1982 14:00 +Overland Park,,CIGAR,KS,6/15/1982 14:00 +Haughton,RED,DISK,LA,6/15/1982 15:00 +New York City,,CIGAR,NY,6/15/1982 19:00 +San Elizario,,DISK,TX,6/15/1982 19:00 +Agawam,,SPHERE,MA,6/15/1982 20:00 +Chesterfield,,OTHER,MI,6/15/1982 20:00 +Issaquah,,DISK,WA,6/15/1982 21:00 +New Bedford,,OTHER,MA,6/15/1982 21:00 +Sarona,,CIRCLE,WI,6/15/1982 21:00 +Rocky Point,,TRIANGLE,NC,6/15/1982 22:00 +Fontana,,DISK,CA,6/16/1982 14:30 +Chicago,,DISK,IL,6/19/1982 15:00 +Elgin,,CIRCLE,IL,6/19/1982 15:00 +Fort Stockton,,OVAL,TX,6/20/1982 0:00 +Collingswood,,LIGHT,NJ,6/20/1982 20:30 +Highland Springs,GREEN,TRIANGLE,VA,6/20/1982 20:30 +Harpursville,,TRIANGLE,NY,6/20/1982 22:00 +New Ross,,OTHER,IN,6/22/1982 8:30 +,,SPHERE,CA,6/23/1982 23:00 +Terre Haute,,LIGHT,IN,6/25/1982 0:00 +Fagstaff,,CIRCLE,AZ,6/30/1982 0:00 +Grass Valley,,CIGAR,CA,6/30/1982 0:00 +Garden City,,DISK,MI,6/30/1982 23:00 +Monticello,,,UT,7/1/1982 1:00 +Lakewood,,SPHERE,NJ,7/1/1982 8:30 +Marshall,,LIGHT,MO,7/1/1982 19:00 +Rock Hill,,CIGAR,SC,7/1/1982 19:00 +New York City,,DISK,NY,7/1/1982 20:00 +Highland Park,,CYLINDER,IL,7/1/1982 21:00 +Houston,,DISK,TX,7/3/1982 0:00 +Hermosa Beach,,DISK,CA,7/4/1982 21:00 +Madison,,LIGHT,CT,7/5/1982 0:00 +Hamilton,,LIGHT,OH,7/6/1982 19:00 +Malibu,,CIRCLE,CA,7/10/1982 0:00 +Boardman,,LIGHT,OH,7/10/1982 22:00 +Baker Lake,,CIRCLE,WA,7/15/1982 0:00 +Williamsport,,LIGHT,PA,7/15/1982 1:30 +Christiansburg,ORANGE,CIRCLE,OH,7/15/1982 15:00 +Chittenango,ORANGE,TRIANGLE,NY,7/15/1982 21:00 +Las Vegas,,DISK,NV,7/15/1982 21:00 +Reidsville,,OVAL,NC,7/15/1982 21:00 +Land Between the Lakes,,TRIANGLE,KY,7/15/1982 23:00 +Fayetteville,RED YELLOW GREEN BLUE,VARIOUS,NC,7/16/1982 4:37 +Portage Dunning Rs.,,LIGHT,WI,7/16/1982 22:00 +Mountian View,,CYLINDER,CA,7/18/1982 15:30 +Mount Rainier National Park,,LIGHT,WA,7/20/1982 1:00 +Shavertown,,,PA,7/20/1982 2:00 +Athol,,TRIANGLE,MA,7/20/1982 19:00 +Corry-Wattsburg,RED GREEN,TRIANGLE,PA,7/20/1982 22:00 +Grass Valley,,OTHER,CA,7/22/1982 20:30 +Bowling Green,,OTHER,KY,7/23/1982 1:00 +Sweetwater,,CYLINDER,TN,7/23/1982 19:00 +Carolina,,DISK,WV,7/28/1982 11:00 +Holden Beach,,OTHER,NC,7/30/1982 22:00 +Burnsville,,LIGHT,MN,8/1/1982 19:00 +Fremont,,DISK,CA,8/1/1982 23:30 +Rome,,CIGAR,NY,8/5/1982 20:30 +Banks Lake,,OTHER,WA,8/5/1982 23:00 +Townsen,,,MT,8/8/1982 22:00 +Manteca,,DISK,CA,8/10/1982 0:00 +Stockton,,DISK,CA,8/10/1982 7:30 +Stockton,,DISK,CA,8/10/1982 19:30 +Marysville,,DISK,CA,8/10/1982 22:30 +Littleton,,RECTANGLE,MA,8/13/1982 0:30 +Highland Heights,,TEARDROP,OH,8/15/1982 1:00 +Llincoln,,DISK,NE,8/15/1982 3:00 +Asbury Park,,SPHERE,NJ,8/15/1982 3:45 +Tuckerton,,SPHERE,NJ,8/15/1982 6:15 +Old Woman Mountains area,,DISK,CA,8/15/1982 22:00 +Los Angeles,,OVAL,CA,8/17/1982 16:00 +Vacaville,,FIREBALL,CA,8/17/1982 19:00 +Liverpool,,TRIANGLE,NY,8/18/1982 21:00 +Fowlerville,,OVAL,MI,8/20/1982 23:30 +Southwest Harbor,,CYLINDER,ME,8/27/1982 1:00 +Nome,GREEN,LIGHT,ND,9/1/1982 0:00 +Crestwood,,LIGHT,KY,9/1/1982 21:00 +Palm Desert,,DISK,CA,9/7/1982 18:00 +Mount Kisco,RED BLUE,SPHERE,NY,9/9/1982 16:10 +Mason City,ORANGE,SPHERE,IA,9/12/1982 5:30 +Wiley,,FLASH,GA,9/12/1982 22:00 +Murphysboro,,LIGHT,IL,9/13/1982 21:00 +Ripley,,,TN,9/14/1982 2:00 +Calion,,TRIANGLE,AR,9/14/1982 19:00 +Calion,,TRIANGLE,AR,9/14/1982 19:00 +La Crosse,,DISK,WI,9/15/1982 17:00 +Lost Creek,,LIGHT,WV,9/15/1982 21:00 +Eidson,,CHEVRON,TN,9/15/1982 22:00 +Janesville,,RECTANGLE,WI,9/15/1982 22:00 +Gilbert,,,WV,9/18/1982 19:00 +Slidell,,VARIOUS,LA,9/20/1982 12:00 +Luray,,,VA,9/20/1982 16:22 +Dixie,,DISK,ID,9/20/1982 19:00 +Swartz Creek,,FIREBALL,MI,10/1/1982 22:10 +San Antonio,,CIRCLE,TX,10/5/1982 23:00 +New Haven,,TRIANGLE,CT,10/7/1982 23:00 +Weaverville,,OTHER,NC,10/8/1982 18:00 +Pearlington,,LIGHT,MS,10/12/1982 5:30 +Pearlington,,LIGHT,MS,10/12/1982 5:30 +Van Nuys,,DISK,CA,10/15/1982 14:00 +Snoqualmine,ORANGE,OVAL,WA,10/15/1982 18:00 +Lake City,,,FL,10/15/1982 19:00 +Smithfield,,CIRCLE,RI,10/15/1982 19:30 +Barton,,RECTANGLE,VT,10/15/1982 20:00 +North Hudson,,DISK,NY,10/15/1982 20:00 +Hampton,,CHEVRON,VA,10/15/1982 20:30 +Concord,,RECTANGLE,OH,10/15/1982 21:00 +Omaha,,DISK,NE,10/15/1982 21:00 +Narragansette,GREEN,CHEVRON,RI,10/15/1982 22:00 +Chillicothe,,RECTANGLE,OH,10/15/1982 23:00 +Orem,,TRIANGLE,UT,10/21/1982 23:30 +Dilworth,ORANGE,OTHER,MN,10/31/1982 18:30 +East Texas River,,EGG,TX,11/1/1982 0:00 +Ft. Leonard Wood,,DISK,MO,11/1/1982 4:30 +Woolwich,,VARIOUS,ME,11/1/1982 6:15 +Oxnard,GREEN,SPHERE,CA,11/1/1982 23:15 +Florida,,LIGHT,FL,11/11/1982 0:00 +Marksville,,CIRCLE,LA,11/15/1982 3:00 +Fremont,BLUE,LIGHT,OH,11/15/1982 20:00 +Surfside,,DIAMOND,FL,11/20/1982 0:00 +Clinton Township,,CIRCLE,MI,11/23/1982 15:45 +Madill,,FIREBALL,OK,12/1/1982 2:00 +Nyack,,CIGAR,CA,12/1/1982 22:00 +Boone,BLUE,CHEVRON,NC,12/10/1982 22:00 +Huntington,,,NY,12/10/1982 23:00 +Sanford,,DISK,FL,12/15/1982 6:30 +Kingsport,,TRIANGLE,TN,12/15/1982 21:00 +Kansas City,,CIRCLE,MO,12/25/1982 1:45 +High Point,,LIGHT,NC,12/25/1982 19:00 +Crosby,,CYLINDER,TX,1/10/1983 20:00 +Seattle,ORANGE,SPHERE,WA,1/13/1983 17:00 +Glidden,,LIGHT,IA,1/20/1983 18:30 +Las Vegas,,CIRCLE,NV,2/11/1983 0:00 +West Palm Beach,,DISK,FL,2/15/1983 1:00 +Tilden,,FIREBALL,TX,2/28/1983 21:30 +Sandpoint,,DISK,ID,3/1/1983 19:00 +O'Fallon,,DISK,IL,3/1/1983 20:00 +Phoenixville,,SPHERE,PA,3/10/1983 3:00 +Milpitas,,CIRCLE,CA,3/22/1983 13:00 +Overbrook,,OTHER,KS,3/27/1983 21:57 +New Rochelle,,DISK,NY,4/1/1983 17:14 +Bishop,,,CA,4/1/1983 21:00 +Waikiki,,DISK,HI,4/5/1983 20:00 +Fruita,,TRIANGLE,CO,4/7/1983 0:00 +Honolulu,,OVAL,HI,4/7/1983 23:00 +Katonah,,SPHERE,NY,4/15/1983 12:00 +New Orleans,,OVAL,LA,4/15/1983 13:30 +Williamstown,,TRIANGLE,NJ,4/15/1983 19:00 +St. Robert,,OTHER,MO,4/20/1983 0:00 +Wyoming,,OTHER,WY,4/20/1983 0:00 +Prince William Sound,,OTHER,AK,4/20/1983 9:00 +Oshkosh,,TRIANGLE,WI,4/23/1983 8:30 +Oshkosh,,TRIANGLE,WI,4/23/1983 20:30 +Blythe,,VARIOUS,AZ,4/27/1983 23:42 +Lehi,,,UT,4/30/1983 9:00 +North Kansas City,,OTHER,MO,5/1/1983 17:30 +Washington County,,DIAMOND,MS,5/1/1983 19:00 +Chesterfield,,CYLINDER,VA,5/1/1983 21:00 +Minneapolis,,DISK,MN,5/2/1983 9:00 +Riverside,,CIRCLE,TX,5/5/1983 19:45 +Bremerton,,TRIANGLE,WA,5/10/1983 23:15 +Granite City,,DISK,IL,5/13/1983 21:30 +Roslyn,,DISK,NY,5/15/1983 0:00 +Willits,,DIAMOND,CA,5/15/1983 19:30 +Tallahassee,,,FL,5/17/1983 5:45 +Valley City,,OTHER,ND,5/20/1983 21:30 +Pacoima,,OTHER,CA,5/24/1983 1:30 +San Bernadino,,DISK,CA,5/28/1983 21:15 +Muskegon County,,DISK,MI,5/31/1983 8:00 +Hampton,,CIRCLE,GA,6/1/1983 0:00 +Nevada,,OTHER,NV,6/1/1983 10:00 +Cleveland,,OVAL,OH,6/1/1983 11:00 +San Diego,,,CA,6/1/1983 15:30 +Dearborn,,DISK,MI,6/1/1983 16:00 +St. Louis,,DISK,MO,6/1/1983 19:00 +Crosby,RED ORANGE,OVAL,TX,6/1/1983 20:00 +Phoenix,,CIRCLE,AZ,6/1/1983 21:30 +Sarasota,,DISK,FL,6/1/1983 22:00 +Alpena,,SPHERE,AR,6/1/1983 23:00 +Phoenix,,DISK,AZ,6/1/1983 23:00 +Westwood,,OTHER,CA,6/1/1983 23:00 +Jeffersonville,,OVAL,IN,6/2/1983 22:00 +North Bend,,OVAL,OR,6/6/1983 22:00 +North Canton,,VARIOUS,OH,6/15/1983 0:00 +Cloverdale,,EGG,CA,6/15/1983 0:15 +Shokan,,LIGHT,NY,6/15/1983 2:00 +Garden City,,DISK,MI,6/15/1983 11:30 +Borger,,OTHER,TX,6/15/1983 17:30 +Sandpoint,,DISK,ID,6/15/1983 18:00 +Amarillo,,TRIANGLE,TX,6/15/1983 19:00 +Phoenix,,SPHERE,AZ,6/15/1983 19:30 +Reno,GREEN,LIGHT,NV,6/15/1983 20:00 +Jacksonville,,TRIANGLE,FL,6/15/1983 21:30 +St. Paul Park,,TRIANGLE,MN,6/15/1983 22:00 +Red Wing,,TRIANGLE,MN,6/15/1983 22:30 +Truckee,,CIRCLE,CA,6/18/1983 23:00 +Tulsa,,CIRCLE,OK,6/27/1983 7:30 +North Port,,,MI,6/30/1983 0:00 +Williamsburg,YELLOW,CIRCLE,VA,6/30/1983 1:00 +Amesbury,,TRIANGLE,MA,6/30/1983 3:00 +San Diego,,OTHER,CA,6/30/1983 15:00 +Stonewall,,OVAL,LA,6/30/1983 18:00 +Wedgefield,,DISK,SC,6/30/1983 21:00 +Koneohe Bay,,,HI,6/30/1983 22:00 +Swayzee,YELLOW GREEN BLUE,,IN,7/1/1983 1:30 +Ft. Huachuca,,LIGHT,AZ,7/1/1983 2:30 +Strandburg,RED GREEN,FORMATION,SD,7/1/1983 4:00 +Sharps Creek,,DIAMOND,OR,7/1/1983 15:00 +Warwick,,DISK,RI,7/1/1983 18:00 +Pittsburg,,FLASH,KS,7/1/1983 21:10 +Lumberton,,DISK,TX,7/3/1983 0:00 +Sharpsville,RED,OVAL,PA,7/4/1983 21:00 +New York City,,FIREBALL,NY,7/10/1983 20:00 +Mountain Home,,OVAL,ID,7/10/1983 21:00 +Savanah,,RECTANGLE,GA,7/15/1983 0:00 +Vanderbilt,,OTHER,MI,7/15/1983 0:00 +Hollywood,YELLOW,FIREBALL,FL,7/15/1983 5:30 +Grand Prairie,,,TX,7/15/1983 18:00 +Lake City,,TRIANGLE,FL,7/15/1983 18:00 +Moreno Valley,,VARIOUS,CA,7/15/1983 18:30 +Fair Lawn,GREEN,SPHERE,NJ,7/15/1983 19:00 +Edison,,SPHERE,NJ,7/15/1983 20:00 +Poughkeepsie,,OTHER,NY,7/15/1983 21:15 +Little Falls,,RECTANGLE,NJ,7/15/1983 22:00 +Taylorville,,DISK,IL,7/15/1983 22:00 +Goldens Bridge,,CHEVRON,VA,7/20/1983 22:30 +San Antonio,,CIGAR,TX,7/27/1983 21:00 +Santa Rosa,RED,,CA,8/1/1983 1:30 +Reedsville,,SPHERE,WV,8/1/1983 14:30 +Mt. Kisco,,TRIANGLE,NY,8/1/1983 21:00 +Dallas,RED YELLOW GREEN,SPHERE,TX,8/1/1983 22:30 +Cassopolis,,SPHERE,MI,8/8/1983 15:00 +Pulaski,,TRIANGLE,VA,8/12/1983 23:40 +Hastings,,OTHER,MI,8/14/1983 2:00 +Plattekill,,DISK,NY,8/15/1983 0:30 +Citrus Heights,,DISK,CA,8/15/1983 17:00 +Cookstown,,TRIANGLE,NJ,8/15/1983 20:00 +Hartford,,FIREBALL,CT,8/15/1983 21:00 +Katonah,,TRIANGLE,NY,8/15/1983 21:00 +Quinton,,OTHER,VA,8/15/1983 21:00 +Shellsburg,,TRIANGLE,IA,8/15/1983 21:00 +Bedford Hills,,CHEVRON,NY,8/15/1983 21:05 +Columbus,,DISK,GA,8/15/1983 23:30 +Peoria County,RED ORANGE,CIGAR,IL,8/20/1983 18:00 +New Haven,,SPHERE,CT,8/21/1983 22:50 +Van Nuys,,TRIANGLE,CA,8/22/1983 22:00 +North Las Vegas,,DIAMOND,NV,9/1/1983 19:30 +Allentown,,DISK,PA,9/1/1983 20:00 +Boulder,,TRIANGLE,CO,9/1/1983 21:30 +Maroa,,DISK,IL,9/4/1983 15:10 +Mulberry,,LIGHT,IN,9/10/1983 19:00 +Plomosa Mountains,,FIREBALL,AZ,9/12/1983 21:00 +Ocean Isle Beach,,DISK,SC,9/13/1983 10:49 +Minden,,SPHERE,NV,9/15/1983 5:00 +Clovis,,TRIANGLE,NM,9/15/1983 21:00 +Stratford,,TRIANGLE,CT,9/15/1983 21:00 +Hamersville,RED,SPHERE,OH,9/30/1983 20:00 +Ayer,,,MA,10/1/1983 20:00 +Elizabeth Township,,OVAL,PA,10/1/1983 20:30 +Tarboro,,DISK,NC,10/1/1983 21:00 +California Valley,,DISK,CA,10/15/1983 0:00 +Crete,,TRIANGLE,NE,10/15/1983 19:00 +Upper Saddle River,,,NJ,10/21/1983 3:00 +California Valley,,DISK,CA,10/25/1983 2:00 +Orange,ORANGE,DIAMOND,MA,10/25/1983 20:55 +Rochester,,DIAMOND,NH,10/31/1983 19:00 +Citrus Heights,ORANGE,DISK,CA,11/1/1983 20:00 +Gibsonville,,LIGHT,NC,11/1/1983 20:00 +Kingston,,TRIANGLE,NY,11/1/1983 21:00 +Virginia Beach,,LIGHT,VA,11/15/1983 17:00 +Sutherland,,OTHER,NE,11/15/1983 23:30 +Lake Okeechoobee,,OVAL,FL,11/28/1983 23:00 +Madison,,,WI,12/1/1983 2:00 +Indian Springs,,,NV,12/3/1983 2:00 +Kent,,,WA,12/5/1983 5:00 +Garner,,TRIANGLE,NC,12/15/1983 1:15 +Charlottesville,,DISK,VA,12/31/1983 20:00 +Fayetteville,,FIREBALL,NC,1/3/1984 13:00 +St. George,,FORMATION,UT,1/8/1984 22:00 +Idaho,,VARIOUS,ID,1/13/1984 2:12 +Valier,,LIGHT,MT,1/21/1984 21:00 +Bozeman,,CIGAR,MT,1/23/1984 6:45 +Kirkland,,CIRCLE,IL,1/24/1984 0:00 +Rolla,YELLOW,LIGHT,MO,1/26/1984 19:30 +Columbia,,,SC,2/1/1984 21:00 +Marlow,,FIREBALL,NH,2/10/1984 22:00 +Eugene,,TRIANGLE,OR,3/1/1984 22:00 +Cowansville,,TRIANGLE,PA,3/14/1984 16:00 +Griffin,RED YELLOW,CIRCLE,GA,3/15/1984 20:00 +Greenville,,TRIANGLE,VA,3/15/1984 21:30 +Alton,,OTHER,ME,3/18/1984 2:30 +Newburgh,,CIRCLE,NY,3/24/1984 8:00 +Mettacahonts,,FORMATION,NY,3/27/1984 20:00 +Rosendale,,CIRCLE,NY,3/27/1984 23:00 +Griffin,,CIRCLE,GA,3/30/1984 13:00 +Arlington,,TRIANGLE,TX,4/5/1984 21:30 +Monahans,,,TX,4/11/1984 2:00 +Southwest City,,LIGHT,MO,4/11/1984 21:30 +Branford,,EGG,CT,4/15/1984 0:00 +Lake Worth,,DISK,FL,4/15/1984 2:00 +Elizabethtown,,DISK,KY,4/15/1984 15:00 +Yelvington,,TRIANGLE,KY,4/15/1984 21:00 +Magnolia,,DISK,TX,4/21/1984 22:00 +Auburn,,TRIANGLE,NY,4/23/1984 5:30 +Joliet,,CIRCLE,IL,5/1/1984 18:00 +Glen Rose,,TRIANGLE,AR,5/1/1984 19:00 +Burnsville,RED,RECTANGLE,MN,5/1/1984 20:00 +Proctorville,BLUE,DISK,OH,5/5/1984 12:00 +Cloquet,,OTHER,MN,5/5/1984 22:00 +Los Angeles,,DISK,CA,5/14/1984 15:00 +Cleveland,,OTHER,GA,5/15/1984 16:00 +Flower Mound,,DISK,TX,5/15/1984 18:45 +Winchester,,CIRCLE,VA,5/15/1984 23:00 +Barstow,,CIRCLE,CA,5/20/1984 21:00 +Marlette,,,MI,5/20/1984 22:30 +Longview,,TRIANGLE,TX,5/21/1984 21:30 +Huntsville,,SPHERE,AL,6/1/1984 0:00 +Huntsville,,SPHERE,AL,6/1/1984 0:00 +Mayfield,,DISK,KY,6/1/1984 0:00 +Sweetwater,,,TN,6/1/1984 0:00 +Tampa,,CYLINDER,FL,6/1/1984 2:20 +Colfax,,OVAL,WA,6/1/1984 12:00 +Orlando,,CIRCLE,FL,6/1/1984 12:00 +Bowling Green,,,KY,6/1/1984 13:00 +Elmendorf AFB,RED,DIAMOND,AK,6/1/1984 13:00 +Wakefield,,EGG,MA,6/1/1984 17:00 +Mobile,,SPHERE,AL,6/1/1984 17:15 +Sierra Vista,,TRIANGLE,AZ,6/1/1984 18:00 +Parker City,,FIREBALL,IN,6/1/1984 19:00 +Paramus,,CIGAR,NJ,6/1/1984 20:00 +Bandon,,RECTANGLE,OR,6/1/1984 21:00 +Ka'anapali,,LIGHT,HI,6/1/1984 21:00 +Perry,,OTHER,OH,6/1/1984 21:00 +Ferriday,,OTHER,LA,6/1/1984 22:00 +Tolland,,TRIANGLE,CT,6/1/1984 22:00 +Los Angeles,,CIRCLE,CA,6/1/1984 23:00 +Ravenna,,CIRCLE,MI,6/1/1984 23:30 +Clayton,,DISK,OH,6/10/1984 22:00 +Spalding,,LIGHT,NE,6/15/1984 0:30 +Burgettstown,,FIREBALL,PA,6/15/1984 1:00 +Ashville,,DISK,OH,6/15/1984 2:50 +Jacksonport,,DISK,WI,6/15/1984 3:00 +Methow,,OVAL,WA,6/15/1984 3:00 +Griffin,,,GA,6/15/1984 14:00 +Draper,,CONE,VA,6/15/1984 16:45 +Asheville,,CIRCLE,NC,6/15/1984 18:00 +Ely,,DIAMOND,MN,6/15/1984 19:00 +Mansfield,RED,FORMATION,OH,6/15/1984 20:00 +Wheeling,,,WY,6/15/1984 20:30 +Greenburg,,,NY,6/15/1984 21:30 +Grain Valley,,SPHERE,MO,6/15/1984 22:00 +Indjifa,,DISK,PA,6/15/1984 22:30 +Lorain,,CIRCLE,OH,6/17/1984 10:00 +Wilkes-Barre,,OTHER,PA,6/19/1984 11:00 +Sacramento,,CIRCLE,CA,6/20/1984 12:00 +Holmwood,,OVAL,LA,6/20/1984 20:20 +Columbia,,OVAL,SC,6/24/1984 19:00 +Tallahassee,,,FL,6/24/1984 21:00 +El Paso,,CIRCLE,TX,6/30/1984 0:30 +Adelanto,,SPHERE,CA,6/30/1984 6:40 +Malvern,,,AR,6/30/1984 8:30 +Atlanta,,,GA,6/30/1984 12:00 +Denton,,LIGHT,TX,6/30/1984 21:00 +Oakhill,,CIRCLE,TX,6/30/1984 21:30 +Milford,,SPHERE,CT,6/30/1984 22:00 +New York City,,TRIANGLE,NY,7/1/1984 21:30 +Peekskill,,TRIANGLE,NY,7/1/1984 22:00 +DeWitt,BLUE,FIREBALL,AR,7/4/1984 4:00 +Eatonton,,TRIANGLE,GA,7/7/1984 22:00 +Irvington,,CYLINDER,KY,7/8/1984 23:00 +Martin,,OVAL,SD,7/8/1984 23:00 +Blairstown,BLUE,LIGHT,MO,7/10/1984 3:30 +Lake Skinner,BLUE,LIGHT,CA,7/10/1984 4:00 +New Pine Creek,,LIGHT,CA,7/10/1984 22:30 +Portsmouth,,CIRCLE,VA,7/14/1984 22:00 +Deming area,,CYLINDER,NM,7/15/1984 2:00 +Brighton,,OTHER,MI,7/15/1984 23:00 +Knightstown,,TRIANGLE,IN,7/18/1984 1:30 +Millwood,,TRIANGLE,NY,7/19/1984 18:00 +Ossining,,OTHER,NY,7/19/1984 18:00 +Iowa City,,CIRCLE,IA,7/20/1984 22:00 +Brewster,RED,OVAL,NY,7/24/1984 22:00 +Perkiomenville,GREEN,DISK,PA,7/24/1984 22:00 +Terre Haute,,OTHER,IN,7/25/1984 4:00 +Watchung Mountains,,,NJ,7/25/1984 12:00 +Suffolk,ORANGE,SPHERE,VA,7/25/1984 20:00 +Rosebud,,OTHER,MO,7/31/1984 19:00 +Middlebury,,OTHER,CT,7/31/1984 22:00 +Middlebury,,OTHER,CT,7/31/1984 22:00 +Sandpoint,,DISK,ID,8/1/1984 4:00 +Manotowish Waters,RED,LIGHT,WI,8/1/1984 23:00 +Caribou,,EGG,ME,8/7/1984 21:00 +Gaylord,,OTHER,MI,8/8/1984 23:00 +Bellingham,,,WA,8/10/1984 4:30 +Boalsburg,,LIGHT,PA,8/10/1984 23:00 +Columbus,,RECTANGLE,OH,8/12/1984 21:00 +Eureka,,CIRCLE,MT,8/14/1984 0:00 +Wabeno,,OTHER,WI,8/15/1984 0:00 +Beckley,,,WV,8/15/1984 1:00 +Cape Canaveral,,LIGHT,FL,8/15/1984 1:30 +Haddon Heights,,TRIANGLE,NJ,8/15/1984 19:30 +Croton-on-Hudson,,SPHERE,NY,8/15/1984 21:00 +South Glens Falls,,CIGAR,NY,8/15/1984 21:00 +Stamford,,DISK,CT,8/15/1984 21:00 +Brewster,,CHEVRON,NY,8/15/1984 23:00 +Countryside,GREEN BLUE,TRIANGLE,IL,8/18/1984 8:30 +Cedarburg,,RECTANGLE,WI,8/21/1984 21:30 +Altha,,CYLINDER,FL,8/26/1984 16:00 +Baltimore,,TRIANGLE,MD,9/1/1984 19:00 +Pacific Beach,,OVAL,CA,9/1/1984 19:00 +Medanales,RED,LIGHT,NM,9/1/1984 21:00 +River Rouge,,SPHERE,MI,9/1/1984 22:00 +Manor,,,TX,9/1/1984 23:00 +Osage,,SPHERE,IA,9/2/1984 8:20 +Plumas Eureka State Park Camp Grounds,,TRIANGLE,CA,9/3/1984 23:00 +Alamo Lake,,,AZ,9/4/1984 22:00 +California,,CIGAR,CA,9/9/1984 22:00 +Schuylkill Haven,,TRIANGLE,PA,9/15/1984 20:00 +Sterling,,LIGHT,AK,9/15/1984 23:00 +Elwood,,CHEVRON,NY,9/16/1984 15:00 +New York City,,TEARDROP,NY,9/20/1984 21:00 +Waldport,,LIGHT,OR,10/1/1984 1:00 +Chatsworth,,LIGHT,CA,10/1/1984 20:00 +Acton,RED,TRIANGLE,ME,10/1/1984 21:00 +Augusta,,FIREBALL,GA,10/3/1984 21:00 +Houston,,CIRCLE,TX,10/10/1984 5:00 +Traverse City,,OTHER,MI,10/10/1984 12:00 +White Plains,,FORMATION,NY,10/10/1984 22:00 +Duchenne,,DISK,UT,10/15/1984 1:00 +Newbury,,CIGAR,OH,10/15/1984 2:30 +New Castle,,OTHER,DE,10/15/1984 8:15 +Quincy,,,CA,10/15/1984 9:00 +Skowhegan,,DISK,ME,10/15/1984 19:00 +Albuquerque,,DISK,NM,10/15/1984 19:30 +Strafford,,CIRCLE,MO,10/15/1984 21:00 +Uvalde,,CIRCLE,TX,10/15/1984 22:30 +New Boston,,EGG,TX,10/15/1984 23:00 +Allendale,,LIGHT,MI,10/18/1984 22:00 +Middle Town,,DIAMOND,CA,10/20/1984 3:00 +Columbus,,LIGHT,OH,10/20/1984 5:00 +Honey Grove,,DISK,TX,11/1/1984 17:30 +Carrollton,,OTHER,GA,11/7/1984 2:30 +Brandon,,CYLINDER,MS,11/9/1984 4:00 +Edgartown,,TRIANGLE,MA,11/11/1984 23:00 +Alvarado,,FIREBALL,TX,11/14/1984 20:00 +Jasper,,,FL,11/15/1984 18:00 +North Platte,,OTHER,NE,11/15/1984 18:00 +Ruggles Beach,,CHEVRON,OH,11/20/1984 5:00 +Columbus,,CIGAR,WI,11/24/1984 13:00 +Williamstown,,TRIANGLE,MA,11/24/1984 19:30 +St. Charles,RED,VARIOUS,IL,11/26/1984 22:00 +Montgomery,,FIREBALL,AL,12/1/1984 18:00 +Emporium,,CIRCLE,PA,12/4/1984 20:00 +Tocca,,TRIANGLE,GA,12/24/1984 23:15 +Holly,,OTHER,MI,1/1/1985 1:00 +Largo,RED,OTHER,FL,1/1/1985 21:00 +Virginia Beach,RED,,VA,1/1/1985 22:00 +Caribbean Sea,,OTHER,FL,1/1/1985 23:00 +Wampum,,CIRCLE,PA,1/15/1985 3:00 +McGrady,,VARIOUS,NC,1/15/1985 20:50 +Sunbury,,,PA,1/15/1985 22:00 +South Gate,,CYLINDER,CA,1/15/1985 22:30 +Hermiston,BLUE,OTHER,OR,1/27/1985 1:30 +Portland,,LIGHT,OR,2/1/1985 22:30 +Hinesville,,SPHERE,GA,2/15/1985 0:00 +Malden,ORANGE,FIREBALL,MO,2/15/1985 0:00 +Portland,,LIGHT,OR,2/28/1985 23:00 +Wichita,ORANGE,TRIANGLE,KS,3/1/1985 20:30 +Woodbridge,,,VA,3/2/1985 20:15 +Bellefontaine,,CHEVRON,MO,3/14/1985 19:13 +Unadilla,,CIGAR,NE,3/15/1985 14:30 +Nashville,,OVAL,TN,3/26/1985 1:25 +New York City,,VARIOUS,NY,4/1/1985 15:00 +Weston,,OTHER,CT,4/1/1985 20:00 +Stone Ridge,,OTHER,NY,4/4/1985 20:00 +Chicago,,DISK,IL,4/4/1985 23:00 +Nova,,TRIANGLE,OH,4/15/1985 21:30 +Granville Summit,,DISK,PA,4/15/1985 22:00 +Austin,,OVAL,TX,4/19/1985 21:00 +Sanford,,SPHERE,NC,4/20/1985 10:00 +San Francisco,,CYLINDER,CA,4/27/1985 18:30 +Dequincy,,,LA,4/30/1985 11:00 +Harrisburg,,LIGHT,NC,5/1/1985 13:00 +Milwaukee,,LIGHT,WI,5/1/1985 13:00 +Santa Cruz,,OTHER,CA,5/1/1985 14:00 +North Miami,,CIRCLE,FL,5/1/1985 17:00 +Grand Island,,SPHERE,NE,5/1/1985 19:00 +Lanett,,LIGHT,AL,5/1/1985 20:30 +Wiseman's View,,CIRCLE,NC,5/1/1985 21:00 +Orlando,,TRIANGLE,FL,5/8/1985 21:30 +Magna,,SPHERE,UT,5/10/1985 6:00 +Altoona,,DISK,PA,5/12/1985 20:00 +Beaver Damm,,CIGAR,WI,5/15/1985 17:00 +Clarksburg,,CIRCLE,WV,5/15/1985 20:00 +Tempe,,SPHERE,AZ,5/15/1985 22:00 +Little Rock,,CIRCLE,AR,5/23/1985 9:00 +Middletown,GREEN,RECTANGLE,NY,5/30/1985 0:00 +California,,CIGAR,CA,6/1/1985 0:00 +Pensacola,,FORMATION,FL,6/1/1985 0:00 +Winslow,,TRIANGLE,AR,6/1/1985 12:00 +Prineville,,OTHER,OR,6/1/1985 13:00 +St. Petersburg,,TEARDROP,FL,6/1/1985 14:30 +Tampa,,DISK,FL,6/1/1985 17:00 +Forestville,,DISK,CA,6/1/1985 17:30 +Trenton,GREEN,OVAL,TX,6/1/1985 17:30 +Bemidji,,TRIANGLE,MN,6/1/1985 18:00 +Phoenix,,,AZ,6/1/1985 20:00 +Reno,,OTHER,NV,6/1/1985 21:00 +Lola,,SPHERE,KS,6/1/1985 22:00 +North Tonawanda,,CHEVRON,NY,6/1/1985 22:00 +Snohomish,,TRIANGLE,WA,6/1/1985 22:00 +Wilkesboro,,FIREBALL,NC,6/1/1985 22:00 +Stratford,,SPHERE,NJ,6/1/1985 22:40 +Casselberry,,OTHER,FL,6/1/1985 23:00 +Sebastopol,,,CA,6/1/1985 23:00 +Old Faithful,,,WY,6/2/1985 23:30 +Ft. Huachuca,,TRIANGLE,AZ,6/6/1985 20:00 +Tulsa,,DISK,OK,6/7/1985 16:30 +Gainesville,,CIGAR,FL,6/10/1985 22:10 +Houston,,TRIANGLE,TX,6/11/1985 22:30 +Coronado,,,CA,6/12/1985 11:00 +Wallingford,,RECTANGLE,CT,6/14/1985 20:00 +Grayridge,,VARIOUS,MO,6/15/1985 0:00 +Seward,,DISK,AK,6/15/1985 2:00 +Route 7,,RECTANGLE,NY,6/15/1985 2:30 +El Paso,,DISK,TX,6/15/1985 12:00 +Stokes,,DISK,NC,6/15/1985 14:00 +Kalamazoo,,,MI,6/15/1985 17:00 +Fairfax,,,VA,6/15/1985 18:00 +Panther,,OVAL,WV,6/15/1985 18:00 +Mohave Desert,BLUE,OVAL,CA,6/15/1985 19:00 +Rolla,,CIRCLE,MO,6/15/1985 20:00 +Waverly Hall,,DISK,GA,6/15/1985 20:00 +Ladson,GREEN,CIRCLE,SC,6/15/1985 21:00 +New York City,,OVAL,NY,6/15/1985 23:00 +Wichita,GREEN,CIRCLE,KS,6/15/1985 23:00 +"Joshua Tree National Park, Twenty Nine Palms",,FORMATION,CA,6/17/1985 2:00 +Cottage Grove,,SPHERE,OR,6/18/1985 13:00 +Barboursville,,CYLINDER,WV,6/19/1985 20:30 +Salem,,SPHERE,NH,6/20/1985 14:00 +Kankakee,,CYLINDER,IL,6/20/1985 21:00 +Lorain,BLUE,CIRCLE,OH,6/20/1985 22:30 +Daisytown,,CIRCLE,PA,6/23/1985 22:00 +Hallandale Beach,,DISK,FL,6/30/1985 2:00 +Whitney,,FORMATION,TX,6/30/1985 2:30 +Jasper,,,MO,6/30/1985 12:00 +Big Bend National Park,,,TX,6/30/1985 13:00 +Harlan,,DISK,IN,6/30/1985 17:00 +Katy,,TRIANGLE,TX,6/30/1985 18:00 +Paterson,,DISK,NJ,6/30/1985 18:00 +Eustis,,LIGHT,FL,6/30/1985 18:30 +White Plains,,CHEVRON,NY,6/30/1985 20:00 +,,,AZ,6/30/1985 21:30 +Alvordon,RED,LIGHT,OH,6/30/1985 22:00 +San Diego,,LIGHT,CA,6/30/1985 22:45 +Sterling,,CIRCLE,VA,6/30/1985 23:00 +I don't know,ORANGE,SPHERE,MO,6/30/1985 23:30 +Los Alamitos,,VARIOUS,CA,7/1/1985 19:00 +Marysville,,,WA,7/1/1985 20:30 +Great Neck,,RECTANGLE,NY,7/1/1985 22:00 +Magnolia,,EGG,NJ,7/1/1985 22:00 +Golden Pond,,CIGAR,KY,7/4/1985 15:00 +Hardy,,TRIANGLE,AR,7/4/1985 21:00 +Peekskill,ORANGE,TRIANGLE,NY,7/5/1985 21:00 +Yosemite National Park,,LIGHT,CA,7/5/1985 21:30 +Kona,GREEN,TRIANGLE,HI,7/6/1985 4:00 +Presidio,,OTHER,TX,7/7/1985 21:00 +Eatonton,,FORMATION,GA,7/7/1985 23:00 +Yosemite Forest,,EGG,CA,7/7/1985 23:30 +Flint,,TRIANGLE,MI,7/10/1985 18:30 +Plant City,,TRIANGLE,FL,7/10/1985 22:00 +Haledon,,CHEVRON,NJ,7/13/1985 22:00 +Carlsbad,,LIGHT,NM,7/14/1985 23:00 +Greenville,,DISK,VA,7/15/1985 7:15 +Phoenix,,SPHERE,AZ,7/15/1985 13:00 +Belle Chasse,,OTHER,LA,7/15/1985 20:30 +Birch Bay,,DISK,WA,7/15/1985 21:00 +Holmdel,,VARIOUS,NJ,7/15/1985 21:30 +Trumbull,RED,,CT,7/15/1985 21:30 +Georgetown,,TRIANGLE,TX,7/15/1985 23:00 +Georgetown,GREEN,TRIANGLE,TX,7/15/1985 23:00 +Griffith,,OTHER,IN,7/16/1985 21:00 +Copalis Beach,,DISK,WA,7/19/1985 22:30 +Ironton,,LIGHT,MO,7/20/1985 23:00 +Concord,RED GREEN,OVAL,CA,7/21/1985 21:00 +Mercer Island,,DIAMOND,WA,7/23/1985 0:00 +Del Rio,,DIAMOND,TX,7/24/1985 21:00 +Arlington,,CIGAR,TX,7/28/1985 3:15 +Woodside,,CIRCLE,CA,7/30/1985 23:45 +San Carlos,,LIGHT,CA,7/31/1985 22:30 +Cimarron,,CIRCLE,NM,8/1/1985 1:00 +Alexandria,,TRIANGLE,MN,8/1/1985 13:00 +Black Diamond,,OTHER,WA,8/1/1985 20:00 +Wilburton,,OTHER,OK,8/1/1985 22:00 +Kirkland,,LIGHT,IL,8/10/1985 22:00 +North Tonawanda,,DISK,NY,8/12/1985 0:42 +Sagamore Hills,,RECTANGLE,OH,8/15/1985 2:00 +Arlington,,TRIANGLE,WA,8/15/1985 3:00 +Winnemucca,,OTHER,NV,8/15/1985 12:00 +Ramona,,FORMATION,CA,8/15/1985 13:00 +Eau Claire,,CIGAR,WI,8/15/1985 20:00 +South Nags Head,,TRIANGLE,NC,8/15/1985 20:00 +Houston,GREEN,TRIANGLE,TX,8/15/1985 21:30 +Garden City,,CIRCLE,SC,8/15/1985 23:00 +Columbia,,OTHER,AL,8/16/1985 19:00 +Levittown,RED,TRIANGLE,PA,8/20/1985 0:00 +Tarryall Reservoir,,SPHERE,CO,8/20/1985 1:00 +Hamilton,,OVAL,OH,8/20/1985 19:30 +Kelseyville,,LIGHT,CA,8/20/1985 21:00 +Friendship,,RECTANGLE,NY,8/20/1985 22:00 +Mechanics Town,,DISK,NY,8/24/1985 0:00 +Allenspark,,LIGHT,CO,8/25/1985 22:30 +Rockland,,DISK,NY,9/1/1985 9:00 +Pendleton,,RECTANGLE,OR,9/1/1985 13:30 +Waterbury,,OVAL,CT,9/1/1985 19:00 +Wappingers Falls,,FORMATION,NY,9/1/1985 21:00 +Juneau,,CIRCLE,AK,9/5/1985 1:30 +Rutland,,TRIANGLE,VT,9/5/1985 2:15 +Kaunakakai,,EGG,HI,9/12/1985 16:10 +La Veta,,CIRCLE,CO,9/12/1985 23:43 +Downingtown,,DISK,PA,9/14/1985 22:00 +Beacon Falls,,LIGHT,CT,9/15/1985 19:00 +Annandale,,OVAL,NY,9/15/1985 21:15 +Green River,,LIGHT,WY,9/15/1985 23:00 +Coconut Creek,,DISK,FL,9/20/1985 16:00 +Austin,,CHEVRON,TX,9/26/1985 21:25 +Sparta,,CIRCLE,WI,9/28/1985 18:30 +Amherst,,RECTANGLE,MA,9/30/1985 6:00 +Brandon,,TRIANGLE,FL,10/1/1985 0:00 +Holton,,LIGHT,MI,10/1/1985 5:30 +Monroe,,SPHERE,NC,10/1/1985 5:30 +Jefferson,,TRIANGLE,OH,10/1/1985 21:30 +Santa Margarita,,OTHER,CA,10/1/1985 21:30 +Lawrence,,SPHERE,KS,10/1/1985 22:45 +Swansboro,,DISK,NC,10/12/1985 23:45 +San Ramon,,DISK,CA,10/15/1985 0:00 +Cleveland,,DIAMOND,OH,10/15/1985 7:00 +Hixson,ORANGE,OTHER,TN,10/15/1985 19:00 +Hartford city,,TRIANGLE,IN,10/15/1985 20:00 +Camden,,DISK,SC,10/15/1985 22:00 +Throop,,OVAL,PA,10/20/1985 5:00 +Moorestown,,OVAL,NJ,10/20/1985 19:00 +New York City,,SPHERE,NY,10/22/1985 20:00 +Hawthorne,,TRIANGLE,CA,10/25/1985 1:00 +North Hollywood,,SPHERE,CA,10/25/1985 22:00 +New York City,,DISK,NY,10/31/1985 20:30 +Plan,,TRIANGLE,TX,11/1/1985 20:00 +Patterson,,CIGAR,NY,11/2/1985 1:00 +Lou Costello Recreation Center,,CIRCLE,CA,11/10/1985 19:00 +Sacramento,,FORMATION,CA,11/13/1985 20:00 +Vernon Valley,,OTHER,NJ,11/15/1985 20:30 +South Milwaukee,,LIGHT,WI,11/20/1985 0:00 +Cedar Grove,GREEN,SPHERE,WI,11/20/1985 4:18 +Big Cane,GREEN,LIGHT,LA,11/20/1985 22:30 +Edna,,,TX,11/25/1985 0:00 +Eatonton,,DISK,GA,11/26/1985 4:30 +Monterey Bay Area,,FORMATION,CA,12/1/1985 14:00 +Walden,,OVAL,NY,12/3/1985 18:15 +Manaus-Amazonas,,EGG,AL,12/5/1985 5:00 +Auburn,,,AL,12/15/1985 17:30 +Savannah,RED GREEN BLUE,TRIANGLE,GA,12/15/1985 23:00 +Buckner,,TRIANGLE,MO,12/16/1985 18:00 +Vallejo,,TRIANGLE,CA,12/16/1985 19:00 +West Yarmouth,,DIAMOND,MA,12/20/1985 22:00 +Ridgefield,,CIRCLE,CT,12/25/1985 22:00 +Crestwood,,OVAL,KY,1/1/1986 3:00 +South Yarmouth,,CIRCLE,MA,1/15/1986 22:00 +Lido Beach,,CIRCLE,NY,1/16/1986 9:10 +NASA,,OVAL,FL,1/28/1986 0:00 +Clarkton,,CIGAR,NC,1/28/1986 13:00 +Old Fort,,RECTANGLE,NC,1/29/1986 20:00 +Victor,,CIRCLE,MT,1/29/1986 21:30 +Van Nuys,,CONE,CA,2/6/1986 2:05 +Fort Leonard Wood,,FORMATION,MO,2/12/1986 16:00 +Mercedes,,OVAL,TX,2/14/1986 8:15 +Los Gatos,,DISK,CA,2/15/1986 17:00 +West Palm Beach,,TRIANGLE,FL,2/15/1986 21:00 +Portsmouth,,OTHER,VA,2/22/1986 21:00 +Nevada,,CIRCLE,NV,2/25/1986 22:00 +Victor,,CIRCLE,MT,2/28/1986 6:00 +Middle Smithfield Township,,TRIANGLE,PA,3/10/1986 0:45 +Delray Beach,,DISK,FL,3/15/1986 0:00 +St. Petersburg,,,FL,3/15/1986 10:30 +Midway,,LIGHT,GA,3/15/1986 15:40 +Los Angeles,,TRIANGLE,CA,3/25/1986 7:45 +Alamo,,RECTANGLE,NV,3/29/1986 19:30 +Chicago,,SPHERE,IL,4/1/1986 14:30 +Red Lodge,,,MT,4/1/1986 22:00 +Brownsville,,DISK,TX,4/1/1986 22:15 +Mt. Gilead,,OVAL,OH,4/2/1986 21:30 +Knoxville,,RECTANGLE,TN,4/4/1986 23:00 +Palm Springs,,DISK,CA,4/10/1986 12:00 +Oak Lawn,,OTHER,IL,4/12/1986 13:00 +Julian,RED BLUE,OTHER,CA,4/15/1986 0:30 +Lubbock,,OTHER,TX,4/15/1986 15:00 +Hayward,,DISK,CA,4/15/1986 17:00 +Lafayette,,LIGHT,LA,4/15/1986 21:50 +Marysville,,,CA,4/21/1986 18:30 +Bensalem,,FORMATION,PA,5/1/1986 19:00 +Jefferson,,SPHERE,CO,5/1/1986 19:00 +Vine Grove,,OVAL,KY,5/1/1986 21:00 +Fortuna,,TRIANGLE,CA,5/4/1986 12:30 +Crab Orchard,BLUE,LIGHT,KY,5/10/1986 21:30 +Dade City,,TRIANGLE,FL,5/12/1986 20:45 +Midwest City,,,OK,5/15/1986 2:00 +Jefferson,RED,SPHERE,CO,5/15/1986 8:00 +New York City,,CHEVRON,NY,5/15/1986 17:40 +Tompkinsville,,TRIANGLE,KY,5/15/1986 22:00 +Trimmer,,VARIOUS,CA,5/18/1986 20:30 +Adak,,LIGHT,AK,6/1/1986 0:00 +South Windsor,,CIRCLE,CT,6/1/1986 0:00 +Euclid,,OTHER,OH,6/1/1986 1:00 +Atlanta,ORANGE,SPHERE,GA,6/1/1986 2:00 +Schertz,,OVAL,TX,6/1/1986 3:00 +Plainview,,EGG,TX,6/1/1986 5:00 +Los Angeles,,TRIANGLE,CA,6/1/1986 12:00 +Flint,,,MI,6/1/1986 19:00 +Greenbelt,,,MD,6/1/1986 19:00 +New York City,,TRIANGLE,NY,6/1/1986 19:00 +Port Isable,,CIRCLE,TX,6/1/1986 20:00 +Milpitas,,LIGHT,CA,6/1/1986 22:00 +Tawas City,,TRIANGLE,MI,6/1/1986 22:00 +Jay,,,FL,6/1/1986 23:00 +Memphis,,TRIANGLE,TN,6/1/1986 23:00 +New Orleans,,LIGHT,LA,6/1/1986 23:00 +Brooksville,,OTHER,FL,6/6/1986 1:00 +St. Louis,,,MO,6/6/1986 16:30 +Panama City,,OTHER,FL,6/7/1986 19:00 +Conroe,,DISK,TX,6/7/1986 22:00 +Louisville,,CIGAR,KY,6/9/1986 16:00 +Severn,,TRIANGLE,MD,6/10/1986 21:00 +Colorado Springs,,SPHERE,CO,6/14/1986 18:30 +Allegan,,OTHER,MI,6/14/1986 19:00 +New Rochelle,RED,TRIANGLE,NY,6/14/1986 20:00 +Fairdale,,,WV,6/15/1986 0:00 +Gary,,OTHER,IN,6/15/1986 3:00 +Chilton,,TRIANGLE,WI,6/15/1986 13:00 +Milan,,DISK,OH,6/15/1986 16:00 +Princeton,,OTHER,SC,6/15/1986 21:00 +Ontario,,OTHER,CA,6/15/1986 22:30 +Gary,GREEN,,IN,6/15/1986 23:30 +Tucson,,FIREBALL,AZ,6/20/1986 17:30 +Teller,RED GREEN,OVAL,AK,6/20/1986 23:30 +Kentucy Lake area,,TRIANGLE,KY,6/21/1986 0:00 +Shelton,,CIRCLE,WA,6/25/1986 3:15 +Tampa,,LIGHT,FL,6/29/1986 1:30 +Jonesboro,,DISK,AR,6/30/1986 12:00 +Seattle,,OTHER,WA,6/30/1986 14:00 +Glidden,,DISK,IA,7/1/1986 16:00 +Nevada City,,DISK,CA,7/1/1986 19:00 +Fairfield,,CIGAR,IA,7/2/1986 20:00 +Louisville,,CIRCLE,KY,7/4/1986 22:00 +Lincoln,,LIGHT,NE,7/4/1986 23:30 +Bayside,,DIAMOND,NY,7/5/1986 21:00 +Waynesburg,,DIAMOND,PA,7/13/1986 17:00 +Phoenix,,FIREBALL,AZ,7/13/1986 18:00 +Chicago,,OVAL,IL,7/15/1986 3:00 +Las Vegas,,VARIOUS,NM,7/15/1986 7:30 +Lake Elsinore,,DISK,CA,7/15/1986 11:00 +Palos Verdes Peninsula,,RECTANGLE,CA,7/15/1986 17:30 +Albuquerque,,CHEVRON,NM,7/15/1986 19:30 +Smith,RED,,KY,7/15/1986 21:00 +East Sparta,,OTHER,OH,7/15/1986 22:00 +Pecos,,OTHER,NM,7/15/1986 22:00 +Tucson,,LIGHT,AZ,7/20/1986 1:00 +San Marcos,RED YELLOW BLUE,RECTANGLE,TX,7/20/1986 3:30 +New Haven,,TRIANGLE,CT,7/20/1986 23:30 +Apple Valley,,TRIANGLE,CA,7/23/1986 19:00 +Austin,,OVAL,TX,7/30/1986 16:00 +Kingwood,,DIAMOND,TX,7/31/1986 21:00 +Lawton,,DIAMOND,MI,8/1/1986 0:00 +Page,,SPHERE,AZ,8/1/1986 0:00 +Lubbock,,RECTANGLE,TX,8/1/1986 15:00 +Marcellus,,TRIANGLE,MI,8/1/1986 20:00 +Jamestown,,TRIANGLE,OH,8/1/1986 22:00 +Bankson Lake,,TRIANGLE,MI,8/1/1986 22:30 +Tuolumne,RED,DISK,CA,8/2/1986 23:00 +Harrisonburg,,,LA,8/4/1986 0:00 +Hutchinson,,TRIANGLE,KS,8/6/1986 2:00 +Girard,,FIREBALL,OH,8/8/1986 1:30 +Russells Point,,TRIANGLE,OH,8/13/1986 23:00 +Inez,,CHEVRON,KY,8/14/1986 11:55 +Ogden,,CIGAR,UT,8/15/1986 13:30 +Spokane,,TRIANGLE,WA,8/15/1986 18:00 +Stillwater,,,OK,8/15/1986 21:30 +Seattle,RED,DISK,WA,8/15/1986 22:00 +Newberg,,TRIANGLE,OR,8/15/1986 23:25 +Decatur,,SPHERE,IN,8/15/1986 23:55 +Del Rio,,TRIANGLE,TX,8/16/1986 21:00 +Myrtle Beach,,SPHERE,SC,8/20/1986 0:30 +Anchorage,,DISK,AK,8/20/1986 2:00 +Eldon,RED,OTHER,MO,8/20/1986 22:00 +Danville,,TRIANGLE,VA,8/24/1986 0:00 +Maysville,,TRIANGLE,GA,9/1/1986 0:00 +Oak Harbor,,OTHER,WA,9/1/1986 15:00 +Virginia Beach,,,VA,9/1/1986 20:00 +Calypso,RED YELLOW,SPHERE,NC,9/11/1986 22:00 +New York City,,SPHERE,NY,9/15/1986 3:00 +Tyler,,OTHER,TX,9/15/1986 20:00 +Calypso,RED YELLOW,OTHER,NC,9/15/1986 22:00 +Redding,RED,CIGAR,CA,9/15/1986 22:30 +Wingdale,,OTHER,NY,9/15/1986 22:30 +New Ellington,,OTHER,SC,9/16/1986 18:00 +Owensboro,,CYLINDER,KY,9/18/1986 16:00 +Colts Neck,,FIREBALL,NJ,9/18/1986 20:30 +Portsmouth,,,VA,9/19/1986 19:00 +Tucson,BLUE,,AZ,9/20/1986 23:50 +Jasper,,TRIANGLE,GA,9/21/1986 6:30 +Fredericksburg,ORANGE,TRIANGLE,VA,9/22/1986 16:00 +Klamath Falls,,CIRCLE,OR,10/1/1986 1:00 +N. Ridgeville,GREEN,TRIANGLE,OH,10/1/1986 22:00 +Wheeling,,LIGHT,WV,10/1/1986 22:00 +Bakersfield,,CIRCLE,CA,10/3/1986 21:00 +Cresson,ORANGE GREEN,DISK,PA,10/3/1986 21:00 +Holmes,,CHEVRON,NY,10/10/1986 20:00 +San Jose,GREEN,LIGHT,CA,10/14/1986 20:30 +Orangeburg,,CYLINDER,SC,10/15/1986 2:00 +Salem,,CIGAR,OR,10/15/1986 2:30 +Pinson,ORANGE,CIRCLE,AL,10/15/1986 14:00 +Bellevue,ORANGE,DISK,WA,10/15/1986 18:00 +Knoxville,,DISK,TN,10/15/1986 19:00 +Petaluma,,DISK,CA,10/15/1986 19:00 +Ridgecrest,,DISK,CA,10/15/1986 19:20 +Fayettville,,DIAMOND,TN,10/15/1986 21:00 +Onyx,,FIREBALL,CA,10/15/1986 22:00 +Eglin AFB,,DISK,FL,10/17/1986 17:00 +Bartlesville,,OTHER,OK,10/17/1986 18:00 +Raleigh,,TRIANGLE,NC,10/20/1986 19:00 +Selma,,LIGHT,NC,10/22/1986 22:00 +Decatur,,TRIANGLE,IA,10/26/1986 13:30 +Decatur City,,TRIANGLE,IA,10/30/1986 13:30 +Riverdale,,OTHER,GA,10/31/1986 3:00 +Landaff,,TRIANGLE,NH,11/1/1986 22:50 +Martinsburg,,OVAL,WV,11/1/1986 23:45 +Arvada,BLUE,SPHERE,CO,11/3/1986 20:30 +Grass Valley,,DISK,CA,11/10/1986 23:55 +Ft. Richardson,,,AK,11/15/1986 0:00 +Girdwood,ORANGE,SPHERE,AK,11/15/1986 14:30 +Savannah,,LIGHT,GA,11/15/1986 21:00 +Plains,GREEN,OTHER,MT,11/15/1986 23:00 +North Laguna Beach,,DISK,CA,11/21/1986 18:30 +New Windsor,,TRIANGLE,MD,11/23/1986 5:45 +Ocala,RED,RECTANGLE,FL,12/1/1986 22:00 +Pocahontas,RED,LIGHT,AR,12/12/1986 20:00 +Attleboro,,DISK,MA,12/15/1986 20:30 +Ocala,,TRIANGLE,FL,12/24/1986 22:00 +Pittsburgh,,TRIANGLE,PA,12/27/1986 10:30 +Kaneohe,,CIGAR,HI,12/31/1986 18:00 +Mt. Airy,,FORMATION,NC,12/31/1986 19:00 +Mt. Airy,,TRIANGLE,NC,12/31/1986 19:00 +Houston,,FORMATION,TX,12/31/1986 21:00 +Castro Valley,,OVAL,CA,1/1/1987 0:00 +Salem,RED,SPHERE,OR,1/1/1987 0:00 +El Centro,RED,SPHERE,CA,1/10/1987 17:00 +Montgomery,,CIGAR,AL,1/13/1987 0:00 +Ojai,,,CA,1/15/1987 0:00 +Elkader,,OTHER,IA,1/15/1987 1:45 +Las Vegas,,DISK,NV,1/29/1987 22:00 +East Meadow,,VARIOUS,NY,1/30/1987 13:00 +Kenai,,LIGHT,AK,1/30/1987 21:00 +Black Hawk,RED YELLOW,SPHERE,CO,1/31/1987 17:04 +Lucas,,OTHER,TX,2/1/1987 14:00 +Traverse City,,TRIANGLE,MI,2/3/1987 8:30 +Laurel Springs,,RECTANGLE,NJ,2/6/1987 13:00 +Bessemer,,,AL,2/20/1987 1:30 +Revere,,LIGHT,MA,3/1/1987 1:00 +Weaverville,,TRIANGLE,NC,3/1/1987 19:00 +Evansville,,LIGHT,IN,3/5/1987 3:00 +Ghent,,EGG,WV,3/8/1987 12:27 +Medford,,FORMATION,NY,3/10/1987 20:00 +Scottsdale,,LIGHT,AZ,3/15/1987 3:00 +New York City,,CHEVRON,NY,3/17/1987 21:00 +Apache Junction,,VARIOUS,AZ,3/23/1987 0:55 +East Helena,,TRIANGLE,MT,3/31/1987 23:00 +Stamps,,CHEVRON,AR,4/1/1987 18:00 +Malibu,,FIREBALL,CA,4/1/1987 21:30 +Lawrenceville,,OTHER,NJ,4/9/1987 19:20 +New York City,,TRIANGLE,NY,4/10/1987 13:00 +Carolina Beach,,CIGAR,NC,4/11/1987 22:00 +Butler,,OTHER,PA,4/14/1987 12:00 +Seal Rock,,SPHERE,OR,4/15/1987 16:00 +Clearwater,,OTHER,FL,4/16/1987 15:30 +American Fork,,FORMATION,UT,4/17/1987 12:00 +Carolina Beach,,CIGAR,NC,4/19/1987 22:30 +Hibbing,,CIRCLE,MN,4/21/1987 22:30 +Rockford,ORANGE,SPHERE,IL,4/22/1987 23:30 +Redmond,RED,CIGAR,WA,4/23/1987 20:30 +Seattle,ORANGE,VARIOUS,WA,4/24/1987 20:15 +Winslow,,,ME,5/1/1987 23:00 +Natick,,DISK,MA,5/5/1987 21:00 +El Paso,,DISK,TX,5/6/1987 18:15 +Marble Falls,,CIRCLE,TX,5/8/1987 0:00 +Selden,,OTHER,NY,5/10/1987 23:30 +Wales,,LIGHT,NY,5/10/1987 23:30 +Whitesburg,,RECTANGLE,KY,5/14/1987 20:45 +Las Vegas,,OVAL,NV,5/15/1987 0:30 +Island Lake,RED,LIGHT,IL,5/15/1987 23:00 +Temple,,CIGAR,TX,5/15/1987 23:00 +Evansville,,OTHER,IN,5/18/1987 22:30 +Galveston,,VARIOUS,TX,5/20/1987 2:00 +Mcpherson,,TRIANGLE,KS,5/20/1987 22:00 +San Antonio,,DISK,TX,5/21/1987 2:00 +Schenectady,,CHEVRON,NY,5/28/1987 19:00 +Burnside,,CIRCLE,KY,5/28/1987 20:30 +Iowa,,,LA,6/1/1987 0:00 +Kittery,,,ME,6/1/1987 0:00 +Coos Bay,,DISK,OR,6/1/1987 1:00 +San Francisco,,OTHER,CA,6/1/1987 2:30 +Olympia,,EGG,WA,6/1/1987 3:00 +Miami,,LIGHT,FL,6/1/1987 6:00 +Las Vegas,,,NV,6/1/1987 6:45 +New York City,RED,CIGAR,NY,6/1/1987 15:00 +Redding,,,CA,6/1/1987 16:00 +Segno,,DISK,TX,6/1/1987 16:00 +Ithaca,,OTHER,MI,6/1/1987 17:00 +Syracuse,RED GREEN,OVAL,NY,6/1/1987 19:00 +Gladstone,,DISK,MO,6/1/1987 19:30 +Minford,,FLASH,OH,6/1/1987 20:00 +Putnam Valley,,FORMATION,NY,6/1/1987 21:00 +Kansas,BLUE,FIREBALL,KS,6/1/1987 22:00 +Little Rock,,FORMATION,AR,6/1/1987 22:00 +Jackson Hole,,LIGHT,WY,6/7/1987 21:00 +Jackson,,DIAMOND,MS,6/10/1987 7:00 +Joplin,,DISK,MO,6/10/1987 22:30 +Sarasota,,DISK,FL,6/11/1987 9:00 +Middlebury,,DISK,CT,6/11/1987 21:00 +Pittsburg,,,KS,6/12/1987 1:00 +Depere,,,WI,6/12/1987 21:00 +Cedarburg,RED,FORMATION,WI,6/13/1987 1:30 +Londonderry,,OTHER,NH,6/15/1987 1:00 +Bullhead City,,FIREBALL,AZ,6/15/1987 18:30 +Burlington,,FIREBALL,CT,6/15/1987 20:00 +Miamisburg,,TRIANGLE,OH,6/18/1987 23:15 +Auburn,,FIREBALL,MA,6/20/1987 9:30 +Gettysburg,,,PA,6/21/1987 23:00 +Summerfield,,LIGHT,OK,6/23/1987 1:30 +Pahrump,,OTHER,NV,6/25/1987 23:00 +Crofton,,DISK,MD,6/30/1987 0:00 +Muskegon,,LIGHT,MI,6/30/1987 2:30 +Irma,,OVAL,WI,6/30/1987 4:45 +Canton,,LIGHT,OH,6/30/1987 15:00 +Osceola County,,OTHER,FL,6/30/1987 16:00 +Hancock,,TRIANGLE,MD,6/30/1987 19:00 +Palm Springs,,,CA,6/30/1987 19:00 +St. Cloud,,OTHER,FL,6/30/1987 21:00 +Thomaston,,CIRCLE,GA,7/1/1987 0:30 +Marshville,,OTHER,NC,7/1/1987 1:00 +San Pedro,,TRIANGLE,CA,7/1/1987 3:00 +Cherokee Village,,CYLINDER,AR,7/1/1987 16:00 +Lost Park,RED,SPHERE,CO,7/1/1987 20:00 +Erie,,TRIANGLE,PA,7/3/1987 20:00 +Frankford,,LIGHT,MO,7/4/1987 22:00 +Neenah,,OTHER,WI,7/7/1987 1:00 +Salina,,SPHERE,KS,7/7/1987 23:30 +Rockford,,TRIANGLE,IL,7/10/1987 22:05 +White Bear Lake,,DISK,MN,7/12/1987 15:00 +Sacramento,,OTHER,CA,7/14/1987 1:30 +Teller,,DISK,AK,7/15/1987 1:30 +Richton,,OTHER,MS,7/15/1987 2:00 +San Juan Capistrano,YELLOW,LIGHT,CA,7/15/1987 2:00 +Arkansas,,LIGHT,AR,7/15/1987 3:00 +Houston,,SPHERE,TX,7/15/1987 13:00 +Beaver Dam,,OTHER,WI,7/15/1987 20:00 +Dyersburg,,CIRCLE,TN,7/15/1987 20:30 +Lakeville,,CHEVRON,CT,7/15/1987 21:00 +Collinsville,,TRIANGLE,AL,7/15/1987 22:30 +Alton,,DISK,IL,7/15/1987 23:00 +Somerset,,RECTANGLE,KY,7/16/1987 21:45 +Rome,,SPHERE,GA,7/18/1987 21:30 +Jackman,,SPHERE,ME,7/20/1987 18:00 +Piscataway,,OTHER,NJ,7/20/1987 21:00 +Windsor,,CIGAR,MO,7/20/1987 23:59 +Gypsum,,OVAL,CO,7/21/1987 11:00 +New York City,,OVAL,NY,7/21/1987 23:00 +Seattle,,TRIANGLE,WA,7/22/1987 10:15 +Scottsdale,RED GREEN BLUE,,AZ,7/23/1987 0:15 +Lawton,,,OK,7/25/1987 2:00 +Tucson,,FLASH,AZ,7/28/1987 15:00 +Asheville,,LIGHT,NC,7/30/1987 21:20 +Indianapolis,RED,LIGHT,IN,8/1/1987 0:00 +Carlsbad,,DIAMOND,CA,8/1/1987 22:00 +Live Oak,,FIREBALL,FL,8/1/1987 22:00 +Crescent Junction,,OTHER,UT,8/6/1987 3:30 +Applegate,,,CA,8/11/1987 23:00 +Neosho,,RECTANGLE,MO,8/11/1987 23:00 +Springfield,,TRIANGLE,OH,8/13/1987 21:00 +Kitsap County,,LIGHT,WA,8/15/1987 0:00 +Marina,,OTHER,CA,8/15/1987 1:00 +no data,,TRIANGLE,NE,8/15/1987 1:30 +Bremen,,DISK,GA,8/15/1987 2:00 +Bessmer,GREEN,LIGHT,MI,8/15/1987 2:30 +Rte 7,,CHEVRON,VT,8/15/1987 2:30 +Chino Valley,,SPHERE,AZ,8/15/1987 16:00 +Bellefontaine,,RECTANGLE,OH,8/15/1987 19:00 +Brookline,,TRIANGLE,MA,8/15/1987 22:30 +Olancha,,DISK,CA,8/15/1987 22:30 +Springfield,,CIGAR,OR,8/17/1987 2:00 +San Diego,,DISK,CA,8/17/1987 2:30 +Jakes Corners,,LIGHT,AZ,8/17/1987 19:00 +Los Alamos,RED,CHEVRON,CA,8/17/1987 20:00 +Lincoln,,DISK,IL,8/18/1987 22:00 +Cedar Springs,RED,CIRCLE,MI,8/20/1987 1:00 +Port Aransas,,TRIANGLE,TX,8/20/1987 2:00 +Hastings On Hudson,,TRIANGLE,NY,8/20/1987 20:00 +Tallahassee,,CHEVRON,FL,8/20/1987 21:00 +Crown Point,,DISK,IN,8/20/1987 23:00 +Southbridge,,LIGHT,MA,8/22/1987 20:00 +Panorama City,,OTHER,CA,9/1/1987 0:00 +Hewlett,,DISK,NY,9/1/1987 20:00 +Conway,RED YELLOW,CYLINDER,AR,9/10/1987 18:00 +Liverpool,,CIGAR,NY,9/15/1987 7:30 +River Hills,,,WI,9/15/1987 20:00 +Yankton,,TRIANGLE,SD,9/15/1987 21:00 +Tulare,,LIGHT,CA,9/15/1987 23:00 +Spokane,,DISK,WA,9/16/1987 21:21 +Lima,,RECTANGLE,OH,9/18/1987 23:00 +Santa Fe,,,NM,9/20/1987 16:00 +Alvarado,,LIGHT,TX,9/25/1987 18:00 +West Palm Beach,,,FL,10/1/1987 1:00 +Roseburg,ORANGE,OVAL,OR,10/1/1987 20:00 +Alstead,,FIREBALL,NH,10/1/1987 21:00 +Louisburg,,TRIANGLE,NC,10/1/1987 23:00 +Wappingers Falls,,,NY,10/1/1987 23:00 +Wytheville,RED,LIGHT,VA,10/8/1987 23:00 +Minnetonka,,LIGHT,MN,10/11/1987 21:30 +Otto,BLUE,FIREBALL,MO,10/11/1987 23:59 +Raleigh,,TRIANGLE,NC,10/15/1987 2:00 +Burnet,,DISK,TX,10/15/1987 16:00 +Bolingbrook,,TRIANGLE,IL,10/15/1987 20:00 +Itta Bena,,CIRCLE,MS,10/15/1987 21:00 +Osawatomie,,OTHER,KS,10/15/1987 21:00 +Yonkers,,RECTANGLE,NY,10/15/1987 21:00 +Eastchester,,TRIANGLE,NY,10/15/1987 22:00 +Baker,,LIGHT,MT,10/15/1987 22:30 +Portsmouth,,CIGAR,NH,10/22/1987 20:00 +Fort Wayne,,,IN,10/26/1987 0:00 +Jackson,RED ORANGE,FORMATION,WI,10/26/1987 23:00 +Las Cruces,,VARIOUS,NM,10/28/1987 20:30 +Kerens,,CIRCLE,TX,10/29/1987 23:30 +Pleasant Hill,ORANGE,SPHERE,CA,10/30/1987 22:00 +Omaha,,TRIANGLE,AR,10/31/1987 18:30 +Dallas,,LIGHT,NC,11/1/1987 4:00 +Daytona Beach,,CYLINDER,FL,11/1/1987 20:00 +Lyons,,OVAL,CO,11/1/1987 22:00 +San Diego,,FLASH,CA,11/15/1987 2:00 +St. Petersburg,,RECTANGLE,FL,11/15/1987 19:30 +Reedsville,,TRIANGLE,WI,11/15/1987 22:00 +Crivitz,,,WI,11/15/1987 23:00 +Anchorage,,LIGHT,AK,11/17/1987 6:00 +Uvalde,RED GREEN,CIRCLE,TX,11/20/1987 21:30 +Knoxville,,CHEVRON,TN,11/23/1987 19:45 +Firebaugh,,TRIANGLE,CA,11/23/1987 23:00 +Tehachapi,,,CA,11/26/1987 6:30 +El Paso,,OVAL,TX,11/27/1987 17:30 +Lake Ozark,GREEN,CIGAR,MO,12/12/1987 21:00 +Mapelton,,CONE,IL,12/13/1987 1:00 +Tampa,,,FL,12/20/1987 1:00 +Las Vegas,RED,LIGHT,NV,12/20/1987 17:15 +Ocala,RED,TRIANGLE,FL,12/23/1987 22:00 +Exeter,,RECTANGLE,RI,12/24/1987 20:00 +Woodbridge,ORANGE,SPHERE,VA,12/31/1987 23:00 +Roselle,ORANGE,TRIANGLE,IL,1/1/1988 3:00 +Kenner,,CIRCLE,LA,1/1/1988 17:00 +Ellington,,TRIANGLE,CT,1/9/1988 23:00 +Williamsfield,YELLOW,,IL,1/10/1988 22:10 +Cambridge,,OVAL,MA,1/12/1988 3:30 +Little Rock,,OTHER,AR,1/15/1988 18:00 +Vandalia,,TRIANGLE,MO,1/15/1988 23:00 +Kingsville,GREEN,RECTANGLE,OH,1/17/1988 2:00 +Stonewall,,LIGHT,OK,1/18/1988 20:00 +Duluth,,TRIANGLE,MN,1/25/1988 4:00 +Houma,,DISK,LA,2/5/1988 15:00 +Brooklyn Park,,CYLINDER,MN,2/8/1988 0:10 +Indian Springs,,OVAL,AL,2/15/1988 2:30 +Huntsville,,OTHER,AL,2/15/1988 21:00 +Brandon,,LIGHT,FL,2/25/1988 21:00 +In flight,,,CO,3/1/1988 12:00 +New Brighton,,VARIOUS,PA,3/5/1988 16:30 +Shell Beach,,FIREBALL,CA,3/6/1988 3:00 +Powhatan,,TRIANGLE,VA,3/8/1988 5:20 +Quinton,,CIRCLE,VA,3/11/1988 0:00 +Klondyke,,CONE,AZ,3/15/1988 0:00 +Yuma,,LIGHT,AZ,3/15/1988 2:00 +Rock Hill,,CIRCLE,SC,3/15/1988 6:00 +Wataga,GREEN,DISK,IL,3/15/1988 10:00 +Gallup,,CYLINDER,NM,3/15/1988 19:30 +New York City,,OVAL,NY,3/17/1988 19:30 +Ossining,,EGG,NY,3/17/1988 20:00 +Pleasantville,,EGG,NY,3/17/1988 22:00 +Brunswick,GREEN,,ME,4/4/1988 2:00 +Akron,,LIGHT,OH,4/4/1988 23:30 +Pleasant Hill,,DISK,MO,4/12/1988 16:00 +Wasilla,,DISK,AK,4/15/1988 7:00 +Bremerton,,DISK,WA,4/15/1988 14:00 +Yuma,,OTHER,AZ,4/15/1988 19:00 +Dallas,,LIGHT,TX,4/26/1988 23:00 +Lincoln,,CIRCLE,MO,4/30/1988 0:00 +McNeill,,CIGAR,MS,4/30/1988 22:00 +Cleveland,,CIRCLE,OH,5/1/1988 16:00 +Houston,,,TX,5/1/1988 21:00 +Ray Center,,DISK,MI,5/1/1988 21:00 +Virginia Beach,,,VA,5/5/1988 22:15 +Allison Park,,SPHERE,PA,5/15/1988 8:00 +Edgewood,,SPHERE,MD,5/15/1988 15:00 +Kendallville,,TRIANGLE,IN,5/15/1988 21:00 +Chicago,,CHEVRON,IL,5/17/1988 19:45 +Wheeler,,LIGHT,TX,5/20/1988 20:00 +Ada,,CIGAR,MN,5/24/1988 14:00 +Valentine,,OTHER,TX,6/1/1988 0:00 +Corbin,,DISK,KY,6/1/1988 1:00 +Davis,,LIGHT,OK,6/1/1988 1:00 +Live Oak,GREEN,LIGHT,FL,6/1/1988 1:00 +Tamarac,,EGG,FL,6/1/1988 2:00 +Ironton,,,OH,6/1/1988 3:00 +Trinity village,,,CA,6/1/1988 4:00 +Sebastopol,RED,CIRCLE,CA,6/1/1988 15:30 +Venice Beach,ORANGE,,FL,6/1/1988 18:00 +Mankato,ORANGE,OTHER,MN,6/1/1988 19:00 +North East Orlando,,DISK,FL,6/1/1988 19:00 +Buras,,DISK,LA,6/1/1988 19:30 +Carrollton,,CIRCLE,MS,6/1/1988 20:00 +Blythe,,FORMATION,CA,6/1/1988 21:00 +Potomac,ORANGE,CIRCLE,MD,6/1/1988 21:00 +St. Augustine,,SPHERE,FL,6/1/1988 21:00 +Albuquerque,,SPHERE,NM,6/1/1988 21:30 +Walnut Creek,,,CA,6/1/1988 22:00 +Lackawanna,,,NY,6/1/1988 23:00 +Lakeline,,LIGHT,OH,6/1/1988 23:00 +Owego,RED,DISK,NY,6/10/1988 2:00 +Eden Prairie,,LIGHT,MN,6/10/1988 3:00 +Atlanta,,OTHER,GA,6/10/1988 12:00 +Pensacola,,LIGHT,FL,6/10/1988 22:00 +Omaha,,OVAL,NE,6/10/1988 22:30 +Carrollton,,CROSS,TX,6/14/1988 21:45 +Wilmington,,,IL,6/15/1988 0:00 +Westfall,RED,,PA,6/15/1988 1:00 +Los Angeles,,DIAMOND,CA,6/15/1988 21:00 +Julian,,OTHER,CA,6/15/1988 21:30 +Budd Lake,,TRIANGLE,NJ,6/15/1988 22:00 +North Freedom,,CYLINDER,WI,6/15/1988 23:00 +Jonesboro,,LIGHT,IN,6/18/1988 23:30 +Canton,,CIRCLE,GA,6/19/1988 3:00 +In-flight,,,NV,6/19/1988 5:30 +Woburn,,LIGHT,MA,6/20/1988 1:00 +Conroe,,FIREBALL,TX,6/20/1988 17:30 +Columbia,,OVAL,PA,6/20/1988 20:00 +Napa,RED,CHEVRON,CA,6/26/1988 16:00 +Phoenix,,,AZ,6/30/1988 1:00 +Pittsburgh,,TRIANGLE,PA,6/30/1988 3:00 +Frederid,,CIGAR,WI,6/30/1988 6:30 +Saline Valley,,SPHERE,CA,6/30/1988 11:00 +Harrison,,TRIANGLE,AR,6/30/1988 19:00 +Louisville,,CIRCLE,KY,6/30/1988 23:15 +North Pole,,,AK,7/1/1988 0:00 +Norwood,,CIRCLE,MO,7/1/1988 0:00 +Show Low,,,AZ,7/1/1988 1:00 +Baker,,LIGHT,CA,7/1/1988 13:00 +Tucson,,TRIANGLE,AZ,7/1/1988 13:00 +Yardley,,TRIANGLE,PA,7/1/1988 19:30 +Tucson,,TRIANGLE,AZ,7/1/1988 21:30 +Sarnia,BLUE,LIGHT,MO,7/1/1988 22:00 +Arcadia,,RECTANGLE,CA,7/1/1988 23:30 +Socorro,,TRIANGLE,NM,7/2/1988 2:30 +Morganton,,SPHERE,NC,7/4/1988 12:30 +Jacksonville,,TRIANGLE,FL,7/4/1988 21:00 +Rome,,SPHERE,NY,7/5/1988 0:30 +Denton,,RECTANGLE,TX,7/7/1988 22:00 +Monroe,,OTHER,WA,7/10/1988 21:00 +Fort Wayne,,OVAL,IN,7/14/1988 1:00 +Corona,,CROSS,NM,7/15/1988 0:00 +Connell,,OVAL,WA,7/15/1988 2:00 +Van Nuys,ORANGE,SPHERE,CA,7/15/1988 2:00 +Benson Landing,,,VT,7/15/1988 3:00 +Benson Landing,,,VT,7/15/1988 3:00 +Redding,,OTHER,CT,7/15/1988 18:00 +Corpus Christi,,CIRCLE,TX,7/15/1988 22:00 +Malibu,,OTHER,CA,7/16/1988 1:15 +San Jacinto Mountain,,SPHERE,CA,7/16/1988 14:00 +Whittier,,EGG,CA,7/16/1988 23:45 +Houston,,OVAL,TX,7/19/1988 22:00 +Fairfax,RED ORANGE,DISK,VA,7/20/1988 22:00 +Lousville,,LIGHT,KY,7/22/1988 10:45 +Cape Canaveral,,RECTANGLE,FL,7/26/1988 22:00 +Ft. Stewart,,LIGHT,GA,8/1/1988 0:00 +Rachel,,DISK,NV,8/1/1988 1:30 +North Hampton,,RECTANGLE,NH,8/1/1988 2:00 +Tecate,,LIGHT,CA,8/1/1988 5:30 +Bastrop,,SPHERE,TX,8/1/1988 11:00 +West New York,,SPHERE,NJ,8/1/1988 13:30 +Sacramento,,DISK,CA,8/1/1988 19:00 +Danbury,,CIRCLE,CT,8/1/1988 22:00 +Holbrook,,CIRCLE,NY,8/1/1988 23:00 +Clinton,,CIRCLE,MS,8/2/1988 20:00 +Posen,,FIREBALL,MI,8/5/1988 23:00 +Basking Ridge,,CHEVRON,NJ,8/7/1988 15:30 +Shobonier,,OTHER,IL,8/8/1988 18:00 +Plymouth,,TRIANGLE,OH,8/8/1988 22:00 +Benton,,SPHERE,ME,8/8/1988 23:00 +Denver,,OTHER,CO,8/10/1988 0:05 +Whitmire,,OTHER,SC,8/10/1988 6:00 +Jamesville,BLUE,LIGHT,NY,8/10/1988 16:08 +Johnstown,,TRIANGLE,PA,8/10/1988 22:30 +Union,,DISK,SC,8/12/1988 19:00 +Methuen,,,MA,8/13/1988 2:00 +Union,,DISK,SC,8/15/1988 0:00 +St. Charles,,OVAL,MO,8/15/1988 1:00 +Walker Valle,,,NY,8/15/1988 14:00 +Highlands,,RECTANGLE,NC,8/15/1988 21:00 +Mendham,ORANGE,FIREBALL,NJ,8/15/1988 21:30 +Azucena,,DIAMOND,LA,8/15/1988 22:00 +Ceres,,TRIANGLE,CA,8/15/1988 22:00 +Seabrook,,TRIANGLE,NH,8/15/1988 22:00 +Sutcliff,,,NV,8/15/1988 22:00 +West Milford,,LIGHT,NJ,8/15/1988 22:30 +Buchanan,,CIRCLE,NY,8/15/1988 23:00 +Harvey,,OTHER,MI,8/18/1988 14:45 +Splendora,,SPHERE,TX,8/20/1988 0:00 +Porterville,,,CA,8/20/1988 4:00 +Clayton,,SPHERE,NC,8/20/1988 19:30 +New York City,,SPHERE,NY,8/20/1988 22:00 +Farmington,YELLOW,,NM,8/20/1988 23:00 +Neb.-Mo. Line,,FIREBALL,MO,8/21/1988 20:00 +Las Vegas,,,NV,8/30/1988 6:00 +Carlsberg,,DISK,WA,9/1/1988 5:30 +Roswell,,DISK,NM,9/1/1988 17:30 +Yukon,,LIGHT,OK,9/1/1988 20:00 +Vaughn,,,NM,9/1/1988 21:00 +Harvard,,SPHERE,MA,9/3/1988 15:30 +Dolly Sods Wilderness Area,,CIGAR,WV,9/9/1988 21:50 +Oakvale,,CYLINDER,WV,9/12/1988 23:30 +Darlington,,,LA,9/15/1988 3:00 +Riverside,,FLASH,CA,9/20/1988 3:00 +New York City,,CIRCLE,NY,9/20/1988 18:00 +Mansfield,,SPHERE,OH,9/20/1988 22:50 +Detroit,,OVAL,MI,9/21/1988 15:51 +Monroe,,CIRCLE,WI,9/28/1988 21:00 +New Castle,,TRIANGLE,DE,9/30/1988 21:00 +Fishkill,,FORMATION,NY,10/2/1988 22:30 +Vermillion,,RECTANGLE,OH,10/7/1988 21:40 +Milwaukee,,TRIANGLE,WI,10/10/1988 18:00 +New Gloucester,,,ME,10/10/1988 21:00 +Boulder,,LIGHT,CO,10/10/1988 22:00 +Seattle,,,WA,10/10/1988 22:45 +Greers Ferry,,CIRCLE,AR,10/15/1988 0:30 +Bremerton,,CIRCLE,WA,10/15/1988 2:00 +Tacoma,,CIRCLE,WA,10/15/1988 13:00 +Orono,,TRIANGLE,ME,10/15/1988 19:55 +Missouri,,,MO,10/15/1988 20:00 +Pilot Knob,,CIGAR,MO,10/15/1988 20:00 +Belle,,,MO,10/15/1988 20:15 +Loveland,,CHEVRON,CO,10/15/1988 20:30 +Odessa,RED,CIRCLE,TX,10/15/1988 21:00 +Masfield,BLUE,LIGHT,OH,10/15/1988 22:00 +Big Spring,,OTHER,TX,10/15/1988 22:45 +Barnhart,,CYLINDER,NH,10/15/1988 23:30 +Philadelphia,,OVAL,PA,10/16/1988 9:30 +Tinker AFB,,CHEVRON,OK,10/17/1988 3:30 +Charlotte,GREEN,TRIANGLE,MI,10/17/1988 23:00 +Spokane,,VARIOUS,WA,10/20/1988 21:30 +Holmes,,FORMATION,NY,10/21/1988 21:00 +New York City,,SPHERE,NY,10/22/1988 20:30 +Interstate 10,,OVAL,LA,10/22/1988 22:33 +Green River,,CONE,UT,10/22/1988 23:16 +Miami,,LIGHT,FL,10/25/1988 5:00 +Rimini,,DISK,SC,10/26/1988 23:00 +Miami,,,FL,10/28/1988 3:00 +Collinsville,,LIGHT,IL,10/30/1988 22:00 +Tacoma,,DISK,WA,10/31/1988 4:00 +Tryon,ORANGE,TRIANGLE,OK,10/31/1988 22:00 +Clackamas,,CYLINDER,OR,11/1/1988 21:00 +Fort Lewis,,CIRCLE,WA,11/11/1988 19:00 +Sweetwater,GREEN,VARIOUS,TX,11/14/1988 22:30 +Dexter,,DISK,NY,11/15/1988 5:30 +Dexter,,DISK,NY,11/15/1988 5:30 +Dexter,,DISK,NY,11/15/1988 5:30 +Stockton,RED,TRIANGLE,CA,11/15/1988 18:00 +Scaley,,DISK,NC,11/15/1988 22:30 +Tecumseh,,OTHER,OK,11/19/1988 1:30 +Anaheim,,CIRCLE,CA,11/19/1988 18:15 +Anaheim,,DISK,CA,11/19/1988 18:15 +Sunnyvale,,OTHER,CA,11/19/1988 20:30 +El Dorado Hills,,,CA,11/27/1988 1:30 +Alamogordo,,LIGHT,NM,11/27/1988 21:00 +Hickory Plains,,,AR,11/30/1988 4:30 +south of the border,,DISK,NC,12/1/1988 22:00 +Fort Lauderdale,YELLOW,CIRCLE,FL,12/1/1988 23:30 +Hilo,,LIGHT,HI,12/2/1988 22:30 +Ohio City,,DISK,OH,12/14/1988 9:00 +Liberty,,TRIANGLE,NC,12/15/1988 23:30 +Miami to St. Paul,,VARIOUS,IL,12/20/1988 21:00 +Santa Rosa,,VARIOUS,CA,12/22/1988 3:55 +I-10,,,TX,12/23/1988 1:01 +Ovid,,FORMATION,MI,12/23/1988 20:35 +Memphis,,LIGHT,TN,1/1/1989 23:00 +Wagoner,,LIGHT,OK,1/1/1989 23:59 +Philadelphia,,CIGAR,PA,1/5/1989 0:15 +Fort Collins,,LIGHT,CO,1/7/1989 17:32 +Jackson,,FIREBALL,NJ,1/10/1989 23:00 +San Diego,,LIGHT,CA,1/10/1989 23:30 +Wenatchee,,VARIOUS,WA,1/15/1989 15:00 +San Bernardino,,,CA,1/15/1989 22:00 +Laramie,,OTHER,WY,1/17/1989 20:00 +Laramie,,DISK,WY,1/19/1989 20:15 +Bourbonnais,,OTHER,IL,1/20/1989 18:00 +Montgomery,,,IL,1/29/1989 23:00 +Waldorf,,OVAL,MD,2/1/1989 12:00 +Mahogany Hammock,,DISK,FL,2/4/1989 23:30 +Mont Alto,,OVAL,PA,2/10/1989 18:00 +Chicago,,OTHER,IL,2/11/1989 22:00 +Kenosha,,OTHER,WI,2/12/1989 19:00 +Savannah,,OTHER,GA,2/15/1989 5:00 +Shiocton,YELLOW,OTHER,WI,2/15/1989 22:00 +Eastern border,,,UT,2/27/1989 23:00 +Fort Worth,,LIGHT,TX,3/1/1989 1:30 +Marshall Creek,,DISK,PA,3/1/1989 12:15 +Poughkeepsie,,CHEVRON,NY,3/1/1989 20:00 +Yakima,BLUE,,WA,3/1/1989 21:00 +New Lenox,,EGG,IL,3/6/1989 1:00 +Sheridan,,,MT,3/10/1989 22:30 +Houston,,SPHERE,TX,3/12/1989 23:45 +Tulsa,,RECTANGLE,OK,3/15/1989 19:00 +Rockfish,,TRIANGLE,VA,3/15/1989 19:30 +Woodstock,,CIRCLE,GA,3/15/1989 23:30 +Grand Junction,,VARIOUS,CO,4/1/1989 9:30 +Wallops Island,,CYLINDER,VA,4/2/1989 13:00 +Idaho Falls,,RECTANGLE,ID,4/15/1989 3:30 +Mentone,RED,OTHER,CA,4/16/1989 18:00 +New York City,,OTHER,NY,4/19/1989 20:00 +Walnut Cove,RED,TRIANGLE,NC,4/21/1989 1:00 +Port Townsend,,CIGAR,WA,4/23/1989 14:00 +Lemoore,RED,OTHER,CA,5/1/1989 17:00 +Golden Shores,,FORMATION,AZ,5/1/1989 22:00 +Palo,,LIGHT,IA,5/1/1989 22:00 +Tuttle,,FORMATION,OK,5/1/1989 22:00 +Sedona,,OTHER,AZ,5/5/1989 17:00 +Talladega,,RECTANGLE,AL,5/7/1989 11:50 +Richmond,,CIGAR,VA,5/8/1989 14:00 +Tucson,,OTHER,AZ,5/10/1989 11:00 +Wichita Falls,GREEN BLUE,OVAL,TX,5/12/1989 14:30 +Tazewell,,OVAL,VA,5/12/1989 23:00 +Louisiana,,TRIANGLE,LA,5/15/1989 1:00 +Malvern,,TRIANGLE,AR,5/15/1989 1:00 +Tyler,,LIGHT,TX,5/15/1989 2:00 +Hooksett,,,NH,5/15/1989 14:00 +Interstate 40,,CIRCLE,AZ,5/15/1989 20:00 +Barneveld,,TRIANGLE,NY,5/15/1989 21:30 +Manassas,,TRIANGLE,VA,5/15/1989 21:30 +Ridgecrest,,FIREBALL,CA,5/15/1989 22:00 +Kent,,CHEVRON,CT,5/15/1989 22:30 +Quitman,,CIRCLE,MS,5/19/1989 20:00 +San Diego,,OTHER,CA,5/30/1989 16:00 +Baker City,,,OR,5/30/1989 21:00 +Chicago,,FORMATION,IL,6/1/1989 0:00 +New Mexico,,SPHERE,NM,6/1/1989 0:00 +Peoria,,CIRCLE,IL,6/1/1989 0:00 +Whitehouse Station,,DISK,NJ,6/1/1989 0:00 +San Diego,,OTHER,CA,6/1/1989 2:00 +Mansfield,,OTHER,OH,6/1/1989 4:55 +Daytona Beach,ORANGE,SPHERE,FL,6/1/1989 6:50 +Rhinebeck,,CHEVRON,NY,6/1/1989 16:00 +Groveland,,LIGHT,NY,6/1/1989 19:00 +Dallas,,CIGAR,TX,6/1/1989 20:00 +Hilo,,,HI,6/1/1989 20:00 +New Cumberland,,RECTANGLE,PA,6/1/1989 21:00 +Pittsfield,BLUE,DISK,MA,6/1/1989 21:00 +Wheelock,,OTHER,VT,6/1/1989 21:30 +South Elgin,,,IL,6/1/1989 22:00 +Vandalia,,TRIANGLE,MO,6/1/1989 22:00 +Enloe,,TRIANGLE,TX,6/1/1989 23:00 +New York City,,,NY,6/1/1989 23:00 +Roswell,,,NM,6/1/1989 23:00 +Upper Marlboro,,DISK,MD,6/1/1989 23:00 +Macon,,CIRCLE,GA,6/2/1989 21:00 +Hooverson Heights,,OTHER,WV,6/7/1989 22:00 +Sacramento,,OTHER,CA,6/11/1989 18:40 +Port Isabel,,DISK,TX,6/12/1989 17:00 +Houston,,OTHER,TX,6/12/1989 22:30 +Kansas City,,VARIOUS,MO,6/15/1989 0:00 +Point Pleasant,,,WV,6/15/1989 2:00 +Orem,BLUE,FORMATION,UT,6/15/1989 18:15 +Bakersfield,,DISK,CA,6/15/1989 20:00 +Brockton,,DISK,MA,6/15/1989 20:00 +Rancho,,,CA,6/15/1989 20:00 +Pensacola,,,FL,6/15/1989 20:30 +Patten,,TRIANGLE,ME,6/15/1989 21:00 +Cashmere,,,WA,6/15/1989 22:00 +Severna Park,,,MD,6/20/1989 1:00 +Albuquerque,,FORMATION,NM,6/20/1989 22:45 +Palm City,GREEN,LIGHT,FL,6/23/1989 22:00 +Sparta,,LIGHT,TN,6/25/1989 23:59 +Des Moines,,DISK,IA,6/30/1989 1:00 +Fort Jackson,,TRIANGLE,SC,6/30/1989 1:00 +Rathdrum,,SPHERE,CO,6/30/1989 16:00 +Banning,,TRIANGLE,CA,6/30/1989 21:00 +Ellenville,,OTHER,NY,6/30/1989 21:00 +Coolidge,,TRIANGLE,AZ,6/30/1989 21:30 +None,,OTHER,CO,6/30/1989 22:30 +Hebo,ORANGE,SPHERE,OR,7/1/1989 1:00 +Cedar Rapids,,TRIANGLE,IA,7/1/1989 3:30 +Laramie,,OTHER,WY,7/1/1989 14:00 +Green Bay,,CIRCLE,WI,7/1/1989 15:00 +Tupelo,GREEN,DISK,MS,7/1/1989 21:00 +Berkshire,,CHEVRON,NY,7/1/1989 21:30 +Stony Point,,TRIANGLE,NY,7/1/1989 22:00 +Lovell,,TRIANGLE,ME,7/1/1989 23:00 +Lawrence,,CHEVRON,KS,7/3/1989 22:30 +Belleville,,TRIANGLE,KS,7/3/1989 23:00 +Morganton,,SPHERE,NC,7/4/1989 12:30 +Los Angelas,,DISK,CA,7/4/1989 21:00 +Loveland,,CIGAR,CO,7/5/1989 23:30 +Waterford,,LIGHT,MI,7/6/1989 2:30 +Blyth,,RECTANGLE,AZ,7/7/1989 1:30 +Destin,RED,FIREBALL,FL,7/9/1989 7:00 +Beardstown,,CIRCLE,IL,7/9/1989 20:20 +Daytona Beach,GREEN,OTHER,FL,7/10/1989 0:00 +Mansfield,,LIGHT,OH,7/10/1989 23:00 +Sea Isle,,SPHERE,NJ,7/12/1989 5:00 +Defiance,,TRIANGLE,OH,7/15/1989 1:30 +Fire Mountain,,TRIANGLE,NV,7/15/1989 3:00 +St. Clair Shores,,SPHERE,MI,7/15/1989 6:00 +Avilla,RED,TRIANGLE,AR,7/15/1989 20:00 +Fresno,,FIREBALL,CA,7/15/1989 21:00 +Marion,,DISK,IN,7/17/1989 22:00 +Nags Head,,VARIOUS,NC,7/20/1989 22:00 +Waterloo,,SPHERE,IA,7/25/1989 20:00 +Jackson,,LIGHT,NJ,7/25/1989 22:00 +Beaverton,,CYLINDER,OR,7/26/1989 21:00 +Santa Rosa,RED ORANGE,SPHERE,CA,7/26/1989 22:00 +Clarksville,,LIGHT,IN,8/1/1989 11:00 +Yountville,,DISK,CA,8/1/1989 16:00 +San Diego,ORANGE,FORMATION,CA,8/1/1989 23:00 +Elk Park,,TRIANGLE,NC,8/1/1989 23:30 +Corpus Christi,,TRIANGLE,TX,8/3/1989 1:00 +Chappaqua,,CYLINDER,NY,8/8/1989 20:00 +The Dalles,,TRIANGLE,OR,8/8/1989 22:00 +Redmond,,TRIANGLE,OR,8/10/1989 0:00 +Martinsburg,,TRIANGLE,WV,8/10/1989 3:00 +Tupelo,,CYLINDER,MS,8/10/1989 14:00 +Novato,,DISK,CA,8/10/1989 18:00 +Portsmouth,,EGG,NH,8/11/1989 18:00 +St. Joseph,,LIGHT,MO,8/15/1989 0:00 +Dayton,,SPHERE,TX,8/15/1989 1:00 +Highlands,,OTHER,NC,8/15/1989 20:30 +Ft. Carson,,DISK,NM,8/18/1989 12:00 +Cleveland,,DISK,OH,8/19/1989 12:00 +North Kingstown,,LIGHT,RI,8/20/1989 14:00 +Grahamsville,,RECTANGLE,NY,8/22/1989 22:15 +Accokeek,,,MD,8/24/1989 23:45 +Key West,,TEARDROP,FL,8/30/1989 20:05 +Roswell,,,GA,9/1/1989 0:00 +Franklin,,SPHERE,NC,9/1/1989 14:00 +Hiddenite,RED,DISK,NC,9/1/1989 18:00 +Cincinnati,,TRIANGLE,OH,9/1/1989 20:00 +DuQuoin,,DISK,IL,9/2/1989 18:30 +Glennie,,LIGHT,MI,9/3/1989 4:00 +Palm Springs,,DISK,CA,9/6/1989 16:58 +Bellevue,,SPHERE,WA,9/6/1989 19:00 +Kent Cliffs,RED,DISK,NY,9/10/1989 23:00 +Englewood,,OTHER,FL,9/12/1989 0:00 +Waterloo,,OVAL,IA,9/12/1989 0:00 +Rocky Point,,,NY,9/15/1989 2:00 +Austin,,CIRCLE,TX,9/15/1989 21:00 +California desert,,LIGHT,CA,9/15/1989 21:00 +Peekskill,,,NY,9/15/1989 22:30 +Mt. Morris,,RECTANGLE,NY,9/15/1989 23:35 +Grandview,,CIRCLE,MO,9/17/1989 5:37 +Sierra Madre,,TEARDROP,CA,9/20/1989 16:00 +Oak Ridge,,DISK,TN,9/27/1989 20:30 +Miami,,CHEVRON,FL,9/29/1989 6:15 +McAlpin,ORANGE,,FL,9/30/1989 22:00 +MacKay,,DISK,ID,10/1/1989 16:00 +Ft. Walton Beach,,CIRCLE,FL,10/1/1989 18:00 +Winchester,ORANGE,OVAL,KY,10/1/1989 18:00 +Jacksonville,,CIRCLE,IL,10/1/1989 20:00 +Pawling,,OVAL,NY,10/1/1989 20:00 +Carmichael,,RECTANGLE,CA,10/1/1989 21:30 +Orono,,DISK,ME,10/1/1989 21:30 +Harrison,,OTHER,NY,10/7/1989 23:00 +Calabasas,,DISK,CA,10/10/1989 0:00 +Centralia,,TRIANGLE,WA,10/10/1989 21:00 +Kranklin,,TRIANGLE,KY,10/10/1989 21:00 +Kewanee,,SPHERE,IL,10/11/1989 21:00 +Kewanee,,SPHERE,IL,10/11/1989 21:00 +Hampton,,CIGAR,VA,10/15/1989 5:00 +Morgantown,,TRIANGLE,WV,10/15/1989 10:30 +Batesville,,DISK,AR,10/15/1989 19:00 +Bloomingdale,BLUE,SPHERE,NJ,10/15/1989 20:00 +Mint Hill,,TRIANGLE,NC,10/15/1989 20:00 +Glennallen,,,AK,10/15/1989 22:00 +Tucson,,SPHERE,AZ,10/16/1989 8:00 +Norwalk,,TRIANGLE,CT,10/17/1989 19:00 +San Jose,,TRIANGLE,CA,10/17/1989 21:00 +San Jose,,FLASH,CA,10/17/1989 22:30 +Wallingford,,OVAL,CT,10/18/1989 13:00 +Forest City,,DISK,NC,10/18/1989 21:00 +Shasta Lake,,DIAMOND,CA,10/18/1989 21:30 +West Palm Beach,,CYLINDER,FL,10/20/1989 0:00 +Newfoundland,,OTHER,PA,10/20/1989 3:00 +Diamond Bar,,VARIOUS,CA,10/20/1989 18:30 +Fayetteville,,FIREBALL,NC,10/22/1989 0:00 +De Soto,,OVAL,MO,10/30/1989 20:00 +El Jebel,,,CO,10/31/1989 18:30 +Amesville,RED,TRIANGLE,CT,11/1/1989 20:00 +Dallas,,VARIOUS,TX,11/1/1989 20:25 +Groom Lake,,EGG,NV,11/5/1989 2:00 +Kingman,GREEN,SPHERE,AZ,11/6/1989 2:00 +Washburn,RED,CIRCLE,MO,11/7/1989 19:30 +Phoenix,,LIGHT,AZ,11/10/1989 23:00 +Oklahoma,ORANGE,SPHERE,OK,11/14/1989 19:00 +Sapulpa,,TRIANGLE,OK,11/14/1989 20:00 +Dexter,,DISK,NY,11/15/1989 5:30 +San Antonio,,DIAMOND,TX,11/15/1989 18:00 +Currituck County,BLUE,DISK,NC,11/15/1989 22:00 +Wolf Creek drainage,,SPHERE,OR,11/15/1989 23:00 +Cooper City,,TRIANGLE,FL,11/22/1989 21:00 +Tallahassee,,SPHERE,FL,11/24/1989 12:00 +Davis,,TRIANGLE,CA,11/24/1989 13:30 +New Haven,,CIGAR,CT,11/25/1989 18:30 +Theresa,,TRIANGLE,WI,11/25/1989 19:00 +Monroe,,,LA,11/25/1989 22:00 +Dallas,,TRIANGLE,TX,11/26/1989 21:35 +Peace Vally,ORANGE,EGG,MO,11/28/1989 18:35 +Alvin,RED GREEN BLUE,SPHERE,TX,12/1/1989 17:30 +Kansas City,,OTHER,MO,12/1/1989 19:00 +Vancleave,,TRIANGLE,MS,12/1/1989 19:00 +Grand Canyon,,FORMATION,AZ,12/1/1989 21:00 +Independence,,TRIANGLE,MO,12/1/1989 22:00 +Bushnell,,TRIANGLE,FL,12/4/1989 1:55 +Cape May,ORANGE,SPHERE,NJ,12/10/1989 22:00 +Douglas Island,,SPHERE,AK,12/12/1989 7:00 +Tusayan,,DISK,AZ,12/13/1989 17:30 +Pineville,,RECTANGLE,LA,12/13/1989 23:00 +Glennwood,,SPHERE,OR,12/15/1989 18:00 +Sunnyvale,,OTHER,CA,12/16/1989 0:00 +Mosheim,,OVAL,TN,12/17/1989 22:00 +Cicero,,LIGHT,NY,12/22/1989 3:00 +Chicago,,DISK,IL,12/23/1989 8:00 +Hockessin,,SPHERE,DE,12/23/1989 20:00 +Orrington,,TRIANGLE,ME,12/24/1989 23:45 +Ocala,,TRIANGLE,FL,12/31/1989 23:00 +Minneapolis,,,MN,1/1/1990 0:00 +no data,,,NV,1/1/1990 23:00 +Barkhamsted,,,CT,1/3/1990 20:00 +New Orleans,,DISK,LA,1/6/1990 22:00 +Sutton,,VARIOUS,AK,1/7/1990 9:00 +Americus,,OVAL,IN,1/11/1990 3:30 +Livingston,,CIRCLE,CA,1/14/1990 20:00 +Platteville,RED ORANGE,DISK,WI,1/15/1990 1:00 +Hiawassee,,TRIANGLE,GA,1/15/1990 12:30 +Melvin,,DISK,IL,1/15/1990 18:30 +Richmond,,TRIANGLE,VA,1/23/1990 20:00 +Brigantine,,,NJ,2/1/1990 21:00 +Murfreesboro,,OVAL,TN,2/2/1990 17:10 +Douglas,,OTHER,GA,2/3/1990 11:30 +Lansing,ORANGE,FORMATION,MI,2/4/1990 2:16 +Sleepy Creek,,LIGHT,NC,2/5/1990 21:00 +Plattsburg,YELLOW,LIGHT,NY,2/9/1990 2:30 +Indianapolis,,TEARDROP,IN,2/14/1990 9:24 +Davenport,,TRIANGLE,IA,2/14/1990 19:30 +Boston,,OTHER,MA,2/15/1990 15:30 +Brockton,,OTHER,MA,2/15/1990 20:15 +Brockton,,TRIANGLE,MA,2/15/1990 20:17 +Waterloo,,FORMATION,IL,2/15/1990 21:00 +Brownsburg,,SPHERE,IN,2/20/1990 6:40 +Wimberley,,TRIANGLE,TX,2/25/1990 22:45 +San Clemente,,DISK,CA,2/28/1990 22:00 +Williston,BLUE,FIREBALL,FL,3/1/1990 21:00 +Maryville,,OTHER,TN,3/15/1990 17:30 +Valley Mills,,OVAL,TX,3/15/1990 19:00 +Sitka,RED BLUE,LIGHT,AK,3/15/1990 20:50 +Farmville,,DISK,NC,3/15/1990 22:00 +Los Altos,,,CA,3/15/1990 22:00 +Janesville,,LIGHT,WI,3/15/1990 22:30 +Buena Park,,,CA,4/10/1990 20:35 +Indianapolis,,CIRCLE,IN,4/14/1990 6:30 +Knoxville,,OTHER,TN,4/15/1990 0:05 +Charlottesville,,OTHER,VA,4/15/1990 1:30 +Thornwood,,LIGHT,NY,4/15/1990 22:00 +Datil,,DISK,NM,4/27/1990 7:20 +East Windsor,,TEARDROP,NJ,5/1/1990 13:00 +Kingman,,FLASH,AZ,5/1/1990 20:00 +New Castle,,LIGHT,PA,5/1/1990 20:30 +Malibu,,DISK,CA,5/4/1990 12:20 +Arlington,,CHEVRON,VA,5/5/1990 21:40 +Canton,,CIRCLE,OH,5/15/1990 13:35 +Tioga,,CIGAR,LA,5/15/1990 17:50 +Raymond,,OVAL,NH,5/15/1990 19:30 +West Point,,TRIANGLE,NY,5/15/1990 20:00 +Norwalk,,OTHER,CA,5/19/1990 17:15 +Seneca,RED,LIGHT,SC,5/21/1990 20:50 +Perl Island,,SPHERE,AK,5/22/1990 23:00 +Eugene,RED,LIGHT,OR,5/24/1990 23:00 +South Fallsburg,,CIRCLE,NY,5/25/1990 10:00 +Stanwood,,RECTANGLE,WA,5/26/1990 21:00 +Lenexa,,OTHER,KS,5/26/1990 23:15 +Sante Fe,,TRIANGLE,NM,5/28/1990 17:00 +Lextington,,FIREBALL,OH,5/29/1990 1:15 +Florissant,,SPHERE,MO,6/1/1990 0:00 +Levitown,RED,DIAMOND,NY,6/1/1990 2:30 +Lewisburg,,LIGHT,PA,6/1/1990 5:00 +Bridgeton,,DISK,NJ,6/1/1990 7:00 +Santa Rosa,,SPHERE,CA,6/1/1990 11:00 +Allentown,,OTHER,PA,6/1/1990 12:00 +Greenville,,DISK,DE,6/1/1990 12:00 +Orting,,DISK,WA,6/1/1990 12:00 +San Diego,,RECTANGLE,CA,6/1/1990 12:00 +Delta,,CIGAR,LA,6/1/1990 20:00 +Elfin Forest,,,CA,6/1/1990 20:00 +Henryetta,,LIGHT,OK,6/1/1990 20:00 +Maryland,,TRIANGLE,MD,6/1/1990 20:00 +Cannon,RED,CHEVRON,NY,6/1/1990 21:00 +The Dalles,,TRIANGLE,OR,6/1/1990 21:00 +Fullerton,,CIRCLE,CA,6/1/1990 22:00 +Fullerton,,DISK,CA,6/1/1990 22:00 +Colorado Springs,,OTHER,CO,6/1/1990 23:00 +Danville,,,IL,6/5/1990 20:00 +Stanton,,DISK,KY,6/6/1990 22:00 +Stonyford,GREEN,SPHERE,CA,6/8/1990 21:00 +Stonyford,,SPHERE,CA,6/9/1990 23:00 +Los Angeles,,,CA,6/10/1990 20:00 +Tallahassee,,,FL,6/10/1990 22:00 +Dells,,DISK,WI,6/11/1990 10:00 +Lafayette,,CIRCLE,GA,6/15/1990 0:00 +Springfield,,OVAL,OR,6/15/1990 1:00 +Peru,,CIRCLE,IN,6/15/1990 2:00 +Carlisle,,OTHER,PA,6/15/1990 3:00 +Tellicoplains,,DISK,TN,6/15/1990 19:00 +El Paso,,TRIANGLE,TX,6/15/1990 20:00 +Columbia Heights,,,MN,6/15/1990 23:00 +Kettering,,OTHER,OH,6/17/1990 20:30 +Bremerton,,TRIANGLE,WA,6/20/1990 1:00 +Salem,,EGG,NY,6/23/1990 22:25 +Newton,,CIRCLE,NJ,6/26/1990 1:00 +Santa Maria,,CIRCLE,CA,6/30/1990 0:00 +Riverside,,CYLINDER,CA,6/30/1990 13:00 +Scottsdale,,TRIANGLE,AZ,6/30/1990 20:30 +Carlisle,,FIREBALL,NY,6/30/1990 21:00 +North Fork,,OTHER,CA,6/30/1990 21:00 +Shaver Lake,,LIGHT,CA,7/1/1990 0:30 +Shaver Lake,,TRIANGLE,CA,7/1/1990 0:30 +Whitehouse Station,,,NJ,7/1/1990 1:00 +Lindenhurst,,TRIANGLE,NY,7/1/1990 5:30 +Lewistown,,LIGHT,IL,7/1/1990 17:00 +San Diego,,OTHER,CA,7/1/1990 20:30 +Corte Madera,RED,FIREBALL,CA,7/1/1990 21:00 +San Bernardino,,,CA,7/1/1990 21:00 +Jeffersonville,,TRIANGLE,IN,7/1/1990 22:00 +Mankato,,OVAL,MN,7/1/1990 22:00 +Miami,,FIREBALL,FL,7/1/1990 22:45 +Fontana,,LIGHT,CA,7/1/1990 23:00 +Lake Havasu,,SPHERE,AZ,7/1/1990 23:00 +Sacramento,ORANGE YELLOW,LIGHT,CA,7/1/1990 23:00 +Cape Girardeau,,SPHERE,MO,7/3/1990 22:00 +Lake Tahoe,,CIRCLE,CA,7/3/1990 22:00 +North Miami Beach,,LIGHT,FL,7/3/1990 23:00 +Rivrside,,OTHER,CA,7/5/1990 13:00 +Sawyer,,DISK,MI,7/5/1990 17:00 +San Antonio,,TRIANGLE,TX,7/7/1990 10:30 +Milwaukee,ORANGE,FIREBALL,WI,7/8/1990 0:10 +Tularosa,,,NM,7/12/1990 11:00 +Calnevari,,DIAMOND,CA,7/12/1990 12:00 +Willamina,,RECTANGLE,OR,7/12/1990 19:00 +Stonington,,TRIANGLE,CT,7/13/1990 22:00 +Lancaster,,OTHER,PA,7/15/1990 1:00 +Glen Burnie,,LIGHT,MD,7/15/1990 2:00 +Arizona,,LIGHT,AZ,7/15/1990 2:30 +Colorado Springs,,FLASH,CO,7/15/1990 3:00 +Salt Lake City,,DISK,UT,7/15/1990 4:30 +Snohomish Co.,BLUE,SPHERE,WA,7/15/1990 4:30 +Willits,,VARIOUS,CA,7/15/1990 13:00 +North Fork,,FIREBALL,CA,7/15/1990 14:00 +Chico,,DISK,CA,7/15/1990 20:00 +Fenton,,RECTANGLE,MO,7/15/1990 23:00 +Glenelg,,LIGHT,MD,7/15/1990 23:30 +Stockton,,CIGAR,CA,7/18/1990 6:10 +Ames,,DISK,IA,7/18/1990 22:00 +Ocean City,,OTHER,MD,7/20/1990 22:00 +Pittsburg,RED YELLOW,LIGHT,TX,7/20/1990 23:00 +Madison,,LIGHT,WI,7/22/1990 1:00 +Linden,,CIRCLE,WI,7/29/1990 23:00 +Neenah,,LIGHT,WI,8/1/1990 0:00 +Clearfield,,DISK,UT,8/1/1990 12:00 +Wright Patterson AFB,,DISK,OH,8/1/1990 21:00 +Carbondale,,OTHER,CO,8/5/1990 14:00 +Mt. Hood,,SPHERE,OR,8/6/1990 11:00 +Huntington Beach,,SPHERE,CA,8/8/1990 12:00 +Boston,,OVAL,MA,8/8/1990 22:00 +Omaha,,OTHER,NE,8/8/1990 23:08 +Southbridge,,,MA,8/10/1990 2:00 +Cross City,,TRIANGLE,FL,8/10/1990 21:30 +Lincoln,,CIRCLE,NE,8/12/1990 4:00 +Corpus Christi,,TRIANGLE,TX,8/12/1990 23:30 +Neptune,,FORMATION,NJ,8/13/1990 2:00 +Sponk,,,NY,8/15/1990 2:30 +Perris,,TRIANGLE,CA,8/15/1990 3:00 +Benbrook,,TRIANGLE,TX,8/15/1990 21:30 +Busby,,LIGHT,MT,8/15/1990 22:00 +Ramona,,,CA,8/15/1990 22:00 +El Dorado Hills,,,CA,8/17/1990 22:15 +Winslow,,FORMATION,AZ,8/20/1990 10:00 +Winslow,,FORMATION,AZ,8/20/1990 10:00 +Newport,,SPHERE,TN,8/20/1990 19:00 +Phoenix,,OTHER,AZ,8/21/1990 22:19 +Redding,ORANGE,VARIOUS,CA,8/23/1990 18:45 +Santa Cruz,RED ORANGE,OTHER,CA,8/24/1990 1:00 +Cherry Valley,,TRIANGLE,IL,8/24/1990 20:00 +Riverside,,RECTANGLE,IL,8/25/1990 5:25 +Punxsutawney,,SPHERE,PA,8/26/1990 23:00 +Sterling,,,MA,8/31/1990 22:00 +Dover,,CIRCLE,DE,9/1/1990 6:30 +Marion,,TRIANGLE,VA,9/1/1990 21:00 +Roscoe,,TRIANGLE,IL,9/1/1990 21:00 +San Antonio,,OTHER,TX,9/1/1990 22:30 +Dallas,,LIGHT,TX,9/2/1990 21:00 +Dover,,TRIANGLE,DE,9/7/1990 22:00 +White Lake,,OTHER,NC,9/14/1990 15:00 +Howe,,CIGAR,TX,9/15/1990 7:30 +Greencastle,,OTHER,IN,9/15/1990 18:00 +Campbell Hall,RED,TRIANGLE,NY,9/15/1990 21:00 +Middleville,,DISK,MI,9/15/1990 21:00 +Cloquet,,TRIANGLE,MN,9/15/1990 22:30 +Newburgh,,TRIANGLE,IN,9/20/1990 1:30 +Roseville,,OTHER,MI,9/20/1990 2:00 +Hoquiam,ORANGE,FIREBALL,WA,9/20/1990 21:30 +Level Cross,ORANGE GREEN,SPHERE,NC,9/20/1990 23:00 +Champaign,,EGG,IL,9/22/1990 19:00 +Pateros,,OVAL,WA,10/1/1990 17:00 +San Pedro,,LIGHT,CA,10/1/1990 20:00 +Jamestown,,LIGHT,NY,10/1/1990 22:15 +Fresno,,VARIOUS,CA,10/5/1990 22:00 +Ashburn,,TRIANGLE,GA,10/10/1990 21:00 +Rising Sun,,SPHERE,MD,10/13/1990 16:00 +Reidsville,GREEN,OVAL,GA,10/14/1990 21:00 +Endwell,,FORMATION,NY,10/15/1990 0:15 +North Windham,,FIREBALL,ME,10/15/1990 3:00 +Las Vegas,,LIGHT,NV,10/15/1990 17:00 +Prineville,,LIGHT,OR,10/15/1990 20:00 +Omaha,,CIGAR,NE,10/15/1990 21:00 +Auburn,GREEN,SPHERE,WA,10/15/1990 21:30 +Austin,,OTHER,TX,10/15/1990 23:00 +Flagler Beach,,TRIANGLE,FL,10/17/1990 1:30 +Forest City,,DISK,NC,10/18/1990 1:00 +Almont,,OVAL,MI,10/20/1990 18:30 +Glencoe,,OTHER,OK,10/20/1990 22:50 +Wells,,CYLINDER,NV,10/27/1990 21:00 +Paragould,,DISK,AR,10/29/1990 7:00 +Burlingame State Park,,OTHER,RI,10/29/1990 20:45 +Petit Jean Mountain,,LIGHT,AR,10/31/1990 17:00 +Friendship,,DISK,MD,10/31/1990 18:30 +Traverse City,,LIGHT,MI,11/1/1990 19:00 +Lowell,RED,LIGHT,MA,11/1/1990 21:30 +no data,ORANGE,DISK,MT,11/1/1990 23:00 +Stanton,,LIGHT,DE,11/12/1990 23:30 +New London,,OTHER,NH,11/14/1990 19:30 +Rockledge,,LIGHT,FL,11/15/1990 3:00 +Wylie,,TRIANGLE,TX,11/15/1990 3:00 +Gig Harbor,,FIREBALL,WA,11/15/1990 18:00 +Furnace Creek,RED,,CA,11/15/1990 19:00 +Kilgore,,LIGHT,TX,11/15/1990 22:00 +Hallowell,,FIREBALL,ME,11/17/1990 4:30 +Kenton,,CIGAR,MI,11/17/1990 17:55 +Roanoke,YELLOW,LIGHT,VA,11/20/1990 22:00 +Canal Fulton,,,OH,11/20/1990 22:30 +Naples,,OTHER,FL,11/30/1990 18:30 +Hollsopple,RED,DISK,PA,11/30/1990 19:00 +Canton,,OTHER,TX,12/9/1990 1:15 +Honolulu,,FLASH,HI,12/10/1990 18:00 +Madison,,LIGHT,WI,12/12/1990 9:00 +Ocean City,,OVAL,MD,12/15/1990 0:30 +Blocker,,CIGAR,OK,12/16/1990 2:15 +Great Falls,,LIGHT,MT,12/20/1990 17:00 +Bessmer,,OVAL,MI,12/23/1990 6:15 +Steamboat Springs,BLUE,,CO,12/24/1990 13:30 +Wayzate,,LIGHT,MN,12/24/1990 21:00 +Gonzales,,FIREBALL,LA,12/24/1990 23:00 +Madison,,,WI,12/30/1990 5:00 +Chinook,,,WA,12/31/1990 22:30 +Milford,,,NH,1/1/1991 0:54 +Helena,,TRIANGLE,AR,1/1/1991 21:00 +Canton,,LIGHT,MS,1/10/1991 2:15 +Derry,,DISK,NH,1/14/1991 20:30 +Buena Park,GREEN,SPHERE,CA,1/15/1991 22:00 +Willingboro,,,NJ,1/15/1991 22:00 +Scarsdale,,OTHER,NY,1/20/1991 3:00 +Quartzite,RED,LIGHT,AZ,2/1/1991 20:00 +Washington Township,,OTHER,NJ,2/11/1991 14:00 +Selma,,RECTANGLE,CA,2/14/1991 22:00 +Calistoga,,SPHERE,CA,2/15/1991 15:00 +Lakewood,,CIRCLE,CO,2/15/1991 19:00 +Grand Rapids,,DISK,MI,2/15/1991 22:00 +Rockyface,BLUE,CYLINDER,GA,2/19/1991 18:00 +Minneapolis,,EGG,MN,3/1/1991 4:30 +Ringwood,,CIGAR,NJ,3/1/1991 8:00 +Norwalk,,OVAL,CT,3/1/1991 11:00 +Franklin,,,NJ,3/1/1991 21:00 +Annapolis,,TRIANGLE,MD,3/7/1991 9:00 +Garden Grove,,LIGHT,CA,3/8/1991 19:00 +Boise,,DISK,ID,3/10/1991 3:00 +Chihuahua Mts,,LIGHT,NM,3/19/1991 2:00 +Signal Mountain,,FLASH,TN,3/20/1991 20:00 +Wishek,,SPHERE,ND,3/26/1991 20:30 +Wichita,ORANGE,TRIANGLE,KS,4/1/1991 0:30 +Fort Fisher,,LIGHT,NC,4/1/1991 18:00 +Mahopac,,LIGHT,NY,4/1/1991 19:00 +Limerick,,DISK,ME,4/1/1991 21:00 +Hammond,,TRIANGLE,IN,4/11/1991 13:00 +Monrovia,,DISK,CA,4/12/1991 0:00 +Pagosa Springs,,CIGAR,CO,4/13/1991 23:45 +Scott A.F.B.,,TRIANGLE,IL,4/15/1991 0:00 +Moab,,DIAMOND,UT,4/15/1991 10:00 +Greenwood,,OVAL,SC,4/15/1991 18:15 +Malad,,CIRCLE,ID,4/15/1991 22:00 +Placerville,,LIGHT,CA,4/15/1991 23:00 +New Boston,,OVAL,TX,4/17/1991 20:00 +Sacramento,,VARIOUS,CA,4/27/1991 21:00 +New York City,,CIRCLE,NY,5/1/1991 1:00 +Escondido,BLUE,CIGAR,CA,5/1/1991 3:00 +Garden Grove,,SPHERE,CA,5/1/1991 14:00 +Massapequa,,OTHER,NY,5/1/1991 20:00 +Milledgeville,,DISK,GA,5/1/1991 21:00 +Mayfield,BLUE,TEARDROP,KY,5/2/1991 2:15 +Grants,,LIGHT,NM,5/5/1991 20:30 +Lake Mead,BLUE,LIGHT,AZ,5/8/1991 4:30 +Peru,,DISK,IN,5/10/1991 2:00 +Reading,,LIGHT,PA,5/10/1991 16:00 +Huntington Beach,,OTHER,CA,5/11/1991 14:00 +Phoenix,,CIRCLE,AZ,5/11/1991 22:30 +Pittsburg,,,TX,5/13/1991 23:30 +Central Texas,,LIGHT,TX,5/15/1991 9:41 +Dayton,,OVAL,OH,5/17/1991 5:00 +Atlanta,,LIGHT,GA,5/20/1991 4:00 +Northfield,,FORMATION,MN,5/20/1991 21:00 +Hampstead,,DISK,NH,5/25/1991 21:00 +Lone Pine,GREEN,LIGHT,CA,5/25/1991 21:00 +Las Cruces,BLUE,FIREBALL,NM,5/30/1991 9:10 +Marshall,,DISK,MI,5/31/1991 13:00 +Rio Rancho,,DISK,NM,6/1/1991 0:00 +Yuma,,DISK,AZ,6/1/1991 2:00 +Port Vue,,SPHERE,PA,6/1/1991 4:00 +Port St. Lucie,,OVAL,FL,6/1/1991 10:30 +Roseville,,CIGAR,CA,6/1/1991 12:00 +Whitestone,,DISK,NY,6/1/1991 13:00 +Central Islip,,TRIANGLE,NY,6/1/1991 16:00 +Monument Valley,,DISK,AZ,6/1/1991 17:00 +Atlantic City,RED,CIRCLE,NJ,6/1/1991 18:00 +Las Vegas,,OTHER,NV,6/1/1991 18:00 +Warrenton,,CIRCLE,VA,6/1/1991 18:00 +Yucca Valley,,DISK,CA,6/1/1991 18:00 +Troy,,DISK,MI,6/1/1991 19:00 +Dwarf,RED,TEARDROP,KY,6/1/1991 19:30 +South Saint Paul,,TRIANGLE,MN,6/1/1991 22:30 +Highway 24,ORANGE,TRIANGLE,IL,6/1/1991 23:00 +Canton,BLUE,LIGHT,NY,6/1/1991 23:30 +Flint,,DISK,MI,6/1/1991 23:30 +Dixon,,DISK,IL,6/3/1991 22:00 +Brawley,ORANGE,LIGHT,CA,6/5/1991 17:00 +W. Wendover,,TRIANGLE,NV,6/6/1991 20:30 +College Park,,OTHER,MD,6/6/1991 23:00 +Levittown,,CIRCLE,NY,6/10/1991 23:35 +Gaffnet,,TRIANGLE,SC,6/12/1991 6:00 +Kingston area,RED,TRIANGLE,PA,6/12/1991 6:00 +Mifflinville,,LIGHT,PA,6/12/1991 19:15 +St. Petersburg,,OTHER,FL,6/13/1991 20:00 +Galconda,,,IL,6/15/1991 3:00 +North Lauderdale,BLUE,OTHER,FL,6/15/1991 3:00 +Stone Mountain,,DISK,GA,6/15/1991 3:30 +Trementina,,CYLINDER,NM,6/15/1991 11:00 +Huntington Beach,,CIRCLE,CA,6/15/1991 12:00 +Gainesville,,OTHER,FL,6/15/1991 18:00 +Mayfield,RED,TRIANGLE,KY,6/15/1991 22:00 +Oconomowoc,,LIGHT,WI,6/15/1991 22:00 +Dover,,TRIANGLE,DE,6/20/1991 20:00 +New York City,,OTHER,NY,6/23/1991 22:00 +Okanogan,,DISK,WA,6/25/1991 12:30 +Annandale,,,NJ,6/30/1991 0:00 +Bedford,,TRIANGLE,PA,6/30/1991 0:00 +Paloma,,CHEVRON,CA,6/30/1991 8:00 +Whitefish,,DISK,MT,6/30/1991 14:30 +El Cajon,ORANGE,DIAMOND,CA,6/30/1991 20:00 +Newburgh,,DIAMOND,NY,6/30/1991 22:00 +Hawk Mountain,RED,LIGHT,PA,7/1/1991 0:30 +Cuba,,TRIANGLE,NY,7/1/1991 1:00 +Maunk Chunk,,LIGHT,PA,7/1/1991 2:40 +Mount Vernon,BLUE,DISK,NY,7/1/1991 14:00 +Houston,BLUE,LIGHT,TX,7/1/1991 19:00 +Barberton,,CIRCLE,OH,7/1/1991 22:00 +Mulliken,,DISK,MI,7/1/1991 22:00 +Elk River,,LIGHT,MN,7/1/1991 22:30 +St. David,,TRIANGLE,IL,7/1/1991 23:00 +Suisun City,RED,CIRCLE,CA,7/4/1991 22:00 +Wichita,,DISK,KS,7/4/1991 23:00 +Snohomish,,,WA,7/5/1991 11:11 +Detroit,,LIGHT,OR,7/5/1991 22:30 +Avon,,TRIANGLE,MA,7/7/1991 21:50 +Austin,,TRIANGLE,TX,7/8/1991 19:00 +Derby,,TRIANGLE,NY,7/9/1991 1:00 +Albany,,EGG,OR,7/11/1991 13:00 +Grove Land,,SPHERE,CA,7/13/1991 16:45 +McKinney,,,TX,7/15/1991 2:30 +Pasadena,,DISK,CA,7/15/1991 12:00 +Sumter,,DISK,SC,7/15/1991 12:00 +Houston,,TRIANGLE,TX,7/15/1991 21:00 +Berea,,TRIANGLE,OH,7/15/1991 22:00 +Sidney,,TRIANGLE,MT,7/15/1991 22:00 +Abingdon,,EGG,IL,7/15/1991 23:00 +Sunset,GREEN,LIGHT,TX,7/15/1991 23:00 +Las Vegas,,OTHER,NV,7/18/1991 17:00 +Virginia Beach,RED,TRIANGLE,VA,7/19/1991 21:30 +Crittenden,,TRIANGLE,KY,7/20/1991 4:00 +Shields,,LIGHT,MI,7/20/1991 21:30 +Alamo,,CIRCLE,TX,7/20/1991 23:00 +Tawas City,,OVAL,MI,8/1/1991 1:30 +Commerce,,CIRCLE,TX,8/1/1991 2:00 +Hamden,,TRIANGLE,CT,8/1/1991 2:00 +Lewisburg,,LIGHT,PA,8/1/1991 3:00 +Kapaa,,,HI,8/1/1991 3:30 +Kissimmee,RED,OTHER,FL,8/1/1991 14:00 +Columbus,,TRIANGLE,MS,8/1/1991 19:00 +Toledo,,OTHER,OH,8/1/1991 22:00 +Mt. Hood,,CIRCLE,OR,8/5/1991 10:30 +Romeo,,LIGHT,MI,8/7/1991 21:15 +Selden,,LIGHT,NY,8/10/1991 20:30 +Peru,,EGG,IN,8/15/1991 1:00 +Chowchilla,,DISK,CA,8/15/1991 3:00 +Hagerhill,,CIGAR,KY,8/15/1991 20:30 +Toledo,,LIGHT,OH,8/15/1991 22:00 +Marquette,,EGG,MI,8/15/1991 22:45 +Arizona,,OTHER,AZ,8/16/1991 1:00 +Hanover,,LIGHT,MA,8/16/1991 23:00 +Overland Park,,DISK,KS,8/20/1991 16:00 +Asheville,BLUE,OVAL,NC,8/22/1991 22:30 +New York City,,EGG,NY,8/24/1991 22:00 +Marquette,,,MI,8/25/1991 23:00 +Canandaigua,,SPHERE,NY,8/28/1991 0:30 +Donnelly,,,ID,8/29/1991 3:00 +New Idria,,TRIANGLE,CA,8/29/1991 20:30 +Council Bluffs,,CYLINDER,IA,8/31/1991 20:00 +Abilene,,TRIANGLE,TX,9/1/1991 1:00 +Prescott,,SPHERE,AR,9/1/1991 13:00 +Tulsa,,RECTANGLE,OK,9/1/1991 15:00 +St. Louis,,RECTANGLE,MO,9/1/1991 16:00 +Yakima Indian Reservation,,OTHER,WA,9/1/1991 17:00 +St. Louis,,RECTANGLE,MO,9/1/1991 17:30 +Yakama Indian Reservation,,RECTANGLE,WA,9/1/1991 17:30 +Boston,,CIRCLE,MA,9/1/1991 19:00 +Holloman AFB,ORANGE,OVAL,NM,9/1/1991 20:30 +Grants Pass,,LIGHT,OR,9/1/1991 22:00 +Morgan Hill,,,CA,9/2/1991 21:30 +Groton,,TRIANGLE,NY,9/5/1991 22:00 +Lewiston,,LIGHT,ID,9/10/1991 21:30 +Renton,,FIREBALL,WA,9/12/1991 19:35 +Fayetteville,,LIGHT,NC,9/14/1991 21:00 +Greenbrier,,LIGHT,AR,9/15/1991 18:00 +Show Low,,FORMATION,AZ,9/17/1991 1:00 +Spirit Lake Highway,,TRIANGLE,WA,9/17/1991 22:30 +Olympia,RED,VARIOUS,WA,9/18/1991 22:00 +Westwood,,LIGHT,CA,9/23/1991 19:30 +Clemson,,TRIANGLE,SC,9/25/1991 18:00 +San Marcos,,TRIANGLE,TX,9/27/1991 1:00 +Easley,,OTHER,SC,10/1/1991 14:45 +Wilmington,,CIRCLE,CA,10/1/1991 17:00 +Maryville,,CIGAR,TN,10/1/1991 18:00 +Little Rock,,TRIANGLE,AR,10/1/1991 18:30 +Fort Lee,,,NJ,10/1/1991 19:00 +McKenzie,RED GREEN BLUE,DISK,TN,10/1/1991 20:30 +Las Vegas,,CIGAR,NV,10/1/1991 21:30 +Lafayette,,OTHER,GA,10/1/1991 22:00 +Virginia Dale,,LIGHT,CO,10/7/1991 20:15 +Frisco,,,NC,10/10/1991 22:00 +Harrisburg,,TRIANGLE,PA,10/10/1991 22:00 +Snyder,,DISK,TX,10/15/1991 3:00 +Los Angeles,,CIRCLE,CA,10/28/1991 13:10 +Boulder,,CIRCLE,CO,10/31/1991 13:30 +Willow Grove,,OTHER,PA,10/31/1991 18:34 +Niles,,TRIANGLE,MI,11/1/1991 3:00 +Britton,,TRIANGLE,MI,11/1/1991 10:00 +Bremen,,DISK,GA,11/1/1991 21:00 +Salem,,TRIANGLE,MO,11/10/1991 22:15 +Salem,,TRIANGLE,MO,11/10/1991 22:15 +Brooksville,,,FL,11/12/1991 23:00 +Colorado Springs,BLUE,TRIANGLE,CO,11/15/1991 1:00 +Pensacola,,DISK,FL,11/15/1991 1:00 +Pasadena,,,TX,11/15/1991 19:30 +Colorado Springs,RED BLUE,TRIANGLE,CO,11/18/1991 1:00 +Yeehaw Junction,,TRIANGLE,FL,11/20/1991 15:00 +Fulton,,LIGHT,KY,11/20/1991 21:30 +Salem,,TRIANGLE,MO,11/23/1991 22:00 +Brighton,,CIRCLE,MI,11/27/1991 20:15 +Copley,,LIGHT,OH,12/1/1991 23:00 +Tarzana,RED,SPHERE,CA,12/5/1991 19:30 +Grand Rapids,,OTHER,MI,12/10/1991 21:30 +Etowah,,VARIOUS,TN,12/13/1991 22:00 +Tell City,,CIRCLE,IN,12/14/1991 5:30 +Macon,,DISK,GA,12/20/1991 20:00 +Pleasanton,ORANGE,SPHERE,NE,12/23/1991 19:00 +Grant,,CIRCLE,MI,12/24/1991 23:59 +Vassar,,CIRCLE,MI,12/30/1991 0:00 +Seattle,,OTHER,WA,1/1/1992 0:00 +Windover,,EGG,UT,1/6/1992 20:00 +New Church,,SPHERE,VA,1/15/1992 17:30 +Bricktown,,DISK,NJ,1/25/1992 17:00 +Laffolette,,FIREBALL,TN,2/1/1992 0:00 +Grants Pass,,LIGHT,OR,2/1/1992 20:00 +Makawao,,OTHER,HI,2/2/1992 3:00 +Swarthmore,,TRIANGLE,PA,2/4/1992 2:00 +Rapid City area,,,SD,2/9/1992 21:30 +Shawnee,,CIGAR,OK,2/14/1992 1:30 +West Alexandria,,TRIANGLE,OH,2/15/1992 20:00 +Windsor,,EGG,CA,2/16/1992 2:00 +East Winn,,SPHERE,ME,2/23/1992 19:00 +Sacramento,,CIRCLE,CA,2/27/1992 2:00 +Dallas,,CIRCLE,TX,3/1/1992 1:00 +Lovelock,,LIGHT,NV,3/1/1992 19:00 +New York City,GREEN BLUE,FIREBALL,NY,3/5/1992 0:00 +Florence,,OVAL,AL,3/5/1992 6:45 +Tampa,,DISK,FL,3/15/1992 15:30 +Boonesboro,,CIGAR,MD,3/15/1992 19:00 +Beaumont,BLUE,,TX,3/22/1992 18:30 +,,FORMATION,TX,4/1/1992 2:00 +Fort Irwin,,LIGHT,CA,4/1/1992 2:00 +Ft. Irwin,,LIGHT,CA,4/1/1992 2:00 +Nashua,,OVAL,NH,4/1/1992 3:00 +Nampa,GREEN,SPHERE,ID,4/1/1992 10:00 +Wantagh,,RECTANGLE,NY,4/1/1992 13:00 +San Bruno,,OTHER,CA,4/1/1992 21:30 +Pebble Beach,GREEN,LIGHT,CA,4/2/1992 22:24 +Hartford,,,CT,4/8/1992 21:00 +Ventura,,DISK,CA,4/8/1992 21:00 +Yosemite National Park,,FORMATION,CA,4/10/1992 1:00 +George West,,OVAL,TX,4/12/1992 22:45 +Ely,,LIGHT,MN,4/13/1992 1:00 +Portsmouth,,DISK,VA,4/15/1992 14:00 +Midlothian,,EGG,VA,4/15/1992 19:30 +Landers,,FIREBALL,Ca,4/15/1992 22:00 +Neosho,,,MO,4/15/1992 22:00 +Bowling Green,,DISK,KY,4/16/1992 12:00 +Billings,,DISK,MT,4/17/1992 23:45 +Hamburg,,DISK,NY,4/24/1992 4:30 +Indianola,,,IA,4/30/1992 2:00 +Coupeville,,SPHERE,WA,5/1/1992 3:00 +Mt. Olive,,CIRCLE,MS,5/1/1992 17:00 +Orlando,,,FL,5/5/1992 4:00 +Malibu,,LIGHT,CA,5/5/1992 22:00 +Acton to Chelmsford,,TRIANGLE,MA,5/10/1992 9:45 +Carlsbad,,TRIANGLE,NM,5/10/1992 9:45 +Green Bay,,DISK,WI,5/10/1992 10:00 +Allston,,TRIANGLE,MA,5/10/1992 10:30 +Houston,,TRIANGLE,TX,5/12/1992 1:00 +Swanton,,LIGHT,OH,5/15/1992 3:00 +Willow Grove,,CONE,PA,5/15/1992 15:00 +Columbus,,LIGHT,OH,5/15/1992 21:00 +Montrose,,CIRCLE,PA,5/15/1992 22:00 +Elmer,,OTHER,NJ,5/18/1992 21:00 +San Lorenzo,,CIRCLE,CA,5/20/1992 14:00 +Langehorne,,,PA,5/21/1992 21:30 +Montrose,,OVAL,PA,5/25/1992 14:00 +Clarion,,OVAL,IA,5/25/1992 23:00 +Benton,,DISK,AR,6/1/1992 0:00 +Langhorne,,TRIANGLE,PA,6/1/1992 0:00 +Georgis,,,VT,6/1/1992 1:00 +High Desert,,OTHER,CA,6/1/1992 2:30 +New York City,,CIGAR,NY,6/1/1992 8:15 +Sugar Grove,,OVAL,IL,6/1/1992 15:00 +Dana Point,,SPHERE,CA,6/1/1992 18:00 +Lincoln,,CIGAR,NE,6/1/1992 18:00 +Live Oak,BLUE,TRIANGLE,CA,6/1/1992 19:30 +Austin,,FIREBALL,TX,6/1/1992 21:00 +Broward County,,FIREBALL,FL,6/1/1992 22:00 +Mesa,,VARIOUS,AZ,6/1/1992 22:00 +not shure,,CIRCLE,ME,6/1/1992 23:00 +Rosemead,,OVAL,CA,6/1/1992 23:00 +Yardley,ORANGE,TRIANGLE,PA,6/1/1992 23:30 +Jerseyville,,OTHER,IL,6/4/1992 1:00 +New York City,,LIGHT,NY,6/5/1992 13:00 +Leesburg,,LIGHT,AL,6/6/1992 20:00 +Houston,,CHEVRON,TX,6/10/1992 23:00 +South Conway,,SPHERE,NH,6/14/1992 0:30 +Maryville,,CYLINDER,TN,6/14/1992 0:45 +Tinnie,,FORMATION,NM,6/15/1992 0:30 +Jacksonville,,FORMATION,FL,6/15/1992 1:00 +Quinlan,RED,CIGAR,TX,6/15/1992 1:00 +Scarsdale,,,NY,6/15/1992 2:00 +Chesterfield,,TRIANGLE,IL,6/15/1992 16:30 +Area 51,,OVAL,NV,6/15/1992 18:00 +River Falls,,TRIANGLE,WI,6/15/1992 20:00 +Middleburg,,LIGHT,FL,6/15/1992 20:15 +Fort Worth,,,TX,6/15/1992 20:30 +Bloomfield,YELLOW,CIRCLE,NJ,6/15/1992 21:00 +Gastonia,,SPHERE,NC,6/15/1992 22:00 +Las Vegas,,LIGHT,NV,6/15/1992 22:00 +Montvale,,SPHERE,VA,6/15/1992 22:00 +Crystal City,,LIGHT,MO,6/15/1992 23:00 +Catalina Island,,FLASH,CA,6/19/1992 20:00 +Fruitland,,LIGHT,ID,6/20/1992 0:30 +Fresno,,OVAL,CA,6/20/1992 2:00 +Rocky Mount,RED GREEN BLUE,CIRCLE,VA,6/20/1992 21:00 +Jonesville,,RECTANGLE,FL,6/20/1992 22:00 +Mt.Vernon,,EGG,IL,6/21/1992 5:00 +Conesus,,,NY,6/21/1992 21:00 +Laramie,,LIGHT,WY,6/24/1992 22:00 +Big Bear Lake area,,VARIOUS,CA,6/25/1992 0:00 +Chapin,,OTHER,SC,6/25/1992 12:30 +Granite Shoals,,DISK,TX,6/25/1992 18:30 +Jackson,,CYLINDER,MI,6/28/1992 14:00 +Cortlandt Manor,,CIRCLE,NY,6/30/1992 0:00 +New Britain,GREEN,RECTANGLE,CT,6/30/1992 2:00 +Millinocket,RED,TRIANGLE,ME,6/30/1992 20:00 +Cape Canaveral,,OTHER,FL,6/30/1992 20:30 +Las Vegas,,SPHERE,NV,6/30/1992 21:00 +Willsboro,,FIREBALL,NY,7/1/1992 1:00 +Andover,,CIGAR,KS,7/1/1992 15:00 +Bangor,,FORMATION,ME,7/1/1992 18:00 +Summerville,,TRIANGLE,SC,7/1/1992 20:00 +Nags Head,,CIRCLE,NC,7/1/1992 21:00 +Garland,,TRIANGLE,TX,7/1/1992 22:00 +Pembroke Pines,ORANGE,OVAL,FL,7/3/1992 19:00 +Windham,,SPHERE,NH,7/4/1992 20:00 +Seatac,,,WA,7/4/1992 23:00 +Jerseyville,,FLASH,IL,7/5/1992 3:00 +Barronvale,,FORMATION,PA,7/5/1992 23:59 +Bowling Green,,OTHER,KY,7/7/1992 0:00 +Covington,,LIGHT,WA,7/7/1992 1:00 +Longview,,CIRCLE,WA,7/8/1992 22:00 +Swan Falls,,FORMATION,ID,7/10/1992 1:00 +Cincinnati,,SPHERE,OH,7/10/1992 18:00 +Houston,,TRIANGLE,TX,7/10/1992 22:00 +Tonasket,,,WA,7/10/1992 22:00 +Modesto,,CIRCLE,CA,7/10/1992 23:00 +Enid,,LIGHT,OK,7/15/1992 0:00 +Duluth,ORANGE,OTHER,MN,7/15/1992 1:30 +Los Angeles,,CHEVRON,CA,7/15/1992 23:00 +Duarte,,DISK,CA,7/18/1992 5:00 +Morris,,FORMATION,IL,7/19/1992 0:34 +Yosemite,,LIGHT,CA,7/20/1992 0:00 +Fort Carson,GREEN,,CO,7/20/1992 2:30 +Cedartown,,CIRCLE,GA,7/22/1992 17:00 +East Corinth,,OVAL,ME,7/26/1992 23:30 +Sioux Falls,,LIGHT,SD,7/28/1992 2:00 +Gil Community,,DIAMOND,TX,7/30/1992 6:00 +Takoma Park,,DISK,MD,7/30/1992 22:00 +New York City,,OVAL,NY,8/1/1992 0:00 +Belgrade,ORANGE,TRIANGLE,MT,8/1/1992 12:00 +Waukesha,,OTHER,WI,8/1/1992 16:00 +Union,,FIREBALL,WV,8/1/1992 17:00 +Keweenaw Peninsual,,SPHERE,MI,8/1/1992 22:30 +Bellevue,,CIRCLE,WA,8/1/1992 23:00 +Fort Collins,RED,LIGHT,CO,8/4/1992 21:00 +Jerseyville,ORANGE,LIGHT,IL,8/5/1992 23:00 +Wilmington,,TRIANGLE,NY,8/5/1992 23:00 +Kamiah,,,ID,8/6/1992 1:00 +Davis,,LIGHT,CA,8/10/1992 2:00 +Green Bay,,LIGHT,WI,8/10/1992 20:00 +Altivista,,TRIANGLE,VA,8/10/1992 23:00 +Scofield Reservoir,,VARIOUS,UT,8/11/1992 2:40 +Sugar Valley,,DISK,GA,8/12/1992 5:00 +Calistoga,,TRIANGLE,CA,8/14/1992 20:00 +Elk Grove,GREEN,OTHER,CA,8/15/1992 0:00 +New Hope,,TRIANGLE,PA,8/15/1992 22:00 +Interlachen,RED,OTHER,FL,8/15/1992 22:30 +Norwood,,CIGAR,PA,8/15/1992 22:30 +Limerick,,CIRCLE,ME,8/15/1992 23:00 +Santa Rosa,,,CA,8/16/1992 3:30 +Tigard,,,OR,8/16/1992 22:30 +Columbus,,DISK,GA,8/18/1992 2:00 +Wagarville,YELLOW,FIREBALL,AL,8/18/1992 17:00 +Louisville,,,KY,8/19/1992 0:00 +Kohala Coast,,LIGHT,HI,8/24/1992 20:00 +Pinecrest,,DISK,FL,8/24/1992 23:00 +Algonac,,LIGHT,MI,8/29/1992 18:00 +Lakewood,,DISK,NJ,8/30/1992 23:59 +Port Elizabeth,,RECTANGLE,NJ,9/1/1992 20:00 +Streamwood,,TRIANGLE,IL,9/1/1992 21:00 +Noblesville,,TRIANGLE,IN,9/1/1992 22:00 +Wilmington,,DISK,NC,9/3/1992 19:00 +Cougar,YELLOW GREEN BLUE,,WA,9/5/1992 0:00 +Kamiah,,CIRCLE,ID,9/5/1992 1:30 +Hat Point,GREEN,FIREBALL,ID,9/5/1992 23:00 +Kamiah,,CIRCLE,ID,9/6/1992 1:30 +Hancock,,TRIANGLE,MD,9/12/1992 19:00 +New Idria,,VARIOUS,CA,9/12/1992 21:45 +New York City,,TEARDROP,NY,9/12/1992 22:15 +Broward County,,CIRCLE,FL,9/15/1992 0:00 +Duchesne,GREEN,LIGHT,UT,9/21/1992 22:00 +Wetumpka,,TRIANGLE,AL,9/23/1992 2:34 +Chino,,DISK,CA,9/25/1992 19:00 +Golden Valley,,FLASH,MN,9/25/1992 21:30 +Clovis,RED ORANGE YELLOW,,CA,9/27/1992 19:00 +Fair Oaks,,DISK,CA,9/30/1992 20:00 +Echo Summit,,SPHERE,CA,10/1/1992 1:30 +Dublin,,TRIANGLE,GA,10/1/1992 17:30 +Springfield,,EGG,MO,10/1/1992 18:00 +Longview,,,TX,10/1/1992 19:00 +Henderson,,CROSS,NC,10/1/1992 22:00 +Mexi-Cali,,SPHERE,CA,10/2/1992 17:00 +Raleigh-Durham,,CHEVRON,NC,10/3/1992 13:35 +Palm Springs,BLUE,TRIANGLE,AZ,10/5/1992 22:50 +West Chester,,OVAL,OH,10/8/1992 18:00 +Seminole,,RECTANGLE,TX,10/9/1992 8:00 +Eastern United States,,OTHER,WV,10/9/1992 19:49 +Panama City,,FORMATION,FL,10/10/1992 17:00 +Stafford,,,TX,10/10/1992 18:00 +Seymour,,CIGAR,TN,10/10/1992 20:15 +Weatherford,,,TX,10/10/1992 22:00 +Albuquerque,,SPHERE,NM,10/11/1992 10:00 +Death Valley,,TRIANGLE,CA,10/13/1992 17:20 +Wilsonville,,LIGHT,OR,10/15/1992 6:50 +Gardnerville,,LIGHT,NV,10/15/1992 10:15 +Lubbock,,CIGAR,TX,10/15/1992 18:00 +Miami,,LIGHT,FL,10/15/1992 21:00 +Cincinnati,,LIGHT,OH,10/15/1992 22:00 +Pittsburgh,,DISK,PA,10/16/1992 23:00 +New York City,,DISK,NY,10/19/1992 14:00 +Oak Creek,,,CO,10/22/1992 21:30 +Orange Park,,CIRCLE,FL,10/23/1992 9:00 +Medway,,DISK,OH,10/23/1992 18:00 +Memphis,,FIREBALL,TN,10/29/1992 9:00 +Osterville,,RECTANGLE,MA,10/31/1992 19:00 +Connellsville,,,PA,10/31/1992 21:30 +Jackson,,FIREBALL,MI,10/31/1992 22:00 +Jerseyville,,DISK,IL,11/6/1992 15:30 +Dekalb,,RECTANGLE,TX,11/10/1992 23:30 +Walla Walla,,TRIANGLE,WA,11/13/1992 19:00 +Sage,,OVAL,CA,11/15/1992 10:00 +San Jose,ORANGE,LIGHT,IL,11/15/1992 18:30 +Fish Creek,RED,TRIANGLE,WI,11/15/1992 20:00 +Two Rivers,,TRIANGLE,WI,11/15/1992 22:15 +Atlantic Ocean,,DISK,MA,11/15/1992 23:00 +New York City,,FORMATION,NY,11/18/1992 19:00 +Little Tensas,,,LA,11/20/1992 17:00 +Deming,,CIGAR,NM,11/22/1992 0:00 +Yaphank,,FIREBALL,NY,11/24/1992 0:00 +Yaphank,,OTHER,NY,11/24/1992 0:00 +Santa Cruz,,LIGHT,CA,11/25/1992 4:30 +Columbus,,DISK,OH,11/27/1992 19:50 +Los Angeles,GREEN,OTHER,CA,11/28/1992 22:30 +Exeter,,DIAMOND,NH,12/8/1992 21:00 +Lenox,RED,DISK,MA,12/15/1992 5:55 +Fairview,,DISK,VA,12/15/1992 20:00 +Elkland,,OVAL,MO,12/15/1992 20:45 +Cincinnati,,TRIANGLE,OH,12/24/1992 20:00 +West Monroe,,DISK,LA,12/24/1992 22:00 +Bristol,,OTHER,VA,12/31/1992 23:00 +Reedborough,,,VT,1/1/1993 0:00 +Huntington,,TRIANGLE,NY,1/1/1993 20:00 +Ithaca,,OTHER,NY,1/10/1993 0:30 +Brookfield,,TRIANGLE,WI,1/12/1993 19:45 +So. Cal.,RED,,CA,1/14/1993 3:55 +Ridge,,,NY,1/14/1993 4:00 +Canadian,RED,TRIANGLE,TX,1/15/1993 22:30 +Battle Creek,,LIGHT,MI,1/15/1993 23:00 +Gainesville,ORANGE,LIGHT,FL,1/20/1993 18:50 +New Hope,,TRIANGLE,AL,1/20/1993 21:00 +Oliverea,,LIGHT,NY,1/20/1993 21:00 +Manteca,,TRIANGLE,CA,1/26/1993 0:00 +Randolph,BLUE,FLASH,NJ,2/1/1993 3:30 +Atlanta,,LIGHT,GA,2/3/1993 18:15 +Palestine,,OTHER,TX,2/4/1993 20:00 +Meadowdale,,SPHERE,WA,2/6/1993 21:55 +Lufkin,,DELTA,TX,2/9/1993 19:00 +Warner Robins,,TRIANGLE,GA,2/9/1993 19:30 +Mississippi,,SPHERE,MS,2/15/1993 0:00 +Zimmerman,RED,LIGHT,MN,2/15/1993 1:30 +Ironton,,SPHERE,OH,2/15/1993 20:15 +Paducah,,,KY,2/23/1993 10:00 +Chico,,TRIANGLE,CA,2/25/1993 23:30 +New York City,,LIGHT,NY,2/26/1993 5:00 +Ganado,,OTHER,AZ,3/1/1993 5:30 +Mesa,,OTHER,AZ,3/1/1993 12:00 +Prescott,,DIAMOND,AZ,3/1/1993 12:00 +Chattanooga,,SPHERE,TN,3/1/1993 13:00 +Greenville,,TRIANGLE,SC,3/1/1993 21:30 +Pittsburgh,,TRIANGLE,PA,3/6/1993 19:00 +Killeen,,,TX,3/11/1993 21:00 +Irving,,OTHER,TX,3/15/1993 16:00 +Round Rock,,LIGHT,TX,3/15/1993 18:30 +Chatsworth,RED,TRIANGLE,CA,3/15/1993 20:00 +Lee's Summit,,LIGHT,MO,3/15/1993 20:30 +Los Alamos,,DISK,NM,3/19/1993 15:25 +Amarillo,,LIGHT,TX,3/20/1993 2:00 +Joshua Tree National Monument,,FIREBALL,CA,3/20/1993 20:00 +Gastonia,,FORMATION,NC,4/1/1993 6:00 +Milwaukee,,TRIANGLE,WI,4/4/1993 19:00 +Three Rivers,,SPHERE,TX,4/10/1993 13:00 +Omaha,RED,EGG,NE,4/10/1993 17:30 +San Antonio,,DISK,TX,4/13/1993 18:30 +Indianapolis,,CIRCLE,IN,4/13/1993 22:30 +Pagosa Springs,,CIGAR,CO,4/13/1993 23:45 +Creston,,SPHERE,NC,4/14/1993 21:00 +Virginia Beach,BLUE,CIRCLE,VA,4/15/1993 3:00 +Huber Heights,,DISK,OH,4/16/1993 10:45 +West of Rye,,TRIANGLE,CO,4/17/1993 18:00 +Alamogordo,,LIGHT,NM,4/21/1993 19:30 +Magnolia,,CIGAR,MS,5/1/1993 18:00 +Sky Line Drive,,LIGHT,VA,5/1/1993 22:00 +Wenatchee,,TRIANGLE,WA,5/1/1993 22:30 +Vancouver,,,WA,5/2/1993 12:00 +Geneva,,CIGAR,OH,5/5/1993 9:00 +Sedona,RED,FORMATION,AZ,5/7/1993 20:00 +Glendale,,LIGHT,CA,5/9/1993 0:00 +Reno,,CIGAR,NV,5/9/1993 0:00 +Northridge,,LIGHT,CA,5/9/1993 20:00 +Laramie,,FORMATION,WY,5/10/1993 13:00 +Phoenix,,SPHERE,AZ,5/10/1993 22:00 +Woodinville,,,WA,5/14/1993 13:00 +Florence,,FIREBALL,MS,5/15/1993 2:30 +Branford,RED,DIAMOND,CT,5/15/1993 17:30 +Whittier,RED,LIGHT,CA,5/15/1993 17:30 +Barbers Point NAS,,FIREBALL,HI,5/15/1993 21:00 +Northfield,,OVAL,MN,5/17/1993 22:30 +Philadelphia,,LIGHT,PA,5/18/1993 1:00 +Box Elder,,TRIANGLE,MT,5/18/1993 3:00 +Sacramento,,TRIANGLE,CA,5/18/1993 23:00 +Topeka,,DISK,KS,5/22/1993 20:50 +Tucson,,CIRCLE,AZ,5/22/1993 21:00 +La Verne,,TEARDROP,CO,5/23/1993 21:30 +Buffalo,,RECTANGLE,NY,5/24/1993 14:30 +Liberty,,CIGAR,KY,5/27/1993 23:30 +Walla Walla,,FIREBALL,WA,5/29/1993 0:00 +Phoenix,,OVAL,AZ,6/1/1993 0:00 +Salt Lake City,,EGG,UT,6/1/1993 0:00 +Wolcott,,,NY,6/1/1993 0:00 +Bella Vista,,OTHER,CA,6/1/1993 1:00 +San Juan,,TRIANGLE,TX,6/1/1993 3:00 +Clinton,,OTHER,ME,6/1/1993 5:30 +Crofton,ORANGE,OTHER,MD,6/1/1993 6:30 +Sacramento,,OTHER,CA,6/1/1993 9:00 +Everglades,,FIREBALL,FL,6/1/1993 13:00 +Rogers,,CIGAR,AR,6/1/1993 13:00 +Pittsburgh,,SPHERE,PA,6/1/1993 14:00 +Gig Harbor,,DISK,WA,6/1/1993 16:00 +Newburgh,,DISK,NY,6/1/1993 17:00 +Colorado Springs,,CIGAR,CO,6/1/1993 17:30 +Mustang,,CYLINDER,OK,6/1/1993 19:00 +Camp Pendelton,,OVAL,CA,6/1/1993 20:00 +Oceanside,,OTHER,CA,6/1/1993 20:00 +Salton Sea,,VARIOUS,CA,6/1/1993 20:00 +Jamestown,,OTHER,NC,6/1/1993 21:00 +San Jose,ORANGE,CIRCLE,CA,6/1/1993 21:00 +Billings,,LIGHT,MT,6/1/1993 22:00 +Flagstaff,,,AZ,6/1/1993 22:00 +Oconomowoc,,CROSS,WI,6/1/1993 22:00 +Seymour,,DIAMOND,IN,6/1/1993 22:00 +Clarksdale,,OVAL,MS,6/1/1993 23:00 +Cumberland,,OVAL,TN,6/1/1993 23:00 +McClure,GREEN,FORMATION,OH,6/1/1993 23:00 +"West Coast, alt. apx 30' k, northerly flight",,OTHER,CA,6/3/1993 6:00 +Madison Heights,,CYLINDER,MI,6/4/1993 21:10 +Mammoth Hot Springs,YELLOW,CHEVRON,WY,6/4/1993 21:55 +Economy Borough,,TRIANGLE,PA,6/5/1993 0:15 +Worcester,,TEARDROP,MA,6/8/1993 16:09 +Lusby,,OTHER,MD,6/11/1993 1:00 +Kihei,,OVAL,HI,6/11/1993 22:00 +Sioux Falls,,FIREBALL,SD,6/13/1993 15:20 +Lafayette,,TEARDROP,LA,6/13/1993 21:45 +Traverse City,,TRIANGLE,MI,6/14/1993 20:00 +Des Moines,,RECTANGLE,IA,6/15/1993 0:00 +Fort Knox,,,KY,6/15/1993 0:00 +Joplin,,,MO,6/15/1993 0:00 +Rockville,,TEARDROP,MD,6/15/1993 0:00 +Anderson,BLUE,OTHER,CA,6/15/1993 1:30 +Milton,RED GREEN BLUE,CIRCLE,WA,6/15/1993 2:00 +Tracy,,LIGHT,CA,6/15/1993 2:00 +Grand Rapids,,CIGAR,MI,6/15/1993 2:30 +Memphis,,FIREBALL,TN,6/15/1993 3:00 +Kirkland,,CIRCLE,WA,6/15/1993 4:00 +Stony Brook,,CIRCLE,NY,6/15/1993 12:00 +Williamsburg,,TRIANGLE,MO,6/15/1993 12:00 +Newport News,,CIRCLE,VA,6/15/1993 13:30 +Beechnut,,TRIANGLE,TX,6/15/1993 19:00 +Ashville,,LIGHT,OH,6/15/1993 19:30 +Forest City,,OTHER,NC,6/15/1993 20:00 +Salem,,TRIANGLE,AL,6/15/1993 21:00 +Stonington,,LIGHT,CT,6/15/1993 22:00 +Trussville,,LIGHT,AL,6/15/1993 22:00 +Salisbury,,TRIANGLE,PA,6/15/1993 22:30 +NAS Whidby Island,,LIGHT,WA,6/15/1993 23:40 +Laramie,,,WY,6/17/1993 15:00 +Block Island,,OTHER,RI,6/18/1993 20:45 +Santa Cruz County,,OTHER,CA,6/20/1993 0:00 +Weymouth,,TRIANGLE,MA,6/20/1993 20:00 +Dover,GREEN,TEARDROP,DE,6/21/1993 0:00 +Colonial Beach,,CYLINDER,VA,6/22/1993 14:00 +Madison Heights,,CYLINDER,MI,6/25/1993 20:00 +Sierra,,OTHER,CA,6/25/1993 20:00 +Holy Cross Wilderness Area,,LIGHT,CO,6/26/1993 2:30 +Sun City,,LIGHT,CA,6/30/1993 1:30 +Matlock,,SPHERE,WA,6/30/1993 8:00 +Rochester,,VARIOUS,NY,6/30/1993 10:00 +Massachusets Turnpike,BLUE,OTHER,MA,6/30/1993 15:00 +no data,,TRIANGLE,NY,6/30/1993 18:00 +Milan,,TRIANGLE,OH,6/30/1993 19:00 +New York City,,OTHER,NY,6/30/1993 20:00 +Racine,,LIGHT,OH,6/30/1993 21:00 +Richalnds,,LIGHT,VA,6/30/1993 21:00 +Efland,,TRIANGLE,NC,7/1/1993 0:00 +Lynnwood,RED,LIGHT,WA,7/1/1993 1:00 +Hughson,,RECTANGLE,CA,7/1/1993 1:30 +Katy,,SPHERE,TX,7/1/1993 3:30 +Cottonwood Lakes Trail,,CIRCLE,CA,7/1/1993 12:00 +Houston,ORANGE,DISK,TX,7/1/1993 15:00 +Cottonwood Lakes Trail,,DIAMOND,CA,7/1/1993 22:00 +Oakdale,,TRIANGLE,CA,7/1/1993 22:00 +Oklahoma City,,TRIANGLE,OK,7/1/1993 22:00 +Manhatten Beach,RED,LIGHT,CA,7/3/1993 0:00 +New York City,,OTHER,NY,7/4/1993 3:00 +Gold Bar,,CIRCLE,WA,7/4/1993 21:30 +Tooele City,GREEN,SPHERE,UT,7/4/1993 23:45 +Papillion,,RECTANGLE,NE,7/5/1993 20:00 +Gorman,,SPHERE,CA,7/6/1993 0:26 +Paragon,,LIGHT,IN,7/7/1993 0:00 +Irvine,,DISK,CA,7/7/1993 23:00 +Marion,,CYLINDER,IN,7/7/1993 23:00 +Bowling Green,,CHEVRON,KY,7/9/1993 19:23 +New Egypt,GREEN,DISK,NJ,7/10/1993 2:00 +New Egypt,GREEN,CIRCLE,NJ,7/10/1993 2:15 +Ballinger,,TRIANGLE,TX,7/10/1993 23:00 +Little Fork,,OTHER,MN,7/10/1993 23:45 +Mishawaka,,CIRCLE,IN,7/12/1993 22:00 +Niagara Falls,,FORMATION,NY,7/12/1993 23:30 +Topeka,,TRIANGLE,KS,7/13/1993 21:00 +Cambridge,,,OH,7/15/1993 0:00 +Elkton,,LIGHT,MD,7/15/1993 17:30 +Minneapolis,,TRIANGLE,MN,7/15/1993 19:00 +Hilo,,FORMATION,HI,7/15/1993 21:00 +Magnolia,,CIRCLE,DE,7/15/1993 21:15 +Moscow,,OTHER,ID,7/15/1993 22:00 +Grand Coulee,RED,LIGHT,WA,7/15/1993 23:00 +Liberal,,OTHER,KS,7/18/1993 6:30 +S. Burlington,,TRIANGLE,VT,7/20/1993 18:00 +Maltby,RED GREEN,DIAMOND,WA,7/20/1993 21:30 +Honolulu,,,HI,7/20/1993 23:30 +Xenia,,LIGHT,OH,7/21/1993 23:30 +Wolcott,,CIGAR,CT,8/1/1993 15:00 +Warrenton,,CIRCLE,VA,8/1/1993 17:00 +Tillamoo,,LIGHT,OR,8/1/1993 21:30 +Newell,,CIRCLE,AR,8/4/1993 0:00 +LaHaina,,CHEVRON,HI,8/4/1993 20:30 +Marion,,OTHER,VA,8/8/1993 18:00 +Beloit,,TRIANGLE,WI,8/9/1993 2:45 +Chelmsford,,TRIANGLE,MA,8/9/1993 23:00 +Westminster,,TRIANGLE,CO,8/9/1993 23:50 +Bellevue,,SPHERE,WA,8/10/1993 20:30 +Frankfort,,DISK,NY,8/10/1993 21:00 +Julian,,OTHER,CA,8/12/1993 1:00 +Pembroke Pines,GREEN,SPHERE,FL,8/12/1993 2:00 +Fort Lauderdale,GREEN,SPHERE,FL,8/12/1993 4:36 +Jacksonville,BLUE,SPHERE,FL,8/12/1993 21:00 +Schuylerville,,SPHERE,NY,8/12/1993 22:00 +Lake of the Woods,,LIGHT,OR,8/12/1993 22:30 +Coatsville,,CIRCLE,IN,8/15/1993 0:00 +Bristow,,TRIANGLE,IN,8/15/1993 0:30 +Greenville,,CIRCLE,CA,8/15/1993 2:00 +Cloverdale,,FLASH,CA,8/15/1993 3:00 +Palm Desert,,TRIANGLE,CA,8/15/1993 4:00 +St. Augustine,,TRIANGLE,FL,8/15/1993 4:00 +Randle,,OTHER,WA,8/15/1993 16:00 +Menifee,RED BLUE,DISK,CA,8/15/1993 22:00 +Fort Collins,,,CO,8/19/1993 21:10 +Goshen,,TRIANGLE,OH,8/20/1993 2:00 +Bowling Green,,DISK,KY,8/20/1993 12:30 +Kennewick,,CIGAR,WA,8/20/1993 19:00 +Milwaukee,,OTHER,WI,8/20/1993 20:00 +Muncie,,TRIANGLE,IN,8/20/1993 22:00 +Selma,YELLOW,OVAL,NC,8/20/1993 23:15 +Lancaster,,TRIANGLE,CA,8/20/1993 23:30 +Biddeford,,DIAMOND,ME,8/21/1993 9:30 +Laramie,,VARIOUS,WY,8/23/1993 19:56 +Wilmer,,LIGHT,TX,8/25/1993 1:00 +Garner,,OTHER,NC,8/25/1993 2:00 +Lackawanna,,TRIANGLE,NY,9/1/1993 21:00 +Bethel,,LIGHT,ME,9/1/1993 22:00 +Burnt Ranch,,DISK,CA,9/3/1993 15:00 +Seattle,,TRIANGLE,WA,9/6/1993 0:30 +Phoenix,,RECTANGLE,AZ,9/10/1993 20:30 +Chicopee,,TRIANGLE,MA,9/10/1993 22:30 +Milan,,TRIANGLE,OH,9/11/1993 21:11 +Yuma,,TRIANGLE,AZ,9/13/1993 21:30 +Toledo,ORANGE BLUE,OVAL,OH,9/14/1993 21:00 +Fremont,RED GREEN,LIGHT,IN,9/15/1993 0:00 +North Bend,,TRIANGLE,WA,9/15/1993 0:00 +Long Beach,,CHEVRON,MS,9/15/1993 2:00 +Manchester,,DISK,NY,9/15/1993 3:00 +Reno,,FORMATION,NV,9/15/1993 16:00 +Bishop,,SPHERE,CA,9/15/1993 18:00 +Racine,,LIGHT,OH,9/15/1993 20:30 +San Francisco,BLUE,CIRCLE,CA,9/15/1993 21:00 +Fort Worth,,LIGHT,TX,9/15/1993 22:00 +Trumbull,,CIRCLE,CT,9/23/1993 19:00 +Tempe,,TRIANGLE,AZ,10/1/1993 2:00 +Delaware,,LIGHT,OH,10/1/1993 20:00 +Pryor,,LIGHT,MT,10/1/1993 20:00 +,,CIRCLE,MI,10/4/1993 17:30 +Peoria,,LIGHT,IL,10/10/1993 22:00 +Carthage,RED GREEN,OTHER,TN,10/10/1993 23:00 +Butte,,SPHERE,MT,10/15/1993 0:00 +Sulphur,,OVAL,LA,10/15/1993 15:30 +Garden Grove,,RECTANGLE,CA,10/15/1993 18:00 +Portsmouth,,LIGHT,NH,10/15/1993 18:00 +Owensboro,,SPHERE,KY,10/15/1993 20:00 +Moss Bluff,,DISK,LA,10/15/1993 21:00 +Woodward,,DISK,OK,10/16/1993 20:30 +Lihue,,DISK,HI,10/17/1993 18:00 +Wanakah,,TRIANGLE,NY,10/27/1993 21:38 +Bedford--Mt. Kisco,RED,TRIANGLE,NY,10/29/1993 21:30 +Eden,RED BLUE,CIRCLE,NY,10/30/1993 23:00 +Cape Coral,,TRIANGLE,FL,10/31/1993 20:00 +Sacramento,,TRIANGLE,CA,11/1/1993 23:00 +Trio,,CIRCLE,SC,11/1/1993 23:30 +Albuquerque,,CIGAR,NM,11/1/1993 23:45 +Evansville,,TRIANGLE,IN,11/2/1993 2:00 +Albuquerque,,TRIANGLE,NM,11/11/1993 22:00 +Rome City,,EGG,IN,11/15/1993 12:00 +Encinal,,RECTANGLE,TX,11/15/1993 14:30 +Gordon,RED,TRIANGLE,NE,11/15/1993 19:00 +Middleborough,,LIGHT,MA,11/17/1993 5:10 +Elkton,,TRIANGLE,MD,11/20/1993 3:30 +Fairbanks,BLUE,CIGAR,AK,11/23/1993 11:24 +Baton Rouge,ORANGE,TRIANGLE,LA,11/23/1993 23:30 +Harlowton,,FORMATION,MT,11/24/1993 19:00 +Mesquite,,OTHER,NV,11/25/1993 15:00 +Windham,,OTHER,NH,12/1/1993 2:30 +Arlington,,OVAL,TX,12/1/1993 14:00 +Poughkeepsie,,,NY,12/5/1993 1:00 +Morganton,,CIRCLE,NC,12/10/1993 19:30 +Lake Park,,OTHER,FL,12/14/1993 1:30 +Green Bay,,DISK,WI,12/15/1993 2:00 +Laguna Beach,,OVAL,CA,12/15/1993 17:00 +Warren,,TRIANGLE,PA,12/15/1993 20:00 +Valencia,,OVAL,CA,12/18/1993 13:00 +Ottumwa,,FORMATION,IA,12/19/1993 18:00 +Williamsport,,TRIANGLE,PA,12/20/1993 19:00 +Castaic Junction,,OVAL,CA,12/23/1993 12:00 +Bellflower,,LIGHT,MO,12/24/1993 21:00 +Topton,,,MS,12/28/1993 1:00 +El Segundo,,OTHER,CA,1/1/1994 0:00 +Honolulu,,LIGHT,HI,1/1/1994 0:00 +Interstate 10,GREEN,TRIANGLE,FL,1/1/1994 1:00 +Fort Lauderdale,,,FL,1/1/1994 3:00 +Ringwood,,,NJ,1/1/1994 18:00 +Redding,,TRIANGLE,CA,1/1/1994 20:00 +Albuquerque,,TRIANGLE,NM,1/3/1994 23:30 +Susquehanna,RED BLUE,TRIANGLE,PA,1/4/1994 23:00 +Cedar Key,,CHEVRON,FL,1/12/1994 18:00 +Midvale,,DISK,UT,1/14/1994 7:10 +Moorpark,,SPHERE,CA,1/14/1994 18:00 +Dillon,,SPHERE,CO,1/15/1994 0:00 +Acton,,,CA,1/15/1994 23:00 +Los Angeles,,FIREBALL,CA,1/17/1994 5:00 +Milford,,FLASH,IA,1/18/1994 19:00 +Summit,,DISK,SD,1/19/1994 19:00 +Los Angeles,,DISK,CA,1/24/1994 22:00 +Illinois,,LIGHT,IL,2/1/1994 0:00 +Savoonga,,LIGHT,AK,2/1/1994 22:16 +Lewiston,,TRIANGLE,ID,2/10/1994 23:55 +Salyersville,,TRIANGLE,KY,2/14/1994 17:30 +Kern County,,DISK,CA,2/15/1994 1:00 +New Mexico,,LIGHT,NM,2/21/1994 19:00 +Hendersonville,,VARIOUS,TN,2/22/1994 2:00 +Canandaigua,RED,RECTANGLE,NY,2/27/1994 0:15 +Menifee,,,CA,3/1/1994 1:00 +Lindsborg,,TRIANGLE,KS,3/2/1994 23:15 +Albany,,RECTANGLE,NY,3/3/1994 0:00 +Moab,,TRIANGLE,UT,3/3/1994 23:00 +Seattle,,FIREBALL,WA,3/8/1994 19:15 +Holland,,FORMATION,MI,3/8/1994 22:15 +Canton,,,MI,3/9/1994 21:00 +Whittier,,CIRCLE,CA,3/10/1994 18:00 +Wyoming,,DISK,MI,3/10/1994 18:00 +Olympia,YELLOW,OVAL,WA,3/10/1994 21:00 +Mesa,,TRIANGLE,AZ,3/10/1994 22:30 +Clovis,,LIGHT,CA,3/15/1994 0:30 +Avenal,,,CA,3/15/1994 1:00 +Columbus City,,CYLINDER,AL,3/15/1994 14:00 +Asheville,,DISK,NC,3/15/1994 21:00 +Flint,,TRIANGLE,MI,3/18/1994 5:10 +Sturgis,,DISK,MS,3/24/1994 23:30 +Oakland,,LIGHT,CA,3/28/1994 17:00 +Megargel,,,TX,4/1/1994 15:00 +Faribault,GREEN,FIREBALL,MN,4/1/1994 20:00 +Indiana,,DISK,PA,4/1/1994 21:24 +Cortlandt Manor,RED GREEN,DISK,NY,4/1/1994 22:00 +Taft,,LIGHT,CA,4/1/1994 22:50 +Lake Sonoma,,OTHER,CA,4/3/1994 23:30 +Hollywood,,CIRCLE,FL,4/4/1994 17:00 +Hollywood,ORANGE,CIRCLE,FL,4/4/1994 17:00 +Von Ormy,,OTHER,TX,4/4/1994 21:14 +Davis,,CIGAR,CA,4/6/1994 20:40 +Grosse Pointe,,LIGHT,MI,4/6/1994 22:00 +Jackson,,LIGHT,MI,4/7/1994 10:00 +Brookfield,,LIGHT,CT,4/7/1994 21:00 +Grosse Point,,LIGHT,MI,4/9/1994 21:00 +Willow Springs,,TRIANGLE,MO,4/10/1994 18:30 +Harrisonburg,,DISK,LA,4/11/1994 21:00 +Louisville,,TRIANGLE,KY,4/11/1994 23:00 +Summit Valley,GREEN,DISK,CA,4/14/1994 8:30 +Elkton,ORANGE YELLOW,OTHER,MD,4/15/1994 21:00 +Brooksville,,CHEVRON,FL,4/15/1994 22:00 +Prescott,,RECTANGLE,AZ,4/15/1994 23:00 +Mason City,,,IA,4/16/1994 1:30 +Virginia Beach,,DISK,VA,4/19/1994 22:00 +Albuquerque,ORANGE,SPHERE,NM,4/24/1994 0:01 +Albuquerque,,SPHERE,NM,4/25/1994 2:00 +Pascagoula,,FLASH,MS,4/25/1994 21:00 +Oswego,RED,TRIANGLE,NY,4/25/1994 22:00 +Capulin Mountain,,SPHERE,NM,4/30/1994 23:55 +Glencoe,,SPHERE,KY,5/1/1994 6:30 +Crystal Falls,,TRIANGLE,MI,5/1/1994 18:00 +Ocotillo Wells,,FIREBALL,CA,5/1/1994 20:00 +Great Falls,,SPHERE,MT,5/1/1994 22:00 +Phoenix,,,NY,5/5/1994 2:00 +Newport Beach,,FLASH,CA,5/5/1994 21:00 +Long Beach,,OVAL,CA,5/7/1994 9:00 +Frankfort,,,MI,5/10/1994 21:24 +New York City,,CIRCLE,NY,5/11/1994 22:00 +Mitchell,BLUE,,OR,5/12/1994 11:00 +Winslow,,DISK,ME,5/12/1994 22:15 +N. Seattle,,,WA,5/15/1994 0:00 +Portland,,SPHERE,OR,5/15/1994 14:00 +Zebulon,,OTHER,NC,5/15/1994 15:30 +Elkhart,,SPHERE,IN,5/15/1994 16:00 +El Centro,,TRIANGLE,CA,5/15/1994 17:00 +Fallon,,LIGHT,NV,5/15/1994 18:10 +Munds Park,,CHEVRON,AZ,5/15/1994 21:15 +Nixon,,DISK,TX,5/16/1994 23:30 +Millersburg,,LIGHT,MO,5/17/1994 20:00 +Liberal,,SPHERE,KS,5/20/1994 13:00 +Pittsburgh,BLUE,OVAL,PA,5/20/1994 23:59 +logansport,,DISK,IN,5/22/1994 15:00 +Bend,,DISK,OR,5/23/1994 0:45 +Sacramento,,TRIANGLE,CA,5/26/1994 22:37 +Marlington,,DISK,WV,5/31/1994 20:00 +Wilson,,LIGHT,WI,6/1/1994 1:00 +Atlanta,,OTHER,TX,6/1/1994 2:00 +Lahaina,,CIRCLE,HI,6/1/1994 2:30 +Raymore,,TRIANGLE,MO,6/1/1994 3:00 +Whithouse,,,OH,6/1/1994 6:00 +Franklin,,DISK,KY,6/1/1994 6:30 +Eagle Butte,,FORMATION,SD,6/1/1994 8:00 +Elkton,,,MD,6/1/1994 10:28 +Dayton,,OVAL,OH,6/1/1994 12:00 +Springfield,,CIRCLE,MO,6/1/1994 14:00 +Bloomingdale,,SPHERE,IL,6/1/1994 16:00 +Montgomery,,RECTANGLE,AL,6/1/1994 17:00 +Scottville,,VARIOUS,MI,6/1/1994 17:00 +Lacey,,RECTANGLE,WA,6/1/1994 18:00 +Farmington,,TRIANGLE,NM,6/1/1994 19:00 +Lindsay,,SPHERE,CA,6/1/1994 19:00 +Georgia,,FLASH,GA,6/1/1994 21:00 +Montgomery,,TRIANGLE,AL,6/1/1994 21:00 +North Bergen,BLUE,DISK,NJ,6/1/1994 21:00 +South Yarmouth,GREEN,LIGHT,MA,6/1/1994 21:00 +Las Vegas,,TRIANGLE,NV,6/1/1994 21:30 +Bethlehem,,TRIANGLE,PA,6/1/1994 22:00 +Montgomery,,TRIANGLE,AL,6/1/1994 22:00 +Morgan Hill,,DISK,CA,6/1/1994 22:00 +Lawrencbeurg,,OVAL,KY,6/1/1994 23:00 +Galveston,,TRIANGLE,TX,6/4/1994 10:00 +McDonough,RED ORANGE,OTHER,GA,6/5/1994 0:35 +Hyannis,,OTHER,MA,6/5/1994 19:00 +Vashon Island,,,WA,6/6/1994 3:30 +Idaho Falls,,VARIOUS,ID,6/8/1994 22:30 +Waterbury,,CIRCLE,CT,6/10/1994 21:00 +Boyden,,FLASH,IA,6/10/1994 23:59 +Macy,,FIREBALL,NE,6/11/1994 1:30 +Boston,RED,TRIANGLE,MA,6/11/1994 21:00 +Sawgrass,,OTHER,FL,6/12/1994 21:30 +Sawgrass,RED,OTHER,FL,6/12/1994 21:30 +Arkansas,,TRIANGLE,AR,6/14/1994 1:30 +Malibu,ORANGE,CIGAR,CA,6/14/1994 2:00 +Lemoore,,TRIANGLE,CA,6/15/1994 3:00 +Jupiter,,LIGHT,FL,6/15/1994 14:00 +Tallahassee,,EGG,FL,6/15/1994 15:00 +Daytona Beach,,OTHER,FL,6/15/1994 19:00 +Berrien Center,,TRIANGLE,MI,6/15/1994 20:00 +Auburn Lake Park,,OTHER,OH,6/15/1994 21:00 +Estill Springs,,LIGHT,TN,6/15/1994 21:00 +Fredericktown,,SPHERE,OH,6/15/1994 21:00 +Coquina Key,,,FL,6/15/1994 22:00 +Ferndale,,CYLINDER,MD,6/15/1994 22:00 +Montgomery,,TRIANGLE,AL,6/15/1994 22:00 +St. Louis,,TRIANGLE,MO,6/15/1994 22:00 +Darby,,,MT,6/15/1994 23:00 +Drain,,LIGHT,OR,6/15/1994 23:00 +Federal Way,,,WA,6/15/1994 23:00 +Cheyenne,,LIGHT,WY,6/15/1994 23:45 +Canton,,CIRCLE,OH,6/16/1994 15:00 +Old Bridge,GREEN,DISK,NJ,6/17/1994 21:50 +Richmond,,OVAL,VA,6/18/1994 23:00 +Oroville,,TRIANGLE,WA,6/20/1994 21:00 +Sioux Falls,,SPHERE,SD,6/21/1994 21:30 +Los Angeles,,DISK,CA,6/23/1994 21:00 +Dresden,,DISK,ME,6/23/1994 22:00 +Burbank,,LIGHT,CA,6/26/1994 21:00 +Dull Center,,LIGHT,WY,6/29/1994 23:00 +Burbank,,,CO,6/30/1994 0:00 +Spotsylvania,,DISK,VA,6/30/1994 0:00 +New York City,ORANGE,TRIANGLE,NY,6/30/1994 1:00 +Berea,,RECTANGLE,OH,6/30/1994 19:00 +Springfield,,TRIANGLE,MA,6/30/1994 23:00 +Weogufka,,LIGHT,AL,6/30/1994 23:45 +Placentia,,LIGHT,CA,7/1/1994 0:00 +Copake,,LIGHT,NY,7/1/1994 1:00 +Indianapolis,,OTHER,IN,7/1/1994 9:00 +Ben Lomond,,LIGHT,CA,7/1/1994 12:00 +Canton,,CIRCLE,OH,7/1/1994 16:00 +Easthampton,,TRIANGLE,MA,7/1/1994 19:28 +Ink-O-Pah,,OTHER,CA,7/1/1994 21:00 +Goshen,,TRIANGLE,OH,7/1/1994 23:30 +Erie,,RECTANGLE,PA,7/3/1994 18:00 +Oregon City,,,OR,7/4/1994 0:00 +Marion,,TRIANGLE,IL,7/4/1994 20:00 +Emporia,RED,,KS,7/5/1994 2:30 +Priest River,,DISK,ID,7/8/1994 1:30 +Lake Perris,,TRIANGLE,CA,7/9/1994 23:00 +Clovis,,TRIANGLE,CA,7/9/1994 23:15 +Defiance,,LIGHT,OH,7/10/1994 2:00 +New York City,,DISK,NY,7/11/1994 17:10 +Evansville,,CIRCLE,IN,7/12/1994 6:45 +Sherwood,,,OH,7/12/1994 10:00 +Osage Beach,,VARIOUS,MO,7/12/1994 21:40 +Canby,,,OR,7/13/1994 12:36 +Havelock,,,NC,7/14/1994 8:00 +Branchville,,CIRCLE,NJ,7/14/1994 20:00 +California desert,,TRIANGLE,CA,7/15/1994 0:00 +California desert,,TRIANGLE,CA,7/15/1994 0:00 +Kernville,,FIREBALL,CA,7/15/1994 1:00 +Safford,,SPHERE,AZ,7/15/1994 3:00 +Las Vegas,,TRIANGLE,NV,7/15/1994 9:00 +Clyde,,CIRCLE,TX,7/15/1994 12:00 +Hillsboro,,,OR,7/15/1994 12:00 +Hillsboro,,CIGAR,OR,7/15/1994 12:00 +Rehoboth Beach,,SPHERE,DE,7/15/1994 14:00 +Caldwell,,TRIANGLE,ID,7/15/1994 15:30 +Sebago Lake,,LIGHT,ME,7/15/1994 20:30 +Aventura,,EGG,FL,7/15/1994 21:00 +Wilkes-Barre,,LIGHT,PA,7/15/1994 21:30 +Raymond,,OTHER,MS,7/15/1994 22:00 +Big Bear Lake,,TRIANGLE,CA,7/17/1994 2:00 +Gales Ferry,,TRIANGLE,CT,7/17/1994 22:30 +Moses Lake,,TRIANGLE,WA,7/20/1994 22:00 +Hot Springs,,LIGHT,SD,7/21/1994 22:00 +Goshen,,TRIANGLE,OH,7/21/1994 23:15 +Corning,,TRIANGLE,NY,7/23/1994 1:00 +Cumberland,,,MD,7/24/1994 22:30 +San Diego,,RECTANGLE,CA,7/25/1994 0:30 +Boring,,,OR,7/26/1994 0:00 +Apex,YELLOW,EGG,NC,7/27/1994 22:00 +Bloom township,,LIGHT,OH,8/1/1994 0:00 +Tekoa,,TRIANGLE,WA,8/1/1994 0:00 +Renton,,,WA,8/1/1994 0:01 +Los Gatos,RED YELLOW GREEN BLUE,,CA,8/1/1994 12:20 +San Diego,ORANGE,FLASH,CA,8/1/1994 17:30 +Beloit,,TRIANGLE,WI,8/1/1994 22:30 +Kawashaway,,LIGHT,WI,8/1/1994 23:00 +Stone Harbor,GREEN,LIGHT,NJ,8/1/1994 23:00 +Salt Lake City,,LIGHT,UT,8/4/1994 19:00 +Opp,,CIRCLE,AL,8/4/1994 22:00 +Sedona,,SPHERE,AZ,8/4/1994 23:00 +Port Richey,,EGG,FL,8/7/1994 17:00 +New York City,,OVAL,NY,8/7/1994 22:00 +Ann Arbor,,OTHER,MI,8/7/1994 22:30 +Ann Arbor,RED,OTHER,MI,8/7/1994 22:30 +Ypsilanti,,FORMATION,MI,8/7/1994 22:30 +Everett,,TRIANGLE,WA,8/9/1994 23:00 +Grizzly Mountain,,LIGHT,CA,8/10/1994 1:30 +Macwahoc,,DISK,ME,8/10/1994 2:00 +Conover,,FIREBALL,NC,8/10/1994 21:30 +Fort Irwin,,,CA,8/10/1994 22:40 +Rock River,,DISK,WY,8/15/1994 0:00 +Springfield,,,IL,8/15/1994 3:45 +East Bernstadt,,CIGAR,KY,8/15/1994 11:00 +Glenwood Springs,,LIGHT,CO,8/15/1994 18:30 +Arlington,,DIAMOND,TX,8/15/1994 19:30 +Denver,,OTHER,CO,8/15/1994 20:00 +Gilette,,FIREBALL,WY,8/15/1994 22:00 +Hazleton,,,PA,8/15/1994 22:00 +Bakersfield,,TRIANGLE,CA,8/15/1994 22:30 +Bakersfield,,TRIANGLE,CA,8/15/1994 22:45 +Earlham,,RECTANGLE,IA,8/15/1994 23:00 +Rancho Mirage,,RECTANGLE,CA,8/15/1994 23:50 +Dillion's Beach,GREEN,FIREBALL,CA,8/17/1994 22:00 +Morrow,,DISK,OH,8/18/1994 0:00 +Navajo Point,,LIGHT,AZ,8/19/1994 22:00 +Normandy Beach,,TRIANGLE,NJ,8/20/1994 19:00 +Napa,,LIGHT,CA,8/20/1994 20:00 +Flint,,DISK,MI,8/20/1994 21:00 +Carthage,,,MO,8/20/1994 22:30 +Yuma,RED,OVAL,AZ,8/20/1994 23:00 +Circleville,,TRIANGLE,OH,8/21/1994 22:35 +Belfast,,TRIANGLE,ME,8/24/1994 23:30 +New York City,,EGG,NY,8/25/1994 11:45 +New York City,,EGG,NY,8/25/1994 12:00 +Wadsworth,,SPHERE,OH,8/25/1994 13:00 +Gila Bend,,OTHER,AZ,8/25/1994 20:20 +Swanton,,OTHER,OH,8/25/1994 22:00 +Alvaton,,TRIANGLE,GA,8/25/1994 23:00 +Crossville,YELLOW,TRIANGLE,IN,8/26/1994 0:00 +Fort McCoy,,DISK,WI,8/26/1994 13:00 +San Diego,,CHEVRON,CA,8/28/1994 20:15 +Stockton,,CIRCLE,CA,8/31/1994 2:30 +Canton,,,OH,9/1/1994 0:00 +PottsVille,ORANGE,SPHERE,AR,9/1/1994 1:30 +New York City,,LIGHT,NY,9/1/1994 2:00 +Grants Pass,,VARIOUS,OR,9/1/1994 11:00 +Sitka,,OVAL,OR,9/1/1994 16:00 +Tucumcari,,TRIANGLE,NM,9/1/1994 16:00 +San Francisco,,SPHERE,CA,9/1/1994 18:00 +Ewa Beach,,CIGAR,HI,9/4/1994 17:00 +Chico,YELLOW GREEN,FIREBALL,CA,9/9/1994 6:30 +Wurtsboro,,CIRCLE,NY,9/14/1994 23:30 +Andover,,CIGAR,MA,9/15/1994 2:00 +Melbourne,,DISK,AR,9/15/1994 15:30 +Lake Travis,,OTHER,TX,9/15/1994 18:50 +Arlington,,,WA,9/15/1994 19:30 +Pittsburgh,,DISK,PA,9/15/1994 19:30 +Kingston,,TRIANGLE,NY,9/15/1994 20:00 +North Washington,,OVAL,PA,9/15/1994 22:00 +Spokane,,DISK,WA,9/15/1994 22:00 +Carbonado,,OVAL,WA,9/16/1994 22:00 +Carbonado,ORANGE,VARIOUS,WA,9/16/1994 22:00 +Elizabeth,,DISK,NJ,9/17/1994 18:50 +Dickson City,,FIREBALL,PA,9/20/1994 6:50 +Rancho Cordova,,FIREBALL,CA,9/20/1994 20:00 +Higginsville,,OTHER,MO,9/20/1994 22:00 +Hinckley,,CIRCLE,OH,9/20/1994 23:45 +Montello,BLUE,OTHER,NV,9/21/1994 17:45 +Montello,,CIRCLE,NV,9/21/1994 18:30 +Orcas Island,BLUE,LIGHT,WA,9/24/1994 20:00 +Lewisburg,,DISK,TN,9/27/1994 23:20 +Pawnee,RED,TRIANGLE,OK,10/1/1994 11:30 +New York City,,DISK,NY,10/1/1994 13:13 +Tylertown,,VARIOUS,MS,10/1/1994 17:00 +Chicopee,,VARIOUS,MA,10/1/1994 20:00 +Santa Barbara,,TRIANGLE,CA,10/1/1994 20:00 +Warsaw,,CIGAR,MO,10/1/1994 21:00 +Las Vegas,GREEN,CIRCLE,NV,10/1/1994 23:00 +Fredericksburg,ORANGE,DISK,PA,10/1/1994 23:30 +Bingen,,FIREBALL,WA,10/2/1994 0:00 +Circleville,,CIRCLE,OH,10/5/1994 19:00 +Boynton Beach,,OTHER,FL,10/8/1994 13:00 +Hialeah,,SPHERE,FL,10/9/1994 21:05 +Mercedes,,CIGAR,TX,10/10/1994 15:00 +Burnt Hills,,RECTANGLE,NY,10/10/1994 18:30 +Pinebergen,,LIGHT,AR,10/10/1994 22:00 +Hot Springs,,TRIANGLE,SD,10/11/1994 0:00 +Jackson,,TRIANGLE,NJ,10/11/1994 2:00 +Riverside,,CHEVRON,CA,10/11/1994 4:00 +Schenectady,,OTHER,NY,10/12/1994 11:55 +Monticello,,CHEVRON,KY,10/12/1994 15:00 +Farmington,,CYLINDER,MO,10/13/1994 19:30 +Goodlettsville,ORANGE,VARIOUS,TN,10/14/1994 4:00 +Citra,,SPHERE,FL,10/14/1994 19:30 +Cornersville,,CIRCLE,TN,10/14/1994 20:30 +Stone Ridge,,OVAL,NY,10/15/1994 13:00 +Circleville,,DISK,OH,10/15/1994 14:00 +Bellevue,,,WA,10/15/1994 16:25 +Ithaca,RED GREEN,LIGHT,NY,10/15/1994 18:00 +Neah Bay,,SPHERE,WA,10/15/1994 19:00 +Oxley,RED,FIREBALL,AR,10/15/1994 19:00 +Milwaukee,RED,TRIANGLE,WI,10/15/1994 20:00 +Angola,BLUE,DISK,IN,10/15/1994 21:00 +Outside of Delaware,,TEARDROP,OH,10/15/1994 21:00 +Pittsburgh,,LIGHT,PA,10/15/1994 22:00 +Molalla,,OTHER,OR,10/15/1994 23:00 +Marshall,,DISK,TX,10/15/1994 23:15 +Kannapolis,,LIGHT,NC,10/17/1994 10:35 +Berkshire,,TRIANGLE,NY,10/17/1994 21:30 +Random Lake,,VARIOUS,AZ,10/18/1994 20:30 +Medina,ORANGE,SPHERE,OH,10/19/1994 7:30 +Plant City,,DISK,FL,10/20/1994 7:30 +Marlette,,FLASH,MI,10/20/1994 17:00 +Stone Ridge,,TRIANGLE,NY,10/20/1994 20:30 +Stone Ridge,,LIGHT,NY,10/20/1994 22:00 +Taunton,,CIRCLE,MA,10/20/1994 23:40 +Berkeley,,LIGHT,CA,10/22/1994 22:00 +Reston,,TRIANGLE,VA,10/24/1994 0:00 +Yardville,,CIRCLE,PA,10/24/1994 13:30 +Charlotte,,DISK,NC,10/24/1994 14:30 +San Antonio,,OTHER,TX,10/25/1994 1:30 +Fish Point,,FIREBALL,MI,10/25/1994 21:00 +Spring Hill,,CIRCLE,FL,10/30/1994 7:00 +Spring Valley,,LIGHT,CA,10/31/1994 18:00 +White Pine,,SPHERE,TN,10/31/1994 21:00 +Trezevant,,TRIANGLE,TN,11/1/1994 1:00 +Ypsilanti,,,MI,11/1/1994 22:00 +Lower Lake,,DISK,CA,11/1/1994 22:30 +Palmer,,LIGHT,AK,11/3/1994 20:30 +Hwy I-40,,OVAL,AZ,11/5/1994 14:00 +Alston,,TRIANGLE,MI,11/5/1994 21:00 +San Antonio,,CIRCLE,TX,11/10/1994 7:13 +Vidor,,,TX,11/10/1994 23:00 +Plymouth,,TRIANGLE,IN,11/11/1994 22:00 +Plymouth,,DIAMOND,IN,11/11/1994 22:20 +St. Florian,,DISK,AL,11/12/1994 12:00 +San Diego,,OTHER,CA,11/14/1994 20:00 +Inverness,,RECTANGLE,FL,11/14/1994 21:09 +Lucedale,,DISK,MS,11/15/1994 4:00 +Mountain City,,TRIANGLE,TN,11/15/1994 19:00 +Atlanta,,LIGHT,GA,11/15/1994 21:00 +Portsmouth,GREEN,FLASH,VA,11/15/1994 21:45 +Liberty,GREEN,FIREBALL,KY,11/15/1994 23:00 +Coram,,OTHER,NY,11/15/1994 23:25 +Petoskey,,TRIANGLE,MI,11/16/1994 19:15 +Glendale,BLUE,SPHERE,CA,11/23/1994 3:00 +Greensboro,,CIGAR,NC,11/26/1994 17:00 +Spokane,,,WA,11/27/1994 20:00 +Blanchester,,TRIANGLE,OH,11/27/1994 22:00 +Phillips,,LIGHT,NE,11/29/1994 18:00 +Sumter,,CIRCLE,SC,12/5/1994 23:00 +Farmington,,CHEVRON,MO,12/6/1994 21:20 +McCall,,FIREBALL,ID,12/8/1994 2:45 +Cromwell,,,CT,12/9/1994 1:00 +Lu Verne,ORANGE,LIGHT,IA,12/9/1994 20:30 +Temecula,,DISK,CA,12/10/1994 18:40 +Greensboro,GREEN,OVAL,NC,12/12/1994 23:00 +Murphy,,,NC,12/13/1994 18:55 +Vienna,,OTHER,OH,12/14/1994 0:00 +Youngstown,,TEARDROP,OH,12/15/1994 1:00 +El Toro,,LIGHT,CA,12/15/1994 5:00 +Alliance,,FORMATION,OH,12/15/1994 21:00 +Indianapolis,,TRIANGLE,IN,12/15/1994 21:30 +Carpinteria,,,CA,12/15/1994 22:00 +Knoxville,,VARIOUS,IA,12/15/1994 23:30 +Chaska,,OVAL,MN,12/17/1994 18:30 +Taunton,,OTHER,MA,12/20/1994 20:00 +Sloatsburg,,,NY,12/23/1994 21:00 +Seattle,,LIGHT,WA,12/24/1994 1:39 +Sherman Oaks,,TRIANGLE,CA,12/24/1994 21:00 +Huntington,,,WV,12/25/1994 4:30 +Cincinnati,ORANGE,CIRCLE,OH,12/25/1994 23:00 +West Hills,,FIREBALL,CA,12/26/1994 19:30 +Lakeview,,LIGHT,MI,12/29/1994 19:00 +La Crosse,,DELTA,WA,12/29/1994 21:45 +Oppenhium,,OVAL,NY,12/29/1994 23:10 +Los Angeles,ORANGE,LIGHT,CA,12/30/1994 2:05 +Roy,,,WA,12/30/1994 4:00 +West Union,ORANGE,,OH,12/31/1994 18:00 +Gig Harbor,RED,,WA,12/31/1994 18:32 +Orem,,,UT,12/31/1994 22:00 +Fontana,RED,LIGHT,CA,12/31/1994 22:30 +Pacific Grove,,,CA,1/1/1995 0:02 +Mt. Charleston,,OVAL,NV,1/1/1995 1:00 +El Granada,,FIREBALL,CA,1/1/1995 2:00 +Kansas,,LIGHT,KS,1/1/1995 3:00 +Travelers Rest,,TRIANGLE,SC,1/1/1995 6:00 +Oxnard,,VARIOUS,CA,1/1/1995 10:00 +Cedar Key,,TRIANGLE,FL,1/1/1995 15:00 +Greenwood,RED,SPHERE,SC,1/1/1995 15:00 +Tucson,,TRIANGLE,AZ,1/1/1995 21:00 +Shelton,,,WA,1/1/1995 22:00 +Anaheim,,,CA,1/1/1995 22:45 +Southampton,,LIGHT,NY,1/1/1995 23:00 +New Port Richey,,,FL,1/2/1995 6:25 +Tewksbury,,,MA,1/3/1995 4:45 +Gladstone,,TRIANGLE,OR,1/3/1995 5:00 +Marysville,BLUE,TRIANGLE,WA,1/3/1995 18:00 +Redmond,,,WA,1/3/1995 20:49 +Seattle,,,WA,1/3/1995 21:55 +Salinas,,,CA,1/3/1995 23:45 +Rodney,,TRIANGLE,MI,1/4/1995 0:54 +Noxen,RED BLUE,,PA,1/4/1995 21:55 +Seattle,,LIGHT,WA,1/5/1995 9:50 +Evart,,,MI,1/5/1995 17:30 +Sumner,,DISK,WA,1/5/1995 20:10 +Shelby,,,MT,1/5/1995 21:00 +Sumner,,DISK,WA,1/5/1995 21:05 +Warm Beach,,,WA,1/6/1995 0:15 +Glendo,,,WY,1/6/1995 17:30 +Makapiu Point,,,HI,1/7/1995 5:00 +Lake Grove,,DISK,OR,1/7/1995 14:00 +Malmstrom AFB,,,MT,1/7/1995 15:00 +Edison,,FIREBALL,NJ,1/7/1995 17:00 +McMinnville,,,TN,1/7/1995 17:30 +Enterprise,,,MS,1/8/1995 4:00 +Horton,RED,,MI,1/8/1995 23:00 +Marion,,,NY,1/9/1995 3:30 +Port Charlotte,,,FL,1/9/1995 19:00 +Memphis,,,TN,1/9/1995 23:55 +Riverside,,,CA,1/10/1995 7:15 +Cleveland Heights,,SPHERE,OH,1/10/1995 21:00 +Seatac,,,WA,1/11/1995 7:00 +Snohomish,,,WA,1/12/1995 0:45 +Mojave Desert,,CIRCLE,CA,1/12/1995 1:00 +Olalla,,,WA,1/12/1995 22:00 +Napoleon,,CIRCLE,MI,1/13/1995 22:30 +Beaverton,,,OR,1/14/1995 22:00 +Blythe,,LIGHT,CA,1/15/1995 2:00 +McKinleyville,GREEN BLUE,,CA,1/15/1995 2:30 +Flint,,TRIANGLE,MI,1/15/1995 4:30 +Mount Carroll,,TRIANGLE,IL,1/15/1995 4:30 +Gorham,,,ME,1/15/1995 12:00 +Morton,,,WA,1/15/1995 21:00 +Plymouth Meeting,,RECTANGLE,PA,1/15/1995 21:00 +Cleburne,,TRIANGLE,TX,1/15/1995 22:00 +Poulsbo,,,WA,1/15/1995 23:43 +Renton,,,WA,1/16/1995 0:20 +Bend,,,OR,1/17/1995 4:30 +Anchorage,,LIGHT,AK,1/17/1995 22:45 +Seattle,BLUE,,WA,1/17/1995 23:07 +Moorehead,RED,,MN,1/17/1995 23:45 +Grangeville,,,ID,1/18/1995 19:00 +Deer Lodge,,,MT,1/18/1995 19:30 +Richland,GREEN,,WA,1/19/1995 19:20 +West Bend,,CIRCLE,WI,1/20/1995 19:00 +Branford,,,CT,1/20/1995 19:40 +Portland,,,OR,1/21/1995 5:45 +Seymour,RED,,TN,1/21/1995 21:50 +Tonasket,,RECTANGLE,WA,1/22/1995 3:00 +Vienna,,,VA,1/22/1995 17:50 +Seattle,,,WA,1/22/1995 20:00 +Renton,,,WA,1/22/1995 21:45 +Seattle,,,WA,1/23/1995 6:15 +Ladysmith,,,WI,1/23/1995 23:42 +Lebanon,,,TN,1/24/1995 4:42 +Midland,,,TX,1/24/1995 21:00 +San Angelo,,,TX,1/24/1995 21:15 +Joyce,RED,,WA,1/25/1995 15:23 +Philadelphia,,TRIANGLE,PA,1/25/1995 22:40 +Concrete,,LIGHT,WA,1/26/1995 19:00 +West South Port,,,ME,1/26/1995 19:00 +Seatac,RED,LIGHT,WA,1/27/1995 6:26 +Burbank,,,CA,1/28/1995 10:53 +Elbridge,,OTHER,NY,1/30/1995 6:35 +Jacksonville,,,FL,1/30/1995 20:00 +Olympia,RED,,WA,1/30/1995 20:00 +Harrisburg,,,PA,1/30/1995 20:29 +Spanaway,,,WA,1/31/1995 2:00 +Alexandria,,,LA,1/31/1995 19:32 +Mason,,,MI,1/31/1995 20:07 +Eaton Rapids,,,MI,1/31/1995 20:10 +Bolivar - 170th,,TRIANGLE,MO,2/1/1995 4:00 +Fort Lewis,GREEN,,WA,2/1/1995 12:00 +Seatac,RED,,WA,2/2/1995 4:00 +Denmark,,CONE,WI,2/2/1995 19:15 +Eastport,,,MI,2/2/1995 20:00 +Traverse City,,,MI,2/2/1995 20:10 +Shady Grove,GREEN,,OR,2/2/1995 23:00 +Romulus,,,MI,2/3/1995 21:30 +Fontana,,,CA,2/3/1995 23:25 +New Orleans,,,LA,2/4/1995 0:00 +Lynnwood,,,WA,2/4/1995 15:05 +Lewiston,RED,,MT,2/4/1995 17:33 +Lewiston,,,MT,2/4/1995 18:45 +Chimacum,,,WA,2/4/1995 19:00 +Port Hadlock,,,WA,2/4/1995 19:10 +Atlanta,,,GA,2/5/1995 0:00 +Greensville,,,NC,2/5/1995 1:30 +Bloomington,,,IL,2/6/1995 0:00 +Little Rock,,DISK,AR,2/6/1995 18:28 +Nine Mile Falls,,,WA,2/6/1995 19:30 +Hamilton,,LIGHT,TX,2/6/1995 20:30 +Raymond,,,WA,2/7/1995 0:00 +Seattle,,,WA,2/7/1995 0:00 +Quilcene,,,WA,2/7/1995 4:55 +Renton,GREEN,,WA,2/7/1995 16:30 +Tacoma,,,WA,2/7/1995 20:35 +Shawnee,RED,,OK,2/7/1995 21:10 +Tidewater,,,OR,2/7/1995 23:00 +Tillamook,RED BLUE,,OR,2/8/1995 0:00 +North Bend,,,WA,2/8/1995 5:30 +Renton,,,WA,2/8/1995 18:32 +Auburn,,,ME,2/9/1995 0:00 +Huntington Beach,ORANGE,,CA,2/9/1995 0:00 +Anaheim,,,CA,2/9/1995 17:40 +Vancouver,,,WA,2/9/1995 19:00 +Vancouver,GREEN,,WA,2/9/1995 19:00 +Billings,,,MT,2/10/1995 0:00 +Oregon City,,,OR,2/10/1995 0:00 +Seattle,,,WA,2/10/1995 0:00 +Downey,,CIRCLE,CA,2/10/1995 20:00 +Cannon Beach,,,OR,2/10/1995 20:30 +Elizabethtown,,,KY,2/12/1995 0:45 +McKinleyville,,,CA,2/12/1995 6:25 +El Cerrito,RED,,CA,2/12/1995 21:00 +Gustavus,ORANGE,,AK,2/12/1995 22:30 +Cheboygan,,,MI,2/13/1995 22:15 +Chico,,,CA,2/14/1995 23:28 +Nashville,,,TN,2/15/1995 3:58 +Ohio,,DISK,OH,2/15/1995 4:00 +Fair Oaks,,,NY,2/15/1995 4:40 +Vaiden,,CIGAR,MS,2/15/1995 7:30 +North Washington,,SPHERE,PA,2/15/1995 20:00 +Phoenix,,LIGHT,AZ,2/15/1995 20:00 +Sacramento,,,CA,2/15/1995 20:00 +Liberal,,,KS,2/15/1995 21:00 +Santa Rosa,,,CA,2/15/1995 21:00 +Lyndhurst,,,OH,2/15/1995 21:30 +Lyndhurst,BLUE,,OH,2/15/1995 21:30 +Johnson City,,,TN,2/16/1995 0:00 +Sacramento,,,CA,2/16/1995 0:00 +Albuquerque,,,NM,2/16/1995 19:26 +Lyndhurst,BLUE,TRIANGLE,OH,2/16/1995 21:25 +Kalamazoo,,,MI,2/16/1995 23:10 +PawPaw,,,MI,2/16/1995 23:15 +Des Plaines,,,IL,2/16/1995 23:45 +Kalamazoo,,,MI,2/16/1995 23:45 +Seatac,,,WA,2/17/1995 22:30 +Andover,,SPHERE,MA,2/18/1995 10:00 +Vantage,,,WA,2/18/1995 12:00 +Warren,,,IL,2/18/1995 18:00 +Kalamazoo,,,MI,2/18/1995 21:00 +Fargo,,,ND,2/19/1995 0:05 +Mountlake Terrace,,,WA,2/19/1995 0:15 +Fenton,,,MI,2/19/1995 19:00 +Seattle,,,WA,2/19/1995 19:00 +Phoenix,,,AZ,2/19/1995 22:00 +North Cove,,FIREBALL,WA,2/20/1995 2:30 +Albuquerque,,,NM,2/20/1995 13:00 +Seattle,,,WA,2/20/1995 13:05 +Warren,,,IL,2/20/1995 18:00 +Redding,,TRIANGLE,CA,2/20/1995 19:00 +Lake Tahuyeh,,,WA,2/21/1995 1:10 +Sprague River,,,OR,2/21/1995 3:00 +Council Bluffs,,,IA,2/21/1995 19:00 +Lynnwood,,,WA,2/21/1995 19:00 +Colville Reservation,,,WA,2/21/1995 20:30 +Yakima,RED,,WA,2/21/1995 21:30 +St. Louis,,,MO,2/22/1995 1:15 +Woodinville,,,WA,2/22/1995 2:30 +Vancouver,GREEN,,WA,2/22/1995 5:36 +Seattle,GREEN,,WA,2/22/1995 5:37 +Mill Creek,BLUE,,WA,2/22/1995 5:45 +Kent,,,WA,2/22/1995 20:00 +Auburn,,,WA,2/22/1995 23:00 +Seattle,GREEN,,WA,2/23/1995 0:00 +Tacoma,,,WA,2/23/1995 0:05 +Hage,,,FL,2/23/1995 2:45 +Snohomish,,,WA,2/23/1995 18:20 +El Centro,,,CA,2/23/1995 21:00 +Lexington,,,KY,2/23/1995 22:00 +Redding,,,CA,2/23/1995 22:00 +Fernley,RED,,NV,2/24/1995 20:45 +Cam Highway,,,HI,2/24/1995 23:00 +Mercer Island,RED BLUE,,WA,2/24/1995 23:45 +Portland,GREEN,,OR,2/25/1995 20:20 +Tallassee,,,TN,2/26/1995 20:00 +Stanwood,,,WA,2/26/1995 21:00 +Mt. Vernon,,,WA,2/26/1995 23:30 +Harrisonburg,,,VA,2/27/1995 12:00 +Mukilteo,,,WA,2/27/1995 19:59 +Electric City,,,WA,2/28/1995 5:00 +Harrisonburg,,,VA,2/28/1995 19:00 +Eastgate,,,WA,2/28/1995 22:00 +Greenville,,LIGHT,IL,3/1/1995 21:00 +Sedalia,,,MO,3/1/1995 21:00 +Redmond,RED,,WA,3/2/1995 22:30 +Prescott Valley,,OVAL,AZ,3/4/1995 0:00 +Folsom,,,NJ,3/4/1995 16:32 +Anaheim,,OTHER,CA,3/5/1995 12:00 +Columbus,,,OH,3/6/1995 0:55 +Hilltop,,,NJ,3/6/1995 19:00 +Florence,,,OR,3/6/1995 19:10 +Mountain City,,,TN,3/6/1995 19:45 +Ft. Bragg,,,CA,3/6/1995 22:09 +Burley,,,WA,3/6/1995 23:30 +Tucumcari,,,NM,3/7/1995 4:00 +Bellevue,,,WA,3/7/1995 5:30 +Geneva,,LIGHT,NY,3/7/1995 15:00 +Portland,RED,,OR,3/7/1995 19:20 +Portland,RED,,OR,3/7/1995 21:25 +Ammon,,,ID,3/8/1995 5:45 +Byron Center,YELLOW,,MI,3/8/1995 22:00 +Lake Jackson,,,TX,3/8/1995 23:00 +Plant City,,,FL,3/9/1995 21:00 +Portland,,,OR,3/10/1995 20:45 +"Coconino Nat'l Forest north of Wupatki NM, AZ",BLUE,FORMATION,AZ,3/10/1995 22:00 +Chesapeake,RED ORANGE,,VA,3/11/1995 3:00 +Las Vegas,,,NV,3/11/1995 19:30 +Fort Wayne,,,IN,3/11/1995 20:00 +Show Low,,,AZ,3/11/1995 21:45 +Leavenworth,,,KS,3/12/1995 20:30 +Norfolk,,,VA,3/12/1995 21:00 +Borrego Springs,,TRIANGLE,CA,3/12/1995 22:00 +Avondale,,,AZ,3/12/1995 23:30 +Columbia,,,SC,3/12/1995 23:41 +Cumberland,,,MD,3/12/1995 23:54 +Cumberland,,,MD,3/12/1995 23:54 +Cumberland,,,MD,3/12/1995 23:54 +Seattle,YELLOW,,WA,3/13/1995 18:30 +Seattle,BLUE,,WA,3/14/1995 21:07 +Seattle,,,WA,3/14/1995 21:08 +Seattle,BLUE,,WA,3/14/1995 21:08 +Seattle,BLUE,,WA,3/14/1995 21:10 +Wenatchee,,,WA,3/14/1995 21:10 +N. Judson,,,IN,3/14/1995 21:45 +North Judson,,,IN,3/14/1995 21:45 +Fontana,,,CA,3/14/1995 22:05 +Whatcom County,,DISK,WA,3/15/1995 3:00 +Haymarket,,SPHERE,VA,3/15/1995 5:25 +San Antonio,,FIREBALL,TX,3/15/1995 6:30 +Orlando,,,FL,3/15/1995 14:00 +Shepard AFB,,OTHER,TX,3/15/1995 17:45 +Danbury,,CHEVRON,CT,3/15/1995 20:00 +Fontana,BLUE,,CA,3/15/1995 20:30 +Fontana,,LIGHT,CA,3/15/1995 20:30 +Clinton,,VARIOUS,IL,3/15/1995 21:00 +Cannis City,,,FL,3/15/1995 21:30 +Howell,,TRIANGLE,MI,3/15/1995 22:00 +Grain Valley,,,MO,3/15/1995 22:30 +Jefferson City,,,MO,3/15/1995 22:30 +Jefferson City,,,MO,3/15/1995 22:30 +St. Louis,,,MO,3/15/1995 22:30 +Litchfield,BLUE,,IL,3/15/1995 22:32 +Collinsville,BLUE,,IL,3/15/1995 22:40 +Gainesville,,,FL,3/15/1995 23:00 +Vienna,,,VA,3/15/1995 23:17 +Fairmont,YELLOW GREEN,,WV,3/15/1995 23:25 +S. Greensburg,,,PA,3/15/1995 23:28 +Jackson,RED BLUE,,TN,3/15/1995 23:32 +Molalla,,,OR,3/16/1995 0:00 +Toledo,,,OH,3/16/1995 23:45 +Lockwood,,,NV,3/17/1995 16:00 +Flint,,,MI,3/17/1995 19:40 +Evington,,,VA,3/17/1995 22:00 +Boulder Creek,,,CA,3/17/1995 23:30 +Bakersfield,,,CA,3/18/1995 21:49 +Bakersfield,,,CA,3/18/1995 21:49 +Mobile,,,AL,3/19/1995 19:30 +Jacksonville,,,FL,3/19/1995 20:00 +Patricia,,,TX,3/19/1995 20:31 +Fayetteville,,CYLINDER,NC,3/20/1995 0:00 +Ft Benning,,CIRCLE,GA,3/20/1995 23:00 +Beaver,,TEARDROP,OK,3/21/1995 4:30 +Bedford,,,VA,3/22/1995 5:10 +Redmond,,,WA,3/22/1995 17:30 +Everett,,,WA,3/22/1995 21:30 +Hwy. 18,,,WA,3/23/1995 1:30 +Snoqualmie,,DISK,WA,3/23/1995 1:30 +Spokane,,,WA,3/23/1995 21:23 +Lake Havasu,,,AZ,3/23/1995 22:00 +Flint,,,MI,3/23/1995 22:25 +North Dade,,,FL,3/24/1995 1:27 +Las Vegas,,,NV,3/24/1995 5:00 +Las Vegas,,,NV,3/24/1995 5:00 +Grover Beach,,,CA,3/25/1995 0:00 +Monterey,,,CA,3/25/1995 0:00 +Seattle,,,WA,3/25/1995 17:00 +Fort Wayne,,,IN,3/25/1995 18:20 +Burien,,,WA,3/25/1995 19:00 +Kingsford Heights,,TRIANGLE,IN,3/25/1995 22:00 +Redmond,,,WA,3/25/1995 22:30 +Auburn,,,WA,3/25/1995 23:10 +Salinas,,,CA,3/25/1995 23:10 +Scottsdale,,,AZ,3/26/1995 17:37 +Loveland,,LIGHT,CO,3/27/1995 21:15 +Harmony,,,ME,3/27/1995 21:50 +Florence,,,OR,3/27/1995 22:00 +San Francisco,,,CA,3/27/1995 23:00 +Cordova,,,AK,3/28/1995 0:36 +McAllen,,DISK,TX,3/28/1995 22:00 +Ventura,,,CA,3/29/1995 1:31 +Shippensburg,BLUE,OTHER,PA,3/29/1995 6:30 +Rainsville,ORANGE,,AL,3/29/1995 14:36 +Elma,,,WA,3/29/1995 20:15 +Jacksonville,,,FL,3/29/1995 20:35 +Mt. Ranch,,,CA,3/29/1995 23:54 +Fort Wayne,,,IN,3/30/1995 0:00 +Honolulu,YELLOW,,HI,3/30/1995 0:00 +Eugene,,,OR,3/30/1995 4:45 +Hollywood,,CIGAR,CA,3/30/1995 5:30 +Warren,,,MI,3/30/1995 19:30 +Murphy,,,NC,3/30/1995 23:32 +Placerville,,,CA,3/31/1995 21:45 +Costa Mesa,RED,,CA,4/1/1995 5:30 +Albany,,OTHER,OR,4/1/1995 18:00 +Holyoke,,LIGHT,MA,4/1/1995 18:00 +Mountlake Terrace,,,WA,4/1/1995 21:00 +Knoxville,,,TN,4/2/1995 10:20 +Central U.S.,,DIAMOND,ND,4/2/1995 13:00 +Smith River,,,CA,4/2/1995 23:25 +Bakersfield,,,CA,4/3/1995 2:00 +Haslett,,,MI,4/3/1995 10:30 +Williamsburg,,SPHERE,VA,4/4/1995 4:00 +Folsom,,,NJ,4/4/1995 23:50 +Bakersfield,,,CA,4/5/1995 1:00 +Mesa,,DISK,AZ,4/5/1995 12:01 +Boyertown,,,PA,4/5/1995 21:45 +Burlington,,,NJ,4/6/1995 0:58 +Hendersonville,,TRIANGLE,TN,4/7/1995 17:00 +Boulder,,,CO,4/7/1995 21:00 +Pridice Valley,,TRIANGLE,AZ,4/9/1995 17:00 +Alvin,,OTHER,TX,4/10/1995 0:30 +Apple Valley,BLUE,,CA,4/10/1995 1:30 +Goleta,,,CA,4/10/1995 2:25 +Tajunga,,,CA,4/10/1995 2:25 +Yarldey,GREEN,OTHER,PA,4/10/1995 12:00 +Newport,,OTHER,MI,4/10/1995 21:00 +Norristown,,CIRCLE,PA,4/12/1995 21:00 +Richmond,,,VA,4/12/1995 21:45 +Friday Harbor,,DIAMOND,WA,4/12/1995 23:00 +Pottstown,,,PA,4/13/1995 12:00 +Brooklyn,,,AR,4/13/1995 23:07 +West Memphis,GREEN,,TN,4/13/1995 23:07 +Brooklyn,,,AR,4/13/1995 23:08 +Tacoma,,,WA,4/14/1995 21:00 +Boston,GREEN,,MA,4/14/1995 22:00 +Newell area,,,SD,4/15/1995 0:00 +Austin,,OTHER,TX,4/15/1995 12:00 +Earlville,,,PA,4/15/1995 19:30 +Asheville,,TRIANGLE,NC,4/15/1995 22:00 +Gilbert,,,AZ,4/15/1995 22:00 +Pinehurst,,TRIANGLE,NC,4/15/1995 22:00 +Urbana,,CIRCLE,OH,4/15/1995 22:00 +Kilgore,YELLOW,CIRCLE,TX,4/15/1995 23:30 +Woodinville,,,WA,4/16/1995 1:10 +Great Falls,,OVAL,MT,4/16/1995 10:30 +Medford,,,MA,4/16/1995 20:30 +Carrollton,,,GA,4/16/1995 21:25 +Villa Rica,,,GA,4/16/1995 21:45 +Tacoma,,,WA,4/16/1995 22:10 +Milton,,DISK,DE,4/17/1995 19:00 +Pacificia,,OVAL,CA,4/17/1995 23:00 +Leesport,,,PA,4/18/1995 20:30 +Gilbertsville,ORANGE,,PA,4/18/1995 22:34 +New Smyrna Beach,,,FL,4/19/1995 0:30 +Pembrook Pines,,,FL,4/19/1995 19:30 +Clovis,,,CA,4/19/1995 19:58 +Binghamton,,,NY,4/19/1995 21:44 +Richmond,,,VA,4/19/1995 21:45 +Augusta,,,ME,4/19/1995 22:19 +Lake Sullivan,,LIGHT,ID,4/19/1995 23:00 +Fargo,RED,,ND,4/20/1995 0:02 +Watauga,,,TX,4/20/1995 23:20 +Hansville,BLUE,,WA,4/21/1995 0:00 +Palatine,RED,FIREBALL,IL,4/21/1995 9:30 +Newport,,,OR,4/21/1995 23:00 +Oregon,,,IL,4/21/1995 23:49 +Danville,,,IL,4/22/1995 0:00 +Louisville,,,KY,4/22/1995 0:30 +Oregon City,,,OR,4/22/1995 1:05 +Milpitas,,,CA,4/22/1995 15:00 +Portland,,,OR,4/22/1995 17:15 +Bakersfield,,,CA,4/22/1995 21:44 +Seattle,,,WA,4/22/1995 22:37 +Oregon,,,IL,4/22/1995 23:49 +Wheeling,,LIGHT,WV,4/23/1995 1:30 +MM 99 mile Exit,,,WA,4/23/1995 3:45 +Bradenton,,,FL,4/23/1995 21:30 +Hickory Corners,,,MI,4/23/1995 21:30 +Beaver Creek,,,OR,4/24/1995 22:14 +Quartzsite,,TRIANGLE,AZ,4/25/1995 1:30 +Grape Creek,,,IL,4/25/1995 2:30 +Portland,,,OR,4/25/1995 12:30 +Brooklyn,,,OH,4/25/1995 15:15 +Flagstaff,RED,TRIANGLE,AZ,4/28/1995 2:45 +Grand Rapids,,TRIANGLE,MI,4/28/1995 9:30 +Spokane,,,WA,4/29/1995 0:00 +Mt. City,,,TN,4/30/1995 11:55 +San Diego,,,CA,4/30/1995 20:55 +Riverview,,,FL,4/30/1995 22:00 +Lansing,,CIRCLE,MI,4/30/1995 23:30 +White Sands,,CHEVRON,NM,5/1/1995 12:00 +Killawog,RED YELLOW,LIGHT,NY,5/1/1995 18:00 +Sun Prairie,,CROSS,WI,5/1/1995 21:00 +Brockton,,TRIANGLE,MA,5/1/1995 21:30 +Zanesville,,,OH,5/1/1995 22:00 +Memphis,,,TN,5/2/1995 12:00 +Reno,,,NV,5/3/1995 0:54 +Amsterdam,,,NY,5/3/1995 4:05 +Alden,,LIGHT,NY,5/3/1995 22:30 +Fremont,,CONE,OH,5/5/1995 15:15 +Conifer,,CIRCLE,CO,5/5/1995 22:00 +Huntington,,,NY,5/6/1995 14:00 +Watertown,,LIGHT,CT,5/6/1995 21:00 +Lebanon,,,OR,5/6/1995 23:30 +Phoenix,,FORMATION,AZ,5/7/1995 1:00 +Gresham,,,OR,5/7/1995 1:30 +Cannon,,,NH,5/7/1995 4:25 +Massillon,,,OH,5/7/1995 12:20 +Seattle,,,WA,5/7/1995 23:45 +Vista,,,CA,5/9/1995 21:10 +Columbia,,,MO,5/10/1995 3:00 +Houston,BLUE,LIGHT,TX,5/10/1995 19:00 +Whiteriver,,LIGHT,AZ,5/10/1995 19:00 +Palm Desert,,,CA,5/11/1995 0:15 +Edwards AFB,,,CA,5/12/1995 0:00 +Carmichael,,,CA,5/12/1995 0:15 +Madison,,,WI,5/12/1995 2:00 +Starkey,,,OR,5/12/1995 7:30 +Lackland AFB,,DISK,TX,5/12/1995 12:00 +Ozark,BLUE,CIGAR,MO,5/12/1995 14:00 +Santa Fe,,CHEVRON,TX,5/12/1995 20:00 +Duarte,,,CA,5/12/1995 22:50 +Scottsdale,,OTHER,AZ,5/13/1995 14:00 +Seattle,RED,TRIANGLE,WA,5/13/1995 19:30 +Tampa,,,FL,5/13/1995 20:25 +Neah Bay,,,WA,5/13/1995 21:30 +Framingham,,,MA,5/13/1995 21:40 +Dayton,,,OR,5/14/1995 0:54 +Lake Forest,,,IL,5/14/1995 3:00 +Silver Beach,,,NY,5/14/1995 20:37 +McKenzie,,,TN,5/15/1995 0:00 +Normal,,TRIANGLE,IL,5/15/1995 0:00 +Kalama,,OTHER,WA,5/15/1995 3:30 +Geneva,,SPHERE,OH,5/15/1995 4:00 +Sage,,FIREBALL,CA,5/15/1995 4:30 +Portland,,,OR,5/15/1995 10:30 +W. Chicago,,,IL,5/15/1995 12:30 +St. Bonifacious,,LIGHT,WI,5/15/1995 15:00 +N. Seattle,,,WA,5/15/1995 16:15 +Claverack,,TRIANGLE,NY,5/15/1995 18:00 +Killawog,,LIGHT,NY,5/15/1995 18:30 +Hillsborough,,,NJ,5/16/1995 4:00 +Lakewood,,FIREBALL,WA,5/16/1995 11:00 +Lake Oswego,,,OR,5/16/1995 22:45 +Freeport,RED,OTHER,TX,5/16/1995 23:00 +Rochester,,FLASH,NY,5/17/1995 21:05 +Middletown,,,CT,5/18/1995 18:30 +Las Vegas,,,NV,5/18/1995 19:30 +W. Salem,,,OR,5/19/1995 9:55 +Glendale,RED,TRIANGLE,CA,5/19/1995 22:00 +Mt. Jackson,,,VA,5/19/1995 22:15 +Federal Way,,,WA,5/19/1995 22:30 +Marietta,,DIAMOND,GA,5/19/1995 22:42 +San Diego,,LIGHT,CA,5/20/1995 11:30 +Kansas City,,TRIANGLE,MO,5/20/1995 13:30 +Mesquite,,SPHERE,TX,5/20/1995 22:00 +Charlotte,,LIGHT,NC,5/20/1995 23:00 +St. Louis,RED GREEN,CIGAR,MO,5/20/1995 23:00 +Phoenix,,,AZ,5/21/1995 19:30 +Woburn,,,MA,5/21/1995 21:45 +Fox Chapel,,,PA,5/21/1995 23:20 +Brawley,,,CA,5/23/1995 5:20 +Kent,,FORMATION,NE,5/23/1995 20:00 +Woodland,,,ME,5/23/1995 22:50 +San Luis Obispo,,CIRCLE,CA,5/24/1995 3:00 +East Aurora,,,IL,5/24/1995 21:00 +Jeannette,,,PA,5/24/1995 22:15 +Brentwood,,,TN,5/24/1995 22:35 +Pueblo,,,CO,5/25/1995 0:00 +Silverdale,,,WA,5/25/1995 0:00 +Shalimar,,TEARDROP,FL,5/25/1995 15:00 +Rochester Hills,,TRIANGLE,MI,5/26/1995 1:00 +Rochester Hills,,TRIANGLE,MI,5/26/1995 18:00 +Vinton,,,LA,5/26/1995 22:45 +Arlington,,,WA,5/27/1995 0:30 +Tacoma,,,WA,5/27/1995 0:54 +Hialeah,,,FL,5/27/1995 2:00 +Southside,,CIRCLE,AL,5/27/1995 17:30 +St. Louis,,,MO,5/28/1995 0:00 +Deming,,,NM,5/28/1995 16:00 +Bellevue,BLUE,,WA,5/28/1995 23:35 +Eagle Creek,,,OR,5/28/1995 23:35 +Shelton,,,WA,5/28/1995 23:35 +Fairfield,BLUE,,CA,5/29/1995 2:04 +Jamestown,BLUE,,CA,5/29/1995 2:30 +Auburn,,,WA,5/29/1995 4:00 +Byron,,,MN,5/30/1995 4:45 +Loveland,,OTHER,CO,5/31/1995 18:00 +Colorado Springs,RED,LIGHT,CO,6/1/1995 1:00 +Colorado Springs,RED,LIGHT,CO,6/1/1995 1:00 +North Manitou Island Lake,,,MI,6/1/1995 1:30 +Culpeper,,,VA,6/1/1995 2:00 +Mt. Springs,,CIGAR,TX,6/1/1995 2:00 +Wilton,,LIGHT,NY,6/1/1995 2:00 +Carson City,,,NV,6/1/1995 4:00 +Los Angeles,,CIRCLE,CA,6/1/1995 12:00 +Mesa,,OTHER,AZ,6/1/1995 12:00 +Ravenna,,TRIANGLE,OH,6/1/1995 12:00 +Craig,,VARIOUS,CO,6/1/1995 13:00 +Los Angeles,,FORMATION,CA,6/1/1995 13:00 +Durham,,CIRCLE,NC,6/1/1995 15:00 +Saint Petersburg,,SPHERE,FL,6/1/1995 16:20 +Mesa,,OVAL,AZ,6/1/1995 18:00 +Clarksville,,FORMATION,TN,6/1/1995 19:00 +Ferndale,BLUE,LIGHT,WA,6/1/1995 19:00 +Madras,,OTHER,OR,6/1/1995 20:00 +Methuen,YELLOW,OVAL,MA,6/1/1995 20:00 +Warren,BLUE,TRIANGLE,OH,6/1/1995 20:00 +Austin,GREEN,LIGHT,TX,6/1/1995 21:00 +Homestead,,TRIANGLE,FL,6/1/1995 21:00 +Kingsford,,DISK,WI,6/1/1995 21:00 +Mercer Island,,TRIANGLE,WA,6/1/1995 21:00 +New Hampshire,,LIGHT,NH,6/1/1995 21:00 +Pensacola,,FLASH,FL,6/1/1995 21:00 +Kingsville,,OTHER,OH,6/1/1995 22:00 +Roebling,,LIGHT,NJ,6/1/1995 22:00 +Benton City,,,WA,6/1/1995 22:30 +Supply,,,NC,6/1/1995 22:30 +Angels Camp,,LIGHT,CA,6/1/1995 23:00 +Murphuys,,,CA,6/1/1995 23:00 +Provincetown,,,MA,6/1/1995 23:00 +Mebane,,TRIANGLE,NC,6/1/1995 23:30 +Wailuku,,FIREBALL,HI,6/1/1995 23:45 +Hillsboro,,,OR,6/2/1995 20:12 +Gardendale,,,LA,6/3/1995 3:00 +Syracuse,,FORMATION,NY,6/3/1995 13:00 +Marysville,,,WA,6/3/1995 22:12 +Olympia,,,WA,6/3/1995 23:30 +Goldsboro,,,NC,6/3/1995 23:53 +Addison,RED,,TX,6/4/1995 0:00 +Aurora,,TRIANGLE,IL,6/5/1995 20:00 +Dallas,,LIGHT,TX,6/6/1995 1:00 +Kentwood,,CIRCLE,MI,6/6/1995 16:00 +Kentwood,,SPHERE,MI,6/6/1995 16:00 +Golden,,OTHER,CO,6/6/1995 18:00 +Albany,,OTHER,NY,6/6/1995 21:00 +Oroville,,,CA,6/6/1995 21:45 +Albany,,,CA,6/7/1995 21:00 +Fresno,,,CA,6/8/1995 23:45 +Fontana,ORANGE,,CA,6/9/1995 0:10 +Arlington,GREEN,,WA,6/9/1995 21:53 +El Paso,,,TX,6/10/1995 18:00 +Crescent City,RED BLUE,OVAL,CA,6/10/1995 23:00 +New York,BLUE,TRIANGLE,NY,6/10/1995 23:00 +Glade Spring,GREEN,,VA,6/10/1995 23:20 +Cleburne,,,TX,6/11/1995 0:00 +Seattle,,,WA,6/11/1995 0:00 +Sharon,,,MA,6/11/1995 0:00 +Tacoma,,,WA,6/11/1995 17:15 +Modesto,,,CA,6/11/1995 19:20 +Farmington,,,UT,6/11/1995 19:30 +Ogden,,,UT,6/11/1995 19:30 +Fairfield,,,CA,6/11/1995 22:00 +Downey,,,CA,6/11/1995 23:00 +Puyallup,,,WA,6/11/1995 23:50 +Wichita,,,KS,6/12/1995 0:00 +San Francisco,,,CA,6/12/1995 0:15 +Drain,,CIRCLE,OR,6/12/1995 23:00 +Fort Wayne,,,IN,6/12/1995 23:26 +Long Valley,,DISK,NJ,6/13/1995 11:00 +Sequim,,OVAL,WA,6/13/1995 14:00 +Omaha,,DISK,NE,6/13/1995 18:00 +Tulare,RED,,CA,6/13/1995 21:25 +Ann Arbor,,,MI,6/14/1995 1:35 +Miami,,,FL,6/14/1995 21:40 +Lakewood,RED,DISK,CA,6/15/1995 0:00 +Bridgeport,ORANGE YELLOW,CIRCLE,CT,6/15/1995 2:00 +Cameron,,,LA,6/15/1995 2:00 +Leveland,,FIREBALL,TX,6/15/1995 2:00 +Washington,RED,,UT,6/15/1995 2:00 +Thomson,,OVAL,GA,6/15/1995 11:30 +Grand Rapids,,DISK,MI,6/15/1995 15:00 +Fort Bliss,BLUE,CIRCLE,TX,6/15/1995 18:00 +Orange,,OVAL,CA,6/15/1995 18:00 +Calipatria,,CIRCLE,CA,6/15/1995 19:00 +Albuquerque,BLUE,DISK,NM,6/15/1995 19:30 +Pennsylvania,,SPHERE,PA,6/15/1995 19:55 +Hesperia,GREEN,LIGHT,CA,6/15/1995 20:00 +Kapaau,BLUE,TEARDROP,HI,6/15/1995 20:00 +Long Beach,,CHEVRON,CA,6/15/1995 20:30 +Glendale,,FIREBALL,AZ,6/15/1995 21:00 +Malvern,,TRIANGLE,PA,6/15/1995 21:00 +Miami,,LIGHT,FL,6/15/1995 21:00 +St. Louis,,TRIANGLE,MO,6/15/1995 22:00 +Roy,,SPHERE,WA,6/15/1995 22:20 +Pawleys Island,,,SC,6/15/1995 23:00 +Freeport,,,FL,6/16/1995 0:00 +Toledo,,,OH,6/17/1995 0:00 +Croton Falls,,OVAL,NY,6/18/1995 0:35 +Fall River,,,MA,6/18/1995 21:45 +Las Vegas,GREEN,SPHERE,NV,6/19/1995 2:30 +Adair County,,,IA,6/19/1995 22:00 +Belle Plaine,,TRIANGLE,KS,6/19/1995 22:00 +Cottonwood,YELLOW,,CA,6/19/1995 23:45 +Howell,,OVAL,NJ,6/20/1995 2:00 +Multi,,VARIOUS,OH,6/20/1995 2:00 +Commerce,,CIRCLE,TX,6/20/1995 9:30 +Mascoutah,,SPHERE,IL,6/20/1995 14:00 +Hewitt,,CIGAR,TX,6/20/1995 18:00 +Winchester,,CIRCLE,WI,6/20/1995 23:00 +Cameron,,,MO,6/21/1995 0:56 +Oregon City,,,OR,6/21/1995 21:30 +Chelsea,,LIGHT,MA,6/22/1995 0:00 +Salem,,RECTANGLE,OH,6/22/1995 2:00 +Raton,,,NM,6/22/1995 13:30 +Amarillo,,TRIANGLE,TX,6/22/1995 15:00 +Monroe,,,WA,6/23/1995 0:01 +Austin,,DISK,NV,6/23/1995 3:00 +Austin,ORANGE,DISK,NV,6/23/1995 3:00 +Buena Park,,LIGHT,CA,6/23/1995 22:30 +Kirkland,,,WA,6/24/1995 0:10 +Los Angeles County,,TRIANGLE,CA,6/24/1995 0:30 +Snoqualmie,BLUE,,WA,6/24/1995 14:30 +Florence,,,AL,6/24/1995 21:52 +Farmingdale,,,NY,6/24/1995 22:30 +Sibley County,,,MN,6/24/1995 22:45 +Portland,,,OR,6/25/1995 0:00 +Mojave Desert,,DISK,CA,6/25/1995 9:00 +Tumwater,,,WA,6/25/1995 16:22 +Batesburg,,,SC,6/25/1995 19:00 +Sioux Falls,RED,,SD,6/25/1995 22:45 +Cherry Hill,,,NJ,6/27/1995 12:00 +Endicott,,,NY,6/27/1995 21:30 +Portland,,VARIOUS,ME,6/28/1995 21:00 +New Providence,,,NJ,6/28/1995 21:45 +Irving,,,TX,6/28/1995 22:20 +Tacoma,,,WA,6/28/1995 22:25 +Lisbon,,,ME,6/28/1995 23:00 +Klamath Falls,,,OR,6/29/1995 0:00 +Mankato,,OTHER,MN,6/29/1995 22:45 +Port Angeles,,,WA,6/30/1995 0:00 +Canton,,,OH,6/30/1995 2:00 +Northport,,LIGHT,NY,6/30/1995 10:00 +Gold Point,,CIGAR,NV,6/30/1995 12:00 +Grass Valley,,CIRCLE,CA,6/30/1995 13:00 +Medford,,DISK,OR,6/30/1995 15:00 +Corpus Christi,,CIRCLE,TX,6/30/1995 18:00 +Olathe,,,KS,6/30/1995 19:20 +Portland,,FORMATION,ME,6/30/1995 22:00 +Rockwood,,VARIOUS,MI,6/30/1995 22:00 +Longbranch,,LIGHT,WA,7/1/1995 0:00 +New York City,,CIRCLE,NY,7/1/1995 0:00 +Farmington,GREEN,CONE,NM,7/1/1995 1:00 +Mesa,,,AZ,7/1/1995 2:00 +Myrtle Beach,,LIGHT,SC,7/1/1995 3:15 +Bellevue,,,NE,7/1/1995 4:30 +Greenville,,OVAL,SC,7/1/1995 5:45 +Kittanning,,CIRCLE,PA,7/1/1995 9:00 +Wedowee,,SPHERE,AL,7/1/1995 19:00 +Seymour,,OTHER,IN,7/1/1995 21:00 +Broughtontown,,SPHERE,KY,7/1/1995 22:00 +Neenah,,TRIANGLE,WI,7/1/1995 22:00 +Ocean Shores,,,WA,7/1/1995 22:30 +Wenksville,,LIGHT,PA,7/1/1995 23:00 +Pendleton,,OTHER,NY,7/2/1995 13:30 +Winnemucca,RED,,NV,7/2/1995 23:15 +Glendale,RED,,AZ,7/3/1995 0:30 +Inspiration Pt.,,,CA,7/3/1995 10:30 +Bremerton,RED,LIGHT,WA,7/4/1995 0:00 +San Antonio,YELLOW,LIGHT,TX,7/4/1995 0:00 +Lakeport,,LIGHT,CA,7/4/1995 18:00 +Woodlake,RED GREEN,CYLINDER,CA,7/4/1995 20:50 +Orlando,YELLOW,,FL,7/4/1995 21:30 +Tacoma,RED,CIRCLE,WA,7/4/1995 22:00 +New Port Richey,,TRIANGLE,FL,7/4/1995 23:00 +West Milford,,TRIANGLE,NJ,7/7/1995 1:30 +Murfreesboro,,OVAL,TN,7/7/1995 21:30 +Aurora,,,IL,7/7/1995 23:59 +Ravenna,,,OH,7/8/1995 23:00 +Mojave Desert,,OTHER,CA,7/9/1995 12:00 +Versailles,,,MO,7/9/1995 23:00 +Versailles,,,MO,7/9/1995 23:00 +Bonanza,YELLOW,,OR,7/10/1995 21:50 +Fircrest,,,WA,7/11/1995 22:30 +Salt Lake City,,DISK,UT,7/12/1995 4:00 +Necedah,,LIGHT,WI,7/12/1995 15:00 +Olivet,,DISK,MI,7/14/1995 14:00 +Lake Havasu City,,LIGHT,AZ,7/14/1995 19:00 +Seattle,,,WA,7/14/1995 22:10 +Abilene,,SPHERE,TX,7/15/1995 0:00 +Hesperia,ORANGE,FIREBALL,CA,7/15/1995 0:00 +Massachussetts Highway rest stop,,CIRCLE,MA,7/15/1995 0:00 +Steelville,,CONE,MO,7/15/1995 1:00 +Buena Park,,LIGHT,CA,7/15/1995 1:30 +Arkadelphia,,SPHERE,TX,7/15/1995 2:00 +Acworth,,CIRCLE,GA,7/15/1995 5:30 +Auburn,,,WA,7/15/1995 7:10 +Illinois,,TRIANGLE,WI,7/15/1995 12:00 +Seattle,,,WA,7/15/1995 15:20 +Seattle,GREEN,,WA,7/15/1995 15:20 +Spokane,,DISK,WA,7/15/1995 19:00 +Penrose,,LIGHT,CO,7/15/1995 19:30 +Salem,YELLOW,EGG,NH,7/15/1995 20:00 +Urbana,,CIRCLE,OH,7/15/1995 20:00 +Brooklyn,,CIGAR,OH,7/15/1995 21:00 +Kensington,RED,LIGHT,CT,7/15/1995 21:00 +Methuen,YELLOW,OVAL,MA,7/15/1995 21:00 +East Tacoma,,DISK,WA,7/15/1995 21:30 +Santa Ana,,OTHER,CA,7/15/1995 22:00 +South Prarie,,FIREBALL,WA,7/15/1995 22:30 +Norman,,SPHERE,OK,7/15/1995 23:00 +Carthage,,LIGHT,IL,7/15/1995 23:30 +Edmonds,,LIGHT,WA,7/15/1995 23:49 +Santa Ana,,,CA,7/16/1995 1:40 +Macon,,,GA,7/16/1995 12:15 +Cherry Hill,,,NJ,7/16/1995 15:00 +Ringgold,,TRIANGLE,GA,7/16/1995 20:00 +Boone,RED,OVAL,NC,7/16/1995 21:30 +Holland County,,VARIOUS,AR,7/17/1995 1:30 +Fort Worth,,SPHERE,TX,7/18/1995 23:00 +Birmingham,,,AL,7/19/1995 0:30 +Sacramento,BLUE,,CA,7/19/1995 1:30 +Clinton Township,,OVAL,MI,7/19/1995 21:00 +Pacific,,,WA,7/19/1995 22:40 +Henry,,LIGHT,TN,7/20/1995 2:00 +Port Orchard,,,WA,7/20/1995 2:15 +Atlanta,,CIRCLE,GA,7/20/1995 12:30 +Mandan,,OTHER,ND,7/20/1995 16:00 +Vista,,,CA,7/20/1995 21:32 +Arlington,,FORMATION,MA,7/20/1995 22:00 +Renton,,,WA,7/20/1995 22:25 +Bellevue,,,WA,7/20/1995 23:00 +Philadelphia,RED,LIGHT,PA,7/21/1995 23:15 +Santa Clara,,,CA,7/22/1995 10:30 +Redding,,,CA,7/22/1995 20:00 +Springfield,,,IL,7/22/1995 20:00 +Snake River,,,ID,7/23/1995 23:00 +Olympia,,,WA,7/24/1995 3:00 +Tooele,,,UT,7/24/1995 21:00 +Arlington,,,IL,7/24/1995 22:30 +Ocate,,LIGHT,NM,7/25/1995 9:35 +West Seattle,,,WA,7/25/1995 15:00 +Chula Vista,,CIRCLE,CA,7/25/1995 19:00 +Marion,,,SD,7/25/1995 20:30 +Mason City,,,IA,7/26/1995 22:30 +Belleville,,,IL,7/27/1995 1:00 +Buffalo,,DISK,NY,7/27/1995 3:00 +Beaverton,,,OR,7/27/1995 13:52 +Riverside,,,CA,7/27/1995 21:30 +Rochester,RED GREEN,,NY,7/27/1995 23:20 +Bakersfield,,,CA,7/28/1995 0:01 +Belmont,,,CA,7/28/1995 0:10 +Folsom,,,CA,7/28/1995 0:15 +Seattle,,,WA,7/28/1995 3:45 +Racine,,,WI,7/28/1995 14:00 +Wauwatosa,BLUE,SPHERE,WI,7/28/1995 15:15 +Clarksville,RED,,VA,7/28/1995 23:10 +Parshallville,,,MI,7/29/1995 2:00 +Puyallup,,,WA,7/29/1995 13:52 +Culver City,,,CA,7/29/1995 22:30 +Portland,,,OR,7/29/1995 22:30 +San Fernando,,,CA,7/30/1995 0:10 +Bolivia,,,NC,7/30/1995 1:06 +Baltimore,,,MD,7/30/1995 22:00 +Chippewa Falls,,CIRCLE,WI,7/30/1995 22:00 +Newtown,,,CT,7/30/1995 22:00 +Highpoint,,,NC,7/30/1995 22:05 +San Fernando,BLUE,,CA,7/30/1995 22:45 +Trenton,,,NJ,7/31/1995 0:00 +Sarasota,,,FL,7/31/1995 21:30 +Morris Plains,,,NJ,7/31/1995 23:45 +London,,TEARDROP,OH,8/1/1995 0:00 +Van Nuys,,VARIOUS,CA,8/1/1995 1:45 +South East Merced,,DIAMOND,CA,8/1/1995 14:00 +Las Vegas,,FLASH,NV,8/1/1995 18:00 +Jack Fork Mountains,,LIGHT,OK,8/1/1995 21:45 +Pflugerville,,SPHERE,TX,8/1/1995 22:00 +Tacoma,,,WA,8/1/1995 22:10 +Seattle,,,WA,8/1/1995 22:45 +South Beach,,TRIANGLE,FL,8/1/1995 23:00 +Stanwood,,,WA,8/2/1995 13:30 +Deming,,,NM,8/2/1995 19:34 +Lynnwood,BLUE,,WA,8/2/1995 22:35 +Aurora,,,CO,8/3/1995 23:00 +Hazel Dell,,,WA,8/4/1995 1:00 +Bellevue,,,WA,8/4/1995 1:15 +Lynnwood,,,WA,8/4/1995 2:05 +Vancouver,,,WA,8/4/1995 2:40 +Shelton,,,WA,8/4/1995 20:00 +Nashua,,RECTANGLE,NH,8/4/1995 21:30 +Sacramento,,,CA,8/4/1995 21:35 +Crescent Lake,YELLOW,,WA,8/4/1995 22:30 +Santa Rosa,,,CA,8/4/1995 23:00 +Bothell,,,WA,8/4/1995 23:15 +Richmond,,OTHER,KY,8/5/1995 1:05 +Santee,,LIGHT,CA,8/5/1995 18:37 +Woodland,,,WA,8/5/1995 21:30 +Phillips,RED,,WI,8/5/1995 22:00 +Woodland,,,WA,8/5/1995 23:15 +Redwood,,,CA,8/6/1995 0:00 +Lacey,,,WA,8/6/1995 4:00 +Bakersfield,RED GREEN,,CA,8/6/1995 18:45 +Bakersfield,YELLOW,,CA,8/6/1995 20:50 +Reno,ORANGE,FORMATION,NV,8/6/1995 21:00 +Moosehead Lake,,,ME,8/6/1995 21:57 +Kalamazoo,RED BLUE,,MI,8/6/1995 22:30 +Bakersfield,,,CA,8/6/1995 23:45 +Bakersfield,RED GREEN,,CA,8/7/1995 0:30 +Bakersfield,,,CA,8/7/1995 12:00 +Memphis,,DISK,TN,8/7/1995 17:00 +Berthid,,,CO,8/7/1995 23:00 +Portland,,,OR,8/8/1995 0:40 +Clearwater,,,FL,8/8/1995 4:00 +Oregon City,,,OR,8/8/1995 21:30 +Clinton,RED YELLOW BLUE,,MO,8/8/1995 22:40 +Alum Creek,,,WV,8/8/1995 23:00 +Tucson,,,AZ,8/8/1995 23:00 +I-64,,TRIANGLE,IN,8/9/1995 2:10 +Fresno,RED,,CA,8/9/1995 21:25 +Panguitch,,LIGHT,UT,8/10/1995 21:00 +Oakland,,,CA,8/10/1995 21:45 +Beaverton,,,OR,8/11/1995 1:32 +Puyallup,,,WA,8/11/1995 4:00 +Sacramento,,,CA,8/11/1995 8:40 +Fort Myers Beach,,,FL,8/12/1995 1:00 +South of Sarasota,,VARIOUS,FL,8/12/1995 3:30 +Willamsburg,,DISK,VA,8/12/1995 15:00 +Interstate 10,,CIRCLE,FL,8/12/1995 17:00 +Arlington,,TRIANGLE,WA,8/12/1995 20:29 +Enola,,FIREBALL,PA,8/12/1995 21:00 +Laughlin,RED,LIGHT,NV,8/12/1995 21:00 +Bellevue,GREEN,,WA,8/12/1995 21:25 +Naples,,,FL,8/12/1995 21:34 +Seattle,GREEN,,WA,8/12/1995 21:43 +Lancaster,,,WA,8/12/1995 23:56 +Putman,,,CT,8/13/1995 5:00 +Newaygo,,CHEVRON,MI,8/13/1995 11:00 +Redmond,,,WA,8/13/1995 16:50 +Las Vegas,,TRIANGLE,NV,8/13/1995 18:30 +Martinez,,,CA,8/13/1995 21:05 +Ft. Dick,RED,,CA,8/13/1995 22:00 +Gig Harbor,,,WA,8/13/1995 22:00 +Coon Valley,,,WI,8/13/1995 23:10 +Federal Way,GREEN,,WA,8/14/1995 5:30 +Snoqualmie Pass,,,WA,8/14/1995 10:30 +Silverton,,TRIANGLE,OR,8/14/1995 20:30 +Martinez,,,CA,8/14/1995 20:50 +Tacoma,,,WA,8/14/1995 21:40 +Redmond,,LIGHT,WA,8/14/1995 23:00 +Cuena Park,,LIGHT,CA,8/15/1995 0:00 +Appalachian,,LIGHT,NY,8/15/1995 1:00 +Tacoma,,,WA,8/15/1995 4:30 +Arcadia Shores,,,WA,8/15/1995 5:15 +Vashon Island,BLUE,,WA,8/15/1995 5:28 +Fife,,,WA,8/15/1995 5:29 +Yankton,,OVAL,SD,8/15/1995 6:00 +Hoh River,BLUE,,WA,8/15/1995 11:00 +Chatsworth,,TEARDROP,GA,8/15/1995 17:00 +Hampton,,CIGAR,TN,8/15/1995 17:30 +Connecticut,,TRIANGLE,CT,8/15/1995 20:00 +Flagstaff,,OVAL,AZ,8/15/1995 20:00 +Hampton,ORANGE,OTHER,VA,8/15/1995 21:00 +Sandpoint,,DISK,ID,8/15/1995 21:00 +Grand Haven,,,MI,8/15/1995 21:05 +Brunswick,ORANGE,OTHER,ME,8/15/1995 21:30 +Crescent City,,,CA,8/15/1995 21:30 +Davis,,CONE,CA,8/15/1995 22:00 +Omaha,,DISK,NE,8/16/1995 20:00 +Aurora,,TRIANGLE,IL,8/16/1995 21:30 +Sumner,,,WA,8/16/1995 23:00 +Williston,,,VT,8/16/1995 23:00 +Redmond,,,WA,8/16/1995 23:30 +South Park,,,WA,8/17/1995 19:45 +McKenzie,,,ND,8/17/1995 20:45 +Granite,,,WA,8/17/1995 23:00 +Kearney,,,MO,8/18/1995 1:00 +Salt Lake City,,,UT,8/18/1995 15:00 +Dearborn,BLUE,TRIANGLE,MI,8/18/1995 22:45 +Forest Lake,,,MN,8/19/1995 1:15 +Hayworth,,,IL,8/19/1995 21:00 +Brunswick,,DISK,OH,8/20/1995 2:00 +Bowman,,TRIANGLE,SC,8/20/1995 4:00 +Beaverton,,,OR,8/20/1995 10:55 +Cantwell,,CIRCLE,AK,8/20/1995 11:30 +Colonial Beach,,,VA,8/20/1995 13:45 +Culver City,,,CA,8/20/1995 21:35 +Holly,YELLOW,,WA,8/20/1995 23:00 +Shapleigh,,,ME,8/20/1995 23:00 +Dowling,RED GREEN BLUE,,MI,8/21/1995 0:30 +La Crosse,,,WI,8/21/1995 2:00 +Tacoma,,,WA,8/21/1995 20:35 +Laporte,,,WA,8/21/1995 21:00 +Seattle,,,WA,8/21/1995 21:30 +Olathe,RED,,KS,8/21/1995 21:55 +Greensburg,GREEN,RECTANGLE,KY,8/22/1995 1:00 +Phoenix,,,AZ,8/22/1995 21:30 +Prescott,,,AZ,8/22/1995 21:45 +Bothell,,,WA,8/22/1995 22:00 +Fontana,ORANGE,,CA,8/22/1995 22:15 +Fontana,,,CA,8/22/1995 22:17 +Tempe,,,AZ,8/22/1995 23:25 +Puyallup,,,WA,8/23/1995 16:35 +Anaheim,,,CA,8/23/1995 20:35 +Upland,,,CA,8/23/1995 21:00 +Louisville,,,KY,8/23/1995 23:50 +Battle Creek,,,MI,8/24/1995 21:00 +Detroit,,OTHER,MI,8/25/1995 0:00 +Cheektowaga,,,NY,8/25/1995 0:30 +Adamsville,,,PA,8/25/1995 0:40 +Cleveland,,,OH,8/25/1995 0:40 +Edinboro,ORANGE,,PA,8/25/1995 0:40 +Greensburg,,,PA,8/25/1995 0:40 +Monticello,,,NY,8/25/1995 0:40 +Monticello,,CIRCLE,NY,8/25/1995 0:40 +Pittsburgh,,,PA,8/25/1995 0:40 +Niles,,DISK,OH,8/25/1995 0:42 +Nelson Ledges,,SPHERE,OH,8/25/1995 0:44 +Morris,,OTHER,AL,8/25/1995 1:00 +Breezewood,,,PA,8/25/1995 1:30 +Oxford,,LIGHT,MA,8/25/1995 3:00 +Olean,,TRIANGLE,NY,8/25/1995 9:15 +Kansas City,,,KS,8/25/1995 15:00 +Helena,,,MT,8/25/1995 20:00 +Bothell,RED BLUE,,WA,8/25/1995 20:30 +Sarasota,,,FL,8/25/1995 22:00 +Crescent City,,,CA,8/25/1995 23:00 +Interstate-5,,CIGAR,CA,8/26/1995 2:38 +Salida,,,CO,8/26/1995 10:00 +Provo,,,UT,8/26/1995 15:42 +Inyo Co.,,,CA,8/26/1995 20:00 +Auburn,,,WA,8/26/1995 21:15 +Williston,,,ND,8/26/1995 23:00 +Dade County,,,FL,8/26/1995 23:30 +Phoenix,,,AZ,8/26/1995 23:45 +Los Angeles,,,CA,8/27/1995 4:00 +Medford,,,OR,8/27/1995 13:10 +Lost Lake,,,OR,8/27/1995 21:00 +Oregon City,,,OR,8/27/1995 21:30 +Mass City,,,MI,8/28/1995 1:50 +Castle Rock,,,CO,8/28/1995 2:30 +Burbank,,,CA,8/28/1995 10:45 +Elizabethtown,RED,TRIANGLE,KY,8/29/1995 2:00 +Boise,,,ID,8/29/1995 5:50 +Inglewood,GREEN BLUE,,CA,8/29/1995 21:45 +La Habra,,,CA,8/29/1995 21:45 +Fresno,RED,,CA,8/30/1995 5:30 +Travis AFB,,,CA,8/30/1995 5:35 +Bakersfield,RED,,CA,8/30/1995 5:40 +Rock Valley,,TRIANGLE,IA,8/30/1995 23:10 +Reno,,,NV,8/31/1995 5:15 +Randolph,,,NJ,8/31/1995 20:30 +Mukilteo,YELLOW,,WA,8/31/1995 21:50 +Ocean Shores,,TRIANGLE,WA,9/1/1995 2:00 +Pahrump,,VARIOUS,NV,9/1/1995 9:00 +Pahrump,,LIGHT,NV,9/1/1995 9:30 +Savannah,,DIAMOND,GA,9/1/1995 10:00 +Eagle Butte,BLUE,LIGHT,SD,9/1/1995 10:30 +New York City,,,NY,9/2/1995 23:00 +Virginia Beach,,,VA,9/3/1995 22:30 +Playa del Rey,,LIGHT,CA,9/4/1995 5:45 +Colorado Springs,,,CO,9/4/1995 22:30 +Mercer Island,,,WA,9/5/1995 0:00 +Coweta,,DISK,OK,9/5/1995 15:00 +Albuquerque,,TRIANGLE,NM,9/5/1995 18:00 +Boise,,,ID,9/5/1995 23:00 +Grand Canyon,,LIGHT,AZ,9/6/1995 21:30 +Ashland,,CYLINDER,NH,9/6/1995 23:02 +Medford,,CIRCLE,OR,9/7/1995 3:30 +Portland,,,OR,9/8/1995 6:35 +St. Charles,,CHEVRON,IL,9/9/1995 0:30 +Lake Oswego,RED,,OR,9/9/1995 19:05 +Silverdale,,,WA,9/9/1995 22:50 +Nixon,,DISK,TX,9/10/1995 1:00 +Marion,,TRIANGLE,VA,9/10/1995 9:30 +Las Vegas,,,NV,9/10/1995 12:35 +Effingham,,CIGAR,IL,9/10/1995 20:00 +Auburn,,,WA,9/10/1995 22:00 +Salt Lake City,,,UT,9/11/1995 16:25 +Pierce City,,CIGAR,MO,9/11/1995 16:30 +Pierce City,,CIGAR,MO,9/11/1995 16:30 +Las Vegas,,,NV,9/11/1995 22:15 +Melbourne,,TRIANGLE,FL,9/11/1995 23:00 +Whitefish,,,MT,9/11/1995 23:23 +New London,,,CT,9/11/1995 23:30 +Leadville,,,CO,9/12/1995 8:58 +North Haven,,,CT,9/12/1995 10:21 +W. New Brunswick,,,NJ,9/12/1995 21:15 +Orangeburg,,,NY,9/12/1995 23:50 +Corpus Christi,,,TX,9/13/1995 0:10 +Tallahassee,,,FL,9/13/1995 0:20 +Missoula,,,MT,9/13/1995 0:30 +Superior,,,AZ,9/13/1995 1:39 +Midvale,,,UT,9/13/1995 4:25 +Potter Valley,RED,,CA,9/13/1995 5:05 +Silverdale,,,WA,9/13/1995 22:33 +Mason,,,MI,9/14/1995 3:55 +Potter Valley,RED,,CA,9/14/1995 5:05 +Clairton,GREEN BLUE,,PA,9/14/1995 19:00 +Douglas,,,AZ,9/14/1995 21:40 +Buffalo,,OTHER,NY,9/14/1995 21:45 +Wasilla,,LIGHT,AK,9/15/1995 2:00 +Kissimmee,RED,DISK,FL,9/15/1995 7:00 +Poway,,OTHER,CA,9/15/1995 7:30 +Redmond,,,WA,9/15/1995 10:25 +Las Vegas,,OTHER,NV,9/15/1995 14:00 +Seattle,,,WA,9/15/1995 15:00 +Windham,,LIGHT,ME,9/15/1995 21:00 +La Habra,,DISK,CA,9/15/1995 22:00 +New York City,,,NY,9/15/1995 22:00 +New York City,,,NY,9/15/1995 22:05 +Wyoming,ORANGE,,PA,9/15/1995 22:30 +Corvallis,,,MT,9/15/1995 22:45 +Wilsonville,,LIGHT,OR,9/16/1995 1:00 +Seattle,,,WA,9/16/1995 21:15 +Merlin,,,OR,9/16/1995 23:15 +Colorado Springs,,,CO,9/17/1995 0:30 +Richardson,RED,,TX,9/17/1995 20:00 +Alturas,,,CA,9/18/1995 4:10 +Wilcox,,,AZ,9/18/1995 4:20 +N. Kingston,,,RI,9/18/1995 18:40 +Seattle,,,WA,9/18/1995 20:55 +Kansas City,,,KS,9/18/1995 21:45 +Stanford,,,CA,9/19/1995 5:57 +Johnson City,,,TN,9/19/1995 22:46 +Humbolt,,,CA,9/19/1995 23:43 +Reno,,,NV,9/20/1995 3:30 +Wilberforce,,OVAL,OH,9/20/1995 5:00 +Green Bay,,DIAMOND,WI,9/20/1995 18:30 +Cold Bay,,FIREBALL,AK,9/20/1995 19:30 +Puyallup,,,WA,9/20/1995 21:00 +Sunflower,BLUE,CYLINDER,MS,9/20/1995 22:00 +Black Shear,,,GA,9/20/1995 23:30 +Concordia,,,KS,9/21/1995 21:00 +Seattle,,,WA,9/21/1995 23:00 +Virginia Beach,,,VA,9/22/1995 0:00 +Safford,,DISK,AZ,9/22/1995 3:00 +Portland,,,OR,9/22/1995 5:40 +Meridian,,OTHER,MS,9/22/1995 16:00 +Safford,,,AZ,9/22/1995 21:00 +Redmond,,,WA,9/22/1995 21:30 +Lake Charles,,,LA,9/22/1995 23:30 +Washington County,,,OR,9/23/1995 0:00 +Lake Oswego,,,OR,9/23/1995 15:45 +Delta,,FLASH,UT,9/23/1995 21:45 +Thibodaux,,OTHER,LA,9/23/1995 23:00 +Maple Valley,,,WA,9/24/1995 0:00 +Kissimmee,,DISK,FL,9/24/1995 20:00 +Boise,,,ID,9/24/1995 20:25 +Scappoose,RED,,OR,9/24/1995 20:45 +Lynnwood,,,WA,9/24/1995 23:00 +Hernando,,TRIANGLE,FL,9/25/1995 0:00 +Salt Lake City,RED,,UT,9/25/1995 6:01 +Lake Oswego,,,OR,9/25/1995 15:45 +Flushing,RED,,MI,9/25/1995 20:00 +Flushing,,,MI,9/25/1995 21:18 +Seattle,ORANGE,TRIANGLE,WA,9/25/1995 22:30 +Polson,,,MT,9/25/1995 22:50 +Ronan,,,MT,9/25/1995 23:00 +Ringtown,GREEN,TEARDROP,PA,9/27/1995 22:00 +Copley,,,PA,9/28/1995 0:00 +Napa,,,CA,9/28/1995 21:00 +Scottsdale,,FIREBALL,AZ,9/28/1995 21:00 +Las Vegas,,,NV,9/28/1995 21:50 +San Francisco,,,CA,9/29/1995 12:50 +Sacramento,,,CA,9/29/1995 19:00 +Manchester,,,ME,9/29/1995 19:30 +Manchester,,,ME,9/29/1995 19:30 +N. Providence,,,RI,9/30/1995 13:30 +Monroeville,,TRIANGLE,IN,9/30/1995 19:00 +Baltimore,,DISK,MD,9/30/1995 20:00 +Anderson,,,IN,9/30/1995 23:00 +Troy,RED GREEN,,ME,9/30/1995 23:10 +Iowa City,,,IA,10/1/1995 12:00 +Lake Oswego,,,OR,10/1/1995 14:00 +Lake Oswego,,,OR,10/1/1995 16:30 +Ashland,,DISK,KY,10/1/1995 17:00 +Williamsburg,,RECTANGLE,PA,10/1/1995 18:30 +Vacaville,ORANGE,,CA,10/1/1995 21:00 +Tinley Park,ORANGE,OTHER,IL,10/1/1995 22:00 +Wantagh,,TRIANGLE,NY,10/1/1995 22:00 +Austin,,,TX,10/1/1995 22:30 +Piedmont,,,CA,10/1/1995 22:30 +Dover,,TRIANGLE,NH,10/1/1995 23:00 +Santa Rosa,,,CA,10/2/1995 0:20 +N. Providence,,,RI,10/2/1995 10:15 +Garberville,,,CA,10/2/1995 16:08 +Farmington,,,MN,10/2/1995 19:50 +Fort Worth,,DISK,TX,10/3/1995 20:20 +Volinda,,,CA,10/3/1995 23:15 +Seattle,,,WA,10/4/1995 22:30 +North Las Vegas,,,NV,10/5/1995 19:00 +Slidell,,FORMATION,LA,10/5/1995 21:30 +Puyallup,,,WA,10/6/1995 19:00 +West Valley City,,,UT,10/7/1995 19:15 +Muskegon,,,MI,10/7/1995 20:15 +Wolf Lake,,,MI,10/7/1995 20:17 +Jacksonville,,TRIANGLE,FL,10/7/1995 22:30 +Phoenix,,,AZ,10/8/1995 18:00 +Iowa City,,,IA,10/9/1995 0:00 +Milwaukee,BLUE,,WI,10/10/1995 19:45 +Oakland,,,CA,10/10/1995 22:40 +New York City,RED,,NY,10/11/1995 18:30 +Huntington,,,WV,10/11/1995 20:00 +Pueblo,,TRIANGLE,CO,10/12/1995 20:30 +Crescent City,,,CA,10/13/1995 5:50 +New York City,,LIGHT,NY,10/13/1995 6:30 +Tacoma,,,WA,10/13/1995 20:00 +Meridith,,LIGHT,MI,10/13/1995 22:30 +Des Moines,,,WA,10/14/1995 13:25 +Belmont,RED GREEN,TRIANGLE,MI,10/14/1995 20:05 +Dayton,,,WA,10/14/1995 22:30 +Madison,,,WI,10/14/1995 22:30 +Sandpoint,,,ID,10/14/1995 22:30 +Spokane,ORANGE GREEN,,WA,10/14/1995 22:30 +Troy,GREEN,,MT,10/14/1995 22:30 +Abilene,,,KS,10/14/1995 23:20 +Santee,GREEN,LIGHT,CA,10/15/1995 1:30 +Fostoria,,DIAMOND,OH,10/15/1995 1:45 +Hawesville,,CIGAR,KY,10/15/1995 15:00 +Lawton,,SPHERE,OK,10/15/1995 15:00 +Westminster,,,SC,10/15/1995 17:30 +Godfrey,,,IL,10/15/1995 18:15 +Emporia,,LIGHT,VA,10/15/1995 20:15 +Evansville,,,IN,10/15/1995 22:00 +Woodstock,,,CT,10/15/1995 22:15 +Chatsworth,,FIREBALL,CA,10/15/1995 23:30 +Scofield Barracks,,,HI,10/16/1995 5:57 +Brooksville,,FIREBALL,FL,10/17/1995 1:00 +Ponte Vedra Beach,,OTHER,FL,10/17/1995 3:15 +Miami,,,FL,10/17/1995 20:45 +Mergas,,,GA,10/17/1995 21:15 +Crescent City,,,CA,10/17/1995 21:38 +Tonopah,,CHEVRON,NV,10/18/1995 3:00 +Grass Lake,,,MI,10/18/1995 18:45 +Vancouver,,,WA,10/19/1995 0:00 +Colorado Springs,YELLOW,OTHER,CO,10/19/1995 1:00 +Rocky Point,,,WA,10/19/1995 5:30 +Vancouver,,,WA,10/19/1995 9:15 +Beaverton,,,OR,10/19/1995 19:15 +Clayton,,OVAL,GA,10/20/1995 22:00 +Medford,,FIREBALL,OR,10/20/1995 22:00 +Simi Valley,,LIGHT,CA,10/20/1995 22:00 +Franklinton,,CIRCLE,NC,10/21/1995 20:30 +Rochester,,DISK,NY,10/21/1995 22:00 +Utica,,DISK,NY,10/21/1995 22:20 +Bessemer,,,AL,10/22/1995 2:30 +Auburn,,,CA,10/22/1995 19:35 +Johnson City,,,TN,10/23/1995 21:30 +Oklahoma City,,CIGAR,OK,10/24/1995 0:00 +Hollister,,,CA,10/24/1995 2:00 +Brunswick County,,,ND,10/25/1995 16:55 +Center Valley,,TRIANGLE,PA,10/25/1995 18:00 +Puyallup,YELLOW,LIGHT,WA,10/25/1995 23:00 +Prince of Wales Island,,,AK,10/27/1995 20:28 +Siletz,,,OR,10/27/1995 21:23 +Greenwood,,,CA,10/28/1995 1:30 +Auburn,,,WA,10/28/1995 20:00 +Antelope,,,CA,10/28/1995 21:00 +Ellisville,,,MO,10/29/1995 21:40 +Kodak,,,TN,10/29/1995 21:40 +,,TRIANGLE,WA,10/30/1995 21:30 +Seattle,,,WA,10/30/1995 23:30 +Tacoma,,LIGHT,WA,10/31/1995 19:00 +Startup,RED,,WA,10/31/1995 20:45 +Tacoma,,,WA,10/31/1995 21:10 +Rockdale County,,CIRCLE,GA,10/31/1995 22:00 +West Hartford,,,CT,10/31/1995 22:05 +Bothell,,,WA,11/1/1995 0:15 +Lakeport,RED,LIGHT,CA,11/1/1995 0:30 +Randolph,,CIRCLE,MA,11/1/1995 2:00 +Randolph,,LIGHT,MA,11/1/1995 2:00 +Palm Springs,,TRIANGLE,CA,11/1/1995 4:00 +Manson,,,WA,11/1/1995 11:40 +Lake Forest,ORANGE,,CA,11/1/1995 16:00 +San Juan,,SPHERE,CA,11/1/1995 18:30 +Stroudsburg,,SPHERE,PA,11/1/1995 20:00 +Sedro Woolley,,,WA,11/1/1995 21:45 +Fontana,,OTHER,CA,11/1/1995 22:00 +Daphne,,TRIANGLE,AL,11/1/1995 22:30 +Plano,,SPHERE,TX,11/1/1995 22:30 +Albany,,,NY,11/3/1995 0:00 +Maryland Heights,,,MO,11/3/1995 14:17 +Belmont,,,CA,11/3/1995 22:25 +Colton,,,CA,11/3/1995 23:00 +West Seattle,,,WA,11/3/1995 23:06 +Brockton,,,MA,11/4/1995 0:00 +Chelan,ORANGE,,WA,11/4/1995 11:53 +Alfalfa,,,OR,11/4/1995 23:45 +Lexington,,,KY,11/5/1995 0:00 +Kirksville,,SPHERE,MO,11/5/1995 18:00 +Champaign,,,IL,11/5/1995 21:45 +Mascoutah,,,IL,11/5/1995 23:20 +St. Augustine,,,FL,11/6/1995 0:15 +Tampa,,,FL,11/6/1995 0:20 +Lebanon,,,OR,11/6/1995 20:45 +Rockland,,,CA,11/7/1995 23:10 +Pilot Rock,BLUE,LIGHT,OR,11/8/1995 19:00 +Elizabeth,,OVAL,NJ,11/9/1995 16:30 +Beaverton,,,OR,11/10/1995 19:50 +Embarrass,,DISK,MN,11/10/1995 20:00 +Eilmsport,,,PA,11/10/1995 21:00 +Auburn,GREEN BLUE,,WA,11/10/1995 23:25 +Brownsville,,CIRCLE,TX,11/10/1995 23:45 +Eugene,,,OR,11/11/1995 1:15 +Pichacho Peak,,CIRCLE,AZ,11/11/1995 10:00 +Rock Island,,LIGHT,WA,11/11/1995 18:25 +Solvang,,,CA,11/11/1995 19:00 +Kirkland,RED,,WA,11/11/1995 21:45 +Keesler AFB,,,MS,11/12/1995 19:00 +Las Vegas,,,NV,11/12/1995 21:00 +Roy,RED,TRIANGLE,UT,11/12/1995 23:20 +Birmingham,,,AL,11/13/1995 0:15 +Lake Oswego,GREEN,,OR,11/13/1995 19:50 +American Canyon,RED GREEN,,CA,11/14/1995 18:30 +Midway,,,GA,11/14/1995 18:45 +Green Co.,,,TN,11/15/1995 3:00 +Milwaukee,,FIREBALL,WI,11/15/1995 19:30 +La Puente,,OTHER,CA,11/15/1995 22:00 +Boulder,GREEN,FORMATION,CO,11/15/1995 22:30 +North East,,OVAL,MD,11/15/1995 23:00 +Elk Grove,,,CA,11/16/1995 21:40 +Tacoma,,,WA,11/17/1995 0:30 +Simsbury,,,CT,11/17/1995 17:18 +Merrick,,CHEVRON,NY,11/17/1995 21:00 +Moriches,,OTHER,NY,11/17/1995 22:05 +Basking Ridge,RED,,NJ,11/17/1995 22:20 +Orange,RED,,VT,11/17/1995 22:20 +Sector 18,GREEN,,NY,11/17/1995 22:20 +Lower Nazareth,,,PA,11/17/1995 22:25 +Yarmouth,,,ME,11/17/1995 22:26 +York,,,ME,11/17/1995 22:27 +Fall River,GREEN,,MA,11/17/1995 22:30 +Biddeford,,,ME,11/17/1995 22:35 +Arlington,,,WA,11/17/1995 23:00 +Seattle,,,WA,11/17/1995 23:00 +Seattle,RED BLUE,,WA,11/17/1995 23:00 +Seattle,,,WA,11/17/1995 23:30 +Seattle,RED BLUE,,WA,11/17/1995 23:30 +Seymour-Johnson AFB,,,NC,11/17/1995 23:30 +Orlando,,,FL,11/18/1995 0:00 +Muskegon,RED,,MI,11/18/1995 1:15 +Seattle,,,WA,11/18/1995 15:08 +Mojave,,,CA,11/18/1995 17:40 +Ringgold,,DELTA,GA,11/18/1995 21:00 +Framingham,GREEN,,MA,11/19/1995 0:26 +Phoenix,,,AZ,11/19/1995 17:30 +Trenton,,,IA,11/19/1995 18:00 +Carson City,,,NV,11/19/1995 18:30 +Redding,RED ORANGE YELLOW BLUE,,CA,11/19/1995 18:30 +Placerville,,,CA,11/19/1995 18:35 +Redding,ORANGE GREEN,,CA,11/19/1995 18:37 +Holton,,,KS,11/19/1995 20:45 +Olathe,RED BLUE,,KS,11/19/1995 21:50 +Virginia Beach,YELLOW,,VA,11/19/1995 23:06 +Virginia Beach,,CIRCLE,VA,11/19/1995 23:06 +Elizabethtown,,OTHER,KY,11/20/1995 2:00 +College Station,,LIGHT,TX,11/20/1995 5:15 +Belle Fourche,GREEN,,SD,11/20/1995 6:15 +Tampa,,,FL,11/20/1995 13:42 +Mayfield,,TRIANGLE,KY,11/20/1995 19:00 +Sumter,,,SC,11/20/1995 19:12 +Federal Way,,,WA,11/20/1995 20:25 +Bremerton,,,WA,11/20/1995 21:50 +Christmas Valley,,LIGHT,OR,11/20/1995 22:00 +Peyton,,,CO,11/21/1995 18:00 +Memphis,,,TN,11/21/1995 22:00 +Washburn,,TRIANGLE,ND,11/21/1995 23:30 +Woodland,,,CA,11/22/1995 19:45 +Haltbro,,,PA,11/22/1995 20:03 +Gaithersberg,RED,FORMATION,MD,11/23/1995 1:00 +Comanche County,,,OK,11/24/1995 0:00 +Portland,RED GREEN,DISK,MI,11/24/1995 18:00 +Wishkah River,GREEN,,WA,11/25/1995 0:42 +Woodland,,,CA,11/25/1995 20:01 +Hickory,,SPHERE,NC,11/27/1995 0:00 +Lyons,,OTHER,CO,11/27/1995 20:00 +Fort Morgan,,,CO,11/27/1995 23:00 +Palm Springs,,,CA,11/28/1995 21:00 +Bellevue,,,WA,11/28/1995 21:30 +Antelope Valley,,LIGHT,CA,11/29/1995 16:40 +Redding,,,CA,11/29/1995 19:05 +Glen Ellen,,,CA,11/29/1995 21:28 +Howell,,,NJ,11/30/1995 22:35 +Waukesha,,,WI,12/1/1995 17:20 +Mount Shasta,,,CA,12/1/1995 21:00 +Owosso,,LIGHT,MI,12/1/1995 22:55 +Orland Park,,,IL,12/1/1995 23:40 +Sebastopal,,,CA,12/2/1995 22:00 +Chandler,,,AZ,12/3/1995 11:20 +Boring,,,OR,12/3/1995 21:00 +Nisqually Delta,,,WA,12/3/1995 22:00 +Deming,,VARIOUS,NM,12/4/1995 2:00 +Seattle,,LIGHT,WA,12/4/1995 2:14 +Geneva,,,NY,12/4/1995 22:16 +North Bend,,,WA,12/5/1995 20:30 +North Bend,,CHEVRON,WA,12/5/1995 20:30 +Bothell,,,WA,12/6/1995 17:00 +Lynnwood,,,WA,12/6/1995 22:45 +Oldsmar,ORANGE BLUE,LIGHT,FL,12/7/1995 20:40 +,,VARIOUS,CA,12/8/1995 18:00 +Springfield,,,IL,12/9/1995 18:30 +Rapid City,BLUE,CIRCLE,SD,12/10/1995 5:00 +Clayton,,,NM,12/10/1995 6:00 +Phoenix,,,AZ,12/10/1995 18:12 +Houston,,,TX,12/10/1995 22:45 +Jolliet,RED,,IL,12/10/1995 23:00 +Glen,,,NY,12/12/1995 22:30 +Upper Makefield,,,PA,12/13/1995 18:45 +Boise,,,ID,12/14/1995 4:24 +Pomona,,ROUND,CA,12/14/1995 14:45 +Las Vegas,BLUE,,NV,12/14/1995 21:40 +Elkridge,GREEN,FIREBALL,MD,12/15/1995 19:30 +Hawesville,ORANGE,VARIOUS,KY,12/15/1995 20:50 +Ainsworth,,LIGHT,NE,12/15/1995 22:00 +Greenville,ORANGE,,NC,12/17/1995 20:15 +New York City,,TRIANGLE,NY,12/18/1995 20:00 +Clinton,,TRIANGLE,MS,12/18/1995 21:00 +Scottsdale,,,AZ,12/18/1995 21:45 +Joliet,,OVAL,IL,12/19/1995 15:20 +Indian Heights,,,IN,12/19/1995 17:40 +Schnecksville,BLUE,,PA,12/20/1995 23:50 +Warren,,,MA,12/23/1995 23:50 +Pasadena,,LIGHT,TX,12/24/1995 0:00 +Moro,,TRIANGLE,AR,12/24/1995 17:30 +Centreville,,FIREBALL,AL,12/24/1995 22:00 +Christiansburg,,TRIANGLE,VA,12/24/1995 23:30 +California,,,CA,12/27/1995 20:15 +Indian Falls,,,NY,12/28/1995 4:35 +San Diego,,CROSS,CA,12/29/1995 23:00 +Seattle,,,WA,12/30/1995 1:00 +Livingston,,FIREBALL,MT,12/30/1995 9:30 +Longview,,,WA,12/31/1995 19:00 +Lake Stevens,,FIREBALL,WA,12/31/1995 21:00 +Crescent City,BLUE,LIGHT,CA,1/1/1996 1:30 +Key Largo,,TRIANGLE,FL,1/1/1996 3:30 +Phoenix,,,AZ,1/1/1996 7:10 +San Diego,,SPHERE,CA,1/1/1996 12:00 +Elizabethtown,,TRIANGLE,NC,1/1/1996 21:00 +Seattle,,SPHERE,WA,1/1/1996 23:00 +Scottsdale,YELLOW,,WA,1/2/1996 1:30 +Kelso,,,WA,1/3/1996 15:30 +Fort Smith,GREEN,,AR,1/3/1996 18:15 +Hayward,,,CA,1/3/1996 23:08 +Round Lake,RED,,IL,1/5/1996 1:30 +E. Greenville,,,PA,1/5/1996 22:00 +Portland,,,OR,1/7/1996 7:00 +St. George,,,UT,1/7/1996 11:30 +Boise,,TRIANGLE,ID,1/7/1996 17:00 +Logan,GREEN,,UT,1/7/1996 21:00 +Wenatchee,,,WA,1/8/1996 21:20 +Rockville,,,MD,1/9/1996 4:45 +Meadville,,,PA,1/10/1996 18:50 +Woodinville,YELLOW,,WA,1/11/1996 17:58 +Snowflake,,,AZ,1/11/1996 20:15 +Latour,RED,,MO,1/12/1996 21:40 +Springfield,,,MO,1/13/1996 0:00 +Lancaster,,,MO,1/13/1996 5:45 +Osage Beach,,,MO,1/13/1996 20:22 +Selma,,TRIANGLE,OR,1/13/1996 21:00 +Charleston,,,SC,1/14/1996 6:05 +Chesterfield,,,VA,1/14/1996 17:00 +Collinsville,,,IL,1/14/1996 21:00 +Panama City Beach,,CIRCLE,FL,1/15/1996 0:00 +Hill City,,OVAL,MN,1/15/1996 2:30 +Spanaway,,,WA,1/15/1996 5:00 +Loredo,RED,FORMATION,TX,1/15/1996 18:00 +Birmingham,,TEARDROP,AL,1/15/1996 22:00 +Seattle,,,WA,1/16/1996 7:40 +Monitor,,,WA,1/16/1996 22:32 +Monitor,ORANGE,,WA,1/16/1996 22:32 +San Diego,,,CA,1/18/1996 3:15 +Fayetteville,,,AR,1/18/1996 6:30 +Stockton,,LIGHT,NJ,1/20/1996 21:44 +Madison,,,WI,1/20/1996 22:00 +Fullerton,,TRIANGLE,CA,1/22/1996 11:00 +Redding,,,CA,1/22/1996 21:00 +Clark,,,MO,1/22/1996 21:30 +Minot,,,ND,1/23/1996 20:15 +Bartlett,,,TN,1/25/1996 15:04 +Redding,RED,,CA,1/25/1996 21:15 +Phoenix,,,AZ,1/25/1996 21:30 +Sedgewick,,,ME,1/26/1996 23:59 +Chandler,,,AZ,1/28/1996 0:00 +Oregon City,,,OR,1/30/1996 0:00 +Heflin,,LIGHT,AL,1/31/1996 2:00 +Buckhead Ridge,,LIGHT,FL,1/31/1996 20:15 +New Hampshire,ORANGE,,OH,2/1/1996 0:00 +Woodinville,,,WA,2/1/1996 6:07 +Doyline,,TRIANGLE,LA,2/1/1996 15:00 +Big Pine,,,CA,2/1/1996 21:00 +Las Vegas,GREEN,,NV,2/1/1996 21:05 +Kensington,,LIGHT,MD,2/1/1996 22:00 +Platteville,,CIRCLE,WI,2/1/1996 22:30 +Portland,,,OR,2/2/1996 20:35 +Lake Oswego,,,OR,2/3/1996 11:00 +Walla Walla Airport,YELLOW,,WA,2/3/1996 22:44 +Marblemount,,,WA,2/4/1996 13:30 +Gilbert,,,AZ,2/7/1996 17:30 +Redding,,,CA,2/8/1996 0:15 +St. Joseph,GREEN,SPHERE,MO,2/8/1996 7:11 +Danville,,DISK,VA,2/9/1996 10:00 +Langley,,CYLINDER,WA,2/9/1996 17:50 +Granite Falls,,CYLINDER,WA,2/9/1996 18:25 +Redmond,,,WA,2/9/1996 18:30 +Woodinville,,,WA,2/9/1996 18:40 +Seattle,,,WA,2/9/1996 18:45 +Whidbey Island,,,WA,2/9/1996 18:45 +Charleston,,,OR,2/9/1996 19:30 +Eureka,,,CA,2/9/1996 19:45 +Hollywood,,,FL,2/9/1996 21:40 +Mount Shasta,,FIREBALL,CA,2/10/1996 17:00 +Big Cypress Parks,,CIRCLE,FL,2/11/1996 14:00 +Lake Stevens,RED,,WA,2/11/1996 19:30 +Sweet Home,,,OR,2/13/1996 18:30 +Parkers Prairie,,CIRCLE,MN,2/14/1996 18:30 +New Gretna,,VARIOUS,NJ,2/14/1996 20:00 +Miltona,,CIRCLE,MN,2/14/1996 21:30 +Camden,,OTHER,SC,2/15/1996 16:00 +Cashmere,ORANGE,,WA,2/16/1996 4:10 +Reno,,,NV,2/16/1996 18:22 +Ithaca,,,NY,2/16/1996 21:45 +Cactus Flats,,,CA,2/17/1996 19:30 +Cedar Springs,,,MI,2/18/1996 2:05 +Gainesville,,DIAMOND,FL,2/18/1996 19:45 +Vero Beach,,,FL,2/19/1996 20:45 +Whidbey Island,,,WA,2/19/1996 22:44 +Benicia,RED,VARIOUS,CA,2/20/1996 1:00 +Poway,,LIGHT,CA,2/23/1996 12:40 +Los Angeles,,TRIANGLE,CA,2/23/1996 20:15 +Madison,,,TN,2/23/1996 21:29 +Prineville,,,OR,2/23/1996 22:30 +Edwards AFB,ORANGE,,CA,2/24/1996 3:15 +Tehachapi Mtns.,ORANGE,LIGHT,CA,2/24/1996 3:20 +Glendora,RED,,CA,2/24/1996 3:27 +Edwards AFB,,,CA,2/25/1996 0:00 +Doylestown,,,PA,2/25/1996 2:30 +Fort Lauderdale,,DIAMOND,FL,2/26/1996 12:20 +Seattle,,,WA,2/27/1996 0:00 +Troutdale,,,WA,2/27/1996 0:00 +Marysville,YELLOW,,WA,2/27/1996 19:45 +Detroit,,LIGHT,MI,2/27/1996 21:30 +Cleveland,,,OH,2/27/1996 22:00 +Saginaw,,,MI,2/27/1996 22:01 +Saginaw,,LIGHT,MI,2/27/1996 22:01 +Newcastle,,,WA,2/28/1996 7:10 +Tri-Cities,,,WA,2/28/1996 19:45 +Bothell,,,WA,2/28/1996 19:48 +Lynnwood,,,WA,2/28/1996 19:50 +Redmond,,,WA,2/28/1996 19:50 +La Crosse,,LIGHT,WI,2/28/1996 21:00 +Cedar Springs,RED GREEN,,MI,2/29/1996 1:15 +Redmond,ORANGE,,WA,2/29/1996 19:45 +Princeton,ORANGE,,WI,3/1/1996 0:00 +Norman,,LIGHT,OK,3/1/1996 8:00 +Byron,,FORMATION,NY,3/1/1996 19:00 +Issaquah,RED BLUE,,WA,3/1/1996 19:08 +Seattle,YELLOW,,WA,3/1/1996 19:30 +Redmond,ORANGE,,WA,3/1/1996 19:55 +Bothell,RED,,WA,3/1/1996 19:58 +Seatac,RED GREEN BLUE,,WA,3/1/1996 21:30 +Bath,,,IL,3/1/1996 22:15 +Mountain Village,,,AK,3/2/1996 0:30 +Seattle,,,WA,3/2/1996 19:10 +Casa Grande,,,AZ,3/4/1996 19:25 +Lemore,,,CA,3/5/1996 0:00 +Whidbey Island,,LIGHT,WA,3/5/1996 19:45 +Lakeside,,LIGHT,CA,3/6/1996 18:05 +Frankfort,BLUE,OTHER,IL,3/6/1996 19:00 +Coral Gables,,,FL,3/7/1996 0:25 +Henderson,,,NV,3/7/1996 20:55 +Llano,,OVAL,CA,3/8/1996 1:00 +Boise,,,ID,3/9/1996 1:15 +Morristown,,OTHER,NJ,3/9/1996 21:05 +Horry County,,,SC,3/11/1996 0:00 +Pink Hill,,,NC,3/13/1996 23:05 +Shafter,,,CA,3/14/1996 10:00 +Sewickly,,DOME,PA,3/15/1996 0:00 +Spokane,,FLASH,WA,3/15/1996 1:00 +Cotati,,SPHERE,CA,3/15/1996 1:30 +Wethersfield,,DISK,CT,3/15/1996 13:00 +Houston,,VARIOUS,TX,3/15/1996 18:00 +Evansville,ORANGE,,IN,3/15/1996 18:35 +St. Petersburg,,,FL,3/19/1996 20:30 +Texas highway 54 heading into NM - after crossing I-10,,OTHER,TX,3/19/1996 20:30 +Woodland,,,CA,3/20/1996 0:00 +Appalachin,,DISK,NY,3/20/1996 19:00 +Seattle,,,WA,3/20/1996 21:00 +Three Rivers,,TRIANGLE,MI,3/21/1996 0:00 +Three Rivers,,LIGHT,MI,3/21/1996 21:00 +Bethesda,,,MD,3/22/1996 8:00 +Meridian,,,MS,3/22/1996 16:00 +Maple Valley,,OVAL,WA,3/22/1996 21:30 +Houston,,,TX,3/22/1996 23:29 +Middletown,,,NJ,3/23/1996 0:00 +Guemes Island,,,WA,3/23/1996 19:16 +Ocalla,,,FL,3/23/1996 20:00 +Salinas,,LIGHT,CA,3/23/1996 20:58 +Medford,,,NY,3/24/1996 19:25 +Austin,,,TX,3/24/1996 20:10 +Allentown,,,PA,3/24/1996 23:15 +Portland,,,OR,3/25/1996 23:56 +Pleasant Valley,,,CT,3/26/1996 0:16 +Irvine,ORANGE,CONE,CA,3/26/1996 14:00 +Miami,RED YELLOW,,FL,3/26/1996 19:30 +Thousand Oaks,,,CA,3/26/1996 21:45 +Seattle,,,WA,3/27/1996 2:15 +Greendale,,RECTANGLE,IN,3/28/1996 19:40 +Greendale,,RECTANGLE,KY,3/28/1996 19:40 +Anderson,,CROSS,CA,3/30/1996 10:00 +N. Everett,,CYLINDER,WA,3/30/1996 17:00 +Throop,,LIGHT,PA,3/30/1996 21:00 +Auburn,RED,,WA,3/30/1996 23:00 +Lumberton,,,TX,4/1/1996 0:00 +Wartrace,,,TN,4/1/1996 1:00 +Kingston,,TRIANGLE,AR,4/1/1996 18:00 +Monument Valley,,LIGHT,UT,4/1/1996 19:00 +Harrisburg,,FORMATION,PA,4/1/1996 22:00 +Washington,,,PA,4/1/1996 22:00 +Mason,,,MI,4/1/1996 22:26 +Anamosa,,FIREBALL,IA,4/1/1996 23:00 +Dayton,,DISK,NV,4/1/1996 23:00 +Purchase,,TRIANGLE,NY,4/1/1996 23:00 +Mussel Shoals,BLUE,OTHER,AL,4/2/1996 13:00 +Jacksonville,,,FL,4/2/1996 20:15 +Lagrange,,LIGHT,KY,4/3/1996 16:00 +Las Vegas,,,NV,4/3/1996 22:30 +Fontana,,,CA,4/3/1996 23:00 +Fontana,ORANGE,,CA,4/3/1996 23:00 +Las Vegas,,,NV,4/4/1996 2:45 +Redding,,DISK,CA,4/5/1996 12:00 +San Diego,RED,,CA,4/5/1996 20:30 +San Diego,RED,,CA,4/5/1996 21:00 +San Diego,RED,,CA,4/5/1996 21:00 +San Diego,RED,FORMATION,CA,4/5/1996 21:00 +San Diego,RED,LIGHT,CA,4/5/1996 21:00 +Arlington,,DISK,WA,4/5/1996 23:30 +Billings,,,MT,4/6/1996 22:07 +Lakewood,,,CO,4/7/1996 11:50 +Bellflower,,,CA,4/7/1996 13:30 +Seattle,,,WA,4/7/1996 18:15 +Bradenton,,,FL,4/9/1996 21:50 +Moundhouse,,DISK,NV,4/10/1996 23:00 +Santa Cruz,,CYLINDER,CA,4/11/1996 12:44 +Memphis,RED,,TN,4/11/1996 13:00 +Nikishi,RED,,AK,4/12/1996 2:00 +Olathe,,,KS,4/12/1996 21:45 +Baltimore,,,MD,4/12/1996 22:08 +Phillipsburg,,,PA,4/12/1996 23:55 +Phillipsburg,,,PA,4/12/1996 23:55 +Fort Myers,ORANGE,,FL,4/13/1996 23:17 +Luck,,,WI,4/14/1996 0:00 +Minneapolis,,,MN,4/14/1996 2:00 +Polk County,,,WI,4/14/1996 2:00 +Petoskey,,,MI,4/14/1996 2:05 +St. Cloud,,,MN,4/14/1996 2:05 +Wyoming,,,MN,4/14/1996 2:10 +Cheboygan,,,MI,4/14/1996 3:05 +Petoskey,,,MI,4/14/1996 3:10 +St. Ignace,,,MI,4/14/1996 3:10 +Groton,,OTHER,CT,4/14/1996 13:00 +St. Johns,,,MI,4/14/1996 22:00 +Gretna,,SPHERE,LA,4/15/1996 0:30 +Long Beach,GREEN,FIREBALL,CA,4/15/1996 5:11 +Bakersfield,,,CA,4/15/1996 5:13 +Bakersfield,BLUE,,CA,4/15/1996 5:13 +Campbell,,,CA,4/15/1996 5:13 +Fort Morgan,,LIGHT,CO,4/15/1996 5:30 +Lacoochee,,FIREBALL,FL,4/15/1996 14:00 +Monrovia,,CHEVRON,CA,4/15/1996 14:00 +Fort Collins,,,CO,4/15/1996 16:35 +Big Stone Gap,,LIGHT,VA,4/15/1996 21:00 +Los Angeles,,OTHER,CA,4/15/1996 21:00 +Kelso,ORANGE YELLOW,CYLINDER,WA,4/15/1996 23:00 +Pleasant Hill,RED,,CA,4/16/1996 1:45 +Pine Bluff,,,AR,4/17/1996 21:00 +Socorro,,TRIANGLE,NM,4/20/1996 0:00 +Gilman,,,VT,4/20/1996 1:00 +La Crosse,,TRIANGLE,WI,4/20/1996 15:00 +Redding,,,CA,4/20/1996 22:05 +Rochester,,,MN,4/22/1996 3:15 +Gunteersville,,CIRCLE,AL,4/22/1996 17:00 +Edmonds,,,WA,4/22/1996 21:30 +Richmond,,,VA,4/23/1996 17:10 +no data,,,MO,4/23/1996 22:45 +Port Angeles,,,WA,4/24/1996 1:15 +Santa Barbara,,,CA,4/25/1996 21:30 +Gold River,RED,,CA,4/25/1996 22:00 +Bishop,,,CA,4/25/1996 22:05 +Riggins,,EGG,ID,4/25/1996 23:00 +Langley,,,WA,4/26/1996 3:30 +McAllen,YELLOW,DISK,TX,4/26/1996 12:30 +Merced,,,CA,4/26/1996 20:50 +Lake Nacemiento,,,CA,4/26/1996 20:55 +San Jose,,,CA,4/27/1996 1:30 +Albany,,,OR,4/27/1996 22:30 +Fort Walton Beach,,,Fl,4/28/1996 0:10 +Mile 69,,,WY,4/28/1996 1:00 +Kalispell,GREEN,,MT,4/28/1996 1:30 +Idaho Falls,BLUE,,ID,4/28/1996 1:40 +Idaho Falls,BLUE,,ID,4/28/1996 1:45 +Holopaw,,VARIOUS,FL,4/28/1996 12:00 +Sacramento,,OTHER,CA,4/29/1996 21:30 +Spokane,,,WA,4/30/1996 22:05 +Rochester,,TRIANGLE,NY,5/1/1996 1:00 +Burns,,TRIANGLE,OR,5/1/1996 1:30 +,,TRIANGLE,OH,5/1/1996 3:00 +Butler,,DISK,PA,5/1/1996 12:15 +Corvalis,BLUE,TRIANGLE,OR,5/1/1996 19:00 +Why,,LIGHT,AZ,5/1/1996 21:00 +Cody,,OTHER,WY,5/1/1996 22:00 +Lumpkin,,DISK,GA,5/1/1996 23:00 +Morris,,,MI,5/4/1996 5:30 +Graford,,LIGHT,TX,5/4/1996 21:45 +Fagle,,,ID,5/4/1996 23:15 +Cortero,,,AZ,5/5/1996 15:10 +New York City,,FIREBALL,NY,5/5/1996 20:00 +San Bruno,RED GREEN,,CA,5/5/1996 20:25 +San Francisco,,,CA,5/5/1996 21:45 +New York City,,LIGHT,NY,5/6/1996 20:00 +New York City,,LIGHT,NY,5/6/1996 20:00 +Tampa,,,FL,5/6/1996 22:00 +Fresno,,,CA,5/7/1996 20:00 +Snelling,,,CA,5/7/1996 21:15 +Tempe,,,AZ,5/7/1996 21:40 +Coos Bay,,,OR,5/7/1996 21:45 +Gardena,,,CA,5/8/1996 1:10 +Cocoa Beach,,,FL,5/8/1996 15:00 +Cle Elum,,,WA,5/8/1996 22:00 +Phoenix,,,AZ,5/9/1996 14:15 +Mansfield,,,TX,5/9/1996 20:20 +Macon,,,GA,5/9/1996 21:23 +Everett,,,WA,5/10/1996 21:30 +Norwood,,FORMATION,PA,5/11/1996 17:00 +Idaho Falls,,LIGHT,ID,5/12/1996 2:00 +Sewanee,,SPHERE,TN,5/12/1996 14:00 +Van Alstyne,,DISK,TX,5/12/1996 21:00 +Kelseyville,,,CA,5/12/1996 23:00 +Santa Cruz,,,CA,5/12/1996 23:00 +Black Hills,,,SD,5/13/1996 20:15 +Rochester,ORANGE YELLOW,,NY,5/13/1996 22:45 +Scottsdale,,,AZ,5/14/1996 21:00 +Tulsa,GREEN,SPHERE,OK,5/15/1996 3:00 +Atolicita Hills,,,CA,5/15/1996 4:50 +Jacksonville,,,FL,5/15/1996 6:15 +Frankfort,RED,TRIANGLE,IL,5/15/1996 21:00 +Bellflower,RED,,CA,5/15/1996 22:05 +Willard,,CIGAR,MO,5/15/1996 22:30 +Covington,,OTHER,KY,5/16/1996 21:17 +Miami,ORANGE,,Fl,5/17/1996 1:30 +Carneys Point,,CYLINDER,NJ,5/18/1996 12:35 +Hampton,,,VA,5/18/1996 22:30 +Seattle,YELLOW,,WA,5/18/1996 23:20 +Salisbury,,,MD,5/19/1996 0:00 +Santa Barbara,,,CA,5/19/1996 2:30 +Visalia,,,CA,5/19/1996 21:45 +Passaic,,DISK,NJ,5/20/1996 16:00 +High Point,,FIREBALL,NC,5/20/1996 23:00 +Burgettstown,,TRIANGLE,PA,5/21/1996 1:00 +Charleston,RED,,IL,5/21/1996 23:58 +Hilliard,RED,,OH,5/22/1996 0:00 +Venice,,,Fl,5/22/1996 20:30 +Huntington,,,WV,5/22/1996 22:30 +Rockford,,,WA,5/23/1996 22:30 +Mint Hill,,TRIANGLE,NC,5/24/1996 20:45 +Youngstown,,,OH,5/24/1996 22:30 +Bowie,,,MD,5/24/1996 23:05 +Chico,,TRIANGLE,CA,5/25/1996 23:00 +Fort Myers,,,Fl,5/26/1996 1:55 +Sullivan,,,MO,5/26/1996 18:36 +Neodesha,,,KS,5/26/1996 21:20 +Riverside,,,CA,5/26/1996 22:10 +Amargosa Valley,,LIGHT,NV,5/27/1996 20:30 +Baltimore,,,MD,5/28/1996 3:00 +Mindon,,CYLINDER,UT,5/28/1996 23:10 +Antioch,,,CA,5/29/1996 3:55 +Menoken,,SPHERE,ND,5/29/1996 23:10 +Chinquipin,,LIGHT,TX,5/31/1996 3:00 +Guerneville,,DIAMOND,CA,6/1/1996 0:00 +Hinckley,,,OH,6/1/1996 0:00 +Longmont,,OTHER,CO,6/1/1996 0:00 +Gibsonton,,LIGHT,FL,6/1/1996 2:00 +Ft Mead,,TRIANGLE,ME,6/1/1996 2:30 +Collingswood,ORANGE,CIRCLE,NJ,6/1/1996 2:50 +Waunakee,,CYLINDER,WI,6/1/1996 3:15 +Beltsville,,TRIANGLE,MD,6/1/1996 5:30 +Seattle,,OTHER,WA,6/1/1996 7:00 +Linden,,DISK,MI,6/1/1996 8:00 +Long Island,,CIRCLE,NY,6/1/1996 13:00 +Lakebay,,TRIANGLE,WA,6/1/1996 14:00 +Chapmansboro,,CIGAR,TN,6/1/1996 17:00 +San Marcos,,OVAL,TX,6/1/1996 17:00 +El Paso,,DISK,TX,6/1/1996 20:00 +Eugene,,TRIANGLE,OR,6/1/1996 20:00 +Klamath Falls to Medford,,LIGHT,OR,6/1/1996 20:00 +Richlands,,LIGHT,NC,6/1/1996 20:30 +New Orleans,,VARIOUS,LA,6/1/1996 21:00 +New Orleans,,VARIOUS,LA,6/1/1996 21:00 +South Kingstown,,DISK,RI,6/1/1996 21:00 +Johnstown,,OVAL,PA,6/1/1996 22:00 +Summerlin,,FIREBALL,NV,6/1/1996 22:00 +Midwest City,,TRIANGLE,OK,6/1/1996 22:30 +Concord,RED,LIGHT,CA,6/1/1996 22:45 +North Providence,,SPHERE,RI,6/1/1996 23:00 +Oglethorpe,,,GA,6/3/1996 18:30 +Gaithersburg,,,MD,6/3/1996 20:00 +Scottsdale,,,AZ,6/4/1996 21:00 +Show Low,,OTHER,AZ,6/4/1996 22:00 +Jackson,,,OH,6/5/1996 22:00 +Lancaster,,,SC,6/5/1996 23:30 +Palmdale,,,CA,6/7/1996 2:20 +Ely,,TRIANGLE,NV,6/7/1996 22:00 +Beloit,,OTHER,WI,6/8/1996 16:30 +Granite Falls,,,WA,6/8/1996 21:30 +Banning,,LIGHT,CA,6/9/1996 5:00 +Eddington,BLUE,TRIANGLE,ME,6/10/1996 1:00 +Blythe,,SPHERE,CA,6/10/1996 22:00 +Phippsburg,,DISK,ME,6/11/1996 1:00 +Seattle,,OTHER,WA,6/11/1996 15:00 +Norman,,SPHERE,OK,6/11/1996 17:30 +Annapolis,,,MD,6/12/1996 3:00 +,,OVAL,CA,6/12/1996 12:00 +Lansdale,BLUE,TRIANGLE,PA,6/12/1996 12:00 +Seattle,,LIGHT,WA,6/12/1996 12:15 +Seattle,,,WA,6/12/1996 21:00 +Ohio,,TRIANGLE,OH,6/12/1996 21:30 +Temple,,DIAMOND,TX,6/13/1996 22:45 +Chesapeake Bay,,DISK,MD,6/14/1996 15:30 +Chapel Hill,RED,CIRCLE,NC,6/15/1996 0:00 +Linesville,,LIGHT,PA,6/15/1996 0:00 +Show Low,,OVAL,AZ,6/15/1996 1:30 +Edmonds,,FORMATION,WA,6/15/1996 2:30 +Gillette,,CIRCLE,WY,6/15/1996 2:30 +Boise,,,ID,6/15/1996 3:05 +Buhl,,RECTANGLE,MN,6/15/1996 7:30 +Carlsbad,,DISK,NM,6/15/1996 12:00 +Van Nuys,,OTHER,CA,6/15/1996 13:00 +Aberdeen,,DISK,MD,6/15/1996 13:30 +Ridgefield,,OVAL,WA,6/15/1996 14:00 +Portland,,CHEVRON,OR,6/15/1996 15:00 +Butler,,CIRCLE,PA,6/15/1996 19:00 +Dundee,,CROSS,NY,6/15/1996 19:00 +Clinton,BLUE,CIRCLE,IL,6/15/1996 21:00 +Newport Beach,,DISK,CA,6/15/1996 21:00 +Woodbridge,,LIGHT,NJ,6/15/1996 21:00 +Millbury,,LIGHT,MA,6/15/1996 21:30 +Coeur d'Alene,,FORMATION,ID,6/15/1996 22:00 +Fayetteville,GREEN,OTHER,NC,6/15/1996 22:00 +Jeckyll Island,,CIRCLE,GA,6/15/1996 22:00 +Lodi,,TRIANGLE,CA,6/15/1996 22:00 +Valley Springs,,TRIANGLE,CA,6/15/1996 23:00 +Eau Claire,ORANGE,RECTANGLE,WI,6/15/1996 23:02 +Moses Lake,,,WA,6/16/1996 1:30 +Dyer,,DIAMOND,IN,6/17/1996 14:45 +San Diego,,LIGHT,CA,6/17/1996 16:00 +San Diego,,CIRCLE,CA,6/18/1996 8:26 +Alabama,,FIREBALL,AL,6/18/1996 17:30 +Seattle,BLUE,,WA,6/19/1996 1:00 +Bremerton,,,WA,6/19/1996 1:05 +Bremerton,GREEN,,WA,6/19/1996 1:05 +Fort Collins,,TRIANGLE,CO,6/19/1996 3:00 +Fort Collins,,TRIANGLE,CO,6/19/1996 3:00 +Tampa,,DISK,FL,6/19/1996 10:00 +Oakley,RED,,CA,6/20/1996 0:00 +Snohomish,,,WA,6/20/1996 0:00 +Renton,,,WA,6/20/1996 2:00 +Kanab,,FIREBALL,UT,6/20/1996 20:00 +Fort Myers,,LIGHT,FL,6/20/1996 22:00 +Palm Springs,RED,,CA,6/21/1996 3:20 +Winchester,,CONE,VA,6/21/1996 22:30 +Buckhannon,,TRIANGLE,WV,6/22/1996 22:30 +Garland,,,TX,6/22/1996 23:15 +Payson,,LIGHT,AZ,6/23/1996 1:30 +Cascade Mtns.,BLUE,,WA,6/23/1996 11:00 +Santa Paula,,,CA,6/23/1996 19:30 +Aurora,RED BLUE,VARIOUS,CO,6/24/1996 0:30 +Philadelphia,,LIGHT,PA,6/24/1996 7:00 +Smryna,,OVAL,GA,6/24/1996 15:00 +Redmond,,,WA,6/24/1996 22:30 +Washington,,DIAMOND,MO,6/25/1996 1:00 +Clinton,,,CT,6/27/1996 3:37 +Baltimore,,,MD,6/28/1996 3:00 +Tempe,,VARIOUS,AZ,6/28/1996 19:00 +Walled Lake,,LIGHT,MI,6/28/1996 22:00 +East Providence,,LIGHT,RI,6/29/1996 21:00 +East Providence,,LIGHT,RI,6/29/1996 22:00 +Nacagdoches,,LIGHT,TX,6/29/1996 23:47 +Salt Lake City,,CIRCLE,UT,6/30/1996 0:00 +Voorhees,GREEN,DISK,NJ,6/30/1996 0:00 +Lake Havasu City,,OTHER,AZ,6/30/1996 1:10 +Sacramento,,LIGHT,CA,6/30/1996 3:00 +Blackwood,,DISK,NJ,6/30/1996 7:00 +Weare,,LIGHT,NH,6/30/1996 21:00 +Chicago,,,IL,6/30/1996 22:00 +Hedgesville,,DISK,WV,6/30/1996 22:30 +Panama City Beach,,LIGHT,FL,7/1/1996 0:00 +Lake George,,LIGHT,NY,7/1/1996 3:00 +Yakima,,,WA,7/1/1996 12:00 +Los Angeles,,FORMATION,CA,7/1/1996 13:00 +Cypress,,OVAL,CA,7/1/1996 18:00 +Albany,,EGG,OR,7/1/1996 19:00 +Bovina,ORANGE GREEN,,TX,7/1/1996 19:00 +Katy,,DIAMOND,TX,7/1/1996 20:00 +Lumpkin,,DISK,GA,7/1/1996 22:00 +Brunswick,,LIGHT,ME,7/1/1996 23:00 +Monroe,,TRIANGLE,WA,7/1/1996 23:00 +Mt. Morris Township,,DISK,MI,7/2/1996 18:00 +Stoughton,,LIGHT,WI,7/3/1996 2:00 +Union City,GREEN,OTHER,PA,7/3/1996 5:00 +Hoh Rain Forest,,DISK,WA,7/3/1996 10:00 +University Place,,FIREBALL,WA,7/3/1996 10:00 +Beach,,DISK,ND,7/3/1996 11:30 +Salmon River,,LIGHT,ID,7/3/1996 23:00 +South Amboy,RED BLUE,TRIANGLE,NJ,7/4/1996 12:00 +Fayetteville,,VARIOUS,AR,7/4/1996 19:35 +Goshen,,LIGHT,NY,7/4/1996 21:30 +Wilmington,RED,TRIANGLE,NC,7/4/1996 22:00 +San Angelo,RED,LIGHT,TX,7/4/1996 23:30 +Traverse City,,OTHER,MI,7/4/1996 23:30 +Oak Hill,,FIREBALL,WV,7/5/1996 0:00 +Springfield,RED,CIRCLE,MA,7/5/1996 18:15 +Camden,ORANGE,OVAL,NJ,7/5/1996 22:00 +Newport,,,PA,7/5/1996 22:00 +Brinnon,,OVAL,WA,7/6/1996 23:00 +St. Louis,,TRIANGLE,MO,7/9/1996 23:30 +IndIan Nation Turnpike,,FIREBALL,OK,7/10/1996 1:30 +Cumming,,RECTANGLE,GA,7/10/1996 2:30 +Kenosha,,OTHER,WI,7/11/1996 0:40 +Pensacola Beach,,SPHERE,FL,7/14/1996 14:00 +Bountiful,,TRIANGLE,UT,7/15/1996 0:35 +Jacksonville,BLUE,LIGHT,IL,7/15/1996 1:30 +Kalamazoo,,OTHER,MI,7/15/1996 5:30 +Ellensburg,,RECTANGLE,WA,7/15/1996 13:30 +Conway,GREEN,OTHER,MO,7/15/1996 14:00 +Sussex,,TRIANGLE,NJ,7/15/1996 17:15 +Alamogordo,YELLOW,VARIOUS,NM,7/15/1996 19:30 +Sussex City,,OTHER,NJ,7/15/1996 20:30 +Amarillo,,OTHER,TX,7/15/1996 21:00 +Camden,ORANGE,CIRCLE,NJ,7/15/1996 22:00 +Sioux City,,TRIANGLE,IA,7/15/1996 22:00 +Tucson,,OTHER,AZ,7/15/1996 23:00 +Eau Claire,ORANGE,,WI,7/15/1996 23:02 +Gothenburg,,CIRCLE,NE,7/15/1996 23:30 +I-5,,DIAMOND,CA,7/17/1996 1:35 +Saline,,OTHER,MI,7/17/1996 20:45 +Winchester,,CONE,VA,7/18/1996 9:58 +Northampton,ORANGE,DISK,PA,7/19/1996 10:45 +Clear Lake,,TEARDROP,TX,7/20/1996 22:00 +Miami Beach,GREEN,TRIANGLE,FL,7/23/1996 21:32 +Danville,,DISK,VA,7/23/1996 22:30 +Seattle,,RECTANGLE,WA,7/24/1996 16:00 +Metalline Falls,,FIREBALL,WA,7/24/1996 23:10 +Rush City,,,MN,7/25/1996 1:30 +Winona,,FLASH,MN,7/30/1996 1:30 +Gilroy,,LIGHT,CA,7/30/1996 11:00 +Crestview,,TRIANGLE,FL,7/30/1996 14:00 +North Little Rock,,TRIANGLE,AR,7/30/1996 22:00 +East Setauket,,OTHER,NY,7/31/1996 21:00 +Beaverton,,DISK,OR,8/1/1996 0:00 +Independence,,TRIANGLE,MO,8/1/1996 2:00 +Raton,,LIGHT,NM,8/1/1996 2:00 +Sandy,BLUE,LIGHT,UT,8/1/1996 12:00 +San Jose,,FIREBALL,CA,8/1/1996 16:00 +Pueblo,,TRIANGLE,CO,8/1/1996 17:00 +Granite City,,SPHERE,IL,8/1/1996 17:45 +Durant,,TRIANGLE,OK,8/1/1996 19:00 +Hastings,,FLASH,MN,8/1/1996 20:00 +Canandaigua,RED,TRIANGLE,NY,8/1/1996 20:30 +Ellsworth,,CHEVRON,ME,8/1/1996 21:00 +Waterbury,,RECTANGLE,CT,8/1/1996 21:00 +Bishop,,TRIANGLE,CA,8/1/1996 21:30 +Newberg,,OTHER,OR,8/1/1996 22:00 +Woodlawn,,DISK,MD,8/1/1996 22:15 +Atwater,,LIGHT,CA,8/1/1996 23:30 +Fishers,,CIRCLE,IN,8/2/1996 11:33 +Fishers,,CIRCLE,IN,8/2/1996 11:33 +Knoxville,,OVAL,IL,8/4/1996 7:00 +Pottstown,,TRIANGLE,PA,8/4/1996 19:30 +West Manchester,,,OH,8/7/1996 23:00 +West Manchester,RED,OVAL,OH,8/7/1996 23:00 +Tularosa,,SPHERE,NM,8/8/1996 20:30 +Ventnor,,CIRCLE,NJ,8/9/1996 19:00 +Wharton,,SPHERE,OH,8/10/1996 21:00 +George,,FORMATION,WA,8/10/1996 22:00 +Seattle,,TRIANGLE,WA,8/10/1996 22:45 +No. Hollywood,,SPHERE,CA,8/10/1996 23:00 +Kerman,,LIGHT,CA,8/10/1996 23:30 +Seattle,YELLOW,,WA,8/12/1996 0:30 +Cheektowaga,,DISK,NY,8/12/1996 13:00 +Bayview Jetty,,DISK,OR,8/12/1996 19:00 +Eureka,,LIGHT,CA,8/12/1996 22:00 +Texas,,SPHERE,TX,8/13/1996 16:45 +Burlington,,LIGHT,CT,8/15/1996 1:00 +Lubbock,RED BLUE,CIRCLE,TX,8/15/1996 1:00 +New Braunfels,,DISK,TX,8/15/1996 1:00 +Grand Rapids,,LIGHT,MI,8/15/1996 2:30 +Grand Rapids,RED,LIGHT,MI,8/15/1996 2:30 +Beeville,,LIGHT,TX,8/15/1996 3:00 +Gold Beach,,OTHER,OR,8/15/1996 12:00 +Greenwich,,RECTANGLE,CT,8/15/1996 14:00 +Bethel,,TRIANGLE,AK,8/15/1996 14:30 +Clymer,,OTHER,PA,8/15/1996 17:00 +Richwood,,FORMATION,WV,8/15/1996 19:00 +Beckley,,OTHER,WV,8/15/1996 20:30 +Centerport,,CROSS,NY,8/15/1996 21:30 +Lexington,,LIGHT,VA,8/15/1996 22:00 +Penrose,,OTHER,CO,8/15/1996 22:00 +Wellfleet,GREEN,TRIANGLE,MA,8/15/1996 22:00 +Plattsburg,RED,TRIANGLE,NY,8/15/1996 23:30 +Tecumseh,,,OK,8/16/1996 0:00 +Fairfield,,TRIANGLE,OH,8/16/1996 14:30 +Santa Barbara,,TRIANGLE,CA,8/16/1996 20:15 +Coon Rapids,,OTHER,MN,8/18/1996 3:18 +Ft. Wayne,,SPHERE,IN,8/18/1996 23:00 +Brewster,,DISK,MA,8/19/1996 5:20 +Spencer,,,SD,8/19/1996 22:30 +West Manchester,ORANGE,DISK,OH,8/20/1996 2:15 +Phoenix,,LIGHT,AZ,8/20/1996 20:30 +Owensville,,,MO,8/20/1996 23:30 +Osborne,,,KS,8/24/1996 1:30 +,,EGG,FL,8/24/1996 15:00 +Fort Collins,,LIGHT,CO,8/24/1996 21:00 +Bothell,,TRIANGLE,WA,8/28/1996 20:15 +Blacksburg,,SPHERE,VA,8/30/1996 19:00 +Coral Springs,,LIGHT,FL,9/1/1996 1:00 +Tuscaloosa,,DISK,AL,9/1/1996 17:00 +Concord,,DISK,MA,9/1/1996 18:00 +Ohio-Michigan border,,LIGHT,OH,9/1/1996 18:00 +New Holland,,,IL,9/1/1996 20:00 +Wattsburgh,,OTHER,PA,9/1/1996 21:00 +Fort Collins,,DISK,CO,9/1/1996 21:30 +Fort Collins,,DISK,CO,9/1/1996 21:30 +Wabeno,,FIREBALL,WI,9/1/1996 22:30 +Wise,,OVAL,VA,9/1/1996 22:30 +Wanaque,,FORMATION,NJ,9/2/1996 19:50 +Belton,,TRIANGLE,MO,9/4/1996 21:30 +Faith,,TRIANGLE,NC,9/5/1996 1:00 +Snake River,,SPHERE,ID,9/5/1996 23:00 +Lake Shasta,,LIGHT,CA,9/6/1996 20:00 +Englewood Cliffs,,CHEVRON,NJ,9/6/1996 21:00 +Stockton,,OTHER,CA,9/7/1996 3:00 +West Manchester,ORANGE,TRIANGLE,OH,9/7/1996 10:50 +Savannah,,DISK,GA,9/9/1996 5:30 +San Francisco,,OVAL,CA,9/9/1996 8:30 +Siloam Springs,,TRIANGLE,AR,9/10/1996 23:45 +Arden Hills,,LIGHT,MN,9/11/1996 22:45 +Victorville,,DISK,CA,9/12/1996 11:00 +Kennewick,,OTHER,WA,9/12/1996 15:35 +York,,FLASH,PA,9/13/1996 2:30 +Austin,,TRIANGLE,TX,9/13/1996 20:30 +Des Moines,BLUE,DISK,IA,9/14/1996 18:00 +Battle Mountain,,DISK,NV,9/14/1996 20:00 +Smithville,,DISK,NJ,9/14/1996 20:30 +Salem,GREEN,TEARDROP,OR,9/15/1996 4:00 +La Mesa,RED,LIGHT,CA,9/15/1996 5:00 +Ironton,,SPHERE,OH,9/15/1996 10:30 +Solomans Island,,LIGHT,MD,9/15/1996 18:00 +Creston,,,WA,9/15/1996 20:45 +Forks,,,WA,9/15/1996 21:00 +Woodville,,TRIANGLE,AL,9/15/1996 21:00 +Madrid,RED,OTHER,NY,9/15/1996 22:00 +Trion,,TRIANGLE,GA,9/15/1996 22:30 +Georgtown,,DISK,CO,9/16/1996 6:15 +Arlington,,OVAL,MA,9/16/1996 18:00 +Concord,,OVAL,MA,9/16/1996 18:00 +Lee's Summit,RED,TRIANGLE,MO,9/17/1996 5:00 +Williamstown,,FORMATION,MA,9/17/1996 22:00 +Ann Arbor,,FIREBALL,MI,9/18/1996 0:20 +Avon Lake,,VARIOUS,OH,9/19/1996 21:30 +Coweta,,DISK,OK,9/20/1996 17:00 +Maxwell,,OTHER,CA,9/21/1996 21:30 +Denver,,LIGHT,CO,9/22/1996 1:00 +Pensacola,,CIGAR,FL,9/22/1996 21:00 +Smithport,,,PA,9/24/1996 13:00 +Cowen,,DISK,WV,9/26/1996 2:39 +Breckenridge,RED,VARIOUS,TX,9/26/1996 20:00 +Kelso,,,WA,9/29/1996 22:13 +Traverse City,,RECTANGLE,MI,9/30/1996 22:00 +Lake Berryessa,BLUE,SPHERE,CA,10/1/1996 1:00 +West Houston,,FORMATION,TX,10/1/1996 1:00 +Bainbridge,,TRIANGLE,OH,10/1/1996 5:30 +New York City,,OVAL,NY,10/1/1996 8:00 +Cupertino,,SPHERE,CA,10/1/1996 17:00 +Safford,,SPHERE,AZ,10/1/1996 18:00 +The Woodlands,ORANGE,FIREBALL,TX,10/1/1996 22:30 +Santa Fe,,RECTANGLE,NM,10/3/1996 20:00 +Crestone,,LIGHT,CO,10/3/1996 20:05 +Derby,,LIGHT,CT,10/3/1996 21:00 +Kansas City,BLUE,,KS,10/6/1996 3:40 +Duvall,,TRIANGLE,WA,10/6/1996 13:00 +San Francisco,,TRIANGLE,CA,10/6/1996 13:00 +New York City,,TRIANGLE,NY,10/6/1996 15:00 +Fire Island,,OTHER,NY,10/6/1996 22:00 +Deming,,OTHER,NM,10/9/1996 15:30 +Higginsville,,TRIANGLE,MO,10/10/1996 3:20 +Charleston,,LIGHT,SC,10/10/1996 22:00 +Monroe County,,CYLINDER,OH,10/10/1996 22:30 +Bismarck,,FORMATION,ND,10/11/1996 16:00 +Damascus,,LIGHT,VA,10/11/1996 22:00 +Reno,,TRIANGLE,NV,10/13/1996 3:19 +Gainesville,,CIRCLE,FL,10/13/1996 6:00 +Astoria,,CIRCLE,OR,10/13/1996 15:00 +Odessa,ORANGE,DIAMOND,TX,10/13/1996 19:47 +Encino,,TRIANGLE,CA,10/13/1996 20:00 +Gainesville,,CIRCLE,FL,10/14/1996 3:00 +San Mateo,,LIGHT,CA,10/15/1996 0:45 +Austin,,TRIANGLE,TX,10/15/1996 3:00 +Cazadero,,,CA,10/15/1996 3:00 +Milwaukee,RED,TRIANGLE,WI,10/15/1996 15:00 +Delano,,OTHER,TN,10/15/1996 18:00 +Blaine,RED,SPHERE,OR,10/15/1996 20:30 +Roanoke,,,VA,10/15/1996 23:00 +Roanoke,RED,TRIANGLE,VA,10/15/1996 23:00 +Memphis,,,TN,10/18/1996 23:30 +Tipton,,SPHERE,IN,10/20/1996 11:18 +Wichita,RED,LIGHT,KS,10/20/1996 18:20 +Odessa,,DIAMOND,TX,10/20/1996 20:20 +Springfield,,TRIANGLE,OH,10/24/1996 9:18 +Lake Charles,,VARIOUS,LA,10/25/1996 2:00 +Laurel,,,MD,10/25/1996 11:08 +Newport Beach,,VARIOUS,CA,10/26/1996 2:00 +Marksville,,TRIANGLE,LA,10/26/1996 20:30 +Manchester,,DIAMOND,NH,10/28/1996 14:00 +Pittsburgh,BLUE,DISK,PA,10/30/1996 7:30 +Goose Creek,,CIGAR,SC,10/30/1996 16:00 +Rose Hill,RED,LIGHT,KS,10/30/1996 18:50 +Richmond,,TRIANGLE,OH,10/30/1996 19:30 +Kokomo,RED,,IN,10/30/1996 22:25 +Boerne,,,TX,10/31/1996 2:15 +Murfreesboro,,CIRCLE,TN,10/31/1996 9:00 +Rockford,,FLASH,MI,10/31/1996 22:00 +Wichita,,LIGHT,KS,10/31/1996 22:00 +Vilonia,,CYLINDER,AR,11/1/1996 12:00 +Merrimac,,TRIANGLE,MA,11/1/1996 19:00 +Chillicothe,,OTHER,OH,11/1/1996 21:00 +Federal Way,,CIRCLE,WA,11/1/1996 23:00 +Reno to Dallas,BLUE,TRIANGLE,TX,11/2/1996 2:00 +New Albany,,,PA,11/2/1996 5:00 +Longmont,,,CO,11/3/1996 18:55 +San Jose,,FORMATION,IL,11/6/1996 17:00 +Seattle,,SPHERE,WA,11/7/1996 23:30 +Canyonville,,DISK,OR,11/9/1996 2:00 +Plymouth,,TRIANGLE,IN,11/9/1996 12:00 +no data,,TRIANGLE,NV,11/12/1996 1:00 +Donnelly,,TRIANGLE,ID,11/12/1996 22:30 +Hesperia,,TRIANGLE,CA,11/13/1996 19:45 +Seminole,,TRIANGLE,FL,11/13/1996 23:30 +Harrisburg,,LIGHT,PA,11/13/1996 23:56 +Corvallis,,SPHERE,MT,11/14/1996 14:15 +Salem,RED,,OR,11/14/1996 18:20 +Hobe Sound,,FIREBALL,FL,11/14/1996 19:00 +Harker Heights,,LIGHT,TX,11/15/1996 10:21 +Lincoln,,DIAMOND,NE,11/15/1996 17:00 +Blossburg,,,PA,11/15/1996 20:30 +Lima,,LIGHT,OH,11/15/1996 20:50 +Albuquerque,,SPHERE,NM,11/15/1996 22:30 +Gorman VOR,,,CA,11/16/1996 0:00 +Las Vegas,,LIGHT,NV,11/16/1996 16:30 +Canton,,LIGHT,PA,11/16/1996 21:30 +Silver Spring,,TRIANGLE,MD,11/16/1996 21:30 +Bandy,,,NY,11/16/1996 22:00 +Riverside,,,NJ,11/16/1996 22:00 +Lake City,,,WA,11/16/1996 22:15 +Frostburg,,,MD,11/16/1996 23:10 +Jacksonville,BLUE,,FL,11/16/1996 23:10 +New York City,,,NY,11/16/1996 23:10 +Odessa,,,NY,11/16/1996 23:10 +Reading,BLUE,,PA,11/16/1996 23:13 +Greenwich,YELLOW,,CT,11/16/1996 23:14 +Frostburg,YELLOW GREEN,,MD,11/16/1996 23:15 +Greenwich,,,CT,11/16/1996 23:15 +Watkins Glen,GREEN,,NY,11/16/1996 23:20 +Mansfield,ORANGE,ROUND,PA,11/16/1996 23:23 +Grandview,,,MO,11/17/1996 0:00 +Arcadia,,,CA,11/17/1996 2:30 +Big Flats,,,NY,11/17/1996 4:30 +Las Vegas,,LIGHT,NV,11/17/1996 21:00 +Middleville,,,MI,11/19/1996 23:05 +Los Angeles,,,CA,11/20/1996 0:00 +Wilmington,,DIAMOND,NC,11/20/1996 0:00 +Surfside,,DIAMOND,TX,11/20/1996 8:00 +Parma,,CIRCLE,OH,11/20/1996 21:30 +North Port,,,FL,11/20/1996 22:30 +Stamping Ground,,TRIANGLE,KY,11/23/1996 2:15 +French Camp,,,CA,11/23/1996 19:30 +Stockton,,,CA,11/23/1996 20:45 +Kingsville,,,OH,11/23/1996 21:40 +Poway,,,CA,11/24/1996 4:50 +Bismarck,,LIGHT,ND,11/24/1996 18:07 +Bismarck,ORANGE,,ND,11/24/1996 19:30 +Miami,,LIGHT,FL,11/24/1996 21:00 +Monterey,,,CA,11/25/1996 20:00 +Arnolds Park,,TRIANGLE,IA,11/25/1996 22:15 +Daytona Beach,YELLOW,DISK,FL,11/26/1996 3:20 +Bloomsburg,ORANGE,TEARDROP,PA,11/26/1996 9:00 +Poteau,,TRIANGLE,OK,11/26/1996 20:25 +Graham County,,,NC,11/27/1996 0:00 +Seattle,GREEN,,WA,11/27/1996 19:30 +Millington,,CHEVRON,TN,11/27/1996 20:00 +Bellevue,,,WA,11/28/1996 21:00 +Wheelersburg,,LIGHT,OH,11/28/1996 22:30 +Los Angeles,,,CA,11/29/1996 19:05 +Sedona,,LIGHT,AZ,11/29/1996 21:45 +Outlook,,LIGHT,WA,11/30/1996 3:00 +La Joya,RED,DISK,TX,11/30/1996 7:00 +Salida,,,CO,11/30/1996 17:12 +Vashon Island,,,WA,11/30/1996 19:15 +Shreveport,,,LA,11/30/1996 21:00 +Kirkland,RED BLUE,,WA,11/30/1996 21:15 +Sedona,,LIGHT,AZ,11/30/1996 22:00 +Kansas City,RED,,MO,12/1/1996 19:38 +Seattle,,TRIANGLE,WA,12/1/1996 21:00 +Columbia,,LIGHT,MO,12/1/1996 22:36 +Wrightwood Mtn.,RED,LIGHT,CA,12/1/1996 23:30 +Sumner,BLUE,,IL,12/2/1996 19:00 +North Bend,GREEN BLUE,,WA,12/3/1996 4:00 +Brooksville,,,FL,12/5/1996 5:30 +Seattle,,,WA,12/5/1996 22:00 +Peebles,,LIGHT,OH,12/5/1996 23:00 +Fort Worth,,CIGAR,TX,12/6/1996 9:35 +Jonesburg,,LIGHT,MO,12/8/1996 0:05 +Highway 15,RED,,NV,12/9/1996 5:00 +Hastings,,TRIANGLE,MN,12/9/1996 23:15 +Memphis,,OVAL,TN,12/10/1996 12:00 +Newtown,,TEARDROP,CT,12/10/1996 18:30 +Gulf Breeze,,SPHERE,FL,12/10/1996 19:50 +Pensacola,YELLOW,,FL,12/10/1996 19:55 +Quartz Hill,,CIRCLE,CA,12/10/1996 22:15 +Camarillo,,LIGHT,CA,12/10/1996 22:30 +Birmingham,,,AL,12/11/1996 17:15 +Gulf Breeze,RED ORANGE,FIREBALL,FL,12/11/1996 19:55 +"I-10, Marker 174",,,NM,12/12/1996 2:06 +Upland,GREEN,FIREBALL,CA,12/12/1996 5:30 +Elizabeth,,VARIOUS,NJ,12/12/1996 17:10 +Fredericksburg,,LIGHT,TX,12/12/1996 18:00 +Greensboro,,LIGHT,NC,12/13/1996 3:00 +Simi Valley,,EGG,CA,12/13/1996 15:20 +Karnak,GREEN,CYLINDER,IL,12/13/1996 20:00 +Detroit,,,MI,12/13/1996 21:00 +Stroudsburg,,LIGHT,PA,12/13/1996 23:00 +Vashon Island,,,WA,12/14/1996 17:15 +West Covina,,,CA,12/14/1996 18:08 +Issaquah,,,WA,12/14/1996 20:20 +Newtown,,TEARDROP,CT,12/15/1996 18:30 +Bartlett,,OTHER,TN,12/15/1996 23:00 +Spokane,,DIAMOND,WA,12/16/1996 14:25 +Everett,GREEN,,WA,12/16/1996 20:10 +Stevens Pass,ORANGE,,WA,12/16/1996 21:00 +Bellingham,,EGG,WA,12/17/1996 0:30 +Morton,,,WA,12/17/1996 1:15 +Redmond,,,WA,12/17/1996 2:30 +Hansville,BLUE,,WA,12/17/1996 6:14 +Bellingham,GREEN,,WA,12/17/1996 6:15 +Seattle,,,WA,12/17/1996 6:15 +Tigard,,,OR,12/17/1996 6:15 +Portland,,,OR,12/17/1996 6:20 +Seattle,BLUE,,WA,12/17/1996 6:20 +Sunrise,,SPHERE,FL,12/17/1996 20:00 +Woodville,,TRIANGLE,TX,12/17/1996 20:17 +Dana Point,,LIGHT,CA,12/17/1996 21:45 +Eugene,,LIGHT,OR,12/18/1996 4:30 +Salinas,GREEN,,CA,12/18/1996 4:45 +The Woodlands,YELLOW,LIGHT,TX,12/18/1996 22:00 +Winchester,,TRIANGLE,TN,12/19/1996 16:30 +Seattle,,,WA,12/19/1996 22:45 +Centralia,RED,,WA,12/20/1996 3:26 +New Castle,RED,CYLINDER,PA,12/20/1996 13:00 +Poulsbo,,,WA,12/21/1996 0:00 +Reno,,,NV,12/22/1996 1:45 +Reno,,OTHER,NV,12/22/1996 1:45 +Parma,,OTHER,OH,12/22/1996 12:30 +Harrisburg,,TRIANGLE,PA,12/24/1996 10:30 +Little Rock,,LIGHT,AR,12/24/1996 23:15 +Fresno,,LIGHT,CA,12/25/1996 2:35 +Seward,GREEN,LIGHT,AK,12/25/1996 22:00 +Fontana,,,CA,12/26/1996 22:40 +Hurst,ORANGE,LIGHT,TX,12/28/1996 1:00 +Rockford,,TRIANGLE,IL,12/28/1996 1:00 +Highway 37,,,CA,12/28/1996 20:15 +Hartsburg,BLUE,,MO,12/29/1996 19:00 +Bastrop,,LIGHT,LA,12/29/1996 20:00 +Elkins,,,WV,12/30/1996 2:30 +Tucson,,DISK,AZ,12/31/1996 18:30 +Gardner,,CIRCLE,MA,12/31/1996 20:00 +Tulsa,RED BLUE,CIGAR,OK,12/31/1996 20:00 +Chilhowie,,CROSS,VA,1/1/1997 0:00 +Chanute,,CIRCLE,KS,1/1/1997 7:00 +Jamestown,,VARIOUS,ND,1/1/1997 7:00 +Arrayo Grande,,OVAL,CA,1/1/1997 13:00 +Johnston,,RECTANGLE,RI,1/1/1997 15:30 +Phoenix,,CHEVRON,AZ,1/1/1997 19:30 +Clatonia,,,NE,1/1/1997 20:30 +Cayce,,,SC,1/1/1997 21:00 +Tom Sauk Moutain,,LIGHT,MO,1/1/1997 23:00 +Austin,,LIGHT,TX,1/2/1997 19:15 +Long Beach,,LIGHT,WA,1/3/1997 3:00 +Steinhatchee,RED,CIGAR,FL,1/4/1997 21:00 +Santa Rosa,,DISK,CA,1/4/1997 21:32 +Haleiwa,,TRIANGLE,HI,1/5/1997 1:10 +Amelia,,LIGHT,OH,1/7/1997 0:35 +Don't Know,,TEARDROP,NV,1/7/1997 21:30 +Brooklyn,,DISK,CT,1/8/1997 17:20 +South Attleboro,BLUE,DISK,MA,1/8/1997 17:22 +Eden,,LIGHT,NY,1/8/1997 19:00 +Columbus,,TRIANGLE,OH,1/10/1997 22:00 +St. Cloud,GREEN,PYRAMID,MN,1/11/1997 5:00 +Carrollton,,CIRCLE,TX,1/11/1997 22:00 +Billings,RED,LIGHT,MT,1/12/1997 23:00 +Lombard,,FIREBALL,IL,1/13/1997 17:30 +McKinlyville,,DISK,CA,1/14/1997 16:00 +Columbia,,LIGHT,SC,1/15/1997 0:30 +Mankato,,SPHERE,MN,1/15/1997 1:15 +Calabash,,OVAL,NC,1/15/1997 4:30 +Macon,,DISK,GA,1/15/1997 7:00 +Circleville,,DISK,OH,1/15/1997 11:30 +Pico Rivera,,OVAL,CA,1/15/1997 15:00 +Long Beach,,EGG,NY,1/15/1997 17:30 +Millsboro,,TRIANGLE,DE,1/15/1997 18:00 +Alturas,,DISK,CA,1/15/1997 18:30 +Ellensburg,,FIREBALL,WA,1/15/1997 23:00 +Seguin,,FIREBALL,TX,1/16/1997 6:30 +Moab,YELLOW GREEN,OTHER,UT,1/16/1997 18:00 +Babson Park,,DIAMOND,FL,1/18/1997 22:00 +Las Vegas,,SPHERE,NV,1/18/1997 22:00 +Blackwell,RED,TRIANGLE,OK,1/21/1997 19:15 +Altus AFB,,VARIOUS,OK,1/22/1997 3:35 +North Kingstown,,TRIANGLE,RI,1/23/1997 18:30 +Alta,,OTHER,UT,1/24/1997 19:00 +Marion,,TRIANGLE,WI,1/25/1997 21:00 +Flagstaff,,LIGHT,AZ,1/26/1997 22:00 +East Greenwich,,DISK,RI,1/29/1997 23:15 +Alto,,TRIANGLE,MI,2/1/1997 6:35 +Yucca Valley,,OTHER,CA,2/1/1997 9:30 +Unincorporated,,RECTANGLE,AZ,2/1/1997 13:00 +Winter Springs,,CONE,FL,2/1/1997 21:00 +Elizabeth,,SPHERE,NJ,2/1/1997 23:00 +Thackery,,,OH,2/2/1997 8:25 +Virden,,DISK,IL,2/3/1997 20:00 +Albuquerque,,FLASH,NM,2/5/1997 22:00 +Grove City,,,PA,2/6/1997 3:15 +Mesa,,TRIANGLE,AZ,2/6/1997 16:45 +Mesa,,TRIANGLE,AZ,2/6/1997 16:45 +Stacy,,,MN,2/8/1997 18:00 +Seattle,,OVAL,WA,2/9/1997 13:45 +Los Angeles,,TRIANGLE,CA,2/10/1997 0:10 +Brentwood,,LIGHT,TN,2/10/1997 18:00 +Phoenix,,CIGAR,AZ,2/11/1997 11:00 +San Antonio,,TRIANGLE,TX,2/12/1997 18:20 +Lakewood,,TEARDROP,CO,2/13/1997 7:00 +Las Vegas,,FORMATION,NV,2/14/1997 18:00 +Ormond Beach,,CHEVRON,FL,2/14/1997 20:00 +La Puente,,OTHER,CA,2/15/1997 3:00 +North Adams,,DIAMOND,MA,2/15/1997 13:00 +Prescott Valley,,OTHER,AZ,2/15/1997 20:00 +Harrisonburg,,FIREBALL,VA,2/15/1997 21:30 +Hudson,,,WI,2/15/1997 22:30 +Blairsville,,LIGHT,PA,2/15/1997 23:35 +Randolph,,CIRCLE,NY,2/16/1997 3:00 +Pittsburgh,,OTHER,PA,2/17/1997 0:47 +Waseca,,OTHER,MN,2/17/1997 22:15 +Guadelupe,,,AZ,2/19/1997 20:15 +Weston,,OTHER,MO,2/22/1997 14:21 +Crystal Lake,ORANGE,SPHERE,IL,2/25/1997 2:00 +Boiling Springs,,,PA,2/25/1997 14:20 +New Florence,,LIGHT,PA,2/25/1997 20:00 +Mobile,BLUE,OVAL,AL,2/26/1997 20:00 +North Beach,,OTHER,MD,2/27/1997 20:00 +St. David,,OVAL,AZ,2/28/1997 16:00 +Mesa,YELLOW,TRIANGLE,AZ,2/28/1997 23:00 +Dorchester,,,MA,3/1/1997 4:00 +Clinton,,CIRCLE,UT,3/1/1997 5:00 +Commerce City,,SPHERE,CO,3/1/1997 12:30 +Riverside,,TRIANGLE,CA,3/1/1997 21:00 +Louisville,ORANGE,FIREBALL,KY,3/1/1997 21:20 +Prairie du Sac,,CROSS,WI,3/2/1997 19:00 +Hemet,,TRIANGLE,CA,3/2/1997 21:00 +Dublin,,TRIANGLE,OH,3/3/1997 2:00 +Sullivan,,LIGHT,MO,3/3/1997 18:30 +Las Vegas,,LIGHT,NV,3/5/1997 0:00 +Phoenix,,CHEVRON,AZ,3/5/1997 14:00 +San Francisco,,OVAL,CA,3/5/1997 18:10 +Rohnert Park,,SPHERE,CA,3/6/1997 1:00 +Virginia Beach,YELLOW,LIGHT,VA,3/6/1997 22:00 +Las Vegas,,,NV,3/6/1997 23:00 +Tacoma,,DISK,WA,3/7/1997 19:00 +Monrovia,,DISK,CA,3/7/1997 22:00 +Seattle,BLUE,FLASH,WA,3/7/1997 22:50 +East Detroit,,DISK,MI,3/8/1997 19:00 +Arizona,,TRIANGLE,AZ,3/9/1997 1:00 +Alpharetta,,TRIANGLE,GA,3/10/1997 10:30 +Virginia Beach,,SPHERE,VA,3/10/1997 12:30 +New York City,,LIGHT,NY,3/10/1997 19:30 +Naples,,,FL,3/10/1997 21:00 +Las Vegas,,LIGHT,NV,3/10/1997 22:00 +Charleston,,SPHERE,WV,3/11/1997 18:30 +Holloman AFB,,,NM,3/12/1997 6:30 +Phoenix,,LIGHT,AZ,3/12/1997 8:00 +New Orleans,,OTHER,LA,3/12/1997 9:00 +Norfolk,,CHEVRON,VA,3/12/1997 20:09 +Terre Haute,,TRIANGLE,IN,3/12/1997 20:30 +Las Vegas,,CHEVRON,NV,3/12/1997 20:40 +Glendale,,LIGHT,AZ,3/12/1997 21:50 +Death Valley,,TRIANGLE,NV,3/12/1997 22:20 +Brentwood,,FORMATION,CA,3/12/1997 23:00 +Santa Fe,,OTHER,NM,3/12/1997 23:00 +Douglas,,TRIANGLE,AZ,3/13/1997 0:00 +Las Vegas,,,NV,3/13/1997 0:00 +Phoenix,,OTHER,AZ,3/13/1997 0:00 +Scottsdale,,TRIANGLE,AZ,3/13/1997 0:00 +Salt Lake City,,OTHER,UT,3/13/1997 5:30 +Casa Grande,,CIRCLE,AZ,3/13/1997 8:00 +Newfoundland,,OVAL,NJ,3/13/1997 10:30 +Seattle,,SPHERE,WA,3/13/1997 13:30 +Lubbock,,TRIANGLE,TX,3/13/1997 17:00 +Prescott,,FORMATION,AZ,3/13/1997 18:00 +New Braunfels,,TRIANGLE,TX,3/13/1997 18:30 +Phoenix,,CHEVRON,AZ,3/13/1997 18:40 +Phoenix,,TRIANGLE,AZ,3/13/1997 19:00 +Scottsdale,,TRIANGLE,AZ,3/13/1997 19:00 +Gila Bend,ORANGE,LIGHT,AZ,3/13/1997 19:45 +Stanfield,,TRIANGLE,AZ,3/13/1997 19:45 +East Mesa,,LIGHT,AZ,3/13/1997 20:00 +Glendale,,DIAMOND,AZ,3/13/1997 20:00 +Kingman,ORANGE,FORMATION,AZ,3/13/1997 20:00 +Phoenix,,CHEVRON,AZ,3/13/1997 20:00 +Phoenix,,CHEVRON,AZ,3/13/1997 20:00 +Phoenix,,CIRCLE,AZ,3/13/1997 20:00 +Phoenix,,OTHER,AZ,3/13/1997 20:00 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:00 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:00 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:00 +Phoenix,,,AZ,3/13/1997 20:05 +Tempe,,OTHER,AZ,3/13/1997 20:10 +Prescott,RED,FORMATION,AZ,3/13/1997 20:12 +Black Canyon City,,CHEVRON,AZ,3/13/1997 20:15 +Phoenix,,LIGHT,AZ,3/13/1997 20:15 +Phoenix,ORANGE,LIGHT,AZ,3/13/1997 20:15 +Phoenix,RED,TRIANGLE,AZ,3/13/1997 20:15 +Prescott,,FORMATION,AZ,3/13/1997 20:15 +Prescott,YELLOW,FORMATION,AZ,3/13/1997 20:15 +Scottsdale,,TRIANGLE,AZ,3/13/1997 20:15 +Northwest Tempe,RED,FORMATION,AZ,3/13/1997 20:20 +Phoenix,,,AZ,3/13/1997 20:20 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:20 +Buckeye,,SPHERE,AZ,3/13/1997 20:25 +Glendale,,,AZ,3/13/1997 20:25 +Cass City,,TRIANGLE,MI,3/13/1997 20:30 +Chandler,,,AZ,3/13/1997 20:30 +Chandler,,TRIANGLE,AZ,3/13/1997 20:30 +Chino Valley,,FORMATION,AZ,3/13/1997 20:30 +Gila Bend,,CHEVRON,AZ,3/13/1997 20:30 +Goodyear,,,AZ,3/13/1997 20:30 +Mt. Springs,,OTHER,TX,3/13/1997 20:30 +Phoenix,,,AZ,3/13/1997 20:30 +Phoenix,,CHEVRON,AZ,3/13/1997 20:30 +Phoenix,ORANGE,FORMATION,AZ,3/13/1997 20:30 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:30 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:30 +Tempe,,FORMATION,AZ,3/13/1997 20:30 +Tempe,,LIGHT,AZ,3/13/1997 20:30 +Libby,,LIGHT,MT,3/13/1997 20:35 +Mesa,,TRIANGLE,AZ,3/13/1997 20:40 +Phoenix,,FORMATION,AZ,3/13/1997 20:40 +Phoenix,,TRIANGLE,AZ,3/13/1997 20:45 +Henderson,,FORMATION,NV,3/13/1997 21:00 +Phoenix,,,AZ,3/13/1997 21:00 +Phoenix,,CHEVRON,AZ,3/13/1997 21:00 +Phoenix,,DIAMOND,AZ,3/13/1997 21:00 +Phoenix,,OTHER,AZ,3/13/1997 21:00 +Phoenix,,TRIANGLE,AZ,3/13/1997 21:00 +Prescott,,FORMATION,AZ,3/13/1997 21:00 +Phoenix,,RECTANGLE,AZ,3/13/1997 21:15 +Monterey,,SPHERE,CA,3/13/1997 21:30 +Sciotoville,,FORMATION,OH,3/13/1997 21:30 +Casa Grande,,FORMATION,AZ,3/13/1997 22:00 +Dateland,,CIRCLE,AZ,3/13/1997 22:00 +Glendale,,FIREBALL,AZ,3/13/1997 22:00 +Phoenix,,OTHER,AZ,3/13/1997 22:00 +Tucson,,LIGHT,AZ,3/13/1997 22:00 +Phoenix,,,AZ,3/13/1997 22:05 +Fresno,,FORMATION,CA,3/13/1997 23:00 +Dunnellon,,LIGHT,FL,3/14/1997 1:35 +Sahuarita,,TRIANGLE,AZ,3/14/1997 19:00 +Tonopah,,SPHERE,AZ,3/14/1997 20:00 +Los Angeles,,TRIANGLE,CA,3/14/1997 21:00 +Colorado Springs,,TRIANGLE,CO,3/14/1997 22:30 +New York City,,OVAL,NY,3/14/1997 23:59 +Kalamazoo,RED,FLASH,MI,3/15/1997 1:00 +San Tan Valley,,LIGHT,AZ,3/15/1997 1:00 +Woodinville,RED,TRIANGLE,WA,3/15/1997 2:00 +Buena Vista,,OVAL,CO,3/15/1997 10:30 +Miami,,LIGHT,FL,3/15/1997 18:00 +Bossier Parish,,RECTANGLE,LA,3/15/1997 19:00 +Fort Hood,,SPHERE,TX,3/15/1997 21:00 +San Diego,,DISK,CA,3/15/1997 21:00 +Iron River,,LIGHT,MI,3/15/1997 21:30 +Oakton,,DELTA,VA,3/15/1997 23:55 +Yuma,,TRIANGLE,AZ,3/16/1997 11:30 +Osterville,,SPHERE,MA,3/16/1997 17:39 +Mountain View,,SPHERE,CA,3/16/1997 18:48 +Salton Sea,RED,OTHER,CA,3/16/1997 20:30 +Maricopa,ORANGE,LIGHT,AZ,3/16/1997 21:00 +Lincoln City,,TRIANGLE,OR,3/17/1997 9:00 +Aquaduct,,TRIANGLE,CA,3/17/1997 10:00 +Wickenburg,,LIGHT,AZ,3/17/1997 20:00 +Mesa,,CHEVRON,AZ,3/17/1997 20:35 +San Diego,,CIRCLE,CA,3/17/1997 21:00 +Tucson,ORANGE,TRIANGLE,AZ,3/17/1997 21:00 +Cleveland,ORANGE,CIGAR,TX,3/19/1997 20:45 +Phoenix,,OTHER,AZ,3/20/1997 0:00 +Santa Fe,,TRIANGLE,NM,3/20/1997 13:00 +Whitefish,,LIGHT,MT,3/20/1997 20:25 +Yucaipa,ORANGE,FIREBALL,CA,3/21/1997 21:00 +Scottsdale,,CIRCLE,AZ,3/22/1997 16:00 +McDonough,,LIGHT,GA,3/22/1997 20:00 +Bakersfield,YELLOW,LIGHT,CA,3/22/1997 20:32 +Lake Geneva,,LIGHT,WI,3/22/1997 21:00 +Unadilla,,LIGHT,NY,3/22/1997 21:30 +Stevens Point,ORANGE,CRESCENT,WI,3/22/1997 22:30 +Albuquerque,,OTHER,NM,3/23/1997 16:30 +Tigard,,DIAMOND,OR,3/23/1997 19:37 +Nederland,,OTHER,CO,3/23/1997 20:30 +Nederland,,OTHER,CO,3/23/1997 21:45 +Manassas,,FORMATION,VA,3/24/1997 23:40 +Stockton,RED,DIAMOND,CA,3/25/1997 20:32 +Owings Mills,,LIGHT,MD,3/26/1997 22:10 +Huron,,CIRCLE,OH,3/26/1997 22:30 +Winslow,,TRIANGLE,AZ,3/26/1997 22:30 +Ann Arbor,RED,LIGHT,MI,3/27/1997 1:00 +Williston,,SPHERE,FL,3/27/1997 1:03 +Sun Prairie,BLUE,,WI,3/27/1997 16:00 +Carlisle,,FORMATION,PA,3/27/1997 20:10 +Carlisle,,FORMATION,PA,3/27/1997 20:10 +Springfield,,DISK,MO,3/27/1997 20:40 +Palm Springs,,LIGHT,CA,3/27/1997 21:00 +Yuma,,SPHERE,AZ,3/27/1997 22:00 +Toledo,RED GREEN,CIRCLE,OH,3/27/1997 22:30 +Carmichaels,,DISK,PA,3/28/1997 16:00 +Houston,,SPHERE,TX,3/28/1997 22:00 +Phoenix City,,,AL,3/29/1997 20:00 +Cobleskill,ORANGE,LIGHT,NY,3/30/1997 0:45 +Shallotte,ORANGE,FORMATION,NC,3/30/1997 20:30 +Juneau,ORANGE GREEN,LIGHT,AK,3/31/1997 21:00 +Gardena,,OTHER,CA,4/1/1997 0:00 +Foster,,CIGAR,VA,4/1/1997 1:00 +Houston,ORANGE,OTHER,TX,4/1/1997 4:00 +Round Rock,,TRIANGLE,TX,4/1/1997 10:00 +Monument Valley,,LIGHT,UT,4/1/1997 18:30 +Homestead,,,FL,4/1/1997 21:00 +Santa Fe,,,NM,4/1/1997 22:00 +Sedona,RED,SPHERE,AZ,4/1/1997 22:00 +Brush Creek,,,TN,4/1/1997 23:05 +Lebanon,RED,SPHERE,MO,4/2/1997 20:15 +Port Wentworth,,OTHER,GA,4/3/1997 1:35 +Seattle,,OTHER,WA,4/3/1997 17:30 +Gaston,YELLOW GREEN,,OR,4/3/1997 19:50 +Kosciusko,,LIGHT,MS,4/3/1997 21:00 +Phoenix,,OVAL,AZ,4/3/1997 21:00 +Atlanta,,SPHERE,GA,4/4/1997 2:15 +Winsted,,,CT,4/4/1997 20:30 +Palm Springs,,OVAL,CA,4/5/1997 1:00 +Fairhope,,CIRCLE,AL,4/5/1997 14:00 +Fairhope,,OTHER,AL,4/5/1997 14:00 +Randle,,LIGHT,WA,4/5/1997 19:50 +Colorado Springs,,CYLINDER,CO,4/7/1997 5:30 +Milwaukee,,OTHER,WI,4/7/1997 14:00 +Austin,,TRIANGLE,TX,4/7/1997 17:00 +Hastings On Hudson,,TRIANGLE,NY,4/7/1997 21:07 +Sonoma,,CHEVRON,CA,4/8/1997 19:45 +Las Vegas,,RECTANGLE,NV,4/8/1997 20:00 +Little Rock,,DISK,AR,4/10/1997 0:30 +Tompson,,LIGHT,GA,4/10/1997 1:30 +Houma,,CIRCLE,LA,4/11/1997 21:15 +Monrovia,,FORMATION,CA,4/12/1997 23:15 +San Diego,,LIGHT,CA,4/13/1997 19:07 +Edison,,TRIANGLE,NJ,4/14/1997 2:15 +Big Bear City,,OVAL,CA,4/14/1997 18:00 +Howard,,,SD,4/15/1997 0:00 +White Mountains,,OTHER,AZ,4/15/1997 1:00 +Fullerton,,VARIOUS,CA,4/15/1997 1:30 +Fort Pierce,,FIREBALL,FL,4/15/1997 2:30 +Plainwell,,DIAMOND,MI,4/15/1997 2:30 +Atwater,,,CA,4/15/1997 5:40 +Hawthorne,,LIGHT,CA,4/15/1997 10:00 +South Point,,EGG,OH,4/15/1997 13:00 +Charlotte,,,NC,4/15/1997 22:00 +Lincoln,,SPHERE,NE,4/15/1997 22:00 +Bakersfield,YELLOW,LIGHT,CA,4/15/1997 22:30 +Harrisburg,,FORMATION,PA,4/15/1997 22:30 +Coolidge,,LIGHT,AZ,4/15/1997 22:45 +Aurora,,CIGAR,TX,4/17/1997 6:00 +Okanogan,,,WA,4/17/1997 17:30 +West Memphis,,LIGHT,AR,4/17/1997 20:23 +Bismarck,,LIGHT,AR,4/17/1997 22:45 +Lake DeGray,ORANGE,FIREBALL,AR,4/17/1997 22:45 +Hartford,ORANGE,,SD,4/18/1997 4:20 +Dallas,,DIAMOND,TX,4/18/1997 7:05 +Cleveland,,TRIANGLE,OH,4/18/1997 20:40 +Tampa,,TRIANGLE,FL,4/18/1997 23:59 +Reno,,OTHER,NV,4/19/1997 1:30 +Suisun,,CIRCLE,CA,4/19/1997 22:00 +Carlinville,,OTHER,IL,4/20/1997 2:00 +Reno,,,NV,4/20/1997 4:00 +Greentown,,FORMATION,IN,4/20/1997 4:28 +Billings,,LIGHT,MT,4/20/1997 19:00 +Lakewood,,,WA,4/20/1997 20:05 +Las Vegas,,LIGHT,NV,4/20/1997 23:00 +La Conner,,,WA,4/21/1997 20:40 +Stanwood,,,WA,4/21/1997 20:40 +Los Angeles,,,CA,4/21/1997 21:20 +Worcester,,EGG,MA,4/22/1997 0:34 +Spokane,RED,LIGHT,WA,4/22/1997 1:00 +Seattle,,,WA,4/23/1997 0:05 +Guntersville,,OVAL,AL,4/23/1997 18:00 +Houston,RED,TRIANGLE,TX,4/23/1997 19:30 +Orlando,,LIGHT,FL,4/23/1997 21:00 +Clarion,,LIGHT,PA,4/24/1997 1:00 +Coos Bay,,SPHERE,OR,4/24/1997 21:30 +New Brighton,,TRIANGLE,MN,4/24/1997 21:45 +Depoe Bay,,,OR,4/24/1997 23:00 +New York City,,OTHER,NY,4/25/1997 0:00 +Delray Beach,RED,LIGHT,FL,4/25/1997 1:45 +San-Carlos mountains,,LIGHT,AZ,4/27/1997 1:00 +Williamston,,TRIANGLE,SC,4/28/1997 0:25 +Houston,,LIGHT,TX,4/28/1997 22:00 +Fresh Pond,GREEN,FORMATION,CA,4/29/1997 17:00 +Twelve Mile,,DISK,IN,4/30/1997 21:00 +Columbia,,LIGHT,MO,4/30/1997 23:00 +Westboro,,OTHER,MA,4/30/1997 23:30 +Maysville,,DISK,KY,5/1/1997 14:00 +Cedar Rapids,BLUE,TRIANGLE,IA,5/1/1997 22:00 +St. Petersburg,,TRIANGLE,FL,5/1/1997 22:00 +State College,,FLASH,PA,5/1/1997 22:00 +Syracuse,,,NY,5/1/1997 23:00 +Oceanside,ORANGE,OTHER,CA,5/2/1997 22:00 +Oceanside,ORANGE,OTHER,CA,5/2/1997 22:05 +Lincoln City,YELLOW,LIGHT,OR,5/2/1997 22:45 +Freeport,,TRIANGLE,IL,5/3/1997 21:00 +Stafford,,OTHER,TX,5/3/1997 21:03 +Freeport,,TRIANGLE,IL,5/3/1997 23:30 +Newport Beach,,TRIANGLE,CA,5/4/1997 22:20 +Norton,,TRIANGLE,KS,5/5/1997 1:00 +West Chester,,EGG,PA,5/5/1997 12:15 +Austin,,LIGHT,TX,5/5/1997 19:00 +Bee Caves,RED BLUE,OTHER,TX,5/5/1997 19:00 +Turlock,,LIGHT,CA,5/5/1997 19:45 +Round Rock,,RECTANGLE,TX,5/5/1997 20:30 +Seattle,,DISK,WA,5/6/1997 17:25 +Santa Monica,,DISK,CA,5/7/1997 1:00 +Corapeake,,FLASH,NC,5/7/1997 20:00 +Sylmar,,OTHER,CA,5/8/1997 1:30 +Citrus Heights,,OTHER,CA,5/8/1997 5:15 +Auburn,,TRIANGLE,WA,5/8/1997 22:00 +Las Vegas,ORANGE,LIGHT,NV,5/9/1997 21:00 +Phoenix,,LIGHT,AZ,5/9/1997 21:50 +Austin,,FLASH,TX,5/10/1997 0:00 +Provo,YELLOW,LIGHT,UT,5/10/1997 0:25 +Neoga,RED,TRIANGLE,IL,5/10/1997 4:10 +Lawton,,,MI,5/10/1997 5:30 +Southside,,OTHER,AL,5/10/1997 21:00 +Sedona,,LIGHT,AZ,5/10/1997 21:50 +Los Padres National Forest,,OTHER,CA,5/10/1997 22:45 +Azle,BLUE,CIRCLE,TX,5/10/1997 23:00 +Winthrop,,OTHER,WA,5/10/1997 23:59 +Porter,RED,OTHER,TX,5/11/1997 12:00 +College,,CIGAR,UT,5/11/1997 13:56 +Greenwich,,TRIANGLE,CT,5/11/1997 23:00 +Wright City,,FIREBALL,MO,5/11/1997 23:43 +Death Valley Gas Station,,OVAL,CA,5/12/1997 23:30 +Edinboro,,OVAL,PA,5/13/1997 3:00 +Valley Springs,,TEARDROP,CA,5/13/1997 19:30 +Petaluma,,TRIANGLE,CA,5/13/1997 21:00 +Cottonwood,,LIGHT,AZ,5/13/1997 22:30 +San Jose,,CIRCLE,CA,5/14/1997 11:40 +San Diego,,DISK,CA,5/15/1997 0:00 +Londonderry,,LIGHT,NH,5/15/1997 2:00 +Mesquite,,TEARDROP,TX,5/15/1997 8:30 +College Station,,LIGHT,TX,5/15/1997 10:00 +Mesquite,,CIRCLE,TX,5/15/1997 10:00 +Palm Beach Gardens,,FORMATION,FL,5/15/1997 16:53 +Sorrento,,CIGAR,FL,5/15/1997 18:30 +Waco,,LIGHT,TX,5/15/1997 20:00 +Asheville,,OTHER,NC,5/15/1997 21:00 +Great River,,OVAL,NY,5/15/1997 21:00 +South Bend,,TRIANGLE,IN,5/15/1997 22:30 +Bouse,,TRIANGLE,AZ,5/15/1997 22:45 +Oklahoma City,,TRIANGLE,OK,5/16/1997 23:00 +Las Vegas,,TRIANGLE,NV,5/17/1997 3:30 +Portland,,OVAL,OR,5/17/1997 14:00 +Grantville,,TRIANGLE,PA,5/18/1997 19:00 +Jackson,,LIGHT,MI,5/18/1997 21:00 +Kalamazoo,,VARIOUS,MI,5/19/1997 0:20 +Los Angeles,,OVAL,CA,5/20/1997 0:00 +Louisville,,CIRCLE,KY,5/20/1997 1:00 +Jupiter,,OTHER,FL,5/20/1997 4:01 +North Pole,,,AK,5/20/1997 15:00 +Caldwell,,OTHER,ID,5/20/1997 21:15 +Wolf Point,,FIREBALL,MT,5/21/1997 4:00 +Phoenix,,OTHER,AZ,5/21/1997 6:00 +Simi Valley,,FORMATION,CA,5/22/1997 21:25 +Chatham,,DISK,NJ,5/22/1997 22:21 +Arcadia,,LIGHT,FL,5/23/1997 4:00 +Lake Tahoe,,FORMATION,CA,5/24/1997 20:00 +North Tonawanda,YELLOW,TRIANGLE,NY,5/24/1997 22:15 +Skies over Sierra Nevada,GREEN,LIGHT,CA,5/25/1997 1:10 +Austin,,DISK,TX,5/25/1997 19:30 +Saxton,,FORMATION,PA,5/25/1997 22:00 +Syracuse,,TRIANGLE,NY,5/25/1997 22:00 +Pompton Lakes,,DISK,NJ,5/26/1997 16:50 +Winnsboro,,OTHER,LA,5/27/1997 0:00 +Laguna Park,,CIGAR,TX,5/27/1997 0:35 +Arlington,,DISK,VA,5/27/1997 15:30 +Huntington,,LIGHT,UT,5/27/1997 23:00 +Wichita,,LIGHT,KS,5/27/1997 23:30 +Central New York,,LIGHT,NY,5/28/1997 22:00 +Canastota,,LIGHT,NY,5/28/1997 23:12 +Aston,,OVAL,PA,5/29/1997 11:59 +Hinckley,,LIGHT,NY,5/29/1997 19:00 +Manchester,,,NH,5/30/1997 2:00 +Dallas,,SPHERE,GA,5/30/1997 11:45 +Pooler,GREEN,FIREBALL,GA,5/30/1997 20:00 +Glendale,,,AZ,5/31/1997 11:28 +Austin,,RECTANGLE,TX,6/1/1997 0:00 +Baltimore,,CHEVRON,MD,6/1/1997 0:00 +Elma,,DISK,WA,6/1/1997 0:00 +Houston,,CHEVRON,TX,6/1/1997 0:00 +Phoenix,,,AZ,6/1/1997 0:00 +Egg Harbor Township,,EGG,NJ,6/1/1997 0:01 +North Bergen,,LIGHT,NJ,6/1/1997 1:00 +Phoenix,RED,,AZ,6/1/1997 1:00 +Rushcreek,,OTHER,IN,6/1/1997 2:00 +Eden Praire,,TRIANGLE,MN,6/1/1997 3:00 +New Mexico,,DISK,NM,6/1/1997 3:30 +South Charleston,,,WV,6/1/1997 5:30 +Crestwood,GREEN,CIRCLE,KY,6/1/1997 6:35 +Hamilton,,CIRCLE,OH,6/1/1997 7:00 +Mt. Vernon,,LIGHT,NY,6/1/1997 8:00 +Garden Grove,,OTHER,CA,6/1/1997 9:00 +American Canyon,,TRIANGLE,CA,6/1/1997 10:00 +Waimanalo,,OVAL,HI,6/1/1997 10:00 +Lashmeet,BLUE,TRIANGLE,WV,6/1/1997 12:00 +Glen Wilton,,,VA,6/1/1997 13:00 +Fresno,,OVAL,CA,6/1/1997 14:00 +Greenfield,RED,,WI,6/1/1997 14:00 +Montebello,,CIRCLE,CA,6/1/1997 18:00 +El Centro,,CHEVRON,CA,6/1/1997 19:00 +Houston,,OTHER,TX,6/1/1997 19:45 +Meriden,,SPHERE,CT,6/1/1997 20:00 +Pelzer,,TRIANGLE,SC,6/1/1997 20:00 +Albany,,OTHER,NY,6/1/1997 21:00 +McComb,,TRIANGLE,OH,6/1/1997 21:00 +Merritt Island,YELLOW,LIGHT,FL,6/1/1997 21:00 +Southern California Operations Area,,TRIANGLE,CA,6/1/1997 21:00 +Springfield,,CHEVRON,MA,6/1/1997 21:00 +El Paso,,OTHER,TX,6/1/1997 21:30 +Park City,,CIRCLE,UT,6/1/1997 22:00 +Richmond,,OTHER,CA,6/1/1997 22:00 +Smithsburg,,OTHER,MD,6/1/1997 22:00 +San Fransisco,,FORMATION,CA,6/1/1997 22:30 +Raton,,,NM,6/1/1997 23:00 +Shoreline,,TRIANGLE,WA,6/1/1997 23:00 +Exeter,,DISK,NH,6/2/1997 1:30 +Spanaway,,DISK,WA,6/3/1997 22:30 +Coushatta,ORANGE,LIGHT,LA,6/3/1997 23:00 +Havelock,,OTHER,NC,6/4/1997 20:30 +White Plains,,OTHER,NY,6/4/1997 21:20 +New York City,,DISK,NY,6/5/1997 16:00 +Hayward,,OTHER,CA,6/5/1997 21:30 +Colorado,,DISK,CO,6/6/1997 18:00 +Bothell,ORANGE,LIGHT,WA,6/6/1997 21:45 +Jeffersonville,RED,LIGHT,IN,6/7/1997 3:00 +Weatherford,,FIREBALL,OK,6/7/1997 19:30 +Quincy,,CYLINDER,MA,6/7/1997 22:00 +St. Louis,,CYLINDER,MO,6/7/1997 22:30 +Santa Clara,,VARIOUS,CA,6/8/1997 15:00 +Renton,,DISK,WA,6/8/1997 19:16 +Monterey,GREEN BLUE,OTHER,CA,6/9/1997 1:15 +Doylestown,,TRIANGLE,PA,6/9/1997 1:30 +Kalamazoo,,FORMATION,MI,6/9/1997 12:00 +Holly,,TRIANGLE,MI,6/9/1997 22:30 +New York,,OTHER,NY,6/10/1997 12:00 +Newport,,DISK,ME,6/10/1997 12:00 +Knoxville,,TRIANGLE,TN,6/10/1997 16:00 +Rochester,GREEN,TRIANGLE,NY,6/10/1997 21:00 +Hart Mountain Elk Preserve,YELLOW,LIGHT,OR,6/10/1997 21:30 +Louisville,,OTHER,KY,6/10/1997 22:00 +Golden,,LIGHT,CO,6/10/1997 22:30 +Zion Grove,,LIGHT,PA,6/10/1997 23:00 +Reno,,CYLINDER,NV,6/11/1997 11:00 +San Angelo,,OTHER,TX,6/11/1997 21:20 +Hieleah,,DISK,FL,6/12/1997 13:00 +Newark,,LIGHT,NJ,6/12/1997 21:45 +Beverly Hills,,TRIANGLE,CA,6/13/1997 16:00 +no data,,OVAL,TX,6/13/1997 21:00 +Franconia,,FIREBALL,PA,6/13/1997 22:20 +Orlando,ORANGE,CIRCLE,FL,6/13/1997 23:00 +Meridian,,TRIANGLE,ID,6/14/1997 0:00 +Vancouver,,LIGHT,WA,6/14/1997 2:45 +Newberg,,OTHER,OR,6/14/1997 3:30 +Ludlow,RED,,CA,6/14/1997 20:00 +Austin,,TRIANGLE,TX,6/14/1997 23:20 +Altamonte Springs,,LIGHT,FL,6/15/1997 0:00 +Grove City,,TRIANGLE,PA,6/15/1997 0:00 +Lawton,,FIREBALL,MI,6/15/1997 0:30 +Orlando,,DISK,FL,6/15/1997 1:00 +Peoria,,DISK,IL,6/15/1997 1:00 +Middletown,,,NY,6/15/1997 2:30 +Las Cruces,RED,FIREBALL,NM,6/15/1997 3:00 +"Oak Brook Terrace, Dorathy Drennon Park in",,DISK,IL,6/15/1997 9:00 +Colorado Springs,,DISK,CA,6/15/1997 13:00 +Gaffney,,CYLINDER,SC,6/15/1997 13:30 +Edmond,,DISK,OK,6/15/1997 14:00 +Jackson,,SPHERE,MI,6/15/1997 15:00 +Ripley,,,TN,6/15/1997 15:00 +Wapakoneta,,EGG,OH,6/15/1997 15:00 +Eden Prairie,,CIRCLE,MN,6/15/1997 16:00 +McGregor,,SPHERE,TX,6/15/1997 16:00 +Marlboro,,CIRCLE,MD,6/15/1997 16:40 +Salt Lake City,,OTHER,UT,6/15/1997 17:30 +Akron,,DISK,OH,6/15/1997 18:00 +Columbus,,TRIANGLE,OH,6/15/1997 18:00 +Swanville,,LIGHT,ME,6/15/1997 20:27 +Blaine,,,MN,6/15/1997 21:00 +Medford,,SPHERE,NY,6/15/1997 21:00 +Seattle,,TRIANGLE,WA,6/15/1997 21:00 +Westport,GREEN,OTHER,CT,6/15/1997 21:30 +Eagle Butte,,LIGHT,SD,6/15/1997 22:00 +Fort Myers,,SPHERE,FL,6/15/1997 22:00 +Lawton,,SPHERE,MI,6/15/1997 22:00 +Olive Hill,,LIGHT,KY,6/15/1997 22:00 +Ponte Vedra,YELLOW,FIREBALL,FL,6/15/1997 22:00 +Irvine,,VARIOUS,CA,6/15/1997 22:15 +,,TRIANGLE,IL,6/15/1997 23:00 +Mena,,OTHER,AR,6/15/1997 23:00 +Silver City,,,NM,6/15/1997 23:00 +Sun City,,FIREBALL,CA,6/15/1997 23:00 +Virginia,,DISK,VA,6/15/1997 23:50 +Murphy,,OTHER,OR,6/16/1997 22:46 +Petaluma,,LIGHT,CA,6/17/1997 1:30 +Roswell,,CIRCLE,NM,6/17/1997 4:55 +Beaumont,,LIGHT,MO,6/17/1997 10:30 +Pico Rivera,,CHEVRON,CA,6/17/1997 12:00 +Prescott,GREEN,FIREBALL,AZ,6/17/1997 21:30 +Portland,RED,LIGHT,OR,6/17/1997 23:15 +Carsonville,,DISK,MI,6/18/1997 20:00 +New Albany,,CIGAR,IN,6/18/1997 22:00 +Gladewater,,OTHER,TX,6/19/1997 2:00 +Englewood Cliffs,YELLOW,LIGHT,NJ,6/19/1997 20:15 +Cottonwood,,DISK,AZ,6/19/1997 20:30 +Sunnyside,RED,LIGHT,WA,6/20/1997 0:35 +Ocala,ORANGE,LIGHT,FL,6/20/1997 1:00 +Black Horse pike,,DISK,NJ,6/20/1997 1:45 +Seattle,,OTHER,WA,6/20/1997 4:30 +Carefree,YELLOW GREEN,CIRCLE,AZ,6/20/1997 20:34 +Holland Patent,BLUE,CIRCLE,NY,6/20/1997 21:00 +Little Marsh,,TRIANGLE,PA,6/20/1997 21:00 +Alamosa,RED,LIGHT,CO,6/20/1997 21:45 +Collierville,,OVAL,TN,6/20/1997 23:00 +Libertyville,,DISK,IL,6/21/1997 0:00 +Phoenix,,CYLINDER,AZ,6/21/1997 9:45 +Ticonderoga,BLUE,TRIANGLE,NY,6/21/1997 11:28 +Edgemere,,OTHER,MI,6/21/1997 17:00 +Fort Collins,,DISK,CO,6/21/1997 23:30 +Orlando,YELLOW,,FL,6/22/1997 1:00 +Greensboro,,LIGHT,NC,6/22/1997 6:00 +Huffman,,OTHER,TX,6/22/1997 6:30 +Willow Creek Campground,,OTHER,CA,6/23/1997 1:00 +Howell,,SPHERE,NJ,6/23/1997 2:00 +Eunice,,LIGHT,LA,6/23/1997 9:30 +Cuba,,LIGHT,MO,6/23/1997 21:00 +San Francisco,GREEN,OVAL,CA,6/24/1997 1:57 +Fresno,,LIGHT,CA,6/24/1997 21:00 +Phoenix,,CHEVRON,AZ,6/25/1997 9:11 +Wendover,,DISK,UT,6/26/1997 23:05 +Helena,,,MT,6/27/1997 0:00 +Gresham,,TRIANGLE,OR,6/27/1997 0:50 +Lansing,,LIGHT,MI,6/27/1997 2:40 +North Babylon,,TRIANGLE,NY,6/27/1997 20:00 +Fountain Hills,,OTHER,AZ,6/27/1997 20:30 +Harvey's Lake,,OTHER,PA,6/28/1997 8:00 +Wilcox,,CYLINDER,AZ,6/28/1997 12:00 +Springfield,,DISK,OH,6/28/1997 18:00 +Cave Creek,RED YELLOW,TRIANGLE,AZ,6/29/1997 22:09 +Farmington,,,NM,6/29/1997 23:45 +Bigfork,,TRIANGLE,MT,6/30/1997 1:00 +Venice,,CIGAR,FL,6/30/1997 5:45 +Camarillo,,CIRCLE,CA,6/30/1997 6:00 +Anchorage,,CYLINDER,AK,6/30/1997 12:00 +Salisbury,,LIGHT,NC,6/30/1997 12:00 +Casa Grande,,TRIANGLE,AZ,6/30/1997 21:00 +Fort Smith,,LIGHT,AR,6/30/1997 21:00 +Tijeras,,CIGAR,NM,6/30/1997 23:00 +Freehold,ORANGE,LIGHT,NJ,7/1/1997 0:00 +Fort Benning,,,GA,7/1/1997 0:01 +Kilgore,,CIRCLE,TX,7/1/1997 1:30 +Kilgore,,CIRCLE,TX,7/1/1997 1:30 +Albion,,CIGAR,PA,7/1/1997 13:00 +Omaha,,DISK,NE,7/1/1997 15:20 +Hamilton,,OTHER,NJ,7/1/1997 18:00 +New York City,,SPHERE,NY,7/1/1997 18:00 +Kingston,,DISK,NY,7/1/1997 21:00 +Willow Creek,,SPHERE,CA,7/1/1997 23:00 +Davenport,,CIRCLE,CA,7/2/1997 21:00 +Petaluma,,VARIOUS,CA,7/2/1997 21:00 +Rachel,,SPHERE,NV,7/2/1997 21:15 +Calistoga,YELLOW,TRIANGLE,CA,7/2/1997 21:30 +South Hadley,RED,SPHERE,MA,7/2/1997 23:00 +Boonville,,LIGHT,MO,7/2/1997 23:30 +Pullman,,RECTANGLE,WA,7/3/1997 0:00 +Brentwood,,CYLINDER,TN,7/3/1997 3:00 +Vanleer,ORANGE YELLOW,FORMATION,TN,7/3/1997 21:30 +Fennville,,SPHERE,MI,7/3/1997 22:00 +Lexington,,TRIANGLE,KY,7/3/1997 22:30 +Harbor Springs,,OVAL,MI,7/3/1997 23:00 +Lake Tawakine,,OTHER,TX,7/4/1997 3:30 +Long Beach,,EGG,CA,7/4/1997 13:00 +San Diego,,CIGAR,CA,7/4/1997 16:00 +St. Paul,,SPHERE,MN,7/4/1997 16:00 +Evansville,,CIRCLE,IL,7/4/1997 19:00 +Earth City,,CIGAR,MO,7/4/1997 20:00 +Knob Lick,BLUE,LIGHT,MO,7/4/1997 20:00 +Troy,,CIRCLE,IL,7/4/1997 20:00 +St. Charles,GREEN,LIGHT,MO,7/4/1997 20:30 +Bellevelle area college,BLUE,LIGHT,IL,7/4/1997 21:00 +Belleville,BLUE,LIGHT,IL,7/4/1997 21:00 +Hazel Park,,DISK,MI,7/4/1997 21:00 +Millstadt,BLUE,LIGHT,IL,7/4/1997 21:00 +Phoenix,,CYLINDER,AZ,7/4/1997 21:00 +Troy,BLUE,LIGHT,IL,7/4/1997 21:00 +Lonedell,BLUE,DELTA,MO,7/4/1997 21:10 +Coldwater,,LIGHT,MO,7/4/1997 21:15 +Dadeville,,,MO,7/4/1997 21:15 +Des Peres,BLUE,LIGHT,MO,7/4/1997 21:15 +Elmwood,,LIGHT,IL,7/4/1997 21:15 +Granite City,,LIGHT,IL,7/4/1997 21:15 +"Mark Twain Lake, Monroe City",BLUE,LIGHT,MO,7/4/1997 21:15 +Oakville,GREEN,LIGHT,MO,7/4/1997 21:15 +Plymouth,,LIGHT,WI,7/4/1997 21:15 +Scottsdale,RED,,AZ,7/4/1997 21:15 +St. Charles,BLUE,LIGHT,MO,7/4/1997 21:15 +St. Charles,BLUE,SPHERE,MO,7/4/1997 21:15 +St. Louis,BLUE,LIGHT,MO,7/4/1997 21:15 +Chesterfield,,LIGHT,MO,7/4/1997 21:18 +Arnold,,LIGHT,MO,7/4/1997 21:20 +Olney,BLUE,LIGHT,IL,7/4/1997 21:25 +Auburn,,TRIANGLE,WA,7/4/1997 21:30 +Belleville,BLUE,LIGHT,IL,7/4/1997 21:30 +Crestwood,,LIGHT,MO,7/4/1997 21:30 +Creve Coeur,BLUE,LIGHT,MO,7/4/1997 21:30 +Florissant,,LIGHT,MO,7/4/1997 21:30 +Florissant,BLUE,LIGHT,MO,7/4/1997 21:30 +Gerald,BLUE,LIGHT,MO,7/4/1997 21:30 +Hazel Park,,OVAL,MI,7/4/1997 21:30 +Hazelwood,,OVAL,MO,7/4/1997 21:30 +Historic St. Charles Riverfront,,OVAL,MO,7/4/1997 21:30 +St. Charles,BLUE,LIGHT,MO,7/4/1997 21:30 +St. Louis,,LIGHT,MO,7/4/1997 21:30 +St. Louis,BLUE,LIGHT,MO,7/4/1997 21:30 +Troy,,LIGHT,MO,7/4/1997 21:30 +Fairview Heights,BLUE,LIGHT,IL,7/4/1997 21:35 +Millstadt,RED,LIGHT,IL,7/4/1997 21:35 +Collinsville,BLUE,LIGHT,IL,7/4/1997 21:40 +St. Peters,BLUE,LIGHT,MO,7/4/1997 21:40 +Belleville Community College,BLUE,LIGHT,IL,7/4/1997 21:45 +Brighton,BLUE,LIGHT,IL,7/4/1997 21:45 +Desoadoamd House Springs,GREEN BLUE,LIGHT,MO,7/4/1997 21:45 +East Alton,BLUE,LIGHT,IL,7/4/1997 21:45 +Lenzburg,,LIGHT,IL,7/4/1997 21:45 +Millstadt,BLUE,LIGHT,IL,7/4/1997 21:45 +Alton,,LIGHT,IL,7/4/1997 22:00 +Dupo,BLUE,LIGHT,IL,7/4/1997 22:00 +Granite City,BLUE,LIGHT,IL,7/4/1997 22:00 +Old Valmeyer Bottoms-Valmeyer,,TEARDROP,IL,7/4/1997 22:00 +Redding,RED,,CA,7/4/1997 22:00 +Redding,RED,LIGHT,CA,7/4/1997 22:00 +Rockport,,,IN,7/4/1997 22:00 +St. Louis,,DISK,MO,7/4/1997 22:00 +McMinnville,,DISK,OR,7/4/1997 22:14 +Columbia,BLUE,LIGHT,IL,7/4/1997 22:30 +Frontenac,GREEN,LIGHT,MO,7/4/1997 22:30 +St. Louis,BLUE,LIGHT,MO,7/4/1997 22:30 +Freeburg,,LIGHT,IL,7/4/1997 22:45 +St. Louis,BLUE,LIGHT,MO,7/4/1997 23:00 +Crete,,LIGHT,NE,7/5/1997 0:00 +Florence,,TRIANGLE,OR,7/5/1997 1:30 +N. Waterboro,,SPHERE,ME,7/5/1997 19:30 +Caseyville,,SPHERE,IL,7/5/1997 21:00 +Phoenix,,LIGHT,AZ,7/6/1997 1:30 +Arizona,,TRIANGLE,AZ,7/7/1997 0:00 +Casey,,CIGAR,IL,7/7/1997 12:00 +Stafford,,RECTANGLE,VA,7/7/1997 14:30 +Surgoinsville,,,TN,7/7/1997 16:53 +Las Cruces,,VARIOUS,NM,7/7/1997 20:45 +White Sands Missile Range,,CIRCLE,NM,7/7/1997 20:45 +Coopersville,,,MI,7/7/1997 23:00 +Olathe,,LIGHT,KS,7/9/1997 0:05 +Puyallup,GREEN,,WA,7/10/1997 1:30 +Onalaska,,SPHERE,WI,7/10/1997 13:00 +Onalaska,,SPHERE,WI,7/10/1997 13:00 +Hayward,,DISK,WI,7/10/1997 15:45 +Greenville,,OTHER,TX,7/10/1997 19:05 +Lafayette,,FIREBALL,IN,7/10/1997 21:00 +Allison Park,,CYLINDER,PA,7/11/1997 15:25 +El Paso,,CIGAR,TX,7/11/1997 18:00 +Gorham,,CIGAR,ME,7/11/1997 20:00 +Phoenix,RED ORANGE,TRIANGLE,AZ,7/11/1997 23:45 +Gaston,RED,LIGHT,SC,7/12/1997 1:30 +Reno,,TRIANGLE,NV,7/12/1997 2:45 +Trenton,,DISK,OH,7/12/1997 13:00 +Hayward,,FIREBALL,CA,7/14/1997 0:00 +Medford,,,OR,7/14/1997 0:00 +Salem,,LIGHT,OR,7/14/1997 1:30 +Philadelphia,,OVAL,PA,7/14/1997 5:20 +Gulf Shores,,CIRCLE,AL,7/14/1997 14:30 +Salt Lake City,,OTHER,UT,7/14/1997 15:00 +Hazelwood,,SPHERE,MO,7/14/1997 16:00 +Pascagula,,EGG,MS,7/14/1997 23:15 +Golden,,OVAL,CO,7/15/1997 0:00 +Six Flags,,DISK,NJ,7/15/1997 0:00 +Hinckley,,SPHERE,MN,7/15/1997 1:00 +Reedsville,,TRIANGLE,WV,7/15/1997 1:00 +Winfield,,LIGHT,KS,7/15/1997 1:20 +St. Cloud,ORANGE,SPHERE,MN,7/15/1997 3:00 +Allegany,,SPHERE,NY,7/15/1997 11:00 +Cottonwood,,DISK,AZ,7/15/1997 14:00 +Fairfield,,SPHERE,IA,7/15/1997 17:00 +Palatine,,OTHER,IL,7/15/1997 18:00 +Bensrun,,LIGHT,WV,7/15/1997 19:00 +Eden Prairie,,OTHER,MN,7/15/1997 19:00 +Caballo,,TRIANGLE,NM,7/15/1997 20:30 +Deer Field,RED,CIRCLE,NY,7/15/1997 21:00 +Goldsboro,,SPHERE,NC,7/15/1997 21:00 +New Jersey,,FIREBALL,NJ,7/15/1997 21:00 +Tucson,,TRIANGLE,AZ,7/15/1997 21:00 +Kernersville,,TRIANGLE,NC,7/15/1997 21:30 +Fayetteville,,TRIANGLE,NC,7/15/1997 22:00 +Kings Mtn.,,LIGHT,NC,7/15/1997 22:30 +Las Cruces,,FIREBALL,NM,7/15/1997 22:30 +Jefferson Estates,,LIGHT,PA,7/15/1997 22:45 +Asheville,,SPHERE,NC,7/15/1997 23:00 +Goldsboro,,FORMATION,NC,7/15/1997 23:00 +Lake Fork,,LIGHT,TX,7/15/1997 23:00 +Kokomo,,TRIANGLE,IN,7/15/1997 23:30 +Flagstaff,,LIGHT,AZ,7/16/1997 0:00 +Edmonds,,TRIANGLE,WA,7/16/1997 17:20 +Mojave,,LIGHT,CA,7/16/1997 20:00 +Parkland,,LIGHT,FL,7/16/1997 21:30 +Belfield,,LIGHT,ND,7/17/1997 23:00 +Hartford,RED,TRIANGLE,CT,7/17/1997 23:40 +Salem,RED BLUE,,NH,7/18/1997 2:00 +Shepherdstown,,LIGHT,WV,7/18/1997 23:00 +Newark to San Leandro,,OTHER,CA,7/19/1997 17:30 +Trout Lake,,,WA,7/19/1997 23:00 +Russellville,,LIGHT,AR,7/20/1997 3:00 +Hopewell,,DISK,VA,7/20/1997 4:00 +Bridgehampton,,TRIANGLE,NY,7/20/1997 20:00 +Buffalo,,VARIOUS,NY,7/20/1997 22:00 +Conway,,DIAMOND,SC,7/20/1997 22:00 +Beaver Island,,TRIANGLE,MI,7/20/1997 23:30 +Tequesta,,FIREBALL,FL,7/22/1997 11:45 +Desert,,,AR,7/22/1997 12:00 +Arabela,,TRIANGLE,NM,7/22/1997 13:00 +Port Orford,,CIGAR,OR,7/22/1997 14:00 +Susquehanna,RED,CIRCLE,PA,7/22/1997 22:00 +Hart Mountain,,TRIANGLE,OR,7/22/1997 22:15 +Los Angeles,,OTHER,CA,7/23/1997 13:30 +Warrenton,,TRIANGLE,VA,7/23/1997 20:00 +Phoenix,,TRIANGLE,AZ,7/23/1997 20:25 +Tooele,ORANGE,LIGHT,UT,7/23/1997 21:30 +Miami,,FORMATION,FL,7/23/1997 23:00 +Miami,,FORMATION,FL,7/23/1997 23:00 +Murphysboro,,CYLINDER,IL,7/24/1997 21:45 +Colfax,,FIREBALL,CA,7/25/1997 3:00 +Phoenix,,,AZ,7/25/1997 17:00 +Arlington,,VARIOUS,WA,7/26/1997 3:21 +Warrensburg,,TRIANGLE,MO,7/26/1997 18:00 +Chicago,,,IL,7/27/1997 0:00 +Medford,,TRIANGLE,NJ,7/27/1997 2:00 +Arlington,,LIGHT,WA,7/27/1997 2:53 +Las Cruces,,LIGHT,NM,7/27/1997 21:30 +Pete's Hole,,TRIANGLE,UT,7/28/1997 15:00 +Bristol,,CIGAR,VA,7/28/1997 21:30 +Wayzata,,FIREBALL,MN,7/28/1997 23:30 +South Euclid,,CIRCLE,OH,7/29/1997 21:20 +Lake Winnibigoshish,ORANGE,OTHER,MN,7/30/1997 0:30 +Corpus Christi,,OVAL,TX,7/30/1997 1:00 +Fridley,,FIREBALL,MN,7/30/1997 1:30 +Navarre,,CIRCLE,FL,7/30/1997 20:00 +Gulf Breeze,ORANGE,FORMATION,FL,7/30/1997 20:10 +Salem,,,OR,7/31/1997 2:40 +Salem,,,OR,7/31/1997 2:45 +Denver,,CIRCLE,CO,8/1/1997 13:00 +Palm Harbor,RED,DISK,FL,8/1/1997 22:00 +Hurricane,GREEN,LIGHT,UT,8/1/1997 22:30 +Chattanooga,,LIGHT,TN,8/1/1997 23:00 +Middletown,,DISK,CT,8/2/1997 4:00 +Sikeston,GREEN,LIGHT,MO,8/2/1997 10:10 +Albany,,OVAL,OR,8/2/1997 11:45 +Caldwell,,DISK,ID,8/2/1997 18:45 +Hwy. 15,ORANGE,FIREBALL,MS,8/2/1997 22:00 +Rocklin,,OTHER,CA,8/2/1997 22:50 +Overton,RED GREEN,SPHERE,NV,8/3/1997 2:00 +St. Louis,,CYLINDER,MO,8/3/1997 19:15 +Palm Springs,,LIGHT,CA,8/3/1997 21:15 +Bakersville,,LIGHT,NC,8/3/1997 22:03 +Sand Springs,RED BLUE,OTHER,MT,8/3/1997 23:30 +Santa Cruz,,DIAMOND,CA,8/5/1997 3:30 +Wichita,,LIGHT,KS,8/6/1997 5:55 +Aguila,,TRIANGLE,AZ,8/6/1997 22:00 +New York City,,OTHER,NY,8/7/1997 17:07 +Buckeye,BLUE,LIGHT,AZ,8/8/1997 2:35 +Dracut,,TRIANGLE,MA,8/8/1997 15:00 +East Rochester,,SPHERE,NY,8/8/1997 18:00 +Lynnwood,,OTHER,WA,8/8/1997 21:06 +West Islip,,OTHER,NY,8/8/1997 22:00 +Kenai,,CIGAR,AK,8/8/1997 23:00 +Bloomington,BLUE,TRIANGLE,MN,8/9/1997 0:30 +Bel Air,,OTHER,MD,8/9/1997 11:24 +Sedro Woolley,RED,OTHER,WA,8/10/1997 22:00 +Bellingham,YELLOW,LIGHT,WA,8/10/1997 23:30 +North Lynnwood,,LIGHT,WA,8/12/1997 0:30 +Grand Rapids,RED GREEN,LIGHT,MI,8/12/1997 1:00 +Fridley,ORANGE,SPHERE,MN,8/12/1997 17:08 +Canyon,YELLOW,LIGHT,CA,8/12/1997 21:15 +Papillion,,LIGHT,NE,8/12/1997 21:57 +Boundary Waters,BLUE,OVAL,MN,8/12/1997 23:00 +Fultz,,RECTANGLE,IL,8/12/1997 23:30 +Norco,BLUE,DISK,CA,8/14/1997 13:00 +Acton,ORANGE,OVAL,CA,8/15/1997 0:00 +Millerstown,,TRIANGLE,KY,8/15/1997 0:00 +Golden Valley,BLUE,LIGHT,AZ,8/15/1997 0:35 +Bigfork,ORANGE,SPHERE,MT,8/15/1997 1:00 +Shelbina,,,MO,8/15/1997 2:00 +Parkersburg,,TRIANGLE,WV,8/15/1997 4:00 +Lenexa,,DISK,KS,8/15/1997 5:40 +Denmark,,DISK,ME,8/15/1997 15:00 +Roy,,CHEVRON,WA,8/15/1997 20:00 +Buffalo,,SPHERE,NY,8/15/1997 20:15 +Idaho Falls,,OTHER,ID,8/15/1997 22:00 +Kingsman,,LIGHT,AZ,8/15/1997 22:00 +Robertson County,,OTHER,TX,8/15/1997 22:00 +Clearfield,,TRIANGLE,UT,8/15/1997 22:30 +Lahaina,,TRIANGLE,HI,8/15/1997 22:30 +West Sunbury,,LIGHT,PA,8/15/1997 23:30 +Rutherfordton,,CIGAR,NC,8/16/1997 12:00 +Loring AFB,,CIGAR,ME,8/16/1997 17:00 +Sciota,,DISK,PA,8/17/1997 0:30 +Salinas,,LIGHT,CA,8/17/1997 5:00 +Philadelphia,,SPHERE,PA,8/17/1997 9:30 +Kalamazoo,,DISK,MI,8/17/1997 18:00 +Sioux City,,TRIANGLE,IA,8/17/1997 22:30 +Kaiser,,LIGHT,MO,8/17/1997 23:10 +Woodridge,,LIGHT,IL,8/17/1997 23:50 +Manhattan Beach,,TEARDROP,CA,8/18/1997 19:00 +Oberlin,,TRIANGLE,OH,8/19/1997 23:30 +Grand Rapids,,DIAMOND,MI,8/20/1997 18:00 +Tucson,,LIGHT,AZ,8/20/1997 19:30 +Pinckney,,LIGHT,MI,8/20/1997 23:00 +Winslow,,OTHER,IN,8/21/1997 23:30 +Eustace,RED,LIGHT,TX,8/22/1997 0:00 +Kingsville,,CIGAR,TX,8/22/1997 6:22 +Kings Park,GREEN,OTHER,NY,8/22/1997 10:50 +Atlantic City,RED,LIGHT,WY,8/22/1997 23:30 +Cantoma,,TRIANGLE,FL,8/23/1997 1:00 +Dale Ville,,TRIANGLE,IN,8/23/1997 11:30 +Billings,,CIGAR,MT,8/23/1997 20:00 +Sherman Oaks,,FORMATION,CA,8/23/1997 22:00 +Palm Springs,,CIGAR,CA,8/24/1997 18:00 +Elk River,GREEN,TRIANGLE,MN,8/24/1997 21:00 +Biscoe,,VARIOUS,NC,8/24/1997 21:45 +Jay Co. into Wells Co.,,DISK,IN,8/25/1997 1:00 +Ft. Dix,,OTHER,NJ,8/25/1997 13:30 +Fontana,,TRIANGLE,CA,8/25/1997 22:00 +Hot Springs,,CIRCLE,AR,8/28/1997 0:10 +Page,,LIGHT,AZ,8/28/1997 20:00 +Coeur d'Alene,,TRIANGLE,ID,8/28/1997 22:00 +Lyons,,DISK,CO,8/29/1997 18:30 +Livermore Falls,ORANGE,FIREBALL,ME,8/29/1997 21:30 +Tucson,,CHEVRON,AZ,8/29/1997 22:00 +Woodlands,,LIGHT,TX,8/30/1997 0:00 +San Jose,,FORMATION,CA,8/30/1997 18:00 +Ocracoke,,OTHER,NC,8/30/1997 21:00 +Aston,,DIAMOND,PA,8/30/1997 22:00 +Lost Lake,BLUE,EGG,OR,8/31/1997 5:15 +Lincoln,,FORMATION,NH,8/31/1997 17:00 +Newberg,YELLOW BLUE,LIGHT,OR,8/31/1997 21:00 +Chicago Ridge,,LIGHT,IL,8/31/1997 22:00 +Brighton,,RECTANGLE,MI,8/31/1997 22:30 +Brighton,,RECTANGLE,MI,8/31/1997 22:30 +West Dennis,,OVAL,MA,8/31/1997 23:00 +Woodmont,,DISK,CT,9/1/1997 18:00 +Pleasant View,,FIREBALL,TN,9/1/1997 20:00 +Carlsbad,,LIGHT,CA,9/1/1997 22:30 +Albany,,LIGHT,ME,9/1/1997 23:00 +Algonac,,,MI,9/2/1997 21:45 +Portland,,FORMATION,OR,9/2/1997 21:45 +Covington,RED BLUE,TRIANGLE,WA,9/6/1997 4:47 +Gulf of Mexico,,CIGAR,LA,9/7/1997 12:00 +Las Vegas,,FORMATION,NV,9/9/1997 16:00 +Roseburg,,LIGHT,OR,9/9/1997 21:30 +Alta Loma,,CIRCLE,CA,9/10/1997 19:00 +Houston,,DISK,TX,9/15/1997 0:00 +Sherman Oaks,,CIGAR,CA,9/15/1997 9:00 +Colorado Springs,,RECTANGLE,CO,9/15/1997 15:00 +Comfort,,CYLINDER,TX,9/15/1997 17:00 +Farrell,,DISK,PA,9/15/1997 18:00 +Wedgefield,,TRIANGLE,SC,9/15/1997 19:00 +Angola,,CIRCLE,IN,9/15/1997 20:00 +Bellevue,,,WA,9/15/1997 20:00 +Salem,GREEN,LIGHT,OR,9/15/1997 20:00 +Sammamish,,,WA,9/15/1997 20:40 +Chicago,GREEN,LIGHT,IL,9/15/1997 21:00 +Foley,,,MN,9/15/1997 22:00 +West Milton,,LIGHT,OH,9/15/1997 22:00 +Woodstock,,SPHERE,CT,9/15/1997 22:30 +Woodmont,,DISK,CT,9/16/1997 4:00 +Minneapolis,,OTHER,MN,9/16/1997 19:00 +Delilah Lookout,,DISK,CA,9/17/1997 18:00 +West Manchester,,VARIOUS,OH,9/18/1997 4:15 +Panama city,,,FL,9/18/1997 20:15 +Orland Park,,RECTANGLE,IL,9/19/1997 5:40 +Seattle,,OTHER,WA,9/19/1997 21:00 +Crescent City,,DISK,CA,9/19/1997 22:00 +Poway,,TRIANGLE,CA,9/20/1997 22:15 +Manoa Valley,,DISK,HI,9/21/1997 14:00 +St. Louis,,OTHER,MO,9/22/1997 3:00 +Palo,,CIGAR,MI,9/22/1997 14:00 +Solomons Island,,DISK,MD,9/22/1997 20:00 +Denison,,DISK,IA,9/23/1997 19:00 +Hyde Park,GREEN,FIREBALL,VT,9/23/1997 20:00 +Rhinebeck,,TRIANGLE,NY,9/23/1997 20:00 +Brewster,,TRIANGLE,NY,9/23/1997 22:30 +Muskegon,,DISK,MI,9/24/1997 14:30 +Huffman,,TEARDROP,TX,9/24/1997 20:47 +Clearfield,,TRIANGLE,UT,9/25/1997 22:00 +Crestwood,RED GREEN,DISK,KY,9/27/1997 5:00 +Egan,,OTHER,SD,9/27/1997 23:00 +San Francisco,,TRIANGLE,CA,9/28/1997 23:15 +Madison,,LIGHT,WI,9/30/1997 22:00 +Bemidji,,TRIANGLE,MN,10/1/1997 0:00 +Fort Jennings,RED ORANGE,OTHER,OH,10/1/1997 1:10 +Garland,,RECTANGLE,TX,10/1/1997 1:20 +Jefferson,,OTHER,NY,10/1/1997 3:00 +Oregon,,RECTANGLE,OR,10/1/1997 8:00 +Charlotte,BLUE,CIGAR,NC,10/1/1997 9:00 +Green Bay,RED,LIGHT,WI,10/1/1997 19:00 +Pelzer,,TRIANGLE,SC,10/1/1997 19:00 +Hyannis,,TRIANGLE,MA,10/1/1997 21:00 +Bourbonnais,,TRIANGLE,IL,10/1/1997 21:30 +Oakland,,LIGHT,OR,10/1/1997 21:30 +Martinsville,,OTHER,VA,10/1/1997 21:55 +Summerville,,TRIANGLE,SC,10/1/1997 22:00 +Lakeland,RED,LIGHT,FL,10/1/1997 23:15 +Ringgold,,CIRCLE,GA,10/2/1997 2:00 +Los Angeles,,SPHERE,CA,10/2/1997 14:00 +Pleasanton,,,TX,10/3/1997 2:00 +Jim Thorpe,,OVAL,PA,10/3/1997 21:00 +Waco,,LIGHT,TX,10/3/1997 21:30 +Scottsdale,,LIGHT,AZ,10/4/1997 1:57 +Taylorsville,,LIGHT,KY,10/4/1997 13:00 +Warrenton,,LIGHT,VA,10/4/1997 18:00 +Cheyenne,,OTHER,WY,10/5/1997 19:00 +Utica,RED,LIGHT,NY,10/5/1997 20:30 +MM82,,CIRCLE,PA,10/7/1997 3:26 +Twin Mountain,GREEN BLUE,LIGHT,NH,10/7/1997 20:30 +Camarillo,,CIRCLE,CA,10/9/1997 11:40 +Detroit,,TRIANGLE,MI,10/9/1997 19:00 +Connersville,,DELTA,IN,10/10/1997 16:00 +Mesa,,SPHERE,AZ,10/10/1997 17:00 +Bonaire,,TRIANGLE,GA,10/10/1997 20:00 +Austin,,OTHER,MN,10/10/1997 21:00 +Huntington Beach,,SPHERE,CA,10/12/1997 18:30 +White Tank Mountains,,LIGHT,AZ,10/12/1997 19:00 +Kenner,,DISK,LA,10/12/1997 21:51 +Chicago,RED,LIGHT,IL,10/12/1997 22:30 +Franklin,GREEN,OTHER,NH,10/12/1997 23:00 +Sandy,,LIGHT,UT,10/13/1997 0:00 +Buffalo,,OTHER,NY,10/13/1997 3:00 +Ogden,,CIRCLE,UT,10/13/1997 5:00 +Reno,,OTHER,NV,10/13/1997 20:15 +Hollister,,LIGHT,CA,10/13/1997 22:15 +Syracuse,,,NY,10/14/1997 16:00 +San Diego,,LIGHT,CA,10/14/1997 23:55 +Naalehu,,SPHERE,HI,10/15/1997 0:00 +Paris,,LIGHT,TN,10/15/1997 1:00 +Duncan,,,OK,10/15/1997 2:15 +Atlanta,BLUE,LIGHT,GA,10/15/1997 3:00 +Brigham City,,OTHER,UT,10/15/1997 3:00 +Lagrange,,FIREBALL,NC,10/15/1997 3:00 +Pasadena,,OVAL,CA,10/15/1997 7:00 +Dallas,,LIGHT,TX,10/15/1997 10:00 +New York City,,CYLINDER,NY,10/15/1997 15:00 +New Britain,RED,RECTANGLE,CT,10/15/1997 17:00 +Daggett,,RECTANGLE,CA,10/15/1997 17:30 +Abingdon,,LIGHT,VA,10/15/1997 18:40 +Boulder,,TRIANGLE,CO,10/15/1997 19:00 +Shark River Hills,,TRIANGLE,NJ,10/15/1997 19:00 +Austin,,LIGHT,NV,10/15/1997 19:35 +Bladen,,SPHERE,NE,10/15/1997 20:00 +Rosburg,,TRIANGLE,WA,10/15/1997 20:00 +Westfeild,,LIGHT,WI,10/15/1997 20:00 +Harrodsburg,,,KY,10/15/1997 20:15 +Stephenville,,CIRCLE,TX,10/15/1997 20:45 +Waldorf,,LIGHT,MD,10/15/1997 21:30 +Alvarado,,CHEVRON,TX,10/15/1997 22:00 +Freeport,,FLASH,IL,10/15/1997 22:00 +St. Louis,,,MO,10/15/1997 22:00 +Deer Grove,,TRIANGLE,IL,10/15/1997 23:30 +Jacksonville,,SPHERE,FL,10/16/1997 1:30 +Hickory,RED,FIREBALL,NC,10/16/1997 5:34 +Rooseville,,LIGHT,MI,10/16/1997 8:00 +Hollister,,LIGHT,CA,10/16/1997 19:05 +Ignacio,,TRIANGLE,CO,10/17/1997 20:00 +Evansville,,,IN,10/18/1997 15:00 +Attleboro,,LIGHT,MA,10/19/1997 2:00 +Crofton,,OTHER,MD,10/19/1997 2:00 +Abilene,,,TX,10/19/1997 20:45 +Rome,,LIGHT,GA,10/20/1997 0:00 +Gig Harbor,,LIGHT,WA,10/20/1997 8:45 +"South of Kalamath Falls,",,FORMATION,OR,10/20/1997 19:30 +Round Rock,,DIAMOND,TX,10/20/1997 20:00 +Norristown,,CIRCLE,PA,10/21/1997 18:45 +Bluff,RED GREEN,LIGHT,UT,10/21/1997 22:00 +Milford,,DISK,CA,10/22/1997 15:00 +Billings,,CYLINDER,MT,10/23/1997 16:30 +Orlando,,OTHER,FL,10/23/1997 21:00 +Weehawken,,OTHER,NJ,10/23/1997 22:30 +Norfolk,,CIRCLE,VA,10/24/1997 0:00 +Blountville,,CIRCLE,TN,10/24/1997 6:30 +Houston,,TRIANGLE,TX,10/24/1997 18:00 +Fairfield,BLUE,SPHERE,CA,10/24/1997 20:42 +Santa Rosa,,CIRCLE,CA,10/24/1997 22:05 +Minneapolis,,TRIANGLE,MN,10/25/1997 21:45 +Charlotte,,TRIANGLE,NC,10/26/1997 22:00 +Sacramento,,LIGHT,CA,10/28/1997 18:05 +Willow Springs,RED,TRIANGLE,MO,10/28/1997 18:45 +Jackson Center,ORANGE,LIGHT,OH,10/28/1997 20:15 +Glen Alpine,,LIGHT,NC,10/29/1997 16:30 +Childress,,LIGHT,TX,10/29/1997 19:00 +Childress,,SPHERE,TX,10/29/1997 19:00 +Pittsburgh,,DISK,PA,10/30/1997 7:30 +Nocona,,SPHERE,TX,10/31/1997 0:00 +El Paso,,OTHER,TX,10/31/1997 10:00 +Santa Ana,ORANGE,LIGHT,CA,10/31/1997 22:18 +East Troy,,,WI,11/1/1997 1:30 +Bridgewater,,TRIANGLE,MA,11/1/1997 3:00 +Newton,,LIGHT,GA,11/1/1997 6:00 +Sartoga,,OTHER,CA,11/1/1997 18:30 +Doniphan,,FIREBALL,MO,11/1/1997 18:50 +Carson,,FORMATION,CA,11/1/1997 21:35 +Los Angeles,GREEN,LIGHT,CA,11/1/1997 22:00 +New York City,,LIGHT,NY,11/1/1997 22:00 +Houston,,LIGHT,TX,11/2/1997 0:00 +Lyons,,,CO,11/2/1997 2:20 +Green Bay,ORANGE,LIGHT,WI,11/2/1997 18:50 +Seattle,,LIGHT,WA,11/4/1997 20:45 +Kentwood,RED,OTHER,MI,11/6/1997 19:00 +Austin,,LIGHT,TX,11/7/1997 18:30 +Austin,RED,,TX,11/7/1997 18:45 +Saugus,,OTHER,CA,11/8/1997 18:20 +Louisville,,VARIOUS,KY,11/8/1997 19:30 +Newport,,FORMATION,OR,11/9/1997 6:15 +Perkinston,,CIGAR,MS,11/9/1997 21:00 +Lyons,,,CO,11/9/1997 22:41 +Boyertown,,LIGHT,PA,11/10/1997 18:50 +Orem,,TRIANGLE,UT,11/10/1997 20:00 +Hurricane,,CIRCLE,WV,11/10/1997 21:45 +Santee,GREEN,LIGHT,CA,11/10/1997 23:00 +O'Fallon,,TRIANGLE,MO,11/11/1997 1:00 +Columbus,ORANGE BLUE,CYLINDER,OH,11/11/1997 5:30 +Enumclaw,,CHEVRON,WA,11/11/1997 21:00 +Sodus,,CIGAR,NY,11/12/1997 0:03 +Divide,,LIGHT,CO,11/12/1997 16:30 +Seattle,,LIGHT,WA,11/12/1997 17:30 +Corvallis,,LIGHT,OR,11/13/1997 1:45 +Trenton,,LIGHT,NJ,11/13/1997 21:15 +Birch Bay,,OTHER,WA,11/14/1997 16:00 +Portland,,FORMATION,OR,11/14/1997 17:00 +Palo,,TRIANGLE,MI,11/14/1997 17:34 +Dallas,,FORMATION,TX,11/14/1997 18:35 +Oroville,RED,TRIANGLE,WA,11/14/1997 19:30 +Oakland,,DISK,CA,11/14/1997 19:55 +Buena Vista,,FORMATION,WA,11/14/1997 21:00 +Gig Harbor,,FORMATION,WA,11/14/1997 21:00 +Kenmore,,RECTANGLE,WA,11/14/1997 21:00 +Mt. Vernon,,CIRCLE,WA,11/14/1997 21:00 +Noblesville,,FIREBALL,IN,11/14/1997 21:00 +Olympia,,FORMATION,WA,11/14/1997 21:00 +Poulsbo,,FORMATION,WA,11/14/1997 21:00 +Seattle,,FORMATION,WA,11/14/1997 21:00 +West Seattle,,FORMATION,WA,11/14/1997 21:00 +Edmonds,,FORMATION,WA,11/14/1997 21:05 +Tonasket,,FORMATION,WA,11/14/1997 21:09 +Issaquah,,OTHER,WA,11/14/1997 21:10 +Mukilteo,,FORMATION,WA,11/14/1997 21:10 +Snohomish,,FORMATION,WA,11/14/1997 21:10 +Winthrop,ORANGE,FIREBALL,WA,11/14/1997 21:10 +Burlington,,FORMATION,WA,11/14/1997 21:11 +Renton,YELLOW,FORMATION,WA,11/14/1997 21:11 +Centralia,,SPHERE,WA,11/14/1997 21:12 +Freeland,,FORMATION,WA,11/14/1997 21:15 +McMinnville,,FORMATION,OR,11/14/1997 21:15 +Renton,,FORMATION,WA,11/14/1997 21:15 +Snoqualmie,,FORMATION,WA,11/14/1997 21:15 +Corbett,,FORMATION,OR,11/14/1997 21:30 +Olympia,,FIREBALL,WA,11/14/1997 21:30 +Olympia,,FORMATION,WA,11/14/1997 21:30 +Bellingham,,FORMATION,WA,11/14/1997 22:25 +Redondo Beach,,FIREBALL,CA,11/14/1997 23:15 +Tucson,RED,OTHER,AZ,11/15/1997 0:35 +Longview,,OTHER,WA,11/15/1997 2:30 +Reno,,TRIANGLE,NV,11/15/1997 3:50 +Lockport,,SPHERE,NY,11/15/1997 4:00 +Hubbard,RED,TRIANGLE,OH,11/15/1997 18:30 +West Palm Beach,,OTHER,FL,11/15/1997 18:45 +Tamaqua,,LIGHT,PA,11/15/1997 21:00 +Tennessee,,SPHERE,TN,11/15/1997 21:00 +Varysburg,,TRIANGLE,NY,11/15/1997 21:30 +Eureka,,TRIANGLE,CA,11/15/1997 22:00 +Chester,,CIRCLE,NJ,11/15/1997 23:00 +Chester,,CIRCLE,NJ,11/15/1997 23:00 +Pompano Beach,ORANGE,SPHERE,FL,11/15/1997 23:30 +Sioux Falls,,OTHER,SD,11/17/1997 2:00 +Clearwater Beach,,OVAL,FL,11/17/1997 3:00 +Wasilla,,TRIANGLE,AK,11/17/1997 3:00 +Bracketville,,CIGAR,TX,11/17/1997 5:30 +Greenfield,GREEN,,MA,11/17/1997 20:45 +Scott AFB,,LIGHT,IL,11/18/1997 2:00 +Oswego,,OTHER,NY,11/18/1997 14:36 +Malta,RED,RECTANGLE,MT,11/18/1997 19:30 +Springfield,,OVAL,MO,11/20/1997 1:00 +Chicago,,OTHER,IL,11/20/1997 2:00 +Frostbite Falls,,DISK,MO,11/20/1997 5:29 +Rock Hill,,TRIANGLE,NY,11/20/1997 18:00 +Cedar River,GREEN,FIREBALL,MI,11/20/1997 23:00 +Plattsmouth,,CIRCLE,NE,11/21/1997 12:00 +North Kingstown,,TRIANGLE,RI,11/21/1997 17:00 +Fremont,YELLOW,CIRCLE,MI,11/21/1997 20:00 +Flagstaff,RED,OTHER,AZ,11/22/1997 6:00 +Petoskey,GREEN,EGG,MI,11/22/1997 16:15 +Albuquerque,BLUE,OTHER,NM,11/22/1997 17:30 +Palo,,TRIANGLE,MI,11/22/1997 20:45 +Albuquerque,RED ORANGE YELLOW,FIREBALL,NM,11/23/1997 5:50 +Wichita Falls,,LIGHT,TX,11/23/1997 21:32 +Salisbury,,OVAL,MD,11/24/1997 2:00 +Salisbury,YELLOW,OVAL,MD,11/24/1997 2:00 +Palm Harbor,,TRIANGLE,FL,11/24/1997 22:55 +El Dorado,RED,OTHER,AR,11/25/1997 0:30 +Right outside the Maine state border,,CRESCENT,NH,11/25/1997 22:21 +no data,,CYLINDER,OH,11/27/1997 18:20 +Northampton,,OTHER,MA,11/27/1997 19:30 +St. Paul,ORANGE,FIREBALL,MN,11/28/1997 0:45 +Lake Geneva,,FIREBALL,WI,11/28/1997 19:30 +Orcas Island,,LIGHT,WA,11/29/1997 18:15 +Gorman,RED,LIGHT,CA,11/29/1997 20:00 +LeMars,,LIGHT,NE,11/30/1997 2:00 +Sacramento,,FLARE,CA,11/30/1997 18:00 +Warwick,,CIRCLE,RI,12/1/1997 0:00 +Naperville,,OVAL,IL,12/1/1997 3:30 +San Francisco,,OTHER,CA,12/1/1997 12:00 +Santa Cruz,,TRIANGLE,CA,12/1/1997 21:15 +San Jose,,TRIANGLE,CA,12/1/1997 21:45 +Greentown,,CIGAR,IN,12/1/1997 22:00 +Paramus,,FIREBALL,NJ,12/1/1997 23:30 +Birch Run,RED,DISK,MI,12/2/1997 20:00 +Birch Run,RED GREEN,CHEVRON,MI,12/2/1997 20:30 +Clearwater Beach,,OVAL,FL,12/5/1997 3:00 +Salton Sea,,DISK,CA,12/5/1997 18:00 +Ferndale,,,WA,12/5/1997 22:00 +Ashland,,TRIANGLE,MO,12/7/1997 3:00 +Mount Pleasant,,,SC,12/7/1997 20:16 +Wenatchee,,LIGHT,WA,12/8/1997 0:00 +East Wenatchee,RED ORANGE,LIGHT,WA,12/8/1997 19:40 +Kent,,CIRCLE,WA,12/9/1997 8:30 +Reno,RED,LIGHT,NV,12/9/1997 17:00 +Reno,RED,LIGHT,NV,12/9/1997 17:30 +Reno,RED,LIGHT,NV,12/9/1997 17:55 +Reno,RED,CIRCLE,NV,12/9/1997 18:00 +Oakland,,TRIANGLE,CA,12/10/1997 1:30 +Fort Ann,,OTHER,NY,12/10/1997 20:00 +Williamsburg,,DIAMOND,OH,12/10/1997 21:30 +Seattle,,LIGHT,WA,12/11/1997 19:15 +Kinaid,,TRIANGLE,IL,12/11/1997 21:27 +Lubbock,GREEN,OTHER,TX,12/12/1997 2:03 +Auburn,,SPHERE,IN,12/14/1997 6:45 +Aurora,,,CO,12/14/1997 20:30 +Prescott Valley,,OTHER,AZ,12/14/1997 23:30 +Thief River Falls,GREEN,DISK,MN,12/15/1997 1:00 +Naperville,,DISK,IL,12/15/1997 3:30 +Salida,,LIGHT,CA,12/15/1997 20:00 +Iola,,FIREBALL,IL,12/15/1997 22:00 +Scranton,,CIRCLE,PA,12/15/1997 22:00 +Gardiner,,DISK,ME,12/15/1997 22:30 +Marlette,,CIRCLE,MI,12/15/1997 23:35 +Tarzana,,TRIANGLE,CA,12/16/1997 2:30 +Baltimore,,TRIANGLE,MD,12/16/1997 18:30 +Allison Park,RED GREEN,HEXAGON,PA,12/16/1997 19:55 +North San Diego,,FIREBALL,CA,12/16/1997 23:23 +Ocala,,FIREBALL,FL,12/17/1997 0:15 +West Hollywood,,,CA,12/17/1997 0:20 +Burlington,,DIAMOND,VT,12/17/1997 11:45 +Colchester,GREEN,LIGHT,VT,12/17/1997 11:45 +Oxnard,,CIGAR,CA,12/18/1997 22:50 +San Jose,,TRIANGLE,CA,12/20/1997 2:24 +Prescott,,SPHERE,AZ,12/20/1997 22:00 +Las Vegas,,DISK,NV,12/20/1997 23:00 +Harrisonburg,,LIGHT,VA,12/21/1997 5:25 +Brewster,YELLOW,,MA,12/23/1997 20:00 +East Woodstock,,OVAL,CT,12/23/1997 20:00 +Charlotte,,LIGHT,NC,12/25/1997 2:00 +Los Angeles,,DISK,CA,12/25/1997 9:00 +Primrose,,LIGHT,GA,12/26/1997 20:00 +Bonham,,,TX,12/26/1997 21:35 +Dale City,BLUE,TRIANGLE,VA,12/26/1997 22:30 +Spokane,,LIGHT,WA,12/27/1997 20:00 +Victorville,,CIRCLE,CA,12/30/1997 17:40 +Milton,RED,TRIANGLE,FL,12/30/1997 19:30 +Gulfport,,TRIANGLE,MS,12/31/1997 17:45 +Gulfport,,TRIANGLE,MS,12/31/1997 17:45 +Crystal Beach,,CIRCLE,TX,12/31/1997 19:30 +Manassas,,FORMATION,VA,12/31/1997 20:30 +Warren,BLUE,OTHER,OH,12/31/1997 20:30 +St. Louis,BLUE,FLASH,MO,1/1/1998 0:58 +Allentown,,LIGHT,PA,1/1/1998 1:42 +Elizabethtown,,TRIANGLE,IL,1/1/1998 2:00 +Huelo,,LIGHT,HI,1/1/1998 4:00 +Hoboken,,DISK,NJ,1/1/1998 6:00 +Pittsburgh,RED,FORMATION,PA,1/1/1998 7:30 +St. Louis,BLUE,FLASH,MO,1/1/1998 12:58 +Baton Rouge,,CIRCLE,LA,1/1/1998 13:00 +Cannon AFB,,DIAMOND,NM,1/1/1998 13:00 +Graniteville,,DISK,SC,1/1/1998 20:00 +Coxsacke,,LIGHT,NY,1/1/1998 20:30 +Milwaukee,,VARIOUS,WI,1/1/1998 23:00 +I-90,GREEN,SPHERE,WA,1/3/1998 2:30 +Nashville,,CIRCLE,TN,1/4/1998 23:45 +Highland,,OTHER,CA,1/5/1998 15:50 +Phelan,,OTHER,CA,1/5/1998 16:15 +Hudson,,TRIANGLE,NY,1/5/1998 20:00 +Camarillo,,OTHER,CA,1/6/1998 18:00 +Renton,,SPHERE,WA,1/7/1998 16:10 +New York City,,DIAMOND,NY,1/7/1998 23:30 +Petoskey,,LIGHT,MI,1/8/1998 17:00 +Chico,,OVAL,CA,1/8/1998 20:00 +Satellite Point,ORANGE,VARIOUS,FL,1/8/1998 20:00 +Fairbanks,GREEN,OVAL,AK,1/8/1998 22:38 +Pottstown,RED,TRIANGLE,PA,1/9/1998 18:30 +Cape Coral,RED BLUE,LIGHT,FL,1/9/1998 20:00 +Beals,,CIRCLE,ME,1/10/1998 10:00 +Bremerton,,LIGHT,WA,1/10/1998 17:00 +Saginaw,,LIGHT,MI,1/10/1998 22:10 +Lowell,RED,,IN,1/10/1998 22:24 +Colorado Springs,,FIREBALL,CO,1/11/1998 0:10 +Cape May,,LIGHT,NJ,1/11/1998 6:55 +Rachel,,DISK,NV,1/11/1998 20:10 +Minot,,FIREBALL,ND,1/13/1998 1:00 +Goodyear,,LIGHT,AZ,1/13/1998 20:40 +New Washington,,,OH,1/13/1998 21:00 +Litchfield Park,,TRIANGLE,AZ,1/14/1998 21:00 +Neshanic Station,,LIGHT,NJ,1/15/1998 1:00 +New York City,,FORMATION,NY,1/15/1998 1:00 +Lake City,,LIGHT,CO,1/15/1998 5:00 +Daytona Beach,RED,LIGHT,FL,1/15/1998 5:30 +Alaska,,DISK,AK,1/15/1998 13:00 +Grants Pass,,TRIANGLE,OR,1/15/1998 19:00 +Fargo,RED,FIREBALL,ND,1/15/1998 20:30 +no data,RED,CYLINDER,CT,1/15/1998 23:00 +Columbia,,CONE,SC,1/16/1998 17:00 +Krum,RED,,TX,1/17/1998 16:30 +La Grande,,CIRCLE,OR,1/18/1998 19:30 +Tucson,,OTHER,AZ,1/19/1998 6:50 +Goldsboro,,FORMATION,NC,1/21/1998 22:00 +Holstein,,TRIANGLE,NE,1/23/1998 18:05 +Alberton,,CIRCLE,MT,1/23/1998 21:00 +Kaneohe,,TRIANGLE,HI,1/24/1998 5:45 +San Bernardino,,SPHERE,CA,1/24/1998 9:30 +Leander,,CYLINDER,TX,1/24/1998 15:20 +Tucson,,LIGHT,AZ,1/24/1998 15:30 +Orange Park,,,FL,1/24/1998 18:25 +Cape Coral,,DIAMOND,FL,1/24/1998 21:28 +Ripley,,LIGHT,MS,1/25/1998 20:30 +Coconut Creek,,CIRCLE,FL,1/26/1998 16:50 +Bartelso,,OVAL,IL,1/26/1998 20:45 +Las Vegas,GREEN,SPHERE,NV,1/26/1998 21:00 +Las Cruces,,DISK,NM,1/27/1998 17:00 +Schuyler County,ORANGE,,IL,1/27/1998 19:30 +Woodland,RED,TRIANGLE,WA,1/27/1998 19:30 +Woodinville,,SPHERE,WA,1/27/1998 20:20 +Miami,,LIGHT,FL,1/27/1998 21:23 +Anaheim Hills,BLUE,LIGHT,CA,1/27/1998 21:50 +Alberton,RED BLUE,OVAL,MT,1/28/1998 22:00 +Coventry,RED,DISK,RI,1/29/1998 14:00 +Scranton,,FIREBALL,KS,1/29/1998 21:15 +Dallas,,LIGHT,TX,1/30/1998 18:50 +Sedona,,LIGHT,AZ,1/30/1998 20:00 +Monroe City,YELLOW,FIREBALL,MO,1/30/1998 21:05 +Shirley,,DISK,NY,1/31/1998 20:00 +Four Corners,,OTHER,NM,2/1/1998 0:30 +Newbury Park,,CHEVRON,CA,2/1/1998 1:00 +East Los Angeles,,TRIANGLE,CA,2/1/1998 15:00 +Fort Cambell,ORANGE,LIGHT,KY,2/2/1998 19:00 +Aurora,,LIGHT,CO,2/2/1998 22:23 +Apache Junction,,OTHER,AZ,2/3/1998 2:45 +Portage,,SPHERE,MI,2/3/1998 18:50 +Memphis,,TRIANGLE,TN,2/5/1998 0:45 +Hart,,FIREBALL,MI,2/5/1998 7:11 +Gratis,,TRIANGLE,OH,2/5/1998 20:30 +Worcester,BLUE,FIREBALL,MA,2/6/1998 0:00 +Graham,RED,LIGHT,WA,2/6/1998 2:45 +Emporia,,LIGHT,KS,2/6/1998 19:00 +Webster,,LIGHT,TX,2/6/1998 19:06 +Twenty Nine Palms,,OTHER,CA,2/7/1998 11:00 +Moundsville,,LIGHT,WV,2/8/1998 19:20 +Austin,,CIRCLE,TX,2/9/1998 0:15 +Holland,,LIGHT,MI,2/9/1998 4:00 +Grayland,,LIGHT,WA,2/9/1998 21:10 +Crescent City,,RECTANGLE,CA,2/9/1998 23:30 +Sunnyvale,,OTHER,CA,2/10/1998 0:30 +Danbury,,CYLINDER,CT,2/10/1998 20:00 +Laguna Niguel,RED,SPHERE,CA,2/10/1998 20:00 +Three Points,,,AZ,2/10/1998 20:00 +Callicoon,,OVAL,NY,2/10/1998 21:00 +Londonderry,GREEN,LIGHT,NH,2/10/1998 21:00 +Burdett,,OTHER,NY,2/11/1998 22:15 +Shelby County airport,,CIGAR,AL,2/12/1998 12:35 +Merritt Parkway,,LIGHT,CT,2/12/1998 17:10 +Snohomish,,OVAL,WA,2/12/1998 18:20 +Sharon,RED,VARIOUS,PA,2/12/1998 22:15 +Crestone,,LIGHT,CO,2/13/1998 20:00 +Oceanside,,CHEVRON,CA,2/14/1998 5:00 +Rocky Mount,,DISK,NC,2/14/1998 10:45 +Glen Burnie,,OVAL,MD,2/14/1998 22:50 +San Jose,,CIGAR,CA,2/15/1998 8:00 +Yakima,,VARIOUS,WA,2/15/1998 12:00 +Duluth,,FLASH,MN,2/15/1998 19:30 +Fort Lewis,,,WA,2/15/1998 23:00 +Blackfoot,,FLASH,ID,2/15/1998 23:30 +Toledo,,OTHER,OH,2/15/1998 23:35 +Auburn,,FIREBALL,WA,2/16/1998 18:52 +Moreno Valley,,SPHERE,CA,2/17/1998 16:00 +Mobile,,CIRCLE,AL,2/18/1998 21:30 +Orlando,,TRIANGLE,FL,2/18/1998 23:00 +Amherst,YELLOW,TRIANGLE,VA,2/19/1998 0:01 +Fairfax,RED,TRIANGLE,VA,2/19/1998 19:05 +Fairfield,,DISK,CA,2/20/1998 11:30 +Kerrville,,VARIOUS,TX,2/20/1998 19:00 +Kalispell,ORANGE,LIGHT,MT,2/20/1998 20:30 +Columbus,,TRIANGLE,OH,2/20/1998 22:57 +Nokomis,,SPHERE,FL,2/21/1998 11:30 +Tappahannock,,CIRCLE,VA,2/21/1998 17:50 +Halifax,ORANGE,CIRCLE,NC,2/21/1998 20:00 +Ossipee,,LIGHT,NH,2/23/1998 5:30 +Wyoming,,VARIOUS,MI,2/23/1998 7:30 +McAlester,YELLOW,EGG,OK,2/23/1998 20:33 +Houston,ORANGE,CIGAR,TX,2/24/1998 17:00 +Licking,ORANGE,LIGHT,MO,2/24/1998 23:00 +Phoenix,,LIGHT,AZ,2/25/1998 3:00 +Stouthill,,CYLINDER,TN,2/25/1998 5:45 +Harrisburg,ORANGE YELLOW,CIGAR,PA,2/25/1998 11:25 +Nashville,BLUE,FIREBALL,TN,2/25/1998 20:00 +Ontario,ORANGE,DISK,NY,2/26/1998 19:09 +Colorado Springs,BLUE,FIREBALL,CO,2/26/1998 20:30 +Tallahassee,,TRIANGLE,FL,2/26/1998 22:30 +Chandler,,,AZ,2/27/1998 18:30 +Hesperia,BLUE,FIREBALL,CA,2/27/1998 19:35 +Morganton,,LIGHT,NC,2/27/1998 21:00 +Bellville,RED GREEN,CIRCLE,OH,2/27/1998 22:00 +Bangor,,FLASH,ME,2/27/1998 22:10 +Vancouver,,CIRCLE,WA,2/27/1998 22:30 +North Highlands,,LIGHT,CA,2/28/1998 19:15 +Columbus,,,OH,2/28/1998 23:30 +Lodi,,FIREBALL,WI,3/1/1998 2:20 +Leesburg,,,GA,3/1/1998 3:00 +Windham,,FORMATION,NY,3/1/1998 19:00 +New Albany,,LIGHT,IN,3/1/1998 22:00 +Flagstaff,,LIGHT,AZ,3/3/1998 20:00 +Houston,,SPHERE,TX,3/3/1998 20:00 +Goleta,,CIRCLE,CA,3/5/1998 10:00 +Spanish Fork,,TRIANGLE,UT,3/5/1998 16:00 +Norfolk,GREEN,FIREBALL,VA,3/5/1998 19:00 +Pittsfield,,FORMATION,ME,3/5/1998 22:45 +Port Salerno,,,FL,3/7/1998 0:00 +Malabar,,TRIANGLE,FL,3/7/1998 8:00 +Cocoa Beach,,LIGHT,FL,3/7/1998 18:00 +Benson,,FIREBALL,NC,3/7/1998 18:17 +Lake Placid,YELLOW,LIGHT,FL,3/7/1998 18:30 +Orlando,,SPHERE,FL,3/7/1998 18:35 +North Fort Myers,,SPHERE,FL,3/7/1998 18:40 +Temple Terrace,,LIGHT,FL,3/7/1998 18:40 +Fort Myers,,FIREBALL,FL,3/7/1998 18:45 +Lighthouse Point,,LIGHT,FL,3/7/1998 18:45 +Naples,,CONE,FL,3/7/1998 18:45 +Orlando,,LIGHT,FL,3/7/1998 18:45 +Port St. Lucie,,LIGHT,FL,3/7/1998 18:45 +Sebastian Inlet,,LIGHT,FL,3/7/1998 18:45 +Tampa,,,FL,3/7/1998 18:45 +Tampa,,OTHER,FL,3/7/1998 18:45 +Vero Beach,,FORMATION,FL,3/7/1998 18:45 +West Palm Beach,,CIRCLE,FL,3/7/1998 18:45 +Sarasota,,LIGHT,FL,3/7/1998 18:48 +Englewood,,SPHERE,FL,3/7/1998 18:50 +Lehigh Acres,,FIREBALL,FL,3/7/1998 18:50 +Sarasota,,CONE,FL,3/7/1998 18:50 +Central Florida,,LIGHT,FL,3/7/1998 19:00 +Port Charlotte,,LIGHT,FL,3/7/1998 19:00 +Bonita Springs,,OTHER,FL,3/7/1998 19:30 +Kennedy Space Center,,TRIANGLE,FL,3/7/1998 19:30 +West Palm Beach,,FORMATION,FL,3/7/1998 19:30 +Punta Gorda,,DISK,FL,3/7/1998 19:50 +West Palm Beach,,FIREBALL,FL,3/7/1998 20:00 +Chinook,,VARIOUS,MT,3/7/1998 22:00 +Wichita,,CYLINDER,KS,3/8/1998 12:00 +Columbus,RED,VARIOUS,GA,3/8/1998 22:00 +Butte County,,LIGHT,CA,3/9/1998 19:40 +Tucson,,TRIANGLE,AZ,3/9/1998 22:25 +Santa Monica,,SPHERE,CA,3/10/1998 7:00 +Fort Gordon,,LIGHT,GA,3/10/1998 18:00 +Savannah,,CONE,GA,3/10/1998 18:00 +Columbia,,DIAMOND,SC,3/10/1998 19:00 +Windber,BLUE,FORMATION,PA,3/10/1998 19:00 +Alexandria,,CHEVRON,VA,3/10/1998 20:00 +Kauai,,SPHERE,HI,3/11/1998 16:45 +Los Penisquitos,,LIGHT,CA,3/11/1998 19:30 +Northport,,LIGHT,NY,3/11/1998 20:10 +Colorado Springs,,OTHER,CO,3/11/1998 22:03 +Quincy,RED,CIRCLE,CA,3/11/1998 23:30 +Eagle County,GREEN,FIREBALL,CO,3/12/1998 1:10 +Kennewick,,DIAMOND,WA,3/12/1998 1:40 +San Antonio,,LIGHT,TX,3/12/1998 2:30 +Red River,RED,CYLINDER,NM,3/12/1998 4:30 +Greenland,GREEN,SPHERE,NH,3/12/1998 8:34 +Ashtabula,,CIGAR,OH,3/12/1998 22:10 +San Jose,,SPHERE,CA,3/13/1998 13:30 +Florence,,CIGAR,OR,3/13/1998 17:30 +San Diego,,CIRCLE,CA,3/13/1998 21:00 +Seattle,,SPHERE,WA,3/13/1998 21:50 +Novato,RED,FLASH,CA,3/13/1998 22:15 +Tulsa,,LIGHT,OK,3/13/1998 23:40 +Tacoma,RED,FIREBALL,WA,3/14/1998 7:50 +Bradenton,,CIGAR,FL,3/14/1998 15:00 +Frankfort,,TRIANGLE,IN,3/14/1998 21:00 +Roswell,,TRIANGLE,NM,3/15/1998 0:00 +Oak Creek,,LIGHT,CO,3/15/1998 4:00 +Southaven,,DISK,MS,3/15/1998 13:00 +Bozeman,,TRIANGLE,MT,3/15/1998 14:00 +Gunnison,,DISK,CO,3/15/1998 14:30 +North Pole,BLUE,SPHERE,AK,3/15/1998 20:00 +Anchorage,,OVAL,AK,3/15/1998 20:30 +Danbury,,CYLINDER,CT,3/15/1998 20:30 +Greensboro,,LIGHT,NC,3/15/1998 21:30 +Los Osos,,SPHERE,CA,3/15/1998 21:30 +Farina,,FIREBALL,IL,3/15/1998 22:30 +Holderness,GREEN BLUE,FIREBALL,NH,3/16/1998 3:15 +Lunenburg,GREEN,LIGHT,MA,3/16/1998 3:22 +Seattle,,SPHERE,WA,3/16/1998 13:30 +Albany,RED BLUE,CIGAR,OR,3/16/1998 20:30 +Bar Harbor,,FIREBALL,ME,3/16/1998 20:56 +Worcester,,,MA,3/16/1998 23:00 +Trout Run,,FIREBALL,PA,3/18/1998 2:00 +Spring Hill,,LIGHT,TN,3/19/1998 19:00 +Grosse Ile,,DIAMOND,MI,3/19/1998 23:00 +Harriman State Park,,LIGHT,NY,3/20/1998 0:00 +Kentwood,,TRIANGLE,MI,3/20/1998 1:00 +Okoboji,YELLOW GREEN,FIREBALL,IA,3/20/1998 18:00 +Kansas City,GREEN,FORMATION,MO,3/20/1998 20:50 +Kearney,,TRIANGLE,NE,3/20/1998 21:46 +Ten Sleep,,DISK,WY,3/21/1998 20:00 +Holland,,FLASH,MI,3/21/1998 20:15 +San Antonio,,FORMATION,TX,3/21/1998 22:30 +Doylestown,,DISK,PA,3/22/1998 23:30 +Dayton,,LIGHT,OH,3/24/1998 11:30 +Southport,,CIRCLE,CT,3/24/1998 16:38 +Lake Placid,,LIGHT,FL,3/24/1998 21:50 +Tempe,,TRIANGLE,AZ,3/24/1998 21:55 +Fort Pierce,ORANGE,FIREBALL,FL,3/24/1998 22:00 +Teague,,FIREBALL,TX,3/24/1998 22:10 +Alexandria,,TRIANGLE,LA,3/25/1998 23:30 +Beautiful Home Community of Monroe County,,LIGHT,KY,3/26/1998 19:00 +Poseyville,RED,OVAL,IN,3/26/1998 19:00 +St. Cloud,YELLOW,LIGHT,FL,3/26/1998 21:30 +Westhampton,,,NY,3/26/1998 21:30 +Kissimmee,,LIGHT,FL,3/26/1998 21:45 +St. Cloud,,LIGHT,FL,3/26/1998 21:50 +Lake Wales,YELLOW,LIGHT,FL,3/26/1998 22:00 +Portland,BLUE,LIGHT,OR,3/26/1998 22:00 +Milwaukee,,CIRCLE,WI,3/27/1998 20:40 +Pueblo,RED GREEN,LIGHT,CO,3/27/1998 21:00 +Arroyo Grande,,DISK,CA,3/27/1998 22:35 +Clifton Park,,OTHER,NY,3/27/1998 23:00 +Newnan,,DISK,GA,3/27/1998 23:00 +Malvern,,CROSS,PA,3/28/1998 4:30 +Urbana,,DISK,OH,3/28/1998 13:00 +Death Valley,,FIREBALL,CA,3/28/1998 20:30 +Yakima,,VARIOUS,WA,3/29/1998 2:29 +Indio,ORANGE,LIGHT,CA,3/29/1998 19:30 +Lunenburg,,FIREBALL,MA,3/29/1998 20:18 +Mountain View,,OTHER,CA,3/30/1998 22:00 +Bel Air,,FORMATION,MD,3/30/1998 22:30 +Davenport,,CIRCLE,IA,3/30/1998 23:00 +Baraboo,YELLOW,LIGHT,WI,3/31/1998 5:00 +Ozark National Forest,ORANGE,RECTANGLE,AR,3/31/1998 19:30 +Glendale,,CIRCLE,CA,4/1/1998 8:00 +Providence,,CIRCLE,RI,4/1/1998 13:00 +Henry County,,TRIANGLE,OH,4/1/1998 21:00 +Santa Clarita,,FIREBALL,CA,4/2/1998 5:00 +Midland,,DISK,TX,4/2/1998 14:10 +Austin,,FLASH,TX,4/2/1998 21:30 +Greenville,,OTHER,OH,4/2/1998 22:50 +San Antonio,RED GREEN BLUE,TRIANGLE,TX,4/3/1998 1:25 +Waldorf,,CIRCLE,MD,4/3/1998 7:30 +Fredericksburg,GREEN BLUE,EGG,VA,4/3/1998 18:42 +Fairfax,,OVAL,VA,4/3/1998 18:45 +Wickiup,GREEN,OTHER,AZ,4/3/1998 20:01 +Eau Claire,,DIAMOND,WI,4/3/1998 22:20 +Cheyenne,,SPHERE,WY,4/4/1998 9:00 +Northern California,,LIGHT,CA,4/4/1998 23:00 +Gardiner,,CIRCLE,ME,4/4/1998 23:30 +Winslow,,LIGHT,ME,4/5/1998 1:00 +Baraboo,,LIGHT,WI,4/5/1998 8:10 +Soquel,GREEN,OTHER,CA,4/5/1998 11:50 +it was in the middle of no where,,DISK,GA,4/5/1998 19:00 +Channahon,,TRIANGLE,IL,4/5/1998 23:35 +Lake Wales,,LIGHT,FL,4/6/1998 0:00 +Edwards AFB,,,CA,4/6/1998 22:45 +San Diego,,OVAL,CA,4/9/1998 10:00 +Colorado Springs,YELLOW,OTHER,CO,4/9/1998 21:15 +Colorado Springs,,OTHER,CO,4/9/1998 21:34 +Costa Mesa,,EGG,CA,4/9/1998 23:45 +El Cajon,RED,CIGAR,CA,4/10/1998 5:45 +Fort Lewis,,CIRCLE,WA,4/10/1998 11:30 +Charleston,,,SC,4/10/1998 17:00 +Pembroke Pines,,TRIANGLE,FL,4/10/1998 21:00 +Woodland Hills,,LIGHT,CA,4/11/1998 11:00 +Spring Valley,,FIREBALL,CA,4/11/1998 19:00 +Corralitos,ORANGE,OTHER,CA,4/11/1998 21:15 +Yucaipa,,LIGHT,CA,4/12/1998 0:30 +Level Cross,,,NC,4/12/1998 17:00 +Waldorf,,OVAL,MD,4/12/1998 17:00 +Cleveland,,LIGHT,OH,4/12/1998 18:45 +Castle Rock,,TRIANGLE,CO,4/12/1998 22:00 +Whitefish,,,MT,4/12/1998 23:00 +Cleveland,,TRIANGLE,TN,4/12/1998 23:30 +Binghamton,,OTHER,NY,4/13/1998 7:00 +Spokane,,LIGHT,WA,4/14/1998 3:20 +Vienna,,VARIOUS,VA,4/14/1998 13:19 +Texico,,OTHER,IL,4/14/1998 21:30 +Ashland,,FIREBALL,NE,4/15/1998 3:30 +Catawba,,TRIANGLE,OH,4/15/1998 7:45 +Passaic,,OTHER,NJ,4/15/1998 8:00 +Baraboo,,SPHERE,WI,4/15/1998 8:20 +South Zanesville,,LIGHT,OH,4/15/1998 9:00 +San Antonio,,CYLINDER,TX,4/15/1998 13:00 +Murfreesboro,,SPHERE,TN,4/15/1998 15:00 +Roanoke,BLUE,FIREBALL,VA,4/15/1998 17:44 +Richmond,,DISK,CA,4/15/1998 20:00 +Hartsgrove,,DISK,OH,4/15/1998 20:30 +Flagstaff,RED,CIRCLE,AZ,4/15/1998 20:48 +Warsaw,,,MO,4/15/1998 21:00 +Arlington,,LIGHT,VT,4/15/1998 22:00 +Magna,,LIGHT,UT,4/15/1998 22:00 +New Bedford,ORANGE,OVAL,MA,4/15/1998 22:00 +Lancing,,LIGHT,TN,4/15/1998 23:30 +Milpitas,,SPHERE,CA,4/16/1998 3:08 +Fort Gay,,DISK,WV,4/16/1998 15:00 +Lafayette,,FIREBALL,CA,4/16/1998 23:16 +Plainwell,,TRIANGLE,MI,4/17/1998 23:15 +Tampa,,VARIOUS,FL,4/18/1998 14:00 +Glenview,,TRIANGLE,IL,4/18/1998 21:30 +Chicago,,OTHER,IL,4/19/1998 22:10 +Vancouver,,SPHERE,WA,4/20/1998 9:00 +Valdosta,,CIRCLE,GA,4/20/1998 10:30 +Muskegon,GREEN,OTHER,MI,4/20/1998 21:00 +Brighton,,TRIANGLE,IL,4/20/1998 22:00 +Austin,YELLOW,LIGHT,TX,4/20/1998 23:59 +Pecos,BLUE,CHEVRON,TX,4/21/1998 0:24 +Broomfield,,TEARDROP,CO,4/21/1998 22:30 +Santa Cruz,GREEN,FIREBALL,CA,4/21/1998 23:46 +Melbourne,,LIGHT,FL,4/22/1998 5:00 +Machias,,LIGHT,ME,4/22/1998 16:00 +Sierra Vista,RED,LIGHT,AZ,4/22/1998 20:00 +Friday Harbor,,FIREBALL,WA,4/22/1998 21:20 +Portland,GREEN,SPHERE,OR,4/22/1998 21:20 +Snohomish,ORANGE BLUE,OVAL,WA,4/22/1998 21:20 +Shelton,,CIRCLE,WA,4/22/1998 21:22 +Bangor Submarine Base,,DISK,WA,4/22/1998 21:23 +Pacific,BLUE,LIGHT,WA,4/22/1998 21:24 +Federal Way,GREEN,LIGHT,WA,4/22/1998 21:30 +Vancouver,BLUE,LIGHT,WA,4/22/1998 21:30 +Yakima,BLUE,CIRCLE,WA,4/22/1998 21:30 +North Little Rock,,LIGHT,AR,4/22/1998 22:00 +Reno,GREEN,,NV,4/22/1998 23:25 +Oneonta,,LIGHT,NY,4/23/1998 4:01 +Epcot Center,,DISK,FL,4/23/1998 16:00 +Oconomowoc,,LIGHT,WI,4/23/1998 17:21 +Hollywood,ORANGE,LIGHT,CA,4/23/1998 18:00 +Shoreline,GREEN,OTHER,WA,4/23/1998 21:25 +West Boca Raton,,CIRCLE,FL,4/23/1998 22:30 +Bedford Park,GREEN,FIREBALL,IL,4/24/1998 0:25 +Mt. Charlston,,FORMATION,NV,4/24/1998 0:30 +Frisco,,OVAL,CO,4/25/1998 20:00 +Manito,,FORMATION,IL,4/25/1998 21:00 +Blanchard,RED GREEN BLUE,TRIANGLE,OK,4/25/1998 21:45 +Roca,,TRIANGLE,NE,4/25/1998 22:30 +Eagan,,LIGHT,MN,4/26/1998 21:45 +Comer,,DISK,GA,4/26/1998 23:50 +Santa Cruz,,OTHER,CA,4/27/1998 11:00 +Tulsa,,CIRCLE,OK,4/28/1998 22:00 +Colorado Springs,,FLASH,CO,4/28/1998 22:42 +Simpsonville,,LIGHT,SC,4/29/1998 6:25 +Republic,,FIREBALL,WA,4/29/1998 7:15 +Reno,,OTHER,CA,4/30/1998 1:00 +Danville,BLUE,TEARDROP,VA,4/30/1998 17:45 +Austin,,SPHERE,TX,4/30/1998 19:00 +Hardin,,TRIANGLE,KY,5/1/1998 0:00 +Rural,,FORMATION,NV,5/1/1998 0:00 +San Diego,,LIGHT,CA,5/1/1998 2:00 +Cordele,,DIAMOND,GA,5/1/1998 16:00 +New York City,,TRIANGLE,NY,5/1/1998 18:30 +Cleveland,,LIGHT,OH,5/1/1998 21:00 +Lufkin,GREEN,LIGHT,TX,5/1/1998 21:00 +Gwinn,,TRIANGLE,MI,5/1/1998 22:00 +Fort Smith,,DISK,AR,5/2/1998 1:00 +Los Angeles,,TRIANGLE,CA,5/2/1998 6:00 +Cheyenne,,,WY,5/2/1998 20:30 +Portland,,TRIANGLE,OR,5/2/1998 22:45 +Las Vegas,,TRIANGLE,NV,5/3/1998 21:00 +San Diego,BLUE,DISK,CA,5/4/1998 0:00 +Memphis,ORANGE,,TN,5/4/1998 0:45 +Moultrie,,VARIOUS,GA,5/4/1998 6:00 +Auburn,,SPHERE,WA,5/6/1998 13:30 +Manito,,TRIANGLE,IL,5/6/1998 23:30 +New York City,,TRIANGLE,NY,5/8/1998 19:15 +Deerfield Beach,,LIGHT,FL,5/8/1998 21:40 +Pompano Beach,,TRIANGLE,FL,5/8/1998 21:40 +Midlothian,,OTHER,IL,5/8/1998 22:00 +Asbury community,,LIGHT,NC,5/9/1998 20:00 +Bessemer,,,AL,5/10/1998 2:00 +Seattle,,FIREBALL,WA,5/10/1998 10:00 +Grand Rapids,,,MN,5/10/1998 19:00 +Carpentersville,,CIRCLE,IL,5/10/1998 21:30 +Oklahoma,,CIRCLE,OK,5/10/1998 22:00 +South Holland,,DISK,IL,5/11/1998 22:12 +Superior,,CIRCLE,WI,5/12/1998 1:00 +Pampa,,LIGHT,TX,5/12/1998 3:00 +Kinston,,CIGAR,NC,5/12/1998 16:00 +Chebanse,,DISK,IL,5/12/1998 21:00 +Rose,,TRIANGLE,NY,5/15/1998 0:00 +S. Beloit,,CIRCLE,IL,5/15/1998 0:00 +Ft. Campbell,,CIRCLE,KY,5/15/1998 7:30 +Nettleton,,LIGHT,MS,5/15/1998 7:30 +Des Plaines,,OTHER,IL,5/15/1998 18:00 +New York City,GREEN,OVAL,NY,5/15/1998 20:00 +Vincennes,,TRIANGLE,IN,5/15/1998 20:00 +Sebastopol,,LIGHT,MS,5/15/1998 21:45 +Newnan,,LIGHT,GA,5/15/1998 23:00 +Pueblo West,,TRIANGLE,CO,5/15/1998 23:30 +West Elkton,,,OH,5/16/1998 0:00 +Wilmington,,,NC,5/16/1998 2:20 +Westbrook,,OVAL,ME,5/16/1998 2:30 +Wheat Ridge,,CYLINDER,CO,5/16/1998 3:00 +Overland Park,,FIREBALL,KS,5/16/1998 16:00 +Andover,,LIGHT,MN,5/16/1998 21:45 +Manteca,,TRIANGLE,CA,5/16/1998 22:30 +Simla,GREEN,VARIOUS,CO,5/16/1998 23:47 +Belle Vernon,,OTHER,PA,5/17/1998 8:10 +Almont,,CIRCLE,MI,5/17/1998 17:00 +Colorado Springs,,LIGHT,CO,5/17/1998 22:25 +Kaleva,,LIGHT,MI,5/17/1998 23:20 +Salt Lake City,,TRIANGLE,UT,5/17/1998 23:30 +Rapid City,,OTHER,SD,5/18/1998 23:30 +Hill AFB,,CHEVRON,UT,5/20/1998 2:00 +Norfolk,,OTHER,MA,5/20/1998 3:15 +Granville,,LIGHT,OH,5/20/1998 4:30 +Atlantic City,BLUE,CIRCLE,NJ,5/20/1998 17:30 +Morristown,BLUE,FIREBALL,OH,5/20/1998 21:00 +Buffalo Grove,,LIGHT,IL,5/20/1998 21:45 +Salt Lake City,,CHEVRON,UT,5/20/1998 22:30 +Burlington,,LIGHT,VT,5/20/1998 22:40 +Old Appleton,,,MO,5/20/1998 23:00 +Spokane,,LIGHT,WA,5/21/1998 2:50 +Ridgway,,DISK,PA,5/21/1998 13:00 +St. Charles,,OTHER,ID,5/21/1998 20:00 +Denver,,FLASH,CO,5/21/1998 21:30 +Indianapolis,,VARIOUS,IN,5/22/1998 14:20 +Tigard,,TRIANGLE,OR,5/22/1998 21:00 +Moab,,FIREBALL,UT,5/23/1998 12:00 +Boston Location,,DISK,MI,5/23/1998 16:30 +Asbury Park,,CIGAR,NJ,5/24/1998 22:40 +Madison,,CYLINDER,WI,5/25/1998 12:05 +Denver,,TEARDROP,CO,5/26/1998 10:40 +Stanwood,,RECTANGLE,WA,5/28/1998 20:10 +Santa Fe,,FIREBALL,NM,5/28/1998 20:30 +Tucker,,VARIOUS,GA,5/28/1998 22:30 +Davie,GREEN BLUE,FLASH,FL,5/28/1998 22:43 +North Bend,,TRIANGLE,OH,5/29/1998 1:30 +Maple Shade,,SPHERE,NJ,5/29/1998 3:00 +Dallas,,DISK,TX,5/29/1998 4:45 +Phoenix,,OVAL,AZ,5/29/1998 5:00 +Phoenix,,CIGAR,AZ,5/29/1998 5:10 +Phoenix,,CIGAR,AZ,5/29/1998 5:10 +Elmira,,TRIANGLE,NY,5/29/1998 23:30 +Woodstock,GREEN,CIGAR,IL,5/30/1998 1:40 +Whitehorse,,LIGHT,MT,5/30/1998 4:00 +Salem,,OVAL,OR,5/30/1998 21:00 +Fort Hood,,LIGHT,TX,5/31/1998 2:30 +Tucson,,CONE,AZ,5/31/1998 10:30 +Penfield,,DISK,IL,5/31/1998 21:00 +Vancouver,,TRIANGLE,WA,5/31/1998 21:30 +Andrews,,CYLINDER,NC,6/1/1998 0:00 +Leo,,LIGHT,IN,6/1/1998 0:06 +Denver,,CIRCLE,CO,6/1/1998 0:15 +Bakersfield,,TRIANGLE,CA,6/1/1998 1:00 +Danville,,DISK,OH,6/1/1998 1:00 +Mechanicsburg,,OVAL,OH,6/1/1998 1:00 +Nipomo,,LIGHT,CA,6/1/1998 2:00 +Pensacola Beach,,LIGHT,FL,6/1/1998 2:00 +Wilmington,,OVAL,DE,6/1/1998 9:30 +Ellensburg,,LIGHT,WA,6/1/1998 10:00 +Winston-Salem,,CIRCLE,NC,6/1/1998 10:30 +Kelseyville,,TRIANGLE,CA,6/1/1998 11:00 +Bozeman,,DISK,MT,6/1/1998 12:00 +Boston,,DISK,MA,6/1/1998 14:00 +West Plains,,TRIANGLE,MO,6/1/1998 14:00 +West Richland,,OVAL,WA,6/1/1998 14:00 +Colville,,OTHER,WA,6/1/1998 16:30 +Toledo,,OVAL,OH,6/1/1998 17:00 +Denmark,,TRIANGLE,SC,6/1/1998 18:00 +Hunstville,,VARIOUS,AL,6/1/1998 18:00 +New Rochelle,,LIGHT,NY,6/1/1998 20:00 +O'Fallon,,TRIANGLE,MO,6/1/1998 20:00 +Lake Wales,,,FL,6/1/1998 20:30 +Salem,,OTHER,OR,6/1/1998 21:00 +Sulphur,,SPHERE,LA,6/1/1998 21:00 +Mt. Airy,,LIGHT,NC,6/1/1998 21:30 +Wendover,,TRIANGLE,UT,6/1/1998 21:30 +Bayfield,,FIREBALL,WI,6/1/1998 22:00 +Cockeysville,,,MD,6/1/1998 22:00 +Destrehan,RED,LIGHT,LA,6/1/1998 22:00 +Liberty County,,OTHER,MT,6/1/1998 22:00 +Valencia,,TRIANGLE,CA,6/1/1998 22:00 +Rancho Tehama,,DISK,CA,6/1/1998 23:00 +Lake Weir,,TRIANGLE,FL,6/2/1998 19:15 +Waco,,CYLINDER,TX,6/3/1998 17:30 +Rydal,,LIGHT,GA,6/4/1998 0:00 +Ocotillo,,TRIANGLE,CA,6/4/1998 6:19 +Chicago,,SPHERE,IL,6/4/1998 8:30 +Panama City Beach,,TRIANGLE,FL,6/4/1998 22:30 +West Paterson,,DISK,NJ,6/5/1998 3:31 +Bailey,,CIRCLE,CO,6/6/1998 0:30 +Ashland,,CONE,OH,6/6/1998 4:30 +Montverde,YELLOW,EGG,FL,6/6/1998 8:40 +Reno,,FORMATION,NV,6/6/1998 14:18 +Clifton,,SPHERE,NJ,6/6/1998 16:15 +Salinas,,FIREBALL,CA,6/6/1998 19:00 +Tampa,,LIGHT,FL,6/6/1998 21:30 +Elba,,LIGHT,NY,6/6/1998 22:00 +Vero Beach,,LIGHT,FL,6/6/1998 22:00 +St. Louis,,DIAMOND,MO,6/6/1998 23:15 +,,CIRCLE,TX,6/7/1998 7:00 +Los Angeles,,TRIANGLE,CA,6/7/1998 14:00 +Phoenix,,FIREBALL,AZ,6/7/1998 21:05 +Framingham,YELLOW GREEN,OTHER,MA,6/7/1998 21:40 +Cornville,,FIREBALL,AZ,6/7/1998 22:00 +Watertown,,CIRCLE,NY,6/7/1998 23:00 +Chesterfield,,FIREBALL,MO,6/7/1998 23:06 +Newport,YELLOW,LIGHT,RI,6/8/1998 21:00 +Chesterfield,,,MO,6/8/1998 22:20 +Salem,,LIGHT,OR,6/8/1998 23:40 +San Bernardino,,DIAMOND,CA,6/9/1998 0:00 +Lynch Mountain,,OTHER,KY,6/9/1998 6:20 +Brownsville,,LIGHT,TX,6/9/1998 21:30 +Chicago,,CIRCLE,IL,6/10/1998 2:30 +Newalla,,OTHER,OK,6/10/1998 22:00 +Palm Springs,,CIRCLE,CA,6/11/1998 13:00 +Lincoln City,,VARIOUS,OR,6/11/1998 17:25 +Patterson,,DISK,CA,6/11/1998 18:15 +Tampa,,LIGHT,FL,6/11/1998 21:00 +Kansas City,RED GREEN,LIGHT,MO,6/11/1998 21:58 +Grayling,ORANGE,SPHERE,MI,6/12/1998 10:30 +Halsey,,,OR,6/12/1998 14:00 +West Chicago,,RECTANGLE,IL,6/12/1998 21:00 +Santa Monica,,FORMATION,CA,6/12/1998 21:35 +Perris,ORANGE,LIGHT,CA,6/12/1998 22:30 +Montebello,,LIGHT,CA,6/12/1998 22:45 +Spokane,BLUE,OVAL,WA,6/13/1998 13:00 +Gresham,,CIRCLE,OR,6/13/1998 19:00 +Gresham,,CROSS,OR,6/13/1998 23:40 +Columbus,,FORMATION,OH,6/14/1998 4:30 +Cartago,,SPHERE,CA,6/15/1998 0:01 +Boy Scout Camp Royenea,GREEN,DISK,CA,6/15/1998 0:30 +CA,,,CA,6/15/1998 1:00 +Glide,BLUE,SPHERE,OR,6/15/1998 1:00 +Irwindale,GREEN,LIGHT,CA,6/15/1998 3:00 +Stockton,,FIREBALL,CA,6/15/1998 3:00 +Kingsville,,LIGHT,TX,6/15/1998 5:47 +Beavercreek,,OTHER,OH,6/15/1998 8:23 +Kalkaska,,CIGAR,MI,6/15/1998 11:00 +Navajo Lake,,SPHERE,NM,6/15/1998 11:00 +Florissant,,CIRCLE,CO,6/15/1998 14:00 +Lancaster,,CIRCLE,NY,6/15/1998 14:00 +Pontoto,,TRIANGLE,MS,6/15/1998 20:00 +Stoddard Valley,,OTHER,CA,6/15/1998 20:00 +Rochester,,LIGHT,IN,6/15/1998 20:30 +Bensalem,,DISK,PA,6/15/1998 21:00 +Valley Springs,,OTHER,CA,6/15/1998 21:30 +Campwood,,CIRCLE,TX,6/15/1998 22:00 +New Haven,BLUE,TRIANGLE,KY,6/15/1998 22:00 +Bryan,,LIGHT,TX,6/15/1998 22:10 +Healdsburg,GREEN BLUE,FIREBALL,CA,6/15/1998 22:34 +Edmond,,FIREBALL,OK,6/15/1998 23:00 +McHenry,,LIGHT,IL,6/15/1998 23:00 +Vincennes,,LIGHT,IN,6/16/1998 8:46 +Meadville,,TEARDROP,PA,6/16/1998 14:00 +Vincennes,,LIGHT,IN,6/16/1998 20:46 +Aspers,,CIRCLE,PA,6/16/1998 23:30 +Roseville,,LIGHT,MI,6/17/1998 1:30 +Corvallis,GREEN,SPHERE,OR,6/17/1998 22:45 +Annapolis,,TEARDROP,MD,6/17/1998 23:17 +Narcoossee,,LIGHT,FL,6/18/1998 18:45 +Kirkland,,DIAMOND,WA,6/18/1998 22:30 +Marina,,TEARDROP,CA,6/18/1998 23:44 +Tucson,,,AZ,6/19/1998 16:00 +Superior,BLUE,TRIANGLE,MT,6/20/1998 0:39 +Dover,,RECTANGLE,DE,6/20/1998 2:00 +Hartsgrove,,LIGHT,OH,6/20/1998 2:00 +Jacksonville,,CIRCLE,FL,6/20/1998 3:30 +Morris,,EGG,MN,6/20/1998 7:00 +Claremore,,SPHERE,OK,6/20/1998 14:00 +Covington,,CIRCLE,WA,6/20/1998 17:50 +St.Helens,,FIREBALL,OR,6/20/1998 18:00 +Medford,,CYLINDER,MA,6/20/1998 20:00 +Wilmington,,OTHER,NC,6/20/1998 21:30 +Eustace,,OVAL,TX,6/20/1998 22:00 +Rochester,,CHEVRON,NY,6/20/1998 22:30 +Wrightwood,,CIRCLE,CA,6/20/1998 23:00 +Cary,RED,CIRCLE,NC,6/20/1998 23:30 +San Bruno,,DISK,CA,6/21/1998 21:30 +Moundsville,,LIGHT,WV,6/21/1998 22:10 +Corpus Christi,ORANGE YELLOW,CYLINDER,TX,6/21/1998 22:30 +Waveland,,OVAL,MS,6/21/1998 23:30 +Evansville,,LIGHT,IN,6/22/1998 0:45 +Ellsworth,,LIGHT,WI,6/22/1998 1:00 +Belgrade,RED,,MT,6/22/1998 1:30 +Austin,,TRIANGLE,TX,6/22/1998 4:30 +Santee,,CYLINDER,SC,6/22/1998 22:30 +Neshkoro,,OTHER,WI,6/23/1998 0:30 +Apex,,TRIANGLE,NC,6/23/1998 1:15 +Richmond,,,VA,6/23/1998 20:58 +Lewiston,,LIGHT,ME,6/24/1998 18:30 +Austin,RED,OTHER,TX,6/24/1998 22:00 +Cleveland,,SPHERE,OH,6/25/1998 2:00 +Moab,,LIGHT,UT,6/25/1998 10:15 +Flagstaff,RED YELLOW,SPHERE,AZ,6/25/1998 10:23 +Boise,,SPHERE,ID,6/25/1998 11:00 +Plymouth,,CIRCLE,WI,6/25/1998 13:00 +Las Cruces,,CIRCLE,NM,6/25/1998 22:18 +Trumann,,OTHER,AR,6/26/1998 10:15 +Apple Valley,,OTHER,CA,6/26/1998 19:30 +East Amwell,,CIRCLE,NJ,6/27/1998 20:06 +East Amwell Township,,OVAL,NJ,6/27/1998 20:50 +Trenton,,DISK,NJ,6/27/1998 21:15 +Penfield,,CIRCLE,NY,6/27/1998 22:40 +Blossburg,,LIGHT,PA,6/28/1998 2:30 +Ellicott City,RED,SPHERE,MD,6/28/1998 5:00 +Craig,,OVAL,MT,6/28/1998 22:00 +Fitchburg,,CIRCLE,MA,6/28/1998 22:00 +Central Point,,LIGHT,OR,6/28/1998 23:00 +Goat Island,,FIREBALL,SC,6/28/1998 23:00 +Sacramento,RED,CIGAR,CA,6/28/1998 23:20 +Reno,,CIRCLE,NV,6/29/1998 12:00 +Yakima,GREEN,FIREBALL,WA,6/29/1998 23:01 +Corbin,,,KY,6/29/1998 23:30 +Waterford,BLUE,FLASH,WI,6/29/1998 23:45 +Jackson,,CYLINDER,MS,6/30/1998 0:00 +South Bend,,,IN,6/30/1998 1:00 +Quartzite,,FLASH,AZ,6/30/1998 1:30 +Indianola,,DIAMOND,IA,6/30/1998 2:00 +Port St. Lucie,,DISK,FL,6/30/1998 3:00 +Bettendorf,,LIGHT,IA,6/30/1998 3:58 +Algonac,,TRIANGLE,MI,6/30/1998 4:15 +Commerce Township,,VARIOUS,MI,6/30/1998 10:00 +Urbana,,CYLINDER,IL,6/30/1998 13:00 +Rome,,SPHERE,GA,6/30/1998 18:40 +Pasadena,,CIGAR,MD,6/30/1998 20:40 +Waldorf,,OVAL,MD,6/30/1998 21:30 +Los Angeles,,,CA,6/30/1998 23:00 +Roseville,,CIRCLE,CA,7/1/1998 0:00 +Rapid City,,SPHERE,MI,7/1/1998 2:00 +Garfield,,,NJ,7/1/1998 10:30 +Casa Grande,ORANGE YELLOW,CIRCLE,AZ,7/1/1998 17:20 +Fresno,,TRIANGLE,CA,7/1/1998 20:45 +Lockwood,,CIGAR,CA,7/1/1998 22:00 +Kalamazoo,ORANGE,CONE,MI,7/2/1998 1:30 +Bluewater Lake,ORANGE,LIGHT,NM,7/2/1998 4:30 +Huntsville,,LIGHT,AL,7/3/1998 21:30 +Hawii,,LIGHT,HI,7/4/1998 10:23 +Fenton,,DIAMOND,MI,7/4/1998 19:00 +Boston,,SPHERE,MA,7/4/1998 22:00 +Richmond,,CONE,IN,7/4/1998 22:00 +Nags Head,,LIGHT,NC,7/4/1998 22:30 +Burien,,LIGHT,WA,7/4/1998 22:55 +Boston,,SPHERE,MA,7/4/1998 23:00 +Huntsville,RED,LIGHT,AL,7/4/1998 23:00 +Hillsboro,,SPHERE,MO,7/4/1998 23:15 +Clarkston,,LIGHT,MI,7/4/1998 23:45 +Holland,,LIGHT,MI,7/4/1998 23:45 +Lake Vermillion,,DISK,MN,7/5/1998 0:00 +"Round Lake Beach, Illinois",,LIGHT,IL,7/5/1998 0:34 +Boundary Waters,,EGG,MN,7/5/1998 1:00 +Manasota Key,,FORMATION,FL,7/5/1998 2:00 +Panora,,SPHERE,IA,7/5/1998 3:00 +Portland,,TRIANGLE,ME,7/5/1998 21:00 +Cook,,LIGHT,MN,7/5/1998 23:30 +Loomis,,FLASH,WA,7/6/1998 1:24 +Elkhart,,CIGAR,IN,7/6/1998 13:30 +Rapid City,,OTHER,SD,7/6/1998 17:40 +Marty,,EGG,SD,7/7/1998 0:30 +Massillon,,FORMATION,OH,7/7/1998 1:35 +Denver,,SPHERE,CO,7/7/1998 17:00 +Livermore,,OTHER,CA,7/7/1998 21:00 +Hull,,OVAL,GA,7/7/1998 22:00 +Danville,BLUE,SPHERE,PA,7/7/1998 23:10 +Lakin,,TRIANGLE,KS,7/8/1998 2:00 +Albany,,RECTANGLE,NY,7/8/1998 7:30 +West Bloomfield,,OTHER,MI,7/8/1998 23:00 +Fernley,,TRIANGLE,NV,7/9/1998 20:24 +Hubbard,,TRIANGLE,OH,7/9/1998 21:30 +New York City,,DISK,NY,7/9/1998 21:30 +Sea Ranch,,,CA,7/9/1998 22:27 +South Prairie,,OTHER,WA,7/10/1998 0:45 +New Rochelle,,CIGAR,NY,7/10/1998 15:00 +Arnold,,LIGHT,MO,7/10/1998 17:30 +Brick,,SPHERE,NJ,7/10/1998 20:00 +Morristown,RED,,NJ,7/10/1998 20:29 +Westford,BLUE,DISK,VT,7/10/1998 22:00 +San Angelo,,FORMATION,TX,7/10/1998 22:15 +Medina County,,LIGHT,OH,7/11/1998 12:00 +"Hwy 30, heading west",RED,OTHER,PA,7/11/1998 13:35 +Lincoln,,SPHERE,MA,7/11/1998 17:00 +Chicago,,LIGHT,IL,7/11/1998 22:20 +Franklin Park,,CIRCLE,IL,7/11/1998 22:43 +Lock Haven,,,PA,7/12/1998 2:00 +Centerville,,LIGHT,OH,7/12/1998 2:50 +Decatur,,OTHER,AL,7/12/1998 20:00 +Salisbury,,FIREBALL,NC,7/12/1998 21:45 +Angola,,FORMATION,NY,7/12/1998 22:00 +Mt. Morris,RED BLUE,LIGHT,PA,7/12/1998 22:25 +McCook Lake,,,SD,7/13/1998 0:00 +San Francisco International Airport,,VARIOUS,CA,7/13/1998 2:00 +Schererville,,SPHERE,IN,7/13/1998 8:45 +Bakersfield,,,CA,7/13/1998 15:38 +Chocowinity,,DISK,NC,7/13/1998 21:00 +Idaho Falls,,TRIANGLE,ID,7/13/1998 23:05 +Bay City,,,TX,7/14/1998 22:30 +York,,,PA,7/14/1998 22:34 +Shanadoah,,TRIANGLE,IA,7/14/1998 23:00 +Minneapolis,,DISK,MN,7/15/1998 1:00 +Rachel,,OTHER,NV,7/15/1998 1:00 +Albuquerque,,FIREBALL,NM,7/15/1998 1:30 +Council,,TRIANGLE,ID,7/15/1998 1:30 +San Bernardino,,LIGHT,CA,7/15/1998 5:00 +Columbus,,OTHER,OH,7/15/1998 8:00 +New York City,,OTHER,NY,7/15/1998 14:00 +Dublin,,FLASH,OH,7/15/1998 14:30 +Bristol,,EGG,RI,7/15/1998 15:00 +Spokane,,OVAL,WA,7/15/1998 15:00 +Aurora,,,CO,7/15/1998 19:00 +Sterling,,DISK,VA,7/15/1998 19:00 +McMinnville,GREEN,OVAL,TN,7/15/1998 20:00 +Medford,,CIRCLE,OR,7/15/1998 21:00 +Chiricahua Mountains,,CIRCLE,AZ,7/15/1998 21:30 +Scales Mound,,LIGHT,IL,7/15/1998 21:30 +Lynnwood,,TRIANGLE,WA,7/15/1998 22:00 +Chapel Hill,,FORMATION,TN,7/15/1998 22:30 +Killeen,,FLASH,TX,7/15/1998 22:30 +Salem,,CIRCLE,NH,7/15/1998 23:30 +Whitehall,,LIGHT,MI,7/15/1998 23:30 +Muscatine,GREEN BLUE,OVAL,IA,7/16/1998 9:30 +Puyallup,,OTHER,WA,7/16/1998 15:00 +Pine Bush,,SPHERE,NY,7/16/1998 22:00 +Carson City,,SPHERE,NV,7/16/1998 23:00 +Jacksonville,,LIGHT,FL,7/17/1998 2:00 +Jacksonville,,OTHER,FL,7/17/1998 2:02 +Jacksonville,YELLOW,DIAMOND,FL,7/17/1998 2:10 +Indianapolis,,SPHERE,IN,7/17/1998 7:45 +Cleveland,,OTHER,OH,7/17/1998 16:00 +Fort Lauderdale,BLUE,FLASH,FL,7/17/1998 22:00 +Tukwila,,LIGHT,WA,7/17/1998 22:00 +Portland,,LIGHT,OR,7/17/1998 22:51 +Chandler,,LIGHT,AZ,7/18/1998 2:15 +Longmont,,TRIANGLE,CO,7/18/1998 10:07 +Rimrock Lake,,FORMATION,WA,7/18/1998 22:00 +Arcadia,,,KS,7/19/1998 0:30 +Winchendon,,SPHERE,MA,7/19/1998 5:00 +Hicksville,,EGG,NY,7/19/1998 11:30 +Ogden,,DISK,UT,7/20/1998 1:00 +Tinley Park,,LIGHT,IL,7/20/1998 2:00 +Des Moines,,OTHER,IA,7/20/1998 12:00 +Romulus,,FORMATION,MI,7/20/1998 18:30 +Brownstown,ORANGE,LIGHT,MI,7/20/1998 20:00 +Callaway,,FIREBALL,MN,7/20/1998 21:00 +Clearfield,,SPHERE,IA,7/20/1998 21:00 +Pembroke Pines,,TRIANGLE,FL,7/20/1998 21:00 +Canton,BLUE,FIREBALL,MI,7/20/1998 22:00 +Sun City,,FORMATION,CA,7/20/1998 22:00 +Mohrsville,,FORMATION,PA,7/21/1998 2:00 +Rochester,,OTHER,NY,7/21/1998 12:00 +Houston,,OTHER,TX,7/21/1998 21:00 +Leo,,LIGHT,IN,7/21/1998 21:45 +Napoleon,,,OH,7/21/1998 23:19 +Athens,,DISK,AL,7/22/1998 17:43 +"Hubbard,",,OTHER,OR,7/23/1998 0:00 +Fort Smith,,LIGHT,AR,7/23/1998 22:30 +Portland,,OTHER,ME,7/24/1998 1:40 +Tucson,,FIREBALL,AZ,7/24/1998 22:55 +Seely Lake,,LIGHT,MT,7/24/1998 23:30 +Baker,YELLOW GREEN,TEARDROP,CA,7/25/1998 2:30 +Tigard,,OVAL,OR,7/25/1998 16:30 +Jefferson,,OVAL,CO,7/25/1998 18:30 +Moscow Mills,GREEN,CIGAR,MO,7/25/1998 20:00 +Vancouver,,TRIANGLE,WA,7/25/1998 21:00 +Cascade Range,,LIGHT,OR,7/25/1998 22:00 +Tucson,GREEN,LIGHT,AZ,7/25/1998 22:00 +Erie,,LIGHT,PA,7/26/1998 0:30 +Portland,,CYLINDER,OR,7/26/1998 18:25 +Ballston Spa,GREEN BLUE,OVAL,NY,7/26/1998 21:30 +Corte Madera,,TRIANGLE,CA,7/26/1998 23:23 +I-84 exit about 1min off of highway.,,,CT,7/27/1998 0:49 +Southampton,,VARIOUS,NY,7/27/1998 3:00 +Charleston,GREEN,FIREBALL,WV,7/27/1998 4:40 +Castle Creek,,CIRCLE,NY,7/27/1998 21:13 +Yuma,,TRIANGLE,AZ,7/28/1998 1:30 +Omaha,,TRIANGLE,NE,7/28/1998 10:56 +Bristol,,DISK,VA,7/28/1998 18:10 +Bristol,,DISK,VA,7/28/1998 18:45 +Tulare,,RECTANGLE,CA,7/28/1998 22:00 +Aloha,,LIGHT,OR,7/29/1998 0:15 +St. Helen,RED,CIRCLE,MI,7/30/1998 22:00 +Auanga,,CIRCLE,CA,7/30/1998 23:45 +San Diego,,OTHER,CA,7/31/1998 0:00 +Las Vegas,,TRIANGLE,NV,7/31/1998 3:30 +Grass Valley,,LIGHT,CA,7/31/1998 4:00 +Binghamton,RED,SPHERE,NY,8/1/1998 0:00 +Pittsburgh,,TRIANGLE,PA,8/1/1998 0:00 +Provincetown,,LIGHT,MA,8/1/1998 0:00 +Excelsior Springs,BLUE,SPHERE,MO,8/1/1998 0:30 +Chicago,,LIGHT,IL,8/1/1998 3:00 +Fort Sill,,CYLINDER,OK,8/1/1998 14:00 +Howell,,,MI,8/1/1998 14:30 +Brigantine,ORANGE,LIGHT,NJ,8/1/1998 20:00 +St. Louis,,LIGHT,MO,8/1/1998 20:45 +Litchfield,,OTHER,IL,8/1/1998 21:00 +Big Sur,,CIGAR,CA,8/1/1998 22:30 +Lincoln,,LIGHT,NE,8/1/1998 22:30 +Minocqua,ORANGE,SPHERE,WI,8/1/1998 22:30 +Olean,ORANGE,LIGHT,NY,8/1/1998 22:30 +Albuquerque,,TRIANGLE,NM,8/1/1998 23:00 +Pierre,GREEN,,SD,8/1/1998 23:00 +Huntington Beach,,DISK,CA,8/2/1998 15:00 +Richmond,,SPHERE,VA,8/2/1998 23:30 +Salem,,VARIOUS,MA,8/3/1998 0:00 +Midland,,,SD,8/3/1998 0:30 +El Paso,,LIGHT,TX,8/3/1998 17:30 +El Paso,,FIREBALL,TX,8/3/1998 17:53 +Portland,BLUE,LIGHT,OR,8/3/1998 21:29 +Newton,,FORMATION,KS,8/5/1998 1:00 +East Machias,,LIGHT,ME,8/5/1998 21:00 +Grand Junction,RED BLUE,LIGHT,CO,8/5/1998 23:45 +Albany,,CONE,OR,8/6/1998 21:45 +Casa Grande,,TRIANGLE,AZ,8/7/1998 0:00 +Casa Grande,,TRIANGLE,AZ,8/7/1998 0:00 +Dickson City,,CHEVRON,PA,8/7/1998 14:00 +Lenoir City,,OTHER,TN,8/7/1998 19:00 +North Charleston,,,SC,8/8/1998 0:00 +Tacoma,,OTHER,WA,8/8/1998 9:30 +San Leandro,YELLOW,CHEVRON,CA,8/8/1998 20:00 +Chatsworth,YELLOW,CIRCLE,GA,8/8/1998 21:30 +Grayling,ORANGE,SPHERE,MI,8/9/1998 0:00 +Birkshire County,,VARIOUS,MA,8/9/1998 11:00 +Lompoc,,CIRCLE,CA,8/9/1998 23:20 +Big Pine,,LIGHT,CA,8/10/1998 1:00 +Albuquerque,,FIREBALL,NM,8/10/1998 6:00 +Otis,,SPHERE,OR,8/10/1998 15:00 +West. Simsbury,,OTHER,CT,8/10/1998 17:00 +Center Harbor,,LIGHT,NH,8/10/1998 21:30 +Sedona,,LIGHT,AZ,8/10/1998 21:30 +Seattle,,CIRCLE,WA,8/10/1998 21:40 +Harrisburg,,TRIANGLE,PA,8/10/1998 22:00 +Modesto,,TRIANGLE,CA,8/10/1998 22:00 +Trabuco,,LIGHT,CA,8/10/1998 22:00 +Georgetown,,VARIOUS,TX,8/10/1998 23:30 +Canby,,,OR,8/11/1998 0:00 +Mandan,,DISK,ND,8/11/1998 0:15 +Ettrick,RED,CIRCLE,WI,8/12/1998 0:30 +Cleveland,YELLOW,DIAMOND,OH,8/12/1998 3:15 +San Marcos,,OVAL,CA,8/12/1998 21:09 +Fair Lawn,,OVAL,NJ,8/12/1998 21:30 +Bothell,,DISK,WA,8/12/1998 22:24 +Midland,,DISK,TX,8/13/1998 0:00 +Tuskegee National Forest @ HWY 85,,DISK,AL,8/13/1998 1:00 +Lake Alpine,,SPHERE,CA,8/13/1998 2:00 +Hampton,,CIRCLE,NH,8/13/1998 3:00 +Belvidere,BLUE,FLASH,IL,8/13/1998 4:13 +Jeannette,,VARIOUS,PA,8/13/1998 10:10 +Plainview,BLUE,LIGHT,NY,8/13/1998 19:45 +New Riegel,,OTHER,OH,8/13/1998 21:43 +Coarsegold,RED,TRIANGLE,CA,8/13/1998 22:00 +Erie,,CIRCLE,PA,8/13/1998 22:30 +Blewett Pass-top of mountain pass,,LIGHT,WA,8/14/1998 0:00 +The Dalles,ORANGE,FIREBALL,OR,8/14/1998 3:15 +Burlington,,FIREBALL,ND,8/14/1998 16:00 +Seattle,,RECTANGLE,WA,8/14/1998 22:00 +Deshler,,RECTANGLE,OH,8/15/1998 0:00 +Stonewall,,,LA,8/15/1998 0:00 +Highlands Ranch,,FLASH,CO,8/15/1998 1:00 +Janesville,,LIGHT,WI,8/15/1998 1:30 +Logan,,TRIANGLE,UT,8/15/1998 2:00 +Perryville,,FIREBALL,MO,8/15/1998 11:00 +Everett,,OTHER,WA,8/15/1998 12:00 +Tracy,,CIRCLE,CA,8/15/1998 17:00 +San Fernando,,TRIANGLE,CA,8/15/1998 17:30 +Everett,,SPHERE,WA,8/15/1998 19:00 +Toledo,,,OH,8/15/1998 20:00 +Thomasville,,SPHERE,NC,8/15/1998 20:15 +Sterling,,,VA,8/15/1998 22:00 +Simi Valley,RED,LIGHT,CA,8/15/1998 22:15 +Seattle,,,WA,8/15/1998 22:30 +Pontiac,,LIGHT,MI,8/15/1998 22:45 +Annapolis,GREEN,TRIANGLE,MD,8/15/1998 23:00 +Crestline,,TRIANGLE,CA,8/15/1998 23:30 +New York City,,LIGHT,NY,8/15/1998 23:30 +San Juan Islands,,CIGAR,WA,8/16/1998 1:30 +Gridley,,FLASH,CA,8/16/1998 23:15 +El Dorado,,CIRCLE,KS,8/17/1998 8:00 +North Plains,,OVAL,OR,8/17/1998 14:10 +Beacon Falls,,LIGHT,CT,8/17/1998 21:00 +Friendswoods,,DIAMOND,TX,8/17/1998 21:50 +Darien,,TRIANGLE,NY,8/17/1998 22:30 +Dayton,,EGG,NV,8/18/1998 20:30 +Silverhill,,DISK,AL,8/18/1998 21:15 +Albuquerque,,LIGHT,NM,8/19/1998 0:00 +Dania,,DISK,FL,8/19/1998 10:00 +Flagstaff,,FIREBALL,AZ,8/19/1998 21:28 +Reno,,LIGHT,NV,8/19/1998 21:45 +Reno,,LIGHT,NV,8/19/1998 21:45 +Des Moines,,SPHERE,WA,8/19/1998 23:40 +San Antonio,ORANGE,FIREBALL,TX,8/20/1998 0:00 +Oxnard,,TRIANGLE,CA,8/20/1998 15:00 +Marysville,,TRIANGLE,WA,8/20/1998 19:00 +Rushville,ORANGE YELLOW,,IL,8/20/1998 22:00 +Gobles,,DISK,MI,8/20/1998 22:30 +Illwaco,,LIGHT,WA,8/20/1998 22:30 +Centreville,BLUE,SPHERE,VA,8/20/1998 23:30 +High Ridge,,FLASH,MO,8/20/1998 23:30 +Woodbridge,,TRIANGLE,VA,8/21/1998 3:00 +Torrance,,EGG,CA,8/21/1998 15:00 +Mt Sterling,,LIGHT,IL,8/21/1998 21:00 +Bishop,,RECTANGLE,CA,8/21/1998 22:30 +Salem,,CHEVRON,OR,8/21/1998 22:55 +Madera,,OTHER,CA,8/22/1998 2:00 +Osceola,ORANGE,LIGHT,IN,8/22/1998 8:50 +Telluride,,LIGHT,CO,8/22/1998 20:00 +Northglenn,,FIREBALL,CO,8/22/1998 22:20 +Xenia,YELLOW,,OH,8/22/1998 23:05 +Sparta,,,NC,8/22/1998 23:15 +East Hartford,,,CT,8/23/1998 5:00 +Houston,,LIGHT,TX,8/24/1998 6:15 +Albuquerque,,TRIANGLE,NM,8/24/1998 13:00 +Westfield,,TRIANGLE,MA,8/24/1998 20:45 +Landover,,DIAMOND,MD,8/24/1998 22:00 +Pebble Beach,,,CA,8/25/1998 2:00 +Sandpoint,,DISK,ID,8/25/1998 13:00 +Mariposa,GREEN,FIREBALL,CA,8/26/1998 22:00 +Waterford,GREEN,FIREBALL,MI,8/26/1998 23:00 +Oregon,ORANGE,FIREBALL,OH,8/27/1998 1:30 +Villa Nueva State Park,,CIGAR,NM,8/27/1998 23:00 +San Diego,YELLOW,SPHERE,CA,8/28/1998 2:15 +Minneapolis,,SPHERE,MN,8/28/1998 5:45 +Mobile,,LIGHT,AL,8/28/1998 5:45 +West Islip,,OTHER,NY,8/28/1998 19:00 +Mt. Vernon,BLUE,FIREBALL,OR,8/28/1998 22:25 +Frances,,FIREBALL,WA,8/28/1998 22:30 +San Francisco,,DIAMOND,CA,8/29/1998 17:00 +West Salem,,VARIOUS,OH,8/29/1998 21:30 +St. Augustine,GREEN,TRIANGLE,FL,8/30/1998 4:00 +Tucson,,,AZ,8/31/1998 22:00 +New York City,,OVAL,NY,9/1/1998 1:00 +Seaside,,TRIANGLE,OR,9/1/1998 1:00 +Leonardo,,DISK,NJ,9/1/1998 6:00 +Tolono,,CIRCLE,IL,9/1/1998 10:30 +Jonesville,,CIGAR,IL,9/1/1998 16:30 +Avoca,GREEN,TRIANGLE,PA,9/1/1998 19:30 +Thompson,RED,FORMATION,UT,9/1/1998 20:00 +Desert Center,,SPHERE,CA,9/1/1998 20:30 +Ft. Myers Beach,,TRIANGLE,FL,9/1/1998 22:00 +Snow Shoe,,CIGAR,PA,9/1/1998 22:00 +Cheyenne,,LIGHT,WY,9/2/1998 0:30 +Galesburg,,CIRCLE,IL,9/2/1998 6:00 +Schaumburg,,OVAL,IL,9/2/1998 21:00 +Juneau,,TRIANGLE,AK,9/2/1998 23:00 +Portland,,DISK,OR,9/2/1998 23:33 +Stanton,,LIGHT,CA,9/3/1998 2:00 +Crescent City,,FORMATION,CA,9/3/1998 3:00 +Rochester,,CIGAR,MN,9/3/1998 10:30 +Freeport,BLUE,SPHERE,NY,9/3/1998 23:38 +Cheyenne,,CIGAR,WY,9/4/1998 15:00 +Duarte,,LIGHT,CA,9/4/1998 20:20 +Blue River,,CYLINDER,OR,9/4/1998 20:45 +Hartsdale,,TRIANGLE,NY,9/4/1998 22:03 +"Mt. Rainier north side, near Cateract Valley",,LIGHT,WA,9/4/1998 22:30 +Charleston,,FIREBALL,SC,9/5/1998 2:00 +Kimball Twp.,GREEN,FIREBALL,MI,9/5/1998 21:30 +Medicine Bow Natl. Forest,,TRIANGLE,WY,9/5/1998 22:30 +Tyler,RED GREEN BLUE,SPHERE,TX,9/6/1998 1:05 +Bakersfield,,OTHER,CA,9/6/1998 18:51 +Cottonwood,RED,OTHER,AZ,9/6/1998 19:45 +Manashtash Ridge,,,WA,9/6/1998 20:00 +Kansas City,,DISK,KS,9/6/1998 21:20 +Idaho Falls,,OTHER,ID,9/6/1998 22:15 +Longmont,RED,LIGHT,CO,9/7/1998 0:45 +Fallon,,LIGHT,NV,9/7/1998 17:30 +Emory,,FIREBALL,TX,9/8/1998 21:30 +Tomah,,CYLINDER,WI,9/9/1998 1:25 +Horeshoe Bay,,CIRCLE,TX,9/10/1998 4:30 +Oceanside,,FIREBALL,CA,9/10/1998 7:15 +Poway,,FLASH,CA,9/10/1998 19:00 +Sophia,ORANGE BLUE,FIREBALL,NC,9/10/1998 19:00 +San Angelo,,FIREBALL,TX,9/10/1998 20:00 +St. Charles,,CIGAR,MO,9/10/1998 21:00 +Buena Vista,,VARIOUS,CO,9/10/1998 22:45 +Roswell,,DIAMOND,NM,9/11/1998 0:00 +Portland,,LIGHT,OR,9/12/1998 4:45 +Corpus Christi,RED,SPHERE,TX,9/12/1998 9:00 +Lolo,,DISK,MT,9/12/1998 10:30 +Mt. Baker,,OVAL,WA,9/12/1998 10:30 +Harris Ranch,,DIAMOND,CA,9/12/1998 16:00 +Shalimar,RED,FIREBALL,FL,9/12/1998 18:00 +Danville,,FIREBALL,CA,9/12/1998 18:15 +Sheridan,RED YELLOW GREEN BLUE,TRIANGLE,OR,9/12/1998 20:30 +Woodinville,GREEN,LIGHT,WA,9/13/1998 0:00 +Gainesville,,OTHER,GA,9/13/1998 18:00 +Grants Pass,GREEN,FIREBALL,OR,9/13/1998 21:00 +Weed,BLUE,FIREBALL,CA,9/13/1998 21:20 +Boulder,,OTHER,CO,9/13/1998 22:10 +Bradenton,ORANGE,OTHER,FL,9/13/1998 23:10 +Niagara Falls,GREEN,FLASH,NY,9/14/1998 0:00 +Randle,,CIGAR,WA,9/14/1998 12:00 +Okanogan,RED GREEN BLUE,,WA,9/14/1998 19:27 +Grand Island,,SPHERE,NY,9/14/1998 21:30 +"Hudson Valley, NY",,FIREBALL,CT,9/14/1998 22:00 +Salt Lake City,,SPHERE,UT,9/15/1998 4:00 +Salt Lake City,,SPHERE,UT,9/15/1998 4:00 +Edmond,,CYLINDER,OK,9/15/1998 12:00 +Jamestown,,EGG,NY,9/15/1998 12:00 +Seattle,ORANGE,OTHER,WA,9/15/1998 18:00 +Varysburg,RED,SPHERE,NY,9/15/1998 18:00 +New York City,,TRIANGLE,NY,9/15/1998 18:30 +Lubbock,,OTHER,TX,9/15/1998 20:00 +Pasadena,,FIREBALL,CA,9/15/1998 20:00 +Hodgkins,,SPHERE,IL,9/15/1998 20:15 +Anna,,LIGHT,IL,9/15/1998 21:00 +Bethel,,EGG,CT,9/15/1998 21:00 +Ft. Fairfield,,LIGHT,ME,9/15/1998 21:00 +Grimsby,,,VA,9/15/1998 21:00 +Gladwin,,,MI,9/15/1998 22:00 +Melbourne Beach,GREEN,CIRCLE,FL,9/15/1998 22:00 +Escondido,ORANGE BLUE,VARIOUS,CA,9/15/1998 22:30 +Auke Bay,RED BLUE,LIGHT,AK,9/15/1998 23:00 +Puyallup,,FIREBALL,WA,9/15/1998 23:00 +Auke Bay,RED GREEN,LIGHT,AK,9/15/1998 23:30 +San Diego,,LIGHT,CA,9/16/1998 21:30 +Ramona,ORANGE,SPHERE,CA,9/17/1998 18:30 +Mokena,,DISK,IL,9/17/1998 21:35 +Cozad,,VARIOUS,NE,9/18/1998 1:45 +Ashland,,OVAL,KY,9/18/1998 19:00 +Diamond Bar,,OVAL,CA,9/18/1998 21:00 +Del Mar,GREEN,FIREBALL,CA,9/18/1998 21:30 +Salt Lake City,,TRIANGLE,UT,9/18/1998 22:25 +Castaic,GREEN,FIREBALL,CA,9/18/1998 23:51 +Boulder City,BLUE,TRIANGLE,NV,9/19/1998 0:00 +Scottsdale,RED GREEN,DISK,AZ,9/19/1998 21:00 +Seattle,,DISK,WA,9/19/1998 21:00 +Seattle,,EGG,WA,9/19/1998 21:30 +Las Vegas,GREEN,OTHER,NV,9/20/1998 5:50 +Tolono,,CIRCLE,IL,9/20/1998 10:30 +Tukwila,,SPHERE,WA,9/20/1998 14:00 +Centreville,,LIGHT,VA,9/20/1998 22:00 +Spanaway,,,WA,9/20/1998 22:18 +Rosemead,,DISK,CA,9/20/1998 22:20 +Bothell,,CIRCLE,WA,9/20/1998 22:30 +Bodie,,SPHERE,CA,9/21/1998 15:00 +Bakersfield,,VARIOUS,CA,9/21/1998 17:10 +Redding,RED GREEN,LIGHT,CA,9/21/1998 19:00 +Sedona,,OTHER,AZ,9/21/1998 19:25 +Sedona,,OVAL,AZ,9/21/1998 19:40 +Bermuda Dunes,,FORMATION,CA,9/21/1998 20:00 +Austin,,TRIANGLE,TX,9/22/1998 0:10 +Westland,,TRIANGLE,MI,9/22/1998 0:10 +Big Lake,GREEN,LIGHT,AK,9/22/1998 3:00 +Colorado Springs,BLUE,FIREBALL,CO,9/22/1998 4:45 +Portsmouth,,EGG,RI,9/22/1998 16:18 +Poway,,CYLINDER,CA,9/22/1998 17:00 +Fargo,,TRIANGLE,ND,9/22/1998 20:00 +Eugene,,,OR,9/22/1998 21:06 +Doylestown,,OTHER,PA,9/22/1998 21:30 +New Berlin,,CHEVRON,WI,9/22/1998 21:30 +Cedar Crest,,FIREBALL,NM,9/22/1998 22:00 +Highlands Ranch,,OTHER,CO,9/22/1998 23:15 +Ladson,,SPHERE,SC,9/22/1998 23:55 +Adrian,GREEN BLUE,FIREBALL,MI,9/23/1998 0:00 +Deerhorn Valley,GREEN,LIGHT,CA,9/23/1998 0:00 +San Fernando Valley,BLUE,OTHER,CA,9/23/1998 0:00 +Plymouth,,CIRCLE,WI,9/23/1998 0:45 +Bellevue,,FIREBALL,WA,9/23/1998 2:40 +Los Angeles,,CHEVRON,CA,9/23/1998 4:00 +Schenectady,GREEN,SPHERE,NY,9/23/1998 4:50 +Bedford,,DISK,VA,9/23/1998 9:30 +Anson,,FIREBALL,TX,9/23/1998 10:30 +Westborough,,SPHERE,MA,9/23/1998 13:59 +Portland,GREEN,OTHER,OR,9/23/1998 18:35 +Salem,BLUE,SPHERE,OR,9/23/1998 20:11 +Hollywood,GREEN,FIREBALL,CA,9/23/1998 20:55 +Austin,RED YELLOW GREEN,DISK,TX,9/23/1998 21:00 +Everett,GREEN,FIREBALL,WA,9/23/1998 21:00 +Houston,,FIREBALL,TX,9/23/1998 21:00 +Winston,GREEN,LIGHT,OR,9/23/1998 21:00 +Winston,GREEN,TEARDROP,OR,9/23/1998 21:00 +Enumclaw,GREEN,OTHER,WA,9/23/1998 21:05 +Fort Worth,,FIREBALL,TX,9/23/1998 21:05 +Bayview,,FIREBALL,WA,9/23/1998 21:10 +Bothell,GREEN,FIREBALL,WA,9/23/1998 21:10 +Bothell,,LIGHT,WA,9/23/1998 21:10 +Poulsbo,YELLOW,FIREBALL,WA,9/23/1998 21:10 +Scottsdale,,FIREBALL,AZ,9/23/1998 21:10 +Seattle,GREEN,FIREBALL,WA,9/23/1998 21:10 +Tacoma,GREEN,FIREBALL,WA,9/23/1998 21:10 +Vancouver,,FIREBALL,WA,9/23/1998 21:10 +Everett,GREEN,FIREBALL,WA,9/23/1998 21:11 +Kent,BLUE,OVAL,WA,9/23/1998 21:15 +Poway,RED GREEN BLUE,FIREBALL,CA,9/23/1998 21:15 +Renton,,FIREBALL,WA,9/23/1998 21:20 +Browns Valley,ORANGE GREEN,SPHERE,CA,9/23/1998 21:35 +Houston,,FIREBALL,TX,9/23/1998 21:45 +Castaic,GREEN BLUE,CIGAR,CA,9/23/1998 22:45 +Puyallup,GREEN,OTHER,WA,9/23/1998 22:49 +Bellevue,,FIREBALL,WA,9/23/1998 22:50 +Mukilteo,,LIGHT,WA,9/23/1998 23:10 +Rochester,,SPHERE,NY,9/23/1998 23:20 +Sheridan,,OTHER,WY,9/24/1998 0:15 +Bowling Green,,FLASH,OH,9/24/1998 1:30 +Harrisburg,RED GREEN,FIREBALL,PA,9/24/1998 1:30 +Longmont,,DISK,CO,9/24/1998 20:15 +Huntington Beach,GREEN,FIREBALL,CA,9/24/1998 22:00 +Modesto,GREEN,LIGHT,CA,9/24/1998 22:15 +New York City,RED,FIREBALL,NY,9/24/1998 22:30 +North Pole,ORANGE,SPHERE,AK,9/24/1998 22:35 +Wyola,,DISK,MT,9/24/1998 23:59 +Marysville,,DISK,OH,9/25/1998 0:00 +Milwaukee,,OVAL,WI,9/25/1998 0:40 +Sunrise Beach,,DISK,TX,9/25/1998 4:40 +Memphis,,FLASH,TN,9/25/1998 5:41 +Fire Island Pines,,CYLINDER,NY,9/25/1998 12:15 +Acampo,ORANGE,TEARDROP,CA,9/25/1998 20:00 +Monroe,GREEN,FIREBALL,WA,9/25/1998 21:25 +Silverdale,GREEN,FIREBALL,WA,9/25/1998 21:25 +Fort Lewis,,FIREBALL,WA,9/25/1998 21:35 +Bellevue,,RECTANGLE,WA,9/25/1998 23:00 +Bosque Farms,,,NM,9/25/1998 23:00 +San Diego North County,GREEN,SPHERE,CA,9/25/1998 23:40 +Bishop,,FIREBALL,CA,9/26/1998 0:00 +Roslyn,,FORMATION,WA,9/26/1998 0:00 +Warwick,,CIRCLE,RI,9/26/1998 0:00 +Phoenix,GREEN,SPHERE,AZ,9/26/1998 1:00 +Grand Mound,,OTHER,IA,9/26/1998 2:25 +Rock Springs,GREEN,FIREBALL,WY,9/26/1998 3:05 +Mt. Vernon,,OVAL,NY,9/26/1998 9:30 +Pleasant Hill,,LIGHT,CA,9/26/1998 12:30 +Castle Peak Summit,ORANGE,DISK,CA,9/26/1998 13:00 +Lochbuie,,OTHER,CO,9/26/1998 19:03 +Littleton,GREEN,OTHER,CO,9/26/1998 20:15 +Athens,,CIRCLE,GA,9/26/1998 21:45 +San Jose,,FORMATION,CA,9/26/1998 22:30 +Fort Collins,RED,TRIANGLE,CO,9/26/1998 23:00 +Steilacoom,BLUE,FIREBALL,WA,9/26/1998 23:30 +Redmond,YELLOW,CIRCLE,WA,9/27/1998 0:00 +Mesquite,,TRIANGLE,TX,9/27/1998 1:15 +Johnson Creek,,SPHERE,WI,9/27/1998 16:15 +Burien,,TRIANGLE,WA,9/27/1998 23:35 +Austin,,TRIANGLE,TX,9/28/1998 4:35 +Cincinnati,,FIREBALL,OH,9/28/1998 4:39 +Crystal Falls,,LIGHT,MI,9/28/1998 14:30 +Everett,,,WA,9/28/1998 16:00 +Agawam,,OVAL,MA,9/28/1998 20:00 +Fair Lawn,,TRIANGLE,NJ,9/28/1998 21:30 +Mesa,RED,TRIANGLE,AZ,9/28/1998 21:30 +Arlington,,FORMATION,TX,9/29/1998 6:15 +Yuma,GREEN,FIREBALL,AZ,9/29/1998 18:44 +Wauconda,,FIREBALL,WA,9/29/1998 19:25 +Rochester,ORANGE,FIREBALL,NY,9/29/1998 20:15 +Tucson,,LIGHT,AZ,9/30/1998 1:00 +Herman,,TRIANGLE,MO,9/30/1998 21:00 +Logan,,TRIANGLE,UT,10/1/1998 0:00 +Portland,GREEN,LIGHT,OR,10/1/1998 0:10 +St. Paul,,FIREBALL,OR,10/1/1998 1:30 +Nisqually,,DISK,WA,10/1/1998 2:00 +Rio Rancho,,FIREBALL,NM,10/1/1998 4:30 +Bayfield,,LIGHT,CO,10/1/1998 5:30 +Chicora,RED GREEN,DISK,PA,10/1/1998 8:00 +San Francisco,,SPHERE,CA,10/1/1998 10:00 +Elgin,BLUE,DISK,IL,10/1/1998 13:30 +Del Mar,,FIREBALL,CA,10/1/1998 16:00 +La Jolla,ORANGE,FIREBALL,CA,10/1/1998 18:50 +Manchester,,OVAL,NH,10/1/1998 18:56 +Clarinda,,TRIANGLE,IA,10/1/1998 21:00 +Mt Sterling,ORANGE,FORMATION,IL,10/1/1998 21:02 +Ipava,,TRIANGLE,IL,10/1/1998 21:15 +Moundsville,,TRIANGLE,WV,10/1/1998 22:30 +Mosinee,,OTHER,WI,10/1/1998 23:10 +Sedona,,FIREBALL,AZ,10/2/1998 9:20 +El Monte,,CIRCLE,CA,10/2/1998 9:30 +Decator,,TRIANGLE,TX,10/2/1998 12:40 +Bettendorf,BLUE,LIGHT,IA,10/2/1998 19:55 +Key West,,VARIOUS,FL,10/3/1998 1:00 +Carbondale,,VARIOUS,IL,10/3/1998 14:30 +Albuquerque,,,NM,10/4/1998 2:45 +Suquamish,,FLASH,WA,10/4/1998 4:37 +Walla Walla,GREEN,FIREBALL,WA,10/4/1998 4:37 +Aberdeen,,FIREBALL,WA,10/4/1998 4:42 +Yamhill,BLUE,FIREBALL,OR,10/4/1998 4:45 +Columbia River { mile marker 230},GREEN,FIREBALL,WA,10/4/1998 5:00 +Charleston,,FIREBALL,SC,10/4/1998 21:00 +Charleston,BLUE,FIREBALL,SC,10/4/1998 21:00 +Charleston,RED ORANGE GREEN,FIREBALL,SC,10/4/1998 21:00 +Gold Canyon,,OVAL,AZ,10/4/1998 21:00 +James Island,,FIREBALL,SC,10/4/1998 21:00 +Savannah,,FIREBALL,GA,10/4/1998 21:00 +Charleston,,FLASH,SC,10/4/1998 21:10 +Goat Island,,FIREBALL,SC,10/4/1998 21:15 +Belmont,,CIRCLE,NY,10/4/1998 23:00 +Dana Point,GREEN,FIREBALL,CA,10/5/1998 20:00 +Houston,,FORMATION,TX,10/5/1998 20:55 +Mission Hills,,SPHERE,CA,10/5/1998 21:30 +Newhall,GREEN,SPHERE,CA,10/5/1998 23:29 +Vass,GREEN,CIRCLE,NC,10/6/1998 2:00 +Denver,RED,FIREBALL,CO,10/6/1998 19:05 +Bellevue,,,WA,10/6/1998 20:05 +Cream Ridge,,TRIANGLE,NJ,10/6/1998 20:45 +Miami,YELLOW,LIGHT,FL,10/7/1998 2:30 +Gonzales,,TRIANGLE,LA,10/7/1998 22:05 +Barrington,,DIAMOND,NJ,10/8/1998 19:00 +Fort Collins,,OTHER,CO,10/8/1998 21:00 +Austin,,TRIANGLE,TX,10/8/1998 21:12 +Sonora,RED,LIGHT,CA,10/8/1998 22:33 +Noblesville,,VARIOUS,IN,10/9/1998 16:00 +Pikeville,RED,DISK,NC,10/9/1998 17:50 +Oakland,,FIREBALL,CA,10/9/1998 19:40 +Richmond,,DISK,KY,10/9/1998 22:00 +Hollywood,,VARIOUS,CA,10/10/1998 2:30 +Phoenix,GREEN,FIREBALL,AZ,10/10/1998 3:30 +Elgin,,CYLINDER,IL,10/10/1998 13:15 +Las Vegas,,CIGAR,NV,10/10/1998 17:30 +Las Vegas,,CIRCLE,NV,10/10/1998 17:30 +NYC,,TRIANGLE,NY,10/10/1998 20:30 +Spokane,,TRIANGLE,WA,10/10/1998 20:30 +Mooresville,,LIGHT,NC,10/10/1998 20:50 +Delano,,FIREBALL,TN,10/10/1998 23:50 +Montara,,OTHER,CA,10/11/1998 2:15 +Mount Carmel,,LIGHT,TN,10/11/1998 14:30 +Highland,RED YELLOW GREEN,SPHERE,IN,10/11/1998 20:30 +Highland,RED YELLOW GREEN,SPHERE,IN,10/11/1998 20:30 +Bar Harbor,GREEN,SPHERE,ME,10/11/1998 22:40 +Elk Grove,BLUE,FIREBALL,CA,10/11/1998 22:45 +Miami Twp.,,OTHER,OH,10/12/1998 2:00 +Lincoln,,EGG,NE,10/12/1998 4:00 +Murray,RED,LIGHT,UT,10/12/1998 7:00 +Asheville,RED,FIREBALL,NC,10/12/1998 19:00 +Asheville,,LIGHT,NC,10/12/1998 19:00 +Heron State Park,,VARIOUS,NM,10/13/1998 2:30 +Painesville twp,,OVAL,OH,10/13/1998 6:00 +Otis,,OTHER,OR,10/14/1998 19:55 +Overton,,FIREBALL,NV,10/14/1998 19:55 +Tucson,,OVAL,AZ,10/14/1998 22:00 +Azuza,,TRIANGLE,CA,10/15/1998 0:00 +Red Bank,,FLASH,SC,10/15/1998 1:00 +Round Rock,ORANGE,EGG,TX,10/15/1998 1:30 +Houston,,FIREBALL,TX,10/15/1998 6:35 +Knoxville,,CYLINDER,TN,10/15/1998 14:00 +New Albany,,VARIOUS,IN,10/15/1998 15:30 +Winston-Salem,,SPHERE,NC,10/15/1998 16:01 +Glenwood,,DISK,AR,10/15/1998 18:00 +Warwick,,OTHER,RI,10/15/1998 18:00 +Asheville,,LIGHT,NC,10/15/1998 19:00 +Tyson's Corner,BLUE,FIREBALL,VA,10/15/1998 19:48 +Fort Lawn,ORANGE,LIGHT,SC,10/15/1998 20:00 +Enterprise,,TRIANGLE,AL,10/15/1998 21:00 +Laguna Niguel,ORANGE,,CA,10/15/1998 21:15 +Westlake,,LIGHT,OH,10/15/1998 21:15 +Hinton,,LIGHT,WV,10/15/1998 22:00 +Dublin,,DIAMOND,IN,10/15/1998 22:30 +Port Washington,,TRIANGLE,WI,10/15/1998 22:35 +Dallas,,DISK,TX,10/15/1998 23:00 +Ronan,,DISK,MT,10/16/1998 0:00 +Sacramento,,TRIANGLE,CA,10/16/1998 11:40 +Las Vegas,,CONE,NV,10/16/1998 12:30 +Baker,,VARIOUS,CA,10/16/1998 16:30 +San Francisco,,LIGHT,CA,10/16/1998 19:00 +Breckenridge,RED ORANGE,OTHER,TX,10/16/1998 20:00 +Middletown,,,CT,10/16/1998 20:00 +Salem,,LIGHT,OR,10/16/1998 21:30 +Carbondale,GREEN,SPHERE,IL,10/16/1998 21:55 +Oxnard,GREEN,FLASH,CA,10/17/1998 1:30 +Lake Stevens,,LIGHT,WA,10/17/1998 3:38 +Bridgewater,,OTHER,SD,10/17/1998 11:30 +Apple Valley,,SPHERE,CA,10/17/1998 15:00 +Pensacola Beach,,FIREBALL,FL,10/17/1998 16:00 +Duluth,,OTHER,GA,10/17/1998 19:00 +The Dalles,,SPHERE,OR,10/18/1998 0:01 +Bettendorf,,SPHERE,IA,10/18/1998 4:30 +Jacksonville,,LIGHT,IL,10/18/1998 9:30 +Germantown,,LIGHT,TN,10/18/1998 18:00 +Sandy Valley,,LIGHT,NE,10/18/1998 18:00 +Portland,GREEN,FIREBALL,OR,10/18/1998 23:54 +Vernal,,,UT,10/19/1998 0:34 +Las Vegas,GREEN,SPHERE,NV,10/19/1998 1:30 +Vancouver,GREEN,LIGHT,WA,10/19/1998 12:42 +Big Arm,,DISK,MT,10/19/1998 16:30 +Virginia Beach,,FIREBALL,VA,10/19/1998 18:00 +Defiance,BLUE,TRIANGLE,OH,10/19/1998 21:30 +Deweyville,GREEN,SPHERE,UT,10/19/1998 21:35 +Georgia,RED,TRIANGLE,GA,10/19/1998 21:45 +Tampa,,CIRCLE,FL,10/19/1998 21:45 +Antwerp,,TRIANGLE,OH,10/19/1998 22:30 +Bowling Green,,,KY,10/20/1998 0:00 +Lewiston,,FORMATION,ME,10/20/1998 2:00 +Corunna,,VARIOUS,MI,10/20/1998 11:30 +Spokane,,SPHERE,WA,10/20/1998 17:30 +Moorpark,,OVAL,CA,10/20/1998 18:00 +Avon,,CHEVRON,NC,10/20/1998 20:30 +Huntsville,,TRIANGLE,AL,10/20/1998 22:00 +Campbell,,OTHER,CA,10/21/1998 1:30 +Columbia,ORANGE,FORMATION,TN,10/21/1998 22:42 +Silverlake,,LIGHT,WA,10/22/1998 2:40 +Rupert,,SPHERE,ID,10/22/1998 3:30 +Cincy,,LIGHT,OH,10/22/1998 18:30 +Kenton,,DISK,OH,10/22/1998 18:40 +Newtown Square,,OVAL,PA,10/22/1998 23:40 +Chicago,,TEARDROP,IL,10/23/1998 0:00 +Cave Creek,,LIGHT,AZ,10/23/1998 16:30 +New Berlin,,DISK,WI,10/23/1998 17:00 +Marysville,BLUE,FIREBALL,WA,10/23/1998 18:00 +Seattle,GREEN BLUE,FIREBALL,WA,10/23/1998 18:04 +Vancouver,,OTHER,WA,10/23/1998 18:30 +Humeston,,CIRCLE,IA,10/23/1998 19:00 +Alexandria,,FIREBALL,LA,10/23/1998 21:45 +Westcliff,,CIRCLE,CO,10/24/1998 13:30 +Wilmington,,LIGHT,NC,10/24/1998 17:00 +Wilmington,,SPHERE,NC,10/24/1998 17:00 +Milwaukee,ORANGE,LIGHT,WI,10/24/1998 20:15 +Tacoma,,LIGHT,WA,10/24/1998 22:00 +Delray Beach,,TRIANGLE,FL,10/24/1998 23:15 +Pell City,,SPHERE,AL,10/25/1998 0:00 +Denver,,LIGHT,CO,10/25/1998 16:20 +State College,,DISK,PA,10/25/1998 18:30 +Vallejo,,TRIANGLE,CA,10/25/1998 19:30 +Perrine,,FORMATION,FL,10/25/1998 20:25 +Pocatello,,LIGHT,ID,10/25/1998 21:20 +Spencer,GREEN BLUE,FIREBALL,IA,10/26/1998 0:00 +Vancouver,,FIREBALL,WA,10/26/1998 0:00 +Marina del Rey,,,CA,10/26/1998 0:30 +Kaufman,,LIGHT,TX,10/26/1998 3:23 +Pewaukee,GREEN BLUE,FIREBALL,WI,10/26/1998 4:50 +Cleburne,RED,LIGHT,TX,10/26/1998 7:00 +Redding,,CIRCLE,CA,10/26/1998 17:00 +Redding,,OVAL,CA,10/26/1998 17:00 +,RED,FIREBALL,WA,10/26/1998 17:58 +Corfu,,TRIANGLE,NY,10/26/1998 18:05 +Seattle,,FIREBALL,WA,10/26/1998 18:15 +Tumwater,BLUE,FIREBALL,WA,10/26/1998 18:18 +La Veta,ORANGE,TRIANGLE,CO,10/26/1998 19:23 +Roseville,RED,FIREBALL,CA,10/26/1998 21:50 +Scottsdale,,OTHER,AZ,10/26/1998 23:14 +Newport,,CIRCLE,TN,10/27/1998 3:32 +Pageland,,LIGHT,SC,10/28/1998 1:00 +Spokane,,FIREBALL,WA,10/28/1998 1:38 +Polson,,DISK,MT,10/28/1998 3:00 +Detroit,,CIRCLE,MI,10/28/1998 10:30 +Louisville,,FORMATION,KY,10/28/1998 20:00 +observer enroute on MN hwy 61 north,GREEN,SPHERE,MN,10/28/1998 20:35 +Big Rapids,,FIREBALL,MI,10/28/1998 21:30 +Amarillo,YELLOW,CHEVRON,TX,10/28/1998 22:00 +Sherwood,,OTHER,AR,10/28/1998 23:10 +Chicago,RED BLUE,OVAL,IL,10/28/1998 23:50 +Danialson,BLUE,OTHER,CT,10/29/1998 0:01 +Lihue,GREEN,OTHER,HI,10/29/1998 3:00 +Grand Rapids,GREEN,FIREBALL,MI,10/29/1998 3:30 +Dublin,,CIRCLE,CA,10/29/1998 6:30 +Missoula,,LIGHT,MT,10/29/1998 7:00 +Yuba City,GREEN BLUE,FIREBALL,CA,10/29/1998 9:35 +Los Alamos,,,NM,10/29/1998 18:45 +Nashville,,OTHER,TN,10/29/1998 19:00 +Lahaina,,SPHERE,HI,10/29/1998 19:45 +Caldwell,,LIGHT,ID,10/29/1998 20:30 +Kirtland,,CHEVRON,OH,10/30/1998 20:00 +Anchorage,,CIRCLE,AK,10/31/1998 10:00 +Interstate 80,,LIGHT,OH,10/31/1998 19:00 +Missoula,,VARIOUS,MT,10/31/1998 19:00 +Kalamazoo,BLUE,FIREBALL,MI,11/1/1998 0:00 +Big Rapids,GREEN,FIREBALL,MI,11/1/1998 1:30 +Joelton,,OTHER,TN,11/1/1998 1:30 +Anderson,,CYLINDER,IN,11/1/1998 10:00 +Fort Hood,,CIRCLE,TX,11/1/1998 13:00 +Fort Worth,,LIGHT,TX,11/1/1998 15:00 +Phoenix,,CROSS,AZ,11/1/1998 16:30 +Great Cacapon,,TRIANGLE,WV,11/1/1998 17:00 +Skippers,,TRIANGLE,VA,11/1/1998 20:30 +Bailey,BLUE,FIREBALL,CO,11/1/1998 22:00 +West Bend,,LIGHT,WI,11/1/1998 23:59 +Grand Rapids,,FIREBALL,MI,11/2/1998 3:45 +Dallas,,FIREBALL,TX,11/2/1998 23:20 +Baton Rouge,ORANGE GREEN,FIREBALL,LA,11/3/1998 5:00 +Aurora,,,CO,11/3/1998 14:30 +Ogunquit,,SPHERE,ME,11/3/1998 20:13 +Mesa,ORANGE YELLOW,FIREBALL,AZ,11/3/1998 21:00 +Belmont,YELLOW GREEN,LIGHT,CA,11/3/1998 21:58 +Albuquerque,,OVAL,NM,11/4/1998 15:30 +Plymouth,GREEN,FIREBALL,MN,11/4/1998 20:30 +Novato,GREEN,FIREBALL,CA,11/4/1998 22:32 +Punta Gorda,,TRIANGLE,FL,11/5/1998 2:00 +Van Nuys,GREEN,SPHERE,CA,11/5/1998 18:12 +Burbank,,FIREBALL,CA,11/5/1998 18:15 +Burien,BLUE,FLASH,WA,11/5/1998 23:24 +Bothell,,OVAL,WA,11/6/1998 7:00 +Bothell,,CYLINDER,WA,11/6/1998 7:10 +Bend,,FORMATION,OR,11/6/1998 17:55 +Monroe,,CYLINDER,WA,11/6/1998 18:30 +Kingman,,FIREBALL,AZ,11/6/1998 21:15 +Barstow,,FIREBALL,CA,11/6/1998 22:00 +Chandler,GREEN,FIREBALL,AZ,11/7/1998 0:33 +Wanaque,,FIREBALL,NJ,11/7/1998 2:30 +Fullerton,,VARIOUS,CA,11/7/1998 17:30 +Cleveland,GREEN,LIGHT,GA,11/7/1998 20:44 +Sweetwater,,VARIOUS,TX,11/7/1998 21:30 +Isle of Palms,ORANGE,CONE,SC,11/7/1998 21:50 +Salt Lake City,BLUE,FIREBALL,UT,11/8/1998 13:07 +Los Angeles,,FIREBALL,CA,11/8/1998 22:30 +Peabody,,FIREBALL,MA,11/9/1998 1:00 +Pacifica,GREEN,LIGHT,CA,11/9/1998 20:00 +Arlington,,OTHER,TX,11/9/1998 22:00 +Roseville,,LIGHT,CA,11/9/1998 23:35 +Chicago,GREEN,SPHERE,IL,11/10/1998 0:00 +Maryland Height,,SPHERE,MO,11/10/1998 2:38 +Norman,,SPHERE,OK,11/10/1998 10:05 +Rancho Cucamonga,,DISK,CA,11/10/1998 11:38 +Overland Park,,DISK,KS,11/10/1998 18:30 +Federal Way,,EGG,WA,11/10/1998 18:48 +Fresno,,LIGHT,CA,11/10/1998 18:48 +DuBois,,FIREBALL,PA,11/10/1998 21:05 +Dayton,,FIREBALL,OH,11/11/1998 15:00 +Akron,ORANGE,FIREBALL,OH,11/11/1998 19:45 +Wheatridge,,TRIANGLE,CO,11/11/1998 20:23 +Bowling Green,,CIRCLE,KY,11/11/1998 21:45 +Oxford,,TRIANGLE,MS,11/11/1998 21:45 +Louisville,,CIRCLE,KY,11/12/1998 0:00 +Bend,,DISK,OR,11/12/1998 2:00 +Casper,,TRIANGLE,WY,11/12/1998 2:25 +John Day,ORANGE,FIREBALL,OR,11/12/1998 18:30 +Blaine,GREEN,FLASH,WA,11/12/1998 19:30 +Towanda,BLUE,TRIANGLE,PA,11/12/1998 21:00 +Waverly,GREEN,FIREBALL,NE,11/12/1998 21:00 +Lakewood,,TRIANGLE,CO,11/12/1998 21:30 +Lawton,,OTHER,OK,11/12/1998 22:40 +Maybrook,,,NY,11/13/1998 1:30 +Marion,,CYLINDER,IA,11/14/1998 13:30 +Denver,,LIGHT,CO,11/14/1998 17:24 +Mesa,BLUE,FLASH,AZ,11/14/1998 19:00 +Mattawa,,DISK,WA,11/14/1998 19:30 +Fenn,,FIREBALL,ID,11/14/1998 21:15 +Livonia,GREEN,FIREBALL,MI,11/14/1998 21:20 +Richland Center,,OTHER,WI,11/15/1998 0:00 +San Diego,GREEN,FIREBALL,CA,11/15/1998 0:15 +Windsor,,LIGHT,VA,11/15/1998 1:30 +I-35,,DISK,TX,11/15/1998 18:49 +Edison,,DISK,NJ,11/15/1998 20:00 +Madison,GREEN,LIGHT,WI,11/15/1998 20:00 +Wheat Ridge,,DIAMOND,CO,11/15/1998 20:30 +Cranston,,LIGHT,RI,11/15/1998 21:00 +Justice,,LIGHT,IL,11/15/1998 21:00 +Atlanta,,,GA,11/15/1998 22:00 +Camp Lejeune,,TRIANGLE,NC,11/15/1998 22:00 +Ellensburg,,FIREBALL,WA,11/15/1998 23:00 +Austin,,TRIANGLE,TX,11/16/1998 2:30 +Kirksville,RED,OTHER,MO,11/16/1998 2:30 +Las Vegas,GREEN,,NV,11/16/1998 4:45 +Belgrade,,CIRCLE,MO,11/16/1998 5:00 +Drumright,,FIREBALL,OK,11/16/1998 5:11 +Austin,,FIREBALL,TX,11/16/1998 6:40 +Darien,,OTHER,WI,11/16/1998 18:00 +Baraboo,,TRIANGLE,WI,11/16/1998 21:00 +Pittsburgh,,OTHER,PA,11/16/1998 21:00 +Las Vegas,,FIREBALL,NV,11/16/1998 21:30 +Greeley,,TRIANGLE,CO,11/16/1998 22:11 +Auburn,ORANGE,LIGHT,WA,11/16/1998 22:40 +Austin,,,TX,11/16/1998 23:00 +Kansas City,ORANGE,OTHER,KS,11/16/1998 23:41 +Alva,,TRIANGLE,OK,11/17/1998 1:30 +Joshua Tree National Park,,SPHERE,CA,11/17/1998 1:30 +Manitowoc Rapids,,FIREBALL,WI,11/17/1998 2:00 +Joshua Tree National Park,,LIGHT,CA,11/17/1998 4:00 +South Lake Tahoe,,DISK,CA,11/17/1998 4:30 +Tampa,,TRIANGLE,FL,11/17/1998 4:30 +Sacramento,,CIRCLE,CA,11/17/1998 4:35 +Davenport,,TRIANGLE,IA,11/17/1998 5:00 +Gila Bend,,FLASH,AZ,11/17/1998 5:50 +Port Charlotte,,FIREBALL,FL,11/17/1998 17:35 +Chico,,TRIANGLE,CA,11/17/1998 18:30 +Los Banos,,LIGHT,CA,11/17/1998 19:00 +Sherwood,,TRIANGLE,AR,11/17/1998 19:25 +Little Rock,,CIRCLE,AR,11/17/1998 19:50 +Cleveland,,EGG,OH,11/17/1998 21:00 +Knoxville,,FORMATION,TN,11/17/1998 21:03 +Goodyear,YELLOW,LIGHT,AZ,11/17/1998 21:30 +Port Orange,,TRIANGLE,FL,11/17/1998 21:30 +Morristown,RED GREEN BLUE,VARIOUS,TN,11/17/1998 23:30 +Tavares,,OTHER,FL,11/17/1998 23:55 +Gainesville,,TRIANGLE,FL,11/18/1998 0:00 +New Kent,,TRIANGLE,VA,11/18/1998 1:40 +North Little Rock,,TRIANGLE,AR,11/18/1998 1:55 +Kodiak,,LIGHT,AK,11/18/1998 18:00 +Dunns Mills,,DISK,NJ,11/18/1998 21:15 +New York City,,CIRCLE,NY,11/19/1998 3:00 +Montverde,,OVAL,FL,11/19/1998 7:00 +Auburn,,SPHERE,CA,11/19/1998 15:45 +Phoenix,ORANGE,LIGHT,AZ,11/19/1998 21:00 +Surprise,,FORMATION,AZ,11/19/1998 21:30 +Phoenix,YELLOW,LIGHT,AZ,11/19/1998 22:15 +Brentwood,ORANGE GREEN,FIREBALL,CA,11/20/1998 1:30 +Spokane,,TRIANGLE,WA,11/20/1998 3:30 +Irvine,,OVAL,CA,11/20/1998 11:45 +Moline,GREEN,FIREBALL,IL,11/20/1998 19:30 +Aurora,,TRIANGLE,CO,11/20/1998 20:00 +Seattle,RED GREEN BLUE,FLASH,WA,11/20/1998 22:25 +Hampton,,TRIANGLE,TN,11/20/1998 22:30 +Harrison,,SPHERE,MI,11/21/1998 15:00 +Helena,,CIRCLE,AR,11/21/1998 20:45 +Avon,ORANGE,LIGHT,NC,11/21/1998 22:00 +Boise,,DISK,ID,11/22/1998 18:30 +West Palm Beach,,OTHER,FL,11/22/1998 19:00 +Cheney,,SPHERE,WA,11/22/1998 19:32 +Vashon Island,,OTHER,WA,11/22/1998 20:00 +Coon Rapids,,OVAL,MN,11/23/1998 18:05 +Sycamore,,TRIANGLE,IL,11/23/1998 19:00 +Hartford,,CIRCLE,CT,11/23/1998 20:08 +Battle Ground,,LIGHT,WA,11/23/1998 20:30 +Carbondale,,VARIOUS,IL,11/23/1998 22:30 +Tulsa,RED BLUE,,OK,11/23/1998 22:45 +Sandpoint,,LIGHT,ID,11/24/1998 1:30 +Alton Bay,,LIGHT,NH,11/24/1998 5:00 +Calhoun,,,GA,11/24/1998 5:05 +Valdosta,RED,CIRCLE,GA,11/24/1998 18:25 +Kenton,,FORMATION,OH,11/24/1998 19:15 +Kenton,,FORMATION,OH,11/24/1998 19:30 +Ashland,,TRIANGLE,OH,11/24/1998 21:00 +Mechanicsburg,RED,LIGHT,PA,11/24/1998 22:30 +Bitterroot Valley,,LIGHT,MT,11/24/1998 23:15 +Louisville,,SPHERE,KY,11/25/1998 17:30 +Copperas Cove,,TRIANGLE,TX,11/25/1998 18:55 +Tigard,RED,FIREBALL,OR,11/25/1998 20:05 +Lee's Summit,,OTHER,MO,11/25/1998 21:15 +Gulf Shores,,FLASH,AL,11/25/1998 21:24 +Springtown,,LIGHT,PA,11/25/1998 21:30 +Lowell,,CIRCLE,MA,11/26/1998 10:00 +McKinney,,CYLINDER,TX,11/26/1998 14:00 +Hoffman Estates,,,IL,11/26/1998 20:30 +Fall River,,LIGHT,KS,11/26/1998 22:00 +San Diego,,OVAL,CA,11/26/1998 22:30 +Manistee,GREEN,FIREBALL,MI,11/27/1998 5:00 +Charleston,,FIREBALL,WV,11/27/1998 15:35 +Southbury,,TRIANGLE,CT,11/27/1998 18:30 +Windsor,,SPHERE,CA,11/27/1998 20:15 +Columbia,,FIREBALL,TN,11/27/1998 20:30 +Springfield,GREEN,LIGHT,MO,11/27/1998 20:30 +Standale,,TRIANGLE,MI,11/27/1998 20:45 +Katy,,FIREBALL,TX,11/27/1998 21:30 +Salt Lake City,,TRIANGLE,UT,11/28/1998 16:30 +Long Beach,,TRIANGLE,CA,11/28/1998 16:45 +Dunkirk,,OTHER,MD,11/28/1998 17:30 +Barto,RED,FIREBALL,PA,11/28/1998 20:42 +Douglasville,,CIRCLE,GA,11/28/1998 21:00 +Hampstead,RED ORANGE YELLOW,FIREBALL,NC,11/29/1998 1:50 +Palm Desert,,FIREBALL,CA,11/29/1998 19:10 +West Memphis,,TRIANGLE,AR,11/29/1998 19:55 +Rockford,,TRIANGLE,IL,11/30/1998 1:00 +Huachuca City,,CIRCLE,AZ,11/30/1998 5:32 +Latrobe,,LIGHT,CA,11/30/1998 20:00 +Phoenix,,LIGHT,AZ,11/30/1998 21:45 +Houston,GREEN,FIREBALL,TX,12/1/1998 4:30 +Lehigh Acres,,FLASH,FL,12/1/1998 6:09 +Traverse City,,FIREBALL,MI,12/1/1998 6:30 +Glenhaven,,CROSS,CA,12/1/1998 7:10 +Culpeper,,OVAL,VA,12/1/1998 17:50 +Westfield,YELLOW,FIREBALL,IN,12/1/1998 18:00 +Fort Wayne,,OTHER,IN,12/1/1998 21:20 +Miami,,LIGHT,FL,12/1/1998 23:15 +Columbus,,DISK,OH,12/2/1998 17:00 +San Saba County,,FORMATION,TX,12/3/1998 18:00 +Albany,,OVAL,NY,12/3/1998 18:15 +Albany,,LIGHT,NY,12/3/1998 18:30 +Kirkland,,TRIANGLE,WA,12/3/1998 23:30 +Kirkland,,TRIANGLE,WA,12/3/1998 23:30 +Stanford,,LIGHT,CA,12/4/1998 22:25 +Atlanta,,FIREBALL,GA,12/5/1998 3:00 +Marina del Rey,,,CA,12/5/1998 17:02 +Glendale,,OTHER,AZ,12/5/1998 18:15 +Las Vegas,,,NV,12/5/1998 20:30 +Pahrump,GREEN,CIRCLE,NV,12/5/1998 21:21 +Columbus,,FIREBALL,TX,12/6/1998 0:30 +Washington C.H.,GREEN,FIREBALL,OH,12/6/1998 7:30 +Rome,RED BLUE,FIREBALL,GA,12/6/1998 8:30 +Las Vegas,,TRIANGLE,NV,12/6/1998 18:25 +Phoenix,,CYLINDER,AZ,12/6/1998 18:45 +Santa Rosa,RED,LIGHT,CA,12/6/1998 19:40 +Culpeper County,,CIRCLE,VA,12/6/1998 20:30 +Philipsburg,GREEN,DISK,PA,12/6/1998 21:30 +Orange,ORANGE GREEN,FIREBALL,CA,12/6/1998 23:58 +Plano,GREEN,CIRCLE,TX,12/7/1998 0:00 +Medina,,FIREBALL,OH,12/7/1998 4:30 +Soddy Daisy,,SPHERE,TN,12/7/1998 10:00 +Anchorage,,LIGHT,AK,12/7/1998 18:00 +Soddy Daisy,,SPHERE,TN,12/7/1998 22:15 +Fort Smith,,TRIANGLE,AR,12/8/1998 6:30 +De Leon,,LIGHT,TX,12/8/1998 18:30 +Vilonia,,CIRCLE,AR,12/8/1998 20:00 +Lake Fork,ORANGE,LIGHT,TX,12/8/1998 20:05 +Belton,ORANGE,FIREBALL,MO,12/8/1998 23:02 +Kalamazoo,,LIGHT,MI,12/9/1998 0:00 +Alamosa,,OVAL,CO,12/9/1998 1:30 +Jerseyville,,LIGHT,IL,12/9/1998 6:25 +Eureka,,TEARDROP,CA,12/9/1998 7:15 +Phoenix,,CIRCLE,AZ,12/9/1998 8:05 +Chagrin Falls,,LIGHT,OH,12/9/1998 20:43 +I-81,,TRIANGLE,TN,12/10/1998 1:00 +Camp Pendelton,,SPHERE,CA,12/10/1998 1:15 +Fort Mill,ORANGE,DISK,NC,12/10/1998 3:05 +Manchester,,FIREBALL,NY,12/10/1998 3:19 +Lincolnshire,,FIREBALL,IL,12/10/1998 4:55 +Santa Rosa,,LIGHT,CA,12/10/1998 18:27 +Hesston,RED,TRIANGLE,KS,12/10/1998 19:50 +Plymouth,,DIAMOND,MA,12/10/1998 21:11 +Colorado Springs,,DISK,CO,12/11/1998 16:45 +Culver City,,LIGHT,CA,12/11/1998 19:00 +Pensacola,RED,FIREBALL,FL,12/11/1998 19:50 +New Boston,RED BLUE,LIGHT,NH,12/11/1998 22:30 +Bangor,,LIGHT,ME,12/12/1998 2:30 +Atlanta,,FIREBALL,TX,12/12/1998 18:45 +Bradenton,,LIGHT,FL,12/12/1998 23:30 +Lafayette,,OTHER,CO,12/13/1998 2:00 +Clayton,GREEN BLUE,OVAL,MO,12/13/1998 5:00 +St. Peters,,LIGHT,MO,12/13/1998 6:45 +Fall River,GREEN,LIGHT,MA,12/13/1998 12:30 +Denver,,FORMATION,CO,12/13/1998 14:00 +Hauser,,LIGHT,OR,12/13/1998 19:00 +Massachusetts,BLUE,FIREBALL,MA,12/13/1998 20:00 +Fort Smith,,LIGHT,AR,12/13/1998 20:45 +Baton Rouge,BLUE,LIGHT,LA,12/13/1998 23:00 +Indianapolis,GREEN,FIREBALL,IN,12/13/1998 23:10 +Leavenworth,BLUE,FIREBALL,KS,12/13/1998 23:10 +Sikeston,,SPHERE,MO,12/13/1998 23:20 +Sikeston,,SPHERE,MO,12/13/1998 23:20 +Cottontown,,OTHER,TN,12/13/1998 23:25 +Wharton,,LIGHT,TX,12/14/1998 0:00 +Mukilteo,,FORMATION,WA,12/14/1998 0:50 +Spokane,GREEN,FIREBALL,WA,12/14/1998 4:00 +Redding,,FIREBALL,CA,12/14/1998 4:10 +Bloomington,,FORMATION,IL,12/14/1998 5:50 +Redmond,RED,DISK,WA,12/14/1998 15:25 +St. Charles,GREEN,FIREBALL,MO,12/14/1998 20:15 +Littleton,,DISK,MA,12/14/1998 21:05 +Waterford,,RECTANGLE,WI,12/15/1998 0:00 +Baltimore,,DISK,MD,12/15/1998 0:30 +Petaluma,,CIRCLE,CA,12/15/1998 3:30 +Atlanta,,EGG,GA,12/15/1998 7:10 +Atlanta,,SPHERE,GA,12/15/1998 9:07 +Arab,ORANGE,SPHERE,AL,12/15/1998 9:25 +Rocky Point,,SPHERE,NC,12/15/1998 10:00 +Cincinnati,,EGG,OH,12/15/1998 15:15 +Carmel,,FIREBALL,IN,12/15/1998 17:00 +Saratoga Springs,,SPHERE,NY,12/15/1998 17:00 +Oroville,,LIGHT,CA,12/15/1998 17:10 +Saratoga Lake,,VARIOUS,NY,12/15/1998 17:40 +Easton,RED,CIGAR,PA,12/15/1998 19:30 +Fairbanks,,FORMATION,AK,12/15/1998 20:00 +Bethlehem,,TRIANGLE,PA,12/15/1998 21:00 +Albuquerque,,CROSS,NM,12/15/1998 22:00 +Middletown,,CIRCLE,OH,12/15/1998 22:00 +Millington,,CIRCLE,TN,12/15/1998 22:00 +Hinton,,LIGHT,WV,12/15/1998 22:30 +Grand Prairie,,DISK,TX,12/15/1998 23:00 +Fort Myers,,LIGHT,FL,12/15/1998 23:30 +Orlando,RED,,FL,12/15/1998 23:30 +Lubbock,,CHEVRON,TX,12/16/1998 19:40 +Conroe,,LIGHT,TX,12/16/1998 20:53 +Demotte,,TEARDROP,IN,12/16/1998 21:38 +Bakersfield,,FIREBALL,CA,12/16/1998 23:18 +Long Key,,FIREBALL,FL,12/16/1998 23:30 +Plantation Key,,,FL,12/16/1998 23:33 +Port Charlotte,,DISK,FL,12/16/1998 23:33 +La Habra,,FIREBALL,CA,12/17/1998 2:15 +Decatur,,VARIOUS,AL,12/17/1998 7:10 +Escondido,,OVAL,CA,12/17/1998 9:00 +Bossier City,BLUE,CIRCLE,LA,12/17/1998 14:12 +West Plains,ORANGE,,MO,12/17/1998 19:00 +Severn,GREEN,FIREBALL,MD,12/17/1998 20:38 +Seattle,,LIGHT,WA,12/17/1998 22:00 +Ironton,,,OH,12/18/1998 0:25 +Port Angeles,RED,DIAMOND,WA,12/18/1998 6:30 +Utica,,LIGHT,NY,12/18/1998 19:27 +Mechanicsburg,,,PA,12/18/1998 21:00 +Boca Grande,,DISK,FL,12/18/1998 22:00 +West Richland,,,WA,12/18/1998 22:00 +Magnolia,,LIGHT,TX,12/19/1998 0:57 +Kansas,,LIGHT,KS,12/19/1998 3:30 +Phoenix,GREEN,FIREBALL,AZ,12/19/1998 3:57 +Fleetwood,RED,LIGHT,PA,12/19/1998 18:20 +Riddle,,LIGHT,OR,12/19/1998 20:00 +Quartsite,,OVAL,AZ,12/19/1998 21:00 +Kansas,,,KS,12/20/1998 2:30 +Charleston,,SPHERE,SC,12/20/1998 19:30 +West Palm Beach,,TRIANGLE,FL,12/20/1998 20:30 +Myrtle Beach,,DISK,SC,12/21/1998 2:10 +Mansfield,,SPHERE,OH,12/21/1998 6:30 +Rupert,,DISK,ID,12/21/1998 18:30 +Denver,,OVAL,CO,12/22/1998 7:25 +East Bethel,,,MN,12/22/1998 12:00 +Phoenix,,SPHERE,AZ,12/22/1998 18:30 +Indianapolis,GREEN,CIRCLE,IN,12/22/1998 20:05 +Rome,,VARIOUS,GA,12/22/1998 21:00 +Missouri City,,FORMATION,TX,12/22/1998 23:30 +Grand Canyon,,OTHER,AZ,12/23/1998 17:20 +Miami,RED,CIRCLE,FL,12/23/1998 22:00 +Manitowoc,,CHEVRON,WI,12/23/1998 22:35 +Bartlett,RED,CIGAR,IL,12/24/1998 6:24 +Fairfax,,,VA,12/24/1998 19:00 +Hathaway,,CYLINDER,LA,12/24/1998 21:00 +Kansas City,,CHEVRON,MO,12/25/1998 13:30 +Fountain Hills,,SPHERE,AZ,12/25/1998 14:00 +Salt Lake City,,CIRCLE,UT,12/25/1998 19:04 +Jamestown,RED,LIGHT,PA,12/25/1998 22:50 +Eagle River,,OVAL,AK,12/26/1998 12:30 +Modesto,,RECTANGLE,CA,12/26/1998 23:00 +Stratham,BLUE,RECTANGLE,NH,12/27/1998 1:00 +Struthers,,SPHERE,OH,12/27/1998 10:30 +Hodgkins,,LIGHT,IL,12/27/1998 22:30 +Weatherford,,LIGHT,TX,12/28/1998 5:45 +Winter Park,GREEN,FIREBALL,FL,12/28/1998 19:45 +Hilton Head,,LIGHT,SC,12/28/1998 21:30 +Kure Beach,,CONE,NC,12/28/1998 22:35 +Silver Springs,ORANGE,SPHERE,NY,12/28/1998 23:50 +Primm,YELLOW,LIGHT,NV,12/29/1998 0:16 +Cape May Court House,,SPHERE,NJ,12/30/1998 2:00 +Spokane,,FIREBALL,WA,12/30/1998 17:58 +Cherry Hill,,LIGHT,NJ,12/31/1998 19:30 +Las Vegas,,DISK,NV,12/31/1998 21:31 +Jonesboro,,VARIOUS,LA,12/31/1998 23:00 +Burnt Hills,ORANGE,LIGHT,NY,12/31/1998 23:30 +Appleton,,TEARDROP,WI,12/31/1998 23:59 +Loma Rica,,LIGHT,CA,1/1/1999 2:30 +Bauxite,,,AR,1/1/1999 3:00 +Florence,,CYLINDER,SC,1/1/1999 14:00 +Lake Henshaw,,CIGAR,CA,1/1/1999 15:00 +Wilmington Island,,LIGHT,GA,1/1/1999 17:15 +DeWitt,,LIGHT,AR,1/1/1999 18:00 +Bainbridge Island,,,WA,1/1/1999 19:12 +Camano Island,,FIREBALL,WA,1/1/1999 19:30 +Cheaha Mountain,,TRIANGLE,AL,1/1/1999 21:00 +Coyoty Canyon,,DISK,NM,1/1/1999 21:00 +Rancho Cordova,,,CA,1/1/1999 23:59 +Seattle,GREEN,LIGHT,WA,1/2/1999 17:42 +Vancouver,GREEN,FIREBALL,WA,1/2/1999 18:30 +Spirit Lake,RED GREEN,LIGHT,ID,1/2/1999 20:00 +Jacksonville,RED BLUE,OTHER,FL,1/2/1999 20:30 +Marysville,RED GREEN,SPHERE,CA,1/2/1999 22:12 +Bellevue,,LIGHT,WA,1/3/1999 8:45 +Blithe,,OTHER,CA,1/3/1999 16:31 +Brigham City,,,UT,1/3/1999 17:00 +Longview,,CIRCLE,TX,1/4/1999 20:00 +Redding,RED GREEN,TRIANGLE,CA,1/4/1999 20:24 +Stillwater,,VARIOUS,NY,1/4/1999 21:50 +Portland,,OVAL,OR,1/5/1999 2:00 +Seattle,GREEN,FIREBALL,WA,1/5/1999 5:31 +Seattle,,TEARDROP,WA,1/5/1999 5:36 +Bremerton,,CIRCLE,WA,1/5/1999 5:38 +Estes Park,,CIRCLE,CO,1/5/1999 14:00 +Alamogordo,,DISK,NM,1/5/1999 20:00 +Lakeside,,FLASH,CA,1/6/1999 21:30 +Dallas,,FIREBALL,TX,1/6/1999 21:50 +North Dallas,,CIRCLE,TX,1/6/1999 22:00 +Charlotte,,TRIANGLE,NC,1/7/1999 14:10 +Chatsworth,GREEN,LIGHT,CA,1/7/1999 18:20 +Williamsport,,OTHER,PA,1/7/1999 20:45 +Tallahassee,,DIAMOND,FL,1/7/1999 23:00 +Tallahassee,RED,DIAMOND,FL,1/7/1999 23:00 +Portland,ORANGE,SPHERE,OR,1/8/1999 18:00 +Corvallis,,,OR,1/8/1999 19:00 +Paradiseand,,DIAMOND,CA,1/8/1999 19:25 +Chico,,,CA,1/8/1999 19:30 +Redding,,,CA,1/8/1999 19:30 +Madera,,,CA,1/8/1999 20:30 +Copper Center,,FLASH,AK,1/8/1999 22:45 +Palmer,,FLASH,AK,1/8/1999 22:45 +Wasilla,,FLASH,AK,1/8/1999 22:45 +Carmel,,LIGHT,LA,1/8/1999 23:30 +Spring Branch,GREEN,FIREBALL,TX,1/9/1999 1:30 +St. Louis,,LIGHT,MO,1/9/1999 17:45 +Longboat Key,,LIGHT,FL,1/9/1999 21:00 +Paradise,,,CA,1/10/1999 3:00 +Los Angeles,,FIREBALL,CA,1/10/1999 8:30 +Dallas,,LIGHT,TX,1/10/1999 17:45 +Cornwall Bridge,GREEN,DISK,CT,1/10/1999 19:00 +Newark,,FIREBALL,DE,1/10/1999 19:00 +Tyson's Corner,GREEN,CIRCLE,VA,1/10/1999 19:04 +Corpus Christi,,FIREBALL,TX,1/10/1999 20:30 +Gilbert,GREEN,CIRCLE,MN,1/11/1999 2:45 +San Ramon,,FIREBALL,CA,1/11/1999 5:47 +Lebanon,,CYLINDER,OR,1/11/1999 9:30 +Danville,,FIREBALL,CA,1/11/1999 17:47 +Rohnert Park,,SPHERE,CA,1/11/1999 18:00 +Washington County,,EGG,MO,1/11/1999 20:00 +Dallas,,CIRCLE,TX,1/12/1999 0:00 +Hastings,,DIAMOND,PA,1/12/1999 3:00 +Eureka,RED ORANGE BLUE,TRIANGLE,CA,1/12/1999 8:32 +Rio Rancho,,CIRCLE,NM,1/13/1999 7:15 +Port St. Lucie,,OVAL,FL,1/13/1999 20:50 +Edwardsville,,OTHER,IL,1/13/1999 22:45 +Morgan,,LIGHT,AR,1/13/1999 23:45 +Lake Wales,YELLOW,FIREBALL,FL,1/14/1999 19:00 +Langley,,FORMATION,WA,1/14/1999 19:00 +Seattle,,OVAL,WA,1/14/1999 21:50 +Lake Stevens,,FIREBALL,WA,1/14/1999 22:20 +Montgomery,,SPHERE,AL,1/15/1999 13:00 +Beaumont,RED,,TX,1/15/1999 16:00 +Owings Mills,,OTHER,MD,1/15/1999 17:30 +Plymouth,,TRIANGLE,MA,1/15/1999 17:30 +Canon City,RED,FORMATION,CO,1/15/1999 17:40 +Canon City,,LIGHT,CO,1/15/1999 17:40 +Contocook,,,NH,1/15/1999 20:00 +Dunkirk,,OTHER,MD,1/15/1999 20:43 +Lancaster,,LIGHT,CA,1/15/1999 21:00 +Stevens Pass,,TRIANGLE,WA,1/15/1999 21:30 +Lanoka Harbor,RED,DIAMOND,NJ,1/15/1999 22:01 +Olean,,FIREBALL,NY,1/15/1999 22:30 +Deptford,,CIGAR,NJ,1/16/1999 1:15 +Wrightsville,,DISK,GA,1/16/1999 4:45 +Mentor on the Lake,,SPHERE,OH,1/16/1999 16:00 +Clermont,,DISK,GA,1/16/1999 19:00 +Parkton,RED BLUE,DISK,MD,1/17/1999 22:47 +Brookhaven,,FIREBALL,MS,1/17/1999 23:00 +Olympia,BLUE,,WA,1/18/1999 0:30 +Arlington,,FIREBALL,TX,1/18/1999 1:15 +San Marcos,,LIGHT,CA,1/18/1999 2:00 +Baltimore,,LIGHT,MD,1/18/1999 17:00 +San Francisco,,,CA,1/18/1999 18:15 +Los Angeles,,LIGHT,CA,1/18/1999 18:20 +Timberline Lodge,,LIGHT,OR,1/18/1999 19:38 +Carlinville,,CIGAR,IL,1/19/1999 19:00 +Provo,GREEN,SPHERE,UT,1/19/1999 19:05 +Marshfield,,LIGHT,MO,1/20/1999 17:30 +Butte,,DIAMOND,MT,1/20/1999 19:30 +Olney,,CHEVRON,IL,1/20/1999 20:30 +Granada Hills,,OTHER,CA,1/20/1999 20:35 +Silverdale,,LIGHT,WA,1/22/1999 7:03 +Chicago,,DISK,IL,1/23/1999 4:00 +Ocala,,TRIANGLE,FL,1/23/1999 7:00 +Sherburne,,OVAL,NY,1/23/1999 20:00 +Richmond,,CHEVRON,VA,1/23/1999 21:00 +Oakland,,CYLINDER,CA,1/23/1999 21:30 +Portland,,OVAL,OR,1/24/1999 20:00 +San Francisco,RED,SPHERE,CA,1/25/1999 1:15 +Alabaster,,FIREBALL,AL,1/25/1999 17:40 +West Elkton,,LIGHT,OH,1/25/1999 20:22 +Humble,GREEN,FORMATION,TX,1/26/1999 20:00 +La Veta,,OTHER,CO,1/26/1999 20:15 +Mobile,YELLOW,LIGHT,AL,1/27/1999 18:04 +Scottsdale,,TRIANGLE,AZ,1/28/1999 6:30 +McAlester,,OTHER,OK,1/28/1999 21:15 +Maricopa,,DISK,CA,1/29/1999 7:20 +Germantown,,DISK,MD,1/29/1999 18:40 +Wilmington Island,,DIAMOND,GA,1/29/1999 19:45 +Palm Springs,,SPHERE,CA,1/30/1999 5:25 +Red Bluff,,FORMATION,CA,1/30/1999 23:30 +Riverton,,FIREBALL,WY,1/31/1999 19:30 +Lake Charles,,TRIANGLE,LA,1/31/1999 22:02 +Flagstaff,,CHEVRON,AZ,2/1/1999 0:00 +Lutz,GREEN,FLASH,FL,2/1/1999 18:00 +Molalla,,DISK,OR,2/1/1999 18:00 +Ocala,,TRIANGLE,FL,2/1/1999 21:30 +Arvada,RED GREEN,FLASH,CO,2/1/1999 22:05 +Arlington,,FIREBALL,TX,2/2/1999 1:15 +Mt. Horeb,,OTHER,WI,2/2/1999 2:00 +Bonner Springs,GREEN,FIREBALL,KS,2/2/1999 4:20 +Mountain View,,LIGHT,CA,2/2/1999 6:00 +Hesperia,,OTHER,CA,2/2/1999 6:05 +South Pasadena,RED,LIGHT,CA,2/2/1999 6:35 +Rancho Cucamonga,,FIREBALL,CA,2/2/1999 6:39 +San Miguel,BLUE,FIREBALL,CA,2/2/1999 6:40 +Redding,GREEN,OTHER,CA,2/2/1999 6:43 +St. George,GREEN,LIGHT,UT,2/2/1999 7:42 +New York City,,OTHER,NY,2/2/1999 10:00 +Sierra Vista,,,AZ,2/2/1999 17:20 +Chula Vista,,LIGHT,CA,2/2/1999 20:45 +Charlotte,GREEN,FIREBALL,NC,2/2/1999 21:30 +Grenada,GREEN,FIREBALL,MS,2/3/1999 4:00 +Orangeville,,LIGHT,IL,2/3/1999 17:00 +Franklin,,OVAL,MA,2/3/1999 17:35 +Van Nuys,,CIRCLE,CA,2/3/1999 18:30 +Conway,,TRIANGLE,AR,2/3/1999 22:48 +Prescott Valley,YELLOW,CIRCLE,AZ,2/4/1999 21:30 +Sonoma County,,CIRCLE,CA,2/4/1999 21:30 +St. Louis,RED BLUE,,MO,2/4/1999 22:13 +Henderson,,TEARDROP,NV,2/6/1999 23:45 +Natchez,,OVAL,MS,2/7/1999 1:30 +Quartzite,,EGG,AZ,2/7/1999 20:30 +Bulls Gap,,SPHERE,TN,2/8/1999 17:50 +Leon,RED GREEN,OTHER,WV,2/9/1999 13:30 +La Crescenta,GREEN,DISK,CA,2/9/1999 19:39 +Sterling,,OVAL,PA,2/9/1999 21:00 +Tucson,,,AZ,2/10/1999 18:45 +Huntsville,,LIGHT,AL,2/10/1999 20:15 +North Pole,,SPHERE,AK,2/10/1999 20:40 +Chino,ORANGE,CIGAR,CA,2/10/1999 23:00 +San Diego,ORANGE,FIREBALL,CA,2/10/1999 23:40 +Castro Valley,,TEARDROP,CA,2/11/1999 7:30 +Suitland,,,MD,2/11/1999 19:00 +Pittsburg,,FIREBALL,CA,2/11/1999 19:20 +Cotati,GREEN,FIREBALL,CA,2/11/1999 19:30 +Union Deposit-Hoernerstown,,TRIANGLE,PA,2/11/1999 21:34 +New Florence,,CIRCLE,MO,2/11/1999 22:35 +North Pole,,FIREBALL,AK,2/12/1999 1:30 +Palmyra,RED GREEN,SPHERE,MO,2/12/1999 4:55 +Mary Esther,,CYLINDER,FL,2/12/1999 8:01 +Albuquerque,,SPHERE,NM,2/12/1999 17:10 +Adrian,,OVAL,MI,2/12/1999 19:00 +Walnut Creek,,,CA,2/13/1999 13:30 +Lilburn,ORANGE YELLOW,LIGHT,GA,2/13/1999 18:30 +San Juan Island,,TRIANGLE,WA,2/14/1999 1:20 +Youngstown,,LIGHT,OH,2/14/1999 10:22 +Lewisville Lake,,LIGHT,TX,2/14/1999 18:20 +Anza Borrego Desert,,DISK,CA,2/14/1999 21:00 +Belfast,GREEN,SPHERE,ME,2/14/1999 21:20 +Ravenna,GREEN,CIRCLE,OH,2/14/1999 23:00 +Phoenix,,VARIOUS,AZ,2/15/1999 10:30 +Hopkington,,TRIANGLE,RI,2/15/1999 19:00 +Worcester,,,MA,2/15/1999 19:15 +Thousand Oaks,,VARIOUS,CA,2/15/1999 20:15 +Austin,RED BLUE,,TX,2/15/1999 23:00 +Ravenna,GREEN,SPHERE,OH,2/15/1999 23:10 +Beale AFB,GREEN,CIRCLE,CA,2/16/1999 6:45 +Boron,,VARIOUS,CA,2/16/1999 14:30 +Navarre Beach,RED,LIGHT,FL,2/16/1999 19:00 +Brady,,LIGHT,TX,2/16/1999 19:30 +Barstow,,OTHER,CA,2/17/1999 3:00 +Loxahatchee,,CYLINDER,FL,2/17/1999 17:00 +Racine,,FIREBALL,WI,2/17/1999 20:20 +Lee Vining,RED,RECTANGLE,CA,2/17/1999 20:45 +Roseville,RED,,CA,2/17/1999 20:50 +Jacksonville,RED,LIGHT,FL,2/18/1999 2:00 +Seattle,,,WA,2/18/1999 16:30 +Story,RED GREEN,RECTANGLE,AR,2/18/1999 20:00 +Portage County,,,OH,2/18/1999 23:20 +Colorado Springs,,FORMATION,CO,2/18/1999 23:27 +La Crosse,,TEARDROP,WI,2/19/1999 0:13 +Orlando,,CIRCLE,FL,2/19/1999 4:45 +Sarasota,,OTHER,FL,2/19/1999 18:30 +Richmond,BLUE,DISK,VA,2/19/1999 19:30 +Sedona,,OTHER,AZ,2/19/1999 19:30 +Marysville,,LIGHT,WA,2/19/1999 21:00 +Simi Valley,,OTHER,CA,2/19/1999 21:20 +Marshall,,LIGHT,MO,2/20/1999 3:00 +Cleveland,,OVAL,GA,2/20/1999 7:00 +Elk Grove,BLUE,TEARDROP,CA,2/20/1999 7:45 +West Phoenix,,SPHERE,AZ,2/20/1999 8:45 +Billings,BLUE,OTHER,MT,2/20/1999 17:50 +Palm Springs,,CIRCLE,CA,2/20/1999 19:00 +New Orleans,,LIGHT,LA,2/20/1999 20:00 +San Jose,,,CA,2/20/1999 20:20 +Glen Hope,,LIGHT,PA,2/20/1999 22:30 +Hope Valley,,TRIANGLE,RI,2/20/1999 23:40 +Auburn,,LIGHT,MA,2/21/1999 0:00 +New York City,,LIGHT,NY,2/21/1999 1:30 +Denver,,LIGHT,CO,2/21/1999 14:00 +Weyers Cave,BLUE,OTHER,VA,2/21/1999 18:00 +Fairbanks,,TRIANGLE,AK,2/21/1999 22:30 +Everett,,LIGHT,WA,2/22/1999 18:45 +New York City,,LIGHT,NY,2/22/1999 19:00 +Otway,,OTHER,OH,2/22/1999 19:00 +Point Marion,RED GREEN BLUE,LIGHT,PA,2/22/1999 20:00 +LaVerne,ORANGE,VARIOUS,CA,2/22/1999 20:10 +Phoenix,,FIREBALL,AZ,2/23/1999 0:00 +Los Angeles,ORANGE,FIREBALL,CA,2/23/1999 2:27 +Vandenburg AFB,,,CA,2/23/1999 2:29 +La Verne,,FIREBALL,CA,2/23/1999 2:30 +"Pomona,",,SPHERE,CA,2/23/1999 2:30 +Los Alamitos,,OTHER,CA,2/23/1999 2:33 +Huntsville,ORANGE,LIGHT,TX,2/23/1999 19:00 +Las Vegas,,LIGHT,NM,2/23/1999 19:00 +Interlochen,,LIGHT,MI,2/23/1999 19:45 +North Carolina,RED,SPHERE,NC,2/23/1999 20:00 +Spur,,TRIANGLE,TX,2/23/1999 20:30 +Clarkdale,,DISK,AZ,2/23/1999 21:30 +Deer Valley Airport-Phoenix,GREEN,OTHER,AZ,2/23/1999 22:40 +Austin,,CHEVRON,TX,2/23/1999 22:50 +Congers,,OTHER,NY,2/24/1999 0:00 +Chicago,GREEN,FIREBALL,IL,2/24/1999 5:20 +Fox Point,GREEN,FIREBALL,WI,2/24/1999 5:23 +Big Bend,,FIREBALL,WI,2/24/1999 5:30 +Sheboygan Falls,,FIREBALL,WI,2/24/1999 11:28 +Edwards AFB,,OTHER,CA,2/24/1999 13:00 +North Houston,,,TX,2/24/1999 18:36 +Ely,,CHEVRON,NV,2/24/1999 19:00 +Elmira Heights,,RECTANGLE,NY,2/24/1999 22:30 +Garland,,FLASH,TX,2/25/1999 9:35 +Johnson City,GREEN,FIREBALL,NY,2/25/1999 10:40 +San Jose,,OVAL,CA,2/25/1999 13:00 +Lewisville Lake,,OVAL,TX,2/25/1999 17:41 +Western Sky from Pflugerville,,OVAL,TX,2/25/1999 21:00 +Dayton,,VARIOUS,OH,2/25/1999 22:00 +Gilroy,,FLASH,CA,2/26/1999 0:15 +Crown Point,RED,LIGHT,IN,2/26/1999 4:00 +Bremerton,,OTHER,WA,2/26/1999 7:00 +Mt. Holly Springs,,,PA,2/26/1999 16:23 +Baltimore,,RECTANGLE,MD,2/26/1999 16:45 +I-84,,LIGHT,ID,2/26/1999 19:30 +Laughlin,,FORMATION,NV,2/27/1999 14:30 +Laughlin,,CIRCLE,NV,2/27/1999 17:35 +Dagsboro,,LIGHT,DE,2/27/1999 18:00 +Bishop,,LIGHT,CA,2/27/1999 18:30 +Chloride,,LIGHT,AZ,2/27/1999 21:15 +Coarsegold,,OTHER,CA,2/27/1999 21:30 +Laughlin,,CIRCLE,NV,2/27/1999 21:30 +Laughlin,,LIGHT,NV,2/27/1999 21:32 +Chino Valley,,OVAL,AZ,2/27/1999 21:45 +San Diego,,TRIANGLE,CA,2/27/1999 21:45 +Bellingham,,DISK,WA,2/27/1999 23:59 +East Rutherford,ORANGE,CIRCLE,NJ,2/28/1999 0:25 +Puget Sound,ORANGE,OTHER,WA,2/28/1999 8:45 +Fairborn,,OTHER,OH,2/28/1999 18:00 +Binghamton,ORANGE,FORMATION,NY,2/28/1999 21:02 +Las Vegas,,CIRCLE,NV,2/28/1999 23:35 +Covington,RED,SPHERE,WA,2/28/1999 23:45 +Chicago,,TRIANGLE,IL,3/1/1999 16:00 +Piney,,LIGHT,TN,3/1/1999 17:30 +Lumberton,,VARIOUS,MS,3/1/1999 18:00 +Butte,,DISK,MT,3/1/1999 18:30 +Eagle Mountain,,LIGHT,TX,3/1/1999 22:00 +Rockford,,,IL,3/1/1999 22:00 +Toronto National Forest,,LIGHT,AZ,3/1/1999 22:00 +Del Mar,RED GREEN,TRIANGLE,CA,3/1/1999 23:52 +Covina,,EGG,CA,3/2/1999 0:00 +Miami Beach,RED ORANGE,CIRCLE,FL,3/2/1999 19:04 +Dallas,,SPHERE,TX,3/2/1999 20:15 +Seffner,,LIGHT,FL,3/2/1999 20:30 +San Antonio,,TRIANGLE,TX,3/3/1999 12:10 +Fair Oaks,YELLOW BLUE,DISK,CA,3/3/1999 17:00 +Campbellsport,,TRIANGLE,WI,3/3/1999 21:00 +Clermont,,OTHER,GA,3/3/1999 21:00 +Gilroy,,FIREBALL,CA,3/3/1999 22:51 +Novato,,OTHER,CA,3/4/1999 6:55 +Fresno,,CIGAR,CA,3/4/1999 7:15 +Wichita,,DISK,KS,3/4/1999 12:15 +Miami Shores,,DISK,FL,3/4/1999 16:00 +Niles,,CIGAR,OH,3/4/1999 18:00 +Colville,GREEN,FIREBALL,WA,3/4/1999 18:48 +Nevada City,,LIGHT,CA,3/4/1999 18:55 +Renton,,SPHERE,WA,3/4/1999 18:55 +Chowchilla,ORANGE,FIREBALL,CA,3/4/1999 19:00 +Golden Valley,,LIGHT,AZ,3/4/1999 19:00 +Lancaster,,OTHER,CA,3/4/1999 19:00 +Wellington,,FIREBALL,NV,3/4/1999 19:00 +Bridgeport,,LIGHT,CA,3/4/1999 19:30 +Phoenix,,CONE,AZ,3/4/1999 19:55 +Greer,RED,LIGHT,AZ,3/4/1999 20:45 +Phoenix,,OTHER,AZ,3/4/1999 20:45 +Fairbanks,,SPHERE,AK,3/4/1999 21:00 +Morgantown,YELLOW,TRIANGLE,WV,3/4/1999 21:35 +Cape Girardeau,,,MO,3/5/1999 1:00 +New Fairfield,,CIRCLE,CT,3/5/1999 2:30 +Marana,,FIREBALL,AZ,3/5/1999 20:00 +Belvidere,,EGG,VT,3/7/1999 1:00 +Tarzana,YELLOW,LIGHT,CA,3/7/1999 20:30 +Arab,,LIGHT,AL,3/7/1999 22:00 +Champaign,,FORMATION,IL,3/7/1999 22:00 +Greenfield,,LIGHT,CA,3/9/1999 0:08 +Seattle,,TRIANGLE,WA,3/9/1999 12:30 +Howell,,TRIANGLE,NJ,3/9/1999 21:45 +Johnstown,,CIGAR,PA,3/10/1999 2:00 +Glen Burnie,,,MD,3/10/1999 20:00 +Tacoma,GREEN,SPHERE,WA,3/10/1999 22:15 +Jewell Basin National Park,,OTHER,MT,3/10/1999 23:24 +Collingdale,,CONE,PA,3/11/1999 1:00 +Greendale,,DIAMOND,WI,3/11/1999 2:35 +South San Francisco,,DISK,CA,3/11/1999 15:00 +Las Vegas,,,NV,3/11/1999 16:28 +Jacksonville,,TRIANGLE,FL,3/11/1999 19:01 +Venice,,FIREBALL,CA,3/11/1999 19:30 +Las Vegas,,LIGHT,NV,3/11/1999 20:20 +Lemont,,TRIANGLE,IL,3/11/1999 22:35 +Rockmart,BLUE,OTHER,GA,3/11/1999 22:48 +Santa Rosa,,TRIANGLE,CA,3/11/1999 23:55 +Bellevue,,LIGHT,OH,3/12/1999 0:45 +Columbus,,FIREBALL,OH,3/12/1999 5:10 +Grand Rapids,,TRIANGLE,MI,3/12/1999 7:15 +Agawam,,TRIANGLE,MA,3/12/1999 18:30 +Grand Rapids,GREEN,FORMATION,MI,3/12/1999 21:00 +Bradley,,TRIANGLE,IL,3/12/1999 22:00 +Angeles Crest Hwy,,SPHERE,CA,3/13/1999 1:00 +Fowlerville,GREEN,FIREBALL,MI,3/13/1999 3:40 +New York City,,RECTANGLE,NY,3/13/1999 19:35 +Waipahu Peninsula,RED ORANGE BLUE,LIGHT,HI,3/13/1999 20:03 +Diamond Bar,,SPHERE,CA,3/13/1999 23:00 +Parma,,TRIANGLE,OH,3/14/1999 0:45 +Lihue,GREEN,LIGHT,HI,3/14/1999 1:15 +Madison,,CIRCLE,WI,3/14/1999 14:00 +Shelby Township,RED GREEN,LIGHT,MI,3/15/1999 1:30 +Nashville,,LIGHT,TN,3/15/1999 4:00 +Wilmington Island,RED,FIREBALL,GA,3/15/1999 4:15 +Lombard,,,IL,3/15/1999 12:00 +Hurricane,GREEN,,WV,3/15/1999 20:00 +Atmore,,LIGHT,AL,3/15/1999 20:40 +New York City,,CIRCLE,NY,3/15/1999 22:10 +Albuquerque,,SPHERE,NM,3/16/1999 11:40 +Fort Lauderdale,,TRIANGLE,FL,3/16/1999 13:00 +Germantown,,DIAMOND,OH,3/16/1999 23:30 +Iowa City,,TRIANGLE,IA,3/17/1999 4:30 +Moira,RED,LIGHT,NY,3/17/1999 19:30 +Boise,RED,,ID,3/17/1999 19:55 +Gurnee,,TRIANGLE,IL,3/17/1999 20:00 +Vernon,,CYLINDER,NJ,3/17/1999 20:15 +Chicago,,TRIANGLE,IL,3/17/1999 20:30 +Salt Lake City,YELLOW,CIRCLE,UT,3/17/1999 20:30 +Lake Almanor,,LIGHT,CA,3/17/1999 21:00 +Kissimmee,,OTHER,FL,3/18/1999 21:10 +Chicago,,OTHER,IL,3/19/1999 7:00 +Weaverville,,OTHER,NC,3/19/1999 16:20 +Baltimore,RED,FORMATION,MD,3/19/1999 19:15 +Augusta,RED,OVAL,GA,3/19/1999 23:30 +Lansing,,DISK,MI,3/20/1999 1:24 +Macon,,EGG,GA,3/20/1999 16:00 +Salt Lake City,,DISK,UT,3/20/1999 16:00 +Horseheads,,CHEVRON,NY,3/20/1999 20:15 +Poca,,SPHERE,WV,3/20/1999 20:30 +Oconomowoc,,FORMATION,WI,3/21/1999 0:02 +Rome,RED,,NY,3/21/1999 0:55 +Bristol,,DISK,VA,3/21/1999 22:00 +Knappa,,,OR,3/21/1999 22:48 +Jasper,,,AR,3/21/1999 23:00 +Hikilki,,OVAL,MN,3/22/1999 3:30 +Jackson,,LIGHT,MS,3/22/1999 21:00 +Dallas,,DISK,TX,3/22/1999 21:45 +Plymouth,,OVAL,MN,3/23/1999 3:00 +Vantage,,,WA,3/23/1999 14:00 +Colorado Springs,,SPHERE,CO,3/23/1999 14:15 +Palm Springs,,TRIANGLE,CA,3/23/1999 14:15 +Cross Lanes,,CYLINDER,WV,3/23/1999 18:15 +Chesapeake,ORANGE YELLOW,OVAL,VA,3/23/1999 19:22 +St. Petersburg,,CHEVRON,FL,3/23/1999 21:15 +Newport,BLUE,SPHERE,KY,3/23/1999 21:30 +Lincoln,,DISK,NE,3/24/1999 11:57 +Overland Park,,DIAMOND,KS,3/24/1999 20:00 +Pacific City,,SPHERE,OR,3/24/1999 20:30 +Longmont,,DISK,CO,3/24/1999 21:00 +Hillsboro,,DISK,OR,3/25/1999 13:20 +"Interstate 40, East Bound",,OVAL,NC,3/25/1999 20:50 +Erie,,FIREBALL,PA,3/26/1999 22:37 +Colorado Springs,,,CO,3/26/1999 22:53 +Bowie,RED YELLOW,LIGHT,MD,3/26/1999 23:30 +Wheeling,GREEN,FIREBALL,WV,3/27/1999 2:30 +Follansbee,,DISK,WV,3/27/1999 17:30 +Marstons Mills,,EGG,MA,3/27/1999 22:00 +Kent,RED,SPHERE,WA,3/28/1999 18:00 +Enola,GREEN,,PA,3/28/1999 19:30 +Harvey's Lake,,LIGHT,PA,3/28/1999 21:30 +Henderson,GREEN,FIREBALL,CO,3/28/1999 23:32 +Jenkins,GREEN,CHEVRON,KY,3/29/1999 2:00 +La Verne,,SPHERE,CA,3/29/1999 4:00 +Pacific Grove,,TRIANGLE,CA,3/29/1999 20:00 +Norfolk,,,VA,3/29/1999 22:00 +Pomona,RED,LIGHT,CA,3/29/1999 22:20 +Atlanta,,SPHERE,GA,3/30/1999 14:30 +Pittsburgh,RED GREEN,LIGHT,PA,3/30/1999 19:30 +Pittsburgh,RED,CONE,PA,3/30/1999 20:23 +Southington,,DISK,CT,3/30/1999 21:00 +Covington,GREEN,FIREBALL,WA,3/30/1999 21:08 +Carson,,DISK,CA,3/31/1999 0:39 +Compton,,EGG,CA,3/31/1999 18:00 +Montoursville,,CHEVRON,PA,3/31/1999 19:30 +Post,,,TX,3/31/1999 21:00 +Issaquah,GREEN,FIREBALL,WA,3/31/1999 21:30 +Seattle,RED,TRIANGLE,WA,3/31/1999 23:45 +"Encinitas: along I-5, from encinitas to oceanside over ocean",ORANGE,CIRCLE,CA,4/1/1999 0:00 +Fenton,,FLASH,MO,4/1/1999 15:30 +Orlando,,SPHERE,FL,4/1/1999 20:00 +Warrensburg,,RECTANGLE,NY,4/1/1999 20:00 +San Diego,,CIRCLE,CA,4/1/1999 22:45 +New York City,,OTHER,NY,4/1/1999 23:00 +Tijeras,,SPHERE,NM,4/2/1999 22:03 +Natchez,ORANGE,TRIANGLE,MS,4/2/1999 22:30 +St. Louis Park,,EGG,MN,4/2/1999 22:30 +Coral Gables,,,FL,4/3/1999 16:30 +Thornton,,LIGHT,CO,4/3/1999 20:04 +Converse,,LIGHT,TX,4/3/1999 23:16 +Bainbridge Island,,,WA,4/4/1999 21:30 +Liberty,,DISK,MO,4/4/1999 22:00 +La Mirada,,FIREBALL,CA,4/4/1999 22:20 +Fort Worth,,CIRCLE,TX,4/4/1999 23:00 +Pullman,,LIGHT,WA,4/5/1999 8:20 +Huntsville,,CIGAR,AL,4/5/1999 15:00 +Mineola,,CIRCLE,TX,4/5/1999 21:10 +Baltimore,,FIREBALL,MD,4/5/1999 21:40 +Valhermoso Springs,RED,OTHER,AL,4/5/1999 21:40 +Lettsworth,,LIGHT,LA,4/5/1999 22:45 +Liberty,,TRIANGLE,MO,4/5/1999 23:15 +Austin,,FIREBALL,TX,4/6/1999 10:38 +Fayetteville,ORANGE,LIGHT,AR,4/6/1999 20:40 +Lakewood,RED GREEN BLUE,OTHER,WA,4/6/1999 22:00 +Columbia Falls,,TRIANGLE,MT,4/6/1999 22:50 +Las Cruces,GREEN,OVAL,NM,4/7/1999 3:20 +Kamuela,,VARIOUS,HI,4/7/1999 8:37 +Waikoloa,,VARIOUS,HI,4/7/1999 8:40 +Fargo,,OTHER,ND,4/7/1999 13:30 +E. Falmouth,,TRIANGLE,MA,4/7/1999 22:58 +Cardiff-by-the-Sea,ORANGE,FIREBALL,CA,4/8/1999 0:00 +Glendale,ORANGE,TRIANGLE,WI,4/8/1999 1:45 +Ridgecrest,,VARIOUS,CA,4/8/1999 14:30 +Manhasset,,TRIANGLE,NY,4/8/1999 20:45 +Granite City,ORANGE,LIGHT,IL,4/8/1999 22:30 +Murfeesboro,,VARIOUS,TN,4/9/1999 9:45 +Edmond,,FIREBALL,OK,4/9/1999 23:44 +Marmora,ORANGE,,NJ,4/9/1999 23:45 +VLA Radio Telescope,,LIGHT,NM,4/10/1999 2:58 +Charlotte,,OTHER,NC,4/10/1999 19:30 +Grand Rapids,,TRIANGLE,MI,4/10/1999 20:00 +Pleasantville,RED,LIGHT,IA,4/10/1999 21:47 +Saratoga Lake,,OVAL,NY,4/10/1999 21:50 +Burke,,,VA,4/10/1999 22:00 +Huntington Beach,,OTHER,CA,4/11/1999 3:15 +Grove City,YELLOW GREEN,,OH,4/11/1999 4:00 +Winter Park,,CHEVRON,FL,4/11/1999 23:49 +Ramona,,LIGHT,CA,4/12/1999 8:30 +Tacoma,,LIGHT,WA,4/12/1999 21:30 +Poca,,SPHERE,WV,4/13/1999 20:50 +Gardena,,DISK,CA,4/13/1999 21:20 +Youngstown,,OVAL,OH,4/13/1999 22:30 +Oglesby,,LIGHT,IL,4/14/1999 0:00 +Oak Ridge,GREEN,OVAL,TN,4/14/1999 0:10 +Houston,,CHEVRON,TX,4/14/1999 0:45 +New York City,GREEN,LIGHT,NY,4/14/1999 20:15 +Milford,,CIRCLE,DE,4/14/1999 20:25 +Oakton,GREEN,FIREBALL,VA,4/14/1999 20:30 +Pomona,ORANGE,SPHERE,CA,4/14/1999 22:20 +Marathon Key,,TRIANGLE,FL,4/14/1999 23:45 +Wendover,,OVAL,UT,4/15/1999 4:30 +Charlottesville,,OTHER,VA,4/15/1999 7:00 +Modesto,,DISK,CA,4/15/1999 10:30 +St. Charles,,OTHER,MO,4/15/1999 13:00 +Clay City,,DISK,KY,4/15/1999 17:55 +Fyffe,,RECTANGLE,AL,4/15/1999 19:00 +Sunnyvale,,LIGHT,CA,4/15/1999 20:00 +Stone Mountain,,LIGHT,GA,4/15/1999 22:00 +Gaithersburg,GREEN,OVAL,MD,4/15/1999 23:45 +Bettendorf,,OTHER,IA,4/16/1999 20:30 +Ward,,SPHERE,AR,4/16/1999 20:50 +Dallas,,DISK,TX,4/16/1999 21:00 +Butte,RED,LIGHT,MT,4/16/1999 22:10 +Iowa City,,CIRCLE,IA,4/16/1999 23:00 +Decatur,RED,CIRCLE,IL,4/17/1999 13:20 +Vashon Island,,TRIANGLE,WA,4/17/1999 14:03 +Los Angeles,,TRIANGLE,CA,4/17/1999 21:00 +Parkersburg,,TRIANGLE,WV,4/17/1999 22:30 +Wolf Creek,,VARIOUS,UT,4/18/1999 2:00 +New Mexico,RED,OTHER,NM,4/18/1999 19:00 +Lakewood,,CHEVRON,CA,4/18/1999 20:15 +Apache Junction,,LIGHT,AZ,4/18/1999 21:00 +Ventura,,LIGHT,CA,4/18/1999 23:00 +Milford,,CIRCLE,CT,4/19/1999 2:00 +Houston,,,TX,4/19/1999 3:45 +Rialto,GREEN,DISK,CA,4/19/1999 20:10 +Plant City,GREEN,OVAL,FL,4/19/1999 21:05 +Clarington,,OTHER,PA,4/19/1999 22:10 +Santa Cruz,,FIREBALL,CA,4/20/1999 4:20 +Denver,,FIREBALL,CO,4/20/1999 5:55 +Rockingham,,TRIANGLE,NC,4/20/1999 20:00 +Santa Monica,,TRIANGLE,CA,4/20/1999 21:30 +Plattsburgh,,LIGHT,NY,4/20/1999 21:45 +Vantage,,OTHER,WA,4/21/1999 9:15 +West Palm Beach,,LIGHT,FL,4/21/1999 21:00 +Kennewick,RED,CIRCLE,WA,4/21/1999 21:05 +Valley,,FIREBALL,WA,4/21/1999 21:20 +Richland,,,WA,4/21/1999 21:30 +Addy,,FIREBALL,WA,4/21/1999 22:30 +Berkley,ORANGE,FIREBALL,MA,4/22/1999 4:00 +Fort Lauderdale,,LIGHT,FL,4/22/1999 5:30 +Battle Creek,,,MI,4/22/1999 9:00 +Piedmont,ORANGE,CIRCLE,MO,4/22/1999 20:00 +Ambridge,,RECTANGLE,PA,4/22/1999 21:43 +Albuquerque,RED,FIREBALL,NM,4/22/1999 22:50 +Albuquerque,,TRIANGLE,NM,4/22/1999 23:40 +Fargo,,TRIANGLE,ND,4/23/1999 2:30 +Wanamingo,,TRIANGLE,MN,4/23/1999 2:33 +Seattle,,LIGHT,WA,4/23/1999 23:25 +St. Peter,,TRIANGLE,MN,4/24/1999 0:30 +Columbus,ORANGE,CIRCLE,OH,4/24/1999 1:15 +Marion,,TEARDROP,NC,4/24/1999 2:00 +Suncrest,,TEARDROP,WA,4/24/1999 11:30 +Fitchburg,,DISK,MA,4/24/1999 14:00 +Indianola,RED,,WA,4/24/1999 14:04 +Las Vegas,,CHEVRON,NV,4/24/1999 21:00 +Las Vegas,,LIGHT,NV,4/24/1999 21:00 +Olympia,,OTHER,WA,4/24/1999 21:30 +Trout River,,LIGHT,MI,4/24/1999 23:00 +Yuma,,LIGHT,AZ,4/25/1999 2:30 +Walker,RED,LIGHT,MI,4/25/1999 4:04 +Summersville,,DISK,WV,4/25/1999 13:00 +Bowling Green,,CHEVRON,KY,4/25/1999 19:00 +Ann Arbor,,FORMATION,MI,4/25/1999 20:30 +Paia,RED,CYLINDER,HI,4/25/1999 23:30 +Model,YELLOW,LIGHT,CO,4/26/1999 22:15 +Audubon,,SPHERE,NJ,4/27/1999 0:01 +Loveland,ORANGE,CIRCLE,CO,4/27/1999 4:30 +Flagstaff,,TRIANGLE,AZ,4/27/1999 20:45 +Casa Grande,,OTHER,AZ,4/27/1999 21:00 +Santa Cruz,ORANGE,VARIOUS,CA,4/28/1999 20:29 +Santa Cruz,,FIREBALL,CA,4/28/1999 20:30 +Chicago,,LIGHT,IL,4/29/1999 23:45 +"Interstate between C. Girardeau, MO",,OTHER,MO,4/30/1999 0:00 +Novato,BLUE,FIREBALL,CA,4/30/1999 1:30 +Cairo,BLUE,DISK,WV,4/30/1999 9:30 +Findley Lake,,CIRCLE,NY,4/30/1999 14:45 +San Bernardino,,TRIANGLE,CA,5/1/1999 3:00 +Snohomish,,OTHER,WA,5/1/1999 3:00 +Louisville,,CIRCLE,KY,5/1/1999 10:10 +Seattle,,OVAL,WA,5/1/1999 10:55 +Moultrie,,DISK,GA,5/1/1999 11:30 +Terre Haute,,SPHERE,IN,5/1/1999 14:00 +Lewisburg,,TRIANGLE,PA,5/1/1999 17:00 +Northport,,,NY,5/1/1999 21:00 +Portales,,FORMATION,NM,5/1/1999 21:00 +Van Buren,,FIREBALL,AR,5/1/1999 21:10 +Cape Canaveral,,CIRCLE,FL,5/1/1999 22:00 +Greenville,,FIREBALL,IL,5/1/1999 22:00 +Houston,RED,LIGHT,TX,5/1/1999 22:00 +Sherwood,,LIGHT,MI,5/1/1999 22:00 +Slinger,,LIGHT,WI,5/1/1999 22:00 +Cleveland,,DIAMOND,OH,5/1/1999 23:10 +Hollywood,,TEARDROP,FL,5/1/1999 23:50 +Chicago,,OTHER,IL,5/2/1999 13:30 +Lake Elsinore,,OTHER,CA,5/2/1999 15:30 +McEwen,,LIGHT,TN,5/2/1999 20:20 +Kingsland,,TRIANGLE,GA,5/2/1999 22:00 +Cape Cod,ORANGE,LIGHT,MA,5/2/1999 23:00 +Lebanon,YELLOW GREEN BLUE,CYLINDER,MO,5/2/1999 23:00 +Oklahoma City,,,OK,5/3/1999 17:00 +Oklahoma City,,FLASH,OK,5/3/1999 18:00 +Santa Rosa,,TRIANGLE,CA,5/3/1999 21:40 +Richmond,,DISK,VA,5/4/1999 17:45 +Margate,ORANGE,FIREBALL,FL,5/4/1999 19:52 +Orlando,,OTHER,FL,5/5/1999 2:00 +Boston,,LIGHT,MA,5/5/1999 3:00 +Blytheville,,LIGHT,AR,5/5/1999 18:00 +Littleton,,CHEVRON,CO,5/5/1999 21:30 +Walstonburg,,OTHER,NC,5/5/1999 21:45 +Kaneohe,GREEN,SPHERE,HI,5/5/1999 22:00 +San Jose,RED,LIGHT,CA,5/5/1999 22:30 +Phoenix,,LIGHT,AZ,5/5/1999 23:00 +Cranston,,EGG,RI,5/6/1999 4:30 +Anchorage,,DISK,AK,5/6/1999 13:30 +East Derry,,LIGHT,NH,5/6/1999 16:34 +Memphis,,OTHER,TN,5/6/1999 17:33 +Delhi,YELLOW,VARIOUS,CO,5/6/1999 20:00 +Vincennes,,CIRCLE,IN,5/6/1999 23:00 +Little Rock,,TRIANGLE,AR,5/6/1999 23:50 +Cherry Grove,,VARIOUS,NY,5/7/1999 0:30 +Phoenix,,SPHERE,AZ,5/7/1999 10:00 +Roy,,VARIOUS,UT,5/7/1999 22:30 +Nikiski,,OTHER,AK,5/8/1999 0:00 +Santa Ana,,VARIOUS,CA,5/8/1999 10:12 +Everett,RED,LIGHT,WA,5/8/1999 23:30 +Tarrant,,TRIANGLE,AL,5/8/1999 23:40 +Monte Rio,ORANGE,LIGHT,CA,5/9/1999 22:00 +East Liverpool,,DISK,OH,5/9/1999 23:00 +Oak Ridge,,TRIANGLE,NC,5/10/1999 3:00 +Tulsa,,,OK,5/10/1999 3:15 +Howell Township,,TRIANGLE,NJ,5/10/1999 7:30 +Little Rock,,TRIANGLE,AR,5/10/1999 11:30 +Memphis,,DISK,TN,5/10/1999 12:15 +Spencer,,LIGHT,NY,5/10/1999 21:00 +Forest Hills,,TRIANGLE,NY,5/10/1999 22:15 +"Grantsville, W.V.",,TEARDROP,WV,5/10/1999 22:30 +Marietta,,CIRCLE,GA,5/11/1999 4:35 +Corcoran,GREEN,OTHER,CA,5/11/1999 9:30 +Wichita,BLUE,LIGHT,KS,5/11/1999 20:10 +Monroe,,LIGHT,LA,5/11/1999 23:15 +Tarrant,,TRIANGLE,AL,5/11/1999 23:40 +Bloomington,ORANGE,LIGHT,IN,5/12/1999 0:00 +Potsdam,,SPHERE,NY,5/12/1999 20:55 +Salem,,CYLINDER,OR,5/12/1999 21:20 +Douglason,YELLOW,LIGHT,NY,5/12/1999 22:00 +Terre Haute,,TRIANGLE,IN,5/13/1999 1:15 +Memphis,,SPHERE,TN,5/13/1999 16:30 +Bellevue,,CIRCLE,NE,5/13/1999 19:00 +Neenah,,CIRCLE,WI,5/13/1999 19:10 +Tomahawk,,,WI,5/13/1999 19:30 +Memphis,,OTHER,TN,5/13/1999 21:00 +Punta Gorda,,LIGHT,FL,5/13/1999 21:00 +Selah,,LIGHT,WA,5/13/1999 21:00 +Marion,,CIRCLE,OH,5/13/1999 22:00 +Dixon,,TRIANGLE,IL,5/14/1999 0:00 +Hot Springs,BLUE,OTHER,AR,5/14/1999 0:15 +Woburn,,CIRCLE,MA,5/14/1999 3:00 +America West flt 2620,,OTHER,CA,5/14/1999 9:18 +Hiram,,OTHER,GA,5/14/1999 21:00 +Macomb,,FORMATION,IL,5/14/1999 22:00 +Fair Grove,,DISK,MO,5/15/1999 1:00 +Sturgis,,,MI,5/15/1999 1:15 +Palm Desert,ORANGE,VARIOUS,CA,5/15/1999 2:45 +York,RED,CYLINDER,PA,5/15/1999 10:00 +Ashtabula,,CIGAR,OH,5/15/1999 12:00 +Western Grove,BLUE,FIREBALL,AR,5/15/1999 17:30 +Atlanta,,DISK,GA,5/15/1999 18:27 +Derry,,DISK,NH,5/15/1999 22:00 +Wolfeboro,,LIGHT,NH,5/15/1999 22:30 +Massillon,,LIGHT,OH,5/15/1999 23:15 +Central Islip,,OVAL,NY,5/16/1999 0:30 +Dayton,,,OH,5/16/1999 12:45 +Silver Lake,,LIGHT,WI,5/16/1999 19:00 +North Orlando,,LIGHT,FL,5/16/1999 20:30 +San Antonio,,LIGHT,TX,5/16/1999 21:27 +Manchester,,TRIANGLE,NH,5/16/1999 22:30 +Royal Oak,,TRIANGLE,MI,5/17/1999 20:10 +San Antonio,,FIREBALL,TX,5/18/1999 0:00 +Renton,,DISK,WA,5/18/1999 7:36 +Tombstone,,EGG,AZ,5/18/1999 14:00 +Tombstone,,EGG,AZ,5/18/1999 14:00 +Fairview,,LIGHT,TN,5/18/1999 21:30 +Ventura,,OVAL,CA,5/18/1999 21:48 +Douglas,,EGG,GA,5/18/1999 22:00 +Keithville,RED,LIGHT,LA,5/18/1999 22:00 +Salt Lake City,,TRIANGLE,UT,5/18/1999 22:45 +Nashville,,CHEVRON,TN,5/18/1999 22:50 +Deerfield,,,IN,5/19/1999 1:00 +Des Moines,YELLOW,LIGHT,IA,5/19/1999 1:00 +Bakersfield,,CIRCLE,CA,5/19/1999 2:00 +Anaheim,,OVAL,CA,5/19/1999 15:30 +San Diego,,TRIANGLE,CA,5/19/1999 17:00 +Buckley,,OTHER,WA,5/19/1999 22:00 +Union City,RED BLUE,OTHER,TN,5/19/1999 22:00 +Fort Hood,ORANGE YELLOW,,TX,5/20/1999 4:45 +Roanoke Rapids,,CYLINDER,NC,5/20/1999 7:35 +Cartwright,,RECTANGLE,ND,5/20/1999 14:00 +Killeen,,SPHERE,TX,5/20/1999 17:45 +Jonesboro,,SPHERE,IN,5/20/1999 18:00 +Madison,,CONE,WI,5/20/1999 20:00 +Montrose,,CIRCLE,IL,5/20/1999 20:00 +Panama City,,TRIANGLE,FL,5/20/1999 23:00 +Panama City Beach,,TRIANGLE,FL,5/20/1999 23:00 +Flippin,,TRIANGLE,AR,5/20/1999 23:38 +Seattle,,LIGHT,WA,5/21/1999 3:00 +Marion,,SPHERE,OH,5/21/1999 16:00 +Patterson,,LIGHT,CA,5/21/1999 20:30 +Carmel Valley,,RECTANGLE,CA,5/22/1999 2:38 +Andrade,,FIREBALL,CA,5/22/1999 2:40 +US Hwy 200 between MP 39,,LIGHT,ID,5/22/1999 3:10 +Lansdowne,BLUE,FLASH,PA,5/22/1999 12:09 +Sacramento area,,OTHER,CA,5/22/1999 21:05 +Columbia,,LIGHT,MO,5/22/1999 21:15 +Greenwater,GREEN,,WA,5/22/1999 23:15 +Austin,,LIGHT,TX,5/23/1999 2:10 +Spanaway,,OTHER,WA,5/23/1999 16:00 +Lyle,,CIRCLE,WA,5/23/1999 23:40 +Glendale,,DISK,AZ,5/24/1999 11:00 +Anaheim,,,CA,5/24/1999 18:00 +Wilmington,,FORMATION,NC,5/24/1999 21:55 +Colville,,CIRCLE,WA,5/24/1999 22:15 +Lorian,,FIREBALL,OH,5/25/1999 2:45 +Poulsbo,,CIGAR,WA,5/25/1999 19:30 +Bellevue,,CYLINDER,WA,5/26/1999 13:00 +Arco,,CIRCLE,ID,5/26/1999 15:00 +Wacker City,,,AK,5/26/1999 18:00 +Tustin,,SPHERE,CA,5/26/1999 22:00 +Theodore Roosevelt National Park exit 32 on I-94 North Dakot,,OTHER,ND,5/26/1999 22:05 +Omaha,,,NE,5/27/1999 3:00 +Troy,,CIGAR,OH,5/27/1999 13:45 +"Interstate 10, somewhere by the border",,FIREBALL,CA,5/27/1999 22:31 +Bothell,,LIGHT,WA,5/27/1999 22:40 +Lansdowne,ORANGE,LIGHT,PA,5/27/1999 22:54 +Half Moon Bay,ORANGE,,CA,5/28/1999 2:00 +Olympic Mountains,,DISK,WA,5/29/1999 20:30 +Cheraw,,TRIANGLE,CO,5/29/1999 21:00 +Las Vegas,,FORMATION,NV,5/29/1999 21:00 +Westport,,SPHERE,WA,5/29/1999 21:00 +Hermiston,,,OR,5/30/1999 10:00 +El Paso,,SPHERE,TX,5/30/1999 13:10 +Lawndale,,CIRCLE,CA,5/30/1999 18:00 +Paso Robles,ORANGE,CIGAR,CA,5/30/1999 20:15 +Vestal,,CYLINDER,NY,5/30/1999 20:20 +Longview,RED,FORMATION,WA,5/30/1999 22:15 +Allen,,VARIOUS,OK,5/30/1999 22:35 +Colorado Springs,,CYLINDER,CO,5/31/1999 19:15 +Pekin,,LIGHT,IL,5/31/1999 21:00 +Andover,,,MA,6/1/1999 0:00 +Fremont,GREEN,LIGHT,MI,6/1/1999 0:00 +Bellevue,,CIRCLE,WA,6/1/1999 0:05 +Washington,,FIREBALL,CA,6/1/1999 0:42 +Breckenridge,,DISK,MN,6/1/1999 1:00 +Gig Harbor,,CIRCLE,WA,6/1/1999 1:00 +Guilford,,,CT,6/1/1999 1:00 +South Jordan,,CIRCLE,UT,6/1/1999 1:00 +Lorain,,LIGHT,OH,6/1/1999 2:00 +Rocky Hill,,SPHERE,CT,6/1/1999 2:00 +Rowland Heights,,LIGHT,CA,6/1/1999 2:00 +Venice,,DISK,FL,6/1/1999 2:00 +Renton,,DISK,WA,6/1/1999 12:00 +Tucson,,OTHER,AZ,6/1/1999 12:00 +Georgetown,,OTHER,IL,6/1/1999 14:00 +Los Osos,,CYLINDER,CA,6/1/1999 15:00 +East Stroudsburg,,CIGAR,PA,6/1/1999 15:14 +Woodstock,,,GA,6/1/1999 15:30 +Marlborough,,SPHERE,MA,6/1/1999 16:00 +Batavia,,LIGHT,OH,6/1/1999 19:00 +Gonzales,,VARIOUS,CA,6/1/1999 19:00 +Merced,,CIRCLE,CA,6/1/1999 19:00 +Sylmar,,RECTANGLE,CA,6/1/1999 19:00 +Roslindale,,LIGHT,MA,6/1/1999 20:00 +Spokane,,LIGHT,WA,6/1/1999 20:15 +Reston,RED,DISK,VA,6/1/1999 21:00 +Sandusky,,RECTANGLE,OH,6/1/1999 21:00 +Portsmouth,,OVAL,NH,6/1/1999 21:30 +Dayton,,SPHERE,OH,6/1/1999 22:00 +Lost Park area,RED,OTHER,CO,6/1/1999 22:00 +Merrill,,LIGHT,WI,6/1/1999 22:00 +Middletown,,TRIANGLE,DE,6/1/1999 22:00 +Townsend,,,DE,6/1/1999 22:00 +Greenville,,FIREBALL,IL,6/1/1999 22:30 +River Ridge,,CIRCLE,LA,6/1/1999 22:30 +Corpus Christi,,OTHER,TX,6/1/1999 22:45 +Bristol,,LIGHT,TN,6/1/1999 23:00 +Franklin,,TRIANGLE,TN,6/1/1999 23:00 +Bellevue,,,WA,6/2/1999 7:50 +Daytona Beach,,TRIANGLE,FL,6/2/1999 21:10 +Olympia,,CHEVRON,WA,6/2/1999 21:30 +Hillsboro,,TRIANGLE,OR,6/3/1999 0:44 +Burlington,,OTHER,WV,6/3/1999 13:30 +Sylmar,,OVAL,CA,6/3/1999 14:00 +Thornton,,TRIANGLE,CO,6/3/1999 19:55 +Delavan,RED BLUE,CIRCLE,WI,6/3/1999 22:00 +Mount Shasta City,,LIGHT,CA,6/3/1999 22:10 +Post Falls,,TRIANGLE,ID,6/3/1999 22:45 +Florida Panhandle,,,FL,6/4/1999 0:00 +Phoenix,,OVAL,AZ,6/4/1999 8:35 +Lake Conroe,,LIGHT,TX,6/4/1999 21:42 +Somerville,,LIGHT,NJ,6/4/1999 23:15 +Des Moines,,OTHER,IA,6/5/1999 2:00 +Wilmington,,EGG,DE,6/5/1999 15:00 +Medina,,LIGHT,TX,6/5/1999 23:30 +Huntsville,,FLASH,AL,6/5/1999 23:45 +Machesney Park,,LIGHT,IL,6/6/1999 3:40 +Meyers-Tahoe paradise,,VARIOUS,CA,6/6/1999 7:00 +Royal Plam Beach,,SPHERE,FL,6/6/1999 17:30 +Hollywood,,CIRCLE,CA,6/6/1999 19:00 +Sacramento,,,CA,6/6/1999 19:00 +Frankfort,,TRIANGLE,IL,6/6/1999 21:15 +Bangor,,LIGHT,ME,6/6/1999 22:00 +Pleasanton,,FIREBALL,CA,6/6/1999 22:00 +Virginia,,CIGAR,VA,6/6/1999 22:00 +Santa Monica,,FORMATION,CA,6/6/1999 22:29 +Spranger,GREEN,FIREBALL,CO,6/7/1999 4:15 +Vancouver,,SPHERE,WA,6/7/1999 19:30 +Hollywood,,CYLINDER,FL,6/7/1999 21:00 +Orem,,DIAMOND,UT,6/7/1999 21:50 +Cortez,,CIRCLE,CO,6/7/1999 22:15 +Cortez,,LIGHT,CO,6/7/1999 22:15 +Jacksonville,,OTHER,FL,6/8/1999 0:30 +Reno,,OTHER,NV,6/8/1999 2:00 +Manchester,BLUE,RECTANGLE,NH,6/8/1999 10:45 +Rochester,GREEN,OTHER,NY,6/8/1999 11:10 +Elkhart,,LIGHT,IN,6/8/1999 18:00 +Pasco,,LIGHT,WA,6/8/1999 22:30 +Newburg,RED,,PA,6/9/1999 0:30 +The Colony,RED,,TX,6/9/1999 1:10 +Phoenix,,LIGHT,AZ,6/9/1999 20:50 +Las Vegas,,LIGHT,NV,6/9/1999 21:14 +Las Vegas,RED,LIGHT,NV,6/9/1999 21:15 +Redondo Beach,,,CA,6/9/1999 21:58 +Everett,,DISK,WA,6/9/1999 22:00 +"Johnson Park, NE CA.,Shasta Co., calif",,CIRCLE,CA,6/9/1999 22:22 +Sacramento,,LIGHT,CA,6/9/1999 23:43 +Firth,,DISK,ID,6/10/1999 0:00 +Tupelo,,SPHERE,MS,6/10/1999 7:20 +Sleepy Hollow,,CIRCLE,NY,6/10/1999 22:21 +Alburquerqe,,LIGHT,NM,6/10/1999 22:30 +Springfield,,LIGHT,MO,6/10/1999 22:40 +Riverton,,TRIANGLE,WY,6/10/1999 23:00 +Shenandoah County,,SPHERE,VA,6/10/1999 23:30 +Cuba,,TRIANGLE,NM,6/10/1999 23:50 +Little Rock,,TRIANGLE,AR,6/11/1999 0:15 +Plain City,,LIGHT,OH,6/11/1999 4:00 +Wallkill,,TRIANGLE,NY,6/11/1999 22:40 +Salem,,FLASH,NH,6/11/1999 23:00 +Barksdale AFB,,TRIANGLE,LA,6/12/1999 1:00 +Shrewsbury,,OTHER,MA,6/12/1999 10:30 +Tomonium,,OTHER,MD,6/12/1999 12:03 +Wichita,,CYLINDER,KS,6/12/1999 20:30 +Los Angeles,,LIGHT,CA,6/12/1999 22:00 +Mecosta,,SPHERE,MI,6/12/1999 22:30 +Plainfield,,LIGHT,IL,6/12/1999 23:30 +Kent,BLUE,LIGHT,WA,6/12/1999 23:45 +Medina,,LIGHT,TX,6/13/1999 11:30 +Arvada,,LIGHT,CO,6/13/1999 20:00 +Latrobe,,OTHER,CA,6/13/1999 23:00 +La Verne,ORANGE,LIGHT,CA,6/13/1999 23:22 +Tacoma,,,WA,6/13/1999 23:37 +Weidman,,OTHER,MI,6/13/1999 23:50 +Hilmar,,TRIANGLE,CA,6/14/1999 0:10 +Ontario,,,NY,6/14/1999 1:00 +Kennewick,ORANGE,SPHERE,WA,6/14/1999 19:00 +Port Aransas,,LIGHT,TX,6/14/1999 21:30 +Bellingham,,FORMATION,WA,6/14/1999 23:45 +Acworth,,LIGHT,GA,6/15/1999 0:00 +Ashville,,LIGHT,OH,6/15/1999 0:00 +Heyworth,,CIRCLE,IL,6/15/1999 0:05 +Reno,,TRIANGLE,NV,6/15/1999 2:30 +Corpus Christi,,TRIANGLE,TX,6/15/1999 3:00 +Salt Lake City,,TRIANGLE,UT,6/15/1999 8:15 +Ontario,,EGG,CA,6/15/1999 11:00 +Inglis,,DISK,FL,6/15/1999 12:00 +Omaha,,FIREBALL,NE,6/15/1999 12:00 +St. Charles,,RECTANGLE,MO,6/15/1999 12:00 +Tamaqua,,DISK,PA,6/15/1999 13:00 +Fort Wayne,YELLOW,OVAL,IN,6/15/1999 15:00 +Noblesville,,CIRCLE,IN,6/15/1999 15:00 +Martinez,RED,SPHERE,CA,6/15/1999 16:00 +Rome,,OTHER,GA,6/15/1999 17:15 +Silverton,,CIGAR,TX,6/15/1999 18:00 +Northern Oglala,,FLASH,SD,6/15/1999 19:00 +Great River,,DISK,NY,6/15/1999 20:00 +Ridgewood,,LIGHT,NJ,6/15/1999 20:00 +Waterbury,,LIGHT,CT,6/15/1999 20:00 +Oldsmar,GREEN,FIREBALL,FL,6/15/1999 21:00 +Phoenix,RED,TRIANGLE,AZ,6/15/1999 21:30 +Farwell,,LIGHT,TX,6/15/1999 22:00 +New Haven,,SPHERE,WV,6/15/1999 22:00 +On highway; location unknown,,OTHER,WY,6/15/1999 22:00 +Santa Maria,,OVAL,CA,6/15/1999 22:00 +Lone Pine,BLUE,,CA,6/15/1999 23:00 +Point Pleasant,,TRIANGLE,WV,6/15/1999 23:30 +Columbus,,,OH,6/16/1999 11:35 +Savannah,,OTHER,GA,6/16/1999 21:00 +Lincoln City,,LIGHT,OR,6/16/1999 23:00 +Potomac,,LIGHT,IL,6/16/1999 23:45 +Iron Moutain,,DISK,MI,6/17/1999 12:00 +Santee,,SPHERE,CA,6/17/1999 17:40 +Laguna Vista,,DISK,TX,6/17/1999 20:00 +Council Bluffs,,CIRCLE,IA,6/17/1999 21:03 +Boulder,,LIGHT,CO,6/17/1999 22:00 +Lenior City,,FIREBALL,TN,6/17/1999 23:00 +Evansville,,LIGHT,IN,6/17/1999 23:30 +Grand Canyon,,CIGAR,NV,6/18/1999 1:22 +Galveston,,FORMATION,TX,6/18/1999 4:32 +Miami,BLUE,CIGAR,FL,6/18/1999 5:45 +Hamburg,,DISK,PA,6/18/1999 13:00 +Portland,,CIGAR,OR,6/18/1999 14:00 +New York City,,DISK,NY,6/18/1999 17:15 +Vestal,,CYLINDER,NY,6/18/1999 20:17 +Fallon,,LIGHT,NV,6/18/1999 21:45 +Woodside,,FIREBALL,CA,6/18/1999 21:46 +Kansas City,,DISK,MO,6/19/1999 1:00 +Honolulu,,OTHER,HI,6/19/1999 1:54 +Maricopa,,CIGAR,AZ,6/19/1999 11:45 +Corpus Christi,,CIRCLE,TX,6/19/1999 19:00 +Alvord,RED GREEN,,OR,6/19/1999 22:00 +Sacramento,,LIGHT,CA,6/19/1999 22:05 +Spring Valley,,CIRCLE,CA,6/19/1999 22:20 +Westchester,,OTHER,IL,6/19/1999 23:59 +Boise,RED,OTHER,ID,6/20/1999 1:20 +Boise,,LIGHT,ID,6/20/1999 1:40 +Lathorp,,SPHERE,CA,6/20/1999 2:34 +Bridgeport,,LIGHT,CT,6/20/1999 4:30 +Port Hadlock,,CIRCLE,WA,6/20/1999 8:30 +Pinecastle,,CYLINDER,FL,6/20/1999 10:00 +McKees Rocks,,RECTANGLE,PA,6/20/1999 15:00 +Las Vegas,,OVAL,NV,6/20/1999 20:00 +Laramie,BLUE,,WY,6/20/1999 23:00 +Palmetto,,CIRCLE,GA,6/20/1999 23:00 +Three Forks,,FIREBALL,MT,6/20/1999 23:00 +Rockford,,DISK,IL,6/20/1999 23:30 +Bradenton,,LIGHT,FL,6/20/1999 23:59 +Nicholasville,,LIGHT,KY,6/21/1999 0:10 +Nicholasville,RED YELLOW,TRIANGLE,KY,6/21/1999 0:15 +El Cajon,,,CA,6/21/1999 2:30 +Hiko,BLUE,SPHERE,NV,6/21/1999 18:30 +Louisville,RED,,KY,6/22/1999 19:15 +Reston,,SPHERE,VA,6/22/1999 22:33 +North Freedom,,LIGHT,WI,6/22/1999 23:30 +Orchard Park,,DISK,NY,6/23/1999 4:21 +Grants Pass,,CIRCLE,OR,6/23/1999 11:35 +San Diego,,CIRCLE,CA,6/23/1999 19:00 +Virginia Beach,,LIGHT,VA,6/23/1999 22:30 +South Royalton,,CIRCLE,VT,6/24/1999 0:00 +Seattle,,SPHERE,WA,6/24/1999 1:08 +West Hollywood,,SPHERE,CA,6/24/1999 16:00 +Minneapolis,,LIGHT,MN,6/24/1999 16:35 +Quincy,RED,VARIOUS,IL,6/24/1999 21:00 +Snake Creek,ORANGE,OVAL,NV,6/24/1999 21:00 +Bouse,,CYLINDER,AZ,6/24/1999 21:50 +Anderson,,EGG,CA,6/25/1999 0:00 +Oak Park,,OTHER,IL,6/25/1999 18:30 +Idaho Falls,,,ID,6/25/1999 22:00 +Huntsville,,OVAL,AL,6/25/1999 22:23 +Lamar,,,CO,6/26/1999 10:22 +San Fransisco Bay Area,,OTHER,CA,6/26/1999 12:30 +Seattle,,DISK,WA,6/26/1999 17:15 +Sacramento,,LIGHT,CA,6/26/1999 20:20 +Hesperia,,FIREBALL,CA,6/27/1999 0:14 +Overland Park,,CIRCLE,KS,6/27/1999 22:00 +Port Angeles,,SPHERE,WA,6/27/1999 22:30 +Fort Defiance,,OTHER,VA,6/27/1999 23:25 +Vacaville,,DIAMOND,CA,6/27/1999 23:30 +Ashland,,TRIANGLE,ME,6/27/1999 23:42 +Gulf of Mexico,,,FL,6/28/1999 13:30 +Colorado Springs,,TRIANGLE,CO,6/28/1999 21:00 +Cedar Park,,CYLINDER,TX,6/28/1999 21:30 +Jasper,,TRIANGLE,OR,6/28/1999 22:30 +Springfield,,CIGAR,IL,6/29/1999 12:50 +Navajo Lake,,CIGAR,NM,6/29/1999 16:00 +Pennsauken,,LIGHT,NJ,6/29/1999 21:30 +New Carlisle,,,IN,6/29/1999 22:15 +Phoenix,,RECTANGLE,AZ,6/29/1999 22:15 +Shingletown,RED BLUE,CIRCLE,CA,6/30/1999 0:00 +Cherry Hill,,OVAL,NJ,6/30/1999 0:20 +Tacoma,,,WA,6/30/1999 2:00 +Carrollton,,SPHERE,MO,6/30/1999 7:00 +Lombard,,SPHERE,IL,6/30/1999 20:30 +Port Isabel,,OVAL,TX,6/30/1999 21:00 +Mississippi,ORANGE,LIGHT,MS,6/30/1999 23:00 +Herron Lake State Park,,CIGAR,NM,6/30/1999 23:20 +Morganton,,DIAMOND,NC,7/1/1999 0:00 +Phoenix,,,AZ,7/1/1999 6:00 +Florence,,CIGAR,OR,7/1/1999 15:00 +Junction City,,LIGHT,AR,7/1/1999 15:30 +Birmingham,,FLASH,AL,7/1/1999 19:00 +Dannemora,ORANGE,,NY,7/1/1999 19:00 +Spokane,,SPHERE,WA,7/1/1999 19:00 +Charlotte,,OTHER,NC,7/1/1999 19:30 +Clover,,LIGHT,SC,7/1/1999 21:20 +Waltham,,TRIANGLE,MA,7/1/1999 21:30 +Coso Junction,GREEN,LIGHT,CA,7/1/1999 22:00 +Salida,,CIGAR,CO,7/1/1999 22:00 +Salida,,CIGAR,CO,7/1/1999 22:05 +Buffalo,,CYLINDER,WY,7/1/1999 22:30 +Charalton,,LIGHT,NY,7/1/1999 23:00 +Green River,,OTHER,WY,7/1/1999 23:00 +Greenville,,FIREBALL,IL,7/1/1999 23:00 +Plano,RED GREEN,,TX,7/2/1999 0:05 +Troy,,CIGAR,AL,7/2/1999 11:30 +St. Paul,,OTHER,MN,7/2/1999 12:00 +Luna Pier,,SPHERE,MI,7/2/1999 14:00 +Las Vegas,,TRIANGLE,NV,7/2/1999 21:00 +Greenwood,,DISK,IN,7/2/1999 21:30 +Meadville,,LIGHT,PA,7/2/1999 23:25 +Grand Rapids,,LIGHT,MI,7/2/1999 23:54 +Albuquerque,,,NM,7/3/1999 1:30 +Bedford,RED,LIGHT,MA,7/3/1999 18:00 +Laughlin,,LIGHT,AZ,7/3/1999 20:00 +Alamosa,,LIGHT,CO,7/3/1999 21:20 +"Medicine Bow National Mountains, Medicine Bow National Fores",,FLASH,WY,7/3/1999 21:45 +Johnson City,,,TN,7/4/1999 0:00 +Fremont,RED,CIRCLE,OH,7/4/1999 11:00 +Sacramento,,OTHER,CA,7/4/1999 15:30 +Arcadia,RED,,CA,7/4/1999 21:00 +Culver City,,OTHER,CA,7/4/1999 21:00 +Pine Ridge,YELLOW,LIGHT,SD,7/4/1999 21:00 +Dillard,,FLASH,GA,7/4/1999 21:30 +Lackawanna,RED,DIAMOND,NY,7/4/1999 21:30 +Lackawanna,RED,OTHER,NY,7/4/1999 21:30 +Northport,,LIGHT,AL,7/4/1999 21:30 +Little Rock,RED,LIGHT,AR,7/4/1999 21:50 +Millstadt,,,IL,7/4/1999 22:00 +Pauls Valley,,SPHERE,OK,7/4/1999 22:00 +Humboldt,,LIGHT,IA,7/4/1999 23:00 +Mount Pleasant,ORANGE,CIGAR,SC,7/4/1999 23:00 +Fort Bidwell,,LIGHT,CA,7/4/1999 23:30 +Lovingston,,,VA,7/4/1999 23:45 +Wachapreague,,CIGAR,VA,7/4/1999 23:59 +Morgantown,,VARIOUS,PA,7/5/1999 0:05 +Knotts Island,,,NC,7/5/1999 0:07 +State College,,OTHER,PA,7/5/1999 0:15 +Virginia Beach,,LIGHT,VA,7/5/1999 0:15 +Annapolis,YELLOW,FIREBALL,MD,7/5/1999 0:30 +Peabels,,,OH,7/5/1999 1:00 +Chicago,,CIGAR,IL,7/5/1999 15:00 +East Hoquiam,,,WA,7/5/1999 23:00 +Cranston,,EGG,RI,7/6/1999 0:00 +Rochester,,EGG,WA,7/6/1999 11:15 +Tacoma,,CIGAR,WA,7/6/1999 14:23 +Yakima,,SPHERE,WA,7/6/1999 14:30 +Newton,,SPHERE,IA,7/6/1999 20:30 +Omaha,,TRIANGLE,NE,7/6/1999 22:00 +Stokes County,,CHEVRON,NC,7/6/1999 22:30 +Pasco,,FLASH,WA,7/6/1999 22:40 +Kaukauna,RED,TRIANGLE,WI,7/6/1999 22:50 +North Hampton,,,NH,7/7/1999 2:30 +San Jose,,,CA,7/7/1999 3:00 +Barrington Hills,,,IL,7/7/1999 3:52 +Loomis,,LIGHT,CA,7/7/1999 4:15 +Lisbon,,LIGHT,OH,7/7/1999 11:23 +Woods Hole,,DISK,MA,7/7/1999 12:30 +Seattle,,LIGHT,WA,7/7/1999 16:30 +Charlotte,,VARIOUS,NC,7/7/1999 21:00 +Tampa,,FIREBALL,FL,7/7/1999 21:30 +Bald Eagle Lake,GREEN,FIREBALL,MN,7/7/1999 23:00 +Jeromesville,,FLASH,OH,7/7/1999 23:05 +Des Moines,,LIGHT,IA,7/7/1999 23:15 +Grissom AFB,,EGG,IN,7/7/1999 23:39 +Plymouth,,CIRCLE,WI,7/8/1999 10:25 +Crown Point,,OTHER,IN,7/8/1999 13:15 +Pottstown,BLUE,SPHERE,PA,7/8/1999 21:45 +Sheridan,RED BLUE,TRIANGLE,IN,7/8/1999 22:00 +Salem,,VARIOUS,OR,7/8/1999 22:21 +Healdsburg,ORANGE,LIGHT,CA,7/8/1999 22:30 +Ledyard,,LIGHT,CT,7/8/1999 22:30 +Colonial Heights,,LIGHT,VA,7/8/1999 22:35 +Mentor,,SPHERE,OH,7/9/1999 15:00 +Trinidad,,FIREBALL,CO,7/9/1999 20:00 +Seattle,,LIGHT,WA,7/9/1999 20:35 +Stone Mountain,,LIGHT,GA,7/9/1999 21:40 +Spring,,LIGHT,TX,7/9/1999 22:15 +Woodburn,,FIREBALL,OR,7/9/1999 22:45 +Cascade,,LIGHT,ID,7/9/1999 23:00 +Seabeck,,OTHER,WA,7/9/1999 23:30 +Columbus,,LIGHT,OH,7/10/1999 0:55 +Vancouver,ORANGE,CIRCLE,WA,7/10/1999 0:55 +Omaha,,TEARDROP,NE,7/10/1999 7:20 +San Diego,,SPHERE,CA,7/10/1999 15:00 +Tucson,,EGG,AZ,7/10/1999 17:10 +Portland,,CIGAR,OR,7/10/1999 18:00 +Green Acres,,FIREBALL,OR,7/10/1999 22:00 +Dousman,,SPHERE,WI,7/10/1999 22:30 +Seattle,RED BLUE,LIGHT,WA,7/10/1999 22:30 +Newberg,RED,CIRCLE,OR,7/10/1999 22:45 +New York City,,LIGHT,NY,7/11/1999 4:30 +Baileys Cross Roads,,OVAL,VA,7/11/1999 17:30 +Sayreville,ORANGE,OVAL,NJ,7/11/1999 18:30 +Manassas,,SPHERE,VA,7/11/1999 22:00 +Grandview,,FLASH,WA,7/11/1999 23:00 +Nicholasville,,TRIANGLE,KY,7/11/1999 23:20 +Nicholasville,,,KY,7/11/1999 23:40 +Santa Cruz,,CIRCLE,CA,7/12/1999 1:10 +Canterbury,RED ORANGE,CIRCLE,NH,7/12/1999 1:30 +Arlington,,,TX,7/12/1999 10:15 +Chico,,LIGHT,CA,7/12/1999 22:10 +Lake Oswego,,LIGHT,OR,7/12/1999 22:15 +Elko,,OTHER,NV,7/12/1999 23:00 +Chautaqua Road,,EGG,NY,7/12/1999 23:17 +Reynoldsburg,,SPHERE,OH,7/12/1999 23:30 +Livingston,,SPHERE,IL,7/13/1999 3:15 +New Roads,,TRIANGLE,LA,7/13/1999 7:45 +Morton Grove,,FIREBALL,IL,7/13/1999 12:30 +Tacoma,,CIGAR,WA,7/13/1999 18:00 +New Rochelle,,CIRCLE,NY,7/13/1999 19:30 +Missoula,,CIGAR,MT,7/13/1999 22:50 +Springfield,,LIGHT,MA,7/14/1999 1:35 +Weidman,,LIGHT,MI,7/14/1999 4:00 +Rochester Hills,,LIGHT,MI,7/14/1999 4:53 +Blyville,,OTHER,AR,7/14/1999 17:00 +Monument Valley,GREEN,FLASH,UT,7/14/1999 22:23 +Deer Park,,DISK,NY,7/14/1999 23:00 +Cleveland,,FIREBALL,WI,7/14/1999 23:50 +Guerneville,,FORMATION,CA,7/15/1999 1:00 +Mosier,,LIGHT,OR,7/15/1999 1:00 +Naperville,,LIGHT,IL,7/15/1999 2:00 +Somerville,,OTHER,TX,7/15/1999 2:00 +Reedsville,,,WV,7/15/1999 3:00 +Ontario,,SPHERE,NY,7/15/1999 3:30 +Paddock Lake,ORANGE,DISK,WI,7/15/1999 4:15 +Boulder,,OVAL,CO,7/15/1999 15:00 +Atlanta,,SPHERE,GA,7/15/1999 16:00 +West Bend,,EGG,WI,7/15/1999 17:05 +Oxford,,DISK,ME,7/15/1999 19:00 +San Jose,GREEN,FIREBALL,CA,7/15/1999 21:00 +Charlotte,BLUE,VARIOUS,NC,7/15/1999 21:50 +Independence,,LIGHT,MO,7/15/1999 21:55 +La Farge,ORANGE,FIREBALL,WI,7/15/1999 22:00 +Houston,,SPHERE,TX,7/15/1999 22:15 +Mallets Bay,,TEARDROP,VT,7/15/1999 22:15 +Carmel,,TRIANGLE,IN,7/15/1999 23:00 +Southern Utah,GREEN,FIREBALL,UT,7/15/1999 23:30 +Birmingham,,SPHERE,AL,7/16/1999 0:00 +Highland,,RECTANGLE,CA,7/16/1999 14:30 +Bouse,RED YELLOW,OTHER,AZ,7/16/1999 20:00 +Acworth,,TRIANGLE,GA,7/16/1999 20:30 +Temecula,,TRIANGLE,CA,7/16/1999 21:00 +Straughn,,LIGHT,IN,7/16/1999 22:00 +Bayfield,RED,SPHERE,WI,7/16/1999 23:50 +North Bowers Beach,,,DE,7/17/1999 0:00 +Lemon Cove,,DISK,CA,7/17/1999 13:15 +Sewell,,TRIANGLE,NJ,7/17/1999 22:00 +Sewell,RED,TRIANGLE,NJ,7/17/1999 22:00 +Hatton,ORANGE,SPHERE,WA,7/17/1999 22:30 +Sandusky,GREEN,SPHERE,OH,7/17/1999 23:00 +Atlantic Ocean,,,NJ,7/18/1999 0:00 +Columbus,,,OH,7/18/1999 1:00 +Malta,,LIGHT,NY,7/18/1999 1:00 +Jacksonville,RED,FLASH,FL,7/18/1999 2:00 +Escondido,ORANGE,FIREBALL,CA,7/18/1999 4:10 +East Springfield,ORANGE,CIRCLE,PA,7/18/1999 4:15 +San Antonio,,,TX,7/18/1999 5:04 +Chino Hills,,FLASH,CA,7/18/1999 11:45 +York,ORANGE,DISK,PA,7/18/1999 16:00 +La Grande,,VARIOUS,OR,7/18/1999 21:10 +Porterville,,LIGHT,CA,7/18/1999 21:30 +Blythe,,LIGHT,CA,7/18/1999 22:00 +Claremont,,TRIANGLE,CA,7/18/1999 22:00 +Houston,,CIRCLE,TX,7/18/1999 22:30 +Pound Ridge,,SPHERE,NY,7/18/1999 22:30 +Robbins,ORANGE,CIRCLE,TX,7/18/1999 22:30 +Lincoln,,,NE,7/19/1999 2:05 +Kennewick,GREEN,FIREBALL,WA,7/19/1999 2:30 +Durango,,,CO,7/19/1999 5:00 +Kansas City,,,KS,7/19/1999 11:00 +Las Vegas,,OVAL,NV,7/19/1999 21:30 +Tonasket,,,WA,7/20/1999 0:00 +Myrtle Beach,,TRIANGLE,SC,7/20/1999 1:00 +Minneapolis,,DISK,MN,7/20/1999 3:00 +Largo,,LIGHT,FL,7/20/1999 23:00 +Clarkson,RED,LIGHT,KY,7/21/1999 0:00 +Spokane,,CIRCLE,WA,7/21/1999 2:00 +Fort Lewis,,CYLINDER,WA,7/21/1999 23:30 +Tulsa,,LIGHT,OK,7/22/1999 2:00 +Hood River,,DIAMOND,OR,7/22/1999 2:15 +West Palm Beach,,VARIOUS,FL,7/22/1999 19:30 +Bay Point,RED,OTHER,CA,7/22/1999 20:00 +Owings Mills,RED,,MD,7/22/1999 23:59 +Wheaton,,OTHER,IL,7/23/1999 1:30 +Spring Green,,LIGHT,WI,7/23/1999 2:00 +Thornton,,LIGHT,IL,7/23/1999 3:00 +Trona,,OTHER,CA,7/23/1999 5:30 +South China,,OTHER,ME,7/23/1999 19:50 +Tracy,,,CA,7/23/1999 20:27 +Marietta,,CIGAR,OH,7/23/1999 22:30 +Modena,,CIGAR,NY,7/23/1999 22:30 +Cedar City,,OTHER,UT,7/23/1999 23:00 +Van Horn,,DISK,TX,7/23/1999 23:00 +Huntingdon Valley,,DISK,PA,7/23/1999 23:12 +Woodbine,,,IA,7/23/1999 23:40 +Coalinga,,TRIANGLE,CA,7/23/1999 23:45 +Lancaster County,,RECTANGLE,PA,7/24/1999 0:12 +Garland,,VARIOUS,TX,7/24/1999 0:25 +Philadelphia,,FLASH,PA,7/24/1999 19:00 +Alamosa,,DISK,CO,7/24/1999 19:50 +Hale,,CIRCLE,MO,7/24/1999 21:30 +Ashland,,LIGHT,OR,7/24/1999 22:20 +Boca Raton,,DISK,FL,7/25/1999 2:30 +Jacksonville,,LIGHT,FL,7/25/1999 3:55 +Oklahoma City,,OTHER,OK,7/25/1999 5:00 +Walworth County,,OVAL,WI,7/25/1999 11:35 +Manitowoc,,CIRCLE,WI,7/25/1999 15:00 +Seneca,,EGG,KS,7/25/1999 19:00 +Rocky Mount,,TRIANGLE,LA,7/25/1999 20:00 +Sandy,,TRIANGLE,UT,7/25/1999 20:30 +Moses Lake,,SPHERE,WA,7/25/1999 20:40 +Colorado Springs,ORANGE,LIGHT,CO,7/25/1999 22:00 +Cincinnati,,FLASH,OH,7/25/1999 22:30 +Verhalen,,DIAMOND,TX,7/25/1999 22:30 +Bricktown,ORANGE,RECTANGLE,NJ,7/26/1999 14:30 +Portland,,VARIOUS,OR,7/26/1999 16:00 +Leeds,,SPHERE,AL,7/26/1999 21:00 +Vestal,,LIGHT,NY,7/26/1999 21:30 +Chicago,,DISK,IL,7/26/1999 22:00 +Spokane,,FLASH,WA,7/26/1999 22:00 +Shelbyville,RED BLUE,OVAL,TN,7/26/1999 22:30 +Monroe,,LIGHT,WA,7/26/1999 23:00 +Edgewood,,,WA,7/26/1999 23:15 +Macwahoc,ORANGE GREEN,OTHER,ME,7/27/1999 1:30 +Palm Springs,,TRIANGLE,CA,7/27/1999 2:45 +Canon City,,FLASH,CO,7/27/1999 5:10 +Fort A.P. Hill,,OVAL,VA,7/27/1999 19:00 +Shoreline,,LIGHT,WA,7/27/1999 21:40 +Ravenna,,DISK,OH,7/27/1999 22:00 +The Colony,,OVAL,TX,7/27/1999 22:00 +Vancouver,BLUE,LIGHT,WA,7/27/1999 23:00 +Rogerville,,OVAL,TN,7/28/1999 1:00 +Winlock,,VARIOUS,WA,7/28/1999 1:00 +Lebanon,,OTHER,OR,7/28/1999 4:30 +Dayton,,OTHER,OH,7/28/1999 21:30 +Bremerton,,CIRCLE,WA,7/28/1999 21:33 +Ponca City,,TRIANGLE,OK,7/28/1999 22:00 +Twin Falls,,FIREBALL,ID,7/28/1999 22:50 +Bellingham,,LIGHT,WA,7/28/1999 23:30 +Dolgeville,,TRIANGLE,NY,7/28/1999 23:30 +HighPoint,,CYLINDER,NC,7/29/1999 0:00 +Redmond,,CIRCLE,WA,7/29/1999 2:15 +Kankakee,,CHEVRON,IL,7/30/1999 14:00 +Ballard,GREEN,LIGHT,WA,7/30/1999 22:30 +Akeley,,TRIANGLE,MN,7/31/1999 0:30 +Miami Beach,,OVAL,FL,7/31/1999 7:05 +Cortez,,LIGHT,CO,7/31/1999 21:50 +Salt Lake City,ORANGE,DISK,UT,7/31/1999 22:30 +Rocky Mount,,DISK,VA,8/1/1999 3:45 +South Point,,EGG,OH,8/1/1999 12:00 +San Jose,,DISK,CA,8/1/1999 13:00 +Tucson,,SPHERE,AZ,8/1/1999 13:00 +Cleveland,,CIGAR,NY,8/1/1999 15:00 +Seattle,,CIGAR,WA,8/1/1999 15:30 +Seattle,,CIGAR,WA,8/1/1999 15:31 +Seattle,,CIGAR,WA,8/1/1999 17:30 +The Colony,,SPHERE,TX,8/1/1999 17:35 +Bear Valley Ski Resort,,CIGAR,CA,8/1/1999 18:30 +Bethlehem,,SPHERE,PA,8/1/1999 20:00 +Rialto,,LIGHT,CA,8/1/1999 20:00 +Boalsburg,RED,LIGHT,PA,8/1/1999 21:00 +Redding,,LIGHT,CA,8/1/1999 21:10 +Seattle,,DISK,WA,8/1/1999 21:30 +Monterey,,OVAL,CA,8/1/1999 22:10 +West Kennebunk,,SPHERE,ME,8/1/1999 22:30 +Ferndale,,OTHER,WA,8/1/1999 22:45 +Shanty Creek,,,MI,8/1/1999 23:00 +Eugene,,OTHER,OR,8/1/1999 23:30 +Sausalito,,CIRCLE,CA,8/2/1999 0:00 +Hollywood,,OTHER,CA,8/2/1999 2:00 +St. Louis,,CIRCLE,MO,8/2/1999 6:10 +Federal Way,,,WA,8/2/1999 18:00 +Utica,,OVAL,NY,8/2/1999 18:15 +Marsden,,FLASH,AR,8/2/1999 21:00 +Westport,,LIGHT,WA,8/2/1999 23:30 +Salem,,,MA,8/3/1999 21:45 +Beaverton,,DISK,OR,8/3/1999 22:00 +Cockeysville,,LIGHT,MD,8/3/1999 22:00 +Madison,,LIGHT,WI,8/3/1999 22:13 +Lesage,,LIGHT,WV,8/3/1999 23:15 +Blue Ridge Summit,,,PA,8/3/1999 23:20 +Camp Ripley,BLUE,FORMATION,MN,8/4/1999 2:50 +Rochdale,,SPHERE,MA,8/4/1999 3:00 +Grants Pass,,EGG,OR,8/4/1999 4:00 +Rogue River,,LIGHT,OR,8/4/1999 21:00 +Arcade,,FLASH,GA,8/4/1999 22:05 +Spokane,,TRIANGLE,WA,8/5/1999 1:30 +Meridian,,LIGHT,ID,8/5/1999 5:15 +Cannon Falls,,,MN,8/5/1999 10:30 +Jacksonville,,VARIOUS,FL,8/5/1999 17:30 +Northfield,,EGG,MN,8/5/1999 19:00 +Tomah,,OTHER,WI,8/5/1999 23:20 +Orem,,TRIANGLE,UT,8/6/1999 1:30 +Grayling,,DISK,MI,8/6/1999 2:00 +Tooele,,LIGHT,UT,8/6/1999 4:00 +Newport Beach,,DIAMOND,CA,8/6/1999 16:00 +Manhattan Beach,,OTHER,CA,8/6/1999 20:45 +Eureka,ORANGE,CIRCLE,CA,8/6/1999 22:30 +Fittstown,,,OK,8/6/1999 23:00 +Titusville,,,FL,8/7/1999 2:00 +Santa Nella,,DISK,CA,8/7/1999 3:00 +Westminster,,DIAMOND,CA,8/7/1999 10:35 +New York City,,TRIANGLE,NY,8/7/1999 17:00 +Pampa,,LIGHT,TX,8/7/1999 20:30 +Payson,,DISK,AZ,8/7/1999 21:00 +Prescott Valley,ORANGE,LIGHT,AZ,8/7/1999 23:45 +Long Valley,GREEN,DISK,NJ,8/8/1999 10:30 +New York City,,OVAL,NY,8/8/1999 13:00 +New Brighton,,CIRCLE,PA,8/8/1999 20:00 +Reidsville,,TRIANGLE,NC,8/8/1999 22:15 +Denver,,,CO,8/8/1999 22:30 +Villa Rica,,OTHER,GA,8/9/1999 18:00 +Phillipsburg,,,NJ,8/9/1999 20:00 +Yosemite National Park,,OTHER,CA,8/9/1999 20:00 +Yakima,,FIREBALL,WA,8/9/1999 20:18 +King of Prussia,,CROSS,PA,8/9/1999 22:00 +Columbus,,FLASH,OH,8/9/1999 22:30 +Conway,,TRIANGLE,AR,8/10/1999 1:00 +Napa,,OTHER,CA,8/10/1999 1:00 +Gwinnett,ORANGE GREEN BLUE,LIGHT,GA,8/10/1999 2:00 +Tillamook,,CYLINDER,OR,8/10/1999 2:00 +Portland,,LIGHT,OR,8/10/1999 11:00 +Jericho,,,VT,8/10/1999 21:00 +Denver,,OTHER,CO,8/10/1999 22:30 +Munising,,EGG,MI,8/10/1999 22:30 +Westland,,LIGHT,MI,8/10/1999 22:30 +Sellersburg,,LIGHT,IN,8/11/1999 5:25 +Ettersburg,,RECTANGLE,CA,8/11/1999 16:00 +Hwy. 90,,TRIANGLE,SD,8/11/1999 17:30 +Cortez,,LIGHT,CO,8/11/1999 21:45 +Ketchikan,,CIRCLE,AK,8/11/1999 23:07 +Gold Canyon,,FORMATION,AZ,8/12/1999 2:30 +Long Beach,ORANGE,DISK,CA,8/12/1999 3:25 +Herminie,ORANGE,FORMATION,PA,8/12/1999 3:30 +Highlands Ranch,,FORMATION,CO,8/12/1999 3:30 +North Wilkesboro,,TRIANGLE,NC,8/12/1999 3:30 +Apex,,TRIANGLE,NC,8/12/1999 3:58 +Fort Wayne,,TEARDROP,IN,8/12/1999 9:30 +Flagstaff,ORANGE,LIGHT,AZ,8/12/1999 10:00 +Chesapeake Bay,,DISK,MD,8/12/1999 16:00 +Elizibethtown,,CIRCLE,IL,8/12/1999 21:00 +Marietta,,FIREBALL,OH,8/12/1999 21:00 +Fresno,,,CA,8/12/1999 21:25 +Milwaukee,,TEARDROP,WI,8/12/1999 22:00 +Myrtle Creek,,CIRCLE,OR,8/12/1999 22:00 +North South Padre Island,,,TX,8/12/1999 22:00 +Bloominggrove,,,NY,8/12/1999 22:30 +Strausburg,,TRIANGLE,OH,8/12/1999 23:00 +Woodland,,,CA,8/12/1999 23:30 +Put-in Bay,,SPHERE,OH,8/12/1999 23:45 +Winchester,,LIGHT,VA,8/13/1999 0:00 +Westby,,TRIANGLE,WI,8/13/1999 3:58 +Casa Grande,,TRIANGLE,AZ,8/13/1999 11:00 +Mesa,GREEN,OTHER,DE,8/13/1999 20:46 +Cheyenne,RED ORANGE,TRIANGLE,WY,8/13/1999 21:50 +Monticello,GREEN,FIREBALL,IA,8/13/1999 22:15 +Casa Grande,,TRIANGLE,AZ,8/13/1999 23:00 +Vancouver,GREEN,CIRCLE,WA,8/13/1999 23:00 +Vancouver,GREEN,OVAL,WA,8/13/1999 23:00 +Paw Paw,,,IL,8/13/1999 23:30 +Salt Lake City,,TRIANGLE,UT,8/14/1999 3:46 +Turnagain Pass,,FLASH,AK,8/14/1999 4:00 +Columbus,,CIRCLE,OH,8/14/1999 12:00 +Peoria,,OTHER,IL,8/14/1999 12:00 +Destin,,TRIANGLE,FL,8/14/1999 19:30 +Milwaukee,,LIGHT,WI,8/14/1999 20:50 +Richland,,LIGHT,WA,8/14/1999 22:00 +Fort Worth,,CIRCLE,TX,8/14/1999 22:07 +Fort Worth,,CIRCLE,TX,8/14/1999 22:07 +East Lynne,,DISK,MO,8/14/1999 22:30 +Grandville,YELLOW,,MI,8/14/1999 23:00 +Trout Lake,ORANGE,LIGHT,WA,8/14/1999 23:00 +Plano,,,TX,8/15/1999 0:00 +Parkersburg,,CYLINDER,WV,8/15/1999 1:00 +Talco,,LIGHT,TX,8/15/1999 2:00 +Boulder,,OTHER,CO,8/15/1999 13:00 +Seattle,,,WA,8/15/1999 13:00 +Valparaiso,,DISK,IN,8/15/1999 13:00 +Lake Saint Louis,,DIAMOND,MO,8/15/1999 13:30 +Greencreek,,CIGAR,ID,8/15/1999 14:00 +Eleanor,,CIGAR,WV,8/15/1999 16:00 +Lancaster,RED,FIREBALL,CA,8/15/1999 16:30 +Boulder,,LIGHT,CO,8/15/1999 17:30 +McCrory,,TRIANGLE,AR,8/15/1999 18:00 +Vancouver,,,WA,8/15/1999 18:50 +Glendale,,FORMATION,CA,8/15/1999 19:15 +Bath,,VARIOUS,ME,8/15/1999 20:30 +Gila Bend,ORANGE,FIREBALL,AZ,8/15/1999 20:30 +Fayetteville,,LIGHT,NC,8/15/1999 21:00 +Gaylesville,GREEN,,AL,8/15/1999 21:00 +Hobe Sound,,CIRCLE,FL,8/15/1999 21:00 +Huntington Beach,,CIRCLE,CA,8/15/1999 21:45 +Little Falls,,LIGHT,MN,8/15/1999 22:00 +Matteson,,LIGHT,IL,8/15/1999 22:00 +Sedona,,FLASH,AZ,8/15/1999 22:22 +Maury Island,,,WA,8/15/1999 22:23 +Jenks,,LIGHT,OK,8/15/1999 22:30 +Lake Powell,ORANGE,FIREBALL,UT,8/15/1999 22:30 +Los Lunas,,,NM,8/15/1999 22:30 +Socorro,,OTHER,NM,8/15/1999 22:30 +Eureka,,FLASH,IL,8/15/1999 22:45 +East Northport,ORANGE,FIREBALL,NY,8/15/1999 22:55 +Montauk,,CIRCLE,NY,8/15/1999 23:00 +Rio Rancho,,OTHER,NM,8/15/1999 23:00 +Salem,,OTHER,OR,8/15/1999 23:00 +Spokane,,LIGHT,WA,8/15/1999 23:00 +Jemez Springs,,,NM,8/15/1999 23:10 +Albany,,SPHERE,OR,8/15/1999 23:11 +Dinosaur,BLUE,,CO,8/15/1999 23:15 +See Report...,,,CO,8/15/1999 23:15 +Albuquerque,,,NM,8/15/1999 23:18 +Aztec,,LIGHT,NM,8/15/1999 23:18 +Bosque,,,NM,8/15/1999 23:18 +Denver,,FIREBALL,CO,8/15/1999 23:18 +Gallup,BLUE,,NM,8/15/1999 23:18 +Las Cruces,,FIREBALL,NM,8/15/1999 23:18 +Rawlins,,FIREBALL,WY,8/15/1999 23:18 +Tularosa,,FLASH,NM,8/15/1999 23:18 +Salem,,OTHER,UT,8/15/1999 23:50 +Janesville,,FLASH,WI,8/16/1999 1:45 +Trapper Creek,,OVAL,AK,8/16/1999 2:45 +Toledo,,LIGHT,OH,8/16/1999 4:00 +Woonsocket,,,RI,8/16/1999 8:30 +Langhorne,,OTHER,PA,8/16/1999 21:30 +Navarre Beach,RED,FIREBALL,FL,8/16/1999 22:40 +Bentonville,ORANGE,FIREBALL,IN,8/16/1999 22:45 +Grand Marais,,SPHERE,MN,8/16/1999 23:00 +Merritt Island Wildlife Refuge,,FIREBALL,FL,8/17/1999 2:30 +Moses Lake,BLUE,VARIOUS,WA,8/17/1999 3:15 +Portland,,OTHER,OR,8/17/1999 5:50 +Las Vegas,,DISK,NV,8/17/1999 16:00 +Phoenix,,DIAMOND,AZ,8/17/1999 19:30 +Fairfield,,OTHER,CA,8/17/1999 21:00 +Westfield,GREEN,CIRCLE,NJ,8/17/1999 21:00 +Grand Rapids,RED,LIGHT,MI,8/17/1999 22:57 +Marmora,,LIGHT,NJ,8/17/1999 23:34 +Holden,,CIRCLE,MO,8/18/1999 0:10 +Tollison,BLUE,FIREBALL,AZ,8/18/1999 1:30 +Sun Cove,,TRIANGLE,WA,8/18/1999 3:14 +Grove City,,OVAL,OH,8/18/1999 21:10 +Center,,FIREBALL,TX,8/19/1999 4:00 +Columbia,,SPHERE,MO,8/19/1999 11:30 +Wilmington,,TRIANGLE,NC,8/19/1999 15:45 +LaVergne,,SPHERE,TN,8/19/1999 19:45 +Great Falls,,OVAL,MT,8/19/1999 20:00 +Tukwila,,SPHERE,WA,8/19/1999 21:15 +Vallejo,,VARIOUS,CA,8/19/1999 22:00 +Barstow,,VARIOUS,CA,8/20/1999 1:00 +Fort Smith,,CIRCLE,AR,8/20/1999 5:45 +Spokane,,SPHERE,WA,8/20/1999 14:00 +Crisp Point,,FORMATION,MI,8/20/1999 16:30 +Grove City,,LIGHT,PA,8/20/1999 21:00 +Granville,,DISK,OH,8/20/1999 21:30 +Akron,,LIGHT,MI,8/20/1999 22:00 +Minneapolis,,SPHERE,MN,8/20/1999 23:00 +White City,,CIRCLE,OR,8/20/1999 23:30 +Renton,ORANGE,CIGAR,WA,8/21/1999 2:00 +Lake Whitney,,TRIANGLE,TX,8/21/1999 3:00 +Renton,,,WA,8/21/1999 15:15 +Snoqualmie Pass,,RECTANGLE,WA,8/21/1999 20:20 +Charlestown,,CIRCLE,IN,8/21/1999 21:40 +Colusa,,OVAL,CA,8/21/1999 23:00 +Easton,,RECTANGLE,MD,8/22/1999 0:30 +Oak Harbor,RED,LIGHT,WA,8/22/1999 1:00 +Syracuse,,OTHER,NY,8/22/1999 6:00 +Chicago,,OTHER,IL,8/22/1999 11:55 +Rocky Mount,,CIRCLE,NC,8/22/1999 13:30 +Dallas,,CIRCLE,TX,8/22/1999 19:30 +Lahaina,RED GREEN,SPHERE,HI,8/22/1999 20:00 +Redmond,,FIREBALL,OR,8/22/1999 21:15 +Cave Juntion,,CIGAR,OR,8/22/1999 21:30 +Hwy 199,,FIREBALL,CA,8/22/1999 22:00 +Two Rivers,,FIREBALL,WI,8/22/1999 23:00 +Portland,ORANGE,TRIANGLE,ME,8/22/1999 23:30 +Wilmington,,DISK,NC,8/23/1999 2:30 +Steelville,,SPHERE,MO,8/23/1999 12:00 +Ozark,,DISK,MO,8/23/1999 14:15 +Milford,,CIGAR,CT,8/23/1999 14:40 +Anaheim,,RECTANGLE,CA,8/23/1999 16:00 +Reno,,CIRCLE,NV,8/24/1999 1:03 +Sandy,,TRIANGLE,UT,8/24/1999 9:05 +Merced,RED,VARIOUS,CA,8/24/1999 9:10 +Boonville,,OTHER,MO,8/24/1999 19:50 +Ivanhoe,,LIGHT,CA,8/25/1999 0:00 +Hot Springs,,,AR,8/25/1999 5:32 +San Jose,GREEN BLUE,,CA,8/25/1999 9:00 +Reseda,,SPHERE,CA,8/25/1999 15:30 +El Dorado Hills,,FLASH,CA,8/25/1999 21:00 +Santa Cruz,,SPHERE,CA,8/25/1999 21:30 +Versailles,ORANGE,SPHERE,IN,8/25/1999 22:30 +Grapevine,,LIGHT,CA,8/26/1999 0:00 +Olympic National Park,,DISK,WA,8/26/1999 15:00 +Great Falls,,LIGHT,MT,8/26/1999 21:20 +Port Angeles,YELLOW BLUE,FIREBALL,WA,8/27/1999 0:15 +Auburn,,CIRCLE,WA,8/27/1999 5:30 +Newburgh,,TRIANGLE,NY,8/27/1999 19:00 +Southfield,,LIGHT,MI,8/27/1999 20:58 +Southfield,,LIGHT,MI,8/27/1999 20:58 +Brier,BLUE,CHEVRON,WA,8/27/1999 22:30 +San Diego,ORANGE,CIRCLE,CA,8/28/1999 2:00 +Burbank,,,CA,8/28/1999 5:31 +New York City,,SPHERE,NY,8/28/1999 11:45 +Albuquerque,,,NM,8/28/1999 18:00 +Wichita,,CIGAR,KS,8/28/1999 20:00 +Granada Hills,,FLASH,CA,8/28/1999 20:40 +New York City,,CIRCLE,NY,8/28/1999 22:00 +Chicago,,CIRCLE,IL,8/28/1999 22:10 +Oshkosh,,SPHERE,WI,8/29/1999 15:00 +Temple City,,LIGHT,CA,8/29/1999 20:35 +Temple City,RED,LIGHT,CA,8/29/1999 20:35 +Bloomington,,TRIANGLE,MN,8/29/1999 22:00 +Manitowoc Rapids,,FIREBALL,WI,8/29/1999 22:15 +Raquette Lake,,LIGHT,NY,8/30/1999 22:30 +"Raquette Lake, adirondack mts.",,LIGHT,NY,8/30/1999 22:30 +Lumberport,,LIGHT,WV,8/31/1999 1:00 +Elko,,LIGHT,NV,8/31/1999 20:30 +Elko,,LIGHT,NV,8/31/1999 20:30 +Madison,,CIRCLE,NC,8/31/1999 21:10 +Coral Gables,RED ORANGE,CIRCLE,FL,8/31/1999 21:30 +Havana,,FIREBALL,IL,8/31/1999 22:45 +Hunter,,TRIANGLE,NY,8/31/1999 23:00 +Matthews,,CHEVRON,NC,8/31/1999 23:30 +Batesville,,,TX,9/1/1999 0:00 +Junction City,RED,TRIANGLE,OH,9/1/1999 0:00 +Willsboro,,CIRCLE,NY,9/1/1999 0:00 +Santa Cruz,,,CA,9/1/1999 1:00 +Tinley Park,RED BLUE,TRIANGLE,IL,9/1/1999 1:00 +Bothell,,FORMATION,WA,9/1/1999 1:15 +Wadsworth,ORANGE,LIGHT,OH,9/1/1999 4:30 +Lincolnton,,VARIOUS,NC,9/1/1999 6:00 +Stockton,,FORMATION,CA,9/1/1999 6:30 +Cleveland,,LIGHT,OH,9/1/1999 12:45 +Chicago,,CIGAR,IL,9/1/1999 15:00 +Stuttgart,,CIGAR,AR,9/1/1999 16:00 +Flagstaff,,OVAL,AZ,9/1/1999 17:00 +Bicknell,,LIGHT,IN,9/1/1999 19:00 +Lakewood,,RECTANGLE,CO,9/1/1999 19:40 +Mexico,,,MO,9/1/1999 19:40 +Vallejo,,,CA,9/1/1999 19:40 +Gold Beach,,FIREBALL,OR,9/1/1999 20:30 +Suisun,,FORMATION,CA,9/1/1999 20:30 +Coon Rapids,,TRIANGLE,MN,9/1/1999 21:00 +Kapaa,,TRIANGLE,HI,9/1/1999 21:00 +Medford,ORANGE,VARIOUS,OR,9/1/1999 21:00 +Mica Mountain,,LIGHT,WA,9/1/1999 21:00 +Paola,,CIGAR,KS,9/1/1999 21:00 +Portland,,,OR,9/1/1999 21:00 +Sunriver,,FIREBALL,OR,9/1/1999 21:00 +Portland,,OTHER,OR,9/1/1999 21:10 +Fairfield,,TRIANGLE,CA,9/1/1999 21:13 +Coos Bay,,OTHER,OR,9/1/1999 21:25 +Florence,,FIREBALL,OR,9/1/1999 21:25 +Alturas,,,CA,9/1/1999 21:30 +Alturas,,FORMATION,CA,9/1/1999 21:30 +Auburn,,FIREBALL,CA,9/1/1999 21:30 +Auburn,,FIREBALL,CA,9/1/1999 21:30 +Beaverton,,,OR,9/1/1999 21:30 +Black Rock City,,FIREBALL,NV,9/1/1999 21:30 +Black Rock City,RED,FIREBALL,NV,9/1/1999 21:30 +Chico,,FIREBALL,CA,9/1/1999 21:30 +El Dorado Hills,,LIGHT,CA,9/1/1999 21:30 +Eugene,RED,LIGHT,OR,9/1/1999 21:30 +Lake Trinity,RED,FIREBALL,CA,9/1/1999 21:30 +Marinwood,,TEARDROP,CA,9/1/1999 21:30 +Northern California,,OTHER,CA,9/1/1999 21:30 +Novato,,LIGHT,CA,9/1/1999 21:30 +Portland,RED,,OR,9/1/1999 21:30 +Reno,,FIREBALL,NV,9/1/1999 21:30 +Saddleback Fire Lookout- Tahoe Natl. Forest- Downieville Dis,,,CA,9/1/1999 21:30 +Vacaville,,TRIANGLE,CA,9/1/1999 21:30 +Wilsonville,,LIGHT,OR,9/1/1999 21:30 +Portland,,,OR,9/1/1999 21:35 +Donner Summit,RED,LIGHT,CA,9/1/1999 21:40 +Orland,,FIREBALL,CA,9/1/1999 21:40 +Portland,,,OR,9/1/1999 21:40 +Sacramento,,VARIOUS,CA,9/1/1999 21:40 +Santa Barbara,ORANGE,CIGAR,CA,9/1/1999 21:45 +Nenana,,LIGHT,AK,9/1/1999 22:00 +Orwigsburg,,DIAMOND,PA,9/1/1999 22:00 +Santa Barbara,ORANGE,CIGAR,CA,9/1/1999 22:30 +Spokane,,TRIANGLE,WA,9/1/1999 22:30 +Alaska,,LIGHT,AK,9/1/1999 23:00 +Brier,,FORMATION,WA,9/1/1999 23:00 +Chico,BLUE,OTHER,CA,9/1/1999 23:00 +Everett,,,WA,9/1/1999 23:30 +Huntington,,RECTANGLE,WV,9/1/1999 23:30 +Independence,,OTHER,MO,9/1/1999 23:30 +Lima,ORANGE,LIGHT,OH,9/1/1999 23:30 +Murfreesboro,,FIREBALL,TN,9/1/1999 23:58 +St. Louis,,,MO,9/2/1999 0:45 +Los Angeles Airport,,OTHER,CA,9/2/1999 2:00 +Dallas,,,TX,9/2/1999 3:15 +Gold Beach,,LIGHT,OR,9/2/1999 3:30 +New Orleans,,LIGHT,LA,9/2/1999 3:30 +Vancouver,RED,SPHERE,WA,9/2/1999 13:00 +Galva,,VARIOUS,IL,9/2/1999 20:00 +Central Lake,,CYLINDER,MI,9/2/1999 20:30 +Seward,,LIGHT,AK,9/2/1999 21:00 +Seward,,LIGHT,AK,9/2/1999 21:00 +Beckley,,OTHER,WV,9/3/1999 0:00 +Savannah,,FIREBALL,GA,9/3/1999 1:30 +Hackensack,,SPHERE,NJ,9/3/1999 4:45 +New Smyrna Beach,,CIRCLE,FL,9/3/1999 10:30 +San Jose,,OTHER,CA,9/3/1999 12:38 +Salem,,CHEVRON,OR,9/3/1999 20:30 +Tonasket,,LIGHT,WA,9/3/1999 21:00 +Bloomington,,CYLINDER,IN,9/3/1999 21:20 +Salinas,GREEN,LIGHT,CA,9/4/1999 0:30 +Pittsburg,,OTHER,CA,9/4/1999 0:38 +Santa Clara,,LIGHT,CA,9/4/1999 0:40 +Indianapolis,BLUE,CYLINDER,IN,9/4/1999 8:40 +Red Rock Canyon,RED,,NV,9/4/1999 11:00 +Conway,,LIGHT,AR,9/4/1999 20:00 +New York City,,TRIANGLE,NY,9/4/1999 20:00 +Grand Rapids,BLUE,LIGHT,MI,9/4/1999 21:00 +Richmond,ORANGE,TRIANGLE,IN,9/4/1999 21:24 +Ridgefield,,LIGHT,WA,9/4/1999 21:30 +Brighton,,FIREBALL,IA,9/4/1999 22:30 +Nashville,,LIGHT,TN,9/4/1999 22:30 +Summerville,,CIRCLE,SC,9/4/1999 22:30 +Tonasket,,LIGHT,WA,9/4/1999 23:00 +Redmond,,LIGHT,WA,9/5/1999 0:30 +Sevierville,RED GREEN BLUE,CIRCLE,TN,9/5/1999 0:40 +Grand View,,FORMATION,WI,9/5/1999 1:30 +Hudson River,RED,CIRCLE,NY,9/5/1999 4:20 +Placervile,GREEN,SPHERE,CA,9/5/1999 4:45 +Durham,,RECTANGLE,NH,9/5/1999 6:15 +Sutton,,DISK,WV,9/5/1999 6:30 +Berkeley,,CIGAR,CA,9/5/1999 10:30 +Hawkinsville,,DISK,GA,9/5/1999 13:33 +Zumbrota,,CIRCLE,MN,9/5/1999 20:50 +Tustin,,,WI,9/5/1999 21:30 +Cedar City,,LIGHT,UT,9/5/1999 21:33 +Wiley,,LIGHT,WA,9/5/1999 22:10 +Brule,,FORMATION,WI,9/5/1999 22:30 +Green Ridge St Forest,RED GREEN,LIGHT,MD,9/5/1999 22:30 +Hanford,GREEN,FIREBALL,CA,9/5/1999 22:30 +West Liberty,ORANGE GREEN,LIGHT,KY,9/5/1999 22:30 +Baker,,OVAL,CA,9/6/1999 0:30 +Minneapolis,BLUE,,MN,9/6/1999 0:40 +Carrollton,YELLOW,FLASH,TX,9/6/1999 2:00 +Columbia,,LIGHT,NH,9/6/1999 3:00 +Kingman,,FIREBALL,AZ,9/6/1999 9:40 +Frankfort,,CIGAR,IL,9/6/1999 19:15 +DePere,,,WI,9/6/1999 20:00 +Sulphur Springs,,LIGHT,TX,9/6/1999 20:17 +Highland Park,,TRIANGLE,MI,9/6/1999 23:45 +Central Florida,,,FL,9/7/1999 0:00 +Traverse City,,,MI,9/7/1999 0:00 +Austin,RED,DIAMOND,TX,9/7/1999 1:00 +Salem,GREEN,OTHER,OR,9/7/1999 1:00 +Witchita Falls,ORANGE,FIREBALL,TX,9/7/1999 2:00 +Orlando Flrida,,FIREBALL,FL,9/7/1999 3:00 +Madison,RED,LIGHT,WI,9/7/1999 3:35 +Norman,RED,,OK,9/7/1999 3:55 +Clarendon,ORANGE,,AR,9/7/1999 4:00 +Charlotte Cty to Sarasota on Hwy. 75,,LIGHT,FL,9/7/1999 5:00 +Manasota Key,,FIREBALL,FL,9/7/1999 5:00 +Slidell,ORANGE GREEN BLUE,DISK,LA,9/7/1999 5:00 +Tampa,,OTHER,FL,9/7/1999 5:00 +South Miami,BLUE,FIREBALL,FL,9/7/1999 5:03 +Tavares,,CIGAR,FL,9/7/1999 5:04 +"Ocoee, FL but reported on radio as far south as Lake Wales,",,OTHER,FL,9/7/1999 5:05 +"Poinciana,Lake Wales,Lake Helen,Kissimmee",,VARIOUS,FL,9/7/1999 5:05 +St. Petersburg,,CIGAR,FL,9/7/1999 5:10 +Gulfport,RED,SPHERE,MS,9/7/1999 5:40 +Los Angeles,,OVAL,CA,9/7/1999 7:15 +Gallatin,,CYLINDER,TN,9/7/1999 12:15 +Elk Grove,,LIGHT,CA,9/7/1999 20:07 +Rhinelander,RED GREEN,TEARDROP,WI,9/7/1999 21:18 +Pierceton,,CONE,IN,9/7/1999 21:30 +Sumner,,FORMATION,WA,9/7/1999 22:30 +Salem,,OTHER,OR,9/7/1999 22:35 +Lake Oswego,,LIGHT,OR,9/7/1999 22:37 +Austin,RED BLUE,,TX,9/7/1999 23:00 +Andover,GREEN,,MA,9/8/1999 1:30 +French Village,,FIREBALL,MO,9/8/1999 12:00 +Prairie View,,LIGHT,IL,9/8/1999 12:00 +Desert Aire,YELLOW,OTHER,WA,9/8/1999 19:00 +Alsea,,LIGHT,OR,9/8/1999 20:00 +Redding Airport,,LIGHT,CA,9/8/1999 20:57 +Alsea,,FORMATION,OR,9/8/1999 21:00 +Denver,,LIGHT,CO,9/8/1999 21:10 +Spokane,,FORMATION,WA,9/8/1999 21:45 +Bellingham,,TRIANGLE,WA,9/8/1999 21:58 +Albany,,TRIANGLE,OR,9/8/1999 22:00 +Renton,,LIGHT,WA,9/9/1999 0:40 +Mentor,,VARIOUS,OH,9/9/1999 2:00 +Los Altos,,CIRCLE,CA,9/9/1999 5:00 +Shasta,GREEN,FIREBALL,CA,9/9/1999 12:35 +Marathon,,DISK,FL,9/9/1999 19:00 +Bothell,GREEN,OTHER,WA,9/9/1999 22:00 +Mount Shasta,,,CA,9/9/1999 22:00 +Santa Cruz,,OTHER,CA,9/9/1999 22:00 +Shasta,,DISK,CA,9/9/1999 22:00 +Florence,,LIGHT,MT,9/10/1999 2:00 +Vacaville,,FIREBALL,CA,9/10/1999 2:13 +Brentwood,ORANGE,,TN,9/10/1999 3:15 +Milwaukee,,TRIANGLE,WI,9/10/1999 5:00 +Modesto,,FORMATION,CA,9/10/1999 12:35 +Fair Oaks,,CYLINDER,CA,9/10/1999 13:35 +Gardendale,,OTHER,AL,9/10/1999 14:05 +Kansas City,,TEARDROP,KS,9/10/1999 19:43 +Arlington,,OTHER,VA,9/10/1999 21:41 +Bremerton,,TRIANGLE,WA,9/10/1999 22:00 +Cotton,,TRIANGLE,MN,9/10/1999 22:00 +Atlanta,,LIGHT,GA,9/10/1999 22:29 +Houston,,SPHERE,TX,9/10/1999 22:30 +Pollock Pines,,LIGHT,CA,9/10/1999 23:00 +Fargo,,LIGHT,ND,9/11/1999 5:50 +Pasadena,,DIAMOND,MD,9/11/1999 15:30 +Puyallup,,LIGHT,WA,9/11/1999 16:08 +Brownwood,,DISK,TX,9/11/1999 19:00 +Casper,,TRIANGLE,WY,9/11/1999 20:00 +Spokane,YELLOW GREEN,FIREBALL,WA,9/11/1999 20:00 +Vernal,,CHEVRON,UT,9/11/1999 20:10 +Spokane,GREEN,LIGHT,WA,9/11/1999 20:24 +Spokane,,OTHER,WA,9/11/1999 20:25 +Spokane,,VARIOUS,WA,9/11/1999 20:25 +Clifton,,OVAL,NJ,9/11/1999 20:45 +New Milford,,OVAL,NJ,9/11/1999 20:45 +Paramus,,CIRCLE,NJ,9/11/1999 21:20 +Boise,BLUE,TEARDROP,ID,9/11/1999 21:30 +Bradley Beach,,LIGHT,NJ,9/11/1999 21:30 +Fort Edward,,TRIANGLE,NY,9/11/1999 21:30 +Kirkersville,,VARIOUS,OH,9/11/1999 21:57 +Charlotte,,LIGHT,NC,9/11/1999 21:58 +Cornelius,,LIGHT,OR,9/11/1999 22:00 +Grand Rapids,,FLASH,MI,9/11/1999 22:00 +Acton,GREEN,FIREBALL,CA,9/11/1999 22:16 +Newark,,DISK,NJ,9/11/1999 22:45 +Nantahala National Forest,,LIGHT,NC,9/11/1999 22:50 +Jordon,,LIGHT,MN,9/11/1999 23:00 +Roland Heights,,FIREBALL,CA,9/11/1999 23:00 +Campbell,,LIGHT,CA,9/12/1999 1:15 +Philadelphia,RED ORANGE YELLOW,CIRCLE,PA,9/12/1999 5:15 +Darlington,,DISK,SC,9/12/1999 10:00 +Navajo,,OVAL,AZ,9/12/1999 12:45 +Union,,,NJ,9/12/1999 18:30 +Idaho City,,LIGHT,ID,9/12/1999 20:00 +Pagosa Springs,,CIGAR,CO,9/12/1999 20:55 +Olympia,,LIGHT,WA,9/12/1999 21:10 +Navarre Beach,ORANGE YELLOW,LIGHT,FL,9/12/1999 22:00 +Ashland,,FIREBALL,OH,9/13/1999 1:01 +Blanchardville,,OTHER,WI,9/13/1999 2:15 +Claremont,,LIGHT,CA,9/13/1999 4:00 +Selinsgrove,,,PA,9/13/1999 4:25 +Newburyport,,OVAL,MA,9/13/1999 4:30 +Mt Rainier,,LIGHT,WA,9/13/1999 11:00 +Wilmington,,OTHER,MA,9/13/1999 11:30 +Bellingham,ORANGE,OVAL,WA,9/13/1999 20:30 +DePere,,CIRCLE,WI,9/13/1999 21:00 +St. Joseph,,LIGHT,MI,9/13/1999 22:05 +Tulsa,,FLASH,OK,9/13/1999 23:10 +Laurel,ORANGE,CIRCLE,MD,9/14/1999 6:00 +Federal Way,,CYLINDER,WA,9/14/1999 9:00 +Federal Way,ORANGE,CYLINDER,WA,9/14/1999 16:30 +Gresham,,VARIOUS,OR,9/14/1999 19:07 +Center Moriches,,LIGHT,NY,9/14/1999 20:00 +Bryan,,TRIANGLE,TX,9/14/1999 21:45 +Vancouver,,DIAMOND,WA,9/14/1999 22:00 +Mukilteo,GREEN,CIRCLE,WA,9/14/1999 22:29 +Egg Harbor,,,WY,9/15/1999 0:00 +"Dayton,Trotwood,West Carrollton",,TRIANGLE,OH,9/15/1999 0:10 +Temecula,,SPHERE,CA,9/15/1999 1:30 +Terre Haute,,TRIANGLE,IN,9/15/1999 5:00 +Smithville,,LIGHT,TN,9/15/1999 7:00 +Bath,,TRIANGLE,ME,9/15/1999 9:00 +Minneapolis,,CIRCLE,MN,9/15/1999 18:50 +Nampa,,,ID,9/15/1999 20:00 +Pomona,,LIGHT,CA,9/15/1999 20:15 +Rushville,,FIREBALL,IL,9/15/1999 20:50 +Danville,,,VA,9/15/1999 21:00 +Lebanon,,TRIANGLE,OH,9/15/1999 21:00 +Rushville,ORANGE,LIGHT,IL,9/15/1999 21:05 +Nampa,,TRIANGLE,ID,9/15/1999 21:36 +Estacada,,VARIOUS,OR,9/15/1999 22:00 +Plantation,,TRIANGLE,FL,9/15/1999 22:00 +Santa Ana,,TRIANGLE,CA,9/15/1999 22:50 +Columbia Falls,,DISK,MT,9/15/1999 23:00 +Cedar Rapids,,,IA,9/15/1999 23:30 +Secane,,,PA,9/15/1999 23:45 +Elgin,,DISK,TX,9/16/1999 3:00 +Menomonie,,CIRCLE,WI,9/16/1999 4:04 +Menomonie,,EGG,WI,9/16/1999 4:05 +Menomonie,,CIRCLE,WI,9/16/1999 22:00 +Hinsdale,,OTHER,IL,9/17/1999 1:00 +Western North Carolina Mountains,,FIREBALL,NC,9/17/1999 5:35 +White Rock,,CIRCLE,SC,9/17/1999 6:10 +Payson,,SPHERE,UT,9/17/1999 16:30 +Honolulu,,CIRCLE,HI,9/17/1999 19:27 +Boring,,CIRCLE,OR,9/17/1999 20:11 +Anacoco,,DISK,LA,9/17/1999 20:50 +Canby,RED,CIRCLE,OR,9/17/1999 21:05 +Cheyenne,,,WY,9/17/1999 21:55 +Hazelwood,,TRIANGLE,MO,9/17/1999 22:00 +Phoenix,,OVAL,AZ,9/17/1999 22:00 +Council Bluffs,,FLASH,IA,9/17/1999 22:18 +Dandridge,RED,TRIANGLE,TN,9/17/1999 22:30 +Virginia Beach,,FIREBALL,VA,9/17/1999 23:55 +New York City,,,NY,9/18/1999 1:00 +Kill Devil Hills,ORANGE,FORMATION,NC,9/18/1999 1:38 +Seattle,,,WA,9/18/1999 6:25 +Catalina,,SPHERE,AZ,9/18/1999 8:25 +East Machias,,LIGHT,ME,9/18/1999 9:15 +Nashville,,CIRCLE,TN,9/18/1999 18:30 +John Day,,LIGHT,OR,9/18/1999 20:05 +Philadelphia,,CIRCLE,PA,9/18/1999 21:00 +Snohomish,RED,,WA,9/18/1999 21:08 +Seattle,,TRIANGLE,WA,9/19/1999 2:51 +Cleveland,,CIGAR,TX,9/19/1999 3:00 +Tampa,,FLASH,FL,9/19/1999 3:06 +Santa Barbara,,DISK,CA,9/19/1999 8:50 +Santa Barbara,,OTHER,CA,9/19/1999 8:50 +Ashville,,OTHER,OH,9/19/1999 11:00 +Janesville,,LIGHT,WI,9/19/1999 17:00 +Bothell,,LIGHT,WA,9/19/1999 17:10 +Philadelphia,,DISK,PA,9/19/1999 20:23 +Mission Viejo,RED,LIGHT,CA,9/20/1999 4:00 +I-80,,CIRCLE,UT,9/20/1999 5:30 +Highland Park,,TRIANGLE,CA,9/20/1999 10:45 +Hattiesburg,,SPHERE,MS,9/20/1999 13:00 +Barrington,,CIGAR,NH,9/20/1999 17:10 +Mesa,,LIGHT,AZ,9/20/1999 19:00 +Silver Fork,,SPHERE,CA,9/20/1999 22:30 +Denver,,LIGHT,CO,9/21/1999 8:00 +Hamilton,,DISK,MT,9/21/1999 9:10 +San Diego,RED,CIRCLE,CA,9/21/1999 18:00 +Indianapolis,,CHEVRON,IN,9/21/1999 18:45 +Spokane,,FIREBALL,WA,9/21/1999 18:55 +Post Falls,,FIREBALL,ID,9/21/1999 19:15 +Chatfield,,OVAL,TX,9/21/1999 19:30 +Columbia Station,,DISK,OH,9/21/1999 20:30 +Everett,,VARIOUS,WA,9/21/1999 20:49 +Manassas,,CIRCLE,VA,9/22/1999 0:20 +LaCygne,,VARIOUS,KS,9/22/1999 1:00 +Wharton,,TRIANGLE,OH,9/22/1999 21:30 +Maple Grove,,OVAL,MN,9/22/1999 23:45 +Millsboro,,EGG,DE,9/23/1999 14:00 +Victor,,FORMATION,ID,9/23/1999 18:25 +Whitefish,RED,CIRCLE,MT,9/23/1999 22:00 +Hailey,,CIRCLE,ID,9/23/1999 22:50 +Chico,,OTHER,CA,9/24/1999 7:00 +Philadelphia,,FIREBALL,PA,9/24/1999 18:00 +New York,,LIGHT,NY,9/24/1999 19:30 +Troy,,TRIANGLE,MI,9/24/1999 19:30 +Euless,,,TX,9/24/1999 20:30 +Lower Lake,,TRIANGLE,CA,9/24/1999 22:00 +Franklin,RED BLUE,CIRCLE,NC,9/25/1999 2:00 +Everett,,LIGHT,WA,9/25/1999 19:15 +Goldendale,GREEN,CIRCLE,WA,9/25/1999 19:30 +Ewen,BLUE,FIREBALL,MI,9/25/1999 20:00 +Nashville,,CIGAR,TN,9/25/1999 20:00 +Riverside,,OTHER,CA,9/25/1999 21:20 +Duanesburg,,LIGHT,NY,9/25/1999 22:00 +Las Vegas,,DISK,NV,9/25/1999 23:08 +Las Vegas,,OVAL,NV,9/25/1999 23:08 +Lake Oswego,,FORMATION,OR,9/25/1999 23:10 +La Grande,,FIREBALL,OR,9/26/1999 9:30 +Bellevue,,TRIANGLE,WA,9/26/1999 11:30 +Calumet City,,CIRCLE,IL,9/26/1999 15:31 +Cape Kennedy,,OTHER,FL,9/27/1999 14:00 +Canby,,FORMATION,OR,9/27/1999 19:57 +Encino,,LIGHT,CA,9/27/1999 20:30 +Upper Sandusky,ORANGE,FIREBALL,OH,9/27/1999 21:45 +Columbus,,LIGHT,OH,9/28/1999 1:20 +Scottsdale,,DISK,AZ,9/28/1999 18:50 +Poca,,DISK,WV,9/28/1999 22:00 +Lubbock,,OTHER,TX,9/29/1999 7:02 +Olathe,,SPHERE,KS,9/29/1999 15:25 +Nashville,,FIREBALL,TN,9/29/1999 18:45 +Midwest City,RED GREEN,RECTANGLE,OK,9/29/1999 21:10 +Lawrence,,TRIANGLE,KS,9/29/1999 21:37 +Overland Park,,FIREBALL,KS,9/29/1999 22:30 +Morrowville,,SPHERE,KS,9/30/1999 15:35 +San Jose,,CIRCLE,CA,9/30/1999 17:30 +Chandler,,SPHERE,AZ,9/30/1999 19:30 +Mount Vernon,RED,DISK,WA,9/30/1999 20:24 +Rockville,,TRIANGLE,MD,9/30/1999 20:29 +Aberdeen,,TRIANGLE,WA,9/30/1999 21:00 +Livingston,,OTHER,NJ,9/30/1999 21:00 +Montesano,,TRIANGLE,WA,9/30/1999 21:00 +Pearl Ridge,BLUE,SPHERE,HI,9/30/1999 21:00 +San Rafael,,TRIANGLE,CA,9/30/1999 22:30 +San Antonio,,FIREBALL,TX,10/1/1999 0:30 +Oak Brook,GREEN,LIGHT,IL,10/1/1999 1:00 +Portland,,LIGHT,OR,10/1/1999 4:00 +Elyria,BLUE,TRIANGLE,OH,10/1/1999 4:40 +New York City,,,NY,10/1/1999 17:00 +Norman,,CIGAR,OK,10/1/1999 18:12 +Las Vegas,,LIGHT,NV,10/1/1999 19:00 +Nellis Air Force Base,,LIGHT,NV,10/1/1999 19:00 +Miami,GREEN,,FL,10/1/1999 20:00 +Endicott,,FORMATION,NY,10/1/1999 21:30 +Independence,,CHEVRON,MO,10/1/1999 22:05 +Alhambra,GREEN,LIGHT,CA,10/2/1999 1:45 +Tulsa,,CHEVRON,OK,10/2/1999 1:45 +Lewiston,,OTHER,NY,10/2/1999 12:00 +Prairie City,,CIGAR,OR,10/2/1999 19:08 +Tracy,,OTHER,CA,10/2/1999 19:15 +San Diego Co.,,DIAMOND,CA,10/2/1999 20:00 +St. George,,DISK,UT,10/2/1999 20:00 +Newport,,VARIOUS,OR,10/2/1999 20:30 +Vicksburg,,CIRCLE,MS,10/2/1999 22:00 +Kalispell,,CHEVRON,MT,10/2/1999 22:45 +Bridgeport,,CIRCLE,CT,10/3/1999 15:30 +Anson,,SPHERE,ME,10/3/1999 19:00 +Duncanville,,TRIANGLE,TX,10/3/1999 20:20 +Battle Ground,BLUE,CIRCLE,WA,10/3/1999 21:40 +Clackamas,GREEN,FIREBALL,OR,10/3/1999 21:40 +Tacoma,GREEN,CIRCLE,WA,10/3/1999 21:41 +Beaverton,,FIREBALL,OR,10/3/1999 21:44 +Salem,,FLASH,OR,10/3/1999 21:45 +Seattle,,TEARDROP,WA,10/3/1999 21:45 +Wilsonville,GREEN,FIREBALL,OR,10/3/1999 21:55 +Trail,,FIREBALL,OR,10/3/1999 22:00 +Trail,,FIREBALL,OR,10/3/1999 22:15 +Tacoma,GREEN,FIREBALL,WA,10/3/1999 22:40 +Orondo,,,WA,10/3/1999 23:00 +Kennesaw,,CIGAR,GA,10/3/1999 23:15 +Broomfield,,,CO,10/4/1999 2:00 +Rochester,,LIGHT,MN,10/4/1999 3:00 +Mount Vernon,,FIREBALL,WA,10/4/1999 10:05 +Gillette,,OTHER,WY,10/4/1999 17:25 +Tucson,,,AZ,10/4/1999 19:25 +Houston,,EGG,TX,10/4/1999 19:51 +Tampa,,CIRCLE,FL,10/5/1999 8:25 +Los Angeles,,CIGAR,GA,10/5/1999 15:00 +Yuma,,OTHER,AZ,10/5/1999 20:30 +Rosemount,,TRIANGLE,MN,10/5/1999 20:35 +Chesapeake,,OTHER,VA,10/5/1999 21:00 +Houston,,CHEVRON,TX,10/5/1999 21:00 +Tucson,,TRIANGLE,AZ,10/5/1999 21:15 +Wichita,,LIGHT,KS,10/6/1999 19:32 +St. Petersburg,,,FL,10/6/1999 20:00 +Angleton,RED,CROSS,TX,10/6/1999 20:35 +Manchester,,DISK,MO,10/6/1999 21:00 +May's Landing,,DISK,NJ,10/6/1999 22:46 +Conestoga,RED ORANGE,LIGHT,PA,10/6/1999 23:10 +Austin,,OTHER,TX,10/7/1999 4:00 +Goose Creek,BLUE,DISK,SC,10/7/1999 6:45 +Bouse,,FORMATION,AZ,10/7/1999 19:50 +Elkton,,,MD,10/7/1999 22:00 +Springfield,,FORMATION,MA,10/7/1999 23:02 +Bellevue,,CIRCLE,WA,10/8/1999 19:45 +Munds Park,,CONE,AZ,10/8/1999 21:00 +Bel Air,,TRIANGLE,MD,10/8/1999 21:30 +Lakeside,RED,DIAMOND,CA,10/8/1999 21:30 +Tyler,,FLASH,TX,10/8/1999 22:00 +Detroit Lakes,,TRIANGLE,MN,10/8/1999 23:15 +Los Angeles,,TRIANGLE,CA,10/9/1999 0:33 +Fairfield,,FIREBALL,CA,10/9/1999 1:00 +Port Orange,,DISK,FL,10/9/1999 12:15 +Leesburg,RED,OTHER,FL,10/9/1999 21:30 +Harker Heigts,,OTHER,TX,10/9/1999 22:00 +Martinez,RED GREEN,VARIOUS,CA,10/10/1999 0:01 +Kansas City,,,KS,10/10/1999 4:00 +Dallas,,OTHER,TX,10/10/1999 6:00 +San Diego,,FIREBALL,CA,10/10/1999 11:00 +Kennewick,,SPHERE,WA,10/10/1999 12:40 +Hayward,,CIRCLE,CA,10/10/1999 20:35 +Ashland,,LIGHT,MO,10/10/1999 21:00 +Rachel,,LIGHT,NV,10/10/1999 21:00 +Humphrey,,SPHERE,NE,10/10/1999 21:30 +Casey Key,,TRIANGLE,FL,10/10/1999 22:30 +Elgin,ORANGE,CHEVRON,OR,10/10/1999 22:30 +Lewiston,,OVAL,MI,10/10/1999 23:45 +Montgomery,,LIGHT,AL,10/11/1999 0:15 +Los Angeles,,LIGHT,CA,10/11/1999 4:30 +Somerset?,RED,,WI,10/11/1999 6:10 +Three Rivers,,OVAL,MI,10/11/1999 7:40 +Canby,,LIGHT,OR,10/11/1999 9:10 +Portville,,OVAL,NY,10/11/1999 20:15 +Portville,,OVAL,NY,10/11/1999 20:15 +Portville,YELLOW,OVAL,NY,10/11/1999 20:15 +Portville,YELLOW BLUE,OVAL,NY,10/11/1999 20:15 +Kirbyville,,OTHER,MO,10/11/1999 20:35 +Winnemucca,,CIGAR,NV,10/11/1999 21:00 +Ashland,,TRIANGLE,OR,10/11/1999 21:10 +Augusta,,LIGHT,KS,10/11/1999 21:30 +Montgomery,,LIGHT,TX,10/11/1999 21:30 +Eureka Springs,,LIGHT,AR,10/11/1999 21:45 +Parker's Lake,,DISK,KY,10/11/1999 22:15 +Addison,RED,DISK,IL,10/11/1999 22:30 +Missoula,,TRIANGLE,MT,10/12/1999 1:30 +Albany,,FIREBALL,OR,10/12/1999 5:11 +Miami,,OVAL,OK,10/12/1999 9:00 +Jersey,,DISK,NJ,10/12/1999 10:30 +Breezewood,YELLOW,FIREBALL,PA,10/12/1999 12:07 +Scottsdale,,CIGAR,AZ,10/12/1999 17:15 +Palominas,,TRIANGLE,AZ,10/12/1999 20:00 +Minnesota,,CHEVRON,MN,10/12/1999 21:33 +Port Townsend,,TRIANGLE,WA,10/12/1999 21:35 +Phoenix,ORANGE,FIREBALL,AZ,10/12/1999 22:00 +Tulsa,,OTHER,OK,10/12/1999 22:15 +Little Falls,,FORMATION,MN,10/12/1999 23:00 +Norwark,,FIREBALL,CT,10/12/1999 23:00 +Santa Fe,,DISK,NM,10/13/1999 9:45 +Florence,,TRIANGLE,KY,10/13/1999 17:20 +Pittsburgh,,OTHER,PA,10/13/1999 18:00 +Boscobel,RED,LIGHT,WI,10/13/1999 19:45 +Lansing,,CIRCLE,MI,10/13/1999 22:00 +Prescott,,LIGHT,AZ,10/14/1999 8:30 +Yonkers,,LIGHT,NY,10/14/1999 14:00 +El Paso,,TRIANGLE,TX,10/14/1999 20:15 +Mead,BLUE,LIGHT,WA,10/14/1999 20:20 +Warrensville,,CIRCLE,NC,10/14/1999 20:30 +Nashville,,LIGHT,TN,10/14/1999 22:10 +Raymond,,TRIANGLE,NH,10/14/1999 22:50 +Weed,GREEN,FIREBALL,CA,10/15/1999 0:00 +Lexington,,FIREBALL,MA,10/15/1999 2:00 +Columbia,,TRIANGLE,MO,10/15/1999 2:30 +Clines Corners,BLUE,LIGHT,NM,10/15/1999 3:00 +Conconully,,LIGHT,WA,10/15/1999 3:00 +Ritzville,,TRIANGLE,WA,10/15/1999 3:00 +Millersburg,,TRIANGLE,MO,10/15/1999 4:30 +Holden,,OVAL,MA,10/15/1999 5:00 +Lewistown,GREEN,LIGHT,MO,10/15/1999 6:01 +Fairfield,,LIGHT,ME,10/15/1999 8:00 +Old Westbury,,DISK,NY,10/15/1999 12:30 +Fremont,,DIAMOND,IN,10/15/1999 14:30 +Sierra Vista,,CIRCLE,AZ,10/15/1999 18:00 +Taylor,,SPHERE,MI,10/15/1999 18:30 +Kansas City,,OTHER,MO,10/15/1999 19:00 +Newbern,,LIGHT,TN,10/15/1999 19:20 +Breckenridge,,OTHER,TX,10/15/1999 20:00 +Seattle,,CHEVRON,WA,10/15/1999 20:15 +Ellis,,LIGHT,KS,10/15/1999 20:30 +Ellis,,OVAL,KS,10/15/1999 20:30 +Yerington,,CHEVRON,NV,10/15/1999 20:30 +Phoenix,ORANGE,SPHERE,AZ,10/15/1999 21:00 +Buffalo,ORANGE,TRIANGLE,NY,10/15/1999 23:00 +Copeville,GREEN,TRIANGLE,TX,10/15/1999 23:00 +Stockbridge,,TRIANGLE,GA,10/15/1999 23:00 +Geyserville,,,CA,10/15/1999 23:30 +Conway,BLUE,SPHERE,AR,10/16/1999 0:05 +Redwood Shores,,OTHER,CA,10/16/1999 18:30 +San Mateo,,DISK,CA,10/16/1999 19:00 +Chattanooga,,TRIANGLE,TN,10/16/1999 21:35 +Danville,RED,LIGHT,KY,10/16/1999 22:00 +The Colony,,TRIANGLE,TX,10/16/1999 22:00 +Houston,,OVAL,TX,10/16/1999 22:15 +Chatsworth,ORANGE,SPHERE,GA,10/16/1999 22:30 +Signal Mountain,ORANGE,CIGAR,TN,10/17/1999 3:30 +Moab,,FIREBALL,UT,10/17/1999 4:00 +Charlotte,,CIGAR,NC,10/17/1999 14:00 +Jacksonville,,CHEVRON,FL,10/17/1999 15:00 +Jacksonville,,CHEVRON,FL,10/17/1999 15:00 +Covington,,VARIOUS,WA,10/17/1999 15:05 +Warrensville,,LIGHT,NC,10/17/1999 21:00 +Los Angeles,,CHEVRON,CA,10/18/1999 1:45 +Latrobe,,,PA,10/18/1999 3:00 +Ventura,,,CA,10/18/1999 4:30 +Bellevue,RED GREEN,LIGHT,WA,10/18/1999 4:33 +Page,,CIRCLE,AZ,10/18/1999 20:00 +Atlanta,,OTHER,GA,10/18/1999 23:38 +Van Nuys,,TRIANGLE,CA,10/19/1999 3:10 +Mesa,,LIGHT,AZ,10/19/1999 5:45 +Everson,,OTHER,WA,10/19/1999 7:35 +Bozeman,,,MT,10/19/1999 17:30 +Santa Clarita Valley,RED,DISK,CA,10/19/1999 18:30 +Indianapolis,,LIGHT,IN,10/19/1999 19:20 +Superior,,LIGHT,CO,10/19/1999 20:00 +Apache Junction,,OTHER,AZ,10/19/1999 22:00 +Round Rock,,SPHERE,TX,10/19/1999 22:45 +Conway,BLUE,TRIANGLE,AR,10/19/1999 23:35 +Seattle,,SPHERE,WA,10/20/1999 1:30 +White River National Forest,,LIGHT,AR,10/20/1999 2:00 +Boise,,LIGHT,ID,10/20/1999 7:25 +Stevensville,,OTHER,MT,10/20/1999 8:15 +Stevensville,,OTHER,MT,10/20/1999 8:15 +Temple,,CYLINDER,TX,10/20/1999 19:00 +Spanaway,,,WA,10/20/1999 22:20 +Shoreline,ORANGE YELLOW,FIREBALL,WA,10/20/1999 22:25 +Amity,ORANGE,CIRCLE,OR,10/20/1999 22:30 +Milwaukee,,SPHERE,WI,10/20/1999 22:30 +Montesano,,FIREBALL,WA,10/20/1999 22:30 +Tumwater,,FIREBALL,WA,10/20/1999 22:30 +Portland,,CIRCLE,OR,10/20/1999 22:33 +Kingston,,LIGHT,WA,10/20/1999 22:35 +Lewistown,,OTHER,IL,10/20/1999 23:00 +Lakeville,GREEN,LIGHT,MN,10/21/1999 3:45 +Kansas City,,CYLINDER,MO,10/21/1999 11:55 +Tehachapi,BLUE,CHEVRON,CA,10/21/1999 13:00 +Lancaster,,LIGHT,PA,10/21/1999 20:00 +Maryville,,CYLINDER,TN,10/21/1999 21:00 +Auburn,,LIGHT,WA,10/21/1999 22:35 +Tigard,,LIGHT,OR,10/21/1999 23:40 +Ripley,,RECTANGLE,TN,10/22/1999 1:30 +Klamath Falls,,SPHERE,OR,10/22/1999 6:10 +Hamilton,,CIGAR,OH,10/22/1999 9:00 +Kansas City,,CYLINDER,MO,10/22/1999 12:00 +Irvine,,DIAMOND,CA,10/22/1999 13:30 +Daytona Beach,,VARIOUS,FL,10/22/1999 14:10 +Sikeston,GREEN,LIGHT,MO,10/22/1999 22:45 +Rocklin,,,CA,10/23/1999 6:30 +Florien,,TEARDROP,LA,10/23/1999 7:15 +Erie,,CYLINDER,CO,10/23/1999 18:00 +Hayward,,CYLINDER,CA,10/23/1999 21:00 +Hayward,,DISK,CA,10/23/1999 21:30 +Norwood,,TRIANGLE,PA,10/23/1999 22:30 +Mesa,,LIGHT,AZ,10/24/1999 1:15 +Iowa City,,SPHERE,IA,10/24/1999 6:00 +Baldwin,,LIGHT,WI,10/24/1999 11:30 +Downers Grove,,OVAL,IL,10/24/1999 22:00 +Gardena,,CHEVRON,CA,10/24/1999 23:35 +Florence,,VARIOUS,MS,10/25/1999 11:30 +Corinne,,DISK,UT,10/25/1999 12:18 +Arlington,,SPHERE,TX,10/25/1999 15:00 +Huntington Beach,,EGG,CA,10/25/1999 19:30 +Lawrenceville,,TRIANGLE,GA,10/25/1999 21:00 +Yadkinville,,FIREBALL,NC,10/25/1999 21:00 +Bullhead City,RED,LIGHT,AZ,10/25/1999 23:05 +San Jose,,VARIOUS,CA,10/26/1999 0:00 +Reseda,,SPHERE,CA,10/26/1999 1:40 +Costa Mesa,,LIGHT,CA,10/26/1999 2:38 +Dallas,,TRIANGLE,TX,10/26/1999 2:40 +DFW Airport,,,TX,10/26/1999 2:40 +Carthage,RED,TRIANGLE,TX,10/26/1999 4:30 +Cookstown,RED GREEN,CYLINDER,NJ,10/26/1999 6:00 +Concord,,OTHER,NC,10/26/1999 7:05 +Clinton,,TRIANGLE,SC,10/26/1999 12:00 +Oshkosh,,CYLINDER,WI,10/26/1999 14:45 +Charlotte,,LIGHT,NC,10/26/1999 18:00 +Moravia,RED,FLASH,NY,10/26/1999 19:10 +Tacoma,,TRIANGLE,WA,10/26/1999 19:30 +Chesapeak Bay,,DISK,MD,10/26/1999 20:00 +Melbourne Beach,,TRIANGLE,FL,10/26/1999 21:00 +Studio City,,TRIANGLE,CA,10/26/1999 21:00 +Lombard,,DISK,IL,10/26/1999 22:00 +Westmont,ORANGE,OVAL,IL,10/26/1999 22:05 +Chicago,,,IL,10/26/1999 22:15 +Petal,,TRIANGLE,MS,10/26/1999 23:12 +Laurel,RED GREEN,OVAL,MS,10/26/1999 23:13 +Kansas City,,CIRCLE,MO,10/27/1999 16:45 +Austin,,OVAL,TX,10/27/1999 19:30 +Tucson,,FIREBALL,AZ,10/27/1999 23:00 +Knoxville,,,TN,10/27/1999 23:55 +Canfield,RED BLUE,LIGHT,OH,10/28/1999 1:40 +Augusta,,LIGHT,KS,10/28/1999 1:50 +Cedar Rapids,,TEARDROP,IA,10/28/1999 4:47 +Little Rock,,,AR,10/28/1999 13:45 +Phoenix,,VARIOUS,AZ,10/28/1999 17:55 +Rachel,,LIGHT,NV,10/29/1999 1:30 +Tuscaloosa,,CIRCLE,AL,10/29/1999 17:45 +Ocean City,,LIGHT,MD,10/29/1999 21:30 +Bozeman,,LIGHT,MT,10/29/1999 22:00 +Carpinteria,,LIGHT,CA,10/30/1999 0:25 +La Jolla,,TRIANGLE,CA,10/30/1999 3:36 +Woodbridge,RED ORANGE,OVAL,VA,10/30/1999 18:55 +San Diego,,CHEVRON,CA,10/30/1999 19:25 +Tracy,,DISK,CA,10/30/1999 20:00 +La Grande,,RECTANGLE,OR,10/30/1999 22:00 +Smithville,RED,CIRCLE,TX,10/30/1999 22:30 +Martha's Vinyard,,,MA,10/31/1999 0:00 +Houston,RED BLUE,CYLINDER,TX,10/31/1999 0:30 +San Diego,ORANGE,FIREBALL,CA,10/31/1999 9:30 +Denver,,SPHERE,CO,10/31/1999 17:30 +Rochelle,,FIREBALL,IL,10/31/1999 18:00 +Graham,,OTHER,WA,10/31/1999 18:15 +Nassau,,TRIANGLE,NY,10/31/1999 18:45 +Clinton,,,WA,10/31/1999 19:00 +Imperial Beach,RED,FIREBALL,CA,10/31/1999 19:30 +Ashland,YELLOW,OTHER,OR,10/31/1999 20:00 +Auburn,GREEN,RECTANGLE,GA,10/31/1999 20:00 +Auburn,GREEN,CIRCLE,GA,10/31/1999 20:30 +Billings,RED,,MT,10/31/1999 21:30 +Orland Park,,CIRCLE,IL,10/31/1999 23:30 +Turner,RED,CIRCLE,OR,10/31/1999 23:48 +New Orleans,,CYLINDER,LA,11/1/1999 0:00 +Newberg,,OTHER,OR,11/1/1999 2:00 +Scappoose,RED,OVAL,OR,11/1/1999 3:00 +Las Vegas,,OVAL,NV,11/1/1999 4:00 +South Bend,GREEN,TRIANGLE,IN,11/1/1999 6:22 +Walker County,RED,CIRCLE,TX,11/1/1999 15:00 +New York City,,CIGAR,NY,11/1/1999 16:40 +San Diego,,EGG,CA,11/1/1999 17:50 +Notrees,,LIGHT,TX,11/1/1999 18:30 +Clear Lake,,VARIOUS,TX,11/1/1999 19:10 +Torrance,,TRIANGLE,CA,11/1/1999 20:00 +Howell,,DISK,MI,11/1/1999 21:30 +South Republic,,TRIANGLE,MI,11/1/1999 22:30 +Kent,RED,DISK,WA,11/2/1999 1:00 +Baton Rouge,,TRIANGLE,LA,11/2/1999 19:15 +Duncan,,OTHER,OK,11/2/1999 20:25 +South Pasadena,ORANGE,CIRCLE,CA,11/2/1999 20:25 +Area 51,,CIRCLE,NV,11/3/1999 2:00 +Jackson,RED,LIGHT,TN,11/3/1999 3:30 +Amarillo,,CIRCLE,TX,11/3/1999 17:30 +Leighton,ORANGE,TRIANGLE,AL,11/3/1999 21:00 +Pueblo,,OTHER,CO,11/4/1999 0:28 +Issaquah,,TRIANGLE,WA,11/4/1999 13:50 +Kent,,DISK,WA,11/4/1999 22:50 +Hillsborough,,OVAL,CA,11/5/1999 0:00 +Santa Rosa,,,CA,11/5/1999 0:30 +Hauppauge,,DISK,NY,11/5/1999 3:10 +Burlingame,,VARIOUS,CA,11/5/1999 17:30 +Santa Clara,,RECTANGLE,CA,11/5/1999 18:15 +Raleigh,,DISK,NC,11/5/1999 18:44 +Carbondale,RED,DISK,KS,11/5/1999 19:30 +Rancho Santa Margarita,,CHEVRON,CA,11/5/1999 19:30 +Springfield,RED,FIREBALL,MO,11/5/1999 21:35 +Fair Oaks,,DIAMOND,CA,11/5/1999 22:34 +Wyoming,RED BLUE,LIGHT,MI,11/6/1999 0:23 +Landover,,CIRCLE,MD,11/6/1999 1:30 +Canon City,RED,LIGHT,CO,11/6/1999 2:15 +Allentown,,DISK,PA,11/6/1999 11:43 +Matawan,ORANGE,TRIANGLE,NJ,11/6/1999 18:03 +Chaco Canyon,,OTHER,NM,11/6/1999 20:30 +Ashland,,DISK,WI,11/6/1999 22:00 +Pittsburgh,,FORMATION,PA,11/6/1999 23:45 +Charlotte,,LIGHT,NC,11/7/1999 3:00 +Northbrook,,DIAMOND,IL,11/7/1999 17:58 +Almont,,LIGHT,MI,11/7/1999 18:00 +Princeton,,,NJ,11/7/1999 21:40 +Bullhead City,,LIGHT,AZ,11/7/1999 22:55 +Emmetsburg,,,IA,11/8/1999 5:28 +New York City,,LIGHT,NY,11/8/1999 6:32 +Iowa City,BLUE,EGG,IA,11/8/1999 10:00 +Hurst,,TRIANGLE,TX,11/8/1999 11:00 +San Francisco,,LIGHT,CA,11/8/1999 19:00 +Hinesburg,,,VT,11/8/1999 19:15 +Austin,,,TX,11/8/1999 20:45 +La Grande,,FORMATION,OR,11/8/1999 22:25 +Irma,,OTHER,WI,11/8/1999 23:00 +Atlanta,GREEN,TEARDROP,GA,11/9/1999 2:40 +Killeen,,LIGHT,TX,11/9/1999 3:45 +Fort Smith,,LIGHT,AR,11/9/1999 5:13 +Cave Spring,,DISK,GA,11/9/1999 6:30 +N State St,,DISK,MS,11/9/1999 17:10 +The Colony,GREEN,FLASH,TX,11/9/1999 18:35 +Flagstaff,,TRIANGLE,AZ,11/9/1999 18:43 +Phoenix,,LIGHT,AZ,11/9/1999 19:40 +Burgaw,ORANGE BLUE,LIGHT,NC,11/9/1999 20:00 +Dahlonega,RED GREEN,FIREBALL,GA,11/9/1999 20:25 +Mandaree,,CIRCLE,ND,11/9/1999 20:30 +Atlanta,,LIGHT,GA,11/9/1999 20:50 +Altoona,,TRIANGLE,PA,11/9/1999 21:00 +El Dorado,RED,LIGHT,KS,11/9/1999 22:49 +St. Louis,,,MO,11/10/1999 0:01 +Los Angeles,,OTHER,CA,11/10/1999 2:00 +Chicago,,,IL,11/10/1999 2:30 +Fair Oaks,,FIREBALL,CA,11/10/1999 5:12 +Henderson,,LIGHT,KY,11/10/1999 10:35 +House Springs,,LIGHT,MO,11/10/1999 18:10 +Flagstaff,,OTHER,AZ,11/10/1999 19:00 +Valatie,,TRIANGLE,NY,11/10/1999 20:00 +Florence,,FIREBALL,SC,11/10/1999 20:15 +Atlanta,,,GA,11/10/1999 23:00 +Meridian Navel Air Station,RED,FORMATION,MS,11/11/1999 2:00 +El Centro,,CIGAR,CA,11/11/1999 16:20 +Fallbrook,ORANGE,SPHERE,CA,11/11/1999 16:50 +Keasbey {Woodbridge},,CIGAR,NJ,11/11/1999 16:50 +Pflugerville,,LIGHT,TX,11/11/1999 19:42 +Bensalem,RED,LIGHT,PA,11/11/1999 20:20 +Wauwatosa,,CIGAR,WI,11/11/1999 23:05 +Burbank,,OTHER,CA,11/12/1999 1:03 +Denver,,RECTANGLE,CO,11/12/1999 19:00 +Wyandotte,,OTHER,MI,11/12/1999 19:00 +Gray,,TRIANGLE,TN,11/12/1999 20:30 +Jackson,,SPHERE,MS,11/12/1999 23:45 +Los Angeles,,LIGHT,CA,11/13/1999 2:30 +Moorehead,,FLASH,KY,11/13/1999 4:30 +Morristown,,,AZ,11/13/1999 6:35 +Midlothian,RED,DISK,IL,11/13/1999 17:30 +Boulder,,FORMATION,CO,11/13/1999 21:00 +Corbett,,FLASH,OR,11/13/1999 21:00 +El Dorado Hills,,LIGHT,CA,11/13/1999 22:00 +Sprague,BLUE,OTHER,WA,11/14/1999 0:45 +Asheville,,OTHER,NC,11/14/1999 2:00 +Bolivar,RED,LIGHT,TN,11/14/1999 2:06 +Addison,,TRIANGLE,TX,11/14/1999 3:30 +Stuart,,OVAL,FL,11/14/1999 4:30 +Arlington Heights,,CONE,IL,11/14/1999 5:00 +Sunland,,,CA,11/14/1999 15:00 +Port Richey,,LIGHT,FL,11/14/1999 18:05 +Cumby,,,TX,11/14/1999 18:45 +Grand Marsh,,CIRCLE,WI,11/14/1999 19:00 +Geneva,RED,,IL,11/14/1999 19:27 +Haltom City,BLUE,VARIOUS,TX,11/14/1999 21:30 +Port St. Lucie,ORANGE YELLOW,OVAL,FL,11/14/1999 22:05 +Yuma,,CIRCLE,AZ,11/15/1999 5:50 +Minneapolis,,CYLINDER,MN,11/15/1999 7:45 +Murfreesboro,,SPHERE,TN,11/15/1999 17:00 +Cedar Rapids,ORANGE GREEN,FIREBALL,IA,11/15/1999 18:00 +Yelm,,OTHER,WA,11/15/1999 20:00 +Ada,,LIGHT,MI,11/15/1999 21:15 +"Rancho Cordova, just east",,LIGHT,CA,11/15/1999 22:10 +Smithville,,CIRCLE,TN,11/15/1999 22:15 +Millwood,,FORMATION,KY,11/16/1999 0:00 +Griffith,,FLASH,IN,11/16/1999 2:00 +Tigard,,CHEVRON,OR,11/16/1999 3:20 +Dallas,GREEN,FLASH,TX,11/16/1999 5:00 +Diamond Bar,,DISK,CA,11/16/1999 7:15 +Springfield,,CYLINDER,MO,11/16/1999 14:00 +Albany,ORANGE,FIREBALL,NY,11/16/1999 16:00 +Burtons Bridge,,FIREBALL,IL,11/16/1999 16:15 +Lapeer,,CIGAR,MI,11/16/1999 17:00 +Winona,,FIREBALL,MN,11/16/1999 17:15 +Medina,BLUE,FIREBALL,OH,11/16/1999 17:20 +Alpena,,,MI,11/16/1999 17:30 +Scottsdale,,TRIANGLE,AZ,11/16/1999 17:30 +Chicago,,CIRCLE,IL,11/16/1999 18:00 +Chicago,,FIREBALL,IL,11/16/1999 18:00 +Fulton,,,MI,11/16/1999 18:00 +Kellogg,,CIRCLE,IA,11/16/1999 18:00 +Lowell,,RECTANGLE,IN,11/16/1999 18:00 +Madison,,FIREBALL,WI,11/16/1999 18:00 +Mequon,BLUE,FIREBALL,WI,11/16/1999 18:00 +Mexico,GREEN,TEARDROP,MO,11/16/1999 18:00 +Mt. Washington,,FIREBALL,KY,11/16/1999 18:00 +Nashville,,FIREBALL,IN,11/16/1999 18:00 +Nashville,,FIREBALL,TN,11/16/1999 18:00 +Neenah,GREEN,DISK,WI,11/16/1999 18:00 +Normal,,FIREBALL,IL,11/16/1999 18:00 +Owenton,,FORMATION,KY,11/16/1999 18:00 +Rural,RED GREEN,OVAL,MO,11/16/1999 18:00 +St. Louis,,FIREBALL,MO,11/16/1999 18:00 +Vandalia,,FIREBALL,OH,11/16/1999 18:00 +West Lima,,FIREBALL,WI,11/16/1999 18:02 +Norwalk,BLUE,FIREBALL,IA,11/16/1999 18:04 +Paddock Lake,,FIREBALL,WI,11/16/1999 18:04 +Apple Valley,RED,CIRCLE,MN,11/16/1999 18:05 +Appleton,YELLOW,FIREBALL,WI,11/16/1999 18:05 +Aurora,,FIREBALL,IL,11/16/1999 18:05 +Barrington,GREEN BLUE,FORMATION,IL,11/16/1999 18:05 +Chicago,GREEN,FIREBALL,IL,11/16/1999 18:05 +Cookeville,,OVAL,TN,11/16/1999 18:05 +Downers Grove,RED ORANGE GREEN,CHEVRON,IL,11/16/1999 18:05 +Durant,ORANGE GREEN BLUE,FIREBALL,IA,11/16/1999 18:05 +Fairfield,,FIREBALL,IA,11/16/1999 18:05 +Farmer City,,,IL,11/16/1999 18:05 +Jamestown,GREEN,LIGHT,TN,11/16/1999 18:05 +Jamestown,GREEN,LIGHT,TN,11/16/1999 18:05 +Milwaukee,GREEN,FIREBALL,WI,11/16/1999 18:05 +Mundelein,GREEN,FIREBALL,IL,11/16/1999 18:05 +Onalaska,YELLOW,TEARDROP,WI,11/16/1999 18:05 +Racine,GREEN,FIREBALL,WI,11/16/1999 18:05 +Shawano,ORANGE YELLOW,CIGAR,WI,11/16/1999 18:05 +St. Louis,,FIREBALL,MO,11/16/1999 18:05 +St. Louis,,FIREBALL,MO,11/16/1999 18:05 +St. Peters,ORANGE,FIREBALL,MO,11/16/1999 18:05 +Onton,,FIREBALL,KY,11/16/1999 18:06 +Woodstock,,FIREBALL,IL,11/16/1999 18:06 +St.Charles,ORANGE YELLOW GREEN,CIRCLE,IL,11/16/1999 18:07 +Hebron,,OTHER,IN,11/16/1999 18:08 +Elgin,,FIREBALL,IL,11/16/1999 18:10 +Sumner county,,FIREBALL,TN,11/16/1999 18:10 +St. Louis,,LIGHT,MO,11/16/1999 18:15 +Gallatin,,FIREBALL,TN,11/16/1999 18:20 +Oakbrook,GREEN,FIREBALL,IL,11/16/1999 18:20 +Taylorville,,LIGHT,IL,11/16/1999 18:20 +Grand Rapids,RED,LIGHT,MI,11/16/1999 18:25 +State College,RED ORANGE,FIREBALL,PA,11/16/1999 18:30 +Sycamore,,FIREBALL,IL,11/16/1999 18:30 +Elberfeld,,FIREBALL,IN,11/16/1999 18:40 +Houston,,LIGHT,TX,11/16/1999 18:40 +Over southern Lake Erie,,VARIOUS,OH,11/16/1999 18:45 +Lake Havasu,,TRIANGLE,AZ,11/16/1999 18:50 +Ashland,,LIGHT,KY,11/16/1999 18:55 +Louisville,,LIGHT,KY,11/16/1999 18:55 +New York,,VARIOUS,NY,11/16/1999 18:55 +Avilla,,FIREBALL,IN,11/16/1999 19:00 +Central Lake,GREEN,,MI,11/16/1999 19:00 +Chicago,,TRIANGLE,IL,11/16/1999 19:00 +Chillicothe,,LIGHT,OH,11/16/1999 19:00 +Cincinnati,RED YELLOW GREEN,FIREBALL,OH,11/16/1999 19:00 +Cleveland,,FIREBALL,WI,11/16/1999 19:00 +Cleveland,,LIGHT,OH,11/16/1999 19:00 +Columbus,,FIREBALL,OH,11/16/1999 19:00 +Columbus,,OTHER,MI,11/16/1999 19:00 +Detroit,,,MI,11/16/1999 19:00 +East Lansing,,,MI,11/16/1999 19:00 +Hadley,RED,FIREBALL,MI,11/16/1999 19:00 +Hilton,,FORMATION,NY,11/16/1999 19:00 +Kalamazoo,,FIREBALL,MI,11/16/1999 19:00 +Louisville,,LIGHT,KY,11/16/1999 19:00 +Manitowoc Rapids,,FIREBALL,WI,11/16/1999 19:00 +Michigan City,,FORMATION,IN,11/16/1999 19:00 +Middletown,GREEN,TRIANGLE,OH,11/16/1999 19:00 +Mount Vernon,,CIGAR,OH,11/16/1999 19:00 +New Philidelphia,,FORMATION,OH,11/16/1999 19:00 +North Royalton,,FIREBALL,OH,11/16/1999 19:00 +Rockford,,FIREBALL,MI,11/16/1999 19:00 +South Lyon,,FIREBALL,MI,11/16/1999 19:00 +Sterling Heights,,FIREBALL,MI,11/16/1999 19:00 +Toledo,,FIREBALL,OH,11/16/1999 19:00 +Two Rivers,,FIREBALL,WI,11/16/1999 19:00 +Waterford,,FIREBALL,MI,11/16/1999 19:00 +Dayton,,,OH,11/16/1999 19:02 +Jackson,GREEN,SPHERE,OH,11/16/1999 19:02 +Westerville,ORANGE GREEN BLUE,FIREBALL,OH,11/16/1999 19:02 +Kewadin,,CIRCLE,MI,11/16/1999 19:03 +Kewadin,,CIRCLE,MI,11/16/1999 19:03 +New York City,,VARIOUS,NY,11/16/1999 19:03 +Birch Run,,FORMATION,MI,11/16/1999 19:04 +Fremont,,OTHER,OH,11/16/1999 19:04 +Jeffersonville,,FIREBALL,IN,11/16/1999 19:04 +Lebanon,ORANGE,FIREBALL,OH,11/16/1999 19:04 +Louisville,GREEN BLUE,VARIOUS,KY,11/16/1999 19:04 +Springfield,,FIREBALL,OH,11/16/1999 19:04 +West Chester,GREEN,FIREBALL,OH,11/16/1999 19:04 +Anna,,LIGHT,OH,11/16/1999 19:05 +Baldwin,GREEN,FIREBALL,MI,11/16/1999 19:05 +Cincinnati,,LIGHT,OH,11/16/1999 19:05 +Cleveland,,FIREBALL,OH,11/16/1999 19:05 +Englewood Cliffs,,CIRCLE,NJ,11/16/1999 19:05 +Fairborn,,OTHER,OH,11/16/1999 19:05 +Fort Wayne,GREEN,FIREBALL,IN,11/16/1999 19:05 +Greenville,RED GREEN,CIGAR,IN,11/16/1999 19:05 +Hilliard,,FLASH,OH,11/16/1999 19:05 +Howell,,FORMATION,MI,11/16/1999 19:05 +Hudson,,OTHER,OH,11/16/1999 19:05 +Indianapolis,GREEN,LIGHT,IN,11/16/1999 19:05 +Kearneysville,,LIGHT,WV,11/16/1999 19:05 +Madison,,OTHER,IN,11/16/1999 19:05 +Napoleon,,FIREBALL,OH,11/16/1999 19:05 +Norwalk,,OTHER,OH,11/16/1999 19:05 +Springfield,,FORMATION,OH,11/16/1999 19:05 +Terre Haute,,FIREBALL,IN,11/16/1999 19:05 +Whitmore Lake,,TEARDROP,MI,11/16/1999 19:05 +Parma,GREEN,CIRCLE,OH,11/16/1999 19:06 +Sterling Heights,ORANGE YELLOW,FIREBALL,MI,11/16/1999 19:06 +Mt. Weather,BLUE,FIREBALL,VA,11/16/1999 19:07 +Shrewsbury,,CIRCLE,PA,11/16/1999 19:07 +Dearborn Heights,,FIREBALL,MI,11/16/1999 19:08 +South Point,,FIREBALL,OH,11/16/1999 19:08 +Vicksburg,ORANGE,FIREBALL,MI,11/16/1999 19:08 +St. Johns,,OTHER,MI,11/16/1999 19:09 +Cleveland,,DISK,OH,11/16/1999 19:10 +Columbus,,LIGHT,OH,11/16/1999 19:10 +Columbus Grove,,CIRCLE,OH,11/16/1999 19:10 +Crestwood,,CIGAR,KY,11/16/1999 19:10 +Detroit,,FORMATION,MI,11/16/1999 19:10 +Detroit,,FORMATION,MI,11/16/1999 19:10 +Holland,,FORMATION,OH,11/16/1999 19:10 +Indianapolis,,FIREBALL,IN,11/16/1999 19:10 +Joppatowne,,LIGHT,MD,11/16/1999 19:10 +Louisville,,FIREBALL,KY,11/16/1999 19:10 +Mechanicsburg,,FORMATION,PA,11/16/1999 19:10 +Shelby Township,RED ORANGE,CIGAR,MI,11/16/1999 19:10 +St. Clair Shores,,FORMATION,MI,11/16/1999 19:10 +Strongsville,,FIREBALL,OH,11/16/1999 19:10 +Hamilton,,FIREBALL,OH,11/16/1999 19:12 +South Lyon,,FIREBALL,MI,11/16/1999 19:12 +Chicago,RED,FIREBALL,IL,11/16/1999 19:15 +Cincinnati,GREEN,FIREBALL,OH,11/16/1999 19:15 +Cleveland,,EGG,OH,11/16/1999 19:15 +Swartz Creek,,FORMATION,MI,11/16/1999 19:15 +Urbana,RED YELLOW,FORMATION,OH,11/16/1999 19:15 +Kent County,,FIREBALL,MI,11/16/1999 19:20 +Columbus,,,OH,11/16/1999 19:30 +San Manuel,,TRIANGLE,AZ,11/16/1999 19:30 +West Virginia,,FIREBALL,WV,11/16/1999 19:30 +Duncannon,,SPHERE,PA,11/16/1999 19:35 +Lehighton,,LIGHT,PA,11/16/1999 19:40 +Flint,,FORMATION,MI,11/16/1999 20:00 +Harvey,,FORMATION,LA,11/16/1999 20:00 +Ocala,,TRIANGLE,FL,11/16/1999 20:00 +Fort Wayne,GREEN,FIREBALL,IN,11/16/1999 20:30 +Kelseyville,,LIGHT,CA,11/16/1999 20:35 +Alameda,,CHEVRON,CA,11/16/1999 20:50 +Rochester Hills,,OTHER,MI,11/16/1999 21:00 +Crystal Lake,,FIREBALL,IL,11/16/1999 21:05 +Simpsonville,,FIREBALL,KY,11/16/1999 21:30 +Smithville,,TEARDROP,TN,11/16/1999 22:15 +North Las Vegas,GREEN,OTHER,NV,11/16/1999 22:30 +Burlingame,,OTHER,CA,11/16/1999 22:40 +Kayenta,,LIGHT,AZ,11/16/1999 23:00 +Rocky Mount,,LIGHT,NC,11/16/1999 23:00 +Lafayette,,OTHER,CO,11/16/1999 23:03 +Columbia,ORANGE,CHEVRON,MO,11/16/1999 23:15 +Woodbury,,RECTANGLE,MN,11/16/1999 23:15 +Berks County,,LIGHT,PA,11/16/1999 23:30 +Oklahoma City,GREEN BLUE,EGG,OK,11/16/1999 23:30 +Overland Park,,DIAMOND,KS,11/16/1999 23:30 +Seattle,,OTHER,WA,11/17/1999 0:00 +Ringgold,RED ORANGE,CIRCLE,GA,11/17/1999 0:30 +Lincoln City,,LIGHT,OR,11/17/1999 2:00 +San Rafael,ORANGE,TRIANGLE,CA,11/17/1999 2:00 +Erie,,SPHERE,PA,11/17/1999 2:35 +Sandusky,,SPHERE,OH,11/17/1999 3:00 +Casa Grande,,LIGHT,AZ,11/17/1999 5:05 +Fort Worth,,CYLINDER,TX,11/17/1999 13:00 +Raymond,,TRIANGLE,ME,11/17/1999 14:30 +Franklin,,,TN,11/17/1999 16:30 +Conway,,TEARDROP,SC,11/17/1999 17:20 +Denver,,OTHER,CO,11/17/1999 18:15 +Sumrall,,,MS,11/17/1999 21:23 +Cliffside Park,,,NJ,11/17/1999 22:00 +Ashgrove,ORANGE,LIGHT,MO,11/17/1999 22:15 +Tucson,,TRIANGLE,AZ,11/17/1999 23:30 +Sumrall,,,MS,11/18/1999 0:18 +Braintree,,LIGHT,MA,11/18/1999 0:25 +Columbus,,TRIANGLE,OH,11/18/1999 1:00 +Houston,,TRIANGLE,TX,11/18/1999 1:20 +Columbus,,TRIANGLE,OH,11/18/1999 1:50 +Carlsbad,,TRIANGLE,CA,11/18/1999 2:18 +Redding,,OTHER,CA,11/18/1999 3:20 +Houston,,CIRCLE,TX,11/18/1999 5:00 +Houston,BLUE,FORMATION,TX,11/18/1999 5:00 +Lake Whitney - 90 miles south,,LIGHT,TX,11/18/1999 5:45 +Arcadia,,LIGHT,LA,11/18/1999 18:00 +Cleveland,,DISK,GA,11/18/1999 18:00 +Edison,,LIGHT,NJ,11/18/1999 19:15 +St. Petersburg,RED,LIGHT,FL,11/18/1999 20:00 +San Diego,,LIGHT,CA,11/18/1999 20:30 +Denver,,OTHER,CO,11/18/1999 21:10 +Ohio,,FORMATION,OH,11/19/1999 2:15 +Indio,,TRIANGLE,CA,11/19/1999 3:00 +Sherman Oaks,,OTHER,CA,11/19/1999 21:07 +Andes,,CYLINDER,NY,11/19/1999 22:00 +Anthony,,DISK,KS,11/20/1999 2:00 +Midlothian,BLUE,FIREBALL,VA,11/20/1999 5:30 +Toledo,,FIREBALL,OH,11/20/1999 14:00 +West Carrollton,,DISK,OH,11/20/1999 16:30 +Austin,,FORMATION,TX,11/20/1999 21:50 +Naples,,VARIOUS,FL,11/20/1999 22:22 +Toms River,,OTHER,NJ,11/20/1999 23:30 +Bellflower,,FIREBALL,CA,11/20/1999 23:45 +Lima,,SPHERE,OH,11/21/1999 1:30 +Rickman,,OTHER,TN,11/21/1999 2:10 +Norcross,,,GA,11/21/1999 17:03 +Auburn,,LIGHT,WA,11/21/1999 18:10 +Kalispell,,CIRCLE,MT,11/22/1999 23:00 +Bradenton,,FIREBALL,FL,11/22/1999 23:30 +Petaluma,,LIGHT,CA,11/23/1999 2:00 +Half Moon Bay,,CHEVRON,CA,11/23/1999 11:15 +Barbourville,GREEN BLUE,VARIOUS,KY,11/23/1999 16:45 +San Francisco,,DISK,CA,11/23/1999 17:20 +Kent,RED,LIGHT,WA,11/23/1999 18:00 +Belton,RED,OVAL,MO,11/23/1999 18:10 +Pekin,,CIGAR,IN,11/23/1999 18:15 +Fresno,,DISK,CA,11/23/1999 19:56 +Central,,OTHER,OK,11/23/1999 21:00 +Casper,,SPHERE,WY,11/23/1999 22:30 +Bullhead City,,SPHERE,AZ,11/23/1999 23:55 +Anaheim,,FIREBALL,CA,11/24/1999 10:00 +Brookfield,RED,LIGHT,MO,11/24/1999 18:00 +Tri-Cities,,CIRCLE,WA,11/24/1999 20:05 +Wilton,,VARIOUS,MO,11/24/1999 20:15 +Sacramento,,CHEVRON,CA,11/24/1999 20:35 +Atlanta,,CIRCLE,GA,11/24/1999 21:00 +Rocky Mount,YELLOW,CIGAR,NC,11/24/1999 21:00 +Spokane,,CIRCLE,WA,11/25/1999 15:00 +Angleton,,LIGHT,TX,11/25/1999 18:00 +Wappingers Falls,,LIGHT,NY,11/25/1999 21:00 +Monrovia,RED,OTHER,CA,11/26/1999 2:00 +Redondo Beach,,FORMATION,CA,11/26/1999 17:50 +Redondo Beach,BLUE,FORMATION,CA,11/26/1999 17:50 +Flagstaff,ORANGE,LIGHT,AZ,11/26/1999 21:30 +Weldon,,CROSS,CA,11/27/1999 4:30 +Seward,ORANGE,CIRCLE,AK,11/27/1999 11:00 +Urbana,,VARIOUS,IL,11/27/1999 16:00 +Colleyville,RED GREEN,LIGHT,TX,11/27/1999 19:15 +Dover,,DISK,AR,11/27/1999 19:30 +San Diego,,LIGHT,CA,11/27/1999 20:00 +Bardstown,,FIREBALL,KY,11/27/1999 20:15 +Watkinsville,,VARIOUS,GA,11/27/1999 21:00 +Liberty,,CIRCLE,NY,11/27/1999 21:23 +Purchase,,CIRCLE,NY,11/27/1999 21:30 +Dallas,,TRIANGLE,PA,11/27/1999 23:30 +Dubois,,FIREBALL,PA,11/28/1999 0:00 +North Miami,RED GREEN,OTHER,FL,11/28/1999 0:20 +Romeo,,CIGAR,MI,11/28/1999 8:00 +Rachel,,SPHERE,NV,11/28/1999 20:00 +Greensburg,YELLOW GREEN,FIREBALL,IN,11/28/1999 20:30 +Pittsburgh,,FIREBALL,PA,11/28/1999 20:45 +Birch Run,,SPHERE,MI,11/28/1999 20:53 +San Antonio,,,TX,11/28/1999 21:30 +Green Valley,,LIGHT,CA,11/29/1999 17:00 +San Diego,GREEN,SPHERE,CA,11/29/1999 20:30 +Phoenix,,FIREBALL,AZ,11/29/1999 21:15 +Cerritos,,DISK,CA,11/29/1999 22:15 +Fulton,,CIRCLE,MO,11/29/1999 22:40 +Lancaster,,TRIANGLE,CA,11/30/1999 0:00 +New Holland,RED GREEN,DISK,OH,11/30/1999 0:30 +Jackson,GREEN,FIREBALL,MI,11/30/1999 1:45 +Iowa City,,SPHERE,IA,11/30/1999 5:40 +Deerfield Beach,,CIRCLE,FL,11/30/1999 7:00 +Cucamonga,,,CA,11/30/1999 15:39 +Bloomington,,LIGHT,IL,11/30/1999 18:00 +Ft. Scott,,CIRCLE,KS,11/30/1999 18:45 +Palm Springs,,OVAL,CA,11/30/1999 18:45 +Ephrata,,,WA,11/30/1999 19:00 +Blue Springs,,FIREBALL,MO,11/30/1999 20:45 +Cumming,,CIRCLE,GA,11/30/1999 22:00 +Pasadena,,FLASH,TX,12/1/1999 4:50 +Ceder Lake,RED,LIGHT,IN,12/1/1999 6:00 +Chanute,,VARIOUS,KS,12/1/1999 16:00 +Grandview,,FORMATION,WA,12/1/1999 20:00 +Columbia,,TRIANGLE,MO,12/1/1999 21:45 +Columbia,,TRIANGLE,MO,12/1/1999 21:55 +Madison,,FORMATION,WI,12/1/1999 22:00 +Kennesaw,,LIGHT,GA,12/1/1999 23:00 +Reidsville,,DISK,NC,12/1/1999 23:00 +San Bernadino,,,CA,12/1/1999 23:00 +Fairborn,,,OH,12/2/1999 2:00 +Seattle,,LIGHT,WA,12/2/1999 17:10 +McLean,RED BLUE,,VA,12/2/1999 19:30 +Kent,,CIRCLE,WA,12/2/1999 21:00 +Warm Springs,,SPHERE,NV,12/3/1999 0:08 +Rochester,,,NY,12/3/1999 2:15 +Saddle Mountains,,,WA,12/3/1999 16:00 +Santa Clarita,,CIRCLE,CA,12/3/1999 16:50 +Lodi,,FIREBALL,CA,12/3/1999 19:30 +Colorado,,,CO,12/3/1999 21:00 +Corralitos,,DISK,CA,12/3/1999 22:00 +Union City,,FIREBALL,GA,12/4/1999 0:40 +Deming,,VARIOUS,NM,12/4/1999 2:00 +New York City,,LIGHT,NY,12/4/1999 11:00 +Fort Meade,,LIGHT,MD,12/4/1999 21:00 +Coolidge,RED,TRIANGLE,AZ,12/5/1999 0:05 +Manchester,BLUE,LIGHT,TN,12/5/1999 4:00 +Birmingham,,SPHERE,AL,12/5/1999 4:20 +Colombiana,,RECTANGLE,AL,12/5/1999 4:20 +Weogufka,,FIREBALL,AL,12/5/1999 4:20 +Sterrett,,DISK,AL,12/5/1999 4:25 +Toney,,FIREBALL,AL,12/5/1999 4:30 +Dalton,YELLOW,CIRCLE,GA,12/5/1999 5:05 +Knoxville,,FIREBALL,TN,12/5/1999 5:15 +Cassville,,CONE,GA,12/5/1999 5:45 +Guyton,,CIRCLE,GA,12/5/1999 17:50 +Burna,,,KY,12/5/1999 18:30 +Cleveland,ORANGE,CIRCLE,NC,12/5/1999 20:30 +Dallas,,LIGHT,TX,12/5/1999 21:00 +Alliance,,OTHER,OH,12/5/1999 22:00 +Lutz,,LIGHT,FL,12/5/1999 22:14 +San Diego,,FIREBALL,CA,12/5/1999 23:00 +Marshall,,FIREBALL,MO,12/6/1999 11:00 +Costa Mesa,,,CA,12/6/1999 11:30 +San Diego,,,CA,12/6/1999 16:45 +Indian Springs AFB,,LIGHT,NV,12/7/1999 3:30 +Dawsonville,,TRIANGLE,GA,12/7/1999 18:30 +Gramercy,,TRIANGLE,LA,12/7/1999 18:45 +Naples,,LIGHT,ME,12/7/1999 19:30 +Tomah,GREEN,CHEVRON,WI,12/7/1999 20:00 +Emory,,SPHERE,TX,12/7/1999 20:05 +Columbus,,LIGHT,OH,12/7/1999 21:00 +Seattle,BLUE,LIGHT,WA,12/8/1999 17:40 +Greenville,,TRIANGLE,NH,12/8/1999 18:15 +Millersburg,,CHEVRON,MO,12/8/1999 19:30 +Columbia,,TRIANGLE,MO,12/8/1999 21:30 +Reno,,DISK,NV,12/9/1999 11:00 +Fort Lewis,,SPHERE,WA,12/9/1999 17:30 +Purdy,GREEN,FIREBALL,WA,12/9/1999 18:00 +Lyle,ORANGE,FIREBALL,WA,12/9/1999 18:15 +Scottsdale,,VARIOUS,AZ,12/9/1999 21:50 +Rupert,,LIGHT,ID,12/9/1999 22:00 +Big Spring,,LIGHT,TX,12/9/1999 22:30 +OSU Experiment station,,EGG,OR,12/10/1999 15:32 +Sherman Oaks,,OTHER,CA,12/10/1999 16:45 +Grand Rapids,,OTHER,MI,12/10/1999 21:30 +Woodinville,,LIGHT,WA,12/10/1999 22:00 +Columbia,,TRIANGLE,MO,12/10/1999 22:15 +Woodbridge,,TEARDROP,NJ,12/10/1999 22:29 +Smithton,,FIREBALL,IL,12/11/1999 3:00 +Rocky Mount,,FIREBALL,NC,12/11/1999 18:00 +Stilwell,,FORMATION,OK,12/11/1999 18:00 +Lamar,,DISK,CO,12/11/1999 21:00 +La Plata,,,MD,12/12/1999 3:30 +Sunnyside,,OTHER,WA,12/12/1999 6:30 +Orlando,,DIAMOND,FL,12/12/1999 20:15 +Longmont,,TRIANGLE,CO,12/12/1999 21:30 +Savannah,,,GA,12/13/1999 5:30 +Michigan,ORANGE,LIGHT,MI,12/13/1999 15:40 +Puyallup,,TRIANGLE,WA,12/13/1999 21:00 +Las Animas,,FIREBALL,CO,12/13/1999 23:40 +Pocasset,,OTHER,OK,12/14/1999 1:47 +Seagrove Beach,,LIGHT,FL,12/14/1999 5:04 +Santa Cruz,,LIGHT,CA,12/14/1999 7:45 +Roanoke,,TEARDROP,VA,12/14/1999 16:52 +Atlanta,,FIREBALL,GA,12/14/1999 21:30 +North Syracuse,,LIGHT,NY,12/15/1999 0:00 +Wilkinson County,,SPHERE,GA,12/15/1999 0:00 +Athens,,TRIANGLE,OH,12/15/1999 17:30 +Woodville,,DIAMOND,NC,12/15/1999 17:45 +Katy,BLUE,FIREBALL,TX,12/15/1999 19:00 +Mountain Grove,ORANGE,LIGHT,MO,12/15/1999 19:30 +Omaha,,CIRCLE,NE,12/15/1999 20:00 +Gibsonville,,SPHERE,NC,12/16/1999 7:15 +Pico Rivera,,CYLINDER,CA,12/16/1999 9:50 +Greensboro,,CYLINDER,NC,12/16/1999 10:30 +Sun Prairie,,LIGHT,WI,12/16/1999 19:45 +Rock Hill,,LIGHT,NY,12/16/1999 20:00 +Plainview,,TRIANGLE,NY,12/16/1999 21:30 +Charlotte,,TRIANGLE,NC,12/17/1999 3:00 +Marietta,,LIGHT,GA,12/17/1999 5:45 +Ashgrove,,OTHER,MO,12/17/1999 22:15 +Windser,ORANGE,VARIOUS,CA,12/17/1999 23:15 +Groveland,,TRIANGLE,IL,12/18/1999 22:30 +Houston,,DISK,TX,12/19/1999 1:15 +Santa Fe,,CIRCLE,NM,12/19/1999 2:30 +Spring Hill,ORANGE,VARIOUS,TN,12/19/1999 3:00 +Kent,,OVAL,WA,12/19/1999 18:30 +Branford,,LIGHT,CT,12/20/1999 1:00 +Browns Valley,GREEN,DISK,CA,12/20/1999 4:00 +Canton,,CIRCLE,MA,12/20/1999 18:54 +Murrieta,RED,LIGHT,CA,12/20/1999 20:00 +Woodbridge,,FORMATION,CT,12/20/1999 22:00 +Trenton,GREEN,LIGHT,IL,12/20/1999 23:30 +Point Arena,,,CA,12/21/1999 3:00 +Toledo,,OVAL,WA,12/21/1999 6:45 +Seatac,,SPHERE,WA,12/21/1999 13:30 +Portland,,LIGHT,OR,12/21/1999 17:00 +Lakewood,,DISK,CO,12/21/1999 20:00 +Onodaga twp.,,DIAMOND,MI,12/21/1999 22:20 +Jacksonville,,DISK,FL,12/22/1999 2:00 +Clinton,,LIGHT,IN,12/22/1999 6:30 +Merrimac,RED,DIAMOND,WI,12/22/1999 7:00 +Salt Lake City,,FORMATION,UT,12/22/1999 7:30 +Hot Springs,,FLASH,AR,12/22/1999 10:05 +New York City,,,NY,12/22/1999 19:00 +Lackawaxen,,TRIANGLE,PA,12/22/1999 19:14 +White Sands,,LIGHT,NM,12/22/1999 19:15 +Baton Rouge,,OTHER,LA,12/22/1999 22:30 +Moses Lake,,OTHER,WA,12/23/1999 17:00 +Norman,YELLOW,SPHERE,OK,12/23/1999 17:20 +Savannah,BLUE,EGG,GA,12/23/1999 19:20 +Fulton,,TRIANGLE,AR,12/23/1999 20:30 +Howard,,LIGHT,CO,12/23/1999 22:15 +Atlantic City area,,LIGHT,NJ,12/24/1999 4:00 +Augusta,,OVAL,MT,12/24/1999 7:45 +Miami,RED,CIRCLE,FL,12/24/1999 21:00 +Youngstown,,TRIANGLE,OH,12/24/1999 23:24 +Milton,,TRIANGLE,TN,12/24/1999 23:55 +Columbia,,TRIANGLE,MO,12/25/1999 3:30 +Nashville,,LIGHT,TN,12/25/1999 4:00 +Mansfield,,OTHER,OH,12/25/1999 9:30 +Wellington,,OVAL,OH,12/25/1999 11:40 +Lake Elsinore,ORANGE,TRIANGLE,CA,12/25/1999 19:30 +Pleasanton,,CIGAR,TX,12/25/1999 19:30 +Poughkeepsie,,CHEVRON,NY,12/25/1999 19:30 +Spring Hill,,TRIANGLE,KS,12/25/1999 22:30 +Mt Vernon,,CHEVRON,MO,12/25/1999 23:00 +Gold Canyon,,LIGHT,AZ,12/26/1999 0:00 +Deer Lake,,LIGHT,PA,12/26/1999 1:17 +Huntington,,,WV,12/26/1999 6:45 +Sparks,ORANGE,TRIANGLE,NV,12/26/1999 17:00 +Vancouver,,,WA,12/26/1999 18:12 +Springfield,,LIGHT,MO,12/26/1999 19:00 +Dallas,ORANGE,FIREBALL,AR,12/26/1999 19:30 +Larose,,,LA,12/26/1999 19:55 +Boca Raton,,LIGHT,FL,12/26/1999 20:00 +New Orleans,,LIGHT,LA,12/26/1999 20:00 +Jamaica Estates,BLUE,LIGHT,NY,12/26/1999 20:25 +Jamaica Estates,BLUE,LIGHT,NY,12/26/1999 20:25 +Spring Creek,,,NV,12/26/1999 21:00 +Portland,,,OR,12/26/1999 22:30 +Temple City,ORANGE,SPHERE,CA,12/26/1999 22:30 +Ponchatoula,,DIAMOND,LA,12/26/1999 23:00 +San Diego,,TRIANGLE,CA,12/26/1999 23:30 +South Berwick,RED,LIGHT,ME,12/27/1999 0:00 +Hialeah,,OTHER,FL,12/27/1999 5:35 +Reno,,SPHERE,NV,12/27/1999 19:30 +Salem,,DIAMOND,OR,12/27/1999 21:30 +Dallas,,,TX,12/28/1999 2:00 +Lake Shasta,,LIGHT,CA,12/28/1999 2:00 +Sterling,,DISK,IL,12/28/1999 5:00 +Brigham City,,FIREBALL,UT,12/28/1999 5:13 +Saint Charles Township,,TRIANGLE,IL,12/28/1999 20:00 +Elisabeth,,LIGHT,CO,12/28/1999 22:00 +SC,RED ORANGE,FIREBALL,SC,12/28/1999 22:00 +Lakeland,ORANGE,FIREBALL,FL,12/28/1999 23:05 +Stockbridge,,,GA,12/29/1999 4:15 +D'Hanis,,,TX,12/29/1999 5:00 +Denver,,CHEVRON,CO,12/29/1999 17:50 +Denver,,,CO,12/29/1999 18:00 +Huntington,,LIGHT,WV,12/29/1999 19:20 +McMinnville,,,TN,12/30/1999 0:09 +Gansevoort,YELLOW GREEN,SPHERE,NY,12/30/1999 19:30 +Newman Lake,,OTHER,WA,12/31/1999 0:23 +Las Vegas,,CIRCLE,NV,12/31/1999 17:30 +Florissant,ORANGE,,MO,12/31/1999 19:30 +Dover,,CIRCLE,FL,12/31/1999 20:30 +Rockford,RED,SPHERE,IL,12/31/1999 22:00 +Loves Park,,CIRCLE,IL,12/31/1999 23:20 +Rockford,ORANGE,LIGHT,IL,12/31/1999 23:30 +Santee,,FORMATION,CA,12/31/1999 23:42 +Keys,,OTHER,CA,12/31/1999 23:47 +Keys,,VARIOUS,CA,12/31/1999 23:48 +Bellflower,,FIREBALL,CA,12/31/1999 23:59 +Bakersfield,,,CA,1/1/2000 0:01 +New York City,,SPHERE,NY,1/1/2000 0:01 +Los Angeles,,,CA,1/1/2000 0:03 +San Diego,GREEN,LIGHT,CA,1/1/2000 0:23 +Laporte,,OTHER,TX,1/1/2000 2:13 +Bellefontaine,RED,LIGHT,OH,1/1/2000 3:00 +Nellis AFB,,LIGHT,NV,1/1/2000 3:30 +Clovis,,LIGHT,CA,1/1/2000 5:00 +Gurnee,,LIGHT,IL,1/1/2000 14:45 +San Francisco,,LIGHT,CA,1/1/2000 16:20 +Medford,,FORMATION,OR,1/1/2000 17:00 +Houston,,FLASH,TX,1/1/2000 20:30 +Patoka,,TRIANGLE,IL,1/1/2000 21:00 +Houston,GREEN,SPHERE,TX,1/1/2000 21:35 +Evansville,,CIGAR,IN,1/1/2000 22:00 +Erath,,EGG,LA,1/1/2000 23:00 +Coral Springs,,,FL,1/1/2000 23:30 +Jacksonville,,RECTANGLE,FL,1/2/2000 0:00 +Mesa,,OVAL,AZ,1/2/2000 0:30 +Chandler,,DIAMOND,AZ,1/2/2000 18:30 +Murrieta,,FIREBALL,CA,1/2/2000 19:33 +Kennewick,,LIGHT,WA,1/2/2000 19:34 +Oroville,,LIGHT,CA,1/2/2000 20:00 +Studio City,BLUE,RECTANGLE,CA,1/2/2000 21:00 +Anaheim Hills,GREEN,LIGHT,CA,1/2/2000 21:30 +Redlands,GREEN,FIREBALL,CA,1/2/2000 21:30 +Temecula,GREEN,FIREBALL,CA,1/2/2000 21:30 +Glendale,,FIREBALL,CA,1/2/2000 21:33 +Big Bear Lake,BLUE,OTHER,CA,1/2/2000 21:35 +La Quinta,,FORMATION,CA,1/2/2000 21:35 +Sanger,BLUE,OTHER,CA,1/2/2000 21:35 +Claremont,,,CA,1/2/2000 21:36 +Vista,,DISK,CA,1/2/2000 21:37 +Jurupa,BLUE,LIGHT,CA,1/2/2000 21:40 +San Fernando Valley,,TRIANGLE,CA,1/2/2000 21:40 +Sierra Madre,GREEN,FIREBALL,CA,1/2/2000 21:50 +Tustin,BLUE,LIGHT,CA,1/2/2000 22:00 +South Pasadena,,CHEVRON,CA,1/2/2000 22:40 +no data,,TRIANGLE,NV,1/2/2000 23:00 +El Centro,,OTHER,CA,1/3/2000 7:30 +Union City,,CIGAR,TN,1/3/2000 15:18 +West Manchester,,LIGHT,OH,1/3/2000 21:30 +Reno,,LIGHT,NV,1/3/2000 22:43 +Union,,TRIANGLE,MO,1/4/2000 3:15 +Duryea,RED GREEN BLUE,OVAL,PA,1/4/2000 19:00 +Scottsdale,,LIGHT,AZ,1/4/2000 20:30 +Coleman,,FIREBALL,TX,1/4/2000 21:30 +Dupo,,TRIANGLE,IL,1/4/2000 23:35 +Spokane,,,WA,1/5/2000 0:00 +Florissant,,RECTANGLE,MO,1/5/2000 2:00 +Florissant,,RECTANGLE,MO,1/5/2000 2:00 +Caseyville,RED ORANGE,OTHER,IL,1/5/2000 4:00 +"Summerfield,",,VARIOUS,IL,1/5/2000 4:15 +Edwardsville,,TRIANGLE,IL,1/5/2000 4:25 +St. Louis,,,MO,1/5/2000 4:30 +Milton,,TRIANGLE,MA,1/5/2000 5:00 +Exton,BLUE,CYLINDER,PA,1/5/2000 9:50 +Hawkinsville,,TRIANGLE,GA,1/5/2000 19:55 +Galesburg,,TRIANGLE,IL,1/5/2000 20:00 +Ramona,,LIGHT,CA,1/5/2000 21:00 +Lakemoor,,TRIANGLE,IL,1/5/2000 22:45 +"Rock Spings, 2miles west of",,,WY,1/6/2000 5:45 +York,,CIGAR,PA,1/6/2000 10:25 +San Francisco,,CHEVRON,CA,1/6/2000 15:00 +Riley County,,TEARDROP,KS,1/6/2000 16:00 +Austell,BLUE,FIREBALL,GA,1/6/2000 22:00 +Edgewood,,SPHERE,WA,1/7/2000 0:10 +Rock Island,,CIRCLE,IL,1/7/2000 5:15 +Las Vegas,,,NV,1/7/2000 16:20 +Citrus Heights,,,CA,1/7/2000 19:00 +Three Rivers,GREEN,FIREBALL,MI,1/7/2000 21:35 +Westwood,,FORMATION,CA,1/7/2000 21:40 +Citrus Heights,,LIGHT,CA,1/7/2000 22:45 +Montgomery,,TRIANGLE,AL,1/7/2000 23:00 +Knoxville,,CIGAR,TN,1/8/2000 7:30 +Maitland,ORANGE YELLOW,FORMATION,FL,1/8/2000 16:45 +Kent,,VARIOUS,CT,1/8/2000 17:00 +Maitland,RED,LIGHT,FL,1/8/2000 17:00 +Las Vegas Blvd.,,LIGHT,NV,1/9/2000 0:20 +Los Angeles,ORANGE,SPHERE,CA,1/9/2000 17:30 +Guyton,,CIRCLE,GA,1/9/2000 19:07 +Grand Junction,BLUE,FIREBALL,CO,1/9/2000 21:50 +Amarillo,,LIGHT,TX,1/9/2000 23:00 +Sanford,,LIGHT,ME,1/9/2000 23:25 +Brentwood,,DISK,TN,1/10/2000 9:15 +Mannford,,OVAL,OK,1/10/2000 19:15 +Sevierville,,OVAL,TN,1/10/2000 20:30 +Conroe,,LIGHT,TX,1/10/2000 21:00 +San Diego,,LIGHT,CA,1/10/2000 21:30 +Erie,,,PA,1/10/2000 22:00 +Westchester,,TRIANGLE,IL,1/11/2000 2:00 +Brownell,RED BLUE,,KS,1/11/2000 11:15 +Boise,,,ID,1/11/2000 21:00 +Atlanta,BLUE,SPHERE,GA,1/11/2000 22:00 +Denver,RED ORANGE GREEN,FIREBALL,CO,1/11/2000 22:10 +San Diego,,OVAL,CA,1/11/2000 22:40 +Northbrook,,DISK,IL,1/12/2000 0:22 +Los Angeles,YELLOW BLUE,DISK,CA,1/12/2000 1:31 +Snohomish,,TRIANGLE,WA,1/12/2000 18:20 +Galesburg,ORANGE,FIREBALL,IL,1/13/2000 0:00 +Jacksonville,,,FL,1/13/2000 3:00 +Pine Mountain,,LIGHT,AR,1/13/2000 6:30 +Phoenix,,CIRCLE,AZ,1/13/2000 15:45 +Louisville,BLUE,FIREBALL,KY,1/13/2000 22:30 +Mt. Vernon,RED,DISK,WA,1/14/2000 6:30 +Houston,,DISK,TX,1/14/2000 12:25 +Charlesbourg,,RECTANGLE,CA,1/14/2000 17:45 +Louisville,,LIGHT,KY,1/14/2000 20:05 +Monroe,,,CT,1/15/2000 2:45 +Longview,RED,CIGAR,TX,1/15/2000 18:00 +St. Louis,,,MO,1/15/2000 18:00 +Keystone Heights,,CIRCLE,FL,1/15/2000 19:00 +Skowhegan,RED,OVAL,ME,1/15/2000 19:10 +Houston,,TRIANGLE,TX,1/15/2000 20:00 +Lake Charles,,LIGHT,LA,1/15/2000 20:00 +Channelview,,,TX,1/15/2000 22:00 +Milton,,LIGHT,WV,1/15/2000 22:00 +West Fargo,RED,SPHERE,ND,1/15/2000 22:30 +Kalamazoo,,CIRCLE,MI,1/15/2000 23:00 +Houghton Lake,,FLASH,MI,1/15/2000 23:45 +Christiana,,RECTANGLE,TN,1/16/2000 1:30 +Tifton,,DISK,GA,1/16/2000 13:10 +Becker,,TRIANGLE,MN,1/16/2000 18:00 +Davis,,CIRCLE,CA,1/16/2000 19:00 +Hagerstown,,LIGHT,MD,1/16/2000 20:50 +Lyons,,LIGHT,GA,1/16/2000 21:00 +Columbia,,,KY,1/17/2000 0:00 +Columbia,,,KY,1/17/2000 4:30 +Philadelphia,,RECTANGLE,PA,1/17/2000 18:05 +Oroville,ORANGE YELLOW,CONE,CA,1/17/2000 18:20 +Three Forks,,CYLINDER,MT,1/17/2000 20:30 +Orland,GREEN,TRIANGLE,CA,1/17/2000 21:40 +Pittsburgh,,LIGHT,PA,1/17/2000 22:10 +Buttonwillow,,CYLINDER,CA,1/18/2000 1:00 +Blackwell,,LIGHT,TX,1/18/2000 1:15 +Juneau,,,AK,1/18/2000 7:45 +Crescent City,BLUE,FIREBALL,CA,1/18/2000 18:15 +Dayton township,,OVAL,NV,1/18/2000 18:15 +Sixes,,LIGHT,OR,1/18/2000 18:20 +Los Gatos,BLUE,OTHER,CA,1/18/2000 18:25 +Ely,,SPHERE,NV,1/18/2000 18:30 +Pleasanton,,LIGHT,CA,1/18/2000 18:30 +Van Nuys,,LIGHT,CA,1/18/2000 18:30 +Los Angeles,,,CA,1/18/2000 18:39 +Wilsonville,,,OR,1/18/2000 19:45 +Lake Worth,,EGG,FL,1/19/2000 3:19 +Alvin,BLUE,,TX,1/19/2000 18:10 +Cairo,,CIRCLE,WV,1/20/2000 10:39 +Salt Lake City,,DISK,UT,1/20/2000 13:30 +Bryant,,CIRCLE,WI,1/20/2000 17:07 +Columbus,,FIREBALL,OH,1/20/2000 18:00 +Wilmington,,LIGHT,CA,1/20/2000 18:00 +Bradenton,,FIREBALL,FL,1/20/2000 21:30 +Bradenton,,FIREBALL,FL,1/20/2000 21:35 +Columbus,,TRIANGLE,NE,1/20/2000 22:00 +Houston,,TRIANGLE,TX,1/20/2000 22:10 +Houston,,DIAMOND,TX,1/20/2000 22:14 +Memphis,,OTHER,TN,1/20/2000 22:22 +Hialeah,,OTHER,FL,1/20/2000 22:30 +Belcamp,,TRIANGLE,MD,1/20/2000 23:10 +Pembroke Pines,,LIGHT,FL,1/20/2000 23:15 +,,RECTANGLE,NV,1/21/2000 11:30 +Whitefish,,FIREBALL,MT,1/21/2000 17:15 +Highland Park,,,IL,1/21/2000 18:30 +Tacna,,TRIANGLE,AZ,1/22/2000 11:30 +Sacramento area,ORANGE,TRIANGLE,CA,1/22/2000 19:00 +San Diego,,VARIOUS,CA,1/22/2000 23:00 +Petaluma,,DISK,CA,1/23/2000 11:05 +Rio Rancho,,SPHERE,NM,1/23/2000 15:00 +Covina,,OVAL,CA,1/23/2000 18:30 +Fontana,,DISK,CA,1/23/2000 18:50 +Mammoth Lakes,,DISK,CA,1/24/2000 13:00 +Edinburg,,LIGHT,TX,1/25/2000 19:55 +Gold Bar,,CIGAR,WA,1/25/2000 21:30 +Ottumwa,,DISK,IA,1/26/2000 6:45 +Westminster,RED,LIGHT,CA,1/26/2000 19:10 +Seattle,,FIREBALL,WA,1/26/2000 19:37 +Parrish,,TRIANGLE,FL,1/26/2000 21:00 +Omaha,,TEARDROP,NE,1/26/2000 21:11 +Sante Fe,YELLOW,OTHER,NM,1/26/2000 21:45 +San Gabriel Valley,,TRIANGLE,CA,1/27/2000 12:00 +Covina,,LIGHT,CA,1/27/2000 18:30 +Leavenworth,ORANGE,FIREBALL,WA,1/27/2000 19:40 +Monticello,,LIGHT,IN,1/27/2000 20:00 +Tucson,,CYLINDER,AZ,1/27/2000 22:00 +Damascus,GREEN,FIREBALL,OR,1/28/2000 0:00 +Beaverton,,CYLINDER,OR,1/28/2000 7:30 +East Rutherford,,TRIANGLE,NJ,1/28/2000 17:30 +Rohnert Park,,LIGHT,CA,1/28/2000 19:15 +Prescott Valley,YELLOW,CIRCLE,AZ,1/28/2000 20:40 +Laguna Niguel,,SPHERE,CA,1/28/2000 20:58 +Northbend,RED,CROSS,WA,1/29/2000 7:30 +Seatac,,FIREBALL,WA,1/29/2000 10:00 +Beaverton,,CYLINDER,OR,1/29/2000 13:00 +New Wilmington,,CIRCLE,PA,1/30/2000 10:30 +San Francisco,,TRIANGLE,CA,1/30/2000 23:15 +Cape Canaveral,GREEN,LIGHT,FL,1/31/2000 21:00 +Escondido,,CIRCLE,CA,1/31/2000 22:21 +Flagstaff,BLUE,,AZ,2/1/2000 1:00 +Lynn,,TRIANGLE,AL,2/1/2000 2:30 +Cottage Grove,,TRIANGLE,OR,2/1/2000 9:00 +Houston,,CHEVRON,TX,2/1/2000 10:00 +New York City,,OTHER,NY,2/1/2000 20:30 +Babbitt,,OTHER,MN,2/1/2000 23:00 +Flagstaff,,,AZ,2/1/2000 23:30 +Silverlake,,DIAMOND,WA,2/2/2000 0:00 +,,LIGHT,NV,2/2/2000 3:00 +Long Island,RED GREEN,TRIANGLE,NY,2/2/2000 10:00 +Denver,,OTHER,CO,2/2/2000 16:00 +Glenwood Landing,,VARIOUS,NY,2/2/2000 17:00 +Mattawa,ORANGE,OTHER,WA,2/2/2000 18:00 +Seattle,,,WA,2/2/2000 19:00 +Bouse,,,AZ,2/2/2000 19:33 +Seattle,,OTHER,WA,2/2/2000 19:49 +Seattle,,OTHER,WA,2/2/2000 19:49 +Kent,,CIGAR,WA,2/2/2000 20:00 +Rock Hill,,LIGHT,SC,2/2/2000 20:00 +Seattle,,CHEVRON,WA,2/2/2000 20:00 +Bagdad,YELLOW,OTHER,AZ,2/2/2000 21:30 +Castle Rock,RED GREEN,LIGHT,WA,2/3/2000 7:00 +Summerville,,TEARDROP,SC,2/3/2000 18:32 +Dillon,,TRIANGLE,SC,2/3/2000 19:10 +Crystal River,,LIGHT,FL,2/3/2000 19:45 +Temple City,,,CA,2/3/2000 20:00 +Sealy,,LIGHT,TX,2/3/2000 21:50 +Youngsville,,LIGHT,NC,2/4/2000 5:55 +Olympia,,LIGHT,WA,2/4/2000 19:30 +Houston,,TRIANGLE,TX,2/4/2000 19:40 +Prescott,YELLOW,CIRCLE,AZ,2/4/2000 20:30 +Prescott Valley,,CIRCLE,AZ,2/4/2000 21:30 +Prescott Valley,,FORMATION,AZ,2/4/2000 21:30 +Osceola,BLUE,OTHER,IN,2/4/2000 22:40 +Euless,GREEN,FIREBALL,TX,2/4/2000 23:59 +Tampa,,FORMATION,FL,2/5/2000 13:00 +Pollock Pines,,LIGHT,CA,2/5/2000 19:30 +St. Albans,,VARIOUS,WV,2/6/2000 6:30 +Las Vegas,,OTHER,NV,2/6/2000 19:30 +La Crosse,,,WI,2/6/2000 22:30 +Alton,,TRIANGLE,IL,2/7/2000 5:30 +Bullhead City,,OTHER,AZ,2/7/2000 13:00 +Sebring,YELLOW,LIGHT,FL,2/7/2000 19:35 +Pima,,FIREBALL,AZ,2/7/2000 19:40 +Ionia,,TRIANGLE,MI,2/7/2000 21:00 +Prescott Valley,YELLOW,CIRCLE,AZ,2/8/2000 0:30 +Ventura,,LIGHT,CA,2/8/2000 4:00 +Canton,,TRIANGLE,MA,2/8/2000 5:15 +Harbor City,,CIRCLE,CA,2/8/2000 9:10 +Avon Park,,FIREBALL,FL,2/8/2000 17:15 +North Hollywood,,OVAL,CA,2/8/2000 17:40 +Glendale,,DISK,CA,2/8/2000 18:00 +Seattle,RED,FIREBALL,WA,2/8/2000 19:07 +San Antonio,,OTHER,TX,2/8/2000 19:30 +Tucson,,,AZ,2/8/2000 21:00 +Southbury,,CIRCLE,CT,2/8/2000 23:00 +Columbia,,,MO,2/9/2000 8:25 +Bristol,,TRIANGLE,VT,2/9/2000 18:15 +Harrington,,OTHER,WA,2/9/2000 18:50 +Deer Park,,LIGHT,NY,2/9/2000 19:10 +Tucson,,OTHER,AZ,2/9/2000 19:30 +Columbia,,,MO,2/9/2000 20:25 +Ranger,,LIGHT,TX,2/9/2000 20:30 +Toledo,GREEN,OVAL,WA,2/9/2000 20:45 +Northport,,VARIOUS,WA,2/9/2000 21:00 +Sea Tac Airport,,TRIANGLE,WA,2/9/2000 21:00 +Lake Elsinore,,SPHERE,CA,2/9/2000 21:03 +Seattle,,CIRCLE,WA,2/9/2000 22:00 +Prescott Valley,ORANGE,,AZ,2/9/2000 22:12 +Kirkland,GREEN,OTHER,WA,2/10/2000 4:20 +Alturas,ORANGE,FIREBALL,FL,2/10/2000 19:30 +Tucson,,,AZ,2/11/2000 19:20 +Rockford,,LIGHT,IL,2/11/2000 20:15 +Rockford,ORANGE,FORMATION,IL,2/11/2000 21:00 +Rockford,ORANGE,FIREBALL,IL,2/11/2000 21:15 +Houston,,OTHER,TX,2/11/2000 22:00 +Buffalo,,CIRCLE,NY,2/12/2000 17:00 +Dundee,,FIREBALL,FL,2/12/2000 20:00 +Fort Lauderdale,YELLOW GREEN,FIREBALL,FL,2/12/2000 20:45 +Rockford,ORANGE,SPHERE,IL,2/12/2000 22:00 +Salem,,CIRCLE,OR,2/13/2000 2:00 +Sandpoint,,LIGHT,ID,2/13/2000 18:42 +Yuma,,,CA,2/13/2000 18:55 +Clermont,RED,LIGHT,FL,2/13/2000 20:00 +Jackson,,DIAMOND,MI,2/14/2000 5:20 +Hermitage,,SPHERE,AR,2/14/2000 16:26 +New York City,,OVAL,NY,2/14/2000 21:48 +Mahony City,,LIGHT,PA,2/15/2000 1:30 +Flushing,,EGG,NY,2/15/2000 1:38 +Alton,,CIRCLE,VA,2/15/2000 2:00 +Rocky Mount,,,NC,2/15/2000 2:30 +Petrified Forest National Park,,OVAL,AZ,2/15/2000 4:00 +Petrified Forest National Park,,OVAL,AZ,2/15/2000 4:00 +Honolulu,,DISK,HI,2/15/2000 12:30 +Scottsdale,,FIREBALL,AZ,2/15/2000 16:30 +Barnum,,TEARDROP,MN,2/15/2000 19:11 +Little Rock,RED ORANGE,OTHER,AR,2/15/2000 20:00 +New Canaan,,,CT,2/15/2000 21:00 +Fredericktown,,EGG,OH,2/15/2000 21:20 +Hubbard,,RECTANGLE,OR,2/15/2000 23:00 +West Memphis,,LIGHT,AR,2/15/2000 23:00 +Black Canyon City,BLUE,CIRCLE,AZ,2/16/2000 4:45 +Stevinson,,OTHER,CA,2/16/2000 12:30 +Atlantic,,FORMATION,IA,2/16/2000 18:35 +Dawsonville,,TRIANGLE,GA,2/16/2000 20:30 +Riverside,,LIGHT,CA,2/16/2000 21:05 +Seattle,,LIGHT,WA,2/16/2000 21:05 +Rockford,ORANGE,CIRCLE,IL,2/16/2000 21:30 +Rockford,ORANGE,CIRCLE,IL,2/16/2000 21:30 +Rockford,RED,CIRCLE,IL,2/16/2000 21:30 +Rockford,,FIREBALL,IL,2/16/2000 21:30 +Rockford,ORANGE,FIREBALL,IL,2/16/2000 21:30 +Rockford,,LIGHT,IL,2/16/2000 21:30 +Rockford,,TRIANGLE,IL,2/16/2000 21:30 +Rockford,,TRIANGLE,IL,2/16/2000 21:30 +Rockford,,VARIOUS,IL,2/16/2000 21:30 +Dallardsville,,RECTANGLE,TX,2/16/2000 22:00 +Walkerton,RED,LIGHT,IN,2/16/2000 22:00 +Rockford,,SPHERE,IL,2/16/2000 22:15 +Ashgrove,ORANGE,LIGHT,MO,2/17/2000 0:00 +Auburn,,TRIANGLE,WA,2/17/2000 18:30 +Rockford,ORANGE,DISK,IL,2/17/2000 19:00 +Wisconsin Dells,,LIGHT,WI,2/17/2000 19:35 +Pine Hill,,CHEVRON,NJ,2/17/2000 21:30 +Pasadena,,LIGHT,CA,2/18/2000 19:00 +Prescott Valley,,FIREBALL,AZ,2/18/2000 20:00 +Jacksonville,,TRIANGLE,FL,2/18/2000 22:00 +Glendale,,LIGHT,AR,2/18/2000 22:50 +Columbus,,,OH,2/19/2000 0:00 +Superior,,RECTANGLE,CO,2/19/2000 13:30 +Miami,,LIGHT,FL,2/19/2000 14:18 +Wilmington,,TRIANGLE,OH,2/19/2000 18:24 +Seatac,,LIGHT,WA,2/19/2000 19:05 +Los Banos,,OTHER,CA,2/19/2000 21:15 +Dallardsville,,VARIOUS,TX,2/19/2000 22:30 +Tacoma,GREEN,VARIOUS,WA,2/19/2000 23:00 +Malo,,FIREBALL,WA,2/19/2000 23:45 +Molson,RED GREEN BLUE,FIREBALL,WA,2/19/2000 23:45 +Athens,,CYLINDER,OH,2/20/2000 13:04 +Orlando,,OVAL,FL,2/20/2000 18:00 +Gresham,RED,,WI,2/20/2000 21:45 +Cottage Grove,,FORMATION,OR,2/20/2000 22:30 +Lodi,,OTHER,CA,2/21/2000 18:00 +Corvallis,ORANGE GREEN,FIREBALL,OR,2/21/2000 19:43 +Klamath Falls,RED,FIREBALL,OR,2/21/2000 19:43 +Orland Park,,FIREBALL,IL,2/21/2000 20:00 +Tupelo,,CYLINDER,MS,2/21/2000 20:40 +Los Altos Hills,,DISK,CA,2/21/2000 21:45 +Prescott Valley,,CYLINDER,AZ,2/22/2000 6:00 +Prescott Valley,ORANGE,CYLINDER,AZ,2/22/2000 6:00 +Prescott Valley,ORANGE,CYLINDER,AZ,2/22/2000 6:00 +Ogden,BLUE,LIGHT,UT,2/22/2000 19:00 +Kenai,,CONE,AK,2/23/2000 8:18 +Ridgecrest,,CIGAR,CA,2/23/2000 17:00 +Wrightsville,,TRIANGLE,GA,2/23/2000 22:55 +Huntsville,GREEN,DISK,AL,2/24/2000 1:15 +O'Brien,YELLOW,LIGHT,FL,2/24/2000 20:30 +Tallahassee,ORANGE,TRIANGLE,FL,2/24/2000 20:30 +Hollywood,,LIGHT,CA,2/24/2000 23:00 +Vandalia,,LIGHT,OH,2/26/2000 2:00 +Tonawanda,,EGG,NY,2/26/2000 6:29 +New York City,RED,DISK,NY,2/26/2000 10:00 +Durham,,CIRCLE,NC,2/26/2000 17:18 +McClave,ORANGE,LIGHT,CO,2/26/2000 19:20 +Goshen,,LIGHT,IN,2/26/2000 23:30 +Chicago,RED ORANGE,TRIANGLE,IL,2/27/2000 19:30 +Bloomington,,CIGAR,IN,2/27/2000 21:15 +Portland,,,OR,2/27/2000 23:00 +Virginia Beach,,CHEVRON,VA,2/28/2000 5:15 +Lehigh Acres,,LIGHT,FL,2/28/2000 11:00 +Olancha,,SPHERE,CA,2/28/2000 14:00 +Walworth,ORANGE,CIRCLE,WI,2/28/2000 19:30 +Charlestown,,LIGHT,RI,2/28/2000 21:30 +Hawaii's Volcano National Park,,SPHERE,HI,2/29/2000 13:35 +Las Vegas,,SPHERE,NM,2/29/2000 20:45 +New Haven,,LIGHT,MI,2/29/2000 21:50 +Tumwater,,EGG,WA,2/29/2000 22:00 +Antioch,ORANGE,LIGHT,CA,2/29/2000 22:40 +Hawthorne,,,NV,3/1/2000 0:00 +Pineville,,TRIANGLE,WV,3/1/2000 0:30 +Coram,,LIGHT,NY,3/1/2000 4:45 +Tucson,,OTHER,AZ,3/1/2000 14:00 +Fountain Valley,,LIGHT,CA,3/1/2000 17:00 +Sterling,,RECTANGLE,CO,3/1/2000 19:00 +Venice,,FIREBALL,FL,3/1/2000 20:00 +Lake Pontchartrain,,TRIANGLE,LA,3/1/2000 21:00 +Springfield,,CHEVRON,OH,3/1/2000 21:00 +Houston,,DISK,TX,3/1/2000 23:00 +Oskaloosa,,CHEVRON,IA,3/1/2000 23:00 +Memphis,,FORMATION,TN,3/2/2000 1:15 +Alhambra Golf Course,,FORMATION,CA,3/2/2000 13:00 +Springfield,,,MO,3/2/2000 19:00 +Paterson,,LIGHT,NJ,3/2/2000 22:45 +Pearl River,,OVAL,NY,3/2/2000 23:42 +Grove City,RED,TRIANGLE,OH,3/3/2000 1:15 +Longwood,,LIGHT,FL,3/3/2000 4:00 +Boone,BLUE,OVAL,IA,3/3/2000 19:55 +Prescott Valley,,CIRCLE,AZ,3/3/2000 20:00 +Ogden,,LIGHT,UT,3/3/2000 22:20 +Kansas City,,SPHERE,MI,3/4/2000 18:40 +Miami,,SPHERE,FL,3/5/2000 3:40 +Rockford,,OTHER,IL,3/5/2000 20:27 +Quincy,,LIGHT,IL,3/5/2000 21:45 +Kenosha,,VARIOUS,WI,3/5/2000 23:33 +Salt Lake City,RED BLUE,OVAL,UT,3/6/2000 3:30 +Ocean Shores,,TRIANGLE,WA,3/6/2000 4:30 +Irvine,,SPHERE,CA,3/6/2000 16:30 +Silver Spring,,OTHER,MD,3/6/2000 19:55 +Roland,,DISK,OK,3/6/2000 22:00 +Hugo,BLUE,LIGHT,MN,3/6/2000 22:20 +Venice,,OVAL,FL,3/7/2000 7:00 +Harrisonville,,OTHER,MO,3/7/2000 19:00 +Gaithersburg,YELLOW,FORMATION,MD,3/7/2000 19:20 +Kansas City,,CIRCLE,MO,3/7/2000 19:45 +Corry,BLUE,,PA,3/7/2000 20:15 +Severna Park,,CIGAR,MD,3/7/2000 20:50 +Fresno,,FORMATION,CA,3/7/2000 22:00 +Gulf Breeze,,FIREBALL,FL,3/7/2000 22:00 +Magna,,DISK,UT,3/8/2000 5:37 +Silver Spring Twp.,,OVAL,PA,3/8/2000 13:00 +Fort Smith,,OVAL,AR,3/9/2000 17:05 +Fallbrook,,CIRCLE,CA,3/9/2000 18:30 +Portland,,LIGHT,ME,3/9/2000 18:35 +Memphis,,FIREBALL,AR,3/9/2000 19:00 +Powhatan,,FIREBALL,VA,3/9/2000 19:00 +Fort Myers,,LIGHT,FL,3/9/2000 19:15 +Vassalboro,,OTHER,ME,3/9/2000 19:45 +Buffalo,RED,FIREBALL,MO,3/9/2000 20:15 +Eureka Springs,,FIREBALL,AR,3/9/2000 20:25 +Conway,ORANGE GREEN,FIREBALL,AR,3/9/2000 20:30 +Houston,,TRIANGLE,TX,3/9/2000 20:30 +Timbo,,SPHERE,AR,3/9/2000 20:30 +Timbo,,SPHERE,AR,3/9/2000 20:30 +Fredericksburg,ORANGE GREEN,FIREBALL,VA,3/9/2000 20:45 +Olive Branch,ORANGE,FIREBALL,MS,3/9/2000 20:45 +Smyrna,,FIREBALL,TN,3/9/2000 20:45 +Little Rock,,LIGHT,AR,3/9/2000 21:00 +Sallisaw,,FIREBALL,OK,3/9/2000 21:00 +Elmira,,DISK,NY,3/9/2000 21:20 +Springfield,,,IL,3/9/2000 21:30 +Lonoke,,LIGHT,AR,3/9/2000 22:00 +Mountain Home,,FIREBALL,AR,3/9/2000 22:09 +Rockford,,LIGHT,IL,3/10/2000 0:00 +Atlanta,,DISK,GA,3/10/2000 3:00 +Ephrata,,OTHER,WA,3/10/2000 4:00 +Price,,LIGHT,UT,3/10/2000 18:00 +Freedom,,LIGHT,ME,3/10/2000 19:20 +Rockford,,DIAMOND,IL,3/10/2000 20:58 +Rockford,,LIGHT,IL,3/10/2000 21:15 +Duncansville,,TRIANGLE,PA,3/10/2000 21:43 +,GREEN,,FL,3/11/2000 3:30 +Mobile,,TRIANGLE,AL,3/11/2000 12:30 +Houston,,SPHERE,TX,3/11/2000 16:30 +Citrus Heights,,CIRCLE,CA,3/11/2000 19:00 +Fair Oaks,RED,LIGHT,CA,3/11/2000 19:04 +Orangevale,,FIREBALL,CA,3/11/2000 19:45 +Gold Bar,GREEN,SPHERE,WA,3/11/2000 21:00 +Santa Barbara,,TRIANGLE,CA,3/11/2000 21:00 +Dover,,TRIANGLE,AR,3/11/2000 21:20 +Las Vegas,,OVAL,NV,3/11/2000 21:30 +Gold Bar,,LIGHT,WA,3/11/2000 21:45 +Buckeye,,,AZ,3/11/2000 22:45 +Coral Springs,RED,OTHER,FL,3/12/2000 0:00 +Ocala,,TRIANGLE,FL,3/12/2000 0:19 +Simi Valley,,FIREBALL,CA,3/12/2000 1:19 +Sunland,ORANGE,LIGHT,CA,3/12/2000 1:30 +Encino,BLUE,SPHERE,CA,3/12/2000 1:45 +Seattle,,CIGAR,WA,3/12/2000 8:00 +Marquette,,OVAL,MI,3/12/2000 13:30 +Sedona,,OTHER,AZ,3/12/2000 15:00 +Falconer,,TRIANGLE,NY,3/12/2000 19:35 +Escondido,,LIGHT,CA,3/12/2000 20:37 +Arkansas,,CIRCLE,AR,3/12/2000 21:10 +Plymouth Borough,,CROSS,PA,3/12/2000 23:00 +Jacksonville,,LIGHT,FL,3/13/2000 0:30 +Seattle,,DIAMOND,WA,3/13/2000 11:51 +Torrance,,,CA,3/13/2000 13:00 +Healdsburg,,RECTANGLE,CA,3/13/2000 17:00 +San Jose,BLUE,LIGHT,CA,3/13/2000 20:00 +Charleston,,CIRCLE,SC,3/13/2000 21:00 +Clarinda,,LIGHT,IA,3/13/2000 21:40 +New York City,,,NY,3/14/2000 4:50 +Scotts Valley,,FORMATION,CA,3/14/2000 16:35 +Ionia,,DIAMOND,MI,3/14/2000 21:00 +Indianapolis,,CYLINDER,IN,3/14/2000 22:30 +Imperial Beach,,LIGHT,CA,3/15/2000 1:00 +Merritt Island,,SPHERE,FL,3/15/2000 3:00 +Winthrop,,VARIOUS,MA,3/15/2000 6:39 +Pine Bush,,OTHER,NY,3/15/2000 8:30 +Utica,,DISK,NY,3/15/2000 14:00 +Blue Springs,,VARIOUS,MO,3/15/2000 14:46 +Aguilar,,RECTANGLE,CO,3/15/2000 15:00 +Boulder,,DIAMOND,CO,3/15/2000 16:30 +Okeechobee,,RECTANGLE,GA,3/15/2000 17:00 +Yelm,BLUE,DISK,WA,3/15/2000 19:30 +Riverside,,LIGHT,CA,3/15/2000 20:45 +Bakersville,,LIGHT,NC,3/15/2000 21:15 +New Philadelphia,,LIGHT,OH,3/15/2000 22:00 +Portland,,OVAL,OR,3/15/2000 23:00 +Owaneco,,,IL,3/15/2000 23:27 +Moab,,DISK,UT,3/16/2000 3:30 +Houston,,SPHERE,TX,3/16/2000 9:00 +Omaha,,CIGAR,NE,3/16/2000 13:05 +Anza,,LIGHT,CA,3/16/2000 17:15 +Thousand Oaks,,TRIANGLE,CA,3/17/2000 0:26 +Vancouver,,,WA,3/17/2000 3:15 +San Antonio,,TRIANGLE,TX,3/17/2000 4:00 +Memphis,,DIAMOND,TN,3/17/2000 10:15 +Everett,,LIGHT,WA,3/18/2000 20:20 +Pembroke,RED,,MA,3/18/2000 22:00 +Palm Desert,,LIGHT,CA,3/18/2000 22:30 +Las Vegas,,OVAL,NV,3/18/2000 23:45 +Lacey,RED BLUE,CROSS,WA,3/19/2000 8:10 +Albuquerque,,OVAL,NM,3/19/2000 9:05 +Tucson,,LIGHT,AZ,3/19/2000 21:00 +San Francisco,,FIREBALL,CA,3/19/2000 21:30 +Reisterstown,,,MD,3/19/2000 22:30 +Pasadena,,TRIANGLE,CA,3/19/2000 23:35 +Calhoun,,OTHER,GA,3/20/2000 13:00 +Fort Meade,,FIREBALL,MD,3/20/2000 21:00 +Elko,,FIREBALL,NV,3/20/2000 22:00 +Mt. Pocono,,OTHER,PA,3/20/2000 22:45 +Dickson,,CYLINDER,TN,3/21/2000 14:45 +Mattawan,,TRIANGLE,MI,3/21/2000 19:30 +Duluth,,,MN,3/21/2000 21:00 +St. Cloud,,CIRCLE,FL,3/21/2000 21:00 +East Springfield,,LIGHT,PA,3/21/2000 22:05 +Bonnie Spring,,FIREBALL,NV,3/22/2000 11:00 +Lake Forest,ORANGE,LIGHT,CA,3/22/2000 20:05 +St Clair Shores,,TRIANGLE,MI,3/22/2000 20:30 +Tuscaloosa,,FORMATION,AL,3/22/2000 21:40 +Norridgewock,,RECTANGLE,ME,3/23/2000 2:15 +Sioux Falls,,DIAMOND,SD,3/23/2000 18:00 +Fullerton,,TEARDROP,CA,3/23/2000 19:15 +Providence,ORANGE,RECTANGLE,RI,3/23/2000 19:30 +Somerset,RED,OTHER,OH,3/23/2000 19:30 +Lake City,BLUE,TRIANGLE,TN,3/24/2000 0:30 +Syracuse,BLUE,LIGHT,NY,3/24/2000 3:15 +Beaverton,,DISK,OR,3/24/2000 13:35 +Ionia,,OVAL,MI,3/24/2000 18:00 +Southport,,FIREBALL,NC,3/24/2000 18:30 +Saginaw,,FIREBALL,MI,3/24/2000 19:45 +Woodbury,,,NY,3/24/2000 20:27 +Des Moines,,FIREBALL,IA,3/25/2000 0:45 +The Woodlands,,,TX,3/25/2000 18:00 +Huron,,FLASH,KS,3/25/2000 22:00 +Lompoc,,CIRCLE,CA,3/25/2000 22:00 +Pittsburgh,,TRIANGLE,PA,3/26/2000 22:45 +Bella Vista,,VARIOUS,CA,3/27/2000 1:10 +Ann Arbor,,LIGHT,MI,3/27/2000 18:00 +Santa Cruz,,CIGAR,CA,3/27/2000 20:00 +Mexico Beach,,CIRCLE,FL,3/27/2000 21:40 +Elk,RED GREEN BLUE,LIGHT,CA,3/27/2000 23:20 +Prescott Valley,RED,CIRCLE,AZ,3/28/2000 0:00 +Summer Lake,RED ORANGE,SPHERE,OR,3/28/2000 7:45 +Miami,,CIRCLE,FL,3/28/2000 15:00 +Centreville,,CIRCLE,VA,3/28/2000 15:45 +Bouse,,LIGHT,AZ,3/28/2000 21:00 +Fort. Deposit,,TRIANGLE,AL,3/28/2000 21:15 +Corinth,,OTHER,TX,3/28/2000 22:20 +Hammond,,LIGHT,LA,3/28/2000 22:40 +Belton,,VARIOUS,SC,3/29/2000 0:00 +Steamboat,,OVAL,NV,3/29/2000 0:00 +Aberdeen,,VARIOUS,OH,3/29/2000 3:00 +Treasure Island,,CIRCLE,FL,3/29/2000 14:30 +Reno,YELLOW BLUE,CIRCLE,NV,3/29/2000 20:00 +Atlanta,,LIGHT,GA,3/29/2000 20:20 +Munising,,TRIANGLE,MI,3/29/2000 22:30 +Hooker,ORANGE,CIRCLE,OK,3/30/2000 3:30 +Phoenix,,FLASH,AZ,3/30/2000 12:25 +Phoenix,,LIGHT,AZ,3/30/2000 18:50 +Gilbert,RED,CIRCLE,AZ,3/30/2000 18:52 +Newton,,LIGHT,MA,3/30/2000 22:00 +Angelica,,FIREBALL,NY,3/30/2000 23:30 +Charlestown,ORANGE,DISK,RI,3/31/2000 5:05 +West,,LIGHT,TX,3/31/2000 9:40 +West Nyack,,OTHER,NY,3/31/2000 14:00 +Westchester,,CIRCLE,CA,3/31/2000 14:00 +Bristol,,,CT,3/31/2000 21:45 +Philadelphia,,CIRCLE,PA,3/31/2000 23:30 +Lake Havasu City,RED,LIGHT,AZ,4/1/2000 5:20 +Evansville,,SPHERE,IN,4/1/2000 6:28 +Mission Viejo,,FORMATION,CA,4/1/2000 13:00 +Elizabethtown,,DISK,KY,4/1/2000 16:00 +Chicago,,SPHERE,IL,4/1/2000 17:50 +Del Mar,ORANGE,FORMATION,CA,4/1/2000 19:00 +Huntington Beach,RED,LIGHT,CA,4/1/2000 21:00 +Dallas,RED GREEN BLUE,,TX,4/1/2000 21:30 +Copemish,,CIRCLE,MI,4/1/2000 21:50 +Los Alamos,,,NM,4/1/2000 22:00 +Young City,,DISK,TX,4/1/2000 22:15 +Indianapolis,,TRIANGLE,IN,4/2/2000 3:00 +Fremont,,,IA,4/2/2000 14:00 +Fairbanks,,OVAL,AK,4/2/2000 18:00 +Fort Wayne,,OVAL,IN,4/4/2000 2:00 +Sedillo Hill,RED,LIGHT,NM,4/4/2000 5:20 +Clearwater,,OTHER,FL,4/4/2000 16:30 +Bouse,,LIGHT,AZ,4/4/2000 21:05 +Hazelwood,,CYLINDER,MO,4/5/2000 18:30 +Baton Rouge,,LIGHT,LA,4/5/2000 20:00 +Ocean City,RED BLUE,DISK,MD,4/5/2000 22:00 +Perris,,CIRCLE,CA,4/6/2000 14:00 +Seagoville,,CIRCLE,TX,4/6/2000 15:28 +Glendale,,CIRCLE,AZ,4/6/2000 16:00 +Chattanooga,,OTHER,TN,4/6/2000 20:00 +Highlands,GREEN,,NJ,4/6/2000 20:00 +Tehachapi,RED,LIGHT,CA,4/6/2000 20:00 +Tuckerton,,SPHERE,NJ,4/6/2000 20:34 +Arlington,ORANGE GREEN,LIGHT,TX,4/6/2000 20:35 +San Antonio,,LIGHT,TX,4/6/2000 21:08 +"Des Moines--4 blocks east of the Marina, Wash",,OVAL,WA,4/7/2000 5:26 +Streetsboro,,,OH,4/7/2000 21:30 +Vero Beach,,DIAMOND,FL,4/8/2000 1:30 +Seattle,,EGG,WA,4/8/2000 18:00 +Seattle,,EGG,WA,4/8/2000 18:35 +Menifee,ORANGE GREEN,FIREBALL,CA,4/9/2000 1:10 +Oceanside,GREEN,FIREBALL,CA,4/9/2000 1:10 +Newport Coast,,FIREBALL,CA,4/9/2000 1:11 +Santa Barbara,GREEN,FIREBALL,CA,4/9/2000 1:11 +Richmond,,CIRCLE,IN,4/9/2000 1:30 +Hot Springs,,CIGAR,AR,4/9/2000 16:30 +Temple City,,LIGHT,CA,4/9/2000 20:00 +Schuyler County area,RED,OVAL,IL,4/9/2000 22:30 +Springfield,RED,OVAL,IL,4/9/2000 22:30 +Sunflower,,TRIANGLE,AZ,4/10/2000 0:00 +Fresno,,CHEVRON,CA,4/10/2000 8:13 +South Whitley,,OTHER,IN,4/10/2000 10:00 +Greers Ferry,,,GA,4/10/2000 18:00 +Owls Head,,DIAMOND,ME,4/10/2000 23:00 +Tonasket,,LIGHT,WA,4/11/2000 5:10 +Fayetteville,,LIGHT,AR,4/12/2000 19:30 +West Palm Beach,,CIRCLE,FL,4/12/2000 20:50 +Eugene,,LIGHT,OR,4/12/2000 20:58 +Alamo Lake State Park,ORANGE,,AZ,4/12/2000 21:45 +Antioch,ORANGE,LIGHT,CA,4/13/2000 5:30 +Waite Park,,LIGHT,MN,4/13/2000 20:00 +Texarkana,,OTHER,TX,4/13/2000 21:30 +Eugene,ORANGE,SPHERE,OR,4/13/2000 22:30 +Pittsburgh,,TRIANGLE,PA,4/13/2000 22:30 +San Luis Obispo,,OVAL,CA,4/14/2000 3:00 +Newfields,,,NH,4/14/2000 3:27 +Montauk,,DISK,NY,4/14/2000 3:42 +East Killingly,RED,DISK,CT,4/14/2000 21:00 +New Haven,RED,,CT,4/14/2000 21:45 +Gulf of Mexico,,SPHERE,FL,4/15/2000 2:00 +Hayden,,LIGHT,ID,4/15/2000 4:00 +Phoenix,,VARIOUS,AZ,4/15/2000 12:25 +Gig Harbor,,DISK,WA,4/15/2000 13:45 +Tokeland,,,WA,4/15/2000 15:00 +Torrance,,DISK,CA,4/15/2000 15:35 +Beatty,,FORMATION,NV,4/15/2000 22:00 +Meraux,,RECTANGLE,LA,4/15/2000 22:00 +San Diego,,FORMATION,CA,4/15/2000 22:00 +Sedona,YELLOW,SPHERE,AZ,4/15/2000 23:00 +Prescott Valley,RED,SPHERE,AZ,4/15/2000 23:45 +Santee,,LIGHT,CA,4/16/2000 1:30 +Albuquerque,,RECTANGLE,NM,4/16/2000 10:25 +New York City,,DISK,NY,4/16/2000 12:00 +San Diego,,CYLINDER,CA,4/16/2000 14:00 +Sanibel Island,,,FL,4/16/2000 19:40 +Omaha,,FIREBALL,NE,4/16/2000 20:00 +Forest Grove,,CONE,OR,4/17/2000 2:00 +Tulsa,,CIGAR,OK,4/17/2000 6:15 +Los Angeles,,SPHERE,CA,4/17/2000 16:00 +Sultan,,LIGHT,WA,4/17/2000 19:20 +Santa Fe,YELLOW,CYLINDER,NM,4/17/2000 20:00 +Antioch,ORANGE,FIREBALL,CA,4/17/2000 22:30 +Corvallis,,FIREBALL,OR,4/17/2000 22:54 +Arizona,YELLOW,CIRCLE,AZ,4/18/2000 0:00 +Tacoma,,OTHER,WA,4/18/2000 11:32 +Cottonwood,,CYLINDER,AZ,4/18/2000 19:00 +Cocoa Beach,BLUE,CYLINDER,FL,4/18/2000 22:00 +Arroyo Seco,,LIGHT,CA,4/19/2000 13:30 +Jellico,,DISK,TN,4/19/2000 18:15 +Alabaster,,EGG,AL,4/19/2000 19:10 +Culver City,,LIGHT,CA,4/19/2000 20:20 +Delray Beach,,CHEVRON,FL,4/19/2000 23:09 +Chicago,,OTHER,IL,4/19/2000 23:50 +Palm Desert,,CIGAR,CA,4/20/2000 5:38 +Austin,,FIREBALL,TX,4/20/2000 17:00 +Burlington Township,,TRIANGLE,IL,4/20/2000 19:00 +Tonasket,,LIGHT,WA,4/20/2000 19:55 +Santa Clara,ORANGE,EGG,CA,4/20/2000 21:05 +Magna,ORANGE,LIGHT,UT,4/20/2000 21:23 +Clearfield,,CIRCLE,UT,4/20/2000 21:35 +Clearfield,,FORMATION,UT,4/20/2000 21:35 +Joshua,,,TX,4/20/2000 22:30 +Redlands,RED,,CA,4/20/2000 23:00 +Rockport,,OVAL,MA,4/20/2000 23:00 +Harrison,,CYLINDER,AR,4/21/2000 17:00 +Marion,,DISK,IN,4/21/2000 22:00 +Healdsburg,,TRIANGLE,CA,4/21/2000 23:15 +Manitowoc,,LIGHT,WI,4/22/2000 1:23 +Piqua,,,OH,4/22/2000 15:00 +Sullivan,,CIGAR,MO,4/22/2000 17:15 +Birmingham,,VARIOUS,AL,4/22/2000 22:00 +Victor,,FIREBALL,IA,4/22/2000 22:20 +Lake Charles,,TRIANGLE,LA,4/22/2000 23:15 +Burke,,DISK,VA,4/22/2000 23:30 +Las Vegas,,CIRCLE,NV,4/23/2000 1:30 +Nevada,,DISK,NV,4/23/2000 18:40 +Riverside,,LIGHT,CA,4/23/2000 21:00 +Arivaca,,OTHER,AZ,4/23/2000 22:00 +Eugene,,DISK,OR,4/23/2000 23:00 +Merrillville,,TRIANGLE,IN,4/24/2000 0:15 +Palmetto,,TRIANGLE,GA,4/24/2000 0:20 +San Jose,,SPHERE,CA,4/24/2000 18:08 +Tulsa,,FIREBALL,OK,4/24/2000 19:52 +Venice,RED BLUE,DIAMOND,CA,4/24/2000 20:00 +Chino Hills,GREEN,CIRCLE,CA,4/24/2000 22:30 +Cincinnati,,EGG,OH,4/24/2000 22:30 +Eagle River,RED,LIGHT,AK,4/24/2000 23:15 +Great Falls,,,MT,4/24/2000 23:30 +Wheaton,,CIRCLE,MD,4/25/2000 0:30 +Wood Dale,,OTHER,IL,4/25/2000 2:10 +Grand Rapids,,,MI,4/25/2000 21:25 +Kankakee,RED GREEN,CIRCLE,IL,4/25/2000 21:30 +Carrollton,,FORMATION,TX,4/25/2000 23:15 +San Rafael,,LIGHT,CA,4/25/2000 23:30 +Bolingbrook,,OVAL,IL,4/26/2000 21:30 +Palm Springs,,TRIANGLE,CA,4/27/2000 9:15 +Orlando,,OTHER,FL,4/27/2000 12:30 +Lewiston,ORANGE,LIGHT,ME,4/27/2000 13:00 +Coos Bay,,LIGHT,OR,4/27/2000 18:04 +Dallas,,LIGHT,TX,4/27/2000 20:40 +Prescott Valley,,CIRCLE,AZ,4/27/2000 22:00 +Hot Springs,,CIGAR,AR,4/27/2000 22:15 +Plano,,TRIANGLE,TX,4/27/2000 23:38 +Grants Pass,,CIRCLE,OR,4/28/2000 4:30 +Seattle,,FIREBALL,WA,4/28/2000 21:00 +Wheeling,,TRIANGLE,WV,4/28/2000 21:00 +Seattle,,DISK,WA,4/28/2000 22:05 +Federal Way,,CIGAR,WA,4/28/2000 22:07 +Federal Way,BLUE,CIGAR,WA,4/28/2000 22:07 +Seattle,GREEN,LIGHT,WA,4/28/2000 22:07 +Seattle,,OTHER,WA,4/28/2000 22:10 +Bossier City,,CHEVRON,LA,4/28/2000 22:28 +Des Moines,,,IA,4/28/2000 23:15 +Santa Maria,RED GREEN BLUE,OVAL,CA,4/29/2000 19:00 +Wittmann,,FLASH,AZ,4/29/2000 20:30 +Floral Park,,DISK,NY,4/29/2000 22:29 +Ogden,RED,CIRCLE,UT,4/29/2000 22:30 +Raccoon Creek State Park,,TRIANGLE,PA,4/29/2000 23:00 +Eagle Point,,CIRCLE,OR,4/29/2000 23:10 +Butte Falls,,LIGHT,OR,4/29/2000 23:11 +South Lyon,,DISK,MI,4/30/2000 0:00 +Franklin,RED,DIAMOND,MA,4/30/2000 0:12 +Layton,,TRIANGLE,UT,4/30/2000 22:00 +Corvallis,,DISK,OR,4/30/2000 22:30 +Portland,,CIRCLE,OR,4/30/2000 22:30 +Port Washington,,FIREBALL,WI,4/30/2000 23:41 +New York City,,FLASH,NY,5/1/2000 1:00 +Marietta,,OVAL,GA,5/1/2000 4:00 +Moreno Valley,,VARIOUS,CA,5/1/2000 9:23 +Geneva,,SPHERE,IL,5/1/2000 12:00 +Prairieville,,EGG,LA,5/1/2000 17:00 +Hwy 12,,LIGHT,WA,5/1/2000 20:00 +Westlake,,LIGHT,LA,5/1/2000 21:00 +Chicago,,SPHERE,IL,5/1/2000 21:30 +Little Rock,,TRIANGLE,AR,5/1/2000 22:55 +Red Shirt,,LIGHT,SD,5/1/2000 23:00 +Sheboygan,,DIAMOND,WI,5/2/2000 1:23 +Waterford,BLUE,DISK,NJ,5/3/2000 3:00 +Newton,,,MA,5/3/2000 9:45 +Mt. Pleasant,,LIGHT,IA,5/3/2000 20:00 +Pittsville,,CIRCLE,MO,5/3/2000 21:30 +Pittsville,,LIGHT,MO,5/3/2000 21:30 +Surprise,,LIGHT,AZ,5/3/2000 22:00 +Avon Lake,,OTHER,OH,5/3/2000 22:30 +Surprise,,,AZ,5/3/2000 22:30 +Gig Harbor,,SPHERE,WA,5/4/2000 10:30 +Deweyville,,DIAMOND,TX,5/4/2000 12:00 +Fallbrook,,OTHER,CA,5/4/2000 17:00 +Kansas City,,SPHERE,MO,5/4/2000 21:10 +Ferguson,,CIRCLE,MO,5/4/2000 21:44 +St. Cloud,,CIRCLE,FL,5/4/2000 22:00 +Houston,,TRIANGLE,TX,5/4/2000 23:40 +Atlanta,,LIGHT,GA,5/5/2000 0:00 +Onawa,,VARIOUS,IA,5/5/2000 19:30 +Johnson County,RED GREEN,SPHERE,KS,5/5/2000 20:30 +Simpsonville,RED BLUE,LIGHT,SC,5/5/2000 21:50 +Triborough Bridge,GREEN,LIGHT,NY,5/6/2000 5:05 +Bloomingburgh,,LIGHT,NY,5/6/2000 21:30 +Broad Creek,,,NC,5/6/2000 21:38 +Braintree,,LIGHT,MA,5/6/2000 22:00 +Costa Mesa,,DISK,CA,5/6/2000 23:30 +Portland,,OTHER,OR,5/7/2000 3:45 +Laguna Beach,BLUE,DISK,CA,5/7/2000 8:00 +Greenville,,OTHER,DE,5/7/2000 13:00 +Worcester County,,,MA,5/7/2000 16:30 +Edinburg,,TRIANGLE,IL,5/7/2000 22:12 +Evansville,,DIAMOND,IN,5/7/2000 22:45 +Pompton Plains,,DISK,NJ,5/8/2000 19:00 +Carpinteria,,TRIANGLE,CA,5/8/2000 22:00 +Decatur,,SPHERE,GA,5/9/2000 0:35 +Shahola Falls,,LIGHT,PA,5/9/2000 3:15 +Camp Atturburry,RED,SPHERE,IN,5/9/2000 8:30 +Lawton,,SPHERE,OK,5/9/2000 10:30 +Knoxville,,CIRCLE,TN,5/9/2000 12:00 +Canfield,,DISK,OH,5/9/2000 20:30 +Riverside,,CIRCLE,CA,5/9/2000 20:58 +Salado,,OTHER,TX,5/9/2000 21:30 +Ashton,,,MI,5/10/2000 10:00 +Charlotte,,TRIANGLE,NC,5/10/2000 22:00 +Riverside,,,CA,5/12/2000 1:02 +Molalla,,DISK,OR,5/12/2000 9:30 +Portland,,,OR,5/12/2000 20:50 +Covina,ORANGE,OTHER,CA,5/12/2000 22:17 +Milwaukee,,CONE,WI,5/12/2000 23:00 +Melbourne,,LIGHT,FL,5/12/2000 23:15 +Candor,,OTHER,NY,5/12/2000 23:25 +Federal Heights,,SPHERE,CO,5/13/2000 17:30 +Talladega,,OTHER,AL,5/13/2000 20:00 +Independence,,TRIANGLE,MO,5/13/2000 22:00 +Auburn,RED,,WA,5/13/2000 23:00 +Randall,ORANGE,TRIANGLE,MN,5/13/2000 23:30 +Vacaville,ORANGE,LIGHT,CA,5/13/2000 23:45 +Eastchester,,CIRCLE,NY,5/14/2000 3:00 +Millston,,DISK,WI,5/14/2000 17:00 +Union Beach,,TRIANGLE,NJ,5/14/2000 19:00 +Stafford Forge,RED,TRIANGLE,NJ,5/14/2000 21:25 +Tuckerton,RED YELLOW GREEN,TRIANGLE,NJ,5/14/2000 21:25 +Winter Haven,,EGG,FL,5/15/2000 2:30 +Bushkill,BLUE,CIRCLE,PA,5/15/2000 3:00 +Los Angeles,,TRIANGLE,CA,5/15/2000 4:00 +Dexter,,DISK,KY,5/15/2000 7:00 +Johnstown,,DISK,PA,5/15/2000 13:45 +Jackson,,CIGAR,NJ,5/15/2000 19:30 +New Rochelle,,CIRCLE,NY,5/15/2000 20:00 +Harrison,,LIGHT,AR,5/15/2000 21:00 +Ladson,,OTHER,SC,5/15/2000 21:30 +Woodburn,,LIGHT,OR,5/15/2000 21:55 +Buttonwillow,,CHEVRON,CA,5/15/2000 22:00 +Lancaster,,TRIANGLE,CA,5/15/2000 22:00 +Virginia,,OTHER,MN,5/15/2000 22:00 +Pittsburg,RED GREEN,LIGHT,TX,5/15/2000 22:30 +Shakopee,,FIREBALL,MN,5/15/2000 22:50 +Fair Lawn,,CIRCLE,NJ,5/15/2000 23:00 +Cleveland,,TEARDROP,OH,5/15/2000 23:30 +Ottawa,,,WI,5/16/2000 9:30 +Charlotte,,EGG,NC,5/16/2000 11:00 +Wilmington,,OTHER,DE,5/17/2000 0:35 +Fredericksburg,,TEARDROP,TX,5/17/2000 16:00 +Glen Ridge,,CIRCLE,NJ,5/17/2000 19:30 +Jackson,,SPHERE,TN,5/17/2000 19:30 +Bakersfield,,CROSS,CA,5/17/2000 21:00 +Bay City,,OVAL,OR,5/17/2000 21:54 +San Francisco,,LIGHT,CA,5/18/2000 20:55 +Brookville,,DIAMOND,PA,5/18/2000 21:00 +Cuba,,TRIANGLE,MO,5/18/2000 22:10 +Phoenix,,CIRCLE,AZ,5/19/2000 0:00 +Cocoa,,LIGHT,FL,5/19/2000 21:00 +Augusta,,FIREBALL,KS,5/20/2000 0:00 +Hudson,,OVAL,OH,5/20/2000 5:00 +Benedicta,,SPHERE,ME,5/20/2000 13:00 +Viola,,CIGAR,WI,5/20/2000 14:27 +Glenn Ellyn,,OTHER,IL,5/20/2000 15:00 +Hampton,,OTHER,VA,5/20/2000 16:10 +Santa Clarita,,LIGHT,CA,5/20/2000 20:20 +Lancaster,,,CA,5/20/2000 20:45 +Index,,CONE,WA,5/20/2000 23:30 +NASA-INTERNET TV,,DISK,TX,5/21/2000 1:00 +New Smyrna Beach,,,FL,5/21/2000 2:40 +Bauxite,,TRIANGLE,AR,5/21/2000 23:00 +Houston,GREEN,LIGHT,TX,5/22/2000 3:30 +Visalia,BLUE,FIREBALL,CA,5/22/2000 18:00 +Paso Robles,,FLASH,CA,5/22/2000 21:10 +Gardner,ORANGE GREEN,EGG,KS,5/22/2000 23:00 +Dayton,,,OH,5/22/2000 23:15 +Tulsa,,CIRCLE,OK,5/23/2000 20:15 +Sun Prairie,,,WI,5/23/2000 22:30 +Cleveland,,TRIANGLE,TN,5/23/2000 23:00 +Mount Shasta,,TEARDROP,CA,5/24/2000 0:00 +Flagstaff,,OVAL,AZ,5/25/2000 2:30 +Dallas,,DISK,TX,5/25/2000 15:15 +Burr Ridge,,TRIANGLE,IL,5/25/2000 19:40 +Victor,RED GREEN,DISK,NY,5/25/2000 20:00 +Ketchikan,,OVAL,AK,5/25/2000 21:00 +Cottage Hills,,CHEVRON,IL,5/25/2000 21:30 +Phoenix,,LIGHT,AZ,5/25/2000 21:30 +South Pasadena,,CHEVRON,CA,5/26/2000 9:28 +Yuma,,,AZ,5/26/2000 19:00 +Burbank,ORANGE,DISK,CA,5/26/2000 20:00 +Newton,,LIGHT,NH,5/26/2000 22:15 +Littleton,,FIREBALL,CO,5/26/2000 22:50 +Jersey City,ORANGE,SPHERE,NJ,5/26/2000 23:15 +Ogdensburg,,VARIOUS,NY,5/26/2000 23:15 +Cincinnati,,CIRCLE,OH,5/27/2000 2:00 +Lake Havasu,,DISK,AZ,5/27/2000 16:30 +Nassau County,,DISK,NY,5/27/2000 21:00 +Los Angeles,,FORMATION,CA,5/27/2000 22:55 +Fresno,,FORMATION,CA,5/28/2000 0:20 +Maricopa,,EGG,CA,5/28/2000 14:00 +White Sands,,LIGHT,NM,5/28/2000 20:00 +Decatur,,VARIOUS,TX,5/28/2000 20:30 +Spring,RED,,TX,5/28/2000 21:15 +St. Petersburg,ORANGE,FIREBALL,FL,5/28/2000 22:00 +Sacramento,,TRIANGLE,CA,5/28/2000 22:32 +Sioux Falls,,FIREBALL,SD,5/29/2000 1:00 +Tallahassee,,DISK,FL,5/29/2000 4:00 +Clovis,,LIGHT,CA,5/29/2000 21:00 +Prescott Valley,,FORMATION,AZ,5/30/2000 20:05 +Fort Morgan,GREEN,OVAL,AL,5/30/2000 21:00 +Schuyler County,ORANGE GREEN,LIGHT,IL,5/30/2000 22:07 +Boston,,FIREBALL,MA,5/31/2000 23:50 +Joshua Tree National Park,,OVAL,CA,6/1/2000 0:00 +Auburn,,OVAL,WA,6/1/2000 1:00 +San Francisco,,FORMATION,CA,6/1/2000 2:00 +Powhatan,,LIGHT,VA,6/1/2000 12:00 +Livonia,,DISK,MI,6/1/2000 13:00 +Albuquerque,,LIGHT,NM,6/1/2000 15:00 +Macon,,OTHER,GA,6/1/2000 15:00 +Chattanooga,,DISK,TN,6/1/2000 17:00 +Key West,,FORMATION,FL,6/1/2000 20:00 +Santa Fe,,TRIANGLE,NM,6/1/2000 21:30 +San Francisco,,FIREBALL,CA,6/1/2000 22:00 +Mineola,,TEARDROP,NY,6/1/2000 22:20 +Boca Raton,,TRIANGLE,FL,6/1/2000 22:30 +Buckley,,DISK,WA,6/1/2000 23:00 +Peru,,EGG,IN,6/2/2000 0:00 +Gilbert,,OVAL,AZ,6/2/2000 19:50 +Escondido,RED,LIGHT,CA,6/2/2000 22:00 +Gladstone,,LIGHT,MI,6/3/2000 0:17 +Placitas,,CIRCLE,NM,6/3/2000 14:00 +Albuquerque,,SPHERE,NM,6/3/2000 14:30 +Greer,RED,TRIANGLE,AZ,6/3/2000 19:30 +Overgaard,RED BLUE,TRIANGLE,AZ,6/3/2000 19:30 +Bluewater Village,,DISK,NM,6/3/2000 20:00 +Bluewater Village,,OVAL,NM,6/3/2000 20:30 +Kaneohe,,OTHER,HI,6/3/2000 20:30 +Manzanita,ORANGE,FIREBALL,OR,6/3/2000 21:45 +Manzanita,ORANGE,LIGHT,OR,6/3/2000 22:00 +Cranberry Township,,CIRCLE,PA,6/3/2000 22:30 +Ithaca,,FLASH,MI,6/3/2000 22:35 +New York City,,CHEVRON,NY,6/3/2000 23:30 +Milwaukee,,DISK,WI,6/4/2000 2:00 +Milwaukee,,DISK,WI,6/4/2000 21:30 +Augusta,,LIGHT,KS,6/5/2000 3:45 +Ironton,,TRIANGLE,OH,6/5/2000 21:00 +Conway,,TRIANGLE,SC,6/5/2000 22:00 +Sargent,,,GA,6/5/2000 23:00 +San Francisco,,,CA,6/5/2000 23:30 +Mt. Vernon,,RECTANGLE,VA,6/6/2000 1:45 +El Cajon,,SPHERE,CA,6/6/2000 3:20 +Tulsa,,CIRCLE,OK,6/6/2000 8:15 +St. Louis,,OVAL,MO,6/6/2000 17:22 +Marlette,,OVAL,MI,6/7/2000 13:00 +Modesto,,SPHERE,CA,6/7/2000 14:00 +Deltona,,,FL,6/7/2000 19:00 +Ely,,LIGHT,MN,6/7/2000 21:30 +Deltona,,,FL,6/7/2000 22:00 +Tempe,,,AZ,6/7/2000 22:00 +Elkhart,,CIRCLE,KS,6/7/2000 23:48 +Ely,,DIAMOND,MN,6/8/2000 1:00 +Mulino,,CIGAR,OR,6/8/2000 11:00 +Lynnville,,DISK,IA,6/9/2000 13:00 +Richland,,TEARDROP,WA,6/9/2000 17:00 +Gilbert,RED,LIGHT,AZ,6/9/2000 20:15 +West Valley,,LIGHT,NY,6/9/2000 20:30 +Kensington,,CYLINDER,MD,6/9/2000 22:15 +Germantown,RED,TRIANGLE,MD,6/9/2000 22:35 +Circle Pines,,LIGHT,MN,6/9/2000 23:00 +Clinton Township,,LIGHT,MI,6/9/2000 23:35 +Carrolton,,LIGHT,GA,6/10/2000 0:00 +Polk City,,CIRCLE,IA,6/10/2000 2:30 +Henry Cowe Park,,CIRCLE,CA,6/10/2000 3:00 +Jacksonville,RED YELLOW GREEN,LIGHT,FL,6/10/2000 4:00 +Avoco,,TRIANGLE,PA,6/10/2000 12:00 +Stevens Point,,CIRCLE,WI,6/10/2000 13:00 +Slatington,,OVAL,PA,6/10/2000 18:00 +Hillsboro,RED,CIRCLE,MO,6/10/2000 19:00 +Gilbert,RED,,AZ,6/10/2000 19:30 +Lakewood,,LIGHT,CA,6/10/2000 21:23 +Orofino,,TRIANGLE,ID,6/10/2000 21:30 +Levittown,GREEN,CYLINDER,NY,6/10/2000 21:35 +Parlin,,,NJ,6/10/2000 21:38 +Moundsville,RED YELLOW,FLASH,WV,6/10/2000 22:00 +Santa Monica,,LIGHT,CA,6/10/2000 23:00 +Framingham,ORANGE,SPHERE,MA,6/11/2000 2:16 +Freer,,DISK,TX,6/11/2000 2:30 +Freer,RED,CIRCLE,TX,6/11/2000 3:00 +Lunenburg,,SPHERE,MA,6/11/2000 3:05 +Starr,,OTHER,SC,6/11/2000 16:30 +Tucson,,OTHER,AZ,6/11/2000 17:30 +Houston,,TEARDROP,TX,6/12/2000 11:45 +Lynnwood,,TRIANGLE,WA,6/12/2000 17:20 +Houston,,DISK,TX,6/12/2000 19:00 +Hurst,,FIREBALL,TX,6/12/2000 23:26 +Salina,,CONE,KS,6/13/2000 16:50 +Los Angeles,,LIGHT,CA,6/13/2000 20:00 +Casper,,OVAL,WY,6/13/2000 22:00 +Creaston,,LIGHT,CA,6/13/2000 22:00 +Prineville,,RECTANGLE,OR,6/14/2000 2:30 +Greenfield,,OTHER,IL,6/14/2000 19:30 +Green Ridge,,LIGHT,MO,6/14/2000 21:00 +Greenfield,,CHEVRON,IL,6/14/2000 21:30 +Ventura,,CIRCLE,CA,6/14/2000 22:00 +Ravenna,,LIGHT,MI,6/14/2000 22:40 +Blue Springs,,FIREBALL,MO,6/14/2000 23:45 +Eugene,,TRIANGLE,OR,6/15/2000 2:00 +Oakdale,,CIRCLE,MN,6/15/2000 2:00 +Los Angeles,,,CA,6/15/2000 3:00 +Dayton,,OTHER,OH,6/15/2000 5:00 +Lincoln Park,,OTHER,MI,6/15/2000 12:28 +,,SPHERE,NY,6/15/2000 15:00 +Sault Ste. Marie,,SPHERE,MI,6/15/2000 17:30 +Caarthage,,TRIANGLE,MS,6/15/2000 17:45 +Chanhassen,ORANGE,DISK,MN,6/15/2000 18:30 +Findlay,,OVAL,OH,6/15/2000 21:00 +Stratford,,TRIANGLE,TX,6/15/2000 21:00 +Cape May Court House,,LIGHT,NJ,6/15/2000 22:00 +Solon,,CIRCLE,OH,6/15/2000 22:00 +Millville,,TRIANGLE,NJ,6/15/2000 23:00 +Sparks,,LIGHT,NV,6/15/2000 23:00 +Seattle,ORANGE BLUE,OTHER,WA,6/15/2000 23:11 +Ringwood,,LIGHT,IL,6/15/2000 23:45 +Redlands,,LIGHT,CA,6/16/2000 0:05 +Portland,,,OR,6/16/2000 2:00 +Cannonsburgh,,FIREBALL,PA,6/16/2000 13:23 +Saratoga,BLUE,OVAL,NY,6/16/2000 14:00 +Cahokia,GREEN BLUE,TRIANGLE,IL,6/16/2000 21:45 +St. Louis,,OTHER,MO,6/16/2000 23:30 +Atlantic Ocean,,,NC,6/17/2000 0:35 +Sheboygan,,,WI,6/17/2000 2:50 +Tualatin,,DISK,OR,6/17/2000 16:00 +Sierra Madre,,SPHERE,CA,6/17/2000 17:30 +Farmington Hills,,VARIOUS,MI,6/17/2000 21:40 +Robstown,,SPHERE,TX,6/17/2000 22:00 +Spanish Fork,,SPHERE,UT,6/17/2000 22:52 +Sunnyside,,LIGHT,NY,6/18/2000 4:30 +West Branch,,OVAL,IA,6/18/2000 10:45 +Monroe,,RECTANGLE,NY,6/18/2000 23:06 +Clearlake,,CIRCLE,CA,6/19/2000 1:30 +Rawlins,,DISK,WY,6/19/2000 13:00 +New York City,RED,TRIANGLE,NY,6/19/2000 18:30 +Santa Monica,,TRIANGLE,CA,6/19/2000 21:40 +Harrison,,LIGHT,OH,6/19/2000 21:52 +Fort Wayne,ORANGE,OTHER,IN,6/19/2000 23:10 +Yosemite,,TRIANGLE,CA,6/19/2000 23:50 +Clifton,,OTHER,NJ,6/20/2000 0:00 +Willard Bay,ORANGE,LIGHT,UT,6/20/2000 0:00 +Yakima,YELLOW,LIGHT,WA,6/20/2000 1:25 +Salida,,TRIANGLE,CA,6/20/2000 20:00 +Stetson,YELLOW,LIGHT,ME,6/20/2000 20:00 +Lebanon,RED BLUE,FIREBALL,VA,6/20/2000 21:43 +Church Hill,,FLASH,TN,6/20/2000 21:50 +Colorado Springs,,,CO,6/20/2000 22:00 +Revere,,DISK,MA,6/20/2000 22:00 +Tifton,,,GA,6/20/2000 22:00 +Raymondville,,CIRCLE,MO,6/20/2000 22:15 +Salem,ORANGE,VARIOUS,OR,6/20/2000 22:25 +Highway 5?,,RECTANGLE,CA,6/20/2000 23:00 +Ware Shoals,,,SC,6/20/2000 23:00 +Portland,,CIGAR,OR,6/21/2000 15:30 +Glendale,RED,VARIOUS,CO,6/21/2000 16:50 +St. Peter,YELLOW GREEN,CIRCLE,MN,6/21/2000 23:15 +Sophia,,,WV,6/22/2000 9:30 +Tupelo,,DISK,MS,6/22/2000 17:30 +Pine Haven,,EGG,WY,6/22/2000 21:00 +Providence,,EGG,RI,6/22/2000 21:30 +Green Bay,,LIGHT,WI,6/22/2000 22:35 +Georgetown,,LIGHT,DE,6/22/2000 23:00 +Huntington Beach,,OTHER,CA,6/23/2000 0:00 +Blackfoot,RED,LIGHT,ID,6/23/2000 0:15 +Pinedale,,DIAMOND,WY,6/23/2000 8:00 +San Francisco,,CIRCLE,CA,6/23/2000 15:30 +Tacoma,,OTHER,WA,6/23/2000 21:00 +Tacoma,,LIGHT,WA,6/23/2000 21:30 +Scottsdale,,LIGHT,AZ,6/23/2000 21:45 +Morrilton,,RECTANGLE,AR,6/23/2000 22:00 +Magna,,CIRCLE,UT,6/23/2000 22:30 +Canyon,BLUE,,TX,6/23/2000 22:40 +Magna,,CIRCLE,UT,6/23/2000 22:45 +Federal Way,,SPHERE,WA,6/24/2000 12:50 +North Fork,,LIGHT,CA,6/24/2000 21:24 +Olathe,,LIGHT,KS,6/24/2000 21:44 +Hurricane,,FORMATION,WV,6/24/2000 22:00 +Wintersville,,CYLINDER,OH,6/24/2000 22:15 +Hazlet,,CIRCLE,NJ,6/24/2000 22:35 +Redmond,,CHEVRON,WA,6/24/2000 22:45 +Shelby Township,,TRIANGLE,MI,6/24/2000 23:30 +Dallas,,DIAMOND,TX,6/25/2000 0:24 +Cranston,,,RI,6/25/2000 2:25 +Aloha,,CIGAR,OR,6/25/2000 19:15 +New York City,,OVAL,NY,6/25/2000 19:30 +Little Chute,,FIREBALL,WI,6/25/2000 21:00 +Orange,ORANGE,LIGHT,CA,6/25/2000 21:23 +Salt Lake City,,LIGHT,UT,6/25/2000 22:40 +Bozeman,,LIGHT,MT,6/26/2000 0:15 +Los Angeles,,,CA,6/26/2000 0:22 +Sandy,,,OR,6/26/2000 18:35 +San Diego,BLUE,LIGHT,CA,6/26/2000 21:30 +St. George,,LIGHT,UT,6/26/2000 22:00 +Otis,,,OR,6/26/2000 22:20 +Sedro Woolley,,LIGHT,WA,6/26/2000 22:25 +Blackstone,,LIGHT,VA,6/26/2000 22:35 +Las Vegas,,LIGHT,NV,6/26/2000 22:40 +Gresham,,OTHER,OR,6/26/2000 23:04 +Chicago,,OVAL,IL,6/26/2000 23:20 +West Chazy,ORANGE,,NY,6/27/2000 0:03 +Interstate 5,RED,OTHER,CA,6/27/2000 21:00 +Fallbrook,,LIGHT,CA,6/27/2000 21:30 +Apache Junction,,LIGHT,AZ,6/27/2000 21:40 +Bakersfield,,FIREBALL,CA,6/27/2000 21:50 +Moab,,CIRCLE,UT,6/27/2000 22:00 +Boston,,LIGHT,MA,6/27/2000 22:40 +Sewell,,TRIANGLE,NJ,6/27/2000 22:50 +Newmarket,,OVAL,NH,6/28/2000 1:00 +Albuquerque,,LIGHT,NM,6/28/2000 2:00 +St. Louis,,TRIANGLE,MO,6/28/2000 16:11 +Monticello,,LIGHT,FL,6/28/2000 22:03 +Chico,,CIRCLE,CA,6/29/2000 0:10 +Paso Robles,,LIGHT,CA,6/29/2000 1:00 +Minneapolis,,SPHERE,MN,6/29/2000 21:00 +Jefferson City,,TRIANGLE,MO,6/29/2000 21:30 +DeSoto,,OTHER,IL,6/29/2000 22:30 +Penn Valley,YELLOW,CIRCLE,CA,6/29/2000 23:50 +Ewa Beach,,TRIANGLE,HI,6/30/2000 0:00 +Indianapolis,,,IN,6/30/2000 0:00 +Myers Spring Canyon,,CIRCLE,TX,6/30/2000 0:00 +Las Vegas,,TRIANGLE,NV,6/30/2000 2:30 +Orlando,,RECTANGLE,FL,6/30/2000 13:00 +Morrison,,RECTANGLE,CO,6/30/2000 14:00 +Springboro,,CIRCLE,PA,6/30/2000 15:00 +Wantage,YELLOW,CIRCLE,NJ,6/30/2000 17:00 +West Gardiner,,CIGAR,ME,6/30/2000 19:00 +Mountain Home AFB,,TRIANGLE,ID,6/30/2000 19:30 +Bennington,,OTHER,VT,6/30/2000 20:00 +New Port Richey,,CIRCLE,FL,6/30/2000 20:00 +Austin,,CYLINDER,TX,6/30/2000 20:30 +Lincoln,,FORMATION,NE,6/30/2000 21:30 +Sycamore,,TRIANGLE,OH,6/30/2000 21:35 +Ogden,ORANGE,SPHERE,UT,6/30/2000 21:40 +Bedford,,LIGHT,NY,6/30/2000 22:00 +Buffalo,,TRIANGLE,NY,6/30/2000 22:00 +Hollister,,CIRCLE,CA,6/30/2000 22:00 +Paso Robles,,FORMATION,CA,6/30/2000 22:30 +St. Paul,,CIRCLE,MN,6/30/2000 22:40 +George,GREEN,LIGHT,WA,7/1/2000 0:10 +Santa Rosa,,SPHERE,CA,7/1/2000 1:00 +Bismarck,,LIGHT,ND,7/1/2000 2:30 +Crystal Beach,,TRIANGLE,TX,7/1/2000 3:00 +Midland,,LIGHT,MI,7/1/2000 3:11 +Baker,,CIGAR,CA,7/1/2000 3:30 +Baker,,CIGAR,CA,7/1/2000 3:30 +Ojai,,TRIANGLE,CA,7/1/2000 3:50 +"Tylertown, MS",,LIGHT,MS,7/1/2000 4:00 +San Pedro,,OVAL,CA,7/1/2000 11:45 +Ponca,,LIGHT,OK,7/1/2000 14:00 +Defiance,,CROSS,OH,7/1/2000 15:00 +Ogden,,OVAL,UT,7/1/2000 16:00 +Waco,,CIRCLE,TX,7/1/2000 17:00 +Bellingham,,TRIANGLE,WA,7/1/2000 19:00 +Stockton,,DISK,CA,7/1/2000 19:00 +Phoenix,,FORMATION,AZ,7/1/2000 21:00 +Sewell,,RECTANGLE,NJ,7/1/2000 21:00 +Montgomery Pass,GREEN,OVAL,NV,7/1/2000 22:00 +Palmyra,,,NY,7/1/2000 22:00 +New York City,,TRIANGLE,NY,7/1/2000 22:15 +San Jose,,FIREBALL,CA,7/1/2000 22:15 +Salinas,,FIREBALL,CA,7/1/2000 22:30 +Sierra Nevada Mtns,,,CA,7/1/2000 22:30 +Lancaster,,DISK,CA,7/1/2000 22:50 +Orcas Island,,FORMATION,WA,7/2/2000 0:30 +Land Between The Lakes,,TRIANGLE,KY,7/2/2000 1:20 +Largo,,CIGAR,FL,7/2/2000 13:30 +Mount Pleasant,RED,CIRCLE,SC,7/2/2000 21:15 +East Windsor,,OVAL,NJ,7/2/2000 21:45 +West Fork,,LIGHT,AR,7/2/2000 22:00 +West Windsor,,DISK,NJ,7/2/2000 22:10 +Ice House Campground,,FORMATION,CA,7/2/2000 22:30 +Kewaunee,ORANGE,DISK,WI,7/3/2000 1:00 +Dedham,,,MA,7/3/2000 2:45 +Las Vegas,,OVAL,NV,7/3/2000 15:30 +Cottage Grove,,RECTANGLE,WA,7/3/2000 17:00 +Meridian,,OTHER,ID,7/3/2000 17:00 +Boston,,LIGHT,NY,7/3/2000 19:00 +Anderson,,LIGHT,CA,7/3/2000 21:45 +Colebrook,,VARIOUS,NH,7/3/2000 22:30 +Colorado Springs,,LIGHT,CO,7/4/2000 2:30 +Columbus,,LIGHT,GA,7/4/2000 3:00 +Loves Park,,CIGAR,IL,7/4/2000 17:30 +Potsdam,,TRIANGLE,NY,7/4/2000 18:00 +St. Louis,,FIREBALL,MO,7/4/2000 20:40 +Pacific City,,LIGHT,OR,7/4/2000 21:00 +Urbandale,,LIGHT,IA,7/4/2000 21:00 +Windsor Heights,RED,LIGHT,IA,7/4/2000 21:00 +Des Moines,,LIGHT,IA,7/4/2000 21:30 +Conyers,RED,LIGHT,GA,7/4/2000 21:45 +Tacoma,RED,LIGHT,WA,7/4/2000 21:50 +Des Moines,,LIGHT,IA,7/4/2000 22:00 +Tacoma,RED,CIRCLE,WA,7/4/2000 22:00 +West Des Moines,,CIRCLE,IA,7/4/2000 22:00 +Puyallup,,CIRCLE,WA,7/4/2000 22:15 +Riverview,ORANGE,CIRCLE,FL,7/4/2000 22:15 +Tacoma,RED,LIGHT,WA,7/4/2000 22:25 +Houston,RED,FIREBALL,TX,7/4/2000 22:30 +Tacoma,RED,LIGHT,WA,7/4/2000 22:30 +Tacoma,RED ORANGE,OTHER,WA,7/4/2000 22:30 +Oakland,,TRIANGLE,MD,7/4/2000 23:00 +Toledo,,TRIANGLE,OH,7/4/2000 23:00 +Interlochen,,LIGHT,MI,7/4/2000 23:15 +Graham,RED BLUE,CIGAR,WA,7/4/2000 23:30 +Roslyn,,LIGHT,WA,7/4/2000 23:30 +Seattle,GREEN,LIGHT,WA,7/5/2000 5:47 +Wildwood Coast,,CYLINDER,NJ,7/5/2000 16:00 +Schnecksville,,OVAL,PA,7/5/2000 19:30 +San Diego,,CIGAR,CA,7/5/2000 20:20 +Kingman,,OTHER,AZ,7/5/2000 21:00 +Corvallis,,OTHER,OR,7/5/2000 22:15 +Lincon City,,CROSS,OR,7/6/2000 0:30 +Easton,,SPHERE,PA,7/6/2000 1:00 +Rockford,ORANGE,VARIOUS,IL,7/6/2000 20:15 +Marinette,GREEN,CYLINDER,WI,7/6/2000 20:30 +Thornton,,CYLINDER,CO,7/6/2000 20:30 +Thornton,YELLOW,CYLINDER,CO,7/6/2000 20:30 +South Ontario,,CYLINDER,CA,7/6/2000 20:45 +Columbia,,TRIANGLE,MO,7/6/2000 21:30 +Barstow,,CIGAR,CA,7/6/2000 22:00 +Salt Lake City,,OTHER,UT,7/6/2000 23:14 +Babylon,,FORMATION,NY,7/6/2000 23:20 +Highland Park,,FIREBALL,IL,7/7/2000 1:00 +Frederick,,SPHERE,MD,7/7/2000 1:45 +Cleveland,ORANGE,,OH,7/7/2000 4:15 +Cadillac,,OVAL,MI,7/7/2000 12:05 +Santa Clara,,LIGHT,CA,7/7/2000 20:30 +Citrus Heights,BLUE,OTHER,CA,7/7/2000 21:00 +Los Angeles,,LIGHT,CA,7/7/2000 21:00 +San Diego,GREEN,LIGHT,CA,7/7/2000 21:00 +Woodland,,CONE,CA,7/7/2000 21:10 +Los Angeles,BLUE,LIGHT,CA,7/7/2000 21:15 +Sunnyvale,BLUE,CIRCLE,CA,7/7/2000 21:20 +Sunnyvale,BLUE,CIRCLE,CA,7/7/2000 21:20 +Visalia,BLUE,LIGHT,CA,7/7/2000 21:20 +Red Rock Canyon,,OVAL,NV,7/7/2000 21:21 +Red Bluff,,FIREBALL,CA,7/7/2000 21:22 +West Covina,BLUE,LIGHT,CA,7/7/2000 21:25 +Covina,BLUE,OVAL,CA,7/7/2000 21:30 +Kingman,,LIGHT,AZ,7/7/2000 21:30 +Las Vegas,GREEN,LIGHT,NV,7/7/2000 21:30 +Los Angeles,,SPHERE,CA,7/7/2000 21:30 +Pacific Palisades,GREEN BLUE,OTHER,CA,7/7/2000 21:30 +Sacramento,,FIREBALL,CA,7/7/2000 21:30 +Santa Rosa,BLUE,LIGHT,CA,7/7/2000 21:30 +Tacna,,LIGHT,AZ,7/7/2000 21:30 +Thermal,BLUE,LIGHT,CA,7/7/2000 21:30 +Tonapah,,,NV,7/7/2000 21:30 +Riveside,,LIGHT,CA,7/7/2000 21:35 +Sacramento,,RECTANGLE,CA,7/7/2000 21:35 +Kingston Springs,RED,FIREBALL,TN,7/7/2000 22:00 +Winnemucca,GREEN,LIGHT,NV,7/7/2000 22:10 +St. George,,LIGHT,UT,7/7/2000 22:30 +North San Francisco,,DISK,CA,7/8/2000 15:22 +Ceres,,,CA,7/8/2000 20:00 +Poway,BLUE,,CA,7/8/2000 20:30 +Stanwood - I-5 corridor,RED,FIREBALL,WA,7/8/2000 21:50 +Santa Rosa,GREEN,LIGHT,CA,7/8/2000 22:00 +Salem,RED,,OR,7/8/2000 22:50 +Steubenville,,TRIANGLE,OH,7/8/2000 23:00 +Paint Lick,,,KY,7/8/2000 23:25 +Klamath National Wildlife Refuge,BLUE,CYLINDER,OR,7/9/2000 7:45 +Torrington,,LIGHT,CT,7/9/2000 8:30 +Franklin Square,,,NY,7/9/2000 9:15 +Palmer,,,MA,7/9/2000 12:00 +Salt Lake City,,OVAL,UT,7/9/2000 18:00 +Satellite Beach,,OTHER,FL,7/9/2000 20:30 +Milwaukie,,LIGHT,OR,7/10/2000 1:40 +Evanston,,OTHER,IL,7/10/2000 3:00 +Commerce City,,LIGHT,CO,7/10/2000 12:15 +Virginia Beach,,,VA,7/10/2000 13:00 +Big Pine,,OTHER,CA,7/10/2000 17:00 +Tomah,,CIGAR,WI,7/10/2000 19:00 +Downers Grove,,SPHERE,IL,7/10/2000 20:00 +Redland,,CIRCLE,OR,7/10/2000 20:30 +St. George Island,ORANGE,TRIANGLE,FL,7/10/2000 23:15 +Flagstaff,,OTHER,AZ,7/10/2000 23:30 +Salem,,,OR,7/11/2000 0:30 +Shohola Falls,,LIGHT,PA,7/11/2000 2:30 +Bridgewater,,VARIOUS,CT,7/11/2000 3:30 +Torrington,,SPHERE,CT,7/11/2000 9:00 +Nashville,,SPHERE,TN,7/12/2000 0:00 +Franklin,,DISK,PA,7/12/2000 1:56 +Rim Rock,,CIRCLE,AZ,7/12/2000 9:57 +Portland,,CYLINDER,OR,7/12/2000 18:30 +Spring Glen,,DISK,NY,7/12/2000 19:50 +Gilbert,RED,,AZ,7/12/2000 20:00 +Gilbert,RED,LIGHT,AZ,7/12/2000 20:00 +Scottsdale,,FIREBALL,AZ,7/12/2000 20:00 +Gilbert,,CIRCLE,AZ,7/12/2000 20:10 +Gilbert,,DIAMOND,AZ,7/12/2000 20:10 +Gilbert,RED,DIAMOND,AZ,7/12/2000 20:10 +Gilbert,,FIREBALL,AZ,7/12/2000 20:10 +Chandler,RED,CIRCLE,AZ,7/12/2000 20:19 +Glendale,RED,LIGHT,AZ,7/12/2000 20:30 +Gilbert,,LIGHT,AZ,7/12/2000 20:35 +Falfurias,RED,LIGHT,TX,7/12/2000 22:00 +Casa,GREEN,CIGAR,AR,7/12/2000 23:00 +Route 280 Exit 1,,EGG,NJ,7/12/2000 23:00 +Sherman,,LIGHT,NY,7/12/2000 23:30 +Gilbert,RED,CIRCLE,AZ,7/13/2000 19:25 +Gilbert,,DIAMOND,AZ,7/13/2000 19:54 +Gilbert,,CIRCLE,AZ,7/13/2000 20:00 +Gilbert,RED,LIGHT,AZ,7/13/2000 20:00 +Glendale,RED,FIREBALL,AZ,7/13/2000 20:00 +Gilbert,RED,CIRCLE,AZ,7/13/2000 20:10 +Addison,,CIRCLE,NY,7/13/2000 21:30 +Monterey Park,,CIGAR,CA,7/13/2000 22:00 +Onalaska,,FIREBALL,WI,7/13/2000 22:23 +Norristown,,LIGHT,PA,7/13/2000 23:15 +Summit,,DISK,NJ,7/13/2000 23:40 +Portland,BLUE,FLASH,OR,7/14/2000 2:00 +Pasquag,,CIRCLE,RI,7/14/2000 2:30 +Fresno,,,CA,7/14/2000 3:00 +Greensburg,,OTHER,PA,7/14/2000 3:00 +Troy,,DISK,NY,7/14/2000 3:00 +Oklahoma City,,CIGAR,OK,7/14/2000 17:40 +Memphis,,TRIANGLE,TN,7/14/2000 18:00 +Ragly,,,LA,7/14/2000 21:00 +Quincy,,EGG,CA,7/14/2000 22:20 +Tooele,,,UT,7/14/2000 22:30 +Little Rock,,LIGHT,AR,7/14/2000 23:00 +Olympia,,LIGHT,WA,7/14/2000 23:00 +Sikeston,,CHEVRON,MO,7/14/2000 23:30 +Thibodaux,ORANGE,FIREBALL,LA,7/14/2000 23:30 +Palos Hills,,,IL,7/15/2000 0:30 +Miami,,CIGAR,FL,7/15/2000 1:00 +Cheshire,ORANGE,OVAL,OH,7/15/2000 1:15 +Vancouver,,CIRCLE,WA,7/15/2000 7:00 +Billerica,,DISK,MA,7/15/2000 9:00 +Aurora,,SPHERE,OR,7/15/2000 16:00 +Orange,,CIRCLE,CA,7/15/2000 17:15 +Los Angeles,,TRIANGLE,CA,7/15/2000 18:00 +Enochville,,CYLINDER,NC,7/15/2000 18:50 +Gilbert,RED,LIGHT,AZ,7/15/2000 19:30 +Geneva,,SPHERE,IL,7/15/2000 20:00 +Naperville,,DISK,IL,7/15/2000 20:25 +Madison,,CIGAR,OH,7/15/2000 20:50 +New City,,TRIANGLE,NY,7/15/2000 21:30 +Wichita,,OTHER,KS,7/15/2000 21:30 +Aloha,,LIGHT,OR,7/15/2000 22:00 +Clio,,CIRCLE,MI,7/15/2000 22:00 +Houston,,OTHER,TX,7/15/2000 22:00 +Loves Park,,TRIANGLE,IL,7/15/2000 22:00 +Apopka,,SPHERE,FL,7/15/2000 22:30 +Manistee Forest,,,MI,7/15/2000 22:30 +Luna Pier,,OVAL,MI,7/15/2000 23:00 +Bakersfield,,TRIANGLE,CA,7/15/2000 23:50 +Portland,ORANGE GREEN,LIGHT,OR,7/16/2000 0:34 +Portland,,LIGHT,OR,7/16/2000 1:00 +New Braunfels,,CIRCLE,TX,7/16/2000 2:30 +Mananita,GREEN,SPHERE,CA,7/16/2000 4:30 +Issaquah,,VARIOUS,WA,7/16/2000 9:00 +Auburn,,DISK,WA,7/16/2000 18:05 +Wenatchee,,,WA,7/16/2000 20:00 +Ridgecrest,,LIGHT,CA,7/16/2000 21:58 +Wenatchee,,,WA,7/16/2000 22:00 +Rockford,,OVAL,IN,7/16/2000 22:50 +Silverdale,,FIREBALL,WA,7/17/2000 20:50 +Lake City,,LIGHT,CA,7/17/2000 22:30 +Cedar Rapids,,TRIANGLE,IA,7/17/2000 22:40 +Woodinville,RED,DISK,WA,7/17/2000 23:52 +Elk City,,CIGAR,OK,7/18/2000 9:20 +Elk City,,DISK,OK,7/18/2000 9:20 +Huntsville,,CIRCLE,AL,7/18/2000 11:35 +Marysville,,DISK,CA,7/18/2000 18:30 +Twin Falls,,SPHERE,ID,7/18/2000 23:10 +El Paso,,SPHERE,TX,7/19/2000 13:00 +Cleveland,,CIRCLE,OH,7/19/2000 17:00 +Venice,,CIGAR,CA,7/19/2000 19:00 +Dana,BLUE,CIRCLE,IL,7/19/2000 21:38 +Fort Hood,,LIGHT,TX,7/19/2000 22:35 +Boise,,CIRCLE,ID,7/19/2000 23:30 +Franklin,,DISK,PA,7/20/2000 1:26 +Marshfield,,LIGHT,VT,7/20/2000 1:30 +South Padre Island,,OVAL,TX,7/20/2000 21:00 +Deming,,,NM,7/20/2000 21:30 +Wallingford,,LIGHT,CT,7/20/2000 21:30 +Darien,,LIGHT,IL,7/20/2000 22:00 +Highlands Ranch,RED,LIGHT,CO,7/20/2000 22:00 +Watertown,YELLOW,TRIANGLE,CT,7/20/2000 22:55 +Trumansburg,,LIGHT,NY,7/20/2000 23:00 +Ocean Parkway,RED,CHEVRON,NY,7/20/2000 23:30 +Nothridge,,OTHER,CA,7/21/2000 12:10 +Chula Vista,,OTHER,CA,7/21/2000 18:00 +na,,TRIANGLE,NC,7/21/2000 18:15 +North Judson,,LIGHT,IN,7/21/2000 21:57 +Corona,,LIGHT,CA,7/21/2000 22:00 +Riggins,,FIREBALL,ID,7/21/2000 22:10 +Ogallala,,OTHER,NE,7/22/2000 1:30 +Petrified Forest National Park,,OTHER,AZ,7/22/2000 12:00 +Pittsburgh,,LIGHT,PA,7/22/2000 18:30 +Westminster,,OTHER,CO,7/22/2000 19:15 +Lavon,,FIREBALL,TX,7/22/2000 21:50 +La Crosse,,LIGHT,WI,7/22/2000 22:45 +Valley Stream,,EGG,NY,7/23/2000 15:00 +Everett,,,WA,7/23/2000 16:05 +New York City,,OTHER,NY,7/23/2000 18:00 +Vallejo,,CIGAR,CA,7/23/2000 18:02 +West Seneca,,LIGHT,NY,7/23/2000 18:30 +LeGrange,,,WI,7/23/2000 21:50 +Columbus,,LIGHT,OH,7/23/2000 23:30 +New York City,,,NY,7/24/2000 0:00 +Milwaukee,RED,FORMATION,WI,7/24/2000 10:00 +Antioch,,DISK,CA,7/24/2000 11:50 +Overcup,,TRIANGLE,AR,7/24/2000 21:30 +Fire Island,ORANGE,CIRCLE,NY,7/24/2000 23:00 +Vancouver,,LIGHT,WA,7/24/2000 23:30 +Chandler,RED,LIGHT,AZ,7/25/2000 20:15 +Gilbert,RED,CIRCLE,AZ,7/25/2000 20:15 +Gilbert,,LIGHT,AZ,7/25/2000 20:15 +Gilbert,RED,LIGHT,AZ,7/25/2000 20:40 +Gilbert,RED,,AZ,7/25/2000 20:50 +Holbrook,,TRIANGLE,AZ,7/25/2000 21:00 +Glendale,RED,CIRCLE,CA,7/25/2000 21:20 +Las Vegas,,LIGHT,NV,7/25/2000 21:30 +San Diego,RED,FIREBALL,CA,7/25/2000 21:30 +San Diego,RED,,CA,7/25/2000 21:45 +Klamath Falls,,LIGHT,OR,7/25/2000 21:57 +San Diego,RED,LIGHT,CA,7/25/2000 22:00 +Sturgeon Bay,,LIGHT,WI,7/25/2000 22:23 +Sturgeon Bay,,OTHER,WI,7/25/2000 22:23 +Waterford,,SPHERE,MI,7/25/2000 23:37 +Smithville,,,TX,7/26/2000 23:10 +Fulshear,,FIREBALL,TX,7/26/2000 23:15 +Brenham,RED BLUE,LIGHT,TX,7/26/2000 23:20 +Iola,,,TX,7/26/2000 23:30 +Portland,RED ORANGE,LIGHT,OR,7/27/2000 3:35 +Gilbert,RED,CIRCLE,AZ,7/27/2000 20:12 +Chandler,,OVAL,AZ,7/27/2000 20:13 +Gilbert,RED,LIGHT,AZ,7/27/2000 20:15 +Bouse,,LIGHT,AZ,7/27/2000 21:37 +Bouse,,LIGHT,AZ,7/27/2000 21:58 +Bouse,,LIGHT,AZ,7/27/2000 21:58 +Redmond,,LIGHT,WA,7/27/2000 22:05 +Sandy,,TRIANGLE,UT,7/27/2000 22:48 +Tonopah,,EGG,AZ,7/28/2000 1:50 +Two Guns,BLUE,FIREBALL,AZ,7/28/2000 3:15 +Tyler,,SPHERE,TX,7/28/2000 5:30 +Woodinville,,CHEVRON,WA,7/28/2000 22:30 +Rochester,GREEN,OTHER,NY,7/29/2000 0:00 +Amite,,LIGHT,LA,7/29/2000 22:00 +Bonham,,LIGHT,TX,7/29/2000 23:00 +Nags Head,,FORMATION,NC,7/29/2000 23:15 +Bellingham,,VARIOUS,WA,7/29/2000 23:30 +Nags Head,,LIGHT,NC,7/30/2000 1:30 +Ithaca,,TEARDROP,NY,7/30/2000 20:20 +Bellingham,,LIGHT,WA,7/30/2000 21:25 +Columbus,,LIGHT,OH,7/30/2000 22:00 +Chandler,GREEN,CIGAR,AZ,7/30/2000 22:40 +Deer Lake,GREEN,,WA,7/30/2000 22:45 +Ashland,,DISK,OR,7/30/2000 23:38 +Fortuna,,FIREBALL,CA,7/31/2000 3:20 +Kirkland,,,WA,7/31/2000 9:20 +Portland,,FIREBALL,OR,7/31/2000 9:23 +Snohomish,,FIREBALL,WA,7/31/2000 9:35 +Kent,BLUE,OTHER,WA,7/31/2000 12:05 +Hopewell,,FIREBALL,VA,7/31/2000 21:00 +Hopewell,,FIREBALL,VA,7/31/2000 22:00 +Crescent Bar,,FIREBALL,WA,7/31/2000 23:00 +Flinn Springs,,TRIANGLE,CA,7/31/2000 23:06 +Hingham,,TRIANGLE,MA,8/1/2000 2:00 +River Falls,,LIGHT,WI,8/1/2000 2:00 +Seattle,,LIGHT,WA,8/1/2000 2:17 +Bellevue,,TRIANGLE,WA,8/1/2000 7:30 +Federal Way,,DISK,WA,8/1/2000 12:00 +Roslindale,,VARIOUS,MA,8/1/2000 12:00 +Turkey,,CIRCLE,TX,8/1/2000 13:00 +Los Angeles,,TRIANGLE,CA,8/1/2000 18:00 +Argos,,LIGHT,IN,8/1/2000 21:00 +Springfield,,OVAL,MO,8/1/2000 21:25 +Auburn,,LIGHT,WA,8/1/2000 22:00 +Erie,,RECTANGLE,PA,8/1/2000 22:55 +Campo,,VARIOUS,CA,8/1/2000 23:00 +Key Peninsula,RED,LIGHT,WA,8/2/2000 21:30 +Long Beach,,LIGHT,NC,8/2/2000 21:30 +Kirkland,,DISK,WA,8/3/2000 11:15 +Vancouver,,DISK,WA,8/3/2000 12:25 +Georgia,,DISK,GA,8/3/2000 14:30 +Libby,BLUE,DISK,MT,8/3/2000 19:20 +Chandler,RED,CIRCLE,AZ,8/3/2000 21:00 +Surprise,RED,LIGHT,AZ,8/3/2000 21:00 +Chatsworth,,,CA,8/3/2000 22:00 +Pierceton,,OTHER,IN,8/3/2000 22:00 +Valley City,GREEN,FLASH,OH,8/3/2000 22:27 +Bridgeport,GREEN,CIRCLE,MI,8/3/2000 22:30 +Las Vegas,,FIREBALL,NV,8/3/2000 22:30 +Marathon Key,,SPHERE,FL,8/3/2000 23:00 +Red Bluff,,CYLINDER,CA,8/3/2000 23:30 +Springbrook,RED,LIGHT,WI,8/4/2000 3:00 +Diamond Bar,ORANGE,CIRCLE,CA,8/4/2000 9:15 +Santa Monica,,TRIANGLE,CA,8/4/2000 9:30 +Renton,,FORMATION,WA,8/4/2000 11:45 +Gilbert,RED,,AZ,8/4/2000 19:52 +Chandler,RED,OVAL,AZ,8/4/2000 20:00 +Gilbert,RED,LIGHT,AZ,8/4/2000 20:00 +Gilbert,RED,LIGHT,AZ,8/4/2000 20:10 +Gilbert,RED,SPHERE,AZ,8/4/2000 20:20 +Indianapolis,,FLASH,IN,8/4/2000 20:30 +Tupper Lake,,CIGAR,NY,8/4/2000 22:00 +Shoreline,,LIGHT,WA,8/4/2000 22:04 +Tacoma,,LIGHT,WA,8/4/2000 23:00 +Trout Lake,,FORMATION,WA,8/4/2000 23:51 +Bothell,,OTHER,WA,8/5/2000 1:30 +White Sands,,CIRCLE,NM,8/5/2000 7:30 +Wayne,,SPHERE,NJ,8/5/2000 17:00 +Phoenix,,CIRCLE,AZ,8/5/2000 20:35 +On the Mass Pike: Rt. 90,,FORMATION,MA,8/5/2000 21:30 +Lake Havasu City,ORANGE,CONE,AZ,8/5/2000 21:43 +Bellingham,,TRIANGLE,WA,8/5/2000 22:00 +Fontana,,CIRCLE,CA,8/5/2000 22:00 +Concord,,LIGHT,NH,8/5/2000 22:05 +Maple Falls,,FORMATION,WA,8/5/2000 23:30 +LeSueur,,LIGHT,MN,8/5/2000 23:55 +Las Vegas,RED,FORMATION,NV,8/6/2000 0:30 +Portland,,OTHER,OR,8/6/2000 18:00 +Pottsburo,,LIGHT,TX,8/6/2000 20:00 +Portland,,LIGHT,OR,8/6/2000 21:13 +Fresno,,LIGHT,CA,8/6/2000 21:30 +Florence,,LIGHT,OR,8/6/2000 23:00 +Twin Falls,,FIREBALL,ID,8/6/2000 23:59 +Arizona,,,AZ,8/7/2000 4:20 +Molalla,,DISK,OR,8/7/2000 12:45 +American Falls,BLUE,DISK,IL,8/7/2000 17:00 +Katy,RED,OVAL,TX,8/7/2000 21:00 +Malone,,CIRCLE,NY,8/7/2000 22:10 +Placerville,,,CA,8/8/2000 3:40 +Hillsboro,,SPHERE,NJ,8/8/2000 17:30 +Hillsborough,,SPHERE,NJ,8/8/2000 17:30 +New York City,,VARIOUS,NY,8/8/2000 19:00 +La Pine,,DISK,OR,8/8/2000 19:35 +Garden City,,LIGHT,SC,8/8/2000 22:00 +Canton,,DISK,NY,8/8/2000 22:15 +Shorewood,,SPHERE,MN,8/8/2000 22:25 +Arnold,,LIGHT,MO,8/8/2000 23:41 +Uniondale,,FIREBALL,NY,8/9/2000 0:15 +Albuquerque,,CIRCLE,NM,8/9/2000 12:48 +Lawrence,,OTHER,KS,8/9/2000 13:30 +Culver City,,LIGHT,CA,8/9/2000 21:48 +Houston County,,SPHERE,TN,8/9/2000 21:50 +Starkville,GREEN,FIREBALL,MS,8/9/2000 22:00 +Victorville,,FIREBALL,CA,8/9/2000 23:30 +Lake Tawakoni,,,TX,8/9/2000 23:50 +Waltham,,OTHER,MA,8/10/2000 10:15 +Jacksonville,,LIGHT,FL,8/10/2000 21:30 +Long Lake,,FORMATION,NY,8/10/2000 21:45 +Elkton,,VARIOUS,OR,8/10/2000 22:00 +Indian Lake,,FORMATION,NY,8/10/2000 22:00 +Redfield,,FORMATION,NY,8/10/2000 22:05 +Lakewood,,LIGHT,CO,8/10/2000 22:18 +Maybrook,,OTHER,NY,8/10/2000 22:30 +West Danville,,LIGHT,VT,8/10/2000 22:30 +Ft. Worth,,CONE,TX,8/10/2000 23:00 +Flippin,,CIRCLE,AR,8/11/2000 1:30 +Wakefield,,OTHER,MA,8/11/2000 2:00 +Allegan,,FORMATION,MI,8/11/2000 4:30 +Torrance,,SPHERE,CA,8/11/2000 10:30 +Arlington,,TRIANGLE,WA,8/11/2000 12:00 +Lakeland,,CIGAR,FL,8/11/2000 18:45 +Franklin,,FORMATION,TN,8/11/2000 21:00 +Fresno,,RECTANGLE,CA,8/11/2000 21:30 +Portland,,,OR,8/11/2000 21:45 +Mammoth Cave National Park,,FORMATION,KY,8/11/2000 22:40 +Covina,RED,LIGHT,CA,8/11/2000 23:00 +Fort Collins,,OTHER,CO,8/11/2000 23:00 +Portland,,OTHER,OR,8/12/2000 1:30 +El Cajon,,CIRCLE,CA,8/12/2000 17:00 +Chandler,RED,DISK,AZ,8/12/2000 19:57 +Chandler,,LIGHT,AZ,8/12/2000 20:15 +Chandler,,OTHER,AZ,8/12/2000 20:15 +Chandler,,OTHER,AZ,8/12/2000 20:20 +Wallingford,,TRIANGLE,CT,8/12/2000 20:45 +Gilbert,,LIGHT,AZ,8/12/2000 21:10 +Ann Arbor,,OVAL,MI,8/12/2000 22:00 +Derby,,TRIANGLE,KS,8/12/2000 22:00 +Los Angeles,,LIGHT,CA,8/12/2000 23:48 +Bothell,,RECTANGLE,WA,8/13/2000 0:00 +Dana Point,,LIGHT,CA,8/13/2000 2:15 +Calistoga,,TRIANGLE,CA,8/13/2000 10:15 +Los Angeles,,DISK,CA,8/13/2000 11:30 +Big Horn Mtns,,FIREBALL,WY,8/13/2000 20:00 +Duncan,,,OK,8/13/2000 21:15 +Buffalo,,LIGHT,NY,8/13/2000 22:00 +Corte Madera,,FIREBALL,CA,8/13/2000 22:00 +Nevada City,RED GREEN BLUE,VARIOUS,CA,8/13/2000 23:30 +Nevada City,RED GREEN BLUE,SPHERE,CA,8/14/2000 1:30 +Denver,,TRIANGLE,CO,8/14/2000 4:45 +St. Petersburg,RED,SPHERE,FL,8/14/2000 18:45 +Luna,,RECTANGLE,LA,8/14/2000 19:30 +Smithville,,CIRCLE,TX,8/15/2000 0:40 +Liberty,,LIGHT,WA,8/15/2000 1:30 +Ringgold,,TRIANGLE,GA,8/15/2000 1:50 +West Tisbury,,CIRCLE,MA,8/15/2000 9:00 +Noxapater,,CONE,MS,8/15/2000 10:15 +Portland,,SPHERE,OR,8/15/2000 15:05 +Beaumont,,,TX,8/15/2000 17:00 +East Petersburg,BLUE,CIRCLE,PA,8/15/2000 18:30 +Chandler,RED,LIGHT,AZ,8/15/2000 20:00 +Gilbert,RED,,AZ,8/15/2000 20:00 +Gilbert,RED,LIGHT,AZ,8/15/2000 20:00 +Mesa,RED,CIRCLE,AZ,8/15/2000 20:05 +Phoenix,RED ORANGE,LIGHT,AZ,8/15/2000 20:05 +Gilbert,RED,LIGHT,AZ,8/15/2000 20:10 +Chandler,RED,LIGHT,AZ,8/15/2000 20:14 +Chandler,,CIRCLE,AZ,8/15/2000 20:15 +Gilbert,RED,LIGHT,AZ,8/15/2000 20:15 +Tyler,,TRIANGLE,TX,8/15/2000 20:15 +Chandler,,LIGHT,AZ,8/15/2000 20:20 +Burke,,CIRCLE,VA,8/15/2000 21:00 +Little Rock,,DISK,AR,8/15/2000 21:02 +Gilbert,,LIGHT,AZ,8/15/2000 21:20 +Grand Prairie,,FIREBALL,TX,8/15/2000 21:30 +Dallas,,CIGAR,TX,8/15/2000 21:44 +Newbury Park,,DISK,CA,8/15/2000 22:00 +Presque Isle,,LIGHT,ME,8/15/2000 22:30 +Mackinaw,,VARIOUS,MI,8/15/2000 23:00 +Wapakoneta,BLUE,CONE,OH,8/15/2000 23:00 +Fort Lauderdale,,LIGHT,FL,8/16/2000 0:00 +Portland,RED,OTHER,OR,8/16/2000 2:45 +Sebastopol,,SPHERE,CA,8/16/2000 11:30 +Salt Lake City,,FIREBALL,UT,8/16/2000 22:42 +Grantsville,,FIREBALL,UT,8/16/2000 22:50 +Yorba Linda,,OTHER,CA,8/16/2000 23:10 +Redding,RED,,CA,8/17/2000 3:00 +NJ Turnpike,,SPHERE,NJ,8/17/2000 10:24 +Millis,,CIRCLE,MA,8/17/2000 23:50 +Yreka,,DIAMOND,CA,8/18/2000 4:08 +Sun Prairie,,FORMATION,WI,8/18/2000 6:00 +Prairie Grove,,CIGAR,AR,8/18/2000 20:00 +Zortman,,OTHER,MT,8/18/2000 20:00 +Warrington,,CHEVRON,FL,8/18/2000 20:15 +Chickamauga,,LIGHT,GA,8/18/2000 20:30 +Dupo,,DIAMOND,IL,8/18/2000 21:00 +Gerlach,,,NV,8/18/2000 21:00 +West Covina,RED,DISK,CA,8/18/2000 22:08 +Gerlach,,OTHER,NV,8/18/2000 22:51 +Newcastle,GREEN,FIREBALL,CA,8/18/2000 23:23 +San Diego,,CIRCLE,CA,8/19/2000 1:27 +Roslyn,,,WA,8/19/2000 5:10 +Wildomar,,DISK,CA,8/19/2000 8:30 +Sedona,,SPHERE,AZ,8/19/2000 16:00 +West Seneca,,EGG,NY,8/19/2000 18:45 +Gay Head,RED,CIRCLE,MA,8/19/2000 22:00 +San Francisco,GREEN,TRIANGLE,CA,8/19/2000 22:15 +Lake Havasu,,OTHER,AZ,8/19/2000 23:00 +Santa Fe,,LIGHT,NM,8/20/2000 5:30 +Fairfield,RED,CYLINDER,TX,8/20/2000 6:00 +Bellevue,,TEARDROP,NE,8/20/2000 8:00 +Palm Beach Gardens,,VARIOUS,FL,8/20/2000 9:35 +Troy,,DIAMOND,MO,8/20/2000 11:00 +Oceanside,,DISK,CA,8/20/2000 15:00 +Palm Springs,,OVAL,CA,8/20/2000 15:00 +Dickson City,,CYLINDER,PA,8/20/2000 15:01 +Russellville,,LIGHT,AR,8/20/2000 19:00 +White Bear Lake,,,MN,8/20/2000 21:00 +Pottstown,,DISK,PA,8/20/2000 22:00 +Maybrook,,OTHER,NY,8/20/2000 22:30 +Middletown,,OTHER,NY,8/20/2000 22:30 +New York City,,LIGHT,NY,8/20/2000 23:00 +New York City,,LIGHT,NY,8/20/2000 23:00 +Placerville,ORANGE,,CA,8/20/2000 23:05 +Fayetteville,,,NC,8/21/2000 0:00 +Blaine,,VARIOUS,MN,8/21/2000 1:38 +Seattle,,LIGHT,WA,8/21/2000 5:15 +Olympia,,,WA,8/21/2000 13:15 +Mt. Juliet,,CYLINDER,TN,8/21/2000 19:35 +Eatontown,,,NJ,8/21/2000 20:30 +Camas,,SPHERE,WA,8/21/2000 21:20 +Camas,RED,TRIANGLE,WA,8/21/2000 21:45 +Whitefish,,FIREBALL,MT,8/21/2000 21:45 +Federal Way,,OTHER,WA,8/21/2000 22:50 +Marion,,,VA,8/22/2000 21:30 +Seattle,,,WA,8/22/2000 21:30 +Martinsville,,,VA,8/22/2000 21:45 +Wabasha,,FLASH,MN,8/22/2000 21:45 +Kalispell,,,MT,8/23/2000 0:00 +Vail,BLUE,FLASH,AZ,8/23/2000 2:17 +Duluth,,FORMATION,MN,8/23/2000 18:30 +Bouse,,LIGHT,AZ,8/23/2000 19:49 +Albion,,FORMATION,IN,8/23/2000 22:00 +Casa Grande,,TRIANGLE,AZ,8/23/2000 22:42 +Londonderry,,OVAL,NH,8/24/2000 11:00 +Adams,,LIGHT,NY,8/24/2000 22:14 +Bow,,FIREBALL,WA,8/24/2000 23:20 +Waverly,RED YELLOW,LIGHT,KY,8/25/2000 5:03 +Bothell,,OTHER,WA,8/25/2000 21:00 +Hopkinton,,LIGHT,RI,8/25/2000 21:05 +Las Vegas,,FLASH,NV,8/25/2000 22:00 +Lewiston,RED GREEN,CIRCLE,ME,8/25/2000 22:30 +Loveland,ORANGE,DISK,CO,8/25/2000 23:00 +Walnut Hill,,TRIANGLE,IL,8/25/2000 23:10 +Pasadena,RED,DISK,CA,8/26/2000 9:30 +San Diego,,LIGHT,CA,8/26/2000 21:05 +San Diego,RED,TRIANGLE,CA,8/26/2000 21:30 +San Diego,,CIRCLE,CA,8/26/2000 21:50 +San Diego,RED,FIREBALL,CA,8/26/2000 22:00 +Trout Creek Recreation,,LIGHT,OR,8/26/2000 22:00 +Fairfield,RED YELLOW,LIGHT,CA,8/26/2000 23:30 +Goverment Camp,ORANGE,LIGHT,OR,8/26/2000 23:30 +Middletown,YELLOW,OTHER,CA,8/27/2000 17:00 +Carbondale,,LIGHT,IL,8/27/2000 20:45 +Eugene,,VARIOUS,OR,8/27/2000 23:00 +Lenexa,ORANGE,LIGHT,KS,8/28/2000 22:15 +Claremore,,,OK,8/29/2000 20:00 +Streetsboro,,LIGHT,OH,8/29/2000 23:31 +Everett,YELLOW,LIGHT,WA,8/30/2000 1:30 +Troy,,LIGHT,OH,8/30/2000 21:10 +Columbia Heights,RED,OTHER,MN,8/31/2000 20:43 +Bouse,,LIGHT,AZ,8/31/2000 21:15 +Aquebogue,,LIGHT,NY,8/31/2000 21:30 +Madisonville,,DISK,KY,8/31/2000 22:00 +Channing,,VARIOUS,TX,9/1/2000 2:00 +Cameron Park,,EGG,CA,9/1/2000 2:30 +Pottsboro,,OTHER,TX,9/1/2000 8:00 +Albuquerque,,DIAMOND,NM,9/1/2000 17:00 +Union,,OTHER,MO,9/1/2000 18:00 +Attleboro,,CIRCLE,MA,9/1/2000 20:45 +Post,BLUE,LIGHT,TX,9/1/2000 21:00 +Joshua,,TRIANGLE,TX,9/1/2000 21:30 +Oakland,,CYLINDER,CA,9/1/2000 21:35 +Pipestone,,TRIANGLE,MN,9/1/2000 22:00 +Sedona,,FIREBALL,AZ,9/1/2000 22:00 +South Bend,,TRIANGLE,IN,9/1/2000 22:00 +Tempe,,FLASH,AZ,9/1/2000 22:00 +South County,,OTHER,RI,9/1/2000 22:35 +Orchard Park,,OTHER,NY,9/1/2000 23:12 +Indiana,,,IN,9/2/2000 1:00 +La Jolla,,DISK,CA,9/2/2000 3:25 +Seattle,BLUE,CIGAR,WA,9/2/2000 4:00 +Tempe,,CIRCLE,AZ,9/2/2000 4:14 +Hebron,,LIGHT,OH,9/2/2000 14:00 +Seattle,,OTHER,WA,9/2/2000 21:00 +Orem,,OTHER,UT,9/2/2000 21:30 +Miami,,DISK,OK,9/2/2000 22:20 +Hooper,,DISK,CO,9/3/2000 1:30 +Erie,,FIREBALL,PA,9/3/2000 2:15 +Chandler,YELLOW GREEN BLUE,OTHER,AZ,9/3/2000 11:00 +West Covina,,VARIOUS,CA,9/3/2000 19:00 +Westlake Village,RED GREEN BLUE,LIGHT,CA,9/4/2000 3:45 +Hanson,,LIGHT,MA,9/5/2000 21:00 +Redding,RED,TRIANGLE,CA,9/5/2000 21:25 +Linthicum Heights,,LIGHT,MD,9/5/2000 21:37 +West Leipsic,,LIGHT,OH,9/6/2000 2:40 +Hampton Beach,,CIRCLE,NH,9/6/2000 15:00 +Tacoma,,FIREBALL,WA,9/6/2000 19:15 +Williamsville,,LIGHT,NY,9/6/2000 22:00 +Peebles,,FIREBALL,OH,9/6/2000 22:32 +Laguna Hills,,LIGHT,CA,9/6/2000 22:55 +Yuma,,CIRCLE,AZ,9/7/2000 1:30 +Glendale,,TRIANGLE,AZ,9/7/2000 20:00 +Syracuse,,TRIANGLE,NY,9/7/2000 20:30 +Benton,,LIGHT,KY,9/7/2000 21:20 +Longmont,,FIREBALL,CO,9/7/2000 23:42 +Greesnboro,,,NC,9/8/2000 3:25 +Houston,,CYLINDER,TX,9/8/2000 6:15 +New York City,,RECTANGLE,NY,9/8/2000 12:30 +New York City,,RECTANGLE,NY,9/8/2000 12:30 +Fall River,,SPHERE,MA,9/8/2000 14:00 +Walla Walla,,CIGAR,WA,9/8/2000 15:30 +George West,,FLASH,TX,9/8/2000 20:30 +Reading,,FLASH,PA,9/9/2000 2:30 +Mechanicsburg,BLUE,FIREBALL,PA,9/9/2000 3:00 +Coatesville,,LIGHT,PA,9/9/2000 3:30 +Gardiner,,LIGHT,MT,9/9/2000 3:30 +Mount Laurel,,FIREBALL,NJ,9/9/2000 3:30 +Philadelphia,,VARIOUS,PA,9/9/2000 3:30 +Alamogordo,,DISK,NM,9/9/2000 20:30 +Hermitage,,TRIANGLE,PA,9/9/2000 21:30 +White Oak,,FIREBALL,MS,9/9/2000 21:30 +Johannesburg,ORANGE,FIREBALL,MI,9/9/2000 22:15 +Dahlonega,,VARIOUS,GA,9/9/2000 22:30 +Roswell,,,NM,9/10/2000 1:11 +Great Sand Dunes National Monument,,CIRCLE,CO,9/10/2000 14:45 +Geneva,,LIGHT,NE,9/10/2000 18:30 +Chicago,,OTHER,IL,9/10/2000 19:10 +Edmond,,LIGHT,OK,9/10/2000 20:30 +Denver,,TRIANGLE,CO,9/10/2000 21:00 +Hermantown,,TRIANGLE,MN,9/10/2000 21:10 +Patuxent River,,LIGHT,MD,9/10/2000 22:00 +Eldorado,,EGG,AR,9/10/2000 23:00 +Peoria,,FORMATION,IL,9/11/2000 0:30 +Peoria,,FORMATION,IL,9/11/2000 0:30 +Charleston,,TRIANGLE,MO,9/11/2000 1:17 +Ashland,,OTHER,KY,9/11/2000 20:15 +Colorado Springs,,OTHER,CO,9/11/2000 21:00 +Indianapolis,,SPHERE,IN,9/11/2000 23:17 +Jasper,,CIRCLE,FL,9/12/2000 1:55 +Catawissa,,,PA,9/12/2000 2:30 +Gold Bar,,TRIANGLE,WA,9/12/2000 7:50 +Walnut,,SPHERE,CA,9/12/2000 14:30 +Lordsburg,,VARIOUS,NM,9/12/2000 17:00 +San Antonio,,OTHER,TX,9/12/2000 19:30 +Raymore,,LIGHT,MO,9/12/2000 23:30 +Bozeman,,OTHER,MT,9/13/2000 0:04 +Leesburg,,RECTANGLE,VA,9/13/2000 5:55 +Toledo,,SPHERE,OH,9/13/2000 13:00 +Everett,,FORMATION,WA,9/13/2000 17:00 +Hagerstown to Sidling hill cut,,LIGHT,MD,9/13/2000 19:00 +Florissant,,FLASH,CO,9/13/2000 19:30 +Sikeston,,CIGAR,MO,9/13/2000 20:10 +Dayton,,TRIANGLE,OH,9/13/2000 21:00 +Williamsville,RED GREEN,LIGHT,NY,9/13/2000 21:00 +Minden,,OVAL,NE,9/13/2000 22:00 +Goshen,,,VT,9/14/2000 1:30 +Augusta,,CONE,GA,9/14/2000 2:00 +Houston,,CYLINDER,TX,9/14/2000 7:51 +Vancouver,,EGG,WA,9/14/2000 8:10 +Santa Monica,,DIAMOND,CA,9/14/2000 19:30 +Steens Mountains,RED,,OR,9/14/2000 20:00 +Homewood,,EGG,AL,9/14/2000 21:00 +Portland,,TRIANGLE,OR,9/14/2000 21:00 +Des Moines,,LIGHT,IA,9/14/2000 21:15 +Toledo,,TRIANGLE,OH,9/15/2000 0:00 +Greensville,,DISK,MS,9/15/2000 1:30 +Lakewood,,DISK,NJ,9/15/2000 1:30 +Duncan,BLUE,OTHER,OK,9/15/2000 2:00 +Harrington,,RECTANGLE,WA,9/15/2000 2:30 +Merritt Island,RED,TRIANGLE,FL,9/15/2000 6:15 +Tupelo,,DISK,MS,9/15/2000 8:00 +Eugene,,OTHER,OR,9/15/2000 14:00 +Stuart,,EGG,FL,9/15/2000 15:00 +Belfield,,DISK,ND,9/15/2000 19:00 +Glenwood,,TRIANGLE,IL,9/15/2000 19:00 +Granite Falls,,,WA,9/15/2000 19:00 +Studio City,,LIGHT,CA,9/15/2000 19:00 +Canton,,DISK,MI,9/15/2000 19:06 +Wister,,TRIANGLE,OK,9/15/2000 19:45 +Niota,,FLASH,IL,9/15/2000 20:00 +Berkeley,ORANGE,DISK,CA,9/15/2000 20:19 +Plant City,,OVAL,FL,9/15/2000 20:30 +Ruidsoso,,LIGHT,NM,9/15/2000 20:37 +Ozark,,LIGHT,AL,9/15/2000 21:00 +Laurel,,CIRCLE,MD,9/15/2000 21:13 +East Springfield,,LIGHT,PA,9/15/2000 21:30 +Pinos Altos,ORANGE,CIRCLE,NM,9/15/2000 22:00 +Idaho Falls,,CHEVRON,ID,9/15/2000 22:45 +Vancouver,,LIGHT,WA,9/15/2000 22:50 +Selden,,CIRCLE,NY,9/16/2000 0:45 +Portland,,,ME,9/16/2000 1:00 +Martinsburg,,TRIANGLE,WV,9/16/2000 7:12 +New York City,,FORMATION,NY,9/16/2000 15:30 +San Francisco,,SPHERE,CA,9/16/2000 17:30 +Fort Wayne,,CIGAR,IN,9/16/2000 17:54 +Wilmington,,TRIANGLE,DE,9/16/2000 19:00 +Laughlin,,FORMATION,NV,9/16/2000 22:00 +Owensboro,RED,CIRCLE,KY,9/16/2000 23:30 +Cleveland,,CIGAR,OH,9/17/2000 16:00 +San Francisco,YELLOW,CHEVRON,CA,9/17/2000 16:00 +San Francisco,,LIGHT,CA,9/17/2000 16:00 +San Francisco,,LIGHT,CA,9/17/2000 16:30 +Kennewick,,CHEVRON,WA,9/17/2000 20:20 +Opelousas,,CHEVRON,LA,9/17/2000 20:55 +Mountain View,,FIREBALL,CA,9/17/2000 21:40 +Allentown,,DISK,PA,9/18/2000 8:00 +San Diego,,OVAL,CA,9/18/2000 18:30 +Cullman,,LIGHT,AL,9/18/2000 19:00 +St. James City,,VARIOUS,FL,9/18/2000 20:00 +Pueblo,YELLOW,SPHERE,CO,9/18/2000 21:00 +Redding,,FLASH,CA,9/18/2000 21:10 +San Saba,,LIGHT,TX,9/18/2000 22:00 +Westville,,LIGHT,OK,9/18/2000 23:00 +San Diego,,OVAL,CA,9/18/2000 23:30 +Dodge City,YELLOW,SPHERE,KS,9/19/2000 3:00 +Fairfield,,FIREBALL,CA,9/19/2000 4:20 +Sherman Oaks,,OTHER,CA,9/19/2000 9:30 +Houston,,SPHERE,TX,9/19/2000 11:50 +Buckley,,TRIANGLE,WA,9/19/2000 12:00 +Girard,,CIRCLE,OH,9/19/2000 12:15 +Pueblo,,TRIANGLE,CO,9/19/2000 19:00 +Radcliff,,LIGHT,KY,9/19/2000 19:30 +Conneaut,,LIGHT,OH,9/19/2000 20:05 +Ravenna,,FORMATION,OH,9/19/2000 20:30 +Duluth,,LIGHT,GA,9/19/2000 21:05 +Madera,,LIGHT,CA,9/19/2000 21:05 +Camas,,FIREBALL,WA,9/19/2000 21:30 +Chandler,,FLASH,AZ,9/19/2000 23:00 +Scottsdale,,FLASH,AZ,9/19/2000 23:00 +El Dorado Hills,,CIRCLE,CA,9/20/2000 4:15 +Kirkland,,OTHER,WA,9/20/2000 17:28 +North Bergen,,TRIANGLE,NJ,9/20/2000 18:00 +Phoenix,,TRIANGLE,AZ,9/20/2000 21:00 +Maybrook,,OTHER,NY,9/20/2000 22:30 +Marshall,,TRIANGLE,MN,9/20/2000 22:57 +Dent,RED GREEN,LIGHT,MN,9/21/2000 4:00 +Columbiana,BLUE,,OH,9/21/2000 6:50 +Columbiana,BLUE,CIRCLE,OH,9/21/2000 10:50 +Portland,ORANGE,CIRCLE,TN,9/21/2000 13:30 +Chatfield,,OVAL,TX,9/21/2000 19:25 +Chatfield,,DISK,TX,9/21/2000 19:30 +Cushing,,FIREBALL,TX,9/21/2000 21:00 +Glenn Ellyn,,OVAL,IL,9/21/2000 21:25 +San Jose,,OVAL,CA,9/21/2000 23:00 +Defiance,,OTHER,OH,9/22/2000 0:30 +Stanton,,DISK,MI,9/22/2000 7:38 +Louisville,,TEARDROP,KY,9/22/2000 7:50 +Yucca Valley,,CYLINDER,CA,9/22/2000 11:00 +Cinnaminson,RED,FIREBALL,NJ,9/22/2000 15:00 +Camp Springs,,CIRCLE,MD,9/22/2000 15:15 +Flagstaff,,OTHER,AZ,9/22/2000 19:41 +Tacoma,,DISK,WA,9/22/2000 22:49 +White City,,CIRCLE,OR,9/22/2000 23:00 +Bradenton,,EGG,FL,9/22/2000 23:30 +Simsbury,,CHEVRON,CT,9/22/2000 23:59 +Glendale,,TRIANGLE,AZ,9/23/2000 0:30 +Fremont,,TRIANGLE,CA,9/23/2000 5:00 +Auburn,,LIGHT,WA,9/23/2000 19:30 +Rosemount,,TRIANGLE,MN,9/23/2000 20:25 +Sandy,,TRIANGLE,UT,9/23/2000 20:53 +Camp Verde,,,AZ,9/24/2000 6:15 +Saint Paul,,DISK,MN,9/24/2000 9:00 +Victor,,CYLINDER,CO,9/24/2000 20:15 +Everett,,LIGHT,WA,9/24/2000 20:40 +West Palm Beach,,LIGHT,FL,9/24/2000 23:12 +Ames,,FLASH,IA,9/24/2000 23:25 +Bridgewater,,OTHER,NJ,9/24/2000 23:45 +Palatine,,CIRCLE,IL,9/25/2000 17:00 +Glendale,,OVAL,CA,9/25/2000 17:30 +Albuquerque,,LIGHT,NM,9/25/2000 19:30 +Fairfield,,CIRCLE,CA,9/25/2000 19:30 +Maunaloa,RED,CHEVRON,HI,9/25/2000 20:12 +Shoreline,,TRIANGLE,WA,9/25/2000 20:15 +The Woodlands,,CHEVRON,TX,9/26/2000 3:30 +Jordan,BLUE,CIGAR,MN,9/26/2000 13:00 +Capistrano Beach,BLUE,FIREBALL,CA,9/26/2000 20:00 +Palm Springs,GREEN,FIREBALL,CA,9/26/2000 20:13 +Mission Viejo,,FIREBALL,CA,9/26/2000 20:15 +Tucson,GREEN,FIREBALL,AZ,9/26/2000 20:30 +Edmonds,,FLASH,WA,9/26/2000 21:00 +Kerrywood,,FLASH,ID,9/26/2000 21:30 +Ankeny,,TRIANGLE,IA,9/26/2000 22:10 +Taunton,RED,DISK,MA,9/27/2000 0:15 +Gerrardstown,,DISK,WV,9/27/2000 1:24 +Babylon,,CIRCLE,NY,9/27/2000 3:00 +Bel Marin Keys,,LIGHT,CA,9/27/2000 5:30 +Apache Junction,,OTHER,AZ,9/27/2000 12:34 +Highlands Ranch,RED ORANGE BLUE,TRIANGLE,CO,9/27/2000 19:30 +Greenbrier,,CIRCLE,AR,9/27/2000 20:00 +Rapid City,,LIGHT,SD,9/27/2000 20:35 +Challis,,TRIANGLE,ID,9/27/2000 21:45 +Vermilion,GREEN,DISK,OH,9/28/2000 1:00 +West Manchester,,OTHER,OH,9/28/2000 14:00 +Layton,RED BLUE,TRIANGLE,UT,9/28/2000 20:00 +Morristown,,TRIANGLE,TN,9/28/2000 20:30 +Oshkosh,ORANGE,DISK,WI,9/28/2000 21:00 +Collinsville,,FIREBALL,IL,9/28/2000 21:10 +Glasgow,RED,OTHER,KY,9/28/2000 21:13 +Crofton,RED,CIRCLE,KY,9/28/2000 21:15 +Napa,,SPHERE,CA,9/29/2000 1:20 +Bethlehem,,OTHER,PA,9/29/2000 5:20 +Wichita,,LIGHT,KS,9/29/2000 5:35 +Chandler,,FIREBALL,AZ,9/29/2000 19:40 +North Texas,,FIREBALL,TX,9/30/2000 2:00 +Canoga Park,,SPHERE,CA,9/30/2000 18:24 +Globe,,CIRCLE,AZ,9/30/2000 20:00 +Globe,GREEN,CIRCLE,AZ,9/30/2000 20:00 +Lamoine,GREEN,TRIANGLE,ME,9/30/2000 20:00 +Memphis,,LIGHT,TN,9/30/2000 20:00 +Phoenix,BLUE,OTHER,AZ,9/30/2000 20:00 +Scottsdale,BLUE,FIREBALL,AZ,9/30/2000 20:00 +San Fernando Valley,,CIRCLE,CA,9/30/2000 21:30 +Los Angeles,RED ORANGE,FORMATION,CA,9/30/2000 21:45 +North Hollywood,RED,VARIOUS,CA,9/30/2000 21:45 +San Fernando Valley,RED,LIGHT,CA,9/30/2000 21:47 +Arleta,RED,LIGHT,CA,9/30/2000 22:00 +Las Vegas,,SPHERE,NV,9/30/2000 22:25 +San Fernando Valley,,FORMATION,CA,9/30/2000 22:30 +Los Angeles,,TRIANGLE,CA,9/30/2000 23:00 +San Antonio,RED BLUE,VARIOUS,TX,9/30/2000 23:30 +Vaughn,,FORMATION,WA,10/1/2000 1:00 +Sturgis,,DISK,MI,10/1/2000 1:30 +Madera,,LIGHT,CA,10/1/2000 14:00 +Stockton,,SPHERE,CA,10/1/2000 18:00 +Chandler,,CIGAR,AZ,10/1/2000 19:40 +Belmont,,,CA,10/1/2000 20:00 +Prineville,,,OR,10/1/2000 20:00 +Wheaton,,TRIANGLE,MD,10/1/2000 20:00 +Albuquerque,,TRIANGLE,NM,10/1/2000 20:45 +Orange Park,,OTHER,FL,10/1/2000 21:00 +Colorado Springs,,LIGHT,CO,10/1/2000 21:30 +Maryville,,LIGHT,MO,10/1/2000 21:30 +Jackson,,TRIANGLE,TN,10/1/2000 22:00 +Jones Beach,RED BLUE,DIAMOND,NY,10/1/2000 23:15 +San Antonio,,LIGHT,TX,10/2/2000 0:00 +Sterling,,OVAL,MI,10/2/2000 0:00 +Sterling Heights,ORANGE,OVAL,MI,10/2/2000 9:54 +Crossville,RED,CIRCLE,TN,10/2/2000 17:00 +Fairbanks,,,AK,10/2/2000 23:00 +St. Petersburg,,DISK,FL,10/3/2000 2:15 +Los Angeles,,,CA,10/3/2000 4:30 +Buckley,,TRIANGLE,WA,10/3/2000 12:15 +Hayward,,VARIOUS,CA,10/3/2000 19:15 +Fargo,,TRIANGLE,ND,10/4/2000 1:57 +Charlotte,,OVAL,NC,10/4/2000 14:33 +Niles,,TRIANGLE,MI,10/4/2000 17:00 +Severn,ORANGE,DISK,MD,10/4/2000 18:10 +Janesville,,DIAMOND,WI,10/4/2000 18:25 +Caldwell,,LIGHT,ID,10/4/2000 20:30 +Kalama,,,WA,10/4/2000 22:00 +Cleburne,,OTHER,TX,10/4/2000 22:25 +New Brighton,,DISK,MN,10/4/2000 22:45 +Richwood,,FIREBALL,TX,10/4/2000 22:47 +Show Low,,CIRCLE,AZ,10/5/2000 0:00 +Snohomish,GREEN,OTHER,WA,10/5/2000 0:05 +Colorado Springs,,TRIANGLE,CO,10/5/2000 2:00 +Phoenix,,LIGHT,AZ,10/5/2000 4:30 +Pima,,OTHER,AZ,10/5/2000 5:50 +Jerome,,VARIOUS,AZ,10/5/2000 6:05 +Kennewick,,,WA,10/5/2000 19:45 +Daphne,,CIRCLE,AL,10/5/2000 21:05 +Topsfield,GREEN,FIREBALL,MA,10/5/2000 22:00 +Montara,,LIGHT,CA,10/5/2000 23:15 +Seattle,,SPHERE,WA,10/6/2000 10:50 +Springfield,,TRIANGLE,MO,10/6/2000 13:45 +Rohnert Park,,CONE,CA,10/6/2000 16:45 +Las Vegas,RED YELLOW,OTHER,NV,10/6/2000 20:25 +Mesa,,DISK,AZ,10/6/2000 22:30 +Vallejo,ORANGE,TEARDROP,CA,10/7/2000 1:15 +Palm Desert,,TRIANGLE,CA,10/7/2000 2:45 +Clearwater,,LIGHT,FL,10/7/2000 22:00 +Katy,,DISK,TX,10/7/2000 22:00 +Oak Lawn,,CIRCLE,IL,10/7/2000 22:30 +Toledo to Marion,,LIGHT,OH,10/7/2000 23:30 +Silver Lake,,TRIANGLE,CA,10/8/2000 0:30 +Silver Lake,,TRIANGLE,CA,10/8/2000 1:00 +Longbeach,,TRIANGLE,NJ,10/8/2000 1:10 +Fairfield,RED,,IA,10/8/2000 2:00 +Bartlesville,,,OK,10/8/2000 5:45 +Pismo Beach,,TRIANGLE,CA,10/8/2000 9:00 +Hayward,,CIRCLE,CA,10/8/2000 14:00 +West Warwick,,FORMATION,RI,10/8/2000 16:00 +Tacoma,,OTHER,WA,10/8/2000 16:45 +Lisbon,,LIGHT,OH,10/8/2000 18:00 +Chemung,,OTHER,NY,10/8/2000 18:20 +Chemung,,OTHER,NY,10/8/2000 18:20 +Morganton,,DISK,NC,10/8/2000 20:00 +Glendale,,CIRCLE,AZ,10/8/2000 22:30 +Kimberly,,,AL,10/9/2000 9:00 +Border,,TEARDROP,WY,10/9/2000 18:45 +Bozeman,,LIGHT,MT,10/9/2000 21:00 +Minnetonka,,VARIOUS,MN,10/9/2000 23:35 +Perryville,ORANGE,OVAL,MO,10/10/2000 3:00 +Boynton Beach,,OTHER,FL,10/10/2000 6:15 +Jueanu,,TRIANGLE,WI,10/10/2000 16:00 +Valley Park area of St. Louis,,OVAL,MO,10/10/2000 20:20 +Brinktown,,LIGHT,MO,10/10/2000 20:30 +Florence,,LIGHT,KY,10/10/2000 21:30 +Seattle,,,WA,10/10/2000 21:30 +Port Orchard,,DIAMOND,WA,10/10/2000 22:00 +Watertown,,LIGHT,NY,10/11/2000 20:00 +Elverta,RED BLUE,LIGHT,CA,10/11/2000 22:00 +Whittier,,LIGHT,CA,10/11/2000 23:30 +Breckenridge,,OTHER,TX,10/12/2000 8:00 +Mountain City,,DISK,TN,10/12/2000 15:00 +New Haven,,DISK,WV,10/12/2000 17:40 +Belmont,,CIGAR,VT,10/12/2000 18:00 +Gilbert,,LIGHT,AZ,10/12/2000 18:45 +Gilbert,,OVAL,AZ,10/12/2000 18:59 +Gilbert,RED,,AZ,10/12/2000 19:00 +Tulsa,,FIREBALL,OK,10/12/2000 19:30 +Buckeye,,LIGHT,AZ,10/12/2000 21:30 +Forest Hills,GREEN,CIRCLE,NY,10/13/2000 1:00 +Mohawk Valley,,OTHER,AZ,10/13/2000 1:00 +Mohawk Valley,,OTHER,AZ,10/13/2000 1:00 +Tulsa,,FIREBALL,OK,10/13/2000 6:45 +Newton,,FIREBALL,KS,10/13/2000 8:00 +Wichita,,OTHER,KS,10/13/2000 18:30 +Knoxville,,CYLINDER,TN,10/13/2000 18:45 +Louisville,,TRIANGLE,KY,10/13/2000 18:45 +Oklahoma,,FIREBALL,OK,10/13/2000 19:00 +Wichita,,,KS,10/13/2000 19:00 +Clyde,,CYLINDER,TX,10/13/2000 19:14 +Jenks,,FIREBALL,OK,10/13/2000 19:20 +Orangeville,,,PA,10/13/2000 19:25 +Amarillo,BLUE,LIGHT,TX,10/13/2000 19:30 +Baird,,FIREBALL,TX,10/13/2000 19:30 +Elk City,,FIREBALL,OK,10/13/2000 19:53 +Eugene,,LIGHT,OR,10/13/2000 20:00 +Miami,,CHEVRON,FL,10/13/2000 20:00 +Orwigsburg,,FIREBALL,PA,10/13/2000 21:30 +Portland,,LIGHT,OR,10/13/2000 22:10 +Salinas,,,CA,10/14/2000 1:16 +Escondido,,,CA,10/14/2000 2:30 +Breezewood,ORANGE YELLOW BLUE,CIGAR,PA,10/14/2000 14:18 +Mechanicsville,,CIRCLE,VA,10/14/2000 16:05 +Sarasota,,,FL,10/14/2000 18:15 +Gonzales,,RECTANGLE,LA,10/14/2000 18:30 +Denver,,,CO,10/14/2000 22:18 +Southgate,,FIREBALL,MI,10/15/2000 1:35 +Alabama,,SPHERE,AL,10/15/2000 3:00 +Clear Lake,GREEN,EGG,TX,10/15/2000 4:00 +Mt. Kisco,,LIGHT,NY,10/15/2000 4:00 +Nassau Bay,GREEN,OVAL,TX,10/15/2000 4:00 +Del Valle,,,TX,10/15/2000 15:30 +Phoenix,,CIGAR,AZ,10/15/2000 16:30 +Commerce City to Henderson,,TRIANGLE,CO,10/15/2000 17:00 +Palm Springs,,LIGHT,CT,10/15/2000 17:00 +Long Beach,,DIAMOND,CA,10/15/2000 17:52 +Strawberry,,DISK,AZ,10/15/2000 19:00 +New Castle,,EGG,PA,10/15/2000 20:00 +Portland,,CIRCLE,OR,10/15/2000 20:00 +Lucerne,,TRIANGLE,IN,10/15/2000 20:30 +Middletown,,CIGAR,CA,10/15/2000 21:10 +Houston,,TRIANGLE,TX,10/15/2000 21:30 +Greensboro,,OVAL,NC,10/15/2000 22:00 +Martins Ferry,,,OH,10/15/2000 23:00 +Spring Lake,,OTHER,NC,10/15/2000 23:00 +Woodstock,,FIREBALL,CT,10/16/2000 12:22 +Kenosha,,LIGHT,WI,10/16/2000 18:10 +Jefferson City,,TRIANGLE,MO,10/16/2000 23:00 +Bellerose,YELLOW,DISK,NY,10/16/2000 23:55 +Napoleonville,RED,OTHER,LA,10/17/2000 19:00 +Yampa,RED GREEN,LIGHT,CO,10/17/2000 19:00 +Oakland Park,,DIAMOND,FL,10/17/2000 19:45 +Eureka,ORANGE,LIGHT,CA,10/17/2000 20:30 +Tucson,RED BLUE,DIAMOND,AZ,10/17/2000 21:00 +Seattle,,CIRCLE,WA,10/18/2000 6:02 +Boynton Beach,,OTHER,FL,10/18/2000 20:25 +Royal Palm Beach,,FIREBALL,FL,10/18/2000 20:43 +Seattle,GREEN,CIRCLE,WA,10/18/2000 20:45 +McKinney,,LIGHT,TX,10/18/2000 22:15 +Vineland,,SPHERE,CO,10/19/2000 0:00 +Waxhaw,,,NC,10/19/2000 5:28 +Old Fort,YELLOW,CIGAR,TN,10/19/2000 6:30 +Salt Lake City,,SPHERE,UT,10/19/2000 7:40 +Hatfield,,LIGHT,MA,10/19/2000 20:00 +Allegan,,TRIANGLE,MI,10/20/2000 1:30 +Louisville,,LIGHT,KY,10/20/2000 3:00 +Lansing,,,MI,10/20/2000 7:50 +Granite,,,IL,10/20/2000 12:00 +Easley,,DISK,SC,10/20/2000 20:00 +Ridgefield,,TRIANGLE,CT,10/20/2000 20:30 +Westbury,,DISK,NY,10/20/2000 20:45 +Kenosha,,LIGHT,WI,10/20/2000 21:00 +West Branch,,VARIOUS,IA,10/20/2000 21:00 +Greenville,,VARIOUS,NC,10/20/2000 23:30 +Alma,,OVAL,WI,10/21/2000 9:30 +DeSmet,,,SD,10/21/2000 12:00 +West Manchester,,CYLINDER,OH,10/21/2000 13:30 +Rocky Hill,,CHEVRON,CT,10/21/2000 17:00 +Saginaw,,CONE,MI,10/21/2000 19:00 +Fayetteville,,CROSS,AR,10/21/2000 20:15 +Modesto,,FORMATION,CA,10/21/2000 21:15 +San Jose,ORANGE YELLOW,OTHER,CA,10/22/2000 2:30 +Oshkosh,,,WI,10/22/2000 4:30 +Turlock,,TRIANGLE,CA,10/22/2000 6:10 +Lebanon,,LIGHT,PA,10/22/2000 6:30 +Cooper City,BLUE,OTHER,FL,10/22/2000 19:30 +Tulsa,,TRIANGLE,OK,10/22/2000 22:00 +Puyallup,RED,DIAMOND,WA,10/22/2000 23:00 +White Bear Lake,,TRIANGLE,MN,10/23/2000 0:00 +Harpursville,RED BLUE,VARIOUS,NY,10/23/2000 0:05 +Elmira,,CYLINDER,WA,10/23/2000 2:30 +Southbury,,LIGHT,CT,10/23/2000 6:50 +Sacramento,,CYLINDER,CA,10/23/2000 11:00 +Jersey City,,SPHERE,NJ,10/23/2000 14:00 +Nolensville,,,TN,10/23/2000 14:00 +Kamiah,,CIGAR,ID,10/23/2000 17:30 +Mountain Home,,LIGHT,AR,10/23/2000 18:25 +Seattle,,LIGHT,WA,10/23/2000 21:45 +Seattle,,SPHERE,WA,10/23/2000 21:55 +Seattle,GREEN,EGG,WA,10/23/2000 22:00 +Yamhill,,TRIANGLE,PA,10/23/2000 22:25 +Kent,BLUE,OTHER,WA,10/24/2000 6:45 +Medina,,DIAMOND,OH,10/24/2000 19:15 +Street,,OVAL,MD,10/24/2000 20:25 +Gila Bend,,TRIANGLE,AZ,10/24/2000 20:45 +Munhall,,LIGHT,PA,10/25/2000 0:00 +Northampton,,FIREBALL,MA,10/25/2000 19:15 +Peoria,,FIREBALL,AZ,10/25/2000 20:15 +Poulsbo,ORANGE,OTHER,WA,10/25/2000 20:30 +Seattle,,TRIANGLE,WA,10/25/2000 20:30 +Alma,,LIGHT,NM,10/25/2000 21:05 +Portland,,,ME,10/25/2000 23:20 +Scottsdale,,VARIOUS,AZ,10/26/2000 3:30 +Panama City Beach,,OTHER,FL,10/26/2000 13:48 +Agency,,OTHER,MO,10/26/2000 17:30 +Greenlee County,,CIRCLE,AZ,10/26/2000 19:00 +Buckeye,,LIGHT,AZ,10/26/2000 20:45 +Longville,RED,VARIOUS,LA,10/26/2000 21:30 +Aurora,,TRIANGLE,CO,10/26/2000 22:00 +Greeley,,TRIANGLE,CO,10/26/2000 22:30 +Anchorage,,LIGHT,AK,10/26/2000 23:30 +Parker Canyon Lake,,TRIANGLE,AZ,10/27/2000 0:00 +San Antonio,,LIGHT,TX,10/27/2000 3:00 +Phoenix,RED,FIREBALL,AZ,10/27/2000 8:30 +Seattle,,OVAL,WA,10/27/2000 10:30 +Ward,,OTHER,AR,10/27/2000 18:00 +Prattsburgh,,FLASH,NY,10/27/2000 22:00 +Lake Worth,YELLOW,LIGHT,FL,10/28/2000 0:00 +Springfield,,CIGAR,MO,10/28/2000 0:00 +Laurel,BLUE,SPHERE,MD,10/28/2000 1:00 +Portland,,SPHERE,ME,10/28/2000 10:30 +Kintnersville,ORANGE,OTHER,PA,10/28/2000 15:00 +Bellingham,,FLASH,WA,10/28/2000 18:15 +St. George,,VARIOUS,UT,10/28/2000 19:00 +Fairview,,VARIOUS,MI,10/28/2000 19:30 +Scranton,,OTHER,PA,10/28/2000 20:30 +Poughkeepsie,,TRIANGLE,NY,10/28/2000 21:00 +Sheboygan,,CIRCLE,WI,10/28/2000 21:20 +Laurel,,CIRCLE,MD,10/28/2000 21:30 +Jersey City,,LIGHT,NJ,10/28/2000 22:50 +Flint,,TRIANGLE,MI,10/29/2000 1:00 +Norwalk,,LIGHT,OH,10/29/2000 11:10 +Olympia,,OTHER,WA,10/29/2000 17:00 +Edgewood,GREEN,FIREBALL,WA,10/29/2000 17:20 +Graham,,FIREBALL,WA,10/29/2000 17:20 +Aberdeen,GREEN,FIREBALL,WA,10/29/2000 17:25 +La Canada,,TRIANGLE,CA,10/29/2000 17:30 +Gilbert,RED,LIGHT,AZ,10/29/2000 18:30 +Camano Island,,LIGHT,WA,10/29/2000 18:45 +Munroe Falls,,LIGHT,OH,10/29/2000 19:30 +Pottstown,,LIGHT,PA,10/29/2000 19:40 +Fairview,RED YELLOW,DISK,MI,10/29/2000 20:00 +Mt Vernon,,FLASH,WA,10/29/2000 20:00 +Dateland,,DIAMOND,AZ,10/29/2000 21:30 +Marion,ORANGE,LIGHT,KS,10/29/2000 21:30 +Unadilla,,TRIANGLE,NE,10/29/2000 23:50 +San Diego,,OTHER,CA,10/30/2000 4:20 +McMinnville,,CIGAR,OR,10/30/2000 16:00 +Sulphur Springs,,CIRCLE,TX,10/30/2000 18:00 +Austintown,GREEN,,OH,10/30/2000 19:00 +Pearl,,TRIANGLE,MS,10/30/2000 20:30 +Woodland,,SPHERE,CA,10/30/2000 21:12 +Woodland,ORANGE,SPHERE,CA,10/30/2000 21:12 +Boise,,CIRCLE,ID,10/31/2000 7:00 +Roseville,,CIRCLE,CA,10/31/2000 16:30 +Channing,,DISK,MI,10/31/2000 17:30 +Brookfield,RED,OTHER,WI,10/31/2000 18:30 +Fostoria,,VARIOUS,OH,10/31/2000 18:30 +Lansing,,LIGHT,MI,10/31/2000 18:30 +Noblesville,,LIGHT,IN,10/31/2000 18:30 +Sterling Heights,,OTHER,MI,10/31/2000 18:30 +Rochester Hills,,FIREBALL,MI,10/31/2000 18:45 +Saginaw,,FIREBALL,MI,10/31/2000 18:45 +South Lyon,,LIGHT,MI,10/31/2000 18:45 +Elyria,,,OH,10/31/2000 19:00 +Germantown,,CIRCLE,WI,10/31/2000 19:00 +Grand Ledge,,LIGHT,MI,10/31/2000 19:00 +Perry,,FIREBALL,MI,10/31/2000 19:00 +Cygnet,,EGG,OH,10/31/2000 19:15 +Cygnet,,EGG,OH,10/31/2000 19:15 +Riverdale,,DIAMOND,MD,10/31/2000 19:30 +Sipsey,,DISK,AL,10/31/2000 20:00 +Whitmore Lake,,CIRCLE,MI,10/31/2000 20:00 +New City,GREEN,DISK,NY,10/31/2000 20:32 +Cincinnati,,TRIANGLE,OH,10/31/2000 21:00 +Austin,,DISK,TX,11/1/2000 1:00 +Commack,,EGG,NY,11/1/2000 3:00 +Smithton,,OTHER,MO,11/1/2000 13:40 +Costa Mesa,ORANGE,TRIANGLE,CA,11/1/2000 18:30 +Union,,LIGHT,NJ,11/1/2000 20:00 +Mitchell,,OTHER,SD,11/1/2000 21:00 +Blythe,,DIAMOND,CA,11/1/2000 22:56 +Dayton,,DISK,IA,11/2/2000 1:00 +Medford,,CIRCLE,WI,11/2/2000 5:30 +Kansas,,,KS,11/2/2000 17:00 +Dana Point,,TRIANGLE,CA,11/2/2000 19:30 +Bloomfield,,DISK,NJ,11/2/2000 19:45 +Cresskill,,DISK,NJ,11/2/2000 19:50 +Petaluma,,FORMATION,CA,11/2/2000 20:30 +Kennewick,,TRIANGLE,WA,11/2/2000 21:30 +Fort Worth,,FIREBALL,TX,11/2/2000 22:00 +Seattle,,LIGHT,WA,11/3/2000 0:45 +Surprise,,DISK,AZ,11/3/2000 4:20 +Ashland City,,TRIANGLE,TN,11/3/2000 13:00 +Decorah,,,IA,11/3/2000 15:40 +Bend,RED BLUE,CIRCLE,OR,11/3/2000 16:50 +Dover,,TRIANGLE,DE,11/3/2000 19:40 +Dover,,TRIANGLE,DE,11/3/2000 19:40 +Laguna Hills,,,CA,11/3/2000 20:30 +Fortuna,ORANGE,OVAL,CA,11/3/2000 22:35 +Garland,GREEN,,TX,11/4/2000 0:20 +Yucaipa,,,CA,11/4/2000 2:40 +Windsor Locks,,LIGHT,CT,11/4/2000 13:45 +Sidney,,CIRCLE,ME,11/4/2000 18:00 +Ann Arbor,RED,LIGHT,MI,11/4/2000 19:30 +Scottsdale,,TRIANGLE,AZ,11/4/2000 20:45 +Sanibel Island,RED,LIGHT,FL,11/4/2000 22:00 +Peoria,RED ORANGE,CIRCLE,AZ,11/5/2000 1:00 +Plantation,,TEARDROP,FL,11/5/2000 5:12 +Fort Wayne,,FORMATION,IN,11/5/2000 16:45 +San Francisco,,FIREBALL,CA,11/6/2000 1:30 +Sacramento,,CIRCLE,CA,11/6/2000 14:00 +Kearney,,EGG,MO,11/6/2000 20:00 +Houston,,TRIANGLE,TX,11/6/2000 21:00 +Mentor,,CIRCLE,OH,11/6/2000 21:30 +Homer,,OTHER,AK,11/7/2000 0:10 +Reno,,TRIANGLE,NV,11/7/2000 2:15 +Reading,,LIGHT,PA,11/7/2000 3:30 +Lackawaxen,,LIGHT,PA,11/7/2000 3:55 +Dallas,,DISK,TX,11/7/2000 17:50 +Roseville,,TRIANGLE,CA,11/7/2000 22:00 +Bellevue,,OTHER,WA,11/8/2000 12:20 +Scottsdale,,TEARDROP,AZ,11/8/2000 16:30 +Chandler,,CIRCLE,AZ,11/8/2000 19:15 +Winfield,,FIREBALL,WV,11/8/2000 22:00 +Douglassville,,OTHER,PA,11/8/2000 22:30 +Eugene,,LIGHT,OR,11/8/2000 22:30 +Honolulu,,FORMATION,HI,11/9/2000 0:05 +Paso Robles,,RECTANGLE,CA,11/10/2000 16:00 +Perrysburg,,RECTANGLE,OH,11/10/2000 18:00 +Syracuse,,TRIANGLE,NY,11/10/2000 23:00 +Slate Hill,,CIRCLE,NY,11/11/2000 5:00 +Concord,,DISK,NC,11/11/2000 9:00 +Los Molinos,,OVAL,CA,11/11/2000 10:45 +Tulsa,,CIRCLE,OK,11/11/2000 14:00 +Tarpon Springs,,CYLINDER,FL,11/11/2000 14:35 +Bend,,LIGHT,OR,11/11/2000 17:05 +Bend,,CIRCLE,OR,11/11/2000 17:30 +Berlin,,DISK,MA,11/11/2000 17:30 +Pollock Pines,,LIGHT,CA,11/11/2000 18:35 +Indianapolis,,OTHER,IN,11/11/2000 19:32 +Charleston,,LIGHT,IL,11/11/2000 21:00 +Russell Springs,,FORMATION,KY,11/12/2000 3:00 +Glendale,,LIGHT,AZ,11/12/2000 6:20 +Jackson,,TRIANGLE,TN,11/12/2000 9:00 +Orlando,,CIRCLE,FL,11/12/2000 14:00 +Los Angeles,,VARIOUS,CA,11/12/2000 15:30 +Port Jefferson,GREEN,VARIOUS,NY,11/12/2000 21:45 +Somerville,GREEN,FIREBALL,NJ,11/12/2000 22:00 +LaMesa,,FIREBALL,CA,11/12/2000 22:30 +Miami,,OTHER,FL,11/12/2000 22:58 +Lynchburg,BLUE,LIGHT,VA,11/12/2000 23:15 +Canyon,,EGG,CA,11/13/2000 0:01 +Denton,,TRIANGLE,TX,11/13/2000 18:30 +Vail,,TEARDROP,AZ,11/13/2000 19:15 +Los Angeles,,VARIOUS,CA,11/13/2000 19:43 +Lawrenceville,,RECTANGLE,GA,11/13/2000 19:45 +Fort Myers,,OVAL,FL,11/13/2000 20:00 +Heflin,,DIAMOND,LA,11/13/2000 21:00 +Ellinwood,,FIREBALL,KS,11/13/2000 22:00 +Henderson,,,TX,11/14/2000 0:00 +Kiln,,,MS,11/14/2000 18:30 +Ellensburg,,,WA,11/14/2000 20:15 +McAlpin,,FIREBALL,FL,11/14/2000 20:25 +Ellensburg,,CHEVRON,WA,11/14/2000 21:00 +Greenup,,FIREBALL,KY,11/14/2000 21:00 +San Diego,,LIGHT,CA,11/14/2000 21:00 +Cambridge,,LIGHT,MD,11/15/2000 7:00 +Southwest,,TRIANGLE,AR,11/15/2000 8:30 +East Lansing,,DIAMOND,MI,11/15/2000 14:00 +Perry,,TRIANGLE,MI,11/15/2000 17:00 +Comanche,,OTHER,TX,11/15/2000 17:55 +Greenwood,,FLASH,AR,11/15/2000 18:00 +Sidney,,OTHER,TX,11/15/2000 18:00 +Greenfield Center,GREEN,OTHER,NY,11/15/2000 19:00 +Kokomo,ORANGE,FLASH,IN,11/15/2000 20:00 +Portland,,CIRCLE,OR,11/15/2000 20:00 +Belleville,,,NJ,11/15/2000 20:30 +Fort Smith,ORANGE,TRIANGLE,AR,11/15/2000 21:00 +Fruitport,,TRIANGLE,MI,11/15/2000 22:00 +Arroyo Grande,,OTHER,CA,11/16/2000 0:00 +Eagletown,,SPHERE,OK,11/16/2000 20:00 +Auburn,,FIREBALL,WA,11/16/2000 23:00 +Everett,,OTHER,WA,11/16/2000 23:03 +Brownsville,,CIRCLE,OR,11/16/2000 23:08 +Vining,GREEN,OVAL,MN,11/16/2000 23:54 +San Francisco,,OVAL,CA,11/17/2000 17:00 +Freehold,,CIRCLE,NJ,11/17/2000 17:30 +Seabrook,,RECTANGLE,NH,11/17/2000 18:00 +Greenwich,,LIGHT,NY,11/17/2000 18:30 +Chiloquin,,OTHER,OR,11/17/2000 19:30 +Astoria,,LIGHT,OR,11/17/2000 20:18 +Monticello,ORANGE,VARIOUS,NY,11/17/2000 20:45 +Alhambra,,OTHER,CA,11/17/2000 22:16 +New York City,,TRIANGLE,NY,11/18/2000 1:30 +Pasadena,,LIGHT,CA,11/18/2000 18:30 +Granite City,,TRIANGLE,IL,11/18/2000 18:45 +Walnut Creek,,LIGHT,CA,11/18/2000 20:00 +Dilley,RED BLUE,DISK,TX,11/18/2000 22:15 +Omaha,,,NE,11/18/2000 23:59 +Massapequa,,OVAL,NY,11/19/2000 3:00 +Reedpoint,,FIREBALL,MT,11/19/2000 4:30 +East Brunswick,,TEARDROP,NJ,11/19/2000 16:35 +Bradford,,OTHER,MA,11/19/2000 17:00 +Jamestown,,LIGHT,TN,11/19/2000 17:30 +Benicia,,OTHER,CA,11/19/2000 17:58 +Grapevine,,TRIANGLE,TX,11/19/2000 18:00 +n45 27.944 w088 23.691,,CIRCLE,WI,11/19/2000 18:00 +Tucson,,,AZ,11/19/2000 18:00 +Lenexa,ORANGE,FORMATION,KS,11/19/2000 21:15 +Arlington,RED,DISK,VA,11/19/2000 22:00 +Westlake,,SPHERE,LA,11/19/2000 22:00 +Hazelwood,,DISK,MO,11/20/2000 2:00 +Belfry,BLUE,LIGHT,KY,11/20/2000 3:00 +Breinigsville,,OTHER,PA,11/20/2000 4:13 +Lyndhurst,,VARIOUS,VA,11/20/2000 12:15 +St. Joseph,,EGG,MO,11/20/2000 15:00 +Seagoville,,TRIANGLE,TX,11/20/2000 19:00 +Phoenix,,TRIANGLE,AZ,11/20/2000 20:30 +Destin,,FIREBALL,FL,11/20/2000 22:30 +Oostburg,,FLASH,WI,11/20/2000 23:00 +Warrior,,LIGHT,AL,11/21/2000 5:07 +Kingman,,DISK,AZ,11/21/2000 13:54 +Morro Bay,,LIGHT,CA,11/21/2000 17:30 +Cordova,,,AL,11/21/2000 18:00 +Olympia,,OTHER,WA,11/21/2000 20:00 +Jackson,,LIGHT,MI,11/22/2000 12:00 +Coeur d'Alene,ORANGE,LIGHT,ID,11/22/2000 17:15 +Greensboro,,TRIANGLE,NC,11/22/2000 20:40 +Omaha,,TRIANGLE,NE,11/22/2000 22:15 +Seattle,,LIGHT,WA,11/23/2000 1:03 +Oregon,,TRIANGLE,OH,11/23/2000 6:30 +West Allenhurst,,OTHER,NJ,11/23/2000 18:15 +Fountain City,,LIGHT,WI,11/23/2000 18:20 +El Paso,,CIGAR,NM,11/23/2000 18:37 +Belton,,LIGHT,TX,11/23/2000 18:40 +Corpus Christi,,OTHER,TX,11/23/2000 19:45 +Valley Stream,,TRIANGLE,NY,11/23/2000 20:06 +Palm Desert,,LIGHT,CA,11/23/2000 21:00 +Atlanta,,CIRCLE,GA,11/23/2000 21:30 +Atlanta,,FORMATION,GA,11/23/2000 21:30 +Auburn,,CIRCLE,NH,11/23/2000 22:00 +Clintwood,,,VA,11/23/2000 22:00 +Norwalk,,LIGHT,CA,11/23/2000 22:00 +Atlanta,,OVAL,GA,11/23/2000 22:45 +Burlington,,CIRCLE,IL,11/24/2000 1:24 +Denver,RED,TRIANGLE,CO,11/24/2000 17:52 +Aptos,,FIREBALL,CA,11/24/2000 23:00 +Conyers,,FLASH,GA,11/24/2000 23:00 +Elizabeth,,SPHERE,NJ,11/25/2000 1:25 +Carrollton,GREEN,,GA,11/25/2000 3:00 +Wax,,CIRCLE,KY,11/25/2000 5:00 +Broken Arrow,,SPHERE,OK,11/25/2000 14:35 +Camarillo,,LIGHT,CA,11/25/2000 19:30 +Ellisville,,TRIANGLE,MS,11/25/2000 20:45 +Claremore,,LIGHT,OK,11/26/2000 0:00 +La Jolla,,LIGHT,CA,11/26/2000 4:00 +Jellico,,CIRCLE,TN,11/26/2000 21:00 +Progresso,,,TX,11/26/2000 21:15 +Iron River,YELLOW GREEN BLUE,OTHER,MI,11/26/2000 21:30 +Dalton,,DISK,GA,11/27/2000 19:00 +Helena,,EGG,MT,11/27/2000 20:03 +Morganton,,FIREBALL,NC,11/27/2000 22:08 +Eugene,,CIRCLE,OR,11/28/2000 2:14 +North Miami Beach,,DISK,FL,11/28/2000 18:42 +Peoria,,LIGHT,IL,11/28/2000 19:00 +Phoenix,,TRIANGLE,AZ,11/28/2000 19:04 +Kennewick,ORANGE,FIREBALL,WA,11/28/2000 21:00 +Edina,ORANGE,CIRCLE,MN,11/28/2000 21:30 +Placerville,GREEN,FIREBALL,CA,11/28/2000 22:15 +Sherwood,,TRIANGLE,OR,11/29/2000 3:46 +Kapa'a,BLUE,CIRCLE,HI,11/30/2000 5:30 +Port St. Lucie,,OVAL,FL,11/30/2000 11:50 +Galway,,LIGHT,NY,11/30/2000 18:45 +Newark,,TRIANGLE,CA,11/30/2000 23:21 +Kilauea,ORANGE BLUE,FIREBALL,HI,12/1/2000 4:29 +Kilauea,,FIREBALL,HI,12/1/2000 4:30 +Lawai,,,HI,12/1/2000 4:30 +Lawai,,FLASH,HI,12/1/2000 4:30 +Lawai,,LIGHT,HI,12/1/2000 4:35 +Grand Blanc,,TRIANGLE,MI,12/1/2000 17:00 +Devils Lake,,DIAMOND,ND,12/1/2000 17:20 +Avondale,,TRIANGLE,AZ,12/1/2000 18:45 +South Bend,,LIGHT,IN,12/1/2000 19:20 +Avoca,,LIGHT,IA,12/1/2000 20:23 +Longwood,,TRIANGLE,FL,12/1/2000 22:43 +Lemon Grove,,CROSS,CA,12/2/2000 8:22 +Hamburg,,LIGHT,MI,12/2/2000 17:40 +Gloucester,,LIGHT,MA,12/2/2000 21:00 +Lake Tahoe,GREEN,FIREBALL,CA,12/2/2000 21:30 +Seldon,RED,TRIANGLE,NY,12/2/2000 22:50 +Anthem,,LIGHT,AZ,12/3/2000 16:34 +Phoenix,,DISK,AZ,12/3/2000 17:30 +Fort Wayne,,OTHER,IN,12/3/2000 19:10 +Dallas,RED GREEN,LIGHT,TX,12/3/2000 22:00 +Concord,,CIRCLE,CA,12/3/2000 22:05 +Maple Valley,,FORMATION,WA,12/3/2000 23:20 +St. Louis,,CYLINDER,MO,12/3/2000 23:30 +Schnecksville,,TEARDROP,PA,12/4/2000 7:30 +Monticello,,TRIANGLE,NY,12/4/2000 14:00 +Auburn,,,WA,12/4/2000 14:30 +Beaverton,,TRIANGLE,OR,12/4/2000 19:00 +Pomona,,FLASH,MO,12/4/2000 19:00 +North Tonawanda,,OTHER,NY,12/4/2000 21:40 +O'Fallon,,TRIANGLE,IL,12/5/2000 0:00 +Darrington,,OTHER,WA,12/5/2000 15:27 +Corvallis,,FIREBALL,OR,12/5/2000 16:20 +Portland,,LIGHT,OR,12/5/2000 17:10 +Brooklyn Park,,TRIANGLE,MN,12/5/2000 19:40 +Ardmore,,,OK,12/5/2000 20:03 +Lake Havasu City,,OTHER,AZ,12/5/2000 20:15 +Thorntown,,,IN,12/6/2000 4:00 +Tonawanda,,LIGHT,NY,12/6/2000 4:55 +Pueblo,,,CO,12/6/2000 12:30 +Roswell,,TRIANGLE,NM,12/6/2000 18:16 +Forks,,CIGAR,WA,12/6/2000 18:40 +Milton,,LIGHT,WV,12/6/2000 20:00 +Hollywood,,SPHERE,CA,12/7/2000 10:50 +West Chester,,SPHERE,PA,12/7/2000 17:50 +Fresno,,DISK,CA,12/7/2000 19:56 +Gilbert,,OVAL,AZ,12/8/2000 19:09 +Mesa,RED,LIGHT,AZ,12/8/2000 19:15 +Beaver,,LIGHT,OH,12/8/2000 20:00 +Carlsbad,,LIGHT,NM,12/9/2000 18:00 +Mesa,,LIGHT,AZ,12/9/2000 19:30 +Beaver,,TRIANGLE,PA,12/9/2000 21:00 +Russellville,,,AR,12/10/2000 0:10 +Glen Allen,,OVAL,VA,12/10/2000 1:10 +Mankato,,OTHER,MN,12/10/2000 3:30 +Marshfield,,LIGHT,WI,12/10/2000 15:00 +Las Vegas,,TRIANGLE,NV,12/10/2000 17:30 +Longwood,,OTHER,FL,12/10/2000 22:00 +Bloomington,RED ORANGE,OVAL,CA,12/11/2000 0:01 +Alexandria,,DIAMOND,KY,12/11/2000 6:24 +Norwalk,,,CT,12/11/2000 17:18 +Springfield,,FIREBALL,MO,12/11/2000 21:15 +Gilbert,RED,LIGHT,AZ,12/11/2000 23:45 +Cupertino,YELLOW,,CA,12/12/2000 6:35 +Raleigh,,DISK,NC,12/12/2000 7:00 +Kittery,,LIGHT,ME,12/12/2000 15:45 +Miami,,,FL,12/12/2000 18:30 +Madison,RED GREEN,TEARDROP,OH,12/12/2000 18:45 +North Pole,,,AK,12/12/2000 22:00 +Concord,RED GREEN,CIRCLE,NH,12/12/2000 23:10 +Greenville,,LIGHT,NC,12/12/2000 23:30 +Mission,,TRIANGLE,KS,12/13/2000 18:50 +Cleveland,,TRIANGLE,TN,12/13/2000 20:40 +Redwood Valley,BLUE,LIGHT,CA,12/15/2000 1:09 +San Diego,,LIGHT,CA,12/15/2000 4:05 +Waldorf,GREEN,LIGHT,MD,12/15/2000 5:30 +Palo Alto,,DISK,CA,12/15/2000 9:00 +Savoonga,,DISK,AK,12/15/2000 10:00 +New York City,,VARIOUS,NY,12/15/2000 16:20 +North Pole,ORANGE,SPHERE,AK,12/15/2000 16:36 +Beaver,,DISK,PA,12/15/2000 18:25 +Beaver,RED,DISK,PA,12/15/2000 18:25 +Orlando,,TRIANGLE,FL,12/15/2000 20:00 +Austin,,,TX,12/15/2000 21:00 +Gillsville,,FIREBALL,GA,12/15/2000 21:30 +Brandon,,FIREBALL,MS,12/15/2000 22:00 +Graham,GREEN,LIGHT,WA,12/16/2000 0:20 +Pioneer,,LIGHT,TN,12/16/2000 0:45 +Athens,,LIGHT,TX,12/16/2000 19:00 +Walnut Creek,,CROSS,CA,12/16/2000 19:00 +New Port Richey,,OTHER,FL,12/17/2000 3:00 +Palm Beach,,TRIANGLE,FL,12/17/2000 3:45 +Fargher Lake,,,WA,12/17/2000 9:30 +Sebastopol,YELLOW,CIRCLE,CA,12/17/2000 18:00 +Estes Park,,CHEVRON,CO,12/17/2000 18:15 +Bolingbrook,,LIGHT,IL,12/17/2000 19:10 +Medina,ORANGE,TRIANGLE,OH,12/17/2000 19:30 +Kennewick,,LIGHT,WA,12/17/2000 20:17 +Baton Rouge,,LIGHT,LA,12/17/2000 20:40 +St. Louis,,FIREBALL,MO,12/17/2000 20:45 +Highland Park,BLUE,VARIOUS,NJ,12/18/2000 2:30 +Loon Lake,,VARIOUS,MN,12/18/2000 7:00 +Spokane,,LIGHT,WA,12/18/2000 17:00 +Enterprise,,OVAL,AL,12/18/2000 18:45 +Pittsburg,,TRIANGLE,KS,12/18/2000 21:00 +Show Low,,LIGHT,AZ,12/18/2000 21:20 +North Port,,VARIOUS,FL,12/19/2000 3:09 +Foxboro,,CIRCLE,MA,12/19/2000 16:00 +Foxboro,,OVAL,MA,12/19/2000 17:15 +Orlando,,TRIANGLE,FL,12/19/2000 20:00 +Woodland,ORANGE,LIGHT,CA,12/19/2000 23:30 +Fort Collins,,OVAL,CO,12/20/2000 0:00 +Roseville,,TRIANGLE,CA,12/20/2000 5:45 +Elizabeth City,,CHEVRON,NC,12/20/2000 17:00 +Pine Mountain,,FIREBALL,GA,12/20/2000 21:00 +Concord,,FIREBALL,CA,12/20/2000 22:00 +Monroe,,TRIANGLE,CT,12/20/2000 22:00 +Gilbert,,CHEVRON,AZ,12/21/2000 16:15 +Mojave,,TRIANGLE,CA,12/21/2000 17:54 +Gilbert,RED,CIRCLE,AZ,12/21/2000 19:05 +Bellingham,,SPHERE,WA,12/21/2000 19:10 +Amhearst,BLUE,,OH,12/21/2000 23:56 +MM 110,BLUE,CIRCLE,AZ,12/22/2000 3:00 +Kettleman City,,LIGHT,CA,12/22/2000 3:30 +Toomsuba,RED,OVAL,MS,12/23/2000 4:00 +Oliphant,,,PA,12/23/2000 8:00 +Zumbrota,,CIGAR,MN,12/23/2000 16:30 +Chandler,,LIGHT,AZ,12/23/2000 19:00 +Seattle,,,WA,12/23/2000 20:00 +Chandler,RED,LIGHT,AZ,12/23/2000 22:00 +Lake Havasu City,,EGG,AZ,12/24/2000 0:10 +Charlotte,,,NC,12/24/2000 5:00 +Moses Lake,,TRIANGLE,WA,12/24/2000 8:32 +Fortuna,ORANGE,CIRCLE,CA,12/24/2000 18:00 +Evansville,,FIREBALL,IN,12/24/2000 20:00 +St. Maries,,,ID,12/24/2000 21:20 +Plymouth,GREEN,FIREBALL,OH,12/24/2000 22:00 +Charlotte,,CROSS,NC,12/25/2000 3:00 +Miami,,EGG,FL,12/25/2000 11:30 +Tucson,,CIGAR,AZ,12/25/2000 12:20 +Canton,,FIREBALL,MI,12/25/2000 17:00 +Buffalo,,FORMATION,NY,12/25/2000 18:30 +Woodland,,FIREBALL,CA,12/25/2000 19:00 +Fallston,RED,VARIOUS,MD,12/25/2000 19:15 +Atlanta,ORANGE,LIGHT,GA,12/25/2000 20:30 +Phoenix,,,AZ,12/25/2000 21:00 +Walpole,GREEN,FIREBALL,NH,12/26/2000 18:20 +Walpole,GREEN,FIREBALL,NH,12/26/2000 18:20 +Brocton,GREEN,OVAL,MA,12/26/2000 18:23 +Greenfiled,GREEN,FIREBALL,MA,12/26/2000 18:30 +Warren,,FIREBALL,VT,12/26/2000 18:30 +Prospect Park,,OVAL,PA,12/26/2000 23:15 +Imperial,,LIGHT,AZ,12/27/2000 7:00 +Santa Paula,,LIGHT,CA,12/27/2000 10:00 +Kea'au,,SPHERE,HI,12/27/2000 15:00 +Saco,,TRIANGLE,ME,12/27/2000 22:10 +Bremerton,,OTHER,WA,12/28/2000 3:00 +Havre,,DISK,MT,12/28/2000 4:00 +Cerrilillo,,,NM,12/28/2000 11:00 +Mansfield,,FLASH,TX,12/28/2000 12:00 +Murphreesboro,,FLASH,TN,12/28/2000 12:15 +Houston,,LIGHT,TX,12/28/2000 17:09 +Monument Valley,BLUE,OTHER,UT,12/28/2000 17:51 +Holyoke,,DIAMOND,MA,12/28/2000 18:00 +Carson,,DISK,CA,12/28/2000 18:20 +Pasadena,GREEN,FIREBALL,CA,12/28/2000 19:10 +Austin,,FORMATION,TX,12/29/2000 0:00 +El Campo,,OTHER,TX,12/29/2000 9:00 +Garden Grove,ORANGE,LIGHT,CA,12/29/2000 16:10 +Berthoud Pass,,TRIANGLE,CO,12/29/2000 19:30 +Sisterdale,,DIAMOND,TX,12/29/2000 20:00 +Garden Grove,,CHEVRON,CA,12/29/2000 20:30 +Shasta Lake,BLUE,DISK,CA,12/29/2000 20:30 +Franklin,,DISK,NH,12/29/2000 20:50 +Albrightsville,,OTHER,PA,12/29/2000 21:00 +Greenville,,,SC,12/29/2000 22:00 +Eufaula,,DISK,OK,12/29/2000 23:30 +Simi Valley,,FORMATION,CA,12/30/2000 10:00 +San Francisco,,FORMATION,CA,12/30/2000 22:00 +San Francisco,,TRIANGLE,CA,12/30/2000 22:00 +Kingsville,,LIGHT,TX,12/31/2000 4:00 +Chicago,,DISK,IL,12/31/2000 11:45 +Pismo Beach,,OVAL,CA,12/31/2000 20:00 +Pismo Beach,,OVAL,CA,12/31/2000 20:00 +Lodi,,,WI,12/31/2000 20:30 +Anchorage,RED,VARIOUS,AK,12/31/2000 21:00 +Capitola,,TRIANGLE,CA,12/31/2000 22:00 +Fountain Hills,,,AZ,12/31/2000 23:00 +Grant Park,,TRIANGLE,IL,12/31/2000 23:00 +Spirit Lake,,DISK,IA,12/31/2000 23:00 +Eagle River,,,WI,12/31/2000 23:45 +Eagle River,RED,LIGHT,WI,12/31/2000 23:45 +Ybor,,OVAL,FL,12/31/2000 23:59 +Flagstaff,,,AZ,1/1/2001 0:00 +Monroeville to Seven Springs,,FIREBALL,PA,1/1/2001 0:00 +Bremerton,,DISK,WA,1/1/2001 0:01 +Lakeland,,CIRCLE,FL,1/1/2001 0:01 +Woodland,,LIGHT,CA,1/1/2001 0:02 +Sacramento,,CIRCLE,CA,1/1/2001 1:00 +Crescent City,ORANGE,FIREBALL,CA,1/1/2001 3:00 +Bellevue,,CIRCLE,WA,1/1/2001 7:30 +no data,,CIRCLE,CO,1/1/2001 7:30 +Oceanside,,LIGHT,CA,1/1/2001 18:00 +North Whitefield,,LIGHT,ME,1/1/2001 19:00 +Los Angeles,,CIRCLE,CA,1/1/2001 20:30 +Croton-on-Hudson,,FIREBALL,NY,1/1/2001 22:00 +Green Ridge,,LIGHT,MO,1/1/2001 22:00 +Kellyville,,VARIOUS,OK,1/1/2001 22:00 +Woodland,,LIGHT,CA,1/1/2001 22:07 +Miramar,,FORMATION,FL,1/1/2001 22:30 +Santa Barbara,,CHEVRON,CA,1/2/2001 0:00 +New Hampshire,BLUE,,NH,1/2/2001 2:30 +Luka,,CHEVRON,IL,1/2/2001 16:50 +Santa Barbara,,CHEVRON,CA,1/2/2001 17:00 +Merrillan,,LIGHT,WI,1/2/2001 17:05 +Seattle,,LIGHT,WA,1/2/2001 21:45 +Ponca,,TRIANGLE,AR,1/2/2001 22:00 +none,,SPHERE,TX,1/3/2001 15:00 +Fairfield,,OTHER,CA,1/3/2001 18:45 +San Clemente,,LIGHT,CA,1/3/2001 19:00 +Portland,,SPHERE,OR,1/3/2001 20:20 +Atlanta,,VARIOUS,GA,1/4/2001 1:24 +Beeville,,FLASH,TX,1/4/2001 6:00 +Anderson,,CIGAR,SC,1/4/2001 16:00 +Bouse,BLUE,LIGHT,AZ,1/4/2001 19:20 +Bouse,BLUE,LIGHT,AZ,1/4/2001 19:20 +Oakham,,LIGHT,MA,1/4/2001 20:00 +Wichita,,CIRCLE,KS,1/4/2001 20:05 +Raleigh,,LIGHT,NC,1/4/2001 22:00 +Glen Ridge,,OVAL,NJ,1/5/2001 0:10 +Punta Gorda,,LIGHT,FL,1/5/2001 5:00 +Munising,,TRIANGLE,MI,1/5/2001 10:00 +Bloomington,,TRIANGLE,IN,1/5/2001 17:00 +Las Vegas,,CIRCLE,NV,1/5/2001 17:00 +Ada,,FIREBALL,OK,1/5/2001 17:20 +Seattle,,SPHERE,WA,1/5/2001 17:30 +Ballston Lake,,TEARDROP,NY,1/5/2001 17:50 +Baytown,,CIGAR,TX,1/5/2001 18:40 +Cotton,RED ORANGE,,MN,1/5/2001 18:50 +Houston,,,TX,1/5/2001 19:00 +Jackson,,LIGHT,MI,1/5/2001 20:00 +Chandler,,LIGHT,AZ,1/5/2001 20:05 +Gilbert,,LIGHT,AZ,1/5/2001 20:18 +San Diego,RED,LIGHT,CA,1/5/2001 21:00 +La Mesa,RED,CIRCLE,CA,1/5/2001 21:45 +La Mesa,RED,CIRCLE,CA,1/5/2001 21:45 +St. Paul,,LIGHT,MN,1/5/2001 22:00 +Lebo,,TRIANGLE,KS,1/5/2001 23:53 +Edwardsville,,CIRCLE,IL,1/6/2001 0:00 +Edgewood,RED ORANGE,SPHERE,WA,1/6/2001 0:10 +Vancouver,RED,DIAMOND,WA,1/6/2001 3:00 +Gilroy,,LIGHT,CA,1/6/2001 4:45 +Payette,,LIGHT,ID,1/6/2001 7:15 +Vancouver,,OTHER,WA,1/6/2001 18:30 +Woodinvile,,LIGHT,WA,1/6/2001 18:30 +Payette,,LIGHT,ID,1/6/2001 19:00 +South Point,,SPHERE,OH,1/6/2001 20:30 +Tempe,RED,LIGHT,AZ,1/6/2001 20:30 +Tulsa,,LIGHT,OK,1/6/2001 21:15 +Miller,,TRIANGLE,MO,1/7/2001 5:00 +Seattle,,LIGHT,WA,1/7/2001 15:26 +Marietta,,LIGHT,OH,1/7/2001 18:00 +South Bay,,CONE,FL,1/7/2001 20:30 +Kamuela,,,HI,1/8/2001 5:40 +Santa Fe,,CIGAR,NM,1/8/2001 7:00 +Gilbert,,OTHER,AZ,1/8/2001 18:20 +Gillette,,VARIOUS,WY,1/8/2001 18:30 +Molalla,,LIGHT,OR,1/8/2001 20:00 +Crookston,,OTHER,MN,1/8/2001 21:00 +Fulton,RED GREEN,OVAL,AR,1/8/2001 21:00 +Williamsport,GREEN,CONE,PA,1/9/2001 8:00 +Arnolds Park,,SPHERE,IA,1/9/2001 11:00 +Spokane,,CIGAR,WA,1/9/2001 17:30 +New Richmond,,VARIOUS,WI,1/9/2001 18:00 +Tulsa,,,OK,1/9/2001 23:45 +Arden,,CIGAR,NC,1/10/2001 5:13 +New Carlisle,,LIGHT,IN,1/10/2001 6:00 +Graham,,EGG,NC,1/10/2001 12:10 +Berlin,,DISK,MA,1/10/2001 15:00 +Waldoboro,,CIGAR,ME,1/10/2001 16:30 +Bellingham,,TRIANGLE,WA,1/10/2001 17:15 +Eagle Rock,,CIGAR,CA,1/10/2001 18:20 +Littleton,,SPHERE,NH,1/10/2001 19:00 +Friendship,ORANGE,FORMATION,WI,1/10/2001 19:36 +Rockford,,LIGHT,IL,1/10/2001 21:30 +Torrance,GREEN,FLASH,CA,1/10/2001 23:00 +Nekoosa,,CIRCLE,WI,1/11/2001 1:00 +Pueblo,,FIREBALL,CO,1/11/2001 20:45 +Castle Rock,,FIREBALL,CO,1/11/2001 20:50 +Rockford,,OTHER,IL,1/11/2001 20:50 +Loves Park,,LIGHT,IL,1/11/2001 21:00 +Rockford,ORANGE,CIRCLE,IL,1/11/2001 21:00 +Rockford,YELLOW,FORMATION,IL,1/11/2001 21:00 +Rockford,,LIGHT,IL,1/11/2001 21:00 +Rockford,,LIGHT,IL,1/11/2001 21:00 +Rockford,ORANGE,LIGHT,IL,1/11/2001 21:00 +Rockford,,OTHER,IL,1/11/2001 21:00 +Rockford,,SPHERE,IL,1/11/2001 21:00 +Rockford,GREEN,LIGHT,IL,1/11/2001 21:03 +Rockford,ORANGE,LIGHT,IL,1/11/2001 21:10 +Rockford,,CIRCLE,IL,1/11/2001 21:15 +Rockford,ORANGE,CIRCLE,IL,1/11/2001 21:15 +Rockford,ORANGE,CIRCLE,IL,1/11/2001 21:15 +Rockford,,FORMATION,IL,1/11/2001 21:15 +Rockford,,FORMATION,IL,1/11/2001 21:15 +Rockford,,LIGHT,IL,1/11/2001 21:15 +Rockford,ORANGE,LIGHT,IL,1/11/2001 21:15 +Rockford,,LIGHT,IL,1/11/2001 21:20 +Boulder,,FIREBALL,CO,1/11/2001 21:30 +Rockford,RED ORANGE,FIREBALL,IL,1/11/2001 21:30 +Rockford,ORANGE,LIGHT,IL,1/11/2001 21:30 +Rockford,,LIGHT,IL,1/11/2001 21:40 +Loveland,BLUE,CIRCLE,CO,1/11/2001 21:45 +Brush,,DISK,CO,1/11/2001 21:50 +Dubois,,FIREBALL,WY,1/11/2001 21:50 +Las Vegas,,FIREBALL,NM,1/11/2001 21:50 +Pueblo,,FIREBALL,CO,1/11/2001 21:50 +Silesia,,FIREBALL,MT,1/11/2001 21:50 +Thornton,,FIREBALL,CO,1/11/2001 22:00 +Beloit,,FIREBALL,KS,1/11/2001 22:45 +Nederland,,CYLINDER,CO,1/11/2001 22:53 +Rockford,,LIGHT,IL,1/11/2001 23:00 +Fort Collins,GREEN,LIGHT,CO,1/11/2001 23:20 +Rockford,,OTHER,IL,1/11/2001 23:24 +Nederland,,CYLINDER,CO,1/11/2001 23:53 +Burbank,,VARIOUS,CA,1/12/2001 1:30 +Las Vegas,,OTHER,NV,1/12/2001 1:45 +Moultrie,,LIGHT,GA,1/12/2001 5:30 +Lancaster,,CIGAR,OH,1/12/2001 21:05 +Covington,,CIRCLE,VA,1/12/2001 21:30 +Hyde Park,,TRIANGLE,NY,1/12/2001 22:00 +Chicago,,OVAL,IL,1/13/2001 7:08 +Jayton,,DIAMOND,TX,1/13/2001 8:00 +Los Angeles,,SPHERE,CA,1/13/2001 13:00 +Cortez,,LIGHT,CO,1/13/2001 18:00 +Aurora,,LIGHT,CO,1/13/2001 19:15 +Damascus,,DISK,MD,1/13/2001 19:50 +Moses Lake,,DIAMOND,WA,1/14/2001 3:00 +Evergreen,,LIGHT,CO,1/14/2001 20:43 +Iowa City,,FORMATION,IA,1/15/2001 0:20 +Chester,,RECTANGLE,CA,1/15/2001 7:45 +Vancouver,,VARIOUS,WA,1/15/2001 19:45 +Los Angeles,,LIGHT,CA,1/15/2001 20:00 +Kent,RED BLUE,LIGHT,WA,1/16/2001 0:30 +Ithaca,,SPHERE,NY,1/16/2001 6:30 +Brimfield,,SPHERE,MA,1/17/2001 6:55 +Chatham,GREEN BLUE,OVAL,NY,1/17/2001 19:45 +West Warwick,RED,CIRCLE,RI,1/17/2001 23:22 +San Francisco,,LIGHT,CA,1/19/2001 18:00 +Hillsboro,GREEN,FIREBALL,OR,1/19/2001 18:30 +Vancouver,ORANGE,FIREBALL,WA,1/19/2001 19:00 +Omaha,,OVAL,NE,1/19/2001 21:15 +Jamaica,,,NY,1/19/2001 22:30 +Newport,,LIGHT,OR,1/20/2001 2:00 +Cumbrland,,LIGHT,ME,1/20/2001 6:00 +Poughquag,,CIRCLE,NY,1/20/2001 9:53 +Ridge,,LIGHT,NY,1/20/2001 19:00 +Kailua-Kona,BLUE,FIREBALL,HI,1/20/2001 19:15 +Portland,,OTHER,OR,1/21/2001 0:30 +St. Petersburg,,VARIOUS,FL,1/21/2001 5:30 +Los Angeles,,TRIANGLE,CA,1/21/2001 19:30 +Bayonne,,,NJ,1/21/2001 21:00 +Camano Island,,LIGHT,WA,1/22/2001 0:30 +Cumberland,,TRIANGLE,MD,1/22/2001 1:30 +Corvallis,,FIREBALL,OR,1/22/2001 18:20 +Frankford,,LIGHT,DE,1/22/2001 19:45 +Wolfeboro,,CIRCLE,NH,1/22/2001 20:00 +Sandpoint,,LIGHT,ID,1/22/2001 20:32 +Huntington,,DIAMOND,NY,1/23/2001 1:30 +Atlanta,,OTHER,GA,1/23/2001 9:00 +Tallahassee,,LIGHT,FL,1/23/2001 15:15 +Rahway,,LIGHT,NJ,1/23/2001 17:40 +Belleville,,SPHERE,WI,1/23/2001 18:15 +Martinez,,LIGHT,CA,1/23/2001 19:50 +Salisbury,,DISK,NC,1/23/2001 20:00 +Salisbury,,DISK,NC,1/23/2001 20:00 +North Pole,,DISK,AK,1/24/2001 0:00 +Mesa,,,AZ,1/24/2001 4:30 +Chicago,,OTHER,IL,1/24/2001 14:00 +Prospect Park,RED BLUE,LIGHT,PA,1/25/2001 2:30 +Avondale,,LIGHT,AZ,1/25/2001 19:00 +Porterville,,DISK,CA,1/25/2001 21:00 +Filion,,DIAMOND,MI,1/25/2001 21:03 +Sidney,BLUE,SPHERE,OH,1/25/2001 21:30 +Seattle,,FIREBALL,WA,1/25/2001 22:33 +Callahan,,FORMATION,FL,1/25/2001 22:45 +Machesney Park,,TRIANGLE,IL,1/25/2001 23:15 +Beaufort,,DIAMOND,SC,1/26/2001 0:10 +Oceanside,,TRIANGLE,CA,1/26/2001 1:30 +Branford,,EGG,CT,1/26/2001 7:45 +Rowlett,,,TX,1/26/2001 20:10 +Crescent City,,LIGHT,CA,1/26/2001 21:10 +Andover,,DISK,MA,1/26/2001 21:45 +Edmonds,,OVAL,WA,1/26/2001 22:30 +San Francisco,,DISK,CA,1/27/2001 12:00 +Glendale Heights,,LIGHT,IL,1/27/2001 19:30 +Reno,,,NV,1/27/2001 19:40 +Johnson's Creek,,LIGHT,WI,1/27/2001 20:45 +Sacramento,RED ORANGE,LIGHT,CA,1/27/2001 21:10 +Winterset,,FIREBALL,IA,1/27/2001 21:15 +Des Moines,,OTHER,IA,1/27/2001 22:00 +East Providence,,OTHER,RI,1/28/2001 9:30 +Mira Loma,BLUE,EGG,CA,1/28/2001 17:15 +Orlando,,CIGAR,FL,1/28/2001 18:30 +Aliso Viejo,,TRIANGLE,CA,1/29/2001 12:35 +Wahiawa,,OTHER,HI,1/29/2001 18:30 +Como,,TRIANGLE,MS,1/29/2001 19:20 +Houston,,DIAMOND,TX,1/29/2001 21:00 +Chicago,,SPHERE,IL,1/30/2001 2:00 +New Smyrna Beach,,FIREBALL,FL,1/30/2001 3:00 +Virginia Beach,,CYLINDER,VA,1/30/2001 12:30 +Keizer,,TRIANGLE,OR,1/30/2001 21:00 +Independence,,LIGHT,KS,1/30/2001 22:00 +Shreveport,,LIGHT,LA,1/30/2001 22:00 +San Dimas,,OVAL,CA,1/31/2001 8:00 +Santa Rosa,,CIRCLE,CA,1/31/2001 12:00 +Roanoke,,FORMATION,VA,1/31/2001 17:50 +Jerome,,FORMATION,ID,1/31/2001 21:00 +Muscatine,,,IA,1/31/2001 21:00 +Washington,ORANGE,CIRCLE,NC,1/31/2001 21:20 +Exeter,,TRIANGLE,CA,2/1/2001 3:00 +Bellevue,,CIRCLE,WA,2/1/2001 5:45 +Salem,,DISK,NH,2/1/2001 16:05 +Bowling Green,,DIAMOND,KY,2/1/2001 18:00 +Amsterdam,,FORMATION,MO,2/1/2001 20:00 +Bowling Green,,FIREBALL,KY,2/1/2001 20:00 +Colorado Springs,,SPHERE,CO,2/2/2001 18:00 +Chilhowie,,,VA,2/2/2001 19:10 +Bristol,,LIGHT,TN,2/2/2001 19:20 +Hampton,,,AR,2/2/2001 21:00 +Bullhead City,RED,LIGHT,AZ,2/2/2001 23:40 +El Dorado,,CIRCLE,CA,2/3/2001 10:30 +State College,,OVAL,PA,2/3/2001 18:00 +Wrangell,BLUE,LIGHT,AK,2/3/2001 20:15 +Covingtion,,LIGHT,TX,2/3/2001 20:30 +Canyon Lake,RED,LIGHT,TX,2/4/2001 0:01 +Wrangell,RED,LIGHT,AK,2/4/2001 8:05 +Phoenix,,RECTANGLE,AZ,2/4/2001 10:51 +San Francisco,,DISK,CA,2/4/2001 11:04 +Los Angeles area,,LIGHT,CA,2/4/2001 13:10 +Denver,,LIGHT,CO,2/4/2001 16:45 +Columbia,RED ORANGE,OVAL,KY,2/4/2001 17:00 +Corpus Christi,,CYLINDER,TX,2/4/2001 17:00 +Fairmont Township,,SPHERE,PA,2/4/2001 17:50 +Amity,,DISK,OR,2/4/2001 20:00 +Pleasant Mills,,LIGHT,IN,2/4/2001 20:00 +Las Vegas,,OTHER,NV,2/4/2001 20:45 +Greenfield Township,YELLOW,FIREBALL,PA,2/4/2001 21:00 +Bakersfield,,CONE,CA,2/4/2001 21:30 +Killeen,,OVAL,TX,2/4/2001 22:30 +Fayetteville,,OTHER,AR,2/5/2001 5:00 +Fort Lauderdale,,TRIANGLE,FL,2/5/2001 11:00 +Mira Loma,,FORMATION,CA,2/5/2001 15:30 +Riverside,,OVAL,CA,2/5/2001 17:50 +Boise,,DIAMOND,ID,2/5/2001 18:40 +Scottsdale,,LIGHT,AZ,2/5/2001 20:30 +Sierra Vista,,,AZ,2/5/2001 21:00 +Saluda,,,SC,2/5/2001 21:15 +Laurens,,LIGHT,SC,2/5/2001 22:00 +Adairville,RED YELLOW BLUE,TRIANGLE,KY,2/5/2001 23:10 +Valencia,,TRIANGLE,CA,2/6/2001 3:30 +La Pine,,RECTANGLE,OR,2/6/2001 7:00 +Dallas,,VARIOUS,TX,2/6/2001 17:00 +Redmond,RED BLUE,TRIANGLE,WA,2/6/2001 18:10 +New Orleans,,CYLINDER,LA,2/6/2001 18:45 +Phoenix,,DISK,AZ,2/6/2001 19:30 +Milwaukee,RED,CIRCLE,WI,2/6/2001 20:30 +Clackamas,,,OR,2/6/2001 20:42 +Palestine,RED,LIGHT,TX,2/6/2001 22:15 +Laramie,,LIGHT,WY,2/7/2001 10:00 +Bowling Green,,VARIOUS,KY,2/7/2001 14:23 +Linthicum,,RECTANGLE,MD,2/7/2001 16:00 +Old Hickory,,CIRCLE,TN,2/7/2001 18:05 +Wheaton,,VARIOUS,MD,2/7/2001 18:35 +South Egremont,RED,VARIOUS,MA,2/7/2001 19:00 +Raleigh,,LIGHT,NC,2/7/2001 19:30 +Boston,,LIGHT,MA,2/7/2001 20:45 +Ocala,,,FL,2/8/2001 0:00 +Oakton,,LIGHT,VA,2/8/2001 6:30 +Okmulgee,,TRIANGLE,OK,2/8/2001 11:00 +Manchester,,FIREBALL,TN,2/8/2001 18:36 +Lexington,RED,TRIANGLE,KY,2/8/2001 18:50 +Ventura,,OTHER,CA,2/8/2001 19:00 +Lancaster,,SPHERE,OH,2/8/2001 20:00 +Rochester,,LIGHT,NY,2/8/2001 20:15 +Macon,,OVAL,GA,2/8/2001 20:30 +Wheaton,,,IL,2/9/2001 3:00 +Kingston Springs,,LIGHT,TN,2/9/2001 13:00 +Portland,,LIGHT,OR,2/9/2001 20:00 +Kanab,RED YELLOW BLUE,TRIANGLE,UT,2/9/2001 20:30 +Moravian Falls,BLUE,SPHERE,NC,2/10/2001 0:00 +Seattle,,CIRCLE,WA,2/10/2001 0:10 +San Diego,,FIREBALL,CA,2/10/2001 0:30 +Zimmerman,BLUE,TRIANGLE,MN,2/10/2001 3:25 +Selinsgrove,,VARIOUS,PA,2/10/2001 16:40 +Clingman's Dome,,RECTANGLE,TN,2/10/2001 17:30 +Abita Springs,,TRIANGLE,LA,2/10/2001 21:00 +Tell City,,DISK,IN,2/10/2001 21:00 +Rockford,,LIGHT,IL,2/10/2001 21:30 +Rockford,ORANGE,FORMATION,IL,2/10/2001 21:50 +Rockford,ORANGE,,IL,2/10/2001 22:15 +Rockford,,FORMATION,IL,2/10/2001 22:25 +Rockford,YELLOW,CIRCLE,IL,2/10/2001 22:30 +Rockford,,FIREBALL,IL,2/10/2001 22:30 +Mt. Pleasant,,,TX,2/11/2001 1:30 +Kansas City,RED GREEN,TRIANGLE,MO,2/11/2001 8:50 +Gulf Breeze,,OVAL,FL,2/11/2001 18:00 +Phoenix,,LIGHT,AZ,2/11/2001 19:00 +Ballston Spa,,LIGHT,NY,2/11/2001 20:30 +Chatham,,SPHERE,VA,2/11/2001 22:00 +Virginia Beach,,DIAMOND,VA,2/11/2001 22:35 +Medford,,TRIANGLE,OR,2/12/2001 0:00 +Pompano Beach,,,FL,2/12/2001 2:30 +Vancouver,,EGG,WA,2/12/2001 9:45 +Wadsworth,,TRIANGLE,OH,2/12/2001 20:12 +Olympia,,LIGHT,WA,2/12/2001 20:50 +Cottage Grove,,DISK,OR,2/12/2001 22:30 +Boston,,LIGHT,MA,2/13/2001 13:25 +Rochester,,LIGHT,NY,2/13/2001 18:20 +Springfield,RED,CIRCLE,OR,2/13/2001 19:00 +Tucson,,OVAL,AZ,2/13/2001 19:30 +Castle Creek,,OTHER,NY,2/13/2001 22:00 +Austin,,VARIOUS,TX,2/14/2001 1:00 +New Rochelle,,DIAMOND,NY,2/14/2001 4:00 +Chatham,,OTHER,VA,2/14/2001 6:48 +Oradell,,OTHER,NJ,2/14/2001 8:45 +Fortuna,ORANGE,LIGHT,CA,2/14/2001 18:55 +Brawley,GREEN,TRIANGLE,CA,2/14/2001 19:02 +Ninety Six,,LIGHT,SC,2/14/2001 22:00 +Wichita,GREEN,FLASH,KS,2/15/2001 0:05 +Portland,,OVAL,OR,2/15/2001 1:00 +Spartanburg,,CYLINDER,SC,2/15/2001 11:16 +Pownal,ORANGE,LIGHT,VT,2/15/2001 20:05 +Sullivan,,LIGHT,WI,2/15/2001 23:00 +Sarasota,,SPHERE,FL,2/16/2001 12:15 +Kingsford,,LIGHT,MI,2/16/2001 18:20 +Lemoore,,OTHER,CA,2/16/2001 19:00 +China,,LIGHT,TX,2/16/2001 19:30 +Burbank,,LIGHT,CA,2/16/2001 20:20 +Deland,RED,LIGHT,FL,2/16/2001 20:50 +Mesa,,EGG,AZ,2/16/2001 22:17 +Nashville,,CROSS,TN,2/17/2001 16:00 +Woodland Park,,RECTANGLE,CO,2/17/2001 19:10 +Kenosha,,LIGHT,WI,2/17/2001 20:30 +Los Angeles,,DIAMOND,CA,2/18/2001 14:30 +Cabazon,,CIGAR,CA,2/18/2001 17:00 +Irvington,,LIGHT,AL,2/18/2001 18:25 +Long Island,RED,DIAMOND,NY,2/18/2001 18:58 +Mead Valley,,TEARDROP,CA,2/18/2001 19:00 +Redlands,RED,OVAL,CA,2/18/2001 19:00 +Riverside,RED,DISK,CA,2/18/2001 19:00 +Rochester,,FORMATION,NY,2/18/2001 21:05 +Colorado Springs,,TRIANGLE,CO,2/18/2001 21:17 +Scottsdale,,SPHERE,AZ,2/18/2001 22:00 +Lilburn,,CIRCLE,GA,2/19/2001 5:37 +Irwin,,LIGHT,PA,2/19/2001 18:48 +Carmel,,LIGHT,IN,2/19/2001 19:00 +Cutchogue,,DIAMOND,NY,2/19/2001 19:30 +Cayuga,,,IN,2/19/2001 20:00 +Rockville,,CIRCLE,VA,2/19/2001 21:00 +Sedalia,,VARIOUS,MO,2/19/2001 21:30 +Sequim,,CIRCLE,WA,2/19/2001 22:30 +Farmington,GREEN,FIREBALL,NM,2/20/2001 1:15 +Kearny,,LIGHT,AZ,2/20/2001 13:45 +Lewiston,,OVAL,ID,2/20/2001 17:15 +Las Vegas,,,NV,2/20/2001 19:10 +Whittier,,OTHER,CA,2/20/2001 21:00 +Chardon,,SPHERE,OH,2/20/2001 23:00 +Cottage Grove,,VARIOUS,OR,2/21/2001 0:00 +Mesa,,DIAMOND,AZ,2/21/2001 1:00 +Grand Ronde,,DISK,OR,2/21/2001 2:47 +Norwich,YELLOW,OVAL,CT,2/21/2001 6:10 +Fishkill,,DIAMOND,NY,2/21/2001 20:15 +Rogue River,,DISK,OR,2/21/2001 20:45 +Rogue River,,DISK,OR,2/21/2001 20:45 +Leesburg,,TRIANGLE,VA,2/21/2001 22:00 +Bowmansville,,,PA,2/22/2001 5:30 +Ruston,RED BLUE,LIGHT,LA,2/22/2001 8:00 +Murdock,,OTHER,FL,2/22/2001 17:19 +Millsap,YELLOW GREEN,CIGAR,TX,2/22/2001 19:20 +Carroll,ORANGE,LIGHT,IA,2/22/2001 19:45 +Dearborn,,FORMATION,MI,2/22/2001 20:00 +Rogue River,,DIAMOND,OR,2/22/2001 20:15 +Rogue River,,DIAMOND,OR,2/22/2001 20:15 +Rogue River,,DIAMOND,OR,2/22/2001 20:15 +Toledo,,OTHER,OH,2/22/2001 23:30 +no data,,,VT,2/23/2001 0:00 +Fillmore,,DISK,CA,2/23/2001 17:00 +Poteau,,,OK,2/23/2001 17:15 +Stamford,BLUE,TRIANGLE,CT,2/23/2001 20:35 +Long Beach,,CIRCLE,MS,2/23/2001 21:00 +Cincinnati,,DISK,OH,2/23/2001 22:00 +Fredricktown,,TRIANGLE,PA,2/24/2001 4:00 +Lynnwood,RED ORANGE,SPHERE,WA,2/24/2001 16:00 +Castle Rock,,LIGHT,WA,2/24/2001 19:30 +Arlington,,CIRCLE,WA,2/24/2001 20:40 +Seattle,,CHEVRON,WA,2/24/2001 22:30 +Baltimore,,FORMATION,MD,2/24/2001 23:00 +Kettering,RED,LIGHT,OH,2/24/2001 23:32 +Sugar Land,,SPHERE,TX,2/25/2001 1:00 +Plymouth,,,MN,2/25/2001 1:16 +Emporia,,CIRCLE,KS,2/25/2001 4:00 +Hartsville,,LIGHT,TN,2/25/2001 16:00 +Los Angeles,,TRIANGLE,CA,2/25/2001 16:00 +Covington,,EGG,TX,2/25/2001 17:45 +Salisbury,,CIRCLE,NC,2/25/2001 18:38 +Bath,,FORMATION,PA,2/25/2001 21:00 +Rio Oso,,TRIANGLE,CA,2/25/2001 21:27 +Charlotte,RED,,NC,2/26/2001 1:15 +Corvallis,GREEN,,OR,2/26/2001 1:25 +Portland,,CHEVRON,OR,2/26/2001 1:34 +Sun City,,LIGHT,AZ,2/26/2001 20:30 +Wadsworth,,FORMATION,OH,2/26/2001 20:30 +Levittown,,LIGHT,PA,2/26/2001 22:50 +Duvall,YELLOW,EGG,WA,2/27/2001 1:35 +Wilbur,,CIRCLE,WA,2/27/2001 20:00 +Becket,,DISK,MA,2/27/2001 23:15 +Browns Mills,,LIGHT,NJ,2/28/2001 19:15 +Vincennes,,LIGHT,IN,2/28/2001 20:00 +Chiloquin,,TRIANGLE,OR,3/1/2001 2:00 +Las Vegas,,SPHERE,NV,3/1/2001 2:00 +Gates,,TRIANGLE,OR,3/1/2001 4:50 +New York City,,OVAL,NY,3/1/2001 10:00 +Indialantic,BLUE,SPHERE,FL,3/1/2001 19:00 +Bothell,,CIRCLE,WA,3/1/2001 19:30 +Henderson,ORANGE,LIGHT,NV,3/1/2001 19:45 +Clarion,,DISK,PA,3/1/2001 22:00 +Madison,,CIRCLE,AL,3/1/2001 23:00 +Seattle,,CIRCLE,WA,3/1/2001 23:15 +Las Vegas,,CIRCLE,NV,3/2/2001 2:00 +St. George,,OVAL,SC,3/2/2001 12:31 +Puyallup,,EGG,WA,3/2/2001 20:24 +Hooper,,TRIANGLE,NE,3/2/2001 21:37 +Pueblo,,CYLINDER,CO,3/2/2001 22:00 +Bakersfield,,CIRCLE,CA,3/3/2001 2:40 +Pontotoc,,LIGHT,MS,3/3/2001 19:00 +Madison,,LIGHT,WI,3/3/2001 21:15 +Chandler,ORANGE,LIGHT,AZ,3/3/2001 21:30 +Springdale,,DISK,AR,3/3/2001 22:45 +Zanesville,,CIRCLE,OH,3/4/2001 14:00 +Belleville,RED BLUE,OTHER,WI,3/4/2001 19:45 +Burton,,LIGHT,TX,3/4/2001 20:00 +Roscoe,,CIGAR,TX,3/5/2001 15:30 +Belleville,,,WI,3/5/2001 18:40 +Granite Falls,,FIREBALL,WA,3/5/2001 19:00 +Belleville,ORANGE YELLOW,FORMATION,WI,3/5/2001 20:33 +Duluth,,TRIANGLE,MN,3/5/2001 21:30 +Frazer,,LIGHT,PA,3/6/2001 1:15 +Webster,,TRIANGLE,TX,3/6/2001 10:30 +Weiser,,DISK,ID,3/6/2001 18:00 +Belleville,,OTHER,WI,3/6/2001 18:50 +Gillette,BLUE,TRIANGLE,WY,3/6/2001 19:00 +Marcy,RED GREEN,DISK,NY,3/6/2001 19:00 +Belleville,ORANGE YELLOW,LIGHT,WI,3/6/2001 20:02 +Belleville,ORANGE YELLOW,LIGHT,WI,3/6/2001 20:30 +Rockford,,CIRCLE,IL,3/6/2001 22:15 +Elk City,,FIREBALL,OK,3/6/2001 23:18 +Forestville,,OTHER,CA,3/6/2001 23:56 +Santa Monica,,FIREBALL,CA,3/7/2001 0:02 +Duvall,,FIREBALL,WA,3/7/2001 1:04 +Perry,,TRIANGLE,FL,3/7/2001 5:50 +Saranac,,LIGHT,NY,3/7/2001 18:45 +Hamburg,RED YELLOW GREEN,DISK,NY,3/7/2001 21:30 +Clover,,,VA,3/8/2001 0:00 +Wayland,,LIGHT,MA,3/8/2001 1:30 +Portland,,SPHERE,OR,3/8/2001 17:30 +Mt. Lincoln,,FLASH,VT,3/8/2001 19:45 +Lucedale,,LIGHT,MS,3/8/2001 20:00 +Massillon,RED,CIGAR,OH,3/8/2001 20:30 +Las Vegas,,OTHER,NV,3/8/2001 21:15 +Las Vegas,,OVAL,NV,3/8/2001 22:30 +Huntington,,CIRCLE,WV,3/8/2001 23:30 +Shippensburg,,DISK,PA,3/8/2001 23:59 +Simi Valley,GREEN,FIREBALL,CA,3/9/2001 3:36 +Kansas City,,,MO,3/9/2001 11:15 +Belleville,,OTHER,WI,3/9/2001 19:00 +Bozeman,RED,OVAL,MT,3/9/2001 20:19 +Seattle,,CIRCLE,WA,3/10/2001 17:57 +New Washington,,,OH,3/10/2001 18:00 +Union,RED,CYLINDER,WA,3/10/2001 18:00 +Morrilton,,,AR,3/10/2001 19:00 +Venice,,CYLINDER,CA,3/10/2001 19:00 +Beaumont,RED,DIAMOND,CA,3/10/2001 21:35 +West Middlesex,,SPHERE,PA,3/10/2001 22:30 +Beaverton,ORANGE,LIGHT,OR,3/10/2001 23:30 +Clifton,,,NJ,3/10/2001 23:30 +Sarasota,,DISK,FL,3/11/2001 9:45 +Marana,,CHEVRON,AZ,3/11/2001 14:00 +Avra Valley,,CHEVRON,AZ,3/11/2001 15:00 +Livonia,,LIGHT,NY,3/11/2001 19:30 +Jonesboro,,DIAMOND,AR,3/11/2001 21:45 +Baton Rouge,,TRIANGLE,LA,3/12/2001 2:30 +Dublin,,CIGAR,CA,3/12/2001 7:45 +Hobbs,,FLASH,NM,3/12/2001 19:50 +Friendswood,,,TX,3/12/2001 20:00 +Las Vegas,ORANGE,LIGHT,NV,3/12/2001 20:22 +Miami,,LIGHT,FL,3/12/2001 20:25 +Beaverton,RED,LIGHT,OR,3/12/2001 21:00 +Reliance,,LIGHT,TN,3/12/2001 21:00 +Granite Falls,GREEN,LIGHT,WA,3/12/2001 22:05 +Granite Falls,,LIGHT,WA,3/12/2001 22:15 +Antioch,RED GREEN,OTHER,CA,3/12/2001 22:30 +Collinsville,,FIREBALL,IL,3/12/2001 22:53 +Irvine,ORANGE,,CA,3/13/2001 17:20 +Timbo,,CONE,AR,3/13/2001 18:20 +Timbo,,OTHER,AR,3/13/2001 18:20 +Pontotoc,,LIGHT,MS,3/13/2001 19:00 +Salt Lake City,,,UT,3/13/2001 19:00 +Wagontire,,FLASH,OR,3/13/2001 19:30 +Leon,,DISK,KS,3/13/2001 21:00 +Beaverton,YELLOW,LIGHT,OR,3/13/2001 21:15 +Beaverton,ORANGE,LIGHT,OR,3/13/2001 21:30 +Granite Falls,,FLASH,WA,3/13/2001 22:00 +Ketchum,RED,,ID,3/13/2001 22:00 +Roseburg,YELLOW,,OR,3/13/2001 22:00 +Woodinville,,SPHERE,WA,3/13/2001 22:50 +Milwaukee,,CIRCLE,WI,3/13/2001 23:00 +Bellevue,ORANGE,LIGHT,WA,3/13/2001 23:50 +Seattle,ORANGE,CIGAR,WA,3/13/2001 23:50 +Seattle,,FIREBALL,WA,3/13/2001 23:50 +Seattle,,LIGHT,WA,3/13/2001 23:51 +Shoreline,ORANGE,CIRCLE,WA,3/13/2001 23:51 +Las Vegas,,DISK,NV,3/14/2001 0:32 +Elizabethtown,,TRIANGLE,KY,3/14/2001 1:00 +Falls Church,,,VA,3/14/2001 2:10 +Wichita,,OTHER,KS,3/14/2001 5:30 +Redding,,LIGHT,CA,3/14/2001 18:30 +Atlanta,,LIGHT,GA,3/14/2001 19:15 +Munroe Falls,,VARIOUS,OH,3/14/2001 20:30 +Lawrenceville,,EGG,NJ,3/14/2001 20:45 +San Francisco,,OTHER,CA,3/14/2001 21:00 +Chandler,,TRIANGLE,AZ,3/14/2001 22:37 +Seattle,,,WA,3/15/2001 3:00 +Utah,,OVAL,UT,3/15/2001 3:00 +Minneapolis,,VARIOUS,MN,3/15/2001 6:38 +Benson,,CIGAR,AZ,3/15/2001 10:00 +Wellpinit,RED,FIREBALL,WA,3/15/2001 10:30 +Gilbert,,FLASH,AZ,3/15/2001 15:45 +Oklahoma City,,TRIANGLE,OK,3/15/2001 16:30 +Arlington,,FIREBALL,WA,3/15/2001 16:31 +San Francisco,,OTHER,CA,3/15/2001 18:00 +San Jose,,VARIOUS,CA,3/15/2001 18:01 +Sun City,,CHEVRON,AZ,3/15/2001 19:42 +Frontenac,RED,,MN,3/15/2001 21:00 +Atwood,,,IL,3/15/2001 22:00 +Wilkes-Barre,,TRIANGLE,PA,3/15/2001 23:46 +Washougal,,LIGHT,WA,3/16/2001 1:35 +Cabot,,TRIANGLE,AR,3/16/2001 19:45 +Huntsville,,DISK,TX,3/17/2001 1:45 +Orchard Park,,CIGAR,NY,3/17/2001 2:46 +San Jose,,TRIANGLE,CA,3/17/2001 14:00 +Gilbert,,CYLINDER,AZ,3/17/2001 15:00 +Rockford,,,IL,3/18/2001 0:00 +Goetzville,,LIGHT,MI,3/18/2001 0:30 +Orangevale,,FIREBALL,CA,3/18/2001 3:00 +Whittier,,LIGHT,CA,3/18/2001 5:04 +Albion,,OVAL,IN,3/18/2001 14:15 +New York City,,CIRCLE,NY,3/18/2001 14:50 +Kelseyville,,CIRCLE,CA,3/18/2001 15:00 +Machesney Park,,FIREBALL,IL,3/18/2001 19:20 +Hazlet,,LIGHT,NJ,3/18/2001 20:00 +Kannapolis,YELLOW,,NC,3/18/2001 20:36 +Las Vegas,,LIGHT,NV,3/18/2001 21:00 +Rockford,,FORMATION,IL,3/18/2001 21:15 +Rockford,,LIGHT,IL,3/18/2001 21:15 +Rockford,ORANGE,LIGHT,IL,3/18/2001 21:30 +Rockford,YELLOW,LIGHT,IL,3/18/2001 21:45 +Rockford,,,IL,3/18/2001 22:40 +Donora,,LIGHT,PA,3/18/2001 23:15 +Los Angeles,,OTHER,CA,3/19/2001 1:46 +Austin,ORANGE,OTHER,TX,3/19/2001 18:01 +Austin,,FIREBALL,TX,3/19/2001 18:50 +East Dover,GREEN,LIGHT,VT,3/19/2001 19:10 +Canterbury,,VARIOUS,NH,3/19/2001 19:15 +Raleigh,,LIGHT,NC,3/19/2001 19:29 +Tolleson,,LIGHT,AZ,3/19/2001 19:30 +Saukville,,,WI,3/19/2001 20:00 +Olympia,,LIGHT,WA,3/19/2001 21:00 +Wisconsin Dells,ORANGE,LIGHT,WI,3/19/2001 21:00 +Roger's Mesa,YELLOW,LIGHT,CO,3/19/2001 21:15 +Wilkes-Barre,RED GREEN,TRIANGLE,PA,3/19/2001 22:56 +Pittsburgh,,CIRCLE,PA,3/19/2001 23:59 +Klamath Falls,RED,FLASH,OR,3/20/2001 3:00 +Austin,,CIGAR,TX,3/20/2001 10:15 +Hamden,,OTHER,CT,3/20/2001 16:00 +Newington,,CIRCLE,CT,3/20/2001 16:00 +Portsmouth,,CHEVRON,RI,3/20/2001 19:30 +Detroit,,TRIANGLE,MI,3/20/2001 21:45 +Southern Pines,,FLASH,NC,3/20/2001 23:45 +Port Carbon,,LIGHT,PA,3/21/2001 0:00 +Moretown,GREEN,FORMATION,VT,3/21/2001 2:30 +Arlington,,,TX,3/21/2001 3:21 +Hamden,,OVAL,CT,3/21/2001 18:50 +Mulberry,ORANGE,FLASH,IN,3/21/2001 19:00 +Rockaway Beach,,,OR,3/21/2001 19:50 +La Pine,,TRIANGLE,OR,3/21/2001 22:30 +Eugene,,FIREBALL,OR,3/21/2001 23:10 +Between Orlando,,TRIANGLE,FL,3/22/2001 0:30 +Las Vegas,,FORMATION,NV,3/22/2001 0:40 +Moretown,GREEN,FORMATION,VT,3/22/2001 2:30 +Tacoma,,OTHER,WA,3/22/2001 3:30 +Hartford,,,CT,3/22/2001 4:30 +Russell Springs,,TRIANGLE,KY,3/22/2001 6:00 +Jackson,,OVAL,MS,3/22/2001 18:30 +Warren,,,MI,3/22/2001 20:10 +Cleveland,,FIREBALL,OH,3/22/2001 20:17 +North Canton,,CYLINDER,OH,3/22/2001 20:50 +Princeton,RED,,WI,3/22/2001 21:00 +Dublin,,DISK,CA,3/23/2001 7:30 +Hot Springs,,DISK,AR,3/23/2001 19:33 +Blythe,,FIREBALL,CA,3/23/2001 20:30 +Springfield,,,VA,3/23/2001 20:50 +Centralia,,TRIANGLE,WA,3/23/2001 21:00 +Granite Bay,,CHEVRON,CA,3/24/2001 0:06 +Gainesville,,LIGHT,FL,3/24/2001 2:00 +Fort Collins,,OTHER,CO,3/24/2001 19:50 +Phoenix,,VARIOUS,AZ,3/25/2001 3:30 +Black Canyon,,,AZ,3/25/2001 3:50 +Prescott,,OVAL,AZ,3/25/2001 11:05 +Hayward,,DISK,CA,3/25/2001 13:30 +Jefferson City,RED,CROSS,MO,3/25/2001 17:00 +Chicago,,CHEVRON,IL,3/25/2001 19:00 +Loganville,BLUE,LIGHT,GA,3/25/2001 19:35 +Morgantown,,DISK,WV,3/25/2001 21:03 +Dutzow,,OTHER,MO,3/25/2001 22:00 +Loveland,RED YELLOW GREEN,LIGHT,OH,3/25/2001 23:00 +no data,,,GA,3/26/2001 0:00 +Minneapolis,,LIGHT,MN,3/26/2001 4:40 +San Jose,,DISK,CA,3/26/2001 13:00 +Valencia,,LIGHT,CA,3/26/2001 20:10 +Wauconda,,LIGHT,WA,3/26/2001 20:10 +Valentine,,CIGAR,NE,3/26/2001 21:00 +San Bernardino Co.,,CONE,CA,3/26/2001 21:30 +Durham,RED,TRIANGLE,NC,3/26/2001 21:35 +Los Angeles,,FLASH,CA,3/26/2001 22:00 +Lowman,,DISK,NY,3/27/2001 21:00 +Phoenix,YELLOW,LIGHT,AZ,3/27/2001 21:30 +Las Vegas,,FORMATION,NV,3/27/2001 23:58 +Beloit,YELLOW,FIREBALL,WI,3/28/2001 0:30 +Bouse,,FORMATION,AZ,3/28/2001 0:45 +Mahnomen,,OVAL,MN,3/28/2001 1:35 +Savannah,,LIGHT,GA,3/28/2001 3:42 +Springview,,,NE,3/28/2001 21:00 +Taylorville,,TRIANGLE,IL,3/28/2001 22:00 +Bouse,,FORMATION,AZ,3/29/2001 0:24 +Orlando,RED,LIGHT,FL,3/29/2001 2:00 +Apollo,,LIGHT,PA,3/29/2001 2:30 +Draper,,OTHER,UT,3/29/2001 13:49 +Washington,,OTHER,MO,3/29/2001 15:30 +Fresno,,SPHERE,CA,3/29/2001 17:35 +Castle Rock,,TRIANGLE,WA,3/29/2001 20:09 +Las Vegas,RED,FORMATION,NV,3/29/2001 20:30 +Denver,,TRIANGLE,PA,3/30/2001 1:12 +Fort Worth,,DISK,TX,3/30/2001 9:28 +Phoenix,,OVAL,AZ,3/30/2001 12:35 +Disputanta,,DIAMOND,VA,3/30/2001 21:30 +Madison,,LIGHT,WI,3/30/2001 21:35 +Nipomo,,,CA,3/30/2001 22:00 +Palmer,,LIGHT,AK,3/30/2001 22:00 +Orofino,RED,,ID,3/30/2001 22:30 +Cloudcroft,RED,LIGHT,NM,3/30/2001 23:00 +Dublin,,CIGAR,CA,3/31/2001 7:40 +Lucerne Valley,,OTHER,CA,3/31/2001 10:45 +San Bernardino,,FIREBALL,CA,3/31/2001 19:00 +Morrilton,,DIAMOND,AR,3/31/2001 20:00 +Greenfield,,FLASH,WI,3/31/2001 21:10 +Port Angeles,,,WA,4/1/2001 3:30 +Pelican Rapids,,OTHER,MN,4/1/2001 9:37 +Tucson,,DISK,AZ,4/1/2001 17:05 +Stillwater,,,MN,4/1/2001 19:05 +Moscow,,VARIOUS,ID,4/1/2001 20:30 +Pahrump,,LIGHT,NV,4/1/2001 21:00 +Stillwater,,TRIANGLE,MN,4/1/2001 21:00 +Woodland,,OVAL,WA,4/1/2001 21:00 +Cedar Rapids,,TRIANGLE,IA,4/1/2001 22:00 +Vestal,GREEN,LIGHT,NY,4/2/2001 0:05 +Anderson,BLUE,LIGHT,SC,4/2/2001 7:25 +Green River,,TRIANGLE,UT,4/2/2001 9:00 +Salem,,OTHER,OR,4/2/2001 20:45 +Barre,ORANGE,TRIANGLE,NY,4/2/2001 22:00 +Isanti,,TEARDROP,MN,4/3/2001 11:53 +Corning,,CIRCLE,CA,4/3/2001 15:40 +Corning,,CIRCLE,CA,4/3/2001 15:40 +Owasso,,OTHER,OK,4/3/2001 19:30 +Granby,GREEN,FLASH,CT,4/3/2001 20:05 +Issaquah,,CIRCLE,WA,4/3/2001 20:30 +Bigfork,,LIGHT,MT,4/3/2001 21:00 +Eden Prairie,RED,CIRCLE,MN,4/4/2001 16:00 +Sedona,YELLOW,OTHER,AZ,4/4/2001 19:00 +Charlottesville,,OTHER,VA,4/4/2001 20:30 +Acme,,DIAMOND,PA,4/4/2001 21:30 +Westville,,DIAMOND,IN,4/4/2001 23:30 +Franklin,,DISK,PA,4/4/2001 23:47 +Santee,,,CA,4/5/2001 0:53 +Rancho Bernardo,,LIGHT,CA,4/5/2001 1:05 +Miller Place,,DISK,NY,4/5/2001 4:30 +Wildwood Crest,,OTHER,NJ,4/5/2001 11:45 +Butte,,FLASH,NE,4/5/2001 21:00 +Florissant,RED,TRIANGLE,MO,4/5/2001 21:56 +Jonesboro,,FLASH,GA,4/6/2001 2:00 +Mount Carmel,ORANGE,FIREBALL,IL,4/6/2001 21:00 +Hamersville,GREEN,LIGHT,OH,4/7/2001 0:05 +Pepper Pike,,CIGAR,OH,4/7/2001 15:30 +Canton,BLUE,EGG,OH,4/7/2001 17:00 +Canton,,TRIANGLE,IL,4/7/2001 19:00 +New Brunswick,BLUE,DISK,NJ,4/7/2001 20:21 +Las Vegas,,FORMATION,NV,4/7/2001 21:00 +Milwaukee,,CIGAR,WI,4/7/2001 22:15 +Antioch,,EGG,CA,4/7/2001 23:23 +Lackawaxen,,LIGHT,PA,4/8/2001 2:27 +Little Dixie Lake,,,MO,4/8/2001 11:00 +Portage,RED BLUE,,IN,4/8/2001 20:00 +Ormond Beach,RED,LIGHT,FL,4/8/2001 20:30 +Battle Ground,ORANGE,FIREBALL,WA,4/9/2001 0:12 +Talkeetna,,TRIANGLE,AK,4/9/2001 5:22 +Corvallis,,FIREBALL,OR,4/9/2001 22:00 +Las Vegas,,OTHER,NV,4/10/2001 16:30 +Bristol,,VARIOUS,CT,4/10/2001 21:09 +Riverview,,DISK,MI,4/11/2001 1:00 +College Park,GREEN,,MD,4/11/2001 12:00 +Los Angeles,,LIGHT,CA,4/11/2001 12:15 +Marianna,,OVAL,FL,4/11/2001 21:00 +DePere,,DISK,WI,4/11/2001 22:45 +Bay Mills Township,,FIREBALL,MI,4/12/2001 3:33 +Houston,,LIGHT,TX,4/12/2001 4:17 +Little Falls,,TRIANGLE,NY,4/12/2001 23:30 +Rothschild,,,WI,4/13/2001 0:00 +Rothschild,,,WI,4/13/2001 0:00 +Evansville,,DISK,IN,4/13/2001 2:37 +Baltimore,,SPHERE,MD,4/13/2001 13:00 +Capitola,,TRIANGLE,CA,4/13/2001 13:00 +Bentonville,,,AR,4/13/2001 21:00 +East Lansing,,FORMATION,MI,4/13/2001 22:30 +Kensington,,CIGAR,CT,4/13/2001 22:30 +Worcester,RED,CIRCLE,MA,4/13/2001 22:30 +Middlefield,,LIGHT,OH,4/13/2001 23:37 +Meridian,,FIREBALL,TX,4/14/2001 0:30 +Reading,,OVAL,PA,4/14/2001 2:30 +Tempe,,CIRCLE,AZ,4/14/2001 16:30 +Tempe,,DISK,AZ,4/14/2001 16:30 +Brick,,TRIANGLE,NJ,4/14/2001 21:45 +Gaylord,,OVAL,MI,4/14/2001 22:15 +Long Beach,,CIRCLE,NY,4/14/2001 22:30 +Burnt Hills,,,NY,4/15/2001 0:00 +San Antonio,BLUE,SPHERE,TX,4/15/2001 0:25 +Schaumburg,,DIAMOND,IL,4/15/2001 2:20 +Las Vegas,,CIRCLE,NV,4/15/2001 10:00 +Soap Lake,,TRIANGLE,WA,4/15/2001 10:30 +Lower Lake,,SPHERE,CA,4/15/2001 12:00 +Lewisburg,,LIGHT,WV,4/15/2001 14:00 +Eau Claire,,OVAL,WI,4/15/2001 14:30 +Hanford Nuclear Reservation,,SPHERE,WA,4/15/2001 14:30 +Batavia,,FIREBALL,IL,4/15/2001 20:30 +Mansfield,,,LA,4/15/2001 22:00 +Black Forest,,TRIANGLE,CO,4/15/2001 22:25 +Grand Prairie,,,TX,4/15/2001 22:30 +Mount Juliet,RED,LIGHT,TN,4/15/2001 22:30 +Briarwood,,OVAL,NY,4/16/2001 4:00 +Murfreesboro,,DISK,TN,4/16/2001 7:00 +New York City,,DISK,NY,4/16/2001 11:00 +Tampa,,OTHER,FL,4/16/2001 12:55 +New York City,,SPHERE,NY,4/16/2001 13:00 +Denver,,VARIOUS,CO,4/16/2001 23:00 +Rancho Santa Margarita,,,CA,4/17/2001 10:20 +Los Angeles,,SPHERE,CA,4/17/2001 16:00 +Yorba Linda,,CONE,CA,4/17/2001 16:35 +Cave Creek,,TRIANGLE,AZ,4/17/2001 21:24 +Illinois State line,,CIRCLE,IN,4/18/2001 0:00 +Seward,,TRIANGLE,AK,4/18/2001 1:00 +El Cajon,,CHEVRON,CA,4/18/2001 1:30 +Houston,,OVAL,TX,4/18/2001 16:35 +Denver,,CIRCLE,CO,4/18/2001 18:30 +Lame Deer,,DISK,MT,4/18/2001 21:00 +Poipu,,LIGHT,HI,4/18/2001 21:07 +Lincoln,GREEN,FIREBALL,NE,4/18/2001 21:20 +Omaha,GREEN,FIREBALL,NE,4/18/2001 21:21 +Grimes,,LIGHT,IA,4/18/2001 22:00 +McLouth,,CIRCLE,KS,4/18/2001 23:30 +Middletown,,TRIANGLE,IN,4/19/2001 4:30 +Croswell,,OTHER,MI,4/19/2001 22:25 +Cadiz,,LIGHT,OH,4/19/2001 23:55 +Reidsville,,CIGAR,NC,4/20/2001 1:30 +Owings Mills,,FLASH,MD,4/20/2001 2:30 +Reisterstown,,FIREBALL,MD,4/20/2001 2:33 +Moscow,,VARIOUS,ID,4/20/2001 10:00 +Moses Lake,,TRIANGLE,WA,4/20/2001 12:00 +Bellingham,,RECTANGLE,WA,4/20/2001 18:00 +Watertown,ORANGE,SPHERE,WI,4/20/2001 21:00 +Columbus,,DIAMOND,OH,4/20/2001 22:30 +Livermore,,OTHER,CA,4/21/2001 1:30 +Ionia,,LIGHT,MI,4/21/2001 3:05 +Oakdale,,OVAL,CA,4/21/2001 4:30 +Ringgold,GREEN,CIRCLE,FL,4/21/2001 10:06 +Glasgow,,TRIANGLE,KY,4/21/2001 20:00 +Arlington,YELLOW,TRIANGLE,TX,4/21/2001 21:45 +Fort Worth,,OTHER,TX,4/22/2001 0:20 +Wyoming,,DISK,MI,4/22/2001 3:28 +Fairhaven,,SPHERE,MA,4/22/2001 6:33 +Kansas City,,CIRCLE,KS,4/22/2001 20:40 +Huntington,,TRIANGLE,WV,4/22/2001 20:50 +Burtonsville,,CIRCLE,MD,4/23/2001 1:15 +Olympia,,TRIANGLE,WA,4/23/2001 5:30 +St. Petersburg,,LIGHT,FL,4/23/2001 6:00 +Jacksonville,,TRIANGLE,FL,4/23/2001 17:45 +Lancaster,,FLASH,NY,4/23/2001 21:30 +none,,CIRCLE,CA,4/23/2001 22:30 +Fords,,DISK,NJ,4/24/2001 0:00 +Bellevue,,VARIOUS,ID,4/24/2001 13:15 +Denver,RED,OVAL,CO,4/24/2001 18:23 +Hillsborough,,OTHER,NC,4/24/2001 18:25 +Robert Moses Causway North landfall,,,NY,4/24/2001 19:20 +Manhattan Beach,,CHEVRON,CA,4/24/2001 21:25 +Boise,,,ID,4/24/2001 22:15 +Bristol,,,TN,4/24/2001 23:55 +Valmy,,CYLINDER,NV,4/25/2001 0:18 +Auburn,,FIREBALL,WA,4/25/2001 1:19 +Buena Vista,,TRIANGLE,VA,4/25/2001 3:40 +Houston,,LIGHT,TX,4/25/2001 20:30 +O'Brien,RED,LIGHT,FL,4/25/2001 21:05 +Roseau,,LIGHT,MN,4/25/2001 21:35 +Laramie,,LIGHT,WY,4/25/2001 22:00 +Wickiup,,LIGHT,AZ,4/25/2001 22:00 +Chandler,,OTHER,AZ,4/25/2001 22:45 +Albuquerque,RED,LIGHT,NM,4/26/2001 3:00 +Las Vegas,,VARIOUS,NV,4/26/2001 4:55 +Jackson,,,MI,4/26/2001 20:10 +Madison,GREEN,FLASH,AL,4/26/2001 20:50 +Wildwood,,SPHERE,IL,4/26/2001 23:58 +Gilbert,,OVAL,AZ,4/27/2001 11:00 +Spokane,,SPHERE,WA,4/27/2001 19:47 +Marlboro,,SPHERE,MA,4/27/2001 21:00 +Las Vegas,,FORMATION,NV,4/27/2001 21:25 +Tempe,,OVAL,AZ,4/27/2001 21:25 +Seattle,,DIAMOND,WA,4/27/2001 21:55 +Alpine,,TRIANGLE,CA,4/27/2001 23:00 +Ferrisburg,,TRIANGLE,VT,4/27/2001 23:20 +Georgia,,DISK,GA,4/28/2001 0:45 +Salt Lake City,,LIGHT,UT,4/28/2001 3:20 +Point Pleasant,,,NJ,4/28/2001 4:50 +Cairo,ORANGE GREEN,FIREBALL,WV,4/28/2001 11:48 +New York City,,OVAL,NY,4/28/2001 13:00 +New York City,,OVAL,NY,4/28/2001 13:00 +Portland,,FIREBALL,OR,4/28/2001 14:00 +Portland,,,OR,4/28/2001 14:01 +Antioch,ORANGE,CIRCLE,TN,4/28/2001 20:12 +Amherst,,,VA,4/28/2001 23:00 +Morganton,,LIGHT,NC,4/28/2001 23:55 +Nashville,,LIGHT,TN,4/29/2001 14:00 +Norfork,,OTHER,AR,4/29/2001 17:30 +Los Angeles,,CHEVRON,CA,4/29/2001 19:30 +Greensburg,,DISK,PA,4/29/2001 21:00 +Tecopa,,LIGHT,CA,4/29/2001 21:00 +Memphis,BLUE,OTHER,TN,4/29/2001 21:13 +Englewood,RED,LIGHT,FL,4/29/2001 21:45 +Moorehead,,LIGHT,MN,4/29/2001 22:20 +Flint,,TRIANGLE,MI,4/29/2001 23:59 +Marietta,,TRIANGLE,GA,4/30/2001 15:47 +Baltimore,,LIGHT,MD,4/30/2001 20:00 +Panorama City,,SPHERE,CA,4/30/2001 23:59 +West Covina,,OTHER,CA,5/1/2001 4:00 +Coram,,LIGHT,NY,5/1/2001 4:30 +Phoenix,,DISK,AZ,5/1/2001 14:56 +Milford,,CYLINDER,NJ,5/1/2001 16:45 +Henderson,,,NV,5/1/2001 17:30 +Okeechobee,,LIGHT,FL,5/1/2001 18:00 +Noble,,RECTANGLE,OK,5/1/2001 21:00 +Elizabeth,,SPHERE,CO,5/1/2001 23:00 +Owls Head,,DIAMOND,ME,5/1/2001 23:00 +Independence,,DISK,MO,5/2/2001 7:27 +Graham,ORANGE,SPHERE,WA,5/2/2001 22:00 +Kennesaw,,LIGHT,GA,5/2/2001 22:00 +Greenville,,DISK,PA,5/3/2001 13:43 +Santa Monica,,FORMATION,CA,5/3/2001 20:30 +Milwaukee,,CYLINDER,WI,5/3/2001 23:18 +Marion,RED GREEN BLUE,OTHER,IL,5/4/2001 13:00 +Fairfield,,DISK,CT,5/4/2001 16:00 +Indianola,,SPHERE,MS,5/4/2001 21:10 +Richmond,,OTHER,VA,5/4/2001 22:24 +Mountain View,,FIREBALL,CA,5/4/2001 22:48 +Santa Cruz,,DISK,CA,5/5/2001 12:00 +El Cajon,,LIGHT,CA,5/5/2001 17:00 +Phelan,,FIREBALL,CA,5/5/2001 17:00 +St. Louis,,DIAMOND,MO,5/5/2001 19:45 +Stockton,,OVAL,NJ,5/5/2001 20:00 +Coto De Caza,,LIGHT,CA,5/5/2001 23:10 +Las Vegas,,LIGHT,NV,5/6/2001 1:20 +LaPorte,,OTHER,IN,5/6/2001 1:27 +Dania Beach,,RECTANGLE,FL,5/6/2001 14:00 +Sussex,ORANGE,VARIOUS,NJ,5/6/2001 19:30 +Seattle,,OTHER,WA,5/6/2001 20:30 +Arcadia,,FIREBALL,CA,5/6/2001 21:00 +Oakland,,FORMATION,CA,5/6/2001 21:09 +Santa Rosa,,,CA,5/6/2001 21:30 +Everett,,TEARDROP,WA,5/6/2001 23:17 +Penn Valley,,TRIANGLE,CA,5/7/2001 20:10 +Morristown,ORANGE YELLOW,LIGHT,TN,5/7/2001 22:00 +Tularosa,,LIGHT,NM,5/9/2001 20:15 +Kiel,ORANGE,FLASH,WI,5/9/2001 21:00 +Moses Lake,,TRIANGLE,WA,5/9/2001 22:25 +Ames,,LIGHT,IA,5/9/2001 23:53 +Bear Creek,,FIREBALL,AL,5/10/2001 0:00 +Youngstown,,SPHERE,OH,5/10/2001 14:00 +San Diego,,CIRCLE,CA,5/10/2001 17:00 +Cloverdale,,OTHER,CA,5/10/2001 21:00 +Middletown,,CONE,OH,5/10/2001 21:00 +Splendora,,,TX,5/10/2001 21:00 +Treasure Island,,,FL,5/10/2001 21:00 +Teasdale,,TRIANGLE,UT,5/10/2001 22:45 +Jacksboro,,TRIANGLE,TX,5/10/2001 23:20 +Lawrence,,TRIANGLE,KS,5/10/2001 23:30 +Newbury Park,RED,VARIOUS,CA,5/11/2001 4:04 +Horn Island,,DISK,MS,5/11/2001 4:30 +Houston,,LIGHT,TX,5/11/2001 5:00 +Cleveland,,CYLINDER,OH,5/11/2001 19:30 +Willits,,LIGHT,CA,5/11/2001 22:48 +Roseberg,,DISK,PA,5/11/2001 23:07 +Defiance,,LIGHT,OH,5/12/2001 0:00 +Miami,,DISK,FL,5/12/2001 12:00 +Columbus,,CIRCLE,OH,5/12/2001 12:50 +Oklahoma City,,TRIANGLE,OK,5/12/2001 20:00 +Susanville,GREEN,SPHERE,CA,5/12/2001 20:48 +Scappoose,,TRIANGLE,OR,5/12/2001 21:45 +Franklin,,FORMATION,TN,5/12/2001 22:00 +Los Angeles,,LIGHT,CA,5/12/2001 22:00 +New York City,,FORMATION,NY,5/12/2001 22:00 +Sunriver,,TRIANGLE,OR,5/12/2001 22:00 +Edmond,RED,OVAL,OK,5/12/2001 23:00 +Lansing,,LIGHT,MI,5/13/2001 1:30 +Brea,ORANGE,CIRCLE,CA,5/13/2001 2:45 +Reedley,,OTHER,CA,5/13/2001 3:30 +Fort Worth,,LIGHT,TX,5/13/2001 21:15 +Englewood,,TRIANGLE,CO,5/13/2001 22:30 +St. Louis,,OVAL,MO,5/13/2001 23:00 +Rexburg,,LIGHT,ID,5/13/2001 23:30 +Rockford,,CIRCLE,MI,5/13/2001 23:30 +Santa Barbara,YELLOW,SPHERE,CA,5/14/2001 4:30 +Blackwater,,DISK,MO,5/14/2001 4:50 +Oakland,,DISK,CA,5/14/2001 18:00 +Plantation,,LIGHT,FL,5/14/2001 20:45 +Overton,,CIRCLE,TX,5/14/2001 21:00 +San Anselmo,BLUE,CONE,CA,5/14/2001 23:10 +Alsip,,,IL,5/15/2001 0:00 +Lower Lake,,,CA,5/15/2001 0:00 +Alden,,,MN,5/15/2001 1:00 +Dalton,,TRIANGLE,MA,5/15/2001 1:30 +New York City,,OVAL,NY,5/15/2001 13:00 +Warrensburg,,CYLINDER,MO,5/15/2001 19:00 +Vicksburg,,OVAL,MS,5/15/2001 21:00 +Watkins Glen,,CIRCLE,NY,5/15/2001 21:00 +Bellevue,,,NE,5/15/2001 22:00 +Mallory,,FLASH,NY,5/15/2001 22:45 +New Port Richey,,FIREBALL,FL,5/15/2001 23:00 +Valatie,,DIAMOND,NY,5/15/2001 23:15 +Columbia,YELLOW,CIGAR,IL,5/16/2001 0:45 +Santa Barbara,,DISK,CA,5/16/2001 13:00 +New York City,GREEN,TEARDROP,NY,5/16/2001 21:30 +Oklahoma City,,TRIANGLE,OK,5/16/2001 22:00 +Warner Robins,,CIRCLE,GA,5/16/2001 22:14 +Bolingbrook,,SPHERE,IL,5/17/2001 6:00 +Joliet,,SPHERE,IL,5/17/2001 15:00 +Joliet,,SPHERE,IL,5/17/2001 15:30 +,,LIGHT,FL,5/17/2001 20:22 +Ames,,TRIANGLE,IA,5/17/2001 21:45 +Ames,,TRIANGLE,IA,5/17/2001 21:45 +Fair Oaks,,TRIANGLE,CA,5/17/2001 22:20 +Banner,,SPHERE,TN,5/17/2001 23:00 +Mount KIsco,,TRIANGLE,NY,5/17/2001 23:00 +Flat Rock,,CHEVRON,MI,5/18/2001 1:30 +Dania Beach,,LIGHT,FL,5/18/2001 3:30 +Roanoke,,SPHERE,VA,5/18/2001 20:17 +Sheeps Bridge,,DISK,AZ,5/18/2001 20:30 +Hoover,,TRIANGLE,AL,5/18/2001 21:20 +Mounds View,,RECTANGLE,MN,5/18/2001 21:34 +New Albany,ORANGE,LIGHT,IN,5/18/2001 21:34 +Sapulpa,,TRIANGLE,OK,5/18/2001 22:35 +Healdsburg,,TRIANGLE,CA,5/18/2001 23:30 +St. Paul,ORANGE,,MN,5/18/2001 23:50 +Carson,,LIGHT,WA,5/19/2001 0:01 +Bear Canyon Lake,,FORMATION,AZ,5/19/2001 2:00 +Sweet Valley,RED GREEN,LIGHT,PA,5/19/2001 2:00 +Framingdale,,LIGHT,ME,5/19/2001 3:00 +Mesquite,,OTHER,TX,5/19/2001 5:30 +East Longmeadow,,CYLINDER,MA,5/19/2001 10:00 +Palatine,,CIGAR,IL,5/19/2001 14:17 +Columbia,,OVAL,LA,5/19/2001 20:00 +Blowing Rock,ORANGE,LIGHT,NC,5/19/2001 21:30 +New York City,,OVAL,NY,5/19/2001 22:30 +Passaconway,,LIGHT,NH,5/19/2001 23:00 +Sacramento,,LIGHT,CA,5/20/2001 4:30 +Sacramento,,LIGHT,CA,5/20/2001 4:30 +Freeland,,CYLINDER,WA,5/20/2001 5:30 +Denver,,OVAL,CO,5/20/2001 14:00 +Aloha,ORANGE,DIAMOND,OR,5/20/2001 19:50 +Hillsboro,,LIGHT,OR,5/20/2001 21:15 +Winslow,,TRIANGLE,IN,5/20/2001 22:15 +New York City,,VARIOUS,NY,5/21/2001 1:00 +Atlanta,,LIGHT,GA,5/21/2001 1:10 +St. Louis,,FIREBALL,MO,5/21/2001 2:00 +Melbourne Beach,,LIGHT,FL,5/21/2001 20:30 +Bowling Green,,LIGHT,KY,5/21/2001 21:30 +Las Vegas,,CHEVRON,NV,5/21/2001 21:45 +Seattle,,CIRCLE,WA,5/21/2001 22:01 +La Mesa,,,CA,5/21/2001 23:00 +Kalispell,,LIGHT,MT,5/22/2001 0:01 +Wray,,CIRCLE,CO,5/22/2001 12:00 +Reno,,,NV,5/22/2001 20:00 +North Conway,,OTHER,NH,5/22/2001 20:50 +Santa Ana,,SPHERE,CA,5/22/2001 21:00 +Encino,,SPHERE,CA,5/22/2001 21:40 +Louisville,,OVAL,KY,5/22/2001 23:15 +Louisville,,DISK,KY,5/22/2001 23:17 +Louisville,,DIAMOND,KY,5/22/2001 23:30 +Allen Park,,TRIANGLE,MI,5/23/2001 1:30 +Ashland,,SPHERE,KY,5/23/2001 22:00 +Virginia Beach,,LIGHT,VA,5/23/2001 22:00 +Springfield,,FIREBALL,MI,5/24/2001 2:00 +Toledo,,TRIANGLE,OH,5/24/2001 2:00 +Henderson,,OTHER,NV,5/24/2001 4:45 +Yuma,,DIAMOND,AZ,5/24/2001 5:00 +Rochester,,FORMATION,NY,5/24/2001 14:40 +Murphy,,LIGHT,NC,5/24/2001 22:00 +Sandy,RED BLUE,LIGHT,UT,5/24/2001 22:21 +Apex,,CIRCLE,NC,5/25/2001 2:00 +Hicksville,,CONE,NY,5/25/2001 3:00 +McKinney,,OTHER,TX,5/25/2001 20:00 +Bates City,ORANGE,LIGHT,MO,5/26/2001 0:00 +Hillsboro,,LIGHT,OR,5/26/2001 1:15 +Albuquerque,,DISK,NM,5/26/2001 2:00 +Lake Buena Vista,,,FL,5/26/2001 14:00 +Tucson,,VARIOUS,AZ,5/26/2001 15:00 +Parkersburg,,OTHER,WV,5/26/2001 17:00 +Pittsburgh,,CIRCLE,PA,5/26/2001 19:00 +Socorro,BLUE,OTHER,NM,5/26/2001 19:30 +Olympia,,DISK,WA,5/26/2001 20:00 +Worden,BLUE,,MT,5/26/2001 21:00 +La Quinta,,,CA,5/26/2001 22:00 +White Hall,,LIGHT,MD,5/26/2001 22:00 +Star lake,,FORMATION,NY,5/26/2001 22:30 +Racine,,TEARDROP,WI,5/26/2001 23:00 +Big Bear,YELLOW BLUE,LIGHT,CA,5/26/2001 23:20 +Tempe,,OVAL,AZ,5/27/2001 5:20 +White Hall,,LIGHT,MD,5/27/2001 21:30 +Columbia City,RED BLUE,LIGHT,IN,5/27/2001 23:00 +Shelton,,FORMATION,WA,5/27/2001 23:00 +Barstow,,LIGHT,CA,5/28/2001 2:00 +Waynesburg,,CHEVRON,OH,5/28/2001 18:45 +Schaumburg,,LIGHT,IL,5/28/2001 20:15 +Magna,,CIRCLE,UT,5/28/2001 21:30 +Buckner,,OVAL,IL,5/28/2001 23:05 +Fort A.P. Hill,,FIREBALL,VA,5/29/2001 2:40 +Los Angeles,,TEARDROP,CA,5/29/2001 4:30 +Charlotte,,SPHERE,NC,5/29/2001 14:30 +Torrance,,VARIOUS,CA,5/29/2001 19:53 +Chandler,,LIGHT,AZ,5/29/2001 20:50 +Fyffe,,OVAL,AL,5/29/2001 21:30 +El Sobrante,,DISK,CA,5/30/2001 3:25 +Sacramento,,CYLINDER,CA,5/30/2001 15:00 +Chicago,,OTHER,IL,5/30/2001 21:20 +Northbrook,,FLASH,IL,5/30/2001 23:00 +South Webster,,LIGHT,OH,5/31/2001 22:00 +Patagonia,,CIRCLE,AZ,5/31/2001 22:10 +Doylestown,,OTHER,PA,5/31/2001 22:30 +Sandoval,,VARIOUS,IL,6/1/2001 12:30 +Jackson,,RECTANGLE,GA,6/1/2001 21:00 +Old Orchard Beach,,OVAL,ME,6/1/2001 22:00 +Kennewick,,TRIANGLE,WA,6/1/2001 22:04 +Kingston,,LIGHT,WA,6/1/2001 22:30 +Coulterville,,FIREBALL,CA,6/1/2001 23:00 +Hilton Head,,LIGHT,NC,6/1/2001 23:00 +Bothell,BLUE,LIGHT,WA,6/2/2001 0:00 +Lancaster,,,CA,6/2/2001 0:00 +Kenton,BLUE,DISK,OK,6/2/2001 1:43 +West Hartford,,SPHERE,CT,6/2/2001 15:00 +Wayne,,CHEVRON,NJ,6/2/2001 18:00 +Long Island,,VARIOUS,NY,6/2/2001 19:00 +Broken Arrow,,TRIANGLE,OK,6/2/2001 22:00 +Houston,,,TX,6/2/2001 22:40 +Wilmington,BLUE,FIREBALL,NC,6/3/2001 3:30 +Denver,,DISK,CO,6/3/2001 14:00 +Federal Way,,OVAL,WA,6/3/2001 14:00 +Murfreesboro,,FLASH,TN,6/3/2001 15:47 +Kirkland,,,WA,6/3/2001 22:10 +Jamaica,,,NY,6/3/2001 23:30 +Snoqualmie,,,WA,6/3/2001 23:35 +Rochester,BLUE,LIGHT,WA,6/3/2001 23:43 +Fresno,,SPHERE,CA,6/4/2001 4:00 +Steilacoom,,OTHER,WA,6/4/2001 17:30 +Orlando,,SPHERE,FL,6/4/2001 23:00 +Onalaska,,LIGHT,WI,6/4/2001 23:31 +Tacoma,RED ORANGE,LIGHT,WA,6/4/2001 23:33 +Yakima,,LIGHT,WA,6/5/2001 0:01 +Pascagoula,RED,DISK,MS,6/5/2001 0:15 +Provo,,LIGHT,UT,6/5/2001 3:30 +Melbourne Beach,,FIREBALL,FL,6/5/2001 21:00 +Wilmington,,TRIANGLE,MA,6/5/2001 22:00 +Olathe,,OTHER,KS,6/5/2001 22:30 +Lake Mills,,LIGHT,IA,6/6/2001 0:15 +Cusick,,CIGAR,WA,6/6/2001 12:30 +Waianae,,SPHERE,HI,6/6/2001 14:00 +Fairfax,,DISK,VA,6/6/2001 14:33 +Alvin,,CIGAR,TX,6/6/2001 21:45 +Los Angeles,,DISK,CA,6/6/2001 22:30 +Longmont,,TRIANGLE,CO,6/6/2001 23:00 +Sudbury,,,MA,6/7/2001 1:00 +Longmont,,RECTANGLE,CO,6/7/2001 2:00 +Olympia,,LIGHT,WA,6/7/2001 4:00 +Newland,BLUE,,NC,6/7/2001 15:30 +Billings,GREEN,CIRCLE,MO,6/7/2001 22:00 +Longmont,,FIREBALL,CO,6/7/2001 22:00 +Blackhawk,,FIREBALL,CO,6/7/2001 23:15 +Escanaba,,LIGHT,MI,6/7/2001 23:30 +Springfield,RED,,SD,6/8/2001 0:00 +Richmond,,VARIOUS,VA,6/8/2001 20:00 +Columbia,,TRIANGLE,MO,6/8/2001 22:30 +Irons,,FORMATION,MI,6/9/2001 0:45 +Eldersburg,,,MD,6/9/2001 3:47 +Los Angeles,,CIGAR,CA,6/9/2001 7:30 +Seattle,,RECTANGLE,WA,6/9/2001 11:15 +Idaho Falls,,CYLINDER,ID,6/9/2001 12:30 +New York City,,LIGHT,NY,6/9/2001 16:00 +Reading,,EGG,PA,6/9/2001 16:25 +Rancho Cordova,,CIRCLE,CA,6/9/2001 20:00 +Apache Junction,,LIGHT,AZ,6/9/2001 21:00 +Williams,GREEN,SPHERE,AZ,6/9/2001 21:30 +Las Vegas,,,NV,6/9/2001 22:00 +no data,,OVAL,TX,6/9/2001 22:10 +Everglades,,CIRCLE,FL,6/9/2001 22:15 +Novi,GREEN,LIGHT,MI,6/9/2001 23:05 +Newberry,,FORMATION,MI,6/9/2001 23:50 +Redlands,ORANGE,CIRCLE,CA,6/10/2001 0:20 +Wilmington,,CIRCLE,DE,6/10/2001 3:15 +Chesterfield,,DISK,MI,6/10/2001 3:30 +San Carlos,,LIGHT,AZ,6/10/2001 4:00 +St. Petersburg,,DISK,FL,6/10/2001 7:00 +Hatteras Island,,DISK,NC,6/10/2001 21:00 +La Palma,,LIGHT,CA,6/10/2001 21:00 +Selah,,,WA,6/10/2001 21:30 +Maspeth,,DISK,NY,6/10/2001 22:00 +Anchorage,,EGG,AK,6/10/2001 22:30 +Channahon,,TRIANGLE,IL,6/10/2001 22:30 +Harwoord Heights,,LIGHT,IL,6/10/2001 22:30 +Pocahontas,,CIRCLE,AR,6/10/2001 22:30 +Greenwood,,TRIANGLE,MO,6/10/2001 23:00 +Beaver,,LIGHT,OK,6/10/2001 23:30 +Sherman,,LIGHT,CT,6/10/2001 23:45 +Follansbee,,OTHER,WV,6/11/2001 0:00 +Florence,,DISK,SC,6/11/2001 13:00 +Saginaw,,TRIANGLE,MI,6/11/2001 22:00 +Puyallup,,CIRCLE,WA,6/11/2001 22:40 +Puyallup,,OVAL,WA,6/11/2001 23:30 +Goldfield,RED,FORMATION,NV,6/12/2001 1:00 +Azle,,LIGHT,TX,6/12/2001 3:00 +Ridgefarm,,FLASH,IL,6/12/2001 21:00 +Bellingham,RED,OVAL,WA,6/12/2001 23:00 +San Jose,,LIGHT,CA,6/13/2001 1:45 +Charlotte,,SPHERE,NC,6/13/2001 14:00 +Gaylordsville,,VARIOUS,CT,6/13/2001 14:45 +Kailua Kona,RED,CIRCLE,HI,6/13/2001 20:40 +Wells,,LIGHT,NV,6/13/2001 21:00 +Hamburg,RED,LIGHT,NY,6/13/2001 21:30 +Formosa,ORANGE,OTHER,AR,6/13/2001 22:05 +Ashtabula,ORANGE,LIGHT,OH,6/13/2001 23:00 +Wisconsin Rapids,RED,OTHER,WI,6/13/2001 23:10 +Dallas,,FLASH,TX,6/14/2001 1:28 +Suwanee,,VARIOUS,GA,6/14/2001 20:34 +Suwanee,,VARIOUS,GA,6/14/2001 20:45 +Rockton,ORANGE,EGG,IL,6/14/2001 21:30 +Orinda,,VARIOUS,CA,6/14/2001 22:00 +Salem,,OTHER,OR,6/14/2001 22:00 +Longmont,,RECTANGLE,CO,6/15/2001 0:48 +Santa Fe,,,NM,6/15/2001 3:00 +Lake Worth,,DISK,FL,6/15/2001 7:00 +Beaver Lake,,VARIOUS,AR,6/15/2001 12:00 +Littleton,,DISK,CO,6/15/2001 15:00 +Naperville,,SPHERE,IL,6/15/2001 15:00 +Dallas,,DISK,TX,6/15/2001 16:00 +Spring Mills,,CIGAR,WV,6/15/2001 16:00 +Linden,,RECTANGLE,NJ,6/15/2001 16:35 +Glenview,,SPHERE,IL,6/15/2001 16:45 +Ontario,,FIREBALL,CA,6/15/2001 20:00 +Phoenix,,CIRCLE,AZ,6/15/2001 20:00 +Cutler,,CIRCLE,CA,6/15/2001 22:00 +Monroe,,CIRCLE,WA,6/15/2001 22:20 +Hopkinsville,,FIREBALL,KY,6/15/2001 22:30 +Whitesburg,,OTHER,GA,6/15/2001 22:30 +Concord,,CIRCLE,NH,6/15/2001 23:00 +Myrtle Beach,ORANGE,SPHERE,SC,6/15/2001 23:00 +North Plains,,TRIANGLE,OR,6/15/2001 23:00 +Paradise Valley,,LIGHT,AZ,6/15/2001 23:00 +Rayland,ORANGE,LIGHT,OH,6/16/2001 0:30 +Bradenton,,OVAL,FL,6/16/2001 20:35 +Folly Beach,,TEARDROP,SC,6/16/2001 22:30 +Agawam,,TEARDROP,MA,6/16/2001 23:15 +Oak Park,,CIRCLE,MI,6/16/2001 23:30 +Madison,,OTHER,WI,6/16/2001 23:59 +New York City,,DISK,NY,6/17/2001 0:00 +Eads,,TRIANGLE,CO,6/17/2001 2:30 +Pottstown,,CIGAR,PA,6/17/2001 19:40 +Clinton Township,,LIGHT,MI,6/17/2001 21:30 +Tampa,,DIAMOND,FL,6/17/2001 22:16 +Bristol,GREEN,FIREBALL,TN,6/17/2001 22:20 +Lawrenceville,BLUE,CIRCLE,GA,6/17/2001 22:30 +Hickory,,CHEVRON,NC,6/18/2001 14:30 +New York City,BLUE,CIGAR,NY,6/18/2001 16:50 +Chama River,,LIGHT,NM,6/19/2001 0:30 +Daytona Beach,ORANGE,RECTANGLE,FL,6/19/2001 3:00 +Eugene,ORANGE,LIGHT,OR,6/19/2001 20:05 +Ponte Vedra Beach,,LIGHT,FL,6/19/2001 21:00 +Columbia,,LIGHT,SC,6/19/2001 21:33 +Charlotte,,,NC,6/19/2001 22:30 +Canby,,LIGHT,CA,6/19/2001 23:30 +Tucson,,,AZ,6/20/2001 1:00 +Tracy,,DISK,CA,6/20/2001 15:00 +Charleston,,CIRCLE,SC,6/20/2001 17:30 +Pahoa,,CIRCLE,HI,6/20/2001 21:28 +Hampton,,TRIANGLE,TN,6/20/2001 22:00 +Independence,,,VA,6/21/2001 0:00 +Lewistown,,CIRCLE,MT,6/21/2001 0:00 +Soldatna,,DISK,AK,6/21/2001 2:15 +Harlowton,,CIRCLE,MT,6/21/2001 2:52 +Shreveport,YELLOW BLUE,CIGAR,LA,6/21/2001 4:55 +San Antonio,,SPHERE,TX,6/21/2001 13:00 +Issaquah,,OTHER,WA,6/21/2001 21:00 +Eastland,,LIGHT,TX,6/21/2001 21:25 +Ames,GREEN,TRIANGLE,IA,6/21/2001 22:30 +Vancouver,,,WA,6/21/2001 22:50 +San Dimas,,DIAMOND,CA,6/21/2001 23:35 +Rockport,,,ME,6/22/2001 3:00 +Jupiter,,LIGHT,FL,6/22/2001 5:30 +Boston,,CIRCLE,MA,6/22/2001 18:30 +Downers Grove,,DISK,IL,6/22/2001 21:00 +Boston,,DISK,MA,6/22/2001 21:45 +Gainsville,,TRIANGLE,FL,6/22/2001 22:00 +Manchester,,CIRCLE,MO,6/22/2001 23:00 +Greeley,,DIAMOND,CO,6/23/2001 0:00 +Des Moines,GREEN,FIREBALL,IA,6/23/2001 3:00 +Pocatello,,OTHER,ID,6/23/2001 18:30 +Helena,,FIREBALL,AL,6/23/2001 20:47 +Quincy,,LIGHT,CA,6/23/2001 21:04 +Byhalia,,DISK,MS,6/23/2001 21:24 +Fernandina Beach,,CIRCLE,FL,6/23/2001 21:45 +Cosby,,FIREBALL,TN,6/23/2001 22:00 +Kirkwood,GREEN,OTHER,CA,6/23/2001 22:45 +La Junta,,TRIANGLE,CO,6/23/2001 23:15 +Quincy,,LIGHT,CA,6/23/2001 23:15 +Woodridge,,LIGHT,IL,6/23/2001 23:35 +Blairsville,,TRIANGLE,GA,6/23/2001 23:46 +Highland,,TRIANGLE,MI,6/24/2001 10:00 +Mesa,,,AZ,6/24/2001 10:31 +Tupelo,,,MS,6/24/2001 13:00 +Playa del Rey,,TRIANGLE,CA,6/24/2001 13:30 +Cypress,,VARIOUS,TX,6/24/2001 17:30 +Danville,GREEN,,IN,6/24/2001 20:50 +Daytona Beach,,OTHER,FL,6/24/2001 21:00 +Blackwell,,DISK,OK,6/24/2001 22:30 +Santa Clara,,LIGHT,CA,6/24/2001 22:30 +East Haddam,,EGG,CT,6/24/2001 22:45 +Waretown,,TRIANGLE,NJ,6/24/2001 23:59 +Mount Vernon,,TRIANGLE,WA,6/25/2001 0:00 +Seattle,,SPHERE,WA,6/25/2001 16:30 +Irving,,,TX,6/25/2001 19:30 +Spring Grove,,OTHER,PA,6/25/2001 19:55 +Mineral,,LIGHT,VA,6/25/2001 20:00 +Punta Gorda,,LIGHT,FL,6/25/2001 20:30 +Cocoa,,OTHER,FL,6/25/2001 21:00 +Columbia,,CIRCLE,MO,6/25/2001 21:00 +Miami,,CONE,FL,6/25/2001 21:00 +Ocala,,TRIANGLE,FL,6/25/2001 21:00 +Orlando,,OTHER,FL,6/25/2001 21:00 +Savannah,,,GA,6/25/2001 21:00 +Ocracoke Island,,OTHER,NC,6/25/2001 21:15 +Parkesburg,,LIGHT,PA,6/25/2001 21:15 +Punta Gorda,,LIGHT,FL,6/25/2001 21:15 +Sarasota,,TRIANGLE,FL,6/25/2001 21:15 +West Palm Beach,,LIGHT,FL,6/25/2001 21:15 +Holmes Beach,RED,LIGHT,FL,6/25/2001 21:25 +Fort Myers,,CONE,FL,6/25/2001 21:30 +Daytona Beach,,,FL,6/25/2001 21:35 +Midway,,OTHER,GA,6/25/2001 23:00 +Mahopac,,CIRCLE,NY,6/26/2001 2:30 +Nipomo,,SPHERE,CA,6/26/2001 10:38 +Rockford,RED,LIGHT,IL,6/26/2001 22:20 +Missoula,,VARIOUS,MT,6/27/2001 2:15 +Sarasota,RED,CIRCLE,FL,6/27/2001 3:15 +Irvine,,OTHER,CA,6/27/2001 6:55 +Ann Arbor,,EGG,MI,6/27/2001 7:05 +Pasadena,,CYLINDER,CA,6/27/2001 15:20 +Los Angeles,,CIGAR,CA,6/27/2001 15:45 +Kennewick,,OTHER,WA,6/27/2001 17:30 +Rockville,,TRIANGLE,MD,6/27/2001 20:50 +Toledo,RED,TRIANGLE,OH,6/28/2001 0:45 +Bryn Mawr,,TRIANGLE,PA,6/28/2001 2:27 +Mission Viejo,,LIGHT,CA,6/28/2001 3:00 +Simi Valley,,CIRCLE,CA,6/28/2001 3:00 +Spearfish,,LIGHT,SD,6/28/2001 23:00 +Vancouver,,CHEVRON,WA,6/28/2001 23:43 +Kenilworth,,TRIANGLE,NJ,6/29/2001 4:05 +Seattle,,,WA,6/29/2001 14:00 +Gheen,,,MN,6/29/2001 23:15 +Lafollette,GREEN,CIRCLE,TN,6/30/2001 1:00 +Nokomis,,OTHER,FL,6/30/2001 1:00 +Enon,,LIGHT,OH,6/30/2001 5:00 +Florahome,RED,CIRCLE,FL,6/30/2001 10:45 +Nevada desert,,OVAL,NV,6/30/2001 11:00 +Parrish,,OTHER,FL,6/30/2001 12:00 +Albuquerque,,,NM,6/30/2001 12:30 +Delray Beach,,,FL,6/30/2001 19:00 +Garden Grove,,RECTANGLE,CA,6/30/2001 20:00 +Howland,,TRIANGLE,OH,6/30/2001 20:00 +Crestline,,LIGHT,CA,6/30/2001 21:00 +Crestline,,OTHER,CA,6/30/2001 21:00 +Crestline,,LIGHT,CA,6/30/2001 21:20 +Chandler,,DISK,AZ,6/30/2001 21:25 +Crestline,,LIGHT,CA,6/30/2001 21:25 +Lone Butte,ORANGE,FIREBALL,AZ,6/30/2001 21:33 +Minnesota,,LIGHT,MN,6/30/2001 22:00 +McCamey,YELLOW,OVAL,TX,6/30/2001 22:30 +Milwaukee,,LIGHT,WI,6/30/2001 22:50 +Pine Bush,RED,TRIANGLE,NY,6/30/2001 23:00 +Quantico,,LIGHT,VA,7/1/2001 0:30 +Jerome,,FORMATION,AZ,7/1/2001 1:00 +San Pablo,,CIRCLE,CA,7/1/2001 2:45 +Pembroke Pines,,FIREBALL,FL,7/1/2001 2:48 +Chicago,,SPHERE,IL,7/1/2001 11:00 +Laramie,,OTHER,WY,7/1/2001 11:50 +Longmont,RED,CIGAR,CO,7/1/2001 13:00 +Marysville,,OVAL,WA,7/1/2001 15:30 +Gresham,,CIRCLE,OR,7/1/2001 16:30 +Monrovia,,RECTANGLE,CA,7/1/2001 20:00 +Coleman,,DISK,WI,7/1/2001 22:00 +Key West,,SPHERE,FL,7/1/2001 22:00 +Kimberling City,,FORMATION,MO,7/1/2001 22:30 +Normal,GREEN BLUE,OTHER,IL,7/1/2001 22:30 +Countryside,BLUE,EGG,IL,7/1/2001 22:40 +Hallandale,,CIRCLE,FL,7/1/2001 23:00 +Clear Lake,GREEN,LIGHT,IN,7/1/2001 23:30 +East Stroudsburg,,EGG,PA,7/2/2001 2:35 +Greenfield,,OVAL,MN,7/2/2001 3:00 +Cle Elum,,CHEVRON,WA,7/2/2001 13:25 +Miami,,EGG,FL,7/2/2001 19:30 +Doniphan,,TRIANGLE,MO,7/2/2001 22:00 +Potosi,,LIGHT,MO,7/2/2001 22:30 +Seattle,RED,FIREBALL,WA,7/3/2001 2:10 +Manchester,,OTHER,CT,7/3/2001 18:45 +Collegeville,,CIGAR,PA,7/3/2001 20:15 +San Diego,,EGG,CA,7/3/2001 22:30 +San Diego,,EGG,CA,7/3/2001 22:30 +Germantown,RED GREEN,CIRCLE,WI,7/3/2001 23:25 +Kennewick,ORANGE,LIGHT,WA,7/4/2001 0:00 +Redondo,,OVAL,WA,7/4/2001 5:00 +Slickville,,CIRCLE,PA,7/4/2001 13:00 +Independence,,TRIANGLE,MO,7/4/2001 19:30 +Des Moines,,TRIANGLE,IA,7/4/2001 20:00 +Narragansett,,RECTANGLE,RI,7/4/2001 21:10 +Big Pine,,DISK,CA,7/4/2001 22:00 +Long Beach,,LIGHT,CA,7/4/2001 22:00 +Houston,RED,LIGHT,TX,7/4/2001 23:20 +Houston,,OVAL,TX,7/4/2001 23:50 +Houston,RED,OVAL,TX,7/5/2001 0:05 +Union City,RED,OTHER,MI,7/5/2001 1:00 +Clearfield,,EGG,UT,7/5/2001 16:30 +Three Rivers,,TEARDROP,MI,7/5/2001 18:00 +El Cajon,,LIGHT,CA,7/5/2001 21:00 +San Jose,RED,DIAMOND,CA,7/5/2001 22:00 +Orange,,LIGHT,CA,7/5/2001 23:00 +Amity,,LIGHT,OR,7/6/2001 1:12 +Frederick,,LIGHT,MD,7/6/2001 2:00 +Allentown,,RECTANGLE,PA,7/6/2001 14:00 +Godfrey,,OVAL,IL,7/6/2001 15:00 +Sacramento,,SPHERE,CA,7/6/2001 18:00 +Mt Laurel,,CIRCLE,NJ,7/6/2001 18:45 +Sherman,BLUE,OVAL,NY,7/7/2001 0:18 +Hillsboro,,LIGHT,OR,7/7/2001 3:00 +Battle Creek,,DIAMOND,MI,7/7/2001 13:08 +Bartlesville,,CIRCLE,OK,7/7/2001 16:00 +Misty Fjords National Park,,RECTANGLE,AK,7/7/2001 17:30 +Mesa,,DISK,AZ,7/7/2001 19:45 +Haubstadt,RED,CIRCLE,IN,7/7/2001 21:00 +North Bend,,LIGHT,OR,7/7/2001 21:00 +Melbourne,,CHEVRON,FL,7/7/2001 21:45 +Melbourne,,FORMATION,FL,7/7/2001 21:45 +Houston,,LIGHT,TX,7/7/2001 22:00 +Missoula,,RECTANGLE,MT,7/7/2001 22:15 +Poposky,RED,,MN,7/7/2001 23:00 +Rockford,GREEN,LIGHT,IL,7/7/2001 23:30 +Gardena,,DISK,CA,7/8/2001 18:00 +Celo,,TRIANGLE,NC,7/8/2001 19:40 +Clinton,ORANGE,OTHER,AR,7/8/2001 22:15 +Portland,,OVAL,OR,7/9/2001 12:06 +Woods Hole,RED,LIGHT,MA,7/9/2001 14:00 +Morristown,,,NJ,7/9/2001 15:00 +Spring Valley,,SPHERE,CA,7/9/2001 20:00 +Morristown,,LIGHT,NY,7/9/2001 22:13 +Mountlake Terrace,,DISK,WA,7/9/2001 22:30 +Vernon Hills,,CIRCLE,IL,7/9/2001 22:45 +West Chester,,FIREBALL,OH,7/10/2001 0:00 +Fresno,,,CA,7/10/2001 2:00 +Rome,RED,TRIANGLE,NY,7/10/2001 21:15 +Bristol,ORANGE,OTHER,CT,7/10/2001 21:45 +Springville,,LIGHT,CA,7/10/2001 22:00 +Kingman,,,KS,7/10/2001 23:00 +Latrobe,,OTHER,PA,7/10/2001 23:00 +Helena,,LIGHT,MT,7/11/2001 0:33 +Elkton,,LIGHT,MD,7/11/2001 1:30 +Sutter Creek,,VARIOUS,CA,7/11/2001 4:00 +Cleveland,,LIGHT,OH,7/11/2001 5:00 +Hanover,,CYLINDER,MA,7/11/2001 17:45 +Orange,,FIREBALL,CA,7/11/2001 22:00 +Grants Pass,BLUE,EGG,OR,7/11/2001 23:00 +Grants Pass,,TEARDROP,OR,7/11/2001 23:00 +Redmond,,SPHERE,WA,7/12/2001 0:15 +Arlington,GREEN,LIGHT,WA,7/12/2001 0:26 +Port Townsend,,FIREBALL,WA,7/12/2001 1:24 +Ruidoso,ORANGE,FLASH,NM,7/12/2001 2:30 +Evansville,,CIRCLE,IN,7/12/2001 2:55 +Nashville,,OVAL,TN,7/12/2001 4:30 +Morristown,,LIGHT,NJ,7/12/2001 5:15 +Cleveland,,FIREBALL,TX,7/12/2001 21:09 +Orlando,GREEN,SPHERE,FL,7/13/2001 0:00 +Romney,ORANGE,FIREBALL,WV,7/13/2001 1:35 +La Veta,,VARIOUS,CO,7/13/2001 2:00 +Beloit,,OTHER,WI,7/13/2001 4:00 +Northwood,,VARIOUS,OH,7/13/2001 4:15 +Eagle,,CIRCLE,ID,7/13/2001 7:53 +Port Huron,,TRIANGLE,MI,7/13/2001 13:32 +Irrigon,,CIGAR,OR,7/13/2001 17:30 +Chapel Hill,,TRIANGLE,NC,7/13/2001 21:00 +Columbus,,SPHERE,OH,7/13/2001 21:30 +Wooster,RED GREEN BLUE,CIRCLE,OH,7/13/2001 22:00 +Eagle Point,YELLOW,OTHER,OR,7/13/2001 23:00 +Malta,,LIGHT,MT,7/13/2001 23:00 +Rockford,,SPHERE,IL,7/13/2001 23:45 +Odessa,,CIGAR,TX,7/14/2001 12:00 +Anaheim Hills,,TEARDROP,CA,7/14/2001 19:50 +Great Cacapon,,LIGHT,WV,7/14/2001 21:00 +New Holland,,LIGHT,PA,7/14/2001 21:00 +Philadelphia,,LIGHT,PA,7/14/2001 21:30 +Branson,,FIREBALL,MO,7/14/2001 22:20 +Joshua Tree,,LIGHT,CA,7/14/2001 22:30 +Monroe Township,,LIGHT,NJ,7/14/2001 22:45 +Tyson's Corner,,CHEVRON,VA,7/14/2001 23:05 +New York City,,TRIANGLE,NY,7/14/2001 23:11 +Wilkes-Barre,,TRIANGLE,PA,7/15/2001 0:00 +Carteret,,FORMATION,NJ,7/15/2001 0:15 +Carteret,,OTHER,NJ,7/15/2001 0:25 +Carteret,,CIRCLE,NJ,7/15/2001 0:29 +Cartaret,YELLOW,FORMATION,NJ,7/15/2001 0:30 +Carteret,,,NJ,7/15/2001 0:30 +Carteret,,FORMATION,NJ,7/15/2001 0:30 +Carteret,ORANGE,FORMATION,NJ,7/15/2001 0:30 +Carteret,,LIGHT,NJ,7/15/2001 0:30 +Carteret,,OTHER,NJ,7/15/2001 0:30 +Jersey City,,LIGHT,NJ,7/15/2001 0:30 +New York City,ORANGE,CIRCLE,NY,7/15/2001 0:30 +New York City,,LIGHT,NY,7/15/2001 0:30 +Newark,,FORMATION,NJ,7/15/2001 0:30 +Patchouge,,OVAL,NY,7/15/2001 0:30 +Port Reading,YELLOW,FORMATION,NJ,7/15/2001 0:30 +Carteret,,FORMATION,NJ,7/15/2001 0:38 +Carteret,,LIGHT,NJ,7/15/2001 0:38 +Carteret,,FORMATION,NJ,7/15/2001 0:40 +Carteret,,LIGHT,NJ,7/15/2001 0:40 +Carteret,,LIGHT,NJ,7/15/2001 0:40 +Carteret,,,NJ,7/15/2001 0:45 +Bayone,,,NJ,7/15/2001 1:00 +Loveland,RED ORANGE,CIRCLE,CO,7/15/2001 1:50 +Loveland,,OTHER,CO,7/15/2001 1:50 +Charlotte,ORANGE,OVAL,NC,7/15/2001 2:20 +Wilmington,,FIREBALL,CA,7/15/2001 3:00 +Oklahoma City,,,OK,7/15/2001 3:16 +Smithfield,RED,LIGHT,RI,7/15/2001 4:30 +Arlington Heights,,EGG,IL,7/15/2001 5:00 +El Centro,,LIGHT,CA,7/15/2001 10:30 +Binghamton,,CHEVRON,NY,7/15/2001 11:00 +Hugo,,LIGHT,MN,7/15/2001 13:00 +Pickerington,,CONE,OH,7/15/2001 13:00 +Bergenfield,,OTHER,NJ,7/15/2001 15:00 +Ellisville,,CIRCLE,MS,7/15/2001 19:00 +Orange Park,,DISK,FL,7/15/2001 20:00 +Tucson,,OTHER,AZ,7/15/2001 20:00 +Portland,,,OR,7/15/2001 20:25 +Boynton Beach,,CYLINDER,FL,7/15/2001 21:00 +Hamlin,,,NY,7/15/2001 21:00 +Tulsa,,CROSS,OK,7/15/2001 22:10 +Waimanalo,,TRIANGLE,HI,7/15/2001 22:30 +Boone,,TRIANGLE,NC,7/15/2001 23:00 +Durant,,CIRCLE,MS,7/16/2001 13:00 +Lima,,OVAL,OH,7/16/2001 21:00 +Buffalo,,LIGHT,NY,7/16/2001 21:40 +Eureka,GREEN,,CA,7/16/2001 22:00 +Harrison,,LIGHT,MI,7/16/2001 22:00 +Lower Allen,,LIGHT,PA,7/16/2001 22:00 +New York City,,DIAMOND,NY,7/16/2001 22:45 +Steamboat Springs,,FIREBALL,CO,7/16/2001 23:00 +Aurora,,FIREBALL,CO,7/17/2001 3:00 +St. Ann,BLUE,SPHERE,MO,7/17/2001 4:11 +Columbus,,LIGHT,OH,7/17/2001 20:30 +Marlboro Township,,DISK,NJ,7/17/2001 20:30 +Hollywood,,FIREBALL,FL,7/17/2001 20:36 +Jensen Beach,BLUE,EGG,FL,7/17/2001 21:30 +Fort Pierce,,FIREBALL,FL,7/17/2001 21:31 +Huntington Beach,,DIAMOND,CA,7/17/2001 21:45 +Hattiesburg,RED,LIGHT,MS,7/18/2001 4:45 +Houston,,OVAL,TX,7/18/2001 16:30 +Roswell,,CHEVRON,NM,7/18/2001 21:00 +Harbor City,RED,,CA,7/18/2001 21:40 +Las Vegas,,CHEVRON,NV,7/18/2001 22:00 +Oklahoma City,,CIGAR,OK,7/18/2001 22:30 +Utah,,,UT,7/18/2001 22:35 +Leakey,,LIGHT,TX,7/18/2001 23:15 +Iron Mountain,,,OR,7/19/2001 3:00 +Weedsport,,SPHERE,NY,7/19/2001 4:00 +North Las Vegas,,CIGAR,NV,7/19/2001 11:45 +Plover,ORANGE,LIGHT,WI,7/19/2001 22:20 +Adams,ORANGE,LIGHT,WI,7/19/2001 22:25 +Mineral Point,,LIGHT,MO,7/19/2001 23:00 +Godfrey,,LIGHT,IL,7/19/2001 23:59 +Glastonbury,,TEARDROP,CT,7/20/2001 0:00 +Gobles,,LIGHT,MI,7/20/2001 0:30 +Middletown,,LIGHT,OH,7/20/2001 1:30 +Waianae,,SPHERE,HI,7/20/2001 16:00 +Naperville,,OVAL,IL,7/20/2001 17:00 +Rifle,,FIREBALL,CO,7/20/2001 20:00 +Rancho Cucamonga,,LIGHT,CA,7/20/2001 21:35 +Watchung,,DISK,NJ,7/20/2001 21:40 +Glastonbury,,TEARDROP,CT,7/20/2001 22:00 +White Butte,,CIRCLE,ND,7/20/2001 22:00 +Yakima,,CHEVRON,WA,7/20/2001 22:10 +Surf City,,TRIANGLE,NJ,7/20/2001 22:15 +Mayfield,,CIRCLE,NY,7/20/2001 22:45 +San Marcos,,CYLINDER,TX,7/20/2001 23:00 +Hockessin,,FORMATION,DE,7/20/2001 23:30 +Austin,,CIRCLE,TX,7/20/2001 23:59 +Bossier City,,TRIANGLE,LA,7/21/2001 0:15 +Barview,,TRIANGLE,OR,7/21/2001 0:30 +Palm Bay,,RECTANGLE,FL,7/21/2001 3:00 +Oshkosh,,DISK,WI,7/21/2001 13:45 +Phoenix,,FIREBALL,AZ,7/21/2001 20:15 +Dale,,DISK,WI,7/21/2001 21:00 +Pismo Beach,,LIGHT,CA,7/21/2001 21:00 +Scottsdale,GREEN,FIREBALL,AZ,7/21/2001 21:00 +Dundee,,SPHERE,WI,7/21/2001 21:50 +Dundee,,CIRCLE,WI,7/21/2001 22:00 +Dundee,GREEN,CIRCLE,WI,7/21/2001 22:00 +Dundee,,CIRCLE,WI,7/21/2001 22:05 +Dundee,RED BLUE,LIGHT,WI,7/21/2001 22:05 +Osceola,GREEN,SPHERE,WI,7/21/2001 22:05 +Osceola,ORANGE GREEN,SPHERE,WI,7/21/2001 22:35 +Fort Mill,,LIGHT,SC,7/21/2001 22:39 +Groton,BLUE,TEARDROP,CT,7/21/2001 23:12 +Hillsboro,,LIGHT,OR,7/22/2001 0:31 +La Pointe,,LIGHT,WI,7/22/2001 3:00 +Rolling Meadows,,DISK,IL,7/22/2001 3:00 +St. Marys Point,,FORMATION,MN,7/22/2001 3:00 +Ellison Bay,,OTHER,WI,7/22/2001 3:30 +Portland,,VARIOUS,OR,7/22/2001 14:40 +San Francisco,,OTHER,CA,7/22/2001 17:30 +Fort Walton Beach,,OVAL,FL,7/22/2001 20:45 +Paris,,EGG,KY,7/22/2001 22:15 +La Pine,,FIREBALL,OR,7/22/2001 22:30 +Abington,,LIGHT,MA,7/22/2001 22:35 +Fort Totten,,OTHER,ND,7/22/2001 23:00 +Camas,,SPHERE,WA,7/22/2001 23:21 +Clearlake,,LIGHT,CA,7/22/2001 23:30 +Escalon,,LIGHT,CA,7/22/2001 23:30 +Spring Valley,,CIGAR,NV,7/23/2001 0:09 +Waynesboro,,TRIANGLE,VA,7/23/2001 2:25 +St. Paul,,LIGHT,MN,7/23/2001 3:30 +Eagle Point,,SPHERE,OR,7/23/2001 14:30 +Los Angeles,,,CA,7/23/2001 17:00 +Mount Morris,,TRIANGLE,NY,7/23/2001 18:00 +Central Square,ORANGE,TRIANGLE,NY,7/23/2001 18:17 +Latrobe,,FIREBALL,PA,7/23/2001 18:17 +Williamsport,,,PA,7/23/2001 18:17 +SMYRNA,BLUE,EGG,DE,7/23/2001 18:19 +Philadelphia area,,FIREBALL,PA,7/23/2001 18:30 +Spanaway,,,WA,7/23/2001 18:30 +Langlois,,CIGAR,OR,7/23/2001 19:45 +Wilsonville,,TRIANGLE,OR,7/23/2001 20:27 +Wilsonville,,TRIANGLE,OR,7/23/2001 20:27 +Oregon City,,TRIANGLE,OR,7/23/2001 21:30 +Grove city,,LIGHT,OH,7/23/2001 22:00 +Mt. Laguna,,TRIANGLE,CA,7/23/2001 22:08 +Escondido,,DIAMOND,CA,7/23/2001 22:40 +Andover,,OTHER,MA,7/23/2001 23:00 +Catalina Island,,TEARDROP,CA,7/23/2001 23:15 +Ocean City,,FLASH,MD,7/24/2001 10:00 +New York City,,DISK,NY,7/24/2001 12:00 +Gilbert,,CIRCLE,AZ,7/24/2001 21:10 +Buckeye,,LIGHT,AZ,7/24/2001 22:00 +Parowan,,LIGHT,UT,7/24/2001 22:00 +West End,,DISK,NC,7/24/2001 23:03 +Maryland,,TRIANGLE,MD,7/24/2001 23:15 +Kansas City,,CIRCLE,MO,7/24/2001 23:30 +Scottsdale,,DISK,AZ,7/24/2001 23:30 +Gresham,,,OR,7/25/2001 0:00 +Asseteague Island State Park,,LIGHT,MD,7/25/2001 3:00 +Akron,,SPHERE,OH,7/25/2001 14:30 +Bellingham,,DISK,WA,7/25/2001 18:30 +San Jose,,VARIOUS,CA,7/25/2001 20:30 +Shawno,RED BLUE,LIGHT,WI,7/25/2001 22:00 +Phoenix,,DISK,AZ,7/25/2001 23:15 +Elkport,ORANGE,LIGHT,IA,7/26/2001 0:00 +Santa Rosa,,LIGHT,CA,7/26/2001 1:15 +Denver,,OVAL,CO,7/26/2001 19:50 +Dearborn Heights,,CYLINDER,MI,7/26/2001 20:15 +Hastings On Hudson,RED,FORMATION,NY,7/26/2001 23:25 +Meridian,,DIAMOND,ID,7/27/2001 0:45 +New York City,,OVAL,NY,7/27/2001 2:55 +Coalinga,RED,,CA,7/27/2001 3:32 +Rubicon,,LIGHT,CA,7/27/2001 12:20 +Guilford,,CONE,CT,7/27/2001 22:58 +Huntington,,LIGHT,UT,7/27/2001 23:45 +Sandy,,OVAL,UT,7/28/2001 3:00 +Temechula,,OTHER,CA,7/28/2001 3:00 +Wichita Falls,,TRIANGLE,TX,7/28/2001 3:20 +Chatsworth,,CIRCLE,CA,7/28/2001 5:00 +Dallas,,,TX,7/28/2001 11:30 +Garden City,,LIGHT,KS,7/28/2001 19:15 +Iron Mountain,,,MI,7/28/2001 22:45 +New Ulm,ORANGE,TRIANGLE,MN,7/28/2001 22:55 +Las Vegas,,LIGHT,NV,7/28/2001 23:25 +Canton,,LIGHT,MA,7/29/2001 1:00 +Flagstaff,,TRIANGLE,AZ,7/29/2001 2:24 +Downers Grove,,VARIOUS,IL,7/29/2001 20:20 +Interstate 95,,TRIANGLE,RI,7/29/2001 21:00 +Weatherford,,,TX,7/29/2001 21:43 +Lake in the Hills,,DISK,IL,7/29/2001 22:00 +Melbourne Beach,,LIGHT,FL,7/29/2001 23:30 +Gastonia,GREEN,LIGHT,NC,7/29/2001 23:42 +Fort Lauderdale,,FIREBALL,FL,7/29/2001 23:50 +Tucson,,,AZ,7/29/2001 23:59 +Bronte,,DIAMOND,TX,7/30/2001 1:30 +Nantucket,,LIGHT,MA,7/30/2001 3:30 +Stanwood,,SPHERE,WA,7/30/2001 12:30 +Andrews,,OVAL,TX,7/30/2001 21:40 +Jamestown,RED,LIGHT,RI,7/30/2001 22:00 +Hagerstown,,CIGAR,MD,7/31/2001 6:40 +San Diego,,OTHER,CA,7/31/2001 12:15 +Edgar,GREEN,LIGHT,WI,7/31/2001 19:30 +Blackstone,,TRIANGLE,VA,7/31/2001 22:00 +Tampa,BLUE,CIRCLE,FL,7/31/2001 22:00 +Madison,GREEN,LIGHT,WI,7/31/2001 23:15 +Wausau,,SPHERE,WI,7/31/2001 23:18 +Coleman,BLUE,CIRCLE,WI,7/31/2001 23:29 +Tony,,CIGAR,WI,7/31/2001 23:30 +Wausau,RED GREEN BLUE,CIRCLE,WI,7/31/2001 23:30 +Traverse City,,LIGHT,MI,7/31/2001 23:40 +Blanchester,,TRIANGLE,OH,7/31/2001 23:50 +Blanchester,,TRIANGLE,OH,7/31/2001 23:50 +Evart,,FIREBALL,MI,8/1/2001 0:20 +Vail,YELLOW BLUE,TRIANGLE,CO,8/1/2001 1:00 +Ashburn,,OTHER,VA,8/1/2001 3:00 +Jupiter Farms,,SPHERE,FL,8/1/2001 4:00 +Wayne,,OTHER,WV,8/1/2001 6:00 +Hagerstown,,CIGAR,MD,8/1/2001 7:00 +Fleetville,,LIGHT,PA,8/1/2001 12:00 +Sandstone,,CIGAR,MN,8/1/2001 16:30 +Binghamton,,EGG,NY,8/1/2001 19:15 +Downers Grove,,CYLINDER,IL,8/1/2001 20:15 +Austin,,CONE,TX,8/1/2001 20:30 +Gastonia,,LIGHT,NC,8/1/2001 21:00 +Sweetwater,,CONE,TN,8/1/2001 21:00 +Wetumpka,GREEN,LIGHT,AL,8/1/2001 21:10 +Des Moines,,CIRCLE,IA,8/1/2001 21:30 +Rockford,,LIGHT,IL,8/1/2001 22:00 +Oconto Falls,ORANGE,CIRCLE,WI,8/1/2001 22:20 +Canton,,FORMATION,CT,8/1/2001 22:30 +Iroquois,,OVAL,SD,8/1/2001 23:15 +Wildwood,,SPHERE,IL,8/2/2001 1:15 +Salem,,LIGHT,OR,8/2/2001 2:00 +Alton,,CIGAR,VA,8/2/2001 7:25 +Lexington,,,KY,8/2/2001 12:00 +Lexington,,OTHER,KY,8/2/2001 16:30 +Rowlett,,RECTANGLE,TX,8/2/2001 20:30 +Salina,,FIREBALL,KS,8/2/2001 22:10 +Ocala,BLUE,CIRCLE,FL,8/2/2001 23:00 +Hillsboro,,OVAL,OR,8/2/2001 23:21 +Portland,,LIGHT,OR,8/2/2001 23:25 +Mt. Baker National Forest,,,WA,8/3/2001 0:00 +Mercer,,LIGHT,WI,8/3/2001 0:30 +Ontario,,LIGHT,OR,8/3/2001 3:45 +Beaverton,,CIRCLE,OR,8/3/2001 9:19 +Tempe,,CIGAR,AZ,8/3/2001 12:14 +Chehalis,,,WA,8/3/2001 12:15 +Woodinville,,CIRCLE,WA,8/3/2001 18:00 +Jupiter,,OVAL,FL,8/3/2001 20:00 +Oconto Falls,,,WI,8/3/2001 23:35 +Colorado Springs,,CYLINDER,CO,8/4/2001 1:00 +Wheaton,,CIRCLE,IL,8/4/2001 16:00 +Ashtabula,,CIGAR,OH,8/4/2001 21:00 +Greenup,GREEN,RECTANGLE,IL,8/4/2001 21:01 +Rincon,YELLOW,DISK,GA,8/4/2001 22:00 +Chesapeake,,OVAL,VA,8/4/2001 23:00 +Houston,,CYLINDER,TX,8/4/2001 23:25 +Schaumburg,,LIGHT,IL,8/5/2001 1:30 +Poway,,DIAMOND,CA,8/5/2001 2:00 +Chicago,RED,OTHER,IL,8/5/2001 3:00 +New York City,,LIGHT,NY,8/5/2001 3:00 +Chicago,ORANGE,DIAMOND,IL,8/5/2001 3:15 +Chicago,,SPHERE,IL,8/5/2001 3:15 +Costa Mesa,,LIGHT,CA,8/5/2001 9:15 +Everett,,FORMATION,WA,8/5/2001 12:45 +San Dimas,,CYLINDER,CA,8/5/2001 16:30 +Costa Mesa,,LIGHT,CA,8/5/2001 21:10 +Chino,RED GREEN,CIGAR,CA,8/5/2001 21:20 +Bloomington,,LIGHT,IL,8/5/2001 22:34 +Albert Lea,,LIGHT,MN,8/6/2001 3:25 +Burbank,,FIREBALL,CA,8/6/2001 20:30 +Los Angeles,,LIGHT,CA,8/6/2001 20:55 +McCall,,,ID,8/6/2001 22:00 +Lincoln,,CIRCLE,WA,8/6/2001 23:00 +Portland,RED,CHEVRON,OR,8/6/2001 23:00 +Portland,RED,SPHERE,OR,8/6/2001 23:00 +Molalla,,CHEVRON,OR,8/6/2001 23:45 +Mooresville,,DISK,NC,8/7/2001 0:40 +Mammoth Lakes,,DISK,CA,8/7/2001 3:45 +Apple Valley,,SPHERE,CA,8/7/2001 15:00 +Evanston,,TRIANGLE,IL,8/7/2001 22:15 +Evanston,,TRIANGLE,IL,8/7/2001 22:20 +Muskegon,,TRIANGLE,MI,8/7/2001 22:20 +Nampa,,DISK,ID,8/7/2001 23:00 +Ridge,,VARIOUS,NY,8/8/2001 0:01 +Keller,,FIREBALL,TX,8/8/2001 2:00 +Bremerton,,DIAMOND,WA,8/8/2001 4:00 +Spokane,,,WA,8/8/2001 12:22 +Seattle,,LIGHT,WA,8/8/2001 22:00 +Yosemite National Park,,CHEVRON,CA,8/8/2001 22:15 +Shoreline,,CIRCLE,WA,8/8/2001 22:23 +Brant Lake,,SPHERE,NY,8/8/2001 23:00 +Indianapolis,,OVAL,IN,8/9/2001 17:30 +Bakersfield,,DISK,CA,8/9/2001 21:00 +Rosamond,ORANGE,OVAL,CA,8/9/2001 21:03 +Villa Ridge,,LIGHT,MO,8/9/2001 21:30 +Calico Rock,,CIGAR,AR,8/9/2001 22:00 +Covington,RED,FLASH,WA,8/9/2001 22:15 +Los Alamos,,LIGHT,NM,8/9/2001 23:45 +Cedar Hill,RED GREEN,LIGHT,TX,8/10/2001 3:45 +Plattsburgh,,,NY,8/10/2001 5:00 +Salida,,SPHERE,CO,8/10/2001 11:30 +Philadelphia,,CIGAR,PA,8/10/2001 11:47 +Watsonville,,DIAMOND,CA,8/10/2001 16:00 +Arlington,ORANGE BLUE,FIREBALL,TX,8/10/2001 22:00 +Cape Cod,,LIGHT,MA,8/10/2001 22:00 +Salmon La Sac,,OTHER,WA,8/10/2001 23:00 +Salmon La Sac,,DIAMOND,WA,8/10/2001 23:30 +Oakland,,LIGHT,ME,8/11/2001 2:00 +Corvallis,,OTHER,OR,8/11/2001 13:30 +Sarasota,,OTHER,FL,8/11/2001 17:00 +Mountlake Terrace,,SPHERE,WA,8/11/2001 19:30 +San Diego,RED,LIGHT,CA,8/11/2001 20:53 +Royal Palm Beach,RED,TRIANGLE,FL,8/11/2001 22:00 +Ivanhoe,,LIGHT,MN,8/11/2001 22:50 +Coeur d'Alene,BLUE,,ID,8/11/2001 23:00 +Mulino,,LIGHT,OR,8/11/2001 23:30 +Fort Wayne,,OVAL,IN,8/12/2001 0:00 +Seattle,YELLOW,LIGHT,WA,8/12/2001 2:30 +Boulder,,LIGHT,CO,8/12/2001 4:00 +Arvada,,TRIANGLE,CO,8/12/2001 9:20 +Kingman,BLUE,EGG,AZ,8/12/2001 15:00 +West Hollywood,,CIRCLE,CA,8/12/2001 18:40 +New Ulm,,LIGHT,MN,8/12/2001 20:32 +Las Vegas,RED GREEN,LIGHT,NV,8/12/2001 21:05 +Kentucky,,OVAL,KY,8/12/2001 21:34 +Jupiter,,TRIANGLE,FL,8/12/2001 22:30 +Northland,,LIGHT,WI,8/12/2001 22:30 +Petersburg,,TRIANGLE,AK,8/12/2001 22:53 +Fayetteville,,,GA,8/12/2001 23:00 +Reno,,LIGHT,NV,8/12/2001 23:05 +Coeur d'Alene,,LIGHT,ID,8/13/2001 0:10 +Bremerton,,LIGHT,WA,8/13/2001 0:30 +Elbe,ORANGE BLUE,OVAL,WA,8/13/2001 1:00 +Las Vegas,,,NM,8/13/2001 2:30 +Rancho Palos Verdes,,SPHERE,CA,8/13/2001 2:30 +West Olive,,DIAMOND,MI,8/13/2001 22:00 +Euclid,,LIGHT,OH,8/13/2001 22:30 +Lancaster,,LIGHT,OH,8/13/2001 22:31 +Pittsburgh,BLUE,LIGHT,PA,8/13/2001 22:45 +Dunlap,,RECTANGLE,IL,8/13/2001 23:10 +Sault Ste. Marie,,,MI,8/14/2001 2:30 +Stow,RED,DIAMOND,OH,8/14/2001 2:30 +Jupiter,,TEARDROP,FL,8/14/2001 5:50 +South Bend,,RECTANGLE,IN,8/14/2001 13:42 +Euclid,,LIGHT,OH,8/14/2001 21:30 +Portland,,OTHER,OR,8/14/2001 21:45 +Grants Pass,,LIGHT,OR,8/14/2001 21:48 +Vancouver,,LIGHT,WA,8/14/2001 21:50 +Helena,,DISK,MT,8/14/2001 22:00 +Inola,RED,DIAMOND,OK,8/14/2001 22:54 +Sequoia,,LIGHT,CA,8/15/2001 0:00 +Tarpon Springs,,,FL,8/15/2001 0:00 +Bristol,ORANGE,,RI,8/15/2001 2:30 +Wilmington,,,NC,8/15/2001 2:30 +Weatherford,,RECTANGLE,OK,8/15/2001 3:30 +Kentucky,,,KY,8/15/2001 6:00 +Blackwood,,DISK,NJ,8/15/2001 8:00 +Lawton,,DISK,OK,8/15/2001 11:05 +Lexington,GREEN,RECTANGLE,KY,8/15/2001 11:30 +Savannah,,OVAL,GA,8/15/2001 14:00 +Newark,RED,TRIANGLE,OH,8/15/2001 16:00 +Taft,,CROSS,CA,8/15/2001 20:00 +Firth,,LIGHT,ID,8/15/2001 21:30 +Rockville Centre,,TRIANGLE,NY,8/15/2001 21:30 +Enosburg Falls,,TRIANGLE,VT,8/15/2001 21:45 +Glendale,ORANGE,LIGHT,KY,8/15/2001 22:00 +Lake Placid,,FIREBALL,NY,8/15/2001 22:00 +Red Cloud,,LIGHT,NE,8/15/2001 22:00 +Roswell,,TRIANGLE,NM,8/15/2001 22:00 +Berlin,RED,,WI,8/15/2001 22:30 +Del Norte,,FIREBALL,CO,8/15/2001 22:45 +Redmond,,FIREBALL,WA,8/15/2001 23:30 +Charlotte,,CIGAR,NC,8/16/2001 0:00 +Mission Viejo,,TRIANGLE,CA,8/16/2001 16:30 +Taft,,LIGHT,CA,8/16/2001 19:30 +Lowville,,OVAL,NY,8/16/2001 21:00 +Redding,,LIGHT,CA,8/16/2001 21:15 +Palisades Park,,OVAL,NJ,8/16/2001 21:30 +Seaside Heights,,LIGHT,NJ,8/16/2001 22:00 +Texarkana,,FIREBALL,AR,8/16/2001 22:30 +Portland,,FIREBALL,OR,8/16/2001 23:10 +Grand Canyon,,TRIANGLE,AZ,8/16/2001 23:30 +Fulton,,CIGAR,MO,8/17/2001 8:10 +Portland,,SPHERE,OR,8/17/2001 12:35 +Salt Lake City,,LIGHT,UT,8/17/2001 17:00 +Cheyenne,,OTHER,WY,8/17/2001 20:30 +Vail,,,CO,8/17/2001 20:30 +Boone,,CIRCLE,NC,8/17/2001 21:10 +Prescott,,LIGHT,AZ,8/17/2001 21:15 +Arlington,RED,LIGHT,WA,8/17/2001 21:30 +Sisters,,LIGHT,OR,8/17/2001 22:00 +Green Lake,,LIGHT,WI,8/17/2001 22:10 +Dubois,,TRIANGLE,WY,8/17/2001 22:19 +Rawlins,RED ORANGE,,WY,8/17/2001 22:20 +Laramie,,FIREBALL,WY,8/17/2001 22:30 +Rock River,,FIREBALL,WY,8/17/2001 22:30 +Rock River,,FIREBALL,WY,8/17/2001 22:30 +Golden,,OTHER,CO,8/17/2001 22:45 +Salem,,LIGHT,OR,8/17/2001 23:15 +Brazoria,,,TX,8/18/2001 0:05 +Stow,,LIGHT,OH,8/18/2001 2:30 +Port Angeles,,LIGHT,WA,8/18/2001 3:45 +Savannah,,OTHER,TN,8/18/2001 10:13 +Kennewick,,LIGHT,WA,8/18/2001 21:19 +Errol,,TRIANGLE,NH,8/18/2001 22:00 +Wrenshall,,TRIANGLE,MN,8/18/2001 22:13 +Medford,,OTHER,OR,8/18/2001 22:15 +Barnum,,CIRCLE,MN,8/18/2001 22:30 +Columbia,,LIGHT,MO,8/18/2001 22:30 +Prescott,,FORMATION,AZ,8/18/2001 22:50 +Keizer,,TRIANGLE,OR,8/18/2001 23:15 +Saratoga,,LIGHT,CA,8/18/2001 23:45 +Bothell,RED YELLOW GREEN BLUE,TRIANGLE,WA,8/18/2001 23:58 +Fairmont,GREEN,DIAMOND,WV,8/19/2001 1:30 +Waltham,,FORMATION,MA,8/19/2001 3:40 +Ventura,,RECTANGLE,CA,8/19/2001 11:00 +Normal,,SPHERE,IL,8/19/2001 13:00 +Santa Rosa,,OTHER,CA,8/19/2001 20:00 +Muskego,,LIGHT,WI,8/19/2001 20:45 +Bettendorf,,LIGHT,IA,8/19/2001 21:00 +Sumner,,FORMATION,WA,8/19/2001 22:05 +Soldiers Grove,,,WI,8/19/2001 22:15 +Soldiers Grove,,LIGHT,WI,8/19/2001 22:15 +Orion,,LIGHT,MI,8/19/2001 22:30 +Columbia,,TRIANGLE,MO,8/19/2001 23:30 +Yukon,,CROSS,OK,8/19/2001 23:45 +San Diego,,LIGHT,CA,8/20/2001 0:30 +Lone Pine,,LIGHT,CA,8/20/2001 2:00 +Dean,,LIGHT,TX,8/20/2001 3:00 +Brewster,RED,DISK,MA,8/20/2001 4:30 +Denver,,FIREBALL,CO,8/20/2001 13:00 +Arroyo Grande,,LIGHT,CA,8/20/2001 20:00 +Milwaukie,RED,FORMATION,OR,8/20/2001 20:30 +Concord,,OTHER,CA,8/20/2001 21:00 +Natches,,TRIANGLE,WA,8/20/2001 21:00 +Grapevine,,LIGHT,TX,8/20/2001 21:30 +Rolla,ORANGE,LIGHT,MO,8/20/2001 21:33 +Edge,,LIGHT,TX,8/20/2001 22:00 +Mastic,,CIRCLE,NY,8/20/2001 22:30 +Bremerton,,CIRCLE,WA,8/20/2001 23:30 +Seattle,,OTHER,WA,8/21/2001 0:01 +New York City,,FLASH,NY,8/21/2001 0:20 +Ely,,LIGHT,MN,8/21/2001 4:00 +Camden,,OTHER,ME,8/21/2001 17:00 +Vista,,TRIANGLE,CA,8/21/2001 19:01 +Arroyo Grande,,LIGHT,CA,8/21/2001 20:00 +San Diego,,TRIANGLE,CA,8/21/2001 21:00 +Kingman,,VARIOUS,AZ,8/21/2001 21:15 +Lewiston,,,ME,8/22/2001 21:00 +Wyandotte,,LIGHT,MI,8/22/2001 21:00 +Litchfield,,,ME,8/22/2001 21:30 +Scottsdale,,LIGHT,AZ,8/22/2001 21:50 +Sabattus,,,ME,8/22/2001 22:00 +Tracy,,LIGHT,CA,8/22/2001 22:00 +Bloomington,,OVAL,IL,8/22/2001 23:15 +Galena,ORANGE,CHEVRON,MO,8/23/2001 21:00 +Glastonbury,,TEARDROP,CT,8/23/2001 21:03 +Garden City,,LIGHT,KS,8/23/2001 22:25 +Ogden,,LIGHT,IA,8/23/2001 23:00 +Renton,,FIREBALL,WA,8/24/2001 21:00 +Kennebunk,,FORMATION,ME,8/24/2001 21:30 +Hot Springs,,LIGHT,AR,8/24/2001 21:43 +Natick,,OVAL,MA,8/24/2001 22:00 +Oxford,RED YELLOW GREEN,LIGHT,ME,8/24/2001 22:50 +St. Johnsville,,OTHER,NY,8/24/2001 23:33 +Lopez Island,,FLASH,WA,8/25/2001 0:15 +Bayside,,,NY,8/25/2001 5:20 +Port Angeles,,TRIANGLE,WA,8/25/2001 11:30 +North Carolina,,DISK,NC,8/25/2001 20:00 +Laughlin,ORANGE,,NV,8/25/2001 20:45 +Deer Park,YELLOW GREEN BLUE,LIGHT,WA,8/25/2001 20:50 +Quincy,,FIREBALL,CA,8/25/2001 20:55 +Sacramento,,FIREBALL,CA,8/25/2001 20:55 +Carnation,,DISK,WA,8/25/2001 21:00 +Healdsburg,,TRIANGLE,CA,8/25/2001 21:00 +Jemez Springs,,LIGHT,NM,8/25/2001 21:00 +Lorane,BLUE,CIRCLE,OR,8/25/2001 21:00 +Wenatchee,,CIRCLE,WA,8/25/2001 21:00 +Levittown,,OTHER,NY,8/25/2001 21:10 +Bow-Edison,,FIREBALL,WA,8/25/2001 21:30 +Glendora,,EGG,CA,8/25/2001 22:30 +Shingletown,,TRIANGLE,CA,8/25/2001 23:00 +Oak Harbor,,LIGHT,WA,8/25/2001 23:59 +Phoenix,RED,,AZ,8/26/2001 1:30 +Seattle,RED,TRIANGLE,WA,8/26/2001 2:28 +Ashtabula,,LIGHT,OH,8/26/2001 4:45 +Seattle,,,WA,8/26/2001 10:40 +Roseville,,OVAL,CA,8/26/2001 12:15 +Fort Wayne,,OTHER,IN,8/26/2001 14:00 +Estes Park,,FLASH,CO,8/26/2001 20:30 +Phoenix,,LIGHT,AZ,8/26/2001 21:28 +Bolingbrook,,LIGHT,IL,8/26/2001 22:50 +Woodinville,,FIREBALL,WA,8/26/2001 23:08 +Martinez,,OTHER,CA,8/27/2001 4:15 +Martinez,,LIGHT,CA,8/27/2001 4:45 +Fairbanks,,CIRCLE,AK,8/27/2001 5:30 +Danbury,,CIRCLE,CT,8/27/2001 20:30 +Negaunee,,LIGHT,MI,8/27/2001 22:10 +Sunbury,,DISK,OH,8/28/2001 6:15 +Nashville,,CIGAR,IL,8/28/2001 13:00 +Syracuse,,TRIANGLE,NY,8/28/2001 20:00 +Chester,,RECTANGLE,VA,8/28/2001 20:43 +Vassalboro,,FIREBALL,ME,8/28/2001 21:00 +Burlington,,VARIOUS,NJ,8/28/2001 21:10 +Greendale,GREEN,DISK,WI,8/28/2001 21:45 +Burlington,,OVAL,NJ,8/28/2001 22:00 +Knife River,,TRIANGLE,MN,8/28/2001 22:30 +Geyserville,,LIGHT,CA,8/29/2001 5:15 +Grantville,,DISK,PA,8/29/2001 6:00 +Goodyear,,OTHER,AZ,8/29/2001 13:30 +North Hills,RED,,CA,8/29/2001 15:27 +Oil City,,VARIOUS,PA,8/29/2001 15:45 +Omaha,,TRIANGLE,NE,8/29/2001 18:00 +Marietta,,TRIANGLE,OH,8/29/2001 21:20 +Choctaw,,OVAL,OK,8/29/2001 22:00 +Greene,,,ME,8/29/2001 22:20 +East Killingly,,CIGAR,CT,8/29/2001 22:30 +Green Bay,,LIGHT,WI,8/29/2001 23:30 +Belleville,,SPHERE,WI,8/30/2001 1:00 +Salt Lake City,,CONE,UT,8/30/2001 10:32 +North Hreo,ORANGE,,VT,8/30/2001 15:00 +The Dalles,,TRIANGLE,OR,8/30/2001 19:00 +Airway Heights,,CIRCLE,WA,8/30/2001 19:30 +Rapid City,,LIGHT,SD,8/30/2001 21:00 +Owatonna,GREEN BLUE,,MN,8/30/2001 23:10 +El Cajon,,SPHERE,CA,8/31/2001 22:00 +Crete,,OVAL,IL,9/1/2001 0:30 +Roswell,,FORMATION,GA,9/1/2001 1:31 +Athens,,TRIANGLE,GA,9/1/2001 3:00 +Dallas,,DISK,TX,9/1/2001 3:00 +San Marcos,,OTHER,TX,9/1/2001 4:00 +Mannford,,OTHER,OK,9/1/2001 4:30 +Terre Haute,GREEN,SPHERE,IN,9/1/2001 4:39 +Terre Haute,,OVAL,IN,9/1/2001 4:57 +Philadelphia,,FIREBALL,PA,9/1/2001 16:30 +Gig Harbor,,CIGAR,WA,9/1/2001 19:00 +West Sedona,RED,LIGHT,AZ,9/1/2001 21:00 +Zionsville,,DISK,IN,9/1/2001 21:30 +Branch,ORANGE,VARIOUS,MI,9/1/2001 21:55 +Winter Springs,,TRIANGLE,FL,9/1/2001 23:00 +Charlotte,,DISK,NC,9/1/2001 23:40 +Arlen,,FLASH,TX,9/2/2001 0:00 +Bloomington,,OVAL,IN,9/2/2001 2:58 +Fort Worth,,CIRCLE,TX,9/2/2001 8:59 +Lynbrook,,SPHERE,NY,9/2/2001 17:35 +Hialeah,,FIREBALL,FL,9/2/2001 20:00 +Miami Lakes,,TEARDROP,FL,9/2/2001 21:10 +Carol City,,OTHER,FL,9/2/2001 21:30 +Santa Rosa,ORANGE,CROSS,CA,9/2/2001 22:55 +Somers,,RECTANGLE,CT,9/3/2001 5:16 +Somerset,,,WI,9/3/2001 12:00 +Berlin,,VARIOUS,OH,9/3/2001 18:00 +Midland,,TRIANGLE,TX,9/3/2001 19:00 +Santa Rosa,,CROSS,CA,9/3/2001 21:25 +Oceanside,,FIREBALL,NY,9/3/2001 21:30 +Wittmann,,TEARDROP,AZ,9/3/2001 22:07 +Holland,,DIAMOND,MI,9/3/2001 23:00 +Springfield,RED GREEN,OVAL,OR,9/4/2001 5:20 +Hawk Springs,,TRIANGLE,WY,9/4/2001 12:30 +Whitesboro,,SPHERE,NY,9/4/2001 15:45 +Scottsdale,,LIGHT,AZ,9/4/2001 18:55 +Crescent City,,RECTANGLE,IL,9/4/2001 19:00 +Columbia City,,LIGHT,OR,9/4/2001 19:30 +Warren,,CIRCLE,MI,9/4/2001 20:00 +Crestline,,OTHER,OH,9/4/2001 21:00 +Sedona,,LIGHT,AZ,9/4/2001 22:15 +Mill Valley,,LIGHT,CA,9/4/2001 23:00 +Largo,,LIGHT,FL,9/5/2001 0:30 +Fairborn,RED,TRIANGLE,OH,9/5/2001 2:40 +Westbrook,RED BLUE,VARIOUS,CT,9/5/2001 8:30 +Auburn,,,WA,9/5/2001 12:58 +Morristown,,SPHERE,NJ,9/5/2001 18:35 +Guntersville,,LIGHT,AL,9/5/2001 20:45 +Parkersburg,,LIGHT,WV,9/5/2001 20:49 +Healdsburg,,RECTANGLE,CA,9/5/2001 21:30 +Wasco,,FIREBALL,CA,9/5/2001 21:35 +Honolulu,,LIGHT,HI,9/5/2001 23:15 +Newtown,,,CT,9/5/2001 23:20 +Rockwell City,RED,TRIANGLE,IA,9/6/2001 3:00 +Antioch,,FIREBALL,CA,9/6/2001 4:50 +Stamford,,FIREBALL,CT,9/6/2001 5:30 +Leesburg,,CIGAR,VA,9/6/2001 5:50 +Waterford,,CIGAR,CT,9/6/2001 5:50 +Frederick,,CIGAR,MD,9/6/2001 6:00 +Florence,RED,CIRCLE,OR,9/6/2001 10:30 +Richmond,,VARIOUS,VA,9/6/2001 13:28 +Fuquay Varina,,LIGHT,NC,9/6/2001 20:25 +Medina,,,OH,9/6/2001 21:00 +Naperville,,LIGHT,IL,9/6/2001 21:00 +Great Falls,,LIGHT,VA,9/6/2001 21:45 +Warren,,DISK,MI,9/6/2001 21:55 +Lincoln,,DISK,RI,9/6/2001 22:45 +Flushing,,LIGHT,MI,9/6/2001 23:05 +Eugene,,TRIANGLE,OR,9/7/2001 10:00 +Newport News,GREEN,FLASH,VA,9/7/2001 20:45 +Vancouver,,OVAL,WA,9/7/2001 20:54 +Fort Worth,,FORMATION,TX,9/8/2001 0:35 +Granite Falls,,CIGAR,WA,9/8/2001 17:30 +Blairsville,,SPHERE,GA,9/8/2001 18:30 +Newport News,,,VA,9/8/2001 21:00 +St. Peters,,OVAL,MO,9/8/2001 21:00 +Manassas,,OVAL,VA,9/8/2001 21:15 +Salem,,FLASH,OR,9/8/2001 21:30 +Flagstaff,,LIGHT,AZ,9/8/2001 22:30 +Wichita,,CIGAR,KS,9/9/2001 2:51 +Detroit,,DISK,MI,9/9/2001 11:00 +Pepperell,,SPHERE,MA,9/9/2001 13:02 +San Diego,,,CA,9/9/2001 15:00 +Spokane,,,WA,9/9/2001 16:40 +Angeles National Forest Area,,CIGAR,CA,9/9/2001 20:00 +Groton,,SPHERE,NH,9/9/2001 21:00 +Springfield,BLUE,,MA,9/9/2001 21:00 +Rochelle,,LIGHT,TX,9/9/2001 22:00 +Eugene,,SPHERE,OR,9/9/2001 23:00 +Lyndhurst,,DISK,OH,9/10/2001 15:30 +Austin,,TRIANGLE,TX,9/10/2001 19:00 +Enumclaw,,,WA,9/10/2001 20:10 +Duluth,,LIGHT,MN,9/10/2001 20:15 +Kansas City,,LIGHT,MO,9/10/2001 20:55 +Salt Lake City,,TRIANGLE,UT,9/10/2001 21:00 +Salt Lake City,,TRIANGLE,UT,9/10/2001 21:00 +Arvada,RED,DIAMOND,CO,9/10/2001 21:30 +Dayton,RED,LIGHT,OH,9/10/2001 22:00 +Vancouver,,LIGHT,WA,9/10/2001 22:25 +Highlands Ranch,,FORMATION,CO,9/10/2001 22:30 +Louisville,,LIGHT,KY,9/10/2001 22:35 +Lee's Summit,,LIGHT,MO,9/10/2001 23:00 +McMinnville,,,OR,9/10/2001 23:00 +Merriam,,EGG,KS,9/10/2001 23:16 +New York City,,,NY,9/11/2001 0:00 +Philadelphia,RED,,PA,9/11/2001 0:00 +Warrensburg,,TRIANGLE,MO,9/11/2001 3:00 +Flagler,,LIGHT,FL,9/11/2001 4:30 +New York City,,SPHERE,NY,9/11/2001 5:00 +Hawley,,CIGAR,MN,9/11/2001 6:00 +New York City,,OTHER,NY,9/11/2001 6:00 +New York City,,DISK,NY,9/11/2001 8:45 +New York City,,OVAL,NY,9/11/2001 8:45 +Erie,,CIGAR,PA,9/11/2001 9:00 +Madhatan,,EGG,NY,9/11/2001 9:00 +Monticello,,FORMATION,WI,9/11/2001 9:00 +New York,,LIGHT,NY,9/11/2001 9:00 +New York,,TRIANGLE,NY,9/11/2001 9:05 +New York City,,OTHER,NY,9/11/2001 9:10 +New York City,,,NY,9/11/2001 10:00 +Albuquerque,,SPHERE,NM,9/11/2001 11:30 +New York City,,SPHERE,NY,9/11/2001 12:00 +Bradley Beach,,CIGAR,NJ,9/11/2001 12:30 +Solon,,SPHERE,OH,9/11/2001 13:30 +Commack,,CHEVRON,NY,9/11/2001 15:00 +Frankfort,,LIGHT,IL,9/11/2001 19:00 +Orland Park,,FORMATION,IL,9/11/2001 19:00 +Lake Havasu City,,LIGHT,AZ,9/11/2001 20:00 +Bolingbrook,,CIRCLE,IL,9/11/2001 20:30 +Cyril,,LIGHT,OK,9/11/2001 20:30 +Mesa,,CIRCLE,AZ,9/11/2001 20:30 +Griffin,,DISK,GA,9/11/2001 20:45 +Revere,,VARIOUS,MA,9/11/2001 21:00 +Seattle,,LIGHT,WA,9/11/2001 21:00 +Santa Fe,,CONE,NM,9/11/2001 21:22 +Arlington,,CIRCLE,MA,9/11/2001 22:00 +Fairhaven,,CIRCLE,MA,9/11/2001 22:00 +Shingle Springs,,LIGHT,CA,9/11/2001 22:00 +Ashgrove,,LIGHT,MO,9/11/2001 22:01 +Colon,,TRIANGLE,MI,9/11/2001 22:10 +Darien,RED,FORMATION,IL,9/11/2001 22:30 +Hellertown,,LIGHT,PA,9/11/2001 23:00 +Schenectady,,LIGHT,NY,9/11/2001 23:30 +Tallahassee,,LIGHT,FL,9/11/2001 23:30 +Los Angeles,,CIRCLE,CA,9/12/2001 0:00 +Lansdale,RED GREEN,TEARDROP,PA,9/12/2001 0:30 +Denver,,LIGHT,CO,9/12/2001 1:20 +Dickson,,RECTANGLE,TN,9/12/2001 2:00 +Boise,BLUE,OTHER,ID,9/12/2001 3:00 +Mountain View,RED,LIGHT,CA,9/12/2001 3:45 +Sacramento,,DISK,CA,9/12/2001 7:30 +Big Sur,,FIREBALL,CA,9/12/2001 12:00 +Linden,,VARIOUS,NJ,9/12/2001 14:15 +Blackshear,,LIGHT,GA,9/12/2001 18:00 +Bordentown,,TRIANGLE,NJ,9/12/2001 20:30 +Nebraska City,,LIGHT,NE,9/12/2001 21:30 +Forest City,,,NC,9/12/2001 22:00 +Louisville,,OTHER,KY,9/12/2001 22:00 +Cleveland,,LIGHT,OH,9/12/2001 22:10 +Oxford,,,OH,9/12/2001 23:59 +Williamsburg,,LIGHT,VA,9/13/2001 0:30 +Lake Forest Park,,LIGHT,WA,9/13/2001 1:30 +Lakeland,,OTHER,FL,9/13/2001 1:30 +Fontana,,DISK,KS,9/13/2001 10:50 +Kearney,,CIGAR,MO,9/13/2001 14:00 +Westbury,,,NY,9/13/2001 15:00 +Carmichael,,CIRCLE,CA,9/13/2001 16:00 +New Orleans,,SPHERE,LA,9/13/2001 17:00 +Tulsa,,,OK,9/13/2001 17:45 +North Lima,,RECTANGLE,OH,9/13/2001 18:30 +Kings Park,,OTHER,NY,9/13/2001 19:00 +Centerville,,,OH,9/13/2001 21:02 +Agua Dulce,,LIGHT,CA,9/13/2001 22:00 +Berne,BLUE,LIGHT,NY,9/13/2001 22:00 +San Rafael,,,CA,9/13/2001 22:05 +Duvall,,,WA,9/13/2001 22:30 +Lowell,RED,FIREBALL,IN,9/13/2001 23:00 +Rockford,,FIREBALL,IL,9/13/2001 23:00 +Kingston,,LIGHT,WA,9/14/2001 5:21 +Marysville,,LIGHT,WA,9/14/2001 17:30 +Saugus,,LIGHT,CA,9/14/2001 20:43 +Cadiz,,LIGHT,OH,9/14/2001 20:45 +Traverse City,,RECTANGLE,MI,9/14/2001 21:00 +Yerington,,CHEVRON,NV,9/14/2001 22:35 +Niagara Falls,,TEARDROP,NY,9/15/2001 0:05 +Vallejo,,DISK,CA,9/15/2001 0:15 +Mt. Morris,GREEN,CIRCLE,MI,9/15/2001 1:25 +Norcross,,LIGHT,GA,9/15/2001 3:00 +Gladstone,,LIGHT,MI,9/15/2001 4:00 +Portage,YELLOW,OTHER,WI,9/15/2001 4:15 +Lansing,,SPHERE,MI,9/15/2001 12:45 +Raritan Bay,,OTHER,NJ,9/15/2001 17:00 +Tampa,,OTHER,GA,9/15/2001 18:30 +Seattle,,CIRCLE,WA,9/15/2001 19:30 +Raleigh,ORANGE,LIGHT,NC,9/15/2001 20:22 +Lafayette,,,IN,9/15/2001 20:30 +Lafayette,RED,OTHER,IN,9/15/2001 21:00 +Seattle,RED BLUE,LIGHT,WA,9/15/2001 21:30 +Nenana,GREEN,FIREBALL,AK,9/15/2001 23:55 +Morristown,,TRIANGLE,NJ,9/16/2001 0:00 +Sault Ste. Marie,,FIREBALL,MI,9/16/2001 1:00 +Hampton,,RECTANGLE,VA,9/16/2001 3:30 +Union,BLUE,SPHERE,NJ,9/16/2001 11:35 +Grand Rapids,,CIGAR,MI,9/16/2001 13:14 +Garden City Park,,,NY,9/16/2001 15:30 +Bloomfield,,TEARDROP,NJ,9/16/2001 19:00 +Chicago,,LIGHT,IL,9/16/2001 19:00 +Lima,,,OH,9/16/2001 19:30 +New York City,,CIRCLE,NY,9/16/2001 20:15 +Bellevue,,FIREBALL,WA,9/16/2001 21:20 +Bar Harbor,,LIGHT,ME,9/16/2001 22:00 +College Park,,LIGHT,MD,9/16/2001 22:07 +Bonita Springs,,CIRCLE,FL,9/16/2001 22:38 +Bonita Springs,RED BLUE,CIRCLE,FL,9/16/2001 22:38 +South Bend,RED GREEN BLUE,OTHER,IN,9/16/2001 22:40 +Massillon,,OTHER,OH,9/16/2001 23:45 +Wilmington,,CIRCLE,OH,9/17/2001 1:00 +Florence,,FLASH,KY,9/17/2001 4:45 +Edgewater,,TRIANGLE,FL,9/17/2001 5:55 +Fort Smith,,,AR,9/17/2001 21:00 +Wayne,,CIRCLE,MI,9/18/2001 1:00 +Phoenix,GREEN,CIRCLE,AZ,9/18/2001 4:00 +Grafton,,LIGHT,MA,9/18/2001 19:00 +Lincoln City,,LIGHT,OR,9/18/2001 22:00 +Seattle,RED,LIGHT,WA,9/18/2001 22:30 +Woodward,,TRIANGLE,OK,9/19/2001 9:38 +Woodward,,TRIANGLE,OK,9/19/2001 9:38 +Gatesville,,,TX,9/19/2001 11:00 +Westminster West,,OTHER,MD,9/19/2001 12:00 +San Bruno,,OTHER,CA,9/19/2001 14:30 +Seattle,,,WA,9/19/2001 18:46 +Amarillo,,DISK,TX,9/19/2001 22:30 +New York City,,VARIOUS,NY,9/20/2001 15:00 +Seattle,,OTHER,WA,9/20/2001 16:10 +Lakewood,,SPHERE,CO,9/20/2001 19:15 +Glensfalls,,,NY,9/20/2001 22:00 +Middleboro,,RECTANGLE,MA,9/20/2001 23:00 +Renton,,FLASH,WA,9/20/2001 23:00 +Willmar,,DISK,MN,9/21/2001 8:40 +Valdosta,,TRIANGLE,GA,9/21/2001 12:00 +Omaha,,CIGAR,NE,9/21/2001 14:30 +East Lansing,,DISK,MI,9/21/2001 15:00 +Chatfield,,OVAL,TX,9/21/2001 19:30 +Albuquerque,,OVAL,NM,9/21/2001 20:10 +Milford,,RECTANGLE,IA,9/21/2001 20:45 +Marshall,,FLASH,MO,9/21/2001 22:19 +Las Vegas,BLUE,FIREBALL,NV,9/21/2001 23:00 +Daniel's Park,,SPHERE,CO,9/22/2001 9:15 +Daniel's Park,,SPHERE,CO,9/22/2001 9:20 +Murfreesboro,ORANGE,CIRCLE,TN,9/22/2001 18:01 +Daniel's Park,RED,SPHERE,CO,9/22/2001 21:00 +Pueblo,,TRIANGLE,CO,9/22/2001 21:00 +Daniel's Park,,SPHERE,CO,9/22/2001 21:15 +Lincoln,YELLOW,LIGHT,NH,9/22/2001 21:15 +Daniel's Park,RED,SPHERE,CO,9/22/2001 21:20 +Chippewa Falls,,,WI,9/22/2001 21:45 +Livermore,,SPHERE,CO,9/22/2001 21:50 +Topaz Lake,,OVAL,NV,9/22/2001 22:00 +Riverside,,OTHER,CA,9/23/2001 9:35 +Snellville,,OTHER,GA,9/23/2001 10:30 +Bothell,,TRIANGLE,WA,9/23/2001 17:30 +Bothell,,TRIANGLE,WA,9/23/2001 17:30 +Bothell,,TRIANGLE,WA,9/23/2001 17:30 +Junction,,OVAL,TX,9/23/2001 22:58 +Fountain Hills,,TRIANGLE,AZ,9/25/2001 4:20 +Santa Barbara,RED,,CA,9/25/2001 9:15 +Sunbury,,LIGHT,PA,9/25/2001 14:00 +Columbia,,LIGHT,SC,9/25/2001 21:00 +Ashgrove,,,MO,9/25/2001 21:15 +Veedersburg,,TRIANGLE,IN,9/25/2001 21:45 +New York City,BLUE,LIGHT,NY,9/26/2001 0:04 +Whittier,,FORMATION,CA,9/26/2001 5:23 +Thiells,RED,CIRCLE,NY,9/26/2001 19:35 +Hayward,,OVAL,CA,9/26/2001 20:45 +Kansas City,,CIGAR,MO,9/27/2001 17:00 +Arches National Park,,DISK,UT,9/27/2001 20:00 +Jackson,,LIGHT,MS,9/27/2001 20:00 +Tallahassee,,TRIANGLE,FL,9/27/2001 20:25 +Algonquin,,FIREBALL,IL,9/27/2001 21:00 +Denver,,LIGHT,CO,9/27/2001 22:00 +Davison,,CIGAR,MI,9/28/2001 2:30 +Marin County,,,CA,9/28/2001 5:45 +Reno,,FIREBALL,NV,9/28/2001 8:15 +Fulton County,,RECTANGLE,GA,9/28/2001 21:30 +Green Bay,GREEN,FIREBALL,WI,9/28/2001 21:55 +Richmond,,OTHER,VA,9/28/2001 23:00 +Ventura,,OTHER,CA,9/29/2001 10:30 +Las Vegas,,OTHER,NV,9/29/2001 19:00 +Houston,,CIGAR,TX,9/29/2001 20:10 +New York City,,CONE,NY,9/29/2001 21:32 +Poughquag,YELLOW GREEN,,NY,9/29/2001 22:00 +Albany,,FORMATION,NY,9/29/2001 23:00 +Phoenix,,FIREBALL,AZ,9/30/2001 1:05 +Tempe,,OTHER,AZ,9/30/2001 1:30 +New York City,,LIGHT,NY,9/30/2001 1:53 +Barnesville,RED GREEN BLUE,TRIANGLE,OH,9/30/2001 3:00 +Cypress,,DISK,CA,9/30/2001 10:00 +Hanford,,DISK,CA,9/30/2001 14:25 +Hillsboro,,VARIOUS,OR,9/30/2001 17:26 +Kansas City,,SPHERE,MO,9/30/2001 19:00 +Portland,GREEN,FORMATION,OR,9/30/2001 19:15 +Lakewood,RED,SPHERE,CO,9/30/2001 19:45 +Lakewood,,CIRCLE,CO,9/30/2001 20:00 +Lakewood,,SPHERE,CO,9/30/2001 20:00 +Lakewood,,SPHERE,CO,9/30/2001 20:00 +Marlboro,,,NJ,9/30/2001 20:48 +Sabattus,,OVAL,ME,9/30/2001 21:00 +San Jose,,LIGHT,CA,9/30/2001 21:30 +Running Springs,,FIREBALL,CA,9/30/2001 21:50 +Seattle,,,WA,10/1/2001 1:05 +Kansas City,,LIGHT,MO,10/1/2001 19:00 +Houghton Lake,,TRIANGLE,MI,10/1/2001 20:30 +Greene,RED,OVAL,ME,10/1/2001 20:35 +,,TRIANGLE,CA,10/1/2001 21:00 +Lafayette,RED BLUE,VARIOUS,NY,10/1/2001 21:00 +Lynden,,LIGHT,WA,10/1/2001 22:00 +Albany,,FLASH,NY,10/1/2001 22:30 +New York City,,TRIANGLE,NY,10/1/2001 22:30 +Sandyville,,EGG,WV,10/2/2001 6:50 +Easton,,TRIANGLE,PA,10/2/2001 7:15 +Boston,,DISK,PA,10/2/2001 17:00 +Latrobe,,FIREBALL,PA,10/2/2001 19:30 +Howell,,FIREBALL,MI,10/2/2001 19:39 +St.Johns,,OTHER,MI,10/2/2001 19:45 +Maple Valley,,OTHER,WA,10/2/2001 21:30 +Bonifay,,RECTANGLE,FL,10/3/2001 11:00 +Bellevue,,OTHER,WA,10/3/2001 20:15 +Wilmington,,CIRCLE,MA,10/3/2001 20:15 +Dunbar,,LIGHT,WV,10/3/2001 20:20 +Devore,ORANGE,OTHER,CA,10/3/2001 21:30 +Columbia,,TRIANGLE,MO,10/3/2001 22:32 +Hoffman,RED BLUE,TRIANGLE,IL,10/4/2001 3:30 +Altus,BLUE,LIGHT,OK,10/4/2001 5:00 +South Fork,,CIGAR,CO,10/4/2001 14:00 +Minneapolis,,OVAL,MN,10/4/2001 16:00 +Mt. Bethel,,,PA,10/4/2001 16:30 +Barstow,,CIRCLE,CA,10/4/2001 19:00 +Ashgrove,,DIAMOND,MO,10/4/2001 21:03 +Ashgrove,,LIGHT,MO,10/4/2001 22:00 +Federal Way,,FIREBALL,WA,10/5/2001 7:05 +Provo,,CIRCLE,UT,10/5/2001 13:30 +Key West,,RECTANGLE,FL,10/5/2001 15:00 +Page,,CIRCLE,AZ,10/5/2001 19:00 +Henderson,,OVAL,KY,10/5/2001 21:00 +Myrtle Beach,,CIRCLE,SC,10/5/2001 23:00 +Wisconsin Rapids,,,WI,10/6/2001 20:50 +Park Forest,RED ORANGE,TRIANGLE,IL,10/6/2001 22:00 +Kennett,,TRIANGLE,MO,10/7/2001 1:30 +Northford,,TRIANGLE,CT,10/7/2001 11:28 +Richmond,,OTHER,KY,10/7/2001 14:00 +New Philadelphia,,CYLINDER,OH,10/7/2001 17:30 +Lake Elsinore,RED,LIGHT,CA,10/7/2001 23:30 +Mt.Vernon,,TRIANGLE,IL,10/8/2001 1:15 +Pittsburg,,TRIANGLE,IL,10/8/2001 1:45 +Norfolk,,FORMATION,VA,10/8/2001 20:00 +Miami,,OTHER,FL,10/8/2001 22:30 +Sacramento,,DISK,CA,10/9/2001 7:00 +Emeryville,,,CA,10/9/2001 18:50 +Bowling Green,,OVAL,KY,10/9/2001 21:15 +Saugus,,SPHERE,MA,10/9/2001 22:00 +Rockwell City,RED,TRIANGLE,IA,10/10/2001 3:00 +Hayward,RED,CIRCLE,CA,10/10/2001 20:35 +Ottumwa,BLUE,RECTANGLE,IA,10/10/2001 21:15 +Fresno,,VARIOUS,CA,10/10/2001 21:30 +Phoenix,,TRIANGLE,AZ,10/10/2001 22:00 +Virginia Beach,,TRIANGLE,VA,10/10/2001 23:00 +Somerset,,LIGHT,WI,10/11/2001 1:00 +Fairbanks,RED,OTHER,AK,10/11/2001 2:15 +Denver,,LIGHT,CO,10/11/2001 5:15 +Columbia,,TEARDROP,MS,10/11/2001 8:15 +Grass Valley,,TRIANGLE,CA,10/11/2001 20:35 +Lima,,TEARDROP,OH,10/11/2001 23:49 +Miami,,CIRCLE,FL,10/12/2001 1:30 +Miami,RED GREEN,DISK,FL,10/12/2001 5:30 +Denver,RED,DISK,CO,10/12/2001 15:40 +Phoenix,,FORMATION,AZ,10/12/2001 18:30 +Eagle River,,OTHER,AK,10/12/2001 23:08 +Poughkeepsie,,TRIANGLE,NY,10/13/2001 0:45 +Franconia Notch,,CIGAR,NH,10/13/2001 15:00 +Franconia Notch,,CIGAR,NH,10/13/2001 17:30 +Avondale,ORANGE,TRIANGLE,AZ,10/13/2001 19:00 +Minneapolis,,LIGHT,MN,10/13/2001 19:55 +Stockton,,TRIANGLE,CA,10/13/2001 22:00 +West Carrollton,,CIRCLE,OH,10/13/2001 23:00 +Hialeah,,OTHER,FL,10/14/2001 0:30 +Gray,,CIRCLE,TX,10/14/2001 1:30 +Chicago,,OTHER,IL,10/14/2001 3:30 +Adkins,RED BLUE,DIAMOND,TX,10/14/2001 6:00 +Franklin,,OTHER,MA,10/14/2001 17:00 +Lake Elmo,,CHEVRON,MN,10/14/2001 20:45 +Des Moines,,LIGHT,IA,10/14/2001 21:03 +Savanna,,LIGHT,IL,10/14/2001 22:00 +Chugwater,,LIGHT,WY,10/15/2001 3:00 +Martin,,TRIANGLE,TN,10/15/2001 6:30 +Bentonville,,FORMATION,AR,10/15/2001 9:15 +Layton,,SPHERE,UT,10/15/2001 10:00 +Newport,,CIRCLE,NC,10/15/2001 10:00 +Santa Cruz,,DISK,CA,10/15/2001 12:00 +Atlanta,,SPHERE,GA,10/15/2001 13:00 +New York City,,TRIANGLE,NY,10/15/2001 14:00 +Chico,,OTHER,CA,10/15/2001 15:00 +New York City,,VARIOUS,NY,10/15/2001 15:00 +Valdese,,TRIANGLE,NC,10/15/2001 17:00 +Harrisonburg,,SPHERE,VA,10/15/2001 17:25 +Aurora,,FORMATION,CO,10/15/2001 17:30 +Rapid City,,TRIANGLE,SD,10/15/2001 19:35 +Findlay,,TEARDROP,OH,10/15/2001 20:00 +Ferndale,,CIRCLE,WA,10/15/2001 20:21 +Kent,,CIRCLE,WA,10/15/2001 20:22 +Port Orchard,BLUE,CIRCLE,WA,10/15/2001 20:22 +Renton,,CYLINDER,WA,10/15/2001 20:22 +Seattle,BLUE,CIRCLE,WA,10/15/2001 20:22 +Vashon Island,GREEN,FIREBALL,WA,10/15/2001 20:22 +Moses Lake,GREEN,FIREBALL,WA,10/15/2001 20:23 +North Bend,,FIREBALL,WA,10/15/2001 20:45 +Garden Valley,GREEN,FIREBALL,CA,10/15/2001 21:00 +Smiths Ferry,GREEN BLUE,FIREBALL,ID,10/15/2001 21:22 +Seattle,,FIREBALL,WA,10/15/2001 22:00 +Manassas,,LIGHT,VA,10/15/2001 22:17 +Milford,,,CT,10/15/2001 22:30 +Wahpeton,,EGG,ND,10/15/2001 22:30 +San Antonio,,LIGHT,TX,10/15/2001 23:00 +Mt. Olive,,,WV,10/15/2001 23:59 +Polk County,,,OR,10/16/2001 0:00 +Plymouth,,TRIANGLE,WI,10/16/2001 20:30 +Plymouth,,TRIANGLE,WI,10/16/2001 20:30 +Petit Jean Mountain,,LIGHT,AR,10/16/2001 21:30 +Nashville,,CHEVRON,TN,10/16/2001 22:00 +Haworth,,VARIOUS,OK,10/16/2001 22:45 +Johnstown,,FIREBALL,OH,10/17/2001 0:00 +Denver,,SPHERE,CO,10/17/2001 15:10 +Cadiz-Wallonia area,,OTHER,KY,10/17/2001 17:00 +Las Vegas,,FORMATION,NV,10/17/2001 17:00 +Bonita Springs,GREEN,CIRCLE,FL,10/17/2001 20:45 +Battle Ground,,LIGHT,WA,10/17/2001 21:30 +Jacksonville,,TRIANGLE,FL,10/17/2001 22:25 +Crowley,,VARIOUS,TX,10/17/2001 22:29 +San Antonio,,LIGHT,TX,10/18/2001 1:30 +Houston,,LIGHT,TX,10/18/2001 7:36 +Fort Payne,,CIRCLE,AL,10/18/2001 17:51 +Sarasota,,OTHER,FL,10/18/2001 18:32 +Pilot Mountain,,SPHERE,NC,10/18/2001 22:00 +Bedford,,RECTANGLE,IN,10/18/2001 22:30 +Conowingo,,LIGHT,MD,10/19/2001 4:00 +Vanceburg,,FIREBALL,KY,10/19/2001 19:50 +Buckley,RED BLUE,TRIANGLE,WA,10/19/2001 20:05 +Phoenix,,TRIANGLE,AZ,10/19/2001 20:45 +Bothell,,,WA,10/19/2001 22:00 +Wendell,,LIGHT,ID,10/19/2001 22:05 +Cocoa Beach,,TRIANGLE,FL,10/20/2001 13:00 +Terrell,,CIRCLE,TX,10/20/2001 15:00 +Eagle Rock,RED,VARIOUS,CA,10/20/2001 20:00 +Chelsea,GREEN,DIAMOND,MI,10/20/2001 23:59 +Callahan County,,LIGHT,TX,10/21/2001 6:00 +Murfreesboro,,OVAL,TN,10/21/2001 6:30 +Durham,,FIREBALL,NC,10/21/2001 8:30 +Mound,,OTHER,MN,10/21/2001 14:00 +Pittsburgh,,DIAMOND,PA,10/21/2001 14:00 +Downey,,OVAL,CA,10/21/2001 14:09 +Avon,GREEN,FIREBALL,NY,10/21/2001 22:00 +Centerburg,RED,LIGHT,OH,10/21/2001 22:00 +Verona,,TRIANGLE,WI,10/22/2001 0:35 +Denver,,SPHERE,CO,10/22/2001 7:23 +Sturgeon Bay,,LIGHT,WI,10/22/2001 23:00 +Hayward,,CROSS,CA,10/24/2001 6:02 +Miami,,VARIOUS,FL,10/24/2001 14:45 +Manchester,,LIGHT,NH,10/24/2001 20:00 +Evanston,GREEN,OVAL,WY,10/24/2001 23:00 +Houston,,OVAL,TX,10/25/2001 1:31 +Terrel,,OVAL,TX,10/25/2001 14:30 +Klamath Falls,BLUE,LIGHT,OR,10/25/2001 21:00 +Phoenix,,TRIANGLE,AZ,10/25/2001 22:20 +Phoenix,,TRIANGLE,AZ,10/25/2001 22:20 +Lawrence,,OTHER,KS,10/25/2001 22:45 +Amherst,,,VA,10/25/2001 23:15 +Woodbridge,RED,RECTANGLE,VA,10/26/2001 0:30 +Kountze,,LIGHT,TX,10/26/2001 1:30 +Potomac,RED,LIGHT,MD,10/26/2001 5:00 +Clarksville,,CYLINDER,AR,10/26/2001 9:00 +Adams,,DISK,TN,10/26/2001 9:40 +Tulsa,,LIGHT,OK,10/26/2001 19:00 +Burbank,,OTHER,CA,10/26/2001 20:45 +Santa Monica,,LIGHT,CA,10/26/2001 20:45 +Napoleon,,LIGHT,ND,10/27/2001 6:30 +Napoleon,,LIGHT,ND,10/27/2001 6:30 +Huntsville,,OTHER,TX,10/27/2001 11:50 +Roseville,,CHEVRON,CA,10/27/2001 18:00 +Reedsburg,,TRIANGLE,OH,10/27/2001 21:00 +Sebastopol,,DISK,CA,10/27/2001 22:00 +Sebastopol,,DISK,CA,10/27/2001 22:00 +Houston,,LIGHT,TX,10/27/2001 22:38 +Skipperville,,FORMATION,AL,10/27/2001 23:59 +Beaver,,DISK,WV,10/28/2001 0:28 +Beaver,GREEN,DISK,WV,10/28/2001 0:28 +Rolla,RED,LIGHT,MO,10/28/2001 0:30 +Bangor,,VARIOUS,ME,10/28/2001 1:00 +Carlisle,,CHEVRON,IA,10/28/2001 1:20 +Alma,,SPHERE,MI,10/28/2001 3:00 +Montello,,,NV,10/28/2001 4:10 +Memphis,,LIGHT,TN,10/28/2001 13:00 +China Grove,,,NC,10/28/2001 16:21 +Little Rock,,CIGAR,AR,10/28/2001 17:05 +Everett,,,WA,10/28/2001 20:00 +Laramie,,FIREBALL,WY,10/28/2001 21:00 +Paramus,,LIGHT,NJ,10/28/2001 23:00 +Martinez,,LIGHT,GA,10/29/2001 12:30 +Surgoinsville,,,TN,10/29/2001 19:30 +Lexington,RED GREEN,CIRCLE,SC,10/29/2001 20:00 +Aberdeen,,FIREBALL,WA,10/29/2001 22:00 +Clarendon,,SPHERE,NY,10/29/2001 22:00 +Rancho Cucamonga,ORANGE,FIREBALL,CA,10/29/2001 22:30 +Shorewood,RED BLUE,DISK,IL,10/29/2001 22:30 +Austin,,FIREBALL,TX,10/30/2001 0:30 +Lakewood,,FIREBALL,CO,10/30/2001 6:30 +Charlotte,BLUE,SPHERE,NC,10/30/2001 10:30 +Syracuse,,,NY,10/30/2001 17:00 +Rancho Cucamonga,,FIREBALL,CA,10/31/2001 2:25 +Sevierville,,CIRCLE,TN,10/31/2001 8:25 +Monterey,RED,VARIOUS,CA,10/31/2001 17:30 +North Scituate,,DISK,MA,10/31/2001 19:00 +San Antonio,,FORMATION,TX,10/31/2001 19:11 +Arcadia,,DISK,CA,10/31/2001 20:00 +George Town township,,OTHER,MI,10/31/2001 20:00 +Glendora,,DISK,CA,10/31/2001 20:00 +Glendora,,DISK,CA,10/31/2001 20:00 +Roswell,,,NM,10/31/2001 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2001 20:00 +Independence,BLUE,LIGHT,MO,10/31/2001 20:30 +Atlantic,BLUE,SPHERE,IA,10/31/2001 20:35 +Nevada,GREEN,OTHER,MO,10/31/2001 20:45 +Springfield,,LIGHT,MO,10/31/2001 21:15 +Denver,BLUE,TRIANGLE,CO,10/31/2001 22:10 +Clinton,,FIREBALL,MS,10/31/2001 23:30 +Truman Lake area,,,MO,11/1/2001 1:00 +Warner,,SPHERE,NH,11/1/2001 2:00 +Satellite Beach,,OTHER,FL,11/1/2001 4:30 +Stuarts Draft,,DIAMOND,VA,11/1/2001 9:50 +Texarkana,,OVAL,TX,11/1/2001 17:00 +Newport News,RED GREEN,OTHER,VA,11/1/2001 18:00 +New York City,,LIGHT,NY,11/1/2001 19:00 +Gaithersburg,,CIGAR,MD,11/1/2001 21:00 +Huntington,,,WV,11/1/2001 21:00 +Huntington,,,WV,11/1/2001 21:00 +Jewett,,TRIANGLE,NY,11/1/2001 21:00 +Overland Park,,SPHERE,KS,11/1/2001 22:15 +Fairfield,,CIRCLE,CA,11/1/2001 23:00 +Tallahassee,,TRIANGLE,FL,11/1/2001 23:30 +Memphis,,VARIOUS,TN,11/2/2001 6:25 +Little Rock,,TRIANGLE,AR,11/2/2001 13:00 +Roseville,,LIGHT,CA,11/2/2001 17:40 +New York City,BLUE,TEARDROP,NY,11/2/2001 22:30 +Chestnutridge,,CIRCLE,MO,11/3/2001 1:30 +Morrison,,EGG,CO,11/3/2001 1:45 +Reno,,DIAMOND,NV,11/3/2001 8:43 +Las Vegas,,TEARDROP,NV,11/3/2001 12:15 +Seattle,ORANGE,OTHER,WA,11/3/2001 17:35 +Columbia,,OTHER,MO,11/3/2001 17:55 +Springfield,,FIREBALL,OR,11/3/2001 19:12 +Chicago,,OTHER,IL,11/3/2001 21:40 +Akron,YELLOW,VARIOUS,OH,11/3/2001 22:00 +Nashville,GREEN,LIGHT,TN,11/4/2001 5:30 +Sacramento,,DISK,CA,11/4/2001 13:00 +Norwalk,,FORMATION,CA,11/4/2001 20:40 +Dublin,,CIGAR,OH,11/4/2001 22:07 +Newhalen,RED,LIGHT,AK,11/4/2001 22:30 +Bristol,,DISK,PA,11/5/2001 11:30 +Gulfport,,DISK,MS,11/5/2001 16:30 +Roseburg,RED,LIGHT,OR,11/5/2001 20:00 +no data,,,OH,11/5/2001 20:25 +Elgin,GREEN,FIREBALL,IL,11/5/2001 21:04 +Glendale,,CIRCLE,AZ,11/5/2001 21:25 +Middlesex,,OTHER,NJ,11/5/2001 22:15 +Richardson,,LIGHT,TX,11/5/2001 22:30 +Lynnwood,,TRIANGLE,WA,11/5/2001 23:30 +Clinton,,,AR,11/6/2001 0:00 +Glendale,,OVAL,AZ,11/6/2001 8:30 +East Falmouth,,CIGAR,MA,11/6/2001 15:00 +Bath,,DISK,IL,11/6/2001 21:15 +West Columbia,,FIREBALL,TX,11/7/2001 0:00 +Alpine,,OTHER,TX,11/7/2001 10:00 +Alexandria,,FIREBALL,VA,11/7/2001 17:30 +Farmerville,,LIGHT,LA,11/7/2001 18:05 +McCall,RED,OVAL,ID,11/7/2001 19:00 +Seattle,,FORMATION,WA,11/7/2001 20:30 +Vienna,,,WV,11/8/2001 8:30 +Barrington,,OVAL,IL,11/8/2001 17:00 +Celina,,LIGHT,TN,11/8/2001 18:15 +Chicago,,LIGHT,IL,11/8/2001 22:45 +Exeter,,EGG,PA,11/8/2001 23:30 +Edgewood,BLUE,DISK,NM,11/9/2001 0:00 +St. Louis,RED,TRIANGLE,MO,11/9/2001 1:56 +Elon,,CIRCLE,NC,11/9/2001 9:25 +Benzonia,,LIGHT,MI,11/9/2001 19:15 +Edgewater,,OTHER,FL,11/9/2001 20:24 +Bristol,,OVAL,TN,11/10/2001 14:44 +Arvada,,OVAL,CO,11/10/2001 15:00 +Sulphur,,CIRCLE,OK,11/10/2001 21:35 +Sebastian,RED,FIREBALL,FL,11/10/2001 21:51 +New York City,,LIGHT,NY,11/11/2001 1:00 +Windsor,,OTHER,CO,11/11/2001 2:00 +Yorktown,,DISK,VA,11/11/2001 14:00 +Shiloh,BLUE,TRIANGLE,NC,11/11/2001 18:20 +Mogote,GREEN,,CO,11/11/2001 19:00 +Carmel,,TRIANGLE,NY,11/11/2001 20:04 +Bloomington,,LIGHT,IN,11/11/2001 23:00 +Pleasantville,,CIGAR,NY,11/11/2001 23:20 +Cumberland,,TRIANGLE,RI,11/11/2001 23:40 +Denton,,LIGHT,NE,11/12/2001 5:00 +South Lake Tahoe,,DISK,CA,11/12/2001 18:15 +Matawan,RED BLUE,LIGHT,NJ,11/12/2001 23:00 +Phoenix,RED,VARIOUS,AZ,11/12/2001 23:33 +San Diego,RED,TRIANGLE,CA,11/13/2001 3:30 +Studio City,,TRIANGLE,CA,11/13/2001 18:45 +Philiadelphia,,CIRCLE,MS,11/13/2001 21:15 +Memphis,,TRIANGLE,TN,11/14/2001 5:35 +Los Angeles,,CIRCLE,CA,11/14/2001 12:00 +Westlake Village,,SPHERE,CA,11/14/2001 18:30 +Boxford,,TRIANGLE,MA,11/14/2001 19:30 +Danville,,TRIANGLE,KY,11/14/2001 20:00 +Lake Elmo,,CHEVRON,MN,11/14/2001 20:45 +Spokane,,LIGHT,WA,11/15/2001 1:30 +Natchitoches,,TRIANGLE,LA,11/15/2001 5:31 +Monterey,,OVAL,CA,11/15/2001 14:00 +Yakima,,RECTANGLE,WA,11/15/2001 16:30 +Ribolt,ORANGE,OTHER,KY,11/15/2001 17:55 +Ringold,,FORMATION,OH,11/15/2001 17:58 +South Webster,ORANGE,LIGHT,OH,11/15/2001 18:29 +Enumclaw,RED,FIREBALL,WA,11/15/2001 18:45 +Enumclaw,RED,FIREBALL,WA,11/15/2001 18:45 +Enumclaw,RED,SPHERE,WA,11/15/2001 18:45 +Bellaire,,TRIANGLE,MI,11/15/2001 20:00 +Boyne City,,,MI,11/15/2001 20:00 +Boyne City,,DIAMOND,MI,11/15/2001 20:00 +Mancelona,RED,OTHER,MI,11/15/2001 20:10 +Greers Ferry,ORANGE,SPHERE,AR,11/15/2001 21:00 +St. Paul,,,MN,11/15/2001 21:00 +Clark,,LIGHT,WY,11/15/2001 21:10 +Red River Gorge,RED,OTHER,KY,11/15/2001 23:00 +Ellensburg,,LIGHT,WA,11/15/2001 23:25 +Florence,,,OR,11/15/2001 23:30 +Denver,,CHEVRON,CO,11/16/2001 2:45 +North Hollywood,,CIGAR,CA,11/16/2001 13:30 +Scottsdale,,TRIANGLE,AZ,11/16/2001 16:23 +Vicksburg,,TEARDROP,MS,11/16/2001 17:30 +Phoenix,,FORMATION,AZ,11/16/2001 19:00 +Fraser,RED,TRIANGLE,CO,11/16/2001 22:10 +Bayboro,,TRIANGLE,NC,11/16/2001 22:30 +San Mateo,RED,TRIANGLE,CA,11/17/2001 1:27 +Cross River,,TRIANGLE,NY,11/17/2001 2:00 +Tellico Plains,,,TN,11/17/2001 4:30 +Tacoma,,CIRCLE,WA,11/17/2001 12:00 +Monticello,,LIGHT,GA,11/17/2001 19:30 +Pasadena,,VARIOUS,CA,11/17/2001 20:00 +Sewanee,,CYLINDER,TN,11/17/2001 21:00 +Statesboro,GREEN,LIGHT,GA,11/17/2001 22:00 +Auburn,,FORMATION,WA,11/17/2001 22:30 +Henderson,,,NV,11/17/2001 22:30 +Spring Valley,,LIGHT,CA,11/17/2001 23:05 +Modesto,,CIRCLE,CA,11/18/2001 0:01 +Aurora,,LIGHT,CO,11/18/2001 0:30 +Eastlake,,OVAL,OH,11/18/2001 1:00 +Modesto,,CIRCLE,CA,11/18/2001 1:00 +Windsor,,TRIANGLE,CO,11/18/2001 1:00 +Tampa,,SPHERE,FL,11/18/2001 1:30 +Kahului,,DISK,HI,11/18/2001 2:00 +San Francisco,,LIGHT,CA,11/18/2001 2:00 +Seattle,ORANGE,TRIANGLE,WA,11/18/2001 2:00 +Seattle,,OTHER,WA,11/18/2001 2:22 +Seattle,YELLOW,CIRCLE,WA,11/18/2001 2:30 +Tualatin,,TRIANGLE,OR,11/18/2001 2:30 +Chico,,TRIANGLE,CA,11/18/2001 3:00 +Foster City,,TRIANGLE,CA,11/18/2001 3:00 +Lake Forest Park,,TRIANGLE,WA,11/18/2001 3:05 +Baltimore,,CIGAR,MD,11/18/2001 4:00 +Fredericksburg,,DIAMOND,VA,11/18/2001 4:00 +Perryville,,,MD,11/18/2001 4:00 +Geneva,,CIRCLE,NY,11/18/2001 4:15 +Fergus Falls,RED,OTHER,MN,11/18/2001 4:20 +Fort Lauderdale,,DISK,FL,11/18/2001 4:22 +Boulder,,VARIOUS,CO,11/18/2001 4:23 +Aurora,RED,FORMATION,CO,11/18/2001 4:30 +Bellingham,,FORMATION,WA,11/18/2001 4:30 +Charlotte,,CIRCLE,NC,11/18/2001 4:30 +Foley,,OTHER,AL,11/18/2001 4:30 +Houston,,CYLINDER,TX,11/18/2001 4:30 +West Grove,,CIRCLE,PA,11/18/2001 4:30 +Franklin,,CHEVRON,TN,11/18/2001 4:35 +Annapolis,,TRIANGLE,MD,11/18/2001 4:45 +Houston,ORANGE,CYLINDER,TX,11/18/2001 4:45 +Dickinson,RED,VARIOUS,TX,11/18/2001 5:00 +New Brunswick,,CHEVRON,NJ,11/18/2001 5:05 +Johnson,,FLASH,VT,11/18/2001 5:17 +Hendersonville,,SPHERE,NC,11/18/2001 5:27 +Augusta,,CHEVRON,GA,11/18/2001 5:30 +Dickinson,,VARIOUS,TX,11/18/2001 5:30 +Miami Beach,,SPHERE,FL,11/18/2001 5:30 +Naples,,FORMATION,FL,11/18/2001 5:30 +Glendale,,OTHER,AZ,11/18/2001 8:45 +Hamden,,SPHERE,CT,11/18/2001 13:30 +Cross River,,TRIANGLE,NY,11/18/2001 16:00 +Portland,,LIGHT,OR,11/18/2001 17:15 +Highlands Ranch,,TRIANGLE,CO,11/18/2001 18:30 +Omaha,,CIRCLE,NE,11/18/2001 21:00 +Bradenton,ORANGE,CIRCLE,FL,11/18/2001 22:00 +New York City,,CHEVRON,NY,11/19/2001 2:00 +Portland,,TRIANGLE,OR,11/19/2001 2:30 +San Diego,,OTHER,CA,11/19/2001 2:30 +Palo Alto,,,CA,11/19/2001 11:00 +Cornelius,,RECTANGLE,OR,11/19/2001 21:45 +Maplewood,,OTHER,MN,11/19/2001 23:45 +Panama City Beach,ORANGE,CHEVRON,FL,11/20/2001 2:55 +Perry,,CHEVRON,FL,11/20/2001 4:05 +Chilhowie,,TRIANGLE,VA,11/20/2001 14:00 +Dunlo,,OTHER,PA,11/20/2001 22:00 +Centennial,,OVAL,CO,11/20/2001 22:11 +Bel Air,BLUE,CIRCLE,MD,11/20/2001 23:00 +Richmond,RED YELLOW,LIGHT,KY,11/21/2001 4:45 +San Diego,,OTHER,CA,11/21/2001 5:15 +Morgan Hill,,LIGHT,CA,11/21/2001 19:00 +Hollywood,,CHEVRON,FL,11/21/2001 23:45 +Greenville,GREEN,FIREBALL,SC,11/22/2001 0:00 +Caro,,TRIANGLE,MI,11/22/2001 3:00 +Howell,,LIGHT,MI,11/22/2001 6:45 +Crown Point,,FIREBALL,IN,11/22/2001 16:15 +Southport,,OVAL,NC,11/22/2001 16:30 +Supply,BLUE,FLASH,VA,11/22/2001 21:00 +Los Angeles,ORANGE,SPHERE,CA,11/22/2001 23:45 +Littleton,,TRIANGLE,CO,11/23/2001 19:45 +New York City,,DISK,NY,11/23/2001 22:00 +Redlands,RED,OVAL,CA,11/23/2001 22:00 +Monticello,,SPHERE,MN,11/23/2001 22:30 +Van Nuys,BLUE,CIRCLE,CA,11/24/2001 13:15 +Tionesta,,LIGHT,PA,11/24/2001 17:00 +Daytona Beach,,DISK,FL,11/24/2001 18:30 +Sacramento,,FIREBALL,CA,11/24/2001 20:04 +Michigan City,,FORMATION,IN,11/24/2001 22:00 +Milford,,CIRCLE,OH,11/25/2001 16:00 +Daytona Beach,,DISK,FL,11/25/2001 19:10 +Bramptom,,CIRCLE,MI,11/25/2001 20:00 +Fresno,BLUE,LIGHT,CA,11/25/2001 20:40 +Modesto,BLUE,OTHER,CA,11/25/2001 20:40 +Oakland,GREEN,LIGHT,CA,11/25/2001 20:40 +Foster City,,RECTANGLE,CA,11/25/2001 20:45 +Palo Alto,BLUE,OVAL,CA,11/25/2001 20:45 +Troy,,EGG,OH,11/25/2001 23:30 +Columbus,BLUE,FLASH,OH,11/26/2001 1:00 +Grover Beach,,LIGHT,CA,11/26/2001 5:40 +Kensington,,LIGHT,MD,11/26/2001 21:10 +Minneapolis,BLUE,LIGHT,MN,11/26/2001 22:05 +Lenexa,,FORMATION,KS,11/26/2001 22:20 +Sacramento,,LIGHT,CA,11/26/2001 23:15 +Louisville,,TRIANGLE,KY,11/26/2001 23:20 +Farmington,,OVAL,ME,11/27/2001 3:00 +Camdenton,,TRIANGLE,MO,11/27/2001 5:35 +Avon Park,,DISK,FL,11/27/2001 14:00 +Warner Robins,,TRIANGLE,GA,11/27/2001 19:30 +Tallahassee,,OTHER,FL,11/27/2001 23:00 +Greensburg,,FIREBALL,PA,11/28/2001 2:13 +Milwaukie,,FIREBALL,OR,11/28/2001 3:41 +Bellflower,RED,OTHER,CA,11/28/2001 10:45 +Rancho Dominguez,,SPHERE,CA,11/28/2001 12:00 +Dallas,,DISK,TX,11/28/2001 13:00 +Redwood City,,LIGHT,CA,11/28/2001 17:30 +Anaheim,,CIRCLE,CA,11/28/2001 18:00 +Sarasota,,OTHER,FL,11/28/2001 18:03 +Lakewood,RED,LIGHT,CA,11/28/2001 22:30 +Marion,,,VA,11/29/2001 1:00 +Garner,,DISK,NC,11/29/2001 18:30 +Golden,,LIGHT,CO,11/29/2001 18:55 +Crete,,OTHER,IL,11/29/2001 20:20 +Indian Creek,,LIGHT,TX,11/30/2001 0:00 +Yelm,ORANGE,LIGHT,WA,11/30/2001 20:50 +Howey in the Hills,RED GREEN BLUE,,FL,11/30/2001 22:30 +PA,GREEN,CIRCLE,PA,11/30/2001 23:30 +Turnagain Pass,,SPHERE,AK,12/1/2001 1:00 +Kahului,,DISK,HI,12/1/2001 2:00 +Colton,,FORMATION,CA,12/1/2001 14:30 +Woodridge,RED,TRIANGLE,IL,12/1/2001 18:45 +Kansas City,,DIAMOND,MO,12/1/2001 19:00 +Lawrence,,FORMATION,KS,12/1/2001 20:00 +East Barnard,,OTHER,TX,12/1/2001 20:30 +S. Bossier,,CIGAR,LA,12/1/2001 20:45 +Alamogordo,,TRIANGLE,NM,12/1/2001 21:15 +Silver City,,TRIANGLE,NM,12/1/2001 21:15 +Albuquerque,BLUE,FIREBALL,NM,12/1/2001 21:20 +Parker,,FORMATION,CO,12/1/2001 21:21 +Colorado Springs,,CYLINDER,CO,12/1/2001 21:25 +Rolla,,FIREBALL,MO,12/1/2001 21:30 +Wellston,,OTHER,OK,12/1/2001 21:30 +Goodland,,,KS,12/1/2001 21:45 +Wellsville,,FIREBALL,KS,12/1/2001 21:45 +Sneads Ferry,,DISK,NC,12/1/2001 21:54 +El Paso,RED,RECTANGLE,TX,12/1/2001 22:00 +Oklahoma,,RECTANGLE,OK,12/1/2001 22:00 +Lawrence,,FORMATION,KS,12/1/2001 22:10 +Olathe,,OTHER,KS,12/1/2001 22:10 +Sand Springs,,FORMATION,OK,12/1/2001 22:10 +Eucha,,FORMATION,OK,12/1/2001 22:15 +Grand Island,,FIREBALL,NE,12/1/2001 22:15 +Aledo,RED,FORMATION,TX,12/1/2001 22:18 +Olathe,,LIGHT,KS,12/1/2001 22:18 +Canyon,,FORMATION,TX,12/1/2001 22:20 +Newton,,FIREBALL,TX,12/1/2001 22:20 +Ozona,,CONE,TX,12/1/2001 22:20 +Richardson,,FIREBALL,TX,12/1/2001 22:20 +Sioux Center,BLUE,,IA,12/1/2001 22:20 +Wichita,,FORMATION,KS,12/1/2001 22:20 +Winfield,,CYLINDER,KS,12/1/2001 22:20 +Bloomfield,,FIREBALL,NE,12/1/2001 22:22 +Kansas City,,OTHER,MO,12/1/2001 22:25 +Lawton,,VARIOUS,OK,12/1/2001 22:25 +St. Peter,,LIGHT,MN,12/1/2001 22:26 +Lawrence,,LIGHT,KS,12/1/2001 22:28 +El Reno,,FORMATION,OK,12/1/2001 22:30 +Eureka,,FIREBALL,TX,12/1/2001 22:30 +Goshen,,,OH,12/1/2001 22:30 +Sapulpa,ORANGE,FORMATION,OK,12/1/2001 22:30 +Kansas City,,SPHERE,MO,12/1/2001 22:32 +Siloam Springs,GREEN BLUE,CIRCLE,AR,12/1/2001 22:45 +Weatherford,BLUE,FORMATION,TX,12/1/2001 22:45 +Perkins,,FORMATION,OK,12/1/2001 22:50 +Big Spring,ORANGE,OTHER,TX,12/1/2001 23:00 +Highlands,RED,CIRCLE,NJ,12/1/2001 23:00 +Oklahoma City,ORANGE,FORMATION,OK,12/1/2001 23:15 +Peoria,,FIREBALL,AZ,12/2/2001 1:10 +Greenwood,,VARIOUS,MO,12/2/2001 16:00 +Albuquerque,RED,FORMATION,NM,12/2/2001 18:45 +Springfield,,LIGHT,OH,12/2/2001 19:25 +Colorado Springs,,DISK,CO,12/2/2001 20:15 +Falcon,,,TX,12/2/2001 22:00 +Orem,,CIGAR,UT,12/2/2001 22:00 +Tempe,,LIGHT,AZ,12/3/2001 8:00 +Brock,,FIREBALL,TX,12/3/2001 17:30 +Mount Dora,RED ORANGE,DISK,FL,12/3/2001 18:20 +San Mateo,,SPHERE,CA,12/3/2001 19:00 +Cocoa,,SPHERE,FL,12/3/2001 19:30 +Columbia,,FIREBALL,SC,12/3/2001 20:00 +Lebanon,,LIGHT,IL,12/3/2001 22:50 +Zanesville,,TRIANGLE,OH,12/3/2001 23:00 +El Dorado,,EGG,AR,12/4/2001 19:00 +Santa Ana,,OVAL,CA,12/4/2001 19:00 +New York City,RED,LIGHT,NY,12/4/2001 20:40 +Anaheim,,FORMATION,CA,12/4/2001 21:00 +Big Bear City,,TRIANGLE,CA,12/5/2001 18:00 +Ferrum,,OVAL,VA,12/5/2001 21:30 +Oklahoma City,ORANGE,LIGHT,OK,12/5/2001 22:24 +Birmingham,,,TX,12/5/2001 22:54 +Lawrenceville,,DIAMOND,GA,12/6/2001 10:34 +Pueblo,,LIGHT,CO,12/6/2001 19:40 +Wichita Falls,,OTHER,TX,12/6/2001 22:00 +Concord,,RECTANGLE,NH,12/7/2001 22:00 +West Windsor,,CHEVRON,NJ,12/7/2001 22:55 +Pasadena,,LIGHT,CA,12/8/2001 1:22 +Bemidji,,TRIANGLE,MN,12/8/2001 14:32 +Lenexa,,LIGHT,KS,12/8/2001 17:45 +Wilsall,,LIGHT,MT,12/8/2001 18:30 +Springfield,,TRIANGLE,MO,12/9/2001 0:00 +Lombard,,CHEVRON,IL,12/9/2001 0:28 +Cincinnati,,,OH,12/9/2001 2:00 +Calistoga,,,CA,12/9/2001 19:00 +Flagstaff,,TRIANGLE,AZ,12/9/2001 19:00 +Hooksett,,DISK,NH,12/10/2001 17:30 +Placentia,,OVAL,CA,12/10/2001 17:45 +Napa,GREEN,LIGHT,CA,12/10/2001 23:40 +Colorado Springs,,TRIANGLE,CO,12/11/2001 2:08 +Chesapeake,,CIGAR,VA,12/11/2001 14:03 +Wentworth,RED GREEN,OTHER,NH,12/11/2001 20:30 +Burbank,,LIGHT,CA,12/12/2001 5:15 +Ucaipa,ORANGE,LIGHT,CA,12/12/2001 19:45 +Helena,,CIRCLE,AL,12/12/2001 21:45 +Kansas City,,FIREBALL,MO,12/13/2001 22:25 +Santa Ana,,CIRCLE,CA,12/14/2001 11:30 +Arcadia,,LIGHT,CA,12/14/2001 22:00 +Augusta,,LIGHT,AR,12/14/2001 23:56 +Cordova,,SPHERE,AK,12/15/2001 0:00 +Grants Pass,RED,TRIANGLE,OR,12/15/2001 18:10 +Greensboro,,TRIANGLE,NC,12/15/2001 19:20 +Des Moines,,TRIANGLE,IA,12/15/2001 20:00 +St. Charles,,TRIANGLE,MO,12/15/2001 22:30 +Moreno Valley,,TRIANGLE,CA,12/15/2001 22:57 +Newport News,,DISK,VA,12/16/2001 10:30 +North Port,,,FL,12/16/2001 18:05 +Lake City,,LIGHT,SC,12/16/2001 21:00 +Macon,GREEN,FIREBALL,GA,12/17/2001 5:40 +Lake City,ORANGE,SPHERE,SC,12/17/2001 7:10 +Temecula,,SPHERE,CA,12/17/2001 12:00 +Tonasket,,OTHER,WA,12/17/2001 21:30 +Baton Rouge,,TRIANGLE,LA,12/17/2001 22:05 +New York City,,CIRCLE,NY,12/18/2001 5:00 +Harrisburg,,FORMATION,MO,12/18/2001 21:21 +Vista,,OVAL,CA,12/18/2001 22:30 +Newark,,,CA,12/19/2001 9:11 +Glen Dale,,,MD,12/19/2001 10:00 +Galesburg,,TRIANGLE,IL,12/19/2001 21:45 +Waterbury,,OTHER,CT,12/19/2001 23:25 +Watseka,,TRIANGLE,IL,12/19/2001 23:30 +Toledo,,CYLINDER,OH,12/20/2001 8:36 +Aneta,,CIRCLE,ND,12/20/2001 19:30 +Goodlettsville,,FIREBALL,TN,12/20/2001 19:30 +Annandale,,LIGHT,VA,12/20/2001 22:20 +Downey,,CIRCLE,CA,12/20/2001 23:30 +Wyncote,,SPHERE,PA,12/21/2001 9:45 +Camden,ORANGE,CIRCLE,NY,12/21/2001 20:30 +Bellevue,ORANGE,SPHERE,NE,12/21/2001 23:30 +Astoria,,SPHERE,OR,12/22/2001 12:30 +Guilford,,OVAL,CT,12/22/2001 15:08 +Bennettsville,,SPHERE,SC,12/22/2001 16:40 +Margate,,FIREBALL,NJ,12/22/2001 20:32 +Bellingham,,FORMATION,WA,12/23/2001 20:27 +Bothell,,CONE,WA,12/23/2001 21:25 +Roswell,,SPHERE,GA,12/23/2001 21:30 +Bradenton,ORANGE,CIRCLE,FL,12/23/2001 22:30 +Las Vegas,,RECTANGLE,NV,12/24/2001 1:30 +Bessemer City,,CIGAR,NC,12/24/2001 14:30 +Ontario,,DISK,CA,12/24/2001 16:30 +Columbus,,TRIANGLE,OH,12/24/2001 18:11 +Vancouver,,LIGHT,WA,12/24/2001 20:00 +Bellflower,RED,LIGHT,CA,12/24/2001 20:30 +DeBary,,DISK,FL,12/24/2001 22:00 +Portland,,LIGHT,OR,12/24/2001 23:00 +Orland Park,,RECTANGLE,IL,12/25/2001 0:10 +Greenwich,GREEN,,CT,12/25/2001 0:45 +Missouri Valley,,OTHER,IA,12/25/2001 18:42 +Sioux City,,DISK,IA,12/25/2001 18:42 +Brownsburg,,RECTANGLE,VA,12/25/2001 22:30 +Port Jefferson Station,,,NY,12/26/2001 0:30 +Nashville,,TRIANGLE,TN,12/26/2001 1:45 +Honolulu,,OTHER,HI,12/26/2001 5:25 +Port Jefferson Station,,SPHERE,NY,12/26/2001 12:30 +Montgomery,,TRIANGLE,TX,12/26/2001 23:53 +Great Falls,RED GREEN,LIGHT,MT,12/27/2001 1:30 +Williamsburg,,TRIANGLE,MI,12/27/2001 22:40 +Tucson,,DISK,AZ,12/28/2001 1:00 +Langhorne,,CIRCLE,PA,12/28/2001 1:30 +Jena,,CIGAR,LA,12/28/2001 6:00 +Salem,,DISK,OH,12/28/2001 14:00 +Houston,,LIGHT,TX,12/28/2001 18:30 +Richardson,RED,TRIANGLE,TX,12/28/2001 21:45 +Long Island City,,OTHER,NY,12/29/2001 0:00 +Great Falls,,TRIANGLE,MT,12/29/2001 3:00 +Great Falls,,TRIANGLE,MT,12/29/2001 3:00 +Port Angeles,,VARIOUS,WA,12/29/2001 16:20 +Port Angeles,,OTHER,WA,12/29/2001 16:30 +Ellicott City,GREEN,FIREBALL,MD,12/29/2001 20:00 +Long Island City,,OTHER,NY,12/29/2001 23:59 +Bethpage,,LIGHT,NY,12/30/2001 3:00 +Las Vegas,,DISK,NM,12/30/2001 14:30 +Clinton,,TRIANGLE,MS,12/30/2001 17:40 +Danville,,TRIANGLE,VA,12/30/2001 18:30 +Baltimore,,SPHERE,MD,12/30/2001 20:50 +Dallas,,CIRCLE,TX,12/31/2001 15:00 +Pasadena,,RECTANGLE,TX,12/31/2001 18:55 +Mission,,,SD,12/31/2001 21:37 +Tulsa,RED ORANGE,LIGHT,OK,12/31/2001 23:40 +New Hyde Park,,OVAL,NY,1/1/2002 4:45 +Banner Elk,ORANGE,FIREBALL,NC,1/1/2002 8:00 +Philadelphia,BLUE,TRIANGLE,PA,1/1/2002 14:10 +El Paso,,,TX,1/1/2002 19:00 +Oakwood,,TRIANGLE,TX,1/1/2002 22:00 +Las Vegas,,LIGHT,NV,1/1/2002 22:30 +Denton,,TRIANGLE,NC,1/1/2002 23:00 +Whitehall,,OTHER,PA,1/2/2002 17:00 +Osage Beach,,CIGAR,MO,1/2/2002 17:30 +Wainwright,,LIGHT,AK,1/2/2002 21:32 +Honolulu,,TRIANGLE,HI,1/2/2002 22:05 +Eagleville,,SPHERE,TN,1/3/2002 3:30 +W. Rutland,,OTHER,VT,1/3/2002 16:45 +Littleton,,LIGHT,CO,1/3/2002 17:55 +Dubuque,BLUE,DISK,IA,1/3/2002 19:15 +Marion,,,IA,1/3/2002 19:30 +Marion,,,IA,1/3/2002 19:30 +Powell,,SPHERE,TN,1/3/2002 20:37 +Mt. Morris,ORANGE,CIRCLE,MI,1/3/2002 21:00 +Richmond,,CHEVRON,ME,1/3/2002 21:35 +Cordes,,CYLINDER,AZ,1/3/2002 21:45 +Florissant,,RECTANGLE,MO,1/5/2002 2:00 +New York City,,DISK,NY,1/5/2002 8:40 +Santa Barbara,,DISK,CA,1/5/2002 9:30 +Baltimore,,LIGHT,MD,1/5/2002 23:00 +Spring,BLUE,SPHERE,TX,1/6/2002 15:00 +Tomball,RED GREEN,TRIANGLE,TX,1/6/2002 17:00 +Yucca Valley,,DISK,CA,1/6/2002 18:00 +Fallbrook,,LIGHT,CA,1/6/2002 21:30 +Gilliam,,CIGAR,LA,1/6/2002 23:00 +Houston,,FIREBALL,TX,1/7/2002 0:00 +Houston,,LIGHT,TX,1/7/2002 6:30 +Las Vegas,,OTHER,NM,1/7/2002 8:25 +Greenville,,OTHER,SC,1/7/2002 15:10 +Richmond,,FIREBALL,VA,1/7/2002 17:43 +Arlington,GREEN,FIREBALL,VA,1/7/2002 17:45 +Richmond,BLUE,LIGHT,VA,1/7/2002 17:45 +Richmond,GREEN,LIGHT,VA,1/7/2002 17:45 +Bel Air,GREEN BLUE,EGG,MD,1/7/2002 17:49 +Baltimore,BLUE,SPHERE,MD,1/7/2002 17:55 +Prince Frederick,GREEN,LIGHT,MD,1/7/2002 17:55 +Fort Washington,GREEN,TEARDROP,MD,1/7/2002 18:00 +Bottoms Bridge,GREEN,LIGHT,VA,1/7/2002 18:30 +Pasadena,,LIGHT,TX,1/7/2002 19:15 +Turlock,,CIRCLE,CA,1/7/2002 21:03 +New Mexico,,,NM,1/7/2002 21:07 +Roswell,,,NM,1/7/2002 21:10 +North Hero,,CIGAR,VT,1/8/2002 7:00 +Las Vegas,,OTHER,NV,1/8/2002 12:40 +Pontotoc,,OTHER,MS,1/8/2002 18:40 +Midlothian,,OTHER,VA,1/8/2002 20:30 +Pontotoc,,OTHER,MS,1/8/2002 20:30 +Orem,,FIREBALL,UT,1/8/2002 21:00 +Provo,,FIREBALL,UT,1/8/2002 21:00 +Rutherford,,CIRCLE,NJ,1/9/2002 0:15 +White,,CIRCLE,GA,1/9/2002 3:00 +Kapula Bay,,LIGHT,HI,1/9/2002 7:50 +Newark,,CIGAR,OH,1/9/2002 10:00 +Cherry Valley,,OVAL,IL,1/9/2002 18:35 +Freeport,,LIGHT,IL,1/9/2002 19:00 +Springfield,,TEARDROP,OR,1/9/2002 19:30 +Palisades,,CROSS,NY,1/10/2002 1:30 +Fountain Hills,,RECTANGLE,AZ,1/10/2002 3:00 +Granite Falls,,DISK,WA,1/10/2002 15:20 +Upper Darby,,CIRCLE,PA,1/10/2002 17:30 +Phoenix,ORANGE,,AZ,1/10/2002 21:30 +Chandler,GREEN,CYLINDER,AZ,1/10/2002 21:50 +Point Mugu,,VARIOUS,CA,1/11/2002 4:30 +St. Louis area,ORANGE,TEARDROP,MO,1/11/2002 5:15 +Wyoming,,,PA,1/11/2002 10:00 +Oklahoma City,,OVAL,OK,1/11/2002 16:00 +New York City,,CIRCLE,NY,1/11/2002 18:30 +Daytona Beach,,LIGHT,FL,1/11/2002 18:45 +Santa Barbara,BLUE,DIAMOND,CA,1/11/2002 20:00 +San Antonio,,RECTANGLE,TX,1/11/2002 21:40 +San Bernardino County,,,CA,1/12/2002 2:30 +Scotchtown,,TRIANGLE,NY,1/12/2002 6:15 +Granbury,,DISK,TX,1/12/2002 13:45 +Portland,,LIGHT,OR,1/12/2002 16:10 +Greenwich,,FORMATION,NY,1/12/2002 17:00 +Orem,,TEARDROP,UT,1/12/2002 21:00 +Phoenix,,RECTANGLE,AZ,1/12/2002 21:30 +Monterey,,TRIANGLE,CA,1/12/2002 21:34 +Barrington Hills,,LIGHT,IL,1/13/2002 0:30 +Denver,,OTHER,CO,1/13/2002 14:30 +Columbus,,,OH,1/13/2002 20:10 +San Bernardino,,SPHERE,CA,1/13/2002 20:30 +Jackson Heights,,SPHERE,NY,1/13/2002 22:30 +Paintsville,,LIGHT,KY,1/13/2002 23:53 +Paintsville,,,KY,1/14/2002 2:47 +Paintsville,,DISK,KY,1/14/2002 2:47 +Hyattsville,,SPHERE,MD,1/14/2002 13:00 +Portland,,TRIANGLE,OR,1/14/2002 18:40 +Alexandria,,FORMATION,LA,1/14/2002 19:15 +Coupeville,RED,,WA,1/14/2002 20:30 +Ocean City,,LIGHT,MD,1/14/2002 22:30 +Kannapolis,RED,,NC,1/15/2002 0:00 +Philadelphia,,DISK,PA,1/15/2002 1:00 +LaPorte,,,IN,1/15/2002 7:00 +St. Petersburg,,OVAL,FL,1/15/2002 7:55 +Jersey City,,OTHER,NJ,1/15/2002 16:00 +Jamestown,,OVAL,NC,1/15/2002 17:30 +Lake Wales,,CYLINDER,FL,1/15/2002 19:00 +Lake Wales,,TRIANGLE,FL,1/15/2002 19:00 +Lake Buena Vista,ORANGE,LIGHT,FL,1/15/2002 19:30 +Miami,,FORMATION,FL,1/15/2002 19:30 +Live Oak,,DISK,FL,1/15/2002 19:35 +Sarasota,,TRIANGLE,FL,1/15/2002 19:35 +Port Charlotte,,FORMATION,FL,1/15/2002 19:40 +Hayward,RED,LIGHT,CA,1/15/2002 20:48 +Jackson,,FIREBALL,NJ,1/15/2002 21:00 +Chillicothe,,,OH,1/15/2002 23:00 +Naples,,LIGHT,FL,1/16/2002 0:10 +North Tonawanda,,FORMATION,NY,1/16/2002 0:10 +Oakland,,LIGHT,CA,1/16/2002 19:30 +Tallahassee,BLUE,LIGHT,FL,1/16/2002 21:30 +Fremont,,LIGHT,NH,1/16/2002 22:00 +Portland,,LIGHT,OR,1/16/2002 22:05 +Southwick,RED,DISK,MA,1/16/2002 22:15 +Swinnomish Channel,,CIRCLE,WA,1/17/2002 16:00 +Indianola,,LIGHT,IA,1/17/2002 22:00 +Salem,,TRIANGLE,OR,1/17/2002 22:00 +Deer Park,,LIGHT,NY,1/18/2002 21:40 +Goshen,,FIREBALL,NY,1/18/2002 22:30 +Antioch,ORANGE,FIREBALL,CA,1/18/2002 22:50 +Long Beach,,VARIOUS,MS,1/19/2002 22:00 +Hollywood Beach,,,FL,1/20/2002 14:20 +Hollywood,,SPHERE,FL,1/20/2002 15:30 +Shaftsbury,,OTHER,VT,1/20/2002 18:00 +Doylestown,,LIGHT,PA,1/20/2002 19:30 +Anchorage,RED,,AK,1/20/2002 20:00 +Alexandria,,LIGHT,VA,1/20/2002 20:18 +Bahama,,FIREBALL,NC,1/20/2002 20:20 +Dry Fork,GREEN BLUE,LIGHT,VA,1/20/2002 20:30 +Huntinton,,FIREBALL,WV,1/20/2002 23:00 +Las Vegas,,VARIOUS,NV,1/20/2002 23:15 +Cincinnati,,CIGAR,OH,1/21/2002 6:45 +Cisco,RED,CIRCLE,TX,1/21/2002 18:00 +Weare,,DISK,NH,1/21/2002 19:05 +Columbia,,,MO,1/21/2002 22:30 +Huntley,,RECTANGLE,MT,1/21/2002 23:00 +Osceola,,FIREBALL,AR,1/21/2002 23:00 +Kirkland,RED,CIRCLE,WA,1/21/2002 23:35 +Kahana Beach,BLUE,CIRCLE,HI,1/22/2002 3:50 +Union,,FIREBALL,MI,1/22/2002 7:30 +Salisbury,,FIREBALL,MD,1/22/2002 20:00 +Ruskin,,LIGHT,FL,1/22/2002 23:18 +Whitman,,OTHER,MA,1/23/2002 6:56 +Arlington,,LIGHT,TX,1/23/2002 18:10 +Banning,,CHEVRON,CA,1/23/2002 19:10 +Binghamton,,LIGHT,NY,1/24/2002 3:56 +Del Mar,,DISK,CA,1/24/2002 14:00 +Whitetail,,FLASH,MT,1/24/2002 17:00 +Flagstaff,,TRIANGLE,AZ,1/24/2002 18:30 +Fancy Prairie,,FIREBALL,IL,1/24/2002 19:45 +San Francisco,,FORMATION,CA,1/24/2002 19:45 +Claymont,,CIRCLE,DE,1/24/2002 20:30 +Jacksonville,ORANGE,DIAMOND,IL,1/24/2002 20:30 +Malvern,,TRIANGLE,AR,1/24/2002 21:30 +Lebanon,,TRIANGLE,KY,1/24/2002 22:20 +Elk City,,CIGAR,OK,1/25/2002 6:40 +New Providence,GREEN BLUE,CYLINDER,PA,1/25/2002 17:00 +Williamsport,,TRIANGLE,PA,1/25/2002 18:05 +Greenwood,,SPHERE,LA,1/25/2002 19:00 +Bigelow,,TRIANGLE,AR,1/25/2002 20:00 +Dover,,OTHER,TN,1/25/2002 20:15 +Avondale,RED,LIGHT,AZ,1/25/2002 20:45 +Reseda,,,CA,1/25/2002 21:00 +Kahana Beach,BLUE,CIRCLE,HI,1/26/2002 3:50 +Ithaca,,CYLINDER,NY,1/26/2002 15:30 +Antioch,,FIREBALL,CA,1/26/2002 18:52 +Cape Girardeau,,CIRCLE,MO,1/26/2002 21:45 +Sheffield Lake,,VARIOUS,OH,1/26/2002 22:40 +Olney,,DIAMOND,MD,1/27/2002 12:45 +Springfield,,CIRCLE,VA,1/27/2002 14:00 +Pontotoc,,TRIANGLE,MS,1/27/2002 19:10 +Northampton,,LIGHT,MA,1/27/2002 22:00 +Sumner,,CIRCLE,GA,1/28/2002 18:45 +Buffalo Grove,,,IL,1/28/2002 23:00 +Jacksonville,RED,CIRCLE,FL,1/28/2002 23:03 +Antioch,,FORMATION,CA,1/29/2002 22:00 +Roachdale,,DISK,IN,1/29/2002 22:17 +Navajo,,TRIANGLE,NM,1/30/2002 1:42 +Bolingbrook,,OVAL,IL,1/30/2002 3:30 +Fortuna,ORANGE,CIRCLE,CA,1/30/2002 21:50 +Lake Placid,,LIGHT,FL,1/30/2002 22:45 +Jewell Valley,,,CA,1/31/2002 5:30 +Monterey,RED,,CA,1/31/2002 6:07 +Cincinnati,,CROSS,OH,1/31/2002 21:00 +Houston,,LIGHT,TX,1/31/2002 21:45 +Oklahoma City,,CONE,OK,1/31/2002 21:48 +Reagan,BLUE,LIGHT,TX,1/31/2002 21:48 +Plano,BLUE,LIGHT,TX,1/31/2002 21:50 +North Richland Hills,,SPHERE,TX,1/31/2002 21:55 +Helotes,,SPHERE,TX,1/31/2002 21:57 +Frisco,,,TX,1/31/2002 22:00 +Irving,,DIAMOND,TX,1/31/2002 22:00 +Avila Beach,,CIGAR,CA,2/1/2002 7:00 +Ripon,,TRIANGLE,CA,2/1/2002 18:00 +Elkton,,LIGHT,MD,2/1/2002 21:00 +Sunrise,,LIGHT,FL,2/1/2002 21:40 +Fitchville,,OVAL,CT,2/1/2002 22:30 +Martinsville,,TRIANGLE,IL,2/2/2002 0:00 +Spring Grove,,FLASH,PA,2/2/2002 0:15 +Mineville,,TRIANGLE,NY,2/2/2002 2:02 +Clermont,,LIGHT,FL,2/2/2002 2:53 +Seattle,ORANGE,SPHERE,WA,2/2/2002 3:30 +Kansas City,,LIGHT,MO,2/2/2002 5:24 +Eau claire,,CIRCLE,WI,2/2/2002 6:05 +Frost Proof,YELLOW,LIGHT,FL,2/2/2002 9:30 +Schuyler Falls,,EGG,NY,2/2/2002 18:10 +Maysville,,CHEVRON,KY,2/2/2002 19:00 +Pegram,,LIGHT,TN,2/2/2002 19:00 +Spokane,,LIGHT,WA,2/2/2002 20:30 +Lake Wales,,EGG,FL,2/2/2002 21:00 +Melbourne,RED ORANGE,LIGHT,FL,2/2/2002 21:15 +Moore Haven,,LIGHT,FL,2/2/2002 21:35 +Moore Haven,,FIREBALL,FL,2/2/2002 22:00 +St. Cloud,,FORMATION,FL,2/2/2002 22:00 +Yeehaw Junction,,FORMATION,FL,2/2/2002 22:00 +Yeehaw Junction,,FIREBALL,FL,2/2/2002 22:30 +Urbana,,LIGHT,IL,2/2/2002 23:35 +Urbana,,LIGHT,IL,2/2/2002 23:35 +Urbana,ORANGE,CIRCLE,IL,2/2/2002 23:40 +Champaign,ORANGE,LIGHT,IL,2/2/2002 23:45 +Penobscot,,LIGHT,ME,2/3/2002 0:00 +Baltimore,,CIRCLE,MD,2/3/2002 4:00 +Eagle Rock,GREEN,OTHER,CA,2/3/2002 4:00 +Los Angeles,,,CA,2/3/2002 16:32 +Phoenix,BLUE,OTHER,AZ,2/3/2002 18:15 +Talkeetna,BLUE,LIGHT,AK,2/4/2002 2:55 +Downey,,CIRCLE,CA,2/4/2002 18:00 +DeSoto,,TRIANGLE,KS,2/4/2002 18:35 +Deland,,TRIANGLE,FL,2/4/2002 19:00 +Lupton,RED,LIGHT,MI,2/4/2002 19:00 +Orlando,,LIGHT,FL,2/4/2002 19:30 +Spokane,,LIGHT,WA,2/4/2002 19:30 +Walsenburg,,CYLINDER,CO,2/4/2002 21:00 +Okeechobee,,CIRCLE,FL,2/4/2002 21:18 +Loveland,,TRIANGLE,OH,2/4/2002 21:30 +Ignacio,,FIREBALL,CO,2/4/2002 22:00 +Eagle Point,,LIGHT,OR,2/5/2002 20:09 +Gaylord,,RECTANGLE,MI,2/5/2002 20:35 +Fairbanks,,FIREBALL,AK,2/6/2002 0:30 +North Pole,,OTHER,AK,2/6/2002 0:35 +Nashville,,DISK,TN,2/6/2002 5:00 +Temecula,,FORMATION,CA,2/6/2002 18:45 +Irmo,RED,TRIANGLE,SC,2/6/2002 21:00 +St. Cloud,,LIGHT,FL,2/6/2002 22:00 +Vicksburg,,VARIOUS,AZ,2/6/2002 23:00 +Abilene,,LIGHT,TX,2/7/2002 19:40 +Racine,RED,TRIANGLE,WI,2/7/2002 20:00 +Fountain,,TRIANGLE,CO,2/7/2002 21:00 +Mountville,,LIGHT,PA,2/8/2002 0:23 +Beloit,,VARIOUS,WI,2/8/2002 5:30 +Dix,,DIAMOND,IL,2/8/2002 16:37 +Big Spring,,LIGHT,TX,2/8/2002 18:00 +Portland,,DISK,OR,2/8/2002 19:00 +Leipsic,,LIGHT,OH,2/8/2002 19:35 +Las Cruces,,LIGHT,NM,2/8/2002 22:55 +Renton,,FIREBALL,WA,2/8/2002 23:20 +Breese,,LIGHT,IL,2/9/2002 1:19 +Belleville,,FORMATION,MI,2/9/2002 2:50 +Charlotte,,LIGHT,NC,2/9/2002 5:55 +Barrington,,FIREBALL,RI,2/9/2002 13:30 +Plymouth,,CYLINDER,MA,2/9/2002 14:00 +Springfield,,FIREBALL,MA,2/9/2002 14:00 +Napa,,CIGAR,CA,2/9/2002 15:30 +Boulder,,OVAL,MT,2/9/2002 19:45 +Cheyenne,,FIREBALL,WY,2/9/2002 20:30 +can't say,,LIGHT,PA,2/9/2002 21:00 +Olympia,,DISK,WA,2/9/2002 21:15 +San Diego,,CIRCLE,CA,2/9/2002 23:20 +Lancaster,YELLOW,DISK,CA,2/10/2002 13:00 +Connecticut,,,CT,2/10/2002 14:30 +Dove Creek,,OTHER,CO,2/10/2002 22:30 +Lancaster,,DISK,CA,2/10/2002 23:00 +Fort Worth,,FIREBALL,TX,2/10/2002 23:59 +Crown Point,,,IN,2/11/2002 0:01 +Covina,,OTHER,CA,2/11/2002 3:45 +Brookston,ORANGE BLUE,,TX,2/11/2002 19:30 +Portland,RED,DISK,OR,2/11/2002 20:30 +Seattle,,FIREBALL,WA,2/11/2002 22:10 +Milton,,CYLINDER,WV,2/11/2002 23:50 +Sniders Crossroads,,,SC,2/12/2002 1:00 +Las Vegas,,LIGHT,NV,2/12/2002 5:56 +San Antonio,,DISK,TX,2/12/2002 7:15 +Wheat Ridge,,OTHER,CO,2/12/2002 17:45 +"SE Oregon, NW Nevada or NE California border.",,LIGHT,OR,2/12/2002 19:45 +Post Falls,,LIGHT,ID,2/12/2002 19:50 +Lorain,,DISK,OH,2/12/2002 20:00 +Concord,,LIGHT,NC,2/12/2002 20:08 +Astoria,,LIGHT,NY,2/12/2002 22:12 +Lewisburg,,OVAL,TN,2/13/2002 1:00 +Bridgewater,BLUE,SPHERE,NJ,2/13/2002 1:53 +Ashgrove,,DISK,MO,2/13/2002 10:57 +Sandstone,,RECTANGLE,MN,2/13/2002 13:45 +Heniker,,DISK,NH,2/13/2002 14:50 +Hopkins,,FIREBALL,MI,2/13/2002 20:00 +Phoenix area,ORANGE,OVAL,AZ,2/13/2002 20:00 +Howell,,FIREBALL,MI,2/13/2002 20:03 +Baltimore County,,LIGHT,MD,2/13/2002 21:00 +Canby,,LIGHT,OR,2/13/2002 21:12 +Webberville,,LIGHT,MI,2/13/2002 23:00 +Houston,,,TX,2/14/2002 1:00 +Havana,,LIGHT,FL,2/14/2002 6:35 +Roundhead,,SPHERE,OH,2/14/2002 16:10 +Merlin,,CIRCLE,OR,2/14/2002 19:15 +Merlin,,SPHERE,OR,2/14/2002 19:15 +Wooster,,DISK,OH,2/14/2002 21:00 +Phoenix,,LIGHT,AZ,2/14/2002 21:30 +Surprise,,OVAL,AZ,2/14/2002 21:30 +Oxnard,,DISK,CA,2/14/2002 22:35 +Salt Lake City,,TRIANGLE,UT,2/15/2002 3:00 +Elizabethton,,,TN,2/15/2002 7:15 +Everett,,,WA,2/15/2002 13:10 +Las Vegas,,,NV,2/15/2002 16:06 +New Port Richey,,CIRCLE,FL,2/15/2002 19:00 +Maltby,RED BLUE,LIGHT,WA,2/15/2002 20:00 +Pinehurst,,CIRCLE,TX,2/15/2002 20:30 +Minneapolis,,LIGHT,MN,2/15/2002 21:05 +Buckeye,,SPHERE,AZ,2/15/2002 22:00 +Franklin,,LIGHT,TX,2/15/2002 22:00 +Slatington,,CIRCLE,PA,2/15/2002 23:00 +University Park,,CONE,PA,2/15/2002 23:00 +Statesville,,SPHERE,NC,2/16/2002 9:30 +Panama City,,OVAL,FL,2/16/2002 15:00 +Arlington,,LIGHT,TX,2/16/2002 17:50 +Woburn,,TRIANGLE,MA,2/16/2002 18:00 +Comstock,,FIREBALL,NE,2/16/2002 18:35 +Byron,,LIGHT,IL,2/16/2002 19:56 +Bee Branch,,CIRCLE,AR,2/16/2002 20:30 +Westland,,OTHER,MI,2/16/2002 21:18 +Apache Junction,,,AZ,2/16/2002 21:30 +Arco,,SPHERE,ID,2/16/2002 21:30 +Klamath Falls,,FORMATION,OR,2/17/2002 0:40 +,,OTHER,KS,2/17/2002 4:16 +Lavonia,,,GA,2/17/2002 16:00 +Frederick,,DISK,MD,2/17/2002 21:00 +Dry Ridge,,,KY,2/17/2002 22:00 +Moses Lake,ORANGE,LIGHT,WA,2/17/2002 22:20 +Conyers,,DISK,GA,2/17/2002 22:30 +Troy,,TRIANGLE,OH,2/17/2002 22:30 +Sioux Falls,,TRIANGLE,SD,2/18/2002 1:00 +Burnsville,RED,FORMATION,MN,2/18/2002 4:16 +Naples,,FLASH,FL,2/18/2002 19:38 +Orange County,,LIGHT,CA,2/18/2002 19:55 +Cape Coral,RED,SPHERE,FL,2/18/2002 22:00 +Anaheim,,DISK,CA,2/18/2002 22:15 +Elcho,,CIRCLE,WI,2/19/2002 1:00 +Ceres,,RECTANGLE,CA,2/19/2002 2:00 +Boston,,LIGHT,MA,2/19/2002 8:40 +Golden,,OTHER,CO,2/19/2002 14:10 +Mobile,,TRIANGLE,AL,2/19/2002 17:00 +Durham,,LIGHT,NH,2/20/2002 1:00 +Tucson,,DISK,AZ,2/20/2002 1:00 +Vestaburg,,,MI,2/20/2002 3:30 +Hollywood,,SPHERE,FL,2/20/2002 14:30 +Boston,,LIGHT,MA,2/20/2002 19:25 +Bossier City,,OVAL,LA,2/20/2002 20:00 +Geneva,,SPHERE,GA,2/20/2002 20:00 +Elm Grove,,TRIANGLE,LA,2/20/2002 21:45 +Hickson,,DIAMOND,ND,2/20/2002 22:15 +Saltsburg,,TRIANGLE,PA,2/21/2002 1:07 +Salt Lake City,,SPHERE,UT,2/21/2002 14:13 +Erie,,,PA,2/21/2002 21:00 +Datil,,LIGHT,NM,2/21/2002 21:30 +Copiague,,CIRCLE,NY,2/21/2002 23:48 +Clackamas,,OTHER,OR,2/22/2002 0:30 +Wenatchee,BLUE,FLASH,WA,2/22/2002 1:30 +Front Royal,,EGG,VA,2/22/2002 10:00 +Phoenix,,EGG,AZ,2/22/2002 14:00 +Ottawa,,OTHER,IL,2/22/2002 15:00 +Belleville,BLUE,CYLINDER,IL,2/22/2002 23:00 +Santa Monica Mountains,,,CA,2/23/2002 0:30 +Phoenix,,EGG,AZ,2/23/2002 14:00 +Lynbrook,,OVAL,NY,2/23/2002 14:15 +Stewartstown,,FIREBALL,PA,2/23/2002 20:30 +Columbia,GREEN,RECTANGLE,MD,2/23/2002 21:02 +Leonardtown,GREEN,SPHERE,MD,2/23/2002 21:03 +Washington Township,GREEN BLUE,FIREBALL,NJ,2/23/2002 21:05 +Weems,,OVAL,VA,2/23/2002 21:11 +Little Falls,,CIGAR,NJ,2/24/2002 7:30 +Marion County,,OTHER,AL,2/24/2002 16:00 +Springdale,,TRIANGLE,UT,2/24/2002 17:30 +Putney,,TRIANGLE,VT,2/24/2002 19:00 +Pacific Palasades,,RECTANGLE,CA,2/24/2002 19:30 +Fairfax,,CHEVRON,VA,2/24/2002 19:45 +Wilcox,,OVAL,AZ,2/24/2002 20:20 +Sunnyvale,,TRIANGLE,CA,2/24/2002 20:48 +Central City,,OTHER,NE,2/24/2002 21:00 +Placentia,,VARIOUS,CA,2/24/2002 21:30 +Washington Township,,,NJ,2/24/2002 22:08 +Bellevue,,VARIOUS,WA,2/24/2002 23:00 +Hermitage,GREEN,RECTANGLE,PA,2/24/2002 23:00 +Issaquah,RED,TRIANGLE,WA,2/24/2002 23:00 +Touchet,,LIGHT,WA,2/25/2002 2:30 +Weiser,,CONE,ID,2/25/2002 8:23 +Weiser,,CONE,ID,2/25/2002 8:24 +Phoenix,,OTHER,AZ,2/25/2002 11:35 +Grass Valley,,SPHERE,CA,2/25/2002 12:00 +Cedar Rapids,,OVAL,IA,2/25/2002 21:00 +Cedar Rapids,,OVAL,IA,2/25/2002 21:00 +Phoenix,,,AZ,2/25/2002 21:30 +Knoxville,,,TN,2/26/2002 5:00 +Wayne,,TEARDROP,NE,2/26/2002 14:00 +Brigantine,,LIGHT,NJ,2/26/2002 20:00 +San Bernardino,,FIREBALL,CA,2/26/2002 20:05 +Los Angeles,,SPHERE,CA,2/27/2002 0:06 +Unityville,BLUE,,PA,2/27/2002 4:00 +Rockford,,DISK,IL,2/27/2002 19:00 +Denton,RED,,TX,2/28/2002 3:00 +Chicago,,SPHERE,IL,2/28/2002 12:00 +New Berlin,RED,TRIANGLE,WI,2/28/2002 18:27 +Hillsboro,YELLOW,OVAL,OH,2/28/2002 20:00 +Chicago,,DISK,IL,2/28/2002 23:59 +Keller,,,TX,3/1/2002 0:30 +Oceanside,,,NY,3/1/2002 0:38 +Greensboro,GREEN,LIGHT,NC,3/1/2002 1:30 +Naples,,TRIANGLE,FL,3/1/2002 6:15 +Palmetto,,FIREBALL,GA,3/1/2002 6:30 +Pensacola,,DISK,FL,3/1/2002 13:00 +New Orleans,,SPHERE,LA,3/1/2002 17:00 +Edmonds,,LIGHT,WA,3/1/2002 18:00 +I-84 Westbound,,TRIANGLE,MA,3/1/2002 19:00 +Harpswell,,CIGAR,ME,3/1/2002 23:30 +Whitestone,,TEARDROP,NY,3/2/2002 19:15 +Malta,ORANGE,FIREBALL,MT,3/2/2002 20:20 +Redwood Valley,RED,,CA,3/2/2002 22:30 +El Segundo,,SPHERE,CA,3/3/2002 12:00 +Hingham,,LIGHT,MA,3/4/2002 21:44 +Cleveland,,VARIOUS,OH,3/4/2002 22:00 +Marblehead,,FIREBALL,MA,3/4/2002 22:10 +Quakertown,,LIGHT,PA,3/4/2002 23:05 +Los Angeles,,VARIOUS,CA,3/5/2002 15:00 +Marion,,RECTANGLE,VA,3/5/2002 20:10 +Valley Mills,,FIREBALL,TX,3/6/2002 3:30 +Wimberley,,,TX,3/6/2002 7:50 +Des Moines,,OVAL,IA,3/6/2002 10:05 +Burney,,EGG,CA,3/6/2002 23:50 +Tempe,,CIRCLE,AZ,3/7/2002 7:40 +Vanceburg,RED,LIGHT,KY,3/7/2002 8:30 +Roellen-Dyersburg area,GREEN,,TN,3/7/2002 9:30 +Pensacola,,,FL,3/7/2002 14:34 +Dublin,,CIRCLE,NC,3/7/2002 18:00 +West Hartford,,FLASH,CT,3/7/2002 20:15 +Harrisburg,RED,VARIOUS,PA,3/7/2002 22:00 +Annapolis,,TRIANGLE,MD,3/8/2002 23:49 +Ashgrove,,,MO,3/9/2002 2:00 +Syracuse,,FIREBALL,NY,3/9/2002 3:25 +Anchorage,,TRIANGLE,AK,3/9/2002 8:30 +Glenwood,YELLOW,FLASH,NM,3/9/2002 16:00 +Las Vegas,,CIRCLE,NV,3/10/2002 0:00 +Lawton,,FORMATION,OK,3/10/2002 1:30 +Chesapeake,,OTHER,VA,3/10/2002 2:00 +Aberdeen,,TRIANGLE,MD,3/10/2002 3:00 +Michigan City,,FIREBALL,IN,3/10/2002 19:20 +Rialto,,CIRCLE,CA,3/11/2002 0:00 +New York City,,DIAMOND,NY,3/11/2002 11:30 +Sacramento,,OTHER,CA,3/11/2002 12:00 +Rockford,,DIAMOND,IL,3/11/2002 19:00 +Sebastian,,TRIANGLE,FL,3/11/2002 19:30 +Sebastian,,TRIANGLE,FL,3/11/2002 19:30 +Rockford,,TRIANGLE,IL,3/11/2002 21:02 +Des Moines,,TEARDROP,IA,3/11/2002 22:00 +Gilroy,BLUE,OTHER,CA,3/12/2002 15:00 +Phoenix,,LIGHT,AZ,3/12/2002 20:15 +Chama,,CONE,NM,3/13/2002 20:00 +Gila Bend,,CIRCLE,AZ,3/13/2002 20:00 +Richardson,,OVAL,TX,3/13/2002 21:00 +Dawsonville,,LIGHT,GA,3/13/2002 22:55 +Hartland,,CIRCLE,ME,3/14/2002 0:00 +Wanaque,,OTHER,NJ,3/14/2002 14:56 +Flagstaff,,LIGHT,AZ,3/14/2002 19:00 +Cleburne,,DISK,TX,3/14/2002 20:30 +Lake Forest,,,IL,3/14/2002 22:45 +Bokeelia,,,FL,3/15/2002 0:00 +Pensacola,,DISK,FL,3/15/2002 13:00 +Bokeelia,,OVAL,FL,3/15/2002 16:00 +Ponca City,,VARIOUS,OK,3/15/2002 17:30 +La Quinta,,OTHER,CA,3/15/2002 18:00 +Las Vegas,,CIRCLE,NV,3/15/2002 18:00 +Prescott,,OTHER,AZ,3/15/2002 18:00 +Las Vegas,,LIGHT,NV,3/15/2002 18:15 +Los Angeles,,FIREBALL,CA,3/15/2002 18:25 +Grand Canyon,,TRIANGLE,AZ,3/15/2002 18:30 +Sunnyvale,,,CA,3/15/2002 18:30 +Kingman,,CYLINDER,AZ,3/15/2002 19:00 +Lehi,RED,VARIOUS,UT,3/15/2002 19:00 +Glendale,,CIRCLE,AZ,3/15/2002 19:15 +Phoenix,,FIREBALL,AZ,3/15/2002 19:17 +Yuma,,LIGHT,AZ,3/15/2002 19:30 +Clayton,,LIGHT,NJ,3/15/2002 19:50 +Gallup,,LIGHT,NM,3/15/2002 20:30 +Midland,,OVAL,TX,3/15/2002 20:45 +Old Hickory,,DIAMOND,TN,3/15/2002 20:45 +Manchester,,OTHER,PA,3/15/2002 21:00 +Cape Coral,RED,OVAL,FL,3/15/2002 21:15 +Lakeland,,EGG,FL,3/15/2002 22:45 +Levittown,,DISK,NY,3/16/2002 3:30 +Slidell,,TEARDROP,LA,3/16/2002 14:00 +Granville,,,NY,3/16/2002 19:10 +Rolfe,,,IA,3/16/2002 20:20 +Grand Rapids,,CHEVRON,MI,3/16/2002 20:30 +Lake Worth,,FORMATION,FL,3/16/2002 22:00 +Globe,,EGG,AZ,3/17/2002 0:15 +Cleveland,GREEN,EGG,OH,3/17/2002 1:47 +Walla Walla,,LIGHT,WA,3/17/2002 1:55 +Eastchester,,DIAMOND,NY,3/17/2002 11:20 +Eastchester,,DIAMOND,NY,3/17/2002 11:33 +Shoreline,,OTHER,WA,3/17/2002 18:30 +Algona,GREEN,FIREBALL,WA,3/17/2002 18:34 +Richmond,,LIGHT,RI,3/17/2002 20:30 +San Jose,,FLASH,CA,3/17/2002 22:00 +Edison,YELLOW,FLASH,NJ,3/18/2002 3:00 +Santa Monica,,CYLINDER,CA,3/18/2002 16:22 +Santa Monica,,CYLINDER,CA,3/18/2002 16:22 +Travis County,,TRIANGLE,TX,3/18/2002 20:34 +Bloomington,,SPHERE,TX,3/18/2002 22:00 +Mountain View,GREEN,FLASH,CA,3/18/2002 22:00 +Waterford,RED,TRIANGLE,MI,3/19/2002 8:05 +Dallas,,SPHERE,TX,3/19/2002 13:00 +Nashville,,DISK,TN,3/19/2002 14:00 +Franklin,,CHEVRON,TN,3/19/2002 14:06 +Pacifica,,FIREBALL,CA,3/19/2002 19:30 +Hayward,,FIREBALL,CA,3/19/2002 19:32 +Doylestown,,DISK,PA,3/20/2002 1:00 +San Bernardino,,LIGHT,CA,3/20/2002 6:15 +Cincinnati,,SPHERE,OH,3/20/2002 17:40 +Phoenix,,OTHER,AZ,3/20/2002 19:35 +Phoenix,,CIRCLE,AZ,3/20/2002 20:50 +Sherman,,,TX,3/20/2002 22:00 +Sherman,,,TX,3/20/2002 22:00 +Quartzite,,OTHER,AZ,3/20/2002 23:30 +Oviedo,,SPHERE,FL,3/21/2002 0:00 +Belleville,,CIRCLE,MI,3/21/2002 17:35 +Los Angeles,,OVAL,CA,3/21/2002 19:10 +San Anselmo,,CHEVRON,CA,3/21/2002 20:26 +Spokane,,,WA,3/21/2002 22:30 +Greenfield,,,IL,3/21/2002 23:12 +Olympia,,DISK,WA,3/22/2002 16:20 +Wheaton,,VARIOUS,IL,3/22/2002 18:30 +Oxnard,,LIGHT,CA,3/22/2002 23:00 +Nashville,,CIRCLE,TN,3/23/2002 2:32 +Allegany,,VARIOUS,NY,3/23/2002 11:07 +Thomasville,,LIGHT,GA,3/23/2002 16:00 +Gilbert,,CIRCLE,AZ,3/23/2002 17:06 +Harmony,RED ORANGE,FIREBALL,MN,3/23/2002 21:45 +Colorado,,,CO,3/23/2002 23:00 +Fountain,,CHEVRON,CO,3/25/2002 9:00 +El Cerrito,,LIGHT,CA,3/25/2002 22:20 +Naples,,TRIANGLE,ME,3/26/2002 19:22 +Lincoln,,VARIOUS,NE,3/26/2002 20:47 +Borger,,CIRCLE,TX,3/26/2002 23:30 +Cedar Rapids,,SPHERE,IA,3/27/2002 15:00 +Hamden,,CIRCLE,CT,3/28/2002 1:35 +Wanaque,YELLOW,OTHER,NJ,3/28/2002 14:00 +St. Louis,,DIAMOND,MO,3/28/2002 17:30 +Rocklin,,LIGHT,CA,3/28/2002 18:47 +Gorham,,LIGHT,NH,3/28/2002 18:54 +Woburn,,CHEVRON,MA,3/28/2002 21:20 +Apple Valley,,CHEVRON,CA,3/29/2002 15:00 +Last Chance,,EGG,CO,3/29/2002 17:45 +Bayfield,,CIRCLE,CO,3/29/2002 19:00 +Farmersville,,LIGHT,CA,3/29/2002 19:00 +Salem,,TRIANGLE,OR,3/29/2002 19:20 +Bakersfield,,DIAMOND,CA,3/29/2002 21:00 +Bakersfield,,TRIANGLE,CA,3/29/2002 21:30 +Martinez Lake,,SPHERE,AZ,3/30/2002 14:30 +Martinez Lake,,SPHERE,CA,3/30/2002 14:30 +Jacksonville,,VARIOUS,FL,3/30/2002 19:50 +Comstock,,OTHER,TX,3/30/2002 20:30 +Texarkana,BLUE,CIRCLE,TX,3/30/2002 21:00 +Salome,,CYLINDER,AZ,3/30/2002 22:00 +San Bernardino,,OVAL,CA,3/30/2002 22:25 +Gresham,RED,LIGHT,OR,3/30/2002 23:00 +Boulder,,OVAL,CO,3/31/2002 17:30 +San Dimas,,DISK,CA,3/31/2002 18:31 +Windsor,,FIREBALL,CA,3/31/2002 21:45 +Lake Havasu City,,LIGHT,AZ,4/1/2002 1:30 +Columbia,,SPHERE,MO,4/1/2002 10:50 +Columbia,,SPHERE,MO,4/1/2002 10:50 +Flora Vista,,TRIANGLE,NM,4/1/2002 12:00 +Jacksonville,,SPHERE,FL,4/1/2002 15:00 +Seattle,,RECTANGLE,WA,4/1/2002 15:00 +Beaver Falls,,LIGHT,PA,4/1/2002 19:45 +Coatesville,,CIRCLE,PA,4/1/2002 20:00 +Sneads Ferry,,RECTANGLE,NC,4/1/2002 22:00 +Lincoln County,,LIGHT,NM,4/1/2002 23:00 +Rio Rancho,,LIGHT,NM,4/2/2002 20:50 +Cornelius,,TRIANGLE,NC,4/2/2002 20:55 +Springfield,,,OR,4/2/2002 21:43 +Lookout,BLUE,CIRCLE,CA,4/2/2002 22:30 +Annapolis,,OTHER,MD,4/2/2002 22:35 +Canandaigua,,LIGHT,NY,4/2/2002 23:30 +Fremont,,TRIANGLE,CA,4/3/2002 20:10 +Sacramento,,OTHER,CA,4/3/2002 21:30 +Birmingham,,DISK,AL,4/3/2002 21:36 +Marianna,,OTHER,FL,4/4/2002 15:30 +Sinking Spring,,LIGHT,PA,4/4/2002 19:15 +Laramie,,VARIOUS,WY,4/4/2002 19:45 +New York City,,LIGHT,NY,4/5/2002 5:00 +Depew,,TRIANGLE,NY,4/5/2002 19:00 +Ellensburg,,,WA,4/5/2002 22:24 +Maui,,OVAL,HI,4/6/2002 22:00 +San Diego,,LIGHT,CA,4/7/2002 3:00 +Granite Falls,,LIGHT,WA,4/7/2002 21:15 +Pulaski,,VARIOUS,WI,4/8/2002 8:30 +Tampa,,LIGHT,FL,4/8/2002 9:45 +Middletown,,TRIANGLE,OH,4/8/2002 23:48 +Green Valley,,CIRCLE,AZ,4/9/2002 20:00 +Coventry,,FORMATION,RI,4/10/2002 9:00 +Austin,,SPHERE,TX,4/10/2002 16:35 +Saratoga Springs,,LIGHT,NY,4/10/2002 19:46 +Ragley,,LIGHT,LA,4/10/2002 21:00 +Rockford,,CIGAR,IL,4/10/2002 22:00 +Middletown,,FLASH,NJ,4/10/2002 22:05 +Azle,ORANGE,CIGAR,TX,4/10/2002 22:15 +Indianapolis,GREEN,TRIANGLE,IN,4/10/2002 22:20 +Naples,,LIGHT,FL,4/10/2002 22:30 +At a pullout on the highway,,TRIANGLE,ID,4/10/2002 23:20 +Phoenixville,,LIGHT,PA,4/10/2002 23:30 +Midland,,,TX,4/11/2002 14:00 +Watertown,,OTHER,NY,4/11/2002 21:10 +Doniphan,,LIGHT,MO,4/11/2002 22:00 +Hilo,,VARIOUS,HI,4/11/2002 22:00 +Suwanee,,CIGAR,GA,4/11/2002 22:10 +Oxford,,TRIANGLE,NC,4/12/2002 18:00 +Lynnville,,LIGHT,TN,4/12/2002 20:40 +Lonsdale,,,MN,4/12/2002 22:00 +Superior,,LIGHT,WI,4/12/2002 22:30 +Tucson,RED,SPHERE,AZ,4/13/2002 10:00 +Magna,,SPHERE,UT,4/13/2002 11:00 +Muskego,,CIRCLE,WI,4/13/2002 12:20 +San Antonio,,SPHERE,TX,4/13/2002 20:00 +Green Bay,,OTHER,WI,4/13/2002 21:45 +Palm Springs,,FORMATION,CA,4/13/2002 22:00 +Las Vegas,,VARIOUS,NV,4/14/2002 3:00 +Peoria,,LIGHT,AZ,4/14/2002 20:00 +Lyndhurst,,OTHER,NJ,4/15/2002 3:00 +Westminster,,TRIANGLE,CO,4/15/2002 6:30 +Peerless Park,,,MO,4/15/2002 13:00 +St. Louis area,,,MO,4/15/2002 13:00 +Clarksburg,RED,OTHER,PA,4/15/2002 20:30 +Imperial,,LIGHT,CA,4/15/2002 21:00 +West Liberty,,VARIOUS,KY,4/16/2002 1:00 +Connecticut,,CIRCLE,CT,4/16/2002 21:00 +Byram,,CIRCLE,NJ,4/16/2002 21:05 +Highlands Ranch,,CYLINDER,CO,4/16/2002 21:45 +Nashua,,DISK,NH,4/16/2002 22:24 +Nashua,,DISK,NH,4/16/2002 22:24 +Philadelphia,,DISK,PA,4/17/2002 0:30 +Needles,,CIRCLE,CA,4/17/2002 3:30 +Greers Ferry,ORANGE,,AR,4/17/2002 20:20 +Lakewood,,LIGHT,CO,4/17/2002 20:20 +Mesa,,,AZ,4/17/2002 20:20 +Moscow,,CIGAR,PA,4/17/2002 20:30 +Virginia Beach,,LIGHT,VA,4/17/2002 20:30 +Oxnard,,LIGHT,CA,4/17/2002 20:46 +Mt. Carmel,,LIGHT,PA,4/17/2002 20:50 +Long Beach,,LIGHT,CA,4/17/2002 20:55 +San Jose,,CIRCLE,CA,4/17/2002 20:55 +Sebastopol,,LIGHT,CA,4/17/2002 20:55 +Fresno,,DISK,CA,4/17/2002 21:00 +San Antonio,,LIGHT,TX,4/17/2002 21:20 +Pensacola,,LIGHT,FL,4/17/2002 21:30 +McMinnville,,OVAL,OR,4/17/2002 21:45 +McMinnville,,TRIANGLE,OR,4/17/2002 21:45 +San Antonio,,,TX,4/17/2002 21:45 +El Reno,,OTHER,OK,4/17/2002 23:45 +Highbridge,,LIGHT,WI,4/18/2002 3:00 +Whittier,,LIGHT,CA,4/18/2002 5:30 +Hilliard,,DISK,OH,4/18/2002 20:30 +Tubac,,LIGHT,AZ,4/18/2002 20:30 +Port Orchard,,CHEVRON,WA,4/18/2002 21:30 +Buffalo,,FORMATION,NY,4/18/2002 21:45 +Santa Cruz,,TRIANGLE,CA,4/18/2002 21:45 +Wadsworth,,DIAMOND,IL,4/19/2002 2:00 +Bloomingburgh,RED,,NY,4/19/2002 20:00 +Melbourne Beach,,SPHERE,FL,4/19/2002 20:11 +Carterville,,EGG,IL,4/19/2002 21:30 +Lakeside,,TRIANGLE,CA,4/19/2002 22:00 +Folsom,,TRIANGLE,CA,4/19/2002 23:06 +Skytop,,CIRCLE,PA,4/20/2002 2:00 +Rocky Mount,,LIGHT,NC,4/20/2002 2:30 +Tucson,,DIAMOND,AZ,4/20/2002 20:50 +Killeen,,TRIANGLE,TX,4/20/2002 21:30 +Cortland,,,NY,4/20/2002 22:00 +Willow Springs,ORANGE,TRIANGLE,MO,4/20/2002 22:00 +Iowa,,VARIOUS,IA,4/21/2002 4:00 +Lancaster,,CIRCLE,CA,4/21/2002 16:00 +Mammoth Cave,,OTHER,KY,4/21/2002 19:00 +Escondido,,CIRCLE,CA,4/22/2002 3:55 +Conroe,,DIAMOND,TX,4/22/2002 19:00 +Lemont,,FIREBALL,IL,4/22/2002 21:00 +Primm Springs,,LIGHT,TN,4/22/2002 21:30 +Dover,,FLASH,AR,4/22/2002 22:15 +Everett,,TRIANGLE,WA,4/22/2002 23:45 +Greenville,,LIGHT,SC,4/23/2002 2:00 +Berkley Springs,,DISK,MD,4/23/2002 13:00 +St.Charles,,VARIOUS,MI,4/23/2002 22:00 +New York City,,VARIOUS,NY,4/23/2002 23:34 +Elm Mott,,TRIANGLE,TX,4/24/2002 0:30 +Lake Havasu City,,LIGHT,AZ,4/24/2002 1:40 +Salt Lake City,,DIAMOND,UT,4/24/2002 7:30 +Coeur d'Alene,,SPHERE,ID,4/24/2002 19:00 +Leslie,,SPHERE,AR,4/24/2002 21:00 +Meriden,,LIGHT,CT,4/24/2002 21:45 +Bellflower,,LIGHT,CA,4/24/2002 22:00 +Port Orchard,,LIGHT,WA,4/24/2002 23:30 +Winston-Salem,,LIGHT,NC,4/25/2002 0:30 +San Jose,,CIRCLE,CA,4/25/2002 11:30 +Flagstaff,GREEN,OTHER,NV,4/25/2002 21:15 +Stockton,,TRIANGLE,AL,4/25/2002 22:15 +Westmont,GREEN,LIGHT,NJ,4/26/2002 6:00 +Seattle,,SPHERE,WA,4/26/2002 15:00 +Toma to Madison,,OTHER,WI,4/26/2002 15:00 +Jacksonville,,CYLINDER,FL,4/26/2002 15:05 +Germantown,,SPHERE,NY,4/27/2002 13:10 +Galveston,,OTHER,TX,4/27/2002 15:30 +Steeleville,,FIREBALL,IL,4/27/2002 16:00 +Benicia,,CIGAR,CA,4/27/2002 19:00 +Wilmington,,LIGHT,NC,4/27/2002 21:00 +Jacksonville,,CIRCLE,FL,4/27/2002 21:58 +Portland,,CIRCLE,OR,4/27/2002 23:40 +St. Charles,,LIGHT,IL,4/28/2002 21:45 +Harrison,,RECTANGLE,MI,4/28/2002 22:15 +Tacoma,,TRIANGLE,WA,4/28/2002 22:40 +Seattle,GREEN,LIGHT,WA,4/29/2002 21:08 +Evanston,,SPHERE,WY,4/29/2002 21:30 +Seattle,GREEN,LIGHT,WA,4/29/2002 21:50 +Gates,,,OR,4/29/2002 23:30 +Cheyenne,,EGG,WY,4/30/2002 20:15 +Woodinville,,CHEVRON,WA,4/30/2002 22:04 +Gaylord,RED BLUE,OTHER,MI,4/30/2002 23:15 +Glendale,,LIGHT,AZ,5/1/2002 11:30 +Rippon,,OTHER,WV,5/1/2002 17:30 +Chicago,,OVAL,IL,5/1/2002 21:00 +Rossford,,DISK,OH,5/1/2002 22:00 +Sheridan,,CIRCLE,OR,5/1/2002 23:30 +Torrance,,CHEVRON,CA,5/2/2002 12:40 +Dayton,,DISK,OH,5/2/2002 13:00 +Spokane,,TRIANGLE,WA,5/2/2002 16:00 +Kansas City,,TRIANGLE,MO,5/2/2002 19:45 +Paris,,CIRCLE,KY,5/2/2002 23:45 +San Antonio,,LIGHT,TX,5/3/2002 0:00 +Quemado,,TEARDROP,NM,5/3/2002 15:28 +Bridgeport,GREEN,CIRCLE,VT,5/4/2002 0:50 +Oak Glen,,LIGHT,CA,5/4/2002 3:00 +Santa Ynez,,FIREBALL,CA,5/4/2002 3:00 +Tucson,,LIGHT,AZ,5/4/2002 5:00 +Apple Valley,,OTHER,CA,5/4/2002 15:30 +Long Island,,EGG,NY,5/4/2002 15:45 +Smithtown,,CIRCLE,NY,5/4/2002 16:00 +Alva,,LIGHT,OK,5/4/2002 20:15 +Washington,,DISK,MO,5/4/2002 23:00 +Laredo,,TRIANGLE,TX,5/5/2002 1:00 +Sachse,,OTHER,TX,5/5/2002 1:20 +Thonotosassa,,,FL,5/5/2002 4:00 +Orlando,,DISK,FL,5/5/2002 13:00 +Christmas Valley,,,OR,5/5/2002 15:30 +Seattle,,DISK,WA,5/5/2002 15:45 +Core,,,WV,5/5/2002 16:00 +Show Low,,CIGAR,AZ,5/5/2002 19:11 +State College,,LIGHT,PA,5/5/2002 22:00 +Cochran,,LIGHT,GA,5/6/2002 4:00 +Lake Elsinore,,FIREBALL,CA,5/6/2002 9:00 +Iron Mountian,,DISK,MI,5/6/2002 12:00 +St. Louis,,DISK,MO,5/6/2002 15:50 +Union Grove,,CIRCLE,AL,5/6/2002 20:40 +Western Springs,,LIGHT,IL,5/6/2002 21:10 +Seattle,,OTHER,WA,5/7/2002 4:00 +Albany,,CHEVRON,CA,5/7/2002 20:55 +Marksville,,TRIANGLE,LA,5/7/2002 21:30 +San Francisco,,VARIOUS,CA,5/7/2002 21:30 +McMinnville,,DISK,OR,5/7/2002 23:59 +Meriden,,OTHER,CT,5/8/2002 17:00 +Gig Harbor,,TRIANGLE,WA,5/8/2002 21:10 +Los Angeles,,CIGAR,CA,5/8/2002 21:20 +Oak Hill,,SPHERE,IL,5/8/2002 21:54 +Sault Ste. Marie,,LIGHT,MI,5/9/2002 0:15 +Fostoria,,CIGAR,OH,5/9/2002 2:00 +Knolls,,LIGHT,UT,5/9/2002 7:00 +Paducah,,RECTANGLE,KY,5/9/2002 16:15 +Vernon Hills,,FLASH,IL,5/9/2002 16:15 +Los Angeles,,LIGHT,CA,5/9/2002 21:00 +Salt Lake City,,LIGHT,UT,5/10/2002 0:36 +Surprise,,,AZ,5/10/2002 1:00 +Bend,,LIGHT,OR,5/10/2002 3:00 +Gillette,,TRIANGLE,WY,5/10/2002 19:00 +Rutland,,RECTANGLE,VT,5/10/2002 20:00 +St. James City,ORANGE,CHEVRON,FL,5/10/2002 20:00 +Elm Grove,,FIREBALL,LA,5/10/2002 21:30 +Indianapolis,ORANGE,FIREBALL,IN,5/10/2002 22:00 +Spring,,CIRCLE,TX,5/10/2002 22:00 +San Diego,,TRIANGLE,CA,5/10/2002 23:30 +San Jose,,CIRCLE,CA,5/11/2002 1:00 +Oxnard,,OVAL,CA,5/11/2002 10:00 +Redmond,,,WA,5/11/2002 11:30 +New York City,,,NY,5/11/2002 14:30 +Bellingham,,TRIANGLE,WA,5/11/2002 21:58 +Dallas,,LIGHT,OR,5/11/2002 22:00 +Orlando,,TRIANGLE,FL,5/12/2002 2:23 +Flushing,,FLASH,NY,5/12/2002 3:00 +Lake Mary,,LIGHT,FL,5/12/2002 4:30 +Newark,,RECTANGLE,NJ,5/12/2002 16:10 +Newport,,FIREBALL,NC,5/12/2002 21:00 +Clarkston,ORANGE,OTHER,WA,5/12/2002 21:30 +Clarkston,,LIGHT,WA,5/12/2002 22:00 +Long Beach,ORANGE,FIREBALL,CA,5/12/2002 22:14 +Huntington Station,,LIGHT,NY,5/12/2002 23:00 +Stevens Pass,,LIGHT,WA,5/12/2002 23:15 +Los Angeles,,OVAL,CA,5/13/2002 3:00 +Monroe City,,TEARDROP,MO,5/13/2002 3:00 +Copperas Cove,,DIAMOND,TX,5/13/2002 3:50 +Henderson,,DISK,KY,5/13/2002 6:32 +Seattle,,VARIOUS,WA,5/13/2002 9:00 +Elko,,,NV,5/13/2002 10:25 +Kansas City,,CIGAR,MO,5/13/2002 13:22 +Alhambra,,OTHER,CA,5/13/2002 13:45 +Dublin,,,VA,5/13/2002 20:30 +Mosinee,,TRIANGLE,WI,5/13/2002 21:15 +Holland,,,MI,5/13/2002 22:45 +Grand Rapids,,OTHER,MI,5/14/2002 0:00 +Bedminster,,DISK,PA,5/14/2002 13:00 +Houston,,CIRCLE,TX,5/14/2002 15:30 +Arroyo Grande,RED,LIGHT,CA,5/14/2002 21:00 +Seattle,,LIGHT,WA,5/14/2002 22:30 +Wyoming,,LIGHT,PA,5/15/2002 0:30 +Center,,TRIANGLE,TX,5/15/2002 1:30 +Inside Passage,,OVAL,AK,5/15/2002 3:00 +Monterey,,LIGHT,CA,5/15/2002 4:00 +Sandy,,LIGHT,UT,5/15/2002 4:25 +Florissant,,CIRCLE,CO,5/15/2002 12:00 +Capitola,,TRIANGLE,CA,5/15/2002 14:00 +Hesperia,RED,DIAMOND,CA,5/15/2002 14:30 +Morrow,,LIGHT,GA,5/15/2002 16:00 +Walnut Creek,,LIGHT,CA,5/15/2002 20:30 +Kalamazoo,BLUE,LIGHT,MI,5/15/2002 21:00 +Forty Fort,,CHEVRON,PA,5/15/2002 22:00 +Ford Island,,SPHERE,HI,5/15/2002 22:30 +Ballston Lake,,,NY,5/15/2002 23:00 +Glen Head,,TRIANGLE,NY,5/15/2002 23:30 +Sterling,,LIGHT,VA,5/16/2002 0:00 +Bremerton,YELLOW,,WA,5/16/2002 4:45 +Rowan,,LIGHT,NC,5/16/2002 9:18 +Salem,,SPHERE,IL,5/16/2002 14:27 +Ventura,,CONE,CA,5/17/2002 22:45 +Yarmouth,RED,LIGHT,ME,5/17/2002 23:45 +Rowlett,,DISK,TX,5/18/2002 1:23 +Mount Prospect,RED BLUE,LIGHT,IL,5/18/2002 2:30 +Atlanta,,SPHERE,GA,5/18/2002 14:00 +Oley Valley,BLUE,LIGHT,PA,5/18/2002 21:00 +Port Angeles,,CIRCLE,WA,5/18/2002 21:10 +Aptos,,FORMATION,CA,5/18/2002 21:30 +East Petersburg,,DISK,PA,5/18/2002 22:30 +Ventura,GREEN,TEARDROP,CA,5/18/2002 22:30 +Camarillo,,SPHERE,CA,5/19/2002 0:30 +Lisbon,,OVAL,CT,5/19/2002 14:55 +Boston,,OVAL,MA,5/19/2002 17:00 +Bay Shore,,CIRCLE,NY,5/19/2002 17:15 +Port St. Lucie,,CIRCLE,FL,5/20/2002 1:00 +Camarillo,,DISK,CA,5/20/2002 1:30 +Fort Lewis,,DIAMOND,WA,5/20/2002 2:00 +New York City,,CIGAR,NY,5/20/2002 11:30 +Butte,,,MT,5/20/2002 19:30 +Galesburg,YELLOW,LIGHT,IL,5/20/2002 20:00 +Fairless Hills,,TRIANGLE,PA,5/20/2002 21:00 +Ventura,,CONE,CA,5/20/2002 21:00 +Baltimore,,VARIOUS,MD,5/20/2002 22:00 +Plano,,LIGHT,TX,5/20/2002 22:09 +Shrewsbury,,VARIOUS,PA,5/20/2002 22:15 +Oxnard,,DIAMOND,CA,5/21/2002 1:15 +Camarillo,,TRIANGLE,CA,5/21/2002 1:45 +Ventura,,SPHERE,CA,5/21/2002 2:30 +Ely,ORANGE,CIGAR,MN,5/21/2002 15:30 +Euclid,RED,CYLINDER,OH,5/21/2002 18:30 +Tampa,,DISK,FL,5/21/2002 19:56 +Muncie,YELLOW,VARIOUS,IN,5/21/2002 22:00 +Raleigh,,LIGHT,NC,5/21/2002 22:20 +Ventura,,CIRCLE,CA,5/22/2002 0:30 +Salt Lake City,,OTHER,UT,5/22/2002 3:00 +Nederland,,CHEVRON,TX,5/22/2002 4:50 +Oxnard,,DISK,CA,5/22/2002 8:22 +Ventura,,FIREBALL,CA,5/22/2002 10:50 +Encinitas,,DIAMOND,CA,5/22/2002 23:00 +Somis,,DISK,CA,5/22/2002 23:00 +Ellensburg,,OVAL,WA,5/22/2002 23:05 +Indian Springs,,LIGHT,NH,5/22/2002 23:30 +Tacoma,,LIGHT,WA,5/23/2002 3:00 +Tacoma,,LIGHT,WA,5/23/2002 3:00 +Newburyport,,TEARDROP,MA,5/23/2002 12:30 +Round Rock,,VARIOUS,TX,5/23/2002 13:00 +Sacramento,,,CA,5/23/2002 16:00 +Cranbury,,OTHER,NJ,5/23/2002 20:09 +Wedgefield,,LIGHT,SC,5/23/2002 23:00 +University Park,,DIAMOND,IL,5/24/2002 0:15 +Oregon City,,RECTANGLE,OR,5/24/2002 5:50 +Madison,,,WI,5/24/2002 17:50 +Naples,RED GREEN BLUE,,FL,5/24/2002 22:00 +Albuquerque,,CIRCLE,NM,5/25/2002 0:00 +Shady Shores,,,TX,5/25/2002 3:00 +Angels Camp,,SPHERE,CA,5/25/2002 3:30 +Clearfield,,LIGHT,UT,5/25/2002 13:30 +I don't know,,OVAL,MD,5/25/2002 16:00 +Morrison,RED,EGG,CO,5/25/2002 20:20 +Ventura,,LIGHT,CA,5/25/2002 22:04 +Lake Isabella,,LIGHT,CA,5/25/2002 23:00 +Kenosha,RED YELLOW BLUE,LIGHT,WI,5/25/2002 23:15 +Endicott,,CIGAR,NY,5/26/2002 18:25 +Wimberley,,,TX,5/26/2002 21:00 +Little Rock,,LIGHT,AR,5/26/2002 22:16 +Bigelow,,LIGHT,AR,5/26/2002 22:30 +Ventura,,DISK,CA,5/26/2002 23:34 +Phoenix,,DIAMOND,AZ,5/27/2002 1:30 +Ojai,,LIGHT,CA,5/27/2002 22:00 +Ojai,,SPHERE,CA,5/27/2002 22:00 +Danvers,RED,DISK,MA,5/28/2002 0:00 +Wichita,,TRIANGLE,KS,5/28/2002 0:30 +Manhattan Beach,ORANGE,DISK,CA,5/28/2002 13:50 +Bakersfield,,,CA,5/28/2002 21:15 +Strathmore,,VARIOUS,CA,5/28/2002 22:05 +Little Rock,,CIRCLE,AR,5/28/2002 23:28 +Sedona,,DISK,AZ,5/29/2002 19:00 +Frankfort,ORANGE,LIGHT,IN,5/29/2002 21:15 +Richmond,,OTHER,VA,5/29/2002 22:09 +Rubicon Trail,,TRIANGLE,CA,5/29/2002 22:30 +Stanislaus National Forest,,TEARDROP,CA,5/29/2002 22:32 +Keaau,,SPHERE,HI,5/29/2002 23:40 +Anaeta,,TRIANGLE,KY,5/30/2002 1:00 +Seattle,,OVAL,WA,5/30/2002 8:15 +Seattle,,OTHER,WA,5/30/2002 9:45 +I-95,,SPHERE,VA,5/30/2002 12:30 +Waco,,OTHER,TX,5/30/2002 17:00 +Perrysburg,,OTHER,OH,5/30/2002 18:40 +Cameron,,TRIANGLE,OK,5/30/2002 22:00 +Sevierville,,TRIANGLE,TN,5/30/2002 22:30 +Clinton,GREEN,FLASH,TN,5/30/2002 22:48 +Spring Hill,,TRIANGLE,FL,5/30/2002 23:00 +Warminster,ORANGE,LIGHT,PA,5/31/2002 21:10 +Irving,,FORMATION,TX,5/31/2002 22:00 +Pico Rivera,ORANGE,LIGHT,CA,5/31/2002 22:00 +Rochester,,LIGHT,MN,5/31/2002 23:00 +Bridgman,RED ORANGE,TRIANGLE,MI,6/1/2002 0:30 +Cherokee Village,,LIGHT,AR,6/1/2002 0:35 +Athens,,,TX,6/1/2002 2:00 +Frankford,,LIGHT,DE,6/1/2002 2:45 +Bradenton,,FORMATION,FL,6/1/2002 3:00 +Slaughter Beach,,LIGHT,DE,6/1/2002 12:30 +Madison,,CYLINDER,WI,6/1/2002 14:00 +Brighton Township,,OTHER,MI,6/1/2002 15:00 +Oldbridge,,OTHER,NJ,6/1/2002 17:38 +New York City,,FIREBALL,NY,6/1/2002 19:00 +Noblesville,,DISK,IN,6/1/2002 21:00 +Springfield,,OTHER,MO,6/1/2002 21:22 +Phoenix,,LIGHT,AZ,6/1/2002 21:38 +Banks,,LIGHT,OR,6/1/2002 22:00 +Gettysburg,,LIGHT,PA,6/1/2002 22:00 +San Antonio,,FORMATION,TX,6/1/2002 22:30 +Zillah,YELLOW,LIGHT,WA,6/1/2002 22:45 +Window Rock NM,,OVAL,AZ,6/1/2002 23:00 +Glen Rose,,CIRCLE,TX,6/2/2002 4:00 +Corpus Christi,,DISK,TX,6/2/2002 14:30 +Arlington,,SPHERE,TX,6/2/2002 16:00 +Philadelphia,,LIGHT,PA,6/2/2002 16:30 +Lake Havasu,,LIGHT,AZ,6/2/2002 21:30 +Highland,,CIRCLE,NY,6/2/2002 22:12 +Evanston,,TRIANGLE,IL,6/2/2002 22:30 +Brockton,,OTHER,MA,6/2/2002 22:42 +Littleton,,VARIOUS,CO,6/3/2002 15:03 +Russellville,BLUE,LIGHT,AZ,6/3/2002 21:30 +Old Hickory,,SPHERE,TN,6/3/2002 22:00 +Spring Hill,,TRIANGLE,FL,6/3/2002 22:00 +Dallas,,,TX,6/3/2002 22:15 +Morganton,,TRIANGLE,NC,6/3/2002 23:00 +Cabins,,EGG,WV,6/4/2002 11:00 +Moapa,,FLASH,NV,6/4/2002 11:30 +Hayward,,DIAMOND,CA,6/4/2002 23:00 +Las Vegas,,OVAL,NV,6/4/2002 23:00 +North St. Paul,,SPHERE,MN,6/5/2002 10:20 +Oak Ridge,,SPHERE,TN,6/5/2002 19:30 +Browning,,FIREBALL,MT,6/5/2002 22:10 +S.M,,SPHERE,CA,6/5/2002 23:20 +Charles Town,,LIGHT,WV,6/5/2002 23:35 +Bethel,,OTHER,AK,6/5/2002 23:45 +Hanford,,CYLINDER,CA,6/6/2002 0:00 +Malta,,TRIANGLE,NY,6/6/2002 1:00 +Tuttle Creek,,TRIANGLE,CA,6/6/2002 1:00 +Boca Raton,,FLASH,FL,6/6/2002 5:30 +Concord,,OTHER,CA,6/6/2002 10:45 +Mount Whitney,,FORMATION,CA,6/6/2002 12:05 +Virginia Beach,,TRIANGLE,VA,6/6/2002 20:15 +Las Vegas,,TRIANGLE,NV,6/6/2002 20:30 +Fort Myers,,LIGHT,FL,6/6/2002 21:30 +Elberta,,LIGHT,AL,6/6/2002 21:34 +Fresno,RED,TRIANGLE,CA,6/6/2002 21:35 +Holtville,,LIGHT,CA,6/6/2002 22:00 +Fort Smith,,SPHERE,AR,6/6/2002 22:30 +Las Vegas,,OVAL,NV,6/6/2002 22:30 +Ocean City,,,MD,6/6/2002 23:00 +Las Vegas,,SPHERE,NV,6/6/2002 23:03 +Columbia,,DISK,MO,6/6/2002 23:15 +East Lansing,,LIGHT,MI,6/6/2002 23:45 +Rock Springs,,LIGHT,WY,6/7/2002 0:30 +Chatsworth,,DISK,CA,6/7/2002 11:45 +Tupelo,,SPHERE,MS,6/7/2002 12:30 +Massena,,DISK,NY,6/7/2002 12:58 +Taunton,,OTHER,MA,6/7/2002 21:00 +Bloomingdale,,TRIANGLE,NJ,6/7/2002 22:30 +Decatur,,,IL,6/7/2002 23:00 +Ithaca,,LIGHT,NY,6/7/2002 23:00 +Portsmouth,,TRIANGLE,NH,6/7/2002 23:15 +Mt. Carmel campgrounds,,,SC,6/7/2002 23:45 +Laytonsville,,,MD,6/8/2002 0:00 +Gilroy,,TRIANGLE,CA,6/8/2002 1:45 +Gilroy,,TRIANGLE,CA,6/8/2002 1:58 +Covington,,VARIOUS,VA,6/8/2002 14:00 +Beaver,,CIGAR,PA,6/8/2002 20:00 +Sacramento,,OTHER,CA,6/8/2002 22:00 +Wascott,,TRIANGLE,WI,6/8/2002 22:04 +Chattahoochee County,,CIRCLE,GA,6/8/2002 22:16 +Maize,GREEN,FLASH,KS,6/8/2002 22:30 +Tucson,,LIGHT,AZ,6/8/2002 22:30 +Muskegon,,TRIANGLE,MI,6/8/2002 23:15 +Joshua Tree National Park,,FLASH,CA,6/9/2002 1:00 +Phoenix,,OTHER,AZ,6/9/2002 2:40 +Tacoma,,OVAL,WA,6/9/2002 13:45 +Tacoma,,,WA,6/9/2002 15:00 +Clay Center,,SPHERE,KS,6/9/2002 16:00 +Papillion,,CIGAR,NE,6/9/2002 17:00 +Nashville,,,TN,6/9/2002 20:30 +Seattle,,CIRCLE,WA,6/9/2002 22:30 +Bellingham,,LIGHT,WA,6/9/2002 22:36 +Glenoma,,,WA,6/9/2002 23:00 +Woodinville,,LIGHT,WA,6/9/2002 23:10 +Grants Pass,,OVAL,OR,6/9/2002 23:30 +Isle of Palms,,SPHERE,SC,6/10/2002 0:00 +Ventura,,TRIANGLE,CA,6/10/2002 1:30 +Bailey,,OVAL,CO,6/10/2002 2:30 +Chantilly,,,VA,6/10/2002 3:30 +Camp Pendleton,,LIGHT,CA,6/10/2002 20:01 +Hogansville,,EGG,GA,6/10/2002 20:15 +Myrtle Beach,,VARIOUS,SC,6/10/2002 20:30 +Manchester,,SPHERE,NH,6/10/2002 21:15 +Centereach,,CONE,NY,6/10/2002 22:00 +Lorane,,TRIANGLE,OR,6/10/2002 23:00 +Flowery Branch,,LIGHT,GA,6/10/2002 23:10 +Kaysville,,OTHER,UT,6/11/2002 0:20 +Cicero,,,IN,6/11/2002 21:00 +Sacramento,,LIGHT,CA,6/11/2002 22:15 +Bremerton,,TRIANGLE,WA,6/12/2002 0:50 +Bull Head City,,FORMATION,AZ,6/12/2002 1:00 +Springfield,,SPHERE,MO,6/12/2002 14:30 +Midland,,FORMATION,TX,6/12/2002 20:30 +Norfolk,,OTHER,VA,6/12/2002 21:00 +Austin,,OTHER,TX,6/13/2002 11:00 +Statesville,,FORMATION,NC,6/13/2002 20:15 +Hayward,,,CA,6/13/2002 21:15 +Omaha,,LIGHT,NE,6/13/2002 22:14 +Hayward,,CIRCLE,CA,6/13/2002 22:15 +Dover,,FORMATION,NJ,6/13/2002 23:00 +Hama Hama River,,LIGHT,WA,6/13/2002 23:40 +Los Angeles,,VARIOUS,CA,6/13/2002 23:59 +Albany,,LIGHT,NH,6/14/2002 1:30 +Glendale,,DISK,CA,6/14/2002 15:00 +Camas,,LIGHT,WA,6/14/2002 23:30 +Cleveland,,,GA,6/15/2002 0:00 +Clovis,,OVAL,NM,6/15/2002 0:00 +Mussell County,,,MT,6/15/2002 0:00 +Oak Creek,,TRIANGLE,WI,6/15/2002 0:30 +Tualatin,,OVAL,OR,6/15/2002 0:45 +Phoenix,,FORMATION,AZ,6/15/2002 1:00 +Clearwater,RED,SPHERE,FL,6/15/2002 2:00 +Norwalk,,,CT,6/15/2002 4:30 +Nickelville,,OVAL,MO,6/15/2002 5:00 +Traverse City,,DISK,MI,6/15/2002 5:30 +Norwich,,DISK,CT,6/15/2002 7:15 +Kent,,OVAL,WA,6/15/2002 17:00 +Hastings,,VARIOUS,FL,6/15/2002 18:00 +El Toro,,OTHER,CA,6/15/2002 18:01 +Broadview Heights,ORANGE,OVAL,OH,6/15/2002 19:30 +Hartsville,,,SC,6/15/2002 20:00 +Equinunk,,EGG,PA,6/15/2002 20:30 +Corona,RED ORANGE,FIREBALL,CA,6/15/2002 20:45 +Piqua,,,OH,6/15/2002 21:00 +Richmond,,,VA,6/15/2002 21:30 +Dale,,CIRCLE,TX,6/15/2002 21:56 +North Haledon,RED,FIREBALL,NJ,6/15/2002 22:00 +Pflugerville,,LIGHT,TX,6/15/2002 22:05 +Coral Springs,,LIGHT,FL,6/15/2002 22:30 +Riely,,,MI,6/15/2002 22:30 +Lake Powell,,FORMATION,UT,6/15/2002 23:00 +Lloyd Harbor,,TRIANGLE,NY,6/15/2002 23:00 +Rochester,,LIGHT,NY,6/15/2002 23:00 +Deerfield,,LIGHT,OH,6/16/2002 0:25 +Fernandina Beach,RED,CIRCLE,FL,6/16/2002 3:00 +Bossier City,BLUE,LIGHT,LA,6/16/2002 20:30 +Olympia,,OTHER,WA,6/16/2002 20:30 +Logan,,CIRCLE,WV,6/16/2002 22:00 +Spokane,,LIGHT,WA,6/16/2002 22:00 +Marion,,DISK,OH,6/17/2002 6:45 +Detroit,,TRIANGLE,MI,6/17/2002 8:20 +Licking,,LIGHT,MO,6/17/2002 20:15 +Old Saybrook,,LIGHT,CT,6/17/2002 20:45 +Greensburg,,CIRCLE,PA,6/17/2002 21:25 +Hurley,,OTHER,NM,6/17/2002 21:30 +Paradise,BLUE,FORMATION,CA,6/17/2002 23:57 +Index,,,WA,6/18/2002 1:00 +Cedar Rapids,,FORMATION,IA,6/18/2002 7:45 +Broomfield,,SPHERE,CO,6/18/2002 12:40 +Dallas,,CIRCLE,TX,6/18/2002 14:25 +Moultonboro,,OTHER,NH,6/18/2002 20:00 +Seattle,,DISK,WA,6/18/2002 20:30 +Encino,,TRIANGLE,CA,6/18/2002 21:00 +Laconia,,,NH,6/18/2002 21:00 +Plymouth,,FIREBALL,NH,6/18/2002 21:00 +Plymouth,,FIREBALL,NH,6/18/2002 21:00 +Evanston,,CIRCLE,IL,6/18/2002 21:15 +Moultonborough,,,NH,6/18/2002 21:15 +Gilford,YELLOW,SPHERE,NH,6/18/2002 21:25 +Moultonborough,,VARIOUS,NH,6/18/2002 21:30 +Yarmouth,,SPHERE,ME,6/18/2002 21:45 +Rockford,,TRIANGLE,IL,6/18/2002 22:00 +San Jose,,CIRCLE,CA,6/18/2002 22:30 +Paradise,,LIGHT,CA,6/18/2002 22:57 +Branson,,DISK,MO,6/19/2002 15:00 +Socorro,,CYLINDER,NM,6/19/2002 19:00 +Richmond,,TRIANGLE,VA,6/19/2002 21:05 +Tucson,,LIGHT,AZ,6/19/2002 21:40 +Houston,,LIGHT,TX,6/19/2002 21:50 +Salem,,CIRCLE,AR,6/20/2002 0:00 +Pine Grove Mills,,CYLINDER,PA,6/20/2002 20:10 +Los Angeles,RED,OTHER,CA,6/20/2002 20:15 +Landover,,,MD,6/20/2002 21:00 +Holmdel,,TRIANGLE,NJ,6/20/2002 22:50 +Port Angeles,,FIREBALL,WA,6/20/2002 23:15 +Martinez,,LIGHT,GA,6/20/2002 23:20 +Palm Beach,RED,LIGHT,FL,6/21/2002 1:40 +Avenal,,,CA,6/21/2002 2:40 +Visalia,,VARIOUS,CA,6/21/2002 11:30 +Portland,,SPHERE,OR,6/21/2002 16:30 +Portland,,LIGHT,OR,6/21/2002 16:42 +Lake Oswego,,CIRCLE,OR,6/21/2002 16:50 +Portland,,SPHERE,OR,6/21/2002 17:45 +Plainwell,,CIRCLE,MI,6/21/2002 21:10 +Spokane,,LIGHT,WA,6/21/2002 22:35 +Warren,,SPHERE,PA,6/21/2002 23:00 +Marion,,TEARDROP,NY,6/22/2002 15:00 +Butte,,,MT,6/22/2002 16:00 +Butte,,FORMATION,MT,6/22/2002 16:00 +Butte,,FORMATION,MT,6/22/2002 16:00 +Patterson,,LIGHT,NC,6/22/2002 20:30 +Ansted,,,WV,6/22/2002 21:00 +Ansted,,,WV,6/22/2002 21:00 +Ansted,,LIGHT,WV,6/22/2002 21:00 +Kalamazoo to Muskegon,,LIGHT,MI,6/22/2002 21:30 +Salem,,LIGHT,OR,6/22/2002 22:30 +New York City,,CYLINDER,NY,6/23/2002 3:00 +Northridge,,VARIOUS,CA,6/23/2002 17:00 +Tucson,,DISK,AZ,6/23/2002 18:47 +Claremont,,CIGAR,CA,6/23/2002 19:30 +Port Matilda,,OTHER,PA,6/23/2002 21:30 +Woodland Hills-Canoga Park,,LIGHT,CA,6/23/2002 22:00 +Williamsburg,,LIGHT,VA,6/23/2002 22:13 +Deerfield Beach,,SPHERE,FL,6/24/2002 0:10 +Laguna Niguel,,RECTANGLE,CA,6/24/2002 16:15 +Phoenix,,LIGHT,AZ,6/24/2002 18:58 +New York City,,LIGHT,NY,6/24/2002 20:15 +Branson,,TRIANGLE,MO,6/24/2002 21:30 +Walnut Creek,,,CA,6/24/2002 21:55 +Louisville,RED,,KY,6/24/2002 22:00 +Deerfield Beach,,DISK,FL,6/24/2002 23:10 +Waconia,,LIGHT,MN,6/25/2002 3:00 +Portland,,CIGAR,OR,6/25/2002 10:20 +Washington County,,CIRCLE,WV,6/25/2002 18:35 +Noblesville,RED,CIGAR,IN,6/25/2002 21:10 +Green Valley,,RECTANGLE,AZ,6/25/2002 22:00 +Waterville,,LIGHT,ME,6/25/2002 22:00 +Westerly,,LIGHT,RI,6/25/2002 22:00 +Portland,,CIRCLE,OR,6/25/2002 23:00 +Orting,,OTHER,WA,6/25/2002 23:12 +Aberdeen,,CIRCLE,WA,6/25/2002 23:30 +Flathead Lake,,DISK,MT,6/26/2002 3:00 +Sabina,GREEN,SPHERE,OH,6/26/2002 3:00 +St. Helens,,DISK,OR,6/26/2002 3:00 +Mercury,,OTHER,NV,6/26/2002 13:00 +Tampa,BLUE,SPHERE,FL,6/26/2002 21:00 +Plantation,,LIGHT,CA,6/26/2002 21:45 +Mabton,GREEN,TRIANGLE,WA,6/26/2002 21:50 +Freehold,,DISK,NJ,6/26/2002 22:30 +Hoffman Estates,,FIREBALL,IL,6/26/2002 23:23 +Clearfield,BLUE,LIGHT,UT,6/27/2002 2:00 +Wichita,,TEARDROP,KS,6/27/2002 17:00 +Dunn,,TEARDROP,NC,6/27/2002 20:00 +Phoenix,,FIREBALL,AZ,6/27/2002 21:45 +Natchitoches,,OVAL,LA,6/27/2002 22:00 +Selden,,FORMATION,NY,6/27/2002 22:25 +New York City,,EGG,NY,6/28/2002 13:26 +Winston-Salem,,DISK,NC,6/28/2002 19:00 +Wisconsin Dells,,EGG,WI,6/28/2002 21:00 +Wooster,,CIRCLE,OH,6/28/2002 21:45 +Berryville,,,VA,6/28/2002 22:00 +Salt Lake City,,SPHERE,UT,6/29/2002 0:00 +Martinez,,OVAL,CA,6/29/2002 2:25 +Los Angeles,ORANGE,CONE,CA,6/29/2002 3:45 +Napa,,SPHERE,CA,6/29/2002 10:50 +Richmond,,OTHER,KY,6/29/2002 14:00 +Largo,,DISK,FL,6/30/2002 0:00 +Hastings,,OTHER,NE,6/30/2002 7:00 +Travelers Rest,,LIGHT,SC,6/30/2002 10:00 +Thousand Palms,,OTHER,CA,6/30/2002 18:30 +Denver,,LIGHT,CO,6/30/2002 20:00 +Sedona,,TRIANGLE,AZ,6/30/2002 20:00 +Sun Valley,,LIGHT,NV,6/30/2002 20:00 +Lansdale,,FORMATION,PA,6/30/2002 21:00 +Honolulu,,CIRCLE,HI,6/30/2002 22:00 +Layton,,,UT,6/30/2002 23:00 +North Port,,LIGHT,FL,6/30/2002 23:00 +Sumner,,DISK,WA,7/1/2002 9:21 +Rohnert Park,,VARIOUS,CA,7/1/2002 21:30 +Napa,,VARIOUS,CA,7/1/2002 22:00 +Newport News,,CIRCLE,VA,7/1/2002 23:00 +North Java,,TRIANGLE,NY,7/1/2002 23:00 +Mantua,,DISK,OH,7/2/2002 1:00 +Topeka,,OTHER,KS,7/2/2002 2:00 +Kansas City,,OVAL,MO,7/2/2002 2:15 +Duanesburg,,LIGHT,NY,7/2/2002 2:30 +Los Angeles,,,CA,7/2/2002 13:00 +Boise,,SPHERE,ID,7/2/2002 14:30 +Goodyear,,LIGHT,AZ,7/2/2002 21:30 +South Paris,,SPHERE,ME,7/2/2002 22:10 +Akron,,OVAL,OH,7/3/2002 1:00 +Las Cruces,GREEN,CYLINDER,NM,7/3/2002 1:45 +Scituate,,LIGHT,MA,7/3/2002 3:10 +Wall,,CIRCLE,NJ,7/3/2002 12:30 +Atlanta,,OVAL,GA,7/3/2002 17:00 +San Diego,,CONE,CA,7/3/2002 19:10 +Greensburg,RED,DIAMOND,PA,7/3/2002 22:00 +Fresno,,TRIANGLE,CA,7/3/2002 22:45 +I-355,,LIGHT,IL,7/3/2002 23:00 +Cumberland,,FLASH,WI,7/3/2002 23:30 +Dorena,,TRIANGLE,OR,7/4/2002 0:10 +Naples,,CIRCLE,ME,7/4/2002 1:30 +Cumberland,,CIRCLE,TN,7/4/2002 2:00 +Henryetta,,,OK,7/4/2002 10:00 +Sherman,,CIGAR,NY,7/4/2002 15:00 +Junction City,,CIGAR,KS,7/4/2002 16:30 +Elysburg,,FIREBALL,PA,7/4/2002 17:00 +Pembroke Pines,,SPHERE,FL,7/4/2002 17:30 +Bremerton,,OVAL,WA,7/4/2002 19:00 +San Bernardino,,,CA,7/4/2002 20:23 +New York City,,TRIANGLE,NY,7/4/2002 20:48 +Blue Eye,,,MO,7/4/2002 21:00 +New York City,,CROSS,NY,7/4/2002 21:00 +Strong,,SPHERE,OH,7/4/2002 21:00 +Vista,,,CA,7/4/2002 21:00 +Murrieta,,LIGHT,CA,7/4/2002 21:20 +Howell,,DISK,NJ,7/4/2002 21:30 +Hillsboro,,FIREBALL,OR,7/4/2002 22:45 +Seattle,,VARIOUS,WA,7/4/2002 22:45 +Hudson Bay,,,NJ,7/4/2002 23:02 +Forest Grove,,,OR,7/5/2002 0:00 +Las Vegas,,CHEVRON,NV,7/5/2002 2:00 +Portland,,LIGHT,ME,7/5/2002 3:15 +Cambridge,GREEN,LIGHT,MA,7/5/2002 4:09 +Granville,RED,CIRCLE,OH,7/5/2002 20:00 +Seattle,,LIGHT,WA,7/5/2002 22:30 +Capitola,,CHEVRON,CA,7/5/2002 23:45 +McDonough,,TRIANGLE,GA,7/5/2002 23:45 +Salt Lake City,,OTHER,UT,7/6/2002 0:01 +Franklinton,,TRIANGLE,LA,7/6/2002 1:00 +Waukesha,,CIRCLE,WI,7/6/2002 2:00 +Waukesha,,FIREBALL,WI,7/6/2002 7:30 +Houston,GREEN,TRIANGLE,TX,7/6/2002 11:45 +Clearlake,,FIREBALL,CA,7/6/2002 20:30 +Cloverdale,,OTHER,CA,7/6/2002 21:00 +Napa,,FIREBALL,CA,7/6/2002 21:00 +Cincinnati,RED,TRIANGLE,OH,7/6/2002 21:15 +Longmont,,CIRCLE,CO,7/6/2002 21:45 +Longmont,,CIRCLE,CO,7/6/2002 21:45 +Yreka,,SPHERE,CA,7/6/2002 22:41 +Clarksburg,,,WV,7/6/2002 23:00 +Pittsburgh,,RECTANGLE,PA,7/6/2002 23:00 +Bend,,TRIANGLE,OR,7/7/2002 0:15 +Bend,,TRIANGLE,OR,7/7/2002 1:00 +Myrtle Point,,CIGAR,OR,7/7/2002 1:30 +Cedar Hill,,FORMATION,TX,7/7/2002 4:37 +Eagle Butte,BLUE,LIGHT,SD,7/7/2002 9:45 +Charlotte,,CIRCLE,NC,7/7/2002 12:00 +Chagrin Falls,,CROSS,OH,7/7/2002 14:00 +Tehachapi Pass HWY 58,,RECTANGLE,CA,7/7/2002 16:00 +Henryetta,,FIREBALL,OK,7/8/2002 0:00 +Waterbury,,DISK,CT,7/8/2002 18:00 +Edisto Island,,SPHERE,SC,7/8/2002 20:30 +Chicago,,FLASH,IL,7/8/2002 20:45 +Sylacauga,,CIRCLE,AL,7/8/2002 21:00 +Pembroke Pines,GREEN,,FL,7/8/2002 21:10 +Miami,,TRIANGLE,FL,7/8/2002 23:00 +Brookhaven,,TRIANGLE,PA,7/9/2002 0:15 +Klamath Falls,,LIGHT,OR,7/9/2002 3:55 +Clearwater,,OTHER,FL,7/9/2002 12:28 +Modesto,,LIGHT,CA,7/9/2002 21:15 +San Antonio,,CIRCLE,TX,7/9/2002 21:30 +Bel AIr,,TRIANGLE,MD,7/9/2002 21:50 +Strawberry Plains,,,TN,7/9/2002 22:09 +Bullhead City,RED GREEN,OVAL,AZ,7/9/2002 23:00 +Abbeville,,TRIANGLE,SC,7/9/2002 23:45 +Tooele,,FIREBALL,UT,7/10/2002 1:30 +Mount Prospect,,DISK,IL,7/10/2002 19:00 +Rochester,,,NY,7/10/2002 19:24 +Charlotte,,LIGHT,NC,7/10/2002 21:50 +Big Sur,,,CA,7/10/2002 22:00 +Farmington,,LIGHT,WV,7/10/2002 22:13 +Commack,,LIGHT,NY,7/10/2002 22:15 +Canadian,,,TX,7/10/2002 22:30 +Redmond,,LIGHT,WA,7/10/2002 22:40 +Cape Coral,,CIRCLE,FL,7/10/2002 23:00 +Corona,,LIGHT,CA,7/10/2002 23:56 +Fort Collins,,TRIANGLE,CO,7/11/2002 1:00 +Sandy,,LIGHT,UT,7/11/2002 1:00 +St. Charles,,DISK,MO,7/11/2002 8:16 +Baltimore,,FLASH,MD,7/11/2002 21:15 +Easton,RED,CIRCLE,MI,7/11/2002 21:30 +Newark,,CIRCLE,OH,7/11/2002 22:00 +Seymour,,DISK,CT,7/11/2002 22:25 +West Chester,,LIGHT,OH,7/11/2002 22:50 +Rapid City,,LIGHT,SD,7/12/2002 1:20 +Pocatello,,TRIANGLE,ID,7/12/2002 2:00 +New Brighton,,CIGAR,PA,7/12/2002 14:00 +Snohomish,,CIRCLE,WA,7/12/2002 17:00 +Buffalo,,,NY,7/12/2002 18:42 +Beaver Meadows,,OVAL,PA,7/12/2002 19:30 +Hillsboro,,VARIOUS,OR,7/12/2002 22:00 +Clinton,,TRIANGLE,MS,7/12/2002 22:08 +Franklin,ORANGE,LIGHT,PA,7/12/2002 22:50 +Bangor,,CIGAR,ME,7/12/2002 23:15 +Hamlin,,FIREBALL,PA,7/13/2002 1:00 +Memphis,YELLOW,CHEVRON,TN,7/13/2002 2:24 +Lake Of The Ozarks,,CIGAR,MO,7/13/2002 4:30 +Saxonburg,,VARIOUS,PA,7/13/2002 6:39 +Denver,,TRIANGLE,CO,7/13/2002 11:00 +Indianapolis,,DISK,IN,7/13/2002 14:00 +Portland,,OVAL,OR,7/13/2002 20:30 +Lawrence,,CIGAR,KS,7/13/2002 21:10 +no data,,FORMATION,TX,7/13/2002 22:00 +Paramus,,FORMATION,NJ,7/13/2002 23:10 +Northport,,LIGHT,NY,7/13/2002 23:59 +Avenal,,LIGHT,CA,7/14/2002 0:00 +Taylorville,,CIRCLE,IL,7/14/2002 0:15 +Hamilton,,OTHER,OH,7/14/2002 2:30 +Cobmoosa Shores,,LIGHT,MI,7/14/2002 3:00 +Ashland,,,WI,7/14/2002 4:00 +LaGrangeville,,OVAL,NY,7/14/2002 13:00 +Fallschurch,,DISK,VA,7/14/2002 16:00 +Modesto,,VARIOUS,CA,7/14/2002 20:03 +North Myrtle Beach,,CIRCLE,SC,7/14/2002 22:00 +Rochester Hills,,CIRCLE,MI,7/14/2002 22:00 +Salem,,CIRCLE,OR,7/14/2002 22:25 +Pewaukee,,FLASH,WI,7/15/2002 0:00 +Sears Point,,LIGHT,NM,7/15/2002 0:00 +Moxee,,LIGHT,WA,7/15/2002 1:00 +Port Angeles,,LIGHT,WA,7/15/2002 1:30 +Manchester,,,NH,7/15/2002 3:00 +Lexington,,CYLINDER,KY,7/15/2002 4:00 +Kingsland,,LIGHT,TX,7/15/2002 4:30 +Aloha,,CIRCLE,OR,7/15/2002 7:45 +Harrisburg,,SPHERE,PA,7/15/2002 9:00 +Franklin County,,DISK,MO,7/15/2002 10:00 +Yardley,,TRIANGLE,PA,7/15/2002 11:30 +Fowlerville,,TRIANGLE,MI,7/15/2002 15:00 +New York City,,FIREBALL,NY,7/15/2002 15:00 +Rock River,,OVAL,WY,7/15/2002 15:00 +Burbank Heights,,CROSS,WA,7/15/2002 18:00 +Missoula,,FIREBALL,MT,7/15/2002 20:01 +Pomfret,,CIRCLE,VT,7/15/2002 20:45 +Atlantic,,,NJ,7/15/2002 21:00 +Indianapolis,,CIRCLE,IN,7/15/2002 21:00 +Bothell,,OVAL,WA,7/15/2002 22:00 +Duck,GREEN,FORMATION,NC,7/15/2002 22:00 +Pittsfield,,,ME,7/15/2002 22:00 +Tillamook,,LIGHT,OR,7/15/2002 22:00 +Cold Spring,RED YELLOW BLUE,CIRCLE,NY,7/15/2002 22:30 +Nampa,,LIGHT,ID,7/15/2002 22:30 +Rhinelander,,OTHER,WI,7/15/2002 23:00 +Hughson,,LIGHT,CA,7/15/2002 23:15 +Portland,,SPHERE,OR,7/16/2002 0:00 +New York City,,,NY,7/16/2002 10:00 +Broomfield,,TEARDROP,CO,7/16/2002 21:00 +Shelbyville,,TRIANGLE,TN,7/16/2002 21:00 +Riverhead,,LIGHT,NY,7/16/2002 22:00 +Jacksonville,,CIRCLE,AL,7/17/2002 2:30 +Mobile,,VARIOUS,AL,7/17/2002 2:33 +Barton City,ORANGE,FIREBALL,MI,7/17/2002 2:50 +Port Liberte,,DISK,NJ,7/17/2002 3:30 +Cleveland,,FLASH,TX,7/17/2002 4:45 +Fremont,,CIRCLE,OH,7/17/2002 16:30 +Addison,,OTHER,TX,7/17/2002 17:00 +Jacksonville,,FLASH,NC,7/17/2002 21:33 +Harbor Beach,,LIGHT,MI,7/17/2002 22:30 +Duluth,,TRIANGLE,GA,7/17/2002 22:55 +Hoover,,LIGHT,AL,7/18/2002 21:30 +Mill Valley,,LIGHT,CA,7/18/2002 21:30 +Van Nuys,,DISK,CA,7/19/2002 11:35 +Pembroke Pines,,CYLINDER,FL,7/19/2002 18:00 +Nashville,,VARIOUS,TN,7/19/2002 19:50 +Bessemer,,DISK,AL,7/19/2002 21:00 +Fair Play,ORANGE,FIREBALL,MO,7/19/2002 22:00 +Heber Springs,,FIREBALL,AR,7/19/2002 22:00 +Pinckney,,,MI,7/20/2002 0:00 +Fairfeild,,DISK,ME,7/20/2002 0:35 +Stampede Lake,,OTHER,NV,7/20/2002 2:00 +Phoenix,,CYLINDER,AZ,7/20/2002 8:30 +Carolina Beach,RED,FORMATION,NC,7/20/2002 20:00 +Anaheim,,TEARDROP,CA,7/20/2002 21:00 +Splendora,,OVAL,TX,7/20/2002 21:00 +Ford City,,,PA,7/20/2002 21:40 +San Jose,,OTHER,CA,7/20/2002 21:40 +Olivet,,,MI,7/20/2002 22:00 +Chittenango,,,NY,7/20/2002 22:15 +Maybrook,,FIREBALL,NY,7/20/2002 22:30 +Dorrington,,LIGHT,CA,7/20/2002 23:00 +Carrollton,,TEARDROP,TX,7/20/2002 23:35 +Dundee,,LIGHT,WI,7/21/2002 9:04 +Gilbert,BLUE,FIREBALL,AZ,7/21/2002 20:31 +Blacksburg,GREEN,OVAL,VA,7/21/2002 22:34 +Deer Lodge,,CIGAR,MT,7/21/2002 22:52 +Littleton,RED,CIRCLE,CO,7/22/2002 2:00 +LaVergne,,CIRCLE,TN,7/22/2002 19:45 +Colorado Springs,,SPHERE,CO,7/23/2002 3:00 +Spring Hill,,SPHERE,FL,7/23/2002 18:00 +Outer Banks,RED,LIGHT,NC,7/23/2002 21:50 +Kernville,RED,CHEVRON,CA,7/23/2002 22:00 +Los Angeles,RED,CHEVRON,CA,7/23/2002 22:00 +Tehachapi,RED,OTHER,CA,7/23/2002 22:00 +Los Angeles,,VARIOUS,CA,7/23/2002 22:05 +West Hills,,FORMATION,CA,7/23/2002 22:05 +West Hills,RED,FORMATION,CA,7/23/2002 22:05 +Valencia,RED,,CA,7/23/2002 22:10 +Avalon,,TRIANGLE,CA,7/23/2002 22:15 +Deer Lodge,,DISK,MT,7/23/2002 22:15 +Santa Monica,,TRIANGLE,CA,7/23/2002 22:15 +Marina del Rey,RED,CHEVRON,CA,7/23/2002 22:18 +Avalon,,FORMATION,CA,7/23/2002 22:30 +Avalon,RED,TRIANGLE,CA,7/23/2002 22:30 +Exeter,,TRIANGLE,CA,7/23/2002 22:30 +Reseda,RED BLUE,TRIANGLE,CA,7/23/2002 22:30 +Sequoia National Park,,TRIANGLE,CA,7/23/2002 22:30 +Albany,,FIREBALL,NY,7/24/2002 0:30 +Albany,,FIREBALL,NY,7/24/2002 0:30 +Haines City,RED ORANGE,,FL,7/24/2002 1:00 +Everson,,,WA,7/24/2002 2:50 +Pauls Valley,,DIAMOND,OK,7/24/2002 10:00 +North Huntingdon,RED,SPHERE,PA,7/24/2002 22:00 +Wichita,,FORMATION,KS,7/25/2002 0:37 +Beaumont,RED GREEN,LIGHT,TX,7/25/2002 2:00 +Polk City,,SPHERE,FL,7/25/2002 9:20 +Beachwood,,OVAL,OH,7/25/2002 11:55 +Greenfield,,CIRCLE,IN,7/25/2002 14:00 +Summerfield,,SPHERE,FL,7/25/2002 20:50 +Galt,,DIAMOND,CA,7/25/2002 21:30 +Shirley,,FORMATION,NY,7/25/2002 21:30 +Shirley,,LIGHT,NY,7/25/2002 21:30 +Portland,,LIGHT,OR,7/25/2002 23:00 +Waldorf,,,MD,7/26/2002 1:00 +Waldorf,,LIGHT,VA,7/26/2002 1:00 +Columbus,,CIRCLE,OH,7/26/2002 1:07 +Andrews AFB,,OVAL,MD,7/26/2002 1:15 +Arlington,,LIGHT,VA,7/26/2002 1:15 +Waldorf,,CIRCLE,MD,7/26/2002 1:30 +Seattle,,CIGAR,WA,7/26/2002 2:00 +Mojave,,LIGHT,CA,7/26/2002 3:43 +Socorro,GREEN,TRIANGLE,NM,7/26/2002 5:45 +Seville,,OVAL,OH,7/26/2002 20:00 +North Bennington,,DISK,VT,7/26/2002 21:00 +Xenia,RED,CIRCLE,OH,7/26/2002 21:00 +None,,FLASH,CO,7/26/2002 22:00 +Philadelphia,,LIGHT,PA,7/26/2002 22:10 +Hazard,,FORMATION,KY,7/26/2002 22:30 +Dallas,RED ORANGE YELLOW,FIREBALL,TX,7/26/2002 22:45 +Portland,,LIGHT,OR,7/26/2002 22:45 +Acme,,LIGHT,MI,7/26/2002 23:30 +Evans,ORANGE,VARIOUS,WV,7/26/2002 23:50 +Troy,,RECTANGLE,MI,7/27/2002 3:20 +Holstein,,LIGHT,IA,7/27/2002 4:55 +Wilmington,,RECTANGLE,CA,7/27/2002 14:00 +North Little Rock,,DISK,AR,7/27/2002 16:00 +Phoenix,,CIRCLE,AZ,7/27/2002 20:15 +Simi Valley,YELLOW,OVAL,CA,7/27/2002 21:45 +Mohawk,,LIGHT,NY,7/27/2002 22:30 +Seattle,,FLASH,WA,7/27/2002 23:00 +Cheektowaga,GREEN,TRIANGLE,NY,7/28/2002 1:00 +Pocahontas,ORANGE GREEN BLUE,DISK,AR,7/28/2002 1:30 +Sedona,,OVAL,AZ,7/28/2002 3:10 +Truth or Consequences,,VARIOUS,NM,7/28/2002 10:00 +Inglewood,,,CA,7/28/2002 18:00 +New York City,,VARIOUS,NY,7/28/2002 20:10 +Coutit,,LIGHT,MA,7/28/2002 22:00 +Rapid City,,LIGHT,SD,7/28/2002 22:00 +Thornton,,CIRCLE,CO,7/28/2002 22:30 +Goleta,,,CA,7/28/2002 23:30 +Phoenix,,CHEVRON,AZ,7/29/2002 0:00 +Cliffwood,,DISK,NJ,7/29/2002 17:00 +New Orleans,,OVAL,LA,7/29/2002 19:30 +Santa Cruz,RED,,CA,7/29/2002 21:15 +West Los Angeles,,SPHERE,CA,7/29/2002 21:50 +New York Mills,RED GREEN,FLASH,NY,7/29/2002 22:15 +Bluefield,BLUE,LIGHT,WV,7/29/2002 22:30 +Nashville,YELLOW,CIRCLE,IN,7/29/2002 22:40 +York,,CYLINDER,PA,7/30/2002 0:04 +Marstons Mills,,TRIANGLE,MA,7/30/2002 0:20 +Mainville,,LIGHT,OH,7/30/2002 1:25 +Cincinnati,,FLASH,OH,7/30/2002 2:00 +Nampa,,CIGAR,ID,7/30/2002 2:20 +Mesquite,,TRIANGLE,NM,7/30/2002 14:00 +Gila Bend,,OTHER,AZ,7/30/2002 19:14 +West Long Branch,ORANGE,DISK,NJ,7/30/2002 20:00 +Union,,,KY,7/30/2002 20:40 +Atlanta,,CIRCLE,GA,7/30/2002 21:35 +Ponte Vedra Beach,,,FL,7/30/2002 21:39 +Beloit,,TRIANGLE,WI,7/30/2002 21:45 +Graham,,CIRCLE,NC,7/30/2002 22:00 +Loudon,,,NH,7/30/2002 22:05 +Magna,,CIRCLE,UT,7/30/2002 22:08 +Flathead Lake,,LIGHT,MT,7/30/2002 23:35 +Hungry Horse,,LIGHT,MT,7/31/2002 0:05 +Orland Park,,DISK,IL,7/31/2002 2:34 +Liberty,,OTHER,OH,7/31/2002 2:45 +Washington,,OTHER,CT,7/31/2002 3:30 +Roswell,RED GREEN,OVAL,NM,7/31/2002 4:24 +Bradenton,,LIGHT,FL,7/31/2002 6:20 +Corpus Christi,,FIREBALL,TX,7/31/2002 9:45 +Cove Palisades,,DISK,OR,7/31/2002 13:30 +Aztec,,DISK,NM,7/31/2002 20:00 +Charleston,,CYLINDER,WV,7/31/2002 20:00 +Cleveland,,CIRCLE,GA,7/31/2002 21:00 +Fairlawn,,TRIANGLE,OH,7/31/2002 21:00 +Dover,,CIRCLE,MA,7/31/2002 21:14 +Troy,,RECTANGLE,IL,7/31/2002 22:00 +Manhattan,RED,SPHERE,KS,7/31/2002 22:23 +Cazenovia,,FLASH,NY,7/31/2002 22:30 +Hampton,,,VA,7/31/2002 22:30 +Severn,,LIGHT,MD,7/31/2002 23:10 +Hermantown,,TRIANGLE,MS,8/1/2002 0:00 +no data,GREEN,FORMATION,OH,8/1/2002 0:00 +Columbus,,CIRCLE,OH,8/1/2002 0:45 +Lexington,,FLASH,KY,8/1/2002 3:00 +South Bend,RED,OVAL,IN,8/1/2002 15:25 +Livermore,,DISK,CA,8/1/2002 16:00 +Nashville,,CIRCLE,TN,8/1/2002 19:00 +Dallas,,TEARDROP,TX,8/1/2002 20:45 +Monroeton,,DISK,PA,8/1/2002 21:00 +Rural Dixon County,,RECTANGLE,NE,8/1/2002 21:00 +Rancho Santa Fe,,TRIANGLE,CA,8/1/2002 21:30 +Salt Lake City,,CIGAR,UT,8/1/2002 22:00 +Parma,YELLOW,SPHERE,OH,8/1/2002 22:30 +Flowood,,,MS,8/1/2002 23:00 +North Royalton,,DIAMOND,OH,8/2/2002 3:23 +Seattle,,EGG,WA,8/2/2002 12:30 +Wisconsin Rapids,,TRIANGLE,WI,8/2/2002 21:30 +Portland,,,OR,8/2/2002 21:45 +Hazel Green,,TRIANGLE,AL,8/2/2002 22:15 +Las Vegas,,OTHER,NV,8/2/2002 22:15 +Camarillo,,OTHER,CA,8/2/2002 22:30 +Maple Valley,,LIGHT,WA,8/2/2002 22:30 +Siler City,,TRIANGLE,NC,8/2/2002 23:00 +Norman,,LIGHT,OK,8/2/2002 23:10 +Henderson,,OTHER,NV,8/2/2002 23:30 +Osseo,GREEN,DISK,WI,8/2/2002 23:30 +Portland,,LIGHT,OR,8/3/2002 4:18 +Chula Vista,,FORMATION,CA,8/3/2002 13:05 +Aurora,,TRIANGLE,CO,8/3/2002 13:45 +Churchville,RED,LIGHT,MD,8/3/2002 21:30 +Lansing,,LIGHT,MI,8/3/2002 21:30 +Bowleys Quarters,,OTHER,MD,8/3/2002 22:00 +Whittier,,,CA,8/3/2002 22:00 +Portland,,LIGHT,OR,8/3/2002 22:05 +Florence,ORANGE,CIRCLE,OR,8/3/2002 22:15 +Papillion,,LIGHT,NE,8/3/2002 22:15 +Sullivan,,LIGHT,IL,8/3/2002 22:15 +Derry,,,NH,8/4/2002 1:00 +Gardiner,,,ME,8/4/2002 2:00 +Keystone,,LIGHT,CO,8/4/2002 4:00 +Northumberland,,,PA,8/4/2002 5:00 +Northumberland,,,PA,8/4/2002 5:30 +Northumberland,,CIRCLE,PA,8/4/2002 5:30 +Northumberland,,DISK,PA,8/4/2002 5:30 +Northumberland,,DISK,PA,8/4/2002 5:30 +Keaau,,DISK,HI,8/4/2002 18:00 +Hollywood,,SPHERE,CA,8/4/2002 18:30 +Northumberland,,,PA,8/4/2002 19:36 +Ramseur,,FORMATION,NC,8/4/2002 22:00 +Austin,,LIGHT,TX,8/4/2002 22:30 +Shelton,,,WA,8/4/2002 23:25 +Lutsen,,,MN,8/5/2002 1:25 +St. Simons Island,,CIRCLE,GA,8/5/2002 6:00 +Charlotte,ORANGE,SPHERE,NC,8/5/2002 18:00 +Mentor,,CYLINDER,OH,8/5/2002 20:15 +Petaluma,,FLASH,CA,8/5/2002 22:00 +Martinsville,,TRIANGLE,IN,8/5/2002 23:15 +Landover Hills,,,MD,8/6/2002 3:30 +Skowhegan,,TEARDROP,ME,8/6/2002 14:13 +Houston,,CIRCLE,TX,8/6/2002 18:00 +Baltimore,,TRIANGLE,MD,8/6/2002 18:16 +New York City,,CIRCLE,NY,8/6/2002 19:00 +Garfield,,LIGHT,NJ,8/6/2002 20:50 +Ahwahnee,,LIGHT,CA,8/6/2002 21:30 +Brandywine,ORANGE BLUE,LIGHT,MD,8/6/2002 21:50 +Riverside,,VARIOUS,CA,8/6/2002 21:50 +Watersmeet,,LIGHT,MI,8/6/2002 22:00 +Tucson,,LIGHT,AZ,8/6/2002 22:30 +Scottsville,,,KY,8/7/2002 3:00 +Richardson,,,TX,8/7/2002 12:00 +Arlington,,OTHER,WA,8/7/2002 13:35 +Humble,,VARIOUS,TX,8/7/2002 19:30 +Arlington,,LIGHT,VA,8/7/2002 21:00 +Petaluma,,LIGHT,CA,8/7/2002 21:40 +Prospect Valley,BLUE,LIGHT,CO,8/7/2002 21:45 +Tukwila,RED ORANGE,LIGHT,WA,8/7/2002 22:10 +Luray,,OTHER,VA,8/7/2002 22:30 +Barrington,YELLOW,,IL,8/7/2002 22:34 +Murfreesboro,,TRIANGLE,TN,8/7/2002 23:05 +Vancouver,,DISK,WA,8/7/2002 23:20 +Keansburg,,CIRCLE,NJ,8/8/2002 2:30 +Burlington,,CYLINDER,VT,8/8/2002 13:15 +Revere,,SPHERE,MA,8/8/2002 15:00 +Fairlawn,,FLASH,NJ,8/8/2002 15:05 +Seattle,,DISK,WA,8/8/2002 15:15 +Dalton,RED,CIRCLE,GA,8/8/2002 20:30 +Mexican Water,,TRIANGLE,AZ,8/8/2002 20:45 +Cincinnati,,SPHERE,OH,8/8/2002 22:30 +Batesburg,ORANGE,,SC,8/8/2002 22:35 +Saline,,,MI,8/8/2002 22:45 +San Antonio,,FIREBALL,TX,8/9/2002 0:25 +Martinez,,FLASH,CA,8/9/2002 1:50 +Seattle,,DIAMOND,WA,8/9/2002 2:22 +Hadley,,OVAL,MA,8/9/2002 9:33 +Pittsburgh,,LIGHT,PA,8/9/2002 19:30 +Manalapan,,DIAMOND,NJ,8/9/2002 20:30 +Las Vegas,,,NV,8/9/2002 20:45 +Kingsport,,LIGHT,TN,8/9/2002 21:00 +Spokane,,LIGHT,WA,8/9/2002 21:45 +Graham,,CIGAR,WA,8/9/2002 21:54 +Seattle,,LIGHT,WA,8/9/2002 22:18 +Telluride,,LIGHT,CO,8/9/2002 22:30 +Arizona,GREEN BLUE,TRIANGLE,AZ,8/9/2002 23:30 +Gaviota,,LIGHT,CA,8/10/2002 0:00 +Camden Point,,,MO,8/10/2002 0:30 +Richmond,,CIRCLE,MO,8/10/2002 0:40 +Redding,,,CA,8/10/2002 1:00 +New York City,,DISK,NY,8/10/2002 1:45 +Wichita Falls,,DISK,TX,8/10/2002 2:00 +Huron,,LIGHT,OH,8/10/2002 3:30 +Ravenna,,TRIANGLE,OH,8/10/2002 3:30 +Rising Sun,,LIGHT,IN,8/10/2002 3:45 +Export,,FIREBALL,PA,8/10/2002 4:35 +Grand Rapids,,FIREBALL,MI,8/10/2002 11:15 +Methuen,,OTHER,MA,8/10/2002 13:00 +New York City,,DISK,NY,8/10/2002 13:00 +Emory,RED ORANGE,EGG,TX,8/10/2002 15:00 +Miami,,CIRCLE,FL,8/10/2002 18:30 +San Pedro,,CYLINDER,CA,8/10/2002 20:00 +Buena Vista,RED,CYLINDER,CO,8/10/2002 21:30 +Cedar City,,LIGHT,UT,8/10/2002 21:30 +Battle Creek,GREEN,FIREBALL,MI,8/10/2002 22:00 +Beach Haven,,LIGHT,NJ,8/10/2002 22:00 +San Diego,,RECTANGLE,CA,8/10/2002 22:00 +Studio City,,DISK,CA,8/10/2002 22:00 +Arlington,,LIGHT,WA,8/10/2002 22:15 +Chazy,,LIGHT,NY,8/10/2002 22:30 +Rockaway,,LIGHT,NJ,8/10/2002 22:30 +West Sand Lake,ORANGE,FIREBALL,NY,8/10/2002 22:40 +Aitkin,,FORMATION,MN,8/10/2002 22:45 +East Jordan,,VARIOUS,MI,8/10/2002 22:45 +Sandpoint,,,ID,8/10/2002 22:50 +Ashland,,,OR,8/10/2002 23:00 +Cincinnati,,OVAL,OH,8/10/2002 23:00 +Plymouth Meeting,,LIGHT,PA,8/10/2002 23:30 +Whitehall,,CIRCLE,PA,8/10/2002 23:30 +Waterford,,SPHERE,ME,8/10/2002 23:45 +Santa Cruz,,DIAMOND,CA,8/10/2002 23:59 +Mt Ayr,,LIGHT,IA,8/11/2002 0:20 +Rochester,,LIGHT,NY,8/11/2002 0:30 +Palm Coast,,DISK,FL,8/11/2002 1:02 +Rochester,RED BLUE,VARIOUS,NY,8/11/2002 2:00 +Albuquerque,,CIRCLE,NM,8/11/2002 4:20 +Belleville,,DISK,MI,8/11/2002 5:00 +Elm Grove,,SPHERE,LA,8/11/2002 14:00 +Roxbury,,SPHERE,CT,8/11/2002 19:56 +Two Creeks,RED,,WI,8/11/2002 20:55 +San Rafael,,LIGHT,CA,8/11/2002 21:20 +Weldon,GREEN,TRIANGLE,CA,8/11/2002 22:40 +Burien,,OTHER,WA,8/11/2002 22:57 +Stanwood,,LIGHT,WA,8/11/2002 23:00 +Marblemount,,LIGHT,WA,8/11/2002 23:30 +Concord,,OTHER,CA,8/12/2002 0:36 +Seattle,,LIGHT,WA,8/12/2002 1:00 +Rochester,,OTHER,WA,8/12/2002 2:29 +Baker City,,FORMATION,OR,8/12/2002 2:43 +Fitchburg,,TRIANGLE,MA,8/12/2002 7:30 +Ludlow,,OVAL,CA,8/12/2002 10:45 +Breckenridge,,DISK,CO,8/12/2002 12:30 +Toppenish,,DISK,WA,8/12/2002 13:15 +Beaver Falls,,LIGHT,PA,8/12/2002 20:15 +Huffman,,TRIANGLE,TX,8/12/2002 21:45 +I-90,,TRIANGLE,NY,8/12/2002 22:00 +Great Barrington,,LIGHT,MA,8/12/2002 22:30 +Jackson,,DISK,MI,8/12/2002 22:46 +Salem,,OTHER,UT,8/12/2002 23:00 +Rifle,,CYLINDER,CO,8/12/2002 23:45 +Pleasanton,,CIRCLE,CA,8/13/2002 1:22 +Portland,,CHEVRON,OR,8/13/2002 2:00 +Bothell,,LIGHT,WA,8/13/2002 3:20 +Roseville,RED,DISK,MN,8/13/2002 9:45 +Beverly Hills,ORANGE,CYLINDER,CA,8/13/2002 11:45 +Laplata,,FIREBALL,MD,8/13/2002 18:30 +Albuquerque,,OTHER,NM,8/13/2002 20:00 +Mesa,,OTHER,AZ,8/13/2002 20:00 +Goshen,,LIGHT,CT,8/13/2002 21:00 +Seattle,,LIGHT,WA,8/13/2002 21:00 +Sharon,,VARIOUS,PA,8/13/2002 21:06 +Gaithersburg,YELLOW,RECTANGLE,MD,8/13/2002 21:47 +Rochester,,LIGHT,NY,8/13/2002 22:00 +Battle Ground,,OVAL,IN,8/13/2002 22:30 +Rochester,,LIGHT,NY,8/13/2002 22:54 +Charlotte,,LIGHT,NC,8/13/2002 23:20 +Midland,,FORMATION,VA,8/13/2002 23:30 +Midland,YELLOW,FORMATION,VA,8/13/2002 23:30 +Aloha,,LIGHT,OR,8/13/2002 23:44 +Atlantic Ocean,,LIGHT,FL,8/14/2002 2:58 +,,CIRCLE,KS,8/14/2002 5:00 +Federal Way,,OVAL,WA,8/14/2002 13:58 +Bristol,,OTHER,TN,8/14/2002 15:01 +Ojai,BLUE,OTHER,CA,8/14/2002 16:00 +NJ Turnpike,,CIGAR,NJ,8/14/2002 16:30 +Brunswick,,CIRCLE,ME,8/14/2002 19:15 +Leeds,,CIRCLE,ME,8/14/2002 19:30 +Syracuse,,TRIANGLE,NY,8/14/2002 21:00 +Wenatchee,,CIRCLE,WA,8/15/2002 0:00 +Wickenburg,,LIGHT,AZ,8/15/2002 0:30 +Derry,RED BLUE,LIGHT,NH,8/15/2002 1:00 +Ocean City,,FIREBALL,MD,8/15/2002 1:00 +Sonora,YELLOW,OTHER,CA,8/15/2002 1:30 +Yanush,,,OK,8/15/2002 1:36 +Pacific Ridge,,OTHER,OR,8/15/2002 2:00 +Lake Stevens,,FLASH,WA,8/15/2002 3:30 +St. Peters,,SPHERE,MO,8/15/2002 6:00 +Monroe,,RECTANGLE,WA,8/15/2002 11:00 +Indianapolis,,OVAL,IN,8/15/2002 15:45 +Lancaster,,SPHERE,PA,8/15/2002 17:00 +Cambridge City,,SPHERE,IN,8/15/2002 20:00 +Fawn Grove,,LIGHT,PA,8/15/2002 20:30 +New York City,,CIRCLE,NY,8/15/2002 21:00 +Gaviota,,LIGHT,CA,8/15/2002 21:06 +Virginia Beach,,LIGHT,VA,8/15/2002 21:20 +Mesquite,,LIGHT,TX,8/15/2002 21:45 +Brookston,,FIREBALL,IN,8/15/2002 22:00 +Dunnellon,,DISK,FL,8/15/2002 22:00 +Midland,YELLOW,LIGHT,VA,8/15/2002 22:10 +Macomb,,,MI,8/15/2002 22:15 +Coalinga,,LIGHT,CA,8/15/2002 22:30 +Chicago,,OVAL,IL,8/15/2002 23:00 +Piner,,DISK,KY,8/15/2002 23:00 +Knoxville,,LIGHT,TN,8/15/2002 23:38 +Seattle,,LIGHT,WA,8/16/2002 0:01 +Coalinga,,TRIANGLE,CA,8/16/2002 2:00 +Alliance,,CYLINDER,OH,8/16/2002 19:30 +Eastport,,LIGHT,ME,8/16/2002 19:45 +Moclips,,LIGHT,OR,8/16/2002 20:35 +Myrtle Beach,RED ORANGE,OVAL,SC,8/16/2002 21:00 +Indianapolis,,LIGHT,IN,8/16/2002 22:00 +Round Rock,,SPHERE,TX,8/16/2002 22:00 +Wilmington,,LIGHT,NC,8/16/2002 22:00 +Ohiopyle,,LIGHT,PA,8/16/2002 23:23 +Salt Lake City,,FIREBALL,UT,8/17/2002 1:06 +Ajo,RED,,AZ,8/17/2002 3:00 +Pharisburg,,SPHERE,OH,8/17/2002 6:58 +Burlington,RED,LIGHT,MA,8/17/2002 10:00 +Erie,,CYLINDER,PA,8/17/2002 20:00 +Braggs,,RECTANGLE,OK,8/17/2002 22:00 +Utah,,DISK,UT,8/17/2002 23:12 +Emerald Isle,,FORMATION,NC,8/17/2002 23:30 +Bakersfield,,CIGAR,CA,8/18/2002 2:30 +Anna Maria Island,,OVAL,FL,8/18/2002 5:00 +Fort Morgan,,LIGHT,CO,8/18/2002 5:30 +Grand Rapids,,DISK,MI,8/18/2002 13:25 +Richmond,,OVAL,TX,8/18/2002 19:00 +Milledgeville,,OTHER,GA,8/18/2002 19:40 +Stark,,OVAL,KS,8/18/2002 20:15 +Myrtle Beach,ORANGE,LIGHT,SC,8/18/2002 21:45 +Lowell,,FIREBALL,MI,8/18/2002 23:00 +Clearwater,,DISK,FL,8/18/2002 23:51 +Leesburg,,,FL,8/19/2002 0:15 +Sunset Beach,RED,RECTANGLE,NC,8/19/2002 0:30 +Wenona,,,IL,8/19/2002 5:45 +Detroit,,OTHER,MI,8/19/2002 6:00 +Mankato,,CIGAR,MN,8/19/2002 20:30 +Bingham,,FLASH,ME,8/19/2002 21:15 +Hartford,,,AR,8/19/2002 21:45 +Twin Falls,,LIGHT,ID,8/19/2002 23:00 +Dwight,,TRIANGLE,IL,8/20/2002 1:00 +Virginia Beach,,DISK,VA,8/20/2002 6:45 +Marion,,TRIANGLE,OH,8/20/2002 11:00 +Prestonsburg,,OTHER,KY,8/20/2002 12:00 +New Castle,,OTHER,IN,8/20/2002 13:00 +Ann Arbor,,DISK,MI,8/20/2002 18:00 +Augusta,,LIGHT,KS,8/20/2002 20:00 +Killeen,,OVAL,TX,8/20/2002 21:00 +Poland,ORANGE,FIREBALL,ME,8/20/2002 21:00 +Brison City,,LIGHT,NC,8/20/2002 23:00 +Noxon,,,MT,8/20/2002 23:10 +Milan,RED,LIGHT,TN,8/20/2002 23:59 +Champaign,,VARIOUS,IL,8/21/2002 1:10 +Olympia,,,WA,8/21/2002 3:30 +Madison,,TRIANGLE,WI,8/21/2002 5:00 +Lebanon,,TRIANGLE,TN,8/21/2002 5:30 +Boston,,CIGAR,MA,8/21/2002 14:30 +White Plains,,DISK,NY,8/21/2002 18:30 +Harrison Township,,LIGHT,MI,8/21/2002 22:00 +Knoxville,,CHEVRON,IL,8/21/2002 22:05 +Elmwood,BLUE,CHEVRON,IL,8/21/2002 22:30 +Isle of Palms,RED,LIGHT,SC,8/21/2002 22:30 +Sisseton,,LIGHT,SD,8/21/2002 22:30 +River Falls,,DISK,WI,8/22/2002 1:00 +Durant,,VARIOUS,OK,8/22/2002 1:21 +Crystal Lake,,,IL,8/22/2002 2:14 +Crystal Lake,,,IL,8/22/2002 2:14 +Southport,,LIGHT,CT,8/22/2002 3:00 +Yelm,,OTHER,WA,8/22/2002 12:30 +Bohemia,,DIAMOND,NY,8/22/2002 17:00 +Simla,,TRIANGLE,CO,8/22/2002 20:05 +Honolulu,,LIGHT,HI,8/22/2002 20:08 +New Port Richey,RED,LIGHT,FL,8/22/2002 20:45 +Fort Sumner,,,NM,8/22/2002 21:00 +Fort Sumner,RED,,NM,8/22/2002 21:00 +Ontario,,VARIOUS,CA,8/22/2002 21:00 +Bloomington,RED GREEN,LIGHT,IL,8/22/2002 21:45 +Austin,,FLASH,TX,8/22/2002 21:50 +Williamstown,,TRIANGLE,NJ,8/22/2002 22:50 +Monroe,,EGG,NY,8/22/2002 23:40 +Olympia,,,WA,8/23/2002 1:40 +Bowleys Quarters,BLUE,OVAL,MD,8/23/2002 2:30 +Louisville,,LIGHT,KY,8/23/2002 2:30 +Albuquerque,,FLASH,NM,8/23/2002 3:45 +Odessa,,,TX,8/23/2002 14:22 +Mesa,,OVAL,AZ,8/23/2002 16:00 +Gilbert,,LIGHT,AZ,8/23/2002 20:00 +Monroe,,LIGHT,WA,8/23/2002 22:30 +Englewood,,LIGHT,FL,8/24/2002 1:00 +Gary,,CIRCLE,IN,8/24/2002 4:28 +Jacksonville,,CIRCLE,FL,8/24/2002 10:10 +Sparta,,CIRCLE,TN,8/24/2002 12:00 +Canton,,DISK,GA,8/24/2002 12:39 +The Colony,,DISK,TX,8/24/2002 16:00 +Conshohocken,,DISK,PA,8/24/2002 17:32 +Tinley Park,,CIRCLE,IL,8/24/2002 20:45 +Seattle,,OTHER,WA,8/24/2002 21:30 +Sacramento,ORANGE,,CA,8/24/2002 21:45 +Gresham,,FLASH,OR,8/24/2002 22:25 +Cascade,,,ID,8/25/2002 12:45 +Gilbert,RED,CIRCLE,AZ,8/25/2002 20:00 +Chualar,BLUE,EGG,CA,8/25/2002 20:01 +El Paso,,CIRCLE,TX,8/25/2002 21:30 +Richardson,,DISK,TX,8/25/2002 22:00 +Chicago,,TEARDROP,IL,8/26/2002 12:15 +Maui,,LIGHT,HI,8/26/2002 19:50 +Eagle Creek,,TRIANGLE,OR,8/26/2002 23:45 +Venice,,TRIANGLE,FL,8/27/2002 6:00 +Deerfield,,LIGHT,FL,8/27/2002 6:55 +Victorville,,LIGHT,CA,8/27/2002 20:30 +Albuquerque,RED,LIGHT,NM,8/27/2002 21:00 +South Beach,,FORMATION,FL,8/27/2002 23:00 +Louisville,ORANGE,,KY,8/28/2002 0:00 +Kelso,ORANGE,,WA,8/28/2002 1:30 +Mattawa,,FIREBALL,WA,8/28/2002 2:30 +Austin,,VARIOUS,TX,8/28/2002 15:30 +Suwanee,,SPHERE,GA,8/28/2002 19:00 +Ashland,,LIGHT,OR,8/28/2002 21:30 +Colville,,LIGHT,WA,8/28/2002 22:00 +Gold Beach,GREEN,LIGHT,OR,8/28/2002 22:12 +Bellingham,,SPHERE,WA,8/28/2002 22:54 +Upland,,RECTANGLE,CA,8/28/2002 23:00 +Elma,,,WA,8/28/2002 23:30 +Stephens,,CIRCLE,AR,8/28/2002 23:45 +Peach Orchard,,LIGHT,AR,8/28/2002 23:59 +Rochester,,TRIANGLE,NY,8/29/2002 3:20 +Littleton,,DISK,CO,8/29/2002 15:00 +Camarillo,,OTHER,CA,8/29/2002 17:30 +Toledo,,TRIANGLE,OR,8/29/2002 23:45 +Lost Creek,GREEN,LIGHT,WV,8/30/2002 0:15 +Grove City,GREEN,OVAL,PA,8/30/2002 0:45 +Dover,,TRIANGLE,DE,8/30/2002 9:45 +Lafayette,ORANGE,TRIANGLE,LA,8/30/2002 17:00 +Bradley,,OTHER,IL,8/30/2002 19:15 +Dover,,TRIANGLE,DE,8/30/2002 21:05 +Hebron,,,ME,8/30/2002 21:30 +Somerset,,,MA,8/30/2002 21:30 +Holland,RED YELLOW,CIRCLE,NY,8/30/2002 22:15 +Dickinson,,TRIANGLE,ND,8/30/2002 23:00 +St. George Island,,,AK,8/30/2002 23:30 +Rome,RED,CIRCLE,OH,8/30/2002 23:50 +Compton,,TRIANGLE,CA,8/31/2002 7:43 +Santa Cruz,,SPHERE,CA,8/31/2002 14:00 +Canton,,OTHER,MI,8/31/2002 17:43 +Davenport,,LIGHT,IA,8/31/2002 17:45 +Kern river,,CIGAR,CA,8/31/2002 18:30 +Curlew,,LIGHT,WA,8/31/2002 21:00 +Brighton,,LIGHT,MI,8/31/2002 21:20 +Louisville,RED,,KY,8/31/2002 21:30 +Nyssa,,VARIOUS,OR,8/31/2002 23:00 +Newark,,DISK,NJ,8/31/2002 23:30 +Cleveland,RED BLUE,,OH,8/31/2002 23:55 +Sacramento,,LIGHT,CA,9/1/2002 4:00 +Edinboro,,,PA,9/1/2002 6:30 +Sturbridge,,VARIOUS,MA,9/1/2002 11:30 +Cantonment,,RECTANGLE,FL,9/1/2002 18:30 +Oracle,,DISK,AZ,9/1/2002 19:30 +Lake Villa,GREEN,SPHERE,IL,9/1/2002 20:00 +Topeka,,TRIANGLE,KS,9/1/2002 20:30 +Omaha,,,NE,9/1/2002 21:30 +Republic,,LIGHT,WA,9/1/2002 23:00 +Trout Lake,,TRIANGLE,WA,9/1/2002 23:15 +Scappoose,,TRIANGLE,OR,9/1/2002 23:50 +Trout Lake,,TRIANGLE,WA,9/1/2002 23:59 +Chicago,,,IL,9/2/2002 0:00 +Owatonna,,FORMATION,MN,9/2/2002 0:00 +San Bernandino,,SPHERE,CA,9/2/2002 1:30 +Lodi,,CHEVRON,CA,9/2/2002 2:30 +Spokane,,OTHER,WA,9/2/2002 19:02 +Boulder,,LIGHT,CO,9/2/2002 20:00 +Oneonta,,DIAMOND,NY,9/3/2002 0:35 +San Marcos,,LIGHT,TX,9/3/2002 2:00 +Hatfield,,CIRCLE,PA,9/3/2002 3:00 +Austin,,OVAL,TX,9/3/2002 5:15 +Cathedral City,,VARIOUS,CA,9/3/2002 17:30 +Washington,,TEARDROP,MO,9/3/2002 20:00 +Las Vegas,,FIREBALL,NV,9/3/2002 21:10 +Evansville,RED,LIGHT,IN,9/3/2002 21:41 +Roswell,,,NM,9/3/2002 22:00 +Delafield,,,WI,9/3/2002 22:15 +Willernie,,OTHER,MN,9/3/2002 22:30 +Ferndale,,OTHER,WA,9/3/2002 23:00 +Brooksville,,SPHERE,FL,9/4/2002 0:00 +Richmond,,SPHERE,ME,9/4/2002 0:01 +Upland,RED,DIAMOND,CA,9/4/2002 1:45 +Fort Worth,,TRIANGLE,TX,9/4/2002 21:00 +Washington Island,,LIGHT,WI,9/4/2002 21:00 +Lynnwood,,LIGHT,WA,9/4/2002 21:24 +Mt. Pleasant,,LIGHT,MI,9/4/2002 23:45 +Fort Wayne,,OTHER,IN,9/4/2002 23:59 +Riceville,,FLASH,FL,9/5/2002 0:00 +Auburn,,OTHER,PA,9/5/2002 5:30 +Willow Brook,,VARIOUS,IL,9/5/2002 8:45 +Louisville,,DISK,KY,9/5/2002 17:00 +Appalachia,,CROSS,VA,9/5/2002 18:00 +Mt. Vernon,,LIGHT,IN,9/5/2002 20:00 +Madison,,OTHER,WI,9/5/2002 20:30 +Coloma,RED GREEN BLUE,,WI,9/5/2002 21:45 +Pleasant Prairie,,TRIANGLE,WI,9/5/2002 22:55 +Houston,,DISK,TX,9/5/2002 23:00 +Marble Cliff,,TRIANGLE,OH,9/6/2002 2:30 +Columbus,,,OH,9/6/2002 5:15 +Lawrence,,CIRCLE,KS,9/6/2002 10:15 +Glen Burnie,,CYLINDER,MD,9/6/2002 19:00 +Harrisburg,,VARIOUS,PA,9/6/2002 19:00 +Bellvue,,TEARDROP,CO,9/6/2002 20:30 +Fraser,GREEN,TRIANGLE,CO,9/6/2002 20:30 +Gillette,GREEN,FIREBALL,WY,9/6/2002 20:30 +Spearfish,BLUE,CIGAR,SD,9/6/2002 20:30 +Baggs,RED,OVAL,WY,9/6/2002 21:00 +Sheridan,,OVAL,WY,9/6/2002 21:00 +Central California,,OTHER,CA,9/6/2002 22:00 +Mesa,,CIRCLE,AZ,9/6/2002 22:10 +Lawrence,,TRIANGLE,KS,9/6/2002 22:15 +Cleveland,,FORMATION,OH,9/6/2002 22:50 +Bad Axe,,TRIANGLE,MI,9/6/2002 22:55 +West Newton,,,PA,9/6/2002 23:00 +Portsmouth,RED,VARIOUS,OH,9/7/2002 0:00 +Colorado,,FORMATION,CO,9/7/2002 1:00 +Seattle,,TRIANGLE,WA,9/7/2002 1:30 +Framingham,,LIGHT,MA,9/7/2002 4:00 +Essecville,,TRIANGLE,MI,9/7/2002 4:21 +California,RED YELLOW GREEN BLUE,RECTANGLE,PA,9/7/2002 7:15 +Astoria,,CIRCLE,NY,9/7/2002 15:00 +Elk Grove,ORANGE,LIGHT,CA,9/7/2002 15:40 +Jacksonville,,FLASH,FL,9/7/2002 20:30 +Mt. Juliet,RED,LIGHT,TN,9/7/2002 20:30 +Seattle,RED GREEN,CIRCLE,WA,9/7/2002 21:30 +LaSalle,RED GREEN,OTHER,MI,9/7/2002 22:00 +Rochester,,OVAL,NY,9/7/2002 22:00 +Bridgewater,,,MA,9/7/2002 22:10 +Castleton,,LIGHT,VT,9/7/2002 22:15 +Tulsa,,FLASH,OK,9/7/2002 22:23 +St.Rose,,TRIANGLE,IL,9/7/2002 22:30 +Trout Lake,,TRIANGLE,WA,9/7/2002 22:48 +Guntersville,,OTHER,AL,9/7/2002 23:15 +Sterling,RED YELLOW BLUE,LIGHT,VA,9/7/2002 23:45 +New York City,,LIGHT,NY,9/8/2002 0:20 +Aviston,,DIAMOND,IL,9/8/2002 2:00 +Walden,,FORMATION,VT,9/8/2002 3:00 +Accord,,LIGHT,NY,9/8/2002 3:20 +Friday Harbor,,DISK,WA,9/8/2002 11:00 +Millstone,,LIGHT,NJ,9/8/2002 13:30 +New York City,,SPHERE,NY,9/8/2002 16:00 +Abilene,,DISK,TX,9/8/2002 18:15 +Hilton Head,,OTHER,SC,9/8/2002 18:45 +Germantown,,DISK,TN,9/8/2002 19:10 +Jamaica,,DISK,NY,9/8/2002 20:00 +Pomona,RED,CIRCLE,CA,9/8/2002 20:25 +Granby,RED GREEN BLUE,OVAL,CT,9/8/2002 20:30 +Matthews,,FIREBALL,NC,9/8/2002 21:00 +Central Square,,DISK,NY,9/8/2002 21:30 +Califon,,CIRCLE,NJ,9/8/2002 21:45 +Hamburg,,CIRCLE,NY,9/8/2002 22:00 +Glenfield,,CIRCLE,NY,9/8/2002 22:30 +Foxborough,,TRIANGLE,MA,9/8/2002 22:45 +Milford,,TRIANGLE,OH,9/8/2002 23:00 +Fallon,,TRIANGLE,NV,9/8/2002 23:13 +Oskaloosa,RED BLUE,OTHER,IA,9/8/2002 23:30 +Holland,,OVAL,OH,9/9/2002 1:05 +Mehoopany,,CHEVRON,PA,9/9/2002 9:30 +Moriches Bay,,,NY,9/9/2002 19:02 +Moriches Bay,,,NY,9/9/2002 19:02 +Moriches Bay,,,NY,9/9/2002 19:05 +Huntsville,,OTHER,TX,9/9/2002 20:00 +Minden,,CIRCLE,NV,9/10/2002 0:00 +Grover Beach,,LIGHT,CA,9/10/2002 2:00 +Sedona,,SPHERE,AZ,9/10/2002 7:45 +Kill Devil Hills,,RECTANGLE,NC,9/10/2002 15:00 +Mount Shasta,,LIGHT,CA,9/10/2002 16:30 +Coronado,,LIGHT,CA,9/10/2002 18:57 +Lake City,,LIGHT,MI,9/10/2002 21:30 +Fairfax,,LIGHT,VA,9/10/2002 23:59 +Elmont,,TRIANGLE,NY,9/11/2002 0:00 +Reno,,,NV,9/11/2002 20:45 +New York City,,SPHERE,NY,9/11/2002 21:00 +Portland,,OVAL,OR,9/11/2002 22:00 +San Luis Obispo,,LIGHT,CA,9/11/2002 22:00 +Norton Shores,,FIREBALL,MI,9/11/2002 23:55 +Newberry,BLUE,,OH,9/12/2002 3:28 +Wilmington,BLUE,,NC,9/12/2002 5:00 +Dennisport,,DISK,MA,9/12/2002 14:00 +Dennis,,OTHER,MA,9/12/2002 14:15 +Charlotte,,CIGAR,NC,9/12/2002 16:00 +Oneida,YELLOW,TRIANGLE,NY,9/12/2002 16:00 +Watauga,,OVAL,TX,9/12/2002 17:00 +Omaha,,SPHERE,NE,9/12/2002 17:30 +Hydetown,,FORMATION,PA,9/12/2002 19:30 +Sheboygan,RED,LIGHT,WI,9/12/2002 20:30 +Memphis,,SPHERE,TN,9/12/2002 20:35 +Fort Walton Beach,RED,TRIANGLE,FL,9/12/2002 21:30 +Pullman,RED,LIGHT,WA,9/12/2002 22:30 +Scarborough,,CIRCLE,ME,9/13/2002 1:15 +Loris,,,SC,9/13/2002 2:00 +Ft. Smith,,,MT,9/13/2002 5:30 +Lynnwood,,,WA,9/13/2002 9:40 +Odessa,,OTHER,TX,9/13/2002 11:30 +Marlton,,,NJ,9/13/2002 11:48 +Englewood,,FORMATION,CO,9/13/2002 20:10 +Jal,,LIGHT,NM,9/13/2002 20:30 +Columbus,RED,TRIANGLE,OH,9/13/2002 21:00 +Palatka,,CIRCLE,FL,9/13/2002 21:00 +Fort Walton Beach,,OVAL,FL,9/13/2002 23:00 +Glendale,,TRIANGLE,AZ,9/14/2002 0:05 +Jacksonville Beach,,TRIANGLE,FL,9/14/2002 0:30 +Portland,,CIRCLE,OR,9/14/2002 1:00 +Spokane,,TRIANGLE,WA,9/14/2002 5:15 +Littleton,,CIRCLE,CO,9/14/2002 6:30 +Brigantine,,,NJ,9/14/2002 7:15 +Sparta,,,WI,9/14/2002 21:00 +Taos,,,NM,9/15/2002 0:00 +Lehigh Acres,BLUE,FLASH,FL,9/15/2002 1:30 +Charlotte,,CONE,NC,9/15/2002 2:30 +Lyndeborough,,DISK,NH,9/15/2002 8:30 +Rockford,,DISK,IL,9/15/2002 10:00 +Lorton,,DISK,VA,9/15/2002 15:27 +Greenfeild,,TRIANGLE,MA,9/15/2002 19:28 +Chicago,RED GREEN,OVAL,IL,9/15/2002 20:55 +Kansas City,,TRIANGLE,KS,9/15/2002 21:00 +Talbot,RED ORANGE,FIREBALL,IN,9/15/2002 21:30 +Poquoson,,DISK,VA,9/15/2002 21:35 +Lake Pleasent State Park,,LIGHT,AZ,9/15/2002 22:00 +Laramie,,SPHERE,WY,9/15/2002 22:00 +Milford,,OVAL,OH,9/15/2002 22:00 +Merrillville,,OTHER,IN,9/15/2002 22:30 +Chicago,,FORMATION,IL,9/15/2002 22:40 +Las Vegas,RED YELLOW,CIRCLE,NV,9/15/2002 23:40 +Ontario,,LIGHT,CA,9/16/2002 1:45 +San Marcos,,VARIOUS,CA,9/16/2002 4:15 +Johnston,,VARIOUS,IA,9/16/2002 6:00 +Brea,,DISK,CA,9/16/2002 14:45 +Monongahela,,,PA,9/16/2002 20:42 +Kapaa,,CIRCLE,HI,9/16/2002 21:50 +Columbiana,,FIREBALL,OH,9/17/2002 10:00 +Augusta,,LIGHT,GA,9/17/2002 20:30 +Chowchilla,,,CA,9/17/2002 23:00 +Portland,,,OR,9/17/2002 23:30 +Spruce Pine,,LIGHT,NC,9/18/2002 1:00 +Steele,,DISK,MO,9/18/2002 8:00 +Bragg City,,DISK,MO,9/18/2002 9:50 +Poplar Bluff,,DISK,MO,9/18/2002 11:00 +Germantown,,CYLINDER,TN,9/18/2002 18:46 +Seattle,,,WA,9/18/2002 19:15 +Vancouver,RED,OTHER,WA,9/18/2002 20:07 +Enola,RED,,PA,9/18/2002 20:20 +Harrisburg,,OTHER,PA,9/18/2002 21:00 +Kokomo,,LIGHT,IN,9/18/2002 21:20 +Grants Pass,,OTHER,OR,9/18/2002 22:10 +Winnetka,,TRIANGLE,CA,9/19/2002 2:30 +Washington,,TRIANGLE,MO,9/19/2002 2:35 +Banks,,OTHER,OR,9/19/2002 11:00 +Marion,,DISK,IA,9/19/2002 16:00 +Lemoore,,LIGHT,CA,9/19/2002 19:00 +Capitola,,CONE,CA,9/19/2002 19:15 +Duarte,,OTHER,CA,9/19/2002 19:30 +Flagstaff,,,AZ,9/19/2002 19:30 +Hollister,,,CA,9/19/2002 19:30 +Hollister,,FIREBALL,CA,9/19/2002 19:30 +Kingman,,FIREBALL,AZ,9/19/2002 19:30 +Santa Clara,,LIGHT,CA,9/19/2002 19:30 +Tahoe City,,SPHERE,CA,9/19/2002 19:30 +Palo Alto,,OTHER,CA,9/19/2002 19:35 +Rancho Santa Margarita,,,CA,9/19/2002 19:35 +Redding,,LIGHT,CA,9/19/2002 19:35 +San Francisco,,FIREBALL,CA,9/19/2002 19:35 +Santa Clara,,SPHERE,CA,9/19/2002 19:35 +Antioch,,LIGHT,CA,9/19/2002 19:36 +Cypress,RED,VARIOUS,CA,9/19/2002 19:36 +Pleasant Hill,,CYLINDER,CA,9/19/2002 19:36 +Scottsdale,,LIGHT,AZ,9/19/2002 19:36 +Luguna Woods,YELLOW,CIRCLE,CA,9/19/2002 19:40 +Malibu,ORANGE,SPHERE,CA,9/19/2002 19:45 +San Diego,,VARIOUS,CA,9/19/2002 19:45 +Yosemite National Park,,LIGHT,CA,9/19/2002 19:45 +Holden Beach,,,NC,9/19/2002 21:00 +Merritt Island,,CHEVRON,FL,9/19/2002 21:00 +Myrtle Beach,,LIGHT,SC,9/19/2002 21:45 +Louisville,,,OH,9/19/2002 23:45 +Columbia Heights,,TRIANGLE,MN,9/20/2002 2:00 +Madison,,LIGHT,WI,9/20/2002 3:00 +Spokane,,,WA,9/20/2002 4:51 +Denver,,SPHERE,CO,9/20/2002 9:01 +Danville,ORANGE,DISK,CA,9/20/2002 10:30 +Elk City,,OVAL,OK,9/20/2002 19:49 +Horsham,RED YELLOW,LIGHT,PA,9/20/2002 20:00 +Gray,,FORMATION,TN,9/20/2002 21:00 +Columbine,,CIRCLE,CO,9/21/2002 13:00 +Pennsylvania,,OTHER,PA,9/21/2002 14:00 +Monett,,SPHERE,AR,9/21/2002 15:00 +Carlsbad,,TEARDROP,CA,9/21/2002 18:30 +Taylorville,,LIGHT,IL,9/21/2002 19:00 +Altus,,TRIANGLE,OK,9/21/2002 20:20 +Germantown,,SPHERE,TN,9/22/2002 16:40 +Lake Center,,TEARDROP,MS,9/22/2002 20:00 +Idaho City,RED GREEN,VARIOUS,ID,9/23/2002 4:00 +Round Rock,ORANGE,SPHERE,TX,9/23/2002 6:30 +Fayetteville,BLUE,VARIOUS,AR,9/23/2002 18:12 +Arlington,,CHEVRON,TX,9/23/2002 20:30 +Springfield,,FIREBALL,MO,9/23/2002 20:50 +Lebanon Jct.,,EGG,KY,9/23/2002 21:00 +Long Beach,,TRIANGLE,CA,9/23/2002 21:15 +Vershire,GREEN,CIRCLE,VT,9/23/2002 22:00 +Westerville,,LIGHT,OH,9/23/2002 22:30 +Decatur,,TRIANGLE,IL,9/24/2002 0:36 +Mason,,SPHERE,OH,9/24/2002 13:00 +Sheboygan Falls,RED BLUE,LIGHT,WI,9/24/2002 19:30 +Alamo,,DIAMOND,TX,9/24/2002 20:00 +Wayne,,SPHERE,NE,9/24/2002 23:50 +Fayette,BLUE,DISK,MO,9/25/2002 4:00 +Kennesaw,,DIAMOND,GA,9/25/2002 5:25 +Santa Rosa,,OTHER,CA,9/25/2002 5:50 +Lee's Summit,,LIGHT,MO,9/25/2002 10:00 +Clinton,,OTHER,SC,9/25/2002 18:30 +Grapevine,,CIRCLE,TX,9/25/2002 20:30 +Flint,,LIGHT,MI,9/25/2002 21:05 +Orlando,,SPHERE,FL,9/25/2002 22:30 +St. Clair Shores,,LIGHT,MI,9/25/2002 23:00 +Vero Beach,,FIREBALL,FL,9/26/2002 7:06 +Fremont,,FIREBALL,CA,9/26/2002 10:00 +Wheeler Springs,,OTHER,CA,9/26/2002 20:21 +Taylorsville,,TRIANGLE,UT,9/26/2002 21:15 +Shawnee,,LIGHT,KS,9/26/2002 22:36 +Lake Havasu City,,LIGHT,AZ,9/27/2002 12:00 +River Forest,,TEARDROP,IL,9/27/2002 12:38 +Scottsdale,,,AZ,9/27/2002 18:55 +Victorville,,,CA,9/27/2002 19:25 +Kent,,SPHERE,WA,9/27/2002 19:30 +Memphis,,LIGHT,TN,9/27/2002 19:51 +West Chester,,LIGHT,OH,9/27/2002 20:15 +Seattle,,FIREBALL,WA,9/28/2002 6:50 +Mesa,,OTHER,AZ,9/28/2002 17:30 +Fort Bridger,GREEN,DISK,WY,9/28/2002 18:30 +Fowler,,TRIANGLE,IN,9/28/2002 19:00 +Ogden,GREEN,CIRCLE,UT,9/28/2002 19:30 +Center Moriches,,LIGHT,NY,9/28/2002 20:15 +Glen Cove,,LIGHT,NY,9/28/2002 20:15 +Redding,,LIGHT,CA,9/28/2002 20:15 +Key West,,FIREBALL,FL,9/28/2002 20:30 +Long Beach,GREEN,FIREBALL,CA,9/28/2002 21:00 +New York City,,LIGHT,NY,9/28/2002 21:00 +Honolulu,,FIREBALL,HI,9/28/2002 21:27 +Lake Kabetogama,,TRIANGLE,MN,9/28/2002 23:00 +Kingsland,,TRIANGLE,GA,9/29/2002 1:30 +Rush Springs,,LIGHT,OK,9/29/2002 5:15 +Elk Grove Village,,TEARDROP,IL,9/29/2002 6:00 +Biloxi,,LIGHT,MS,9/29/2002 17:30 +Smyrna,,TRIANGLE,DE,9/29/2002 21:30 +Holton,,LIGHT,KS,9/29/2002 22:41 +Dewey Beach,,TRIANGLE,DE,9/29/2002 23:30 +Euclid,RED GREEN,DISK,OH,9/30/2002 4:00 +Huber Heights,,LIGHT,OH,9/30/2002 18:00 +Kingston,,OVAL,PA,9/30/2002 18:30 +Macomb,,CIRCLE,MI,9/30/2002 20:50 +Courtland,,CIRCLE,VA,10/1/2002 0:30 +Nebraska City,,TEARDROP,NE,10/1/2002 2:00 +Oakland,,OVAL,CA,10/1/2002 3:00 +Everson,GREEN,OTHER,WA,10/1/2002 5:30 +Port Townsend,BLUE,FIREBALL,WA,10/1/2002 5:30 +Snohomish,RED BLUE,SPHERE,WA,10/1/2002 5:30 +Sumner,GREEN,CIRCLE,WA,10/1/2002 5:30 +Pueblo,ORANGE,TRIANGLE,CO,10/1/2002 5:35 +Seattle,,,WA,10/1/2002 5:35 +Seattle,,TEARDROP,WA,10/1/2002 5:42 +Seattle,GREEN,OTHER,WA,10/1/2002 5:43 +Kent,,,WA,10/1/2002 5:45 +Lynnwood,,FIREBALL,WA,10/1/2002 5:45 +Rainier,,LIGHT,WA,10/1/2002 5:45 +Monroe,ORANGE,LIGHT,WI,10/1/2002 6:30 +"Natrona Heights, New Kensington",,LIGHT,PA,10/1/2002 6:30 +Kingston,,CIGAR,NY,10/1/2002 7:30 +Santa Fe,,EGG,NM,10/1/2002 8:30 +Germantown,,CIGAR,MD,10/1/2002 9:00 +Winslow,,OTHER,AZ,10/1/2002 14:00 +Athol,,TEARDROP,ID,10/1/2002 15:00 +Grants,GREEN,FIREBALL,NM,10/1/2002 16:00 +Port Hadlock,,FIREBALL,WA,10/1/2002 17:56 +Orlando,,OTHER,FL,10/1/2002 18:00 +New York City,,EGG,NY,10/1/2002 19:20 +New York City,GREEN,LIGHT,NY,10/1/2002 19:50 +Castro Valley,,OTHER,CA,10/1/2002 20:30 +Edmonds,,,WA,10/1/2002 22:00 +Riverton,BLUE,,UT,10/1/2002 22:30 +New York City,,VARIOUS,NY,10/1/2002 23:20 +Northford,,EGG,CT,10/2/2002 6:34 +Santa Fe,,EGG,NM,10/2/2002 7:30 +Watertown,,RECTANGLE,NY,10/2/2002 19:20 +Morrisville,,OVAL,NC,10/3/2002 3:00 +Augusta,,LIGHT,GA,10/3/2002 6:00 +Olive Branch,,DISK,MS,10/3/2002 14:00 +Palmdale,,DISK,CA,10/3/2002 14:00 +Smithville,,,TN,10/3/2002 15:35 +Quartzite,,TRIANGLE,AZ,10/4/2002 0:00 +Elizabeth,,FLASH,CO,10/4/2002 1:00 +Houston,,DIAMOND,TX,10/4/2002 4:10 +San Antonio,,TRIANGLE,TX,10/4/2002 8:45 +Excelsior Springs,,OVAL,MO,10/4/2002 13:18 +Carson,,CIRCLE,CA,10/4/2002 14:00 +Omaha,,CIGAR,NE,10/4/2002 18:30 +El Paso,,FORMATION,TX,10/4/2002 19:05 +Alhambra,,TRIANGLE,CA,10/4/2002 19:10 +Newport Township,,LIGHT,PA,10/4/2002 20:30 +Pueblo West,RED,OTHER,CO,10/4/2002 21:30 +Pueblo West,,RECTANGLE,CO,10/4/2002 21:30 +Hillsboro,,LIGHT,IL,10/5/2002 0:30 +Los Angeles,,LIGHT,CA,10/5/2002 1:00 +Garland,,LIGHT,TX,10/5/2002 1:30 +Vancouver,,FIREBALL,WA,10/5/2002 6:30 +Las Cruces,,,NM,10/5/2002 7:45 +Duluth,,CROSS,MN,10/5/2002 10:15 +Gatlinburg,,DISK,TN,10/5/2002 15:00 +Texas,RED,CYLINDER,TX,10/5/2002 15:00 +Des Plaines,,TRIANGLE,IL,10/5/2002 16:30 +Las Cruces,,DISK,NM,10/5/2002 16:49 +Temecula,,FIREBALL,CA,10/5/2002 18:50 +Ione,,FORMATION,CA,10/5/2002 19:56 +Brownstown,YELLOW,FIREBALL,MI,10/5/2002 20:45 +Alameda,,LIGHT,CA,10/5/2002 23:00 +Farmingdale,,LIGHT,NY,10/6/2002 3:00 +Inwood,,LIGHT,NY,10/6/2002 5:50 +Thousand Island Bridge,,DISK,NY,10/6/2002 7:15 +none,,OTHER,AZ,10/6/2002 11:00 +Union,,CROSS,NJ,10/6/2002 13:55 +Taos,,DISK,NM,10/6/2002 15:00 +Boulder,,CIGAR,CO,10/6/2002 16:00 +North Las Vegas,,TEARDROP,NV,10/6/2002 18:00 +Harrisonville,,OVAL,IL,10/6/2002 18:30 +Provo,,FIREBALL,UT,10/6/2002 19:15 +Lander,GREEN,CIRCLE,WY,10/6/2002 19:25 +Denver,,FIREBALL,CO,10/6/2002 19:30 +Corcoran,,LIGHT,MN,10/6/2002 23:00 +Grifton,,LIGHT,NC,10/6/2002 23:00 +Spring Hill,,LIGHT,FL,10/6/2002 23:30 +Decatur,,FIREBALL,IL,10/7/2002 0:30 +Hayward,,,CA,10/7/2002 5:00 +Castle Rock,ORANGE,FIREBALL,CO,10/7/2002 8:00 +Camden,GREEN,DIAMOND,AR,10/7/2002 10:00 +Jersey City,,SPHERE,NJ,10/7/2002 11:28 +Rome,,LIGHT,NY,10/7/2002 18:45 +Longmont,,,CO,10/7/2002 19:00 +Sky City,ORANGE,FIREBALL,NM,10/7/2002 19:00 +Plymouth Meeting,,TRIANGLE,PA,10/7/2002 19:40 +Port Orchard,RED,,WA,10/7/2002 20:30 +Eugene,,TRIANGLE,OR,10/7/2002 21:03 +Melbourne Village,,DISK,FL,10/7/2002 21:30 +San Bernardino,,SPHERE,CA,10/7/2002 23:50 +Fremont,RED GREEN,LIGHT,CA,10/8/2002 2:30 +Narberth,,FIREBALL,PA,10/8/2002 20:20 +Clarkes Summitt,,OVAL,PA,10/8/2002 22:50 +Lone Pine,,CIRCLE,CA,10/9/2002 1:30 +Forest Park,,CHEVRON,IL,10/9/2002 2:38 +Golden,,CHEVRON,CO,10/9/2002 22:00 +Port Charlotte,,,FL,10/9/2002 23:45 +Hayward,,FLASH,WI,10/10/2002 0:01 +Philomath,,,OR,10/10/2002 2:00 +Seattle,,SPHERE,WA,10/10/2002 6:00 +Cincinnati,RED BLUE,OTHER,OH,10/10/2002 20:30 +Portland,,CIRCLE,OR,10/10/2002 21:00 +Fayette,,LIGHT,MS,10/10/2002 23:00 +Springfield,GREEN,FIREBALL,MO,10/11/2002 6:17 +Reno,,SPHERE,NV,10/11/2002 13:25 +Randolph,,CYLINDER,MA,10/11/2002 16:15 +Dallas,,FIREBALL,TX,10/11/2002 20:36 +Redmond,,LIGHT,WA,10/12/2002 2:40 +San Leandro,,DISK,CA,10/12/2002 11:00 +Winfield,,CIRCLE,TX,10/12/2002 11:00 +San Francisco,,,CA,10/12/2002 14:40 +Tinton Falls,BLUE,LIGHT,NJ,10/12/2002 15:49 +Prescott,,FORMATION,AZ,10/12/2002 18:00 +Renton,,DISK,WA,10/12/2002 19:10 +Rose Lake,,LIGHT,ID,10/12/2002 19:30 +Paris,BLUE,TRIANGLE,TX,10/12/2002 20:00 +Boca Raton,,LIGHT,FL,10/12/2002 20:10 +Paris,,TRIANGLE,TX,10/12/2002 20:45 +Heltonville,,LIGHT,IN,10/13/2002 1:00 +Mary Esther,,TRIANGLE,FL,10/13/2002 4:47 +Chicago,,FIREBALL,IL,10/13/2002 18:20 +Alameda,,CYLINDER,CA,10/13/2002 19:00 +Smithfield,,DISK,NC,10/13/2002 19:00 +Eastman,,LIGHT,GA,10/13/2002 19:10 +Port Angeles,,VARIOUS,WA,10/13/2002 21:00 +Ship Bottom,,TRIANGLE,NJ,10/13/2002 23:00 +Savage,,TRIANGLE,MN,10/14/2002 1:22 +Joseph,GREEN,TRIANGLE,UT,10/14/2002 2:00 +Ely,,LIGHT,NV,10/14/2002 7:10 +Littleton,,DISK,CO,10/14/2002 16:15 +Dallesport,,LIGHT,WA,10/14/2002 18:45 +Lebanon,,,OR,10/14/2002 18:45 +Los Angeles,ORANGE,CIRCLE,CA,10/14/2002 19:00 +Manteca,BLUE,LIGHT,CA,10/14/2002 19:00 +Palos Verdes Estates,,,CA,10/14/2002 19:00 +Temecula,,CIRCLE,CA,10/14/2002 19:00 +Truckee,,CIRCLE,CA,10/14/2002 19:00 +Vancouver,,,WA,10/14/2002 19:00 +Walnut Creek,,LIGHT,CA,10/14/2002 19:00 +Westlake Village,,FIREBALL,CA,10/14/2002 19:00 +Creswell,,FIREBALL,OR,10/14/2002 19:02 +Porterville,,FIREBALL,CA,10/14/2002 19:02 +Redwood Valley,,FIREBALL,CA,10/14/2002 19:03 +Grass Valley,,FIREBALL,CA,10/14/2002 19:05 +Ivins,ORANGE,FIREBALL,UT,10/14/2002 19:05 +Madras,,CHEVRON,OR,10/14/2002 19:05 +Medford,,LIGHT,OR,10/14/2002 19:05 +Murphys,BLUE,VARIOUS,CA,10/14/2002 19:05 +Fall River Mills,,FIREBALL,CA,10/14/2002 19:10 +Anderson,,LIGHT,CA,10/14/2002 19:30 +Goldendale,,DISK,WA,10/14/2002 19:30 +Las Vegas,,SPHERE,NV,10/14/2002 19:30 +San Jose,,OTHER,CA,10/14/2002 19:30 +Hollister,,,NV,10/14/2002 20:00 +San Jose,,,CA,10/14/2002 20:08 +Elmo,,CIRCLE,UT,10/14/2002 20:15 +Gaysville,,CONE,VT,10/14/2002 20:15 +Clarks Summit,,CIRCLE,PA,10/14/2002 22:15 +Hancock,,,MN,10/15/2002 0:00 +Los Angeles,,TRIANGLE,CA,10/15/2002 0:00 +Bland,,TRIANGLE,MO,10/15/2002 1:00 +Bremerton,,SPHERE,WA,10/15/2002 3:00 +Darien,,OTHER,CT,10/15/2002 3:00 +Cadillac,,FIREBALL,MI,10/15/2002 4:30 +Seattle,,RECTANGLE,WA,10/15/2002 7:30 +San Diego,,CIGAR,CA,10/15/2002 13:00 +San Marcos,,CIGAR,CA,10/15/2002 14:00 +Tyler,,CIGAR,TX,10/15/2002 17:00 +Bosler,,,WY,10/15/2002 18:00 +Lake Forest Park,,SPHERE,WA,10/15/2002 19:45 +Rexford,,CHEVRON,MT,10/15/2002 20:10 +Noble,,LIGHT,OK,10/15/2002 20:30 +Albrightsville,,LIGHT,PA,10/15/2002 21:15 +Monroe,,LIGHT,GA,10/15/2002 22:00 +San Clemente,,TRIANGLE,CA,10/15/2002 22:00 +West Valley,,SPHERE,UT,10/15/2002 23:00 +Renton,,CIGAR,WA,10/16/2002 7:30 +Guilford,,CIGAR,ME,10/16/2002 15:00 +Germantown,,DISK,TN,10/16/2002 16:05 +Brookline,,OVAL,MA,10/16/2002 19:00 +Indianapolis,,FLASH,IN,10/16/2002 19:00 +Ogden,,FORMATION,UT,10/16/2002 19:37 +Savannah,,,GA,10/16/2002 20:15 +Galion,,TRIANGLE,OH,10/16/2002 20:20 +Chaco Canyon National Historic Park,,LIGHT,NM,10/16/2002 20:30 +Waco,,LIGHT,TX,10/16/2002 20:45 +Halletsville,,OVAL,TX,10/16/2002 21:00 +Portland,,LIGHT,OR,10/16/2002 21:00 +Colorado,RED ORANGE YELLOW,OTHER,CO,10/16/2002 21:30 +Ocala,,LIGHT,FL,10/16/2002 22:00 +Las Vegas,,EGG,NV,10/16/2002 22:15 +Gilmer County,,DIAMOND,GA,10/16/2002 22:30 +Austin,GREEN,OTHER,TX,10/16/2002 23:06 +Brighton,RED,LIGHT,MA,10/17/2002 1:00 +Renton,RED,LIGHT,WA,10/17/2002 5:21 +El Cajon,RED,LIGHT,CA,10/17/2002 13:55 +Seattle,GREEN,,WA,10/17/2002 19:13 +Columbus,,CIRCLE,OH,10/17/2002 23:01 +Street,,,MD,10/18/2002 0:00 +Kotzebue,,DISK,AK,10/18/2002 5:30 +Memphis,,,IN,10/18/2002 21:30 +Story City,,TRIANGLE,IA,10/19/2002 0:34 +Long Beach,,DISK,CA,10/19/2002 1:30 +Hells Canyon,,SPHERE,OR,10/19/2002 2:00 +New Orleans,,,LA,10/19/2002 8:45 +LaCenter,,OTHER,WA,10/19/2002 18:50 +Albany,,,NY,10/20/2002 0:00 +Albany,,CIGAR,NY,10/20/2002 0:00 +Albany,,CYLINDER,NY,10/20/2002 0:00 +Raton,,LIGHT,CO,10/20/2002 0:00 +Latham,,CYLINDER,NY,10/20/2002 12:00 +Albany,,,NY,10/20/2002 16:00 +Albany,,,NY,10/20/2002 16:00 +Albany,,,NY,10/20/2002 16:00 +Albany,,CIGAR,NY,10/20/2002 16:00 +Curlew,RED,SPHERE,WA,10/20/2002 18:00 +Truckee,,CHEVRON,CA,10/20/2002 19:15 +Altoona,,LIGHT,PA,10/20/2002 19:30 +Temecula,,CIRCLE,CA,10/20/2002 21:30 +Burbank,RED,OVAL,CA,10/21/2002 2:30 +Aurora,,FLASH,CO,10/21/2002 9:15 +Albany,,CIGAR,NY,10/21/2002 10:00 +Albany,,OTHER,NY,10/21/2002 12:30 +Malone,,LIGHT,NY,10/21/2002 18:00 +Tulsa,,LIGHT,OK,10/21/2002 22:00 +Houston,,DISK,TX,10/22/2002 10:04 +San Francisco,,CIGAR,CA,10/22/2002 13:00 +St. Clairsville,,DISK,OH,10/22/2002 20:15 +Cocoa Beach,,FIREBALL,FL,10/22/2002 21:00 +Albany,RED BLUE,TRIANGLE,NY,10/23/2002 20:15 +Cleveland,,CIGAR,OH,10/24/2002 0:00 +Manchester,,TRIANGLE,CT,10/24/2002 15:15 +Atlanta,,DIAMOND,GA,10/24/2002 19:30 +Guttenberg,,DISK,NJ,10/25/2002 7:10 +Buford,,FLASH,GA,10/26/2002 1:50 +Roanoke,,OTHER,VA,10/26/2002 5:00 +Phoenix,,CIGAR,AZ,10/26/2002 10:30 +South Pasadena,BLUE,OTHER,CA,10/26/2002 17:45 +"Summit Lake Exit, Hwy 42",,DISK,OR,10/26/2002 18:30 +Garrison,,LIGHT,NY,10/26/2002 21:30 +Stevensville,,LIGHT,MD,10/27/2002 0:15 +Santa Barbara,,DISK,CA,10/27/2002 17:00 +San Jose,,OTHER,CA,10/28/2002 1:10 +Seattle,,OTHER,WA,10/28/2002 7:00 +Idaho,,FORMATION,ID,10/28/2002 18:45 +Lisbon,,DISK,OH,10/28/2002 19:10 +Syracuse,,LIGHT,IN,10/28/2002 19:30 +Columbia City,,CIRCLE,IN,10/28/2002 20:26 +Wittmann,,FLASH,AZ,10/28/2002 21:30 +Syracuse,,OVAL,IN,10/28/2002 22:30 +Huntington,,,IN,10/29/2002 2:20 +Bertram,,EGG,TX,10/29/2002 12:00 +Austin,,FIREBALL,TX,10/29/2002 17:45 +Chandler,,DIAMOND,AZ,10/29/2002 21:38 +Brown City,,CIRCLE,MI,10/29/2002 22:30 +San Diego,,,TX,10/30/2002 1:00 +Sacramento,ORANGE,CIRCLE,CA,10/30/2002 2:15 +Auburn,,CHEVRON,CA,10/30/2002 9:00 +Marshallville,,OTHER,OH,10/30/2002 9:15 +Seattle,,,WA,10/30/2002 12:00 +Potomac,,CIGAR,MT,10/30/2002 16:15 +Hammond,,DISK,IN,10/30/2002 16:45 +Austin,,FIREBALL,TX,10/30/2002 17:55 +Santa Barbara,,TRIANGLE,CA,10/30/2002 18:20 +Port Townsend,,CHEVRON,WA,10/30/2002 18:56 +Wendover,,CROSS,UT,10/30/2002 20:38 +Crossing California into Arizona,ORANGE YELLOW,FIREBALL,AZ,10/30/2002 21:30 +Salt Lake City,,,UT,10/30/2002 21:30 +Ashland,,CHEVRON,MO,10/30/2002 22:00 +Boynton Beach,,OTHER,FL,10/30/2002 23:37 +Orlando,,TRIANGLE,FL,10/31/2002 3:05 +Yelm,,OTHER,WA,10/31/2002 6:40 +Seattle,,LIGHT,WA,10/31/2002 7:45 +Edmonds,,FIREBALL,WA,10/31/2002 20:00 +Houston,,TRIANGLE,TX,10/31/2002 21:00 +Ocala,,LIGHT,FL,10/31/2002 22:00 +Shepherdstown,,TRIANGLE,WV,10/31/2002 22:30 +Austin,,OTHER,TX,11/1/2002 1:00 +Phoenix,,TRIANGLE,AZ,11/1/2002 1:00 +Reading,,DIAMOND,PA,11/1/2002 2:27 +Traverse City,,OTHER,MI,11/1/2002 7:20 +Berkeley,,OTHER,MO,11/1/2002 10:03 +Santa Cruz,,CIRCLE,CA,11/1/2002 12:05 +Coralville,,LIGHT,IA,11/1/2002 17:00 +Coralville,,LIGHT,IA,11/1/2002 17:00 +Pahrump,,DISK,NV,11/1/2002 18:00 +Wilmington,ORANGE,CHEVRON,NC,11/1/2002 19:00 +Derry,BLUE,SPHERE,NH,11/1/2002 19:30 +O'Fallon,,TRIANGLE,IL,11/1/2002 20:00 +Port Orchard,,CIRCLE,WA,11/1/2002 20:30 +Scottsdale,,FIREBALL,AZ,11/1/2002 20:30 +Columbia,,TRIANGLE,MD,11/1/2002 21:00 +Las Vegas,,VARIOUS,NV,11/1/2002 21:00 +Tucson,,FORMATION,AZ,11/1/2002 21:40 +Williamsburg,,CHEVRON,VA,11/1/2002 21:45 +Brush Prairie,,CYLINDER,WA,11/1/2002 23:00 +Woburn,,DIAMOND,MA,11/1/2002 23:30 +Granite Falls,,LIGHT,WA,11/2/2002 0:00 +Granite Falls,,CIRCLE,WA,11/2/2002 0:30 +Chester,,OTHER,NJ,11/2/2002 2:00 +Detroit,,OTHER,MI,11/2/2002 6:00 +Galesburg,,CIRCLE,IL,11/2/2002 14:00 +Arroyo Grande,,VARIOUS,CA,11/2/2002 15:42 +Grand Junction,,OTHER,CO,11/2/2002 17:15 +New York City,,OVAL,NY,11/2/2002 17:30 +Granite City,RED,LIGHT,IL,11/2/2002 17:45 +Lakewood,,TRIANGLE,CA,11/2/2002 18:00 +Lakewood,,TRIANGLE,CA,11/2/2002 18:00 +Marysville,,SPHERE,WA,11/2/2002 19:55 +Deltona,,FLASH,FL,11/2/2002 20:32 +Waterloo,GREEN,LIGHT,SC,11/2/2002 20:45 +Aloha,ORANGE,OTHER,OR,11/3/2002 0:25 +Livermore,,,CA,11/3/2002 16:30 +Chillicothe,,CYLINDER,TX,11/3/2002 17:40 +Richmond,RED GREEN,,VA,11/4/2002 3:00 +Bartow,,TRIANGLE,FL,11/4/2002 9:22 +Virginia Beach,,DISK,VA,11/4/2002 18:45 +Caribou,,LIGHT,ME,11/5/2002 4:00 +Crystal Lake,,,IL,11/5/2002 6:00 +Oklahoma City,,OTHER,OK,11/5/2002 6:43 +Temecula,,LIGHT,CA,11/5/2002 18:47 +Sammamish,RED,LIGHT,WA,11/5/2002 19:50 +Moundridge,YELLOW,LIGHT,KS,11/5/2002 20:35 +Tucson,,LIGHT,AZ,11/6/2002 5:50 +Tucson,,OVAL,AZ,11/6/2002 5:50 +Disputanta,,LIGHT,VA,11/6/2002 19:30 +Champaign,,EGG,IL,11/6/2002 21:05 +Mount Pleasant,,FLASH,SC,11/6/2002 22:00 +Atascadero,,SPHERE,CA,11/6/2002 23:00 +Williamsport,,OTHER,PA,11/7/2002 0:00 +Williamsport,,,PA,11/7/2002 9:00 +Williamsport,,SPHERE,PA,11/7/2002 9:00 +Nogales,,TRIANGLE,AZ,11/7/2002 17:15 +Enterprise,RED,CHEVRON,AL,11/7/2002 18:30 +Grand Isle,GREEN,OVAL,VT,11/7/2002 19:00 +Saint Cloud,,CHEVRON,MN,11/7/2002 19:40 +Homer Glenn,,OTHER,IL,11/8/2002 2:00 +Houston,,,TX,11/8/2002 12:00 +Hopkinsville,,CYLINDER,KY,11/8/2002 15:00 +Texarkana,,LIGHT,TX,11/8/2002 16:30 +Chesnee,,OTHER,SC,11/8/2002 16:45 +Wyandotte,,TRIANGLE,MI,11/8/2002 19:00 +Mobile,,CHEVRON,AL,11/8/2002 20:10 +Annandale,,EGG,VA,11/9/2002 0:45 +Miami,,RECTANGLE,FL,11/9/2002 1:20 +Santa Margarita,,CIRCLE,CA,11/9/2002 2:00 +Kingsville,,CYLINDER,TX,11/9/2002 9:00 +Mullen,,LIGHT,NE,11/9/2002 11:00 +White Hall,,OTHER,VA,11/9/2002 11:51 +Tucson,BLUE,LIGHT,AZ,11/9/2002 20:00 +Arkansas City,,TRIANGLE,KS,11/9/2002 21:30 +Tempe,BLUE,SPHERE,AZ,11/9/2002 21:33 +Bozeman,,FIREBALL,MT,11/9/2002 23:00 +Highlands,,FLASH,NC,11/9/2002 23:30 +Burbank,,VARIOUS,CA,11/10/2002 0:30 +Calumet,,LIGHT,MI,11/10/2002 1:00 +Southfield,,OTHER,MI,11/10/2002 5:32 +Haddon Heights,,RECTANGLE,NJ,11/10/2002 13:30 +Santa Barbara,,CIRCLE,CA,11/10/2002 14:30 +Dallas,,LIGHT,TX,11/10/2002 20:00 +Ivesdale,,LIGHT,IL,11/10/2002 20:30 +Chattanooga,,OTHER,TN,11/11/2002 15:30 +Townville,,DISK,PA,11/11/2002 17:25 +Kettle Falls,ORANGE,FIREBALL,WA,11/11/2002 17:30 +Garwood,,CYLINDER,TX,11/11/2002 18:37 +Los Angeles Area,,CIRCLE,CA,11/11/2002 19:30 +San Jose,,LIGHT,CA,11/11/2002 20:08 +Oak Creek,,TRIANGLE,WI,11/11/2002 20:30 +Orcutt,,OTHER,CA,11/12/2002 8:40 +Pocahontas,,LIGHT,AR,11/12/2002 18:30 +Flint,RED,DISK,MI,11/12/2002 22:35 +Highland Park,,,IL,11/12/2002 23:00 +Baton Rouge,,CIRCLE,LA,11/13/2002 1:20 +Academy,,OTHER,TX,11/13/2002 5:10 +Hacienda Heights,,CIRCLE,CA,11/13/2002 6:15 +Sparta,,EGG,WI,11/13/2002 6:45 +Lansing,RED,TRIANGLE,MI,11/13/2002 7:52 +Morrow,RED,,GA,11/13/2002 9:45 +Adams,,EGG,WI,11/13/2002 18:00 +Chillicothe,,OTHER,OH,11/13/2002 18:30 +San Pedro,RED,TRIANGLE,CA,11/13/2002 19:00 +Hammond,,,IN,11/13/2002 20:15 +Comanche,,LIGHT,TX,11/13/2002 20:45 +Apex,YELLOW,,NC,11/13/2002 22:12 +Kennesaw,,SPHERE,GA,11/14/2002 4:35 +Hayward,,EGG,CA,11/14/2002 8:00 +Baton Rouge,,,LA,11/14/2002 12:00 +Mariposa,,OVAL,CA,11/14/2002 18:22 +Chapel Hill,,CIRCLE,TN,11/14/2002 23:20 +Augusta,,LIGHT,ME,11/15/2002 0:00 +Arcata,,LIGHT,CA,11/15/2002 17:30 +Las Vegas,,OTHER,NV,11/15/2002 17:30 +Surprise,,FLASH,AZ,11/15/2002 18:30 +Maidsville,,TRIANGLE,WV,11/15/2002 19:30 +Ludlow,,TRIANGLE,CA,11/15/2002 21:00 +Milan,,TRIANGLE,MI,11/15/2002 21:30 +Sheffield Lake,,CIRCLE,OH,11/15/2002 22:00 +Grand Rapids,,LIGHT,MI,11/15/2002 22:10 +Spencer,,LIGHT,MA,11/16/2002 2:30 +San Pedro,,FORMATION,CA,11/16/2002 16:30 +Bell Gardens,,SPHERE,CA,11/16/2002 19:30 +Oklahoma City,,CYLINDER,OK,11/16/2002 21:00 +Knoxville,,FIREBALL,TN,11/17/2002 3:00 +Chippewa Lake,,LIGHT,MI,11/17/2002 6:55 +Lincoln,,OTHER,NE,11/17/2002 10:00 +Wittmann,,OTHER,AZ,11/17/2002 19:00 +Reedley,,LIGHT,CA,11/17/2002 23:15 +Lake Arrowhead,,,CA,11/18/2002 4:00 +Okemos,,OTHER,MI,11/18/2002 6:00 +Macomb,,TRIANGLE,MI,11/18/2002 19:40 +Santa Rosa,ORANGE,,CA,11/18/2002 22:00 +Sayreville,ORANGE,LIGHT,NJ,11/18/2002 22:00 +Greenville,,CHEVRON,NC,11/18/2002 22:20 +Ashville,,LIGHT,OH,11/18/2002 23:00 +Houston,,CIGAR,TX,11/18/2002 23:00 +New York City,,VARIOUS,NY,11/19/2002 0:45 +Lawrence,ORANGE,CROSS,KS,11/19/2002 1:00 +Carrollton,,VARIOUS,TX,11/19/2002 2:27 +Stover,ORANGE,CIRCLE,MO,11/19/2002 3:30 +Houston,RED,FORMATION,TX,11/19/2002 3:40 +Pittsburgh,,EGG,PA,11/19/2002 4:00 +Lynchburg,,TRIANGLE,VA,11/19/2002 4:30 +Plano,,FORMATION,TX,11/19/2002 4:40 +Apopka,,,FL,11/19/2002 5:00 +Clermont,,TRIANGLE,FL,11/19/2002 5:00 +Mercer,,DISK,ND,11/19/2002 5:00 +Baltimore,,FORMATION,MD,11/19/2002 5:20 +Baltimore,,FORMATION,MD,11/19/2002 5:20 +Bradenton,,OTHER,FL,11/19/2002 5:30 +Lehigh Acres,,LIGHT,FL,11/19/2002 5:30 +Norfolk,RED,CHEVRON,VA,11/19/2002 5:30 +Wall,,CHEVRON,NJ,11/19/2002 5:35 +Lincolnton,,EGG,NC,11/19/2002 5:40 +Lake Panasoffkee,,OTHER,FL,11/19/2002 5:45 +Pollock,,VARIOUS,ID,11/19/2002 7:00 +North Richland Hills,,CYLINDER,TX,11/19/2002 17:19 +Bloomington,,LIGHT,IN,11/19/2002 18:45 +Lumberton,GREEN,DIAMOND,NC,11/19/2002 19:30 +Portland,,TRIANGLE,OR,11/19/2002 21:30 +Hamburg,,OTHER,NY,11/19/2002 23:30 +Renton,,SPHERE,WA,11/20/2002 0:18 +Easton,,FIREBALL,PA,11/20/2002 11:00 +Portsmouth,,CIGAR,OH,11/20/2002 15:00 +Johnstown,,LIGHT,PA,11/20/2002 20:50 +Oak Park,,OVAL,CA,11/20/2002 22:34 +Oak Park,,OVAL,CA,11/20/2002 22:34 +Clemmons,,TRIANGLE,NC,11/21/2002 5:45 +Vinita,,CIGAR,OK,11/21/2002 15:30 +San Diego,,,CA,11/21/2002 17:30 +Tulsa,,CROSS,OK,11/21/2002 18:20 +Tonawanda,,CHEVRON,NY,11/21/2002 20:00 +Riverview,,TRIANGLE,MI,11/22/2002 17:22 +Dallas,,FORMATION,TX,11/22/2002 22:00 +Riverside,,CIRCLE,IL,11/22/2002 22:00 +Lost River,,DISK,WV,11/23/2002 5:00 +Swaledale,,CIRCLE,IA,11/23/2002 5:22 +Gallatin,,,TN,11/23/2002 16:15 +Gallatin,,,TN,11/23/2002 16:15 +Keystone,,LIGHT,IA,11/23/2002 17:15 +Brighton,,OTHER,MA,11/23/2002 19:00 +Topeka,,FLASH,KS,11/23/2002 21:00 +New Salem,RED,FIREBALL,IL,11/23/2002 22:18 +Santa Fe,GREEN,CHEVRON,NM,11/24/2002 6:25 +Lake Charles,,CIRCLE,LA,11/24/2002 11:30 +Bangor,,CYLINDER,ME,11/24/2002 15:45 +Seattle,,,WA,11/25/2002 19:00 +Brooks,,FIREBALL,OR,11/26/2002 6:10 +Jeannette,,OTHER,PA,11/26/2002 9:00 +Spanish Fork Canyon,,DISK,UT,11/26/2002 19:00 +Oceanside,,TRIANGLE,CA,11/26/2002 21:58 +Madison,,LIGHT,AL,11/26/2002 22:10 +Spanish Fork Canyon,GREEN,DISK,UT,11/27/2002 0:00 +Rainier,,TRIANGLE,WA,11/27/2002 4:30 +San Francisco,,VARIOUS,CA,11/27/2002 4:45 +Lake Stevens,,CIRCLE,WA,11/27/2002 5:00 +Tacoma,,FLASH,WA,11/27/2002 8:04 +Medley,BLUE,,FL,11/27/2002 9:30 +San Francisco,,TRIANGLE,CA,11/27/2002 12:30 +Lincoln,,FIREBALL,NE,11/27/2002 18:45 +Lakewood,,CHEVRON,OH,11/27/2002 23:30 +Dudley,,TRIANGLE,MA,11/28/2002 4:00 +Oxford,,VARIOUS,MA,11/28/2002 4:00 +Coon Rapids,,LIGHT,MN,11/28/2002 5:00 +Cumberland,,DISK,RI,11/28/2002 5:00 +Bellingham,,FORMATION,WA,11/28/2002 6:00 +Enumclaw,,OTHER,WA,11/28/2002 6:14 +Redmond,,CYLINDER,WA,11/28/2002 6:15 +Renton,,,WA,11/28/2002 6:15 +Vancouver,,FIREBALL,WA,11/28/2002 6:15 +Medical Lake,,,WA,11/28/2002 6:20 +McCall,,OTHER,ID,11/28/2002 7:16 +St. Cloud,,OTHER,MN,11/28/2002 10:30 +Colorado Springs,,CIRCLE,CO,11/28/2002 18:23 +Cheyenne,,FIREBALL,WY,11/28/2002 18:30 +Santa Cruz,,VARIOUS,CA,11/28/2002 18:40 +Aurora,,FIREBALL,CO,11/28/2002 20:30 +Amsterdam,ORANGE,FLASH,NY,11/28/2002 21:30 +Glen Ellen,RED,LIGHT,CA,11/28/2002 21:50 +Concord,,CYLINDER,MA,11/28/2002 22:00 +Lincoln,,LIGHT,NE,11/28/2002 22:30 +Shelby,GREEN,LIGHT,NC,11/28/2002 23:59 +Littleton,,,CO,11/29/2002 3:00 +Reading,,OVAL,PA,11/29/2002 4:55 +Reading,,DISK,PA,11/29/2002 5:05 +Asbury,,VARIOUS,MO,11/29/2002 6:00 +Longview,,FIREBALL,WA,11/29/2002 6:15 +Enumclaw,,CYLINDER,WA,11/29/2002 6:16 +Groves,,CIRCLE,TX,11/29/2002 9:30 +Deming,,OTHER,NM,11/29/2002 15:00 +Durango,,OVAL,CO,11/29/2002 18:20 +Flagstaff,,LIGHT,AZ,11/29/2002 19:40 +Hereford,,FLASH,TX,11/29/2002 21:00 +Fort Loudon,,LIGHT,PA,11/29/2002 21:30 +Cordova,BLUE,,TN,11/29/2002 22:00 +Mount Wolf,,LIGHT,PA,11/29/2002 22:00 +Huntington,,VARIOUS,WV,11/30/2002 2:30 +Kansas City,,CYLINDER,MO,11/30/2002 13:00 +Cassatt,,CIRCLE,SC,11/30/2002 17:30 +Yuba City,,TRIANGLE,CA,11/30/2002 17:45 +Hawaii Volcanoes National Park,,,HI,11/30/2002 18:42 +Leavenworth,,TRIANGLE,KS,11/30/2002 19:45 +Little Rock,,CHEVRON,AR,11/30/2002 21:45 +Springfield,,OTHER,MO,11/30/2002 23:50 +Duvall,,OTHER,WA,12/1/2002 4:30 +Warren,RED GREEN BLUE,SPHERE,OR,12/1/2002 5:30 +Las Vegas,,,NV,12/1/2002 8:15 +Sacramento,,CIGAR,CA,12/1/2002 14:05 +Charelston,,OTHER,WV,12/1/2002 15:00 +Charleston,,TEARDROP,SC,12/1/2002 16:00 +New York City,,FORMATION,NY,12/1/2002 17:15 +Sarasota,,SPHERE,FL,12/1/2002 17:30 +Springfield,BLUE,,VA,12/1/2002 20:12 +Woodcliff Lake,,DISK,NJ,12/1/2002 20:40 +Renton,,LIGHT,WA,12/1/2002 21:00 +Vincennes,GREEN,,IN,12/1/2002 21:00 +Safety Harbor,,CIRCLE,FL,12/1/2002 22:00 +Littlefield,,RECTANGLE,TX,12/1/2002 23:00 +Hwy 80,,SPHERE,PA,12/2/2002 4:23 +Wiconisco,GREEN,CIRCLE,PA,12/2/2002 5:00 +Beverly,,FIREBALL,WV,12/2/2002 5:10 +Mt. Holly Springs,,FIREBALL,PA,12/2/2002 5:15 +New Baltimore,,TRIANGLE,PA,12/2/2002 5:15 +New Baltimore,BLUE,TRIANGLE,PA,12/2/2002 5:15 +Middle River,GREEN,FLASH,MD,12/2/2002 5:17 +Queenstown,,CIRCLE,MD,12/2/2002 5:20 +Blainsport,BLUE,FIREBALL,PA,12/2/2002 5:30 +Lake Charles,,LIGHT,LA,12/2/2002 5:40 +Riverside,,VARIOUS,CA,12/2/2002 21:15 +Tallahassee,,LIGHT,FL,12/2/2002 22:00 +Los Angeles,,OVAL,CA,12/2/2002 23:00 +Livermore,,LIGHT,CA,12/3/2002 17:05 +Jersey City,,SPHERE,NJ,12/3/2002 18:22 +Farmingdale,,TRIANGLE,NY,12/3/2002 18:40 +Phoenix,RED ORANGE,TRIANGLE,AZ,12/3/2002 20:30 +San Carlos Apache Reservation,RED,,AZ,12/3/2002 23:30 +Galesburg area,,OTHER,IL,12/4/2002 6:30 +Gainesville,,EGG,FL,12/4/2002 16:00 +Glen Rock,,OTHER,PA,12/4/2002 22:00 +Baytown,,OTHER,TX,12/5/2002 2:00 +Richardson,,,TX,12/5/2002 8:56 +Folsom,,TRIANGLE,CA,12/5/2002 19:45 +Halleck,,,NV,12/6/2002 0:30 +Pico Rivera,,VARIOUS,CA,12/6/2002 5:00 +Waco,,OTHER,TX,12/6/2002 6:07 +Chicago,,DISK,IL,12/6/2002 7:04 +Charlotte,,CIRCLE,NC,12/6/2002 14:30 +Ventura,,VARIOUS,CA,12/6/2002 16:10 +Soda Springs,,,CA,12/6/2002 17:15 +Arlington,GREEN,FIREBALL,WA,12/6/2002 19:25 +Port Angeles,,DISK,WA,12/6/2002 19:30 +Wilsonville,GREEN,,OR,12/6/2002 19:30 +Mt. Vernon,,FIREBALL,WA,12/6/2002 19:35 +Chiloquin,,SPHERE,OR,12/6/2002 20:30 +West Linn,,CHEVRON,OR,12/6/2002 21:30 +San Diego,,CHEVRON,CA,12/6/2002 22:30 +Wrightsville Beach,BLUE,CIRCLE,NC,12/6/2002 22:55 +Appalachia,ORANGE,LIGHT,VA,12/6/2002 23:00 +Grifton,,,NC,12/6/2002 23:00 +Charleston,,FIREBALL,SC,12/6/2002 23:07 +Hemingway,BLUE,FLASH,SC,12/6/2002 23:10 +Las Vegas,,LIGHT,NV,12/7/2002 10:10 +Booneville,,,AR,12/7/2002 17:00 +Camano Island,,FORMATION,WA,12/7/2002 17:00 +Hermitage,,CIGAR,PA,12/7/2002 21:30 +Sioux Falls,,TEARDROP,SD,12/7/2002 23:15 +Sioux Falls,,TEARDROP,SD,12/7/2002 23:30 +Chimes,,CHEVRON,AR,12/8/2002 0:00 +Croydon,,TRIANGLE,PA,12/8/2002 0:20 +Brookfield,,,OH,12/8/2002 4:30 +Mt. Holly,RED,LIGHT,PA,12/8/2002 5:00 +Odessa,,OVAL,TX,12/8/2002 5:55 +Noblesville,RED,FLASH,IN,12/8/2002 15:30 +Green Bay,,TRIANGLE,WI,12/8/2002 17:30 +Sharpsville,,EGG,PA,12/8/2002 18:45 +Sharpsville,,CIGAR,PA,12/8/2002 19:45 +Wilson,,DISK,NC,12/8/2002 20:00 +Hurricane,,TRIANGLE,WV,12/8/2002 20:30 +Bellingham,,OTHER,WA,12/8/2002 20:45 +Bellingham,,OTHER,WA,12/8/2002 20:45 +Tarboro,,DISK,NC,12/8/2002 21:00 +Vienna,,CIGAR,OH,12/8/2002 21:00 +Wilson,,CIGAR,NC,12/8/2002 21:00 +Monson,,LIGHT,MA,12/9/2002 4:20 +Monson,,,MA,12/9/2002 5:15 +Longmont,,LIGHT,CO,12/9/2002 18:45 +Robbinsdale,,DIAMOND,MN,12/9/2002 22:00 +Mount Dora,,CIRCLE,FL,12/10/2002 3:00 +Louisville,,SPHERE,KY,12/10/2002 5:00 +Tampa,,DIAMOND,FL,12/10/2002 5:30 +Hesperia,,OVAL,CA,12/10/2002 7:45 +New Wilmington,,EGG,PA,12/10/2002 18:00 +Linden,,FIREBALL,MI,12/10/2002 18:35 +Frankfort,,SPHERE,IN,12/10/2002 19:30 +Safety Harbor,RED,LIGHT,FL,12/10/2002 22:05 +North Miami,,FIREBALL,FL,12/10/2002 22:15 +Boca Raton,ORANGE,FIREBALL,FL,12/10/2002 22:55 +Lancaster,BLUE,TRIANGLE,WI,12/11/2002 6:10 +Kent,,OTHER,WA,12/11/2002 6:15 +Colorado Springs,,OVAL,CO,12/13/2002 8:50 +Clive,,CHEVRON,UT,12/13/2002 17:45 +Riverview,,CIGAR,MI,12/13/2002 20:00 +Houston,,TRIANGLE,TX,12/13/2002 21:15 +Denver,,TRIANGLE,CO,12/13/2002 23:00 +El Paso,,LIGHT,TX,12/13/2002 23:00 +Centreville,,TEARDROP,VA,12/13/2002 23:40 +Norman,,TRIANGLE,OK,12/14/2002 2:30 +El Paso,,,TX,12/14/2002 5:00 +Irvington,,LIGHT,AL,12/14/2002 15:45 +Maylene,,LIGHT,AL,12/15/2002 0:00 +Northridge,,CIRCLE,CA,12/15/2002 7:50 +Colchester,,CYLINDER,CT,12/15/2002 8:00 +Woodbridge,,CHEVRON,VA,12/15/2002 13:00 +Las Vegas,,TRIANGLE,NV,12/15/2002 14:00 +Suwanee,,LIGHT,GA,12/15/2002 19:00 +Monterey,RED GREEN,CIRCLE,TN,12/15/2002 20:00 +Newport Beach,,LIGHT,CA,12/15/2002 21:00 +Suwanee,,LIGHT,GA,12/15/2002 22:30 +Marshall,,OVAL,NC,12/15/2002 23:00 +Seattle,,DISK,WA,12/15/2002 23:59 +Indianapolis,,CIRCLE,IN,12/16/2002 6:30 +Coral Springs,,OVAL,FL,12/16/2002 12:51 +Amherst,,OTHER,MA,12/16/2002 15:30 +Spotsylvania,,TRIANGLE,VA,12/16/2002 20:30 +Port St. Lucie,,CIRCLE,FL,12/17/2002 2:00 +New York City,,SPHERE,NY,12/17/2002 10:30 +Cheshire,,CIRCLE,CT,12/17/2002 19:00 +Quitman,,TRIANGLE,GA,12/17/2002 21:30 +Newport,,EGG,AR,12/17/2002 23:00 +Zwolle,,OTHER,LA,12/18/2002 17:30 +Kent,,TRIANGLE,WA,12/18/2002 19:30 +York,,OTHER,PA,12/19/2002 16:15 +Katy,,CHEVRON,TX,12/19/2002 19:00 +Fraser,YELLOW,SPHERE,CO,12/19/2002 20:45 +Crockett,,CHEVRON,TX,12/19/2002 22:00 +Lafayette,RED BLUE,,CA,12/19/2002 22:00 +Kensington,,CHEVRON,MD,12/19/2002 22:30 +Punta Gorda,,DISK,FL,12/20/2002 3:45 +Ocotilla Wells,,SPHERE,CA,12/20/2002 21:19 +Pasadena,RED BLUE,LIGHT,TX,12/21/2002 3:00 +Canastota,,,NY,12/21/2002 6:10 +Tunkhannock,,OTHER,PA,12/21/2002 6:45 +Sarasota,,FIREBALL,FL,12/21/2002 21:52 +Charlton,,OTHER,MA,12/21/2002 22:30 +Milwaukee,,TRIANGLE,WI,12/22/2002 1:30 +Portland,,DISK,OR,12/22/2002 14:20 +Foster City,ORANGE,LIGHT,CA,12/22/2002 21:00 +Centreville,,TEARDROP,VA,12/23/2002 3:30 +Rehoboth Beach,,DISK,DE,12/23/2002 4:00 +Fullerton,GREEN,TRIANGLE,CA,12/23/2002 20:00 +Rose Bud,GREEN,OTHER,AR,12/23/2002 20:00 +Deerfield Beach,,CIRCLE,FL,12/23/2002 20:30 +Cloverdale,,OVAL,CA,12/23/2002 22:00 +Eureka,ORANGE,LIGHT,CA,12/23/2002 23:30 +Braintree,,OVAL,MA,12/24/2002 6:00 +Union,,,NJ,12/24/2002 8:30 +Providence,,SPHERE,RI,12/24/2002 16:00 +Susanville,,LIGHT,CA,12/24/2002 21:00 +Hebron,,LIGHT,ND,12/24/2002 22:00 +Chesapeake,BLUE,LIGHT,OH,12/25/2002 6:45 +St. Louis,,OTHER,MO,12/25/2002 15:30 +Millington,,CONE,MI,12/25/2002 17:30 +Union,,,NJ,12/25/2002 19:15 +Los Angeles,ORANGE,LIGHT,CA,12/25/2002 19:30 +Oro Valley,,LIGHT,AZ,12/25/2002 21:00 +Anamosa,,LIGHT,IA,12/25/2002 21:45 +Phoenix,,LIGHT,AZ,12/25/2002 23:30 +Irvine,,,CA,12/26/2002 4:05 +Fort Worth,,LIGHT,TX,12/26/2002 19:00 +Wayzata,,LIGHT,MN,12/27/2002 0:00 +Roby,,LIGHT,MO,12/27/2002 9:37 +Natalia,,OTHER,TX,12/27/2002 18:20 +Seaford,,,DE,12/27/2002 19:00 +Phoenix,,CHEVRON,AZ,12/27/2002 20:25 +Roby,,FLASH,MO,12/27/2002 23:30 +Dane,,FORMATION,WI,12/28/2002 4:50 +Layton,,,UT,12/28/2002 18:45 +Jacksonville,,FIREBALL,FL,12/29/2002 2:25 +Coconut Grove,,LIGHT,FL,12/29/2002 13:45 +Las Vegas,,FIREBALL,NV,12/29/2002 14:00 +Belmont,,FIREBALL,CA,12/29/2002 21:00 +Santa Rosa,BLUE,CIRCLE,CA,12/29/2002 21:30 +Sunnyvale,,CIRCLE,CA,12/29/2002 21:32 +Hendersonville,RED,DISK,TN,12/30/2002 17:00 +Torrance,,VARIOUS,CA,12/30/2002 17:47 +Fallbrook,,LIGHT,CA,12/30/2002 18:30 +Compton,,OTHER,CA,12/30/2002 20:42 +Farmersville,RED,LIGHT,CA,12/30/2002 21:40 +Orlando,,,FL,12/30/2002 23:00 +Holden,,,ME,12/31/2002 0:00 +Shoreline,,LIGHT,WA,12/31/2002 7:30 +Burke,,OTHER,VA,12/31/2002 13:00 +Buena Park,,DISK,CA,12/31/2002 13:30 +Phoenix,ORANGE,OTHER,AZ,12/31/2002 16:40 +Monrovia,,OTHER,CA,12/31/2002 17:13 +Austin,,LIGHT,TX,12/31/2002 18:43 +Milpitas,,LIGHT,CA,12/31/2002 22:20 +Wenatchee,,FORMATION,WA,12/31/2002 23:50 +Wenatchee,ORANGE,LIGHT,WA,12/31/2002 23:50 +Wenatchee,,OVAL,WA,12/31/2002 23:55 +Burbank,,FIREBALL,CA,1/1/2003 0:01 +Burbank,,FORMATION,CA,1/1/2003 0:05 +Burbank,,TRIANGLE,CA,1/1/2003 0:05 +Suisun City,,CIRCLE,CA,1/1/2003 0:15 +Spring Valley,RED,LIGHT,CA,1/1/2003 0:25 +Lodi,,CONE,WI,1/1/2003 0:30 +McAllen,,DISK,TX,1/1/2003 1:15 +Mocksville,,,NC,1/1/2003 1:30 +Bellevue,,DISK,NE,1/1/2003 2:00 +Holden,,TRIANGLE,ME,1/1/2003 2:30 +Pismo Beach,ORANGE,CIRCLE,CA,1/1/2003 5:00 +Blue Springs,RED GREEN,LIGHT,MO,1/1/2003 5:15 +Imperial Beach,,FIREBALL,CA,1/1/2003 6:00 +Payton,,TEARDROP,CO,1/1/2003 7:37 +Yuma,,OVAL,AZ,1/1/2003 9:20 +San Jose,ORANGE,SPHERE,CA,1/1/2003 12:00 +Houston,,,TX,1/1/2003 13:00 +San Francisco,BLUE,CIRCLE,CA,1/1/2003 15:00 +Conyers,,LIGHT,GA,1/1/2003 23:00 +Oklahoma City,,LIGHT,OK,1/1/2003 23:30 +Marion,,TRIANGLE,IN,1/1/2003 23:43 +Dillsburg,,DIAMOND,PA,1/2/2003 2:00 +Orange County,,LIGHT,CA,1/2/2003 4:00 +Enid,,CIGAR,OK,1/2/2003 16:30 +San Jose,,TRIANGLE,CA,1/2/2003 17:20 +Meriden,BLUE,FLASH,CT,1/2/2003 18:50 +Torrance,RED BLUE,FLASH,CA,1/2/2003 19:00 +Los Angeles,,CIGAR,CA,1/2/2003 19:20 +Winnebago,RED GREEN BLUE,DISK,MN,1/2/2003 20:00 +Ft. Thompson,,LIGHT,SD,1/3/2003 2:29 +Norwood,,OTHER,MA,1/3/2003 3:00 +Las Vegas,,TEARDROP,NV,1/3/2003 10:11 +Unity,,CIRCLE,NH,1/4/2003 1:30 +Marshall,,LIGHT,TX,1/4/2003 4:10 +San Isidro,,OVAL,TX,1/4/2003 5:15 +Elsberry,,FLASH,MO,1/4/2003 6:25 +Cashiers,ORANGE,SPHERE,NC,1/4/2003 13:00 +Chula Vista,,CIRCLE,CA,1/4/2003 14:30 +North Carolina,,CIGAR,NC,1/4/2003 17:25 +Westminster,,SPHERE,MD,1/4/2003 20:50 +Bayport,,CONE,NY,1/4/2003 21:41 +Medina,,LIGHT,OH,1/4/2003 21:57 +Plain Dealing,RED GREEN BLUE,LIGHT,LA,1/5/2003 1:13 +Portland,,LIGHT,OR,1/5/2003 18:15 +Navarre Beach,RED BLUE,LIGHT,FL,1/5/2003 20:30 +Clare,,DISK,MI,1/5/2003 21:30 +Moundville,,EGG,AL,1/6/2003 4:00 +San Diego,,LIGHT,CA,1/6/2003 6:15 +Montclair,,FIREBALL,CA,1/6/2003 10:10 +San Francisco,,FORMATION,CA,1/6/2003 17:00 +Charlotte,,TRIANGLE,NC,1/6/2003 19:00 +Bellingham,,CIGAR,WA,1/6/2003 19:53 +Miami,,LIGHT,FL,1/6/2003 22:00 +Moab,,FIREBALL,UT,1/6/2003 22:49 +Philadelphia,,DISK,PA,1/7/2003 0:00 +Washington Courthouse,,TRIANGLE,OH,1/7/2003 0:25 +Palos Heights,,CROSS,IL,1/7/2003 0:45 +McKinleyville,,,CA,1/7/2003 3:30 +Chula Vista,,LIGHT,CA,1/7/2003 5:00 +Pittsburgh,RED GREEN BLUE,DIAMOND,PA,1/7/2003 11:00 +Middlesex Township,,OVAL,PA,1/7/2003 17:15 +Hephzibah,,,GA,1/7/2003 20:00 +Houston,,LIGHT,TX,1/7/2003 21:00 +Morro Bay,,SPHERE,CA,1/7/2003 21:20 +Post Falls,,TEARDROP,ID,1/7/2003 22:30 +Cincinnati,,,OH,1/8/2003 2:36 +Daedanelle,,TRIANGLE,AR,1/8/2003 10:21 +Santa Barbara,,VARIOUS,CA,1/8/2003 15:30 +Carol Stream,BLUE,LIGHT,IL,1/8/2003 16:30 +Wauwatosa,,,WI,1/8/2003 16:30 +Spicewood,,CYLINDER,TX,1/8/2003 18:15 +Williamsburg,,OTHER,OH,1/8/2003 19:00 +Mountlake Terrace,,CIRCLE,WA,1/8/2003 19:33 +Pendleton,,SPHERE,KY,1/8/2003 20:00 +Rock Springs,RED GREEN,LIGHT,WY,1/8/2003 20:15 +Wichita,,FLASH,KS,1/8/2003 20:30 +Albany,,TRIANGLE,NY,1/8/2003 22:00 +Union City,,,CA,1/8/2003 22:00 +Cibolo,,TEARDROP,TX,1/9/2003 4:45 +Pageland,,SPHERE,SC,1/9/2003 15:30 +Sun City Center,BLUE,LIGHT,FL,1/9/2003 16:40 +Havre,,FIREBALL,MT,1/9/2003 16:50 +Snohomish,,LIGHT,WA,1/9/2003 21:00 +St. James,,CYLINDER,NY,1/9/2003 21:00 +Vancleave,RED,DISK,MS,1/9/2003 21:00 +Portsmouth,BLUE,CIGAR,OH,1/9/2003 22:30 +Lockport,,FLASH,NY,1/10/2003 4:45 +Princess Anne,,OTHER,MD,1/10/2003 10:00 +Richfield,BLUE,FIREBALL,UT,1/10/2003 10:00 +Carbondale,,CIRCLE,IL,1/10/2003 17:00 +Woodbury,ORANGE,OVAL,CT,1/10/2003 18:30 +Old Town,,OTHER,ME,1/10/2003 18:40 +Aiken,,,SC,1/10/2003 19:30 +Huntsville,,OVAL,AR,1/10/2003 20:00 +Olympia,ORANGE,DISK,WA,1/10/2003 20:00 +Burbank,YELLOW,OVAL,CA,1/10/2003 21:45 +Cullman,,DIAMOND,AL,1/10/2003 22:00 +Falls Church,,CIGAR,VA,1/10/2003 23:00 +Williamsburg,,,VA,1/11/2003 0:10 +Norman,ORANGE,FLASH,OK,1/11/2003 1:27 +Winter Springs,GREEN,OTHER,FL,1/11/2003 12:10 +Mahwah,,CIRCLE,NJ,1/11/2003 18:23 +Burbank,,FIREBALL,CA,1/12/2003 1:30 +Pillager,,TRIANGLE,MN,1/12/2003 5:00 +Pleasant Hill,,FIREBALL,CA,1/12/2003 10:16 +Biloxi,,LIGHT,MS,1/12/2003 19:00 +Moab,,FIREBALL,UT,1/12/2003 20:12 +Apple Valley,RED,,CA,1/12/2003 22:54 +Ponca,,LIGHT,OK,1/13/2003 7:10 +Jackson,,TRIANGLE,NJ,1/13/2003 7:20 +Eden,,OVAL,TX,1/13/2003 19:00 +Chicago,,,IL,1/13/2003 21:30 +West Bend,,,WI,1/14/2003 4:30 +Boise,,CIGAR,ID,1/14/2003 6:50 +Capitola,,CYLINDER,FL,1/14/2003 17:00 +Wisconsin Dells,,LIGHT,WI,1/14/2003 19:00 +Henderson,RED,CYLINDER,NV,1/14/2003 19:15 +Greenwood,ORANGE,VARIOUS,WI,1/14/2003 19:20 +Ridgefield,GREEN,SPHERE,WA,1/14/2003 19:45 +Lorain,,LIGHT,OH,1/14/2003 20:00 +Peru,YELLOW,LIGHT,IN,1/14/2003 20:00 +Grandview,,OVAL,MO,1/14/2003 23:31 +Burbank,,LIGHT,CA,1/15/2003 0:15 +Millville,,CIRCLE,NJ,1/15/2003 1:00 +Grand Junction,,LIGHT,CO,1/15/2003 1:15 +Taos,,,NM,1/15/2003 2:00 +Simi Valley,RED,CIRCLE,CA,1/15/2003 3:00 +Lewisville,GREEN,FIREBALL,TX,1/15/2003 5:15 +North Judson,,LIGHT,IN,1/15/2003 7:20 +Washington,,LIGHT,PA,1/15/2003 7:30 +Jackson,,DISK,NJ,1/15/2003 10:30 +Sterling Heights,,EGG,MI,1/15/2003 14:00 +Reedsburg,ORANGE,FIREBALL,WI,1/15/2003 19:00 +Napa,,CHEVRON,CA,1/15/2003 19:30 +Fair Oaks,ORANGE,CIRCLE,CA,1/15/2003 23:00 +na,,,WA,1/16/2003 0:00 +Boaz,,CIRCLE,AL,1/16/2003 0:30 +Portchester,,CYLINDER,NY,1/16/2003 1:34 +Dallas,,SPHERE,TX,1/16/2003 7:00 +El Paso,,CIGAR,TX,1/16/2003 7:26 +Tucker,,CHEVRON,GA,1/16/2003 7:30 +Hudson Falls,,DISK,NY,1/16/2003 9:40 +Boylston,,DIAMOND,MA,1/16/2003 12:00 +Simi Valley,,CYLINDER,CA,1/16/2003 14:00 +Phoenixville,,CIRCLE,PA,1/16/2003 14:02 +Wildrose,,TRIANGLE,ND,1/16/2003 16:30 +Sturgeon Bay,,LIGHT,WI,1/16/2003 18:30 +Mountain View,,LIGHT,AR,1/16/2003 21:00 +Escondido,,CONE,CA,1/16/2003 22:00 +Martinez,,CIRCLE,CA,1/16/2003 23:35 +Jacksonville,,CIRCLE,AR,1/17/2003 0:00 +North Charleston,RED GREEN,,SC,1/17/2003 0:00 +Isle of Palms,ORANGE,LIGHT,SC,1/17/2003 0:30 +Colorado Springs,,LIGHT,CO,1/17/2003 4:55 +Colorado Springs,,CIRCLE,CO,1/17/2003 5:10 +Burbank,,,CA,1/17/2003 6:12 +Coralville,BLUE,OVAL,IA,1/17/2003 9:00 +Frackville,,CIRCLE,PA,1/17/2003 12:00 +Pineville,,SPHERE,LA,1/17/2003 17:30 +Stevens Point,,OVAL,WI,1/17/2003 18:00 +LaSalle,,CHEVRON,IL,1/17/2003 18:48 +Miami,,TRIANGLE,FL,1/17/2003 20:00 +Mukilteo,,LIGHT,WA,1/17/2003 20:00 +Albany,RED,LIGHT,OR,1/17/2003 20:20 +Cypress,RED,CIRCLE,TX,1/17/2003 21:30 +Los Angeles,GREEN,LIGHT,CA,1/17/2003 21:50 +Calistoga,,TRIANGLE,CA,1/17/2003 22:30 +Panorama City,RED,CIRCLE,CA,1/17/2003 22:35 +Burbank,,LIGHT,CA,1/17/2003 23:00 +Tucson,,,AZ,1/17/2003 23:05 +National City,,,CA,1/17/2003 23:35 +Temecula,,,CA,1/17/2003 23:59 +no data,,VARIOUS,AL,1/18/2003 2:30 +Mokena,,LIGHT,IL,1/18/2003 4:45 +Danville,,OVAL,PA,1/18/2003 9:08 +La Jolla,,,CA,1/18/2003 17:50 +Burbank,ORANGE,LIGHT,CA,1/18/2003 18:20 +Yucca Valley,,DIAMOND,CA,1/18/2003 19:30 +Sequoia National Park,,,CA,1/18/2003 21:30 +Stryker,,RECTANGLE,OH,1/18/2003 23:00 +Conway,,LIGHT,AR,1/19/2003 1:00 +Cedaredge,,LIGHT,CO,1/19/2003 22:30 +Oveido,,TRIANGLE,FL,1/20/2003 7:00 +Glen Mills,,TEARDROP,PA,1/20/2003 7:15 +Fort Hood,,LIGHT,TX,1/20/2003 10:30 +Lynnwood,,TRIANGLE,WA,1/20/2003 18:20 +Shasta Lake,,LIGHT,CA,1/20/2003 20:00 +Huntsville,,DISK,AL,1/21/2003 3:00 +Everett,,CIRCLE,WA,1/21/2003 3:20 +Sandwich,,OVAL,MA,1/21/2003 10:15 +Newark,,FIREBALL,NJ,1/21/2003 17:30 +Dillsburg,,FORMATION,PA,1/21/2003 19:45 +Spanaway,RED GREEN,DIAMOND,WA,1/21/2003 20:48 +Bethesda,,FORMATION,MD,1/21/2003 22:55 +Union Beach,,CIRCLE,NJ,1/22/2003 0:00 +Costa Mesa,,,CA,1/22/2003 14:00 +Salem,,CYLINDER,OR,1/22/2003 17:05 +Salisbury,ORANGE,LIGHT,MD,1/22/2003 19:15 +Derry,,DISK,NH,1/22/2003 20:00 +Labelle,,TRIANGLE,TX,1/22/2003 20:30 +Crawfordsville,,,IN,1/22/2003 21:16 +Maricopa,,LIGHT,AZ,1/22/2003 21:30 +Oxnard,RED,CIRCLE,CA,1/22/2003 22:00 +Prospect,,,CT,1/22/2003 22:30 +Prescott,,,WI,1/23/2003 2:54 +Alma Center,,CHEVRON,WI,1/23/2003 6:20 +Kelso,,,WA,1/23/2003 10:11 +Burbank,,LIGHT,CA,1/23/2003 10:53 +Gilbert,ORANGE,LIGHT,AZ,1/23/2003 20:00 +Napa,,VARIOUS,CA,1/23/2003 23:15 +Modesto,RED,OTHER,CA,1/24/2003 1:30 +Anchorage,,CIRCLE,AK,1/24/2003 8:30 +Prescot,,CIRCLE,AZ,1/24/2003 10:00 +New York City,,,NY,1/24/2003 12:00 +Windham,,,NH,1/24/2003 18:00 +Fort Smith,,CIRCLE,AR,1/24/2003 18:15 +Natchitoches,,LIGHT,LA,1/24/2003 18:51 +San Rafael,,TRIANGLE,CA,1/24/2003 23:35 +In-orbit,,FORMATION,GA,1/25/2003 7:00 +Lancaster,,CYLINDER,PA,1/25/2003 17:05 +Van Nuys,,EGG,CA,1/25/2003 17:45 +Corning,,LIGHT,CA,1/25/2003 18:00 +Sutherlin,,VARIOUS,OR,1/25/2003 19:00 +Burbank,RED,LIGHT,CA,1/25/2003 19:20 +Fruita,,,CO,1/25/2003 19:30 +Sherman Oaks,,VARIOUS,CA,1/26/2003 13:36 +Van Nuys,,DISK,CA,1/26/2003 14:40 +Chickasaw,,OTHER,AL,1/26/2003 19:00 +Mabank,,TRIANGLE,TX,1/26/2003 20:00 +Monroe,,TRIANGLE,MI,1/27/2003 3:00 +Doylestown,,VARIOUS,PA,1/27/2003 4:15 +Fernley @ Intersate 80 West,RED,FIREBALL,NV,1/27/2003 19:00 +Gresham,,FLASH,OR,1/27/2003 19:00 +Bend,RED GREEN BLUE,DISK,OR,1/28/2003 2:00 +Owings Mills,,FORMATION,MD,1/28/2003 5:30 +Jacksonville,,CIRCLE,FL,1/28/2003 10:10 +Puyallup,,,WA,1/28/2003 12:45 +National City,,,CA,1/28/2003 17:00 +Apex,,LIGHT,NC,1/28/2003 17:10 +Satellite Beach,,RECTANGLE,FL,1/28/2003 22:36 +Beaverton,,SPHERE,OR,1/28/2003 23:07 +Morehead City,,CIRCLE,NC,1/29/2003 1:00 +North Las Vegas,RED,FIREBALL,NV,1/29/2003 18:03 +Azusa,,TRIANGLE,CA,1/29/2003 18:30 +Irvine,,CHEVRON,CA,1/29/2003 18:45 +Sand Lake,,CHEVRON,MI,1/29/2003 20:30 +Riverside,ORANGE,DISK,CA,1/29/2003 22:00 +Stockbridge,,OVAL,GA,1/29/2003 22:02 +Los Angeles,RED ORANGE,EGG,CA,1/29/2003 22:30 +Houghton,YELLOW,DIAMOND,MI,1/29/2003 22:36 +Oklahoma City,,LIGHT,OK,1/29/2003 22:45 +Gorham,,,ME,1/30/2003 5:30 +Hot Springs,,CIRCLE,AR,1/30/2003 17:30 +Spanish Fork,,FORMATION,UT,1/30/2003 19:05 +Beachwood,,CHEVRON,OH,1/30/2003 19:15 +Apopka,,SPHERE,FL,1/30/2003 21:25 +Columbus,,TEARDROP,OH,1/30/2003 23:00 +Pinellas Park,,SPHERE,FL,1/31/2003 5:45 +Summit Point,,OTHER,WV,1/31/2003 5:45 +Deltona,RED ORANGE,CIRCLE,FL,1/31/2003 6:30 +Littleton,,FORMATION,CO,1/31/2003 10:30 +Albany,,SPHERE,NY,1/31/2003 19:00 +Tustin,,CIRCLE,CA,1/31/2003 19:00 +Columbus,,OTHER,OH,1/31/2003 19:30 +Farmington,GREEN,SPHERE,CT,1/31/2003 23:00 +Orchid Island,,SPHERE,FL,1/31/2003 23:30 +Burbank,,FIREBALL,CA,2/1/2003 0:35 +Marfa,,CIRCLE,TX,2/1/2003 2:00 +Monument,,LIGHT,CO,2/1/2003 2:00 +Eldridge,,FIREBALL,CA,2/1/2003 5:45 +San Francisco,,,CA,2/1/2003 6:00 +Atkins,GREEN,,TX,2/1/2003 8:00 +Dallas,,,TX,2/1/2003 8:00 +Dallas,,FORMATION,TX,2/1/2003 8:00 +Dallas,,SPHERE,TX,2/1/2003 8:00 +Delaware,,SPHERE,OH,2/1/2003 9:00 +Knoxville,,,IA,2/1/2003 9:00 +Crown Point,,OVAL,IN,2/1/2003 9:25 +N.,,OTHER,TX,2/1/2003 11:00 +Santa Maria,,SPHERE,CA,2/1/2003 20:50 +Mountain View,,VARIOUS,CA,2/1/2003 22:30 +Spokane,BLUE,DISK,WA,2/1/2003 22:58 +Spokane,,DISK,WA,2/1/2003 23:15 +Sacramento,,LIGHT,CA,2/2/2003 2:15 +Miami,BLUE,DISK,FL,2/2/2003 19:00 +Auburn,,EGG,AL,2/2/2003 20:08 +Orlando,BLUE,OVAL,FL,2/2/2003 22:20 +Minneapolis,,LIGHT,MN,2/3/2003 2:00 +Miami,,DISK,FL,2/3/2003 18:45 +Miami,BLUE,DISK,FL,2/3/2003 19:47 +Plymouth Meeting,,EGG,PA,2/3/2003 20:00 +Fortuna,,,CA,2/3/2003 21:00 +Woodstock,,OTHER,GA,2/4/2003 6:49 +Walnut Creek,,OTHER,CA,2/4/2003 9:00 +Olympia,,LIGHT,WA,2/4/2003 17:15 +Billings,,VARIOUS,MT,2/4/2003 18:20 +Big Bear,,CIGAR,CA,2/4/2003 22:30 +Littleton,,CROSS,CO,2/4/2003 22:37 +Livermore,,CIRCLE,CA,2/4/2003 23:00 +Nipomo,,LIGHT,CA,2/4/2003 23:25 +Concord,,VARIOUS,NC,2/5/2003 5:30 +Burlington,GREEN,TRIANGLE,CT,2/5/2003 6:45 +San Francisco,,OVAL,CA,2/5/2003 12:45 +Clackamas,,,OR,2/5/2003 17:55 +Los Banos,,CIRCLE,CA,2/5/2003 18:40 +Spring Valley,,LIGHT,CA,2/5/2003 19:00 +Tucson,,LIGHT,AZ,2/5/2003 19:40 +East Haven,,,CT,2/5/2003 20:40 +Arkport,,VARIOUS,NY,2/6/2003 6:10 +Portland,,SPHERE,OR,2/6/2003 13:30 +Miami,,TEARDROP,FL,2/6/2003 19:51 +Burbank,ORANGE,LIGHT,CA,2/6/2003 20:09 +Washington Court House,,LIGHT,OH,2/6/2003 21:00 +Burna,,FIREBALL,KY,2/7/2003 3:00 +Sacramento,,LIGHT,CA,2/7/2003 5:30 +San Diego,,SPHERE,CA,2/7/2003 10:25 +Renton,,OVAL,WA,2/7/2003 18:10 +Palmetto,,,GA,2/7/2003 19:45 +Garrett,,LIGHT,IN,2/7/2003 20:20 +Turlock,ORANGE,CIRCLE,CA,2/7/2003 20:45 +Hanson,,FIREBALL,KY,2/7/2003 23:00 +Highland,,TRIANGLE,IL,2/8/2003 2:03 +Beloit,,DISK,WI,2/8/2003 5:30 +San Diego,,DISK,CA,2/8/2003 6:35 +Sandpoint,,,ID,2/8/2003 19:50 +Burbank,,FIREBALL,CA,2/8/2003 21:00 +Chatham,,TRIANGLE,NJ,2/8/2003 21:15 +Sherman Oaks,,LIGHT,CA,2/9/2003 1:45 +Windham,,OTHER,NH,2/9/2003 5:30 +San Antonio,,LIGHT,TX,2/9/2003 6:15 +Gilbert,,SPHERE,AZ,2/9/2003 10:45 +Lake Forest,,CIRCLE,CA,2/9/2003 13:30 +Santa Clarita,,SPHERE,CA,2/9/2003 15:00 +Waterford,,TRIANGLE,MI,2/9/2003 19:30 +Stamford,,CIRCLE,CT,2/9/2003 19:54 +La Grande,GREEN,FIREBALL,OR,2/9/2003 20:55 +Grangeville,,LIGHT,ID,2/9/2003 23:00 +Brinnon,,,WA,2/10/2003 4:00 +Grangeville,,LIGHT,ID,2/10/2003 6:15 +Madras,,SPHERE,OR,2/10/2003 10:00 +Mexico Beach,,CYLINDER,FL,2/10/2003 17:00 +Merrillville,,OTHER,IN,2/11/2003 0:13 +Seattle,,OTHER,WA,2/11/2003 1:20 +New York City,YELLOW,EGG,NY,2/11/2003 5:35 +Downers Grove,,OTHER,IL,2/11/2003 15:52 +Boston,,RECTANGLE,MA,2/11/2003 20:40 +Orlando,,FIREBALL,DE,2/11/2003 20:49 +Gresham,,TRIANGLE,OR,2/11/2003 21:40 +Fredericksburg,,FIREBALL,VA,2/11/2003 22:00 +Bishops Head,,CIRCLE,MD,2/11/2003 22:05 +Hamilton,BLUE,LIGHT,OH,2/12/2003 0:29 +Huron,,TRIANGLE,SD,2/12/2003 6:35 +McVeytown,,OTHER,PA,2/12/2003 10:30 +Seattle,ORANGE,CYLINDER,WA,2/12/2003 18:00 +Friend,,LIGHT,NE,2/12/2003 20:00 +,,LIGHT,NE,2/12/2003 21:30 +Apache Junction,,OVAL,AZ,2/12/2003 22:00 +Boulder,,FIREBALL,UT,2/12/2003 22:15 +North Charleston,,CHEVRON,SC,2/13/2003 0:15 +Seattle,BLUE,TRIANGLE,WA,2/13/2003 2:30 +Hillsboro,,OTHER,AL,2/13/2003 14:00 +Yakutat,,VARIOUS,AK,2/13/2003 14:00 +Columbia,,,SC,2/13/2003 19:30 +Kingston,,LIGHT,MI,2/13/2003 21:00 +South Paris,,SPHERE,ME,2/13/2003 22:00 +Smithtown,,LIGHT,NY,2/13/2003 23:59 +Sanford,,EGG,NC,2/14/2003 0:30 +Lakewood,,,WA,2/14/2003 7:00 +Burbank,ORANGE,LIGHT,CA,2/14/2003 20:48 +Baltimore,,CIGAR,MD,2/14/2003 21:00 +Brandon,,FIREBALL,FL,2/14/2003 21:30 +Miami,,OVAL,FL,2/14/2003 21:54 +Benicia,,FIREBALL,CA,2/15/2003 0:45 +Cannon Falls,BLUE,LIGHT,MN,2/15/2003 2:00 +Virginia Beach,GREEN,FLASH,VA,2/15/2003 4:00 +Lake City,,LIGHT,FL,2/15/2003 13:00 +Huntington,,CIGAR,WV,2/15/2003 14:00 +Fort Lauderdale,,OVAL,FL,2/15/2003 15:37 +Buffalo,YELLOW,OTHER,NY,2/15/2003 16:00 +Fort Stockton,,DISK,TX,2/15/2003 19:00 +Linwood,,LIGHT,PA,2/15/2003 19:00 +Safford,,SPHERE,AZ,2/15/2003 19:00 +Milwaukee,,DISK,WI,2/15/2003 19:10 +Buffalo,GREEN,FIREBALL,TX,2/15/2003 20:00 +Houston,,LIGHT,TX,2/15/2003 21:00 +Miami,,,FL,2/15/2003 21:30 +Brooklyn,,TRIANGLE,CT,2/16/2003 0:05 +Crestview,,CYLINDER,FL,2/16/2003 14:33 +Kenilworth,,OTHER,NJ,2/16/2003 15:10 +Bowie,,DISK,MD,2/16/2003 18:00 +Burbank,,FORMATION,CA,2/16/2003 20:00 +Orlando,,TRIANGLE,FL,2/16/2003 20:00 +Chico,,FIREBALL,CA,2/16/2003 20:15 +Chico,BLUE,FIREBALL,CA,2/16/2003 20:22 +Chico,YELLOW GREEN,FIREBALL,CA,2/16/2003 20:22 +Wingville,,,OR,2/16/2003 20:25 +Chico,,,CA,2/16/2003 20:27 +Richland,GREEN BLUE,FIREBALL,WA,2/16/2003 20:27 +Chico,BLUE,SPHERE,CA,2/16/2003 20:40 +Eaton Rapids,,CIRCLE,MI,2/16/2003 21:00 +Arco,,FIREBALL,ID,2/16/2003 21:30 +Quail Valley,,OTHER,CA,2/16/2003 21:30 +San Ramon,,OTHER,CA,2/16/2003 21:30 +Camano Island,,DIAMOND,WA,2/16/2003 22:30 +Seattle,,,WA,2/16/2003 23:00 +Price,,FIREBALL,UT,2/17/2003 2:00 +Roslindale,,OVAL,MA,2/17/2003 5:30 +Scottsburg,,SPHERE,IN,2/17/2003 11:00 +Mattoon,,LIGHT,IL,2/17/2003 18:30 +Burbank,,LIGHT,CA,2/17/2003 21:15 +Royal Palm Beach,,LIGHT,FL,2/17/2003 21:25 +Burbank,RED,FIREBALL,CA,2/17/2003 22:20 +San Diego,,,CA,2/17/2003 23:42 +Billings,,CROSS,MT,2/18/2003 18:20 +Sacramento,GREEN,,CA,2/18/2003 22:35 +Raleigh,,FIREBALL,NC,2/19/2003 17:49 +Kearney,,TRIANGLE,NE,2/19/2003 19:00 +Pamplico,,LIGHT,SC,2/19/2003 22:15 +Springfield,,,MO,2/19/2003 23:00 +Wheaton,,,IL,2/20/2003 4:30 +San Francisco,GREEN,CIRCLE,CA,2/20/2003 5:00 +Fullerton,,OVAL,CA,2/20/2003 9:13 +Glendale,,FIREBALL,AZ,2/20/2003 18:30 +San Diego,,FLASH,CA,2/20/2003 19:45 +Florence,,CIRCLE,KY,2/20/2003 20:30 +Dallas,RED BLUE,DISK,GA,2/20/2003 21:09 +Hauppauge,,LIGHT,NY,2/20/2003 21:32 +Tooele,GREEN,FIREBALL,UT,2/20/2003 21:50 +Phoenix,GREEN,,AZ,2/20/2003 22:00 +Tulelake,,CIRCLE,CA,2/21/2003 1:00 +Valley Junction,,OTHER,OR,2/21/2003 22:30 +Winnemucca,,DISK,NV,2/22/2003 2:00 +Silver Spring,,VARIOUS,MD,2/22/2003 12:00 +Winnemucca,,DISK,NV,2/22/2003 14:00 +Pelion,,,SC,2/22/2003 18:00 +Camp Verde,,,AZ,2/22/2003 22:00 +Portland,,,OR,2/22/2003 23:15 +American Canyon,,CIRCLE,CA,2/22/2003 23:30 +Oakland,,,CA,2/23/2003 0:00 +Wisconsin Dells,,,WI,2/23/2003 0:10 +Dallas,,CIRCLE,GA,2/23/2003 2:00 +College Station,,CIRCLE,TX,2/23/2003 13:30 +Olympia,,VARIOUS,WA,2/23/2003 19:30 +Lynnwood,,FORMATION,WA,2/23/2003 20:20 +New York City,,CIRCLE,NY,2/23/2003 20:30 +Puyallup,RED,,WA,2/23/2003 22:00 +Sodus,,LIGHT,NY,2/23/2003 23:00 +Homestead,,LIGHT,FL,2/24/2003 1:38 +Westlake,,TRIANGLE,LA,2/24/2003 7:34 +Everett,,OTHER,WA,2/24/2003 11:30 +Olympic Mountains,,DISK,WA,2/24/2003 11:30 +San Francisco,,FIREBALL,CA,2/24/2003 14:58 +Homestead,,,FL,2/24/2003 19:00 +Rudolph,YELLOW,FLASH,WI,2/24/2003 19:00 +Twin Falls,BLUE,LIGHT,ID,2/24/2003 21:45 +Everett,,,WA,2/25/2003 12:40 +Shawano,,,WI,2/25/2003 19:25 +Bremerton,,CHEVRON,WA,2/25/2003 19:30 +Palm Springs,,LIGHT,CA,2/25/2003 19:48 +Antioch,,FIREBALL,CA,2/26/2003 3:43 +Weston,,LIGHT,CT,2/26/2003 21:15 +Bremerton,,CHEVRON,WA,2/26/2003 22:00 +Patoka,,,IN,2/27/2003 0:00 +Antioch,,FIREBALL,CA,2/27/2003 5:00 +Nashua,,OVAL,NH,2/27/2003 5:00 +Hudson,,CIRCLE,OH,2/27/2003 15:40 +Davie,,VARIOUS,FL,2/27/2003 19:00 +Anchorage,ORANGE,LIGHT,AK,2/27/2003 21:10 +Farmington,RED,,CT,2/28/2003 20:30 +Crystal River,,FLASH,FL,2/28/2003 21:00 +Moosup,BLUE,SPHERE,CT,3/1/2003 4:10 +Eugene,RED,CIGAR,OR,3/1/2003 13:30 +Perkins,,LIGHT,OK,3/1/2003 20:30 +Burley,,TRIANGLE,ID,3/1/2003 21:00 +Bellmore,,CIRCLE,NY,3/1/2003 22:00 +Bangor Submarine Base,,LIGHT,WA,3/1/2003 23:00 +Dallas,,TRIANGLE,TX,3/2/2003 0:18 +Albuquerque,,TRIANGLE,NM,3/3/2003 3:33 +Miami Beach,RED,,FL,3/3/2003 9:35 +Wenatchee,,CROSS,WA,3/3/2003 10:40 +Bethel,,EGG,CT,3/3/2003 11:00 +Glendale,,,CA,3/3/2003 19:10 +Cuyahoga Falls,,FORMATION,OH,3/3/2003 22:15 +Westlake,,TRIANGLE,LA,3/4/2003 7:34 +Clifton Park,,,NY,3/4/2003 21:30 +Rollingsford,,LIGHT,NH,3/5/2003 19:15 +Chino Valley,,,AZ,3/5/2003 21:10 +Virginia Beach,,TRIANGLE,VA,3/6/2003 2:00 +Oklahoma City,,DISK,OK,3/6/2003 19:32 +Natalia,,LIGHT,TX,3/6/2003 21:00 +Weston,,,CT,3/6/2003 21:05 +Columbus,,TRIANGLE,OH,3/7/2003 0:15 +Duquesne,,OTHER,PA,3/7/2003 0:20 +Warrensville,,TRIANGLE,PA,3/7/2003 1:00 +Alexandria,,LIGHT,VA,3/7/2003 5:00 +Superior,,LIGHT,WI,3/7/2003 18:00 +Palm City,GREEN,DIAMOND,FL,3/7/2003 19:30 +Morristown,GREEN,CIRCLE,TN,3/7/2003 21:40 +Ashland,RED,CIRCLE,MO,3/7/2003 22:00 +Grand Junction,,TRIANGLE,CO,3/8/2003 0:10 +St. Louis,,OTHER,MO,3/8/2003 13:00 +Englewood,,,CO,3/8/2003 15:00 +Daytona Beach,,DISK,FL,3/8/2003 16:24 +Arvada,,DISK,CO,3/8/2003 18:16 +Portsmouth,GREEN,FIREBALL,NH,3/8/2003 18:30 +Windham,,SPHERE,ME,3/8/2003 19:00 +Columbia,,OVAL,SC,3/8/2003 19:08 +New Martinsville,,DISK,WV,3/8/2003 20:00 +Greenbelt area,,CHEVRON,MD,3/8/2003 20:15 +Los Altos,,DISK,CA,3/10/2003 1:45 +Leupp,,CIRCLE,AZ,3/10/2003 2:00 +St. George,,CONE,UT,3/10/2003 2:00 +Cedarville,,TRIANGLE,OH,3/10/2003 17:00 +San Diego,,LIGHT,CA,3/10/2003 19:45 +Zaleski,,SPHERE,OH,3/10/2003 19:45 +Warner Springs,YELLOW,LIGHT,CA,3/10/2003 20:52 +Great Bend,,LIGHT,KS,3/10/2003 20:55 +Milton,,TRIANGLE,FL,3/10/2003 22:35 +Doddridge,,OTHER,AR,3/10/2003 23:00 +Plano,,LIGHT,TX,3/10/2003 23:30 +Utica,,SPHERE,NY,3/11/2003 13:00 +Frankfort,ORANGE,LIGHT,IN,3/11/2003 21:15 +Lindenhurst,,OVAL,IL,3/11/2003 21:30 +Haymarket,,TRIANGLE,VA,3/11/2003 22:00 +Oklahoma City,,DISK,OK,3/11/2003 22:50 +Hollywood,,,CA,3/11/2003 23:00 +Fresno,RED ORANGE,OTHER,CA,3/12/2003 1:33 +Easton,,,MD,3/12/2003 5:30 +York,,SPHERE,SC,3/12/2003 5:30 +Tulsa,,CYLINDER,OK,3/12/2003 14:00 +Madbury,ORANGE,LIGHT,NH,3/12/2003 21:00 +San Antonio,GREEN,,TX,3/12/2003 22:40 +The Plains,,TRIANGLE,VA,3/13/2003 21:00 +Panama City,,CHEVRON,FL,3/13/2003 23:00 +Manchster,,FIREBALL,CT,3/14/2003 0:30 +Kentfield,,,CA,3/14/2003 4:30 +Miami Beach,,OTHER,FL,3/14/2003 6:45 +Chelmsford,,CIGAR,MA,3/14/2003 18:10 +Great Falls,,,MT,3/14/2003 19:00 +Winfield,,TRIANGLE,IL,3/14/2003 20:00 +Lafayette,,LIGHT,IN,3/14/2003 20:20 +Phoenix,BLUE,,AZ,3/14/2003 20:20 +Lafayette,ORANGE YELLOW,LIGHT,IN,3/14/2003 20:30 +Buck Creek,,FORMATION,IN,3/14/2003 20:50 +Hollidaysburg,,OVAL,PA,3/14/2003 23:30 +Tuscola,,LIGHT,MI,3/14/2003 23:30 +Caney,,DISK,KS,3/15/2003 0:00 +Greenwich,,,NY,3/15/2003 1:00 +Holmdel,,FIREBALL,NJ,3/15/2003 1:00 +Stanton,ORANGE,FIREBALL,CA,3/15/2003 1:20 +Nashville,,CIRCLE,TN,3/15/2003 10:32 +Arvada,BLUE,EGG,CO,3/15/2003 11:30 +Piqua,,SPHERE,OH,3/15/2003 14:30 +Desert Center,,,CA,3/15/2003 19:00 +Smyrna,,LIGHT,TN,3/15/2003 20:30 +Sanford,RED ORANGE GREEN,RECTANGLE,MI,3/15/2003 20:50 +Barbourville,RED GREEN BLUE,LIGHT,KY,3/15/2003 23:15 +Front Royal,,LIGHT,VA,3/15/2003 23:30 +Litchfield,,RECTANGLE,CT,3/16/2003 2:00 +Jackson Hole,,CHEVRON,WY,3/16/2003 11:00 +Collegeville,,FORMATION,PA,3/16/2003 16:30 +Edmonds,,TRIANGLE,WA,3/16/2003 19:30 +Edmonds,,TRIANGLE,WA,3/16/2003 19:30 +Portsmouth,RED YELLOW,FIREBALL,RI,3/16/2003 21:00 +Monore,,OTHER,MI,3/17/2003 5:00 +Kailua-Kona,,,HI,3/17/2003 13:00 +Las Vegas,,LIGHT,NV,3/17/2003 20:30 +Orlando,RED,OVAL,FL,3/17/2003 22:50 +New York City,,OTHER,NY,3/19/2003 21:00 +Parma,,TRIANGLE,OH,3/19/2003 21:25 +Hampden,,DISK,MA,3/20/2003 6:45 +Montverde,,OVAL,FL,3/20/2003 22:30 +Highway I-70,,VARIOUS,MO,3/22/2003 0:00 +Silver Spring,,DISK,MD,3/22/2003 1:01 +El Dorado,,SPHERE,AR,3/22/2003 1:30 +Holyoke,,SPHERE,MA,3/22/2003 10:00 +Gainesville,,OVAL,FL,3/22/2003 22:00 +Minooka,,TRIANGLE,IL,3/23/2003 0:00 +Morton,,VARIOUS,WA,3/23/2003 3:50 +Morton,BLUE,VARIOUS,WA,3/23/2003 3:50 +Windsor,,VARIOUS,NY,3/23/2003 11:59 +Mt.Morris,RED,OVAL,NY,3/24/2003 16:00 +Tabor City,,LIGHT,NC,3/26/2003 1:00 +Carlsbad,,TRIANGLE,CA,3/26/2003 14:00 +San Jose,,,CA,3/26/2003 20:00 +Manistique,,TEARDROP,MI,3/27/2003 1:00 +Medina,,CIRCLE,WA,3/27/2003 16:00 +Winchester,,CONE,VA,3/27/2003 17:45 +Norton,,DISK,OH,3/27/2003 21:30 +St. Louis,,OTHER,MO,3/28/2003 10:00 +Seaside,,VARIOUS,FL,3/28/2003 23:15 +Capac,,,MI,3/28/2003 23:59 +Capac,,LIGHT,MI,3/28/2003 23:59 +Albuquerque,,LIGHT,NM,3/29/2003 5:35 +Sunrise,,LIGHT,FL,3/29/2003 20:30 +Iliamna,GREEN,CYLINDER,AK,3/29/2003 22:30 +North Royalton,,TRIANGLE,OH,3/29/2003 23:22 +Reno,,LIGHT,NV,3/29/2003 23:30 +Dallas,,DISK,TX,3/30/2003 15:45 +Stanwood,,TRIANGLE,WA,3/30/2003 20:30 +Burbank,,FIREBALL,CA,3/30/2003 21:00 +Tucson,,CIRCLE,AZ,3/31/2003 14:00 +Tucson,,CIRCLE,AZ,3/31/2003 14:00 +Holmdel,BLUE,FIREBALL,NJ,4/1/2003 1:00 +Holden,,RECTANGLE,MA,4/1/2003 2:00 +Jefferson,RED ORANGE,VARIOUS,MA,4/1/2003 2:00 +Wapakoneta,,LIGHT,OH,4/1/2003 5:10 +Asheboro,,CYLINDER,NC,4/1/2003 17:00 +South Windsor,,OVAL,CT,4/1/2003 18:00 +Phoenix,,TRIANGLE,AZ,4/1/2003 19:00 +Viola,,TRIANGLE,PA,4/1/2003 23:00 +Wapakoneta,,LIGHT,OH,4/2/2003 5:15 +Blairs,,DISK,VA,4/2/2003 7:53 +Carlisle,,TRIANGLE,PA,4/2/2003 21:45 +Portland,,TRIANGLE,MA,4/3/2003 0:46 +Dundalk,,OTHER,MD,4/3/2003 3:10 +Lake Jackson,,CIRCLE,TX,4/3/2003 22:30 +Jacksonville,,CIRCLE,FL,4/4/2003 6:00 +White Bear Lake,,DISK,MN,4/4/2003 14:00 +Aloha,,SPHERE,OR,4/4/2003 18:35 +Concord,,FIREBALL,CA,4/4/2003 21:30 +Concord,ORANGE,CIRCLE,CA,4/4/2003 22:00 +Coral Springs,,TRIANGLE,FL,4/4/2003 23:38 +Bedford,,,TX,4/5/2003 10:30 +Los Alamos,,CIGAR,CA,4/5/2003 12:00 +Los Alamos,,CIGAR,CA,4/5/2003 12:15 +Trevor,,,WI,4/5/2003 13:00 +In-flight,,CIGAR,TX,4/5/2003 15:15 +Eureka,,DISK,CA,4/5/2003 18:12 +Fresno,,CHEVRON,CA,4/5/2003 19:00 +Albuquerque,,CHEVRON,NM,4/5/2003 22:30 +Isle of Palms,,VARIOUS,SC,4/6/2003 3:05 +Phoenix,,SPHERE,AZ,4/6/2003 16:50 +Studio City,,CHEVRON,CA,4/6/2003 23:30 +Saint James,,FORMATION,MN,4/6/2003 23:59 +Anacortes,,RECTANGLE,WA,4/7/2003 1:07 +Willington,,LIGHT,CT,4/7/2003 8:30 +Franklin,,DISK,TN,4/7/2003 14:30 +Fort Klamath,,OVAL,OR,4/8/2003 1:00 +Dubuque,,LIGHT,IA,4/8/2003 1:30 +Dubuque,,LIGHT,IA,4/8/2003 1:36 +Tempe,,CYLINDER,AZ,4/8/2003 12:05 +Gold Bar,,CIGAR,WA,4/8/2003 21:50 +Felton,,CIRCLE,PA,4/9/2003 1:00 +Millville,,OVAL,MN,4/9/2003 3:30 +Santa Rosa,,OTHER,CA,4/9/2003 21:00 +Howe,,CIRCLE,IN,4/9/2003 22:00 +Baytown,,CIGAR,TX,4/10/2003 2:00 +Yaphank,,OTHER,NY,4/10/2003 12:10 +Santa Monica,,CIGAR,CA,4/10/2003 18:00 +Corona,,DISK,CA,4/10/2003 19:17 +Peru,,CIRCLE,IN,4/10/2003 21:00 +Milford,,LIGHT,MI,4/10/2003 22:30 +Pensacola,,CHEVRON,FL,4/10/2003 23:15 +Magna,,,UT,4/11/2003 1:55 +Charlotte,,EGG,NC,4/11/2003 15:00 +Hobe Sound,,TRIANGLE,FL,4/11/2003 19:00 +Corona,,CYLINDER,CA,4/11/2003 19:16 +Fresno,,FORMATION,CA,4/11/2003 20:10 +Apopka,RED,CIGAR,FL,4/11/2003 20:31 +Hazel,,VARIOUS,KY,4/11/2003 22:15 +Delaware,,CIRCLE,OH,4/12/2003 3:18 +Oak Park,,LIGHT,CA,4/12/2003 4:00 +Portageville,,DISK,MO,4/12/2003 13:45 +Muskegon,,CIRCLE,MI,4/12/2003 15:30 +Plantsville,,DISK,CT,4/12/2003 16:40 +Port St. Lucie,,SPHERE,FL,4/12/2003 19:17 +Pensacola,,LIGHT,FL,4/12/2003 20:30 +Pensacola,,LIGHT,FL,4/12/2003 20:30 +Monterey,BLUE,CIRCLE,CA,4/12/2003 22:05 +Eau Claire,,FORMATION,WI,4/12/2003 23:06 +San Diego,,,CA,4/13/2003 0:00 +Gresham,,VARIOUS,OR,4/13/2003 16:16 +Old Town,,VARIOUS,ME,4/13/2003 19:30 +Greenville,,,GA,4/13/2003 21:00 +Greenville,,OTHER,GA,4/13/2003 21:15 +Meriwether County,,CYLINDER,GA,4/13/2003 21:15 +Meriwether County,RED,OTHER,GA,4/13/2003 21:15 +Meriwether County,GREEN,OTHER,GA,4/13/2003 21:40 +New York City,,LIGHT,NY,4/13/2003 22:00 +Santa Maria,BLUE,TRIANGLE,CA,4/13/2003 23:30 +Cedar Rapids,,OVAL,IA,4/14/2003 16:00 +Cedar Rapids,,OVAL,IA,4/14/2003 16:00 +Hot Springs,,OVAL,AR,4/15/2003 0:00 +Reading,,DIAMOND,PA,4/15/2003 8:00 +Bristol,,DISK,NH,4/15/2003 17:10 +Miramar Beach,,FIREBALL,FL,4/15/2003 20:00 +Cement City,,TRIANGLE,MI,4/16/2003 0:00 +New York City,,DISK,NY,4/16/2003 11:00 +In-flight sighting,,SPHERE,NE,4/16/2003 15:30 +Clay City,,CIRCLE,KY,4/16/2003 20:30 +Plattsburgh,,CIRCLE,NY,4/16/2003 21:00 +Wikieup,ORANGE,OTHER,AZ,4/16/2003 21:00 +Limington,,LIGHT,ME,4/16/2003 23:00 +Naples,,FLASH,ME,4/16/2003 23:00 +Starkville,,LIGHT,MS,4/17/2003 4:00 +Jackson,,CYLINDER,OH,4/18/2003 5:45 +Lapeer,,OVAL,MI,4/18/2003 11:45 +Royal,,DISK,AR,4/18/2003 19:30 +Leavenworth,,TRIANGLE,WA,4/18/2003 22:30 +Seattle,,,WA,4/19/2003 0:00 +Anchorage,,LIGHT,AK,4/19/2003 0:30 +Lafayette,,SPHERE,KY,4/19/2003 16:00 +Fenton,RED,CIRCLE,MI,4/19/2003 22:30 +Chesterfield,,SPHERE,MO,4/20/2003 1:00 +Middletown,,TRIANGLE,DE,4/20/2003 1:00 +San Diego,,FIREBALL,CA,4/20/2003 1:00 +Gallup,RED,LIGHT,NM,4/20/2003 2:00 +Yorktown,,FORMATION,IN,4/20/2003 2:10 +Brandon,,,FL,4/20/2003 3:00 +Fort Worth,,,TX,4/20/2003 11:00 +Aurora,,RECTANGLE,CO,4/20/2003 13:45 +Issaquah,,CIRCLE,WA,4/20/2003 14:00 +Phoenix,,DISK,AZ,4/20/2003 15:00 +Cardiff-by-the-Sea,,TRIANGLE,CA,4/20/2003 21:07 +Riverside,,LIGHT,CA,4/20/2003 21:30 +"Chadron, NE",,LIGHT,NE,4/20/2003 22:30 +College Station,,CHEVRON,TX,4/20/2003 23:43 +Concord,,TEARDROP,NC,4/21/2003 20:00 +Phoenix,,OTHER,AZ,4/21/2003 21:45 +Phoenix,RED BLUE,FIREBALL,AZ,4/21/2003 22:56 +Golden Valley,GREEN,FIREBALL,MN,4/22/2003 1:00 +Bellingham,,LIGHT,WA,4/22/2003 18:00 +Gainesville,ORANGE,CIGAR,FL,4/22/2003 20:53 +Olympia,,DIAMOND,WA,4/22/2003 22:00 +Hemet,RED,,CA,4/23/2003 20:10 +Hazel,ORANGE,FIREBALL,KY,4/23/2003 21:42 +San Francisco,,DISK,CA,4/23/2003 22:20 +Montcalm County,,OTHER,MI,4/23/2003 23:00 +Sandpoint,BLUE,SPHERE,ID,4/23/2003 23:45 +Conyers,BLUE,FIREBALL,GA,4/24/2003 5:20 +Newark,,OTHER,CA,4/24/2003 21:04 +Plover,ORANGE,LIGHT,WI,4/24/2003 21:30 +Hammond,,,NY,4/24/2003 22:01 +Los Angeles,,FORMATION,CA,4/24/2003 22:30 +Kanab,,LIGHT,UT,4/25/2003 0:00 +Glendale,,FLASH,AZ,4/25/2003 1:04 +East Meadow,,DISK,NY,4/25/2003 20:10 +Hot Springs,,LIGHT,SD,4/25/2003 21:00 +El Dorado,,CIRCLE,AR,4/26/2003 7:00 +Littleton,,DISK,CO,4/26/2003 14:00 +Fallbrook,,CYLINDER,CA,4/26/2003 15:30 +Atlanta,,DISK,GA,4/26/2003 17:00 +Miramar Beach,ORANGE,SPHERE,FL,4/26/2003 20:35 +Costa Mesa,,LIGHT,CA,4/26/2003 21:30 +Arlington,,LIGHT,TX,4/26/2003 23:00 +Austin,,FIREBALL,TX,4/27/2003 4:30 +Olympia,,CIRCLE,WA,4/27/2003 14:15 +Mesa,,DIAMOND,AZ,4/27/2003 16:30 +Quebeck,ORANGE,OVAL,TN,4/27/2003 20:30 +San Diego,,FIREBALL,CA,4/27/2003 22:20 +Lynnwood,,TRIANGLE,WA,4/27/2003 22:30 +Williamsport,,TRIANGLE,PA,4/28/2003 1:00 +Los Chavez,,DISK,NM,4/28/2003 6:06 +Milpitas,,CIRCLE,CA,4/28/2003 7:25 +Wethersfield,,DIAMOND,CT,4/28/2003 20:00 +Calabasas,,,CA,4/28/2003 20:55 +Woodland Hills,,OTHER,CA,4/28/2003 21:50 +Toluca Lake,,CIRCLE,CA,4/28/2003 22:00 +Greenville,,FORMATION,SC,4/28/2003 22:10 +Everett,,TRIANGLE,WA,4/28/2003 22:25 +Des Plaines,,TRIANGLE,IL,4/28/2003 22:30 +Cheboygan,,,MI,4/28/2003 23:00 +Knoxville,,SPHERE,TN,4/29/2003 3:30 +Beaumont,,TRIANGLE,CA,4/30/2003 4:00 +Pottstown,,CYLINDER,PA,4/30/2003 13:20 +Southern Pines,,LIGHT,NC,4/30/2003 20:50 +Port Aransas,,OTHER,TX,4/30/2003 23:37 +Seattle,,TRIANGLE,WA,4/30/2003 23:41 +Wichita,,TRIANGLE,KS,5/1/2003 0:00 +Milwaukee,,FORMATION,WI,5/1/2003 2:00 +Woodbridge,,VARIOUS,NJ,5/1/2003 10:10 +Quartzsite,,SPHERE,AZ,5/1/2003 12:00 +Ashland,,VARIOUS,KY,5/1/2003 15:00 +Wethersfield,,CYLINDER,CT,5/1/2003 17:30 +Palm Springs,,CIRCLE,CA,5/1/2003 20:30 +Seattle,,OTHER,WA,5/1/2003 22:00 +Seattle,,TRIANGLE,WA,5/1/2003 22:00 +Buena Park,,SPHERE,CA,5/1/2003 22:42 +Wauconda,,LIGHT,WA,5/1/2003 22:45 +Arizona City,,EGG,AZ,5/1/2003 23:02 +Illinois,,,IL,5/2/2003 3:30 +Seattle,,CIRCLE,WA,5/2/2003 9:30 +St. Clair,,LIGHT,PA,5/3/2003 2:45 +North Richland Hills,,OVAL,TX,5/3/2003 3:30 +Markham,,CIGAR,IL,5/3/2003 6:15 +Friday Harbor,,OVAL,WA,5/3/2003 9:00 +Palm Springs,,SPHERE,CA,5/3/2003 16:00 +Palm Springs,,SPHERE,CA,5/3/2003 16:00 +Wooster,ORANGE,,OH,5/3/2003 17:00 +Madisonville,,LIGHT,KY,5/3/2003 21:15 +Jim Thorpe,,SPHERE,PA,5/3/2003 21:40 +Kayenta,,LIGHT,AZ,5/3/2003 22:30 +Marietta,,LIGHT,OH,5/3/2003 23:20 +San Saba,,FORMATION,TX,5/4/2003 13:00 +Framingham,,LIGHT,MA,5/4/2003 14:00 +Heber Springs,,LIGHT,AR,5/4/2003 21:00 +Holland,,,PA,5/4/2003 22:15 +Pompano Beach,,TEARDROP,FL,5/5/2003 1:00 +Geneva,,SPHERE,OH,5/5/2003 5:00 +Marion,,,IN,5/5/2003 21:00 +Jacksonville,,FORMATION,FL,5/5/2003 21:22 +Yakima,,SPHERE,WA,5/6/2003 0:15 +Chesapeake,,CIGAR,VA,5/6/2003 12:45 +Placerville,ORANGE,DIAMOND,CA,5/6/2003 21:30 +Ventura,,CIRCLE,CA,5/6/2003 21:49 +Kent,,FLASH,WA,5/6/2003 23:00 +Mantua,,OTHER,OH,5/6/2003 23:00 +Mason,,OTHER,OH,5/6/2003 23:00 +Jonesboro,RED,DIAMOND,AR,5/7/2003 2:00 +Oglala,,CIRCLE,SD,5/7/2003 12:37 +Ada,,RECTANGLE,OK,5/7/2003 21:05 +Boca Raton,,TRIANGLE,FL,5/7/2003 21:30 +Northridge,GREEN,CIGAR,CA,5/7/2003 22:30 +Clinton,,CIRCLE,MO,5/8/2003 0:45 +Clinton,,,MO,5/8/2003 8:20 +New Orleans,,SPHERE,LA,5/8/2003 18:15 +West Springfield,BLUE,OTHER,MA,5/9/2003 0:00 +San Francisco,,TRIANGLE,CA,5/9/2003 13:30 +Columbus,,DISK,OH,5/9/2003 22:30 +Plymouth,,DISK,WI,5/10/2003 17:00 +Cleveland,,DISK,OH,5/10/2003 21:35 +Welcome,,EGG,NC,5/10/2003 22:00 +Pinole,RED,CIRCLE,CA,5/10/2003 22:10 +Everett,,LIGHT,WA,5/10/2003 23:30 +Sheffield,,CIRCLE,IL,5/11/2003 0:00 +Longwood,GREEN,LIGHT,FL,5/11/2003 2:45 +Goleta,,,CA,5/11/2003 9:20 +Laguna Niguel,,DISK,CA,5/11/2003 9:30 +Eureka Springs,,CYLINDER,AR,5/11/2003 18:30 +Louisville,,OTHER,KY,5/11/2003 20:55 +Wilmette,,CIRCLE,IL,5/11/2003 23:10 +Manassas,,VARIOUS,VA,5/12/2003 3:30 +Dunn,,,NC,5/12/2003 10:30 +Daytona,,LIGHT,FL,5/12/2003 20:05 +Panorama City,RED,CYLINDER,CA,5/12/2003 22:30 +Tampa Bay,,DISK,FL,5/13/2003 10:15 +Anaheim,,CYLINDER,CA,5/13/2003 12:00 +Gainesville,ORANGE,OTHER,GA,5/13/2003 21:30 +Round Rock,,,TX,5/13/2003 21:45 +Chesterfield,,FORMATION,MI,5/13/2003 22:00 +Grove,,,OH,5/13/2003 22:00 +Columbia,,,TN,5/13/2003 23:30 +St. Louisville,,OVAL,OH,5/14/2003 0:00 +Horatio,,TEARDROP,AR,5/14/2003 2:00 +Memphis,RED,FORMATION,TN,5/14/2003 2:00 +El Paso,,CIGAR,TX,5/14/2003 4:30 +Burlington,RED,TRIANGLE,WV,5/15/2003 0:30 +Longview,,LIGHT,TX,5/15/2003 1:30 +Franconia Notch,,DIAMOND,NH,5/15/2003 2:00 +Stanwood,,CIRCLE,WA,5/15/2003 8:30 +Cape Coral,,SPHERE,FL,5/15/2003 15:00 +Sacaton,,TEARDROP,AZ,5/15/2003 17:35 +Highway 64,,FLASH,AZ,5/15/2003 19:00 +Jersey City,,OVAL,NJ,5/15/2003 19:00 +Okeene,RED,LIGHT,OK,5/15/2003 19:00 +Council Bluffs,ORANGE,VARIOUS,IA,5/15/2003 21:00 +Santa Monica,,CHEVRON,CA,5/15/2003 21:00 +Ventura,,TRIANGLE,CA,5/15/2003 21:20 +Ventura,,TRIANGLE,CA,5/15/2003 21:30 +Manitowoc,,OTHER,WI,5/15/2003 22:00 +Orange Park,,TEARDROP,FL,5/15/2003 23:16 +Fort Walton Beach,,OVAL,FL,5/15/2003 23:30 +Goleta,,,CA,5/15/2003 23:30 +Yosemite,,TRIANGLE,CA,5/16/2003 1:30 +Belton,,,TX,5/16/2003 7:45 +Frankfort,,LIGHT,IN,5/16/2003 20:30 +Brookston,YELLOW,LIGHT,IN,5/16/2003 21:00 +Rancho Santa Margarita,,DISK,CA,5/16/2003 23:00 +Round Rock,,OTHER,TX,5/16/2003 23:42 +Burnsville,,CIGAR,MN,5/17/2003 12:32 +Atco,,OVAL,NJ,5/17/2003 20:00 +New Ipswich,,DISK,NH,5/17/2003 21:55 +Round Rock,,,TX,5/17/2003 23:00 +Andover,,LIGHT,MN,5/17/2003 23:10 +Houston,,OTHER,TX,5/17/2003 23:10 +Woburn,,RECTANGLE,MA,5/18/2003 12:00 +Los Angeles,,TEARDROP,CA,5/18/2003 16:30 +Phoenix,,DISK,AZ,5/18/2003 21:30 +Elsmere,,LIGHT,DE,5/18/2003 23:10 +Las Vegas,,,NV,5/18/2003 23:15 +Fresno,,TRIANGLE,CA,5/19/2003 0:10 +Westwego,GREEN BLUE,TEARDROP,LA,5/19/2003 5:30 +Albany,,CHEVRON,CA,5/19/2003 21:30 +Surprise,,CIRCLE,AZ,5/19/2003 23:45 +Salt Lake City,RED,VARIOUS,UT,5/20/2003 0:15 +High Point,,TRIANGLE,NC,5/20/2003 1:30 +Tucson,,OVAL,AZ,5/20/2003 2:35 +New York City,,TRIANGLE,NY,5/20/2003 4:43 +Paducah,,CIGAR,KY,5/20/2003 19:00 +Orland,,LIGHT,CA,5/21/2003 4:35 +Tempe,,CYLINDER,AZ,5/21/2003 5:30 +Winter Springs,,RECTANGLE,FL,5/21/2003 8:35 +Alburquerque,BLUE,TRIANGLE,NM,5/21/2003 12:00 +Flatrock,,LIGHT,MI,5/21/2003 17:30 +Rifle,,CIRCLE,CO,5/21/2003 21:30 +San Lorenzo,,,CA,5/21/2003 21:30 +San Lorenzo,,LIGHT,CA,5/21/2003 22:00 +Winchester,,LIGHT,WI,5/21/2003 22:45 +Wichita,,SPHERE,KS,5/22/2003 1:24 +Wayne,,CIGAR,NJ,5/22/2003 2:00 +Lebanon,,CYLINDER,IL,5/22/2003 18:45 +Grangeville,,DISK,ID,5/22/2003 21:00 +Wichita,,OTHER,KS,5/22/2003 22:35 +Ephrata,RED,TRIANGLE,WA,5/22/2003 22:45 +Louisiana,,,LA,5/22/2003 23:50 +Franklin,,VARIOUS,NE,5/23/2003 1:00 +South Gate,ORANGE,FIREBALL,CA,5/23/2003 2:30 +Webster City,,TRIANGLE,IA,5/23/2003 21:30 +Webster City,ORANGE,TRIANGLE,IA,5/23/2003 21:30 +Hayward,,LIGHT,CA,5/23/2003 22:00 +San Diego,,DISK,CA,5/23/2003 23:00 +Havre,,FORMATION,MT,5/23/2003 23:35 +Vernal,,FLASH,UT,5/24/2003 1:30 +Littleton,,OTHER,CO,5/24/2003 19:45 +Parksley,,CIGAR,VA,5/24/2003 21:40 +Jackson,,LIGHT,TN,5/24/2003 23:00 +Rural,,LIGHT,OR,5/25/2003 1:45 +Lake Omak,,,WA,5/25/2003 13:00 +Clearfork,ORANGE,CIRCLE,WV,5/25/2003 21:45 +Kernville,,LIGHT,CA,5/25/2003 23:10 +Payson,,SPHERE,AZ,5/25/2003 23:20 +Foothill Ranch,BLUE,OVAL,CA,5/26/2003 1:15 +San Jose,,VARIOUS,CA,5/26/2003 15:00 +Fort Worth,,DISK,TX,5/26/2003 16:45 +San Antonio,,TRIANGLE,TX,5/26/2003 20:30 +Fort Myers,,CIGAR,FL,5/26/2003 23:30 +Joplin,RED,,MO,5/27/2003 1:20 +Fremont,,EGG,CA,5/27/2003 7:30 +Fallbrook,,DISK,CA,5/27/2003 14:14 +Phoenix,,CIGAR,AZ,5/27/2003 22:10 +Everett,,TRIANGLE,WA,5/27/2003 22:30 +Racine,RED YELLOW,CIRCLE,WI,5/27/2003 22:30 +Douglasville,,CYLINDER,GA,5/28/2003 17:43 +Kansas,,FORMATION,OK,5/28/2003 22:20 +Boise,,TRIANGLE,ID,5/28/2003 23:00 +Watertown,,CROSS,MA,5/29/2003 4:45 +New York City,,SPHERE,NY,5/29/2003 8:36 +Lee's Summit,,CIGAR,MO,5/29/2003 16:35 +San Antonio,,LIGHT,TX,5/29/2003 21:06 +New Ellenton,,VARIOUS,SC,5/29/2003 21:45 +Round Rock,,LIGHT,TX,5/29/2003 22:00 +Fort Collins,,LIGHT,CO,5/29/2003 23:30 +Chanhassen,,LIGHT,MN,5/30/2003 1:14 +Escondido,,FORMATION,CA,5/30/2003 18:30 +Fremont,,DISK,CA,5/30/2003 19:30 +Glenwood,,LIGHT,IA,5/30/2003 22:00 +Des Moines,,SPHERE,IA,5/30/2003 23:33 +Pichacho Peak,,FORMATION,AZ,5/31/2003 1:00 +West Valley,,LIGHT,UT,5/31/2003 4:26 +Ashland,,VARIOUS,OR,5/31/2003 13:00 +Phoenix,,CIGAR,AZ,5/31/2003 13:00 +Myrtle Beach,,CIRCLE,SC,5/31/2003 14:00 +Bellevue,,LIGHT,OH,5/31/2003 23:00 +Klamath,,LIGHT,CA,6/1/2003 3:00 +Willow Brook,YELLOW,OTHER,IL,6/1/2003 4:00 +Simi Valley,,DISK,CA,6/1/2003 13:00 +Nashville,,RECTANGLE,TN,6/1/2003 15:00 +Westport,,TRIANGLE,CT,6/1/2003 19:30 +Ardmore,,OVAL,AL,6/1/2003 22:00 +Egg Town,,TRIANGLE,NC,6/1/2003 22:00 +Georgia,,,GA,6/1/2003 22:00 +Pembroke,,FIREBALL,GA,6/1/2003 22:00 +Bayside,,OVAL,NY,6/1/2003 22:30 +Cullman,,OVAL,AL,6/1/2003 22:30 +Cullman,,OVAL,AL,6/1/2003 22:30 +Cullman,,OVAL,AL,6/1/2003 22:30 +Arlington,,CIGAR,VA,6/1/2003 22:34 +Jasper,RED YELLOW,OVAL,AL,6/1/2003 23:15 +Naples,,,FL,6/1/2003 23:30 +Allison Park,,SPHERE,PA,6/2/2003 1:30 +West Chester,,OVAL,OH,6/2/2003 3:00 +West Chester,BLUE,OVAL,OH,6/2/2003 3:00 +Miami,,DISK,FL,6/2/2003 4:10 +Charlston,,LIGHT,NC,6/3/2003 21:00 +Retrop,,DISK,OK,6/3/2003 22:35 +Okanogan,,CIRCLE,WA,6/3/2003 23:00 +Grand Junction,,LIGHT,CO,6/3/2003 23:34 +Evelyn,,,LA,6/4/2003 2:30 +Magna,,,UT,6/4/2003 2:30 +Tampa,,OTHER,FL,6/4/2003 8:35 +Yuma,YELLOW,LIGHT,AZ,6/4/2003 20:15 +Lancaster,,CIRCLE,PA,6/4/2003 21:30 +Aloha,,FIREBALL,OR,6/4/2003 21:55 +Huntsville,,DISK,AL,6/4/2003 22:53 +Albany,,SPHERE,IN,6/4/2003 23:00 +Phoenix,,LIGHT,AZ,6/4/2003 23:00 +Dandridge,,OVAL,TN,6/5/2003 0:15 +New York City,,CIGAR,NY,6/5/2003 13:55 +Ardmore,,EGG,TN,6/5/2003 21:00 +Henderson,BLUE,OTHER,NV,6/5/2003 22:00 +Kendallville,RED,LIGHT,IN,6/5/2003 22:30 +Clearfield,,TRIANGLE,UT,6/5/2003 23:00 +Jacksonville Beach,,SPHERE,FL,6/6/2003 4:14 +Monroe,,CIRCLE,WA,6/6/2003 9:30 +Alexandria,,SPHERE,VA,6/6/2003 16:38 +Dallas,,CIRCLE,TX,6/6/2003 20:40 +Jamesport,,LIGHT,NY,6/6/2003 21:00 +Sunbury,RED YELLOW,LIGHT,OH,6/6/2003 22:45 +Madison,,CIRCLE,WI,6/6/2003 23:30 +Medina,,OVAL,OH,6/6/2003 23:30 +Roanoke Rapids,,FIREBALL,NC,6/6/2003 23:40 +Universal City,,TRIANGLE,CA,6/7/2003 1:00 +Lake Oswego,,OVAL,OR,6/7/2003 2:00 +Truckee,,EGG,CA,6/7/2003 16:00 +Oakland,,CYLINDER,CA,6/7/2003 19:53 +Culleoka,,,TN,6/7/2003 22:15 +Clinton,,DISK,NJ,6/8/2003 0:15 +High Bridge,,DISK,NJ,6/8/2003 0:19 +Woodinville,,,WA,6/8/2003 1:00 +Linn Creek,,DISK,MO,6/8/2003 13:17 +Denver,BLUE,DIAMOND,CO,6/8/2003 14:35 +Ventura,,OTHER,CA,6/8/2003 17:00 +La Vergne,,DISK,TN,6/8/2003 19:00 +Everett,,DIAMOND,WA,6/8/2003 20:00 +Manchester,GREEN,LIGHT,NH,6/8/2003 21:40 +Oakley,,LIGHT,CA,6/8/2003 22:00 +Van Buren,,LIGHT,AR,6/8/2003 22:00 +Kansas City,,TRIANGLE,MO,6/8/2003 23:00 +Ogallala,,FORMATION,NE,6/9/2003 3:00 +Burney,,CIRCLE,CA,6/9/2003 3:50 +Bartlesville,,LIGHT,OK,6/9/2003 4:00 +Cape Coral,,FORMATION,FL,6/9/2003 4:35 +Lee's Summit,,SPHERE,MO,6/9/2003 11:35 +Lenexa,,SPHERE,KS,6/9/2003 12:35 +Santa Rosa area,,SPHERE,CA,6/9/2003 18:15 +Avondale,,SPHERE,AZ,6/9/2003 19:30 +Hixson,,TRIANGLE,TN,6/9/2003 22:00 +San Antonio,,LIGHT,TX,6/9/2003 22:06 +Puyallup,RED,FIREBALL,WA,6/9/2003 22:32 +Phoenix,,LIGHT,AZ,6/9/2003 22:47 +Signal Mtn,,FORMATION,TN,6/10/2003 3:15 +Chicago,,CIRCLE,IL,6/10/2003 15:00 +Blue Ridge,BLUE,TRIANGLE,GA,6/10/2003 17:30 +Springfield,,SPHERE,IL,6/10/2003 22:30 +Trenton,,LIGHT,NJ,6/10/2003 23:20 +Lakewood,,RECTANGLE,CA,6/11/2003 0:15 +Moss Beach,,DISK,CA,6/11/2003 23:59 +Oak Brook,,TRIANGLE,IL,6/12/2003 16:50 +Kenna,,EGG,WV,6/12/2003 16:53 +Camarillo,,TRIANGLE,CA,6/12/2003 17:30 +Albuquerque,GREEN,,NM,6/12/2003 21:00 +Rancho Cucamonga,ORANGE,RECTANGLE,CA,6/12/2003 21:30 +Louisa,ORANGE,CIRCLE,KY,6/12/2003 22:10 +South Park,,,PA,6/12/2003 23:15 +Elgin,,FORMATION,SC,6/13/2003 0:00 +Birmingham,,DISK,AL,6/13/2003 0:18 +Ludlow,,CHEVRON,CA,6/13/2003 3:07 +Oxnard,,LIGHT,CA,6/13/2003 8:00 +Sugar Land,RED,OTHER,TX,6/13/2003 10:00 +Barstow,RED BLUE,RECTANGLE,CA,6/13/2003 22:00 +Barstow,RED BLUE,RECTANGLE,CA,6/13/2003 22:00 +High Point,,SPHERE,NC,6/13/2003 22:00 +Springfield,,SPHERE,TN,6/13/2003 23:00 +Largo,,OTHER,FL,6/13/2003 23:15 +Daytona Beach,ORANGE,,FL,6/13/2003 23:30 +Knobel,,,AR,6/14/2003 0:00 +Bennington,,TRIANGLE,VT,6/14/2003 6:30 +Wilmington,,LIGHT,NC,6/14/2003 21:00 +Key Largo,,SPHERE,FL,6/14/2003 22:00 +Creswell,,OTHER,OR,6/15/2003 0:17 +Danbury,,LIGHT,CT,6/15/2003 1:30 +Manchester,,LIGHT,TN,6/15/2003 2:00 +Alabama,,SPHERE,AL,6/15/2003 4:30 +Malibu,,DIAMOND,CA,6/15/2003 11:00 +Douglasville,,CIRCLE,GA,6/15/2003 12:00 +Monterey,,OVAL,CA,6/15/2003 12:00 +Rural Alaska community,,DIAMOND,AK,6/15/2003 13:00 +Lahaina,,CONE,HI,6/15/2003 15:00 +Carthage,,EGG,MS,6/15/2003 16:00 +Woburn,,FIREBALL,MA,6/15/2003 17:00 +Manchester,,DISK,TN,6/15/2003 19:00 +Virginia Beach,,FIREBALL,VA,6/15/2003 19:00 +Virginia Beach,,SPHERE,VA,6/15/2003 19:00 +Island Grove,,DISK,FL,6/15/2003 21:00 +Manchester,GREEN,TRIANGLE,TN,6/15/2003 21:30 +Sidney,,OTHER,NE,6/15/2003 21:30 +Waxahachie,,CIRCLE,TX,6/15/2003 22:25 +Lake Charles,,DISK,LA,6/15/2003 22:30 +South Easton,,LIGHT,MA,6/15/2003 22:49 +East Wenatchee,GREEN,TRIANGLE,WA,6/15/2003 23:00 +Longdale,,DIAMOND,OK,6/15/2003 23:00 +New Jersey highway,GREEN,OVAL,NJ,6/15/2003 23:20 +Greeley,,LIGHT,CO,6/16/2003 3:00 +Bainbridge,,OTHER,GA,6/16/2003 14:00 +Dracut,,OVAL,MA,6/16/2003 18:00 +Freedom,,FIREBALL,WI,6/16/2003 23:20 +River Falls,,LIGHT,WI,6/16/2003 23:30 +San Pedro,,DISK,CA,6/17/2003 6:00 +Arnold,,OTHER,MD,6/17/2003 13:30 +San Antonio,,LIGHT,TX,6/17/2003 20:00 +Worland,,LIGHT,WY,6/17/2003 22:42 +Portland,,LIGHT,OR,6/18/2003 0:24 +Anaheim,,TRIANGLE,CA,6/18/2003 6:30 +Napali Coast,,OTHER,HI,6/18/2003 12:53 +Wyandotte,,SPHERE,MI,6/18/2003 17:30 +Rio Ranchi,,DISK,NM,6/18/2003 18:15 +Fairfield,,LIGHT,CT,6/18/2003 21:00 +Shell Beach,,TRIANGLE,CA,6/18/2003 21:15 +Destin,,DIAMOND,FL,6/18/2003 22:15 +Orange County,ORANGE,FLASH,CA,6/19/2003 2:30 +Reston,,SPHERE,VA,6/19/2003 21:00 +Rome,RED,DISK,OH,6/19/2003 21:00 +Westford,,SPHERE,MA,6/19/2003 21:00 +Dayton,,,TX,6/19/2003 22:00 +East Chicago,,LIGHT,IN,6/19/2003 22:00 +Camden,,LIGHT,NY,6/19/2003 22:06 +Kendallville,RED ORANGE,LIGHT,IN,6/19/2003 22:18 +Londonderry,,SPHERE,NH,6/20/2003 0:18 +Coldwater,GREEN,TRIANGLE,MI,6/20/2003 15:00 +Reno,,CIRCLE,NV,6/20/2003 19:10 +Moline,,TRIANGLE,IL,6/20/2003 20:35 +Edwards,,DISK,MO,6/20/2003 21:00 +Chicago,,TEARDROP,IL,6/20/2003 21:53 +Hawesville,,,KY,6/20/2003 22:00 +Gates,,RECTANGLE,OR,6/21/2003 3:02 +Douglasville,,CIRCLE,GA,6/21/2003 6:30 +Chesterton,,LIGHT,IN,6/21/2003 10:00 +St. Augustine,,DISK,FL,6/21/2003 13:00 +Vail,BLUE,SPHERE,CO,6/21/2003 18:33 +Candler,,,NC,6/21/2003 22:00 +Des Moines,,TRIANGLE,IA,6/21/2003 22:30 +Miami,ORANGE,TRIANGLE,TX,6/21/2003 23:00 +Omaha,RED,FORMATION,NE,6/22/2003 0:12 +Tatum,,OVAL,NM,6/22/2003 2:30 +Los Angeles,,CIRCLE,CA,6/22/2003 3:00 +Mesa,,CIGAR,AZ,6/22/2003 3:00 +Bardstown,,OVAL,KY,6/22/2003 16:00 +Atlanta,,RECTANGLE,GA,6/22/2003 18:00 +Kenly,,OVAL,NC,6/22/2003 21:30 +Baltimore,,DIAMOND,MD,6/22/2003 21:45 +Sun City West,,LIGHT,AZ,6/22/2003 21:45 +Allexander Valley,,CIRCLE,CA,6/22/2003 22:00 +Flint,,CIGAR,MI,6/22/2003 22:09 +Kingston,,LIGHT,WI,6/22/2003 23:00 +Panama City,,LIGHT,FL,6/23/2003 4:24 +Bloomsburg,,OTHER,PA,6/23/2003 18:00 +Canoga Park,,TRIANGLE,CA,6/23/2003 21:00 +Boise,RED,LIGHT,ID,6/23/2003 22:30 +Port Orchard,,LIGHT,WA,6/23/2003 22:40 +Shawnee National Forest,ORANGE,OVAL,IL,6/24/2003 1:00 +Othello,,OVAL,WA,6/24/2003 3:00 +Kingman,,LIGHT,AZ,6/24/2003 3:32 +Columbus,,LIGHT,OH,6/24/2003 21:00 +Prescott,,SPHERE,AZ,6/24/2003 21:45 +Conway,RED,CIRCLE,SC,6/24/2003 22:00 +Council,,OVAL,AK,6/25/2003 0:00 +Grantsburg,BLUE,OTHER,IL,6/25/2003 1:00 +Port Angeles,,LIGHT,WA,6/25/2003 1:30 +Price,,CIRCLE,UT,6/25/2003 2:00 +Laguna Niguel,,DISK,CA,6/25/2003 8:00 +Pinole,,FORMATION,CA,6/25/2003 16:21 +Avalon,,VARIOUS,NJ,6/26/2003 3:00 +Daly City,ORANGE GREEN,DISK,CA,6/26/2003 5:00 +Newtown,,DISK,PA,6/26/2003 13:40 +El Cajon,,,CA,6/26/2003 22:26 +Lemoore,ORANGE,TRIANGLE,CA,6/26/2003 22:30 +Seattle,,LIGHT,WA,6/27/2003 0:05 +St. George,,SPHERE,UT,6/27/2003 13:57 +Pittsburgh,,CYLINDER,PA,6/27/2003 23:00 +Albuquerque,,CIRCLE,NM,6/28/2003 4:00 +Mountain View,,,CA,6/28/2003 4:45 +Lodi,,OVAL,CA,6/28/2003 11:30 +Los Angeles,,SPHERE,CA,6/28/2003 14:00 +Orlando,,CIRCLE,FL,6/28/2003 21:15 +Belton,,FORMATION,SC,6/28/2003 21:45 +Atlantic City,,LIGHT,NJ,6/28/2003 22:00 +Atlantic City Area,,LIGHT,NJ,6/28/2003 22:00 +Milford,,,MA,6/28/2003 22:42 +Virginia Beach,GREEN,LIGHT,VA,6/28/2003 23:00 +New York City,,DISK,NY,6/28/2003 23:12 +Kenly,,LIGHT,NC,6/28/2003 23:30 +Layton,,LIGHT,UT,6/28/2003 23:30 +New York City,,DISK,NY,6/28/2003 23:30 +New York City,RED BLUE,DISK,NY,6/28/2003 23:30 +Shady Point,,DISK,OK,6/28/2003 23:30 +Yuba City,,OTHER,CA,6/28/2003 23:45 +Kettleman City,,TRIANGLE,CA,6/29/2003 1:00 +Roy,,OVAL,UT,6/29/2003 17:50 +Lake Aloha,,CIRCLE,CA,6/29/2003 20:00 +Isle la Motte,,LIGHT,VT,6/29/2003 20:25 +Edmonds,ORANGE,LIGHT,WA,6/29/2003 21:00 +Prophetstown,,FLASH,IL,6/29/2003 22:40 +Prince George,,SPHERE,VA,6/29/2003 23:00 +Virginia Beach,BLUE,LIGHT,VA,6/29/2003 23:30 +Las Vegas,,,NV,6/30/2003 0:00 +Plymouth,,OTHER,NC,6/30/2003 1:30 +San Francisco,,CIGAR,CA,6/30/2003 2:00 +Bishopville,,OTHER,MD,6/30/2003 2:10 +Orland,,LIGHT,CA,6/30/2003 4:28 +Phoenix,,,AZ,6/30/2003 5:30 +Los Angeles,,FIREBALL,CA,6/30/2003 8:00 +Iowa City,,OVAL,IA,6/30/2003 9:00 +Sugar Grove,,OTHER,IL,6/30/2003 14:00 +Nashville,,TRIANGLE,TN,6/30/2003 17:00 +Syracuse,,FIREBALL,NY,6/30/2003 17:00 +San Bernardino,,DISK,CA,6/30/2003 18:32 +Oak Forest,,DISK,IL,6/30/2003 19:00 +Price,,TRIANGLE,UT,6/30/2003 20:00 +New Brighton,,OTHER,PA,6/30/2003 21:00 +Ripon,,CIRCLE,WI,6/30/2003 22:00 +Jamestown,,CIRCLE,KS,6/30/2003 23:00 +Hamilton,,FLASH,OH,6/30/2003 23:10 +Magna,,LIGHT,UT,6/30/2003 23:30 +Moses Lake,,OTHER,WA,7/1/2003 0:00 +Pecos,,LIGHT,TX,7/1/2003 0:00 +Kelseyville,,LIGHT,CA,7/1/2003 2:00 +Yakima,,OVAL,WA,7/1/2003 2:00 +Manteo,,LIGHT,NC,7/1/2003 2:30 +Seattle,,TEARDROP,WA,7/1/2003 2:30 +New Jersey,RED,LIGHT,NJ,7/1/2003 19:00 +Inglewood,RED,DISK,CA,7/1/2003 19:45 +Moses Lake,,SPHERE,WA,7/1/2003 21:00 +Chicago,RED GREEN,FIREBALL,IL,7/1/2003 22:00 +coventry,,VARIOUS,RI,7/1/2003 22:00 +Indianapolis,,OTHER,IN,7/1/2003 22:00 +Tyngsboro,GREEN,CIGAR,MA,7/1/2003 22:30 +Kitty Hawk,,LIGHT,NC,7/1/2003 23:00 +Santa Maria,,TRIANGLE,CA,7/1/2003 23:46 +Howell,RED BLUE,CIGAR,MI,7/1/2003 23:50 +New Berlin,,LIGHT,WI,7/2/2003 0:43 +South Gate,,CIRCLE,CA,7/2/2003 1:53 +Sea Isle City,,SPHERE,NJ,7/2/2003 3:00 +Bloomington,,CIGAR,IL,7/2/2003 14:30 +Silver City,,DISK,MI,7/2/2003 20:00 +Timmonsville,,OVAL,SC,7/2/2003 20:00 +Moorpark,,OVAL,CA,7/2/2003 20:10 +California,,SPHERE,MO,7/2/2003 22:00 +Lakeville,,LIGHT,MN,7/2/2003 23:30 +St. Ignace,,TRIANGLE,MI,7/2/2003 23:59 +Pocatello,,CIRCLE,ID,7/3/2003 2:30 +Manlius,,CYLINDER,NY,7/3/2003 20:40 +Manlius,,OVAL,NY,7/3/2003 20:40 +Benton,RED ORANGE,CIRCLE,TN,7/3/2003 22:47 +Seattle,RED GREEN BLUE,CIRCLE,WA,7/3/2003 23:00 +Fort Smith,,TRIANGLE,AR,7/3/2003 23:07 +Bakersfield,,CIRCLE,CA,7/4/2003 1:00 +Mapleton,,OTHER,IA,7/4/2003 2:30 +Chico,,LIGHT,CA,7/4/2003 4:05 +Orland Park,,TRIANGLE,IL,7/4/2003 8:30 +San Diego,,DISK,CA,7/4/2003 11:00 +Bayonne,,OTHER,NJ,7/4/2003 12:00 +Tioga Pass,,OVAL,CA,7/4/2003 14:00 +Butler,,CIRCLE,PA,7/4/2003 16:00 +Nantucket,,CIRCLE,MA,7/4/2003 19:00 +Renton,,EGG,WA,7/4/2003 19:45 +Vancouver,,EGG,WA,7/4/2003 20:30 +East Wenatchee,,LIGHT,WA,7/4/2003 21:00 +Wellfleet,,DISK,MA,7/4/2003 21:30 +Seattle,,TRIANGLE,WA,7/4/2003 22:00 +Tulelake,,LIGHT,CA,7/4/2003 22:05 +Port St. Lucie,,FIREBALL,FL,7/4/2003 22:15 +Clear Lake,,LIGHT,OR,7/4/2003 23:00 +Ridgeway,,CIRCLE,SC,7/4/2003 23:00 +Attleboro,,FORMATION,MA,7/4/2003 23:30 +Merced,,TRIANGLE,CA,7/4/2003 23:50 +Kansas City,,LIGHT,MO,7/5/2003 0:10 +Graham,,TRIANGLE,WA,7/5/2003 0:13 +Randolph AFB,,DISK,TX,7/5/2003 0:30 +Ithaca,,LIGHT,NY,7/5/2003 0:34 +Solano County,,,CA,7/5/2003 1:00 +Niantic,,,CT,7/5/2003 1:30 +Oklahoma City,,TEARDROP,OK,7/5/2003 1:48 +Crystal,BLUE,CIGAR,NM,7/5/2003 10:30 +West Covina,,CROSS,CA,7/5/2003 14:30 +Benton,,SPHERE,IL,7/5/2003 16:00 +Rend Lake,,OVAL,IL,7/5/2003 18:00 +Athens,,CYLINDER,AL,7/5/2003 19:40 +Seekonk,,OTHER,MA,7/5/2003 20:00 +Dixfield,RED,CIRCLE,ME,7/5/2003 21:00 +Horton,,TRIANGLE,KS,7/5/2003 22:00 +Niles,,FLASH,IL,7/5/2003 22:00 +Clive,BLUE,TEARDROP,IA,7/5/2003 22:27 +Fallon,,,NV,7/5/2003 23:15 +Sedona,,TRIANGLE,AZ,7/5/2003 23:15 +Bakersfield,,LIGHT,CA,7/5/2003 23:30 +Salem,,OTHER,OR,7/6/2003 0:04 +Corbin,,FORMATION,KY,7/6/2003 0:30 +Lewisville,,CYLINDER,TX,7/6/2003 11:30 +Morrison,,DISK,IL,7/6/2003 15:30 +Elwood,,DISK,IL,7/6/2003 18:15 +Salem,,CIRCLE,OR,7/6/2003 19:15 +Cambridge,,DIAMOND,MA,7/6/2003 19:30 +Low Country Region,,SPHERE,SC,7/6/2003 20:30 +Bonita Springs,,LIGHT,FL,7/6/2003 21:00 +Tulsa,RED YELLOW GREEN,TRIANGLE,OK,7/6/2003 21:36 +Rochester,,CIRCLE,NY,7/6/2003 23:11 +New Mexico,,OTHER,NM,7/7/2003 16:00 +Jasper,,FIREBALL,AL,7/7/2003 17:30 +Arizona,,DISK,AZ,7/8/2003 0:00 +Grand Junction,,SPHERE,CO,7/8/2003 0:30 +Hamden,YELLOW,OTHER,CT,7/8/2003 1:48 +Seminole,,,FL,7/8/2003 2:10 +Dallas,,DISK,TX,7/8/2003 14:00 +London,,DISK,KY,7/8/2003 16:30 +Longview,,CIRCLE,TX,7/8/2003 16:41 +Clermont,,DISK,IN,7/8/2003 18:00 +Lafayette,,CIRCLE,CO,7/8/2003 18:50 +Santa Rosa,,OTHER,CA,7/8/2003 19:00 +Gaithersburg,,OVAL,MD,7/8/2003 20:31 +Porum,,DISK,OK,7/8/2003 20:49 +Miami,BLUE,OVAL,FL,7/8/2003 22:15 +Jacksonville,,LIGHT,FL,7/8/2003 22:20 +Westmoreland,,TRIANGLE,TN,7/9/2003 0:30 +Sylva,,VARIOUS,NC,7/9/2003 11:35 +Endicott,,TRIANGLE,NY,7/9/2003 20:30 +Oakland,,EGG,CA,7/9/2003 20:30 +Hamilton,RED,CIRCLE,IN,7/9/2003 21:00 +Sweetwater,RED,LIGHT,TN,7/9/2003 21:30 +Coalinga,,LIGHT,CA,7/9/2003 22:00 +Gilroy,,VARIOUS,CA,7/9/2003 22:00 +Liberty Lake,,TRIANGLE,WA,7/9/2003 22:12 +Pearblossom,,TRIANGLE,CA,7/9/2003 22:40 +Boise,,FORMATION,ID,7/9/2003 23:15 +Reno,,OTHER,NV,7/9/2003 23:59 +Wellington,,LIGHT,TX,7/10/2003 2:00 +Waikiki,,CIRCLE,HI,7/10/2003 4:00 +Airway Heights,,SPHERE,WA,7/10/2003 20:00 +Biddeford,,CROSS,ME,7/10/2003 20:00 +Willmar,,TRIANGLE,MN,7/10/2003 21:00 +San Bernadino,GREEN,FIREBALL,CA,7/10/2003 21:38 +Morris,,LIGHT,IL,7/10/2003 22:00 +Farquay Varina,,TRIANGLE,NC,7/10/2003 23:20 +Forestill,,,MO,7/11/2003 0:45 +New York City,,LIGHT,NY,7/11/2003 1:00 +Hacienda Heights,,LIGHT,CA,7/11/2003 1:30 +Madill,,LIGHT,OK,7/11/2003 2:00 +Boulder,,TRIANGLE,CO,7/11/2003 3:30 +Littleton,,SPHERE,CO,7/11/2003 11:27 +Zion National Park,,TRIANGLE,AZ,7/11/2003 12:00 +Spring Hill,,OVAL,TN,7/11/2003 19:12 +Golden,,,CO,7/11/2003 20:50 +Bay Shore,RED,LIGHT,NY,7/11/2003 22:00 +Heber City,,DISK,UT,7/11/2003 22:26 +Sacramento,,LIGHT,CA,7/11/2003 22:30 +Miami,,CYLINDER,FL,7/11/2003 23:15 +Asheville,,LIGHT,NC,7/12/2003 5:45 +Rancho Cucamonga,,OVAL,CA,7/12/2003 18:00 +Fairborn,,CIGAR,OH,7/12/2003 19:50 +Kennett Square,,OVAL,PA,7/12/2003 21:15 +Ashland,,DISK,KY,7/12/2003 22:00 +Rachel,,,NV,7/12/2003 22:55 +Baileys Harbor,,LIGHT,WI,7/12/2003 23:00 +Charlotte,,OVAL,MI,7/12/2003 23:05 +Humble,,,TX,7/13/2003 1:00 +Lynn Haven,ORANGE,RECTANGLE,FL,7/13/2003 4:15 +Del Rio,,LIGHT,TX,7/13/2003 5:00 +Sacramento,,,CA,7/13/2003 9:00 +Milford,,,DE,7/13/2003 12:00 +Steamboat Springs,,LIGHT,CO,7/13/2003 13:00 +Karthaus,,FLASH,PA,7/13/2003 14:00 +Belle Harbor,,VARIOUS,NY,7/13/2003 18:00 +Buffalo,,LIGHT,NY,7/13/2003 18:00 +Bartonsville,,FORMATION,PA,7/13/2003 18:15 +New York City,,SPHERE,NY,7/13/2003 18:15 +New York City,,SPHERE,NY,7/13/2003 19:30 +Denver,BLUE,LIGHT,CO,7/13/2003 22:00 +Orting,,TRIANGLE,WA,7/14/2003 1:30 +Beaverton,,OVAL,OR,7/14/2003 15:33 +Summerville,,SPHERE,SC,7/14/2003 22:45 +Carmicahel,,LIGHT,CA,7/14/2003 23:15 +Maple Rapids,,SPHERE,MI,7/15/2003 0:00 +Burien,RED YELLOW GREEN,CYLINDER,WA,7/15/2003 0:05 +Lakewood,GREEN,CYLINDER,WA,7/15/2003 0:05 +Seattle,,FIREBALL,WA,7/15/2003 0:10 +Fortuna,,LIGHT,CA,7/15/2003 0:15 +"West Greenwich, East Greenwich, West Warwick, Warwick",,DISK,RI,7/15/2003 0:30 +Hungry Horse,,LIGHT,MT,7/15/2003 5:00 +Santa Clara,,FORMATION,CA,7/15/2003 10:55 +El Cajon,,DISK,CA,7/15/2003 11:00 +Portage,,SPHERE,WI,7/15/2003 13:00 +Chicago,,FIREBALL,IL,7/15/2003 14:00 +Gurnee,,CYLINDER,IL,7/15/2003 14:00 +Chiefland,,DISK,FL,7/15/2003 21:30 +San Jose,RED ORANGE,OTHER,CA,7/15/2003 21:30 +Spencer,,TRIANGLE,IN,7/15/2003 21:40 +Bear,,FORMATION,DE,7/15/2003 22:00 +Fountain Valley,,LIGHT,CA,7/15/2003 22:00 +Haddonfield,,DISK,NJ,7/15/2003 22:00 +Portage,,VARIOUS,MI,7/15/2003 22:00 +Vashon Island,,,WA,7/15/2003 22:05 +Lufkin,,TEARDROP,TX,7/15/2003 22:28 +Carbonado,BLUE,SPHERE,WA,7/15/2003 23:00 +Elberfeld,ORANGE,LIGHT,IN,7/15/2003 23:00 +Taylorsville,,FLASH,UT,7/15/2003 23:10 +Pound Ridge,,DISK,NY,7/15/2003 23:30 +Rolla,,DISK,MO,7/15/2003 23:45 +Arizona,,,AZ,7/16/2003 0:00 +Brighton,,,MI,7/16/2003 0:45 +Crossville,,TRIANGLE,AL,7/16/2003 16:00 +South Bend,,CYLINDER,IN,7/16/2003 20:17 +Rolla,,LIGHT,MO,7/16/2003 20:40 +Phoenix,,FIREBALL,AZ,7/16/2003 23:00 +Fresno,,LIGHT,CA,7/16/2003 23:02 +Los Angeles,,LIGHT,CA,7/16/2003 23:59 +Des Moines,,LIGHT,WA,7/17/2003 0:30 +Dousman,,DISK,WI,7/17/2003 0:30 +Sandpoint,,OTHER,ID,7/17/2003 2:00 +Scottsbluff,,OTHER,NE,7/17/2003 2:00 +Whittier,,,CA,7/17/2003 2:00 +Columbia,,DISK,PA,7/17/2003 3:00 +Kirkland,,OTHER,WA,7/17/2003 5:30 +Winter Springs,,LIGHT,FL,7/17/2003 5:45 +Seasta Key,,OVAL,FL,7/17/2003 12:00 +Portland,,SPHERE,OR,7/17/2003 15:15 +Leola,BLUE,DISK,PA,7/17/2003 17:15 +San Antonio,,SPHERE,TX,7/17/2003 20:00 +Londonderry,,,NH,7/17/2003 21:00 +New York City,,FORMATION,NY,7/17/2003 21:19 +Cambridge Springs,,OTHER,PA,7/17/2003 23:00 +Jackson,,LIGHT,WY,7/17/2003 23:30 +Dupont,ORANGE,TRIANGLE,WA,7/18/2003 2:00 +Brightwaters,,DISK,NY,7/18/2003 21:00 +Albuquerque,,TRIANGLE,NM,7/18/2003 22:00 +Twin Falls,GREEN,SPHERE,ID,7/18/2003 22:00 +Vancouver,,RECTANGLE,WA,7/18/2003 22:40 +Narberth,,LIGHT,PA,7/18/2003 22:50 +Renton,,,WA,7/19/2003 2:29 +Charleston,,CIRCLE,SC,7/19/2003 13:00 +Ford City,,,PA,7/19/2003 14:15 +Richland,,OTHER,WA,7/19/2003 15:00 +Batavia,,CIRCLE,IL,7/19/2003 16:00 +Jersey City,,CYLINDER,NJ,7/19/2003 18:30 +Eugene,,OVAL,OR,7/19/2003 19:20 +New York City,,LIGHT,NY,7/19/2003 21:30 +Dryden,,,MI,7/19/2003 21:45 +Bellerose,,LIGHT,NY,7/19/2003 22:00 +Scituate,,OVAL,RI,7/19/2003 22:10 +New Cumberland,,LIGHT,PA,7/19/2003 22:15 +Stryker,,TRIANGLE,OH,7/19/2003 23:00 +Pleasent Grove,,LIGHT,AR,7/19/2003 23:38 +Marengo,,TRIANGLE,OH,7/20/2003 1:00 +Columbus,,CIRCLE,IN,7/20/2003 1:14 +Cotate,,FLASH,CA,7/20/2003 2:00 +Katy,,SPHERE,TX,7/20/2003 2:30 +Bend,,OTHER,OR,7/20/2003 7:00 +Forest Grove,,LIGHT,OR,7/20/2003 11:00 +Arnold,,LIGHT,CA,7/20/2003 21:40 +North Logan,,DISK,UT,7/20/2003 22:00 +Sparks,,LIGHT,NV,7/20/2003 22:30 +Mormon Lake,,TRIANGLE,AZ,7/21/2003 1:00 +Elsmore,,DISK,KS,7/21/2003 14:06 +Port Angeles,,SPHERE,WA,7/21/2003 21:10 +Shreveport,,TRIANGLE,LA,7/21/2003 21:30 +Shasta Lake City,,LIGHT,CA,7/21/2003 21:40 +Tucson,,TRIANGLE,AZ,7/21/2003 22:00 +Woodinville,RED,TRIANGLE,WA,7/21/2003 22:00 +Portland,,LIGHT,OR,7/21/2003 22:30 +Shasta Lake,,LIGHT,CA,7/21/2003 22:40 +Kalispell,,,MT,7/22/2003 0:00 +Orinda,,CIRCLE,CA,7/22/2003 11:00 +Naperville,,TRIANGLE,IL,7/22/2003 17:30 +Gilbert,,LIGHT,SC,7/22/2003 20:45 +Mukilteo,,CYLINDER,WA,7/22/2003 21:00 +Woodinville,,LIGHT,WA,7/22/2003 22:29 +Dakota City,,,NE,7/23/2003 0:05 +Gig Harbor,RED BLUE,TRIANGLE,WA,7/23/2003 0:58 +Memphis,,,TN,7/23/2003 6:30 +Austin,,OVAL,MN,7/23/2003 14:30 +Waupaca,,CIRCLE,WI,7/23/2003 21:00 +Portland,,CIRCLE,OR,7/23/2003 22:00 +Cottage Grove,,VARIOUS,MN,7/23/2003 22:35 +Cedar,,SPHERE,MI,7/23/2003 22:44 +Wellsville,,TRIANGLE,NY,7/24/2003 22:00 +Conway,,LIGHT,AR,7/24/2003 22:45 +Rio Rancho,,LIGHT,NM,7/24/2003 23:10 +Big Bear,BLUE,,CA,7/25/2003 0:00 +Upper Providence Township,,LIGHT,PA,7/25/2003 5:15 +Palm Harbor,,DISK,FL,7/25/2003 7:45 +Renton,,OTHER,WA,7/25/2003 13:00 +Meteor Crater,,,AZ,7/25/2003 14:30 +Philadelphia,,LIGHT,PA,7/25/2003 14:30 +Port Washington,YELLOW,DIAMOND,NY,7/25/2003 21:00 +Woodsville,,FIREBALL,NH,7/25/2003 21:30 +Shelton,,LIGHT,WA,7/25/2003 22:41 +Schenectady,,FORMATION,NY,7/25/2003 23:00 +Maysville,,RECTANGLE,NC,7/25/2003 23:30 +Alexandria,,,VA,7/26/2003 0:20 +Dardanelle,YELLOW,LIGHT,AR,7/26/2003 4:00 +Westminster,,FORMATION,MD,7/26/2003 5:00 +Bristol,,,TN,7/26/2003 19:45 +Burbank,ORANGE,,CA,7/26/2003 21:00 +Portland,,FIREBALL,OR,7/26/2003 21:52 +Eureka Springs,,LIGHT,AR,7/26/2003 22:55 +Davenport,,LIGHT,IA,7/26/2003 23:00 +Beulaville,,FLASH,NC,7/26/2003 23:15 +Tillamook,,FIREBALL,OR,7/26/2003 23:17 +Cicero,,CIRCLE,IL,7/26/2003 23:30 +Hampton,,LIGHT,VA,7/26/2003 23:30 +El Paso,ORANGE BLUE,LIGHT,TX,7/27/2003 0:10 +Mission Viejo,,,CA,7/27/2003 3:30 +Lithia Springs,,LIGHT,GA,7/27/2003 4:00 +Pinellas County,,,FL,7/27/2003 4:03 +Marysville,BLUE,FLASH,KS,7/27/2003 5:00 +Burlingame,,DISK,CA,7/27/2003 5:30 +Richland,,CIRCLE,WA,7/27/2003 11:00 +Keizer,,OTHER,OR,7/27/2003 19:00 +Stillwater,,FIREBALL,MN,7/27/2003 22:00 +Pasco,,CROSS,WA,7/27/2003 23:00 +Howell,,,MI,7/28/2003 0:00 +Granite Falls,,VARIOUS,WA,7/28/2003 1:20 +Seattle,,CIRCLE,WA,7/28/2003 1:30 +Charlotte,,SPHERE,NC,7/28/2003 2:00 +Troro,,TEARDROP,MA,7/28/2003 11:00 +Silverton,,CIGAR,CO,7/28/2003 12:00 +Pinebush,,DISK,NY,7/28/2003 18:00 +Oklahoma City,,LIGHT,OK,7/28/2003 20:00 +Houston,GREEN,CIRCLE,TX,7/28/2003 20:50 +Houston,,FIREBALL,TX,7/28/2003 21:00 +Tomball,RED,FLASH,TX,7/28/2003 21:00 +Tomball,RED BLUE,OTHER,TX,7/28/2003 21:00 +Nacogdoches,,FIREBALL,TX,7/28/2003 22:00 +Windsor,,CHEVRON,CA,7/28/2003 22:20 +Bozeman,,OVAL,MT,7/28/2003 22:32 +Woodstock,,EGG,IL,7/28/2003 23:30 +Vancouver,,TRIANGLE,WA,7/28/2003 23:32 +Harrison Twp,,CIRCLE,MI,7/29/2003 0:30 +Fairfield,,,CA,7/29/2003 1:22 +Harrison Township,YELLOW,CIRCLE,MI,7/29/2003 4:30 +Zionsville,,CIRCLE,IN,7/29/2003 12:00 +Key West,,DISK,FL,7/29/2003 13:00 +Lynnwood,,CIRCLE,WA,7/29/2003 22:45 +Arlington,,,WA,7/29/2003 23:00 +New York City,,VARIOUS,NY,7/29/2003 23:30 +Bushkill,,FORMATION,PA,7/30/2003 0:05 +Delaware,,VARIOUS,OH,7/30/2003 2:30 +Mena,,TRIANGLE,AR,7/30/2003 2:41 +Las Vegas,,EGG,NV,7/30/2003 7:52 +Glendora,,OVAL,CA,7/30/2003 12:50 +Birmingham,,RECTANGLE,AL,7/30/2003 19:00 +Tioga,RED BLUE,,ND,7/30/2003 22:50 +Silverdale,,LIGHT,WA,7/30/2003 22:53 +Wilmington,,LIGHT,CA,7/31/2003 1:35 +Tulsa,,LIGHT,OK,7/31/2003 3:00 +Lansing,,RECTANGLE,MI,7/31/2003 13:20 +Des Moines,,CIGAR,IA,7/31/2003 14:00 +Seattle,,LIGHT,WA,7/31/2003 22:40 +Redmond,RED YELLOW GREEN,OTHER,WA,7/31/2003 22:45 +Edmonds,,,WA,7/31/2003 23:30 +Reno,RED,OTHER,NV,8/1/2003 0:00 +Salem,ORANGE,LIGHT,MA,8/1/2003 0:20 +Caribbean Sea,,TRIANGLE,FL,8/1/2003 0:30 +Galliano,,CIRCLE,LA,8/1/2003 1:00 +Wilmington,,DIAMOND,CA,8/1/2003 1:15 +San Francisco,RED,TRIANGLE,TX,8/1/2003 1:30 +Charleston,,,SC,8/1/2003 13:25 +no data,RED,LIGHT,NM,8/1/2003 19:30 +Jackson,,SPHERE,KY,8/1/2003 21:00 +Moxee,,SPHERE,WA,8/1/2003 21:00 +Tampa,,,FL,8/1/2003 21:30 +Cle Elum,,CIRCLE,WA,8/1/2003 22:00 +Granite Falls,,CIRCLE,WA,8/1/2003 22:00 +South Bend,,OTHER,IN,8/1/2003 23:00 +Kalispell,,CROSS,MT,8/1/2003 23:50 +Waverly,,OTHER,TN,8/2/2003 1:00 +Santa Ana,,FORMATION,CA,8/2/2003 10:50 +Magnolia,,OTHER,WA,8/2/2003 12:15 +Bristol,,DISK,TN,8/2/2003 19:45 +Tioga,,DISK,ND,8/2/2003 22:52 +Port Angeles,,FORMATION,WA,8/2/2003 23:50 +Burleson,,CIRCLE,TX,8/3/2003 0:00 +Fridley,,OTHER,MN,8/3/2003 0:23 +Tuscon,,CHEVRON,AZ,8/3/2003 3:00 +Raymore,,TRIANGLE,MO,8/3/2003 8:45 +In-flight,,OTHER,MT,8/3/2003 12:00 +Oceanside,,EGG,CA,8/3/2003 12:35 +Ararat,,DISK,VA,8/3/2003 13:00 +Placerville,,FORMATION,CA,8/3/2003 20:57 +Porum,,LIGHT,OK,8/3/2003 21:30 +Joshua Tree,,FORMATION,CA,8/3/2003 22:30 +Pollock,ORANGE,LIGHT,LA,8/3/2003 22:30 +Jackson,,FIREBALL,NJ,8/3/2003 23:00 +Long Beach,YELLOW,LIGHT,CA,8/3/2003 23:00 +Manville,,LIGHT,NJ,8/3/2003 23:00 +Toledo,,LIGHT,OH,8/3/2003 23:00 +Kirkland,,LIGHT,WA,8/3/2003 23:05 +Santa Fe,,CYLINDER,NM,8/3/2003 23:59 +Littleton,,DISK,CO,8/4/2003 12:20 +Hereford,,OTHER,AZ,8/4/2003 19:00 +Seattle,,CIGAR,WA,8/4/2003 20:15 +Bloomfield,,OTHER,NY,8/4/2003 22:00 +Washington State coastline,RED,LIGHT,WA,8/4/2003 22:15 +Ouray,,OTHER,CO,8/4/2003 22:45 +Ashland,BLUE,OVAL,OR,8/5/2003 4:30 +Huntington,,LIGHT,IN,8/5/2003 20:00 +Kalispell,,LIGHT,MT,8/5/2003 23:37 +Duxbury,,SPHERE,MA,8/6/2003 2:00 +NJ Turnpike,RED,OTHER,NJ,8/6/2003 4:25 +Waldorf,ORANGE,LIGHT,MD,8/6/2003 8:27 +Littleton,,CYLINDER,CO,8/6/2003 13:20 +San Diego,BLUE,OTHER,CA,8/6/2003 15:45 +Greeley,,CYLINDER,CO,8/6/2003 18:30 +Yakima,,OTHER,WA,8/6/2003 21:30 +Wabash,RED GREEN,LIGHT,IN,8/6/2003 22:00 +Sault Ste. Marie,,LIGHT,MI,8/6/2003 22:05 +Wrightsville Beach,,RECTANGLE,NC,8/6/2003 23:00 +Weston,RED BLUE,LIGHT,CO,8/6/2003 23:50 +Charleston,,LIGHT,AR,8/7/2003 0:20 +Chicago,ORANGE,OTHER,IL,8/7/2003 0:25 +Wilmington,,DIAMOND,CA,8/7/2003 0:27 +Saint John,BLUE,,IN,8/7/2003 1:00 +Fairbanks,,CIRCLE,AK,8/7/2003 1:30 +Florida,GREEN,,FL,8/7/2003 20:15 +Newberry,,LIGHT,MI,8/7/2003 21:00 +Endicott,,,NY,8/7/2003 21:20 +Sierra Nevada Mountains,BLUE,LIGHT,CA,8/7/2003 21:30 +Granada Hills,,,CA,8/7/2003 22:00 +Maine,,SPHERE,ME,8/7/2003 22:00 +Newberry Crater National Monument,,LIGHT,OR,8/7/2003 22:00 +Barboursville,BLUE,,WV,8/8/2003 0:15 +Modesto,RED YELLOW BLUE,VARIOUS,CA,8/8/2003 0:20 +Aztalan State Park,,VARIOUS,WI,8/8/2003 1:00 +Yakima,,LIGHT,WA,8/8/2003 3:00 +Manchester,BLUE,DIAMOND,NH,8/8/2003 15:15 +Phoenix,,OVAL,AZ,8/8/2003 21:00 +Tempe,,FLASH,AZ,8/8/2003 22:30 +Scottsdale,,DISK,AZ,8/8/2003 23:03 +Glendive,,CHEVRON,MT,8/9/2003 10:45 +Scotts Valley,,DISK,CA,8/9/2003 14:05 +Duck,,SPHERE,NC,8/9/2003 21:00 +Gresham,,LIGHT,OR,8/9/2003 22:30 +Nashville,,,TN,8/9/2003 23:00 +Exland,,LIGHT,WI,8/9/2003 23:10 +Hamilton,,LIGHT,OH,8/10/2003 1:00 +Stockton,,LIGHT,CA,8/10/2003 2:00 +Anchorage,RED,OTHER,AK,8/10/2003 3:00 +Fresno,,FIREBALL,CA,8/10/2003 3:40 +Lake City,,TRIANGLE,FL,8/10/2003 6:50 +Albuquerque,,,NM,8/10/2003 14:00 +Houston,,TRIANGLE,TX,8/10/2003 15:30 +Yakima,,TRIANGLE,WA,8/10/2003 18:55 +Albuquerque,,,NM,8/10/2003 19:00 +Benton,,CIGAR,IL,8/10/2003 19:30 +Harpersfield,,TRIANGLE,OH,8/10/2003 20:00 +Hannibal,,LIGHT,MO,8/10/2003 22:00 +Grand Prairie,GREEN,LIGHT,TX,8/10/2003 23:30 +Tucson,,LIGHT,AZ,8/11/2003 2:00 +Amarillo,,OVAL,TX,8/11/2003 10:45 +Salem,,OTHER,MA,8/11/2003 11:00 +Altadena,,TRIANGLE,CA,8/11/2003 13:47 +Rome,,OTHER,GA,8/11/2003 16:30 +Grand Canyon,,LIGHT,AZ,8/11/2003 18:00 +Vashon Island,,LIGHT,WA,8/11/2003 23:30 +Bruneau,,SPHERE,ID,8/12/2003 2:30 +Tucson,,OTHER,AZ,8/12/2003 6:30 +Las Vegas,,CYLINDER,NV,8/12/2003 10:00 +Burnsville,,LIGHT,MN,8/12/2003 21:30 +Jordan Valley,,DISK,OR,8/12/2003 22:10 +Cradon,,LIGHT,WI,8/13/2003 0:00 +Sacramento,GREEN,OVAL,CA,8/13/2003 1:00 +Lake Mary,,,FL,8/13/2003 4:00 +Springfield,,OVAL,OH,8/13/2003 10:30 +Portland,,SPHERE,OR,8/13/2003 14:00 +Napoleonville,,OTHER,LA,8/13/2003 19:25 +Delaware,,,OH,8/13/2003 21:50 +Marysville,,,WA,8/13/2003 22:00 +Orcas Island,,FLASH,WA,8/13/2003 22:00 +Green Bay,RED GREEN,CIRCLE,WI,8/13/2003 22:20 +Green Bay,GREEN,OTHER,WI,8/13/2003 22:20 +Fort Walton Beach,BLUE,CIRCLE,FL,8/13/2003 22:50 +Chemung,,LIGHT,NY,8/13/2003 23:59 +Des Moines,,CIGAR,WA,8/14/2003 13:00 +New Port Richey,,CHEVRON,FL,8/14/2003 18:00 +Roosevelt,,FORMATION,NY,8/14/2003 18:30 +Cashmere,,FIREBALL,WA,8/14/2003 20:00 +Binghamton,,LIGHT,NY,8/14/2003 21:00 +New York City,,SPHERE,NY,8/14/2003 21:00 +Temecula,,,CA,8/14/2003 23:30 +Bellevue,,CIRCLE,WA,8/15/2003 0:10 +Centreville,,CIRCLE,VA,8/15/2003 0:20 +Los Angeles,,DIAMOND,CA,8/15/2003 2:45 +Ashford,,OVAL,WA,8/15/2003 3:00 +Loma Linda,,SPHERE,CA,8/15/2003 3:45 +Gilbert,,CROSS,AZ,8/15/2003 11:00 +Conchas Dam,,CIRCLE,NM,8/15/2003 14:00 +Seattle,BLUE,CIRCLE,WA,8/15/2003 14:00 +Tacoma,,DISK,WA,8/15/2003 15:30 +St. Petersburg,,,FL,8/15/2003 16:00 +Colorado Springs,,LIGHT,CO,8/15/2003 18:50 +Kalamazoo,,OTHER,MI,8/15/2003 20:30 +Ogdensburg,,LIGHT,NJ,8/15/2003 21:20 +Salem,RED,LIGHT,OR,8/15/2003 21:30 +Wheeling,,CYLINDER,WV,8/15/2003 21:30 +Millinocket,,LIGHT,ME,8/15/2003 22:00 +Miami,,OVAL,FL,8/15/2003 22:30 +Kerman,,FLASH,CA,8/15/2003 23:00 +Issaquah,,TRIANGLE,WA,8/15/2003 23:15 +Richfield,,FIREBALL,UT,8/15/2003 23:30 +Pasadena,,SPHERE,CA,8/16/2003 0:30 +Sacramento,,CHEVRON,CA,8/16/2003 5:06 +Chandler,,OTHER,AZ,8/16/2003 15:55 +Houston,,,TX,8/16/2003 16:00 +Houston,,FORMATION,TX,8/16/2003 17:00 +Wheaton,,CYLINDER,IL,8/16/2003 19:00 +Lodi,,,CA,8/16/2003 21:00 +Kern County,GREEN,TEARDROP,CA,8/16/2003 21:30 +Bakersfield,,,CA,8/16/2003 21:45 +Beaumont,,VARIOUS,CA,8/16/2003 23:00 +Bloomington,,FORMATION,CA,8/16/2003 23:00 +Las Vegas,,FIREBALL,NV,8/16/2003 23:00 +Seaside,,LIGHT,OR,8/16/2003 23:00 +Narragansett,ORANGE YELLOW,DIAMOND,RI,8/17/2003 0:00 +San Diego,,TRIANGLE,CA,8/17/2003 0:00 +Federal Way,GREEN BLUE,EGG,WA,8/17/2003 0:30 +Lakewood,,OTHER,CA,8/17/2003 0:50 +Joliet,,DISK,IL,8/17/2003 1:00 +Woodland,,FORMATION,CA,8/17/2003 1:13 +Los Angeles,,LIGHT,CA,8/17/2003 1:30 +Madison,,LIGHT,WI,8/17/2003 4:00 +Mission Viejo,,LIGHT,CA,8/17/2003 10:00 +Weed,,CIRCLE,CA,8/17/2003 14:20 +Kirkland,,CIRCLE,WA,8/17/2003 16:15 +Wichita,,CIGAR,KS,8/17/2003 16:30 +Fort Lauderdale,,OVAL,FL,8/17/2003 18:43 +Alfred,,RECTANGLE,ME,8/17/2003 20:00 +Tustin,,LIGHT,CA,8/17/2003 20:55 +Bartlesville,,LIGHT,OK,8/17/2003 21:30 +Gracemont,,FIREBALL,OK,8/17/2003 22:00 +Sedro-Woolley,,FLASH,WA,8/17/2003 22:00 +Eagle Lake Manor,,DIAMOND,WI,8/18/2003 15:00 +Ridgefield,ORANGE,CYLINDER,WA,8/18/2003 20:00 +Rockledge,,OTHER,FL,8/18/2003 20:00 +Culpeper,,,VA,8/18/2003 21:00 +Wyandotte,,,MI,8/18/2003 21:55 +Rockerville,,TRIANGLE,SD,8/18/2003 23:00 +Council Bluffs,,DISK,IA,8/19/2003 1:00 +New York City,,CIRCLE,NY,8/19/2003 2:00 +Griffith,,TRIANGLE,IN,8/19/2003 3:30 +Hinsdale,,OVAL,IL,8/19/2003 4:50 +Council Bluffs,,,IA,8/19/2003 5:15 +Chandler,,CONE,AZ,8/19/2003 21:00 +Mansfield,,FLASH,PA,8/19/2003 21:30 +Palmer,,LIGHT,MA,8/20/2003 0:00 +Burbank,RED,FIREBALL,CA,8/20/2003 0:15 +Lynn Haven,,TRIANGLE,FL,8/20/2003 1:00 +San Antonio,RED BLUE,LIGHT,TX,8/20/2003 11:30 +Bowling Green,,TRIANGLE,KY,8/20/2003 19:00 +Dallas,,DIAMOND,TX,8/20/2003 20:30 +San Antonio,GREEN,CIGAR,TX,8/20/2003 20:35 +Woodside,,DIAMOND,CA,8/20/2003 21:25 +Henderson,,FORMATION,NC,8/20/2003 21:30 +San Rafael,BLUE,LIGHT,CA,8/20/2003 21:40 +Bowling Green,,OTHER,KY,8/20/2003 21:55 +Johns Creek,,TRIANGLE,GA,8/20/2003 22:00 +Manlius,,CIRCLE,NY,8/20/2003 22:00 +Sarasota,,FORMATION,FL,8/20/2003 22:00 +Bellflower,RED,FIREBALL,CA,8/20/2003 22:30 +Lakewood,,SPHERE,CA,8/20/2003 22:30 +Woodinville,,LIGHT,WA,8/20/2003 23:22 +Essexville,,LIGHT,MI,8/21/2003 1:30 +Bellingham,,EGG,WA,8/21/2003 13:00 +Las Vegas,,,NV,8/21/2003 20:00 +Bethel,,DISK,OH,8/21/2003 21:05 +Atlantic Ocean,,,RI,8/21/2003 21:29 +Folly Beach,YELLOW,LIGHT,SC,8/21/2003 22:40 +Bristol,,DIAMOND,IN,8/21/2003 23:15 +Rentz,,LIGHT,GA,8/22/2003 1:00 +Crown Point,,DISK,IN,8/22/2003 4:30 +Antioch,,,TN,8/22/2003 20:10 +Fort Worth,,CIGAR,TX,8/22/2003 21:15 +Columbus,,VARIOUS,OH,8/22/2003 21:30 +Wichita,,OTHER,KS,8/22/2003 21:30 +Rome,,,GA,8/22/2003 21:45 +Minot,ORANGE YELLOW,OVAL,ND,8/22/2003 22:30 +Hillsboro,,DISK,OH,8/22/2003 23:00 +Ballston Lake,,TRIANGLE,NY,8/22/2003 23:30 +West Springfield,GREEN,OTHER,MA,8/23/2003 1:30 +Moline,,LIGHT,IL,8/23/2003 2:00 +Salt Lake City,,LIGHT,UT,8/23/2003 5:30 +Midland,,DISK,MI,8/23/2003 15:00 +Reno,,SPHERE,NV,8/23/2003 15:00 +Sedona,,OVAL,AZ,8/23/2003 15:00 +Hollywood,,LIGHT,CA,8/23/2003 16:00 +Reno,,LIGHT,NV,8/23/2003 17:00 +Hallandale,,DISK,FL,8/23/2003 18:15 +San Marcos,GREEN,LIGHT,CA,8/23/2003 21:10 +St. Charles,ORANGE,TRIANGLE,MO,8/23/2003 21:55 +Henderson,,OVAL,NV,8/23/2003 22:23 +Montebello,,DIAMOND,CA,8/23/2003 23:00 +San Marcos,,OTHER,CA,8/23/2003 23:00 +Atlanta,,,GA,8/24/2003 0:00 +Montebello,RED,FIREBALL,CA,8/24/2003 0:12 +Montebello,RED,LIGHT,CA,8/24/2003 0:15 +Mt. Laguna,BLUE,LIGHT,CA,8/24/2003 0:20 +New York City,,FLASH,NY,8/24/2003 1:00 +Monterey Park,RED,CIRCLE,CA,8/24/2003 1:05 +Minot,,OVAL,ND,8/24/2003 2:00 +Venice,,FLASH,NE,8/24/2003 3:30 +Venice,YELLOW,LIGHT,NE,8/24/2003 3:30 +Hampton Beach,,DISK,NH,8/24/2003 9:00 +Oswego,,CIRCLE,NY,8/24/2003 10:15 +Santa Barbara,,DISK,CA,8/24/2003 11:30 +Watchung,,CIRCLE,NJ,8/24/2003 11:55 +Carolina Beach,,DISK,NC,8/24/2003 14:00 +Westland,,DISK,MI,8/24/2003 14:00 +Wahpeton,ORANGE,LIGHT,ND,8/24/2003 14:42 +Littleton,,SPHERE,MA,8/24/2003 15:15 +Monroe,BLUE,FIREBALL,WA,8/24/2003 15:50 +Bothell,,,WA,8/24/2003 16:00 +Monroe,,FIREBALL,WA,8/24/2003 16:00 +Garfield,,LIGHT,NJ,8/24/2003 19:30 +Tinton Falls,,CIRCLE,NJ,8/24/2003 21:00 +Anaheim Hills,,LIGHT,CA,8/24/2003 21:15 +Mount Shasta,,LIGHT,CA,8/24/2003 22:00 +Los Angeles,,LIGHT,CA,8/24/2003 23:00 +Maumee,,CONE,OH,8/25/2003 0:30 +Lafayette,,FLASH,IN,8/25/2003 1:00 +Orlando,,LIGHT,FL,8/25/2003 1:42 +Grass Valley,,TRIANGLE,CA,8/25/2003 2:30 +South Daytona Beach,,LIGHT,FL,8/25/2003 3:45 +Sunbury,RED,TRIANGLE,OH,8/25/2003 4:45 +Lompoc,,DISK,CA,8/25/2003 14:25 +Palm Desert,,LIGHT,CA,8/25/2003 20:30 +Phoenix,,,AZ,8/25/2003 21:45 +Roseville,,TRIANGLE,CA,8/25/2003 21:45 +Tulsa,,TRIANGLE,OK,8/25/2003 22:35 +Fort Smith,,OVAL,AR,8/26/2003 0:00 +Jacksonville,,VARIOUS,FL,8/26/2003 2:00 +Greenwood,,,WI,8/26/2003 3:30 +Billerica,,OTHER,MA,8/26/2003 9:45 +Indiana,,CYLINDER,IN,8/26/2003 17:00 +Myrtle Beach,ORANGE,OTHER,SC,8/26/2003 21:00 +Orlando,,CIRCLE,FL,8/26/2003 21:03 +Everett,,EGG,WA,8/26/2003 21:05 +Poway,YELLOW GREEN,CIRCLE,CA,8/26/2003 21:05 +Burbank,,,CA,8/26/2003 21:10 +Christoval,,LIGHT,TX,8/26/2003 21:30 +Asheville,,,NC,8/26/2003 21:45 +North Myrtle Beach,,LIGHT,SC,8/26/2003 22:00 +Patriot,,LIGHT,OH,8/26/2003 22:30 +North Hollywood,RED,LIGHT,CA,8/26/2003 23:25 +Los Angeles,RED,LIGHT,CA,8/26/2003 23:30 +Westminster,,TRIANGLE,CO,8/27/2003 0:10 +Stryker,,FLASH,OH,8/27/2003 2:00 +Davison,,LIGHT,MI,8/27/2003 3:30 +Jacksonville,,RECTANGLE,FL,8/27/2003 6:15 +Eulonia,BLUE,SPHERE,GA,8/27/2003 10:30 +Springfield,,CIGAR,OR,8/27/2003 19:00 +Sedro-Woolley,,LIGHT,WA,8/27/2003 20:10 +Richmond,,TRIANGLE,VA,8/27/2003 20:30 +Mesa,ORANGE,FIREBALL,AZ,8/27/2003 20:45 +Marblehead,,FLASH,OH,8/27/2003 21:15 +Maricopa,ORANGE,DIAMOND,AZ,8/27/2003 21:45 +San Diego,,OVAL,CA,8/27/2003 21:55 +Akron,,CIRCLE,OH,8/27/2003 22:00 +San Diego,,LIGHT,CA,8/27/2003 22:00 +Houston,,,TX,8/27/2003 23:00 +Ferrisburg,,LIGHT,VT,8/28/2003 0:05 +Delaware,,LIGHT,OH,8/28/2003 1:30 +Sanders,,LIGHT,AZ,8/28/2003 6:00 +Apache Junction,,DISK,AZ,8/28/2003 6:10 +McClellanville,,OTHER,SC,8/28/2003 13:30 +Springfield,,OVAL,OR,8/28/2003 18:30 +Surprise,,OTHER,AZ,8/28/2003 19:30 +Glenburn,ORANGE,OTHER,ME,8/28/2003 20:00 +Fort Smith,ORANGE,LIGHT,AR,8/28/2003 21:04 +Sacramento,,CIGAR,CA,8/28/2003 21:15 +Eunice,,LIGHT,LA,8/28/2003 21:45 +Milton,,CIGAR,FL,8/28/2003 22:30 +Coldwater,GREEN,,MI,8/28/2003 23:00 +Deckers,,LIGHT,CO,8/28/2003 23:00 +Kingman,,TRIANGLE,AZ,8/28/2003 23:00 +Montebello,RED,LIGHT,CA,8/28/2003 23:00 +New York City,,TEARDROP,NY,8/28/2003 23:00 +Sandstone,RED,CIRCLE,MN,8/28/2003 23:00 +Austin,,LIGHT,TX,8/28/2003 23:15 +Evansville,,OTHER,IN,8/28/2003 23:30 +Hollywood,,TRIANGLE,CA,8/28/2003 23:30 +Katy,,VARIOUS,TX,8/29/2003 1:00 +Barstow,YELLOW GREEN BLUE,DIAMOND,CA,8/29/2003 4:00 +Atlantic City,,LIGHT,NJ,8/29/2003 20:58 +Portland,,TRIANGLE,OR,8/29/2003 22:30 +Margate,,FIREBALL,FL,8/29/2003 23:45 +Mt. Katahdin area,,EGG,ME,8/30/2003 0:00 +Merrick,,OTHER,NY,8/30/2003 0:15 +San Benito,RED,CHEVRON,TX,8/30/2003 1:30 +San Bernardino,,LIGHT,CA,8/30/2003 4:05 +Apache Junction,BLUE,LIGHT,AZ,8/30/2003 4:30 +Richmond,,CIRCLE,VA,8/30/2003 6:00 +Knoxville,,TRIANGLE,TN,8/30/2003 12:30 +Everett,,VARIOUS,WA,8/30/2003 13:00 +Seattle,,CYLINDER,WA,8/30/2003 13:30 +Columbus,,FORMATION,OH,8/30/2003 14:00 +Pasadena,,VARIOUS,CA,8/30/2003 18:40 +Heber,,CIGAR,AZ,8/30/2003 19:00 +Sayreville,,OVAL,NJ,8/30/2003 20:00 +Daytona Beach,,OTHER,FL,8/30/2003 21:00 +Harrisburg,,,PA,8/30/2003 21:00 +Montebello,RED,FIREBALL,CA,8/30/2003 21:00 +Boca Raton,,CIRCLE,FL,8/30/2003 21:15 +Linden,,DISK,NJ,8/30/2003 21:30 +Springfield,BLUE,OVAL,NJ,8/30/2003 21:45 +Montebello,RED,LIGHT,CA,8/30/2003 22:00 +Rome,,CIRCLE,PA,8/30/2003 22:00 +Sandy,,TRIANGLE,UT,8/30/2003 22:15 +Rosemead,RED,CIRCLE,CA,8/30/2003 22:25 +Yarmouth,,LIGHT,ME,8/30/2003 22:30 +Whittier,RED,LIGHT,CA,8/30/2003 22:35 +Alhambra,,LIGHT,CA,8/30/2003 23:00 +Los Angeles,RED,TRIANGLE,CA,8/30/2003 23:00 +Monterey Park,RED,LIGHT,CA,8/30/2003 23:00 +Nisswa,,OTHER,MN,8/30/2003 23:00 +Springfield,,OTHER,NJ,8/30/2003 23:00 +Sisseton,,FORMATION,SD,8/30/2003 23:15 +Vining,,OTHER,MN,8/30/2003 23:15 +Vining,,TRIANGLE,MI,8/30/2003 23:15 +Brainerd,RED,FORMATION,MN,8/30/2003 23:30 +Los Angeles,,LIGHT,CA,8/30/2003 23:30 +Maricopa,,,AZ,8/30/2003 23:30 +Spokane,,,WA,8/30/2003 23:50 +Albuquerque,RED,LIGHT,NM,8/30/2003 23:55 +Los Angeles,,SPHERE,CA,8/30/2003 23:55 +McGregor,,OTHER,MN,8/30/2003 23:55 +McGregor,RED,OTHER,MN,8/30/2003 23:55 +McGregor,,TRIANGLE,MN,8/30/2003 23:55 +McGregor,RED,CHEVRON,MN,8/30/2003 23:59 +Montebello,RED,FIREBALL,CA,8/31/2003 0:11 +Montebello,RED,CIRCLE,CA,8/31/2003 0:20 +Los Angeles,,LIGHT,CA,8/31/2003 0:27 +Roy,,FIREBALL,WA,8/31/2003 0:30 +Montebello,RED,LIGHT,CA,8/31/2003 1:00 +Salem,,,OR,8/31/2003 2:00 +Avenal,,LIGHT,CA,8/31/2003 2:30 +Panama City Beach,,CIRCLE,FL,8/31/2003 5:00 +Centereach,GREEN,OTHER,NY,8/31/2003 5:20 +West Palm Beach,,CIGAR,FL,8/31/2003 11:30 +El Paso,,CIRCLE,TX,8/31/2003 13:15 +West Sayville,,LIGHT,NY,8/31/2003 20:11 +Burbank,ORANGE,LIGHT,CA,8/31/2003 20:30 +Salem,,LIGHT,OR,8/31/2003 20:32 +Elberon,,OTHER,VA,8/31/2003 20:35 +Great Basin NP,,,NV,8/31/2003 21:00 +Milwaukee,,TEARDROP,WI,8/31/2003 21:00 +La Canada,,OTHER,CA,8/31/2003 21:02 +Oakland,,TRIANGLE,CA,8/31/2003 21:50 +Cedar Key,,LIGHT,FL,8/31/2003 22:00 +Madison,,LIGHT,WI,8/31/2003 22:30 +Ryan,,LIGHT,IA,8/31/2003 22:30 +Yarmouth,,TRIANGLE,ME,8/31/2003 22:30 +Dansville,,FIREBALL,NY,8/31/2003 22:35 +San Jacinto,RED GREEN,DISK,CA,8/31/2003 22:44 +Los Angeles,RED,LIGHT,CA,8/31/2003 23:00 +Springfield,,TEARDROP,NJ,8/31/2003 23:00 +Mulino,,TRIANGLE,OR,8/31/2003 23:30 +Mt. Rainier Nat'l Park,,,WA,9/1/2003 0:30 +Portland,RED YELLOW,LIGHT,OR,9/1/2003 1:30 +La Mesa,,,CA,9/1/2003 1:50 +Van Nuys,,CIRCLE,CA,9/1/2003 4:30 +Springfield,,OVAL,OR,9/1/2003 11:00 +Springfield,,TEARDROP,VA,9/1/2003 14:00 +Van Nuys,,SPHERE,CA,9/1/2003 16:00 +Dundalk,,SPHERE,MD,9/1/2003 17:00 +Cypress,,CIRCLE,TX,9/1/2003 17:25 +Florence,,,KY,9/1/2003 17:30 +Denver,,LIGHT,CO,9/1/2003 18:15 +Los Angeles,,DISK,CA,9/1/2003 19:30 +Reseda,,OTHER,CA,9/1/2003 20:05 +Seattle,,LIGHT,WA,9/1/2003 20:30 +Country,,LIGHT,IN,9/1/2003 21:00 +Woodland Hills,,CIRCLE,CA,9/1/2003 22:15 +Grants Pass,,OTHER,OR,9/1/2003 23:00 +Remer,,LIGHT,MN,9/1/2003 23:00 +Savannah,RED BLUE,LIGHT,GA,9/1/2003 23:30 +Edmonds,,LIGHT,WA,9/2/2003 4:45 +Hillsboro,,SPHERE,OR,9/2/2003 19:23 +Lyons,RED,LIGHT,CO,9/2/2003 21:30 +University Place,,TRIANGLE,WA,9/2/2003 22:20 +Kiawah Island,,TRIANGLE,SC,9/3/2003 3:15 +Fort Worth,,DISK,TX,9/3/2003 16:45 +Ponca City,,DISK,OK,9/3/2003 19:10 +San Diego,,LIGHT,CA,9/3/2003 19:55 +Montello,,LIGHT,NH,9/3/2003 20:36 +Federal Way,,TRIANGLE,WA,9/3/2003 21:00 +Seattle,,FORMATION,WA,9/3/2003 22:00 +Fort Worth,,TRIANGLE,TX,9/3/2003 22:45 +Coal Valley,,FORMATION,IL,9/3/2003 23:05 +Arlington,RED,LIGHT,TX,9/3/2003 23:30 +Campo,,LIGHT,CA,9/3/2003 23:30 +Omaha,,,NE,9/3/2003 23:30 +Thornton,,LIGHT,CO,9/3/2003 23:45 +Rochelle,GREEN,FIREBALL,IL,9/4/2003 3:05 +Rolla,GREEN,OVAL,MO,9/4/2003 3:05 +Minneapolis,BLUE,FORMATION,MN,9/4/2003 3:15 +Gilmanton,,DISK,NH,9/4/2003 6:00 +Walnut Creek,,CIRCLE,CA,9/4/2003 20:20 +Belmont,,FIREBALL,CA,9/4/2003 20:30 +Mariposa,,FIREBALL,CA,9/4/2003 20:40 +Roseville,GREEN,TEARDROP,CA,9/4/2003 20:45 +Forestville,,FIREBALL,CA,9/4/2003 21:00 +Sedro-Woolley,,FLASH,WA,9/4/2003 21:40 +Oak Grove,,LIGHT,MO,9/4/2003 22:15 +Shoto,,LIGHT,WI,9/4/2003 22:15 +South Bend,BLUE,,IN,9/5/2003 6:30 +Phoenix,,OTHER,AZ,9/5/2003 8:48 +Lexington,,CROSS,KY,9/5/2003 17:20 +San Diego,,OVAL,CA,9/5/2003 17:50 +Reno,,LIGHT,NV,9/5/2003 20:45 +Chandler,,TRIANGLE,AZ,9/5/2003 21:30 +Calaveras Big Trees,,LIGHT,CA,9/5/2003 22:00 +Burien,,RECTANGLE,WA,9/5/2003 23:30 +Hillsboro,,CIRCLE,OR,9/5/2003 23:30 +San Marcos,,CIRCLE,CA,9/5/2003 23:45 +New York City,GREEN,OTHER,NY,9/6/2003 0:50 +Kearny,RED YELLOW GREEN,CIRCLE,NJ,9/6/2003 3:30 +Myrtle Beach,,DISK,SC,9/6/2003 14:00 +Carrabasset Valley,,FLASH,ME,9/6/2003 20:30 +Asheville,,,NC,9/6/2003 21:00 +Pleasant Hill,,OTHER,MO,9/6/2003 21:00 +Beach Haven Terrace,,LIGHT,NJ,9/6/2003 22:00 +Conway,,CHEVRON,SC,9/6/2003 22:00 +New York City,,CIGAR,NY,9/6/2003 23:30 +Montebello,,FIREBALL,CA,9/7/2003 0:00 +Maricopa,,LIGHT,AZ,9/7/2003 3:00 +Weehawken,ORANGE,FORMATION,NJ,9/7/2003 10:05 +Indianapolis,,SPHERE,IN,9/7/2003 17:45 +Millville,,LIGHT,NJ,9/7/2003 19:55 +Riverside,,DISK,CA,9/7/2003 21:00 +Cypress,,CIRCLE,TX,9/7/2003 22:00 +Cedar Rapids,,VARIOUS,IA,9/8/2003 0:00 +Maui,,FLASH,HI,9/8/2003 3:30 +New York City,,VARIOUS,NY,9/8/2003 20:00 +New York City,,DISK,NY,9/8/2003 22:00 +North Myrtle Beach,,CIRCLE,SC,9/8/2003 22:00 +Wichita Falls,,SPHERE,TX,9/8/2003 22:15 +Maple Valley,GREEN,LIGHT,WA,9/8/2003 22:20 +New York City,,DISK,NY,9/8/2003 22:35 +Santa Fe,RED GREEN,LIGHT,NM,9/8/2003 23:00 +Westport,GREEN,OVAL,CT,9/8/2003 23:00 +Bedminster,,OVAL,NJ,9/8/2003 23:05 +Anchorage,,LIGHT,AK,9/8/2003 23:30 +Renton,GREEN,SPHERE,WA,9/8/2003 23:30 +Myrtle Beach,ORANGE,CIRCLE,SC,9/9/2003 0:00 +Fort Lauderdale,,TRIANGLE,FL,9/9/2003 0:30 +Miami,,TRIANGLE,FL,9/9/2003 0:30 +Punta Gorda,,OTHER,FL,9/9/2003 0:30 +Tampa,,CIRCLE,FL,9/9/2003 0:30 +Tampa,,TRIANGLE,FL,9/9/2003 0:30 +Sarasota,RED YELLOW,FIREBALL,FL,9/9/2003 0:31 +Clearwater,,TRIANGLE,FL,9/9/2003 0:40 +Caribbean Sea,,FIREBALL,FL,9/9/2003 2:00 +Port St. Lucie,,FIREBALL,FL,9/9/2003 2:30 +Rogersville,,LIGHT,TN,9/9/2003 5:30 +Lake Worth,ORANGE,OTHER,FL,9/9/2003 12:23 +Los Angeles,,VARIOUS,CA,9/9/2003 18:27 +Clinton,,OVAL,MO,9/9/2003 20:45 +Ellicott City,,TRIANGLE,MD,9/9/2003 20:45 +Norfolk,,LIGHT,NY,9/9/2003 21:00 +North Richland Hills,,LIGHT,TX,9/9/2003 21:00 +Calexico,,CIRCLE,CA,9/9/2003 22:00 +Myrtle Beach,ORANGE,LIGHT,SC,9/9/2003 22:00 +Myrtle Beach,ORANGE,OTHER,SC,9/9/2003 22:00 +Myrtle Beach,YELLOW,SPHERE,SC,9/9/2003 22:00 +Prescott,,,AZ,9/9/2003 22:00 +Surfside Beach,,LIGHT,SC,9/9/2003 22:00 +Tallahassee,,OTHER,FL,9/9/2003 22:15 +Myrtle Beach,,SPHERE,SC,9/9/2003 23:30 +Waterville,,OTHER,ME,9/9/2003 23:40 +Weatherford,,FLASH,TX,9/10/2003 4:38 +Valley Springs,,CIRCLE,CA,9/10/2003 5:10 +Converse,,TRIANGLE,TX,9/10/2003 5:30 +San Antonio,,FORMATION,TX,9/10/2003 9:00 +McAllen,,CIRCLE,TX,9/10/2003 10:30 +Osterburg,,TEARDROP,PA,9/10/2003 12:30 +St. Petersburg,,DIAMOND,FL,9/10/2003 15:00 +New York City,,DISK,NY,9/10/2003 16:20 +North Myrtle Beach,RED,CIRCLE,SC,9/10/2003 18:30 +Glenfield,,CIRCLE,NY,9/10/2003 20:00 +Marana,ORANGE,LIGHT,AZ,9/10/2003 20:10 +Cape May,ORANGE,FORMATION,NJ,9/10/2003 20:30 +Myrtle Beach,ORANGE,CIRCLE,SC,9/10/2003 20:30 +Bozeman,,OTHER,MT,9/10/2003 21:00 +Soap Lake,,CIRCLE,WA,9/10/2003 21:30 +Clinton,,,MO,9/10/2003 22:00 +Stanley,ORANGE,,VA,9/10/2003 22:00 +Patchogue,,LIGHT,NY,9/10/2003 22:30 +Kenai,,FLASH,AK,9/10/2003 23:30 +Commerce City,,FORMATION,CO,9/11/2003 0:00 +Windsor,,TRIANGLE,MO,9/11/2003 0:10 +Barberton,,LIGHT,OH,9/11/2003 1:30 +Mandeville,,TRIANGLE,LA,9/11/2003 2:13 +Irving,,CIGAR,TX,9/11/2003 2:45 +Lake Charles,RED,SPHERE,LA,9/11/2003 3:00 +Oakdale,,OVAL,IL,9/11/2003 19:00 +Richmond,,FLASH,VA,9/11/2003 19:00 +Springfield,,OVAL,OH,9/11/2003 19:50 +Orwigsburg,,CIRCLE,PA,9/11/2003 20:00 +Saratoga,,CIRCLE,CA,9/11/2003 21:00 +Tupper Lake,ORANGE,LIGHT,NY,9/11/2003 21:00 +Sonoran Desert,,LIGHT,AZ,9/11/2003 21:30 +Mebane,RED GREEN,LIGHT,NC,9/11/2003 22:00 +Toledo,,TRIANGLE,OH,9/11/2003 22:00 +Alexandria,GREEN,CIRCLE,VA,9/11/2003 23:28 +Alexandria,,CIRCLE,VA,9/11/2003 23:30 +Ringgold,,,GA,9/12/2003 1:00 +Selah,,DISK,WA,9/12/2003 4:15 +Turnersville,,RECTANGLE,NJ,9/12/2003 6:00 +Christiansburg,,CIRCLE,VA,9/12/2003 13:09 +Alachua County,BLUE,LIGHT,FL,9/12/2003 20:00 +Beach City,,LIGHT,TX,9/12/2003 20:00 +Fort Plain,,TRIANGLE,NY,9/12/2003 20:40 +East Palo Alto,,CIRCLE,CA,9/12/2003 20:45 +Yakima,,,WA,9/12/2003 20:50 +New Port Richey,,OTHER,FL,9/12/2003 21:00 +Malvern,RED,LIGHT,OH,9/12/2003 21:07 +Vermillion,,RECTANGLE,SD,9/12/2003 22:20 +Claremont,,FIREBALL,CA,9/12/2003 23:15 +Troy,,TRIANGLE,NY,9/12/2003 23:50 +Los Angeles,BLUE,FLASH,CA,9/13/2003 1:14 +Seattle,,OTHER,WA,9/13/2003 1:28 +Brick,,,NJ,9/13/2003 3:30 +Yelm,RED,TRIANGLE,WA,9/13/2003 12:30 +El Reno,,TRIANGLE,OK,9/13/2003 13:00 +Tacoma,,SPHERE,WA,9/13/2003 14:30 +Tacoma,,FORMATION,WA,9/13/2003 15:35 +Mountain Home,,CIGAR,AR,9/13/2003 17:06 +Denver,,OTHER,CO,9/13/2003 23:15 +Everett,,,WA,9/14/2003 1:20 +Mesa,RED YELLOW BLUE,TRIANGLE,AZ,9/14/2003 2:00 +Montgomery,,CYLINDER,TX,9/14/2003 8:15 +Lake Stevens,,CYLINDER,WA,9/14/2003 15:00 +Costa Mesa,,FIREBALL,CA,9/14/2003 16:00 +Honolulu,,CIRCLE,HI,9/14/2003 16:30 +Coffeyville,,,KS,9/14/2003 21:00 +East Falmouth,RED ORANGE GREEN,VARIOUS,MA,9/14/2003 21:00 +Arlington,,LIGHT,WA,9/14/2003 21:20 +Vernal,,LIGHT,UT,9/14/2003 21:30 +New York City,ORANGE,LIGHT,NY,9/14/2003 22:30 +Columbus,,OTHER,OH,9/15/2003 0:00 +PortTownsend,,CIRCLE,WA,9/15/2003 1:00 +Lincoln,BLUE,,NE,9/15/2003 3:20 +Cromwell,,LIGHT,MN,9/15/2003 5:30 +Valliant,,OTHER,OK,9/15/2003 11:30 +Hugo,,CYLINDER,OK,9/15/2003 15:00 +Socorro,,RECTANGLE,NM,9/15/2003 17:50 +Morris Plains,,FORMATION,NJ,9/15/2003 18:00 +Tacna,,LIGHT,AZ,9/15/2003 19:00 +Ashdown,,CIGAR,AR,9/15/2003 19:30 +Marana,,LIGHT,AZ,9/15/2003 20:00 +Pireway,ORANGE,LIGHT,NC,9/15/2003 20:00 +Larkspur,,CIRCLE,CA,9/15/2003 20:26 +North Myrtle Beach,,LIGHT,SC,9/15/2003 20:30 +Abingdon,,CIRCLE,VA,9/15/2003 21:00 +Omaha,,,NE,9/15/2003 21:02 +Snydersburg,,TRIANGLE,PA,9/15/2003 21:35 +Mount Gilead,,,NC,9/15/2003 21:42 +Columbus,,,OH,9/15/2003 22:00 +Lake Charles,,DISK,LA,9/15/2003 22:00 +Michigan,YELLOW,DISK,MI,9/15/2003 22:00 +Denver,,FORMATION,CO,9/15/2003 22:15 +North Kingstown,,FORMATION,RI,9/15/2003 22:30 +Trenton,,FIREBALL,OH,9/15/2003 22:30 +Flint,,OVAL,MI,9/15/2003 23:00 +Adrian,,OVAL,MI,9/16/2003 7:00 +Sandy,,SPHERE,UT,9/16/2003 13:00 +Elba,,LIGHT,AL,9/16/2003 20:15 +Lakeside,,TRIANGLE,OR,9/16/2003 20:20 +East Falmouth,RED GREEN,LIGHT,MA,9/16/2003 21:00 +Framingham,,LIGHT,MA,9/16/2003 22:00 +Parishville,,,NY,9/16/2003 22:00 +Fort Worth,,LIGHT,TX,9/16/2003 22:15 +Springfield,,FLASH,OR,9/17/2003 2:00 +Elk Grove,,LIGHT,CA,9/17/2003 3:00 +Indianapolis,,VARIOUS,IN,9/17/2003 6:30 +Charlotte,,LIGHT,NC,9/17/2003 10:00 +Montgomeryville,,LIGHT,PA,9/17/2003 19:30 +Milton,,TRIANGLE,FL,9/17/2003 20:10 +Atlanta,,EGG,GA,9/17/2003 20:30 +Big Spring,,OVAL,TX,9/17/2003 20:52 +Corbin,,LIGHT,KY,9/17/2003 21:00 +Sharon,RED GREEN BLUE,LIGHT,VT,9/17/2003 21:30 +Saratoga Springs,,,NY,9/17/2003 21:45 +Bristol,,RECTANGLE,NH,9/17/2003 22:00 +Kodak,,CIRCLE,TN,9/17/2003 22:00 +Lake Orion,,CIRCLE,MI,9/17/2003 22:00 +Sacramento,,LIGHT,CA,9/17/2003 22:30 +Orlando,,TRIANGLE,FL,9/17/2003 22:35 +Honolulu,RED,SPHERE,HI,9/17/2003 23:30 +Surf City,,LIGHT,NC,9/18/2003 4:00 +San Francisco,,SPHERE,CA,9/18/2003 5:15 +Lancaster,,SPHERE,CA,9/18/2003 11:30 +West Palm Beach,,CIGAR,FL,9/18/2003 13:30 +Rocky Mount,GREEN,FLASH,NC,9/18/2003 14:45 +Tucson,,CIRCLE,AZ,9/18/2003 16:00 +Edmond,,CHEVRON,OK,9/18/2003 21:00 +Colorado Springs,YELLOW,RECTANGLE,CO,9/18/2003 21:30 +Lompoc,RED ORANGE,FLASH,CA,9/18/2003 22:00 +Seattle,,SPHERE,WA,9/18/2003 22:48 +Red Bank,ORANGE BLUE,FLASH,NJ,9/19/2003 1:15 +Cherryville,,RECTANGLE,NC,9/19/2003 1:30 +Longmont,,LIGHT,CO,9/19/2003 7:15 +California City,,CYLINDER,CA,9/19/2003 8:30 +Rancho Cordova,,CIRCLE,CA,9/19/2003 12:30 +na,,TEARDROP,WY,9/19/2003 14:00 +Peralta,,TEARDROP,NM,9/19/2003 14:30 +Ethel,,OVAL,LA,9/19/2003 16:00 +Ethel,,OVAL,LA,9/19/2003 16:00 +Belen,,OVAL,NM,9/19/2003 18:50 +Albuquerque,RED,LIGHT,NM,9/19/2003 19:00 +Albuquerque,,SPHERE,NM,9/19/2003 19:00 +Fenton,,SPHERE,MO,9/19/2003 20:00 +Mammoth Lakes,,LIGHT,CA,9/19/2003 20:00 +Onawa,,VARIOUS,IA,9/19/2003 20:00 +West Point,ORANGE,LIGHT,NE,9/19/2003 20:00 +Cloverdale,RED,OTHER,IN,9/19/2003 20:30 +Williamstown,,TRIANGLE,NJ,9/19/2003 20:39 +Hartsel,RED,LIGHT,CO,9/19/2003 21:00 +Irving,,CIGAR,TX,9/19/2003 22:00 +Hutchinson,,TRIANGLE,KS,9/19/2003 22:30 +Sherman,GREEN,LIGHT,TX,9/20/2003 1:57 +Hanford Site,,FORMATION,WA,9/20/2003 3:54 +Idhna,,LIGHT,OR,9/20/2003 8:00 +Amherst,,TRIANGLE,MA,9/20/2003 16:30 +Frankfort,,DISK,IN,9/20/2003 18:00 +Fraser,,,MI,9/20/2003 18:00 +Fraser,,,MI,9/20/2003 18:00 +Fraser,,LIGHT,MI,9/20/2003 18:00 +Saugus,,DISK,MA,9/20/2003 18:00 +Sedona,,CYLINDER,AZ,9/20/2003 18:15 +Pleasant Ridge,,,MI,9/20/2003 19:00 +Venice,,OTHER,NE,9/20/2003 20:30 +Maple Valley,,LIGHT,WA,9/20/2003 20:55 +Maryhill,,LIGHT,WA,9/20/2003 21:00 +Petaluma,,FIREBALL,CA,9/20/2003 21:14 +Blachly,,LIGHT,OR,9/20/2003 22:00 +Hickory,,CIRCLE,NC,9/20/2003 23:00 +Mooresville,,,NC,9/20/2003 23:30 +Elkin,,FIREBALL,NC,9/21/2003 10:00 +Corvallis,,,OR,9/21/2003 10:05 +San Francisco,,OTHER,CA,9/21/2003 12:29 +Milpitas,,,CA,9/21/2003 12:30 +Glendale,,SPHERE,CA,9/21/2003 15:37 +Oak View,,DISK,CA,9/21/2003 17:30 +Las Vegas,,CIRCLE,NV,9/21/2003 19:00 +Northwood,,LIGHT,NH,9/21/2003 19:30 +Bakersfield,,LIGHT,CA,9/21/2003 19:45 +Crescent City,,OTHER,CA,9/21/2003 20:05 +Fox Lake,,TRIANGLE,IL,9/21/2003 20:30 +Provincetown,RED BLUE,OTHER,MA,9/21/2003 21:15 +Lake George,,FLASH,NY,9/22/2003 3:00 +Garden city,,EGG,GA,9/22/2003 3:15 +Spokane,,FIREBALL,WA,9/22/2003 5:15 +Gilberts,,TRIANGLE,IL,9/22/2003 9:15 +Arlington,,OTHER,WA,9/22/2003 14:50 +Portland,,LIGHT,OR,9/22/2003 17:30 +Northfield,,LIGHT,MN,9/22/2003 19:00 +Santa Fe,,,NM,9/22/2003 19:30 +West Hills,,LIGHT,CA,9/22/2003 19:30 +Boonville,ORANGE,LIGHT,AR,9/22/2003 20:00 +Auburn,,TRIANGLE,ME,9/22/2003 21:00 +Cameron,,CIRCLE,OK,9/22/2003 21:00 +Columbia,,LIGHT,MO,9/22/2003 21:11 +Fort Smith,,FORMATION,AR,9/22/2003 21:30 +Phoenix,,LIGHT,AZ,9/22/2003 21:30 +Fort Collins,,TRIANGLE,CO,9/23/2003 1:05 +Fort Collins,,TRIANGLE,CO,9/23/2003 1:30 +Sherman,,LIGHT,TX,9/23/2003 3:26 +Portland,RED BLUE,LIGHT,OR,9/23/2003 4:27 +Lincoln City,,OVAL,OR,9/23/2003 13:23 +Palo Alto,,LIGHT,CA,9/23/2003 19:15 +Palm Beach Gardens,,,FL,9/23/2003 19:45 +Sonoma,,OTHER,CA,9/23/2003 20:00 +Portland,,SPHERE,OR,9/23/2003 20:16 +Morgan Hill,GREEN,OTHER,CA,9/23/2003 20:30 +Boss,,LIGHT,MO,9/23/2003 21:00 +Grafton,,LIGHT,IL,9/23/2003 21:00 +Cuba,,,MO,9/23/2003 21:30 +San Antonio,,FLASH,TX,9/23/2003 21:30 +Washington,RED GREEN,CIRCLE,WV,9/23/2003 21:30 +Seymour,,OTHER,IN,9/23/2003 22:15 +Sucsess,,TRIANGLE,AR,9/23/2003 22:30 +Breckenridge,,TRIANGLE,MN,9/23/2003 23:30 +Nashville,,TRIANGLE,TN,9/24/2003 1:53 +New York City,,SPHERE,NY,9/24/2003 2:30 +New York City,,SPHERE,NY,9/24/2003 2:40 +Potsdam,RED,TRIANGLE,NY,9/24/2003 3:00 +Charlotte,,LIGHT,NC,9/24/2003 8:40 +Colorado Springs,,SPHERE,CO,9/24/2003 10:55 +Ann Arbor,,CIGAR,MI,9/24/2003 11:30 +South Point,RED BLUE,LIGHT,OH,9/24/2003 11:32 +Floral Park,,SPHERE,NY,9/24/2003 18:00 +Pensacola,,FIREBALL,FL,9/24/2003 18:45 +Fort Lauderdale,,TRIANGLE,FL,9/24/2003 20:00 +Hoboken,BLUE,CIRCLE,NJ,9/24/2003 20:01 +St. George,,FLASH,UT,9/24/2003 20:35 +Cookeville,,VARIOUS,TN,9/24/2003 21:00 +Fort Edward,,CIGAR,NY,9/24/2003 21:00 +Fort Edward,,DISK,NY,9/24/2003 21:15 +Lake Orion,,CIRCLE,MI,9/24/2003 22:30 +Tooele,RED,TRIANGLE,UT,9/24/2003 23:00 +Portland,,CIRCLE,OR,9/24/2003 23:13 +Abilene,GREEN,VARIOUS,KS,9/25/2003 0:00 +Cape May,,SPHERE,NJ,9/25/2003 0:15 +Sarasota,,OTHER,FL,9/25/2003 0:35 +Kennewick,,LIGHT,WA,9/25/2003 1:00 +Park Rapids,RED,LIGHT,MN,9/25/2003 3:00 +Bellingham,ORANGE,LIGHT,WA,9/25/2003 7:00 +Ormond Beach,,OVAL,FL,9/25/2003 10:30 +Reno,,LIGHT,NV,9/25/2003 18:30 +Arlington,,CIRCLE,WA,9/25/2003 18:35 +Charlotte,,OVAL,NC,9/25/2003 19:10 +Bicknell,RED,LIGHT,IN,9/25/2003 20:00 +Traverse City,,DISK,MI,9/25/2003 20:00 +Dothan,,LIGHT,AL,9/25/2003 20:30 +Pensacola,GREEN,FIREBALL,FL,9/25/2003 20:45 +Newport,,FORMATION,AR,9/25/2003 21:00 +San Jose,,TRIANGLE,CA,9/25/2003 21:00 +Houston,,OTHER,TX,9/25/2003 22:20 +Marstons Mills,,,MA,9/25/2003 22:20 +Centerville,,CHEVRON,OH,9/26/2003 0:30 +Junction City,,TRIANGLE,OR,9/26/2003 1:44 +Pleasant Lake,,OVAL,MI,9/26/2003 3:07 +Miami,,TRIANGLE,FL,9/26/2003 4:00 +Seattle,,,WA,9/26/2003 13:15 +Ontario,,SPHERE,CA,9/26/2003 17:15 +Santa Clara,,SPHERE,CA,9/26/2003 18:30 +Logan,,CYLINDER,WV,9/26/2003 18:45 +Dora,,LIGHT,AR,9/26/2003 20:00 +Pitcairn,,LIGHT,NY,9/26/2003 20:24 +Wapato,ORANGE,LIGHT,WA,9/26/2003 20:25 +Point Roberts,,LIGHT,WA,9/26/2003 20:30 +Hudson,,CIRCLE,FL,9/26/2003 20:45 +Richmond,,LIGHT,KY,9/26/2003 21:00 +Myrtle Beach,,LIGHT,SC,9/26/2003 22:15 +Lakewood,RED YELLOW,CHEVRON,CO,9/26/2003 23:53 +Kittatas,,LIGHT,WA,9/27/2003 0:15 +DeKalb,,TRIANGLE,TX,9/27/2003 3:00 +Lake Stevens,,LIGHT,WA,9/27/2003 4:00 +Gray,RED BLUE,SPHERE,GA,9/27/2003 4:30 +Ask not to give this out.,BLUE,LIGHT,MN,9/27/2003 7:00 +Oroville,,OVAL,WA,9/27/2003 14:00 +Sumner,,SPHERE,WA,9/27/2003 15:20 +Johnson City,,CIRCLE,NY,9/27/2003 19:25 +Millville,,LIGHT,NJ,9/27/2003 19:55 +Catskill,,TRIANGLE,NY,9/27/2003 20:30 +George,,LIGHT,WA,9/27/2003 20:50 +Myrtle Beach,RED,LIGHT,SC,9/27/2003 22:00 +Seattle,GREEN,LIGHT,WA,9/27/2003 22:34 +Frisco,,TRIANGLE,TX,9/27/2003 23:15 +,,TRIANGLE,CA,9/28/2003 1:00 +Dyersburg,,OTHER,TN,9/28/2003 1:00 +Las Vegas,,TRIANGLE,NV,9/28/2003 1:04 +Richardson,,FORMATION,TX,9/28/2003 1:28 +Athens,,TRIANGLE,GA,9/28/2003 1:30 +Bristol,,TRIANGLE,TN,9/28/2003 1:30 +Roanoke,,CIRCLE,VA,9/28/2003 2:30 +Tacoma,,,WA,9/28/2003 4:00 +Marstons Mills,,OTHER,MA,9/28/2003 7:50 +Amory,,SPHERE,MS,9/28/2003 12:00 +Houston,,CYLINDER,TX,9/28/2003 17:30 +Santa Fe,,EGG,NM,9/28/2003 18:00 +Baker City,,RECTANGLE,OR,9/28/2003 19:29 +Santa Fe,,TEARDROP,NM,9/28/2003 19:30 +Cornelius,,DISK,OR,9/28/2003 21:30 +Bellevue,,LIGHT,WA,9/28/2003 22:00 +Oak Ridge,,LIGHT,NC,9/28/2003 23:00 +Olympia,,LIGHT,WA,9/28/2003 23:10 +San Carlos,,TRIANGLE,AZ,9/29/2003 0:17 +Verdi,,OVAL,NV,9/29/2003 3:00 +Arlington,,TRIANGLE,WA,9/29/2003 5:00 +Glens Falls,,CIGAR,NY,9/29/2003 17:00 +Palo Alto,,LIGHT,CA,9/29/2003 19:15 +Mooers,,DISK,NY,9/29/2003 19:50 +Tres Pinos,,FLASH,CA,9/29/2003 20:00 +Yellowstone National Park,,SPHERE,WY,9/29/2003 20:35 +Mercer County,,,KY,9/29/2003 21:00 +Texas,,CYLINDER,TX,9/30/2003 0:00 +Tucson,GREEN,OVAL,AZ,9/30/2003 0:00 +Yukon,,DISK,OK,9/30/2003 0:30 +Hestes,,OVAL,TX,9/30/2003 1:15 +Richfield,,OTHER,UT,9/30/2003 3:30 +La Sal,,SPHERE,UT,9/30/2003 12:00 +De Kalb,ORANGE,FIREBALL,NY,9/30/2003 19:30 +San Francisco,,,CA,9/30/2003 19:45 +Montauk,,TRIANGLE,NY,9/30/2003 21:00 +Nantucket,,TRIANGLE,MA,9/30/2003 21:00 +Poplar Grove,,LIGHT,IL,9/30/2003 22:34 +Saco,,CIRCLE,ME,10/1/2003 0:00 +West Central Missouri,,LIGHT,MO,10/1/2003 0:00 +Redmond,,LIGHT,WA,10/1/2003 0:20 +Long Beach,,OTHER,CA,10/1/2003 5:40 +Hartland,,,MI,10/1/2003 16:00 +Kennesaw,,TRIANGLE,GA,10/1/2003 18:00 +Perry Township,,CIGAR,OH,10/1/2003 18:15 +San Diego,,,CA,10/1/2003 20:05 +Bellevue,,LIGHT,WA,10/1/2003 21:00 +Rye,,SPHERE,CO,10/1/2003 21:00 +Oologah,,OTHER,OK,10/1/2003 21:30 +Granville,,CIRCLE,MA,10/1/2003 22:00 +Circleville,ORANGE,LIGHT,OH,10/1/2003 23:00 +Kerrville,,CIRCLE,TX,10/2/2003 2:45 +Charlotte,ORANGE,OVAL,NC,10/2/2003 19:13 +Mobile,,CHEVRON,AL,10/2/2003 19:30 +Bayfield,,TRIANGLE,CO,10/2/2003 21:00 +Goose Creek,,DIAMOND,SC,10/2/2003 21:00 +Marlette,,LIGHT,MI,10/2/2003 21:45 +Pueblo West,RED,OTHER,CO,10/2/2003 22:15 +Baltimore,,DISK,MD,10/3/2003 2:00 +Las Vegas,,,NV,10/3/2003 6:15 +Madison,,LIGHT,OH,10/3/2003 6:45 +Coventry,,FORMATION,RI,10/3/2003 12:50 +Burien,,DISK,WA,10/3/2003 18:20 +New Bedford,,FORMATION,MA,10/3/2003 20:40 +Clark,,LIGHT,WY,10/3/2003 20:51 +Beaver Crossing,,OTHER,NE,10/3/2003 22:45 +Malverne,,LIGHT,NY,10/3/2003 23:15 +Augusta,,TRIANGLE,AR,10/4/2003 0:15 +Concord,,FIREBALL,CA,10/4/2003 1:00 +Pleasant Hill,,,MO,10/4/2003 10:00 +Lafayette,,LIGHT,LA,10/4/2003 16:30 +Brighton,,TEARDROP,CO,10/4/2003 18:10 +Lawrenceville,,FORMATION,GA,10/4/2003 19:58 +Murray,RED GREEN BLUE,VARIOUS,KY,10/4/2003 20:00 +La Moille,,VARIOUS,IL,10/4/2003 21:30 +Hayward,,LIGHT,CA,10/4/2003 23:00 +Mississippi River,,LIGHT,LA,10/4/2003 23:00 +Kansas City,,VARIOUS,KS,10/4/2003 23:05 +No.Hollywood,,,CA,10/4/2003 23:30 +Syracuse,RED GREEN,FORMATION,NY,10/4/2003 23:45 +Salt Lake City,,CIGAR,UT,10/5/2003 5:30 +Susanville,,LIGHT,CA,10/5/2003 6:15 +Carpentersville,,TRIANGLE,IL,10/5/2003 8:00 +Rio Grande City,,CIGAR,TX,10/5/2003 15:00 +Phoenix,,FORMATION,AZ,10/5/2003 18:15 +Wapakoneta,RED,LIGHT,OH,10/5/2003 18:30 +Jenkins,,CHEVRON,MN,10/5/2003 21:10 +Kingman,,DISK,AZ,10/5/2003 21:15 +La Vista,,OTHER,NE,10/6/2003 0:00 +Holland,,CONE,MI,10/6/2003 3:55 +Shell Knob,,SPHERE,MO,10/6/2003 4:00 +Rainbow Lakes Estates,,OTHER,FL,10/6/2003 11:45 +Lebanon Church,,CIGAR,VA,10/6/2003 18:30 +Annapolis,,TRIANGLE,MD,10/6/2003 20:12 +Parker,,CHEVRON,CO,10/6/2003 20:30 +Kansas City,,TEARDROP,MO,10/6/2003 22:53 +Tampa,,OVAL,FL,10/7/2003 5:45 +Las Cruces,,TRIANGLE,NM,10/7/2003 6:20 +Pleasant Hill,,OVAL,MO,10/7/2003 7:40 +Walnut Creek,,OVAL,CA,10/7/2003 10:00 +Carbondale,,TRIANGLE,IL,10/7/2003 15:35 +Meriden,,DISK,CT,10/7/2003 18:00 +Fairfield,,FORMATION,IA,10/7/2003 19:30 +Fairfield,,FORMATION,IA,10/7/2003 19:30 +Urbandale,,FORMATION,IA,10/7/2003 19:30 +Urbandale,,FORMATION,IA,10/7/2003 20:00 +San Diego,,LIGHT,CA,10/7/2003 21:35 +Chicago,,OVAL,IL,10/7/2003 22:00 +Waterloo,,TEARDROP,IA,10/7/2003 23:06 +Lowell,,RECTANGLE,MA,10/8/2003 3:30 +Ringgold,,TRIANGLE,VA,10/8/2003 17:00 +Banks,,DISK,AL,10/8/2003 18:00 +Rising Sun,,OTHER,MD,10/8/2003 19:00 +Arthur,,LIGHT,NE,10/8/2003 19:05 +Intervalle,,VARIOUS,NH,10/8/2003 19:30 +Kennedyville,,LIGHT,MD,10/8/2003 19:30 +Kennedyville,,VARIOUS,MD,10/8/2003 19:30 +Arcadia,,LIGHT,IN,10/8/2003 20:20 +Bel AIr,,LIGHT,MD,10/8/2003 20:23 +Sylmar,,LIGHT,CA,10/8/2003 22:00 +Tonawanda,BLUE,OTHER,NY,10/8/2003 22:20 +Colorado Springs,,LIGHT,CO,10/9/2003 2:45 +Livonia,,LIGHT,MI,10/9/2003 3:00 +Isle of Palms,RED,DISK,SC,10/9/2003 3:45 +Ferndale,,RECTANGLE,MI,10/9/2003 7:30 +Utica,,CIRCLE,NY,10/9/2003 11:30 +Everett,,CYLINDER,WA,10/9/2003 16:48 +Binghamton,,OVAL,NY,10/9/2003 19:30 +Brookings Harbor,,LIGHT,OR,10/9/2003 20:10 +San Jose,RED,LIGHT,CA,10/9/2003 20:15 +Port Orange,RED,DISK,FL,10/9/2003 21:30 +Corvallis,,OTHER,OR,10/9/2003 23:00 +Santa Rosa,,CIRCLE,CA,10/9/2003 23:00 +New Buffulo,,LIGHT,MI,10/10/2003 9:00 +Alhambra,,OVAL,CA,10/10/2003 12:00 +Indianapolis,,SPHERE,IN,10/10/2003 18:00 +Centreville,,OTHER,VA,10/10/2003 19:15 +Grand View,,LIGHT,ID,10/10/2003 20:05 +Temperance,RED GREEN,OVAL,MI,10/10/2003 20:25 +Crescent Beach,,FORMATION,SC,10/10/2003 21:10 +Albuquerque,,LIGHT,NM,10/10/2003 22:00 +Gleason,,SPHERE,WI,10/10/2003 23:25 +San Diego,,,CA,10/11/2003 0:00 +Austin,,CIRCLE,MN,10/11/2003 0:20 +New York City,,EGG,NY,10/11/2003 1:29 +Truckee,BLUE,SPHERE,CA,10/11/2003 3:00 +Fort Knox,,FIREBALL,KY,10/11/2003 7:00 +Newaygo,,CIRCLE,MI,10/11/2003 11:32 +Nebraska,,CIGAR,NE,10/11/2003 13:00 +Placerville,,LIGHT,CA,10/11/2003 19:05 +Frederick,,,CO,10/11/2003 20:00 +Bloomington,,DISK,IN,10/11/2003 20:30 +Independence,,CHEVRON,MO,10/11/2003 22:40 +Acton,RED GREEN,CIRCLE,CA,10/12/2003 0:00 +Albany,,,NY,10/12/2003 2:00 +Antioch,,CIRCLE,CA,10/12/2003 2:00 +Auburn,RED,FIREBALL,PA,10/12/2003 13:08 +Rosamond,,OTHER,CA,10/12/2003 18:25 +South Bend,,OTHER,IN,10/12/2003 18:30 +Reevesville,,OTHER,SC,10/12/2003 18:35 +Dallas,RED,SPHERE,TX,10/12/2003 22:20 +Dayton,,,OH,10/13/2003 0:00 +Deerfield Beach,RED,CIGAR,FL,10/13/2003 1:00 +Evansville,,LIGHT,IN,10/13/2003 1:00 +Craig,,TRIANGLE,CO,10/13/2003 6:00 +Pocatello,,OVAL,ID,10/13/2003 11:50 +Kansas ??,,,KS,10/13/2003 17:00 +Wilton,,DISK,CA,10/13/2003 18:30 +Phoenix,,SPHERE,AZ,10/13/2003 19:12 +Binghamton,,SPHERE,NY,10/13/2003 20:00 +Provo,ORANGE,LIGHT,UT,10/13/2003 21:00 +Denver,,CHEVRON,CO,10/13/2003 21:20 +Trenton,,OTHER,OH,10/13/2003 21:30 +Warsaw,,OTHER,IN,10/13/2003 21:30 +Waterbury,,DISK,CT,10/13/2003 23:00 +Houston,,LIGHT,TX,10/13/2003 23:15 +Zanesville,BLUE,RECTANGLE,OH,10/13/2003 23:15 +Yelm,RED,OVAL,WA,10/14/2003 11:30 +Plains,RED,TRIANGLE,PA,10/14/2003 19:00 +San Leandro,,LIGHT,CA,10/14/2003 19:58 +Los Angeles,,TRIANGLE,CA,10/14/2003 21:00 +Orlando,,FORMATION,FL,10/14/2003 21:24 +Indianapolis,,OVAL,IN,10/14/2003 23:00 +Indianapolis,,OVAL,IN,10/14/2003 23:00 +Minneapolis,,OTHER,MN,10/14/2003 23:00 +Trego,,,WI,10/14/2003 23:50 +Boise,,TRIANGLE,ID,10/15/2003 0:30 +Crandall,,LIGHT,IN,10/15/2003 3:00 +Flagstaff,,OVAL,AZ,10/15/2003 4:00 +San Jose,,TRIANGLE,CA,10/15/2003 6:30 +Weatherford,,VARIOUS,TX,10/15/2003 10:00 +Plant City,,DISK,FL,10/15/2003 11:00 +Little Rock,,CIRCLE,AR,10/15/2003 11:30 +Granada Hills,,DISK,CA,10/15/2003 13:00 +Ironwood,,DISK,MI,10/15/2003 15:00 +Chiefland,,CIGAR,FL,10/15/2003 17:00 +Richmond,,CIRCLE,IN,10/15/2003 17:20 +Indianapolis,,,IN,10/15/2003 17:30 +Westerville,,,OH,10/15/2003 18:00 +Sheridan,ORANGE,CIGAR,AR,10/15/2003 18:45 +Elizabeth,RED,DISK,PA,10/15/2003 19:15 +Collinsville,,LIGHT,OH,10/15/2003 19:25 +North Little Rock,,VARIOUS,AR,10/15/2003 20:00 +Aberdeen,,DISK,WA,10/15/2003 20:30 +Knoxville,,LIGHT,TN,10/15/2003 20:30 +Wofford Heights,,CIRCLE,CA,10/15/2003 20:30 +Hamilton,,DIAMOND,OH,10/15/2003 20:45 +Hernando,,,FL,10/15/2003 21:00 +Mesa,,CIRCLE,AZ,10/15/2003 21:15 +Sylvan Beach,,FIREBALL,NY,10/15/2003 22:00 +Brewster,,CIGAR,MA,10/15/2003 23:00 +Maryville,,LIGHT,MO,10/15/2003 23:00 +Tuolumne,,LIGHT,CA,10/15/2003 23:00 +Delaware,,LIGHT,OH,10/15/2003 23:30 +Opp,,FORMATION,AL,10/16/2003 2:00 +Mckinleyville,RED YELLOW,LIGHT,CA,10/16/2003 2:45 +Stevensville,ORANGE,LIGHT,MD,10/16/2003 8:15 +Seattle,,,WA,10/16/2003 12:00 +Hanna,,OTHER,UT,10/16/2003 13:00 +Sacramento,,TRIANGLE,CA,10/16/2003 17:30 +Hayward,,,CA,10/16/2003 17:34 +Columbus,,LIGHT,OH,10/16/2003 18:00 +Buckeye Lake,,LIGHT,OH,10/16/2003 18:30 +Easton,,,PA,10/16/2003 18:46 +Pinos Altos,,,NM,10/16/2003 20:17 +Sumner,,VARIOUS,WA,10/16/2003 22:30 +Opp,,SPHERE,AL,10/17/2003 0:30 +Dallas,,,TX,10/17/2003 2:00 +Little Rock,BLUE,OTHER,AR,10/17/2003 2:45 +Marietta,,LIGHT,GA,10/17/2003 6:40 +Payson,,OVAL,AZ,10/17/2003 17:00 +West Jordan,,,UT,10/17/2003 17:10 +Richardson,,CIRCLE,TX,10/17/2003 19:00 +Venice,,TRIANGLE,FL,10/17/2003 19:30 +Opp,,TRIANGLE,AL,10/17/2003 20:45 +Missoula,,CIRCLE,MT,10/17/2003 21:00 +Lovingston,,,VA,10/17/2003 22:00 +State College,,OTHER,PA,10/17/2003 22:00 +Petaluma,RED BLUE,LIGHT,CA,10/17/2003 23:00 +North Platte,,CIRCLE,NE,10/17/2003 23:14 +Las Vegas,,TRIANGLE,NV,10/17/2003 23:40 +Union Beach,,LIGHT,NJ,10/18/2003 0:00 +Purlear,,,NC,10/18/2003 1:00 +Salem,RED,OTHER,OR,10/18/2003 1:44 +Mason,,LIGHT,TX,10/18/2003 2:00 +Route 80 W,,SPHERE,PA,10/18/2003 2:00 +Marion,,LIGHT,AR,10/18/2003 3:30 +Everett,GREEN BLUE,SPHERE,WA,10/18/2003 11:15 +Blountville,,VARIOUS,TN,10/18/2003 12:34 +Kingsport,,VARIOUS,TN,10/18/2003 12:48 +Fair Oaks,,DISK,CA,10/18/2003 13:30 +Bedford,,RECTANGLE,TX,10/18/2003 14:23 +Alexandria,,CIRCLE,IN,10/18/2003 15:00 +Watersmeet,,CIGAR,MI,10/18/2003 15:45 +Modesto,,SPHERE,CA,10/18/2003 16:10 +Knoxville,,CIRCLE,TN,10/18/2003 17:00 +North Bend,,DISK,WA,10/18/2003 17:00 +Columbia,,CIRCLE,MO,10/18/2003 17:35 +Liberty,,LIGHT,TX,10/18/2003 18:43 +Austin,,OTHER,TX,10/18/2003 18:45 +Tuscumbia,RED,OTHER,AL,10/18/2003 19:00 +Greeley,,DIAMOND,CO,10/18/2003 20:00 +Port Washington,,,NY,10/18/2003 20:00 +Clearlake,,,CA,10/18/2003 20:15 +Nashua,,CIRCLE,NH,10/18/2003 20:45 +Berkeley,ORANGE,,CA,10/18/2003 21:00 +Columbus,RED,LIGHT,IN,10/18/2003 21:00 +Los Angeles,,SPHERE,CA,10/18/2003 21:00 +Schenectady,,LIGHT,NY,10/18/2003 21:00 +West Chester,,CHEVRON,OH,10/18/2003 21:00 +Mukwonago,,FIREBALL,WI,10/18/2003 21:30 +Mukwonago,,FIREBALL,WI,10/18/2003 21:30 +Oakland,,SPHERE,CA,10/18/2003 21:30 +Kansas City,,FIREBALL,MO,10/18/2003 21:40 +Miama,,,FL,10/18/2003 23:00 +Bono,BLUE,LIGHT,AR,10/18/2003 23:20 +Modesto,,VARIOUS,CA,10/19/2003 2:45 +Cottage Grove,,TRIANGLE,MN,10/19/2003 5:45 +Yermo,,EGG,CA,10/19/2003 7:00 +Rome,,DISK,GA,10/19/2003 12:00 +Laredo,,SPHERE,TX,10/19/2003 12:30 +Fort Myers,,OVAL,FL,10/19/2003 15:30 +Center,,OVAL,TX,10/19/2003 16:00 +Turners Falls,,LIGHT,MA,10/19/2003 16:30 +Indianapolis,,,IN,10/19/2003 17:05 +Fontana,GREEN,OTHER,CA,10/19/2003 17:30 +Van Nuys,,LIGHT,CA,10/19/2003 20:40 +Buena Park,,OTHER,CA,10/19/2003 21:30 +Monson,,TRIANGLE,ME,10/19/2003 23:30 +Hayward,,TRIANGLE,CA,10/20/2003 0:00 +Three Sisters,,CIRCLE,WI,10/20/2003 1:00 +Mercersburg,,,PA,10/20/2003 1:30 +Atlanta,,FIREBALL,GA,10/20/2003 9:45 +Austin,,TEARDROP,TX,10/20/2003 13:00 +Oklahoma,,CYLINDER,OK,10/20/2003 13:30 +Memphis,,CIRCLE,TN,10/20/2003 16:05 +Chicago,,DISK,IL,10/20/2003 16:45 +Ft. Campbell,GREEN,FIREBALL,KY,10/20/2003 19:30 +Sebastopol,,SPHERE,CA,10/20/2003 20:00 +Swannanoa,,FIREBALL,NC,10/20/2003 20:00 +Jacksonville,,FIREBALL,FL,10/20/2003 20:38 +Beckley,GREEN,CIRCLE,WV,10/20/2003 20:45 +Beckley,GREEN,RECTANGLE,WV,10/20/2003 20:45 +Clayton,,FIREBALL,NC,10/20/2003 20:45 +Hampton,YELLOW GREEN,SPHERE,FL,10/20/2003 20:45 +Honea Path,GREEN BLUE,FLASH,SC,10/20/2003 20:45 +Jacksonville,,FIREBALL,FL,10/20/2003 20:45 +Macon,,FIREBALL,GA,10/20/2003 20:45 +Martinez,GREEN,FIREBALL,GA,10/20/2003 20:45 +Shippensburg,,CIRCLE,PA,10/20/2003 20:45 +Vanceboro,YELLOW GREEN,FIREBALL,NC,10/20/2003 20:45 +Greensboro,GREEN,FIREBALL,NC,10/20/2003 20:50 +Indian Trail,ORANGE,,NC,10/20/2003 20:55 +Prophetstown,,OTHER,IL,10/20/2003 21:15 +Pollock Pines,,LIGHT,CA,10/20/2003 21:30 +Cullowhee,BLUE,FIREBALL,NC,10/20/2003 21:50 +Kannapolis,,LIGHT,NC,10/20/2003 23:30 +Vacaville,,RECTANGLE,CA,10/21/2003 2:45 +Austin,,OVAL,TX,10/21/2003 16:15 +Bellflower,,FIREBALL,CA,10/21/2003 19:00 +Waterford,,TRIANGLE,NY,10/21/2003 19:00 +Fresno,RED,OTHER,CA,10/21/2003 19:40 +Grand Blanc,,TRIANGLE,MI,10/21/2003 20:30 +Scandia,RED,LIGHT,MN,10/21/2003 20:45 +Olathe,,LIGHT,KS,10/21/2003 21:00 +Racine,,SPHERE,WI,10/21/2003 21:00 +Chillicothe,GREEN,FIREBALL,OH,10/21/2003 21:10 +Bellmore,,OVAL,NY,10/21/2003 22:00 +Caswell,,DISK,NC,10/21/2003 22:00 +Rancho Santa Fe,,LIGHT,CA,10/21/2003 22:15 +Cocoa,GREEN,FIREBALL,FL,10/21/2003 22:20 +Las Cruces,,,NM,10/22/2003 2:45 +Rockford,,LIGHT,IL,10/22/2003 6:45 +Anchorage,RED,OTHER,AK,10/22/2003 7:00 +New River,,OTHER,AZ,10/22/2003 8:06 +Wichita,,CROSS,KS,10/22/2003 10:20 +Murrells Inlet,,DISK,SC,10/22/2003 14:00 +Murrells Inlet,,DISK,SC,10/22/2003 14:00 +Centerton,,SPHERE,AR,10/22/2003 18:24 +Cliffside,,SPHERE,NC,10/22/2003 18:30 +Skyline Drive,,DISK,UT,10/22/2003 18:40 +Rachel,,OVAL,NV,10/22/2003 19:20 +Dover,,,AR,10/22/2003 20:00 +Rockford,,OVAL,ID,10/22/2003 20:00 +Wikieup,,FORMATION,AZ,10/22/2003 20:55 +Abingdon,,FIREBALL,VA,10/22/2003 21:00 +Bouse,YELLOW,LIGHT,AZ,10/22/2003 21:00 +Martinsville,RED GREEN,DIAMOND,IN,10/22/2003 21:11 +Chatham,,FLASH,VA,10/22/2003 23:00 +North Hollywood,,DISK,CA,10/22/2003 23:40 +Philippine Sea,,LIGHT,CA,10/23/2003 0:00 +Dade City,YELLOW,,FL,10/23/2003 0:15 +San Luis Obispo,,VARIOUS,CA,10/23/2003 6:30 +South Kingstown,,,RI,10/23/2003 10:15 +Salt Lake City,,,UT,10/23/2003 12:30 +Houston,,LIGHT,TX,10/23/2003 21:00 +Pueblo,ORANGE,LIGHT,CO,10/23/2003 21:00 +Seattle,,,WA,10/23/2003 21:00 +Bainbridge Island,GREEN,SPHERE,WA,10/23/2003 21:16 +Seattle,RED GREEN,CONE,WA,10/23/2003 21:18 +Vancouver,GREEN,CIRCLE,WA,10/23/2003 21:18 +West Seattle,BLUE,FIREBALL,WA,10/23/2003 21:30 +Seattle,,CIRCLE,WA,10/23/2003 21:40 +Pensacola,,TRIANGLE,FL,10/23/2003 22:30 +Hot Springs,,,AR,10/23/2003 23:00 +Renton,,,WA,10/23/2003 23:00 +Lexington,RED,LIGHT,TN,10/24/2003 0:00 +Hurst,,TRIANGLE,TX,10/24/2003 1:30 +Houston,,RECTANGLE,TX,10/24/2003 1:45 +Fort Smith,,TEARDROP,AR,10/24/2003 2:29 +Hollywood,,DISK,FL,10/24/2003 16:00 +Alice,,LIGHT,TX,10/24/2003 20:00 +El Paso,,DISK,TX,10/24/2003 20:00 +Oakland,,LIGHT,CA,10/24/2003 20:00 +Wickiup,,TRIANGLE,AZ,10/24/2003 20:15 +Huntington,,TRIANGLE,WV,10/24/2003 21:00 +Geary,,,OK,10/24/2003 23:00 +Mobile,,TRIANGLE,AL,10/24/2003 23:45 +Bruce,,OVAL,WA,10/25/2003 1:00 +Springfield,,DISK,IL,10/25/2003 2:00 +New Mexico,,OTHER,NM,10/25/2003 13:00 +Fleetwood,ORANGE,OVAL,PA,10/25/2003 18:24 +San Diego,,TRIANGLE,CA,10/25/2003 21:00 +Scappoose,,TRIANGLE,OR,10/25/2003 21:15 +Westminster,,TRIANGLE,CO,10/25/2003 21:39 +Killeen,,SPHERE,TX,10/25/2003 22:00 +San Lorenzo,,VARIOUS,CA,10/25/2003 22:00 +Trotwood,,OTHER,OH,10/25/2003 22:40 +Trotwood,,OTHER,OH,10/25/2003 22:40 +Los Molinos,,TRIANGLE,CA,10/26/2003 0:00 +Maud,,,OK,10/26/2003 0:30 +Allen,,,TX,10/26/2003 16:20 +Stevens Point,YELLOW,CIRCLE,WI,10/26/2003 18:30 +York,,TRIANGLE,PA,10/26/2003 19:35 +Lake Hiawatha,YELLOW,LIGHT,NJ,10/26/2003 22:30 +O'Fallon,GREEN,OTHER,IL,10/26/2003 22:30 +Columbia,,SPHERE,MD,10/26/2003 23:00 +Staunton,,CIGAR,VA,10/26/2003 23:00 +Troutdale,,FIREBALL,VA,10/27/2003 17:00 +Rohnert Park,YELLOW,OTHER,CA,10/27/2003 18:10 +Hot Springs Village,,TRIANGLE,AR,10/27/2003 20:30 +Pasadena,,,MD,10/28/2003 1:00 +New York City,,SPHERE,NY,10/28/2003 10:10 +Atkins,GREEN,,TX,10/28/2003 11:35 +Spanaway,,DISK,WA,10/28/2003 14:20 +Marfa,,TRIANGLE,TX,10/28/2003 20:24 +Thomson,,FLASH,GA,10/29/2003 0:15 +Tallahassee,,SPHERE,FL,10/29/2003 6:15 +Lynnwood,,CHEVRON,WA,10/29/2003 12:00 +Alpharetta,,SPHERE,GA,10/29/2003 17:45 +Russellville,,TRIANGLE,AR,10/29/2003 18:50 +Rayne,,LIGHT,LA,10/29/2003 18:55 +Powder Springs,BLUE,LIGHT,GA,10/29/2003 19:15 +Miami,,OTHER,FL,10/29/2003 19:49 +Palatine,,,IL,10/29/2003 20:00 +Bartlett,,LIGHT,IL,10/29/2003 20:15 +New Iberia,,CIGAR,LA,10/29/2003 22:00 +Scipio Center,,OTHER,NY,10/29/2003 22:50 +Solon,,OTHER,OH,10/30/2003 4:00 +Williamson,,OTHER,NY,10/30/2003 4:35 +Whittier,,LIGHT,CA,10/30/2003 6:35 +Topeka,,DISK,KS,10/30/2003 7:00 +Sagamore Hills,,LIGHT,OH,10/30/2003 7:10 +Michigan City,ORANGE,OVAL,IN,10/30/2003 16:45 +Compton,,LIGHT,CA,10/30/2003 20:00 +Findlay,,,OH,10/30/2003 21:00 +Spokane,GREEN,,WA,10/30/2003 21:17 +Troy,,TRIANGLE,MO,10/30/2003 22:00 +Scappoose,,TRIANGLE,OR,10/30/2003 23:00 +Melbourne,,SPHERE,FL,10/30/2003 23:30 +Sacramento,BLUE,SPHERE,CA,10/31/2003 0:00 +Baytown,,OTHER,TX,10/31/2003 2:00 +Roswell,,FLASH,NM,10/31/2003 2:00 +Seattle,,,WA,10/31/2003 3:40 +Seattle,,LIGHT,WA,10/31/2003 7:30 +Milton,,VARIOUS,FL,10/31/2003 15:05 +DeKabe,,CIRCLE,TX,10/31/2003 17:30 +Stanwood,,TRIANGLE,WA,10/31/2003 18:10 +Spurger,,DISK,TX,10/31/2003 19:00 +Granville,,CIGAR,IA,10/31/2003 21:30 +Rooseveltown,,CIRCLE,NY,10/31/2003 21:30 +Wakefield,,TRIANGLE,RI,10/31/2003 22:00 +Panton,,TRIANGLE,VT,10/31/2003 22:07 +Evans City,RED,TRIANGLE,PA,10/31/2003 22:30 +Tucson,,TRIANGLE,AZ,10/31/2003 23:00 +Cheyenne,,FIREBALL,WY,11/1/2003 0:00 +Gold Canyon,RED,CIRCLE,AZ,11/1/2003 1:00 +Lemoore,,CIRCLE,CA,11/1/2003 2:00 +Grand Junction,,,CO,11/1/2003 9:15 +Grand Rapids,,OVAL,MI,11/1/2003 11:04 +Palm Coast,,CYLINDER,FL,11/1/2003 12:00 +Oil Trough,,OVAL,AR,11/1/2003 15:30 +Portland,,SPHERE,OR,11/1/2003 16:48 +Hanover Park,,SPHERE,IL,11/1/2003 18:00 +Ewa Beach,,SPHERE,HI,11/1/2003 19:30 +Wind Creek State Park,,LIGHT,AL,11/1/2003 20:11 +Hayward,,LIGHT,CA,11/1/2003 21:00 +Miami,,FORMATION,FL,11/1/2003 21:00 +Philadelphia,,CIRCLE,PA,11/1/2003 23:00 +San Francisco,,OVAL,CA,11/1/2003 23:20 +Fairfield,,DIAMOND,CA,11/1/2003 23:56 +Rockford,,,IL,11/2/2003 0:00 +Spring,RED BLUE,,TX,11/2/2003 0:30 +Round Lake Beach,,TRIANGLE,IL,11/2/2003 4:20 +Forest Lake,,TRIANGLE,MN,11/2/2003 18:00 +Dallas,GREEN,FLASH,TX,11/2/2003 21:15 +Inola,,LIGHT,OK,11/2/2003 22:00 +Lake Buena Vista,,,FL,11/3/2003 0:00 +Lake Buena Vista,,OTHER,FL,11/3/2003 0:00 +Morris,,DIAMOND,AL,11/3/2003 0:00 +Everett,,CIRCLE,WA,11/3/2003 0:50 +Ashdown,,OTHER,AR,11/3/2003 5:30 +Mobile,,TRIANGLE,AL,11/3/2003 11:45 +Holly Pond,,OVAL,AL,11/3/2003 15:20 +North Bergen,,OTHER,NJ,11/3/2003 17:40 +Miami,,OTHER,FL,11/3/2003 18:30 +Charlotte,,TRIANGLE,NC,11/3/2003 21:00 +Campbell,,LIGHT,CA,11/3/2003 21:45 +Rockledge,,,FL,11/3/2003 22:30 +Waldenburg,RED BLUE,TRIANGLE,AR,11/4/2003 0:00 +Seattle,,LIGHT,WA,11/4/2003 1:14 +California City,RED,LIGHT,CA,11/4/2003 5:27 +Phoenxiville,,CIRCLE,PA,11/4/2003 6:15 +Wexford,,CYLINDER,PA,11/4/2003 17:20 +Poulsbo,GREEN,CIRCLE,WA,11/4/2003 18:00 +Rye,ORANGE,CIRCLE,CO,11/4/2003 19:00 +Greenville,,LIGHT,MO,11/4/2003 19:30 +Belvidere,,OTHER,NC,11/4/2003 20:00 +The Colony,,,TX,11/4/2003 20:00 +Ellsinore,,LIGHT,MO,11/4/2003 20:30 +Deming,,DISK,NM,11/4/2003 20:50 +Bowling Green,,,KY,11/4/2003 23:15 +Loveland,,OVAL,CO,11/4/2003 23:15 +Horn Lake,,FIREBALL,MS,11/5/2003 8:30 +Portland,,CIRCLE,OR,11/5/2003 11:00 +Burlington,,DISK,VT,11/5/2003 12:20 +Pass Christian,RED,DISK,MS,11/5/2003 17:00 +Alexandria,,,VA,11/5/2003 19:00 +Parrish,,LIGHT,FL,11/5/2003 20:00 +Granite Falls,GREEN,FIREBALL,WA,11/5/2003 20:26 +Mabank,YELLOW,OVAL,TX,11/5/2003 20:35 +St. Joseph,RED,OTHER,MO,11/5/2003 20:50 +Weona-Harrisburg-Waldenburg,,TRIANGLE,AR,11/5/2003 21:00 +San Jose,,,CA,11/6/2003 5:15 +New Richmond,,OVAL,WI,11/6/2003 11:30 +Portland,,SPHERE,OR,11/6/2003 11:30 +Gulfporty,RED,VARIOUS,MS,11/6/2003 17:50 +Portland,,LIGHT,OR,11/6/2003 19:30 +Reno,,CIRCLE,NV,11/6/2003 19:50 +Santa Clarita,RED,CIGAR,CA,11/6/2003 20:00 +Poulsbo,GREEN,FIREBALL,WA,11/6/2003 21:00 +Moultrie,,OTHER,GA,11/6/2003 22:00 +Kittery,,CYLINDER,ME,11/6/2003 22:30 +Horizon City,,LIGHT,TX,11/7/2003 0:00 +Livingston,GREEN,FIREBALL,MT,11/7/2003 0:00 +Pikeville,,LIGHT,KY,11/7/2003 0:00 +Glendale,,TRIANGLE,AZ,11/7/2003 1:00 +Port Angeles,,FIREBALL,WA,11/7/2003 7:00 +El Paso,,SPHERE,TX,11/7/2003 9:30 +Oxford,,CYLINDER,AL,11/7/2003 16:00 +Englewood,,LIGHT,FL,11/7/2003 18:30 +Newport,,OTHER,OR,11/7/2003 20:00 +Tulsa,,FORMATION,OK,11/7/2003 22:00 +Marsing,,FLASH,ID,11/8/2003 0:05 +Adelanto,,OTHER,CA,11/8/2003 7:00 +Maluhia,,OTHER,HI,11/8/2003 13:00 +Springfield,,CIGAR,OR,11/8/2003 15:00 +West Central,RED,OVAL,MN,11/8/2003 17:30 +Meriden,,LIGHT,CT,11/8/2003 17:55 +New York City,RED ORANGE,LIGHT,NY,11/8/2003 18:00 +Madras,,CIRCLE,OR,11/8/2003 18:30 +Phoenix,,FLASH,AZ,11/8/2003 18:30 +Colorado Springs,,OTHER,CO,11/8/2003 18:40 +Bellingham,ORANGE,,WA,11/8/2003 18:52 +Glen Lyon,,SPHERE,PA,11/8/2003 19:00 +Pensacola,,CHEVRON,FL,11/8/2003 19:00 +West Bloomfield,,FIREBALL,MI,11/8/2003 19:00 +Attleboro,,TRIANGLE,MA,11/8/2003 19:30 +LaFayette,,VARIOUS,GA,11/8/2003 19:30 +Virginia Beach,,CHEVRON,VA,11/8/2003 19:30 +Grafton,,FORMATION,MA,11/8/2003 19:45 +Bridgewater,RED,LIGHT,NJ,11/8/2003 19:50 +Brookline,,OTHER,MA,11/8/2003 19:55 +Sayreville,,,NJ,11/8/2003 19:55 +Harvard,,TRIANGLE,IL,11/8/2003 20:00 +Holtsville,,OTHER,NY,11/8/2003 20:00 +Merritt Island,,OTHER,FL,11/8/2003 20:00 +New York City,,FORMATION,NY,11/8/2003 20:00 +New York City,,OTHER,NY,11/8/2003 20:00 +New York City,,VARIOUS,NY,11/8/2003 20:00 +Old Saybrook,,LIGHT,CT,11/8/2003 20:00 +Parkertown,,OTHER,NJ,11/8/2003 20:00 +Philadelphia,,FORMATION,PA,11/8/2003 20:00 +Venice,,FLASH,FL,11/8/2003 20:00 +Sewickley,,,PA,11/8/2003 20:05 +Newington,,OTHER,CT,11/8/2003 20:10 +Penn Yan,,CHEVRON,NY,11/8/2003 20:10 +New York City,,TRIANGLE,NY,11/8/2003 20:15 +New York City,,FORMATION,NY,11/8/2003 20:16 +Augusta,,SPHERE,ME,11/8/2003 20:17 +Cornish,,OTHER,NH,11/8/2003 20:30 +New York City,,CHEVRON,NY,11/8/2003 20:30 +New York City,,DISK,NY,11/8/2003 20:30 +Ozone Park,,TRIANGLE,NY,11/8/2003 20:30 +College Point,,FORMATION,NY,11/8/2003 20:35 +New York City,,TRIANGLE,NY,11/8/2003 20:35 +Portland,,OTHER,ME,11/8/2003 20:35 +Bearlake,,,PA,11/8/2003 21:00 +Charlottesville,RED BLUE,,VA,11/8/2003 21:00 +St. James,,TRIANGLE,NY,11/8/2003 21:00 +Washington,,LIGHT,NC,11/8/2003 21:00 +New York City,,CHEVRON,NY,11/8/2003 21:15 +Richmond,,TRIANGLE,VA,11/8/2003 21:30 +Battle Creek,,DIAMOND,MI,11/8/2003 22:00 +Springfield,,FORMATION,MA,11/9/2003 0:30 +Batavia,,SPHERE,IL,11/9/2003 14:00 +Rocklin,,LIGHT,CA,11/9/2003 18:05 +Kau,,FIREBALL,HI,11/9/2003 19:30 +Hayward,,TRIANGLE,CA,11/9/2003 21:00 +Rutledge,,OTHER,PA,11/9/2003 22:56 +Las Vegas,GREEN,LIGHT,NV,11/10/2003 0:45 +Tucson,,LIGHT,AZ,11/10/2003 2:30 +Audubon,,LIGHT,MN,11/10/2003 7:30 +Pasadena,RED,DISK,CA,11/10/2003 18:20 +West Covina,,DISK,CA,11/10/2003 18:30 +Chino,GREEN,CIRCLE,CA,11/10/2003 19:00 +Las Vegas,,FORMATION,NV,11/10/2003 20:00 +Watsonville,,DISK,CA,11/10/2003 20:00 +Portsmouth,,TRIANGLE,NH,11/10/2003 21:30 +Pensacola,,SPHERE,FL,11/10/2003 22:21 +Tuscaloosa,,CONE,AL,11/10/2003 23:50 +South Lyon,,LIGHT,MI,11/11/2003 0:00 +Woodstock,,TEARDROP,GA,11/11/2003 16:00 +San Jose,,,CA,11/11/2003 16:50 +Hueytown,,OTHER,AL,11/11/2003 18:00 +Brandon,,DISK,FL,11/11/2003 18:10 +Grayslake,,DIAMOND,IL,11/11/2003 19:00 +Lansdale,,TRIANGLE,PA,11/11/2003 19:00 +Wewahitchka,,OTHER,FL,11/11/2003 19:50 +Williamstownm,,TRIANGLE,MA,11/11/2003 20:00 +Hawks,,VARIOUS,MI,11/11/2003 20:50 +Paddock Lake,,SPHERE,WI,11/11/2003 20:50 +Aurora,,FORMATION,IL,11/11/2003 22:00 +Huber Heights,,,OH,11/12/2003 1:00 +El Monte,,OVAL,CA,11/12/2003 5:00 +Canton,,OVAL,MI,11/12/2003 9:00 +Tomball,,TRIANGLE,TX,11/12/2003 9:30 +Livermore,,OTHER,CA,11/12/2003 15:32 +Arkansas,,OTHER,AR,11/12/2003 18:30 +Charlotte,,LIGHT,NC,11/12/2003 19:20 +Munising,BLUE,FLASH,MI,11/12/2003 20:00 +Boothbay Harbor,RED GREEN BLUE,DISK,ME,11/12/2003 21:00 +Lyons,YELLOW,SPHERE,CO,11/12/2003 21:30 +Nashville,,OTHER,TN,11/12/2003 22:05 +Orlando,,CONE,FL,11/12/2003 23:30 +Montour Falls,,OVAL,NY,11/13/2003 2:00 +Eden,,DIAMOND,UT,11/13/2003 2:30 +Hanover Park,,TRIANGLE,IL,11/13/2003 5:00 +St. Louis,,CIGAR,MO,11/13/2003 6:50 +New York City,RED,FIREBALL,NY,11/13/2003 13:34 +Vallejo,,FORMATION,CA,11/13/2003 15:00 +Boothbay Harbor,,LIGHT,ME,11/13/2003 18:00 +Boothbay Harbor,,LIGHT,ME,11/13/2003 18:00 +Virginia Beach,,DISK,VA,11/13/2003 18:00 +Warren,,TRIANGLE,MI,11/13/2003 19:00 +South Portsmouth,,LIGHT,KY,11/13/2003 20:00 +Port Orchard,,,WA,11/13/2003 21:10 +Hortense,RED YELLOW,VARIOUS,GA,11/13/2003 21:30 +Midlothian,,CIRCLE,VA,11/14/2003 0:00 +Port Angeles,,,WA,11/14/2003 12:00 +Charleston,,SPHERE,SC,11/14/2003 14:50 +La Center,,TRIANGLE,WA,11/14/2003 17:00 +Niles,,CIRCLE,OH,11/14/2003 17:30 +Niles,BLUE,CIRCLE,OH,11/14/2003 17:30 +Sanford,RED,LIGHT,FL,11/14/2003 19:30 +Punta Gorda,,FLASH,FL,11/14/2003 20:00 +Lake Butler,,LIGHT,FL,11/14/2003 21:00 +Hortense,RED BLUE,CIGAR,GA,11/14/2003 22:30 +Floral City,RED ORANGE GREEN BLUE,VARIOUS,FL,11/14/2003 23:15 +La Canada Flintridge,YELLOW,OTHER,CA,11/14/2003 23:34 +Twenty Nine Palms,,DIAMOND,CA,11/15/2003 0:20 +Santee,,FORMATION,CA,11/15/2003 2:00 +Coachella Valley,,LIGHT,CA,11/15/2003 11:30 +Poughkeepsie,,LIGHT,NY,11/15/2003 11:30 +Superior,,SPHERE,AZ,11/15/2003 14:00 +Albuquerque,,OVAL,NM,11/15/2003 15:00 +New York City,,LIGHT,NY,11/15/2003 16:00 +Sky CIty,,OTHER,NM,11/15/2003 17:00 +Tracy,,TEARDROP,CA,11/15/2003 17:00 +Union City,,OVAL,MI,11/15/2003 17:00 +Bradenton,,OTHER,FL,11/15/2003 17:30 +Fuquay Varina,,DISK,NC,11/15/2003 18:00 +Strawberry,,DISK,AZ,11/15/2003 18:00 +Watersmeet,,LIGHT,MI,11/15/2003 18:00 +Gilbert,RED,FIREBALL,AZ,11/15/2003 18:15 +Sierra Vista,,,AZ,11/15/2003 19:30 +Englewood,,FORMATION,FL,11/15/2003 20:13 +Apex,,FORMATION,NC,11/15/2003 21:00 +Irmo,,CIRCLE,SC,11/15/2003 21:00 +Salisbury,,DIAMOND,MD,11/15/2003 21:00 +Athens,,TRIANGLE,AL,11/15/2003 22:00 +Jacksonville Beach,,RECTANGLE,FL,11/15/2003 22:00 +South Portsmouth,,LIGHT,KY,11/15/2003 22:00 +Palm Coast,,TRIANGLE,FL,11/15/2003 22:45 +Colorado,,TRIANGLE,CO,11/15/2003 23:00 +Sacramento,,,CA,11/15/2003 23:30 +Mebane,,,NC,11/16/2003 1:10 +Los Angeles,,OTHER,CA,11/16/2003 11:30 +Woodland Hills,,LIGHT,CA,11/16/2003 11:35 +Lawton,,OTHER,OK,11/16/2003 17:30 +Wentzville,,LIGHT,MO,11/16/2003 18:15 +Texas City,,,TX,11/16/2003 18:46 +St. Petersburg,,CIRCLE,FL,11/16/2003 19:30 +NV,,OTHER,CA,11/16/2003 20:00 +Corona,RED,LIGHT,CA,11/16/2003 21:00 +San Diego,,CIRCLE,CA,11/16/2003 21:00 +Appleton,,TRIANGLE,ME,11/16/2003 23:00 +Enterprise,,LIGHT,AL,11/16/2003 23:32 +Yuma,,FORMATION,AZ,11/17/2003 14:10 +Miami,,,FL,11/17/2003 16:45 +San Francisco,,LIGHT,CA,11/17/2003 17:45 +Miami,,LIGHT,FL,11/17/2003 19:45 +Burbank,,SPHERE,CA,11/17/2003 20:30 +New York City,,,NY,11/18/2003 2:30 +New York City,,CIGAR,NY,11/18/2003 13:55 +Muskego,,OTHER,WI,11/18/2003 18:30 +Yucaipa,,LIGHT,CA,11/18/2003 18:30 +Los Fresnos,,SPHERE,TX,11/18/2003 18:35 +Fontana,,VARIOUS,CA,11/18/2003 19:00 +Illinois,,TRIANGLE,IL,11/18/2003 21:30 +Chillicothe,,VARIOUS,OH,11/18/2003 22:00 +Huachuca City,,OVAL,AZ,11/18/2003 22:30 +Pine Bluff,,LIGHT,AR,11/18/2003 23:45 +Fairfield,,TRIANGLE,IA,11/19/2003 0:30 +Fairfield,,TRIANGLE,IA,11/19/2003 0:30 +Arlington,,TRIANGLE,TX,11/19/2003 2:30 +Magnolia,,TRIANGLE,AR,11/19/2003 2:30 +Victorville,,TRIANGLE,CA,11/19/2003 2:30 +Coppell,RED,,TX,11/19/2003 4:30 +Atlanta,,LIGHT,GA,11/19/2003 5:00 +Dallas,,LIGHT,TX,11/19/2003 5:45 +Dallas,,LIGHT,TX,11/19/2003 5:45 +Naco,,LIGHT,AZ,11/19/2003 9:00 +Chicago,,LIGHT,IL,11/19/2003 16:31 +Eustis,,SPHERE,FL,11/19/2003 17:15 +St. Clair,,LIGHT,MO,11/19/2003 18:00 +Lansing,,,MI,11/19/2003 18:05 +Delton,RED GREEN BLUE,SPHERE,MI,11/19/2003 19:20 +Catalina Island,RED,TRIANGLE,CA,11/19/2003 20:00 +Marinsvile,,TRIANGLE,IN,11/19/2003 20:07 +Farisita,,LIGHT,CO,11/19/2003 20:30 +Arcadia,,LIGHT,MO,11/19/2003 21:00 +Trenton,,TRIANGLE,MO,11/19/2003 21:30 +Trenton,,TRIANGLE,MO,11/19/2003 21:30 +Austin,,LIGHT,TX,11/19/2003 21:45 +Abbeville,,FORMATION,LA,11/19/2003 22:25 +Birmingham,RED BLUE,LIGHT,AL,11/19/2003 22:30 +Hattiesburg,,TRIANGLE,MS,11/19/2003 22:41 +Redlands,RED GREEN BLUE,LIGHT,CA,11/19/2003 23:00 +Lewisville,YELLOW,CIRCLE,TX,11/20/2003 9:45 +El Rito,YELLOW,FIREBALL,NM,11/20/2003 17:30 +Los Gatos,,LIGHT,CA,11/20/2003 17:30 +Los Gatos,,LIGHT,CA,11/20/2003 17:30 +Salinas,,CIRCLE,CA,11/20/2003 17:30 +Scotta Valley,GREEN,OTHER,CA,11/20/2003 17:30 +Sunnyvale,,,CA,11/20/2003 17:30 +Trinity,,VARIOUS,NC,11/20/2003 17:30 +Campbell,,OTHER,CA,11/20/2003 17:34 +Riverside,GREEN,CIRCLE,CA,11/20/2003 17:40 +Rohnert Park,,FIREBALL,CA,11/20/2003 17:45 +Marin,YELLOW,CYLINDER,CA,11/20/2003 18:00 +Omaha,,TRIANGLE,NE,11/20/2003 18:00 +Watertown,,RECTANGLE,WI,11/20/2003 18:00 +Mesa,RED,LIGHT,AZ,11/20/2003 18:30 +Tempe,RED,OTHER,AZ,11/20/2003 18:30 +Kuna,,TRIANGLE,ID,11/20/2003 19:00 +Parker,RED ORANGE,,KS,11/20/2003 19:30 +Arbutus,,TRIANGLE,MD,11/20/2003 21:00 +Denham Springs,,LIGHT,LA,11/20/2003 22:23 +Waterville,,CROSS,ME,11/21/2003 1:00 +Dayton area,,LIGHT,OH,11/21/2003 3:00 +Bourbonnais,,CHEVRON,IL,11/21/2003 19:00 +Irvine,RED,CIGAR,CA,11/21/2003 19:00 +Morehead,,,KY,11/21/2003 19:30 +Mesa,GREEN,EGG,AZ,11/21/2003 20:15 +Barnesville,,FORMATION,OH,11/21/2003 20:30 +Afton,,LIGHT,MI,11/21/2003 21:15 +Lewiston,RED BLUE,LIGHT,ID,11/21/2003 22:05 +Gettysburg,,LIGHT,PA,11/21/2003 22:30 +Harding,,DISK,WV,11/22/2003 0:30 +Livermore,,LIGHT,CA,11/22/2003 2:30 +Murrells Inlet,,CIRCLE,SC,11/22/2003 5:00 +Tunkhannock,,TRIANGLE,PA,11/22/2003 6:30 +Florence,,TRIANGLE,AL,11/22/2003 9:20 +Calhoun,,CIRCLE,GA,11/22/2003 11:30 +Spartanburg,,OTHER,SC,11/22/2003 14:10 +West Palm Beach,,LIGHT,FL,11/22/2003 18:00 +Dacusville,,LIGHT,SC,11/22/2003 18:24 +Ronkonkoma,RED,CIRCLE,NY,11/22/2003 18:25 +Los Angeles,,LIGHT,CA,11/22/2003 19:25 +Vista,,TRIANGLE,CA,11/22/2003 19:30 +Vista,BLUE,TRIANGLE,CA,11/22/2003 19:30 +Dahlonega,,CIRCLE,GA,11/22/2003 20:20 +Albany,YELLOW,OTHER,NY,11/22/2003 20:30 +Fleetwood,,CIRCLE,LA,11/22/2003 20:50 +N. Ridgeville,,CIGAR,OH,11/22/2003 21:00 +Bardstown,BLUE,OTHER,KY,11/22/2003 21:25 +Georgetown,,LIGHT,MS,11/22/2003 23:00 +Bergenfield,,OTHER,NJ,11/22/2003 23:06 +Philadelphia,BLUE,VARIOUS,PA,11/22/2003 23:20 +Colorado Springs,,TRIANGLE,CO,11/22/2003 23:30 +Cabot,,FORMATION,AR,11/23/2003 0:00 +Seekonk,,LIGHT,MA,11/23/2003 17:35 +Berkeley,,OVAL,CA,11/23/2003 18:00 +Muskogee,,LIGHT,OK,11/23/2003 18:30 +Piscataway,,TRIANGLE,NJ,11/23/2003 18:30 +Johnson City,,CIRCLE,NY,11/23/2003 20:45 +San Diego,RED,CHEVRON,CA,11/23/2003 21:15 +Morehead,,,KY,11/23/2003 22:00 +Napa,RED,,CA,11/23/2003 22:00 +Seattle,,,WA,11/23/2003 22:30 +Ponca City,,OVAL,OK,11/23/2003 22:45 +Santa Maria,RED,LIGHT,CA,11/23/2003 23:00 +Brunswick,,CIRCLE,ME,11/23/2003 23:48 +White Sulphur Springs,,CIRCLE,MT,11/24/2003 1:00 +Sacramento,,TRIANGLE,CA,11/24/2003 6:20 +Kaufman,,SPHERE,TX,11/24/2003 16:30 +Colorado Springs,,VARIOUS,CO,11/24/2003 17:00 +Coos Bay,YELLOW,OVAL,OR,11/24/2003 18:10 +Fairbanks,,DISK,AK,11/24/2003 18:32 +Destin,,CIRCLE,FL,11/24/2003 19:00 +Laredo,,CIRCLE,TX,11/24/2003 19:15 +San Diego,,TRIANGLE,CA,11/24/2003 21:43 +Scarborough,,LIGHT,ME,11/25/2003 0:00 +Hartford,,OTHER,WI,11/25/2003 0:45 +Portland,,,ME,11/25/2003 2:00 +Columbia,,CIRCLE,SC,11/25/2003 5:33 +Indianapolis,,,IN,11/25/2003 7:20 +Chilhowie,,OTHER,VA,11/25/2003 14:00 +Portland,,DISK,OR,11/25/2003 16:10 +Tower,RED GREEN,LIGHT,MI,11/25/2003 17:35 +St. Albans,,OTHER,WV,11/25/2003 18:50 +Atlanta,RED BLUE,VARIOUS,GA,11/25/2003 20:30 +Manitowoc,,FORMATION,WI,11/25/2003 20:30 +Warren,,TRIANGLE,OH,11/25/2003 23:00 +The Dalles,,LIGHT,OR,11/26/2003 1:23 +Bellemont,GREEN,FIREBALL,AZ,11/26/2003 3:00 +Wichita Falls,,CHEVRON,TX,11/26/2003 5:30 +York,,LIGHT,PA,11/26/2003 6:10 +Woburn,,TEARDROP,MA,11/26/2003 6:12 +Indianapolis,,OTHER,IN,11/26/2003 7:00 +Sellic,,LIGHT,WA,11/26/2003 10:45 +Forest Park,,LIGHT,GA,11/26/2003 16:15 +Milton,,LIGHT,VT,11/26/2003 17:26 +Vernonia,,SPHERE,OR,11/26/2003 18:31 +Gilbert,RED,TRIANGLE,AZ,11/26/2003 18:55 +Valencia,,TRIANGLE,CA,11/26/2003 20:00 +Cape May County,,LIGHT,NJ,11/26/2003 20:15 +Kalispell,RED GREEN BLUE,DISK,MT,11/27/2003 0:20 +Los Angeles,,TRIANGLE,CA,11/27/2003 18:24 +Memphis,,LIGHT,TN,11/27/2003 18:45 +San Diego,ORANGE BLUE,FIREBALL,CA,11/27/2003 19:00 +Ridgefield,,,WA,11/27/2003 20:35 +Hemet,,TRIANGLE,CA,11/27/2003 21:05 +San Diego,RED GREEN,LIGHT,CA,11/27/2003 22:40 +Hayward,,LIGHT,CA,11/28/2003 0:00 +Paris,ORANGE,LIGHT,TN,11/28/2003 1:20 +Walnut Creek,,TRIANGLE,CA,11/28/2003 12:40 +Cloudcroft,,OTHER,NM,11/28/2003 15:00 +Palo Alto,,DISK,CA,11/28/2003 17:35 +Thomas,,OVAL,OK,11/28/2003 21:30 +Jackson,,LIGHT,MS,11/28/2003 22:00 +Clifton,,LIGHT,NJ,11/28/2003 22:55 +Bismarck,,OTHER,ND,11/28/2003 23:45 +Grasonville,,OTHER,MD,11/29/2003 0:00 +To remain unknown,,,MN,11/29/2003 18:00 +Limerick,,TRIANGLE,PA,11/29/2003 20:36 +Stoughton,,CIRCLE,MA,11/29/2003 22:00 +Bergenfield,,LIGHT,NJ,11/29/2003 22:03 +Waterloo,,FIREBALL,IA,11/29/2003 22:30 +Siren,,DISK,WI,11/29/2003 23:10 +Siren,,OVAL,WI,11/30/2003 0:00 +Ashland,,DISK,NE,11/30/2003 12:45 +Ashland,,DISK,NE,11/30/2003 12:45 +San Diego,,CIRCLE,CA,11/30/2003 15:35 +Gastonia,,OTHER,NC,11/30/2003 15:41 +Belle Chasse,,LIGHT,LA,11/30/2003 18:30 +Stockbridge,,TRIANGLE,MI,11/30/2003 18:30 +Kingston,,TRIANGLE,TN,11/30/2003 18:55 +St. Louis,,,MO,11/30/2003 19:30 +Pico Rivera,RED,VARIOUS,CA,11/30/2003 19:50 +Ashgrove,,,MO,11/30/2003 20:45 +Rockford,RED GREEN,LIGHT,IL,11/30/2003 22:30 +Union,YELLOW,LIGHT,MO,11/30/2003 23:00 +Auberry,BLUE,LIGHT,CA,11/30/2003 23:53 +Williamstown,,DISK,WV,12/1/2003 1:00 +Lemoore,RED,LIGHT,CA,12/1/2003 2:00 +Dickinson,,TRIANGLE,ND,12/1/2003 5:00 +Washington,,VARIOUS,MI,12/1/2003 5:50 +San Jose,,OTHER,CA,12/1/2003 7:10 +Gilbert,RED,CIRCLE,AZ,12/1/2003 7:30 +Hodgenville,,,KY,12/1/2003 7:35 +Reynoldsburg,,CYLINDER,OH,12/1/2003 12:07 +Bayville,,FIREBALL,NJ,12/1/2003 13:00 +,,LIGHT,IL,12/1/2003 18:00 +Milwaukee,,LIGHT,WI,12/1/2003 18:20 +Mesa,RED,FIREBALL,AZ,12/1/2003 19:30 +Stevens Point,ORANGE,LIGHT,WI,12/1/2003 19:30 +Baltimore,,CHEVRON,MD,12/1/2003 21:40 +Brewster,,,MA,12/1/2003 22:00 +Seymour,,OTHER,CT,12/1/2003 22:15 +South Nyack,,EGG,NY,12/2/2003 0:24 +Clarksville,,OTHER,TN,12/2/2003 0:45 +Toms River,,DISK,NJ,12/2/2003 1:00 +Newport,,,CA,12/2/2003 2:00 +San Gabriel,,CIRCLE,CA,12/2/2003 2:02 +Pataskala,,,OH,12/2/2003 6:40 +Edison,,OVAL,NJ,12/2/2003 8:52 +Santa Monica,,LIGHT,CA,12/2/2003 17:30 +Thousand Oaks,,OVAL,CA,12/2/2003 17:52 +San Diego,YELLOW,CIRCLE,CA,12/2/2003 18:15 +Lafayette,RED,,TN,12/2/2003 18:30 +Marblehead,,FIREBALL,MA,12/2/2003 21:46 +East Orange,GREEN,LIGHT,NJ,12/2/2003 22:54 +Sandy Hook,,OVAL,KY,12/3/2003 1:00 +Taylorsville,,,NC,12/3/2003 6:55 +Greenwood Village,,CIRCLE,CO,12/3/2003 12:30 +West Bridgewater,,,MA,12/3/2003 15:43 +Timmonsville,,OTHER,SC,12/3/2003 17:30 +Southlake,RED,OVAL,TX,12/3/2003 18:45 +Rail Road Flat,,,CA,12/3/2003 19:00 +Whitmore Lake,,,MI,12/3/2003 19:00 +Miami,BLUE,FLASH,FL,12/3/2003 19:43 +Hagerstown,,TRIANGLE,MD,12/3/2003 20:00 +Natalia,,SPHERE,TX,12/3/2003 21:20 +Myrtle Beach,,LIGHT,SC,12/3/2003 22:35 +Whitehouse Station,YELLOW,CIRCLE,NJ,12/4/2003 5:00 +Deming,,OTHER,NM,12/4/2003 16:30 +Scottsdale,,CIGAR,AZ,12/4/2003 21:15 +Crawford,,OTHER,TX,12/4/2003 22:00 +Portage,,EGG,MI,12/5/2003 1:15 +Oceanside,,FIREBALL,CA,12/5/2003 5:00 +Havelock,,CIRCLE,NC,12/5/2003 5:30 +Stafford,,LIGHT,VA,12/5/2003 11:00 +Theodosia,,OTHER,MO,12/5/2003 11:00 +DeKalb,,CIRCLE,IL,12/5/2003 16:50 +St Charles,,LIGHT,IL,12/5/2003 17:00 +Milwaukee,,LIGHT,WI,12/5/2003 17:30 +Cary,BLUE,CIGAR,NC,12/5/2003 17:45 +Sedona,RED,DISK,AZ,12/5/2003 18:30 +Miami,,LIGHT,OK,12/5/2003 19:00 +Belleville,,OTHER,IL,12/5/2003 23:27 +Centralia,RED,OTHER,IL,12/6/2003 0:30 +Sycamore,,TEARDROP,GA,12/6/2003 19:15 +Palatine,,OTHER,IL,12/7/2003 3:00 +Toms River,,,NJ,12/7/2003 10:37 +Estes Park,,,CO,12/7/2003 15:00 +Plymouth,,DISK,PA,12/7/2003 15:55 +Plymouth,,SPHERE,PA,12/7/2003 15:55 +Farisita,,FIREBALL,CO,12/7/2003 16:30 +Bremerton,,FIREBALL,WA,12/8/2003 0:20 +Williamstown,,CIRCLE,WV,12/8/2003 1:00 +Myrtle Beach,ORANGE,LIGHT,SC,12/8/2003 21:30 +Seneca,,,SC,12/8/2003 21:57 +Beachwood,,,OH,12/8/2003 23:00 +Brazil,RED,CIRCLE,IN,12/9/2003 0:00 +Chaffee,,OTHER,MO,12/9/2003 0:50 +Pueblo,,LIGHT,CO,12/9/2003 18:00 +Mission Viejo,YELLOW,TRIANGLE,CA,12/9/2003 18:10 +Camarillo,,LIGHT,CA,12/9/2003 18:30 +Lawrenceville,,CIRCLE,IL,12/9/2003 19:00 +Terre Haute,YELLOW,TRIANGLE,IN,12/9/2003 19:54 +Greer,,DISK,SC,12/9/2003 20:15 +Lincolnton,,,NC,12/10/2003 0:00 +Sanders,,CIGAR,AZ,12/10/2003 7:00 +Prescott,ORANGE,FIREBALL,AZ,12/10/2003 19:25 +Corpus Christi,,CIRCLE,TX,12/10/2003 19:30 +Boise,,,ID,12/10/2003 22:00 +Cleveland,,,OK,12/10/2003 23:00 +Houston,ORANGE,,TX,12/11/2003 0:00 +Platte City,,TEARDROP,MO,12/11/2003 2:00 +Sherman,GREEN,LIGHT,TX,12/11/2003 3:53 +Loves Park,,TRIANGLE,IL,12/11/2003 17:30 +Pasadena,,LIGHT,CA,12/11/2003 17:50 +Houston,ORANGE,LIGHT,TX,12/11/2003 19:00 +Houston,ORANGE,LIGHT,TX,12/11/2003 19:00 +Waterford,,LIGHT,VT,12/11/2003 19:10 +Florissant,,LIGHT,CO,12/11/2003 19:30 +Los Angeles,,FIREBALL,CA,12/11/2003 20:23 +Belzoni,,LIGHT,MS,12/11/2003 20:30 +June Lake,,CIRCLE,CA,12/11/2003 23:00 +Royal Oak,,TRIANGLE,MI,12/11/2003 23:40 +East Amherst,,,NY,12/12/2003 0:00 +Rockville,,VARIOUS,MD,12/12/2003 13:00 +Alexandria,,TEARDROP,IN,12/12/2003 17:50 +Houston,,OTHER,TX,12/12/2003 18:00 +Roanoke,,LIGHT,VA,12/12/2003 18:00 +Hillsboro,,LIGHT,OH,12/12/2003 22:00 +Lodi,BLUE,CIRCLE,CA,12/12/2003 23:00 +Bloomington,,OTHER,IN,12/12/2003 23:05 +Fullerton,,OVAL,CA,12/13/2003 1:30 +Arlington,,VARIOUS,VA,12/13/2003 2:00 +Alexandria,GREEN,FIREBALL,VA,12/13/2003 2:20 +Pascagoula,,OTHER,MS,12/13/2003 15:00 +Fitchburg,,CYLINDER,MA,12/13/2003 16:25 +Vacaville,RED,FIREBALL,CA,12/13/2003 18:00 +Tacoma,GREEN,,WA,12/14/2003 0:26 +Kent,GREEN,CIRCLE,WA,12/14/2003 0:46 +Clifton,,LIGHT,VA,12/14/2003 2:00 +Eugene,,,OR,12/14/2003 3:38 +North Highlands,YELLOW,CIRCLE,CA,12/14/2003 18:30 +Rocklin,BLUE,CIRCLE,CA,12/14/2003 19:30 +North Las Vegas,,FIREBALL,NV,12/14/2003 19:45 +Vinton,GREEN,FIREBALL,CA,12/14/2003 20:00 +Central,,CIRCLE,IN,12/15/2003 0:00 +Stratham,BLUE,LIGHT,NH,12/15/2003 2:30 +Alger,,OTHER,OH,12/15/2003 8:45 +San Francisco Bay,,,CA,12/15/2003 10:05 +Duncan,RED,VARIOUS,OK,12/15/2003 15:00 +Jewett,,LIGHT,TX,12/15/2003 18:00 +Napa,,CIRCLE,CA,12/15/2003 18:15 +Salisbury,,VARIOUS,MD,12/15/2003 18:55 +Gainesville,,LIGHT,FL,12/15/2003 19:00 +Cocoa,GREEN,FIREBALL,FL,12/15/2003 19:50 +Palestine,,LIGHT,TX,12/15/2003 22:00 +North Hollywood,BLUE,FIREBALL,CA,12/15/2003 22:45 +Glenn Rose,,TRIANGLE,TX,12/16/2003 0:00 +Van Buren,,OTHER,MO,12/16/2003 1:24 +Webster,,EGG,SD,12/16/2003 2:00 +Beverly,,TEARDROP,MA,12/16/2003 3:15 +New Braunfels,,OVAL,TX,12/16/2003 4:30 +Glen Rose,,TRIANGLE,TX,12/16/2003 10:50 +Riverbank,,OTHER,CA,12/16/2003 11:45 +Pompton Lakes,GREEN,DISK,NJ,12/16/2003 17:15 +Wendover,,LIGHT,UT,12/16/2003 17:50 +Brookline,,LIGHT,MA,12/16/2003 18:00 +Cliff,ORANGE,LIGHT,NM,12/16/2003 18:00 +Lake Buena Vista,,TRIANGLE,FL,12/16/2003 19:17 +Valencia,,CIRCLE,CA,12/16/2003 22:00 +Glen Rose,,TRIANGLE,TX,12/16/2003 22:50 +San Jose,,DIAMOND,CA,12/17/2003 6:15 +Hallandale,,TRIANGLE,FL,12/17/2003 11:45 +Caney,RED,,KS,12/17/2003 18:25 +Jonestown,RED,LIGHT,TX,12/17/2003 18:40 +Austell,,LIGHT,GA,12/17/2003 19:05 +Jonestown,,RECTANGLE,TX,12/17/2003 19:35 +Eureka,,FIREBALL,CA,12/17/2003 19:45 +Lake Stevens,,,WA,12/17/2003 22:00 +Riverside,,CIRCLE,CA,12/17/2003 22:30 +Castro Valley,,,CA,12/17/2003 23:15 +Tulsa,,,OK,12/18/2003 2:30 +Dallas,,OTHER,OR,12/18/2003 3:30 +Morton,,LIGHT,MS,12/18/2003 7:00 +Hesperus,,CIGAR,CO,12/18/2003 9:30 +Granite Falls,,FIREBALL,WA,12/18/2003 16:45 +Charlottesville,,LIGHT,VA,12/18/2003 18:25 +Carothersville,,CIRCLE,MO,12/18/2003 18:30 +Seattle,,FIREBALL,WA,12/18/2003 18:45 +Eureka,,LIGHT,CA,12/18/2003 18:50 +Woodstock,,DISK,GA,12/18/2003 19:00 +Lincoln,,OVAL,NE,12/18/2003 23:00 +Lynnville,,CIRCLE,IN,12/19/2003 0:00 +Homestead,,CIGAR,FL,12/19/2003 2:00 +Austin,BLUE,VARIOUS,TX,12/19/2003 2:30 +Amado,,TRIANGLE,AZ,12/19/2003 3:00 +Tacoma,,CIRCLE,WA,12/19/2003 3:15 +Deming,,OVAL,NM,12/19/2003 8:35 +Austin,,,TX,12/19/2003 11:00 +Hot Springs,,OTHER,AR,12/19/2003 14:30 +Boise,,CIGAR,ID,12/19/2003 18:00 +Oak Creek,,FIREBALL,WI,12/19/2003 22:45 +Kokomo,,DISK,IN,12/20/2003 12:30 +Atlantic Beach,,SPHERE,NC,12/20/2003 16:00 +I-395,,CIGAR,CT,12/20/2003 16:30 +Walterboro,,DISK,SC,12/20/2003 17:00 +Independence,,OTHER,MO,12/20/2003 17:15 +Garfield Heights,,OTHER,OH,12/20/2003 19:16 +Chesterfield,,CIRCLE,VA,12/20/2003 20:00 +Emsworth,,,PA,12/20/2003 21:30 +Paris,RED,,TX,12/20/2003 22:00 +Fayetteville,,CIRCLE,NC,12/20/2003 22:15 +Evansville,,EGG,IN,12/20/2003 22:40 +Augusta,,DISK,GA,12/20/2003 23:45 +Elizabethtown,,LIGHT,KY,12/20/2003 23:45 +Duxbury,ORANGE,SPHERE,MA,12/21/2003 1:28 +Kissimmee,ORANGE,LIGHT,FL,12/21/2003 3:05 +St. Petersburg,,,FL,12/21/2003 3:07 +Baker,,CONE,CA,12/21/2003 14:00 +Graham,RED,CIRCLE,WA,12/21/2003 19:30 +Warren,,LIGHT,OH,12/21/2003 19:52 +Shannon,GREEN,LIGHT,MS,12/21/2003 20:00 +Kelseyville,,CIRCLE,CA,12/21/2003 22:00 +Manassas,,CIRCLE,VA,12/21/2003 22:30 +Mesquite,,,TX,12/21/2003 23:00 +Palmdale,,VARIOUS,CA,12/22/2003 9:00 +Lake Charles,BLUE,CHEVRON,LA,12/22/2003 13:00 +Pahoa,,CIRCLE,HI,12/22/2003 13:30 +Redding,,LIGHT,CA,12/22/2003 17:00 +Madison,,OTHER,WI,12/22/2003 18:00 +Carlsbad,,OTHER,CA,12/22/2003 19:00 +Port Orchard,,FIREBALL,WA,12/22/2003 20:38 +Independent Hill,,TRIANGLE,VA,12/22/2003 23:00 +Borger,,OTHER,TX,12/23/2003 1:40 +Gasport,,LIGHT,NY,12/23/2003 2:30 +Pinetop,RED,,AZ,12/23/2003 3:00 +Superior,,TRIANGLE,CO,12/23/2003 4:56 +Hayneville,GREEN,LIGHT,AL,12/23/2003 5:11 +Sandpoint,,,ID,12/23/2003 7:15 +Norwalk,RED,LIGHT,CA,12/23/2003 19:22 +Knox,,CIRCLE,IN,12/23/2003 20:00 +Old Bridge,,,NJ,12/23/2003 21:30 +Oldbridge,,LIGHT,NJ,12/23/2003 21:30 +Westminster,ORANGE,CIRCLE,CA,12/23/2003 22:20 +Anaheim Hills,,LIGHT,CA,12/23/2003 22:40 +Inyokern,GREEN,CIRCLE,CA,12/23/2003 22:50 +Burbank,RED,TRIANGLE,CA,12/24/2003 1:00 +Gonzales,,TRIANGLE,LA,12/24/2003 3:19 +Wenatchee,ORANGE,FORMATION,WA,12/24/2003 6:45 +Los Angeles,,SPHERE,CA,12/24/2003 10:00 +Northglenn,,LIGHT,CO,12/24/2003 17:20 +San Francisco,RED,OVAL,CA,12/24/2003 23:30 +Anchorage,ORANGE,SPHERE,AK,12/25/2003 0:00 +Eagle,,OTHER,CO,12/25/2003 2:00 +Salem,,TEARDROP,WI,12/25/2003 15:45 +Sallisaw,ORANGE,OTHER,OK,12/25/2003 18:00 +New Haven,,FIREBALL,CT,12/25/2003 18:40 +Indianapolis,RED,OTHER,IN,12/25/2003 20:42 +North St. Paul,,FIREBALL,MN,12/25/2003 21:40 +Shelbyville,RED GREEN,,KY,12/25/2003 22:30 +Brookfield,,LIGHT,CT,12/25/2003 23:30 +Boiling Springs,,TRIANGLE,PA,12/25/2003 23:50 +Citrus Heights,ORANGE,,CA,12/26/2003 1:40 +Watertown,,FORMATION,NY,12/26/2003 13:30 +Huntington,,CIRCLE,IN,12/26/2003 14:00 +Beavercreek,,DISK,OH,12/26/2003 15:00 +Beavercreek,,VARIOUS,OH,12/26/2003 15:00 +Mt.Vernon,,CIGAR,IL,12/26/2003 16:30 +Vashon Island,,LIGHT,WA,12/26/2003 19:45 +Preston,RED,OVAL,IA,12/26/2003 20:00 +Rohnert Park,,LIGHT,CA,12/26/2003 20:00 +Cape Coral,,CIRCLE,FL,12/26/2003 21:31 +Martinez,ORANGE BLUE,SPHERE,CA,12/26/2003 22:45 +Gilroy,ORANGE,FIREBALL,CA,12/26/2003 23:08 +Spencerport,,TRIANGLE,NY,12/27/2003 5:30 +Myrtle Beach,GREEN BLUE,DISK,SC,12/27/2003 14:30 +Carnesville,,CIRCLE,GA,12/27/2003 15:40 +Highland,,TRIANGLE,CA,12/27/2003 15:44 +Doylestown,,FIREBALL,PA,12/27/2003 16:30 +Duluth,RED,FIREBALL,GA,12/27/2003 17:00 +Roaring River,,OVAL,NC,12/27/2003 17:30 +Lake in the Hills,,LIGHT,IL,12/27/2003 18:00 +Peabody,,LIGHT,MA,12/27/2003 18:00 +Honolulu,,SPHERE,HI,12/27/2003 20:00 +Lucasville,,,OH,12/27/2003 20:05 +Lucasville,RED BLUE,,OH,12/27/2003 20:10 +Wayne,,CONE,NJ,12/27/2003 22:00 +Central City,RED,FIREBALL,KY,12/28/2003 0:00 +McKean County,,,PA,12/28/2003 4:00 +Little Rock,,TRIANGLE,AR,12/28/2003 9:00 +West Branch,,LIGHT,MI,12/28/2003 15:00 +Conesville,,LIGHT,OH,12/28/2003 16:30 +New York City,RED,TRIANGLE,NY,12/28/2003 18:00 +Bergenfield,,OTHER,NJ,12/28/2003 18:29 +Waterloo,,OTHER,IA,12/28/2003 18:41 +Tacoma,,OTHER,WA,12/28/2003 18:50 +Deer Park,ORANGE,EGG,NY,12/28/2003 20:00 +Grand Isle,,TRIANGLE,ME,12/28/2003 20:25 +Grand Isle,,VARIOUS,ME,12/28/2003 20:25 +Sissonville,,LIGHT,WV,12/28/2003 22:00 +Chicago,,,IL,12/28/2003 22:30 +Centereach,,TRIANGLE,NY,12/28/2003 23:10 +Lake Worth,,OVAL,FL,12/29/2003 0:00 +Fairfax,ORANGE,FIREBALL,VA,12/29/2003 0:25 +El Cajon,,,CA,12/29/2003 0:30 +Helena,GREEN,SPHERE,MT,12/29/2003 4:10 +Bainbridge,,TRIANGLE,GA,12/29/2003 12:36 +Harmony Township,,CROSS,NJ,12/29/2003 18:00 +Monroe,,LIGHT,WA,12/29/2003 18:00 +Salem,,CIRCLE,OR,12/29/2003 21:15 +Alexandria,,FIREBALL,VA,12/29/2003 22:30 +San Bruno,,SPHERE,CA,12/30/2003 10:40 +Missoula,,CIGAR,MT,12/30/2003 13:00 +Boulder area,,SPHERE,CO,12/30/2003 15:24 +Alexandria,,LIGHT,VA,12/30/2003 16:45 +Alexandria,,LIGHT,VA,12/30/2003 16:45 +Lancaster,,LIGHT,TX,12/30/2003 16:45 +New Castle,,LIGHT,IN,12/30/2003 17:00 +Rochester,,DISK,NY,12/30/2003 18:00 +Candler,,LIGHT,NC,12/30/2003 18:15 +Tatum,,CIRCLE,NM,12/30/2003 21:30 +Shelby Township,BLUE,LIGHT,MI,12/31/2003 0:00 +Anaheim,,DIAMOND,CA,12/31/2003 1:00 +Selma,,FLASH,OR,12/31/2003 5:00 +Bloomingdale,,CIGAR,IL,12/31/2003 8:00 +Olive Branch,,DISK,MS,12/31/2003 12:00 +San Bruno,,TRIANGLE,CA,12/31/2003 13:50 +Landers,,DISK,CA,12/31/2003 14:30 +Mattituck,,TRIANGLE,NY,12/31/2003 14:35 +Lagrange,,CIGAR,ME,12/31/2003 16:00 +Warner Robins,RED,OVAL,GA,12/31/2003 16:45 +Sarasota,,DISK,FL,12/31/2003 17:45 +Sacramento,,OVAL,CA,12/31/2003 21:00 +Crown Point,,VARIOUS,IN,12/31/2003 22:50 +Penfield,,LIGHT,NY,12/31/2003 22:50 +Canyon Lake,,CROSS,CA,12/31/2003 23:00 +Lawrence,,FORMATION,KS,12/31/2003 23:30 +Albany,,FORMATION,OR,12/31/2003 23:40 +Wenatchee,YELLOW,LIGHT,WA,12/31/2003 23:45 +La Mesa,RED,CIRCLE,CA,12/31/2003 23:50 +Kenai,,LIGHT,AK,1/1/2004 0:00 +Spring Valley,RED,LIGHT,CA,1/1/2004 0:00 +La Mirada,ORANGE,OTHER,CA,1/1/2004 0:10 +Boston,,FORMATION,MA,1/1/2004 2:00 +Belleville,,TRIANGLE,IL,1/1/2004 2:30 +Tampa,,TRIANGLE,FL,1/1/2004 10:45 +Bakersville,,LIGHT,NC,1/1/2004 12:30 +Flowery Branch,,DISK,GA,1/1/2004 15:30 +Atlanta,ORANGE,VARIOUS,GA,1/1/2004 17:30 +Longview,,FLASH,WA,1/1/2004 17:38 +Multiple,,VARIOUS,NH,1/1/2004 17:41 +Beatty,,,OR,1/1/2004 18:00 +Wailea,ORANGE,CIRCLE,HI,1/2/2004 7:35 +El Segundo,,TRIANGLE,CA,1/2/2004 11:45 +Long Beach,,TRIANGLE,CA,1/2/2004 11:45 +Shell Bluff,,LIGHT,GA,1/2/2004 18:00 +Fairfax County,,OTHER,VA,1/2/2004 18:20 +Waterbury,,CHEVRON,CT,1/3/2004 0:20 +Reno,,OTHER,NV,1/3/2004 1:00 +Sacramento,GREEN BLUE,FLASH,CA,1/3/2004 17:10 +Lake Tahoe,,CIRCLE,NV,1/3/2004 18:30 +Naugatuck,,,CT,1/3/2004 22:30 +Laurel,,FLASH,MD,1/3/2004 23:00 +Olympia,,CIRCLE,WA,1/3/2004 23:05 +Crown Point,,RECTANGLE,IN,1/3/2004 23:45 +Marathon,,TRIANGLE,FL,1/4/2004 0:30 +Albion,,TEARDROP,NY,1/4/2004 2:20 +Hayward,,,CA,1/4/2004 10:40 +Hayward,,EGG,CA,1/4/2004 10:40 +Holyoke,,OVAL,MA,1/4/2004 14:00 +Fort Myers,,DISK,FL,1/4/2004 14:30 +Toledo,,VARIOUS,OH,1/4/2004 17:00 +Four Oaks,,DISK,NC,1/4/2004 19:00 +Golden,,OTHER,CO,1/4/2004 20:00 +Palmdale,,OVAL,CA,1/4/2004 22:20 +Woodinville,RED,TRIANGLE,WA,1/5/2004 17:10 +Seligman,,CIGAR,AZ,1/5/2004 17:30 +Maui,,OTHER,HI,1/5/2004 19:00 +Seligman,RED,LIGHT,AZ,1/5/2004 19:00 +Arivaca,,DISK,AZ,1/5/2004 21:00 +Griswold,,CIRCLE,CT,1/5/2004 22:00 +Overland Park,,FIREBALL,KS,1/5/2004 22:00 +Valhalla,,CIRCLE,NY,1/5/2004 22:10 +Huntington,,DISK,IN,1/6/2004 14:30 +Phoenix,,LIGHT,AZ,1/6/2004 18:40 +West Orange,RED,TRIANGLE,NJ,1/6/2004 20:00 +Guilford,,TRIANGLE,CT,1/6/2004 20:40 +Hesperia,,DISK,CA,1/6/2004 21:45 +Pearl River,YELLOW,,NY,1/6/2004 22:00 +Lambertville,,VARIOUS,MI,1/7/2004 6:30 +Peoria,,,IL,1/7/2004 15:30 +El Segundo,,SPHERE,CA,1/7/2004 16:50 +Goleta,,TRIANGLE,CA,1/7/2004 19:00 +Duluth,,TRIANGLE,GA,1/7/2004 19:30 +West Hartford,,TRIANGLE,CT,1/7/2004 22:00 +Riverside,RED ORANGE YELLOW GREEN,LIGHT,CA,1/8/2004 2:00 +Henderson,,CYLINDER,NV,1/8/2004 5:00 +Biloxi,,CYLINDER,MS,1/8/2004 16:45 +Vail,RED ORANGE,LIGHT,CO,1/8/2004 17:00 +Coppell,,LIGHT,TX,1/9/2004 0:12 +Smithport,RED GREEN,,PA,1/9/2004 18:45 +Hesperia,,TRIANGLE,CA,1/9/2004 19:00 +Butte,,FORMATION,MT,1/9/2004 19:48 +Laguna Hills,,LIGHT,CA,1/9/2004 23:00 +Bergenfield,,OTHER,NJ,1/10/2004 5:50 +North Miami,,LIGHT,FL,1/10/2004 6:15 +Fort Wayne,YELLOW,FIREBALL,IN,1/10/2004 7:30 +Beverly,,DISK,MA,1/10/2004 9:33 +Saratoga,,DISK,NY,1/10/2004 15:30 +Elsmere,,CIRCLE,DE,1/10/2004 17:35 +Jackson,,,MS,1/10/2004 18:00 +Jackson,RED,LIGHT,MS,1/10/2004 18:00 +Naugatuck,,LIGHT,CT,1/10/2004 19:15 +Rock Creek,,DIAMOND,AL,1/10/2004 19:30 +Athens,,OVAL,TN,1/10/2004 21:30 +West River,YELLOW,EGG,MD,1/11/2004 3:28 +West River,,CIRCLE,MD,1/11/2004 9:38 +Pigeon Forge,,LIGHT,TN,1/11/2004 11:00 +Seattle,,OVAL,WA,1/11/2004 16:00 +Carnesville,,,GA,1/11/2004 17:10 +Anderson,,,CA,1/11/2004 19:03 +St. George Island,,LIGHT,AK,1/11/2004 19:10 +Oroville,,TRIANGLE,WA,1/11/2004 21:15 +Stony Point,,LIGHT,NY,1/11/2004 21:30 +Santa Fe,RED,LIGHT,NM,1/12/2004 2:00 +Templeton,,LIGHT,MA,1/12/2004 2:00 +Lawrence,,,KS,1/12/2004 4:00 +Eureka,,FIREBALL,CA,1/12/2004 7:49 +Marathon,,,FL,1/12/2004 14:00 +Neillsville,,,WI,1/12/2004 18:30 +El Paso,,TRIANGLE,TX,1/12/2004 18:35 +Truro,,TRIANGLE,IA,1/12/2004 22:30 +Truro,,TRIANGLE,IA,1/12/2004 22:30 +North Dakota,,OTHER,ND,1/13/2004 15:00 +Camden,GREEN,EGG,NJ,1/13/2004 16:00 +West Chester,RED GREEN,TRIANGLE,PA,1/13/2004 17:00 +Jackson,,OVAL,NJ,1/13/2004 18:30 +Myrtle Beach,,LIGHT,SC,1/13/2004 19:50 +Houston,,OVAL,TX,1/13/2004 20:25 +Myrtle Beach,ORANGE,,SC,1/13/2004 20:30 +Little River,,,SD,1/13/2004 21:00 +Scottsdale,,LIGHT,AZ,1/13/2004 22:00 +Mount Vernon,,,MO,1/13/2004 22:30 +Culpeper,,,VA,1/14/2004 3:00 +Pickstown,,,SD,1/14/2004 5:40 +Kansas City,,CIGAR,MO,1/14/2004 8:30 +Burlington,,FIREBALL,MA,1/14/2004 12:45 +Dove Creek,,OTHER,CO,1/14/2004 17:45 +Mariano Lake,,OVAL,NM,1/14/2004 19:00 +Charestown,,CIRCLE,IN,1/15/2004 0:00 +Barco,,DISK,NC,1/15/2004 0:30 +Sedro Woolley,GREEN,SPHERE,WA,1/15/2004 1:00 +In-flight,,,IL,1/15/2004 4:00 +St. Louis,,LIGHT,MO,1/15/2004 4:05 +Elmhurst,GREEN,FIREBALL,IL,1/15/2004 5:45 +Kailua,,LIGHT,HI,1/15/2004 11:00 +Wheelersburg,RED ORANGE BLUE,LIGHT,OH,1/15/2004 20:00 +Yucca Valley,,CIRCLE,CA,1/15/2004 22:00 +Barstow,,,CA,1/15/2004 22:10 +Bolivar,,FIREBALL,MO,1/15/2004 23:00 +Lake Hopatcong,,,NJ,1/16/2004 0:00 +Lake Hopatcong,,TRIANGLE,NJ,1/16/2004 4:00 +Quartzite,,LIGHT,AZ,1/16/2004 19:30 +Marion Township,,CIRCLE,MI,1/16/2004 20:00 +San Bernardino,,,CA,1/16/2004 23:00 +Ivyland,,CIRCLE,PA,1/16/2004 23:11 +Hesperia,,LIGHT,CA,1/17/2004 10:00 +Mesa,,CIGAR,AZ,1/17/2004 18:00 +Union City,,VARIOUS,CA,1/17/2004 18:20 +Browning,,FORMATION,MT,1/17/2004 19:30 +Lake Havasu City,,LIGHT,AZ,1/17/2004 20:30 +Eugene,ORANGE YELLOW,VARIOUS,OR,1/17/2004 22:40 +Lakewood,,FORMATION,CO,1/18/2004 0:00 +La Crescenta,RED GREEN,CHEVRON,CA,1/18/2004 0:30 +Deltona,,OTHER,FL,1/18/2004 12:00 +Glocester,,TEARDROP,RI,1/18/2004 12:30 +Bath,,TRIANGLE,NC,1/18/2004 19:00 +Langley,,,WA,1/18/2004 22:00 +Moody,,OTHER,TX,1/19/2004 9:30 +Guilford,,CIRCLE,CT,1/19/2004 12:00 +Clinton,,LIGHT,MO,1/19/2004 19:00 +Minneapolis,,FIREBALL,MN,1/19/2004 19:00 +Mechaniscville,,TRIANGLE,MD,1/19/2004 21:00 +Sioux City,,FIREBALL,IA,1/20/2004 0:00 +Silver Springs,,,FL,1/20/2004 0:15 +Lambertville,,VARIOUS,MI,1/20/2004 6:55 +Boyce-Sharp,,OTHER,LA,1/20/2004 8:30 +Maple Valley,,OTHER,WA,1/20/2004 9:05 +Cranston,,,RI,1/20/2004 14:30 +Castro Valley,,LIGHT,CA,1/20/2004 18:30 +Alexandria,,DISK,LA,1/20/2004 19:00 +Corinth,,LIGHT,VT,1/20/2004 19:20 +Medford,,OTHER,OR,1/20/2004 20:00 +Hopewell Township,,LIGHT,NJ,1/20/2004 21:00 +Kincheloe,,,MI,1/21/2004 0:00 +Rockwall,,OTHER,TX,1/21/2004 7:00 +SOHO Observatory,BLUE,OTHER,IL,1/21/2004 7:00 +Las Vegas,,DISK,NV,1/21/2004 8:30 +Columbia,,CYLINDER,CT,1/21/2004 8:35 +Coos Bay,,DISK,OR,1/21/2004 18:00 +Aloha,,CIRCLE,OR,1/21/2004 18:23 +Redcrest,,LIGHT,CA,1/21/2004 18:50 +Willits,,FIREBALL,CA,1/21/2004 20:00 +Willits,,FIREBALL,CA,1/21/2004 20:00 +Willits,RED ORANGE YELLOW,FIREBALL,CA,1/21/2004 20:00 +Clackamas,,CYLINDER,OR,1/21/2004 20:26 +Silver City,,FIREBALL,NM,1/21/2004 23:40 +Gold Bar,,FLASH,WA,1/22/2004 0:15 +Kennesaw,,TEARDROP,GA,1/22/2004 1:00 +Albuquerque,,OTHER,NM,1/22/2004 12:45 +Deer Park,,,NY,1/22/2004 17:10 +Downers Grove,,LIGHT,IL,1/22/2004 17:30 +Lawrenceburg,,SPHERE,IN,1/22/2004 18:40 +Olathe,,TRIANGLE,KS,1/22/2004 18:45 +Deridder,,TRIANGLE,LA,1/22/2004 19:50 +Englewood,,LIGHT,CO,1/22/2004 20:00 +Norcross,,LIGHT,GA,1/22/2004 21:30 +Chesterfield,RED,EGG,VA,1/22/2004 22:55 +Moreno Valley,,CIRCLE,CA,1/22/2004 23:00 +Alger,,EGG,WA,1/23/2004 0:10 +Reamstown,,FORMATION,PA,1/23/2004 4:45 +Ridgefield,,CIRCLE,WA,1/23/2004 6:00 +Rockwall,,OTHER,TX,1/23/2004 7:00 +White Plains,,TRIANGLE,NY,1/23/2004 11:30 +Springfield,,OVAL,SC,1/23/2004 19:00 +Santa Rosa,,LIGHT,CA,1/23/2004 19:45 +Dallas,,LIGHT,TX,1/23/2004 21:30 +Greensboro,GREEN,DISK,NC,1/24/2004 15:30 +Chicago,,TRIANGLE,IL,1/24/2004 19:00 +San Diego,GREEN,CIGAR,CA,1/24/2004 19:40 +Belleview,,,FL,1/24/2004 20:15 +Victorville,,,CA,1/24/2004 21:00 +Columbus,,OVAL,OH,1/24/2004 22:30 +Hayward,,EGG,CA,1/25/2004 15:00 +Uvalde,,,TX,1/25/2004 15:05 +Germantown,GREEN,CIGAR,TN,1/25/2004 18:30 +Desert Hot Springs,,RECTANGLE,CA,1/25/2004 18:50 +West Hollywood,,CHEVRON,CA,1/25/2004 19:00 +San Francisco,,VARIOUS,CA,1/26/2004 11:03 +San Antonio,ORANGE,OTHER,TX,1/26/2004 18:12 +Phoenix,,LIGHT,AZ,1/26/2004 20:50 +Tampa,GREEN,FIREBALL,FL,1/26/2004 23:05 +Corpus Christi,,CIRCLE,TX,1/27/2004 0:00 +New York City,,TRIANGLE,NY,1/27/2004 4:00 +Mexia,,FIREBALL,TX,1/27/2004 7:20 +Mesa,,FORMATION,AZ,1/27/2004 19:30 +Ogunquit,,CIRCLE,ME,1/27/2004 22:00 +Vinton,,LIGHT,IA,1/27/2004 23:20 +Gaviota,,OTHER,CA,1/28/2004 0:00 +Deweese,,OTHER,NE,1/28/2004 2:34 +Sheboygan,,CIRCLE,WI,1/28/2004 6:23 +New Orleans,,SPHERE,LA,1/28/2004 12:30 +Las Vegas,,,NV,1/28/2004 18:30 +Richmond,,CYLINDER,VA,1/28/2004 18:35 +New Orleans,,LIGHT,LA,1/28/2004 19:20 +Mesa,,OVAL,AZ,1/28/2004 20:30 +Clarksville,,TRIANGLE,NY,1/28/2004 20:55 +Clarksville,,TRIANGLE,NY,1/28/2004 20:55 +New York City,GREEN,LIGHT,NY,1/28/2004 20:55 +Phoenix,,FIREBALL,AZ,1/28/2004 21:00 +Modesto,,CHEVRON,CA,1/28/2004 23:10 +Houston,,LIGHT,TX,1/29/2004 0:00 +Flagstaff,BLUE,LIGHT,AZ,1/29/2004 10:40 +Hartford,,,CT,1/29/2004 17:00 +Reading,,DISK,PA,1/29/2004 18:00 +Levittown,RED BLUE,TRIANGLE,PA,1/29/2004 18:45 +Myrtle Beach,ORANGE,LIGHT,SC,1/29/2004 21:30 +Pennsauken,,TRIANGLE,NJ,1/29/2004 21:30 +Howell,,,NJ,1/29/2004 21:50 +Howell,,TRIANGLE,NJ,1/29/2004 21:50 +Woburn,,CIGAR,MA,1/29/2004 23:30 +Antioch,YELLOW,LIGHT,CA,1/30/2004 3:30 +Worcester,,CHEVRON,MA,1/30/2004 16:00 +Chehalis,,LIGHT,WA,1/30/2004 18:47 +Mountlake Terrace,,DIAMOND,WA,1/30/2004 19:30 +Ketchikan,,LIGHT,AK,1/30/2004 20:00 +Willard,,SPHERE,MO,1/30/2004 21:30 +Saint Johns,,SPHERE,AZ,1/31/2004 9:00 +San Ramon,,OTHER,CA,1/31/2004 9:15 +Bristol,,EGG,TN,1/31/2004 15:00 +Mill Valley,,CIRCLE,CA,1/31/2004 16:45 +Auburn,,LIGHT,ME,1/31/2004 19:00 +Hampstead,,FIREBALL,NC,1/31/2004 19:00 +Wolfeboro,,LIGHT,NH,1/31/2004 19:00 +Yorba Linda,,,CA,1/31/2004 19:30 +Jerome,,RECTANGLE,MO,1/31/2004 21:00 +Fort Myers,,CIGAR,FL,1/31/2004 23:00 +Standish,,LIGHT,MI,1/31/2004 23:00 +Fontana,,CIRCLE,CA,2/1/2004 0:00 +Las Vegas,,OTHER,NV,2/1/2004 1:00 +South Bend,,,IN,2/1/2004 1:00 +Birmingham,,CHEVRON,AL,2/1/2004 2:00 +Los Angeles,,TRIANGLE,CA,2/1/2004 5:06 +Winter Park,ORANGE,FLASH,FL,2/1/2004 6:30 +Cohutta,,DISK,GA,2/1/2004 11:00 +Hawthorne,BLUE,LIGHT,CA,2/1/2004 11:57 +Clifton,,DISK,NJ,2/1/2004 12:30 +Murfreesboro,,OTHER,TN,2/1/2004 13:30 +Gastonia,,SPHERE,NC,2/1/2004 16:30 +Colebrook,GREEN,LIGHT,NH,2/1/2004 19:00 +Tucson,,CIRCLE,AZ,2/1/2004 20:30 +Waxahachie,RED,SPHERE,TX,2/2/2004 3:00 +Coquille,,,OR,2/2/2004 7:00 +Tillamook,,CYLINDER,OR,2/2/2004 19:30 +Maiden,,LIGHT,NC,2/2/2004 21:00 +Roxboro,RED,SPHERE,NC,2/3/2004 1:30 +Licking,,LIGHT,MO,2/3/2004 2:00 +Medford,,,OR,2/3/2004 3:05 +Suffolk,BLUE,SPHERE,VA,2/3/2004 15:25 +Grand Haven,,,MI,2/3/2004 20:00 +Salisbury,,OTHER,NC,2/3/2004 20:45 +Westfield,,FORMATION,IN,2/3/2004 21:30 +Sultana,,DIAMOND,CA,2/3/2004 21:37 +Scottsdale,,DISK,AZ,2/3/2004 23:00 +Kearney,BLUE,OVAL,NJ,2/4/2004 12:00 +San Marcos,,TEARDROP,TX,2/4/2004 16:20 +Seatac,,TRIANGLE,WA,2/4/2004 18:05 +Northfield,,SPHERE,OH,2/4/2004 19:00 +Shalimar,,SPHERE,FL,2/4/2004 20:35 +Lehigh Acres,,OTHER,FL,2/5/2004 0:30 +Mesa,,DISK,AZ,2/5/2004 8:50 +Sun City,,SPHERE,CA,2/5/2004 11:30 +Bend,,,OR,2/5/2004 13:59 +Monmouth County,,LIGHT,NJ,2/5/2004 16:30 +Burbank,,TRIANGLE,CA,2/5/2004 19:30 +Port St. Lucie,,SPHERE,FL,2/5/2004 19:30 +Sunnyside,,FORMATION,WA,2/5/2004 19:53 +Lake Jackson,,CIRCLE,TX,2/5/2004 20:00 +Solvang,,CIGAR,CA,2/6/2004 18:36 +Orlando,,,FL,2/6/2004 21:00 +Sarasota,,LIGHT,FL,2/7/2004 0:00 +Lone Pine,,,CA,2/7/2004 2:00 +Pottsville,,CYLINDER,AR,2/7/2004 12:00 +Renton,,LIGHT,WA,2/7/2004 15:40 +Riverside,,LIGHT,CA,2/7/2004 18:05 +Redmond,,VARIOUS,OR,2/7/2004 19:00 +Artesia,RED,LIGHT,CA,2/7/2004 22:45 +Fredericksburg,,LIGHT,VA,2/8/2004 0:49 +Statesville,,FIREBALL,NC,2/8/2004 1:00 +Valparaiso,,DISK,IN,2/8/2004 1:00 +Shiloh,,TRIANGLE,NC,2/8/2004 6:20 +Hayward,BLUE,CIRCLE,CA,2/8/2004 11:34 +Houston,RED,SPHERE,TX,2/8/2004 17:45 +Lowrys,,LIGHT,SC,2/8/2004 18:25 +San Jose,,LIGHT,CA,2/8/2004 18:37 +Middlebury,,FIREBALL,CT,2/8/2004 21:00 +Merriam,,FIREBALL,KS,2/9/2004 7:20 +Wallingford,BLUE,FIREBALL,IA,2/9/2004 18:00 +Wallingford,BLUE,FIREBALL,IA,2/9/2004 18:00 +Lincoln City,,DISK,OR,2/9/2004 19:00 +Marion,,,IN,2/9/2004 19:44 +Lebanon,ORANGE,FIREBALL,IN,2/9/2004 20:00 +Escondido,,FORMATION,CA,2/9/2004 20:11 +Conyers,,LIGHT,GA,2/9/2004 20:30 +San Bernardino,,OTHER,CA,2/10/2004 1:00 +Mansfield,,OTHER,OH,2/10/2004 5:15 +Annapolis,,SPHERE,MO,2/10/2004 19:00 +Broken Arrow,,CHEVRON,OK,2/10/2004 21:00 +Pratt,,CIRCLE,KS,2/10/2004 21:30 +Titonka,,TEARDROP,IA,2/10/2004 22:30 +New York,,DISK,NY,2/10/2004 23:45 +Fresno,RED,LIGHT,CA,2/11/2004 0:00 +West Palm Beach,,DISK,FL,2/11/2004 0:00 +Linthicum,,CIGAR,MD,2/11/2004 2:00 +West Roxbury,,LIGHT,MA,2/11/2004 5:45 +Cathedral City,,CIRCLE,CA,2/11/2004 6:45 +Lyndhurst,,CIGAR,OH,2/11/2004 8:22 +Irvine,BLUE,EGG,CA,2/11/2004 10:15 +Bayonne,,OVAL,NJ,2/11/2004 16:00 +Kingman,RED,FIREBALL,IN,2/11/2004 19:30 +Nokomis,,,FL,2/11/2004 20:00 +Peoria,BLUE,OVAL,IL,2/11/2004 20:00 +Wareham,ORANGE,LIGHT,MA,2/11/2004 20:00 +Yreka,,OTHER,CA,2/11/2004 20:00 +Newland,,TRIANGLE,NC,2/12/2004 6:00 +Port Angeles,,VARIOUS,WA,2/12/2004 9:15 +Rodeo,,CIRCLE,CA,2/12/2004 10:54 +Commerce,,LIGHT,CA,2/12/2004 13:35 +Wenatchee,,LIGHT,WA,2/12/2004 15:45 +Daly City,,LIGHT,CA,2/12/2004 17:00 +Post Falls,,FORMATION,ID,2/12/2004 19:30 +Minneapolis,,RECTANGLE,MN,2/12/2004 20:40 +Phoenix,,SPHERE,AZ,2/12/2004 22:30 +Sterling Heights,,LIGHT,MI,2/13/2004 3:00 +Seattle,,FIREBALL,WA,2/13/2004 6:15 +Maricopa,,LIGHT,AZ,2/13/2004 7:40 +Yadkinville,,SPHERE,NC,2/13/2004 16:30 +Eveleth,,LIGHT,MN,2/13/2004 19:11 +Why,,FORMATION,AZ,2/13/2004 20:00 +Flora,ORANGE,CIRCLE,IN,2/13/2004 21:00 +Fort Walton Beach,,TRIANGLE,FL,2/13/2004 21:30 +Oneonta,,,NY,2/13/2004 22:00 +Bothell,,TRIANGLE,WA,2/14/2004 0:00 +Pittsburgh,,,PA,2/14/2004 0:00 +Majenica,,FLASH,IN,2/14/2004 0:45 +New York City,,CIRCLE,NY,2/14/2004 15:18 +Winnebago County,,LIGHT,IL,2/14/2004 19:00 +New York City,BLUE,FIREBALL,NY,2/14/2004 19:30 +New York City,,SPHERE,NY,2/14/2004 19:30 +Sallisaw,,DISK,OK,2/14/2004 19:30 +Williston Park,,FIREBALL,NY,2/14/2004 19:30 +Blue Bell,,CIRCLE,PA,2/14/2004 19:35 +Newtown,GREEN,OVAL,PA,2/14/2004 19:45 +Wood-Ridge,GREEN,CIRCLE,NJ,2/14/2004 19:45 +New York City,,OVAL,NY,2/14/2004 20:00 +Tulsa,,FORMATION,OK,2/14/2004 20:00 +New Effington,,,SD,2/14/2004 20:17 +Belfair,,LIGHT,WA,2/14/2004 21:00 +Parsippany,GREEN,LIGHT,NJ,2/14/2004 21:30 +Casper,RED ORANGE,TRIANGLE,WY,2/14/2004 22:25 +San Carlos,,TRIANGLE,CA,2/14/2004 23:00 +Novato,,OTHER,CA,2/15/2004 1:00 +Charlotte,,LIGHT,NC,2/15/2004 2:00 +San Antonio,,CIRCLE,TX,2/15/2004 3:00 +Romeo,,FIREBALL,MI,2/15/2004 5:55 +Heber,,DISK,UT,2/15/2004 7:40 +Auburn,,CIRCLE,WA,2/15/2004 11:00 +Oldsmar,,CIRCLE,FL,2/15/2004 12:00 +Saline,,OTHER,MI,2/15/2004 19:36 +Sedro-Woolley,ORANGE,CIGAR,WA,2/15/2004 20:15 +Cocoa Beach,ORANGE,CROSS,FL,2/15/2004 20:40 +Rising Sun,,SPHERE,MD,2/15/2004 21:39 +Doniphan,RED ORANGE,FIREBALL,MO,2/15/2004 22:00 +Bloomington,,TRIANGLE,IN,2/15/2004 22:50 +Bethlehem,GREEN,LIGHT,CT,2/15/2004 23:00 +Cape Girardeau,GREEN,TRIANGLE,MO,2/15/2004 23:00 +Elkader,,,IA,2/15/2004 23:00 +Terre Haute,BLUE,FLASH,IN,2/16/2004 1:25 +Spokane,,,WA,2/16/2004 3:00 +Beckley,,CIRCLE,WV,2/16/2004 5:00 +Troy,,TRIANGLE,MI,2/16/2004 10:00 +Lander,,DIAMOND,WY,2/16/2004 11:30 +Interstate-95,,LIGHT,RI,2/16/2004 12:30 +Morongo Valley,RED BLUE,FIREBALL,CA,2/16/2004 19:30 +Orlando,,LIGHT,FL,2/16/2004 19:30 +Amityville,,EGG,NY,2/16/2004 20:30 +Commack,,,NY,2/16/2004 20:35 +The Woodlands,,LIGHT,TX,2/16/2004 20:45 +Central Islip,GREEN,FIREBALL,NY,2/16/2004 21:30 +Seattle,,RECTANGLE,WA,2/16/2004 22:05 +Pittsburgh,GREEN,EGG,PA,2/17/2004 1:00 +Newmarket,GREEN,CIRCLE,VA,2/17/2004 1:17 +Reston,,FIREBALL,VA,2/17/2004 1:20 +Renton,,LIGHT,WA,2/17/2004 5:35 +on highway,RED,SPHERE,AR,2/17/2004 5:45 +Covington,,DIAMOND,TN,2/17/2004 6:00 +Phillipsburg,,TRIANGLE,NJ,2/17/2004 19:00 +Centerville,,DIAMOND,OH,2/17/2004 20:00 +Howell,,DISK,MI,2/17/2004 21:00 +Jeffersonville,,DIAMOND,KY,2/17/2004 21:00 +Carrollton,,,MO,2/17/2004 21:30 +Harvard,,FIREBALL,MA,2/17/2004 23:45 +Newland,,OVAL,NC,2/18/2004 7:00 +Lantana,,LIGHT,FL,2/18/2004 18:20 +Muskegon,,TRIANGLE,MI,2/18/2004 19:50 +Blackshear,,LIGHT,GA,2/18/2004 20:30 +Vincennes,ORANGE,LIGHT,IN,2/18/2004 20:30 +Scottsdale,,CIRCLE,AZ,2/18/2004 21:00 +Lexington,,LIGHT,KY,2/18/2004 21:30 +Round Rock,ORANGE,OTHER,TX,2/18/2004 21:35 +Bellflower,,FIREBALL,CA,2/19/2004 1:21 +Freehold,,SPHERE,NJ,2/19/2004 18:25 +Meridian,,TRIANGLE,MS,2/19/2004 21:00 +Sioux City,,OVAL,IA,2/20/2004 0:00 +Silverhill,,LIGHT,AL,2/20/2004 2:00 +Phoenix,BLUE,DISK,AZ,2/20/2004 13:00 +Nebo,,DISK,KY,2/20/2004 15:00 +Lewisville,,,TX,2/20/2004 15:25 +Quartzite,,CIRCLE,AZ,2/20/2004 19:00 +Olathe,,OTHER,KS,2/20/2004 19:30 +Bowling Green,,DIAMOND,KY,2/20/2004 22:55 +Fairfax County,RED,OTHER,VA,2/20/2004 23:05 +Roseburg,,CYLINDER,OR,2/20/2004 23:30 +Houston,BLUE,VARIOUS,TX,2/21/2004 12:30 +Nyack,,TRIANGLE,NY,2/21/2004 15:00 +Portland,,,OR,2/21/2004 22:05 +Colorado Springs,,OTHER,CO,2/21/2004 22:24 +Denton,,LIGHT,TX,2/22/2004 1:20 +New York City,,FIREBALL,NY,2/22/2004 16:00 +Corinth Community,,OTHER,SC,2/22/2004 18:15 +Gaffney,,SPHERE,SC,2/22/2004 18:15 +Dayville,,FIREBALL,CT,2/22/2004 19:00 +Newfield,,FIREBALL,NY,2/22/2004 20:04 +Stony Brook,RED GREEN,CIRCLE,NY,2/22/2004 20:04 +Stone Ridge,RED,OVAL,NY,2/22/2004 21:00 +Hartselle,,FIREBALL,AL,2/22/2004 21:05 +Scottsdale,,FIREBALL,AZ,2/23/2004 1:00 +Bastrop,ORANGE GREEN,FIREBALL,TX,2/23/2004 16:15 +Oneonta,,,NY,2/23/2004 20:56 +Spearfish Canyon,,CIRCLE,SD,2/24/2004 18:20 +Tucson,,CIRCLE,AZ,2/24/2004 18:43 +Tucson,,LIGHT,AZ,2/24/2004 18:54 +Gaffney,,OTHER,SC,2/24/2004 21:00 +Lodge Grass,,LIGHT,MT,2/24/2004 22:30 +Dayton,,TRIANGLE,OH,2/24/2004 23:00 +Emma,,,MO,2/25/2004 1:30 +Bladensburg,,VARIOUS,MD,2/25/2004 3:45 +Spring,,DIAMOND,TX,2/25/2004 13:17 +Aurora,,DISK,CO,2/25/2004 16:10 +Bellevue,GREEN,DISK,OH,2/25/2004 19:20 +Pinal County,,OTHER,AZ,2/25/2004 22:30 +Arlington,RED ORANGE YELLOW GREEN,OTHER,WA,2/25/2004 23:50 +Silverdale,,CIRCLE,WA,2/26/2004 0:00 +Aledo,,DISK,TX,2/26/2004 17:00 +East Springfield,,,PA,2/26/2004 19:30 +Sioux City,,DISK,IA,2/27/2004 3:11 +Keaau,,LIGHT,HI,2/27/2004 5:30 +Truxton,,LIGHT,NY,2/27/2004 6:00 +Alpha,,DISK,NJ,2/27/2004 20:45 +Pontiac,,,IL,2/27/2004 22:30 +Pontiac,,OTHER,IL,2/27/2004 22:30 +Allentown,RED GREEN,CIRCLE,PA,2/27/2004 22:40 +Schenectady,,,NY,2/28/2004 2:00 +York,,LIGHT,PA,2/28/2004 3:45 +Danialson,,DIAMOND,CT,2/28/2004 8:30 +New Orleans,,LIGHT,LA,2/28/2004 18:40 +Brunswick Hills,,LIGHT,OH,2/28/2004 20:00 +Studio City,,TRIANGLE,CA,2/28/2004 20:30 +Chambersburg,RED,,PA,2/28/2004 22:39 +Miami Beach,ORANGE,CIRCLE,FL,2/29/2004 11:00 +Bristol,,DISK,TN,2/29/2004 17:30 +Kingsport,,FORMATION,TN,2/29/2004 17:30 +Grapevine,,VARIOUS,TX,2/29/2004 17:45 +Roswell,,VARIOUS,NM,2/29/2004 19:30 +Brooklyn,,OVAL,MD,2/29/2004 21:00 +Livermore,,LIGHT,CA,2/29/2004 21:30 +Seattle,,,WA,2/29/2004 23:20 +Anaheim,,VARIOUS,CA,3/1/2004 10:50 +Lowell,,OTHER,MA,3/1/2004 11:30 +Tucson,,SPHERE,AZ,3/1/2004 14:00 +King of Prussia,,OTHER,PA,3/1/2004 15:00 +Avalon,,OVAL,CA,3/1/2004 19:00 +North Port,RED,VARIOUS,FL,3/1/2004 21:00 +Plymouth,,,VT,3/1/2004 21:00 +Garrettsville,,LIGHT,OH,3/1/2004 21:30 +Olive Hill,,VARIOUS,TN,3/2/2004 1:00 +San Jose,,DISK,CA,3/2/2004 1:00 +Reading,,LIGHT,PA,3/2/2004 4:35 +Clermont,,,FL,3/2/2004 8:20 +Augusta,,FIREBALL,GA,3/2/2004 9:00 +Pasadena,,EGG,CA,3/2/2004 12:35 +Merriam,,FORMATION,IN,3/2/2004 13:16 +Portland,,,OR,3/2/2004 14:00 +Belmar,,OTHER,NJ,3/2/2004 17:45 +Amery,,TRIANGLE,WI,3/2/2004 21:00 +Bethpage,RED,,TN,3/2/2004 21:00 +Englewood,,OTHER,FL,3/2/2004 21:30 +La Mirada,,FLASH,CA,3/2/2004 23:00 +Wilmington,,CHEVRON,NC,3/2/2004 23:00 +Monrovia,,,VA,3/3/2004 0:00 +Charlestown,,,IN,3/3/2004 3:30 +Allegany,,CIRCLE,NY,3/3/2004 13:02 +Healdsburg,,OTHER,CA,3/3/2004 21:47 +Virginia Beach,,FORMATION,VA,3/3/2004 22:05 +Monrovia,,,VA,3/3/2004 22:15 +Hayward,,SPHERE,CA,3/4/2004 2:00 +Springer,BLUE,OVAL,NM,3/4/2004 3:00 +Aurora,,OTHER,CO,3/4/2004 6:45 +Denver,,VARIOUS,CO,3/4/2004 16:30 +Queensbury,,SPHERE,NY,3/4/2004 17:20 +Palm Desert,RED GREEN BLUE,,CA,3/4/2004 19:00 +Las Animas,,OVAL,CO,3/4/2004 20:20 +San Francisco,,FIREBALL,CA,3/4/2004 20:42 +Goodlettsville,,LIGHT,TN,3/4/2004 21:30 +El Paso,,VARIOUS,TX,3/4/2004 22:30 +White Plains,,VARIOUS,NY,3/5/2004 0:56 +Springer,BLUE,DISK,CO,3/5/2004 2:00 +Valencia,GREEN,LIGHT,CA,3/5/2004 4:30 +Stanfield,,TEARDROP,OR,3/5/2004 9:00 +Houston,,DIAMOND,TX,3/5/2004 20:00 +Ceres,,OTHER,CA,3/5/2004 20:45 +Punta Gorda,,CROSS,FL,3/5/2004 22:00 +Tracy,,TRIANGLE,CA,3/5/2004 22:00 +South Brunswick,,VARIOUS,NJ,3/5/2004 23:00 +Elizabethton,,LIGHT,TN,3/5/2004 23:30 +Foley,,SPHERE,AL,3/6/2004 15:30 +Houston,BLUE,FORMATION,TX,3/6/2004 15:30 +Beaumont,,DISK,TX,3/6/2004 17:45 +New Jersey,,LIGHT,NJ,3/6/2004 20:00 +Springfield,,,CO,3/6/2004 20:30 +Perth Amboy,,FORMATION,NJ,3/6/2004 22:45 +Minneapolis,GREEN,FIREBALL,MN,3/7/2004 1:37 +Los Angeles,RED GREEN BLUE,TRIANGLE,CA,3/7/2004 4:00 +West Hartford,,TRIANGLE,CT,3/7/2004 7:00 +Franklin,,FORMATION,TN,3/7/2004 8:00 +Watsonville,,CIRCLE,CA,3/7/2004 11:00 +La Mesa,,EGG,CA,3/7/2004 13:30 +Palmyra,,SPHERE,MO,3/7/2004 14:00 +Winter Springs,,EGG,FL,3/7/2004 14:00 +Los Angeles,,CIGAR,CA,3/7/2004 16:30 +Carlsbad,,CIGAR,CA,3/7/2004 17:00 +Pacoima,,DISK,CA,3/7/2004 20:15 +Lake Wales,,EGG,FL,3/7/2004 21:30 +Fountain Lake,,LIGHT,AR,3/7/2004 22:00 +Lawrence,,LIGHT,MA,3/7/2004 23:45 +Claremont,,OTHER,CA,3/8/2004 0:00 +San Clemente,,LIGHT,CA,3/8/2004 0:54 +Carnation,,CYLINDER,WA,3/8/2004 4:00 +Los Angeles,,OTHER,CA,3/8/2004 8:00 +Seattle,,CYLINDER,WA,3/8/2004 13:00 +Charlotte,,TRIANGLE,NC,3/8/2004 16:00 +Auburn,,OTHER,WA,3/8/2004 18:15 +Stevenson,RED GREEN,CIRCLE,WA,3/8/2004 21:00 +Alexandria,,RECTANGLE,VA,3/8/2004 23:00 +Hollywood,,VARIOUS,CA,3/9/2004 3:12 +Carlsbad,,DISK,CA,3/9/2004 3:20 +Mississippi,,EGG,WV,3/9/2004 13:01 +Eastpoint,,DISK,MI,3/9/2004 16:00 +Denver,,OVAL,CO,3/9/2004 16:15 +Tucson,BLUE,CIRCLE,AZ,3/9/2004 16:18 +Seattle,,OTHER,WA,3/9/2004 17:45 +Dover,,TRIANGLE,NH,3/9/2004 18:45 +Shelby,YELLOW,LIGHT,OH,3/9/2004 19:00 +Warthen,,TRIANGLE,GA,3/9/2004 19:40 +Alexandria,,CIRCLE,VA,3/9/2004 19:57 +Otego,,SPHERE,NY,3/9/2004 20:00 +Tom,,OVAL,OK,3/9/2004 20:00 +Warthen,,VARIOUS,GA,3/9/2004 20:45 +Chanute,GREEN,TRIANGLE,KS,3/9/2004 21:30 +Fostoria,,TRIANGLE,OH,3/9/2004 22:30 +Omaha,,TRIANGLE,NE,3/9/2004 23:10 +Broken Arrow,,SPHERE,OK,3/10/2004 0:30 +Rochester,RED,CHEVRON,MN,3/10/2004 1:00 +Baltimore,,,MD,3/10/2004 9:00 +Marietta,BLUE,CIGAR,GA,3/10/2004 14:20 +Los Banos,,DISK,CA,3/10/2004 18:00 +Neah Bay,RED GREEN,DISK,WA,3/10/2004 19:00 +New Bern,,LIGHT,NC,3/10/2004 20:00 +Spring Lake,,LIGHT,NC,3/10/2004 20:00 +Muskegon,,TEARDROP,MI,3/10/2004 21:00 +Gallup,YELLOW GREEN,LIGHT,NM,3/10/2004 21:50 +Spokane Valley,,LIGHT,WA,3/11/2004 5:00 +Attleboro,,LIGHT,MA,3/11/2004 18:30 +Lake Grove,BLUE,TRIANGLE,NY,3/11/2004 19:00 +Merrimack,,CIRCLE,NH,3/11/2004 19:45 +Scottsville,,LIGHT,KY,3/11/2004 20:55 +Ontario,,TRIANGLE,OH,3/11/2004 21:00 +Ontario,,TRIANGLE,OH,3/11/2004 21:00 +Fairbanks,YELLOW,LIGHT,AK,3/11/2004 21:30 +Pittsburgh,RED BLUE,TRIANGLE,PA,3/12/2004 0:00 +Williamsburg,,VARIOUS,VA,3/12/2004 0:00 +Winter Springs,,SPHERE,FL,3/12/2004 0:45 +Douglasville,,LIGHT,GA,3/12/2004 0:46 +Daytona Beach,,EGG,FL,3/12/2004 2:14 +Bryson Hesperia,,,CA,3/12/2004 10:00 +Rockwell City,,LIGHT,IA,3/12/2004 18:00 +Goodyear,,LIGHT,AZ,3/12/2004 19:00 +Columbia,YELLOW,SPHERE,MO,3/12/2004 19:05 +San Diego,RED BLUE,CIGAR,CA,3/12/2004 21:20 +Redmond,ORANGE,DISK,OR,3/12/2004 21:30 +Los Angeles,RED GREEN BLUE,TRIANGLE,CA,3/12/2004 22:00 +Norwalk,,,CA,3/13/2004 2:30 +Keaau,,CIRCLE,HI,3/13/2004 5:18 +Concord,,CIRCLE,CA,3/13/2004 9:00 +San Jose,GREEN,,CA,3/13/2004 9:50 +Kennesaw,,DISK,GA,3/13/2004 11:00 +Parshall,,SPHERE,CO,3/13/2004 14:00 +Orlando,,TRIANGLE,FL,3/13/2004 15:00 +Boone,BLUE,FORMATION,NC,3/13/2004 15:15 +Martinsburg,,OTHER,WV,3/13/2004 18:30 +Woodbine,,LIGHT,IA,3/13/2004 20:00 +Albuquerque,,CHEVRON,NM,3/13/2004 20:08 +McCleary,,CIRCLE,WA,3/13/2004 20:15 +Tumwater,,,WA,3/13/2004 20:30 +Falcon,,DIAMOND,CO,3/13/2004 22:00 +Terre Haute,,,IN,3/14/2004 1:00 +Death Valley,,OVAL,CA,3/14/2004 12:00 +Murray,,OTHER,KY,3/14/2004 16:48 +Wantagh,,TEARDROP,NY,3/14/2004 17:00 +Greensboro,,CIGAR,NC,3/14/2004 17:30 +Las Vegas,,LIGHT,NV,3/14/2004 19:00 +Vista,,TRIANGLE,CA,3/14/2004 19:00 +Little Rock,,,AR,3/14/2004 20:30 +San Ramon,,CIRCLE,CA,3/14/2004 21:15 +Valencia,,DISK,CA,3/14/2004 22:00 +Bound Brook area,,LIGHT,NJ,3/14/2004 22:15 +Cold Spring,,,NY,3/15/2004 0:00 +Mansfield,,LIGHT,TX,3/15/2004 2:45 +Breckenridge,,,MO,3/15/2004 3:00 +Burlingame,,OVAL,CA,3/15/2004 13:30 +Faben,,DISK,TX,3/15/2004 15:00 +Rapid City,,TRIANGLE,SD,3/15/2004 18:00 +Oklahoma City,,CIRCLE,OK,3/15/2004 19:00 +Willington,,CIRCLE,CT,3/15/2004 19:00 +Springfield,,FIREBALL,MA,3/15/2004 19:27 +New Castle,,CIRCLE,DE,3/15/2004 19:30 +West Warwick,,EGG,RI,3/15/2004 19:30 +Harrisville,,LIGHT,RI,3/15/2004 19:44 +Lancaster,,LIGHT,PA,3/15/2004 19:45 +Jackson,,OTHER,NJ,3/15/2004 20:30 +Parsippany,,TRIANGLE,NJ,3/15/2004 20:45 +Napa,,TRIANGLE,CA,3/15/2004 22:00 +Norwich,,OTHER,CT,3/16/2004 20:00 +River Ridge,,SPHERE,LA,3/16/2004 21:15 +Phoenix,,FIREBALL,AZ,3/16/2004 21:30 +Kalispell,,FIREBALL,MT,3/16/2004 22:00 +San Luis Obispo,,FLASH,CA,3/16/2004 22:10 +Mount Pleasant,,FORMATION,SC,3/17/2004 0:00 +Ellensburg,,DIAMOND,WA,3/17/2004 8:45 +Santa Monica,,SPHERE,CA,3/17/2004 12:15 +Bend,BLUE,CIRCLE,OR,3/17/2004 14:00 +Milton,,OTHER,DE,3/17/2004 16:30 +Aurora,,OTHER,CO,3/17/2004 18:00 +Bullhead,,OTHER,AZ,3/17/2004 18:30 +Phoenix,,OTHER,AZ,3/17/2004 19:00 +Yakima,,LIGHT,WA,3/17/2004 20:10 +Yakima,,TRIANGLE,WA,3/17/2004 20:28 +Yakima,,FORMATION,WA,3/17/2004 20:30 +Oakland,,TRIANGLE,CA,3/17/2004 21:30 +San Diego,,CIRCLE,CA,3/17/2004 22:00 +Fort Lauderdale,,SPHERE,FL,3/17/2004 22:22 +Ellensburg,,OTHER,WA,3/17/2004 22:50 +Columbus,RED,,OH,3/17/2004 23:50 +Brooksville,,FORMATION,FL,3/18/2004 1:00 +Portland,,DISK,OR,3/18/2004 1:00 +Vail,,OVAL,CO,3/18/2004 12:15 +Benton,,LIGHT,KY,3/18/2004 17:00 +Red Bluff,,TRIANGLE,CA,3/18/2004 18:32 +Pt. Orchard,,RECTANGLE,WA,3/18/2004 18:40 +Noblesville,,LIGHT,IN,3/18/2004 20:00 +Houson,,CIRCLE,TX,3/18/2004 21:00 +Danville,RED,OTHER,KY,3/18/2004 21:45 +Sarasota,,SPHERE,FL,3/18/2004 22:14 +Walkerton,,CIGAR,VA,3/19/2004 0:30 +Laona,,LIGHT,WI,3/19/2004 1:00 +Austin,,LIGHT,TX,3/19/2004 2:00 +Atlanta,,CIRCLE,GA,3/19/2004 12:10 +Atlanta,,CIRCLE,GA,3/19/2004 12:10 +Great Smokies National Park,,LIGHT,NC,3/19/2004 15:00 +Shepherdsville,,TRIANGLE,KY,3/19/2004 19:00 +Lawrence,,LIGHT,KS,3/19/2004 20:03 +Methuen,,VARIOUS,MA,3/19/2004 21:40 +Phoenix,,EGG,AZ,3/19/2004 23:10 +Cheyenne,,OTHER,WY,3/19/2004 23:15 +Sheffield Lake,,DISK,OH,3/19/2004 23:15 +Bowling Green,GREEN,OVAL,KY,3/19/2004 23:30 +Ainsworth,BLUE,LIGHT,NE,3/20/2004 0:15 +Woodlawn,,,VA,3/20/2004 6:00 +Midwest U. S.,,CIGAR,MD,3/20/2004 13:00 +Mesa,,VARIOUS,AZ,3/20/2004 18:45 +Kalispell,RED,LIGHT,MT,3/20/2004 19:50 +Live Oak,,TRIANGLE,CA,3/20/2004 20:00 +Fort Collins,,CHEVRON,CO,3/20/2004 20:45 +Vallejo,,CHEVRON,CA,3/20/2004 22:00 +Columbus,,LIGHT,OH,3/21/2004 19:00 +Hollywood,,CIRCLE,CA,3/21/2004 19:00 +Champlin,,FIREBALL,MN,3/21/2004 19:21 +Kingfisher,,TRIANGLE,OK,3/21/2004 19:26 +Kingfisher,,TRIANGLE,OK,3/21/2004 19:26 +Wapato,ORANGE,FIREBALL,WA,3/21/2004 19:30 +Tinton Falls,,SPHERE,NJ,3/21/2004 20:25 +Carmichaels,,LIGHT,PA,3/21/2004 20:30 +Carmichaels,,LIGHT,PA,3/21/2004 20:30 +Lewistown,BLUE,FIREBALL,MT,3/21/2004 20:30 +Woodward,,OTHER,OK,3/21/2004 21:00 +Brookston,ORANGE,FLASH,IN,3/21/2004 21:20 +Santa Cruz,,TRIANGLE,CA,3/22/2004 19:00 +Hopewell,,FORMATION,NJ,3/22/2004 20:00 +Salida,ORANGE,SPHERE,CO,3/22/2004 20:30 +Greenville,RED,EGG,TN,3/22/2004 21:30 +Fairfield,,LIGHT,PA,3/22/2004 22:53 +Fiat,,LIGHT,IN,3/23/2004 3:00 +Louisville,,CONE,KY,3/23/2004 4:10 +Russia,,FIREBALL,OH,3/23/2004 20:00 +Vanceboro,,SPHERE,NC,3/23/2004 20:30 +Avondale,,CHEVRON,AZ,3/23/2004 20:45 +Las Cruces,,,NM,3/23/2004 21:00 +Maricopa,,LIGHT,AZ,3/23/2004 21:00 +Lynchburg,,DIAMOND,VA,3/23/2004 21:30 +Lynchburg,,DIAMOND,VA,3/23/2004 21:30 +Oakdale,RED YELLOW GREEN BLUE,TRIANGLE,MN,3/23/2004 21:35 +Porterville,,CIRCLE,CA,3/23/2004 22:47 +Moorpark,,LIGHT,CA,3/24/2004 2:00 +Kingsport,,CIRCLE,TN,3/24/2004 4:30 +New Port Richey,ORANGE,FIREBALL,FL,3/24/2004 18:01 +Russia,,FIREBALL,OH,3/24/2004 19:00 +Lake Havasu City,RED,LIGHT,AZ,3/24/2004 20:30 +Middleton,,OTHER,TN,3/24/2004 21:30 +Advance,,,NC,3/24/2004 23:23 +Freeman,,LIGHT,MO,3/25/2004 1:00 +Coaldale,ORANGE,SPHERE,CO,3/25/2004 4:45 +Avondale,,LIGHT,AZ,3/25/2004 15:15 +Anthem,,CIGAR,AZ,3/25/2004 17:00 +Omaha,,FORMATION,NE,3/25/2004 19:00 +Chimacum,,FIREBALL,WA,3/25/2004 19:30 +Wilsonville,ORANGE YELLOW GREEN,RECTANGLE,OR,3/25/2004 19:40 +Harlem,,CIRCLE,GA,3/25/2004 20:00 +Fischer,,EGG,TX,3/25/2004 21:00 +Fischer,,EGG,TX,3/25/2004 21:00 +Pueblo West,RED,LIGHT,CO,3/25/2004 21:30 +Palm Springs,,LIGHT,CA,3/25/2004 23:30 +Carnation,,TRIANGLE,WA,3/26/2004 0:00 +Hickman,,,NE,3/26/2004 3:30 +East Northport,RED BLUE,TRIANGLE,NY,3/26/2004 10:00 +New Brunswick,,OTHER,NJ,3/26/2004 18:15 +Bradenton,,DISK,FL,3/26/2004 19:50 +Bradenton,,OTHER,FL,3/26/2004 19:50 +Bennington,,SPHERE,KS,3/26/2004 22:20 +San Jose,,LIGHT,CA,3/27/2004 2:30 +East Stroudburg,,CIGAR,PA,3/27/2004 4:00 +East Stroudburg,RED BLUE,CIGAR,PA,3/27/2004 4:00 +Rushville,,OTHER,IN,3/27/2004 9:35 +Watsonville,,SPHERE,CA,3/27/2004 17:55 +Plains,,DISK,MT,3/27/2004 18:23 +Canandaigua,,DISK,NY,3/27/2004 18:30 +Manor,YELLOW,LIGHT,GA,3/27/2004 20:35 +Davidson County,RED,,NC,3/27/2004 21:00 +Wilmington,ORANGE,CIRCLE,CA,3/27/2004 22:30 +East Northport,,DISK,NY,3/28/2004 4:00 +Laurel,,VARIOUS,MS,3/28/2004 14:30 +Portsmouth,,OVAL,VA,3/28/2004 16:45 +San Mateo,,DISK,CA,3/28/2004 17:45 +North Vernon,,CIRCLE,IN,3/28/2004 19:00 +Hayward,,TRIANGLE,CA,3/28/2004 19:25 +Fall City,,LIGHT,WA,3/28/2004 19:45 +Renton,,LIGHT,WA,3/28/2004 19:45 +Abington,BLUE,DIAMOND,PA,3/28/2004 20:00 +Bradenton,,CIRCLE,FL,3/28/2004 20:00 +Martinez,,FIREBALL,CA,3/28/2004 20:00 +Chesapeake,,LIGHT,OH,3/28/2004 21:30 +Cusick,,,WA,3/28/2004 21:30 +Naples,,LIGHT,FL,3/28/2004 22:50 +Lancaster,,LIGHT,PA,3/28/2004 23:10 +Orlando,,LIGHT,FL,3/29/2004 0:00 +Orlando,,CHEVRON,FL,3/29/2004 5:15 +Hayward,,EGG,CA,3/29/2004 17:00 +Baltimore,,,MD,3/29/2004 20:00 +Jordan Valley,,CIRCLE,OR,3/29/2004 20:00 +Orlando,,,FL,3/29/2004 21:14 +Burbank,,,CA,3/30/2004 0:32 +Canton,,OVAL,CT,3/30/2004 7:45 +Los Alamitos,,OTHER,CA,3/30/2004 12:00 +Buffalo,,CIGAR,NY,3/30/2004 12:40 +Aberdeen,,TRIANGLE,NC,3/30/2004 15:30 +St. Louis,,FIREBALL,MO,3/30/2004 18:30 +Arlee,,,MT,3/30/2004 20:48 +Kissimmee,,FORMATION,FL,3/30/2004 22:30 +California,,DISK,AZ,3/30/2004 23:00 +Harker Heights,,LIGHT,TX,3/30/2004 23:00 +Idaho Springs,,CIRCLE,CO,3/31/2004 3:00 +San Rafael,,,CA,3/31/2004 14:31 +Sand Springs,,CIRCLE,OK,3/31/2004 19:00 +Norman,,CHEVRON,OK,3/31/2004 19:45 +Naples,,SPHERE,FL,3/31/2004 21:00 +Harlem,,,GA,3/31/2004 21:30 +West Central,,,MN,3/31/2004 21:30 +Black Zion,,DISK,MS,4/1/2004 1:00 +El Paso,,CIGAR,TX,4/1/2004 12:00 +League City,,DISK,TX,4/1/2004 12:30 +Citrus Heights,,OTHER,CA,4/1/2004 14:30 +Azusa,,SPHERE,CA,4/1/2004 17:00 +Duncanville,,EGG,TX,4/1/2004 18:00 +Largo,,LIGHT,FL,4/1/2004 18:30 +Lincolnton,,CIGAR,NC,4/1/2004 18:40 +Wapato,,LIGHT,WA,4/1/2004 19:30 +St. Paul,,FORMATION,MN,4/1/2004 20:30 +Pascagoula,,CHEVRON,MS,4/1/2004 21:00 +Panama City Beach,,LIGHT,FL,4/1/2004 22:00 +Yosemite N.P.,,,CA,4/1/2004 22:00 +Kirkland,,LIGHT,WA,4/2/2004 0:00 +South Haven,BLUE,SPHERE,MI,4/2/2004 0:06 +Los Angeles,,DISK,CA,4/2/2004 11:30 +Lamar,,DISK,CO,4/2/2004 20:00 +,,CIRCLE,CA,4/2/2004 21:00 +Oak Ridge,,FIREBALL,TN,4/2/2004 21:01 +Hazel Green,,,WI,4/2/2004 22:00 +Reno,,LIGHT,NV,4/2/2004 22:00 +Bothell,,LIGHT,WA,4/2/2004 23:35 +Oklahoma,,VARIOUS,OK,4/3/2004 4:00 +Moorsville,,DISK,IN,4/3/2004 7:20 +Alcalde,,DISK,NM,4/3/2004 11:45 +Pinellas Park,,VARIOUS,FL,4/3/2004 18:45 +Sonora,,CIRCLE,CA,4/3/2004 19:15 +Sonora,,LIGHT,CA,4/3/2004 19:15 +Sonora,,LIGHT,CA,4/3/2004 19:15 +South Harrisburg,GREEN,TEARDROP,VA,4/3/2004 22:00 +Thononasassa,,TRIANGLE,FL,4/3/2004 23:00 +Antioch,,OTHER,CA,4/4/2004 1:00 +Champaign,,TRIANGLE,IL,4/4/2004 1:00 +Alexandria,,LIGHT,VA,4/4/2004 3:38 +Corpus Christi,BLUE,TRIANGLE,TX,4/4/2004 12:30 +Lakeland,,OVAL,FL,4/4/2004 13:00 +Las Vegas,,OTHER,NV,4/4/2004 15:45 +Greensboro,,LIGHT,NC,4/4/2004 21:00 +Wenatchee,,LIGHT,WA,4/4/2004 21:25 +South Bend,RED,SPHERE,IN,4/4/2004 22:00 +New Philidelphia,RED GREEN,LIGHT,OH,4/4/2004 23:00 +Port Ludlow,,FIREBALL,WA,4/4/2004 23:00 +Mocksville,,LIGHT,NC,4/4/2004 23:20 +troy,,,MI,4/5/2004 0:00 +Fife,BLUE,SPHERE,WA,4/5/2004 0:28 +Silverdale,GREEN BLUE,TEARDROP,WA,4/5/2004 0:47 +Flower Branch,GREEN,SPHERE,GA,4/5/2004 5:10 +troy,,OTHER,MI,4/5/2004 6:30 +Troy,,OTHER,MI,4/5/2004 7:00 +Newport,,OTHER,TN,4/5/2004 11:00 +South Plainfield?,,LIGHT,NJ,4/5/2004 11:45 +I-5 North in Federal Way,BLUE,FIREBALL,WA,4/5/2004 12:30 +Enfield,,TRIANGLE,CT,4/5/2004 20:00 +Warrenton,,VARIOUS,NC,4/5/2004 20:00 +Williamsport,,CIRCLE,PA,4/5/2004 20:00 +Miami,,,FL,4/5/2004 20:35 +Yuma,,TRIANGLE,AZ,4/5/2004 21:10 +Leeds,,LIGHT,AL,4/5/2004 23:30 +Middletown,,,CA,4/5/2004 23:30 +New Orleans,,DISK,LA,4/6/2004 10:00 +Fair Oaks,BLUE,OTHER,CA,4/6/2004 12:00 +Suprise,BLUE,OTHER,AZ,4/6/2004 12:30 +New York City,,OTHER,NY,4/6/2004 15:00 +Philadelphia,RED,SPHERE,PA,4/6/2004 19:00 +Tempe,,LIGHT,AZ,4/6/2004 22:15 +Bullhead City,,OTHER,AZ,4/7/2004 9:00 +Columbia Falls,,LIGHT,MT,4/7/2004 14:00 +Vashon Island,,FIREBALL,WA,4/7/2004 19:45 +Miami,,LIGHT,FL,4/7/2004 20:00 +Bullhead City,,OTHER,AZ,4/7/2004 20:05 +Austin,,LIGHT,TX,4/7/2004 20:15 +Port Mansfield,,CONE,TX,4/7/2004 21:00 +Erie,,DIAMOND,PA,4/7/2004 21:30 +Savannah,,TRIANGLE,GA,4/7/2004 21:30 +Fort Smith,,VARIOUS,AR,4/7/2004 22:00 +College Station,,FORMATION,TX,4/7/2004 23:00 +Peru,,DISK,IN,4/8/2004 0:30 +Maine,,,ME,4/8/2004 6:00 +Charlotte,ORANGE,DISK,NC,4/8/2004 6:20 +San Francisco Bay Area,,RECTANGLE,CA,4/8/2004 10:30 +Chicago,RED,TRIANGLE,IL,4/8/2004 11:30 +Knoxville,,DISK,TN,4/8/2004 17:30 +Logansport,,DISK,IN,4/8/2004 18:00 +Fullerton,,OTHER,CA,4/8/2004 20:43 +Manly,,TRIANGLE,IA,4/8/2004 21:00 +Rochester,ORANGE,CIRCLE,IN,4/8/2004 21:00 +Leiters Ford,YELLOW,DISK,IN,4/8/2004 22:00 +Rochester,,DISK,IN,4/8/2004 22:00 +Winamac,,LIGHT,IN,4/8/2004 22:00 +Rochester,ORANGE YELLOW,,IN,4/8/2004 22:01 +Albany,,EGG,OR,4/8/2004 22:24 +Houston,,CYLINDER,TX,4/8/2004 23:17 +Knoxville,,OTHER,TN,4/8/2004 23:40 +Knoxville,ORANGE,OTHER,TN,4/8/2004 23:40 +Lawrenceville,BLUE,CIGAR,GA,4/9/2004 2:04 +Union,GREEN,FIREBALL,WA,4/9/2004 2:30 +Bakersfield,BLUE,OTHER,CA,4/9/2004 6:20 +Smyrna,,OTHER,GA,4/9/2004 7:15 +Ellicott City,,OTHER,MD,4/9/2004 10:02 +Lawrenceville,,CYLINDER,GA,4/9/2004 14:03 +Wenatchee,,OTHER,WA,4/9/2004 20:30 +Joseph City-Winslow,,LIGHT,AZ,4/9/2004 21:00 +Lemoore,,CIRCLE,CA,4/9/2004 21:00 +Monticello,,CIRCLE,IN,4/9/2004 21:00 +Ocala,,FIREBALL,FL,4/9/2004 21:00 +Wabash,ORANGE,OTHER,IN,4/9/2004 21:00 +Fayetteville,,FIREBALL,NC,4/9/2004 21:10 +New Orleans,,LIGHT,LA,4/9/2004 21:10 +Ford City,,DISK,PA,4/9/2004 21:15 +Ford City,,TRIANGLE,PA,4/9/2004 21:15 +Phoenix,,TRIANGLE,AZ,4/9/2004 21:50 +Stone Harbor,,,NJ,4/9/2004 22:00 +Walton,,OVAL,IN,4/9/2004 22:00 +Altoona,RED ORANGE,CHEVRON,PA,4/9/2004 22:10 +Owings Mills,,CHEVRON,MD,4/9/2004 22:14 +St. Augustine,,DISK,FL,4/9/2004 22:15 +Columbus,BLUE,OVAL,GA,4/9/2004 22:30 +Battleground,,SPHERE,WA,4/10/2004 12:30 +Edgewater,RED,,FL,4/10/2004 12:32 +Blythe,,OVAL,CA,4/10/2004 15:00 +Kansas,RED ORANGE,DISK,OK,4/10/2004 21:00 +Phoenix,,OVAL,AZ,4/10/2004 21:00 +Richland,,LIGHT,WA,4/10/2004 22:25 +Riverside,GREEN,SPHERE,CA,4/10/2004 23:30 +Baker City,GREEN,CHEVRON,OR,4/10/2004 23:50 +Carnation,,DIAMOND,WA,4/11/2004 0:00 +Scottsdale,,FORMATION,AZ,4/11/2004 0:12 +Slidell,,VARIOUS,LA,4/11/2004 14:30 +Peoria,RED,,AZ,4/11/2004 19:30 +South Lake Tahoe,,LIGHT,CA,4/11/2004 21:50 +Elsmere,,CHEVRON,DE,4/12/2004 20:00 +Plainview,,RECTANGLE,NY,4/12/2004 20:00 +Villa Park,,LIGHT,IL,4/12/2004 21:00 +Shiprock,RED,LIGHT,NM,4/12/2004 22:10 +Charlottesville,,DISK,VA,4/12/2004 23:45 +Crockett,,,TX,4/13/2004 0:00 +San Antonio,,,TX,4/13/2004 4:09 +Cedar Rapids,,LIGHT,IA,4/13/2004 5:00 +Anacortes,ORANGE,FIREBALL,WA,4/13/2004 19:00 +Merced,,TRIANGLE,CA,4/14/2004 0:30 +Barnegat,,,NE,4/14/2004 3:00 +Dana Poinr,,TRIANGLE,CA,4/14/2004 20:30 +West Plains,,TRIANGLE,MO,4/14/2004 20:30 +Ft Branch,ORANGE,LIGHT,IN,4/14/2004 21:00 +Murray,,TRIANGLE,UT,4/14/2004 22:00 +Sherman,,RECTANGLE,TX,4/14/2004 22:00 +Sherman,ORANGE,RECTANGLE,TX,4/14/2004 22:00 +Columbus,,LIGHT,OH,4/15/2004 0:00 +Hayden,,,ID,4/15/2004 1:00 +Tuscaloosa,,OTHER,AL,4/15/2004 1:30 +Hayden,,LIGHT,ID,4/15/2004 4:00 +Orlando,,OTHER,FL,4/15/2004 6:00 +Medway,,CYLINDER,MA,4/15/2004 9:00 +Russellville,,CYLINDER,AR,4/15/2004 11:00 +San Angelo,,CYLINDER,TX,4/15/2004 11:00 +Crawfordville,,DISK,IN,4/15/2004 14:00 +Santa Clara,,TEARDROP,CA,4/15/2004 14:00 +Vancouver,GREEN BLUE,SPHERE,WA,4/15/2004 14:00 +Murrieta,,,CA,4/15/2004 17:00 +Pittsboro,ORANGE,LIGHT,IN,4/15/2004 17:00 +Kenner,,SPHERE,LA,4/15/2004 17:15 +Morgan City,,LIGHT,LA,4/15/2004 20:00 +Boca Raton,,LIGHT,FL,4/15/2004 20:30 +Costa Mesa,,TRIANGLE,CA,4/15/2004 20:45 +Fort Lauderdale,,FIREBALL,FL,4/15/2004 20:47 +Fort Lauderdale,,FIREBALL,FL,4/15/2004 20:47 +Englewood,,OTHER,FL,4/15/2004 20:50 +Princeton,ORANGE,LIGHT,IN,4/15/2004 20:57 +Port St. Lucie,,CYLINDER,FL,4/15/2004 21:00 +"I-40 West, mm 228",ORANGE,LIGHT,AR,4/15/2004 21:55 +DeRidder,,LIGHT,LA,4/15/2004 22:00 +Plymouth Borough,,CROSS,PA,4/15/2004 22:00 +Readington,,LIGHT,NJ,4/15/2004 22:00 +Russelville,ORANGE,LIGHT,AR,4/15/2004 22:11 +Lacey,RED GREEN,CIRCLE,WA,4/15/2004 22:20 +Jacksonville,,CIGAR,FL,4/15/2004 22:30 +Port Orange,RED BLUE,DIAMOND,FL,4/15/2004 22:45 +San Clemente,,DISK,CA,4/15/2004 23:00 +Dingmans Ferry,,VARIOUS,PA,4/16/2004 4:45 +Logansport,,SPHERE,IN,4/16/2004 8:58 +Detroit,,,MI,4/16/2004 10:10 +Clarksville,,VARIOUS,AR,4/16/2004 11:00 +Orange Beach,,SPHERE,AL,4/16/2004 12:00 +Lititz,,DISK,PA,4/16/2004 13:20 +Denver,,,CO,4/16/2004 17:45 +Denver,,CYLINDER,CO,4/16/2004 17:45 +Orlando,,OVAL,FL,4/16/2004 18:00 +Kingston,,CIRCLE,NY,4/16/2004 20:05 +Logansport,ORANGE,LIGHT,IN,4/16/2004 20:45 +Brookston,YELLOW,LIGHT,IN,4/16/2004 20:50 +Battle Ground,ORANGE,LIGHT,IN,4/16/2004 21:00 +Logansport,,FIREBALL,IN,4/16/2004 21:11 +Ashgrove,,TRIANGLE,MO,4/16/2004 22:40 +Belstville,RED,FIREBALL,MD,4/16/2004 23:00 +Slippery Rock,,LIGHT,PA,4/17/2004 0:30 +Edinburgh,,,IN,4/17/2004 12:26 +Louisville,,DISK,KY,4/17/2004 20:00 +San Marcos,,OVAL,TX,4/17/2004 20:30 +Fayetteville,ORANGE,OVAL,NC,4/17/2004 21:00 +Phoenix,,DISK,AZ,4/17/2004 21:30 +Grosse Pointe Farms,GREEN,LIGHT,MI,4/17/2004 22:10 +Alsip,,,IL,4/18/2004 0:00 +Pinson,,OTHER,TN,4/18/2004 0:02 +Phoenix,,CIGAR,AZ,4/18/2004 10:00 +Beavercreek,,SPHERE,OH,4/18/2004 15:00 +Phoenix,,OVAL,AZ,4/18/2004 18:30 +Mt. Washington,,DISK,KY,4/18/2004 19:00 +Frazier Park,,LIGHT,CA,4/18/2004 21:00 +Belfast,,LIGHT,ME,4/18/2004 23:30 +Welcome,,DISK,NC,4/18/2004 23:30 +Tustin,ORANGE,SPHERE,CA,4/19/2004 4:15 +Knoxville,,TRIANGLE,TN,4/19/2004 7:15 +Knoxville,,TRIANGLE,TN,4/19/2004 7:15 +Grand Canyon,,LIGHT,AZ,4/19/2004 15:00 +Ithaca,,FIREBALL,NY,4/19/2004 21:10 +Red Springs,,SPHERE,NC,4/19/2004 21:15 +Phoenix,,EGG,AZ,4/19/2004 23:10 +Litchfield Park,,TRIANGLE,AZ,4/20/2004 8:45 +Bethpage,,TRIANGLE,NY,4/20/2004 20:30 +Manchester,,TRIANGLE,NH,4/20/2004 21:30 +Niceville,,FORMATION,FL,4/20/2004 22:00 +Tumwater,,FIREBALL,WA,4/20/2004 23:10 +Santa Fe,,CIRCLE,NM,4/21/2004 0:40 +Windsor,RED,LIGHT,CA,4/21/2004 3:15 +Tucson,,DISK,AZ,4/21/2004 20:07 +Lawrence,,SPHERE,KS,4/21/2004 21:35 +Emmet,,OTHER,NE,4/21/2004 22:30 +Bellevue,,TRIANGLE,WA,4/21/2004 23:30 +Dallas,,TRIANGLE,TX,4/22/2004 0:00 +Louisville,RED YELLOW GREEN BLUE,,OH,4/22/2004 0:10 +Gulf of Mexico,,LIGHT,LA,4/22/2004 3:50 +Longwood,,CIGAR,FL,4/22/2004 11:15 +Bardstown,,CIGAR,KY,4/22/2004 18:23 +Santa Barbara,,LIGHT,CA,4/23/2004 9:15 +Victorville,,FORMATION,CA,4/23/2004 10:15 +Bailey,,CIRCLE,NC,4/23/2004 17:30 +Coram,,TRIANGLE,NY,4/23/2004 19:30 +Meadow,,CONE,CA,4/23/2004 20:00 +Noblesville,,DISK,IN,4/23/2004 20:30 +Henderson,,LIGHT,NV,4/23/2004 21:00 +Santa Cruz,ORANGE,,CA,4/23/2004 21:20 +Tavares,,LIGHT,FL,4/23/2004 23:00 +Tinley Park,,,IL,4/24/2004 1:30 +Tinley Park,,LIGHT,IL,4/24/2004 1:30 +New Orleans,,TEARDROP,LA,4/24/2004 4:00 +San Gabriel,,CYLINDER,CA,4/24/2004 14:30 +Marietta,,TRIANGLE,GA,4/24/2004 16:30 +Los Angeles,,CIRCLE,CA,4/24/2004 17:30 +Desert Center,,CYLINDER,CA,4/24/2004 19:00 +Davie,,CIGAR,FL,4/24/2004 21:00 +Franklin,,LIGHT,TN,4/24/2004 21:00 +Jonesboro,,,GA,4/25/2004 21:00 +Kansas City,,OTHER,MO,4/25/2004 21:00 +Troy,,DISK,OH,4/25/2004 21:00 +Bend,,FORMATION,OR,4/25/2004 21:35 +Fresno,ORANGE,FIREBALL,CA,4/25/2004 22:35 +Muscatine,,VARIOUS,IA,4/25/2004 23:00 +Likely,,,CT,4/25/2004 23:30 +Mesa,,LIGHT,AZ,4/26/2004 0:30 +Kansas City,,OTHER,MO,4/26/2004 13:35 +Olympia,,LIGHT,WA,4/26/2004 19:30 +Harmony,,LIGHT,PA,4/26/2004 20:00 +Longmont,,CIGAR,CO,4/26/2004 21:00 +Los Angeles,,TRIANGLE,CA,4/26/2004 21:30 +Niles,,OTHER,MI,4/26/2004 21:30 +Woodland Hills,GREEN,LIGHT,CA,4/26/2004 21:30 +St. Petersburg Beach,,LIGHT,FL,4/26/2004 22:00 +St. Petersburg Beach,,LIGHT,FL,4/26/2004 22:00 +Lincoln,,CIRCLE,NE,4/26/2004 23:00 +Hastings,,,NE,4/27/2004 3:00 +Douglasville,,LIGHT,GA,4/27/2004 6:00 +Oakley,,DISK,UT,4/27/2004 15:30 +Scottsdale,BLUE,SPHERE,AZ,4/27/2004 16:30 +Picture Rocks,YELLOW,LIGHT,AZ,4/27/2004 20:10 +Sonora,,,CA,4/27/2004 20:30 +Round Rock,,OVAL,TX,4/28/2004 0:22 +Tempe,,SPHERE,AZ,4/28/2004 4:00 +East Wenatchee,,FORMATION,WA,4/28/2004 5:00 +Maricopa,,DISK,AZ,4/28/2004 12:23 +West Des Moines,,VARIOUS,IA,4/28/2004 14:30 +Central Paint,,LIGHT,OR,4/28/2004 20:00 +Keeseville,,LIGHT,NY,4/28/2004 20:32 +Superior,,DISK,AZ,4/28/2004 21:00 +Bakersfield,,LIGHT,CA,4/28/2004 21:15 +Portland,,OTHER,OR,4/28/2004 21:30 +Socorro,ORANGE,LIGHT,NM,4/28/2004 22:00 +Bristol,,OTHER,NY,4/28/2004 23:00 +Varnville,,TRIANGLE,SC,4/28/2004 23:35 +Pitman,,LIGHT,NJ,4/29/2004 20:30 +Woodbury,,OTHER,CT,4/29/2004 21:00 +North Myrtle Beach,,LIGHT,SC,4/29/2004 23:00 +Wickenburg,ORANGE,DISK,AZ,4/29/2004 23:00 +Wickenburg,ORANGE,DISK,AZ,4/29/2004 23:00 +Seattle,,,WA,4/29/2004 23:10 +Iowa City,,,IA,4/30/2004 3:00 +Seaford,,DISK,DE,4/30/2004 3:15 +Casper,,CYLINDER,WY,4/30/2004 4:30 +Woodbridge,,VARIOUS,NJ,4/30/2004 10:25 +New York City,,SPHERE,NY,4/30/2004 15:00 +Jacksonville,,CHEVRON,FL,4/30/2004 16:00 +Seattle,,CYLINDER,WA,4/30/2004 16:45 +Portland,,CIRCLE,OR,4/30/2004 18:30 +Penngrove,,SPHERE,CA,4/30/2004 19:30 +Gadsden,,CIGAR,AL,4/30/2004 21:00 +Belfair,,OVAL,WA,4/30/2004 22:00 +Kirkland,,CHEVRON,WA,4/30/2004 22:00 +Hernando,,CIRCLE,FL,4/30/2004 23:00 +Plymouth Borough,RED YELLOW GREEN,FORMATION,PA,4/30/2004 23:00 +Houston,,FLASH,TX,4/30/2004 23:15 +Cleveland,,CROSS,GA,5/1/2004 1:30 +Butte,,TRIANGLE,MT,5/1/2004 2:00 +Tonopah,,LIGHT,AZ,5/1/2004 7:19 +Southgate,,,MI,5/1/2004 8:30 +Orlando,,SPHERE,FL,5/1/2004 14:00 +Gardner,RED,SPHERE,NY,5/1/2004 18:30 +Bremerton,,,WA,5/1/2004 19:24 +Elk,,TRIANGLE,WA,5/1/2004 21:00 +New York City,,SPHERE,NY,5/1/2004 21:45 +Las Vegas,,LIGHT,NV,5/1/2004 22:00 +Enfield,,TRIANGLE,CT,5/1/2004 22:30 +Cotati,,LIGHT,CA,5/1/2004 22:45 +Helena,,TRIANGLE,MT,5/1/2004 23:30 +Camp Hill,,,PA,5/2/2004 0:01 +Nashville,RED BLUE,VARIOUS,TN,5/2/2004 4:00 +Sunnyvale,,,CA,5/2/2004 10:30 +Los Angeles,,DISK,CA,5/2/2004 11:30 +Amarillo,,CIRCLE,TX,5/2/2004 13:00 +College Station,,CYLINDER,TX,5/2/2004 19:50 +Peoria,,,AZ,5/2/2004 21:00 +Jackson,,CYLINDER,TN,5/2/2004 22:00 +Hayward,,OVAL,CA,5/3/2004 5:57 +Jackson,,DISK,MS,5/3/2004 12:15 +Salem,,CIRCLE,OR,5/3/2004 15:09 +Socorro,,LIGHT,NM,5/3/2004 21:00 +Helena,,CHEVRON,AL,5/3/2004 21:26 +Grand Haven,,SPHERE,MI,5/3/2004 21:30 +McAllen,,SPHERE,TX,5/3/2004 21:45 +Fort Collins,,OVAL,CO,5/3/2004 22:00 +McFall,ORANGE,FIREBALL,MO,5/4/2004 3:45 +Lebanon,,OTHER,PA,5/4/2004 4:15 +Everett,,OVAL,WA,5/4/2004 12:00 +Granbury,,OTHER,TX,5/4/2004 14:23 +Denver,RED,SPHERE,CO,5/4/2004 20:55 +Zebulon,RED,LIGHT,GA,5/4/2004 21:40 +Indianapolis,,LIGHT,IN,5/5/2004 9:00 +Bellingham,,LIGHT,WA,5/5/2004 17:00 +Laughlin,,OTHER,NV,5/5/2004 19:00 +Safford,,FIREBALL,AZ,5/5/2004 19:00 +Seattle,,,WA,5/5/2004 20:00 +Santa Fe,RED GREEN,OVAL,NM,5/5/2004 20:30 +Denver Metro,RED,CIGAR,CO,5/5/2004 21:00 +Lochbuie,,LIGHT,CO,5/5/2004 21:05 +Portland,ORANGE,SPHERE,OR,5/5/2004 21:30 +Stuart,,LIGHT,FL,5/5/2004 22:00 +Beaver Dam,,LIGHT,WI,5/5/2004 22:30 +Concrete,YELLOW,SPHERE,WA,5/5/2004 22:30 +l.as Vegas,,TEARDROP,NV,5/5/2004 23:30 +Big Lake,ORANGE,DIAMOND,MN,5/6/2004 1:14 +San Leandro,,OVAL,CA,5/6/2004 3:00 +Boise,,OVAL,ID,5/6/2004 3:45 +Emlenton,,OTHER,PA,5/6/2004 9:00 +Alpharetta,,SPHERE,GA,5/6/2004 9:52 +Bakersfield,ORANGE,,CA,5/6/2004 12:59 +Charlotte,,VARIOUS,NC,5/6/2004 17:15 +Denver,,DISK,CO,5/6/2004 19:59 +Clarksville,,SPHERE,TX,5/6/2004 21:00 +Cleveland,YELLOW,,MS,5/6/2004 21:00 +Joplin,,VARIOUS,MO,5/6/2004 21:00 +Surprise,,LIGHT,AZ,5/6/2004 22:00 +Fort Walton Beach,,LIGHT,FL,5/7/2004 1:00 +Cumming,,,GA,5/7/2004 2:05 +North Lauderdale,RED BLUE,OVAL,FL,5/7/2004 10:25 +Pompano Beach,,TRIANGLE,FL,5/7/2004 15:35 +Carterville,,LIGHT,IL,5/7/2004 21:00 +Nevada,,TRIANGLE,NV,5/7/2004 21:00 +Rockford,,SPHERE,IL,5/7/2004 21:00 +Boonville,,SPHERE,IN,5/7/2004 21:15 +New Orleans,,LIGHT,LA,5/7/2004 21:15 +Durand,,OTHER,IL,5/7/2004 21:23 +Houston,,OTHER,TX,5/7/2004 22:00 +Bremerton,ORANGE,OTHER,WA,5/7/2004 22:35 +San Antonio,,LIGHT,TX,5/7/2004 23:45 +Warren,,LIGHT,OH,5/8/2004 0:00 +Los Angeles,,CIRCLE,CA,5/8/2004 1:00 +New York City,,CIRCLE,NY,5/8/2004 1:15 +Ona,,TRIANGLE,WV,5/8/2004 2:00 +Terre Haute,,CIRCLE,IN,5/8/2004 4:17 +Cerritos,,SPHERE,CA,5/8/2004 5:00 +Wekiva,,LIGHT,FL,5/8/2004 9:30 +Cleveland,,LIGHT,OH,5/8/2004 11:45 +Sherwood,,SPHERE,OR,5/8/2004 13:45 +Tracy,,DISK,CA,5/8/2004 14:10 +Minford,,OTHER,OH,5/8/2004 21:00 +Anaheim,,OTHER,CA,5/8/2004 22:00 +Vernal,,TRIANGLE,UT,5/8/2004 22:50 +Littleton,,FORMATION,CO,5/8/2004 23:15 +Westcliffe,,TRIANGLE,CO,5/8/2004 23:15 +Gibsonia,,LIGHT,PA,5/8/2004 23:30 +Knoxville,,TRIANGLE,MD,5/8/2004 23:40 +Graton,,TRIANGLE,CA,5/9/2004 0:05 +Stone Harbor,,TEARDROP,NJ,5/9/2004 1:45 +St. Louis,,CYLINDER,MO,5/9/2004 13:30 +Wayne,,DISK,PA,5/9/2004 19:00 +Mesa,RED GREEN,CIRCLE,AZ,5/9/2004 20:00 +Rome,,TRIANGLE,NY,5/9/2004 22:45 +Hamilton,,DISK,OH,5/10/2004 1:00 +Denver,,TRIANGLE,CO,5/10/2004 3:35 +West Memphis,,SPHERE,AR,5/10/2004 20:30 +Ventura,,TRIANGLE,CA,5/10/2004 21:15 +Brandon,,TRIANGLE,MS,5/10/2004 21:30 +Freehold,,CIRCLE,NJ,5/10/2004 22:40 +Woodbury,,TRIANGLE,MN,5/10/2004 22:45 +McNary,,FORMATION,AZ,5/10/2004 23:00 +Deweese,,OVAL,NE,5/11/2004 2:00 +Pico Rivera,YELLOW,LIGHT,CA,5/11/2004 2:30 +Pico Rivera,RED,CIRCLE,CA,5/11/2004 3:15 +Los Angeles,,OVAL,CA,5/11/2004 16:00 +Haines City,,,FL,5/11/2004 22:30 +Lakeland,,FORMATION,FL,5/11/2004 22:40 +Hopkinsville,RED,CIRCLE,KY,5/11/2004 22:45 +Bowling Green,,FIREBALL,FL,5/11/2004 23:00 +Indianapolis,,,IN,5/11/2004 23:00 +Utica,,TRIANGLE,NY,5/11/2004 23:00 +Winter Haven,,LIGHT,FL,5/11/2004 23:00 +Kissimmee,,LIGHT,FL,5/11/2004 23:15 +Ithaca,,TRIANGLE,NY,5/11/2004 23:30 +Santa Monica,,FORMATION,CA,5/12/2004 0:00 +Sun Prairie,,OTHER,WI,5/12/2004 3:20 +Boulder,,FORMATION,CO,5/12/2004 4:02 +Seattle,,LIGHT,WA,5/12/2004 19:15 +Los Angeles,,,CA,5/12/2004 20:55 +Seguin,,DISK,TX,5/12/2004 23:00 +Jacksonville,,OVAL,FL,5/13/2004 0:20 +San Antonio,,TRIANGLE,TX,5/13/2004 3:00 +Gerrardstown,,TRIANGLE,WV,5/13/2004 9:50 +Dale City,RED,CIRCLE,VA,5/13/2004 12:00 +Bakersfield,,OTHER,CA,5/13/2004 18:55 +Slidell,RED ORANGE,CIRCLE,LA,5/13/2004 20:00 +Roswell,,LIGHT,NM,5/13/2004 21:00 +East Springfield,,,PA,5/13/2004 21:10 +Heiskell,,LIGHT,TN,5/13/2004 22:00 +Lompoc,,TRIANGLE,CO,5/13/2004 22:18 +Tequesta,,DIAMOND,FL,5/13/2004 22:45 +no data,,TRIANGLE,AZ,5/14/2004 2:00 +Scappoose,,TRIANGLE,OR,5/14/2004 2:30 +San Diego,RED,TRIANGLE,CA,5/14/2004 2:55 +Bryceville,,DISK,FL,5/14/2004 3:25 +Spring Wood,RED,TRIANGLE,VA,5/14/2004 3:40 +Valley City,,,OH,5/14/2004 10:39 +Valley City,,,OH,5/14/2004 11:30 +Chasworth,,SPHERE,CA,5/14/2004 16:20 +Topeka,,DISK,KS,5/14/2004 20:00 +Santa Rosa,,CIRCLE,CA,5/14/2004 21:40 +Santa Monica,,SPHERE,CA,5/14/2004 22:00 +Jacksonville,,OTHER,NC,5/14/2004 22:30 +Strongsville,,LIGHT,OH,5/14/2004 22:30 +Grand View,,TRIANGLE,ID,5/14/2004 22:38 +Cary,,TRIANGLE,NC,5/14/2004 22:55 +South El Monte,BLUE,OTHER,CA,5/14/2004 23:00 +Omaha,GREEN,SPHERE,NE,5/14/2004 23:15 +Victor,GREEN,DISK,NY,5/15/2004 0:00 +Towson,,,MD,5/15/2004 0:30 +Valley Center,,TRIANGLE,KS,5/15/2004 0:30 +Hanna City,,OTHER,IL,5/15/2004 3:00 +Lake Charles,,OVAL,LA,5/15/2004 5:45 +Canton,,CIGAR,IL,5/15/2004 6:15 +Ypsilanti,,DISK,MI,5/15/2004 6:45 +Castro Valley,,SPHERE,CA,5/15/2004 14:00 +Portland,,RECTANGLE,OR,5/15/2004 14:30 +Los Angeles,,LIGHT,CA,5/15/2004 15:45 +Jackson,,CIRCLE,NJ,5/15/2004 21:00 +Miami,,DISK,FL,5/15/2004 21:00 +Mesa,,CIRCLE,AZ,5/15/2004 21:37 +Federal Way,,CYLINDER,WA,5/15/2004 21:45 +Racine,,LIGHT,WI,5/15/2004 22:30 +Slidell,,OVAL,LA,5/15/2004 23:00 +Indiana,,LIGHT,PA,5/16/2004 0:35 +Rushville,,TRIANGLE,IL,5/16/2004 2:40 +Lockport,,CIRCLE,NY,5/16/2004 9:30 +Rocklin,,DISK,CA,5/16/2004 10:00 +Naples,,DISK,FL,5/16/2004 11:00 +South Haven,,SPHERE,MI,5/16/2004 11:40 +no data,,FIREBALL,WI,5/16/2004 19:00 +Phoenix,,CIRCLE,AZ,5/16/2004 19:45 +Mesa,,CIRCLE,AZ,5/16/2004 19:50 +Madison,,FIREBALL,WI,5/16/2004 21:30 +Tucson,,SPHERE,AZ,5/16/2004 21:30 +Milwaukee,GREEN,FIREBALL,WI,5/16/2004 22:00 +Wheaton,YELLOW GREEN,FIREBALL,IL,5/16/2004 22:04 +Livonia,,RECTANGLE,MI,5/16/2004 22:10 +Farmington,,FIREBALL,NY,5/16/2004 22:12 +Gallup,,LIGHT,NM,5/16/2004 23:00 +Culloden,,LIGHT,WV,5/17/2004 0:00 +Culloden,,,WV,5/17/2004 7:45 +St. Louis,,LIGHT,MO,5/17/2004 11:00 +Farmer City,,LIGHT,IL,5/17/2004 15:30 +Sonora,,DISK,CA,5/17/2004 16:30 +Tempe,,TEARDROP,AZ,5/17/2004 17:40 +San Jose,,SPHERE,CA,5/17/2004 18:45 +Batesville,,LIGHT,AR,5/17/2004 20:40 +Portland,,CYLINDER,MI,5/17/2004 21:30 +Silver City,,CIRCLE,NM,5/18/2004 0:00 +Cedar Falls,,OVAL,IA,5/18/2004 10:00 +Rocklin,BLUE,DISK,CA,5/18/2004 20:17 +Howell,,DISK,MI,5/18/2004 22:30 +Palatine,,OTHER,IL,5/18/2004 22:35 +Lake Powell,,OVAL,UT,5/18/2004 23:00 +Sturbridge,,TRIANGLE,MA,5/18/2004 23:00 +Westminster,,FIREBALL,CO,5/18/2004 23:00 +San Antonio,,TRIANGLE,TX,5/19/2004 3:00 +Tulsa,,DISK,OK,5/19/2004 5:30 +Fairmont,,CIRCLE,MN,5/19/2004 18:45 +Pleasant View,,OVAL,TN,5/19/2004 20:00 +Gila Bend,,OTHER,AZ,5/19/2004 21:30 +Gila Bend- Yuma?,,OTHER,AZ,5/19/2004 21:30 +Hastings,,TRIANGLE,MI,5/19/2004 21:30 +Denver,,CIRCLE,CO,5/19/2004 22:00 +Vicksburg,GREEN BLUE,DISK,MI,5/19/2004 23:30 +Loganville,,OTHER,GA,5/20/2004 2:00 +Superior,,FORMATION,MT,5/20/2004 3:00 +Fairfield,,RECTANGLE,CA,5/20/2004 19:40 +Honolulu,,,HI,5/20/2004 20:20 +Superior,,LIGHT,WI,5/20/2004 20:30 +Gila Bend,YELLOW,DISK,AZ,5/20/2004 21:30 +Montrose,,CIRCLE,CO,5/20/2004 21:30 +Boston,RED,EGG,MA,5/20/2004 21:40 +Burlington,,DIAMOND,WA,5/20/2004 23:00 +no data,RED,LIGHT,NV,5/20/2004 23:25 +Harrison,,VARIOUS,OH,5/21/2004 0:00 +"Washington, D.C., suburbs",,CYLINDER,VA,5/21/2004 7:28 +Greeley,,FORMATION,CO,5/21/2004 15:00 +Palm Coast,,CROSS,FL,5/21/2004 21:00 +Clinton,,DIAMOND,MO,5/21/2004 23:37 +Clinton,,DIAMOND,MO,5/21/2004 23:37 +Sonora,,,CA,5/22/2004 1:45 +Tampa,,,FL,5/22/2004 8:30 +Parker,,SPHERE,CO,5/22/2004 13:30 +High Falls,,OVAL,NY,5/22/2004 16:00 +Port Orchard,,CIRCLE,WA,5/22/2004 20:00 +Dunedin,,CROSS,FL,5/22/2004 20:20 +Ojai,,LIGHT,CA,5/22/2004 22:45 +Inver Grove Heights,GREEN,FLASH,MN,5/22/2004 23:00 +Sumas,,LIGHT,WA,5/22/2004 23:00 +Ohio,,SPHERE,OH,5/23/2004 8:00 +Santa Monica,,DISK,CA,5/23/2004 13:30 +Seattle,ORANGE,SPHERE,WA,5/23/2004 17:30 +Peoria,,TRIANGLE,IL,5/23/2004 19:14 +San Jose,,LIGHT,CA,5/23/2004 19:30 +Omaha,,OVAL,NE,5/23/2004 20:31 +St. George Island,,CIRCLE,FL,5/23/2004 22:30 +Hanceville,GREEN,OVAL,AL,5/23/2004 23:00 +Toms River,,CIRCLE,NJ,5/23/2004 23:10 +Kent,,TRIANGLE,WA,5/24/2004 0:10 +Breckenridge,,LIGHT,CO,5/24/2004 10:40 +Metairie,RED GREEN BLUE,FORMATION,LA,5/24/2004 18:00 +Crawfordville,,VARIOUS,FL,5/24/2004 20:46 +Hagarville,,LIGHT,AR,5/24/2004 21:45 +Langley,,SPHERE,WA,5/24/2004 22:25 +Dothan,,,AL,5/25/2004 1:00 +Omaha,RED,CONE,NE,5/25/2004 14:00 +Tucson,,,AZ,5/25/2004 14:00 +West Palm Beach,,LIGHT,FL,5/25/2004 21:45 +Robert,,TRIANGLE,LA,5/25/2004 23:00 +Westlake Village,,DISK,AR,5/26/2004 13:27 +Henderson,,OTHER,NV,5/26/2004 16:00 +Tucson,,LIGHT,AZ,5/26/2004 20:00 +Atwood,,CIRCLE,IL,5/27/2004 0:00 +Klamath Falls,,,OR,5/27/2004 15:10 +Venice,,OTHER,CA,5/27/2004 20:30 +Melbourne,,OVAL,FL,5/27/2004 21:50 +Durham,,SPHERE,NC,5/27/2004 22:15 +Lynn,,LIGHT,MA,5/27/2004 22:20 +Minneapolis,,CIRCLE,MN,5/27/2004 22:30 +Albuquerque,,LIGHT,NM,5/27/2004 23:00 +Joshua Tree National Monument,,FORMATION,CA,5/28/2004 0:00 +Anchorage,,SPHERE,AK,5/28/2004 8:35 +Oklahoma City,,VARIOUS,OK,5/28/2004 14:00 +Tempe,,LIGHT,AZ,5/28/2004 16:30 +Mohawk,,CIRCLE,NY,5/28/2004 19:30 +Sedona,,LIGHT,AZ,5/28/2004 19:30 +Tucson,,FIREBALL,AZ,5/28/2004 20:10 +Johnstown,,LIGHT,PA,5/28/2004 22:44 +Minneapolis,,LIGHT,MN,5/28/2004 23:15 +Kentucky,,LIGHT,KY,5/29/2004 0:00 +Carlsbad,,SPHERE,CA,5/29/2004 14:35 +Edgewater,,TRIANGLE,CO,5/29/2004 19:30 +Garfield,,LIGHT,NJ,5/29/2004 21:00 +Citrus Heights,,,CA,5/29/2004 21:43 +Sparks,,CIRCLE,NV,5/29/2004 22:00 +Wickenburg,,LIGHT,AZ,5/29/2004 22:00 +Riverdale,BLUE,LIGHT,GA,5/30/2004 0:40 +San Juan Capistrano,,SPHERE,CA,5/30/2004 12:00 +Chicopee,,DISK,MA,5/30/2004 16:00 +Yosemite National Park,,,CA,5/30/2004 16:00 +Sedona,,SPHERE,AZ,5/30/2004 17:00 +Seekonk,,,MA,5/30/2004 18:45 +Pickens,,LIGHT,SC,5/30/2004 20:00 +Nipomo,,FIREBALL,CA,5/30/2004 20:30 +Claremont,RED BLUE,FLASH,CA,5/30/2004 20:45 +West Phoenix,,CIRCLE,AZ,5/30/2004 23:30 +Gold Canyon,YELLOW,DISK,AZ,5/31/2004 0:00 +Branford,,LIGHT,CT,5/31/2004 3:00 +San Gabriel Mountains,ORANGE,OVAL,CA,5/31/2004 11:35 +Lakewood,,DISK,CO,5/31/2004 14:30 +Fort Lee,,OVAL,NJ,5/31/2004 16:00 +San Jose,,SPHERE,CA,5/31/2004 17:00 +Modesto,,,CA,5/31/2004 21:00 +Holbrook,,SPHERE,AZ,5/31/2004 21:10 +Sonora,,TRIANGLE,CA,5/31/2004 22:08 +Omaha,,,NE,5/31/2004 22:15 +Baton Rouge,,CIRCLE,LA,5/31/2004 22:30 +Kansas City,RED,TRIANGLE,MO,5/31/2004 22:30 +Knoxville,,SPHERE,TN,5/31/2004 23:00 +Knoxville,RED,SPHERE,TN,5/31/2004 23:00 +Pittsburg,,LIGHT,KS,6/1/2004 0:14 +Tallahassee,,LIGHT,FL,6/1/2004 1:00 +Chicago,,CIRCLE,IL,6/1/2004 1:30 +Newark,,RECTANGLE,CA,6/1/2004 11:00 +Benicia,,FORMATION,CA,6/1/2004 14:50 +Mt Rainier,,SPHERE,WA,6/1/2004 18:00 +Spanaway,,VARIOUS,WA,6/1/2004 18:00 +Bradford,,DISK,MA,6/1/2004 19:00 +Rimrock,,OTHER,CA,6/1/2004 21:30 +Cedar Rapids,,TRIANGLE,IA,6/1/2004 23:00 +Orinda,,CIGAR,CA,6/2/2004 12:00 +Pahrump,,FORMATION,NV,6/2/2004 18:00 +Pahrump,,OVAL,NV,6/2/2004 19:00 +Scottsdale,,,AZ,6/2/2004 20:00 +Fort Lauderdale,,,FL,6/2/2004 21:00 +Mosheim,,DISK,TN,6/2/2004 22:15 +Collingdale,,LIGHT,PA,6/2/2004 23:20 +Levittown,,TRIANGLE,PA,6/2/2004 23:45 +West Palm Beach,,SPHERE,FL,6/2/2004 23:55 +Snohomish,,,WA,6/3/2004 2:38 +Bellevue,,,WA,6/3/2004 2:40 +Centralia,,FIREBALL,WA,6/3/2004 2:40 +Kennewick,,,WA,6/3/2004 2:40 +Port Angeles,,FLASH,WA,6/3/2004 2:40 +Bellingham,,,WA,6/3/2004 2:42 +Spokane,,FLASH,WA,6/3/2004 2:42 +Bainbridge Island,,,WA,6/3/2004 2:44 +Peoria,,,IL,6/3/2004 11:00 +Beckley,,,WV,6/3/2004 12:23 +Albuquerque,,SPHERE,NM,6/3/2004 15:40 +Douglasville,,TRIANGLE,GA,6/3/2004 20:40 +Chandler,,,AZ,6/3/2004 21:00 +Doylestown,,VARIOUS,PA,6/3/2004 21:00 +Milford,,CIRCLE,MA,6/3/2004 22:00 +Manville,,LIGHT,NJ,6/3/2004 23:15 +Seattle,,LIGHT,WA,6/3/2004 23:30 +Dennisport,RED,FORMATION,MA,6/4/2004 0:00 +Glendale,,OTHER,AZ,6/4/2004 2:30 +Lynnwood,,FIREBALL,WA,6/4/2004 2:30 +Monterey,,DIAMOND,CA,6/4/2004 2:45 +Maple Valley,,OVAL,WA,6/4/2004 18:00 +Eugene,,CIGAR,OR,6/4/2004 20:40 +Victorville,YELLOW,LIGHT,CA,6/4/2004 21:40 +Eagle,,FLASH,CO,6/4/2004 22:44 +Adrian,RED BLUE,CIRCLE,MI,6/4/2004 23:00 +Galena,,LIGHT,IL,6/4/2004 23:05 +Reno,,LIGHT,NV,6/4/2004 23:15 +Hickory,,FIREBALL,NC,6/5/2004 0:05 +Graham,,CIRCLE,WA,6/5/2004 1:00 +Tulare,,OTHER,CA,6/5/2004 1:00 +Santa Barbara,,,CA,6/5/2004 1:04 +Polk,,,MO,6/5/2004 3:20 +El Dorado Hills,RED,VARIOUS,CA,6/5/2004 4:15 +New York City,,OVAL,NY,6/5/2004 8:00 +Eureka,,CIRCLE,IL,6/5/2004 12:00 +Lake Alpine,,OTHER,CA,6/5/2004 12:15 +Cloud Croft,,,NM,6/5/2004 15:00 +Hanna,,CIRCLE,WY,6/5/2004 16:00 +Livonia,,CIRCLE,MI,6/5/2004 19:00 +Santa Rosa,,LIGHT,CA,6/5/2004 19:00 +Flushing,,LIGHT,NY,6/5/2004 19:50 +Gaffney,,FIREBALL,SC,6/5/2004 20:00 +Sacramento,,DISK,CA,6/5/2004 20:42 +Westminster,,CHEVRON,CO,6/5/2004 22:00 +Bloomer,,LIGHT,WI,6/5/2004 22:30 +Jasper,,TRIANGLE,AR,6/5/2004 22:30 +Springville,,TRIANGLE,CA,6/5/2004 22:50 +Rockne,,OTHER,TX,6/6/2004 4:00 +Ashland,,VARIOUS,KY,6/6/2004 15:00 +Sault Ste. Marie,,LIGHT,MI,6/7/2004 0:40 +Temple City,,FORMATION,CA,6/7/2004 20:00 +Royal Palm Beach,RED,,FL,6/7/2004 21:00 +Covington,,FIREBALL,LA,6/7/2004 22:00 +Crestview,,CIRCLE,FL,6/7/2004 22:00 +Argyle,,SPHERE,FL,6/7/2004 22:30 +Mandeville,,FIREBALL,LA,6/7/2004 22:30 +Cotati,,FORMATION,CA,6/7/2004 22:39 +Christmas Valley,,OTHER,OR,6/7/2004 23:00 +Bastrop,GREEN,FIREBALL,LA,6/7/2004 23:30 +Birmingham,,CIRCLE,AL,6/8/2004 0:40 +Argos,,OTHER,IN,6/8/2004 5:15 +Columbia,,DISK,TN,6/8/2004 13:30 +Albuquerque,,LIGHT,TX,6/8/2004 21:05 +Mound,RED,TRIANGLE,MN,6/8/2004 22:30 +Maineville,,LIGHT,OH,6/8/2004 23:18 +St. George Island,,CIRCLE,FL,6/8/2004 23:30 +San Leandro,RED,CIRCLE,CA,6/9/2004 0:00 +Chula Vista,,OTHER,CA,6/9/2004 3:00 +Brewer,,DIAMOND,ME,6/9/2004 13:00 +Waterbury,,CIRCLE,CT,6/9/2004 13:00 +Wilmington,,,NC,6/9/2004 18:00 +New York City,,OTHER,NY,6/10/2004 4:00 +Normal,,OTHER,IL,6/10/2004 12:00 +Goldsboro,,SPHERE,NC,6/10/2004 12:30 +South Royalton,,OTHER,VT,6/10/2004 14:30 +Sonora,,CYLINDER,CA,6/10/2004 16:36 +San Antonio,,DISK,TX,6/10/2004 18:00 +Montville,,VARIOUS,OH,6/10/2004 21:00 +Rehoboth Beach,,FLASH,DE,6/10/2004 22:30 +Manilla,,,IA,6/10/2004 23:00 +Portland,,,OR,6/10/2004 23:15 +Sturgis,,,SD,6/10/2004 23:28 +Pawtucket,,OTHER,RI,6/11/2004 1:50 +New Port Richey,,VARIOUS,FL,6/11/2004 4:00 +New Port Richey,,DISK,FL,6/11/2004 4:30 +Charleston,,OTHER,IL,6/11/2004 15:30 +Buffalo,,OVAL,NY,6/11/2004 20:40 +El Paso,,LIGHT,TX,6/11/2004 22:20 +Wichita,BLUE,LIGHT,KS,6/11/2004 22:48 +Ocracoke Island,,OTHER,NC,6/11/2004 23:00 +New York City,,LIGHT,NY,6/12/2004 11:30 +Torrance,,DISK,CA,6/12/2004 15:03 +Long Beach,,LIGHT,CA,6/12/2004 16:00 +Endicott,,SPHERE,NY,6/12/2004 16:45 +Phoenix,,LIGHT,AZ,6/12/2004 22:00 +Southbridge,,OTHER,MA,6/12/2004 22:00 +Steens,,LIGHT,MS,6/12/2004 23:00 +McAlester,,DIAMOND,OK,6/13/2004 0:00 +Jessup,ORANGE,,PA,6/13/2004 0:24 +Toledo,,CIRCLE,OH,6/13/2004 2:00 +Steens,,LIGHT,MS,6/13/2004 4:00 +Burien,,TEARDROP,WA,6/13/2004 11:30 +Conconully,,DISK,WA,6/13/2004 12:28 +Parker,,TRIANGLE,CO,6/13/2004 12:45 +Mobile,,,AZ,6/13/2004 20:00 +Los Angeles,,FIREBALL,CA,6/13/2004 20:15 +Crisfield,RED,SPHERE,MD,6/13/2004 21:00 +Woodridge,,LIGHT,IL,6/13/2004 22:45 +San Francisco,,TRIANGLE,CA,6/13/2004 23:00 +Sandy,,TRIANGLE,UT,6/13/2004 23:00 +Midland,,LIGHT,TX,6/13/2004 23:14 +Sandy,,TRIANGLE,UT,6/13/2004 23:15 +Newark,,OVAL,OH,6/14/2004 3:30 +Lake Worth,,LIGHT,FL,6/14/2004 5:00 +Orem,,SPHERE,UT,6/14/2004 7:15 +Goodyear,,DISK,AZ,6/14/2004 20:00 +Goodyear,RED,FORMATION,AZ,6/14/2004 20:30 +Papillion,GREEN,RECTANGLE,NE,6/14/2004 20:30 +Phoenix,,LIGHT,AZ,6/14/2004 20:30 +Phoenix,,,AZ,6/14/2004 20:35 +Glendale,,FORMATION,AZ,6/14/2004 20:40 +Phoenix,,FORMATION,AZ,6/14/2004 20:40 +Scottsdale,ORANGE,SPHERE,AZ,6/14/2004 20:45 +Phoenix,,LIGHT,AZ,6/14/2004 21:00 +Bellevue,,TRIANGLE,MI,6/14/2004 23:11 +El Paso,,VARIOUS,IL,6/15/2004 0:00 +South Jordan,,TRIANGLE,UT,6/15/2004 1:30 +Locust Grove,,LIGHT,VA,6/15/2004 2:00 +Hudson,,LIGHT,FL,6/15/2004 5:00 +Flushing,,EGG,NY,6/15/2004 5:30 +San Diego,,LIGHT,CA,6/15/2004 7:00 +Palm Beach,,OTHER,FL,6/15/2004 9:45 +Phoenix,,DISK,AZ,6/15/2004 12:00 +Cleveland,,LIGHT,OH,6/15/2004 13:00 +Boulder,,LIGHT,CO,6/15/2004 14:00 +Indianapolis,,DISK,IN,6/15/2004 14:00 +Pacific Ocean,,OVAL,CA,6/15/2004 14:24 +St. Paul Park,,CIRCLE,MN,6/15/2004 14:30 +Bloomington,,,MN,6/15/2004 16:14 +Seattle,,DIAMOND,WA,6/15/2004 19:00 +Clinton,,TRIANGLE,MS,6/15/2004 21:00 +Phoenix,ORANGE,LIGHT,AZ,6/15/2004 21:30 +Canyon Lake,,VARIOUS,AZ,6/15/2004 22:00 +Clarksville,,OVAL,AR,6/15/2004 22:00 +Kure Beach,ORANGE,LIGHT,NC,6/15/2004 22:00 +Winchester,ORANGE,FIREBALL,IN,6/15/2004 22:00 +Willoughby Hills,,TRIANGLE,OH,6/16/2004 0:00 +Littleton,,DISK,CO,6/16/2004 1:00 +Thornton,,DISK,WA,6/16/2004 12:15 +Milan,,SPHERE,TN,6/16/2004 12:30 +Ames,,DISK,IA,6/16/2004 13:00 +Portland,,SPHERE,OR,6/16/2004 13:18 +Lahaina,,CROSS,HI,6/16/2004 15:00 +Avondale,,CIRCLE,AZ,6/16/2004 20:47 +Durham,,OTHER,NH,6/16/2004 22:00 +Clovis,,CHEVRON,CA,6/16/2004 22:15 +Bristol,,OTHER,TN,6/16/2004 22:27 +Gerber Reservoir,ORANGE,VARIOUS,OR,6/16/2004 23:00 +Puyallup,,SPHERE,WA,6/17/2004 11:30 +Poway,,LIGHT,CA,6/17/2004 18:30 +Chandler,,LIGHT,AZ,6/17/2004 18:45 +Phoenix,ORANGE,SPHERE,AZ,6/17/2004 22:00 +Ranshaw,RED,SPHERE,PA,6/17/2004 22:30 +Redding,,LIGHT,CA,6/17/2004 23:15 +Lawrenceburg,,TRIANGLE,IN,6/18/2004 2:16 +Elk Grove,,DISK,IL,6/18/2004 11:30 +Bremerton,,CIRCLE,WA,6/18/2004 14:00 +Blountville,,OTHER,TN,6/18/2004 17:00 +Montesano,,VARIOUS,WA,6/18/2004 17:00 +Many,,SPHERE,LA,6/18/2004 17:20 +Blountville,,OTHER,TN,6/18/2004 17:30 +Philadelphia,,DISK,PA,6/18/2004 18:31 +Philadelphia,,DISK,PA,6/18/2004 18:31 +Philadelphia,,DISK,PA,6/18/2004 18:31 +Blountville,,,TN,6/18/2004 19:25 +Plymouth,,EGG,MA,6/18/2004 21:00 +Newtown,,LIGHT,PA,6/18/2004 21:35 +Sedona,,LIGHT,AZ,6/18/2004 23:00 +St. Cloud,,LIGHT,MN,6/18/2004 23:30 +Holly,,LIGHT,MI,6/19/2004 1:00 +Kingwood,,DISK,TX,6/19/2004 3:23 +Mesquite,,FLASH,NV,6/19/2004 4:30 +Henderson,RED ORANGE BLUE,CIRCLE,NV,6/19/2004 4:52 +Avondale,GREEN BLUE,FIREBALL,AZ,6/19/2004 4:55 +Phoenix,GREEN,FIREBALL,AZ,6/19/2004 5:30 +Kansas City,,DISK,MO,6/19/2004 7:15 +Indio,,OTHER,CA,6/19/2004 9:00 +Tecate,,CYLINDER,CA,6/19/2004 12:00 +Columbus,,LIGHT,OH,6/19/2004 17:30 +Los Angeles,,LIGHT,CA,6/19/2004 18:30 +Westland,,DIAMOND,MI,6/19/2004 20:00 +Wheeling,,OTHER,WV,6/19/2004 22:43 +Loomis,,LIGHT,WA,6/19/2004 23:30 +Farmington,,LIGHT,MO,6/20/2004 1:15 +Round Rock,,LIGHT,TX,6/20/2004 4:31 +Columbus,,OTHER,OH,6/20/2004 7:00 +Hiawasee,,VARIOUS,GA,6/20/2004 9:15 +Bellingham,,DISK,WA,6/20/2004 12:15 +Norwell,,OVAL,MA,6/20/2004 18:35 +Albia,RED BLUE,OTHER,IA,6/20/2004 22:00 +Oriental,,CIRCLE,NC,6/20/2004 22:00 +Brea,ORANGE,FORMATION,CA,6/20/2004 22:15 +Ashland,,LIGHT,OR,6/20/2004 23:00 +Seattle,,,WA,6/20/2004 23:00 +Seattle,,TRIANGLE,WA,6/20/2004 23:15 +Seattle,,TRIANGLE,WA,6/20/2004 23:15 +Crescent City,,DISK,CA,6/21/2004 5:38 +Richmond Hill,RED,DISK,NY,6/21/2004 9:30 +Newark,,,OH,6/21/2004 16:12 +Buckeye,,LIGHT,AZ,6/21/2004 20:00 +Ames,RED,,IA,6/21/2004 21:58 +Bow,RED ORANGE,SPHERE,NH,6/21/2004 23:07 +Mansfield,,LIGHT,TX,6/21/2004 23:30 +Brady,,OTHER,MT,6/22/2004 10:30 +San Antonio,,VARIOUS,TX,6/22/2004 15:45 +Santa Maria,,,CA,6/22/2004 20:30 +Onalaska,,,WI,6/22/2004 22:15 +Buffalo,,LIGHT,NY,6/22/2004 22:25 +Euclid,,LIGHT,OH,6/22/2004 23:14 +Prosser,,LIGHT,WA,6/23/2004 1:50 +Fairport,,SPHERE,NY,6/23/2004 2:00 +Fort Wayne,,LIGHT,IN,6/23/2004 2:30 +Lancaster,RED,LIGHT,OH,6/23/2004 3:00 +Mesa,,VARIOUS,AZ,6/23/2004 17:30 +McLean,,TRIANGLE,VA,6/23/2004 19:00 +Newton Falls,,VARIOUS,OH,6/23/2004 22:00 +Lafayette,,,CA,6/24/2004 1:00 +Lafayette,,,CA,6/24/2004 3:00 +Gilroy,,LIGHT,CA,6/24/2004 3:02 +Norwalk,,OTHER,CT,6/24/2004 5:30 +Valley Village,RED,CIRCLE,CA,6/24/2004 8:26 +Phoenix,,OVAL,AZ,6/24/2004 10:30 +San Bernardino,ORANGE,LIGHT,CA,6/24/2004 11:10 +Hillsboro,,OVAL,OR,6/24/2004 14:00 +Peaster,,CIGAR,TX,6/24/2004 15:00 +East Wenatchee,,SPHERE,WA,6/24/2004 20:00 +Englewood,,OVAL,NJ,6/24/2004 20:45 +Sound Beach,,,NY,6/24/2004 20:57 +Edgewood,,LIGHT,NM,6/24/2004 21:29 +Webster,,LIGHT,NY,6/24/2004 21:50 +Newborn,,SPHERE,GA,6/24/2004 22:00 +South Amherst,,CIRCLE,OH,6/24/2004 22:00 +Knoxville,RED,DIAMOND,TN,6/24/2004 22:20 +Palo Verde,,OVAL,AZ,6/24/2004 22:30 +Lincoln,,CIRCLE,NE,6/24/2004 22:37 +Olympia,,OVAL,WA,6/25/2004 3:00 +Round Rock,,FIREBALL,TX,6/25/2004 3:36 +Milwaukee,BLUE,CIGAR,WI,6/25/2004 12:30 +no data,ORANGE,LIGHT,NV,6/25/2004 14:45 +Seattle,ORANGE YELLOW,DISK,WA,6/25/2004 21:30 +Reno,RED,SPHERE,NV,6/25/2004 22:00 +Portland,RED,FIREBALL,OR,6/25/2004 22:45 +Salt Lake City,,,UT,6/26/2004 0:00 +West Fargo,,TRIANGLE,ND,6/26/2004 0:20 +Bolivar,,LIGHT,MO,6/26/2004 3:00 +Humansville,,LIGHT,MO,6/26/2004 3:00 +Channelview,,,TX,6/26/2004 4:15 +Degraff,,OTHER,OH,6/26/2004 4:30 +Berea,,OVAL,OH,6/26/2004 10:00 +Levittown,,CIRCLE,PA,6/26/2004 12:00 +Miami,,CYLINDER,FL,6/26/2004 13:45 +Rotan,,OVAL,TX,6/26/2004 19:00 +Wheeling,,LIGHT,WV,6/26/2004 20:49 +Waterloo-Chelsea,RED,FORMATION,MI,6/26/2004 22:20 +Reamstown,,,PA,6/26/2004 22:30 +Granville Summit,,LIGHT,PA,6/26/2004 22:45 +Los Angeles,,LIGHT,CA,6/26/2004 22:45 +Lordstown,,FIREBALL,OH,6/26/2004 22:47 +Johnsonburg,,FIREBALL,NJ,6/26/2004 22:50 +Tionesta,ORANGE,LIGHT,PA,6/26/2004 22:50 +Lancaster,GREEN,LIGHT,PA,6/26/2004 23:00 +Lexington,,,MI,6/26/2004 23:00 +Sagamore Hills,BLUE,FIREBALL,OH,6/26/2004 23:00 +Shasta Lake,,LIGHT,CA,6/26/2004 23:15 +Clarkston,,,MI,6/26/2004 23:30 +Smithport,,FORMATION,PA,6/27/2004 0:00 +Mentor,,LIGHT,OH,6/27/2004 0:10 +Sherwood,BLUE,CIRCLE,OR,6/27/2004 3:00 +Pratt,,OVAL,KS,6/27/2004 3:15 +Portland,,SPHERE,OR,6/27/2004 4:10 +Austin,,SPHERE,TX,6/27/2004 4:14 +Port Aransas,,LIGHT,TX,6/27/2004 4:15 +Pearland,,FIREBALL,TX,6/27/2004 4:16 +Dripping Springs,,EGG,TX,6/27/2004 4:17 +Akron,,OTHER,OH,6/27/2004 6:30 +Boise,,VARIOUS,ID,6/27/2004 9:30 +Seattle,,CIGAR,WA,6/27/2004 15:30 +Georgetown,,TRIANGLE,TX,6/27/2004 19:10 +New York City,,FIREBALL,NY,6/27/2004 21:45 +Tempe,,DISK,AZ,6/27/2004 23:00 +Wheeling,,LIGHT,WV,6/27/2004 23:11 +Gold Bar,,CIRCLE,WA,6/27/2004 23:15 +Columbus,,,OH,6/28/2004 1:37 +Wilmington,,OVAL,MA,6/28/2004 17:10 +Waterloo,,RECTANGLE,IA,6/28/2004 21:00 +Nation Wide,,,FL,6/28/2004 22:00 +Bolivar,,DISK,MO,6/29/2004 1:00 +Anacortes,,OVAL,WA,6/29/2004 2:30 +Lafayette,,OTHER,CA,6/29/2004 3:00 +Boston,,CIGAR,MA,6/29/2004 9:20 +Olympia,,TRIANGLE,WA,6/29/2004 22:30 +Hamilton,,,OH,6/29/2004 23:00 +Mt. Union,,LIGHT,PA,6/29/2004 23:00 +Orange,,OTHER,TX,6/30/2004 0:00 +Pittsford,,,MI,6/30/2004 0:00 +Pomona,,CIRCLE,CA,6/30/2004 0:00 +Hubbard,BLUE,OTHER,MN,6/30/2004 1:15 +Arizona,,CIRCLE,AZ,6/30/2004 4:00 +San Elijo Hills,,SPHERE,CA,6/30/2004 11:00 +Charleston,,RECTANGLE,SC,6/30/2004 13:00 +Palm Desert,,CROSS,CA,6/30/2004 14:00 +Jacksonville,,RECTANGLE,FL,6/30/2004 15:00 +Chicago,,FIREBALL,IL,6/30/2004 16:00 +Chico,,OTHER,CA,6/30/2004 16:00 +Holiday,,OTHER,FL,6/30/2004 16:00 +Holiday,,OTHER,FL,6/30/2004 16:00 +Cary,,TRIANGLE,NC,6/30/2004 17:00 +Las Vegas,,CIRCLE,NV,6/30/2004 17:55 +Ridgefield,,LIGHT,WA,6/30/2004 19:00 +Coulterville,,TRIANGLE,IL,6/30/2004 22:00 +San Diego,,SPHERE,CA,6/30/2004 22:00 +Alsip,,TRIANGLE,IL,6/30/2004 22:30 +New Springfield,RED,OVAL,OH,6/30/2004 23:00 +Riverside,GREEN,LIGHT,CA,6/30/2004 23:30 +Glendale,,SPHERE,AZ,7/1/2004 4:30 +Elk Grove,,OTHER,IL,7/1/2004 17:15 +Manasquan,,TRIANGLE,NJ,7/1/2004 21:30 +Yakima,,,WA,7/1/2004 22:15 +Rosemead,GREEN,LIGHT,CA,7/1/2004 23:00 +Visalia,,TRIANGLE,CA,7/1/2004 23:00 +Edina,,TRIANGLE,MN,7/1/2004 23:44 +El Monte,,OVAL,CA,7/2/2004 16:00 +Oceanside,,CIRCLE,CA,7/2/2004 18:00 +Heiskell,,DISK,TN,7/2/2004 18:15 +Colton,RED,LIGHT,CA,7/2/2004 21:15 +Cortland,,,NY,7/2/2004 22:00 +Milpitas,,TRIANGLE,CA,7/2/2004 22:15 +Rachel,,TRIANGLE,NV,7/2/2004 22:30 +Drums,,,PA,7/2/2004 22:45 +George,,LIGHT,WA,7/3/2004 0:00 +Lewisville,,CYLINDER,TX,7/3/2004 8:45 +Boulder,,SPHERE,CO,7/3/2004 11:35 +South Kingstown,,CIGAR,RI,7/3/2004 12:30 +Las Vegas,,,NV,7/3/2004 13:00 +Sedona,,LIGHT,AZ,7/3/2004 19:50 +Lakeside,,FIREBALL,CA,7/3/2004 20:00 +Madison,,LIGHT,IN,7/3/2004 20:58 +El Cajon,,LIGHT,CA,7/3/2004 21:00 +Salem,,LIGHT,OR,7/3/2004 22:00 +Hudson,,TRIANGLE,NY,7/3/2004 23:00 +Casselberry,,VARIOUS,FL,7/4/2004 0:00 +Tucson,,CYLINDER,AZ,7/4/2004 3:41 +Provo,,TEARDROP,UT,7/4/2004 5:36 +Charlotte,,CHEVRON,NC,7/4/2004 16:45 +Topeka,,DISK,KS,7/4/2004 17:00 +Pacific Beach,,LIGHT,CA,7/4/2004 18:00 +Clarkson,,TRIANGLE,NY,7/4/2004 18:30 +Dallas,,RECTANGLE,TX,7/4/2004 19:00 +North Richland Hills,,LIGHT,TX,7/4/2004 19:11 +Galt,,CIRCLE,CA,7/4/2004 19:30 +Winter Springs,ORANGE,OTHER,FL,7/4/2004 20:00 +Casselberry,,,FL,7/4/2004 20:30 +Casselberry,,DISK,FL,7/4/2004 20:30 +El Cajon,RED,CIRCLE,CA,7/4/2004 20:30 +Hollis,,CIRCLE,NH,7/4/2004 20:30 +Casselberry,,OTHER,FL,7/4/2004 20:50 +Canyon Country,,DISK,CA,7/4/2004 21:00 +Casselberry,,FLASH,FL,7/4/2004 21:00 +El Cajon,,LIGHT,CA,7/4/2004 21:00 +La Mesa,RED,LIGHT,CA,7/4/2004 21:00 +San Diego,RED,LIGHT,CA,7/4/2004 21:00 +Spring Valley,RED,LIGHT,CA,7/4/2004 21:01 +Damascus,,TRIANGLE,MD,7/4/2004 21:15 +El Cajon,RED,LIGHT,CA,7/4/2004 21:15 +El Cajon,RED,LIGHT,CA,7/4/2004 21:15 +San Diego,RED,CIRCLE,CA,7/4/2004 21:15 +Kingman,RED,FORMATION,AZ,7/4/2004 21:30 +San Jose,,LIGHT,CA,7/4/2004 21:52 +Brookings,,CIRCLE,OR,7/4/2004 22:00 +Santaquin,,,UT,7/4/2004 22:00 +Tahoe City,,OTHER,CA,7/4/2004 22:00 +Arlington,,CIRCLE,MA,7/4/2004 22:15 +Eugene,,CIRCLE,OR,7/4/2004 22:30 +Casselberry,,LIGHT,FL,7/4/2004 23:00 +Eugene,,SPHERE,OR,7/4/2004 23:00 +San Antonio,GREEN,RECTANGLE,TX,7/5/2004 3:15 +Tipton,,,PA,7/5/2004 10:00 +Fresno,,VARIOUS,CA,7/5/2004 19:30 +Panama City Beach,,LIGHT,FL,7/5/2004 20:30 +Beckley,,LIGHT,WV,7/5/2004 21:00 +Flagstaff,,LIGHT,AZ,7/5/2004 21:43 +Sparks,RED,CIRCLE,NV,7/5/2004 23:00 +Spring,,LIGHT,TX,7/5/2004 23:30 +Las Vegas,,TRIANGLE,NV,7/6/2004 2:00 +Kenmore,,TRIANGLE,WA,7/6/2004 3:30 +Kingsburg,,TRIANGLE,CA,7/6/2004 10:35 +Chicago,,FIREBALL,IL,7/6/2004 12:30 +Cleveland,,,OH,7/6/2004 14:30 +New York City,,CIRCLE,NY,7/6/2004 22:00 +Paragould,,VARIOUS,AR,7/6/2004 22:40 +Scotland,,RECTANGLE,MD,7/6/2004 23:58 +Bellevue,RED,RECTANGLE,NE,7/7/2004 0:00 +Burleson,,FIREBALL,TX,7/7/2004 0:00 +Aurora,,FIREBALL,CO,7/7/2004 1:45 +Douglas,,LIGHT,GA,7/7/2004 4:00 +Carlbad,,SPHERE,NM,7/7/2004 7:10 +Englewood,,SPHERE,CO,7/7/2004 13:40 +Clementon,,OTHER,NJ,7/7/2004 15:00 +Memphis,,OVAL,TN,7/7/2004 17:30 +Englewood,,SPHERE,CO,7/7/2004 19:00 +Cleveland,,,OH,7/7/2004 20:00 +Cleveland,,LIGHT,OH,7/7/2004 20:30 +Monroe,GREEN,CYLINDER,LA,7/7/2004 21:05 +Fort Worth,,,TX,7/7/2004 21:25 +Heavener,RED YELLOW BLUE,FIREBALL,OK,7/7/2004 21:29 +Dallas,,FIREBALL,TX,7/7/2004 21:30 +El Dorado,,,AR,7/7/2004 21:50 +Salem,,LIGHT,OR,7/7/2004 22:00 +Junction,,LIGHT,TX,7/7/2004 22:05 +Edmond,,FIREBALL,OK,7/7/2004 22:30 +Placerville,,LIGHT,CA,7/7/2004 23:05 +Conyers,,OTHER,GA,7/7/2004 23:45 +Petrified Forest,,OTHER,AZ,7/8/2004 12:00 +Englewood,,SPHERE,CO,7/8/2004 17:55 +Palm Beach,,TRIANGLE,FL,7/8/2004 20:00 +Trumbull,,OVAL,CT,7/8/2004 20:00 +Arvada,,DISK,CO,7/8/2004 21:00 +Topeka,,CROSS,KS,7/8/2004 21:00 +Portland,BLUE,DIAMOND,OR,7/8/2004 21:07 +Lindale,,LIGHT,TX,7/8/2004 21:30 +Otis,,OTHER,OR,7/8/2004 23:15 +Robertsville,,LIGHT,MO,7/9/2004 1:15 +Corpus Christi,,OVAL,TX,7/9/2004 6:50 +College Park,BLUE,,MD,7/9/2004 9:55 +Altoona,,,PA,7/9/2004 13:00 +Santa Ana,,LIGHT,CA,7/9/2004 20:00 +Elizabethton,,CIRCLE,TN,7/9/2004 20:55 +Reno,,LIGHT,NV,7/9/2004 21:15 +Walpole,,LIGHT,MA,7/9/2004 21:50 +Arlington,,,WA,7/9/2004 21:58 +Yosemite,,OVAL,CA,7/9/2004 22:00 +Toms River,,TRIANGLE,NJ,7/9/2004 22:50 +Blackfoot,,CHEVRON,ID,7/10/2004 1:00 +Utah,,FIREBALL,UT,7/10/2004 1:00 +Elcho,,DIAMOND,WI,7/10/2004 2:00 +Plant City,,FIREBALL,FL,7/10/2004 3:00 +Cumberland,,VARIOUS,WA,7/10/2004 4:00 +Canoga Park,ORANGE,LIGHT,CA,7/10/2004 4:30 +Aventura,,OVAL,FL,7/10/2004 5:30 +Gurnee,,OVAL,IL,7/10/2004 10:00 +Hilton,,CIRCLE,NY,7/10/2004 12:05 +Levering,,OTHER,MI,7/10/2004 13:00 +Silverado,,LIGHT,CA,7/10/2004 16:45 +Piedmont,RED GREEN BLUE,CIRCLE,AL,7/10/2004 20:00 +Abita Springs,,FORMATION,LA,7/10/2004 20:14 +Camp Verde,,TRIANGLE,AZ,7/10/2004 21:00 +Victorville,,DISK,CA,7/10/2004 21:15 +Las Vegas,ORANGE,SPHERE,NV,7/10/2004 21:20 +Los Angeles,,LIGHT,CA,7/10/2004 22:00 +Mt. Lassen,,LIGHT,CA,7/10/2004 22:00 +Pompano Beach,,LIGHT,FL,7/10/2004 22:00 +Canton,,LIGHT,OH,7/10/2004 22:15 +Oak Forest,,LIGHT,IL,7/10/2004 23:00 +Parker,,LIGHT,AZ,7/10/2004 23:45 +Everett,RED GREEN,LIGHT,WA,7/11/2004 1:30 +Fontana,,LIGHT,CA,7/11/2004 2:26 +Chicago,,LIGHT,IL,7/11/2004 3:00 +San Antonio,,SPHERE,TX,7/11/2004 5:00 +Kahului,,LIGHT,HI,7/11/2004 5:18 +Tarpon Springs,,DISK,FL,7/11/2004 15:30 +Louisville,BLUE,CIRCLE,KY,7/11/2004 20:00 +Brule,,LIGHT,NE,7/11/2004 22:08 +Blowing Rock,,FLASH,NC,7/11/2004 23:30 +Blowing Rock,,FLASH,NC,7/11/2004 23:30 +Island Park,,DISK,ID,7/12/2004 0:00 +Quincy,,EGG,CA,7/12/2004 11:55 +Norwalk,,DISK,CA,7/12/2004 16:30 +Huntington,,CYLINDER,WV,7/12/2004 17:40 +St. Cloud,,SPHERE,MN,7/12/2004 18:30 +Cadiz,,CIRCLE,KY,7/12/2004 20:30 +Miami,,,FL,7/12/2004 21:30 +Circleville,,OVAL,OH,7/12/2004 22:05 +Coalinga,,TRIANGLE,CA,7/12/2004 22:15 +New York City,,OVAL,NY,7/12/2004 23:00 +Seattle,,CIRCLE,WA,7/13/2004 0:35 +Reno,BLUE,LIGHT,NV,7/13/2004 2:00 +Naperville,,TRIANGLE,IL,7/13/2004 14:16 +Houston,,CIRCLE,TX,7/13/2004 15:20 +Houston,,OVAL,TX,7/13/2004 16:20 +Orange,,SPHERE,CA,7/13/2004 20:00 +Indianapolis,,LIGHT,IN,7/13/2004 21:15 +Marysville,,LIGHT,WA,7/13/2004 22:00 +Phoenix,,LIGHT,AZ,7/13/2004 23:00 +San Gabriel,,OTHER,CA,7/14/2004 1:00 +Lehigh Acers,,LIGHT,FL,7/14/2004 4:00 +Caldwell,,LIGHT,OH,7/14/2004 4:45 +Pillar Point Air Base,,TRIANGLE,CA,7/14/2004 5:00 +Moorpark,,LIGHT,CA,7/14/2004 5:10 +Chicago,,OTHER,IL,7/14/2004 10:30 +Paris,,DISK,TN,7/14/2004 18:30 +Lexington,RED,LIGHT,KY,7/14/2004 20:45 +Bremerton,,LIGHT,WA,7/14/2004 21:21 +Woodland,,LIGHT,CA,7/14/2004 21:30 +Melroe park,,LIGHT,IL,7/14/2004 23:00 +Valley Center,,OVAL,KS,7/14/2004 23:00 +South Bound Brook,,DISK,NJ,7/15/2004 0:30 +Goose Creek,,TRIANGLE,SC,7/15/2004 1:30 +Los Angeles,,FIREBALL,CA,7/15/2004 2:30 +San Pedro,,TRIANGLE,CA,7/15/2004 3:05 +Wichita,,OTHER,KS,7/15/2004 4:15 +Atlanta,,OVAL,GA,7/15/2004 7:00 +Holmes Beach,,CIRCLE,FL,7/15/2004 8:13 +Conroe,,LIGHT,TX,7/15/2004 10:15 +Bow,,OTHER,NH,7/15/2004 11:43 +Lewiston,,CYLINDER,ID,7/15/2004 13:00 +New Brighton,,SPHERE,MN,7/15/2004 13:00 +North Kingstown,,OTHER,RI,7/15/2004 13:30 +Yuma,,SPHERE,AZ,7/15/2004 19:40 +Trevor,,OVAL,WI,7/15/2004 20:30 +Show Low,,OTHER,AZ,7/15/2004 21:00 +Monmouth,,CIRCLE,OR,7/15/2004 22:00 +Troutdale,,,OR,7/15/2004 22:00 +Louisville,,DIAMOND,KY,7/15/2004 23:30 +Outing,,FORMATION,MN,7/15/2004 23:30 +Electra,,DISK,TX,7/15/2004 23:45 +Honesdale,,DIAMOND,PA,7/15/2004 23:45 +Maple Grove,,DISK,MN,7/16/2004 1:00 +Lufkin,,CIRCLE,TX,7/16/2004 3:00 +Shafter,,VARIOUS,CA,7/16/2004 7:30 +Bowling Green,,TRIANGLE,KY,7/16/2004 10:00 +Hat Creek,BLUE,CHEVRON,CA,7/16/2004 11:30 +St. Cloud,,CHEVRON,MN,7/16/2004 12:45 +Chicago,,EGG,IL,7/16/2004 16:30 +Mukilteo,,FIREBALL,WA,7/16/2004 22:17 +Port Angeles,,LIGHT,WA,7/16/2004 22:45 +Granby,,SPHERE,MO,7/16/2004 23:30 +Edge water,,DISK,NJ,7/16/2004 23:35 +Mesa,,SPHERE,AZ,7/17/2004 2:00 +Brentwood,,LIGHT,CA,7/17/2004 2:55 +Lewisburg,,TRIANGLE,OH,7/17/2004 3:00 +Galt,RED ORANGE GREEN,SPHERE,CA,7/17/2004 4:00 +Phoenix,,VARIOUS,AZ,7/17/2004 4:30 +Kernville,GREEN,OTHER,CA,7/17/2004 10:30 +San Jose,,,CA,7/17/2004 12:10 +Shafter,,DISK,CA,7/17/2004 13:00 +New York City,,CIRCLE,NY,7/17/2004 17:00 +Monticello,,SPHERE,UT,7/17/2004 20:00 +Lancaster,,TRIANGLE,CA,7/17/2004 21:00 +Paragon,,RECTANGLE,IN,7/17/2004 21:00 +Modesto,,FIREBALL,CA,7/17/2004 22:30 +Portsmouth,,CIRCLE,OH,7/17/2004 22:45 +Tulare,,OVAL,CA,7/17/2004 23:00 +Loganville,GREEN,FLASH,GA,7/18/2004 0:15 +Lincoln,,DISK,NH,7/18/2004 2:47 +Apache Junction,,LIGHT,AZ,7/18/2004 3:00 +Titusville,,SPHERE,PA,7/18/2004 13:00 +Kirkland,,SPHERE,WA,7/18/2004 15:00 +Shelby Township,,SPHERE,MI,7/19/2004 0:24 +Longmont,,,CO,7/19/2004 1:00 +Gladstone,,OTHER,MI,7/19/2004 1:34 +Concrete,,LIGHT,WA,7/19/2004 3:00 +El Cajon,,DIAMOND,CA,7/19/2004 3:39 +Monterey Park,,OVAL,CA,7/19/2004 11:30 +Portland,,SPHERE,OR,7/19/2004 16:00 +Modesto,,LIGHT,CA,7/19/2004 21:15 +Atlanta,,SPHERE,GA,7/19/2004 22:00 +State College,,CIRCLE,PA,7/19/2004 22:00 +Orofino,,LIGHT,ID,7/20/2004 0:00 +LaGrange,,,GA,7/20/2004 0:30 +Federal Way,,,WA,7/20/2004 0:45 +Atwater,,TRIANGLE,CA,7/20/2004 1:00 +Loves Park,,CIRCLE,IL,7/20/2004 1:00 +Wisconsin Rapids,,SPHERE,WI,7/20/2004 1:00 +Los Angeles,,,CA,7/20/2004 1:15 +Columbia,,,PA,7/20/2004 3:00 +Gila Bend,,OTHER,AZ,7/20/2004 7:30 +Oro Grande,,CIRCLE,CA,7/20/2004 16:00 +Nekoosa,,CIRCLE,WI,7/20/2004 19:00 +Kirkland,,SPHERE,WA,7/20/2004 19:30 +Chandler,,FIREBALL,AZ,7/20/2004 19:45 +Litchfield Park,,CROSS,AZ,7/20/2004 19:45 +Doniphan,,DISK,NE,7/20/2004 20:00 +Cortez,,CIRCLE,CO,7/20/2004 21:00 +Scottsdale,ORANGE,SPHERE,AZ,7/20/2004 21:52 +West Phoenix,,LIGHT,AZ,7/20/2004 22:15 +Everett,,LIGHT,WA,7/20/2004 23:00 +Lake Shasta Resort,,FIREBALL,CA,7/21/2004 0:00 +Little Rock,YELLOW,TRIANGLE,AR,7/21/2004 0:00 +Fort Pierce,,FLASH,FL,7/21/2004 0:20 +Vienna,,SPHERE,MO,7/21/2004 10:00 +Reno,,DISK,NV,7/21/2004 12:45 +Wheeling,,SPHERE,WV,7/21/2004 18:15 +San Diego,,VARIOUS,CA,7/21/2004 20:00 +Breezy Point,,,MN,7/21/2004 23:00 +Kenmore,,,WA,7/21/2004 23:06 +New York,,LIGHT,NY,7/22/2004 2:00 +West Bend,BLUE,LIGHT,WI,7/22/2004 3:00 +El Cajon,,TRIANGLE,CA,7/22/2004 3:30 +College Station,,,TX,7/22/2004 4:00 +Huntington Beach,,EGG,CA,7/22/2004 14:00 +Lincoln,,OTHER,NE,7/22/2004 22:29 +Blaine,,CIRCLE,MN,7/22/2004 22:30 +Portland,,CIRCLE,OR,7/22/2004 23:10 +Holland,,FIREBALL,MI,7/22/2004 23:30 +Lonoke,,VARIOUS,AR,7/23/2004 0:00 +San Bernardino,,FIREBALL,CA,7/23/2004 0:00 +Rialto,,,CA,7/23/2004 2:00 +Kirkland,RED,SPHERE,WA,7/23/2004 15:00 +Fort Worth,,,TX,7/23/2004 15:30 +Cleveland,,CIGAR,PA,7/23/2004 18:30 +Surfside Beach,,EGG,SC,7/23/2004 19:30 +Logansport,,VARIOUS,IN,7/23/2004 21:00 +Waldport,,CIGAR,OR,7/23/2004 21:00 +Houston,,FORMATION,TX,7/23/2004 21:12 +San Joaquin Valley,,LIGHT,CA,7/23/2004 21:45 +Atlanta,,SPHERE,GA,7/23/2004 21:50 +Hanford,RED,DISK,CA,7/23/2004 22:15 +Los Angeles,,FLASH,CA,7/23/2004 23:00 +Palm Springs,,CIRCLE,CA,7/24/2004 0:00 +U. S. Air Force base,,DISK,FL,7/24/2004 0:00 +Chadron,,LIGHT,NE,7/24/2004 22:00 +Frostburg,,,MD,7/24/2004 23:00 +Lynnwood,,OVAL,WA,7/24/2004 23:00 +Sioux City,,LIGHT,IA,7/24/2004 23:00 +Chicago,,,IL,7/25/2004 1:00 +El Cajon,,TRIANGLE,CA,7/25/2004 2:02 +Casa Grande,,,AZ,7/25/2004 4:15 +Mt. Pleasant,,LIGHT,MI,7/25/2004 11:00 +Huntsville,,TRIANGLE,AL,7/25/2004 14:50 +La Crosse,,CIGAR,WI,7/25/2004 17:00 +Houston,,RECTANGLE,TX,7/25/2004 18:30 +Eugene,RED,DIAMOND,OR,7/25/2004 20:00 +Lacey,,LIGHT,WA,7/25/2004 22:07 +Roseville,,CIRCLE,CA,7/26/2004 1:00 +San Jose,,,CA,7/26/2004 2:24 +Granite City,,CIGAR,IL,7/26/2004 13:00 +Henderson,,SPHERE,NV,7/26/2004 17:38 +Kirkland,ORANGE,SPHERE,WA,7/26/2004 19:30 +Tulsa,RED,CYLINDER,OK,7/26/2004 20:00 +Watertown,,LIGHT,SD,7/26/2004 22:27 +Everett,ORANGE,LIGHT,WA,7/26/2004 22:38 +Everett,ORANGE,LIGHT,WA,7/26/2004 22:38 +Hershey,,OTHER,NE,7/26/2004 23:40 +Pacific Grove,,OTHER,CA,7/27/2004 1:00 +New Mexico,,OTHER,NM,7/27/2004 1:30 +Ashland,,OVAL,MA,7/27/2004 2:00 +Duluth,,OTHER,MN,7/27/2004 2:00 +Mojave,,DIAMOND,CA,7/27/2004 2:30 +Nashville,RED,OTHER,TN,7/27/2004 18:00 +Woodinville,BLUE,TEARDROP,WA,7/27/2004 21:45 +Fresno,,DIAMOND,CA,7/28/2004 0:00 +Palm Springs,,DISK,CA,7/28/2004 5:00 +Helendale,,CIRCLE,CA,7/28/2004 20:45 +Garden City Beach,ORANGE,LIGHT,SC,7/28/2004 21:00 +Lexington,,OTHER,MI,7/28/2004 23:00 +Garden City Beach,ORANGE,LIGHT,TN,7/29/2004 0:00 +Puyallup,RED,FIREBALL,WA,7/29/2004 1:45 +Catheys Valley,,OTHER,CA,7/29/2004 6:10 +South Plainfield,,CONE,NJ,7/29/2004 11:00 +Allentown,,DISK,PA,7/29/2004 16:00 +Tomah,,FORMATION,WI,7/29/2004 17:00 +Vero Beach,,TRIANGLE,FL,7/29/2004 20:30 +Ocean Isle,RED,LIGHT,NC,7/29/2004 22:30 +Ocean Isle,RED,FIREBALL,NC,7/29/2004 23:00 +Lesage,,OTHER,WV,7/29/2004 23:45 +Omaha,ORANGE,LIGHT,NE,7/30/2004 0:25 +Akeley,,TRIANGLE,MN,7/30/2004 11:00 +Alexandria,,LIGHT,VA,7/30/2004 20:15 +Truckee,,OTHER,CA,7/30/2004 20:25 +Coeur d'Alene,,LIGHT,ID,7/30/2004 21:00 +Mississippi Gulf outlet,RED,CYLINDER,LA,7/30/2004 22:30 +Port Townsend,,TRIANGLE,WA,7/30/2004 22:47 +Seattle,YELLOW,TRIANGLE,WA,7/30/2004 22:50 +Coalinga,,TRIANGLE,CA,7/31/2004 0:30 +Galveston,,CIRCLE,TX,7/31/2004 1:30 +Boise,,LIGHT,ID,7/31/2004 2:45 +Cheney,,TRIANGLE,WA,7/31/2004 3:05 +Joplin,,OTHER,MO,7/31/2004 18:15 +Albuquerque,,CIRCLE,NM,7/31/2004 19:35 +E. Falmouth,,SPHERE,MA,7/31/2004 22:20 +Terrell,,,TX,8/1/2004 0:00 +Astoria,,OTHER,NY,8/1/2004 2:00 +Richmond,,LIGHT,VA,8/1/2004 2:00 +San Francisco,GREEN,FIREBALL,CA,8/1/2004 2:00 +Wrightsville Beach,,FORMATION,NC,8/1/2004 3:30 +Seattle,,,WA,8/1/2004 4:00 +Marietta,,LIGHT,GA,8/1/2004 6:05 +Windsor Locks,,OTHER,CT,8/1/2004 15:00 +Kent,,FIREBALL,WA,8/1/2004 21:00 +Queensbury,,LIGHT,NY,8/1/2004 21:00 +Orlando,,LIGHT,FL,8/2/2004 0:00 +Wrangell,,CIRCLE,AK,8/2/2004 0:00 +Portland,,,OR,8/2/2004 2:13 +Sedro Woolley,,CIRCLE,WA,8/2/2004 3:41 +Roy,,LIGHT,UT,8/2/2004 10:35 +Scio,,OVAL,NY,8/2/2004 12:00 +Sebastopol,RED ORANGE,TRIANGLE,CA,8/2/2004 20:00 +West Sacramento,BLUE,FLASH,CA,8/3/2004 2:00 +Tempe,,LIGHT,AZ,8/3/2004 3:33 +Camarillo,,VARIOUS,CA,8/3/2004 4:00 +Camarillo,,VARIOUS,CA,8/3/2004 4:30 +Stockbridge,,VARIOUS,GA,8/3/2004 5:16 +Albuquerque,,SPHERE,NM,8/3/2004 14:00 +Mojave,,SPHERE,CA,8/3/2004 15:30 +Pauma,,DISK,CA,8/3/2004 17:50 +Cape May,,DISK,NJ,8/3/2004 22:30 +Bloomfield Hills,,CONE,MI,8/4/2004 1:05 +Apple Valley,,SPHERE,MN,8/4/2004 16:19 +Shade Gap,,CIRCLE,PA,8/4/2004 21:00 +Aurora,,LIGHT,CO,8/4/2004 21:20 +Roseville,,FORMATION,MI,8/4/2004 22:00 +Cincinnati,,CIRCLE,OH,8/5/2004 0:00 +Lawrence,,CHEVRON,KS,8/5/2004 0:15 +Gladstone,,TRIANGLE,MI,8/5/2004 1:00 +Galloway,,,NJ,8/5/2004 3:49 +Truckee,,EGG,CA,8/5/2004 7:45 +Murfreesboro,,CYLINDER,TN,8/5/2004 17:45 +Phoenix,,LIGHT,AZ,8/5/2004 19:00 +Sparks,,DISK,NV,8/5/2004 21:00 +Eugene,,CHEVRON,OR,8/5/2004 22:00 +Prescott,,TRIANGLE,FL,8/5/2004 22:00 +Reno,RED,FORMATION,NV,8/5/2004 22:08 +Sparks,,OTHER,NV,8/5/2004 22:45 +Palm Springs,,OTHER,CA,8/6/2004 2:30 +Matunuck,,LIGHT,RI,8/6/2004 3:45 +Sedro Woolley,,,WA,8/6/2004 4:20 +Marion,,VARIOUS,MA,8/6/2004 20:00 +Norfolk,,CIGAR,VA,8/6/2004 20:00 +Huntsville,,LIGHT,AL,8/6/2004 22:15 +Utica,,,KY,8/6/2004 22:15 +Tualatin,,LIGHT,OR,8/6/2004 23:30 +Johnson City,,FLASH,TN,8/7/2004 0:00 +Valentine,,CIRCLE,TX,8/7/2004 0:24 +Phoenix,YELLOW,OVAL,AZ,8/7/2004 1:18 +El Cajon,,TRIANGLE,CA,8/7/2004 3:10 +Fort Worth,,SPHERE,TX,8/7/2004 3:45 +Hopkinton,,LIGHT,MA,8/7/2004 4:00 +New York City,,DISK,NY,8/7/2004 13:30 +West Hampton,,LIGHT,NY,8/7/2004 18:30 +Ridgeland,,CIRCLE,MS,8/7/2004 20:00 +Loveland,,FLASH,CO,8/7/2004 23:00 +Stevensville,,CIRCLE,MT,8/8/2004 0:00 +East Williston,,SPHERE,NY,8/8/2004 3:00 +Highland,,OTHER,IL,8/8/2004 3:00 +York,RED BLUE,OTHER,PA,8/8/2004 4:30 +Antioch,,FLASH,CA,8/8/2004 10:30 +Redmond,RED,CIRCLE,WA,8/8/2004 11:25 +Lancaster,,CIRCLE,PA,8/8/2004 13:45 +Wilmington,,SPHERE,DE,8/8/2004 15:20 +Fargo,,CIGAR,ND,8/8/2004 15:30 +Rochester,,CIGAR,NY,8/8/2004 18:00 +Sonora,,TRIANGLE,CA,8/8/2004 22:50 +Johnston,,DISK,RI,8/8/2004 23:00 +Memphis,,CHEVRON,TN,8/8/2004 23:00 +Shelton,ORANGE,LIGHT,WA,8/8/2004 23:30 +Loveland,,DISK,CO,8/9/2004 0:00 +Mesa,RED ORANGE,CIGAR,AZ,8/9/2004 0:40 +Portland,,TRIANGLE,OR,8/9/2004 0:50 +Loveland,RED,DISK,CO,8/9/2004 1:00 +Sacramento,,LIGHT,CA,8/9/2004 4:45 +Seattle,,CIGAR,WA,8/9/2004 8:00 +Kansas City,,SPHERE,MO,8/9/2004 10:30 +North Reading,,,MA,8/9/2004 19:00 +Baxter,,,TN,8/9/2004 20:15 +Conway,,,SC,8/9/2004 21:00 +Ridgecrest,,LIGHT,CA,8/9/2004 21:05 +Spanish Fork,,TRIANGLE,UT,8/9/2004 21:55 +Maricopa,,LIGHT,AZ,8/9/2004 22:30 +Lake Zurich,,FLASH,IL,8/9/2004 23:15 +Mayfield Heights,,,OH,8/10/2004 1:00 +Pottstown,,CIRCLE,PA,8/10/2004 2:26 +Winsted,,DISK,CT,8/10/2004 5:00 +Hoover,RED,TRIANGLE,AL,8/10/2004 21:23 +Sacramento,,FLASH,CA,8/10/2004 22:30 +Arlington,GREEN,EGG,TX,8/10/2004 23:55 +Wenatchee,,,WA,8/11/2004 0:00 +Mount Holly,,LIGHT,VT,8/11/2004 2:30 +Portland,,LIGHT,OR,8/11/2004 2:30 +Jefferson City,,LIGHT,MO,8/11/2004 5:30 +Kirkwood,,OTHER,MO,8/11/2004 11:35 +Hollidaysburg,,DISK,PA,8/11/2004 18:00 +Jackson,,DISK,MO,8/11/2004 19:30 +Denver,,FIREBALL,PA,8/11/2004 21:00 +Temple City,,FIREBALL,CA,8/11/2004 21:00 +Oroville,,TRIANGLE,WA,8/11/2004 21:15 +Guilderland,,TRIANGLE,NY,8/11/2004 21:30 +Bothell,,OTHER,WA,8/11/2004 22:30 +Orem,,OTHER,UT,8/11/2004 22:30 +Sterling,,,OK,8/11/2004 22:45 +Sterling,,TRIANGLE,OK,8/11/2004 22:50 +Lehigh Acres,,LIGHT,FL,8/11/2004 23:00 +Pocatello,,FORMATION,ID,8/11/2004 23:10 +Sedro Woolley,,,WA,8/11/2004 23:30 +Fort Yates,,,ND,8/12/2004 0:00 +Fort Worth,,SPHERE,TX,8/12/2004 0:03 +Barnegat Light,,OTHER,NJ,8/12/2004 2:00 +Bozeman,,LIGHT,MT,8/12/2004 2:00 +Columbus,,,OH,8/12/2004 5:27 +North Dallas,,EGG,TX,8/12/2004 9:45 +Eugene,,TRIANGLE,OR,8/12/2004 10:30 +Toledo,,LIGHT,OH,8/12/2004 19:45 +Miami,,FORMATION,FL,8/12/2004 20:00 +College Park,,DISK,MD,8/12/2004 21:20 +Klingerstown,,DISK,PA,8/12/2004 22:00 +Phoenix,,VARIOUS,AZ,8/12/2004 22:25 +Cleveland,,LIGHT,OH,8/12/2004 22:30 +Moorsville,,LIGHT,NC,8/12/2004 22:30 +Burke,,TRIANGLE,VA,8/12/2004 22:50 +Great Falls,,LIGHT,MT,8/12/2004 23:00 +Reinbeck,,,IA,8/12/2004 23:30 +Boulder,,LIGHT,MT,8/12/2004 23:57 +New York City,,OVAL,NY,8/13/2004 1:00 +Maryville,,OTHER,TN,8/13/2004 1:30 +Olympia,,,WA,8/13/2004 4:35 +Kansas City,,,MO,8/13/2004 6:35 +Longmont,,CIGAR,CO,8/13/2004 7:30 +Arlington,,SPHERE,TX,8/13/2004 15:00 +Gardiner,,DISK,NY,8/13/2004 18:13 +Mercer Island,,OTHER,WA,8/13/2004 21:35 +Connelsville,,,PA,8/14/2004 0:00 +Kenner,,LIGHT,LA,8/14/2004 1:07 +Baton Rouge,,CIRCLE,LA,8/14/2004 1:15 +Bismarck,GREEN BLUE,CIRCLE,ND,8/14/2004 4:15 +Modesto,,SPHERE,CA,8/14/2004 4:30 +Hampton,,LIGHT,GA,8/14/2004 5:00 +San Jose,,DIAMOND,CA,8/14/2004 9:07 +Albuquerque,ORANGE YELLOW,,NM,8/14/2004 16:00 +St Marie,,OTHER,CA,8/14/2004 16:30 +Walsenburg,,CIRCLE,CO,8/14/2004 16:30 +Mt. St. Helens Volcano,,DISK,WA,8/14/2004 17:00 +Westmont,,DISK,IL,8/14/2004 18:20 +Stow,,LIGHT,OH,8/14/2004 22:15 +Kennewick,,TRIANGLE,WA,8/14/2004 23:00 +North Branch,,FORMATION,MN,8/14/2004 23:00 +Longmont,,TRIANGLE,CO,8/14/2004 23:45 +Cashion,,TRIANGLE,AZ,8/15/2004 0:00 +Roswell,,DISK,NM,8/15/2004 0:16 +Eugene,,TRIANGLE,OR,8/15/2004 1:35 +La Mesa,,DISK,CA,8/15/2004 2:00 +Firebaugh Exit,,OTHER,CA,8/15/2004 2:50 +Savannah,,TRIANGLE,GA,8/15/2004 3:00 +Cranston,,FORMATION,RI,8/15/2004 3:30 +St. Paul,,TRIANGLE,MN,8/15/2004 5:00 +Ocean City,GREEN,FIREBALL,MD,8/15/2004 5:30 +Bear Valley,,SPHERE,CA,8/15/2004 7:45 +Burbank,,CIRCLE,CA,8/15/2004 10:00 +West Lebanon,,LIGHT,NH,8/15/2004 11:00 +St. Louis,,CYLINDER,MO,8/15/2004 14:00 +South Bend,,TRIANGLE,IN,8/15/2004 15:45 +Spring Valley,BLUE,LIGHT,CA,8/15/2004 19:30 +Denver,,TRIANGLE,CO,8/15/2004 21:00 +Lebanon,,LIGHT,NH,8/15/2004 21:30 +Pelzer,,OVAL,SC,8/15/2004 21:30 +Round Rock,,LIGHT,TX,8/15/2004 21:30 +Ahwatukee-Foothills,,LIGHT,AZ,8/15/2004 22:50 +Junction,,DISK,TX,8/15/2004 23:00 +St. Paul,,FORMATION,MN,8/15/2004 23:12 +Eldon,RED,LIGHT,MO,8/15/2004 23:35 +Bel Air,,DISK,MD,8/16/2004 0:00 +Salem Township,,LIGHT,MI,8/16/2004 0:00 +Palmdale,,TRIANGLE,CA,8/16/2004 1:00 +Plainfield,,FLASH,IL,8/16/2004 1:00 +San Bernardino,,OVAL,CA,8/16/2004 2:00 +Sherman Oaks,,OTHER,CA,8/16/2004 4:00 +Renton,,DISK,WA,8/16/2004 4:44 +Redmond,,LIGHT,WA,8/16/2004 5:00 +Pembroke Pines,,CROSS,FL,8/16/2004 6:04 +Meriden,,,CT,8/16/2004 10:30 +Anchorage,,CIRCLE,AK,8/16/2004 12:08 +Morgantown,,CIRCLE,WV,8/16/2004 18:00 +Gulf Shores,,TRIANGLE,AL,8/16/2004 19:00 +Phoenix,,TRIANGLE,AZ,8/16/2004 19:40 +Yukon,,OTHER,OK,8/16/2004 20:15 +Billings,,LIGHT,MT,8/16/2004 21:00 +Scituate,,LIGHT,RI,8/16/2004 21:28 +Maupin,,FLASH,OR,8/16/2004 21:30 +Kill Devil Hills,,CHEVRON,NC,8/16/2004 22:00 +Granite Falls,,VARIOUS,WA,8/16/2004 22:15 +Agawam,,TRIANGLE,MA,8/17/2004 2:30 +College Fjord,,VARIOUS,AK,8/17/2004 3:30 +Mesa,,TRIANGLE,AZ,8/17/2004 20:00 +Holladay,,LIGHT,UT,8/17/2004 20:56 +Monroe,,LIGHT,LA,8/17/2004 21:00 +Macomb,,LIGHT,IL,8/17/2004 21:30 +Scituate,,,MA,8/17/2004 21:30 +Fallon,,LIGHT,NV,8/17/2004 21:45 +Granite Falls,,TRIANGLE,WA,8/17/2004 22:29 +Weed,,VARIOUS,CA,8/18/2004 0:00 +Meriden,,OVAL,CT,8/18/2004 4:00 +Chula Vista,RED YELLOW BLUE,LIGHT,CA,8/18/2004 4:20 +Whitesboro,,LIGHT,NY,8/18/2004 14:00 +Plymouth,RED,OVAL,MN,8/18/2004 21:00 +Sultan,GREEN,LIGHT,WA,8/18/2004 21:10 +Mercer Island,GREEN,OVAL,WA,8/18/2004 21:15 +Issaquah,,FIREBALL,WA,8/18/2004 21:20 +Lincoln,RED,OTHER,NE,8/18/2004 22:00 +Cairo,,CIRCLE,NY,8/18/2004 23:00 +Marana,,TRIANGLE,AZ,8/19/2004 1:30 +Baltimore,,LIGHT,MD,8/19/2004 9:00 +Bloomington,BLUE,,MN,8/19/2004 9:00 +Yakima,YELLOW,FLASH,WA,8/19/2004 10:29 +St. Paul,,,MN,8/19/2004 11:00 +Minneapolis,,SPHERE,MN,8/19/2004 13:00 +Abita Springs,,TRIANGLE,LA,8/19/2004 15:05 +Minneapolis,,SPHERE,MN,8/19/2004 15:30 +Minneapolis area,,OTHER,MN,8/19/2004 15:50 +Minneapolis,,CIRCLE,MN,8/19/2004 16:00 +Rosemount,,LIGHT,MN,8/19/2004 16:00 +Saint Paul,,TEARDROP,MN,8/19/2004 16:30 +Chaska,,RECTANGLE,MN,8/19/2004 17:00 +Lakeville,,LIGHT,MN,8/19/2004 17:00 +Minneapolis,,,MN,8/19/2004 17:00 +Shorewood,,EGG,MN,8/19/2004 17:00 +St. Louis Park,,SPHERE,MN,8/19/2004 17:00 +St. Paul,,CIRCLE,MN,8/19/2004 17:00 +St. Paul,,LIGHT,MN,8/19/2004 17:00 +Minneapolis,,CIRCLE,MN,8/19/2004 18:00 +Waconia,,CIRCLE,MN,8/19/2004 18:20 +St. Paul,,CIRCLE,MN,8/19/2004 19:00 +Gary,,TRIANGLE,IN,8/19/2004 20:00 +River Falls,,TEARDROP,WI,8/19/2004 20:00 +Des Moines,,TRIANGLE,IA,8/19/2004 20:30 +Coolidge,,LIGHT,AZ,8/19/2004 21:00 +Pittsburgh,,LIGHT,PA,8/19/2004 21:00 +Sacramento,,,CA,8/19/2004 21:30 +Ann Arbor,,TRIANGLE,MI,8/19/2004 22:00 +Mule Creek Canyon,,FIREBALL,OR,8/19/2004 22:00 +York,,,PA,8/19/2004 22:10 +Orange Beach,,CIRCLE,AL,8/19/2004 22:15 +East Amherst,,DISK,NY,8/19/2004 22:30 +Greenwater,,FORMATION,WA,8/19/2004 22:55 +Paskenta,,TRIANGLE,CA,8/19/2004 23:15 +Albany,,TRIANGLE,OR,8/19/2004 23:30 +Los Angeles,,TRIANGLE,CA,8/19/2004 23:55 +Soap Lake,,TRIANGLE,WA,8/20/2004 10:15 +Tukwila,,LIGHT,WA,8/20/2004 11:00 +Taos,,DISK,NM,8/20/2004 11:30 +Oshkosh,,DISK,WI,8/20/2004 14:59 +Peekskill,,VARIOUS,NY,8/20/2004 15:00 +Pelican Lake,,CIRCLE,WI,8/20/2004 15:00 +Des Moines,,TRIANGLE,IA,8/20/2004 20:00 +New Haven,,TEARDROP,IN,8/20/2004 20:00 +Long Beach,YELLOW,LIGHT,WA,8/20/2004 20:45 +Bellevue,,FORMATION,WA,8/20/2004 21:00 +Chicago,,CYLINDER,IL,8/20/2004 21:50 +Atwater Village,,VARIOUS,CA,8/20/2004 22:00 +Bethel Island,,LIGHT,CA,8/20/2004 22:00 +Chicago,,,IL,8/20/2004 22:00 +Grand Marais,,OTHER,MN,8/20/2004 22:00 +Grants Pass,RED,CIRCLE,OR,8/20/2004 22:00 +New York City,,OVAL,NY,8/20/2004 22:00 +Salida,,TRIANGLE,CO,8/20/2004 22:00 +Chicago,,TRIANGLE,IL,8/20/2004 22:15 +Lake in the Hills,,TRIANGLE,IL,8/20/2004 22:27 +Newport,RED,FIREBALL,OR,8/20/2004 22:30 +Sedro Woolley,,CIRCLE,WA,8/20/2004 22:30 +Tinley Park,,,IL,8/21/2004 0:00 +Tinley Park,,LIGHT,IL,8/21/2004 0:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 1:30 +Milwaukee,,FORMATION,WI,8/21/2004 3:30 +Spokane,,LIGHT,WA,8/21/2004 4:00 +Long Beach,,LIGHT,WA,8/21/2004 8:30 +Vienna,,DIAMOND,VA,8/21/2004 9:00 +Tinley Park,RED,FORMATION,IL,8/21/2004 20:50 +Houston,,LIGHT,TX,8/21/2004 21:00 +Tinley Park,RED,CIRCLE,IL,8/21/2004 21:00 +Hawthorn Woods,RED,TRIANGLE,IL,8/21/2004 21:30 +Tinley Park,RED,,IL,8/21/2004 21:30 +Frankfort,,TRIANGLE,IL,8/21/2004 22:00 +Houston,ORANGE,LIGHT,TX,8/21/2004 22:00 +Houston,ORANGE,LIGHT,TX,8/21/2004 22:00 +Oak Forest,,TRIANGLE,IL,8/21/2004 22:00 +Orland Park,,FORMATION,IL,8/21/2004 22:00 +Tinley Park,RED,FIREBALL,IL,8/21/2004 22:00 +Tinley Park,RED,FORMATION,IL,8/21/2004 22:00 +Tinley Park,,LIGHT,IL,8/21/2004 22:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 22:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 22:00 +Tinley Park,RED,OVAL,IL,8/21/2004 22:00 +Tinley Park,,TRIANGLE,IL,8/21/2004 22:00 +Manchester,YELLOW,LIGHT,NH,8/21/2004 22:05 +Madison,,LIGHT,WI,8/21/2004 22:10 +Tinley Park,RED,LIGHT,IL,8/21/2004 22:20 +Frankfort,RED,,IL,8/21/2004 22:30 +New Fairfield,,TRIANGLE,CT,8/21/2004 22:30 +Tinley Park,RED,CIRCLE,IL,8/21/2004 22:30 +Tinley Park,RED,CIRCLE,IL,8/21/2004 22:30 +Tinley Park,RED,FORMATION,IL,8/21/2004 22:30 +Tinley Park,RED,LIGHT,IL,8/21/2004 22:30 +Tinley Park,BLUE,TRIANGLE,IL,8/21/2004 22:30 +Utica,,TRIANGLE,NY,8/21/2004 22:30 +Somerset,,FORMATION,NJ,8/21/2004 22:35 +Hunter,,TRIANGLE,NY,8/21/2004 22:40 +Matteson,RED,CIRCLE,IL,8/21/2004 22:50 +Orland Park,RED,LIGHT,IL,8/21/2004 23:00 +Orland Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,,,IL,8/21/2004 23:00 +Tinley Park,,CIRCLE,IL,8/21/2004 23:00 +Tinley Park,RED,FORMATION,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED,LIGHT,IL,8/21/2004 23:00 +Tinley Park,RED ORANGE,LIGHT,IL,8/21/2004 23:00 +San Jose,,FORMATION,CA,8/21/2004 23:15 +Buffalo,,CIRCLE,MO,8/21/2004 23:30 +Oak Forest,RED,VARIOUS,IL,8/21/2004 23:30 +Tinley Park,RED,,IL,8/21/2004 23:30 +Tinley Park,RED,TRIANGLE,IL,8/21/2004 23:30 +Boise,,OVAL,ID,8/22/2004 1:00 +Dexter,,LIGHT,KS,8/22/2004 1:00 +Falls City,,TRIANGLE,NE,8/22/2004 10:55 +Houston area,,TRIANGLE,TX,8/22/2004 11:30 +Santee,,CIRCLE,CA,8/22/2004 12:30 +Woodbury,,,CT,8/22/2004 13:00 +Woodbury,,DISK,CT,8/22/2004 13:00 +Rocklin,,CIRCLE,CA,8/22/2004 18:10 +Atkinson,,LIGHT,IL,8/22/2004 19:50 +Bethel Park,,LIGHT,PA,8/22/2004 21:00 +Pearland,ORANGE,CIGAR,TX,8/22/2004 21:00 +Palermo,,TRIANGLE,ME,8/22/2004 22:00 +Lovell,,LIGHT,ME,8/22/2004 23:00 +Phoenixville,,LIGHT,PA,8/23/2004 0:00 +Denver,,LIGHT,CO,8/23/2004 1:00 +Redondo Beach,RED,FORMATION,CA,8/23/2004 4:45 +Englewood,,SPHERE,CO,8/23/2004 14:55 +Tega Cay,,TEARDROP,SC,8/23/2004 17:45 +Midlothian,,,IL,8/23/2004 19:00 +Silver City,ORANGE,LIGHT,NM,8/23/2004 21:00 +Greenville,,TRIANGLE,SC,8/23/2004 23:10 +Sea Isle,,LIGHT,NJ,8/24/2004 1:15 +San Diego,,LIGHT,CA,8/24/2004 4:00 +Long Beach,,LIGHT,MS,8/24/2004 5:45 +Denver,,CYLINDER,CO,8/24/2004 15:30 +Clermont,,LIGHT,GA,8/24/2004 19:00 +Millersville,,TRIANGLE,TN,8/24/2004 21:24 +Springview,,LIGHT,NE,8/24/2004 22:00 +Susanville,,VARIOUS,CA,8/24/2004 23:00 +West Chester,,TRIANGLE,PA,8/24/2004 23:02 +Canyon,,OTHER,TX,8/24/2004 23:40 +Carlsbad,,DISK,CA,8/25/2004 10:10 +Los Angeles,BLUE,VARIOUS,CA,8/25/2004 12:45 +Midland,,OVAL,TX,8/25/2004 17:11 +Topeka,,CYLINDER,KS,8/25/2004 18:00 +Haltom City,,LIGHT,TX,8/25/2004 21:00 +Indianapolis,RED,,IN,8/25/2004 22:00 +Madison,,TRIANGLE,CT,8/25/2004 22:00 +Luling,RED ORANGE GREEN BLUE,CIRCLE,LA,8/25/2004 22:45 +Social Hill,,CIGAR,AR,8/25/2004 22:50 +Haltom City,,LIGHT,TX,8/25/2004 23:00 +Vienna,,TRIANGLE,MO,8/25/2004 23:00 +Danville,BLUE,,VA,8/26/2004 0:15 +Flagler,ORANGE,LIGHT,FL,8/26/2004 5:03 +Sunol,,EGG,CA,8/26/2004 14:35 +St. James,,VARIOUS,MO,8/26/2004 19:35 +Baton Rouge,,,LA,8/26/2004 20:00 +Coppell,,TRIANGLE,TX,8/26/2004 20:35 +Chatsworth,,,NJ,8/26/2004 22:00 +Terre Haute,,LIGHT,IN,8/26/2004 22:00 +Westerly,,TRIANGLE,RI,8/26/2004 22:13 +Garden Grove,,FIREBALL,CA,8/26/2004 23:00 +Paterson,,DISK,CA,8/27/2004 14:00 +Celoron,BLUE,TRIANGLE,NY,8/27/2004 15:00 +Kenner,,TEARDROP,LA,8/27/2004 19:30 +Beaumont,,LIGHT,TX,8/27/2004 21:00 +Hampton,,LIGHT,VA,8/27/2004 22:30 +West Palm Beach,,LIGHT,FL,8/27/2004 23:00 +Piscataquis County,,CIRCLE,ME,8/28/2004 18:30 +Tacoma,,LIGHT,WA,8/28/2004 19:45 +Raleigh,,LIGHT,NC,8/28/2004 21:30 +Liberty Hill,,VARIOUS,TX,8/29/2004 4:00 +Vienna,,SPHERE,MO,8/29/2004 6:45 +Corinth,,TRIANGLE,KY,8/29/2004 10:35 +Pahrump,,OTHER,NV,8/29/2004 11:00 +New York City,,TRIANGLE,NY,8/29/2004 13:30 +New York City,,CIRCLE,NY,8/29/2004 15:15 +West Los Angeles,,DIAMOND,CA,8/29/2004 18:00 +Fremont,,RECTANGLE,CA,8/29/2004 19:45 +Baker,,LIGHT,LA,8/29/2004 21:45 +St. Charles,,TRIANGLE,MO,8/30/2004 4:20 +Sedona,,LIGHT,AZ,8/30/2004 5:00 +Englewood,,SPHERE,CO,8/30/2004 14:10 +Cocoa Beach,,OVAL,FL,8/30/2004 18:30 +Fresno,,DISK,CA,8/30/2004 20:30 +Washington,,,IL,8/30/2004 20:45 +Nordland,,FORMATION,WA,8/30/2004 21:00 +San Jaun Batista,,OTHER,CA,8/30/2004 21:20 +Albuquerque,,,NM,8/30/2004 21:45 +Durham,,OVAL,NC,8/30/2004 22:00 +Boynton Beach,RED YELLOW,EGG,FL,8/30/2004 23:15 +Sea Girt,,CIRCLE,NJ,8/31/2004 1:00 +Santa Fe,,OTHER,NM,8/31/2004 2:00 +Chicago,,LIGHT,IL,8/31/2004 6:20 +Raynham,,OTHER,MA,8/31/2004 7:30 +Danville,,CIRCLE,CA,8/31/2004 14:00 +Albuquerque,,CIRCLE,NM,8/31/2004 16:10 +Gulf Breeze,,OTHER,FL,8/31/2004 19:51 +Tinley Park,,LIGHT,IL,8/31/2004 19:54 +Herkimer,,OTHER,NY,8/31/2004 20:00 +Bristol,,OTHER,TN,8/31/2004 20:30 +Morgantown,,OTHER,WV,8/31/2004 20:30 +Palm Bay,,OTHER,FL,8/31/2004 20:30 +Salem,,OTHER,CT,8/31/2004 20:30 +Verona,,OTHER,NY,8/31/2004 20:30 +Bristol,,OTHER,TN,8/31/2004 20:35 +Kingsville,,OTHER,OH,8/31/2004 20:37 +Kingsville,,OTHER,OH,8/31/2004 20:40 +Malden Bridge,,DISK,NY,8/31/2004 20:45 +Mount Carmel,,OTHER,PA,8/31/2004 20:45 +Mount Carmel,,OTHER,PA,8/31/2004 20:45 +Neptune,,LIGHT,NJ,8/31/2004 20:45 +Kennett Square,,VARIOUS,PA,8/31/2004 20:50 +Somerville,,OTHER,NJ,8/31/2004 20:50 +Troy,,OTHER,KY,8/31/2004 20:50 +Cinnaminson,,FORMATION,NJ,8/31/2004 20:55 +Aquebogue,,OTHER,NY,8/31/2004 21:00 +Beaver,,OTHER,WV,8/31/2004 21:00 +Boonsboro,,OTHER,MD,8/31/2004 21:00 +Elkins,,VARIOUS,WV,8/31/2004 21:00 +Endwell,,OTHER,NY,8/31/2004 21:00 +Galeton,,EGG,PA,8/31/2004 21:00 +Montpelier,,OTHER,VT,8/31/2004 21:00 +New Philadelphia,,OTHER,OH,8/31/2004 21:00 +New York City,GREEN,LIGHT,NY,8/31/2004 21:00 +North Kingstown,,LIGHT,RI,8/31/2004 21:00 +Reynoldsburg,,CYLINDER,OH,8/31/2004 21:00 +Romulus,,CONE,NY,8/31/2004 21:00 +Wakefield,,OTHER,NH,8/31/2004 21:00 +Wakefield,,VARIOUS,NH,8/31/2004 21:00 +Mount Rainer,,VARIOUS,MD,8/31/2004 21:05 +Bellefonte,,OTHER,PA,8/31/2004 21:10 +Chillicothe,,FIREBALL,OH,8/31/2004 21:10 +Au Sable Forks,,OTHER,NY,8/31/2004 21:15 +Easton,,TRIANGLE,PA,8/31/2004 21:15 +Fort Wayne,,TRIANGLE,IN,8/31/2004 21:15 +Nashville,,TRIANGLE,TN,8/31/2004 21:16 +Ohio,,OTHER,OH,8/31/2004 21:20 +Choctaw,,CIRCLE,OK,8/31/2004 21:30 +Wellsboro,,OTHER,PA,8/31/2004 21:30 +Willowick,,LIGHT,OH,8/31/2004 21:30 +Cottage Grove,,OTHER,OR,8/31/2004 23:00 +Hillsboro,,LIGHT,OH,9/1/2004 2:00 +New York City,,,NY,9/1/2004 2:30 +Brooklyn,,SPHERE,CT,9/1/2004 3:00 +Phoenix,,TRIANGLE,AZ,9/1/2004 3:00 +Evergreen,,CIRCLE,CO,9/1/2004 10:00 +Pie Town,,SPHERE,NM,9/1/2004 11:04 +New York City,,OVAL,NY,9/1/2004 18:00 +Linglestown,,TRIANGLE,PA,9/1/2004 20:00 +Wisconsin,,LIGHT,WI,9/1/2004 20:30 +Providence,,EGG,RI,9/1/2004 20:34 +Brighton,,LIGHT,MA,9/1/2004 20:45 +Destin,,LIGHT,FL,9/1/2004 22:00 +Monticello,,,IN,9/1/2004 22:00 +Arcadia,,LIGHT,CA,9/1/2004 22:45 +Franklinton,,CIRCLE,LA,9/1/2004 23:00 +Ashgrove,,,MO,9/1/2004 23:54 +National Park,,LIGHT,CA,9/2/2004 2:00 +St. Paul,BLUE,LIGHT,MN,9/2/2004 19:45 +Whittier,,LIGHT,CA,9/2/2004 20:03 +Kirkland,,LIGHT,WA,9/2/2004 20:15 +Fort Lauderdale,,,FL,9/2/2004 21:00 +Kirkland,,OVAL,WA,9/2/2004 21:00 +Sisseton,,FIREBALL,SD,9/2/2004 22:43 +Weehawken,,LIGHT,NJ,9/3/2004 1:00 +Vernon,,TRIANGLE,CT,9/3/2004 19:30 +River Falls,,TEARDROP,WI,9/3/2004 20:00 +Hegins,,FIREBALL,PA,9/3/2004 20:20 +Tacoma,,LIGHT,WA,9/3/2004 20:30 +Hegins,,FIREBALL,PA,9/3/2004 21:20 +Dripping Springs,,CIRCLE,TX,9/3/2004 21:30 +Hayward,,LIGHT,CA,9/3/2004 22:00 +Englewood,,OTHER,FL,9/3/2004 22:20 +Newark,,OVAL,NJ,9/3/2004 22:45 +Winchester,,LIGHT,VA,9/3/2004 23:00 +Palm Harbor,,TRIANGLE,FL,9/3/2004 23:40 +Kalispell,,TRIANGLE,MT,9/4/2004 0:00 +Pyramid Lake,,LIGHT,NV,9/4/2004 0:00 +St. Augustine,,CYLINDER,FL,9/4/2004 5:30 +Watsonville,RED,LIGHT,CA,9/4/2004 6:00 +Huntington Beach,RED,LIGHT,CA,9/4/2004 6:30 +Glendale,,TEARDROP,AZ,9/4/2004 9:00 +Murrieta,,TRIANGLE,CA,9/4/2004 11:00 +Sayreville,,RECTANGLE,NJ,9/4/2004 11:15 +Leicester,,FIREBALL,NC,9/4/2004 14:00 +Garden Grove,,,CA,9/4/2004 16:30 +Baton Rouge,,CIGAR,LA,9/4/2004 17:30 +Austin,,,TX,9/4/2004 18:00 +Austin,,,TX,9/4/2004 18:00 +Oakland,RED,LIGHT,CA,9/4/2004 18:00 +Bristol,,OTHER,TN,9/4/2004 19:54 +Mojave,,LIGHT,CA,9/4/2004 20:00 +Monticello,,,IN,9/4/2004 21:30 +Ludington,,DISK,MI,9/5/2004 0:30 +Tess Corners,,FORMATION,WI,9/5/2004 0:43 +Johnson City,,FIREBALL,TN,9/5/2004 2:00 +Ocean City,,,MD,9/5/2004 3:28 +Lewisville,,,TX,9/5/2004 4:00 +Lewisville,RED,OVAL,TX,9/5/2004 11:30 +Bainbridge Island,,SPHERE,WA,9/5/2004 13:00 +Murrieta,,OTHER,CA,9/5/2004 19:30 +San Francisco,,LIGHT,CA,9/5/2004 22:00 +Hidalgo,,FIREBALL,TX,9/5/2004 22:10 +Brackettville,ORANGE GREEN,FIREBALL,TX,9/5/2004 22:30 +Titusville,,LIGHT,PA,9/5/2004 23:10 +Lakeville,,,MN,9/6/2004 0:00 +Lakeland,,LIGHT,FL,9/6/2004 0:35 +Cleveland,,TRIANGLE,OH,9/6/2004 3:00 +Waynesboro,RED,CIGAR,VA,9/6/2004 4:00 +New York City,,LIGHT,NY,9/6/2004 5:00 +Austin,,TRIANGLE,TX,9/6/2004 6:05 +Harbor Springs,,LIGHT,MI,9/6/2004 10:30 +Corpus Christi,,TRIANGLE,TX,9/6/2004 11:40 +Glendale,,SPHERE,AZ,9/6/2004 13:30 +Zelienople,,OTHER,PA,9/6/2004 16:45 +Bedford,,SPHERE,TX,9/6/2004 19:00 +Chesterton,,TRIANGLE,IN,9/6/2004 20:00 +Highland,,DISK,CA,9/6/2004 20:00 +Seattle,,TEARDROP,WA,9/6/2004 20:10 +Jackson,RED BLUE,TRIANGLE,KY,9/6/2004 21:00 +Dale Hollow Lake,,,TN,9/6/2004 22:00 +Littleton,,OTHER,CO,9/6/2004 22:05 +West Palm Beach,,OVAL,FL,9/6/2004 23:00 +Montrose,,,CO,9/7/2004 0:00 +Depew,,DISK,NY,9/7/2004 4:15 +Providence,,FORMATION,RI,9/7/2004 4:45 +Lakeville,,,MN,9/7/2004 12:00 +Torrington,,SPHERE,CT,9/7/2004 20:30 +Davenport,,,IA,9/7/2004 21:00 +Fort Smith,,TRIANGLE,AR,9/7/2004 21:15 +Jackson,,FORMATION,MI,9/7/2004 21:45 +Pacheco,,VARIOUS,CA,9/8/2004 3:14 +Waikele,,OVAL,HI,9/8/2004 12:00 +Euless,,DISK,TX,9/8/2004 15:45 +Maywood,,TRIANGLE,CA,9/8/2004 19:00 +Austin,,FORMATION,TX,9/8/2004 21:00 +Puxico,,TRIANGLE,MO,9/8/2004 21:00 +Park City,,OTHER,UT,9/8/2004 23:00 +Lantana,,,FL,9/9/2004 2:30 +Whangarei,,OTHER,NY,9/9/2004 15:30 +Raeford,,TEARDROP,NC,9/9/2004 19:30 +Fresno,,LIGHT,CA,9/9/2004 20:03 +Racine,,LIGHT,WI,9/9/2004 20:35 +Racine,,RECTANGLE,WI,9/9/2004 20:35 +Natchez,,,MS,9/9/2004 21:00 +Lincoln,,,NE,9/9/2004 21:05 +Lincolnton,,FORMATION,GA,9/9/2004 21:30 +Corunna,,TRIANGLE,MI,9/9/2004 22:00 +Kansas City,,DISK,MO,9/9/2004 23:00 +North Hollywood,RED BLUE,TRIANGLE,CA,9/10/2004 2:00 +Asheboro,,OVAL,NC,9/10/2004 12:00 +Ellicott City,,DISK,MD,9/10/2004 14:20 +Alpharetta,,OVAL,GA,9/10/2004 18:30 +Mastic Beach,,LIGHT,NY,9/10/2004 20:00 +Sonora,,DISK,CA,9/10/2004 20:30 +Marblehead,,SPHERE,MA,9/10/2004 22:00 +Mount Cobb,,,PA,9/10/2004 22:00 +Darien Center,,LIGHT,NY,9/10/2004 22:15 +Vine Grove,,LIGHT,KY,9/10/2004 22:45 +Columbia,,LIGHT,MO,9/10/2004 23:30 +Germantown,RED,OTHER,OH,9/11/2004 0:00 +Keeseville,,OVAL,NY,9/11/2004 2:00 +Little Rock,,TRIANGLE,AR,9/11/2004 16:45 +Madras,,CIRCLE,OR,9/11/2004 20:00 +Waltham,,DISK,MA,9/11/2004 20:00 +Parma,,LIGHT,OH,9/11/2004 20:40 +Fair Haven,,FIREBALL,NY,9/11/2004 20:45 +Los Angeles,,OVAL,CA,9/11/2004 21:00 +Los Angeles,,OVAL,CA,9/11/2004 21:00 +Ewing,RED BLUE,FLASH,NJ,9/11/2004 21:15 +Riverdale,,LIGHT,UT,9/11/2004 22:00 +Saratoga,,,NY,9/11/2004 22:00 +Anoka,,LIGHT,MN,9/11/2004 22:30 +Embden,,TRIANGLE,ME,9/11/2004 23:00 +Findlay,,FLASH,OH,9/11/2004 23:30 +Lithia Springs,YELLOW GREEN BLUE,OVAL,GA,9/12/2004 0:00 +Lead,,FLASH,SD,9/12/2004 1:00 +Fairbanks,,OVAL,AK,9/12/2004 3:00 +Palo Alto,,TRIANGLE,CA,9/12/2004 3:00 +Seattle,,CIGAR,WA,9/12/2004 11:11 +Auburn Hills,,SPHERE,MI,9/12/2004 17:30 +Torrington,,LIGHT,CT,9/12/2004 20:00 +Sunnyside,,LIGHT,WA,9/12/2004 20:40 +Attalla,,TRIANGLE,AL,9/12/2004 21:00 +North Bend,,,OR,9/12/2004 21:10 +Sequim,,,WA,9/12/2004 21:30 +Casselberry,,DISK,FL,9/13/2004 17:00 +Kingwood,,TRIANGLE,TX,9/13/2004 19:15 +Honolulu,,SPHERE,HI,9/13/2004 19:55 +Franklin,,LIGHT,MA,9/13/2004 20:25 +Harleysville,,,PA,9/13/2004 20:25 +South Phoenix,,LIGHT,AZ,9/13/2004 20:25 +Colorado Springs,,CHEVRON,CO,9/13/2004 20:30 +Los Angeles,,FIREBALL,CA,9/13/2004 21:05 +Tucson,ORANGE,VARIOUS,AZ,9/14/2004 18:30 +Dallas,,LIGHT,TX,9/14/2004 20:45 +Irving,,VARIOUS,TX,9/14/2004 22:15 +Rockland,,TRIANGLE,ME,9/14/2004 22:30 +Carroll,,TRIANGLE,IA,9/14/2004 23:50 +La Grande,,VARIOUS,OR,9/15/2004 0:00 +Independence,,TRIANGLE,MO,9/15/2004 2:00 +Minot,,OTHER,ND,9/15/2004 2:00 +Antioch,,DISK,CA,9/15/2004 6:55 +Union,,DISK,MO,9/15/2004 12:00 +Desert,,TRIANGLE,CA,9/15/2004 15:00 +Charlotte,,RECTANGLE,NC,9/15/2004 17:05 +Eureka,,TRIANGLE,CA,9/15/2004 17:45 +Oklahoma City,,LIGHT,OK,9/15/2004 19:00 +Warren,,RECTANGLE,OH,9/15/2004 19:30 +Robinson,,CIRCLE,TX,9/15/2004 20:30 +Salinas,,LIGHT,CA,9/15/2004 20:35 +Myrtle Beach,,,SC,9/15/2004 21:00 +Omaha,,SPHERE,NE,9/15/2004 21:00 +Copperas Cove,,CIGAR,TX,9/15/2004 21:30 +Rancho Cucamonga,,FIREBALL,CA,9/15/2004 21:30 +Jamestown,,TRIANGLE,ND,9/15/2004 21:45 +Willow River,,,MN,9/15/2004 22:00 +Gainesville,,LIGHT,FL,9/15/2004 22:30 +Lewiston,,TRIANGLE,ME,9/15/2004 23:00 +Ravenna,,LIGHT,OH,9/16/2004 1:00 +Topanga,RED,,CA,9/16/2004 1:00 +Frostburg,,LIGHT,MD,9/16/2004 4:30 +Charlotte,RED,DISK,NC,9/16/2004 6:00 +Wallingford,,SPHERE,VT,9/16/2004 7:50 +Truth or Consequences,,LIGHT,NM,9/16/2004 19:00 +Grand Junction,,DISK,CO,9/16/2004 19:15 +Albuquerque,,LIGHT,NM,9/16/2004 19:30 +Marysville,,TRIANGLE,WA,9/16/2004 20:10 +Myrtle Beach,RED,,SC,9/16/2004 20:15 +Grand Rapids,,SPHERE,MN,9/16/2004 20:30 +Pasadena,,,CA,9/16/2004 20:35 +Boss,ORANGE,LIGHT,MO,9/16/2004 21:00 +Poulsbo,,LIGHT,WA,9/16/2004 21:00 +Gatesville,,OVAL,NC,9/17/2004 0:00 +China Lake,,FORMATION,CA,9/17/2004 1:00 +Austin,,TRIANGLE,TX,9/17/2004 3:47 +Bremerton,,SPHERE,WA,9/17/2004 5:00 +Grand Junction,,OVAL,CO,9/17/2004 5:30 +Scottsdale,,SPHERE,AZ,9/17/2004 7:30 +Phoenix,,SPHERE,AZ,9/17/2004 7:45 +New York City,,DISK,NY,9/17/2004 12:00 +Littleton,,CIGAR,CO,9/17/2004 13:50 +Dugas,,RECTANGLE,AZ,9/17/2004 19:30 +San Antonio,,TRIANGLE,TX,9/17/2004 21:09 +Sonora,,TRIANGLE,CA,9/17/2004 22:14 +Duluth,,DISK,MN,9/17/2004 23:00 +Eureka,RED,TRIANGLE,CA,9/17/2004 23:30 +Rancho Cucamonga,RED,DISK,CA,9/18/2004 0:00 +Marion,,DISK,MI,9/18/2004 1:00 +Lyndhurst,,LIGHT,OH,9/18/2004 3:00 +Spring Grove,,DIAMOND,MN,9/18/2004 3:15 +Voorhees,,TRIANGLE,NJ,9/18/2004 4:25 +Chicago,,,IL,9/18/2004 6:31 +Hermitage,,,MO,9/18/2004 12:00 +Norcross,,SPHERE,GA,9/18/2004 15:00 +Sedona,,TRIANGLE,MT,9/18/2004 17:00 +Chicago,,CIRCLE,IL,9/18/2004 17:30 +Prescott,,,AZ,9/18/2004 18:15 +Seattle,,TRIANGLE,WA,9/18/2004 19:45 +Buffalo,,LIGHT,NY,9/18/2004 21:30 +Placitas,,DISK,NM,9/18/2004 21:30 +Buffalo,,FORMATION,NY,9/18/2004 22:30 +State College,,LIGHT,PA,9/18/2004 22:30 +Blue Mound,BLUE,CIGAR,IL,9/19/2004 13:00 +Canton,,CIGAR,OH,9/19/2004 16:35 +Waynesburg,,CIGAR,OH,9/19/2004 16:35 +Temecula,,LIGHT,CA,9/19/2004 20:00 +Manchester,,FLASH,NH,9/19/2004 20:35 +Conway,,LIGHT,SC,9/19/2004 21:25 +Huron,,LIGHT,OH,9/19/2004 22:00 +Johnson City,,EGG,TN,9/19/2004 22:00 +Buffalo,,LIGHT,NY,9/19/2004 23:30 +Tryon,,CIGAR,NC,9/20/2004 0:00 +Pine Bush,,RECTANGLE,NY,9/20/2004 2:00 +Chandler,,OTHER,AZ,9/20/2004 5:30 +San Francisco,,OVAL,CA,9/20/2004 9:30 +Crozet,,SPHERE,VA,9/20/2004 13:30 +Berkeley,,CIGAR,CA,9/20/2004 13:40 +Coatesville,,CROSS,PA,9/20/2004 19:00 +Prescott,,LIGHT,AZ,9/20/2004 19:00 +Ft. Bragg,,OTHER,CA,9/20/2004 19:20 +Shumway,,LIGHT,IL,9/20/2004 19:30 +Whitney,RED,,TX,9/20/2004 21:15 +Watauga,,DISK,TN,9/20/2004 21:20 +Florence,,TRIANGLE,SC,9/20/2004 21:30 +Edmonds,,TRIANGLE,WA,9/20/2004 22:00 +Southern Pines,,FLASH,NC,9/20/2004 22:20 +San Diego,,FIREBALL,CA,9/20/2004 23:00 +Cincinnati,,FIREBALL,OH,9/21/2004 2:42 +Portland,YELLOW,CIRCLE,OR,9/21/2004 5:30 +Raleigh,,FLASH,NC,9/21/2004 8:30 +Simsbury,,OTHER,CT,9/21/2004 18:15 +Columbus,,DISK,OH,9/21/2004 19:30 +Eagle,,OVAL,WI,9/21/2004 20:25 +Levasy,,OVAL,MO,9/21/2004 20:38 +Bremerton,,SPHERE,WA,9/21/2004 20:40 +Hartville,RED GREEN BLUE,LIGHT,MO,9/21/2004 21:00 +Brick,,TRIANGLE,NJ,9/21/2004 21:20 +Morehead,,OVAL,KY,9/21/2004 22:00 +State College,,LIGHT,PA,9/21/2004 22:00 +Browns Point,,LIGHT,WA,9/21/2004 22:15 +Toledo-Cleveland,,CIRCLE,OH,9/22/2004 4:00 +Milton,,,KY,9/22/2004 4:15 +Novato,,TEARDROP,CA,9/22/2004 6:45 +Plover,,OTHER,WI,9/22/2004 9:00 +Hollister,,OTHER,CA,9/22/2004 10:00 +Eastlake,BLUE,LIGHT,OH,9/22/2004 12:30 +Petaluma,,FORMATION,CA,9/22/2004 13:15 +Mason,,SPHERE,OH,9/22/2004 18:00 +Memphis,,SPHERE,TX,9/22/2004 19:00 +Pacific Palisades,,VARIOUS,CA,9/22/2004 19:30 +Los Angeles,,LIGHT,CA,9/22/2004 20:10 +South Phoenix,,LIGHT,AZ,9/22/2004 20:30 +Coloma,YELLOW,LIGHT,WI,9/22/2004 21:00 +Paramount,,EGG,CA,9/22/2004 22:00 +Marsing,,,ID,9/22/2004 22:10 +Indianapolis,YELLOW,FLASH,IN,9/22/2004 22:25 +Columbus Junction,,LIGHT,IA,9/22/2004 23:30 +Brookpark,,TRIANGLE,OH,9/22/2004 23:45 +Felton,,LIGHT,CA,9/23/2004 4:00 +Bowie,,DISK,AZ,9/23/2004 4:23 +Yarmouth,,LIGHT,MA,9/23/2004 20:30 +don't know,,SPHERE,NJ,9/23/2004 20:50 +Phoenix,,,AZ,9/23/2004 21:30 +Twin Falls,ORANGE,OTHER,ID,9/23/2004 21:54 +Charlotte,,LIGHT,NC,9/24/2004 2:00 +St. Augustine,,CIGAR,FL,9/24/2004 17:30 +Oak Forest,ORANGE,DISK,IL,9/24/2004 18:35 +Strattanville,,DISK,PA,9/24/2004 20:19 +Libertyville,,CIRCLE,IL,9/24/2004 22:10 +Tess Corners,,LIGHT,WI,9/25/2004 0:20 +Windsor,,TRIANGLE,CO,9/25/2004 1:30 +Detroit,,LIGHT,MI,9/25/2004 6:00 +Gibson City,,OVAL,IL,9/25/2004 12:00 +St. Louis Park,,OVAL,MN,9/25/2004 13:00 +Chicago,,OVAL,IL,9/25/2004 17:30 +Bellevue,,,WA,9/25/2004 17:45 +Chicago,BLUE,CIRCLE,IL,9/25/2004 19:30 +Lizton,BLUE,LIGHT,IN,9/25/2004 20:00 +Snoqualmie Pass,,SPHERE,WA,9/25/2004 20:00 +Hartland,,LIGHT,MI,9/26/2004 0:00 +Bardstown,,LIGHT,KY,9/26/2004 0:30 +Batavia,,TEARDROP,NY,9/26/2004 8:05 +Kokomo,YELLOW,LIGHT,IN,9/26/2004 10:41 +Fairview,,CYLINDER,UT,9/26/2004 14:25 +Englewood,,SPHERE,CO,9/26/2004 18:15 +Portland,RED,LIGHT,OR,9/26/2004 20:15 +Three Rivers,,LIGHT,MA,9/26/2004 20:30 +Tyro,,FLASH,NC,9/26/2004 20:35 +Santa Clara,,LIGHT,CA,9/26/2004 20:43 +Middle Island,,LIGHT,NY,9/26/2004 22:15 +Philadelphia,,FORMATION,PA,9/26/2004 22:15 +Chicago,,LIGHT,IL,9/27/2004 10:50 +Thorp,,LIGHT,WI,9/27/2004 20:20 +Brandon,,DIAMOND,FL,9/27/2004 20:43 +Noblesville,,CIRCLE,IN,9/27/2004 21:55 +Murfreesboro,,TRIANGLE,TN,9/27/2004 23:00 +Muskego,,,WI,9/28/2004 4:03 +Fort Collins,,,CO,9/28/2004 8:39 +Caliphon,,DISK,NJ,9/28/2004 12:00 +Davenport,,DISK,FL,9/28/2004 14:00 +Phoenix,RED,TRIANGLE,AZ,9/28/2004 18:15 +Wooster,RED,LIGHT,OH,9/28/2004 19:30 +Portage,,FORMATION,WI,9/28/2004 20:45 +Fresno,,LIGHT,CA,9/28/2004 22:45 +Evansville,,CIRCLE,IN,9/29/2004 4:00 +Mojave,,TRIANGLE,CA,9/29/2004 7:20 +Pickett,YELLOW,VARIOUS,WI,9/29/2004 20:45 +Plover,ORANGE,LIGHT,WI,9/29/2004 21:00 +Wartrace,,TRIANGLE,TN,9/29/2004 21:00 +Chaska,,,MN,9/29/2004 21:10 +Baltimore,,EGG,MD,9/29/2004 21:45 +Santa Rosa,BLUE,OVAL,CA,9/29/2004 22:00 +Batesville,ORANGE,LIGHT,AR,9/29/2004 23:30 +Golden,,OTHER,CO,9/30/2004 9:30 +Boston,,,MA,9/30/2004 12:00 +Sunbright,,OVAL,TN,9/30/2004 16:00 +Angola,,DISK,IN,9/30/2004 18:00 +Burley,,DIAMOND,WA,9/30/2004 20:00 +Davis,,LIGHT,CA,9/30/2004 22:00 +Seattle,,LIGHT,WA,9/30/2004 22:10 +Salt Lake City,,CIRCLE,UT,9/30/2004 23:10 +Mt. Morris,,CIRCLE,NY,10/1/2004 4:32 +Eureka,,,CA,10/1/2004 16:00 +Las Vegas,,CYLINDER,NV,10/1/2004 17:00 +Albuquerque,,OVAL,NM,10/1/2004 20:00 +Richmond,RED,TRIANGLE,VA,10/1/2004 20:27 +Tucson,,,AZ,10/1/2004 20:50 +Sebastian Inlet,GREEN,OTHER,FL,10/1/2004 22:20 +Sidney,,SPHERE,MI,10/1/2004 23:00 +Portchester,,TRIANGLE,NY,10/2/2004 2:55 +East Rochester,,,NY,10/2/2004 3:00 +Bristol,,TRIANGLE,TN,10/2/2004 5:30 +Flint,,SPHERE,MI,10/2/2004 12:30 +St. Louis,,,MO,10/2/2004 15:30 +Burnsville,,DIAMOND,MN,10/2/2004 16:00 +Eatonville,,DISK,WA,10/2/2004 18:00 +West Covina,,,CA,10/2/2004 18:20 +Louisville,,OVAL,KY,10/2/2004 19:30 +Orange Beach,,LIGHT,AL,10/2/2004 19:30 +Huntington Beach,ORANGE,LIGHT,CA,10/2/2004 23:28 +South Attleboro,,TRIANGLE,MA,10/2/2004 23:37 +Lilburn,,CIRCLE,GA,10/3/2004 3:00 +Ridgewood,RED,CIRCLE,NJ,10/3/2004 6:45 +Vancouver,,,WA,10/3/2004 7:25 +Pratt,,CIGAR,KS,10/3/2004 7:30 +New York City,,LIGHT,NY,10/3/2004 16:00 +New York City,,SPHERE,NY,10/3/2004 16:00 +Manchester,,CIGAR,CT,10/3/2004 17:30 +Perkasie,,CIGAR,PA,10/3/2004 19:00 +Tullahoma,,VARIOUS,TN,10/3/2004 19:00 +Cleveland,,CIRCLE,OH,10/3/2004 19:05 +Porter Ranch,YELLOW,LIGHT,CA,10/3/2004 20:10 +Martinsburg,RED GREEN BLUE,LIGHT,WV,10/3/2004 20:30 +Montgomery,,LIGHT,AL,10/4/2004 5:30 +Ridgeland,,DISK,MS,10/4/2004 11:00 +West Virginia,,VARIOUS,WV,10/4/2004 12:00 +Russellville,,LIGHT,AR,10/4/2004 20:00 +Manzanita,RED,TRIANGLE,OR,10/4/2004 20:30 +Keokuk,,CHEVRON,IA,10/5/2004 1:30 +Hayward,,LIGHT,CA,10/5/2004 13:35 +Indian Shores,RED,LIGHT,FL,10/5/2004 20:00 +Inwood,,OTHER,NY,10/5/2004 20:00 +Lynbrook,,FORMATION,NY,10/5/2004 20:00 +Tarpon Springs,,,FL,10/5/2004 20:10 +Bass Lake,RED,DIAMOND,IN,10/5/2004 20:12 +Coatesville,ORANGE,OTHER,PA,10/5/2004 20:30 +Mena,,LIGHT,AR,10/5/2004 21:00 +Wildomar,,CROSS,CA,10/5/2004 22:00 +Lebanon,,TRIANGLE,TN,10/6/2004 5:00 +Greenbelt,BLUE,VARIOUS,MD,10/6/2004 13:02 +Oak Lawn,,DISK,IL,10/6/2004 14:35 +Placerville,,DISK,CA,10/6/2004 15:00 +Normal,,OTHER,IL,10/6/2004 16:00 +Monroeville,ORANGE,TRIANGLE,NJ,10/6/2004 20:00 +Alameda,,LIGHT,CA,10/6/2004 20:30 +Comstock,,DISK,MI,10/6/2004 20:30 +Oakland,,OTHER,CA,10/6/2004 20:30 +Marietta,RED,TRIANGLE,PA,10/6/2004 22:15 +Nampa,RED ORANGE BLUE,FORMATION,ID,10/6/2004 22:30 +Grand Rapids,RED,SPHERE,MI,10/6/2004 22:50 +Placerville,,DISK,CA,10/6/2004 23:00 +Effingham,,RECTANGLE,IL,10/7/2004 9:00 +Swanton,,,VT,10/7/2004 18:45 +Chandler,RED,LIGHT,AZ,10/7/2004 20:00 +Monticello,,LIGHT,IN,10/7/2004 20:30 +Swedesboro,ORANGE,OTHER,NJ,10/7/2004 22:00 +Angwin,,DISK,CA,10/8/2004 1:00 +Berkeley,,,CA,10/8/2004 16:00 +Lakewood,,FORMATION,CO,10/8/2004 18:00 +Amsterdam,,CIRCLE,NY,10/8/2004 18:52 +San Diego,,LIGHT,CA,10/8/2004 19:48 +Motley,,DIAMOND,TX,10/8/2004 19:50 +Helena,,LIGHT,MT,10/8/2004 22:30 +Limerick,GREEN BLUE,SPHERE,ME,10/8/2004 23:55 +Austin,RED,VARIOUS,TX,10/9/2004 0:35 +Hopatcong,RED,,NJ,10/9/2004 8:45 +River Forest,,CIRCLE,IL,10/9/2004 13:30 +Lancaster,,RECTANGLE,SC,10/9/2004 22:00 +Omaha,,TRIANGLE,NE,10/9/2004 22:00 +Arlington,,CIRCLE,VA,10/9/2004 22:30 +Gilbert,,TRIANGLE,AZ,10/9/2004 22:30 +Mahwah,,TRIANGLE,NJ,10/10/2004 2:50 +Worthington St. Forest,RED,OTHER,NJ,10/10/2004 3:30 +Terre Haute,,SPHERE,IN,10/10/2004 4:18 +Indianapolis,,OVAL,IN,10/10/2004 8:30 +Morgantown,,CIRCLE,WV,10/10/2004 14:00 +Berkeley,,,CA,10/10/2004 15:00 +Rock Island,,SPHERE,IL,10/10/2004 15:00 +Chateauqua,,FORMATION,NY,10/10/2004 19:00 +Ripley,RED,CIRCLE,NY,10/10/2004 19:00 +Faribault,,FLASH,MN,10/10/2004 21:00 +Mansfield,,LIGHT,OH,10/10/2004 21:00 +Columbia,,LIGHT,MO,10/10/2004 22:00 +Gleason,,SPHERE,WI,10/10/2004 23:30 +Honolulu,,TRIANGLE,HI,10/11/2004 1:00 +Los Angeles,GREEN,RECTANGLE,CA,10/11/2004 2:37 +Dallas,,LIGHT,OR,10/11/2004 3:40 +Pitman,,OTHER,NJ,10/11/2004 4:15 +San Jose,,LIGHT,CA,10/11/2004 5:00 +Salinas,,FORMATION,CA,10/11/2004 11:00 +Arroyo Grande,,CIRCLE,CA,10/11/2004 14:00 +Fresno,,RECTANGLE,CA,10/11/2004 18:00 +Strongsvilles,GREEN,LIGHT,OH,10/11/2004 19:00 +Laredo,,FIREBALL,TX,10/11/2004 22:29 +Eastsound,RED ORANGE GREEN,SPHERE,WA,10/11/2004 22:30 +Lake Worth,,FORMATION,FL,10/11/2004 23:00 +Williamsville,,LIGHT,NY,10/11/2004 23:15 +Fort Morgan,,SPHERE,CO,10/12/2004 0:00 +Tacoma,ORANGE,FORMATION,WA,10/12/2004 0:00 +Ripon,,OTHER,CA,10/12/2004 0:06 +Rockville,,LIGHT,MD,10/12/2004 7:37 +Santa Anna,,CYLINDER,CA,10/12/2004 8:20 +Utica,BLUE,LIGHT,NY,10/12/2004 12:55 +Hayward,,SPHERE,CA,10/12/2004 14:00 +Miami,,LIGHT,FL,10/12/2004 20:01 +North Port,ORANGE,LIGHT,FL,10/12/2004 20:27 +Belfair,,FIREBALL,WA,10/12/2004 21:10 +Rocklin,,TRIANGLE,CA,10/12/2004 22:30 +Summerland Key,,CIGAR,FL,10/13/2004 0:00 +White Hall,,TRIANGLE,AR,10/13/2004 0:00 +Galveston,,LIGHT,TX,10/13/2004 1:25 +New Haven,,,CT,10/13/2004 6:20 +Titusville,,OVAL,PA,10/13/2004 17:14 +Oceanside,,DISK,OR,10/13/2004 19:00 +Mena,,LIGHT,AR,10/13/2004 20:00 +Twin Falls,ORANGE,LIGHT,ID,10/13/2004 21:40 +Oregon,,CIRCLE,OR,10/13/2004 23:00 +Parkersburg,,CIRCLE,WV,10/13/2004 23:00 +Ravenel,,CHEVRON,SC,10/13/2004 23:00 +Dallas,RED GREEN BLUE,TRIANGLE,OR,10/13/2004 23:45 +New Rochelle,,RECTANGLE,NY,10/13/2004 23:50 +Needville,,LIGHT,TX,10/14/2004 2:30 +Reno,,VARIOUS,NV,10/14/2004 14:20 +Prescott,ORANGE,LIGHT,AZ,10/14/2004 19:37 +Kansas,,FORMATION,KS,10/14/2004 20:50 +Dallas,,FIREBALL,TX,10/15/2004 0:00 +Gainesville,,,FL,10/15/2004 0:00 +Sedona,,LIGHT,AZ,10/15/2004 1:00 +Oakland,,CONE,NE,10/15/2004 1:40 +Grants Pass-Murphy area,,,OR,10/15/2004 1:45 +Calexico,,TRIANGLE,CA,10/15/2004 2:00 +Groves,,LIGHT,TX,10/15/2004 2:45 +Brookline,,TRIANGLE,MA,10/15/2004 4:30 +Punta Gorda,,CIGAR,FL,10/15/2004 5:15 +Saugus,,FLASH,CA,10/15/2004 5:30 +Wingdale,BLUE,OTHER,NY,10/15/2004 6:00 +Great Falls,,,MT,10/15/2004 6:55 +Mckenzie Bridge,,FLASH,OR,10/15/2004 8:35 +Trenton,,VARIOUS,NJ,10/15/2004 14:00 +Lawrence,,OTHER,KS,10/15/2004 18:22 +Calabash,,RECTANGLE,NC,10/15/2004 19:59 +Scottsdale,,FORMATION,AZ,10/15/2004 20:05 +Baltimore,,CHEVRON,MD,10/15/2004 21:12 +El Paso,ORANGE,LIGHT,IL,10/15/2004 21:45 +Rock Hill,,LIGHT,SC,10/15/2004 22:30 +Minneapolis,,DISK,MN,10/15/2004 23:00 +Saint Paul,,SPHERE,MN,10/15/2004 23:00 +Phoenix,RED,LIGHT,AZ,10/15/2004 23:30 +Whitmire,,,SC,10/16/2004 3:00 +Savannah,,LIGHT,GA,10/16/2004 3:30 +Coulee Dam area,,LIGHT,WA,10/16/2004 4:00 +Wheeling,,,IL,10/16/2004 9:20 +San Diego,RED,VARIOUS,CA,10/16/2004 18:30 +Yonkers,,DISK,NY,10/16/2004 18:45 +Fort Wayne,,FLASH,IN,10/16/2004 19:00 +Big Cypress preserve,,CIRCLE,FL,10/16/2004 23:00 +Chandler,,FIREBALL,AZ,10/16/2004 23:00 +Pineville,,,KY,10/16/2004 23:30 +Somers,,,NY,10/17/2004 3:00 +Fairfax,,VARIOUS,CA,10/17/2004 8:05 +Raleigh,,FORMATION,NC,10/17/2004 18:15 +Converse,,LIGHT,IN,10/17/2004 18:50 +San Antonio,,CIRCLE,TX,10/17/2004 19:00 +Sterling,,FORMATION,IL,10/17/2004 20:29 +Kissimmee,,LIGHT,FL,10/17/2004 21:20 +South Daytona Beach,,LIGHT,FL,10/17/2004 21:45 +Carbondale,,FORMATION,IL,10/17/2004 23:00 +Searcy,,LIGHT,AR,10/18/2004 0:00 +Fairfax,,EGG,CA,10/18/2004 8:00 +Fairfax,,FORMATION,CA,10/18/2004 8:00 +Longmont,,SPHERE,CO,10/18/2004 16:00 +Hampton Bays,,LIGHT,NY,10/18/2004 16:45 +Ada,,TRIANGLE,OK,10/18/2004 17:45 +Portland,,OTHER,ME,10/18/2004 18:00 +Denver,,FIREBALL,CO,10/18/2004 19:41 +Denver,,CIRCLE,CO,10/18/2004 20:00 +Des Moines,,LIGHT,IA,10/18/2004 22:30 +West Bridgewater,,TRIANGLE,MA,10/19/2004 12:00 +Grand Island,,LIGHT,NE,10/19/2004 20:00 +Harrodsburg,,LIGHT,KY,10/20/2004 1:00 +Mount Morris,,OVAL,MI,10/20/2004 1:00 +Flint,,SPHERE,MI,10/20/2004 12:30 +Vienna,,SPHERE,VA,10/20/2004 15:55 +New Rochelle,,DISK,NY,10/20/2004 18:00 +Salters,ORANGE,LIGHT,SC,10/20/2004 20:15 +Charleston AFB,RED,TRIANGLE,SC,10/20/2004 20:20 +Van Buren,ORANGE,DISK,AR,10/20/2004 21:00 +Denver,,TRIANGLE,CO,10/20/2004 21:30 +Phoenix,,LIGHT,AZ,10/20/2004 21:50 +Portland,,LIGHT,OR,10/21/2004 19:30 +Portland,RED,LIGHT,OR,10/21/2004 19:30 +Honolulu,RED,OTHER,HI,10/21/2004 20:30 +San Antonio,,TRIANGLE,TX,10/21/2004 21:30 +Lakewood,,DISK,WA,10/22/2004 3:45 +Troy,,LIGHT,NY,10/22/2004 4:00 +High Point,,,NC,10/22/2004 8:00 +Port Murray,,SPHERE,NJ,10/22/2004 17:45 +Picayune,,DISK,MS,10/22/2004 18:42 +Williamsville,,LIGHT,NY,10/22/2004 21:15 +Grapevine,BLUE,LIGHT,TX,10/23/2004 1:00 +Manhattan,,LIGHT,KS,10/23/2004 1:00 +Big Cedar,,LIGHT,OK,10/23/2004 3:00 +Greenville,GREEN,LIGHT,SC,10/23/2004 5:00 +Vista,,SPHERE,CA,10/23/2004 12:45 +Greendale,,CIRCLE,WI,10/23/2004 14:05 +East Bay,,CIRCLE,CA,10/23/2004 21:28 +Apopka,,LIGHT,FL,10/23/2004 21:30 +La Mirada,ORANGE,OTHER,CA,10/23/2004 23:15 +Tucson,,DISK,AZ,10/24/2004 0:00 +Tinley Park,,TRIANGLE,IL,10/24/2004 10:45 +Honolulu,,DISK,HI,10/24/2004 15:30 +Hampden,,LIGHT,ME,10/24/2004 16:00 +Seattle,,CYLINDER,WA,10/24/2004 17:00 +Seattle,,OTHER,WA,10/24/2004 17:36 +East Hazel Crest,,LIGHT,IL,10/24/2004 18:00 +Bethlehem,,OTHER,PA,10/24/2004 19:30 +Puyallup,,TRIANGLE,WA,10/24/2004 20:15 +Trainer,,,PA,10/24/2004 21:21 +Pittsburgh,,,PA,10/24/2004 22:00 +Wheatfield,,FLASH,IN,10/24/2004 22:15 +Bridgeport,,FLASH,OH,10/24/2004 23:00 +Toledo,,CIRCLE,OH,10/24/2004 23:00 +Zanesville,,,OH,10/24/2004 23:00 +Leet,,FIREBALL,PA,10/24/2004 23:10 +Holland,,FLASH,MI,10/24/2004 23:15 +Weaverville,,CIRCLE,NC,10/24/2004 23:17 +Owingsville,BLUE,FIREBALL,KY,10/24/2004 23:20 +Wheeling,BLUE,,WV,10/24/2004 23:25 +NA,,CYLINDER,OH,10/24/2004 23:27 +Pittsburgh,,FIREBALL,PA,10/24/2004 23:30 +Pomeroy,,FLASH,OH,10/24/2004 23:30 +McMinnville,,CIGAR,OR,10/25/2004 0:00 +Fountain Hills,,TRIANGLE,AZ,10/25/2004 0:30 +Raleigh,,SPHERE,NC,10/25/2004 3:00 +Brewster,RED,FLASH,WA,10/25/2004 10:45 +Brecksville,,OTHER,OH,10/25/2004 12:00 +Burlington,,DISK,MA,10/25/2004 19:00 +Meriden,,CIGAR,CT,10/25/2004 19:25 +Bedford,,CIRCLE,IN,10/25/2004 21:00 +Fortson,,CONE,GA,10/25/2004 21:19 +Lewiston,,LIGHT,ME,10/26/2004 18:00 +Keene,,FLASH,NH,10/26/2004 19:35 +Lansing,,OTHER,MI,10/26/2004 20:00 +Vya,,FIREBALL,NV,10/26/2004 20:00 +Santa Rosa,,LIGHT,CA,10/27/2004 5:40 +Casa Grande,,CIGAR,AZ,10/27/2004 6:30 +Burlington,,VARIOUS,VT,10/27/2004 9:45 +San Clemente,RED,OTHER,CA,10/27/2004 14:30 +Fortuna,RED,FIREBALL,CA,10/27/2004 19:35 +Marysville,,CIRCLE,CA,10/27/2004 19:38 +San Francisco,,SPHERE,CA,10/27/2004 19:55 +Mansfield,,LIGHT,OH,10/27/2004 20:00 +Miami Gardens,,CHEVRON,FL,10/27/2004 22:00 +New York City,,TRIANGLE,NY,10/27/2004 22:00 +New York City,,CHEVRON,NY,10/27/2004 22:15 +Largo,,TRIANGLE,FL,10/27/2004 22:18 +Ithaca,,CHEVRON,NY,10/27/2004 22:20 +Tampa,,TRIANGLE,FL,10/27/2004 22:20 +Woodside,,CHEVRON,NY,10/27/2004 22:20 +Ithaca,,TRIANGLE,NY,10/27/2004 22:30 +Rochester,,CHEVRON,NY,10/27/2004 22:30 +Skaneateles,,TRIANGLE,NY,10/27/2004 22:30 +Hampton,,LIGHT,VA,10/27/2004 22:35 +Rochester,,CIRCLE,NY,10/27/2004 22:45 +Geneseo,RED,LIGHT,NY,10/27/2004 23:00 +New York City,,LIGHT,NY,10/28/2004 0:00 +Sheridan,,LIGHT,WY,10/28/2004 2:00 +Ridgecrest,,EGG,CA,10/28/2004 3:35 +Florida,RED,TRIANGLE,NY,10/28/2004 6:00 +Houston,,OTHER,TX,10/28/2004 7:04 +Avon,,LIGHT,NC,10/28/2004 20:00 +San Diego,,CHEVRON,CA,10/28/2004 20:00 +Area 51,,FIREBALL,NV,10/28/2004 20:25 +Lafayette,,FORMATION,IN,10/28/2004 21:00 +Lafayette,ORANGE,FORMATION,IN,10/28/2004 21:00 +Orono,RED,DISK,ME,10/28/2004 21:33 +St. Francis,,LIGHT,KS,10/28/2004 21:50 +College Station,,LIGHT,TX,10/28/2004 22:00 +Shrewsbury,,LIGHT,MA,10/28/2004 22:45 +San Diego,,FIREBALL,CA,10/28/2004 23:00 +Huntington Beach,,SPHERE,CA,10/29/2004 0:00 +Temecula,,LIGHT,CA,10/29/2004 6:15 +Longmont,,DISK,CO,10/29/2004 8:30 +Liberty,,TRIANGLE,MO,10/29/2004 21:00 +Richardson,,DISK,TX,10/29/2004 23:30 +Boyd,,DISK,TX,10/29/2004 23:45 +Indianapolis,,CIGAR,IN,10/29/2004 23:45 +New York City,,TEARDROP,NY,10/30/2004 0:00 +Missoula,,OTHER,MT,10/30/2004 1:00 +Seattle,,FORMATION,WA,10/30/2004 4:00 +Thornton,BLUE,SPHERE,TX,10/30/2004 21:00 +Lincoln,RED,OTHER,NE,10/30/2004 21:01 +Orient,,DISK,OH,10/30/2004 21:19 +Glendale,,CIRCLE,AZ,10/30/2004 22:35 +Glencoe,,FORMATION,IL,10/30/2004 23:30 +Seattle,,FIREBALL,WA,10/31/2004 0:00 +Sun Prairie,,TRIANGLE,WI,10/31/2004 0:00 +Mokena,RED,TRIANGLE,IL,10/31/2004 3:00 +Chicago,,,IL,10/31/2004 6:00 +Seattle,,LIGHT,WA,10/31/2004 8:00 +Asheville,,CIGAR,TN,10/31/2004 10:00 +Stone Mountain,,CIRCLE,GA,10/31/2004 16:45 +Old Westbury,,DISK,NY,10/31/2004 18:00 +Arden,,,NC,10/31/2004 18:12 +Tinley Park,RED,LIGHT,IL,10/31/2004 18:55 +Lexington,ORANGE,CIRCLE,KY,10/31/2004 19:00 +Tinley Park,RED,FORMATION,IL,10/31/2004 19:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:00 +Urbandale,,TRIANGLE,IA,10/31/2004 19:15 +Orland,,LIGHT,IL,10/31/2004 19:30 +Tinley Park,RED,CIGAR,IL,10/31/2004 19:30 +Tinley Park,,LIGHT,IL,10/31/2004 19:30 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:30 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:30 +Tinley Park,RED,TRIANGLE,IL,10/31/2004 19:30 +Tinley Park,RED,FORMATION,IL,10/31/2004 19:40 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:40 +Tinley Park,,CIRCLE,IL,10/31/2004 19:45 +Tinley Park,RED,CIRCLE,IL,10/31/2004 19:45 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:45 +Tinley Park,RED,TRIANGLE,IL,10/31/2004 19:45 +Frankfort,RED,LIGHT,IL,10/31/2004 19:50 +Orland Park,,LIGHT,IL,10/31/2004 19:50 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:50 +Tinley Park,RED,LIGHT,IL,10/31/2004 19:55 +Matteson,RED,,IL,10/31/2004 19:56 +Oak Forest,RED,LIGHT,IL,10/31/2004 20:00 +Orland Hills,RED,FORMATION,IL,10/31/2004 20:00 +Orland Hills,RED,LIGHT,IL,10/31/2004 20:00 +Orland Park,RED,LIGHT,IL,10/31/2004 20:00 +Orland Park,RED,TRIANGLE,IL,10/31/2004 20:00 +Seattle,,LIGHT,WA,10/31/2004 20:00 +Tinley Park,RED,,IL,10/31/2004 20:00 +Tinley Park,RED,,IL,10/31/2004 20:00 +Tinley Park,RED,,IL,10/31/2004 20:00 +Tinley Park,,CIRCLE,IL,10/31/2004 20:00 +Tinley Park,RED,CIRCLE,IL,10/31/2004 20:00 +Tinley Park,ORANGE,FIREBALL,IL,10/31/2004 20:00 +Tinley Park,,FORMATION,IL,10/31/2004 20:00 +Tinley Park,RED,FORMATION,IL,10/31/2004 20:00 +Tinley Park,,LIGHT,IL,10/31/2004 20:00 +Tinley Park,,LIGHT,IL,10/31/2004 20:00 +Tinley Park,,LIGHT,IL,10/31/2004 20:00 +Tinley Park,,LIGHT,IL,10/31/2004 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:00 +Tinley Park,ORANGE,OTHER,IL,10/31/2004 20:00 +Tinley Park,RED,OTHER,IL,10/31/2004 20:00 +Tinley Park,,TRIANGLE,IL,10/31/2004 20:03 +Manhattan,,LIGHT,IL,10/31/2004 20:06 +Tinley Park,RED,CIRCLE,IL,10/31/2004 20:06 +Tinley Park,,TRIANGLE,IL,10/31/2004 20:10 +Tinley Park,RED,VARIOUS,IL,10/31/2004 20:10 +Tinley Park,RED,SPHERE,IL,10/31/2004 20:13 +Mokena,RED,LIGHT,IL,10/31/2004 20:15 +Orland Park,RED,,IL,10/31/2004 20:15 +Tinley Park,,,IL,10/31/2004 20:15 +Tinley Park,RED,CIRCLE,IL,10/31/2004 20:15 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:15 +Tinley Park,RED,SPHERE,IL,10/31/2004 20:15 +Tinley Park,RED,TRIANGLE,IL,10/31/2004 20:15 +Orland Hills,,FIREBALL,IL,10/31/2004 20:20 +Orland Park,,FORMATION,IL,10/31/2004 20:30 +Tinley Park,RED,LIGHT,IL,10/31/2004 20:30 +Frankfort,RED,TRIANGLE,IL,10/31/2004 20:50 +Purvis,,FORMATION,MS,10/31/2004 20:55 +Tinley Park,,,IL,10/31/2004 21:00 +Tinley Park,,LIGHT,IL,10/31/2004 21:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 21:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 21:00 +Tinley Park,RED,TRIANGLE,IL,10/31/2004 21:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 21:25 +Tinley Park,,,IL,10/31/2004 21:30 +Tinley Park,RED ORANGE,LIGHT,IL,10/31/2004 21:30 +Arden,,CIRCLE,NC,10/31/2004 22:00 +Green Bay,,LIGHT,WI,10/31/2004 22:00 +Green Bay,ORANGE,LIGHT,WI,10/31/2004 22:00 +Tinley Park,RED,CIRCLE,IL,10/31/2004 22:00 +Tinley Park,RED,CIRCLE,IL,10/31/2004 22:00 +Tinley Park,RED,LIGHT,IL,10/31/2004 22:00 +Woodbridge,,LIGHT,VA,10/31/2004 22:00 +Oak Forest,RED,LIGHT,IL,10/31/2004 23:00 +Orland Hills,RED,CIRCLE,IL,10/31/2004 23:00 +Orland Park,RED,,IL,10/31/2004 23:00 +Stevens Point,,CIGAR,WI,11/1/2004 4:06 +Middleburg HTS,,TRIANGLE,OH,11/1/2004 4:54 +Taylor Mill,,DISK,KY,11/1/2004 5:30 +Riverside,,CYLINDER,CA,11/1/2004 11:40 +San Diego,,SPHERE,CA,11/1/2004 16:15 +Abingdon,RED,,VA,11/1/2004 19:00 +Agoura Hills,,LIGHT,CA,11/1/2004 19:00 +Malibu,,OTHER,CA,11/1/2004 19:00 +Fuquay Varina,,TRIANGLE,NC,11/1/2004 20:30 +Morgantown,,,WV,11/1/2004 21:00 +Las Vegas,,TEARDROP,NV,11/2/2004 3:00 +North Phoenix,,LIGHT,AZ,11/2/2004 5:55 +Halifax,,FORMATION,MA,11/2/2004 18:00 +Brohman,,LIGHT,MI,11/2/2004 20:00 +Elyria,,,OH,11/3/2004 1:00 +Tempe,,LIGHT,AZ,11/3/2004 16:29 +Girard Township,BLUE,RECTANGLE,PA,11/3/2004 19:20 +Chalybeate Springs,,,AL,11/3/2004 20:15 +Newton,YELLOW,LIGHT,KS,11/3/2004 20:45 +Syracuse,,LIGHT,NY,11/3/2004 21:00 +Syracuse,,LIGHT,NY,11/3/2004 21:30 +Wooster,,DIAMOND,OH,11/3/2004 21:30 +Everett,,CHEVRON,WA,11/3/2004 21:50 +Olympia,,,WA,11/3/2004 22:00 +Syracuse,,FORMATION,NY,11/3/2004 22:30 +Sunbury,,OVAL,PA,11/3/2004 22:35 +Elizabethton,,LIGHT,TN,11/3/2004 22:45 +Seattle,,LIGHT,WA,11/4/2004 1:15 +Raymore,GREEN,,MO,11/4/2004 4:15 +College Station,,TRIANGLE,TX,11/4/2004 10:00 +Brooks,,CIRCLE,OR,11/4/2004 18:25 +Costa Mesa,ORANGE,TRIANGLE,CA,11/4/2004 18:45 +Roseburg,YELLOW,FIREBALL,OR,11/4/2004 19:15 +Miramar,,TRIANGLE,FL,11/4/2004 20:30 +Pardeeville,,FLASH,WI,11/4/2004 21:00 +Maumee,,CIGAR,OH,11/4/2004 22:32 +Kokomo,ORANGE,,IN,11/4/2004 22:55 +DeBary,,OVAL,FL,11/5/2004 1:00 +Ashley,,CIRCLE,IL,11/5/2004 2:00 +Richmond,,,VA,11/5/2004 5:00 +Philadelphia,,FIREBALL,PA,11/5/2004 5:15 +Park Ridge,,CIRCLE,IL,11/5/2004 5:25 +Fort Lewis,,LIGHT,WA,11/5/2004 6:00 +Mount Clemens,,OTHER,MI,11/5/2004 6:00 +Elcho,BLUE,FIREBALL,WI,11/5/2004 6:45 +Highlands Ranch,,DISK,CO,11/5/2004 9:15 +Santa Ana,,OVAL,CA,11/5/2004 10:50 +Seattle,,TRIANGLE,WA,11/5/2004 16:15 +Dublin,,DISK,CA,11/5/2004 18:45 +Flat Rock,,CIRCLE,MI,11/5/2004 19:00 +Llema,,SPHERE,CA,11/5/2004 20:45 +Show Low,,CYLINDER,AZ,11/5/2004 22:00 +Grand Prairie,,,TX,11/5/2004 22:25 +Russellville,,CYLINDER,AR,11/5/2004 23:20 +Marion,ORANGE,SPHERE,IN,11/6/2004 0:30 +Lakeland,,SPHERE,FL,11/6/2004 0:40 +Mankato,GREEN,FIREBALL,MN,11/6/2004 1:15 +St. Louis,BLUE,TRIANGLE,MO,11/6/2004 3:20 +Kennesaw,RED,EGG,GA,11/6/2004 6:00 +Bethpage,,OVAL,NY,11/6/2004 11:30 +Bradford,,FIREBALL,PA,11/6/2004 18:00 +Wenatchee,,LIGHT,WA,11/6/2004 18:00 +Moravia,,LIGHT,TX,11/6/2004 18:57 +Lafayette,ORANGE,LIGHT,IN,11/6/2004 19:45 +Lafayette,ORANGE,LIGHT,IN,11/6/2004 19:45 +Hillsboro,,TRIANGLE,OH,11/6/2004 20:30 +Peebles,,,OH,11/6/2004 20:30 +Beale AFB,BLUE,CIRCLE,CA,11/6/2004 21:00 +Ridgecrest,,LIGHT,CA,11/6/2004 22:00 +Laguna Beach-Newport Beach border,,DIAMOND,CA,11/6/2004 22:45 +Matteson,,DIAMOND,IL,11/6/2004 22:45 +Reading,,LIGHT,PA,11/6/2004 23:45 +Whitesboro,,LIGHT,TX,11/7/2004 0:00 +Lafayette,ORANGE,LIGHT,IN,11/7/2004 0:30 +Indianapolis,,LIGHT,IN,11/7/2004 1:40 +Ashburn,,,VA,11/7/2004 3:50 +LaCenter,,CIRCLE,WA,11/7/2004 4:00 +Laurel,,LIGHT,MD,11/7/2004 4:00 +Monroe,,LIGHT,LA,11/7/2004 5:00 +Batesville,,TRIANGLE,AR,11/7/2004 6:18 +New York City,,DISK,NY,11/7/2004 7:30 +Battle Creek,,LIGHT,MI,11/7/2004 16:22 +Minneapolis,,CYLINDER,MN,11/7/2004 16:30 +Swiss,,TEARDROP,MO,11/7/2004 16:50 +Swiss,,TEARDROP,MO,11/7/2004 16:50 +East Patchogue,,OVAL,NY,11/7/2004 17:00 +Fort Belvoir,,LIGHT,VA,11/7/2004 18:20 +Zimmerman,,CIRCLE,MN,11/7/2004 19:00 +Barnesville,RED,FLASH,PA,11/7/2004 20:00 +Lavina,,DISK,MT,11/7/2004 20:30 +Chicago,,FORMATION,IL,11/7/2004 23:00 +Shakopee,RED,OTHER,MN,11/7/2004 23:00 +Seattle,,TRIANGLE,WA,11/7/2004 23:20 +Seattle,ORANGE,TRIANGLE,WA,11/7/2004 23:42 +Akron,,DISK,OH,11/8/2004 0:00 +Niles,,OTHER,IL,11/8/2004 0:00 +Kansas City,,TRIANGLE,MO,11/8/2004 3:33 +Charlottesville,,OTHER,VA,11/8/2004 5:45 +Glen Burnie,,SPHERE,MD,11/8/2004 8:00 +Shreveport,,TRIANGLE,LA,11/8/2004 9:20 +Colorado Springs,,OVAL,CO,11/8/2004 11:19 +Bois D'Arc,,CYLINDER,MO,11/8/2004 12:47 +Punta Gorda,,LIGHT,FL,11/8/2004 18:00 +St. Petersburg Beach,,CIRCLE,FL,11/8/2004 18:00 +Jacksonville,,OVAL,FL,11/8/2004 18:10 +College Station,,VARIOUS,TX,11/8/2004 18:45 +Ritzville,BLUE,TRIANGLE,WA,11/8/2004 20:00 +St. Peter,,LIGHT,MN,11/8/2004 20:15 +Hopkinton,,DISK,MA,11/8/2004 20:30 +Oswego,RED,LIGHT,IL,11/8/2004 21:30 +Spring City,,VARIOUS,PA,11/8/2004 22:00 +McKees Rocks,,,PA,11/8/2004 22:30 +Nevada City,,TRIANGLE,CA,11/9/2004 1:30 +Minot,,FIREBALL,ND,11/9/2004 6:20 +Tracy City,,FIREBALL,TN,11/9/2004 17:35 +Fairfield,GREEN BLUE,DISK,PA,11/9/2004 20:00 +Elizabethton,,DISK,TN,11/9/2004 21:00 +Newark,,OVAL,OH,11/9/2004 23:45 +Reading,,,OH,11/10/2004 0:00 +Avon,,,NY,11/10/2004 2:00 +North Andover,,CIRCLE,MA,11/10/2004 5:40 +Piedmont,,LIGHT,KS,11/10/2004 6:00 +Woodward,,,OK,11/10/2004 11:30 +Coral Gables,,OTHER,FL,11/10/2004 19:00 +Vancleave,,OTHER,MS,11/10/2004 23:00 +Death Valley,,DISK,CA,11/11/2004 12:16 +Sioux Falls,,LIGHT,SD,11/11/2004 12:30 +College Station,,VARIOUS,TX,11/11/2004 19:00 +Memphis,,VARIOUS,TN,11/11/2004 19:00 +Portsmouth,,SPHERE,OH,11/11/2004 21:54 +Galveston,,CYLINDER,TX,11/12/2004 2:00 +San Francisco,,,CA,11/12/2004 4:15 +Santa Ana,,TRIANGLE,CA,11/12/2004 6:30 +Kansas City,,CIGAR,MO,11/12/2004 7:30 +Minneapolis,,CYLINDER,MN,11/12/2004 13:15 +Cleveland,,CIRCLE,OH,11/12/2004 15:15 +Depew,,CIGAR,NY,11/12/2004 15:30 +Dothan,,LIGHT,AL,11/12/2004 20:00 +Memphis,,TRIANGLE,TN,11/12/2004 21:00 +Van Nuys,RED,LIGHT,CA,11/12/2004 21:30 +Congers,,OTHER,NY,11/13/2004 0:30 +Ridgecrest,,LIGHT,CA,11/13/2004 1:10 +Ridgecrest,,SPHERE,CA,11/13/2004 1:15 +Duncansville,,LIGHT,PA,11/13/2004 5:20 +Hancock,,SPHERE,MA,11/13/2004 10:20 +Las Vegas,,OVAL,NV,11/13/2004 15:00 +Warren,RED,LIGHT,OH,11/13/2004 17:25 +Doylestown,,LIGHT,PA,11/13/2004 21:07 +Gardena,,TRIANGLE,CA,11/13/2004 21:40 +Peotone,RED,LIGHT,IL,11/13/2004 21:55 +Circleville,ORANGE,LIGHT,OH,11/13/2004 22:30 +Worcester,RED,LIGHT,MA,11/13/2004 22:31 +Montgomeryville,,CHEVRON,PA,11/13/2004 23:20 +Dupree VOR,,LIGHT,SD,11/14/2004 1:14 +Indianapolis,,FORMATION,IN,11/14/2004 14:00 +Orland Park,ORANGE,FORMATION,IL,11/14/2004 17:05 +Ventura,ORANGE,FORMATION,CA,11/14/2004 17:55 +Max,,FLASH,ND,11/14/2004 21:45 +Terrebonne,,DISK,OR,11/14/2004 22:30 +Gatesville,,CIRCLE,NC,11/15/2004 0:00 +Conway,,LIGHT,NC,11/15/2004 1:00 +San Diego,,TRIANGLE,CA,11/15/2004 1:25 +London,,FORMATION,OH,11/15/2004 2:30 +Dillon,,TRIANGLE,MT,11/15/2004 5:30 +Endicott-Vestal,,DISK,NY,11/15/2004 6:50 +Texas,BLUE,OTHER,TX,11/15/2004 11:00 +St. Joseph,,CYLINDER,MI,11/15/2004 13:00 +Marathon City,,DISK,WI,11/15/2004 15:30 +Hermosa Beach,RED,VARIOUS,CA,11/15/2004 17:55 +Kilgore,,DISK,OH,11/15/2004 20:00 +Newbury Park,,CHEVRON,CA,11/15/2004 20:15 +Rapid City,,TRIANGLE,SD,11/15/2004 20:30 +Hinesburg,,LIGHT,VT,11/15/2004 20:35 +Irmo,,CIRCLE,SC,11/15/2004 21:30 +Placerville,,LIGHT,CA,11/15/2004 21:30 +Santa Clara,,CHEVRON,CA,11/15/2004 22:00 +Ridgecrest,ORANGE,TRIANGLE,CA,11/16/2004 6:00 +Tombstone to Saguaro nat park,,OTHER,AZ,11/16/2004 11:00 +Ridgewood,,OVAL,NJ,11/16/2004 18:00 +Mohawk,,LIGHT,NY,11/16/2004 19:15 +Newport,,TRIANGLE,RI,11/16/2004 21:00 +Ellicott City,,CIGAR,MD,11/16/2004 22:00 +Louisville,,DISK,KY,11/16/2004 22:00 +Savannah,,LIGHT,GA,11/17/2004 5:44 +Salinas,,CIRCLE,CA,11/17/2004 9:20 +Waupaca,,FORMATION,WI,11/17/2004 18:26 +Downey,RED GREEN BLUE,CIRCLE,CA,11/17/2004 19:00 +Pueblo West,,FLASH,CO,11/17/2004 20:00 +Cuba,,TRIANGLE,NM,11/17/2004 21:00 +Orange County,,TEARDROP,CA,11/17/2004 23:17 +Mahopac,,,NY,11/18/2004 2:30 +Holiday,,LIGHT,FL,11/18/2004 5:50 +Idalou,,TRIANGLE,TX,11/18/2004 8:30 +Aiken,,CIRCLE,SC,11/18/2004 11:30 +Aiken,,CYLINDER,SC,11/18/2004 11:30 +Raeford,,DISK,NC,11/18/2004 12:34 +Jacksonville,,SPHERE,FL,11/18/2004 16:30 +Mendham,,LIGHT,NJ,11/18/2004 18:00 +Laguna Niguel,,VARIOUS,CA,11/18/2004 20:10 +Sequim,,,WA,11/18/2004 20:45 +Gaston,RED YELLOW GREEN BLUE,LIGHT,OR,11/18/2004 22:00 +Valencia,,,CA,11/19/2004 2:10 +Orlando,,SPHERE,FL,11/19/2004 17:30 +Las Vegas,,LIGHT,NV,11/19/2004 23:00 +Salem,,LIGHT,SD,11/19/2004 23:00 +Boca Raton,,,FL,11/20/2004 2:11 +Tarpon Springs,,FORMATION,FL,11/20/2004 5:30 +Pembroke Pines,,LIGHT,FL,11/20/2004 15:00 +Fountain Hills,,VARIOUS,AZ,11/20/2004 19:15 +Scottsdale,,VARIOUS,AZ,11/20/2004 20:00 +Orlando,,VARIOUS,FL,11/21/2004 5:00 +Montague,,CIRCLE,NJ,11/21/2004 6:00 +Campbell,,TEARDROP,CA,11/21/2004 12:00 +San Francisco,,,CT,11/22/2004 6:10 +Clio,,TRIANGLE,MI,11/22/2004 19:30 +Pearland,,LIGHT,TX,11/23/2004 2:30 +Nashville,,TEARDROP,TN,11/23/2004 14:00 +Winter Garden,,VARIOUS,FL,11/24/2004 0:00 +Yuma,ORANGE,CHEVRON,AZ,11/24/2004 2:00 +Allegan,,,MI,11/24/2004 7:20 +Lake Forest,,DISK,CA,11/24/2004 13:00 +Nevada,,,NV,11/24/2004 20:00 +Antioch,,FIREBALL,CA,11/24/2004 20:30 +New York City,,LIGHT,NY,11/24/2004 21:30 +Sacramento,,LIGHT,CA,11/25/2004 3:30 +Ottumwa,,TRIANGLE,IA,11/25/2004 5:00 +Fort Smith,,CIRCLE,AR,11/25/2004 9:30 +Three Rivers,,OTHER,MI,11/25/2004 14:00 +Oklahoma City,,DISK,OK,11/25/2004 21:45 +Houston,,LIGHT,TX,11/25/2004 23:00 +San Marcos,,LIGHT,CA,11/25/2004 23:15 +San Marcos,ORANGE,LIGHT,CA,11/25/2004 23:30 +Seaford,,LIGHT,DE,11/26/2004 5:00 +Gifford National Forest,,,WA,11/26/2004 11:00 +Bedford,,CIRCLE,VA,11/26/2004 17:30 +San Jose,,DISK,CA,11/26/2004 19:30 +Louisville,,LIGHT,KY,11/26/2004 20:15 +Gardena,,DISK,CA,11/27/2004 1:00 +Gilmer,,VARIOUS,TX,11/27/2004 2:00 +Cathlamet,,FIREBALL,WA,11/27/2004 13:05 +Jackson,,,NJ,11/27/2004 14:00 +Clarion,,CIRCLE,PA,11/27/2004 16:45 +Fresno,,OVAL,CA,11/27/2004 17:00 +San Francisco,RED YELLOW BLUE,OVAL,CA,11/27/2004 17:24 +Athens,,TRIANGLE,TX,11/27/2004 18:00 +Kern,,FORMATION,TX,11/27/2004 18:00 +Salem,,LIGHT,OR,11/27/2004 18:00 +Lewisville,,EGG,TX,11/27/2004 18:30 +Lewisville,,LIGHT,TX,11/27/2004 18:30 +Everett,,LIGHT,WA,11/27/2004 19:00 +Clanton,ORANGE,LIGHT,AL,11/27/2004 19:35 +Mckeesport,,DISK,PA,11/28/2004 1:00 +Myrtle Beach,,FLASH,SC,11/28/2004 3:30 +Key West,,LIGHT,FL,11/28/2004 5:45 +Spirit Lake,,LIGHT,ID,11/28/2004 16:53 +Yuba City,,FIREBALL,CA,11/28/2004 18:47 +Porterville,,LIGHT,CT,11/29/2004 5:20 +Wayland,,SPHERE,MA,11/29/2004 5:21 +Wayland,,SPHERE,MA,11/29/2004 5:21 +Lincoln,,SPHERE,MA,11/29/2004 5:29 +Marlborough,,CHEVRON,MA,11/29/2004 13:05 +New Buffalo,,CONE,MI,11/29/2004 13:23 +Perrysburg,,LIGHT,NY,11/29/2004 22:00 +Irvine,,,CA,11/29/2004 22:15 +Whitley City,,DIAMOND,KY,11/29/2004 23:14 +Tucson,,DISK,AZ,11/29/2004 23:47 +Lancaster,BLUE,FIREBALL,OH,11/30/2004 2:30 +Syracuse,,TRIANGLE,NY,11/30/2004 6:15 +Wayne,,,NJ,11/30/2004 12:00 +Auberry,,LIGHT,CA,11/30/2004 17:45 +Mesa,,OTHER,AZ,11/30/2004 18:00 +Port Richey,,DISK,FL,11/30/2004 19:15 +Laurel,,FIREBALL,MT,11/30/2004 23:45 +Riverside,GREEN,DISK,CA,12/1/2004 0:00 +Plano,BLUE,FIREBALL,TX,12/1/2004 2:35 +Seattle,,CYLINDER,WA,12/1/2004 5:00 +Dublin,,EGG,OH,12/1/2004 9:00 +Springfield,,TRIANGLE,IL,12/1/2004 14:45 +Emison,,SPHERE,IN,12/1/2004 19:15 +Hawthorne,GREEN,TRIANGLE,CA,12/1/2004 19:30 +Lincoln,,FIREBALL,NE,12/1/2004 23:00 +Wylie,RED,TRIANGLE,TX,12/1/2004 23:00 +Shelby,,FIREBALL,MT,12/1/2004 23:40 +Bowling Green,,,KY,12/2/2004 0:00 +Santa Cruz,,CIRCLE,CA,12/2/2004 0:00 +Pottsville,,TRIANGLE,AR,12/2/2004 6:30 +Bowling Green,GREEN,DIAMOND,KY,12/2/2004 16:30 +West Greenwich,,TRIANGLE,RI,12/2/2004 17:30 +Lindsborg,,,KS,12/2/2004 18:00 +San Acacio,,LIGHT,CO,12/2/2004 18:17 +Memphis,,TRIANGLE,TN,12/2/2004 19:05 +Carrollton,,LIGHT,VA,12/2/2004 20:00 +Del Rio,,OTHER,TX,12/2/2004 21:00 +Longmont,,LIGHT,CO,12/2/2004 22:25 +York,,OTHER,PA,12/3/2004 2:37 +Reed Spring,,LIGHT,MO,12/3/2004 5:30 +Shaker,,OTHER,OH,12/3/2004 7:30 +Lexington,,SPHERE,KY,12/3/2004 15:00 +Lakewood,,CIGAR,OH,12/3/2004 17:50 +Grapevine,BLUE,FIREBALL,TX,12/3/2004 18:00 +Sunol,,TRIANGLE,CA,12/3/2004 18:00 +Boulder,,SPHERE,CO,12/3/2004 18:12 +Los Angeles,RED,TRIANGLE,CA,12/3/2004 19:45 +Norwalk,,CIGAR,CA,12/3/2004 20:00 +Hershey,,RECTANGLE,NE,12/3/2004 20:30 +Winnemucca,,TRIANGLE,NV,12/3/2004 20:30 +Jamestown,,FORMATION,NY,12/3/2004 21:00 +Sacramento,,DISK,CA,12/3/2004 22:00 +Papillion,BLUE,OTHER,NE,12/4/2004 0:00 +Cumming,,DISK,GA,12/4/2004 0:30 +Pittsburgh,,LIGHT,PA,12/4/2004 0:45 +Santa Monica,,LIGHT,CA,12/4/2004 11:40 +Burlington,,TRIANGLE,IN,12/4/2004 20:30 +Rockford,,DIAMOND,IL,12/4/2004 21:00 +Tipton,,LIGHT,MO,12/4/2004 21:00 +Hialeah,,OVAL,FL,12/4/2004 21:08 +Elmhurst,,LIGHT,IL,12/4/2004 22:13 +Kansas City,,OTHER,MO,12/4/2004 23:00 +Sutherland,,LIGHT,IA,12/4/2004 23:30 +New York City,,RECTANGLE,NY,12/5/2004 1:30 +Terre Haute,,CHEVRON,IN,12/5/2004 4:25 +East Stroudsburg,ORANGE,LIGHT,PA,12/5/2004 7:00 +Tampa,,OTHER,FL,12/5/2004 14:45 +Orlando,GREEN,LIGHT,FL,12/5/2004 20:30 +Homosassa,GREEN,SPHERE,FL,12/5/2004 20:45 +Bainbridge,,DISK,NY,12/5/2004 21:35 +Fort Pierce,,TRIANGLE,FL,12/5/2004 23:00 +Oahu,GREEN,FLASH,HI,12/6/2004 1:00 +Harbor Beach,,,MI,12/6/2004 6:34 +Brandford,,TRIANGLE,FL,12/6/2004 18:55 +Oxnard to Yuma,,FLASH,CA,12/6/2004 19:00 +Elyria,,LIGHT,OH,12/6/2004 20:00 +Oakwood,,LIGHT,GA,12/6/2004 21:00 +Fort Worth,,CIGAR,TX,12/7/2004 5:45 +Aiea,,CIRCLE,HI,12/7/2004 16:20 +Denton,,LIGHT,TX,12/7/2004 16:30 +Tucson,,CYLINDER,AZ,12/7/2004 17:18 +Chattanooga,,FIREBALL,TN,12/7/2004 17:30 +Salters,,LIGHT,SC,12/7/2004 18:30 +Myrtle Beach,,,SC,12/7/2004 19:05 +Alexandria,,FORMATION,LA,12/7/2004 19:55 +Johnson City,,LIGHT,TN,12/7/2004 21:00 +Kingsport,,DIAMOND,TN,12/7/2004 21:00 +Midwest U. S.,,,OH,12/7/2004 21:45 +Boca Raton,,OTHER,FL,12/7/2004 23:00 +Myrtle Beach,RED,CHEVRON,SC,12/8/2004 0:00 +Lithonia,GREEN,LIGHT,GA,12/8/2004 5:20 +Goldbar,,LIGHT,WA,12/8/2004 6:30 +Greenwood Lake,,OTHER,NY,12/8/2004 18:00 +Peebles,,LIGHT,OH,12/8/2004 18:45 +Surfside Beach,,LIGHT,SC,12/8/2004 19:30 +Henderson,,FORMATION,NE,12/8/2004 23:33 +Chico,ORANGE,TRIANGLE,CA,12/9/2004 0:04 +Mariposa,,LIGHT,CA,12/9/2004 1:46 +Clarksville,,OTHER,TN,12/9/2004 7:30 +Nason,,LIGHT,IL,12/9/2004 7:30 +Palm Desert,YELLOW,OTHER,CA,12/9/2004 17:10 +League City,,TRIANGLE,TX,12/9/2004 19:00 +Lindsborg to Lyons,,LIGHT,KS,12/9/2004 19:45 +Bristol,,TRIANGLE,TN,12/9/2004 22:10 +Los Angeles,,LIGHT,CA,12/10/2004 4:45 +Sausalito,,DISK,CA,12/10/2004 15:00 +Phoenix,,OTHER,AZ,12/10/2004 19:30 +Adrian,,TRIANGLE,MI,12/10/2004 20:00 +Coconut Creek,,DIAMOND,FL,12/11/2004 0:00 +Monmouth Beach,,LIGHT,NJ,12/11/2004 14:30 +Hagerstown,,FLASH,MD,12/11/2004 19:00 +Gaithersburg,GREEN,OTHER,MD,12/11/2004 19:55 +Manassas,GREEN,LIGHT,VA,12/11/2004 19:55 +Baltimore,,FIREBALL,MD,12/11/2004 20:00 +College Park,GREEN,FIREBALL,MD,12/11/2004 20:00 +Denton,,TRIANGLE,TX,12/11/2004 21:00 +Williamsport,,FIREBALL,MD,12/11/2004 21:00 +Fort Worth,,LIGHT,TX,12/11/2004 21:50 +Van Alstyne,,TRIANGLE,TX,12/11/2004 21:55 +Van Alstyne,,TRIANGLE,TX,12/11/2004 21:55 +Greenville,,TRIANGLE,TX,12/11/2004 22:00 +King,,,NC,12/11/2004 22:30 +Friendswood,,TRIANGLE,TX,12/12/2004 2:00 +Puyallup,,SPHERE,WA,12/12/2004 2:45 +Phoenix,,SPHERE,AZ,12/12/2004 10:00 +Chino Hills,,OVAL,CA,12/12/2004 17:00 +Santa Clarita,RED,SPHERE,CA,12/12/2004 17:00 +New River,BLUE,OVAL,AZ,12/12/2004 18:32 +Tinley Park,ORANGE GREEN,FLASH,IL,12/12/2004 19:00 +Dallas,,FORMATION,TX,12/12/2004 20:25 +Mesa,ORANGE YELLOW,FORMATION,AZ,12/12/2004 21:13 +Nashville,,LIGHT,TN,12/12/2004 22:00 +College Station,ORANGE,TRIANGLE,TX,12/12/2004 22:15 +La Junta,,LIGHT,CO,12/12/2004 22:46 +Arlington,,FORMATION,VA,12/13/2004 0:30 +Honolulu,,DISK,HI,12/13/2004 1:00 +Machesney Park,,,IL,12/13/2004 2:00 +Tucson,,FIREBALL,AZ,12/13/2004 3:11 +Cleveland,,,TN,12/13/2004 6:00 +Benton City,BLUE,TEARDROP,WA,12/13/2004 6:35 +Dulce,,DISK,NM,12/13/2004 12:29 +Myrtle Beach,,LIGHT,SC,12/13/2004 18:20 +Alexandria,,,LA,12/13/2004 18:27 +Emory,RED BLUE,CONE,TX,12/13/2004 20:00 +Blue Springs,,DISK,MO,12/13/2004 20:15 +Blue Springs,BLUE,OVAL,MO,12/13/2004 20:15 +Exeter,,LIGHT,RI,12/13/2004 20:35 +Upper Black Eddy,ORANGE,CIRCLE,PA,12/13/2004 21:07 +Maricopa,,VARIOUS,AZ,12/13/2004 21:10 +Neosho,,OTHER,MO,12/13/2004 22:00 +Neosho,,OVAL,MO,12/13/2004 22:00 +Seattle,,,WA,12/13/2004 22:15 +Trio,,LIGHT,SC,12/13/2004 22:30 +Biloxi,,,MS,12/13/2004 23:59 +Portland,,DISK,OR,12/14/2004 0:00 +Garland,,,TX,12/14/2004 0:30 +Orrville,,OTHER,OH,12/14/2004 1:00 +Tremont,,LIGHT,MS,12/14/2004 4:30 +Brooklyn,ORANGE,LIGHT,MI,12/14/2004 5:15 +Phoenix,,LIGHT,AZ,12/14/2004 6:30 +Orange,ORANGE,FIREBALL,CA,12/14/2004 6:58 +Lucerne Valley,,TRIANGLE,CA,12/14/2004 18:28 +Sandy,,SPHERE,UT,12/14/2004 21:00 +Frankenmuth,,TRIANGLE,MI,12/14/2004 22:00 +Seattle,,,WA,12/14/2004 22:20 +Johnson Village,,TRIANGLE,CO,12/14/2004 22:30 +Charleston,,SPHERE,SC,12/14/2004 23:00 +Long Beach,,LIGHT,MS,12/15/2004 4:35 +Palo Alto,,FORMATION,CA,12/15/2004 5:00 +Savanna,,CIGAR,NY,12/15/2004 8:00 +Paola,,TRIANGLE,KS,12/15/2004 9:00 +Lajes Air Force Base,,SPHERE,UT,12/15/2004 9:55 +Tampa,,RECTANGLE,FL,12/15/2004 14:05 +Carmel,ORANGE,OVAL,IN,12/15/2004 19:35 +Headland,,,AL,12/15/2004 20:30 +Charleston,,,MO,12/15/2004 23:00 +Veedersburg,,LIGHT,IN,12/16/2004 0:15 +Ardmore,,,PA,12/16/2004 4:30 +Anderson,,CIGAR,SC,12/16/2004 12:00 +Binghamton,,OTHER,NY,12/16/2004 15:40 +Farmers,,LIGHT,KY,12/16/2004 18:05 +Bethel,,TRIANGLE,OH,12/16/2004 20:15 +Anaheim,BLUE,FIREBALL,CA,12/16/2004 20:30 +Manassas,,TRIANGLE,VA,12/16/2004 21:50 +Gaylesville,,RECTANGLE,AL,12/16/2004 22:40 +Roy,,EGG,UT,12/16/2004 23:50 +East Islip,,LIGHT,NY,12/17/2004 0:30 +Haleakala,,,HI,12/17/2004 4:19 +Los Angeles,,TRIANGLE,CA,12/17/2004 9:00 +Haleakala,,OTHER,HI,12/17/2004 14:39 +Bellmar,,FORMATION,NJ,12/17/2004 16:35 +San Francisco,,LIGHT,CA,12/18/2004 0:00 +Thousand Oaks,,DISK,CA,12/18/2004 5:05 +Texarkana,,CIRCLE,TX,12/18/2004 5:30 +Rocky Mount,,CIRCLE,MO,12/18/2004 9:00 +Santa Monica,,CONE,CA,12/18/2004 13:00 +Redmond,BLUE,SPHERE,WA,12/18/2004 18:45 +Rockville,,FIREBALL,IN,12/18/2004 19:00 +Tacoma,,FIREBALL,WA,12/18/2004 19:06 +Coronado,,FLASH,CA,12/18/2004 19:32 +Tecumseh,,LIGHT,MI,12/19/2004 17:00 +Myrtle Beach,,CHEVRON,SC,12/19/2004 20:00 +West Lafayette,,OVAL,IN,12/20/2004 16:00 +Tulsa,,,OK,12/20/2004 17:30 +Salome,ORANGE,CIRCLE,AZ,12/20/2004 18:00 +Fairbanks,,,AK,12/20/2004 20:00 +Indianapolis,,DISK,IN,12/20/2004 20:00 +Prescott Valley,,,AZ,12/20/2004 20:50 +North Miami,,OVAL,FL,12/21/2004 0:05 +St. Paul,RED,CIRCLE,MN,12/21/2004 1:00 +Fairview,,VARIOUS,NC,12/21/2004 4:30 +San Marcos,BLUE,OTHER,CA,12/21/2004 6:30 +Chillicothe,,VARIOUS,OH,12/21/2004 8:00 +Orlando,,,GA,12/21/2004 16:45 +North Myrtle Beach,,CIRCLE,SC,12/21/2004 21:00 +Wenatchee,,FIREBALL,WA,12/21/2004 21:10 +Lansdale,,,PA,12/22/2004 1:00 +Portland,,,OR,12/22/2004 20:30 +Tulsa,,,OK,12/22/2004 23:00 +Chatsworth,,DIAMOND,GA,12/23/2004 0:00 +Palo Alto,,FORMATION,CA,12/23/2004 1:00 +Malvern,,LIGHT,IA,12/23/2004 4:20 +Somerville,,OTHER,TX,12/23/2004 5:00 +Abilene,,OVAL,TX,12/23/2004 16:00 +Murfreesboro,RED,SPHERE,TN,12/23/2004 16:30 +Reynoldsburg,,LIGHT,OH,12/23/2004 18:30 +Philadelphia,,DISK,PA,12/24/2004 0:00 +Columbia,,OTHER,MD,12/24/2004 4:00 +South Webster,GREEN,SPHERE,OH,12/24/2004 19:00 +Peshastin,,LIGHT,WA,12/24/2004 19:35 +Vienna,BLUE,FIREBALL,VA,12/24/2004 20:58 +Harlingen,BLUE,OTHER,TX,12/24/2004 21:00 +Madera,,LIGHT,CA,12/24/2004 22:00 +Rio Hondo,,CIRCLE,TX,12/25/2004 0:00 +Bellefonte,,FORMATION,PA,12/25/2004 1:00 +Audubon,,,NJ,12/25/2004 6:00 +Baker,,LIGHT,CA,12/25/2004 6:20 +Republic,,,WA,12/25/2004 13:23 +Eugene,,VARIOUS,OR,12/25/2004 17:00 +Garden City,,LIGHT,NY,12/25/2004 18:35 +Long Beach,,TRIANGLE,CA,12/25/2004 20:00 +Lafayette,RED ORANGE,FIREBALL,LA,12/25/2004 21:00 +Gloucester,,VARIOUS,MA,12/25/2004 22:25 +Winter Park,,VARIOUS,FL,12/26/2004 0:00 +North Little Rock,,OTHER,AR,12/26/2004 4:00 +Sarasota,,CYLINDER,FL,12/26/2004 16:00 +Green Lake,,LIGHT,WI,12/26/2004 20:00 +Tahlequah,,OVAL,OK,12/26/2004 21:00 +Tobyhanna,YELLOW,LIGHT,PA,12/26/2004 23:10 +Bend,,TRIANGLE,OR,12/27/2004 1:30 +Washington,,OTHER,IN,12/27/2004 7:35 +Sebring,BLUE,CIRCLE,FL,12/27/2004 9:05 +Wenatchee,,CHEVRON,WA,12/27/2004 23:59 +Havre de Grace,,,MD,12/28/2004 4:00 +Terre Haute,,LIGHT,IN,12/28/2004 6:30 +Malibu,,TRIANGLE,CA,12/28/2004 14:00 +Fox Chapel,,TRIANGLE,PA,12/28/2004 21:00 +Phoenixville,,TRIANGLE,PA,12/28/2004 21:00 +Lake City,,CIRCLE,FL,12/29/2004 11:42 +Rockford,,OVAL,MI,12/29/2004 15:30 +Emporia,,OTHER,KS,12/29/2004 18:15 +Billerica,,CIRCLE,MA,12/29/2004 18:30 +Gainesville,,LIGHT,FL,12/29/2004 21:10 +Lake Station,BLUE,VARIOUS,IN,12/30/2004 2:30 +Inglewood,,CIRCLE,CA,12/30/2004 6:00 +Sebring,BLUE,CIRCLE,FL,12/30/2004 9:15 +Fullerton,,OVAL,CA,12/30/2004 11:30 +Anchorage,,LIGHT,AK,12/30/2004 20:00 +Wellsville,ORANGE,FIREBALL,NY,12/30/2004 20:30 +Sumter,,LIGHT,SC,12/31/2004 6:25 +Friendswood,ORANGE,TRIANGLE,TX,12/31/2004 13:00 +Lombard,,DISK,IL,12/31/2004 16:00 +San Diego,RED,CIRCLE,CA,12/31/2004 23:55 +San Diego,RED,LIGHT,CA,12/31/2004 23:55 +Baltimore,,CIRCLE,MD,1/1/2005 0:00 +North Hollywood,,FORMATION,CA,1/1/2005 0:00 +Wikitravel,,DIAMOND,HI,1/1/2005 0:00 +Belleview,,,FL,1/1/2005 0:02 +Las Vegas,,OVAL,NV,1/1/2005 0:05 +Fullerton,RED,LIGHT,CA,1/1/2005 0:15 +Chicago,,VARIOUS,IL,1/1/2005 1:45 +Brentwood,ORANGE,RECTANGLE,CA,1/1/2005 1:49 +Ocean Shores,,FLASH,WA,1/1/2005 3:00 +Columbia,,VARIOUS,SC,1/1/2005 13:45 +Route 202,,LIGHT,NJ,1/1/2005 17:25 +Tampa,,DISK,FL,1/1/2005 17:30 +Chester,,CIRCLE,WV,1/1/2005 19:00 +Columbus,,LIGHT,GA,1/1/2005 21:00 +Phoenix,,TRIANGLE,AZ,1/1/2005 23:00 +Brentwood,RED,LIGHT,CA,1/2/2005 0:45 +Melba,GREEN,EGG,ID,1/2/2005 1:00 +Seattle,,LIGHT,WA,1/2/2005 3:40 +Fortuna,GREEN,LIGHT,CA,1/2/2005 6:30 +Seattle,,LIGHT,WA,1/2/2005 17:18 +LaCrosse,,FLASH,WA,1/2/2005 19:00 +Pawtucket,RED BLUE,CIRCLE,RI,1/2/2005 20:00 +Helena,RED,,AL,1/2/2005 23:00 +Alpine,,LIGHT,CA,1/3/2005 0:35 +Seattle,,,WA,1/3/2005 17:15 +Charlotte,,LIGHT,NC,1/3/2005 19:20 +Bellevue,,SPHERE,WA,1/4/2005 2:00 +Sunnyvale,,SPHERE,CA,1/4/2005 16:24 +Calabasas,,LIGHT,CA,1/4/2005 17:45 +Sammamish,,FIREBALL,WA,1/4/2005 18:30 +Castro Valley,,LIGHT,CA,1/4/2005 19:10 +Dallas,ORANGE,CIRCLE,OR,1/4/2005 19:15 +Bremerton,,DIAMOND,WA,1/4/2005 19:25 +Harrisburg,,DIAMOND,NC,1/4/2005 23:20 +Chicago- West Suburbs- Rt 171,,TRIANGLE,IL,1/5/2005 6:05 +Renton,,CIRCLE,WA,1/5/2005 6:15 +Cullman,,TRIANGLE,AL,1/5/2005 14:15 +Wellington,,OVAL,FL,1/5/2005 17:34 +Dallas,,CIGAR,OR,1/5/2005 19:10 +Los Angeles,GREEN,FIREBALL,CA,1/5/2005 20:00 +Orange,,FORMATION,CA,1/5/2005 21:25 +Lewisville,,TRIANGLE,NC,1/5/2005 22:45 +Buffalo,RED,LIGHT,NY,1/5/2005 23:30 +Houston,,OTHER,TX,1/6/2005 17:00 +Bakersfield,,SPHERE,CA,1/7/2005 8:03 +New York City,,CYLINDER,NY,1/7/2005 12:30 +Andover,,CHEVRON,MA,1/7/2005 18:00 +Waterford,,,PA,1/7/2005 18:45 +Miami,,SPHERE,FL,1/7/2005 20:30 +Miami,,DISK,FL,1/7/2005 20:51 +Miami,,OTHER,FL,1/7/2005 20:51 +Richmond,,FIREBALL,VA,1/7/2005 22:30 +Cumberland,,TRIANGLE,RI,1/8/2005 0:15 +Chicago,,LIGHT,IL,1/8/2005 6:30 +DeQuency,,DISK,LA,1/8/2005 18:00 +Castro Valley,,LIGHT,CA,1/8/2005 20:10 +Dallas,,CIRCLE,TX,1/8/2005 23:53 +Worcester,,EGG,MA,1/9/2005 3:00 +Sedona,,CIRCLE,AZ,1/9/2005 12:30 +Ashville,,FORMATION,OH,1/9/2005 18:45 +Orinda,,FIREBALL,CA,1/9/2005 23:45 +Murfreesboro,,DISK,TN,1/10/2005 5:15 +Savannah,,SPHERE,GA,1/10/2005 10:15 +Denver,,,CO,1/10/2005 17:24 +Lincoln City,,LIGHT,OR,1/10/2005 18:00 +Bellevue,,VARIOUS,WA,1/10/2005 18:45 +Fortescue,,CIRCLE,NJ,1/10/2005 19:00 +Barryton,RED,CIRCLE,MI,1/10/2005 19:18 +Houston,,OVAL,TX,1/10/2005 19:22 +Marathon,,LIGHT,FL,1/10/2005 21:30 +La Jolla,,LIGHT,CA,1/10/2005 22:00 +Scottsdale,,VARIOUS,AZ,1/10/2005 22:06 +El Paso,,DISK,TX,1/11/2005 1:00 +Muskego,,FLASH,WI,1/11/2005 3:35 +Bel Air,,OTHER,MD,1/11/2005 13:50 +Lincoln City,,LIGHT,OR,1/11/2005 18:00 +Modesto,,CHEVRON,CA,1/11/2005 21:10 +Arbuckle,,LIGHT,CA,1/11/2005 22:00 +College City,,DISK,CA,1/12/2005 1:45 +Smiths,,,AL,1/12/2005 3:00 +Ashtabula,,TRIANGLE,OH,1/12/2005 19:00 +Lancaster,,TRIANGLE,CA,1/12/2005 19:05 +Greenfield,,TRIANGLE,MA,1/12/2005 19:30 +Thousand Oaks,ORANGE,FORMATION,CA,1/12/2005 20:01 +Chico,,LIGHT,CA,1/12/2005 22:15 +Belleville,,OTHER,IL,1/12/2005 22:47 +Sammamish,,OVAL,WA,1/13/2005 2:30 +Milwaukee,,FORMATION,WI,1/13/2005 4:08 +Milwaukee,BLUE,FORMATION,WI,1/13/2005 4:13 +Milwaukee,,FORMATION,WI,1/13/2005 4:15 +Dallas,,OTHER,TX,1/13/2005 5:00 +Lincoln,,FORMATION,NE,1/13/2005 5:50 +Stevens Point,,LIGHT,WI,1/13/2005 18:05 +Gleneden Beach,ORANGE,FLASH,OR,1/13/2005 19:00 +Fairbanks,,OTHER,AK,1/13/2005 20:00 +Fairbanks,,OTHER,AK,1/13/2005 21:00 +Sumner,,OTHER,WA,1/13/2005 21:00 +Downers Grove,RED,LIGHT,IL,1/13/2005 21:20 +Manomet,,OVAL,MA,1/13/2005 22:15 +Carlsbad,,LIGHT,CA,1/13/2005 23:00 +Bullet County,,LIGHT,KY,1/13/2005 23:30 +Mililani,,TRIANGLE,HI,1/14/2005 4:00 +Mansfield,,FORMATION,OH,1/14/2005 16:10 +Peru,ORANGE,SPHERE,IN,1/14/2005 18:00 +Peru,,LIGHT,IN,1/14/2005 18:15 +Lexington,,,KY,1/14/2005 20:15 +New Braunfels,,OVAL,TX,1/14/2005 21:25 +Wading River,,SPHERE,NY,1/14/2005 21:30 +Las Vegas,,OTHER,NV,1/15/2005 0:00 +Atlanta,,OTHER,TX,1/15/2005 3:20 +Elizabeth City,,OTHER,NC,1/15/2005 4:00 +Morton,,VARIOUS,IL,1/15/2005 6:55 +Searchlight,,OTHER,NV,1/15/2005 10:00 +Baker City,,OTHER,OR,1/15/2005 12:00 +Portland,,SPHERE,ME,1/15/2005 12:00 +Urbana,,,IL,1/15/2005 12:00 +Riverview,,RECTANGLE,MI,1/15/2005 14:30 +Richmond,,SPHERE,VA,1/15/2005 15:00 +Manitowoc,,OVAL,WI,1/15/2005 16:30 +Ocala,,TRIANGLE,FL,1/15/2005 19:30 +Manchester,YELLOW,DISK,CT,1/15/2005 20:00 +Phoenix,ORANGE,FIREBALL,AZ,1/15/2005 22:00 +Kildeer,,,IL,1/15/2005 23:30 +Birmingham,,TRIANGLE,AL,1/15/2005 23:50 +San Antonio,,LIGHT,TX,1/16/2005 1:00 +Phoenix,,CYLINDER,AZ,1/16/2005 4:00 +Howell,,FLASH,MI,1/16/2005 8:00 +San Diego,RED,CIRCLE,CA,1/16/2005 10:42 +Westminster,,CIRCLE,CO,1/16/2005 14:00 +West Dover,,TRIANGLE,VT,1/16/2005 15:00 +South El Monte,BLUE,DISK,CA,1/16/2005 15:30 +Baytown,,OTHER,TX,1/16/2005 17:48 +Granton,,,WI,1/17/2005 0:00 +San Jose,BLUE,FIREBALL,CA,1/17/2005 5:30 +Chicago,,DISK,IL,1/17/2005 16:00 +Olathe,RED BLUE,LIGHT,KS,1/17/2005 18:39 +San Diego,,LIGHT,CA,1/17/2005 23:05 +Portland,,CIRCLE,OR,1/18/2005 3:33 +Mission Viejo,,SPHERE,CA,1/18/2005 6:20 +Hawthorne,,OTHER,CA,1/18/2005 7:00 +Oakwood,,OTHER,GA,1/18/2005 12:00 +Jacksonville,,SPHERE,FL,1/19/2005 18:30 +Lewes,RED,LIGHT,DE,1/19/2005 19:00 +Walton,GREEN,DISK,NY,1/19/2005 22:00 +Ocala,,VARIOUS,FL,1/19/2005 23:00 +Brooksville,,LIGHT,FL,1/20/2005 1:15 +Mountain Ranch,RED YELLOW GREEN,TRIANGLE,CA,1/20/2005 2:30 +Bruce,,LIGHT,MS,1/20/2005 6:00 +Henderson,,TRIANGLE,NV,1/20/2005 12:00 +Columbus,,DISK,MT,1/20/2005 13:00 +Thetford,YELLOW,OTHER,VT,1/20/2005 19:38 +Oxford,,RECTANGLE,CT,1/20/2005 23:00 +Oxford,,RECTANGLE,CT,1/20/2005 23:00 +Asheville,,LIGHT,NC,1/20/2005 23:45 +Ocala,,VARIOUS,FL,1/21/2005 17:00 +Sentinel,,TEARDROP,AZ,1/21/2005 18:00 +Ashtabula,,OTHER,OH,1/21/2005 18:50 +Surf City,,VARIOUS,NC,1/21/2005 19:00 +Rancho Cucamonga,,FORMATION,CA,1/22/2005 9:16 +Cartersville,,CIRCLE,GA,1/22/2005 19:00 +Olympia,,LIGHT,WA,1/22/2005 19:00 +Cedar City,RED GREEN BLUE,OTHER,UT,1/22/2005 20:00 +Tacoma,ORANGE,FIREBALL,WA,1/22/2005 21:11 +Chicago,,OTHER,IL,1/23/2005 12:00 +Lake Wales,,,FL,1/24/2005 0:00 +Newtown,,CIRCLE,CT,1/24/2005 7:00 +Maryville,,OTHER,TN,1/24/2005 8:56 +Maui,,FIREBALL,HI,1/24/2005 15:42 +Tulsa,RED,LIGHT,OK,1/24/2005 16:15 +Arden,,LIGHT,NC,1/24/2005 17:45 +Lake Wales,,DISK,FL,1/24/2005 20:10 +Lake Wales,,FORMATION,FL,1/24/2005 20:10 +Wimberley,GREEN BLUE,LIGHT,TX,1/24/2005 22:45 +San Antonio,GREEN,LIGHT,TX,1/24/2005 22:50 +Fountain Inn,,LIGHT,SC,1/25/2005 0:00 +New Carrollton,,LIGHT,MD,1/25/2005 6:32 +Center Harbor,,,NH,1/25/2005 8:00 +New York City,,CYLINDER,NY,1/25/2005 17:00 +Great Falls,GREEN,FIREBALL,MT,1/25/2005 18:25 +Anchorage,ORANGE,LIGHT,AK,1/25/2005 21:50 +Rogersville,,FIREBALL,TN,1/26/2005 2:00 +Piedmont,,LIGHT,SC,1/26/2005 15:10 +Minneapolis,,OTHER,MN,1/26/2005 16:00 +Morristown,,TRIANGLE,TN,1/26/2005 21:00 +Saybrook,,RECTANGLE,OH,1/26/2005 21:00 +Naperville,,OTHER,IL,1/27/2005 4:15 +Miami,,LIGHT,FL,1/27/2005 5:20 +Abingdon,,LIGHT,MD,1/27/2005 19:00 +Phoenix,,LIGHT,AZ,1/27/2005 19:15 +Corsica,,OVAL,PA,1/27/2005 19:30 +State College,,DIAMOND,PA,1/27/2005 20:00 +St. Charles,BLUE,,KY,1/28/2005 2:30 +Hamlet,,OTHER,IN,1/28/2005 5:32 +Waianae,,TRIANGLE,HI,1/28/2005 7:30 +Blaine,BLUE,,MN,1/28/2005 18:00 +Lyndeborough,,OTHER,NH,1/28/2005 20:00 +Mesa,RED,TRIANGLE,AZ,1/28/2005 20:00 +Mesa,,LIGHT,AZ,1/28/2005 21:00 +Mesa,,TRIANGLE,AZ,1/28/2005 21:00 +Mesa,RED,FORMATION,AZ,1/28/2005 21:03 +Mesa,,OTHER,AZ,1/28/2005 21:10 +Hastings,,OVAL,MN,1/28/2005 21:45 +Mesa,RED,LIGHT,AZ,1/28/2005 21:50 +Moultrie,,TRIANGLE,GA,1/28/2005 23:00 +Carson,,,CA,1/29/2005 1:00 +Los Angeles,,DISK,CA,1/29/2005 17:00 +Orangevale,RED,TRIANGLE,CA,1/29/2005 19:05 +Yelm,,TRIANGLE,WA,1/30/2005 19:00 +Morgan Hill,,LIGHT,CA,1/30/2005 20:15 +Mason,,VARIOUS,OH,1/30/2005 23:00 +Modesto,,CHEVRON,CA,1/30/2005 23:12 +Wood River,,OVAL,NE,1/31/2005 0:00 +Hartford,ORANGE,OTHER,CT,1/31/2005 7:15 +Tallahassee,,SPHERE,FL,1/31/2005 7:30 +Homer Glen,,,IL,1/31/2005 18:20 +Penn Valley,BLUE,OTHER,CA,1/31/2005 19:00 +Commack,,CHEVRON,NY,1/31/2005 19:30 +Columbia City,,TRIANGLE,IN,1/31/2005 22:00 +Puyallup,,LIGHT,WA,1/31/2005 22:45 +Pinellas Park,,FORMATION,FL,2/1/2005 3:10 +Adamsville,,FORMATION,OH,2/1/2005 5:30 +Kent,,SPHERE,WA,2/1/2005 9:25 +Adamsville,,FORMATION,OH,2/1/2005 17:30 +Adamsville,,FORMATION,OH,2/1/2005 17:40 +Temecula,RED BLUE,OVAL,CA,2/1/2005 18:30 +Clarks Summit,RED BLUE,TRIANGLE,PA,2/1/2005 19:00 +Scituate,,LIGHT,RI,2/1/2005 20:30 +Laguna Niguel,,LIGHT,CA,2/1/2005 21:10 +Horn Lake,,TRIANGLE,MS,2/1/2005 22:00 +West Covina,,OTHER,CA,2/2/2005 2:00 +Berkeley,,OVAL,CA,2/2/2005 7:30 +Cedar Falls,,FIREBALL,IA,2/2/2005 13:23 +New York City,,FIREBALL,NY,2/2/2005 14:20 +Hauppauge,,,NY,2/2/2005 17:29 +Beacon,,LIGHT,NY,2/2/2005 19:00 +Tulsa,BLUE,LIGHT,OK,2/2/2005 19:15 +New Hartford,,LIGHT,CT,2/2/2005 20:00 +New Iberia,,CIRCLE,LA,2/2/2005 20:00 +Puyallup,RED,OTHER,WA,2/2/2005 23:13 +Myrtle Beach,,OTHER,SC,2/3/2005 15:00 +Talbott,,,TN,2/3/2005 17:00 +Tucson,,LIGHT,AZ,2/3/2005 19:30 +Phoenix,,FIREBALL,AZ,2/3/2005 20:00 +Fort Collins,,TRIANGLE,CO,2/3/2005 21:30 +Colorado Springs,,CIRCLE,CO,2/3/2005 22:30 +Phoenix,,RECTANGLE,AZ,2/4/2005 0:00 +Centreville,,CIRCLE,VA,2/4/2005 4:00 +San Jose,,SPHERE,CA,2/4/2005 9:45 +Gainesville,,DISK,FL,2/4/2005 17:00 +Port Orchard,,TRIANGLE,WA,2/4/2005 18:40 +Port Orchard,,TRIANGLE,WA,2/4/2005 18:45 +Newton,,FIREBALL,IL,2/4/2005 19:30 +Riverdale,,LIGHT,UT,2/4/2005 19:54 +Benson,,LIGHT,AZ,2/4/2005 20:00 +Monroeville,,,NJ,2/5/2005 0:00 +Lexington,,DISK,NC,2/5/2005 1:00 +Mt. Juliet,,,TN,2/5/2005 1:00 +Fort Smith,,LIGHT,CA,2/5/2005 5:10 +Milwaukee,,DIAMOND,WI,2/5/2005 7:45 +Honoluu,,LIGHT,HI,2/5/2005 17:30 +Middletown,,LIGHT,PA,2/6/2005 1:08 +Sacramento,,OTHER,CA,2/6/2005 15:45 +Spokane,RED,,WA,2/6/2005 19:00 +Napa,,LIGHT,CA,2/6/2005 23:57 +West Haven,,DISK,CT,2/7/2005 0:00 +Branchville,,CIRCLE,SC,2/7/2005 1:30 +Phoenix,,,AZ,2/7/2005 3:30 +Tujunga,,FIREBALL,CA,2/7/2005 5:39 +Issaquah,RED,DISK,WA,2/7/2005 6:00 +Biggs,,DIAMOND,CA,2/7/2005 7:05 +Rittman,,OTHER,OH,2/8/2005 10:30 +Owings Mills,,TRIANGLE,MD,2/8/2005 18:15 +Pittsburg,,DISK,NH,2/8/2005 18:30 +Chehalis,,,WA,2/8/2005 19:15 +Millican,,,OR,2/8/2005 19:30 +Rutland,,FIREBALL,MA,2/8/2005 19:45 +San Jose,,,CA,2/8/2005 22:30 +Portland,,LIGHT,OR,2/9/2005 2:00 +San Diego,,DISK,CA,2/9/2005 9:26 +New York City,,DISK,NY,2/9/2005 16:00 +Agoura Hills,,SPHERE,CA,2/9/2005 16:30 +Boston,,DISK,MA,2/9/2005 20:00 +Pittsburg,ORANGE,CIRCLE,CA,2/9/2005 22:00 +Plano,,CIGAR,TX,2/10/2005 0:25 +Scranton,ORANGE,OVAL,PA,2/10/2005 14:00 +Charlotte,,CIGAR,NC,2/10/2005 15:45 +New York City,,LIGHT,NY,2/10/2005 19:50 +Coalville,,VARIOUS,IA,2/10/2005 20:20 +Reno,,FIREBALL,NV,2/10/2005 21:30 +Woodland,,CIRCLE,CA,2/10/2005 22:00 +Bellignham,,OTHER,WA,2/10/2005 23:00 +Baltimore,,OTHER,MD,2/10/2005 23:10 +Vancouver,RED BLUE,EGG,WA,2/10/2005 23:20 +Waukesha,ORANGE,SPHERE,WI,2/10/2005 23:55 +Shelton,,SPHERE,WA,2/11/2005 1:00 +Sellersburg,,FLASH,IN,2/11/2005 2:00 +Peoria,,TRIANGLE,AZ,2/11/2005 5:15 +Brunswick,,SPHERE,GA,2/11/2005 6:28 +Randle,,TRIANGLE,WA,2/11/2005 19:08 +Hugo,,FORMATION,OK,2/11/2005 19:30 +Deltona,,TRIANGLE,FL,2/11/2005 20:00 +Bellingham,,CIRCLE,MA,2/12/2005 1:00 +Seldon,GREEN,LIGHT,NY,2/12/2005 2:30 +Coal Valley,,CIRCLE,IL,2/12/2005 7:00 +Indianapolis,,RECTANGLE,IN,2/12/2005 10:00 +Waukesha,BLUE,VARIOUS,WI,2/12/2005 12:10 +Jordan,,SPHERE,MN,2/12/2005 18:00 +Santa Maria,,LIGHT,CA,2/12/2005 18:00 +Almont,,LIGHT,MI,2/12/2005 18:55 +San Diego,,,CA,2/12/2005 19:00 +San Diego,,EGG,CA,2/12/2005 19:00 +Clarksville,,,TN,2/12/2005 22:45 +Jeffersonville,,CIGAR,GA,2/12/2005 23:00 +Stonefort,YELLOW,SPHERE,IL,2/12/2005 23:53 +Brownsville,,CIRCLE,TX,2/13/2005 16:45 +Dorchester,,DISK,MA,2/13/2005 17:45 +Ventura,,OTHER,CA,2/13/2005 20:00 +Baltimore,,LIGHT,MD,2/14/2005 1:15 +Fort Smith,,,AR,2/14/2005 9:30 +Grand Isle,,TRIANGLE,LA,2/14/2005 9:30 +Friday Harbor,,CIRCLE,WA,2/14/2005 11:16 +Boston,,OTHER,MA,2/14/2005 16:15 +Redmond,,SPHERE,OR,2/14/2005 17:00 +Ephrata,,CYLINDER,WA,2/14/2005 19:00 +Rockport,,LIGHT,TX,2/14/2005 19:00 +Moses Lake,,LIGHT,WA,2/14/2005 21:30 +Ellinwood,,FIREBALL,KS,2/15/2005 8:30 +Riverside,,OTHER,CA,2/15/2005 9:30 +Stanwood,,DISK,WA,2/15/2005 12:40 +Parkersburg,,CIGAR,WV,2/15/2005 14:45 +Seattle,,OTHER,WA,2/15/2005 15:00 +Lancaster,,OVAL,SC,2/15/2005 17:00 +Sarasota,,,FL,2/15/2005 19:35 +Harrisburg,,LIGHT,PA,2/15/2005 20:45 +Harrisburg,,OTHER,PA,2/15/2005 20:45 +Stanford,GREEN,,KY,2/15/2005 22:00 +New Hope,,LIGHT,KY,2/15/2005 23:15 +Golden Valley,,OVAL,MN,2/16/2005 1:00 +San Bernardino,,SPHERE,CA,2/16/2005 15:00 +Lakin,,LIGHT,WV,2/16/2005 20:00 +Brighton,RED,TRIANGLE,IA,2/16/2005 23:00 +Minneapolis,,,MN,2/17/2005 1:38 +Paradise Valley,,TRIANGLE,AZ,2/17/2005 4:45 +Nashville,,CIRCLE,TN,2/17/2005 13:30 +Mukwonago,BLUE,LIGHT,WI,2/17/2005 16:30 +Louisville,,OTHER,KY,2/17/2005 17:08 +Tucker,,FORMATION,GA,2/17/2005 18:00 +Sandersville,,TEARDROP,GA,2/17/2005 18:34 +Borrego Springs,,TRIANGLE,CA,2/17/2005 19:00 +Raleigh,,SPHERE,NC,2/17/2005 19:47 +Mt. Gilead,,LIGHT,NC,2/17/2005 20:30 +Glen Cove,,DIAMOND,NY,2/17/2005 23:20 +Las Vegas,,TRIANGLE,NV,2/18/2005 3:00 +Collinsville,,TRIANGLE,IL,2/18/2005 4:00 +Beatty,,FORMATION,NV,2/18/2005 5:31 +Bridgewater,,OVAL,NJ,2/18/2005 10:01 +Cullman,GREEN,FIREBALL,AL,2/18/2005 16:30 +Batavia,,LIGHT,NY,2/18/2005 18:55 +Peru,,,IN,2/18/2005 19:45 +Rockwell,,TRIANGLE,NC,2/18/2005 20:30 +Kokomo,RED ORANGE,,IN,2/18/2005 21:00 +Cleburne,,LIGHT,TX,2/19/2005 2:00 +La Veta,,FLASH,CO,2/19/2005 2:00 +Terre Haute,,OVAL,IN,2/19/2005 3:00 +Leesburg,,FIREBALL,FL,2/19/2005 3:45 +Fredericksburg,ORANGE,OVAL,VA,2/19/2005 3:55 +Altamonte Springs,RED,CIRCLE,FL,2/19/2005 7:15 +Rockville,,CIGAR,MD,2/19/2005 14:35 +Clayton,GREEN,TRIANGLE,DE,2/19/2005 21:00 +Kissimmee,,LIGHT,FL,2/19/2005 22:45 +Rochester,,EGG,NY,2/19/2005 23:47 +Murrells Inlet,,,SC,2/20/2005 0:00 +Hicksville,,EGG,NY,2/20/2005 2:15 +Islamorado,GREEN,DISK,FL,2/20/2005 3:00 +Kissimmee,,SPHERE,FL,2/20/2005 10:30 +Fairfax,,LIGHT,VA,2/20/2005 19:20 +Boston,,,MA,2/20/2005 19:30 +Cincinnati,,LIGHT,OH,2/20/2005 22:00 +Woodward,,FIREBALL,OK,2/21/2005 11:20 +Phoenix,,LIGHT,AZ,2/21/2005 18:00 +Southfield,,TRIANGLE,MI,2/21/2005 18:30 +New Bern,,LIGHT,NC,2/21/2005 19:07 +North Richland Hills,,LIGHT,TX,2/21/2005 20:15 +Eugene,,TRIANGLE,OR,2/21/2005 22:00 +Green Valley,,TRIANGLE,AZ,2/22/2005 17:30 +Rockford,,OTHER,IL,2/22/2005 17:30 +Dallas-Frisco,ORANGE,LIGHT,TX,2/22/2005 18:00 +Kettle Falls,,FIREBALL,WA,2/22/2005 20:00 +Granite Falls,GREEN,FIREBALL,WA,2/22/2005 20:40 +Eugene,,,OR,2/22/2005 21:30 +Brewerton,,TRIANGLE,NY,2/22/2005 22:30 +Raynham,BLUE,LIGHT,MA,2/22/2005 23:30 +Palo Alto,GREEN BLUE,LIGHT,CA,2/22/2005 23:45 +Pickens,,CIRCLE,SC,2/23/2005 3:00 +Modesto,BLUE,FIREBALL,CA,2/23/2005 3:10 +Newark,,,DE,2/23/2005 3:15 +Casper,,LIGHT,WY,2/23/2005 14:00 +Fort Myers,,CIRCLE,FL,2/23/2005 16:50 +Royal Palm Beach,,OTHER,FL,2/23/2005 17:22 +Edgerton,RED,TRIANGLE,WI,2/23/2005 19:00 +Howell,RED,CYLINDER,NJ,2/23/2005 19:00 +Tavares,,CYLINDER,FL,2/23/2005 19:00 +Hoover,,TRIANGLE,AL,2/23/2005 19:30 +Bellingham,,FIREBALL,WA,2/23/2005 20:09 +Ft. Shawnee,,TRIANGLE,OH,2/23/2005 20:37 +Shoreline,GREEN,LIGHT,WA,2/23/2005 22:00 +Sumner,,OTHER,WA,2/23/2005 22:03 +Chesterfield,GREEN,DISK,VA,2/23/2005 23:05 +Peru,,,IN,2/24/2005 1:00 +Edgewater,,SPHERE,MD,2/24/2005 9:00 +San Marcos,,CIRCLE,CA,2/24/2005 13:30 +Ojai,,SPHERE,CA,2/24/2005 17:56 +Coal Hill,ORANGE,LIGHT,AR,2/24/2005 19:20 +Coal Hill,ORANGE,LIGHT,AR,2/24/2005 19:20 +Coal Hill,ORANGE,LIGHT,AR,2/24/2005 19:20 +Bellevue,,TRIANGLE,WA,2/24/2005 20:02 +Tacoma,,LIGHT,WA,2/24/2005 20:40 +Green Valley,,TRIANGLE,AZ,2/24/2005 21:45 +Newton,,SPHERE,NJ,2/24/2005 22:00 +Tabiona,,EGG,UT,2/24/2005 22:00 +Seeley Lake,,LIGHT,MT,2/25/2005 2:00 +Houston,,CIRCLE,TX,2/25/2005 3:10 +Geneva,,OTHER,NY,2/25/2005 5:30 +Rapid City,,LIGHT,SD,2/25/2005 5:47 +San Arden,,VARIOUS,CA,2/25/2005 10:11 +Ripley,,CIRCLE,WV,2/25/2005 17:00 +Biloxi,,SPHERE,MS,2/25/2005 17:30 +Terre Haute,,FIREBALL,IN,2/25/2005 21:00 +Oceanside,,DISK,NY,2/25/2005 21:30 +Connersville,,CIRCLE,IN,2/25/2005 22:00 +Glen Ullin,,CHEVRON,ND,2/25/2005 22:20 +Jonesboro,,DISK,AR,2/26/2005 0:00 +Ridgecrest,,,CA,2/26/2005 1:00 +Ester,,FLASH,AK,2/26/2005 5:40 +Incline Village,RED,,NV,2/26/2005 14:46 +Lincoln,,VARIOUS,NE,2/26/2005 17:55 +Nevada,,DISK,NV,2/26/2005 18:34 +Milwaukie,,SPHERE,OR,2/26/2005 20:00 +Oakdale,,TRIANGLE,CA,2/26/2005 20:13 +Fayetteville,,TRIANGLE,IL,2/26/2005 20:30 +Bellerose,,OTHER,NY,2/26/2005 22:15 +Reno,,,NV,2/27/2005 0:00 +New York City,,,NY,2/27/2005 0:05 +Barneveld,,TRIANGLE,NY,2/27/2005 1:00 +Lexington,,,KY,2/27/2005 4:35 +Ann Arbor,,CIRCLE,MI,2/27/2005 7:00 +Denver DIA,,DISK,CO,2/27/2005 12:30 +Winchester,,VARIOUS,CA,2/27/2005 16:50 +Palmdale,GREEN,LIGHT,CA,2/27/2005 17:30 +Boise,,DISK,ID,2/27/2005 19:50 +Seattle,,LIGHT,WA,2/27/2005 20:30 +Bedford,,OVAL,TX,2/27/2005 22:45 +Harrisonville,GREEN,DISK,MO,2/28/2005 0:00 +La Grande,,OVAL,OR,2/28/2005 8:00 +Big Timber,RED GREEN,,MT,2/28/2005 21:30 +Sevierville,,TRIANGLE,TN,2/28/2005 22:15 +Wellington,,FIREBALL,FL,2/28/2005 23:30 +Humble,,,TX,3/1/2005 0:00 +Newport Beach,,SPHERE,CA,3/1/2005 1:00 +Palatka,,TRIANGLE,FL,3/1/2005 3:30 +El Paso,,SPHERE,TX,3/1/2005 16:00 +DeWitt,,LIGHT,IA,3/1/2005 17:50 +Weston,,TEARDROP,FL,3/1/2005 18:00 +Marked Tree,,,AR,3/1/2005 19:50 +Sumner,,LIGHT,WA,3/1/2005 20:05 +Mt. Vernon,,TRIANGLE,IN,3/1/2005 20:30 +Amarillo,,VARIOUS,TX,3/1/2005 21:30 +Rockford,,CIRCLE,MI,3/1/2005 22:00 +Las Vegas,,TRIANGLE,NV,3/1/2005 22:15 +Manassas,BLUE,SPHERE,VA,3/1/2005 22:30 +Wayne,,TEARDROP,NJ,3/1/2005 22:30 +Milton,,CIGAR,MA,3/2/2005 0:00 +Okeechobee,RED BLUE,OTHER,FL,3/2/2005 1:20 +Okeechobee,,TRIANGLE,FL,3/2/2005 2:00 +Oaklawn - Hickory Hills,RED GREEN,LIGHT,IL,3/2/2005 5:20 +Preston,,TRIANGLE,MO,3/2/2005 6:15 +San Rafael,,CHEVRON,CA,3/2/2005 12:00 +Atascadero,,CYLINDER,CA,3/2/2005 16:55 +Maumee,,OTHER,OH,3/2/2005 18:58 +Oak Forest,,FLASH,IL,3/2/2005 20:10 +Galatia Area,BLUE,,IL,3/2/2005 20:13 +Bethel,,CIRCLE,OH,3/2/2005 21:00 +Atlanta,,OTHER,GA,3/2/2005 22:00 +Bethel,,SPHERE,OH,3/2/2005 22:00 +Gainesville,,FLASH,FL,3/2/2005 23:26 +Monroe,,CIRCLE,WA,3/3/2005 4:18 +Hayward,,SPHERE,CA,3/3/2005 4:33 +Murray,,LIGHT,KY,3/3/2005 16:57 +Auburndale,ORANGE,OTHER,FL,3/3/2005 18:30 +Imperial,GREEN BLUE,DIAMOND,CA,3/3/2005 20:20 +Phoenix,,LIGHT,AZ,3/3/2005 20:30 +Holland,,SPHERE,MI,3/3/2005 21:30 +Phoenix,,LIGHT,AZ,3/3/2005 22:10 +St. Louis,,OTHER,MO,3/3/2005 22:15 +Parma,,OVAL,OH,3/3/2005 22:39 +Boise,,DIAMOND,ID,3/3/2005 23:40 +St. Louis,,TRIANGLE,MO,3/4/2005 0:00 +Seville,RED,OTHER,OH,3/4/2005 11:15 +North Carolina,,VARIOUS,NC,3/4/2005 13:15 +Sacramento,,SPHERE,CA,3/4/2005 16:00 +Markham,GREEN,TRIANGLE,VA,3/4/2005 19:25 +Plymouth,,TEARDROP,NH,3/4/2005 20:00 +Fairbanks,,LIGHT,AK,3/4/2005 20:45 +Albion,,LIGHT,NY,3/4/2005 22:30 +Pittsburg,,FIREBALL,CA,3/5/2005 7:30 +Niles,,CIGAR,OH,3/5/2005 14:30 +California,,CIRCLE,CA,3/5/2005 14:52 +Fayettville,,FIREBALL,TN,3/5/2005 18:55 +Dallas,,DISK,TX,3/5/2005 19:15 +Elmira,,CIRCLE,NY,3/5/2005 21:00 +Grand Marais,,,MN,3/5/2005 21:30 +Schroon Lake,,DISK,NY,3/6/2005 0:00 +Terre Haute,,CHEVRON,IN,3/6/2005 5:07 +Terre Haute,,CHEVRON,IN,3/6/2005 5:12 +Howell,,,NJ,3/6/2005 15:30 +Great Falls,,CIGAR,MT,3/6/2005 17:00 +Follansbee,,OTHER,WV,3/6/2005 20:30 +Granby,,EGG,VT,3/6/2005 22:42 +St. Augustine,ORANGE,TRIANGLE,FL,3/6/2005 23:57 +Lancaster,,CYLINDER,CA,3/7/2005 9:00 +Mason City,,CIRCLE,IA,3/7/2005 15:35 +Galesburg,,LIGHT,IL,3/7/2005 18:15 +Seatac,,RECTANGLE,WA,3/7/2005 19:35 +Alturas,,TRIANGLE,CA,3/7/2005 20:00 +Alturas,,TRIANGLE,CA,3/7/2005 20:00 +San Antonio,,LIGHT,TX,3/7/2005 20:00 +Bozeman,,,MT,3/7/2005 20:30 +Ontario,,CIRCLE,OR,3/7/2005 20:30 +Hernando,,TEARDROP,MS,3/7/2005 22:00 +Westport,,DISK,CT,3/7/2005 23:00 +Victorville,,SPHERE,CA,3/8/2005 9:30 +El Paso,,DISK,TX,3/8/2005 17:00 +West St. Paul,,SPHERE,MN,3/8/2005 18:00 +Seattle,,LIGHT,WA,3/8/2005 19:00 +Claflin,YELLOW,LIGHT,KS,3/8/2005 19:30 +Grants Pass,,LIGHT,OR,3/8/2005 19:30 +Idaho Falls,,FIREBALL,ID,3/8/2005 20:00 +Downieville,,FLASH,CA,3/8/2005 21:00 +Mesquite,,,TX,3/8/2005 21:00 +Yuba City,RED,TRIANGLE,CA,3/8/2005 21:00 +Belfair,,TRIANGLE,WA,3/8/2005 21:15 +Tacna,,FORMATION,AZ,3/8/2005 21:40 +Atglen,,SPHERE,PA,3/8/2005 22:00 +Partlow,,DISK,VA,3/9/2005 3:00 +Camp Hill,,LIGHT,PA,3/9/2005 5:40 +Paragon,,CYLINDER,IN,3/9/2005 17:00 +Yorktown,,TRIANGLE,VA,3/9/2005 19:00 +Coal Hill,ORANGE,LIGHT,AR,3/9/2005 19:23 +Thetford,,FLASH,VT,3/9/2005 19:58 +Virginia Beach,,VARIOUS,VA,3/9/2005 20:00 +Clear Lake,ORANGE,TRIANGLE,TX,3/9/2005 20:30 +West Palm Beach,,OVAL,FL,3/9/2005 21:00 +Coydon,RED,CIRCLE,IN,3/9/2005 21:54 +Las Vegas,,TRIANGLE,NV,3/9/2005 22:15 +Wellington,,OTHER,FL,3/9/2005 23:45 +Lancaster,ORANGE,FIREBALL,CA,3/10/2005 2:31 +Worley,,TRIANGLE,ID,3/10/2005 5:40 +Palm Coast,,CIRCLE,FL,3/10/2005 12:00 +Baltimore BWI Airport,,DISK,MD,3/10/2005 13:30 +Delray Beach,,LIGHT,FL,3/10/2005 15:00 +Bellingham,,SPHERE,WA,3/10/2005 15:15 +Bainbridge Island,,EGG,WA,3/10/2005 17:35 +Kelso,,,WA,3/10/2005 17:55 +Castleton,,,NY,3/10/2005 19:00 +Portland,,LIGHT,OR,3/10/2005 19:00 +Parlin,BLUE,OVAL,NJ,3/10/2005 19:30 +Emmett,RED ORANGE,LIGHT,ID,3/10/2005 20:05 +Latham,ORANGE,DIAMOND,NY,3/10/2005 20:10 +Laguna Pueblo,,CIRCLE,NM,3/10/2005 21:00 +Superior,ORANGE,DISK,WI,3/10/2005 23:30 +Eustace,,CYLINDER,TX,3/11/2005 0:00 +Daly City,,LIGHT,CA,3/11/2005 0:35 +Mill Valley,,DISK,CA,3/11/2005 19:15 +Headland,,LIGHT,AL,3/11/2005 20:00 +Hillsboro,,,OR,3/11/2005 21:15 +Des Moines,,DISK,IA,3/11/2005 21:30 +Canton,,,MS,3/11/2005 23:20 +Chicago,ORANGE,FLASH,IL,3/11/2005 23:30 +Gambrills,,,MD,3/12/2005 4:30 +Basom,,FIREBALL,NY,3/12/2005 10:00 +Ashland,,SPHERE,OR,3/12/2005 12:15 +New Glarus,,DISK,WI,3/12/2005 14:34 +Clatskanie,GREEN,,OR,3/12/2005 19:45 +Florence,,,OR,3/12/2005 19:45 +Hood River,BLUE,SPHERE,OR,3/12/2005 19:45 +Joyce,,LIGHT,WA,3/12/2005 19:45 +Kelso,,FIREBALL,WA,3/12/2005 19:45 +La Grande,,FIREBALL,OR,3/12/2005 19:45 +Lopez Island,,FIREBALL,WA,3/12/2005 19:45 +Millville,GREEN,FIREBALL,CA,3/12/2005 19:45 +Multnomah Village,GREEN,SPHERE,OR,3/12/2005 19:45 +Portland,,FIREBALL,OR,3/12/2005 19:45 +Seattle,,,WA,3/12/2005 19:45 +Tigard,,,OR,3/12/2005 19:45 +Ledbetter,,,KY,3/12/2005 22:35 +Johnson City,,OTHER,TN,3/12/2005 22:50 +Kelseyville,RED,DISK,CA,3/12/2005 23:00 +Holland,,CIRCLE,MI,3/13/2005 0:00 +Lacey,,LIGHT,WA,3/13/2005 0:05 +Metairie,,LIGHT,LA,3/13/2005 1:00 +Boulder City,,TRIANGLE,NV,3/13/2005 1:30 +Richland,,TRIANGLE,WA,3/13/2005 4:00 +St. Charles,,VARIOUS,MO,3/13/2005 20:10 +Gettysburg,,DIAMOND,PA,3/13/2005 22:00 +Cranston,,TRIANGLE,RI,3/13/2005 23:00 +Kenmore,,TRIANGLE,WA,3/13/2005 23:00 +Walker,,,MN,3/13/2005 23:15 +Philadelphia,,TRIANGLE,PA,3/14/2005 0:00 +Matawan,,LIGHT,NJ,3/14/2005 10:00 +Suffolk,,,VA,3/14/2005 11:30 +Guntersville,,DISK,AL,3/14/2005 13:00 +York,,DISK,NY,3/14/2005 19:49 +San Pedro,,OVAL,CA,3/14/2005 20:30 +Miami,,LIGHT,FL,3/14/2005 22:30 +Bluefield,,OTHER,WV,3/14/2005 23:00 +Columbia,,RECTANGLE,MS,3/14/2005 23:00 +Columbia,,RECTANGLE,MS,3/14/2005 23:00 +Liberty,,LIGHT,MO,3/14/2005 23:50 +Kennebec,BLUE,LIGHT,ME,3/15/2005 0:00 +Springfield,,TEARDROP,MO,3/15/2005 0:00 +Las Vegas,,OTHER,NE,3/15/2005 1:00 +Mayfield,,LIGHT,NY,3/15/2005 1:00 +Sherrodsville,,LIGHT,OH,3/15/2005 1:00 +Garden Grove,ORANGE,TEARDROP,CA,3/15/2005 6:20 +San Marcos,,RECTANGLE,TX,3/15/2005 15:00 +Paradise,,CIGAR,CA,3/15/2005 16:00 +Grand Junction,,OTHER,CO,3/15/2005 19:00 +Yucca Valley,,,CA,3/15/2005 19:00 +Fresno,,OTHER,GA,3/15/2005 19:10 +Jefferson County,,,WI,3/15/2005 19:15 +Fort Worth,,DISK,TX,3/15/2005 20:00 +Hanceville,,TRIANGLE,AL,3/15/2005 20:00 +Las Vegas,,OTHER,NV,3/15/2005 21:00 +Beaver Dam,,CIRCLE,WI,3/15/2005 21:30 +Grantville,,LIGHT,PA,3/15/2005 21:50 +Somerville,,OTHER,NJ,3/16/2005 7:56 +Somerville,,OTHER,NJ,3/16/2005 7:59 +Grandview,,CIGAR,MO,3/16/2005 16:00 +Bulls Gap,,DISK,TN,3/16/2005 18:00 +Auburn,,LIGHT,ME,3/16/2005 18:36 +Coopertown,RED,FORMATION,TN,3/16/2005 20:00 +East Hampton,,LIGHT,CT,3/16/2005 20:00 +West Lafayette,,CIRCLE,IN,3/16/2005 20:58 +Port Royal,,LIGHT,PA,3/16/2005 22:32 +Carrollton,RED,VARIOUS,OH,3/17/2005 0:00 +Idaho Falls,,CIGAR,ID,3/17/2005 8:30 +Souderton,,LIGHT,PA,3/17/2005 14:30 +Houston,,TRIANGLE,TX,3/17/2005 19:25 +Naples,,LIGHT,FL,3/17/2005 20:30 +Chillicothe,ORANGE,LIGHT,OH,3/17/2005 21:00 +Millstone,,RECTANGLE,KY,3/17/2005 23:07 +Honey Brook,,FLASH,PA,3/18/2005 1:00 +Antioch,,CIRCLE,IL,3/18/2005 13:00 +Newland,,VARIOUS,NC,3/18/2005 14:58 +Rochester,,CIGAR,NH,3/18/2005 19:15 +Blanchard,,,OK,3/18/2005 20:00 +South Portsmouth,,CIRCLE,KY,3/18/2005 21:00 +Harrison,,OVAL,NJ,3/19/2005 14:20 +Gardner,,TRIANGLE,MA,3/19/2005 19:45 +Miami,,DISK,FL,3/19/2005 20:00 +Miami,,DISK,FL,3/19/2005 20:05 +Columbia,,FIREBALL,CT,3/19/2005 20:30 +Burna,,VARIOUS,KY,3/19/2005 20:45 +Waterford,,CIRCLE,MI,3/19/2005 21:35 +Annandale,,CIRCLE,MN,3/19/2005 23:00 +no data,,VARIOUS,NV,3/19/2005 23:00 +Phoenix,,LIGHT,AZ,3/20/2005 3:30 +McCamey,,OVAL,TX,3/20/2005 6:00 +Hedgesville,,LIGHT,WV,3/20/2005 8:30 +Pembroke Pines,,LIGHT,FL,3/20/2005 21:11 +Tuscola,,LIGHT,TX,3/20/2005 22:00 +Fort Collins,,,CO,3/20/2005 23:00 +Crystal River,,FIREBALL,FL,3/20/2005 23:20 +Tuscola,,LIGHT,TX,3/20/2005 23:30 +Scottsdale,,TRIANGLE,AZ,3/21/2005 0:17 +Flagstaff,,TRIANGLE,AZ,3/21/2005 0:30 +Castro Valley,,EGG,CA,3/21/2005 9:30 +Scottsdale,,TRIANGLE,AZ,3/21/2005 12:20 +Cook County,,TRIANGLE,MN,3/21/2005 12:21 +Charlotte,,LIGHT,NC,3/21/2005 19:20 +Kokomo,,FIREBALL,IN,3/21/2005 19:30 +Anoka,ORANGE,TRIANGLE,MN,3/21/2005 20:00 +Lafayette,ORANGE,CIRCLE,IN,3/21/2005 20:00 +Chillicothe,,LIGHT,OH,3/21/2005 20:20 +Sheridan,,CHEVRON,IN,3/21/2005 20:30 +Zionsville,,FIREBALL,IN,3/21/2005 20:40 +Kokomo,ORANGE,FIREBALL,IN,3/21/2005 21:00 +Logansport,,SPHERE,IN,3/21/2005 21:00 +Santa Monica,,DIAMOND,CA,3/21/2005 21:04 +Gilbert,BLUE,TRIANGLE,AZ,3/22/2005 0:15 +Tucson,,LIGHT,AZ,3/22/2005 0:15 +Mesa,,TRIANGLE,AZ,3/22/2005 0:20 +Chandler,,TRIANGLE,AZ,3/22/2005 0:25 +Reno,,OVAL,NV,3/22/2005 16:00 +Brick,,LIGHT,NJ,3/22/2005 18:50 +Brooklyn,,LIGHT,MI,3/22/2005 22:45 +Tehachapi,,LIGHT,CA,3/23/2005 19:35 +Murrieta,RED BLUE,TRIANGLE,CA,3/23/2005 20:00 +Tinley Park,,TRIANGLE,IL,3/23/2005 20:30 +Blanco,,CIGAR,TX,3/24/2005 13:00 +Lemont,,CIRCLE,IL,3/24/2005 22:30 +Napa,RED ORANGE,FIREBALL,CA,3/24/2005 23:58 +Batsto,,TRIANGLE,NJ,3/25/2005 0:00 +Rogers,,RECTANGLE,AR,3/25/2005 3:00 +Plover,,LIGHT,WI,3/25/2005 7:30 +Spruce Pine,,LIGHT,NC,3/25/2005 10:11 +Tucson,,DIAMOND,AZ,3/25/2005 16:30 +Hamburg,,CIRCLE,NY,3/25/2005 22:00 +Las Vegas,,LIGHT,NV,3/25/2005 23:30 +Baldwin,,CIGAR,WI,3/26/2005 14:34 +Prescott,,FIREBALL,AZ,3/26/2005 17:00 +Tampa,,LIGHT,FL,3/26/2005 20:00 +Palm Desert,,TRIANGLE,CA,3/26/2005 23:14 +Omaha,,FIREBALL,NE,3/27/2005 0:00 +Rochester,,,NY,3/27/2005 2:00 +Hialeah Gardens,RED ORANGE,,FL,3/27/2005 11:30 +Los Alamitos,,FORMATION,CA,3/27/2005 18:45 +Milton,,,VT,3/27/2005 20:26 +Derry,,VARIOUS,PA,3/27/2005 22:30 +San Diego,,TRIANGLE,CA,3/27/2005 23:00 +Cedar Falls,,LIGHT,IA,3/27/2005 23:05 +Hialeah Gardens,,CIRCLE,FL,3/27/2005 23:30 +Larned,,CYLINDER,KS,3/27/2005 23:40 +Miami,,CIRCLE,FL,3/28/2005 2:20 +Mineral Springs,,OTHER,NC,3/28/2005 6:30 +Cedar Rapids,,DISK,IA,3/28/2005 21:15 +Melbourne,,,FL,3/28/2005 22:30 +Longmont,,CIRCLE,CO,3/29/2005 4:30 +Solsberry,,SPHERE,IN,3/29/2005 19:28 +Nassau,,LIGHT,NY,3/29/2005 23:00 +Austin,,TRIANGLE,TX,3/29/2005 23:50 +Clifton,,FIREBALL,VA,3/30/2005 0:30 +Bellows Falls,,LIGHT,VT,3/30/2005 7:30 +San Francisco,,,CA,3/30/2005 14:00 +The Dalles,,SPHERE,OR,3/30/2005 14:00 +Kingsport,,CIGAR,TN,3/30/2005 19:00 +Bison,,CIRCLE,KS,3/30/2005 19:30 +Clyde,,FORMATION,NY,3/30/2005 22:00 +San Francisco,,TEARDROP,CA,3/30/2005 22:28 +Newcomerstown,,DISK,OH,3/31/2005 0:01 +Green Brook,,,NJ,3/31/2005 2:48 +Simi Valley,,LIGHT,CA,3/31/2005 5:45 +Omaha,,DISK,NE,3/31/2005 13:00 +Borrego Springs,RED,,CA,3/31/2005 18:30 +Windsor Co.,RED,CIRCLE,VT,3/31/2005 20:00 +Hopkinton,,TRIANGLE,NH,3/31/2005 21:30 +Cleves,,LIGHT,OH,3/31/2005 23:02 +Dallas,,RECTANGLE,TX,3/31/2005 23:15 +Clovis,,CIRCLE,CA,4/1/2005 1:00 +Memphis,RED,DISK,TN,4/1/2005 1:00 +Flagstaff,,LIGHT,AZ,4/1/2005 3:00 +Pomona,,OVAL,CA,4/1/2005 3:16 +Petoskey,,SPHERE,MI,4/1/2005 7:30 +Blyth,,CIRCLE,AZ,4/1/2005 10:00 +Sedona,,FORMATION,AZ,4/1/2005 10:30 +Cincinnati,,SPHERE,OH,4/1/2005 16:30 +Wentzville,,CHEVRON,MO,4/1/2005 17:00 +Lake Las Vegas Henderson,,LIGHT,NV,4/1/2005 21:00 +Tucson,,TRIANGLE,AZ,4/1/2005 21:00 +Van Nuys,,CIRCLE,CA,4/1/2005 21:00 +Phoenix,,TRIANGLE,AZ,4/2/2005 0:37 +Clovis,,,CA,4/2/2005 4:10 +Paragould,RED,FLASH,AR,4/2/2005 5:00 +Nashua,,SPHERE,NH,4/2/2005 15:00 +Lee's Summit,,LIGHT,MO,4/2/2005 15:30 +Lake Oswego,,VARIOUS,OR,4/2/2005 16:20 +Morgantown,,CIRCLE,WV,4/2/2005 17:00 +Savannah,,CIRCLE,GA,4/2/2005 21:30 +Akron,GREEN,FLASH,OH,4/2/2005 22:30 +Minneapolis,YELLOW,TRIANGLE,MN,4/3/2005 3:50 +Slippery Rock,,,PA,4/3/2005 5:00 +Jacksonville,,CHEVRON,NC,4/3/2005 11:30 +New Orleans,,VARIOUS,LA,4/3/2005 13:50 +Valdosta,,,GA,4/3/2005 15:25 +Palm Springs,,CIGAR,FL,4/3/2005 16:00 +Soddy Daisy,,,TN,4/3/2005 22:15 +Ishpeming,BLUE,TRIANGLE,MI,4/3/2005 22:29 +Wentzville,,FIREBALL,MO,4/4/2005 3:00 +Nashville,,LIGHT,TN,4/4/2005 4:00 +Morehead City,,TRIANGLE,NC,4/4/2005 21:50 +Dayville,,OTHER,CT,4/4/2005 22:45 +Klamath Falls,,OTHER,OR,4/5/2005 16:20 +East Otis,,CIGAR,MA,4/5/2005 21:00 +Phelan,ORANGE,VARIOUS,CA,4/5/2005 21:00 +Lake Mead,,FORMATION,AZ,4/6/2005 0:00 +Oakdale,,SPHERE,CA,4/6/2005 20:40 +Palm Springs,ORANGE,TRIANGLE,CA,4/6/2005 21:04 +Hinkley,ORANGE,FORMATION,CA,4/6/2005 21:15 +Reno,,LIGHT,NV,4/6/2005 21:30 +Chester,,CIRCLE,VA,4/7/2005 0:00 +Waukee,,CIRCLE,IA,4/7/2005 1:30 +Carizzo Plains National Mounument,,CIRCLE,CA,4/7/2005 6:30 +Lake Havasu City,RED,OTHER,AZ,4/7/2005 8:30 +Lake Stevens,,EGG,WA,4/7/2005 13:30 +Deming,,VARIOUS,NM,4/7/2005 17:01 +St. Ignatius,,SPHERE,MT,4/7/2005 20:00 +Omaha,,DIAMOND,NE,4/7/2005 21:00 +Hopkins,,TRIANGLE,MN,4/7/2005 23:00 +Greensboro,,DISK,NC,4/8/2005 6:38 +Dallas,,,TX,4/8/2005 17:00 +Utica,,CIRCLE,NY,4/8/2005 17:00 +Ritzville,RED,,WA,4/8/2005 21:15 +Kansas City,,CIRCLE,KS,4/8/2005 21:30 +Jamestown,,,NY,4/8/2005 22:00 +Hagerstown,,,MD,4/8/2005 22:45 +Springfield,,CIRCLE,MA,4/9/2005 0:00 +Osceola,,FIREBALL,MO,4/9/2005 1:00 +Marshalltown,,CIRCLE,IA,4/9/2005 1:43 +El Paso,,FIREBALL,IL,4/9/2005 2:10 +Amityville,,DISK,NY,4/9/2005 8:39 +El Cajon,BLUE,CIRCLE,CA,4/9/2005 12:00 +Auburn Hills,,OTHER,MI,4/9/2005 13:00 +Sidney,,,TX,4/9/2005 19:09 +Sidney,,TRIANGLE,TX,4/9/2005 19:09 +Oak Harbor,,FORMATION,WA,4/9/2005 20:00 +Allston,,TRIANGLE,MA,4/9/2005 20:25 +Sidney,,TRIANGLE,TX,4/9/2005 21:12 +Sidney,,TRIANGLE,TX,4/9/2005 21:12 +Sicklerville,YELLOW,TRIANGLE,NJ,4/9/2005 21:33 +Amesbury,RED YELLOW GREEN,LIGHT,MA,4/9/2005 21:40 +Orange,,OVAL,CT,4/9/2005 22:30 +Wasilla,,LIGHT,AK,4/9/2005 22:50 +Salt Lake City,,VARIOUS,UT,4/10/2005 2:37 +South Beach,,CIRCLE,FL,4/10/2005 9:00 +La Quinta,,CIRCLE,CA,4/10/2005 13:00 +Phoenix,,OVAL,AZ,4/10/2005 13:30 +Greenwood,,TRIANGLE,IN,4/10/2005 21:40 +Santa Cruz,RED,,CA,4/10/2005 22:52 +Fairbanks,,CIRCLE,AK,4/11/2005 0:00 +Northboro,,CIRCLE,MA,4/11/2005 0:00 +Ashland,,VARIOUS,OR,4/11/2005 2:00 +Ludlow,,CHEVRON,CA,4/11/2005 4:30 +Tucson,BLUE,DISK,AZ,4/11/2005 11:50 +Dublin,GREEN,DISK,VA,4/11/2005 13:00 +P. Lakes,,DISK,FL,4/11/2005 16:30 +Island Pond,RED,CYLINDER,VT,4/11/2005 21:54 +Northborough,BLUE,LIGHT,MA,4/11/2005 22:00 +Pompano Beach,,LIGHT,FL,4/11/2005 22:00 +Austin,,FIREBALL,AR,4/11/2005 23:15 +Payson,,,AZ,4/12/2005 12:00 +Los Angeles,,TRIANGLE,CA,4/12/2005 13:00 +Ricmond,,OVAL,CA,4/12/2005 13:00 +Santa Monica,,TRIANGLE,CA,4/12/2005 13:00 +Los Angeles,,TRIANGLE,CA,4/12/2005 13:15 +Tucson,,DISK,AZ,4/12/2005 14:00 +Loveland,,TRIANGLE,CO,4/12/2005 21:00 +Lake Forest,,LIGHT,CA,4/12/2005 22:00 +Ewing,ORANGE,SPHERE,MO,4/12/2005 22:15 +Hollywood,,,CA,4/12/2005 23:00 +Lehigh Acres,,OTHER,FL,4/13/2005 0:30 +Lomita,,CIRCLE,CA,4/13/2005 5:22 +Las Vegas,,LIGHT,NV,4/13/2005 13:00 +Somerset,BLUE,CIGAR,NJ,4/13/2005 14:15 +Redmond,,VARIOUS,WA,4/13/2005 17:30 +Bentonville,,LIGHT,AR,4/13/2005 21:30 +Katy,,LIGHT,TX,4/13/2005 21:30 +Greendale,RED BLUE,LIGHT,WI,4/13/2005 21:45 +Morgantown,,,WV,4/13/2005 22:00 +Spokane,,SPHERE,WA,4/13/2005 22:53 +Del Rio,,OVAL,TX,4/14/2005 1:00 +York,,DISK,PA,4/14/2005 5:00 +Iowa City,,FIREBALL,IA,4/14/2005 11:56 +Sunbury,,EGG,PA,4/14/2005 16:30 +East Greenwich,RED,TRIANGLE,RI,4/14/2005 20:30 +Waterford,,LIGHT,WI,4/14/2005 20:30 +St. Louis,,CIRCLE,MO,4/14/2005 20:52 +Beaver Dam,,LIGHT,WI,4/14/2005 21:30 +Hayward,,TRIANGLE,CA,4/14/2005 22:00 +McDonough,,VARIOUS,GA,4/14/2005 22:00 +Jasper,RED BLUE,VARIOUS,AR,4/14/2005 23:00 +Phoenix,,CIGAR,AZ,4/14/2005 23:30 +Phoenix,,LIGHT,AZ,4/14/2005 23:49 +Eagan,,CHEVRON,MN,4/15/2005 1:20 +Ringe,,,NH,4/15/2005 11:00 +Elizabethtown,,CIRCLE,KY,4/15/2005 15:15 +Gulfport,,OTHER,MS,4/15/2005 18:00 +South Point,,LIGHT,OH,4/15/2005 19:00 +St. Louis,,CIRCLE,MO,4/15/2005 21:00 +Littleton,,TRIANGLE,CO,4/15/2005 22:00 +Raleigh,,CIRCLE,NC,4/16/2005 0:58 +Sherwood,,SPHERE,AR,4/16/2005 7:00 +Van Nuys,,CIRCLE,CA,4/16/2005 14:45 +Monmouth County,,CIGAR,NJ,4/16/2005 15:00 +Bowling Green,,OVAL,KY,4/16/2005 17:00 +Mendon,RED BLUE,LIGHT,MA,4/16/2005 17:00 +Pelham Manor,,OTHER,NY,4/16/2005 18:27 +Brookston,,TRIANGLE,IN,4/16/2005 20:30 +Sharpsville,,LIGHT,IN,4/16/2005 20:30 +Mulberry,,CIRCLE,IN,4/16/2005 20:45 +Lafayette,,FLASH,IN,4/16/2005 20:55 +Kokomo,,FORMATION,IN,4/16/2005 21:30 +Defiance,,OTHER,OH,4/16/2005 22:00 +Kinderhook,RED GREEN BLUE,VARIOUS,NY,4/16/2005 22:00 +Lake Placid,,LIGHT,FL,4/16/2005 22:00 +West Lafayette,,DISK,IN,4/16/2005 22:30 +Houston,GREEN,CIRCLE,TX,4/16/2005 22:40 +Brick,,DIAMOND,NJ,4/17/2005 1:00 +Erie,,OTHER,PA,4/17/2005 3:30 +Goshen,BLUE,CIRCLE,AR,4/17/2005 5:15 +Topeka,ORANGE YELLOW BLUE,EGG,KS,4/17/2005 5:25 +Rutherford,,OTHER,NJ,4/17/2005 13:00 +Springfield,,CIGAR,IL,4/17/2005 15:00 +Wake Forest,,,NC,4/17/2005 16:00 +Athol,BLUE,CIRCLE,MA,4/17/2005 17:00 +Sonora,,LIGHT,CA,4/17/2005 21:05 +Grovetown,,CIRCLE,GA,4/17/2005 23:00 +Anchorage,,OVAL,AK,4/18/2005 0:00 +Arizona,,SPHERE,AZ,4/18/2005 11:00 +Las Vegas,,DISK,NV,4/18/2005 13:00 +Los Angeles,,TRIANGLE,CA,4/18/2005 13:20 +Philadelphia,,RECTANGLE,PA,4/18/2005 17:58 +Shreveport,ORANGE,LIGHT,LA,4/18/2005 22:45 +Orlando,,CIRCLE,FL,4/19/2005 0:15 +Montgomery,,VARIOUS,AL,4/19/2005 1:00 +Vancouver,,DISK,WA,4/19/2005 1:00 +North Hills,,CYLINDER,CA,4/19/2005 12:00 +Moberly,,DISK,MO,4/19/2005 13:00 +San Francisco,,OTHER,CA,4/19/2005 17:45 +Palmetto,,DIAMOND,GA,4/19/2005 19:50 +Wilmington,,LIGHT,DE,4/19/2005 21:00 +Glennville,,,GA,4/19/2005 22:40 +Constableville,RED,OTHER,NY,4/20/2005 0:00 +Los Angeles,,LIGHT,CA,4/20/2005 21:00 +Rapid City,,TRIANGLE,SD,4/20/2005 21:00 +Sunnyvale,,LIGHT,CA,4/21/2005 4:50 +Austin,,,TX,4/21/2005 20:55 +Idledale,,,CO,4/21/2005 21:45 +Flint,,LIGHT,MI,4/21/2005 22:05 +Piscataway,GREEN,,NJ,4/21/2005 22:50 +Miami Beach,,RECTANGLE,FL,4/22/2005 8:00 +Hitchcock,,LIGHT,TX,4/22/2005 21:27 +Orange County,,OTHER,FL,4/22/2005 22:40 +New Strawn,,CIRCLE,KS,4/23/2005 1:08 +Crystal Beach,,CHEVRON,TX,4/23/2005 12:00 +Juneau,,DISK,AK,4/23/2005 18:30 +Homosassa,YELLOW,LIGHT,FL,4/23/2005 22:00 +Peachtree City,,LIGHT,GA,4/23/2005 23:00 +Willits,,CIRCLE,CA,4/24/2005 12:00 +Hyde Park,,FIREBALL,NY,4/24/2005 19:45 +Pawtucket,,VARIOUS,RI,4/24/2005 19:45 +Mattituck,RED YELLOW BLUE,OVAL,NY,4/24/2005 19:55 +Newport,,CONE,OR,4/24/2005 21:00 +Mechanicsville,,CIGAR,VA,4/24/2005 21:45 +Boston,,,MA,4/24/2005 22:00 +Superior,,TRIANGLE,WI,4/24/2005 22:45 +Manteno,,,IL,4/24/2005 23:30 +Lompoc,,DIAMOND,CA,4/25/2005 2:50 +Laconia,,LIGHT,NH,4/25/2005 3:00 +Lompoc,,DIAMOND,CA,4/25/2005 3:00 +Durham,,CIGAR,NC,4/25/2005 12:00 +Lexington,,DISK,KY,4/25/2005 20:00 +Mecca,,,CA,4/25/2005 22:30 +Rose City,RED,LIGHT,MI,4/25/2005 22:30 +Tucson,,TEARDROP,AZ,4/26/2005 10:00 +Laconia,,OTHER,NH,4/26/2005 20:30 +Lewiston,,,ME,4/26/2005 20:30 +Deer Isle,,LIGHT,ME,4/26/2005 21:00 +Deer Isle,,OTHER,ME,4/26/2005 21:30 +Troutdale,,LIGHT,OR,4/26/2005 21:45 +Fort Smith,,DISK,AR,4/26/2005 22:30 +Logan,,TRIANGLE,UT,4/26/2005 22:50 +Ottumwa,,TRIANGLE,IA,4/26/2005 23:00 +Palm Beach,,,FL,4/27/2005 4:30 +Portland,BLUE,FIREBALL,OR,4/27/2005 5:43 +Orlando,,FLASH,FL,4/28/2005 0:00 +Blytheville,,VARIOUS,AR,4/28/2005 2:00 +Holualoa,,LIGHT,HI,4/28/2005 5:00 +Phoenix,,FORMATION,AZ,4/28/2005 9:00 +Pomona,,FLASH,CA,4/29/2005 1:16 +North Little Rock,,TRIANGLE,AR,4/29/2005 18:30 +West Palm Beach,,TRIANGLE,FL,4/29/2005 19:30 +Hialeah,,SPHERE,FL,4/29/2005 20:00 +Miami,,LIGHT,FL,4/29/2005 20:00 +Charleston,,LIGHT,SC,4/29/2005 20:55 +Jacksonville,,LIGHT,FL,4/29/2005 20:55 +Jupiter,,FORMATION,FL,4/29/2005 20:55 +Orange Park,ORANGE,CIRCLE,FL,4/29/2005 20:55 +Pembroke Pines,,FIREBALL,FL,4/29/2005 20:55 +St. Simons Island,,VARIOUS,GA,4/29/2005 20:55 +Waycross,ORANGE,,GA,4/29/2005 20:55 +Wellington,,LIGHT,FL,4/29/2005 20:55 +Deerfield Beach,,FIREBALL,FL,4/29/2005 20:58 +Cary,YELLOW,LIGHT,NC,4/29/2005 21:00 +Chelmsford,,SPHERE,MA,4/29/2005 21:00 +Contocook,,,NH,4/29/2005 21:00 +Daufuskie Island,,OTHER,SC,4/29/2005 21:00 +Goldsboro,,,NC,4/29/2005 21:00 +Kennebunk,,CIRCLE,ME,4/29/2005 21:00 +Kissimmee,,,FL,4/29/2005 21:00 +Lake City,ORANGE,LIGHT,FL,4/29/2005 21:00 +Miami,,TRIANGLE,FL,4/29/2005 21:00 +Palm City,,VARIOUS,FL,4/29/2005 21:00 +Palmetto,,LIGHT,FL,4/29/2005 21:00 +Truckee,,LIGHT,CA,4/29/2005 21:00 +Wilmington,,FIREBALL,NC,4/29/2005 21:00 +Tampa,,LIGHT,FL,4/29/2005 21:05 +Tampa,,LIGHT,FL,4/29/2005 21:06 +Charleston,BLUE,OTHER,SC,4/29/2005 21:10 +Lithia,ORANGE,FORMATION,FL,4/29/2005 21:10 +Clearwater,RED,FIREBALL,FL,4/29/2005 21:20 +Bradenton,,OVAL,FL,4/29/2005 21:30 +Fort Bragg,,CIRCLE,NC,4/29/2005 21:30 +Jupiter,,VARIOUS,FL,4/29/2005 21:30 +Olathe,,LIGHT,KS,4/29/2005 21:35 +Waterboro,,OVAL,ME,4/29/2005 21:45 +Plant City,,FORMATION,FL,4/29/2005 22:33 +Floral City,,TRIANGLE,FL,4/29/2005 22:45 +Cheltenham,,DISK,PA,4/29/2005 23:00 +Comfort,,TRIANGLE,TX,4/29/2005 23:00 +New York City,,CIRCLE,NY,4/29/2005 23:00 +Dunstable,RED GREEN,TRIANGLE,MA,4/30/2005 2:50 +Hayden,,LIGHT,ID,4/30/2005 5:00 +Murrieta,,CIRCLE,CA,4/30/2005 21:47 +Downey,ORANGE,FORMATION,CA,5/1/2005 0:30 +Portland,RED,LIGHT,OR,5/1/2005 0:45 +Portland,,DISK,OR,5/1/2005 1:00 +Portland,,LIGHT,OR,5/1/2005 1:00 +Portland,,OVAL,OR,5/1/2005 1:00 +Wayland,,LIGHT,MA,5/1/2005 3:00 +Rochester,,TRIANGLE,MI,5/1/2005 3:38 +Roman Nose State Park,,OTHER,OK,5/1/2005 4:00 +Independence,,OTHER,KY,5/1/2005 6:20 +Stevens Pass,,OTHER,WA,5/1/2005 13:00 +Luray,,CIGAR,VA,5/1/2005 15:21 +Fallbrook,,VARIOUS,CA,5/1/2005 16:11 +Palmdale,,SPHERE,CA,5/1/2005 23:00 +Fort Knox,,TRIANGLE,KY,5/2/2005 0:00 +Angels Camp,,CIRCLE,CA,5/2/2005 0:30 +Greensboro,,SPHERE,NC,5/2/2005 3:44 +Palmdale,,CIRCLE,CA,5/2/2005 14:05 +Clovis,,LIGHT,CA,5/2/2005 21:00 +Clovis,RED,LIGHT,CA,5/2/2005 21:00 +Mt. Rogers,,CONE,VA,5/2/2005 21:00 +Big Lake,GREEN BLUE,LIGHT,TX,5/2/2005 21:45 +Troy,GREEN,,TX,5/3/2005 1:07 +Solon,,,OH,5/3/2005 2:00 +Norfolk,,DISK,VA,5/3/2005 12:00 +Riggins,,OVAL,ID,5/3/2005 20:30 +Glenwood Springs,,FORMATION,CO,5/3/2005 22:03 +Portland,,CIRCLE,OR,5/3/2005 23:30 +Centerville,BLUE,TRIANGLE,GA,5/4/2005 21:00 +Beckville,,LIGHT,TX,5/4/2005 21:35 +Milford,,FLASH,IN,5/4/2005 22:00 +Horn Lake,,CYLINDER,MS,5/5/2005 9:00 +Ronkonkoma,,RECTANGLE,NY,5/5/2005 11:45 +Portage,,SPHERE,MI,5/5/2005 14:00 +Spokane,RED,FIREBALL,WA,5/5/2005 16:00 +Greenville,,CIGAR,NY,5/5/2005 17:30 +Rockport,,RECTANGLE,MA,5/5/2005 20:24 +Ansonia,,TRIANGLE,CT,5/5/2005 20:30 +Louisville,,TRIANGLE,KY,5/5/2005 21:00 +Margate,,LIGHT,FL,5/5/2005 22:00 +Troy,,TRIANGLE,MI,5/5/2005 22:00 +Bristol,,TRIANGLE,CT,5/5/2005 23:00 +Rustburg,RED ORANGE,,VA,5/5/2005 23:00 +Sedona,,LIGHT,AZ,5/6/2005 21:00 +Blue Springs,,,MO,5/6/2005 23:19 +San Francisco,,,CA,5/7/2005 12:03 +Pennington Gap,,CIRCLE,VA,5/7/2005 13:00 +Laconia,,DISK,NH,5/7/2005 15:40 +Corrales,,SPHERE,NM,5/7/2005 17:08 +Sedona,,LIGHT,AZ,5/7/2005 21:15 +Johnson City,,FIREBALL,TN,5/7/2005 21:45 +Warminster,,LIGHT,PA,5/7/2005 21:55 +Sedona,RED,LIGHT,AZ,5/7/2005 22:00 +Phoenix,,SPHERE,AZ,5/8/2005 11:00 +Vermillion Parish,RED,LIGHT,LA,5/8/2005 20:00 +Culver City,,TRIANGLE,CA,5/8/2005 21:30 +Black Canyon City,,,AZ,5/8/2005 22:00 +Carlisle,,CHEVRON,PA,5/9/2005 3:00 +Speedway,,,IN,5/9/2005 11:30 +Cumberland,,CIGAR,ME,5/9/2005 13:00 +Austin,GREEN,CIGAR,TX,5/9/2005 22:20 +Chandler,,LIGHT,AZ,5/9/2005 23:00 +Mesa,,,AZ,5/10/2005 1:40 +Kenosha,,CYLINDER,WI,5/10/2005 14:15 +Willmington,,LIGHT,CA,5/10/2005 14:15 +Columbia,,SPHERE,MD,5/10/2005 14:45 +Holstein,,,IA,5/10/2005 15:00 +McLean,,OTHER,VA,5/10/2005 15:00 +Sandpoint,,OTHER,ID,5/10/2005 17:00 +New Orleans,,CYLINDER,LA,5/10/2005 17:30 +Forest Hills,,TRIANGLE,NY,5/10/2005 21:15 +San Diego,,SPHERE,CA,5/10/2005 21:20 +Oklahoma City,ORANGE,,OK,5/11/2005 3:30 +Phoenix,,OTHER,AZ,5/11/2005 3:45 +Petaluma,,FLASH,CA,5/11/2005 11:30 +Kansas City,,,MO,5/11/2005 15:30 +Montcalm,,OVAL,NH,5/11/2005 21:00 +Northbridge,,SPHERE,MA,5/11/2005 21:45 +San Anselmo,,,CA,5/11/2005 21:55 +Wilmington,RED GREEN,,DE,5/11/2005 22:00 +Selinsgrove,,FIREBALL,PA,5/11/2005 23:25 +San Diego,,CIGAR,CA,5/12/2005 17:00 +Honeoye Falls,,DISK,NY,5/12/2005 18:30 +Parker,,DISK,CO,5/12/2005 20:28 +Lake Wales,,FORMATION,FL,5/12/2005 22:00 +Ball Ground,,CROSS,GA,5/12/2005 22:12 +Truckee,,OTHER,CA,5/12/2005 23:00 +Kirkland,,TRIANGLE,WA,5/13/2005 0:18 +Vista,,FIREBALL,CA,5/13/2005 0:30 +Blasdell,,OTHER,NY,5/13/2005 0:40 +Emory,,RECTANGLE,TX,5/13/2005 21:15 +Lake Forest,,TRIANGLE,CA,5/13/2005 21:30 +Sebastopol,,OTHER,CA,5/13/2005 22:58 +Cincinnati,,CIRCLE,OH,5/14/2005 2:00 +Fort Collins,YELLOW,OTHER,CO,5/14/2005 8:30 +Clear Lake,,,OK,5/14/2005 10:30 +Adams County,,FLASH,OH,5/14/2005 22:00 +no data,,TRIANGLE,TX,5/14/2005 22:30 +Earp,,TRIANGLE,CA,5/15/2005 0:00 +Las Vegas,,TRIANGLE,NV,5/15/2005 0:57 +Edmonds,,,WA,5/15/2005 3:00 +Troy,GREEN BLUE,LIGHT,MI,5/15/2005 5:00 +Clovis,,,NM,5/15/2005 5:33 +Mebane,,TEARDROP,NC,5/15/2005 7:30 +Parkersburg,,OVAL,WV,5/15/2005 7:45 +Lake Havasu City,,DISK,AZ,5/15/2005 13:00 +Fresno,,OTHER,CA,5/15/2005 13:17 +Apple Valley,,DISK,MN,5/15/2005 17:00 +Catasauqua,,OVAL,PA,5/15/2005 18:00 +Eagan,,DISK,MN,5/15/2005 19:35 +Dana Point,,CROSS,CA,5/15/2005 20:00 +Whittemore,,,MI,5/15/2005 20:30 +Las Vegas,,LIGHT,NV,5/15/2005 20:55 +Lodge,,FORMATION,SC,5/15/2005 21:30 +Orlando,,LIGHT,FL,5/15/2005 21:30 +Orlando,,SPHERE,FL,5/15/2005 21:30 +DeBary,,LIGHT,FL,5/15/2005 21:40 +Chicago,,CYLINDER,IL,5/15/2005 22:00 +Tampa,,,FL,5/15/2005 22:00 +Tustin,,DIAMOND,CA,5/15/2005 22:00 +Faber,RED,TRIANGLE,VA,5/15/2005 23:00 +El Paso,BLUE,CIRCLE,TX,5/15/2005 23:15 +Trinidad,,SPHERE,CO,5/16/2005 9:55 +Montague,,LIGHT,MA,5/16/2005 10:38 +Long Branch,,OTHER,NJ,5/16/2005 15:00 +Oklahoma City,RED,TRIANGLE,OK,5/16/2005 19:15 +Barstow,,DISK,CA,5/17/2005 14:00 +Kilgore,,SPHERE,TX,5/17/2005 21:58 +Abilene,,LIGHT,TX,5/17/2005 22:30 +Edwardsville,,SPHERE,IL,5/18/2005 13:20 +Black Mesa,,DISK,AZ,5/18/2005 15:00 +Santa Rosa,,SPHERE,NM,5/18/2005 19:30 +Holloman AFB,,LIGHT,NM,5/18/2005 20:00 +Denver,,LIGHT,CO,5/18/2005 21:29 +Phoenix,GREEN,DIAMOND,AZ,5/18/2005 21:45 +Phoenix,RED ORANGE YELLOW,LIGHT,AZ,5/18/2005 22:00 +Johnstown,,FORMATION,CO,5/19/2005 3:00 +Tesla,,TRIANGLE,WV,5/19/2005 4:00 +El Paso,,CIRCLE,TX,5/19/2005 6:00 +El Paso,,SPHERE,TX,5/19/2005 6:00 +Phoenix,,VARIOUS,AZ,5/19/2005 10:35 +Ledgewood,,EGG,NJ,5/19/2005 11:25 +Studio City,,,CA,5/19/2005 15:45 +Cheyenne,,OVAL,WY,5/19/2005 18:45 +Montgomery,,,AL,5/19/2005 22:00 +Cut Bank,,LIGHT,MT,5/20/2005 0:30 +Fergus Falls,,CIRCLE,MN,5/20/2005 2:53 +Fergus Falls,ORANGE,TRIANGLE,MN,5/20/2005 3:00 +Fergus Falls,ORANGE,TRIANGLE,MN,5/20/2005 3:00 +Redwood City,,OTHER,CA,5/20/2005 13:30 +Romulus,,CIRCLE,MI,5/20/2005 14:30 +Honolulu,,LIGHT,HI,5/20/2005 20:00 +Henderson,,SPHERE,NV,5/20/2005 20:03 +Russelllton,,,PA,5/20/2005 21:05 +Plains,,LIGHT,PA,5/20/2005 21:20 +San Diego,,CIRCLE,CA,5/20/2005 21:30 +Danvers,,OTHER,MA,5/20/2005 22:00 +Ipava,,FORMATION,IL,5/20/2005 22:08 +Bellevue,BLUE,CIRCLE,WA,5/20/2005 22:29 +Lincoln,,VARIOUS,NE,5/21/2005 0:30 +Suches,,TRIANGLE,GA,5/21/2005 1:00 +Holualoa,,VARIOUS,HI,5/21/2005 2:20 +Edgewood,,CIRCLE,NM,5/21/2005 9:58 +Dadeville,,CIRCLE,AL,5/21/2005 13:00 +Oxnard,,CIRCLE,CA,5/21/2005 18:00 +Lewisville,,VARIOUS,TX,5/21/2005 20:10 +Warm Springs,BLUE,LIGHT,NV,5/21/2005 22:00 +Watauga,,CIRCLE,TX,5/21/2005 22:00 +Arlington,,LIGHT,TX,5/21/2005 22:10 +Port Hueneme,,LIGHT,CA,5/21/2005 23:30 +Wichita,,SPHERE,KS,5/22/2005 1:24 +Waxahachie,,CYLINDER,TX,5/22/2005 20:12 +Santa Ana,,LIGHT,CA,5/22/2005 21:45 +Woodland Park,,FLASH,CO,5/22/2005 22:20 +Franklin Park,YELLOW,TEARDROP,IL,5/22/2005 23:00 +Ormond Beach,ORANGE,DIAMOND,FL,5/23/2005 6:30 +Orange Beach,,LIGHT,AL,5/23/2005 12:00 +Pomona,,LIGHT,CA,5/23/2005 19:00 +Phoenix,,TEARDROP,AZ,5/23/2005 20:25 +Little Falls,,OTHER,MN,5/23/2005 21:20 +St. George Island,RED,CHEVRON,FL,5/23/2005 21:30 +Orchard Lake,,LIGHT,MI,5/23/2005 22:00 +Midway,,TRIANGLE,GA,5/23/2005 22:30 +Otis,,LIGHT,OR,5/23/2005 23:00 +Statesville,,,NC,5/23/2005 23:00 +Warsaw,,TRIANGLE,MO,5/23/2005 23:00 +Anchor Point,,DISK,AK,5/24/2005 18:30 +Puyallup,,LIGHT,WA,5/24/2005 19:20 +Volcano,,DISK,HI,5/24/2005 19:35 +Sullivans Island,,LIGHT,SC,5/24/2005 20:00 +Chandler,,OTHER,AZ,5/24/2005 20:30 +Sullivans Island,,DISK,SC,5/24/2005 21:15 +Austin,,VARIOUS,TX,5/24/2005 22:30 +Cape Girardeau,,EGG,MO,5/24/2005 23:15 +Hellier,,LIGHT,KY,5/25/2005 0:00 +New York City,,EGG,NY,5/25/2005 0:30 +Oriental,GREEN,DISK,NC,5/25/2005 2:21 +Montgomery,,TRIANGLE,AL,5/25/2005 2:45 +Mason City,,,IA,5/25/2005 3:30 +San Francisco,,VARIOUS,CA,5/25/2005 16:15 +South Bend,,VARIOUS,IN,5/25/2005 19:45 +Lisbon,ORANGE,FORMATION,NY,5/25/2005 20:00 +Coral Springs,,CIRCLE,FL,5/25/2005 22:15 +Napoleonville,,SPHERE,LA,5/25/2005 23:00 +Sacramento,,TRIANGLE,CA,5/25/2005 23:00 +Ruther Glen,,CONE,VA,5/26/2005 13:00 +Fort Wayne,,LIGHT,IN,5/26/2005 22:00 +Bellingham,,CIRCLE,WA,5/26/2005 22:08 +Chimacum,,FLASH,WA,5/26/2005 22:58 +Vancouver,,DISK,WA,5/26/2005 23:00 +Denver,,DISK,CO,5/27/2005 12:00 +Brookville,,FORMATION,NY,5/27/2005 14:00 +St. Petersburg,,CIRCLE,FL,5/27/2005 21:26 +Noble,,TRIANGLE,OK,5/27/2005 23:30 +Roanoke,,FIREBALL,VA,5/27/2005 23:50 +Tacoma,,TRIANGLE,WA,5/27/2005 23:59 +Corydon,,LIGHT,IN,5/28/2005 0:00 +Tuttle,,DISK,ND,5/28/2005 2:00 +Vacaville,,DISK,CA,5/28/2005 11:35 +Meadowlands Marshes,,SPHERE,NJ,5/28/2005 17:00 +Glens Falls,,SPHERE,NY,5/28/2005 17:55 +Eagle Butte,,LIGHT,SD,5/28/2005 21:30 +Modesto,RED BLUE,TRIANGLE,CA,5/28/2005 21:45 +Bishop,BLUE,LIGHT,CA,5/28/2005 22:45 +Belmont,,TRIANGLE,NC,5/28/2005 23:15 +Torrance,,OTHER,CA,5/29/2005 2:00 +Covington,,CHEVRON,KY,5/29/2005 11:30 +Indianapolis Speedway,,DISK,IN,5/29/2005 11:30 +Indy,,DISK,IN,5/29/2005 11:30 +Jackson,,SPHERE,NJ,5/29/2005 17:25 +Riverview,,,FL,5/29/2005 19:00 +Satellite Beach,,OVAL,FL,5/30/2005 0:00 +Anaheim Hills,,LIGHT,CA,5/30/2005 2:36 +North Las Vegas,,SPHERE,NV,5/30/2005 11:00 +Bayonne,,VARIOUS,NJ,5/30/2005 13:00 +Nolanville,ORANGE,DISK,TX,5/30/2005 13:00 +Tucson,RED,OTHER,AZ,5/30/2005 20:00 +Knoxville,,CHEVRON,TN,5/30/2005 22:50 +Ben Wheeler,,LIGHT,TX,5/31/2005 2:00 +Lake Leelanau,BLUE,LIGHT,MI,5/31/2005 2:00 +Myrtle Beach,,LIGHT,SC,5/31/2005 2:00 +Golden Valley,,,MN,5/31/2005 3:30 +Greene,,OTHER,ME,5/31/2005 20:00 +Harwood Heights,,LIGHT,IL,5/31/2005 22:30 +Waves,,CHEVRON,NC,5/31/2005 22:30 +Corydon,,TRIANGLE,IN,6/1/2005 0:00 +Fremont,,TRIANGLE,CA,6/1/2005 0:00 +Satellite Beach,,,FL,6/1/2005 0:00 +Satellite Beach,,OVAL,FL,6/1/2005 0:00 +Chico,,FIREBALL,CA,6/1/2005 1:00 +Olathe,,,KS,6/1/2005 7:00 +Television broadcast,,DISK,FL,6/1/2005 12:00 +Albuquerque,,CIRCLE,NM,6/1/2005 15:00 +Hopkinsville,,LIGHT,KY,6/1/2005 16:00 +New York City,,RECTANGLE,NY,6/1/2005 17:35 +Charleston,,VARIOUS,SC,6/1/2005 20:35 +Phoenix,,LIGHT,AZ,6/1/2005 20:50 +no data,,CIRCLE,NV,6/1/2005 21:00 +Fate,BLUE,TRIANGLE,TX,6/1/2005 22:00 +Phoenix,ORANGE,CIRCLE,AZ,6/1/2005 23:00 +Baker City,,CIGAR,OR,6/2/2005 12:00 +Rahns,,OTHER,PA,6/2/2005 15:00 +St. Louis,,CYLINDER,MO,6/2/2005 18:00 +Spokane,,SPHERE,WA,6/2/2005 19:30 +Weldon,,OTHER,NC,6/2/2005 20:00 +Arenzville,ORANGE,TRIANGLE,IL,6/2/2005 21:30 +Cedar Rapids,,OTHER,IA,6/2/2005 22:15 +Tuscola,,DISK,TX,6/3/2005 0:55 +Englewood,,CIRCLE,CO,6/3/2005 14:15 +Abilene,,LIGHT,TX,6/4/2005 2:00 +Bethany,,DISK,OK,6/4/2005 16:00 +New York City,,LIGHT,NY,6/4/2005 19:40 +Kansas City,,VARIOUS,MO,6/4/2005 21:00 +Trout Lake,,LIGHT,WA,6/4/2005 22:15 +Sonora,,OTHER,CA,6/4/2005 22:23 +Creston,,FLASH,NC,6/4/2005 23:00 +Shelby Township,,VARIOUS,MI,6/5/2005 0:44 +Royal,BLUE,LIGHT,AR,6/5/2005 1:30 +Lincoln,,OTHER,RI,6/5/2005 11:35 +Asbury Park,,DISK,NJ,6/5/2005 12:00 +Asbury Park,,DISK,NJ,6/5/2005 12:00 +San Antono,,SPHERE,TX,6/5/2005 14:00 +"New York City, Manhattan",,CIRCLE,NY,6/5/2005 20:30 +Lancaster,,LIGHT,CA,6/5/2005 21:00 +Seattle,,TRIANGLE,WA,6/5/2005 21:00 +Stover,ORANGE,OTHER,MO,6/5/2005 21:00 +Yerington,RED GREEN,CYLINDER,NV,6/5/2005 21:35 +Phoenix,,FORMATION,AZ,6/5/2005 22:15 +Neosho,,CROSS,MO,6/5/2005 22:30 +Mishawaka,,LIGHT,IN,6/6/2005 2:00 +New York City,,DISK,NY,6/6/2005 2:00 +Montgomery,,,IL,6/6/2005 3:05 +Chicago,,OTHER,IL,6/6/2005 5:10 +Duluth,,CIRCLE,GA,6/6/2005 12:40 +North Myrtle Beach,,CIRCLE,SC,6/6/2005 13:00 +Deming,,DISK,NM,6/6/2005 13:28 +Casper,,RECTANGLE,WY,6/6/2005 15:52 +Kansas City,,TRIANGLE,MO,6/6/2005 19:00 +Bossier City,,VARIOUS,LA,6/6/2005 22:13 +Lawton,,,OK,6/6/2005 22:20 +Fresno,,OTHER,CA,6/6/2005 23:00 +Westmorland,BLUE,SPHERE,NY,6/7/2005 0:00 +Milwaukee,,,WI,6/7/2005 0:50 +Sibley,,OTHER,MO,6/7/2005 7:30 +Eagan,,CIRCLE,MN,6/7/2005 13:00 +Mojave National Preserve,,DISK,CA,6/7/2005 13:00 +Salt Lake City,YELLOW,OTHER,UT,6/7/2005 17:50 +Russell,RED,CONE,KS,6/7/2005 19:45 +East Setauket,,CIRCLE,NY,6/7/2005 20:10 +Charleston,,VARIOUS,SC,6/7/2005 20:30 +Mauston,RED,LIGHT,WI,6/7/2005 21:30 +Westwood,,TRIANGLE,NJ,6/7/2005 21:45 +Patterson,,SPHERE,CA,6/7/2005 22:00 +San Diego,RED,,CA,6/7/2005 22:00 +Neosho,,SPHERE,MO,6/8/2005 0:00 +Hickory,,VARIOUS,NC,6/8/2005 10:08 +Wayland,ORANGE,LIGHT,MI,6/8/2005 10:25 +Hopewell Junction,,LIGHT,NY,6/8/2005 10:40 +Phoenix,,LIGHT,AZ,6/8/2005 21:20 +Phoenix,,LIGHT,AZ,6/8/2005 22:00 +Lowell,,TRIANGLE,AR,6/8/2005 22:15 +Yakima,,TRIANGLE,WA,6/8/2005 23:30 +South San Francisco,,DISK,CA,6/9/2005 12:14 +Henderson,,OTHER,NV,6/9/2005 17:00 +Fort Wayne,,TRIANGLE,IN,6/9/2005 21:00 +Alexandria,,OTHER,VA,6/9/2005 22:47 +Torrington,,LIGHT,CT,6/9/2005 22:50 +Carlisle,RED,,PA,6/9/2005 23:00 +Olathe,,RECTANGLE,KS,6/9/2005 23:36 +Freeport,,,NY,6/10/2005 14:00 +Gainesville,,TRIANGLE,FL,6/10/2005 14:00 +Greenville,,VARIOUS,SC,6/10/2005 16:00 +Alexanria,,VARIOUS,LA,6/10/2005 20:30 +Buffalo,,LIGHT,NY,6/11/2005 0:00 +Jacksonville,,DISK,FL,6/11/2005 0:10 +Rockford,,LIGHT,IL,6/11/2005 0:30 +Surprise,,TRIANGLE,AZ,6/11/2005 15:00 +Tuckerton,,CIRCLE,NJ,6/11/2005 21:00 +Gresham,RED,TRIANGLE,OR,6/11/2005 23:00 +Gresham,RED,FIREBALL,OR,6/11/2005 23:20 +Gresham,RED,FIREBALL,OR,6/11/2005 23:20 +Northeast Kingdom,BLUE,FLASH,VT,6/11/2005 23:22 +Gresham,RED,CIRCLE,OR,6/11/2005 23:30 +Gresham,RED,LIGHT,OR,6/11/2005 23:30 +Barstow,,CIRCLE,CA,6/11/2005 23:40 +Chicago,,TRIANGLE,IL,6/12/2005 13:00 +Rio de Janeiro,,OVAL,AK,6/12/2005 14:00 +Center City,,TRIANGLE,MN,6/12/2005 15:00 +Tehachapi,,CHEVRON,CA,6/12/2005 20:33 +Church Hill,BLUE,LIGHT,TN,6/13/2005 0:00 +Fort Lauderdale,,CIRCLE,FL,6/13/2005 0:30 +Freeport,GREEN,FLASH,IL,6/13/2005 2:30 +Crestline,,CIRCLE,CA,6/13/2005 3:45 +Elk Park,,TRIANGLE,MT,6/13/2005 13:55 +Seattle,,,WA,6/13/2005 20:34 +Santa Clarita,RED,OTHER,CA,6/13/2005 21:15 +Bertram,,OVAL,TX,6/13/2005 21:45 +Kendall,,CIRCLE,FL,6/13/2005 22:30 +Baltimore,,,MD,6/14/2005 0:00 +Riverside,,LIGHT,CA,6/14/2005 3:00 +Huntsville,,TRIANGLE,AL,6/14/2005 4:00 +Denver,,DISK,CO,6/14/2005 11:00 +Carrollton,,CIRCLE,MO,6/14/2005 15:00 +Winter Haven,,OVAL,FL,6/14/2005 15:15 +Mechanicsville,,CIRCLE,VA,6/14/2005 18:00 +Council Bluffs,,TRIANGLE,IA,6/14/2005 21:00 +Phoenix,,LIGHT,AZ,6/14/2005 22:45 +Hartford,,CIRCLE,KS,6/14/2005 23:30 +Shilo,,FLASH,IL,6/15/2005 0:15 +Winston Salem,ORANGE,SPHERE,NC,6/15/2005 1:00 +Kent,,CIRCLE,WA,6/15/2005 2:30 +Valley Springs,ORANGE,SPHERE,CA,6/15/2005 2:30 +Pendleton,,LIGHT,KY,6/15/2005 4:00 +Fristo,,,MO,6/15/2005 4:21 +Harrington,,DIAMOND,WA,6/15/2005 11:30 +Fort Myers,,DISK,FL,6/15/2005 12:00 +St. Louis,,OVAL,MO,6/15/2005 12:00 +East Millinocket,,CIGAR,ME,6/15/2005 13:00 +New York City,,,NY,6/15/2005 15:00 +North Bergen,,,NJ,6/15/2005 15:00 +Driscoll,,CYLINDER,TX,6/15/2005 15:30 +Land O'Lakes,,RECTANGLE,FL,6/15/2005 15:45 +Bakersfield,,CIRCLE,CA,6/15/2005 16:00 +San Diego,,SPHERE,CA,6/15/2005 16:00 +Fletcher,,CIGAR,NC,6/15/2005 16:30 +Chicago,,DISK,IL,6/15/2005 17:00 +Nashville,,TRIANGLE,TN,6/15/2005 18:30 +Randleman,,OTHER,NC,6/15/2005 18:30 +Melbourne Beach,,FIREBALL,FL,6/15/2005 20:00 +Lagrange,,LIGHT,NY,6/15/2005 21:00 +Liberty,,TRIANGLE,MO,6/15/2005 21:00 +Phoenix,,LIGHT,AZ,6/15/2005 21:27 +Evans City,,TRIANGLE,PA,6/15/2005 22:00 +Paincines,,VARIOUS,CA,6/15/2005 22:00 +Stockbridge,,TRIANGLE,GA,6/15/2005 22:00 +Candler,RED,LIGHT,NC,6/15/2005 22:17 +Croswell,,OTHER,MI,6/15/2005 22:30 +Louisville,,LIGHT,KY,6/15/2005 22:30 +Durham,,LIGHT,NC,6/15/2005 23:00 +Arcata,,OTHER,CA,6/15/2005 23:30 +Chanhassen,,LIGHT,MN,6/15/2005 23:30 +White Township,,CIRCLE,NJ,6/15/2005 23:30 +Deltona,,LIGHT,FL,6/15/2005 23:50 +Blue Mound,,TRIANGLE,IL,6/16/2005 1:00 +Scobey,,,MT,6/16/2005 10:00 +Lucknow,,DISK,SC,6/16/2005 13:00 +Nikiski,,TRIANGLE,AK,6/16/2005 19:00 +Claremont,,CIRCLE,CA,6/16/2005 22:00 +Rocking Chair Mtn,,SPHERE,AZ,6/16/2005 22:03 +New Brighton,,LIGHT,PA,6/16/2005 22:30 +Betetourt County,,LIGHT,VA,6/16/2005 23:00 +Grayson,,TRIANGLE,KY,6/16/2005 23:00 +Dateland,,TRIANGLE,AZ,6/16/2005 23:30 +West Valley,,TRIANGLE,UT,6/17/2005 0:00 +Downers Grove,,CIRCLE,IL,6/17/2005 0:20 +Goodrich,,LIGHT,TX,6/17/2005 4:40 +Manassas,,OTHER,VA,6/17/2005 13:40 +Los Angeles,,DISK,CA,6/17/2005 14:30 +Chester,YELLOW,DISK,IL,6/17/2005 17:00 +Denver,,OVAL,CO,6/17/2005 18:30 +Overland,,SPHERE,MO,6/17/2005 19:08 +Romeoville,,SPHERE,IL,6/17/2005 20:30 +Trinadad,,VARIOUS,CA,6/17/2005 20:30 +Memphis,,TRIANGLE,TX,6/17/2005 21:00 +Palm Springs,,OTHER,CA,6/17/2005 22:00 +New York City,,,NY,6/17/2005 22:28 +Modesto,,SPHERE,CA,6/17/2005 23:00 +Ashland,,SPHERE,OR,6/18/2005 11:00 +Franklin Square,,DISK,NY,6/18/2005 14:00 +Irvine,,,CA,6/18/2005 15:00 +Chicago,,CIRCLE,IL,6/18/2005 18:15 +Salt Lake City,,SPHERE,UT,6/18/2005 20:00 +Boston,,TEARDROP,MA,6/18/2005 20:14 +Coral Springs,,TRIANGLE,FL,6/18/2005 20:30 +Kingman,BLUE,,KS,6/18/2005 21:00 +Granite Falls,,OTHER,MN,6/18/2005 21:05 +Tuscola,,FLASH,TX,6/18/2005 22:00 +Edinburgh,,LIGHT,NY,6/18/2005 22:55 +Ithaca,,OVAL,NY,6/18/2005 23:50 +Indiana,,OTHER,IN,6/19/2005 0:00 +Pensacola,,RECTANGLE,FL,6/19/2005 1:00 +Bellevue,,OVAL,WA,6/19/2005 6:17 +Safford,,DISK,AZ,6/19/2005 6:38 +Orland Park,,SPHERE,IL,6/19/2005 9:00 +Mesa,,TRIANGLE,AZ,6/19/2005 9:50 +Burley,,CIRCLE,ID,6/19/2005 11:00 +Mishawaka,,OVAL,IN,6/19/2005 12:00 +Palmer Lake,,DISK,CO,6/19/2005 12:15 +Albuquerque,,,NM,6/19/2005 12:50 +Canton,,CONE,PA,6/19/2005 14:00 +Santa Monica,,SPHERE,CA,6/19/2005 14:00 +Silverdale,,RECTANGLE,WA,6/19/2005 15:10 +Bethel,,SPHERE,NY,6/19/2005 15:30 +Deerfield Beach,,OTHER,FL,6/19/2005 17:00 +San Xavier del Bac,,DISK,AZ,6/19/2005 17:50 +Damascus,,CIRCLE,OR,6/19/2005 18:00 +Huntsville,,CIRCLE,AL,6/19/2005 18:10 +Westfield,,LIGHT,NJ,6/19/2005 19:00 +Riverside,,SPHERE,CA,6/19/2005 19:30 +Hillsborough,BLUE,RECTANGLE,NJ,6/19/2005 19:43 +Northern Florida,,TEARDROP,FL,6/19/2005 20:15 +Washougal,,OTHER,WA,6/19/2005 20:33 +Portland,,SPHERE,OR,6/19/2005 21:46 +Amarillo,,OTHER,TX,6/20/2005 3:00 +in air,,CIRCLE,TX,6/20/2005 12:00 +Glass Rock,,CIGAR,OH,6/20/2005 16:25 +Galesville,,FORMATION,WI,6/20/2005 21:00 +Frostproof,ORANGE,FIREBALL,FL,6/20/2005 21:30 +San Francisco,,FORMATION,CA,6/20/2005 21:45 +Gulf Shores,,LIGHT,AL,6/20/2005 21:50 +Potomac Falls,,TRIANGLE,VA,6/20/2005 23:22 +Vancouver,RED,CIRCLE,WA,6/21/2005 0:00 +Paradise,,OTHER,CA,6/21/2005 3:00 +Eagle Rock,,DISK,CA,6/21/2005 8:45 +New York City,,VARIOUS,NY,6/21/2005 19:00 +Santa Monica,,CYLINDER,CA,6/21/2005 19:15 +Blue Island,,TRIANGLE,IL,6/21/2005 20:15 +Madison Heights,,,MI,6/21/2005 22:00 +Rimersburg,,CIRCLE,PA,6/21/2005 23:15 +New York City,,TRIANGLE,NY,6/22/2005 1:35 +Centerville,,OTHER,OH,6/22/2005 14:00 +Carrizozo,,CIGAR,NM,6/22/2005 22:00 +Baker City,,LIGHT,OR,6/22/2005 22:30 +Woburn,,LIGHT,MA,6/22/2005 22:30 +De Soto,,TRIANGLE,IA,6/22/2005 22:48 +Encinitas,,LIGHT,CA,6/22/2005 23:30 +Millville,,SPHERE,NJ,6/22/2005 23:30 +Auburn,,LIGHT,WA,6/23/2005 0:25 +Leicester,,FIREBALL,NC,6/23/2005 0:49 +Calhoun,,TRIANGLE,GA,6/23/2005 2:00 +Hartland,RED,SPHERE,VT,6/23/2005 2:00 +Italy,,LIGHT,TX,6/23/2005 4:04 +Edison,,FLASH,NJ,6/23/2005 12:00 +South Bend,,RECTANGLE,IN,6/23/2005 12:20 +Houston,,OTHER,TX,6/23/2005 18:45 +Avinger,,CYLINDER,TX,6/23/2005 20:00 +Brownsville,RED YELLOW,TRIANGLE,PA,6/23/2005 23:01 +Grand Junction,,CIRCLE,CO,6/24/2005 3:00 +Scottsdale,,TRIANGLE,AZ,6/24/2005 3:05 +Palatine,,FORMATION,IL,6/24/2005 10:40 +Milan,,SPHERE,TN,6/24/2005 12:00 +Auburn,,CIRCLE,WA,6/24/2005 14:00 +Fort Pierce,,LIGHT,FL,6/24/2005 19:00 +Miami Beach,,CHEVRON,FL,6/24/2005 19:00 +Palatine,,FORMATION,IL,6/24/2005 19:40 +College Park,,TRIANGLE,MD,6/24/2005 22:00 +Indianapolis,,TRIANGLE,IN,6/24/2005 22:00 +Bobtown,,TRIANGLE,PA,6/24/2005 22:45 +East Rochester,,CIRCLE,NY,6/24/2005 22:46 +Girard,,TRIANGLE,OH,6/24/2005 22:50 +Baker,,TRIANGLE,CA,6/24/2005 23:00 +Decatur,,VARIOUS,AR,6/25/2005 0:00 +McKinney,GREEN,LIGHT,TX,6/25/2005 0:00 +Greenville,,,SC,6/25/2005 2:25 +Lake Arrowhead,,OVAL,CA,6/25/2005 3:00 +Milan,RED GREEN,DISK,MI,6/25/2005 4:30 +Newton,,EGG,NC,6/25/2005 12:01 +Lynnwood,,SPHERE,WA,6/25/2005 19:00 +Springfield,,VARIOUS,MO,6/25/2005 19:00 +Portland,,DISK,OR,6/25/2005 20:50 +Springfield,,OTHER,MO,6/25/2005 21:00 +Iowa,,DISK,IA,6/25/2005 21:30 +Hilton Head,,CIRCLE,SC,6/25/2005 22:00 +Yuma,,TRIANGLE,AZ,6/25/2005 22:15 +Huntington Station,,SPHERE,NY,6/25/2005 23:00 +Lima,,,NY,6/25/2005 23:00 +Ottawa,,LIGHT,KS,6/25/2005 23:00 +Whitefish,RED,CIRCLE,MT,6/26/2005 0:00 +South Willow Canyon,RED,DIAMOND,UT,6/26/2005 1:00 +Kerhonkson,,FORMATION,NY,6/26/2005 2:36 +Fresno,,TRIANGLE,CA,6/26/2005 3:30 +Hardin,,FLASH,TX,6/26/2005 9:45 +Silverlake,RED,LIGHT,CA,6/26/2005 10:00 +South Holland,,VARIOUS,IL,6/26/2005 11:00 +Levittown,,OVAL,PA,6/26/2005 19:10 +Aurora,,,IL,6/26/2005 22:30 +Charlotte,,CHEVRON,NC,6/27/2005 1:30 +LaSalle,,OVAL,MI,6/27/2005 4:30 +Colorado Springs,,TRIANGLE,CO,6/27/2005 21:00 +Lake CHarles,,TRIANGLE,LA,6/27/2005 21:10 +Kill Devil Hills,,SPHERE,NC,6/27/2005 21:25 +Mullan,,OTHER,ID,6/28/2005 2:00 +Hesperia,,DISK,CA,6/28/2005 13:00 +Naples,,SPHERE,FL,6/28/2005 13:00 +Stockbridge,,OTHER,GA,6/28/2005 21:50 +Angola,,LIGHT,IN,6/28/2005 22:00 +Eugene,,,OR,6/28/2005 22:15 +Brookings,,DIAMOND,OR,6/28/2005 22:59 +Gila Bend,,DISK,AZ,6/28/2005 23:30 +Gila Bend,,DISK,AZ,6/28/2005 23:30 +Carter,,TRIANGLE,OK,6/29/2005 0:30 +Lantana,,,FL,6/29/2005 20:45 +Edmond,,SPHERE,OK,6/29/2005 21:30 +Jacksonville,,FIREBALL,NC,6/29/2005 21:35 +Lantana,,,FL,6/29/2005 21:45 +San Jose,,LIGHT,CA,6/29/2005 21:46 +Harbor Springs,,LIGHT,MI,6/29/2005 22:15 +Ogden,,LIGHT,UT,6/29/2005 22:25 +Fort Worth,,LIGHT,TX,6/29/2005 23:25 +Corsicana,,CIRCLE,TX,6/30/2005 0:00 +Healdsburg,,TRIANGLE,CA,6/30/2005 0:00 +Johnston,,TRIANGLE,RI,6/30/2005 0:00 +Koh Samui,,,FL,6/30/2005 0:00 +Stony Brook,,SPHERE,NY,6/30/2005 0:00 +Twin Falls,,LIGHT,ID,6/30/2005 0:00 +Moses Lake,,LIGHT,WA,6/30/2005 0:30 +Exeter,,,NH,6/30/2005 2:00 +Laguna Woods,,CIRCLE,CA,6/30/2005 3:00 +Bakersfield,,DISK,CA,6/30/2005 3:15 +Beaverton,,LIGHT,OR,6/30/2005 4:00 +Signal Mtn.,,,TN,6/30/2005 4:00 +Sioux city,,OTHER,IA,6/30/2005 4:30 +Rossville,,CIGAR,GA,6/30/2005 8:45 +Fort Collins,,CIRCLE,CO,6/30/2005 11:45 +Saint Petersburg,,CIGAR,FL,6/30/2005 13:00 +Jacksonville,,LIGHT,FL,6/30/2005 14:00 +Olean,RED,OVAL,NY,6/30/2005 14:00 +Santa Clara,,DISK,CA,6/30/2005 17:35 +Sun Valley,,FIREBALL,NV,6/30/2005 19:00 +Altoona,,CIRCLE,PA,6/30/2005 19:30 +Carol Stream,,SPHERE,IL,6/30/2005 20:00 +Roseburg,,CIGAR,OR,6/30/2005 20:00 +St. Louis Park,,OTHER,MN,6/30/2005 20:00 +Houston,,OVAL,TX,6/30/2005 20:30 +Sun Valley,RED ORANGE,OTHER,NV,6/30/2005 21:00 +Parsons,RED,,KS,6/30/2005 22:00 +Ridgetop,GREEN,OTHER,TN,6/30/2005 22:00 +Ada,,,OK,6/30/2005 22:30 +Portage,,LIGHT,WI,6/30/2005 22:30 +Friendship,,DIAMOND,MD,6/30/2005 22:42 +Jackson,,FIREBALL,PA,6/30/2005 23:25 +Grapevine,,LIGHT,TX,6/30/2005 23:30 +Henrietta,,CIRCLE,MO,7/1/2005 1:30 +Roann,,DIAMOND,IN,7/1/2005 9:30 +Sedalia,,OTHER,CO,7/1/2005 14:00 +Braintree,,SPHERE,MA,7/1/2005 15:30 +Woodbury,,DISK,TN,7/1/2005 19:00 +West Seattle,,LIGHT,WA,7/1/2005 19:56 +Lawrence,,LIGHT,KS,7/2/2005 0:30 +Offshore,,CIGAR,FL,7/2/2005 2:48 +Dexter,,DIAMOND,OR,7/2/2005 3:30 +Oskaloosa,,FIREBALL,IA,7/2/2005 3:30 +Mt. Pleasant,,CIRCLE,WI,7/2/2005 21:45 +Portsmouth,,TRIANGLE,OH,7/2/2005 22:30 +Lowell,,LIGHT,OH,7/2/2005 23:00 +Spencerport,,TRIANGLE,NY,7/2/2005 23:30 +Auburn,,LIGHT,WA,7/3/2005 1:10 +Conway,,OTHER,AR,7/3/2005 8:19 +Destin,,,FL,7/3/2005 8:30 +Sunnyvale,,SPHERE,CA,7/3/2005 9:45 +Tacoma,,EGG,WA,7/3/2005 12:00 +Springfield,,DISK,OR,7/3/2005 14:00 +Malaga,,,WA,7/3/2005 19:57 +Palo Alto,,SPHERE,CA,7/3/2005 20:31 +Clearwater,,,FL,7/3/2005 21:00 +Lake Waco,,EGG,TX,7/3/2005 21:00 +Sultan,,LIGHT,WA,7/3/2005 21:45 +Casa Grande,,TRIANGLE,AZ,7/3/2005 22:00 +Richlands,,,VA,7/3/2005 22:01 +Westbrook,,SPHERE,ME,7/3/2005 22:20 +Howell,,,MI,7/3/2005 22:30 +Tacoma area,,,WA,7/3/2005 22:30 +Diamond Lake,,TRIANGLE,WA,7/3/2005 23:00 +Modesto,,,CA,7/3/2005 23:00 +Underwood,,LIGHT,ND,7/3/2005 23:00 +Woodburn,,LIGHT,OR,7/3/2005 23:00 +Flintstone,,LIGHT,MD,7/3/2005 23:45 +Belfair?,,LIGHT,WA,7/4/2005 0:15 +Mendota,,TRIANGLE,CA,7/4/2005 0:30 +Redmond,,FLASH,WA,7/4/2005 0:50 +Columbia,,LIGHT,MO,7/4/2005 3:30 +Fort Walton,,FIREBALL,FL,7/4/2005 9:00 +Roswell,,DISK,NM,7/4/2005 11:00 +Sanford,,TRIANGLE,FL,7/4/2005 12:30 +Painesville,,OVAL,OH,7/4/2005 14:30 +Laguna Woods,,FLASH,CA,7/4/2005 17:50 +Pismo Beach,,OTHER,CA,7/4/2005 18:00 +Davie,,DISK,FL,7/4/2005 19:00 +Freeport,,DISK,ME,7/4/2005 19:15 +Altadena,,LIGHT,CA,7/4/2005 20:00 +Big Bear Lake,,CIRCLE,CA,7/4/2005 20:00 +Colorado Springs,,CIRCLE,CO,7/4/2005 20:00 +Miami,,CIGAR,OK,7/4/2005 20:00 +Pocatello,,CIGAR,ID,7/4/2005 20:05 +Tulsa,,LIGHT,OK,7/4/2005 20:45 +Auburn Hills,,,MI,7/4/2005 21:00 +El Cajon,,LIGHT,CA,7/4/2005 21:00 +El Cajon,,OVAL,CA,7/4/2005 21:00 +San Diego,ORANGE,TRIANGLE,CA,7/4/2005 21:00 +Santee,RED,LIGHT,CA,7/4/2005 21:03 +Scottsdale,RED BLUE,FLASH,AZ,7/4/2005 21:15 +Flushing,,CIGAR,NY,7/4/2005 21:21 +Susanville,,OTHER,CA,7/4/2005 21:30 +Crosby,,LIGHT,TX,7/4/2005 21:45 +Queensbury,,LIGHT,NY,7/4/2005 22:00 +North Bend,,SPHERE,WA,7/4/2005 22:36 +Craigsville,,LIGHT,WV,7/4/2005 23:00 +Roscoe,,,MT,7/4/2005 23:00 +Warwick,,CIRCLE,RI,7/4/2005 23:00 +Lakewood,ORANGE,CIRCLE,CA,7/4/2005 23:45 +Granite Falls,,SPHERE,WA,7/4/2005 23:58 +Covina,,CIRCLE,CA,7/5/2005 1:00 +Monroe,,,VA,7/5/2005 2:30 +Laurel,,LIGHT,MD,7/5/2005 3:10 +Cane Hill,GREEN,FLASH,AR,7/5/2005 4:30 +Lucedale,,,MS,7/5/2005 4:30 +Belgrade,,OVAL,MT,7/5/2005 20:00 +Forked Island,,CIRCLE,LA,7/5/2005 20:00 +Goodland,,FORMATION,KS,7/5/2005 20:55 +Sebring,,,FL,7/5/2005 21:00 +Sargent,,CIRCLE,TX,7/5/2005 21:15 +Sargent,BLUE,LIGHT,TX,7/5/2005 21:15 +Santa Rosa,BLUE,SPHERE,CA,7/5/2005 22:36 +Bellingham,,TRIANGLE,WA,7/5/2005 23:00 +Traverse City,,TRIANGLE,MI,7/5/2005 23:45 +Brunswick,,LIGHT,ME,7/6/2005 0:00 +Conway,,LIGHT,NH,7/6/2005 3:00 +Virginia Beach,,OVAL,VA,7/6/2005 3:45 +Murray,,CIGAR,KY,7/6/2005 15:00 +Fresno,,LIGHT,CA,7/6/2005 20:00 +Portland,,SPHERE,OR,7/6/2005 20:30 +Boundary Waters Canoe Area,,CIGAR,MN,7/6/2005 21:00 +Scotts Valley,,LIGHT,CA,7/6/2005 22:00 +Clovis,GREEN,OTHER,CA,7/6/2005 22:10 +Lima,,,NY,7/6/2005 22:30 +Richardson,,LIGHT,TX,7/6/2005 22:30 +Centerburg,,LIGHT,OH,7/6/2005 23:00 +Rachel,,LIGHT,NV,7/6/2005 23:00 +Shiprock,,CIRCLE,NM,7/7/2005 0:00 +Downers Grove,,CYLINDER,IL,7/7/2005 18:05 +Susitna Lodge,BLUE,RECTANGLE,AK,7/7/2005 18:45 +Holland,RED,TRIANGLE,PA,7/7/2005 19:45 +Fort Worth,,,TX,7/7/2005 21:45 +Susitna Lodge,,OTHER,AK,7/7/2005 22:00 +Tidioute,,TRIANGLE,PA,7/7/2005 22:30 +Lexington,RED,CIGAR,KY,7/7/2005 23:00 +Buford,,TRIANGLE,GA,7/7/2005 23:07 +Dallas,,,TX,7/7/2005 23:25 +Inglewood,,TRIANGLE,CA,7/8/2005 0:00 +Meridian,,DISK,ID,7/8/2005 0:05 +Meridian,,DISK,ID,7/8/2005 0:05 +Chicago Heights,,RECTANGLE,IL,7/8/2005 1:00 +Fargo,,EGG,ND,7/8/2005 10:15 +Killeen,,CIGAR,TX,7/8/2005 12:35 +Eugene,,SPHERE,OR,7/8/2005 22:00 +Tuscaloosa,,CIRCLE,AL,7/8/2005 22:45 +Owatonna,,LIGHT,MN,7/8/2005 23:15 +Fort Wayne,,OTHER,IN,7/9/2005 0:00 +Owyhee River,,LIGHT,OR,7/9/2005 0:45 +Scottsdale,,VARIOUS,AZ,7/9/2005 1:23 +Dunwoody,,SPHERE,GA,7/9/2005 2:00 +Eagle Point,,LIGHT,OR,7/9/2005 2:30 +Yosemite,,DISK,CA,7/9/2005 12:00 +Kirkland,BLUE,TEARDROP,WA,7/9/2005 13:00 +Oak Forest,,,IL,7/9/2005 13:00 +Seattle,BLUE,TEARDROP,WA,7/9/2005 13:00 +Tinley Park,BLUE,CIGAR,IL,7/9/2005 15:15 +Chicago,,FORMATION,IL,7/9/2005 17:15 +Titusville,,FORMATION,FL,7/9/2005 18:00 +Realto,RED,DIAMOND,CA,7/9/2005 18:30 +Brook Park,RED,LIGHT,OH,7/9/2005 21:00 +Montclair,,TRIANGLE,CA,7/9/2005 21:10 +Bound Brook,,DISK,NJ,7/9/2005 22:00 +La Verne,,LIGHT,CA,7/9/2005 22:00 +Bellevue,,VARIOUS,WA,7/9/2005 22:30 +Brook Park,RED,LIGHT,OH,7/9/2005 22:45 +Holland,RED,LIGHT,PA,7/9/2005 23:00 +Marietta area,,DISK,GA,7/9/2005 23:00 +Wilmington,,LIGHT,CA,7/9/2005 23:11 +Wilderness State Park,,LIGHT,MI,7/9/2005 23:30 +Dateland,,CONE,AZ,7/10/2005 0:00 +Martins Ferry,BLUE,SPHERE,OH,7/10/2005 5:00 +Amery,,CIGAR,WI,7/10/2005 15:00 +Covington,,CIGAR,KY,7/10/2005 18:00 +Lancaster,,OTHER,NY,7/10/2005 20:00 +Brook Park,,CIRCLE,OH,7/10/2005 21:40 +Brook Park,,LIGHT,OH,7/10/2005 21:45 +Cleveland,,LIGHT,OH,7/10/2005 21:55 +Danville,,LIGHT,CA,7/10/2005 22:00 +Brick,,LIGHT,NJ,7/10/2005 22:30 +Grand Rapids,,TRIANGLE,MN,7/10/2005 22:30 +Cleveland,,CIRCLE,OH,7/10/2005 23:00 +Leroy Township,,LIGHT,OH,7/10/2005 23:00 +Tinton Falls,,CIRCLE,NJ,7/10/2005 23:00 +Brook Park,,CIRCLE,OH,7/10/2005 23:20 +Brookpark,RED,LIGHT,OH,7/10/2005 23:30 +Brook Park,RED,OVAL,OH,7/10/2005 23:40 +Brook Park,,LIGHT,OH,7/10/2005 23:45 +Middleburg Hts.,,LIGHT,OH,7/11/2005 0:00 +Kalama,,CIRCLE,WA,7/11/2005 0:30 +Saint Johnsville,,OVAL,NY,7/11/2005 0:56 +Valley Springs,,LIGHT,CA,7/11/2005 2:30 +Wilson,,DIAMOND,NC,7/11/2005 2:30 +Kansas City,,OTHER,MO,7/11/2005 3:00 +Carmichael,,OTHER,CA,7/11/2005 16:30 +Island Pond-Seymour Lake,,,VT,7/11/2005 21:00 +New Preston,,CIGAR,CT,7/11/2005 21:00 +Waldwick,RED,,NJ,7/11/2005 22:00 +Fresno,,LIGHT,CA,7/11/2005 22:30 +Challis,,OVAL,ID,7/11/2005 23:25 +Boise,,LIGHT,ID,7/11/2005 23:30 +Indiana,,TRIANGLE,PA,7/11/2005 23:45 +Beaverton,,VARIOUS,OR,7/12/2005 0:00 +River Ridge,,OTHER,LA,7/12/2005 0:11 +Charlotte,,FORMATION,NC,7/12/2005 2:15 +Lakeland,,OTHER,WA,7/12/2005 13:00 +Chandler,,LIGHT,AZ,7/12/2005 20:10 +Carrol Stream,,VARIOUS,IL,7/12/2005 23:00 +Parker,,FORMATION,AZ,7/12/2005 23:00 +Mile Marker 120,,,FL,7/13/2005 0:20 +Mora,,CIGAR,MN,7/13/2005 0:30 +Longville,,LIGHT,MN,7/13/2005 1:00 +Raleigh,,LIGHT,NC,7/13/2005 2:00 +Wenatchee,,CYLINDER,WA,7/13/2005 9:00 +Aurora,,LIGHT,CO,7/13/2005 10:50 +Kerhonkson,,,NY,7/13/2005 16:00 +Seattle,,TRIANGLE,WA,7/13/2005 16:50 +Seattle,,OTHER,WA,7/13/2005 17:10 +Bend,,LIGHT,OR,7/13/2005 21:45 +De Soto,,FORMATION,MO,7/13/2005 21:55 +Andrews,BLUE,,TX,7/13/2005 22:00 +San Antonio,,CIRCLE,TX,7/13/2005 22:42 +Harrison,,CROSS,AR,7/14/2005 0:00 +Vanderbilt,,OTHER,MI,7/14/2005 0:00 +Palm Harbor,,LIGHT,FL,7/14/2005 0:20 +Hiliiard,,DISK,OH,7/14/2005 0:36 +Palmer Lake,,LIGHT,CO,7/14/2005 1:45 +Imperial,,CIRCLE,MO,7/14/2005 10:30 +Toppenish,,FORMATION,WA,7/14/2005 18:22 +Goleta,,SPHERE,CA,7/14/2005 20:15 +Ridgewood,,FIREBALL,NY,7/14/2005 20:15 +June Lake,,SPHERE,CA,7/14/2005 22:00 +Phoenix,,LIGHT,AZ,7/14/2005 22:20 +Alma,,LIGHT,AR,7/14/2005 23:00 +Independence,,,MO,7/15/2005 0:00 +Poteau,,DISK,OK,7/15/2005 0:00 +Chapel Hill,,,NC,7/15/2005 0:45 +Springfield,,CIRCLE,OH,7/15/2005 2:00 +Burbank,,TRIANGLE,CA,7/15/2005 2:24 +Fairfield,,LIGHT,CA,7/15/2005 3:00 +Luray,,SPHERE,VA,7/15/2005 4:30 +Iowa City,,SPHERE,IA,7/15/2005 8:15 +Boynton Beach,BLUE,CIRCLE,FL,7/15/2005 14:00 +Wheaton,,CIRCLE,IL,7/15/2005 15:00 +Zeeland,,CYLINDER,MI,7/15/2005 16:00 +Orange,,DIAMOND,TX,7/15/2005 17:00 +Eagle Pass,,OVAL,TX,7/15/2005 18:00 +El Paso,,DISK,TX,7/15/2005 19:00 +Portland,,TEARDROP,OR,7/15/2005 20:30 +Ukiah,,,CA,7/15/2005 20:30 +Irvine,,OTHER,CA,7/15/2005 21:30 +Owasso,,LIGHT,OK,7/15/2005 21:40 +Eagle Butte,,VARIOUS,SD,7/15/2005 22:00 +Nampa,,OTHER,ID,7/15/2005 22:00 +Porter,,LIGHT,ME,7/15/2005 22:00 +Salem,,LIGHT,OR,7/15/2005 22:00 +Las Vegas,,LIGHT,NV,7/15/2005 22:45 +Gloucester,,TRIANGLE,VA,7/15/2005 23:00 +Pullman,,OVAL,WA,7/16/2005 1:00 +Chaska,ORANGE,LIGHT,MN,7/16/2005 3:00 +Benbrook,,LIGHT,TX,7/16/2005 11:30 +Hudsonville,,OVAL,MI,7/16/2005 14:30 +Weld County,,LIGHT,CO,7/16/2005 17:00 +Seattle,,FLASH,WA,7/16/2005 17:05 +Pico Rivera,,SPHERE,CA,7/16/2005 18:00 +Fullerton,,CHEVRON,CA,7/16/2005 19:46 +Mason Neck,,DISK,VA,7/16/2005 20:00 +Interstate 70,BLUE,LIGHT,IN,7/16/2005 21:00 +Vancouver,,FLASH,WA,7/16/2005 22:05 +Benbrook,,LIGHT,TX,7/16/2005 23:30 +Lakewood,,FIREBALL,CA,7/17/2005 0:41 +St. Helens,,,OR,7/17/2005 3:00 +Redding,RED,OTHER,CA,7/17/2005 5:03 +Issaquah,,CIRCLE,WA,7/17/2005 10:00 +Americus,,,GA,7/17/2005 14:00 +Riverside,,SPHERE,CA,7/17/2005 17:00 +Hawi,,VARIOUS,HI,7/17/2005 21:00 +Owasso,,,OK,7/17/2005 21:40 +Loveland,,LIGHT,CO,7/17/2005 23:00 +Barstow,,LIGHT,CA,7/17/2005 23:47 +Erie,,LIGHT,MI,7/18/2005 0:30 +Port Orchard,,CIRCLE,WA,7/18/2005 2:30 +Lakewood,,SPHERE,WA,7/18/2005 6:30 +Eau Claire,,,WI,7/18/2005 10:47 +Hickory Hills,,CIRCLE,IL,7/18/2005 11:30 +Seattle,,FLASH,WA,7/18/2005 12:20 +Sacramento,,VARIOUS,CA,7/18/2005 17:30 +Wolf Point,,DISK,MT,7/18/2005 18:00 +Sacramento,,VARIOUS,CA,7/18/2005 18:30 +Jacksonville,,LIGHT,FL,7/18/2005 19:15 +Kokomo,,LIGHT,IN,7/18/2005 21:00 +Concord,,TRIANGLE,CA,7/18/2005 21:30 +Concord,,TRIANGLE,CA,7/18/2005 22:00 +Salem,,FLASH,OR,7/18/2005 22:00 +Bakersfield,,SPHERE,CA,7/19/2005 1:30 +Gilchrist,,OTHER,OR,7/19/2005 14:16 +Baldwin,,OTHER,WI,7/19/2005 19:00 +Lakeview,,TRIANGLE,OR,7/19/2005 21:00 +Northfield,,SPHERE,VT,7/19/2005 22:30 +Escondido,,OTHER,CA,7/19/2005 22:40 +Columbia,,RECTANGLE,PA,7/20/2005 4:00 +Rock Island,,LIGHT,IL,7/20/2005 10:00 +Allegheny State Park,,OTHER,NY,7/20/2005 12:00 +Exeter,,CIGAR,NH,7/20/2005 15:15 +Avinger,,CYLINDER,TX,7/20/2005 19:54 +Sanbornton,,OVAL,NH,7/20/2005 21:00 +Myrtle Beach,,VARIOUS,SC,7/20/2005 22:32 +St. Joseph,,LIGHT,MI,7/21/2005 11:03 +Jacksonville,,,FL,7/21/2005 19:30 +San Bernadino County,,DISK,CA,7/21/2005 21:00 +Loris,,CYLINDER,SC,7/21/2005 22:00 +Willow Springs,,,MO,7/21/2005 22:20 +Willow Springs,,CIGAR,MO,7/21/2005 22:20 +Columbus,,DISK,OH,7/21/2005 23:00 +Port Orchard,,LIGHT,WA,7/21/2005 23:40 +Fort Worth,,TRIANGLE,TX,7/22/2005 0:16 +Tigard,,TRIANGLE,OR,7/22/2005 2:10 +Jacksonville,,LIGHT,FL,7/22/2005 16:00 +Ashland,,CIRCLE,VA,7/22/2005 17:00 +Stover,,LIGHT,MO,7/22/2005 20:00 +Wilmington,RED,OTHER,CA,7/22/2005 21:10 +Stover,RED ORANGE BLUE,OTHER,KS,7/22/2005 23:00 +Littleton,BLUE,LIGHT,CO,7/23/2005 1:45 +Bay City,,DISK,MI,7/23/2005 1:56 +Eugene,,CIGAR,OR,7/23/2005 13:10 +Houston-College Station,,TEARDROP,TX,7/23/2005 16:00 +Fullerton,,OTHER,CA,7/23/2005 19:50 +Palmdale,,LIGHT,CA,7/23/2005 21:30 +Etowah,,OTHER,NC,7/23/2005 21:35 +Whitewright,,LIGHT,TX,7/23/2005 21:45 +Newburgh,,DIAMOND,NY,7/23/2005 22:00 +Oklahoma County,,SPHERE,OK,7/23/2005 23:45 +Detroit Lakes,GREEN,LIGHT,MN,7/24/2005 3:00 +Fort Dodge,,TRIANGLE,IA,7/24/2005 4:45 +Brunswick,,DISK,ME,7/24/2005 5:50 +Phoenix,,DISK,AZ,7/24/2005 12:45 +Sheldon,,TRIANGLE,IA,7/24/2005 22:10 +Sheldon,,TRIANGLE,IA,7/24/2005 22:10 +El Paso,,FORMATION,TX,7/24/2005 23:17 +Huntsville,,OVAL,AL,7/25/2005 3:45 +Woodland,,DISK,CA,7/25/2005 9:00 +Salem,,CYLINDER,VA,7/25/2005 17:00 +Huntingdon,,OTHER,TN,7/25/2005 21:45 +Clarksville,,LIGHT,TN,7/25/2005 22:00 +Clayton,RED,FORMATION,NY,7/25/2005 22:10 +Starkville,,FLASH,MS,7/25/2005 22:30 +Seattle,,RECTANGLE,WA,7/25/2005 23:00 +Jefforsonville,,TRIANGLE,IN,7/26/2005 0:00 +Avinger,,VARIOUS,TX,7/26/2005 19:58 +Virginia Beach,,LIGHT,VA,7/27/2005 1:00 +Larchmont,,SPHERE,NY,7/27/2005 1:45 +Davie,,TEARDROP,FL,7/27/2005 7:30 +Columbia,,CYLINDER,MO,7/27/2005 8:00 +West Babylon,,CIRCLE,NY,7/27/2005 18:38 +Norfolk,,SPHERE,VA,7/27/2005 21:00 +Brightwood,,CIRCLE,OR,7/27/2005 21:30 +Yukon,,TRIANGLE,OK,7/27/2005 22:00 +Ottumwa,,RECTANGLE,IA,7/27/2005 23:15 +East Northport,,OVAL,NY,7/27/2005 23:30 +Panoche,,DIAMOND,CA,7/28/2005 0:15 +Mt. Prospect,,TRIANGLE,IL,7/28/2005 14:15 +Oshkosh,BLUE,DISK,WI,7/28/2005 15:00 +Kingsville,,OTHER,TX,7/28/2005 15:20 +Cape May Court House,,,NJ,7/28/2005 21:30 +Edwardsport,,,IN,7/28/2005 21:30 +Spokane,RED BLUE,DISK,WA,7/28/2005 22:00 +Berkeley,,FIREBALL,CA,7/28/2005 22:05 +Methuen,RED,TRIANGLE,MA,7/28/2005 23:30 +,,DISK,CA,7/29/2005 0:00 +Tulsa,,,OK,7/29/2005 0:00 +Pinnacles National Monument,,TRIANGLE,CA,7/29/2005 0:13 +Oro Valley,RED ORANGE,OVAL,AZ,7/29/2005 0:45 +Faribault,,OVAL,MN,7/29/2005 14:00 +Phoenix,,SPHERE,AZ,7/29/2005 14:00 +Topeka,,LIGHT,KS,7/29/2005 20:10 +Miami,,LIGHT,FL,7/29/2005 21:30 +Mayville,YELLOW,LIGHT,MI,7/29/2005 22:00 +Seattle,GREEN,TRIANGLE,WA,7/29/2005 22:20 +Apple Valley,GREEN,CIRCLE,MN,7/29/2005 22:21 +Berwick,,LIGHT,ME,7/29/2005 22:30 +Bastrop County,,LIGHT,TX,7/30/2005 0:00 +Monticello,,DISK,MN,7/30/2005 0:15 +Steger,,FIREBALL,IL,7/30/2005 1:15 +Erie,,LIGHT,PA,7/30/2005 3:00 +Loveland,,,CO,7/30/2005 19:00 +Highland Village,,FLASH,TX,7/30/2005 21:09 +Dassel,,FLASH,MN,7/30/2005 22:30 +Bartonville,,FIREBALL,IL,7/30/2005 23:18 +Keeseville,,FLASH,NY,7/30/2005 23:29 +Springport,,FIREBALL,IN,7/30/2005 23:32 +Fontana,,LIGHT,CA,7/31/2005 0:00 +Eugene,YELLOW GREEN,RECTANGLE,OR,7/31/2005 0:15 +O'Fallon,BLUE,LIGHT,MO,7/31/2005 1:00 +Clark,,LIGHT,WY,7/31/2005 4:20 +Ashland City,,TRIANGLE,TN,7/31/2005 4:30 +Puyallup,,,WA,7/31/2005 15:15 +Eugene,,OTHER,OR,7/31/2005 16:10 +Brunswick,,LIGHT,NC,7/31/2005 19:00 +Carver,,VARIOUS,MA,7/31/2005 19:00 +Snohomish,,CIRCLE,WA,7/31/2005 19:00 +Norwalk,,FIREBALL,CA,7/31/2005 20:37 +Willcox,,OVAL,AZ,7/31/2005 21:00 +Ellensburg,,OTHER,WA,7/31/2005 21:15 +Sophia,,DISK,WV,7/31/2005 21:30 +Lee,RED,LIGHT,NH,7/31/2005 22:00 +Groten,,DIAMOND,MA,7/31/2005 23:00 +Seattle,,OTHER,WA,7/31/2005 23:03 +Big Lake,ORANGE,SPHERE,MN,8/1/2005 1:30 +Circleville,,TRIANGLE,OH,8/1/2005 2:00 +Lake Nockamixon,,CIRCLE,PA,8/1/2005 3:00 +Ottumwa,,LIGHT,IA,8/1/2005 3:15 +Bellingham,,OTHER,WA,8/1/2005 3:30 +St. Petersburg,,LIGHT,FL,8/1/2005 7:00 +Fawn Grove,,TRIANGLE,PA,8/1/2005 19:00 +Germantown,,LIGHT,MD,8/1/2005 19:30 +Berwyn,,LIGHT,IL,8/1/2005 20:00 +West Bend,,TRIANGLE,WI,8/1/2005 21:00 +East Orange,,,NJ,8/1/2005 21:30 +Santa Rosa,,LIGHT,CA,8/1/2005 22:15 +Skowhegan,,,ME,8/1/2005 22:29 +Galveston,,CIRCLE,TX,8/2/2005 0:00 +Kelseyville,RED,OTHER,CA,8/2/2005 0:00 +Sacramento,,CIRCLE,CA,8/2/2005 0:30 +Willow Creek,,LIGHT,CA,8/2/2005 1:30 +Talent,,TRIANGLE,OR,8/2/2005 1:45 +Athens,,CIGAR,TN,8/2/2005 2:30 +Nashua,,OTHER,NH,8/2/2005 2:35 +Exeter,,CIGAR,NH,8/2/2005 18:21 +Bolingbrook,,LIGHT,IL,8/2/2005 23:07 +Belvidere,,TRIANGLE,IL,8/3/2005 0:00 +Bulls Gap,,TRIANGLE,TN,8/3/2005 12:00 +Cottonwood,,LIGHT,CA,8/3/2005 22:00 +Grayson,,LIGHT,KY,8/3/2005 23:00 +Flushing,,LIGHT,NY,8/4/2005 1:30 +Honolulu,,FLASH,HI,8/4/2005 3:30 +San Francisco,,DISK,CA,8/4/2005 3:57 +Vienna,,,MO,8/4/2005 10:00 +Seattle,,LIGHT,WA,8/4/2005 11:00 +San Francisco,,DISK,CA,8/4/2005 16:00 +Houston,,,TX,8/4/2005 17:50 +Grovetown,,LIGHT,GA,8/4/2005 18:30 +Boston,,DISK,MA,8/4/2005 19:00 +Snowmass Village,,OTHER,CO,8/4/2005 20:26 +Fernandina Beach,,EGG,FL,8/4/2005 22:30 +Fayetteville,,TEARDROP,AR,8/5/2005 0:00 +Corfu,,LIGHT,NY,8/5/2005 0:37 +Wilmington,,CIRCLE,CA,8/5/2005 1:05 +Seattle,BLUE,CIRCLE,WA,8/5/2005 12:30 +Newton,,OTHER,MS,8/5/2005 17:00 +Alice,,CYLINDER,TX,8/5/2005 21:25 +San Rafael,,RECTANGLE,CA,8/5/2005 21:30 +Atwell,,CIGAR,NY,8/5/2005 21:35 +Espanola,,CIRCLE,NM,8/5/2005 22:00 +Chicago,,CIGAR,IL,8/5/2005 22:10 +Chicago,,FIREBALL,IL,8/5/2005 22:16 +Dufur,YELLOW,FLASH,OR,8/5/2005 22:30 +Omaha,,LIGHT,NE,8/5/2005 22:44 +Bellevue,,,WA,8/5/2005 23:15 +Lenoir,,,TN,8/6/2005 0:00 +Equator,,LIGHT,HI,8/6/2005 1:00 +Hendersonville,,LIGHT,NC,8/6/2005 5:00 +Dickinson,,CIGAR,TX,8/6/2005 5:49 +Lexington,,,TX,8/6/2005 6:00 +Aston,,LIGHT,PA,8/6/2005 7:00 +Los Angeles,,LIGHT,CA,8/6/2005 12:30 +Spring Valley,,CIGAR,CA,8/6/2005 13:00 +Newport Beach,,SPHERE,CA,8/6/2005 13:30 +Wheaton,,SPHERE,IL,8/6/2005 18:55 +Portland,,CIRCLE,OR,8/6/2005 20:30 +Coalinga,RED,TRIANGLE,CA,8/6/2005 21:15 +Locust,,,NC,8/6/2005 22:45 +Loveland,,LIGHT,CO,8/6/2005 23:00 +Marysville,,OVAL,CA,8/6/2005 23:00 +Strongsville,GREEN,CYLINDER,OH,8/6/2005 23:50 +Brooklyn Center,,LIGHT,MN,8/7/2005 0:00 +New Freedom,,LIGHT,PA,8/7/2005 1:30 +Oceangate,,OTHER,NJ,8/7/2005 2:00 +Medicine Bow,,LIGHT,WY,8/7/2005 3:45 +Elmsford,,TRIANGLE,NY,8/7/2005 10:05 +Capitol Reef,,CIGAR,UT,8/7/2005 14:00 +Ridgewood,,OTHER,NY,8/7/2005 18:00 +Susanville,,,CA,8/7/2005 18:55 +Eagen,RED,LIGHT,MN,8/7/2005 23:45 +Springfield,,RECTANGLE,OR,8/8/2005 7:15 +Seattle,,CIGAR,WA,8/8/2005 18:00 +Rockford,,CIRCLE,IL,8/8/2005 22:00 +Millbrae,,LIGHT,CA,8/8/2005 22:38 +lubbock,ORANGE,VARIOUS,TX,8/8/2005 23:00 +Los Angeles,RED,,CA,8/9/2005 3:45 +no data,YELLOW,CIRCLE,WV,8/9/2005 16:00 +New Smyrna Beach,,FIREBALL,FL,8/9/2005 23:45 +Pasadena,,SPHERE,TX,8/10/2005 0:00 +San Diego,,LIGHT,CA,8/10/2005 0:00 +Bayside,,TRIANGLE,NY,8/10/2005 1:00 +Kimberling City,RED,LIGHT,MO,8/10/2005 1:00 +Tigard,,OTHER,OR,8/10/2005 1:45 +Sturgis,,FLASH,SD,8/10/2005 2:15 +Little Falls,RED,CYLINDER,MN,8/10/2005 10:00 +Baker City,,DISK,OR,8/10/2005 21:00 +Plano,,LIGHT,TX,8/10/2005 21:00 +Hazel Green,,LIGHT,AL,8/10/2005 22:10 +Salem,,LIGHT,OR,8/10/2005 22:20 +Lake City,,DISK,MI,8/10/2005 23:46 +Goleta,,FLASH,CA,8/11/2005 0:25 +Roseville,ORANGE,VARIOUS,CA,8/11/2005 2:00 +N. Cambria,,LIGHT,PA,8/11/2005 3:00 +Suriname,,,AK,8/11/2005 6:11 +Athens,,CROSS,GA,8/11/2005 19:00 +Bertram,,CIGAR,TX,8/11/2005 19:00 +Sonora,,OTHER,CA,8/11/2005 20:00 +Edmonton,,TRIANGLE,KY,8/11/2005 20:40 +Mayland,,LIGHT,TN,8/11/2005 21:00 +Greenville,,,NC,8/11/2005 22:00 +Homestead,,LIGHT,FL,8/11/2005 23:30 +Patterson,,LIGHT,CA,8/11/2005 23:30 +Corvallis,,TRIANGLE,OR,8/12/2005 0:00 +Simi Valley,,LIGHT,CA,8/12/2005 0:00 +Marietta,RED,LIGHT,GA,8/12/2005 0:30 +Montauk,,FLASH,NY,8/12/2005 1:00 +Union,,CIGAR,MO,8/12/2005 1:00 +Jackson,,CIRCLE,NJ,8/12/2005 4:00 +Fort Smith,,OVAL,AR,8/12/2005 4:25 +Reno,,LIGHT,NV,8/12/2005 5:20 +Lebanon,,TRIANGLE,OR,8/12/2005 11:11 +San Diego,,OTHER,CA,8/12/2005 14:00 +Los Angeles,,LIGHT,CA,8/12/2005 19:30 +Mesa,,LIGHT,AZ,8/12/2005 21:00 +College Station,,,TX,8/12/2005 22:00 +Estacada,,TEARDROP,OR,8/12/2005 22:00 +Oakland,,,ME,8/12/2005 22:00 +College Station,,OTHER,TX,8/12/2005 22:30 +Longmont,BLUE,LIGHT,CO,8/12/2005 22:30 +Orono,,DISK,MN,8/12/2005 23:00 +Woodstock,RED,LIGHT,IL,8/13/2005 21:30 +Turlock,,LIGHT,CA,8/14/2005 1:00 +Blairsville,,SPHERE,GA,8/14/2005 3:57 +Claremont,,LIGHT,CA,8/14/2005 13:00 +Las Vegas,,CIRCLE,NV,8/14/2005 13:30 +Beeville,,CIRCLE,TX,8/14/2005 20:45 +Highland Park,RED,SPHERE,IL,8/14/2005 21:00 +St. Petersburg,,CROSS,FL,8/14/2005 22:15 +Portland,,TRIANGLE,OR,8/14/2005 23:00 +Dallas,,FORMATION,TX,8/15/2005 1:26 +Lamy,,,NM,8/15/2005 2:00 +Las Vegas,GREEN,LIGHT,NV,8/15/2005 2:00 +Bellingham,,FIREBALL,WA,8/15/2005 3:00 +Plainfield,,OTHER,IN,8/15/2005 4:00 +O'Fallon,,TRIANGLE,MO,8/15/2005 5:12 +Covington,,TRIANGLE,VA,8/15/2005 5:45 +Olympia,,,WA,8/15/2005 11:00 +Bakersfield,,LIGHT,CA,8/15/2005 12:10 +Lompoc,,OTHER,CA,8/15/2005 14:00 +Sedona,,DISK,AZ,8/15/2005 14:00 +Taunton,,DISK,MA,8/15/2005 19:00 +Murmet Springs,,LIGHT,IL,8/15/2005 21:15 +Marysville,,OTHER,WA,8/15/2005 21:30 +West Chester,,OTHER,PA,8/15/2005 21:30 +Mount Olive,,DISK,AL,8/15/2005 21:45 +Elko,,,NV,8/15/2005 22:00 +Fort Worth,BLUE,OTHER,TX,8/15/2005 22:00 +Wolf Point,,OTHER,MT,8/15/2005 22:00 +Constableville,,TEARDROP,NY,8/15/2005 23:00 +Hamburg,,CIRCLE,NY,8/15/2005 23:00 +Waterford,GREEN,TRIANGLE,MI,8/15/2005 23:00 +Shoreview,ORANGE,CIRCLE,MN,8/15/2005 23:30 +Concord,,OTHER,CA,8/16/2005 14:00 +Washington,,LIGHT,PA,8/16/2005 20:55 +Strongsville,RED YELLOW,TRIANGLE,OH,8/16/2005 21:00 +Wilmore,ORANGE,,PA,8/16/2005 21:00 +Leander,,LIGHT,TX,8/16/2005 22:00 +Aurora,,LIGHT,CO,8/16/2005 22:10 +South Berwick,,TRIANGLE,ME,8/16/2005 23:00 +Klamath Falls,,FLASH,OR,8/17/2005 0:10 +Hemet,,DIAMOND,CA,8/17/2005 8:00 +Fort Payne,,TRIANGLE,AL,8/17/2005 12:00 +Raleigh,RED YELLOW GREEN,VARIOUS,NC,8/17/2005 22:30 +Berwyn,,SPHERE,IL,8/17/2005 23:10 +New Port Richey,,OTHER,FL,8/18/2005 3:00 +Honolulu,,,HI,8/18/2005 5:30 +Winooski,,VARIOUS,VT,8/18/2005 19:45 +Highland,,LIGHT,IN,8/18/2005 21:00 +Smyrna,,RECTANGLE,GA,8/19/2005 8:55 +Centennial,,CIGAR,CO,8/19/2005 19:45 +Litchfield Park,,TRIANGLE,AZ,8/19/2005 20:30 +Hueytown,,SPHERE,AL,8/19/2005 21:00 +Grand Rapids,,LIGHT,MI,8/19/2005 21:50 +Evanston,,,IL,8/19/2005 22:00 +Hubbardsville,,LIGHT,NY,8/19/2005 23:00 +Concord,,OVAL,NC,8/20/2005 0:20 +San Pedro Mountain Area,,LIGHT,NM,8/20/2005 3:30 +Owaneco,,OVAL,IL,8/20/2005 11:30 +Bellevue,,,WA,8/20/2005 12:30 +Chicago,,,IL,8/20/2005 14:30 +Seattle,,LIGHT,WA,8/20/2005 18:45 +Gila Bend,,VARIOUS,AZ,8/20/2005 21:00 +Nazareth,,TRIANGLE,PA,8/20/2005 21:00 +Detroit area,,CIRCLE,MI,8/20/2005 22:00 +Blackfoot,,DISK,ID,8/20/2005 22:15 +Hopkinsville,,DISK,KY,8/20/2005 22:45 +El Cajon,RED,CIRCLE,CA,8/20/2005 23:00 +Lake,,,MI,8/20/2005 23:00 +Clarksville,,DISK,TN,8/20/2005 23:45 +Elizabethtown,,TRIANGLE,KY,8/21/2005 3:00 +Rockford,,OTHER,IL,8/21/2005 14:40 +Renton,,LIGHT,WA,8/21/2005 19:30 +San Diego,ORANGE,LIGHT,CA,8/21/2005 20:45 +Waukegan,,FLASH,IL,8/21/2005 21:00 +Terre Haute,ORANGE,FIREBALL,IN,8/21/2005 21:30 +Memphis,RED GREEN,FLASH,TN,8/21/2005 22:10 +Corona,,,CA,8/22/2005 6:25 +Scottsdale,,CIRCLE,AZ,8/22/2005 19:00 +Presque Isle,ORANGE,LIGHT,MI,8/22/2005 19:42 +Belmont,,LIGHT,NH,8/22/2005 21:00 +Bonita Springs,RED,FORMATION,FL,8/22/2005 21:00 +Salina,,LIGHT,KS,8/22/2005 21:08 +Minnetonka,,TRIANGLE,MN,8/22/2005 22:25 +Clarkston,,,WA,8/22/2005 23:45 +Stinnett,,CIRCLE,TX,8/23/2005 0:00 +Marietta,,TRIANGLE,GA,8/23/2005 18:55 +Washington,ORANGE,LIGHT,IN,8/23/2005 21:40 +Pomona,,LIGHT,CA,8/23/2005 21:45 +Pikeville,,RECTANGLE,KY,8/23/2005 22:00 +Folsom,,CYLINDER,CA,8/24/2005 19:00 +Vancouver,,CIRCLE,WA,8/24/2005 20:30 +Marana,RED,OTHER,AZ,8/24/2005 22:30 +Rissequogue,,,NY,8/24/2005 23:00 +Santa Barbara,,VARIOUS,CA,8/24/2005 23:00 +Georgetown,RED,TRIANGLE,KY,8/25/2005 5:00 +Atlantic City,,OTHER,NJ,8/25/2005 14:35 +Rumford,,TRIANGLE,ME,8/25/2005 16:20 +Henderson,,DISK,NV,8/25/2005 18:00 +Potosi,ORANGE,,MO,8/25/2005 19:47 +Nazareth,,LIGHT,PA,8/25/2005 21:00 +Brookhaven,GREEN,SPHERE,NY,8/25/2005 22:00 +Vail,,SPHERE,CO,8/26/2005 8:30 +Chestertown,,CIGAR,NY,8/26/2005 13:00 +Princeton,,LIGHT,TX,8/26/2005 22:00 +Upper Montclair,RED,OVAL,NJ,8/26/2005 22:15 +Clifton,,OVAL,NJ,8/26/2005 22:30 +Jackson,,DISK,TN,8/27/2005 0:00 +Atlantic Highlands,,CYLINDER,NJ,8/27/2005 0:15 +Coalinga,,TRIANGLE,CA,8/27/2005 1:30 +Coalinga,,TRIANGLE,CA,8/27/2005 1:30 +Murphys,,LIGHT,CA,8/27/2005 5:30 +Rochester,,DISK,MN,8/27/2005 14:30 +Snoqualmie,,FLASH,WA,8/27/2005 17:35 +Madison,,VARIOUS,WI,8/27/2005 19:30 +Madison,,VARIOUS,WI,8/27/2005 19:30 +Mitchell,,CIRCLE,SD,8/27/2005 20:15 +Renton,,DISK,WA,8/27/2005 20:47 +Puyallup,,CIRCLE,WA,8/27/2005 21:15 +Puyallup,,CIRCLE,WA,8/27/2005 21:15 +Aliso Viejo,YELLOW,CYLINDER,CA,8/27/2005 21:45 +Lindenhurst,,VARIOUS,NY,8/27/2005 23:00 +Passaic,,DISK,NJ,8/27/2005 23:00 +Butte Meadows,,LIGHT,CA,8/28/2005 1:50 +Hinton,,OVAL,OK,8/28/2005 6:25 +Riverside,,CHEVRON,CA,8/28/2005 9:45 +Claude,,,TX,8/28/2005 15:00 +Los Angeles,,VARIOUS,CA,8/28/2005 17:00 +So. Farmingdale,,OVAL,NY,8/28/2005 19:40 +Wauconda,,LIGHT,WA,8/28/2005 23:30 +Gaithersburg,,LIGHT,MD,8/29/2005 0:25 +Grand Rapids,,FORMATION,MI,8/29/2005 0:30 +St. Joseph,,LIGHT,MN,8/29/2005 18:00 +Ventura,RED,LIGHT,CA,8/29/2005 20:05 +Austin,,LIGHT,TX,8/29/2005 20:30 +Minneapolis,,OVAL,MN,8/29/2005 21:30 +Walnut,,FIREBALL,CA,8/29/2005 23:19 +Port Neches,,,TX,8/29/2005 23:30 +Incline Village,,CYLINDER,NV,8/30/2005 0:00 +Mobile,,FLASH,AL,8/30/2005 0:00 +Meridian,,OTHER,MS,8/30/2005 20:30 +Gilbert,,SPHERE,AZ,8/30/2005 20:36 +Kentfield,,DISK,CA,8/30/2005 21:30 +Forest Lake,,CYLINDER,MN,8/30/2005 22:10 +Crownpoint,,VARIOUS,NM,8/31/2005 0:00 +Mississippi,,RECTANGLE,MS,8/31/2005 13:00 +Mokena,,LIGHT,IL,8/31/2005 19:30 +Mesa,,LIGHT,AZ,8/31/2005 21:07 +Glacier National Park,,,MT,8/31/2005 22:00 +Fairport,ORANGE,LIGHT,NY,8/31/2005 22:45 +St. Louis,,DISK,MO,8/31/2005 23:30 +Shirley,RED,OVAL,NY,9/1/2005 2:30 +Goodlettsville,,RECTANGLE,TN,9/1/2005 4:00 +San Jose,,LIGHT,CA,9/1/2005 5:00 +Maryville,,CYLINDER,TN,9/1/2005 13:00 +Flint,,DISK,MI,9/1/2005 15:00 +Jefferson City,,LIGHT,TN,9/1/2005 18:25 +Fall River,,CYLINDER,MA,9/1/2005 19:50 +Marion,,LIGHT,IN,9/1/2005 20:00 +Naperville,,LIGHT,IL,9/1/2005 20:00 +Fort Wayne,,TRIANGLE,IN,9/1/2005 20:15 +Bluffton,RED,LIGHT,GA,9/1/2005 20:30 +Murfreesboro,,TRIANGLE,TN,9/1/2005 21:00 +Warrenville,RED,SPHERE,IL,9/1/2005 21:30 +Boone,,CHEVRON,IA,9/1/2005 21:50 +Great Falls,,LIGHT,MT,9/1/2005 21:55 +Banning,,EGG,CA,9/1/2005 22:00 +Cape Hatteras,ORANGE,FIREBALL,NC,9/1/2005 22:00 +Warren,RED BLUE,TRIANGLE,OH,9/1/2005 22:00 +Lemont,,,IL,9/1/2005 23:00 +Shaftsbury,RED YELLOW GREEN BLUE,SPHERE,VT,9/1/2005 23:00 +Lisbon,,CIGAR,OH,9/2/2005 0:00 +New Orleans,,SPHERE,LA,9/2/2005 2:00 +Issaquah,ORANGE,CIRCLE,WA,9/2/2005 2:20 +Tracy Arm,,LIGHT,AK,9/2/2005 2:30 +Mt Gilead,,FLASH,OH,9/2/2005 5:30 +Lynchburg,,CIGAR,VA,9/2/2005 9:40 +Willow Creek,,CIRCLE,CA,9/2/2005 10:21 +Shelby,,CIGAR,MI,9/2/2005 13:22 +Louisville,,LIGHT,KY,9/2/2005 16:00 +Temple,,LIGHT,TX,9/2/2005 17:00 +Baltimore,,CYLINDER,MD,9/2/2005 18:30 +Gastonia,,FIREBALL,NC,9/2/2005 19:00 +Milwaukee,,LIGHT,WI,9/2/2005 19:15 +Steubenville,RED GREEN,CIRCLE,OH,9/2/2005 19:55 +Tacoma,,,WA,9/2/2005 21:15 +Arlington,,LIGHT,WA,9/2/2005 21:16 +Minneapolis,,,MN,9/2/2005 21:30 +Tilton,,LIGHT,NH,9/2/2005 22:30 +Salem,,LIGHT,OR,9/2/2005 22:40 +Boliver,,CIRCLE,PA,9/2/2005 23:00 +Fresno,,CIGAR,CA,9/2/2005 23:00 +West Chester,,LIGHT,PA,9/2/2005 23:30 +Carney,,CIRCLE,MI,9/2/2005 23:48 +Glendale Heights,,TRIANGLE,IL,9/3/2005 2:00 +Kent City,,OVAL,MI,9/3/2005 12:45 +Renton,,LIGHT,WA,9/3/2005 17:00 +Yorktown Heights,,SPHERE,NY,9/3/2005 18:23 +Findlay,,TRIANGLE,OH,9/3/2005 19:23 +Lauglintown,,SPHERE,PA,9/3/2005 20:30 +Browns Summit,GREEN,VARIOUS,NC,9/3/2005 20:45 +Carrboro,,,NC,9/3/2005 21:30 +Bridgewater,,DISK,NJ,9/3/2005 22:00 +Seattle,BLUE,LIGHT,WA,9/3/2005 22:20 +Seattle,BLUE,LIGHT,WA,9/3/2005 22:30 +Hartville,,FIREBALL,MO,9/3/2005 23:00 +Pelican Lake,,DISK,WI,9/3/2005 23:00 +Pelican Lake,,OVAL,WI,9/3/2005 23:00 +Statesville,,,NC,9/3/2005 23:35 +Boonville,,CIGAR,NC,9/4/2005 0:00 +Redondo Beach,RED,TRIANGLE,CA,9/4/2005 0:00 +South Pasadena,GREEN,FIREBALL,CA,9/4/2005 0:45 +Ann Arbor,RED,LIGHT,MI,9/4/2005 21:00 +Redwood City,RED,CIRCLE,CA,9/4/2005 21:00 +Berry Creek,,LIGHT,CA,9/4/2005 21:10 +Venice,,,FL,9/4/2005 21:45 +Schenevus,BLUE,CIRCLE,NY,9/4/2005 22:30 +Wichita,,CONE,KS,9/4/2005 22:58 +New York City,,LIGHT,NY,9/5/2005 4:37 +Mount Washington,,DISK,KY,9/5/2005 10:30 +Eugene,,LIGHT,OR,9/5/2005 13:30 +Las Vegas,,,NV,9/5/2005 19:55 +Simi Valley,,LIGHT,CA,9/5/2005 20:18 +Arlington,BLUE,FIREBALL,TX,9/5/2005 21:00 +Bothell,,LIGHT,WA,9/5/2005 22:15 +Wendover,,CIGAR,UT,9/5/2005 22:47 +Summerville,,TRIANGLE,SC,9/5/2005 23:30 +Morgan Hill,,LIGHT,CA,9/6/2005 0:48 +Grants,RED,DIAMOND,NM,9/6/2005 2:00 +Columbia City,,TRIANGLE,IN,9/6/2005 5:00 +Columbia,,DISK,PA,9/6/2005 5:30 +Wilmington,,OTHER,NC,9/6/2005 11:20 +Olin,,,NC,9/6/2005 17:45 +Meadville,,OTHER,MS,9/6/2005 20:00 +McDonald Observatory,,LIGHT,TX,9/6/2005 21:00 +Waco,BLUE,LIGHT,TX,9/6/2005 21:17 +Coronado,,CIGAR,CA,9/6/2005 21:30 +Seattle,YELLOW,TRIANGLE,WA,9/6/2005 22:00 +Phoenix,,,AZ,9/6/2005 22:04 +Hedgesville,,LIGHT,WV,9/6/2005 22:15 +Los Angeles,,LIGHT,CA,9/7/2005 1:56 +Big Sur,,DIAMOND,CA,9/7/2005 2:00 +Redmond,,OTHER,WA,9/7/2005 13:30 +Williamsport,,OTHER,PA,9/7/2005 14:00 +Lisle,,OVAL,IL,9/7/2005 17:00 +Marlton,,OTHER,NJ,9/7/2005 17:30 +Oradell,,LIGHT,NJ,9/7/2005 18:15 +Bethel Park,,DISK,PA,9/7/2005 19:53 +Gold Canyon,,LIGHT,AZ,9/7/2005 20:10 +Crown Point,,VARIOUS,IN,9/7/2005 21:30 +Willoughby,,,OH,9/7/2005 22:00 +Miami,,LIGHT,FL,9/8/2005 0:00 +Amboy,RED GREEN BLUE,LIGHT,WA,9/8/2005 5:00 +Columbiana,RED,OVAL,OH,9/8/2005 5:25 +Gainesville,,OTHER,GA,9/8/2005 5:43 +Morehead,,CIRCLE,KY,9/8/2005 14:00 +Los Angeles,,OVAL,CA,9/8/2005 15:30 +Chenango Forks,,DISK,NY,9/8/2005 19:00 +Westboro,,LIGHT,MA,9/8/2005 20:00 +Buckeye,,FIREBALL,AZ,9/8/2005 20:30 +Albany,,OVAL,OR,9/8/2005 21:10 +Spirit Lake,,LIGHT,ID,9/8/2005 21:30 +West Palm Beach,RED,LIGHT,FL,9/9/2005 4:00 +Beaverton,,OTHER,OR,9/9/2005 11:35 +Nodine,,LIGHT,MN,9/9/2005 19:00 +Pineville,YELLOW,LIGHT,MO,9/9/2005 20:00 +Bertram,,FIREBALL,TX,9/9/2005 20:55 +Gold Canyon,,,AZ,9/9/2005 21:30 +Van Buren,,,AR,9/10/2005 0:00 +Whittier,,OVAL,CA,9/10/2005 0:00 +Chesapeake,,TRIANGLE,VA,9/10/2005 3:00 +McCook,,CIRCLE,NE,9/10/2005 8:15 +Columbus,,DISK,GA,9/10/2005 12:00 +Payette,,CIRCLE,ID,9/10/2005 12:00 +Casa Grande,,SPHERE,AZ,9/10/2005 15:30 +Carrizozo,,SPHERE,NM,9/10/2005 17:00 +Teterboro,BLUE,LIGHT,NJ,9/10/2005 18:00 +Gig Harbor,,,WA,9/10/2005 18:05 +Laconia,,DISK,NH,9/10/2005 18:30 +Marana,,LIGHT,AZ,9/10/2005 20:00 +Fairburn,,CIRCLE,GA,9/10/2005 20:45 +Alamosa,,,CO,9/10/2005 21:00 +LeRoy,,TRIANGLE,KS,9/10/2005 21:00 +Pocahontas,BLUE,LIGHT,IA,9/10/2005 21:00 +West Paris,GREEN,LIGHT,ME,9/10/2005 22:00 +Needham,,RECTANGLE,MA,9/10/2005 22:45 +Grass Valley,,LIGHT,OR,9/10/2005 23:15 +Plano,,OTHER,TX,9/11/2005 0:30 +Kure Beach,,TRIANGLE,NC,9/11/2005 1:20 +Three Rivers,,LIGHT,CA,9/11/2005 5:00 +Albuquerque,ORANGE,CIRCLE,NM,9/11/2005 5:25 +Baldwin,,SPHERE,NY,9/11/2005 17:00 +Haiku,,DIAMOND,HI,9/11/2005 19:00 +West Tisbury,,LIGHT,MA,9/11/2005 19:00 +Kernersville,GREEN,FLASH,NC,9/11/2005 19:15 +Chapel Hill,,,NC,9/11/2005 20:10 +West Des Moines,,LIGHT,IA,9/11/2005 21:03 +Clovis,,LIGHT,NM,9/11/2005 22:30 +Hesperia,,TRIANGLE,CA,9/11/2005 22:30 +Dade City,,LIGHT,FL,9/11/2005 23:00 +Henniker,,,NH,9/12/2005 1:30 +Sammamish,,LIGHT,WA,9/12/2005 5:10 +Florence,,FIREBALL,MS,9/12/2005 6:00 +Roanoke,,TRIANGLE,VA,9/12/2005 9:56 +Burbank,,,CA,9/12/2005 12:15 +Phoenix,,DIAMOND,AZ,9/12/2005 15:16 +"Mt Rainier Nat Park, Cougar rock campground",,LIGHT,WA,9/12/2005 20:45 +Fort Collins,,LIGHT,CO,9/12/2005 20:56 +Clovis,,LIGHT,NM,9/12/2005 21:00 +Tucson,ORANGE,OTHER,AZ,9/12/2005 21:30 +San Antonio,,FORMATION,TX,9/12/2005 22:35 +Cumberland,,,RI,9/12/2005 22:45 +Mount Shasta,,,CA,9/13/2005 12:00 +Rockville,,VARIOUS,MD,9/13/2005 16:15 +Glendale,,LIGHT,AZ,9/13/2005 16:47 +Payson,,DISK,AZ,9/13/2005 18:53 +Waverly,,LIGHT,NE,9/13/2005 19:45 +Goodyear,,,AZ,9/13/2005 20:30 +Litchfield Park,,LIGHT,AZ,9/13/2005 20:40 +Clovis,,LIGHT,NM,9/13/2005 21:00 +Salem,,LIGHT,OR,9/13/2005 21:15 +Catskill,,TRIANGLE,NY,9/13/2005 21:25 +Taos Pueblo,,TRIANGLE,NM,9/13/2005 21:45 +Great Falls,,OVAL,SC,9/13/2005 23:40 +Various counties,,FIREBALL,IA,9/14/2005 5:50 +Muscatine,,FIREBALL,IA,9/14/2005 6:00 +West Jordan,,OTHER,UT,9/14/2005 12:15 +Havre,,FORMATION,MT,9/14/2005 20:40 +Havre,,LIGHT,MT,9/14/2005 20:40 +Gilbert,GREEN,RECTANGLE,AZ,9/14/2005 20:50 +Carthage,,FLASH,IL,9/14/2005 20:58 +Shoreview,,SPHERE,MN,9/14/2005 21:30 +Estero,RED GREEN,TEARDROP,FL,9/14/2005 22:20 +Ashland,,TRIANGLE,MO,9/14/2005 22:40 +Vincennes,,VARIOUS,IN,9/14/2005 22:45 +Tacoma,,OVAL,WA,9/15/2005 0:00 +Thornville,,OVAL,OH,9/15/2005 5:30 +Louisburg,,TRIANGLE,NC,9/15/2005 7:00 +Annapolis,,DISK,MD,9/15/2005 9:10 +Hatteras,,CIGAR,VA,9/15/2005 12:00 +Buffalo,GREEN,OVAL,NY,9/15/2005 14:00 +Athens,,DISK,GA,9/15/2005 15:00 +Gaithersburg,,OTHER,MD,9/15/2005 16:30 +Kerrville,RED,LIGHT,TX,9/15/2005 18:30 +Pacific Palisades,GREEN,TRIANGLE,CA,9/15/2005 19:30 +Osseo,YELLOW,CIRCLE,WI,9/15/2005 20:20 +Chandler,ORANGE,CIRCLE,AZ,9/15/2005 21:00 +Laconia,,LIGHT,NH,9/15/2005 21:15 +North Myrtle Beach,,LIGHT,SC,9/15/2005 21:30 +Starks,,FIREBALL,LA,9/15/2005 21:30 +Forest Hills,,VARIOUS,NY,9/15/2005 23:00 +Loveland,,OTHER,CO,9/16/2005 5:49 +Acworth,,RECTANGLE,GA,9/16/2005 7:45 +Lexington,,LIGHT,MN,9/16/2005 19:00 +Edgewater,,SPHERE,FL,9/16/2005 19:20 +Eugene,RED,VARIOUS,OR,9/16/2005 20:45 +Pacific North West,,FORMATION,WA,9/16/2005 21:00 +Maypearl,,,TX,9/16/2005 22:30 +Penacook,,TRIANGLE,NH,9/16/2005 23:00 +Maypearl,,,TX,9/16/2005 23:30 +Lake Geneva,,LIGHT,WI,9/17/2005 1:30 +Griffin,YELLOW,LIGHT,GA,9/17/2005 2:30 +Nephi,,DISK,UT,9/17/2005 7:45 +Federal Way,ORANGE,LIGHT,WA,9/17/2005 8:56 +Midwest City,,CYLINDER,OK,9/17/2005 13:00 +Humble,,OVAL,TX,9/17/2005 16:45 +Fresno,,DISK,CA,9/17/2005 19:30 +Newnan,,CIGAR,GA,9/17/2005 19:44 +Cape Lookout,,FORMATION,OR,9/17/2005 20:00 +Newark,,TRIANGLE,DE,9/17/2005 20:00 +Lake Geneva,,CIRCLE,WI,9/17/2005 21:00 +Oceanside,,LIGHT,OR,9/17/2005 21:00 +Tillamook,YELLOW,FORMATION,OR,9/17/2005 21:00 +Lesage,,LIGHT,WV,9/17/2005 21:15 +Austin,GREEN,FIREBALL,TX,9/17/2005 21:30 +Havre,,FIREBALL,MT,9/17/2005 22:00 +Matthews,GREEN,DIAMOND,NJ,9/17/2005 23:00 +Rockaway,,LIGHT,OR,9/17/2005 23:00 +Lake Geneva,,LIGHT,WI,9/18/2005 1:00 +Snowball,ORANGE,OVAL,AR,9/18/2005 8:30 +Tacoma,,TRIANGLE,WA,9/18/2005 18:00 +Tappan,,LIGHT,NY,9/18/2005 19:00 +Dayton,,FIREBALL,OH,9/18/2005 20:30 +Dalton Gardens,,LIGHT,ID,9/18/2005 21:00 +Lynchburg,,CIGAR,VA,9/18/2005 21:00 +Woodridge,,LIGHT,IL,9/18/2005 21:00 +Collings Lakes,,OTHER,NJ,9/18/2005 21:30 +Lawton,,FIREBALL,OK,9/18/2005 22:30 +Mequon,RED,OVAL,WI,9/18/2005 23:30 +Plantation,,LIGHT,FL,9/18/2005 23:50 +Hopland,,OTHER,CA,9/19/2005 8:20 +Charlotte,,FIREBALL,NC,9/19/2005 11:00 +Irvine,,CIRCLE,CA,9/19/2005 11:50 +Sequoya National Park,,DISK,CA,9/19/2005 12:00 +Laconia,,DISK,NH,9/19/2005 14:00 +Chiricahua National Monument,,SPHERE,AZ,9/19/2005 14:39 +Dragoon,,LIGHT,AZ,9/19/2005 15:00 +Miami,,OTHER,FL,9/19/2005 19:30 +Phoenix,,LIGHT,AZ,9/19/2005 19:30 +Wautoma,,CIRCLE,WI,9/19/2005 20:01 +Portage,,LIGHT,WI,9/19/2005 20:15 +Boulder,,CIGAR,CO,9/19/2005 20:20 +Bancroft,YELLOW,,WI,9/19/2005 20:30 +Orange,ORANGE,CROSS,CT,9/19/2005 21:00 +Centreville,,OTHER,MI,9/19/2005 21:01 +Duluth,,LIGHT,GA,9/19/2005 21:30 +Portage,ORANGE,FORMATION,WI,9/19/2005 21:30 +Sonoma,RED YELLOW BLUE,DIAMOND,CA,9/19/2005 22:00 +Fairborn,,TRIANGLE,OH,9/19/2005 22:30 +Willow Springs,,DISK,NC,9/19/2005 23:45 +Belfair,,CIRCLE,WA,9/20/2005 0:00 +Medical Lake,,LIGHT,WA,9/20/2005 0:00 +Bertram,ORANGE,LIGHT,TX,9/20/2005 0:15 +Adams,,DISK,NY,9/20/2005 7:00 +Harlan,RED,FIREBALL,KY,9/20/2005 7:30 +Many,,LIGHT,LA,9/20/2005 7:30 +Lithia Springs,,VARIOUS,GA,9/20/2005 15:00 +Portland,,CYLINDER,OR,9/20/2005 17:00 +Deltona,,FIREBALL,FL,9/20/2005 18:30 +Phoenix,,CONE,AZ,9/20/2005 19:00 +Albuquerque,,LIGHT,NM,9/20/2005 19:28 +Albuquerque,,,NM,9/20/2005 19:30 +Jacksonville to Ft. Pierce,,,IL,9/20/2005 19:30 +Ajo,ORANGE,DISK,AZ,9/20/2005 19:45 +Laconia,RED,CIRCLE,NH,9/20/2005 20:15 +Sunnyvale,,FORMATION,CA,9/20/2005 20:30 +Romulus,BLUE,FLASH,NY,9/20/2005 21:30 +Burke,,OTHER,SD,9/20/2005 22:00 +Decatur,,,GA,9/20/2005 22:00 +Luray,RED GREEN BLUE,LIGHT,VA,9/20/2005 23:00 +Moline,,TRIANGLE,IL,9/20/2005 23:00 +New York City,,TEARDROP,NY,9/20/2005 23:45 +Albion,,FLASH,NE,9/21/2005 5:45 +Las Vegas,,CONE,NV,9/21/2005 7:00 +Irvine,,DISK,CA,9/21/2005 10:14 +Laconia,,DISK,NH,9/21/2005 15:00 +Boonton,,OTHER,NJ,9/21/2005 19:00 +Exeter,,LIGHT,NH,9/21/2005 19:30 +Glendale,,DISK,AZ,9/21/2005 19:30 +Northridge,BLUE,OVAL,CA,9/21/2005 19:30 +San Diego,,,CA,9/21/2005 19:30 +Gorham,ORANGE,OTHER,NH,9/21/2005 20:00 +Winnisquam,,LIGHT,NH,9/21/2005 20:30 +Wautoma,,LIGHT,WI,9/21/2005 21:00 +Sanbornton,,DISK,NH,9/21/2005 21:45 +Whitefish,RED GREEN,FLASH,MT,9/21/2005 22:00 +Lake Havasu City,ORANGE,LIGHT,AZ,9/21/2005 22:30 +Moundsville,,OTHER,WV,9/21/2005 22:39 +Manalapan,,,NJ,9/21/2005 23:00 +Lynden,BLUE,DISK,WA,9/21/2005 23:45 +Conroe,,TRIANGLE,TX,9/22/2005 0:00 +College Station,,DISK,TX,9/22/2005 0:23 +Brentwood,,LIGHT,CA,9/22/2005 1:45 +Vashon,,FIREBALL,WA,9/22/2005 2:41 +Bakersfield,,DISK,CA,9/22/2005 4:00 +Country Club Hills,,,IL,9/22/2005 19:00 +Ramona,,FIREBALL,CA,9/22/2005 19:20 +West Holloywood,,,CA,9/22/2005 19:20 +Corona,,LIGHT,CA,9/22/2005 19:25 +North Hollywood,,LIGHT,CA,9/22/2005 19:26 +Simi Valley,,FIREBALL,CA,9/22/2005 19:28 +Camp Verde,,VARIOUS,AZ,9/22/2005 19:30 +Chandler,ORANGE BLUE,LIGHT,AZ,9/22/2005 19:30 +Cornville,,LIGHT,AZ,9/22/2005 19:30 +El Cajon,,,CA,9/22/2005 19:30 +Laguna Hills,,,CA,9/22/2005 19:30 +Maricopa,,FIREBALL,AZ,9/22/2005 19:30 +Peoria,,,AZ,9/22/2005 19:30 +Pleasanton,,SPHERE,CA,9/22/2005 19:30 +Poway,,CIRCLE,CA,9/22/2005 19:30 +Riverside,,FIREBALL,CA,9/22/2005 19:30 +San Diego,,,CA,9/22/2005 19:30 +San Diego,,FIREBALL,CA,9/22/2005 19:30 +Sand Dune Recreational Area,,,CA,9/22/2005 19:30 +Surprise,,FIREBALL,AZ,9/22/2005 19:30 +Tucson,,FIREBALL,AZ,9/22/2005 19:30 +Yorba Linda,,LIGHT,CA,9/22/2005 19:30 +Yorba Linda,,TRIANGLE,CA,9/22/2005 19:30 +Phoenix,,OVAL,AZ,9/22/2005 19:40 +San Diego,,CIRCLE,CA,9/22/2005 20:00 +Silver City,,,NM,9/22/2005 20:10 +Silver City,,LIGHT,NM,9/22/2005 20:43 +Lareto,,,NV,9/22/2005 21:00 +Rifle,,LIGHT,CO,9/22/2005 21:00 +Saltville,,OTHER,VA,9/22/2005 21:00 +Randolph,,LIGHT,NH,9/22/2005 21:20 +Seaside Park,ORANGE,LIGHT,NJ,9/22/2005 21:30 +Delco,,FLASH,NC,9/23/2005 0:00 +Beckley,,TRIANGLE,WV,9/23/2005 16:37 +Buna,,LIGHT,TX,9/23/2005 19:00 +Gorham,,FORMATION,NH,9/23/2005 20:00 +In-flight,,,GA,9/23/2005 20:00 +Palm Coast,,LIGHT,FL,9/23/2005 21:00 +Chipley,,LIGHT,FL,9/23/2005 23:30 +Trinidad,,,CO,9/24/2005 0:30 +Stratford,,,CT,9/24/2005 3:10 +Fort Madison,,LIGHT,IA,9/24/2005 5:30 +Spring Creek,,RECTANGLE,NV,9/24/2005 9:30 +Noack,,RECTANGLE,TX,9/24/2005 13:00 +Grand Rapids,,CHEVRON,MI,9/24/2005 14:30 +Chicago,,OVAL,IL,9/24/2005 18:30 +Durant,,OTHER,OK,9/24/2005 19:00 +Norwalk,,CIRCLE,CA,9/24/2005 19:23 +Red Bluff,,OTHER,CA,9/24/2005 19:35 +Chicago Heights,,CIRCLE,IL,9/24/2005 20:30 +Colorado Springs,,FLASH,CO,9/24/2005 23:00 +Deerfield Beach,,TRIANGLE,FL,9/24/2005 23:00 +Shongaloo,,LIGHT,LA,9/25/2005 8:15 +Sayreville,,OVAL,NJ,9/25/2005 12:00 +Melbourne,,DIAMOND,FL,9/25/2005 13:45 +Prescott Valley,ORANGE,FIREBALL,AZ,9/25/2005 19:15 +Grantville,,LIGHT,GA,9/25/2005 23:18 +Port St. Lucie,,FIREBALL,FL,9/25/2005 23:45 +Palm Springs,,CHEVRON,CA,9/26/2005 0:05 +Panama City,,FLASH,FL,9/26/2005 3:15 +Holland,,TRIANGLE,MI,9/26/2005 9:24 +Teton National Park,,OTHER,WY,9/26/2005 11:00 +Watsonville,,TRIANGLE,CA,9/26/2005 19:00 +Ellsworth,,FORMATION,WI,9/26/2005 20:00 +Kansas City,,CIRCLE,MO,9/26/2005 20:00 +Kings Park,,LIGHT,NY,9/26/2005 22:00 +Warrenville,,VARIOUS,IL,9/26/2005 23:30 +Indian Harbour Beach,YELLOW,FIREBALL,FL,9/26/2005 23:39 +Bay City,,TRIANGLE,MI,9/26/2005 23:48 +Jackson,,LIGHT,NJ,9/27/2005 0:15 +Bakersfield,,,CA,9/27/2005 6:30 +Dockstader Park,,DISK,UT,9/27/2005 14:00 +San Antonio,,LIGHT,TX,9/27/2005 20:30 +Goffstown,,LIGHT,NH,9/27/2005 20:35 +Gail,,CIRCLE,TX,9/27/2005 21:00 +Colorado,ORANGE BLUE,FIREBALL,CO,9/28/2005 1:00 +Morgantown,,CHEVRON,WV,9/28/2005 1:00 +St. Charles,,VARIOUS,MO,9/28/2005 1:38 +Long Beach,GREEN,FIREBALL,CA,9/28/2005 2:29 +Jacksonville Beach,,TRIANGLE,FL,9/28/2005 2:38 +Port Richey,,OTHER,FL,9/28/2005 5:52 +Pinecrest,,DISK,CA,9/28/2005 13:30 +Wyoming,,OTHER,WY,9/28/2005 16:30 +Valley Springs,,LIGHT,CA,9/28/2005 21:10 +Kinston,ORANGE,FORMATION,NC,9/28/2005 21:30 +Oak Bluffs,YELLOW,OVAL,MA,9/28/2005 21:30 +Chicago Heights,,CIGAR,IL,9/28/2005 22:00 +Shoreview,,CIRCLE,MN,9/28/2005 22:30 +Duxbury,,LIGHT,MA,9/28/2005 23:00 +Carpinteria,,CIRCLE,CA,9/29/2005 2:00 +Reno,,CHEVRON,NV,9/29/2005 4:07 +St. Michaels,,LIGHT,AZ,9/29/2005 6:10 +Spring Valley,,EGG,CA,9/29/2005 8:45 +Fresno,,FORMATION,CA,9/29/2005 12:00 +West Palm Beach,,,FL,9/29/2005 18:00 +Lake Worth,,,FL,9/29/2005 18:50 +Florida,,FIREBALL,FL,9/29/2005 19:00 +Miami,,FIREBALL,FL,9/29/2005 19:00 +East Meadow,,OTHER,NY,9/29/2005 19:15 +Port Richey,,,FL,9/29/2005 20:00 +Ocean City,,CIRCLE,MD,9/29/2005 20:25 +Media,,FLASH,PA,9/29/2005 20:30 +Franklin,RED,LIGHT,TN,9/29/2005 20:40 +Fayetteville,,CIGAR,AR,9/29/2005 20:45 +Plymouth,,SPHERE,PA,9/29/2005 21:30 +Tucson,,,AZ,9/30/2005 0:00 +Lapeer,,LIGHT,MI,9/30/2005 1:00 +Prescott Valley,ORANGE,FIREBALL,AZ,9/30/2005 2:10 +New Lenox,,TRIANGLE,IL,9/30/2005 4:45 +Paducah,,TRIANGLE,KY,9/30/2005 4:55 +Farmington,BLUE,RECTANGLE,UT,9/30/2005 5:04 +New Haven,RED,CIGAR,IN,9/30/2005 7:50 +Vacaville,BLUE,DISK,CA,9/30/2005 7:50 +San Antonio,,LIGHT,TX,9/30/2005 9:30 +Bellefonte,,CIGAR,PA,9/30/2005 10:00 +Monticello,,RECTANGLE,KY,9/30/2005 15:15 +New York City,,OTHER,NY,9/30/2005 16:00 +Coral Springs,,DISK,FL,9/30/2005 18:28 +Reno,,FIREBALL,NV,9/30/2005 18:45 +Bourbonnais,,LIGHT,IL,9/30/2005 19:20 +New York State Thruway,,LIGHT,NY,9/30/2005 20:15 +Overgaard,,SPHERE,AZ,9/30/2005 20:20 +Summit,,FLASH,IL,9/30/2005 20:30 +Ventura,,SPHERE,CA,9/30/2005 20:52 +Chicago,RED,LIGHT,IL,9/30/2005 21:15 +Pueblo,,TRIANGLE,CO,9/30/2005 21:45 +Mitchell,,LIGHT,IN,9/30/2005 22:00 +Ashland,,CIRCLE,PA,9/30/2005 22:30 +Crystal Lake,RED,CIGAR,IL,9/30/2005 22:30 +New Lenox,RED,LIGHT,IL,9/30/2005 23:00 +Oak Forest,,LIGHT,IL,9/30/2005 23:00 +Oak Forest,RED,SPHERE,IL,9/30/2005 23:00 +Oak Forest,RED,TRIANGLE,IL,9/30/2005 23:00 +Orland Hills,RED,,IL,9/30/2005 23:00 +Orland Hills,RED,LIGHT,IL,9/30/2005 23:00 +Orland Park,RED,CIRCLE,IL,9/30/2005 23:00 +Orland Park,RED,LIGHT,IL,9/30/2005 23:00 +Orland Park,RED,LIGHT,IL,9/30/2005 23:00 +Orland Park,RED,LIGHT,IL,9/30/2005 23:00 +Orland Park,RED,OTHER,IL,9/30/2005 23:00 +Tinley Park,RED,,IL,9/30/2005 23:00 +Tinley Park,RED,CIRCLE,IL,9/30/2005 23:00 +Tinley Park,,LIGHT,IL,9/30/2005 23:00 +Tinley Park,,LIGHT,IL,9/30/2005 23:00 +Tinley Park,RED,LIGHT,IL,9/30/2005 23:00 +Tinley Park,RED,LIGHT,IL,9/30/2005 23:00 +Tinley Park,RED,TRIANGLE,IL,9/30/2005 23:00 +Joliet,,LIGHT,IL,9/30/2005 23:10 +Oak Forest,RED,CIRCLE,IL,9/30/2005 23:15 +Oak Forest,RED,LIGHT,IL,9/30/2005 23:15 +Oak Forest,RED,SPHERE,IL,9/30/2005 23:15 +Orland Park,RED,FORMATION,IL,9/30/2005 23:15 +Sugar Grove,RED,LIGHT,IL,9/30/2005 23:15 +Tinley Park,RED,,IL,9/30/2005 23:15 +Tinley Park,RED,CIRCLE,IL,9/30/2005 23:18 +Palos Heights,,LIGHT,IL,9/30/2005 23:23 +Orland Park,,LIGHT,IL,9/30/2005 23:25 +Tinley Park,RED,LIGHT,IL,9/30/2005 23:25 +Oak Forest,,CIRCLE,IL,9/30/2005 23:30 +Orland Park,RED,TRIANGLE,IL,9/30/2005 23:30 +Tinley Park,RED,CIRCLE,IL,9/30/2005 23:30 +Tinley Park,RED,FORMATION,IL,9/30/2005 23:30 +Tinley Park,,VARIOUS,IL,9/30/2005 23:30 +Tucson,,LIGHT,AZ,9/30/2005 23:45 +Orland Park,RED,LIGHT,IL,9/30/2005 23:50 +Evergreen Park,,LIGHT,IL,10/1/2005 0:00 +Harrisburg,,LIGHT,MO,10/1/2005 0:00 +Oak Forest,RED,CIRCLE,IL,10/1/2005 0:00 +Oak Forest,RED,LIGHT,IL,10/1/2005 0:30 +Orland Park,RED,DIAMOND,IL,10/1/2005 0:40 +Tinley Park,RED,CIRCLE,IL,10/1/2005 0:53 +Midlothian,RED,LIGHT,IL,10/1/2005 0:55 +Orland Park,,LIGHT,IL,10/1/2005 0:57 +Orland Park,,LIGHT,IL,10/1/2005 0:57 +Midlothian,,LIGHT,IL,10/1/2005 1:00 +Oak Forest,,LIGHT,IL,10/1/2005 1:00 +Oak Forest,RED,VARIOUS,IL,10/1/2005 1:00 +Posen,RED,FORMATION,IL,10/1/2005 1:00 +Tinley Park,RED,CIRCLE,IL,10/1/2005 1:00 +Tinley Park,RED,CIRCLE,IL,10/1/2005 1:00 +Tinley Park,RED,FORMATION,IL,10/1/2005 1:00 +Tinley Park,RED,TRIANGLE,IL,10/1/2005 1:00 +Tinley Park,RED,TRIANGLE,IL,10/1/2005 1:00 +Tinley Park,RED,TRIANGLE,IL,10/1/2005 1:00 +Tinley Park,RED,TRIANGLE,IL,10/1/2005 1:00 +Oak Forest,,LIGHT,IL,10/1/2005 1:03 +Evergreen Park,RED,LIGHT,IL,10/1/2005 1:08 +Alsip,,LIGHT,IL,10/1/2005 1:10 +Crestwood,,LIGHT,IL,10/1/2005 1:10 +Cuyahoga Falls,,OTHER,OH,10/1/2005 1:10 +Hillside,,VARIOUS,IL,10/1/2005 1:10 +Manhattan,,TRIANGLE,IL,10/1/2005 1:10 +Oak Forest,,,IL,10/1/2005 1:10 +Oak Forest,RED,CYLINDER,IL,10/1/2005 1:10 +Oak Forest,RED,LIGHT,IL,10/1/2005 1:10 +Tinley Park,RED,TRIANGLE,IL,10/1/2005 1:10 +Posen,RED,LIGHT,IL,10/1/2005 3:00 +Greenup,ORANGE,CIRCLE,KY,10/1/2005 6:30 +Homestead,,LIGHT,FL,10/1/2005 8:22 +Vanderbilt,,CIRCLE,MI,10/1/2005 8:30 +Albuquerque,BLUE,DISK,NM,10/1/2005 9:30 +Lake Worth,,SPHERE,FL,10/1/2005 12:00 +Phoenix,,OVAL,AZ,10/1/2005 15:00 +Los Angeles,,FORMATION,CA,10/1/2005 17:00 +West Palm Beach,,TEARDROP,FL,10/1/2005 18:00 +Winnamac,,TRIANGLE,IN,10/1/2005 19:00 +Rogers,,TRIANGLE,MN,10/1/2005 19:58 +Liberty Hill,,LIGHT,TX,10/1/2005 20:05 +San Jose,,CHEVRON,CA,10/1/2005 20:05 +Napa,,,CA,10/1/2005 20:30 +Laurelville,,,OH,10/1/2005 21:30 +Oklahoma City,,LIGHT,OK,10/1/2005 21:30 +Central Lake,,,MI,10/1/2005 22:00 +Tinley Park,RED GREEN,LIGHT,IL,10/1/2005 23:00 +Heflin,RED,CIRCLE,AL,10/2/2005 0:30 +Edina,,FORMATION,MN,10/2/2005 2:00 +Westfield,,LIGHT,MA,10/2/2005 3:00 +Chicago,RED,LIGHT,IL,10/2/2005 4:00 +Dividing Creek,RED,CIRCLE,NJ,10/2/2005 5:00 +San marcos,,DIAMOND,TX,10/2/2005 9:15 +Providence,,VARIOUS,RI,10/2/2005 17:30 +New York City,,OTHER,NY,10/2/2005 18:00 +Strasburg,,OVAL,CO,10/2/2005 18:20 +Hillsborough,ORANGE,TRIANGLE,NJ,10/2/2005 19:30 +Sacarmento,,OVAL,CA,10/3/2005 7:09 +San Jose,,FORMATION,CA,10/3/2005 11:00 +Westfir,,OTHER,OR,10/3/2005 12:00 +Hartford,,LIGHT,CT,10/3/2005 21:00 +Whitefield,,LIGHT,NH,10/3/2005 21:00 +Boulder,,CHEVRON,CO,10/3/2005 21:30 +Castle Rock,,OVAL,CO,10/3/2005 21:40 +Lake Villa,RED,,IL,10/3/2005 22:00 +Burlington,,DISK,VT,10/3/2005 22:30 +Ogden,,CIRCLE,UT,10/3/2005 23:00 +Cherry Hill,,CIRCLE,NJ,10/3/2005 23:18 +Citrus Heights,GREEN,OTHER,CA,10/4/2005 0:50 +Seattle,,OTHER,WA,10/4/2005 1:00 +Dickensonville,RED GREEN,CIRCLE,VA,10/4/2005 3:00 +Scottsdale,RED GREEN,TRIANGLE,AZ,10/4/2005 4:00 +Chanute,,LIGHT,KS,10/4/2005 6:50 +Rock Hill,,OTHER,SC,10/4/2005 13:30 +Winnemucca,,CIRCLE,NV,10/4/2005 17:00 +New York City,,LIGHT,NY,10/4/2005 18:05 +Bonne Terre,RED ORANGE BLUE,TRIANGLE,MO,10/4/2005 18:30 +Peoria,,LIGHT,AZ,10/4/2005 18:55 +Auburn,,OVAL,AL,10/4/2005 19:00 +Huntsville,,CIRCLE,AL,10/4/2005 19:00 +Modesto,,CIRCLE,CA,10/4/2005 19:00 +Surprise,,VARIOUS,AZ,10/4/2005 19:15 +Waterford,,SPHERE,MI,10/4/2005 20:00 +Granger,ORANGE,FORMATION,IA,10/4/2005 20:15 +Woodbridge,GREEN,OTHER,VA,10/4/2005 20:40 +Grand Rapids,,OVAL,MI,10/4/2005 21:40 +Casper,,SPHERE,WY,10/5/2005 0:00 +Natchez,,LIGHT,MS,10/5/2005 0:00 +Stuart,,,FL,10/5/2005 2:00 +Green Sea,,TRIANGLE,SC,10/5/2005 16:00 +Culver City,,,CA,10/5/2005 18:00 +Tupper Lake,,LIGHT,NY,10/5/2005 19:45 +Mokena,,CIRCLE,IL,10/5/2005 20:43 +Toledo,,LIGHT,OH,10/5/2005 21:00 +Great Falls,,OTHER,MT,10/5/2005 21:30 +Rockford,,FIREBALL,MI,10/5/2005 22:00 +Salem,,CHEVRON,OR,10/5/2005 22:00 +West Des Moines,,CIGAR,IA,10/5/2005 23:00 +Clearwater,,CHEVRON,FL,10/5/2005 23:30 +Katy,,,TX,10/6/2005 0:00 +Coon Rapids,,TRIANGLE,MN,10/6/2005 1:15 +Buttonwillow,,LIGHT,CA,10/6/2005 2:25 +Huachuca City,,CIGAR,AZ,10/6/2005 5:30 +Mason City,,LIGHT,IA,10/6/2005 6:00 +Park Forest,,OVAL,IL,10/6/2005 11:00 +Cedar Falls,,LIGHT,IA,10/6/2005 18:00 +Hempstead,,CIGAR,TX,10/6/2005 18:50 +Bartonville,,TRIANGLE,IL,10/6/2005 21:30 +Lynchburg,,TRIANGLE,VA,10/6/2005 21:30 +Long Beach,,,CA,10/7/2005 2:15 +Sheboygan,,CIGAR,WI,10/7/2005 14:00 +Isle Of Palms,,SPHERE,SC,10/7/2005 20:00 +Scandia,,VARIOUS,MN,10/7/2005 20:30 +Boston,RED YELLOW,CIGAR,MA,10/7/2005 21:00 +Lowell,,TRIANGLE,AR,10/7/2005 21:19 +Clifton,,LIGHT,CO,10/7/2005 22:00 +Lebanon,,OVAL,OH,10/7/2005 22:55 +Cambridge,,LIGHT,WI,10/7/2005 23:00 +Orland,,FORMATION,IL,10/7/2005 23:35 +Searcy,,OVAL,AR,10/8/2005 2:00 +Orlando,,LIGHT,FL,10/8/2005 6:15 +Chester,,OVAL,AR,10/8/2005 12:00 +San Francisco,BLUE,FORMATION,CA,10/8/2005 14:45 +San Francisco,,OVAL,CA,10/8/2005 15:30 +San Fransisco,BLUE,SPHERE,CA,10/8/2005 15:30 +Buena Park,RED,OVAL,CA,10/8/2005 20:01 +Bigfork,,LIGHT,MT,10/8/2005 20:30 +Livermore,,LIGHT,CA,10/8/2005 22:00 +Watagua,,CIGAR,TX,10/8/2005 22:30 +Denton,,DISK,TX,10/9/2005 14:12 +Tulsa,,CIGAR,OK,10/9/2005 16:00 +Camarillo,,,CA,10/9/2005 16:11 +Garden City,,OTHER,ID,10/9/2005 18:00 +Vancouver,ORANGE,LIGHT,WA,10/9/2005 20:08 +Eagle,,TRIANGLE,CO,10/9/2005 20:30 +Clovis,,LIGHT,CA,10/9/2005 22:30 +Franklin,YELLOW,DISK,IN,10/10/2005 0:00 +Seattle,,OTHER,WA,10/10/2005 7:40 +Apache Junction,,OTHER,AZ,10/10/2005 9:00 +North Miami Beach,,OVAL,FL,10/10/2005 9:30 +Edgewater,,,FL,10/10/2005 11:30 +Los Angeles,,EGG,CA,10/10/2005 14:45 +Loretto,,TRIANGLE,PA,10/10/2005 20:00 +Lewisburg,,,TN,10/10/2005 21:00 +North Miami Beach,ORANGE YELLOW,OTHER,FL,10/10/2005 21:30 +East Wenatchee,,LIGHT,WA,10/10/2005 22:08 +Hendersonville,,LIGHT,NC,10/10/2005 23:00 +Brainerd,,DISK,MN,10/10/2005 23:07 +Holiday,,LIGHT,FL,10/11/2005 0:00 +Eagan,,CIRCLE,MN,10/11/2005 3:00 +Siloam Sprngs,,CIRCLE,AR,10/11/2005 3:20 +Canyonlands NP,,FORMATION,UT,10/11/2005 16:00 +Lake Point,,LIGHT,UT,10/11/2005 16:36 +Pearl Harbor,,LIGHT,HI,10/11/2005 18:33 +Peoria,,LIGHT,AZ,10/11/2005 18:45 +Buckeye,,FORMATION,AZ,10/11/2005 19:00 +Casa Grande,,LIGHT,AZ,10/11/2005 19:00 +Tempe,,TRIANGLE,AZ,10/11/2005 19:30 +Mobile,,LIGHT,AL,10/11/2005 19:45 +Little Ferry,,OVAL,NJ,10/11/2005 21:00 +Wall Lake,,LIGHT,IA,10/11/2005 21:00 +Bakersfield,,FIREBALL,CA,10/12/2005 0:00 +Bossier City,ORANGE,OVAL,LA,10/12/2005 1:15 +Longwood,,FORMATION,FL,10/12/2005 2:05 +Farmland,,LIGHT,IN,10/12/2005 4:00 +Republic,,FLASH,OH,10/12/2005 12:00 +Noblesville,,LIGHT,IN,10/12/2005 17:00 +Phoenix,,LIGHT,AZ,10/12/2005 20:02 +Mesa,,SPHERE,AZ,10/12/2005 20:05 +Peoria,ORANGE,TRIANGLE,AZ,10/12/2005 20:32 +Georgetown,RED,VARIOUS,TX,10/12/2005 21:00 +San Jose,,,CA,10/12/2005 22:00 +Siloam Springs,,CIRCLE,AR,10/13/2005 2:20 +Jupiter,,LIGHT,FL,10/13/2005 4:30 +Boise,,CHEVRON,ID,10/13/2005 5:05 +Twin Falls,,DISK,ID,10/13/2005 15:12 +Terlton,,CYLINDER,OK,10/13/2005 17:32 +Terlton,ORANGE,CYLINDER,OK,10/13/2005 17:32 +Mesa,,LIGHT,AZ,10/13/2005 18:40 +Miami,,OTHER,FL,10/13/2005 20:00 +Millbrook,,VARIOUS,AL,10/13/2005 20:00 +Livermore,,LIGHT,CA,10/13/2005 20:05 +Northfield,,CHEVRON,MN,10/13/2005 21:00 +Hayward,,RECTANGLE,CA,10/13/2005 21:30 +Atlanta,,OTHER,TX,10/13/2005 23:30 +Columbus,RED,SPHERE,OH,10/14/2005 1:00 +Amarillo,BLUE,SPHERE,TX,10/14/2005 6:40 +San Antonio,,OTHER,TX,10/14/2005 9:35 +Littleton,,CIRCLE,CO,10/14/2005 13:30 +Lenexa,,SPHERE,KS,10/14/2005 14:45 +Bonner Springs,,LIGHT,KS,10/14/2005 18:55 +Lincoln,RED,EGG,MT,10/14/2005 19:45 +Correo,,LIGHT,NM,10/14/2005 21:00 +Denver,,LIGHT,CO,10/14/2005 21:00 +Earp,,,CA,10/14/2005 21:30 +Park Rapids,,TRIANGLE,MN,10/14/2005 21:30 +Spanaway,,OVAL,WA,10/15/2005 0:00 +New Caney,,FORMATION,TX,10/15/2005 1:00 +La Crosse,,FORMATION,WI,10/15/2005 1:30 +Arlington,,LIGHT,TX,10/15/2005 3:00 +Ammon,,TRIANGLE,ID,10/15/2005 4:00 +Houston,,CIRCLE,TX,10/15/2005 4:32 +Oxford,,OVAL,OH,10/15/2005 8:30 +Kansas City,BLUE,LIGHT,MO,10/15/2005 10:00 +St. Charles,BLUE,SPHERE,MO,10/15/2005 10:19 +Joliet,,FLASH,IL,10/15/2005 11:00 +Phoenix,,CIGAR,OR,10/15/2005 13:10 +Thrall,,,LA,10/15/2005 14:00 +Cary,,,NC,10/15/2005 16:00 +Mineola,,EGG,TX,10/15/2005 16:00 +Marlton,,FORMATION,NJ,10/15/2005 19:05 +Hiwassee,,VARIOUS,VA,10/15/2005 20:00 +Bartlesville,YELLOW GREEN,OTHER,OK,10/15/2005 20:15 +Austin,RED,OTHER,TX,10/15/2005 21:00 +Bullhead City,,OTHER,AZ,10/15/2005 21:25 +Brentwood,RED,LIGHT,NH,10/15/2005 22:00 +Gleason,,SPHERE,WI,10/15/2005 22:00 +Seattle,,CYLINDER,WA,10/15/2005 22:00 +Springfield,,LIGHT,MO,10/15/2005 22:00 +Gleason,,SPHERE,WI,10/15/2005 22:30 +Americus,,LIGHT,GA,10/15/2005 23:00 +Converse,,OTHER,IN,10/15/2005 23:00 +Fairbanks,,LIGHT,AK,10/15/2005 23:00 +Gleason,,SPHERE,WI,10/15/2005 23:00 +Schuylkill Haven,RED,LIGHT,PA,10/15/2005 23:00 +Ventura,,OVAL,CA,10/16/2005 0:00 +Chicago,,LIGHT,IL,10/16/2005 2:20 +Modesto,GREEN,OVAL,CA,10/16/2005 2:25 +Daytona Beach,,LIGHT,FL,10/16/2005 6:28 +North Zulch,,CIRCLE,TX,10/16/2005 8:45 +Porterville,RED,CIRCLE,CA,10/16/2005 10:00 +Virginia Beach,,,VA,10/16/2005 10:30 +Colorado Springs,,TRIANGLE,CO,10/16/2005 18:15 +Anderson,,TRIANGLE,SC,10/16/2005 19:15 +Saint Clair Shores,,OTHER,MI,10/16/2005 19:30 +Santa Maria,,OVAL,CA,10/16/2005 19:46 +Santa Maria,,,CA,10/16/2005 19:48 +Boulder,RED YELLOW,LIGHT,CO,10/16/2005 21:00 +Westland,,FORMATION,MI,10/16/2005 21:20 +Arlington,YELLOW,,TX,10/17/2005 1:40 +Orlando,,LIGHT,FL,10/17/2005 6:45 +West Valley,,OTHER,UT,10/17/2005 13:00 +Kearns,,CROSS,UT,10/17/2005 15:15 +Kearns,RED,DIAMOND,UT,10/17/2005 15:30 +Clementon,,OTHER,NJ,10/17/2005 16:00 +Yukon,,VARIOUS,OK,10/17/2005 18:00 +Milwaukee,,CIRCLE,WI,10/17/2005 18:05 +Chambersburg,,LIGHT,PA,10/17/2005 18:35 +Kittanning,,LIGHT,PA,10/17/2005 20:00 +West Chester,,OVAL,PA,10/17/2005 20:50 +West Chester,,DISK,PA,10/17/2005 21:00 +Wixom,,EGG,MI,10/17/2005 22:00 +Murfreesboro,,LIGHT,TN,10/17/2005 23:25 +Glendale,,LIGHT,AZ,10/17/2005 23:40 +Anchorage,,OTHER,AK,10/18/2005 1:00 +Hickory Hills,,FORMATION,IL,10/18/2005 1:15 +Brazil,RED YELLOW,CIRCLE,IN,10/18/2005 6:50 +Oak Forest,,LIGHT,IL,10/18/2005 18:00 +Louisville,,VARIOUS,KY,10/18/2005 19:23 +Hillsboro,,SPHERE,KY,10/18/2005 19:30 +Downingtown,,CYLINDER,PA,10/18/2005 20:30 +Orlando,,OTHER,FL,10/18/2005 23:00 +Chillicothe,,FIREBALL,OH,10/19/2005 2:00 +Elizabeth,,LIGHT,NJ,10/19/2005 7:30 +Bastrop,,TRIANGLE,LA,10/19/2005 18:00 +Marlboro,,CIRCLE,MA,10/19/2005 21:00 +Jonestown,,LIGHT,PA,10/19/2005 21:15 +Whitesburg,RED,TRIANGLE,KY,10/19/2005 22:00 +Milwaukee,,TRIANGLE,WI,10/19/2005 22:45 +Pinckney,,LIGHT,MI,10/20/2005 0:15 +Wellston,GREEN,CIRCLE,MI,10/20/2005 1:00 +Rockport,,FIREBALL,WV,10/20/2005 4:15 +Connelly Springs,RED,,NC,10/20/2005 8:30 +Austin,,TRIANGLE,TX,10/20/2005 9:25 +Quincy,,FIREBALL,MA,10/20/2005 12:00 +Denver,,CIGAR,CO,10/20/2005 14:10 +Lancaster,,SPHERE,CA,10/20/2005 16:00 +Nixa,,DISK,MO,10/20/2005 19:00 +Surprise,,LIGHT,AZ,10/20/2005 19:00 +Montville,,CONE,OH,10/20/2005 20:00 +Springfield,,,MO,10/20/2005 20:00 +Gainesville,,TRIANGLE,FL,10/20/2005 20:14 +North Myrtle Beach,,DISK,SC,10/20/2005 21:00 +Brandon,,LIGHT,FL,10/20/2005 21:10 +Pueblo,,,CO,10/20/2005 22:00 +Moline,,TRIANGLE,IL,10/20/2005 22:30 +Geneva,,OTHER,IL,10/20/2005 23:00 +Parkersburg,RED,OTHER,WV,10/21/2005 4:15 +Kansas City,,RECTANGLE,KS,10/21/2005 5:00 +Equinunk,,OTHER,PA,10/21/2005 18:15 +Heflin,,SPHERE,AL,10/21/2005 20:00 +Canyonville,GREEN,,OR,10/21/2005 23:05 +Liverpool,,,NY,10/22/2005 2:00 +Yuma,,DISK,AZ,10/22/2005 3:00 +Irmo,,CIRCLE,SC,10/22/2005 5:15 +Shoreview,,LIGHT,MN,10/22/2005 6:10 +Hinkley,,OTHER,CA,10/22/2005 10:15 +Silver City,,LIGHT,NM,10/22/2005 15:00 +Lithia Springs,,SPHERE,GA,10/22/2005 16:00 +Phoenix,,LIGHT,AZ,10/22/2005 17:30 +Grand Island,,RECTANGLE,NE,10/22/2005 19:00 +Gulf of Mexico,,,LA,10/22/2005 19:55 +Nelsonville,,TRIANGLE,OH,10/22/2005 20:08 +Tinley Park,,LIGHT,IL,10/22/2005 20:35 +Little Rock,,,AR,10/22/2005 21:10 +Tinley Park,RED ORANGE,,IL,10/22/2005 21:30 +Edmond,,OVAL,OK,10/22/2005 22:00 +Fort Worth,RED,LIGHT,TX,10/23/2005 0:30 +Preston,,FIREBALL,KS,10/23/2005 2:00 +Phoenix,,FORMATION,AZ,10/23/2005 11:00 +Espanola,,FIREBALL,NM,10/23/2005 12:00 +Jacksonville,,TRIANGLE,NC,10/23/2005 19:40 +West New York,RED,FIREBALL,NJ,10/23/2005 20:00 +Yucaipa,,LIGHT,CA,10/23/2005 21:30 +Yucaipa,,LIGHT,CA,10/23/2005 21:30 +Park Valley,,RECTANGLE,UT,10/23/2005 23:00 +San Antonio,,CIRCLE,TX,10/24/2005 5:30 +Missouri City,,FLASH,TX,10/24/2005 6:25 +Lauderhill,,OVAL,FL,10/24/2005 10:17 +Denver,,VARIOUS,CO,10/24/2005 17:20 +Surprise,,OTHER,AZ,10/24/2005 19:16 +Ely,RED,SPHERE,NV,10/24/2005 20:00 +North Miami,,LIGHT,FL,10/24/2005 20:30 +Queen Creek,,TRIANGLE,AZ,10/24/2005 22:30 +Miami,,TRIANGLE,FL,10/24/2005 22:50 +Pasadena,,CIRCLE,CA,10/25/2005 0:00 +Morgan Hill,,FLASH,CA,10/25/2005 2:00 +St. Louis,,OTHER,MO,10/25/2005 17:50 +Surprise,,LIGHT,AZ,10/25/2005 19:30 +Canon City,,LIGHT,CO,10/25/2005 20:35 +Miami Beach,,CHEVRON,FL,10/25/2005 22:00 +Milwaukee,,TRIANGLE,WI,10/25/2005 23:00 +San Francisco,,,CA,10/26/2005 0:00 +Tracy,,OVAL,CA,10/26/2005 9:45 +Wichita,,LIGHT,KS,10/26/2005 13:39 +Orlando,,CIGAR,FL,10/26/2005 14:00 +I-495S,,LIGHT,VA,10/26/2005 18:50 +Chesterfield,,LIGHT,MO,10/26/2005 19:30 +Gila Bend,,LIGHT,AZ,10/26/2005 19:45 +Covington,,TRIANGLE,GA,10/26/2005 20:00 +Hillsboro,,VARIOUS,KY,10/26/2005 20:00 +San Jose,RED,OTHER,CA,10/26/2005 20:00 +Tracy,,SPHERE,CA,10/26/2005 20:00 +Eloy,,FORMATION,AZ,10/26/2005 20:45 +San Francisco,,LIGHT,CA,10/26/2005 21:00 +Borrego Springs,ORANGE,TRIANGLE,CA,10/26/2005 21:20 +Tracy,,OVAL,CA,10/26/2005 22:04 +Glidden,,TRIANGLE,IA,10/27/2005 0:00 +no data,,,NY,10/27/2005 0:00 +Elko,,LIGHT,NV,10/27/2005 3:00 +Redwood City,GREEN,LIGHT,CA,10/27/2005 8:14 +Edwardsville,,VARIOUS,IL,10/27/2005 19:30 +Pierceville,,,KS,10/27/2005 19:30 +Jacksonville,RED,DISK,NC,10/27/2005 20:00 +Evarts,,TEARDROP,KY,10/28/2005 1:00 +Austin,,TRIANGLE,TX,10/28/2005 2:00 +Memphis,,,TN,10/28/2005 5:00 +Eldridge,,DISK,IA,10/28/2005 8:00 +New York City,,VARIOUS,NY,10/28/2005 10:00 +Kendallville,,SPHERE,IN,10/28/2005 14:00 +Cocoa,,OVAL,FL,10/28/2005 18:15 +St. Louis,,FIREBALL,MO,10/28/2005 18:15 +Nicholasville,,DIAMOND,KY,10/28/2005 19:00 +Mesquite,,CIRCLE,TX,10/28/2005 19:20 +Fenton,,TRIANGLE,MO,10/28/2005 20:00 +Carlsbad,RED,FORMATION,CA,10/28/2005 20:15 +Frankenmuth,,RECTANGLE,MI,10/29/2005 7:30 +Dallas,,DISK,TX,10/29/2005 10:00 +New Wimington,,OTHER,PA,10/29/2005 13:42 +Mishawaka,,FORMATION,IN,10/29/2005 16:30 +Surprise,,FIREBALL,AZ,10/29/2005 18:30 +Seattle,,OTHER,WA,10/29/2005 18:51 +Farmington,,OTHER,NM,10/29/2005 19:00 +Surprise,,LIGHT,AZ,10/29/2005 19:00 +Hillsboro,,OTHER,KY,10/29/2005 19:30 +no data,,,OH,10/29/2005 21:00 +Lancaster,,LIGHT,CA,10/29/2005 21:30 +Livingston,,SPHERE,LA,10/29/2005 22:00 +Wyndmoor,,FIREBALL,PA,10/29/2005 23:30 +Glendale,,OTHER,KY,10/30/2005 0:00 +Preston,,DIAMOND,MD,10/30/2005 0:00 +Starkville,GREEN,FLASH,MS,10/30/2005 1:50 +Flagstaff,,TRIANGLE,AZ,10/30/2005 2:30 +Edwards AFB,,TRIANGLE,CA,10/30/2005 3:00 +Osierfield,,LIGHT,GA,10/30/2005 6:00 +Perris,,OTHER,CA,10/30/2005 11:00 +Indianapolis,BLUE,CYLINDER,IN,10/30/2005 13:00 +Marin,GREEN,LIGHT,CA,10/30/2005 18:30 +Turnpike,,DIAMOND,NJ,10/30/2005 19:00 +Porterville,,SPHERE,CA,10/30/2005 19:15 +Mission Viejo,RED,OTHER,CA,10/30/2005 19:28 +Sonoma,,FIREBALL,CA,10/30/2005 19:28 +Kelseyville,,FIREBALL,CA,10/30/2005 19:30 +Napa,,FIREBALL,CA,10/30/2005 19:30 +Porterville,,,CA,10/30/2005 19:30 +Rachel,,OTHER,NV,10/30/2005 20:00 +Litchfield,,LIGHT,CT,10/30/2005 21:00 +Silver Spring,,TRIANGLE,MD,10/30/2005 21:30 +Litchfield,,LIGHT,CT,10/30/2005 22:00 +Strafford,,SPHERE,MO,10/30/2005 22:48 +Mars Hill,GREEN,CIGAR,NC,10/31/2005 0:00 +Orland Park,,FORMATION,IL,10/31/2005 0:00 +Laporte,,FORMATION,IN,10/31/2005 1:00 +Charlottesville,,OTHER,VA,10/31/2005 1:50 +Turner Falls,,,OK,10/31/2005 2:00 +Yonkers,RED,OTHER,NY,10/31/2005 2:15 +Marion,GREEN,SPHERE,NC,10/31/2005 2:55 +Las Vegas,,OTHER,NV,10/31/2005 5:11 +Edison,,OTHER,NJ,10/31/2005 8:30 +Vallejo,RED,,CA,10/31/2005 8:45 +Shalimar,,FLASH,FL,10/31/2005 11:29 +Baltimore,,CYLINDER,MD,10/31/2005 14:00 +New Milford,,CIGAR,CT,10/31/2005 16:00 +Poughkeepsie,,LIGHT,NY,10/31/2005 18:00 +Linwood,,LIGHT,NJ,10/31/2005 18:30 +Clarksville,,OTHER,MD,10/31/2005 19:00 +Newark,,LIGHT,DE,10/31/2005 19:00 +Scottsdale,,TRIANGLE,AZ,10/31/2005 19:00 +Scottsdale,,TRIANGLE,AZ,10/31/2005 19:00 +Chambersburg,,FIREBALL,PA,10/31/2005 19:15 +Scottsdale,,TRIANGLE,AZ,10/31/2005 19:30 +Bristol,,VARIOUS,TN,10/31/2005 19:40 +Fairfield,,TRIANGLE,CA,10/31/2005 20:00 +Greensboro,,FIREBALL,MD,10/31/2005 20:30 +Augusta Springs,BLUE,,VA,10/31/2005 21:00 +Clearfield,,,PA,10/31/2005 21:00 +Greensboro,BLUE,FLASH,NC,10/31/2005 21:00 +Johnstown,,EGG,PA,10/31/2005 21:00 +Northridge,,CHEVRON,CA,10/31/2005 21:00 +Mt. Pleasant,,FLASH,PA,10/31/2005 21:10 +Leesburg,,,VA,10/31/2005 21:15 +Charlottesville,,FIREBALL,VA,10/31/2005 21:17 +Burnsville,,FIREBALL,NC,10/31/2005 21:30 +Lancaster,GREEN,LIGHT,PA,10/31/2005 21:30 +Poolesville,,FIREBALL,MD,10/31/2005 21:30 +Bristol,,,TN,10/31/2005 21:40 +Fort Fisher,,CIRCLE,NC,10/31/2005 23:00 +Retreat,RED,DISK,TX,10/31/2005 23:30 +Northridge,,,CA,10/31/2005 23:45 +Salt Lake City,,DISK,UT,10/31/2005 23:52 +Interstate 10,,SPHERE,LA,11/1/2005 0:00 +Glennallen,,,AK,11/1/2005 0:30 +Orlando,RED BLUE,CIRCLE,FL,11/1/2005 0:50 +Powers,,FIREBALL,MI,11/1/2005 6:40 +Danielson,BLUE,OVAL,CT,11/1/2005 8:00 +Tucson,RED,LIGHT,AZ,11/1/2005 16:56 +Atlantic City,,TRIANGLE,NJ,11/1/2005 17:00 +Ventura,,FIREBALL,CA,11/1/2005 17:05 +Brentwood,RED GREEN BLUE,OTHER,NH,11/1/2005 17:30 +Irvine,,LIGHT,CA,11/1/2005 17:40 +El Paso,,LIGHT,IL,11/1/2005 18:00 +St. Charles,,FIREBALL,MO,11/1/2005 19:35 +Columbia,GREEN,,MO,11/1/2005 19:40 +Clarks Summit,,OTHER,PA,11/1/2005 20:00 +Schaumburg,,LIGHT,IL,11/1/2005 21:10 +Jamestown,,LIGHT,RI,11/1/2005 23:00 +Tinley Park,RED,TRIANGLE,IL,11/1/2005 23:00 +Richfield,,OVAL,MN,11/2/2005 0:00 +San Antonio,,LIGHT,TX,11/2/2005 7:15 +Chicago,,OTHER,IL,11/2/2005 16:45 +Chicago,,OTHER,IL,11/2/2005 16:45 +Woodstock,,TRIANGLE,GA,11/2/2005 17:00 +Garden Grove,,LIGHT,CA,11/2/2005 17:30 +Pocono Summit,,OVAL,PA,11/2/2005 17:45 +Marshfield,,FIREBALL,WI,11/2/2005 18:25 +Virginia Beach,,SPHERE,VA,11/2/2005 18:45 +Arlington,,LIGHT,TX,11/2/2005 19:00 +Bigfork,,,MN,11/2/2005 19:00 +Fort Branch,,LIGHT,IN,11/2/2005 19:00 +Newton,YELLOW,TRIANGLE,IL,11/2/2005 19:00 +Wyoming,,SPHERE,MI,11/2/2005 19:10 +Kingsville,,LIGHT,TX,11/2/2005 19:30 +Oblong,,FORMATION,IL,11/2/2005 20:10 +Coweta,,OTHER,OK,11/2/2005 20:30 +Plum Borough,,LIGHT,PA,11/2/2005 21:05 +Mt. Dora,,DISK,FL,11/2/2005 21:30 +Bedford,,TRIANGLE,VA,11/2/2005 22:00 +Springfield,,LIGHT,IL,11/2/2005 23:10 +Oak Island,RED,FIREBALL,NC,11/2/2005 23:45 +Woodland,,,CA,11/3/2005 4:00 +Arden,,FIREBALL,NC,11/3/2005 5:15 +South Pasadena,,FIREBALL,CA,11/3/2005 16:40 +Mountain View,,OTHER,CA,11/3/2005 17:00 +Citrus Heights,,SPHERE,CA,11/3/2005 17:21 +Vail,,DISK,CO,11/3/2005 17:40 +Chicago,GREEN,FIREBALL,IL,11/3/2005 18:00 +Naples,,OTHER,FL,11/3/2005 18:40 +Morganfield,RED,,KY,11/3/2005 18:45 +Elgin,,LIGHT,TX,11/3/2005 19:00 +Catskill,,TRIANGLE,NY,11/3/2005 19:47 +New Rome,,FIREBALL,WI,11/3/2005 19:49 +Kingsville,,OVAL,TX,11/3/2005 20:00 +Lynchburg,,OTHER,VA,11/3/2005 20:00 +North Las Vegas,,LIGHT,NV,11/3/2005 20:40 +New Castle,,FIREBALL,PA,11/3/2005 21:00 +Longmont,GREEN,CIRCLE,CO,11/3/2005 21:30 +Chico,,TRIANGLE,CA,11/3/2005 23:00 +Concord,,FLASH,CA,11/3/2005 23:30 +Rockledge,YELLOW,,FL,11/3/2005 23:45 +Morgantown,,,WV,11/4/2005 0:15 +Guilford,,,CT,11/4/2005 0:30 +Collinsville,,,IL,11/4/2005 1:50 +Edwardsburg,GREEN,FIREBALL,MI,11/4/2005 4:00 +Cairo,,TRIANGLE,WV,11/4/2005 4:30 +Moscow,,SPHERE,PA,11/4/2005 10:00 +West Bridgewater,,LIGHT,MA,11/4/2005 17:45 +Newcastle,,,OK,11/4/2005 19:40 +Belton,,FLASH,TX,11/4/2005 20:30 +Tacoma,BLUE,CIRCLE,WA,11/4/2005 21:03 +Helena,,TRIANGLE,MT,11/4/2005 21:45 +Clovis,ORANGE,FIREBALL,CA,11/4/2005 23:18 +Lemoore,,LIGHT,CA,11/4/2005 23:44 +North Las Vegas,,FIREBALL,NV,11/5/2005 0:05 +Phoenix,,LIGHT,AZ,11/5/2005 0:40 +Mason,,SPHERE,MI,11/5/2005 1:00 +Grand Blanc,,,MI,11/5/2005 3:00 +Brunswick,,CYLINDER,GA,11/5/2005 5:25 +Somerset,BLUE,SPHERE,TX,11/5/2005 10:00 +Hermitage,,OVAL,TN,11/5/2005 11:00 +Dresden,,CYLINDER,OH,11/5/2005 13:30 +Bellingham,,DISK,WA,11/5/2005 18:30 +Humble,,LIGHT,TX,11/5/2005 19:00 +Porterville,RED,FIREBALL,CA,11/5/2005 19:55 +Oxnard,RED,OTHER,CA,11/5/2005 20:00 +Jensen Beach,,,FL,11/5/2005 21:30 +Boise,BLUE,FORMATION,ID,11/5/2005 22:00 +Surprise,RED BLUE,CIRCLE,AZ,11/5/2005 22:00 +Nolanville,,OVAL,TX,11/5/2005 22:45 +Kingston,ORANGE YELLOW,OTHER,OK,11/5/2005 22:50 +Cranston,,,RI,11/5/2005 23:00 +South Plainfield,,LIGHT,NJ,11/5/2005 23:00 +Temple,,DIAMOND,TX,11/5/2005 23:00 +Laramie,,LIGHT,WY,11/5/2005 23:28 +Hanford,,FIREBALL,CA,11/5/2005 23:45 +Cincinnati,,OTHER,OH,11/6/2005 1:30 +Valencia,,FORMATION,CA,11/6/2005 16:00 +Bastrop,,LIGHT,TX,11/6/2005 18:15 +Ellsinore,,FIREBALL,MO,11/6/2005 19:50 +Buffalo,GREEN,FIREBALL,NY,11/6/2005 20:00 +Cedarville,BLUE,FIREBALL,NY,11/6/2005 20:02 +Van Buren,RED,LIGHT,MO,11/6/2005 20:40 +Lodi,ORANGE,FIREBALL,CA,11/6/2005 21:53 +Lynnwood,,CIRCLE,WA,11/6/2005 22:30 +Plano,,LIGHT,TX,11/6/2005 23:00 +Pensacola,RED,SPHERE,FL,11/7/2005 15:00 +Urbandale,,FIREBALL,IA,11/7/2005 17:00 +Navarre,,OTHER,FL,11/7/2005 18:00 +Bastrop,,LIGHT,TX,11/7/2005 18:15 +Navarre,,FORMATION,FL,11/7/2005 18:15 +Brighton,,SPHERE,TN,11/7/2005 18:16 +Navarre,,FORMATION,FL,11/7/2005 18:25 +Navarre,,DIAMOND,FL,11/7/2005 18:30 +Navarre,,LIGHT,FL,11/7/2005 18:35 +Fort Walton Beach,,LIGHT,FL,11/7/2005 18:40 +Navarre,,FORMATION,FL,11/7/2005 18:40 +Myrtle Beach,ORANGE,LIGHT,SC,11/7/2005 18:45 +Maple Grove,,LIGHT,MN,11/7/2005 19:00 +Maple Grove,,OTHER,MN,11/7/2005 19:00 +Navarre,GREEN,RECTANGLE,FL,11/7/2005 19:00 +Bridgewater,,,NJ,11/7/2005 20:00 +Navarre,RED GREEN BLUE,TRIANGLE,FL,11/7/2005 20:00 +Sylvania,ORANGE,LIGHT,GA,11/7/2005 20:00 +Texarkana,,TRIANGLE,TX,11/7/2005 20:00 +Hemingway,,,SC,11/7/2005 21:00 +Schellsburg,,OVAL,PA,11/7/2005 21:00 +Denham Springs,,DISK,LA,11/7/2005 21:27 +Branford,,,CT,11/7/2005 21:30 +Schellsburg,,OVAL,PA,11/7/2005 22:00 +Minnetonka,,LIGHT,MN,11/7/2005 22:10 +Harrisburg,,FLASH,PA,11/7/2005 23:30 +Agawam,,LIGHT,MA,11/8/2005 2:30 +Steamboat Springs,,,CO,11/8/2005 4:45 +Enterprise,,LIGHT,AL,11/8/2005 5:11 +Webster,,EGG,NY,11/8/2005 14:45 +Garden City,,CIRCLE,KS,11/8/2005 17:25 +Newark,,LIGHT,DE,11/8/2005 17:48 +Barrington,,FLASH,IL,11/8/2005 18:00 +Eugene,,,OR,11/8/2005 18:24 +Pleasant Hill,,CIRCLE,CA,11/8/2005 20:00 +Pleasant Hill,,CIRCLE,CA,11/8/2005 20:00 +Ahwatukee,,FIREBALL,AZ,11/8/2005 22:00 +Antioch,,,CA,11/8/2005 22:30 +Sacramento,ORANGE,SPHERE,CA,11/9/2005 2:40 +Norman,,TRIANGLE,OK,11/9/2005 3:45 +Newburgh,,CIRCLE,NY,11/9/2005 4:50 +Littleton,,,CO,11/9/2005 5:25 +Tukwila,,DISK,WA,11/9/2005 12:00 +Mt Carmel,,,IL,11/9/2005 17:30 +Shingle Springs,,CIRCLE,CA,11/9/2005 18:00 +Jackson,BLUE,TEARDROP,MO,11/9/2005 18:30 +Newborn,,TRIANGLE,GA,11/9/2005 18:45 +Minneapolis,,LIGHT,MN,11/9/2005 19:05 +Ridgecrest,ORANGE,OTHER,CA,11/9/2005 19:45 +Decatur,,FIREBALL,IL,11/9/2005 19:55 +Cassatt,,LIGHT,SC,11/9/2005 20:15 +New Port Richey,,OTHER,FL,11/9/2005 20:30 +Laplata,,OTHER,MD,11/9/2005 21:00 +Port Isabel,RED,DISK,TX,11/10/2005 1:05 +Lake Oswego,BLUE,CYLINDER,OR,11/10/2005 2:00 +St. Charles,,,IN,11/10/2005 11:36 +Johnson City,,CYLINDER,NY,11/10/2005 15:40 +Port Orchard,ORANGE,TRIANGLE,WA,11/10/2005 16:00 +Calabasas,,LIGHT,CA,11/10/2005 17:00 +Quartzsite,,LIGHT,AZ,11/10/2005 17:30 +Bastrop,,,TX,11/10/2005 18:00 +East Grand Forks,,,MN,11/10/2005 18:15 +Swartz Creek,RED,TRIANGLE,MI,11/10/2005 18:30 +Kingstown,,LIGHT,RI,11/10/2005 19:15 +Sylvania,ORANGE,LIGHT,GA,11/10/2005 19:45 +Thornton,,LIGHT,CO,11/10/2005 20:30 +Maricopa,,OTHER,AZ,11/10/2005 20:45 +Quartzite,,FORMATION,AZ,11/10/2005 20:50 +Millville,,CYLINDER,NY,11/10/2005 21:00 +Lewiston,RED,FORMATION,ME,11/10/2005 21:30 +Atlanta,,,GA,11/10/2005 22:00 +Eastpointe,,TEARDROP,MI,11/10/2005 23:45 +Oswego,,CIRCLE,NY,11/10/2005 23:54 +Fremont,,LIGHT,CA,11/11/2005 5:30 +Mechanicsburg,,LIGHT,OH,11/11/2005 6:25 +Calhoun,,EGG,KY,11/11/2005 9:00 +Santa Barbara,,LIGHT,CA,11/11/2005 17:00 +Okeechobee,,CYLINDER,FL,11/11/2005 17:20 +Cortland,,LIGHT,NY,11/11/2005 18:00 +East Grand Forks,,,MN,11/11/2005 18:00 +Lake Charles,,TRIANGLE,LA,11/11/2005 18:25 +East Patchogue,,OTHER,NY,11/11/2005 18:40 +Jacksonville,,TRIANGLE,FL,11/11/2005 21:00 +Westville,,DISK,NJ,11/11/2005 23:05 +Seattle,BLUE,OTHER,WA,11/12/2005 0:45 +Redding,,LIGHT,CA,11/12/2005 5:30 +Ventura,ORANGE,OVAL,CA,11/12/2005 16:24 +Grand Rapids,,CYLINDER,MI,11/12/2005 17:00 +Colorado Springs,,CIRCLE,CO,11/12/2005 19:00 +Rialto,,CIRCLE,CA,11/12/2005 20:20 +West Conshohocken,,FIREBALL,PA,11/12/2005 21:00 +Perris,,TRIANGLE,CA,11/12/2005 22:00 +Richmond,,FIREBALL,VA,11/12/2005 22:45 +Cottonwood,,OTHER,CA,11/13/2005 0:00 +Lake George,,OVAL,NY,11/13/2005 6:45 +West Los Angeles,BLUE,,CA,11/13/2005 9:30 +Greenville,,CIRCLE,MI,11/13/2005 17:00 +Brecksville,RED GREEN,FIREBALL,OH,11/13/2005 20:00 +Belleville,,,NJ,11/13/2005 22:00 +Mechanicsburg,,LIGHT,OH,11/14/2005 6:16 +Upstate NY,,DISK,NY,11/14/2005 13:44 +Wappingers Falls,,CIRCLE,NY,11/14/2005 17:30 +Dos Palos,,,CA,11/14/2005 19:08 +Phoenix,,LIGHT,AZ,11/14/2005 19:30 +Plano,GREEN,FIREBALL,TX,11/14/2005 19:45 +Lewisville,,FLASH,TX,11/14/2005 20:10 +Austin,,FIREBALL,TX,11/14/2005 20:13 +Waco,BLUE,LIGHT,TX,11/14/2005 20:15 +North Hollywood,,FIREBALL,CA,11/14/2005 20:45 +Petaluma,,LIGHT,CA,11/14/2005 20:51 +Fullerton,,CIRCLE,CA,11/14/2005 21:00 +Marietta,,TEARDROP,GA,11/14/2005 21:00 +Boston,,LIGHT,MA,11/14/2005 21:15 +Brownsville,,LIGHT,TN,11/14/2005 22:00 +Maricopa,GREEN,FIREBALL,AZ,11/14/2005 22:31 +Mandeville,GREEN,FIREBALL,LA,11/14/2005 23:00 +Lakeland,,TRIANGLE,FL,11/15/2005 0:00 +San Antonio,,OTHER,TX,11/15/2005 1:00 +San Francisco,,CIRCLE,CA,11/15/2005 1:56 +The Colony,,LIGHT,TX,11/15/2005 2:00 +Martinez,,OTHER,CA,11/15/2005 2:30 +Ypsilanti Township,GREEN,FORMATION,MI,11/15/2005 3:30 +Fordsville,,LIGHT,KY,11/15/2005 4:00 +St. Augustine,,TRIANGLE,FL,11/15/2005 8:00 +Merritt Island,,LIGHT,FL,11/15/2005 11:12 +Escondido,,CIRCLE,CA,11/15/2005 14:00 +Utah,,FIREBALL,UT,11/15/2005 15:00 +Camarillo,,DISK,CA,11/15/2005 16:00 +Huron,,LIGHT,SD,11/15/2005 19:00 +Quartzite,,FORMATION,AZ,11/15/2005 19:00 +Lexington,,FIREBALL,NC,11/15/2005 19:23 +Ogden,,FIREBALL,UT,11/15/2005 19:37 +Moraga,,LIGHT,CA,11/15/2005 20:00 +Phoenix,,CIRCLE,AZ,11/15/2005 20:00 +Lenwood,ORANGE,FIREBALL,CA,11/15/2005 20:30 +Salisbury,BLUE,OVAL,MD,11/15/2005 20:30 +Surfside Beach,,LIGHT,SC,11/15/2005 20:30 +Fremont,GREEN,SPHERE,CA,11/15/2005 22:10 +Richmond,,TRIANGLE,VA,11/15/2005 22:10 +Fernwood,,CIRCLE,ID,11/15/2005 23:00 +Parsons,,DISK,KS,11/15/2005 23:00 +Hilo,,LIGHT,HI,11/15/2005 23:14 +Colby,,LIGHT,KS,11/15/2005 23:43 +Fayetteville,,FORMATION,NC,11/16/2005 1:10 +Phoenix,,TRIANGLE,AZ,11/16/2005 17:50 +Los Angeles,,DISK,CA,11/16/2005 18:00 +Los Angeles,RED BLUE,DISK,CA,11/16/2005 18:00 +Antioch,,LIGHT,TN,11/16/2005 20:15 +Centralia,,TRIANGLE,WA,11/16/2005 21:00 +Angels Camp,,SPHERE,CA,11/16/2005 22:00 +Leominster,GREEN,FLASH,MA,11/16/2005 23:45 +Meadville,,LIGHT,PA,11/17/2005 3:00 +Chandler,,LIGHT,AZ,11/17/2005 10:38 +Ballinger,,VARIOUS,TX,11/17/2005 13:00 +Kermit,,,TX,11/17/2005 18:00 +Charlotte,RED,OTHER,NC,11/17/2005 18:55 +Ventura,,OVAL,CA,11/17/2005 19:40 +Maricopa County,,OTHER,AZ,11/17/2005 20:30 +Perry,,OTHER,UT,11/17/2005 21:30 +Parish,,LIGHT,NY,11/18/2005 0:00 +San Diego,,TRIANGLE,CA,11/18/2005 0:25 +Fort Worth,,LIGHT,TX,11/18/2005 6:20 +Minneapolis,,DISK,MN,11/18/2005 14:30 +Scottsdale,,DISK,AZ,11/18/2005 15:00 +Hays,,FIREBALL,MT,11/18/2005 18:30 +Wilmington,,,NC,11/18/2005 18:35 +Bonita Springs,,,FL,11/18/2005 21:45 +Pittsfield,,CIGAR,MA,11/18/2005 22:00 +Lincoln,,SPHERE,CA,11/18/2005 22:30 +Browns Summit,GREEN,,NC,11/18/2005 22:35 +Lenoir City,,DIAMOND,TN,11/19/2005 5:40 +Overland Park,RED,OTHER,KS,11/19/2005 16:00 +Columbia - Stephens Lake,,LIGHT,MO,11/19/2005 16:30 +Encinitas,,DISK,CA,11/19/2005 17:56 +Gurley,,CIRCLE,AL,11/19/2005 18:30 +Denver,ORANGE GREEN,CIGAR,CO,11/19/2005 19:55 +Palo Alto,,FORMATION,CA,11/20/2005 2:00 +San Francisco,,,CA,11/20/2005 3:00 +Elk Grove,,CIRCLE,CA,11/20/2005 10:00 +Hawthorne,YELLOW,OTHER,CA,11/20/2005 12:21 +Madison,,LIGHT,WI,11/20/2005 17:50 +Barstow,,LIGHT,CA,11/20/2005 17:58 +Kansas,,LIGHT,KS,11/20/2005 18:00 +Findlay,,OTHER,OH,11/20/2005 19:00 +Hemptead-Brenham,,LIGHT,TX,11/20/2005 20:00 +New Rochelle,,,NY,11/20/2005 20:30 +Palo Alto,,,CA,11/20/2005 21:30 +Algadonis,,FORMATION,AZ,11/20/2005 22:00 +Bellevue,GREEN,FIREBALL,NE,11/20/2005 22:15 +Bethesda,,LIGHT,MD,11/20/2005 22:30 +Detroit Michigan,,TRIANGLE,MI,11/20/2005 23:00 +North Bend,,CIGAR,WA,11/21/2005 7:25 +Boca Raton,,LIGHT,FL,11/21/2005 20:00 +Long Beach,,DISK,CA,11/21/2005 20:30 +Fresno,,OVAL,CA,11/21/2005 22:38 +Visalia,RED,VARIOUS,CA,11/21/2005 23:10 +White Rock,,TRIANGLE,SC,11/22/2005 0:00 +Downey,,FIREBALL,CA,11/22/2005 1:45 +Ann Arbor,,,MI,11/22/2005 3:35 +Hemet,,LIGHT,CA,11/22/2005 4:00 +Elk Park,,TRIANGLE,MT,11/22/2005 14:20 +San Antonio,,VARIOUS,TX,11/22/2005 15:00 +Salem,,OTHER,IL,11/22/2005 17:00 +Overland Park,ORANGE YELLOW GREEN BLUE,,KS,11/22/2005 17:45 +Quarryville,,,PA,11/22/2005 18:05 +James Island,,OTHER,SC,11/22/2005 18:40 +Benicia,,FIREBALL,CA,11/22/2005 19:15 +Butler,,CHEVRON,MO,11/22/2005 19:40 +James Island,,OTHER,SC,11/22/2005 19:40 +Norwalk,,CIGAR,IA,11/22/2005 19:40 +Bangor,YELLOW BLUE,OTHER,ME,11/22/2005 19:45 +Edmond,,,OK,11/22/2005 19:45 +Chambersburg,,CIGAR,PA,11/22/2005 20:40 +Charleston,,RECTANGLE,SC,11/22/2005 20:55 +Sacramento,GREEN,SPHERE,CA,11/22/2005 21:00 +Louisville,,VARIOUS,KY,11/22/2005 21:45 +Kamas,BLUE,,UT,11/22/2005 22:30 +Folly Beach,,DISK,SC,11/22/2005 22:40 +Sierra Vista,,LIGHT,AZ,11/22/2005 23:00 +Woodstock,,TRIANGLE,GA,11/22/2005 23:15 +Ogden,,CIRCLE,UT,11/22/2005 23:45 +Woodburn,,FIREBALL,OR,11/23/2005 0:45 +Dade City,,DISK,FL,11/23/2005 3:00 +Navajo Mountain,,,UT,11/23/2005 3:00 +Dallas,,TRIANGLE,TX,11/23/2005 16:00 +Frankin,,,NY,11/23/2005 19:00 +Franklin,,LIGHT,MA,11/23/2005 19:00 +Princess Anne,,FORMATION,MD,11/23/2005 19:00 +Lee Vining,,LIGHT,CA,11/23/2005 21:00 +Puckett,,RECTANGLE,MS,11/23/2005 21:00 +Goffs,,LIGHT,CA,11/23/2005 21:25 +Bodie State Park,,SPHERE,CA,11/23/2005 21:30 +Bertram,,LIGHT,TX,11/23/2005 23:55 +Venice,,LIGHT,CA,11/24/2005 0:00 +Port St. Lucie,,LIGHT,FL,11/24/2005 0:15 +Santa Barbara,ORANGE,TRIANGLE,CA,11/24/2005 8:30 +Terre Haute,,LIGHT,IN,11/24/2005 18:30 +Dover,,LIGHT,OH,11/24/2005 19:00 +Nodine,,LIGHT,MN,11/24/2005 19:00 +Santa Barbara,ORANGE,TRIANGLE,CA,11/24/2005 20:00 +Point Pleasant,,DIAMOND,NJ,11/24/2005 20:30 +Centreville,,LIGHT,MD,11/24/2005 21:00 +Burlington,ORANGE,FORMATION,NC,11/24/2005 21:10 +St. Petersburg,,SPHERE,FL,11/24/2005 22:30 +Palm Desert,,TRIANGLE,CA,11/24/2005 22:45 +Elmhurst,,DISK,IL,11/25/2005 0:00 +Charlotte,,TEARDROP,NC,11/25/2005 1:30 +Palm Beach Gardens,ORANGE,OTHER,FL,11/25/2005 4:15 +Bloomington,,CONE,IN,11/25/2005 6:15 +Madisonville,,LIGHT,KY,11/25/2005 18:45 +Madisonville,RED,LIGHT,KY,11/25/2005 18:45 +Tampa,RED,TRIANGLE,FL,11/25/2005 20:25 +Lehigh Acres,,OVAL,FL,11/25/2005 21:30 +South Plainfield,GREEN,CIRCLE,NJ,11/25/2005 21:31 +Suffern,,LIGHT,NY,11/25/2005 21:45 +Wichita,,CIGAR,KS,11/25/2005 22:30 +Eaton-Muncie,,DIAMOND,IN,11/25/2005 23:00 +Ware Shoals,,TRIANGLE,SC,11/25/2005 23:45 +Greensburg,,VARIOUS,KY,11/26/2005 5:30 +Atlanta,,,GA,11/26/2005 13:15 +Maryhill,,LIGHT,WA,11/26/2005 18:38 +Atlanta,,CIRCLE,GA,11/26/2005 19:00 +Sarasota,BLUE,OVAL,FL,11/26/2005 19:30 +Highland Park,,,MI,11/27/2005 6:40 +Paso Robles,,LIGHT,CA,11/27/2005 13:00 +Paso Robles,,LIGHT,CA,11/27/2005 13:00 +Anacortes,,LIGHT,WA,11/27/2005 19:40 +Groton,,LIGHT,CT,11/27/2005 23:30 +Apex,,TRIANGLE,NC,11/28/2005 4:35 +Guaymas Sonora,BLUE,FIREBALL,AL,11/28/2005 9:10 +Katy,,LIGHT,TX,11/28/2005 18:00 +Koror,,CIRCLE,HI,11/28/2005 18:45 +Burnsville,,,NC,11/28/2005 19:45 +Burr Oak,,DISK,MI,11/28/2005 22:00 +Gilbert,,FORMATION,AZ,11/28/2005 22:45 +Delevan,,CIGAR,NY,11/28/2005 23:00 +Sandston,,TRIANGLE,VA,11/28/2005 23:30 +Westerville,,DISK,OH,11/28/2005 23:30 +Burnsville,,,NC,11/29/2005 0:00 +Mamaroneck,,LIGHT,NY,11/29/2005 0:04 +Orlando,,LIGHT,FL,11/29/2005 6:45 +Grove Hill,,TRIANGLE,AL,11/29/2005 7:44 +Columbus,,CYLINDER,OH,11/29/2005 15:15 +Buckeye,,LIGHT,AZ,11/29/2005 16:25 +Lewes,,LIGHT,DE,11/29/2005 17:30 +Orlando,,LIGHT,FL,11/29/2005 18:35 +Burnsville,,,NC,11/29/2005 18:45 +Charlottesville,,OTHER,VA,11/30/2005 14:44 +Owensville,,SPHERE,IN,11/30/2005 17:30 +Princeton,,CIRCLE,IN,11/30/2005 17:50 +Gage,,LIGHT,OK,11/30/2005 19:00 +Avondale,,LIGHT,AZ,11/30/2005 20:00 +Wanamassa,,FIREBALL,NJ,11/30/2005 22:00 +Acworth,BLUE,SPHERE,GA,12/1/2005 5:00 +Lexington,,CHEVRON,KY,12/1/2005 5:30 +Tuscola,,LIGHT,TX,12/1/2005 6:00 +Miami,,FLASH,FL,12/1/2005 7:10 +Easley,,TRIANGLE,SC,12/1/2005 17:00 +Gadsden,BLUE,OTHER,AL,12/1/2005 18:00 +Bonner Springs,,LIGHT,KS,12/1/2005 18:39 +Arizona City,ORANGE,CIRCLE,AZ,12/1/2005 20:00 +Graham,,CIRCLE,WA,12/1/2005 21:00 +Tallahassee,,CIGAR,FL,12/1/2005 21:00 +Edmond,,,OK,12/1/2005 22:00 +Montgomery,,RECTANGLE,AL,12/2/2005 0:00 +Genesee Depot,,CIGAR,WI,12/2/2005 17:15 +Lexington,RED BLUE,CIRCLE,KY,12/2/2005 18:20 +Monmouth,,TEARDROP,NJ,12/2/2005 18:23 +Murray,,LIGHT,KY,12/2/2005 19:00 +Burney,,TRIANGLE,CA,12/2/2005 19:30 +Davis,,FORMATION,CA,12/2/2005 20:55 +Boston,,LIGHT,MA,12/2/2005 20:57 +Fort Bayard,,LIGHT,NM,12/3/2005 3:00 +Lawrenceville,,LIGHT,GA,12/3/2005 5:45 +Harrison Township,,DISK,MI,12/3/2005 12:30 +Keansburg,,LIGHT,NJ,12/3/2005 17:45 +Ithaca,RED,LIGHT,NY,12/3/2005 18:00 +Robert Moses Beach,,CIRCLE,NY,12/3/2005 18:35 +San Francisco,,TRIANGLE,CA,12/3/2005 18:45 +North Port,,CIRCLE,FL,12/3/2005 19:00 +Norwalk,,LIGHT,CA,12/3/2005 19:15 +Folsom,,FORMATION,CA,12/3/2005 19:25 +Williamsburg,,LIGHT,VA,12/3/2005 20:40 +Mesa,,LIGHT,AZ,12/4/2005 2:46 +West Los Angeles,,LIGHT,CA,12/4/2005 11:45 +Fairless Hills,,CHEVRON,PA,12/4/2005 21:00 +Forest Hills,,TEARDROP,NY,12/5/2005 0:25 +Los Alamos,,DISK,NV,12/5/2005 1:00 +Ypsilanti,,OTHER,MI,12/5/2005 7:00 +Santa Ana,,OVAL,CA,12/5/2005 11:50 +Richland,,TRIANGLE,WA,12/5/2005 17:25 +Rancho Cucamonga,,LIGHT,CA,12/5/2005 17:30 +Acton,,FIREBALL,CA,12/5/2005 19:40 +Smithshire,,OTHER,IL,12/5/2005 20:00 +Cheyenne,ORANGE,,WY,12/5/2005 21:00 +China Spring,,SPHERE,TX,12/5/2005 21:00 +Centennial,,FIREBALL,CO,12/5/2005 22:00 +Centralia,,CIRCLE,WA,12/5/2005 23:00 +Arlington,,LIGHT,TX,12/6/2005 6:00 +Riverside,,OVAL,CA,12/6/2005 6:23 +Palmdale,,TRIANGLE,CA,12/6/2005 11:00 +Riverside,GREEN,EGG,CA,12/6/2005 16:35 +Mount Vernon,,,WA,12/6/2005 19:30 +Marysville,,,WA,12/7/2005 0:50 +Kenosha,,OTHER,WI,12/7/2005 18:30 +North Wilkesboro,RED,FIREBALL,NC,12/7/2005 18:55 +Keen Mtn.,GREEN,OTHER,VA,12/7/2005 19:00 +McDermott,,,NV,12/7/2005 20:00 +Parsippany,,OTHER,NJ,12/7/2005 22:00 +Larsen,RED,DIAMOND,WI,12/8/2005 3:45 +Chehalis,,OVAL,WA,12/8/2005 5:30 +Media,,FIREBALL,PA,12/8/2005 13:00 +Las Vegas,,CIRCLE,NV,12/8/2005 15:00 +Thomaston,BLUE,LIGHT,CT,12/8/2005 18:08 +Branford,,LIGHT,CT,12/8/2005 18:30 +Redlands,,VARIOUS,CA,12/8/2005 19:00 +Crawfordville,,LIGHT,FL,12/8/2005 19:30 +Redlands,,VARIOUS,CA,12/8/2005 20:00 +Okmulgee,,CIGAR,OK,12/9/2005 16:40 +Eugene,,CIRCLE,OR,12/10/2005 2:30 +Demarest,RED,CIRCLE,NJ,12/10/2005 16:00 +Phoenix,,OTHER,AZ,12/10/2005 18:00 +Stoughton,,VARIOUS,MA,12/10/2005 18:15 +McCloud,,,CA,12/10/2005 19:30 +Dickensonville,,VARIOUS,VA,12/10/2005 19:45 +Maumelle,,CIGAR,AR,12/10/2005 20:00 +Coulee City,,LIGHT,WA,12/10/2005 22:00 +Orland,,LIGHT,CA,12/10/2005 23:50 +Charlotte,,OTHER,NC,12/11/2005 0:00 +Mililani,ORANGE,OVAL,HI,12/11/2005 5:30 +Chicago,,,IL,12/11/2005 9:00 +West Dundee,,FIREBALL,IL,12/11/2005 9:45 +San Francisco,,FIREBALL,CA,12/11/2005 18:00 +Fox Park,RED GREEN,SPHERE,WY,12/11/2005 21:15 +Pittsburg,,CIRCLE,CA,12/11/2005 21:30 +Purcellville,,OTHER,VA,12/11/2005 22:30 +Boca Raton,,TRIANGLE,FL,12/12/2005 0:00 +Livonia,GREEN,SPHERE,MI,12/12/2005 6:15 +Navarre Beach,,,FL,12/12/2005 9:00 +Coalgate,,LIGHT,OK,12/12/2005 18:30 +King of Prussia,,OTHER,PA,12/12/2005 18:30 +Annapolis,,DISK,MD,12/12/2005 19:00 +Carmen,,SPHERE,ID,12/12/2005 20:00 +Seattle,ORANGE,LIGHT,WA,12/12/2005 20:35 +Austin,,TRIANGLE,TX,12/12/2005 22:30 +Evanston,,SPHERE,WY,12/12/2005 23:00 +Poughkeepsie,,OTHER,NY,12/13/2005 0:14 +Bonifay,,DISK,FL,12/13/2005 8:00 +Long Island City,,RECTANGLE,NY,12/13/2005 11:13 +Sault Ste. Marie,,LIGHT,MI,12/13/2005 17:28 +Englewood,,CIRCLE,CO,12/13/2005 18:00 +Fairfield,,OTHER,CA,12/13/2005 18:00 +Harrisburg,,CIRCLE,PA,12/13/2005 18:30 +Harrisburg,,FORMATION,PA,12/13/2005 19:00 +Portland,,FLASH,OR,12/13/2005 19:50 +Crawfordville,,CIGAR,FL,12/13/2005 20:00 +Chesapeake Beach,,FIREBALL,MD,12/13/2005 20:15 +Parma,,FLASH,OH,12/13/2005 20:15 +Los Angeles,,,CA,12/13/2005 20:45 +East Springfield,,FIREBALL,PA,12/13/2005 21:30 +Sebring,,LIGHT,FL,12/14/2005 0:00 +Chelmsford,,CIRCLE,MA,12/14/2005 5:48 +Hope Mills,,CYLINDER,NC,12/14/2005 7:05 +Stanley,,DIAMOND,VA,12/14/2005 7:15 +Columbia Falls,,FIREBALL,MT,12/14/2005 8:05 +Welton,,FORMATION,AZ,12/14/2005 18:51 +Aurora,,LIGHT,NY,12/14/2005 19:00 +Wasilla,,TRIANGLE,AK,12/15/2005 1:30 +Charlotte,,LIGHT,NC,12/15/2005 6:00 +Yuma,,OTHER,CO,12/15/2005 6:10 +Santa Barbara,RED,CIRCLE,CA,12/15/2005 9:45 +Bolton,,LIGHT,MA,12/15/2005 16:15 +Geneva,,FORMATION,FL,12/15/2005 17:00 +Alexandria,,CIGAR,LA,12/15/2005 19:30 +Brighton,,,MI,12/15/2005 20:00 +Culpeper,GREEN,FLASH,VA,12/15/2005 20:00 +Orlando,,,FL,12/15/2005 20:25 +James Island,,OTHER,SC,12/15/2005 20:35 +Clarkesville,,OVAL,GA,12/15/2005 22:30 +Jacksonville,,LIGHT,FL,12/16/2005 2:45 +Maryville,,SPHERE,TN,12/16/2005 8:00 +Newton,,CHEVRON,MA,12/16/2005 13:30 +Placentia,,DISK,CA,12/16/2005 19:15 +Spokane,,FIREBALL,WA,12/16/2005 21:30 +Hockinson,RED,TRIANGLE,WA,12/17/2005 17:45 +St. Ignatius,,LIGHT,MT,12/17/2005 18:50 +Bridgewater,,CIRCLE,NJ,12/17/2005 21:17 +Jacksonville,,TRIANGLE,FL,12/17/2005 21:30 +Van Nuys,,FLASH,CA,12/18/2005 13:10 +Knox,,TRIANGLE,IN,12/18/2005 15:00 +Warwick,RED,TRIANGLE,RI,12/18/2005 16:00 +Orland Park,,LIGHT,IL,12/18/2005 18:00 +Sault Ste. Marie,,LIGHT,MI,12/18/2005 18:14 +Council Bluffs,,TRIANGLE,IA,12/18/2005 18:45 +Dover,YELLOW,DIAMOND,DE,12/18/2005 22:05 +Knox,RED BLUE,DISK,IN,12/18/2005 23:00 +Chicago,,FIREBALL,IL,12/19/2005 2:00 +Lockport,,CIRCLE,IL,12/19/2005 9:45 +Foely,,OVAL,AL,12/19/2005 11:00 +Atlanta,,CYLINDER,GA,12/19/2005 12:00 +Columbia,,FIREBALL,MS,12/19/2005 16:45 +Flint,,TRIANGLE,MI,12/19/2005 19:00 +Rimersburg,BLUE,VARIOUS,PA,12/20/2005 0:00 +Burbank,,,CA,12/20/2005 5:47 +Haysville,,FIREBALL,KS,12/20/2005 13:00 +Golden,,LIGHT,CO,12/20/2005 17:25 +Lawrence,,OVAL,MA,12/20/2005 19:00 +Sedro Woolley,,CHEVRON,WA,12/20/2005 21:00 +Dublin,,,VA,12/21/2005 5:50 +Hoover,,OTHER,AL,12/21/2005 17:00 +Verona,,DISK,NY,12/21/2005 18:00 +Export,RED GREEN,FLASH,PA,12/21/2005 19:30 +Georgetown,,CIRCLE,TX,12/21/2005 21:00 +Queensbury,,FIREBALL,NY,12/22/2005 0:00 +Mesquite,,VARIOUS,NV,12/22/2005 17:00 +Agua Dulce,,EGG,CA,12/22/2005 19:10 +Paonia,,CIRCLE,CO,12/22/2005 19:30 +Lacon,,,IL,12/22/2005 20:00 +Osceloa,,TRIANGLE,IA,12/22/2005 20:40 +Osceola,,TRIANGLE,IA,12/22/2005 21:40 +Bethel Park,,OVAL,PA,12/23/2005 6:00 +Lafayette,,FIREBALL,LA,12/23/2005 6:45 +Lenexa,,OTHER,KS,12/23/2005 7:45 +Hockessin,,SPHERE,DE,12/23/2005 13:36 +Tucson,,DISK,AZ,12/23/2005 17:00 +Abingdon,,OTHER,VA,12/23/2005 17:48 +Morehead,,CIRCLE,KY,12/23/2005 19:00 +Chester,,LIGHT,SC,12/23/2005 19:30 +Pound,BLUE,VARIOUS,VA,12/23/2005 20:45 +Charleston,,,SC,12/23/2005 22:45 +Monroe,,CIRCLE,WA,12/24/2005 0:00 +Alpharetta,,OTHER,GA,12/24/2005 12:15 +Simi Valley,,,CA,12/24/2005 14:15 +Philadelphia,,TRIANGLE,PA,12/24/2005 19:35 +Jefferson,,EGG,GA,12/24/2005 21:00 +Plantation,RED ORANGE,FIREBALL,FL,12/24/2005 21:00 +Farmerville,,SPHERE,LA,12/24/2005 22:00 +Waxhaw,,DISK,NC,12/24/2005 22:45 +Rush,,CIGAR,NY,12/25/2005 10:15 +Conover,,TRIANGLE,NC,12/25/2005 12:00 +Pflugerville,,LIGHT,TX,12/25/2005 20:11 +Anchorage,,LIGHT,AK,12/25/2005 23:30 +Scottsdale,,OTHER,AZ,12/26/2005 11:18 +Centralia,,OVAL,WA,12/26/2005 16:11 +Charlotte,ORANGE YELLOW,,VT,12/26/2005 18:45 +Sacramento,ORANGE,TEARDROP,CA,12/27/2005 1:47 +Fairfax,RED,SPHERE,VA,12/27/2005 2:30 +Columbia,,,MD,12/27/2005 3:20 +Salem,,TRIANGLE,SC,12/27/2005 4:00 +Lombard,,,IL,12/27/2005 17:05 +Lee,,,MA,12/27/2005 18:30 +Manhattan,GREEN,CROSS,KS,12/27/2005 20:30 +Plano,,SPHERE,TX,12/27/2005 22:40 +Lehigh Acres,,TRIANGLE,FL,12/27/2005 23:00 +Murphy,,LIGHT,NC,12/27/2005 23:30 +Charleston,,CIRCLE,WV,12/28/2005 5:00 +hampstead,,SPHERE,NH,12/28/2005 15:30 +Austin,,TRIANGLE,TX,12/28/2005 18:00 +Orlando,,LIGHT,FL,12/28/2005 18:34 +Fort Collins,,LIGHT,CO,12/28/2005 20:30 +Miami,ORANGE,LIGHT,OK,12/28/2005 21:00 +Gaithersburg,,LIGHT,MD,12/28/2005 23:10 +Schoharie,,EGG,NY,12/28/2005 23:30 +Glendale,,LIGHT,AZ,12/29/2005 3:27 +Evanston,,LIGHT,IL,12/29/2005 3:30 +Escondido,,SPHERE,CA,12/29/2005 14:20 +Mounds,,,IL,12/29/2005 19:00 +Summerville,ORANGE,TRIANGLE,SC,12/29/2005 19:30 +Lake Havasu City,RED BLUE,DISK,AZ,12/29/2005 23:00 +Great Bend,,FIREBALL,KS,12/30/2005 3:00 +Melbourne,,DISK,AL,12/30/2005 13:25 +Lewisville,,LIGHT,TX,12/30/2005 18:15 +Plano,GREEN,FIREBALL,TX,12/30/2005 19:00 +Petelo,ORANGE,LIGHT,MO,12/30/2005 21:30 +Cumberland,GREEN,OTHER,ME,12/31/2005 1:00 +Quincy,,SPHERE,CA,12/31/2005 18:00 +San Luis,,LIGHT,AZ,12/31/2005 21:30 +San Francisco,ORANGE,LIGHT,CA,1/1/2006 0:06 +Claremore,,LIGHT,OK,1/1/2006 4:45 +Castle Rock,,,CO,1/1/2006 15:45 +Albuquerque,,VARIOUS,NM,1/1/2006 17:00 +Crosslake,ORANGE,FIREBALL,ME,1/1/2006 17:00 +Brattleboro,,OTHER,VT,1/1/2006 21:30 +Milligan,RED,DIAMOND,CA,1/1/2006 22:30 +Rice,RED,DIAMOND,CA,1/1/2006 22:30 +San Antonio,,TRIANGLE,TX,1/1/2006 23:00 +Ann Arbor,,VARIOUS,MI,1/2/2006 0:00 +Fredericksburg,,LIGHT,VA,1/2/2006 0:00 +Pie Town,,DIAMOND,NM,1/2/2006 11:39 +Venice,,CIRCLE,FL,1/2/2006 14:30 +Harlingen,,CONE,TX,1/2/2006 17:15 +Cairo,,LIGHT,IL,1/2/2006 19:00 +dont know,,TRIANGLE,TX,1/3/2006 2:00 +not sure,,TRIANGLE,TX,1/3/2006 2:00 +West Olive,,,MI,1/3/2006 3:21 +West Olive,,OTHER,MI,1/3/2006 4:08 +La Quinta,,LIGHT,CA,1/3/2006 5:45 +Lantana,,,FL,1/3/2006 6:00 +Fountain,,,CO,1/3/2006 9:00 +,,SPHERE,VT,1/3/2006 12:12 +Monrovia,,RECTANGLE,CA,1/3/2006 16:15 +Aliceville,,SPHERE,AL,1/3/2006 18:50 +Denver,,FIREBALL,CO,1/3/2006 23:55 +Sequim,,,WA,1/4/2006 0:00 +Grand Forks,GREEN,LIGHT,ND,1/4/2006 5:00 +Orange Park,,OVAL,FL,1/4/2006 5:40 +Athens,,TRIANGLE,GA,1/4/2006 6:28 +Columbus,,FIREBALL,MT,1/4/2006 7:00 +Scotland,,LIGHT,PA,1/4/2006 7:45 +Mt. Pleasant,,OVAL,SC,1/4/2006 13:20 +Little Rock,ORANGE,OVAL,AR,1/4/2006 16:50 +Fletcher,,OVAL,NC,1/4/2006 17:20 +Gulf Breeze,ORANGE,FIREBALL,FL,1/4/2006 19:30 +Los Angeles,,FIREBALL,CA,1/4/2006 22:00 +Lake Elsinore,GREEN,OVAL,CA,1/4/2006 22:30 +Santa Monica,GREEN,LIGHT,CA,1/4/2006 22:30 +Aliso Viejo,,OTHER,CA,1/4/2006 22:50 +Encinitas,GREEN,FIREBALL,CA,1/4/2006 23:12 +Pasco,,,WA,1/5/2006 0:00 +Newport Beach,,CIRCLE,CA,1/5/2006 12:00 +Santa Ana,ORANGE,TEARDROP,CA,1/5/2006 12:30 +Chestnut Hill,RED,LIGHT,TN,1/5/2006 13:10 +Idaho,,TRIANGLE,ID,1/5/2006 15:00 +Provo,,TRIANGLE,UT,1/5/2006 17:35 +Roswell,,FLASH,NM,1/5/2006 18:45 +Poway,,LIGHT,CA,1/5/2006 21:30 +Houston,,LIGHT,TX,1/6/2006 0:00 +Whitehouse,,DISK,TX,1/6/2006 4:00 +Phoenix,GREEN,SPHERE,AZ,1/7/2006 2:25 +High Point,GREEN,FIREBALL,NC,1/7/2006 2:40 +Lyme Regis,,TRIANGLE,TN,1/7/2006 6:40 +Fairfield,,CIRCLE,CT,1/7/2006 13:00 +Hillside,,CIGAR,NJ,1/7/2006 14:00 +Mt. Lookout,,CIGAR,WV,1/7/2006 17:30 +Coxsackie,RED,TRIANGLE,NY,1/7/2006 18:00 +Miamisburg,,RECTANGLE,OH,1/7/2006 19:45 +West Point,,LIGHT,TX,1/7/2006 22:00 +Panama City Beach,,SPHERE,FL,1/8/2006 0:00 +Aurora,,LIGHT,CO,1/8/2006 6:05 +Sequim,,OTHER,WA,1/8/2006 14:00 +Huntsville,,DISK,TX,1/8/2006 20:00 +Orlando,,,FL,1/8/2006 21:00 +Pembroke Pines,RED BLUE,TRIANGLE,FL,1/8/2006 21:00 +Palm Springs,,RECTANGLE,CA,1/8/2006 22:00 +Minnesota,,TRIANGLE,MN,1/9/2006 7:38 +Wellfleet,,OTHER,MA,1/9/2006 18:00 +El Segundo,,FIREBALL,CA,1/9/2006 18:53 +Manhattan Beach,,,CA,1/9/2006 18:54 +Mesa,,TRIANGLE,AZ,1/9/2006 20:00 +La Crosse,,OTHER,WI,1/10/2006 4:00 +Plymouth,,,MN,1/10/2006 4:00 +Elmira,,LIGHT,NY,1/10/2006 12:30 +Gladstone,BLUE,LIGHT,MO,1/10/2006 18:30 +North Plainsfield,RED,CONE,NJ,1/11/2006 4:38 +Gainesville,,OVAL,FL,1/11/2006 23:00 +Branchland,,TRIANGLE,WV,1/11/2006 23:52 +Cyril,,TRIANGLE,OK,1/12/2006 2:00 +Sicklerville,,LIGHT,NJ,1/12/2006 5:54 +Laurel,,FIREBALL,MT,1/12/2006 7:00 +Littleton,,DISK,CO,1/12/2006 16:34 +South Kingstown,,LIGHT,RI,1/12/2006 17:05 +New Cumberland,,LIGHT,PA,1/12/2006 19:00 +West Islip,,,NY,1/13/2006 1:30 +Providence,,TEARDROP,RI,1/13/2006 2:20 +Hudson,,,NH,1/13/2006 4:00 +Lebec,,,CA,1/13/2006 15:12 +Sallisaw,,FIREBALL,OK,1/13/2006 17:30 +Sallisaw,,FIREBALL,OK,1/13/2006 18:36 +Citrus Heights,,TRIANGLE,CA,1/13/2006 20:00 +Mendenhall,,DIAMOND,MS,1/14/2006 10:10 +Fergus Falls,,OVAL,MN,1/14/2006 13:00 +Sandersville,,,GA,1/14/2006 19:47 +Fletcher,,TRIANGLE,NC,1/14/2006 20:00 +Clermont,,CIRCLE,FL,1/14/2006 20:30 +Portland,,CIRCLE,OR,1/14/2006 22:46 +Wilmington,,TRIANGLE,IL,1/15/2006 0:00 +Waterloo,,SPHERE,NY,1/15/2006 2:00 +Moberly,,TRIANGLE,MO,1/15/2006 10:15 +Charleston ??,,OTHER,SC,1/15/2006 15:00 +Sedona,,LIGHT,AZ,1/15/2006 19:30 +Centralia,,RECTANGLE,IL,1/15/2006 20:15 +Clermont,,VARIOUS,FL,1/15/2006 21:00 +Fulton,,CIRCLE,NY,1/15/2006 21:00 +Synder,,OTHER,TX,1/15/2006 23:00 +Freeport,,LIGHT,ME,1/16/2006 21:00 +Wallingford,RED,OVAL,CT,1/16/2006 22:15 +Clinton,,CIRCLE,ME,1/16/2006 23:00 +Decatur,,DISK,TX,1/16/2006 23:00 +Orange Grove,YELLOW,RECTANGLE,TX,1/17/2006 6:00 +Bellevue,,CIRCLE,WA,1/17/2006 12:00 +Phoenix,,OTHER,AZ,1/17/2006 15:20 +Folsom,,TRIANGLE,CA,1/17/2006 18:00 +King of Prussia,,SPHERE,PA,1/17/2006 22:30 +Natchitoches,ORANGE,LIGHT,LA,1/18/2006 3:00 +"Opposite of Clearview hill, Clearview",,DISK,WA,1/18/2006 9:05 +Palm Beach Gardens,,LIGHT,FL,1/18/2006 9:49 +Annapolis,,OVAL,MD,1/18/2006 15:00 +Hampstead,,TRIANGLE,NH,1/18/2006 16:20 +Almere,RED,OTHER,FL,1/18/2006 18:15 +Goodland,ORANGE,,KS,1/18/2006 19:43 +Currituck,,FIREBALL,NC,1/19/2006 4:00 +Wakefield,,LIGHT,RI,1/19/2006 5:00 +Byron,,TRIANGLE,IL,1/19/2006 11:31 +Beach Lake,,TRIANGLE,PA,1/19/2006 19:00 +Torrance,,OTHER,CA,1/19/2006 19:00 +Wimberley,,TRIANGLE,TX,1/19/2006 19:00 +Mountain Grove,ORANGE,CIRCLE,MO,1/19/2006 19:45 +Riverside,,TRIANGLE,CA,1/19/2006 23:00 +Callaway,,,VA,1/20/2006 19:20 +Abilene,ORANGE,LIGHT,TX,1/20/2006 21:30 +Fairborn,,,OH,1/21/2006 0:00 +Tampa,RED,,FL,1/21/2006 0:00 +Aurora,ORANGE YELLOW GREEN,LIGHT,CO,1/21/2006 16:15 +Merriam,YELLOW,OTHER,KS,1/21/2006 17:45 +Berkley,,OTHER,MA,1/21/2006 18:30 +Dickens,,OTHER,TX,1/21/2006 21:45 +Pe Ell,BLUE,,WA,1/21/2006 22:00 +Woodbridge,,OVAL,VA,1/22/2006 9:44 +Battle Creek,,SPHERE,MI,1/22/2006 19:00 +Brunswick,,,ME,1/22/2006 20:00 +Westbranch,,LIGHT,MI,1/23/2006 3:00 +Callaway,,LIGHT,VA,1/23/2006 17:50 +Wyckoff,,,NJ,1/23/2006 21:50 +Midland,,LIGHT,TX,1/23/2006 22:35 +Stanwood,,LIGHT,WA,1/24/2006 1:00 +Willow Creek,,LIGHT,CA,1/24/2006 2:30 +Sunrise Beach Village,,,TX,1/24/2006 15:30 +Charlotte,BLUE,LIGHT,NC,1/24/2006 17:30 +Bunker,,TRIANGLE,MO,1/24/2006 18:30 +Washington,,DISK,PA,1/24/2006 20:00 +New York City,RED YELLOW,DIAMOND,NY,1/24/2006 22:01 +Oroville,,TEARDROP,CA,1/24/2006 23:15 +West Tawakoni,,,TX,1/25/2006 0:00 +Aurora,,OTHER,OH,1/25/2006 2:30 +Woodbridge,,LIGHT,VA,1/25/2006 6:10 +Chicago,,OVAL,IL,1/25/2006 19:00 +Antelope,,TRIANGLE,CA,1/25/2006 19:30 +Bakersfield,,LIGHT,CA,1/25/2006 20:00 +Annapolis,,OVAL,MD,1/25/2006 20:15 +Centralia,,RECTANGLE,IL,1/25/2006 21:30 +Muncie,,FIREBALL,IN,1/25/2006 22:30 +Grandville,,SPHERE,MI,1/26/2006 1:00 +Wheaton,,SPHERE,IL,1/26/2006 18:30 +Corinth,,LIGHT,VT,1/26/2006 21:00 +Denver,,CIRCLE,PA,1/26/2006 21:00 +Bloomsburg,,DIAMOND,PA,1/26/2006 23:00 +Abilene,,LIGHT,TX,1/27/2006 0:00 +Orlando,,,FL,1/27/2006 1:00 +Ferndale,GREEN,,AR,1/27/2006 19:00 +Beloit,RED,OTHER,WI,1/27/2006 19:30 +Billerica,BLUE,LIGHT,MA,1/27/2006 20:20 +Ocala,,DIAMOND,FL,1/27/2006 21:00 +Stafford,RED,DISK,CT,1/27/2006 23:30 +Hemet,ORANGE,DISK,CA,1/28/2006 3:00 +Santa Barbara,,LIGHT,CA,1/28/2006 5:00 +Wickliffe,BLUE,OVAL,KY,1/28/2006 12:30 +Heflin,,TRIANGLE,AL,1/28/2006 18:15 +Indian River,ORANGE,CYLINDER,FL,1/28/2006 23:00 +Davidson,,OTHER,NC,1/29/2006 15:00 +El Paso,,CIRCLE,TX,1/29/2006 17:00 +Iron Gate,,CIRCLE,VA,1/29/2006 18:35 +Amboy,,CIGAR,CA,1/29/2006 19:00 +Bakersfield,RED YELLOW,SPHERE,CA,1/29/2006 20:00 +Eloy,,DISK,AZ,1/29/2006 20:30 +Mount Pocono,,LIGHT,PA,1/29/2006 21:00 +Mt. Vernon,,OVAL,IN,1/29/2006 23:00 +Visalia,,EGG,CA,1/29/2006 23:00 +Burnet,RED GREEN,LIGHT,TX,1/30/2006 10:40 +Sarasota,,FIREBALL,FL,1/30/2006 18:10 +Phoenix,,LIGHT,AZ,1/30/2006 20:45 +Lake Havasu City,,,AZ,1/31/2006 0:00 +Portland,,FLASH,OR,1/31/2006 0:40 +Kirkland,BLUE,,WA,1/31/2006 3:00 +Jacksonville,GREEN,SPHERE,FL,1/31/2006 4:50 +Gaston,GREEN,LIGHT,SC,1/31/2006 20:00 +Lake Elsinore,,LIGHT,CA,2/1/2006 0:00 +Gig Harbor,GREEN,,WA,2/1/2006 1:59 +Hogback Mountain,,EGG,VT,2/1/2006 13:15 +Wagarville,,FIREBALL,AL,2/1/2006 22:00 +Bloomington,,VARIOUS,IN,2/2/2006 1:00 +Lexington,,OVAL,KY,2/2/2006 10:36 +Hershey,,CIGAR,PA,2/2/2006 17:00 +Thousand Oaks,,CIRCLE,CA,2/2/2006 17:30 +Sumter,,TRIANGLE,SC,2/2/2006 20:30 +west morland,,LIGHT,CA,2/2/2006 23:30 +South Tyler,,VARIOUS,TX,2/3/2006 6:15 +Las Vegas,,OTHER,NV,2/3/2006 9:30 +Philadelphia,ORANGE,OTHER,PA,2/3/2006 14:00 +Denham Springs,,CYLINDER,LA,2/3/2006 15:55 +China Spring,,LIGHT,TX,2/3/2006 20:18 +Eureka,,CHEVRON,NV,2/4/2006 4:00 +Phoenix,,OTHER,AZ,2/4/2006 17:00 +Sioux Falls,,TRIANGLE,SD,2/4/2006 19:30 +Morganton,RED BLUE,LIGHT,NC,2/4/2006 22:25 +Azle,,CROSS,TX,2/5/2006 0:00 +Phoenix,GREEN,,AZ,2/5/2006 3:00 +Dahlonega,RED GREEN BLUE,DIAMOND,GA,2/5/2006 5:25 +Cameron Park,,,CA,2/5/2006 5:30 +Ypsilanti,,OTHER,MI,2/5/2006 7:00 +Albert Lea,,,MN,2/5/2006 19:45 +Yucaipa,,SPHERE,CA,2/5/2006 23:00 +Redlands,ORANGE,LIGHT,CA,2/5/2006 23:30 +Dallas,,TRIANGLE,OR,2/6/2006 3:05 +Goshen,,FIREBALL,OH,2/6/2006 3:30 +Ruidoso,,LIGHT,NM,2/6/2006 5:00 +Union City,,TRIANGLE,CA,2/6/2006 5:00 +Castle Rock,,FIREBALL,WA,2/6/2006 7:00 +Hunter,,TRIANGLE,NY,2/6/2006 7:10 +Fairbanks,,SPHERE,AK,2/6/2006 12:00 +Lino Lakes,,OVAL,MN,2/6/2006 14:30 +Orlando,,SPHERE,FL,2/6/2006 18:30 +Delray Beach,,DISK,FL,2/6/2006 22:00 +Meadville,,CYLINDER,MS,2/7/2006 16:00 +Channahon,ORANGE,TRIANGLE,IL,2/7/2006 19:30 +Manilla,,LIGHT,IA,2/7/2006 20:00 +Granite Falls,,DISK,WA,2/8/2006 0:00 +Piermont,,LIGHT,NY,2/8/2006 6:45 +Roseville,,CIRCLE,CA,2/8/2006 15:40 +Roseville,RED,SPHERE,CA,2/8/2006 17:25 +Panama City,,,FL,2/8/2006 19:22 +Apache Junction,,CIRCLE,AZ,2/8/2006 19:30 +Alice,YELLOW,LIGHT,TX,2/8/2006 20:03 +Manilla,,LIGHT,IA,2/8/2006 20:15 +Tampa,,LIGHT,FL,2/8/2006 21:00 +Santa Cruz,,CYLINDER,CA,2/8/2006 23:00 +Paola,YELLOW,,KS,2/9/2006 5:45 +Wellston,,,MI,2/9/2006 7:25 +Federal Way,,CYLINDER,WA,2/9/2006 15:30 +Marion,,LIGHT,NC,2/9/2006 18:00 +Garden Grove,,SPHERE,CA,2/9/2006 18:30 +Westminster,,FLASH,CA,2/9/2006 18:30 +Coeur d'Alene,,LIGHT,ID,2/9/2006 18:35 +Butler,,,MO,2/9/2006 19:40 +Fairfield,,EGG,CA,2/9/2006 22:08 +Auburn,,CIRCLE,CA,2/9/2006 23:45 +Fairview Heights,GREEN BLUE,,IL,2/9/2006 23:45 +Brentwood,,SPHERE,TN,2/10/2006 14:00 +Seattle,,,WA,2/10/2006 17:25 +Seattle,,CYLINDER,WA,2/10/2006 17:30 +North Hudson,,FORMATION,NY,2/10/2006 19:30 +Cusseta,,LIGHT,AL,2/10/2006 20:00 +morgantown,,FORMATION,PA,2/10/2006 21:00 +South Plainfield,,FORMATION,NJ,2/10/2006 23:50 +Heber,,CIRCLE,AZ,2/11/2006 0:00 +Missoula,,SPHERE,MT,2/11/2006 1:00 +Erwinna,,LIGHT,PA,2/11/2006 1:40 +Clifton,,,VA,2/11/2006 2:00 +Missoula,,FORMATION,MT,2/11/2006 2:00 +Austin,,OTHER,TX,2/11/2006 6:50 +Bozeman,GREEN,FIREBALL,MT,2/11/2006 22:00 +Hudsonville,,SPHERE,MI,2/12/2006 6:00 +Placerville,,LIGHT,CA,2/12/2006 22:20 +Springtown,,TRIANGLE,TX,2/13/2006 4:30 +Montgomery,,,AL,2/13/2006 4:35 +Yorkville,ORANGE,OVAL,IL,2/13/2006 5:50 +Houston,,LIGHT,TX,2/13/2006 9:40 +Salem,,OTHER,KY,2/13/2006 15:00 +Woodland Hills,,SPHERE,CA,2/13/2006 17:15 +Evergreen,,LIGHT,CO,2/13/2006 17:30 +Yorkville,,OTHER,IL,2/13/2006 17:40 +San Juan Capistrano,BLUE,LIGHT,CA,2/13/2006 18:45 +Camarillo,,CIRCLE,CA,2/13/2006 18:53 +Rutledge,,CIRCLE,TN,2/13/2006 19:55 +Austin,,OTHER,TX,2/13/2006 21:35 +Pioche,,DISK,NV,2/14/2006 0:00 +Grafton,,VARIOUS,OH,2/14/2006 1:34 +Ellinwood,,,KS,2/14/2006 8:15 +Urbandale,,TEARDROP,IA,2/14/2006 8:30 +Cairo,,TRIANGLE,NY,2/14/2006 12:02 +McPherson,,OTHER,KS,2/14/2006 19:30 +Pretty Prairie,,LIGHT,KS,2/14/2006 19:45 +Turon,YELLOW,LIGHT,KS,2/14/2006 20:00 +Little River,,,KS,2/14/2006 20:30 +Eagan,,RECTANGLE,MN,2/14/2006 23:00 +Columbus,,,GA,2/15/2006 0:00 +Pismo Beach,RED BLUE,FIREBALL,CA,2/15/2006 0:00 +Carmel,,FIREBALL,IN,2/15/2006 1:00 +The Woodlands,,,TX,2/15/2006 2:00 +Winder,,FLASH,GA,2/15/2006 5:15 +Crumrod,,DISK,AR,2/15/2006 6:00 +Arizona,,CIRCLE,AZ,2/15/2006 13:00 +no data,,EGG,NM,2/15/2006 14:00 +Wilksboro,,SPHERE,NC,2/15/2006 14:00 +Atascadero,,CIGAR,CA,2/15/2006 15:00 +Middletown,RED,LIGHT,PA,2/15/2006 18:15 +Oceanside,,OVAL,CA,2/15/2006 18:30 +Auburn,,LIGHT,CA,2/15/2006 19:10 +Redding,,CIRCLE,CA,2/15/2006 19:15 +San Bernardino,,LIGHT,CA,2/15/2006 21:00 +Florence,ORANGE,CIRCLE,SC,2/15/2006 21:30 +Larose,,CIRCLE,LA,2/15/2006 22:00 +Owensboro,,TRIANGLE,KY,2/15/2006 23:00 +Surfside Beach,,LIGHT,SC,2/15/2006 23:10 +Campbell,ORANGE,,CA,2/16/2006 0:02 +Shreveport,,LIGHT,LA,2/16/2006 0:42 +Melrose Park,,CIRCLE,IL,2/16/2006 5:00 +Estero,,EGG,FL,2/16/2006 14:00 +Mammoth Lakes,,FORMATION,CA,2/16/2006 23:30 +Marlborough,,CIRCLE,CT,2/17/2006 6:00 +Index,,OVAL,WA,2/17/2006 7:25 +Nashville,GREEN BLUE,LIGHT,TN,2/17/2006 8:45 +Warren,,SPHERE,ME,2/17/2006 18:16 +Moorestown,,,NJ,2/17/2006 20:24 +San Manuel,RED,CIRCLE,TX,2/17/2006 20:30 +Cambridge,,TRIANGLE,MA,2/17/2006 21:00 +Miami,,DISK,FL,2/17/2006 21:00 +O'Fallon,,DISK,IL,2/17/2006 22:30 +Monroeton,,LIGHT,PA,2/18/2006 1:00 +Boise,,RECTANGLE,ID,2/18/2006 3:32 +Silverdale,,,WA,2/18/2006 17:16 +Colchester,,LIGHT,VT,2/18/2006 21:30 +Lumberton,,FORMATION,NC,2/18/2006 22:50 +Merced,,LIGHT,CA,2/19/2006 1:07 +Tampa,,,FL,2/19/2006 2:00 +Cambridge,,LIGHT,IL,2/19/2006 6:00 +New York City,,VARIOUS,NY,2/19/2006 17:30 +South Bend,,,IN,2/20/2006 1:00 +Las Vegas,,TRIANGLE,NV,2/20/2006 15:00 +Vandercook Lake,,LIGHT,MI,2/20/2006 18:25 +Denahm Sptings,,LIGHT,LA,2/20/2006 19:30 +Collinsville,,OTHER,MS,2/20/2006 20:00 +Fountain Valley,,DISK,CA,2/20/2006 21:00 +Northampton,GREEN BLUE,VARIOUS,MA,2/20/2006 21:02 +Attica,,LIGHT,MI,2/20/2006 21:30 +Brownstown,,OTHER,MI,2/20/2006 22:00 +Longmont,,LIGHT,CO,2/21/2006 20:52 +North Kingstown,,OTHER,RI,2/21/2006 21:00 +Binghamton,,,NY,2/22/2006 0:20 +Brookings,,LIGHT,OR,2/22/2006 1:45 +Tustin,ORANGE,OTHER,CA,2/22/2006 18:40 +Lawdale,,CHEVRON,CA,2/22/2006 20:55 +Yonkers,,DISK,NY,2/22/2006 21:00 +Costa Mesa,,TRIANGLE,CA,2/23/2006 0:02 +Chanute,,OTHER,KS,2/23/2006 0:45 +Goshen,,OTHER,IN,2/23/2006 0:45 +livingston,,CIRCLE,LA,2/23/2006 2:45 +New Jersey,,DISK,NJ,2/23/2006 6:20 +West Little Rock,,LIGHT,AR,2/23/2006 18:32 +Norfork,,LIGHT,AR,2/23/2006 20:00 +Amado,ORANGE,LIGHT,AZ,2/23/2006 21:00 +Sahuarita,,FORMATION,AZ,2/23/2006 21:00 +Edneyville,,LIGHT,NC,2/23/2006 23:00 +Waxahachie,,TRIANGLE,TX,2/24/2006 0:00 +Mt. Morris,,OTHER,NY,2/24/2006 2:30 +Albuquerque,,DISK,NM,2/24/2006 13:12 +Santa Ana,ORANGE,FORMATION,CA,2/24/2006 15:08 +Parker,,SPHERE,CO,2/24/2006 15:15 +San Fernando,BLUE,TRIANGLE,CA,2/24/2006 18:40 +Baltimore,,CHEVRON,MD,2/24/2006 19:30 +Springfield,,OVAL,MO,2/25/2006 1:15 +Louisville,,VARIOUS,KY,2/25/2006 1:20 +Julian,,LIGHT,CA,2/25/2006 4:00 +Canoga Park,,VARIOUS,CA,2/25/2006 6:00 +Saginaw,,FLASH,MI,2/25/2006 9:00 +Columbus,,LIGHT,OH,2/25/2006 13:00 +Philadelphia,,LIGHT,PA,2/26/2006 1:00 +Montebello,ORANGE,OTHER,CA,2/26/2006 2:30 +Friendsville,,FIREBALL,TN,2/26/2006 9:40 +Brandon,,LIGHT,MS,2/26/2006 17:30 +Avalon,YELLOW,CONE,NJ,2/26/2006 18:20 +Santa Fe,,LIGHT,NM,2/26/2006 18:30 +Tampa,RED,,FL,2/26/2006 19:30 +San Diego,ORANGE,,CA,2/26/2006 23:00 +Floa Vista,,OTHER,NM,2/27/2006 0:00 +Hillsville,,,VA,2/27/2006 8:00 +Lubbock,,OTHER,TX,2/27/2006 10:17 +Emeryville,GREEN,,CA,2/27/2006 19:20 +Oak Ridge,,FIREBALL,TN,2/27/2006 20:30 +New York City,,,NY,2/28/2006 12:00 +Des Plaines,,OTHER,IL,2/28/2006 13:00 +Austin,,EGG,TX,2/28/2006 18:00 +Middletown,,LIGHT,RI,2/28/2006 19:45 +South Kingstown,,CHEVRON,RI,2/28/2006 19:45 +Chicago,RED,CIGAR,IL,2/28/2006 20:00 +Taos,RED,TRIANGLE,NM,2/28/2006 20:57 +San Antonio,,TRIANGLE,TX,2/28/2006 22:00 +Laguna Beach,,,CA,2/28/2006 23:50 +Molalla,,DISK,OR,3/1/2006 0:00 +Carlsbad,,RECTANGLE,NM,3/1/2006 0:30 +Glendale,,,AZ,3/1/2006 4:12 +New York City,,FORMATION,NY,3/1/2006 15:00 +Corpus Christi,,VARIOUS,TX,3/1/2006 18:00 +Egg Harbor City,ORANGE,LIGHT,NJ,3/1/2006 19:00 +Ontario,,OVAL,CA,3/1/2006 19:00 +Garden Grove,,OVAL,CA,3/1/2006 19:45 +Gold Canyon,,FIREBALL,AZ,3/1/2006 20:00 +Macon,,SPHERE,MS,3/1/2006 20:00 +Townsend,,LIGHT,TN,3/1/2006 22:00 +Winter Springs,,LIGHT,FL,3/2/2006 2:30 +Kingman,,OTHER,KS,3/2/2006 6:25 +Medford,,DISK,OR,3/2/2006 9:00 +Ronkonkoma,,CIRCLE,NY,3/2/2006 11:07 +Laughlin,,OTHER,NV,3/2/2006 15:30 +Butte,,CHEVRON,MT,3/2/2006 19:15 +Mountain Home,,,ID,3/2/2006 21:00 +Charlevoix,RED,SPHERE,MI,3/3/2006 4:30 +Fayetteville,,DISK,AR,3/3/2006 6:00 +Dunkirk,,OTHER,MD,3/3/2006 13:00 +McMinnville,,FIREBALL,TN,3/3/2006 18:40 +Carriere,,LIGHT,MS,3/3/2006 19:15 +Beachwood,GREEN BLUE,CIRCLE,OH,3/3/2006 19:38 +Ironton,,LIGHT,MO,3/3/2006 19:39 +Whittier,RED,OTHER,CA,3/3/2006 21:10 +Laguna Beach,,CIRCLE,CA,3/4/2006 11:15 +Grand Ledge,ORANGE,VARIOUS,MI,3/4/2006 12:40 +Las Vegas,,SPHERE,NV,3/4/2006 16:00 +Charlotte,,OVAL,NC,3/4/2006 16:45 +Lancaster,,CIRCLE,KY,3/4/2006 19:00 +Cygnet,,CHEVRON,OH,3/4/2006 19:47 +Madison Heights,,TRIANGLE,MI,3/4/2006 20:00 +Goodland,,LIGHT,FL,3/4/2006 20:30 +Idaho falls,,TRIANGLE,ID,3/4/2006 22:59 +Sunland,,VARIOUS,CA,3/4/2006 23:10 +Edwards,,LIGHT,NY,3/5/2006 4:00 +Berkeley,,OVAL,CA,3/5/2006 14:00 +Stryker,,DISK,OH,3/5/2006 14:00 +Waupaca,,,WI,3/5/2006 17:30 +Minneapolis,,FLASH,MN,3/5/2006 20:33 +Pittsburgh,GREEN,CHEVRON,PA,3/5/2006 21:00 +Winterhaven,,DISK,FL,3/6/2006 5:45 +Huntsville,,OVAL,MO,3/6/2006 13:30 +North Hills,,EGG,CA,3/6/2006 14:35 +Fort Edward,,OTHER,NY,3/6/2006 16:00 +Bloomfield,BLUE,,NJ,3/6/2006 18:20 +Cabool,RED,CIRCLE,MO,3/6/2006 20:30 +Quebeck,,TRIANGLE,TN,3/6/2006 20:30 +Avery,,TRIANGLE,MO,3/6/2006 21:00 +Woodland,ORANGE,LIGHT,CA,3/6/2006 22:35 +Decatur,,OTHER,TX,3/6/2006 23:30 +Cleveland,,FIREBALL,OH,3/7/2006 2:40 +Desert Hot Springs,ORANGE,CHEVRON,CA,3/7/2006 3:45 +Lisbon,RED ORANGE,LIGHT,NY,3/7/2006 20:10 +Dayton,YELLOW,,OH,3/8/2006 0:50 +Muskego,,OVAL,WI,3/8/2006 2:17 +Elgin,,FIREBALL,IL,3/8/2006 4:17 +Panama City,,SPHERE,FL,3/8/2006 11:15 +Fairborn,,OVAL,OH,3/8/2006 13:00 +Bordentown,,CIRCLE,NJ,3/8/2006 13:30 +Poughkeepsie,RED GREEN,TRIANGLE,NY,3/8/2006 20:00 +Kirkland,,FORMATION,WA,3/8/2006 22:28 +Lansing,,DISK,MI,3/9/2006 6:15 +China Spring,,OTHER,TX,3/9/2006 14:10 +Devore,,OVAL,CA,3/9/2006 18:30 +Kennewick,RED,RECTANGLE,WA,3/9/2006 21:25 +Tulsa,,OVAL,OK,3/10/2006 0:23 +San Antonio,,TRIANGLE,TX,3/10/2006 0:30 +Lake Worth,,TRIANGLE,FL,3/10/2006 1:00 +Cridersville,,FIREBALL,OH,3/10/2006 5:15 +Norwalk,,LIGHT,CA,3/10/2006 19:00 +Whittier,RED,CIRCLE,CA,3/10/2006 19:00 +Pacheco,,LIGHT,CA,3/10/2006 19:20 +Joplin,RED,CIRCLE,MO,3/10/2006 20:00 +Rock Hill,,FLASH,SC,3/10/2006 20:30 +Whittier,,CIRCLE,CA,3/10/2006 21:00 +Whittier,,OVAL,CA,3/10/2006 21:00 +Tulsa,,VARIOUS,OK,3/10/2006 21:45 +Rockport,RED BLUE,LIGHT,WV,3/11/2006 5:30 +Rockport,RED BLUE,LIGHT,WV,3/11/2006 5:30 +Pittsburg,RED ORANGE,FIREBALL,CA,3/11/2006 5:45 +Whittier,,LIGHT,CA,3/11/2006 9:00 +Carthage,,CIRCLE,TX,3/11/2006 11:00 +Whittier,,SPHERE,CA,3/11/2006 11:00 +Folsom,,OTHER,CA,3/11/2006 12:00 +Santa Cruz,,SPHERE,CA,3/11/2006 17:40 +Charlotte,,OVAL,NC,3/11/2006 17:45 +Bakersfield,,VARIOUS,CA,3/11/2006 18:00 +Bay City,RED BLUE,LIGHT,MI,3/11/2006 19:00 +Camarillo,,LIGHT,CA,3/11/2006 19:25 +East Boston,,LIGHT,MA,3/11/2006 21:00 +Brick Town,ORANGE,DISK,NJ,3/11/2006 22:00 +Fort Lauderdale,RED GREEN,LIGHT,FL,3/11/2006 22:00 +Natick,,,MA,3/11/2006 23:00 +San Francisco,,SPHERE,CA,3/12/2006 0:00 +Phoenix,,LIGHT,AZ,3/12/2006 12:40 +San Francisco,,LIGHT,CA,3/12/2006 16:45 +Daly City,,FIREBALL,CA,3/12/2006 18:00 +Tustin,,OTHER,CA,3/12/2006 18:00 +Gray,,LIGHT,TN,3/12/2006 19:40 +Augusta,RED,SPHERE,ME,3/12/2006 21:00 +Jacksonville,,DISK,FL,3/12/2006 23:15 +San Diego,RED ORANGE,CIRCLE,CA,3/13/2006 0:00 +Belle Glade,,TRIANGLE,FL,3/13/2006 2:00 +South Bay,,TRIANGLE,FL,3/13/2006 2:00 +Minneapolis,,FLASH,MN,3/13/2006 4:38 +La Quinta,ORANGE,OVAL,CA,3/13/2006 5:15 +Cleveland,,CIRCLE,OH,3/13/2006 9:25 +Everett,,LIGHT,WA,3/13/2006 21:00 +Leon,,LIGHT,KS,3/13/2006 21:00 +Los Banos,,TEARDROP,CA,3/13/2006 21:30 +Portland,,OTHER,OR,3/13/2006 21:30 +Brick Town,ORANGE,DISK,NJ,3/13/2006 22:00 +Minneapolis,,TRIANGLE,MN,3/13/2006 22:30 +New York City,,TRIANGLE,NY,3/13/2006 22:56 +Bossier City,,CIRCLE,LA,3/13/2006 23:00 +Wildwood,,TRIANGLE,GA,3/13/2006 23:15 +Gainesville,,LIGHT,GA,3/14/2006 6:00 +Colorado Springs,,FLASH,CO,3/14/2006 8:00 +Brick Town,,CHEVRON,NJ,3/14/2006 12:00 +Downey,,CIGAR,ID,3/14/2006 14:00 +Agoura Hills,,FORMATION,CA,3/14/2006 18:45 +Bogata,ORANGE,LIGHT,TX,3/14/2006 19:30 +Brookfield,,TRIANGLE,MO,3/14/2006 19:45 +Brookfield,,TRIANGLE,MO,3/14/2006 19:45 +Golden,,CIRCLE,CO,3/14/2006 20:00 +Shelton,,LIGHT,WA,3/14/2006 20:25 +Marlboro,,TRIANGLE,NY,3/14/2006 21:00 +Lewisville,,CIRCLE,TX,3/14/2006 22:00 +American Canyon,,CYLINDER,CA,3/15/2006 0:00 +Covington,,,WA,3/15/2006 1:00 +Westfield,,LIGHT,NJ,3/15/2006 1:00 +Hope Mills,,VARIOUS,NC,3/15/2006 4:00 +Grand Ledge,RED,TRIANGLE,MI,3/15/2006 10:15 +Sedona,,DISK,AZ,3/15/2006 12:00 +Portland,,TRIANGLE,OR,3/15/2006 13:00 +Portland,,TRIANGLE,OR,3/15/2006 13:00 +Redding,,FIREBALL,CA,3/15/2006 14:00 +Oakland,,TRIANGLE,NJ,3/15/2006 17:30 +Edmonds,,TRIANGLE,WA,3/15/2006 19:00 +Rinard,,LIGHT,IL,3/15/2006 20:10 +New Britain,,TRIANGLE,CT,3/15/2006 21:00 +Normal,,TRIANGLE,IL,3/15/2006 21:30 +Arlington,,LIGHT,VA,3/15/2006 22:30 +Grand Rapids,,FORMATION,MI,3/15/2006 22:35 +Columbus,,DISK,OH,3/15/2006 22:40 +Lenexa,BLUE,LIGHT,KS,3/15/2006 23:00 +Massillon,,TEARDROP,OH,3/15/2006 23:00 +Shirley Basin Road,,LIGHT,WY,3/15/2006 23:30 +Los Angeles,,LIGHT,CA,3/16/2006 6:00 +Peoria,,FIREBALL,AZ,3/16/2006 19:30 +Middleboro,,TRIANGLE,MA,3/16/2006 20:00 +Oakville,,,WA,3/16/2006 20:00 +San Antonio,,TRIANGLE,TX,3/16/2006 20:00 +Pennsauken,,,NJ,3/16/2006 20:30 +Springfield,GREEN,TRIANGLE,VA,3/16/2006 20:32 +Patterson,,VARIOUS,CA,3/16/2006 21:00 +Kendall,,OVAL,FL,3/16/2006 23:50 +Huntington Beach,RED,CROSS,CA,3/17/2006 1:40 +North Andover,RED BLUE,OTHER,MA,3/17/2006 2:00 +Nanuet,,OVAL,NY,3/17/2006 20:00 +Columbia,,,MO,3/17/2006 21:00 +Afton,,OVAL,VA,3/17/2006 23:15 +Mesa,,DISK,AZ,3/18/2006 0:05 +Sacramento,,,CA,3/18/2006 1:00 +Fleetwood,,LIGHT,PA,3/18/2006 6:00 +Hallandale,,CIRCLE,FL,3/18/2006 8:30 +Huntington Beach,RED,CROSS,CA,3/18/2006 12:40 +"Lakewood Ranch,Bradenton",,CYLINDER,FL,3/18/2006 18:00 +Jackson,,SPHERE,NJ,3/18/2006 18:35 +Junction City,,OTHER,OR,3/18/2006 19:00 +Myrtle Beach,,FIREBALL,SC,3/18/2006 23:00 +Long Beach,,OVAL,CA,3/18/2006 23:15 +Excelsior,GREEN,FLASH,MN,3/18/2006 23:30 +Crestwood,,DISK,KY,3/19/2006 0:00 +Longwood,,TRIANGLE,FL,3/19/2006 8:30 +Ontario,ORANGE YELLOW,TRIANGLE,CA,3/19/2006 8:45 +Tamarac,RED,LIGHT,FL,3/19/2006 20:30 +Boise,RED GREEN BLUE,OTHER,ID,3/19/2006 22:45 +Seattle,,CIRCLE,WA,3/19/2006 23:20 +Kelso,,FIREBALL,WA,3/19/2006 23:30 +Alexandria,GREEN,FIREBALL,VA,3/19/2006 23:53 +Irving,,TRIANGLE,TX,3/20/2006 0:04 +Benicia,ORANGE,FIREBALL,CA,3/20/2006 22:00 +White Mountain,,SPHERE,AK,3/21/2006 0:00 +Mesa,,CIRCLE,AZ,3/21/2006 7:00 +Kokomo,,FIREBALL,IN,3/21/2006 21:00 +Kokomo,,LIGHT,IN,3/21/2006 21:00 +Kokomo,,DISK,IN,3/21/2006 21:05 +Sonora,,LIGHT,CA,3/21/2006 22:30 +Port Angeles,,TRIANGLE,WA,3/21/2006 23:00 +Fontana,,,CA,3/22/2006 13:30 +Rankin,,OVAL,TX,3/22/2006 17:49 +Contoocook,,CIRCLE,NH,3/22/2006 19:35 +Franklin,,CHEVRON,TN,3/22/2006 21:07 +Las Vegas,,LIGHT,NV,3/22/2006 21:45 +Lincoln,,LIGHT,NE,3/22/2006 21:54 +Kokomo,,LIGHT,IN,3/22/2006 23:00 +Allison,,TRIANGLE,TX,3/23/2006 2:00 +York,,CIRCLE,PA,3/23/2006 4:20 +Amarillo,,RECTANGLE,TX,3/23/2006 15:30 +Rancho Mirage,,FIREBALL,CA,3/23/2006 19:10 +Las Vegas,ORANGE,OVAL,NV,3/23/2006 19:25 +Kansas City,BLUE,VARIOUS,MO,3/23/2006 21:00 +Ben Lomond,,LIGHT,CA,3/23/2006 21:30 +Powhatan,,LIGHT,VA,3/23/2006 22:00 +Scottsdale,,DISK,AZ,3/23/2006 22:00 +Victorville,,LIGHT,CA,3/24/2006 21:00 +Boston,,CIGAR,MA,3/24/2006 21:30 +Greenwood Village,,LIGHT,CO,3/24/2006 21:30 +Lubbock,,CIRCLE,TX,3/24/2006 22:30 +Alhambra,,FIREBALL,CA,3/25/2006 3:50 +Carson,BLUE,FIREBALL,CA,3/25/2006 3:56 +Charlotte,,OVAL,NC,3/25/2006 4:00 +Southwick,,TRIANGLE,MA,3/25/2006 4:30 +Prairie Grove,,FLASH,AR,3/25/2006 4:45 +Summers,,FLASH,AR,3/25/2006 4:45 +Stroud,,FLASH,OK,3/25/2006 5:30 +Summersville,,,WV,3/25/2006 13:00 +Amherst,,CIRCLE,NY,3/25/2006 21:00 +Blue Springs,BLUE,,MO,3/25/2006 21:00 +Onion Creek,,FIREBALL,WA,3/25/2006 21:30 +Kenosha,,DISK,WI,3/25/2006 22:00 +Manchester,,OTHER,CT,3/25/2006 23:00 +Plymouth,,FORMATION,WI,3/25/2006 23:10 +Prestonsburg,,LIGHT,KY,3/26/2006 0:00 +Orlando,,,FL,3/26/2006 1:00 +Murphy,,,NC,3/26/2006 1:33 +Interstate 80,,OTHER,NE,3/26/2006 15:00 +Gainesville,,VARIOUS,FL,3/26/2006 18:30 +St. Paul Park,,FIREBALL,MN,3/26/2006 22:00 +Irvine,BLUE,CIRCLE,CA,3/26/2006 23:30 +Sanford,,CIRCLE,ME,3/28/2006 0:00 +Hemet,,TRIANGLE,CA,3/28/2006 2:00 +Brunswick,RED BLUE,CIRCLE,ME,3/28/2006 20:00 +Sutton,,OVAL,MA,3/28/2006 22:15 +Wayne,,TRIANGLE,NJ,3/28/2006 23:00 +Stamford,,VARIOUS,CT,3/29/2006 14:24 +Longmont,,OTHER,CO,3/29/2006 17:50 +Richmond,,OTHER,VA,3/29/2006 18:50 +Starkville,,CIRCLE,MS,3/29/2006 20:55 +Kokomo,,LIGHT,IN,3/29/2006 21:19 +Milladore,,LIGHT,WI,3/29/2006 22:00 +Tallahassee,GREEN,FIREBALL,FL,3/30/2006 9:26 +Burlingame,,CIGAR,CA,3/30/2006 13:00 +Lawley,,EGG,AL,3/30/2006 19:15 +Franklin,,TRIANGLE,MA,3/30/2006 19:18 +Palmetto,,FLASH,FL,3/30/2006 20:30 +Broadway,,,NC,3/30/2006 21:00 +Marion,ORANGE,LIGHT,IN,3/30/2006 21:15 +Greenwood,,TRIANGLE,IN,3/31/2006 1:00 +Pullmam,,DISK,WA,3/31/2006 1:00 +Greenwood,,TRIANGLE,IN,3/31/2006 1:10 +Calabasas,,FLASH,CA,3/31/2006 4:15 +Lincoln,ORANGE YELLOW,LIGHT,NE,3/31/2006 20:50 +Tri-Cities,,LIGHT,WA,3/31/2006 21:00 +Lincoln,YELLOW,LIGHT,NE,3/31/2006 21:10 +Claremore,,DISK,OK,3/31/2006 22:00 +Sacramento,,FORMATION,CA,3/31/2006 22:30 +"Furnace Creek, ca",,LIGHT,CA,3/31/2006 23:00 +Fairfiled,,LIGHT,ID,4/1/2006 0:00 +Boston,ORANGE,FIREBALL,MA,4/1/2006 0:52 +Windham,,LIGHT,ME,4/1/2006 0:59 +St. Francis,,TEARDROP,WI,4/1/2006 1:00 +Tulsa,BLUE,OVAL,OK,4/1/2006 4:45 +Westminster,,LIGHT,CO,4/1/2006 8:00 +Colorado City,,DIAMOND,TX,4/1/2006 18:00 +Beardstown,GREEN,SPHERE,IL,4/1/2006 19:45 +St. Louis,GREEN,LIGHT,MO,4/1/2006 20:20 +Lexington,,FLASH,NC,4/1/2006 21:15 +Miami,,CIRCLE,FL,4/1/2006 21:25 +Miami,RED,TRIANGLE,FL,4/1/2006 21:45 +Macomb,GREEN,TRIANGLE,IL,4/1/2006 22:05 +Hanford Nuclear Reservation,,LIGHT,WA,4/1/2006 23:00 +San Jose,RED,OTHER,CA,4/2/2006 0:00 +El Cajon,,CIRCLE,CA,4/2/2006 1:00 +Carrollton,,LIGHT,TX,4/2/2006 3:30 +Miami,,FORMATION,FL,4/2/2006 4:00 +Elizabeth,,SPHERE,NJ,4/2/2006 17:55 +San Bernardino,,DIAMOND,CA,4/2/2006 19:00 +Smithville,,OVAL,TX,4/2/2006 20:58 +E. Northport,,FORMATION,NY,4/2/2006 21:00 +Hamden,RED YELLOW GREEN,OVAL,CT,4/2/2006 21:00 +Latonia,,RECTANGLE,KY,4/3/2006 12:00 +Winston-Salem,RED ORANGE,FIREBALL,NC,4/3/2006 13:00 +Bowie,,VARIOUS,TX,4/3/2006 13:55 +Verona,YELLOW,OTHER,PA,4/3/2006 14:50 +Bremerton,,SPHERE,WA,4/3/2006 17:14 +Los Angeles,,,CA,4/3/2006 19:00 +Tidewater,ORANGE,FIREBALL,OR,4/3/2006 21:20 +North Bend,,CIRCLE,OR,4/3/2006 21:44 +Loganville,,LIGHT,GA,4/4/2006 1:44 +Frazier Park,,CIRCLE,CA,4/4/2006 2:00 +Colorado Springs,,CIRCLE,CO,4/4/2006 2:30 +Akron,RED ORANGE,FIREBALL,OH,4/4/2006 3:50 +Sioux Falls,,,SD,4/4/2006 20:20 +Rossville,,LIGHT,IL,4/4/2006 23:40 +Gainesville,,RECTANGLE,FL,4/5/2006 1:00 +Erie,,DISK,PA,4/5/2006 3:00 +Erie,,DISK,PA,4/5/2006 3:15 +Newhall,,CIRCLE,CA,4/5/2006 6:05 +Shingletown,,DISK,CA,4/5/2006 8:31 +Silverdale,YELLOW,SPHERE,WA,4/5/2006 16:46 +Fairview Heights,,SPHERE,IL,4/5/2006 18:00 +Palatka,,DISK,FL,4/5/2006 20:00 +Centralia,RED YELLOW BLUE,FIREBALL,WA,4/5/2006 20:15 +Des Moines,,FIREBALL,WA,4/5/2006 20:30 +Graham,,DISK,WA,4/5/2006 22:15 +Oklahoma City,ORANGE,CIRCLE,OK,4/5/2006 22:25 +San Marcos,,TRIANGLE,TX,4/5/2006 22:25 +Hialeah,,DIAMOND,FL,4/6/2006 0:00 +Sammamish,,CIRCLE,WA,4/6/2006 1:00 +Scottsdale,,TRIANGLE,AZ,4/6/2006 1:30 +Ottovile,,LIGHT,OH,4/6/2006 2:05 +McCamey,,OVAL,TX,4/6/2006 5:50 +Baltimore,,,MD,4/6/2006 20:15 +Kansas City,,TRIANGLE,KS,4/6/2006 21:00 +Kirkland,,,WA,4/6/2006 21:15 +Phoenix,,CYLINDER,AZ,4/6/2006 21:33 +Monroe,,DISK,LA,4/7/2006 0:00 +Nevada City,,LIGHT,CA,4/7/2006 0:05 +Limerick,,,PA,4/7/2006 2:30 +Fresno,,LIGHT,CA,4/7/2006 6:01 +El Dorado Hills,,,CA,4/7/2006 6:05 +Hollister,ORANGE,,CA,4/7/2006 6:05 +Sacramento,,LIGHT,CA,4/7/2006 6:15 +Jacksonville,,CIGAR,NC,4/7/2006 9:30 +San Jose,,OTHER,CA,4/7/2006 10:25 +Maynardville,,LIGHT,TN,4/7/2006 19:55 +Hebronville,,OTHER,TX,4/7/2006 20:30 +Los Angeles,,DISK,CA,4/7/2006 22:00 +Omaha,,TRIANGLE,NE,4/7/2006 23:45 +Los Angeles,,VARIOUS,CA,4/8/2006 3:10 +Fort Collins,,VARIOUS,CO,4/8/2006 11:05 +Fort Collins,,VARIOUS,CO,4/8/2006 11:05 +Beardstown,,FORMATION,IL,4/8/2006 11:15 +Pecos,,DISK,NM,4/8/2006 12:30 +Santa Clarita,,CIRCLE,CA,4/8/2006 15:40 +Oley,,SPHERE,PA,4/8/2006 22:30 +Sanbornton,,DISK,NH,4/8/2006 22:43 +Augusta,,LIGHT,GA,4/8/2006 23:00 +Schererville,RED GREEN,,IN,4/9/2006 2:00 +Mira Loma,,FIREBALL,CA,4/9/2006 9:00 +Dallas,,VARIOUS,TX,4/9/2006 13:30 +Philadelphia,,CIGAR,PA,4/9/2006 14:36 +Quapaw,,CIGAR,OK,4/9/2006 15:30 +Orland,,SPHERE,CA,4/9/2006 16:35 +Orland,,SPHERE,CA,4/9/2006 16:35 +Little Rock,,LIGHT,AR,4/9/2006 21:00 +Mandeville,,LIGHT,LA,4/9/2006 22:00 +Wauseon,,TRIANGLE,OH,4/10/2006 10:45 +Burnsville,,FORMATION,MN,4/10/2006 13:45 +Sunrise,,,FL,4/10/2006 19:41 +Orlando,,OVAL,FL,4/11/2006 6:50 +Augusta,RED,LIGHT,GA,4/11/2006 20:40 +Flint,,TRIANGLE,MI,4/11/2006 21:15 +Malibu,,OTHER,CA,4/11/2006 23:30 +Huntington Park,,VARIOUS,CA,4/12/2006 0:00 +Golden,,FORMATION,CO,4/12/2006 13:51 +Pensacola,,TRIANGLE,FL,4/12/2006 21:00 +Arlington,,TRIANGLE,TX,4/12/2006 22:15 +Hessel,,CIGAR,MI,4/13/2006 3:24 +Orlando,,LIGHT,FL,4/13/2006 9:30 +Mercer,,LIGHT,PA,4/13/2006 14:00 +Denver,,TRIANGLE,CO,4/13/2006 20:30 +Wise,,LIGHT,VA,4/13/2006 21:15 +Fort Worth,,OTHER,TX,4/13/2006 22:00 +Jamestown,RED,TRIANGLE,NY,4/13/2006 22:00 +Howell,,DISK,NJ,4/14/2006 0:18 +New York City,,LIGHT,NY,4/14/2006 0:40 +Naperville,ORANGE,SPHERE,IL,4/14/2006 19:15 +El Paso,,OTHER,TX,4/14/2006 19:22 +La Quinta,,LIGHT,CA,4/14/2006 20:00 +Shoreline,ORANGE,EGG,WA,4/14/2006 20:00 +Baltimore,,CIGAR,MD,4/15/2006 0:00 +San Antonio,,OVAL,TX,4/15/2006 1:30 +Denver,,OVAL,CO,4/15/2006 2:00 +Irvine,,,PA,4/15/2006 2:00 +Crystal Lake,,OVAL,IL,4/15/2006 2:04 +Rome,,TRIANGLE,GA,4/15/2006 3:00 +Berwick,,TRIANGLE,LA,4/15/2006 7:00 +Mays Landing,,CIGAR,NJ,4/15/2006 10:45 +Columbus,,FORMATION,OH,4/15/2006 16:00 +Wilmington,,SPHERE,DE,4/15/2006 17:15 +Vermilion,,CYLINDER,OH,4/15/2006 20:27 +Hutchinson,,,KS,4/15/2006 21:00 +Pensacola,,CIRCLE,FL,4/15/2006 21:00 +Reading,,TRIANGLE,PA,4/15/2006 21:00 +Kirtland,,LIGHT,NM,4/15/2006 21:09 +Cedarville,,VARIOUS,OH,4/15/2006 21:30 +Camp Albert Pike,,,AR,4/15/2006 23:00 +Round Rock,,LIGHT,TX,4/15/2006 23:00 +Missoula,,LIGHT,MT,4/16/2006 2:00 +Hoover,,OTHER,AL,4/16/2006 9:54 +Lenior City,,DISK,TN,4/16/2006 13:45 +Little Rock,,FIREBALL,AR,4/16/2006 19:00 +Seattle,ORANGE,CIRCLE,WA,4/16/2006 19:40 +Exeter,RED,FIREBALL,NE,4/16/2006 20:05 +Filmore,,DIAMOND,UT,4/16/2006 20:45 +Jackson,BLUE,DISK,MI,4/16/2006 22:35 +Grand Forks,,CIRCLE,ND,4/17/2006 0:00 +Surprise,,,AZ,4/17/2006 2:20 +Surpriswe,,,AZ,4/17/2006 3:14 +Industry,,OVAL,CA,4/17/2006 14:00 +Columbus,,FORMATION,IN,4/17/2006 17:45 +Satellite Beach,,LIGHT,FL,4/17/2006 19:30 +Houston,YELLOW,OVAL,TX,4/17/2006 21:15 +Morgan,,LIGHT,PA,4/17/2006 22:25 +Hartford,,TEARDROP,CT,4/17/2006 22:31 +West Fargo,BLUE,CIRCLE,ND,4/17/2006 23:00 +Fairfield,,,CA,4/18/2006 8:36 +Eureka,,SPHERE,CA,4/18/2006 10:38 +Alexandria,,SPHERE,VA,4/18/2006 14:30 +Boyertown,,TRIANGLE,PA,4/18/2006 14:36 +Budd Lake,,LIGHT,NJ,4/18/2006 22:00 +Crockett,RED GREEN BLUE,OTHER,CA,4/18/2006 22:10 +DeLeon,,LIGHT,TX,4/18/2006 22:18 +Mogollon Rim,,LIGHT,AZ,4/19/2006 0:00 +Ottawa,,LIGHT,IL,4/19/2006 0:30 +Las Vegas,,LIGHT,NV,4/19/2006 2:30 +Maysville,,SPHERE,NC,4/19/2006 8:30 +Morrison,,CONE,TN,4/19/2006 19:15 +Washington Court House,,DISK,OH,4/19/2006 20:10 +Washington Court House,,DISK,OH,4/19/2006 20:10 +Newton,,,KS,4/19/2006 21:02 +Kansas City,,LIGHT,MO,4/19/2006 21:15 +Claremore,,LIGHT,OK,4/19/2006 21:30 +Peru,,OTHER,IN,4/19/2006 22:00 +Silver Spring,,CIGAR,MD,4/20/2006 9:10 +West Lafayette,,FIREBALL,IN,4/20/2006 10:00 +Maricopa,,LIGHT,AZ,4/20/2006 19:43 +Newaygo,,LIGHT,MI,4/20/2006 22:00 +Rochester,RED,CIRCLE,MN,4/20/2006 22:05 +Knoxville,ORANGE,CYLINDER,TN,4/20/2006 22:40 +Austin,,CIRCLE,TX,4/21/2006 2:00 +Charlotte,,,NC,4/21/2006 20:30 +Michigan City,,SPHERE,IN,4/21/2006 21:00 +Anza Borrego State Park,,TRIANGLE,CA,4/21/2006 21:05 +Burneyville,YELLOW,LIGHT,OK,4/21/2006 21:10 +Albuquerque,,TRIANGLE,NM,4/21/2006 21:40 +South Dennis,RED,,MA,4/21/2006 23:30 +Fairport,,,NY,4/22/2006 3:15 +Hanover,,DISK,MD,4/22/2006 17:00 +Lake Stevens,,,WA,4/22/2006 17:10 +Norwalk,RED,LIGHT,CA,4/22/2006 20:30 +Whittier,RED,FIREBALL,CA,4/22/2006 20:30 +Asheville,,,NC,4/22/2006 21:00 +Springfield,,LIGHT,OR,4/22/2006 21:35 +Anna,,TRIANGLE,TX,4/22/2006 21:40 +Clarksville,,FIREBALL,IN,4/22/2006 21:45 +Slater,,LIGHT,MO,4/22/2006 22:00 +Renton,,LIGHT,WA,4/22/2006 22:10 +Chupadero,,DISK,NM,4/22/2006 23:00 +Pismo Beach,,LIGHT,CA,4/22/2006 23:30 +Fallbrook,,LIGHT,CA,4/23/2006 2:00 +Ogden,,LIGHT,UT,4/23/2006 5:30 +Destin,,,FL,4/23/2006 11:00 +Bluefield,,FIREBALL,WV,4/23/2006 11:45 +San Diego,RED,FIREBALL,CA,4/23/2006 20:30 +Midland,,VARIOUS,TX,4/23/2006 21:15 +Waynesboro,,TRIANGLE,PA,4/23/2006 21:15 +Bremerton,,OTHER,WA,4/23/2006 21:30 +Roseburg,,DISK,OR,4/23/2006 22:00 +Dallesport,,VARIOUS,WA,4/24/2006 0:36 +Sterling Heights,ORANGE,TEARDROP,MI,4/24/2006 2:00 +Colorado Springs,,,CO,4/24/2006 4:30 +San Antonio,,CIGAR,TX,4/24/2006 12:00 +Loman,RED,LIGHT,MN,4/24/2006 21:30 +Yakima,,LIGHT,WA,4/24/2006 23:15 +Mukilteo,,DISK,WA,4/25/2006 9:30 +Wickenburg,ORANGE,CIRCLE,AZ,4/25/2006 9:55 +Biglake,,LIGHT,MN,4/25/2006 10:30 +Morgantown,,FIREBALL,WV,4/25/2006 12:00 +Green River,,TEARDROP,UT,4/25/2006 14:45 +Sturbridge,,,MA,4/25/2006 22:30 +Portland,RED,RECTANGLE,OR,4/25/2006 23:20 +Alexandria,,EGG,VA,4/26/2006 12:00 +Mineola,,OTHER,TX,4/26/2006 22:00 +Ishpeming,,LIGHT,MI,4/26/2006 22:50 +Naples,,FORMATION,FL,4/27/2006 5:30 +Portland,,OVAL,OR,4/27/2006 13:00 +Santa Maria,RED,RECTANGLE,CA,4/27/2006 16:30 +Williamsburg,RED,OTHER,VA,4/27/2006 21:30 +Vineland,RED,CIRCLE,NJ,4/28/2006 0:06 +Riverton,,VARIOUS,IL,4/28/2006 12:00 +South Shore,,CIGAR,KY,4/28/2006 18:00 +Salem,,OTHER,OR,4/28/2006 19:00 +Los Angeles,,TRIANGLE,CA,4/28/2006 19:17 +Yakima,,CIGAR,WA,4/28/2006 20:04 +Reno,,FORMATION,NV,4/28/2006 21:35 +Jericho,,RECTANGLE,VT,4/28/2006 22:00 +East Brunswick,,FIREBALL,NJ,4/28/2006 22:55 +Howard Prairie Lake Resort,,RECTANGLE,OR,4/28/2006 23:10 +Warren,RED,DISK,OR,4/29/2006 0:00 +Portland,,LIGHT,OR,4/29/2006 0:02 +College Place,ORANGE,CIRCLE,WA,4/29/2006 0:30 +Boise,,LIGHT,ID,4/29/2006 1:00 +Los Angeles,,,CA,4/29/2006 1:00 +Binghamton,,,NY,4/29/2006 13:40 +Vancouver,,TRIANGLE,WA,4/29/2006 13:55 +Philadelphia,,RECTANGLE,PA,4/29/2006 18:00 +Minden,,,LA,4/29/2006 19:00 +New York City,,CIGAR,NY,4/29/2006 19:30 +New York City,,CIGAR,NY,4/29/2006 19:30 +New York City,,CIGAR,NY,4/29/2006 19:30 +South Salt Lake City,,LIGHT,UT,4/29/2006 19:30 +West Yarmouth,,,MA,4/29/2006 21:00 +Idaho Falls,,DISK,ID,4/29/2006 22:13 +Jackson,,CIRCLE,CA,4/29/2006 22:20 +Portland,ORANGE,FIREBALL,OR,4/29/2006 23:30 +Portland,,FORMATION,OR,4/29/2006 23:40 +La Center,,FORMATION,WA,4/29/2006 23:45 +Portland,,VARIOUS,OR,4/29/2006 23:50 +Portland,,VARIOUS,OR,4/29/2006 23:50 +Portland,ORANGE,VARIOUS,OR,4/29/2006 23:50 +Portland,,SPHERE,OR,4/29/2006 23:54 +Portland,RED,LIGHT,OR,4/29/2006 23:55 +Tigard,,FORMATION,OR,4/30/2006 0:05 +Phoenix,,OTHER,AZ,4/30/2006 0:11 +Walla Walla,,CIRCLE,WA,4/30/2006 0:15 +Portland,,DIAMOND,OR,4/30/2006 0:20 +Sunflower,,OTHER,AZ,4/30/2006 15:30 +Bear River,,SPHERE,WY,4/30/2006 16:00 +San Francisco,,SPHERE,CA,4/30/2006 20:10 +Yakima,,LIGHT,WA,4/30/2006 21:25 +Orange,ORANGE,TRIANGLE,TX,4/30/2006 22:15 +Euless,,TRIANGLE,TX,4/30/2006 22:25 +Roseville,,OTHER,CA,4/30/2006 22:40 +Dana,,TRIANGLE,IN,4/30/2006 23:30 +Kingsville,,OTHER,MO,5/1/2006 0:00 +Wallace,,FORMATION,NC,5/1/2006 0:00 +Waxahachie,,VARIOUS,TX,5/1/2006 13:00 +Las Vegas,,DIAMOND,NV,5/1/2006 14:30 +Cartwright,,LIGHT,OK,5/1/2006 21:00 +San Onofre,,LIGHT,CA,5/1/2006 21:00 +Carthage,BLUE,SPHERE,NY,5/1/2006 21:20 +Wilmington,,TRIANGLE,DE,5/1/2006 22:00 +Canton,,TRIANGLE,IL,5/1/2006 22:15 +Tacoma,,TRIANGLE,WA,5/2/2006 0:15 +Omaha,,OVAL,NE,5/2/2006 1:00 +Las Vegas,,CIRCLE,NV,5/2/2006 1:30 +San Jose,RED,VARIOUS,CA,5/2/2006 1:30 +Inver Grove Heights,RED,CIRCLE,MN,5/2/2006 19:15 +Panama City Beach,,,FL,5/2/2006 21:00 +Redmond,RED,TRIANGLE,WA,5/2/2006 21:25 +Panama City beach,RED ORANGE,LIGHT,FL,5/2/2006 22:00 +Salt Lake City,,CONE,UT,5/3/2006 0:00 +Fort Myers,,SPHERE,FL,5/3/2006 18:35 +Hollywood,,TRIANGLE,FL,5/3/2006 21:00 +McIntosh,,TRIANGLE,NM,5/3/2006 21:00 +Houston,,SPHERE,TX,5/3/2006 22:00 +Franklin,,TRIANGLE,IN,5/3/2006 22:35 +Throop,,,PA,5/3/2006 23:05 +New York City,,OVAL,NY,5/4/2006 0:00 +Wausau,,EGG,WI,5/4/2006 0:00 +Deerfield Beach,,FIREBALL,FL,5/4/2006 6:00 +Glendale,,SPHERE,AZ,5/4/2006 16:00 +Port Charlotte,,LIGHT,FL,5/4/2006 20:30 +Scottsdale,,LIGHT,AZ,5/4/2006 20:52 +San Leandro,,CIRCLE,CA,5/4/2006 21:10 +Buckeye,,LIGHT,AZ,5/4/2006 21:25 +El Paso,,OTHER,TX,5/4/2006 22:10 +Westminster,ORANGE,FIREBALL,CA,5/4/2006 22:40 +North Montpelier,,LIGHT,VT,5/5/2006 16:48 +Wauchula,,,FL,5/5/2006 20:00 +Pomona,,LIGHT,CA,5/5/2006 20:15 +Orlando,,FORMATION,FL,5/6/2006 1:00 +Maysville,,LIGHT,OK,5/6/2006 4:45 +Westminster,,LIGHT,CO,5/6/2006 7:45 +Sierra Vista,,,AZ,5/6/2006 11:30 +Evans,,CYLINDER,NY,5/6/2006 14:00 +Grand Rapids,,OTHER,MI,5/6/2006 14:10 +East Brunswick,,CIRCLE,NJ,5/6/2006 14:30 +Redford,,SPHERE,MI,5/6/2006 16:30 +Fort Myers,,SPHERE,FL,5/6/2006 18:00 +Lake Wales,,FORMATION,FL,5/6/2006 21:30 +Maupin,,LIGHT,OR,5/6/2006 22:00 +Vero Beach,,CIRCLE,FL,5/6/2006 22:10 +Newburgh,,LIGHT,NY,5/6/2006 22:20 +Still River,ORANGE YELLOW,LIGHT,MA,5/6/2006 22:40 +Omaha,,TRIANGLE,NE,5/6/2006 23:00 +Winona,,FORMATION,MN,5/6/2006 23:45 +Idaho Falls,,TRIANGLE,ID,5/7/2006 0:00 +Idaho Falls,,TRIANGLE,ID,5/7/2006 0:00 +Lafayette,RED,,CA,5/7/2006 0:00 +Largo,,CIRCLE,FL,5/7/2006 7:40 +Spokane,,DISK,WA,5/7/2006 9:30 +Amboy,,OVAL,WA,5/7/2006 12:20 +Old Forge,GREEN,FORMATION,PA,5/7/2006 16:25 +Chicago,,SPHERE,IL,5/7/2006 18:17 +Palmdale,,,CA,5/7/2006 20:50 +New Washington,,,IN,5/7/2006 21:00 +Twenty Nine Palms,,CHEVRON,CA,5/7/2006 21:00 +Brookville,RED,TRIANGLE,OH,5/7/2006 21:30 +Davenport,,LIGHT,IA,5/7/2006 21:30 +no data,,OTHER,WA,5/8/2006 15:00 +Wilmington,,TRIANGLE,DE,5/8/2006 23:00 +Bloomington,,,IL,5/8/2006 23:10 +Bloomington,,,IL,5/8/2006 23:10 +NAS Lemoore,,LIGHT,CA,5/9/2006 3:15 +Sacramento,,,CA,5/9/2006 5:00 +Los Altos Hills,,LIGHT,CA,5/9/2006 5:06 +San Jose,,LIGHT,CA,5/9/2006 5:09 +Yuba City,,LIGHT,CA,5/9/2006 5:20 +Fayetteville,RED,CIGAR,AR,5/9/2006 16:00 +Lewiston,,TRIANGLE,ID,5/9/2006 23:40 +Moscow,,TRIANGLE,ID,5/10/2006 1:00 +Somes Bar,,LIGHT,CA,5/10/2006 1:00 +Fort Myers,RED,SPHERE,FL,5/10/2006 4:47 +Denver,,CIGAR,CO,5/10/2006 9:45 +Oakland,,,CA,5/10/2006 22:04 +Shawnee,,CIRCLE,KS,5/10/2006 23:00 +Long Beach,,SPHERE,WA,5/11/2006 12:00 +Austin,,CIGAR,TX,5/11/2006 14:50 +Buckhead Ridge,,DISK,FL,5/11/2006 19:45 +Folsom,ORANGE,DISK,CA,5/11/2006 20:25 +Carlsbad,,LIGHT,NM,5/11/2006 20:30 +Carlsbad,,LIGHT,NM,5/11/2006 20:30 +Elgin,,CIRCLE,TX,5/11/2006 23:00 +Houston,,TRIANGLE,TX,5/12/2006 0:00 +Cincinnati,,DISK,OH,5/12/2006 13:00 +Pearland,,CIRCLE,TX,5/12/2006 15:57 +Little Rock,,CIRCLE,AR,5/12/2006 18:00 +Maple Shade,,CIRCLE,NJ,5/12/2006 18:30 +Bois D'Arc,,SPHERE,MO,5/12/2006 20:33 +Campbell,ORANGE,,CA,5/12/2006 21:45 +Carmichael,,TRIANGLE,CA,5/12/2006 21:50 +Tulsa,,,OK,5/12/2006 22:30 +Plano,,,TX,5/12/2006 23:00 +Austin,,LIGHT,TX,5/13/2006 1:00 +Lewisville,,CIRCLE,TX,5/13/2006 12:30 +Aloha,,OVAL,OR,5/13/2006 13:00 +Los Alamitos,,LIGHT,CA,5/13/2006 14:45 +Redwood City,,SPHERE,CA,5/13/2006 20:30 +Alexandria,,LIGHT,LA,5/13/2006 21:28 +Twin Falls,RED GREEN,CIRCLE,ID,5/13/2006 22:05 +Lincoln,,LIGHT,NE,5/13/2006 22:15 +Baltimore,,LIGHT,MD,5/13/2006 23:40 +Delray Beach,,LIGHT,FL,5/14/2006 0:30 +Newton,,LIGHT,IA,5/14/2006 1:32 +Newton,,LIGHT,IA,5/14/2006 1:45 +Malibu,,DISK,CA,5/14/2006 14:00 +La Mirada,,LIGHT,CA,5/14/2006 14:30 +Miami,RED,LIGHT,FL,5/14/2006 20:45 +Cincinnati,,CIRCLE,OH,5/14/2006 22:00 +Winter Haven,,,FL,5/15/2006 0:00 +Saline,,DISK,MI,5/15/2006 0:15 +Plant City,,,FL,5/15/2006 7:30 +Littleton,GREEN,OTHER,CO,5/15/2006 12:00 +Benton,,CIGAR,KY,5/15/2006 12:30 +Esparto,BLUE,DISK,CA,5/15/2006 14:00 +East Haven,,OTHER,CT,5/15/2006 16:00 +Moscow,,TRIANGLE,ID,5/15/2006 18:00 +Lexington,ORANGE,CIGAR,KY,5/15/2006 19:00 +Goodyear,,LIGHT,AZ,5/15/2006 20:30 +Miami,,FORMATION,FL,5/15/2006 21:10 +Zirconia,,,NC,5/15/2006 22:00 +Baltimore,RED,EGG,MD,5/15/2006 23:00 +West Bridgewater,,LIGHT,MA,5/16/2006 10:20 +Lynnwood,,RECTANGLE,WA,5/16/2006 13:25 +Westhampton,,OTHER,MA,5/16/2006 21:45 +Del Rio,,OTHER,TX,5/16/2006 23:00 +Wasco,RED,,CA,5/16/2006 23:00 +Holland,,,MI,5/16/2006 23:10 +Holland,,,TX,5/17/2006 0:00 +Holland,RED YELLOW,,TX,5/17/2006 0:00 +Richmond,RED ORANGE,FIREBALL,VA,5/17/2006 0:00 +East Setauket,RED,CIRCLE,NY,5/17/2006 2:10 +Walker,,CIRCLE,MN,5/17/2006 3:00 +San Mateo,,,CA,5/17/2006 20:25 +Allentown,,TRIANGLE,PA,5/17/2006 21:00 +Benton County,,LIGHT,MO,5/17/2006 21:30 +La Puente,,CHEVRON,CA,5/17/2006 21:30 +Beaverton,,DIAMOND,OR,5/17/2006 22:30 +Littlerock,ORANGE,LIGHT,AR,5/17/2006 22:30 +Fresno,,LIGHT,CA,5/17/2006 23:30 +Telford,,OTHER,TN,5/18/2006 2:00 +Jacumba,,CIGAR,CA,5/18/2006 12:30 +St. Joseph,,CYLINDER,MO,5/18/2006 13:35 +Gulf Shores,,,AL,5/18/2006 21:00 +Fort Smith,,CIRCLE,AR,5/18/2006 22:00 +Sonora,,LIGHT,CA,5/19/2006 0:30 +highway 78 between Bailey,,SPHERE,TX,5/19/2006 9:57 +Seattle,,CIRCLE,WA,5/19/2006 18:00 +Canton,,OVAL,IL,5/19/2006 21:30 +Sunderland,,OVAL,MA,5/19/2006 21:30 +Wheatfield,ORANGE,FORMATION,IN,5/19/2006 21:31 +Cleveland,RED BLUE,OTHER,OH,5/19/2006 22:00 +Myrtle Beach,,LIGHT,SC,5/19/2006 22:00 +Wilson,,CIRCLE,NC,5/20/2006 0:05 +Gaylord,,TRIANGLE,MN,5/20/2006 0:58 +Soso,BLUE,FIREBALL,MS,5/20/2006 2:00 +Plainfield,,LIGHT,IL,5/20/2006 2:35 +Lewisville,,OTHER,TX,5/20/2006 4:30 +Seattle,,,WA,5/20/2006 9:45 +Greenwich,GREEN,FIREBALL,CT,5/20/2006 10:20 +Beaver,,TEARDROP,UT,5/20/2006 11:00 +Torrance,,OTHER,CA,5/20/2006 15:00 +Grayson,,CIRCLE,KY,5/20/2006 15:30 +Azle,,LIGHT,TX,5/20/2006 22:00 +Oakwood,,LIGHT,OH,5/20/2006 22:00 +Spring Hill,,LIGHT,FL,5/20/2006 22:10 +Molly Stark St. Park,,,VT,5/21/2006 0:30 +Phoenix,,FIREBALL,AZ,5/21/2006 3:30 +Tempe,,SPHERE,AZ,5/21/2006 10:30 +Las Vegas,,SPHERE,NV,5/21/2006 10:45 +Dover,,TRIANGLE,DE,5/21/2006 20:00 +Richmond,,TRIANGLE,VA,5/21/2006 21:55 +Murrieta,,,CA,5/21/2006 22:30 +Monticello,,DISK,MN,5/21/2006 23:00 +Malden,,OVAL,MA,5/22/2006 0:00 +Deadwood,,DISK,SD,5/22/2006 14:22 +Centerville,,TRIANGLE,MA,5/22/2006 18:46 +Ladd,,FIREBALL,IL,5/22/2006 21:31 +Coralville,,OVAL,IA,5/22/2006 21:35 +Round lake,ORANGE,OVAL,IL,5/22/2006 22:30 +Fenwick Island,,LIGHT,DE,5/22/2006 23:34 +Indianapolis,,FLASH,IN,5/23/2006 0:00 +"Malibu, West",,CYLINDER,CA,5/23/2006 14:00 +Huntersville,,DISK,NC,5/23/2006 19:40 +Palm Coast,,DISK,FL,5/23/2006 20:43 +Shady Spring,,VARIOUS,WV,5/23/2006 21:50 +Campbell,ORANGE,LIGHT,CA,5/23/2006 22:00 +Moulton,,LIGHT,AL,5/23/2006 22:30 +Tranquillity,,CIRCLE,CA,5/23/2006 22:34 +Tuscola,,LIGHT,TX,5/23/2006 22:55 +Cleveland,,SPHERE,OH,5/23/2006 23:30 +Westport,,CIGAR,CT,5/24/2006 4:37 +Beaver Lake,,LIGHT,NE,5/24/2006 23:20 +Muscatine,,RECTANGLE,IA,5/25/2006 0:30 +Murrells Inlet,,DISK,SC,5/25/2006 3:30 +Vienna,BLUE,CIRCLE,VA,5/25/2006 20:00 +Warrensburg,,TRIANGLE,MO,5/25/2006 20:01 +Pikeville,,VARIOUS,KY,5/25/2006 22:30 +Smithfield,,,VA,5/26/2006 0:30 +Laurie,,DISK,MO,5/26/2006 3:00 +Scottsdale,,CIGAR,AZ,5/26/2006 5:00 +Port St. Lucie,GREEN,LIGHT,FL,5/26/2006 5:33 +Tucson,,,AZ,5/26/2006 11:30 +Olean,,TEARDROP,NY,5/26/2006 23:30 +Pocahontas,,OVAL,AR,5/27/2006 1:00 +Ottway,,,OH,5/27/2006 2:00 +Scottsdale,,CIRCLE,AZ,5/27/2006 13:00 +Northbrook,,LIGHT,IL,5/27/2006 21:12 +Saluda,,VARIOUS,VA,5/27/2006 22:00 +Belmont,,TRIANGLE,MA,5/27/2006 22:35 +Comanche,,,TX,5/27/2006 23:00 +Belmont,,OTHER,MA,5/27/2006 23:15 +Mt. Pocono,,LIGHT,PA,5/28/2006 11:00 +New Philadelphia,RED,TRIANGLE,OH,5/28/2006 11:35 +Philadelphia,,CIRCLE,PA,5/28/2006 17:00 +Santa Clara,,OVAL,CA,5/28/2006 20:00 +Spring Hill,,FLASH,TN,5/28/2006 20:45 +Jupiter,,LIGHT,FL,5/28/2006 21:30 +Adkins,BLUE,SPHERE,TX,5/28/2006 23:30 +Aurora,,,IL,5/28/2006 23:30 +East Bridgewater,,FLASH,MA,5/28/2006 23:30 +Joliet,,OVAL,IL,5/29/2006 3:00 +Bakersfield,,SPHERE,CA,5/29/2006 12:00 +Jeffersonville,,OTHER,IN,5/29/2006 17:30 +Dupo,,CIGAR,IL,5/29/2006 19:00 +Miami,,FIREBALL,FL,5/29/2006 20:00 +Purlear,,OTHER,NC,5/29/2006 20:45 +Syracuse,,FLASH,NY,5/29/2006 23:11 +Nashville,,DISK,TN,5/30/2006 8:08 +Hartville,,SPHERE,MO,5/30/2006 22:00 +Mukilteo,BLUE,VARIOUS,WA,5/31/2006 0:00 +Palm Desert,GREEN,LIGHT,CA,5/31/2006 1:37 +Lexington,,RECTANGLE,SC,6/1/2006 0:00 +Lexington,,RECTANGLE,SC,6/1/2006 0:00 +New York City,,SPHERE,NY,6/1/2006 0:00 +Pratt,,VARIOUS,KS,6/1/2006 0:00 +Bodie,ORANGE YELLOW,CIRCLE,CA,6/1/2006 2:00 +Ocracoke Island,,TRIANGLE,NC,6/1/2006 4:00 +Meridian,RED GREEN,CIGAR,ID,6/1/2006 5:00 +College Station,,TRIANGLE,TX,6/1/2006 13:00 +Parkside,,OVAL,PA,6/1/2006 15:00 +Clinton Township,,DISK,MI,6/1/2006 17:00 +Ogden,,EGG,UT,6/1/2006 19:15 +Albany,,LIGHT,NY,6/1/2006 20:00 +North Powder area,,OVAL,OR,6/1/2006 20:45 +Meridian,,FIREBALL,ID,6/1/2006 21:00 +San Angelo,RED GREEN BLUE,SPHERE,TX,6/1/2006 21:20 +Stratford,,FIREBALL,OK,6/1/2006 21:30 +Nampa,,FIREBALL,ID,6/1/2006 21:37 +Boise,,CIGAR,ID,6/1/2006 21:45 +Cape Coral,,,FL,6/1/2006 22:00 +Olathe,,LIGHT,KS,6/1/2006 23:00 +Rockaway,,SPHERE,OR,6/1/2006 23:00 +Newark,,OTHER,DE,6/2/2006 2:00 +Las Cruces,,DISK,NM,6/2/2006 4:00 +Simpsonville,,CIRCLE,SC,6/2/2006 5:25 +Colorado Springs,,TEARDROP,CO,6/2/2006 10:40 +Wadsworth,,DIAMOND,IL,6/2/2006 14:00 +Harlingen,ORANGE,TRIANGLE,TX,6/2/2006 15:00 +Topaz Mountain,ORANGE,OVAL,UT,6/2/2006 21:30 +Andover,GREEN,TEARDROP,MN,6/2/2006 23:45 +St. Peters,,CYLINDER,MO,6/3/2006 13:45 +Canyon Country,,CIRCLE,CA,6/3/2006 14:00 +Los Angeles,,SPHERE,CA,6/3/2006 19:00 +St. Cloud,,EGG,FL,6/3/2006 23:30 +Grand Rapids,,CYLINDER,MI,6/4/2006 12:00 +Louisville,,DISK,KY,6/4/2006 12:00 +Santa Ana,,FORMATION,CA,6/4/2006 18:10 +Crystal Lake,,VARIOUS,IL,6/4/2006 21:30 +Chicago,,DISK,IL,6/4/2006 22:15 +Denver near Aurora,YELLOW BLUE,RECTANGLE,CO,6/4/2006 23:00 +Mill Valley,,OTHER,CA,6/5/2006 0:05 +San Ramon,,SPHERE,CA,6/5/2006 1:00 +Sanders,,VARIOUS,AZ,6/5/2006 1:30 +Ormond Beach,,FIREBALL,FL,6/5/2006 2:30 +Fresno,,TRIANGLE,CA,6/5/2006 3:10 +Fort Worth,RED BLUE,,TX,6/5/2006 4:15 +Chicago area,,RECTANGLE,IL,6/5/2006 10:45 +Vancouver,,LIGHT,WA,6/5/2006 11:45 +Wisconsin Dells,,CYLINDER,WI,6/5/2006 12:00 +East Bethel,,TEARDROP,MN,6/5/2006 13:00 +Oak Ridge,,CIGAR,TN,6/5/2006 20:35 +Culbertson,,FIREBALL,MT,6/5/2006 22:00 +Yakima,,LIGHT,WA,6/5/2006 22:00 +Florissant,,SPHERE,MO,6/5/2006 22:30 +Tampa,,DISK,FL,6/5/2006 23:30 +Simi Valley,YELLOW,LIGHT,CA,6/5/2006 23:57 +Glen Allen,,FORMATION,VA,6/6/2006 0:01 +Sonora,,DISK,CA,6/6/2006 1:00 +Las Vegas,,,NV,6/6/2006 3:50 +Boise,,TRIANGLE,ID,6/6/2006 8:00 +Clark,,LIGHT,NJ,6/6/2006 10:00 +Miami,,CIRCLE,FL,6/6/2006 11:57 +Miami,,CIRCLE,FL,6/6/2006 11:58 +El Paso,,VARIOUS,TX,6/6/2006 19:45 +Altamonte Springs,,FIREBALL,FL,6/6/2006 20:05 +Altamonte Springs,,FIREBALL,FL,6/6/2006 20:06 +Bradley Beach,,SPHERE,NJ,6/6/2006 20:15 +Green Bay,,LIGHT,WI,6/6/2006 21:00 +Phoenix,,SPHERE,AZ,6/6/2006 21:00 +Howell,,OVAL,MI,6/6/2006 22:00 +Portland,,LIGHT,OR,6/6/2006 22:00 +Billings,BLUE,LIGHT,MT,6/6/2006 23:25 +Key Largo,,FORMATION,FL,6/6/2006 23:30 +Brick,,DISK,NJ,6/7/2006 0:00 +Martinsville,GREEN BLUE,VARIOUS,IL,6/7/2006 0:00 +Marion,,DISK,IL,6/7/2006 2:34 +Spokane,,VARIOUS,WA,6/7/2006 10:37 +Willow Springs,,DISK,IL,6/7/2006 14:00 +Houston,,DISK,TX,6/7/2006 18:10 +Piedmont,ORANGE,CIRCLE,MO,6/7/2006 21:30 +Piedmont,ORANGE,FORMATION,MO,6/7/2006 21:30 +Texarkana,,LIGHT,TX,6/8/2006 1:00 +Kenly,,,NC,6/8/2006 2:00 +Atmore,,OTHER,AL,6/8/2006 22:00 +Harwood,,SPHERE,TX,6/9/2006 3:00 +Aurora,,CROSS,IL,6/9/2006 19:00 +Kernersville,,SPHERE,NC,6/9/2006 20:00 +New York City,,SPHERE,NY,6/9/2006 23:46 +College Place,,LIGHT,WA,6/10/2006 0:00 +Jackson,,LIGHT,TN,6/10/2006 0:45 +Logansport,RED,LIGHT,IN,6/10/2006 3:00 +Fox Lake,RED,OVAL,IL,6/10/2006 12:05 +Redmond,,CYLINDER,WA,6/10/2006 21:40 +Portland,RED,FIREBALL,OR,6/10/2006 22:00 +Sanford area,,LIGHT,CO,6/10/2006 23:00 +Seattle,,LIGHT,WA,6/10/2006 23:00 +Wichita,,TEARDROP,KS,6/10/2006 23:00 +Amarillo,,,TX,6/10/2006 23:45 +Columbus,,CIRCLE,OH,6/10/2006 23:55 +Lafayette,,,CA,6/11/2006 0:00 +Austin,,FIREBALL,TX,6/11/2006 2:29 +Phoenix,,OTHER,AZ,6/11/2006 17:30 +Rockwood,,OVAL,TN,6/12/2006 0:00 +Issaquah,,LIGHT,WA,6/12/2006 1:55 +Athens,,TRIANGLE,GA,6/12/2006 4:10 +Pensacola,,OTHER,FL,6/12/2006 6:45 +Pensacola,,LIGHT,FL,6/12/2006 7:45 +Corinth,,TRIANGLE,TX,6/12/2006 8:00 +Westminster,,CIRCLE,CO,6/12/2006 16:30 +Bay City,,CYLINDER,MI,6/12/2006 20:00 +Spring Valley,,DISK,CA,6/12/2006 21:50 +Baton Rouge,,OVAL,LA,6/12/2006 23:00 +St. George Island,,SPHERE,FL,6/12/2006 23:00 +Southwest,,TRIANGLE,OH,6/13/2006 5:00 +Burns Harbor,,OVAL,IN,6/13/2006 13:00 +El Cajon,,TRIANGLE,CA,6/13/2006 20:15 +Clarksville,,LIGHT,TN,6/13/2006 22:00 +Leesburg,,FIREBALL,FL,6/13/2006 22:00 +San Clemente,,TRIANGLE,CA,6/13/2006 23:00 +South Lake Tahoe,,LIGHT,CA,6/14/2006 3:30 +Koshkonong,,SPHERE,MO,6/14/2006 12:10 +Miami Springs,BLUE,CIRCLE,FL,6/14/2006 16:25 +North Royalton,,TRIANGLE,OH,6/14/2006 18:00 +Murrieta,,TRIANGLE,CA,6/14/2006 21:30 +Seminoe Lake,,,WY,6/14/2006 23:00 +Davenport,,OVAL,IA,6/14/2006 23:15 +Acme,,OTHER,PA,6/15/2006 0:00 +Colorado,,DISK,CO,6/15/2006 0:00 +New Hampton,,CIRCLE,NH,6/15/2006 1:00 +North Pole,,OVAL,AK,6/15/2006 1:43 +San Antonio,,LIGHT,TX,6/15/2006 3:30 +Canon City,,TEARDROP,CO,6/15/2006 10:00 +Fallon,,SPHERE,NV,6/15/2006 15:00 +Jacksonville,,FIREBALL,NC,6/15/2006 21:00 +Sacramento,,,CA,6/15/2006 21:00 +St. Thomas,RED,LIGHT,MO,6/15/2006 21:00 +Wilmington,,LIGHT,NC,6/15/2006 21:00 +Carrollton,,RECTANGLE,IL,6/15/2006 21:10 +Glen Gardner,,DISK,NJ,6/15/2006 21:30 +Tampa,,LIGHT,FL,6/15/2006 21:45 +Ferndale,,,NY,6/15/2006 22:15 +Buhl,,TRIANGLE,ID,6/15/2006 23:52 +Somers,,DIAMOND,CT,6/16/2006 1:30 +Rocky Mountain National Park,,SPHERE,CO,6/16/2006 15:00 +Mission Hills,,LIGHT,CA,6/16/2006 20:00 +La Feria,,LIGHT,TX,6/16/2006 21:30 +Narragansett,,LIGHT,RI,6/16/2006 22:00 +Fairfield,,FORMATION,TX,6/16/2006 22:30 +Kirkland,,LIGHT,WA,6/16/2006 23:45 +Beaumont,,LIGHT,TX,6/17/2006 1:00 +Pittsburg,,DISK,CA,6/17/2006 5:00 +Lake Oswego,,LIGHT,OR,6/17/2006 10:02 +Carlsbad,RED,LIGHT,NM,6/17/2006 17:30 +Vancouver,,DISK,WA,6/17/2006 18:00 +Miami,,DISK,FL,6/17/2006 20:00 +Plains,,CIRCLE,PA,6/17/2006 20:20 +Plains,,OTHER,PA,6/17/2006 20:20 +Carlsbad,,SPHERE,NM,6/17/2006 21:30 +Warrenville,,OTHER,IL,6/17/2006 21:45 +Mt. Pleasant,,LIGHT,MI,6/18/2006 0:00 +Butler,,LIGHT,PA,6/18/2006 1:00 +Valley Springs,,FLASH,CA,6/18/2006 1:10 +Delray Beach,,LIGHT,FL,6/18/2006 1:20 +Miami,,LIGHT,AZ,6/18/2006 8:30 +San Jose,,TRIANGLE,CA,6/18/2006 9:25 +Augusta,RED YELLOW GREEN,CIRCLE,GA,6/18/2006 11:00 +Pacifica,,CIGAR,CA,6/18/2006 12:30 +Colorado Springs,,TRIANGLE,CO,6/18/2006 13:50 +Minneapolis,,SPHERE,MN,6/18/2006 15:00 +Onset,,SPHERE,MA,6/18/2006 19:45 +Pie Town,,CONE,NM,6/18/2006 21:23 +Carl Junction,,OTHER,MO,6/18/2006 22:00 +Atlanta,,,GA,6/18/2006 22:30 +Paulsboro,,FLASH,NJ,6/18/2006 22:30 +New Philadelphia,,FIREBALL,OH,6/19/2006 0:30 +Zephyr Cove,,RECTANGLE,NV,6/19/2006 11:40 +Boise,,,ID,6/19/2006 12:00 +Spring Hill,,SPHERE,FL,6/19/2006 16:10 +Fullerton,,DISK,CA,6/19/2006 20:30 +Los Angeles,,OTHER,CA,6/19/2006 20:30 +Normal,GREEN,CIRCLE,IL,6/19/2006 22:00 +Sedona,,LIGHT,AZ,6/19/2006 22:40 +Coshocton,,OVAL,OH,6/20/2006 1:00 +New York City,,,NY,6/20/2006 10:45 +Texas,,OTHER,TX,6/20/2006 17:50 +Northfield,GREEN,SPHERE,NJ,6/20/2006 21:25 +Columbia,,FIREBALL,MD,6/20/2006 21:30 +Mana,,SPHERE,HI,6/20/2006 21:30 +Tucson,,VARIOUS,AZ,6/20/2006 21:30 +West Chester,,EGG,PA,6/20/2006 21:30 +Rehoboth Beach,GREEN,LIGHT,DE,6/20/2006 22:00 +Santa Fe Springs,RED,EGG,CA,6/20/2006 22:20 +Lafayette,,FIREBALL,IN,6/20/2006 22:30 +Myrtle Beach,,OVAL,SC,6/20/2006 22:30 +Eupora,,OTHER,MS,6/20/2006 23:30 +Troy,RED,OTHER,NY,6/21/2006 0:03 +Somers,,DIAMOND,CT,6/21/2006 13:34 +West Islip,,,NY,6/21/2006 18:50 +San Jose,,TRIANGLE,CA,6/21/2006 21:46 +Barnesville,RED,TRIANGLE,OH,6/22/2006 0:10 +Seatle,,FLASH,WA,6/22/2006 1:30 +Houston,,,TX,6/22/2006 17:00 +Sarasota,,OTHER,FL,6/22/2006 17:35 +Gaithersburg,,FIREBALL,MD,6/22/2006 21:00 +Lyons,BLUE,LIGHT,IL,6/22/2006 23:00 +Boise,,CIRCLE,ID,6/23/2006 1:00 +Clarksville,,SPHERE,TN,6/23/2006 2:31 +Phoenix,,OTHER,AZ,6/23/2006 11:00 +Denver,,DISK,CO,6/23/2006 11:57 +Swanzey,,CIRCLE,NH,6/23/2006 13:00 +Harris County,,,TX,6/23/2006 16:50 +Houston,,EGG,TX,6/23/2006 16:50 +Beaver Dam,,,WI,6/23/2006 19:00 +Rex,,OTHER,GA,6/23/2006 19:35 +Stockton,,SPHERE,KS,6/23/2006 22:00 +Neptune Beach,,CIRCLE,FL,6/23/2006 22:33 +Martinez,,LIGHT,GA,6/23/2006 23:30 +Dayton,,EGG,OH,6/24/2006 10:30 +Granite Falls,,SPHERE,WA,6/24/2006 12:00 +Columbia,,CYLINDER,MO,6/24/2006 19:30 +McAllen,,LIGHT,TX,6/24/2006 21:30 +Lancaster,GREEN,,PA,6/25/2006 1:42 +Allen Park,,OTHER,MI,6/25/2006 7:00 +Victorville,,EGG,CA,6/25/2006 7:00 +Newport News,,OTHER,VA,6/25/2006 14:00 +Greendale,,OVAL,WI,6/25/2006 18:00 +Paintsville,,CIGAR,KY,6/25/2006 21:30 +Portsmouth,,FIREBALL,VA,6/25/2006 22:45 +Marlborough,,LIGHT,MA,6/25/2006 23:43 +Fort Pierce,,SPHERE,FL,6/25/2006 23:54 +Mechanicsville,,DISK,VA,6/26/2006 3:00 +Kansas City,,SPHERE,MO,6/26/2006 3:48 +Randolph,,DISK,MA,6/26/2006 11:00 +Concordville,,DISK,ME,6/26/2006 18:35 +Tallahassee,,CYLINDER,FL,6/26/2006 20:30 +Surprise,,LIGHT,AZ,6/26/2006 21:18 +Davis,ORANGE YELLOW,,CA,6/26/2006 22:00 +Olympia,,LIGHT,WA,6/27/2006 0:00 +Leavenworth,,,WA,6/27/2006 0:15 +Portland,BLUE,DISK,OR,6/27/2006 2:00 +Austin,,,TX,6/27/2006 5:20 +Vista,,OVAL,CA,6/27/2006 15:00 +Los Angeles,,LIGHT,CA,6/27/2006 20:30 +Riverside,,,CA,6/27/2006 20:45 +Oklahoma City,,LIGHT,OK,6/27/2006 22:40 +Little Torch Key,,FORMATION,FL,6/27/2006 23:00 +Crescent City,,,CA,6/28/2006 1:56 +Panama City Beach,,DIAMOND,FL,6/28/2006 4:00 +,,OVAL,TN,6/28/2006 9:15 +Sault Ste. Marie,,RECTANGLE,MI,6/28/2006 11:15 +Sault Ste. Marie,,CYLINDER,MI,6/28/2006 11:30 +China Spring,,TRIANGLE,TX,6/28/2006 21:45 +Casper,,LIGHT,WY,6/28/2006 22:00 +Bullhead,,VARIOUS,AZ,6/28/2006 22:16 +Pasadena,,,CA,6/28/2006 23:00 +Forest Lake,,LIGHT,MN,6/28/2006 23:32 +Mountlake Terrace,,LIGHT,WA,6/29/2006 10:30 +Seattle,,DISK,WA,6/29/2006 18:00 +Sault Ste. Marie,,DISK,MI,6/29/2006 21:00 +Shoreview,,SPHERE,MN,6/29/2006 23:30 +Andover,RED,FIREBALL,MA,6/30/2006 1:00 +Flat Rock,,OVAL,MI,6/30/2006 1:00 +Galveston,,TRIANGLE,TX,6/30/2006 1:00 +San Diego,,RECTANGLE,TX,6/30/2006 1:00 +Mucie,,OTHER,IN,6/30/2006 1:30 +Camarillo,,CIRCLE,CA,6/30/2006 1:35 +Hollis,,CIRCLE,OK,6/30/2006 5:49 +Blackstone,,,MA,6/30/2006 7:30 +Denver,,OTHER,CO,6/30/2006 11:00 +Orlando,,SPHERE,FL,6/30/2006 13:00 +Woodland Hills,,DISK,CA,6/30/2006 13:00 +Ukiah,,TEARDROP,CA,6/30/2006 18:00 +Lakeland,,VARIOUS,FL,6/30/2006 19:45 +Clearwater,,LIGHT,FL,6/30/2006 22:00 +Raddle,,TRIANGLE,IL,6/30/2006 22:40 +Decatur,,LIGHT,MI,7/1/2006 0:00 +Titusville,,TRIANGLE,FL,7/1/2006 0:00 +McMinnville,,CIRCLE,OR,7/1/2006 1:00 +Tehachapie,,DISK,CA,7/1/2006 2:30 +Valley Springs,,DISK,CA,7/1/2006 5:40 +Buffalo,,DISK,MN,7/1/2006 13:35 +Norfolk,GREEN,SPHERE,MA,7/1/2006 17:32 +Leesville,,OTHER,SC,7/1/2006 20:00 +Newark,,DISK,NJ,7/1/2006 20:00 +Sublimity,RED,SPHERE,OR,7/1/2006 22:15 +Fairfield,,LIGHT,CA,7/1/2006 23:00 +Bremerton,,,WA,7/2/2006 0:00 +Waialua,,SPHERE,HI,7/2/2006 0:24 +"Chula Vista campground parking lot, Mt. Pinos",,LIGHT,CA,7/2/2006 1:31 +Virginia Beach,RED,TRIANGLE,VA,7/2/2006 2:30 +Ashland,,DISK,OH,7/2/2006 10:00 +New York City,,OTHER,NY,7/2/2006 18:30 +Northridge,,VARIOUS,CA,7/2/2006 20:40 +Eglin Air Force Base,,,FL,7/3/2006 1:00 +Bartlesville,,VARIOUS,OK,7/3/2006 3:00 +Gladstone,,OTHER,MI,7/3/2006 3:00 +Gary,,VARIOUS,IN,7/3/2006 21:00 +Champaign,RED,,IL,7/3/2006 23:35 +Oswego,,DISK,IL,7/4/2006 0:00 +Osteen,,SPHERE,FL,7/4/2006 2:37 +Paramount,,SPHERE,CA,7/4/2006 10:30 +Laughlin,,OTHER,NV,7/4/2006 14:00 +Portland,,CIGAR,OR,7/4/2006 18:00 +South Lake Tahoe,,TRIANGLE,CA,7/4/2006 18:15 +Columbia,,CYLINDER,MO,7/4/2006 19:30 +Columbia,,CYLINDER,MO,7/4/2006 19:30 +Columbia,,CYLINDER,MO,7/4/2006 20:30 +Chilhowie,,CIRCLE,VA,7/4/2006 21:00 +Tipton,,CIRCLE,PA,7/4/2006 21:00 +Rancho San Diego,,LIGHT,CA,7/4/2006 21:10 +Rolesville,,FORMATION,NC,7/4/2006 21:10 +El Cajon,RED,,CA,7/4/2006 21:15 +El Cajon,,,CA,7/4/2006 21:20 +Cedarburg,,LIGHT,WI,7/4/2006 21:30 +Middleburg,,OVAL,PA,7/4/2006 21:40 +Omaha,,LIGHT,NE,7/4/2006 22:00 +Orland Park,,TRIANGLE,IL,7/4/2006 22:00 +Tipton,,LIGHT,PA,7/4/2006 22:00 +Corona,,LIGHT,CA,7/4/2006 22:25 +Key Largo,,TRIANGLE,FL,7/4/2006 23:00 +McAlpin,,RECTANGLE,FL,7/4/2006 23:15 +Whitehall,,OTHER,NY,7/5/2006 0:00 +Sparta,,FLASH,NJ,7/5/2006 1:00 +Stockbridge,,TRIANGLE,WI,7/5/2006 1:00 +Pittsburg,,DISK,CA,7/5/2006 5:17 +Ann Arbor,,RECTANGLE,MI,7/5/2006 13:00 +Lewisburg,,TEARDROP,PA,7/5/2006 15:00 +Tucson,RED,LIGHT,AZ,7/5/2006 19:25 +Florence,,LIGHT,AL,7/5/2006 21:30 +Tucson,,LIGHT,AZ,7/5/2006 21:45 +Cherry Grove,,LIGHT,SC,7/5/2006 22:00 +Simi Valley,,CIRCLE,CA,7/6/2006 0:00 +Laguna Beach,,CIRCLE,CA,7/6/2006 0:30 +Warner Robbins,,OTHER,GA,7/6/2006 3:30 +Anza Borrego,,LIGHT,CA,7/6/2006 13:00 +Los Angeles,,CIGAR,CA,7/6/2006 13:27 +Mohnton,,RECTANGLE,PA,7/6/2006 20:30 +South Hollan,,LIGHT,IL,7/6/2006 21:22 +Beaver Dam,,,AZ,7/6/2006 22:00 +Lakeway,,,TX,7/6/2006 22:30 +no data,,,NM,7/7/2006 0:00 +Scottsdale,,LIGHT,AZ,7/7/2006 0:30 +Max,,OTHER,ND,7/7/2006 1:40 +Xenia,,CIGAR,OH,7/7/2006 2:35 +Xenia,,CIGAR,OH,7/7/2006 4:00 +Saint Charles,,VARIOUS,MT,7/7/2006 8:24 +Portland,,FLASH,OR,7/7/2006 11:00 +Raleigh,,SPHERE,NC,7/7/2006 20:15 +Anthony,,LIGHT,KS,7/7/2006 22:00 +Denton,,CIRCLE,TX,7/7/2006 22:30 +Martinez,,OTHER,CA,7/7/2006 23:55 +Palm Coast,,CIGAR,FL,7/8/2006 1:00 +Federal Way,BLUE,VARIOUS,WA,7/8/2006 1:45 +Corpus Christi,,FORMATION,TX,7/8/2006 4:45 +Concord,RED ORANGE,CIRCLE,GA,7/8/2006 8:45 +Mansfield,,OVAL,TX,7/8/2006 16:15 +Watts,,LIGHT,CA,7/8/2006 21:00 +Waverly,,SPHERE,OH,7/8/2006 21:00 +Yakima,,LIGHT,WA,7/8/2006 22:30 +Green Valley,,FORMATION,AZ,7/8/2006 23:00 +NJ Parkway,,LIGHT,NJ,7/8/2006 23:00 +San Jacinto,,,CA,7/9/2006 0:25 +I-5,,TRIANGLE,CA,7/9/2006 4:00 +Las Vegas,,DISK,NV,7/9/2006 5:00 +Addy,,,WA,7/9/2006 9:30 +San Dimas,,LIGHT,CA,7/9/2006 18:00 +Dublin,,,CA,7/9/2006 19:45 +Alexandria,,DISK,VA,7/9/2006 22:30 +Longmont,,CIRCLE,CO,7/10/2006 12:00 +Los Angels,,TRIANGLE,CA,7/10/2006 12:30 +Fullerton,ORANGE,SPHERE,CA,7/10/2006 13:00 +Portland,,CIRCLE,OR,7/10/2006 16:00 +Vierfontein,,,AL,7/10/2006 19:18 +Phoenix,,CIRCLE,AZ,7/10/2006 22:00 +Wilmington,,CIRCLE,NC,7/10/2006 22:20 +Oak Harbor,,LIGHT,WA,7/11/2006 2:40 +Gila Indian Reservation,,VARIOUS,AZ,7/11/2006 8:10 +Milwaukee,,SPHERE,WI,7/11/2006 15:00 +Ridgewood,,LIGHT,NJ,7/11/2006 19:11 +Tucson,,VARIOUS,AZ,7/11/2006 20:30 +Twinning,,OTHER,MI,7/11/2006 23:00 +San Pedro,BLUE,TRIANGLE,CA,7/11/2006 23:57 +Sierra Vista,,VARIOUS,AZ,7/12/2006 3:45 +Tucson,,,AZ,7/12/2006 4:00 +Silver City,,VARIOUS,NM,7/12/2006 5:00 +Silver City,,CIRCLE,NM,7/12/2006 5:15 +Phoenixville,RED YELLOW,,PA,7/12/2006 10:40 +Cary,,SPHERE,NC,7/12/2006 16:15 +Tampa,,CIRCLE,FL,7/12/2006 17:15 +Panama City Beach,RED BLUE,,FL,7/12/2006 21:00 +Ashland,,DISK,WI,7/12/2006 23:00 +Hooper,,DISK,CO,7/12/2006 23:00 +Hoquiam,RED,TRIANGLE,WA,7/12/2006 23:00 +Maroa,,VARIOUS,IL,7/12/2006 23:45 +Yakima,,FIREBALL,WA,7/13/2006 0:08 +Imperial Beach,ORANGE,VARIOUS,CA,7/13/2006 0:10 +Hancock,,CIGAR,WI,7/13/2006 1:00 +Redwood City,,CIRCLE,CA,7/13/2006 2:20 +Manchester,,LIGHT,MI,7/13/2006 5:30 +Avon,,LIGHT,CO,7/13/2006 11:00 +Los Angeles,,TRIANGLE,CA,7/13/2006 21:00 +Litchfield,ORANGE,TRIANGLE,SC,7/13/2006 22:30 +Pawleys Island,ORANGE,LIGHT,SC,7/13/2006 22:30 +Maywood,,,CA,7/13/2006 22:39 +Leesburg,,FORMATION,GA,7/13/2006 22:45 +Beaufort,,CIRCLE,SC,7/13/2006 23:00 +Clarklake,,LIGHT,MI,7/13/2006 23:45 +Los Angeles,,CIRCLE,CA,7/14/2006 0:00 +Lino Lakes,,OTHER,MN,7/14/2006 0:06 +Espanola,,,NM,7/14/2006 1:00 +Los Angeles,,CIRCLE,CA,7/14/2006 5:00 +Davison,RED,LIGHT,MI,7/14/2006 5:15 +Brookfield,,,WI,7/14/2006 8:00 +Martinton,,DISK,IL,7/14/2006 13:45 +East Elmhurst,,DISK,NY,7/14/2006 15:00 +Highlands,,LIGHT,NJ,7/14/2006 19:30 +Port Saint Lucie,RED,CIRCLE,FL,7/14/2006 20:47 +Panama City Beach,,FLASH,FL,7/14/2006 21:30 +Mahomet,,TRIANGLE,IL,7/14/2006 22:05 +Indio,,FIREBALL,CA,7/14/2006 22:15 +Harpers Ferry,,LIGHT,IA,7/14/2006 23:30 +Myrtle Beach-Cherry Grove,,FORMATION,SC,7/14/2006 23:30 +Columbia,,TRIANGLE,PA,7/15/2006 0:00 +Dell City,,,TX,7/15/2006 0:00 +Sonoma,,FIREBALL,CA,7/15/2006 0:03 +Shakopee,,,MN,7/15/2006 0:30 +Sturgeon Bay,GREEN,LIGHT,WI,7/15/2006 0:56 +Southwick,,DISK,MA,7/15/2006 1:00 +South Yarmouth,,SPHERE,MA,7/15/2006 1:15 +St. Louisville,RED,DISK,OH,7/15/2006 1:30 +Schaumburg,,CIRCLE,IL,7/15/2006 10:00 +Ottumwa,,LIGHT,IA,7/15/2006 11:00 +Yosemite National Park,YELLOW,LIGHT,CA,7/15/2006 11:30 +Sacramento,,CIGAR,CA,7/15/2006 11:35 +Lake Villa,RED,TRIANGLE,IL,7/15/2006 12:30 +Osmond,BLUE,OVAL,NE,7/15/2006 13:30 +New Mexico,,DISK,NM,7/15/2006 14:30 +Woodland Hills,,FORMATION,CA,7/15/2006 14:50 +Westwood,,LIGHT,NJ,7/15/2006 20:00 +Hailey,,FIREBALL,ID,7/15/2006 20:15 +Cocoa,,DISK,FL,7/15/2006 21:00 +Mundelein,,LIGHT,IL,7/15/2006 21:55 +Tinley Park,,OTHER,IL,7/15/2006 21:55 +Champaign,,LIGHT,IL,7/15/2006 22:00 +Salem,,TRIANGLE,WV,7/15/2006 22:00 +Wallace,,LIGHT,ID,7/15/2006 22:00 +Crivitz,,CIRCLE,WI,7/15/2006 22:05 +Dundee,,LIGHT,WI,7/15/2006 22:15 +Algonac,,LIGHT,MI,7/15/2006 23:00 +Sea Bright,,LIGHT,NJ,7/15/2006 23:15 +Whitefish,,CHEVRON,MT,7/15/2006 23:30 +Seattle,,RECTANGLE,WA,7/16/2006 5:20 +Chicago,,CIRCLE,IL,7/16/2006 13:30 +Chicago,,CIRCLE,IL,7/16/2006 14:00 +Hilton Head,,CIGAR,SC,7/16/2006 21:00 +La Jolla,,FORMATION,CA,7/16/2006 21:40 +New York City,,LIGHT,NY,7/16/2006 21:50 +Smithfield,GREEN,TRIANGLE,RI,7/16/2006 22:00 +Villa Park,,LIGHT,IL,7/16/2006 22:00 +Sim,,TRIANGLE,FL,7/16/2006 23:00 +Van Nuys,,TRIANGLE,CA,7/16/2006 23:30 +Anthony,,LIGHT,KS,7/16/2006 23:45 +Kingston,,LIGHT,NY,7/17/2006 0:00 +Gig Harbor,RED BLUE,TRIANGLE,WA,7/17/2006 3:00 +Pasadena,,LIGHT,MD,7/17/2006 5:30 +St. Louis,,RECTANGLE,MO,7/17/2006 7:15 +Canton,,LIGHT,GA,7/17/2006 9:40 +Doraville,RED,EGG,GA,7/17/2006 13:00 +Kent,,TEARDROP,WA,7/17/2006 20:45 +Las Vegas,,SPHERE,NV,7/17/2006 21:04 +Kettleman City,BLUE,TRIANGLE,CA,7/17/2006 21:30 +Newport,ORANGE,LIGHT,RI,7/17/2006 21:30 +Sevierville,,,TN,7/17/2006 21:30 +Leakey,,LIGHT,TX,7/17/2006 22:30 +Lebanon,,TRIANGLE,IL,7/17/2006 23:00 +Hamilton,,LIGHT,NJ,7/18/2006 0:00 +Navarre,,,FL,7/18/2006 0:15 +Navarre,,LIGHT,FL,7/18/2006 1:15 +Big Sandy,,LIGHT,WY,7/18/2006 2:30 +West Haven,,DISK,CT,7/18/2006 14:30 +East Meadow,RED,OTHER,NY,7/18/2006 21:00 +Lapeer,,DISK,MI,7/18/2006 21:30 +Dexterville,,TRIANGLE,WI,7/18/2006 22:08 +Plainfield,RED,OTHER,IL,7/18/2006 23:00 +Port Richey,,TRIANGLE,FL,7/18/2006 23:00 +Boise,,DISK,ID,7/18/2006 23:20 +Boise,,CIRCLE,ID,7/18/2006 23:25 +Coastline,,OTHER,TX,7/19/2006 1:00 +Murfreesboro,,CYLINDER,TN,7/19/2006 1:30 +Montgomery,,DISK,AL,7/19/2006 3:30 +Nampa,,OTHER,ID,7/19/2006 18:33 +Albuquerque,,CIGAR,NM,7/19/2006 19:20 +Sonora,,FIREBALL,CA,7/19/2006 20:30 +Scottsdale,RED,FORMATION,AZ,7/19/2006 21:00 +Tucson,,VARIOUS,AZ,7/19/2006 21:24 +El Monte,,FIREBALL,CA,7/19/2006 21:30 +Guilderland,,TRIANGLE,NY,7/19/2006 23:20 +Albuquerque,,DISK,NM,7/20/2006 0:00 +La Pine,,CIRCLE,OR,7/20/2006 0:00 +Zilwaukee,,TRIANGLE,MI,7/20/2006 0:00 +Yorba Linda,,SPHERE,CA,7/20/2006 1:00 +Bremerton,BLUE,CIRCLE,WA,7/20/2006 1:40 +Branson,,,MO,7/20/2006 2:00 +Girard,,OVAL,MI,7/20/2006 4:00 +Idaho Falls,,SPHERE,ID,7/20/2006 5:00 +Newport Beach,,CIRCLE,CA,7/20/2006 5:30 +Shoreview,,CIGAR,MN,7/20/2006 5:35 +Spokane,,OVAL,WA,7/20/2006 10:32 +Milwaukie,,LIGHT,OR,7/20/2006 19:50 +Portland,,DIAMOND,OR,7/20/2006 20:45 +Kent,RED,TRIANGLE,WA,7/20/2006 23:45 +Vancouver,RED,DISK,WA,7/21/2006 1:20 +Three Rocks,,TRIANGLE,CA,7/21/2006 2:00 +Florence,,SPHERE,AZ,7/21/2006 4:15 +Palm Desert,,,CA,7/21/2006 7:00 +Medford,,LIGHT,OR,7/21/2006 10:45 +Middletown,,OTHER,OH,7/21/2006 16:00 +Myrtle Beach,,OTHER,SC,7/21/2006 22:00 +Sonoma,,FLASH,CA,7/21/2006 22:00 +Lincoln,,OVAL,NE,7/21/2006 23:00 +Novato,,LIGHT,CA,7/21/2006 23:00 +Erie,,LIGHT,PA,7/21/2006 23:35 +Three Rivers,,OTHER,TX,7/22/2006 0:00 +Deltona,,CIRCLE,FL,7/22/2006 0:48 +Des Moines,,LIGHT,IA,7/22/2006 3:00 +Azusa,ORANGE,EGG,CA,7/22/2006 4:00 +Prescott Valley,GREEN,CIRCLE,AZ,7/22/2006 9:00 +St. Louis,,TRIANGLE,MO,7/22/2006 15:00 +Richmond,,CIRCLE,CA,7/22/2006 16:45 +Southport,,CIGAR,NC,7/22/2006 20:00 +Virginia Beach,,DISK,VA,7/22/2006 23:00 +Burton,,OTHER,TX,7/23/2006 3:00 +San Bruno,,,CA,7/23/2006 4:00 +Rome,,CIRCLE,NY,7/23/2006 19:36 +Danville,YELLOW,CIRCLE,CA,7/23/2006 21:30 +Kiel,,LIGHT,WI,7/23/2006 22:30 +Brookfield,,OTHER,CT,7/24/2006 0:00 +Jonesboro,,OTHER,LA,7/24/2006 4:00 +Gila Bend - 14 mile west of,,CIRCLE,AZ,7/24/2006 21:00 +Searcy,,OVAL,AR,7/24/2006 23:45 +Corbett,,LIGHT,OR,7/25/2006 3:45 +Urbandale,,LIGHT,IA,7/25/2006 4:31 +Fort Lauderdale,,LIGHT,FL,7/25/2006 5:45 +Bellevue,,OVAL,WA,7/25/2006 18:00 +Delray Beach,,SPHERE,FL,7/25/2006 19:30 +Billings,,LIGHT,MO,7/25/2006 22:50 +St. Louis,ORANGE,LIGHT,MO,7/25/2006 23:00 +Richmond,,EGG,VA,7/26/2006 0:30 +Fenton,YELLOW,DISK,MI,7/26/2006 0:40 +Colinga,,LIGHT,CA,7/26/2006 3:00 +San Fransisco,,DIAMOND,CA,7/26/2006 3:06 +Fresno,,LIGHT,CA,7/26/2006 4:30 +Moultrie,,CIRCLE,GA,7/26/2006 6:01 +Phoenix,,CIGAR,AZ,7/26/2006 12:30 +New Iberia,,,LA,7/26/2006 18:50 +Myrtle Beach,,LIGHT,SC,7/26/2006 19:00 +Quincy,,OVAL,MA,7/26/2006 22:00 +Seattle,,LIGHT,WA,7/26/2006 22:00 +De Pere,RED,OTHER,WI,7/26/2006 22:23 +McKinney,,,TX,7/26/2006 22:30 +Massey,,LIGHT,MD,7/26/2006 22:55 +Dublin,,TRIANGLE,GA,7/27/2006 1:00 +Methuen,,OVAL,MA,7/27/2006 2:00 +Gamaliel,BLUE,LIGHT,KY,7/27/2006 10:52 +Antelope Acres,,OTHER,CA,7/27/2006 21:48 +Roanoke Rapids,,DISK,NC,7/27/2006 21:50 +Loveland,,FORMATION,CO,7/28/2006 4:40 +Canyon Country,RED,CHEVRON,CA,7/28/2006 7:00 +Ephrata,RED,CHEVRON,WA,7/28/2006 11:30 +New York City,,CIRCLE,NY,7/28/2006 12:00 +Atlantic City,,OVAL,NJ,7/28/2006 17:00 +Mayer,,,AZ,7/28/2006 21:00 +Mayer,,LIGHT,AZ,7/28/2006 21:00 +Richmond,BLUE,FLASH,CA,7/28/2006 22:30 +Nashville,RED,LIGHT,TN,7/28/2006 23:00 +Topeka,,LIGHT,KS,7/29/2006 1:28 +Sonoma,,CIRCLE,CA,7/29/2006 3:00 +Sonoma,ORANGE,CIRCLE,CA,7/29/2006 3:00 +Sonoma,ORANGE,FIREBALL,CA,7/29/2006 3:00 +Hudson,,,FL,7/29/2006 4:30 +Fife,,DISK,WA,7/29/2006 7:07 +Clinton,,OTHER,MO,7/29/2006 13:00 +Westminster,,CIGAR,CO,7/29/2006 13:35 +Portland,,SPHERE,OR,7/29/2006 14:30 +Wichita,,OVAL,KS,7/29/2006 18:00 +Exeter,,VARIOUS,NH,7/29/2006 20:00 +Manchester,,LIGHT,VT,7/29/2006 20:20 +Hillsboro,,LIGHT,TX,7/29/2006 22:00 +Myrtle Beach,,FLASH,SC,7/29/2006 22:00 +Salem-Portland,YELLOW,OVAL,OR,7/29/2006 22:00 +Dolittle,,LIGHT,MO,7/29/2006 23:00 +Yakima,,FIREBALL,WA,7/29/2006 23:00 +Cedar Springs,GREEN,FIREBALL,MI,7/30/2006 0:00 +Sanford,,LIGHT,FL,7/30/2006 0:00 +Afton,,SPHERE,OK,7/30/2006 1:45 +Indialantic,ORANGE,FIREBALL,FL,7/30/2006 2:00 +Hyannis,ORANGE,OVAL,MA,7/30/2006 3:30 +Marysville,,TRIANGLE,CA,7/30/2006 4:01 +Midlothian,,FORMATION,TX,7/30/2006 4:11 +Honolulu,,OTHER,HI,7/30/2006 14:12 +West Gardiner,,LIGHT,ME,7/30/2006 19:30 +Port Allen,,TRIANGLE,LA,7/30/2006 20:55 +Henderson,,LIGHT,KY,7/30/2006 22:00 +Littig,,TRIANGLE,TX,7/30/2006 23:00 +Littig,,TRIANGLE,TX,7/30/2006 23:00 +Killeen,,,TX,7/30/2006 23:42 +New York City,,FORMATION,NY,7/31/2006 1:00 +San Antonio,,OTHER,TX,7/31/2006 2:00 +Valley City,GREEN,LIGHT,OH,7/31/2006 10:20 +SOHO satellite photo,,SPHERE,IN,7/31/2006 15:18 +Cave Creek,,RECTANGLE,AZ,7/31/2006 21:00 +Carmel,,OVAL,IN,7/31/2006 21:14 +Seattle,,FIREBALL,WA,7/31/2006 21:30 +High Point,,CIRCLE,NC,7/31/2006 23:00 +Idaho Falls,,CIGAR,ID,8/1/2006 1:00 +Phoenix,,TRIANGLE,AZ,8/1/2006 2:45 +Fort Pierce,,DIAMOND,FL,8/1/2006 3:00 +International Falls,,LIGHT,MN,8/1/2006 3:00 +Bellevue,,VARIOUS,NE,8/1/2006 10:00 +Illinois,BLUE,CIGAR,IL,8/1/2006 13:30 +Parkside,,,PA,8/1/2006 14:30 +Bethpage,,SPHERE,NY,8/1/2006 20:00 +Circleville,,FORMATION,OH,8/1/2006 21:00 +Laguna Hills,,,CA,8/1/2006 21:00 +New Holland,,OTHER,OH,8/1/2006 21:30 +Arlington,,TRIANGLE,VA,8/1/2006 22:00 +Dallas,,FIREBALL,TX,8/1/2006 22:00 +Salem,,LIGHT,OR,8/1/2006 22:00 +Lodi,,TRIANGLE,CA,8/1/2006 22:30 +Randolph,,CIRCLE,MN,8/1/2006 22:50 +Austin,,,TX,8/1/2006 23:02 +Fort Worth,,LIGHT,TX,8/1/2006 23:30 +East Harwich,ORANGE,FORMATION,MA,8/2/2006 0:00 +Tyler,,,TX,8/2/2006 0:00 +Lobelville,,LIGHT,TN,8/2/2006 4:00 +Klamath Falls,,FLASH,OR,8/2/2006 11:00 +North Charleston,,OTHER,SC,8/2/2006 19:45 +Middleton,,CHEVRON,WI,8/2/2006 20:45 +Lafayette,,,IN,8/2/2006 21:20 +Yosemite Valley,,LIGHT,CA,8/2/2006 22:35 +Miami,,LIGHT,FL,8/2/2006 23:50 +George,,LIGHT,WA,8/3/2006 0:00 +George,,LIGHT,WA,8/3/2006 0:00 +South Pasadena,,FIREBALL,CA,8/3/2006 3:45 +Eldorado,,,IL,8/3/2006 10:00 +Franklin,,LIGHT,TN,8/3/2006 10:00 +Norwood,,LIGHT,OH,8/3/2006 17:00 +Carbondale,BLUE,TEARDROP,PA,8/3/2006 17:15 +Brooklyn Center,,DISK,MN,8/4/2006 0:00 +New Douglas,BLUE,SPHERE,IL,8/4/2006 0:00 +Oakdale,,CIGAR,MN,8/4/2006 0:00 +Brooklyn Center,,DISK,MN,8/4/2006 1:17 +Burkes Garden,,TRIANGLE,VA,8/4/2006 3:00 +Fresno,,TRIANGLE,CA,8/4/2006 3:15 +Avondale,,DIAMOND,AZ,8/4/2006 9:45 +San Francisco,,EGG,CA,8/4/2006 17:00 +Oklahoma City,,CIGAR,OK,8/4/2006 19:12 +Sissonville,,FORMATION,WV,8/4/2006 21:45 +Palm Springs,,CYLINDER,CA,8/4/2006 22:00 +Westfield,,LIGHT,IN,8/4/2006 22:14 +Ferris,,LIGHT,TX,8/4/2006 23:00 +Hazard,,,KY,8/4/2006 23:30 +O'Fallon,,DISK,MO,8/4/2006 23:30 +Lincolnville,,LIGHT,ME,8/5/2006 1:00 +Corpus Christi,,DISK,TX,8/5/2006 2:51 +Warren,,FIREBALL,MI,8/5/2006 4:45 +Snohomish,,CIRCLE,WA,8/5/2006 5:00 +Jacksonville,,,FL,8/5/2006 5:30 +Louisville,BLUE,FIREBALL,KY,8/5/2006 14:00 +Waterloo,,CIGAR,IA,8/5/2006 17:40 +Waterloo,,CIGAR,IA,8/5/2006 17:47 +Reseda,,RECTANGLE,CA,8/5/2006 20:15 +Altoona,,LIGHT,PA,8/5/2006 20:40 +Delray Beach,,DISK,FL,8/5/2006 20:43 +Longview,,TRIANGLE,TX,8/5/2006 22:00 +Longview,,TRIANGLE,TX,8/5/2006 22:00 +Chesterfeild,,LIGHT,VA,8/6/2006 0:23 +Millington,,CIRCLE,TN,8/6/2006 0:30 +Auburn,YELLOW,CIRCLE,CA,8/6/2006 2:00 +Trout Lake,,FORMATION,WA,8/6/2006 2:00 +Canton,,EGG,MI,8/6/2006 4:55 +Tapiola,,RECTANGLE,MI,8/6/2006 10:30 +Missoula,,DISK,MT,8/6/2006 16:00 +Scottsdale,,LIGHT,AZ,8/6/2006 17:00 +Binghamton,,OTHER,NY,8/6/2006 20:00 +Phoenix,,FORMATION,AZ,8/6/2006 20:00 +Yuma,,LIGHT,AZ,8/6/2006 20:00 +Lake Forest,,DISK,CA,8/6/2006 21:00 +Woodbury,GREEN,LIGHT,MN,8/6/2006 21:30 +Yardville,,CIRCLE,NJ,8/6/2006 22:30 +Foley,,,AL,8/6/2006 23:00 +Philadelphia,,OTHER,PA,8/7/2006 1:00 +Alto,,,NM,8/7/2006 2:00 +Wynne,,LIGHT,AR,8/7/2006 5:10 +Downingtown,,LIGHT,PA,8/7/2006 6:30 +Pineville,,VARIOUS,KY,8/7/2006 23:00 +Garden Valley,,FORMATION,CA,8/8/2006 3:00 +Wilkes-Barre,,DIAMOND,PA,8/8/2006 4:30 +Oviedo,,LIGHT,FL,8/8/2006 5:20 +Boaz,,OVAL,AL,8/8/2006 8:30 +Lancaster,YELLOW,OVAL,PA,8/8/2006 13:00 +San Antonio,,DISK,TX,8/8/2006 13:00 +Fremont,,DISK,CA,8/8/2006 14:09 +Lewisville,ORANGE BLUE,SPHERE,TX,8/8/2006 20:00 +Cross Roads,,,TX,8/8/2006 23:25 +Brownsville,,TRIANGLE,TX,8/9/2006 3:00 +Bloomington,,CIRCLE,IN,8/9/2006 4:30 +Chatsworth,,TRIANGLE,CA,8/9/2006 5:00 +Jacksonville,,LIGHT,FL,8/9/2006 9:45 +Corpus Christi,,TRIANGLE,TX,8/9/2006 12:00 +Detroit,,OVAL,TX,8/9/2006 13:00 +Wilmington,,SPHERE,DE,8/9/2006 15:00 +San Diego,,LIGHT,CA,8/9/2006 20:51 +Harpersfield,ORANGE,LIGHT,NY,8/9/2006 22:00 +Yakima,,LIGHT,WA,8/9/2006 22:00 +Lakewood,,DISK,CO,8/9/2006 23:00 +Keller,,CYLINDER,TX,8/10/2006 0:30 +Dumont,,EGG,NJ,8/10/2006 1:00 +Stevensburg,,TRIANGLE,MT,8/10/2006 1:00 +Florence,,RECTANGLE,KY,8/10/2006 8:00 +Sacramento,,,CA,8/10/2006 9:00 +Fort Wayne,,,IN,8/10/2006 15:00 +Orlando,,SPHERE,FL,8/10/2006 17:00 +Ocean City,,CIRCLE,MD,8/10/2006 21:00 +Indiana,BLUE,TRIANGLE,PA,8/10/2006 21:25 +Eureka,,LIGHT,MT,8/10/2006 22:00 +Hamden,RED,RECTANGLE,CT,8/11/2006 3:00 +Sacramento,,,CA,8/11/2006 9:00 +Ashford Hollow,,OVAL,NY,8/11/2006 17:30 +Indiana,,,PA,8/11/2006 21:10 +Bridgeville,BLUE,TRIANGLE,CA,8/11/2006 21:12 +Swarthmore,,LIGHT,PA,8/11/2006 21:30 +Chicago,,FIREBALL,IL,8/11/2006 22:05 +Winter Springs to Sanford,,,FL,8/11/2006 22:50 +Murray,,VARIOUS,KY,8/12/2006 0:30 +Holland,,LIGHT,MI,8/12/2006 3:00 +Chicago,,FLASH,IL,8/12/2006 4:15 +Green Valley,GREEN,FORMATION,AZ,8/12/2006 5:00 +Burns Junction,,OTHER,OR,8/12/2006 6:15 +Pennsauken,,OTHER,NJ,8/12/2006 11:00 +Kirkland,,,WA,8/12/2006 13:00 +Boulder,,TRIANGLE,CO,8/12/2006 17:00 +Sacramento,,CIGAR,CA,8/12/2006 19:00 +Oak Harbor,,,WA,8/12/2006 21:50 +Fort Dodge,,OVAL,IA,8/12/2006 22:00 +Jackson,,LIGHT,NH,8/12/2006 22:00 +Fenton,RED YELLOW BLUE,TRIANGLE,MI,8/12/2006 23:00 +Nelsonville,YELLOW,LIGHT,OH,8/13/2006 0:30 +Lincoln City,,FORMATION,OR,8/13/2006 0:45 +Springer,,OVAL,NM,8/13/2006 1:15 +Killeen,,,TX,8/13/2006 2:00 +Everett,,LIGHT,WA,8/13/2006 3:00 +West Richland,,CIRCLE,WA,8/13/2006 5:00 +Newark,,DIAMOND,NJ,8/13/2006 5:30 +Clinton,,CIRCLE,MO,8/13/2006 5:35 +Socastee,,SPHERE,SC,8/13/2006 10:30 +Petersburgh,,,NY,8/13/2006 11:00 +Royal Oak,,CONE,MI,8/13/2006 11:30 +Huntsville,BLUE,OVAL,AL,8/13/2006 21:00 +Seattle,,CIRCLE,WA,8/13/2006 21:18 +Riverton,,FORMATION,WY,8/13/2006 22:20 +Menifee,,LIGHT,CA,8/13/2006 23:00 +Redding,,EGG,CA,8/13/2006 23:00 +Atlanta,,LIGHT,GA,8/13/2006 23:30 +Bainbridge Island,,,WA,8/14/2006 0:00 +Texas City,,DISK,TX,8/14/2006 0:00 +Frankfort,,DISK,IN,8/14/2006 1:00 +Fitzgerald,,LIGHT,GA,8/14/2006 11:15 +Phoenix,,CIRCLE,AZ,8/14/2006 15:45 +New York City,,RECTANGLE,NY,8/14/2006 19:40 +Walden,ORANGE,CIRCLE,NY,8/14/2006 20:52 +Roanoke Rapids,,DISK,NC,8/14/2006 21:00 +Wenatchee,,FIREBALL,WA,8/14/2006 22:15 +Bellevue,,,WA,8/15/2006 0:00 +Granada Hills,,DISK,CA,8/15/2006 0:00 +Tucson,,,AZ,8/15/2006 0:00 +Russellville,RED,,AR,8/15/2006 0:30 +Milwaukie,,CIRCLE,OR,8/15/2006 4:15 +Honesdale,BLUE,,PA,8/15/2006 10:30 +Lapeer,,LIGHT,MI,8/15/2006 11:30 +Kennewick,,SPHERE,WA,8/15/2006 13:30 +Trout Lake,,FLASH,WA,8/15/2006 14:00 +Chicago,,OTHER,IL,8/15/2006 15:00 +Malcolm,,SPHERE,NE,8/15/2006 16:00 +Ann Arbor,,TRIANGLE,MI,8/15/2006 16:30 +Tensed,,OTHER,ID,8/15/2006 17:00 +Chicago,,SPHERE,IL,8/15/2006 17:20 +Escondido,,LIGHT,CA,8/15/2006 17:45 +Seattle,,,WA,8/15/2006 19:15 +Red Bank,,OTHER,NJ,8/15/2006 19:30 +Gladeville,,CIRCLE,TN,8/15/2006 19:50 +Cleveland,RED,DIAMOND,OH,8/15/2006 20:00 +Lakewood,,FIREBALL,CO,8/15/2006 20:30 +Macedonia,,FLASH,OH,8/15/2006 20:37 +Edgar Springs,,OTHER,MO,8/15/2006 21:00 +Mountaintop,,OTHER,PA,8/15/2006 21:00 +Orchard Park,,OTHER,NY,8/15/2006 22:00 +Wrightsville Beach,,FIREBALL,NC,8/15/2006 22:00 +Miami,,TRIANGLE,FL,8/15/2006 23:00 +Strongsville,GREEN BLUE,CIRCLE,OH,8/16/2006 0:14 +San Jose,,VARIOUS,CA,8/16/2006 1:00 +Cypress,,,TX,8/16/2006 2:00 +Bloomington,,LIGHT,IN,8/16/2006 3:45 +Austin,,FIREBALL,TX,8/16/2006 10:30 +Lapeer,GREEN,TRIANGLE,MI,8/16/2006 12:45 +Campbell,,CHEVRON,CA,8/16/2006 19:00 +Forestdale,,CIRCLE,MA,8/16/2006 19:30 +Spring Hill,,LIGHT,TN,8/16/2006 20:49 +South Portsmouth,,LIGHT,KY,8/16/2006 21:00 +Roxbury,,,NH,8/16/2006 21:25 +Yorba Linda,,DISK,CA,8/16/2006 23:00 +Chicopee,RED,,MA,8/16/2006 23:15 +El Paso,,LIGHT,IL,8/17/2006 0:15 +Georgtown,,LIGHT,TX,8/17/2006 4:00 +Lake Havasu,,SPHERE,AZ,8/17/2006 4:13 +Eastpointe,,DISK,MI,8/17/2006 10:30 +East Chicago,,VARIOUS,IN,8/17/2006 20:45 +El Cajon,,LIGHT,CA,8/17/2006 21:06 +Murphysboro,,CYLINDER,IL,8/17/2006 21:38 +Garfield Heights,,DIAMOND,OH,8/17/2006 21:50 +Naples,RED,SPHERE,FL,8/17/2006 22:00 +Midvale,,OTHER,UT,8/17/2006 22:05 +Florence,,LIGHT,OR,8/17/2006 22:30 +Coloma,,FIREBALL,CA,8/17/2006 23:00 +Cedar Lake,,OTHER,IN,8/17/2006 23:08 +West Chester,,,PA,8/18/2006 1:00 +South Elgin,,VARIOUS,IL,8/18/2006 3:00 +Trout Lake,,,WA,8/18/2006 12:00 +North Bergen,,DISK,NJ,8/18/2006 15:30 +North Bergen,,DISK,NJ,8/18/2006 15:30 +Simi Valley,,RECTANGLE,CA,8/18/2006 20:15 +Scottsbluff,,LIGHT,NE,8/18/2006 21:10 +Seattle,,OTHER,WA,8/18/2006 21:27 +Gold Bar,,LIGHT,WA,8/18/2006 21:30 +Trout Lake,,TRIANGLE,WA,8/18/2006 21:30 +White Plains,,FLASH,NY,8/18/2006 23:00 +Woburn,,CYLINDER,MA,8/19/2006 0:15 +Fargo,,LIGHT,ND,8/19/2006 5:11 +Fargo,,FLASH,ND,8/19/2006 5:13 +Trout Lake,,CYLINDER,WA,8/19/2006 12:00 +Point Roberts,,CIRCLE,WA,8/19/2006 16:00 +Los Angeles,,CIRCLE,CA,8/19/2006 17:00 +Kibler,,LIGHT,AR,8/19/2006 21:00 +Baker City,,TRIANGLE,OR,8/19/2006 21:26 +Tacoma,ORANGE,OVAL,WA,8/19/2006 21:30 +Desolation Wilderness,GREEN,TRIANGLE,CA,8/19/2006 22:00 +Fort Collins,,CIRCLE,CO,8/19/2006 22:00 +Shelby,,CIRCLE,MI,8/19/2006 22:00 +Yakima,RED,TRIANGLE,WA,8/19/2006 22:00 +Redlands,,CIRCLE,CA,8/19/2006 22:15 +Eldon,,LIGHT,MO,8/19/2006 22:35 +Bishop,,LIGHT,CA,8/19/2006 23:00 +Buckhannon,,CIRCLE,WV,8/19/2006 23:00 +Great Scott,,FLASH,MN,8/19/2006 23:00 +New York City,,CIRCLE,NY,8/20/2006 0:00 +Bend,,OVAL,OR,8/20/2006 2:00 +Hampton,,TRIANGLE,MN,8/20/2006 4:00 +Philadelphia,,RECTANGLE,PA,8/20/2006 12:00 +Redding,,CIRCLE,CA,8/20/2006 13:30 +Tijuana,,CIGAR,CA,8/20/2006 16:34 +Arnold,,FORMATION,MD,8/20/2006 16:45 +San Diego,,OVAL,CA,8/20/2006 21:00 +Bridgeport,,CIRCLE,CA,8/20/2006 21:30 +Twin Lakes,,CIRCLE,CA,8/20/2006 21:30 +Onion Creek,,FLASH,WA,8/20/2006 21:45 +Heber City,,DIAMOND,UT,8/20/2006 22:00 +Omaha,RED,,NE,8/20/2006 22:12 +Hamlin,,,NY,8/20/2006 23:00 +New York City,,FLASH,NY,8/21/2006 1:45 +McKinney,,CIRCLE,TX,8/21/2006 11:35 +Factoryville,,DISK,PA,8/21/2006 13:35 +Dearborn,,CIGAR,MI,8/21/2006 14:00 +Mancheater Center,,OTHER,VT,8/21/2006 20:00 +Lancaster,,SPHERE,CA,8/21/2006 21:30 +Charlotte,,LIGHT,MI,8/21/2006 22:00 +Lake Forest,RED,OVAL,CA,8/21/2006 22:00 +Tomahawk,,LIGHT,WI,8/21/2006 22:00 +Wyalusing,,TRIANGLE,PA,8/21/2006 22:45 +Huntington,,LIGHT,WV,8/22/2006 0:01 +Greensboro,,DIAMOND,NC,8/22/2006 4:00 +Clark,,CIRCLE,NJ,8/22/2006 6:20 +Naples,RED,LIGHT,FL,8/22/2006 6:45 +Connellsville,,FORMATION,PA,8/22/2006 19:30 +Toney,,TRIANGLE,AL,8/22/2006 20:00 +Freehold,,LIGHT,NJ,8/22/2006 20:05 +Ponte Vedra Beach,RED BLUE,OTHER,FL,8/22/2006 21:30 +North Phoenix,,DISK,AZ,8/22/2006 22:00 +Elgin,RED BLUE,LIGHT,IL,8/22/2006 22:30 +Henderson County,,DIAMOND,TX,8/22/2006 22:45 +Evart,,LIGHT,MI,8/22/2006 23:30 +Edgewood,RED,OVAL,MD,8/23/2006 1:00 +Chatsworth,YELLOW,TRIANGLE,CA,8/23/2006 5:00 +Hollywood,,OVAL,CA,8/23/2006 15:00 +Fairfield,,CONE,CA,8/23/2006 21:00 +Sterling Heights,,CIRCLE,MI,8/23/2006 21:00 +Clark,,LIGHT,WY,8/23/2006 21:55 +Marlboro,,LIGHT,NY,8/23/2006 22:30 +Wallingford,,TRIANGLE,CT,8/23/2006 23:00 +Louisville,,SPHERE,KY,8/24/2006 2:00 +Delray Beach Florida,RED BLUE,LIGHT,FL,8/24/2006 4:30 +Chatsworth,,SPHERE,CA,8/24/2006 5:00 +Pahrump,,CIGAR,NV,8/24/2006 10:30 +D'lberville,,LIGHT,MS,8/24/2006 14:27 +Lawton,,SPHERE,OK,8/24/2006 15:25 +Moline,,CYLINDER,IL,8/24/2006 16:00 +Medford,,FLASH,OR,8/24/2006 20:45 +Farmington,,FLASH,MN,8/24/2006 22:00 +Farmington,GREEN,FLASH,MN,8/24/2006 22:00 +Harrodsburg,,,KY,8/24/2006 22:00 +Salt Lake City,YELLOW BLUE,CIRCLE,UT,8/25/2006 0:47 +Bel Air,,,MD,8/25/2006 4:55 +Richland,,LIGHT,WA,8/25/2006 12:00 +Maui,,DISK,HI,8/25/2006 13:00 +San Jose,,OTHER,CA,8/25/2006 18:30 +Gray Summit,,TRIANGLE,MO,8/25/2006 20:47 +Croswell,,OTHER,MI,8/25/2006 21:45 +Wilmington,,CIRCLE,NC,8/25/2006 22:00 +Willis,,,TX,8/25/2006 23:30 +Beaverton,,OTHER,OR,8/26/2006 0:54 +Lake,,OVAL,MI,8/26/2006 1:00 +Apple Valley,,,CA,8/26/2006 2:00 +St. Cloud,,SPHERE,FL,8/26/2006 9:00 +Rodman,,LIGHT,NY,8/26/2006 21:00 +Burbank,GREEN,SPHERE,CA,8/26/2006 21:15 +Chandler,,TRIANGLE,AZ,8/26/2006 21:22 +Fall City,,LIGHT,WA,8/26/2006 21:30 +Redwood City,,VARIOUS,CA,8/26/2006 22:00 +Los Angeles,RED,FIREBALL,CA,8/26/2006 22:30 +Winterset,,DISK,IA,8/27/2006 0:30 +Evart,,,MI,8/27/2006 1:00 +Baldwin,,CIRCLE,FL,8/27/2006 4:25 +South Gate,,OTHER,CA,8/27/2006 6:00 +Miami,,OTHER,FL,8/27/2006 20:10 +Madison,,FORMATION,AL,8/27/2006 21:00 +Las Vegas,,LIGHT,NV,8/27/2006 21:30 +Seatle,RED,CIRCLE,WA,8/27/2006 21:45 +Redwood City,,CIRCLE,CA,8/27/2006 22:00 +Canton,,SPHERE,GA,8/27/2006 23:00 +Federal Way,GREEN,,WA,8/27/2006 23:00 +Grants Pass,,,OR,8/27/2006 23:00 +Warren,,FLASH,MI,8/27/2006 23:55 +Grass Valley,,DIAMOND,CA,8/28/2006 0:30 +Suffolk,,FLASH,VA,8/28/2006 5:55 +Mt. St. Helens,,,WA,8/28/2006 12:12 +Bozeman,,OTHER,MT,8/29/2006 0:30 +Colorado Springs,,OVAL,CO,8/29/2006 6:45 +Portland,,EGG,OR,8/29/2006 13:25 +Lyndon Station,,SPHERE,WI,8/29/2006 14:00 +San Antonio,,VARIOUS,TX,8/29/2006 20:00 +Lincoln,ORANGE,LIGHT,NE,8/29/2006 20:35 +Alturas,,LIGHT,CA,8/29/2006 22:00 +Myrtle Beach,,LIGHT,SC,8/29/2006 22:00 +Havana,,OVAL,GA,8/29/2006 22:20 +Chicago,,OVAL,IL,8/30/2006 11:57 +Wichita,,DIAMOND,KS,8/30/2006 21:10 +Edina,,LIGHT,MN,8/31/2006 19:55 +Onion Creek,,LIGHT,WA,8/31/2006 20:15 +Port Barre,,CIRCLE,LA,8/31/2006 20:40 +Chicago,,,IL,8/31/2006 21:04 +Mount Shasta,,TRIANGLE,CA,8/31/2006 21:30 +Kirkland,,RECTANGLE,WA,9/1/2006 1:00 +Leesburg,,LIGHT,GA,9/1/2006 1:00 +Denton,,DISK,TX,9/1/2006 3:30 +Satellite Beach,,TRIANGLE,FL,9/1/2006 4:55 +Kingston,,,PA,9/1/2006 8:20 +Hanover Park,,VARIOUS,IL,9/1/2006 16:00 +New York City,,SPHERE,NY,9/1/2006 19:00 +Yelm,,LIGHT,WA,9/1/2006 20:55 +Snohomish,,OTHER,WA,9/1/2006 21:00 +Winnie,,FIREBALL,TX,9/1/2006 22:00 +Desolation Wilderness,,,CA,9/1/2006 23:00 +Gleason,,SPHERE,WI,9/1/2006 23:00 +Louisa,,FIREBALL,KY,9/1/2006 23:35 +Rock Hill,,SPHERE,SD,9/1/2006 23:45 +Peotone,,OVAL,IL,9/1/2006 23:54 +Orchard Park,,LIGHT,NY,9/2/2006 1:00 +Shelby Township,,OTHER,MI,9/2/2006 3:00 +Craig,,,CO,9/2/2006 3:02 +Craig,,LIGHT,CO,9/2/2006 3:02 +Houston,,CIRCLE,TX,9/2/2006 11:20 +Falcon,,VARIOUS,CO,9/2/2006 14:00 +Huffman,,CIGAR,TX,9/2/2006 14:30 +Santa Monica,,SPHERE,CA,9/2/2006 15:00 +Gulf Breeze,GREEN,LIGHT,FL,9/2/2006 19:45 +San Leandro,,DISK,CA,9/2/2006 20:00 +Traverse City,,,MI,9/2/2006 20:00 +Orange,ORANGE,LIGHT,CA,9/2/2006 20:26 +Gerlach,,LIGHT,NV,9/2/2006 22:00 +San Antonio,,FIREBALL,TX,9/2/2006 23:00 +Traverse City,,CIRCLE,MI,9/2/2006 23:00 +Albany,,CROSS,NY,9/2/2006 23:30 +Luling,,SPHERE,TX,9/2/2006 23:45 +Shelby Township,,FORMATION,MI,9/2/2006 23:45 +North Hollywood,GREEN,FIREBALL,CA,9/3/2006 1:30 +Mars Hill,,OTHER,NC,9/3/2006 8:04 +Luray,,SPHERE,VA,9/3/2006 10:22 +Highland Park,,CYLINDER,IL,9/3/2006 18:30 +Frankfort,,LIGHT,MI,9/3/2006 21:30 +Mount Olive,RED,SPHERE,NC,9/3/2006 21:30 +Elizabethtown,,DISK,KY,9/3/2006 22:00 +West Bend,,SPHERE,WI,9/3/2006 23:00 +Chappaqua,,,NY,9/4/2006 3:00 +Reading,ORANGE,LIGHT,PA,9/4/2006 4:50 +San Diego,,CYLINDER,CA,9/4/2006 12:20 +Saint Cloud,,TEARDROP,MN,9/4/2006 19:55 +Omaha,,LIGHT,NE,9/4/2006 21:30 +Silver Spring,ORANGE,LIGHT,MD,9/4/2006 23:58 +Firestone,,FLASH,CO,9/5/2006 5:25 +Livingston,,LIGHT,TN,9/5/2006 17:00 +Mar Vista,RED,LIGHT,CA,9/5/2006 19:35 +Clarksville,,TRIANGLE,KY,9/5/2006 21:00 +El Cajon,,FORMATION,CA,9/5/2006 21:00 +Fairborn,,TRIANGLE,OH,9/5/2006 21:00 +Gila Bend,,FIREBALL,AZ,9/5/2006 21:00 +Ontario,ORANGE,LIGHT,CA,9/5/2006 21:30 +San Jose,,LIGHT,CA,9/5/2006 21:58 +Reggae on the River,,LIGHT,CA,9/6/2006 3:30 +Oakley,RED,OTHER,CA,9/6/2006 12:30 +West Dundee,GREEN,FIREBALL,IL,9/6/2006 16:00 +Bradenton,YELLOW,SPHERE,FL,9/6/2006 18:15 +Salem,,TRIANGLE,IL,9/6/2006 20:04 +Beaverton,,,OR,9/6/2006 21:00 +Holton,RED GREEN,,KS,9/6/2006 22:40 +Greensburg,YELLOW GREEN BLUE,OVAL,IN,9/6/2006 23:19 +Pawtucket,,SPHERE,RI,9/7/2006 1:30 +Lewis Center,,OVAL,OH,9/7/2006 8:50 +Hudsonville,,DIAMOND,MI,9/7/2006 12:00 +Harbor City,,CYLINDER,CA,9/7/2006 18:20 +Levittown,,CYLINDER,NY,9/7/2006 20:00 +Vancouver,,LIGHT,WA,9/7/2006 20:00 +Maui,,LIGHT,HI,9/7/2006 20:45 +Rio Rico,ORANGE,FIREBALL,AZ,9/7/2006 20:45 +Lake Havasu City,,LIGHT,AZ,9/7/2006 21:00 +Orchard Park,,OTHER,NY,9/8/2006 1:00 +Hampton,,LIGHT,NH,9/8/2006 19:00 +Spokane,,VARIOUS,WA,9/8/2006 19:15 +Allentown,,LIGHT,PA,9/8/2006 19:50 +Berwick,,OVAL,ME,9/8/2006 20:00 +Godfrey,,LIGHT,IL,9/8/2006 20:20 +Sturgis,,LIGHT,MI,9/9/2006 2:00 +Cape Canaveral,,,FL,9/9/2006 8:00 +Cupertino,,CYLINDER,CA,9/9/2006 18:30 +Farmington,,FIREBALL,MN,9/9/2006 22:00 +Good Spring,GREEN,TEARDROP,PA,9/9/2006 23:00 +Oklahoma City,,,OK,9/10/2006 6:10 +Berwick,,,ME,9/10/2006 20:00 +Claremont,,OVAL,CA,9/10/2006 21:00 +Lake Elsinore,,SPHERE,CA,9/10/2006 21:00 +Surf City,,OTHER,NC,9/10/2006 22:00 +Livermore,GREEN,FIREBALL,CA,9/10/2006 23:57 +Lake Elsinore,,FIREBALL,CA,9/11/2006 0:30 +Seattle,,,WA,9/11/2006 19:00 +Voorhees,,FIREBALL,NJ,9/11/2006 20:00 +Sanford,,TRIANGLE,MI,9/11/2006 21:00 +Houston,,TRIANGLE,TX,9/11/2006 22:00 +Nodaway County,,FIREBALL,MO,9/11/2006 22:00 +Johnson City,,CIGAR,TN,9/11/2006 22:05 +Boise,,RECTANGLE,ID,9/11/2006 22:06 +Newtown Square,,FIREBALL,PA,9/11/2006 22:55 +New York City,,FIREBALL,NY,9/11/2006 23:00 +Honolulu,,,HI,9/12/2006 1:00 +Landers,,CIRCLE,CA,9/12/2006 6:45 +Raynham,,DISK,MA,9/12/2006 14:00 +Mojave Desert,,SPHERE,NV,9/12/2006 15:30 +Hinkley,,TRIANGLE,IL,9/12/2006 16:15 +Hampden,RED,TRIANGLE,ME,9/12/2006 18:45 +Waterbury,,LIGHT,CT,9/12/2006 22:00 +Escondido,,TRIANGLE,CA,9/13/2006 15:05 +Boerne,GREEN,DISK,TX,9/13/2006 15:45 +Melrose,,CIRCLE,NM,9/13/2006 20:45 +Windsor,,CIGAR,CO,9/13/2006 20:45 +Lumberton,,SPHERE,TX,9/13/2006 21:00 +Redlands,RED,TRIANGLE,CA,9/13/2006 21:00 +Garland,,LIGHT,TX,9/13/2006 23:50 +Knoxville,,OTHER,TN,9/14/2006 19:00 +Phoenix,,LIGHT,AZ,9/14/2006 20:15 +South Hill,,CIRCLE,VA,9/14/2006 20:30 +Chattanooga,,OVAL,TN,9/15/2006 0:23 +Marathon,ORANGE,CIGAR,FL,9/15/2006 0:30 +Santa Maria,,CIRCLE,TX,9/15/2006 1:00 +Youngstown,,FIREBALL,OH,9/15/2006 1:00 +Barnesville,,EGG,PA,9/15/2006 3:00 +Detroit,,SPHERE,MI,9/15/2006 11:00 +Mt. Comfort,,DISK,IN,9/15/2006 13:30 +Caribou,BLUE,SPHERE,ME,9/15/2006 18:30 +Geneva,,,IL,9/15/2006 20:00 +Clearwater,,OTHER,FL,9/15/2006 21:00 +Lake Havasu City,,RECTANGLE,AZ,9/15/2006 21:00 +Owensboro,,LIGHT,KY,9/15/2006 21:00 +Davis,ORANGE,LIGHT,CA,9/15/2006 22:00 +Archer City,,TRIANGLE,TX,9/15/2006 22:30 +Centerport,ORANGE,LIGHT,NY,9/15/2006 23:00 +Moreno Valley,,CIRCLE,CA,9/16/2006 0:00 +Liberty,,VARIOUS,KY,9/16/2006 1:00 +Meadville???,,SPHERE,PA,9/16/2006 4:45 +Napa,,FIREBALL,CA,9/16/2006 9:00 +Monterey,,RECTANGLE,CA,9/16/2006 11:30 +Philadelphia,,OTHER,PA,9/16/2006 12:45 +Los Alamos,,VARIOUS,CA,9/16/2006 13:00 +Cannon Beach,,SPHERE,OR,9/16/2006 13:30 +Orem,,,UT,9/16/2006 17:00 +Tinley Park area,,LIGHT,IL,9/16/2006 19:00 +Orchard Park,,OTHER,NY,9/16/2006 21:00 +Everson,,LIGHT,WA,9/16/2006 21:10 +Oakland,,DISK,CA,9/16/2006 23:30 +Las Vegas,,CHEVRON,NV,9/17/2006 3:30 +St. Michaels,,CYLINDER,MD,9/17/2006 5:30 +Havre De Grace,,DISK,MD,9/17/2006 11:00 +San Francisco,,LIGHT,CA,9/17/2006 17:00 +Chula Vista,,OTHER,CA,9/17/2006 20:00 +San Diego,,SPHERE,CA,9/17/2006 20:00 +Culpepper,,,VA,9/17/2006 21:00 +Gainesville,,LIGHT,GA,9/17/2006 21:00 +Pahrump,,LIGHT,NV,9/17/2006 23:47 +Little River,,LIGHT,SC,9/18/2006 2:00 +San Francisco,,LIGHT,CA,9/18/2006 2:07 +Los Angeles,,CHEVRON,CA,9/18/2006 8:00 +Prospect,,SPHERE,OR,9/18/2006 18:02 +Jackson,,OTHER,MI,9/18/2006 21:00 +Waukegan,,LIGHT,IL,9/18/2006 21:30 +Trumansburg,,CIRCLE,NY,9/18/2006 23:00 +Arlington,,EGG,TX,9/19/2006 0:04 +Henning,RED YELLOW,SPHERE,IL,9/19/2006 0:15 +Bartlett,,SPHERE,TN,9/19/2006 5:40 +Conroe,,LIGHT,TX,9/19/2006 20:30 +Dacula,RED,CIRCLE,GA,9/20/2006 0:00 +White City,,CIGAR,OR,9/20/2006 0:00 +Junction,,,TX,9/20/2006 0:30 +Houston,,SPHERE,TX,9/20/2006 1:45 +Naples,,TRIANGLE,FL,9/20/2006 5:30 +Hastings,,LIGHT,FL,9/20/2006 19:00 +Bangor,,LIGHT,ME,9/20/2006 19:30 +Warner Robins,,LIGHT,GA,9/20/2006 21:28 +Westmont,,LIGHT,IL,9/20/2006 22:00 +Pearl River,,OTHER,LA,9/20/2006 22:30 +La Motte,,FLASH,IA,9/20/2006 23:04 +Darien,,OVAL,IL,9/21/2006 0:30 +Houston,,TEARDROP,TX,9/21/2006 2:30 +Lake Worth,,TRIANGLE,FL,9/21/2006 5:30 +Forked River,,CIGAR,NJ,9/21/2006 13:00 +Boardman,,DISK,OH,9/21/2006 20:00 +San Clemente,,VARIOUS,CA,9/21/2006 20:00 +Brighton,,FORMATION,CO,9/21/2006 21:00 +Chillicothe,,OVAL,OH,9/21/2006 21:00 +Frankfort,ORANGE,,OH,9/21/2006 22:00 +Goldendale,GREEN,LIGHT,WA,9/21/2006 22:43 +Bay City,,TRIANGLE,TX,9/22/2006 0:00 +Amarillo,,TRIANGLE,TX,9/22/2006 0:40 +Madera,,DISK,CA,9/22/2006 3:30 +New York City,,CIGAR,NY,9/22/2006 4:00 +New York City,,,CA,9/22/2006 6:45 +Brick,,TRIANGLE,NJ,9/22/2006 12:10 +Lakeland,,DISK,FL,9/22/2006 13:30 +Esterk,,OTHER,FL,9/22/2006 15:10 +North Attleboro,,OVAL,MA,9/22/2006 16:00 +Quail Valley,,TRIANGLE,CA,9/22/2006 17:50 +Louisville,,LIGHT,CO,9/22/2006 19:00 +Peabody,,TRIANGLE,MA,9/22/2006 19:33 +Mount Shasta,,LIGHT,CA,9/23/2006 0:05 +Chandler,,CHEVRON,AZ,9/23/2006 0:30 +West Los Angeles,,LIGHT,CA,9/23/2006 14:30 +Louisa,,LIGHT,KY,9/23/2006 19:00 +Freeland,,,WA,9/23/2006 19:10 +Lehi,RED,TRIANGLE,UT,9/23/2006 20:40 +Palisade,,LIGHT,MN,9/23/2006 22:30 +Vancleave,,LIGHT,MS,9/23/2006 23:00 +Lancster,,LIGHT,CA,9/23/2006 23:36 +Wenatchee,,CHEVRON,WA,9/24/2006 0:18 +Yreka,,LIGHT,CA,9/24/2006 4:00 +Hortense,,CIGAR,GA,9/24/2006 18:00 +Zephyrhills,,VARIOUS,FL,9/24/2006 20:00 +Georgetown,,CHEVRON,TX,9/24/2006 23:30 +Marion,RED GREEN,,MT,9/25/2006 4:30 +Jeanerette,,LIGHT,LA,9/25/2006 6:30 +Houston,,,TX,9/25/2006 10:00 +Vista,,,CA,9/25/2006 18:30 +Dover,,TRIANGLE,NH,9/25/2006 20:20 +Port Angeles,,TRIANGLE,WA,9/25/2006 20:37 +Rogers,,LIGHT,MN,9/25/2006 20:40 +Casa Grande,ORANGE,TRIANGLE,AZ,9/25/2006 20:53 +Hartford,,FIREBALL,NY,9/25/2006 22:00 +Elgin,,RECTANGLE,IL,9/25/2006 22:15 +Tualatin,,OVAL,OR,9/25/2006 23:00 +Cornelius,,TRIANGLE,OR,9/26/2006 1:40 +Flowery Branch,,DISK,GA,9/26/2006 3:00 +Woodland,GREEN,,WA,9/26/2006 3:56 +China Spring,,LIGHT,TX,9/26/2006 6:10 +San Jacinto,,TRIANGLE,CA,9/26/2006 19:30 +Idaho Springs,,,CO,9/26/2006 21:00 +Sherman Oaks,,CIRCLE,CA,9/27/2006 5:00 +Wilton,RED,OTHER,NH,9/27/2006 10:12 +Plymouth,,CIGAR,PA,9/27/2006 12:25 +Torrance,,OVAL,CA,9/27/2006 12:46 +Arizona,BLUE,,AZ,9/27/2006 13:00 +Waterville,,OTHER,WA,9/27/2006 14:20 +Woodway,,CIGAR,TX,9/27/2006 15:00 +Flatwoods,,DISK,KY,9/27/2006 18:30 +Boston,,OTHER,MA,9/27/2006 18:58 +Baytown,BLUE,SPHERE,TX,9/27/2006 19:00 +None,RED GREEN,CIRCLE,ME,9/27/2006 20:00 +Shoreline,,OTHER,WA,9/28/2006 1:40 +Fort Worth,,OTHER,TX,9/28/2006 3:00 +Chicago,,FLASH,IL,9/28/2006 3:01 +Jemez Springs,,LIGHT,NM,9/28/2006 3:16 +Ridley Park,,RECTANGLE,PA,9/28/2006 13:00 +Broad Brook,,TRIANGLE,CT,9/28/2006 19:00 +Henderson,,OTHER,NV,9/28/2006 20:30 +El Dorado,,TRIANGLE,AR,9/28/2006 23:00 +Odessa,,,TX,9/28/2006 23:15 +Spirit Lake,ORANGE,LIGHT,IA,9/29/2006 0:00 +Houston,,OVAL,TX,9/29/2006 5:35 +Yakima,,OTHER,WA,9/29/2006 8:45 +Seattle,,FIREBALL,WA,9/29/2006 19:40 +Topeka,,TRIANGLE,KS,9/29/2006 21:00 +Lihue,,LIGHT,HI,9/30/2006 1:00 +Chatham,,TRIANGLE,VA,9/30/2006 3:00 +Long Beach,,LIGHT,CA,9/30/2006 8:30 +Anchorage,,DISK,AK,9/30/2006 14:00 +Anchorage,,DISK,AK,9/30/2006 14:30 +Holy Beach,,DISK,LA,9/30/2006 17:00 +Albuquerque,,,NM,9/30/2006 19:00 +Glouster,,SPHERE,OH,9/30/2006 19:00 +Joliet,RED,DIAMOND,IL,9/30/2006 22:00 +Las Cruces,,TRIANGLE,NM,9/30/2006 23:00 +West Jordan,,TEARDROP,UT,9/30/2006 23:30 +Lake Wasahetchie,,CHEVRON,MI,10/1/2006 0:00 +Jones,ORANGE,OVAL,MI,10/1/2006 1:00 +Rio Rancho,GREEN,OVAL,NM,10/1/2006 1:00 +Irving,BLUE,CIRCLE,TX,10/1/2006 1:30 +Montebello,,OTHER,CA,10/1/2006 2:20 +Flemington,,CROSS,NJ,10/1/2006 12:00 +New York City,,RECTANGLE,NY,10/1/2006 12:30 +Mt. Pleasant,,CIRCLE,SC,10/1/2006 14:00 +Plainfield,,OVAL,IL,10/1/2006 14:00 +Thompson,GREEN,CIGAR,MO,10/1/2006 15:05 +Obrien,,OTHER,OR,10/1/2006 16:50 +Algona,,,IA,10/1/2006 17:00 +Onion Creek,,CHEVRON,WA,10/1/2006 17:00 +West Greenwhich,,DISK,RI,10/1/2006 18:30 +Monkton,,OVAL,MD,10/1/2006 19:20 +Las Vegas,,FIREBALL,NV,10/1/2006 19:45 +Austin,,,TX,10/1/2006 19:48 +Fall City,,FIREBALL,WA,10/1/2006 20:18 +Orchards,YELLOW GREEN,FIREBALL,WA,10/1/2006 20:19 +Pullman,BLUE,CIRCLE,WA,10/1/2006 20:24 +Seattle,YELLOW,TEARDROP,WA,10/1/2006 20:34 +Orchard Park,,,NY,10/1/2006 21:00 +Sandrock,RED,,AL,10/1/2006 21:00 +Seattle,,LIGHT,WA,10/1/2006 21:00 +Roseville,,SPHERE,CA,10/1/2006 21:15 +Tin Cup,GREEN,VARIOUS,CO,10/1/2006 21:35 +Santa Fe,,FIREBALL,NM,10/1/2006 22:00 +Phoenix,,LIGHT,AZ,10/1/2006 22:15 +Winslow,,FIREBALL,AZ,10/1/2006 22:18 +Cuchara,,,CO,10/1/2006 23:00 +Glorieta,,VARIOUS,NM,10/1/2006 23:00 +Silver City,,LIGHT,NM,10/1/2006 23:00 +Wide Ruins,YELLOW GREEN,CYLINDER,AZ,10/1/2006 23:00 +Boulder,,OVAL,CO,10/1/2006 23:15 +Canon City,,LIGHT,CO,10/1/2006 23:15 +Cerrillos,ORANGE,VARIOUS,TN,10/1/2006 23:15 +Denver,,CIRCLE,CO,10/1/2006 23:15 +Edwards,,FORMATION,CO,10/1/2006 23:15 +Fairplay,ORANGE,,CO,10/1/2006 23:15 +Hartsel,,FIREBALL,CO,10/1/2006 23:15 +McCoy,,LIGHT,CO,10/1/2006 23:15 +Pueblo West,,SPHERE,CO,10/1/2006 23:15 +Santa Fe,BLUE,LIGHT,NM,10/1/2006 23:15 +Taos,,FORMATION,NM,10/1/2006 23:15 +Cascade,ORANGE,CIRCLE,CO,10/1/2006 23:17 +Boulder,RED ORANGE GREEN,SPHERE,CO,10/1/2006 23:20 +Cripple Creek,,FIREBALL,CO,10/1/2006 23:20 +Grand Junction,,LIGHT,CO,10/1/2006 23:20 +Raton,,FORMATION,NM,10/1/2006 23:20 +Raton,,FORMATION,NM,10/1/2006 23:20 +Sedalia,,FORMATION,CO,10/1/2006 23:20 +Silverthorne,,LIGHT,CO,10/1/2006 23:20 +Monument,,OTHER,CO,10/1/2006 23:27 +Pueblo West,,LIGHT,CO,10/1/2006 23:30 +Farmington,GREEN,LIGHT,NM,10/1/2006 23:32 +San Antonio,,CIRCLE,NM,10/1/2006 23:40 +Amelia,,,OH,10/2/2006 0:16 +Portland,,CIRCLE,OR,10/2/2006 0:45 +McKinney,,FIREBALL,TX,10/2/2006 2:00 +Santa Fe,,LIGHT,NM,10/2/2006 3:00 +Crozet,,OTHER,VA,10/2/2006 7:45 +Denver,,CHEVRON,CO,10/2/2006 17:00 +New York City,,VARIOUS,NY,10/2/2006 17:00 +WIckenburg,YELLOW,FORMATION,AZ,10/2/2006 19:53 +Joplin,,LIGHT,MO,10/2/2006 20:02 +Huntington Beach,RED,LIGHT,CA,10/2/2006 22:45 +Huntington Beach,,VARIOUS,CA,10/2/2006 22:50 +New York City,,,NY,10/2/2006 23:15 +Newburgh,ORANGE,SPHERE,IN,10/3/2006 0:15 +Braintree,,LIGHT,MA,10/3/2006 3:30 +Milwaukee,,SPHERE,WI,10/3/2006 3:30 +Utica,,CIGAR,NY,10/3/2006 3:40 +Oceanside,,,CA,10/3/2006 17:25 +Bailey,,SPHERE,CO,10/3/2006 19:00 +Shreveport,,,LA,10/3/2006 19:30 +Miles City,,OVAL,MT,10/3/2006 20:00 +Garfield,,,AR,10/3/2006 20:15 +Canton,,,GA,10/3/2006 21:00 +Dufur,,DISK,OR,10/3/2006 21:00 +Ravenna,,OTHER,OH,10/3/2006 21:43 +Lakewood,,FIREBALL,CA,10/3/2006 22:00 +Santa Fe,,CONE,NM,10/3/2006 23:15 +Orange,ORANGE,OTHER,CA,10/3/2006 23:25 +Portland,,CIRCLE,OR,10/3/2006 23:45 +Omaha,RED,FLASH,NE,10/4/2006 1:00 +La Porte,,LIGHT,IN,10/4/2006 2:00 +Lake Ridge,,VARIOUS,VA,10/4/2006 3:30 +Sacramento,,,CA,10/4/2006 10:20 +New Richmond,,FIREBALL,WI,10/4/2006 10:50 +Lancaster,,DISK,CA,10/4/2006 14:30 +Raven,GREEN,OVAL,KY,10/4/2006 19:00 +San Diego,,SPHERE,CA,10/4/2006 19:30 +Water Valley,,FIREBALL,MS,10/4/2006 20:00 +Salem,,LIGHT,IN,10/4/2006 21:10 +Sacramento,,LIGHT,CA,10/4/2006 22:00 +Plymouth,GREEN BLUE,FLASH,MN,10/4/2006 22:36 +Minneapolis,GREEN,OTHER,MN,10/4/2006 22:45 +Leigh Acres,,OTHER,FL,10/5/2006 10:30 +Johnson CIty,,CYLINDER,NY,10/5/2006 10:38 +Honolulu,,SPHERE,HI,10/5/2006 19:45 +Sun City,,LIGHT,AZ,10/5/2006 20:30 +St. Charles,RED,FORMATION,IL,10/5/2006 23:00 +Columbia,,FLASH,MO,10/6/2006 2:00 +Orchard Park,,LIGHT,NY,10/6/2006 2:00 +Chester,,DISK,NJ,10/6/2006 9:00 +Phoenix,,OTHER,AZ,10/6/2006 17:00 +Grand Rapids,,CIGAR,MI,10/6/2006 17:30 +Texarkana,,TRIANGLE,TX,10/6/2006 17:30 +Centerville,,VARIOUS,OH,10/6/2006 18:00 +Lisbon,,LIGHT,OH,10/6/2006 18:56 +Bakersville,,DISK,NC,10/6/2006 22:00 +Brighton,,OTHER,CO,10/6/2006 22:30 +Surprise,,LIGHT,AZ,10/7/2006 1:52 +Blacksburg,,LIGHT,VA,10/7/2006 2:00 +Denver,,OTHER,CO,10/7/2006 2:00 +Arlington,,CYLINDER,TX,10/7/2006 16:02 +Deer Park,BLUE,,NY,10/7/2006 22:15 +Fulton,,OVAL,OH,10/7/2006 23:00 +Cantonment,,OTHER,FL,10/8/2006 0:00 +Holden Beach,,TRIANGLE,NC,10/8/2006 1:00 +Lake George,,RECTANGLE,NY,10/8/2006 14:00 +Anchorage,,DISK,AK,10/8/2006 14:02 +San Diego,,CIGAR,CA,10/8/2006 17:00 +Scarborough,,LIGHT,ME,10/8/2006 17:30 +Eugene,RED,FORMATION,OR,10/8/2006 18:30 +Sebastopol,,LIGHT,CA,10/8/2006 20:00 +San Jose,,,CA,10/8/2006 20:11 +Grosse Pointe Woods,,LIGHT,MI,10/8/2006 23:00 +Massapequa,,,NY,10/8/2006 23:00 +Allentown,,SPHERE,NJ,10/9/2006 4:15 +Tucson,,OVAL,AZ,10/9/2006 8:00 +Tampa,,LIGHT,FL,10/9/2006 12:43 +Orefield,,LIGHT,PA,10/9/2006 20:43 +Deer Park,,RECTANGLE,NY,10/9/2006 21:05 +Roanoke,GREEN,LIGHT,VA,10/9/2006 22:00 +Watkins Glen,,CIRCLE,NY,10/9/2006 22:00 +Arbuckle,,FIREBALL,CA,10/9/2006 22:30 +Cathedral City,,LIGHT,CA,10/9/2006 23:00 +Indianapolis,,LIGHT,IN,10/9/2006 23:00 +Pennington,,DIAMOND,TX,10/10/2006 1:00 +San Francisco,,TRIANGLE,CA,10/10/2006 5:00 +Blairsville,,,GA,10/10/2006 12:37 +Savannah,,LIGHT,TN,10/10/2006 16:00 +Waynesboro,,TRIANGLE,VA,10/10/2006 16:00 +,RED ORANGE BLUE,FIREBALL,AR,10/10/2006 19:00 +Bray,,OTHER,OK,10/10/2006 20:00 +Waycross,ORANGE,LIGHT,GA,10/10/2006 22:40 +Wolfforth,,DISK,TX,10/10/2006 22:50 +Lyndhurst,,,OH,10/10/2006 23:00 +Knik,,TRIANGLE,AK,10/10/2006 23:55 +Rome,,OVAL,NY,10/11/2006 0:00 +Nashville,,DISK,TN,10/11/2006 1:25 +Calumet City,,CIRCLE,IN,10/11/2006 2:00 +York,RED,DISK,ME,10/11/2006 5:40 +LittleRock,,OVAL,AR,10/11/2006 9:00 +Lynnwood,,,WA,10/11/2006 11:29 +Monterey Park,,FIREBALL,CA,10/11/2006 19:00 +Two Harbors,,LIGHT,MN,10/11/2006 19:30 +Pensacola,ORANGE,DIAMOND,FL,10/11/2006 20:45 +Milton,,LIGHT,FL,10/11/2006 21:00 +La Crescenta,,CIRCLE,CA,10/11/2006 21:32 +Enid,,LIGHT,OK,10/11/2006 22:00 +Pampa,,TRIANGLE,TX,10/11/2006 23:00 +Seekonk,,FORMATION,MA,10/12/2006 17:30 +Altamonte Springs,,SPHERE,FL,10/12/2006 17:50 +Pontiac,,LIGHT,MI,10/12/2006 20:00 +Boulder,,TRIANGLE,CO,10/12/2006 22:30 +Tamarac,RED GREEN,CYLINDER,FL,10/13/2006 2:00 +Brewer,,LIGHT,ME,10/13/2006 5:00 +Gonzales,,VARIOUS,CA,10/13/2006 6:40 +Vandenberg Village,,DISK,CA,10/13/2006 10:30 +Trout Lake,,,WA,10/13/2006 13:00 +La Mesa,,LIGHT,CA,10/13/2006 17:30 +Philadelphia,,OVAL,PA,10/13/2006 19:30 +Rawlins,,TRIANGLE,WY,10/13/2006 20:30 +Beaumont,,TRIANGLE,TX,10/13/2006 20:50 +Omaha,,LIGHT,NE,10/13/2006 21:15 +De Soto,,TRIANGLE,KS,10/13/2006 22:00 +Harrisburg area,RED,,PA,10/14/2006 0:00 +Jaffrey,BLUE,FIREBALL,NH,10/14/2006 1:25 +Waterbury,BLUE,FIREBALL,CT,10/14/2006 2:00 +Yuma,,FORMATION,VA,10/14/2006 2:00 +Fairfield,BLUE,FIREBALL,CT,10/14/2006 2:24 +New York City,,TEARDROP,NY,10/14/2006 2:25 +Provincetown,,CIRCLE,MA,10/14/2006 18:00 +San Diego,,FIREBALL,CA,10/14/2006 20:15 +Ogunquit,,LIGHT,ME,10/14/2006 21:30 +Buchanan,,LIGHT,GA,10/14/2006 22:00 +Beverly Hills,,VARIOUS,FL,10/14/2006 23:56 +Moab,RED GREEN BLUE,FIREBALL,UT,10/15/2006 0:15 +Lockport,,CIRCLE,IL,10/15/2006 0:30 +Las Vegas,,CIRCLE,NV,10/15/2006 8:30 +Cape Cod,,OTHER,MA,10/15/2006 13:00 +Euharlee,,CIRCLE,GA,10/15/2006 15:30 +Kalispell,,TEARDROP,MT,10/15/2006 18:00 +Beltzhoover,,OVAL,PA,10/15/2006 18:45 +Las Cruces,,LIGHT,NM,10/15/2006 19:00 +Silver City,,CIRCLE,NC,10/15/2006 19:00 +Panacea,ORANGE,OVAL,FL,10/15/2006 20:00 +Charlotte,,LIGHT,NC,10/15/2006 21:00 +Lincoln,,TRIANGLE,NE,10/15/2006 23:00 +Leavenworth,,CIRCLE,WA,10/16/2006 0:00 +St. Joseph,,LIGHT,MI,10/16/2006 4:30 +San Antonio,,DISK,TX,10/16/2006 8:30 +Puyallup,,LIGHT,WA,10/16/2006 18:40 +Plainview,,OTHER,TX,10/16/2006 19:00 +Groveland,,OVAL,FL,10/16/2006 21:05 +Silver City,,FLASH,NM,10/16/2006 21:05 +Gloucester,,CONE,MA,10/16/2006 21:30 +Nantucket,,CIRCLE,MA,10/16/2006 23:15 +Phoenix,,LIGHT,AZ,10/17/2006 19:15 +Corinth,,SPHERE,MS,10/17/2006 20:30 +Downers Grove,,CHEVRON,IL,10/17/2006 21:15 +San Jose,ORANGE,LIGHT,CA,10/17/2006 21:30 +Talent,,LIGHT,OR,10/17/2006 22:02 +Choctaw Beach,ORANGE,FIREBALL,FL,10/17/2006 22:10 +San Francisco,,OTHER,CA,10/17/2006 22:12 +Albuquerque,,OTHER,NM,10/18/2006 0:40 +Wilmington,,CIGAR,NC,10/18/2006 17:00 +Mission Viejo,,OTHER,CA,10/18/2006 18:00 +Memphis,,LIGHT,TN,10/18/2006 19:30 +Santa Maria,ORANGE,TEARDROP,CA,10/18/2006 19:45 +Peoria,,LIGHT,AZ,10/18/2006 21:00 +Simi Valley,,LIGHT,CA,10/18/2006 21:48 +Carbondale,,TRIANGLE,IL,10/18/2006 22:00 +Waterford,,TRIANGLE,MI,10/18/2006 23:00 +Harrisonville,,OTHER,GA,10/19/2006 6:10 +Olive Branch,,OTHER,MS,10/19/2006 7:05 +Las Vegas,,CHEVRON,NV,10/19/2006 12:10 +Boulder,,TRIANGLE,CO,10/19/2006 18:50 +Hammonton,,,NJ,10/19/2006 19:40 +Fowlerville,,,MI,10/19/2006 22:15 +Franklin Falls,GREEN,OTHER,NY,10/20/2006 0:30 +Foster City,,LIGHT,CA,10/20/2006 3:45 +Providence,,EGG,RI,10/20/2006 6:30 +St. Augustine,BLUE,EGG,FL,10/20/2006 7:45 +Birmingham,,SPHERE,AL,10/20/2006 11:30 +North Georgia,,SPHERE,GA,10/20/2006 13:00 +Prospect,,CIGAR,OR,10/20/2006 14:01 +East Patchogue,,SPHERE,NY,10/20/2006 14:38 +Evanston,,CIGAR,IL,10/20/2006 15:00 +Bellevue,,CHEVRON,WA,10/20/2006 18:30 +Hanover,,LIGHT,MD,10/20/2006 19:07 +East Patchogue,,SPHERE,NY,10/20/2006 19:51 +Bluefield,,CIRCLE,WV,10/20/2006 20:00 +Nicholson,,,GA,10/20/2006 21:34 +Winfield,,,KS,10/20/2006 22:00 +North Kingstown,,CIRCLE,RI,10/21/2006 0:00 +Anahola,,DISK,HI,10/21/2006 3:00 +Seattle,,TRIANGLE,WA,10/21/2006 7:10 +Hamilton,,DIAMOND,MT,10/21/2006 7:30 +Salinas,,CIRCLE,CA,10/21/2006 18:00 +Reno,GREEN,,NV,10/21/2006 18:54 +Brookings,,,OR,10/21/2006 19:30 +Aloha,,LIGHT,OR,10/21/2006 19:35 +Tucson,,,AZ,10/21/2006 22:30 +Southbloomingvill,,,OH,10/21/2006 22:45 +Lynnwood,ORANGE,OVAL,WA,10/22/2006 0:55 +Cheshire,,DISK,MA,10/22/2006 1:50 +Lodi,,OTHER,CA,10/22/2006 12:00 +Spicewood,,DISK,TX,10/22/2006 13:00 +Los Angeles,,SPHERE,CA,10/22/2006 15:30 +Paoli,,SPHERE,WI,10/22/2006 16:00 +Montgomery,,FIREBALL,TX,10/22/2006 22:01 +Georgetown,,OVAL,TX,10/22/2006 22:30 +Kennewick,,,WA,10/23/2006 1:00 +Cypress,,CYLINDER,TX,10/23/2006 10:30 +Dalton,,OTHER,GA,10/23/2006 14:30 +Atlanta,,CIRCLE,GA,10/23/2006 14:45 +Hudson,,TRIANGLE,FL,10/23/2006 16:00 +Anchorage,,CIRCLE,AK,10/23/2006 21:00 +Anchorage,,VARIOUS,AK,10/23/2006 21:03 +St. Augustine,,CIRCLE,FL,10/23/2006 22:25 +Two Harbors,,,MN,10/23/2006 22:25 +Ukiah,,TRIANGLE,CA,10/23/2006 22:50 +San Jose,,CIRCLE,CA,10/24/2006 4:50 +Shippensburg,,CIRCLE,PA,10/24/2006 11:30 +Sarasota,,LIGHT,FL,10/24/2006 17:38 +Chattanooga,RED,LIGHT,TN,10/24/2006 20:50 +Fort Dodge,,TRIANGLE,IA,10/24/2006 22:00 +Mercer Island,,OVAL,WA,10/24/2006 22:35 +Bradenton,,FIREBALL,FL,10/25/2006 0:00 +Champaign,,VARIOUS,IL,10/25/2006 16:00 +Fairbury,,OVAL,IL,10/25/2006 19:15 +Mandan,,CIRCLE,ND,10/25/2006 19:30 +Cooper City,,VARIOUS,FL,10/25/2006 20:53 +St. Augustine,,FIREBALL,FL,10/25/2006 20:54 +Fort Pierce,YELLOW,,FL,10/25/2006 20:57 +Orlando,,FIREBALL,FL,10/25/2006 21:00 +Imperial Beach,,,CA,10/25/2006 21:01 +Jensen Beach,,SPHERE,GA,10/25/2006 22:30 +Forestville,,FORMATION,CA,10/25/2006 23:30 +Forestville,,FORMATION,CA,10/25/2006 23:30 +Warwick,,TRIANGLE,RI,10/25/2006 23:50 +Oklahoma City,,LIGHT,OK,10/26/2006 6:45 +Ardmore,,LIGHT,PA,10/26/2006 9:45 +Altamonte Springs,ORANGE,CIGAR,FL,10/26/2006 10:30 +Orlando,,VARIOUS,FL,10/26/2006 12:30 +Strawberry,,TRIANGLE,CA,10/26/2006 15:00 +New Orleans,,CROSS,LA,10/26/2006 20:00 +Lancaster,,TRIANGLE,PA,10/26/2006 21:00 +Coxsackie,,LIGHT,NY,10/26/2006 23:00 +Lebanon,,DISK,NJ,10/26/2006 23:00 +New Hartford,,,NY,10/27/2006 2:18 +San Antonio,,LIGHT,TX,10/27/2006 19:00 +Pittsfield,,LIGHT,ME,10/27/2006 19:30 +Hutchinson,,TRIANGLE,KS,10/27/2006 20:00 +Hutchinson,,TRIANGLE,KS,10/27/2006 20:00 +Parkland,YELLOW,FLASH,FL,10/27/2006 20:00 +Phoenix,,TRIANGLE,AZ,10/27/2006 20:11 +Harrisburg,,,PA,10/28/2006 0:00 +Liberty,,LIGHT,MO,10/28/2006 0:20 +Overland Park,,TRIANGLE,KS,10/28/2006 0:40 +Overland Park,,TRIANGLE,KS,10/28/2006 0:40 +Los Angeles,ORANGE,VARIOUS,CA,10/28/2006 1:55 +Frankfort,BLUE,LIGHT,IL,10/28/2006 2:00 +Drummonds,YELLOW,LIGHT,TN,10/28/2006 3:30 +Onalaska,,TRIANGLE,WI,10/28/2006 4:44 +Harrisburg,,,PA,10/28/2006 11:00 +Buena Park,,FORMATION,CA,10/28/2006 12:15 +San Antonio,,CIRCLE,TX,10/28/2006 17:00 +Marshfield,,LIGHT,MO,10/28/2006 18:15 +Mabank,,OTHER,TX,10/28/2006 19:00 +Boonville,,FORMATION,CA,10/28/2006 19:30 +Sedona,,OTHER,AZ,10/28/2006 20:00 +Oxnard,,CIRCLE,CA,10/28/2006 20:10 +Midlothian,,CHEVRON,VA,10/28/2006 22:00 +Narsarsuaq,,TEARDROP,ND,10/28/2006 23:00 +Vanderbilt,,,MI,10/29/2006 0:00 +Dallas,,LIGHT,GA,10/29/2006 2:00 +Culver City,ORANGE,CIRCLE,CA,10/29/2006 17:50 +Crest Hill,,DISK,IL,10/29/2006 18:00 +Cameron Park,,DISK,CA,10/29/2006 18:12 +Seattle,,SPHERE,WA,10/29/2006 20:00 +Sandy,,TEARDROP,UT,10/29/2006 21:41 +Pittsburgh,,OTHER,PA,10/29/2006 22:00 +Spearfish,,CHEVRON,SD,10/29/2006 22:20 +Wichita Falls,,FIREBALL,TX,10/29/2006 22:30 +Hammond,,CIGAR,IN,10/30/2006 4:15 +Vienna,,SPHERE,VA,10/30/2006 17:17 +Old Lyme,RED GREEN,FLASH,CT,10/30/2006 17:45 +Crestline,,TRIANGLE,OH,10/30/2006 18:30 +Medford,,CHEVRON,OR,10/30/2006 19:10 +Monticello,,CROSS,NY,10/30/2006 19:10 +Orlando,,,FL,10/30/2006 19:15 +Seaford,,CIRCLE,DE,10/30/2006 19:20 +Reno,,FORMATION,NV,10/30/2006 19:30 +Rapid City,,TRIANGLE,SD,10/30/2006 23:00 +Seguin,,TRIANGLE,TX,10/31/2006 0:00 +Chicago,BLUE,,IL,10/31/2006 8:00 +Valencia,,TRIANGLE,CA,10/31/2006 8:30 +Seattle,,,WA,10/31/2006 10:30 +Eureka,,FIREBALL,MT,10/31/2006 11:00 +Portage,ORANGE,LIGHT,WI,10/31/2006 17:40 +Tualatin,,FIREBALL,OR,10/31/2006 19:10 +Newcastle,GREEN,LIGHT,WA,10/31/2006 19:20 +Tinley Park,,TRIANGLE,IL,10/31/2006 20:00 +Scappoose,,OVAL,OR,10/31/2006 23:00 +Lake Barryessa,,SPHERE,CA,11/1/2006 1:00 +Hardin,,LIGHT,MT,11/1/2006 1:30 +Eatonton,BLUE,OVAL,GA,11/1/2006 3:47 +Sarasota,,DISK,FL,11/1/2006 10:20 +Seattle,,OTHER,WA,11/1/2006 12:57 +Arcata,ORANGE,LIGHT,CA,11/1/2006 17:40 +Renton,,TRIANGLE,WA,11/1/2006 17:40 +Wilmington,YELLOW,,NC,11/1/2006 19:30 +Adrian,,TRIANGLE,MI,11/1/2006 20:00 +Galveston,,CIGAR,TX,11/1/2006 20:00 +Livonia,,CIRCLE,LA,11/1/2006 20:50 +Milton,,LIGHT,WV,11/1/2006 22:00 +Wichita Falls,RED,RECTANGLE,TX,11/1/2006 23:00 +North Hollywood,,CIRCLE,CA,11/2/2006 14:45 +Gaffney,,LIGHT,SC,11/2/2006 20:00 +Mission Viejo,,LIGHT,CA,11/2/2006 21:00 +Hyde Park,,TRIANGLE,NY,11/3/2006 16:00 +Bentonville,ORANGE,FIREBALL,VA,11/3/2006 17:15 +Indio,,CIGAR,CA,11/3/2006 18:30 +Millington,,OTHER,TN,11/3/2006 18:30 +Telford,,CIRCLE,PA,11/3/2006 19:00 +Hildebran,,OVAL,NC,11/3/2006 19:30 +Ormond Beach,,CIRCLE,FL,11/3/2006 20:00 +Las Vegas,,,NC,11/3/2006 22:00 +Thornton,,TRIANGLE,CO,11/4/2006 4:48 +St. Charles,,FORMATION,MO,11/4/2006 12:15 +Magnolia,ORANGE,CYLINDER,NJ,11/4/2006 17:00 +Durango,,LIGHT,CO,11/4/2006 18:30 +Boerne,,DISK,TX,11/4/2006 20:30 +Bloomington,GREEN,LIGHT,CA,11/4/2006 21:20 +Charlottesville,,LIGHT,VA,11/4/2006 22:00 +Selah,,CIRCLE,WA,11/4/2006 22:30 +Tomball,,FORMATION,TX,11/5/2006 1:00 +Tiburon,,DISK,CA,11/5/2006 11:45 +Albuquerque,,LIGHT,NM,11/5/2006 16:35 +Panama city,,CIRCLE,FL,11/5/2006 18:00 +Lake Wales,,LIGHT,FL,11/5/2006 19:00 +Eloy,,FORMATION,AZ,11/5/2006 19:45 +Yorba Linda,ORANGE,DISK,CA,11/5/2006 20:00 +Vancleave,,LIGHT,MS,11/5/2006 22:00 +Glen Burnie,,,MD,11/6/2006 2:00 +Laredo,,DISK,TX,11/6/2006 9:00 +Birmingham,,TEARDROP,AL,11/6/2006 16:00 +Naperville,,SPHERE,IL,11/6/2006 16:20 +Los Angeles,,LIGHT,CA,11/6/2006 18:00 +Ithaca,RED GREEN,SPHERE,NY,11/6/2006 19:00 +Texas City,,DISK,TX,11/6/2006 19:28 +Wheeling,,,IL,11/6/2006 21:20 +Hollister,,SPHERE,CA,11/7/2006 0:00 +Chicago,,,IL,11/7/2006 0:19 +Martinez,ORANGE,FIREBALL,CA,11/7/2006 1:15 +Wood Dale,,CIRCLE,IL,11/7/2006 12:15 +Merrillville,,CIRCLE,IN,11/7/2006 13:00 +Chicago O'Hare Airport,,CIRCLE,IL,11/7/2006 16:30 +Chicago O'Hare Airport,,DISK,IL,11/7/2006 16:30 +Aurora,,,IL,11/7/2006 17:00 +Tucson,,FLASH,AZ,11/7/2006 18:00 +Victoria,,CHEVRON,MN,11/7/2006 18:30 +Fort Collins,BLUE,RECTANGLE,CO,11/7/2006 19:00 +Stratford,ORANGE YELLOW,,IA,11/7/2006 20:30 +Laramie,,RECTANGLE,WY,11/7/2006 21:00 +Goleta,GREEN,OTHER,CA,11/7/2006 23:30 +Denver,,FORMATION,CO,11/8/2006 0:00 +Wichita Falls,,LIGHT,TX,11/8/2006 0:00 +Tucson,,OTHER,AZ,11/8/2006 4:50 +Tucson,,OTHER,AZ,11/8/2006 4:50 +Tucson,,TRIANGLE,AZ,11/8/2006 4:50 +Westminster,,,CA,11/8/2006 5:30 +Red Bluff,,TRIANGLE,CA,11/8/2006 13:00 +Pagosa Springs,,TRIANGLE,CO,11/8/2006 17:04 +Tuscola,,LIGHT,TX,11/8/2006 17:30 +San Diego,,LIGHT,CA,11/8/2006 17:45 +Monterey,,SPHERE,CA,11/8/2006 18:35 +Fortville,,CIRCLE,IN,11/8/2006 19:00 +Moreno Valley,,CIRCLE,CA,11/8/2006 19:30 +Odessa,,DISK,TX,11/8/2006 19:35 +Odessa,,DISK,TX,11/8/2006 19:35 +New Braunfels,GREEN,FIREBALL,TX,11/8/2006 20:00 +Rosanky,,FIREBALL,TX,11/8/2006 20:00 +Hollywood,,DIAMOND,FL,11/8/2006 21:00 +Denver,,TRIANGLE,CO,11/8/2006 21:45 +Oregon,,FORMATION,IL,11/8/2006 22:30 +Canyon Country,,OTHER,CA,11/9/2006 5:00 +Schaumberg,,RECTANGLE,IL,11/9/2006 9:00 +Schaumburg,,RECTANGLE,IL,11/9/2006 9:00 +Schaumburg,,RECTANGLE,IL,11/9/2006 9:00 +Kosse,,CYLINDER,TX,11/9/2006 16:30 +Alto,,LIGHT,TX,11/9/2006 18:00 +Brookline,,TRIANGLE,MA,11/9/2006 19:30 +Atwater,,OTHER,CA,11/9/2006 19:45 +Wellington,,OTHER,FL,11/9/2006 19:47 +Little Rock,,,AR,11/9/2006 19:50 +Auburn,,OTHER,ME,11/9/2006 21:00 +Lawrence,,CYLINDER,KS,11/9/2006 22:15 +Mesa,,,AZ,11/9/2006 22:50 +Huntsville,,,AL,11/10/2006 5:00 +Toms RIver,GREEN,FIREBALL,NJ,11/10/2006 12:45 +South Lake Tahoe,,CIRCLE,NV,11/10/2006 14:32 +East Windsor,,TRIANGLE,NJ,11/10/2006 17:25 +Tuscola,,LIGHT,TX,11/10/2006 17:30 +Corolla,RED BLUE,CIRCLE,NC,11/10/2006 18:00 +Sophia,,TRIANGLE,NC,11/10/2006 20:52 +Las Vegas,,OTHER,NV,11/10/2006 21:00 +Buena Park,,VARIOUS,CA,11/10/2006 21:45 +Fort Lauderdale,,TRIANGLE,FL,11/10/2006 22:02 +North Pole,GREEN,OTHER,AK,11/10/2006 23:15 +Falls Church,,CIGAR,VA,11/11/2006 0:32 +Carthage,,LIGHT,TX,11/11/2006 1:30 +Hammond,,TRIANGLE,LA,11/11/2006 1:50 +Chattanooga,,CIRCLE,TN,11/11/2006 6:00 +Redwood City,,LIGHT,CA,11/11/2006 19:00 +La Quinta,,CIRCLE,CA,11/11/2006 21:00 +Irvine,,DIAMOND,CA,11/11/2006 22:00 +Flushing,GREEN,LIGHT,NY,11/11/2006 23:00 +Herndon,,LIGHT,VA,11/11/2006 23:15 +Ypsilanti,,TRIANGLE,MI,11/11/2006 23:15 +Fairless Hills,,LIGHT,PA,11/11/2006 23:50 +Long Beach,,FIREBALL,CA,11/12/2006 1:00 +New York City,,TRIANGLE,NY,11/12/2006 13:00 +Hayward,,CIRCLE,CA,11/12/2006 20:00 +Long Beach,GREEN,FIREBALL,CA,11/12/2006 21:00 +Escondido,,LIGHT,CA,11/12/2006 23:00 +Strasburg,,TEARDROP,ND,11/13/2006 7:01 +Colorado Springs,,OTHER,CO,11/13/2006 12:00 +Charlotte,,CIRCLE,NC,11/13/2006 17:00 +Littleton,,OTHER,CO,11/13/2006 17:00 +Prescott,,,AZ,11/13/2006 18:40 +Long Beach,,TRIANGLE,CA,11/13/2006 19:45 +Marietta,,RECTANGLE,GA,11/13/2006 22:45 +Mead,,CIRCLE,WA,11/14/2006 3:05 +Des Moines,,,WA,11/14/2006 5:57 +Parrish,,FORMATION,FL,11/14/2006 13:15 +Parrish,,,FL,11/14/2006 14:00 +Phoenix,,LIGHT,AZ,11/14/2006 19:40 +Morristown,,OVAL,AZ,11/14/2006 20:30 +King George,GREEN,SPHERE,VA,11/14/2006 23:00 +Anchorage,,LIGHT,AK,11/14/2006 23:25 +Birmingham,,FIREBALL,AL,11/15/2006 1:00 +Lithonia,,LIGHT,GA,11/15/2006 5:00 +Mount Ida,,VARIOUS,AR,11/15/2006 9:00 +Hyde Park,,CHEVRON,NY,11/15/2006 16:00 +Burbank,,VARIOUS,CA,11/15/2006 18:00 +Addison,,TEARDROP,TX,11/15/2006 19:00 +Middlesex,,OTHER,NJ,11/15/2006 19:00 +Philadelphia,,FORMATION,PA,11/15/2006 21:00 +Tucson,,DISK,AZ,11/15/2006 21:00 +Cape Canaveral,,LIGHT,FL,11/15/2006 22:00 +Kansas City,,TRIANGLE,MO,11/15/2006 23:00 +Lorain,,,OH,11/15/2006 23:00 +Youngstown,,SPHERE,OH,11/15/2006 23:45 +Leavenworth,RED,CYLINDER,WA,11/16/2006 0:00 +Gaffney,,VARIOUS,SC,11/16/2006 4:30 +Tarzana,,SPHERE,CA,11/16/2006 10:00 +Maricopa,,OVAL,AZ,11/16/2006 10:30 +Vista,,,CA,11/16/2006 11:00 +Chandler,,RECTANGLE,AZ,11/16/2006 14:20 +Billings,,,MT,11/16/2006 17:00 +Morrow County,,DISK,OH,11/16/2006 17:00 +Prineville,,VARIOUS,OR,11/16/2006 17:15 +Shelton,,,WA,11/16/2006 18:15 +Panama City,,LIGHT,FL,11/16/2006 18:42 +Phoenix,ORANGE,RECTANGLE,AZ,11/16/2006 21:50 +Beverly Hills,,VARIOUS,FL,11/16/2006 23:00 +Highlands,,CIRCLE,TX,11/16/2006 23:00 +Stone Harbor,,TRIANGLE,NJ,11/17/2006 0:00 +Pittsburg,,CIGAR,CA,11/17/2006 5:00 +Aspen,,LIGHT,CO,11/17/2006 5:30 +Great Falls,,CIRCLE,MT,11/17/2006 10:30 +Shiocton,,TRIANGLE,WI,11/17/2006 17:55 +Trowbridge,,CIRCLE,WV,11/17/2006 18:25 +Nevada,,LIGHT,MO,11/17/2006 19:00 +River Falls,RED,TRIANGLE,WI,11/17/2006 19:15 +Big Oak Valley,,CIRCLE,CA,11/17/2006 20:15 +Fair Oaks,,TRIANGLE,TX,11/17/2006 20:32 +Annandale,,OTHER,VA,11/17/2006 23:45 +Ducor,,TRIANGLE,CA,11/18/2006 3:00 +Los Angeles,,FIREBALL,CA,11/18/2006 12:00 +Phoenix,,SPHERE,AZ,11/18/2006 15:10 +Tuckerton,,CIRCLE,NJ,11/18/2006 18:30 +Springfield,,CHEVRON,MO,11/18/2006 19:50 +Westminster,,CIGAR,CA,11/18/2006 21:05 +Frederick,,LIGHT,MD,11/18/2006 21:20 +St. Cloud,,FORMATION,FL,11/18/2006 21:30 +Park Rapids,ORANGE,TRIANGLE,MN,11/18/2006 22:30 +Albuquerque,,OTHER,NM,11/18/2006 22:50 +Nichols,,,FL,11/18/2006 22:52 +Elkhorn,,TRIANGLE,NE,11/18/2006 23:30 +Phoenix,BLUE,,AZ,11/19/2006 0:00 +Manchester,BLUE,SPHERE,CT,11/19/2006 2:00 +Hiram,,LIGHT,GA,11/19/2006 2:30 +Hattiesburg,,LIGHT,MS,11/19/2006 5:00 +Van Nuys,,CIRCLE,CA,11/19/2006 5:35 +Fork,,DISK,SC,11/19/2006 6:55 +Phoenix,,SPHERE,AZ,11/19/2006 13:15 +Los Angeles,RED,,CA,11/19/2006 16:30 +Center Valley,,DISK,PA,11/19/2006 16:45 +Wellington,,CYLINDER,FL,11/19/2006 17:18 +San Diego,,LIGHT,CA,11/19/2006 17:34 +Riverside,,FIREBALL,CA,11/19/2006 17:36 +Long Beach,RED,FORMATION,CA,11/19/2006 18:00 +Chicago,YELLOW,OTHER,IL,11/19/2006 19:30 +Hartley,,,IA,11/19/2006 20:02 +Waterloo,,OTHER,IA,11/19/2006 22:00 +Port Angeles,,OTHER,WA,11/19/2006 22:45 +Hattiesburg,,OTHER,MS,11/20/2006 1:00 +New York City,,FLASH,NY,11/20/2006 2:15 +Huntington Beach,,CIRCLE,CA,11/20/2006 13:00 +Kapaa,,,HI,11/20/2006 18:45 +Peabody,GREEN,CIRCLE,MA,11/20/2006 19:30 +West Palm Beach,,OTHER,FL,11/20/2006 21:00 +Truth or Consequences,,CIRCLE,NM,11/20/2006 23:00 +New York City,,FLASH,NY,11/21/2006 0:30 +Marlborough,,FLASH,CT,11/21/2006 1:00 +Union City,,FIREBALL,NJ,11/21/2006 1:00 +Pickerington,,OTHER,OH,11/21/2006 5:30 +West Richland,,OTHER,WA,11/21/2006 6:00 +Tustin,,VARIOUS,CA,11/21/2006 7:45 +Saint Bonifacius,,LIGHT,MN,11/21/2006 12:25 +Lawrenceville,,FIREBALL,GA,11/21/2006 18:30 +Elmo,,CIGAR,UT,11/21/2006 19:50 +Waterloo,,TRIANGLE,NY,11/21/2006 20:45 +Lakewood,,LIGHT,CO,11/21/2006 23:10 +Lebanon,,OVAL,CT,11/21/2006 23:30 +West Grove,,TRIANGLE,PA,11/22/2006 0:00 +Elizabethtown,,DISK,KY,11/22/2006 1:00 +Price,,TEARDROP,UT,11/22/2006 1:00 +Rogers,,RECTANGLE,OH,11/22/2006 3:00 +Pontiac,,LIGHT,IL,11/22/2006 5:10 +Harris,,LIGHT,MN,11/22/2006 5:45 +Meadville,,CYLINDER,PA,11/22/2006 6:09 +Tampa,,OTHER,FL,11/22/2006 18:00 +Santa Clarita,,LIGHT,CA,11/22/2006 19:00 +Scipio,,DISK,UT,11/22/2006 19:30 +Athens,,TRIANGLE,AL,11/22/2006 21:00 +Orlando,,OTHER,FL,11/22/2006 21:30 +Cumberland,,CONE,OH,11/22/2006 22:30 +Bowling Green,,LIGHT,OH,11/22/2006 23:00 +Southampton,,LIGHT,PA,11/23/2006 0:00 +Byron,,DISK,GA,11/23/2006 11:30 +Columbus,,CIRCLE,OH,11/23/2006 14:30 +Moss Landing,,OVAL,CA,11/23/2006 16:00 +Tucson,,VARIOUS,AZ,11/23/2006 16:00 +Macon,,TRIANGLE,MO,11/23/2006 17:50 +Blue Springs,,LIGHT,MO,11/23/2006 18:50 +South Bend,,TRIANGLE,IN,11/23/2006 20:25 +Bellchester,ORANGE,,MN,11/23/2006 21:00 +Providence Forge,,LIGHT,VA,11/24/2006 2:30 +Camp Creek,GREEN,FLASH,WV,11/24/2006 2:45 +Lehighton,BLUE,DISK,PA,11/24/2006 3:00 +Wakeeney,,OTHER,KS,11/24/2006 3:00 +Afton,RED,,VA,11/24/2006 5:00 +Bradford,,LIGHT,PA,11/24/2006 6:00 +Jordan,,FIREBALL,MN,11/24/2006 7:30 +Mills River,YELLOW BLUE,FIREBALL,NC,11/24/2006 10:00 +Katy,,TRIANGLE,TX,11/24/2006 13:30 +Townsend,,FIREBALL,MA,11/24/2006 13:30 +Rydal,,LIGHT,PA,11/24/2006 16:30 +Jordan,,FIREBALL,MN,11/24/2006 19:30 +Willard,,TRIANGLE,MO,11/24/2006 20:30 +Phoenix,,RECTANGLE,AZ,11/24/2006 21:30 +Colorado City,RED BLUE,OVAL,CO,11/24/2006 22:00 +Roxborough,,LIGHT,NC,11/25/2006 0:30 +Pipersville,,CIRCLE,PA,11/25/2006 1:00 +Colley,GREEN,FORMATION,PA,11/25/2006 6:00 +San Bernadino Mtns.,,TRIANGLE,CA,11/25/2006 6:30 +Baytown,,CIRCLE,TX,11/25/2006 14:00 +El Centro,,CIRCLE,CA,11/25/2006 14:33 +Crossville,ORANGE,FIREBALL,TN,11/25/2006 18:15 +Cumming,,LIGHT,GA,11/25/2006 19:00 +Gulf Beeze,,,FL,11/25/2006 20:00 +Hughesville,,OVAL,PA,11/25/2006 20:09 +St. Augustine,,CIRCLE,FL,11/25/2006 21:07 +Warrington,,OVAL,PA,11/26/2006 1:00 +Morehead City,,CHEVRON,NC,11/26/2006 2:00 +Hardin,,LIGHT,MT,11/26/2006 2:33 +Corinth,,SPHERE,TX,11/26/2006 3:00 +Maryville,,LIGHT,TN,11/26/2006 7:30 +Wilkes-Barre,,OVAL,PA,11/26/2006 8:00 +Chincoteague,,,VA,11/26/2006 12:00 +Phoenix,,CYLINDER,AZ,11/26/2006 12:00 +Long Beach,,CIRCLE,CA,11/26/2006 14:30 +Tucson,,,AZ,11/26/2006 15:30 +Olympia,,LIGHT,WA,11/26/2006 21:25 +Sanford,ORANGE,VARIOUS,NC,11/26/2006 22:05 +Davenport,,,FL,11/26/2006 22:30 +Jackson,,OTHER,TN,11/26/2006 22:30 +Raleigh,RED GREEN BLUE,LIGHT,NC,11/26/2006 23:00 +Warrington,,LIGHT,PA,11/26/2006 23:00 +Las Vegas,,SPHERE,NV,11/27/2006 0:30 +Kent,,DISK,WA,11/27/2006 3:40 +Moses Lake,,TRIANGLE,WA,11/27/2006 6:47 +Tempe,,DISK,AZ,11/27/2006 14:15 +Bellevue,,OTHER,WA,11/27/2006 16:45 +Chauvin,,OVAL,LA,11/27/2006 18:00 +Blaine,,TRIANGLE,KY,11/27/2006 20:19 +Huntsville,,FIREBALL,AL,11/27/2006 22:06 +Orland Park,,LIGHT,IL,11/27/2006 22:55 +Kingston,,FLASH,NY,11/27/2006 23:00 +Ocklawaha,,VARIOUS,FL,11/27/2006 23:00 +Franklin,,,NC,11/28/2006 0:00 +Highland,,OTHER,MD,11/28/2006 0:00 +Owensville,RED BLUE,,OH,11/28/2006 0:00 +Albany,,,NY,11/28/2006 1:00 +Birmingham,GREEN,LIGHT,AL,11/28/2006 5:30 +Roswell,,EGG,GA,11/28/2006 9:32 +Sheffield Lake,,OVAL,OH,11/28/2006 12:00 +Hyden,,VARIOUS,KY,11/28/2006 17:00 +Warner Robins,,SPHERE,GA,11/28/2006 17:15 +Anchorage,BLUE,LIGHT,AK,11/28/2006 17:20 +Birmingham,,CIRCLE,AL,11/28/2006 17:25 +Pinson,GREEN,FIREBALL,AL,11/28/2006 17:25 +Birmingham,GREEN,CIRCLE,AL,11/28/2006 17:30 +Birmingham,GREEN,FIREBALL,AL,11/28/2006 17:30 +Birmingham,,LIGHT,AL,11/28/2006 17:30 +Birmingham,GREEN,SPHERE,AL,11/28/2006 17:30 +Bremen,GREEN,FIREBALL,AL,11/28/2006 17:30 +Huntsville,GREEN,LIGHT,AL,11/28/2006 17:30 +Vancouver,RED,VARIOUS,WA,11/28/2006 17:40 +Madison,,,AL,11/28/2006 18:00 +Rising Fawn,GREEN,CIRCLE,GA,11/28/2006 18:15 +Franklin,GREEN,LIGHT,NC,11/28/2006 18:25 +Oliver Springs,,FIREBALL,TN,11/28/2006 18:25 +Chattanooga,GREEN,VARIOUS,TN,11/28/2006 18:30 +Knoxville,BLUE,FIREBALL,TN,11/28/2006 18:30 +Knoxville,BLUE,LIGHT,TN,11/28/2006 18:30 +Lawrenceville,GREEN,OTHER,GA,11/28/2006 18:30 +Soddy Daisy,GREEN,CIGAR,TN,11/28/2006 18:30 +Stanford,GREEN,LIGHT,KY,11/28/2006 18:30 +Rome,GREEN,FIREBALL,GA,11/28/2006 18:35 +Boone,GREEN,FIREBALL,NC,11/28/2006 18:40 +Marble,GREEN,LIGHT,NC,11/28/2006 18:50 +Dacula,GREEN,LIGHT,GA,11/28/2006 19:00 +Dalton,,FIREBALL,GA,11/28/2006 19:00 +Marshall,GREEN,LIGHT,NC,11/28/2006 19:00 +Nahunta,,FIREBALL,GA,11/28/2006 19:00 +Sylvania,,OVAL,GA,11/28/2006 20:00 +Fenton,,FORMATION,MI,11/28/2006 21:00 +Knoxville,,LIGHT,TN,11/28/2006 22:45 +Anaheim,,CIGAR,CA,11/28/2006 23:00 +Statesboro,,LIGHT,GA,11/28/2006 23:30 +Hollister,,OTHER,CA,11/29/2006 5:00 +Orinda,,DISK,CA,11/29/2006 6:20 +Cullman,,,AL,11/29/2006 7:00 +Columbus,,FIREBALL,GA,11/29/2006 16:00 +Columbus,,FIREBALL,GA,11/29/2006 16:00 +Columbus,,OTHER,GA,11/29/2006 16:30 +Troy,,TRIANGLE,IL,11/29/2006 19:00 +Iron River,,,MI,11/30/2006 0:45 +Swarthmore,,FLASH,PA,11/30/2006 1:09 +Fort Lewis,,,WA,11/30/2006 3:36 +Lake Village,,TRIANGLE,AR,11/30/2006 4:00 +Hollister,,CIRCLE,CA,11/30/2006 5:00 +Hollister,ORANGE,CIRCLE,CA,11/30/2006 5:00 +"Washington, D.C.",,CIRCLE,VA,11/30/2006 6:20 +Ajo,,FIREBALL,AZ,11/30/2006 12:17 +Ajo,,LIGHT,AZ,11/30/2006 12:17 +Reading,GREEN,OTHER,PA,11/30/2006 17:00 +Salem,,LIGHT,OR,11/30/2006 17:55 +Cold Spring Harbor,,CHEVRON,NY,11/30/2006 19:00 +Ajo,,LIGHT,AZ,11/30/2006 20:00 +Ajo,,LIGHT,OR,11/30/2006 20:00 +Sacramento,,TRIANGLE,CA,11/30/2006 22:00 +Carrollton,,OTHER,MO,11/30/2006 23:00 +Nelsonville,,TRIANGLE,OH,11/30/2006 23:45 +Carlsbad,RED BLUE,,CA,12/1/2006 1:00 +Marietta,BLUE,CIRCLE,GA,12/1/2006 6:15 +Mechanicsville,,TRIANGLE,VA,12/1/2006 6:30 +Louisa,,DISK,KY,12/1/2006 15:00 +Warner Robins,,CIGAR,GA,12/1/2006 15:30 +Cockeysville,GREEN,OTHER,MD,12/1/2006 17:00 +Coppell,,FIREBALL,TX,12/1/2006 17:16 +Topeka,GREEN,TRIANGLE,KS,12/1/2006 18:45 +Temecula,,RECTANGLE,CA,12/1/2006 18:50 +Oakland,,DISK,CA,12/1/2006 19:45 +Memphis,,OTHER,TN,12/1/2006 21:00 +Gardnerville,RED,LIGHT,NV,12/1/2006 21:10 +Upton,,LIGHT,MA,12/1/2006 22:00 +Mills River,YELLOW,SPHERE,NC,12/2/2006 0:00 +Ypsilanti,,CONE,MI,12/2/2006 2:00 +Shillington,RED,CIRCLE,PA,12/2/2006 4:35 +Satsuma,,OVAL,AL,12/2/2006 12:15 +Avila Beach,,DIAMOND,CA,12/2/2006 17:00 +West Dundee,,FORMATION,IL,12/2/2006 18:20 +Laconia,,LIGHT,NH,12/2/2006 18:30 +Newport Beach,,DISK,CA,12/2/2006 21:40 +Newport Beach,,OTHER,CA,12/2/2006 22:00 +Shillington,,CIRCLE,PA,12/3/2006 4:15 +Havre de Grace,,FIREBALL,MD,12/3/2006 5:00 +Highland Heights,,OTHER,KY,12/3/2006 5:15 +Los Angeles,RED,FIREBALL,CA,12/3/2006 6:15 +Smithland,,CYLINDER,KY,12/3/2006 15:10 +Lancaster,,CIGAR,KY,12/3/2006 17:00 +New York City,,CIRCLE,NY,12/3/2006 17:00 +South St. Paul,,LIGHT,MN,12/3/2006 18:30 +Grand Canyon,,LIGHT,AZ,12/3/2006 19:00 +Yuba City,,,CA,12/3/2006 20:00 +Los Angeles,GREEN,CIRCLE,CA,12/3/2006 20:30 +Eldorado,,OTHER,AR,12/3/2006 22:00 +Mount Shasta,,OVAL,CA,12/3/2006 22:15 +Los Angeles,,RECTANGLE,CA,12/4/2006 3:00 +Clarksville,,OVAL,TN,12/4/2006 4:00 +Apache Junction,,DISK,AZ,12/4/2006 7:00 +Hicksville,,OTHER,NY,12/4/2006 12:25 +Trinity,YELLOW,CIRCLE,TX,12/4/2006 19:00 +San Francisco Bay Area,RED,LIGHT,CA,12/5/2006 0:00 +San Francisco Bay Area,RED,LIGHT,CA,12/5/2006 0:00 +Germansville,,,PA,12/5/2006 1:30 +Albuquerque,,DISK,NM,12/5/2006 11:45 +Fairfield,,OTHER,CA,12/5/2006 11:50 +North Myrtle Beach,ORANGE,LIGHT,SC,12/5/2006 18:00 +Farmington,,LIGHT,NM,12/5/2006 18:17 +Big Pines,,DIAMOND,CA,12/5/2006 19:00 +Blairsville,RED,LIGHT,GA,12/5/2006 19:08 +Fort Wayne,,OTHER,IN,12/5/2006 21:05 +Walnut Creek,,DISK,CA,12/5/2006 21:50 +Bloomfield,,DISK,NJ,12/5/2006 22:00 +Sonoma,RED,LIGHT,CA,12/5/2006 22:38 +Kingman,,LIGHT,KS,12/5/2006 23:34 +Denver,,OVAL,CO,12/6/2006 8:00 +Louisville,,DISK,KY,12/6/2006 11:25 +Warrington,,TRIANGLE,PA,12/6/2006 17:50 +Walden,RED,TRIANGLE,NY,12/6/2006 19:00 +Ennis,,LIGHT,TX,12/6/2006 19:30 +Tampa,GREEN,RECTANGLE,FL,12/6/2006 19:30 +Maricopa,,TRIANGLE,AZ,12/6/2006 20:00 +Phoenix,ORANGE YELLOW,TRIANGLE,AZ,12/6/2006 20:00 +Lucedale,BLUE,TRIANGLE,MS,12/6/2006 20:45 +Phoenix,,FORMATION,AZ,12/6/2006 20:58 +San Francisco,YELLOW,DISK,CA,12/6/2006 21:00 +Lutz,,TRIANGLE,FL,12/7/2006 6:00 +Tampa,,TRIANGLE,FL,12/7/2006 6:20 +Zephyrhills,,TRIANGLE,FL,12/7/2006 6:20 +Surfside Beach,,LIGHT,SC,12/7/2006 8:30 +Pomona,,TRIANGLE,IL,12/7/2006 9:00 +Ukiah,,CIRCLE,CA,12/7/2006 16:00 +Harrisburg,,FORMATION,PA,12/7/2006 18:00 +Fresno,RED,CIRCLE,CA,12/7/2006 18:10 +Parker,,CIGAR,CO,12/7/2006 19:30 +Hemsted,,FLASH,TX,12/7/2006 20:30 +Indianapolis,,CIRCLE,IN,12/7/2006 22:07 +Conrad,,,MT,12/7/2006 22:30 +San Diego,,TRIANGLE,CA,12/7/2006 23:30 +Omaha,,SPHERE,NE,12/8/2006 6:15 +Camp Pendleton,,OTHER,CA,12/8/2006 14:00 +Hampton City,,LIGHT,VA,12/8/2006 18:45 +Columbia,,FIREBALL,MO,12/8/2006 19:30 +Ottawa,GREEN,FIREBALL,IL,12/8/2006 19:30 +Pittsburg,,,MO,12/8/2006 19:30 +Pulaski,,OTHER,VA,12/8/2006 19:30 +St. Ann,,FIREBALL,MO,12/8/2006 19:30 +Las Vegas,,CYLINDER,NV,12/8/2006 21:00 +Newport Beach,,DISK,CA,12/8/2006 21:00 +Englewood,,TRIANGLE,CO,12/8/2006 21:45 +Santa Fe,RED,RECTANGLE,NM,12/8/2006 21:50 +Valencia,,RECTANGLE,NM,12/8/2006 21:50 +Griffithsville,,CYLINDER,WV,12/8/2006 22:30 +Camp Pendleton,,OTHER,CA,12/8/2006 23:00 +Buffalo,,RECTANGLE,MN,12/9/2006 1:45 +Monticello,RED ORANGE,SPHERE,KY,12/9/2006 5:35 +Yuma,,LIGHT,AZ,12/9/2006 5:35 +Tallahassee,,TRIANGLE,FL,12/9/2006 9:00 +California,,,CA,12/9/2006 12:00 +Nine Palms,,,CA,12/9/2006 12:00 +Twenty Nine Palms,,,CA,12/9/2006 12:00 +Twenty Nine Palms,,OTHER,CA,12/9/2006 12:00 +Cedar Ridge,,OVAL,AZ,12/9/2006 15:35 +Huntersville,,RECTANGLE,NC,12/9/2006 18:00 +Southport,,LIGHT,NC,12/9/2006 18:22 +Wewahitchka,RED,FIREBALL,FL,12/9/2006 20:01 +Saint Paul,,CHEVRON,MN,12/9/2006 20:33 +Greensboro,,LIGHT,NC,12/9/2006 20:53 +Waycross,,FIREBALL,GA,12/9/2006 21:30 +Bettendorf,,TRIANGLE,IA,12/9/2006 21:45 +Bloomfield,,DIAMOND,MI,12/9/2006 22:15 +Marina Del Rey,,CIRCLE,CA,12/9/2006 23:01 +Jacksonville,,OTHER,FL,12/10/2006 2:45 +Pittstown,,OVAL,NJ,12/10/2006 3:00 +Columbus,,CIRCLE,OH,12/10/2006 12:45 +Muncie,YELLOW,DISK,IN,12/10/2006 13:35 +Ukiah,,CIGAR,CA,12/10/2006 16:00 +Marked Tree,,CHEVRON,AR,12/10/2006 20:00 +Trumann,,CHEVRON,AR,12/10/2006 20:00 +Frostburg,,FLASH,MD,12/10/2006 20:45 +Riga,,OTHER,MI,12/11/2006 1:32 +Columbus,,CONE,OH,12/11/2006 10:40 +Yuma,RED,DISK,AZ,12/11/2006 17:00 +Santa Clara,,CIRCLE,UT,12/11/2006 19:40 +Conrad,,VARIOUS,MT,12/11/2006 21:00 +San Diego,,LIGHT,CA,12/11/2006 21:13 +San Diego,,LIGHT,CA,12/11/2006 21:13 +Bridgeville,,TRIANGLE,PA,12/11/2006 22:53 +Rochester,,OVAL,NH,12/11/2006 23:55 +Gentry,,TRIANGLE,AR,12/12/2006 3:35 +Highway 371,,TRIANGLE,NM,12/12/2006 4:12 +Studio City,,DISK,CA,12/12/2006 10:00 +Iowa City,GREEN,LIGHT,IA,12/12/2006 20:00 +San Diego,,LIGHT,CA,12/12/2006 21:30 +Ashgrove,BLUE,,MO,12/12/2006 22:15 +Kansas City,RED,TRIANGLE,MO,12/12/2006 23:30 +Canton,GREEN,FLASH,OH,12/13/2006 1:00 +Northglenn,,LIGHT,CO,12/13/2006 5:00 +Williamsburg,RED GREEN BLUE,,OH,12/13/2006 7:00 +Cataumet,,,MA,12/13/2006 16:30 +Tularosa,,FIREBALL,NM,12/13/2006 18:07 +Canton,,FIREBALL,IL,12/13/2006 19:30 +Columbus,,DIAMOND,IN,12/13/2006 19:35 +Massillon,GREEN,CIRCLE,OH,12/13/2006 20:15 +Visalia,YELLOW,LIGHT,CA,12/13/2006 20:20 +Florence,,LIGHT,SC,12/13/2006 20:30 +Newport,,DISK,CA,12/13/2006 20:35 +Walls,,,MS,12/13/2006 21:20 +Nixa,ORANGE,SPHERE,MO,12/13/2006 22:54 +Chicago,,,IL,12/13/2006 23:00 +Indiana,,FORMATION,PA,12/13/2006 23:35 +Buffalo,,LIGHT,NY,12/13/2006 23:40 +Inola,YELLOW,CIRCLE,OK,12/14/2006 1:00 +Summit,,CIRCLE,IL,12/14/2006 9:30 +Manheim,,LIGHT,PA,12/14/2006 17:15 +Annville,RED,SPHERE,PA,12/14/2006 17:30 +Overland Park,,OTHER,KS,12/14/2006 19:00 +Dunn,,TRIANGLE,NC,12/14/2006 19:30 +Richmond,,CIRCLE,CA,12/14/2006 21:30 +Unadilla,,DISK,NY,12/14/2006 23:00 +McMinnville,,CIRCLE,OR,12/15/2006 0:01 +Deerfield,,LIGHT,IL,12/15/2006 1:00 +Green Oaks,,CIRCLE,IL,12/15/2006 1:00 +Northeastern,,CONE,TX,12/15/2006 1:00 +Concord,,,CA,12/15/2006 5:30 +Cincinnati,,LIGHT,OH,12/15/2006 6:20 +Lebanon,,,OH,12/15/2006 10:00 +Snellville,,,GA,12/15/2006 11:43 +Wasilla,,OVAL,AK,12/15/2006 12:00 +East Providence,,CIRCLE,RI,12/15/2006 15:00 +Littleton,,OVAL,CO,12/15/2006 15:00 +Niles,,CIGAR,MI,12/15/2006 17:30 +Tallmadge,,TRIANGLE,OH,12/15/2006 17:30 +Flovilla,,LIGHT,GA,12/15/2006 18:28 +Moss Bluff,,LIGHT,LA,12/15/2006 19:00 +Silver Springs,,TRIANGLE,NV,12/15/2006 19:30 +Boca Raton,,LIGHT,FL,12/15/2006 19:33 +Mt. Juliet,,,TN,12/15/2006 21:15 +Winchester,,FLASH,OH,12/15/2006 21:30 +Harbor Springs,,CIRCLE,MI,12/15/2006 21:48 +Novato,,LIGHT,CA,12/16/2006 0:34 +Baltimore,,,MD,12/16/2006 6:30 +Port Huron,,SPHERE,MI,12/16/2006 6:41 +Bellaire,,FIREBALL,OH,12/16/2006 7:00 +Butler,,,OH,12/16/2006 7:00 +Cadiz,,VARIOUS,OH,12/16/2006 7:00 +Cadiz,,VARIOUS,OH,12/16/2006 7:00 +Fairfax County,,CIRCLE,VA,12/16/2006 7:00 +North Jackson,,CONE,OH,12/16/2006 7:00 +Pottstown,,SPHERE,PA,12/16/2006 7:00 +Reading,,FIREBALL,PA,12/16/2006 7:00 +South of New Holland,,TRIANGLE,PA,12/16/2006 7:00 +Stafford,,,VA,12/16/2006 7:00 +Valencia,,,PA,12/16/2006 7:00 +Dunbar,,SPHERE,PA,12/16/2006 7:02 +Beaver,,,PA,12/16/2006 7:03 +Centerville,,CYLINDER,PA,12/16/2006 7:03 +Millersburg,,FIREBALL,OH,12/16/2006 7:05 +Canton,,SPHERE,OH,12/16/2006 7:10 +Elizabethtown,BLUE,LIGHT,KY,12/16/2006 7:20 +New Castle,,VARIOUS,VA,12/16/2006 7:29 +Benton,,LIGHT,OH,12/16/2006 8:00 +Altamonte Springs,,DISK,FL,12/16/2006 12:45 +Burbank,,FORMATION,CA,12/16/2006 15:30 +Union City,,,NJ,12/16/2006 17:30 +Denver,,LIGHT,CO,12/16/2006 18:45 +Knoxville,,,TN,12/16/2006 19:00 +Decatur,,LIGHT,GA,12/16/2006 20:00 +Hershey,,CIGAR,PA,12/16/2006 20:00 +"Osgood, Pierceville, Milan",,OTHER,IN,12/16/2006 21:00 +Crosby,,OTHER,TX,12/16/2006 22:00 +Austin,,LIGHT,TX,12/16/2006 23:00 +Ft. Drum,,DISK,FL,12/17/2006 17:15 +Manitou Beach,,FIREBALL,MI,12/17/2006 18:51 +Opp,,CIRCLE,AL,12/17/2006 19:58 +Freehold,,LIGHT,NJ,12/17/2006 22:00 +Williamsport,,TRIANGLE,MD,12/17/2006 23:07 +Joshua Tree Nat'l Park,,,CA,12/18/2006 0:01 +Duluth,,FIREBALL,GA,12/18/2006 7:09 +Garden City,,FLASH,MI,12/18/2006 7:22 +Warren,,CYLINDER,ME,12/18/2006 12:17 +Mt. Hood,,CIGAR,WA,12/18/2006 14:02 +San Rafael,,VARIOUS,CA,12/18/2006 15:05 +Rockaway,,FIREBALL,NJ,12/18/2006 16:00 +New Bedford,,CIRCLE,MA,12/18/2006 18:00 +Clearwater,,LIGHT,FL,12/18/2006 19:02 +Garden Grove,,LIGHT,CA,12/18/2006 20:00 +Joshua Tree,,LIGHT,CA,12/18/2006 20:00 +Apex,,TRIANGLE,NC,12/18/2006 23:30 +Tafton,YELLOW,CROSS,PA,12/19/2006 5:45 +Clarksville,,DIAMOND,TN,12/19/2006 18:00 +Lancaster,,LIGHT,NY,12/19/2006 18:00 +Mustang,,TRIANGLE,NV,12/19/2006 18:33 +Ridgecrest,,FIREBALL,CA,12/19/2006 20:40 +Sheridan,RED GREEN,LIGHT,WY,12/19/2006 21:00 +Elmwood Park,,LIGHT,IL,12/20/2006 0:00 +Corydon,,LIGHT,IN,12/20/2006 7:20 +Summerville,,LIGHT,SC,12/20/2006 17:40 +Pahoa,ORANGE,EGG,HI,12/20/2006 19:20 +Rochester,,CYLINDER,NY,12/21/2006 10:00 +Queen Creek,,CIGAR,AZ,12/21/2006 10:40 +Marana,,,AZ,12/21/2006 11:00 +Morrison,RED,OTHER,CO,12/21/2006 12:00 +New Milford,,CIGAR,CT,12/21/2006 20:00 +Maricopa,ORANGE,LIGHT,AZ,12/21/2006 20:18 +Dumont,,,NJ,12/21/2006 22:00 +Susanville,,LIGHT,CA,12/22/2006 22:30 +Pleasanton,,CIRCLE,CA,12/23/2006 1:49 +Raymond,,,MN,12/23/2006 3:10 +calistoga,,VARIOUS,CA,12/23/2006 15:10 +Williamsport,,TRIANGLE,MD,12/23/2006 16:00 +Virginia Beach,,,VA,12/23/2006 17:56 +Circleville,,OTHER,OH,12/23/2006 23:00 +Ventura,GREEN,LIGHT,CA,12/23/2006 23:00 +Anthem,,TRIANGLE,AZ,12/24/2006 0:00 +Anthem,,TRIANGLE,AZ,12/24/2006 0:00 +Torrington,,TRIANGLE,CT,12/24/2006 0:00 +Indianapolis,,,IN,12/24/2006 2:55 +Manteca,,OVAL,CA,12/24/2006 3:00 +Manteca,,DISK,CA,12/24/2006 3:30 +Los Angeles,,LIGHT,CA,12/24/2006 4:00 +Drummond Island,,TRIANGLE,MI,12/24/2006 10:00 +Berlin,ORANGE,TRIANGLE,CT,12/24/2006 17:30 +Arcadia,,,NY,12/24/2006 19:30 +Santa Fe,ORANGE,DIAMOND,NM,12/24/2006 19:30 +Farmington,,TRIANGLE,MI,12/24/2006 20:00 +Sanford,RED GREEN,RECTANGLE,MI,12/24/2006 20:00 +Woodland,ORANGE,LIGHT,CA,12/24/2006 20:35 +Indianapolis,RED,FIREBALL,IN,12/24/2006 22:00 +Elmwood Pk,,LIGHT,IL,12/24/2006 23:13 +Lancaster,,FORMATION,PA,12/24/2006 23:30 +Fenton,,OTHER,MI,12/25/2006 0:00 +Baltimore,BLUE,LIGHT,MD,12/25/2006 2:00 +Davill,,DISK,IN,12/25/2006 7:32 +Henderson,,SPHERE,NV,12/25/2006 8:00 +Los Angeles,,VARIOUS,ID,12/25/2006 14:10 +Porterville,,LIGHT,CA,12/25/2006 18:30 +Rockford,RED BLUE,CIRCLE,IA,12/25/2006 20:47 +Panama City,,OVAL,FL,12/25/2006 22:30 +Elmwood Pk,,LIGHT,IL,12/26/2006 0:00 +Toulon,,FLASH,IL,12/26/2006 6:30 +Orlando,,RECTANGLE,FL,12/26/2006 11:30 +Raleigh,,VARIOUS,NC,12/26/2006 15:14 +St. George,,FIREBALL,UT,12/26/2006 19:00 +Lafayette,,TRIANGLE,LA,12/26/2006 21:41 +Oklahoma City,,FLASH,OK,12/26/2006 22:30 +Mocksville,,CIRCLE,NC,12/27/2006 2:00 +Bellvue,BLUE,FLASH,ID,12/27/2006 7:40 +San Diego,,LIGHT,CA,12/27/2006 16:55 +Flemingsburg,,DIAMOND,KY,12/27/2006 18:00 +Richmond,,,VA,12/27/2006 18:00 +Perry,,EGG,GA,12/27/2006 18:25 +St. George,GREEN,FIREBALL,UT,12/27/2006 20:30 +Aliso Viejo,,CIRCLE,CA,12/27/2006 21:15 +Carrollton,,TRIANGLE,TX,12/27/2006 22:30 +Panama City Beach,GREEN,FORMATION,FL,12/28/2006 1:00 +Michigan,,LIGHT,MI,12/28/2006 6:50 +Duluth,,,GA,12/28/2006 7:09 +Indiana,,FORMATION,PA,12/28/2006 7:26 +Huntington Beach,,CIRCLE,CA,12/28/2006 15:00 +Bakersfield,ORANGE,SPHERE,CA,12/28/2006 17:51 +Bolivar,,LIGHT,PA,12/28/2006 20:20 +Apollo,,CIRCLE,PA,12/28/2006 20:45 +Clayton,BLUE,CIRCLE,MI,12/28/2006 21:30 +Petaluma,,DIAMOND,CA,12/28/2006 21:30 +Elko,,SPHERE,NV,12/29/2006 14:00 +Michigan City,,TRIANGLE,IN,12/29/2006 20:00 +Auburn,,CIRCLE,IL,12/29/2006 21:00 +Blue Ridge,,CIRCLE,GA,12/29/2006 23:00 +Westport,,CIRCLE,MA,12/30/2006 1:00 +San Rafael,,,CA,12/30/2006 3:00 +Harrisburg,,LIGHT,PA,12/30/2006 18:30 +Venice,,FORMATION,CA,12/30/2006 18:30 +Denver,,LIGHT,CO,12/30/2006 20:20 +Holtville,,CIRCLE,CA,12/31/2006 11:35 +Santa Rsoa,,LIGHT,CA,12/31/2006 11:59 +New York City,,SPHERE,NY,12/31/2006 14:20 +Danville,,,IL,12/31/2006 15:00 +Warren,,OTHER,VT,12/31/2006 15:00 +East Mesa,,FIREBALL,AZ,12/31/2006 16:30 +Milwaukee,,EGG,WI,12/31/2006 17:30 +Foresthill,,CIRCLE,CA,12/31/2006 18:00 +Red Bluff,,LIGHT,CA,12/31/2006 18:52 +Tecumseh,,LIGHT,OK,12/31/2006 19:45 +Philadelphia,,,PA,12/31/2006 20:30 +Fairbanks,ORANGE,FIREBALL,AK,12/31/2006 21:47 +Brawley,,CIRCLE,CA,12/31/2006 22:00 +Merritt Island,,CIRCLE,FL,12/31/2006 22:00 +Paramount,,LIGHT,CA,12/31/2006 22:30 +Imperial Desert,,OVAL,CA,12/31/2006 23:00 +Whittier,,CIRCLE,CA,12/31/2006 23:00 +Dover,,SPHERE,DE,1/1/2007 0:00 +Windsor,,OTHER,CA,1/1/2007 0:00 +Windsor,YELLOW,CIRCLE,CA,1/1/2007 0:01 +Windsor,,LIGHT,CA,1/1/2007 0:01 +Ellicott City,RED,CIRCLE,MD,1/1/2007 0:06 +Montclair,,FIREBALL,CA,1/1/2007 0:06 +Windsor,,FORMATION,CA,1/1/2007 0:10 +Cedar Falls,,LIGHT,IA,1/1/2007 0:11 +Cape Coral,,FIREBALL,FL,1/1/2007 0:20 +Bensenville,,FORMATION,IL,1/1/2007 1:00 +Riverside,,LIGHT,NJ,1/1/2007 1:30 +White Pass,,SPHERE,WA,1/1/2007 1:37 +Ligonier,,LIGHT,PA,1/1/2007 2:00 +Miami,,OVAL,FL,1/1/2007 2:00 +New York City,,DISK,NY,1/1/2007 3:00 +Goleta,,LIGHT,CA,1/1/2007 4:20 +Pasadena,,OTHER,CA,1/1/2007 8:00 +Seattle,,OTHER,WA,1/1/2007 10:00 +Manitou Beach,,DISK,MI,1/1/2007 12:00 +Cape May,,DISK,NJ,1/1/2007 13:00 +Amityville,,VARIOUS,NY,1/1/2007 14:00 +San Diego,,OVAL,CA,1/1/2007 14:00 +Lake Station,,LIGHT,IN,1/1/2007 15:00 +St. Petersburg,,DISK,FL,1/1/2007 15:00 +Miami Lakes,,VARIOUS,FL,1/1/2007 16:30 +Eagle Pass,,CIRCLE,TX,1/1/2007 18:08 +Chicago,,LIGHT,IL,1/1/2007 19:00 +Magnolia,,,AR,1/1/2007 19:00 +Salem,,,OR,1/1/2007 19:30 +Midlothian,ORANGE,OTHER,IL,1/1/2007 20:21 +Brightwood,,CIRCLE,VA,1/1/2007 21:30 +Lake Havasu City,ORANGE,SPHERE,AZ,1/1/2007 21:45 +Birmingham,,DISK,AL,1/1/2007 23:30 +Saint Clair Shores,RED,,MI,1/1/2007 23:30 +Seattle,RED,FIREBALL,WA,1/2/2007 0:00 +Chicago,,FORMATION,IL,1/2/2007 3:10 +Mountain City,,DISK,TN,1/2/2007 7:25 +East Windsor,,LIGHT,NJ,1/2/2007 10:15 +Canton,,DISK,OH,1/2/2007 13:00 +Comstock Township,,EGG,MI,1/2/2007 13:00 +Carpendale,,TRIANGLE,WV,1/2/2007 14:00 +Chicora,,SPHERE,PA,1/2/2007 14:00 +Tinley Park,,LIGHT,IL,1/2/2007 17:30 +Delaware,,LIGHT,OH,1/2/2007 17:45 +Columbus,GREEN,LIGHT,MS,1/2/2007 18:00 +Entiat,,LIGHT,WA,1/2/2007 18:15 +Clinton Township,,FORMATION,MI,1/2/2007 18:30 +Seattle,,LIGHT,WA,1/2/2007 18:45 +Newport Beach,,,CA,1/2/2007 19:00 +Clarksburg,,LIGHT,MD,1/2/2007 20:00 +Millerton,,LIGHT,NY,1/2/2007 20:00 +Adair,ORANGE,CIRCLE,IA,1/2/2007 21:00 +Painted Post,,LIGHT,NY,1/2/2007 21:15 +Worcester,GREEN,FIREBALL,MA,1/2/2007 22:15 +Dauphin,,OTHER,PA,1/2/2007 22:30 +Columbia City,ORANGE,LIGHT,IN,1/2/2007 23:00 +Garden City,,VARIOUS,NY,1/2/2007 23:42 +Fairlee,,,VT,1/3/2007 0:00 +Altmar,ORANGE,LIGHT,NY,1/3/2007 3:00 +Barton Hills,,DIAMOND,MI,1/3/2007 3:45 +Ypsilanti,,LIGHT,MI,1/3/2007 7:40 +Chattanooga,,,TN,1/3/2007 14:00 +Vernon,,OVAL,WI,1/3/2007 16:30 +San Martin,BLUE,CIRCLE,CA,1/3/2007 16:40 +Charlotte,,LIGHT,NC,1/3/2007 17:00 +Millerton,,LIGHT,NY,1/3/2007 17:41 +Cerritos,,LIGHT,CA,1/3/2007 17:45 +New Florence,,OTHER,MO,1/3/2007 17:55 +Newtown,BLUE,RECTANGLE,CT,1/3/2007 18:00 +Zanesville,,OTHER,OH,1/3/2007 18:00 +Burlington,,CIRCLE,NC,1/3/2007 18:15 +Houston,,OTHER,TX,1/3/2007 18:30 +Oak Hill,RED,FORMATION,WV,1/3/2007 18:45 +San Pedro,,DISK,CA,1/3/2007 20:30 +Crown Point,,CONE,IN,1/3/2007 20:50 +Nebraska,GREEN,LIGHT,NE,1/3/2007 22:30 +Grand Pass,,FIREBALL,MO,1/3/2007 22:38 +Simi Valley,RED,,CA,1/3/2007 22:38 +Washington,GREEN,LIGHT,MO,1/3/2007 22:38 +Melvern,,,KS,1/3/2007 22:45 +Marks,,DISK,MS,1/3/2007 23:00 +Buford,,RECTANGLE,GA,1/3/2007 23:15 +Chambersburg,,CYLINDER,PA,1/3/2007 23:30 +Shattuck,GREEN BLUE,FIREBALL,OK,1/3/2007 23:30 +Taylorsville,,LIGHT,GA,1/4/2007 5:10 +Mohnton,RED,LIGHT,PA,1/4/2007 6:00 +Manhattan,,FIREBALL,MT,1/4/2007 6:14 +Arvada,,CYLINDER,CO,1/4/2007 6:15 +Rimrock,,OTHER,AZ,1/4/2007 6:15 +St. Joseph City,RED,FORMATION,AZ,1/4/2007 6:16 +Longmont,,FORMATION,CO,1/4/2007 6:20 +Orwigsburg,,OVAL,PA,1/4/2007 8:30 +Santa Barbara,,DISK,CA,1/4/2007 17:15 +Round Rock,,VARIOUS,TX,1/4/2007 18:00 +Pittsfield,,LIGHT,MA,1/4/2007 19:15 +Chandler,,CIRCLE,AZ,1/4/2007 22:00 +Antioch,RED,FIREBALL,CA,1/4/2007 22:46 +Tacoma,,LIGHT,WA,1/4/2007 23:45 +Nevada,,LIGHT,MO,1/5/2007 2:00 +Kansas City,,CYLINDER,MO,1/5/2007 2:23 +Douglas,,OTHER,MI,1/5/2007 6:00 +Palatine,,CHEVRON,IL,1/5/2007 12:00 +Blackshear,GREEN,FIREBALL,GA,1/5/2007 18:00 +San Bernardino,,TRIANGLE,CA,1/5/2007 20:00 +Prescott,,TEARDROP,AZ,1/5/2007 20:30 +Huntsville,,LIGHT,AL,1/5/2007 20:59 +San Diego,,LIGHT,CA,1/5/2007 21:15 +Audubon,,,IA,1/5/2007 22:08 +Phoenix,,VARIOUS,AZ,1/6/2007 1:01 +Highland Park,,CIRCLE,IL,1/6/2007 3:58 +Newtown,,CIRCLE,CT,1/6/2007 12:40 +Boulder Creek,,OTHER,CA,1/6/2007 16:30 +Forest Grove,BLUE,SPHERE,OR,1/6/2007 18:35 +Smoaks,,FIREBALL,SC,1/6/2007 18:45 +Poughkeepsie,RED,,NY,1/6/2007 19:00 +Miami,,OVAL,FL,1/6/2007 20:00 +Sturbridge,,CYLINDER,MA,1/6/2007 20:30 +Cameron,,CONE,MO,1/6/2007 23:07 +Mesa,,CIRCLE,AZ,1/6/2007 23:30 +Mesa,,CIRCLE,AZ,1/6/2007 23:30 +Cleveland,,,OH,1/7/2007 0:00 +Downey,,FIREBALL,CA,1/7/2007 2:30 +Honey Grove,,CIRCLE,TX,1/7/2007 6:30 +Centralia,,CIRCLE,WA,1/7/2007 7:30 +Utopia,,OTHER,TX,1/7/2007 14:00 +Allentown,,OTHER,PA,1/7/2007 16:30 +Sacramento,,TEARDROP,CA,1/7/2007 16:34 +Edgewater,,CIRCLE,FL,1/7/2007 18:00 +Centralia,,CIRCLE,WA,1/7/2007 19:30 +Snohomish,,LIGHT,WA,1/7/2007 20:05 +Tumwater,YELLOW,LIGHT,WA,1/7/2007 20:50 +Shawnee,RED,LIGHT,OK,1/7/2007 21:30 +Quincy,,OVAL,WA,1/8/2007 6:40 +Black Canyon City,,TRIANGLE,AZ,1/8/2007 7:00 +Otley,,SPHERE,IA,1/8/2007 15:56 +Corpus Christi,,SPHERE,TX,1/8/2007 17:00 +Ventura,,SPHERE,CA,1/8/2007 17:25 +Las Vegas,,LIGHT,NV,1/8/2007 17:30 +Los Angeles,GREEN BLUE,FIREBALL,CA,1/8/2007 17:39 +Rowesville,RED GREEN,FIREBALL,SC,1/8/2007 18:45 +Louisville,,LIGHT,AR,1/8/2007 19:00 +Newington,GREEN,LIGHT,GA,1/8/2007 19:00 +Tupelo,,CIRCLE,MS,1/8/2007 23:00 +Hampden,ORANGE YELLOW,FIREBALL,ME,1/8/2007 23:45 +Gladstone,,OTHER,MO,1/9/2007 1:00 +Dunn,,OTHER,NC,1/9/2007 6:00 +Pontiac,,SPHERE,MI,1/9/2007 7:35 +Morehead,,CIRCLE,KY,1/9/2007 12:00 +Miami,,FLASH,FL,1/9/2007 18:34 +Crosby,,DISK,TX,1/9/2007 19:00 +El Dorado,,TRIANGLE,KS,1/9/2007 19:30 +East Meadow,,,NY,1/9/2007 23:39 +Moore,,TEARDROP,OK,1/10/2007 0:05 +Katy,,LIGHT,TX,1/10/2007 6:43 +Orwigsburg,,SPHERE,PA,1/10/2007 12:00 +Encinitas,,DISK,CA,1/10/2007 17:27 +Desoto,,FIREBALL,MO,1/10/2007 17:35 +Kissimmee,,CYLINDER,FL,1/10/2007 17:45 +Powell,,OTHER,OH,1/10/2007 18:15 +Ludington,,CIRCLE,MI,1/10/2007 18:30 +New York City,GREEN BLUE,OTHER,NY,1/10/2007 18:45 +Shawnee,,,WY,1/10/2007 19:00 +Pocahontas,,LIGHT,AR,1/10/2007 20:55 +Glen Ellyn,,FORMATION,IL,1/10/2007 21:00 +Greenwood,YELLOW,CIRCLE,MS,1/10/2007 21:00 +Hayesville,,CIRCLE,NC,1/10/2007 22:00 +Jacksonville,,LIGHT,FL,1/10/2007 22:00 +Inverness,,TRIANGLE,IL,1/10/2007 22:01 +Council Bluffs,,CHEVRON,IA,1/10/2007 23:00 +South Shore,GREEN,DISK,KY,1/10/2007 23:00 +Council Bluffs,,CHEVRON,IA,1/10/2007 23:05 +Toms River,,FIREBALL,NJ,1/10/2007 23:30 +Rockford,,TRIANGLE,IL,1/11/2007 6:45 +Downingtown,,CIGAR,PA,1/11/2007 8:30 +Riverside,,CIRCLE,CA,1/11/2007 17:45 +Andover,,OVAL,KS,1/11/2007 18:55 +McMinnville,,SPHERE,OR,1/11/2007 19:30 +Manteca,,DISK,CA,1/11/2007 20:15 +St. Peters,,,MO,1/11/2007 22:19 +Meriden,,CIRCLE,CT,1/12/2007 16:12 +Millerton,BLUE,OTHER,NY,1/12/2007 17:00 +Boston,,FIREBALL,MA,1/12/2007 17:09 +Wellesley,,FIREBALL,MA,1/12/2007 17:09 +Dallas,,DISK,TX,1/12/2007 18:00 +Oxnard,,CROSS,CA,1/12/2007 20:00 +San Antonio,,TRIANGLE,TX,1/13/2007 0:00 +Lisbon,,,NH,1/13/2007 2:50 +Seattle,RED GREEN,LIGHT,WA,1/13/2007 3:00 +Dunnellon,,LIGHT,FL,1/13/2007 10:10 +Burbank,,CYLINDER,CA,1/13/2007 11:15 +Los Angeles,,CIRCLE,CA,1/13/2007 12:30 +Tucson,,,AZ,1/13/2007 18:00 +Lihue,,,HI,1/13/2007 18:10 +Stockton,,TRIANGLE,CA,1/13/2007 19:30 +Poland,,OVAL,ME,1/13/2007 20:00 +Bonney Lake,,LIGHT,WA,1/13/2007 23:00 +St. Clair,,FLASH,MO,1/14/2007 5:00 +Murfreesboro,ORANGE GREEN,LIGHT,TN,1/14/2007 17:00 +Carrboro,,CIRCLE,NC,1/14/2007 18:23 +Bremerton,,FORMATION,WA,1/14/2007 18:30 +Chiloquin,GREEN BLUE,CIRCLE,OR,1/14/2007 19:00 +Walnut Creek,,,CA,1/14/2007 19:00 +Navarre,,TRIANGLE,FL,1/14/2007 21:50 +Bradenton,,LIGHT,FL,1/14/2007 23:00 +Oakland,,FIREBALL,CA,1/14/2007 23:00 +Vancouver,,,WA,1/14/2007 23:00 +Daly City,,CIRCLE,CA,1/15/2007 1:45 +Clemson,,OVAL,SC,1/15/2007 2:30 +Orange City,RED ORANGE YELLOW,FIREBALL,FL,1/15/2007 7:45 +Beaverton,,VARIOUS,OR,1/15/2007 14:00 +Marshalltown,,OVAL,IA,1/15/2007 15:00 +Babbitt,,LIGHT,MN,1/15/2007 17:30 +West Mifflin,,SPHERE,PA,1/15/2007 18:27 +Fayetteville,,LIGHT,NC,1/15/2007 19:00 +Abbeville,GREEN,LIGHT,SC,1/15/2007 20:00 +Cocoa Beach,,TRIANGLE,FL,1/15/2007 20:00 +Jacksonville,GREEN,,FL,1/15/2007 21:00 +Liberty,,,MO,1/15/2007 22:30 +Eagle River,,,WI,1/16/2007 0:10 +St. Petersburg; Madera Beach,,,FL,1/16/2007 0:12 +Colchester,,LIGHT,VT,1/16/2007 6:00 +Rockville,,DISK,MD,1/16/2007 11:30 +Tampa,,DISK,FL,1/16/2007 12:00 +Burbank,,DISK,CA,1/16/2007 17:50 +South Milford,,LIGHT,IN,1/16/2007 18:00 +Woodville,,LIGHT,AL,1/16/2007 18:00 +High Point,,TRIANGLE,NC,1/16/2007 18:30 +Caseyville,,TRIANGLE,IL,1/16/2007 20:00 +High Point,,CHEVRON,NC,1/16/2007 21:00 +Paincines,,LIGHT,CA,1/16/2007 21:00 +Salinas,,OVAL,CA,1/16/2007 21:30 +McKinney,,CIGAR,TX,1/16/2007 22:00 +Paincines,,LIGHT,CA,1/16/2007 23:00 +Willow Street,,LIGHT,PA,1/16/2007 23:30 +Southgate,,TRIANGLE,MI,1/16/2007 23:45 +Winston-Salem,,OTHER,NC,1/17/2007 0:15 +Miami,,LIGHT,FL,1/17/2007 1:30 +Gila Bend,,SPHERE,AZ,1/17/2007 9:00 +Grayslake,,DISK,IL,1/17/2007 10:30 +Laguna Beach,,SPHERE,CA,1/17/2007 16:30 +Louisiana,,CIGAR,LA,1/17/2007 17:35 +Del Mar,,SPHERE,CA,1/17/2007 18:15 +Newport Beach,,,CA,1/17/2007 18:40 +West Chester,RED,TRIANGLE,PA,1/17/2007 19:32 +Davenport,,LIGHT,FL,1/17/2007 20:00 +Mokena,RED,TRIANGLE,IL,1/17/2007 20:02 +Drums,,DISK,PA,1/17/2007 20:30 +Bruceton Mills,,OVAL,WV,1/17/2007 20:45 +New York City,,LIGHT,NY,1/18/2007 7:32 +Rochester,BLUE,CIRCLE,NY,1/18/2007 7:35 +Hebron,,LIGHT,CT,1/18/2007 12:00 +Bovey,,LIGHT,MN,1/18/2007 18:30 +Dallas,RED,TRIANGLE,TX,1/18/2007 21:25 +San Antonio,,CHEVRON,TX,1/18/2007 22:55 +Felton,,CIRCLE,CA,1/19/2007 6:15 +Colby,,VARIOUS,KS,1/19/2007 11:07 +Salyersville,BLUE,LIGHT,KY,1/19/2007 16:00 +Springfield,,TRIANGLE,MO,1/19/2007 20:00 +Collierville,RED BLUE,TRIANGLE,TN,1/19/2007 23:10 +Enola,,FORMATION,PA,1/19/2007 23:14 +Ogden,,TEARDROP,UT,1/19/2007 23:45 +Oneida,RED BLUE,OVAL,NY,1/20/2007 0:10 +Elizabeth,,CIRCLE,WV,1/20/2007 1:00 +Monroe,,CIGAR,MI,1/20/2007 8:20 +Kannapolis,,RECTANGLE,NC,1/20/2007 8:31 +Eureka,,TRIANGLE,CA,1/20/2007 10:00 +Tacoma,,SPHERE,WA,1/20/2007 12:35 +Gurnee,RED,LIGHT,IL,1/20/2007 17:50 +Paramount,,DISK,CA,1/20/2007 18:00 +Tampa,RED BLUE,EGG,FL,1/20/2007 18:25 +Paramount,RED,LIGHT,CA,1/20/2007 18:45 +LaPorte,,TRIANGLE,IN,1/20/2007 18:48 +Newtown,,,CT,1/20/2007 19:00 +Ocean City,,OTHER,MD,1/20/2007 19:57 +Jordan,,TRIANGLE,MN,1/20/2007 21:01 +Kirkland,RED,OVAL,WA,1/21/2007 2:00 +San Francisco,RED,OTHER,CA,1/21/2007 14:00 +Lebanon,ORANGE,LIGHT,PA,1/21/2007 21:30 +Norwalk,,VARIOUS,OH,1/21/2007 23:00 +Miami,,DISK,FL,1/22/2007 17:30 +Sebring,,FIREBALL,FL,1/22/2007 20:30 +Bellflower,,FORMATION,CA,1/22/2007 21:00 +Wilsonville,,LIGHT,OR,1/22/2007 21:00 +Happy Valley,,LIGHT,OR,1/22/2007 22:30 +Quartzite,,CIRCLE,AZ,1/22/2007 23:00 +Ada,,TEARDROP,MN,1/23/2007 1:15 +Baltimore,,TRIANGLE,MD,1/23/2007 12:00 +New York City,,CIRCLE,NY,1/23/2007 16:30 +Ridgefield,,LIGHT,WA,1/23/2007 17:30 +Callahan,,LIGHT,FL,1/23/2007 18:00 +Franklin,ORANGE,TRIANGLE,VA,1/23/2007 19:40 +Seattle,RED,LIGHT,WA,1/23/2007 20:55 +Carroll Valley,YELLOW,FIREBALL,PA,1/23/2007 21:00 +Hoover,RED,TRIANGLE,AL,1/23/2007 21:00 +Dover,,TRIANGLE,DE,1/23/2007 22:30 +Lake Norman,,,NC,1/24/2007 0:00 +Burbank,,LIGHT,CA,1/24/2007 5:00 +Mauldin,GREEN,FIREBALL,SC,1/24/2007 8:00 +Tacoma,,TRIANGLE,WA,1/24/2007 11:46 +Cudahy,,LIGHT,CA,1/24/2007 12:00 +Bunn,,CIGAR,NC,1/24/2007 12:10 +Spokane,,TRIANGLE,WA,1/24/2007 16:48 +Spokane,,TRIANGLE,WA,1/24/2007 16:48 +Fort Worth,,TRIANGLE,TX,1/24/2007 17:00 +Exeter,BLUE,VARIOUS,NH,1/24/2007 18:00 +Asheville,GREEN,,NC,1/24/2007 19:00 +Leupp,,VARIOUS,AZ,1/24/2007 19:40 +Greenville,GREEN,LIGHT,SC,1/24/2007 19:54 +Chesapeake,RED,FIREBALL,VA,1/24/2007 19:55 +Charlotte,,OTHER,NC,1/24/2007 20:00 +Franklin,,FIREBALL,NC,1/24/2007 20:00 +Greenville,,LIGHT,SC,1/24/2007 20:00 +Leicester,,CIRCLE,NC,1/24/2007 20:00 +Western Carolinas,,FIREBALL,SC,1/24/2007 20:00 +Bellevue,,OTHER,WA,1/24/2007 20:36 +Washington State,,,WA,1/25/2007 0:00 +Las Vegas,,LIGHT,NV,1/25/2007 2:10 +Grass Valley,,FLASH,CA,1/25/2007 4:45 +Cumming,,SPHERE,GA,1/25/2007 6:45 +Ashford,,TRIANGLE,WA,1/25/2007 13:30 +Aurora,,LIGHT,CO,1/25/2007 15:30 +Brewster,BLUE,LIGHT,NY,1/25/2007 18:30 +Honolulu,,FIREBALL,HI,1/25/2007 18:30 +Frankfort,ORANGE,FIREBALL,IN,1/25/2007 19:10 +Newbury Park,,LIGHT,CA,1/25/2007 19:15 +Otterbein,ORANGE,CIRCLE,IN,1/25/2007 19:30 +Springfield,,TRIANGLE,MO,1/25/2007 20:00 +Deer Park,,FIREBALL,NY,1/25/2007 20:30 +Medford,,CONE,OR,1/25/2007 21:00 +Nashville,,TRIANGLE,TN,1/25/2007 21:30 +Bath,RED GREEN,EGG,OH,1/25/2007 21:40 +Oklahoma City,RED,LIGHT,OK,1/25/2007 22:04 +Chesnee,,,SC,1/25/2007 22:55 +Houston,YELLOW,SPHERE,TX,1/25/2007 23:30 +Dixon,,DISK,IL,1/26/2007 0:54 +New York City,,OVAL,NY,1/26/2007 1:16 +Osprey,,CIRCLE,FL,1/26/2007 1:56 +Rocky Mount,,OTHER,NC,1/26/2007 4:10 +Los Angeles,,LIGHT,CA,1/26/2007 15:40 +Honolulu,,LIGHT,HI,1/26/2007 18:30 +Stockton Springs,ORANGE,LIGHT,ME,1/26/2007 19:10 +Provo,,LIGHT,UT,1/26/2007 19:40 +Summit,ORANGE,,MS,1/26/2007 21:30 +Hendersonville,,LIGHT,TN,1/26/2007 22:30 +Brighton,,,MI,1/27/2007 0:00 +Garland,,LIGHT,TX,1/27/2007 3:00 +Tifton - Omega,,CIGAR,GA,1/27/2007 6:00 +Enola,,TRIANGLE,PA,1/27/2007 7:15 +Spotsylvania,GREEN,FIREBALL,VA,1/27/2007 12:17 +Mountian Home,,SPHERE,AR,1/27/2007 17:00 +Seattle,RED,DISK,WA,1/27/2007 17:30 +Norco,BLUE,LIGHT,CA,1/27/2007 18:30 +Salem,BLUE,TRIANGLE,OR,1/27/2007 18:50 +Anchorage,RED,DISK,AK,1/27/2007 23:07 +Ballard,,CHEVRON,WA,1/28/2007 0:01 +Fallon,,CIRCLE,NV,1/28/2007 2:00 +Davison,,CIRCLE,MI,1/28/2007 13:00 +Alabama,,CIGAR,GA,1/28/2007 17:00 +Ridgefield,,LIGHT,WA,1/28/2007 18:11 +Murrieta,,LIGHT,CA,1/28/2007 18:30 +Seattle,,OVAL,WA,1/28/2007 20:00 +Elkhart,,OTHER,IN,1/28/2007 20:03 +Mesa,,LIGHT,AZ,1/28/2007 20:15 +Clarksville,BLUE,,TN,1/28/2007 20:30 +Kissimmee,,DISK,FL,1/29/2007 0:00 +Ukiah,,RECTANGLE,CA,1/29/2007 5:50 +Cohasset,,LIGHT,MA,1/29/2007 8:00 +Gilbert,,,AZ,1/29/2007 15:00 +Bloomingdale,,LIGHT,IL,1/29/2007 17:30 +Port Orchard,RED,LIGHT,WA,1/29/2007 18:00 +Bremerton,RED,LIGHT,WA,1/29/2007 18:45 +Pawleys Island,ORANGE,LIGHT,SC,1/29/2007 19:00 +Pittsburgh,,FIREBALL,PA,1/29/2007 20:00 +Arlington,,SPHERE,WA,1/29/2007 20:30 +Chicago,,LIGHT,IL,1/29/2007 23:00 +Lake Station,YELLOW BLUE,DISK,IN,1/29/2007 23:00 +Folsom,,,CA,1/30/2007 7:30 +Rockville,,CYLINDER,MD,1/30/2007 9:25 +Round Lake,,DISK,IL,1/30/2007 18:44 +Rochester,RED,,MN,1/30/2007 22:10 +Quincy,,CYLINDER,CA,1/30/2007 22:50 +Burlington,,TRIANGLE,IA,1/31/2007 1:45 +Miami,,LIGHT,FL,1/31/2007 14:00 +Martinez,,TRIANGLE,GA,1/31/2007 19:00 +Independence,,TRIANGLE,OH,2/1/2007 2:00 +West Texas,BLUE,,TX,2/1/2007 12:00 +Rock Hill,,CIGAR,SC,2/1/2007 15:00 +Bowdoinham,,TRIANGLE,ME,2/1/2007 18:45 +Los Angeles,,FIREBALL,CA,2/1/2007 20:25 +Sanford,,TRIANGLE,MI,2/1/2007 20:45 +Grand Rapids,BLUE,FIREBALL,MN,2/1/2007 21:00 +Hastings,,TRIANGLE,MI,2/1/2007 23:00 +Charlotte,ORANGE,OVAL,NC,2/1/2007 23:30 +Boynton Beach,,LIGHT,FL,2/2/2007 0:00 +St. Francis,,VARIOUS,WI,2/2/2007 1:00 +Jamaica,,FIREBALL,VT,2/2/2007 2:30 +Schaumburg,,OVAL,IL,2/2/2007 16:30 +Santa Cruz,,DISK,CA,2/2/2007 19:40 +Mt. Prospect,GREEN,LIGHT,IL,2/2/2007 23:00 +Saint Cloud,,CIGAR,FL,2/3/2007 9:30 +Vineland,,SPHERE,NJ,2/3/2007 10:18 +Pomona,,DISK,CA,2/3/2007 11:36 +Houston,,CYLINDER,TX,2/3/2007 16:53 +Columbus,,TRIANGLE,OH,2/3/2007 21:00 +Burbank,,LIGHT,CA,2/4/2007 0:00 +High Island,,,TX,2/4/2007 0:00 +Ladysmith,,CIRCLE,WI,2/4/2007 0:00 +Goleta,,OTHER,CA,2/4/2007 13:00 +Westborough,,DISK,MA,2/4/2007 15:20 +Chandler,,CIRCLE,AZ,2/4/2007 17:05 +Burbank,ORANGE,FIREBALL,CA,2/4/2007 19:30 +Auxvasse,GREEN,,MO,2/4/2007 19:47 +Truxton,GREEN BLUE,FIREBALL,MO,2/4/2007 19:55 +Bettendorf,,,IA,2/4/2007 20:00 +Naperville,,,IL,2/4/2007 20:00 +San Diego,,LIGHT,CA,2/4/2007 20:00 +Sumter,,TRIANGLE,SC,2/4/2007 20:00 +Windsor,,SPHERE,MO,2/4/2007 21:00 +King,RED ORANGE,,NC,2/4/2007 21:45 +Cole Camp,,FIREBALL,MO,2/4/2007 22:00 +Malden,,OVAL,MA,2/5/2007 1:00 +Baltimore,,CIRCLE,ME,2/5/2007 6:30 +New Tazewell,,CIGAR,TN,2/5/2007 12:30 +Douglasville,,CYLINDER,GA,2/5/2007 17:45 +Prineville,,,OR,2/5/2007 19:15 +Tucson,,OVAL,AZ,2/6/2007 13:30 +Foothill Ranch,,DISK,CA,2/6/2007 18:30 +Foothill Ranch,,DISK,CA,2/6/2007 18:30 +Buckeye,,LIGHT,AZ,2/6/2007 19:45 +Casa Grande,,LIGHT,AZ,2/6/2007 20:00 +Laconia,,DISK,NH,2/6/2007 20:00 +Phoenix,,CIRCLE,AZ,2/6/2007 20:00 +Scottsdale,,OTHER,AZ,2/6/2007 20:00 +Chandler,,TRIANGLE,AZ,2/6/2007 20:05 +Tucson,ORANGE,LIGHT,AZ,2/6/2007 20:20 +Arizona City,ORANGE,CIRCLE,AZ,2/6/2007 20:30 +Liberty Hill,RED,OVAL,TX,2/6/2007 20:45 +Phoenix,,FORMATION,AZ,2/6/2007 21:00 +Prescott Valley,,TRIANGLE,AZ,2/6/2007 21:00 +Tempe,,TRIANGLE,AZ,2/6/2007 21:00 +Point Reyes,,OVAL,CA,2/6/2007 22:50 +Miami,,LIGHT,FL,2/6/2007 23:30 +Templeton,ORANGE,OVAL,CA,2/6/2007 23:30 +Cedar Rapids,,CIGAR,IA,2/6/2007 23:45 +Pittsfield,,,MA,2/7/2007 0:00 +Johnstown,RED,TRIANGLE,PA,2/7/2007 3:00 +Leicester,GREEN,OVAL,MA,2/7/2007 3:30 +Charleston,,LIGHT,SC,2/7/2007 10:00 +Spokane,,DISK,WA,2/7/2007 19:00 +Peyton,,LIGHT,CO,2/7/2007 20:20 +Austin,,FORMATION,TX,2/7/2007 20:45 +St. Joseph,,LIGHT,MI,2/7/2007 22:00 +Shinnston,,TRIANGLE,WV,2/7/2007 22:07 +Sugarloaf Mtn.,,LIGHT,MD,2/7/2007 22:15 +Doral,,LIGHT,FL,2/8/2007 0:34 +Lincoln,,LIGHT,RI,2/8/2007 1:40 +Long Beach,,FLASH,CA,2/8/2007 2:00 +Fort Defiance,BLUE,RECTANGLE,VA,2/8/2007 12:30 +San Francisco,,LIGHT,CA,2/8/2007 13:30 +Roselle,,CYLINDER,IL,2/8/2007 16:45 +Mt. Carmel,,LIGHT,IL,2/8/2007 19:00 +Palatine,RED,,IL,2/8/2007 19:50 +Lake Alfred,,SPHERE,FL,2/8/2007 21:00 +Berrien Springs,,LIGHT,MI,2/8/2007 23:00 +Fort Wayne,BLUE,TRIANGLE,IN,2/9/2007 4:45 +Lillington,,CIRCLE,NC,2/10/2007 0:00 +Boynton Beach,,LIGHT,FL,2/10/2007 8:00 +Peoria,,LIGHT,IL,2/10/2007 8:30 +Virginia Beach,,SPHERE,VA,2/10/2007 15:00 +Pittsburgh,,DISK,PA,2/10/2007 17:00 +Lancaster,,TEARDROP,CA,2/10/2007 20:45 +Nashville,,TRIANGLE,IN,2/10/2007 21:00 +Crown Point,,LIGHT,IN,2/11/2007 0:20 +Woodbury,,FLASH,NJ,2/11/2007 8:31 +Oxnard,,LIGHT,CA,2/11/2007 19:25 +Carroll Valley,,LIGHT,PA,2/11/2007 20:00 +Ocalawaha,,,FL,2/11/2007 21:00 +Renton,,,WA,2/11/2007 22:00 +Everett,RED,CHEVRON,WA,2/11/2007 22:51 +Springfield,,CIRCLE,IL,2/12/2007 15:00 +Lynn Haven,,DISK,FL,2/12/2007 17:00 +Orlando,,LIGHT,FL,2/12/2007 20:30 +Sandy Springs,,LIGHT,GA,2/13/2007 19:40 +Kingfield,,LIGHT,ME,2/13/2007 20:00 +Edmonds,,TRIANGLE,WA,2/13/2007 22:00 +Salt Lake City,,FLASH,UT,2/13/2007 22:30 +Phoenix,,OTHER,AZ,2/14/2007 0:30 +Kansas City,,TRIANGLE,KS,2/14/2007 0:45 +Huntington Station,,,NY,2/14/2007 1:11 +Mount Airy,,LIGHT,NC,2/14/2007 5:15 +Stone Mountain,,DISK,GA,2/14/2007 17:30 +Cuba,,LIGHT,NY,2/14/2007 19:00 +San Ramon,BLUE,DISK,CA,2/14/2007 20:30 +Groton,,OTHER,CT,2/14/2007 21:00 +Exton,,FIREBALL,PA,2/14/2007 23:00 +Topeka,,LIGHT,KS,2/15/2007 7:00 +Kernersville,,CYLINDER,NC,2/15/2007 11:15 +Salem,,TRIANGLE,MO,2/15/2007 17:05 +Golden's Bridge,RED,OTHER,NY,2/15/2007 18:30 +Sierra Vista,RED,DISK,AZ,2/15/2007 19:00 +Marquette,YELLOW,TRIANGLE,KS,2/15/2007 20:00 +Florham Park,,LIGHT,NJ,2/15/2007 20:20 +Denver,,OTHER,CO,2/16/2007 0:00 +Livingston,,RECTANGLE,LA,2/16/2007 15:00 +Cedar Rapids,GREEN,FORMATION,IA,2/16/2007 19:00 +Trout Run,,OVAL,PA,2/16/2007 19:00 +Vienna,,RECTANGLE,VA,2/16/2007 19:00 +Alpharetta,,CHEVRON,GA,2/16/2007 20:00 +Walden,,TRIANGLE,VT,2/16/2007 20:00 +Paris,,,MS,2/16/2007 20:30 +Lexington,,TRIANGLE,KY,2/16/2007 21:51 +Cleveland,RED,TRIANGLE,OH,2/17/2007 2:52 +Pacific,,OVAL,WA,2/17/2007 3:30 +Milwaukee,,OVAL,WI,2/17/2007 6:30 +Portland,,VARIOUS,OR,2/17/2007 8:00 +Sultan,,OTHER,WA,2/17/2007 14:50 +Cerritos,,LIGHT,CA,2/17/2007 18:15 +West Paris,,RECTANGLE,ME,2/17/2007 18:40 +Livingston,,TRIANGLE,LA,2/17/2007 19:00 +Colmesneil,,,TX,2/17/2007 20:10 +Mission Viejo,,SPHERE,CA,2/18/2007 4:00 +Fort Smith,,LIGHT,AR,2/18/2007 17:00 +Houston,,LIGHT,TX,2/18/2007 19:01 +Hays,RED ORANGE YELLOW GREEN BLUE,FIREBALL,MT,2/18/2007 20:00 +Slana,GREEN,LIGHT,AK,2/18/2007 20:15 +Sacramento,,FIREBALL,CA,2/18/2007 22:00 +Littlerock,,CIRCLE,AR,2/19/2007 14:00 +West Point,ORANGE,CIRCLE,IA,2/19/2007 20:00 +Fort Larome,,RECTANGLE,OH,2/19/2007 22:00 +Needles,,CIRCLE,CA,2/20/2007 13:00 +Dale City,,CIRCLE,VA,2/20/2007 17:25 +Cape May,,LIGHT,NJ,2/20/2007 19:00 +Harrah,,TRIANGLE,OK,2/20/2007 19:00 +Mequon,,TRIANGLE,WI,2/20/2007 19:15 +Voorhees,,SPHERE,NJ,2/20/2007 20:00 +Albuquerque,,CHEVRON,NM,2/20/2007 20:45 +Queen Creek,,OVAL,AZ,2/21/2007 12:15 +Chico,,LIGHT,CA,2/21/2007 15:30 +Akron,RED ORANGE YELLOW,LIGHT,OH,2/21/2007 19:10 +Terre Haute,,LIGHT,IN,2/21/2007 20:00 +Gridley,RED,TRIANGLE,IL,2/21/2007 21:00 +Rome,,FIREBALL,GA,2/21/2007 21:00 +Spruce Pine,GREEN,FIREBALL,NC,2/21/2007 21:17 +Winchester,RED GREEN,DIAMOND,TN,2/21/2007 22:15 +Somerset,ORANGE,RECTANGLE,PA,2/21/2007 22:45 +Summit,,VARIOUS,NJ,2/22/2007 1:00 +Evansville,,RECTANGLE,IN,2/22/2007 1:10 +Des Moines,,LIGHT,IA,2/22/2007 2:27 +Durham,GREEN,VARIOUS,NH,2/22/2007 7:30 +Hermitage,,TRIANGLE,TN,2/22/2007 8:00 +Greenville,GREEN,TRIANGLE,SC,2/22/2007 19:30 +Arlington,,LIGHT,WA,2/22/2007 19:45 +Arlington Heights,,OTHER,IL,2/22/2007 19:50 +Juneau,,,WI,2/22/2007 20:00 +Columbus,,FIREBALL,GA,2/22/2007 20:15 +Fort Lauderdale,,TRIANGLE,FL,2/22/2007 20:25 +Huntington,ORANGE,TEARDROP,WV,2/22/2007 20:32 +Jefferson,,LIGHT,NC,2/22/2007 21:00 +Myrtle Beach,,LIGHT,SC,2/22/2007 23:30 +Denver,,,CO,2/23/2007 7:39 +Arroyo Grande,,LIGHT,CA,2/23/2007 9:30 +Columbia,,OVAL,KY,2/23/2007 19:45 +Kensington,,DIAMOND,NH,2/23/2007 20:00 +Huntington,,CONE,WV,2/23/2007 20:40 +Vista,,CHEVRON,CA,2/24/2007 0:00 +Lubbock,,OVAL,TX,2/24/2007 9:43 +Marlboro,,OTHER,MA,2/24/2007 13:00 +Muncie,RED,RECTANGLE,IN,2/24/2007 16:00 +Oak Island,,FIREBALL,NC,2/24/2007 19:00 +Portsmouth,ORANGE,SPHERE,VA,2/24/2007 19:30 +West Melbourne,,VARIOUS,FL,2/24/2007 20:06 +Berlin,,TRIANGLE,CT,2/24/2007 21:00 +Irvine,,DISK,CA,2/24/2007 21:00 +New York City,,,NY,2/24/2007 21:00 +Carmel-by-the-Sea,,SPHERE,CA,2/24/2007 22:25 +Queen Creek,,LIGHT,AZ,2/25/2007 0:26 +Briarwood,,FLASH,NY,2/25/2007 17:46 +Auburn,,LIGHT,AL,2/25/2007 21:30 +Horseshoe,GREEN,FIREBALL,NC,2/25/2007 22:20 +Seneca,BLUE,TEARDROP,SC,2/25/2007 22:30 +Fort Lauderdale,,FIREBALL,FL,2/25/2007 23:00 +New York City,,CIRCLE,NY,2/26/2007 7:30 +Sacramento,RED,CIGAR,CA,2/26/2007 11:00 +in flight,,TRIANGLE,AZ,2/26/2007 15:00 +San Pedro,RED,OVAL,CA,2/26/2007 15:48 +Sunnyside,,LIGHT,WA,2/26/2007 20:49 +Beavercreek,RED,CIRCLE,OH,2/26/2007 21:40 +New Kensington,,OTHER,PA,2/27/2007 1:00 +Santa Rosa,RED,TRIANGLE,CA,2/27/2007 5:10 +Summerville,,SPHERE,SC,2/27/2007 17:10 +Kingstree,,LIGHT,SC,2/27/2007 20:00 +New York City,,CROSS,NY,2/27/2007 22:30 +Kentwood,,TRIANGLE,LA,2/28/2007 3:30 +Springville,YELLOW,,AL,2/28/2007 6:00 +Eastaboga,,OTHER,AL,2/28/2007 9:00 +Sanford,,SPHERE,FL,2/28/2007 10:30 +Charlotte,BLUE,CIRCLE,NC,2/28/2007 12:30 +Island Pond,,DISK,VT,2/28/2007 13:30 +Melbourne,,SPHERE,FL,2/28/2007 15:30 +Athens,,TRIANGLE,AL,2/28/2007 18:00 +Atlanta,,FIREBALL,GA,2/28/2007 18:00 +Sonora,,LIGHT,CA,2/28/2007 18:43 +Woodburn,,LIGHT,OR,2/28/2007 19:12 +Gila Bend,,LIGHT,AZ,2/28/2007 19:22 +Madison,,TRIANGLE,AL,2/28/2007 20:00 +Marana,,TRIANGLE,AZ,2/28/2007 20:00 +Sarasota,,DISK,FL,2/28/2007 20:30 +Nevada,,LIGHT,MO,2/28/2007 21:00 +Bethel,,LIGHT,OH,2/28/2007 23:40 +Charlotte,ORANGE,LIGHT,NC,3/1/2007 0:30 +St. Petersburg,,,FL,3/1/2007 3:00 +Salt Lake City,,OTHER,UT,3/1/2007 6:00 +St. Charles,,TRIANGLE,MO,3/1/2007 12:00 +Boyes Hot Springs,,FORMATION,CA,3/1/2007 17:30 +Cabool,,CIRCLE,MO,3/1/2007 18:30 +Hutchinson,,CIRCLE,KS,3/1/2007 19:10 +Rialto,ORANGE,LIGHT,CA,3/1/2007 20:00 +San Carlos,,OVAL,CA,3/1/2007 20:19 +Halletsville,,FIREBALL,TX,3/1/2007 21:30 +Albuquerque,BLUE,SPHERE,NM,3/1/2007 21:35 +Montgomery,,LIGHT,TX,3/1/2007 22:00 +McKinney,,,TX,3/1/2007 22:30 +Hollywood,,FIREBALL,CA,3/1/2007 23:30 +Stephenville,,FLASH,TX,3/2/2007 1:56 +Littlerock,,CIGAR,AR,3/2/2007 16:00 +Churchton,,OVAL,MD,3/2/2007 16:40 +Marshall,,LIGHT,MO,3/2/2007 19:30 +Rockwall,GREEN,LIGHT,TX,3/2/2007 20:00 +San Diego,,FIREBALL,CA,3/2/2007 20:30 +Fleming,,LIGHT,KY,3/2/2007 22:00 +Willow Grove,,OTHER,PA,3/2/2007 22:00 +Poway,,LIGHT,CA,3/2/2007 22:30 +Kansas City,,FORMATION,MO,3/3/2007 1:45 +Milford,,LIGHT,CT,3/3/2007 7:00 +Oglala,,,SD,3/3/2007 8:00 +Merced,,SPHERE,CA,3/3/2007 11:00 +Garden Grove,,CYLINDER,CA,3/3/2007 12:00 +Boynton Beach,,DISK,FL,3/3/2007 16:50 +Mdison,BLUE,CIRCLE,ME,3/3/2007 18:00 +Bremerton,,LIGHT,WA,3/3/2007 19:30 +Oakwood,,OTHER,GA,3/3/2007 20:00 +Redwood City,,TRIANGLE,CA,3/3/2007 21:00 +Gallatin,,OVAL,TN,3/3/2007 22:00 +Cincinnati,,CIRCLE,KY,3/3/2007 23:00 +Caldwell,,DISK,TX,3/4/2007 0:00 +Seattle,,OTHER,WA,3/4/2007 0:00 +Las Vegas,BLUE,CIRCLE,NV,3/4/2007 11:00 +Maui,,CYLINDER,HI,3/4/2007 16:00 +Miami,,CONE,FL,3/4/2007 18:45 +Elkhart,YELLOW,LIGHT,IN,3/4/2007 19:33 +Eagle River,BLUE,CIRCLE,AK,3/4/2007 19:45 +Herndon,,CIRCLE,VA,3/4/2007 20:00 +Rosemont,,FLASH,IL,3/4/2007 22:30 +Des Plaines,,CIRCLE,IL,3/5/2007 6:45 +Muncie,,OTHER,IN,3/5/2007 9:35 +McAllen,,CIRCLE,TX,3/5/2007 12:10 +Hoquiam,,LIGHT,WA,3/5/2007 17:00 +Chicago,,DISK,IL,3/5/2007 18:00 +Billings,,OVAL,MT,3/5/2007 18:35 +San Diego,,LIGHT,CA,3/5/2007 19:00 +Bremerton,RED,SPHERE,WA,3/5/2007 19:05 +Bremerton,RED,LIGHT,WA,3/5/2007 19:15 +Bremerton,RED,CIRCLE,WA,3/5/2007 19:25 +Port Orchard,,CIRCLE,WA,3/5/2007 19:25 +Silver City,RED,DISK,NM,3/5/2007 19:40 +St. Joseph,RED,LIGHT,MI,3/5/2007 21:00 +Redmond,RED,LIGHT,OR,3/5/2007 22:37 +Seattle,,SPHERE,WA,3/6/2007 13:00 +Nesquehoning,,CIRCLE,PA,3/6/2007 19:00 +Albuquerque,,CIRCLE,NM,3/6/2007 20:00 +Hico,ORANGE,CIRCLE,TX,3/6/2007 20:25 +Plainfield,,CIRCLE,CT,3/6/2007 20:38 +Gila Bend,,TRIANGLE,AZ,3/6/2007 21:00 +St. George Island,,LIGHT,FL,3/6/2007 21:00 +Houston,RED,OVAL,TX,3/6/2007 22:00 +Wilmer,,CIRCLE,TX,3/7/2007 0:00 +Clinton,,TRIANGLE,MO,3/7/2007 0:45 +Nashville,,CIGAR,TN,3/7/2007 12:00 +Temecula,,FORMATION,CA,3/7/2007 17:50 +Trinidad,,LIGHT,CO,3/7/2007 18:58 +Atascadero,,LIGHT,CA,3/7/2007 19:00 +Ewing,,TEARDROP,KY,3/7/2007 19:30 +Salem,,LIGHT,MO,3/7/2007 19:30 +Akron,,FORMATION,OH,3/7/2007 21:15 +Ellensburg,,TRIANGLE,WA,3/7/2007 22:15 +Austin,,LIGHT,TX,3/8/2007 11:00 +Rockville,,DISK,MD,3/8/2007 12:00 +Jefferson,RED GREEN,,MO,3/8/2007 12:30 +Modesto,,TRIANGLE,CA,3/8/2007 13:00 +Hixson,,CIRCLE,TN,3/8/2007 14:00 +Tipton,,LIGHT,MO,3/8/2007 19:30 +Cabool,RED,LIGHT,MO,3/8/2007 19:45 +Salem,,LIGHT,MO,3/8/2007 19:50 +Blythe,,DISK,CA,3/8/2007 20:00 +Keystone,,OVAL,IA,3/8/2007 20:00 +Argos,,,KS,3/8/2007 21:00 +Butte,,LIGHT,MT,3/8/2007 22:00 +Cleveland,,SPHERE,OH,3/8/2007 22:00 +Columbus,,,TX,3/8/2007 22:00 +Orlando,ORANGE,TRIANGLE,FL,3/8/2007 22:15 +Zephyrhills,RED,OVAL,FL,3/8/2007 22:19 +Columbus,,,TX,3/8/2007 22:30 +Estacada,,CYLINDER,OR,3/8/2007 23:00 +Santa Monica,,VARIOUS,CA,3/8/2007 23:00 +San Dimas,,OVAL,CA,3/9/2007 0:00 +Snellville,,TRIANGLE,GA,3/9/2007 0:00 +Salt Lake City,ORANGE,LIGHT,UT,3/9/2007 6:45 +Margate,,CIRCLE,FL,3/9/2007 9:54 +Tucson,,SPHERE,AZ,3/9/2007 12:05 +Bremerton,,,WA,3/9/2007 18:00 +Mattoon,,LIGHT,IL,3/9/2007 18:45 +Holland,,CIRCLE,NY,3/9/2007 19:30 +Houston,,EGG,TX,3/9/2007 19:30 +San Dimas,RED,OVAL,CA,3/9/2007 19:30 +Tempe,,OTHER,AZ,3/9/2007 20:25 +no data,,CIRCLE,UT,3/9/2007 21:30 +Alliance,,CIRCLE,OH,3/10/2007 0:00 +Jacksonville,RED,TRIANGLE,FL,3/10/2007 2:00 +Isanti,,VARIOUS,MN,3/10/2007 16:40 +DeWitt,,TRIANGLE,IA,3/10/2007 18:20 +Canyon Lake,,LIGHT,CA,3/10/2007 19:40 +St. Charles,,TRIANGLE,IL,3/10/2007 20:00 +New York City,GREEN,LIGHT,NY,3/10/2007 20:23 +Franklin,,LIGHT,VA,3/10/2007 21:00 +Bolingbrook,,RECTANGLE,IL,3/11/2007 0:00 +Mission Viejo,ORANGE,FORMATION,CA,3/11/2007 0:00 +North Hollywood,,SPHERE,CA,3/11/2007 4:25 +Portchester,RED,TRIANGLE,NY,3/11/2007 9:10 +Los Angeles,,VARIOUS,CA,3/11/2007 11:00 +Kamas,RED,FIREBALL,UT,3/11/2007 13:30 +Los Angeles,,CIGAR,CA,3/11/2007 16:45 +Longmont,RED,LIGHT,CO,3/11/2007 19:45 +Afton,,LIGHT,MI,3/11/2007 20:00 +Jeffersonville,GREEN,OTHER,OH,3/11/2007 20:00 +Waynesburg,,FIREBALL,OH,3/11/2007 20:00 +Hendersonville,GREEN,LIGHT,NC,3/12/2007 0:00 +Arroyo Grande,,TRIANGLE,CA,3/12/2007 1:00 +Gallup,,OVAL,NM,3/12/2007 19:00 +Hayward,,SPHERE,CA,3/12/2007 20:09 +Silver City,RED GREEN BLUE,VARIOUS,NM,3/12/2007 21:00 +Monticello,,OTHER,IA,3/12/2007 23:00 +Rutland,RED,,VT,3/13/2007 0:00 +Las Vegas,,TRIANGLE,NV,3/13/2007 1:20 +Lafayette,,,CA,3/13/2007 3:00 +San Jose,,SPHERE,CA,3/13/2007 6:19 +Philadelphia,GREEN,TRIANGLE,PA,3/13/2007 19:12 +Simi Valley,,RECTANGLE,CA,3/13/2007 19:40 +Beatrice,YELLOW,LIGHT,NE,3/13/2007 21:00 +Santa Fe,,,NM,3/13/2007 21:10 +Jacksonville,,OTHER,NC,3/13/2007 21:30 +U.S.S. San Juan,,,FL,3/13/2007 22:00 +Winthrop,,SPHERE,NY,3/13/2007 22:33 +Englewood,,DIAMOND,CO,3/13/2007 23:00 +Bergen,,CIRCLE,NY,3/13/2007 23:20 +Lawrence,,TRIANGLE,KS,3/14/2007 2:50 +New York City,,CIRCLE,NY,3/14/2007 5:00 +Adelanto,,,CA,3/14/2007 10:08 +Kingsland,,CIRCLE,GA,3/14/2007 10:10 +Los Angeles,,DISK,CA,3/14/2007 10:40 +Andover,,CIRCLE,MA,3/14/2007 19:40 +Redmond,RED,LIGHT,OR,3/14/2007 21:00 +Gig Harbor,,LIGHT,WA,3/14/2007 21:15 +Gig Harbor,,OTHER,WA,3/14/2007 21:15 +Boise,,CIRCLE,ID,3/14/2007 22:00 +Eden,,RECTANGLE,NC,3/14/2007 22:19 +Corpus Christi,,LIGHT,TX,3/14/2007 22:25 +Casa Grande,,OTHER,AZ,3/15/2007 2:00 +Houston,,TEARDROP,TX,3/15/2007 9:26 +Spokane,,VARIOUS,WA,3/15/2007 9:27 +Tucson,,CIRCLE,AZ,3/15/2007 14:00 +Sratford,,CYLINDER,CT,3/15/2007 15:00 +Delta,,CONE,CO,3/15/2007 19:00 +Springfield,,TRIANGLE,MO,3/15/2007 19:30 +Medford,,LIGHT,OR,3/15/2007 21:30 +San Clemente,ORANGE,LIGHT,CA,3/15/2007 22:00 +Carmel Valley,,OVAL,CA,3/15/2007 22:30 +Easley,,,SC,3/15/2007 23:00 +Ames,,OTHER,IA,3/15/2007 23:18 +Stoughton,,CIRCLE,WI,3/16/2007 6:20 +Ironton,ORANGE YELLOW,LIGHT,OH,3/16/2007 10:15 +Ironton,YELLOW,OVAL,OH,3/16/2007 10:15 +Washougal,GREEN,CIRCLE,WA,3/16/2007 10:15 +El Paso,,OVAL,TX,3/16/2007 11:45 +Yakima,,TRIANGLE,WA,3/16/2007 13:30 +Long Beach,,OTHER,CA,3/16/2007 21:30 +Issaquah,GREEN,FIREBALL,WA,3/16/2007 21:35 +Federal Way,BLUE,LIGHT,WA,3/16/2007 22:00 +Carnation,GREEN,SPHERE,WA,3/16/2007 22:30 +Phoenix,,LIGHT,AZ,3/16/2007 22:30 +Berkeley,,CHEVRON,CA,3/16/2007 23:00 +Pasco,,TRIANGLE,WA,3/16/2007 23:43 +Mishawaka,RED,TRIANGLE,IN,3/17/2007 6:30 +Ozark,,,AL,3/17/2007 8:00 +Sunnyside,,CIRCLE,NY,3/17/2007 9:00 +Valrico,,LIGHT,FL,3/17/2007 9:30 +Port Charlotte,,LIGHT,FL,3/17/2007 12:00 +Hayward,,CIGAR,CA,3/17/2007 13:30 +Edgewood,,TRIANGLE,NM,3/17/2007 14:45 +Myrtle Beach,,CIRCLE,SC,3/17/2007 20:30 +Napoleonville,GREEN,FORMATION,LA,3/17/2007 20:30 +Boynton Beach,,CIRCLE,FL,3/17/2007 21:15 +Aledo,,FIREBALL,TX,3/17/2007 21:55 +Philadelphia,,TRIANGLE,PA,3/18/2007 1:00 +Bethlehem Township,RED,DIAMOND,PA,3/18/2007 4:30 +Mundelein,,,IL,3/18/2007 12:00 +Othello,,SPHERE,WA,3/18/2007 12:00 +Stratford,,CIGAR,CT,3/18/2007 17:30 +Norco,,FIREBALL,CA,3/18/2007 19:00 +Upland,GREEN,FIREBALL,CA,3/18/2007 19:00 +Kearny,,LIGHT,NJ,3/18/2007 20:10 +Annapolis,,LIGHT,MD,3/18/2007 21:08 +Murphysboro,,RECTANGLE,IL,3/18/2007 22:20 +Dennis,,,MA,3/18/2007 23:30 +Palm Coast,,VARIOUS,FL,3/19/2007 8:00 +Matteson,RED,LIGHT,IL,3/19/2007 9:22 +Dublin,,OTHER,CA,3/19/2007 9:45 +Colorado Springs,,TRIANGLE,CO,3/19/2007 11:22 +Prineville,,SPHERE,OR,3/19/2007 15:00 +Berlin,,FIREBALL,WI,3/19/2007 20:15 +Charlotte,,SPHERE,NC,3/20/2007 1:00 +Fort Collins,,CYLINDER,CO,3/20/2007 1:00 +Ridgway,,OTHER,CO,3/20/2007 2:20 +Davenport,,LIGHT,FL,3/20/2007 6:15 +Blackville,,CIGAR,SC,3/20/2007 6:37 +Papillion,,CIGAR,NE,3/20/2007 9:00 +White City,,CIGAR,OR,3/20/2007 11:00 +Livermore,ORANGE,CIRCLE,CA,3/20/2007 20:00 +Scottdale,RED,SPHERE,PA,3/20/2007 20:15 +Chico,,SPHERE,CA,3/20/2007 21:11 +Novato,,CIRCLE,CA,3/20/2007 21:27 +Newberg,,LIGHT,OR,3/20/2007 22:35 +Pearl Harbor,,FIREBALL,HI,3/20/2007 23:16 +Celina,,,TN,3/21/2007 0:00 +Pigeon Forge,,LIGHT,TN,3/21/2007 6:05 +Broadview Heights,,TRIANGLE,OH,3/21/2007 9:45 +Denton,RED,VARIOUS,TX,3/21/2007 19:45 +Pittsburgh,,LIGHT,PA,3/21/2007 21:30 +Houston,,CIRCLE,TX,3/22/2007 0:00 +Show Low,,FORMATION,AZ,3/22/2007 1:00 +San Francisco,,LIGHT,CA,3/22/2007 5:30 +Paso Robles,,CYLINDER,CA,3/22/2007 11:00 +Beaverton,,CIGAR,OR,3/22/2007 19:00 +Ironton,,CONE,OH,3/22/2007 19:01 +Visalia,,SPHERE,CA,3/22/2007 21:30 +Corvallis,,LIGHT,OR,3/22/2007 22:15 +Griffin,,TEARDROP,GA,3/22/2007 22:46 +Goodyear,,FIREBALL,AZ,3/23/2007 0:00 +Peoria,,FIREBALL,AZ,3/23/2007 8:10 +Hanson,,FIREBALL,KY,3/23/2007 11:30 +National City,,SPHERE,CA,3/23/2007 20:00 +North Highlands,,LIGHT,CA,3/23/2007 21:20 +Buffalo,RED,,NY,3/23/2007 23:40 +Tacoma,,LIGHT,WA,3/24/2007 0:45 +St. Johnsbury,,,VT,3/24/2007 8:00 +Palmdale,,OVAL,CA,3/24/2007 19:30 +Simi Valley,,LIGHT,CA,3/24/2007 20:35 +Butte,,LIGHT,MT,3/24/2007 21:00 +Monroe,,LIGHT,NC,3/24/2007 21:35 +Celina,,CIRCLE,TN,3/24/2007 23:00 +Jacksonville,,TRIANGLE,FL,3/25/2007 0:00 +Pinole,ORANGE,FLASH,CA,3/25/2007 0:00 +Alexandria,,CIRCLE,VA,3/25/2007 10:45 +Las Cruces,,TRIANGLE,NM,3/25/2007 15:10 +Gardena,,CIRCLE,CA,3/25/2007 17:50 +Yuma,,FIREBALL,AZ,3/25/2007 19:00 +Torrington,,OTHER,CT,3/25/2007 20:58 +Santa Fe,,,NM,3/25/2007 21:05 +St. Johnsbury,GREEN,OVAL,VT,3/25/2007 22:15 +Southgate,RED ORANGE,TRIANGLE,MI,3/25/2007 22:45 +Parker,,DIAMOND,AZ,3/26/2007 4:30 +Orlando,,LIGHT,FL,3/26/2007 5:55 +Modesto,,SPHERE,CA,3/26/2007 12:30 +Shoreline,,SPHERE,WA,3/26/2007 18:00 +Orlando,,CYLINDER,FL,3/26/2007 20:45 +Phoenix Area,,CYLINDER,AZ,3/26/2007 21:05 +Framingham,,,MA,3/26/2007 23:15 +St. Petersburg,,CIRCLE,FL,3/26/2007 23:40 +Livingston,,CIGAR,NJ,3/27/2007 5:35 +Millstone Twp.,,FLASH,NJ,3/27/2007 5:37 +Philadelphia,,,PA,3/27/2007 5:45 +Seattle,,EGG,WA,3/27/2007 17:00 +Antioch,,TRIANGLE,CA,3/27/2007 23:01 +San Francisco,,TRIANGLE,CA,3/27/2007 23:01 +Duluth,,VARIOUS,MN,3/28/2007 1:30 +Mountain View,,LIGHT,AR,3/28/2007 4:30 +Rochester,RED,OTHER,NY,3/28/2007 17:15 +Cary,RED,TEARDROP,NC,3/28/2007 19:00 +Sarasota,,FLASH,FL,3/28/2007 20:30 +Plover,,SPHERE,WI,3/28/2007 21:00 +San Juan Bautista,,CIRCLE,CA,3/28/2007 22:30 +Madison,,CIRCLE,CT,3/29/2007 5:30 +Morgantown,,SPHERE,WV,3/29/2007 9:30 +New London,,,CT,3/29/2007 12:00 +Jersey City,,DIAMOND,NJ,3/29/2007 20:00 +Canton,,FORMATION,MI,3/29/2007 21:15 +Fresh Meadows,,OVAL,NY,3/29/2007 22:00 +Tallahassee,,LIGHT,FL,3/29/2007 23:30 +Norwich,,LIGHT,CT,3/30/2007 0:00 +no data,,SPHERE,MS,3/30/2007 4:30 +Sarasota,,LIGHT,FL,3/30/2007 6:30 +Rockville,,CIGAR,MD,3/30/2007 14:15 +Hollywood,,CIGAR,CA,3/30/2007 19:00 +Wheeling,,LIGHT,WV,3/30/2007 21:00 +Ravenswood,,LIGHT,WV,3/30/2007 21:01 +Rome,,LIGHT,GA,3/30/2007 21:01 +Kalamazoo,,TRIANGLE,MI,3/30/2007 21:30 +Sugar Notch,GREEN,TRIANGLE,PA,3/30/2007 21:30 +East Windsor,,LIGHT,NJ,3/30/2007 23:12 +Santa Clarita,,DISK,CA,3/30/2007 23:39 +Perryville,GREEN,OTHER,MO,3/31/2007 2:00 +Los Angeles,,CIRCLE,CA,3/31/2007 5:00 +Gwynn Oak,,DISK,MD,3/31/2007 6:55 +Redondo Beach,,DISK,CA,3/31/2007 8:30 +Tucson,,CIGAR,AZ,3/31/2007 18:15 +Arlington,,OVAL,TX,3/31/2007 19:00 +Whittier,,LIGHT,CA,3/31/2007 19:00 +Beaverton,BLUE,,OR,3/31/2007 19:45 +Portland,,LIGHT,OR,3/31/2007 19:50 +East Rutherford,,CIRCLE,NJ,3/31/2007 20:00 +Kelseyville,RED ORANGE,CYLINDER,CA,3/31/2007 20:15 +Delta,RED GREEN,CROSS,CO,3/31/2007 21:48 +Kennedy,,OVAL,NY,3/31/2007 22:00 +Gerry,,DISK,NY,3/31/2007 23:15 +Lake Wales,,LIGHT,FL,4/1/2007 0:00 +Mooresville,,FIREBALL,NC,4/1/2007 3:00 +Bremerton,RED,,WA,4/1/2007 3:30 +Madisonville,RED YELLOW,,KY,4/1/2007 7:30 +Memphis,,TRIANGLE,TN,4/1/2007 20:30 +Zanesville,ORANGE,LIGHT,OH,4/1/2007 20:30 +Marion,,CIRCLE,NC,4/1/2007 21:00 +Greensboro,,OVAL,PA,4/1/2007 21:36 +Maysville,,LIGHT,OK,4/1/2007 21:45 +Easton,RED ORANGE,OVAL,WA,4/1/2007 22:00 +Lynn,,CIRCLE,MA,4/1/2007 23:00 +Greenwood,,TRIANGLE,MS,4/1/2007 23:22 +Cuyahoga Falls,,SPHERE,OH,4/2/2007 0:30 +Omaha,YELLOW,CIRCLE,NE,4/2/2007 6:35 +South Amherst,,,OH,4/2/2007 8:30 +South Amherst,,,OH,4/2/2007 8:30 +Rohnert Park,BLUE,,CA,4/2/2007 9:00 +Lithonia,,CIRCLE,GA,4/2/2007 13:00 +Virginia Beach,,DISK,VA,4/2/2007 14:15 +South Amherst,,CYLINDER,OH,4/2/2007 17:30 +Downingtown,,FORMATION,PA,4/2/2007 21:00 +Garden Grove,GREEN,DISK,CA,4/2/2007 22:09 +Richton Park,YELLOW,DISK,IL,4/3/2007 3:00 +Buffalo Grove,,DISK,IL,4/3/2007 12:30 +Queen Creek,,LIGHT,AZ,4/3/2007 20:00 +Sierra Vista,,FORMATION,AZ,4/3/2007 20:17 +Mulege,,VARIOUS,CA,4/3/2007 21:30 +Phoenix,,OTHER,AZ,4/3/2007 22:00 +Kendall,,LIGHT,FL,4/3/2007 23:02 +Palo Alto,,SPHERE,CA,4/4/2007 6:05 +Clearlake,,LIGHT,CA,4/4/2007 6:45 +Princeton,,CIRCLE,WV,4/4/2007 10:00 +Omaha,,FLASH,NE,4/4/2007 16:53 +Spring Valley,,FIREBALL,CA,4/4/2007 20:00 +Great Lakes,,,IL,4/4/2007 20:36 +Queen Creek,,LIGHT,AZ,4/4/2007 20:55 +Clifton,,LIGHT,TN,4/4/2007 21:00 +Congress,,,AZ,4/4/2007 21:00 +Congress,YELLOW,,AZ,4/4/2007 21:00 +Joliet,,,IL,4/4/2007 21:00 +Arcadia,,LIGHT,FL,4/4/2007 21:45 +Arcadia,BLUE,LIGHT,FL,4/4/2007 21:45 +Lehigh Acres,,DISK,FL,4/4/2007 22:00 +Centralia,RED,SPHERE,MO,4/4/2007 22:35 +Raymond,,,NH,4/5/2007 2:00 +San Antonio,,OTHER,TX,4/5/2007 14:56 +Huntsville,,TRIANGLE,AL,4/5/2007 19:00 +Richmond,,CIGAR,VA,4/5/2007 21:00 +Bel Air,,EGG,MD,4/5/2007 21:30 +Brewster,RED,FLASH,MA,4/5/2007 21:30 +Shelton,RED,LIGHT,WA,4/5/2007 23:00 +Hickory Plains,,LIGHT,AR,4/5/2007 23:37 +Kennewick,,LIGHT,WA,4/6/2007 9:50 +Costa Mesa,ORANGE,,CA,4/6/2007 13:00 +Shelton,,,WA,4/6/2007 19:45 +Black Canyon City,,TRIANGLE,AZ,4/6/2007 20:00 +Jacksonville,,DIAMOND,AL,4/6/2007 20:45 +Everett,,OTHER,WA,4/6/2007 23:00 +Allison Park,RED,LIGHT,PA,4/6/2007 23:15 +Russellville,,,MO,4/7/2007 1:00 +Spokane,ORANGE,FIREBALL,WA,4/7/2007 12:24 +Camano Island,,SPHERE,WA,4/7/2007 13:00 +Arlington,,LIGHT,VA,4/7/2007 18:45 +Doraville,,DISK,GA,4/7/2007 19:00 +Friendship,,FLASH,WI,4/7/2007 22:30 +Rancho Cucamonga,ORANGE,LIGHT,CA,4/7/2007 22:45 +Ft. Lauderdale,BLUE,OTHER,FL,4/8/2007 3:20 +Baltimore,,LIGHT,MD,4/8/2007 21:05 +New Milford,,LIGHT,CT,4/8/2007 22:00 +Winslow,,VARIOUS,NJ,4/8/2007 22:00 +Centralia,RED,SPHERE,MO,4/8/2007 22:35 +Mariposa,,FLASH,CA,4/9/2007 1:15 +Detroit,,LIGHT,MI,4/9/2007 5:00 +Cross Timbers,,OVAL,MO,4/9/2007 9:40 +Spindale,,OVAL,NC,4/9/2007 14:20 +Knoxville,,DISK,TN,4/9/2007 15:00 +Elmsford,,CIRCLE,NY,4/9/2007 18:05 +Cottonwood,,LIGHT,CA,4/9/2007 21:00 +Charlotte,,OVAL,NC,4/9/2007 21:17 +Collins,RED ORANGE,,MO,4/9/2007 21:20 +San Rafael,BLUE,LIGHT,CA,4/9/2007 21:35 +Waukesha,,LIGHT,WI,4/9/2007 23:00 +Orange,,LIGHT,CA,4/10/2007 22:00 +Northampton,,EGG,MA,4/11/2007 13:25 +Coventry,,OVAL,CT,4/11/2007 20:45 +Austin,,CHEVRON,TX,4/11/2007 22:00 +Carrollton,,CIRCLE,TX,4/11/2007 23:50 +Savannah,,TRIANGLE,TN,4/12/2007 15:00 +Stayton,,LIGHT,OR,4/12/2007 20:30 +Colorado Springs,,TRIANGLE,CO,4/12/2007 20:45 +St. Augustine,,FORMATION,FL,4/12/2007 20:53 +Castro Valley,,TRIANGLE,CA,4/12/2007 21:00 +Madison,,LIGHT,AL,4/12/2007 21:00 +Kimball,,LIGHT,TN,4/12/2007 21:30 +Wheelersburg,,LIGHT,OH,4/12/2007 21:45 +Chicago Ridge,,FLASH,IL,4/12/2007 21:55 +Bremerton,,CIRCLE,WA,4/12/2007 22:16 +Herculaneum,,DISK,MO,4/12/2007 23:00 +Delavan,,LIGHT,IL,4/13/2007 1:01 +Warwick,,,NY,4/13/2007 2:00 +Anaheim,,LIGHT,CA,4/13/2007 19:23 +Richmond,,DISK,CA,4/13/2007 20:35 +Troutdale,,SPHERE,OR,4/13/2007 20:50 +Napili Bay,ORANGE GREEN BLUE,RECTANGLE,HI,4/13/2007 21:00 +Hanover,,LIGHT,NH,4/14/2007 0:00 +Annapolis,,SPHERE,MD,4/14/2007 11:00 +Tucson,,SPHERE,AZ,4/14/2007 15:20 +Big Stone Gap,,FLASH,VA,4/14/2007 15:45 +Castroville,RED,TRIANGLE,CA,4/14/2007 19:15 +Elma,ORANGE,CIRCLE,WA,4/14/2007 21:00 +Orlando,,,FL,4/14/2007 21:00 +Bakersfield,,LIGHT,CA,4/14/2007 21:30 +Raleigh,GREEN,TRIANGLE,NC,4/14/2007 22:00 +Grand Forks,,LIGHT,ND,4/14/2007 22:40 +Muskegon,,,MI,4/14/2007 23:15 +Raleigh,GREEN,TRIANGLE,NC,4/14/2007 23:30 +Orlando,,OVAL,FL,4/14/2007 23:48 +Summerville,,OTHER,SC,4/15/2007 0:00 +Pendergrass,,TRIANGLE,GA,4/15/2007 18:30 +Gunnison,,LIGHT,CO,4/15/2007 22:00 +Los Angeles,GREEN,,CA,4/15/2007 22:15 +McComb,,DIAMOND,MS,4/15/2007 22:19 +Irvine,,CIRCLE,CA,4/15/2007 22:30 +Beaverton,,,OR,4/15/2007 23:00 +Talent,ORANGE,VARIOUS,OR,4/15/2007 23:00 +Park City,,,MT,4/15/2007 23:30 +Edmond,RED,OTHER,OK,4/16/2007 4:30 +Kannapolis,,DISK,NC,4/16/2007 8:45 +Hoffman Estates,,FORMATION,IL,4/16/2007 13:00 +Rolla,,,MO,4/16/2007 20:50 +Rolla,,TRIANGLE,MO,4/16/2007 20:50 +Brentwood,,FIREBALL,CA,4/16/2007 21:05 +Anacortes,RED,,WA,4/16/2007 21:30 +Palmdale,RED ORANGE,TRIANGLE,CA,4/16/2007 21:35 +North Riverside,,LIGHT,IL,4/16/2007 23:00 +Westchester,,LIGHT,IL,4/16/2007 23:00 +Crestwood,,FORMATION,IL,4/17/2007 0:55 +Goodlettsville,BLUE,CIRCLE,TN,4/17/2007 13:36 +New York City,,DISK,NY,4/17/2007 16:00 +Denver,,CIRCLE,CO,4/17/2007 17:25 +Auburn,RED GREEN,OTHER,AL,4/17/2007 21:00 +Coyote Gulch,,TEARDROP,UT,4/17/2007 21:00 +Irvine,BLUE,CIRCLE,CA,4/17/2007 22:00 +Bellingham,,CIRCLE,WA,4/17/2007 23:00 +Cambrige,,DIAMOND,IL,4/17/2007 23:00 +Norfork,,,NY,4/17/2007 23:00 +Delano,ORANGE,TRIANGLE,MN,4/18/2007 0:16 +Santa Maria,,OTHER,CA,4/18/2007 5:30 +North Tazewell,,SPHERE,VA,4/18/2007 9:00 +Oswego,,LIGHT,NY,4/18/2007 20:00 +Mutual,,LIGHT,OK,4/18/2007 23:00 +Black Mountain,,RECTANGLE,NC,4/18/2007 23:30 +Allentown,,LIGHT,PA,4/19/2007 10:00 +New Albany,,LIGHT,PA,4/19/2007 20:45 +Kingston,,LIGHT,WA,4/19/2007 21:00 +Stony Brook,,LIGHT,NY,4/19/2007 21:00 +St. Clair Shores,,TRIANGLE,MI,4/19/2007 21:20 +Greenville,,LIGHT,MI,4/19/2007 23:00 +florence,RED,TRIANGLE,MA,4/20/2007 0:00 +Longwood,,LIGHT,FL,4/20/2007 0:00 +Winsted,,TEARDROP,CT,4/20/2007 1:30 +Albuquerque,,LIGHT,NM,4/20/2007 1:50 +Norwich,,TRIANGLE,NY,4/20/2007 3:43 +Puyallup,,CIRCLE,WA,4/20/2007 10:15 +Portland,,CIRCLE,OR,4/20/2007 11:30 +Vancouver,,LIGHT,WA,4/20/2007 21:05 +Wynnewood,RED,TRIANGLE,PA,4/20/2007 21:19 +Royal Oak,,LIGHT,MI,4/20/2007 21:37 +Mainstee,,,MI,4/20/2007 21:45 +Littleton,BLUE,FIREBALL,CO,4/20/2007 22:00 +Johnstown,,OTHER,PA,4/20/2007 22:30 +Fort Collins,GREEN,SPHERE,CO,4/20/2007 23:00 +Foxboro,,LIGHT,MA,4/20/2007 23:00 +Rifle,,FIREBALL,CO,4/20/2007 23:00 +Chico,,CIRCLE,CA,4/20/2007 23:15 +Grove City,,CHEVRON,PA,4/21/2007 3:10 +Las Vegas,,OVAL,NV,4/21/2007 12:15 +South Tucson,,FORMATION,AZ,4/21/2007 14:35 +Sweet Springs,,TRIANGLE,MO,4/21/2007 18:00 +Westport,,OTHER,CT,4/21/2007 18:20 +Lighthouse Point,,TRIANGLE,FL,4/21/2007 20:00 +Woodstock,GREEN,OVAL,VA,4/21/2007 20:30 +Worcester,,VARIOUS,MA,4/21/2007 21:00 +Statesboro,,LIGHT,GA,4/21/2007 22:00 +Benton,,LIGHT,KY,4/21/2007 22:05 +Cahokia,,DISK,IL,4/21/2007 23:00 +Tacoma,,LIGHT,WA,4/21/2007 23:15 +Capon Bridge,,LIGHT,WV,4/21/2007 23:30 +ForestPark,,DIAMOND,IL,4/22/2007 2:14 +Charlotte,,FIREBALL,NC,4/22/2007 9:55 +Longwood,,OVAL,FL,4/22/2007 10:30 +Beaufort,,CIGAR,SC,4/22/2007 12:45 +Worcester,,DIAMOND,MA,4/22/2007 13:30 +New York City,,LIGHT,NY,4/22/2007 14:00 +New Ipswich,,RECTANGLE,NH,4/22/2007 15:00 +Wapato,,FORMATION,WA,4/22/2007 16:00 +Kirkland,,DISK,WA,4/22/2007 19:15 +Sultan,RED,TRIANGLE,WA,4/22/2007 20:00 +Oklahoma City,,VARIOUS,OK,4/22/2007 20:30 +Rochester,,RECTANGLE,MN,4/22/2007 22:15 +Westville,GREEN,TRIANGLE,FL,4/22/2007 22:20 +Lewisville,,TRIANGLE,TX,4/22/2007 23:00 +Marion,,,IA,4/23/2007 0:00 +Elmore,,TRIANGLE,AL,4/23/2007 8:00 +Des Moines,,CIRCLE,IA,4/23/2007 11:12 +Richmond,,CIGAR,VA,4/23/2007 20:00 +Pasadena,,,CA,4/23/2007 21:30 +San Jose,,CIGAR,CA,4/23/2007 23:00 +Palm Coast,,OVAL,FL,4/23/2007 23:45 +Loveland,,,OH,4/24/2007 2:00 +Homer,,FIREBALL,AK,4/24/2007 3:00 +New Albany,,LIGHT,PA,4/24/2007 21:00 +Converse,RED,LIGHT,IN,4/24/2007 21:30 +Brentwood,ORANGE,CIRCLE,CA,4/24/2007 21:40 +South Kingston,,CIRCLE,NH,4/24/2007 22:00 +Springfield,,CIRCLE,OR,4/25/2007 0:00 +Jamesport,,OVAL,NY,4/25/2007 7:30 +Soquel,,,CA,4/25/2007 11:25 +Albuquerque,,RECTANGLE,NM,4/25/2007 13:00 +Santa Fe,YELLOW BLUE,SPHERE,NM,4/25/2007 23:30 +Orlando,RED,FORMATION,FL,4/26/2007 3:00 +Fremont,,DISK,CA,4/26/2007 6:45 +Hiko,,,NV,4/26/2007 11:55 +Fort Davis,,DISK,TX,4/26/2007 18:30 +Reno,,LIGHT,NV,4/26/2007 21:00 +Sonora,,,CA,4/26/2007 21:00 +Orland,,LIGHT,CA,4/26/2007 21:30 +Abilene,,,TX,4/27/2007 0:00 +Cranbury,,LIGHT,NJ,4/27/2007 10:36 +Pensacola,,SPHERE,FL,4/27/2007 19:30 +Kanehoe,,OTHER,HI,4/27/2007 20:45 +Kaneohe,,SPHERE,HI,4/27/2007 20:45 +Tacoma,,LIGHT,WA,4/27/2007 21:00 +Indio,,FIREBALL,CA,4/27/2007 21:40 +Madison,,LIGHT,AL,4/27/2007 22:00 +Myrtle Beach,,CIRCLE,SC,4/27/2007 22:00 +Tempe,,,AZ,4/27/2007 23:45 +Moreno Valley,,EGG,CA,4/28/2007 0:00 +Austin,,TRIANGLE,TX,4/28/2007 3:45 +Australia,BLUE,LIGHT,AL,4/28/2007 19:30 +Denver,,LIGHT,CO,4/28/2007 20:00 +Beale AFB,ORANGE,LIGHT,CA,4/28/2007 21:25 +Hackettstown,,SPHERE,NJ,4/28/2007 21:30 +Santa Rosa,,LIGHT,CA,4/28/2007 22:06 +Tampa,,OVAL,FL,4/29/2007 11:30 +Cape Coral,,CYLINDER,FL,4/29/2007 15:30 +Portland,,CIRCLE,OR,4/29/2007 17:00 +North Ridgeville,,,OH,4/29/2007 20:00 +Boonsboro,,DISK,MD,4/29/2007 20:50 +North Kingstown,,TRIANGLE,RI,4/29/2007 21:00 +Boonsboro,,RECTANGLE,MD,4/29/2007 21:45 +Port Clinton,,LIGHT,OH,4/29/2007 21:45 +Lancaster,,LIGHT,MS,4/29/2007 22:00 +Elwood,,,IL,4/29/2007 22:05 +Piscataway,,LIGHT,NJ,4/29/2007 23:00 +Warminster,RED GREEN,TRIANGLE,PA,4/29/2007 23:00 +Jim Thorpe,,CYLINDER,PA,4/30/2007 8:00 +Orange Park,,RECTANGLE,FL,4/30/2007 13:00 +Decatur,BLUE,SPHERE,GA,4/30/2007 19:00 +Millhurst,,DISK,IL,4/30/2007 20:00 +Seattle,,FORMATION,WA,4/30/2007 21:30 +Shreveport,,OVAL,LA,4/30/2007 22:00 +Santa Fe,,FORMATION,NM,4/30/2007 22:03 +Wilson,,CIGAR,NC,4/30/2007 23:00 +Fortville,,LIGHT,IN,5/1/2007 0:03 +Birmingham,,OTHER,AL,5/1/2007 0:20 +Isleta,,TRIANGLE,NM,5/1/2007 1:30 +New York City,,CIRCLE,NY,5/1/2007 3:00 +Nevada,,TRIANGLE,MO,5/1/2007 4:55 +Cincinnati,,DISK,OH,5/1/2007 9:30 +St. Augustine,,DIAMOND,FL,5/1/2007 10:00 +Monument Valley,,OVAL,UT,5/1/2007 15:00 +Crosby,,CIRCLE,MN,5/1/2007 17:00 +Parker,,CIRCLE,CO,5/1/2007 20:38 +Myrtle Beach,RED,LIGHT,SC,5/1/2007 21:00 +Wautoma,GREEN,LIGHT,WI,5/1/2007 21:00 +Paddock Lake,,FIREBALL,WI,5/1/2007 21:50 +Gaithersburg,,TRIANGLE,MD,5/1/2007 22:00 +Pinnacle,,RECTANGLE,NC,5/1/2007 23:45 +Bettendorf,,,IA,5/2/2007 3:10 +New York City,,TRIANGLE,NY,5/2/2007 20:00 +Denver,ORANGE,OVAL,CO,5/2/2007 20:20 +Richmond,YELLOW,TEARDROP,VA,5/2/2007 21:00 +Boynton Beach,,LIGHT,FL,5/2/2007 21:35 +Ellwood City,,TRIANGLE,PA,5/2/2007 22:30 +Davis,ORANGE,CIRCLE,CA,5/2/2007 22:45 +Redondo Beach,,EGG,CA,5/2/2007 23:30 +Saranac Inn,,LIGHT,NY,5/3/2007 2:45 +Biglerville,,DISK,PA,5/3/2007 4:23 +Columbus,,LIGHT,OH,5/3/2007 12:48 +Abingdon,,TRIANGLE,MD,5/3/2007 21:30 +Abingdon,,TRIANGLE,MD,5/3/2007 21:30 +North Manchester,,LIGHT,IN,5/3/2007 22:10 +Lewiston,,OTHER,MI,5/3/2007 22:30 +Silver Creek,,LIGHT,GA,5/3/2007 22:30 +Buffalo,ORANGE,LIGHT,NY,5/3/2007 23:00 +Randolph,,OTHER,MA,5/4/2007 7:48 +West Chester,,FIREBALL,PA,5/4/2007 21:00 +Madera,ORANGE,LIGHT,CA,5/4/2007 22:30 +Syracuse,,LIGHT,NY,5/4/2007 22:30 +Middleboro,,SPHERE,MA,5/4/2007 23:30 +Denton,,OTHER,NE,5/5/2007 1:00 +Richmond,,CIGAR,IN,5/5/2007 1:48 +Hendersonville,,LIGHT,NC,5/5/2007 3:00 +Lufkin,,OTHER,TX,5/5/2007 13:00 +South Kingstown,,OTHER,RI,5/5/2007 13:00 +Riverhead,,CIRCLE,NY,5/5/2007 13:30 +New York City,,CIRCLE,NY,5/5/2007 16:00 +Kaneohe,,LIGHT,HI,5/5/2007 20:25 +Beaverton,,TRIANGLE,OR,5/5/2007 21:00 +Missoula,,CONE,MT,5/6/2007 9:45 +Waldorf,,CIGAR,MD,5/6/2007 12:30 +Kalamazoo,,CONE,MI,5/6/2007 12:35 +New York City,,OVAL,NY,5/6/2007 15:30 +Flint,,OTHER,MI,5/6/2007 16:45 +Canadensis,,VARIOUS,PA,5/6/2007 18:00 +Corona,,TRIANGLE,CA,5/6/2007 22:00 +Plano,,RECTANGLE,TX,5/6/2007 22:30 +Albany,,TRIANGLE,OR,5/7/2007 0:00 +Chatham,,DIAMOND,MI,5/7/2007 0:00 +Lakeville,,LIGHT,MA,5/7/2007 5:25 +Dunkirk,,OTHER,MD,5/7/2007 12:00 +New York City,,SPHERE,NY,5/7/2007 14:01 +Kansas City,,OTHER,MO,5/7/2007 20:10 +West Plains,RED ORANGE,LIGHT,MO,5/7/2007 21:00 +Lexington,RED BLUE,LIGHT,KY,5/7/2007 21:30 +Villa Rica,,,GA,5/7/2007 22:00 +Reedsport,BLUE,CIRCLE,OR,5/7/2007 22:50 +Savannah,,CIGAR,TN,5/7/2007 23:00 +Toledo,,LIGHT,OH,5/7/2007 23:00 +Tualatin,,LIGHT,OR,5/7/2007 23:30 +Middletown,,CIGAR,NJ,5/8/2007 0:00 +Lakeview,RED,,OH,5/8/2007 1:30 +Norton,,LIGHT,MA,5/8/2007 2:00 +Romney,,,WV,5/8/2007 2:00 +Atlanta,,CIRCLE,GA,5/8/2007 8:00 +San Diego,,CIGAR,CA,5/8/2007 8:40 +New York City,,SPHERE,NY,5/8/2007 15:45 +Westchester,,DISK,NY,5/8/2007 18:21 +Lancaster,,CIRCLE,CA,5/8/2007 21:00 +North Lima,,FORMATION,OH,5/8/2007 21:30 +Portland,RED,LIGHT,ME,5/8/2007 23:00 +Clark,,CIGAR,NJ,5/8/2007 23:15 +Larchmont,,LIGHT,NY,5/8/2007 23:15 +Portland,,SPHERE,OR,5/8/2007 23:30 +North Huntingdon,,CIRCLE,PA,5/8/2007 23:45 +Reedsport,,TRIANGLE,OR,5/9/2007 4:25 +Stamford,,OVAL,NY,5/9/2007 9:30 +Platteville,,LIGHT,WI,5/9/2007 17:35 +Fond du lac,YELLOW,DIAMOND,WI,5/9/2007 19:00 +Duvall,,FLASH,WA,5/9/2007 21:15 +Woodstock,,LIGHT,VA,5/9/2007 21:30 +Rock Hill,RED,OTHER,SC,5/9/2007 22:00 +Stockton,,LIGHT,KS,5/9/2007 22:00 +Irvine,,CIRCLE,CA,5/9/2007 22:50 +Talbott,YELLOW GREEN,,TN,5/10/2007 0:00 +Boulder,RED GREEN BLUE,CIRCLE,CO,5/10/2007 1:00 +Covina,,LIGHT,CA,5/10/2007 1:00 +Fayetteville,,LIGHT,AR,5/10/2007 1:35 +Tucson,,LIGHT,AZ,5/10/2007 2:00 +Bailey's Harbor,,CIRCLE,WI,5/10/2007 5:15 +Mount Airy,,DISK,GA,5/10/2007 6:00 +Anniston,,LIGHT,AL,5/10/2007 21:00 +Surprise,,LIGHT,AZ,5/10/2007 21:00 +Corona del Mar,,CIRCLE,CA,5/10/2007 21:30 +El Dorado,,LIGHT,KS,5/10/2007 21:50 +Greenfield,GREEN,TRIANGLE,IL,5/10/2007 23:00 +Seattle,,SPHERE,WA,5/11/2007 0:00 +Terre Haute,,CIRCLE,IN,5/11/2007 0:48 +Memphis,,DISK,TN,5/11/2007 4:30 +Williamsburg,,CYLINDER,VA,5/11/2007 15:50 +Santa Barbara,,OTHER,CA,5/11/2007 20:35 +Knappa,,,OR,5/11/2007 22:33 +Lake Jocassee,,LIGHT,NC,5/12/2007 0:00 +Ellisville Ballwin Wildwood,,DISK,MO,5/12/2007 2:30 +Chicago,,OTHER,IL,5/12/2007 14:00 +Springfield,,OTHER,IL,5/12/2007 14:30 +Westwood,,OVAL,NJ,5/12/2007 14:40 +Reno,,OVAL,NV,5/12/2007 18:00 +Asheville,RED,DISK,NC,5/12/2007 22:00 +Madison,RED GREEN BLUE,,WI,5/12/2007 23:00 +San Diego,,TRIANGLE,CA,5/12/2007 23:20 +Hernando,,FLASH,MS,5/12/2007 23:22 +Portsmouth,,LIGHT,OH,5/12/2007 23:50 +Lawton,,FIREBALL,OK,5/13/2007 2:00 +South Elgin,BLUE,EGG,IL,5/13/2007 2:50 +New York City,,,NY,5/13/2007 18:20 +Overland Park,,DIAMOND,KS,5/13/2007 20:15 +Clovis,,DISK,NM,5/13/2007 23:00 +Muskegon,,OTHER,MI,5/14/2007 12:15 +Visalia,ORANGE,LIGHT,CA,5/14/2007 17:30 +New York City,,LIGHT,NY,5/14/2007 19:30 +New York City,,LIGHT,NY,5/14/2007 21:00 +St. Louis,,LIGHT,MO,5/14/2007 21:50 +Mill Creek,,FLASH,WA,5/14/2007 23:00 +Seattle,,CIRCLE,WA,5/15/2007 0:15 +New Jersey Graden State Parkway,,LIGHT,NJ,5/15/2007 7:00 +Lyndhurst,,DISK,NJ,5/15/2007 8:00 +Rexford,,DISK,NY,5/15/2007 10:10 +Centreville,,OTHER,MD,5/15/2007 12:00 +Nevada,,LIGHT,NV,5/15/2007 13:00 +O'Fallon,,SPHERE,IL,5/15/2007 13:00 +Edwardsville,,TRIANGLE,IL,5/15/2007 17:30 +Cerritos,,,CA,5/15/2007 20:35 +Mt. Dora,GREEN,,FL,5/15/2007 22:00 +Bonita Springs,,CIRCLE,FL,5/15/2007 22:15 +Reedy,,VARIOUS,WV,5/15/2007 23:00 +Davenport,,TRIANGLE,IA,5/15/2007 23:40 +Southington,,FIREBALL,CT,5/15/2007 23:40 +Ypsilanti,,TRIANGLE,MI,5/16/2007 1:00 +Lovelock,,CIGAR,NV,5/16/2007 7:30 +Mission,,CIRCLE,TX,5/16/2007 15:00 +Chilton,,TRIANGLE,WI,5/16/2007 21:00 +Mesquite,,,TX,5/16/2007 21:45 +Portland,,LIGHT,OR,5/16/2007 22:00 +Wichita,,OTHER,KS,5/17/2007 1:00 +Columbia,,CYLINDER,MO,5/17/2007 13:00 +Schaumurg,,CIRCLE,IL,5/17/2007 14:15 +Itasca,ORANGE,OTHER,IL,5/17/2007 16:30 +Atlanta,,LIGHT,IN,5/17/2007 22:30 +Converse,,LIGHT,IN,5/17/2007 22:30 +New Braunfels,,LIGHT,TX,5/18/2007 2:30 +Naperville,,EGG,IL,5/18/2007 9:45 +St. Charles,,CIGAR,MO,5/18/2007 11:00 +Cabot,,LIGHT,AR,5/18/2007 21:00 +Nederland,GREEN,FLASH,TX,5/18/2007 21:00 +Cross Roads,,OTHER,TX,5/18/2007 23:00 +Cupertino,,CIRCLE,CA,5/19/2007 10:30 +Judsonia,,DISK,AR,5/19/2007 13:00 +Las Vegas,,LIGHT,NV,5/19/2007 20:30 +Columbus,,LIGHT,OH,5/19/2007 21:00 +Rancho Cucamonga,ORANGE,CIRCLE,CA,5/19/2007 21:50 +Perth Amboy,,OVAL,NJ,5/20/2007 6:00 +Beecher,,DISK,IL,5/20/2007 8:45 +Lehigh Acres,,,FL,5/20/2007 15:00 +Sacramento,RED,FIREBALL,CA,5/20/2007 19:15 +Santa Ana,,LIGHT,CA,5/20/2007 20:30 +San Rafael,,VARIOUS,CA,5/20/2007 21:10 +Orlando,,,FL,5/20/2007 22:00 +Denver,,TRIANGLE,CO,5/20/2007 23:54 +Grove City,RED GREEN,TRIANGLE,PA,5/21/2007 12:40 +Port Isabel,,DISK,TX,5/21/2007 21:00 +Orlando,,,FL,5/21/2007 23:00 +Phoenix,RED,LIGHT,AZ,5/22/2007 0:00 +Port St. Lucie,,DISK,FL,5/22/2007 1:20 +Dawsonville,,TRIANGLE,GA,5/22/2007 2:00 +Worcester?,,CONE,MA,5/22/2007 7:25 +Des Moines,,VARIOUS,IA,5/22/2007 20:10 +Everett,,LIGHT,WA,5/22/2007 20:48 +Carrabelle,ORANGE YELLOW,OTHER,FL,5/22/2007 21:00 +Denton,GREEN,CIRCLE,TX,5/22/2007 23:00 +Folenburg,,DISK,OR,5/23/2007 5:45 +Berkeley,,,CA,5/23/2007 12:09 +Lynn Haven,,DISK,FL,5/23/2007 15:00 +Cross Lanes,,OVAL,WV,5/23/2007 15:30 +State College,,,PA,5/23/2007 22:00 +Round Rock,RED,CIRCLE,TX,5/23/2007 22:05 +Allenhurst,,OVAL,GA,5/23/2007 22:30 +Lebanon,,LIGHT,IN,5/23/2007 22:30 +Higly,,FORMATION,AZ,5/23/2007 23:00 +Port Angeles,,DIAMOND,WA,5/23/2007 23:00 +Albany,,EGG,NY,5/23/2007 23:30 +Cottonwood,,VARIOUS,CA,5/23/2007 23:45 +Denton,,FIREBALL,TX,5/24/2007 0:00 +Chandler,,CIRCLE,AZ,5/24/2007 4:00 +Henderson,,CIGAR,NV,5/24/2007 11:19 +Frankfort,,OTHER,IN,5/24/2007 22:00 +Johnson City,,,TN,5/24/2007 22:00 +Paso Robles,,OTHER,CA,5/25/2007 0:00 +Budd Lake,,TEARDROP,NJ,5/25/2007 3:00 +Muillca Township,,FORMATION,NJ,5/25/2007 10:25 +Bergenfield,,OTHER,NJ,5/25/2007 14:15 +Chehalis,,RECTANGLE,WA,5/25/2007 17:00 +Lakeville,,LIGHT,MN,5/25/2007 21:00 +Bridgeport,,CIRCLE,CT,5/26/2007 0:00 +Maurertown,GREEN,CIRCLE,VA,5/26/2007 0:45 +Daytona Beach,,TRIANGLE,FL,5/26/2007 1:00 +Seattle,,CIRCLE,WA,5/26/2007 1:45 +Village of Oak Creek,,CIGAR,AZ,5/26/2007 7:00 +Fargo,,VARIOUS,ND,5/26/2007 18:30 +Wilmington,ORANGE,OVAL,NC,5/26/2007 19:00 +Westminster,,FIREBALL,MD,5/26/2007 21:10 +Vacaville,ORANGE,DISK,CA,5/26/2007 21:40 +Russels Point,,FIREBALL,OH,5/26/2007 23:30 +West Bridgewater,,OTHER,MA,5/26/2007 23:30 +Albuquerque,,CIRCLE,NM,5/26/2007 23:58 +Maple Grove,GREEN,DISK,MN,5/27/2007 3:00 +Wesley Chapel,,TEARDROP,FL,5/27/2007 17:15 +Spur,,LIGHT,TX,5/27/2007 20:15 +Denver,,TRIANGLE,CO,5/27/2007 21:00 +Corona,ORANGE,CIRCLE,CA,5/27/2007 22:00 +Corona,,FIREBALL,CA,5/27/2007 22:00 +Springfield,,TRIANGLE,MA,5/28/2007 1:00 +Albuquerque,,SPHERE,NM,5/28/2007 7:30 +Lakemont,,CIRCLE,NY,5/28/2007 11:00 +Sacramento,,VARIOUS,CA,5/28/2007 11:50 +Portland,,CIRCLE,OR,5/28/2007 18:45 +Orlando,,TRIANGLE,FL,5/28/2007 22:45 +Kea'au,GREEN,FLASH,HI,5/28/2007 23:30 +Pahoa,GREEN,FLASH,HI,5/28/2007 23:30 +Orlando,,VARIOUS,FL,5/29/2007 15:39 +Gilroy,,LIGHT,CA,5/29/2007 21:00 +West Bridgewater,,,MA,5/29/2007 21:00 +St. George Island,RED,SPHERE,FL,5/29/2007 21:30 +New York City,,LIGHT,NY,5/29/2007 21:35 +Salineville,,CIRCLE,OH,5/29/2007 22:00 +Sedona,RED,CYLINDER,AZ,5/30/2007 12:00 +New York City,BLUE,,NY,5/30/2007 14:18 +Portland,,SPHERE,OR,5/30/2007 19:45 +Hubert,,SPHERE,NC,5/30/2007 21:00 +Safford,,FIREBALL,AZ,5/30/2007 21:00 +Santa Ana,,RECTANGLE,CA,5/30/2007 21:00 +Albuquerque,,DISK,NM,5/30/2007 22:00 +Elko,,,NV,5/30/2007 22:00 +Elko,,SPHERE,NV,5/30/2007 22:00 +Sebring,ORANGE,CIRCLE,FL,5/30/2007 23:00 +Springfield,,DISK,MO,5/31/2007 0:00 +Big Lake,,SPHERE,MN,5/31/2007 4:20 +Pascagoula,,FIREBALL,MS,5/31/2007 10:24 +Bothell,,DISK,WA,5/31/2007 13:00 +Ashtabula,,CIRCLE,OH,5/31/2007 21:00 +Detroit,,FIREBALL,MI,5/31/2007 21:30 +London,,LIGHT,KY,5/31/2007 22:00 +Springfield,,EGG,MO,5/31/2007 23:00 +St. Louis,,,MO,5/31/2007 23:00 +Taylorsville,,,KY,6/1/2007 1:00 +Spencer,,CIRCLE,WI,6/1/2007 10:00 +Mandeville,,CIGAR,LA,6/1/2007 18:45 +Covina,GREEN,SPHERE,CA,6/1/2007 19:00 +Zanesville,,TEARDROP,IN,6/1/2007 22:00 +Alpharetta,,TRIANGLE,GA,6/1/2007 23:00 +Interstate 5,,,WA,6/1/2007 23:00 +Hallandale Beach,,CIRCLE,FL,6/2/2007 8:30 +Purdy Spitt,,FORMATION,WA,6/2/2007 23:30 +Hollywood,GREEN,TRIANGLE,FL,6/3/2007 15:05 +Hempstead,,,NY,6/3/2007 17:00 +Huntington,,OVAL,IN,6/3/2007 19:30 +Raymore,,TRIANGLE,MO,6/3/2007 20:00 +Walla Walla,,CONE,WA,6/3/2007 20:00 +Orange Beach,,LIGHT,AL,6/3/2007 21:00 +Houston,RED,SPHERE,TX,6/3/2007 21:30 +Las Vegas,,,NV,6/4/2007 0:30 +Fredericksburg,,LIGHT,VA,6/4/2007 2:00 +New Mexico,,DISK,NM,6/4/2007 13:00 +Ephrata,RED,SPHERE,WA,6/4/2007 20:00 +Raymore,,OVAL,MO,6/4/2007 20:45 +College Grove,,LIGHT,TN,6/4/2007 21:00 +Valley,,SPHERE,AL,6/4/2007 21:35 +Capitola,,CHEVRON,CA,6/4/2007 21:43 +Suwanee,,LIGHT,GA,6/4/2007 22:12 +Kannapolis,,OVAL,NC,6/4/2007 22:20 +Midland,,LIGHT,TX,6/4/2007 22:30 +Methuen,,SPHERE,MA,6/5/2007 2:42 +Apollo,,OTHER,PA,6/5/2007 18:00 +Chicago,GREEN,LIGHT,IL,6/5/2007 21:25 +Williamsport,,FIREBALL,PA,6/5/2007 21:30 +Downers Grove,,LIGHT,IL,6/5/2007 21:35 +Allentown,ORANGE,,PA,6/5/2007 22:00 +Richmond,,,KY,6/5/2007 22:20 +New York City,,LIGHT,NY,6/5/2007 22:32 +Bloomington,,,IN,6/5/2007 22:45 +Colfax,,LIGHT,WI,6/5/2007 23:30 +White City,RED,FIREBALL,NM,6/6/2007 0:00 +Waverly,,OTHER,OH,6/6/2007 1:00 +Newark,,LIGHT,DE,6/6/2007 2:50 +Kirkwood,,OVAL,MO,6/6/2007 3:55 +Hudson Falls,,LIGHT,NY,6/6/2007 21:03 +Jericho,,OTHER,NY,6/6/2007 21:15 +Darlington,,,PA,6/6/2007 22:00 +Fort Morgan,,LIGHT,AL,6/6/2007 22:00 +Gulf Shores,,VARIOUS,AL,6/6/2007 22:00 +Morehead,,OTHER,KY,6/6/2007 22:00 +Poulsbo,,CIRCLE,WA,6/6/2007 22:02 +Denton,GREEN,VARIOUS,TX,6/6/2007 22:11 +Versailles,ORANGE,,KY,6/6/2007 22:13 +Burgin,,DISK,KY,6/6/2007 22:30 +Clovis,,CIRCLE,CA,6/6/2007 22:30 +Florala,,,AL,6/7/2007 0:00 +Locust Grove,,CIGAR,GA,6/7/2007 0:00 +Las Vegas,,LIGHT,NV,6/7/2007 3:30 +Commerce,,LIGHT,GA,6/7/2007 4:45 +Popping Rock,,SPHERE,KY,6/7/2007 11:00 +Narragansett,,CHEVRON,RI,6/7/2007 21:15 +Fresno,,TRIANGLE,CA,6/7/2007 22:00 +Fresno,,TRIANGLE,CA,6/7/2007 22:00 +Seattle,,LIGHT,WA,6/7/2007 22:45 +Kalamazoo,,TRIANGLE,MI,6/7/2007 23:00 +Frederick,,LIGHT,MD,6/7/2007 23:30 +Lake Stevens,,LIGHT,WA,6/8/2007 0:55 +Deerfield,,TRIANGLE,IL,6/8/2007 13:00 +Trinidad,,DISK,CO,6/8/2007 13:45 +Ellendale,,LIGHT,MN,6/8/2007 21:30 +Shavertown,,LIGHT,PA,6/9/2007 0:00 +Tompkinsville,,LIGHT,KY,6/9/2007 11:06 +Arvada,,CHEVRON,CO,6/9/2007 12:45 +Woodridge,,LIGHT,IL,6/9/2007 15:00 +Chicago,,FORMATION,IL,6/9/2007 18:10 +Kalamazoo,,OTHER,MI,6/9/2007 18:25 +East Aurora,RED,CIRCLE,NY,6/9/2007 21:00 +Franklin,,,VA,6/9/2007 22:00 +Carol Stream,GREEN,CIGAR,IL,6/9/2007 22:21 +Hartsburg,RED GREEN,TRIANGLE,IL,6/9/2007 23:00 +Festus,BLUE,OTHER,MO,6/9/2007 23:15 +Columbia,,TRIANGLE,IL,6/9/2007 23:20 +Buckeye,,LIGHT,AZ,6/10/2007 1:24 +Indianapolis,,FORMATION,IN,6/10/2007 3:00 +Tybee Island,,SPHERE,GA,6/10/2007 4:00 +Muskegon,,,MI,6/10/2007 11:15 +Saint Paul,,DIAMOND,MN,6/10/2007 20:45 +San Diego,GREEN,CIRCLE,CA,6/10/2007 21:00 +Wakefield,GREEN,CIRCLE,MA,6/10/2007 21:30 +Myrtle Beach,RED,TRIANGLE,SC,6/10/2007 22:24 +Irvine,GREEN,CIRCLE,CA,6/10/2007 22:30 +Waco,,LIGHT,TX,6/10/2007 22:41 +Oak Lawn,,LIGHT,IL,6/10/2007 23:00 +Kingston,,SPHERE,WA,6/10/2007 23:30 +Seattle,,FLASH,WA,6/11/2007 0:43 +Carbondale,,TRIANGLE,IL,6/11/2007 1:00 +Oxford,,CIRCLE,NY,6/11/2007 3:00 +Las Cruces,,VARIOUS,NM,6/11/2007 9:00 +Stevensville,,CIRCLE,MT,6/11/2007 9:45 +Palmdale,,SPHERE,CA,6/11/2007 15:30 +Middleton,,SPHERE,WI,6/11/2007 16:00 +Bridgeport,,LIGHT,CT,6/11/2007 21:00 +Foster City,RED,SPHERE,CA,6/11/2007 21:35 +Newtown,RED GREEN,LIGHT,CT,6/11/2007 21:40 +New Troy,,LIGHT,MI,6/11/2007 22:30 +St. Helen,,LIGHT,MI,6/12/2007 22:00 +Clinton,,DISK,AR,6/12/2007 22:30 +Walla Walla,ORANGE,CIRCLE,WA,6/12/2007 23:30 +Walla Walla,RED,FORMATION,WA,6/12/2007 23:30 +Salt Lake City,,CIGAR,UT,6/13/2007 7:35 +St. Paul,,CIGAR,MN,6/13/2007 17:30 +Marshall,RED,TEARDROP,TX,6/13/2007 21:30 +Vallejo,,VARIOUS,CA,6/13/2007 21:45 +Shreveport,GREEN,TEARDROP,LA,6/13/2007 22:00 +North Port,,CIRCLE,FL,6/13/2007 23:00 +Canyon,,LIGHT,TX,6/13/2007 23:15 +Marshall,ORANGE BLUE,TEARDROP,TX,6/13/2007 23:35 +Elko,,,NV,6/14/2007 0:00 +San Lorenzo,,LIGHT,CA,6/14/2007 2:00 +Three Rocks,,LIGHT,CA,6/14/2007 2:30 +Warner Town,,DISK,PA,6/14/2007 13:00 +Waxahachie,ORANGE,LIGHT,TX,6/14/2007 20:00 +Forest HIll,,LIGHT,MD,6/14/2007 21:30 +Russellville,,LIGHT,KY,6/14/2007 21:30 +Fort White,,,FL,6/14/2007 22:15 +St. George,,TRIANGLE,ME,6/14/2007 22:15 +Ebensburg,,LIGHT,PA,6/14/2007 22:40 +Thermopolis,,,WY,6/14/2007 23:00 +South Bend,,LIGHT,IN,6/14/2007 23:30 +Greencastle.,,OTHER,IN,6/15/2007 0:00 +Port Saint Lucie,,TRIANGLE,FL,6/15/2007 0:45 +Hardy,,LIGHT,VA,6/15/2007 1:00 +Fancy Gap Mtn.,,,VA,6/15/2007 2:00 +Suwanee,,,GA,6/15/2007 2:00 +Rowayton,,OVAL,CT,6/15/2007 9:30 +Monroe,,FIREBALL,MI,6/15/2007 10:30 +Susanville,,CIRCLE,CA,6/15/2007 12:00 +Cedar Rapids,,,IA,6/15/2007 13:00 +Mountain,,DISK,WI,6/15/2007 14:00 +Maui,,,HI,6/15/2007 20:00 +Provo,,OVAL,UT,6/15/2007 21:07 +Felton,,TEARDROP,CA,6/15/2007 21:45 +Murrells Inlet,RED,LIGHT,SC,6/15/2007 22:00 +Pawleys Island,,,SC,6/15/2007 22:00 +Wayne,,LIGHT,MI,6/15/2007 22:00 +Ashland,,TRIANGLE,MO,6/15/2007 22:30 +Joplin,,LIGHT,MO,6/15/2007 22:30 +Elk River,,,MN,6/15/2007 22:45 +Emily,,TRIANGLE,MN,6/15/2007 23:00 +Missoula,,LIGHT,MT,6/16/2007 1:00 +Silver City,,,NM,6/16/2007 3:15 +New York City,,DISK,NY,6/16/2007 5:20 +Sneads,,DISK,FL,6/16/2007 13:20 +Downers Grove,,CYLINDER,IL,6/16/2007 17:00 +Tucson,RED,LIGHT,AZ,6/16/2007 20:00 +Castro Valley,RED,TRIANGLE,CA,6/16/2007 22:00 +Cicero,RED,LIGHT,IN,6/16/2007 22:00 +Payson,,OTHER,AZ,6/16/2007 22:00 +DeWitt,,CIRCLE,MI,6/16/2007 22:40 +Commerce Township,,FLASH,MI,6/17/2007 4:45 +Stevensville,,TRIANGLE,MT,6/17/2007 8:00 +Kansas City,,OTHER,KS,6/17/2007 10:00 +Smokey Point,,OTHER,WA,6/17/2007 11:00 +Tacoma,,VARIOUS,WA,6/17/2007 11:00 +Merrick,,OVAL,NY,6/17/2007 19:30 +Cary,,LIGHT,IL,6/17/2007 23:00 +Salt Lake City,,FIREBALL,UT,6/18/2007 4:45 +Waterbury,,CIGAR,CT,6/18/2007 10:30 +Scottsdale,,OTHER,AZ,6/18/2007 11:30 +Shafter VOR,,CYLINDER,CA,6/18/2007 12:00 +Woodland,,CIGAR,CA,6/18/2007 14:00 +University Place,,CONE,WA,6/18/2007 20:40 +Joshua Tree National Park,YELLOW,LIGHT,CA,6/18/2007 21:00 +Lubbock,,CYLINDER,TX,6/18/2007 21:10 +Lake Forest,,OVAL,CA,6/18/2007 21:55 +Dallesport,,CIRCLE,WA,6/18/2007 22:00 +Stratford,,CIRCLE,NJ,6/18/2007 22:05 +Portland,,LIGHT,OR,6/18/2007 22:18 +Las Vegas,,LIGHT,NV,6/18/2007 22:25 +Lanesboro,,LIGHT,MN,6/18/2007 22:55 +Denver,,TRIANGLE,PA,6/18/2007 23:00 +Ashburn,,LIGHT,VA,6/18/2007 23:19 +Nabb,,LIGHT,IN,6/19/2007 3:30 +Grand Rapids,BLUE,TRIANGLE,MN,6/19/2007 5:15 +St. Charles,,SPHERE,IL,6/19/2007 10:15 +Glenwood Spring,,LIGHT,CO,6/19/2007 10:30 +Greenville,,TRIANGLE,MS,6/19/2007 15:00 +Wayne,,CIGAR,NJ,6/19/2007 15:00 +Missoula,,,MT,6/19/2007 20:10 +Fleetwood,,LIGHT,PA,6/19/2007 20:47 +Monroe,,LIGHT,LA,6/19/2007 20:54 +South Milwaukee,,LIGHT,WI,6/19/2007 21:00 +Park Forest,,SPHERE,IL,6/19/2007 21:30 +Chicago,,LIGHT,IL,6/19/2007 21:45 +Rochester Hills,,LIGHT,MI,6/19/2007 21:55 +Aurora,,,CO,6/19/2007 22:00 +Beaverton,,,OR,6/19/2007 22:00 +Seattle,,LIGHT,WA,6/19/2007 22:00 +Colorado Springs,,LIGHT,CO,6/19/2007 22:05 +Hemet,,LIGHT,CA,6/19/2007 22:30 +Kentwood,,CIRCLE,MI,6/19/2007 22:30 +Lincoln City,,LIGHT,OR,6/19/2007 22:30 +Morenci,,,MI,6/19/2007 22:30 +Mount Prospect,,LIGHT,IL,6/19/2007 22:30 +Lebanon,,LIGHT,OR,6/19/2007 22:33 +Clawson,,FORMATION,MI,6/19/2007 22:35 +Mountain View,,FORMATION,CA,6/19/2007 22:35 +Ortonville,,FORMATION,MI,6/19/2007 22:37 +Grenada,,LIGHT,CA,6/19/2007 22:38 +Anderson,,LIGHT,IN,6/19/2007 22:40 +Beaverton,,OTHER,OR,6/19/2007 22:40 +Dearborn Heights,,OTHER,MI,6/19/2007 22:40 +Santa Clara,,,CA,6/19/2007 22:45 +Williston,,LIGHT,ND,6/19/2007 22:50 +Sioux City,,LIGHT,IA,6/19/2007 23:00 +Yellowstone National Park,,FORMATION,WY,6/19/2007 23:00 +Spencer,,FORMATION,IA,6/19/2007 23:05 +Westmont,,LIGHT,IL,6/19/2007 23:14 +Saint Petersburg,,CIRCLE,FL,6/19/2007 23:59 +Keizer,,OVAL,OR,6/20/2007 0:00 +Grand Rapids,,LIGHT,MI,6/20/2007 1:30 +Monroe,,CIRCLE,UT,6/20/2007 11:30 +Glen House,,DISK,NH,6/20/2007 13:24 +Salem,,DISK,OR,6/20/2007 14:30 +South Bend,,DISK,IN,6/20/2007 18:00 +Cookeville,,LIGHT,TN,6/20/2007 20:20 +Newburgh,,LIGHT,NY,6/20/2007 21:23 +Keansburg,,LIGHT,NJ,6/20/2007 21:30 +Mexico,,LIGHT,MO,6/20/2007 21:50 +Albia,,LIGHT,IA,6/20/2007 21:56 +Maricopa,,LIGHT,AZ,6/20/2007 22:00 +Muncie,ORANGE,TRIANGLE,IN,6/20/2007 22:00 +Sabetha,,SPHERE,KS,6/20/2007 22:00 +Denver,,CIRCLE,CO,6/20/2007 22:25 +Muncie,ORANGE,TRIANGLE,IN,6/20/2007 22:30 +Hendersonville,,OTHER,NC,6/20/2007 22:45 +Louisville,,LIGHT,KY,6/20/2007 22:55 +Columbus,,LIGHT,OH,6/20/2007 23:00 +Manhattan,,LIGHT,KS,6/20/2007 23:00 +San Juan Bautista,,FIREBALL,CA,6/20/2007 23:00 +Shelbyville,,LIGHT,IN,6/20/2007 23:00 +Duluth,,OTHER,MN,6/20/2007 23:30 +Wheatland,,CIRCLE,ND,6/20/2007 23:45 +Bunnell,,TRIANGLE,FL,6/20/2007 23:50 +Greenville,,CIGAR,SC,6/21/2007 2:19 +El Paso,,FORMATION,TX,6/21/2007 15:35 +Borrego Springs,,OVAL,CA,6/21/2007 19:00 +Clarklake,,CIGAR,MI,6/21/2007 20:35 +Avondale,,OTHER,AZ,6/21/2007 21:25 +Rancho Santa Margarita,,LIGHT,CA,6/21/2007 21:30 +Yakima,,LIGHT,WA,6/21/2007 21:30 +Correctionville,,TRIANGLE,IA,6/21/2007 23:00 +Evanston,,FORMATION,WY,6/21/2007 23:00 +Mobile,GREEN,FIREBALL,AL,6/21/2007 23:15 +Round Valley,BLUE,CIRCLE,ID,6/22/2007 1:00 +Fresno,,EGG,CA,6/22/2007 2:00 +Berlin Heights,,FIREBALL,OH,6/22/2007 4:30 +Torrance,,LIGHT,CA,6/22/2007 12:30 +Shorewood,,VARIOUS,IL,6/22/2007 17:00 +Ventura,,CHEVRON,CA,6/22/2007 21:40 +Fayetteville,,LIGHT,GA,6/22/2007 22:00 +Santa Barbara,,,CA,6/22/2007 22:00 +Secaucus,,SPHERE,NJ,6/22/2007 22:10 +Pottsville,,SPHERE,PA,6/22/2007 22:49 +Martinsburg,,,WV,6/22/2007 23:00 +Gary,,LIGHT,IN,6/22/2007 23:15 +Greeneville,,,TN,6/23/2007 0:00 +Salisbury,,DISK,NC,6/23/2007 2:30 +Rutland,,DISK,VT,6/23/2007 9:45 +Lakeside,,DISK,AZ,6/23/2007 12:30 +Washougal,,FORMATION,WA,6/23/2007 14:00 +McVeytown,ORANGE,CIGAR,PA,6/23/2007 14:20 +New York City,,CIRCLE,NY,6/23/2007 17:00 +Big Bear,,LIGHT,CA,6/23/2007 21:00 +Louisburg,,CIRCLE,KS,6/23/2007 21:00 +Chino Hills,,DIAMOND,CA,6/23/2007 21:10 +Grand Bay,GREEN,FIREBALL,AL,6/23/2007 21:10 +North Hollywood,,CIRCLE,CA,6/23/2007 21:30 +Saint Cloud,,FIREBALL,FL,6/23/2007 21:30 +Carol Stream,,SPHERE,IL,6/23/2007 21:32 +Lee's Summit,,TRIANGLE,MO,6/23/2007 22:15 +North Pownal,,OVAL,VT,6/23/2007 22:20 +Old Station,,LIGHT,CA,6/23/2007 23:15 +Heuvelton,,TRIANGLE,NY,6/23/2007 23:30 +Douglas,ORANGE,LIGHT,WY,6/24/2007 0:30 +Liberty Hill,,FLASH,TX,6/24/2007 0:30 +Palmdale,,LIGHT,CA,6/24/2007 2:00 +Plymouth,,,CT,6/24/2007 3:00 +Oregon,,OVAL,OH,6/24/2007 4:30 +Frankfort,,TRIANGLE,KY,6/24/2007 12:34 +Frankfort,,TRIANGLE,KY,6/24/2007 12:56 +El Dorado Springs,,CIGAR,MO,6/24/2007 15:00 +San Diego,,OTHER,CA,6/24/2007 18:00 +Columbia,,CYLINDER,MO,6/24/2007 19:40 +Shinnston,RED,DISK,WV,6/24/2007 21:00 +Saint Coud,,FIREBALL,FL,6/24/2007 21:15 +Williamsport,BLUE,FIREBALL,PA,6/24/2007 21:50 +Charlestown,,TRIANGLE,IN,6/24/2007 22:30 +Irvine,,CIRCLE,CA,6/24/2007 22:30 +Sonoma,BLUE,CROSS,CA,6/24/2007 22:35 +Texas coast,,CIGAR,TX,6/24/2007 22:48 +Cherry Grove Beach,,LIGHT,SC,6/24/2007 23:00 +Sarasota,,LIGHT,FL,6/24/2007 23:50 +Toledo,,DISK,OH,6/25/2007 0:30 +Prattville,,TRIANGLE,AL,6/25/2007 2:20 +Marion,,LIGHT,MI,6/25/2007 3:30 +Tempe,,VARIOUS,AZ,6/25/2007 16:00 +St. Louis,,,MO,6/25/2007 20:30 +Tulare,,RECTANGLE,CA,6/25/2007 21:00 +Bradenton,,LIGHT,FL,6/25/2007 21:30 +San Diego,,TRIANGLE,CA,6/25/2007 21:30 +Petaluma,,,CA,6/25/2007 22:15 +Fayetteville,,CIGAR,NC,6/25/2007 22:30 +San Juan Capistrano,RED YELLOW,DISK,CA,6/25/2007 23:00 +Fort Wayne,,OVAL,IN,6/26/2007 8:30 +Boise,,DISK,ID,6/26/2007 16:00 +Gulf Shores,,LIGHT,AL,6/26/2007 21:00 +Rockwell City,,FIREBALL,IA,6/26/2007 21:00 +Loganville,,LIGHT,GA,6/26/2007 21:30 +Orem,,LIGHT,UT,6/26/2007 21:45 +Myrtle Beach,ORANGE,LIGHT,SC,6/26/2007 22:30 +St. Louis,,,MO,6/26/2007 22:30 +Burlington,,,CT,6/26/2007 22:45 +Nevada,,,NV,6/27/2007 15:00 +Jersey City,,OTHER,NJ,6/27/2007 20:45 +Hoboken,,VARIOUS,NJ,6/27/2007 21:00 +Gilroy,,LIGHT,CA,6/27/2007 21:53 +Oak Lawn,,LIGHT,IL,6/27/2007 22:00 +Grand Rapids,,LIGHT,MI,6/28/2007 2:30 +Lake Isabella,,CIRCLE,CA,6/28/2007 11:00 +Seattle,,DISK,WA,6/28/2007 21:00 +Seattle,,OTHER,WA,6/28/2007 21:00 +Hammond,,CIGAR,LA,6/28/2007 21:11 +Robbinsville,ORANGE,LIGHT,NC,6/28/2007 21:30 +Garden City Beach,,LIGHT,SC,6/28/2007 22:00 +Bloomington,,OVAL,IN,6/28/2007 23:00 +Myrtle Beach,,LIGHT,SC,6/28/2007 23:00 +Neptune,,CIRCLE,OH,6/29/2007 0:00 +Shawnee,RED,TRIANGLE,KS,6/29/2007 1:00 +Oak Lawn,,CIRCLE,IL,6/29/2007 17:00 +North Adamas,ORANGE,LIGHT,MA,6/29/2007 22:00 +Phoenix,RED,RECTANGLE,AZ,6/29/2007 23:00 +North Platte,,TRIANGLE,NE,6/29/2007 23:30 +Noblesville,,FIREBALL,IN,6/29/2007 23:40 +Laguna Beach,,CIRCLE,CA,6/30/2007 0:00 +Mattoon,,RECTANGLE,IL,6/30/2007 0:00 +Withyville,,OVAL,VA,6/30/2007 0:00 +Marshfield,,TRIANGLE,MO,6/30/2007 8:00 +Seattle,,LIGHT,WA,6/30/2007 9:45 +Marshfield,,TRIANGLE,MO,6/30/2007 10:00 +Erie,,OVAL,PA,6/30/2007 12:00 +Miami Beach,,SPHERE,FL,6/30/2007 12:30 +New York City,,TRIANGLE,NY,6/30/2007 18:35 +Waterford,,CIGAR,PA,6/30/2007 20:00 +Ft. Lauderdale,,LIGHT,FL,6/30/2007 20:50 +Burns,,FLASH,OR,6/30/2007 22:00 +Yuma,,DISK,AZ,6/30/2007 22:00 +North Pole,,FORMATION,AK,6/30/2007 22:09 +Indianapolis,RED,LIGHT,IN,6/30/2007 22:10 +Saint Johns,,RECTANGLE,MI,6/30/2007 22:30 +Southington,,FIREBALL,CT,6/30/2007 22:30 +Southigton,,SPHERE,CT,6/30/2007 23:00 +Terrell,,TRIANGLE,TX,6/30/2007 23:00 +San Bernadino,,LIGHT,CA,6/30/2007 23:45 +Oregon coastline,,OTHER,OR,7/1/2007 0:00 +Ooltewah,,VARIOUS,TN,7/1/2007 4:00 +Placerville,ORANGE,LIGHT,CA,7/1/2007 5:30 +Santa Monica,,CIRCLE,CA,7/1/2007 13:00 +Mesa,,,AZ,7/1/2007 14:00 +Colchester,,DISK,CT,7/1/2007 20:28 +Dunedin,,TRIANGLE,FL,7/1/2007 20:30 +Santa Barbara,GREEN,OVAL,CA,7/1/2007 21:30 +Lewiston,,LIGHT,ID,7/1/2007 21:55 +Kennewick,RED,TRIANGLE,WA,7/1/2007 22:00 +Hillsboro,RED BLUE,TRIANGLE,OR,7/1/2007 22:10 +Livingston,,CIRCLE,TX,7/1/2007 22:40 +North Grosvenordale,,,CT,7/1/2007 23:00 +Winchester,,TRIANGLE,KY,7/2/2007 10:25 +Escondido,,CYLINDER,CA,7/2/2007 15:15 +Licking,ORANGE,,MO,7/2/2007 21:00 +Paso Robles,,,CA,7/2/2007 22:00 +St. George,,OTHER,UT,7/2/2007 23:58 +Freeport,GREEN,CIRCLE,IL,7/3/2007 3:00 +Kirkland,,CIRCLE,WA,7/3/2007 3:30 +Grandview,,LIGHT,OH,7/3/2007 11:30 +Columbus,,LIGHT,OH,7/3/2007 11:40 +Stanwood,,DISK,WA,7/3/2007 13:00 +Holyoke,,DISK,MA,7/3/2007 14:15 +Columbia,,CIGAR,MO,7/3/2007 16:30 +Springfield,,DISK,IL,7/3/2007 18:45 +Meriden,RED,CIRCLE,CT,7/3/2007 20:00 +Southside,,TRIANGLE,AL,7/3/2007 21:30 +Mountain Home,,LIGHT,AR,7/3/2007 21:50 +Choctaw,,CHEVRON,OK,7/3/2007 22:00 +Scranton,,SPHERE,PA,7/3/2007 22:00 +Springfield,,OVAL,NJ,7/3/2007 22:10 +San Diego,,SPHERE,CA,7/3/2007 22:17 +Saddleback,,CIRCLE,CA,7/3/2007 22:20 +Hilliard,ORANGE,FORMATION,OH,7/3/2007 22:30 +Littleton,,LIGHT,NH,7/3/2007 22:30 +Fairview,,LIGHT,TN,7/3/2007 23:00 +Irvine,,CIRCLE,CA,7/3/2007 23:10 +McDonough,,LIGHT,GA,7/3/2007 23:12 +Rehoboth,,LIGHT,MA,7/4/2007 0:00 +Salem,,LIGHT,OR,7/4/2007 0:15 +Myrtle Beach,ORANGE,CIRCLE,SC,7/4/2007 1:00 +Lake Arrowhead,GREEN,FIREBALL,CA,7/4/2007 2:00 +Huntsville,,DISK,AL,7/4/2007 3:00 +Eugene,,DISK,OR,7/4/2007 9:00 +Markham,,LIGHT,IL,7/4/2007 11:00 +Murfreesboro,,,TN,7/4/2007 11:59 +Racine,,CIRCLE,WI,7/4/2007 12:00 +Prue,,CIRCLE,OK,7/4/2007 12:43 +Kalispell,,,MT,7/4/2007 18:30 +Los Angeles,,CIRCLE,CA,7/4/2007 18:30 +Fort Wayne,,OVAL,IN,7/4/2007 20:00 +Ponca city,RED,CIRCLE,OK,7/4/2007 20:00 +Wichita Falls,,LIGHT,TX,7/4/2007 20:00 +Clarklake,,FORMATION,MI,7/4/2007 20:20 +Alexandria,,FIREBALL,LA,7/4/2007 21:00 +Garland,,VARIOUS,TX,7/4/2007 21:00 +Spring Valley,RED,FIREBALL,CA,7/4/2007 21:00 +Throop,,SPHERE,PA,7/4/2007 21:00 +La Mesa,RED,,CA,7/4/2007 21:02 +Spring Valley,RED,OTHER,CA,7/4/2007 21:05 +Wichita Falls,,LIGHT,TX,7/4/2007 21:08 +Etters,ORANGE,TRIANGLE,PA,7/4/2007 21:30 +Clear Lake,,,IN,7/4/2007 22:00 +Danbury,,CIRCLE,CT,7/4/2007 22:00 +Bristol,ORANGE,OVAL,CT,7/4/2007 22:05 +Loveland,RED GREEN,OTHER,CO,7/4/2007 22:15 +Norwood,,CYLINDER,NC,7/4/2007 22:15 +Renton,,OVAL,WA,7/4/2007 22:15 +Riverside,ORANGE,FIREBALL,CA,7/4/2007 22:21 +Lansing,ORANGE,TEARDROP,MI,7/4/2007 22:30 +Indianapolis,,FIREBALL,IN,7/4/2007 23:00 +Toppenish,GREEN,RECTANGLE,WA,7/4/2007 23:00 +Vermillion,,LIGHT,SD,7/4/2007 23:00 +Hutchinson,,FIREBALL,KS,7/4/2007 23:30 +Fort Knox,,TRIANGLE,KY,7/4/2007 23:34 +Tacoma,,VARIOUS,WA,7/4/2007 23:40 +Fort Mill,YELLOW,LIGHT,SC,7/4/2007 23:45 +Garden City,,LIGHT,MO,7/5/2007 0:00 +Sandy,,TRIANGLE,UT,7/5/2007 1:47 +North Attleboro,,DISK,MA,7/5/2007 8:50 +Chicago,,DISK,IL,7/5/2007 11:00 +Mapleton,,OVAL,UT,7/5/2007 15:20 +Ralston,,LIGHT,NE,7/5/2007 20:00 +Greenwood,ORANGE,LIGHT,IN,7/5/2007 22:37 +Grand Rapids,,LIGHT,MI,7/6/2007 1:30 +Abilene,,FIREBALL,TX,7/6/2007 2:20 +Lee's Summit,,TRIANGLE,MO,7/6/2007 4:00 +Seward,YELLOW,CIRCLE,PA,7/6/2007 4:00 +Overland Park,,DISK,KS,7/6/2007 9:10 +Alabama,,OTHER,AL,7/6/2007 16:00 +Portland,,OTHER,OR,7/6/2007 16:40 +Belmont,,OTHER,MA,7/6/2007 19:00 +Lincoln,,LIGHT,RI,7/6/2007 21:20 +Bates,,LIGHT,MO,7/6/2007 21:30 +Trout Lake,,CIRCLE,WA,7/6/2007 21:40 +Atlantic Ocean,BLUE,CIRCLE,FL,7/6/2007 23:00 +Elk River,,LIGHT,MN,7/6/2007 23:00 +no data,,CIRCLE,MN,7/6/2007 23:00 +Irvine,,CIRCLE,CA,7/7/2007 0:00 +Ames,,TRIANGLE,IA,7/7/2007 0:45 +Gwinn,RED,,MI,7/7/2007 1:00 +Brighton,,SPHERE,MI,7/7/2007 1:30 +Prescott,,SPHERE,WI,7/7/2007 3:00 +San Bernadino,,,CA,7/7/2007 9:00 +Mamaroneck,,SPHERE,NY,7/7/2007 10:21 +Detroit,,CIGAR,MI,7/7/2007 10:45 +Lone Pine,,CIRCLE,CA,7/7/2007 11:20 +Bradenton,,SPHERE,FL,7/7/2007 21:30 +Lemont,,CIRCLE,IL,7/7/2007 21:30 +Wallingford,ORANGE,CIRCLE,CT,7/7/2007 21:30 +Lemont,,CIRCLE,IL,7/7/2007 21:37 +Homer Glen,,DISK,IL,7/7/2007 21:45 +Spokane,,CIRCLE,WA,7/7/2007 22:00 +Fort Wayne,,FIREBALL,IN,7/7/2007 22:30 +Fremont,,FIREBALL,IN,7/7/2007 22:30 +Libertyville,RED,OVAL,IL,7/7/2007 22:30 +Yardville,,,NJ,7/7/2007 22:35 +Seymour,,LIGHT,CT,7/7/2007 22:45 +Earlville,,CIRCLE,IL,7/7/2007 23:00 +Lawrenceburg,ORANGE,OVAL,KY,7/7/2007 23:30 +Arizona,,TEARDROP,AZ,7/8/2007 2:00 +Pine Valley,,SPHERE,CA,7/8/2007 2:15 +Santa Rosa,,LIGHT,CA,7/8/2007 8:35 +Jeffersonville,,DISK,IN,7/8/2007 14:30 +Mt. Rainier National Park,,DISK,WA,7/8/2007 18:52 +Damariscotta,,CIRCLE,ME,7/8/2007 20:00 +Peoria,,LIGHT,AZ,7/8/2007 21:00 +Portland,,FIREBALL,CT,7/8/2007 22:00 +Bremerton,,LIGHT,WA,7/8/2007 23:30 +Roswell,,OTHER,GA,7/9/2007 2:17 +Deming,,OVAL,NM,7/9/2007 5:05 +New Mexico,,OVAL,NM,7/9/2007 5:05 +State College,,TRIANGLE,PA,7/9/2007 10:20 +Sarasota,,CIGAR,FL,7/9/2007 11:15 +Seattle,,,WA,7/9/2007 12:30 +Fullerton,,VARIOUS,CA,7/9/2007 17:00 +Seymour,,CIRCLE,IN,7/9/2007 21:00 +Marble Falls,,LIGHT,AR,7/9/2007 21:30 +Columbia,,VARIOUS,LA,7/9/2007 23:00 +St. Petersburg,,CIGAR,FL,7/9/2007 23:00 +Oak Ridge,,RECTANGLE,NC,7/10/2007 0:00 +Thonotosassa,,OTHER,FL,7/10/2007 15:30 +Madison,,LIGHT,WI,7/10/2007 16:00 +Sand Point,,VARIOUS,ID,7/10/2007 21:00 +Clearwater,,DISK,FL,7/10/2007 21:45 +Las Vegas,,DISK,NV,7/10/2007 22:00 +Powderhorn,,DISK,CO,7/10/2007 22:00 +Redington Beach,,CIRCLE,FL,7/10/2007 22:30 +Kirkland,,LIGHT,WA,7/10/2007 23:27 +Cambria,,LIGHT,CA,7/10/2007 23:30 +Salisbury,,CIRCLE,NH,7/11/2007 2:00 +Seattle,,LIGHT,WA,7/11/2007 2:30 +Grand Rapids,,OTHER,MI,7/11/2007 5:00 +Kansas City,,LIGHT,MO,7/11/2007 8:45 +Oconomowoc,,TEARDROP,WI,7/11/2007 10:00 +Maple Shade,,TRIANGLE,NJ,7/11/2007 21:00 +St. Louis Park,,FORMATION,MN,7/11/2007 21:30 +Ramona,RED,,CA,7/11/2007 22:00 +Venice,,SPHERE,FL,7/11/2007 22:00 +Lemont,ORANGE,SPHERE,IL,7/11/2007 22:30 +Yakima,,,WA,7/11/2007 23:00 +Lincoln,,,MT,7/11/2007 23:30 +Indianapolis,,LIGHT,IN,7/12/2007 1:00 +Las Vegas,ORANGE YELLOW GREEN BLUE,LIGHT,NV,7/12/2007 1:00 +New York City,,LIGHT,NY,7/12/2007 1:45 +Herrin,,CIRCLE,IL,7/12/2007 13:00 +Decatur,,DISK,IL,7/12/2007 14:00 +Carlton,,CYLINDER,OR,7/12/2007 16:00 +Chico,,CIRCLE,CA,7/12/2007 21:00 +St. Charles,,FIREBALL,IL,7/12/2007 21:00 +Hesperia,,LIGHT,CA,7/12/2007 21:32 +Larksville,,LIGHT,PA,7/12/2007 21:50 +Gresham,,LIGHT,OR,7/12/2007 22:00 +Lombard,,SPHERE,IL,7/12/2007 23:20 +Lincoln City,,TRIANGLE,OR,7/13/2007 1:13 +Milwaukie,,OTHER,OR,7/13/2007 10:15 +East Northport,,CIRCLE,NY,7/13/2007 11:30 +Olympia,,,WA,7/13/2007 14:05 +West Milwaukee,BLUE,SPHERE,WI,7/13/2007 15:30 +St. Louis,,TRIANGLE,MO,7/13/2007 18:33 +Destin,ORANGE,LIGHT,FL,7/13/2007 19:00 +Salt Lake City,,OVAL,UT,7/13/2007 20:00 +Wilkes-Barre,,LIGHT,PA,7/13/2007 20:00 +St. Louis,,TRIANGLE,MO,7/13/2007 21:33 +Columbia,,LIGHT,MO,7/13/2007 21:40 +Chesterfield,ORANGE,LIGHT,MI,7/13/2007 22:00 +Kingman,,TRIANGLE,AZ,7/13/2007 22:30 +Warr Acres,,DIAMOND,OK,7/13/2007 23:45 +Warren,ORANGE,LIGHT,MI,7/14/2007 0:00 +Greenville,,LIGHT,ME,7/14/2007 1:00 +Madison,ORANGE,FORMATION,WI,7/14/2007 1:19 +St. Petersburg,,LIGHT,FL,7/14/2007 2:18 +Edina,,LIGHT,MN,7/14/2007 3:30 +Oak Lawn,,LIGHT,IL,7/14/2007 11:00 +Dolton,,TRIANGLE,IL,7/14/2007 13:00 +Mahwah,,SPHERE,NJ,7/14/2007 17:20 +Los Angeles,,SPHERE,CA,7/14/2007 17:30 +White Bird,,OVAL,ID,7/14/2007 20:45 +Clarion,RED,LIGHT,PA,7/14/2007 22:00 +Camano Island,RED BLUE,,WA,7/14/2007 22:05 +Ocala,,OVAL,FL,7/14/2007 22:25 +Springfield,,CIRCLE,TN,7/14/2007 23:00 +Irvine,BLUE,CIRCLE,CA,7/14/2007 23:15 +Durham,,FIREBALL,CT,7/15/2007 1:00 +Hollywood,,TRIANGLE,FL,7/15/2007 4:00 +San Bernardino,,LIGHT,CA,7/15/2007 4:30 +Seattle,,VARIOUS,WA,7/15/2007 10:00 +Motley,,,MN,7/15/2007 11:30 +The Villages,,LIGHT,FL,7/15/2007 11:45 +Ottawa,,SPHERE,KS,7/15/2007 12:20 +Longview,,EGG,WA,7/15/2007 13:30 +Frankort,,CIGAR,MI,7/15/2007 14:00 +Renton,,RECTANGLE,WA,7/15/2007 14:00 +Middleboro,RED,TRIANGLE,MA,7/15/2007 14:30 +Ann Arbor,,,MI,7/15/2007 16:00 +San Antonio,BLUE,TRIANGLE,TX,7/15/2007 16:30 +Lac Du Flambeau,,LIGHT,WI,7/15/2007 17:00 +Melrose,,OVAL,MA,7/15/2007 17:33 +Phoenix,,OTHER,AZ,7/15/2007 18:15 +Joliet,,SPHERE,IL,7/15/2007 20:00 +Yuba City,RED,TRIANGLE,CA,7/15/2007 21:00 +Wenatchee,,SPHERE,WA,7/15/2007 22:00 +New Britain,GREEN,LIGHT,CT,7/15/2007 22:30 +Anderson,,LIGHT,IN,7/15/2007 23:00 +Eaton Rapids,,SPHERE,MI,7/15/2007 23:00 +Middletown,,,DE,7/15/2007 23:15 +Cleveland,,VARIOUS,OH,7/15/2007 23:30 +Milford,BLUE,CIRCLE,NE,7/15/2007 23:30 +Port Orchard,,,WA,7/16/2007 0:52 +Atlanta,RED,LIGHT,GA,7/16/2007 1:54 +Tallahassee,,LIGHT,FL,7/16/2007 4:12 +Daytona Beach,,CIRCLE,FL,7/16/2007 14:00 +Schaumburg area,,RECTANGLE,IL,7/16/2007 17:00 +North Reading,,VARIOUS,MA,7/16/2007 22:00 +Seattle,,TEARDROP,WA,7/16/2007 22:00 +Spokane,,,WA,7/16/2007 22:30 +Wilmington,,TRIANGLE,NC,7/16/2007 22:40 +Angeir,RED,CIRCLE,NC,7/16/2007 23:30 +Tacoma,,LIGHT,WA,7/16/2007 23:45 +Macon,,FLASH,GA,7/17/2007 0:13 +Fort Irwin,ORANGE,TRIANGLE,CA,7/17/2007 1:45 +China Lake,,DISK,CA,7/17/2007 12:00 +Deerfield,,TEARDROP,IL,7/17/2007 12:45 +Gloucester,,OTHER,MA,7/17/2007 18:54 +Laguna Hills,,RECTANGLE,CA,7/17/2007 19:00 +West Jordan,,SPHERE,UT,7/17/2007 19:30 +Forest Hills,,DISK,PA,7/17/2007 20:15 +El Paso,,OTHER,TX,7/18/2007 12:45 +Gloucester,,OTHER,MA,7/18/2007 17:30 +Phoenix,,,AZ,7/18/2007 21:00 +Kirkland,,LIGHT,WA,7/18/2007 22:48 +Columbia,,TRIANGLE,MO,7/18/2007 23:00 +Coalinga,,TRIANGLE,CA,7/19/2007 0:30 +Orlando,,FIREBALL,FL,7/19/2007 1:40 +Tomball,,OTHER,TX,7/19/2007 5:10 +Detroit Lakes,,TRIANGLE,MN,7/19/2007 13:00 +Titusville,,CIRCLE,FL,7/19/2007 13:30 +Wyandotte,,FIREBALL,MI,7/19/2007 18:12 +McKinney,,OVAL,TX,7/19/2007 23:19 +Miami,,DISK,FL,7/20/2007 0:00 +Chesapeake,,VARIOUS,VA,7/20/2007 0:51 +Avalon,,CIRCLE,NJ,7/20/2007 1:00 +Otisville,,TRIANGLE,MI,7/20/2007 1:00 +Portland,,TEARDROP,TX,7/20/2007 1:00 +Antwep,,,OH,7/20/2007 2:24 +Follansbee,RED,TRIANGLE,WV,7/20/2007 4:00 +Rural Amador County,,TRIANGLE,CA,7/20/2007 4:09 +Uniontown,,LIGHT,PA,7/20/2007 8:30 +Lyme,,SPHERE,CT,7/20/2007 14:00 +oceanside,,FIREBALL,CA,7/20/2007 18:00 +New Philly,,SPHERE,OH,7/20/2007 18:30 +New York City,BLUE,DISK,NY,7/20/2007 19:00 +Peekskill,,LIGHT,NY,7/20/2007 20:30 +Ft. Lauderdale,,TRIANGLE,FL,7/20/2007 21:15 +Carson City,,CIGAR,NV,7/20/2007 21:20 +Brookville,,LIGHT,IN,7/20/2007 21:43 +Lockport,YELLOW,OVAL,IL,7/20/2007 22:00 +Edmore,,FIREBALL,MI,7/20/2007 22:45 +Los Osos,,DIAMOND,CA,7/20/2007 23:00 +Nashville,,SPHERE,TN,7/21/2007 0:30 +Sandusky,,FORMATION,OH,7/21/2007 2:34 +Sterling Heights,,LIGHT,MI,7/21/2007 3:45 +Peru,,OTHER,IN,7/21/2007 4:25 +Rockford,,FIREBALL,IL,7/21/2007 4:30 +Gresham,,SPHERE,OR,7/21/2007 5:40 +Mishawaka,,FIREBALL,IN,7/21/2007 6:15 +Cheektowaga,,LIGHT,NY,7/21/2007 8:30 +Mentor,,,OH,7/21/2007 10:30 +Cedar Falls,RED GREEN,LIGHT,IA,7/21/2007 12:30 +Sammamish,,OTHER,WA,7/21/2007 14:30 +Canton,,SPHERE,MI,7/21/2007 15:30 +Kenmore,,LIGHT,WA,7/21/2007 17:00 +Germantown,,CIRCLE,MD,7/21/2007 18:30 +Melville,,RECTANGLE,NY,7/21/2007 20:30 +Madison,,DISK,WI,7/21/2007 21:00 +Panama City,ORANGE,SPHERE,FL,7/21/2007 21:00 +Chicago,,LIGHT,IL,7/21/2007 21:45 +Buffalo Grove,RED,,IL,7/21/2007 22:00 +Newington,,CIRCLE,CT,7/21/2007 22:00 +Middletown,,LIGHT,OH,7/21/2007 22:10 +Costa Mesa,,CIRCLE,CA,7/21/2007 22:20 +Cornelius,ORANGE,OVAL,NC,7/21/2007 22:30 +Pemberton,BLUE,,NJ,7/21/2007 22:30 +Cleveland,,CIRCLE,OH,7/22/2007 0:00 +Austin,,CIRCLE,TX,7/22/2007 0:15 +Glen Arbor,,LIGHT,MI,7/22/2007 1:00 +Blossvale,RED GREEN BLUE,CIRCLE,NY,7/22/2007 2:00 +Sacramento,,TRIANGLE,CA,7/22/2007 2:08 +Birmingham,,CHEVRON,AL,7/22/2007 6:30 +Tempe,,CYLINDER,AZ,7/22/2007 14:00 +San Jose,,OTHER,CA,7/22/2007 16:00 +Crystal Beach,,DISK,FL,7/22/2007 18:30 +Great Falls,,TEARDROP,MT,7/22/2007 20:00 +Melville,,RECTANGLE,NY,7/22/2007 20:30 +Wheeling,,CIRCLE,IL,7/22/2007 22:00 +Yakima,,FLASH,WA,7/22/2007 22:05 +Wheat Ridge,,TRIANGLE,CO,7/22/2007 22:12 +Danville,,TRIANGLE,VA,7/23/2007 1:30 +Brighton,,LIGHT,MI,7/23/2007 3:30 +Cascade,,LIGHT,IA,7/23/2007 4:15 +Big Bend Natinal Park,YELLOW,DIAMOND,TX,7/23/2007 10:00 +Pomona,,LIGHT,CA,7/23/2007 11:45 +Chicago,,CYLINDER,IL,7/23/2007 16:30 +Flower Mound,,FIREBALL,TX,7/23/2007 22:50 +East Aurora,,RECTANGLE,NY,7/23/2007 23:00 +Demotte,,FIREBALL,IN,7/24/2007 9:45 +Fresno,,OVAL,CA,7/24/2007 13:30 +Fort Collins-St. Louis,,TRIANGLE,MO,7/24/2007 21:33 +Jonesborough,,TRIANGLE,TN,7/24/2007 21:50 +Escalante,,,UT,7/24/2007 22:00 +Hopkinton,,OVAL,MA,7/24/2007 22:15 +Atascadero,GREEN,CYLINDER,CA,7/24/2007 22:34 +Ames,,DIAMOND,IA,7/24/2007 23:00 +Huntington Beach,RED,SPHERE,CA,7/25/2007 1:00 +Trumbull,,CIGAR,CT,7/25/2007 20:30 +Gretna,RED,LIGHT,LA,7/25/2007 20:50 +Fort Morgan,,LIGHT,AL,7/25/2007 21:00 +Simi Valley,,TRIANGLE,CA,7/25/2007 21:00 +Birmingham,,,AL,7/25/2007 21:27 +Fresno,,SPHERE,CA,7/25/2007 22:00 +Waukon,,VARIOUS,IA,7/25/2007 22:30 +Springfield,,LIGHT,OR,7/25/2007 23:00 +Seattle,,RECTANGLE,WA,7/26/2007 18:00 +Rock Hill,,,SC,7/26/2007 21:00 +Palmdale,,LIGHT,CA,7/26/2007 22:00 +San Antonio,,,TX,7/26/2007 22:00 +Ione,GREEN,CIRCLE,WA,7/26/2007 22:30 +West Unity,,TRIANGLE,OH,7/26/2007 22:30 +Allen,,,TX,7/26/2007 22:45 +Colorado Springs,RED,LIGHT,CO,7/27/2007 0:00 +Millbrook,,OVAL,AL,7/27/2007 6:00 +San Antonio,,TRIANGLE,TX,7/27/2007 12:00 +Oakland,,OVAL,CA,7/27/2007 12:30 +Gatlinburg,,EGG,TN,7/27/2007 14:00 +Myrtle Beach,RED GREEN BLUE,FIREBALL,SC,7/27/2007 21:00 +Myrtle Beach,BLUE,OVAL,SC,7/27/2007 21:00 +Sonora,GREEN,LIGHT,CA,7/27/2007 21:11 +Truckee,,,CA,7/27/2007 21:30 +Gold Beach,,LIGHT,OR,7/27/2007 22:00 +San Diego,BLUE,DISK,CA,7/27/2007 22:00 +North Myrtle Beach,,FIREBALL,SC,7/27/2007 22:30 +Rowland,GREEN,TEARDROP,NC,7/27/2007 22:40 +Latta,,OVAL,SC,7/27/2007 22:42 +Florida,BLUE,,FL,7/27/2007 23:30 +Holbrook,RED,TRIANGLE,NY,7/27/2007 23:30 +Oklahoma City,,RECTANGLE,OK,7/28/2007 0:00 +Sacramento,,LIGHT,CA,7/28/2007 1:30 +Sacramento,,,CA,7/28/2007 2:30 +Sanibel Island,,LIGHT,FL,7/28/2007 3:40 +Berkeley,BLUE,LIGHT,CA,7/28/2007 11:00 +Corona,,CYLINDER,CA,7/28/2007 13:00 +Hooper,,DISK,CO,7/28/2007 14:30 +Hooper,,DISK,CO,7/28/2007 14:30 +Hooper,,DISK,CO,7/28/2007 14:30 +Hooper,,DISK,CO,7/28/2007 14:30 +Hooper,,OTHER,CO,7/28/2007 14:30 +Streamwood,RED,OVAL,IL,7/28/2007 20:24 +Stuart,,OVAL,VA,7/28/2007 22:00 +Moses Lake,,LIGHT,WA,7/28/2007 22:20 +Austin,,CIRCLE,TX,7/28/2007 23:15 +Massillon,,OTHER,OH,7/29/2007 1:00 +Mishawaka,,FIREBALL,IN,7/29/2007 6:20 +Millmont,,DISK,PA,7/29/2007 16:45 +San Diego,,FLASH,CA,7/29/2007 21:00 +Chicago,,CIRCLE,IL,7/29/2007 22:30 +Coldwater,,CIRCLE,MI,7/29/2007 22:30 +Cerritos,,OTHER,CA,7/29/2007 23:40 +SunnyIsles,,DISK,FL,7/30/2007 1:30 +Buffalo,,CIRCLE,NY,7/30/2007 5:15 +Visalia,,FORMATION,CA,7/30/2007 10:00 +Mackinaw City,,CIGAR,MI,7/30/2007 13:00 +Guerneville,,OTHER,CA,7/30/2007 14:00 +Post Falls,,DISK,ID,7/30/2007 14:00 +Wittmann,,,AZ,7/30/2007 16:43 +El Paso,,,TX,7/30/2007 18:59 +Itasca,,LIGHT,IL,7/30/2007 22:30 +Rathdrum,,OVAL,ID,7/30/2007 23:00 +Jamaica,,DISK,NY,7/31/2007 2:45 +Lake Oswego,,VARIOUS,OR,7/31/2007 15:00 +Phoenix,,DISK,AZ,7/31/2007 19:00 +Des Moines,,LIGHT,IA,7/31/2007 22:00 +Fostoria,,LIGHT,MI,7/31/2007 22:20 +Romulus,GREEN,OVAL,MI,7/31/2007 23:00 +Southfield,,TEARDROP,MI,8/1/2007 10:20 +Spokane,,OTHER,WA,8/1/2007 14:00 +Falcon,,CHEVRON,CO,8/1/2007 20:45 +Plainfield,,,IL,8/1/2007 21:15 +Fostoria,,LIGHT,MI,8/1/2007 22:15 +Cowiche,,DISK,WA,8/1/2007 23:00 +Harrisburg,YELLOW,CIRCLE,IL,8/1/2007 23:00 +Umatilla,,,OR,8/1/2007 23:00 +Seattle,,CIRCLE,WA,8/2/2007 17:00 +Cottonwood,,,AZ,8/2/2007 20:00 +Cottonwood,,CIRCLE,AZ,8/2/2007 20:00 +New Bern,,OTHER,NC,8/2/2007 21:00 +Pecks Lake,ORANGE,,NY,8/2/2007 21:15 +Garner,,LIGHT,NC,8/2/2007 21:30 +Redmond,,FIREBALL,WA,8/2/2007 21:50 +Cottonwood,,,AZ,8/2/2007 22:00 +Napa,,LIGHT,CA,8/2/2007 22:00 +Fairfax County,,CIRCLE,VA,8/2/2007 23:00 +Bennington,,OTHER,VT,8/3/2007 0:00 +La Porte,,LIGHT,TX,8/3/2007 5:00 +Frisco,GREEN,CIGAR,TX,8/3/2007 8:20 +Clovis,,LIGHT,NM,8/3/2007 8:50 +Kalispell,,TEARDROP,MT,8/3/2007 16:00 +Riverside,,LIGHT,CA,8/3/2007 20:00 +Princeton,RED,TRIANGLE,IL,8/3/2007 21:00 +Blandon,,FORMATION,PA,8/3/2007 21:15 +Buffalo,,CIRCLE,NY,8/3/2007 21:30 +Medina,,LIGHT,MN,8/3/2007 22:46 +Arizona City,ORANGE,TRIANGLE,AZ,8/3/2007 23:30 +Bethlehem,,FIREBALL,CT,8/3/2007 23:30 +Canyon Lake,,LIGHT,TX,8/3/2007 23:30 +Eugene,,,OR,8/4/2007 0:00 +Houston,,,TX,8/4/2007 0:30 +Houston,,,TX,8/4/2007 0:30 +Warren,,LIGHT,OH,8/4/2007 1:30 +Wilmington,,FIREBALL,NC,8/4/2007 3:30 +Kissimmee,,LIGHT,FL,8/4/2007 6:20 +Baton Rouge,,FIREBALL,LA,8/4/2007 20:30 +Flint,,TRIANGLE,MI,8/4/2007 20:45 +Canaan,,SPHERE,ME,8/4/2007 21:00 +Dayville,,OVAL,CT,8/4/2007 21:30 +Brockport,,LIGHT,NY,8/4/2007 21:39 +Rochester,,CIRCLE,NY,8/4/2007 22:00 +Las Vegas,,OTHER,NV,8/5/2007 4:00 +Los Angeles,ORANGE,FIREBALL,CA,8/5/2007 13:22 +East Hartford,,FIREBALL,CT,8/5/2007 16:30 +Binghamton,,SPHERE,NY,8/5/2007 17:00 +Denver,,CIRCLE,CO,8/5/2007 17:30 +Success,,,NH,8/5/2007 21:30 +Oak Island,ORANGE GREEN,OTHER,NC,8/5/2007 22:00 +Ozark,,LIGHT,MO,8/5/2007 22:00 +Sonora,ORANGE,LIGHT,CA,8/6/2007 20:30 +Allen,,CIGAR,TX,8/6/2007 22:15 +Texarkana,RED BLUE,OTHER,AR,8/6/2007 22:20 +Brookline Station,RED,FLASH,MO,8/6/2007 22:45 +Texarkana,,,AR,8/6/2007 22:45 +Brandt,,OTHER,OH,8/7/2007 7:41 +Lake Powell,,OVAL,UT,8/7/2007 10:00 +Rohnert Park,BLUE,FORMATION,CA,8/7/2007 18:44 +Las Vegas,,OVAL,NV,8/7/2007 21:39 +Erie,RED BLUE,FIREBALL,PA,8/7/2007 22:00 +San Diego,,LIGHT,CA,8/7/2007 22:10 +Arivaca,,LIGHT,AZ,8/7/2007 23:00 +Edmond,,DISK,OK,8/7/2007 23:03 +Martinsburg,,CIGAR,WV,8/7/2007 23:45 +Tooele,,FIREBALL,UT,8/7/2007 23:48 +Salt Lake City,RED BLUE,LIGHT,UT,8/8/2007 2:20 +Tampa,,TRIANGLE,FL,8/8/2007 5:45 +Hilton Head Island,,CYLINDER,SC,8/8/2007 16:00 +Moab,,OTHER,UT,8/8/2007 17:05 +Fort Davis,,FIREBALL,TX,8/8/2007 20:00 +St. Louis,,LIGHT,MO,8/8/2007 22:00 +Montgomery,GREEN,CIRCLE,AL,8/8/2007 23:00 +Prescott National Forest,,RECTANGLE,AZ,8/8/2007 23:00 +Naperville,ORANGE,SPHERE,IL,8/9/2007 2:00 +Green River,GREEN,DIAMOND,UT,8/9/2007 11:00 +Monroeville,,CYLINDER,IN,8/9/2007 17:28 +McAllen,,SPHERE,TX,8/9/2007 19:50 +Georgetown Township,,SPHERE,WI,8/9/2007 20:30 +Fort Oglethorpe,,CIRCLE,GA,8/9/2007 21:00 +Johnson City,,LIGHT,TN,8/9/2007 21:30 +Oakhurst,,TRIANGLE,CA,8/9/2007 21:45 +Tiskilwa,,TRIANGLE,IL,8/9/2007 23:00 +Tucson,ORANGE,CIRCLE,AZ,8/9/2007 23:30 +Indianapolis,,TRIANGLE,IN,8/10/2007 0:20 +Plattsburg,,CIRCLE,NY,8/10/2007 3:00 +Lithiona,,FLASH,GA,8/10/2007 3:05 +Nauvoo,,FORMATION,IL,8/10/2007 4:00 +Boulder,,VARIOUS,CO,8/10/2007 5:25 +Wichita Falls,,CIGAR,TX,8/10/2007 5:30 +Hancock,,CIGAR,ME,8/10/2007 12:00 +Roseburg,,OTHER,OR,8/10/2007 14:30 +Lancaster,,LIGHT,PA,8/10/2007 19:30 +Greenwich,,TRIANGLE,NY,8/10/2007 21:00 +Lewiston,,FORMATION,ME,8/10/2007 22:00 +Lewiston,,SPHERE,ME,8/10/2007 22:05 +Richmond,ORANGE,OVAL,MI,8/10/2007 22:15 +Walkerton,ORANGE,,IN,8/10/2007 22:35 +Edinburg,,LIGHT,TX,8/11/2007 0:00 +Oakdale,,FIREBALL,CA,8/11/2007 0:05 +Sonora,,LIGHT,CA,8/11/2007 0:09 +Pittsburg,,FIREBALL,CA,8/11/2007 0:15 +Grenada,ORANGE GREEN,FIREBALL,CA,8/11/2007 0:45 +Los Angeles,,TRIANGLE,CA,8/11/2007 1:30 +Grand Rapids,,LIGHT,MI,8/11/2007 4:30 +Grand Rapids,,OTHER,MI,8/11/2007 5:00 +Vancouver,,,WA,8/11/2007 10:00 +Los Angeles,,OTHER,CA,8/11/2007 12:12 +Tacoma,,OTHER,WA,8/11/2007 13:24 +Clarklake,BLUE,FLASH,MI,8/11/2007 15:05 +Humble,,OVAL,TX,8/11/2007 20:00 +Baton Rouge,,FIREBALL,LA,8/11/2007 20:30 +Tiskilwa,,LIGHT,IL,8/11/2007 21:00 +Gretna,,TRIANGLE,VA,8/11/2007 22:00 +Harrison Township,BLUE,LIGHT,MI,8/11/2007 22:00 +Draper,,LIGHT,UT,8/11/2007 22:30 +Sterling,,LIGHT,IL,8/11/2007 22:45 +Coldwater,YELLOW,LIGHT,MI,8/11/2007 22:56 +Miami,RED,TRIANGLE,FL,8/11/2007 23:00 +Bethel,RED GREEN,LIGHT,CT,8/11/2007 23:45 +Van Wert,YELLOW,SPHERE,OH,8/12/2007 0:00 +Meredith,,,NH,8/12/2007 0:30 +Clermont,,LIGHT,FL,8/12/2007 0:50 +Alameda,RED,LIGHT,CA,8/12/2007 1:00 +Hesperia,,LIGHT,CA,8/12/2007 1:00 +Lynn,,FIREBALL,MA,8/12/2007 1:00 +Rolla,,,MO,8/12/2007 1:19 +Plymouth,,FORMATION,IN,8/12/2007 1:45 +Azusa,,FIREBALL,CA,8/12/2007 3:00 +North Attleboro,,OTHER,MA,8/12/2007 3:15 +St. Augustine,,TRIANGLE,FL,8/12/2007 4:40 +Baconton,,CIRCLE,GA,8/12/2007 5:00 +Roseville,,LIGHT,MN,8/12/2007 5:00 +Bullhead City,,,AZ,8/12/2007 10:30 +Richmond,GREEN,LIGHT,VA,8/12/2007 11:21 +Eagan,,TRIANGLE,MN,8/12/2007 12:30 +Sacramento,,SPHERE,CA,8/12/2007 13:00 +New York City,,OVAL,NY,8/12/2007 18:30 +Issaquah,,EGG,WA,8/12/2007 20:00 +East Sandwich,,LIGHT,MA,8/12/2007 20:30 +Long Beach,RED,FORMATION,CA,8/12/2007 21:15 +Fayetteville,,CIRCLE,AR,8/12/2007 21:45 +Isle of Palms,,CIRCLE,SC,8/12/2007 21:45 +Saginaw,,TRIANGLE,MI,8/12/2007 22:20 +Keshena,,CIRCLE,WI,8/12/2007 22:30 +Omak,,LIGHT,WA,8/12/2007 22:30 +Nothing,,LIGHT,AZ,8/12/2007 23:00 +Slades Corners,BLUE,FIREBALL,WI,8/12/2007 23:00 +San Rafael,,TRIANGLE,CA,8/12/2007 23:10 +Rangeley,GREEN,,MA,8/12/2007 23:40 +Brighton,,LIGHT,CO,8/12/2007 23:45 +Orlando,RED,TRIANGLE,FL,8/12/2007 23:45 +La Grange,,TRIANGLE,TX,8/13/2007 0:00 +Dallas,,,TX,8/13/2007 0:25 +Carmel,,DISK,IN,8/13/2007 1:00 +Hazelton,,SPHERE,ND,8/13/2007 1:00 +Lexington,,DISK,MO,8/13/2007 4:30 +McGregor,,OTHER,TX,8/13/2007 5:15 +New Castle,,SPHERE,CA,8/13/2007 12:20 +Mukilteo,,DISK,WA,8/13/2007 16:24 +Grand Island,YELLOW,DISK,NE,8/13/2007 19:30 +Gentry,ORANGE,TRIANGLE,AR,8/13/2007 22:20 +Bristol,,VARIOUS,PA,8/13/2007 23:00 +Nassau County,,,NY,8/13/2007 23:00 +Moses Lake,,CIRCLE,WA,8/13/2007 23:30 +Portland,ORANGE,TRIANGLE,OR,8/14/2007 0:45 +Oklahoma City,,TRIANGLE,OK,8/14/2007 1:00 +Charlotte,,DISK,NC,8/14/2007 4:00 +Alpharetta,,LIGHT,GA,8/14/2007 10:10 +Williamson County,,SPHERE,IL,8/14/2007 17:00 +Simpsonville,,SPHERE,KY,8/14/2007 19:00 +Littleton,,LIGHT,NH,8/14/2007 21:40 +Lewisburg,,OTHER,PA,8/14/2007 21:50 +Goldhead State Park,,DIAMOND,FL,8/14/2007 22:00 +Mankato,,DIAMOND,MN,8/14/2007 22:00 +Queensbury,,CIRCLE,NY,8/14/2007 23:00 +South Charleston,,TRIANGLE,OH,8/14/2007 23:30 +Flat Rock,RED,LIGHT,MI,8/15/2007 0:00 +Reno,,SPHERE,NV,8/15/2007 0:00 +Thorp,,SPHERE,WI,8/15/2007 0:00 +Bath,,,ME,8/15/2007 0:05 +Fairfax,,,VA,8/15/2007 0:44 +Arlington,,FLASH,VA,8/15/2007 1:30 +Jacksonville,RED,FIREBALL,FL,8/15/2007 2:00 +Springfield,,LIGHT,MO,8/15/2007 2:01 +Ft. Lupton,,OTHER,CO,8/15/2007 14:00 +Yankeetown,,,IN,8/15/2007 14:00 +Prescott Valley,,FIREBALL,AZ,8/15/2007 16:00 +Browns Mills,,CIRCLE,NJ,8/15/2007 18:00 +Great Lakes,,,IL,8/15/2007 19:00 +Chicago,,LIGHT,IL,8/15/2007 19:45 +Bremerton,,DISK,WA,8/15/2007 21:00 +Cary,RED,LIGHT,NC,8/15/2007 21:00 +Conklin,,FIREBALL,MI,8/15/2007 21:00 +Irvine,YELLOW,SPHERE,CA,8/15/2007 21:00 +Alvin,,FIREBALL,TX,8/15/2007 22:00 +Santa Rosa,,CHEVRON,CA,8/15/2007 22:05 +Santa Rosa,RED,CHEVRON,CA,8/15/2007 22:05 +Duluth,RED,LIGHT,MN,8/15/2007 22:20 +Bend,,LIGHT,TX,8/15/2007 23:00 +San Jose,RED ORANGE,TRIANGLE,CA,8/15/2007 23:20 +Whitefield,,DISK,NH,8/16/2007 0:10 +Pensacola Beach,ORANGE,SPHERE,FL,8/16/2007 1:00 +Mars Hill,,CYLINDER,ME,8/16/2007 6:30 +Darien,GREEN,EGG,CT,8/16/2007 10:40 +York,,TRIANGLE,PA,8/16/2007 19:00 +Lindenhurst,,LIGHT,NY,8/16/2007 19:44 +Woodbridge,YELLOW BLUE,DISK,NJ,8/16/2007 19:45 +Danielson,,LIGHT,CT,8/16/2007 22:00 +Wantagh,,OTHER,NY,8/16/2007 22:13 +Plano,,,TX,8/16/2007 22:30 +New York City,BLUE,FIREBALL,NY,8/16/2007 22:50 +Redding,,LIGHT,CA,8/16/2007 23:08 +Tulsa,,LIGHT,OK,8/17/2007 5:15 +Sweetwater,,LIGHT,NJ,8/17/2007 20:00 +Zapata Falls,,OTHER,CO,8/17/2007 20:39 +Ostrander,,SPHERE,OH,8/17/2007 20:45 +Kannapolis,,DIAMOND,NC,8/17/2007 21:00 +South Lake Tahoe,,FORMATION,CA,8/17/2007 21:16 +St. Paul,,DISK,MN,8/17/2007 22:00 +Durand,ORANGE,TRIANGLE,MI,8/17/2007 23:13 +Rose City,ORANGE,LIGHT,MI,8/17/2007 23:30 +Guilford,,TEARDROP,CT,8/18/2007 0:00 +Commerce City,,DISK,CO,8/18/2007 0:45 +no data,,OVAL,TX,8/18/2007 1:00 +Minneapolis,,OTHER,MN,8/18/2007 2:00 +Rancho Cucamonga,ORANGE,OVAL,CA,8/18/2007 3:00 +Rancho Cucamonga,ORANGE,OVAL,CA,8/18/2007 3:00 +Mastic Beach,,LIGHT,NY,8/18/2007 4:40 +Waldorf,,CIGAR,MD,8/18/2007 7:15 +Sacramento,,CIGAR,CA,8/18/2007 12:15 +Glendale,,CIRCLE,UT,8/18/2007 17:00 +Beaverton,,OTHER,OR,8/18/2007 19:40 +Westport,,DISK,NY,8/18/2007 21:45 +Canoga Park,ORANGE,CIGAR,CA,8/18/2007 21:55 +Rock Hill,,,SC,8/18/2007 22:00 +Ainsworth,,TRIANGLE,NE,8/18/2007 23:00 +Lowell,,CIRCLE,MI,8/18/2007 23:00 +Stratford,,FORMATION,CT,8/18/2007 23:00 +Ft. Lauderdale,,DISK,FL,8/19/2007 3:30 +Eustis,,LIGHT,NE,8/19/2007 10:15 +Idaho Falls,,,ID,8/19/2007 10:30 +Big Pine Key,,FORMATION,FL,8/19/2007 11:00 +Foster City,,,CA,8/19/2007 15:32 +Warner,,CROSS,NH,8/19/2007 19:00 +Vacaville,,VARIOUS,CA,8/19/2007 19:45 +Gansevoort,,,NY,8/19/2007 20:05 +Birmingham,,DISK,AL,8/19/2007 20:30 +Spanish Springs,,LIGHT,NV,8/19/2007 21:00 +Chico,,LIGHT,CA,8/19/2007 21:10 +Dexter,,CIRCLE,ME,8/19/2007 21:17 +Williamstown,,LIGHT,MA,8/19/2007 21:20 +Hays,,LIGHT,KS,8/19/2007 21:30 +Cranston,,LIGHT,RI,8/19/2007 22:00 +Sacramento,,FORMATION,CA,8/19/2007 22:00 +Payson,,DISK,AZ,8/19/2007 23:00 +Little Compton,,TRIANGLE,RI,8/19/2007 23:30 +Walla Walla,ORANGE,,WA,8/20/2007 0:30 +Lagrange,,DIAMOND,NY,8/20/2007 1:15 +Heber Springs,,CIRCLE,AR,8/20/2007 2:00 +Middleton,,OTHER,WI,8/20/2007 4:30 +Fernley,,CIRCLE,NV,8/20/2007 5:00 +Henderson,ORANGE,LIGHT,AR,8/20/2007 5:30 +Russellville,,,AR,8/20/2007 10:00 +Ocala,GREEN,LIGHT,FL,8/20/2007 10:15 +Ardmore,,LIGHT,OK,8/20/2007 19:40 +Rock Hill,,LIGHT,SC,8/20/2007 19:40 +Myrtle Beach,,LIGHT,SC,8/20/2007 20:00 +West Valley,,SPHERE,UT,8/20/2007 20:00 +Arivaca,,LIGHT,AZ,8/20/2007 21:00 +Miramar Beach,,LIGHT,FL,8/20/2007 21:45 +Lafayette,,OVAL,OR,8/20/2007 21:50 +Fountain valley,RED,CIRCLE,CA,8/20/2007 22:00 +Edmond,,SPHERE,OK,8/20/2007 22:05 +Hartsville,,LIGHT,SC,8/20/2007 22:30 +Melbourne,,LIGHT,FL,8/20/2007 23:00 +Greece,RED GREEN,CYLINDER,NY,8/20/2007 23:43 +Greece,RED GREEN,CYLINDER,NY,8/20/2007 23:43 +I-84,,LIGHT,ID,8/21/2007 0:30 +Cherry Hill,,,NJ,8/21/2007 1:45 +Henderson,,DIAMOND,KY,8/21/2007 9:15 +Denver,,RECTANGLE,CO,8/21/2007 9:55 +Topsail Island,,DISK,NC,8/21/2007 12:00 +Denver,,CIGAR,CO,8/21/2007 15:40 +Des Moines,,TRIANGLE,IA,8/21/2007 19:45 +Charlotte,RED,DISK,NC,8/21/2007 20:45 +Longview,GREEN,LIGHT,WA,8/21/2007 21:40 +Porterville,RED,TRIANGLE,CA,8/21/2007 22:30 +Ewa Beach,,FIREBALL,HI,8/21/2007 23:30 +Truro,,OTHER,MA,8/22/2007 15:00 +Lebanon,,TEARDROP,TN,8/22/2007 20:08 +Las Vegas,,CIRCLE,NV,8/22/2007 20:30 +Marfa,,CIGAR,TX,8/22/2007 20:40 +Myrtle Beach,RED,OVAL,SC,8/22/2007 21:00 +North Wilkesboro,,DIAMOND,NC,8/22/2007 21:00 +Fort Hood,,CIRCLE,TX,8/22/2007 22:00 +Gwinn,,TRIANGLE,MI,8/23/2007 0:00 +San Ysidro,,LIGHT,CA,8/23/2007 0:30 +Foxboro,GREEN,LIGHT,MA,8/23/2007 3:35 +Erie,,LIGHT,PA,8/23/2007 4:00 +Stowe,ORANGE,CIGAR,VT,8/23/2007 15:00 +Shawnee,,TRIANGLE,KS,8/23/2007 20:30 +Fresno,,LIGHT,CA,8/23/2007 21:00 +Fort Hood,,LIGHT,TX,8/23/2007 21:11 +Overlea,,FLASH,MD,8/23/2007 21:20 +Cortez,,OTHER,CO,8/23/2007 22:00 +Fort Thomas,,DISK,KY,8/23/2007 22:00 +Pompano Beach,,SPHERE,FL,8/23/2007 22:00 +Little Valley,,RECTANGLE,NY,8/23/2007 23:00 +Gig Harbor,,TRIANGLE,WA,8/23/2007 23:17 +Freeport,,OVAL,TX,8/24/2007 3:15 +Sparks,,FORMATION,NV,8/24/2007 11:30 +Charlestown,,DISK,RI,8/24/2007 15:00 +Lake Stevens,,SPHERE,WA,8/24/2007 17:30 +Rural El Paso,,FORMATION,IL,8/24/2007 17:45 +Kansas City,,FIREBALL,KS,8/24/2007 20:28 +Chilton,,RECTANGLE,WI,8/24/2007 20:57 +Clayton,,CIRCLE,NC,8/24/2007 23:00 +Pacheco,,CIRCLE,CA,8/24/2007 23:00 +Davis,,,OK,8/25/2007 0:00 +Gilmer,,TRIANGLE,TX,8/25/2007 0:12 +Orlando,GREEN,LIGHT,FL,8/25/2007 1:00 +Waterloo,,LIGHT,IA,8/25/2007 5:45 +Baldwin,,FIREBALL,MI,8/25/2007 22:30 +Madison,,LIGHT,WI,8/25/2007 22:48 +West Bend,ORANGE,TRIANGLE,WI,8/25/2007 23:00 +Toppenish,GREEN,RECTANGLE,WA,8/25/2007 23:45 +Milwaukee,RED,DIAMOND,WI,8/26/2007 0:00 +Forestill,,LIGHT,MO,8/26/2007 4:30 +North Myrtle Beach,,FORMATION,SC,8/26/2007 11:00 +Chicago,,DIAMOND,IL,8/26/2007 14:30 +Louisville,,SPHERE,KY,8/26/2007 16:30 +Prineville,,SPHERE,OR,8/26/2007 18:00 +Honolulu,,LIGHT,HI,8/26/2007 19:15 +Cadillac,,CIRCLE,MI,8/26/2007 20:30 +Victor,,FLASH,NY,8/26/2007 20:40 +Holland,,,MI,8/26/2007 22:51 +Trumbull,,LIGHT,CT,8/27/2007 0:10 +Rachel,,DISK,NV,8/27/2007 0:15 +Chehalis,RED GREEN,OVAL,WA,8/27/2007 0:30 +San Luis Obispo,,CIRCLE,CA,8/27/2007 4:34 +Fayetteville,,FLASH,GA,8/27/2007 5:03 +York,,SPHERE,PA,8/27/2007 13:20 +Alvin,GREEN,FIREBALL,TX,8/27/2007 17:30 +Oak Grove,,VARIOUS,KY,8/27/2007 20:15 +Cadillac,,RECTANGLE,MI,8/27/2007 20:30 +Niota,ORANGE,LIGHT,IL,8/27/2007 20:50 +Aliso Viejo,,DISK,CA,8/27/2007 21:00 +Sedona,,CHEVRON,AZ,8/27/2007 21:22 +Davie,,,FL,8/27/2007 21:40 +Sandpoint,,LIGHT,ID,8/27/2007 22:00 +Roosevelt,,CIRCLE,MI,8/27/2007 23:00 +Arizona,,TRIANGLE,AZ,8/28/2007 1:00 +Keaau,,LIGHT,HI,8/28/2007 1:00 +Neola,,CIRCLE,UT,8/28/2007 1:00 +Bremerton,,CHEVRON,WA,8/28/2007 2:30 +Seattle,,TRIANGLE,WA,8/28/2007 2:35 +Ashley,,FORMATION,OH,8/28/2007 5:45 +Wallingford,,OTHER,KY,8/28/2007 5:45 +Orem,,VARIOUS,UT,8/28/2007 9:37 +Green Bay,GREEN,CIRCLE,WI,8/28/2007 11:30 +Stafford,,OTHER,VA,8/28/2007 11:30 +Yaphank,,EGG,NY,8/28/2007 13:25 +Dinuba,,TRIANGLE,CA,8/28/2007 17:00 +Moreno Valley,,TRIANGLE,CA,8/28/2007 20:00 +Lee's Summit,,RECTANGLE,MO,8/28/2007 20:20 +Claymont,,SPHERE,DE,8/28/2007 20:30 +Los Angeles,,CIGAR,CA,8/28/2007 20:30 +Lansing,RED,,MI,8/28/2007 21:00 +Marsing,,LIGHT,ID,8/28/2007 21:30 +Wappingers Falls,,OVAL,NY,8/28/2007 22:00 +Glassboro,,OTHER,NJ,8/28/2007 23:00 +Stafford,,OTHER,VA,8/29/2007 11:34 +Park Ridge,,TEARDROP,NJ,8/29/2007 12:00 +Saint Maries,,CIGAR,ID,8/29/2007 12:40 +Shelbyville,,CIGAR,IL,8/29/2007 18:05 +Clovis,,TRIANGLE,CA,8/29/2007 20:50 +Carle Place,,OVAL,NY,8/29/2007 21:00 +Carle Place,,OVAL,NY,8/29/2007 21:00 +Racine,,LIGHT,WI,8/29/2007 21:00 +Petaluma,,SPHERE,CA,8/29/2007 21:30 +Toms River,,SPHERE,NJ,8/29/2007 22:27 +Eaton,RED GREEN,LIGHT,NH,8/30/2007 0:00 +Goose Creek,,DIAMOND,SC,8/30/2007 13:00 +Keokuk,ORANGE,LIGHT,IA,8/30/2007 20:30 +Seattle,,FLASH,WA,8/30/2007 20:30 +Chino Hills,,CIRCLE,CA,8/30/2007 21:00 +Sneads Ferry,,OTHER,NC,8/30/2007 21:00 +Waupun,,LIGHT,WI,8/30/2007 21:00 +Troutdale,,CIRCLE,OR,8/30/2007 21:17 +Melrose Park,,,IL,8/30/2007 22:00 +Prescott,RED,LIGHT,AZ,8/30/2007 22:15 +Yucaipa,,OVAL,CA,8/30/2007 23:00 +Maryville,,TRIANGLE,IL,8/30/2007 23:10 +Cleveland,,LIGHT,OH,8/31/2007 5:57 +Culver City,,CIGAR,CA,8/31/2007 11:30 +Little Rock,,RECTANGLE,AR,8/31/2007 14:25 +Crestwood,,SPHERE,IL,8/31/2007 14:30 +Saginaw,,TRIANGLE,MI,8/31/2007 19:30 +Little Rock,,CIRCLE,AR,8/31/2007 19:45 +Meriden,ORANGE,FIREBALL,CT,8/31/2007 20:25 +Sullivan,RED,LIGHT,IL,8/31/2007 20:50 +Cloverdale,,OTHER,OR,8/31/2007 22:30 +Normandy Beach,,,NJ,9/1/2007 0:00 +Raymond,,OVAL,NH,9/1/2007 1:00 +North Plains,,LIGHT,OR,9/1/2007 2:00 +Rowland Heights,,,CA,9/1/2007 3:30 +Worley,,,ID,9/1/2007 3:30 +Boston area,,EGG,MA,9/1/2007 4:00 +Jacksonville,,CIRCLE,OR,9/1/2007 5:00 +Crestone,,TRIANGLE,CO,9/1/2007 5:30 +Puyallup,,CIRCLE,WA,9/1/2007 11:00 +Puyallup,,SPHERE,WA,9/1/2007 11:00 +Briarwood,,CIGAR,NY,9/1/2007 15:37 +Dodgeville,,DISK,WI,9/1/2007 19:00 +Mesquite,,OTHER,TX,9/1/2007 19:00 +Nutrioso,YELLOW,SPHERE,AZ,9/1/2007 19:00 +Jamesburg,,OVAL,NJ,9/1/2007 19:15 +Tacoma,GREEN,FIREBALL,WA,9/1/2007 19:55 +Dayton,,TRIANGLE,OH,9/1/2007 21:00 +Charlotte,ORANGE,FIREBALL,MI,9/1/2007 21:05 +Roseville,ORANGE,FIREBALL,MI,9/1/2007 21:30 +Lansing,,FORMATION,MI,9/1/2007 21:40 +Brookings,,LIGHT,OR,9/1/2007 22:00 +Cherry Hill,,RECTANGLE,NJ,9/1/2007 22:00 +Minot,,TRIANGLE,ND,9/1/2007 22:15 +Nashville,GREEN,OTHER,TN,9/1/2007 23:00 +Centreville,RED,SPHERE,MI,9/1/2007 23:30 +West Valley,,VARIOUS,UT,9/1/2007 23:30 +Murfreesboro,,OTHER,TN,9/1/2007 23:32 +Sullivan,,OVAL,MO,9/2/2007 1:00 +Fort Washington,,DISK,MD,9/2/2007 1:38 +Yeehaw Junction,,DISK,FL,9/2/2007 3:00 +Moreno Valley,,,CA,9/2/2007 7:15 +West Chester,,SPHERE,PA,9/2/2007 10:50 +Loveland,,TRIANGLE,CO,9/2/2007 11:00 +Jersey City,BLUE,DISK,NJ,9/2/2007 12:25 +Doylestown,,,OH,9/2/2007 15:45 +Louisville,,SPHERE,KY,9/2/2007 16:30 +South Haven,,,MI,9/2/2007 18:00 +Holland,,FORMATION,MI,9/2/2007 19:00 +Langhorne,,CIGAR,PA,9/2/2007 19:00 +Tujunga,,OTHER,CA,9/2/2007 19:12 +Heber,,CIRCLE,AZ,9/2/2007 19:15 +Winslow,,SPHERE,AZ,9/2/2007 20:37 +Modesto,,TRIANGLE,CA,9/2/2007 20:45 +Cincinnati,,LIGHT,OH,9/2/2007 21:00 +Trout Lake,,VARIOUS,WA,9/2/2007 21:00 +Indianapolis,,FIREBALL,IN,9/2/2007 21:15 +Novato,,OTHER,CA,9/2/2007 21:30 +Casper,,LIGHT,WY,9/2/2007 22:30 +Gwinn,,CIGAR,MI,9/2/2007 23:00 +Charlotte,,,NC,9/2/2007 23:39 +Algood,,OVAL,TN,9/3/2007 5:30 +Eugene,,CROSS,OR,9/3/2007 7:45 +North St. Paul,,FORMATION,MN,9/3/2007 15:30 +Mapleton,,CIRCLE,KS,9/3/2007 20:00 +Lauderdale-By-The-Sea,,CIRCLE,FL,9/3/2007 20:30 +Wallingford,,LIGHT,CT,9/3/2007 20:32 +New Port Richey,,TRIANGLE,FL,9/3/2007 21:45 +Marhall,,DISK,OK,9/4/2007 0:06 +Tracy,,TRIANGLE,CA,9/4/2007 1:00 +Irvine,,TRIANGLE,CA,9/4/2007 2:00 +Marble Hill,YELLOW,OVAL,GA,9/4/2007 6:15 +North Myrtle Beach,ORANGE,CONE,SC,9/4/2007 11:45 +York,,OVAL,PA,9/4/2007 18:30 +Myrtle Beach,,LIGHT,SC,9/4/2007 20:30 +Oak Park,,DISK,IL,9/4/2007 21:00 +Franklin Furnace,,FORMATION,OH,9/4/2007 21:30 +Kansas City,,TRIANGLE,MO,9/4/2007 22:00 +Salt Lake City,,TRIANGLE,UT,9/4/2007 22:00 +Emerald Isle,RED,RECTANGLE,NC,9/4/2007 22:30 +Mechanicsburg,,DISK,PA,9/4/2007 22:30 +Wattsburg,,FLASH,PA,9/4/2007 22:30 +Salem,ORANGE,RECTANGLE,OR,9/5/2007 0:05 +Mansfield,,SPHERE,OH,9/5/2007 12:00 +Alton,,CIGAR,NH,9/5/2007 13:00 +York,,CIRCLE,ME,9/5/2007 13:00 +Colbyville,,DISK,VT,9/5/2007 13:15 +Cedar Falls,,LIGHT,IA,9/5/2007 21:00 +Reno,,VARIOUS,NV,9/5/2007 21:15 +Hondo,,FORMATION,TX,9/5/2007 23:40 +Roswell,,VARIOUS,NM,9/5/2007 23:55 +Dexter,,FORMATION,MI,9/6/2007 1:03 +Englewood,,CYLINDER,CO,9/6/2007 14:40 +Andrews,,LIGHT,SC,9/6/2007 20:30 +Contoocook,ORANGE,TRIANGLE,NH,9/6/2007 20:40 +Surfside Beach,ORANGE,LIGHT,SC,9/6/2007 21:30 +Myrtle Beach,,CIRCLE,SC,9/6/2007 23:30 +Myrtle Beach,ORANGE,LIGHT,VA,9/6/2007 23:45 +New York City,,,NY,9/7/2007 0:00 +Las Vegas,,LIGHT,NV,9/7/2007 5:30 +El Paso,,OVAL,TX,9/7/2007 17:45 +Orland Park,,FORMATION,IL,9/7/2007 18:00 +Doyline,,TRIANGLE,LA,9/7/2007 20:15 +Siesta Key,,TRIANGLE,FL,9/7/2007 21:48 +Voluntown,,RECTANGLE,CT,9/7/2007 22:30 +Reno,,,NV,9/8/2007 4:30 +Isle of Palms,,CHEVRON,SC,9/8/2007 7:00 +Santa Maria,,OVAL,CA,9/8/2007 10:00 +Grover Beach,,TRIANGLE,CA,9/8/2007 14:00 +Woodinville,,SPHERE,WA,9/8/2007 15:00 +Stevensville,,CYLINDER,MT,9/8/2007 17:25 +Hyde Park,,LIGHT,VT,9/8/2007 20:45 +Onalaska,,CIRCLE,WI,9/8/2007 20:45 +Edmonds,,LIGHT,WA,9/8/2007 22:30 +Buffalo,,OVAL,NY,9/8/2007 23:30 +Holly Springs,RED BLUE,LIGHT,AR,9/8/2007 23:30 +Orange,,FORMATION,CA,9/9/2007 10:00 +Palatine,,CIRCLE,IL,9/9/2007 15:00 +Austin,,SPHERE,TX,9/9/2007 17:00 +St. Petersburg,,LIGHT,FL,9/9/2007 20:10 +Antelope,,OTHER,CA,9/9/2007 21:30 +Keizer,,FORMATION,OR,9/9/2007 22:00 +Las Vegas,ORANGE,OTHER,NV,9/9/2007 22:00 +Tukwila,RED GREEN BLUE,LIGHT,WA,9/9/2007 22:00 +Robertsdale,,CYLINDER,AL,9/10/2007 2:00 +College Station,RED GREEN BLUE,,TX,9/10/2007 5:00 +Bloomer,,CYLINDER,WI,9/10/2007 14:00 +Russellton,,CIGAR,PA,9/10/2007 17:30 +Burns Junction,,CHEVRON,OR,9/10/2007 20:30 +Austin,,OVAL,TX,9/10/2007 20:53 +Loveland,,TRIANGLE,CO,9/10/2007 21:39 +University City,,TRIANGLE,MO,9/10/2007 22:20 +Tucson,,VARIOUS,AZ,9/11/2007 9:00 +Austin,YELLOW,OTHER,TX,9/11/2007 11:40 +Anaheim,,,CA,9/11/2007 12:47 +Agoura Hills,RED,DISK,CA,9/11/2007 17:30 +Studio City,,LIGHT,CA,9/11/2007 19:50 +La Crescenta,,SPHERE,CA,9/11/2007 20:20 +Scottdale,,SPHERE,PA,9/11/2007 20:45 +Hillsboro,ORANGE,CIRCLE,OH,9/11/2007 21:00 +New Holland,,LIGHT,OH,9/11/2007 21:00 +Cabot,,CHEVRON,AR,9/11/2007 21:40 +Medford,ORANGE,TRIANGLE,OR,9/11/2007 21:40 +Wheeling,,LIGHT,WV,9/11/2007 22:00 +Glen Lyon,,LIGHT,PA,9/12/2007 1:30 +Aurora,,EGG,CO,9/12/2007 3:00 +Lincoln,,CIRCLE,NE,9/12/2007 3:20 +Laguna Niguel,,TRIANGLE,CA,9/12/2007 4:00 +Springfield,,OVAL,MO,9/12/2007 4:00 +Lawrence,,,KS,9/12/2007 4:10 +Ravena,,LIGHT,NY,9/12/2007 5:30 +Ravena,,TEARDROP,NY,9/12/2007 5:30 +Orlando,,OVAL,FL,9/12/2007 5:45 +Chandler,,FLASH,AZ,9/12/2007 9:20 +Colordo Springs,,,CO,9/12/2007 9:35 +Laurens,,LIGHT,SC,9/12/2007 20:45 +Spartanburg,,LIGHT,SC,9/12/2007 20:59 +Burbank,,,IL,9/12/2007 21:45 +Chillicothe,,LIGHT,OH,9/12/2007 22:30 +Roseboom,,DISK,NY,9/13/2007 2:00 +Canton,,DISK,MI,9/13/2007 6:55 +Santa Fe,,SPHERE,NM,9/13/2007 13:50 +Flint,,DISK,MI,9/13/2007 17:00 +New Mexico,,TEARDROP,NM,9/13/2007 18:30 +Los Alamos,,DIAMOND,NM,9/13/2007 18:35 +Santa Fe,,LIGHT,NM,9/13/2007 19:20 +Farmington,RED,CIRCLE,NM,9/13/2007 19:30 +Page,RED,OTHER,AZ,9/13/2007 19:50 +Keokuk,RED,,IA,9/13/2007 20:45 +Loveland,,FIREBALL,OH,9/13/2007 20:55 +Portsmouth,,TRIANGLE,RI,9/13/2007 21:00 +Chillicothe,ORANGE,FIREBALL,OH,9/13/2007 21:15 +Chillicothe,,LIGHT,OH,9/13/2007 21:30 +Hayden,,LIGHT,ID,9/13/2007 21:30 +Maysville,,LIGHT,KY,9/13/2007 21:30 +Mount Orab,,FORMATION,OH,9/13/2007 21:30 +Reed,,TRIANGLE,KY,9/13/2007 21:30 +Whitewater,,CIGAR,WI,9/13/2007 23:00 +Sanford,,RECTANGLE,FL,9/14/2007 0:00 +Livermore,,,CA,9/14/2007 5:30 +Tiverton,,CIRCLE,RI,9/14/2007 5:35 +Bettendorf,,TRIANGLE,IA,9/14/2007 5:50 +Bedford Park,,CIRCLE,IL,9/14/2007 7:45 +Hyannisport,,CYLINDER,MA,9/14/2007 8:20 +Austin,,TRIANGLE,TX,9/14/2007 20:15 +Decatur,,OTHER,GA,9/14/2007 21:00 +Lantana,,CIRCLE,FL,9/14/2007 21:00 +Allenhurst,ORANGE,LIGHT,GA,9/14/2007 21:40 +San Francisco,,TRIANGLE,CA,9/14/2007 22:20 +St. Augustine,,OTHER,FL,9/14/2007 23:00 +Jackson,,TRIANGLE,AL,9/14/2007 23:23 +Las Vegas,,LIGHT,NV,9/15/2007 1:00 +Davis,GREEN,SPHERE,CO,9/15/2007 1:23 +Silverdale,RED,DIAMOND,WA,9/15/2007 1:30 +Kenai Peninsula,,TRIANGLE,AK,9/15/2007 2:30 +Lake Worth,,LIGHT,FL,9/15/2007 5:30 +St. Peters,,OTHER,MO,9/15/2007 9:45 +Sebastion,,OTHER,FL,9/15/2007 11:00 +Seabeck,,LIGHT,WA,9/15/2007 11:30 +Frederick,,SPHERE,MD,9/15/2007 12:02 +Roseburg,,SPHERE,OR,9/15/2007 13:00 +Norton,,DISK,VA,9/15/2007 14:00 +Oshkosh,,DISK,WI,9/15/2007 14:00 +Taft,,FORMATION,CA,9/15/2007 15:00 +Goleta,,CIGAR,CA,9/15/2007 16:30 +Kingston,RED,FIREBALL,RI,9/15/2007 19:35 +Springfield,,TRIANGLE,MO,9/15/2007 20:00 +Loogootee,,FIREBALL,IN,9/15/2007 20:15 +Albany,,FORMATION,OR,9/15/2007 22:00 +Bethel,,LIGHT,CT,9/15/2007 22:00 +Clearwater Beach,,,FL,9/15/2007 23:00 +Forked River,,TRIANGLE,NJ,9/15/2007 23:10 +Boulder,RED,TRIANGLE,CO,9/16/2007 1:00 +Wenatchee,RED,VARIOUS,WA,9/16/2007 1:35 +New York City,RED,LIGHT,NY,9/16/2007 1:40 +Greenwood,,TRIANGLE,MS,9/16/2007 3:00 +San Diego,,,CA,9/16/2007 3:00 +Endicott,,TEARDROP,NY,9/16/2007 13:00 +Akron,,LIGHT,OH,9/16/2007 17:00 +Glendale,,TRIANGLE,CA,9/16/2007 19:33 +Tracy,RED,CIGAR,CA,9/16/2007 20:30 +Bremerton,,LIGHT,WA,9/16/2007 21:00 +Asheville,RED YELLOW,CHEVRON,NC,9/16/2007 22:00 +Coalingua,BLUE,OVAL,CA,9/16/2007 22:30 +Bay Shore,,FORMATION,NY,9/17/2007 1:00 +Snowmass Village,,LIGHT,CO,9/17/2007 2:00 +Naples,,DISK,FL,9/17/2007 5:45 +Placerville,,TRIANGLE,CA,9/17/2007 5:45 +Pewaukee,,,WI,9/17/2007 13:31 +Greeneville,,LIGHT,TN,9/17/2007 17:00 +Santa Barbara,,LIGHT,CA,9/17/2007 17:30 +Bodega Bay,,CIGAR,CA,9/17/2007 19:17 +Memphis,,LIGHT,TN,9/17/2007 20:00 +Oroville,,TRIANGLE,CA,9/17/2007 20:00 +Vermont,,LIGHT,IL,9/17/2007 21:00 +Galesburg,,LIGHT,IL,9/17/2007 21:15 +Bethlehem,RED BLUE,LIGHT,NH,9/17/2007 22:00 +Clear Lake,,LIGHT,MN,9/17/2007 22:00 +Wallingford,RED YELLOW GREEN,CIRCLE,CT,9/17/2007 22:30 +Des Moines,,,IA,9/17/2007 23:00 +Watertown,,DISK,CT,9/17/2007 23:02 +Gate City,,SPHERE,VA,9/17/2007 23:15 +San Carlos,,FORMATION,CA,9/17/2007 23:15 +Weber City,,CIRCLE,TN,9/17/2007 23:15 +Kennesaw,,FIREBALL,GA,9/18/2007 1:58 +Portland,GREEN,LIGHT,OR,9/18/2007 2:00 +Rome,RED BLUE,RECTANGLE,NY,9/18/2007 5:00 +Irvine,GREEN,CIRCLE,CA,9/18/2007 20:00 +Kannapolis,RED,TRIANGLE,NC,9/18/2007 20:40 +Bethlehen,,LIGHT,NH,9/18/2007 22:00 +Bakersfield,,TRIANGLE,CA,9/18/2007 23:25 +Ireland,RED,CYLINDER,IN,9/19/2007 4:52 +Webb,ORANGE,,IA,9/19/2007 9:30 +Melbourne,,LIGHT,FL,9/19/2007 20:40 +Hawley Lake,,,AZ,9/19/2007 21:00 +Rensselaer,,VARIOUS,NY,9/19/2007 22:00 +Webb,ORANGE,LIGHT,IA,9/19/2007 22:00 +Cloverly,,LIGHT,MD,9/20/2007 1:30 +Mount Sterling,,RECTANGLE,KY,9/20/2007 2:00 +Bristol,,DISK,PA,9/20/2007 13:00 +Long Beach,,FIREBALL,CA,9/20/2007 17:00 +Flint,,DISK,MI,9/20/2007 17:30 +Bridgeport,,OTHER,NY,9/20/2007 18:50 +Westmont,,TRIANGLE,IL,9/20/2007 19:15 +Coos Bay,,CIGAR,OR,9/20/2007 20:00 +Palm Harbor,,CYLINDER,FL,9/20/2007 20:30 +Kingston,,TRIANGLE,NM,9/20/2007 21:00 +Richmond,,CIRCLE,IL,9/20/2007 21:00 +Northern Cambria,,LIGHT,PA,9/20/2007 21:30 +Bethlehem,,LIGHT,NH,9/20/2007 22:00 +Orting,,LIGHT,WA,9/20/2007 22:30 +Mission Viejo,ORANGE,CIRCLE,CA,9/20/2007 23:30 +Rosebud,,VARIOUS,SD,9/21/2007 1:00 +Spencerville,,CIGAR,OH,9/21/2007 1:50 +Bastrop,,CIGAR,TX,9/21/2007 4:13 +Lexington,,DISK,KY,9/21/2007 4:30 +Lombard,,CHEVRON,IL,9/21/2007 5:30 +Salem,,DIAMOND,NH,9/21/2007 6:30 +Seligman,,CIGAR,AZ,9/21/2007 9:00 +Dover,,SPHERE,PA,9/21/2007 9:30 +Bisti,,CIGAR,NM,9/21/2007 10:34 +Huntington Beach,,OTHER,CA,9/21/2007 12:00 +Albuquerque,,CIGAR,NM,9/21/2007 12:20 +Sterling Heights,,CIRCLE,MI,9/21/2007 13:00 +North Dartmouth,,OTHER,MA,9/21/2007 18:00 +West Chester,,TRIANGLE,OH,9/21/2007 20:00 +West Chester,,TRIANGLE,OH,9/21/2007 20:14 +Deer Park,YELLOW,TRIANGLE,OH,9/21/2007 20:25 +Evendale,,TRIANGLE,OH,9/21/2007 21:00 +Covington,,FIREBALL,TN,9/21/2007 21:15 +Vista,,TRIANGLE,CA,9/21/2007 22:00 +Costa Mesa,,CIRCLE,CA,9/21/2007 22:45 +Woodland Hills,,CIRCLE,CA,9/22/2007 0:45 +Funks Grove,ORANGE GREEN,OVAL,IL,9/22/2007 1:00 +Lynden,,LIGHT,WA,9/22/2007 3:00 +Lawton,,VARIOUS,MI,9/22/2007 3:15 +Martin,,OTHER,GA,9/22/2007 4:00 +Hagerstown,,LIGHT,MD,9/22/2007 5:25 +South Coffyvile,,OTHER,OK,9/22/2007 8:38 +Naco,,DISK,AZ,9/22/2007 10:40 +Lithia Springs,,DISK,GA,9/22/2007 11:00 +Franconia Notch,,CIGAR,NH,9/22/2007 16:00 +Franconia Notch State Park,,CIGAR,NH,9/22/2007 16:00 +Fort Walton Bech,,LIGHT,FL,9/22/2007 17:30 +La Mesilla,,CIRCLE,NM,9/22/2007 17:30 +San Pablo,,DIAMOND,CO,9/22/2007 19:15 +San Acacio,,DIAMOND,CO,9/22/2007 19:20 +Toledo,BLUE,TRIANGLE,OH,9/22/2007 20:00 +Ambrose,,OVAL,GA,9/22/2007 20:30 +Yankeetown,,LIGHT,FL,9/22/2007 21:00 +Columbia,,OTHER,MO,9/22/2007 21:05 +DeWitt,ORANGE,FIREBALL,MI,9/22/2007 21:20 +Cleveland,BLUE,VARIOUS,OH,9/22/2007 22:00 +Lebanon,RED ORANGE,FIREBALL,OR,9/22/2007 22:00 +Los Angeles,ORANGE,SPHERE,CA,9/22/2007 22:30 +Wildwood Crest,,LIGHT,NJ,9/22/2007 22:30 +Denver,,LIGHT,PA,9/23/2007 0:00 +Dacula,,LIGHT,GA,9/23/2007 0:10 +Clermont,,LIGHT,FL,9/23/2007 6:00 +Burbank,,LIGHT,CA,9/23/2007 6:06 +Myrtle Beach,,SPHERE,SC,9/23/2007 12:00 +Stratford,,TRIANGLE,CT,9/23/2007 20:16 +Zion,,,IL,9/23/2007 21:00 +Ringgold,,,GA,9/23/2007 22:00 +Schwenksville,,CIRCLE,PA,9/24/2007 4:15 +Gary,,RECTANGLE,IN,9/24/2007 10:21 +Defiance,,OVAL,OH,9/24/2007 11:00 +Fort Washington,,OTHER,PA,9/24/2007 12:30 +LosAlamos,BLUE,RECTANGLE,NM,9/24/2007 15:15 +Corona,,CIRCLE,CA,9/24/2007 19:50 +Marshall,,LIGHT,WI,9/24/2007 20:00 +Guthriesville,,DISK,PA,9/24/2007 20:14 +Salem,,LIGHT,OR,9/24/2007 22:30 +Punta Gorda Isles,,OTHER,FL,9/24/2007 23:30 +Lake Dallas,ORANGE,RECTANGLE,TX,9/25/2007 5:31 +El Cajon,,LIGHT,CA,9/25/2007 5:38 +Damascus,,CIRCLE,OR,9/25/2007 6:00 +Tampa,,SPHERE,FL,9/25/2007 16:24 +Eden Mills,,FORMATION,VT,9/25/2007 17:30 +Franklin,,TRIANGLE,TN,9/25/2007 18:40 +Baltimore,,LIGHT,MD,9/25/2007 18:45 +Marion,,TRIANGLE,VA,9/25/2007 19:29 +Wilmington,ORANGE,LIGHT,NC,9/25/2007 21:05 +Shelby,,CIRCLE,NC,9/25/2007 21:30 +Bayside,RED,TRIANGLE,NY,9/25/2007 22:15 +New Haven,,OVAL,CT,9/25/2007 22:20 +Henderson,,OTHER,NV,9/26/2007 4:00 +Clinton,,,CT,9/26/2007 4:38 +Elizabethton,ORANGE,TRIANGLE,TN,9/26/2007 6:00 +Midland,,CIRCLE,MI,9/26/2007 19:00 +Port Charlotte,,CIGAR,FL,9/26/2007 20:00 +Lake Havasu City,,DISK,AZ,9/26/2007 20:15 +Port Charlotte,,LIGHT,FL,9/26/2007 20:30 +Kure Beach,ORANGE,CIRCLE,NC,9/26/2007 21:20 +Aloha,,DIAMOND,OR,9/26/2007 23:00 +Richland,BLUE,OVAL,WA,9/26/2007 23:00 +Hilton Head Island,RED BLUE,,SC,9/27/2007 1:00 +Kennedy Space Center,,,FL,9/27/2007 4:34 +Chandler,,CIRCLE,AZ,9/27/2007 5:45 +Orlando,,OVAL,FL,9/27/2007 7:35 +Reno,,RECTANGLE,NV,9/27/2007 14:00 +Carrollton,,LIGHT,TX,9/27/2007 14:30 +Las Vegas,,TRIANGLE,NV,9/27/2007 20:00 +Independence,,,MO,9/27/2007 20:23 +Atwater,,TRIANGLE,OH,9/27/2007 21:00 +Conway,,LIGHT,AR,9/27/2007 21:45 +Tempe,,TRIANGLE,AZ,9/27/2007 22:00 +Kendallville,,LIGHT,IN,9/28/2007 2:27 +Williams,ORANGE,CHEVRON,CA,9/28/2007 6:20 +Richmond,,,VA,9/28/2007 15:30 +Crown Point,YELLOW GREEN,FLASH,IN,9/28/2007 20:10 +Warren,,FORMATION,MI,9/28/2007 20:23 +Humble,,RECTANGLE,TX,9/28/2007 23:10 +Lihue,,LIGHT,HI,9/29/2007 0:00 +West Yellowstone,,FIREBALL,MT,9/29/2007 0:35 +Leaky,,LIGHT,TX,9/29/2007 6:00 +Byhalia,,DISK,MS,9/29/2007 6:30 +Moore,,LIGHT,OK,9/29/2007 7:00 +Chicago,,DIAMOND,IL,9/29/2007 10:30 +Kokomo,,SPHERE,IN,9/29/2007 12:15 +Cherry Spring,ORANGE,LIGHT,PA,9/29/2007 20:30 +Odenton,,LIGHT,MD,9/29/2007 20:30 +Walton,,CIRCLE,KY,9/29/2007 23:10 +Chicago,GREEN,CIRCLE,IL,9/29/2007 23:30 +Dalton,,FLASH,GA,9/30/2007 0:11 +La Vista,,TRIANGLE,NE,9/30/2007 0:25 +Columbus,RED ORANGE BLUE,LIGHT,GA,9/30/2007 1:00 +Gadsden,,VARIOUS,AL,9/30/2007 4:15 +Richmond,,CIRCLE,CA,9/30/2007 12:00 +Fort Washington,,,PA,9/30/2007 14:25 +Newport Beach,RED,SPHERE,CA,9/30/2007 16:50 +West Point,,CIGAR,NE,9/30/2007 17:30 +Clarkton,RED,OTHER,NC,9/30/2007 18:30 +Laramie,,OTHER,WY,9/30/2007 18:30 +Gurnee,ORANGE,SPHERE,IL,9/30/2007 19:30 +Bigelow,,LIGHT,AR,9/30/2007 19:53 +Mercersburg,,,PA,9/30/2007 20:20 +Tempe,,OTHER,AZ,9/30/2007 21:14 +Loveland,,FORMATION,CO,9/30/2007 21:45 +Portal,,TRIANGLE,GA,9/30/2007 22:00 +Portal,RED,TRIANGLE,GA,9/30/2007 22:00 +Escondido,,DIAMOND,CA,10/1/2007 0:00 +Los Angeles,RED,FLASH,CA,10/1/2007 0:00 +Dayton,,OVAL,OH,10/1/2007 0:02 +Sautee Nacoochee,,LIGHT,GA,10/1/2007 2:30 +Gadsden,,,AL,10/1/2007 4:00 +Charlotte,,LIGHT,NC,10/1/2007 9:50 +Litchfield,,OVAL,IL,10/1/2007 13:00 +Granville,,SPHERE,OH,10/1/2007 17:10 +Beulaville,,TRIANGLE,NC,10/1/2007 19:00 +Youngstown,,,FL,10/1/2007 19:30 +Ewa Beach,,LIGHT,HI,10/1/2007 20:00 +Tryon,,LIGHT,NC,10/1/2007 20:00 +Ballinger,ORANGE,,TX,10/1/2007 21:00 +Deer Park,,OTHER,NY,10/1/2007 21:00 +Sanford,,TRIANGLE,FL,10/1/2007 21:00 +Dublin,,FLASH,CA,10/1/2007 22:30 +Stanton,,CIRCLE,MI,10/2/2007 0:00 +Metairie,,,LA,10/2/2007 1:30 +Everett,YELLOW,LIGHT,WA,10/2/2007 2:00 +Claremont,,CIRCLE,CA,10/2/2007 3:00 +Murrysville,,LIGHT,PA,10/2/2007 4:00 +Houston,,LIGHT,TX,10/2/2007 6:30 +Cottonwood,,TRIANGLE,AZ,10/2/2007 10:00 +Lubec,,CIRCLE,ME,10/2/2007 21:30 +VA,,LIGHT,VA,10/2/2007 22:00 +Colorado Springs,,TRIANGLE,CO,10/2/2007 23:00 +Avon Park,,,FL,10/2/2007 23:52 +High Point,,TRIANGLE,NC,10/3/2007 0:00 +High Springs,,TRIANGLE,FL,10/3/2007 0:00 +Tennessee Ridge,RED GREEN,,TN,10/3/2007 2:30 +Mora,,FIREBALL,MN,10/3/2007 14:00 +Plattsmouth,,FIREBALL,NE,10/3/2007 14:30 +North Bend,,CIRCLE,WA,10/3/2007 15:30 +Mount Vernon,,SPHERE,NY,10/3/2007 16:58 +Canton Township,,LIGHT,MI,10/3/2007 17:15 +Arlington,,LIGHT,TX,10/3/2007 19:00 +Burnsville,,LIGHT,MN,10/3/2007 19:15 +Chatham,,OVAL,IL,10/3/2007 20:30 +Columbia,,CIRCLE,MO,10/3/2007 20:40 +Chicago,,,IL,10/3/2007 22:00 +Lima,RED BLUE,CIRCLE,OH,10/3/2007 22:00 +Rockport-Fulton,,OTHER,TX,10/3/2007 22:30 +Crossville,GREEN,CIRCLE,TN,10/3/2007 23:32 +Taos,,LIGHT,NM,10/4/2007 5:20 +Detroit,,DISK,MI,10/4/2007 6:00 +Otis,,,OR,10/4/2007 6:00 +Ann Arbor,,CIRCLE,MI,10/4/2007 18:45 +Burkeville,,LIGHT,VA,10/4/2007 19:00 +Toledo,,LIGHT,OH,10/4/2007 21:00 +Denver,,RECTANGLE,CO,10/4/2007 21:10 +Browder,,LIGHT,KY,10/4/2007 22:00 +Boyne Falls,,TRIANGLE,MI,10/4/2007 23:00 +Rapid City,,CIGAR,SD,10/4/2007 23:35 +Austin,,TRIANGLE,TX,10/5/2007 1:05 +Danbury,,TRIANGLE,CT,10/5/2007 5:33 +Houston,,SPHERE,TX,10/5/2007 12:00 +Selah,,OVAL,WA,10/5/2007 14:00 +Clemmons,,LIGHT,NC,10/5/2007 19:30 +Clemmons,,DIAMOND,NC,10/5/2007 20:00 +Salem,,OTHER,OR,10/5/2007 20:00 +Chandler,,SPHERE,AZ,10/5/2007 21:15 +Milton-Freewater,,LIGHT,OR,10/5/2007 22:00 +Quincy,,TRIANGLE,CA,10/5/2007 23:00 +Clifton Forge,,TRIANGLE,VA,10/5/2007 23:30 +Rolla,,,MO,10/5/2007 23:32 +Omaha,,LIGHT,NE,10/5/2007 23:45 +Van Alstyne,,RECTANGLE,TX,10/5/2007 23:55 +Topeka,,TRIANGLE,KS,10/6/2007 1:00 +New York City,,CIGAR,NY,10/6/2007 4:00 +Johnstown,,RECTANGLE,NE,10/6/2007 5:45 +Oak View,,EGG,CA,10/6/2007 13:00 +Brownlee,,OVAL,NE,10/6/2007 14:00 +Franklinton,RED,,LA,10/6/2007 18:11 +Arlington Heights,,TEARDROP,IL,10/6/2007 18:30 +Boonville,,LIGHT,IN,10/6/2007 18:30 +Huntington Beach,,RECTANGLE,CA,10/6/2007 20:00 +Mountain View,ORANGE,LIGHT,CA,10/6/2007 21:00 +Sedalia,ORANGE,LIGHT,CO,10/6/2007 21:00 +Woodstock,,TRIANGLE,IL,10/6/2007 21:00 +Walton,,CIRCLE,KY,10/6/2007 21:15 +Willow,GREEN,CIRCLE,AK,10/6/2007 22:00 +Los Angeles,,FORMATION,CA,10/6/2007 22:10 +Glenside,,,PA,10/7/2007 0:00 +Hilliard,ORANGE,LIGHT,OH,10/7/2007 0:10 +York,,CIRCLE,PA,10/7/2007 1:00 +Poplarville,,LIGHT,MS,10/7/2007 1:01 +Poplarville,,,MS,10/7/2007 1:15 +Manteca,,OTHER,CA,10/7/2007 3:30 +Lakewood,,SPHERE,CA,10/7/2007 4:30 +Riverside,RED,OVAL,CA,10/7/2007 9:35 +Laguna Hills,ORANGE,DISK,CA,10/7/2007 11:00 +Long Beach,RED,SPHERE,CA,10/7/2007 16:30 +Reading,,LIGHT,PA,10/7/2007 18:30 +New Albany,ORANGE,LIGHT,PA,10/7/2007 19:54 +Quincy,,LIGHT,CA,10/7/2007 20:00 +Irvine,,OVAL,CA,10/7/2007 21:45 +Amarillo,BLUE,LIGHT,TX,10/7/2007 22:00 +Hartsville,,SPHERE,SC,10/8/2007 4:00 +Oklahoma City,,,OK,10/8/2007 15:00 +Hanover,GREEN,CIGAR,PA,10/8/2007 19:45 +Madison,,CIRCLE,VA,10/8/2007 20:00 +Toledo,,LIGHT,OH,10/8/2007 20:15 +Newport,RED,VARIOUS,NC,10/8/2007 23:55 +Lake Bluff,,,IL,10/9/2007 0:00 +Claremont,,CIRCLE,CA,10/9/2007 2:00 +Bufod,,OVAL,GA,10/9/2007 4:14 +Loveland,,DIAMOND,CO,10/9/2007 5:50 +Mission Viejo,,LIGHT,CA,10/9/2007 19:00 +Plano,,OTHER,TX,10/9/2007 20:40 +Madison,,CIRCLE,KS,10/9/2007 21:00 +Toledo,,SPHERE,OH,10/9/2007 21:15 +Waynesville,,DISK,NC,10/9/2007 21:33 +Fulton,,OTHER,MO,10/9/2007 21:45 +Pella,RED,FLASH,IA,10/9/2007 23:00 +Omaha,,TRIANGLE,NE,10/9/2007 23:05 +Murfreesboro,,LIGHT,TN,10/9/2007 23:30 +Rolla,ORANGE,SPHERE,MO,10/9/2007 23:50 +Lebanon,ORANGE,LIGHT,OR,10/10/2007 1:00 +Stockbridge,,VARIOUS,GA,10/10/2007 1:00 +Denver,,VARIOUS,CO,10/10/2007 4:00 +Jacksonville,,SPHERE,FL,10/10/2007 4:30 +Bakersfield,,CIRCLE,CA,10/10/2007 5:00 +Indio,BLUE,OVAL,CA,10/10/2007 6:00 +Owego,,TRIANGLE,NY,10/10/2007 13:00 +Downingtown,,CIRCLE,PA,10/10/2007 18:33 +Austin,,FLASH,TX,10/10/2007 19:00 +Starrsville,,SPHERE,GA,10/10/2007 20:10 +West Palm Beach florida,,FIREBALL,FL,10/10/2007 20:24 +Conyers,,,GA,10/10/2007 20:30 +Vero Beach,RED,,FL,10/10/2007 20:55 +Jensen Beach,,OVAL,FL,10/10/2007 21:00 +Houston,,FORMATION,TX,10/10/2007 21:43 +Duluth,,LIGHT,MN,10/10/2007 22:00 +Fleming,,CIRCLE,CO,10/10/2007 22:00 +Grove City,,,PA,10/10/2007 22:00 +Van Alstyne,,OTHER,TX,10/10/2007 22:00 +Northglenn,,TRIANGLE,CO,10/10/2007 23:05 +Melbourne,,OVAL,KY,10/11/2007 4:40 +Carlton,,CYLINDER,OR,10/11/2007 10:10 +Clackamas,,CIRCLE,OR,10/11/2007 16:00 +Seattle,ORANGE,TRIANGLE,WA,10/11/2007 19:50 +Frankfort,,SPHERE,IL,10/11/2007 20:00 +Tega Cay,RED,LIGHT,SC,10/11/2007 20:15 +Gulf Shores,,DISK,AL,10/11/2007 20:30 +Ogden,,TRIANGLE,UT,10/12/2007 0:20 +Sedalia,,FORMATION,MO,10/12/2007 1:45 +New York City,,LIGHT,NY,10/12/2007 5:30 +Arcadia,,FORMATION,FL,10/12/2007 8:15 +Fort Washington,,SPHERE,PA,10/12/2007 14:35 +West Los Angeles,RED,,CA,10/12/2007 19:20 +Indiana,,DISK,IN,10/12/2007 20:00 +Appleton,,CIRCLE,WI,10/12/2007 21:30 +Irvine,,,CA,10/12/2007 22:00 +Irvine,RED,CIRCLE,CA,10/12/2007 22:00 +York,,OVAL,PA,10/12/2007 22:00 +Houston,,FORMATION,TX,10/12/2007 22:30 +Rogers,,,AR,10/12/2007 23:00 +Dingmans Ferry,,TRIANGLE,PA,10/12/2007 23:30 +Hudson,,SPHERE,WI,10/13/2007 0:00 +VanCleave,RED YELLOW GREEN BLUE,,MS,10/13/2007 1:30 +Katy,,TRIANGLE,TX,10/13/2007 7:45 +Henderson,,VARIOUS,NV,10/13/2007 8:35 +Fairfax,,SPHERE,VA,10/13/2007 11:15 +Ashland,GREEN BLUE,LIGHT,OR,10/13/2007 15:30 +Los Angeles,,CIGAR,CA,10/13/2007 17:30 +Marysville,,CIGAR,WA,10/13/2007 18:30 +Mooresville,ORANGE,LIGHT,NC,10/13/2007 20:28 +Kennewick,,CYLINDER,WA,10/13/2007 22:00 +Irvine,,DISK,CA,10/13/2007 22:40 +Seattle,,,WA,10/13/2007 23:00 +Westfir,,,OR,10/14/2007 0:40 +Birch Bay,,CIGAR,WA,10/14/2007 10:20 +Las Vegas,,LIGHT,NV,10/14/2007 15:00 +Honolulu,,LIGHT,HI,10/14/2007 16:00 +Redondo Beach,RED,CIRCLE,CA,10/14/2007 16:00 +Barbourville,RED GREEN,OVAL,KY,10/14/2007 20:30 +Little Rock,,VARIOUS,AR,10/14/2007 21:14 +Surprise,,OTHER,AZ,10/14/2007 21:25 +Blairstown,,TRIANGLE,NJ,10/14/2007 21:50 +Chicago,,CIRCLE,IL,10/15/2007 0:00 +Heber,,FIREBALL,AZ,10/15/2007 2:00 +Virginia Beach,ORANGE GREEN,SPHERE,VA,10/15/2007 3:00 +Colorado Springs,BLUE,,CO,10/15/2007 7:10 +Waterford,,,MI,10/15/2007 10:30 +Sacramento,,SPHERE,CA,10/15/2007 13:00 +Worcester,,CIRCLE,MA,10/15/2007 15:00 +Aurora,,SPHERE,CO,10/15/2007 16:00 +New York City,,TEARDROP,NY,10/15/2007 18:00 +Columbia,,DISK,MO,10/15/2007 18:58 +Bremerton,,LIGHT,WA,10/15/2007 19:45 +Wolf Point,,FIREBALL,MT,10/15/2007 20:00 +Mission,ORANGE,LIGHT,SD,10/15/2007 21:00 +Myrtle Beach,RED,LIGHT,SC,10/15/2007 21:30 +Wichita,,FORMATION,KS,10/15/2007 21:45 +Lincoln Beach,,OTHER,OR,10/15/2007 22:30 +Tucson,,LIGHT,AZ,10/15/2007 23:30 +Wheaton,,LIGHT,MD,10/16/2007 6:55 +Ridgefield,,SPHERE,CT,10/16/2007 14:25 +Kingston,,LIGHT,NY,10/16/2007 15:00 +Southbridge,,DISK,MA,10/16/2007 19:00 +Utica,,TRIANGLE,NY,10/16/2007 19:30 +Gulf Of Mexico,,OVAL,TX,10/16/2007 20:00 +Marysville,,LIGHT,WA,10/16/2007 21:10 +Cape Canaveral,,OVAL,FL,10/17/2007 8:23 +Van Nuys,,CIRCLE,CA,10/17/2007 15:07 +Chicago,,CROSS,IL,10/17/2007 20:00 +Clinton,,TRIANGLE,NJ,10/17/2007 22:00 +Austin,,LIGHT,TX,10/17/2007 22:30 +Livermore,,TRIANGLE,CA,10/17/2007 23:45 +Los Angeles,,CIRCLE,CA,10/18/2007 15:00 +Hendersonvlle,,TRIANGLE,TN,10/18/2007 21:30 +Myrtle Beach,RED,OTHER,SC,10/18/2007 21:30 +Myrtle Beach,,LIGHT,SC,10/18/2007 21:45 +Keller,,LIGHT,TX,10/18/2007 23:15 +Joshua,,,TX,10/19/2007 0:00 +Keller,,,TX,10/19/2007 0:00 +Brule,RED BLUE,CIRCLE,WI,10/19/2007 2:00 +"Hwy 168, Bristle Cone Pine Forrest",,SPHERE,CA,10/19/2007 12:50 +Banks,,SPHERE,OR,10/19/2007 15:00 +Phoenix,RED,LIGHT,AZ,10/19/2007 16:45 +Boca Raton,,OVAL,FL,10/19/2007 18:30 +North Richland Hills,ORANGE,TEARDROP,TX,10/19/2007 19:00 +Keller,,FIREBALL,TX,10/19/2007 19:20 +Southlake,,FIREBALL,TX,10/19/2007 19:30 +Keller,,FIREBALL,TX,10/19/2007 19:34 +Roanoke,,,TX,10/19/2007 19:35 +Keller,,LIGHT,TX,10/19/2007 19:45 +Keller,,FIREBALL,TX,10/19/2007 20:00 +Clinton Township,,DISK,MI,10/19/2007 21:14 +Irving,RED,LIGHT,TX,10/19/2007 22:00 +Danville,RED,CHEVRON,CA,10/19/2007 22:30 +Council Bluffs,,CHEVRON,IA,10/20/2007 0:24 +Opal,,,WY,10/20/2007 1:00 +Peoria,,CHEVRON,IL,10/20/2007 2:30 +Fracisville,,,LA,10/20/2007 2:45 +Point Mugu,ORANGE,SPHERE,CA,10/20/2007 4:00 +Rock Creek Lake,,LIGHT,CA,10/20/2007 6:00 +Buckhead,,LIGHT,GA,10/20/2007 9:20 +Sacramento,,CIGAR,CA,10/20/2007 12:05 +Lamoni,,,IA,10/20/2007 13:00 +Houston,,OTHER,TX,10/20/2007 14:00 +Hayward,,LIGHT,CA,10/20/2007 20:00 +Rock Falls,GREEN,LIGHT,WI,10/20/2007 20:00 +Crown Hill,BLUE,TRIANGLE,WV,10/20/2007 20:20 +Cincinnati,,DISK,OH,10/20/2007 20:30 +Ellinwood,,DISK,KS,10/20/2007 21:00 +Glencoe,,LIGHT,MN,10/20/2007 21:00 +Grand Rapids,RED,CIRCLE,MI,10/20/2007 21:00 +Ft. Thompson,,LIGHT,SD,10/20/2007 21:30 +Pittsfield,RED GREEN,TRIANGLE,IL,10/20/2007 21:55 +Columbia,RED,TRIANGLE,MO,10/20/2007 22:00 +Highland County - Monterey,,LIGHT,VA,10/20/2007 22:30 +Haslett,,LIGHT,MI,10/20/2007 23:00 +Las Vegas,,SPHERE,NV,10/20/2007 23:30 +Zebulon,,DISK,NC,10/21/2007 0:00 +Spring Lake Park,,CHEVRON,MN,10/21/2007 0:54 +Maysville,,LIGHT,KY,10/21/2007 1:00 +Sanborn,,,NY,10/21/2007 1:00 +Mooresville,,,NC,10/21/2007 2:00 +Rochester Hills,,LIGHT,MI,10/21/2007 2:00 +Holden,,DIAMOND,LA,10/21/2007 2:45 +Daphne,,DISK,AL,10/21/2007 3:00 +Eau Claire,,FORMATION,WI,10/21/2007 4:00 +Elk Grove,,SPHERE,CA,10/21/2007 13:55 +Dawsonville,BLUE,OTHER,GA,10/21/2007 14:00 +South Amboy,,SPHERE,NJ,10/21/2007 16:30 +Kingsport,,CIRCLE,TN,10/21/2007 17:08 +Stoney Creek Metropark ?,,OTHER,MI,10/21/2007 18:00 +Castile,,TEARDROP,NY,10/21/2007 18:30 +Bucksport,,SPHERE,ME,10/21/2007 19:00 +Chicago,,LIGHT,IL,10/21/2007 20:00 +Hagerstown,,FLASH,MD,10/21/2007 21:40 +Morganton,,OVAL,GA,10/21/2007 22:00 +Buford,,FLASH,GA,10/22/2007 1:00 +Ocala,,OVAL,FL,10/22/2007 1:00 +McKinney,,OTHER,TX,10/22/2007 5:00 +Farmington,,TRIANGLE,MO,10/22/2007 6:30 +Chisholm,,TRIANGLE,MN,10/22/2007 18:45 +Hurley,,OTHER,SD,10/22/2007 20:00 +Stephan,ORANGE,LIGHT,SD,10/22/2007 20:30 +Monterey,,LIGHT,CA,10/22/2007 21:00 +Cameron Park,,LIGHT,CA,10/22/2007 21:40 +Hillsborough,,TRIANGLE,NJ,10/22/2007 23:00 +Wellington,,LIGHT,KS,10/23/2007 0:00 +Overland Park,ORANGE,TRIANGLE,KS,10/23/2007 3:00 +Orlando,,LIGHT,FL,10/23/2007 5:20 +Las Vegas,,OTHER,NV,10/23/2007 6:27 +Warner Robins,,SPHERE,GA,10/23/2007 6:50 +Everett,,TEARDROP,WA,10/23/2007 7:30 +Bozeman,,SPHERE,MT,10/23/2007 9:30 +Williamsville,,TRIANGLE,NY,10/23/2007 11:30 +Merritt Island,,LIGHT,FL,10/23/2007 11:39 +Brentwood,,OVAL,NY,10/23/2007 13:30 +Hemet,,,CA,10/23/2007 14:00 +Hanford,,CYLINDER,CA,10/23/2007 15:30 +Kansas City,,CIRCLE,KS,10/23/2007 17:00 +Medford,,,OR,10/23/2007 20:30 +Baton Rouge,,OVAL,LA,10/23/2007 20:40 +Londonderry,,LIGHT,NH,10/23/2007 20:55 +Casselberry,,LIGHT,FL,10/24/2007 5:28 +Kenosha,GREEN,,WI,10/24/2007 5:30 +Shepherd,,TRIANGLE,TX,10/24/2007 5:35 +New York City,,FORMATION,NY,10/24/2007 6:12 +Lake Havasu City,,CIRCLE,AZ,10/24/2007 6:15 +Warner Robins,,LIGHT,GA,10/24/2007 6:55 +Columbus,,SPHERE,NE,10/24/2007 17:25 +Garden City,,EGG,KS,10/24/2007 18:00 +Turkey Ridge,ORANGE,RECTANGLE,SD,10/24/2007 20:25 +Marietta,,CIRCLE,GA,10/24/2007 20:30 +no data,,SPHERE,SD,10/24/2007 21:05 +Eagle Pass,,OVAL,TX,10/24/2007 21:20 +Roca,,RECTANGLE,NE,10/24/2007 21:35 +Defiance,,TRIANGLE,OH,10/25/2007 2:50 +Tinker AFB,,,OK,10/25/2007 3:00 +"Sioux Falls, SD",,,SD,10/25/2007 8:00 +Eugene,,CYLINDER,OR,10/25/2007 14:00 +Philadelphia,,OVAL,PA,10/25/2007 16:00 +Keene,,TRIANGLE,TX,10/25/2007 17:00 +"Rapid City, Sioux Falls",,,SD,10/25/2007 17:00 +Arlington,,LIGHT,TX,10/25/2007 19:15 +Denver,,VARIOUS,CO,10/25/2007 19:36 +Wood Lake,,LIGHT,NE,10/25/2007 19:50 +Battle Creek,,TRIANGLE,MI,10/25/2007 20:30 +Monterey,,CYLINDER,CA,10/25/2007 20:30 +Marion,,LIGHT,IA,10/25/2007 22:30 +Oregon City,,,OR,10/26/2007 0:00 +Duluth,GREEN,OVAL,MN,10/26/2007 4:30 +Otis,,OVAL,ME,10/26/2007 5:00 +Battle Ground,,FIREBALL,WA,10/26/2007 18:55 +Seattle,,FORMATION,WA,10/26/2007 18:55 +Waukesha,,LIGHT,WI,10/26/2007 20:15 +Nashville,,FORMATION,TN,10/26/2007 20:18 +Tarpon Springs,,LIGHT,FL,10/26/2007 20:30 +San Antonio,,FIREBALL,TX,10/26/2007 21:00 +Albuquerque,ORANGE,LIGHT,NM,10/26/2007 23:06 +Hilliard,,CHEVRON,OH,10/26/2007 23:52 +League City,,OVAL,TX,10/27/2007 1:00 +Keller,,OVAL,TX,10/27/2007 13:00 +San Diego,,LIGHT,CA,10/27/2007 19:48 +Tampa,,DISK,FL,10/27/2007 20:00 +Santa Fe,,FLASH,NM,10/27/2007 23:00 +Overland Park,ORANGE,TRIANGLE,KS,10/28/2007 1:00 +Las Vegas,,,NV,10/28/2007 1:17 +Michigan City,,OTHER,IN,10/28/2007 3:26 +Darrington,,LIGHT,WA,10/28/2007 5:00 +New York City,,LIGHT,NY,10/28/2007 5:00 +Bellevue,,OVAL,WA,10/28/2007 6:17 +Hendersonville,,OVAL,TN,10/28/2007 16:05 +Bolingbrook,,LIGHT,IL,10/28/2007 17:30 +Chicago Heights,,DISK,IL,10/28/2007 18:00 +Chicago,,LIGHT,IN,10/28/2007 19:30 +Moundsville,,DISK,WV,10/28/2007 20:00 +Tacoma,,LIGHT,WA,10/28/2007 20:00 +Tarentum,,LIGHT,PA,10/28/2007 20:25 +Leicester,,DISK,NC,10/28/2007 20:42 +Fort Riley,,TRIANGLE,KS,10/28/2007 21:30 +Nacogdoches,,CHEVRON,TX,10/28/2007 21:30 +Margaretville,,CIRCLE,NY,10/28/2007 23:15 +Newark,,,DE,10/29/2007 4:30 +Littleton,ORANGE,FLASH,CO,10/29/2007 5:00 +Las Vegas,,LIGHT,NV,10/29/2007 5:25 +Calhoun,,CIRCLE,GA,10/29/2007 5:45 +Sterling Heights,RED GREEN,TRIANGLE,MI,10/29/2007 6:50 +Sioux Falls,,OVAL,SD,10/29/2007 8:30 +Emeryville,,CIRCLE,CA,10/29/2007 16:50 +Monte Nido,,CIGAR,CA,10/29/2007 17:30 +Torrance,,CYLINDER,CA,10/29/2007 17:45 +Palatka,,RECTANGLE,FL,10/29/2007 18:30 +Bryson,,LIGHT,CA,10/29/2007 19:40 +Bedford,,TRIANGLE,NY,10/29/2007 20:53 +Frankfort,RED BLUE,CIRCLE,KY,10/29/2007 21:20 +Knoxville,,LIGHT,TN,10/29/2007 22:11 +Bolton,RED,FIREBALL,NY,10/30/2007 2:00 +Pickens,,CIGAR,SC,10/30/2007 10:00 +Table Rock,,CIGAR,SC,10/30/2007 11:00 +Pickens,,CYLINDER,SC,10/30/2007 11:15 +Dover,,TRIANGLE,PA,10/30/2007 17:00 +New York City,,OVAL,NY,10/30/2007 17:05 +Irvine,,VARIOUS,CA,10/30/2007 17:15 +Las Vegas,,DISK,NV,10/30/2007 18:27 +Reading`,,CIRCLE,PA,10/30/2007 18:35 +Fernandina Beach,,LIGHT,FL,10/30/2007 19:55 +Holdenville,,LIGHT,OK,10/30/2007 21:00 +Quartzsite,,TRIANGLE,AZ,10/30/2007 21:00 +Chicoe,,LIGHT,CA,10/30/2007 23:44 +Iowa Park,,TRIANGLE,TX,10/30/2007 23:45 +Saint Paul,,LIGHT,MN,10/31/2007 2:15 +Highland,GREEN,FIREBALL,NY,10/31/2007 2:45 +Middle Island,,FIREBALL,NY,10/31/2007 3:00 +Milton,,CIGAR,VT,10/31/2007 7:25 +Colorado Springs,,DISK,CO,10/31/2007 20:50 +Lombard,,,IL,10/31/2007 21:55 +Plymouth,,LIGHT,MA,11/1/2007 2:45 +Smyrna,,LIGHT,DE,11/1/2007 4:00 +Blue Springs,,DISK,MO,11/1/2007 8:37 +Blue Springs,,DISK,MO,11/1/2007 8:37 +Lafayette,BLUE,RECTANGLE,LA,11/1/2007 10:00 +Seal Rock,,,OR,11/1/2007 14:30 +Topsfield,,DISK,MA,11/1/2007 18:00 +Erving,,TRIANGLE,MA,11/1/2007 18:40 +Kit Carson,YELLOW,OTHER,CO,11/1/2007 19:20 +Hertford,,LIGHT,NC,11/1/2007 19:30 +San Rafael,,VARIOUS,CA,11/1/2007 19:30 +Jacksonville,RED BLUE,LIGHT,FL,11/1/2007 20:00 +Pleasanton,,DISK,CA,11/1/2007 20:00 +Pleasanton,,DISK,CA,11/1/2007 20:40 +Newport Beach,,CIRCLE,CA,11/1/2007 20:45 +Hazard,RED,TRIANGLE,KY,11/1/2007 21:00 +Leslie County,,TRIANGLE,KY,11/1/2007 21:00 +Wooten,RED,TRIANGLE,KY,11/1/2007 21:00 +Las Cruces,,OVAL,NM,11/1/2007 22:00 +St. Louis,,FLASH,MO,11/1/2007 22:00 +Franklin Park,,VARIOUS,IL,11/1/2007 23:35 +Mars Hill,GREEN,CIRCLE,NC,11/1/2007 23:45 +Normal,,DISK,IL,11/2/2007 1:00 +New Port Richey,,OTHER,FL,11/2/2007 2:35 +San Antonio,,CHEVRON,TX,11/2/2007 3:59 +Freehold,,TRIANGLE,NJ,11/2/2007 7:00 +Beaver,,VARIOUS,PA,11/2/2007 16:12 +Ely,,CIGAR,MN,11/2/2007 18:33 +Indio,RED,FIREBALL,CA,11/2/2007 19:20 +Discovery Bay,,OTHER,CA,11/2/2007 20:15 +Discovery Bay,,OTHER,CA,11/2/2007 20:15 +Rocklin,,LIGHT,CA,11/2/2007 20:46 +Eagle Mountain,,TRIANGLE,UT,11/2/2007 21:00 +Powder Springs,,TRIANGLE,GA,11/2/2007 21:05 +Gig Harbor,,TRIANGLE,WA,11/2/2007 21:15 +Hershey,,LIGHT,NE,11/2/2007 22:25 +Hyannis,,DIAMOND,MA,11/2/2007 23:00 +Santa Margarita,RED BLUE,DISK,CA,11/2/2007 23:00 +Omaha,,OTHER,NE,11/2/2007 23:52 +McDonough,,OVAL,GA,11/3/2007 0:00 +Alice,,SPHERE,TX,11/3/2007 3:00 +San Francisco,,OTHER,CA,11/3/2007 5:50 +Cimarron,,OTHER,KS,11/3/2007 9:40 +Grand Rapids,BLUE,RECTANGLE,OH,11/3/2007 14:30 +New York City,RED,CYLINDER,NY,11/3/2007 15:20 +Portland,,,OR,11/3/2007 19:12 +Benson,,TRIANGLE,NC,11/3/2007 19:30 +Corona,,OTHER,CA,11/3/2007 19:30 +Lake Worth,,TRIANGLE,FL,11/3/2007 19:40 +Mullia Hill,,TRIANGLE,NJ,11/3/2007 21:30 +Land O'Lakes,,,FL,11/3/2007 23:00 +Chicago,,LIGHT,IL,11/4/2007 0:00 +Powell,,TRIANGLE,WY,11/4/2007 0:40 +Silverton,,TRIANGLE,OR,11/4/2007 2:00 +New Rochelle,,LIGHT,NY,11/4/2007 4:25 +Bunnell,,OTHER,FL,11/4/2007 5:00 +Ocilla,BLUE,FLASH,GA,11/4/2007 5:00 +Quincy,,LIGHT,CA,11/4/2007 5:23 +Wesley Chapel,,OVAL,FL,11/4/2007 8:58 +Cedar Falls,,CIRCLE,IA,11/4/2007 10:00 +no data,,TRIANGLE,TX,11/4/2007 16:00 +Salem,,CYLINDER,OR,11/4/2007 16:00 +Parkland,,RECTANGLE,WA,11/4/2007 17:30 +Lubbock,RED,TEARDROP,TX,11/4/2007 20:15 +Corona del Mar,,CIRCLE,CA,11/4/2007 20:45 +Corona del Mar,,OVAL,CA,11/4/2007 20:45 +Fullerton,,FIREBALL,CA,11/4/2007 21:55 +Louisville,,SPHERE,KY,11/5/2007 0:00 +Midwest City,,CONE,OK,11/5/2007 0:00 +Montpelier,,LIGHT,OH,11/5/2007 2:30 +White Bluff,,,TN,11/5/2007 5:20 +Youngsville,,CIGAR,NM,11/5/2007 5:30 +Madera,,LIGHT,CA,11/5/2007 5:55 +Lincoln,YELLOW,SPHERE,CA,11/5/2007 6:00 +Louisville,,VARIOUS,KY,11/5/2007 6:00 +Norman,,OTHER,OK,11/5/2007 6:00 +Bishop,,OTHER,CA,11/5/2007 6:08 +Kansas City,,CIRCLE,KS,11/5/2007 11:00 +Western Springs,,OTHER,IL,11/5/2007 12:28 +Lincolnton,,CIGAR,NC,11/5/2007 13:00 +Lower Lake,,RECTANGLE,CA,11/5/2007 18:18 +Mount Vernon,,CIRCLE,WA,11/5/2007 19:00 +Westminster,,OTHER,CO,11/5/2007 19:00 +Springfield,,CIRCLE,IL,11/5/2007 19:41 +Anchorage,,TRIANGLE,AK,11/5/2007 20:30 +Tonopah,RED,CIGAR,NV,11/5/2007 21:00 +Colorado Springs,,TRIANGLE,CO,11/5/2007 22:00 +Savannah,,FORMATION,GA,11/5/2007 22:30 +Alexandria,,TRIANGLE,VA,11/5/2007 23:00 +Auburn,RED,TRIANGLE,MI,11/5/2007 23:00 +White Sand Missile Range,,SPHERE,NM,11/6/2007 3:40 +Bowling Green,,LIGHT,KY,11/6/2007 5:10 +Chicago,,DISK,IL,11/6/2007 5:38 +Louisville,,LIGHT,KY,11/6/2007 6:30 +Orlando,,CYLINDER,FL,11/6/2007 14:00 +Sea Isle City,,SPHERE,NJ,11/6/2007 17:10 +Brooksville,,,FL,11/6/2007 17:45 +Providence,YELLOW,LIGHT,RI,11/6/2007 18:00 +Goodyear,,VARIOUS,AZ,11/6/2007 19:30 +Tarzana,,FLASH,CA,11/6/2007 20:30 +Cedar,,VARIOUS,UT,11/6/2007 20:55 +Grand Haven,,TRIANGLE,MI,11/7/2007 4:10 +San Jose,,DISK,CA,11/7/2007 17:20 +Morgan Hill,,FIREBALL,CA,11/7/2007 17:30 +Burbank,,TRIANGLE,CA,11/7/2007 18:04 +Rancho Santa Margarita,BLUE,CIRCLE,CA,11/7/2007 18:15 +Edina,,DISK,MN,11/7/2007 20:00 +Springfield,,TRIANGLE,OH,11/7/2007 20:25 +Goshen,,TRIANGLE,NY,11/7/2007 22:00 +Andover,,LIGHT,MN,11/7/2007 22:30 +Mesa,,OTHER,AZ,11/8/2007 20:30 +Baytown,,TRIANGLE,TX,11/8/2007 20:34 +Cleveland,,LIGHT,OH,11/8/2007 21:30 +Lancaster,YELLOW,FIREBALL,PA,11/8/2007 22:00 +Omaha,RED BLUE,FORMATION,NE,11/8/2007 22:00 +Silver Spring,GREEN,FIREBALL,MD,11/8/2007 22:00 +Crete,,FLASH,IL,11/8/2007 22:10 +Emmaus,,CIRCLE,PA,11/8/2007 22:11 +Highspire,GREEN,FIREBALL,PA,11/8/2007 22:15 +Newark,BLUE,FIREBALL,DE,11/8/2007 22:28 +El Cajon,,FORMATION,CA,11/8/2007 23:00 +Mobile,,FIREBALL,AL,11/8/2007 23:15 +Aztec,,FIREBALL,NM,11/8/2007 23:30 +Aiken,,CIGAR,SC,11/9/2007 1:30 +Eldorado,,CIGAR,TX,11/9/2007 13:30 +Indian Trail,RED,LIGHT,NC,11/9/2007 18:30 +Destin,,RECTANGLE,FL,11/9/2007 19:00 +Summerland Key,,,FL,11/9/2007 19:45 +Frisco,ORANGE,CHEVRON,TX,11/9/2007 20:30 +Franklin Furnace,,LIGHT,OH,11/9/2007 22:00 +Redondo Beach,RED,FORMATION,CA,11/9/2007 22:00 +Westboro,,FLASH,MO,11/9/2007 22:00 +Los Angeles,RED,FORMATION,CA,11/9/2007 22:30 +Redding,RED,,CA,11/9/2007 22:45 +Bartlett,,CHEVRON,TN,11/9/2007 23:00 +Galt,,FIREBALL,CA,11/10/2007 0:30 +Pleasant Hill,,,CA,11/10/2007 1:14 +Roanoke,,,VA,11/10/2007 1:15 +Pasadena,,OTHER,CA,11/10/2007 5:30 +Canyon Lake,,TRIANGLE,TX,11/10/2007 9:30 +Springfield,,LIGHT,VA,11/10/2007 12:30 +Simpsonville,,OTHER,SC,11/10/2007 18:00 +Jacksonville,,FIREBALL,FL,11/10/2007 20:00 +Jacksonville,,OVAL,FL,11/10/2007 20:00 +Stuart,,,FL,11/10/2007 20:30 +San Diego,ORANGE,CIRCLE,CA,11/10/2007 20:45 +Sebastian,,LIGHT,FL,11/10/2007 21:00 +La Conner,,CIGAR,WA,11/10/2007 21:30 +Palm Beach Gardens,,LIGHT,FL,11/10/2007 22:00 +Lakeville,,DISK,MA,11/10/2007 23:00 +Lynnfield,,OVAL,MA,11/10/2007 23:00 +Las Vegas,,TRIANGLE,NV,11/10/2007 23:50 +Boston,,LIGHT,MA,11/11/2007 0:00 +San Antonio,,,TX,11/11/2007 3:00 +Springfield,,FLASH,VA,11/11/2007 13:34 +Spokane Valley,,OTHER,WA,11/11/2007 16:04 +Royal Palm Beach,,LIGHT,FL,11/11/2007 18:00 +Dublin,,LIGHT,CA,11/11/2007 19:00 +Twin Falls,,,ID,11/11/2007 20:05 +Lompoc,,CYLINDER,CA,11/11/2007 20:15 +Cut Bank,RED,SPHERE,MT,11/11/2007 21:45 +Acworth,,SPHERE,GA,11/11/2007 21:50 +Kemah,RED GREEN,OVAL,TX,11/12/2007 3:30 +Adairsville,,CIRCLE,GA,11/12/2007 4:30 +Savannah,,CIRCLE,GA,11/12/2007 9:20 +Live Oak,,EGG,FL,11/12/2007 13:00 +East Fishkill,,FLASH,NY,11/12/2007 16:38 +Kingman,,LIGHT,AZ,11/12/2007 18:00 +Irvine,BLUE,CIRCLE,CA,11/12/2007 19:00 +Lake Havasu City,,SPHERE,AZ,11/12/2007 19:00 +Pass Christian,RED,LIGHT,MS,11/12/2007 20:30 +Sumter,,LIGHT,SC,11/12/2007 20:30 +Fullerton,ORANGE,CONE,CA,11/12/2007 20:45 +San Diego,,DISK,CA,11/12/2007 21:00 +Stillwater,,FORMATION,OK,11/12/2007 21:20 +Ka'anapali,,CIRCLE,HI,11/12/2007 22:00 +Elk Grove,YELLOW,OTHER,CA,11/12/2007 22:30 +Montebello,RED BLUE,SPHERE,CA,11/12/2007 22:45 +Palm Springs,,OTHER,CA,11/12/2007 23:00 +McDonough,,DIAMOND,GA,11/13/2007 0:00 +Lincoln City,,OVAL,OR,11/13/2007 2:30 +Peach Tree City,,DISK,GA,11/13/2007 5:00 +Cathedral City,,,CA,11/13/2007 7:15 +San Diego,BLUE,OTHER,CA,11/13/2007 18:00 +San Diego,,TRIANGLE,CA,11/13/2007 18:50 +San Diego,,TRIANGLE,CA,11/13/2007 19:10 +Everett,ORANGE,OTHER,WA,11/13/2007 20:00 +Guthrie,,DISK,OK,11/13/2007 20:00 +Shoreline,GREEN,FIREBALL,WA,11/13/2007 20:00 +Lake Worth,,,TX,11/13/2007 20:20 +San Marcos,RED,FORMATION,CA,11/13/2007 20:30 +Sumrall,,TRIANGLE,MS,11/13/2007 20:45 +Sedona,RED,LIGHT,AZ,11/13/2007 21:00 +Sweeny,,LIGHT,TX,11/13/2007 21:00 +Los Angeles,,,CA,11/13/2007 22:22 +Lincoln,,VARIOUS,NE,11/13/2007 23:45 +Claverack,,CROSS,NY,11/14/2007 3:38 +Gulfport,GREEN,FIREBALL,MS,11/14/2007 17:30 +San Diego,RED ORANGE,CIRCLE,CA,11/14/2007 17:34 +San Diego,RED,VARIOUS,CA,11/14/2007 20:17 +Biloxi,,TRIANGLE,MS,11/14/2007 20:30 +Monterey,,TRIANGLE,CA,11/14/2007 20:30 +Savannah,RED,CIRCLE,GA,11/14/2007 21:30 +La Crescenta,,CIRCLE,CA,11/14/2007 22:30 +Wichita,,TRIANGLE,KS,11/14/2007 23:00 +Staunton,,OTHER,VA,11/15/2007 2:00 +Scranton,RED GREEN,DISK,PA,11/15/2007 3:00 +Richmond Hill,,VARIOUS,GA,11/15/2007 6:13 +Lafayette,,FORMATION,LA,11/15/2007 9:19 +Albuquerque,,LIGHT,NM,11/15/2007 13:15 +Rome,,TRIANGLE,GA,11/15/2007 18:45 +Sacramento,,CIGAR,CA,11/15/2007 19:00 +Sandy Hook,RED,SPHERE,MS,11/15/2007 19:00 +Hurst,,CIRCLE,TX,11/15/2007 21:00 +Jessup,RED GREEN,LIGHT,GA,11/15/2007 21:00 +Terre Haute,,VARIOUS,IN,11/15/2007 22:30 +Attleboro,,DISK,MA,11/15/2007 23:00 +Braintree,,CIRCLE,VT,11/15/2007 23:30 +Madison,,CIRCLE,VA,11/16/2007 13:30 +Detroit,,OTHER,MI,11/16/2007 15:15 +Plano,,,TX,11/16/2007 16:30 +Delran,,CIRCLE,NJ,11/16/2007 17:30 +Blue Springs,,LIGHT,MO,11/16/2007 18:45 +Chillicothe,RED ORANGE,FIREBALL,OH,11/16/2007 19:00 +Rogers,RED,LIGHT,AR,11/16/2007 20:15 +Lowell,,CHEVRON,AR,11/16/2007 21:30 +Wauwatosa,GREEN,FIREBALL,WI,11/17/2007 1:30 +New York City,,FIREBALL,NY,11/17/2007 1:43 +Sebastopol,BLUE,OTHER,CA,11/17/2007 17:30 +Bartow,,LIGHT,FL,11/17/2007 18:30 +Lake Wales,ORANGE,CIRCLE,FL,11/17/2007 18:30 +Winter Haven,,LIGHT,FL,11/17/2007 18:30 +Lakeland,RED,VARIOUS,FL,11/17/2007 19:00 +Winter Haven,,OVAL,FL,11/17/2007 19:30 +Monee,,,IL,11/17/2007 20:15 +Chevy Chase,,LIGHT,MD,11/18/2007 0:47 +Rochester,,FIREBALL,NY,11/18/2007 3:30 +Palm Springs,,TRIANGLE,CA,11/18/2007 16:30 +Pittsboro,GREEN,OTHER,NC,11/18/2007 18:15 +Lake Wales,,FIREBALL,FL,11/18/2007 20:00 +Palestine,,TEARDROP,TX,11/18/2007 21:00 +Grapevine,,TRIANGLE,TX,11/18/2007 21:45 +Buffalo,,LIGHT,NY,11/18/2007 22:00 +Huntsville,,LIGHT,AL,11/19/2007 4:00 +Kennebec,,TRIANGLE,SD,11/19/2007 6:30 +Coto de Caza,ORANGE BLUE,OTHER,CA,11/19/2007 15:30 +Modesto,,OTHER,CA,11/19/2007 17:30 +Plano,,LIGHT,TX,11/19/2007 19:00 +Death Valley,,OVAL,CA,11/20/2007 12:00 +Reno,,TRIANGLE,NV,11/20/2007 17:15 +Bell Buckle,,,TN,11/20/2007 20:00 +New River,,LIGHT,AZ,11/20/2007 20:00 +Fort Pierce,,LIGHT,FL,11/20/2007 23:11 +St. Marys,,,GA,11/20/2007 23:45 +Huntington Station,,CIRCLE,NY,11/21/2007 0:55 +Carmichael,RED GREEN BLUE,FLASH,CA,11/21/2007 5:00 +Gastonia,,DIAMOND,NC,11/21/2007 5:30 +Enon,,TRIANGLE,OH,11/21/2007 9:47 +Denton,,CIRCLE,TX,11/21/2007 10:00 +San Diego,,CIRCLE,CA,11/21/2007 20:15 +Clearwater,,CIGAR,FL,11/21/2007 21:00 +Seligman,,,AZ,11/22/2007 0:00 +Sommerset,,CYLINDER,OH,11/22/2007 12:00 +Wellington,,CHEVRON,FL,11/22/2007 12:45 +Land O'Lakes,,LIGHT,FL,11/22/2007 19:00 +Pennsauken,,OVAL,NJ,11/22/2007 19:00 +Delran,RED,OVAL,NJ,11/22/2007 20:00 +Lewes,,,DE,11/22/2007 21:00 +Lewes,,LIGHT,DE,11/22/2007 21:00 +Wawina,,VARIOUS,MN,11/22/2007 23:15 +Grove,,CIRCLE,OK,11/23/2007 3:00 +New York City,,CIRCLE,NY,11/23/2007 4:30 +Battle Ground,,LIGHT,WA,11/23/2007 5:00 +Fort Washington,BLUE,,PA,11/23/2007 11:35 +Interstate 84 eastbound; Exit 147,,VARIOUS,OR,11/23/2007 15:25 +Chantilly,,OTHER,VA,11/23/2007 16:50 +San Diego,,FORMATION,CA,11/23/2007 19:00 +San Diego,,FORMATION,CA,11/23/2007 19:45 +Cedar Rapids,,TRIANGLE,IA,11/23/2007 22:03 +East Falmouth,,OTHER,MA,11/23/2007 22:30 +Corona,,LIGHT,CA,11/23/2007 22:37 +New York City,,LIGHT,NY,11/23/2007 23:00 +Lake Havasu City,,CIRCLE,AZ,11/24/2007 1:00 +North Bergen,,LIGHT,NJ,11/24/2007 1:45 +Mountain House,,CIRCLE,CA,11/24/2007 5:22 +Mission Hills,,CIGAR,CA,11/24/2007 7:00 +San Diego,RED ORANGE,LIGHT,CA,11/24/2007 20:45 +Winnemucca,,LIGHT,NV,11/25/2007 7:30 +Wyoming,,LIGHT,RI,11/25/2007 21:00 +St. Augustine,,OVAL,FL,11/25/2007 21:30 +Pauls Valley,,,OK,11/25/2007 22:10 +Tacoma,,LIGHT,WA,11/25/2007 22:20 +Tacoma,ORANGE,LIGHT,WA,11/25/2007 22:20 +Chino,,LIGHT,CA,11/26/2007 4:30 +Islip,,FLASH,NY,11/26/2007 17:18 +Houston,,OTHER,TX,11/26/2007 19:00 +East Dublin,,,GA,11/26/2007 20:45 +Buena Park,ORANGE,FIREBALL,CA,11/26/2007 20:50 +Houston,BLUE,DISK,TX,11/26/2007 21:15 +Suwanee,,LIGHT,GA,11/27/2007 1:30 +Rockdale,,TRIANGLE,TX,11/27/2007 6:00 +Winter Park,,,FL,11/27/2007 7:34 +Chippewa Falls,,FIREBALL,WI,11/27/2007 10:00 +Tipton,ORANGE,LIGHT,MO,11/27/2007 18:00 +Colorado Springs,GREEN,LIGHT,CO,11/27/2007 18:40 +Lumberton,,LIGHT,TX,11/27/2007 19:30 +Rabun Gap,,LIGHT,GA,11/27/2007 21:10 +San Diego area,BLUE,,CA,11/27/2007 21:30 +Chicago,,FIREBALL,IL,11/27/2007 22:00 +Mundelein,,DISK,IL,11/27/2007 23:00 +Pearland,,SPHERE,TX,11/27/2007 23:00 +Mount Pleasant,,OTHER,MI,11/28/2007 0:03 +San Diego,,CIRCLE,CA,11/28/2007 2:00 +Gainesville,,,GA,11/28/2007 2:40 +Austin,,OVAL,TX,11/28/2007 9:15 +Mount Vernon,,LIGHT,MO,11/28/2007 9:45 +Charleroi,,CIRCLE,PA,11/28/2007 11:00 +Kings Mountain,,DIAMOND,NC,11/28/2007 17:45 +Danbury,,DIAMOND,CT,11/28/2007 19:05 +Warwood,,FORMATION,WV,11/28/2007 20:30 +Williamston,,LIGHT,SC,11/28/2007 21:00 +Greencastle,,,PA,11/28/2007 21:30 +Boiling Springs,,TRIANGLE,PA,11/28/2007 23:00 +Modesto,,LIGHT,CA,11/29/2007 0:00 +Bloomington,,FORMATION,IL,11/29/2007 1:05 +Cocoa Beach,ORANGE,LIGHT,FL,11/29/2007 3:00 +Duluth,,DISK,MN,11/29/2007 4:00 +Kirtland,BLUE,CIRCLE,OH,11/29/2007 5:45 +Aurora,,,CO,11/29/2007 12:34 +Stanislaus,,LIGHT,CA,11/29/2007 17:45 +Attleboro,,OTHER,MA,11/29/2007 18:45 +Boise,,LIGHT,ID,11/29/2007 18:50 +Fayetteville,,LIGHT,AR,11/29/2007 19:15 +Glen Burnie,,CHEVRON,MD,11/29/2007 20:45 +Taft,,VARIOUS,CA,11/30/2007 0:00 +Monroe,,LIGHT,WA,11/30/2007 2:25 +North Palm Beach,,OTHER,FL,11/30/2007 3:30 +Heath,,,OH,11/30/2007 15:30 +Heath,,LIGHT,OH,11/30/2007 15:30 +Sandy Hook,,OTHER,MS,11/30/2007 17:30 +Forsyth,,,GA,11/30/2007 22:30 +Arlington,ORANGE,LIGHT,OH,11/30/2007 22:35 +Stateline,,,NV,12/1/2007 0:15 +Paradise,RED,SPHERE,CA,12/1/2007 4:05 +Mayville,,TEARDROP,NY,12/1/2007 9:00 +Tupper Lake,,CIRCLE,NY,12/1/2007 9:30 +Columbus,,FORMATION,GA,12/1/2007 12:00 +Columbus,,FORMATION,GA,12/1/2007 12:00 +Kailua,,VARIOUS,HI,12/1/2007 12:00 +Mayville,,TEARDROP,NY,12/1/2007 15:00 +Pico Rivera,,DISK,CA,12/1/2007 15:15 +Lakeland,,CIRCLE,FL,12/1/2007 16:00 +Blue Springs,,OTHER,MO,12/1/2007 17:00 +Alpharetta,,CIRCLE,GA,12/1/2007 18:22 +Corpus Christi,,LIGHT,TX,12/1/2007 18:25 +Huntington,,,KY,12/1/2007 21:00 +Murrieta,,CIGAR,CA,12/1/2007 22:00 +Stockton,,,CA,12/1/2007 22:00 +Niles,,OTHER,OH,12/1/2007 22:20 +Spokane,,TRIANGLE,WA,12/2/2007 0:00 +Sapulpa,,CIRCLE,OK,12/2/2007 1:00 +Metalton,,OVAL,AR,12/2/2007 10:00 +Metalton,,OVAL,AR,12/2/2007 16:00 +Los Angeles,,OTHER,CA,12/2/2007 16:45 +Sand Springs,,LIGHT,OK,12/2/2007 19:00 +Port Saint Lucie,,,FL,12/2/2007 22:00 +Jacksonville,,DISK,FL,12/3/2007 4:00 +Manito,ORANGE,FORMATION,IL,12/3/2007 6:50 +Boulder,,OTHER,CO,12/3/2007 8:00 +Tahlequah,,CIRCLE,OK,12/3/2007 14:00 +Albuquerque,BLUE,,NM,12/3/2007 15:35 +Owensboro,,LIGHT,KY,12/3/2007 17:03 +El Valle,,SPHERE,NM,12/3/2007 17:30 +Albuquerque,,,NM,12/3/2007 17:35 +Albuquerque,,CIRCLE,NM,12/3/2007 17:35 +Beaver Dam,,LIGHT,AZ,12/3/2007 18:45 +Oceanside,ORANGE,CIRCLE,CA,12/3/2007 20:50 +Monroe,,OTHER,NC,12/3/2007 21:45 +Kihei,,LIGHT,HI,12/3/2007 22:30 +Burbank,BLUE,LIGHT,CA,12/4/2007 1:00 +Las Vegas,,,NV,12/4/2007 1:45 +North Las Vegas,BLUE,FIREBALL,NV,12/4/2007 2:30 +San Antonio,,,TX,12/4/2007 5:00 +Tyler,,,TX,12/4/2007 8:05 +Current,,,NV,12/4/2007 17:00 +Window Rock,,OVAL,AZ,12/4/2007 17:20 +Sylva,,TRIANGLE,NC,12/4/2007 19:30 +Longwood,,DISK,FL,12/4/2007 19:43 +Valley View,GREEN,DIAMOND,TX,12/4/2007 20:00 +Jacksonville,BLUE,TEARDROP,FL,12/4/2007 21:20 +Hemet,,TRIANGLE,CA,12/4/2007 21:30 +Jacksonville,GREEN,FIREBALL,FL,12/4/2007 21:30 +Robinson,,LIGHT,TX,12/4/2007 22:00 +Tucson,,,AZ,12/4/2007 22:00 +Lower Burrell,,LIGHT,PA,12/4/2007 22:15 +Johnson City,,TRIANGLE,TN,12/4/2007 23:00 +Seminole,,FIREBALL,FL,12/5/2007 0:00 +Ware,,CIRCLE,MA,12/5/2007 3:45 +Palatka,,OVAL,FL,12/5/2007 5:00 +Burlington,,FLASH,CO,12/5/2007 5:30 +Colorado City,,LIGHT,CO,12/5/2007 17:00 +Port Townsend,,FIREBALL,WA,12/5/2007 21:30 +Mount Pleasant,RED BLUE,TRIANGLE,MI,12/5/2007 22:51 +Covington,,LIGHT,GA,12/6/2007 0:00 +West Warwick,,CIRCLE,RI,12/6/2007 19:55 +Boynton Beach,,RECTANGLE,FL,12/6/2007 20:00 +Edinboro,,DISK,PA,12/6/2007 20:00 +Black Diamond,,LIGHT,WA,12/6/2007 23:30 +Farmington,,DIAMOND,ME,12/7/2007 12:00 +Columbus,,CIGAR,GA,12/7/2007 17:45 +Warren,,LIGHT,PA,12/7/2007 19:00 +Dallas,,LIGHT,TX,12/7/2007 20:00 +Olathe,,LIGHT,KS,12/8/2007 0:19 +Burlington,,FLASH,CO,12/8/2007 5:30 +Alamo,,FORMATION,CA,12/8/2007 5:45 +Spokane,,RECTANGLE,WA,12/8/2007 18:00 +Corvallis,,TRIANGLE,OR,12/8/2007 18:45 +Carpinteria,,,CA,12/8/2007 20:00 +Salem,,LIGHT,OR,12/8/2007 21:12 +Portland,,,OR,12/8/2007 22:15 +San Francisco,,LIGHT,CA,12/8/2007 22:30 +Olathe,GREEN,LIGHT,KS,12/8/2007 22:49 +Jamaica,,OVAL,NY,12/9/2007 5:45 +Dinuba,,,CA,12/9/2007 18:00 +Troutdale,RED GREEN BLUE,LIGHT,OR,12/9/2007 22:30 +Olathe,,LIGHT,KS,12/9/2007 23:00 +Zimmerman,,,MN,12/10/2007 5:10 +Yuma,,OTHER,AZ,12/10/2007 13:15 +Penn Valley,,TEARDROP,CA,12/10/2007 16:40 +Barre,,,VT,12/10/2007 16:45 +Phippsburg,,SPHERE,ME,12/10/2007 17:00 +Fair Oaks,,RECTANGLE,CA,12/10/2007 17:30 +Shelby,,CIRCLE,AL,12/10/2007 17:30 +Mystic - New Haven,,LIGHT,CT,12/10/2007 17:35 +Gardendale,,OTHER,AL,12/10/2007 18:00 +Tallahassee,,LIGHT,FL,12/10/2007 18:00 +Dora,,VARIOUS,AL,12/10/2007 18:03 +Dothan,,LIGHT,AL,12/10/2007 18:10 +Monroe,,CIGAR,GA,12/10/2007 18:30 +Greenville,,VARIOUS,NH,12/10/2007 18:35 +Benzie County,,TRIANGLE,MI,12/10/2007 18:45 +Pittsboro,,CONE,NC,12/10/2007 18:45 +Richmond,,OTHER,VA,12/10/2007 18:45 +Smyrna,,OTHER,GA,12/10/2007 18:45 +Albany,,CIGAR,NY,12/10/2007 19:00 +Fort Pierce,,CIGAR,FL,12/10/2007 19:00 +Ft. White,,CONE,FL,12/10/2007 19:00 +High Point,,OTHER,NC,12/10/2007 19:00 +Hixson,,OTHER,TN,12/10/2007 19:00 +Lake Worth,,OTHER,FL,12/10/2007 19:00 +Lula,,,GA,12/10/2007 19:00 +Miami,,LIGHT,FL,12/10/2007 19:00 +Virginia Beach,ORANGE,FIREBALL,VA,12/10/2007 19:00 +Williston,,OTHER,FL,12/10/2007 19:00 +Winder,,CIGAR,GA,12/10/2007 19:00 +Worcester,,SPHERE,VT,12/10/2007 19:13 +Baton,,OTHER,NC,12/10/2007 19:20 +Carnesville,,LIGHT,GA,12/10/2007 19:30 +Lake CIty,,OTHER,FL,12/10/2007 19:30 +Miami,,CYLINDER,FL,12/10/2007 19:30 +Pleasanton,,RECTANGLE,CA,12/10/2007 20:00 +Villa Rica,,,GA,12/10/2007 20:00 +San Jacinto,,OTHER,CA,12/10/2007 20:45 +Tampa,,CYLINDER,FL,12/10/2007 21:00 +Taunton,,,MA,12/10/2007 21:00 +Iron River,,,MI,12/10/2007 22:00 +Pyramid Lake,,OVAL,NV,12/10/2007 22:30 +Mashpee,,TRIANGLE,MA,12/10/2007 23:00 +Chico,BLUE,FIREBALL,CA,12/11/2007 6:00 +Stony Point,,DISK,NY,12/11/2007 11:00 +Santa Ana,,LIGHT,CA,12/11/2007 18:30 +Tallahassee,,TRIANGLE,FL,12/11/2007 19:30 +Madison,,CIRCLE,AL,12/11/2007 21:00 +Madison,BLUE,DISK,AL,12/11/2007 21:00 +Bell Buckle,RED,LIGHT,TN,12/11/2007 22:15 +North East,,,MD,12/11/2007 23:00 +Philadelpha,,OTHER,PA,12/12/2007 0:00 +Cameron,,TRIANGLE,WV,12/12/2007 1:00 +Cincinnati,,CYLINDER,OH,12/12/2007 6:00 +Westlake,,DIAMOND,VA,12/12/2007 6:15 +Isla Vista,,OVAL,CA,12/12/2007 9:30 +Conway,,OVAL,SC,12/12/2007 13:00 +Benton,,CYLINDER,MS,12/12/2007 14:00 +Los Angeles,,OVAL,CA,12/12/2007 15:00 +Charlotte,,VARIOUS,NC,12/12/2007 16:00 +Anneville,,LIGHT,PA,12/12/2007 16:30 +"Columbia, Wrightsville",,,PA,12/12/2007 17:00 +Enola,,,PA,12/12/2007 17:00 +Harrisburg,,LIGHT,PA,12/12/2007 17:00 +Hershey,,FORMATION,PA,12/12/2007 17:00 +Palmyra,RED,OTHER,PA,12/12/2007 17:00 +Manheim,,,PA,12/12/2007 17:10 +Harrisburg,,FORMATION,PA,12/12/2007 17:25 +Bellingham,,LIGHT,WA,12/12/2007 17:45 +Ashville,,CIRCLE,OH,12/12/2007 17:52 +Los Angeles,RED,,CA,12/12/2007 19:50 +Birmingham,BLUE,CYLINDER,AL,12/12/2007 21:00 +Raleigh,,LIGHT,NC,12/12/2007 21:25 +Summerville,,LIGHT,SC,12/12/2007 21:30 +Delray Beach,BLUE,CIRCLE,FL,12/12/2007 23:00 +Jacksonville,RED,,OR,12/13/2007 10:00 +Cheney,,,WA,12/13/2007 17:00 +Port Allegany,,,PA,12/13/2007 18:00 +Destin,,TRIANGLE,FL,12/13/2007 19:20 +Chattanooga,,DIAMOND,TN,12/13/2007 19:30 +Orland,,TRIANGLE,CA,12/13/2007 21:20 +Sacramento,,CIGAR,CA,12/13/2007 21:30 +Sterling,,,VA,12/14/2007 0:00 +Tinley Park,,TRIANGLE,IL,12/14/2007 0:15 +Elmhurst,,TRIANGLE,NY,12/14/2007 5:30 +Kingsland,,TRIANGLE,GA,12/14/2007 6:45 +Harrisburg,ORANGE,OTHER,PA,12/14/2007 17:30 +Newark,RED,,DE,12/14/2007 18:50 +Springerville,,LIGHT,AZ,12/14/2007 19:00 +Cary,,SPHERE,NC,12/14/2007 19:15 +Mayslanding,,SPHERE,NJ,12/14/2007 19:20 +Santa Barbara,GREEN,SPHERE,CA,12/14/2007 19:30 +Clifton Forge,,CHEVRON,VA,12/14/2007 20:30 +Breinigsville,,FIREBALL,PA,12/14/2007 22:34 +Braintree,RED YELLOW,DISK,VT,12/14/2007 23:00 +Littleton,,,NH,12/14/2007 23:00 +Manhattan Beach,,FIREBALL,CA,12/14/2007 23:00 +Halifax,,OVAL,PA,12/15/2007 3:04 +Loves Park,BLUE,,IL,12/15/2007 4:30 +Wilkes-Barre,,LIGHT,PA,12/15/2007 5:00 +Lakeland,GREEN,,FL,12/15/2007 11:00 +Lakewood Ranch,ORANGE,LIGHT,FL,12/15/2007 16:00 +El Cerrito,,DISK,CA,12/15/2007 18:15 +Durango,,LIGHT,CO,12/15/2007 18:20 +Newark,,CIRCLE,DE,12/15/2007 18:25 +Lake Wales,,SPHERE,FL,12/15/2007 19:05 +Hummelstown,,CIRCLE,PA,12/15/2007 20:00 +San Lucas,,SPHERE,CA,12/15/2007 20:00 +Boulder,ORANGE,CIRCLE,CO,12/15/2007 21:00 +Boulder,ORANGE,LIGHT,CO,12/15/2007 21:15 +Havana,,TRIANGLE,FL,12/15/2007 21:30 +Independence,RED,LIGHT,KY,12/15/2007 21:30 +Los Angeles,,CYLINDER,CA,12/15/2007 22:07 +Duncan,,RECTANGLE,OK,12/16/2007 0:30 +Tampa,,DISK,FL,12/16/2007 18:30 +Carrollton,,LIGHT,KY,12/16/2007 18:35 +Charlottesville,,LIGHT,VA,12/16/2007 20:30 +Corpus Christi,ORANGE,SPHERE,TX,12/17/2007 5:00 +Lehigh Acres,,OTHER,FL,12/18/2007 0:30 +Randolph,,FORMATION,NE,12/18/2007 19:20 +El Paso,,FIREBALL,TX,12/19/2007 17:00 +Sterling Heights,,FLASH,MI,12/19/2007 20:00 +Mission Viejo,,DISK,CA,12/19/2007 20:10 +Irvine,BLUE,CIRCLE,CA,12/19/2007 20:30 +Fresno,,DISK,CA,12/20/2007 6:52 +Rigby,,FIREBALL,ID,12/20/2007 8:30 +Miami,,DIAMOND,OK,12/20/2007 17:00 +St. Petersburg,,TRIANGLE,FL,12/20/2007 18:15 +Gilbert,BLUE,,AZ,12/20/2007 18:29 +Frankfort,,OVAL,IL,12/20/2007 18:30 +Portland,,LIGHT,TX,12/20/2007 18:50 +Phoenix,BLUE,,AZ,12/20/2007 19:29 +St. Louis,,TRIANGLE,MO,12/20/2007 22:06 +St. Louis,,TRIANGLE,MO,12/20/2007 22:06 +Bear,,TRIANGLE,DE,12/21/2007 6:30 +West Palm Beach,,,FL,12/21/2007 17:20 +Houston,GREEN,FLASH,TX,12/21/2007 18:04 +Honolulu,,,HI,12/21/2007 19:14 +El Centro,,,CA,12/21/2007 21:30 +Flushing,RED,TRIANGLE,NY,12/21/2007 22:00 +Tucson,,CIRCLE,AZ,12/22/2007 1:30 +Dingmans Ferry,,LIGHT,PA,12/22/2007 5:00 +El Reno,,VARIOUS,OK,12/22/2007 5:00 +San Diego,,LIGHT,CA,12/22/2007 18:00 +San Diego,,LIGHT,CA,12/22/2007 18:05 +Warrendale,,SPHERE,PA,12/22/2007 18:15 +Mount Pleasant,,TRIANGLE,PA,12/22/2007 19:20 +San Diego,RED ORANGE,LIGHT,CA,12/22/2007 20:00 +Peoria,,,AZ,12/22/2007 21:30 +Harrisonburg,,OTHER,VA,12/23/2007 2:00 +Blairs,,CIRCLE,VA,12/23/2007 5:00 +Los Angeles,GREEN,CIRCLE,CA,12/23/2007 5:00 +Las Vegas,,CIRCLE,NV,12/23/2007 9:00 +San Marino,,DIAMOND,CA,12/23/2007 12:30 +Chicago,,DISK,IL,12/23/2007 13:30 +Los Angeles,,CIRCLE,CA,12/23/2007 16:00 +Lake Providence,,,LA,12/23/2007 18:00 +Los Alamos,,,CA,12/23/2007 18:00 +Salem,,SPHERE,VA,12/23/2007 18:30 +Bowie,BLUE,DISK,MD,12/23/2007 18:45 +Bowie,,LIGHT,MD,12/23/2007 18:45 +Lesslie,BLUE,DISK,SC,12/23/2007 20:00 +Chester,,CONE,VA,12/23/2007 20:45 +San Martin,RED,,CA,12/23/2007 21:00 +Tustin,,DISK,CA,12/23/2007 21:30 +Bountiful,,FORMATION,UT,12/23/2007 23:00 +Pataskala,,TRIANGLE,OH,12/23/2007 23:00 +Missouri,,CIRCLE,MO,12/24/2007 0:00 +Phila.,RED,DISK,PA,12/24/2007 0:00 +Brownsville,,LIGHT,TX,12/24/2007 0:15 +Van Nuys,,FORMATION,CA,12/24/2007 1:47 +Alta Loma,,CIRCLE,CA,12/24/2007 1:49 +New York City,,,NY,12/24/2007 2:00 +East Moline,,TRIANGLE,IL,12/24/2007 3:15 +Moneta,ORANGE,,VA,12/24/2007 12:01 +Windermere,,VARIOUS,FL,12/24/2007 18:00 +Lakewood,,LIGHT,CO,12/24/2007 18:50 +Longmont,,,CO,12/24/2007 20:15 +Memphis,ORANGE,,TN,12/24/2007 20:30 +Mendham,,TRIANGLE,NJ,12/25/2007 0:00 +Pensacola,RED,LIGHT,FL,12/25/2007 19:00 +Cut Off,,CIRCLE,LA,12/25/2007 20:00 +Chicago,,TRIANGLE,IL,12/25/2007 22:50 +Burbank,,,CA,12/25/2007 23:15 +Grants Pass,,LIGHT,OR,12/26/2007 6:30 +Klickitat Yakima County Line,,FLASH,WA,12/26/2007 18:30 +Mountains,,FLASH,WA,12/26/2007 18:30 +Clovis,,OTHER,CA,12/26/2007 19:30 +Irvine,ORANGE BLUE,OTHER,CA,12/26/2007 20:45 +Moneta,,OTHER,VA,12/26/2007 22:15 +Braintree,,,VT,12/27/2007 4:25 +Garland,,DISK,TX,12/27/2007 7:30 +Phoenix,,RECTANGLE,AZ,12/27/2007 17:00 +VA,,CIRCLE,SC,12/27/2007 20:00 +Vernon,,LIGHT,AZ,12/28/2007 0:00 +Satellite Beach,,SPHERE,FL,12/28/2007 4:00 +Nacogdoches,,,TX,12/28/2007 8:05 +Bay City,,TRIANGLE,TX,12/28/2007 19:00 +Hacienda Heights,,FORMATION,CA,12/28/2007 20:00 +Westwood,RED BLUE,DIAMOND,CA,12/28/2007 20:30 +Omaha,,CIRCLE,NE,12/28/2007 23:19 +Vista,,LIGHT,CA,12/29/2007 7:00 +North Kansas City,,TRIANGLE,MO,12/29/2007 15:00 +Plano,,SPHERE,TX,12/29/2007 18:00 +Carlsbad,,TRIANGLE,CA,12/29/2007 19:00 +Ashland,,OVAL,MO,12/29/2007 19:18 +Silverdale,,TRIANGLE,WA,12/29/2007 21:00 +Phoenix,,LIGHT,AZ,12/29/2007 22:00 +Altoona,,,IA,12/29/2007 22:15 +Palm Desert,RED,OTHER,CA,12/30/2007 0:00 +Braintree,,CIRCLE,VT,12/30/2007 1:00 +Perth Amboy,,,NJ,12/30/2007 1:00 +Spokane,,LIGHT,WA,12/30/2007 6:35 +Santa Rosa,,OTHER,CA,12/30/2007 20:15 +Vista,,OTHER,CA,12/30/2007 20:30 +Englewood,,CIRCLE,FL,12/30/2007 21:00 +Salina,,DISK,KS,12/30/2007 21:05 +Brooksville,,DISK,FL,12/30/2007 23:00 +Freehold Township,,DIAMOND,NJ,12/31/2007 0:00 +Antioch,RED,CIRCLE,CA,12/31/2007 0:05 +Green Valley,,OTHER,AZ,12/31/2007 0:40 +Cairo,,CIRCLE,GA,12/31/2007 9:30 +San Diego,,SPHERE,CA,12/31/2007 15:00 +Los Angeles,,RECTANGLE,CA,12/31/2007 16:00 +McKinney,,LIGHT,TX,12/31/2007 18:00 +Daniels,,LIGHT,WV,12/31/2007 18:20 +Lake Toxaway,,OVAL,NC,12/31/2007 19:30 +Pilot Knob,,LIGHT,MO,12/31/2007 20:00 +San Diego,YELLOW,LIGHT,CA,12/31/2007 20:45 +Groves,ORANGE,OTHER,TX,12/31/2007 21:00 +Carrollton,ORANGE,SPHERE,TX,12/31/2007 21:38 +San Carlos,RED,LIGHT,CA,12/31/2007 22:15 +Palm Coast,,OTHER,FL,12/31/2007 22:55 +Santa Monica,,OTHER,CA,12/31/2007 23:15 +Myrtle Beach,,EGG,SC,12/31/2007 23:53 +Burbank,ORANGE,CIRCLE,CA,1/1/2008 0:00 +Burbank,,LIGHT,CA,1/1/2008 0:00 +El Cajon,,TRIANGLE,CA,1/1/2008 0:01 +Las Vegas,,DISK,NV,1/1/2008 0:02 +Fremont,,FORMATION,CA,1/1/2008 0:03 +Antioch,,LIGHT,CA,1/1/2008 0:05 +Nunapitchuk,,FIREBALL,AK,1/1/2008 0:08 +Burbank,RED,LIGHT,CA,1/1/2008 0:15 +Massillon,ORANGE,LIGHT,OH,1/1/2008 0:15 +San Diego,,LIGHT,CA,1/1/2008 0:20 +Bartlett,,OVAL,TN,1/1/2008 0:30 +San Diego,,LIGHT,CA,1/1/2008 0:30 +San Diego,ORANGE YELLOW,LIGHT,CA,1/1/2008 0:30 +La Jolla,,LIGHT,CA,1/1/2008 0:40 +Citrus Heights,,FORMATION,CA,1/1/2008 1:00 +Waycross,,DISK,GA,1/1/2008 1:45 +Clayton,,,GA,1/1/2008 3:00 +Gainesville,,VARIOUS,FL,1/1/2008 3:00 +Easley,,LIGHT,SC,1/1/2008 6:10 +Jacksonville,,FIREBALL,FL,1/1/2008 8:30 +Santa Barbara,,OTHER,CA,1/1/2008 11:00 +San Diego,,LIGHT,CA,1/1/2008 12:30 +Gainesville,,,FL,1/1/2008 17:00 +Seattle,,VARIOUS,WA,1/1/2008 17:15 +Port Richey,,CIGAR,FL,1/1/2008 18:00 +Gainesville,,VARIOUS,FL,1/1/2008 18:30 +Grafton,,CIRCLE,MA,1/1/2008 18:30 +Catawba,RED,LIGHT,SC,1/1/2008 19:00 +Waco,,FIREBALL,TX,1/1/2008 20:00 +Pottsboro,,LIGHT,TX,1/1/2008 20:30 +Prairieville,,VARIOUS,LA,1/1/2008 21:00 +Yreka,,CYLINDER,CA,1/1/2008 21:20 +Bloomington,,,IL,1/1/2008 23:00 +Cameron,,LIGHT,MO,1/2/2008 2:30 +Byron,,LIGHT,GA,1/2/2008 6:50 +Downey,,FORMATION,CA,1/2/2008 8:28 +Westwood,,DIAMOND,CA,1/2/2008 20:30 +Newalla,,FIREBALL,OK,1/2/2008 20:45 +Craig,,LIGHT,CO,1/2/2008 21:00 +Hattiesburg,,OTHER,MS,1/2/2008 21:00 +Waldorf,,CIRCLE,MD,1/2/2008 22:35 +Elmhurst,YELLOW BLUE,OTHER,IL,1/2/2008 23:00 +Shippensburg,RED,TRIANGLE,PA,1/2/2008 23:00 +Bozeman,,OVAL,MT,1/3/2008 0:00 +Temecula,,CIRCLE,CA,1/3/2008 0:15 +Clover,,,SC,1/3/2008 0:20 +Brewster,,OTHER,OH,1/3/2008 1:00 +Bloomsburg,,,PA,1/3/2008 2:08 +Hope,ORANGE GREEN,,ND,1/3/2008 2:30 +West Warwick,,,RI,1/3/2008 2:40 +Medford,,,OR,1/3/2008 4:00 +Seattle,,,WA,1/3/2008 15:00 +Anaheim,,CIRCLE,CA,1/3/2008 15:28 +Tunkhannock,,LIGHT,PA,1/3/2008 20:00 +Flat Rock,,DIAMOND,AL,1/3/2008 20:30 +Harrisburg,,OVAL,PA,1/3/2008 22:45 +Columbia,,TRIANGLE,MO,1/3/2008 23:00 +Indianapolis,,TRIANGLE,IN,1/4/2008 0:00 +Hemphill,,RECTANGLE,TX,1/4/2008 10:00 +Lincolnshire,,DISK,IL,1/4/2008 15:00 +Houston,,TRIANGLE,TX,1/4/2008 19:00 +Leeds,RED GREEN BLUE,TRIANGLE,ME,1/4/2008 20:00 +Indian Trail,,DISK,NC,1/4/2008 20:37 +New Britain,ORANGE,DIAMOND,CT,1/4/2008 20:44 +Morehead,,LIGHT,KY,1/4/2008 20:45 +Calvert,,FIREBALL,TX,1/4/2008 23:00 +New Holland,,LIGHT,PA,1/5/2008 5:45 +Virginia Beach,BLUE,FORMATION,VA,1/5/2008 12:00 +Platteville,,CHEVRON,CO,1/5/2008 19:00 +Topeka,,TRIANGLE,KS,1/5/2008 20:00 +Yardville,,CIRCLE,NJ,1/5/2008 20:00 +Kingfisher,,,OK,1/5/2008 21:00 +Houston,,LIGHT,TX,1/5/2008 23:10 +New Caney,,CIRCLE,TX,1/5/2008 23:30 +Germania,,TRIANGLE,PA,1/6/2008 3:00 +Abilene,,LIGHT,TX,1/6/2008 22:00 +Stephenville,,DISK,TX,1/7/2008 0:00 +Homestead,,OVAL,FL,1/7/2008 3:00 +Safford,,CROSS,AZ,1/7/2008 6:00 +Cranston,,CIRCLE,RI,1/7/2008 6:30 +Bellingham,,LIGHT,WA,1/7/2008 7:00 +Sebring,,CIRCLE,FL,1/7/2008 19:00 +Philadelphia,,TRIANGLE,PA,1/7/2008 19:35 +Dale City,BLUE,FLASH,VA,1/7/2008 20:52 +Parkers Cross Roads,,OTHER,TN,1/7/2008 22:03 +Wichita,,OTHER,KS,1/8/2008 0:00 +Ypslianti,,VARIOUS,MI,1/8/2008 0:00 +Stephenville,,OVAL,TX,1/8/2008 1:00 +New orleans,,CIRCLE,LA,1/8/2008 1:30 +Hagerstown,BLUE,,MD,1/8/2008 2:23 +Dalton,,,GA,1/8/2008 4:00 +Springfield,,FORMATION,MA,1/8/2008 5:00 +Miami,,FLASH,FL,1/8/2008 7:30 +York,RED,TEARDROP,PA,1/8/2008 7:38 +Los Angeles,,VARIOUS,CA,1/8/2008 8:30 +San Antonio,,FIREBALL,TX,1/8/2008 14:45 +Ringgold,,FORMATION,GA,1/8/2008 15:00 +Stephenville,,RECTANGLE,TX,1/8/2008 17:14 +Stephenville,,OVAL,TX,1/8/2008 18:00 +Palm Desert,,TRIANGLE,CA,1/8/2008 18:45 +Salado,,FORMATION,TX,1/8/2008 19:00 +Stephenville,,OVAL,TX,1/8/2008 19:00 +Liberty Hill,,OTHER,TX,1/8/2008 19:20 +Orlando,,LIGHT,FL,1/8/2008 19:36 +Baird,,LIGHT,TX,1/8/2008 20:00 +Waconia,,TRIANGLE,MN,1/8/2008 20:45 +Liberty Hill,ORANGE,,TX,1/8/2008 22:00 +San Jose,,TRIANGLE,CA,1/8/2008 22:00 +Azle,,CIRCLE,TX,1/8/2008 23:30 +Tulsa,RED,,OK,1/9/2008 2:00 +Sargent,,CIRCLE,TX,1/9/2008 6:15 +Tualatin,,LIGHT,OR,1/9/2008 7:03 +Valdosta,,DIAMOND,GA,1/9/2008 9:00 +Florissant,,OTHER,CO,1/9/2008 12:00 +Livermore,,CYLINDER,CA,1/9/2008 15:50 +Clark,,OVAL,NJ,1/9/2008 17:00 +Memphis,,CIRCLE,TN,1/9/2008 17:00 +Okmulgee,,CIGAR,OK,1/9/2008 18:30 +San Antonio,,DISK,TX,1/9/2008 19:00 +Lancaster,,LIGHT,CA,1/9/2008 19:10 +Lebanon,,OTHER,IN,1/9/2008 20:13 +Byron,,,NY,1/9/2008 21:58 +Bloomington,,TRIANGLE,IL,1/9/2008 22:00 +Clearwater Beach,,OTHER,FL,1/10/2008 0:00 +Quatzsite,,,AZ,1/10/2008 0:00 +Satellite Beach,,DIAMOND,FL,1/10/2008 2:00 +Seminole,,CIRCLE,OK,1/10/2008 2:00 +Louisville,,LIGHT,KY,1/10/2008 3:56 +Lindenhurst,,CIRCLE,NY,1/10/2008 6:00 +Davie,GREEN,TEARDROP,FL,1/10/2008 19:00 +Sarasota,,FIREBALL,FL,1/10/2008 19:00 +Las Vegas,,,NV,1/10/2008 19:30 +Poughkeepsie,,OTHER,NY,1/10/2008 20:05 +Laguna Niguel,GREEN,LIGHT,CA,1/10/2008 22:00 +Laurel,,LIGHT,MD,1/10/2008 23:00 +Gig Harbor,,LIGHT,WA,1/11/2008 1:00 +Bergen,,FORMATION,NY,1/11/2008 6:00 +Phoenix,RED GREEN BLUE,OVAL,AZ,1/11/2008 8:30 +Carmel,RED,OTHER,NY,1/11/2008 11:00 +Houston,,TRIANGLE,TX,1/11/2008 21:00 +Naples,,TRIANGLE,FL,1/11/2008 23:35 +Russellton,RED,TRIANGLE,PA,1/12/2008 0:00 +Riverside,,FIREBALL,CA,1/12/2008 1:30 +Wapakoneta,,TRIANGLE,OH,1/12/2008 2:00 +Bloomfield Hills,,,MI,1/12/2008 6:55 +Santa Monica,,VARIOUS,CA,1/12/2008 10:38 +St. Petersburg,,VARIOUS,FL,1/12/2008 11:00 +Marlton,,EGG,NJ,1/12/2008 15:30 +Limon,,,CO,1/12/2008 16:00 +Canonsburg,,TRIANGLE,PA,1/12/2008 18:00 +Roslindale,,OVAL,MA,1/12/2008 19:00 +Norwalk,,TRIANGLE,CA,1/12/2008 19:20 +Sevierville,,OTHER,TN,1/12/2008 19:45 +Lady Lake,,,FL,1/12/2008 20:00 +Hampton,,EGG,TN,1/12/2008 20:45 +Bath,,,PA,1/12/2008 23:00 +Redondo Beach,,FLASH,CA,1/12/2008 23:00 +Long Beach,,OTHER,CA,1/13/2008 0:00 +Las Vegas,,CIRCLE,NV,1/13/2008 1:00 +San Francisco,,LIGHT,CA,1/13/2008 3:00 +Stanhope,,LIGHT,NJ,1/13/2008 4:30 +Hampstead,,LIGHT,NH,1/13/2008 5:20 +Grand prairie,,RECTANGLE,TX,1/13/2008 11:50 +Gulf of Mexico,,DISK,TX,1/13/2008 13:30 +Dunstable,,LIGHT,MA,1/13/2008 17:11 +Conway,,,AR,1/13/2008 21:00 +Stephenville,,DISK,TX,1/14/2008 0:00 +Allentown,,SPHERE,PA,1/14/2008 1:34 +Ukiah,,OTHER,CA,1/14/2008 6:40 +Goleta,,TRIANGLE,CA,1/14/2008 12:25 +Pomona,,CIRCLE,CA,1/14/2008 14:15 +Lakeway,,DISK,TX,1/14/2008 17:00 +Longwood,,OTHER,FL,1/14/2008 17:45 +Racine,,LIGHT,WI,1/14/2008 18:20 +Yuma,,FIREBALL,AZ,1/14/2008 19:00 +Swanburg,,FIREBALL,MN,1/14/2008 20:10 +Alvin,,CIGAR,TX,1/14/2008 20:30 +Altamonte Springs,GREEN,DISK,FL,1/14/2008 21:00 +Canon,RED GREEN,CIRCLE,GA,1/14/2008 21:00 +Sheffield Lake,,OVAL,OH,1/15/2008 0:00 +Sugarcreek,,TRIANGLE,OH,1/15/2008 1:00 +Rockville,RED,TRIANGLE,MD,1/15/2008 1:50 +Quad cities,,,IL,1/15/2008 3:30 +Shepherd,,TRIANGLE,TX,1/15/2008 5:29 +Hamilton,,LIGHT,TX,1/15/2008 6:20 +Atchafalaya,,LIGHT,LA,1/15/2008 6:48 +Springhill,,FIREBALL,LA,1/15/2008 7:47 +Roan Mountain,,CROSS,TN,1/15/2008 8:56 +Highland,,SPHERE,CA,1/15/2008 9:10 +Dixon,,,IL,1/15/2008 11:58 +San Bernardino,,CIRCLE,CA,1/15/2008 12:00 +Carriere,,OTHER,MS,1/15/2008 18:00 +Chapel Hill,,TRIANGLE,NC,1/15/2008 19:00 +Carmel,RED,CIRCLE,IN,1/15/2008 20:30 +Colfax,,DISK,ND,1/15/2008 21:00 +Warrenton,,CIRCLE,NC,1/15/2008 21:00 +Spring Creek,,FORMATION,NV,1/15/2008 22:00 +Canon City,ORANGE,DISK,CO,1/15/2008 22:10 +Lakewood,BLUE,LIGHT,CA,1/15/2008 23:00 +St. Louis,,CIRCLE,MO,1/15/2008 23:00 +Compton,GREEN,FIREBALL,CA,1/15/2008 23:20 +Long Beach,,LIGHT,CA,1/15/2008 23:45 +Fall River,,FLASH,MA,1/16/2008 0:00 +Pomfret,,TRIANGLE,CT,1/16/2008 5:00 +Owasso,RED,TRIANGLE,OK,1/16/2008 5:07 +Wareham,,,MA,1/16/2008 5:25 +North Falmouth,,,MA,1/16/2008 5:30 +Quartzsite,YELLOW,FLASH,AZ,1/16/2008 5:58 +Chicago,,CIRCLE,IL,1/16/2008 6:00 +Phoenix,,CIRCLE,AZ,1/16/2008 9:00 +Riverhead,,,NY,1/16/2008 11:30 +Fair Oaks,,,IL,1/16/2008 20:00 +Gary,,TRIANGLE,IN,1/16/2008 20:00 +Denver,,TRIANGLE,IN,1/16/2008 21:00 +Old Bridge,,TRIANGLE,NJ,1/16/2008 23:00 +Altoona,,OVAL,IA,1/17/2008 0:00 +Oklahoma City,ORANGE,FORMATION,OK,1/17/2008 0:00 +Hagerstown,,TRIANGLE,MD,1/17/2008 2:04 +Livingston,,,NJ,1/17/2008 4:30 +New Providence,RED,,NJ,1/17/2008 5:00 +Newburgh,,TRIANGLE,NY,1/17/2008 6:04 +Kerens,,FORMATION,TX,1/17/2008 7:55 +Half Moon Bay,,VARIOUS,CA,1/17/2008 8:00 +Azusa,,DISK,CA,1/17/2008 14:35 +Baltimore,,TRIANGLE,MD,1/17/2008 18:15 +Adelanto,,TRIANGLE,CA,1/17/2008 18:30 +Effingham,,OVAL,NH,1/17/2008 18:40 +Callahan,,CIGAR,FL,1/17/2008 20:00 +Fulshear,,OTHER,TX,1/17/2008 21:15 +Enigma,ORANGE,TRIANGLE,GA,1/18/2008 0:00 +New Hampton,RED YELLOW,CIRCLE,NY,1/18/2008 18:00 +Issaquah,,LIGHT,WA,1/18/2008 18:50 +East Pennsboro,,LIGHT,PA,1/18/2008 19:00 +Freeport,RED,CIRCLE,ME,1/18/2008 19:05 +Brunswick,,,NY,1/18/2008 19:30 +Madison,GREEN,,CT,1/18/2008 19:40 +Red Lion,,CIRCLE,PA,1/18/2008 19:45 +Brownstown,,OVAL,MI,1/18/2008 20:00 +Riverhead,,CIRCLE,NY,1/18/2008 20:00 +Cherryville,,TRIANGLE,NC,1/18/2008 21:00 +Springtown,,CIRCLE,TX,1/18/2008 22:30 +Springtown,,CIRCLE,TX,1/18/2008 22:30 +Springtown,,CIRCLE,TX,1/18/2008 22:30 +Graham,,TRIANGLE,WA,1/18/2008 23:00 +Davis,,CIRCLE,CA,1/18/2008 23:30 +Maple Glen,,LIGHT,PA,1/18/2008 23:45 +Corydon,,DISK,IN,1/19/2008 8:00 +Newark,,LIGHT,OH,1/19/2008 19:15 +Grand Junction,,LIGHT,CO,1/19/2008 19:30 +Burbank,RED,LIGHT,CA,1/19/2008 19:50 +La Mesa,,VARIOUS,CA,1/19/2008 21:00 +Penns Grove,,OTHER,DE,1/20/2008 0:00 +Memphis,ORANGE,SPHERE,TN,1/20/2008 0:15 +Clarksville,RED,RECTANGLE,TX,1/20/2008 2:00 +Aberdeen,,TEARDROP,NJ,1/20/2008 4:45 +East Dublin,,OTHER,GA,1/20/2008 5:58 +East Dublin,RED,OVAL,GA,1/20/2008 5:58 +East Dublin,RED,OVAL,GA,1/20/2008 5:58 +Tallmadge,,DISK,OH,1/20/2008 8:30 +Denver,,VARIOUS,CO,1/20/2008 9:20 +Des Peres,,CIRCLE,MO,1/20/2008 10:30 +San Antonio,,LIGHT,TX,1/20/2008 10:45 +Lebanon,,SPHERE,OR,1/20/2008 14:00 +Fircrest,,,WA,1/20/2008 14:25 +Morgan Hill,,OTHER,CA,1/20/2008 17:11 +Marysville,RED BLUE,CIRCLE,WA,1/20/2008 19:00 +Indiana,,,PA,1/20/2008 19:08 +Janesville,,TRIANGLE,CA,1/20/2008 19:56 +Batesville,,DIAMOND,AR,1/20/2008 20:00 +Oak Lawn,,OVAL,IL,1/20/2008 20:30 +Elmhurst,,DISK,IL,1/20/2008 21:33 +Lancaster,,CIRCLE,CA,1/20/2008 21:52 +Haleyville,,TRIANGLE,AL,1/20/2008 22:09 +Denton,,CHEVRON,TX,1/20/2008 23:55 +Newburgh,,OTHER,NY,1/21/2008 4:00 +Ashton,,SPHERE,WV,1/21/2008 8:00 +Henderson,,CONE,NV,1/21/2008 9:24 +Lehi,BLUE,OVAL,UT,1/21/2008 10:15 +Apache Junction,,CIGAR,AZ,1/21/2008 13:00 +Norwood,BLUE,LIGHT,MA,1/21/2008 18:37 +Danville,GREEN,OTHER,KY,1/21/2008 20:00 +Crowley,GREEN,LIGHT,TX,1/22/2008 2:30 +Fayetteville,,,NC,1/22/2008 5:00 +Taft,,DISK,CA,1/22/2008 5:00 +Baton Rouge,,,LA,1/22/2008 5:45 +Clarence,,FIREBALL,NY,1/22/2008 6:46 +Chicago,,DIAMOND,IL,1/22/2008 18:00 +Wahkiki,,,HI,1/22/2008 18:00 +Martinsville,,CIRCLE,IN,1/22/2008 18:55 +Greenwood,ORANGE,FIREBALL,IN,1/22/2008 19:08 +Boulder,,CIRCLE,CO,1/22/2008 21:00 +Seattle,,TEARDROP,WA,1/23/2008 2:00 +Milpitas,,CIRCLE,CA,1/23/2008 2:30 +Newton,,DISK,MA,1/23/2008 4:00 +Mokena,,TRIANGLE,IL,1/23/2008 6:30 +Ft. Pierce,,LIGHT,FL,1/23/2008 7:15 +St. George,,OTHER,UT,1/23/2008 14:40 +Plumsteadville,,DIAMOND,PA,1/23/2008 17:59 +Smithtown,,DISK,NY,1/23/2008 19:10 +Mims,,OTHER,FL,1/23/2008 19:17 +Mims,,OTHER,FL,1/23/2008 19:17 +Windsor,,LIGHT,VA,1/23/2008 19:30 +Austin,,DISK,TX,1/23/2008 22:30 +Stonington,,OTHER,CT,1/24/2008 3:08 +Fort Myers,,LIGHT,FL,1/24/2008 6:30 +White Plains,,OVAL,NY,1/24/2008 17:00 +Auburn,,OTHER,AL,1/24/2008 18:00 +Hammond,RED,,IN,1/24/2008 18:00 +Hayward,RED,OVAL,CA,1/24/2008 18:10 +Eustis,,,FL,1/24/2008 18:30 +Hammond,RED,,IN,1/24/2008 18:30 +Valley,,FIREBALL,AL,1/24/2008 19:00 +Waddington,ORANGE,LIGHT,NY,1/24/2008 19:00 +Dublin,GREEN,FIREBALL,GA,1/24/2008 19:10 +Powder Springs,,LIGHT,GA,1/24/2008 19:15 +Las Vegas,,OVAL,NV,1/24/2008 20:50 +Fredericksburg,,,VA,1/24/2008 21:00 +Newport News,,DISK,VA,1/24/2008 21:05 +North East,,VARIOUS,MD,1/24/2008 21:15 +Montgomery,YELLOW,DISK,TX,1/24/2008 23:00 +North Riverside,,LIGHT,IL,1/24/2008 23:00 +Florence,GREEN,TEARDROP,AL,1/24/2008 23:30 +Acworth,,FIREBALL,GA,1/25/2008 3:00 +Davis,,FIREBALL,CA,1/25/2008 7:30 +Tacoma,,OVAL,WA,1/25/2008 16:40 +Colquitt,,DISK,GA,1/25/2008 22:00 +Maiden,,CIRCLE,NC,1/25/2008 22:00 +Albuquerque,RED,LIGHT,NM,1/25/2008 22:45 +Anthony,,DISK,FL,1/25/2008 23:00 +Wildwood,,FLASH,FL,1/25/2008 23:00 +Portland,YELLOW,CIRCLE,OR,1/26/2008 0:05 +Brea,,FIREBALL,CA,1/26/2008 7:16 +Baltimore,,CIGAR,MD,1/26/2008 7:20 +Johnson City,,OVAL,TN,1/26/2008 13:30 +Denver,,SPHERE,CO,1/26/2008 14:00 +Fort Myers,,DISK,FL,1/26/2008 14:50 +Anaheim - Brea - Diamond Bar,ORANGE,OVAL,CA,1/26/2008 17:45 +Anaheim,,FIREBALL,CA,1/26/2008 17:52 +Fullerton,,FIREBALL,CA,1/26/2008 18:00 +Placentia,ORANGE,OVAL,CA,1/26/2008 18:00 +Yorba Linda,,FIREBALL,CA,1/26/2008 18:00 +Yorba Linda,,FIREBALL,CA,1/26/2008 18:00 +Yorba Linda,,LIGHT,CA,1/26/2008 18:00 +Los Angeles,,RECTANGLE,CA,1/26/2008 18:15 +Low Moor,,,VA,1/26/2008 18:41 +Sheffield,,CIRCLE,PA,1/26/2008 18:45 +Charlotte,,FORMATION,NC,1/26/2008 19:00 +Glendale,RED,OVAL,AZ,1/26/2008 20:30 +Tazewell,,LIGHT,TN,1/27/2008 0:00 +Ellicott City,,OTHER,MD,1/27/2008 4:30 +Oxford,,OTHER,CT,1/27/2008 11:35 +Briarwood,RED,CIRCLE,NY,1/27/2008 14:00 +Apalachicola,,VARIOUS,FL,1/27/2008 15:30 +Apalachicola,,,FL,1/27/2008 17:00 +Cary,RED GREEN BLUE,DISK,IL,1/27/2008 17:36 +Lost Hills,,FIREBALL,CA,1/27/2008 17:45 +San Diego,,FLASH,CA,1/27/2008 18:00 +Corona,,LIGHT,CA,1/27/2008 18:01 +Ojibwa,,,WI,1/27/2008 18:30 +Easley,,CIRCLE,SC,1/27/2008 23:46 +Presque Isle,,FIREBALL,ME,1/28/2008 0:00 +Mesquite,,,TX,1/28/2008 0:28 +Ft. Lauderdale,,CYLINDER,FL,1/28/2008 9:55 +St. Augustine,,SPHERE,FL,1/28/2008 10:45 +Livingston,,CIGAR,AL,1/28/2008 15:30 +Rocky Mount,,OTHER,NC,1/28/2008 16:20 +no data,,CIRCLE,NY,1/28/2008 17:55 +Ballston Spa,,CIRCLE,NY,1/28/2008 18:20 +Rockford,,TRIANGLE,IL,1/28/2008 20:00 +Waynesburg,,TRIANGLE,OH,1/28/2008 20:15 +Santa Clarita,RED,FORMATION,CA,1/28/2008 20:50 +Maize,,OTHER,KS,1/28/2008 23:15 +Tilton,ORANGE,FORMATION,NH,1/29/2008 0:00 +Northridge,,TRIANGLE,CA,1/29/2008 9:00 +Cordova,,,TN,1/29/2008 9:15 +Mt. Laguna,,CIRCLE,CA,1/29/2008 14:00 +Boston,,CYLINDER,MA,1/29/2008 14:55 +Murphy,,FLASH,TX,1/29/2008 18:00 +Beecher,,LIGHT,IL,1/29/2008 19:00 +Port St. Lucie,,LIGHT,FL,1/29/2008 19:00 +Canyon,,SPHERE,TX,1/29/2008 19:25 +North Franklin,,CROSS,CT,1/29/2008 20:32 +Burbank,,FORMATION,CA,1/29/2008 20:40 +Lancaster,,TRIANGLE,KY,1/29/2008 22:00 +Denver,RED GREEN,OTHER,CO,1/30/2008 0:00 +Versailles,,SPHERE,KY,1/30/2008 0:40 +Santa Rosa,,TEARDROP,CA,1/30/2008 7:57 +Point Pleasant Beach nj,RED,SPHERE,NJ,1/30/2008 10:30 +Weston,,VARIOUS,MO,1/30/2008 18:16 +Kings Park,,TRIANGLE,NY,1/30/2008 19:21 +Oklahoma City,,FLASH,OK,1/30/2008 19:30 +Sorrento,,OVAL,FL,1/30/2008 19:30 +Copperas Cove,,,TX,1/30/2008 20:00 +Ocala,,CIRCLE,FL,1/30/2008 20:00 +Advance,,OTHER,NC,1/30/2008 21:00 +Oklahoma,RED,TRIANGLE,OK,1/30/2008 21:00 +Cape Coral,YELLOW GREEN BLUE,OVAL,FL,1/30/2008 22:00 +Myrtle Beach,,SPHERE,SC,1/30/2008 22:00 +Mission,,DISK,SD,1/31/2008 0:00 +Cortez,,CIRCLE,CO,1/31/2008 4:00 +Stafford,,CYLINDER,VA,1/31/2008 5:40 +Lisle,,LIGHT,IL,1/31/2008 6:30 +Charlotte,,,NC,1/31/2008 6:47 +New York,,DISK,NY,1/31/2008 7:30 +Lake Elsinore,,OVAL,CA,1/31/2008 12:05 +Lake Elsinore,,SPHERE,CA,1/31/2008 12:05 +Willow Island,,CIRCLE,WV,1/31/2008 13:00 +Columbus,,SPHERE,OH,1/31/2008 15:50 +Lake Havasu City,,OTHER,AZ,1/31/2008 18:30 +Westminster,,OTHER,MD,1/31/2008 21:00 +Irvine,,CIRCLE,CA,1/31/2008 21:50 +Athens,,OTHER,TX,1/31/2008 23:15 +Delray Beach,,TRIANGLE,FL,2/1/2008 0:00 +Orlando,,TRIANGLE,FL,2/1/2008 0:25 +Port Neches,,CIGAR,TX,2/1/2008 1:30 +Daytona Beach to Tampa,,TEARDROP,FL,2/1/2008 4:30 +Santa Barbara,,FORMATION,CA,2/1/2008 5:00 +Sanford,,OTHER,FL,2/1/2008 6:00 +Mesa,,LIGHT,AZ,2/1/2008 7:15 +Olympia,,RECTANGLE,WA,2/1/2008 7:15 +Apache Junction,,TRIANGLE,AZ,2/1/2008 15:00 +Garden Grove,,LIGHT,CA,2/1/2008 20:00 +Hilton Head,,,SC,2/1/2008 20:00 +Folcroft,,FIREBALL,PA,2/1/2008 21:00 +Garden Grove,GREEN,LIGHT,CA,2/1/2008 21:12 +Eustis,,VARIOUS,FL,2/1/2008 22:00 +New York City,,CROSS,NY,2/2/2008 6:20 +Clementon,,OTHER,NJ,2/2/2008 10:00 +Houston,,SPHERE,TX,2/2/2008 12:30 +Islandia,,CIRCLE,NY,2/2/2008 13:00 +Mesa,,OVAL,AZ,2/2/2008 17:45 +Carney,,LIGHT,MD,2/2/2008 19:00 +Flippin,GREEN,,AR,2/2/2008 21:00 +Newport News,ORANGE,SPHERE,VA,2/2/2008 21:50 +Liberty Twp,,,OH,2/3/2008 1:00 +Victorville,,FIREBALL,CA,2/3/2008 17:30 +Napavine,,LIGHT,WA,2/3/2008 18:58 +Billings,,LIGHT,MT,2/3/2008 19:30 +Madison,,CHEVRON,TN,2/3/2008 22:30 +San Francisco,,FORMATION,CA,2/4/2008 2:00 +Concord,,CIGAR,NH,2/4/2008 11:45 +Granite Bay,,OTHER,CA,2/4/2008 20:05 +Phoenix,,OTHER,AZ,2/4/2008 20:30 +Encinal,,FORMATION,TX,2/4/2008 20:50 +Jasper,,CIRCLE,AR,2/4/2008 21:00 +Somerville County,BLUE,CIRCLE,TX,2/4/2008 22:38 +Easton,GREEN,TRIANGLE,PA,2/4/2008 23:00 +Shephredstown,,LIGHT,WV,2/5/2008 6:00 +Menifee,,CIRCLE,CA,2/5/2008 12:40 +Spokane,,RECTANGLE,WA,2/5/2008 19:10 +Silver Springs,RED,,FL,2/5/2008 20:05 +Colorado Springs,,TRIANGLE,CO,2/5/2008 21:00 +Miami,,CIRCLE,FL,2/5/2008 22:00 +New Iberia,,CIGAR,LA,2/6/2008 7:30 +Anchorage,,LIGHT,AK,2/6/2008 19:00 +Gainesville,,FORMATION,GA,2/6/2008 19:25 +Laguna Niguel,,FIREBALL,CA,2/6/2008 21:05 +Garden Grove,BLUE,FLASH,CA,2/6/2008 21:30 +Encinal,,SPHERE,TX,2/6/2008 22:00 +Gulfport,,CIRCLE,MS,2/6/2008 22:00 +Philadelphia,BLUE,LIGHT,PA,2/6/2008 22:45 +San Jose,,,CA,2/6/2008 23:00 +San Jose,,,CA,2/6/2008 23:00 +Manhattan Beach,,LIGHT,CA,2/7/2008 1:25 +West Memphis,,CIRCLE,AR,2/7/2008 3:30 +New York City,,LIGHT,NY,2/7/2008 6:00 +New York City,,,NY,2/7/2008 6:33 +Hampton,ORANGE,OVAL,FL,2/7/2008 7:46 +Virginia Beach,,OVAL,VA,2/7/2008 11:30 +Lehigh Acres,,,FL,2/7/2008 14:00 +Lehigh Acres,,CYLINDER,FL,2/7/2008 14:00 +Palmyra,GREEN,FIREBALL,PA,2/7/2008 18:30 +Harrisburg,,DISK,PA,2/7/2008 18:56 +Parkesburg,,,PA,2/7/2008 21:00 +Wallace,,OTHER,NC,2/8/2008 11:32 +Dallas,,CIGAR,TX,2/8/2008 13:30 +Arizona,,,AZ,2/8/2008 15:30 +Havre,,TRIANGLE,MT,2/8/2008 18:00 +Carlsbad,RED BLUE,OTHER,CA,2/8/2008 18:20 +Plano,RED,CIRCLE,TX,2/8/2008 20:20 +Corpus Christi,,CIRCLE,TX,2/8/2008 20:30 +Laredo,,OTHER,TX,2/8/2008 21:30 +Fort Collins,,LIGHT,CO,2/9/2008 0:00 +Plain Dealing,,,LA,2/9/2008 2:30 +Covina,,RECTANGLE,CA,2/9/2008 9:00 +Ukiah,,DISK,CA,2/9/2008 10:55 +Rome,,LIGHT,GA,2/9/2008 11:15 +Brentwood,,OVAL,TN,2/9/2008 12:45 +Dana Point,,DISK,CA,2/9/2008 13:00 +Dallas,,CIRCLE,TX,2/9/2008 15:00 +Baileyton,,TRIANGLE,TN,2/9/2008 18:00 +Greeneville,GREEN,OVAL,TN,2/9/2008 18:00 +San Francisco,,VARIOUS,CA,2/9/2008 19:30 +no data,,CIRCLE,VA,2/9/2008 23:30 +Parkersburg,,TRIANGLE,WV,2/10/2008 1:59 +Columbia,,LIGHT,TN,2/10/2008 2:45 +Corona,BLUE,EGG,CA,2/10/2008 10:30 +Paris,,CIGAR,TX,2/10/2008 11:00 +Fincastle,,FORMATION,VA,2/10/2008 20:41 +Hastings,,,MI,2/10/2008 21:45 +Whittier,,LIGHT,CA,2/11/2008 1:00 +Cincinnati,ORANGE,OVAL,OH,2/11/2008 2:01 +Yorkville,,VARIOUS,IL,2/11/2008 4:00 +Palm Bay,,,FL,2/11/2008 8:39 +Lancaster,,,PA,2/11/2008 12:00 +Burbank,,SPHERE,CA,2/11/2008 15:05 +Berkley,,,MI,2/11/2008 18:00 +Stroudsburg,,,PA,2/11/2008 21:00 +Clinton,,LIGHT,NJ,2/11/2008 21:15 +Winsted,BLUE,SPHERE,CT,2/11/2008 22:30 +Galena,RED,LIGHT,KS,2/11/2008 23:00 +Nebraska City,,CIRCLE,NE,2/11/2008 23:00 +Tijeras,,TRIANGLE,NM,2/11/2008 23:00 +Newport,,TRIANGLE,OR,2/12/2008 1:00 +Tullahoma,RED GREEN,EGG,TN,2/12/2008 1:00 +Wells,,LIGHT,TX,2/12/2008 1:00 +Scottsdale,,,AZ,2/12/2008 5:20 +Carlsbad,,CYLINDER,CA,2/12/2008 7:45 +El Paso,,LIGHT,TX,2/12/2008 13:30 +Wheat RIdge,,CHEVRON,CO,2/12/2008 17:30 +Cloverdale,,DISK,CA,2/12/2008 18:45 +Fayetteville,,CHEVRON,GA,2/12/2008 19:11 +Bremerton,RED,LIGHT,WA,2/12/2008 19:15 +Jenison,,TRIANGLE,MI,2/12/2008 19:50 +Weatherford,,FORMATION,TX,2/12/2008 21:00 +Massillon,,,OH,2/12/2008 21:40 +Los Gatos,,CIRCLE,CA,2/12/2008 21:58 +Winlock,,LIGHT,WA,2/13/2008 10:30 +Miami Beach,,TRIANGLE,FL,2/13/2008 18:00 +Phoenix,,LIGHT,AZ,2/13/2008 18:01 +Coal Valley,,LIGHT,IL,2/13/2008 18:15 +Reno,,OTHER,NV,2/13/2008 19:32 +Alton,,OVAL,MO,2/13/2008 19:38 +Safford,,DISK,AZ,2/13/2008 20:15 +Las Vegas,,CIGAR,NV,2/13/2008 20:30 +Cape Coral,,LIGHT,FL,2/13/2008 21:07 +Carrollton,,OTHER,TX,2/13/2008 21:54 +Cape Coral,,LIGHT,FL,2/13/2008 22:04 +Hammon,BLUE,LIGHT,OK,2/13/2008 22:17 +Ayden,,OVAL,NC,2/13/2008 23:30 +Mesa,,SPHERE,AZ,2/14/2008 0:00 +Kalamazoo,,VARIOUS,MI,2/14/2008 5:32 +Los Angeles County,,,CA,2/14/2008 8:40 +Ashby,,LIGHT,MA,2/14/2008 11:11 +Tucson,,CIGAR,AZ,2/14/2008 12:42 +Newport News,,DISK,VA,2/14/2008 13:00 +Cass Lake,,DISK,MN,2/14/2008 16:20 +Wall,,LIGHT,NJ,2/14/2008 18:00 +Jackson,,LIGHT,NJ,2/14/2008 19:00 +Rachel,,LIGHT,WV,2/14/2008 19:30 +Brookings,,OTHER,OR,2/14/2008 20:00 +Caufield,,LIGHT,MO,2/14/2008 20:00 +Annville,GREEN,DIAMOND,PA,2/14/2008 20:45 +Philadelphia,RED,SPHERE,PA,2/14/2008 23:00 +Worland,,OVAL,WY,2/15/2008 5:00 +Los Angeles,RED,LIGHT,CA,2/15/2008 11:30 +Reno,,LIGHT,NV,2/15/2008 18:15 +Carlsbad,,LIGHT,CA,2/15/2008 19:34 +Delray Beach,RED,CHEVRON,FL,2/15/2008 19:45 +Worley,,,ID,2/15/2008 22:00 +Richmond,,VARIOUS,VA,2/16/2008 0:00 +Rockaway Beach,,DIAMOND,NY,2/16/2008 3:35 +Atlanta,,OTHER,GA,2/16/2008 12:30 +Seattle,,LIGHT,WA,2/16/2008 12:54 +Laughlin,,DISK,NV,2/16/2008 13:50 +Rachel,,OTHER,NV,2/16/2008 17:52 +San Francisco,,TRIANGLE,CA,2/16/2008 18:15 +Albany,,CIRCLE,OR,2/16/2008 18:30 +Nashville,,,TN,2/16/2008 20:00 +Hurricane,GREEN,DISK,UT,2/16/2008 20:20 +Williamsburg,,LIGHT,VA,2/16/2008 20:30 +Sacramento,,FLASH,CA,2/16/2008 23:00 +Haslett,,TRIANGLE,MI,2/17/2008 0:00 +Hastings On Hudson,YELLOW,SPHERE,NY,2/17/2008 1:20 +Carlsbad,,LIGHT,CA,2/17/2008 1:50 +Orange,,OVAL,TX,2/17/2008 2:45 +Paramus,,CYLINDER,NJ,2/17/2008 6:48 +Polk City,,CIRCLE,FL,2/17/2008 10:00 +San Diego,,FORMATION,CA,2/17/2008 13:30 +Hughson,,VARIOUS,CA,2/17/2008 16:00 +Portland,,OTHER,OR,2/17/2008 17:00 +Grants Pass,,LIGHT,OR,2/17/2008 18:00 +San Francisco,,LIGHT,CA,2/17/2008 19:40 +Fort Collins,,LIGHT,CO,2/17/2008 20:00 +Weddington,,CIRCLE,NC,2/17/2008 20:00 +Mercer Island,,,WA,2/17/2008 20:12 +St. James,,,NY,2/18/2008 1:30 +Leawood,BLUE,LIGHT,KS,2/18/2008 18:00 +Kapaa,,LIGHT,HI,2/18/2008 19:15 +Key West,,,FL,2/18/2008 19:30 +Loves Park,,TRIANGLE,IL,2/18/2008 19:30 +Titusville,,EGG,FL,2/18/2008 19:30 +Kingsford,,LIGHT,MI,2/18/2008 19:45 +Vaughn,RED,LIGHT,NM,2/18/2008 20:30 +White Earth,,DIAMOND,MN,2/18/2008 23:45 +Boring,,FIREBALL,OR,2/19/2008 3:24 +Amity,,,OR,2/19/2008 5:05 +Fruitland,,FLASH,WA,2/19/2008 5:28 +Cheney,,FLASH,WA,2/19/2008 5:30 +Moscow,ORANGE,OTHER,ID,2/19/2008 5:30 +Spokane,,,WA,2/19/2008 5:30 +Spokane,,,WA,2/19/2008 5:30 +Sprague,,FIREBALL,WA,2/19/2008 5:30 +Stevensville,,,MT,2/19/2008 6:50 +Niantic,,LIGHT,CT,2/19/2008 11:00 +Sioux Falls,,OVAL,SD,2/19/2008 17:15 +Johnson City,,LIGHT,TN,2/19/2008 18:20 +Kalama,,DISK,WA,2/19/2008 18:40 +Longmont,,TRIANGLE,CO,2/19/2008 18:40 +Tucson,,TRIANGLE,AZ,2/19/2008 19:00 +Smithland,BLUE,SPHERE,IA,2/19/2008 19:10 +Turnersville,RED,CIGAR,NJ,2/19/2008 19:30 +Buford,,LIGHT,GA,2/19/2008 21:50 +Mt. Pleasant,,CIGAR,SC,2/19/2008 22:00 +Falling Waters,,LIGHT,WV,2/19/2008 23:00 +Arco Dessert,,FIREBALL,ID,2/20/2008 6:00 +Brea,,LIGHT,CA,2/20/2008 8:00 +Claxton,,TRIANGLE,GA,2/20/2008 13:30 +Bloomington,,LIGHT,IL,2/20/2008 18:00 +Charlton,GREEN,CIRCLE,MA,2/20/2008 18:00 +Auburn,,LIGHT,WA,2/20/2008 19:25 +Myrtle Beach,YELLOW,LIGHT,SC,2/20/2008 19:30 +Myrtle Beach,RED,LIGHT,SC,2/20/2008 19:35 +Ray City,,FLASH,GA,2/20/2008 19:44 +Blue Springs,,CIGAR,MO,2/20/2008 19:45 +Myrtle Beach,ORANGE,SPHERE,SC,2/20/2008 19:45 +Los Angeles,,CIRCLE,CA,2/20/2008 20:00 +Penn Valley,,LIGHT,CA,2/20/2008 20:00 +Sharon,,CIRCLE,NH,2/20/2008 20:00 +St. Louis,,TRIANGLE,MO,2/20/2008 20:45 +Burr Ridge,,LIGHT,IL,2/20/2008 20:53 +Sharon,,CIRCLE,NH,2/20/2008 21:00 +Gila Bend,ORANGE,OVAL,AZ,2/20/2008 21:30 +Ideal,,LIGHT,GA,2/20/2008 21:45 +Jacksonville,BLUE,OVAL,FL,2/20/2008 22:00 +Huntingburg,,OVAL,IN,2/20/2008 22:01 +Waldorf,RED,SPHERE,MD,2/20/2008 22:35 +Fayetteville,,CIRCLE,NC,2/20/2008 22:40 +Jacksonville,,LIGHT,FL,2/20/2008 22:55 +Bethel,,DISK,ME,2/20/2008 23:00 +New Durham,,CIRCLE,NH,2/20/2008 23:15 +Puyallup,,CHEVRON,WA,2/20/2008 23:15 +Seattle,,DISK,WA,2/21/2008 0:00 +Butte,,LIGHT,MT,2/21/2008 1:38 +Manheim,GREEN,LIGHT,PA,2/21/2008 2:00 +Galena,,LIGHT,KS,2/21/2008 7:00 +Fredericksburg,,RECTANGLE,VA,2/21/2008 9:45 +San Jose,,TEARDROP,CA,2/21/2008 13:38 +Armada,RED,CIGAR,MI,2/21/2008 17:30 +Corpus Christi,,LIGHT,TX,2/21/2008 18:00 +Providence,,OTHER,RI,2/21/2008 18:00 +Oscoda,YELLOW,CYLINDER,MI,2/21/2008 19:30 +Purdy,,EGG,NY,2/21/2008 19:30 +Converse,,LIGHT,IN,2/21/2008 20:06 +Oklahoma City,RED,CIRCLE,OK,2/21/2008 20:30 +Hoyt Lakes,,SPHERE,MN,2/21/2008 20:39 +Fort Worth,,CIRCLE,TX,2/21/2008 22:15 +Kimbolton,,SPHERE,OH,2/22/2008 1:30 +Susquehanna,,LIGHT,PA,2/22/2008 2:00 +Stevens Pass,,CIRCLE,WA,2/22/2008 13:00 +Miami,,CIRCLE,FL,2/22/2008 14:00 +Deham Springs,,SPHERE,LA,2/22/2008 18:30 +Murrieta,,TRIANGLE,CA,2/22/2008 18:30 +Santa Fe,,FIREBALL,NM,2/22/2008 18:50 +Huntington Beach,,DISK,CA,2/22/2008 19:00 +Lake Du Bay,GREEN,FIREBALL,WI,2/22/2008 20:00 +Castro Valley,,DISK,CA,2/22/2008 20:10 +Cincinnati,,RECTANGLE,OH,2/22/2008 20:50 +Wheaton,,LIGHT,IL,2/23/2008 1:38 +Crystal Lake,,FIREBALL,IL,2/23/2008 1:45 +El Paso,,FIREBALL,TX,2/23/2008 13:00 +La Habra,,RECTANGLE,CA,2/23/2008 13:30 +Dunedin,,LIGHT,FL,2/23/2008 19:00 +Goose Creek,,LIGHT,SC,2/23/2008 20:20 +Dutton,,VARIOUS,AL,2/23/2008 21:00 +Florence,RED,OTHER,TX,2/23/2008 21:00 +Carrollton,ORANGE,DISK,GA,2/23/2008 22:00 +Elizabeth,BLUE,SPHERE,NJ,2/24/2008 0:00 +Montvale,,FIREBALL,NJ,2/24/2008 3:52 +San Antonio,,VARIOUS,TX,2/24/2008 15:30 +Montrose,,,CO,2/24/2008 21:50 +Shelton,,FIREBALL,CT,2/24/2008 22:15 +Riverside,RED,CIRCLE,CA,2/24/2008 23:00 +Wharton,,OTHER,NJ,2/24/2008 23:05 +Sayville,,LIGHT,NY,2/25/2008 9:00 +Benicia,,TRIANGLE,CA,2/25/2008 11:50 +San Francisco,,SPHERE,CA,2/25/2008 13:00 +Brownsville,BLUE,CYLINDER,TX,2/25/2008 18:15 +Jericho,,OTHER,NY,2/25/2008 18:58 +Napa,ORANGE,LIGHT,CA,2/25/2008 19:30 +Phoenix,,,AZ,2/25/2008 20:00 +Greenville,,LIGHT,NC,2/25/2008 20:20 +Lake Worth,,CIRCLE,FL,2/25/2008 20:30 +Port Saint Lucie,,FLASH,FL,2/25/2008 23:32 +Dallas,,TRIANGLE,TX,2/26/2008 0:25 +Long Beach,,TRIANGLE,CA,2/26/2008 1:00 +Mastic,,RECTANGLE,NY,2/26/2008 1:00 +San Fernando,,CIGAR,CA,2/26/2008 15:30 +Marlboro,,,VT,2/26/2008 17:42 +Green Valley,GREEN,TRIANGLE,AZ,2/26/2008 21:00 +Green Valley,GREEN,TRIANGLE,AZ,2/26/2008 21:00 +Live Oak,,SPHERE,FL,2/26/2008 21:30 +Tacoma,,TRIANGLE,WA,2/27/2008 0:12 +Cardiff,RED GREEN BLUE,VARIOUS,CA,2/27/2008 0:17 +Ann Arbor,,LIGHT,MI,2/27/2008 6:32 +College Station,,TRIANGLE,TX,2/27/2008 9:00 +Lee Vining,BLUE,RECTANGLE,CA,2/27/2008 18:00 +Chesterfield,,OTHER,MO,2/27/2008 19:00 +San Diego,,DISK,CA,2/27/2008 19:00 +Coral Springs,,CIRCLE,FL,2/27/2008 19:10 +North Aurora,,LIGHT,IL,2/27/2008 19:15 +Havelock,,TRIANGLE,NC,2/27/2008 19:44 +Laguna Niguel,ORANGE YELLOW,CHEVRON,CA,2/27/2008 19:45 +Alpine,GREEN,TRIANGLE,TX,2/27/2008 21:00 +Enid,,DISK,OK,2/27/2008 21:00 +Lake Havasu City,,OVAL,AZ,2/27/2008 21:00 +Foothill Ranch,,LIGHT,CA,2/27/2008 21:45 +Austin,,CHEVRON,TX,2/27/2008 22:25 +Santa Fe,,CHEVRON,NM,2/27/2008 22:30 +Owasso,RED,TRIANGLE,OK,2/27/2008 22:43 +Dublin,,DIAMOND,CA,2/27/2008 23:00 +Albany,,OTHER,GA,2/28/2008 3:40 +Fort Worth,,SPHERE,TX,2/28/2008 11:30 +Hickory,,,NC,2/28/2008 12:00 +Reno,,SPHERE,NV,2/28/2008 15:00 +Huntington,,DISK,WV,2/28/2008 16:00 +Salem,,LIGHT,VA,2/28/2008 17:30 +Gulfport,,LIGHT,MS,2/28/2008 18:30 +Washingtonville,,FIREBALL,NY,2/28/2008 19:30 +Allendale,,TRIANGLE,CA,2/28/2008 22:00 +Virginia Beach,,CIRCLE,VA,2/28/2008 22:02 +Lakeview Estates,,CIGAR,MO,2/29/2008 2:00 +Durant,,RECTANGLE,OK,2/29/2008 3:21 +Elm City,,,NC,2/29/2008 7:04 +Omaha,,LIGHT,NE,2/29/2008 12:00 +Jackson,,VARIOUS,MS,2/29/2008 17:45 +Otis,,,OR,2/29/2008 19:10 +Celta,,FIREBALL,PA,2/29/2008 21:00 +Memphis,,VARIOUS,TN,2/29/2008 21:00 +Broken Arrow,,LIGHT,OK,2/29/2008 22:02 +Minneapolis,,TRIANGLE,KS,2/29/2008 23:00 +Tucson,,TRIANGLE,AZ,3/1/2008 6:00 +Chico,,LIGHT,CA,3/1/2008 14:00 +Huntington Park,,VARIOUS,CA,3/1/2008 14:00 +Phoenix,,OTHER,AZ,3/1/2008 14:00 +Georgetown,,,MA,3/1/2008 17:30 +Circleville,,,OH,3/1/2008 18:30 +Ryan,,FORMATION,OK,3/1/2008 19:30 +Knights Ferry,,CHEVRON,CA,3/1/2008 20:30 +Indianapolis,,DISK,IN,3/1/2008 21:00 +Jefferson City,,TRIANGLE,MO,3/1/2008 21:00 +Albemarle,,CHEVRON,NC,3/1/2008 23:00 +Winter Park,,DISK,FL,3/2/2008 10:00 +San Francisco,,SPHERE,CA,3/2/2008 14:00 +Portland,,FORMATION,OR,3/2/2008 19:30 +Salem,ORANGE,LIGHT,MO,3/2/2008 19:30 +Millbrae,,TRIANGLE,CA,3/2/2008 19:35 +Eugene,,LIGHT,OR,3/2/2008 20:30 +San Diego,,,CA,3/2/2008 20:30 +San Francisco,,FORMATION,CA,3/2/2008 21:45 +Coral Gables,,DISK,FL,3/2/2008 21:50 +Canoga Park,,,CA,3/2/2008 22:00 +Batavia,,SPHERE,OH,3/2/2008 23:00 +Gretna,,LIGHT,LA,3/2/2008 23:30 +Long Beach,,OVAL,CA,3/3/2008 17:45 +Seattle,YELLOW,LIGHT,WA,3/3/2008 21:00 +Millersville,,CIRCLE,PA,3/3/2008 21:15 +Bloomingdale,,TRIANGLE,GA,3/3/2008 21:45 +Caney,,FORMATION,KS,3/3/2008 23:00 +Roper,,LIGHT,NC,3/4/2008 0:00 +Milton,,,MA,3/4/2008 1:15 +Homestead AFB,,TRIANGLE,FL,3/4/2008 3:55 +Calimesa,,SPHERE,CA,3/4/2008 12:25 +Missoula,BLUE,TRIANGLE,MT,3/4/2008 22:30 +Fort Lauderdale,,TRIANGLE,FL,3/5/2008 3:20 +Houston,,VARIOUS,TX,3/5/2008 5:40 +San Francisco,,FORMATION,CA,3/5/2008 6:28 +Bowling Green,,OVAL,OH,3/5/2008 9:30 +New Mexico,,DISK,AZ,3/5/2008 17:30 +Jacksonville,,TRIANGLE,FL,3/5/2008 20:00 +Woodbridge,,LIGHT,VA,3/5/2008 20:00 +Southport,,FIREBALL,NC,3/5/2008 22:00 +Mardela springs,ORANGE,SPHERE,MD,3/5/2008 22:05 +Brentwood,YELLOW,SPHERE,TN,3/5/2008 22:32 +Alton,,,NH,3/5/2008 23:00 +Bridgeville,,LIGHT,DE,3/5/2008 23:45 +Springfield,,DIAMOND,VA,3/6/2008 0:00 +Barnstable,BLUE,SPHERE,MA,3/6/2008 4:15 +Belmont,,FIREBALL,MA,3/6/2008 4:15 +Murphy,,LIGHT,OR,3/6/2008 5:17 +Eugene,,DISK,OR,3/6/2008 7:28 +Spring Hill,,DISK,TN,3/6/2008 13:00 +Chicago,,,IL,3/6/2008 17:50 +Altoona,,LIGHT,IA,3/6/2008 18:00 +Quaker Hill,,DISK,CT,3/6/2008 18:15 +Des Moines,,,IA,3/6/2008 18:30 +Manchester,,LIGHT,KY,3/6/2008 19:00 +Columbia City,,FIREBALL,IN,3/6/2008 20:00 +Kokomo,,CIRCLE,IN,3/6/2008 20:00 +Kokomo,ORANGE,LIGHT,IN,3/6/2008 20:00 +Peru,ORANGE,FORMATION,IN,3/6/2008 20:00 +Culver,,FORMATION,IN,3/6/2008 20:03 +Gig Harbor,,CYLINDER,WA,3/6/2008 21:45 +Gig Harbor,,CIGAR,WA,3/6/2008 22:00 +Altoona,,,PA,3/6/2008 22:30 +Springfield,,LIGHT,MO,3/7/2008 0:00 +Fontana,,LIGHT,CA,3/7/2008 12:00 +Phoenix,BLUE,SPHERE,AZ,3/7/2008 14:00 +Destin,,,FL,3/7/2008 15:40 +Delafield,,CYLINDER,WI,3/7/2008 17:55 +Crown Point,,OTHER,IN,3/7/2008 21:30 +Texas City,GREEN,CIRCLE,TX,3/7/2008 22:40 +Kalamazoo,,LIGHT,MI,3/8/2008 1:00 +Terrell,,DISK,TX,3/8/2008 1:15 +La Luz,RED,OVAL,NM,3/8/2008 2:45 +Sandy springs,,OVAL,GA,3/8/2008 9:00 +Ennis,,SPHERE,TX,3/8/2008 11:55 +Tulsa,,VARIOUS,OK,3/8/2008 14:50 +Breinigsville,ORANGE,LIGHT,PA,3/8/2008 17:30 +Holtwood,,,PA,3/8/2008 19:00 +Maybrook,ORANGE,DISK,NY,3/8/2008 19:30 +Wabash,ORANGE,LIGHT,IN,3/8/2008 20:05 +Pembroke Pines,,LIGHT,FL,3/8/2008 20:30 +Salisbury,,CYLINDER,NC,3/8/2008 21:00 +Clinton Township,,CROSS,MI,3/8/2008 21:25 +Gastonia,RED ORANGE,LIGHT,NC,3/8/2008 22:30 +Vallejo,GREEN,OTHER,CA,3/8/2008 22:30 +Chandler,,SPHERE,AZ,3/9/2008 5:00 +Elizabethtown,,,KY,3/9/2008 6:00 +Freehold,,OVAL,NJ,3/9/2008 12:30 +Casa Grande,,LIGHT,AZ,3/9/2008 15:00 +San Jose,,SPHERE,CA,3/9/2008 16:00 +Rialto,,DISK,CA,3/9/2008 17:15 +Odessa,,EGG,FL,3/9/2008 19:00 +Lewisburg,RED GREEN,LIGHT,TN,3/9/2008 19:30 +Evansville,,LIGHT,IN,3/9/2008 19:48 +Tarentum,,CHEVRON,PA,3/9/2008 21:30 +Walker,,OTHER,LA,3/9/2008 22:30 +Naples,,LIGHT,FL,3/10/2008 5:45 +Orlando,BLUE,EGG,FL,3/10/2008 6:37 +Big Rapids,YELLOW,FIREBALL,MI,3/10/2008 7:10 +Fort Collins,,OVAL,CO,3/10/2008 7:30 +Nashville,,LIGHT,TN,3/10/2008 9:20 +Dublin,,OTHER,GA,3/10/2008 11:04 +Las Vegas,,LIGHT,NV,3/10/2008 13:30 +Pueblo,RED,OVAL,CO,3/10/2008 19:54 +Hampton,,SPHERE,VA,3/10/2008 20:57 +Goodlettsville,,,TN,3/10/2008 21:00 +Little Rock,,,AR,3/10/2008 21:15 +Bergen,,CHEVRON,NY,3/10/2008 22:10 +Willimantic,,DIAMOND,CT,3/11/2008 0:00 +Hoquiam,,DISK,WA,3/11/2008 1:00 +Keene,,LIGHT,NH,3/11/2008 3:00 +Palm Bay,,DISK,FL,3/11/2008 7:30 +Annandale,RED,FIREBALL,NJ,3/11/2008 9:40 +Upper Saddle River,,FIREBALL,NJ,3/11/2008 10:00 +North Fort Myers,,CIRCLE,FL,3/11/2008 19:00 +Woodlands,,OVAL,TX,3/11/2008 21:45 +Challis,ORANGE,CHEVRON,ID,3/11/2008 22:00 +Challis,,TRIANGLE,ID,3/11/2008 22:00 +Black River,,SPHERE,NY,3/12/2008 0:00 +Santa Cruz,,RECTANGLE,CA,3/12/2008 0:50 +Lake Elmo,,,MN,3/12/2008 1:00 +Redlands,ORANGE,OVAL,CA,3/12/2008 22:20 +Paducah,,DISK,KY,3/13/2008 0:00 +Greenwood,,CIGAR,IN,3/13/2008 0:58 +Louisville,,FORMATION,KY,3/13/2008 2:00 +Simi Valley,RED,SPHERE,CA,3/13/2008 3:05 +Sandston,,TRIANGLE,VA,3/13/2008 5:30 +Coolidge,,CYLINDER,GA,3/13/2008 12:00 +Milpitas,,OTHER,CA,3/13/2008 18:54 +Carlsbad,RED,CHEVRON,CA,3/13/2008 20:28 +Albuquerque,,LIGHT,NM,3/13/2008 20:45 +Tuscaloosa,,OTHER,AL,3/14/2008 4:00 +Wichita,,CIGAR,KS,3/14/2008 12:00 +Santa Ana,,DISK,CA,3/14/2008 13:40 +Denver,,OTHER,CO,3/14/2008 19:00 +St. Petersburg,,LIGHT,FL,3/14/2008 20:35 +Carbondale,,,CO,3/14/2008 21:00 +North Brunswick,,FLASH,NJ,3/14/2008 23:00 +Flemingsburg,,SPHERE,KY,3/15/2008 0:00 +Okeechobee,,,FL,3/15/2008 1:45 +Destin,,LIGHT,FL,3/15/2008 2:00 +Miami,,OTHER,FL,3/15/2008 2:00 +West Palm Beach,,FIREBALL,FL,3/15/2008 2:15 +Ft. Lauderdale,ORANGE,LIGHT,FL,3/15/2008 2:30 +Crestline,,SPHERE,CA,3/15/2008 14:00 +Winston-Salem,BLUE,TRIANGLE,NC,3/15/2008 14:00 +Tempe,,LIGHT,AZ,3/15/2008 18:00 +Buckeye,,CIRCLE,AZ,3/15/2008 18:43 +Tucson,RED,FIREBALL,AZ,3/15/2008 19:00 +Nine Mile Falls,RED ORANGE,FIREBALL,WA,3/15/2008 20:00 +Wadesboro,RED,FORMATION,NC,3/15/2008 21:30 +Phoenix,,LIGHT,AZ,3/15/2008 22:40 +Fortuna,ORANGE,SPHERE,CA,3/15/2008 23:00 +Letart,,LIGHT,WV,3/15/2008 23:15 +Cincinnati,,RECTANGLE,OH,3/15/2008 23:45 +West Haven,,TRIANGLE,CT,3/16/2008 2:00 +Solome,BLUE,LIGHT,AZ,3/16/2008 2:05 +Little Rock,GREEN,TRIANGLE,IA,3/16/2008 2:30 +no data,,,NM,3/16/2008 3:00 +Deming,GREEN,LIGHT,NM,3/16/2008 3:15 +Prineville,,OTHER,OR,3/16/2008 14:30 +San Diego,ORANGE,FORMATION,CA,3/16/2008 20:35 +Martinsburg,RED,CIRCLE,WV,3/16/2008 21:30 +Birmingham,BLUE,TRIANGLE,AL,3/16/2008 23:16 +Glendale,,DISK,AZ,3/17/2008 13:00 +Potsdam,,VARIOUS,NY,3/17/2008 20:45 +Snellville,RED,,GA,3/17/2008 21:30 +Yonkers,,RECTANGLE,NY,3/17/2008 22:00 +Lake Villa,,TRIANGLE,IL,3/17/2008 23:00 +Gosport,,TRIANGLE,KY,3/18/2008 0:00 +Lagrange,,CYLINDER,OH,3/18/2008 3:00 +Toms River,,RECTANGLE,NJ,3/18/2008 17:00 +Milroy,,CIGAR,PA,3/18/2008 18:45 +Highland,RED ORANGE,,WI,3/18/2008 20:45 +Cherry Valley,,SPHERE,NY,3/18/2008 21:00 +Gibson,,TRIANGLE,GA,3/18/2008 22:00 +Tofte,,OVAL,MN,3/19/2008 3:15 +San Francisco,YELLOW,,CA,3/19/2008 3:52 +Scottsdale,,TRIANGLE,AZ,3/19/2008 5:28 +Lenhartsville Exit,,TRIANGLE,PA,3/19/2008 5:30 +Redmond,RED,OVAL,WA,3/19/2008 7:20 +Palm Springs,,OTHER,CA,3/19/2008 19:45 +Palominas,,LIGHT,AZ,3/19/2008 19:45 +Golden Valley,,TRIANGLE,AZ,3/19/2008 20:52 +Austin,,TRIANGLE,TX,3/19/2008 23:30 +Oceanside,,SPHERE,CA,3/20/2008 0:00 +Monroeville,,,NJ,3/20/2008 3:35 +Kearny,,CIRCLE,NJ,3/20/2008 10:00 +Glastonbury,,CIGAR,CT,3/20/2008 13:00 +Beaverton,BLUE,OVAL,OR,3/20/2008 13:35 +Dallas,,CIGAR,TX,3/20/2008 16:10 +Carlsbad,,CIRCLE,NM,3/20/2008 17:00 +Humble,,TRIANGLE,TX,3/20/2008 19:50 +Kirkland,,DISK,WA,3/20/2008 21:05 +Lehighton,,OVAL,PA,3/20/2008 21:45 +Rocky Mount,,,NC,3/20/2008 22:00 +Smithville,,TEARDROP,OH,3/20/2008 22:30 +West Monroe,,FLASH,LA,3/21/2008 1:15 +New Braintree,,OTHER,MA,3/21/2008 2:25 +Borden Springs,,CIGAR,AL,3/21/2008 5:45 +Orlando,BLUE,LIGHT,FL,3/21/2008 5:45 +Lexington,,TRIANGLE,KY,3/21/2008 8:59 +Calabasas,,OVAL,CA,3/21/2008 9:10 +Charlotte,,CIRCLE,NC,3/21/2008 12:55 +Charlotte,,CIRCLE,NC,3/21/2008 12:55 +Melbourne,,RECTANGLE,FL,3/21/2008 13:00 +Isabella,,VARIOUS,CA,3/21/2008 19:30 +Charlotte,GREEN,LIGHT,NC,3/21/2008 20:00 +Lake Isabella,,CHEVRON,CA,3/21/2008 21:00 +Woodstock,GREEN,FIREBALL,GA,3/21/2008 21:00 +Fremont,,FORMATION,CA,3/21/2008 21:20 +Baltimore,,,MD,3/21/2008 21:41 +Reno,,VARIOUS,NV,3/21/2008 23:45 +Nampa,,LIGHT,ID,3/22/2008 0:25 +Austin,ORANGE,LIGHT,TX,3/22/2008 2:30 +Gallup,,VARIOUS,NM,3/22/2008 14:00 +Covington,,,LA,3/22/2008 18:00 +McComb,,CIRCLE,OH,3/22/2008 18:22 +Center,,FLASH,TX,3/22/2008 20:30 +Lanett,,CIRCLE,AL,3/22/2008 21:00 +Fort Wayne,,DISK,IN,3/22/2008 22:00 +Graton,RED,,CA,3/22/2008 23:00 +Salt Lake City,,OVAL,UT,3/23/2008 0:00 +Amelia,,CYLINDER,OH,3/23/2008 1:30 +Liberty Twp,,,OH,3/23/2008 1:30 +Chicago,,LIGHT,IL,3/23/2008 8:00 +Liverpool,,OVAL,NY,3/23/2008 8:30 +Litchfield Park,,OVAL,AZ,3/23/2008 11:30 +Albuquerque,,FLASH,NM,3/23/2008 12:55 +Berkeley,,VARIOUS,CA,3/23/2008 13:00 +Gallup,,FORMATION,NM,3/23/2008 13:45 +Scottsdale,,LIGHT,AZ,3/23/2008 20:10 +Torrance,,DIAMOND,CA,3/23/2008 21:00 +Union,,,NJ,3/23/2008 22:30 +Hazard,BLUE,DIAMOND,KY,3/23/2008 23:50 +Tahoe City,,,CA,3/24/2008 0:40 +Tahoe City,,,CA,3/24/2008 1:15 +Meridian,,OTHER,ID,3/24/2008 1:30 +Canonsburg,,LIGHT,PA,3/24/2008 4:00 +Campbell Hall,,TRIANGLE,NY,3/24/2008 5:00 +Sedona,,DISK,AZ,3/24/2008 16:13 +Modesto,,CIRCLE,CA,3/24/2008 16:43 +Paris,,DISK,TX,3/24/2008 17:38 +Hamlin,,SPHERE,NY,3/24/2008 20:07 +Chandler,,TRIANGLE,AZ,3/24/2008 20:10 +Santa Barbara,,CHEVRON,CA,3/24/2008 20:30 +Minster,,FLASH,OH,3/24/2008 20:40 +Las Cruces,,,NM,3/24/2008 20:45 +Hastings,,TRIANGLE,MI,3/24/2008 21:15 +San Diego,,TRIANGLE,CA,3/24/2008 22:00 +Sykesville,,OVAL,PA,3/24/2008 22:00 +Sioux Falls,,TRIANGLE,SD,3/24/2008 22:15 +Los Angeles,,CONE,CA,3/25/2008 20:08 +Los Angeles,,EGG,CA,3/25/2008 20:08 +Redlands,,LIGHT,CA,3/25/2008 20:10 +Wichita Falls,,VARIOUS,TX,3/25/2008 20:20 +Rayne,,LIGHT,LA,3/25/2008 20:30 +Freer,,,TX,3/25/2008 20:45 +Phoenix,,SPHERE,AZ,3/25/2008 21:13 +Solvang,,VARIOUS,CA,3/25/2008 21:45 +Wolfforth,,LIGHT,TX,3/25/2008 21:50 +Owasso,,TRIANGLE,OK,3/25/2008 22:42 +Jamestown,YELLOW BLUE,LIGHT,NY,3/25/2008 23:00 +Orange,,VARIOUS,CA,3/25/2008 23:00 +Benson,,TRIANGLE,AZ,3/26/2008 0:00 +Berkeley,,OVAL,CA,3/26/2008 0:00 +Cape Elizabeth,,DISK,ME,3/26/2008 13:07 +Albuquerque,,LIGHT,NM,3/26/2008 20:00 +Valrico,,LIGHT,FL,3/26/2008 20:21 +Edinboro,ORANGE,LIGHT,PA,3/26/2008 20:30 +Hatteras Village,ORANGE,LIGHT,NC,3/26/2008 20:30 +Kaysville,,LIGHT,UT,3/26/2008 21:00 +Napa,,TRIANGLE,CA,3/26/2008 21:07 +Greenbrier,,TRIANGLE,AR,3/26/2008 22:30 +Montcalm,,CIRCLE,WV,3/27/2008 20:00 +Augusta,,FLASH,GA,3/27/2008 20:50 +Joseph,,LIGHT,OR,3/27/2008 20:50 +Raleigh,,TRIANGLE,NC,3/27/2008 21:35 +Clarkston,RED,OTHER,WA,3/27/2008 21:50 +Fort Atkinson,,FORMATION,WI,3/27/2008 22:00 +Jacksonville,,TRIANGLE,FL,3/27/2008 22:00 +Pope AFB,,TRIANGLE,NC,3/27/2008 22:00 +Huron County,,LIGHT,OH,3/27/2008 23:00 +Sacramento,RED YELLOW GREEN,,CA,3/27/2008 23:30 +Yakima,,TRIANGLE,WA,3/27/2008 23:40 +Las Cruces,,LIGHT,NM,3/28/2008 0:05 +Fulton,,,TX,3/28/2008 3:30 +Pacific,,,WA,3/28/2008 5:40 +Westfir,,EGG,OR,3/28/2008 12:00 +Shelby,ORANGE,LIGHT,NC,3/28/2008 20:30 +Carriere,,LIGHT,MS,3/28/2008 21:20 +Los Lunas,ORANGE,CIRCLE,NM,3/29/2008 0:05 +Sayre,,CIGAR,PA,3/29/2008 1:00 +Anchorage,,DISK,AK,3/29/2008 11:00 +Anchorage,RED,DISK,AK,3/29/2008 11:00 +Salton Sea,,EGG,CA,3/29/2008 14:30 +Butte,,TEARDROP,MT,3/29/2008 20:00 +Canyon Country,,DISK,CA,3/29/2008 20:30 +Marietta,,RECTANGLE,GA,3/29/2008 22:30 +Inverness,,,FL,3/29/2008 22:50 +Lancaster,,TRIANGLE,PA,3/29/2008 22:50 +Hancock,,FIREBALL,MD,3/30/2008 3:10 +Fishers,,OVAL,IN,3/30/2008 4:35 +Phoenix,,CONE,AZ,3/30/2008 8:30 +Flushing,,CYLINDER,NY,3/30/2008 14:00 +Eugene,,,OR,3/30/2008 20:00 +Hampton,,,NH,3/30/2008 21:15 +Lake Buena Vista,,DISK,FL,3/30/2008 22:00 +Lake Buena Vista,,DISK,FL,3/30/2008 22:00 +Sayville,RED GREEN,DISK,NY,3/30/2008 22:30 +Mattituck,,TRIANGLE,NY,3/30/2008 22:45 +Edinboro,RED,SPHERE,PA,3/30/2008 23:00 +Eagle River,,LIGHT,AK,3/31/2008 0:00 +Newport,,TRIANGLE,RI,3/31/2008 1:00 +Topeka,,FIREBALL,KS,3/31/2008 20:20 +Monterey Park,RED,FIREBALL,CA,3/31/2008 22:35 +Fort Lauderdale,,,FL,3/31/2008 23:50 +Covina,,TRIANGLE,CA,4/1/2008 0:55 +Tuscaloosa,RED,OTHER,AL,4/1/2008 3:30 +Homer Glen,,LIGHT,IL,4/1/2008 5:30 +Escondido,BLUE,LIGHT,CA,4/1/2008 8:00 +Orange,,CIGAR,TX,4/1/2008 11:20 +Franklin,,CIRCLE,TN,4/1/2008 17:30 +Clark,,DISK,WY,4/1/2008 21:00 +Port Richey,,TRIANGLE,FL,4/1/2008 21:30 +Smyrna,,FIREBALL,GA,4/1/2008 21:30 +New Carrollton,,TRIANGLE,MD,4/2/2008 0:15 +Cramerton,,FLASH,NC,4/2/2008 0:20 +Louisville,,SPHERE,KY,4/2/2008 1:20 +New York City,,LIGHT,NY,4/2/2008 20:30 +Jenera,GREEN,TRIANGLE,OH,4/2/2008 20:51 +Evansville,,TRIANGLE,IN,4/2/2008 21:40 +Incline Village,,LIGHT,NV,4/2/2008 22:45 +Arlington Heights,,OTHER,IL,4/2/2008 23:00 +Ashburn,,TRIANGLE,VA,4/3/2008 0:00 +Townsend,,,TN,4/3/2008 0:00 +Birmingham,,CIGAR,AL,4/3/2008 7:15 +Wichita Falls,,VARIOUS,TX,4/3/2008 16:22 +Littleton,,OTHER,CO,4/3/2008 19:30 +Irvine,BLUE,CIRCLE,CA,4/3/2008 21:20 +Rexburg,,CONE,ID,4/3/2008 22:45 +Manville,,OTHER,NJ,4/3/2008 22:48 +Winters,,OTHER,TX,4/3/2008 23:00 +Laguna Hills,,RECTANGLE,CA,4/3/2008 23:50 +Seattle,,,WA,4/4/2008 2:00 +Sanger,,CIRCLE,CA,4/4/2008 2:15 +Maui,,TRIANGLE,HI,4/4/2008 9:30 +Lake Havasu City,,OTHER,AZ,4/4/2008 15:00 +Memphis,,FORMATION,TN,4/4/2008 15:30 +Los Angeles,,CIGAR,CA,4/4/2008 20:45 +Carriere,,LIGHT,MS,4/4/2008 21:00 +Durand,,LIGHT,MI,4/4/2008 21:30 +Wichita,,TRIANGLE,KS,4/4/2008 22:00 +Gainesville,,TRIANGLE,FL,4/4/2008 22:14 +Pekin,,TRIANGLE,IL,4/4/2008 22:25 +Cicero,,,IN,4/4/2008 23:00 +Green Bay,ORANGE,TRIANGLE,WI,4/5/2008 1:15 +Henderson,,CIRCLE,NV,4/5/2008 4:20 +Pomona,,,CA,4/5/2008 16:00 +Niles,,DISK,MI,4/5/2008 16:25 +Tecumseh,,,OK,4/5/2008 16:50 +Long Branch,,LIGHT,NJ,4/5/2008 17:30 +Gibsonton,,TRIANGLE,FL,4/5/2008 23:45 +Columbus,YELLOW,,OH,4/6/2008 0:00 +Bristol,,CHEVRON,IN,4/6/2008 1:00 +Fort Mohave,,CYLINDER,AZ,4/6/2008 7:00 +Tucson,,CIGAR,AZ,4/6/2008 11:00 +Lancaster,,SPHERE,OH,4/6/2008 18:00 +Monroe,,LIGHT,WA,4/6/2008 21:30 +Stoneham,,CYLINDER,MA,4/6/2008 22:00 +NJ Turnpike,,DISK,NJ,4/7/2008 0:25 +Grove City,,OVAL,OH,4/7/2008 3:17 +Sanger,,LIGHT,CA,4/7/2008 7:48 +Ferrisburgh,ORANGE,LIGHT,VT,4/7/2008 16:00 +Palestine,,CIRCLE,IL,4/7/2008 18:00 +Brentwood,,OTHER,CA,4/7/2008 21:00 +Uxbridge,,LIGHT,MA,4/7/2008 21:00 +Brentwood,,CHEVRON,CA,4/7/2008 21:30 +Brentwood,,CHEVRON,CA,4/7/2008 21:30 +Hot Springs,,,AR,4/7/2008 21:30 +Toledo,,LIGHT,OH,4/7/2008 22:00 +Tuscola,,LIGHT,TX,4/7/2008 22:00 +Mediapolis,,TRIANGLE,IA,4/7/2008 22:30 +Salisbury,,TRIANGLE,NH,4/7/2008 22:30 +Saxonburg,,,PA,4/7/2008 23:00 +Plantation,,CHEVRON,FL,4/7/2008 23:05 +Hardin,,CIGAR,KY,4/8/2008 0:00 +Sedona,,CYLINDER,AZ,4/8/2008 0:00 +Hendersonville,,OTHER,TN,4/8/2008 6:00 +Maltby,,SPHERE,WA,4/8/2008 12:20 +Harrisville,GREEN,LIGHT,WV,4/8/2008 20:30 +Abingdon,,,VA,4/8/2008 21:05 +Statesville,,VARIOUS,NC,4/8/2008 22:35 +Glen Cove,,,NY,4/8/2008 22:45 +Fremont,,OVAL,CA,4/9/2008 0:30 +San Diego,,OTHER,CA,4/9/2008 11:03 +Penn Hills,RED,OVAL,PA,4/9/2008 17:00 +Leesburg,,LIGHT,GA,4/9/2008 21:45 +Clifford,,,PA,4/9/2008 23:30 +Gray,,LIGHT,ME,4/10/2008 1:00 +Glenville,,SPHERE,WV,4/10/2008 1:30 +Nevada,,,TX,4/10/2008 4:00 +Blue Springs,,CHEVRON,MO,4/10/2008 20:00 +Dandridge,,LIGHT,TN,4/10/2008 20:00 +Las Vegas,,SPHERE,NV,4/10/2008 20:00 +Los Osos,,LIGHT,CA,4/10/2008 20:20 +Denville,,TRIANGLE,NJ,4/10/2008 20:30 +Greenville,GREEN,FORMATION,NC,4/10/2008 20:44 +College Station,RED,CIRCLE,TX,4/10/2008 21:00 +Apollo,,OTHER,PA,4/10/2008 21:10 +Arcata,,LIGHT,CA,4/10/2008 21:30 +Florissant,,CIRCLE,MO,4/10/2008 21:45 +Hague,RED GREEN,TRIANGLE,NY,4/10/2008 21:45 +Surprise,,LIGHT,AZ,4/10/2008 21:45 +Surprise,,LIGHT,AZ,4/10/2008 21:45 +Union Gap,,LIGHT,WA,4/10/2008 21:45 +Butte,,LIGHT,MT,4/10/2008 21:48 +Franklinton,,OTHER,NC,4/10/2008 22:00 +Azle,,RECTANGLE,TX,4/10/2008 22:15 +Vacaville,,DISK,CA,4/10/2008 23:00 +Aberdeen,,OTHER,MD,4/11/2008 0:15 +Glendale,RED,,CA,4/11/2008 0:40 +Hanford Nuclear Reservation,,CYLINDER,WA,4/11/2008 4:30 +Palm Harbor,,LIGHT,FL,4/11/2008 6:35 +San Jose,,VARIOUS,CA,4/11/2008 11:12 +Shafter,,LIGHT,CA,4/11/2008 13:00 +Orlando,,SPHERE,FL,4/11/2008 18:00 +Punta Gorda,,DISK,FL,4/11/2008 20:34 +Pilot Point,,TEARDROP,TX,4/11/2008 21:20 +Wauseon,,CIRCLE,OH,4/11/2008 21:30 +San Diego,BLUE,FLASH,CA,4/11/2008 21:55 +Bessemer,,LIGHT,AL,4/11/2008 22:30 +Grants Pass,,LIGHT,OR,4/12/2008 0:00 +Orlando,ORANGE,LIGHT,FL,4/12/2008 0:15 +Destin,,TRIANGLE,FL,4/12/2008 4:20 +Sonora,,OTHER,CA,4/12/2008 4:45 +Lucerne,,LIGHT,CA,4/12/2008 20:15 +Spring,,LIGHT,TX,4/12/2008 20:55 +Commack,,LIGHT,NY,4/12/2008 21:20 +Pismo,ORANGE,LIGHT,CA,4/12/2008 21:30 +Tampa,,,FL,4/12/2008 22:30 +Portland,,LIGHT,OR,4/12/2008 22:50 +Waterford,,CHEVRON,MI,4/12/2008 22:51 +Orlando,ORANGE,FIREBALL,FL,4/12/2008 23:45 +Porter Ranch,RED GREEN,SPHERE,CA,4/12/2008 23:50 +Valencia,RED,LIGHT,CA,4/13/2008 0:00 +Seattle,,OVAL,WA,4/13/2008 3:00 +Bowling Green,,DISK,KY,4/13/2008 4:30 +Sacramento,,,CA,4/13/2008 10:54 +Salt Lake,,LIGHT,UT,4/13/2008 15:00 +Roswell,BLUE,OVAL,NV,4/13/2008 19:30 +Lakewood,,FORMATION,OH,4/13/2008 22:00 +Desert Hot Springs,,LIGHT,CA,4/13/2008 22:30 +Costa Mesa,GREEN,VARIOUS,CA,4/13/2008 23:00 +Orlando,ORANGE,FIREBALL,FL,4/14/2008 3:20 +Chapel Hill,,FIREBALL,NC,4/14/2008 3:58 +Vero Beach,,CIGAR,FL,4/14/2008 11:00 +McHenry,,VARIOUS,IL,4/14/2008 12:10 +plymouth,GREEN,SPHERE,MN,4/14/2008 13:00 +Fairview,,OTHER,NJ,4/14/2008 13:30 +Minneapolis,,LIGHT,MN,4/14/2008 18:00 +Oro Valley,,CIRCLE,AZ,4/14/2008 20:45 +Cameron,RED,TEARDROP,WI,4/14/2008 21:00 +Miami,RED,LIGHT,FL,4/14/2008 21:00 +Akron,,SPHERE,OH,4/14/2008 21:23 +Rock Hill,,,SC,4/14/2008 21:30 +Oberlin,,FORMATION,OH,4/14/2008 22:40 +Des Moines,,,IA,4/15/2008 0:00 +Buckhead,,VARIOUS,GA,4/15/2008 1:00 +Buckhead,,VARIOUS,GA,4/15/2008 1:00 +Miami,,RECTANGLE,FL,4/15/2008 10:05 +Moravian Falls,,,NC,4/15/2008 10:45 +Crestwood,,FORMATION,IL,4/15/2008 12:00 +Rowland Heights,,DIAMOND,CA,4/15/2008 17:00 +Holbrook,,SPHERE,AZ,4/15/2008 19:45 +Newark,,FIREBALL,CA,4/15/2008 20:08 +San Jose,,DIAMOND,CA,4/15/2008 20:15 +St. Albans,,LIGHT,VT,4/15/2008 20:30 +Cary,,,NC,4/15/2008 21:30 +unsure exact name,GREEN,FIREBALL,GA,4/15/2008 23:00 +Chandler,ORANGE,SPHERE,AZ,4/15/2008 23:15 +McHenry,,TRIANGLE,IL,4/15/2008 23:35 +South Bend,,CIRCLE,IN,4/16/2008 1:30 +Nye County,,,NV,4/16/2008 2:30 +Jasper,GREEN BLUE,,IN,4/16/2008 4:20 +Kokomo,,LIGHT,IN,4/16/2008 10:30 +Lafayette,,LIGHT,IN,4/16/2008 10:30 +Westfield,,CIGAR,IN,4/16/2008 10:37 +Augusta,,TRIANGLE,GA,4/16/2008 12:45 +State College,,FLASH,PA,4/16/2008 13:00 +Branford,,CYLINDER,CT,4/16/2008 14:30 +Durham,,DISK,NC,4/16/2008 15:40 +El Centro,,CYLINDER,AZ,4/16/2008 16:00 +Atlantic City,,LIGHT,NJ,4/16/2008 20:10 +San Diego,,TRIANGLE,CA,4/16/2008 20:35 +Houston,,OTHER,TX,4/16/2008 21:00 +Monterey,,LIGHT,CA,4/16/2008 21:00 +Minneapolis,,FORMATION,MN,4/16/2008 21:05 +Warner Springs,RED BLUE,CIRCLE,CA,4/16/2008 21:10 +Lakeridge,,OTHER,VA,4/16/2008 21:30 +Maumee,,TRIANGLE,OH,4/16/2008 22:00 +Rockford,,TRIANGLE,IL,4/16/2008 22:00 +Noblesville,,TRIANGLE,IN,4/16/2008 22:10 +Kokomo,,,IN,4/16/2008 22:25 +Kokomo,YELLOW,FORMATION,IN,4/16/2008 22:27 +Kokomo,YELLOW,FORMATION,IN,4/16/2008 22:27 +Kokomo,,,IN,4/16/2008 22:30 +Kokomo,,LIGHT,IN,4/16/2008 22:30 +Grand Junction,,OVAL,CO,4/16/2008 23:00 +Kent,,DISK,OH,4/16/2008 23:00 +Merced,,LIGHT,CA,4/16/2008 23:00 +Kokomo,,,IN,4/16/2008 23:30 +Kokomo,,LIGHT,IN,4/16/2008 23:30 +Butler,,LIGHT,IN,4/16/2008 23:59 +Norwalk,,LIGHT,CA,4/17/2008 0:05 +Middleton,,TRIANGLE,WI,4/17/2008 0:35 +Sherman Oaks,,FIREBALL,CA,4/17/2008 2:00 +Winder,,TEARDROP,GA,4/17/2008 2:00 +Sahuarita,,CIRCLE,AZ,4/17/2008 9:15 +San Francisco,BLUE,TRIANGLE,CA,4/17/2008 13:00 +Lake Arrowhead,,OVAL,CA,4/17/2008 13:20 +Twenty Nine Palms,,DISK,CA,4/17/2008 14:00 +Salt Lake City,,DIAMOND,UT,4/17/2008 17:00 +Crestview,,VARIOUS,FL,4/17/2008 18:30 +St. Augustine,,TRIANGLE,FL,4/17/2008 20:00 +Croghan,,FORMATION,NY,4/17/2008 20:30 +Morristown,,TRIANGLE,TN,4/17/2008 21:00 +Nevada,ORANGE,LIGHT,TX,4/17/2008 21:00 +Slovan,,LIGHT,PA,4/17/2008 21:00 +Greeley,YELLOW,TRIANGLE,CO,4/17/2008 22:03 +Noblesville,,TRIANGLE,IN,4/17/2008 22:10 +Charleston,,OVAL,WV,4/17/2008 22:15 +Soddy Daisy,RED GREEN BLUE,CIRCLE,TN,4/17/2008 22:30 +North Branch,,SPHERE,MN,4/17/2008 23:00 +Freeland,,,MD,4/17/2008 23:15 +Cumberland,,DISK,RI,4/17/2008 23:45 +Grand Rapids,,LIGHT,MI,4/17/2008 23:45 +Albion,,,IL,4/18/2008 0:00 +Chattanooga,,OTHER,TN,4/18/2008 0:10 +San Jacinto,GREEN,CYLINDER,CA,4/18/2008 1:35 +Las Vegas,,LIGHT,NV,4/18/2008 19:55 +Las Vegas,,LIGHT,NV,4/18/2008 20:00 +Dallas,,DISK,TX,4/18/2008 21:00 +Gallup,,OTHER,NM,4/18/2008 21:25 +Newark,,DISK,CA,4/18/2008 21:35 +Pounding Mill,RED BLUE,LIGHT,VA,4/18/2008 22:00 +Venice,,LIGHT,CA,4/18/2008 22:00 +Daly City,,,CA,4/18/2008 23:30 +Camden Point,,FIREBALL,MO,4/19/2008 0:00 +Kalispell,,TRIANGLE,MT,4/19/2008 1:20 +Panama City Beach,,OVAL,FL,4/19/2008 8:00 +Lake Park,,LIGHT,FL,4/19/2008 11:00 +St. Augustine,,OTHER,FL,4/19/2008 15:45 +Wallingford,,FORMATION,CT,4/19/2008 20:15 +St. Augustine,,LIGHT,FL,4/19/2008 20:50 +Paulina,ORANGE,LIGHT,LA,4/19/2008 21:00 +St. Augustine,,FIREBALL,FL,4/19/2008 21:17 +Lunenburg,,FIREBALL,MA,4/19/2008 21:40 +New Brighton,RED BLUE,TRIANGLE,PA,4/19/2008 22:30 +Midland,,CIGAR,TX,4/19/2008 22:49 +Silk Hope,,DISK,NC,4/19/2008 23:00 +Santa Cruz,,RECTANGLE,CA,4/19/2008 23:55 +Lakeland,,TRIANGLE,FL,4/20/2008 0:00 +Carpentersville,,CIRCLE,IL,4/20/2008 1:00 +Rootstown,,SPHERE,OH,4/20/2008 3:00 +Gulf Shores,,CIRCLE,AL,4/20/2008 4:00 +Schererville,,TRIANGLE,IN,4/20/2008 8:00 +Byron Center,,LIGHT,WA,4/20/2008 10:00 +Heath,,LIGHT,OH,4/20/2008 10:30 +Belleview,,CIGAR,FL,4/20/2008 12:00 +Chicago,,CIGAR,IL,4/20/2008 14:00 +Moriarty,,LIGHT,NM,4/20/2008 15:00 +Dothan,,DIAMOND,AL,4/20/2008 18:45 +Paris,,LIGHT,KY,4/20/2008 19:00 +Chattanooga,,DIAMOND,TN,4/20/2008 20:30 +Port Richey,RED,TRIANGLE,FL,4/20/2008 21:00 +Tullahoma,,DIAMOND,TN,4/20/2008 21:15 +West Bend,ORANGE,CIRCLE,WI,4/20/2008 21:30 +Cape Coral,,DISK,FL,4/20/2008 22:00 +Amory,,CIRCLE,MS,4/21/2008 0:00 +St. Augustine,,,FL,4/21/2008 0:00 +Redding,RED,EGG,CA,4/21/2008 1:07 +Black Canyon City,RED,OTHER,AZ,4/21/2008 2:30 +Canton,,,MA,4/21/2008 3:25 +Palm Coast,,,FL,4/21/2008 3:30 +Palm Coast,BLUE,,FL,4/21/2008 3:30 +Redding,,EGG,CA,4/21/2008 15:00 +Phoenix,RED,DIAMOND,AZ,4/21/2008 16:30 +Phoenix,RED,LIGHT,AZ,4/21/2008 18:30 +Phoenix,,FORMATION,AZ,4/21/2008 20:00 +Phoenix,,FORMATION,AZ,4/21/2008 20:00 +Phoenix,RED,FORMATION,AZ,4/21/2008 20:00 +Phoenix,RED,LIGHT,AZ,4/21/2008 20:00 +Phoenix,RED,TEARDROP,AZ,4/21/2008 20:15 +Phoenix,RED,TRIANGLE,AZ,4/21/2008 20:15 +Phoenix,RED,FIREBALL,AZ,4/21/2008 20:25 +Lorain,,VARIOUS,OH,4/21/2008 21:45 +Palmetto,,,FL,4/21/2008 21:45 +Oakland,,OVAL,CA,4/21/2008 22:00 +Morrow,,LIGHT,OH,4/21/2008 22:35 +Laurel,,CIRCLE,MD,4/21/2008 23:00 +Durham,RED,TRIANGLE,NC,4/21/2008 23:30 +Palatine,GREEN,EGG,IL,4/22/2008 0:00 +Rogers,YELLOW,CIRCLE,AR,4/22/2008 0:00 +New Smyrna Beach,,SPHERE,FL,4/22/2008 0:30 +Los Angeles,RED,DISK,CA,4/22/2008 1:25 +Anderson,,OTHER,IN,4/22/2008 2:00 +Forest,YELLOW BLUE,CROSS,VA,4/22/2008 11:15 +Joshua Tree,,CIRCLE,CA,4/22/2008 12:00 +Plant City,,,FL,4/22/2008 15:26 +Stafford,,SPHERE,VA,4/22/2008 21:00 +Horseheads,RED GREEN,CIRCLE,NY,4/22/2008 21:40 +Santa Monica,,TRIANGLE,CA,4/22/2008 22:00 +Albany,RED BLUE,FIREBALL,TX,4/22/2008 22:30 +Saraland,,EGG,AL,4/22/2008 22:30 +Fitzgerald,,FIREBALL,GA,4/22/2008 23:00 +Miami,,TRIANGLE,FL,4/23/2008 0:00 +Newport,RED,LIGHT,OR,4/23/2008 0:00 +Orchard Park,,VARIOUS,NY,4/23/2008 0:00 +Towson,,TRIANGLE,MD,4/23/2008 0:30 +Addison,,DISK,AL,4/23/2008 1:30 +Bellevue,,SPHERE,WA,4/23/2008 10:03 +Marked Tree,,DISK,AR,4/23/2008 11:00 +Jamestown,,TRIANGLE,KY,4/23/2008 11:09 +New Orleans,,CIGAR,LA,4/23/2008 12:20 +Riverhead,,CYLINDER,NY,4/23/2008 18:00 +Augusta,,TEARDROP,ME,4/23/2008 19:00 +Newtown,,FIREBALL,PA,4/23/2008 20:00 +McHenry,,,IL,4/23/2008 20:30 +Basalt,,,CO,4/23/2008 21:00 +Berlin,ORANGE,SPHERE,CT,4/23/2008 21:00 +Interstate 40,YELLOW,,TX,4/24/2008 0:00 +Walton,,DIAMOND,KY,4/24/2008 0:00 +Coalinga,,TRIANGLE,CA,4/24/2008 3:00 +Casa Grande,,TRIANGLE,AZ,4/24/2008 3:15 +Lakeville,GREEN,LIGHT,MA,4/24/2008 3:15 +Melbourne,,LIGHT,FL,4/24/2008 6:05 +Stanwood,,OTHER,WA,4/24/2008 14:00 +Jacksonville,,OVAL,FL,4/24/2008 14:15 +Tucson,,LIGHT,AZ,4/24/2008 14:30 +Acton,,,CA,4/24/2008 16:45 +Lake Charles,,OTHER,LA,4/24/2008 17:05 +Thornwood,,LIGHT,NY,4/24/2008 19:49 +Irvine,,CIRCLE,CA,4/24/2008 20:15 +Spring Creek,,RECTANGLE,NV,4/24/2008 21:10 +North Myrtle Beach,,SPHERE,SC,4/24/2008 21:30 +Hernando,,OTHER,FL,4/24/2008 22:00 +Eldersburg,,OTHER,MD,4/24/2008 22:45 +Tampa,,CHEVRON,FL,4/25/2008 0:00 +Wellington,,EGG,MO,4/25/2008 1:50 +San Jose,,TRIANGLE,CA,4/25/2008 4:48 +Morgan City,,OTHER,LA,4/25/2008 4:50 +Lawrenceville,,OTHER,GA,4/25/2008 9:48 +Tallahassee,,LIGHT,FL,4/25/2008 10:00 +Austin,,TEARDROP,TX,4/25/2008 11:14 +Durham,,OVAL,NC,4/25/2008 13:00 +Madison,,SPHERE,AL,4/25/2008 16:40 +Hartford,,OTHER,CT,4/25/2008 17:00 +Danville,,SPHERE,VA,4/25/2008 20:30 +Louisville,,VARIOUS,KY,4/25/2008 20:30 +Fort Myers,,CIRCLE,FL,4/25/2008 21:11 +Seattle,,SPHERE,WA,4/25/2008 21:30 +Seattle,,LIGHT,WA,4/25/2008 22:00 +Cedar Rapids,,LIGHT,IA,4/25/2008 23:51 +Houston,,OTHER,TX,4/26/2008 0:00 +Seattle,,TRIANGLE,WV,4/26/2008 0:23 +Seattle,RED,LIGHT,WA,4/26/2008 11:55 +Windham,RED BLUE,OVAL,NH,4/26/2008 19:18 +Caddo Mills,,DISK,TX,4/26/2008 20:00 +Vicksburg,,FLASH,MS,4/26/2008 20:30 +Wildwood,RED BLUE,LIGHT,MO,4/26/2008 20:30 +Sonoma,,TRIANGLE,CA,4/26/2008 20:35 +Hallsville,,VARIOUS,TX,4/26/2008 20:45 +Salt Lake City,,OVAL,UT,4/26/2008 20:45 +Groveton,,,TX,4/26/2008 21:00 +Harrison,,CYLINDER,AR,4/26/2008 21:00 +Harrison,RED GREEN BLUE,CYLINDER,AR,4/26/2008 21:00 +San Diego,ORANGE,,CA,4/26/2008 21:00 +Sulphur,GREEN,,LA,4/26/2008 21:00 +Henning,,TRIANGLE,TN,4/26/2008 21:49 +Bartlett,GREEN,CIRCLE,TN,4/26/2008 22:30 +Palmer,,TRIANGLE,IL,4/27/2008 0:02 +Tumwater,GREEN,TRIANGLE,WA,4/27/2008 0:15 +Creve Coeur,,LIGHT,IL,4/27/2008 1:20 +London,RED,RECTANGLE,OH,4/27/2008 2:00 +Woodland,,FORMATION,CA,4/27/2008 2:30 +San Antonio,,VARIOUS,TX,4/27/2008 11:15 +Hamtramck,,DISK,MI,4/27/2008 14:00 +Captain Cook,,LIGHT,HI,4/27/2008 19:00 +Captain Cook,,LIGHT,HI,4/27/2008 19:00 +Honaunau,ORANGE,FORMATION,HI,4/27/2008 19:00 +Loveland,ORANGE,CIRCLE,CO,4/27/2008 20:30 +Loveland,,FIREBALL,CO,4/27/2008 20:40 +Loveland,RED,LIGHT,CO,4/27/2008 20:45 +Memphis,GREEN,FIREBALL,TN,4/27/2008 20:45 +Honaunau,,FIREBALL,HI,4/27/2008 21:00 +Harrington,,LIGHT,WA,4/27/2008 22:11 +Stamford,,RECTANGLE,CT,4/28/2008 20:00 +Brownsville,,LIGHT,TX,4/28/2008 20:45 +Hot Springs,,TRIANGLE,AR,4/28/2008 22:00 +Alaska,,CIGAR,AK,4/29/2008 0:00 +Metairie,ORANGE,LIGHT,LA,4/29/2008 3:30 +Phelps,,CIGAR,NY,4/29/2008 14:30 +Gainesville,,CIRCLE,FL,4/29/2008 20:00 +Reno,YELLOW,FIREBALL,NV,4/29/2008 20:00 +Hampton Beach,,FORMATION,NH,4/29/2008 20:15 +Topanga,,CIRCLE,CA,4/29/2008 21:15 +Des Plaines,ORANGE,,IL,4/29/2008 22:15 +Buda,,TRIANGLE,TX,4/29/2008 23:00 +Coconut Creek,,TEARDROP,FL,4/29/2008 23:00 +Memphis,,OTHER,TN,4/29/2008 23:00 +Sterling Heights,RED,LIGHT,MI,4/29/2008 23:00 +Lakewood,GREEN,FIREBALL,CO,4/29/2008 23:10 +Scottsdale,,FORMATION,AZ,4/29/2008 23:55 +Everett,,CONE,WA,4/30/2008 3:17 +Powell,,,OH,4/30/2008 7:45 +Las Vegas,,VARIOUS,NV,4/30/2008 8:18 +Las Vegan,,OTHER,NV,4/30/2008 9:00 +South Lake Tahoe,,SPHERE,CA,4/30/2008 15:30 +Trumbull,RED,DISK,CT,4/30/2008 21:00 +Trumbull,RED,DISK,CT,4/30/2008 21:00 +Rayne,,LIGHT,LA,4/30/2008 22:15 +Tucson,ORANGE,LIGHT,AZ,4/30/2008 22:30 +Tallahassee,,SPHERE,FL,4/30/2008 23:00 +New Bern,,FLASH,NC,4/30/2008 23:08 +El Paso,ORANGE,LIGHT,TX,4/30/2008 23:45 +Bakesrsfield,,DIAMOND,CA,5/1/2008 0:00 +Kansas City,,VARIOUS,MO,5/1/2008 4:30 +Holts Summit,,DISK,MO,5/1/2008 13:00 +Winter Haven,,LIGHT,FL,5/1/2008 20:00 +Daleville,,LIGHT,VA,5/1/2008 23:30 +Malaga,BLUE,SPHERE,NJ,5/2/2008 0:00 +Nacogdoches,,LIGHT,TX,5/2/2008 4:00 +Springdale,,VARIOUS,AR,5/2/2008 19:25 +Cherry Valley,,LIGHT,CA,5/2/2008 20:40 +Fort Worth,,OVAL,TX,5/2/2008 21:00 +Parker,ORANGE,,AZ,5/2/2008 21:00 +Conifer,,FORMATION,CO,5/2/2008 22:00 +Valencia,,TRIANGLE,CA,5/2/2008 22:00 +Moses Lake,,LIGHT,WA,5/2/2008 23:00 +Fisk,,LIGHT,WI,5/2/2008 23:15 +Los Angeles,,OVAL,CA,5/3/2008 1:40 +Greenwood Village,,OVAL,CO,5/3/2008 11:28 +Silver City,,SPHERE,NC,5/3/2008 12:00 +Golden,,TEARDROP,CO,5/3/2008 20:25 +Canton,,LIGHT,NY,5/3/2008 21:00 +Alpine,,LIGHT,TX,5/3/2008 21:20 +Meriden,,OTHER,CT,5/3/2008 21:30 +Earp,ORANGE,CIRCLE,CA,5/3/2008 22:00 +Fort Davis,,,TX,5/3/2008 22:00 +Memphis,,,TN,5/3/2008 22:00 +Corona del Mar,,VARIOUS,CA,5/3/2008 22:38 +Tulsa,,CIRCLE,OK,5/3/2008 23:00 +Lake Jackson,,OTHER,TX,5/4/2008 0:00 +Rickman,,CIRCLE,TN,5/4/2008 2:00 +Apache Junction,,LIGHT,AZ,5/4/2008 8:00 +Levittown,BLUE,DISK,NY,5/4/2008 9:30 +Wallops Island,,CIRCLE,VA,5/4/2008 19:00 +Dallas,,DIAMOND,TX,5/4/2008 22:00 +Olathe,GREEN,SPHERE,KS,5/4/2008 23:30 +Helena,,CIRCLE,OH,5/5/2008 0:00 +Norwich,,LIGHT,CA,5/5/2008 0:22 +Marietta,,CIRCLE,GA,5/5/2008 4:00 +Medford,,LIGHT,OR,5/5/2008 5:00 +Calais,,LIGHT,VT,5/5/2008 5:07 +Baltimore,,,MD,5/5/2008 10:30 +Rialto,BLUE,CIRCLE,CA,5/5/2008 15:00 +Canton,,SPHERE,OH,5/5/2008 18:55 +Toccoa,,OTHER,GA,5/5/2008 21:30 +Colorado Springs,,LIGHT,CO,5/5/2008 21:45 +Roxbury,YELLOW,TRIANGLE,VT,5/5/2008 22:30 +West Alton,,,MO,5/5/2008 23:00 +Everett,,LIGHT,WA,5/5/2008 23:10 +Roswell,,LIGHT,GA,5/5/2008 23:30 +Mt. Washington,BLUE,LIGHT,KY,5/6/2008 0:30 +West Hartford,RED,LIGHT,CT,5/6/2008 3:00 +Irving,,DIAMOND,TX,5/6/2008 4:00 +Dryden,,TRIANGLE,NY,5/6/2008 6:30 +Chicago,,VARIOUS,IL,5/6/2008 16:30 +Goshen,ORANGE,OVAL,IN,5/6/2008 23:00 +Calhoun,,DISK,GA,5/7/2008 0:00 +Holland,,CIRCLE,OH,5/7/2008 0:15 +Austintown,,OVAL,OH,5/7/2008 1:00 +Johns Island,,LIGHT,SC,5/7/2008 20:00 +San Francisco,RED,LIGHT,CA,5/7/2008 22:00 +Millville,,FIREBALL,NJ,5/7/2008 22:27 +Mansfield,,LIGHT,TX,5/7/2008 23:00 +Ashland City,,,TN,5/8/2008 0:00 +Cudahy,,CIRCLE,WI,5/8/2008 4:30 +Irvine,BLUE,CIRCLE,CA,5/8/2008 10:15 +Las Vegas,,SPHERE,NV,5/8/2008 12:36 +Sedona,,DISK,AZ,5/8/2008 13:00 +Ashford,,DISK,WA,5/8/2008 13:30 +Bremerton,,LIGHT,WA,5/8/2008 23:15 +Palm Springs,,TRIANGLE,CA,5/8/2008 23:25 +Albuquerque,,,NM,5/9/2008 0:00 +Kingston,,DIAMOND,NY,5/9/2008 3:25 +Grass Lake,,OTHER,MI,5/9/2008 5:11 +Arlington,,,WA,5/9/2008 13:15 +San Diego,,OVAL,CA,5/9/2008 14:00 +Howell,RED YELLOW,LIGHT,MI,5/9/2008 18:00 +Naples,,RECTANGLE,FL,5/9/2008 21:35 +Walla Walla,,LIGHT,WA,5/9/2008 22:00 +Boulder,,DISK,CO,5/9/2008 22:05 +Santa Clarita,RED,TRIANGLE,CA,5/9/2008 22:30 +I-10,,FORMATION,CA,5/10/2008 1:35 +Pittsboro,,LIGHT,NC,5/10/2008 3:30 +San Francisco,,SPHERE,CA,5/10/2008 4:00 +Mt. Laurel,,LIGHT,NJ,5/10/2008 4:15 +Parma,,SPHERE,OH,5/10/2008 10:05 +Chicago,,CIRCLE,IL,5/10/2008 13:00 +McKees Rocks,,OTHER,PA,5/10/2008 14:00 +N.Windham,,CHEVRON,CT,5/10/2008 19:40 +Scottsboro,,OVAL,AL,5/10/2008 22:00 +Arlington,,FLASH,TX,5/11/2008 0:14 +Winter Haven,BLUE,LIGHT,FL,5/11/2008 1:45 +Westborough,,LIGHT,MA,5/11/2008 4:00 +Tucson,,LIGHT,AZ,5/11/2008 20:00 +Corsicana,,LIGHT,TX,5/11/2008 22:30 +Claremore,,FIREBALL,OK,5/11/2008 23:00 +San Diego,,FLASH,CA,5/11/2008 23:00 +Tulsa,,FIREBALL,OK,5/11/2008 23:00 +River Oaks,,,TX,5/12/2008 20:00 +Mt.Olive,,TRIANGLE,MS,5/12/2008 22:30 +Upland,,DISK,CA,5/13/2008 6:54 +Los Angeles,ORANGE,EGG,CA,5/13/2008 8:10 +Gainesville,,FIREBALL,VA,5/13/2008 11:28 +Marina,,OTHER,CA,5/13/2008 13:00 +Sandusky,,CIGAR,OH,5/13/2008 16:00 +Philadelphia,,OTHER,PA,5/13/2008 18:00 +Philadelphia,,TRIANGLE,PA,5/13/2008 18:00 +Wheaton,,FIREBALL,MD,5/13/2008 23:00 +Plainfield area,GREEN,FIREBALL,NJ,5/13/2008 23:30 +Spartanburg,,TRIANGLE,SC,5/13/2008 23:50 +Flint,,LIGHT,MI,5/14/2008 0:13 +Flint,,LIGHT,MI,5/14/2008 0:15 +Charlotte,GREEN,CYLINDER,NC,5/14/2008 0:30 +Ponca City,ORANGE,CIRCLE,OK,5/14/2008 0:45 +Blue Ridge,,LIGHT,GA,5/14/2008 1:00 +Canyon Country,,,CA,5/14/2008 3:53 +Surry County Nuclear Facility,,,VA,5/14/2008 12:00 +Hinsdale,,,NH,5/14/2008 21:00 +Wilmington,,SPHERE,DE,5/14/2008 22:00 +Phoenix,,LIGHT,AZ,5/14/2008 23:38 +Phoenix,RED,OTHER,AZ,5/14/2008 23:44 +Chesterland,,LIGHT,OH,5/14/2008 23:45 +Shrewsbury Township,,,PA,5/14/2008 23:45 +Augusta,,CYLINDER,GA,5/15/2008 1:55 +West Roxbury,BLUE,,MA,5/15/2008 4:00 +West Roxbury,,TRIANGLE,MA,5/15/2008 4:00 +Hollister,,OTHER,MO,5/15/2008 5:00 +Medina,ORANGE,VARIOUS,NY,5/15/2008 22:00 +Herald,,DISK,CA,5/15/2008 22:30 +Jersey City,,VARIOUS,NJ,5/15/2008 23:00 +Bloomsburg,,,PA,5/16/2008 0:00 +Pikeville,RED,LIGHT,KY,5/16/2008 0:00 +New York City,,LIGHT,NY,5/16/2008 1:55 +Bellingham,GREEN,LIGHT,WA,5/16/2008 2:30 +Ramona,,LIGHT,CA,5/16/2008 4:30 +Phoenix,,,AZ,5/16/2008 17:50 +Boulder City,RED,LIGHT,NV,5/16/2008 20:00 +Folsom,,CIRCLE,CA,5/16/2008 21:45 +Van Buren,,VARIOUS,AR,5/16/2008 21:45 +O'Fallon,,LIGHT,MO,5/16/2008 22:00 +Hayfork,,FIREBALL,CA,5/16/2008 22:11 +Moses Lake,,CIRCLE,WA,5/16/2008 22:25 +Everson,,OVAL,WA,5/17/2008 0:00 +Everson,,OVAL,WA,5/17/2008 0:00 +Grand Blanc,ORANGE,LIGHT,MI,5/17/2008 0:30 +Westlake Village,,FIREBALL,CA,5/17/2008 9:00 +Buena Vista,,SPHERE,CO,5/17/2008 10:19 +Grand Junction,,FORMATION,CO,5/17/2008 11:20 +Carrollton,,CIGAR,TX,5/17/2008 12:00 +Gulf Breeze,,OVAL,FL,5/17/2008 12:00 +Tualatin,,OVAL,OR,5/17/2008 15:00 +Hillsborough,,OVAL,NJ,5/17/2008 21:00 +St. Augustine,ORANGE,,FL,5/17/2008 23:00 +San Diego,ORANGE,SPHERE,CA,5/17/2008 23:15 +Philadelphia,,CHEVRON,PA,5/18/2008 0:00 +Orange County,,,CA,5/18/2008 8:30 +Euless,,CIGAR,TN,5/18/2008 10:30 +Hamilton area,,OVAL,MI,5/18/2008 15:00 +Tucson,,TRIANGLE,AZ,5/18/2008 20:00 +Escondido,BLUE,LIGHT,CA,5/18/2008 21:47 +Madison,,LIGHT,WI,5/18/2008 21:55 +Salisbury,BLUE,,MD,5/18/2008 22:00 +Houston,GREEN,LIGHT,PA,5/18/2008 23:00 +Wanaque,,CIRCLE,NJ,5/18/2008 23:00 +Lawrenceville,,DISK,GA,5/18/2008 23:20 +Lawrenceville,,DISK,GA,5/18/2008 23:20 +Jackson,,DISK,TN,5/19/2008 3:00 +Pittsboro,,LIGHT,NC,5/19/2008 3:40 +Surry Co.,,OTHER,VA,5/19/2008 12:00 +Isle of Wight County,,OVAL,VA,5/19/2008 12:15 +Suffolk,,,VA,5/19/2008 12:20 +Surry Nuclear Facility,,DISK,VA,5/19/2008 12:20 +Surry Nuclear Facility,,DISK,VA,5/19/2008 12:20 +Pleasant Prairie,,EGG,WI,5/19/2008 15:45 +Virginia City Highlands,,CIRCLE,NV,5/19/2008 19:03 +Hilo,,LIGHT,HI,5/19/2008 19:30 +Irvine,,CIRCLE,CA,5/19/2008 21:30 +Cottage Grove,,VARIOUS,MN,5/19/2008 22:00 +Palm Coast,,TRIANGLE,FL,5/19/2008 22:45 +Country Side,RED,FIREBALL,IA,5/20/2008 1:00 +Weymouth,,LIGHT,MA,5/20/2008 4:20 +Santa Fe,,CIRCLE,NM,5/20/2008 7:25 +Tucson,,DISK,AZ,5/20/2008 13:00 +Rolla,,OTHER,MO,5/20/2008 21:23 +Tama,,LIGHT,IA,5/20/2008 21:30 +Seguin,,OVAL,TX,5/20/2008 21:45 +Lee,YELLOW,LIGHT,NH,5/20/2008 23:00 +Wellsboro,,OVAL,PA,5/20/2008 23:00 +Hueston Woods State Park,,DIAMOND,OH,5/20/2008 23:30 +Syracuse,,LIGHT,NY,5/20/2008 23:35 +Seattle,,VARIOUS,WA,5/21/2008 11:30 +Comer,,LIGHT,GA,5/21/2008 13:00 +Smyrna,,CIRCLE,TN,5/21/2008 13:00 +Mammoth Lakes,,LIGHT,CA,5/21/2008 21:15 +Palm Beach Gardens,,LIGHT,FL,5/21/2008 21:18 +Cuba,,LIGHT,MO,5/21/2008 22:00 +McHenry,,,IL,5/21/2008 22:30 +South Bend,,TRIANGLE,IN,5/21/2008 23:00 +Milliken,,LIGHT,CO,5/21/2008 23:05 +Morro Bay,ORANGE,SPHERE,CA,5/22/2008 1:00 +San Antonio,YELLOW,SPHERE,TX,5/22/2008 4:45 +Durham,,CIGAR,NC,5/22/2008 8:23 +Johnson City,,LIGHT,NY,5/22/2008 19:50 +Saltville,,CIRCLE,VA,5/22/2008 21:20 +Tranquility,,OTHER,NJ,5/22/2008 21:40 +New Brighton,RED,TRIANGLE,PA,5/22/2008 22:00 +Edwardsburg,,TRIANGLE,MI,5/22/2008 22:30 +Simi Valley,,LIGHT,CA,5/22/2008 22:30 +Nashville,,DISK,TN,5/22/2008 23:00 +Joplin,,TRIANGLE,MO,5/23/2008 1:04 +Chelsea,,FORMATION,MI,5/23/2008 2:00 +Athens,,LIGHT,AL,5/23/2008 2:15 +Owensboro,,LIGHT,KY,5/23/2008 5:33 +Oak Lawn,,EGG,IL,5/23/2008 7:22 +Hayward,,CIRCLE,CA,5/23/2008 15:55 +Brandon,,FORMATION,FL,5/23/2008 23:00 +Simi Valley,ORANGE,CIRCLE,CA,5/23/2008 23:00 +Roanoke,,TRIANGLE,VA,5/23/2008 23:45 +Fort Suppy,,DISK,OK,5/24/2008 0:00 +North Merrick,RED,OVAL,NY,5/24/2008 0:00 +Newburgh,,LIGHT,IN,5/24/2008 0:15 +Narragansett,,CIRCLE,RI,5/24/2008 5:10 +Longmont,,OTHER,CO,5/24/2008 11:20 +Peebles,,SPHERE,OH,5/24/2008 20:30 +Ventura,,CHEVRON,CA,5/24/2008 21:40 +Newark,,LIGHT,OH,5/24/2008 22:00 +Pompano Beach,,,FL,5/24/2008 23:30 +Butler,,CIRCLE,PA,5/24/2008 23:46 +Placerville,,DISK,CA,5/25/2008 3:00 +Orlando,,DISK,FL,5/25/2008 13:19 +Charlotte,,,NC,5/25/2008 16:00 +North Bergen,,OVAL,NJ,5/25/2008 16:00 +North Mankato,,CIGAR,MN,5/25/2008 19:45 +Newtown Square,RED,OTHER,PA,5/25/2008 21:00 +Sterling Heights,,LIGHT,MI,5/25/2008 21:08 +Scarborough,YELLOW,TRIANGLE,ME,5/25/2008 21:57 +Milwaukee,YELLOW,CIRCLE,WI,5/25/2008 23:05 +Fresno,,,CA,5/25/2008 23:50 +Honolulu,,LIGHT,HI,5/26/2008 0:00 +Pittsburgh,,DISK,PA,5/26/2008 0:00 +Lava Hot Springs,,VARIOUS,ID,5/26/2008 2:15 +Alexandria,,LIGHT,VA,5/26/2008 4:30 +Murrieta,RED BLUE,DISK,CA,5/26/2008 8:50 +,,CYLINDER,AZ,5/26/2008 14:00 +Daytona Beach,,OTHER,FL,5/26/2008 20:00 +Priest Lake,YELLOW,LIGHT,ID,5/26/2008 22:00 +Snohomish,,TEARDROP,WA,5/26/2008 22:55 +Evansville,,OTHER,MN,5/26/2008 23:00 +Garland,RED,RECTANGLE,TX,5/27/2008 7:00 +Swanzey,,SPHERE,NH,5/27/2008 20:30 +Wallops Island VA,,SPHERE,VA,5/27/2008 23:00 +Harrington,,LIGHT,WA,5/27/2008 23:30 +Burlington,,DIAMOND,VT,5/28/2008 1:41 +Little Rock,,TRIANGLE,AR,5/28/2008 12:00 +Lisle,,CIRCLE,IL,5/28/2008 16:50 +Watsonville,,CROSS,CA,5/28/2008 17:00 +Dallas,,DISK,TX,5/28/2008 17:30 +Tiffin,,,OH,5/28/2008 17:30 +Fernandina Beach,,CIGAR,FL,5/28/2008 20:01 +Fairfield,,LIGHT,CT,5/28/2008 21:00 +Phoenix,,LIGHT,AZ,5/28/2008 23:15 +Fulton,,LIGHT,MO,5/28/2008 23:35 +Jamaica,,CIRCLE,NY,5/29/2008 0:00 +Guntersville,,,AL,5/29/2008 0:24 +Alma KOA,,LIGHT,AR,5/29/2008 2:00 +San Jose,,SPHERE,CA,5/29/2008 11:00 +Uniondale,,FLASH,NY,5/29/2008 11:00 +Springfield,,CIGAR,MO,5/29/2008 20:20 +Houston,,SPHERE,TX,5/29/2008 21:00 +Solon,,,IA,5/29/2008 21:57 +Oak Ridge,,FORMATION,TN,5/29/2008 22:10 +DeRidder,,LIGHT,LA,5/30/2008 0:00 +Scottdale,YELLOW,LIGHT,PA,5/30/2008 0:43 +Hollywood,,TRIANGLE,CA,5/30/2008 5:00 +Newport Beach,,DISK,CA,5/30/2008 11:00 +Madison,,OTHER,WI,5/30/2008 17:00 +Pensacola,,DISK,FL,5/30/2008 20:30 +Houston,,SPHERE,TX,5/30/2008 21:30 +San Acacio,,CYLINDER,CO,5/30/2008 22:42 +Cheek,,LIGHT,TX,5/30/2008 23:00 +Gold Bar,,,WA,5/30/2008 23:00 +North Port,RED GREEN,DISK,FL,5/30/2008 23:15 +Bemidji,,OTHER,MN,5/30/2008 23:30 +Smyrna,,TRIANGLE,DE,5/31/2008 0:20 +Shoreview,,CIRCLE,MN,5/31/2008 1:30 +Yucaipa,ORANGE,CIRCLE,CA,5/31/2008 2:30 +Fort Collins,,TRIANGLE,CO,5/31/2008 10:30 +Lake Worth,,OTHER,FL,5/31/2008 14:00 +Paramount,,CONE,CA,5/31/2008 14:30 +Sante Fe,,LIGHT,NM,5/31/2008 17:00 +Peoria,,OTHER,IL,5/31/2008 20:34 +Newburgh,RED,LIGHT,IN,5/31/2008 21:40 +Milliken,,LIGHT,CO,5/31/2008 23:05 +Lake Texoma,,TRIANGLE,TX,5/31/2008 23:30 +Glenwood,,FORMATION,MN,6/1/2008 0:00 +Arlington,,OVAL,MO,6/1/2008 2:30 +Mexican Water,,TRIANGLE,AZ,6/1/2008 3:00 +Canoga Park,,DISK,CA,6/1/2008 4:00 +Flagstaff,,SPHERE,AZ,6/1/2008 12:00 +Coldwater,,CIGAR,MI,6/1/2008 13:00 +Bee Cave,,DISK,TX,6/1/2008 14:00 +Middletown,,SPHERE,NJ,6/1/2008 14:00 +Dothan,,OTHER,AL,6/1/2008 17:00 +Dora,,LIGHT,MO,6/1/2008 21:00 +Doylestown,,LIGHT,PA,6/1/2008 22:00 +Paysone,,LIGHT,AZ,6/1/2008 22:00 +Lemont,BLUE,FLASH,PA,6/1/2008 23:00 +Orangevale,,,CA,6/2/2008 0:00 +Lodi,,LIGHT,CA,6/2/2008 1:30 +Cold Spring,,LIGHT,NY,6/2/2008 10:30 +Millville,RED,TRIANGLE,NJ,6/2/2008 10:31 +Modesto,,SPHERE,CA,6/2/2008 10:45 +Port Charlotte Harbor,,CYLINDER,FL,6/2/2008 12:00 +Rodanthe,,TRIANGLE,NC,6/2/2008 12:00 +St. Petersburg,,LIGHT,FL,6/2/2008 17:15 +Boomer,,TRIANGLE,NC,6/2/2008 21:00 +Minneapolis,,LIGHT,MN,6/2/2008 22:30 +Williamsburg,,SPHERE,VA,6/3/2008 3:30 +Moore,,CIGAR,OK,6/3/2008 13:55 +Brookfield,,LIGHT,CT,6/3/2008 19:00 +Birmingham,,,AL,6/4/2008 0:00 +Chicago,,TRIANGLE,IL,6/4/2008 0:00 +Fort White,GREEN,FIREBALL,FL,6/4/2008 1:11 +Chicago,,,IL,6/4/2008 18:59 +Bakersfield,,OTHER,CA,6/4/2008 20:00 +Muskogee,,OVAL,OK,6/4/2008 23:00 +Olive Branch,,FLASH,MS,6/5/2008 0:30 +Margate,,FIREBALL,FL,6/5/2008 1:00 +Charlotte,,CIRCLE,NC,6/5/2008 2:08 +Northlake,,CIGAR,IL,6/5/2008 18:00 +Orangevale,,SPHERE,CA,6/5/2008 21:30 +Columbia,RED GREEN,TRIANGLE,MO,6/5/2008 21:45 +Atascadero,,LIGHT,CA,6/5/2008 21:54 +Jacksonville,,,FL,6/5/2008 22:00 +Fresno,,LIGHT,CA,6/5/2008 22:05 +Parkersburg,,CIRCLE,WV,6/5/2008 22:10 +Keysville,,VARIOUS,GA,6/5/2008 22:15 +Belleville,,LIGHT,IL,6/5/2008 22:32 +Watertown,,LIGHT,TN,6/5/2008 23:00 +Machedney Park,,TRIANGLE,IL,6/5/2008 23:30 +Buford,RED,TRIANGLE,GA,6/6/2008 0:00 +Port Clinton,,LIGHT,OH,6/6/2008 0:00 +Smithville,,OVAL,MO,6/6/2008 3:30 +Sacramento,,DISK,CA,6/6/2008 16:00 +Mukwonago,,CIRCLE,WI,6/6/2008 17:25 +Pittsburgh,,SPHERE,PA,6/6/2008 19:43 +Suwannee,,CIGAR,GA,6/6/2008 20:20 +Mont Clare,,LIGHT,PA,6/6/2008 21:00 +Park Ridge,,CIRCLE,IL,6/6/2008 21:22 +Mundelein,,LIGHT,IL,6/6/2008 21:28 +Arlington,,TRIANGLE,VA,6/6/2008 21:55 +Ripley,,LIGHT,OH,6/6/2008 22:00 +Carroll,,LIGHT,OH,6/6/2008 22:20 +Columbus,BLUE,CIRCLE,OH,6/6/2008 22:25 +Gay,RED,LIGHT,WV,6/6/2008 22:27 +Duncansville,ORANGE,,PA,6/6/2008 22:30 +Henderson,,DIAMOND,NV,6/6/2008 23:00 +Mebane,,,NC,6/6/2008 23:00 +Winchester,,LIGHT,KY,6/6/2008 23:00 +Tucson,,VARIOUS,AZ,6/7/2008 1:00 +Annapolis,,VARIOUS,MD,6/7/2008 3:30 +Butler,,FIREBALL,MO,6/7/2008 20:00 +Brighton,,OVAL,MA,6/7/2008 20:30 +Somerset,,RECTANGLE,NJ,6/7/2008 20:55 +Mountain View,,TRIANGLE,CA,6/7/2008 21:00 +Hancock,,LIGHT,MD,6/7/2008 21:07 +Tulare,,SPHERE,CA,6/7/2008 21:10 +Dorsey,,LIGHT,IL,6/7/2008 21:43 +St. Joseph,,LIGHT,MO,6/7/2008 21:45 +Memphis,,LIGHT,TN,6/7/2008 21:50 +Brooklyn,,TRIANGLE,MI,6/7/2008 22:00 +Hot Springs,,VARIOUS,AR,6/7/2008 22:00 +San Luis Obispo,,OTHER,CA,6/7/2008 22:00 +Dawsonville,,DISK,GA,6/7/2008 22:45 +Dawsonville,,DISK,GA,6/7/2008 22:50 +Joplin,,,MO,6/7/2008 22:50 +Wolfe City,,SPHERE,TX,6/7/2008 22:55 +Antioch Community,,TRIANGLE,SC,6/7/2008 23:00 +Mount Ida,,LIGHT,AR,6/7/2008 23:00 +Pattonville,,LIGHT,TX,6/7/2008 23:00 +Atlanta,,CIGAR,GA,6/7/2008 23:30 +Glendale,,LIGHT,CA,6/7/2008 23:30 +Yazoo City,,,MS,6/8/2008 0:00 +Plymouth,,LIGHT,NH,6/8/2008 0:30 +Dowagiac,,LIGHT,MI,6/8/2008 15:00 +Portage,YELLOW,SPHERE,MI,6/8/2008 15:30 +Portage,YELLOW,SPHERE,MI,6/8/2008 15:30 +San Francisco,,CIRCLE,CA,6/8/2008 16:30 +Oregon,,CIRCLE,OR,6/8/2008 18:15 +Bushkill,,LIGHT,PA,6/8/2008 19:00 +Gary,,OTHER,IN,6/8/2008 19:00 +Albuquerque,,OTHER,NM,6/8/2008 19:30 +Prescott,,TRIANGLE,AZ,6/8/2008 20:15 +Ruidoso,,SPHERE,NM,6/8/2008 20:20 +Monument,,OVAL,CO,6/8/2008 21:10 +Sioux Falls,,OTHER,SD,6/8/2008 21:30 +McKinleyville,,OTHER,CA,6/8/2008 21:36 +Oxnard,RED,LIGHT,CA,6/8/2008 22:00 +Austin,,LIGHT,TX,6/8/2008 22:10 +Minneapolis,,LIGHT,MN,6/8/2008 22:26 +Voorhees,,LIGHT,NJ,6/8/2008 22:32 +Purvis,,OTHER,MS,6/8/2008 22:40 +Miami,,RECTANGLE,FL,6/9/2008 0:00 +Roswell,,,NM,6/9/2008 0:00 +Geneva,RED,LIGHT,NY,6/9/2008 1:30 +Honey Grove,RED,LIGHT,TX,6/9/2008 9:10 +Norfolk,,CIGAR,MA,6/9/2008 11:00 +Baltimore,,,MD,6/9/2008 14:00 +Santa Clara,,OVAL,CA,6/9/2008 15:15 +Tucson,,FIREBALL,AZ,6/9/2008 20:00 +Adamsville,,SPHERE,AL,6/9/2008 20:36 +Lowell,,EGG,MA,6/9/2008 23:00 +Parker,,SPHERE,CO,6/9/2008 23:30 +Parker,,FIREBALL,CO,6/9/2008 23:36 +Rhinebeck,,CIGAR,NY,6/10/2008 0:00 +Lansing,RED,,MI,6/10/2008 2:30 +Rhinebeck,,CIGAR,NY,6/10/2008 7:37 +Honey Grove,RED,SPHERE,TX,6/10/2008 9:15 +Taylorsville,,CIRCLE,UT,6/10/2008 9:57 +North Windham,,CIGAR,CT,6/10/2008 16:05 +Houston,,LIGHT,TX,6/10/2008 20:30 +Morgan Hill,,FIREBALL,CA,6/10/2008 20:50 +San Luis Obispo,,CYLINDER,CA,6/10/2008 20:55 +Cottonwood,,OTHER,AZ,6/10/2008 21:00 +Harrisonburg,,,VA,6/10/2008 21:00 +Visalia,,OVAL,CA,6/10/2008 21:05 +Daytona Beach,,TRIANGLE,FL,6/10/2008 21:50 +Austin,,LIGHT,TX,6/10/2008 22:30 +Edwardsburg,,VARIOUS,MI,6/10/2008 23:00 +Portage,,LIGHT,MI,6/11/2008 3:00 +Newburgh,,FLASH,NY,6/11/2008 7:35 +Cincinnati,,CIGAR,OH,6/11/2008 13:00 +Phoenix,,OTHER,AZ,6/11/2008 17:45 +West Chester,,LIGHT,PA,6/11/2008 21:43 +Grayton Beach,,,FL,6/11/2008 22:00 +Houston,,LIGHT,TX,6/11/2008 22:40 +Barberton,BLUE,CROSS,OH,6/11/2008 23:00 +Edwardsburg,ORANGE,CIGAR,MI,6/11/2008 23:30 +Flint,,VARIOUS,TX,6/12/2008 0:30 +Bay City,,TRIANGLE,MI,6/12/2008 0:45 +Richmond,,LIGHT,KY,6/12/2008 1:30 +Olyphant,,TRIANGLE,PA,6/12/2008 1:53 +Alpine,,FORMATION,UT,6/12/2008 3:18 +Tuckerton,,LIGHT,NJ,6/12/2008 4:30 +Kenosha,,LIGHT,WI,6/12/2008 11:50 +Lewisville,,OVAL,TX,6/12/2008 12:40 +Gloster,,CIRCLE,MS,6/12/2008 18:00 +El Paso,,CIGAR,TX,6/12/2008 19:00 +Clayton,,LIGHT,GA,6/12/2008 21:30 +Flint,,VARIOUS,TX,6/12/2008 22:40 +Kennewick,,FLASH,WA,6/13/2008 0:00 +Nacogdoches,RED,CIRCLE,TX,6/13/2008 1:30 +Peshastin,,LIGHT,WA,6/13/2008 2:00 +Las Vegas,,VARIOUS,NV,6/13/2008 7:30 +Blue Hills,,DISK,MA,6/13/2008 9:00 +Rachel,,,NV,6/13/2008 9:30 +Phoenix,BLUE,SPHERE,AZ,6/13/2008 13:00 +Statesville,,TRIANGLE,NC,6/13/2008 17:00 +Honolulu,GREEN,LIGHT,HI,6/13/2008 21:30 +Tulsa,,LIGHT,OK,6/13/2008 22:20 +Attica,,OVAL,MI,6/13/2008 22:30 +Harrington,,OVAL,WA,6/13/2008 23:10 +Cypress,ORANGE BLUE,FIREBALL,CA,6/14/2008 0:00 +Van Nuys,YELLOW,FORMATION,CA,6/14/2008 0:00 +Waco,RED GREEN BLUE,OTHER,TX,6/14/2008 0:24 +Bellevue,RED,LIGHT,WA,6/14/2008 0:36 +Edison,,DISK,NJ,6/14/2008 1:00 +pjs,,LIGHT,NY,6/14/2008 1:00 +Munster,,SPHERE,IN,6/14/2008 2:30 +Sierra Nevada,,CIRCLE,CA,6/14/2008 3:00 +Apple Valley,,LIGHT,MN,6/14/2008 8:43 +Attica,,CIRCLE,MI,6/14/2008 10:30 +New Braunfels,,TRIANGLE,TX,6/14/2008 11:00 +New Braunfels,,TRIANGLE,TX,6/14/2008 11:00 +Sedona,,LIGHT,AZ,6/14/2008 14:00 +Panorama City,,CIRCLE,CA,6/14/2008 17:40 +Batesville,,CIRCLE,IN,6/14/2008 20:15 +Highlands Ranch,ORANGE,FIREBALL,CO,6/14/2008 20:50 +Kemah,ORANGE,,TX,6/14/2008 21:00 +Edwardsburg,,EGG,MI,6/14/2008 22:00 +Peotone,,LIGHT,IL,6/14/2008 22:40 +Pacific Palisades,,FLASH,CA,6/14/2008 22:45 +Brooklyn,,EGG,MI,6/14/2008 23:00 +Elko,RED,LIGHT,NV,6/14/2008 23:00 +Elko,RED,LIGHT,NV,6/14/2008 23:05 +Los Angeles,,FIREBALL,CA,6/14/2008 23:30 +Mountlake Terrace,RED,FIREBALL,WA,6/14/2008 23:40 +Castaic,YELLOW GREEN,SPHERE,CA,6/14/2008 23:50 +Edmonds,YELLOW BLUE,CIRCLE,WA,6/14/2008 23:50 +San Bernardino,ORANGE,CIRCLE,CA,6/14/2008 23:50 +Corona,,FIREBALL,CA,6/15/2008 0:00 +Orange,ORANGE BLUE,FLASH,CA,6/15/2008 0:00 +Bellevue,,TRIANGLE,WA,6/15/2008 0:30 +Dundee,,,NY,6/15/2008 3:00 +Williamstown,,FIREBALL,NJ,6/15/2008 10:30 +Kingman,,,AZ,6/15/2008 13:00 +York,,RECTANGLE,PA,6/15/2008 16:30 +Cumberland,,OTHER,MD,6/15/2008 20:35 +Chula Vista,,RECTANGLE,CA,6/15/2008 21:00 +Mogadore,,CROSS,OH,6/15/2008 21:45 +Tipton,,,MI,6/15/2008 22:40 +Bel Air,,DISK,MD,6/15/2008 23:30 +Green Bay,GREEN,CIRCLE,WI,6/15/2008 23:30 +Great Bend,,TRIANGLE,KS,6/16/2008 0:00 +Jefferson City,,,MO,6/16/2008 1:00 +Orlando,,LIGHT,FL,6/16/2008 5:45 +Downers Grove,RED,EGG,IL,6/16/2008 6:50 +Scott City,,DISK,MO,6/16/2008 8:25 +Hastings,,,NE,6/16/2008 8:45 +Arkadelphia,,,AR,6/16/2008 11:00 +Euharlee,,DISK,GA,6/16/2008 15:00 +Euharlee,,VARIOUS,GA,6/16/2008 15:00 +Greenwood,,SPHERE,IN,6/16/2008 21:30 +Sun City,,FIREBALL,CA,6/16/2008 22:00 +Snohomish,,LIGHT,WA,6/17/2008 2:00 +Mesquite,,DISK,NV,6/17/2008 12:00 +Calexico,,TRIANGLE,CA,6/17/2008 12:30 +Freeport,,,IL,6/17/2008 13:00 +Tucson,,DISK,AZ,6/17/2008 14:00 +Algonquin,YELLOW,TEARDROP,IL,6/17/2008 14:15 +Tucson,,TRIANGLE,AZ,6/17/2008 21:30 +Tucson,,TRIANGLE,AZ,6/17/2008 21:30 +Clinton,ORANGE,FIREBALL,NC,6/17/2008 21:31 +Osceola,,OVAL,IN,6/17/2008 22:00 +West Haven,,SPHERE,CT,6/17/2008 22:00 +Phoenix,ORANGE,FORMATION,AZ,6/17/2008 22:03 +Park Ridge,,TRIANGLE,IL,6/17/2008 22:15 +Barnwell,,RECTANGLE,SC,6/17/2008 23:00 +Hanover,BLUE,CONE,MA,6/18/2008 0:30 +Vallejo,,TRIANGLE,CA,6/18/2008 1:15 +La Crosse,,DISK,WI,6/18/2008 4:35 +New York City,,,NY,6/18/2008 10:30 +Park Ridge,,DISK,IL,6/18/2008 14:10 +Norwalk,,DISK,CA,6/18/2008 18:20 +Norwalk,,OVAL,CA,6/18/2008 18:20 +Canonsburg,,CIRCLE,PA,6/18/2008 18:30 +Leland,,OVAL,IL,6/18/2008 19:55 +Jacksonville,,TRIANGLE,FL,6/18/2008 21:45 +Cottage Grove,,LIGHT,OR,6/18/2008 22:00 +Ashland,,LIGHT,OR,6/18/2008 23:00 +Maryville,,CIGAR,MO,6/18/2008 23:15 +Chicago,GREEN,LIGHT,IL,6/19/2008 0:30 +Ventura,ORANGE,VARIOUS,CA,6/19/2008 0:30 +Rineyville,BLUE,TRIANGLE,KY,6/19/2008 10:30 +Fremont,,OTHER,CA,6/19/2008 17:00 +Lancaster,ORANGE,CIGAR,PA,6/19/2008 18:18 +Los Angeles,,CIGAR,CA,6/19/2008 19:45 +Barstow,,OVAL,CA,6/19/2008 20:40 +San Francisco,,TRIANGLE,CA,6/19/2008 21:30 +Johns Island,,LIGHT,SC,6/19/2008 21:50 +Arlington,,LIGHT,MA,6/19/2008 22:00 +Washington,,OVAL,PA,6/19/2008 22:45 +Roanoke,,OTHER,VA,6/19/2008 23:35 +Santa Barbara,,FIREBALL,CA,6/20/2008 0:30 +Chatsworth,,VARIOUS,CA,6/20/2008 1:00 +Palmdale,ORANGE,LIGHT,CA,6/20/2008 1:00 +Port Saint Lucie,,CIGAR,FL,6/20/2008 1:00 +Cloverdale,RED,SPHERE,CA,6/20/2008 2:00 +Kingston,RED,TRIANGLE,TN,6/20/2008 8:30 +,,CYLINDER,NM,6/20/2008 10:00 +Vancouver,,,WA,6/20/2008 10:26 +Hayden,,DISK,CO,6/20/2008 12:30 +Parlier,,LIGHT,CA,6/20/2008 12:40 +Bushkill,,CIGAR,PA,6/20/2008 15:00 +West Chester,,TRIANGLE,OH,6/20/2008 19:30 +Shoreline,,OTHER,WA,6/20/2008 19:53 +Petaluma,,CIGAR,CA,6/20/2008 22:00 +Watertown,,CIRCLE,MA,6/20/2008 22:00 +Philipsburg,,LIGHT,PA,6/20/2008 22:20 +Newport,,FORMATION,OH,6/20/2008 22:45 +Bayfield,,LIGHT,WI,6/20/2008 23:00 +Willcox,,FLASH,AZ,6/21/2008 0:00 +Chicago,,SPHERE,IL,6/21/2008 1:00 +Hamilton,RED GREEN BLUE,TRIANGLE,NJ,6/21/2008 1:00 +Lake Forest,RED,CIRCLE,CA,6/21/2008 1:00 +Dana Point,,DISK,CA,6/21/2008 1:15 +Adams,,TRIANGLE,WI,6/21/2008 3:00 +West Chester,,TRIANGLE,OH,6/21/2008 3:00 +Crandall,,,TX,6/21/2008 4:45 +Liberty,ORANGE,FIREBALL,IN,6/21/2008 11:00 +Winnetka,,TEARDROP,CA,6/21/2008 11:09 +Shawnee,,,KS,6/21/2008 13:00 +Franklin,,CIGAR,TN,6/21/2008 14:00 +Festus,,TRIANGLE,MO,6/21/2008 16:15 +Forks,,LIGHT,WA,6/21/2008 16:45 +Thornton,,DISK,CO,6/21/2008 18:30 +New York City,,,NY,6/21/2008 18:45 +Jacksonville,,FIREBALL,FL,6/21/2008 19:30 +North Hollywood,,SPHERE,CA,6/21/2008 20:00 +North East,ORANGE,FORMATION,MD,6/21/2008 21:10 +Newtown,,LIGHT,CT,6/21/2008 22:00 +Shoreham,,CIRCLE,NY,6/21/2008 22:30 +Novi,,CIRCLE,MI,6/21/2008 22:45 +Coos County,,LIGHT,NH,6/21/2008 23:00 +Lake Arrowhead,,OTHER,CA,6/21/2008 23:00 +Pueblo,,,CO,6/21/2008 23:00 +Hampton,,CIRCLE,FL,6/22/2008 0:00 +Napavine,BLUE,LIGHT,WA,6/22/2008 0:25 +Troup,RED,OVAL,TX,6/22/2008 1:00 +Agoura Hills,RED GREEN,LIGHT,CA,6/22/2008 3:00 +Chattanooga,,FLASH,TN,6/22/2008 10:30 +Santa Clara,,LIGHT,CA,6/22/2008 11:00 +Inverness,BLUE,,FL,6/22/2008 11:35 +Port Aransas,,OTHER,TX,6/22/2008 17:00 +Niles,,CHEVRON,IL,6/22/2008 19:45 +Palmersville,,,TN,6/22/2008 21:00 +Tavares,,VARIOUS,FL,6/22/2008 21:00 +South Elgin,ORANGE,FORMATION,IL,6/22/2008 21:30 +Kingston,,CIRCLE,OK,6/22/2008 23:00 +Santa Clara,,RECTANGLE,CA,6/22/2008 23:00 +Simi Valley,RED,LIGHT,CA,6/23/2008 12:03 +Madison,,OVAL,WI,6/23/2008 14:15 +Madison,,OVAL,WI,6/23/2008 14:15 +Anchorage,,TEARDROP,AK,6/23/2008 15:00 +Orlando,,LIGHT,FL,6/23/2008 19:00 +Canon City,,FORMATION,CO,6/23/2008 20:00 +Bremerton,,SPHERE,WA,6/23/2008 21:20 +New York City,,SPHERE,NY,6/23/2008 21:30 +Sarasota,ORANGE,TRIANGLE,FL,6/23/2008 21:45 +Fenton,ORANGE,,MI,6/23/2008 22:00 +Abingdon,,RECTANGLE,VA,6/23/2008 22:08 +Seattle,GREEN,LIGHT,WA,6/23/2008 22:10 +Franklin,,LIGHT,NJ,6/23/2008 23:00 +Rolla,,LIGHT,MO,6/23/2008 23:00 +Papillion,YELLOW BLUE,,NE,6/23/2008 23:10 +Bothell,,,WA,6/23/2008 23:29 +Holt,,,MO,6/23/2008 23:30 +Seymour,,TRIANGLE,IN,6/23/2008 23:40 +Kendall,,FORMATION,FL,6/24/2008 0:00 +Whitefish,,LIGHT,MT,6/24/2008 0:00 +Sun Prairie,,LIGHT,WI,6/24/2008 2:30 +Houston,,OVAL,TX,6/24/2008 8:45 +Arvada,,OTHER,CO,6/24/2008 9:10 +Silver City,,OTHER,NC,6/24/2008 13:30 +Sterling,,FLASH,VA,6/24/2008 21:15 +Greensboro,GREEN,CHEVRON,NC,6/24/2008 22:00 +Hickory,RED,LIGHT,NC,6/24/2008 22:45 +Wallingford,,OVAL,CT,6/24/2008 23:30 +Cromwell,GREEN,LIGHT,CT,6/24/2008 23:36 +Shamokin,,OTHER,PA,6/25/2008 10:00 +Buckeye,,,AZ,6/25/2008 15:00 +Myrtle Beach,ORANGE,FORMATION,SC,6/25/2008 21:30 +Bellingham,YELLOW,OVAL,MA,6/25/2008 21:45 +Ocean Isle,,,NC,6/25/2008 21:55 +Gray,RED,TRIANGLE,TN,6/25/2008 23:10 +Gladstone,,DISK,MI,6/25/2008 23:30 +Long Lake,,LIGHT,NY,6/26/2008 0:00 +Northport,,FORMATION,NY,6/26/2008 11:00 +Texarkana,,OTHER,TX,6/26/2008 20:30 +Waterbury,,SPHERE,CT,6/26/2008 20:45 +Cuchara,,LIGHT,CO,6/26/2008 21:30 +East Brunswick,BLUE,LIGHT,NJ,6/26/2008 23:24 +Dix Hills,,CIRCLE,NY,6/26/2008 23:30 +Hooks,,TRIANGLE,TX,6/27/2008 1:22 +Waukesha,,OTHER,WI,6/27/2008 3:27 +Elko,,LIGHT,NV,6/27/2008 3:50 +Gardendale,,DISK,AL,6/27/2008 8:00 +New Brunswick,,RECTANGLE,NJ,6/27/2008 10:30 +San Antonio,,OTHER,TX,6/27/2008 10:45 +Boulder,,FLASH,CO,6/27/2008 20:00 +Lake Orion,,FIREBALL,MI,6/27/2008 21:30 +Camanche,,,TX,6/27/2008 22:00 +Cadott,,OVAL,WI,6/27/2008 23:00 +Costa Mesa,RED,OTHER,CA,6/28/2008 0:00 +Richland,,LIGHT,WA,6/28/2008 0:15 +Denham Springs,,LIGHT,LA,6/28/2008 1:00 +Woodbridge,,LIGHT,CT,6/28/2008 2:30 +Northport,,SPHERE,NY,6/28/2008 3:00 +Alamogordo,RED,LIGHT,NM,6/28/2008 5:10 +Weston,,CIGAR,FL,6/28/2008 5:57 +Shamokin,,CIGAR,PA,6/28/2008 10:00 +Auburn,,CIRCLE,NY,6/28/2008 20:50 +Azle,,TRIANGLE,TX,6/28/2008 22:00 +Hazel Park,ORANGE,CIRCLE,MI,6/28/2008 22:30 +Lone Pine,,OVAL,CA,6/28/2008 22:30 +Spokane,,DISK,WA,6/28/2008 22:30 +Azle,,TRIANGLE,TX,6/28/2008 23:00 +Logan- Columbus,,LIGHT,OH,6/28/2008 23:15 +Destin,,CIRCLE,FL,6/28/2008 23:50 +Philadelphia,ORANGE,CYLINDER,PA,6/29/2008 0:00 +Liberty,YELLOW,DISK,NY,6/29/2008 3:00 +Cape Girardeau,,OVAL,MO,6/29/2008 19:00 +Lexington,,OTHER,TN,6/29/2008 20:00 +Milton,ORANGE,TRIANGLE,FL,6/29/2008 20:15 +Goodlettsville,,DIAMOND,TN,6/29/2008 20:21 +Las Cruces,,,NM,6/29/2008 21:00 +San Ramon,,DISK,CA,6/29/2008 21:00 +Auburn Hills,,,MI,6/29/2008 23:00 +Salinas,,LIGHT,CA,6/30/2008 0:00 +King Ferry,,OTHER,NY,6/30/2008 1:30 +Manteca,,OTHER,CA,6/30/2008 1:30 +Hale,,LIGHT,MI,6/30/2008 2:00 +Highland,,TRIANGLE,NY,6/30/2008 3:00 +Bakersfield,,DISK,CA,6/30/2008 3:15 +Valley Village,,SPHERE,CA,6/30/2008 4:13 +Gainesville,,CIRCLE,FL,6/30/2008 5:45 +Clovis,RED ORANGE,CIRCLE,CA,6/30/2008 9:00 +Lupton,,CIRCLE,AZ,6/30/2008 10:00 +Orlando,,CIRCLE,FL,6/30/2008 12:00 +Youngstown,,FIREBALL,OH,6/30/2008 12:45 +Alligator Point,,OTHER,FL,6/30/2008 12:50 +Springdale,,CIGAR,AR,6/30/2008 14:00 +Bohemia,BLUE,DISK,NY,6/30/2008 16:00 +Huntington,,CIGAR,WV,6/30/2008 17:00 +Marlborough,,CYLINDER,MA,6/30/2008 17:00 +Fairlawn,,OTHER,NJ,6/30/2008 18:00 +Wolf Point,,SPHERE,MT,6/30/2008 18:00 +Barksdale Air Force Base,,LIGHT,LA,6/30/2008 19:00 +Debary,,FLASH,FL,6/30/2008 20:00 +Winnett,,OTHER,MT,6/30/2008 20:00 +Rogue River,,LIGHT,OR,6/30/2008 21:00 +Lost River,,LIGHT,WV,6/30/2008 22:00 +Atlantic City,,TRIANGLE,NJ,6/30/2008 22:25 +Ann Arbor,,TRIANGLE,MI,6/30/2008 22:40 +Amarillo,,LIGHT,TX,6/30/2008 23:00 +Bismarck,RED,RECTANGLE,ND,6/30/2008 23:00 +Mt. Vernon,YELLOW,CIRCLE,OH,6/30/2008 23:00 +Yakima,,LIGHT,WA,6/30/2008 23:30 +St Helens,,LIGHT,OR,6/30/2008 23:46 +Logansport,ORANGE,SPHERE,IN,7/1/2008 1:00 +Twisp,,OVAL,WA,7/1/2008 4:10 +Littleton,,CIRCLE,CO,7/1/2008 10:00 +Smithfield,,EGG,NC,7/1/2008 15:00 +Wallace,,CHEVRON,NC,7/1/2008 21:30 +no data,,LIGHT,NV,7/1/2008 22:00 +Dallas,,FIREBALL,TX,7/2/2008 3:00 +Round Rock,,FLASH,TX,7/2/2008 3:00 +San Antonio,,OTHER,TX,7/2/2008 3:00 +Darien,,RECTANGLE,IL,7/2/2008 12:05 +Cle Elum,,CIRCLE,WA,7/2/2008 14:00 +Greenville,GREEN,TRIANGLE,MI,7/2/2008 15:01 +Lexington,,CROSS,KY,7/2/2008 16:20 +Mt. Sinai,,FIREBALL,NY,7/2/2008 19:50 +Warren,RED,LIGHT,NJ,7/2/2008 20:00 +Ashland,RED,DIAMOND,MO,7/2/2008 22:30 +Beverly,,FIREBALL,MA,7/2/2008 22:30 +Tinley Park,RED,DISK,IL,7/2/2008 23:20 +Bellevue,,LIGHT,WA,7/2/2008 23:30 +Amesbury,BLUE,OVAL,MA,7/2/2008 23:45 +Norwich,RED GREEN,CHEVRON,CT,7/2/2008 23:45 +Belle Vernon,ORANGE,DISK,PA,7/3/2008 0:00 +Gray,,TRIANGLE,ME,7/3/2008 0:00 +New York City,,TRIANGLE,NY,7/3/2008 1:30 +Raleigh,RED,CYLINDER,NC,7/3/2008 11:00 +El Reno,,DIAMOND,OK,7/3/2008 16:00 +Fairbanks,BLUE,,AK,7/3/2008 16:40 +Atlantic,,OVAL,IA,7/3/2008 19:00 +Schererville,,CIRCLE,IN,7/3/2008 21:00 +Maricopa,RED,,AZ,7/3/2008 21:15 +Bemidji,ORANGE,FIREBALL,MN,7/3/2008 21:30 +Cypress,,LIGHT,TX,7/3/2008 22:01 +St. Paul,,CIRCLE,MN,7/3/2008 22:01 +West Bloomfield,RED,CIRCLE,MI,7/3/2008 22:50 +Roosevelt,,VARIOUS,UT,7/3/2008 23:00 +Houston,,,TX,7/3/2008 23:20 +Elkhart,ORANGE,OVAL,IN,7/3/2008 23:50 +Brighton,ORANGE,LIGHT,MI,7/4/2008 1:15 +Milan,,LIGHT,MI,7/4/2008 1:22 +San Antonio,GREEN,LIGHT,TX,7/4/2008 3:00 +Webster,,LIGHT,TX,7/4/2008 4:00 +Butler,,LIGHT,MO,7/4/2008 5:30 +Athens,,LIGHT,GA,7/4/2008 10:00 +Athens,,LIGHT,GA,7/4/2008 10:30 +Elmwood Park,,TRIANGLE,IL,7/4/2008 12:00 +Granger,,VARIOUS,IN,7/4/2008 12:00 +New York City,,SPHERE,NY,7/4/2008 12:23 +Eldora,,DISK,IA,7/4/2008 13:30 +Gainesville,,DISK,GA,7/4/2008 15:00 +Portland,,CIRCLE,OR,7/4/2008 19:10 +Novi,,FORMATION,MI,7/4/2008 20:00 +Pollock Pines,,CYLINDER,CA,7/4/2008 20:00 +Harrisonville,,CIGAR,MO,7/4/2008 20:55 +Deltona,,TEARDROP,FL,7/4/2008 21:00 +Lindstrom,,RECTANGLE,MN,7/4/2008 21:00 +Barrington,,SPHERE,IL,7/4/2008 21:15 +Marshfield-Webster Co,ORANGE,SPHERE,MO,7/4/2008 21:15 +Palmdale,,FIREBALL,CA,7/4/2008 21:25 +Elgin,ORANGE,DISK,IL,7/4/2008 21:30 +Elmhurst,,CIRCLE,IL,7/4/2008 21:30 +Hampton Beach,RED,,NH,7/4/2008 21:30 +Hustonville,,FIREBALL,KY,7/4/2008 21:30 +Kentwood,ORANGE,SPHERE,MI,7/4/2008 21:30 +Kingston,,OVAL,PA,7/4/2008 21:30 +Mackey,ORANGE,FIREBALL,IN,7/4/2008 21:30 +Westminster,,SPHERE,CO,7/4/2008 21:40 +Eugene,,LIGHT,OR,7/4/2008 21:45 +Lowell,ORANGE,OVAL,MA,7/4/2008 21:45 +Highland,,OVAL,IN,7/4/2008 21:52 +Carbondale,,FIREBALL,PA,7/4/2008 22:00 +Chicago,,OTHER,IL,7/4/2008 22:00 +Lincoln Park,,SPHERE,MI,7/4/2008 22:00 +Pittsburgh,,SPHERE,PA,7/4/2008 22:00 +Saginaw,ORANGE,CIRCLE,MI,7/4/2008 22:00 +Wallingford,,FIREBALL,CT,7/4/2008 22:00 +Oregon,,CIRCLE,OH,7/4/2008 22:15 +Oxnard,,OTHER,CA,7/4/2008 22:15 +Port Jefferson,ORANGE,SPHERE,NY,7/4/2008 22:15 +Albuquerque,,SPHERE,NM,7/4/2008 22:30 +Excelsior,,LIGHT,MN,7/4/2008 22:30 +Lincoln,,TEARDROP,NE,7/4/2008 22:30 +Oak Grove,,,NC,7/4/2008 22:30 +Stanwood,RED,CIRCLE,WA,7/4/2008 22:30 +Excelsior,,FORMATION,MN,7/4/2008 22:35 +Mercer Island,,,WA,7/4/2008 22:45 +Chester,,LIGHT,WV,7/4/2008 22:50 +Garden Grove,ORANGE,LIGHT,CA,7/4/2008 22:50 +Chula Vist,,CIRCLE,CA,7/4/2008 23:00 +Conneaut,,CIGAR,OH,7/4/2008 23:00 +Indianapolis,RED,OTHER,IN,7/4/2008 23:00 +Lackawanna County,,TRIANGLE,PA,7/4/2008 23:00 +Lombard,,TRIANGLE,IL,7/4/2008 23:00 +Novi,,FIREBALL,MI,7/4/2008 23:00 +Jamestown,RED,DIAMOND,MI,7/4/2008 23:08 +Lee's Summit,RED ORANGE,CIRCLE,MO,7/4/2008 23:25 +Prairieville,ORANGE,LIGHT,LA,7/4/2008 23:30 +Stanwood,,OVAL,WA,7/4/2008 23:30 +Fort Wayne,,FIREBALL,IN,7/4/2008 23:35 +Hawthorn Woods,ORANGE,FIREBALL,IL,7/4/2008 23:35 +Bradenton,ORANGE,OTHER,FL,7/5/2008 0:00 +Laughlin,,FIREBALL,NV,7/5/2008 0:00 +Los Angeles,,,CA,7/5/2008 0:00 +New York City,,DISK,NY,7/5/2008 0:00 +Surprise,BLUE,LIGHT,AZ,7/5/2008 1:00 +Neosho,,SPHERE,MO,7/5/2008 1:15 +Tonopah,,VARIOUS,NV,7/5/2008 4:00 +Holly,,OTHER,MI,7/5/2008 4:41 +Lansing,RED,LIGHT,MI,7/5/2008 8:00 +Lakeside,,TRIANGLE,OH,7/5/2008 10:15 +Daly City,,DISK,CA,7/5/2008 14:00 +Rothbury,,FIREBALL,MI,7/5/2008 15:30 +Canton,,VARIOUS,MI,7/5/2008 15:37 +Guilderland,,CIRCLE,NY,7/5/2008 19:30 +Oregon,,,WI,7/5/2008 20:00 +Sheffield,,LIGHT,AL,7/5/2008 20:00 +Checotah,,,OK,7/5/2008 20:15 +Rochester Hills,,OTHER,MI,7/5/2008 20:15 +New Lenox,,FIREBALL,IL,7/5/2008 21:00 +Blue,RED,SPHERE,OK,7/5/2008 21:41 +Sanford,,SPHERE,VA,7/5/2008 21:52 +Ashland,ORANGE,CIRCLE,KY,7/5/2008 22:00 +Bay City,,TRIANGLE,MI,7/5/2008 22:00 +Ottawa,ORANGE,DIAMOND,IL,7/5/2008 22:00 +Hammonton,ORANGE,LIGHT,NJ,7/5/2008 22:15 +Athens,ORANGE,LIGHT,GA,7/5/2008 22:30 +Columbus,,LIGHT,WI,7/5/2008 22:30 +Plymouth,ORANGE,OVAL,PA,7/5/2008 22:30 +Temple,,OTHER,TX,7/5/2008 22:30 +Park Ridge,,SPHERE,IL,7/5/2008 22:35 +Plymouth,RED ORANGE,OVAL,PA,7/5/2008 22:38 +Burton,,FIREBALL,MI,7/5/2008 22:45 +Lucerne Valley,,,CA,7/5/2008 22:51 +Carson City,,LIGHT,NV,7/5/2008 23:00 +Leonard,,LIGHT,OK,7/5/2008 23:00 +Greenwood Village,,OVAL,CO,7/6/2008 1:35 +Sylacauga,,RECTANGLE,AL,7/6/2008 1:45 +Portsmouth,YELLOW,LIGHT,OH,7/6/2008 2:00 +Longmont,,FLASH,CO,7/6/2008 21:00 +Chicago,,FLASH,IL,7/6/2008 21:30 +Miami,,,FL,7/6/2008 21:40 +San Antonio,,EGG,TX,7/6/2008 21:45 +Portsmouth,,LIGHT,OH,7/6/2008 22:00 +Sierra Madre,,RECTANGLE,CA,7/6/2008 22:00 +Temecula,GREEN,SPHERE,CA,7/6/2008 22:30 +New Albany,,FIREBALL,IN,7/6/2008 23:00 +Bradford,,,MA,7/7/2008 0:00 +Chelsea,,TRIANGLE,AL,7/7/2008 0:15 +San Antonio,,CHEVRON,TX,7/7/2008 0:35 +Nashville,,,TN,7/7/2008 13:00 +New Palestine,,OTHER,IN,7/7/2008 16:30 +Seattle,,VARIOUS,WA,7/7/2008 20:07 +New Palestine,,OTHER,IN,7/7/2008 20:30 +Ontelaunee,ORANGE,FIREBALL,PA,7/7/2008 21:15 +Eldridge,,TRIANGLE,IA,7/7/2008 21:20 +Springfield,,,MO,7/7/2008 22:00 +Lutz,,TRIANGLE,FL,7/7/2008 22:05 +Southbridge,,DIAMOND,VA,7/7/2008 22:50 +Indianapolis,RED,DISK,IN,7/7/2008 23:00 +Sebago,,SPHERE,ME,7/8/2008 1:00 +Vancouver,,RECTANGLE,WA,7/8/2008 1:30 +St. Peters,GREEN,LIGHT,MO,7/8/2008 3:00 +Eden,ORANGE BLUE,,NY,7/8/2008 9:40 +Tampa,,,FL,7/8/2008 16:00 +Kuttawa,RED,LIGHT,KY,7/8/2008 21:15 +Indianapolis,,,IN,7/8/2008 21:52 +Bothell,,LIGHT,WA,7/8/2008 23:59 +New York City,,EGG,NY,7/9/2008 1:30 +Coaltownship,,LIGHT,PA,7/9/2008 12:15 +Solana Beach,,DISK,CA,7/9/2008 19:00 +Seattle,,DISK,WA,7/9/2008 21:05 +Folsom,,CIRCLE,CA,7/9/2008 22:15 +Greenville,RED,TRIANGLE,SC,7/9/2008 22:15 +Yucca Valley,,,CA,7/9/2008 22:35 +Jasper,,CIRCLE,IN,7/10/2008 0:35 +San Antonio,,FORMATION,TX,7/10/2008 0:36 +Seattle,RED,LIGHT,WA,7/10/2008 2:00 +Green Island,,LIGHT,NY,7/10/2008 11:55 +Chambersburg,,OTHER,PA,7/10/2008 13:46 +Glenmont,,SPHERE,NY,7/10/2008 17:30 +Hyattsville,,RECTANGLE,MD,7/10/2008 20:40 +Kill Devil Hills,ORANGE,,NC,7/10/2008 21:30 +Southlake,,LIGHT,TX,7/10/2008 23:00 +Pittsburgh,,,PA,7/10/2008 23:35 +Elizabethtown,RED,TRIANGLE,KY,7/11/2008 0:40 +Southlake,,,TX,7/11/2008 0:45 +Riverside,,CIRCLE,RI,7/11/2008 13:30 +Midland,,CIRCLE,WA,7/11/2008 17:30 +Seattle,,VARIOUS,WA,7/11/2008 17:30 +Huntington,,OTHER,WV,7/11/2008 20:50 +Lansing,,TRIANGLE,IL,7/11/2008 20:50 +Livingston,,CIRCLE,MT,7/11/2008 21:00 +Royse City,,LIGHT,TX,7/11/2008 21:00 +Novato,,,CA,7/11/2008 22:00 +Marysville,,CHEVRON,WA,7/11/2008 22:20 +Noblesville,,DISK,IN,7/11/2008 22:30 +Culpeper,YELLOW,CIRCLE,VA,7/11/2008 22:43 +North Ridgeville,,FLASH,OH,7/12/2008 0:00 +Saint Johnsville,,TRIANGLE,NY,7/12/2008 0:00 +Key West,,FIREBALL,FL,7/12/2008 0:30 +Cranston,,LIGHT,RI,7/12/2008 0:38 +Henderson,RED,,TX,7/12/2008 1:45 +Cedar Springs,,LIGHT,MI,7/12/2008 3:00 +Defiance,,CIRCLE,OH,7/12/2008 4:32 +Ontonagon,,TRIANGLE,MI,7/12/2008 8:00 +Texhoma,GREEN,,OK,7/12/2008 9:00 +Milton,,FORMATION,WA,7/12/2008 16:00 +Johnson City,,DISK,TN,7/12/2008 19:00 +Philomath,,RECTANGLE,OR,7/12/2008 20:30 +Charleston,,LIGHT,SC,7/12/2008 21:00 +Malden,RED GREEN,OVAL,MA,7/12/2008 21:50 +Mountain Home,,CIRCLE,AR,7/12/2008 22:00 +Portland,,OVAL,OR,7/12/2008 22:20 +Enon Vally,,SPHERE,PA,7/12/2008 22:30 +Fort Worth,,TRIANGLE,TX,7/12/2008 22:30 +Fort Worth,,TRIANGLE,TX,7/12/2008 23:00 +Rialto,RED,LIGHT,CA,7/12/2008 23:40 +New Palestine,,LIGHT,IN,7/13/2008 0:00 +Florence,,LIGHT,AZ,7/13/2008 1:00 +Prescott,,LIGHT,WA,7/13/2008 1:00 +Hinsdale,,,NH,7/13/2008 3:10 +Fenton,,,MI,7/13/2008 4:18 +Humble,,LIGHT,TX,7/13/2008 4:30 +Apopka,,OVAL,FL,7/13/2008 14:00 +Lenox,,OVAL,MA,7/13/2008 17:28 +Englewood,,VARIOUS,CO,7/13/2008 18:30 +Stedman,,DISK,NC,7/13/2008 19:00 +Hobe Sound,,CYLINDER,FL,7/13/2008 19:30 +Cambridge,,OTHER,MA,7/13/2008 19:45 +Grants Pass,,CIGAR,OR,7/13/2008 20:35 +Frederick,,CYLINDER,MD,7/13/2008 21:00 +Houston,,SPHERE,TX,7/13/2008 21:15 +Glenview,RED,,IL,7/13/2008 21:25 +Port Allegany,,FIREBALL,PA,7/13/2008 21:30 +Hamer,,LIGHT,ID,7/13/2008 22:00 +Spokane,,,WA,7/13/2008 22:00 +Ashland City,,,TN,7/13/2008 22:30 +Eden,,TEARDROP,GA,7/13/2008 23:00 +Tacoma,,LIGHT,WA,7/13/2008 23:30 +Grants Pass,,,OR,7/13/2008 23:35 +Scottsdale,RED,CIRCLE,AZ,7/14/2008 2:00 +Two Harbors,,LIGHT,MN,7/14/2008 3:30 +Aurora,,OTHER,OR,7/14/2008 10:30 +Phoenix,,LIGHT,AZ,7/14/2008 12:00 +Prescott,,OVAL,AZ,7/14/2008 19:00 +Fern Creek,,OTHER,KY,7/14/2008 19:32 +Fern Creek,,OTHER,KY,7/14/2008 19:32 +Corvallis,,DISK,OR,7/14/2008 21:15 +Rancho Cucamonga,,LIGHT,CA,7/14/2008 21:20 +Cumming,,SPHERE,GA,7/14/2008 21:29 +Philadelphia,,TRIANGLE,PA,7/14/2008 22:00 +Escondido,BLUE,LIGHT,CA,7/14/2008 22:01 +Panama City,RED,SPHERE,FL,7/14/2008 23:00 +Richmond,,CIGAR,KY,7/15/2008 1:00 +Sierra Nevada Mountains,,LIGHT,CA,7/15/2008 2:00 +Milford,,TRIANGLE,CT,7/15/2008 2:45 +Miami,RED,EGG,FL,7/15/2008 5:00 +Noblesville,,FIREBALL,IN,7/15/2008 5:55 +Bedford,BLUE,FLASH,MA,7/15/2008 8:00 +Shamokin,RED,CIGAR,PA,7/15/2008 15:00 +Twin Falls,,TRIANGLE,ID,7/15/2008 16:00 +North Haven,,DISK,ME,7/15/2008 19:30 +Phoenix,,CIGAR,AZ,7/15/2008 19:45 +Long Beach,RED,FIREBALL,CA,7/15/2008 20:00 +Merrick,RED,OVAL,NY,7/15/2008 20:00 +Satellite Beach,,OVAL,FL,7/15/2008 20:30 +Scottsboro,RED BLUE,SPHERE,AL,7/15/2008 21:00 +Buffalo,RED YELLOW,OVAL,NY,7/15/2008 21:30 +Black Hills,,,SD,7/15/2008 22:00 +Boardman,,FORMATION,OH,7/15/2008 22:00 +Chanute,,LIGHT,KS,7/15/2008 22:00 +Coeur d'Alene,,,ID,7/15/2008 22:14 +Johnston,RED BLUE,TRIANGLE,RI,7/15/2008 23:30 +Chicago,,TRIANGLE,IL,7/16/2008 0:00 +Wichita Falls,,OTHER,TX,7/16/2008 4:00 +Phelan,,CIRCLE,CA,7/16/2008 5:30 +Amagansett,,,NY,7/16/2008 11:00 +Gulf Breeze,,TRIANGLE,FL,7/16/2008 20:45 +Indian Beach,,LIGHT,NC,7/16/2008 22:00 +Oakville,,,CT,7/16/2008 22:00 +Clarkston,,VARIOUS,WA,7/16/2008 23:00 +Philadelphia,BLUE,OTHER,PA,7/16/2008 23:45 +Olyphant,,OTHER,PA,7/17/2008 0:00 +Caddo Mills,GREEN,,TX,7/17/2008 0:45 +Jacksonville,,LIGHT,FL,7/17/2008 2:00 +Port Washington,,DISK,WI,7/17/2008 2:15 +Shelby Township,,,MI,7/17/2008 2:49 +Caseville,,LIGHT,MI,7/17/2008 3:30 +Trenton,,VARIOUS,MI,7/17/2008 19:30 +Ventnor,,OTHER,NJ,7/17/2008 21:15 +St. Louis,,SPHERE,MO,7/17/2008 22:00 +Colfax,,LIGHT,WI,7/17/2008 22:40 +Macon,,,GA,7/17/2008 23:00 +Urbandale,,,IA,7/17/2008 23:15 +State College,,LIGHT,PA,7/18/2008 1:07 +Albuquerque,,LIGHT,NM,7/18/2008 3:15 +Oxford,,LIGHT,NC,7/18/2008 10:35 +Houston,,OTHER,TX,7/18/2008 19:00 +Federalsburg,,DISK,MD,7/18/2008 20:00 +Hemet,,OVAL,CA,7/18/2008 20:00 +Po'ipu,RED GREEN,OTHER,HI,7/18/2008 21:30 +Gainesville,,LIGHT,VA,7/18/2008 21:45 +Salem,,DISK,MO,7/18/2008 21:45 +Salem,,DISK,MO,7/18/2008 21:45 +Hancock,,LIGHT,MD,7/18/2008 21:50 +Johnstown,,LIGHT,PA,7/18/2008 21:50 +Waterloo,,FIREBALL,IA,7/18/2008 21:50 +Evans,,LIGHT,WA,7/18/2008 22:10 +Duluth,,LIGHT,MN,7/18/2008 22:20 +Cape May,ORANGE,SPHERE,NJ,7/18/2008 22:30 +St. Charles,,TRIANGLE,MO,7/18/2008 23:00 +San Diego,,OTHER,CA,7/19/2008 0:00 +State College,,,PA,7/19/2008 3:27 +Delaware,,SPHERE,DE,7/19/2008 6:15 +Gettysburg,,RECTANGLE,PA,7/19/2008 9:05 +Paulden,,CIRCLE,AZ,7/19/2008 11:23 +Teton National Park,,OVAL,WY,7/19/2008 12:00 +Mumford,,CIGAR,NY,7/19/2008 14:00 +Albuquerque,,DISK,NM,7/19/2008 18:24 +Solon,,,IA,7/19/2008 20:00 +Dana Point,,TRIANGLE,CA,7/19/2008 21:00 +Savannah,,LIGHT,GA,7/19/2008 21:00 +Kuttawa,,LIGHT,KY,7/19/2008 21:15 +Chattanooga,,LIGHT,TN,7/19/2008 22:15 +Everett,,CIRCLE,WA,7/19/2008 22:15 +Beaverton,,,OR,7/20/2008 0:00 +Fort Davis,RED GREEN BLUE,LIGHT,TX,7/20/2008 2:20 +Beaverton,,,OR,7/20/2008 5:30 +Fremont,,CYLINDER,CA,7/20/2008 13:00 +Ann Arbor,,TRIANGLE,MI,7/20/2008 21:35 +Brooklyn Park,GREEN,SPHERE,MN,7/20/2008 21:40 +Buffalo,,LIGHT,NY,7/20/2008 22:00 +Midland,,TRIANGLE,MI,7/20/2008 22:30 +West Bloomfield,,SPHERE,MI,7/20/2008 23:15 +Fremont,,FIREBALL,MI,7/20/2008 23:30 +Milford Township,,LIGHT,MI,7/21/2008 0:03 +Buffalo,,RECTANGLE,NY,7/21/2008 2:00 +Kernersville,,VARIOUS,NC,7/21/2008 3:18 +Duluth,,LIGHT,MN,7/21/2008 11:49 +Russell Springs,,FLASH,KY,7/21/2008 20:00 +Pueblo,,RECTANGLE,CO,7/21/2008 20:50 +Gridley,,FORMATION,CA,7/21/2008 21:21 +Parsons,,,KS,7/21/2008 22:00 +Butler,,RECTANGLE,MO,7/21/2008 22:30 +Hamburg,ORANGE,LIGHT,MI,7/21/2008 22:30 +Boynton Beach,,LIGHT,FL,7/21/2008 23:00 +Pe Ell,,LIGHT,WA,7/21/2008 23:15 +Borderland,,LIGHT,WV,7/22/2008 5:00 +Mira Loma,,OTHER,CA,7/22/2008 21:20 +Kokomo,ORANGE,LIGHT,IN,7/22/2008 21:40 +Kokomo,,LIGHT,IN,7/22/2008 22:02 +Peru,ORANGE,FIREBALL,IN,7/22/2008 22:13 +Maryhill,,DISK,WA,7/22/2008 22:30 +Lake Charles,,CIRCLE,LA,7/22/2008 23:00 +Natrona Heights,ORANGE,FIREBALL,PA,7/22/2008 23:00 +Lapeer,,CIRCLE,MI,7/23/2008 1:15 +Naperville,,TRIANGLE,IL,7/23/2008 9:20 +Columbia,,CIGAR,MO,7/23/2008 18:00 +Columbia,,CIGAR,MO,7/23/2008 18:00 +Bayfield,ORANGE,DISK,WI,7/23/2008 22:00 +Gulfport,,DISK,MS,7/23/2008 22:00 +Lafayette,,LIGHT,IN,7/23/2008 22:00 +Monticello,ORANGE,LIGHT,IN,7/23/2008 22:00 +Kokomo,,,IN,7/23/2008 22:05 +Lagro,,LIGHT,IN,7/23/2008 22:10 +Yuma,,FORMATION,AZ,7/23/2008 22:20 +Marietta,,OTHER,GA,7/23/2008 22:55 +Aztec,,OTHER,NM,7/23/2008 23:30 +Battleground,RED,LIGHT,IN,7/23/2008 23:30 +Spokane Valley,RED,LIGHT,WA,7/24/2008 10:10 +Annandale,,SPHERE,NJ,7/24/2008 17:20 +Corpus Christi,,OTHER,TX,7/24/2008 18:00 +Richmond,,OTHER,VA,7/24/2008 19:00 +Surprise,ORANGE,LIGHT,AZ,7/24/2008 19:19 +Phoenix,GREEN,,AZ,7/24/2008 20:12 +Southern Shores,RED,,NC,7/24/2008 21:30 +Golden Valley,,FIREBALL,AZ,7/24/2008 22:00 +Hamburg,,,PA,7/24/2008 22:00 +Warsaw,,CIRCLE,IN,7/24/2008 22:00 +New Port Richey,,,FL,7/24/2008 22:05 +Goshen,,LIGHT,IN,7/24/2008 22:15 +Buffalo,,RECTANGLE,NY,7/24/2008 22:55 +Seymour,,OVAL,WI,7/24/2008 23:14 +Aztec,,FIREBALL,NM,7/24/2008 23:30 +Val Verde,,LIGHT,CA,7/25/2008 0:32 +Bayside,,SPHERE,NY,7/25/2008 1:15 +Wickenburg,,OTHER,AZ,7/25/2008 2:00 +Fulton,,,NY,7/25/2008 2:45 +Quincy,,LIGHT,MA,7/25/2008 2:45 +Bakersfield,RED GREEN,CIRCLE,CA,7/25/2008 3:35 +Chandler,,DIAMOND,AZ,7/25/2008 4:00 +Maricopa,,DIAMOND,AZ,7/25/2008 4:00 +Lake Kiowa,,TRIANGLE,TX,7/25/2008 5:10 +Surfside Beach,ORANGE,FLASH,SC,7/25/2008 10:30 +Southbury,,OTHER,CT,7/25/2008 12:00 +Alpheretta,,,GA,7/25/2008 12:45 +Aurora,,EGG,IL,7/25/2008 17:00 +Van Nuys,,DIAMOND,CA,7/25/2008 20:15 +Cary,,LIGHT,NC,7/25/2008 20:30 +Atlanta,,CIRCLE,GA,7/25/2008 21:45 +Phoenix,,LIGHT,AZ,7/25/2008 21:45 +Elizabeth,,OTHER,PA,7/25/2008 22:00 +Jefferson,,DISK,GA,7/25/2008 22:00 +Orleans,,LIGHT,CA,7/25/2008 22:00 +York,,VARIOUS,PA,7/25/2008 22:00 +Wipholt,RED ORANGE,RECTANGLE,MN,7/25/2008 23:00 +Yukon,,TRIANGLE,OK,7/25/2008 23:00 +Fulton,ORANGE,SPHERE,NY,7/26/2008 0:00 +Ojai,,VARIOUS,CA,7/26/2008 0:30 +East Haddam,,LIGHT,CT,7/26/2008 1:30 +East Greenbush,RED,LIGHT,NY,7/26/2008 1:58 +Sioux Falls,RED,DISK,SD,7/26/2008 4:23 +Orlando,BLUE,LIGHT,FL,7/26/2008 5:50 +Seneca Falls,ORANGE,FIREBALL,NY,7/26/2008 9:30 +Grand Rapids,,FIREBALL,MN,7/26/2008 21:55 +Sebastopol,,TRIANGLE,CA,7/26/2008 22:00 +Isleta,,,NM,7/26/2008 22:29 +Demorest,RED,,GA,7/27/2008 0:00 +Cedar Point,,LIGHT,NC,7/27/2008 0:18 +Wellington,,DISK,FL,7/27/2008 0:30 +Florence,,TRIANGLE,KY,7/27/2008 1:30 +Ft. Lauderdale,YELLOW,CONE,FL,7/27/2008 2:00 +Honesdale,,TRIANGLE,PA,7/27/2008 3:00 +Leander,,OVAL,TX,7/27/2008 3:30 +Eagle Point,,,OR,7/27/2008 8:30 +San Antonio,,OVAL,TX,7/27/2008 13:10 +Asheville,,LIGHT,NC,7/27/2008 22:00 +Lexington,,SPHERE,VA,7/27/2008 22:10 +Fayetteville,,,GA,7/27/2008 23:00 +Rock Port,GREEN,CYLINDER,MO,7/27/2008 23:40 +Sterling Heights,RED,LIGHT,MI,7/27/2008 23:45 +Honolulu,,CIGAR,HI,7/28/2008 0:00 +Rexburg,,FORMATION,ID,7/28/2008 0:30 +Norwalk,GREEN BLUE,FLASH,CA,7/28/2008 1:45 +Holly,,OTHER,MI,7/28/2008 4:00 +Houston,,LIGHT,TX,7/28/2008 8:15 +Mount Sterling,,,KY,7/28/2008 22:50 +Achusnet,,SPHERE,MA,7/28/2008 23:00 +Busby,,LIGHT,MT,7/28/2008 23:00 +Kent,,TRIANGLE,WA,7/29/2008 2:00 +Sacramento,BLUE,CIRCLE,CA,7/29/2008 5:35 +"Kennedale,",,DIAMOND,TX,7/29/2008 7:30 +Boonton Twp,YELLOW,OVAL,NJ,7/29/2008 9:44 +Tucson,,CIRCLE,AZ,7/29/2008 20:30 +Essexville,,,MI,7/29/2008 22:30 +New Castle,,OTHER,PA,7/29/2008 23:47 +Laurel,,,MS,7/30/2008 0:00 +Warren,,LIGHT,MI,7/30/2008 7:00 +Odd,,TRIANGLE,WV,7/30/2008 9:06 +Roseville,,CYLINDER,CA,7/30/2008 10:00 +Loveland,ORANGE,TRIANGLE,CO,7/30/2008 11:15 +Palmdale,,OVAL,CA,7/30/2008 18:00 +Cheviot,,CHEVRON,OH,7/30/2008 18:10 +Deptford,,OVAL,NJ,7/30/2008 21:45 +Marshfield,ORANGE,,MA,7/30/2008 22:00 +Corvallis,,FIREBALL,OR,7/30/2008 22:30 +Northville,,CIRCLE,NY,7/30/2008 22:30 +New London,RED,LIGHT,MN,7/30/2008 22:43 +Crystal River,,,FL,7/30/2008 23:00 +Russellville,RED YELLOW BLUE,FORMATION,AR,7/30/2008 23:30 +Jensen Beach,RED YELLOW GREEN,VARIOUS,FL,7/31/2008 0:00 +Santa Fe,,LIGHT,NM,7/31/2008 0:15 +Marquette,RED,SPHERE,MI,7/31/2008 16:00 +Allentown,,DISK,PA,7/31/2008 21:15 +Grand Marsh,,FORMATION,WI,7/31/2008 21:15 +Almond,,TRIANGLE,WI,7/31/2008 21:20 +La Farge,RED,,WI,7/31/2008 21:20 +Salisbury,,CIRCLE,NC,7/31/2008 21:20 +Portage,,FORMATION,WI,7/31/2008 21:22 +Mosinee,,LIGHT,WI,7/31/2008 21:30 +Omro,,LIGHT,WI,7/31/2008 21:30 +New Kensignton,,TRIANGLE,PA,7/31/2008 21:50 +Close to Wellton,,,AZ,7/31/2008 22:00 +Fort Collins,,FLASH,CO,7/31/2008 22:00 +Yuma,ORANGE,LIGHT,AZ,7/31/2008 22:00 +Yuma,YELLOW,FORMATION,AZ,7/31/2008 22:16 +Denver,,LIGHT,CO,7/31/2008 22:30 +Canton,,TRIANGLE,OH,7/31/2008 22:34 +Park Ridge,,OVAL,IL,7/31/2008 22:40 +Leeds,,DIAMOND,NY,7/31/2008 23:00 +Overland Park,,FIREBALL,KS,7/31/2008 23:00 +Rochester Hills,,LIGHT,MI,7/31/2008 23:00 +Rochester Hills,,LIGHT,MI,7/31/2008 23:00 +None,,LIGHT,MN,7/31/2008 23:15 +Red Bluff,,CIRCLE,CA,7/31/2008 23:45 +Aiken,,SPHERE,SC,8/1/2008 0:00 +Beecher,,FLASH,IL,8/1/2008 0:20 +La Puente,BLUE,OVAL,CA,8/1/2008 0:40 +Palestine,,TEARDROP,TX,8/1/2008 1:31 +Granda Hills,,SPHERE,CA,8/1/2008 2:00 +Netcong,,SPHERE,NJ,8/1/2008 3:30 +Winthrop,,OVAL,WA,8/1/2008 14:30 +Denver International Airport,,LIGHT,CO,8/1/2008 15:00 +San Francisco,,CIRCLE,CA,8/1/2008 16:15 +Fullerton,,FLASH,CA,8/1/2008 20:30 +Sebring,RED,LIGHT,OH,8/1/2008 21:00 +Kingston,,CIRCLE,NY,8/1/2008 21:30 +Ossipee,,LIGHT,NH,8/1/2008 22:00 +Park Ridge,,OVAL,IL,8/1/2008 22:00 +Des Moines,,SPHERE,IA,8/1/2008 22:30 +Wickenburg,BLUE,SPHERE,AZ,8/1/2008 22:30 +Bennett,,OTHER,CO,8/1/2008 22:45 +Gladstone,,LIGHT,MO,8/1/2008 23:00 +Somerset,,DISK,NJ,8/1/2008 23:00 +Burbank,,LIGHT,CA,8/1/2008 23:30 +Billings,,CROSS,MT,8/1/2008 23:45 +Irrigon,GREEN,CIRCLE,OR,8/2/2008 0:00 +Umatilla,,FIREBALL,OR,8/2/2008 0:12 +Rockford,,CIRCLE,IL,8/2/2008 0:30 +Bogart,,LIGHT,GA,8/2/2008 1:00 +Oregon City,,OTHER,OR,8/2/2008 1:30 +Stockton,,FIREBALL,CA,8/2/2008 2:00 +Ft. Lauderdale,,LIGHT,FL,8/2/2008 9:30 +Sonora,,CIRCLE,CA,8/2/2008 11:00 +Dearborn,,OVAL,MI,8/2/2008 11:15 +Tulsa,,OVAL,OK,8/2/2008 11:45 +Tulsa,,TEARDROP,OK,8/2/2008 11:45 +Elk Grove,,CHEVRON,IL,8/2/2008 16:15 +Arkansas,,DISK,AR,8/2/2008 17:30 +Schenectady,,LIGHT,NY,8/2/2008 17:53 +Arlington,,OVAL,VA,8/2/2008 20:30 +Ft. Lauderdale,,CIRCLE,FL,8/2/2008 21:00 +Deltona,,FIREBALL,FL,8/2/2008 21:30 +Fleming Island,,FIREBALL,FL,8/2/2008 21:30 +Riverside,,LIGHT,CA,8/2/2008 21:30 +Oshkosh,,FIREBALL,WI,8/2/2008 21:49 +Chehalis,,,WA,8/2/2008 22:00 +Peoria,GREEN,FIREBALL,AZ,8/2/2008 22:00 +Southborough,,TRIANGLE,MA,8/2/2008 22:20 +Brady,,OTHER,TX,8/2/2008 22:30 +Fuquay Varina,,SPHERE,NC,8/2/2008 22:30 +Riverside,,FLASH,CA,8/2/2008 22:32 +Oceanside,,OVAL,NY,8/2/2008 22:40 +Ocean City,,CIRCLE,NJ,8/2/2008 22:45 +Mount Vernon,,,WA,8/2/2008 23:02 +Wapakoneta,ORANGE,SPHERE,OH,8/2/2008 23:10 +Yulee,,LIGHT,FL,8/2/2008 23:30 +Henderson,,VARIOUS,NV,8/2/2008 23:35 +Orondo,,FIREBALL,WA,8/3/2008 0:10 +Clatskanie,GREEN,CIRCLE,OR,8/3/2008 1:30 +Clinton,,,NJ,8/3/2008 1:45 +Sunriver,,CYLINDER,OR,8/3/2008 10:30 +Bellingham,,CIGAR,WA,8/3/2008 13:00 +Sioux City,,DISK,IA,8/3/2008 16:42 +Virginia Beach,,FIREBALL,VA,8/3/2008 21:00 +Baltimore,,TEARDROP,MD,8/3/2008 21:40 +Baltimore,,TEARDROP,MD,8/3/2008 21:50 +Baltimore,,OVAL,MD,8/3/2008 22:00 +Denver,,LIGHT,PA,8/3/2008 22:00 +Frenchtown,BLUE,FLASH,NJ,8/3/2008 22:00 +Long Beach,,OVAL,NY,8/3/2008 22:00 +Milford,RED GREEN,FIREBALL,DE,8/3/2008 22:00 +Scotch Plains,,CIGAR,NJ,8/3/2008 22:00 +Tampa,BLUE,,FL,8/3/2008 22:00 +Baltimore,,SPHERE,MD,8/3/2008 22:06 +Vienna,ORANGE,SPHERE,VA,8/3/2008 22:10 +Henderson,,VARIOUS,NV,8/3/2008 22:15 +Riverside,GREEN,LIGHT,PA,8/3/2008 22:15 +Winfield,,TRIANGLE,IL,8/3/2008 22:30 +Sterling Heights,RED,CIRCLE,MI,8/3/2008 23:00 +Akron,,DIAMOND,OH,8/4/2008 0:00 +Orlando,,VARIOUS,FL,8/4/2008 14:00 +Orlando,,VARIOUS,FL,8/4/2008 14:00 +Yelm,,,WA,8/4/2008 18:05 +Canton,,CIGAR,MA,8/4/2008 19:00 +Hudson,,LIGHT,WI,8/4/2008 19:00 +Chicago,,DISK,IL,8/4/2008 19:01 +Sudbury,,SPHERE,MA,8/4/2008 19:45 +Pawcatuck,,LIGHT,CT,8/4/2008 21:00 +Rockland,,LIGHT,ME,8/4/2008 21:15 +Des Moines,,FIREBALL,IA,8/4/2008 21:30 +Westchester County,,LIGHT,NY,8/4/2008 21:45 +Roswell,,,NM,8/4/2008 21:53 +Pocatello,,LIGHT,ID,8/4/2008 22:10 +Austin,,LIGHT,TX,8/4/2008 22:30 +Davie,,FORMATION,FL,8/4/2008 22:50 +Plantation,,FORMATION,FL,8/4/2008 22:50 +Davie,,,FL,8/4/2008 22:55 +Boise,YELLOW,OTHER,ID,8/4/2008 23:00 +Flourtown,ORANGE,FLASH,PA,8/4/2008 23:00 +Culver City,,CHEVRON,CA,8/5/2008 2:00 +Hollywood,,OTHER,FL,8/5/2008 5:00 +Millersburg,,TRIANGLE,MO,8/5/2008 5:30 +Balto City,,TRIANGLE,MD,8/5/2008 9:00 +Bedford,,TRIANGLE,VA,8/5/2008 10:15 +Louisville,RED,OTHER,CO,8/5/2008 13:00 +Hanover,,CIRCLE,PA,8/5/2008 16:00 +Tucson,,DISK,AZ,8/5/2008 19:30 +Sangerville,,CIRCLE,ME,8/5/2008 20:25 +Spokane,,DIAMOND,WA,8/5/2008 20:45 +Columbus,,LIGHT,OH,8/5/2008 21:30 +Hobbs,ORANGE,TEARDROP,NM,8/5/2008 21:54 +Phoenix,,TRIANGLE,AZ,8/5/2008 22:30 +Phoenix,GREEN,,AZ,8/5/2008 23:32 +Plymouth,RED GREEN,,WI,8/6/2008 1:00 +Portland,,DISK,OR,8/6/2008 12:00 +Irvine,,LIGHT,CA,8/6/2008 21:30 +Hartwell,,LIGHT,GA,8/6/2008 21:45 +Soddy Daisy,RED,LIGHT,TN,8/6/2008 21:55 +Broaddus,,,TX,8/6/2008 22:35 +Cranford,,TRIANGLE,NJ,8/7/2008 0:30 +Paso Robles,,CIGAR,CA,8/7/2008 9:43 +Ingleside,,DISK,TX,8/7/2008 15:00 +Denton,,DISK,TX,8/7/2008 16:25 +Lake Wales,RED GREEN,TRIANGLE,FL,8/7/2008 21:00 +Chula Vista,,OVAL,CA,8/7/2008 21:05 +Allen,RED,TEARDROP,TX,8/7/2008 21:20 +Dublin,GREEN,CIRCLE,CA,8/7/2008 21:30 +Choctaw County,,LIGHT,OK,8/7/2008 21:40 +Beach Park,,CIGAR,IL,8/7/2008 22:00 +Waverly,,LIGHT,NY,8/7/2008 22:15 +Crater Lake,,FIREBALL,OR,8/7/2008 23:00 +Hazen,,CYLINDER,ND,8/7/2008 23:00 +Independence,,CIRCLE,KY,8/7/2008 23:20 +Lancaster,,,OH,8/7/2008 23:46 +Eden,,CIRCLE,NY,8/8/2008 0:00 +La Crosse,,DISK,WI,8/8/2008 0:30 +Murray,,FLASH,KY,8/8/2008 1:30 +Hamilton,,,MI,8/8/2008 2:00 +Powder Springs,RED,TRIANGLE,GA,8/8/2008 5:00 +McAllen,,DISK,TX,8/8/2008 9:00 +Newberg,RED,LIGHT,OR,8/8/2008 9:00 +Sunnyvale,,EGG,CA,8/8/2008 15:00 +Denton,,DISK,TX,8/8/2008 17:25 +Sandusky,,,OH,8/8/2008 19:45 +Chicago,RED ORANGE,OTHER,IL,8/8/2008 20:00 +Alamo,,SPHERE,TX,8/8/2008 20:11 +Louisville,,FIREBALL,KY,8/8/2008 20:30 +Chula Vista,,CIRCLE,CA,8/8/2008 21:00 +Kingsbury,ORANGE,SPHERE,NY,8/8/2008 21:00 +Mission Beach,ORANGE,LIGHT,CA,8/8/2008 21:00 +Mt. Airy,,LIGHT,MD,8/8/2008 21:00 +Corpus Christi,,LIGHT,TX,8/8/2008 22:00 +San Diego,ORANGE,OTHER,CA,8/8/2008 22:00 +Altomont,ORANGE,CIRCLE,NY,8/8/2008 22:30 +Baton Rouge,,FIREBALL,LA,8/8/2008 23:00 +Orangevale,BLUE,CIRCLE,CA,8/8/2008 23:00 +Southampton,,TRIANGLE,PA,8/8/2008 23:11 +Kirkland,,,WA,8/9/2008 0:23 +Reno,,SPHERE,NV,8/9/2008 1:00 +Niles,,TRIANGLE,MI,8/9/2008 2:00 +Elizabeth,,DISK,NJ,8/9/2008 9:45 +Kelso,,,WA,8/9/2008 10:00 +Kelso,,,WA,8/9/2008 10:00 +Kelso,,,WA,8/9/2008 10:03 +Pittsburgh,YELLOW,DISK,PA,8/9/2008 10:03 +Fremont,,SPHERE,CA,8/9/2008 13:00 +Los Angeles,,LIGHT,CA,8/9/2008 17:30 +Dawson Springs,,CIRCLE,KY,8/9/2008 18:45 +Roswell,,LIGHT,NM,8/9/2008 19:03 +Spring,,CIRCLE,TX,8/9/2008 21:00 +Sabattus,,,ME,8/9/2008 21:15 +Baton Rouge,,FIREBALL,LA,8/9/2008 22:00 +Genoa,ORANGE,,OH,8/9/2008 22:00 +Houston,,LIGHT,TX,8/9/2008 22:00 +Hancock,,LIGHT,NY,8/9/2008 22:15 +Orafino,,FLASH,ID,8/9/2008 22:30 +Olema,,TRIANGLE,CA,8/9/2008 23:00 +Orrock,,LIGHT,MN,8/9/2008 23:55 +Sykesville,RED,LIGHT,MD,8/10/2008 0:15 +Houston,,CIGAR,TX,8/10/2008 1:30 +Lakehills,,LIGHT,TX,8/10/2008 2:00 +Monroe,,LIGHT,WA,8/10/2008 4:00 +Clermont,,FLASH,FL,8/10/2008 5:50 +Detroit,,CIRCLE,MI,8/10/2008 11:30 +Katy,,,TX,8/10/2008 12:30 +St. Louis,,CIGAR,MO,8/10/2008 13:00 +Kingsland,,SPHERE,TX,8/10/2008 13:30 +St. Louis,,CIGAR,MO,8/10/2008 13:45 +Madison,,OTHER,WI,8/10/2008 19:00 +Westminster,ORANGE,FIREBALL,MD,8/10/2008 21:50 +Murray,,OTHER,UT,8/10/2008 22:30 +no data,,TRIANGLE,CA,8/10/2008 22:30 +Bakersfield,,RECTANGLE,CA,8/10/2008 23:00 +Eagle River,,OTHER,WI,8/10/2008 23:00 +Wilkes-Barre,RED ORANGE,LIGHT,PA,8/10/2008 23:45 +Ashtabula,,OTHER,OH,8/11/2008 0:00 +Mt. Sterling,,TRIANGLE,KY,8/11/2008 0:00 +Petersville,,TRIANGLE,AL,8/11/2008 2:15 +Coral Springs,,,FL,8/11/2008 2:30 +no data,,CHEVRON,KY,8/11/2008 9:00 +Raleigh,,LIGHT,NC,8/11/2008 9:30 +Seattle,,CIRCLE,WA,8/11/2008 15:30 +Lahaina,,CIRCLE,HI,8/11/2008 19:30 +Old Lyme,,CYLINDER,CT,8/11/2008 20:00 +Gillette,,EGG,WY,8/11/2008 20:15 +Hebbronville,YELLOW,FIREBALL,TX,8/11/2008 21:45 +Erie,,FIREBALL,PA,8/11/2008 22:30 +Delano,,,CA,8/11/2008 23:00 +Orlando,BLUE,VARIOUS,FL,8/11/2008 23:00 +Corvallis,,DIAMOND,OR,8/11/2008 23:30 +Brandon,,RECTANGLE,FL,8/12/2008 0:15 +Chandler,,,AZ,8/12/2008 20:00 +North Lima,,SPHERE,OH,8/12/2008 20:45 +La Habra,,SPHERE,CA,8/12/2008 22:15 +Lacey,,LIGHT,WA,8/12/2008 23:00 +Lacey,,LIGHT,WA,8/12/2008 23:30 +Napa,BLUE,LIGHT,CA,8/12/2008 23:59 +Summersville,,CIRCLE,WV,8/13/2008 0:40 +Nipomo,YELLOW,OVAL,CA,8/13/2008 1:00 +Towaco,,TRIANGLE,NJ,8/13/2008 1:00 +Springfield,,CYLINDER,IL,8/13/2008 14:15 +Brentwood,,OVAL,CA,8/13/2008 16:30 +Cross Roads,,DISK,TX,8/13/2008 20:00 +Chicago,,DISK,IL,8/13/2008 20:02 +Seneca Falls,,LIGHT,NY,8/13/2008 20:35 +Norwalk,,LIGHT,CA,8/13/2008 21:00 +Oak Lawn,,,IL,8/13/2008 21:00 +Mendota,,LIGHT,CA,8/13/2008 21:15 +Bloomington,ORANGE,LIGHT,IN,8/13/2008 22:00 +Fort Drum,RED GREEN BLUE,TRIANGLE,NY,8/14/2008 0:25 +Roseville,,EGG,CA,8/14/2008 1:30 +Bakersfield,,,CA,8/14/2008 2:00 +Bellevue,,LIGHT,WA,8/14/2008 3:00 +Tumwater,,LIGHT,WA,8/14/2008 5:00 +New Mexico,,,NM,8/14/2008 12:03 +Austin,,,TX,8/14/2008 14:30 +Overland Park,ORANGE,CIRCLE,KS,8/14/2008 18:00 +West Seattle,,OVAL,WA,8/14/2008 19:00 +Lantana,RED,CIRCLE,TX,8/14/2008 20:05 +El Paso,,TEARDROP,TX,8/14/2008 20:12 +Hammond,,,IN,8/14/2008 20:15 +Elverta,,RECTANGLE,CA,8/14/2008 21:00 +Chicago,,LIGHT,IL,8/14/2008 21:30 +Rydal,,FIREBALL,PA,8/14/2008 21:35 +Addison,,DISK,PA,8/14/2008 23:30 +Urbandale,,LIGHT,IA,8/15/2008 0:00 +Manitou Springs,,OVAL,CO,8/15/2008 0:37 +Amherst,,OTHER,NY,8/15/2008 1:00 +Hillsboro,,LIGHT,WV,8/15/2008 1:30 +Perrysburg,RED,TEARDROP,OH,8/15/2008 2:00 +Ridgely,,FIREBALL,MD,8/15/2008 5:30 +Plymouth,,,MA,8/15/2008 9:30 +Portland,,TRIANGLE,ME,8/15/2008 11:40 +New Orleans,,LIGHT,LA,8/15/2008 11:45 +La Crosse,,TEARDROP,WI,8/15/2008 13:00 +San Diego,BLUE,VARIOUS,CA,8/15/2008 14:00 +Orlando,,RECTANGLE,FL,8/15/2008 18:25 +Pennsville,GREEN,TRIANGLE,NJ,8/15/2008 21:00 +Lake Charles,,CIRCLE,LA,8/15/2008 22:30 +Clearfield,ORANGE,TRIANGLE,PA,8/15/2008 23:00 +Winsted,,CIRCLE,CT,8/15/2008 23:00 +Newark Valley,,LIGHT,NY,8/16/2008 5:45 +North Highlands,,LIGHT,CA,8/16/2008 10:40 +Elmhurst,,FIREBALL,IL,8/16/2008 22:00 +Grand Island,ORANGE,OVAL,NE,8/16/2008 22:00 +Trout Lake,,OVAL,WA,8/16/2008 23:30 +Gadsden,ORANGE GREEN,TEARDROP,AL,8/17/2008 0:00 +Rehobeth,,FORMATION,MA,8/17/2008 2:30 +Napa,,LIGHT,CA,8/17/2008 3:30 +Bolingbrook,,TRIANGLE,IL,8/17/2008 4:50 +Pacoima,,LIGHT,CA,8/17/2008 8:45 +Ocean City,,OVAL,NJ,8/17/2008 10:30 +New York City,,DISK,NY,8/17/2008 12:00 +Stamford,,FORMATION,CT,8/17/2008 13:30 +Salt Lake City,,,UT,8/17/2008 15:00 +Philadelphia Airport,,OTHER,PA,8/17/2008 16:20 +Houston,,CHEVRON,TX,8/17/2008 18:30 +Wauconda,,CIGAR,IL,8/17/2008 19:00 +Oklahoma City,,,OK,8/17/2008 20:01 +Smithville,,LIGHT,TX,8/17/2008 22:45 +Walden-Newburg,,CIRCLE,NY,8/17/2008 23:00 +Pocatello,,,ID,8/18/2008 0:00 +Oshkosh,,LIGHT,WI,8/18/2008 1:30 +Spencer,,DISK,IN,8/18/2008 2:00 +Arlington,,OVAL,TX,8/18/2008 9:20 +Washington,,CIRCLE,NJ,8/18/2008 11:55 +Bluffton,,OVAL,OH,8/18/2008 12:00 +North Myrtle Beach,ORANGE,SPHERE,SC,8/18/2008 23:00 +Kewaskum,,LIGHT,WI,8/19/2008 0:00 +Sylacauga,ORANGE,,AL,8/19/2008 5:10 +Ashland,,EGG,NH,8/19/2008 11:30 +Avon,,DISK,CO,8/19/2008 13:36 +Alexandria,,TRIANGLE,VA,8/19/2008 20:39 +S. Dartmouth,,TRIANGLE,MA,8/19/2008 20:45 +Lake Havasu City,,FORMATION,AZ,8/19/2008 20:50 +Mundelein,,LIGHT,IL,8/19/2008 21:00 +Ringwood,,LIGHT,NJ,8/19/2008 21:00 +Phillipsburg,,FLASH,NJ,8/19/2008 21:07 +Buchanan,,RECTANGLE,MI,8/19/2008 22:00 +Oak Island,,CIRCLE,NC,8/19/2008 22:00 +Trabuco Canyon,,OVAL,CA,8/19/2008 23:25 +Bergenfield,ORANGE,CIRCLE,NJ,8/20/2008 1:25 +Mount Pulaski,,DISK,IL,8/20/2008 1:30 +Grand Forks AFB,,,ND,8/20/2008 3:00 +Silver Spring,,TRIANGLE,MD,8/20/2008 3:30 +Media,,FORMATION,PA,8/20/2008 4:00 +Laramie,RED,OVAL,WY,8/20/2008 15:30 +Bloomington,,FIREBALL,MN,8/20/2008 20:00 +Lumberton,,CIGAR,NC,8/20/2008 20:00 +Newport,,CONE,RI,8/20/2008 20:30 +Stockbridge,,,MI,8/20/2008 21:50 +Gatesville,,TRIANGLE,TX,8/20/2008 22:00 +Naples,,LIGHT,FL,8/20/2008 22:20 +Amesbury area,ORANGE,SPHERE,MA,8/20/2008 23:45 +Baltimore,,SPHERE,MD,8/20/2008 23:45 +Columbus,,LIGHT,GA,8/20/2008 23:50 +Atlantic City,,FLASH,NJ,8/21/2008 0:00 +Modesto,,,CA,8/21/2008 1:00 +St. Paul,,LIGHT,MN,8/21/2008 4:00 +Newport,,DISK,RI,8/21/2008 14:00 +Denver,,DISK,CO,8/21/2008 18:50 +San Francisco,,DISK,CA,8/21/2008 20:00 +Buffalo,,CIRCLE,NY,8/21/2008 20:15 +Cornu,RED GREEN,TRIANGLE,NY,8/21/2008 21:30 +Fenton,,VARIOUS,MI,8/21/2008 23:04 +Mesquite,,SPHERE,TX,8/21/2008 23:50 +Dallas,,,TX,8/22/2008 0:00 +Yuma,,VARIOUS,AZ,8/22/2008 5:05 +East Canaan,,LIGHT,CT,8/22/2008 8:50 +Reno,,DIAMOND,NV,8/22/2008 15:50 +Beaumont,,CYLINDER,TX,8/22/2008 18:25 +Westlake,,,LA,8/22/2008 19:15 +Westlake,,OTHER,LA,8/22/2008 19:15 +Pass Christian,GREEN,FIREBALL,MS,8/22/2008 19:45 +Las Cruces,,LIGHT,NM,8/22/2008 20:30 +Maple Grove,,LIGHT,MN,8/22/2008 21:00 +Long Beach,,TRIANGLE,CA,8/22/2008 21:39 +West Valley City,,TRIANGLE,UT,8/22/2008 22:15 +Redondo Beach,RED,DISK,CA,8/22/2008 22:34 +Chicago,ORANGE,LIGHT,IL,8/22/2008 23:00 +Provo,,CHEVRON,UT,8/22/2008 23:00 +Bar Harbor,RED,FIREBALL,ME,8/22/2008 23:30 +Orlando,,,FL,8/23/2008 0:00 +Great Bend,RED GREEN BLUE,OVAL,PA,8/23/2008 7:30 +Issaquah,,LIGHT,WA,8/23/2008 8:55 +Gaylord,,LIGHT,MI,8/23/2008 11:00 +Westlake,,LIGHT,LA,8/23/2008 17:50 +Hickory,,FLASH,NC,8/23/2008 21:20 +Fort Dodge,,FIREBALL,IA,8/23/2008 21:40 +Elkhorn City,,,KY,8/23/2008 22:00 +Palmdale,,CYLINDER,CA,8/23/2008 22:15 +Thousand Oaks,BLUE,OVAL,CA,8/23/2008 22:45 +Dyersburg,,,TN,8/23/2008 23:30 +Casselton,RED BLUE,,ND,8/24/2008 1:00 +Indianapolis,,,IN,8/24/2008 16:15 +Lincoln,YELLOW BLUE,CIGAR,NE,8/24/2008 17:32 +Gardena,,CIGAR,CA,8/24/2008 18:00 +Mokena,,OVAL,IL,8/24/2008 18:00 +Bakersfield,,VARIOUS,CA,8/24/2008 19:00 +Stamford,,CIRCLE,CT,8/24/2008 20:30 +Chappaqua,,OTHER,NY,8/24/2008 20:32 +Coeur d'Alene,,LIGHT,ID,8/24/2008 21:00 +Branchport,,FIREBALL,NY,8/24/2008 21:15 +St. Clair Shores,,TRIANGLE,MI,8/24/2008 22:00 +Rolling Meadows,ORANGE,FIREBALL,IL,8/24/2008 22:40 +Aurora,,EGG,CO,8/25/2008 2:30 +St. Louis,,DISK,MO,8/25/2008 3:00 +New York City,,VARIOUS,NY,8/25/2008 9:30 +Johnson City,,OTHER,NY,8/25/2008 18:00 +Boston,,LIGHT,MA,8/25/2008 20:00 +Athens,,TRIANGLE,TX,8/25/2008 21:00 +Athens,,TEARDROP,NY,8/25/2008 22:30 +Connersville,,LIGHT,IN,8/25/2008 22:50 +Chicago,,LIGHT,IL,8/25/2008 23:55 +La Palma,,SPHERE,CA,8/26/2008 1:00 +Springtown,,CIGAR,TX,8/26/2008 7:30 +Suwanee,,CIRCLE,GA,8/26/2008 10:00 +Johnson City,,CIGAR,NY,8/26/2008 16:30 +Pleasantville,,VARIOUS,NJ,8/26/2008 19:50 +Eureka,RED,LIGHT,NV,8/26/2008 20:35 +Rochester,,FORMATION,NY,8/26/2008 21:15 +Fall River,,CIRCLE,MA,8/26/2008 22:00 +Warrensburg,BLUE,LIGHT,MO,8/26/2008 22:00 +St. Louis,,DIAMOND,MO,8/26/2008 23:17 +Anniston,BLUE,CIRCLE,AL,8/27/2008 1:26 +Pearland,,FIREBALL,TX,8/27/2008 3:04 +Houston,,CYLINDER,TX,8/27/2008 12:00 +Houston,,CYLINDER,TX,8/27/2008 12:25 +Selfridge Air National Guard,,DISK,MI,8/27/2008 13:00 +Toledo,,DISK,OH,8/27/2008 14:36 +League City,,,TX,8/27/2008 15:00 +Wichita County,,DIAMOND,TX,8/27/2008 19:00 +Atlantic City,,LIGHT,NJ,8/27/2008 19:45 +Post,,LIGHT,TX,8/27/2008 20:00 +Langhorne,,OTHER,PA,8/27/2008 20:45 +New Port Richey,,DIAMOND,FL,8/27/2008 21:06 +New Fairfield,,LIGHT,CT,8/27/2008 21:11 +Clear Lake,,TRIANGLE,WA,8/27/2008 22:00 +Cape May,YELLOW,VARIOUS,NJ,8/28/2008 0:00 +Appalachin,,OVAL,NY,8/28/2008 6:38 +Beverly Hills,,FLASH,CA,8/28/2008 12:00 +Santa Maria,,SPHERE,CA,8/28/2008 18:00 +Hanalei,ORANGE,LIGHT,HI,8/28/2008 21:00 +Orem,,TRIANGLE,UT,8/28/2008 21:00 +Draper,,TRIANGLE,UT,8/28/2008 21:20 +Allentown,BLUE,DISK,PA,8/28/2008 21:30 +Leighton,,FIREBALL,AL,8/28/2008 22:30 +Yorkville,,CIRCLE,IL,8/28/2008 23:50 +Clementon,,CYLINDER,NJ,8/29/2008 11:16 +Hendersonville,RED,CIRCLE,NC,8/29/2008 19:30 +South Elgin,,SPHERE,IL,8/29/2008 20:00 +Clay,,TRIANGLE,NY,8/29/2008 20:30 +I-65,,TRIANGLE,IN,8/29/2008 20:30 +Lincoln,RED,LIGHT,NE,8/29/2008 20:30 +Austin,,FLASH,TX,8/29/2008 21:00 +Springfield,,LIGHT,OR,8/29/2008 22:00 +Cupertino,,SPHERE,CA,8/29/2008 22:15 +Baltimore,,OVAL,MD,8/29/2008 23:38 +Duluth,RED,FORMATION,MN,8/30/2008 4:40 +Bel Air,,VARIOUS,MD,8/30/2008 18:15 +Williamsville,YELLOW,OTHER,NY,8/30/2008 19:40 +Ashtabula,,VARIOUS,OH,8/30/2008 20:45 +McIntosh,ORANGE,,NM,8/30/2008 21:00 +Platteville,,LIGHT,CO,8/30/2008 21:30 +Flour Lake,,LIGHT,MN,8/30/2008 22:30 +Jackson,,LIGHT,OH,8/30/2008 22:30 +Oriskany Falls,,FIREBALL,NY,8/30/2008 22:30 +Trout Lake,,EGG,WA,8/30/2008 23:00 +Appleton,,OTHER,WI,8/30/2008 23:22 +St. Paul,,,MN,8/31/2008 0:05 +Hightstown,,TEARDROP,NJ,8/31/2008 0:50 +East Machias,,LIGHT,ME,8/31/2008 1:00 +Williston,ORANGE,TRIANGLE,ND,8/31/2008 1:10 +Waterloo,,LIGHT,IA,8/31/2008 1:20 +Anthem,,LIGHT,AZ,8/31/2008 1:30 +Hanover,BLUE,SPHERE,MA,8/31/2008 2:15 +Lindenhurst,,LIGHT,NY,8/31/2008 2:25 +Petaluma,,SPHERE,CA,8/31/2008 2:30 +Dedham,,FIREBALL,MA,8/31/2008 2:32 +Cloquet,RED,TRIANGLE,MN,8/31/2008 4:45 +Philadelphia,,DISK,PA,8/31/2008 16:20 +Bohemia,,TRIANGLE,NY,8/31/2008 20:50 +Mesa,,CIGAR,AZ,8/31/2008 20:55 +Lake in the Hills,,LIGHT,IL,8/31/2008 21:00 +Villa Hills,,FORMATION,KY,8/31/2008 21:00 +Fort Collins,,TRIANGLE,CO,8/31/2008 22:00 +Union,,LIGHT,NJ,8/31/2008 22:00 +New York City,,,NY,8/31/2008 22:15 +Gurnee,,VARIOUS,IL,8/31/2008 23:00 +Montauk,RED,CIRCLE,NY,8/31/2008 23:15 +Rockford,,LIGHT,IL,9/1/2008 3:00 +Yukon,,TRIANGLE,OK,9/1/2008 11:00 +Syracuse,RED,LIGHT,NY,9/1/2008 20:30 +Wilmington,RED,,IL,9/1/2008 20:47 +Gardena,,CHEVRON,CA,9/1/2008 22:10 +Pearsall,,TRIANGLE,TX,9/1/2008 23:00 +Salem,,LIGHT,WV,9/1/2008 23:00 +San Bernardino,,,CA,9/1/2008 23:07 +Ellwood City,,CIRCLE,PA,9/2/2008 0:47 +Nunica,,CIRCLE,MI,9/2/2008 1:25 +Vestal,,EGG,NY,9/2/2008 3:36 +Buffalo,RED,LIGHT,NY,9/2/2008 11:19 +Lewisburg,BLUE,LIGHT,PA,9/2/2008 20:08 +Woodland,,CIRCLE,PA,9/2/2008 21:00 +Mesa,,LIGHT,AZ,9/2/2008 21:15 +Potsdam,,LIGHT,NY,9/2/2008 21:15 +Surfside Beach,ORANGE,FLASH,SC,9/2/2008 21:30 +Myrtle Beach,,CIRCLE,TN,9/2/2008 22:00 +North Myrtle Beach,ORANGE,SPHERE,SC,9/2/2008 22:00 +Ocean City,,LIGHT,MD,9/2/2008 22:00 +Gilroy,,SPHERE,CA,9/2/2008 22:55 +Pasco,RED,TRIANGLE,WA,9/2/2008 23:30 +Holopaw,,TRIANGLE,FL,9/3/2008 0:00 +Sanford,,,NC,9/3/2008 8:44 +Rockwood,,OTHER,PA,9/3/2008 18:30 +Spring,,TRIANGLE,TX,9/3/2008 20:05 +Martinez,,LIGHT,CA,9/3/2008 21:00 +Blountville,,OTHER,TN,9/3/2008 21:20 +Blountville,,OTHER,TN,9/3/2008 21:20 +Athens,RED,LIGHT,GA,9/3/2008 22:00 +Windhall,,OVAL,VT,9/3/2008 22:00 +Athens,RED,,GA,9/3/2008 22:30 +Quemado,,SPHERE,NM,9/3/2008 22:37 +Moravian Falls,,,NC,9/3/2008 22:45 +Vancouver,,LIGHT,WA,9/4/2008 5:30 +Eldridge,,DIAMOND,AL,9/4/2008 6:15 +Spokane Valley,YELLOW,TRIANGLE,WA,9/4/2008 21:00 +Modesto,RED,TRIANGLE,CA,9/4/2008 21:15 +Edmonds,,FORMATION,WA,9/4/2008 23:58 +Southlake,,,TX,9/5/2008 1:20 +Jeannette,,CIRCLE,PA,9/5/2008 2:50 +Port St. Lucie,,LIGHT,FL,9/5/2008 19:30 +Mesa,YELLOW,VARIOUS,AZ,9/5/2008 20:18 +Pecos,,CIRCLE,TX,9/5/2008 20:45 +Laguna Woods,,CIRCLE,CA,9/5/2008 21:00 +Pine Bluff,,FORMATION,AR,9/5/2008 23:00 +Murrieta,RED,LIGHT,CA,9/5/2008 23:10 +San Diego,,CIRCLE,CA,9/5/2008 23:10 +Pomona,,LIGHT,NY,9/6/2008 0:30 +Manteca,,,CA,9/6/2008 1:57 +Las Vegas,,LIGHT,NV,9/6/2008 3:30 +Ridgecrest,,,CA,9/6/2008 20:30 +Ridgecrest,,LIGHT,CA,9/6/2008 20:30 +Wesley Chapel,BLUE,VARIOUS,FL,9/6/2008 21:00 +Quincy,,FORMATION,MI,9/6/2008 21:10 +Baton Rouge,,TRIANGLE,LA,9/6/2008 22:00 +Beverly Hills,,CIRCLE,CA,9/6/2008 22:25 +Knoxville,,LIGHT,TN,9/6/2008 23:30 +Paso Robles,,CIGAR,CA,9/6/2008 23:30 +Pomona,,LIGHT,NY,9/7/2008 0:30 +San Jose,,EGG,CA,9/7/2008 10:30 +Macomb,,OVAL,MI,9/7/2008 17:00 +Wake Forest,,DIAMOND,NC,9/7/2008 19:00 +Fairview,,LIGHT,NJ,9/7/2008 20:00 +Tacoma,,TRIANGLE,WA,9/7/2008 22:15 +Council Bluffs,RED,TRIANGLE,IA,9/7/2008 23:00 +Oakland,,FIREBALL,ME,9/7/2008 23:00 +Roslyn,,TRIANGLE,WA,9/7/2008 23:50 +Lynnville,,RECTANGLE,KY,9/8/2008 0:00 +Englewood,,,FL,9/8/2008 0:30 +Willbraham,,DISK,MA,9/8/2008 3:00 +Reading,,TRIANGLE,PA,9/8/2008 7:15 +Lake Grove,,,NY,9/9/2008 3:00 +West Palm Beach,ORANGE GREEN,,FL,9/9/2008 10:00 +Oxford,,EGG,FL,9/9/2008 13:40 +Palestine,,OVAL,TX,9/9/2008 17:00 +Mokena,,OVAL,IL,9/9/2008 18:00 +Medford,,CIGAR,OR,9/9/2008 18:35 +Clermont,,LIGHT,FL,9/9/2008 19:00 +El Paso,,LIGHT,TX,9/9/2008 20:00 +Lake Worth,,SPHERE,FL,9/9/2008 20:30 +Shelbyville,,TRIANGLE,IL,9/9/2008 22:00 +Galivants Ferry,RED,FORMATION,SC,9/9/2008 22:30 +Woodland Hills,,CIGAR,CA,9/10/2008 9:50 +Portland,RED,CYLINDER,OR,9/10/2008 14:00 +Casa Grande,,OVAL,AZ,9/10/2008 20:35 +Holden Beach,,LIGHT,NC,9/10/2008 20:42 +Stockbridge,,,MI,9/10/2008 21:50 +Sibley,GREEN,LIGHT,MO,9/10/2008 22:00 +Tacoma,,TRIANGLE,WA,9/10/2008 22:15 +Bismarck,,VARIOUS,ND,9/10/2008 22:30 +Tupelo,,SPHERE,MS,9/10/2008 22:30 +Cogan Station,BLUE,TRIANGLE,PA,9/10/2008 23:00 +East Palatka,,LIGHT,FL,9/10/2008 23:45 +Farmers Branch,,TEARDROP,TX,9/11/2008 7:27 +Las Vegas,,,NV,9/11/2008 20:30 +Waussau,YELLOW,LIGHT,FL,9/11/2008 21:45 +Killeen,,LIGHT,TX,9/12/2008 2:00 +Stockton,,SPHERE,CA,9/12/2008 16:40 +North Las Vegas,,DISK,NV,9/12/2008 20:00 +Hood River,,TRIANGLE,OR,9/12/2008 20:04 +La Grande,GREEN,FIREBALL,OR,9/12/2008 20:15 +Dublin,,DISK,CA,9/12/2008 20:25 +San Jose,,FIREBALL,CA,9/12/2008 20:30 +Rescue,,TRIANGLE,CA,9/12/2008 20:45 +Shelbville,,LIGHT,IN,9/12/2008 21:00 +Mather,,OVAL,CA,9/12/2008 21:25 +San Diego,ORANGE,FIREBALL,CA,9/12/2008 23:00 +Spencer,,FORMATION,IN,9/12/2008 23:00 +Hermosa Brach,,DISK,CA,9/13/2008 0:00 +Rancho Cucamonga,,DIAMOND,CA,9/13/2008 17:45 +Manhattan Beach,,TRIANGLE,CA,9/13/2008 23:35 +Babylon,,,NY,9/14/2008 0:00 +East Dover,,CIRCLE,VT,9/14/2008 3:45 +Purcellville,RED,,VA,9/14/2008 5:20 +Benson,,OTHER,NC,9/14/2008 6:10 +Walters,,CIRCLE,OK,9/14/2008 6:40 +Clayton,,OVAL,DE,9/14/2008 8:00 +Interstate 5,,TRIANGLE,CA,9/14/2008 8:45 +Charlotte,,RECTANGLE,NC,9/14/2008 10:00 +Pleasant Hill,,DISK,CA,9/14/2008 10:40 +Tumwater,BLUE,SPHERE,WA,9/14/2008 10:50 +Brownsville,,TRIANGLE,TX,9/14/2008 14:00 +Hemet,,,CA,9/14/2008 16:49 +Syosset,,DISK,NY,9/14/2008 18:00 +Canajoharie,,,NY,9/14/2008 18:58 +Stroudsburg,,OTHER,PA,9/14/2008 19:20 +Bedford,,LIGHT,NH,9/14/2008 20:00 +San Juan Capistrano,ORANGE,CIRCLE,CA,9/14/2008 21:50 +Russell,,,NY,9/14/2008 22:25 +not in one,GREEN,LIGHT,IL,9/14/2008 23:00 +Eureka,,TRIANGLE,MT,9/15/2008 5:30 +San Antonio,,TRIANGLE,TX,9/15/2008 12:00 +Middlebourne,,FORMATION,WV,9/15/2008 17:30 +Roswell,BLUE,VARIOUS,NM,9/15/2008 18:30 +Elmhurst,,FIREBALL,IL,9/15/2008 19:00 +Fort Lauderdale,,DISK,FL,9/15/2008 19:39 +Melbourne,,TRIANGLE,FL,9/15/2008 20:03 +Virginia Beach,,FIREBALL,VA,9/15/2008 21:00 +Wingo,RED GREEN,CIRCLE,KY,9/15/2008 21:45 +Tulsa,,FORMATION,OK,9/16/2008 1:35 +Ashland,,FORMATION,NH,9/16/2008 8:00 +Plainfield,,CIRCLE,IL,9/16/2008 9:30 +Los Angeles,,SPHERE,CA,9/16/2008 18:30 +Lakewood,,FIREBALL,CO,9/16/2008 19:30 +DeKalb Junction,RED YELLOW,LIGHT,NY,9/16/2008 20:30 +Ingleside,,TEARDROP,IL,9/16/2008 22:00 +Riverside,,OTHER,CA,9/17/2008 4:00 +Scottsdale,,VARIOUS,AZ,9/17/2008 14:25 +Springfield,,FIREBALL,IL,9/17/2008 19:00 +Hurst,,CIRCLE,TX,9/17/2008 19:30 +Riverside,,EGG,CA,9/17/2008 20:00 +Whitefield,,LIGHT,NH,9/17/2008 20:00 +Pratt,,CIRCLE,KS,9/17/2008 20:05 +Atwater,,TRIANGLE,OH,9/17/2008 20:30 +Franklin,RED BLUE,,VT,9/17/2008 20:30 +Wentworth,,LIGHT,NH,9/17/2008 21:00 +Frankfort,,OTHER,IN,9/17/2008 21:15 +Kettering,,OTHER,OH,9/17/2008 21:20 +Rockford,RED GREEN,,MI,9/17/2008 22:30 +Gainesville,,LIGHT,GA,9/17/2008 23:00 +Vassar,ORANGE,FIREBALL,MI,9/17/2008 23:00 +San Diego,,TRIANGLE,CA,9/18/2008 3:00 +Tulsa,,CONE,OK,9/18/2008 5:30 +Mishawaka,GREEN,CIRCLE,IN,9/18/2008 6:30 +Silver Spring,,VARIOUS,MD,9/18/2008 7:00 +Canterberry,YELLOW,FORMATION,NH,9/18/2008 8:20 +Tulsa,,CONE,OK,9/18/2008 8:30 +Spencer,,,WV,9/18/2008 18:40 +Frankfort,,,IL,9/18/2008 19:00 +Rumney,,LIGHT,NH,9/18/2008 20:00 +Holbrook,RED BLUE,CIRCLE,MA,9/18/2008 20:10 +Tempe,RED,LIGHT,AZ,9/18/2008 20:25 +Carmel,,OTHER,IN,9/18/2008 20:55 +Jersey City,,DISK,NJ,9/18/2008 21:00 +North Conway,GREEN,RECTANGLE,NH,9/18/2008 21:00 +Warren,RED,OVAL,NJ,9/18/2008 21:05 +Williamsburg,ORANGE,LIGHT,OH,9/19/2008 0:00 +Lee's Summit,,SPHERE,MO,9/19/2008 2:00 +Westminster,,LIGHT,CO,9/19/2008 6:04 +Lake Havasu City,,,AZ,9/19/2008 7:55 +Flushing,,CIGAR,NY,9/19/2008 11:00 +Los Angeles,,FIREBALL,CA,9/19/2008 11:15 +Lebanon,,TRIANGLE,IL,9/19/2008 20:00 +Tarboro,,LIGHT,NC,9/19/2008 20:00 +New York City,,CYLINDER,NY,9/19/2008 20:30 +Elizabeth,,DISK,NJ,9/19/2008 21:00 +Oxnard,,CIRCLE,CA,9/19/2008 21:10 +Cathedral City,,LIGHT,CA,9/19/2008 21:50 +East Bridgewater,,FORMATION,MA,9/19/2008 22:00 +Houston,,CIRCLE,TX,9/19/2008 22:00 +Acton or Palmdale,RED,TRIANGLE,CA,9/19/2008 23:20 +San Luis Obispo,,VARIOUS,CA,9/19/2008 23:40 +Lebanon,RED,,KY,9/20/2008 2:00 +Apex,,OTHER,NC,9/20/2008 10:30 +Kansas City,,CONE,MO,9/20/2008 10:45 +Chester,,,NY,9/20/2008 11:00 +San Francisco,,CIRCLE,CA,9/20/2008 15:15 +Clearfield,,FORMATION,UT,9/20/2008 16:00 +Linden,,CIRCLE,NJ,9/20/2008 19:20 +Martin County,,TRIANGLE,FL,9/20/2008 20:38 +Hillsborough,RED,DISK,NJ,9/20/2008 20:47 +Edinburg,,CIRCLE,TX,9/20/2008 21:00 +San Clemente,ORANGE,VARIOUS,CA,9/20/2008 21:00 +Capistrano Beach,ORANGE,CIGAR,CA,9/20/2008 21:15 +Salinas,ORANGE,SPHERE,CA,9/20/2008 22:00 +Glen Allen,RED BLUE,LIGHT,VA,9/20/2008 22:30 +Nantucket,,,MA,9/20/2008 23:30 +Palatine,,OVAL,IL,9/20/2008 23:30 +South Padre Island,,LIGHT,TX,9/20/2008 23:45 +Rathdrum,,,ID,9/21/2008 2:30 +Rathdrum,,,ID,9/21/2008 2:30 +St. Louis,,CIGAR,MO,9/21/2008 2:58 +San Fernando,,SPHERE,CA,9/21/2008 3:15 +Fortuna,,OVAL,CA,9/21/2008 14:36 +Los Angeles,,SPHERE,CA,9/21/2008 18:00 +Palm Coast,,CIGAR,FL,9/21/2008 19:40 +Galesburg,,LIGHT,IL,9/21/2008 19:59 +Galesburg,,LIGHT,IL,9/21/2008 19:59 +Tucson,,OTHER,AZ,9/21/2008 20:11 +Grand Junction,,,CO,9/21/2008 20:30 +Saint Clair,,CYLINDER,PA,9/21/2008 20:30 +Lee's Summit,RED GREEN,SPHERE,MO,9/21/2008 21:00 +Park Hills,,SPHERE,MO,9/21/2008 21:00 +Bloomsburg,,FIREBALL,PA,9/21/2008 23:00 +South Padre Island,,LIGHT,TX,9/21/2008 23:45 +Ladson,,OVAL,SC,9/22/2008 0:00 +Bradenton,,OTHER,FL,9/22/2008 0:10 +Port Ludlow,,DISK,WA,9/22/2008 3:30 +Lebanon,,OVAL,PA,9/22/2008 16:25 +Springfield,,LIGHT,OR,9/22/2008 17:40 +Springfield,,DISK,IL,9/22/2008 19:55 +Lee Center,,LIGHT,NY,9/22/2008 20:00 +New Bern,,LIGHT,NC,9/22/2008 20:00 +Corvallis,,TEARDROP,OR,9/22/2008 20:28 +Lincoln City,,LIGHT,OR,9/22/2008 21:00 +Sacramento,,LIGHT,CA,9/22/2008 21:30 +Atlanta,,TRIANGLE,GA,9/22/2008 23:02 +San Francisco,,TRIANGLE,CA,9/23/2008 0:15 +South San Francisco,GREEN,,CA,9/23/2008 2:20 +Lopez Island,ORANGE,LIGHT,WA,9/23/2008 4:20 +Oak Hill,,LIGHT,WV,9/23/2008 8:30 +Plover,,SPHERE,WI,9/23/2008 14:00 +Saylorsburg,ORANGE,OTHER,PA,9/23/2008 17:00 +Las Vegas,,TRIANGLE,NV,9/23/2008 17:53 +Minneapolis,,TRIANGLE,MN,9/23/2008 19:00 +Berlin,,LIGHT,NH,9/23/2008 19:45 +Boynton Beach,,TRIANGLE,FL,9/23/2008 20:15 +Ronkonkoma,RED,FLASH,NY,9/23/2008 21:00 +West Bloomfield,,TRIANGLE,MI,9/23/2008 22:14 +Lake Orion,,CIRCLE,MI,9/23/2008 23:00 +Pewee Valley,,FIREBALL,KY,9/24/2008 12:00 +Tucson,,TEARDROP,AZ,9/24/2008 13:00 +Bloomsburg,,CIRCLE,PA,9/24/2008 14:20 +Kennett,,CYLINDER,MO,9/24/2008 18:15 +Lanagan,RED BLUE,LIGHT,MO,9/24/2008 21:00 +Duncan,,OTHER,OK,9/24/2008 21:33 +Strongsville,,LIGHT,OH,9/24/2008 21:45 +San Jacinto,,LIGHT,CA,9/24/2008 22:00 +Tallahassee,,TRIANGLE,FL,9/24/2008 22:30 +Jacksonville,,FIREBALL,FL,9/24/2008 22:35 +Temecula,,TRIANGLE,CA,9/24/2008 23:00 +Starksboro,,TRIANGLE,VT,9/25/2008 0:30 +Warrensburg,,OTHER,MO,9/25/2008 1:00 +Austin,,TRIANGLE,TX,9/25/2008 1:30 +Clinton,BLUE,SPHERE,MI,9/25/2008 2:09 +Ainsworth,,TRIANGLE,NE,9/25/2008 3:30 +Hartford City,,OVAL,IN,9/25/2008 6:15 +Williamsburg,GREEN,SPHERE,OH,9/25/2008 6:16 +Bethel,,CIRCLE,OH,9/25/2008 10:00 +Roscoe,,DISK,IL,9/25/2008 14:35 +Bradford,RED ORANGE,,VT,9/25/2008 20:00 +Las Vegas,,,NV,9/25/2008 20:30 +Granby,RED BLUE,CIRCLE,MO,9/25/2008 21:00 +Fremont,,VARIOUS,CA,9/25/2008 21:45 +Bethel,,CIRCLE,OH,9/25/2008 23:00 +Berlin,,LIGHT,GA,9/26/2008 0:00 +Houston,,FORMATION,TX,9/26/2008 1:00 +Philapdlphia,,DIAMOND,PA,9/26/2008 1:00 +Big Rapids,,LIGHT,MI,9/26/2008 6:25 +Orlando,,VARIOUS,FL,9/26/2008 7:25 +Martinez,,OVAL,CA,9/26/2008 13:52 +Denver,,VARIOUS,CO,9/26/2008 17:30 +Las Vegas,,SPHERE,NV,9/26/2008 18:00 +Spokane,,TRIANGLE,WA,9/26/2008 19:00 +Bay Minette,,LIGHT,AL,9/26/2008 19:30 +Lacey,,FIREBALL,WA,9/26/2008 20:50 +Cheyenne,,TRIANGLE,WY,9/26/2008 23:25 +Houston,,LIGHT,TX,9/27/2008 0:00 +Adelaide,,LIGHT,OH,9/27/2008 0:30 +Santa Rosa,YELLOW,FIREBALL,NM,9/27/2008 0:30 +City of Rocks National Reserve,,,ID,9/27/2008 3:30 +Playa del Rey,,FLASH,CA,9/27/2008 4:48 +Tampa,,OVAL,FL,9/27/2008 11:30 +Tinley Park,,LIGHT,IL,9/27/2008 13:00 +Jacksonville Beach,,FLASH,FL,9/27/2008 15:15 +Las Vegas,,SPHERE,NV,9/27/2008 17:00 +Las Vegas,RED,TRIANGLE,NV,9/27/2008 19:00 +Castle Rock,,LIGHT,CO,9/27/2008 20:40 +Village of Oak Creek,,VARIOUS,AZ,9/27/2008 22:02 +Granger,,LIGHT,IN,9/27/2008 22:30 +Clinton,,TRIANGLE,UT,9/27/2008 23:20 +Novi,,SPHERE,MI,9/27/2008 23:20 +New Columbia,,CIRCLE,PA,9/28/2008 0:15 +Montebello,,RECTANGLE,CA,9/28/2008 0:55 +Anacortes,,VARIOUS,WA,9/28/2008 1:30 +Austin,,TRIANGLE,TX,9/28/2008 11:00 +Crestview,,SPHERE,FL,9/28/2008 19:20 +Flagstaff,,OTHER,AZ,9/28/2008 19:23 +Clifton,,LIGHT,CO,9/28/2008 20:27 +Knoxville,,LIGHT,TN,9/28/2008 20:30 +Gettysburg,,LIGHT,PA,9/28/2008 21:00 +St. Petersburg,,DIAMOND,FL,9/28/2008 21:00 +Pensacola,,OVAL,FL,9/28/2008 21:30 +Rice,,LIGHT,WA,9/28/2008 22:00 +Cape Coral,,CIRCLE,FL,9/28/2008 22:30 +Lake Stevens,,LIGHT,WA,9/29/2008 1:45 +Freer,,OTHER,TX,9/29/2008 3:52 +Paramount,,TRIANGLE,CA,9/29/2008 7:00 +Longmont,,TRIANGLE,CO,9/29/2008 10:41 +Felton,,FORMATION,CA,9/29/2008 17:00 +Meridian,,OTHER,MS,9/29/2008 19:20 +Houston,,,TX,9/29/2008 19:40 +Okmulgee,,LIGHT,OK,9/29/2008 19:45 +Healdton,,LIGHT,OK,9/29/2008 20:30 +Brentwood,,OTHER,MO,9/29/2008 20:48 +Woodside,YELLOW,TRIANGLE,CA,9/29/2008 21:00 +Felton,,VARIOUS,DE,9/29/2008 21:25 +Huffman,,LIGHT,TX,9/29/2008 22:00 +Santa Maria,,TRIANGLE,CA,9/29/2008 22:00 +Las Vegas,,DIAMOND,NM,9/30/2008 1:25 +Austin,,OTHER,TX,9/30/2008 6:15 +Norcross,,OTHER,GA,9/30/2008 8:00 +Houston,,OTHER,TX,9/30/2008 13:00 +Fayetteville,,LIGHT,NC,9/30/2008 20:30 +Conway,,TRIANGLE,AR,10/1/2008 0:00 +Bryan,,CYLINDER,OH,10/1/2008 1:00 +Merrick,,DISK,NY,10/1/2008 1:00 +Huntington,,CYLINDER,WV,10/1/2008 5:00 +Lynchburg,ORANGE,LIGHT,VA,10/1/2008 6:20 +Iuka,,OVAL,MS,10/1/2008 6:30 +Hope Mills,,FIREBALL,NC,10/1/2008 8:00 +Lanagan,,LIGHT,MO,10/1/2008 9:00 +Dallas,,OVAL,TX,10/1/2008 9:45 +Pell City,,CIGAR,AL,10/1/2008 11:00 +Warwick,,CIRCLE,RI,10/1/2008 19:00 +Bonham,,EGG,TX,10/1/2008 19:12 +Cabazon,,LIGHT,CA,10/1/2008 20:00 +Glenrock,RED GREEN,,WY,10/1/2008 20:00 +Marysville,,CIRCLE,WA,10/1/2008 20:00 +Texas City,,OTHER,TX,10/1/2008 20:00 +Wilson,,CIRCLE,NC,10/1/2008 20:00 +Idaho Falls,,LIGHT,ID,10/1/2008 20:03 +Leavenworth,,LIGHT,WA,10/1/2008 20:45 +Renton,,LIGHT,WA,10/1/2008 20:45 +Wellington,,LIGHT,AL,10/1/2008 21:00 +Lacey,,,WA,10/1/2008 21:30 +Garrett,,TRIANGLE,IN,10/1/2008 22:00 +Arlington,,SPHERE,TX,10/1/2008 22:30 +Sunnyvale,,OTHER,CA,10/1/2008 22:45 +Kingsport,,TRIANGLE,TN,10/1/2008 22:55 +Benson,,OTHER,NC,10/2/2008 5:10 +Carlsbad,BLUE,LIGHT,CA,10/2/2008 5:45 +Arlington,,LIGHT,TX,10/2/2008 19:00 +Hockessin,,CYLINDER,DE,10/2/2008 19:20 +Westminster West,,DISK,VT,10/2/2008 19:50 +Westminster West,,DISK,VT,10/2/2008 19:50 +Middletown,,LIGHT,NY,10/2/2008 19:52 +Marshalltown,GREEN,TRIANGLE,IA,10/2/2008 20:00 +Philadelphia,,EGG,PA,10/2/2008 20:00 +Fort Worth,,TRIANGLE,TX,10/2/2008 21:00 +Oakland,,LIGHT,CA,10/2/2008 22:46 +Monroe,RED,TRIANGLE,NY,10/2/2008 23:00 +Panoche,,TRIANGLE,CA,10/3/2008 2:00 +Schenectady,,LIGHT,NY,10/3/2008 8:13 +Lincolnton,,CIGAR,NC,10/3/2008 10:25 +New Paltz,,CIRCLE,NY,10/3/2008 11:00 +East Lansing,,CYLINDER,MI,10/3/2008 11:15 +Denver,,LIGHT,NC,10/3/2008 11:58 +Berkeley,,DISK,IL,10/3/2008 15:45 +Staunton,,DISK,VA,10/3/2008 18:00 +Paducah,,SPHERE,KY,10/3/2008 19:00 +Calhan,,CIRCLE,CO,10/3/2008 19:30 +Coventry,,SPHERE,CT,10/3/2008 19:40 +Kodiak,,LIGHT,AK,10/3/2008 20:00 +Candor,,TRIANGLE,NY,10/3/2008 21:35 +Nevada,,CIRCLE,MO,10/4/2008 4:00 +Woodland,,LIGHT,CA,10/4/2008 4:30 +Riverside,,LIGHT,CA,10/4/2008 19:00 +South Milwaukee,,CIRCLE,WI,10/4/2008 19:20 +Saint Clair Shore,,EGG,MI,10/4/2008 19:45 +Seattle,,LIGHT,WA,10/4/2008 20:00 +Las Vegas,,CIRCLE,NV,10/4/2008 21:26 +Providence,,OVAL,RI,10/4/2008 23:15 +Toppsey,,CONE,OK,10/5/2008 0:00 +Phoenix,,OTHER,AZ,10/5/2008 10:20 +Castro Valley,,CIRCLE,CA,10/5/2008 19:29 +Las Vegas,,VARIOUS,NV,10/5/2008 21:00 +Othello-Pullman,ORANGE,FIREBALL,WA,10/5/2008 21:00 +Albuquerque,,,NM,10/5/2008 21:18 +Macomb Township,,LIGHT,MI,10/5/2008 23:15 +Lanagan,,LIGHT,MO,10/6/2008 9:10 +Conshohocken,,CIGAR,PA,10/6/2008 11:00 +Hadley,,OVAL,MA,10/6/2008 11:10 +Green Lake,ORANGE,LIGHT,WI,10/6/2008 19:45 +Chagrin Falls,,TRIANGLE,OH,10/6/2008 20:00 +Henderson,,OTHER,NV,10/6/2008 20:00 +Bridgeport,,TRIANGLE,CT,10/6/2008 21:10 +Albuquerque,,LIGHT,NM,10/6/2008 22:00 +Victor,,SPHERE,NY,10/6/2008 22:00 +Lubbock,,SPHERE,TX,10/6/2008 22:30 +Orlando,,DISK,FL,10/7/2008 0:00 +Williamsburg,,CIRCLE,KY,10/7/2008 5:30 +Monongahela,,TRIANGLE,PA,10/7/2008 6:03 +Alpharetta,,CIRCLE,GA,10/7/2008 7:30 +St. Petersburg Beach,,DISK,FL,10/7/2008 11:11 +Angel Fire,,OTHER,NM,10/7/2008 12:00 +Ronkonkoma,RED YELLOW GREEN,EGG,NY,10/7/2008 19:00 +San Francisco,RED,,CA,10/7/2008 19:30 +Lyman,,FLASH,WY,10/7/2008 20:00 +Baltimore,,VARIOUS,MD,10/7/2008 20:30 +Gainesville,,CIRCLE,VA,10/7/2008 20:30 +Lincoln,ORANGE,SPHERE,NE,10/7/2008 21:45 +Claremore,GREEN,LIGHT,OK,10/7/2008 22:00 +Des Moines,,TRIANGLE,IA,10/7/2008 22:00 +Schenectady,,TRIANGLE,NY,10/7/2008 23:00 +Las Vegas,,DISK,NV,10/8/2008 1:30 +Oregon,,LIGHT,OR,10/8/2008 3:00 +San Ramon,,CYLINDER,CA,10/8/2008 4:00 +Burlington,,OTHER,WA,10/8/2008 5:00 +Chester,,,AR,10/8/2008 12:00 +Lubbock,,CYLINDER,TX,10/8/2008 12:40 +O'Fallon,,SPHERE,MO,10/8/2008 18:00 +Wakefield,RED,FORMATION,RI,10/8/2008 18:45 +Bryan,,CHEVRON,TX,10/8/2008 19:30 +Cisco,,SPHERE,UT,10/8/2008 19:30 +Memphis,,LIGHT,TN,10/8/2008 19:30 +Tulsa,,LIGHT,OK,10/8/2008 19:30 +Wamego,,FLASH,KS,10/8/2008 19:30 +Dupo,GREEN,CHEVRON,IL,10/8/2008 20:00 +Stafford Springs,,CIGAR,CT,10/8/2008 20:35 +Baton Rouge,,FORMATION,LA,10/8/2008 20:50 +Ukiah,,LIGHT,CA,10/8/2008 21:00 +Midway City,,TRIANGLE,CA,10/8/2008 21:52 +Spokane,RED,,WA,10/8/2008 22:00 +Chester,,OVAL,AR,10/9/2008 0:00 +Inverness,,OVAL,FL,10/9/2008 1:00 +Santa Maria,,OTHER,CA,10/9/2008 1:00 +Waterford,,,MI,10/9/2008 4:00 +Loudon,,,TN,10/9/2008 4:15 +Pueblo,,LIGHT,CO,10/9/2008 7:30 +Mesquite,,CYLINDER,TX,10/9/2008 8:35 +Asbury,,CIGAR,NJ,10/9/2008 10:36 +Auburn,,CIRCLE,AL,10/9/2008 12:24 +Terrell,,OVAL,TX,10/9/2008 13:00 +St. Louis,,SPHERE,MO,10/9/2008 17:00 +McKinney,,LIGHT,TX,10/9/2008 20:30 +Plano,,CYLINDER,TX,10/9/2008 20:40 +Lombard,GREEN,CIRCLE,IL,10/9/2008 21:00 +Chicago Ridge,,TEARDROP,IL,10/9/2008 21:02 +Chicago,,FLASH,IL,10/9/2008 21:05 +Milwaukee,,LIGHT,WI,10/9/2008 21:08 +Chicago,,FIREBALL,IL,10/9/2008 21:18 +Lake Forest,GREEN,FIREBALL,IL,10/9/2008 21:30 +Irvine,,DISK,CA,10/9/2008 21:46 +Martinez,,LIGHT,CA,10/9/2008 22:30 +Little Rock,,TRIANGLE,AR,10/9/2008 23:00 +North Branch,,LIGHT,MN,10/10/2008 2:00 +Slingerlands,ORANGE,CIRCLE,NY,10/10/2008 2:00 +Carlin,,DISK,NV,10/10/2008 4:00 +Evansville,,FORMATION,IN,10/10/2008 4:50 +Albany,,OVAL,NY,10/10/2008 6:00 +Amarillo,,FLASH,TX,10/10/2008 9:30 +Fremont,,TRIANGLE,CA,10/10/2008 10:22 +Yuma,,TRIANGLE,AZ,10/10/2008 18:00 +South Bend,,LIGHT,IN,10/10/2008 19:00 +La Crescent,,FORMATION,MN,10/10/2008 20:00 +Moon Township,,,PA,10/10/2008 20:00 +Philadelphia,,OVAL,PA,10/10/2008 20:00 +Seattle,,LIGHT,WA,10/10/2008 20:00 +Pueblo,,LIGHT,CO,10/10/2008 20:40 +Cincinnati,RED ORANGE,OVAL,OH,10/10/2008 21:30 +San Diego,,DISK,CA,10/10/2008 22:00 +Madison,ORANGE,CIRCLE,WI,10/10/2008 22:30 +Coldwater,ORANGE,SPHERE,OH,10/10/2008 23:15 +Monrovia,,,CA,10/11/2008 2:35 +Brownsville,,DISK,TX,10/11/2008 4:30 +Concord,,LIGHT,CA,10/11/2008 6:00 +Salisbury,,SPHERE,NC,10/11/2008 13:00 +Bridgeport,,CIRCLE,CT,10/11/2008 19:00 +Dover,,SPHERE,MD,10/11/2008 19:00 +Riverside,,LIGHT,CA,10/11/2008 19:00 +Naples,,TRIANGLE,FL,10/11/2008 19:30 +Centerville,,LIGHT,TX,10/11/2008 20:30 +Villa Park,ORANGE,VARIOUS,IL,10/11/2008 20:30 +Albuquerque,,FIREBALL,NM,10/11/2008 22:20 +Los Angeles,,TRIANGLE,CA,10/11/2008 22:30 +Preston,,FIREBALL,MO,10/12/2008 0:00 +Islip,,LIGHT,NY,10/12/2008 5:20 +Russellton,,CIGAR,PA,10/12/2008 8:00 +Grand Junction,,LIGHT,CO,10/12/2008 9:00 +Reading,RED,DIAMOND,PA,10/12/2008 9:00 +Rio Rancho,,DISK,NM,10/12/2008 9:00 +Larksville,,OTHER,PA,10/12/2008 12:00 +Nicholasville,,CIRCLE,KY,10/12/2008 15:10 +Syracuse,,CYLINDER,NY,10/12/2008 15:30 +Tacoma,,LIGHT,WA,10/12/2008 19:20 +McKinney,,LIGHT,TX,10/12/2008 20:00 +Manchester,,VARIOUS,TN,10/12/2008 21:00 +Gainesville,BLUE,LIGHT,VA,10/12/2008 23:00 +Las Vegas,,VARIOUS,NV,10/12/2008 23:00 +Wayne,ORANGE,CIRCLE,MI,10/12/2008 23:00 +Santa Rosa,,LIGHT,CA,10/13/2008 5:30 +Newburyport,,LIGHT,MA,10/13/2008 6:00 +Clovis,,OTHER,CA,10/13/2008 9:20 +San Francisco,,CIRCLE,CA,10/13/2008 10:15 +Yakima,,,WA,10/13/2008 14:00 +Butte,,,MT,10/13/2008 21:30 +Barstow,,OTHER,CA,10/14/2008 0:00 +Shelbyville,,DISK,TN,10/14/2008 0:00 +Austin,,SPHERE,TX,10/14/2008 1:00 +Valparaiso,,FORMATION,IN,10/14/2008 1:30 +Hemet,,FORMATION,CA,10/14/2008 10:00 +Falls Church,,EGG,VA,10/14/2008 16:45 +Vallejo,,SPHERE,CA,10/14/2008 17:00 +Narberth,,LIGHT,PA,10/14/2008 17:30 +Macomb Township,GREEN,DISK,MI,10/14/2008 18:00 +Boonville,RED,FORMATION,NY,10/14/2008 20:00 +Rapid City,,CIGAR,SD,10/14/2008 20:30 +Anderson,,CHEVRON,SC,10/14/2008 20:40 +Port St. Joe,,LIGHT,FL,10/14/2008 21:00 +Louisville,RED,DISK,KY,10/14/2008 22:05 +Manteca,,CIRCLE,CA,10/14/2008 22:35 +Flagstaff,,OVAL,AZ,10/15/2008 0:00 +Shelbyville,RED BLUE,DISK,TN,10/15/2008 0:00 +Arden,,TRIANGLE,NC,10/15/2008 0:22 +Liberty,,LIGHT,NY,10/15/2008 5:25 +Bretton Woods,ORANGE,DIAMOND,NH,10/15/2008 7:45 +Irvine,,DISK,CA,10/15/2008 12:00 +Rye Patch,,DISK,NV,10/15/2008 15:37 +Cedar City,,OTHER,UT,10/15/2008 16:00 +San Diego,,OTHER,CA,10/15/2008 16:00 +Ballston Lake,,OTHER,NY,10/15/2008 16:40 +Loretto,,OVAL,TN,10/15/2008 18:30 +Waynesboro,,TEARDROP,PA,10/15/2008 18:43 +Gardiner,,FORMATION,ME,10/15/2008 19:00 +Winchester,,TRIANGLE,TN,10/15/2008 19:18 +Winchester,,TRIANGLE,TN,10/15/2008 19:18 +Indianapolis,,RECTANGLE,IN,10/15/2008 19:30 +St. George,,,UT,10/15/2008 20:00 +Norman,BLUE,,OK,10/15/2008 20:42 +Hancock County,,CHEVRON,IA,10/15/2008 21:00 +Missoula,,,MT,10/15/2008 21:00 +New Salisbury,,OTHER,IN,10/16/2008 0:53 +Woodland,RED,LIGHT,CA,10/16/2008 0:55 +Fairfield,,RECTANGLE,CA,10/16/2008 9:08 +Lindale,,CHEVRON,TX,10/16/2008 17:25 +Avon,RED,OVAL,OH,10/16/2008 19:35 +Hart,RED,LIGHT,MI,10/16/2008 20:00 +Havelock,,FIREBALL,NC,10/16/2008 20:00 +Conway,,OTHER,SC,10/16/2008 20:15 +St. George,,,UT,10/16/2008 21:10 +Murrells Inlet,,FIREBALL,SC,10/16/2008 23:00 +Whiteriver,,OVAL,AZ,10/17/2008 7:30 +Mesquite,,,TX,10/17/2008 9:00 +Leesburg,GREEN,CIRCLE,VA,10/17/2008 9:30 +Playa del Rey,,SPHERE,CA,10/17/2008 10:35 +Santa Ana,,DISK,CA,10/17/2008 17:47 +Enfield,,SPHERE,CT,10/17/2008 18:01 +Colony,,,WY,10/17/2008 19:20 +no data,,OVAL,TX,10/17/2008 20:30 +Manteca,,VARIOUS,CA,10/17/2008 21:12 +Camp Hill,,OTHER,PA,10/17/2008 21:15 +Camp Hill,,LIGHT,PA,10/17/2008 21:30 +Rancho Santa Margarita,,LIGHT,CA,10/17/2008 21:30 +Lavon,,LIGHT,TX,10/17/2008 23:00 +Riggins,,OVAL,ID,10/17/2008 23:00 +Wadsworth,,LIGHT,OH,10/17/2008 23:15 +Gardendale,,SPHERE,AL,10/18/2008 1:00 +Farmers Branch,GREEN,LIGHT,TX,10/18/2008 3:40 +Cornwall,,DISK,NY,10/18/2008 8:05 +Rosebud,,OVAL,TX,10/18/2008 13:45 +Seattle,,LIGHT,WA,10/18/2008 17:00 +Wentzville,,,MO,10/18/2008 17:30 +Pacifica to Belmont,,LIGHT,CA,10/18/2008 18:00 +Kankakee,,FLASH,IL,10/18/2008 19:50 +Dallas,,LIGHT,TX,10/18/2008 20:00 +Indianapolis,YELLOW,LIGHT,IN,10/18/2008 20:00 +Tucson,,VARIOUS,AZ,10/18/2008 20:30 +Asheville,,DIAMOND,NC,10/18/2008 23:00 +Culpeper,,FORMATION,VA,10/18/2008 23:00 +Kingman,GREEN,,KS,10/19/2008 0:00 +Bridgeport,,RECTANGLE,CT,10/19/2008 1:00 +Minot,,TRIANGLE,ND,10/19/2008 1:00 +Albuquerque,,OTHER,NM,10/19/2008 2:00 +Christiansburg,,RECTANGLE,VA,10/19/2008 3:00 +Miami,,CYLINDER,FL,10/19/2008 6:10 +Mount Washington,,OTHER,KY,10/19/2008 9:40 +Gainesville,,CIGAR,VA,10/19/2008 11:00 +Flagstaff,,CIRCLE,AZ,10/19/2008 11:10 +Hilo,,SPHERE,HI,10/19/2008 12:00 +Huntington Beach,,VARIOUS,CA,10/19/2008 14:00 +King George,,CIRCLE,VA,10/19/2008 14:00 +Auxvasse,,DISK,MO,10/19/2008 17:00 +Cary,,DISK,IL,10/19/2008 17:00 +Philadelphia,,LIGHT,MD,10/19/2008 17:00 +Bastrop,,,LA,10/19/2008 18:00 +Tucson,,,AZ,10/19/2008 18:35 +Weimar,,OVAL,TX,10/19/2008 19:00 +Victorville,,VARIOUS,CA,10/19/2008 19:26 +Timmonsville,YELLOW,,SC,10/19/2008 19:30 +North Adams,,,MA,10/19/2008 21:00 +Doylestown,,,PA,10/19/2008 22:30 +Richmond,,SPHERE,VA,10/19/2008 22:30 +Laurel,,LIGHT,MS,10/19/2008 23:09 +Monroe,,FORMATION,LA,10/20/2008 1:00 +Gary,,,IN,10/20/2008 3:57 +Harrisburg,,FORMATION,PA,10/20/2008 5:00 +West Monroe,,LIGHT,LA,10/20/2008 7:30 +Jacksonville,,,NC,10/20/2008 10:20 +Fairfield,,OTHER,TX,10/20/2008 18:30 +Greenfield,GREEN,,OH,10/20/2008 18:30 +Encino,,OTHER,CA,10/20/2008 19:15 +Los Angeles,,FORMATION,CA,10/20/2008 19:15 +Reedville,RED YELLOW,CIRCLE,VA,10/20/2008 19:30 +Tampa,,OVAL,FL,10/20/2008 20:30 +Virginia Beach,RED,TRIANGLE,VA,10/20/2008 20:30 +Hayward,,SPHERE,CA,10/20/2008 21:30 +Lawton,,TRIANGLE,OK,10/20/2008 23:12 +Myrtle Creek,,LIGHT,OR,10/21/2008 7:00 +Brookings,,SPHERE,OR,10/21/2008 8:00 +Fayetteville,,DISK,NC,10/21/2008 13:00 +Lodi,,DISK,CA,10/21/2008 15:00 +Mt. Airy,,LIGHT,MD,10/21/2008 16:54 +Fairfield,,FORMATION,TX,10/21/2008 19:00 +Arbuckle,,LIGHT,CA,10/21/2008 20:00 +Abilene,,VARIOUS,TX,10/21/2008 20:30 +Redondo Beach,RED,FORMATION,CA,10/21/2008 21:45 +Starke,,SPHERE,FL,10/21/2008 23:00 +Columbus,,VARIOUS,OH,10/22/2008 0:45 +Anacortes,,LIGHT,WA,10/22/2008 1:23 +Edmonds,,FLASH,WA,10/22/2008 1:30 +Nashville,,TEARDROP,TN,10/22/2008 3:00 +Virginia Beach,,CHEVRON,VA,10/22/2008 3:00 +Pomeroy,GREEN,CIRCLE,OH,10/22/2008 5:29 +Knoxville,,,TN,10/22/2008 15:55 +Sacramento,,LIGHT,CA,10/22/2008 17:45 +Granbury,,CIRCLE,TX,10/22/2008 18:00 +Charlotte,,OTHER,NC,10/22/2008 21:00 +Camarillo,,OTHER,CA,10/22/2008 22:30 +Columbus,,SPHERE,OH,10/22/2008 22:42 +Western PA,RED,,PA,10/22/2008 23:55 +Jenner,,CIRCLE,CA,10/23/2008 1:00 +remote,,FLASH,WY,10/23/2008 4:45 +Franklin,,SPHERE,MA,10/23/2008 15:00 +Dekalb,,FIREBALL,IL,10/23/2008 18:00 +Allen,,OTHER,TX,10/23/2008 19:00 +Richmond,,,KY,10/23/2008 19:00 +El Paso,,LIGHT,TX,10/23/2008 20:05 +Abilene,RED,FORMATION,TX,10/23/2008 20:30 +Evant,ORANGE,CIRCLE,TX,10/23/2008 20:30 +Madrid,,LIGHT,NY,10/23/2008 20:30 +Cisco,,FORMATION,TX,10/23/2008 20:40 +North Myrtle Beach,,LIGHT,SC,10/23/2008 21:00 +Cottage Grove,,SPHERE,OR,10/23/2008 21:05 +Galesburg,,FIREBALL,IL,10/23/2008 21:05 +Honolulu,,LIGHT,HI,10/23/2008 21:15 +Carlton,,LIGHT,TX,10/23/2008 21:30 +Long Beach,,FIREBALL,CA,10/23/2008 21:40 +McCordsville,,CIRCLE,IN,10/23/2008 22:00 +Morehead,,CIRCLE,KY,10/23/2008 22:00 +Poughkeepsie,RED,CHEVRON,NY,10/23/2008 23:00 +Sacramento,,LIGHT,CA,10/24/2008 6:03 +De Soto,YELLOW,LIGHT,MO,10/24/2008 10:12 +Eugen,,OTHER,OR,10/24/2008 18:30 +Solvang,,FIREBALL,CA,10/24/2008 19:00 +Pismo Beach,,VARIOUS,CA,10/24/2008 19:29 +Burien,,CIGAR,WA,10/24/2008 19:30 +Avila Beach,YELLOW,VARIOUS,CA,10/24/2008 19:53 +San Diego,,FIREBALL,CA,10/24/2008 20:10 +Gaviota,,,CA,10/24/2008 20:30 +Chesapeake,GREEN,TRIANGLE,VA,10/24/2008 21:30 +Comanche,,FORMATION,TX,10/24/2008 22:00 +Indianapolis,ORANGE,LIGHT,IN,10/24/2008 22:20 +Princeton,,FLASH,TX,10/24/2008 22:20 +Tazewell,,FIREBALL,VA,10/24/2008 23:00 +New Gloucester,,LIGHT,ME,10/25/2008 1:00 +New Gloucester,,OTHER,ME,10/25/2008 1:27 +Seattle,,LIGHT,WA,10/25/2008 7:30 +Davis,,OTHER,CA,10/25/2008 19:30 +Davis,,VARIOUS,CA,10/25/2008 19:30 +Oak Forest,,TRIANGLE,IL,10/25/2008 20:00 +Springfield,,LIGHT,MO,10/25/2008 20:00 +Windsor,,LIGHT,CA,10/25/2008 20:15 +Mililani,,CHEVRON,HI,10/25/2008 21:00 +Rock Springs,ORANGE,OTHER,WY,10/25/2008 21:00 +Indianapolis,ORANGE,FIREBALL,IN,10/25/2008 21:30 +Fort Walton Beach,,LIGHT,FL,10/25/2008 22:00 +Marion,,TRIANGLE,OH,10/25/2008 22:00 +Cedar Rapids,,LIGHT,IA,10/25/2008 22:30 +Tinley Park,,OVAL,IL,10/25/2008 22:45 +Doris,,SPHERE,CA,10/25/2008 23:00 +Gilbert,,,AZ,10/25/2008 23:30 +Wonder Valley,,DISK,CA,10/25/2008 23:30 +Dallas,,FORMATION,TX,10/26/2008 0:00 +Lawton,,,OK,10/26/2008 1:45 +Conyers,BLUE,,GA,10/26/2008 2:00 +Fort Collins,,,CO,10/26/2008 5:27 +Larsen,,LIGHT,WI,10/26/2008 6:00 +Woodinville,,LIGHT,WA,10/26/2008 18:40 +Gresham,,FORMATION,OR,10/26/2008 19:30 +Phoenix,RED,TRIANGLE,AZ,10/26/2008 19:40 +Spring Valley,,DIAMOND,OH,10/26/2008 19:50 +Spotsylvania,,FIREBALL,VA,10/26/2008 21:00 +North,,TRIANGLE,SC,10/26/2008 21:30 +Redmond,,TRIANGLE,OR,10/26/2008 21:30 +El Centro,,CYLINDER,CA,10/26/2008 22:00 +Palm Springs,,DISK,CA,10/26/2008 22:30 +St. Louis,,TRIANGLE,MO,10/26/2008 23:17 +Greenwood,RED,LIGHT,IN,10/27/2008 0:30 +Portland,RED GREEN BLUE,OTHER,TN,10/27/2008 1:00 +Everett,,OVAL,WA,10/27/2008 2:00 +Issaquah,,FIREBALL,WA,10/27/2008 2:30 +Victorville,,LIGHT,CA,10/27/2008 16:23 +Liverpool,,CIRCLE,TX,10/27/2008 18:00 +Blossom,,SPHERE,TX,10/27/2008 20:30 +Melbourne,BLUE,FLASH,FL,10/27/2008 20:35 +Orlando,,LIGHT,FL,10/27/2008 20:40 +Pembroke Pines,,LIGHT,FL,10/27/2008 21:00 +no data,,LIGHT,MI,10/27/2008 22:00 +Owatonna,,LIGHT,MN,10/27/2008 22:20 +Granbury,,DISK,TX,10/27/2008 22:45 +Abilene,,LIGHT,TX,10/27/2008 23:00 +Solavang,,FIREBALL,CA,10/28/2008 0:00 +Azle,,OTHER,TX,10/28/2008 2:16 +Escondido,,OVAL,CA,10/28/2008 3:00 +Brownwood,ORANGE,LIGHT,TX,10/28/2008 7:30 +Jackson,,CIRCLE,TN,10/28/2008 7:40 +Chenango Forks,,CIRCLE,NY,10/28/2008 15:00 +Iowa City,,,IA,10/28/2008 17:55 +Manhattan,YELLOW,VARIOUS,KS,10/28/2008 18:50 +San Jose,,FORMATION,CA,10/28/2008 19:00 +Lordsburg,,SPHERE,AZ,10/28/2008 19:04 +Moyock,,TRIANGLE,NC,10/28/2008 19:26 +Albuquerque,,FIREBALL,NM,10/28/2008 19:29 +Phillipsburg,YELLOW,,KS,10/28/2008 19:35 +Phillipsburg,,SPHERE,KS,10/28/2008 19:35 +Medanales,ORANGE GREEN,FIREBALL,NM,10/28/2008 19:38 +Brownwood,,LIGHT,TX,10/28/2008 19:40 +Sidney,,LIGHT,TX,10/28/2008 19:40 +Waco,,RECTANGLE,TX,10/28/2008 19:45 +Sylmar,,DISK,CA,10/28/2008 19:47 +Abilene,,LIGHT,TX,10/28/2008 20:00 +Dublin,YELLOW,SPHERE,TX,10/28/2008 20:00 +Wellington,GREEN,OVAL,CO,10/28/2008 20:00 +Fairfield,BLUE,OVAL,TX,10/28/2008 20:20 +Marion,,FLASH,NC,10/28/2008 21:00 +Appleton,BLUE,LIGHT,WI,10/28/2008 22:00 +Dallas,ORANGE,TRIANGLE,TX,10/28/2008 23:15 +Charlotte,,CROSS,NC,10/28/2008 23:30 +Texarkana,,OVAL,AR,10/29/2008 0:00 +Diamond,,SPHERE,OH,10/29/2008 1:00 +Fitchburg,,TRIANGLE,MA,10/29/2008 3:00 +Delaware,RED,LIGHT,OH,10/29/2008 7:50 +Shreveport,,DISK,LA,10/29/2008 11:53 +Mesa,,TRIANGLE,AZ,10/29/2008 18:45 +La Jolla,,TRIANGLE,CA,10/29/2008 19:30 +Macomb Twnshp,,OVAL,MI,10/29/2008 19:30 +Abilene,,LIGHT,TX,10/29/2008 19:45 +Carson,,LIGHT,CA,10/29/2008 19:45 +Bowling Green,,TRIANGLE,OH,10/29/2008 19:50 +Beaver Dam,ORANGE,FORMATION,AZ,10/29/2008 20:00 +Jermyn,,LIGHT,PA,10/29/2008 20:00 +Walnut Ridge,RED,TRIANGLE,AR,10/29/2008 20:00 +Houston,,FIREBALL,PA,10/29/2008 21:00 +Oberlin,GREEN,,OH,10/29/2008 21:11 +Sabina,,CHEVRON,OH,10/29/2008 21:11 +Laura,BLUE,LIGHT,OH,10/29/2008 21:20 +Salisbury,,TRIANGLE,NH,10/29/2008 22:14 +LaGrange,,LIGHT,IL,10/30/2008 5:15 +Pound,,TRIANGLE,VA,10/30/2008 5:30 +Duarte,,LIGHT,CA,10/30/2008 6:00 +Montgomery,,,AL,10/30/2008 6:05 +Apex,,TRIANGLE,NC,10/30/2008 6:50 +Furlong,,CIGAR,PA,10/30/2008 7:00 +College Point,,TRIANGLE,NY,10/30/2008 8:00 +Morrisdale,,OVAL,PA,10/30/2008 13:00 +Rosendale,,CYLINDER,MO,10/30/2008 16:23 +Mesa,,FORMATION,AZ,10/30/2008 17:30 +El Dorado Hills,,TRIANGLE,CA,10/30/2008 18:00 +Jean,,DISK,NV,10/30/2008 18:30 +Newport Beach,,SPHERE,CA,10/30/2008 19:00 +Palos Verdes,,CIRCLE,CA,10/30/2008 19:50 +Nashua,RED,OTHER,NH,10/30/2008 20:30 +Cisco,ORANGE,FORMATION,TX,10/30/2008 20:45 +Laurel Hill,RED,TRIANGLE,NC,10/30/2008 21:20 +Jensen Beach,,SPHERE,FL,10/30/2008 21:35 +Pound,,TRIANGLE,VA,10/30/2008 22:30 +Abilene,,LIGHT,TX,10/30/2008 23:05 +Philipsburg,,LIGHT,PA,10/30/2008 23:15 +Saint Marys,,,WV,10/31/2008 0:00 +Mendota,,SPHERE,VA,10/31/2008 1:30 +Hialeah,,VARIOUS,FL,10/31/2008 2:00 +Jeffersonville,,DISK,IN,10/31/2008 2:00 +Flemingsburg,,TRIANGLE,KY,10/31/2008 2:30 +Aurora,,OVAL,OH,10/31/2008 7:34 +Franklin,,TRIANGLE,TN,10/31/2008 8:30 +Ovid,,SPHERE,MI,10/31/2008 15:00 +Mountain Brook,,OVAL,AL,10/31/2008 16:27 +Cambridge,,LIGHT,MA,10/31/2008 16:30 +Spokane,,VARIOUS,WA,10/31/2008 18:00 +Moline,,CIRCLE,IL,10/31/2008 18:53 +Lower Burrell,,FIREBALL,PA,10/31/2008 19:00 +Wakefield,,FLASH,RI,10/31/2008 19:00 +Kingman,GREEN,LIGHT,AZ,10/31/2008 19:30 +Springfield,,FIREBALL,OR,10/31/2008 19:50 +Valrico,,LIGHT,FL,10/31/2008 20:00 +Brecksville,,TRIANGLE,OH,10/31/2008 20:01 +O'Fallon,ORANGE,LIGHT,MO,10/31/2008 20:15 +Roswell,,SPHERE,GA,10/31/2008 21:00 +Orange,ORANGE,,CA,10/31/2008 21:05 +Hibbing,,EGG,MN,10/31/2008 21:50 +Fenton,ORANGE,SPHERE,MO,10/31/2008 22:00 +Los Angeles,,FIREBALL,CA,10/31/2008 22:00 +Watervliet,,TRIANGLE,MI,10/31/2008 22:00 +Hermosa Beach,,TRIANGLE,CA,10/31/2008 22:40 +South Gate,BLUE,FIREBALL,CA,10/31/2008 22:46 +Erie,,OVAL,PA,10/31/2008 23:00 +Anderson,,FIREBALL,IN,10/31/2008 23:25 +Farragut,,LIGHT,TN,10/31/2008 23:30 +Vermontville,,LIGHT,MI,11/1/2008 0:00 +Salina,,EGG,KS,11/1/2008 0:10 +Cleveland,,OVAL,TN,11/1/2008 0:30 +Lincoln Park,,,MI,11/1/2008 2:00 +Milledgeville,,OVAL,GA,11/1/2008 2:00 +Winchester,,OVAL,VA,11/1/2008 2:00 +Richmond Hill,,LIGHT,GA,11/1/2008 3:15 +Osceola,,CIGAR,NE,11/1/2008 10:05 +Lafayette,,,LA,11/1/2008 14:00 +Kingwood,,CIRCLE,TX,11/1/2008 15:00 +Franklin,RED,LIGHT,TN,11/1/2008 19:00 +New York City,ORANGE,SPHERE,NY,11/1/2008 19:00 +Indianapolis,,TRIANGLE,IN,11/1/2008 19:15 +HWY 21,,LIGHT,WI,11/1/2008 20:00 +Asheville,,FLASH,NC,11/1/2008 20:40 +Louisville,,LIGHT,KY,11/1/2008 21:00 +Springville,RED GREEN BLUE,FORMATION,TN,11/1/2008 21:00 +Saint George,ORANGE,TRIANGLE,UT,11/1/2008 21:03 +El Cajon,,OVAL,CA,11/1/2008 21:15 +Chattanooga,,LIGHT,TN,11/1/2008 22:00 +Los Angeles,,DISK,CA,11/1/2008 22:30 +Dandridge,,RECTANGLE,TN,11/1/2008 23:00 +Palm Coast,,TRIANGLE,FL,11/1/2008 23:00 +Redding,ORANGE,SPHERE,CA,11/1/2008 23:45 +Clarksville,,VARIOUS,TN,11/2/2008 0:25 +Greensboro,RED GREEN,LIGHT,NC,11/2/2008 1:00 +Port Hueneme,,LIGHT,CA,11/2/2008 1:40 +Abingdon,,FIREBALL,MD,11/2/2008 2:15 +Manchester,,,CT,11/2/2008 5:55 +Phoenix,,SPHERE,AZ,11/2/2008 8:27 +Marysville,,LIGHT,CA,11/2/2008 10:45 +Gregory,,SPHERE,SD,11/2/2008 16:30 +Glenwood,,LIGHT,NY,11/2/2008 17:45 +San Antonio,,OVAL,TX,11/2/2008 18:03 +Laurinburg,,OVAL,NC,11/2/2008 18:15 +Torrington,,TRIANGLE,CT,11/2/2008 18:50 +Sarpy County,ORANGE YELLOW,,NE,11/2/2008 19:40 +Belleville,,TRIANGLE,IL,11/2/2008 20:00 +North Tonawanda,,LIGHT,NY,11/2/2008 20:00 +Waterbury,RED,FIREBALL,CT,11/2/2008 20:51 +Moses Lake,,OTHER,WA,11/2/2008 21:00 +Worth,,LIGHT,IL,11/2/2008 22:50 +Daphne,,,AL,11/2/2008 23:00 +Roswell,BLUE,LIGHT,GA,11/2/2008 23:03 +Albuquerque,,RECTANGLE,NM,11/3/2008 0:00 +Jackson,,TRIANGLE,TN,11/3/2008 0:00 +Kings Mills,BLUE,LIGHT,OH,11/3/2008 1:00 +Tellico Plains,,TRIANGLE,TN,11/3/2008 2:02 +Pittsburg,,,CA,11/3/2008 2:30 +Golden,,FLASH,CO,11/3/2008 13:10 +Louisville,,LIGHT,KY,11/3/2008 18:35 +Tucson,,TRIANGLE,AZ,11/3/2008 19:10 +Fayetteville,,RECTANGLE,AR,11/3/2008 20:05 +Batavia,,LIGHT,OH,11/3/2008 21:00 +Fairview,GREEN,SPHERE,AL,11/3/2008 21:00 +San Luis Obispo,,CYLINDER,CA,11/4/2008 1:00 +Columbus,,SPHERE,OH,11/4/2008 8:03 +Los Angeles,,CONE,CA,11/4/2008 13:56 +Oak Forest,,TRIANGLE,IL,11/4/2008 17:14 +Duncan,RED,LIGHT,OK,11/4/2008 19:30 +Dublin,,OVAL,CA,11/4/2008 20:30 +Northbrook,,,IL,11/4/2008 21:20 +Northbrook,,,IL,11/4/2008 21:20 +Northbrook,,,IL,11/4/2008 21:20 +San Diego,RED,TRIANGLE,CA,11/4/2008 23:00 +Owatonna,,CYLINDER,MN,11/4/2008 23:30 +Foothill Ranch,GREEN,FLASH,CA,11/5/2008 0:30 +La Grande,,DIAMOND,OR,11/5/2008 0:30 +Pasadena,,CHEVRON,CA,11/5/2008 19:00 +Deltona,,OTHER,FL,11/5/2008 22:45 +Greenville,,TRIANGLE,SC,11/5/2008 23:00 +Throop,,LIGHT,NY,11/6/2008 0:30 +Webster,,LIGHT,TX,11/6/2008 5:40 +Edinburg,,OTHER,TX,11/6/2008 11:00 +Tampa,,VARIOUS,FL,11/6/2008 15:30 +Fayetteville,YELLOW,FIREBALL,NC,11/6/2008 18:00 +Auxvasse,,DISK,MO,11/6/2008 18:30 +Kenly,,,NC,11/6/2008 19:00 +Burleson,,,TX,11/6/2008 19:15 +Modesto,,TRIANGLE,CA,11/6/2008 21:00 +Colorado Springs,,TRIANGLE,CO,11/6/2008 21:30 +Sacramento,,RECTANGLE,CA,11/7/2008 1:33 +Orlando,BLUE,LIGHT,FL,11/7/2008 5:30 +Hopkinsville,,DIAMOND,KY,11/7/2008 13:45 +Phoenix,RED BLUE,CHEVRON,AZ,11/7/2008 17:45 +Mindelein,,DISK,IL,11/7/2008 18:00 +Cincinnati,,FIREBALL,OH,11/7/2008 18:30 +Keller,,LIGHT,TX,11/7/2008 19:30 +Palm Springs,,,CA,11/7/2008 20:15 +Bangor,,FIREBALL,ME,11/7/2008 21:20 +Arcadia,RED GREEN BLUE,SPHERE,CA,11/7/2008 23:30 +Wadsworth,,DISK,OH,11/8/2008 0:00 +Mt. Dora,GREEN,,NM,11/8/2008 4:00 +Trabuco Canyon,,CIGAR,CA,11/8/2008 6:00 +Crystal river,,VARIOUS,FL,11/8/2008 9:00 +Wilmer,,CIGAR,TX,11/8/2008 12:00 +Danbury,,CYLINDER,NC,11/8/2008 13:15 +Dana Point,,CIRCLE,CA,11/8/2008 14:00 +San Clemente,,SPHERE,CA,11/8/2008 16:00 +Edmonds,,LIGHT,WA,11/8/2008 17:47 +Phoenix,ORANGE,SPHERE,AZ,11/8/2008 18:30 +San Clemente,,SPHERE,CA,11/8/2008 19:00 +Arvada,,LIGHT,CO,11/8/2008 19:30 +Lexington,RED,DISK,KY,11/8/2008 19:55 +Tacoma,,FORMATION,WA,11/8/2008 22:15 +Maplewood,ORANGE,LIGHT,NJ,11/9/2008 5:45 +Westlake,,SPHERE,LA,11/9/2008 17:22 +Ocean City,,CIRCLE,NJ,11/9/2008 17:30 +Waverly,GREEN,LIGHT,TN,11/9/2008 18:20 +Austin,,OTHER,TX,11/9/2008 19:00 +Hamilton,,LIGHT,KS,11/9/2008 19:00 +Norh Hollywood,GREEN,FIREBALL,CA,11/9/2008 19:00 +Santa Clara,,CHEVRON,CA,11/9/2008 19:00 +North Richland Hills,,DISK,TX,11/9/2008 19:10 +Columbia,,TRIANGLE,SC,11/9/2008 19:55 +Mesa,,CIRCLE,AZ,11/9/2008 20:30 +Benton,,LIGHT,LA,11/9/2008 20:40 +McDonough,BLUE,OTHER,GA,11/9/2008 20:47 +Seattle,,FIREBALL,WA,11/9/2008 22:03 +Myrtle Beach,,,SC,11/9/2008 23:00 +Uniontown,,VARIOUS,OH,11/10/2008 0:30 +Palm Springs,,TRIANGLE,CA,11/10/2008 1:53 +El Paso,RED,DISK,TX,11/10/2008 6:30 +Pagosa Springs,,LIGHT,CO,11/10/2008 6:30 +Murfreesboro,GREEN,FLASH,TN,11/10/2008 18:55 +Oakland,,FIREBALL,TN,11/10/2008 19:00 +West Bend,,OTHER,WI,11/10/2008 20:00 +Jackson,RED,LIGHT,NJ,11/10/2008 20:15 +Burbank,BLUE,VARIOUS,WA,11/10/2008 21:00 +Mission Viejo,,OVAL,CA,11/10/2008 21:40 +Mission Viejo,,OTHER,CA,11/10/2008 21:45 +Nashville,YELLOW GREEN,FIREBALL,TN,11/10/2008 22:40 +Murfreesboro,GREEN,FIREBALL,TN,11/10/2008 22:52 +Arlington,,SPHERE,TX,11/11/2008 16:10 +Mesa,RED,TRIANGLE,AZ,11/11/2008 18:28 +Flower Mound,RED,LIGHT,TX,11/11/2008 19:37 +San Jose,,LIGHT,CA,11/11/2008 23:26 +Crescent,,LIGHT,OR,11/11/2008 23:30 +Los Angeles,,DISK,CA,11/12/2008 5:30 +Bumpass,ORANGE,CIRCLE,VA,11/12/2008 8:05 +Long Beach,,FIREBALL,CA,11/12/2008 9:15 +Hermosa Beach,,OVAL,CA,11/12/2008 10:30 +Randolph,,CIGAR,MA,11/12/2008 16:10 +Quail Valley,,CIRCLE,CA,11/12/2008 18:00 +York,,CIRCLE,ME,11/12/2008 19:00 +Brandon,,,MS,11/12/2008 19:23 +Davis,,LIGHT,CA,11/12/2008 19:30 +Long Beach,,SPHERE,CA,11/12/2008 20:35 +Wallingford,GREEN,FIREBALL,CT,11/12/2008 21:30 +Williamsburg,GREEN,,VA,11/12/2008 21:30 +Worcester,GREEN,OTHER,MA,11/12/2008 21:30 +Bloomfield Hills,BLUE,CIGAR,MI,11/12/2008 22:09 +Springfield,,OTHER,MO,11/13/2008 2:59 +Lake View,RED,FIREBALL,OR,11/13/2008 16:00 +Allen,,,TX,11/13/2008 17:30 +Corvallis,,DIAMOND,OR,11/13/2008 18:00 +Oakland,,FIREBALL,IL,11/13/2008 18:00 +Portland,ORANGE,TRIANGLE,OR,11/13/2008 19:00 +Lometa,,DISK,TX,11/13/2008 20:00 +Concord,,CROSS,CA,11/13/2008 20:30 +Shelton,,OVAL,WA,11/13/2008 21:20 +Greeley,,FIREBALL,CO,11/13/2008 23:00 +Latham,,SPHERE,NY,11/14/2008 4:28 +Paducah,,,KY,11/14/2008 5:30 +Beaver,,CIRCLE,UT,11/14/2008 8:40 +El Paso,,CIGAR,TX,11/14/2008 10:00 +Calabasas,,CHEVRON,CA,11/14/2008 18:30 +Los Angeles,RED,CHEVRON,CA,11/14/2008 18:30 +Orchard Park,,OTHER,NY,11/14/2008 18:30 +Clearwater,ORANGE,LIGHT,FL,11/14/2008 20:00 +Anaheim,,DISK,CA,11/14/2008 20:30 +Langdon,ORANGE,FLASH,ND,11/14/2008 21:00 +San Francisco,ORANGE,TRIANGLE,CA,11/14/2008 23:41 +Salt Lake City,,LIGHT,UT,11/14/2008 23:50 +North Topsail Beach,,LIGHT,NC,11/15/2008 3:00 +Madison,,FIREBALL,OH,11/15/2008 14:20 +Hanford,BLUE,DISK,CA,11/15/2008 17:00 +Reno,,TRIANGLE,NV,11/15/2008 17:00 +Bellingham-Lummi,ORANGE,CIGAR,WA,11/15/2008 17:20 +Cape Coral,,CIRCLE,FL,11/15/2008 17:25 +Spartanburg,,TEARDROP,SC,11/15/2008 18:00 +Seattle,,FIREBALL,WA,11/15/2008 18:20 +Emeryville,,CHEVRON,CA,11/15/2008 19:15 +San Juan Capistrano,,CHEVRON,CA,11/15/2008 19:30 +San Francisco,,TRIANGLE,CA,11/15/2008 19:55 +Burleson,RED,TRIANGLE,TX,11/15/2008 20:00 +Manitowoc,BLUE,EGG,WI,11/15/2008 20:00 +Tacoma,,LIGHT,WA,11/15/2008 20:00 +Coral Springs,,OTHER,FL,11/15/2008 20:30 +San Francisco,,RECTANGLE,CA,11/15/2008 23:27 +Bellefontaine,,DISK,OH,11/15/2008 23:30 +Atlantic City,,LIGHT,NJ,11/16/2008 2:30 +Carlsbad,,CROSS,CA,11/16/2008 6:00 +Park City,BLUE,CIGAR,UT,11/16/2008 14:10 +Annapolis,,DISK,MD,11/16/2008 14:20 +Santa Rosa,,FIREBALL,CA,11/16/2008 17:45 +Winston-Salem,,LIGHT,NC,11/16/2008 18:00 +Kokomo,,CIRCLE,IN,11/16/2008 18:32 +Los Angeles,,CIRCLE,CA,11/16/2008 21:20 +Brockton,,TRIANGLE,MA,11/16/2008 23:00 +Morongo Valley,,LIGHT,CA,11/16/2008 23:35 +Grahamsville,,LIGHT,NY,11/17/2008 4:00 +Chesterfield,,OVAL,VA,11/17/2008 6:15 +Alvin,,OTHER,TX,11/17/2008 6:30 +Garland,,,TX,11/17/2008 10:25 +Vista,,LIGHT,CA,11/17/2008 10:30 +Stuart,,OVAL,FL,11/17/2008 12:30 +Castle Rock,,CIRCLE,CO,11/17/2008 16:45 +Stony Brook,,FLASH,NY,11/17/2008 17:30 +Stony Brook,,SPHERE,NY,11/17/2008 18:00 +Hermosa Beach,,TRIANGLE,CA,11/17/2008 18:20 +Denham Springs,,CHEVRON,LA,11/17/2008 18:24 +Hollywood,,SPHERE,FL,11/17/2008 18:40 +Morongo Valley,,LIGHT,CA,11/17/2008 18:42 +Austin,,DISK,TX,11/17/2008 18:45 +Georgetown,,TRIANGLE,TX,11/17/2008 18:47 +Franklinton,ORANGE,LIGHT,NC,11/17/2008 19:00 +Yorktown,,CIRCLE,VA,11/17/2008 20:23 +Yorktown,,CIRCLE,VA,11/17/2008 20:33 +Oshkosh area,,FORMATION,WI,11/17/2008 20:38 +Oshkosh,,FORMATION,WI,11/17/2008 20:59 +Tyler,,SPHERE,TX,11/18/2008 6:30 +Prattville,,DISK,AL,11/18/2008 7:40 +Playa Del Rey,,CIRCLE,CA,11/18/2008 8:30 +Lancaster,ORANGE,CIRCLE,CA,11/18/2008 16:50 +Evansville,RED,,IN,11/18/2008 17:25 +Chiloquin,,OVAL,OR,11/18/2008 17:35 +McCloud,,CONE,CA,11/18/2008 17:50 +Conneaut,,DISK,OH,11/18/2008 18:00 +Southampton,,TRIANGLE,PA,11/18/2008 18:00 +Beverly Hills,,SPHERE,CA,11/18/2008 18:10 +Wilmington,,CIRCLE,NC,11/18/2008 18:30 +Kingsford,ORANGE,CIRCLE,MI,11/18/2008 19:00 +West Columbia,,LIGHT,SC,11/18/2008 19:00 +University Place,RED,TRIANGLE,WA,11/18/2008 19:02 +Coward,RED,LIGHT,SC,11/18/2008 19:50 +Pittsburgh,,FIREBALL,PA,11/18/2008 21:00 +Scottsdale,,FORMATION,AZ,11/18/2008 21:42 +Spring,,OTHER,TX,11/18/2008 23:16 +Chula Vista,,LIGHT,CA,11/19/2008 0:40 +New Hope,ORANGE,CIGAR,PA,11/19/2008 5:20 +East Haven,,EGG,CT,11/19/2008 7:30 +Colorado Springs,BLUE,,CO,11/19/2008 13:25 +Henrietta,,LIGHT,NY,11/19/2008 16:00 +Mountgomery County,,LIGHT,PA,11/19/2008 17:05 +Manteca,,TRIANGLE,CA,11/19/2008 18:00 +Cleburne,,LIGHT,TX,11/19/2008 18:15 +Bayside,,RECTANGLE,NY,11/19/2008 18:30 +Howell,,OTHER,NJ,11/19/2008 19:50 +Horsham,,LIGHT,PA,11/19/2008 20:50 +Scottsdale,ORANGE,FORMATION,AZ,11/19/2008 21:40 +Tuscaloosa,BLUE,CIGAR,AL,11/19/2008 22:10 +Seattle,,LIGHT,WA,11/19/2008 22:15 +Orange,,TRIANGLE,CA,11/19/2008 23:30 +Laguna Hills,,TRIANGLE,CA,11/19/2008 23:54 +Granite Bay,,RECTANGLE,CA,11/20/2008 0:00 +Austin,,,TX,11/20/2008 4:18 +Memphis,,,TN,11/20/2008 4:30 +Napoleonville,GREEN,FLASH,LA,11/20/2008 5:30 +Dallas,,OVAL,TX,11/20/2008 6:00 +National City,,LIGHT,CA,11/20/2008 6:00 +Portsmouth,,LIGHT,VA,11/20/2008 6:00 +Phoenix,RED ORANGE,LIGHT,AZ,11/20/2008 10:15 +El Dorado,,CIRCLE,AR,11/20/2008 17:00 +Amarillo,,OTHER,TX,11/20/2008 18:00 +Ranger,,LIGHT,TX,11/20/2008 18:32 +Roseville,,CIRCLE,CA,11/20/2008 19:00 +Spalding,,FORMATION,NE,11/20/2008 19:04 +Antelope,,RECTANGLE,CA,11/20/2008 19:30 +Citrus Heights,,SPHERE,CA,11/20/2008 19:30 +Folsom,,CIRCLE,CA,11/20/2008 19:40 +Lawrence,,LIGHT,KS,11/20/2008 19:40 +Maricopa,,,AZ,11/20/2008 22:00 +no data,,LIGHT,TX,11/20/2008 22:00 +Savannah,GREEN,FIREBALL,GA,11/20/2008 22:05 +Ft. Myers,,,FL,11/20/2008 22:15 +Ft. Gordon,,FIREBALL,GA,11/20/2008 22:45 +Lincoln,,CIRCLE,DE,11/20/2008 23:00 +Norco,,FORMATION,CA,11/20/2008 23:00 +Batesville,YELLOW,FIREBALL,AR,11/20/2008 23:45 +San Luis Obispo,,LIGHT,CA,11/21/2008 0:00 +Kingman,,OTHER,AZ,11/21/2008 1:00 +Savannah,,FORMATION,GA,11/21/2008 1:20 +Red Oak,,TEARDROP,IA,11/21/2008 3:00 +Dyersburg,,CIGAR,TN,11/21/2008 13:49 +Memphis,,CIRCLE,TN,11/21/2008 17:00 +Phoenix,,CIRCLE,AZ,11/21/2008 17:50 +Phoenix,,,AZ,11/21/2008 18:00 +Tucson,BLUE,CIRCLE,AZ,11/21/2008 18:10 +Beaverton,,CIRCLE,OR,11/21/2008 18:20 +Palos Verdes,,OTHER,CA,11/21/2008 18:30 +Crystal Springs,,LIGHT,AR,11/21/2008 19:00 +Friendswood,,OTHER,TX,11/21/2008 19:00 +Kokomo,,RECTANGLE,IN,11/21/2008 19:00 +Tustin,RED,TRIANGLE,CA,11/21/2008 19:05 +Brady,RED,LIGHT,NE,11/21/2008 19:30 +Seattle,RED,,WA,11/21/2008 19:30 +Englewood,,LIGHT,FL,11/21/2008 19:40 +Kingman,,RECTANGLE,AZ,11/21/2008 20:00 +Warrenton,,CHEVRON,MO,11/21/2008 20:10 +Arlington,YELLOW GREEN,TEARDROP,TX,11/21/2008 20:20 +Las Cruces,,LIGHT,NM,11/21/2008 22:00 +Newark,,FORMATION,OH,11/21/2008 22:38 +Indianapolis,,TRIANGLE,IN,11/21/2008 23:30 +Broken Arrow,,VARIOUS,OK,11/22/2008 0:00 +Waverly,,CHEVRON,OH,11/22/2008 0:48 +Ludlow,,,CA,11/22/2008 1:00 +Royersford,,,PA,11/22/2008 1:55 +Jackson,,LIGHT,TN,11/22/2008 3:18 +Spring Valley,,CIRCLE,CA,11/22/2008 12:15 +Canton,,TRIANGLE,MI,11/22/2008 14:00 +Omaha,RED,LIGHT,NE,11/22/2008 18:10 +Richboro,,OVAL,PA,11/22/2008 20:40 +Portland,,LIGHT,OR,11/22/2008 22:23 +Deltona,ORANGE,,FL,11/22/2008 23:30 +San Francisco,,LIGHT,CA,11/22/2008 23:50 +Leesburg,,CIGAR,GA,11/23/2008 1:32 +Edwards,,LIGHT,CA,11/23/2008 2:00 +Stratford,,DISK,CT,11/23/2008 4:00 +Duvall,RED,TRIANGLE,WA,11/23/2008 9:20 +Beaverton,,SPHERE,OR,11/23/2008 14:45 +Whittier,,CIRCLE,CA,11/23/2008 14:45 +Chicago,,TRIANGLE,IL,11/23/2008 18:00 +Portland,,LIGHT,OR,11/23/2008 18:00 +Penn Valley,,LIGHT,CA,11/23/2008 18:05 +Dallas,,LIGHT,TX,11/23/2008 18:40 +Highland Springs,,DIAMOND,VA,11/23/2008 19:00 +Summerville,ORANGE,LIGHT,SC,11/23/2008 20:00 +Black Rock,,VARIOUS,CT,11/23/2008 20:05 +Morehead,,LIGHT,KY,11/23/2008 22:37 +Carmichael,BLUE,LIGHT,CA,11/23/2008 23:00 +Skykomish,,OTHER,WA,11/23/2008 23:00 +Denver,,LIGHT,CO,11/24/2008 16:14 +Batesville,,CHEVRON,MS,11/24/2008 17:00 +Ionia,,CROSS,MI,11/24/2008 18:00 +Phenix City,,LIGHT,AL,11/24/2008 19:00 +Dallas,,LIGHT,TX,11/24/2008 19:46 +Oak Ridge,,RECTANGLE,TN,11/24/2008 20:00 +Moline,,,IL,11/24/2008 20:30 +Kansas City,,TRIANGLE,MO,11/24/2008 21:00 +Hatboro,,DISK,PA,11/24/2008 21:07 +Huntsville,,CIGAR,TX,11/25/2008 0:00 +Westmont,,RECTANGLE,IL,11/25/2008 15:05 +Deming,,CIGAR,WA,11/25/2008 16:31 +Orland Park,,LIGHT,IL,11/25/2008 18:08 +New Hampton,,LIGHT,IA,11/25/2008 18:30 +West Jefferson,,LIGHT,NC,11/25/2008 19:00 +Knoxville,,TEARDROP,MD,11/25/2008 19:15 +N. Cape May,,TRIANGLE,NJ,11/25/2008 21:00 +Harborton,,LIGHT,VA,11/25/2008 22:00 +Great Falls,RED BLUE,LIGHT,MT,11/26/2008 0:05 +Herndon,RED,RECTANGLE,VA,11/26/2008 6:00 +Los Angeles,,OTHER,CA,11/26/2008 15:15 +,,LIGHT,IL,11/26/2008 15:30 +Columbia,,SPHERE,MO,11/26/2008 17:00 +Isanti,BLUE,FIREBALL,MN,11/26/2008 20:55 +Maumelle,,OTHER,AR,11/26/2008 22:05 +Marietta,,LIGHT,GA,11/26/2008 22:30 +Lincoln,,CIRCLE,NE,11/26/2008 22:45 +Mauk,,LIGHT,GA,11/26/2008 23:23 +El Paso,,FORMATION,TX,11/27/2008 0:00 +Terlingua,RED,LIGHT,TX,11/27/2008 3:00 +Chicago,,LIGHT,IL,11/27/2008 5:23 +Warwick,,FLASH,RI,11/27/2008 6:00 +Phoenix,,DIAMOND,AZ,11/27/2008 7:26 +Los Angeles,,CIGAR,CA,11/27/2008 8:10 +Ardmore,,LIGHT,OK,11/27/2008 10:30 +Bethlehem,GREEN,LIGHT,PA,11/27/2008 18:20 +McKinney,,LIGHT,TX,11/27/2008 18:30 +Clovis,,LIGHT,CA,11/27/2008 19:05 +Carson,ORANGE,LIGHT,CA,11/27/2008 19:30 +Bear,ORANGE,CIRCLE,DE,11/27/2008 20:00 +Mount Holly,,LIGHT,NC,11/27/2008 20:00 +San Diego,RED,FIREBALL,CA,11/27/2008 20:00 +San Diego,RED,LIGHT,CA,11/27/2008 20:30 +Canton,,VARIOUS,GA,11/27/2008 22:25 +Miami,,OVAL,FL,11/28/2008 5:00 +McLean,,SPHERE,VA,11/28/2008 11:30 +Lehigh Acres,,OTHER,FL,11/28/2008 15:00 +Skokie,,CYLINDER,IL,11/28/2008 15:40 +Huntington,,LIGHT,IN,11/28/2008 17:00 +Mardela,,SPHERE,MD,11/28/2008 17:30 +Elk Grove Village,,LIGHT,IL,11/28/2008 18:00 +Hobbs,,LIGHT,NM,11/28/2008 18:30 +Huntington,,LIGHT,NY,11/28/2008 18:30 +Jefferson Hills,,FORMATION,PA,11/28/2008 19:00 +San Antonio,,DISK,TX,11/28/2008 19:00 +San Diego,,RECTANGLE,CA,11/28/2008 22:00 +Malibu,BLUE,FLASH,CA,11/28/2008 22:20 +Sioux City,,OVAL,IA,11/28/2008 23:15 +Spring Lake,,RECTANGLE,MI,11/28/2008 23:25 +Dumont,RED,FLASH,NJ,11/28/2008 23:45 +Wausau,,LIGHT,WI,11/29/2008 0:30 +Glen Ellyn,,CHEVRON,IL,11/29/2008 2:52 +Dallas,,SPHERE,TX,11/29/2008 3:00 +Buhl,,DIAMOND,ID,11/29/2008 17:00 +Sanibel Island,,FORMATION,FL,11/29/2008 20:00 +Vernon,,LIGHT,TX,11/29/2008 20:00 +Plano,,DISK,TX,11/29/2008 21:00 +Uniontown,,DIAMOND,OH,11/29/2008 22:15 +Waverly,,CHEVRON,OH,11/29/2008 22:20 +Ashville,,LIGHT,OH,11/29/2008 23:00 +Oneonta,,,NY,11/30/2008 2:00 +Pounding Mill,,LIGHT,VA,11/30/2008 13:00 +Modesto,,FORMATION,CA,11/30/2008 13:30 +Simi Valley,,OVAL,CA,11/30/2008 13:38 +Hollywood,,LIGHT,CA,11/30/2008 15:00 +Junction City,,OVAL,OR,11/30/2008 17:00 +Galveston,,LIGHT,TX,11/30/2008 20:15 +Brier,,TRIANGLE,WA,11/30/2008 23:00 +Statham,GREEN,,GA,12/1/2008 0:13 +Fort Smith,,LIGHT,AR,12/1/2008 0:15 +San Marcos,,LIGHT,CA,12/1/2008 6:00 +Pine City,,LIGHT,MN,12/1/2008 7:15 +Brawley,,VARIOUS,CA,12/1/2008 19:00 +Merritt Island,,CIRCLE,FL,12/1/2008 20:07 +Fort Myers,,LIGHT,FL,12/1/2008 21:40 +Missouri City,,OVAL,TX,12/1/2008 22:15 +Borrego Springs,,DISK,CA,12/2/2008 2:00 +Oakland,,DISK,PA,12/2/2008 12:40 +Denver,,VARIOUS,CO,12/2/2008 13:00 +Percy,,,IL,12/2/2008 17:18 +Jackson,,OTHER,MS,12/2/2008 17:30 +Plainfield,,LIGHT,IN,12/2/2008 19:00 +Davie,,FIREBALL,FL,12/2/2008 19:15 +Louisville,,,KY,12/2/2008 19:25 +Schererville,RED,TRIANGLE,IN,12/2/2008 19:30 +Tracy,ORANGE,LIGHT,CA,12/2/2008 19:40 +Crown Point,,TRIANGLE,IN,12/2/2008 20:00 +Brewerton,,DISK,NY,12/2/2008 21:00 +Grand Rapids,,TRIANGLE,MI,12/2/2008 21:00 +Huntington Beach,,LIGHT,CA,12/2/2008 21:15 +Durham,,DIAMOND,NC,12/3/2008 0:00 +San Antonio,BLUE,OVAL,TX,12/3/2008 0:29 +Durham,,DIAMOND,NC,12/3/2008 1:00 +Tucson,,SPHERE,AZ,12/3/2008 8:31 +Lake Tapps,RED,TRIANGLE,WA,12/3/2008 14:03 +Omaha,,,NE,12/3/2008 15:00 +Lisbon,,CIRCLE,CT,12/3/2008 16:30 +Federal Way,,,WA,12/3/2008 17:55 +Neville Island,,LIGHT,PA,12/3/2008 19:00 +Lebanon,,CIRCLE,OR,12/3/2008 19:15 +Rehoboth Beach,ORANGE,OTHER,DE,12/3/2008 21:30 +Elkview,GREEN,OTHER,WA,12/3/2008 23:13 +Coolidge,,,AZ,12/3/2008 23:30 +Westmoreland,,FORMATION,CA,12/4/2008 2:30 +Avon Park,,TRIANGLE,FL,12/4/2008 4:45 +Norcross,,RECTANGLE,GA,12/4/2008 14:00 +Astoria,,SPHERE,OR,12/4/2008 17:00 +Crane,,OVAL,OR,12/4/2008 17:00 +New Britain,,TRIANGLE,PA,12/4/2008 20:00 +Cheektowaga,,LIGHT,NY,12/4/2008 21:30 +Marysville,,OTHER,WA,12/4/2008 22:00 +Prior Lake,,SPHERE,MN,12/5/2008 0:00 +Wilmington,ORANGE,TRIANGLE,NC,12/5/2008 2:00 +Tacoma,RED,OTHER,WA,12/5/2008 6:10 +Canby,,SPHERE,OR,12/5/2008 7:25 +Tiverton,,CYLINDER,RI,12/5/2008 7:30 +Lodi,,FORMATION,NJ,12/5/2008 9:55 +Dallas,,CHEVRON,TX,12/5/2008 20:05 +Fort Collins,,TRIANGLE,CO,12/5/2008 20:30 +Ashville,,,AL,12/5/2008 21:40 +South Hiram,,TEARDROP,ME,12/5/2008 22:45 +Austin,,LIGHT,TX,12/5/2008 23:00 +Crafton,,,PA,12/6/2008 2:33 +Huntington Beach,ORANGE,LIGHT,CA,12/6/2008 3:15 +Marana,,SPHERE,AZ,12/6/2008 8:45 +Lakeway,,RECTANGLE,TX,12/6/2008 14:07 +Rialto,,CIRCLE,CA,12/6/2008 15:00 +Miami,RED,CYLINDER,FL,12/6/2008 17:00 +Maumelle,,FIREBALL,AR,12/6/2008 17:30 +Rancho Palos Verdes,,TRIANGLE,CA,12/6/2008 17:30 +Grover Beach,,FIREBALL,CA,12/6/2008 17:40 +Hendersonville,,LIGHT,NC,12/6/2008 18:45 +La Grande,BLUE,CIRCLE,OR,12/6/2008 21:56 +Ankeny,,TRIANGLE,IA,12/6/2008 22:00 +Dallas,,LIGHT,TX,12/6/2008 22:00 +Los Angeles,,LIGHT,CA,12/6/2008 22:00 +Front Royal,GREEN,TEARDROP,VA,12/6/2008 23:25 +Truckee,,LIGHT,CA,12/6/2008 23:32 +Empire,,,OH,12/7/2008 0:00 +Dos Rios,,OTHER,CA,12/7/2008 10:30 +Ocala,,VARIOUS,FL,12/7/2008 10:30 +Dixon,,,CA,12/7/2008 12:07 +Rochester Hills,,OTHER,MI,12/7/2008 12:30 +Margate,,OVAL,FL,12/7/2008 17:00 +Junction City,,OVAL,OR,12/7/2008 18:00 +Mount Vernon,,LIGHT,MO,12/7/2008 18:37 +San Diego,RED ORANGE,LIGHT,CA,12/7/2008 20:55 +Medi,,CIGAR,PA,12/7/2008 23:00 +Takoma Park,RED,FORMATION,MD,12/7/2008 23:00 +Baltimore,,LIGHT,MD,12/8/2008 0:00 +Jacksonville,,DIAMOND,FL,12/8/2008 1:17 +Stephens City,,TEARDROP,VA,12/8/2008 1:37 +Virginia Beach,,FIREBALL,VA,12/8/2008 5:00 +Yorktown,BLUE,SPHERE,VA,12/8/2008 20:40 +Longview,,DIAMOND,WA,12/8/2008 22:37 +Los Angeles,,LIGHT,CA,12/9/2008 5:35 +Kensington,,LIGHT,MD,12/9/2008 6:42 +Vidor,,CONE,TX,12/9/2008 12:00 +Amarillo,,SPHERE,TX,12/10/2008 6:15 +Placerville,,CYLINDER,CA,12/10/2008 10:30 +Sun City,,FORMATION,CA,12/10/2008 17:36 +Lynnwood,,,WA,12/10/2008 18:00 +Morehead,RED,LIGHT,KY,12/10/2008 18:01 +Happy Valley,,FIREBALL,OR,12/10/2008 19:25 +Edwardsville,,OVAL,IL,12/10/2008 20:25 +Harrisburg,RED,FIREBALL,PA,12/10/2008 20:40 +Bellingham,,,WA,12/10/2008 22:30 +Buffalo,,TRIANGLE,NY,12/10/2008 23:05 +Jackson,,TRIANGLE,MI,12/11/2008 5:02 +Alexandria,,CIRCLE,LA,12/11/2008 18:40 +Stockton,,LIGHT,CA,12/12/2008 1:00 +Waynesville,GREEN,TRIANGLE,GA,12/12/2008 6:15 +Mahwah,,,NJ,12/12/2008 14:50 +Surfside Beach,,LIGHT,SC,12/12/2008 18:40 +Huntington Beach,,LIGHT,CA,12/12/2008 23:30 +Pittsfield,,TRIANGLE,MA,12/12/2008 23:55 +Killingworth,GREEN,FIREBALL,CT,12/13/2008 2:30 +Indianapolis,RED,DISK,IN,12/13/2008 9:00 +Independence,,CIRCLE,MO,12/13/2008 11:35 +Orchard Park,,SPHERE,NY,12/13/2008 15:45 +New Hope,RED,DIAMOND,MN,12/13/2008 17:30 +Spokane,,LIGHT,WA,12/13/2008 18:00 +Vinton,GREEN,CIRCLE,VA,12/13/2008 18:00 +Marysville,,DISK,KS,12/13/2008 18:05 +Placentia,,LIGHT,CA,12/13/2008 20:30 +Torrance,,,CA,12/13/2008 22:12 +San Francisco,,LIGHT,CA,12/13/2008 23:15 +Orinda,,FLASH,CA,12/13/2008 23:20 +Long Beach,,CIRCLE,CA,12/13/2008 23:30 +Los Angeles,ORANGE,LIGHT,CA,12/13/2008 23:30 +Sherman Oaks,ORANGE,LIGHT,CA,12/13/2008 23:50 +Seattle,,,WA,12/14/2008 0:00 +Orem,,LIGHT,UT,12/14/2008 1:38 +Anniston,,LIGHT,AL,12/14/2008 2:00 +Grants,ORANGE,,NM,12/14/2008 2:15 +Las Vegas,,LIGHT,NV,12/14/2008 5:00 +Bethpage,,CIGAR,NY,12/14/2008 10:15 +Plainview,,CIGAR,NY,12/14/2008 10:30 +Gainesville,,DISK,VA,12/14/2008 13:00 +Lexington,,LIGHT,KY,12/14/2008 18:03 +Martinsburg,,TRIANGLE,WV,12/14/2008 20:30 +Baker,,RECTANGLE,CA,12/15/2008 1:00 +Englewood,,,CO,12/15/2008 7:30 +Waterford,,,MI,12/15/2008 7:30 +Topeka,,OVAL,KS,12/15/2008 15:30 +no data,,TRIANGLE,FL,12/15/2008 16:30 +Portage,,FORMATION,WI,12/15/2008 18:30 +Kings Park,,,NY,12/15/2008 18:50 +Windsor,GREEN,LIGHT,MO,12/15/2008 22:00 +Fuquay,,TRIANGLE,NC,12/15/2008 23:00 +Syracuse,,,NY,12/16/2008 4:00 +Chino,,FIREBALL,CA,12/16/2008 7:13 +Middletown,,TRIANGLE,NY,12/16/2008 7:45 +Corvallis,,FIREBALL,OR,12/16/2008 16:30 +Grants Pass,,OTHER,OR,12/16/2008 17:50 +Bellevue,,LIGHT,WA,12/16/2008 18:45 +Grants Pass,,TRIANGLE,OR,12/16/2008 19:00 +Gilmer,,LIGHT,TX,12/16/2008 21:00 +Naples,,,FL,12/16/2008 21:28 +Nashua,,VARIOUS,NH,12/16/2008 22:00 +Marshall,,DISK,MO,12/17/2008 0:00 +St. Petersburg,,CIGAR,FL,12/17/2008 0:00 +Miami,,TRIANGLE,FL,12/17/2008 17:00 +Madison,RED,TRIANGLE,WI,12/17/2008 18:00 +Fresno,RED,TRIANGLE,CA,12/17/2008 21:00 +Wautoma,,TRIANGLE,WI,12/17/2008 21:00 +Seaford,,,NY,12/17/2008 23:00 +Stamford,BLUE,LIGHT,CT,12/17/2008 23:00 +Fort Lauderdale,BLUE,CIRCLE,FL,12/18/2008 4:55 +Tucson,,LIGHT,AZ,12/18/2008 8:10 +Riverside,,SPHERE,CA,12/18/2008 11:10 +Coral Springs,,CIRCLE,FL,12/18/2008 16:53 +Stuart,,LIGHT,FL,12/18/2008 16:55 +Fort Lauderdale,,FIREBALL,FL,12/18/2008 16:59 +Fort Lauderdale,BLUE,CIRCLE,FL,12/18/2008 17:00 +North Palm Beach,,FORMATION,FL,12/18/2008 17:00 +Wellington,,SPHERE,FL,12/18/2008 17:00 +Hancock,BLUE,TRIANGLE,WI,12/18/2008 18:00 +Naples,,OTHER,FL,12/18/2008 18:43 +Georgetown,,,SC,12/18/2008 20:00 +Titusville,,,FL,12/18/2008 21:03 +Pompano Beach,BLUE,CYLINDER,FL,12/18/2008 21:20 +Miami,,SPHERE,FL,12/19/2008 5:49 +Phoenix,,OTHER,AZ,12/19/2008 6:20 +Heber Springs,,LIGHT,AR,12/19/2008 6:25 +Highlands Ranch,,TRIANGLE,CO,12/19/2008 6:30 +Milpitas,,EGG,CA,12/19/2008 8:45 +Dade City,,CIRCLE,FL,12/19/2008 12:20 +Indian Rocks,,FORMATION,FL,12/19/2008 21:30 +Paris,,OTHER,TX,12/20/2008 1:00 +Los Angeles,,FIREBALL,CA,12/20/2008 8:32 +West Los Angeles,,FIREBALL,CA,12/20/2008 16:55 +Iowa City,,,IA,12/20/2008 17:00 +San Antonio,,RECTANGLE,TX,12/20/2008 17:00 +Mesa,,FIREBALL,AZ,12/20/2008 18:00 +Cedar Park,,LIGHT,TX,12/20/2008 19:40 +Harbor City,,,CA,12/21/2008 6:40 +Mt. Charleston,,DIAMOND,NV,12/21/2008 12:30 +Laramie,,FLASH,WY,12/21/2008 17:00 +Jackson,,TRIANGLE,MI,12/21/2008 18:56 +Citronelle,,SPHERE,AL,12/21/2008 19:30 +Child,,OVAL,MD,12/22/2008 0:00 +Oklahoma City,,OVAL,OK,12/22/2008 3:43 +Reno,,,NV,12/22/2008 6:50 +Marquette,,FIREBALL,MI,12/22/2008 13:00 +Seattle,,CIRCLE,WA,12/22/2008 16:25 +Jackson,,TRIANGLE,MI,12/22/2008 17:00 +Hammonton,,TRIANGLE,NJ,12/22/2008 17:15 +Huntington Beach,,LIGHT,CA,12/22/2008 18:45 +Kona,,LIGHT,HI,12/22/2008 20:30 +White City,,LIGHT,OR,12/22/2008 21:00 +Southampton,,,PA,12/23/2008 1:30 +San Jose,,SPHERE,CA,12/23/2008 9:00 +Arvada,,TRIANGLE,CO,12/23/2008 12:00 +no data,,DISK,TN,12/23/2008 13:00 +Vallejo,,LIGHT,CA,12/23/2008 18:30 +Kinnelon,,FORMATION,NJ,12/23/2008 20:00 +Oakland,,CIRCLE,CA,12/24/2008 0:30 +Minneapolis,GREEN,FIREBALL,MN,12/24/2008 1:40 +Riverside,,CIGAR,CA,12/24/2008 7:18 +Inverness,,CIRCLE,FL,12/24/2008 9:30 +Edinburgh,,,IN,12/24/2008 12:00 +Oklahoma City,,LIGHT,OK,12/24/2008 17:45 +Rochester,,OTHER,NY,12/24/2008 20:01 +Auburn Hills,,FLASH,MI,12/24/2008 22:10 +Paintsville,,FIREBALL,KY,12/25/2008 1:00 +Melbourne,ORANGE,FORMATION,VT,12/25/2008 3:46 +Bremerton,,FIREBALL,WA,12/25/2008 5:54 +Bremerton,,FIREBALL,WA,12/25/2008 5:55 +Woodlyn,,CIRCLE,PA,12/25/2008 11:00 +Austin,,DISK,TX,12/25/2008 18:00 +ZIP code 20876,RED,OTHER,MD,12/25/2008 19:02 +Erie,,CIRCLE,CO,12/25/2008 19:45 +Sarasota,,FIREBALL,FL,12/25/2008 20:00 +South Burlington,,LIGHT,VT,12/25/2008 20:45 +Minden,ORANGE,VARIOUS,NV,12/26/2008 19:52 +Winter Haven,,CIRCLE,FL,12/26/2008 20:30 +Hudson Falls,,CIGAR,NY,12/27/2008 13:19 +Los Angeles,,SPHERE,CA,12/27/2008 15:00 +Riverside,,FORMATION,CA,12/27/2008 16:49 +St. Cloud,,TRIANGLE,MN,12/27/2008 18:00 +Laguna Niguel,,TRIANGLE,CA,12/27/2008 19:00 +Newberry,GREEN,LIGHT,NC,12/27/2008 19:30 +Wurtand,,OTHER,KY,12/27/2008 19:30 +Spring Hill,,CIGAR,FL,12/27/2008 20:15 +Laguna Hills,,DIAMOND,CA,12/27/2008 20:30 +Boca Raton,,FORMATION,FL,12/27/2008 22:00 +Downey,,OTHER,CA,12/27/2008 22:17 +Ashville,,LIGHT,OH,12/27/2008 22:30 +Fort Washington,,DISK,MD,12/27/2008 22:30 +Iron Mountain,,LIGHT,MI,12/28/2008 1:00 +Batesville,GREEN,,IN,12/28/2008 3:30 +Fort Fairfield,,OTHER,ME,12/28/2008 5:30 +russlville,BLUE,,AR,12/28/2008 11:00 +Peoria,,OTHER,IL,12/28/2008 13:00 +Salina,,CIRCLE,KS,12/28/2008 15:00 +Langdon,,TRIANGLE,IA,12/28/2008 18:00 +Campbellsport,,SPHERE,WI,12/28/2008 19:30 +Davie,ORANGE,SPHERE,FL,12/28/2008 21:00 +Davie,RED,SPHERE,FL,12/28/2008 21:00 +Snohomish,,LIGHT,WA,12/28/2008 21:30 +Des Moines,,LIGHT,IA,12/28/2008 23:30 +Lee's Summit,,,MO,12/29/2008 0:00 +Greeley,,TRIANGLE,CO,12/29/2008 0:30 +Pinehurst,,LIGHT,NC,12/29/2008 1:15 +Montgomery County,,OVAL,PA,12/29/2008 2:12 +Mt. Gilead,,OVAL,NC,12/29/2008 5:15 +Oxford,,TRIANGLE,MA,12/29/2008 7:50 +Phoenix,,,AZ,12/29/2008 11:05 +Fairbanks,,,AK,12/29/2008 15:00 +Tok,,OTHER,AK,12/29/2008 15:10 +Asheboro,,DISK,NC,12/29/2008 16:30 +Stewartstown,RED,,PA,12/29/2008 18:00 +Thomasville,,OTHER,NC,12/29/2008 18:00 +Beaverton,,TRIANGLE,OR,12/29/2008 18:05 +Northport,,LIGHT,NY,12/29/2008 18:40 +North Coventry,,TEARDROP,PA,12/29/2008 19:45 +Jacksonville,,CHEVRON,NC,12/29/2008 20:05 +Poland,,FIREBALL,ME,12/29/2008 21:29 +Revere,GREEN,CIRCLE,MA,12/29/2008 21:30 +Aurora,RED YELLOW,TRIANGLE,CO,12/29/2008 22:45 +Manitowoc,RED,DIAMOND,WI,12/29/2008 23:45 +Pataskala,,DISK,OH,12/30/2008 2:43 +Jackson,RED,CYLINDER,TN,12/30/2008 3:45 +Olathe,,DISK,KS,12/30/2008 14:20 +Calistoga,,DISK,CA,12/30/2008 14:29 +Florence,,SPHERE,SC,12/30/2008 20:30 +Black Mountain,,LIGHT,NC,12/30/2008 21:00 +Saugus,ORANGE,TRIANGLE,CA,12/30/2008 21:00 +Saugus,ORANGE,TRIANGLE,CA,12/30/2008 21:00 +Matagorda,,OTHER,TX,12/30/2008 22:00 +El Cajon,,,CA,12/31/2008 0:00 +Sharpsville,,OTHER,IN,12/31/2008 0:00 +Starks,,FIREBALL,LA,12/31/2008 0:00 +Los Angeles,,LIGHT,CA,12/31/2008 5:50 +Ogden,,SPHERE,UT,12/31/2008 9:15 +Florida,,CIRCLE,FL,12/31/2008 12:00 +Bremerton,,CIRCLE,WA,12/31/2008 14:30 +Galesburg,,,IL,12/31/2008 16:30 +Louisville,,LIGHT,KY,12/31/2008 16:30 +Minneapolis,,TRIANGLE,MN,12/31/2008 16:35 +Warrensburg,,DISK,MO,12/31/2008 18:00 +Spring,,LIGHT,TX,12/31/2008 20:15 +Long Beach,,FORMATION,CA,12/31/2008 21:00 +Fort Lauderdale,,FIREBALL,FL,12/31/2008 21:30 +Carver,,,MA,12/31/2008 22:00 +St. Louis,,FORMATION,MO,12/31/2008 23:45 +Katy,,LIGHT,TX,12/31/2008 23:55 +Palmdale,,CIRCLE,CA,1/1/2009 0:00 +various,,OTHER,CA,1/1/2009 0:00 +Weeki Wachee,ORANGE,DIAMOND,FL,1/1/2009 0:00 +Spring Valley,RED,LIGHT,CA,1/1/2009 0:01 +Canoga Park,,SPHERE,CA,1/1/2009 0:05 +Tyler,YELLOW,SPHERE,TX,1/1/2009 0:10 +Orlando,,DIAMOND,FL,1/1/2009 0:12 +El Cajon,,VARIOUS,CA,1/1/2009 0:15 +Gonzales,RED,,LA,1/1/2009 0:15 +San Diego,RED,CIRCLE,CA,1/1/2009 0:15 +Feltham,,CIRCLE,MI,1/1/2009 0:16 +San Diego,RED,LIGHT,CA,1/1/2009 0:20 +Bradenton,ORANGE,FIREBALL,FL,1/1/2009 1:10 +Bethel,,OTHER,AK,1/1/2009 1:15 +Cincinnati,,,OH,1/1/2009 2:00 +Pasadena,,SPHERE,CA,1/1/2009 15:00 +Asheboro,,CIGAR,NC,1/1/2009 17:00 +Memphis,RED,CIGAR,TN,1/1/2009 18:00 +Berlin,,FIREBALL,CT,1/1/2009 19:00 +Concord,RED,,CA,1/1/2009 19:00 +Markle,,CIRCLE,IN,1/1/2009 19:00 +Olivehurst,,OVAL,CA,1/1/2009 19:00 +Hartsville,,LIGHT,SC,1/1/2009 20:53 +Riverside,YELLOW,LIGHT,CA,1/1/2009 22:00 +Campbellsville,,LIGHT,KY,1/1/2009 23:00 +High Point,,CIRCLE,NC,1/1/2009 23:15 +Caro,,CIGAR,MI,1/2/2009 4:05 +Ballinger,,OTHER,TX,1/2/2009 5:30 +Clayton,,EGG,NC,1/2/2009 18:00 +Lynnwood,,OTHER,WA,1/2/2009 18:00 +St. Paul,,LIGHT,MN,1/2/2009 19:30 +Glen Rock,GREEN,FIREBALL,NJ,1/2/2009 19:45 +Perry,,FLASH,IA,1/2/2009 19:45 +Venetie,RED GREEN,CIRCLE,AK,1/2/2009 21:00 +Plantation,ORANGE,FIREBALL,FL,1/2/2009 21:15 +Davie,,LIGHT,FL,1/2/2009 21:22 +New York City,,DISK,NY,1/2/2009 23:15 +Lafayette,,TRIANGLE,CO,1/3/2009 4:00 +Lafayette,,TRIANGLE,CO,1/3/2009 4:00 +Lake George,,FORMATION,NY,1/3/2009 9:00 +St. Petersburg,,OVAL,FL,1/3/2009 11:50 +Durham,,DIAMOND,NC,1/3/2009 15:00 +Old Lyme,,CIRCLE,CT,1/3/2009 16:40 +Lafayette,,CYLINDER,TN,1/3/2009 18:00 +Benton,,LIGHT,AR,1/3/2009 19:00 +Gainesville,,LIGHT,VA,1/3/2009 19:00 +Winchester,,FORMATION,VA,1/3/2009 20:00 +New Paris,,TRIANGLE,OH,1/3/2009 20:26 +Mechanicsburg,,,PA,1/3/2009 20:30 +Elkhart,RED,DIAMOND,IN,1/3/2009 21:00 +Davie,RED ORANGE,FIREBALL,FL,1/3/2009 21:25 +East Norwich,GREEN,OVAL,NY,1/3/2009 23:35 +Jersey Shore,,SPHERE,PA,1/4/2009 0:15 +Denver,,SPHERE,CO,1/4/2009 5:30 +Yankee Hill,,LIGHT,CA,1/4/2009 6:50 +Lancaster,,OTHER,CA,1/4/2009 13:00 +San Jose,,CIRCLE,CA,1/4/2009 13:30 +Ventura,,CHEVRON,CA,1/4/2009 17:00 +West Valley City,YELLOW,EGG,UT,1/4/2009 18:45 +Concord,,TRIANGLE,CA,1/4/2009 19:00 +Bullhead City,,SPHERE,AZ,1/4/2009 20:40 +Randolph,,TRIANGLE,NJ,1/4/2009 20:45 +Manto,YELLOW,LIGHT,NC,1/4/2009 22:00 +Norwalk,,SPHERE,CA,1/5/2009 0:52 +Port Orchard,,FLASH,WA,1/5/2009 2:00 +Tinley Park,,LIGHT,IL,1/5/2009 18:00 +Hartsville,,LIGHT,SC,1/5/2009 18:50 +New York City,,,NY,1/5/2009 20:30 +Whippany,,FORMATION,NJ,1/5/2009 20:34 +Morris Plains,RED,CIRCLE,NJ,1/5/2009 20:35 +Adams,,TRIANGLE,WI,1/5/2009 21:00 +Cocoa Beach,,OTHER,FL,1/6/2009 1:00 +Madison Heights,,LIGHT,VA,1/6/2009 6:34 +Nipomo,,OTHER,CA,1/6/2009 8:35 +Rancho Cucamonga,,LIGHT,CA,1/6/2009 10:15 +Palmdale,,LIGHT,CA,1/6/2009 19:45 +Amarillo,,TRIANGLE,TX,1/6/2009 20:00 +Kinder,,TEARDROP,LA,1/6/2009 21:30 +Dallas,,,TX,1/7/2009 0:00 +Prescott Valley,,,AZ,1/7/2009 5:11 +Hooks,,LIGHT,TX,1/7/2009 5:30 +Rancho Cucamonga,BLUE,LIGHT,CA,1/7/2009 10:15 +Los Angeles,,OTHER,CA,1/7/2009 17:00 +Douglas,,,GA,1/7/2009 18:30 +Effingham,,OVAL,SC,1/7/2009 18:45 +Dunnellon,,LIGHT,FL,1/7/2009 19:00 +Calamine,,,AR,1/7/2009 19:45 +Fillmore,,LIGHT,CA,1/7/2009 19:50 +Snellville,,TRIANGLE,GA,1/7/2009 20:00 +Collinsville,,LIGHT,MS,1/7/2009 20:23 +Matagorda,,OTHER,TX,1/8/2009 5:30 +Rancho Cucamonga,BLUE,LIGHT,CA,1/8/2009 9:30 +Oshkosh,,LIGHT,WI,1/8/2009 17:00 +Brentwood,,RECTANGLE,MO,1/8/2009 18:09 +Gaston,,SPHERE,SC,1/8/2009 18:30 +Lake Waccamaw,,DISK,NC,1/8/2009 18:30 +Dobbins,,,CA,1/8/2009 19:45 +Lincolnton,,LIGHT,NC,1/8/2009 20:10 +Los Angeles,,LIGHT,CA,1/9/2009 4:50 +Huntsville,,OTHER,AL,1/9/2009 9:00 +Palm Beach,,LIGHT,FL,1/9/2009 9:15 +Hawthorne,,,FL,1/9/2009 17:15 +Southaven,,FORMATION,MS,1/9/2009 17:45 +Philadelphia,ORANGE,OTHER,PA,1/9/2009 18:19 +Alexander,,FLASH,AR,1/9/2009 18:33 +Ball Ground,RED,CIRCLE,GA,1/9/2009 19:00 +Johnston,,OVAL,RI,1/9/2009 21:00 +Hazlet,RED,DIAMOND,NJ,1/9/2009 21:26 +Portland,,LIGHT,OR,1/9/2009 21:30 +Glendale,,LIGHT,AZ,1/9/2009 22:00 +Winter Springs,,OTHER,FL,1/10/2009 0:00 +Middletown,,TRIANGLE,OH,1/10/2009 2:05 +Rancho Cucamonga,,LIGHT,CA,1/10/2009 10:19 +Cocoa,,OVAL,FL,1/10/2009 16:30 +Cocoa,,OVAL,FL,1/10/2009 16:30 +San Antonio,,DISK,TX,1/10/2009 17:00 +Folsom,,LIGHT,LA,1/10/2009 17:30 +Bountiful,,LIGHT,UT,1/10/2009 18:10 +Marysville,,LIGHT,WA,1/10/2009 18:30 +Ray City,,LIGHT,GA,1/10/2009 19:30 +Williston,ORANGE,CIRCLE,VT,1/10/2009 19:30 +Reseda,,DISK,CA,1/10/2009 20:00 +Miami,,FORMATION,FL,1/10/2009 21:10 +Sacramento,,OTHER,CA,1/11/2009 0:00 +Santa Ana,,OVAL,CA,1/11/2009 0:00 +San Francisco,ORANGE,FIREBALL,CA,1/11/2009 0:02 +Dover,,CIRCLE,DE,1/11/2009 10:10 +Naples,RED,OTHER,FL,1/11/2009 19:30 +Christmas Valley,,LIGHT,OR,1/11/2009 20:30 +Haiku,,LIGHT,HI,1/11/2009 20:45 +Houston,,CIRCLE,TX,1/11/2009 21:30 +Anderson,,LIGHT,SC,1/12/2009 3:27 +Miramar,,LIGHT,FL,1/12/2009 6:23 +San Pablo,,FORMATION,CA,1/12/2009 8:30 +Arden,RED YELLOW BLUE,LIGHT,NC,1/12/2009 10:00 +Bridgeville,,LIGHT,CA,1/12/2009 18:30 +Lexington,,OTHER,KY,1/12/2009 18:30 +Bethlehem,,CIRCLE,PA,1/12/2009 20:05 +Arlee,,FLASH,MT,1/12/2009 20:30 +Wentzville,,TRIANGLE,MO,1/12/2009 20:30 +Monroe,RED GREEN,TRIANGLE,LA,1/12/2009 21:05 +Kendall,,LIGHT,FL,1/13/2009 1:20 +Kendall,,LIGHT,FL,1/13/2009 1:45 +Lock Haven,ORANGE,SPHERE,PA,1/13/2009 3:00 +New York City,,OTHER,NY,1/13/2009 4:20 +Wildwood Crest,,,NJ,1/13/2009 4:20 +Myrtle Beach,,,SC,1/13/2009 4:45 +Ypsilanti,,,MI,1/13/2009 7:00 +San Francisco,,SPHERE,CA,1/13/2009 11:15 +Metairie,,OVAL,LA,1/13/2009 16:15 +Plano,,VARIOUS,IL,1/13/2009 16:25 +Electra,,OVAL,TX,1/13/2009 16:28 +Louisville,,EGG,KY,1/13/2009 17:15 +Montebello,ORANGE,FIREBALL,CA,1/13/2009 18:00 +Anza,,,CA,1/13/2009 18:09 +Bluffton,,TRIANGLE,SC,1/13/2009 18:30 +Peru,,LIGHT,IN,1/13/2009 19:12 +Laguna Niguel,,CIRCLE,CA,1/13/2009 19:13 +Gettysburg,ORANGE,TRIANGLE,PA,1/13/2009 19:45 +Walnut Creek,,DIAMOND,CA,1/13/2009 20:00 +Brunswick,,CIRCLE,GA,1/13/2009 20:25 +Gable,,LIGHT,SC,1/13/2009 21:00 +Long Beach,ORANGE,TRIANGLE,CA,1/13/2009 21:30 +Portland,,EGG,OR,1/13/2009 21:43 +Little Neck Bay,,VARIOUS,NY,1/13/2009 23:09 +Winder,,CIGAR,GA,1/14/2009 0:00 +Argyle,,DISK,TX,1/14/2009 1:08 +West Chester,,OTHER,PA,1/14/2009 18:35 +Eatonville,,LIGHT,WA,1/14/2009 19:00 +Portland,,LIGHT,OR,1/14/2009 19:30 +Chandler,,CIRCLE,AZ,1/14/2009 19:33 +Battle Mountain,,OVAL,NV,1/14/2009 20:00 +Grass Valley,YELLOW,TRIANGLE,CA,1/14/2009 20:00 +Pinehurst,,FIREBALL,NC,1/14/2009 20:25 +Long Beach,,CIRCLE,CA,1/14/2009 21:00 +Leesburg,ORANGE,LIGHT,GA,1/14/2009 21:15 +Hammonton,RED,OTHER,NJ,1/14/2009 21:25 +Perry,,SPHERE,IA,1/14/2009 21:25 +Fairfax,,,CA,1/14/2009 22:00 +Prospect,RED,LIGHT,PA,1/14/2009 23:00 +Grand Blanc,ORANGE,LIGHT,MI,1/14/2009 23:15 +Louisville,,DISK,KY,1/15/2009 0:00 +Rockville,RED,SPHERE,MD,1/15/2009 0:05 +Florissant,,VARIOUS,MO,1/15/2009 1:00 +Tarboro,,SPHERE,NC,1/15/2009 4:00 +Plainfield,,CIRCLE,IL,1/15/2009 9:00 +Conyers,,,GA,1/15/2009 12:00 +Queen Creek,,CIRCLE,AZ,1/15/2009 14:04 +Jacksonville,GREEN,CIRCLE,NC,1/15/2009 15:00 +Orange County,,DISK,CA,1/15/2009 16:30 +Houston,,OTHER,TX,1/15/2009 18:10 +Birmingham,,LIGHT,AL,1/15/2009 18:15 +Holden,,RECTANGLE,ME,1/15/2009 19:00 +Groton,,DIAMOND,CT,1/15/2009 19:15 +New Paltz,,LIGHT,NY,1/15/2009 20:00 +Olathe,,LIGHT,KS,1/15/2009 20:00 +Commack,GREEN,LIGHT,NY,1/15/2009 21:00 +Danville,GREEN,FIREBALL,GA,1/15/2009 21:00 +Punta Gorda,,TEARDROP,FL,1/15/2009 23:35 +Reston,,LIGHT,VA,1/16/2009 0:00 +Spring Valley,,LIGHT,CA,1/16/2009 0:00 +Powdersville,,CIGAR,SC,1/16/2009 7:40 +Bakersfield,,FORMATION,CA,1/16/2009 8:00 +Port St. Lucie,,VARIOUS,FL,1/16/2009 9:00 +Van Nuys,,DIAMOND,CA,1/16/2009 9:00 +Tucson,RED,LIGHT,AZ,1/16/2009 16:10 +LaConner,RED BLUE,,WA,1/16/2009 17:45 +Yuma,,LIGHT,AZ,1/16/2009 18:25 +Albuquerque,YELLOW,OTHER,NM,1/16/2009 18:30 +Buffalo,RED YELLOW GREEN BLUE,LIGHT,MN,1/16/2009 18:30 +Clarkston,,LIGHT,WA,1/16/2009 18:30 +San Francisco,RED,LIGHT,CA,1/16/2009 18:30 +Fullerton,,CIRCLE,CA,1/16/2009 19:00 +Atlanta,,LIGHT,GA,1/16/2009 19:30 +brunswick,RED,TRIANGLE,GA,1/16/2009 20:00 +Riverside,,EGG,CA,1/16/2009 20:00 +Anaheim,,DISK,CA,1/16/2009 20:30 +Gladwin,RED ORANGE,SPHERE,MI,1/16/2009 20:45 +Rensselaer,,TRIANGLE,NY,1/16/2009 22:00 +San Diego,,,CA,1/16/2009 23:20 +San Diego,ORANGE,LIGHT,CA,1/16/2009 23:25 +Ukiah,,DISK,CA,1/17/2009 2:00 +San Diego,,,CA,1/17/2009 4:15 +Moraga,RED,LIGHT,CA,1/17/2009 4:30 +Loveland,,TRIANGLE,OH,1/17/2009 6:25 +Phoenix,,FIREBALL,AZ,1/17/2009 15:32 +Killeen,,TEARDROP,TX,1/17/2009 18:20 +Houston,,VARIOUS,TX,1/17/2009 20:00 +Orlando,,LIGHT,FL,1/17/2009 20:05 +Denville,RED,DISK,NJ,1/17/2009 20:30 +San Diego,,FLASH,CA,1/17/2009 21:00 +Canton,,OTHER,TX,1/18/2009 0:50 +Canton,,OTHER,TX,1/18/2009 0:50 +San Leandro,,RECTANGLE,CA,1/18/2009 3:32 +Springfield,,FORMATION,MO,1/18/2009 5:15 +Phoenix,,CIRCLE,AZ,1/18/2009 6:34 +Pittsford,,OVAL,VT,1/18/2009 6:35 +Los Angeles,,DISK,CA,1/18/2009 7:30 +Bremerton,,VARIOUS,WA,1/18/2009 9:14 +Newbury Park,,TRIANGLE,CA,1/18/2009 11:00 +Parrish,,OVAL,FL,1/18/2009 13:25 +Garibaldi,,,OR,1/18/2009 17:00 +San Diego,,FLASH,CA,1/18/2009 17:00 +Irvine,ORANGE,FIREBALL,CA,1/18/2009 17:30 +Laguna Hills,,FIREBALL,CA,1/18/2009 17:30 +Manhattan Beach,,LIGHT,CA,1/18/2009 17:30 +Fremont,,FIREBALL,CA,1/18/2009 17:45 +Berkeley,,DISK,CA,1/18/2009 18:45 +San Dimas,,OVAL,CA,1/18/2009 18:50 +San Francisco,,LIGHT,CA,1/18/2009 19:00 +Westminster,RED,TEARDROP,CA,1/18/2009 19:00 +Phoenix,,CIRCLE,AZ,1/18/2009 19:05 +Sacramento,,FLASH,CA,1/18/2009 19:45 +Bay City,,LIGHT,TX,1/18/2009 20:00 +Buena Park,,VARIOUS,CA,1/18/2009 20:00 +Anaheim Hills,RED,OVAL,CA,1/18/2009 20:40 +Sun Valley,,TRIANGLE,CA,1/18/2009 20:50 +Fontana,,FORMATION,CA,1/18/2009 20:55 +Stanwood,,DISK,WA,1/18/2009 21:00 +Jacksonville Beach,,CIGAR,FL,1/18/2009 23:00 +Canby,RED YELLOW,OTHER,OR,1/19/2009 0:00 +Everett,RED BLUE,SPHERE,WA,1/19/2009 1:52 +Riverview,,LIGHT,FL,1/19/2009 2:40 +Playa del Rey,,CIGAR,CA,1/19/2009 10:30 +Providence,,FORMATION,RI,1/19/2009 14:21 +Santa Barbara,,FIREBALL,CA,1/19/2009 17:00 +Post Falls,,,ID,1/19/2009 18:27 +Cameron,RED,,NC,1/19/2009 18:45 +Everett,,CIRCLE,WA,1/19/2009 19:00 +Graham,,CIRCLE,WA,1/19/2009 19:30 +Pleasant Gap,,TRIANGLE,PA,1/19/2009 19:38 +Kaneohe,,,HI,1/19/2009 19:45 +Redondo Beach,RED,SPHERE,CA,1/19/2009 20:00 +Chino HIlls,RED,OVAL,CA,1/19/2009 20:37 +Arp,,LIGHT,TX,1/19/2009 23:00 +Conyers,,,GA,1/20/2009 2:00 +Deer Park,,DISK,NY,1/20/2009 2:26 +Marathon,,CIRCLE,FL,1/20/2009 5:00 +Lordsburg,,RECTANGLE,NM,1/20/2009 19:00 +San Francisco,,VARIOUS,CA,1/20/2009 19:00 +Wasilla,,TRIANGLE,AK,1/20/2009 19:15 +Modesto,RED,,CA,1/20/2009 19:45 +Lake Geneva,,LIGHT,WI,1/20/2009 20:00 +Victorville,ORANGE,RECTANGLE,CA,1/20/2009 20:20 +Damiansville,,,IL,1/20/2009 22:00 +Spring Hill,RED,LIGHT,KS,1/20/2009 22:00 +Goodland,ORANGE,CIRCLE,MO,1/20/2009 22:19 +Okeechobee,,,FL,1/20/2009 23:23 +Berkeley,,SPHERE,CA,1/21/2009 0:00 +Hermitage,,OTHER,PA,1/21/2009 3:30 +Monroeville,,OTHER,NJ,1/21/2009 18:00 +Evansville,YELLOW,,IN,1/21/2009 18:15 +Merton,,LIGHT,WI,1/21/2009 18:45 +Pensacola,RED ORANGE,CIRCLE,FL,1/21/2009 18:45 +St. Louis Park,,LIGHT,MN,1/21/2009 18:57 +Fresno,,RECTANGLE,CA,1/21/2009 19:00 +Oakland or Wanaque,,TRIANGLE,NJ,1/21/2009 19:15 +Pueblo,ORANGE,SPHERE,CO,1/21/2009 20:00 +Centereach,,DIAMOND,NY,1/21/2009 20:10 +Dagsboro,,VARIOUS,DE,1/21/2009 20:45 +Fortuna,,TRIANGLE,CA,1/21/2009 22:30 +Hammonton,,CIRCLE,NJ,1/21/2009 23:00 +Nashville,,TRIANGLE,TN,1/21/2009 23:00 +Seguin,RED,,TX,1/22/2009 0:00 +Berea,RED,,KY,1/22/2009 4:00 +Tampa,,OVAL,FL,1/22/2009 13:15 +Gautier,ORANGE,FIREBALL,MS,1/22/2009 18:45 +Ocean Springs,,LIGHT,MS,1/22/2009 19:10 +Flowery Branch,,,GA,1/22/2009 19:20 +Las Vegas,,DIAMOND,NV,1/22/2009 19:30 +Dayton,,OTHER,OH,1/22/2009 20:00 +Isle of Palms,,FLASH,SC,1/22/2009 21:00 +Byhaila,BLUE,LIGHT,MS,1/22/2009 21:04 +Deltona,,SPHERE,FL,1/23/2009 0:55 +Sterling Heights,,LIGHT,MI,1/23/2009 1:30 +Enola,,TRIANGLE,PA,1/23/2009 4:30 +Sharon,,TRIANGLE,CT,1/23/2009 5:20 +Bloomington,,TRIANGLE,MN,1/23/2009 7:15 +Lafayette,RED,FORMATION,LA,1/23/2009 8:55 +Springfield,GREEN,LIGHT,MA,1/23/2009 9:00 +Hightstown,,TRIANGLE,NJ,1/23/2009 11:38 +Plumsteadville,,DIAMOND,PA,1/23/2009 18:00 +Des Moines,,OVAL,IA,1/23/2009 19:00 +Slidell,RED GREEN BLUE,SPHERE,LA,1/23/2009 19:00 +Eastsound,,LIGHT,WA,1/23/2009 19:45 +Copperas Cove,,VARIOUS,TX,1/23/2009 20:00 +Kaufman County,,LIGHT,TX,1/23/2009 20:45 +Lakeville,GREEN,CIRCLE,MA,1/23/2009 21:00 +San Antonio,,LIGHT,TX,1/23/2009 21:00 +Louisa,,TRIANGLE,KY,1/23/2009 21:45 +Boston,,CIGAR,MA,1/23/2009 22:00 +Fresno,,TRIANGLE,CA,1/23/2009 22:35 +Kenner,,LIGHT,LA,1/23/2009 23:30 +Beatrice,,DISK,NE,1/24/2009 0:30 +Dixon,,,MO,1/24/2009 1:00 +Dixon,,CIRCLE,MO,1/24/2009 1:15 +Dixon,,CIRCLE,MO,1/24/2009 1:15 +Fairbanks,,OVAL,AK,1/24/2009 18:00 +Lake City,,TRIANGLE,MI,1/24/2009 19:15 +Sycamore,,LIGHT,IL,1/24/2009 20:00 +Manchester,,,VT,1/24/2009 20:22 +Pipe Creek,RED,LIGHT,TX,1/24/2009 21:00 +Mass City,RED,LIGHT,MI,1/24/2009 21:50 +Bruin,,DISK,KY,1/24/2009 22:17 +Fairless Hills,,OVAL,PA,1/24/2009 22:25 +Morristown,,TRIANGLE,NJ,1/24/2009 22:30 +Corona,GREEN,CIGAR,CA,1/25/2009 0:00 +Greensboro,,,NC,1/25/2009 3:15 +Hayward,,DISK,CA,1/25/2009 7:00 +Canton,,LIGHT,OH,1/25/2009 8:00 +Mesa,YELLOW,LIGHT,AZ,1/25/2009 8:45 +Webster Groves,,OTHER,MO,1/25/2009 17:50 +Miami,,,FL,1/25/2009 19:00 +North Miami Beach,,OVAL,FL,1/25/2009 19:00 +Armonk,,,NY,1/25/2009 20:38 +Yakima,,OTHER,WA,1/25/2009 22:30 +Brookfield,,,WI,1/26/2009 11:05 +Santa Ana,ORANGE,LIGHT,CA,1/26/2009 12:15 +Owasso,,TRIANGLE,OK,1/26/2009 16:00 +West Shokan,,FIREBALL,NY,1/26/2009 16:30 +Scarsdale,,DISK,NY,1/26/2009 19:30 +West Paterson,,CIRCLE,NJ,1/26/2009 19:50 +Randolph,ORANGE,TRIANGLE,NJ,1/26/2009 20:20 +Fort Walton Beach,,TRIANGLE,FL,1/26/2009 20:30 +Lake Hopatcong,RED,LIGHT,NJ,1/26/2009 20:30 +Cedar Knolls,,CIRCLE,NJ,1/26/2009 20:50 +N. Hollywood,ORANGE,CONE,CA,1/27/2009 3:30 +Christiansburg,,TRIANGLE,VA,1/27/2009 6:00 +West Jordan,,DISK,UT,1/27/2009 14:53 +Minneapolis,,LIGHT,MN,1/27/2009 19:00 +Bozrah,,TRIANGLE,CT,1/27/2009 20:30 +Laredo,,,TX,1/27/2009 21:50 +Frazier Park,ORANGE,TEARDROP,CA,1/27/2009 23:30 +Newport,,OVAL,ME,1/27/2009 23:30 +Silsbee,,LIGHT,TX,1/28/2009 9:30 +Albuquerque,,,NM,1/28/2009 12:05 +Louisville,,CONE,KY,1/28/2009 12:45 +Alexandria,,OTHER,VA,1/28/2009 13:45 +Rio Rico,,CIGAR,AZ,1/28/2009 17:00 +Rohnert Park,,DISK,CA,1/28/2009 17:35 +Seal Beach,RED ORANGE,LIGHT,CA,1/28/2009 17:45 +Nampa,,LIGHT,ID,1/28/2009 18:00 +Nassau,,LIGHT,NY,1/28/2009 20:00 +Appling,,TRIANGLE,GA,1/28/2009 22:00 +Good Hope,,FIREBALL,IL,1/28/2009 22:45 +Averill Park,,LIGHT,NY,1/28/2009 23:00 +Wayne,,LIGHT,ME,1/28/2009 23:07 +Carrollton,,CIRCLE,TX,1/29/2009 6:30 +Winder,,,GA,1/29/2009 12:00 +Brownwood,,TRIANGLE,TX,1/29/2009 19:00 +Tuscola,ORANGE,,TX,1/29/2009 19:00 +Glastonbury,BLUE,CIRCLE,CT,1/29/2009 19:30 +Gorman,,,TX,1/29/2009 19:30 +Eastland,,LIGHT,TX,1/29/2009 19:45 +New Brunswick,RED,LIGHT,NJ,1/29/2009 20:00 +Bloomfield,RED,FORMATION,NJ,1/29/2009 20:01 +Whittier,,FIREBALL,CA,1/29/2009 20:20 +St. Louis,,DIAMOND,MO,1/29/2009 20:50 +North Coventry,RED,TRIANGLE,PA,1/29/2009 23:45 +Mission Hills,,LIGHT,CA,1/30/2009 5:47 +San Diego,,DISK,CA,1/30/2009 9:00 +Madison,,CYLINDER,WI,1/30/2009 13:00 +Lacey,,SPHERE,WA,1/30/2009 13:20 +Frenchtown,,DISK,MT,1/30/2009 19:00 +Atlantic City,,TRIANGLE,NJ,1/30/2009 19:20 +San Marcos,RED,TRIANGLE,TX,1/30/2009 20:04 +Canton,,LIGHT,TX,1/30/2009 21:00 +Marshes Siding,,OTHER,KY,1/30/2009 21:00 +Baker,RED,LIGHT,LA,1/30/2009 23:00 +Avilton,RED,FORMATION,MD,1/31/2009 2:00 +Gladstone,,LIGHT,NM,1/31/2009 2:30 +Elko,RED,LIGHT,NV,1/31/2009 10:15 +Scottsbluff,,VARIOUS,NE,1/31/2009 10:30 +St. Charles,,OTHER,MO,1/31/2009 12:20 +West Monroe,,SPHERE,LA,1/31/2009 13:00 +Huntington Beach,,SPHERE,CA,1/31/2009 13:10 +Huntington Beach,,VARIOUS,CA,1/31/2009 13:35 +Fort Wayne,GREEN BLUE,CIRCLE,IN,1/31/2009 18:40 +Abilene,,,TX,1/31/2009 19:30 +Downey,,SPHERE,CA,1/31/2009 21:00 +Hackberry,,OTHER,LA,1/31/2009 21:00 +Starke,RED BLUE,,FL,1/31/2009 21:00 +Wendell,RED,LIGHT,ID,1/31/2009 21:00 +Canyon Lake,,FIREBALL,TX,1/31/2009 21:25 +Anaheim,,TRIANGLE,CA,1/31/2009 22:00 +North Hollywood,,CYLINDER,CA,1/31/2009 22:15 +Boutte,,,LA,2/1/2009 3:00 +Canton,,OTHER,TX,2/1/2009 8:00 +Clearwater,,EGG,FL,2/1/2009 9:45 +Pismo Beach,,CYLINDER,CA,2/1/2009 10:00 +Tampa,,OVAL,FL,2/1/2009 17:50 +Robstown,,CIGAR,TX,2/1/2009 19:00 +Rohnert Park,,SPHERE,CA,2/1/2009 19:30 +Oakland,,LIGHT,CA,2/1/2009 19:38 +Berkeley,,SPHERE,CA,2/1/2009 20:30 +Frankfort,,TEARDROP,IL,2/1/2009 21:00 +Jamaica,RED,,VA,2/1/2009 21:00 +Round Rock,,VARIOUS,TX,2/1/2009 21:00 +Sterling,,CIRCLE,VA,2/1/2009 21:30 +Mantua,RED,,NJ,2/2/2009 1:00 +Madison,,LIGHT,WI,2/2/2009 5:00 +Casper,,,WY,2/2/2009 6:00 +Maryville,,LIGHT,TN,2/2/2009 7:30 +Ottumwa,,SPHERE,IA,2/2/2009 9:00 +Hawthorne,RED ORANGE BLUE,CIRCLE,CA,2/2/2009 12:00 +Atlanta,,RECTANGLE,GA,2/2/2009 14:00 +Evesham,,CONE,NJ,2/2/2009 18:30 +Paducah,,LIGHT,KY,2/2/2009 18:30 +Duarte,,LIGHT,CA,2/2/2009 18:35 +Eugene,,OTHER,OR,2/2/2009 18:43 +Pleasanton,,LIGHT,CA,2/2/2009 18:45 +Brownwood,,LIGHT,TX,2/2/2009 18:50 +Hoquiam,,TRIANGLE,WA,2/2/2009 19:12 +Carlsbad,,LIGHT,CA,2/2/2009 19:40 +Celina,,CIRCLE,TX,2/2/2009 20:00 +Dinuba,RED,TRIANGLE,CA,2/2/2009 20:45 +Schaumburg,GREEN,LIGHT,IL,2/2/2009 21:10 +Lafayette,,OTHER,CO,2/2/2009 21:34 +Springfield,,EGG,IL,2/2/2009 22:15 +Shelter Cove,ORANGE,,CA,2/2/2009 23:30 +Cecil,GREEN,FIREBALL,GA,2/3/2009 0:59 +Madera,,SPHERE,CA,2/3/2009 4:30 +Highlands Ranch,,,CO,2/3/2009 5:42 +"Yorktown Heights,",,CIRCLE,NY,2/3/2009 14:28 +Thornton,,LIGHT,CO,2/3/2009 16:30 +Burleson,,OTHER,TX,2/3/2009 17:00 +Burleson,,OTHER,TX,2/3/2009 17:00 +Watson,,LIGHT,OK,2/3/2009 19:00 +Lake Worth,ORANGE,CIRCLE,FL,2/3/2009 19:30 +Palm Desert,,CHEVRON,CA,2/3/2009 19:30 +South New Belrin,RED BLUE,LIGHT,NY,2/3/2009 19:30 +Tukwila,,LIGHT,WA,2/3/2009 20:00 +Weaverville,,EGG,CA,2/3/2009 20:00 +Anahuac,,OVAL,TX,2/3/2009 20:50 +Glenolden,,OVAL,PA,2/4/2009 0:00 +Jonesboro,,LIGHT,AR,2/4/2009 4:10 +Los Angeles,,LIGHT,CA,2/4/2009 6:30 +North Mobile County,BLUE,CIGAR,AL,2/4/2009 7:00 +New Paris,,DIAMOND,OH,2/4/2009 10:10 +New York City,,DISK,NY,2/4/2009 12:00 +El Dorado,,CIGAR,AR,2/4/2009 16:00 +San Diego,,CONE,CA,2/4/2009 17:00 +Austin,,CIRCLE,TX,2/4/2009 18:59 +Canandaigua,,,NY,2/4/2009 20:00 +Earp,ORANGE,FORMATION,CA,2/4/2009 20:00 +Ozona,ORANGE,LIGHT,TX,2/4/2009 21:00 +Start,,,LA,2/4/2009 21:00 +Boerne,,CIRCLE,TX,2/4/2009 22:00 +Chattanooga,,LIGHT,TN,2/4/2009 22:29 +Warrington,,LIGHT,IN,2/4/2009 22:45 +Stephenville,,,TX,2/5/2009 0:00 +Kearney,RED,CIRCLE,NE,2/5/2009 1:00 +Maple Valley,,TRIANGLE,WA,2/5/2009 6:30 +Imagrant,GREEN BLUE,,MT,2/5/2009 6:55 +Olympia,,RECTANGLE,WA,2/5/2009 7:15 +Kokomo,,OTHER,IN,2/5/2009 9:55 +Gila Bend,,EGG,AZ,2/5/2009 14:15 +Madison,,OTHER,AL,2/5/2009 17:15 +San Diego,,FIREBALL,CA,2/5/2009 17:24 +Coral Springs,,CIRCLE,FL,2/5/2009 17:30 +Stephenville,,,TX,2/5/2009 19:26 +Weslaco,,LIGHT,TX,2/5/2009 21:00 +Spearsville,,TRIANGLE,LA,2/5/2009 21:23 +Pittsburg,,OVAL,CA,2/5/2009 21:35 +Cocoa,,VARIOUS,FL,2/5/2009 22:30 +New Braunfels,RED,LIGHT,TX,2/5/2009 22:45 +Newark,,LIGHT,OH,2/6/2009 0:00 +Kansas City,,TEARDROP,MO,2/6/2009 10:00 +New York City,,FIREBALL,NY,2/6/2009 12:03 +Gurnee,,,IL,2/6/2009 14:00 +Oakville,,TRIANGLE,MO,2/6/2009 19:00 +Reston,,LIGHT,VA,2/6/2009 19:20 +North Bergen,GREEN,LIGHT,NJ,2/6/2009 19:30 +Stephenville,,,TX,2/6/2009 19:30 +Watkins Glen,,LIGHT,NY,2/6/2009 20:00 +Lincoln,,LIGHT,NE,2/6/2009 21:00 +Maysville,,FIREBALL,NC,2/6/2009 21:00 +Powder Springs,,TRIANGLE,GA,2/6/2009 22:00 +Louisville,,OVAL,KY,2/7/2009 7:40 +Greenwood,,SPHERE,SC,2/7/2009 16:45 +Berkeley,,SPHERE,CA,2/7/2009 17:29 +Grants Pass,,CIRCLE,OR,2/7/2009 18:00 +Belmar,,FORMATION,NJ,2/7/2009 19:30 +Morton,ORANGE,LIGHT,NC,2/7/2009 19:30 +Parsippany,RED,LIGHT,NJ,2/7/2009 20:08 +Canby,,,MN,2/7/2009 22:30 +Saint Croix Falls,RED,TRIANGLE,WI,2/8/2009 0:00 +Duluth,,TRIANGLE,MN,2/8/2009 10:00 +Grand Rapids,,TRIANGLE,MI,2/8/2009 12:15 +Ashnurn,,VARIOUS,VA,2/8/2009 14:15 +Erin,,EGG,WI,2/8/2009 14:30 +Ward,,,AR,2/8/2009 15:00 +Franklin,,LIGHT,WI,2/8/2009 17:30 +West Branch,,CIGAR,MI,2/8/2009 17:50 +Spring Hill,,VARIOUS,TN,2/8/2009 18:00 +Hampton,,LIGHT,VA,2/8/2009 20:00 +Lake View Terrace,GREEN,SPHERE,CA,2/8/2009 20:00 +Waterloo,,SPHERE,NY,2/8/2009 20:20 +Port Reading,,DISK,NJ,2/8/2009 20:30 +Farmville,,,VA,2/8/2009 23:05 +Syracuse,,LIGHT,NY,2/9/2009 6:20 +Monroe,,CYLINDER,WA,2/9/2009 8:00 +Baltimore,,RECTANGLE,MD,2/9/2009 18:14 +Westfield,,,IN,2/10/2009 0:57 +Mesa,,DISK,AZ,2/10/2009 10:00 +Crookston,,CIRCLE,MN,2/10/2009 12:00 +Hollister,,CIGAR,NC,2/10/2009 12:00 +Hickory,,VARIOUS,NC,2/10/2009 16:00 +Grover Beach,RED GREEN,EGG,CA,2/10/2009 18:00 +Edgar Springs,,LIGHT,MO,2/10/2009 18:20 +Carta Valley,,FIREBALL,TX,2/10/2009 18:37 +Hiawatha,,OTHER,IA,2/10/2009 18:55 +Corryton,,TRIANGLE,TN,2/10/2009 19:03 +Los Angeles,GREEN,OVAL,CA,2/10/2009 22:00 +Azusa,,CIRCLE,CA,2/10/2009 23:00 +Ft. Campbell,,SPHERE,KY,2/11/2009 5:40 +Essex,,CIGAR,NC,2/11/2009 11:00 +Cincinnati,,CYLINDER,OH,2/11/2009 17:45 +Indianapolis,,TRIANGLE,IN,2/11/2009 19:30 +Wenatchee,,OVAL,WA,2/11/2009 19:30 +Boulder,,OTHER,CO,2/11/2009 20:15 +Mountain View,,LIGHT,OK,2/11/2009 21:00 +Spring Hill,,LIGHT,TN,2/11/2009 21:00 +Tucson,,,AZ,2/11/2009 21:20 +Columbus,,VARIOUS,GA,2/11/2009 22:30 +Kelso,RED,LIGHT,WA,2/11/2009 22:30 +Newark,,TRIANGLE,OH,2/11/2009 22:40 +Rancho Cordova,,LIGHT,CA,2/11/2009 23:00 +Des Moines,,FIREBALL,WA,2/12/2009 0:00 +Beckley,,TRIANGLE,WV,2/12/2009 6:46 +Irvine,,DIAMOND,CA,2/12/2009 8:15 +Los Angeles,,CIRCLE,CA,2/12/2009 11:50 +Douglasville,,OTHER,GA,2/12/2009 12:22 +Atlanta,,DISK,GA,2/12/2009 14:35 +San Diego,,FIREBALL,CA,2/12/2009 18:40 +San Diego,,CIGAR,CA,2/12/2009 19:45 +San Diego,,LIGHT,CA,2/12/2009 20:00 +Blythewood,,OVAL,SC,2/12/2009 20:28 +Columbia,ORANGE,LIGHT,MD,2/12/2009 20:30 +Eagle,,OVAL,WI,2/12/2009 21:30 +Russellville,,,AR,2/12/2009 21:40 +Russellville,,TRIANGLE,AR,2/12/2009 21:40 +NJ Parkway,,LIGHT,NJ,2/12/2009 22:00 +Columbus,BLUE,OVAL,OH,2/12/2009 22:08 +San Jacinto,,CIGAR,CA,2/12/2009 23:00 +Rehobeth,,TRIANGLE,AL,2/12/2009 23:30 +St. Albans,GREEN,FIREBALL,WV,2/13/2009 8:50 +Islamorada,,OTHER,FL,2/13/2009 12:00 +Buchanan,,TRIANGLE,GA,2/13/2009 17:00 +Fresno,GREEN,CIRCLE,CA,2/13/2009 18:30 +Whitehall,BLUE,OTHER,PA,2/13/2009 19:30 +New York City,,LIGHT,NY,2/13/2009 19:55 +Fairview,,OVAL,NC,2/13/2009 21:00 +Melissa,,OTHER,TX,2/13/2009 21:07 +Bloomingdale,,TRIANGLE,OH,2/13/2009 21:08 +Bloomingburg,,CROSS,OH,2/13/2009 22:00 +Campton,,,KY,2/13/2009 22:00 +Grayson,GREEN,DISK,KY,2/13/2009 22:10 +Ashland,,SPHERE,KY,2/13/2009 22:15 +Harrodsburg,,LIGHT,KY,2/13/2009 22:15 +Oak Hill,,LIGHT,NY,2/13/2009 22:16 +Doylestown,,TRIANGLE,PA,2/13/2009 23:00 +Smyrna Mills,BLUE,CIGAR,ME,2/14/2009 0:00 +Stroudsburg,,LIGHT,PA,2/14/2009 2:00 +Glendale,,CIRCLE,AZ,2/14/2009 11:00 +Phoenix,RED,DISK,AZ,2/14/2009 14:00 +Austin,,CIRCLE,TX,2/14/2009 16:00 +Wenatchee,,VARIOUS,WA,2/14/2009 16:00 +Hallandale,,LIGHT,FL,2/14/2009 16:44 +Overland Park,,CIRCLE,KS,2/14/2009 17:23 +Wethersfield,YELLOW,LIGHT,CT,2/14/2009 18:35 +Elizabethton,ORANGE YELLOW,,TN,2/14/2009 19:45 +Silverdale,,TRIANGLE,WA,2/14/2009 21:15 +Chicago,,LIGHT,IL,2/14/2009 23:35 +Abilene,,OTHER,TX,2/15/2009 0:00 +Woodland,,LIGHT,CA,2/15/2009 1:30 +Bow,,LIGHT,WA,2/15/2009 3:15 +Kannapolis,,FIREBALL,NC,2/15/2009 5:08 +Manning,GREEN,FIREBALL,SC,2/15/2009 5:30 +Clarksville,,CIRCLE,TN,2/15/2009 9:45 +Johnson City,,FIREBALL,TX,2/15/2009 10:45 +Bellmont,,CIGAR,AZ,2/15/2009 11:30 +Centralia,,CHEVRON,MO,2/15/2009 15:45 +New Haven,,SPHERE,CT,2/15/2009 17:15 +Southington,,LIGHT,CT,2/15/2009 19:00 +Howell,,,NJ,2/15/2009 19:30 +Pickens,,TRIANGLE,SC,2/15/2009 20:00 +Spring,,LIGHT,TX,2/15/2009 21:00 +Allentown,,CIRCLE,PA,2/15/2009 23:00 +Maple Falls,,CIRCLE,WA,2/15/2009 23:00 +St. Louis,,,MO,2/16/2009 0:00 +Swannanoa,,,NC,2/16/2009 0:02 +Kent,,LIGHT,WA,2/16/2009 2:00 +Overland Park,,LIGHT,KS,2/16/2009 3:40 +Lake Ariel,,OTHER,PA,2/16/2009 4:00 +Hammond,,SPHERE,LA,2/16/2009 14:14 +Stratford,,TEARDROP,CT,2/16/2009 16:20 +Knoxville,RED BLUE,EGG,TN,2/16/2009 18:10 +Dothan,,TRIANGLE,AL,2/16/2009 18:50 +New Baltimore,BLUE,LIGHT,NY,2/16/2009 19:30 +Visalia,GREEN,LIGHT,CA,2/16/2009 19:30 +Angelus Oaks,,CIRCLE,CA,2/16/2009 20:00 +Auburn,,VARIOUS,NH,2/16/2009 20:30 +South Easton,,VARIOUS,MA,2/16/2009 23:05 +New Orleans,,TEARDROP,LA,2/17/2009 0:00 +New London,RED,DISK,CT,2/17/2009 9:00 +Bloomington,,OTHER,IL,2/17/2009 15:00 +Rockland County,,OVAL,NY,2/17/2009 16:15 +East Hanover,RED,SPHERE,NJ,2/17/2009 20:45 +Parsippany,RED,CIRCLE,NJ,2/17/2009 20:45 +Boonton Town,RED,LIGHT,NJ,2/17/2009 20:47 +Morris Plains,,LIGHT,NJ,2/17/2009 20:50 +Morristown,RED,CIRCLE,NJ,2/17/2009 20:50 +Madison,RED,LIGHT,NJ,2/17/2009 20:55 +Wrightsville,,RECTANGLE,PA,2/17/2009 21:25 +Thousand Oaks,,LIGHT,CA,2/17/2009 21:40 +Mountain View,,DISK,CA,2/17/2009 23:50 +Philadelphia,,TRIANGLE,PA,2/18/2009 1:45 +El Segundo,,LIGHT,CA,2/18/2009 5:56 +Tampa,,TRIANGLE,FL,2/18/2009 9:00 +Morrisville,,OVAL,PA,2/18/2009 18:00 +Drummond Island,,OVAL,MI,2/18/2009 19:30 +Houston,,LIGHT,TX,2/18/2009 20:35 +Haymarket-Gainesville,,LIGHT,VA,2/18/2009 21:00 +Anaheim,,CIRCLE,CA,2/18/2009 21:32 +Lewisburg,,OTHER,WV,2/18/2009 22:45 +Chattanooga,,TRIANGLE,TN,2/19/2009 1:00 +Rancho Cucamonga,,LIGHT,CA,2/19/2009 3:15 +Berkley Twsp.,,TRIANGLE,NJ,2/19/2009 17:30 +Springfield,,LIGHT,VA,2/19/2009 19:00 +Stevenson Ranch,,LIGHT,CA,2/19/2009 19:00 +Wharton,RED,OVAL,NJ,2/19/2009 19:00 +McHenry,,TRIANGLE,IL,2/19/2009 20:00 +Palos Verdes Estates,RED BLUE,DISK,CA,2/19/2009 20:40 +Newark,,OTHER,NJ,2/20/2009 0:00 +Anthem,RED GREEN,SPHERE,AZ,2/20/2009 4:15 +New York City,,LIGHT,NY,2/20/2009 5:10 +High Springs,,DISK,FL,2/20/2009 12:00 +San Jose,,FORMATION,CA,2/20/2009 17:45 +Little Falls,RED BLUE,CYLINDER,NJ,2/20/2009 19:00 +Groton,,DISK,CT,2/20/2009 19:23 +Strasburg,,OVAL,VA,2/20/2009 20:00 +Hampton,,,TN,2/20/2009 20:12 +Torrance,,SPHERE,CA,2/20/2009 20:30 +Fairbanks,GREEN,LIGHT,AK,2/20/2009 22:00 +Gloucester,,CIRCLE,MA,2/20/2009 22:40 +Egan,,DIAMOND,LA,2/20/2009 23:50 +San Clemente,,LIGHT,CA,2/21/2009 0:05 +Hillsboro,,VARIOUS,OR,2/21/2009 0:30 +Canandaigua,RED,,NY,2/21/2009 2:00 +Weiser,,,ID,2/21/2009 9:00 +Marana,RED,SPHERE,AZ,2/21/2009 19:00 +Astoria,,LIGHT,NY,2/21/2009 20:00 +Cushing,,OTHER,OK,2/21/2009 20:19 +Corona,,CIRCLE,CA,2/21/2009 20:30 +Kountze,,LIGHT,TX,2/21/2009 21:00 +Tucson,,LIGHT,AZ,2/21/2009 22:15 +Knoxville,,CIRCLE,MD,2/21/2009 22:40 +Dallas,GREEN,LIGHT,TX,2/21/2009 23:30 +Tyler,,OTHER,TX,2/22/2009 18:23 +Redondo Beach,RED,CIRCLE,CA,2/22/2009 19:00 +Denham Springs,,LIGHT,LA,2/22/2009 19:30 +Tucker,,CHEVRON,GA,2/22/2009 19:45 +Kintnersville,,CYLINDER,PA,2/22/2009 20:00 +Vanleer,,CYLINDER,TN,2/22/2009 20:19 +Fort Mohave,RED,LIGHT,AZ,2/22/2009 20:50 +Mount Vernon,,LIGHT,IL,2/22/2009 20:53 +Dover,,TRIANGLE,DE,2/22/2009 22:30 +College Station,BLUE,LIGHT,TX,2/22/2009 23:55 +Arizona City,,OTHER,AZ,2/23/2009 0:00 +San Diego,RED,TRIANGLE,CA,2/23/2009 1:10 +Tallahassee,,FLASH,FL,2/23/2009 2:00 +Nacogdoches,,,TX,2/23/2009 2:35 +San Bernardino,,TRIANGLE,CA,2/23/2009 5:10 +Livonia,,LIGHT,MI,2/23/2009 6:20 +Brandon,,OVAL,MS,2/23/2009 9:00 +Rockledge,,SPHERE,FL,2/23/2009 15:40 +Morganville,,VARIOUS,NJ,2/23/2009 19:15 +San Fernando,,OTHER,CA,2/24/2009 0:00 +El Cajon,RED,TRIANGLE,CA,2/24/2009 1:15 +La Mesa,RED,FORMATION,CA,2/24/2009 1:20 +El Cajon,RED,TRIANGLE,CA,2/24/2009 1:30 +Fallbrook,,CIRCLE,CA,2/24/2009 2:00 +Oxnard,,OTHER,CA,2/24/2009 2:00 +Louisiana,,LIGHT,MO,2/24/2009 5:30 +Corral Hollow road vicinity,,EGG,CA,2/24/2009 10:24 +Tampa,,CIGAR,FL,2/24/2009 12:00 +Citrus heights,,CIRCLE,CA,2/24/2009 15:25 +Dinuba,,SPHERE,CA,2/24/2009 16:10 +New Bedfor,,LIGHT,MA,2/24/2009 18:30 +Billerica,,TRIANGLE,MA,2/24/2009 19:20 +Tipp City,,TRIANGLE,OH,2/24/2009 21:00 +Dallas,,CIGAR,NC,2/24/2009 21:30 +Seattle,,FIREBALL,WA,2/25/2009 11:09 +Seattle,ORANGE,OVAL,WA,2/25/2009 15:17 +Marlborough,RED,TRIANGLE,CT,2/25/2009 18:00 +Miami Lakes,,TRIANGLE,FL,2/25/2009 18:05 +Unity,RED,RECTANGLE,NH,2/25/2009 19:00 +Colorado Springs,,DISK,CO,2/25/2009 19:30 +Morgan City,,LIGHT,LA,2/25/2009 20:00 +Tuscaloosa,BLUE,SPHERE,AL,2/25/2009 20:00 +Ridgely,,LIGHT,MD,2/25/2009 20:25 +Ellensburg,,CIRCLE,WA,2/25/2009 21:45 +Baytown,,FIREBALL,TX,2/26/2009 0:00 +Shirley,,CIRCLE,NY,2/26/2009 12:00 +San Pablo Bay,,EGG,CA,2/26/2009 17:00 +Manchester,,LIGHT,CT,2/26/2009 19:50 +Deerfield,,DIAMOND,MA,2/26/2009 20:00 +Chino Valley,,CIGAR,AZ,2/26/2009 20:15 +Denver,,LIGHT,CO,2/26/2009 20:40 +Santa Rita,,OVAL,MT,2/26/2009 21:15 +Jetmore,,CIRCLE,KS,2/26/2009 21:40 +Cotulla,YELLOW,LIGHT,TX,2/26/2009 21:45 +Rhome,RED,,TX,2/26/2009 22:30 +Tahoe City,,CIGAR,CA,2/27/2009 1:30 +Bowie,,,MD,2/27/2009 5:05 +South Yarmouth,,CIRCLE,MA,2/27/2009 9:45 +Tampa,,CIRCLE,FL,2/27/2009 12:23 +Eugene,RED YELLOW GREEN BLUE,SPHERE,OR,2/27/2009 12:47 +Commack,ORANGE,DIAMOND,NY,2/27/2009 17:00 +Salt lake City,,TRIANGLE,UT,2/27/2009 19:10 +Fredericksburg,,,VA,2/27/2009 21:00 +Lake Mary,,,FL,2/27/2009 21:00 +Camas,,OVAL,WA,2/27/2009 23:23 +East Fishkill,,OVAL,NY,2/27/2009 23:30 +Eastsound,,LIGHT,WA,2/28/2009 5:00 +Phoenix,RED,CIRCLE,AZ,2/28/2009 11:20 +Huntsville,,LIGHT,UT,2/28/2009 20:00 +Yorba Linda,,TRIANGLE,CA,2/28/2009 20:00 +Valley Springs,,VARIOUS,CA,2/28/2009 22:05 +El Paso,BLUE,VARIOUS,TX,3/1/2009 0:15 +Kansas City,,FLASH,MO,3/1/2009 3:30 +Brea,,OVAL,CA,3/1/2009 14:00 +Brea,,OVAL,CA,3/1/2009 14:00 +Hudson Falls,ORANGE,SPHERE,NY,3/1/2009 14:23 +Colorado Springs,,TRIANGLE,CO,3/1/2009 21:30 +Vancouver,,FIREBALL,WA,3/1/2009 22:14 +Crystal Lake,,LIGHT,IL,3/2/2009 4:45 +Cherry Valley,,FIREBALL,CA,3/2/2009 6:00 +Edinburg,,,TX,3/2/2009 15:10 +Milwaukie,,DISK,OR,3/2/2009 16:30 +Hinton,,OTHER,WV,3/2/2009 19:00 +Davie,,LIGHT,FL,3/2/2009 19:15 +Hollywood,,LIGHT,CA,3/2/2009 20:00 +Mountain Home,RED,,AR,3/3/2009 0:00 +Cream Ridge,,LIGHT,NJ,3/3/2009 3:00 +Gulf Breeze,YELLOW,TRIANGLE,FL,3/3/2009 10:00 +Columbus,RED,,GA,3/3/2009 20:30 +Gurnee,,LIGHT,IL,3/3/2009 20:45 +Piqua,,DISK,OH,3/3/2009 21:00 +Granview,,TRIANGLE,MO,3/4/2009 0:00 +Neosho,,OTHER,MO,3/4/2009 3:10 +Cambridge,,CHEVRON,MA,3/4/2009 17:50 +Arcata,,LIGHT,CA,3/4/2009 18:00 +Hartsdale,RED GREEN,TRIANGLE,NY,3/4/2009 18:55 +Tacoma,,LIGHT,WA,3/4/2009 19:15 +Joliet,,FORMATION,IL,3/4/2009 21:15 +Fairchild AFB,,OTHER,WA,3/4/2009 21:45 +Goldthwaite,,FORMATION,TX,3/5/2009 0:00 +Cedar Rapids,,TEARDROP,IA,3/5/2009 6:45 +Shannon,,CIRCLE,NC,3/5/2009 6:45 +Winsted,,TRIANGLE,CT,3/5/2009 9:00 +Durango,,CIGAR,CO,3/5/2009 9:27 +Plant City,,OTHER,FL,3/5/2009 12:00 +Centerville,,DIAMOND,OH,3/5/2009 17:00 +Virgie,,OTHER,KY,3/5/2009 18:00 +West Valley City,,CIRCLE,UT,3/5/2009 20:05 +Long Beach,,,CA,3/5/2009 21:35 +Lacey,,SPHERE,WA,3/5/2009 22:00 +Austin,,OTHER,TX,3/6/2009 0:30 +Duarte,,FLASH,CA,3/6/2009 4:30 +North Augusta,,OVAL,SC,3/6/2009 16:05 +Westly,,CHEVRON,CA,3/6/2009 19:14 +Point Richmond,,SPHERE,CA,3/6/2009 19:45 +Golden Valley,,LIGHT,AZ,3/6/2009 20:00 +Allentown,RED,,PA,3/6/2009 20:45 +West Palm Beach,RED BLUE,VARIOUS,FL,3/6/2009 22:53 +Spokane,,TRIANGLE,WA,3/6/2009 23:00 +St. Augustine,,FIREBALL,FL,3/6/2009 23:00 +Sparta,,LIGHT,WI,3/7/2009 0:00 +Pueblo,,DISK,CO,3/7/2009 12:00 +Montauk,,OTHER,NY,3/7/2009 16:14 +Raleigh,,RECTANGLE,NC,3/7/2009 17:15 +Knoxville,,CYLINDER,TN,3/7/2009 17:30 +Gaithersburg,,FORMATION,MD,3/7/2009 18:00 +Lynchburg,,FIREBALL,VA,3/7/2009 20:14 +Holderness,YELLOW GREEN,,NH,3/7/2009 20:30 +Porterville,,FIREBALL,CA,3/7/2009 22:15 +Selinsgrove,,LIGHT,PA,3/7/2009 22:15 +Salt Lake City,,,UT,3/7/2009 23:45 +Minneapolis,,LIGHT,MN,3/8/2009 4:10 +Clermont,,VARIOUS,FL,3/8/2009 8:30 +Plum Island State Park,,SPHERE,MA,3/8/2009 15:00 +Beaverton,,DISK,OR,3/8/2009 19:00 +Covington,,LIGHT,GA,3/8/2009 19:00 +Wendell,,SPHERE,NC,3/8/2009 19:00 +New York City,,LIGHT,NY,3/8/2009 19:30 +Jasper,,,TX,3/8/2009 20:00 +Wolfforth,,FIREBALL,TX,3/8/2009 22:38 +Lusby,,SPHERE,MD,3/9/2009 6:05 +Miami,,FLASH,FL,3/9/2009 7:50 +Vienna,,FORMATION,VA,3/9/2009 21:15 +Tucson,,CYLINDER,AZ,3/10/2009 11:10 +Claremont,,LIGHT,CA,3/10/2009 11:20 +Falmouth,,OTHER,MA,3/10/2009 19:30 +Falmouth,,TRIANGLE,MA,3/10/2009 20:30 +Montgomery,,TRIANGLE,NY,3/10/2009 20:50 +Pensacola,RED,FIREBALL,FL,3/10/2009 21:45 +Newport Beach,,CIRCLE,CA,3/10/2009 21:55 +Pensacola,,LIGHT,FL,3/10/2009 23:42 +Fitchburg,,TRIANGLE,MA,3/11/2009 0:36 +Palo Alto,,FIREBALL,CA,3/11/2009 21:00 +Riverton,RED YELLOW GREEN BLUE,CIRCLE,UT,3/12/2009 0:15 +Amboy,,LIGHT,CA,3/12/2009 0:25 +Hoffman Estates,,FORMATION,IL,3/12/2009 0:45 +New Smyrna Beach,,SPHERE,FL,3/12/2009 1:00 +New York City,,DIAMOND,NY,3/12/2009 1:30 +Westmoreland,,,TN,3/12/2009 6:05 +Newport Beach,RED,RECTANGLE,CA,3/12/2009 9:05 +Boise,,SPHERE,ID,3/12/2009 16:15 +Princeton,,TRIANGLE,NJ,3/12/2009 20:45 +New York City,GREEN,LIGHT,NY,3/12/2009 21:00 +Grey Summit,RED BLUE,,MO,3/13/2009 0:15 +Newtown Square,,FLASH,PA,3/13/2009 5:50 +Lenoir,,SPHERE,NC,3/13/2009 13:30 +Miami,,SPHERE,FL,3/13/2009 14:05 +Miami,,CIGAR,FL,3/13/2009 15:45 +Portland,,,ME,3/13/2009 19:00 +Murrieta,,CIRCLE,CA,3/13/2009 19:35 +Sanford,,TRIANGLE,FL,3/13/2009 20:00 +Rayville,,,MO,3/13/2009 21:20 +Montecito,,LIGHT,CA,3/14/2009 10:30 +Davie,,OTHER,FL,3/14/2009 14:00 +Boulder,,LIGHT,CO,3/14/2009 14:15 +Chicago,,SPHERE,IL,3/14/2009 15:00 +Nokomis,RED,RECTANGLE,FL,3/14/2009 15:30 +Riverside,,LIGHT,IL,3/14/2009 18:00 +Apache Junction,,LIGHT,AZ,3/14/2009 19:30 +Queen Creek,,OTHER,AZ,3/14/2009 19:30 +Romeo,,DISK,MI,3/14/2009 19:30 +Richfield,,DISK,UT,3/14/2009 20:58 +Woodland,,SPHERE,CA,3/14/2009 21:24 +Hesperia,RED,LIGHT,CA,3/14/2009 22:30 +Indianola,,TRIANGLE,IA,3/14/2009 23:30 +Rochester,ORANGE,FIREBALL,NY,3/15/2009 0:30 +Bellevue,,OTHER,WA,3/15/2009 1:30 +Sedona,,LIGHT,AZ,3/15/2009 5:45 +Augusta,RED,LIGHT,ME,3/15/2009 8:23 +Findlay,,OVAL,OH,3/15/2009 17:30 +Nipomo,,LIGHT,CA,3/15/2009 19:00 +Pembroke Pines,,,FL,3/15/2009 19:06 +Sunny Isles Beach,,,FL,3/15/2009 19:43 +Riverside,BLUE,LIGHT,CA,3/15/2009 19:48 +San Luis Obispo,,CIRCLE,CA,3/15/2009 19:58 +Angola,,FORMATION,IN,3/15/2009 20:05 +Phoenix,,TRIANGLE,AZ,3/15/2009 22:00 +Riverhead,YELLOW,OTHER,NY,3/15/2009 22:15 +Muscatine,,TRIANGLE,IA,3/15/2009 23:00 +Santa Monica,ORANGE,OTHER,CA,3/15/2009 23:30 +Oklahoma City,,LIGHT,OK,3/16/2009 1:00 +Livingston,,LIGHT,TX,3/16/2009 6:15 +Afton,,CIRCLE,MI,3/16/2009 9:00 +St. Augustine,,CIRCLE,FL,3/16/2009 14:45 +Jackson,,,MI,3/16/2009 20:00 +Mokena,RED,CIRCLE,IL,3/16/2009 20:00 +Mokena,RED,TRIANGLE,IL,3/16/2009 20:00 +Mokena,RED,TRIANGLE,IL,3/16/2009 20:00 +Riverview,,,FL,3/16/2009 20:00 +Glenwood Springs,RED,FORMATION,CO,3/16/2009 21:00 +Yuma,,TRIANGLE,AZ,3/16/2009 21:07 +Dunlap,,LIGHT,CA,3/16/2009 21:10 +Dubuque,,FORMATION,IA,3/16/2009 21:30 +Grand Rapids,,DISK,MI,3/17/2009 0:00 +Grand Rapids,,DISK,MI,3/17/2009 0:05 +Simi Valley,,TRIANGLE,CA,3/17/2009 11:00 +Lakewood,,,CO,3/17/2009 11:42 +Long Beach,,VARIOUS,CA,3/17/2009 19:59 +Largo,,CIGAR,FL,3/17/2009 20:00 +Riverside,,SPHERE,IL,3/17/2009 20:17 +Star Lake,,,NY,3/17/2009 20:35 +Grays,,FIREBALL,SC,3/17/2009 20:50 +Orland,,OVAL,CA,3/17/2009 21:00 +Wicomico,ORANGE,CIRCLE,VA,3/17/2009 21:14 +Eaton,,LIGHT,OH,3/17/2009 21:16 +Lexington,BLUE,OTHER,KY,3/17/2009 23:15 +Stanton,,TRIANGLE,KY,3/18/2009 6:45 +San Bernardino,,FORMATION,CA,3/18/2009 13:15 +Webster City,,LIGHT,IA,3/18/2009 20:13 +Eau Claire,ORANGE,LIGHT,WI,3/18/2009 20:30 +Lexington,,FORMATION,NC,3/18/2009 22:18 +Knoxville,,LIGHT,TN,3/19/2009 1:20 +Burlington,,TRIANGLE,CT,3/19/2009 6:15 +Waukee,ORANGE,,IA,3/19/2009 6:20 +Rapid City,,LIGHT,SD,3/19/2009 12:22 +Bandera,,FLASH,TX,3/19/2009 21:00 +Loogootee,,FORMATION,IN,3/19/2009 21:00 +Valrico,,TRIANGLE,FL,3/19/2009 22:00 +Mishawaka,,TRIANGLE,IN,3/19/2009 23:00 +Grand Blanc,,TRIANGLE,MI,3/19/2009 23:05 +Mason,,TRIANGLE,WV,3/19/2009 23:43 +Tacoma,,CIRCLE,WA,3/20/2009 0:00 +Tacoma,,CIRCLE,WA,3/20/2009 0:00 +Hendersonville,,FIREBALL,NC,3/20/2009 2:30 +Chattanooga,,SPHERE,TN,3/20/2009 3:00 +Andalusia,,DISK,AL,3/20/2009 3:30 +Morganton,,,NC,3/20/2009 5:00 +Deming,,OTHER,NM,3/20/2009 10:40 +Oak Forest,,SPHERE,IL,3/20/2009 12:00 +Butler,,LIGHT,MO,3/20/2009 17:00 +Dupont,,SPHERE,WA,3/20/2009 19:00 +Seattle,,FORMATION,WA,3/20/2009 21:00 +Phoenix,,TRIANGLE,AZ,3/20/2009 21:30 +Harrisville,RED GREEN,TRIANGLE,MS,3/20/2009 21:45 +Seattle,,TRIANGLE,WA,3/20/2009 22:00 +Dardanelle,YELLOW,LIGHT,AR,3/20/2009 22:45 +San Francisco,,LIGHT,CA,3/20/2009 23:00 +Portland,,LIGHT,OR,3/20/2009 23:30 +San Diego,BLUE,CIRCLE,CA,3/21/2009 0:40 +Columbus,,,GA,3/21/2009 2:30 +Windsor,,VARIOUS,VT,3/21/2009 3:30 +Houston,,,TX,3/21/2009 6:36 +Carnsville,,FIREBALL,GA,3/21/2009 10:29 +Newark,RED ORANGE,LIGHT,OH,3/21/2009 12:00 +Majenica,,OTHER,IN,3/21/2009 14:37 +Bakersfield,,OVAL,CA,3/21/2009 17:00 +Randolph,,SPHERE,NJ,3/21/2009 19:43 +Hillsboro,,LIGHT,OR,3/21/2009 20:00 +McMurray,,VARIOUS,PA,3/21/2009 20:30 +San Diego,,CIRCLE,CA,3/21/2009 22:00 +Riverton,,CIRCLE,UT,3/21/2009 23:59 +Riverton,,OTHER,UT,3/21/2009 23:59 +Wilmington,,CONE,NC,3/22/2009 0:00 +Copperas Cove,,TRIANGLE,TX,3/22/2009 11:30 +Phoenix,,DISK,AZ,3/22/2009 13:30 +Yakima,,VARIOUS,WA,3/22/2009 18:30 +Loveland,,CROSS,CO,3/22/2009 19:50 +Vestal,,FORMATION,NY,3/22/2009 20:51 +Londonderry,,,NH,3/22/2009 21:00 +Sault Ste. Marie,,CIRCLE,MI,3/22/2009 21:00 +Allentown,,,PA,3/22/2009 23:54 +Long Beach,,TRIANGLE,CA,3/23/2009 4:00 +Tucson,ORANGE,OVAL,AZ,3/23/2009 8:00 +Denver,,LIGHT,CO,3/23/2009 8:30 +Morgantown,,DISK,WV,3/23/2009 9:50 +South Zanesville,,SPHERE,OH,3/23/2009 10:30 +Interstate 8,,FLASH,AZ,3/23/2009 20:00 +Surfside Beach,YELLOW,OTHER,SC,3/23/2009 20:00 +Fairfield,,,CT,3/23/2009 21:00 +Canaan,RED BLUE,CIGAR,NH,3/23/2009 22:00 +Jonestown,,FORMATION,PA,3/24/2009 0:00 +Coral Springs,,CIRCLE,FL,3/24/2009 4:36 +Johnstown,,LIGHT,PA,3/24/2009 6:00 +Montevallo,RED,TRIANGLE,AL,3/24/2009 20:26 +Oakley,,TRIANGLE,KS,3/24/2009 21:30 +Sand Springs,,OTHER,OK,3/24/2009 21:40 +La Palma,,LIGHT,CA,3/25/2009 3:43 +Cataqua,,TRIANGLE,PA,3/25/2009 8:00 +Salem,,FORMATION,VA,3/25/2009 14:00 +Medina Lake,,OVAL,TX,3/25/2009 17:00 +Seattle,,,WA,3/25/2009 19:00 +Payson,,LIGHT,AZ,3/25/2009 19:37 +Marina,,FLASH,CA,3/25/2009 22:00 +Seattle,,,WA,3/25/2009 22:00 +Berkeley,,FORMATION,CA,3/25/2009 22:45 +Santa Clara,,,CA,3/26/2009 9:25 +Ventura,,FORMATION,CA,3/26/2009 11:00 +Streetsboro,,CIRCLE,OH,3/26/2009 20:00 +Wilbraham,,OVAL,MA,3/26/2009 21:00 +Mills River,,FORMATION,NC,3/26/2009 21:15 +Chatsworth,RED,CIRCLE,GA,3/26/2009 21:45 +Maple Shade,,,NJ,3/27/2009 5:30 +Sierra Vista,,DISK,AZ,3/27/2009 13:30 +Glendale,,,AZ,3/27/2009 14:15 +Las Vegas,,FORMATION,NV,3/27/2009 21:30 +Shelly,RED BLUE,OTHER,MN,3/27/2009 21:40 +Perris,,TRIANGLE,CA,3/28/2009 0:00 +Roseville,,FORMATION,CA,3/28/2009 2:00 +Sacramento,,VARIOUS,CA,3/28/2009 9:28 +Columbia,,FIREBALL,SC,3/28/2009 11:45 +Los Angeles,,,CA,3/28/2009 17:00 +Winston,,FIREBALL,NM,3/28/2009 21:30 +East Wenatchee,,CYLINDER,WA,3/28/2009 21:45 +Santa Rosa,,,CA,3/28/2009 21:45 +Simi Valley,,,CA,3/28/2009 21:45 +Sedalia,,TRIANGLE,MO,3/28/2009 23:00 +Santa Cruz,,TRIANGLE,CA,3/28/2009 23:10 +Sheridan,,FLASH,IN,3/29/2009 9:30 +Bradley,,FLASH,IL,3/29/2009 19:45 +Royersford,,VARIOUS,PA,3/29/2009 20:00 +Wenatchee,,LIGHT,WA,3/29/2009 20:00 +Bloomfield,,LIGHT,MO,3/29/2009 21:00 +Annapolis,,CIRCLE,MD,3/29/2009 21:40 +South Hill,,FIREBALL,VA,3/29/2009 21:44 +Richmond,,SPHERE,VA,3/29/2009 21:45 +Virginia Beach,BLUE,SPHERE,VA,3/29/2009 21:45 +White Lake,GREEN,FIREBALL,NC,3/29/2009 21:45 +Virginia Beach,,FIREBALL,VA,3/29/2009 21:50 +Astoria,,LIGHT,OR,3/29/2009 22:00 +Norfolk,,LIGHT,VA,3/29/2009 22:00 +Gila Bend,,SPHERE,AZ,3/30/2009 0:00 +Crestwood,,TRIANGLE,IL,3/30/2009 6:00 +Kernersville,,RECTANGLE,NC,3/30/2009 7:52 +Alton,,CIRCLE,IL,3/30/2009 11:30 +Buda,,EGG,TX,3/30/2009 13:55 +Connersville,BLUE,OTHER,IN,3/30/2009 19:55 +Rockford,,SPHERE,MI,3/30/2009 20:45 +Truth or Consequences,,LIGHT,NM,3/30/2009 22:00 +Louisville,,TRIANGLE,KY,3/30/2009 23:25 +Dudley,,CIRCLE,MA,3/30/2009 23:50 +New York City,GREEN,,NY,3/31/2009 0:11 +Kramer,,FORMATION,CA,3/31/2009 1:00 +Lansing,,LIGHT,MI,3/31/2009 1:25 +Tujunga,,FORMATION,CA,3/31/2009 2:00 +Perth Amboy,,EGG,NJ,3/31/2009 10:15 +Muenster,,EGG,TX,3/31/2009 12:30 +Storrs,,LIGHT,CT,3/31/2009 19:50 +Mesa,,,AZ,3/31/2009 20:00 +Washington,,SPHERE,ME,3/31/2009 20:00 +Sacramento,,LIGHT,CA,3/31/2009 22:00 +Fairbanks,,LIGHT,AK,3/31/2009 23:00 +Boulder,,SPHERE,CO,4/1/2009 1:15 +Frankfort,,TRIANGLE,IL,4/1/2009 18:50 +Columbia,,,MO,4/1/2009 19:30 +Clovis,,FORMATION,CA,4/1/2009 19:37 +Apache Junction,,,AZ,4/1/2009 20:00 +Frankfort Square,,TRIANGLE,IL,4/1/2009 20:00 +Cumming,RED,DISK,GA,4/1/2009 20:24 +Gainesville,,VARIOUS,FL,4/1/2009 20:30 +Royal Palm Beach,,FORMATION,FL,4/1/2009 21:04 +Kosciusko,,TRIANGLE,MS,4/1/2009 23:40 +Woodside,,OVAL,NY,4/2/2009 11:30 +Jackson,,OTHER,OH,4/2/2009 21:00 +McCook,RED,,NE,4/2/2009 21:17 +Anahuac,,CYLINDER,TX,4/2/2009 21:30 +Stockbridge,,LIGHT,MA,4/2/2009 22:40 +Plymouth,,,PA,4/3/2009 0:00 +Durham,,DISK,NC,4/3/2009 1:00 +Norfolk,,LIGHT,MA,4/3/2009 13:45 +Catonsville,,SPHERE,MD,4/3/2009 14:30 +Leitchfield,,CIRCLE,KY,4/3/2009 18:00 +Inverness,,FIREBALL,FL,4/3/2009 20:30 +Sumrall,,SPHERE,MS,4/3/2009 20:30 +Saint Augustine Beach,,SPHERE,FL,4/3/2009 21:35 +Marietta,,SPHERE,GA,4/4/2009 12:20 +Brandenburg,,,KY,4/4/2009 12:32 +Bristol,,CIGAR,CT,4/4/2009 15:20 +Pilot Rock,,OVAL,NC,4/4/2009 17:00 +East Berlin,,OVAL,PA,4/4/2009 18:06 +St. Augustine,,LIGHT,FL,4/4/2009 20:00 +Flagstaff,ORANGE,LIGHT,AZ,4/4/2009 21:00 +Lawrenceville,,SPHERE,GA,4/4/2009 21:20 +Cincinnati,ORANGE,LIGHT,OH,4/4/2009 22:05 +Oceanside,,LIGHT,CA,4/4/2009 22:30 +Horsham,,TRIANGLE,PA,4/4/2009 23:00 +Greensboro,,FIREBALL,NC,4/4/2009 23:30 +Santa Rosa,,LIGHT,CA,4/4/2009 23:45 +Webster,,LIGHT,MN,4/4/2009 23:59 +Chesterfield,,,MO,4/5/2009 0:15 +Clarksville,RED GREEN,CIGAR,MD,4/5/2009 2:45 +Paw Paw,,OVAL,WV,4/5/2009 4:30 +Cedar Park,BLUE,DISK,TX,4/5/2009 16:20 +Wilmington,,SPHERE,CA,4/5/2009 17:00 +Monmouth Beach,RED,LIGHT,NJ,4/5/2009 20:00 +Des Moines,BLUE,OVAL,WA,4/5/2009 21:00 +Champaign,GREEN,TRIANGLE,IL,4/5/2009 22:08 +Pensacola,,TRIANGLE,FL,4/6/2009 1:02 +Nashville,,LIGHT,TN,4/6/2009 9:15 +Bridgeton,,DISK,MO,4/6/2009 13:15 +Indianapolis,,TRIANGLE,IN,4/6/2009 18:10 +Clive,,SPHERE,IA,4/6/2009 21:00 +Nashville,,OVAL,TN,4/6/2009 21:15 +Arlington,RED BLUE,OTHER,WA,4/6/2009 22:30 +Carson,,OTHER,CA,4/6/2009 22:30 +Austin,,CIRCLE,TX,4/7/2009 0:00 +Austin,,,TX,4/7/2009 18:50 +Daytona Beach,BLUE,OVAL,FL,4/7/2009 21:01 +Vero Beach,GREEN,LIGHT,FL,4/7/2009 21:42 +Tampa,GREEN,SPHERE,FL,4/7/2009 21:45 +Lorida,,SPHERE,FL,4/7/2009 22:10 +Abilene,,TRIANGLE,TX,4/7/2009 22:30 +Las Vegas,,FORMATION,NV,4/7/2009 22:30 +Jacksonville Beach,,LIGHT,FL,4/7/2009 23:20 +Fort Sumner,,LIGHT,NM,4/8/2009 5:00 +Oklahoma City,,,OK,4/8/2009 14:50 +Fayetteville,,,AR,4/8/2009 20:31 +Santa Barbara,,,CA,4/8/2009 21:10 +Pawleys Island,ORANGE,,NC,4/8/2009 21:30 +Toledo,,CIRCLE,OH,4/8/2009 21:55 +Bonita Springs,,DISK,FL,4/8/2009 22:00 +Holden Beach,ORANGE,LIGHT,NC,4/8/2009 22:00 +St. Davids,,TRIANGLE,PA,4/8/2009 22:50 +Mount Vernon,,TRIANGLE,WA,4/9/2009 2:00 +Melbrook,,OTHER,NY,4/9/2009 3:20 +Charlotte,,CYLINDER,NC,4/9/2009 8:12 +Charlotte,BLUE,CYLINDER,NC,4/9/2009 8:12 +Lake Worth,,OVAL,FL,4/9/2009 20:13 +Pawleys Island,RED,,NC,4/9/2009 20:45 +Brainerd,,DISK,MN,4/9/2009 21:30 +Calcutta,,CIRCLE,OH,4/9/2009 22:45 +New York City,,,NY,4/10/2009 2:23 +Orlando,BLUE,LIGHT,FL,4/10/2009 5:50 +Everett,,CIRCLE,MA,4/10/2009 8:30 +Orlando,,TRIANGLE,FL,4/10/2009 11:34 +Lake Charles,,LIGHT,LA,4/10/2009 13:00 +Ramsey,,TEARDROP,MN,4/10/2009 21:30 +Dunellen,,CIRCLE,NJ,4/10/2009 23:00 +Bernallilo,,CONE,NM,4/10/2009 23:50 +Baskerville,,LIGHT,VA,4/11/2009 0:00 +Countryside,,OTHER,IL,4/11/2009 10:38 +Bismarck,,DISK,ND,4/11/2009 11:20 +Los Angeles,,TEARDROP,CA,4/12/2009 9:30 +Arcadia,,CYLINDER,CA,4/12/2009 10:15 +Grand Rapids,,SPHERE,MI,4/13/2009 7:30 +San Antonio,,OTHER,TX,4/13/2009 14:00 +Franklin,RED GREEN,LIGHT,NJ,4/13/2009 22:00 +Shepherd,,TRIANGLE,TX,4/13/2009 22:50 +Aubrey,,LIGHT,TX,4/13/2009 23:15 +Kansas City,,OVAL,MO,4/14/2009 21:00 +Tacoma,,,WA,4/14/2009 22:45 +Tulsa,,TRIANGLE,OK,4/15/2009 1:00 +Montpelier,,CROSS,ID,4/15/2009 12:00 +Tampa,,CIRCLE,FL,4/15/2009 15:51 +Jefferson,,EGG,GA,4/15/2009 16:00 +Leesport,,DISK,PA,4/15/2009 20:00 +Encinitas,RED,SPHERE,CA,4/15/2009 21:09 +Eaugalle,,CYLINDER,WI,4/15/2009 21:30 +Eaugalle,,DIAMOND,WI,4/15/2009 21:30 +Newark,,TRIANGLE,CA,4/15/2009 23:00 +Richmond,,LIGHT,VA,4/15/2009 23:00 +Hermiston,,TRIANGLE,OR,4/16/2009 2:00 +Hampden,,SPHERE,MA,4/16/2009 8:55 +Fenton,,CROSS,MI,4/16/2009 11:00 +Clarks Summit,RED,,PA,4/16/2009 11:26 +Summersville,,CYLINDER,WV,4/16/2009 15:00 +St. Augustine,,SPHERE,FL,4/16/2009 17:00 +Greenwich,,CYLINDER,CT,4/16/2009 17:25 +Triplet,,,NC,4/16/2009 20:30 +Somerviller,,SPHERE,MA,4/16/2009 20:53 +Las Vegas,,CIGAR,NV,4/16/2009 21:45 +Oak Hill,,,OH,4/16/2009 21:45 +Toledo,,OTHER,OH,4/16/2009 21:45 +Chillicothe,ORANGE,VARIOUS,OH,4/16/2009 21:55 +Fremont,,LIGHT,IN,4/16/2009 22:00 +Newark,RED,LIGHT,OH,4/16/2009 23:10 +Hernando,,RECTANGLE,MS,4/16/2009 23:30 +Bossier City,,TRIANGLE,LA,4/17/2009 0:45 +Santa Barbara,,TRIANGLE,CA,4/17/2009 0:47 +Isla Vista,,TRIANGLE,CA,4/17/2009 1:00 +Orono,ORANGE,TRIANGLE,ME,4/17/2009 2:45 +Maryville,,LIGHT,TN,4/17/2009 6:22 +York,BLUE,LIGHT,PA,4/17/2009 6:30 +Wilhoit,,LIGHT,AZ,4/17/2009 11:00 +Murrells Inlet,,FLASH,SC,4/17/2009 20:00 +Lavalette,,CIRCLE,WV,4/17/2009 21:20 +Lake Villa,,RECTANGLE,IL,4/17/2009 21:30 +Yakima,,,WA,4/17/2009 21:30 +Nashville,,OVAL,NC,4/17/2009 22:35 +Falls Church,,CIRCLE,VA,4/17/2009 23:15 +Rincon,,TRIANGLE,GA,4/18/2009 0:03 +Holland,ORANGE,RECTANGLE,MI,4/18/2009 3:30 +Rodanthe,,,NC,4/18/2009 5:00 +Wichita,GREEN,TRIANGLE,KS,4/18/2009 15:23 +Oxnard,,OTHER,CA,4/18/2009 17:00 +El Paso,,OVAL,TX,4/18/2009 19:30 +Tucson,,FLASH,AZ,4/18/2009 20:00 +Portland,,CHEVRON,OR,4/18/2009 20:13 +Holiday,RED,,FL,4/18/2009 20:33 +Hemet,,LIGHT,CA,4/18/2009 21:00 +Seminole,,TRIANGLE,FL,4/18/2009 21:00 +Seminole,,,FL,4/18/2009 22:45 +East Lansing,,OVAL,MI,4/19/2009 0:00 +Dover,,VARIOUS,DE,4/19/2009 4:00 +New Orleans,,RECTANGLE,LA,4/19/2009 5:22 +Sulphur Springs,,DISK,TX,4/19/2009 9:00 +Manhasset,,TRIANGLE,NY,4/19/2009 9:35 +Tucson,,FLASH,AZ,4/19/2009 19:45 +Methuen,ORANGE,OVAL,MA,4/19/2009 20:30 +Sun Valley,,LIGHT,CA,4/19/2009 20:40 +East Derry,RED,TRIANGLE,NH,4/19/2009 20:45 +Salamanca,ORANGE,FIREBALL,NY,4/19/2009 20:55 +Porterville,,CIRCLE,CA,4/19/2009 21:10 +Ontario,ORANGE,CIRCLE,CA,4/19/2009 21:35 +Oak Harbor,,,WA,4/19/2009 22:10 +Modesto,,LIGHT,CA,4/19/2009 22:30 +Campbell,,LIGHT,CA,4/19/2009 22:45 +Durham,,TRIANGLE,NC,4/20/2009 0:00 +Burlington,,FORMATION,VT,4/20/2009 1:02 +Alpharetta,,RECTANGLE,GA,4/20/2009 1:30 +Graettinger,,OTHER,IA,4/20/2009 4:55 +Grand Prairie,,CIRCLE,TX,4/20/2009 6:00 +Houston,,CIGAR,TX,4/20/2009 6:30 +Greenwich Township,,CYLINDER,OH,4/20/2009 10:20 +Continental Divide,,OTHER,NM,4/20/2009 11:00 +Fort Collins,,DISK,CO,4/20/2009 14:00 +Waco,,EGG,TX,4/20/2009 15:00 +Grand Blanc,,LIGHT,MI,4/20/2009 18:30 +Las Cruces,,FIREBALL,NM,4/20/2009 18:35 +Tucson,,FLASH,AZ,4/20/2009 19:38 +Kennewick,,VARIOUS,WA,4/20/2009 21:00 +Harrington,,LIGHT,WA,4/20/2009 21:34 +Arlington,RED BLUE,CIRCLE,TX,4/20/2009 22:00 +Moses Lake,,OTHER,WA,4/20/2009 23:30 +Colorado Springs,,TRIANGLE,CO,4/21/2009 2:05 +Shawnee,,CIRCLE,OK,4/21/2009 4:30 +Columbia,,LIGHT,MO,4/21/2009 5:30 +New York City,,CYLINDER,NY,4/21/2009 9:05 +Dunedin,,TRIANGLE,FL,4/21/2009 11:20 +Santa Barbara,,SPHERE,CA,4/21/2009 20:15 +Wilmington,,TRIANGLE,CA,4/21/2009 20:45 +Gaithersburg,,CIRCLE,MD,4/21/2009 21:25 +Albuquerque,,TEARDROP,NM,4/21/2009 21:40 +El Cajon,,TRIANGLE,CA,4/21/2009 21:40 +Embarrass,,LIGHT,MN,4/21/2009 21:40 +Long Beach,,LIGHT,CA,4/22/2009 4:30 +Brookings,,LIGHT,OR,4/22/2009 5:38 +Wausau,RED GREEN,VARIOUS,WI,4/22/2009 10:20 +West Chester,,CIGAR,PA,4/22/2009 16:00 +West Chester,,CIGAR,PA,4/22/2009 16:00 +Radcliff,ORANGE,VARIOUS,KY,4/22/2009 21:00 +Saline,,LIGHT,MI,4/22/2009 21:10 +Downingtown,,FIREBALL,PA,4/22/2009 21:30 +Lagrange,,TRIANGLE,IN,4/22/2009 22:00 +Columbus,,SPHERE,OH,4/23/2009 13:45 +Cranston,,DISK,RI,4/23/2009 19:10 +Las Vegas,ORANGE,,NV,4/23/2009 21:00 +Miami,,CIRCLE,FL,4/23/2009 21:00 +Lake Charles,,TRIANGLE,LA,4/23/2009 21:05 +Shepherdsville,,LIGHT,KY,4/23/2009 21:30 +Martinsburg,,DIAMOND,WV,4/23/2009 21:35 +Fillmore,,TRIANGLE,IN,4/23/2009 23:24 +Scranton,,OVAL,SC,4/24/2009 0:00 +Palm Bay,,CIGAR,FL,4/24/2009 0:12 +Richmond,,LIGHT,VT,4/24/2009 0:12 +Gainesville,RED,TRIANGLE,FL,4/24/2009 2:20 +Kent,ORANGE,SPHERE,WA,4/24/2009 4:14 +Portland,,SPHERE,ME,4/24/2009 4:58 +Hartwell,,OVAL,GA,4/24/2009 6:30 +Fox River Grove,,TRIANGLE,IL,4/24/2009 10:30 +Arlington,,SPHERE,VA,4/24/2009 17:45 +Glendale,,TRIANGLE,AZ,4/24/2009 18:00 +Wading River,,FORMATION,NY,4/24/2009 20:00 +San Francisco,,FLASH,CA,4/24/2009 21:25 +Dubuque,,,IA,4/24/2009 22:19 +Baker,,LIGHT,CA,4/24/2009 23:00 +Batavia,,TRIANGLE,OH,4/25/2009 1:00 +Palm Springs,,CIGAR,CA,4/25/2009 1:30 +Hendersonville,,OTHER,TN,4/25/2009 3:20 +Columbia,,OVAL,MO,4/25/2009 21:10 +Flushing,,DIAMOND,NY,4/25/2009 21:30 +Anaheim,,TRIANGLE,CA,4/25/2009 22:45 +Beaver Dam,RED GREEN,TEARDROP,AZ,4/25/2009 22:45 +Phoenix,,FIREBALL,AZ,4/25/2009 23:00 +Bullhead City,,OTHER,AZ,4/25/2009 23:03 +Corinth,,DIAMOND,ME,4/26/2009 10:00 +New York City,,CIRCLE,NY,4/26/2009 17:00 +Davenport,,OTHER,WA,4/26/2009 20:15 +Adrian,,TRIANGLE,MI,4/26/2009 21:30 +Roseburg,,SPHERE,OR,4/26/2009 22:00 +Bellevue,,CIGAR,WA,4/26/2009 22:15 +Rome,,CIRCLE,GA,4/27/2009 5:00 +Bradford,,OTHER,PA,4/27/2009 15:30 +High Point,ORANGE,FIREBALL,NC,4/27/2009 20:18 +Denver,,OTHER,CO,4/27/2009 21:00 +Easley,,LIGHT,SC,4/27/2009 21:00 +Marshall,,LIGHT,NC,4/27/2009 21:44 +Tuxedo,,OTHER,NC,4/27/2009 22:30 +Shelbyville,,LIGHT,TN,4/27/2009 22:35 +High Point,ORANGE,FIREBALL,NC,4/27/2009 23:00 +Thomasville,RED,FORMATION,NC,4/28/2009 0:29 +St. James,,CIRCLE,NY,4/28/2009 10:00 +Crestone,,FIREBALL,CO,4/28/2009 20:30 +Hopkinsville,,FIREBALL,KY,4/28/2009 21:45 +Phoenix,,LIGHT,AZ,4/28/2009 21:50 +Hamlet,,LIGHT,NC,4/28/2009 22:45 +Fremont,,FLASH,CA,4/28/2009 22:50 +Tucson,,FIREBALL,AZ,4/29/2009 19:20 +Seattle,,LIGHT,WA,4/29/2009 20:45 +Burlington,ORANGE,LIGHT,VT,4/29/2009 21:00 +Los Lunas,,CHEVRON,NM,4/29/2009 22:30 +Frisco,,,TX,4/30/2009 9:07 +Highland,,CIGAR,IN,4/30/2009 15:00 +College Place,,CIGAR,WA,4/30/2009 21:33 +Galt,,TRIANGLE,CA,4/30/2009 21:40 +Tacoma,,TRIANGLE,WA,4/30/2009 22:45 +Anaheim,,SPHERE,CA,4/30/2009 23:00 +Houston,,CIRCLE,TX,4/30/2009 23:00 +Roseville,,TRIANGLE,MI,5/1/2009 1:40 +Route 81,BLUE,OTHER,PA,5/1/2009 2:00 +Carson,,SPHERE,MS,5/1/2009 5:10 +Greenfield,GREEN,TRIANGLE,IL,5/1/2009 9:00 +Monongahela,,DISK,PA,5/1/2009 16:00 +Albuquerque,,LIGHT,NM,5/1/2009 19:30 +Cedarbrook,,OTHER,NJ,5/1/2009 20:00 +New Oxford,,CIRCLE,PA,5/1/2009 22:13 +Marysville,,TRIANGLE,WA,5/2/2009 0:15 +Ames,,LIGHT,IA,5/2/2009 3:30 +Leesburg,,FLASH,GA,5/2/2009 4:12 +Heidenheimer,,TRIANGLE,TX,5/2/2009 13:00 +Oakland,,RECTANGLE,CA,5/2/2009 18:35 +Grand Rapids,,,MI,5/2/2009 22:00 +Weston,,SPHERE,FL,5/2/2009 22:00 +Roanoke,GREEN,,VA,5/2/2009 23:00 +Rockford,,CIGAR,MI,5/3/2009 0:00 +Madras,,FLASH,OR,5/3/2009 4:30 +Pell City,,,AL,5/3/2009 20:51 +Honolulu,GREEN,SPHERE,HI,5/3/2009 20:55 +Naples,,CIRCLE,IL,5/4/2009 0:00 +South St. Louis,RED ORANGE YELLOW BLUE,OVAL,MO,5/4/2009 3:33 +Bridgewater,,FORMATION,MA,5/4/2009 20:30 +New Richmond,,DISK,WI,5/4/2009 23:00 +Cloverdale,ORANGE,OTHER,CA,5/5/2009 1:15 +Indianapolis,,RECTANGLE,IN,5/5/2009 8:46 +Miami,,TRIANGLE,FL,5/5/2009 10:00 +Boston,,SPHERE,MA,5/5/2009 16:20 +Spokane,,OTHER,WA,5/5/2009 18:00 +Johnsonville,,LIGHT,SC,5/5/2009 20:50 +Deltona,,LIGHT,FL,5/5/2009 21:00 +Pompano Beach,,TRIANGLE,FL,5/5/2009 22:00 +Butte,,,MT,5/5/2009 23:30 +Lindstrom,,LIGHT,MN,5/6/2009 0:45 +Lake Havasu City,ORANGE,LIGHT,AZ,5/6/2009 21:30 +Federal Way,,,WA,5/6/2009 21:36 +Mohawk Valley Mtns.,,LIGHT,AZ,5/6/2009 22:00 +Englewood,,LIGHT,FL,5/7/2009 9:20 +Avon,,DISK,CO,5/7/2009 20:00 +Eagle,,FLASH,CO,5/7/2009 21:30 +Santa Rosa,ORANGE,SPHERE,CA,5/8/2009 0:30 +Springfield,,FIREBALL,MO,5/8/2009 9:48 +Brookings,,OTHER,SD,5/8/2009 12:30 +"Las Vegas, Nevada, Airspace",,TRIANGLE,NV,5/8/2009 19:30 +Hartsel,,LIGHT,CO,5/8/2009 22:30 +Reedville,,,VA,5/8/2009 23:00 +Eagle River,,,AK,5/9/2009 2:30 +Sacramento,,VARIOUS,CA,5/9/2009 4:00 +Temecula,,CIRCLE,CA,5/9/2009 4:00 +Sacramento,,VARIOUS,CA,5/9/2009 4:30 +Reno,,OVAL,NV,5/9/2009 10:40 +,,FORMATION,CA,5/9/2009 15:45 +Tucson,,CIRCLE,AZ,5/9/2009 16:30 +Newport News,RED,TRIANGLE,VA,5/9/2009 21:00 +Bensalem,,FLASH,PA,5/9/2009 22:00 +Lake Stevens,,LIGHT,WA,5/9/2009 22:30 +Endicott,,LIGHT,NY,5/9/2009 23:45 +Seattle,,,WA,5/10/2009 0:00 +Hoboken,,CIRCLE,NJ,5/10/2009 0:15 +Tobay Beach,,CIRCLE,NY,5/10/2009 16:30 +St. Louis,,VARIOUS,MO,5/10/2009 19:30 +North Hollywood,,LIGHT,CA,5/10/2009 20:20 +Thibodaux,,LIGHT,LA,5/10/2009 21:00 +Milpitas,,SPHERE,CA,5/10/2009 21:29 +San Antonio,,CHEVRON,TX,5/10/2009 21:30 +Quincy,,LIGHT,CA,5/10/2009 22:02 +Mountain View,,FORMATION,CA,5/10/2009 22:30 +Powell,,OVAL,OH,5/11/2009 0:01 +Florissant,,FORMATION,MO,5/11/2009 4:30 +Port St. Lucie,,CYLINDER,FL,5/11/2009 14:04 +Florissant,,OTHER,MO,5/11/2009 20:11 +Sacramento,,CYLINDER,CA,5/11/2009 20:30 +Deltona,,LIGHT,FL,5/11/2009 22:30 +New Windsor,,CHEVRON,NY,5/11/2009 23:10 +Scarborough,,CIRCLE,ME,5/12/2009 0:00 +Salt Lake City,,DISK,UT,5/12/2009 2:30 +Morris,,LIGHT,IL,5/12/2009 3:30 +Apple Valley,,TRIANGLE,CA,5/12/2009 20:36 +New York City,,LIGHT,NY,5/12/2009 21:18 +Colebrook,,LIGHT,NH,5/12/2009 21:35 +Long Beach,RED,OVAL,MS,5/12/2009 22:45 +Vero,,OTHER,FL,5/13/2009 3:00 +Washington,,LIGHT,NC,5/13/2009 5:40 +Decatur,,CYLINDER,IN,5/13/2009 23:00 +Lemoore,,OTHER,CA,5/14/2009 2:00 +Fontana,,FORMATION,CA,5/14/2009 12:00 +San Francisco,,DISK,CA,5/14/2009 20:00 +San Jacinto,,VARIOUS,CA,5/14/2009 21:00 +Santa Barbara,,CHEVRON,CA,5/14/2009 21:00 +Santa Barbara,,TRIANGLE,CA,5/14/2009 21:00 +Sligo,,,PA,5/14/2009 21:45 +Tulsa,,CIGAR,OK,5/14/2009 22:02 +Hemet,,LIGHT,CA,5/14/2009 22:12 +Stanley,,LIGHT,NC,5/14/2009 22:23 +Austin,,SPHERE,TX,5/14/2009 23:15 +Bhopal,,RECTANGLE,TX,5/15/2009 0:00 +Huron,,LIGHT,SD,5/15/2009 0:00 +Osprey,BLUE,,FL,5/15/2009 0:00 +Willamina,,FORMATION,OR,5/15/2009 2:00 +Wabash,,LIGHT,IN,5/15/2009 3:00 +Lehigh,,LIGHT,OK,5/15/2009 4:45 +Lakewood Ranch,,OTHER,FL,5/15/2009 8:15 +Orangeburg,,TRIANGLE,NY,5/15/2009 15:00 +Dubuque,,CIRCLE,IA,5/15/2009 17:00 +Oak Shores Lake Berryessa,,LIGHT,CA,5/15/2009 20:00 +Roseville,GREEN,FIREBALL,CA,5/15/2009 20:33 +Loma Rica,GREEN,TEARDROP,CA,5/15/2009 20:40 +Santa Barbara,GREEN,LIGHT,CA,5/15/2009 21:05 +Longview,,,TX,5/15/2009 21:30 +Gilbert,,LIGHT,AZ,5/15/2009 21:50 +Livermore,,LIGHT,CA,5/15/2009 22:00 +Shawnee,,LIGHT,OK,5/15/2009 22:00 +Twisp,RED GREEN,CIRCLE,WA,5/15/2009 22:00 +Watertown,RED ORANGE,CIRCLE,CT,5/15/2009 22:00 +Malden,,OVAL,MO,5/15/2009 23:25 +Las Cruces,,CYLINDER,NM,5/16/2009 10:15 +Cascade Locks,,LIGHT,OR,5/16/2009 20:00 +Greenwater,BLUE,OVAL,WA,5/16/2009 22:30 +Kirkland,,VARIOUS,WA,5/16/2009 23:05 +Pensacola,BLUE,SPHERE,FL,5/17/2009 0:50 +Fargo,,OTHER,ND,5/17/2009 4:05 +Oakland,BLUE,LIGHT,CA,5/17/2009 9:57 +Jasper,,CIGAR,AL,5/17/2009 11:00 +Bend,,,OR,5/17/2009 13:00 +Fort Collins,,CIRCLE,CO,5/17/2009 15:30 +Carlsbad,,CYLINDER,NM,5/17/2009 19:00 +Las Cruces,,SPHERE,NM,5/17/2009 19:45 +Las Cruces,,CONE,NM,5/17/2009 20:00 +Las Cruces,,DIAMOND,NM,5/17/2009 20:31 +Bass Lake,,DISK,CA,5/17/2009 21:00 +Homer Glen,RED YELLOW,CIRCLE,IL,5/17/2009 21:00 +Newnan,BLUE,LIGHT,GA,5/17/2009 21:39 +Hampstead,,TRIANGLE,NC,5/17/2009 22:00 +Rapid City,,,SD,5/17/2009 23:30 +Richmond,,VARIOUS,VA,5/18/2009 4:18 +Pahrump,,FLASH,NV,5/18/2009 9:00 +Mesa,,DIAMOND,AZ,5/18/2009 11:45 +Alhambra,,FLASH,CA,5/18/2009 12:45 +New Cumberland,,LIGHT,WV,5/18/2009 14:23 +Wickenburg,,SPHERE,AZ,5/18/2009 16:30 +Phoenix,,LIGHT,AZ,5/18/2009 18:00 +Avondale,,LIGHT,AZ,5/18/2009 18:30 +Phoenix,,SPHERE,AZ,5/18/2009 19:00 +Litchfield Park,,TEARDROP,AZ,5/18/2009 19:20 +Surprise,,CIRCLE,AZ,5/18/2009 19:30 +Lake Havasu City,,CIRCLE,AZ,5/18/2009 19:32 +Golden Valley,,CONE,AZ,5/18/2009 19:45 +Laughlin,,CIRCLE,NV,5/18/2009 19:50 +Vassar,,,MI,5/18/2009 21:30 +Harleysville,RED,TRIANGLE,PA,5/18/2009 22:00 +Rapid City,,TRIANGLE,SD,5/18/2009 22:00 +Berlin,,CIRCLE,NJ,5/19/2009 9:20 +Holyoke,,VARIOUS,MA,5/19/2009 10:40 +Bullhead City,RED,RECTANGLE,AZ,5/19/2009 20:00 +Villa Rica,,SPHERE,GA,5/19/2009 22:00 +Sheffield Lake,,FLASH,OH,5/19/2009 22:10 +Marietta,,FORMATION,OH,5/19/2009 23:00 +Greeneville,,LIGHT,TN,5/19/2009 23:12 +Springfield,,CIRCLE,NE,5/19/2009 23:45 +Highgate,,CIGAR,VT,5/20/2009 1:34 +Sharon,,CIRCLE,PA,5/20/2009 3:00 +Christmas Valley,,OVAL,OR,5/20/2009 9:25 +New York City,,SPHERE,NY,5/20/2009 20:00 +New York City,GREEN,SPHERE,NY,5/20/2009 20:00 +Asheville,,DISK,NC,5/20/2009 20:30 +New Brighton,,RECTANGLE,MN,5/20/2009 20:30 +Raleigh,RED,TRIANGLE,NC,5/20/2009 21:15 +Madison,,SPHERE,WI,5/20/2009 22:00 +Lockport,,TRIANGLE,IL,5/20/2009 22:15 +Lisbon,,OVAL,ME,5/20/2009 22:30 +Allegheny State Park,,OVAL,NY,5/20/2009 23:00 +Harpersfield,,TEARDROP,NY,5/20/2009 23:00 +Pinkney,,LIGHT,MI,5/20/2009 23:00 +El Paso,,TRIANGLE,TX,5/21/2009 0:00 +Fredericksburg,,DISK,VA,5/21/2009 11:40 +Lynnwood,BLUE,SPHERE,WA,5/21/2009 20:45 +Bradley Beach,,CIRCLE,NJ,5/21/2009 21:00 +Vernon,,LIGHT,VT,5/21/2009 22:00 +Winterport,,FIREBALL,ME,5/21/2009 22:05 +Louisville,,LIGHT,KY,5/21/2009 23:20 +East Helena,,VARIOUS,MT,5/22/2009 4:30 +Lincoln Heights,,DISK,CA,5/22/2009 15:00 +Nags Head,,,NC,5/22/2009 21:30 +Lake Leland,,SPHERE,WA,5/22/2009 22:00 +Fort Lauderdale,,CIRCLE,FL,5/22/2009 23:00 +Cincinnati,ORANGE,TRIANGLE,OH,5/23/2009 11:18 +Grand Prairie,,SPHERE,TX,5/23/2009 17:15 +Vancouver,,,WA,5/23/2009 17:25 +Trenton,ORANGE,TRIANGLE,OH,5/23/2009 20:00 +Orting,,OTHER,WA,5/23/2009 20:38 +Zimmerman,ORANGE,CIRCLE,MN,5/23/2009 21:48 +Shelton,,LIGHT,WA,5/23/2009 21:50 +Mainville,,FIREBALL,OH,5/23/2009 21:55 +Clarks Summit,,LIGHT,PA,5/23/2009 22:00 +Las Cruces,,CIRCLE,NM,5/24/2009 2:15 +Savannah,,OTHER,GA,5/24/2009 4:00 +Amery,,,WI,5/24/2009 10:12 +Roxbury,,SPHERE,MA,5/24/2009 13:45 +Yakima,,DISK,WA,5/24/2009 15:00 +Phoenix,,CIRCLE,AZ,5/24/2009 17:00 +Katy,RED,,TX,5/24/2009 21:30 +Ypsilanti,,,MI,5/24/2009 21:30 +Lisbon,BLUE,OVAL,ME,5/24/2009 21:45 +Olympia,,LIGHT,WA,5/24/2009 21:55 +Milaca,,LIGHT,MN,5/24/2009 22:00 +Pennellville,,CIRCLE,NY,5/24/2009 22:00 +South Lebanon,,LIGHT,OH,5/24/2009 22:00 +Byron,,LIGHT,IL,5/24/2009 22:20 +Burkesville,,LIGHT,KY,5/24/2009 23:00 +Sussex,,LIGHT,NJ,5/24/2009 23:00 +Glendale,,FIREBALL,AZ,5/24/2009 23:35 +Tempe,,,AZ,5/25/2009 0:00 +Minneapolis,RED,LIGHT,MN,5/25/2009 0:45 +Grand Forks,,TRIANGLE,ND,5/25/2009 1:38 +Mesa,,SPHERE,AZ,5/25/2009 2:00 +Wikieup,,FLASH,AZ,5/25/2009 3:30 +Magnolia,,SPHERE,TX,5/25/2009 5:00 +Byram,,TRIANGLE,MS,5/25/2009 9:15 +Sharon,ORANGE,LIGHT,PA,5/25/2009 9:45 +Morongo Valley,,DISK,CA,5/25/2009 13:30 +Madison,,DISK,NJ,5/25/2009 14:00 +Anchorage,,DISK,AK,5/25/2009 20:00 +Goodlettsville,,CIRCLE,TN,5/25/2009 21:30 +Humble,,OTHER,TX,5/25/2009 22:00 +Humble,,OTHER,TX,5/25/2009 22:00 +Laredo,,OTHER,TX,5/25/2009 22:00 +Rapid City,,TRIANGLE,SD,5/25/2009 22:00 +Fombell,,LIGHT,PA,5/25/2009 22:05 +Lincoln,,OTHER,CA,5/26/2009 0:00 +Graham,,TRIANGLE,WA,5/26/2009 1:00 +Port Charlotte,ORANGE,LIGHT,FL,5/26/2009 1:00 +Oak Island,RED,LIGHT,NC,5/26/2009 21:00 +Valdosta,,,GA,5/26/2009 22:00 +Venice,,VARIOUS,LA,5/26/2009 22:00 +Milwaukie,,,OR,5/26/2009 23:05 +Gulf breeze,,OVAL,FL,5/27/2009 0:00 +Grand Junction,,CIRCLE,CO,5/27/2009 4:00 +Greensboro,,OVAL,NC,5/27/2009 8:25 +Myrtle Beach,,LIGHT,SC,5/27/2009 21:00 +Phoenix,,LIGHT,AZ,5/27/2009 21:40 +Los Padres National Forest,,LIGHT,CA,5/27/2009 22:00 +Myrtle Beach,,CIRCLE,SC,5/27/2009 22:00 +North Myrtle Beach,RED,CIRCLE,SC,5/27/2009 22:00 +Pawleys Island,,CIRCLE,SC,5/27/2009 22:00 +Surfside Beach,,,SC,5/27/2009 22:00 +Surfside Beach,RED,OTHER,SC,5/27/2009 22:00 +Myrtle Beach,,SPHERE,SC,5/27/2009 22:30 +El Paso,BLUE,TRIANGLE,TX,5/27/2009 23:00 +Farmington,,VARIOUS,NM,5/28/2009 0:00 +San Leandro,,,CA,5/28/2009 3:00 +El Rito,,LIGHT,NM,5/28/2009 4:00 +Gilbert,,OVAL,AZ,5/28/2009 5:45 +Gilbert,,CIRCLE,AZ,5/28/2009 7:10 +Cottonwood Heights,,CIRCLE,UT,5/28/2009 21:15 +Albuquerque,,LIGHT,NM,5/28/2009 21:30 +Albuquerque,,LIGHT,NM,5/28/2009 21:30 +Knoxville,,CIRCLE,TN,5/28/2009 21:45 +Crossville,,LIGHT,TN,5/28/2009 21:50 +Duluth,,CIRCLE,GA,5/28/2009 21:50 +Bethel Park,,OTHER,PA,5/28/2009 22:00 +Dallas,,,TX,5/28/2009 23:50 +North Bend,,DISK,WA,5/29/2009 10:00 +Washburn,,OTHER,TN,5/29/2009 15:00 +Jackson,,DISK,TN,5/29/2009 19:45 +Taylorsville,RED,,NC,5/29/2009 21:15 +Greeneville,,LIGHT,TN,5/29/2009 22:00 +Parkville,,DISK,MD,5/29/2009 23:03 +Plano,,,TX,5/30/2009 0:00 +Newark,,LIGHT,DE,5/30/2009 0:15 +Mccormick,,,SC,5/30/2009 1:00 +Greenville,,,NY,5/30/2009 2:30 +Charlottesville,,SPHERE,IN,5/30/2009 13:30 +Centennial,,DISK,CO,5/30/2009 16:48 +Smithfield,,CHEVRON,RI,5/30/2009 17:00 +Yardley,,OVAL,PA,5/30/2009 18:25 +Topeka,,TEARDROP,KS,5/30/2009 18:30 +Floyd,,SPHERE,VA,5/30/2009 20:00 +Columbus,,OTHER,NJ,5/30/2009 20:45 +Norman,RED,CIRCLE,OK,5/30/2009 21:40 +Erie,,FIREBALL,PA,5/30/2009 21:55 +Three Rivers,,LIGHT,TX,5/30/2009 22:00 +Steger,,FORMATION,IL,5/30/2009 23:00 +Olympia,,LIGHT,WA,5/31/2009 2:00 +Louisville,,SPHERE,KY,5/31/2009 14:00 +Lithia Springs,GREEN,SPHERE,GA,5/31/2009 15:00 +Ogden,,SPHERE,UT,5/31/2009 17:00 +Denver,ORANGE BLUE,DISK,CO,5/31/2009 18:00 +Randleman,,LIGHT,NC,5/31/2009 19:00 +Monroe,,OVAL,WA,5/31/2009 19:30 +Lacassine,,SPHERE,LA,5/31/2009 20:30 +Cincinnati,,SPHERE,OH,5/31/2009 21:39 +Fostoria,,TRIANGLE,OH,5/31/2009 21:40 +Grafton,,LIGHT,WV,5/31/2009 22:00 +Bloomington,,LIGHT,IL,5/31/2009 23:00 +Antioch,RED,FIREBALL,CA,6/1/2009 0:00 +Pomona,,LIGHT,CA,6/1/2009 0:30 +Gainesville,,LIGHT,VA,6/1/2009 1:30 +Berryville,,CHEVRON,AR,6/1/2009 2:00 +Villa Rica,,,GA,6/1/2009 2:00 +Pennellville,,CIRCLE,NY,6/1/2009 3:00 +Burbank,,LIGHT,CA,6/1/2009 5:30 +Acusnet,,OVAL,MA,6/1/2009 12:00 +Mesa,,OTHER,AZ,6/1/2009 18:30 +Grafton,RED,,WV,6/1/2009 20:00 +Farmersville,,OTHER,TX,6/1/2009 20:13 +Old Saybrook,,LIGHT,CT,6/1/2009 20:40 +Portales,,DISK,NM,6/1/2009 21:03 +Ruckersville,,LIGHT,VA,6/1/2009 22:00 +Hamilton,,LIGHT,MI,6/1/2009 23:00 +San Antonio,,LIGHT,TX,6/1/2009 23:00 +San Marcos,,TRIANGLE,TX,6/1/2009 23:30 +Dulce,,LIGHT,NM,6/2/2009 0:40 +Chatham,RED,CIRCLE,NJ,6/2/2009 1:30 +Tempe,,LIGHT,AZ,6/2/2009 13:00 +Canton,,OVAL,GA,6/2/2009 14:00 +Leburn,RED,TRIANGLE,KY,6/2/2009 16:45 +Tucson,,,AZ,6/2/2009 17:30 +New York City,,RECTANGLE,NY,6/2/2009 19:30 +Shrewsbury,,LIGHT,MA,6/2/2009 21:00 +Austin,,OVAL,TX,6/2/2009 22:30 +Texarkana,,TRIANGLE,TX,6/2/2009 22:31 +Jefferson,BLUE,TRIANGLE,TN,6/2/2009 23:00 +Williston,,OVAL,FL,6/2/2009 23:30 +Morristown,,LIGHT,TN,6/3/2009 0:00 +Alta Loma,,,CA,6/3/2009 3:00 +La Verne,,RECTANGLE,CA,6/3/2009 9:22 +Bagdad,YELLOW,LIGHT,AZ,6/3/2009 11:00 +Tucson,,OTHER,AZ,6/3/2009 17:30 +Bowie,RED,DISK,MD,6/3/2009 21:20 +Lacassine,,CIRCLE,LA,6/3/2009 22:30 +Hayden,,FORMATION,ID,6/3/2009 23:25 +Hayden,,OTHER,ID,6/3/2009 23:25 +San Antonio,,CIGAR,TX,6/4/2009 10:12 +Lacassine,,CIRCLE,LA,6/4/2009 21:30 +Visalia,,FORMATION,CA,6/4/2009 21:50 +Hartford,,TRIANGLE,CT,6/4/2009 22:00 +Chattanooga,BLUE,LIGHT,TN,6/4/2009 22:30 +Toledo,,CONE,OH,6/4/2009 22:30 +Santa Ana,,,CA,6/5/2009 0:00 +Henderson,,TRIANGLE,NV,6/5/2009 3:00 +Demarest,,TRIANGLE,NJ,6/5/2009 9:20 +Victoria,,LIGHT,TX,6/5/2009 14:10 +Los Angeles,,DISK,CA,6/5/2009 15:00 +Westlake,,SPHERE,LA,6/5/2009 21:00 +Advance,,SPHERE,NC,6/5/2009 21:16 +Elk Grove,,OTHER,CA,6/5/2009 22:00 +St. George,,SPHERE,WV,6/5/2009 23:00 +Winlock,,LIGHT,WA,6/5/2009 23:50 +Hollister,,CIRCLE,CA,6/6/2009 0:01 +Douglass,,FIREBALL,KS,6/6/2009 3:00 +Chicago Ridge,ORANGE,FIREBALL,IL,6/6/2009 9:15 +Massapequa,,CYLINDER,NY,6/6/2009 17:00 +Long Beach,,TRIANGLE,CA,6/6/2009 20:36 +Fort Myers Beach,RED ORANGE,LIGHT,FL,6/6/2009 21:30 +Boardman,ORANGE,,OH,6/6/2009 22:40 +Valley Cottage,,CIRCLE,NY,6/6/2009 23:00 +Van Nuys,,CIRCLE,CA,6/6/2009 23:00 +Cheyenne,,LIGHT,WY,6/7/2009 0:30 +Brooksville,,FIREBALL,FL,6/7/2009 2:00 +New York City,,FIREBALL,NY,6/7/2009 2:30 +Lacey Township,,SPHERE,NJ,6/7/2009 11:00 +Las Vegas,,OVAL,NV,6/7/2009 16:00 +Las Vegas,,SPHERE,NV,6/7/2009 19:50 +Garland,,TRIANGLE,TX,6/7/2009 20:20 +Independence,RED,LIGHT,KY,6/7/2009 21:30 +Virginia Beach,,LIGHT,VA,6/7/2009 23:30 +Providence,,TEARDROP,RI,6/8/2009 3:00 +West Bend,,LIGHT,WI,6/8/2009 10:00 +Wayne,,OTHER,NJ,6/8/2009 12:00 +Pineville,,LIGHT,LA,6/8/2009 21:30 +Manteca,,OTHER,CA,6/8/2009 21:45 +Van Buren,GREEN,FLASH,AR,6/8/2009 22:00 +Los Angeles,,CIRCLE,CA,6/8/2009 22:30 +La Mirada,,LIGHT,CA,6/8/2009 22:43 +McKees Rocks,,OTHER,PA,6/8/2009 23:45 +McKinney,,OVAL,TX,6/9/2009 0:30 +Auburn,,FORMATION,WA,6/9/2009 12:05 +Alexandria,ORANGE,,LA,6/9/2009 20:00 +Pittsburgh,,LIGHT,PA,6/9/2009 20:40 +Parker,,,AZ,6/9/2009 21:00 +Stilwell,,VARIOUS,KS,6/9/2009 21:30 +Fallbrook,RED,OTHER,CA,6/9/2009 22:00 +North Carolina,,OTHER,NC,6/9/2009 22:00 +Perryopolis,,OTHER,PA,6/9/2009 22:20 +Smock,BLUE,FORMATION,PA,6/9/2009 22:20 +Huntington,,FIREBALL,WV,6/9/2009 23:00 +Bothell,,LIGHT,WA,6/9/2009 23:59 +Paradise Valley,,CIRCLE,AZ,6/10/2009 1:10 +Soquel,,TRIANGLE,CA,6/10/2009 11:03 +Waltonville,,CIRCLE,IL,6/10/2009 14:30 +Mountlake Terrace,,LIGHT,WA,6/10/2009 16:00 +Shoreline,,LIGHT,WA,6/10/2009 17:55 +Flagstaff,,TRIANGLE,AZ,6/10/2009 19:05 +Lakewood,,LIGHT,CA,6/10/2009 19:30 +Lacassine,,SPHERE,LA,6/10/2009 20:30 +Roswell,,SPHERE,NM,6/10/2009 21:10 +Penokee,,CIRCLE,KS,6/10/2009 21:50 +Fort Chiswell,,TRIANGLE,VA,6/10/2009 23:20 +Hayden,RED,TRIANGLE,ID,6/11/2009 0:30 +Phoenix,,SPHERE,AZ,6/11/2009 19:30 +Tempe,,TEARDROP,AZ,6/11/2009 19:30 +Mesa,,CONE,AZ,6/11/2009 19:40 +Tempe,,SPHERE,AZ,6/11/2009 20:00 +Seattle,,OVAL,WA,6/11/2009 20:13 +Punta Gorda,RED,OVAL,FL,6/11/2009 21:00 +Alexandria,ORANGE,FLASH,LA,6/11/2009 21:30 +Warrenville,RED,,IL,6/11/2009 21:45 +Wellington,,,WA,6/11/2009 22:58 +Hayden,RED,TRIANGLE,ID,6/12/2009 0:47 +Palm Coast,,LIGHT,FL,6/12/2009 2:00 +Columbia,,DISK,MO,6/12/2009 4:30 +Phoenix,,OTHER,AZ,6/12/2009 7:44 +North Myrtle Beach,,DISK,SC,6/12/2009 10:00 +Alto,,OTHER,GA,6/12/2009 15:30 +Westbury,BLUE,LIGHT,NY,6/12/2009 16:00 +Butler,,,MO,6/12/2009 20:30 +Lexington,,LIGHT,SC,6/12/2009 21:00 +West Hollywood,,LIGHT,CA,6/12/2009 21:00 +Daytona Beach,,LIGHT,FL,6/12/2009 21:33 +Tulsa,,,OK,6/12/2009 22:50 +Fort Collins,GREEN BLUE,LIGHT,CO,6/12/2009 23:00 +Cooperstown,,LIGHT,NY,6/12/2009 23:30 +Iselin,,LIGHT,NJ,6/13/2009 0:40 +Columbus,,FORMATION,OH,6/13/2009 6:30 +East Bethel,,SPHERE,ME,6/13/2009 16:00 +Franklin,,LIGHT,KY,6/13/2009 19:00 +Doswell,,CIRCLE,VA,6/13/2009 19:30 +Waterloo,,OTHER,NE,6/13/2009 20:15 +Indian Rocks beach,,DISK,FL,6/13/2009 21:00 +Indian Rocks beach,,DISK,FL,6/13/2009 21:00 +Springfield,RED ORANGE,LIGHT,OR,6/13/2009 21:00 +Marengo,,FIREBALL,IL,6/13/2009 21:30 +Springfield,,FIREBALL,IL,6/13/2009 23:30 +Sulphur,,LIGHT,LA,6/13/2009 23:30 +Ottawa,,EGG,IL,6/14/2009 0:00 +Sheridan,,TRIANGLE,IN,6/14/2009 0:00 +Monticello,,VARIOUS,KY,6/14/2009 0:30 +Elko,,LIGHT,NV,6/14/2009 1:00 +Sugarcreek Township,ORANGE,LIGHT,OH,6/14/2009 1:00 +Surprise,,CIRCLE,AZ,6/14/2009 2:00 +Miami,,OTHER,FL,6/14/2009 6:45 +Las Vegas,,OTHER,NV,6/14/2009 9:15 +Oakland,,LIGHT,CA,6/14/2009 17:30 +Latrobe,,SPHERE,PA,6/14/2009 20:15 +San Francisco,,OVAL,CA,6/14/2009 21:00 +Kensington,,LIGHT,CT,6/14/2009 21:32 +Meadville,,,PA,6/14/2009 22:00 +Livingston,,LIGHT,MT,6/14/2009 22:10 +Gainesville,,LIGHT,VA,6/14/2009 23:00 +Woodbury,,CIRCLE,MN,6/14/2009 23:35 +Clark,,OTHER,WA,6/15/2009 15:00 +Emeryville,,CIGAR,CA,6/15/2009 22:00 +Gravette,,OTHER,AR,6/15/2009 22:00 +Swannanoa,BLUE,LIGHT,NC,6/15/2009 22:00 +Escondido,GREEN,TEARDROP,CA,6/15/2009 23:15 +Barstow,YELLOW,OVAL,CA,6/16/2009 1:15 +Bellingham,,LIGHT,WA,6/16/2009 2:00 +Centennial,,CHEVRON,CO,6/16/2009 10:55 +Modesto,,FLASH,CA,6/16/2009 12:00 +Huntington,BLUE,CIRCLE,NY,6/16/2009 17:00 +Pensacola,,VARIOUS,FL,6/16/2009 21:15 +Martinez,RED,LIGHT,CA,6/16/2009 22:30 +S. Charleston,,TEARDROP,OH,6/17/2009 18:50 +Salem,,CHEVRON,OR,6/17/2009 22:00 +West Union,ORANGE,CIRCLE,OH,6/17/2009 22:00 +South Dennis,,OTHER,MA,6/17/2009 22:55 +Chicago,,OTHER,IL,6/17/2009 23:00 +North Myrtle Beach,,LIGHT,SC,6/17/2009 23:00 +North Myrtle Beach,,LIGHT,SC,6/17/2009 23:15 +Van Nuys,,CIRCLE,CA,6/18/2009 1:00 +Medford,,FLASH,OR,6/18/2009 12:30 +Arlington,,LIGHT,IA,6/18/2009 18:30 +Spokane,RED,SPHERE,WA,6/18/2009 21:20 +Cornwall-on-Hudson,RED YELLOW,,NY,6/18/2009 21:40 +Troy,,DIAMOND,MT,6/18/2009 21:42 +Houston,,TRIANGLE,TX,6/18/2009 22:00 +LaVale,,VARIOUS,MD,6/18/2009 22:24 +Custar,RED YELLOW,CIRCLE,OH,6/19/2009 1:00 +Azle,GREEN,FIREBALL,TX,6/19/2009 2:25 +Bermuda Dunes,,FIREBALL,CA,6/19/2009 3:45 +New York City,,CIGAR,NY,6/19/2009 8:44 +Saratoga,,OTHER,NY,6/19/2009 8:45 +Salt Lake City,,OTHER,UT,6/19/2009 9:15 +Hutchinson,RED,LIGHT,KS,6/19/2009 11:00 +Sand Springs,,CIGAR,OK,6/19/2009 15:00 +Whittier,,LIGHT,CA,6/19/2009 21:35 +Omaha,,VARIOUS,NE,6/19/2009 21:45 +Bridgeport,,,CT,6/19/2009 22:30 +New Smyrna Beach,,,FL,6/19/2009 22:30 +Dallas,RED GREEN,DISK,TX,6/19/2009 23:45 +Penn Valley,,FLASH,CA,6/20/2009 0:00 +Bakersfield,,OTHER,CA,6/20/2009 5:00 +Galesburg,,FORMATION,IL,6/20/2009 5:24 +Workey,,OTHER,ID,6/20/2009 10:00 +Canton,,CIRCLE,GA,6/20/2009 11:16 +Glen Mills,,DISK,PA,6/20/2009 16:00 +Luminary,,CROSS,TN,6/20/2009 17:00 +Gilroy,,SPHERE,CA,6/20/2009 19:00 +Roseville,,RECTANGLE,MI,6/20/2009 19:00 +Sioux City,,TRIANGLE,IA,6/20/2009 20:30 +Encino,,LIGHT,CA,6/20/2009 20:45 +Encino,BLUE,LIGHT,CA,6/20/2009 21:00 +Boulder,,LIGHT,CO,6/20/2009 21:17 +Detroit,,,MI,6/20/2009 23:00 +Arnold,,DISK,MO,6/20/2009 23:30 +Bayview,,FIREBALL,WA,6/20/2009 23:30 +Masontown,,LIGHT,WV,6/21/2009 0:00 +Franklin,,LIGHT,KY,6/21/2009 0:30 +Deptford,GREEN,SPHERE,NJ,6/21/2009 1:38 +Greenwood,,CYLINDER,IN,6/21/2009 1:50 +Copperas Cove,,OVAL,TX,6/21/2009 10:30 +Dana Point,ORANGE,SPHERE,CA,6/21/2009 10:30 +Santa Clara,,SPHERE,CA,6/21/2009 12:00 +Glendale,,,AZ,6/21/2009 15:00 +Garden Grove,,LIGHT,CA,6/21/2009 21:30 +Brook Park,,LIGHT,OH,6/21/2009 22:30 +Daly City,,DISK,CA,6/21/2009 22:30 +Bridgeton,,,MO,6/21/2009 22:45 +Summerfield,,LIGHT,OH,6/21/2009 23:00 +Worcester,,OTHER,VT,6/21/2009 23:00 +Manhattan,,LIGHT,KS,6/21/2009 23:15 +Tucson,,CHEVRON,AZ,6/22/2009 0:45 +Greenwood,ORANGE,FIREBALL,AR,6/22/2009 0:50 +Houston,,,TX,6/22/2009 1:00 +Oklahoma City,,,OK,6/22/2009 3:00 +Beloit,,LIGHT,KS,6/22/2009 5:20 +Rockville Center,,CIRCLE,NY,6/22/2009 8:45 +Mattoon,,EGG,IL,6/22/2009 18:35 +Show Low,RED GREEN,DISK,AZ,6/22/2009 20:40 +Emerald Bay Catalina island,,CIRCLE,CA,6/22/2009 21:00 +Egan,,CIGAR,SD,6/22/2009 21:15 +Egan,,OVAL,SD,6/22/2009 21:16 +Cleveland,,,OH,6/22/2009 22:20 +Princeton,,LIGHT,IN,6/22/2009 22:24 +Lakeville,,FLASH,MN,6/22/2009 23:00 +San Antonio,,TEARDROP,TX,6/22/2009 23:00 +Corpus Christi,,VARIOUS,TX,6/23/2009 2:20 +Otoe,,LIGHT,NE,6/23/2009 2:30 +Anniston,,,AL,6/23/2009 3:15 +New York City,,LIGHT,NY,6/23/2009 4:00 +Rockville,,OVAL,IN,6/23/2009 4:00 +Atlantic Ocean,,,FL,6/23/2009 15:00 +San Diego,,DISK,CA,6/23/2009 15:00 +Tempe,,FIREBALL,AZ,6/23/2009 20:00 +Tucson,ORANGE,,AZ,6/23/2009 20:00 +Lagrange,,DIAMOND,OH,6/23/2009 20:30 +Gilbert,,LIGHT,AZ,6/23/2009 21:30 +Berwyn,,OTHER,IL,6/23/2009 21:45 +San Antonio,,FLASH,TX,6/23/2009 21:50 +Lakewood,,LIGHT,OH,6/23/2009 22:15 +Curtisville,,TRIANGLE,PA,6/23/2009 22:30 +Vaughn,,TRIANGLE,NM,6/23/2009 23:00 +Paoli,,,IN,6/23/2009 23:58 +Grants Pass,,,OR,6/24/2009 0:00 +Minden,,,LA,6/24/2009 0:15 +Southlake,,LIGHT,TX,6/24/2009 1:10 +Tomball,,LIGHT,TX,6/24/2009 1:35 +San Marcos,RED GREEN,TRIANGLE,TX,6/24/2009 5:00 +Abilene,,RECTANGLE,TX,6/24/2009 21:05 +Morrisville,,OTHER,NY,6/24/2009 22:00 +Georgetown,,,MA,6/24/2009 22:10 +Palm Coast,,FORMATION,FL,6/24/2009 22:20 +Los Angeles,,LIGHT,CA,6/24/2009 22:30 +Morrisville,RED,CIGAR,NY,6/24/2009 22:30 +Okaloosa Island,,DISK,FL,6/25/2009 1:30 +Missoula,,LIGHT,MT,6/25/2009 2:00 +Missoula,,LIGHT,MT,6/25/2009 10:00 +Santa Barbara,,VARIOUS,CA,6/25/2009 19:15 +Southaven,,DISK,MS,6/25/2009 20:18 +Pittsfield,,OTHER,ME,6/25/2009 21:00 +Haverhill,,OTHER,MA,6/25/2009 22:00 +Meadows of Dan,ORANGE,OVAL,VA,6/25/2009 22:50 +I-70,,,KS,6/25/2009 23:25 +I-70,,FLASH,KS,6/25/2009 23:25 +Salem,ORANGE,OVAL,OH,6/26/2009 0:00 +Burlington,,CIRCLE,VT,6/26/2009 1:30 +Issaquah,,LIGHT,WA,6/26/2009 3:10 +San Francisco,,FIREBALL,CA,6/26/2009 11:30 +Atlanta,BLUE,CIRCLE,GA,6/26/2009 21:30 +Filley,,,NE,6/26/2009 22:30 +Seaford,,SPHERE,NY,6/26/2009 22:50 +Juneau,RED,TRIANGLE,AK,6/27/2009 2:30 +Mcconnells,,DIAMOND,SC,6/27/2009 3:30 +Willamsburg,,EGG,KS,6/27/2009 4:12 +Fairborn,,TRIANGLE,OH,6/27/2009 4:30 +Carlsbad,,LIGHT,CA,6/27/2009 10:00 +Maple Valley,,CYLINDER,WA,6/27/2009 17:00 +Beaufort,,CIRCLE,SC,6/27/2009 20:00 +Interstate 5,,DISK,CA,6/27/2009 20:00 +Mountain Center,,LIGHT,CA,6/27/2009 20:50 +Lexington,,,IN,6/27/2009 21:15 +Mesa,,LIGHT,AZ,6/27/2009 21:15 +Monterey Park,,,CA,6/27/2009 21:20 +Philadelphia,,FORMATION,PA,6/27/2009 21:30 +Roscoe,,CIRCLE,IL,6/28/2009 0:45 +Mount Holly,RED,OVAL,NJ,6/28/2009 1:50 +Gainesville,RED,CYLINDER,VA,6/28/2009 3:00 +Phoenix,,DIAMOND,AZ,6/28/2009 7:30 +Tiburon,,TRIANGLE,CA,6/28/2009 15:00 +Dallas,ORANGE,LIGHT,TX,6/28/2009 18:15 +Bowling Green,,CIRCLE,KY,6/28/2009 20:30 +Dallas,RED,CIRCLE,TX,6/28/2009 22:00 +Uniontown,,TRIANGLE,PA,6/28/2009 22:00 +Mexico,,LIGHT,MO,6/28/2009 22:15 +Leon Valley,,FORMATION,TX,6/28/2009 23:30 +New York,,EGG,NY,6/29/2009 0:15 +Las Vegas,,DISK,NV,6/29/2009 2:00 +San Jose,,LIGHT,CA,6/29/2009 3:00 +Davison,,LIGHT,MI,6/29/2009 4:15 +Surprise,,LIGHT,AZ,6/29/2009 12:00 +Victorville,,DIAMOND,CA,6/29/2009 14:34 +Smyrna,,CIGAR,GA,6/29/2009 14:50 +Somerville,,,NJ,6/29/2009 15:00 +Sarasota,,,FL,6/29/2009 21:15 +Waxhaw,,LIGHT,NC,6/29/2009 22:15 +Midvale,ORANGE,FIREBALL,ID,6/29/2009 23:00 +Southgate,RED,CIRCLE,MI,6/29/2009 23:00 +Rohnert Park,,TRIANGLE,CA,6/29/2009 23:10 +Avon,,LIGHT,WI,6/30/2009 0:00 +Los Angeles,,DISK,CA,6/30/2009 0:00 +Oroville,,CYLINDER,CA,6/30/2009 0:00 +Missoula,,SPHERE,MT,6/30/2009 2:30 +Blanchard,,TRIANGLE,LA,6/30/2009 3:00 +Brookings,,VARIOUS,OR,6/30/2009 3:00 +Laguna Vista,,OVAL,TX,6/30/2009 14:00 +Spring,,CONE,TX,6/30/2009 15:35 +Cicero,,OVAL,IL,6/30/2009 21:00 +Clarksville,,LIGHT,TN,6/30/2009 21:00 +El Paso,,FIREBALL,TX,6/30/2009 21:00 +Mt. Pleasant,,DISK,NY,6/30/2009 21:00 +Valley Center,,OVAL,CA,6/30/2009 21:30 +Center,,OTHER,TX,6/30/2009 22:00 +Flint,RED BLUE,CIRCLE,MI,6/30/2009 22:11 +Avnol,,TRIANGLE,CA,6/30/2009 23:35 +Fort Wayne,,FORMATION,IN,7/1/2009 0:00 +Whitefish,,,MT,7/1/2009 0:01 +Crestone,,LIGHT,CO,7/1/2009 1:00 +Milwaukee,,DISK,WI,7/1/2009 2:00 +Peebles,,FIREBALL,OH,7/1/2009 4:15 +Fulton,,TRIANGLE,NY,7/1/2009 12:00 +Oak Harbor,,,WA,7/1/2009 12:45 +Irving,,OVAL,TX,7/1/2009 14:00 +San Jose,,VARIOUS,CA,7/1/2009 15:00 +Medford,,TRIANGLE,OR,7/1/2009 15:30 +Greensboro,,SPHERE,NC,7/1/2009 18:00 +Mesa,,LIGHT,AZ,7/1/2009 18:00 +New Albany,,,IN,7/1/2009 21:00 +Metarie,,FIREBALL,LA,7/1/2009 21:43 +Atlantic Beach,RED ORANGE,LIGHT,NC,7/1/2009 22:00 +Lynden,,LIGHT,WA,7/1/2009 22:05 +Montrose,,CIRCLE,CO,7/1/2009 23:00 +Shutesbury,,SPHERE,MA,7/1/2009 23:00 +Branson,,CIRCLE,MO,7/2/2009 0:00 +Galveston,,CYLINDER,TX,7/2/2009 0:00 +Spencer,,TRIANGLE,IA,7/2/2009 0:00 +Mariposa,,FIREBALL,CA,7/2/2009 3:30 +State College,,SPHERE,PA,7/2/2009 4:30 +Ponca City,,OTHER,OK,7/2/2009 18:30 +Lincoln,ORANGE,CYLINDER,NE,7/2/2009 21:15 +Longmont,ORANGE,OVAL,CO,7/2/2009 22:08 +Los Angeles,,CIRCLE,CA,7/2/2009 23:00 +Vergas,,FORMATION,MN,7/2/2009 23:30 +Katy,,OTHER,TX,7/3/2009 0:00 +Forest Grove,,,OR,7/3/2009 0:15 +Gig Harbor,,LIGHT,WA,7/3/2009 1:58 +Tucson,,CIRCLE,AZ,7/3/2009 3:30 +Mason,,DISK,OH,7/3/2009 20:00 +Eau Galle,RED,FORMATION,WI,7/3/2009 21:15 +Sacramento,,LIGHT,CA,7/3/2009 21:25 +Beckeymeyer,,SPHERE,IL,7/3/2009 21:38 +Clyde,,FIREBALL,OH,7/3/2009 21:45 +Clyde,ORANGE,LIGHT,OH,7/3/2009 21:45 +Deerfield,,FIREBALL,IL,7/3/2009 21:55 +Murfreesboro,,,TN,7/3/2009 22:20 +Clinton,,FIREBALL,MO,7/3/2009 22:30 +Greer,RED,LIGHT,SC,7/3/2009 22:30 +Lafayette,ORANGE,LIGHT,IN,7/3/2009 23:05 +Midlothian,,CIRCLE,IL,7/3/2009 23:30 +Oxford,,CIRCLE,MI,7/3/2009 23:45 +Wyandotte,,OVAL,MI,7/4/2009 0:14 +Everett,RED,SPHERE,WA,7/4/2009 0:45 +Lynnwood,RED,VARIOUS,WA,7/4/2009 2:00 +Philadelphia,,CIGAR,PA,7/4/2009 2:56 +Apalachicola,,VARIOUS,FL,7/4/2009 6:35 +Louisville,,LIGHT,CO,7/4/2009 13:00 +Lake Havasu City,,DISK,AZ,7/4/2009 17:00 +Calumet City,,SPHERE,IL,7/4/2009 20:00 +Shavehead Lake,,FIREBALL,MI,7/4/2009 20:00 +Auburn,RED,SPHERE,WA,7/4/2009 20:01 +Boxford,,CIGAR,MA,7/4/2009 20:30 +El Cajon,RED,LIGHT,CA,7/4/2009 20:35 +Fox Lake,,SPHERE,IL,7/4/2009 20:45 +El Cajon,RED,LIGHT,CA,7/4/2009 20:49 +La Mesa,RED,LIGHT,CA,7/4/2009 20:50 +El Cajon,RED,LIGHT,CA,7/4/2009 20:55 +El Cajon,RED,LIGHT,CA,7/4/2009 20:55 +El Cajon,RED,OTHER,CA,7/4/2009 20:55 +El Cajon,RED,OTHER,CA,7/4/2009 21:00 +Falmouth,,SPHERE,MA,7/4/2009 21:00 +El Cajon,,LIGHT,CA,7/4/2009 21:10 +Alvarado,,TEARDROP,TX,7/4/2009 21:15 +Shelby,RED,LIGHT,NC,7/4/2009 21:15 +St. Louis,RED,RECTANGLE,MO,7/4/2009 21:15 +Dearborn Heights,ORANGE,,MI,7/4/2009 21:30 +Snohomish,ORANGE,LIGHT,WA,7/4/2009 21:30 +South Elgin,ORANGE,CIRCLE,IL,7/4/2009 21:30 +Westlake Village,,LIGHT,CA,7/4/2009 21:35 +Surprise,,FLASH,AZ,7/4/2009 21:36 +Goodyear,,,AZ,7/4/2009 21:38 +Charlotte,RED,LIGHT,NC,7/4/2009 21:45 +Algonquin,,LIGHT,IL,7/4/2009 21:46 +Plummer,ORANGE,RECTANGLE,ID,7/4/2009 21:49 +Seattle,,SPHERE,WA,7/4/2009 21:50 +Apopka,ORANGE,OVAL,FL,7/4/2009 22:00 +Auburn,,CIRCLE,WA,7/4/2009 22:00 +Auburn,,CYLINDER,WA,7/4/2009 22:00 +Auburn,RED,DISK,WA,7/4/2009 22:00 +Auburn,,FIREBALL,WA,7/4/2009 22:00 +Auburn,,OVAL,WA,7/4/2009 22:00 +Boiling Springs,,LIGHT,SC,7/4/2009 22:00 +Dickson City,,CIRCLE,PA,7/4/2009 22:00 +Federal Way,,CIRCLE,WA,7/4/2009 22:00 +Fond du Lac,,FIREBALL,WI,7/4/2009 22:00 +Killeen,,OVAL,TX,7/4/2009 22:00 +Mechanicsburg,,LIGHT,PA,7/4/2009 22:00 +Milford,,LIGHT,CT,7/4/2009 22:00 +West Haven,ORANGE,SPHERE,CT,7/4/2009 22:00 +Winthrop,,CHEVRON,WA,7/4/2009 22:00 +Philadelphia,,CIGAR,PA,7/4/2009 22:02 +East Haven,ORANGE,CIRCLE,CT,7/4/2009 22:10 +Hartford,,LIGHT,WV,7/4/2009 22:10 +Sacramento,,LIGHT,CA,7/4/2009 22:15 +Snoqualmie,RED,SPHERE,WA,7/4/2009 22:15 +Vicksburg,ORANGE,LIGHT,MI,7/4/2009 22:15 +Waterville,,LIGHT,OH,7/4/2009 22:23 +Macomb,,LIGHT,MI,7/4/2009 22:24 +Chicago,RED,CIRCLE,IL,7/4/2009 22:30 +La Conner,,,WA,7/4/2009 22:30 +Macomb Township,,CIRCLE,MI,7/4/2009 22:30 +Monroe,,LIGHT,WA,7/4/2009 22:30 +Monroe,,LIGHT,WA,7/4/2009 22:30 +Novi,,TEARDROP,MI,7/4/2009 22:30 +Plainwell,ORANGE,LIGHT,MI,7/4/2009 22:30 +Seattle,ORANGE,LIGHT,WA,7/4/2009 22:30 +Tomahawk,,SPHERE,WI,7/4/2009 22:30 +Chester,RED,LIGHT,WV,7/4/2009 22:38 +Chester,RED,LIGHT,WV,7/4/2009 22:39 +Chicago,,OVAL,IL,7/4/2009 23:00 +Delray Beach,,LIGHT,FL,7/4/2009 23:00 +Everett,ORANGE,,WA,7/4/2009 23:00 +Iola,,SPHERE,KS,7/4/2009 23:00 +Lemon Grove,RED,CIRCLE,CA,7/4/2009 23:00 +Patchogue,RED,LIGHT,NY,7/4/2009 23:00 +Seattle,ORANGE,OVAL,WA,7/4/2009 23:00 +Streamwood,ORANGE,CIRCLE,IL,7/4/2009 23:01 +Seattle,RED,LIGHT,WA,7/4/2009 23:15 +Alpena,,OVAL,MI,7/4/2009 23:30 +Houston,RED,OTHER,TX,7/4/2009 23:35 +Chisago City,ORANGE,TRIANGLE,MN,7/4/2009 23:59 +Decatur,RED,FIREBALL,IN,7/4/2009 23:59 +Flint,,LIGHT,MI,7/5/2009 0:02 +San Gabriel Valley,,TRIANGLE,CA,7/5/2009 0:13 +Kent,ORANGE,OVAL,WA,7/5/2009 0:25 +Redding,,DISK,CA,7/5/2009 1:00 +Michigan City,,DISK,IN,7/5/2009 1:30 +St. Helens,GREEN,OVAL,OR,7/5/2009 2:00 +Cedar Park,,VARIOUS,TX,7/5/2009 7:00 +Lenexa,,LIGHT,KS,7/5/2009 10:00 +Bellingham,,OTHER,WA,7/5/2009 11:00 +Silverthorne,,SPHERE,CO,7/5/2009 13:30 +Hallsville,,CIGAR,TX,7/5/2009 17:40 +Elmira,,DISK,NY,7/5/2009 20:45 +Eagle Butte,,RECTANGLE,SD,7/5/2009 23:00 +Miami,,CIRCLE,FL,7/5/2009 23:40 +Saint Paul,,TRIANGLE,MN,7/6/2009 0:47 +Columbia,BLUE,,MD,7/6/2009 1:00 +Myrtle Beach,,TRIANGLE,NC,7/6/2009 1:00 +Montoursville,,LIGHT,PA,7/6/2009 2:00 +Hesperia,,LIGHT,CA,7/6/2009 3:30 +Brownsburg,,FIREBALL,IN,7/6/2009 6:00 +Boca Raton,,LIGHT,FL,7/6/2009 9:00 +New York City,,SPHERE,NY,7/6/2009 12:45 +Williamstown,,CIRCLE,NJ,7/6/2009 17:30 +Boca Raton,GREEN,OTHER,FL,7/6/2009 21:00 +Miami,,LIGHT,FL,7/6/2009 21:10 +Granton,,LIGHT,WI,7/6/2009 21:43 +Bay City,,,MI,7/6/2009 22:10 +Bloomfield-Friendship,,LIGHT,PA,7/6/2009 22:20 +Virginia Beach,,LIGHT,VA,7/6/2009 22:43 +Salida,,LIGHT,CO,7/6/2009 23:00 +Los Angeles,,LIGHT,CA,7/6/2009 23:10 +Redding,ORANGE,VARIOUS,CA,7/6/2009 23:33 +Keene,,SPHERE,TX,7/7/2009 0:00 +Ft. Lauderdale,,LIGHT,FL,7/7/2009 3:00 +San Bernardino,,LIGHT,CA,7/7/2009 4:45 +Alvin,,OTHER,TX,7/7/2009 5:30 +Philadelphia,,LIGHT,PA,7/7/2009 9:40 +Lincoln,,LIGHT,NE,7/7/2009 10:10 +Beaver Dam,,OVAL,WI,7/7/2009 11:41 +Lincoln,,CIGAR,ME,7/7/2009 13:00 +Satsuma,,CIGAR,AL,7/7/2009 15:28 +Elmira,,CIRCLE,NY,7/7/2009 20:45 +Pueblo West,,EGG,CO,7/7/2009 21:05 +Clarence,,RECTANGLE,NY,7/7/2009 21:30 +London,RED,CIRCLE,KY,7/7/2009 21:30 +Milwaukee,,OTHER,WI,7/7/2009 21:30 +Fallsburg,,TRIANGLE,KY,7/7/2009 21:45 +Goodlettsville,,LIGHT,TN,7/7/2009 22:06 +North Ogden,,LIGHT,UT,7/7/2009 22:40 +Austintown,,LIGHT,OH,7/7/2009 22:45 +Owasso,,SPHERE,OK,7/7/2009 22:45 +Wilkes-Barre,,SPHERE,PA,7/7/2009 22:55 +Waynesville,,LIGHT,NC,7/7/2009 23:00 +Mooresville,,OTHER,NC,7/7/2009 23:28 +Cave City,,VARIOUS,KY,7/8/2009 0:23 +Death Valley,,LIGHT,CA,7/8/2009 1:00 +Powell,,CIRCLE,WY,7/8/2009 4:25 +Berlin,,OTHER,PA,7/8/2009 9:50 +Tucson,,RECTANGLE,AZ,7/8/2009 11:12 +Hudson Falls,,CIGAR,NY,7/8/2009 13:56 +McArthur,,VARIOUS,OH,7/8/2009 15:30 +Vancouver,,OTHER,WA,7/8/2009 16:28 +Strawberry,,LIGHT,AZ,7/8/2009 20:30 +West Jordan,,TRIANGLE,UT,7/8/2009 20:43 +Phoenix,,FLASH,AZ,7/8/2009 21:30 +Albany,,CIRCLE,OR,7/8/2009 22:00 +Berkley,,TRIANGLE,MI,7/8/2009 23:00 +Camdenton,RED,SPHERE,MO,7/8/2009 23:00 +Edmond,,LIGHT,OK,7/8/2009 23:30 +Norfolk,,SPHERE,VA,7/9/2009 15:30 +Fresno,,LIGHT,CA,7/9/2009 21:00 +South San Francisco,,FORMATION,CA,7/9/2009 22:00 +Queensbury,ORANGE,OVAL,NY,7/9/2009 22:15 +Colchester,,,VT,7/9/2009 22:30 +Colchester,,TRIANGLE,VT,7/9/2009 22:30 +Seattle,,LIGHT,WA,7/9/2009 22:30 +Brigham City,,CIRCLE,UT,7/9/2009 23:00 +New York City,,LIGHT,NY,7/9/2009 23:30 +Pottstown,,CYLINDER,PA,7/9/2009 23:45 +San Jose,RED,CIRCLE,CA,7/9/2009 23:50 +Highland,,TRIANGLE,CA,7/10/2009 0:00 +Swartz Creek,,,MI,7/10/2009 0:18 +Masontown,YELLOW,FORMATION,WV,7/10/2009 0:30 +Charleston,,LIGHT,WV,7/10/2009 0:35 +Frankfort,,CIRCLE,NY,7/10/2009 2:30 +Tonopah,,TRIANGLE,AZ,7/10/2009 10:30 +Humble,ORANGE YELLOW,FIREBALL,TX,7/10/2009 10:35 +Raleigh,,LIGHT,NC,7/10/2009 19:15 +Greenwich,,LIGHT,NY,7/10/2009 21:00 +Barnwell,ORANGE,CIRCLE,SC,7/10/2009 21:15 +Henrico,BLUE,LIGHT,VA,7/10/2009 22:00 +Eau Claire,,LIGHT,WI,7/10/2009 22:15 +Bear Creek,,CIRCLE,AL,7/10/2009 23:00 +Salt Lake City,,DISK,UT,7/10/2009 23:15 +Holly Hill,,EGG,FL,7/10/2009 23:29 +Kent,,TRIANGLE,WA,7/11/2009 1:05 +Daytona Beach,RED GREEN,OTHER,FL,7/11/2009 4:50 +Pioneer Town,,,CA,7/11/2009 11:00 +Burbank,,RECTANGLE,CA,7/11/2009 15:00 +Park Ridge,,OVAL,IL,7/11/2009 17:00 +Clinton,,LIGHT,IA,7/11/2009 21:18 +Moundsville,,CIRCLE,WV,7/11/2009 22:00 +Superior,,LIGHT,WI,7/11/2009 22:00 +Victor,,LIGHT,NY,7/11/2009 22:00 +Dawsonville,,OTHER,GA,7/11/2009 23:00 +Saint Petersburg,,TRIANGLE,FL,7/11/2009 23:00 +Sausalito,,LIGHT,CA,7/11/2009 23:00 +Las Vegas,,LIGHT,NV,7/12/2009 2:30 +Walnut,,OTHER,CA,7/12/2009 3:00 +Northfield,,,MN,7/12/2009 3:25 +Tulsa,,FIREBALL,OK,7/12/2009 4:00 +San Jose,,CIRCLE,CA,7/12/2009 17:00 +Richmond,,TRIANGLE,ME,7/12/2009 18:30 +Oceanside,RED BLUE,,CA,7/12/2009 20:45 +Dewey Beach,,FIREBALL,DE,7/12/2009 21:15 +Duluth,,OVAL,MN,7/12/2009 21:30 +Pittsburgh,,SPHERE,PA,7/12/2009 21:55 +Ben Hur,,,VA,7/12/2009 22:45 +Brandon,,CIRCLE,FL,7/12/2009 23:00 +Commerce Township,,LIGHT,MI,7/13/2009 0:20 +Cathedral City,,OVAL,CA,7/13/2009 1:00 +Kettering,,DIAMOND,OH,7/13/2009 1:00 +Barrington Hills,,OTHER,IL,7/13/2009 4:10 +Corona,,TRIANGLE,CA,7/13/2009 11:10 +Phoenix,,CIGAR,AZ,7/13/2009 13:00 +Milford,,OVAL,PA,7/13/2009 17:15 +French Lick,,LIGHT,IN,7/13/2009 20:40 +Iuka,ORANGE,OTHER,IL,7/13/2009 21:00 +Miami,,,FL,7/13/2009 22:00 +Waunakee,,OTHER,WI,7/13/2009 23:00 +Inver Grove Heights,,LIGHT,MN,7/14/2009 0:32 +Daytona Beach,RED GREEN,OTHER,FL,7/14/2009 4:10 +Dow City,RED BLUE,,IA,7/14/2009 4:30 +Henderson,RED,OTHER,NV,7/14/2009 9:15 +Pahrump,,,NV,7/14/2009 10:56 +San Diego,BLUE,FORMATION,CA,7/14/2009 12:35 +Amarillo,,,TX,7/14/2009 13:00 +Norwalk,,FORMATION,CT,7/14/2009 21:00 +Las Cruces,,,NM,7/14/2009 21:20 +Wellfleet,,DISK,MA,7/14/2009 22:15 +Three Rivers,,LIGHT,CA,7/14/2009 23:00 +Orange,RED ORANGE,OTHER,CA,7/14/2009 23:35 +Benton,,CYLINDER,KY,7/15/2009 0:00 +Brevard,,,NC,7/15/2009 0:00 +Highland,,SPHERE,UT,7/15/2009 3:00 +Highland,YELLOW,TRIANGLE,NY,7/15/2009 3:00 +Cleveland,,SPHERE,OK,7/15/2009 5:00 +Greencastle,,CIRCLE,PA,7/15/2009 5:30 +Somerset,,CIRCLE,PA,7/15/2009 10:00 +Bellevue,,,WA,7/15/2009 13:30 +Charlotte,,CIRCLE,NC,7/15/2009 21:00 +Dover,,SPHERE,PA,7/15/2009 21:20 +Manchester,,OTHER,TN,7/15/2009 21:30 +Marysville,,SPHERE,WA,7/15/2009 22:00 +Hudsonville,ORANGE,CYLINDER,MI,7/15/2009 23:00 +South Bend,,RECTANGLE,WA,7/15/2009 23:00 +Eugene,ORANGE,FIREBALL,OR,7/15/2009 23:28 +Rocky Fork Lake,,FIREBALL,OH,7/15/2009 23:30 +Bexley,,DISK,OH,7/16/2009 0:00 +Santa Rosa,,LIGHT,CA,7/16/2009 0:00 +Wilbur,,,WA,7/16/2009 0:00 +Cypress,ORANGE,VARIOUS,CA,7/16/2009 0:24 +Gasport,,LIGHT,NY,7/16/2009 0:30 +Kent,,LIGHT,WA,7/16/2009 10:22 +Oakwood,RED,LIGHT,TX,7/16/2009 11:00 +Hermann,,DIAMOND,MO,7/16/2009 14:20 +Deer Park,,,WA,7/16/2009 15:00 +Bryan,BLUE,,TX,7/16/2009 16:00 +Stanwood,,OTHER,WA,7/16/2009 19:00 +Enid,,LIGHT,OK,7/16/2009 21:00 +Eugene,,DISK,OR,7/16/2009 21:00 +Aurora,,,CO,7/16/2009 22:16 +Marysville,,LIGHT,WA,7/16/2009 22:50 +Kalispell,,CIRCLE,MT,7/16/2009 23:30 +Land O'Lakes,,TRIANGLE,FL,7/16/2009 23:59 +Santa Fe,,LIGHT,NM,7/17/2009 0:00 +Concrete,,TRIANGLE,WA,7/17/2009 3:00 +Waterloo,,FIREBALL,IA,7/17/2009 10:00 +Kennewick,,OVAL,WA,7/17/2009 15:00 +Weslaco,,LIGHT,TX,7/17/2009 21:00 +Woodville,,,MS,7/17/2009 21:00 +Rancho Santa Margarita,,CIRCLE,CA,7/17/2009 21:30 +Middletown,,VARIOUS,OH,7/17/2009 21:55 +Eagan,,,MN,7/17/2009 22:00 +San Clemente,ORANGE YELLOW,OTHER,CA,7/17/2009 22:45 +Woodville,,CIRCLE,MS,7/17/2009 23:00 +Los Angeles,ORANGE,OVAL,CA,7/18/2009 0:04 +Seattle,,DISK,WA,7/18/2009 1:00 +Brinnon,RED,CIRCLE,WA,7/18/2009 2:00 +Los Altos,,DISK,CA,7/18/2009 3:00 +Houston,,LIGHT,TX,7/18/2009 4:50 +Boynton Beach,,LIGHT,FL,7/18/2009 5:19 +Port Orford,RED,TRIANGLE,OR,7/18/2009 7:00 +Snohomish,,SPHERE,WA,7/18/2009 15:00 +New Hatford,,CYLINDER,CT,7/18/2009 16:30 +Mason,,FORMATION,OH,7/18/2009 19:00 +Honolulu,,OTHER,HI,7/18/2009 19:45 +Yakima,,TRIANGLE,WA,7/18/2009 20:00 +Bluetown,,FORMATION,TX,7/18/2009 20:30 +Nashville,RED ORANGE,SPHERE,TN,7/18/2009 20:55 +Franklin,,VARIOUS,OH,7/18/2009 21:00 +Albany,,VARIOUS,OR,7/18/2009 21:15 +Lebanon,,LIGHT,OH,7/18/2009 21:40 +Middletown,,LIGHT,OH,7/18/2009 21:45 +Philadelphia,ORANGE,CHEVRON,PA,7/18/2009 22:00 +Pound Ridge,,OTHER,NY,7/18/2009 22:00 +Santa Cruz,,LIGHT,CA,7/18/2009 22:00 +Whitefish,,,MT,7/18/2009 22:30 +Escondido,,FLASH,CA,7/18/2009 22:47 +Vancouver,,CIRCLE,WA,7/18/2009 22:50 +Happy Valley,,,OR,7/18/2009 22:55 +Longview,,CIRCLE,TX,7/18/2009 23:00 +Navajo Lake,,LIGHT,UT,7/18/2009 23:00 +Sedona,,SPHERE,AZ,7/19/2009 0:00 +Harwich,,TRIANGLE,MA,7/19/2009 1:00 +Lake Forest,,,CA,7/19/2009 1:20 +Park Hills,,LIGHT,MO,7/19/2009 1:35 +Newport Beach,,OTHER,CA,7/19/2009 22:20 +Ocean City,ORANGE,LIGHT,NJ,7/19/2009 22:30 +Overbrook,,CIGAR,KS,7/19/2009 22:50 +Avalon,,LIGHT,NJ,7/19/2009 23:00 +Cabazon,,FORMATION,CA,7/19/2009 23:00 +Margate,,DIAMOND,NJ,7/19/2009 23:15 +Margate,,DIAMOND,NJ,7/19/2009 23:15 +Bellaire,,DISK,MI,7/20/2009 0:00 +Novato,,LIGHT,CA,7/20/2009 0:00 +Streamwood,,LIGHT,IL,7/20/2009 0:00 +Bozeman,,LIGHT,MT,7/20/2009 4:00 +Auburn,,LIGHT,AL,7/20/2009 9:30 +Henderson,,DISK,NV,7/20/2009 10:00 +Hialeah Gardens,,DISK,FL,7/20/2009 14:00 +Davis,,OTHER,CA,7/20/2009 14:46 +Levittown,,OVAL,NY,7/20/2009 21:30 +Las Vegas,,LIGHT,NV,7/20/2009 22:00 +Ocean City,ORANGE,LIGHT,NJ,7/20/2009 22:00 +Yamhill,,SPHERE,OR,7/20/2009 22:00 +Eugene,,LIGHT,OR,7/20/2009 22:15 +Gig Harbor,,LIGHT,WA,7/20/2009 22:15 +Buffalo Grove,ORANGE,LIGHT,IL,7/20/2009 22:40 +Clearwater,,TRIANGLE,FL,7/20/2009 23:00 +Boise,,LIGHT,ID,7/20/2009 23:14 +Brookston,,LIGHT,IN,7/20/2009 23:30 +Newtown,,,PA,7/21/2009 7:45 +WInchester,RED,EGG,KY,7/21/2009 10:20 +Chicago,,LIGHT,IL,7/21/2009 12:30 +Bellvue,,OVAL,CO,7/21/2009 15:30 +Cumberland,,CIGAR,MD,7/21/2009 17:12 +Lakeland,,,FL,7/21/2009 18:00 +Lakeland,ORANGE,CIGAR,FL,7/21/2009 18:15 +Millis,,LIGHT,MA,7/21/2009 21:30 +Greenleaf,GREEN,LIGHT,ID,7/21/2009 22:00 +Topeka,,FIREBALL,KS,7/21/2009 22:00 +Laramie,,CIRCLE,WY,7/21/2009 22:15 +Munising,,LIGHT,MI,7/21/2009 22:25 +Twisp,ORANGE,SPHERE,WA,7/21/2009 22:30 +Victorville,,CIRCLE,CA,7/21/2009 22:30 +Fayetteville,RED,LIGHT,AR,7/21/2009 22:40 +Reno,,LIGHT,NV,7/21/2009 23:00 +Aurora,,TRIANGLE,CO,7/21/2009 23:23 +Cumberland,,LIGHT,MD,7/22/2009 0:15 +Hamburg,BLUE,OTHER,MI,7/22/2009 2:40 +Alliance,,LIGHT,NE,7/22/2009 21:00 +Avon,,LIGHT,CO,7/22/2009 21:30 +Lake Springs,,LIGHT,MO,7/22/2009 21:49 +Lake Superior,,FIREBALL,MI,7/22/2009 22:00 +Bothell,,LIGHT,WA,7/22/2009 22:05 +Plover,,LIGHT,WI,7/22/2009 22:10 +Wellsburg,,FIREBALL,NY,7/22/2009 22:20 +Greeneville,,LIGHT,TN,7/22/2009 22:43 +Keystone,,CIRCLE,SD,7/22/2009 23:00 +Buda,,LIGHT,TX,7/22/2009 23:06 +Seattle,RED,VARIOUS,WA,7/22/2009 23:25 +Sunnyvale,,DISK,CA,7/22/2009 23:30 +Leggett,,LIGHT,CA,7/23/2009 0:00 +Los Angeles,RED,CIRCLE,CA,7/23/2009 1:45 +Huntsville,,,AL,7/23/2009 7:00 +Escondido,,LIGHT,CA,7/23/2009 10:44 +Lakewood,,LIGHT,CO,7/23/2009 11:00 +no data,,OTHER,OK,7/23/2009 15:00 +Las Vegas,,,NV,7/23/2009 21:50 +Clive,RED,,IA,7/23/2009 22:15 +Fayetteville,,CIRCLE,AR,7/23/2009 22:37 +Kersey,,LIGHT,PA,7/23/2009 23:30 +Orland Hills,,DISK,IL,7/23/2009 23:30 +Beaver Creek,RED,VARIOUS,OR,7/24/2009 0:01 +Kansas City,,OTHER,KS,7/24/2009 0:15 +Portland,,LIGHT,OR,7/24/2009 3:00 +Lindsay,,,TX,7/24/2009 20:00 +Waimanalo,GREEN,SPHERE,HI,7/24/2009 20:00 +Piqua,,CIRCLE,OH,7/24/2009 20:12 +Oneonta,ORANGE,DISK,NY,7/24/2009 20:15 +Albuquerque,,VARIOUS,NM,7/24/2009 21:30 +Aurora,,LIGHT,CO,7/24/2009 21:45 +Rifle,,LIGHT,CO,7/24/2009 21:45 +Ypsilanti,ORANGE,,MI,7/24/2009 21:45 +Linesville,,,PA,7/24/2009 22:00 +San Marcos,,TRIANGLE,TX,7/24/2009 22:00 +Bridgeport,,LIGHT,WV,7/24/2009 22:15 +Middlebourne,,LIGHT,WV,7/24/2009 22:15 +Moneta,ORANGE,LIGHT,VA,7/24/2009 22:15 +Pendleton,,SPHERE,SC,7/24/2009 22:15 +Everett,,LIGHT,WA,7/24/2009 23:00 +Gracville,,FLASH,FL,7/24/2009 23:00 +Sugarcreek Township,ORANGE,LIGHT,OH,7/24/2009 23:00 +Erlanger,,CIRCLE,KY,7/24/2009 23:10 +Boston,,DIAMOND,MA,7/24/2009 23:30 +Kingston,,LIGHT,GA,7/24/2009 23:30 +Sadieville,,SPHERE,KY,7/24/2009 23:30 +Westland,ORANGE,SPHERE,MI,7/25/2009 0:30 +Westland,,,MI,7/25/2009 0:48 +De Borgia,RED GREEN,LIGHT,MT,7/25/2009 1:00 +Stillwater,,LIGHT,MN,7/25/2009 4:00 +Oak Harbor,,DISK,WA,7/25/2009 6:30 +Chelsea,,CIRCLE,MI,7/25/2009 9:45 +Palm Bay,,OVAL,FL,7/25/2009 10:15 +Carrie,,LIGHT,KY,7/25/2009 11:20 +Wildwood Crest,,TRIANGLE,NJ,7/25/2009 11:56 +Davie,,RECTANGLE,FL,7/25/2009 12:36 +Los Angeles,,SPHERE,CA,7/25/2009 16:30 +Pampa,,OTHER,TX,7/25/2009 16:30 +Ridgecrest,,LIGHT,CA,7/25/2009 20:30 +Redding,,CIGAR,CA,7/25/2009 21:00 +Auberry,,,CA,7/25/2009 21:08 +Reno,,FIREBALL,NV,7/25/2009 21:08 +Pollockpines,,LIGHT,CA,7/25/2009 21:10 +Gridley,,LIGHT,IL,7/25/2009 21:30 +Cashton,RED,OVAL,WI,7/25/2009 21:40 +Muskogee,,SPHERE,OK,7/25/2009 21:40 +Semmes,,LIGHT,AL,7/25/2009 21:40 +Chelsea,,CIRCLE,MI,7/25/2009 21:45 +Indianapolis,YELLOW,DISK,IN,7/25/2009 22:00 +Union,,LIGHT,MS,7/25/2009 22:00 +Corona,,LIGHT,CA,7/25/2009 22:15 +Eugene,,LIGHT,OR,7/25/2009 22:24 +Smithville Lake,ORANGE,,MO,7/25/2009 22:45 +Algona,,LIGHT,IA,7/25/2009 23:00 +Santa Paula,,DISK,CA,7/25/2009 23:00 +Santa Paula,RED BLUE,OVAL,CA,7/25/2009 23:00 +Elkton,,OVAL,OH,7/25/2009 23:20 +Chamita,,LIGHT,NM,7/26/2009 0:00 +Lincoln,RED,LIGHT,NE,7/26/2009 2:00 +Forest Groce,YELLOW GREEN,VARIOUS,OR,7/26/2009 3:00 +Boone,,LIGHT,NC,7/26/2009 3:30 +Norwood -Cincinnati,,LIGHT,OH,7/26/2009 9:38 +Wildwood Crest,,TRIANGLE,NJ,7/26/2009 11:56 +Columbia,,LIGHT,MO,7/26/2009 12:30 +Sioux Falls,,LIGHT,SD,7/26/2009 15:00 +Plains,,CIRCLE,PA,7/26/2009 18:30 +Plains,,OTHER,PA,7/26/2009 18:30 +Plains,,CIRCLE,PA,7/26/2009 18:45 +Tulsa,,LIGHT,OK,7/26/2009 21:15 +Gahanna,,LIGHT,OH,7/26/2009 21:30 +Glencoe,,LIGHT,KY,7/26/2009 21:40 +Toledo,,,OH,7/26/2009 22:01 +Greenwood,RED,DISK,IN,7/26/2009 23:00 +Burien,,FORMATION,WA,7/27/2009 0:00 +Flower Mound,,LIGHT,TX,7/27/2009 3:30 +Spring Valley,,,IL,7/27/2009 4:22 +Forest Lake,,,MN,7/27/2009 14:00 +Shongaloo,,DISK,LA,7/27/2009 15:00 +Springdale,,OTHER,PA,7/27/2009 20:35 +Old Forge,,CIRCLE,NY,7/27/2009 21:20 +Old Forge,RED GREEN,CIRCLE,NY,7/27/2009 21:20 +Alton,,TRIANGLE,IL,7/27/2009 21:30 +Bonneville Salt Flats,,SPHERE,UT,7/27/2009 21:30 +Old Forge,,CROSS,NY,7/27/2009 22:00 +Hunters,ORANGE,LIGHT,WA,7/27/2009 22:15 +Kensington,,LIGHT,NH,7/27/2009 22:54 +Greeneville,,LIGHT,TN,7/27/2009 23:20 +Wesley Chapel,,TRIANGLE,FL,7/27/2009 23:35 +Bloomington,,CIRCLE,MN,7/28/2009 0:30 +Piqua,ORANGE YELLOW,OTHER,OH,7/28/2009 4:00 +Lake Carmel,,FORMATION,NY,7/28/2009 4:45 +Elko,,OTHER,NV,7/28/2009 20:45 +Poway,,DISK,CA,7/28/2009 20:45 +Garden City,,,SC,7/28/2009 21:05 +Kingston,,CIRCLE,WA,7/28/2009 22:50 +Kirkland,,DISK,WA,7/29/2009 0:05 +Lincoln,,OVAL,NM,7/29/2009 0:40 +Chandler,,OVAL,AZ,7/29/2009 2:00 +Linoir City,,CIRCLE,TN,7/29/2009 13:00 +North of Pt. Barrow,,DISK,AK,7/29/2009 13:00 +Newburyport,,OTHER,MA,7/29/2009 19:05 +Hamlin,ORANGE YELLOW,CIRCLE,NY,7/29/2009 20:00 +Myrtle Beach,,CIRCLE,SC,7/29/2009 22:00 +Greeneville,,LIGHT,TN,7/29/2009 22:20 +Snohomish,,SPHERE,WA,7/29/2009 22:30 +Euless,,LIGHT,TX,7/29/2009 22:35 +Cedartown,,TRIANGLE,GA,7/29/2009 23:30 +Kent,BLUE,FLASH,WA,7/30/2009 0:00 +Burkett,,CIGAR,TX,7/30/2009 18:02 +Bucks,,SPHERE,PA,7/30/2009 21:00 +Capitola,,LIGHT,CA,7/30/2009 21:30 +Odin,,LIGHT,IL,7/30/2009 21:30 +Pittston,RED ORANGE,EGG,PA,7/30/2009 21:30 +Butler,RED,,MO,7/30/2009 22:05 +Cicero,,FLASH,IN,7/31/2009 0:00 +Vassar,,CIRCLE,MI,7/31/2009 1:00 +Lacey,,LIGHT,WA,7/31/2009 2:40 +Brandon,,RECTANGLE,FL,7/31/2009 11:45 +Willowbrook,RED,CIRCLE,IL,7/31/2009 17:35 +Butler,YELLOW,LIGHT,MO,7/31/2009 21:30 +Manhattan,,OTHER,IL,7/31/2009 22:00 +Mount Morris,,,MI,7/31/2009 22:30 +Harrison Township,,FIREBALL,MI,7/31/2009 23:00 +New York City,RED,OVAL,NY,8/1/2009 0:10 +Harrington,,RECTANGLE,DE,8/1/2009 0:30 +Bismarck,ORANGE,CIRCLE,MO,8/1/2009 1:15 +Cross Village,,CIRCLE,MI,8/1/2009 2:00 +Monroe,,LIGHT,UT,8/1/2009 3:00 +Slidell,RED,,LA,8/1/2009 3:00 +Chicago,,,IL,8/1/2009 4:00 +Tacoma,,TEARDROP,WA,8/1/2009 10:08 +Santa Clara,,CIRCLE,CA,8/1/2009 13:00 +Warwick,GREEN,SPHERE,RI,8/1/2009 20:15 +San Pedro,,SPHERE,CA,8/1/2009 20:22 +Largo,,LIGHT,MD,8/1/2009 21:00 +Rockport,,CIRCLE,MA,8/1/2009 21:00 +Vero Beach,,LIGHT,FL,8/1/2009 21:30 +Duncansville,ORANGE,FIREBALL,PA,8/1/2009 21:40 +Clinton Township,,CIRCLE,MI,8/1/2009 22:30 +Akron,,FIREBALL,OH,8/1/2009 23:00 +Easton,RED,SPHERE,MD,8/1/2009 23:00 +Redmond,,FIREBALL,WA,8/1/2009 23:00 +Heidleburg,ORANGE,OTHER,PA,8/1/2009 23:30 +Middletown,ORANGE,LIGHT,MD,8/1/2009 23:30 +Skaneateles,,CIRCLE,NY,8/2/2009 0:25 +Leroy,,FORMATION,NY,8/2/2009 2:35 +Interstate 75,,RECTANGLE,FL,8/2/2009 10:30 +Glendale,,,CA,8/2/2009 21:26 +Grand Rapids,,CIRCLE,MI,8/2/2009 22:00 +Pompano,,OVAL,FL,8/2/2009 23:00 +Haltom City,,LIGHT,TX,8/3/2009 0:45 +Tomball,,TRIANGLE,TX,8/3/2009 4:00 +Keaau,RED,CIRCLE,HI,8/3/2009 5:00 +Orlando,,SPHERE,FL,8/3/2009 5:50 +Kenosha,,OTHER,WI,8/3/2009 17:00 +Powell,,FIREBALL,OH,8/3/2009 19:00 +Ocean Isle,,LIGHT,NC,8/3/2009 21:30 +East Dennis,,SPHERE,MA,8/3/2009 21:50 +Centralia,,LIGHT,WA,8/3/2009 23:00 +Mukwonago,,LIGHT,WI,8/3/2009 23:00 +Anacortes,RED,TRIANGLE,WA,8/3/2009 23:34 +Coral Springs,,,FL,8/4/2009 3:30 +Long Beach,,,CA,8/4/2009 8:00 +Albuquerque,,OTHER,NM,8/4/2009 20:57 +Enfield,,OTHER,CT,8/4/2009 21:15 +La Grande,RED,SPHERE,OR,8/4/2009 21:15 +McCalla,,VARIOUS,AL,8/4/2009 23:00 +Salina,,LIGHT,KS,8/4/2009 23:10 +Groom,,DISK,TX,8/5/2009 0:00 +Portland,,TRIANGLE,OR,8/5/2009 0:00 +Augusta,,RECTANGLE,GA,8/5/2009 5:45 +Indian Springs,,CYLINDER,NV,8/5/2009 8:37 +Hawthorne,,OTHER,CA,8/5/2009 10:00 +Glendora,,DISK,CA,8/5/2009 11:30 +Yelm,,TRIANGLE,WA,8/5/2009 14:05 +Red Mountain,,CIRCLE,CA,8/5/2009 14:30 +Santa Cruz,,LIGHT,CA,8/5/2009 17:00 +Valrico,,CIGAR,FL,8/5/2009 17:30 +Santa Rosa Beach,,LIGHT,FL,8/5/2009 19:30 +Roswell,ORANGE,LIGHT,NM,8/5/2009 20:45 +Kenna,,FORMATION,NM,8/5/2009 21:09 +Saginaw,,FIREBALL,MI,8/5/2009 21:30 +Clovis,,CIRCLE,CA,8/5/2009 22:00 +North Myrtle Beach,RED ORANGE,SPHERE,SC,8/5/2009 22:00 +Allegany,,DISK,NY,8/5/2009 23:30 +Portland,,TRIANGLE,OR,8/5/2009 23:30 +Clovis,,LIGHT,CA,8/6/2009 0:34 +Pico Rivera,,LIGHT,CA,8/6/2009 2:05 +West Jordan,,DISK,UT,8/6/2009 2:15 +Jupiter,RED BLUE,CIRCLE,FL,8/6/2009 6:30 +San Clemente,BLUE,OTHER,CA,8/6/2009 13:20 +Bristol,,SPHERE,CT,8/6/2009 21:10 +Bristol,ORANGE,SPHERE,CT,8/6/2009 21:10 +Santa Rosa,BLUE,LIGHT,CA,8/6/2009 21:30 +Bulverde,,LIGHT,TX,8/6/2009 21:50 +Litchfield,ORANGE,CIRCLE,SC,8/6/2009 22:22 +Westminster,,LIGHT,CO,8/7/2009 0:00 +Roanoke,ORANGE GREEN,FIREBALL,VA,8/7/2009 1:00 +Owings Mills,,TRIANGLE,MD,8/7/2009 21:00 +Troy,,FIREBALL,MO,8/7/2009 21:00 +Moreno Valley,,,CA,8/7/2009 21:40 +Detroit,RED,FIREBALL,MI,8/7/2009 22:00 +Sacramento,,CIGAR,CA,8/7/2009 22:00 +Albuquerque,GREEN,RECTANGLE,NM,8/7/2009 22:20 +Euclid,ORANGE,FIREBALL,OH,8/7/2009 22:30 +Tooele,ORANGE,OTHER,UT,8/7/2009 23:00 +Walnut Springs,,LIGHT,TX,8/8/2009 0:00 +Sudbury,,TRIANGLE,MA,8/8/2009 0:25 +Mansfield,,OTHER,TX,8/8/2009 0:30 +Sarasota,,CYLINDER,FL,8/8/2009 7:07 +Buena Vista,,LIGHT,CO,8/8/2009 20:00 +Brazil,,LIGHT,IN,8/8/2009 21:00 +Middletown,ORANGE,FIREBALL,RI,8/8/2009 21:00 +Atlanta,,SPHERE,GA,8/8/2009 21:10 +Baton Rouge,,FIREBALL,LA,8/8/2009 21:15 +Alfred,,RECTANGLE,ME,8/8/2009 21:20 +Belvidere,,,IL,8/8/2009 22:00 +Reno,,DISK,NV,8/8/2009 22:00 +Chicago,,CIRCLE,IL,8/8/2009 22:12 +Queen Creek,RED,SPHERE,AZ,8/8/2009 22:30 +Red Bud,RED,CIRCLE,IL,8/8/2009 23:00 +Blanchard,,SPHERE,MI,8/8/2009 23:10 +Homer,,OVAL,AK,8/8/2009 23:40 +San Jose,RED,LIGHT,CA,8/9/2009 0:00 +Charles Town,BLUE,CHEVRON,WV,8/9/2009 22:30 +El Dorado,RED,TEARDROP,KS,8/9/2009 23:00 +Johnson City,,TRIANGLE,NY,8/9/2009 23:00 +Fort Worth,,DISK,TX,8/9/2009 23:10 +San Jose,ORANGE,CHEVRON,CA,8/10/2009 0:08 +Yakima,GREEN,FIREBALL,WA,8/10/2009 0:45 +Houston,,LIGHT,TX,8/10/2009 12:30 +Jessup,,OTHER,PA,8/10/2009 21:14 +Salem,,CIRCLE,OR,8/10/2009 22:23 +Minot AFB,YELLOW,TRIANGLE,ND,8/10/2009 22:30 +North Huntingdon,,CIRCLE,PA,8/10/2009 22:52 +Martinez,,OVAL,CA,8/10/2009 23:00 +Louisville,,TRIANGLE,KY,8/10/2009 23:45 +Troy,,,MT,8/10/2009 23:56 +Ardmore,GREEN,OVAL,OK,8/11/2009 0:30 +Hudson,,FORMATION,FL,8/11/2009 1:04 +Trumbull,,OTHER,CT,8/11/2009 1:34 +Brigantine,,TRIANGLE,PA,8/11/2009 10:30 +N. Ft. Myers,,FORMATION,FL,8/11/2009 13:15 +Des Moines,,,IA,8/11/2009 21:00 +Arlington,,OTHER,TX,8/11/2009 21:30 +Panama City Beach,,TRIANGLE,TN,8/11/2009 22:00 +Phenix city,,TRIANGLE,AL,8/11/2009 22:00 +East Brunswick,,LIGHT,NJ,8/12/2009 1:00 +New York City,,OVAL,NY,8/12/2009 2:00 +Little Big Horn,,SPHERE,MT,8/12/2009 3:00 +Houston,,DIAMOND,TX,8/12/2009 3:04 +Grenada,,,MS,8/12/2009 4:20 +Twisp,,TEARDROP,WA,8/12/2009 12:00 +North Bergen,,,NJ,8/12/2009 12:30 +Salter Path,RED,DISK,NC,8/12/2009 21:00 +Spokane Valley,RED,LIGHT,WA,8/12/2009 22:00 +Muskegon,ORANGE,TRIANGLE,MI,8/12/2009 22:30 +Missoula,,LIGHT,MT,8/12/2009 23:30 +Greenville,,CIGAR,SC,8/13/2009 1:26 +Hilton,,SPHERE,NY,8/13/2009 1:30 +Chicago,,LIGHT,IL,8/13/2009 4:30 +San Antonio,,,TX,8/13/2009 4:55 +Grand Forks,,TRIANGLE,ND,8/13/2009 11:56 +Chesterton,RED YELLOW BLUE,LIGHT,IN,8/13/2009 21:30 +Ada,,,MI,8/13/2009 22:00 +Chicago,ORANGE,TRIANGLE,IL,8/13/2009 22:30 +Minot,,TRIANGLE,ND,8/13/2009 23:00 +Oscoda,ORANGE,,MI,8/13/2009 23:00 +Louisville,,TRIANGLE,KY,8/13/2009 23:15 +Davis,,,CA,8/13/2009 23:30 +Warsaw,,CIRCLE,VA,8/13/2009 23:40 +Battle Creek,,CIRCLE,MI,8/13/2009 23:53 +Brinnon,,CIRCLE,WA,8/14/2009 1:00 +Pleasanton,,EGG,CA,8/14/2009 4:00 +Sacramento,,SPHERE,CA,8/14/2009 4:00 +Red Lodge,,CIRCLE,MT,8/14/2009 4:42 +Yakima,,LIGHT,WA,8/14/2009 5:00 +Newark,RED YELLOW,DISK,CA,8/14/2009 8:41 +Ooltewah,,SPHERE,TN,8/14/2009 15:00 +Wells,,TRIANGLE,MA,8/14/2009 20:00 +Cross Lake,,CYLINDER,ME,8/14/2009 20:30 +Fountain,GREEN,OTHER,CO,8/14/2009 21:15 +Skidway Lake,ORANGE,DISK,MI,8/14/2009 21:45 +Chebanse,,TRIANGLE,IL,8/14/2009 22:00 +Charleston,,,SC,8/14/2009 23:00 +Shelton,,LIGHT,CT,8/14/2009 23:00 +Worcester,,SPHERE,MA,8/14/2009 23:15 +Somerset,RED BLUE,,WI,8/14/2009 23:39 +Litchfield,GREEN,FIREBALL,CT,8/14/2009 23:50 +Sorento,RED,FLASH,ME,8/15/2009 0:00 +Sterling Heights,,VARIOUS,MI,8/15/2009 0:25 +Collbran,,OVAL,CO,8/15/2009 1:00 +Amherst,RED,LIGHT,MA,8/15/2009 3:00 +Brookline,,FORMATION,MA,8/15/2009 3:00 +Port Orford,,LIGHT,OR,8/15/2009 8:00 +New York City,,FIREBALL,NY,8/15/2009 9:32 +Eldora,,RECTANGLE,IA,8/15/2009 10:00 +Prophetstown,,DISK,IL,8/15/2009 15:00 +Coleman area,,RECTANGLE,MI,8/15/2009 16:45 +Chicago,,TRIANGLE,IL,8/15/2009 20:00 +Ipswich,ORANGE,SPHERE,MA,8/15/2009 20:30 +Honolulu,,CIRCLE,HI,8/15/2009 20:37 +Port Angeles,,,WA,8/15/2009 21:00 +Burr Ridge,,CIRCLE,IL,8/15/2009 21:15 +Arlington,,OVAL,MA,8/15/2009 21:30 +Lafayette,,OTHER,IN,8/15/2009 21:50 +Bainbridge,GREEN,TRIANGLE,NY,8/15/2009 22:00 +Dracut,,FIREBALL,MA,8/15/2009 22:00 +Hayward,RED,CIRCLE,WI,8/15/2009 22:00 +Lafayette,,OTHER,IN,8/15/2009 22:00 +Wichita,,OTHER,KS,8/15/2009 22:00 +Grand Rapids,ORANGE,FIREBALL,MI,8/15/2009 22:05 +East Grand Rapids,ORANGE,LIGHT,MI,8/15/2009 22:06 +Afton,,TRIANGLE,TN,8/15/2009 22:30 +Campground Kendallville,,,IN,8/15/2009 23:00 +Simi Valley,ORANGE,FIREBALL,CA,8/15/2009 23:00 +Syracuse,RED,CIRCLE,IN,8/15/2009 23:00 +Two Harbors,,LIGHT,MN,8/15/2009 23:00 +Ray,ORANGE,FIREBALL,MI,8/15/2009 23:45 +Percilla,YELLOW,LIGHT,TX,8/15/2009 23:55 +Ocean City,ORANGE,OTHER,MD,8/15/2009 23:59 +Rose City,,FIREBALL,MI,8/15/2009 23:59 +Britt,,LIGHT,MN,8/16/2009 0:10 +Saugus,,FIREBALL,CA,8/16/2009 0:10 +Charlton,,LIGHT,MA,8/16/2009 1:00 +Londonderry,,CIRCLE,NH,8/16/2009 1:30 +Saginaw,GREEN,FIREBALL,TX,8/16/2009 10:45 +Auberry,,TRIANGLE,CA,8/16/2009 14:00 +Van Nuys,,CYLINDER,CA,8/16/2009 17:00 +Phoenix,,SPHERE,AZ,8/16/2009 21:00 +Franklin,,VARIOUS,NY,8/16/2009 21:30 +Franklin,YELLOW,VARIOUS,NY,8/16/2009 21:30 +Stanwood,,FIREBALL,MI,8/16/2009 22:00 +Oklahoma City,,LIGHT,OK,8/16/2009 22:30 +Mesa,,SPHERE,AZ,8/17/2009 2:30 +Ft. Myers,,,FL,8/17/2009 6:40 +Lithia Springs,,OVAL,GA,8/17/2009 10:00 +Goodyear,,LIGHT,AZ,8/17/2009 19:00 +Haleiwa,ORANGE,,HI,8/17/2009 20:30 +Lincoln City,GREEN,FIREBALL,OR,8/17/2009 23:00 +Marysville,RED,TRIANGLE,OH,8/17/2009 23:00 +Sedro Woolley,,OVAL,WA,8/18/2009 1:00 +Sedro Woolley,,OVAL,WA,8/18/2009 1:00 +Englewood,,CIRCLE,CO,8/18/2009 4:04 +Fresno,,OTHER,CA,8/18/2009 9:03 +Land O'Lakes,,CIGAR,FL,8/18/2009 16:00 +Omaha,,CIGAR,NE,8/18/2009 18:45 +Orient,,CIRCLE,ME,8/18/2009 19:45 +Yuma,,LIGHT,AZ,8/18/2009 21:14 +Everett,,FIREBALL,WA,8/18/2009 21:30 +Lanesville,BLUE,CHEVRON,IN,8/18/2009 22:00 +Navarre Beach,,LIGHT,FL,8/18/2009 22:00 +Lake Forest Park,,RECTANGLE,WA,8/18/2009 23:00 +Globe,,VARIOUS,AZ,8/19/2009 1:00 +Chicago,,RECTANGLE,IL,8/19/2009 5:10 +Wheeling,,TRIANGLE,IL,8/19/2009 12:28 +Gentry,,LIGHT,AR,8/19/2009 14:22 +Tallahassee area,,TRIANGLE,FL,8/19/2009 18:50 +Perryville,,TRIANGLE,NY,8/19/2009 19:50 +Westminster,,CIRCLE,MD,8/19/2009 20:45 +California,,DIAMOND,CA,8/19/2009 21:00 +Mt. Pleasant,,DISK,SC,8/19/2009 21:30 +Albuquerque,,CIGAR,NM,8/19/2009 22:00 +Leeds,,,RI,8/19/2009 22:00 +Vale,,TRIANGLE,OR,8/19/2009 22:00 +Vale,RED,TRIANGLE,OR,8/19/2009 22:00 +Weeki Wachee,BLUE,RECTANGLE,FL,8/19/2009 23:00 +Chicago,,SPHERE,IL,8/19/2009 23:30 +Escondido,,,CA,8/19/2009 23:30 +Panoche,RED GREEN,,CA,8/19/2009 23:45 +Palo Alto,,LIGHT,CA,8/20/2009 0:00 +Boynton Beach,,FIREBALL,FL,8/20/2009 1:00 +Miami Beach,,LIGHT,FL,8/20/2009 1:30 +Haleiwa,,,HI,8/20/2009 2:00 +Singers Glen,,LIGHT,VA,8/20/2009 4:37 +Sauk City,,LIGHT,WI,8/20/2009 19:00 +Augusta,,OTHER,KS,8/20/2009 21:00 +Lyle,RED,VARIOUS,WA,8/20/2009 21:00 +San Leandro,,CIRCLE,CA,8/20/2009 21:00 +Keene,RED,TRIANGLE,NH,8/20/2009 21:30 +West Chester,,LIGHT,PA,8/20/2009 21:50 +Florence,,LIGHT,MT,8/20/2009 22:00 +Parrish,,,FL,8/20/2009 22:00 +Springfield,,TRIANGLE,CO,8/20/2009 22:00 +Salt Lake City,,FORMATION,UT,8/20/2009 22:25 +Fairfield,,,CT,8/20/2009 22:30 +Normal,,LIGHT,IL,8/20/2009 23:00 +Valdosta,ORANGE,LIGHT,GA,8/20/2009 23:00 +Palatine,,LIGHT,IL,8/20/2009 23:30 +Abilene,,TRIANGLE,TX,8/21/2009 3:23 +Reno,,CIRCLE,NV,8/21/2009 4:00 +Simi Valley,,TRIANGLE,CA,8/21/2009 5:00 +Sandusky,,TEARDROP,OH,8/21/2009 8:10 +Freeport,,DIAMOND,NY,8/21/2009 19:00 +Greenville,,FLASH,KY,8/21/2009 20:34 +Brighton,ORANGE,FIREBALL,MI,8/21/2009 20:53 +Macomb Twp,,OTHER,MI,8/21/2009 21:30 +New York City,,FIREBALL,NY,8/21/2009 21:40 +St. Marys,,FIREBALL,PA,8/21/2009 21:45 +Lafayette,,SPHERE,IN,8/21/2009 22:00 +Mahwah,,FIREBALL,NJ,8/21/2009 22:15 +Lubbock,,OTHER,TX,8/21/2009 22:45 +Mandan,,LIGHT,ND,8/21/2009 23:00 +Liverpool,,LIGHT,NY,8/22/2009 0:50 +Rapid City,,LIGHT,SD,8/22/2009 3:30 +San Jose,,OVAL,CA,8/22/2009 3:45 +Warm Springs,,LIGHT,MT,8/22/2009 4:30 +Austin,,LIGHT,TX,8/22/2009 5:00 +Hoxeyville,ORANGE YELLOW,SPHERE,MI,8/22/2009 20:00 +Russellville,RED,SPHERE,AR,8/22/2009 20:00 +Fresno,BLUE,LIGHT,CA,8/22/2009 21:00 +Jacksonville,,FLASH,FL,8/22/2009 21:00 +Annandale,,LIGHT,MN,8/22/2009 21:30 +San Diego,BLUE,CIRCLE,CA,8/22/2009 21:43 +Rancho Cucamonga,,TEARDROP,CA,8/22/2009 21:50 +Flowery Branch,,LIGHT,GA,8/22/2009 22:00 +Allendale,,LIGHT,MI,8/22/2009 23:15 +Greenwich,ORANGE,CHEVRON,CT,8/23/2009 0:10 +Portland,ORANGE,SPHERE,OR,8/23/2009 0:30 +Spanish Fort,,LIGHT,AL,8/23/2009 1:00 +Little Compton,,FIREBALL,RI,8/23/2009 3:00 +Fairfield,,OVAL,IA,8/23/2009 3:17 +Minneapolis,,LIGHT,MN,8/23/2009 4:15 +San Diego,,RECTANGLE,CA,8/23/2009 13:30 +San Diego,,RECTANGLE,CA,8/23/2009 13:30 +Garden Prairie,,TRIANGLE,IL,8/23/2009 14:00 +Dallas,,OTHER,TX,8/23/2009 14:53 +Palos,,SPHERE,IL,8/23/2009 16:00 +Salyer,,CYLINDER,CA,8/23/2009 16:00 +Santa Rosa,,FIREBALL,CA,8/23/2009 20:40 +Santa Rosa,ORANGE,FIREBALL,CA,8/23/2009 20:50 +Santa Rosa,RED,SPHERE,CA,8/23/2009 21:00 +Chicago,RED ORANGE,FIREBALL,IL,8/23/2009 21:30 +Cincinnati,,FIREBALL,OH,8/23/2009 22:00 +Tustin,YELLOW,CIRCLE,CA,8/23/2009 22:00 +Winfield,,LIGHT,KS,8/23/2009 22:15 +Wallingford,,FORMATION,CT,8/23/2009 23:45 +Bell,,,CA,8/24/2009 0:00 +La Mesa,,CIRCLE,CA,8/24/2009 0:30 +Auburn,,TRIANGLE,WA,8/24/2009 1:39 +Neenah,,OTHER,WI,8/24/2009 3:45 +Lafayette,,CIRCLE,IN,8/24/2009 5:40 +Medford,,LIGHT,OR,8/24/2009 14:30 +San Antonio,,OVAL,TX,8/24/2009 15:00 +Modesto,,VARIOUS,CA,8/24/2009 17:30 +Burien,,CIGAR,WA,8/24/2009 18:19 +Kingston,,CIGAR,AR,8/24/2009 21:00 +Parker,,LIGHT,CO,8/24/2009 21:45 +Proctorville,,OTHER,OH,8/24/2009 21:50 +Athens,ORANGE,CIRCLE,OH,8/24/2009 22:00 +New York City,BLUE,LIGHT,NY,8/24/2009 23:00 +Hillsboro,,,OH,8/24/2009 23:30 +Concord,,RECTANGLE,CA,8/25/2009 4:30 +Beverly Beach,,,FL,8/25/2009 6:30 +Amesbury,,TRIANGLE,MA,8/25/2009 16:20 +Amesbury,,TRIANGLE,MA,8/25/2009 16:20 +Show Low,,,AZ,8/25/2009 17:10 +Cannon Falls,,LIGHT,MN,8/25/2009 20:00 +Kilauea,,OTHER,HI,8/25/2009 21:00 +Carmichael,,LIGHT,CA,8/25/2009 21:31 +Carmichael,,LIGHT,CA,8/25/2009 21:31 +Aliso Viejo,,LIGHT,CA,8/25/2009 21:45 +Beatty,,LIGHT,NV,8/25/2009 22:10 +Corona,,RECTANGLE,CA,8/25/2009 22:15 +Delle,,FLASH,UT,8/25/2009 23:00 +Meriden,,FIREBALL,CT,8/25/2009 23:00 +Saint Paul,,FORMATION,MN,8/25/2009 23:45 +Douglasville,GREEN,LIGHT,GA,8/26/2009 19:45 +Wailua,,LIGHT,HI,8/26/2009 20:17 +Clovis,RED,TRIANGLE,CA,8/26/2009 20:45 +Lawton,,LIGHT,OK,8/26/2009 20:50 +Modesto,,CIGAR,CA,8/26/2009 21:30 +Brookville,,LIGHT,IN,8/27/2009 0:30 +Woodinville,,CIRCLE,WA,8/27/2009 0:46 +Wellington,,DIAMOND,NV,8/27/2009 5:15 +Wheaton,,CIGAR,IL,8/27/2009 11:00 +Camas,,LIGHT,WA,8/27/2009 21:00 +Modesto,,LIGHT,CA,8/27/2009 21:00 +Parkersburg,,,WV,8/27/2009 21:00 +Farmington,,LIGHT,MO,8/27/2009 21:20 +El Paso,,OTHER,TX,8/27/2009 22:00 +Niagara Falls,,CIGAR,NY,8/27/2009 22:00 +San Diego,,FIREBALL,CA,8/27/2009 22:00 +San Rafael,,LIGHT,CA,8/27/2009 22:15 +Hillsborough,,FLASH,NJ,8/27/2009 22:33 +Green Bay,ORANGE,TEARDROP,WI,8/27/2009 22:45 +Lindsay,,LIGHT,TX,8/27/2009 23:10 +Trout Lake,RED,FIREBALL,WA,8/28/2009 1:00 +Memphis,GREEN,FIREBALL,TN,8/28/2009 1:15 +Houston,,LIGHT,TX,8/28/2009 7:20 +Albany,,DISK,NY,8/28/2009 15:26 +Rolling Hills,,TRIANGLE,CA,8/28/2009 19:20 +Westlake Village,,FLASH,CA,8/28/2009 19:56 +Gallatin,RED,LIGHT,TN,8/28/2009 20:10 +Spokane Valley,,FORMATION,WA,8/28/2009 20:30 +Spokane Valley,,FORMATION,WA,8/28/2009 20:30 +Ventura,RED BLUE,,IA,8/28/2009 21:15 +Kure Beach,ORANGE,TRIANGLE,NC,8/28/2009 22:00 +North Platte,,TRIANGLE,NE,8/28/2009 22:00 +Trenton,,RECTANGLE,NJ,8/28/2009 22:00 +Anchorage,,FORMATION,AK,8/28/2009 23:00 +Boca Raton,ORANGE,LIGHT,FL,8/29/2009 0:01 +Hayward,,TRIANGLE,CA,8/29/2009 0:10 +San Diego,,FLASH,CA,8/29/2009 2:00 +La Palma,,SPHERE,CA,8/29/2009 5:20 +Boulder City,,RECTANGLE,NV,8/29/2009 12:00 +North Adams,,CIGAR,MA,8/29/2009 13:00 +New York City,,OTHER,NY,8/29/2009 16:00 +Lake Worth,,CIRCLE,FL,8/29/2009 18:00 +Wellfleet,,RECTANGLE,MA,8/29/2009 19:25 +San Leandro,,DISK,CA,8/29/2009 20:00 +Towanda,,FIREBALL,KS,8/29/2009 20:40 +Bloomingdale,,SPHERE,IL,8/29/2009 21:00 +Huntersville,ORANGE,CYLINDER,NC,8/29/2009 21:10 +Faribault,ORANGE,TRIANGLE,MN,8/29/2009 21:15 +Arvada,,LIGHT,CO,8/29/2009 21:50 +Eugene,ORANGE,SPHERE,OR,8/29/2009 22:10 +Frankton,RED YELLOW,SPHERE,IN,8/29/2009 23:17 +Cordova,,LIGHT,IL,8/30/2009 0:22 +Newport,,CIRCLE,OR,8/30/2009 1:00 +Mountain Ranch,,LIGHT,CA,8/30/2009 4:30 +Dawn,,,VA,8/30/2009 7:17 +Bound Brook,,RECTANGLE,NJ,8/30/2009 15:00 +River Falls,ORANGE,OTHER,WI,8/30/2009 21:30 +Clarendon Hills,,CIRCLE,IL,8/30/2009 22:00 +Greenville,,CIRCLE,NY,8/30/2009 22:25 +Haysville,RED,FORMATION,KS,8/30/2009 22:47 +Cedar Glen,,LIGHT,CA,8/30/2009 23:00 +Gravette,BLUE,,AR,8/30/2009 23:00 +Escondido,,CIGAR,CA,8/31/2009 0:01 +Scottsbluff,,FLASH,NE,8/31/2009 0:05 +Leeds,,LIGHT,UT,8/31/2009 5:00 +Tuscaloosa,,LIGHT,AL,8/31/2009 5:00 +Minneapolis,,OVAL,MN,8/31/2009 13:50 +Missoula,,OTHER,MT,8/31/2009 19:45 +Iron Mountain,GREEN,LIGHT,MI,8/31/2009 20:45 +Yankeetown,,CIGAR,FL,8/31/2009 21:00 +Franklin,,SPHERE,TN,8/31/2009 22:25 +Escondido,,LIGHT,CA,8/31/2009 23:50 +Ararat,,RECTANGLE,VA,9/1/2009 4:30 +Mineral Wells,BLUE,RECTANGLE,TX,9/1/2009 4:45 +Centerville,,LIGHT,MA,9/1/2009 5:13 +Omaha,,SPHERE,NE,9/1/2009 12:00 +Columbus,,OVAL,OH,9/1/2009 12:20 +St. Paul's area,,TEARDROP,NC,9/1/2009 14:00 +Fleetwood,,SPHERE,NC,9/1/2009 18:00 +Toledo,,FIREBALL,OH,9/1/2009 20:00 +Peotone,,LIGHT,IL,9/1/2009 20:05 +Grovetown,,LIGHT,GA,9/1/2009 21:00 +Muncie,ORANGE,SPHERE,IN,9/1/2009 22:00 +Sausalito,GREEN,RECTANGLE,CA,9/1/2009 23:00 +Antioch,,CIGAR,TN,9/2/2009 0:00 +Cedar Rapids,RED BLUE,FLASH,IA,9/2/2009 1:00 +Fruita,,LIGHT,CO,9/2/2009 5:10 +Norwalk,,,CT,9/2/2009 5:20 +Skaneateles,,,NY,9/2/2009 5:40 +Healdsburg,,LIGHT,CA,9/2/2009 11:00 +Westfield,,SPHERE,IN,9/2/2009 11:00 +Charlotte,,SPHERE,NC,9/2/2009 12:05 +Rock Hill,,OTHER,SC,9/2/2009 18:00 +Butler,,,MO,9/2/2009 20:00 +Springfield,,OTHER,OR,9/2/2009 20:00 +Grand Junction,RED,,CO,9/2/2009 20:50 +Zachary,,OTHER,LA,9/2/2009 21:30 +Keokuk,,LIGHT,IA,9/2/2009 21:41 +Aurora,,LIGHT,IL,9/2/2009 22:00 +Los Angeles,,,CA,9/2/2009 22:00 +Radford,,FLASH,VA,9/3/2009 0:56 +Rio Vista,,CIGAR,CA,9/3/2009 4:49 +Bethlehem,,CIGAR,PA,9/3/2009 7:55 +North Babylon,,CIRCLE,NY,9/3/2009 19:30 +Seattle,,LIGHT,WA,9/3/2009 20:00 +Ashburn,RED,TRIANGLE,GA,9/3/2009 21:00 +L'Anse,,LIGHT,MI,9/3/2009 21:07 +Atlanta,,LIGHT,GA,9/3/2009 21:30 +S. Charleston,,VARIOUS,OH,9/3/2009 22:00 +San Diego,YELLOW GREEN,,CA,9/3/2009 22:00 +Healy,,LIGHT,AK,9/3/2009 22:30 +Lexington,,OTHER,KY,9/3/2009 23:00 +Tampa,,LIGHT,FL,9/3/2009 23:00 +Everett,,LIGHT,WA,9/3/2009 23:30 +Los Angeles,,OVAL,CA,9/3/2009 23:30 +Princeton,RED GREEN,DIAMOND,TX,9/4/2009 1:00 +Vandalia,,TRIANGLE,OH,9/4/2009 5:30 +Midlothian,BLUE,FLASH,VA,9/4/2009 8:50 +Maysville,,LIGHT,OK,9/4/2009 11:15 +Apple River,ORANGE,DISK,IL,9/4/2009 20:00 +Seven Hills,RED,FIREBALL,OH,9/4/2009 23:00 +Lombard,,CIRCLE,IL,9/4/2009 23:05 +Davenport,,LIGHT,WA,9/4/2009 23:55 +Newark,,TRIANGLE,DE,9/5/2009 4:30 +Spokane,,OTHER,WA,9/5/2009 4:30 +Fair Oaks,,OVAL,CA,9/5/2009 8:40 +Corpus Christi,,OTHER,TX,9/5/2009 9:30 +Glendora,,SPHERE,CA,9/5/2009 12:10 +Sandy,,TEARDROP,UT,9/5/2009 13:00 +La Crosse,,LIGHT,WI,9/5/2009 19:20 +Terre Haute,,FIREBALL,IN,9/5/2009 20:00 +Aurora,,,CO,9/5/2009 20:23 +Lake gGaston,,FIREBALL,NC,9/5/2009 20:30 +Lodi,,FIREBALL,NJ,9/5/2009 20:30 +Harrison Twp.,ORANGE,CIRCLE,MI,9/5/2009 20:45 +Rochester,,CIRCLE,NY,9/5/2009 20:47 +Riverside,,TEARDROP,IA,9/5/2009 21:00 +Penfield,,SPHERE,PA,9/5/2009 21:05 +Bangor,,LIGHT,ME,9/5/2009 21:15 +Monroe,,LIGHT,OH,9/5/2009 21:22 +Hendersonville,,VARIOUS,NC,9/5/2009 21:40 +Miami,,LIGHT,FL,9/6/2009 1:00 +Newton,ORANGE,OVAL,IA,9/6/2009 2:00 +Mooresville,,DISK,NC,9/6/2009 5:50 +Harrisville,,CIRCLE,MI,9/6/2009 19:57 +Graford,,SPHERE,TX,9/6/2009 20:49 +Macomb,,FIREBALL,IL,9/6/2009 21:00 +Port Saint Lucie,,LIGHT,FL,9/6/2009 21:00 +Saint Paul,,FORMATION,MN,9/6/2009 21:15 +St. Johns,RED,OVAL,MI,9/6/2009 21:45 +McAllen,,FLASH,TX,9/6/2009 22:30 +Escondido,,LIGHT,CA,9/6/2009 22:35 +Lockport,,FLASH,NY,9/6/2009 23:00 +Montrose,,CIRCLE,CA,9/7/2009 0:00 +Spring Hill,,CIRCLE,FL,9/7/2009 1:00 +Conneaut,,LIGHT,OH,9/7/2009 1:30 +Grosse Pointe,,FIREBALL,MI,9/7/2009 1:50 +Chicopee,,SPHERE,MA,9/7/2009 6:15 +Geneva,,OTHER,OH,9/7/2009 15:00 +San Jose,RED,LIGHT,CA,9/7/2009 18:00 +Wausau,,,WI,9/7/2009 18:45 +Fairfield,,LIGHT,CT,9/7/2009 19:18 +Mountain Home,,LIGHT,AR,9/7/2009 19:52 +Wells,ORANGE,SPHERE,ME,9/7/2009 20:00 +Colorado Springs,,LIGHT,CO,9/7/2009 20:27 +Antonito,,LIGHT,CO,9/7/2009 20:45 +San Jose,RED,LIGHT,CA,9/7/2009 21:05 +San Jose,RED,LIGHT,CA,9/7/2009 21:15 +Ukiah,,TRIANGLE,OR,9/7/2009 21:30 +Naples,GREEN,RECTANGLE,FL,9/7/2009 23:30 +Newbury Park,,LIGHT,CA,9/8/2009 19:45 +Los Angeles,,LIGHT,CA,9/8/2009 19:48 +Muscatine,,LIGHT,IA,9/8/2009 20:00 +Paradise,,LIGHT,CA,9/8/2009 20:00 +Tuba City,,LIGHT,AZ,9/8/2009 20:00 +Coppell,,FORMATION,TX,9/8/2009 20:15 +Eleva,,LIGHT,WI,9/8/2009 20:15 +Oxford,,LIGHT,MI,9/8/2009 20:15 +St. Charles,,FORMATION,MO,9/8/2009 20:15 +Santa Clara,,SPHERE,CA,9/8/2009 20:18 +McKinney,,LIGHT,TX,9/8/2009 20:19 +Franklin Parl,,LIGHT,IL,9/8/2009 20:20 +Carbondale,,,IL,9/8/2009 20:30 +Ely,,OTHER,MN,9/8/2009 20:30 +La Crosse,,FORMATION,WI,9/8/2009 20:30 +Anaconda,,SPHERE,MT,9/8/2009 20:50 +Isanti,,FORMATION,MN,9/8/2009 21:00 +North Topsail,,TRIANGLE,NC,9/8/2009 21:00 +Peonia,,CIRCLE,CO,9/8/2009 21:00 +Portland,,LIGHT,OR,9/8/2009 21:00 +Boca Raton,,TRIANGLE,FL,9/8/2009 21:10 +Dearborn Heights,,LIGHT,MI,9/8/2009 21:15 +Indianapolis,,,IN,9/8/2009 21:15 +Jackson,,FORMATION,MI,9/8/2009 21:15 +Millington,,,MI,9/8/2009 21:15 +Hamburg,,LIGHT,NY,9/8/2009 21:20 +Holland,,OTHER,MI,9/8/2009 21:20 +Springfield,,LIGHT,OR,9/8/2009 21:20 +Tigard,,CIRCLE,OR,9/8/2009 21:22 +Kennewick,,LIGHT,WA,9/8/2009 21:25 +Roseville,,OTHER,CA,9/8/2009 21:26 +Eaton,,SPHERE,IN,9/8/2009 21:30 +Carmel,RED,LIGHT,IN,9/8/2009 21:31 +Timonium,,CIRCLE,MD,9/8/2009 21:37 +Thornton,,LIGHT,CO,9/8/2009 22:00 +Lincoln,,LIGHT,NE,9/8/2009 22:15 +Littleton,,OTHER,CO,9/8/2009 23:00 +Holland,,CIRCLE,OH,9/9/2009 3:00 +Denver,,TRIANGLE,CO,9/9/2009 3:38 +Franklin County,,CHEVRON,AL,9/9/2009 8:17 +Mesquite,,,NV,9/9/2009 13:00 +Broomfield?Lafayette,,RECTANGLE,CO,9/9/2009 14:15 +Birmingham,,OTHER,AL,9/9/2009 17:05 +Fort Worth,,CIRCLE,TX,9/9/2009 19:32 +Haverhill,,LIGHT,MA,9/9/2009 20:10 +Hicksville,,LIGHT,NY,9/9/2009 20:10 +Poughquag,,,NY,9/9/2009 20:15 +Lyman,,LIGHT,ME,9/9/2009 20:17 +Lower Lake,,LIGHT,CA,9/9/2009 20:30 +South Elgin,,CIRCLE,IL,9/9/2009 20:40 +Ames,,LIGHT,IA,9/9/2009 20:45 +Elkton,,TRIANGLE,OR,9/9/2009 20:45 +Mountain,,LIGHT,WI,9/9/2009 20:45 +Akron,,VARIOUS,OH,9/9/2009 21:00 +Columbia,,LIGHT,MO,9/9/2009 21:00 +Wolf Point,,LIGHT,MT,9/9/2009 21:00 +Colebrook,RED,OTHER,NH,9/9/2009 21:15 +Boyne City,,TRIANGLE,MI,9/9/2009 21:40 +Fountain,,CIRCLE,MI,9/9/2009 21:42 +Albion,,LIGHT,MI,9/9/2009 22:30 +Hamilton,,OTHER,OH,9/10/2009 8:55 +Colorado Springs,,FIREBALL,CO,9/10/2009 17:00 +Mesa,,DISK,AZ,9/10/2009 18:00 +Providence,,,CT,9/10/2009 20:00 +Youngsville,,LIGHT,NY,9/10/2009 20:37 +Emmett,,CIRCLE,ID,9/10/2009 21:30 +Hayward,,SPHERE,WI,9/10/2009 21:37 +Burbank,,FORMATION,CA,9/11/2009 1:00 +West Chester,,LIGHT,OH,9/11/2009 7:05 +Paysayten Wilderness,,LIGHT,WA,9/11/2009 12:23 +Vancouver,,LIGHT,WA,9/11/2009 15:00 +Mesa,YELLOW,LIGHT,AZ,9/11/2009 16:45 +Chandler,,LIGHT,AZ,9/11/2009 18:45 +Mesa,,,AZ,9/11/2009 19:00 +Gresham,,SPHERE,OR,9/11/2009 19:32 +Paw Paw,,CIRCLE,MI,9/11/2009 20:00 +Lyman,BLUE,DISK,SC,9/11/2009 20:30 +Horseshoe Beach,,,FL,9/11/2009 20:45 +Enumclaw,,TEARDROP,WA,9/11/2009 21:00 +Escanaba,,LIGHT,MI,9/11/2009 21:00 +Gig Harbor,,SPHERE,WA,9/11/2009 21:00 +Lincoln,,CIRCLE,NE,9/11/2009 21:15 +Chicago,,VARIOUS,IL,9/11/2009 21:30 +Salem,ORANGE,SPHERE,OR,9/11/2009 21:30 +Fredericksburg,,VARIOUS,VA,9/11/2009 22:00 +Spokane,,LIGHT,WA,9/11/2009 22:00 +Leasburg,,TRIANGLE,NC,9/11/2009 23:00 +Wesley Chapel,GREEN,LIGHT,FL,9/11/2009 23:10 +Shorewood,,FIREBALL,WI,9/12/2009 2:30 +Corona,ORANGE,CIRCLE,CA,9/12/2009 10:30 +Miamisburg,,TRIANGLE,OH,9/12/2009 11:00 +Auburn,,TRIANGLE,CA,9/12/2009 11:46 +Chicago,,TEARDROP,IL,9/12/2009 12:45 +Edmonds,,CHEVRON,WA,9/12/2009 13:35 +Kelso,,CYLINDER,WA,9/12/2009 19:58 +Mossyrock,,,WA,9/12/2009 20:00 +Port Angeles,,LIGHT,WA,9/12/2009 20:10 +Pleasantville,,OTHER,NJ,9/12/2009 20:30 +Ridgecrest,,TRIANGLE,CA,9/12/2009 20:30 +Teachey,,,NC,9/12/2009 20:30 +Florissant,,FIREBALL,MO,9/12/2009 20:33 +Brookfield,,CIRCLE,WI,9/12/2009 21:00 +Brookfield,YELLOW,TRIANGLE,WI,9/12/2009 21:05 +Dorr,ORANGE,CIRCLE,MI,9/12/2009 22:00 +Inver Grove Heights,,FIREBALL,MN,9/12/2009 22:00 +Parma,,FIREBALL,OH,9/12/2009 22:00 +Encino,RED,TRIANGLE,CA,9/12/2009 22:53 +Everett,,LIGHT,WA,9/13/2009 0:00 +Marietta,,CIRCLE,OH,9/13/2009 0:30 +Walla Walla,,,WA,9/13/2009 4:00 +Charlotte,,CHEVRON,NC,9/13/2009 5:00 +Manitowoc,,LIGHT,WI,9/13/2009 19:00 +Saline,,LIGHT,MI,9/13/2009 19:30 +Modesto,,FORMATION,CA,9/13/2009 20:00 +Lyons,,LIGHT,OR,9/13/2009 20:15 +Ypsilanti,,VARIOUS,MI,9/13/2009 20:15 +Kent,,LIGHT,WA,9/13/2009 20:17 +Chicago,,OVAL,IL,9/13/2009 21:00 +Raritan Township,ORANGE,SPHERE,NJ,9/13/2009 21:00 +Winthrop,,CIRCLE,WA,9/13/2009 21:00 +Chicago,RED,TRIANGLE,IL,9/13/2009 22:30 +Gilbert,,DISK,AZ,9/13/2009 23:05 +Fontana,,CIRCLE,CA,9/14/2009 0:30 +Salt Lake City,RED,LIGHT,UT,9/14/2009 1:45 +Ann Arbor,,,MI,9/14/2009 4:30 +Somersworth,,FIREBALL,NH,9/14/2009 8:32 +Meadville,ORANGE,,PA,9/14/2009 12:00 +Phoenix,,FORMATION,AZ,9/14/2009 13:10 +Warrior,GREEN,SPHERE,AL,9/14/2009 19:40 +Vallejo,,DIAMOND,CA,9/14/2009 20:27 +Burlington,,,MA,9/14/2009 21:00 +Chesapeake,,,VA,9/14/2009 22:15 +Auburn,,,WA,9/14/2009 22:30 +Isle of Palms,,LIGHT,SC,9/14/2009 22:30 +Glendale,,OTHER,CA,9/14/2009 23:00 +Port Byron,,CIGAR,NY,9/14/2009 23:00 +Houston,,OVAL,TX,9/15/2009 4:12 +Lake Havasu City,BLUE,LIGHT,AZ,9/15/2009 7:12 +El Dorado Hills,RED BLUE,,CA,9/15/2009 8:30 +Oneonta,,OVAL,NY,9/15/2009 15:00 +Pensacola,RED,SPHERE,FL,9/15/2009 20:00 +Seaside,,LIGHT,OR,9/15/2009 20:00 +Troy,,LIGHT,PA,9/15/2009 20:30 +Mount Pleasant,,FORMATION,SC,9/15/2009 20:43 +Pass Christian,ORANGE,SPHERE,MS,9/15/2009 21:00 +Ocean Isle Beach,,LIGHT,NC,9/15/2009 21:30 +Phenix City,,,AL,9/15/2009 21:30 +Post Falls,,LIGHT,ID,9/15/2009 21:37 +Palm Bay,GREEN,LIGHT,FL,9/15/2009 22:00 +Sunset Beach,,LIGHT,NC,9/15/2009 22:00 +Renton,,SPHERE,WA,9/15/2009 22:30 +Loleta,RED GREEN,LIGHT,CA,9/15/2009 23:00 +Conroe,,CHEVRON,TX,9/16/2009 0:02 +Los Angeles,,DISK,CA,9/16/2009 0:10 +Aurora,,OVAL,CO,9/16/2009 13:20 +Ajo,,LIGHT,AZ,9/16/2009 17:00 +Columbus,,,OH,9/16/2009 17:15 +Asotin,,FLASH,WA,9/16/2009 20:30 +Kearney,BLUE,FIREBALL,MO,9/16/2009 21:00 +Lansing,,OTHER,MI,9/16/2009 21:30 +Dothan,,DIAMOND,AL,9/16/2009 21:54 +Kenova,,CIRCLE,WV,9/16/2009 22:00 +Arlington,,LIGHT,VT,9/16/2009 22:30 +Brownsdale,,VARIOUS,MN,9/17/2009 0:00 +Houston,GREEN,CIRCLE,TX,9/17/2009 0:00 +Fairborn,,,OH,9/17/2009 1:00 +Santa Cruz,,LIGHT,CA,9/17/2009 1:45 +Everett,,TRIANGLE,WA,9/17/2009 9:50 +Auburn,,TRIANGLE,CA,9/17/2009 11:50 +Clinton,RED GREEN,,CT,9/17/2009 20:19 +Greenbrook,,LIGHT,NJ,9/17/2009 20:50 +Williamsville,,TRIANGLE,NY,9/17/2009 21:10 +New Haven,,,MO,9/17/2009 22:00 +Cincinnati,ORANGE,CIRCLE,OH,9/17/2009 23:00 +Ka'anapali,RED,OVAL,HI,9/18/2009 2:00 +Huntington Beach,BLUE,LIGHT,CA,9/18/2009 4:15 +Mt.Rainier,,DISK,WA,9/18/2009 4:35 +New Rochelle,,DIAMOND,NY,9/18/2009 19:31 +Hackettstown,,LIGHT,NJ,9/18/2009 20:00 +Martinsburg,,SPHERE,WV,9/18/2009 20:00 +Portsmouth,,LIGHT,NH,9/18/2009 20:05 +Corry,,LIGHT,PA,9/18/2009 20:15 +Freehold,,LIGHT,NJ,9/18/2009 20:30 +Preston,,TRIANGLE,MO,9/18/2009 20:50 +Boise,RED,LIGHT,ID,9/18/2009 21:00 +Natrona Heights,,FIREBALL,PA,9/18/2009 21:00 +Hudson Beach,BLUE,CIRCLE,FL,9/18/2009 21:06 +Boise,RED,CIRCLE,ID,9/18/2009 21:10 +Redding,ORANGE,DISK,CA,9/18/2009 21:15 +Charlevoix,ORANGE,CIRCLE,MI,9/18/2009 21:30 +Boise,RED,LIGHT,ID,9/18/2009 21:50 +Rockville,ORANGE,OVAL,CT,9/18/2009 21:52 +St. Louis,ORANGE BLUE,FORMATION,MO,9/18/2009 22:30 +Boise,,LIGHT,ID,9/18/2009 23:00 +Philadelphia,,FIREBALL,PA,9/19/2009 3:00 +Peculiar,,OVAL,MO,9/19/2009 5:45 +Gurnee,ORANGE,FIREBALL,IL,9/19/2009 9:00 +Waterville,,SPHERE,ME,9/19/2009 12:35 +Bernalillo,RED,TEARDROP,NM,9/19/2009 17:15 +Renton,RED,TRIANGLE,WA,9/19/2009 19:00 +Lovell,,TRIANGLE,ME,9/19/2009 19:05 +Bethesda,,OVAL,OH,9/19/2009 19:15 +Amagansett,,LIGHT,NY,9/19/2009 19:30 +Joppa,,,MD,9/19/2009 19:30 +Shandanken,,LIGHT,NY,9/19/2009 19:30 +Farmington,,DISK,CT,9/19/2009 19:40 +Brookhaven Hamlet,,CIRCLE,NY,9/19/2009 19:45 +Hanover,,LIGHT,PA,9/19/2009 19:45 +Howell,,OVAL,NJ,9/19/2009 19:45 +Lisbon,BLUE,CIRCLE,ME,9/19/2009 19:45 +North Huntingdon,,LIGHT,PA,9/19/2009 19:45 +Sanford,,LIGHT,ME,9/19/2009 19:45 +Somerset,,LIGHT,NJ,9/19/2009 19:45 +Suffolk,,LIGHT,VA,9/19/2009 19:45 +Towson,,TRIANGLE,MD,9/19/2009 19:45 +Putney,,LIGHT,VT,9/19/2009 19:46 +Abingdon,,CYLINDER,MD,9/19/2009 19:50 +Auburn,,DISK,MA,9/19/2009 19:50 +Bellingham,,FLASH,MA,9/19/2009 19:50 +Berwick,,TRIANGLE,ME,9/19/2009 19:50 +Burlington,,CONE,NJ,9/19/2009 19:50 +Dundalk,,SPHERE,MD,9/19/2009 19:50 +Evans City,,TRIANGLE,PA,9/19/2009 19:50 +Harrisonburg,,DISK,VA,9/19/2009 19:50 +Howell,,CIRCLE,NJ,9/19/2009 19:50 +Leesburg,,CONE,VA,9/19/2009 19:50 +Manalapan,,CIRCLE,NJ,9/19/2009 19:50 +Pittstown,,LIGHT,NJ,9/19/2009 19:50 +Providence,,,RI,9/19/2009 19:50 +Riverhead,,CONE,NY,9/19/2009 19:50 +Sterling,,,CT,9/19/2009 19:50 +Troy,,,NY,9/19/2009 19:50 +Trumbull,,SPHERE,CT,9/19/2009 19:50 +West Grove,,LIGHT,PA,9/19/2009 19:50 +Wrightsville Beach,,DISK,NC,9/19/2009 19:50 +Colchester,,LIGHT,CT,9/19/2009 19:51 +Plainfield,,OTHER,NH,9/19/2009 19:51 +Auburn,,LIGHT,PA,9/19/2009 19:52 +Cornwall,,CONE,VT,9/19/2009 19:52 +Dundalk,,LIGHT,MD,9/19/2009 19:52 +Glens Falls,,CIRCLE,NY,9/19/2009 19:52 +Great Barrington,,LIGHT,MA,9/19/2009 19:52 +Mount Penn,,CIRCLE,PA,9/19/2009 19:52 +New Milford,,LIGHT,CT,9/19/2009 19:52 +Southbury,,CONE,CT,9/19/2009 19:52 +West Chester,,CONE,PA,9/19/2009 19:52 +Boonton,,OVAL,NJ,9/19/2009 19:53 +Wareham,,,MA,9/19/2009 19:53 +Whitinsville,,LIGHT,MA,9/19/2009 19:54 +Ellington,,LIGHT,CT,9/19/2009 19:55 +Lititz,,,PA,9/19/2009 19:55 +Newburgh,,CONE,NY,9/19/2009 19:55 +Westover,,,PA,9/19/2009 19:55 +Shelton,,CIRCLE,CT,9/19/2009 19:57 +Mount Jewettt,,TRIANGLE,PA,9/19/2009 19:58 +North Smithfield,,SPHERE,RI,9/19/2009 19:58 +Arlington,,CONE,MA,9/19/2009 20:00 +Canton,,LIGHT,OH,9/19/2009 20:00 +Chalfont,,LIGHT,PA,9/19/2009 20:00 +Chatham,,LIGHT,NJ,9/19/2009 20:00 +Columbus,ORANGE,DIAMOND,OH,9/19/2009 20:00 +Elysburg,,LIGHT,PA,9/19/2009 20:00 +Farmingdale,,LIGHT,NY,9/19/2009 20:00 +Forestburgh,,CIGAR,NY,9/19/2009 20:00 +Gibsonia,,CONE,PA,9/19/2009 20:00 +Glenside,,LIGHT,PA,9/19/2009 20:00 +Greenfield,,LIGHT,MA,9/19/2009 20:00 +Hope,,CONE,NJ,9/19/2009 20:00 +Jim Thorpe,,LIGHT,PA,9/19/2009 20:00 +Lincoln,,FIREBALL,NE,9/19/2009 20:00 +Long Beach,,LIGHT,NJ,9/19/2009 20:00 +Long Branch,,LIGHT,NJ,9/19/2009 20:00 +Marion,,LIGHT,NY,9/19/2009 20:00 +McDonough,,LIGHT,NY,9/19/2009 20:00 +Millersvill,,,PA,9/19/2009 20:00 +Neptune City,,LIGHT,NJ,9/19/2009 20:00 +Orangebury,,LIGHT,NY,9/19/2009 20:00 +Orwell,,,VT,9/19/2009 20:00 +Pittsburgh,,VARIOUS,PA,9/19/2009 20:00 +Plumsteadville,,CIRCLE,PA,9/19/2009 20:00 +Plymouth Meeting,,CONE,PA,9/19/2009 20:00 +Wallingford,,FIREBALL,CT,9/19/2009 20:00 +Bernville,,OVAL,PA,9/19/2009 20:05 +Norwalk,,CONE,CT,9/19/2009 20:05 +Fishers Island,,LIGHT,NY,9/19/2009 20:10 +Hilltown,,CONE,PA,9/19/2009 20:10 +Independent Hill,,LIGHT,VA,9/19/2009 20:10 +Wakefield,,TRIANGLE,RI,9/19/2009 20:10 +Cranston,,CONE,RI,9/19/2009 20:12 +Luray,,OVAL,VA,9/19/2009 20:15 +Sea Girt,,FIREBALL,NJ,9/19/2009 20:15 +North Kingstown,,LIGHT,RI,9/19/2009 20:23 +Cape Elizabeth,,CIRCLE,ME,9/19/2009 20:30 +Easton,,OTHER,MD,9/19/2009 20:30 +Lamar,,CIRCLE,PA,9/19/2009 20:30 +Pennsburg,,CONE,PA,9/19/2009 20:30 +Scotch Plains,,LIGHT,NJ,9/19/2009 20:30 +Washington Twp,,FLASH,NJ,9/19/2009 20:30 +Beachwood,,LIGHT,NJ,9/19/2009 21:00 +Brogue,,LIGHT,PA,9/19/2009 21:00 +Kresgeville,,OVAL,PA,9/19/2009 21:00 +Hyndman,,OTHER,PA,9/19/2009 21:04 +Lusby,,,MD,9/19/2009 21:15 +Austintown,,,OH,9/19/2009 21:19 +Parkland,,LIGHT,WA,9/19/2009 21:19 +East Hampton,,CIRCLE,NY,9/19/2009 21:30 +West Chester,,FORMATION,PA,9/19/2009 21:37 +Lancaster,,LIGHT,PA,9/19/2009 21:54 +Minneapolis,,LIGHT,MN,9/19/2009 21:55 +Dartmouth,,TEARDROP,MA,9/19/2009 22:00 +Jacksonville,ORANGE,FORMATION,FL,9/19/2009 22:00 +Shawville,,LIGHT,PA,9/19/2009 22:00 +Walled Lake,ORANGE,CIRCLE,MI,9/19/2009 22:00 +West Chester,,FIREBALL,PA,9/19/2009 22:15 +Zumbrota,,OTHER,MN,9/19/2009 23:08 +San Diego,,,CA,9/19/2009 23:20 +Westbrook,,LIGHT,CT,9/19/2009 23:30 +Romney,,LIGHT,WV,9/19/2009 23:50 +Ansonia,,CIRCLE,CT,9/20/2009 0:45 +Mahanoy City,RED ORANGE,LIGHT,PA,9/20/2009 0:45 +Duluth,ORANGE,FIREBALL,MN,9/20/2009 0:47 +Vernon,GREEN,CIRCLE,CT,9/20/2009 0:50 +Hudson,,LIGHT,NH,9/20/2009 1:00 +Osceola to Kansas City,,LIGHT,IA,9/20/2009 2:00 +San Marcos,,TRIANGLE,TX,9/20/2009 2:00 +Missoula,,FIREBALL,MT,9/20/2009 3:00 +Alpharetta,,LIGHT,GA,9/20/2009 3:56 +Placitas,,LIGHT,NM,9/20/2009 6:00 +Highland,BLUE,OVAL,NY,9/20/2009 13:00 +Plattsmouth,,CIGAR,NE,9/20/2009 15:14 +Deer Isle,,LIGHT,ME,9/20/2009 18:00 +Anaheim,RED,LIGHT,CA,9/20/2009 19:40 +Wantagh,,LIGHT,NY,9/20/2009 20:00 +Franklin,,DISK,NH,9/20/2009 20:15 +Valrico,BLUE,FLASH,FL,9/20/2009 20:15 +Santo,,CIRCLE,TX,9/20/2009 20:20 +North Haven,,CYLINDER,CT,9/20/2009 21:00 +Springfield,,TRIANGLE,OR,9/20/2009 21:30 +Auburn,,LIGHT,MA,9/20/2009 22:00 +Modesto,,LIGHT,CA,9/20/2009 22:30 +Lexington,,CIRCLE,NC,9/20/2009 22:45 +Porterville,RED ORANGE BLUE,SPHERE,CA,9/20/2009 23:30 +Seattle,,TRIANGLE,WA,9/21/2009 5:30 +Kingwood,BLUE,LIGHT,TX,9/21/2009 21:00 +Compton,,LIGHT,CA,9/21/2009 21:45 +Bastrop,,SPHERE,TX,9/21/2009 22:00 +Renton,,LIGHT,WA,9/21/2009 22:15 +Island Pond,,LIGHT,VT,9/22/2009 2:00 +Charlotte,,LIGHT,NC,9/22/2009 5:30 +Jackson,,,TN,9/22/2009 15:05 +Benbrook,,LIGHT,TX,9/22/2009 20:00 +Fairfield,ORANGE,SPHERE,OH,9/22/2009 20:40 +Big Bear City,,LIGHT,CA,9/22/2009 23:00 +Meridian,,DISK,ID,9/23/2009 1:00 +Prescott,,FLASH,AZ,9/23/2009 2:00 +Cheyenne,,OVAL,WY,9/23/2009 4:30 +Olathe,,LIGHT,KS,9/23/2009 6:00 +Bradenton,,LIGHT,FL,9/23/2009 6:15 +Davis,,LIGHT,CA,9/23/2009 16:30 +Flowood,,OTHER,MS,9/23/2009 18:00 +Aurora,RED,,IL,9/23/2009 20:00 +Everett,ORANGE GREEN BLUE,LIGHT,WA,9/23/2009 21:00 +San Diego,,LIGHT,CA,9/23/2009 21:00 +Butler,,CYLINDER,MO,9/23/2009 22:00 +Salida,,CIGAR,CA,9/23/2009 22:30 +Johnson City,RED,LIGHT,TN,9/23/2009 23:00 +Lancaster,,OTHER,CA,9/23/2009 23:00 +Cambridge,RED ORANGE,FORMATION,NH,9/24/2009 0:00 +Kennesaw,,LIGHT,GA,9/24/2009 0:00 +Marietta,,OTHER,GA,9/24/2009 0:00 +Phoenix,ORANGE,DISK,AZ,9/24/2009 0:25 +Tacoma,BLUE,LIGHT,WA,9/24/2009 1:00 +Hamilton,,FIREBALL,GA,9/24/2009 20:15 +Hamilton,,FIREBALL,GA,9/24/2009 20:15 +Eaton Rapids,,LIGHT,MI,9/24/2009 21:30 +McDonough,GREEN,CIRCLE,GA,9/24/2009 22:00 +Norwalk,,SPHERE,CA,9/24/2009 22:13 +Columbia,,FORMATION,SC,9/25/2009 2:30 +Vernal,,SPHERE,UT,9/25/2009 8:30 +Guffey,YELLOW,LIGHT,CO,9/25/2009 20:00 +Martindale,,VARIOUS,TX,9/25/2009 20:45 +Fayetteville,,LIGHT,AR,9/25/2009 20:59 +Coon Rapids,RED BLUE,CIGAR,MN,9/25/2009 21:00 +Fryeburg,,FLASH,ME,9/25/2009 21:00 +Spencer,,VARIOUS,IA,9/25/2009 21:15 +Alma,,,AR,9/25/2009 21:30 +Wakefield,,LIGHT,RI,9/25/2009 22:30 +Durango,RED,LIGHT,CO,9/25/2009 23:30 +Corona,,OTHER,CA,9/26/2009 0:00 +Prescott,,LIGHT,AZ,9/26/2009 5:00 +Manchester,,SPHERE,NH,9/26/2009 12:00 +San Jose,,LIGHT,CA,9/26/2009 13:05 +Millbrae,,CIRCLE,CA,9/26/2009 17:50 +Tempe,,CIRCLE,AZ,9/26/2009 19:18 +Phoenix,,LIGHT,AZ,9/26/2009 19:20 +Greenwich,GREEN,CIRCLE,CT,9/26/2009 19:30 +Las Vegas,,LIGHT,NV,9/26/2009 19:30 +Glendale,,LIGHT,AZ,9/26/2009 20:00 +Mineola,,LIGHT,TX,9/26/2009 20:00 +Fort Wayne,,DISK,IN,9/26/2009 20:30 +Oregon City,ORANGE,SPHERE,OR,9/26/2009 20:50 +San Antonio,,,TX,9/26/2009 21:15 +Brownstown,,OVAL,MI,9/26/2009 22:00 +Fort Calhoun,,,NE,9/26/2009 22:00 +Greeley,,OTHER,CO,9/26/2009 23:00 +Azusa,,LIGHT,CA,9/26/2009 23:40 +Moreno Valley,,LIGHT,CA,9/26/2009 23:45 +Shoals,,TRIANGLE,IN,9/27/2009 1:30 +Randle,,DISK,WA,9/27/2009 2:39 +Anthony,,,FL,9/27/2009 5:00 +Portland,,CIRCLE,OR,9/27/2009 15:00 +Aylett,,LIGHT,VA,9/27/2009 16:38 +Irwindale,,SPHERE,CA,9/27/2009 19:44 +Key West,,OVAL,FL,9/27/2009 20:00 +Denton,,LIGHT,TX,9/27/2009 20:08 +Modesto,BLUE,LIGHT,CA,9/27/2009 20:30 +Rahway,,CIRCLE,NJ,9/27/2009 22:00 +West Palm Beach,,FIREBALL,FL,9/27/2009 22:30 +Westport,,DISK,CT,9/27/2009 23:00 +Fort Worth,,OTHER,TX,9/28/2009 4:15 +Moreno Valley,,OTHER,CA,9/28/2009 17:15 +Fort Lauderdale,,SPHERE,FL,9/28/2009 20:05 +Garden City,,LIGHT,KS,9/28/2009 20:25 +Orlando,,LIGHT,FL,9/28/2009 21:30 +Green Bay,RED GREEN,TRIANGLE,WI,9/28/2009 22:00 +Modesto,,LIGHT,CA,9/28/2009 23:00 +Nacogdoches,,RECTANGLE,TX,9/29/2009 19:00 +Winston-Salem,,FLASH,NC,9/29/2009 22:00 +Huntsville,RED,LIGHT,AL,9/30/2009 1:14 +Clay Springs,,DISK,AZ,9/30/2009 7:36 +Houston,,CIRCLE,TX,9/30/2009 19:30 +St. Louis,,DISK,MO,9/30/2009 19:35 +Lincolnshire,,TRIANGLE,IL,9/30/2009 21:00 +Barrington,,LIGHT,IL,9/30/2009 21:30 +Port St. Lucie,RED,CIGAR,FL,9/30/2009 22:30 +Grafton,,LIGHT,WV,10/1/2009 0:00 +Redding,,OTHER,CA,10/1/2009 0:00 +Hogansville,,DISK,GA,10/1/2009 4:30 +Pawtucket,RED,CYLINDER,RI,10/1/2009 8:00 +Canton,,TRIANGLE,MI,10/1/2009 9:00 +Coitsville,,OVAL,OH,10/1/2009 9:45 +Whitefield,,LIGHT,OK,10/1/2009 15:38 +Memphis,,OVAL,TN,10/1/2009 18:00 +Grafton,,SPHERE,WV,10/1/2009 19:00 +Providence,RED BLUE,DISK,RI,10/1/2009 20:00 +Beaver,,LIGHT,OH,10/1/2009 20:30 +Belmont,,TRIANGLE,MS,10/1/2009 22:30 +Belleview,BLUE,CIRCLE,FL,10/1/2009 23:00 +Fairfield,,LIGHT,CT,10/1/2009 23:00 +Farmington,,,MO,10/2/2009 3:00 +New York City,,OTHER,NY,10/2/2009 6:40 +Jacksonville,,LIGHT,FL,10/2/2009 10:30 +Denver,,LIGHT,CO,10/2/2009 18:45 +Colorado Springs,,LIGHT,CO,10/2/2009 21:00 +Dandridge,,DISK,TN,10/2/2009 21:52 +McGill,,LIGHT,NV,10/2/2009 22:00 +Modesto,BLUE,CYLINDER,CA,10/2/2009 22:00 +Visalia,,CIGAR,CA,10/2/2009 23:00 +Raleigh,,CIRCLE,NC,10/3/2009 0:15 +Linton,,CIRCLE,IN,10/3/2009 1:00 +Hampden,,LIGHT,ME,10/3/2009 3:30 +Cleveland,,CYLINDER,TN,10/3/2009 15:10 +Lawrence,,SPHERE,KS,10/3/2009 19:30 +Lakewood,,TRIANGLE,WA,10/3/2009 20:30 +Trenton,,FORMATION,NC,10/3/2009 21:30 +Lebanon,,SPHERE,TN,10/3/2009 21:43 +Mill Valley,,OTHER,CA,10/3/2009 22:00 +Tukwila,,CIRCLE,WA,10/3/2009 22:30 +Austin,,SPHERE,TX,10/3/2009 23:00 +Roanoke,,LIGHT,VA,10/3/2009 23:00 +St. Petersburg,GREEN,FIREBALL,FL,10/3/2009 23:00 +Hermitage,GREEN,FORMATION,PA,10/4/2009 2:15 +New York City,,OTHER,NY,10/4/2009 15:30 +Ewa Beach,RED GREEN BLUE,CIRCLE,HI,10/4/2009 19:00 +Eldridge,ORANGE,LIGHT,IA,10/4/2009 20:45 +Orlando,,SPHERE,FL,10/4/2009 21:00 +Utica,,LIGHT,NY,10/4/2009 23:00 +West Palm Beach,,SPHERE,FL,10/5/2009 0:00 +Madison,,FIREBALL,WI,10/5/2009 1:45 +Loveland,,LIGHT,OH,10/5/2009 10:30 +Darlington,ORANGE,LIGHT,SC,10/5/2009 20:00 +Eagle,,FIREBALL,ID,10/5/2009 20:10 +Humansville,RED,SPHERE,MO,10/5/2009 21:00 +Mebane,,OTHER,NC,10/5/2009 22:00 +Newark,,CIRCLE,NJ,10/6/2009 2:40 +Tinley Park,,OTHER,IL,10/6/2009 9:00 +Ashburn,,DISK,VA,10/6/2009 14:30 +Durango,,LIGHT,CO,10/6/2009 19:36 +Gila Bend,,LIGHT,AZ,10/6/2009 20:00 +Gary,,LIGHT,IN,10/6/2009 20:45 +Hamlin,,LIGHT,NY,10/7/2009 5:15 +East Dublin,,LIGHT,GA,10/7/2009 10:42 +Wilkesboro,RED,,NC,10/7/2009 16:50 +Kaunakakai,BLUE,OTHER,HI,10/7/2009 18:33 +Wilmington,,TRIANGLE,NC,10/7/2009 19:00 +Seattle,,OTHER,WA,10/7/2009 20:10 +Los Angeles,,CIRCLE,CA,10/7/2009 22:55 +Port Jefferson Station,,LIGHT,NY,10/8/2009 1:12 +Bradenton,,,FL,10/8/2009 6:27 +Franklin,,LIGHT,GA,10/8/2009 7:15 +Jonesborough,,DISK,TN,10/8/2009 10:00 +Angier,,OVAL,NC,10/8/2009 12:00 +Pawleys Island,,LIGHT,SC,10/8/2009 20:30 +Myrtle Beach,,SPHERE,SC,10/8/2009 21:00 +Shallotte,ORANGE,CIRCLE,NC,10/8/2009 21:00 +Gila Bend,,FORMATION,AZ,10/8/2009 21:30 +Myrtle Beach,,LIGHT,SC,10/8/2009 21:30 +Kearny,,CYLINDER,NJ,10/9/2009 1:15 +New York,,CIRCLE,NY,10/9/2009 9:00 +Wichita,,OTHER,KS,10/9/2009 9:15 +Simi Valley,RED,CIGAR,CA,10/9/2009 10:00 +Sale Creek,,DISK,TN,10/9/2009 18:30 +Escondido,,TRIANGLE,CA,10/9/2009 19:30 +New York City,,,NY,10/9/2009 19:30 +Redington Shores,,LIGHT,FL,10/9/2009 19:52 +Aspermont,,LIGHT,TX,10/9/2009 20:30 +Wilmington,RED,OVAL,NC,10/9/2009 20:45 +Grand Forks,,TRIANGLE,ND,10/9/2009 21:30 +Union Beach,RED,CHEVRON,NJ,10/9/2009 21:40 +New Mexico,,CONE,NM,10/9/2009 23:00 +Crested Butte,,EGG,CO,10/10/2009 12:00 +Tulsa,,,OK,10/10/2009 12:42 +Eagar,,,AZ,10/10/2009 16:24 +Suffolk,GREEN,,VA,10/10/2009 19:30 +Anaheim,,LIGHT,CA,10/10/2009 20:30 +Wilmington,,LIGHT,NC,10/10/2009 20:45 +Leesburg,,DISK,VA,10/10/2009 21:00 +Thief River Falls,ORANGE,OTHER,MN,10/10/2009 22:30 +Michigan City,,VARIOUS,IN,10/10/2009 23:00 +Cupertino,RED,LIGHT,CA,10/10/2009 23:23 +Sedro Woolley,,,WA,10/11/2009 0:00 +Deer Park,ORANGE,OTHER,NY,10/11/2009 2:45 +Crisfield,,LIGHT,MD,10/11/2009 4:00 +Plymouth,,TRIANGLE,MI,10/11/2009 9:45 +Glendale,,EGG,AZ,10/11/2009 12:30 +Louisville,,DISK,KY,10/11/2009 18:00 +Rowlett,,DISK,TX,10/11/2009 18:00 +West Palm Beach,,OVAL,FL,10/11/2009 18:05 +North Smithfield,,CIRCLE,RI,10/11/2009 19:00 +Putnamville,,FLASH,IN,10/11/2009 19:50 +Madison,ORANGE,LIGHT,WI,10/11/2009 21:55 +Bishop,,,WV,10/12/2009 0:30 +Dover,,,NH,10/12/2009 7:00 +Mcdonough,,FORMATION,GA,10/12/2009 11:00 +Yakima,,LIGHT,WA,10/12/2009 20:00 +San Juan,,,TX,10/12/2009 20:30 +Houston,,LIGHT,TX,10/12/2009 22:00 +Cushing,,FLASH,TX,10/12/2009 23:00 +Boston,,LIGHT,MA,10/13/2009 5:00 +Jackson,,LIGHT,NJ,10/13/2009 6:30 +Troy,,CIRCLE,NY,10/13/2009 6:30 +Bend,,LIGHT,OR,10/13/2009 7:03 +Little River,,LIGHT,SC,10/13/2009 20:00 +Stockton,,LIGHT,CA,10/13/2009 20:30 +Minersville,,SPHERE,PA,10/13/2009 22:00 +Crookston,,TRIANGLE,MN,10/13/2009 23:10 +Fresno,,OTHER,CA,10/14/2009 1:30 +Honolulu,,CIRCLE,HI,10/14/2009 2:20 +Concord,,VARIOUS,CA,10/14/2009 9:00 +Avoca,,FORMATION,MI,10/14/2009 19:00 +Syracuse,,CROSS,NY,10/14/2009 19:05 +Reno,,LIGHT,NV,10/14/2009 20:30 +New York City,,OVAL,NY,10/14/2009 21:37 +Creswell,BLUE,FIREBALL,OR,10/14/2009 22:00 +Olathe,,OTHER,KS,10/15/2009 14:00 +Winchester,,VARIOUS,TN,10/15/2009 14:00 +Ozark,,OTHER,AL,10/15/2009 18:00 +Tucumcari,,TEARDROP,NM,10/15/2009 18:00 +Houston,,LIGHT,TX,10/15/2009 20:15 +Quincy,,TRIANGLE,FL,10/15/2009 20:30 +Davis,,LIGHT,WV,10/15/2009 22:00 +LaGrangeville,,CYLINDER,NY,10/15/2009 22:00 +Seattle,,LIGHT,WA,10/15/2009 22:00 +Lancaster,BLUE,FLASH,SC,10/15/2009 22:50 +Dothan,,FLASH,AL,10/15/2009 23:00 +Kissimmee,,TRIANGLE,FL,10/16/2009 0:00 +Los Angeles,RED GREEN BLUE,LIGHT,CA,10/16/2009 1:00 +Coral Springs,,,FL,10/16/2009 3:32 +Tulsa,,LIGHT,OK,10/16/2009 5:19 +Pomona,,,CA,10/16/2009 7:02 +Garden Grove,,TRIANGLE,CA,10/16/2009 13:00 +San Jose,,LIGHT,CA,10/16/2009 15:50 +Laporte,,LIGHT,IN,10/16/2009 20:00 +Rowlett,,CIRCLE,TX,10/16/2009 20:00 +Casa Grande,,TRIANGLE,AZ,10/16/2009 21:00 +Haltom,,LIGHT,TX,10/16/2009 22:00 +Sugar Land,,TRIANGLE,TX,10/16/2009 22:00 +Murrieta,,CIRCLE,CA,10/17/2009 0:00 +Los Angeles,,OTHER,CA,10/17/2009 1:45 +Hermitage,ORANGE,FORMATION,PA,10/17/2009 1:50 +Littlerock,,TRIANGLE,CA,10/17/2009 6:30 +Poughkeepsie,,LIGHT,NY,10/17/2009 8:30 +St. Cloud,ORANGE,LIGHT,MN,10/17/2009 12:50 +Buffalo,,CIGAR,NY,10/17/2009 14:00 +San Jose,,SPHERE,CA,10/17/2009 15:00 +Amarillo,,SPHERE,TX,10/17/2009 18:30 +Lakeside,,LIGHT,CA,10/17/2009 19:15 +Lubbock,,CIRCLE,TX,10/17/2009 19:30 +Lubbock,,LIGHT,TX,10/17/2009 19:35 +Manchester,,CHEVRON,MO,10/17/2009 20:40 +Hyde Park,,SPHERE,NY,10/17/2009 21:00 +Maple Lake,,FIREBALL,MN,10/17/2009 21:30 +Boulder,,TRIANGLE,CO,10/17/2009 21:40 +West Palm Beach,,TRIANGLE,FL,10/17/2009 21:50 +Juno Beach,,LIGHT,FL,10/17/2009 22:00 +Warner,RED,LIGHT,NH,10/17/2009 22:00 +Raleigh,,,NC,10/18/2009 0:00 +Great Falls,,DIAMOND,MT,10/18/2009 1:25 +Milwaukee,,,WI,10/18/2009 4:00 +St. Paul,,LIGHT,MN,10/18/2009 20:00 +Ft. Lauderdade,,OTHER,FL,10/18/2009 22:00 +Mount Laurel,,CIRCLE,NJ,10/19/2009 0:50 +Dayton,,LIGHT,OH,10/19/2009 1:30 +Hanover Park,,OVAL,IL,10/19/2009 6:15 +Detroit,,OTHER,MI,10/19/2009 18:30 +West Dennis,,SPHERE,MA,10/19/2009 19:15 +Horseshoe Lake,RED,,NY,10/19/2009 19:30 +Sidney,,LIGHT,TX,10/19/2009 20:30 +Vya,,LIGHT,NV,10/19/2009 21:00 +Radcliff,,OTHER,KY,10/20/2009 0:20 +Burnsville,,VARIOUS,NC,10/20/2009 1:55 +Cincinnati,,CIRCLE,OH,10/20/2009 5:30 +Duluth,,SPHERE,GA,10/20/2009 9:00 +Falls Village,,CIGAR,CT,10/20/2009 12:59 +Danville,GREEN,RECTANGLE,AL,10/20/2009 13:00 +Falls Village,,TRIANGLE,CT,10/20/2009 13:00 +St. Louis,,LIGHT,MO,10/20/2009 18:58 +Cincinnati,,LIGHT,OH,10/20/2009 20:30 +Fayetteville,BLUE,LIGHT,GA,10/20/2009 21:00 +Brookings,,FORMATION,OR,10/20/2009 22:40 +Ottumwa,,LIGHT,IA,10/20/2009 23:00 +Tucson,,LIGHT,AZ,10/21/2009 0:00 +Tucson,,LIGHT,AZ,10/21/2009 0:00 +Cookeville,,VARIOUS,TN,10/21/2009 1:30 +Englewood,,CIGAR,FL,10/21/2009 13:20 +Canyon Country,RED,LIGHT,CA,10/21/2009 18:00 +Henderson,,,NV,10/21/2009 19:35 +Hollister,,OVAL,MO,10/21/2009 20:00 +Knoxville,,,IL,10/21/2009 20:45 +Deep Gap,,DISK,NC,10/22/2009 0:00 +Sweet Home,,OTHER,OR,10/22/2009 3:15 +Franklin,,OVAL,LA,10/22/2009 6:10 +Emmaus,,,PA,10/22/2009 20:15 +Houston,,OTHER,TX,10/22/2009 20:37 +West Columbia,,FLASH,SC,10/22/2009 23:45 +Berea,,LIGHT,KY,10/23/2009 18:30 +Waynesville,RED BLUE,,MO,10/23/2009 19:05 +In flight,,,TX,10/23/2009 20:30 +Milpitas,ORANGE,CIRCLE,CA,10/23/2009 23:16 +Midwest City,,OTHER,OK,10/24/2009 0:15 +Tulsa,BLUE,CIRCLE,OK,10/24/2009 3:00 +Fontana,,CIRCLE,CA,10/24/2009 7:00 +Crestline,,OVAL,CA,10/24/2009 10:25 +Maryland Heights,,OTHER,MO,10/24/2009 16:15 +West Palm Beach,,SPHERE,FL,10/24/2009 17:24 +Tell City,RED,TEARDROP,IN,10/24/2009 19:30 +South Bend,,TRIANGLE,IN,10/24/2009 20:00 +Royal Palm Beach,,OTHER,FL,10/24/2009 20:30 +Crystal Lake,ORANGE,CYLINDER,IL,10/24/2009 20:35 +Colorado Springs,,VARIOUS,CO,10/24/2009 23:00 +Santa Rosa,,LIGHT,CA,10/24/2009 23:20 +Ft. Gratiot,,CIGAR,MI,10/25/2009 7:00 +Bath,,,NY,10/25/2009 7:07 +El Cajon,,CIRCLE,CA,10/25/2009 11:00 +Gardnerville,,CIRCLE,NV,10/25/2009 11:33 +Lavalette,,CIRCLE,WV,10/25/2009 16:00 +Sturgeon Bay,,OVAL,WI,10/25/2009 18:15 +The Woodlands,,,TX,10/25/2009 19:55 +Hemet,,RECTANGLE,CA,10/25/2009 20:30 +Hemet,,TRIANGLE,CA,10/25/2009 20:45 +Seattle,,,WA,10/26/2009 3:30 +Hooksett,,TRIANGLE,NH,10/26/2009 6:05 +Las Vegas,,OVAL,NV,10/26/2009 17:30 +Streetsboro,,TRIANGLE,OH,10/26/2009 18:00 +Raleigh,RED,LIGHT,NC,10/26/2009 20:25 +Chester,,LIGHT,CA,10/26/2009 20:45 +Collingdale,,LIGHT,PA,10/26/2009 20:50 +Babylon,,FIREBALL,NY,10/26/2009 21:00 +Colchester,,CIRCLE,VT,10/27/2009 1:04 +Henderson,,CIRCLE,NV,10/27/2009 6:00 +Denton,,,TX,10/27/2009 17:30 +Kaneohe,,,HI,10/27/2009 18:20 +Phoenix,BLUE,LIGHT,AZ,10/27/2009 18:25 +McAllen,,OTHER,TX,10/27/2009 18:30 +San Pedro,,SPHERE,CA,10/27/2009 20:00 +Sam Miguel,,FIREBALL,CA,10/27/2009 21:16 +Jupiter,,LIGHT,FL,10/27/2009 22:00 +Trenton,,FORMATION,NJ,10/27/2009 22:45 +Oakland,BLUE,CIRCLE,CA,10/28/2009 1:00 +Monkton,ORANGE BLUE,OTHER,MD,10/28/2009 18:00 +Ellensberg,,FIREBALL,WA,10/28/2009 18:58 +Santa Clarita County,,,CA,10/28/2009 19:30 +Selah,ORANGE,,WA,10/28/2009 19:30 +Durham,,LIGHT,NC,10/28/2009 19:45 +Merritt Island,,CIRCLE,FL,10/28/2009 21:05 +Crestline,,,CA,10/28/2009 21:30 +Santa Clarita,,TRIANGLE,CA,10/28/2009 21:30 +Surf City,,FLASH,NC,10/28/2009 23:52 +San Francisco,,LIGHT,CA,10/29/2009 4:15 +Bellevue,,OTHER,TN,10/29/2009 17:33 +Glendale,,FORMATION,AZ,10/29/2009 20:00 +Centerville,,RECTANGLE,OH,10/29/2009 20:15 +Batavia,,FORMATION,OH,10/29/2009 20:30 +New Vienna,,,OH,10/29/2009 20:45 +Hamilton,,LIGHT,OH,10/29/2009 21:00 +New Vienna,,CIGAR,OH,10/29/2009 21:15 +New York City,,CIRCLE,NY,10/30/2009 15:00 +Dayton,,TRIANGLE,TX,10/30/2009 21:00 +Anaheim,ORANGE,DIAMOND,CA,10/30/2009 22:20 +Riverside,ORANGE,LIGHT,CA,10/30/2009 22:30 +Belen,RED,FORMATION,NM,10/31/2009 11:15 +Chesterton,ORANGE,CIRCLE,IN,10/31/2009 18:00 +Indianapolis,,FIREBALL,IN,10/31/2009 19:00 +Chicago,ORANGE,FIREBALL,IL,10/31/2009 19:20 +Camas,ORANGE,CIRCLE,WA,10/31/2009 19:35 +Omaha,ORANGE,SPHERE,NE,10/31/2009 20:00 +Springville,,TRIANGLE,CA,10/31/2009 20:00 +Hastings,,OVAL,MN,10/31/2009 20:30 +Santa Monica,ORANGE,TRIANGLE,CA,10/31/2009 21:30 +Corpus Christi,RED,OVAL,TX,10/31/2009 22:00 +Redding,,VARIOUS,CA,11/1/2009 1:48 +Ottumwa,,SPHERE,IA,11/1/2009 16:15 +North Charleston,,RECTANGLE,SC,11/1/2009 17:00 +New Albany,,OVAL,IN,11/1/2009 17:20 +Redondo Beach,,TRIANGLE,CA,11/1/2009 18:06 +Richmond,,TRIANGLE,VA,11/1/2009 18:30 +Corpus Christi,,,TX,11/1/2009 20:00 +Post,GREEN,LIGHT,TX,11/1/2009 20:40 +Merrillville,,DISK,IN,11/1/2009 21:00 +Tampa,,TRIANGLE,FL,11/1/2009 21:15 +El Dorado Hills,,LIGHT,CA,11/1/2009 21:25 +Paterson,,TRIANGLE,NJ,11/1/2009 23:00 +West Palm Beach,,VARIOUS,FL,11/2/2009 9:00 +Bainbridge Island,,FLASH,WA,11/2/2009 18:00 +Coos Bay,GREEN,CIRCLE,OR,11/2/2009 20:30 +Madison,,TRIANGLE,OH,11/2/2009 21:00 +Omaha,,LIGHT,NE,11/2/2009 21:00 +Liverpool,,CROSS,NY,11/2/2009 21:30 +Gatesville,RED,RECTANGLE,TX,11/2/2009 22:40 +Glen Ellyn,,EGG,IL,11/3/2009 0:00 +Springfield,,DISK,MO,11/3/2009 0:11 +Laurel,,SPHERE,MD,11/3/2009 15:45 +Oklahoma City,,OTHER,OK,11/3/2009 18:50 +Wellington,,DISK,FL,11/3/2009 19:00 +Fuquay Varina,,LIGHT,NC,11/3/2009 19:30 +Mechanicsburg,,OTHER,PA,11/3/2009 22:05 +Rockford,,LIGHT,MI,11/4/2009 16:30 +Toms River,,,NJ,11/4/2009 17:45 +Pleasanton,,OTHER,CA,11/4/2009 18:00 +Salem,,TRIANGLE,OR,11/4/2009 18:30 +Wellton,,LIGHT,AZ,11/4/2009 20:15 +North Bergen,BLUE,DISK,NJ,11/5/2009 0:45 +Valencia,,LIGHT,CA,11/5/2009 5:00 +Beloit,,FIREBALL,WI,11/5/2009 18:33 +Fort Walton Beach,,TRIANGLE,FL,11/5/2009 19:30 +Grapevine,,LIGHT,TX,11/5/2009 19:45 +Aventura,,LIGHT,FL,11/5/2009 21:00 +Franklinton,,FIREBALL,NC,11/5/2009 22:45 +Plant City,,OTHER,FL,11/5/2009 23:00 +Ponchatoula,,FIREBALL,LA,11/5/2009 23:59 +Gulfport,,,MS,11/6/2009 7:00 +Tampa,,CIGAR,FL,11/6/2009 8:15 +Austin,,CIGAR,TX,11/6/2009 16:05 +Biloxi,,CIRCLE,MS,11/6/2009 18:00 +Longmont,,LIGHT,CO,11/6/2009 18:20 +Farmington,RED,DISK,NM,11/6/2009 21:45 +Cincinnati,YELLOW,DIAMOND,OH,11/7/2009 0:00 +Hopkins,,LIGHT,MN,11/7/2009 2:30 +Chambersburg,,CIRCLE,PA,11/7/2009 7:18 +Saline Valley,,,CA,11/7/2009 9:00 +Honolulu,,OTHER,HI,11/7/2009 10:26 +Reno,,CYLINDER,NV,11/7/2009 16:45 +Erlanger,,,KY,11/7/2009 19:52 +Ft. Mitchell,,LIGHT,KY,11/7/2009 20:54 +Louisville,,DIAMOND,MS,11/7/2009 22:00 +Franklin,RED BLUE,,NC,11/7/2009 23:00 +Horseshoe Springs,,FIREBALL,UT,11/7/2009 23:00 +Burr Oak,,,KS,11/8/2009 0:00 +Tulsa,BLUE,CIRCLE,OK,11/8/2009 6:55 +Rubidoux,,LIGHT,CA,11/8/2009 17:00 +Yakima,,LIGHT,WA,11/8/2009 18:04 +Tinley park,,LIGHT,IL,11/8/2009 18:24 +Whitney Point,,CIRCLE,NY,11/8/2009 19:05 +San Bruno,RED,FIREBALL,CA,11/8/2009 19:10 +Chester,,OTHER,CA,11/8/2009 20:17 +Morgantown,RED,TRIANGLE,WV,11/8/2009 23:35 +Eloy,,DISK,AZ,11/9/2009 18:10 +Highlands Ranch,,FIREBALL,CO,11/9/2009 18:15 +Lebanon,,LIGHT,MO,11/9/2009 18:20 +Lakewood,,SPHERE,CO,11/9/2009 18:25 +Hesperia,,DISK,CA,11/9/2009 18:40 +Bridgeport,,LIGHT,IL,11/9/2009 20:40 +Havre,,FIREBALL,MT,11/9/2009 21:00 +Seattle,,TRIANGLE,WA,11/9/2009 21:00 +Norwood,,LIGHT,MO,11/9/2009 22:00 +East Brunswick,,DISK,NJ,11/10/2009 0:52 +Birmingham,,TRIANGLE,AL,11/10/2009 1:00 +Eastland,,FLASH,TX,11/10/2009 7:30 +Long Beach,,,CA,11/10/2009 8:20 +Boston,,OVAL,MA,11/10/2009 9:15 +Atlanta,BLUE,CIRCLE,GA,11/10/2009 15:00 +Columbia,,SPHERE,MO,11/10/2009 17:00 +Austin,,OTHER,TX,11/11/2009 0:00 +Vincennes,BLUE,TRIANGLE,IN,11/11/2009 0:30 +Monroe,BLUE,CIRCLE,GA,11/11/2009 1:20 +Noblesville,,OTHER,IN,11/11/2009 10:00 +Monterey,,DISK,CA,11/11/2009 17:35 +Marysville,,LIGHT,WA,11/11/2009 18:00 +Beverly Hills,,LIGHT,MI,11/11/2009 19:00 +New Kensington,,SPHERE,PA,11/11/2009 19:30 +Kansas City,GREEN,FLASH,MO,11/12/2009 1:30 +Warrenton,GREEN,FIREBALL,MO,11/12/2009 1:35 +Fulton,,DISK,NY,11/12/2009 3:00 +Deatsville,,LIGHT,AL,11/12/2009 5:08 +Rochester,,LIGHT,NY,11/12/2009 6:05 +Nashville,,,TN,11/12/2009 6:50 +Atlanta,ORANGE,SPHERE,GA,11/12/2009 8:17 +Mountain Grove,,LIGHT,MO,11/12/2009 18:00 +Rochester,,LIGHT,NY,11/12/2009 18:30 +Cold Spring,,OTHER,KY,11/12/2009 19:45 +Big Sandy,,,MT,11/12/2009 20:44 +Sioux City,,FLASH,IA,11/12/2009 21:00 +Buda,,VARIOUS,TX,11/12/2009 21:30 +Denton,,LIGHT,TX,11/12/2009 23:15 +Celina,ORANGE,CIRCLE,TX,11/13/2009 1:15 +Camarillo,,,CA,11/13/2009 3:00 +Harper,,LIGHT,KS,11/13/2009 3:00 +Port St Lucie,,,FL,11/13/2009 6:45 +Phoenix,,LIGHT,NY,11/13/2009 17:00 +Stuart,,,FL,11/13/2009 18:45 +Cincinnati,,FIREBALL,OH,11/13/2009 19:00 +Taylor Mill,,FIREBALL,KY,11/13/2009 19:35 +Stockbridge,,TRIANGLE,GA,11/13/2009 20:00 +Apopka,,LIGHT,FL,11/13/2009 20:15 +Hickman,,LIGHT,CA,11/13/2009 21:30 +New Haven,,CIRCLE,VT,11/13/2009 22:00 +Sarasota,,LIGHT,FL,11/13/2009 22:30 +Toledo,,LIGHT,OH,11/13/2009 23:00 +Blacksburg,,OTHER,VA,11/14/2009 17:45 +Farmingdale,,FLASH,ME,11/14/2009 19:00 +Rockingham,,TRIANGLE,NC,11/14/2009 19:00 +Knoxville,,DIAMOND,TN,11/14/2009 19:07 +Monterey,YELLOW,LIGHT,CA,11/14/2009 20:36 +Larned,,CIRCLE,KS,11/14/2009 21:15 +Springboro,,OVAL,OH,11/14/2009 21:30 +La Crosse,,CROSS,WI,11/14/2009 23:40 +Farmington,,,MO,11/15/2009 0:00 +Eau Clair,,OTHER,WI,11/15/2009 0:30 +New York City,RED,OVAL,NY,11/15/2009 2:30 +New York City,RED,OVAL,NY,11/15/2009 2:30 +Philippi,,,WV,11/15/2009 10:30 +Auburn,,DISK,NY,11/15/2009 14:05 +Delta,,LIGHT,OH,11/15/2009 18:00 +Litchfield,,LIGHT,ME,11/15/2009 18:30 +Belgrade,,CIRCLE,ME,11/15/2009 19:00 +Myrtle Beach,RED,,SC,11/15/2009 19:15 +Odessa,ORANGE,FORMATION,TX,11/15/2009 19:15 +Healdsburg,,DISK,CA,11/15/2009 19:30 +Odessa,,RECTANGLE,TX,11/15/2009 20:00 +Port St John,ORANGE,,FL,11/15/2009 20:30 +Farmington,,OTHER,MO,11/15/2009 22:00 +Brookhaven,RED,CHEVRON,NY,11/16/2009 0:00 +Sanford,,OTHER,NC,11/16/2009 0:00 +Luray,ORANGE,CYLINDER,VA,11/16/2009 17:05 +Glasgow,,LIGHT,MT,11/16/2009 18:39 +Marana,,TRIANGLE,AZ,11/16/2009 19:00 +Monee,,LIGHT,IL,11/16/2009 19:00 +Queen Creek,RED,VARIOUS,AZ,11/16/2009 19:00 +Paradise,,LIGHT,CA,11/16/2009 19:57 +Woodbridge,,CIRCLE,VA,11/16/2009 19:58 +Green Valley,,LIGHT,AZ,11/16/2009 20:00 +Kerhonkson,,VARIOUS,NY,11/16/2009 20:00 +Austin,,OTHER,TX,11/16/2009 21:00 +Mount Vernon,,,WA,11/16/2009 22:00 +Ventura,RED,FORMATION,CA,11/16/2009 22:20 +Venice,,LIGHT,CA,11/16/2009 22:28 +Ironton,,OTHER,OH,11/17/2009 1:00 +Woodland Hills,,FIREBALL,CA,11/17/2009 1:13 +Wrightsville Beach,,DISK,NC,11/17/2009 3:00 +Albuquerque,,CHEVRON,NM,11/17/2009 4:10 +Chicago,RED,OVAL,IL,11/17/2009 9:00 +Death Valley,,OVAL,CA,11/17/2009 17:35 +West Lebanon,,,NH,11/17/2009 18:07 +Caledonia County,YELLOW,SPHERE,VT,11/17/2009 18:15 +Mindoro,,LIGHT,WI,11/17/2009 19:00 +Barre,ORANGE,LIGHT,VT,11/17/2009 19:30 +Mahanoy City,,,PA,11/17/2009 19:30 +York,,,PA,11/17/2009 21:30 +Manhattan,,OTHER,MT,11/17/2009 22:00 +Ridgecrest,,FIREBALL,CA,11/17/2009 23:05 +Las Vegas,,FLASH,NV,11/17/2009 23:14 +Salt Lake City,,,UT,11/17/2009 23:20 +West Jordan,,LIGHT,UT,11/18/2009 0:06 +Sandy,,FLASH,UT,11/18/2009 0:21 +Melbourne,,TRIANGLE,FL,11/18/2009 0:22 +Deleon,ORANGE,LIGHT,TX,11/18/2009 19:30 +Santo,,CIRCLE,TX,11/18/2009 19:33 +Vero Beach,,FORMATION,FL,11/18/2009 20:30 +Hope,,DIAMOND,AR,11/18/2009 20:54 +Erie,ORANGE,CIRCLE,PA,11/18/2009 23:00 +Fontana,,,CA,11/19/2009 2:00 +Unadilla,RED BLUE,CROSS,NY,11/19/2009 5:00 +Mesa,,LIGHT,AZ,11/19/2009 5:59 +Sidney,,LIGHT,TX,11/19/2009 17:00 +Fairlee,,CROSS,VT,11/19/2009 17:30 +Rushville,,,IL,11/19/2009 17:35 +Georgetown,RED,TRIANGLE,MA,11/19/2009 18:40 +Circle City,ORANGE,TRIANGLE,AZ,11/19/2009 18:45 +Okeechobee,ORANGE,LIGHT,FL,11/19/2009 19:40 +Carmel,,,CA,11/19/2009 21:09 +Morland to Hill City,,CIRCLE,KS,11/19/2009 23:00 +i-10e bound markers 2-65,,RECTANGLE,NM,11/20/2009 5:00 +Tucker,,OTHER,GA,11/20/2009 6:30 +Leavenworth,,SPHERE,KS,11/20/2009 13:00 +Santa Fe,,FORMATION,NM,11/20/2009 13:58 +Simi Valley,BLUE,CIRCLE,CA,11/20/2009 16:00 +Vista,,SPHERE,CA,11/20/2009 17:50 +Alligator Alley,,VARIOUS,FL,11/20/2009 19:20 +Holland,,SPHERE,PA,11/20/2009 21:30 +Nashville,,,TN,11/20/2009 23:30 +Tulsa,,CIRCLE,OK,11/21/2009 0:00 +Valdese,,TRIANGLE,NC,11/21/2009 6:00 +North Bergen,,LIGHT,NJ,11/21/2009 17:40 +New Rochelle,,FIREBALL,NY,11/21/2009 17:50 +Rumney,,LIGHT,NH,11/21/2009 18:00 +Pleasantville,,LIGHT,NJ,11/21/2009 22:45 +Old Eddyville,,,KY,11/22/2009 5:30 +Cape Coral,,CIRCLE,FL,11/22/2009 18:00 +Coatesville,YELLOW,,PA,11/22/2009 18:00 +Union City,,,CA,11/22/2009 18:45 +Wanaque,,LIGHT,NJ,11/22/2009 21:00 +San Bernardino,,FIREBALL,CA,11/22/2009 21:44 +Miami,,FLASH,FL,11/22/2009 23:00 +Champaign,,OVAL,IL,11/23/2009 1:00 +Kissimmee,ORANGE,LIGHT,FL,11/23/2009 1:50 +O'Fallon,RED,LIGHT,MO,11/23/2009 17:40 +Asheville,,LIGHT,NC,11/23/2009 18:25 +Bainbridge Island,,VARIOUS,WA,11/23/2009 22:20 +Cornell,,CIRCLE,WI,11/24/2009 0:30 +Tracy,RED BLUE,CHEVRON,CA,11/24/2009 6:15 +Wellsboro,GREEN,OTHER,PA,11/24/2009 18:00 +Ralleigh,RED,TRIANGLE,NC,11/24/2009 18:10 +Jim Thorpe,,LIGHT,PA,11/24/2009 18:30 +Ft. Campbell,RED YELLOW,LIGHT,KY,11/24/2009 18:40 +Lyman,,LIGHT,SC,11/24/2009 18:45 +Garrison,ORANGE,OVAL,ND,11/24/2009 19:45 +Miami,,,FL,11/24/2009 20:20 +Cordova,,TRIANGLE,TN,11/24/2009 21:39 +Canoga Park,,OTHER,CA,11/24/2009 23:02 +Long Beach,,SPHERE,CA,11/25/2009 16:25 +Lake Forest,,FORMATION,CA,11/25/2009 17:33 +Berkeley,,OTHER,CA,11/25/2009 17:50 +Chinle,,OTHER,AZ,11/25/2009 17:55 +Gray,,LIGHT,TN,11/25/2009 18:00 +Sacramento,RED,LIGHT,CA,11/25/2009 18:00 +Taylors,,,SC,11/25/2009 18:15 +Baldwin Park,,LIGHT,CA,11/25/2009 18:28 +Lakewood,,LIGHT,CA,11/25/2009 18:30 +Hopewell,,LIGHT,VA,11/25/2009 19:00 +San Diego,,FLASH,CA,11/25/2009 20:15 +Covington,,CIRCLE,LA,11/25/2009 21:10 +Ventura,,CHEVRON,CA,11/25/2009 22:45 +San Bruno,RED,FIREBALL,CA,11/25/2009 23:00 +Dallas,GREEN,LIGHT,TX,11/26/2009 0:00 +Pebble Beach,,DISK,CA,11/26/2009 6:25 +Venice,,VARIOUS,CA,11/26/2009 15:00 +Spring Lake Park,,SPHERE,MN,11/26/2009 17:00 +Crystal,,LIGHT,NM,11/26/2009 17:30 +Pueblo,,TRIANGLE,CO,11/26/2009 17:45 +Shenandoah,,LIGHT,IA,11/26/2009 18:00 +Stringer,,LIGHT,MS,11/26/2009 18:00 +Bronxville,,LIGHT,NY,11/26/2009 18:30 +Normantown,,,WV,11/26/2009 18:30 +Lake Toxaway,,,NC,11/26/2009 19:00 +Mesa,,FIREBALL,AZ,11/26/2009 19:40 +Chicago,RED,TEARDROP,IL,11/26/2009 20:00 +Lehigh,,LIGHT,FL,11/26/2009 22:00 +Colorado Springs,,TRIANGLE,CO,11/26/2009 22:20 +Dallas,,FIREBALL,TX,11/27/2009 0:01 +Weaverville,,LIGHT,CA,11/27/2009 5:30 +Modesto,,DIAMOND,CA,11/27/2009 12:51 +Chadds Ford,,TRIANGLE,PA,11/27/2009 18:00 +San Diego,GREEN BLUE,CHEVRON,CA,11/27/2009 18:00 +Lewes,,OTHER,DE,11/27/2009 18:59 +Washington,,FLASH,AR,11/27/2009 19:37 +Winchester,,LIGHT,VA,11/27/2009 22:00 +Noble,,OVAL,OK,11/28/2009 2:15 +Hazelwood,,FIREBALL,MO,11/28/2009 2:30 +Mandeville,,TRIANGLE,LA,11/28/2009 5:30 +Spring Lake Park,,SPHERE,MN,11/28/2009 6:45 +Pensacola,,CIRCLE,FL,11/28/2009 18:00 +Modesto,,FLASH,CA,11/28/2009 21:51 +Petersburg,,TRIANGLE,IL,11/28/2009 22:50 +Petersburg,,TRIANGLE,IL,11/28/2009 22:52 +Petersburg,ORANGE,TRIANGLE,IL,11/28/2009 22:52 +Ferndale,,VARIOUS,WA,11/29/2009 22:30 +Burnsville,,CHEVRON,MN,11/29/2009 23:59 +Hiawassee,,LIGHT,GA,11/30/2009 3:00 +Cumberland to Freeport area,,OTHER,ME,11/30/2009 19:30 +Alamogordo,ORANGE,SPHERE,NM,11/30/2009 20:51 +Tucson,,TRIANGLE,AZ,11/30/2009 21:00 +Gardnerville,,,NV,11/30/2009 22:15 +Litha,,FIREBALL,FL,11/30/2009 23:30 +Mesa,RED,DISK,AZ,12/1/2009 0:23 +Bloomington,,FIREBALL,IN,12/1/2009 0:45 +Monmouth,,DISK,OR,12/1/2009 2:00 +Woodbridge,,RECTANGLE,NJ,12/1/2009 3:00 +Holland,,TRIANGLE,OH,12/1/2009 3:05 +Sartell,,LIGHT,MN,12/1/2009 5:50 +Miami,,OVAL,FL,12/1/2009 7:00 +Kaktovik,,LIGHT,AK,12/1/2009 16:00 +Salem,,FIREBALL,MO,12/1/2009 18:40 +Fremont,,TRIANGLE,CA,12/1/2009 18:42 +Salem,ORANGE,FIREBALL,MO,12/1/2009 18:45 +Lexington,RED,FLASH,IN,12/1/2009 19:00 +Taneytown,,OTHER,MD,12/1/2009 19:00 +Taneytown,,OTHER,MD,12/1/2009 19:00 +Boulder,,OVAL,CO,12/1/2009 20:00 +Lockport,,LIGHT,IL,12/1/2009 20:30 +Lake Wales,ORANGE,TRIANGLE,FL,12/1/2009 21:30 +Fresno,,LIGHT,CA,12/1/2009 22:00 +Napa,,LIGHT,CA,12/1/2009 22:55 +Blanchard,,LIGHT,MI,12/1/2009 23:00 +Torrance,RED,TRIANGLE,CA,12/2/2009 0:00 +Iota,,LIGHT,LA,12/2/2009 2:00 +Mt. Rainier National Park,,OTHER,WA,12/2/2009 3:19 +Seattle,,FIREBALL,WA,12/2/2009 3:24 +Terre Haute,,LIGHT,IN,12/2/2009 6:35 +Grass Valley,YELLOW,DISK,CA,12/2/2009 10:30 +San Dimas,,OVAL,CA,12/2/2009 18:30 +Harrisonburg,,FORMATION,VA,12/2/2009 19:00 +Wickenburg,ORANGE,CIGAR,AZ,12/2/2009 20:45 +Conover,,LIGHT,NC,12/2/2009 21:00 +Fort Greely,,TRIANGLE,AK,12/2/2009 21:20 +Tucson,,CIRCLE,AZ,12/2/2009 23:00 +St. George,,LIGHT,UT,12/3/2009 6:30 +North Port,,,FL,12/3/2009 13:22 +North Port,,,FL,12/3/2009 13:22 +Puyallup,ORANGE,SPHERE,WA,12/3/2009 17:30 +Montgomery,,CROSS,NY,12/3/2009 18:00 +Bartlett,,LIGHT,IL,12/3/2009 20:35 +Vero Beach,,LIGHT,FL,12/3/2009 21:00 +Vassalboro,,LIGHT,ME,12/4/2009 4:50 +Alexandria,,TRIANGLE,KY,12/4/2009 5:00 +Conway,,LIGHT,NH,12/4/2009 8:04 +Heidelburg,,TRIANGLE,MS,12/4/2009 17:30 +Parksley,,TRIANGLE,VA,12/4/2009 17:45 +McMurray,,CYLINDER,PA,12/4/2009 17:50 +Buffalo,,LIGHT,NY,12/4/2009 18:00 +Canfield,,CIRCLE,OH,12/4/2009 20:00 +Woodsville,,TRIANGLE,NH,12/4/2009 20:00 +Youngstown,,FORMATION,OH,12/4/2009 20:45 +Danville,,OVAL,VA,12/4/2009 22:00 +Hugo,ORANGE,,OK,12/5/2009 16:00 +Gifford,ORANGE,CIRCLE,IL,12/5/2009 17:30 +Temecula,,CIRCLE,CA,12/5/2009 18:45 +Phoenix,,LIGHT,AZ,12/5/2009 20:00 +Temecula,,CIRCLE,CA,12/5/2009 20:00 +Murray,,RECTANGLE,KY,12/5/2009 21:06 +Menifee,,CIRCLE,CA,12/5/2009 22:14 +Murrieta,,DISK,CA,12/6/2009 1:00 +Auburn,GREEN,,WA,12/6/2009 1:10 +Taylors,,OTHER,SC,12/6/2009 12:00 +Frankfort,,FORMATION,IL,12/6/2009 17:55 +Temecula,,DISK,CA,12/6/2009 18:40 +Preble,,LIGHT,NY,12/6/2009 18:57 +Honolulu,GREEN,LIGHT,HI,12/6/2009 19:30 +Mims,,LIGHT,FL,12/6/2009 20:45 +Key West,,OTHER,FL,12/7/2009 1:30 +Beaverton,,FORMATION,OR,12/7/2009 2:00 +Arizona or Colorano,,CIRCLE,AZ,12/7/2009 18:00 +Mineral,,OVAL,VA,12/7/2009 20:40 +Marathon,,FIREBALL,FL,12/7/2009 21:00 +Smiths Station,,DIAMOND,AL,12/7/2009 23:00 +Elmira,BLUE,VARIOUS,NY,12/8/2009 0:00 +Cape Fair,,RECTANGLE,MO,12/8/2009 19:00 +Newport Beach,,DISK,CA,12/8/2009 20:00 +Belton,,OTHER,TX,12/9/2009 18:25 +Lenzburg,,CIRCLE,IL,12/9/2009 19:20 +Lenzburg,BLUE,CIRCLE,IL,12/9/2009 19:20 +Buckeye,,LIGHT,AZ,12/9/2009 21:00 +Drums,,LIGHT,PA,12/9/2009 23:45 +Woodbridge,,OTHER,VA,12/10/2009 17:50 +Canon City,,FLASH,CO,12/10/2009 18:00 +Colorado Springs,,DISK,CO,12/10/2009 18:00 +Des Allemands,,SPHERE,LA,12/10/2009 19:27 +Wappingers Falls,,LIGHT,NY,12/10/2009 21:25 +Spring Hill,,DISK,TN,12/10/2009 22:00 +Chatham,,OVAL,VA,12/11/2009 1:00 +Inver Grove Heights,,FIREBALL,MN,12/11/2009 1:15 +Carlsbad,RED BLUE,LIGHT,CA,12/11/2009 2:50 +Hauppauge,,CIRCLE,NY,12/11/2009 5:50 +Spruce Pine,BLUE,CYLINDER,NC,12/11/2009 18:00 +Baton Rouge,,LIGHT,LA,12/11/2009 18:20 +Dexter,,OTHER,MI,12/11/2009 20:00 +Shreveport,ORANGE,,LA,12/11/2009 20:00 +Sewell,,LIGHT,NJ,12/11/2009 20:30 +Rockville,ORANGE,TRIANGLE,MD,12/11/2009 22:41 +St. Louis Park,,OVAL,MN,12/11/2009 23:00 +Towson,,SPHERE,MD,12/12/2009 2:10 +Oklahoma City,,OTHER,OK,12/12/2009 4:00 +Thornton,RED,TRIANGLE,CO,12/12/2009 4:00 +Cochranville,,FIREBALL,PA,12/12/2009 17:50 +Niantic,,LIGHT,CT,12/12/2009 17:50 +Mahwah,BLUE,FIREBALL,NJ,12/12/2009 17:51 +Middlesex,RED,,NY,12/12/2009 18:00 +Francestown,,CIRCLE,NH,12/12/2009 18:05 +Troy,,CIRCLE,IL,12/12/2009 18:10 +Latham,,TRIANGLE,NY,12/12/2009 18:28 +Daly City,,TRIANGLE,CA,12/12/2009 19:00 +Santa Monica,,FORMATION,CA,12/12/2009 21:30 +Media,,CIRCLE,PA,12/12/2009 22:00 +Pleasant Shade,,SPHERE,TN,12/12/2009 22:00 +Washington,GREEN,OVAL,NJ,12/12/2009 22:00 +Long Beach,,,CA,12/12/2009 22:30 +New York City,,CIRCLE,NY,12/12/2009 23:00 +Land O'Lakes,GREEN,LIGHT,FL,12/13/2009 0:49 +Aventura,,LIGHT,FL,12/13/2009 14:00 +West Covina,,TRIANGLE,CA,12/13/2009 17:15 +Fort Worth,,OTHER,TX,12/13/2009 22:45 +Ontario,,TRIANGLE,CA,12/13/2009 23:00 +West Babylon,GREEN,DISK,NY,12/13/2009 23:25 +San Carlos,,RECTANGLE,CA,12/14/2009 0:00 +Stratford,,CIRCLE,CT,12/14/2009 4:30 +Temecula,,,CA,12/14/2009 4:45 +Mendon,GREEN BLUE,,MA,12/14/2009 9:04 +New York City,,CROSS,NY,12/14/2009 20:30 +Walnut Springs,ORANGE,LIGHT,TX,12/14/2009 21:00 +Leavenworth,,CYLINDER,KS,12/14/2009 22:43 +Ashton,,FORMATION,NV,12/15/2009 6:44 +Overland Park,,,KS,12/15/2009 8:30 +Richland Hills,,TRIANGLE,TX,12/15/2009 12:23 +O'Fallon,,,MO,12/15/2009 18:15 +Tupelp,,LIGHT,MS,12/15/2009 18:15 +Huntington Beach,,VARIOUS,CA,12/15/2009 19:00 +Preston,,LIGHT,MD,12/15/2009 22:45 +Leakey,,OVAL,TX,12/16/2009 6:30 +Perris,,DISK,CA,12/16/2009 8:00 +New Freedom,BLUE,LIGHT,PA,12/16/2009 19:50 +Colton,,DISK,CA,12/16/2009 21:20 +Linden,,,NJ,12/17/2009 0:00 +Springerville,BLUE,FLASH,AZ,12/17/2009 5:00 +Berkeley,,LIGHT,CA,12/17/2009 20:00 +Colorado Springs,ORANGE,TRIANGLE,CO,12/17/2009 21:00 +Norton,,,MA,12/17/2009 21:00 +Ryland Heights,,OTHER,KY,12/17/2009 21:00 +Willington,,CIRCLE,CT,12/17/2009 21:00 +Partlow,,CIRCLE,VA,12/17/2009 22:24 +Norton,,,MA,12/18/2009 0:00 +Leggett,,OVAL,CA,12/18/2009 20:10 +Denver,,DISK,CO,12/18/2009 22:15 +Campbell,,,CA,12/19/2009 1:45 +Stanley,,SPHERE,NM,12/19/2009 18:00 +San Francisco,,CIRCLE,CA,12/19/2009 18:25 +Phoenix,,LIGHT,AZ,12/19/2009 19:15 +Sartell,,LIGHT,MN,12/20/2009 5:40 +Hollister,,DISK,CA,12/20/2009 5:45 +Carlsbad,RED BLUE,LIGHT,CA,12/20/2009 6:13 +Glen Allen,,,VA,12/20/2009 12:00 +Simi Valley,BLUE,CROSS,CA,12/20/2009 17:15 +Green Bay,GREEN,CIRCLE,WI,12/20/2009 17:20 +Chula Vista,,CIRCLE,CA,12/20/2009 18:30 +Salinas,,TRIANGLE,CA,12/20/2009 19:00 +Fullerton,,OTHER,CA,12/20/2009 21:00 +Stanley,,CIRCLE,NM,12/21/2009 0:00 +Bucksport,,TRIANGLE,ME,12/21/2009 15:30 +Delray Beach,,EGG,FL,12/21/2009 18:00 +Hampton Bays,,OTHER,NY,12/21/2009 19:50 +El Dorado,,EGG,AR,12/21/2009 21:00 +Vero Beach,,FIREBALL,FL,12/21/2009 21:30 +Bucksport,,TRIANGLE,ME,12/22/2009 16:00 +Jacobs Mill,,FORMATION,PA,12/22/2009 20:25 +Wellersburg,,LIGHT,PA,12/22/2009 21:00 +Lexington,,LIGHT,NC,12/22/2009 22:45 +Tacoma,,CIGAR,WA,12/23/2009 1:38 +Chico,,LIGHT,CA,12/23/2009 3:10 +Columbus,,OVAL,NJ,12/23/2009 15:20 +Burkeville,,OTHER,TX,12/23/2009 15:49 +Lancaster,,TRIANGLE,OH,12/23/2009 19:00 +Boston,,TRIANGLE,MA,12/23/2009 19:30 +Baton Rouge,,LIGHT,LA,12/23/2009 19:47 +Grafton,,CIRCLE,MA,12/23/2009 21:00 +Jewell County,,,KS,12/24/2009 0:00 +Fairfax,GREEN,OTHER,VA,12/24/2009 1:00 +Snohomish,,EGG,WA,12/24/2009 6:15 +Anaheim,,FORMATION,CA,12/24/2009 18:30 +Weymouth,RED,OTHER,MA,12/24/2009 21:00 +Phillips Ranch,,VARIOUS,CA,12/24/2009 23:35 +Downey,,CYLINDER,CA,12/25/2009 0:30 +Seabrook,YELLOW,,TX,12/25/2009 0:30 +Calhoun,,OVAL,GA,12/25/2009 1:00 +Los Gatos,,LIGHT,CA,12/25/2009 3:00 +Loudon,,CIRCLE,TN,12/25/2009 9:33 +Kelso,ORANGE,SPHERE,WA,12/25/2009 16:25 +Cleburne,,TRIANGLE,TX,12/25/2009 19:46 +Lonoke,,,AR,12/25/2009 21:00 +Riverside,,FORMATION,CA,12/26/2009 0:00 +Mico,,FORMATION,TX,12/26/2009 1:36 +Reno,,,NV,12/26/2009 6:15 +Pittsburgh,,,PA,12/26/2009 12:30 +Big Bend Park,,,TX,12/26/2009 13:02 +Tacoma,,LIGHT,WA,12/26/2009 16:35 +Vancouver,,LIGHT,WA,12/26/2009 16:35 +Bethel,RED,DISK,AK,12/26/2009 17:30 +Spring Grove,,RECTANGLE,PA,12/27/2009 5:45 +Spring Grove,,RECTANGLE,PA,12/27/2009 5:45 +Pembroke Pines,,LIGHT,FL,12/27/2009 18:11 +Honolulu,,CIRCLE,HI,12/27/2009 20:00 +Riverside,RED,DISK,CA,12/27/2009 22:00 +Mount Cobb,,CIRCLE,PA,12/28/2009 1:45 +Cherry Grove,,TRIANGLE,SC,12/28/2009 3:30 +Statesboro,,DISK,GA,12/28/2009 6:00 +Oak Harbor,,FIREBALL,WA,12/28/2009 18:00 +Rock Hill,,CHEVRON,SC,12/28/2009 20:37 +Temperence,,LIGHT,MI,12/29/2009 1:00 +New York City,,LIGHT,NY,12/29/2009 20:00 +Pine Level,,,AL,12/29/2009 20:15 +Columbia,,LIGHT,SC,12/29/2009 20:30 +Valdosta,GREEN,,GA,12/29/2009 20:40 +Durham,,FIREBALL,NC,12/29/2009 20:50 +Kittanning,,,PA,12/29/2009 21:00 +La Pine,,DISK,OR,12/29/2009 21:00 +Perryville,,CIRCLE,MD,12/29/2009 23:00 +Celebration,,TRIANGLE,FL,12/30/2009 0:15 +Meriden,,FIREBALL,CT,12/30/2009 6:20 +Gulf of Mexico,,OTHER,TX,12/30/2009 14:00 +Stanhope,,LIGHT,NJ,12/30/2009 19:00 +Boise,,LIGHT,ID,12/30/2009 21:04 +Lemon Grove,RED,CIRCLE,CA,12/31/2009 0:00 +Mexia,BLUE,EGG,TX,12/31/2009 5:21 +Spring Hill,YELLOW,DISK,TN,12/31/2009 9:30 +N. Hollywood,,CIGAR,CA,12/31/2009 10:30 +Denver,BLUE,TRIANGLE,CO,12/31/2009 21:00 +Mandeville,ORANGE,LIGHT,LA,12/31/2009 21:00 +Slidell,,SPHERE,LA,12/31/2009 21:00 +Slidell,,SPHERE,LA,12/31/2009 21:00 +Mandeville,ORANGE,DISK,LA,12/31/2009 21:45 +Tomball,ORANGE,CIRCLE,TX,12/31/2009 22:00 +Aberdeen,,FORMATION,SD,12/31/2009 23:00 +Jackson,,LIGHT,WI,12/31/2009 23:15 +Lake Worth,,CIRCLE,FL,12/31/2009 23:15 +Livingston,YELLOW,,LA,12/31/2009 23:30 +St. Louis,,CIRCLE,MO,12/31/2009 23:30 +Covina,ORANGE,LIGHT,CA,12/31/2009 23:45 +Austin,,DISK,TX,12/31/2009 23:46 +El Cajon,,TRIANGLE,CA,12/31/2009 23:59 +Benton,GREEN,CIRCLE,AR,1/1/2010 0:00 +Bonita,RED,LIGHT,CA,1/1/2010 0:00 +El Cajon,RED,TRIANGLE,CA,1/1/2010 0:00 +El Cajon,RED,TRIANGLE,CA,1/1/2010 0:00 +Fresno,,LIGHT,CA,1/1/2010 0:00 +Grants Pass,RED,TRIANGLE,OR,1/1/2010 0:00 +Kirksville,,DISK,MO,1/1/2010 0:00 +La Mesa,RED,LIGHT,CA,1/1/2010 0:00 +Lemon Grove,RED,LIGHT,CA,1/1/2010 0:00 +Maricopa,,,AZ,1/1/2010 0:00 +Park City,,LIGHT,KY,1/1/2010 0:00 +St. Louis,,FIREBALL,MO,1/1/2010 0:00 +El Cajon,RED,FORMATION,CA,1/1/2010 0:01 +Spring Valley,RED,LIGHT,CA,1/1/2010 0:01 +Willow,RED ORANGE,FORMATION,AK,1/1/2010 0:01 +Antioch,,OTHER,CA,1/1/2010 0:03 +El Cajon,RED,LIGHT,CA,1/1/2010 0:03 +Naples,,SPHERE,FL,1/1/2010 0:04 +La Mesa,RED,TRIANGLE,CA,1/1/2010 0:10 +Mount Helix Park,RED,CIRCLE,CA,1/1/2010 0:10 +Anchorage,,LIGHT,AK,1/1/2010 0:20 +National City,RED,FORMATION,CA,1/1/2010 0:20 +Boca Raton,,FIREBALL,FL,1/1/2010 0:24 +Falcon,RED,DISK,CO,1/1/2010 0:24 +Crestview,,,FL,1/1/2010 0:25 +Aspen,,CHEVRON,CO,1/1/2010 0:30 +Walworth,RED,SPHERE,WI,1/1/2010 0:40 +Baker,ORANGE,,FL,1/1/2010 0:45 +San Diego,,SPHERE,CA,1/1/2010 1:00 +Van Alstyne,,,TX,1/1/2010 3:00 +Willow,RED,SPHERE,AK,1/1/2010 12:01 +San Diego,,TRIANGLE,CA,1/1/2010 12:02 +Haverhill,,TRIANGLE,MA,1/1/2010 13:00 +Pasadena,,TRIANGLE,CA,1/1/2010 17:20 +Albuquerque,,LIGHT,NM,1/1/2010 18:00 +Jasper,,SPHERE,FL,1/1/2010 18:30 +Bakersfield,,LIGHT,CA,1/1/2010 19:00 +Adairsville,RED,RECTANGLE,GA,1/1/2010 22:00 +Loon Mountain Ski Club,RED,CIRCLE,NH,1/1/2010 22:00 +Orange,ORANGE,LIGHT,CA,1/2/2010 12:20 +Phoenix,,RECTANGLE,AZ,1/2/2010 13:00 +Sacramento,,TRIANGLE,CA,1/2/2010 18:00 +Middleburg,RED,SPHERE,FL,1/2/2010 18:45 +Waxhaw,,SPHERE,NC,1/2/2010 20:12 +Madison,RED ORANGE,TRIANGLE,AL,1/2/2010 21:10 +Loveland,,CROSS,CO,1/2/2010 23:17 +Atlanta,RED,FIREBALL,GA,1/2/2010 23:47 +Riverside,,DISK,TX,1/3/2010 3:45 +Mason,,CIRCLE,OH,1/3/2010 4:00 +Fort Leonard Wood,,TRIANGLE,MO,1/3/2010 5:20 +Glen Spey,,FLASH,NY,1/4/2010 2:40 +Reedville,,VARIOUS,VA,1/4/2010 5:28 +Cleveland,,TRIANGLE,OH,1/4/2010 12:45 +Whittier,,LIGHT,CA,1/4/2010 17:40 +Ben Wheeler,,LIGHT,TX,1/4/2010 19:00 +San Pablo,RED,,CA,1/4/2010 19:00 +Cedar Rapids,,LIGHT,IA,1/4/2010 19:10 +El Cajon,,LIGHT,CA,1/4/2010 22:00 +Princeton,,DISK,IN,1/5/2010 1:00 +Chula Vista,,OVAL,CA,1/5/2010 2:11 +Colonia,,,NJ,1/5/2010 4:00 +Twenty Nine Palms,,,CA,1/5/2010 6:00 +Clinton,,CIGAR,NJ,1/5/2010 16:00 +New Paltz,,TRIANGLE,NY,1/5/2010 17:43 +Rockwell,,CIGAR,NC,1/5/2010 18:15 +Valley View Hot Springs near crestoneCO.,,LIGHT,CO,1/5/2010 19:00 +Anderson,,LIGHT,SC,1/5/2010 20:10 +San Diego,ORANGE,LIGHT,CA,1/6/2010 1:00 +Pacific Palisades,,TEARDROP,CA,1/6/2010 20:00 +Ringgold,,RECTANGLE,GA,1/6/2010 20:50 +Searcy,,DISK,AR,1/6/2010 21:15 +West Haven,GREEN,FIREBALL,CT,1/7/2010 0:00 +Southampton,,FORMATION,NY,1/7/2010 5:15 +Mansfield,,LIGHT,MA,1/7/2010 6:15 +Edgartown,,CIRCLE,MA,1/7/2010 17:30 +Windham,,LIGHT,NH,1/7/2010 17:45 +West Boylston,,LIGHT,MA,1/7/2010 19:34 +Westbrook,,TRIANGLE,CT,1/7/2010 23:45 +Fort Worth,,CHEVRON,TX,1/8/2010 19:00 +Tomball,,,TX,1/8/2010 19:00 +Kapolei,,LIGHT,HI,1/8/2010 21:35 +Port Saint Lucie,GREEN BLUE,FIREBALL,FL,1/8/2010 21:52 +Boulder,,TRIANGLE,CO,1/8/2010 23:00 +Brick,,OTHER,NJ,1/9/2010 3:00 +Cleveland,,OTHER,TN,1/9/2010 12:00 +Francis Creek,,LIGHT,WI,1/9/2010 18:00 +Woodbridge,,LIGHT,NJ,1/9/2010 18:05 +Seattle,,CYLINDER,WA,1/9/2010 19:00 +Freedom,,TRIANGLE,CA,1/9/2010 20:00 +Santa Fe Springs,,SPHERE,CA,1/9/2010 20:00 +Saline,RED GREEN BLUE,FORMATION,MI,1/9/2010 20:45 +Buffalo,,LIGHT,NY,1/9/2010 21:30 +Kapolei,,LIGHT,HI,1/9/2010 21:35 +Cincinnati,,LIGHT,OH,1/9/2010 22:00 +Paducah,,,KY,1/9/2010 23:55 +Taunton,,,MA,1/10/2010 0:00 +Uxbridge,,SPHERE,MA,1/10/2010 0:30 +Round Rock,,LIGHT,TX,1/10/2010 5:45 +San Jacinto,,,CA,1/10/2010 9:43 +Norton,,TRIANGLE,MA,1/10/2010 10:30 +Hancock,,SPHERE,MD,1/10/2010 11:30 +Cary,,VARIOUS,NC,1/10/2010 14:00 +Tularosa,,OTHER,NM,1/10/2010 18:45 +Eunice,,OVAL,LA,1/10/2010 19:00 +Butler,RED YELLOW,CHEVRON,MO,1/10/2010 20:00 +Lompoc,ORANGE,FIREBALL,CA,1/10/2010 20:00 +Pratt,,CIRCLE,KS,1/10/2010 20:55 +Lakeland,BLUE,OTHER,FL,1/11/2010 1:30 +Fort Myers,,FIREBALL,FL,1/11/2010 1:40 +Fairfield,,OVAL,CA,1/11/2010 17:00 +Joplin,ORANGE,TRIANGLE,MO,1/11/2010 21:30 +Leatherwood,RED,OTHER,KY,1/11/2010 23:00 +Fayetteville,,SPHERE,WV,1/12/2010 0:00 +Eugene,,,OR,1/12/2010 4:00 +Springfield,,VARIOUS,OR,1/12/2010 17:35 +Alma,,OTHER,AR,1/12/2010 19:00 +Wichita,ORANGE,,KS,1/12/2010 19:00 +Wichita,,TEARDROP,KS,1/12/2010 19:00 +Deep Run,,OTHER,NC,1/12/2010 19:20 +Waukesha,,DISK,WI,1/12/2010 19:32 +Metlakatla,RED,DISK,AK,1/12/2010 21:30 +Ceres,,FIREBALL,CA,1/12/2010 22:45 +White Oak,,TRIANGLE,PA,1/13/2010 0:45 +Ackerman,,LIGHT,MS,1/13/2010 1:00 +Clarksburg,,,WV,1/13/2010 17:00 +Gulf Breeze,ORANGE,,FL,1/13/2010 17:40 +Denver,,DISK,CO,1/13/2010 18:00 +Troutdale,,LIGHT,VA,1/13/2010 18:15 +Gregory,,LIGHT,MI,1/13/2010 19:45 +Modesto,,OTHER,CA,1/13/2010 23:25 +McGregor range,,CIRCLE,NM,1/14/2010 1:00 +Reno,,FLASH,NV,1/14/2010 1:40 +Pomoma,,LIGHT,NY,1/14/2010 4:30 +Lexington,,FIREBALL,KY,1/14/2010 12:09 +Holiday Island,,TRIANGLE,AR,1/14/2010 19:30 +Carlsbad,RED BLUE,LIGHT,CA,1/15/2010 0:18 +Bakersfield,,CIRCLE,CA,1/15/2010 1:00 +Fresno,,LIGHT,CA,1/15/2010 1:00 +North San Juan,ORANGE,FIREBALL,CA,1/15/2010 1:00 +Greensboro,,LIGHT,NC,1/15/2010 4:00 +Greensboro,,SPHERE,NC,1/15/2010 10:00 +Long Beach,,,CA,1/15/2010 16:55 +Tempe,,CIRCLE,AZ,1/15/2010 19:30 +Whittier,,DISK,CA,1/15/2010 19:30 +Flat Creek,,TRIANGLE,NC,1/15/2010 22:10 +Yuma,,LIGHT,AZ,1/15/2010 23:35 +Plainville,,RECTANGLE,CT,1/15/2010 23:40 +Great Falls,,TRIANGLE,MT,1/16/2010 19:20 +Boise,,VARIOUS,ID,1/16/2010 19:30 +Corona,,TRIANGLE,CA,1/16/2010 19:49 +Corona,,,CA,1/16/2010 20:00 +Bellingham,,LIGHT,MA,1/16/2010 20:40 +Grass Valley,,,CA,1/16/2010 20:50 +Henderson,,CHEVRON,NV,1/16/2010 21:20 +Granite Falls,,LIGHT,WA,1/17/2010 4:23 +Bayfield,,LIGHT,WI,1/17/2010 18:30 +Las Vegas,,OTHER,NV,1/17/2010 22:30 +Miami,,RECTANGLE,FL,1/17/2010 23:30 +Shawano,BLUE,LIGHT,WI,1/17/2010 23:51 +Pittsburgh,,LIGHT,PA,1/18/2010 1:35 +Lamar,,CIGAR,SC,1/18/2010 7:38 +Old Hickory,,VARIOUS,TN,1/18/2010 10:00 +Oldwick,,TRIANGLE,NJ,1/18/2010 15:00 +Sayre,,,PA,1/18/2010 17:35 +Mullica Hill,,OTHER,NJ,1/18/2010 17:50 +Dillon,,OVAL,MT,1/18/2010 19:03 +Whitehall,,SPHERE,MT,1/18/2010 19:15 +Seattle,ORANGE,LIGHT,WA,1/18/2010 20:15 +Arroyo Grande,,LIGHT,CA,1/18/2010 20:55 +Elmwood Park,,FLASH,IL,1/19/2010 0:01 +Azusa,,LIGHT,CA,1/19/2010 21:05 +Amherst,,,VA,1/19/2010 23:00 +Pt. Mugu,,LIGHT,CA,1/20/2010 2:00 +Gowanda,,FIREBALL,NY,1/20/2010 3:34 +Walnut,BLUE,FLASH,IA,1/20/2010 7:45 +San Jose,,DISK,CA,1/20/2010 12:00 +North Stonington,,LIGHT,CT,1/20/2010 18:00 +Bandon,,OTHER,OR,1/20/2010 18:45 +South Kingstown,,CHEVRON,RI,1/20/2010 18:45 +Poughkeepsie,,DISK,NY,1/20/2010 19:00 +((HOAX??)),,CIRCLE,PA,1/20/2010 19:30 +Batesville,,DIAMOND,AR,1/20/2010 20:00 +New Port Richey,ORANGE,FIREBALL,FL,1/20/2010 20:00 +Saint Charles,,OTHER,IA,1/21/2010 5:30 +Rochester,,CIRCLE,NY,1/21/2010 18:05 +South Kingstown,,CYLINDER,RI,1/21/2010 18:40 +San Antonio,,SPHERE,TX,1/21/2010 22:19 +Bloomfield,,OTHER,NJ,1/21/2010 22:45 +Riverside,,LIGHT,NJ,1/22/2010 2:20 +Boise,,VARIOUS,ID,1/22/2010 4:40 +Lincoln,,DISK,NE,1/22/2010 17:00 +Socorro,RED,LIGHT,NM,1/22/2010 18:00 +Southbridge,,TRIANGLE,MA,1/22/2010 22:30 +Spring,,SPHERE,TX,1/22/2010 23:00 +Peekskill,,,NY,1/22/2010 23:20 +Titusville,,TRIANGLE,FL,1/23/2010 0:00 +Reno,,CIGAR,NV,1/23/2010 1:30 +Carson City,BLUE,LIGHT,NV,1/23/2010 5:38 +Lakewood,,DISK,CA,1/23/2010 14:30 +Pacific Grove,,LIGHT,CA,1/23/2010 15:20 +Lake Tapps,,CIRCLE,WA,1/23/2010 18:00 +Tampa,,CIRCLE,FL,1/24/2010 19:40 +Lake Stevens,,,WA,1/25/2010 5:00 +Miami,,OTHER,FL,1/25/2010 17:30 +Keaau,,LIGHT,HI,1/25/2010 18:00 +Kapolei,,LIGHT,HI,1/25/2010 18:45 +Naples,,LIGHT,FL,1/25/2010 19:00 +Holloman AFB,,OTHER,NM,1/25/2010 19:15 +Clayton,,LIGHT,NC,1/25/2010 20:30 +Raleigh,GREEN,SPHERE,NC,1/25/2010 20:48 +Austin,,OTHER,TX,1/26/2010 9:45 +South Kingstown,,OTHER,RI,1/26/2010 11:00 +Miami,,LIGHT,FL,1/26/2010 19:01 +Chico,,TRIANGLE,WA,1/26/2010 21:40 +Greensboro,,SPHERE,NC,1/27/2010 2:15 +Fort Collins,,LIGHT,CO,1/27/2010 6:00 +Santa Fe Springs,,SPHERE,CA,1/27/2010 11:00 +Wilkesboro,,DISK,NC,1/27/2010 19:00 +Charlotte,,FIREBALL,NC,1/27/2010 20:30 +South Bend,,TRIANGLE,IN,1/28/2010 3:00 +Reedsville,,LIGHT,OH,1/28/2010 4:45 +Santa Ana,ORANGE,SPHERE,CA,1/28/2010 8:27 +Houston,,CIRCLE,TX,1/28/2010 14:00 +Perris,,TRIANGLE,CA,1/28/2010 18:10 +St. Augustine,,OTHER,FL,1/28/2010 19:25 +Folsom,,SPHERE,NJ,1/28/2010 20:00 +Stillwater,,LIGHT,MN,1/28/2010 20:30 +Maple Valley,,VARIOUS,WA,1/29/2010 0:00 +Punxsutawney,,LIGHT,PA,1/29/2010 2:20 +Madison County,RED,DIAMOND,NC,1/29/2010 11:00 +Jefferson,,OVAL,MD,1/29/2010 13:25 +Edinburg,,CIGAR,TX,1/29/2010 19:40 +Kennebunk Beach,,CYLINDER,ME,1/30/2010 8:40 +Oakland,RED,TRIANGLE,CA,1/30/2010 19:00 +Milwaukee,,LIGHT,WI,1/31/2010 6:30 +Stone Mountain,,TRIANGLE,GA,1/31/2010 13:00 +Delray Beach,,EGG,FL,1/31/2010 19:40 +Socorro,ORANGE,RECTANGLE,NM,2/1/2010 4:45 +Clovis,,SPHERE,CA,2/1/2010 6:00 +Ansonia,,OVAL,CT,2/1/2010 7:50 +Preston,,FLASH,CT,2/1/2010 8:00 +Marana,,LIGHT,AZ,2/1/2010 8:30 +Mare Island,,CIRCLE,CA,2/1/2010 19:15 +Wendell,,LIGHT,ID,2/1/2010 21:00 +Wyandotte County,,DISK,KS,2/2/2010 1:00 +Oakland Park,,FORMATION,FL,2/2/2010 1:15 +Pounchatola,,TRIANGLE,LA,2/2/2010 5:25 +Beckwourth,ORANGE,,CA,2/2/2010 19:00 +Wendell,,LIGHT,ID,2/2/2010 20:00 +Youngsville,,FIREBALL,LA,2/2/2010 20:05 +Leawood,,CIRCLE,KS,2/2/2010 21:00 +Oregon,,CIRCLE,OH,2/3/2010 11:30 +Ocala,,CIRCLE,FL,2/3/2010 15:00 +Atlanta,,CIRCLE,GA,2/3/2010 19:00 +Porter Ranch,,LIGHT,CA,2/3/2010 19:25 +Monmouth,,FIREBALL,OR,2/4/2010 1:35 +Los Angeles,,LIGHT,CA,2/4/2010 5:40 +Spencerport,,DISK,NY,2/4/2010 6:15 +Grove City,,SPHERE,OH,2/4/2010 9:00 +"Nicolosi, Sicily",,,TN,2/4/2010 15:00 +Chicago,,DISK,IL,2/4/2010 18:10 +Boulder,,LIGHT,CO,2/5/2010 1:00 +Langley,,TRIANGLE,WA,2/5/2010 18:00 +Benton City,ORANGE,SPHERE,WA,2/5/2010 19:15 +Tatum,,OTHER,TX,2/5/2010 19:50 +Pittsburgh,RED,,PA,2/5/2010 23:00 +Ellsworth,,,ME,2/6/2010 5:45 +Vernon,,TRIANGLE,NJ,2/6/2010 6:30 +Cistern,,SPHERE,TX,2/6/2010 14:45 +Albuquerque,RED YELLOW,OVAL,NM,2/6/2010 17:50 +Elkins,,LIGHT,WV,2/6/2010 21:40 +Monterey,GREEN BLUE,LIGHT,CA,2/6/2010 23:00 +Woodbridge,YELLOW,LIGHT,VA,2/6/2010 23:00 +Cicero,RED,TRIANGLE,IL,2/7/2010 21:15 +Modesto,,SPHERE,CA,2/7/2010 22:00 +Philadelphia,RED GREEN BLUE,OTHER,PA,2/7/2010 22:50 +Hyde Park,,CIRCLE,NY,2/8/2010 0:00 +Riverhead,,CIRCLE,NY,2/8/2010 5:40 +Hobe Sound,,CIRCLE,FL,2/8/2010 9:50 +Saylorsburg,RED,DISK,PA,2/8/2010 18:30 +Santa Maria,,OVAL,CA,2/8/2010 19:15 +Gilbert,,,AZ,2/8/2010 20:22 +Kettleman City,,TRIANGLE,CA,2/9/2010 18:00 +Bedford,RED,LIGHT,TX,2/9/2010 21:00 +Modesto,,VARIOUS,CA,2/9/2010 21:00 +Eaton Rapids,,OTHER,MI,2/10/2010 3:00 +Carthage,YELLOW,LIGHT,TN,2/10/2010 20:40 +Weymouth,,TRIANGLE,MA,2/11/2010 20:35 +Seattle,,TRIANGLE,WA,2/12/2010 6:00 +San Antonio,,LIGHT,TX,2/12/2010 16:00 +Sharon,,LIGHT,VT,2/12/2010 19:30 +West Branch,,CIGAR,MI,2/12/2010 20:30 +Yakima,,FIREBALL,WA,2/12/2010 20:30 +Seattle,GREEN,LIGHT,WA,2/12/2010 20:35 +Santa Nella,GREEN,FORMATION,CA,2/12/2010 20:54 +Goose Creek,,FLASH,SC,2/12/2010 21:00 +Sullivan City,,FORMATION,TX,2/12/2010 21:00 +Topeka,,,KS,2/12/2010 23:00 +Ft. Bragg,,CROSS,CA,2/12/2010 23:30 +San Bernardino,ORANGE,FIREBALL,CA,2/13/2010 0:15 +Davenport,,LIGHT,IA,2/13/2010 3:05 +Los Angeles,,CIRCLE,CA,2/13/2010 9:40 +Pasadena,,TRIANGLE,CA,2/13/2010 17:00 +Nacogdoches,,FORMATION,TX,2/13/2010 17:45 +Sunnyvale,,FORMATION,CA,2/13/2010 19:00 +Melbourne,ORANGE YELLOW,SPHERE,FL,2/13/2010 19:15 +Abilene,,VARIOUS,TX,2/14/2010 0:00 +Atco,,LIGHT,NJ,2/14/2010 0:15 +Conover,,CIRCLE,NC,2/14/2010 10:40 +Miami,RED,,FL,2/14/2010 21:45 +Brandon,,FIREBALL,FL,2/14/2010 22:15 +Redding,,CIRCLE,CA,2/14/2010 22:20 +Gautier,RED YELLOW,FORMATION,MS,2/14/2010 23:00 +Nashville,,,TN,2/15/2010 5:00 +Renton,,,WA,2/15/2010 5:30 +Clearwater,,CIRCLE,KS,2/15/2010 5:50 +Las Vegas,,CIRCLE,NV,2/15/2010 5:55 +Long Beach,,SPHERE,CA,2/15/2010 16:00 +Sutherlin,,LIGHT,OR,2/15/2010 23:00 +Kailua-Kona,,LIGHT,HI,2/16/2010 7:10 +Fontana,,LIGHT,CA,2/16/2010 19:51 +Denver,RED YELLOW GREEN BLUE,,CO,2/16/2010 20:00 +Austin,RED ORANGE,SPHERE,TX,2/16/2010 21:40 +Mesquite,RED,RECTANGLE,TX,2/16/2010 22:15 +Fort Hood,,CIRCLE,TX,2/16/2010 22:30 +Winnie,,TRIANGLE,TX,2/16/2010 23:45 +Winnie,,VARIOUS,TX,2/16/2010 23:45 +Concord,,CHEVRON,NH,2/17/2010 6:35 +Covington,,TRIANGLE,LA,2/17/2010 18:30 +Mahanoy,,OTHER,PA,2/17/2010 23:00 +Blanchard,,LIGHT,MI,2/18/2010 1:00 +Ellerslie,,LIGHT,GA,2/18/2010 9:00 +Raeford,,OTHER,NC,2/18/2010 18:00 +Mojave,,SPHERE,CA,2/18/2010 19:30 +San Diego,,LIGHT,CA,2/18/2010 21:30 +Westwood,,CYLINDER,MA,2/18/2010 21:30 +Shelbyville,RED,,IL,2/18/2010 21:52 +Bellingham,,TRIANGLE,WA,2/18/2010 22:25 +Clinton Township,ORANGE,CHEVRON,MI,2/19/2010 0:38 +Omaha,,,NE,2/19/2010 1:20 +Silverton,ORANGE,LIGHT,OR,2/19/2010 9:00 +Woodland Hills,,OVAL,CA,2/19/2010 14:30 +Seattle,,TRIANGLE,WA,2/19/2010 18:50 +Frankfort,,TRIANGLE,IL,2/19/2010 19:55 +Vernon Hills,,LIGHT,IL,2/19/2010 21:10 +Dalton,,FIREBALL,GA,2/20/2010 7:00 +Randsburg,,TEARDROP,CA,2/20/2010 12:00 +Clearwater,,TRIANGLE,FL,2/20/2010 13:47 +Venetia,,SPHERE,PA,2/20/2010 18:15 +Sedro Woolley,,CIRCLE,WA,2/20/2010 19:00 +Pickney,ORANGE,FIREBALL,MI,2/20/2010 20:00 +Marshall,,LIGHT,MN,2/20/2010 22:00 +Severn,,DISK,MD,2/21/2010 0:00 +Plum,YELLOW,LIGHT,PA,2/21/2010 3:30 +Darlington,,CIRCLE,SC,2/21/2010 20:30 +Stanardsville,,TRIANGLE,VA,2/21/2010 20:40 +Belton,,LIGHT,TX,2/21/2010 22:33 +New Hampshire??,,,NH,2/21/2010 23:00 +New York City,,DISK,NY,2/22/2010 17:30 +Rochester,,LIGHT,NY,2/22/2010 22:30 +Swarthmore,,FLASH,PA,2/22/2010 22:40 +Ewa Beach,,TRIANGLE,HI,2/23/2010 20:50 +Lake Oswego,,,OR,2/23/2010 21:00 +Galveston,BLUE,FIREBALL,TX,2/23/2010 23:00 +Arden,,FORMATION,AR,2/24/2010 4:30 +Springvale,,SPHERE,ME,2/24/2010 9:30 +Interstate 8,,LIGHT,AZ,2/24/2010 13:30 +Santa Rosa,,DIAMOND,CA,2/24/2010 15:30 +Santa Barbara,,TEARDROP,CA,2/24/2010 19:30 +Rising Star,,LIGHT,TX,2/24/2010 20:00 +Brockton,,LIGHT,MA,2/25/2010 0:00 +Twin Peaks,GREEN,CIRCLE,CA,2/25/2010 7:35 +Wisconsin Rapids,,,WI,2/25/2010 9:15 +Temple City,,LIGHT,CA,2/25/2010 20:24 +Homestead,,SPHERE,FL,2/26/2010 5:55 +Keaau,GREEN,SPHERE,HI,2/26/2010 6:00 +Sonoma,,EGG,CA,2/26/2010 14:00 +Las Vegas,,OVAL,NV,2/26/2010 17:15 +Lawrence,ORANGE,LIGHT,KS,2/27/2010 0:55 +Corpus Christi,,CIRCLE,TX,2/27/2010 8:00 +Tampa,,RECTANGLE,FL,2/27/2010 13:00 +Lawrenceville,,CIRCLE,GA,2/27/2010 20:00 +Litchfield Beach,,LIGHT,SC,2/27/2010 22:00 +Spicewood,,CIRCLE,TX,2/27/2010 23:10 +Batavia,,SPHERE,IA,2/28/2010 6:00 +Homestead,,TEARDROP,FL,2/28/2010 7:05 +Ward,,,AR,2/28/2010 15:00 +Homestead,,,FL,2/28/2010 16:30 +Church Point,,CYLINDER,LA,2/28/2010 17:46 +Homestead,,OTHER,FL,2/28/2010 18:40 +Miami,,CIRCLE,FL,2/28/2010 18:50 +Silverdale,,VARIOUS,WA,2/28/2010 18:50 +Spring City,,OVAL,TN,2/28/2010 18:50 +Everett,,,WA,2/28/2010 23:00 +Little River,GREEN BLUE,LIGHT,SC,2/28/2010 23:00 +Longview,,OTHER,TX,3/1/2010 3:00 +San Diego,,OTHER,CA,3/1/2010 6:00 +Hernando,,LIGHT,FL,3/1/2010 11:00 +Land O'Lakes,,FORMATION,FL,3/1/2010 11:00 +Oakville,,OTHER,MO,3/1/2010 15:30 +Cook,,LIGHT,MN,3/1/2010 17:00 +Visalia,,,CA,3/1/2010 19:50 +Davenport,,FIREBALL,CA,3/1/2010 21:23 +Arkansas,,,AR,3/1/2010 23:00 +Pittsburg,,TRIANGLE,CA,3/1/2010 23:00 +Austin,,,TX,3/2/2010 5:00 +Rio Rancho,,FIREBALL,NM,3/3/2010 6:15 +Fairfield,RED GREEN,FIREBALL,IA,3/3/2010 7:10 +Cleveland,,,OH,3/3/2010 8:00 +Phoenix,RED,,AZ,3/3/2010 13:35 +Crete,,FORMATION,IL,3/3/2010 19:00 +Alma,,,AR,3/3/2010 19:19 +Knoxvile,,TRIANGLE,TN,3/3/2010 22:10 +Canyon Lake,,OTHER,TX,3/4/2010 11:00 +North Little Rock,,,AR,3/4/2010 19:18 +Ontario,,FLASH,CA,3/4/2010 19:45 +Ballston Lake,GREEN,FIREBALL,NY,3/4/2010 23:45 +Tacoma,,FIREBALL,WA,3/5/2010 0:20 +Proctor,,DISK,AR,3/5/2010 1:40 +Fort Smith,,OTHER,AR,3/5/2010 3:00 +Springboro,,OTHER,OH,3/5/2010 12:50 +Hicksville,,OVAL,NY,3/5/2010 17:20 +New Hartford,,LIGHT,CT,3/5/2010 18:30 +Phoenix,,OTHER,AZ,3/5/2010 18:45 +Bath,,LIGHT,NH,3/5/2010 19:10 +Port Townsend,ORANGE,FORMATION,WA,3/5/2010 20:10 +Buffalo,,LIGHT,TX,3/5/2010 20:37 +Kihei,,CIRCLE,HI,3/5/2010 20:45 +Kihei,,CIRCLE,HI,3/5/2010 21:00 +Plattsmouth,,LIGHT,NE,3/5/2010 21:00 +Romeo,RED GREEN BLUE,SPHERE,MI,3/5/2010 21:00 +Hansville,,LIGHT,WA,3/5/2010 22:00 +West Chester,,TRIANGLE,PA,3/5/2010 22:00 +Romeo,,DIAMOND,MI,3/5/2010 22:04 +Olympia,,LIGHT,WA,3/5/2010 22:35 +Lockport,,TRIANGLE,IL,3/5/2010 23:00 +Oak Harbor,,OTHER,WA,3/5/2010 23:18 +Yakima,,LIGHT,WA,3/6/2010 2:10 +Berryville,,CYLINDER,VA,3/6/2010 2:15 +Moses Lake,BLUE,OTHER,WA,3/6/2010 11:00 +Kissimmee,,DISK,FL,3/6/2010 12:55 +Eureka,ORANGE,FIREBALL,CA,3/6/2010 20:00 +Northwest,,SPHERE,NC,3/6/2010 20:00 +Rochester,,TRIANGLE,WA,3/6/2010 20:00 +Silverton,,TRIANGLE,OR,3/6/2010 20:35 +Fairfax,,OTHER,VA,3/6/2010 20:45 +Niles,,,MI,3/6/2010 21:00 +Englewood,,CIRCLE,NJ,3/6/2010 21:30 +Cape Neddick,,CIRCLE,ME,3/6/2010 23:30 +Cramerton,,TRIANGLE,NC,3/7/2010 19:00 +Longwood,,FLASH,FL,3/7/2010 20:00 +Liverpool,,VARIOUS,NY,3/7/2010 21:17 +Missoula,RED,TRIANGLE,MT,3/7/2010 21:20 +Dyersburg,,FIREBALL,TN,3/8/2010 15:45 +Green Bay,GREEN,CIRCLE,WI,3/8/2010 19:20 +Middlefield,,TRIANGLE,OH,3/9/2010 2:35 +Riesel,,SPHERE,TX,3/9/2010 3:00 +Bethlehem,,CYLINDER,PA,3/9/2010 7:57 +Bethlehem,,VARIOUS,PA,3/9/2010 18:00 +San Antonio,RED,SPHERE,TX,3/9/2010 20:50 +La Palma,ORANGE,CIGAR,CA,3/9/2010 21:30 +Huson,,CIRCLE,MT,3/10/2010 0:23 +Anaheim,,DISK,CA,3/10/2010 0:45 +Moravian Falls,YELLOW,LIGHT,NC,3/10/2010 2:40 +West liberty,,TRIANGLE,IL,3/10/2010 3:00 +Livermore,,FLASH,CA,3/10/2010 19:00 +Wentzville,,LIGHT,MO,3/10/2010 19:45 +Poth,,TRIANGLE,TX,3/11/2010 10:00 +Carlisle,RED,TRIANGLE,PA,3/11/2010 19:00 +Havre,,LIGHT,MT,3/11/2010 19:30 +Havre,RED YELLOW,OTHER,MT,3/11/2010 19:30 +South Charleston,,,OH,3/12/2010 0:00 +Fuquay,,FLASH,NC,3/12/2010 3:13 +Robinson Twp.,,LIGHT,PA,3/12/2010 3:22 +In flight,,CYLINDER,NV,3/12/2010 15:30 +Tukwila,,LIGHT,WA,3/12/2010 19:10 +Erie,,VARIOUS,PA,3/12/2010 19:56 +Erie,,VARIOUS,PA,3/12/2010 19:56 +McKenzie,,TRIANGLE,AL,3/12/2010 20:30 +Destin,,LIGHT,FL,3/12/2010 21:00 +North Hollywood,,,CA,3/12/2010 21:00 +Destin,,CIRCLE,FL,3/12/2010 21:10 +Crestview,ORANGE,CIRCLE,FL,3/12/2010 21:20 +Ogden,ORANGE,LIGHT,UT,3/12/2010 21:23 +Medway,GREEN,CIRCLE,ME,3/13/2010 0:00 +Memphis,,CIRCLE,TN,3/13/2010 1:00 +Ephrata,,LIGHT,WA,3/13/2010 7:45 +New York City,,SPHERE,NY,3/13/2010 18:00 +Lynnwood,,LIGHT,WA,3/13/2010 19:07 +Edmonds,ORANGE,OVAL,WA,3/13/2010 19:15 +Edmonds,RED,CIRCLE,WA,3/13/2010 19:30 +Bonita Springs,,SPHERE,FL,3/13/2010 20:10 +Metairie,RED YELLOW,FIREBALL,LA,3/13/2010 21:10 +Cleveland,,OVAL,OH,3/13/2010 22:00 +Corvallis,ORANGE,CHEVRON,OR,3/14/2010 3:40 +Carmel-by-the-Sea,,FLASH,CA,3/14/2010 6:05 +Florence,,OTHER,MS,3/14/2010 13:45 +Honolulu,,CYLINDER,HI,3/14/2010 15:30 +Pasadena,,VARIOUS,CA,3/14/2010 16:00 +East Dundee,,TRIANGLE,IL,3/14/2010 19:45 +Bozeman,,LIGHT,MT,3/14/2010 20:30 +Great Falls,ORANGE,LIGHT,MT,3/14/2010 21:30 +Pensacola,,LIGHT,FL,3/15/2010 0:00 +Tijeras,,RECTANGLE,NM,3/15/2010 5:45 +Crestline,,DISK,CA,3/15/2010 7:00 +Modesto,,RECTANGLE,CA,3/15/2010 18:00 +Reading,,,PA,3/15/2010 20:00 +Bethleham,,CIRCLE,GA,3/15/2010 20:15 +Chicago,,,IL,3/16/2010 0:15 +Skokie,,CHEVRON,IL,3/16/2010 2:00 +Canton,,LIGHT,MS,3/16/2010 6:10 +Wilmington,,CROSS,VT,3/16/2010 10:00 +Westerly,,CIRCLE,RI,3/16/2010 12:45 +Hewlett,,SPHERE,NY,3/16/2010 15:30 +Tempe,,,AZ,3/16/2010 16:45 +Rochester,ORANGE,LIGHT,IN,3/16/2010 21:30 +Long Beach,,TRIANGLE,CA,3/16/2010 21:40 +Milford,,CIRCLE,CT,3/16/2010 22:00 +Pittsboro,RED BLUE,OTHER,NC,3/16/2010 23:00 +Little Neck,,,NY,3/16/2010 23:30 +Converse,,DISK,TX,3/17/2010 0:00 +Highland,,LIGHT,NY,3/17/2010 0:00 +Cincinnati,,SPHERE,OH,3/17/2010 0:32 +Riverside,,OTHER,CA,3/17/2010 10:00 +Irvine,,,CA,3/17/2010 16:40 +Las Vegas,,CIRCLE,NV,3/17/2010 19:00 +Avon,,LIGHT,MA,3/17/2010 20:30 +Anderson,,LIGHT,IN,3/17/2010 22:00 +Roscoe,,TRIANGLE,IL,3/17/2010 22:01 +Barberton,RED BLUE,SPHERE,OH,3/18/2010 0:15 +Chicago,,OTHER,IL,3/18/2010 1:15 +Ashtabula,,,OH,3/18/2010 7:05 +Carlisle,,LIGHT,PA,3/18/2010 10:00 +Jonesboro,,LIGHT,IN,3/18/2010 10:00 +DeFuniak Springs,ORANGE,DISK,FL,3/18/2010 20:15 +Fort Madison,,FLASH,IA,3/18/2010 20:50 +Meridian,,FIREBALL,ID,3/18/2010 21:00 +Eureka,,LIGHT,CA,3/18/2010 21:04 +Haylow,,CIRCLE,GA,3/18/2010 23:30 +Florence,GREEN,LIGHT,NJ,3/19/2010 10:00 +Franklin,GREEN,RECTANGLE,TN,3/19/2010 11:00 +Sewell,GREEN,DIAMOND,NJ,3/19/2010 11:34 +Tallahassee,,CHEVRON,FL,3/19/2010 17:45 +Mays Landing,,,NJ,3/19/2010 19:00 +West Linn,,TRIANGLE,OR,3/19/2010 20:00 +Statham,,CIRCLE,GA,3/19/2010 20:05 +Simi Valley,ORANGE,,CA,3/19/2010 20:15 +Annapolis,,DISK,MD,3/19/2010 21:16 +Rockmart,,,GA,3/19/2010 21:25 +Smackover,,TRIANGLE,AR,3/19/2010 22:00 +Wilmington,GREEN,SPHERE,DE,3/19/2010 22:00 +Branchburg,BLUE,TRIANGLE,NJ,3/19/2010 22:20 +Lafayette,,TRIANGLE,IN,3/19/2010 22:30 +Buffalo,,FORMATION,NY,3/19/2010 23:00 +Key Largo,ORANGE,FIREBALL,FL,3/20/2010 9:10 +Venus,,CIRCLE,FL,3/20/2010 20:00 +Hopkins,,VARIOUS,SC,3/20/2010 22:00 +Eldersburg,,DISK,MD,3/20/2010 23:00 +Laconia,,VARIOUS,NH,3/20/2010 23:00 +Laconia,,VARIOUS,NH,3/20/2010 23:00 +St. Clair,RED BLUE,LIGHT,MI,3/21/2010 2:45 +Depoe Bay,,CYLINDER,OR,3/21/2010 3:00 +Issaquah,,CIRCLE,WA,3/21/2010 4:00 +Issaquah,,OTHER,WA,3/21/2010 4:00 +Stockton,,CIRCLE,CA,3/21/2010 20:30 +Fountain Inn,,DISK,SC,3/22/2010 10:20 +East Troy,,OVAL,WI,3/22/2010 20:30 +Dublin,,LIGHT,TX,3/22/2010 21:00 +Portage,,SPHERE,MI,3/22/2010 21:00 +Biloxi,,TRIANGLE,MS,3/22/2010 23:00 +Knappa,ORANGE,OTHER,OR,3/22/2010 23:00 +El Paso,,VARIOUS,TX,3/23/2010 1:45 +Winter Haven,,LIGHT,FL,3/23/2010 9:49 +Chippewa Falls,,TRIANGLE,WI,3/23/2010 20:58 +Tulsa,,LIGHT,OK,3/23/2010 23:00 +Oregon,,,OH,3/23/2010 23:41 +Eden,,CIRCLE,NC,3/24/2010 1:00 +Waukegan,,OTHER,IL,3/24/2010 10:00 +Mesa,,SPHERE,AZ,3/24/2010 19:40 +Evansville,,,IN,3/24/2010 20:15 +Stockton,,LIGHT,CA,3/24/2010 22:15 +Sachse,,SPHERE,TX,3/25/2010 15:00 +Colcord,,VARIOUS,OK,3/25/2010 18:00 +South Bend,,,IN,3/25/2010 21:00 +Edmond,,,OK,3/25/2010 23:00 +Bloomington,,LIGHT,CA,3/26/2010 0:00 +Del Mar,,OTHER,CA,3/26/2010 7:45 +Ephrata,RED ORANGE,LIGHT,WA,3/26/2010 8:30 +Elk Grove,,,CA,3/26/2010 12:00 +San Francisco,,,CA,3/26/2010 17:20 +Broadway,,LIGHT,VA,3/26/2010 20:35 +Lee's Summit,,TRIANGLE,MO,3/26/2010 21:50 +San Jose,RED,LIGHT,CA,3/26/2010 21:50 +Delray Beach,,SPHERE,FL,3/26/2010 23:00 +Valencia,RED BLUE,CYLINDER,CA,3/27/2010 0:10 +Shepherdsville,,TRIANGLE,KY,3/27/2010 1:00 +Bakersfield,,FLASH,CA,3/27/2010 13:00 +Ewa Beach,,,HI,3/27/2010 19:45 +Tampa,,FORMATION,FL,3/27/2010 22:01 +Los Angeles,,,CA,3/27/2010 23:00 +East Hartford,,FIREBALL,CT,3/27/2010 23:20 +Beach Park,,CIRCLE,IL,3/28/2010 9:05 +Kansas,,SPHERE,KS,3/28/2010 15:30 +Modesto,,OVAL,CA,3/28/2010 21:30 +Monterey,RED GREEN BLUE,LIGHT,CA,3/28/2010 21:30 +Burbank,,DISK,CA,3/28/2010 21:50 +Colchester,,OVAL,VT,3/28/2010 23:45 +Los Angeles,,LIGHT,CA,3/29/2010 20:15 +Oro Valley,,FORMATION,AZ,3/29/2010 20:21 +Arlington,,LIGHT,TX,3/29/2010 21:01 +Worcester,,VARIOUS,MA,3/29/2010 23:00 +Gaylord,,LIGHT,MI,3/30/2010 7:30 +Port Charlotte,,LIGHT,FL,3/30/2010 9:00 +Clearwater,BLUE,SPHERE,FL,3/30/2010 21:15 +Joplin,,TRIANGLE,MO,3/30/2010 21:25 +Wise,,LIGHT,VA,3/30/2010 22:30 +Mt. Pleasant,,LIGHT,PA,3/30/2010 23:00 +Chapel Hill,,CONE,NC,3/31/2010 0:00 +no data,,TEARDROP,NV,3/31/2010 1:30 +Portage,YELLOW,FIREBALL,MI,3/31/2010 5:25 +Modesto,,LIGHT,CA,3/31/2010 19:00 +Annandale,,LIGHT,NJ,3/31/2010 20:00 +Glen Rose,,LIGHT,TX,3/31/2010 20:00 +New Kensington,RED GREEN BLUE,OTHER,PA,3/31/2010 20:00 +North Hollywood,,VARIOUS,CA,3/31/2010 20:15 +Abilene,ORANGE,LIGHT,TX,3/31/2010 20:30 +International Falls,,CROSS,MN,3/31/2010 22:00 +Norfolk,,CIGAR,VA,4/1/2010 0:00 +Mt. Hood,,LIGHT,OR,4/1/2010 1:00 +Kittitas,,OTHER,WA,4/1/2010 1:45 +Naples,,CIRCLE,FL,4/1/2010 13:00 +Reynoldsburg,,OTHER,OH,4/1/2010 15:00 +Somers,,OTHER,CT,4/1/2010 15:10 +Milton,GREEN,FIREBALL,MA,4/1/2010 20:15 +Santa Ana,,TRIANGLE,CA,4/2/2010 4:50 +Gallatin,,,TN,4/2/2010 13:00 +Vancouver,,TRIANGLE,WA,4/2/2010 15:55 +Tamarac,,LIGHT,FL,4/2/2010 20:25 +Greenville,GREEN,FORMATION,RI,4/2/2010 20:45 +La Quinta,,FORMATION,CA,4/2/2010 21:00 +Mandeville,GREEN,LIGHT,LA,4/2/2010 21:30 +Howell,RED,LIGHT,MI,4/2/2010 22:45 +Colorado Springs,,LIGHT,CO,4/2/2010 23:45 +Georgetown,,TRIANGLE,TX,4/3/2010 0:00 +Lubbock,,TRIANGLE,TX,4/3/2010 1:00 +Milwaukee,,LIGHT,WI,4/3/2010 5:50 +Monterey,,EGG,CA,4/3/2010 11:16 +Punta Gorda,,LIGHT,FL,4/3/2010 12:00 +Las Vegas,,LIGHT,NV,4/3/2010 20:15 +Wesley Chapel,,OTHER,FL,4/3/2010 21:00 +Muskegon,,VARIOUS,MI,4/3/2010 22:00 +Modesto,,LIGHT,CA,4/4/2010 0:00 +St. Clair Shores,,CIRCLE,MI,4/4/2010 1:00 +Haddam,,CIGAR,CT,4/4/2010 16:00 +Los Angeles,,,CA,4/4/2010 18:52 +Lexington,RED,DISK,OH,4/5/2010 0:00 +Lynn,,CIRCLE,MA,4/5/2010 18:45 +Highway 85,,DIAMOND,AZ,4/5/2010 20:20 +Marshfield,,SPHERE,MA,4/5/2010 22:00 +Scott,,LIGHT,AR,4/5/2010 22:10 +Burnsville,,,NC,4/5/2010 22:30 +Lakeridge,,SPHERE,VA,4/5/2010 22:30 +Wilmington,,OVAL,NC,4/5/2010 23:00 +Springfield,,SPHERE,MO,4/5/2010 23:10 +Terre Haute,,LIGHT,IN,4/5/2010 23:55 +Columbus,YELLOW,TRIANGLE,OH,4/6/2010 4:32 +San Marcos,,OVAL,CA,4/6/2010 20:57 +Cleveland,,FIREBALL,OH,4/6/2010 22:05 +Pomona,,LIGHT,CA,4/7/2010 5:20 +New Tazewell,,CIGAR,TN,4/7/2010 12:00 +Burns,,DISK,OR,4/7/2010 20:30 +Tulsa,,LIGHT,OK,4/7/2010 22:13 +Tulsa,,LIGHT,OK,4/7/2010 23:13 +Bunnell,,VARIOUS,FL,4/8/2010 0:00 +West Monroe,,LIGHT,LA,4/8/2010 0:00 +Atascocita,,DISK,TX,4/8/2010 0:22 +Amelia,,TRIANGLE,OH,4/8/2010 1:34 +Westchester,RED,CIRCLE,CA,4/8/2010 5:15 +Downey,,SPHERE,CA,4/8/2010 9:45 +Salinas,,CIGAR,CA,4/8/2010 15:15 +San Diego,,TRIANGLE,CA,4/8/2010 19:37 +Dripping Springs,,OVAL,TX,4/8/2010 20:49 +Dripping Springs,,OVAL,TX,4/8/2010 20:49 +Pomona,ORANGE,FIREBALL,CA,4/8/2010 21:45 +Cotulla,YELLOW,TRIANGLE,TX,4/8/2010 22:00 +Evergreen,,LIGHT,CO,4/8/2010 22:00 +Shreveport,RED,OTHER,LA,4/8/2010 22:00 +Brady,,LIGHT,WA,4/8/2010 22:40 +Brady,,LIGHT,WA,4/8/2010 22:40 +Brady,,LIGHT,WA,4/8/2010 22:45 +Oakland,,TRIANGLE,CA,4/9/2010 1:14 +Evansville,,LIGHT,IN,4/9/2010 5:05 +Independence,,LIGHT,MO,4/9/2010 18:30 +Belmont,,TRIANGLE,ME,4/9/2010 19:07 +Wenden,,DISK,AZ,4/9/2010 20:35 +Yuma,,CIRCLE,AZ,4/9/2010 21:00 +Indianapolis,RED,TRIANGLE,IN,4/9/2010 21:30 +Plainview,RED GREEN,,NY,4/9/2010 22:00 +San Antonio,,TRIANGLE,TX,4/9/2010 23:15 +Delamar Dry Lake,ORANGE,OTHER,NV,4/9/2010 23:30 +Warwick,,DISK,RI,4/10/2010 0:00 +New York City,,OVAL,NY,4/10/2010 1:04 +Mashantucket,,CROSS,CT,4/10/2010 5:15 +Greenville,,,NC,4/10/2010 12:00 +Rutland,,SPHERE,VT,4/10/2010 12:00 +Augusta,,OVAL,GA,4/10/2010 13:00 +San Diego,,CHEVRON,CA,4/10/2010 17:30 +Branson,,LIGHT,MO,4/10/2010 18:00 +Excelsior Springs,,,MO,4/10/2010 19:50 +Cheyenne,,,WY,4/10/2010 21:00 +Cheyenne,,TRIANGLE,WY,4/10/2010 21:00 +Warwick,,,RI,4/10/2010 21:00 +Fargo,,FORMATION,ND,4/10/2010 22:00 +Grove City,,TRIANGLE,MN,4/10/2010 22:10 +Arlington,GREEN,CHEVRON,TX,4/10/2010 23:30 +Charlotte,RED,SPHERE,TX,4/10/2010 23:35 +Rialto,,SPHERE,CA,4/11/2010 2:00 +Hudson,RED GREEN,TRIANGLE,NY,4/11/2010 21:00 +Riverview,,LIGHT,MI,4/11/2010 21:05 +Terre Haute,RED,TRIANGLE,IN,4/11/2010 22:00 +Concord,,OVAL,NC,4/11/2010 22:18 +Flossmoor,,TRIANGLE,IL,4/11/2010 23:50 +Camillus,,CIGAR,NY,4/12/2010 0:00 +Waxahachie,,TRIANGLE,TX,4/12/2010 1:00 +Sunset Beach,,CIRCLE,NC,4/12/2010 21:30 +Rutland,,TRIANGLE,VT,4/12/2010 21:40 +Salem,,LIGHT,OR,4/12/2010 22:00 +Aiken,,TRIANGLE,SC,4/13/2010 8:30 +rutland,,CIRCLE,MA,4/13/2010 11:11 +Pt. Pleasant,,OTHER,WV,4/13/2010 16:15 +Waterville,,CIGAR,VT,4/13/2010 19:30 +Moses Lake,,SPHERE,WA,4/13/2010 20:30 +Northfield,,,VT,4/13/2010 21:00 +Mahomet,,TRIANGLE,IL,4/13/2010 21:50 +Sunnyside,,,WA,4/13/2010 22:15 +Sunnyside,ORANGE,FIREBALL,WA,4/13/2010 22:15 +Hugo,RED,SPHERE,MN,4/13/2010 22:30 +Jersey City,,LIGHT,NJ,4/13/2010 22:45 +East Wenatchee,,TRIANGLE,WA,4/14/2010 2:30 +Andover,,CYLINDER,NY,4/14/2010 6:30 +Auburn,,VARIOUS,NY,4/14/2010 9:50 +Bowling Green,,FIREBALL,KY,4/14/2010 13:45 +Kent,,OTHER,WA,4/14/2010 20:55 +Centerton,,LIGHT,AR,4/14/2010 21:00 +Santa Cruz,,DIAMOND,CA,4/14/2010 21:00 +Remington,,FIREBALL,IN,4/14/2010 21:59 +Auburn,,VARIOUS,NY,4/14/2010 22:00 +Cedar Rapids,RED GREEN BLUE,CIRCLE,IA,4/14/2010 22:00 +Little Neck,,OTHER,NY,4/14/2010 22:00 +Rochester,,SPHERE,MN,4/14/2010 22:00 +Coralville,GREEN,FIREBALL,IA,4/14/2010 22:03 +Moline,,CIRCLE,IL,4/14/2010 22:04 +Lamoni,GREEN,FIREBALL,IA,4/14/2010 22:05 +Onalaska,BLUE,FLASH,WI,4/14/2010 22:06 +Orion,,FIREBALL,IL,4/14/2010 22:07 +Festus,BLUE,CIRCLE,MO,4/14/2010 22:08 +Ogdensburg,,FIREBALL,WI,4/14/2010 22:10 +Iowa,ORANGE GREEN,,IA,4/14/2010 22:12 +Hiawatha,,FIREBALL,IA,4/14/2010 22:15 +Sunrise,,LIGHT,FL,4/14/2010 22:20 +Akron,,OVAL,OH,4/14/2010 23:00 +Macks Creek,,LIGHT,MO,4/14/2010 23:02 +Dearborn Heights,,LIGHT,MI,4/15/2010 0:05 +Conneautville,,,PA,4/15/2010 9:00 +Kingman,,CIRCLE,AZ,4/15/2010 11:00 +East Hazel Crest,,CIRCLE,IL,4/15/2010 16:30 +Ventura,,TRIANGLE,CA,4/15/2010 21:00 +Buxton,,FIREBALL,NC,4/15/2010 21:30 +Bakersfield,,CHEVRON,CA,4/15/2010 22:15 +Nederland,,LIGHT,TX,4/15/2010 22:18 +Minneapolis,,DISK,MN,4/15/2010 22:30 +Marquette,,TRIANGLE,MI,4/16/2010 1:00 +Wheaton,,TRIANGLE,MN,4/16/2010 21:30 +Holt,,DISK,MI,4/16/2010 22:00 +Santa Cruz,,FORMATION,CA,4/16/2010 22:15 +Lac Du Flambeau,,LIGHT,WI,4/17/2010 0:00 +Ocean Springs,,FIREBALL,MS,4/17/2010 0:00 +Albuquerque,,OVAL,NM,4/17/2010 18:39 +Queen Creek,,CROSS,AZ,4/17/2010 20:21 +Nipomo,,DISK,CA,4/17/2010 22:10 +Angola,,TRIANGLE,NY,4/17/2010 22:12 +Ft. Meade,,DISK,MD,4/17/2010 22:30 +Meadville,,LIGHT,PA,4/18/2010 0:05 +Merced,,TRIANGLE,CA,4/18/2010 1:20 +Truman,,TRIANGLE,MN,4/18/2010 9:41 +Colton,,OTHER,CA,4/18/2010 13:33 +Erin,,RECTANGLE,TN,4/18/2010 15:45 +Missoula,ORANGE,,MT,4/18/2010 20:00 +New Lenox,,VARIOUS,IL,4/18/2010 20:00 +Truman,,FORMATION,MN,4/18/2010 22:00 +Tempe,BLUE,VARIOUS,AZ,4/19/2010 0:30 +Honolulu,,TRIANGLE,HI,4/19/2010 15:00 +Cocoa,GREEN,,FL,4/19/2010 21:20 +Porterville,,OTHER,CA,4/19/2010 21:25 +Vancouver,,SPHERE,WA,4/20/2010 7:53 +Fairfield,,VARIOUS,TX,4/20/2010 19:00 +North Myrtle Beach,,CIRCLE,SC,4/20/2010 19:00 +San Clemente,,TRIANGLE,CA,4/20/2010 20:45 +Las Vegas,ORANGE,FIREBALL,NV,4/20/2010 21:00 +Philadelphia,ORANGE,TRIANGLE,PA,4/20/2010 21:00 +Post Falls,,LIGHT,ID,4/20/2010 23:59 +Waldport,,TRIANGLE,OR,4/21/2010 1:30 +Yarmouth,,LIGHT,ME,4/21/2010 4:45 +Sherman Oaks,,SPHERE,CA,4/21/2010 19:30 +Kirkland,,RECTANGLE,WA,4/21/2010 21:30 +Squaw Valley,,,CA,4/21/2010 22:00 +Easton,,LIGHT,PA,4/22/2010 0:30 +Kingston,,SPHERE,NH,4/22/2010 0:51 +Eunice,,CIRCLE,LA,4/22/2010 8:00 +Claremont,,,CA,4/22/2010 17:35 +Beaufort,,CIRCLE,SC,4/22/2010 19:52 +Santa Barbara,,CHEVRON,CA,4/22/2010 22:50 +LaGrangeville,,CIGAR,NY,4/22/2010 23:00 +Santa Barbara,,LIGHT,CA,4/22/2010 23:05 +Stillwater,,SPHERE,MN,4/23/2010 1:45 +Los Altos Hills,,TRIANGLE,CA,4/23/2010 3:00 +Norcoss,,OTHER,GA,4/23/2010 12:40 +Atlanta,,SPHERE,GA,4/23/2010 13:00 +Hagerstown,,FORMATION,MD,4/23/2010 15:40 +Westwood,,OTHER,NJ,4/23/2010 15:40 +Fort Lauderdale,,LIGHT,FL,4/23/2010 19:15 +Ogden,,LIGHT,UT,4/23/2010 21:30 +Yorba Linda,,CIGAR,CA,4/23/2010 21:40 +Corona,,CIRCLE,CA,4/23/2010 23:00 +Kenhorst,BLUE,LIGHT,PA,4/23/2010 23:30 +Haverhill,,,MA,4/24/2010 0:12 +East Islip,,SPHERE,NY,4/24/2010 3:00 +Austin,ORANGE,LIGHT,TX,4/24/2010 10:15 +West Covina,,FORMATION,CA,4/24/2010 13:00 +Louisville,,SPHERE,KY,4/24/2010 18:00 +Fort Worth,,SPHERE,TX,4/24/2010 18:20 +Lake Elsinore,,DISK,CA,4/24/2010 21:00 +Houston,,LIGHT,TX,4/24/2010 23:07 +Houston,ORANGE,CIRCLE,TX,4/24/2010 23:15 +Cranford,,LIGHT,NJ,4/24/2010 23:50 +Sedona,,DISK,AZ,4/25/2010 0:00 +Towson,,DISK,MD,4/25/2010 12:00 +Kaufman,,FIREBALL,TX,4/25/2010 17:50 +Kaufman,,FIREBALL,TX,4/25/2010 21:50 +Lake Elsinore,,OVAL,CA,4/25/2010 22:00 +Tallahassee,,SPHERE,FL,4/26/2010 0:00 +Markle,,SPHERE,IN,4/26/2010 4:00 +Laguna Hills,,FIREBALL,CA,4/26/2010 19:45 +Waverly,,,TN,4/27/2010 9:40 +Broomfield,,SPHERE,CO,4/27/2010 14:00 +Chicago,,TRIANGLE,IL,4/27/2010 19:30 +Saxtons River,,SPHERE,VT,4/27/2010 20:53 +Portland,,LIGHT,OR,4/28/2010 5:30 +Virginia Beach,,LIGHT,VA,4/28/2010 8:00 +Steger,,CIRCLE,IL,4/28/2010 9:20 +Mount Vernon,,OTHER,WA,4/28/2010 12:53 +Bloomington,,CIGAR,IN,4/28/2010 15:00 +Phoenix,,CIGAR,AZ,4/28/2010 17:00 +Kinston,,,NC,4/28/2010 18:00 +Honolulu,,LIGHT,HI,4/28/2010 19:00 +Durham,,LIGHT,CT,4/28/2010 20:00 +St. Paul's,,CIRCLE,NC,4/28/2010 20:00 +New Bern,,VARIOUS,NC,4/28/2010 20:50 +Plymouth,GREEN,SPHERE,PA,4/28/2010 21:19 +Capitola,RED,DISK,CA,4/28/2010 21:30 +Durant,,,OK,4/28/2010 21:30 +Senatobia,,TRIANGLE,MS,4/28/2010 23:25 +Las Vegas,,CHEVRON,NV,4/29/2010 0:52 +Massapequa,,LIGHT,NY,4/29/2010 3:00 +Indian Mound,,CIRCLE,TN,4/29/2010 20:14 +Cheyenne,,LIGHT,WY,4/29/2010 20:45 +Somerset,,SPHERE,MA,4/30/2010 13:32 +Broadview Heights,,CIRCLE,OH,4/30/2010 20:00 +Savannah,RED,,TN,4/30/2010 20:00 +Lincoln,,OTHER,NE,4/30/2010 21:00 +Sparks,,FLASH,NV,4/30/2010 21:00 +Katonah,,TRIANGLE,CT,4/30/2010 21:23 +Evansville,,CIRCLE,WY,4/30/2010 21:30 +San Carlos,,TRIANGLE,CA,5/1/2010 1:00 +Fruitland,,TRIANGLE,ID,5/1/2010 6:00 +Newington,,CIRCLE,CT,5/1/2010 9:30 +San Bernardino,RED,FORMATION,CA,5/1/2010 9:45 +Naples,,CIGAR,FL,5/1/2010 19:47 +East Boston,,DISK,MA,5/1/2010 20:30 +Tularosa,,,NM,5/1/2010 21:00 +Santa Cruz,ORANGE,CIRCLE,CA,5/1/2010 21:05 +Gig Harbor,,LIGHT,WA,5/1/2010 22:00 +Hallettsville,,TRIANGLE,TX,5/1/2010 23:00 +Tijeras,,CIRCLE,NM,5/1/2010 23:00 +Richmond,,DISK,VA,5/1/2010 23:30 +Los Angeles,,CIRCLE,CA,5/2/2010 2:50 +Bend,,DISK,OR,5/2/2010 16:00 +Howell,,CIRCLE,NJ,5/2/2010 19:45 +Alpharetta,RED,LIGHT,GA,5/2/2010 20:00 +Berkeley,,CIRCLE,CA,5/2/2010 20:40 +Austin,,,TX,5/2/2010 21:30 +Fort Atkinson,,LIGHT,WI,5/2/2010 21:55 +Hometown,,DIAMOND,IL,5/2/2010 23:00 +Wilmington,,OVAL,CA,5/2/2010 23:00 +Savannah,,,TN,5/3/2010 0:00 +Whitman,RED,TRIANGLE,MA,5/3/2010 9:15 +Mineola,,,TX,5/3/2010 12:35 +McHenry,,OTHER,IL,5/3/2010 15:30 +McHenry,,DISK,IL,5/3/2010 15:45 +McHenry,,,IL,5/3/2010 16:00 +Louisville,,VARIOUS,KY,5/3/2010 21:00 +Omaha,,DIAMOND,NE,5/3/2010 21:17 +Knoxville,,,TN,5/3/2010 21:30 +Ukiah,,LIGHT,CA,5/3/2010 21:35 +State College,ORANGE,LIGHT,PA,5/3/2010 21:45 +Ft. Lauderdale,RED YELLOW GREEN BLUE,LIGHT,FL,5/3/2010 22:00 +Pierce,,LIGHT,TX,5/4/2010 21:00 +San Angelo,,,TX,5/4/2010 21:08 +Santa Clarita,,FORMATION,CA,5/4/2010 21:20 +Ewa Beach,,LIGHT,HI,5/4/2010 21:25 +Wahiawa,GREEN,LIGHT,HI,5/4/2010 21:30 +Telford,RED,LIGHT,PA,5/4/2010 21:55 +Mifflinburg,,CIRCLE,PA,5/4/2010 22:00 +Pollock Pines,,SPHERE,CA,5/4/2010 22:15 +Davie,,OTHER,FL,5/4/2010 22:30 +Saint Cloud,BLUE,OVAL,MN,5/4/2010 23:40 +Bertram,,LIGHT,TX,5/5/2010 5:24 +Allen,,LIGHT,TX,5/5/2010 6:00 +Canal Winchester,,RECTANGLE,OH,5/5/2010 11:30 +Rolesville,RED,FORMATION,NC,5/5/2010 20:48 +Durham,,LIGHT,NC,5/5/2010 21:20 +Palm Springs,,OTHER,CA,5/5/2010 21:30 +Moultrie,,,GA,5/5/2010 22:00 +Mt. Vernon,ORANGE,SPHERE,OH,5/6/2010 0:00 +Caviota,,DISK,CA,5/6/2010 12:08 +Charlotte,,OVAL,NC,5/6/2010 12:30 +Jacksonville,,TRIANGLE,FL,5/6/2010 20:00 +Anderson,,,MO,5/6/2010 21:00 +Kissimmee,,TRIANGLE,FL,5/6/2010 21:15 +Sacramento,,LIGHT,CA,5/6/2010 21:20 +Hadley,,LIGHT,MA,5/6/2010 21:30 +Proctorville,,LIGHT,OH,5/6/2010 22:00 +Fairfield,YELLOW GREEN,,CA,5/6/2010 23:23 +Gladwin,,,MI,5/7/2010 1:57 +Phoenix,,VARIOUS,AZ,5/7/2010 12:00 +Luka,,CIRCLE,MS,5/7/2010 17:30 +Oakland,,,CA,5/7/2010 21:00 +Woodward,,TRIANGLE,IA,5/7/2010 22:20 +Worcester,,CIGAR,MA,5/8/2010 0:15 +Gardner,,FORMATION,MA,5/8/2010 0:20 +Los Angeles,,FLASH,CA,5/8/2010 1:00 +Fort Hall,,DISK,ID,5/8/2010 12:45 +Casa Grande,,CIRCLE,AZ,5/8/2010 17:30 +Charlotte,,LIGHT,NC,5/8/2010 21:39 +Sedona,,,AZ,5/8/2010 22:00 +Mill Valley,,CIGAR,CA,5/8/2010 22:11 +Graham,ORANGE,CIRCLE,WA,5/8/2010 22:15 +Graham,ORANGE,LIGHT,WA,5/8/2010 22:15 +Isanti,,OTHER,MN,5/8/2010 22:25 +Gunnison,,TRIANGLE,CO,5/8/2010 22:30 +Daytona Beach,,LIGHT,FL,5/8/2010 22:47 +Memphis,,LIGHT,TN,5/9/2010 0:00 +Virginia,,,VA,5/9/2010 0:00 +Panama,,CIGAR,FL,5/9/2010 5:10 +Attleboro,,DISK,MA,5/9/2010 5:56 +Winston-Salem,,OTHER,NC,5/9/2010 12:00 +Pleasantville,,LIGHT,NJ,5/9/2010 20:30 +Pleasantville,,LIGHT,NJ,5/9/2010 20:30 +State College,,FLASH,PA,5/9/2010 21:00 +Fairfield,,TRIANGLE,CA,5/9/2010 22:00 +Escondido,ORANGE,DIAMOND,CA,5/9/2010 22:01 +Swansea,,LIGHT,SC,5/9/2010 22:07 +Fayetteville,,OTHER,GA,5/9/2010 23:00 +Lawrence,,OVAL,MA,5/10/2010 0:15 +Williamsburg,,LIGHT,VA,5/10/2010 3:00 +Wittmann,,FORMATION,AZ,5/10/2010 5:30 +Walterborow,,DIAMOND,SC,5/10/2010 13:00 +Oak Lawn,,CIRCLE,IL,5/10/2010 19:00 +Chichester,,LIGHT,PA,5/10/2010 20:00 +Knowlton,,LIGHT,NJ,5/10/2010 21:00 +Trinidad,RED ORANGE,LIGHT,CA,5/10/2010 21:40 +Havre,,LIGHT,MT,5/10/2010 22:55 +Havre,,LIGHT,MT,5/10/2010 22:55 +Orlando,,LIGHT,FL,5/10/2010 23:45 +Fountain Hills,,TRIANGLE,AZ,5/11/2010 4:00 +Big Sur,,,CA,5/11/2010 17:10 +Bloomington,,CIRCLE,IL,5/11/2010 22:00 +Chandler,,FORMATION,AZ,5/11/2010 22:00 +Boise,,LIGHT,ID,5/11/2010 22:37 +Lakewood,RED,LIGHT,IL,5/12/2010 0:00 +Napavine,,,WA,5/12/2010 0:30 +Wenatchee,RED,OTHER,WA,5/12/2010 3:43 +St. Joseph,RED,TRIANGLE,MO,5/12/2010 10:07 +Palo Cedro,,,CA,5/12/2010 11:25 +Livermore,,LIGHT,CA,5/12/2010 12:30 +Chesapeake,,FIREBALL,VA,5/12/2010 19:45 +Keokuk,,LIGHT,IA,5/12/2010 21:00 +Bremerton,,LIGHT,WA,5/12/2010 21:47 +Hood River,,LIGHT,OR,5/12/2010 22:14 +Ballinger,,DIAMOND,TX,5/12/2010 22:30 +Amherst,,,VA,5/12/2010 23:30 +Eugene,BLUE,CIRCLE,OR,5/13/2010 16:00 +North Myrtle Beach,,OVAL,SC,5/13/2010 18:00 +Weston,,,MO,5/13/2010 19:30 +Tujunga,,SPHERE,CA,5/13/2010 21:27 +Burlington,,LIGHT,IA,5/13/2010 22:30 +Sedro Wooley,,FIREBALL,WA,5/14/2010 0:00 +Temecula,,VARIOUS,CA,5/14/2010 0:48 +Providence,,OTHER,RI,5/14/2010 4:30 +Saugerties,,LIGHT,NY,5/14/2010 21:12 +Cedar City,,LIGHT,UT,5/14/2010 21:35 +Salem,,SPHERE,OR,5/14/2010 21:45 +Brazil,,TRIANGLE,IN,5/14/2010 22:00 +Fond du Lac,,FIREBALL,WI,5/14/2010 23:30 +Manchester-by-the-sea,ORANGE,SPHERE,MA,5/14/2010 23:30 +Chesapeake,,,VA,5/15/2010 0:30 +Broken Arrow,ORANGE,LIGHT,OK,5/15/2010 1:20 +Puyallyp,,CIRCLE,WA,5/15/2010 4:30 +Chandler,,LIGHT,AZ,5/15/2010 16:00 +Chicago,,SPHERE,IL,5/15/2010 18:45 +Phoenix,,,AZ,5/15/2010 19:30 +Bayonne,,LIGHT,NJ,5/15/2010 19:45 +Denver,,LIGHT,CO,5/15/2010 20:00 +Meldrim,RED,,GA,5/15/2010 20:30 +West Trenton,,LIGHT,NJ,5/15/2010 20:30 +Gila Bend,,FIREBALL,AZ,5/15/2010 20:45 +Gettysburg,,OTHER,PA,5/15/2010 21:00 +Somers Point,,LIGHT,NJ,5/15/2010 21:30 +Las Vegas,,CROSS,NV,5/15/2010 22:30 +Bloomington,RED ORANGE,FORMATION,CA,5/16/2010 0:01 +Norton,,CIRCLE,MA,5/16/2010 0:14 +South Kingstown,,CYLINDER,RI,5/16/2010 9:40 +Denver,,,CO,5/16/2010 16:00 +Cherry Creek,,,CO,5/16/2010 19:00 +Jeffersonville,,CIRCLE,IN,5/16/2010 19:00 +Philadelphia,,DISK,PA,5/16/2010 21:00 +Hugo,RED,OTHER,MN,5/16/2010 21:30 +Rockford,,DIAMOND,IL,5/16/2010 23:00 +La Center,BLUE,FLASH,WA,5/16/2010 23:55 +Cherry Creek State Park,,,CO,5/17/2010 22:00 +Grant,,TEARDROP,AL,5/17/2010 22:20 +Jessup,,,GA,5/17/2010 23:00 +Hephzibah,,RECTANGLE,GA,5/18/2010 12:30 +Ocala,,LIGHT,FL,5/18/2010 21:15 +Buffalo,,,MO,5/18/2010 21:30 +Portland,,DIAMOND,OR,5/18/2010 21:30 +St. Louis,,LIGHT,MO,5/18/2010 21:55 +Helena,,DISK,MT,5/18/2010 22:00 +Congress,,SPHERE,AZ,5/19/2010 1:00 +EL Cerrito,,TRIANGLE,CA,5/19/2010 3:00 +New York City,,DISK,NY,5/19/2010 12:00 +Mt. Clemens,,CIGAR,MI,5/19/2010 19:00 +Lawrenceville,,OTHER,GA,5/19/2010 21:00 +Waynesboro,,LIGHT,PA,5/19/2010 21:15 +Sarasota,BLUE,VARIOUS,FL,5/19/2010 22:10 +Canton,YELLOW,CIRCLE,IL,5/19/2010 22:43 +Chino,,,CA,5/20/2010 1:00 +Mesa,ORANGE,LIGHT,AZ,5/20/2010 1:40 +South Kingstown,,CHEVRON,RI,5/20/2010 11:00 +Assateague Island,,CYLINDER,MD,5/20/2010 13:46 +Beverly Hills,,CIGAR,MI,5/20/2010 19:15 +Aransas Pass,,LIGHT,TX,5/20/2010 21:00 +Ashton,,OTHER,ID,5/20/2010 21:30 +Tolland,RED,LIGHT,CT,5/20/2010 21:30 +Springfield,,TRIANGLE,NJ,5/20/2010 21:40 +Boonsboro,,OVAL,MD,5/20/2010 22:10 +San Jose,,LIGHT,CA,5/21/2010 0:05 +Palmer,,SPHERE,AK,5/21/2010 0:26 +Euless,,VARIOUS,TX,5/21/2010 15:30 +Raleigh,,LIGHT,NC,5/21/2010 21:30 +St. Louis,RED GREEN,,MO,5/21/2010 21:55 +McComb,RED,TRIANGLE,OH,5/21/2010 22:30 +Gilman City,RED,FORMATION,MO,5/21/2010 22:35 +Riverside,,CIGAR,CA,5/21/2010 23:34 +Edina,,,MN,5/21/2010 23:45 +Marthas Vineyard,RED,CYLINDER,MA,5/22/2010 4:00 +Nantucket,RED,CYLINDER,MA,5/22/2010 4:00 +Howard Beach,,CIRCLE,NY,5/22/2010 11:58 +Raleigh,,FIREBALL,NC,5/22/2010 20:00 +San Francisco,,OVAL,CA,5/22/2010 20:15 +Rockford,,TRIANGLE,IL,5/22/2010 20:27 +Fairless Hills,,FIREBALL,PA,5/22/2010 21:00 +Lee's Summit,,TRIANGLE,MO,5/22/2010 21:24 +Little Chute,,LIGHT,WI,5/22/2010 22:00 +Orlando,ORANGE,LIGHT,FL,5/22/2010 22:00 +Portland,,LIGHT,OR,5/22/2010 22:05 +Brook Park,,LIGHT,OH,5/22/2010 22:30 +Galveston,,FIREBALL,TX,5/22/2010 23:45 +Algonac,,FIREBALL,MI,5/23/2010 1:16 +Los Gatos,,OVAL,CA,5/23/2010 2:00 +Dallas,,DISK,TX,5/23/2010 2:15 +Brooksville,,LIGHT,FL,5/23/2010 20:55 +Mt. Pocono,,CROSS,PA,5/23/2010 21:00 +Rolling Meadows,BLUE,CIRCLE,IL,5/23/2010 23:45 +Holiday Hills,,TRIANGLE,IL,5/24/2010 3:30 +Honolulu,,SPHERE,HI,5/24/2010 7:45 +Green Lake,,,WI,5/24/2010 9:15 +Charlestown,,OTHER,RI,5/24/2010 14:30 +Westbrook,,OVAL,ME,5/24/2010 20:00 +Fort Leonard Wood,,FIREBALL,MO,5/24/2010 21:30 +Circleville,,OTHER,OH,5/25/2010 4:07 +Las Vegas,,VARIOUS,NV,5/25/2010 13:30 +Las Vegas,,OVAL,NV,5/25/2010 14:00 +Quakertown,,CIGAR,PA,5/25/2010 18:00 +Fort Leonard Wood,,,MO,5/25/2010 21:30 +Los Angeles,,LIGHT,CA,5/25/2010 21:30 +New York City,RED,,NY,5/25/2010 21:30 +St. Louis,,LIGHT,MO,5/25/2010 21:35 +La Mesa,,TEARDROP,CA,5/25/2010 21:48 +Albuquerque,,FLASH,NM,5/25/2010 22:00 +Mount Washington,,TRIANGLE,KY,5/25/2010 23:00 +Louisville,,VARIOUS,KY,5/26/2010 0:20 +Miami,,DISK,FL,5/26/2010 3:30 +Santa Fe,,FORMATION,NM,5/26/2010 9:30 +Santa Ana,,,CA,5/26/2010 20:30 +Claremont,,FIREBALL,CA,5/26/2010 22:00 +Johnstown,,LIGHT,PA,5/26/2010 22:00 +West Memphis,,LIGHT,AR,5/26/2010 22:00 +Morristown,,TRIANGLE,TN,5/26/2010 23:15 +Norwalk,,LIGHT,CA,5/26/2010 23:25 +Arlington,,LIGHT,TX,5/26/2010 23:45 +Enerson,,LIGHT,AR,5/27/2010 0:00 +Grand Junction,,,CO,5/27/2010 0:00 +Phoenix,,LIGHT,AZ,5/27/2010 0:00 +Tucson,,DISK,AZ,5/27/2010 1:00 +Palmdale,,CIRCLE,CA,5/27/2010 17:58 +Summer Lake,,OTHER,OR,5/27/2010 20:00 +Apple Valley,,LIGHT,CA,5/27/2010 21:00 +Chicago,,FIREBALL,IL,5/27/2010 22:00 +Ventura,RED,LIGHT,CA,5/27/2010 22:15 +Rochester,,LIGHT,MN,5/27/2010 22:20 +North Mankato,,SPHERE,MN,5/28/2010 0:16 +Patterson,,TRIANGLE,CA,5/28/2010 2:37 +Rockford,,CYLINDER,IL,5/28/2010 9:10 +Solon,,,ME,5/28/2010 21:00 +Chesapeake,,CIRCLE,VA,5/28/2010 21:30 +Green Bay,,,WI,5/28/2010 22:12 +Commerce,,CIRCLE,CA,5/29/2010 2:00 +Fort Lauderdale,,,FL,5/29/2010 6:00 +Prince William Sound,,,AK,5/29/2010 9:45 +Minneapolis,,CIRCLE,MN,5/29/2010 10:30 +Lancaster,,CHEVRON,OH,5/29/2010 13:00 +Taos,,FORMATION,NM,5/29/2010 20:05 +Taos,,FORMATION,NM,5/29/2010 20:10 +"Bryant Creek, Rippe access",ORANGE,LIGHT,MO,5/29/2010 21:00 +Sarasota,RED,SPHERE,FL,5/29/2010 21:10 +Oregon City,RED,LIGHT,OR,5/29/2010 21:30 +Oregon City,,TRIANGLE,OR,5/29/2010 21:30 +Ceresco,,FIREBALL,NE,5/29/2010 22:00 +Oregon City,RED,LIGHT,OR,5/29/2010 22:00 +Richland,RED,VARIOUS,MO,5/29/2010 22:00 +Fonda,,SPHERE,IA,5/29/2010 22:30 +New Port Richey,,,FL,5/29/2010 22:30 +Iowa City,,VARIOUS,IA,5/29/2010 22:44 +Santa Cruz,,LIGHT,CA,5/29/2010 23:10 +Minneapolis,,CIRCLE,MN,5/29/2010 23:12 +Williamsburg,,,KY,5/30/2010 0:50 +Granite Bay,,VARIOUS,CA,5/30/2010 2:30 +Watertown,RED ORANGE,CIRCLE,NY,5/30/2010 10:30 +Seattle,,RECTANGLE,WA,5/30/2010 12:30 +Las Vegas,,,NV,5/30/2010 13:45 +Gilbertsville,ORANGE,,PA,5/30/2010 21:00 +Draper,RED GREEN BLUE,CIRCLE,UT,5/30/2010 22:30 +Holland,,TEARDROP,MI,5/30/2010 22:30 +Paris,,LIGHT,KY,5/31/2010 0:00 +Mundelein,,,IL,5/31/2010 1:00 +Mastic,,CIRCLE,NY,5/31/2010 2:50 +Gravette,,LIGHT,AR,5/31/2010 9:40 +Thousand Oaks,,CIRCLE,CA,5/31/2010 11:15 +Tampa,,CYLINDER,FL,5/31/2010 13:20 +Campo,,DISK,IA,5/31/2010 15:00 +Albuquerque,,OTHER,NM,5/31/2010 20:00 +Elgin,RED,FIREBALL,IL,5/31/2010 22:10 +Elgin,ORANGE,SPHERE,IL,5/31/2010 22:10 +Dayton,,TRIANGLE,OH,6/1/2010 0:45 +Massapequa,,LIGHT,NY,6/1/2010 1:00 +Groton,,LIGHT,CT,6/1/2010 4:00 +Buffalo,,FORMATION,NY,6/1/2010 5:00 +Auburn,,TEARDROP,WA,6/1/2010 10:00 +Wills Point,,CIGAR,TX,6/1/2010 15:00 +New York City,,CIGAR,NY,6/1/2010 17:40 +New York City,,OTHER,NY,6/1/2010 19:05 +Noblesville,,FIREBALL,IN,6/1/2010 19:15 +Indianapolis,,RECTANGLE,IN,6/1/2010 20:00 +Sunrise Beach,,VARIOUS,MO,6/1/2010 20:30 +Miami,,CIRCLE,FL,6/1/2010 20:45 +Chesterfield,,,VA,6/1/2010 22:00 +Waynesville,ORANGE,TRIANGLE,MO,6/1/2010 22:50 +Bolivar,,FORMATION,MO,6/1/2010 23:00 +Bradenton,,VARIOUS,FL,6/1/2010 23:00 +Stafford Springs,,TRIANGLE,CT,6/1/2010 23:50 +Anaheim Hll,,SPHERE,CA,6/2/2010 4:30 +Garden City,,CIGAR,NY,6/2/2010 9:30 +Fleming Island,RED,OTHER,FL,6/2/2010 10:45 +Federal Way,RED,DISK,WA,6/2/2010 17:54 +Peoria,,EGG,AZ,6/2/2010 18:20 +Hollywood,,OVAL,CA,6/2/2010 19:10 +Tempe,,DISK,AZ,6/2/2010 21:10 +Jersey City,RED,LIGHT,NJ,6/2/2010 22:00 +Fort Wayne,,FIREBALL,IN,6/2/2010 23:00 +Happy Valley,,OTHER,CA,6/2/2010 23:00 +Siesta Key,,SPHERE,FL,6/2/2010 23:00 +Modesto,,,CA,6/2/2010 23:15 +Jacksonville,,TRIANGLE,NC,6/3/2010 11:30 +Anehiem,,SPHERE,CA,6/3/2010 14:00 +Newport,,DISK,RI,6/3/2010 14:00 +Bluffton,,CIRCLE,IN,6/3/2010 22:00 +South Shore,,,KY,6/3/2010 22:00 +O'Fallon,,FIREBALL,MO,6/3/2010 22:15 +Fort Collins,,CIRCLE,CO,6/3/2010 23:20 +Easton,,TEARDROP,MD,6/4/2010 2:00 +Wellington,,DISK,FL,6/4/2010 2:00 +Bowling Green,,CIRCLE,OH,6/4/2010 3:00 +Muskokee,,LIGHT,OK,6/4/2010 4:05 +El Paso,,FIREBALL,TX,6/4/2010 9:30 +Price,,SPHERE,UT,6/4/2010 11:56 +Bismarck,,LIGHT,ND,6/4/2010 22:00 +Topeka,ORANGE,,KS,6/5/2010 1:00 +Topeka,ORANGE,RECTANGLE,KS,6/5/2010 1:00 +Wilmore,,LIGHT,KY,6/5/2010 1:57 +Louisville,GREEN,LIGHT,KY,6/5/2010 2:00 +Lowell,,OTHER,AR,6/5/2010 2:00 +Chicago,,LIGHT,IL,6/5/2010 21:00 +Scottsdale,,CIRCLE,AZ,6/5/2010 22:00 +Sacramento,,LIGHT,CA,6/5/2010 23:32 +Emlenton,,SPHERE,PA,6/6/2010 1:35 +New York City,RED,SPHERE,NY,6/6/2010 2:00 +Gillette,,LIGHT,WY,6/6/2010 2:45 +Milford,,,MI,6/6/2010 3:43 +Lake Elsinore,,OVAL,CA,6/6/2010 11:15 +Lake Elsinore,,VARIOUS,CA,6/6/2010 11:15 +Aurora,,SPHERE,IL,6/6/2010 20:10 +Montclair,,TEARDROP,CA,6/6/2010 21:00 +Santa Anna,,LIGHT,TX,6/6/2010 21:00 +Dawson Springs,,TRIANGLE,KY,6/6/2010 22:00 +Merced,,TRIANGLE,CA,6/6/2010 22:00 +Rockford,,LIGHT,IL,6/6/2010 22:00 +Wilkes-Barre,,SPHERE,PA,6/6/2010 22:00 +Sandy,,,UT,6/6/2010 23:20 +Moberly,,VARIOUS,MO,6/7/2010 0:00 +Oak Lawn,,LIGHT,IL,6/7/2010 2:30 +Banning,,LIGHT,CA,6/7/2010 3:50 +San Diego,,TRIANGLE,CA,6/7/2010 20:00 +Lancaster,YELLOW,LIGHT,NH,6/7/2010 22:00 +Wareham,,LIGHT,MA,6/7/2010 22:00 +Minersville,,LIGHT,PA,6/7/2010 23:30 +Independence,,VARIOUS,OH,6/8/2010 18:50 +Wikieup,,OVAL,AZ,6/8/2010 20:30 +Merritt Island,,LIGHT,FL,6/8/2010 21:00 +Tucson,,FORMATION,AZ,6/8/2010 21:00 +Visalia,,LIGHT,CA,6/9/2010 4:50 +Estero,,LIGHT,FL,6/9/2010 20:58 +St. Simons Island,,OTHER,GA,6/9/2010 21:20 +Delaware,RED,CIRCLE,DE,6/9/2010 21:30 +Grand Prairie,,OTHER,TX,6/9/2010 21:30 +Ruskin,RED BLUE,TRIANGLE,FL,6/9/2010 23:00 +Oak Lawn,,CIRCLE,IL,6/10/2010 18:00 +Evansville,ORANGE YELLOW,CIRCLE,IN,6/10/2010 20:30 +Brookston,,OVAL,IN,6/10/2010 20:53 +Pico Rivera,,TRIANGLE,CA,6/10/2010 21:30 +Red Bluff - Dribble Creek Subdivision,,VARIOUS,CA,6/10/2010 21:30 +Cleveland,,,UT,6/10/2010 22:00 +Fort Collins,,LIGHT,CO,6/10/2010 22:55 +Delta,,OVAL,CO,6/10/2010 23:00 +Zionsville,,DISK,IN,6/11/2010 0:30 +St. Petersburg,,LIGHT,FL,6/11/2010 20:10 +Youngstown,ORANGE,TRIANGLE,OH,6/11/2010 22:00 +Bettendorf,,TRIANGLE,IA,6/11/2010 22:15 +Grandville,,,MI,6/11/2010 22:50 +Omaha,,LIGHT,NE,6/11/2010 23:28 +Six Mile,,LIGHT,SC,6/11/2010 23:30 +Rochester,BLUE,TRIANGLE,NY,6/12/2010 0:00 +Taneytown,,CIRCLE,MD,6/12/2010 1:00 +Kent,,CIRCLE,OH,6/12/2010 10:30 +Sammamish,,SPHERE,WA,6/12/2010 14:00 +Wenatchee,,LIGHT,WA,6/12/2010 15:30 +Verdi,,LIGHT,CA,6/12/2010 16:00 +San Jacinto,,LIGHT,CA,6/12/2010 20:00 +Indio,BLUE,FLASH,CA,6/12/2010 21:00 +Chicago,,,IL,6/12/2010 21:50 +Manson,,,WA,6/12/2010 22:00 +Medford,RED GREEN BLUE,FIREBALL,OR,6/12/2010 22:00 +Volujntown,,FLASH,CT,6/12/2010 23:00 +Phoenix,,OVAL,AZ,6/13/2010 13:47 +Lexington,,TRIANGLE,TX,6/13/2010 19:30 +Jacksonville,,DIAMOND,FL,6/13/2010 21:24 +Hesperia,,LIGHT,CA,6/13/2010 22:24 +Livonia,RED,VARIOUS,MI,6/13/2010 22:30 +Yuma,,TRIANGLE,AZ,6/13/2010 23:00 +Clermont,,OTHER,GA,6/13/2010 23:15 +Westland,ORANGE,CIRCLE,MI,6/13/2010 23:30 +Irvine,,CIRCLE,CA,6/14/2010 16:00 +Burbank,,CIRCLE,CA,6/14/2010 18:10 +Huntington Beach,RED GREEN,OTHER,CA,6/14/2010 21:11 +Cleveland,,,UT,6/14/2010 22:00 +Hewitt,,LIGHT,NJ,6/14/2010 22:15 +Monroe,,,NY,6/14/2010 22:15 +Salt Lake City,,LIGHT,UT,6/14/2010 23:18 +Lafayette,,FIREBALL,IN,6/14/2010 23:54 +Spring Hill,,VARIOUS,FL,6/15/2010 0:00 +Bel Air,,OVAL,MD,6/15/2010 0:30 +Brainerd,ORANGE,,MN,6/15/2010 0:30 +Mount Vernon,,LIGHT,WA,6/15/2010 1:00 +Bellevue,,CIGAR,WA,6/15/2010 10:00 +Woodlawn,,TRIANGLE,VA,6/15/2010 20:30 +Northport,,FORMATION,WA,6/15/2010 20:40 +Placentia,,TEARDROP,CA,6/15/2010 21:20 +Knoxville,,TRIANGLE,TN,6/15/2010 21:25 +Saraland,,LIGHT,AL,6/15/2010 21:30 +North Phoenix,ORANGE,,AZ,6/15/2010 22:00 +Williamsville,,SPHERE,MO,6/16/2010 1:00 +Los Banos,ORANGE YELLOW,OTHER,CA,6/16/2010 1:50 +Chicago,,OVAL,IL,6/16/2010 13:10 +Lexington,RED,CIGAR,SC,6/16/2010 17:00 +Hayward,,FORMATION,WI,6/16/2010 20:15 +Durham,,OTHER,NH,6/16/2010 22:00 +Cape May Courthouse,,DISK,NJ,6/16/2010 22:30 +Butler,GREEN,SPHERE,PA,6/16/2010 23:00 +Wikieup,ORANGE,DIAMOND,AZ,6/17/2010 0:30 +Los Montoyas,,DISK,NM,6/17/2010 9:41 +Perry,,CYLINDER,IA,6/17/2010 20:00 +Winfield,,OTHER,KS,6/17/2010 20:30 +Seattle,,SPHERE,WA,6/17/2010 20:50 +Dublin,RED ORANGE,CIGAR,OH,6/17/2010 21:00 +Halethorpe,GREEN,LIGHT,MD,6/17/2010 21:00 +Elburn,,FIREBALL,IL,6/17/2010 21:29 +Riverside,BLUE,LIGHT,CA,6/17/2010 21:33 +Hanover,,CIRCLE,PA,6/17/2010 22:00 +Stockton,BLUE,FLASH,CA,6/18/2010 3:08 +Sherman,,CIRCLE,TX,6/18/2010 8:00 +Gratis,,OTHER,OH,6/18/2010 11:00 +Centreville,,SPHERE,VA,6/18/2010 16:00 +Pittsfield,,LIGHT,MA,6/18/2010 21:00 +South Portland,,LIGHT,ME,6/18/2010 21:58 +Gainesville,,LIGHT,TX,6/18/2010 22:00 +Cape May Courthouse,,,NJ,6/18/2010 22:15 +Cincinnati,,CIRCLE,OH,6/18/2010 22:24 +North Attleboro,,CIRCLE,MA,6/18/2010 23:46 +Pebble Beach,,CIRCLE,CA,6/19/2010 0:00 +Bluff City,ORANGE YELLOW,CIRCLE,AR,6/19/2010 3:00 +Shippensburg,,LIGHT,PA,6/19/2010 9:00 +Springfield,,VARIOUS,OH,6/19/2010 10:17 +Plano,,OVAL,TX,6/19/2010 12:34 +El Paso,,TEARDROP,TX,6/19/2010 17:30 +Yazoo,,DISK,MS,6/19/2010 21:00 +Yazoo,,DISK,MS,6/19/2010 21:00 +Plymouth,,CIGAR,NH,6/19/2010 21:15 +Pottsville,,FIREBALL,PA,6/19/2010 21:45 +Arlington,BLUE,LIGHT,TX,6/19/2010 21:55 +Darien,,,IL,6/19/2010 22:45 +Watertown,,OTHER,NY,6/19/2010 22:50 +Bryant,,SPHERE,AR,6/19/2010 23:00 +Laguna Niguel,,,CA,6/19/2010 23:00 +Merrill,RED,TRIANGLE,WI,6/19/2010 23:10 +Blue Island,,CIRCLE,IL,6/20/2010 1:00 +Rockford,,CIRCLE,IL,6/20/2010 2:35 +Rockford,,CIRCLE,IL,6/20/2010 2:35 +Arlington,,LIGHT,TX,6/20/2010 4:00 +Torrance,,FIREBALL,CO,6/20/2010 13:40 +(above mountains in airplane),,CIRCLE,UT,6/20/2010 15:00 +Staten Island,,DISK,NY,6/20/2010 16:00 +Anniston,,OVAL,AL,6/20/2010 16:40 +Napa,,SPHERE,CA,6/20/2010 18:40 +Scranton,,TRIANGLE,PA,6/20/2010 21:00 +Fond du Lac,,FIREBALL,WI,6/20/2010 21:20 +Winder,,,GA,6/20/2010 22:00 +Lafayette,,FIREBALL,IN,6/20/2010 23:00 +Freedom,,RECTANGLE,WI,6/20/2010 23:30 +New York City,,LIGHT,NY,6/21/2010 1:00 +Charleston,,,WV,6/21/2010 1:15 +Glendale,,CONE,CA,6/21/2010 11:45 +Carlsbad,,OTHER,CA,6/21/2010 16:45 +Billerica,,,MA,6/21/2010 21:20 +Petaluma,,SPHERE,CA,6/21/2010 23:00 +Trenton,,TRIANGLE,NJ,6/21/2010 23:00 +Benton,,CYLINDER,AR,6/22/2010 0:36 +Upland,,OTHER,CA,6/22/2010 7:45 +Fairborn,ORANGE,CIRCLE,OH,6/22/2010 12:30 +East Bridgewater,,FIREBALL,MA,6/22/2010 20:45 +Prescott,ORANGE,LIGHT,AZ,6/22/2010 22:00 +Siesta Key,ORANGE YELLOW,CIRCLE,FL,6/22/2010 23:00 +Rosebud,ORANGE,CIRCLE,SD,6/23/2010 2:30 +Ogden,,LIGHT,UT,6/23/2010 3:00 +Yuma,,,AZ,6/23/2010 4:03 +Cashion,BLUE,OVAL,AZ,6/23/2010 5:20 +Tampa,,RECTANGLE,FL,6/23/2010 18:20 +Kendall Park,,OVAL,NJ,6/23/2010 20:04 +Olympia,,SPHERE,WA,6/23/2010 21:30 +Newberg,RED,LIGHT,OR,6/23/2010 22:30 +Vashon,YELLOW,DIAMOND,WA,6/23/2010 23:00 +Chappaqua,,SPHERE,NY,6/23/2010 23:30 +Souderton,,SPHERE,PA,6/24/2010 0:00 +Benton,,CIRCLE,ME,6/24/2010 1:00 +Fresno,BLUE,,CA,6/24/2010 6:25 +Seattle,,LIGHT,WA,6/24/2010 15:00 +Eatontown,,FIREBALL,NJ,6/24/2010 21:15 +Redding,,LIGHT,CA,6/24/2010 21:40 +Ellicott City,,CIRCLE,MD,6/24/2010 22:00 +Monkton,,FIREBALL,MD,6/24/2010 22:00 +Temple,,LIGHT,PA,6/24/2010 22:00 +Fort Loudon,,FIREBALL,PA,6/24/2010 22:05 +Waukee,,LIGHT,IA,6/24/2010 22:15 +Jefferson,,LIGHT,NC,6/24/2010 22:30 +Tumwater,,LIGHT,WA,6/24/2010 23:16 +Johns Island,,LIGHT,SC,6/24/2010 23:42 +Sissonville,,FIREBALL,WV,6/25/2010 0:00 +Dade City,,TEARDROP,FL,6/25/2010 0:20 +Las Vegas,RED,FLASH,NV,6/25/2010 0:37 +Holiday,,OTHER,FL,6/25/2010 4:51 +Elk,,,AK,6/25/2010 10:22 +Palmdale,,LIGHT,CA,6/25/2010 10:28 +New Albany,RED,LIGHT,IN,6/25/2010 10:30 +Bowling Green,,DISK,KY,6/25/2010 15:00 +Everett,,LIGHT,WA,6/25/2010 21:45 +Oxford,,FIREBALL,OH,6/25/2010 22:10 +Granger,RED,LIGHT,IN,6/25/2010 22:20 +Colchester,,LIGHT,CT,6/25/2010 23:00 +Milford,,TRIANGLE,MA,6/25/2010 23:23 +Pittsburgh,BLUE,DISK,PA,6/25/2010 23:35 +Utica,,LIGHT,NY,6/25/2010 23:35 +Bellingham,RED GREEN,LIGHT,WA,6/25/2010 23:50 +Greenville,BLUE,OTHER,IN,6/26/2010 0:04 +Greenville,BLUE,OTHER,IN,6/26/2010 0:04 +New Albany,BLUE,TRIANGLE,IN,6/26/2010 0:05 +Scranton,,FIREBALL,PA,6/26/2010 0:45 +Appleton,,CIRCLE,WI,6/26/2010 3:15 +Delta,,LIGHT,MO,6/26/2010 5:05 +Ozark,,,AR,6/26/2010 5:05 +The Colony,,DISK,TX,6/26/2010 5:18 +Carbonado,,DISK,WA,6/26/2010 9:46 +Republic,,LIGHT,MO,6/26/2010 10:45 +Decatur,,RECTANGLE,IL,6/26/2010 13:00 +Batavia,,SPHERE,IL,6/26/2010 15:22 +Batavia,,SPHERE,IL,6/26/2010 15:22 +Batavia,,SPHERE,IL,6/26/2010 15:22 +Carlsbad,,DISK,CA,6/26/2010 16:55 +San Diego,,OVAL,CA,6/26/2010 19:22 +Schuyler,,OTHER,VA,6/26/2010 20:45 +Blueridge,RED YELLOW BLUE,CIRCLE,GA,6/26/2010 21:00 +Ballwin,,LIGHT,MO,6/26/2010 21:30 +Elysburg,,FLASH,PA,6/26/2010 21:45 +Cornelius,,FIREBALL,NC,6/26/2010 22:00 +Lake Orion,,OVAL,MI,6/26/2010 22:00 +Shelby Twp,RED,CIRCLE,MI,6/26/2010 22:00 +Sikeston,,,MO,6/26/2010 22:00 +St. Joseph,ORANGE,SPHERE,MO,6/26/2010 22:30 +Seattle,ORANGE,LIGHT,WA,6/26/2010 22:39 +Pine Ridge,ORANGE,LIGHT,SD,6/26/2010 23:00 +Hat Creek,,DIAMOND,CA,6/27/2010 0:00 +Pocatello,,LIGHT,ID,6/27/2010 2:55 +Summerville,,TRIANGLE,SC,6/27/2010 4:40 +Zionsville,RED,VARIOUS,IN,6/27/2010 12:00 +Plano,,LIGHT,TX,6/27/2010 16:45 +East Norriton,BLUE,TRIANGLE,PA,6/27/2010 22:05 +Western Springs,,CIRCLE,IL,6/27/2010 22:35 +Monterey,GREEN BLUE,LIGHT,CA,6/27/2010 23:12 +Glendale,,,AZ,6/28/2010 0:10 +Jacksonville,,OVAL,IL,6/28/2010 2:00 +Butler,,TEARDROP,PA,6/28/2010 3:40 +Lyndonville,,CIRCLE,NY,6/28/2010 16:00 +Columbus,,CIGAR,IN,6/28/2010 19:00 +Platteville,,CIGAR,WI,6/28/2010 19:00 +Jamesville,,OVAL,MD,6/28/2010 19:51 +Phoenix,YELLOW,TEARDROP,AZ,6/28/2010 20:30 +Houston,,VARIOUS,TX,6/28/2010 21:35 +Denver,ORANGE,SPHERE,CO,6/28/2010 22:30 +Lake Havasu City,RED ORANGE,LIGHT,AZ,6/28/2010 22:30 +Mears,,SPHERE,MI,6/28/2010 23:00 +Sandwich,,SPHERE,IL,6/28/2010 23:00 +Lincoln,ORANGE,LIGHT,NE,6/28/2010 23:20 +Troy,,OTHER,MO,6/28/2010 23:30 +Signal Mountain,,LIGHT,TN,6/29/2010 0:37 +McKinney,,,TX,6/29/2010 20:00 +New Milford,,LIGHT,CT,6/29/2010 21:00 +Boonville,,LIGHT,IN,6/29/2010 21:05 +Hodgkins,,LIGHT,IL,6/29/2010 23:17 +Jacksonville,,LIGHT,IL,6/29/2010 23:30 +Salina,RED,LIGHT,KS,6/29/2010 23:30 +Culpeper County,,CIGAR,VA,6/29/2010 23:35 +Garberville,,,CA,6/30/2010 1:00 +Bakersfield,ORANGE,CIRCLE,CA,6/30/2010 3:00 +Lynnwood,,OTHER,WA,6/30/2010 3:00 +Poteau,,OTHER,OK,6/30/2010 9:45 +O'Fallon,RED YELLOW,CIRCLE,IL,6/30/2010 10:00 +Sun Valley,,OTHER,NV,6/30/2010 11:00 +Glacier National Park,,,MT,6/30/2010 12:00 +Goodyear,,OVAL,AZ,6/30/2010 13:00 +Washington,BLUE,CYLINDER,MO,6/30/2010 19:30 +Rochester Hill,,LIGHT,MI,6/30/2010 22:06 +Magnolia Township,ORANGE,LIGHT,MN,6/30/2010 23:00 +Sikeston,,,MO,6/30/2010 23:00 +Toledo,,TRIANGLE,OH,6/30/2010 23:30 +Sioux City,,LIGHT,IA,6/30/2010 23:45 +Berkley,,LIGHT,MA,7/1/2010 1:22 +Glenwood Springs.,,LIGHT,CO,7/1/2010 15:00 +South San Jose,,,CA,7/1/2010 15:30 +Cape May,,CYLINDER,NJ,7/1/2010 17:30 +Rosemead,RED ORANGE,FIREBALL,CA,7/1/2010 20:00 +Ardmore,RED BLUE,,AL,7/1/2010 20:35 +Muttontown,,OTHER,NY,7/1/2010 21:00 +Ridgecrest,,CIRCLE,CA,7/1/2010 21:00 +Lowell,,FIREBALL,MA,7/1/2010 21:10 +Hinckley,,LIGHT,IL,7/1/2010 21:30 +Palmdale,RED,TRIANGLE,CA,7/1/2010 21:40 +Grafton,ORANGE,FIREBALL,WI,7/1/2010 22:00 +Norristown,,TEARDROP,PA,7/1/2010 22:00 +Cedarbug,RED,OTHER,WI,7/1/2010 22:10 +Carson,,TRIANGLE,CA,7/1/2010 22:22 +Missoula,ORANGE,FIREBALL,MT,7/1/2010 22:30 +Fort Mill,,FIREBALL,SC,7/1/2010 22:45 +Lackawanna,RED,TRIANGLE,NY,7/1/2010 23:00 +Rutherford,,FIREBALL,NJ,7/1/2010 23:00 +Philadelphia,,,PA,7/1/2010 23:10 +Blue Springs,,LIGHT,MO,7/1/2010 23:30 +Moshiem,,SPHERE,TN,7/2/2010 0:00 +Wanaque,BLUE,OVAL,NJ,7/2/2010 10:15 +Alexandria Bay,,CONE,NY,7/2/2010 17:00 +Audubon,RED ORANGE,OVAL,IA,7/2/2010 18:00 +Aurora,,OVAL,IL,7/2/2010 20:30 +Odell,,OTHER,IL,7/2/2010 20:35 +Holyoke,ORANGE,FORMATION,MA,7/2/2010 20:50 +Nashville,,DIAMOND,TN,7/2/2010 21:00 +Hamilton,,SPHERE,NJ,7/2/2010 21:15 +Chicago,,FIREBALL,IL,7/2/2010 21:30 +Chicago,,FIREBALL,IL,7/2/2010 21:30 +Mishawaka,ORANGE,SPHERE,IN,7/2/2010 21:30 +Clovis,,FORMATION,CA,7/2/2010 21:40 +Elgin,ORANGE,SPHERE,IL,7/2/2010 22:00 +Fuquay Varina,,LIGHT,NC,7/2/2010 22:00 +Oak Creek,,FIREBALL,WI,7/2/2010 22:00 +Springfield,,TRIANGLE,MO,7/2/2010 22:00 +Unadilla,,FORMATION,MI,7/2/2010 22:30 +Hopkinsville,,LIGHT,KY,7/2/2010 22:55 +Jefferson City,,OTHER,MO,7/2/2010 23:10 +Jacksonville,,TRIANGLE,FL,7/2/2010 23:20 +Port Angeles,,LIGHT,WA,7/3/2010 0:30 +Columbia,,FORMATION,SC,7/3/2010 2:33 +Wausau,,FIREBALL,WI,7/3/2010 3:30 +Crown Point,,FIREBALL,IN,7/3/2010 9:30 +Federal Way,,LIGHT,WA,7/3/2010 10:50 +Chanute,,FIREBALL,KS,7/3/2010 16:00 +Poplar Grove,,CHEVRON,IL,7/3/2010 18:15 +Phillipsburg,RED,FIREBALL,NJ,7/3/2010 19:00 +Seattle,,FIREBALL,WA,7/3/2010 20:00 +Addison,ORANGE,FIREBALL,TX,7/3/2010 20:30 +Montour Falls,ORANGE,DISK,NY,7/3/2010 20:34 +Poteau,,LIGHT,OK,7/3/2010 20:45 +Mesa,,OVAL,AZ,7/3/2010 20:50 +Berwyn,,CIRCLE,IL,7/3/2010 21:00 +Eddyville,ORANGE,LIGHT,KY,7/3/2010 21:00 +Lemoore,,TRIANGLE,CA,7/3/2010 21:00 +New London,,LIGHT,CT,7/3/2010 21:00 +Baltimore,,OVAL,OH,7/3/2010 21:15 +Red Bank,RED,VARIOUS,NJ,7/3/2010 21:15 +Rockford,,OVAL,IL,7/3/2010 21:20 +Waynesboro,RED,CIRCLE,PA,7/3/2010 21:25 +Watkins Glen,,LIGHT,NY,7/3/2010 21:30 +Zebulon,RED,,NC,7/3/2010 21:30 +Cincinnati,,LIGHT,OH,7/3/2010 21:35 +Lincoln Park,,OVAL,MI,7/3/2010 21:40 +Austintown,,OTHER,OH,7/3/2010 21:45 +Bonaparte,RED ORANGE,FIREBALL,IA,7/3/2010 22:00 +Lansing,,LIGHT,KS,7/3/2010 22:00 +Nordman,ORANGE,LIGHT,ID,7/3/2010 22:00 +Ottawa,,FIREBALL,IL,7/3/2010 22:00 +Fostoria,ORANGE,,OH,7/3/2010 22:07 +Midlothian,,OTHER,VA,7/3/2010 22:10 +Poteau,ORANGE,SPHERE,OK,7/3/2010 22:12 +Clarksville,,CIRCLE,OH,7/3/2010 22:20 +Rohnert Park,YELLOW,FIREBALL,CA,7/3/2010 22:25 +Port Angeles,,LIGHT,WA,7/3/2010 22:30 +Bellingham,,LIGHT,WA,7/3/2010 22:34 +Osseo,,OVAL,MI,7/3/2010 22:40 +Riverside,ORANGE,CIRCLE,CA,7/3/2010 22:42 +Lacey,ORANGE,FORMATION,WA,7/3/2010 22:45 +West Bloomfield,ORANGE,LIGHT,MI,7/3/2010 22:45 +Elkhart,,CIRCLE,IN,7/3/2010 22:50 +Bellingham,,LIGHT,WA,7/3/2010 23:00 +Bluffton,RED,FIREBALL,IN,7/3/2010 23:00 +Fort Wayne,RED,CIRCLE,IN,7/3/2010 23:00 +Kent City,,CIRCLE,MI,7/3/2010 23:00 +Lansing,ORANGE,FIREBALL,MI,7/3/2010 23:00 +Lancaster,,CIRCLE,PA,7/3/2010 23:10 +Willard,RED,SPHERE,OH,7/3/2010 23:30 +Kill Devil Hills,ORANGE,FORMATION,NC,7/3/2010 23:40 +Cincinnati,ORANGE GREEN,OVAL,IN,7/3/2010 23:50 +Gloucester,,TRIANGLE,MA,7/4/2010 0:00 +Hazelwood,RED,LIGHT,MO,7/4/2010 0:00 +London,,,KY,7/4/2010 0:00 +Toledo,,OTHER,OH,7/4/2010 0:00 +Deer Park,ORANGE YELLOW,FIREBALL,IL,7/4/2010 0:30 +James Creek,,LIGHT,PA,7/4/2010 2:30 +McDonald,,FIREBALL,PA,7/4/2010 9:30 +Knoxville,RED,FIREBALL,TN,7/4/2010 10:00 +Rootstown,,LIGHT,OH,7/4/2010 10:00 +Sharps Chapel,RED,FIREBALL,TN,7/4/2010 10:00 +St. Augustine,,CIRCLE,FL,7/4/2010 10:00 +Portland,,FIREBALL,TN,7/4/2010 18:05 +Fort Worth,,SPHERE,TX,7/4/2010 19:00 +Russellville,ORANGE,LIGHT,AR,7/4/2010 19:00 +Highland,,OTHER,CA,7/4/2010 19:30 +Fenton,ORANGE,LIGHT,MO,7/4/2010 20:00 +Irvine,RED,,CA,7/4/2010 20:00 +Lodi,,OTHER,CA,7/4/2010 20:00 +Louisville,ORANGE,FIREBALL,KY,7/4/2010 20:00 +Louisville,,LIGHT,KY,7/4/2010 20:00 +Richland,,FIREBALL,MI,7/4/2010 20:00 +St. Charles,YELLOW,OVAL,MO,7/4/2010 20:00 +Claremore,,OTHER,OK,7/4/2010 20:15 +Moxee,ORANGE,CIRCLE,WA,7/4/2010 20:30 +New Smyrna Beach,,OVAL,FL,7/4/2010 20:35 +Fairborn,,FORMATION,OH,7/4/2010 20:45 +Manchester,YELLOW,DIAMOND,MO,7/4/2010 20:45 +Vancouver,ORANGE,SPHERE,WA,7/4/2010 20:47 +Huntsville,,OTHER,AL,7/4/2010 20:50 +Albuquerque,YELLOW,SPHERE,NM,7/4/2010 21:00 +Baltimore,,CIRCLE,MD,7/4/2010 21:00 +Bernie,,LIGHT,MO,7/4/2010 21:00 +Bradyville,,FIREBALL,TN,7/4/2010 21:00 +Branson,,FIREBALL,MO,7/4/2010 21:00 +Carbondale,ORANGE,FIREBALL,PA,7/4/2010 21:00 +Durant,ORANGE,FIREBALL,OK,7/4/2010 21:00 +Everett,ORANGE,LIGHT,WA,7/4/2010 21:00 +Fridley,RED,LIGHT,MN,7/4/2010 21:00 +Garrison,ORANGE,RECTANGLE,MN,7/4/2010 21:00 +Hutchinson,,FIREBALL,KS,7/4/2010 21:00 +Irvine,,CIRCLE,CA,7/4/2010 21:00 +Jefferson,,SPHERE,NC,7/4/2010 21:00 +Johnsonburg,,FIREBALL,PA,7/4/2010 21:00 +Lakeville,,OTHER,MN,7/4/2010 21:00 +Lexington,ORANGE,CIRCLE,MI,7/4/2010 21:00 +Lombard,,FIREBALL,IL,7/4/2010 21:00 +London,,CIRCLE,KY,7/4/2010 21:00 +Old Hickory,RED,FIREBALL,TN,7/4/2010 21:00 +Omaha,,CIRCLE,NE,7/4/2010 21:00 +Papillion,,CIRCLE,NE,7/4/2010 21:00 +Rockaway Beach,ORANGE,FIREBALL,MO,7/4/2010 21:00 +St. Albans,RED,SPHERE,VT,7/4/2010 21:00 +Toms River,ORANGE,FIREBALL,NJ,7/4/2010 21:00 +Joppatowne,RED,FIREBALL,MD,7/4/2010 21:04 +Portage,ORANGE,LIGHT,IN,7/4/2010 21:09 +Hutchinson,RED,FIREBALL,KS,7/4/2010 21:10 +Milton,,LIGHT,VT,7/4/2010 21:10 +O'Fallon,,SPHERE,MO,7/4/2010 21:10 +Derby,,OTHER,KS,7/4/2010 21:15 +Mulberry,,CIRCLE,AR,7/4/2010 21:15 +Tiffin,,,OH,7/4/2010 21:15 +Yatesville,,OVAL,PA,7/4/2010 21:15 +O'Fallon,,SPHERE,MO,7/4/2010 21:17 +Beaver Falls,,LIGHT,PA,7/4/2010 21:20 +Bolingbrook,ORANGE,DISK,IL,7/4/2010 21:25 +Amelia,ORANGE,CIRCLE,OH,7/4/2010 21:30 +Arlington Heights,,CIRCLE,IL,7/4/2010 21:30 +Cleveland,,OVAL,OH,7/4/2010 21:30 +Florence,ORANGE,LIGHT,KY,7/4/2010 21:30 +Hillsdale,,FIREBALL,MI,7/4/2010 21:30 +North Charleston,,SPHERE,SC,7/4/2010 21:30 +Orlando,,FIREBALL,FL,7/4/2010 21:30 +Plainfield,,FIREBALL,IL,7/4/2010 21:30 +Port Richey,ORANGE,SPHERE,FL,7/4/2010 21:30 +Rancho Santa Margarita,,,CA,7/4/2010 21:30 +Ridgway,ORANGE,CIGAR,IL,7/4/2010 21:30 +Searcy,ORANGE,CIRCLE,AR,7/4/2010 21:30 +Springfield,ORANGE,TRIANGLE,MA,7/4/2010 21:30 +Surf City,,LIGHT,MI,7/4/2010 21:30 +Swedesboro,RED,TEARDROP,NJ,7/4/2010 21:30 +Topeka,,TRIANGLE,KS,7/4/2010 21:30 +Wakefield,RED,LIGHT,MA,7/4/2010 21:30 +West Peoria,RED,CIRCLE,IL,7/4/2010 21:30 +Fall City,,CIRCLE,WA,7/4/2010 21:34 +Danbury,ORANGE,TEARDROP,CT,7/4/2010 21:35 +Franklin,,CIRCLE,PA,7/4/2010 21:40 +Indio,RED,LIGHT,CA,7/4/2010 21:40 +Wichita,,FIREBALL,KS,7/4/2010 21:40 +Belford,RED,DISK,NJ,7/4/2010 21:42 +Chicago,ORANGE,RECTANGLE,IL,7/4/2010 21:45 +Great Falls,YELLOW,,MT,7/4/2010 21:45 +Richardton,,TEARDROP,ND,7/4/2010 21:45 +Seymour,RED,SPHERE,IN,7/4/2010 21:45 +Wright City,,OTHER,MO,7/4/2010 21:45 +Derby,,FIREBALL,CT,7/4/2010 21:50 +Seattle,ORANGE,LIGHT,WA,7/4/2010 21:50 +Polk City,ORANGE,OTHER,IA,7/4/2010 21:55 +Batesville,,FIREBALL,IN,7/4/2010 22:00 +Belleville,,CIRCLE,IL,7/4/2010 22:00 +Bothell,ORANGE,SPHERE,WA,7/4/2010 22:00 +Cherokee Villiage,ORANGE,CIRCLE,AR,7/4/2010 22:00 +Clear Creek East Resort,ORANGE,SPHERE,NE,7/4/2010 22:00 +Cutlerville,RED,SPHERE,MI,7/4/2010 22:00 +Deer Park,,VARIOUS,OH,7/4/2010 22:00 +Fort Calhoun,,CIRCLE,NE,7/4/2010 22:00 +Fort Wright,,FIREBALL,KY,7/4/2010 22:00 +Gastonia,,FIREBALL,NC,7/4/2010 22:00 +Georgetown,,FIREBALL,KY,7/4/2010 22:00 +Heathsville,RED,FIREBALL,VA,7/4/2010 22:00 +Indianapolis,RED,FIREBALL,IN,7/4/2010 22:00 +Kingston,,LIGHT,WA,7/4/2010 22:00 +Lake Stevens,ORANGE,CIRCLE,WA,7/4/2010 22:00 +Lakewood,,CYLINDER,WA,7/4/2010 22:00 +Lakewood,,FIREBALL,WA,7/4/2010 22:00 +Lamesa,,CIRCLE,TX,7/4/2010 22:00 +Lorain,ORANGE,CIRCLE,OH,7/4/2010 22:00 +Lynnwood,,CIRCLE,WA,7/4/2010 22:00 +Milford,RED,FIREBALL,NE,7/4/2010 22:00 +Montrose,,FIREBALL,PA,7/4/2010 22:00 +North Bend,,,NE,7/4/2010 22:00 +Paxton,,,MA,7/4/2010 22:00 +Piney Flats,,OTHER,TN,7/4/2010 22:00 +Portsmouth,,LIGHT,OH,7/4/2010 22:00 +Rio Linda,RED,FIREBALL,CA,7/4/2010 22:00 +Selma,RED,OTHER,CA,7/4/2010 22:00 +Shelby Twp,ORANGE,DISK,MI,7/4/2010 22:00 +Springfield,,LIGHT,MA,7/4/2010 22:00 +Tampa,RED,,FL,7/4/2010 22:00 +Vancouver,RED,FIREBALL,WA,7/4/2010 22:00 +Vancouver,,FORMATION,WA,7/4/2010 22:00 +Wading River? Franklin Sq,ORANGE,OVAL,NY,7/4/2010 22:00 +Waterbury,ORANGE,TRIANGLE,CT,7/4/2010 22:00 +Wickliff,,FIREBALL,OH,7/4/2010 22:00 +St. Paul,RED,FORMATION,MN,7/4/2010 22:02 +Dallas,,LIGHT,TX,7/4/2010 22:05 +Columbus,,FIREBALL,NE,7/4/2010 22:15 +Ipswich,,LIGHT,SD,7/4/2010 22:15 +Mentor,RED ORANGE,FIREBALL,OH,7/4/2010 22:15 +Newnan,,,GA,7/4/2010 22:15 +Polk City,,DISK,IA,7/4/2010 22:15 +Coudersport,RED ORANGE,FIREBALL,PA,7/4/2010 22:20 +Battle Creek,ORANGE,TEARDROP,MI,7/4/2010 22:30 +Bennington,RED,FIREBALL,NE,7/4/2010 22:30 +Chicago,ORANGE GREEN,FIREBALL,IL,7/4/2010 22:30 +Clinton Township,RED ORANGE,FIREBALL,MI,7/4/2010 22:30 +Cloverdale,,FIREBALL,IN,7/4/2010 22:30 +Edmonds,ORANGE,CYLINDER,WA,7/4/2010 22:30 +Erie,,CIRCLE,PA,7/4/2010 22:30 +Grants Pass,ORANGE,FIREBALL,OR,7/4/2010 22:30 +Ipswich,,LIGHT,SD,7/4/2010 22:30 +Kearney,,OVAL,NE,7/4/2010 22:30 +Lake Stevens,ORANGE,SPHERE,WA,7/4/2010 22:30 +Lakeville,ORANGE,SPHERE,MN,7/4/2010 22:30 +Lincoln,ORANGE,,NE,7/4/2010 22:30 +Springfield,,FIREBALL,OH,7/4/2010 22:30 +Sultan,,FIREBALL,WA,7/4/2010 22:30 +Vining,,,MN,7/4/2010 22:30 +Winchester,ORANGE,FIREBALL,IN,7/4/2010 22:30 +Womelsdorf,RED,OTHER,PA,7/4/2010 22:30 +Bremerton,RED,CIRCLE,WA,7/4/2010 22:35 +Apple Valley,RED,LIGHT,MN,7/4/2010 22:40 +North Platte,ORANGE,RECTANGLE,NE,7/4/2010 22:40 +Huntington Beach,,CYLINDER,CA,7/4/2010 22:50 +West Pittston,,CIRCLE,PA,7/4/2010 22:50 +Auburn,,TRIANGLE,NY,7/4/2010 22:54 +Auburn,,TRIANGLE,NY,7/4/2010 22:54 +Abbeville,,TRIANGLE,LA,7/4/2010 22:58 +Battle Creek,ORANGE,CIRCLE,MI,7/4/2010 23:00 +Bethesda,,OTHER,OH,7/4/2010 23:00 +Bothell,,FIREBALL,WA,7/4/2010 23:00 +Cherry Hill,,TRIANGLE,NJ,7/4/2010 23:00 +Coon Rapids,ORANGE,CIRCLE,MN,7/4/2010 23:00 +Dickson,,SPHERE,TN,7/4/2010 23:00 +Grand Island,,FIREBALL,NY,7/4/2010 23:00 +Haslet,YELLOW,SPHERE,TX,7/4/2010 23:00 +Hempstead,ORANGE,LIGHT,NY,7/4/2010 23:00 +Las Cruces,,SPHERE,NM,7/4/2010 23:00 +Lebanon,RED,SPHERE,IN,7/4/2010 23:00 +Lowell,,RECTANGLE,MA,7/4/2010 23:00 +Marysville,,FIREBALL,WA,7/4/2010 23:00 +Monticello,RED,LIGHT,IN,7/4/2010 23:00 +Omak,,LIGHT,WA,7/4/2010 23:00 +Orland,,FLASH,CA,7/4/2010 23:00 +Portland,ORANGE,CIRCLE,OR,7/4/2010 23:00 +Streamwood,,,IL,7/4/2010 23:00 +Streamwood,,LIGHT,IL,7/4/2010 23:00 +Taholah,,FIREBALL,WA,7/4/2010 23:00 +Wyoming Valley,,,PA,7/4/2010 23:00 +Eastport,YELLOW,VARIOUS,ME,7/4/2010 23:03 +Linden,,LIGHT,PA,7/4/2010 23:05 +Alpharetta,,CIGAR,GA,7/4/2010 23:08 +Wassaic,,CIRCLE,NY,7/4/2010 23:10 +Broken Arrow,,FIREBALL,OK,7/4/2010 23:15 +Hellertown,,TEARDROP,PA,7/4/2010 23:15 +Zeeland,RED,FIREBALL,MI,7/4/2010 23:17 +Cortland,RED ORANGE,FIREBALL,NY,7/4/2010 23:30 +Plymouth,,,MA,7/4/2010 23:30 +Providence,,,RI,7/4/2010 23:30 +Grand Isle,,CIRCLE,LA,7/4/2010 23:35 +Lynnwood,,LIGHT,WA,7/4/2010 23:40 +Vancouver,ORANGE,OVAL,WA,7/4/2010 23:55 +Belmont,ORANGE,FIREBALL,NC,7/4/2010 23:59 +Speedwell,,OTHER,TN,7/5/2010 0:00 +Everett,,CIRCLE,WA,7/5/2010 1:30 +Brooks,,SPHERE,OR,7/5/2010 9:00 +Clarksville,,OVAL,TN,7/5/2010 19:30 +West Haven,,,CT,7/5/2010 20:00 +Kissimmee,,DISK,FL,7/5/2010 21:15 +Kissimmee,,DISK,FL,7/5/2010 21:15 +Ridgecrest,,LIGHT,CA,7/5/2010 21:30 +South Bethany Beach,RED,LIGHT,DE,7/5/2010 21:40 +East Greenville,,FIREBALL,PA,7/5/2010 21:45 +Goochland,,LIGHT,VA,7/5/2010 22:00 +Linton,,FIREBALL,IN,7/5/2010 22:00 +Lake in the Hills,ORANGE,CIRCLE,IL,7/5/2010 22:15 +Cooperstown,,LIGHT,NY,7/5/2010 23:00 +Fort Worth,,SPHERE,TX,7/5/2010 23:00 +Greensboro,,DISK,NC,7/5/2010 23:00 +Portland,RED,LIGHT,OR,7/5/2010 23:00 +Lynbrook,,OVAL,NY,7/5/2010 23:30 +Adrian,,LIGHT,MI,7/6/2010 1:00 +Gardnerville,,,NV,7/6/2010 1:20 +Gardnerville,,LIGHT,NV,7/6/2010 1:20 +Seattle,ORANGE,LIGHT,WA,7/6/2010 20:25 +Kulpmont,RED,CIRCLE,PA,7/6/2010 21:00 +Cumming,,CIRCLE,GA,7/6/2010 22:00 +Dorchester,,SPHERE,MA,7/6/2010 22:00 +Seattle,,CIRCLE,WA,7/6/2010 22:00 +Eastham,,LIGHT,MA,7/6/2010 22:15 +Penacook,,LIGHT,NH,7/6/2010 22:15 +Seattle,,SPHERE,WA,7/6/2010 23:00 +Northport,,LIGHT,MI,7/7/2010 0:30 +Sonora,,,TX,7/7/2010 15:00 +Dallas,,FORMATION,TX,7/7/2010 20:30 +Colorado Springs,,OVAL,CO,7/7/2010 21:20 +Chicago,,FIREBALL,IL,7/7/2010 21:30 +La Porte,,TEARDROP,IN,7/7/2010 21:33 +Seattle,,,WA,7/7/2010 22:00 +Truckee,,,CA,7/7/2010 22:00 +Davenport,GREEN,VARIOUS,IA,7/7/2010 22:10 +Clarkston,,LIGHT,WA,7/7/2010 22:30 +Dyer,,TRIANGLE,TN,7/7/2010 22:30 +Renton,,,WA,7/7/2010 22:30 +Russellville,,LIGHT,AR,7/7/2010 22:30 +Culver,,CYLINDER,OR,7/7/2010 22:45 +Bothell,,FIREBALL,WA,7/7/2010 22:47 +Poulsbo,,FORMATION,WA,7/7/2010 22:55 +Gaston,ORANGE,CIRCLE,OR,7/7/2010 23:00 +Mukilteo,,TRIANGLE,WA,7/7/2010 23:00 +Kearney,,LIGHT,NE,7/7/2010 23:15 +Georgetown,,FLASH,MA,7/7/2010 23:30 +Springfield,RED GREEN,LIGHT,MO,7/7/2010 23:45 +Travelers Rest,,FIREBALL,SC,7/8/2010 1:00 +Orlando,,OTHER,FL,7/8/2010 15:00 +Redding,,CIRCLE,CA,7/8/2010 19:30 +Emerald Isle,,LIGHT,NC,7/8/2010 20:30 +Peoria,ORANGE,FIREBALL,IL,7/8/2010 21:00 +Carolina Beach,,DISK,NC,7/8/2010 21:30 +Marietta,RED,TRIANGLE,GA,7/8/2010 22:30 +Seattle,ORANGE,FIREBALL,WA,7/8/2010 22:40 +Seattle,,DIAMOND,WA,7/8/2010 22:44 +Centralia,,SPHERE,WA,7/8/2010 22:50 +Vancouver,ORANGE,LIGHT,WA,7/8/2010 22:50 +Vancouver,ORANGE,CIRCLE,WA,7/8/2010 22:55 +Cambridge,,CIRCLE,ID,7/8/2010 23:00 +Vancouver,,LIGHT,WA,7/8/2010 23:00 +Zion,,LIGHT,IL,7/8/2010 23:00 +Sayville,,FLASH,NY,7/8/2010 23:13 +Ocala,,SPHERE,FL,7/8/2010 23:23 +Antioch,RED ORANGE,CIGAR,CA,7/9/2010 1:59 +Oakland,,CYLINDER,CA,7/9/2010 13:00 +Skykomish,,DISK,WA,7/9/2010 14:47 +Wolf Creek,,DISK,MT,7/9/2010 15:38 +Olympia,,OTHER,WA,7/9/2010 17:20 +Rangeley,,OVAL,ME,7/9/2010 19:00 +Vancouver,,,WA,7/9/2010 20:15 +Rome,,TRIANGLE,NY,7/9/2010 21:45 +Springfield,RED,DISK,MO,7/9/2010 21:45 +Warrensburg,,OVAL,MO,7/9/2010 21:45 +Buellton,,FLASH,CA,7/9/2010 22:00 +Provo,,FLASH,UT,7/9/2010 22:00 +Vancouver,,TRIANGLE,WA,7/9/2010 22:00 +Winnebago,,CROSS,NE,7/9/2010 22:00 +Selden,,CIRCLE,NY,7/9/2010 22:12 +Dorchester,,SPHERE,MA,7/9/2010 22:15 +Lombard,RED,LIGHT,IL,7/9/2010 22:34 +Marina del Rey,,OVAL,CA,7/9/2010 22:45 +Alton,,,IL,7/9/2010 23:00 +Gilroy,,FLASH,CA,7/9/2010 23:00 +Hilliard,,FIREBALL,OH,7/9/2010 23:00 +Taylor,,FORMATION,MO,7/9/2010 23:00 +Wellington,,FLASH,NV,7/9/2010 23:00 +Lovewell State Park,,,KS,7/9/2010 23:30 +Nason,,LIGHT,IL,7/9/2010 23:30 +Leetsdale,ORANGE,SPHERE,PA,7/9/2010 23:55 +Jamestown,,DISK,OH,7/10/2010 0:00 +Millville,RED,LIGHT,PA,7/10/2010 0:00 +Millville,RED,,PA,7/10/2010 0:50 +O'Fallon,,OTHER,MO,7/10/2010 1:00 +West Milford,,LIGHT,NJ,7/10/2010 1:52 +Ellicott City,,OVAL,MD,7/10/2010 2:00 +Raleigh,,RECTANGLE,NC,7/10/2010 2:00 +Cougar,,OTHER,WA,7/10/2010 11:30 +Jamestown,,DISK,OH,7/10/2010 12:00 +Hedgesville,,LIGHT,WV,7/10/2010 21:00 +Syracuse,,TEARDROP,IN,7/10/2010 21:00 +Palm Springs,,,FL,7/10/2010 21:08 +Azle,,TEARDROP,TX,7/10/2010 21:20 +Tyler,,FIREBALL,TX,7/10/2010 21:25 +Berkeley Springs,,LIGHT,WV,7/10/2010 21:30 +Boynton Beach,,LIGHT,FL,7/10/2010 21:30 +Springwater,,FIREBALL,NY,7/10/2010 21:30 +Moore,,LIGHT,ID,7/10/2010 22:00 +Olyphant,,SPHERE,PA,7/10/2010 22:00 +North Attleboro,,FIREBALL,MA,7/10/2010 22:10 +Seattle,,FIREBALL,WA,7/10/2010 22:10 +Clark,,CIGAR,NJ,7/10/2010 22:17 +New Baltimore,,FIREBALL,MI,7/10/2010 22:20 +Grants Pass,,LIGHT,OR,7/10/2010 22:30 +Upper Chichester,,LIGHT,PA,7/10/2010 22:30 +Washington,,LIGHT,NJ,7/10/2010 22:30 +Everett,,OVAL,WA,7/10/2010 22:35 +Sylmar,RED,TRIANGLE,CA,7/10/2010 22:41 +Cuyahoga Falls,,TRIANGLE,OH,7/10/2010 22:45 +Gadsden,,LIGHT,AL,7/10/2010 22:45 +Hancock,,LIGHT,MD,7/10/2010 22:55 +Southern Oregon,,SPHERE,OR,7/10/2010 23:00 +State College,,LIGHT,PA,7/10/2010 23:00 +Union Dale,,CYLINDER,PA,7/10/2010 23:00 +Waterville,ORANGE,CIRCLE,OH,7/10/2010 23:00 +Orangeburg,YELLOW,CYLINDER,NY,7/10/2010 23:20 +Millville,,LIGHT,PA,7/10/2010 23:30 +East Hampton,,CIRCLE,NY,7/10/2010 23:50 +Millville,RED,FORMATION,PA,7/10/2010 23:50 +Spring Hill,,DIAMOND,FL,7/10/2010 23:55 +Bloomsburg,RED,,PA,7/11/2010 0:00 +Richland,,LIGHT,WA,7/11/2010 0:00 +Tightwad,YELLOW,LIGHT,MO,7/11/2010 0:00 +Brookfield,ORANGE,CIRCLE,WI,7/11/2010 0:20 +Fairport,,TRIANGLE,NY,7/11/2010 1:00 +Roswell,,CIRCLE,GA,7/11/2010 1:00 +Shawnee,,,KS,7/11/2010 1:18 +Ceres,,VARIOUS,CA,7/11/2010 2:00 +Williamsburg,RED,LIGHT,PA,7/11/2010 2:00 +West Warwick,,LIGHT,RI,7/11/2010 3:00 +Frankfort,,CHEVRON,AL,7/11/2010 13:00 +Alameda,,CIRCLE,CA,7/11/2010 16:10 +Smithtown,,FLASH,NY,7/11/2010 18:00 +Everett,,CIRCLE,WA,7/11/2010 20:30 +High Ridge,,TRIANGLE,MO,7/11/2010 21:00 +Philadelphia,,LIGHT,PA,7/11/2010 21:00 +Westford,,,MA,7/11/2010 21:00 +Sag Harbor,,LIGHT,NY,7/11/2010 21:15 +Taneytown,,LIGHT,MD,7/11/2010 21:45 +Pittsburgh,,DISK,PA,7/11/2010 22:00 +Upper Freehold Township,,RECTANGLE,NJ,7/11/2010 22:00 +Nephi,,OVAL,UT,7/11/2010 22:30 +Boise,ORANGE,OTHER,ID,7/11/2010 22:45 +Hancock,,LIGHT,MD,7/11/2010 22:55 +Somerset,YELLOW,CIRCLE,KY,7/11/2010 23:00 +Electric City,,CIRCLE,WA,7/11/2010 23:30 +Jacksonville,,DIAMOND,OR,7/12/2010 0:10 +Cortez Colorado,,LIGHT,CO,7/12/2010 2:25 +Portland,,LIGHT,ME,7/12/2010 2:45 +Azwell,,LIGHT,WA,7/12/2010 13:00 +Dallas,,OTHER,TX,7/12/2010 20:00 +Burbank,,VARIOUS,CA,7/12/2010 21:00 +Tracy,BLUE,OTHER,CA,7/12/2010 21:13 +Wauconda,RED,LIGHT,IL,7/12/2010 21:30 +Cambridge,,SPHERE,ID,7/12/2010 22:00 +Jonesboro,,LIGHT,IN,7/12/2010 22:00 +Hickory,,DISK,NC,7/12/2010 22:10 +Annapolis,,LIGHT,MD,7/12/2010 22:15 +Hayward-Trego,,LIGHT,WI,7/12/2010 22:20 +San Angelo,,LIGHT,TX,7/12/2010 23:00 +Meadowlands,,LIGHT,MN,7/12/2010 23:30 +Worthington,,LIGHT,OH,7/13/2010 0:00 +Mackinaw City,,DISK,MI,7/13/2010 1:00 +Winter Park,,OTHER,CO,7/13/2010 9:24 +Victor,,VARIOUS,ID,7/13/2010 10:30 +Devils Lake,,CYLINDER,ND,7/13/2010 13:00 +Kennewick,,OTHER,WA,7/13/2010 21:30 +Crivitz,,OVAL,WI,7/13/2010 21:45 +Prosser,,LIGHT,WA,7/13/2010 22:00 +Paducah,,CIRCLE,KY,7/13/2010 22:30 +Seattle,,FIREBALL,WA,7/13/2010 23:00 +Lafayette,,LIGHT,IN,7/13/2010 23:30 +Laguna Niguel,ORANGE,FORMATION,CA,7/13/2010 23:34 +Killen,,CYLINDER,AL,7/14/2010 1:00 +Huron,RED,DISK,CA,7/14/2010 1:30 +Columbus,,DIAMOND,OH,7/14/2010 8:45 +El Monte,,TEARDROP,CA,7/14/2010 11:15 +Englewood,,OVAL,CO,7/14/2010 13:00 +High Point,,OTHER,NC,7/14/2010 18:00 +Surprise,,OTHER,AZ,7/14/2010 21:10 +Rochester,BLUE,LIGHT,NY,7/14/2010 21:55 +Lake Tawakoni,,CIGAR,TX,7/14/2010 22:30 +Dudley,,LIGHT,MA,7/14/2010 23:00 +Dudley,,LIGHT,MA,7/14/2010 23:00 +Everett,,FORMATION,WA,7/14/2010 23:10 +Las Vegas,,LIGHT,NV,7/14/2010 23:24 +Three Lakes,,FLASH,WI,7/15/2010 1:00 +Kalamazoo,ORANGE,LIGHT,MI,7/15/2010 1:10 +Chicago,ORANGE,LIGHT,IL,7/15/2010 3:00 +Dyer,BLUE,SPHERE,IN,7/15/2010 3:00 +Chicago Heights,,,IL,7/15/2010 4:30 +Ozark,,,MO,7/15/2010 4:37 +Davis,,LIGHT,CA,7/15/2010 10:00 +Provo,,DISK,UT,7/15/2010 10:00 +West Linn,,TRIANGLE,OR,7/15/2010 11:30 +Cincinnati,,TRIANGLE,OH,7/15/2010 14:00 +Las Vegas,,RECTANGLE,NV,7/15/2010 15:00 +Los Feliz,,OTHER,CA,7/15/2010 17:15 +Newport,,DISK,RI,7/15/2010 19:45 +San Angelo,,CIRCLE,TX,7/15/2010 20:40 +Acushnet,,LIGHT,MA,7/15/2010 21:00 +Huntington Beach,GREEN,TRIANGLE,CA,7/15/2010 21:00 +North Hollywood,,LIGHT,CA,7/15/2010 21:00 +South Dennis,,LIGHT,MA,7/15/2010 21:00 +Titusville,RED,CHEVRON,FL,7/15/2010 21:00 +Dallas,RED BLUE,FLASH,TX,7/15/2010 21:30 +Kingston,,TRIANGLE,MA,7/15/2010 21:30 +Citronelle,,,AL,7/15/2010 22:30 +Raytown,,SPHERE,MO,7/15/2010 22:45 +Dundee,,LIGHT,OR,7/15/2010 22:50 +Berry Creek,,CIGAR,CA,7/15/2010 23:00 +Graham,,TRIANGLE,WA,7/15/2010 23:00 +Ocoee,,CIRCLE,TN,7/15/2010 23:50 +Greenville,ORANGE GREEN,FIREBALL,OH,7/16/2010 0:00 +Brevard,,TEARDROP,GA,7/16/2010 1:00 +Sister Lakes,,TRIANGLE,MI,7/16/2010 1:00 +Plymouth,RED,TRIANGLE,MI,7/16/2010 2:45 +Orange,ORANGE,LIGHT,CA,7/16/2010 3:50 +Hoffman Estates,,CIRCLE,IL,7/16/2010 4:00 +Primm,,OTHER,NV,7/16/2010 11:00 +Hemet,,OVAL,CA,7/16/2010 15:47 +Paola,,CIGAR,KS,7/16/2010 19:30 +Duluth,,DISK,MN,7/16/2010 20:00 +Omaha,ORANGE,CIRCLE,NE,7/16/2010 20:53 +Kennewick,,CYLINDER,WA,7/16/2010 21:16 +Middletown,,LIGHT,CT,7/16/2010 21:30 +West Chester,,LIGHT,OH,7/16/2010 21:40 +Miami Township,,VARIOUS,OH,7/16/2010 21:45 +Springboro,,LIGHT,OH,7/16/2010 21:50 +Columbus,RED,DISK,IN,7/16/2010 22:00 +Carter Lake,,SPHERE,IA,7/16/2010 22:12 +Malibu,,VARIOUS,CA,7/16/2010 22:42 +South Hill,,DISK,WA,7/16/2010 22:42 +Ft. Lauderdale,,FIREBALL,FL,7/16/2010 23:00 +Prior Lake,RED,FIREBALL,MN,7/16/2010 23:30 +San Pedro,RED,OTHER,CA,7/16/2010 23:35 +New York City,,VARIOUS,NY,7/17/2010 0:00 +Three Rivers,,LIGHT,CA,7/17/2010 0:12 +Charubusco,,LIGHT,NY,7/17/2010 0:30 +Macon,,LIGHT,GA,7/17/2010 2:00 +Columbia Falls,,LIGHT,MT,7/17/2010 3:30 +Seattle,,FIREBALL,WA,7/17/2010 11:20 +Polson,,,MT,7/17/2010 15:00 +West Seneca,,SPHERE,NY,7/17/2010 19:15 +Chicago,,,IL,7/17/2010 19:30 +Mountain Home,YELLOW,,ID,7/17/2010 21:00 +Tonawanda,YELLOW,CIRCLE,NY,7/17/2010 21:38 +Dayton,,OTHER,OH,7/17/2010 22:00 +Lehi,,LIGHT,UT,7/17/2010 22:00 +Naperville,ORANGE,LIGHT,IL,7/17/2010 22:00 +Rochester,,FIREBALL,MI,7/17/2010 22:00 +Blue Springs,ORANGE,FIREBALL,MO,7/17/2010 22:20 +Beaver Dam,,RECTANGLE,WI,7/17/2010 22:30 +Boone,,DISK,IA,7/17/2010 23:00 +Bruneau,,TRIANGLE,ID,7/17/2010 23:00 +Dearborn,ORANGE,LIGHT,MI,7/17/2010 23:00 +Seattle,,,WA,7/17/2010 23:00 +Seattle,RED YELLOW,FIREBALL,WA,7/17/2010 23:15 +Seattle,,FORMATION,WA,7/17/2010 23:15 +Seattle,,SPHERE,WA,7/17/2010 23:15 +Brookhaven,ORANGE,LIGHT,NY,7/17/2010 23:30 +Seattle,,SPHERE,WA,7/17/2010 23:37 +St. Cloud,ORANGE,FIREBALL,FL,7/17/2010 23:45 +Orange,,OTHER,CA,7/18/2010 0:05 +Coon Rapids,,FORMATION,MN,7/18/2010 1:00 +Tempe,,,AZ,7/18/2010 1:00 +Inver Grove Heights,,LIGHT,MN,7/18/2010 1:16 +Oklahoma City,,,OK,7/18/2010 2:30 +Los Angeles,,LIGHT,CA,7/18/2010 4:00 +Hendersonville,,CONE,TN,7/18/2010 9:30 +Baton Rouge,,DISK,LA,7/18/2010 20:55 +Merritt Island,RED,FIREBALL,FL,7/18/2010 21:00 +Crisfield,,LIGHT,MD,7/18/2010 21:09 +Holden Beach,,,NC,7/18/2010 21:30 +Desert Center,,OVAL,CA,7/18/2010 22:00 +Sicklerville,,LIGHT,NJ,7/18/2010 22:00 +Sicklerville,,LIGHT,NJ,7/18/2010 22:00 +Coalinga,,TRIANGLE,CA,7/18/2010 22:15 +Grapeville,,FLASH,PA,7/18/2010 23:00 +Lander,,,WY,7/18/2010 23:00 +New Milford,,LIGHT,CT,7/19/2010 1:00 +Lynn,,CIGAR,MA,7/19/2010 8:00 +Nottingham,,OVAL,MD,7/19/2010 19:03 +Hendersonville,,CYLINDER,TN,7/19/2010 20:00 +Scandia,,DIAMOND,MN,7/19/2010 21:00 +Pahrump,,LIGHT,NV,7/19/2010 21:30 +Clemmons,,DISK,NC,7/19/2010 22:00 +Mebane,ORANGE,FIREBALL,NC,7/19/2010 22:00 +Merrill,,DIAMOND,IA,7/19/2010 22:20 +Nevada City,,,CA,7/19/2010 22:22 +Kirkland,,CIRCLE,WA,7/19/2010 22:30 +Amherst,,,VA,7/19/2010 23:35 +Albany,,OTHER,NY,7/20/2010 0:35 +Richland,RED,VARIOUS,WA,7/20/2010 0:47 +Selkirk,,,NY,7/20/2010 1:00 +Selkirk,,,NY,7/20/2010 1:00 +National Forest,,DIAMOND,CA,7/20/2010 1:32 +Friendship,,CIRCLE,TN,7/20/2010 4:00 +Wichita,,SPHERE,KS,7/20/2010 9:00 +Rocklin,,RECTANGLE,CA,7/20/2010 9:03 +Appleton,GREEN,LIGHT,NY,7/20/2010 12:35 +Maynard,,CYLINDER,MA,7/20/2010 20:15 +Arlington Heights,,CIRCLE,IL,7/20/2010 21:00 +Surfside Beach,,FORMATION,SC,7/20/2010 21:05 +Burley,,DISK,ID,7/20/2010 21:15 +Portal,,LIGHT,GA,7/20/2010 21:30 +Arlington Heights,,LIGHT,IL,7/20/2010 21:42 +Ida,,FIREBALL,MI,7/20/2010 22:00 +Orrville,,LIGHT,OH,7/20/2010 22:30 +Brantley,,TRIANGLE,AL,7/21/2010 10:46 +Bishop,,TRIANGLE,CA,7/21/2010 15:00 +Corpus Christi,,CIRCLE,TX,7/21/2010 19:00 +Hooversville,,CIRCLE,PA,7/21/2010 21:00 +Myrtle Beach,RED,LIGHT,SC,7/21/2010 21:30 +Avon Lake,,FIREBALL,OH,7/21/2010 23:00 +Hammond,BLUE,FIREBALL,LA,7/21/2010 23:00 +Salt Lake City,,,UT,7/21/2010 23:37 +Camp Verde,,CIRCLE,AZ,7/22/2010 0:00 +Cheshire,,CIGAR,CT,7/22/2010 0:30 +Spokane,,LIGHT,WA,7/22/2010 1:00 +Alloway,,OTHER,NJ,7/22/2010 2:00 +Sedro Woolley,,FIREBALL,WA,7/22/2010 2:00 +Oak Park,,CIRCLE,MI,7/22/2010 10:45 +Lodi,,CROSS,CA,7/22/2010 13:00 +Philomath,,,OR,7/22/2010 16:00 +Spring lake,RED,OTHER,NJ,7/22/2010 17:00 +Scott Township,,CIRCLE,PA,7/22/2010 20:45 +Emerald Isle,RED,CIRCLE,NC,7/22/2010 21:30 +Harkers Island,RED,LIGHT,NC,7/22/2010 21:30 +Rutland,,FIREBALL,VT,7/22/2010 21:30 +Pine Knoll Shores,,CIRCLE,NC,7/22/2010 21:48 +Atlantic Beach,RED ORANGE,VARIOUS,NC,7/22/2010 22:00 +Emerald Isle,,TRIANGLE,NC,7/22/2010 22:00 +Indian Beach,ORANGE,DISK,NC,7/22/2010 22:00 +Herculaneum,ORANGE,FIREBALL,MO,7/22/2010 22:30 +Lincoln,,LIGHT,NC,7/22/2010 23:30 +Rohnert Park,,FIREBALL,CA,7/23/2010 0:30 +Jamestown,,CIRCLE,NC,7/23/2010 1:00 +Orlando,,FORMATION,FL,7/23/2010 9:45 +Polson,,CIGAR,MT,7/23/2010 12:30 +Gatlinburg,,,TN,7/23/2010 14:24 +Midland,,OTHER,MI,7/23/2010 18:00 +Westboro,,OVAL,MA,7/23/2010 19:30 +Independence,,,OR,7/23/2010 20:00 +Plymouth,,SPHERE,MN,7/23/2010 20:00 +Seattle,,OTHER,WA,7/23/2010 21:15 +Huntington Beach,,LIGHT,CA,7/23/2010 21:30 +Kure Beach,,LIGHT,NC,7/23/2010 22:00 +Louisville,,TRIANGLE,KY,7/23/2010 23:00 +Oklahoma City,RED ORANGE YELLOW GREEN BLUE,CIRCLE,OK,7/24/2010 0:00 +Columbus,,CIGAR,OH,7/24/2010 0:45 +Kingwood,,VARIOUS,TX,7/24/2010 0:50 +Williston,,TRIANGLE,ND,7/24/2010 1:00 +Gainesville,RED GREEN,FIREBALL,VA,7/24/2010 2:00 +Temecula,,FIREBALL,CA,7/24/2010 9:40 +Davis,,LIGHT,CA,7/24/2010 11:20 +Portland,,CIRCLE,OR,7/24/2010 11:25 +New York City,,SPHERE,NY,7/24/2010 18:30 +Half Moon Bay,YELLOW,CIRCLE,CA,7/24/2010 20:41 +Everett,,LIGHT,WA,7/24/2010 22:00 +Florence,RED,LIGHT,AL,7/24/2010 22:00 +West Valley City,BLUE,OTHER,UT,7/24/2010 22:30 +Minetto,,TRIANGLE,NY,7/24/2010 22:55 +Lake Oswego,,TRIANGLE,OR,7/24/2010 23:45 +Paris,RED ORANGE,FIREBALL,KY,7/25/2010 0:00 +Edmonds,,CONE,WA,7/25/2010 1:00 +St. Louis,,LIGHT,MO,7/25/2010 1:30 +Duluth,BLUE,CIRCLE,MN,7/25/2010 2:35 +Wilmington,,OTHER,DE,7/25/2010 3:00 +Oklahoma City,,RECTANGLE,OK,7/25/2010 11:00 +Walla Walla,,VARIOUS,WA,7/25/2010 18:00 +Oklahoma city,,CYLINDER,OK,7/25/2010 20:30 +Troy to Montgomery,,CIRCLE,AL,7/25/2010 20:40 +Lahaina,RED,CHEVRON,HI,7/25/2010 21:00 +Portland,,CIRCLE,OR,7/25/2010 21:00 +El Paso,,LIGHT,TX,7/25/2010 21:20 +Selah,,DISK,WA,7/25/2010 21:30 +Jamestown,,VARIOUS,CA,7/25/2010 22:00 +Bozeman,,SPHERE,MT,7/25/2010 22:30 +Middletown,,,OH,7/26/2010 0:19 +Vacaville,,,CA,7/26/2010 2:30 +Bensenville,,CIRCLE,IL,7/26/2010 8:07 +Gonzales,,SPHERE,LA,7/26/2010 21:20 +Amboy,,OTHER,CA,7/26/2010 21:30 +Destin,,FIREBALL,FL,7/26/2010 21:30 +Fraser,,TEARDROP,MI,7/26/2010 21:35 +Needles,,LIGHT,CA,7/26/2010 22:00 +Falmouth,RED,DISK,ME,7/26/2010 22:49 +Manson,,TEARDROP,WA,7/26/2010 23:04 +Lee's Summit,,SPHERE,MO,7/26/2010 23:05 +Playa del Rey,,LIGHT,CA,7/27/2010 0:00 +Shelbyville,,LIGHT,IN,7/27/2010 0:00 +Salt Lake City,,TRIANGLE,UT,7/27/2010 0:10 +Salt Lake City,,TRIANGLE,UT,7/27/2010 0:10 +Cranston,RED,OTHER,RI,7/27/2010 0:15 +Sedro Woolley,,DISK,WA,7/27/2010 1:00 +Phoenix,,OTHER,AZ,7/27/2010 5:30 +Las Vegas,,DISK,NV,7/27/2010 15:00 +Metz,,CIGAR,WV,7/27/2010 19:30 +Glenview,,FIREBALL,IL,7/27/2010 21:00 +Port Angeles,,TRIANGLE,WA,7/27/2010 21:30 +Orem,,VARIOUS,UT,7/27/2010 23:00 +Midland,,FLASH,MI,7/27/2010 23:54 +CO,,FIREBALL,CO,7/28/2010 0:00 +Houston,,DISK,TX,7/28/2010 0:00 +Minneapolis,,OVAL,MN,7/28/2010 0:00 +Clayton,RED BLUE,CIRCLE,CA,7/28/2010 0:08 +Dayville,,OTHER,CT,7/28/2010 0:58 +Rochester,,LIGHT,NH,7/28/2010 9:40 +Chicago,,FIREBALL,IL,7/28/2010 10:30 +Swoope,,OVAL,VA,7/28/2010 12:00 +Gustine,,DISK,CA,7/28/2010 13:00 +Cumming,,TRIANGLE,GA,7/28/2010 15:00 +Allen,,,TX,7/28/2010 21:00 +Chico,,TRIANGLE,CA,7/28/2010 22:00 +Vancouver,,FIREBALL,WA,7/28/2010 22:00 +Orlando,,LIGHT,FL,7/28/2010 22:10 +Lansing,,LIGHT,MI,7/28/2010 23:00 +Walatka,,LIGHT,FL,7/28/2010 23:45 +Dayville,GREEN,LIGHT,CT,7/29/2010 0:58 +Clovis,,CIRCLE,CA,7/29/2010 1:00 +Bellevue,,LIGHT,WA,7/29/2010 1:30 +South Elgin,,LIGHT,IL,7/29/2010 1:58 +Canton,,FIREBALL,OH,7/29/2010 5:00 +Lakewood,,,CO,7/29/2010 9:00 +Galveston,,LIGHT,TX,7/29/2010 18:45 +Brielle,,EGG,NJ,7/29/2010 18:50 +Port Angeles,,SPHERE,WA,7/29/2010 19:30 +Kernersville,,LIGHT,NC,7/29/2010 21:00 +Arcadia,,LIGHT,CA,7/29/2010 21:10 +Ridgecrest,RED,,CA,7/29/2010 21:15 +Rocklin,,CIRCLE,CA,7/29/2010 22:20 +Clinton Township,ORANGE,LIGHT,MI,7/29/2010 22:40 +Easton,,CIRCLE,PA,7/29/2010 23:00 +Eugene,,SPHERE,OR,7/29/2010 23:30 +Enfield,,VARIOUS,CT,7/30/2010 9:30 +Paterson,,OTHER,NJ,7/30/2010 20:30 +Reading,GREEN,VARIOUS,PA,7/30/2010 20:44 +Thousand Oaks,,LIGHT,CA,7/30/2010 21:00 +Ridgecrest,,,CA,7/30/2010 21:15 +Baltimore,,SPHERE,MD,7/30/2010 23:00 +Cutler,,FIREBALL,CA,7/30/2010 23:30 +Los Angeles,,CIRCLE,CA,7/31/2010 0:00 +Wichita,RED ORANGE BLUE,DIAMOND,KS,7/31/2010 0:00 +Albuquerque,,CIGAR,NM,7/31/2010 4:15 +San Antonio,,CHEVRON,TX,7/31/2010 14:20 +Detroit,ORANGE GREEN BLUE,OTHER,MI,7/31/2010 19:30 +Oregon House,,LIGHT,CA,7/31/2010 19:54 +Riverside,GREEN,LIGHT,CA,7/31/2010 21:52 +Waukon,,,IA,7/31/2010 22:00 +Tarrytown,GREEN BLUE,CIRCLE,NY,7/31/2010 22:10 +New Port Richey,ORANGE,TEARDROP,FL,7/31/2010 22:45 +Coalinga,,,CA,7/31/2010 22:50 +Portland,ORANGE,FIREBALL,OR,7/31/2010 22:55 +Sacramento,,OVAL,CA,7/31/2010 22:55 +Ocean City,,CIRCLE,MD,7/31/2010 23:00 +South Elgin,,CIRCLE,IL,7/31/2010 23:00 +Harristown,,FIREBALL,IL,7/31/2010 23:25 +Chicago,,FIREBALL,IL,7/31/2010 23:45 +Brandon,ORANGE,FIREBALL,SD,8/1/2010 0:05 +South Elgin,,LIGHT,IL,8/1/2010 0:30 +Hickam AFB,ORANGE,TRIANGLE,HI,8/1/2010 0:32 +Long Beach,GREEN,LIGHT,CA,8/1/2010 0:50 +Whittier,,DISK,CA,8/1/2010 1:04 +South Elgin,ORANGE,SPHERE,IL,8/1/2010 1:30 +Rockaway Beach,,LIGHT,MO,8/1/2010 8:30 +Chicago Ridge,,DISK,IL,8/1/2010 9:00 +Sandwich,,CIRCLE,MA,8/1/2010 9:12 +Dodge City,,CIRCLE,KS,8/1/2010 18:00 +Moorpark,,SPHERE,CA,8/1/2010 20:20 +Woodhull,,LIGHT,IL,8/1/2010 21:00 +Arkansas,,TRIANGLE,AR,8/1/2010 22:00 +Laurie,ORANGE,SPHERE,MO,8/1/2010 22:15 +Red Lake,RED BLUE,DIAMOND,MN,8/2/2010 1:00 +San Antonio,,VARIOUS,TX,8/2/2010 2:50 +Lake Elsinore,,CIGAR,CA,8/2/2010 6:00 +Fairless Hills,,TRIANGLE,PA,8/2/2010 9:50 +Cedar Point,,LIGHT,NC,8/2/2010 21:35 +Springfield,,FLASH,MO,8/2/2010 21:45 +Albuquerque,RED GREEN,,NM,8/3/2010 0:00 +Victoria,,RECTANGLE,TX,8/3/2010 0:00 +Hanover,,,PA,8/3/2010 0:30 +Phoenix,GREEN,FIREBALL,AZ,8/3/2010 1:00 +Long Beach,,FIREBALL,CA,8/3/2010 2:14 +Boston,BLUE,VARIOUS,MA,8/3/2010 14:00 +Osage Beach,,FIREBALL,MO,8/3/2010 18:00 +Erin,,CIRCLE,TN,8/3/2010 19:00 +Silver City,,LIGHT,NM,8/3/2010 21:00 +Naval weapons base Fallbrook,,OVAL,CA,8/3/2010 21:05 +Royal Palm Beach,,,FL,8/3/2010 22:00 +Terre haute outskirts,,FORMATION,IN,8/3/2010 22:00 +Grand Haven,,LIGHT,MI,8/3/2010 22:41 +Davis,ORANGE,OTHER,CA,8/4/2010 1:00 +Palisade,,LIGHT,NE,8/4/2010 1:00 +Raleigh,,CONE,NC,8/4/2010 5:30 +Glen Rose,,CIRCLE,TX,8/4/2010 7:00 +Tampa,,OTHER,FL,8/4/2010 18:08 +Kunia,RED,LIGHT,HI,8/4/2010 19:00 +Pa'akai Point- Mamalahoha Hwy,,TRIANGLE,HI,8/4/2010 20:25 +Columbus,RED,LIGHT,WI,8/4/2010 20:50 +Melbourne,,LIGHT,FL,8/4/2010 21:00 +Greensburg,RED,TRIANGLE,IN,8/4/2010 21:57 +Provo,,DISK,UT,8/4/2010 22:00 +Omaha,,,NE,8/4/2010 22:30 +Cincinnati,,,OH,8/4/2010 23:30 +Dublin,ORANGE,SPHERE,IN,8/4/2010 23:40 +Walters,YELLOW,OTHER,OK,8/5/2010 0:00 +Perris,,FIREBALL,CA,8/5/2010 1:00 +Broken Arrow,,LIGHT,OK,8/5/2010 3:15 +Woodhaven,,TEARDROP,MI,8/5/2010 3:15 +Cape May,,DISK,NJ,8/5/2010 13:00 +San Jose,,LIGHT,CA,8/5/2010 15:00 +San Jose,,OTHER,CA,8/5/2010 15:00 +Bellingham,ORANGE,LIGHT,WA,8/5/2010 21:00 +Key Largo,,OTHER,FL,8/5/2010 22:00 +White Swan,BLUE,LIGHT,WA,8/5/2010 22:30 +San Antonio,,SPHERE,TX,8/5/2010 23:45 +San Antonio,,SPHERE,TX,8/5/2010 23:45 +Clarksdale,,LIGHT,MS,8/6/2010 0:00 +Rochester Hills,YELLOW,TRIANGLE,MI,8/6/2010 0:00 +Cheyenne,YELLOW,OTHER,WY,8/6/2010 0:30 +Colorado Springs,,FLASH,CO,8/6/2010 1:00 +Sioux Falls,ORANGE,FIREBALL,SD,8/6/2010 2:00 +Bucks County,,LIGHT,PA,8/6/2010 5:00 +Peabody,,DISK,MA,8/6/2010 14:40 +San Antonio,,FORMATION,TX,8/6/2010 16:00 +Anchorage,,CIRCLE,AK,8/6/2010 18:00 +South Cairo,,TRIANGLE,NY,8/6/2010 18:00 +Clermont,,CIGAR,FL,8/6/2010 19:35 +Chillicothe,ORANGE,LIGHT,IL,8/6/2010 21:00 +Oxford,RED,CIGAR,CT,8/6/2010 21:00 +Sharon,,TRIANGLE,MA,8/6/2010 21:00 +West Bend,,FIREBALL,WI,8/6/2010 21:30 +Keene,,LIGHT,NH,8/6/2010 22:10 +Sturgeon Bay,,LIGHT,WI,8/6/2010 22:15 +Southport,RED ORANGE,FIREBALL,NC,8/6/2010 22:30 +Steelville,RED,CIRCLE,MO,8/6/2010 23:00 +North Kenai,,LIGHT,AK,8/7/2010 0:30 +Corinth,,LIGHT,KY,8/7/2010 1:11 +Hillsboro,,,IL,8/7/2010 2:20 +Sublette,ORANGE,,IL,8/7/2010 3:00 +Glen Echo,,SPHERE,MD,8/7/2010 15:30 +Surprise,,LIGHT,AZ,8/7/2010 19:15 +Peebles,,CIRCLE,OH,8/7/2010 20:00 +Yuma,,LIGHT,AZ,8/7/2010 20:10 +Baiting H,,DISK,NY,8/7/2010 20:20 +Cooperstown,ORANGE,FIREBALL,NY,8/7/2010 20:45 +South Cairo,,LIGHT,NY,8/7/2010 21:00 +Miami,,TRIANGLE,FL,8/7/2010 21:15 +Rehoboth Beach,RED,LIGHT,DE,8/7/2010 21:30 +St. Clair Shores,,,MI,8/7/2010 21:35 +Waterboro,,LIGHT,ME,8/7/2010 22:00 +Yakima,,TRIANGLE,WA,8/7/2010 22:00 +Seabeck,ORANGE,,WA,8/7/2010 22:05 +Moses Lake,,SPHERE,WA,8/7/2010 23:30 +Atlanta,,,GA,8/8/2010 0:00 +Huron,,RECTANGLE,SD,8/8/2010 6:05 +Alstead,,CIRCLE,NH,8/8/2010 9:00 +Anaheim,,CROSS,CA,8/8/2010 10:00 +Morris,,SPHERE,IL,8/8/2010 14:00 +Waukesha,,CIRCLE,WI,8/8/2010 17:55 +Yakima,,,WA,8/8/2010 18:00 +Granite City,,LIGHT,IL,8/8/2010 19:00 +Coventry,,CIGAR,CT,8/8/2010 20:05 +Frederick,,,MD,8/8/2010 20:53 +Dubuque,ORANGE,LIGHT,IA,8/8/2010 21:00 +Fond du Lac,RED,CIRCLE,WI,8/8/2010 21:40 +El Paso,,LIGHT,TX,8/8/2010 22:00 +Riegelwood,,CIRCLE,NC,8/9/2010 0:16 +Beaumont,,FLASH,TX,8/9/2010 4:28 +Las Vegas,,OTHER,NV,8/9/2010 8:35 +Ridgewood,,OTHER,NY,8/9/2010 9:00 +New York City,,CIRCLE,NY,8/9/2010 15:00 +Savannah,,FORMATION,GA,8/9/2010 21:28 +Spokane Valley,,FORMATION,WA,8/9/2010 21:38 +Craig,,DISK,CO,8/9/2010 22:00 +Oklahoma City,ORANGE,CIRCLE,OK,8/9/2010 23:15 +Minoa,,OTHER,NY,8/10/2010 0:00 +Saint Paul,,OTHER,MN,8/10/2010 0:00 +Washington,,DIAMOND,IA,8/10/2010 0:00 +Ventura,,OVAL,CA,8/10/2010 0:30 +San Antonio,,FLASH,TX,8/10/2010 9:55 +New Carlisle,,DISK,OH,8/10/2010 10:00 +Holden Beach,ORANGE,CIRCLE,NC,8/10/2010 17:45 +Glendale,,FLASH,AZ,8/10/2010 20:20 +North Myrtle Beach,ORANGE,LIGHT,SC,8/10/2010 20:27 +Myrtle Beach,ORANGE,LIGHT,SC,8/10/2010 21:00 +Bainbridge,,LIGHT,OH,8/10/2010 21:30 +Sequim,BLUE,LIGHT,WA,8/10/2010 21:30 +Highland,,LIGHT,UT,8/10/2010 21:40 +Boardman,,FIREBALL,OH,8/10/2010 22:00 +Northampton,,OTHER,MA,8/10/2010 22:00 +Wilmington,,LIGHT,NC,8/10/2010 22:30 +New Waverly,,OTHER,TX,8/11/2010 0:00 +Kent,,TRIANGLE,WA,8/11/2010 1:00 +Stonington,,LIGHT,CT,8/11/2010 2:36 +El Paso,,LIGHT,TX,8/11/2010 3:00 +Vacaville,,LIGHT,CA,8/11/2010 4:30 +Cincinnati,,OTHER,OH,8/11/2010 11:12 +Naperville,,SPHERE,IL,8/11/2010 18:45 +Freeland,,LIGHT,MI,8/11/2010 20:00 +Rushville,,DISK,IN,8/11/2010 21:00 +Algoma,,,WI,8/11/2010 22:00 +Garden City Beach,,FORMATION,SC,8/11/2010 22:00 +Dewey,,LIGHT,DE,8/11/2010 23:00 +Marshall,,LIGHT,AR,8/11/2010 23:00 +Medford,RED GREEN BLUE,TRIANGLE,OR,8/11/2010 23:00 +McHenry City,,,IL,8/11/2010 23:40 +Cooper's Rock,,,WV,8/11/2010 23:45 +Gaston,,VARIOUS,SC,8/12/2010 2:00 +Hammond,GREEN,CIRCLE,IN,8/12/2010 2:15 +Boise,,TRIANGLE,ID,8/12/2010 12:30 +Hidden Hills,,CHEVRON,CA,8/12/2010 12:36 +Bridgeport,,,CA,8/12/2010 13:00 +Secaucus,,SPHERE,NJ,8/12/2010 14:15 +Topsfield,,OTHER,MA,8/12/2010 20:34 +Grandview,,OTHER,MO,8/12/2010 20:42 +Hilton Head Island,ORANGE,CIRCLE,SC,8/12/2010 21:30 +Elkland,,SPHERE,PA,8/12/2010 21:45 +Fredericksburg,,FIREBALL,TX,8/12/2010 22:00 +Montgomery,,,AL,8/12/2010 22:30 +Mesa,,OTHER,AZ,8/12/2010 22:45 +Berlin Township,YELLOW,TRIANGLE,MI,8/12/2010 23:00 +Tecumseh,,CIRCLE,KS,8/12/2010 23:00 +Virginia Beach,,TRIANGLE,VA,8/12/2010 23:35 +Berryville,,LIGHT,AR,8/13/2010 0:00 +Randolph,,LIGHT,MA,8/13/2010 0:00 +Sedro Woolley,,,WA,8/13/2010 0:00 +Deerfield,,LIGHT,IL,8/13/2010 0:01 +Deer Park,,LIGHT,WA,8/13/2010 0:13 +Kent,,TRIANGLE,WA,8/13/2010 0:45 +San Benito,RED GREEN,CIRCLE,TX,8/13/2010 0:52 +Pulaski,,,WI,8/13/2010 0:53 +Port Angeles,,SPHERE,WA,8/13/2010 1:40 +Lynnwood,,CIRCLE,WA,8/13/2010 3:30 +Temecula,,,CA,8/13/2010 3:33 +Hot Springs,,VARIOUS,VA,8/13/2010 4:30 +Oak Lawn,,LIGHT,IL,8/13/2010 4:52 +Winnetka,,LIGHT,CA,8/13/2010 10:40 +Wichita,,OVAL,KS,8/13/2010 12:00 +Northfield Falls,,SPHERE,VT,8/13/2010 20:30 +N. Phoenix,,TRIANGLE,AZ,8/13/2010 21:00 +Eagle Lake,,CIRCLE,ME,8/13/2010 21:30 +Durango,,LIGHT,CO,8/13/2010 22:00 +Kingston,,TRIANGLE,WA,8/13/2010 22:25 +Metuchen,,OTHER,NJ,8/13/2010 22:25 +Pompey,,FORMATION,NY,8/13/2010 22:45 +Shelton,,TRIANGLE,WA,8/13/2010 22:45 +Richland,,,WA,8/13/2010 23:00 +Yosemite,,OVAL,CA,8/13/2010 23:00 +Milton,,TRIANGLE,NH,8/13/2010 23:40 +Seaside,,OTHER,OR,8/13/2010 23:43 +Scottsdale,,TEARDROP,AZ,8/13/2010 23:54 +Omaha,,FIREBALL,NE,8/13/2010 23:58 +Grant,,LIGHT,MI,8/14/2010 0:30 +Murphy,,OVAL,TX,8/14/2010 1:00 +Port Townsend,,,WA,8/14/2010 2:30 +Kennewick,,FIREBALL,WA,8/14/2010 3:00 +Redwood Valley,,FORMATION,CA,8/14/2010 3:00 +Newport,,LIGHT,NC,8/14/2010 3:20 +Cleveland,,,OH,8/14/2010 9:00 +Des Plaines,,OTHER,IL,8/14/2010 10:00 +Mt. Pleasant,RED,TRIANGLE,PA,8/14/2010 11:04 +Waterville,,OVAL,WA,8/14/2010 15:00 +Burbank,,CIRCLE,CA,8/14/2010 18:10 +Hollywood,,DISK,CA,8/14/2010 20:00 +Westfield,,FIREBALL,NJ,8/14/2010 20:10 +Troy,ORANGE,LIGHT,MO,8/14/2010 20:40 +Seattle,,FORMATION,WA,8/14/2010 20:48 +Wyndmoor,,TRIANGLE,PA,8/14/2010 21:00 +Freehold,,EGG,NJ,8/14/2010 21:45 +Devore,,TRIANGLE,CA,8/14/2010 22:00 +Flint,,OTHER,MI,8/14/2010 22:30 +Warren,ORANGE,SPHERE,NH,8/14/2010 22:30 +Warren,,SPHERE,NH,8/14/2010 22:45 +Ocala,RED BLUE,LIGHT,FL,8/14/2010 23:00 +Providence,,DIAMOND,RI,8/14/2010 23:00 +Sunriver,,LIGHT,OR,8/14/2010 23:15 +Orland,GREEN BLUE,OVAL,FL,8/14/2010 23:35 +Lynnwood,,LIGHT,WA,8/14/2010 23:45 +Deming,,DISK,NM,8/15/2010 0:00 +Walled Lake,ORANGE,CIRCLE,MI,8/15/2010 0:10 +Caldwell,,LIGHT,ID,8/15/2010 2:00 +Las Vegas,,OVAL,NV,8/15/2010 4:00 +Lynchburg,,SPHERE,VA,8/15/2010 16:00 +Dixon,,OTHER,IL,8/15/2010 16:07 +Whistling Straits,,DISK,WI,8/15/2010 19:30 +Warwick,,LIGHT,PA,8/15/2010 20:00 +El Paso,,,TX,8/15/2010 20:30 +Conrad,,SPHERE,MT,8/15/2010 20:45 +Visalia,,LIGHT,CA,8/15/2010 21:00 +Round Rock,,OVAL,TX,8/15/2010 21:45 +Caldwell,,CYLINDER,ID,8/15/2010 22:00 +Portland,,SPHERE,OR,8/15/2010 22:08 +Kinross,RED,,MI,8/15/2010 23:00 +Weaverville,,FIREBALL,CA,8/15/2010 23:30 +Barton City,,TRIANGLE,MI,8/16/2010 3:30 +Glendale,GREEN,CIRCLE,CA,8/16/2010 11:14 +Morgantown,,CIGAR,WV,8/16/2010 19:45 +Circleville,,LIGHT,NY,8/16/2010 20:15 +Antioch,,LIGHT,CA,8/16/2010 20:58 +Hialeah,,LIGHT,FL,8/16/2010 21:00 +White Lake,RED,LIGHT,WI,8/16/2010 21:00 +Pittstown,,CIRCLE,NJ,8/16/2010 21:15 +Lowell,,FIREBALL,MI,8/16/2010 21:30 +Walla Walla,,OTHER,WA,8/16/2010 21:30 +Bensalem,,TRIANGLE,PA,8/16/2010 22:00 +Helena,ORANGE,FIREBALL,MT,8/16/2010 22:16 +Cumberland Island National Seashore,,TRIANGLE,GA,8/16/2010 23:00 +Brookfield,,LIGHT,WI,8/16/2010 23:10 +Broken Arrow,,LIGHT,OK,8/16/2010 23:59 +Geneva,,LIGHT,IL,8/17/2010 1:00 +Oak Lawn,,LIGHT,IL,8/17/2010 5:24 +Seekonk,BLUE,RECTANGLE,MA,8/17/2010 17:00 +Strasburg,,CIRCLE,CO,8/17/2010 18:30 +Arlington,BLUE,TRIANGLE,TX,8/17/2010 19:00 +Plymouth,BLUE,,IN,8/17/2010 19:50 +Everett,,,WA,8/17/2010 20:30 +Christopher,,LIGHT,IL,8/17/2010 21:15 +Monroe,,DISK,WA,8/17/2010 21:40 +Indiana,RED,LIGHT,PA,8/17/2010 23:17 +White Sulphur Springs,,EGG,MT,8/18/2010 0:15 +Fenton,,LIGHT,MO,8/18/2010 3:00 +Yucaipa,,FLASH,CA,8/18/2010 5:30 +Hudson,,OVAL,MA,8/18/2010 8:55 +Dana Point,YELLOW,CIRCLE,CA,8/18/2010 20:00 +Evansville,,OVAL,IN,8/18/2010 20:00 +Palos Verdes Estates,RED GREEN,VARIOUS,CA,8/18/2010 20:47 +Topeka,,FIREBALL,KS,8/18/2010 21:40 +Newberry Springs,ORANGE,CIRCLE,CA,8/18/2010 21:59 +Spring Grove,,DISK,PA,8/18/2010 22:00 +Scotchtown,,,NY,8/18/2010 23:00 +Bellevue,,OTHER,WA,8/18/2010 23:30 +Laguna Beach,,FIREBALL,CA,8/19/2010 1:42 +Saugerties,,LIGHT,NY,8/19/2010 11:54 +Glendale,,OVAL,CA,8/19/2010 16:30 +Wheat Ridge,,CIRCLE,CO,8/19/2010 17:30 +Kenmore,,TRIANGLE,WA,8/19/2010 19:50 +Lakeland,,CIRCLE,TN,8/19/2010 20:10 +Humboldt,,OTHER,KS,8/19/2010 21:00 +Asheville,RED,,NC,8/19/2010 21:20 +Oldenburg,,VARIOUS,IN,8/19/2010 22:00 +Alexandria,RED,SPHERE,NY,8/20/2010 1:00 +Bridgeport,,CIRCLE,OH,8/20/2010 2:00 +Ocala,,,FL,8/20/2010 2:00 +Nampa,,CIGAR,ID,8/20/2010 13:00 +Rancho Cordova,,LIGHT,CA,8/20/2010 17:15 +Middletown,ORANGE,CIRCLE,CT,8/20/2010 19:00 +Shafter,RED,LIGHT,CA,8/20/2010 21:30 +Rodanthe,ORANGE,,NC,8/20/2010 21:45 +Soddy Daisy,,LIGHT,TN,8/20/2010 22:00 +Newington,,CIGAR,CT,8/20/2010 23:00 +Newington,,CIGAR,CT,8/20/2010 23:00 +Montrose,,SPHERE,CO,8/21/2010 0:15 +Indian Rocks Beach,RED,TRIANGLE,FL,8/21/2010 4:30 +Palos Verdes,,DISK,CA,8/21/2010 9:00 +Lehi,,CIGAR,UT,8/21/2010 10:30 +Washington,,,PA,8/21/2010 10:45 +Thousand Oaks,,OVAL,CA,8/21/2010 12:00 +"Thousand Oaks, CA",,SPHERE,CA,8/21/2010 12:00 +Santa Rosa,,CYLINDER,CA,8/21/2010 13:00 +Seffner,,CIRCLE,FL,8/21/2010 13:10 +no data,,LIGHT,WA,8/21/2010 14:00 +Bloomington,,SPHERE,MN,8/21/2010 18:00 +Martinsburg,,LIGHT,WV,8/21/2010 21:00 +Morris,,FIREBALL,IL,8/21/2010 21:45 +Franklin Square,,FIREBALL,NY,8/21/2010 22:00 +Vincennes,,,IN,8/21/2010 22:30 +Dallas,GREEN,FIREBALL,TX,8/21/2010 23:00 +Felton,,VARIOUS,DE,8/21/2010 23:45 +Penn Hills,,LIGHT,PA,8/22/2010 0:30 +Pond Gap,,OVAL,WV,8/22/2010 1:00 +Escondido,,,CA,8/22/2010 5:00 +San Bernardino,,LIGHT,CA,8/22/2010 5:00 +Brandywine,,LIGHT,WV,8/22/2010 5:18 +Los Feliz,,CIRCLE,CA,8/22/2010 15:00 +Washington,,,UT,8/22/2010 16:45 +Watsonville,,FIREBALL,CA,8/22/2010 17:30 +Morrisville,RED,CIRCLE,PA,8/22/2010 19:00 +Mill Hall,YELLOW,CIRCLE,PA,8/22/2010 20:30 +Greenbank,RED,OVAL,WA,8/22/2010 21:05 +Beaumont,BLUE,CIRCLE,TX,8/22/2010 22:01 +Bellevue,,LIGHT,WA,8/22/2010 22:25 +Marcus Hook,,CIRCLE,PA,8/22/2010 22:30 +Huntsville,,LIGHT,TX,8/22/2010 23:00 +Hanover Park,,TRIANGLE,IL,8/23/2010 3:53 +Clarksville,,LIGHT,TN,8/23/2010 4:00 +Oak Lawn,,LIGHT,IL,8/23/2010 5:35 +Cumming,RED,DISK,GA,8/23/2010 6:00 +Senoia,,LIGHT,GA,8/23/2010 6:00 +Gahanna,,OVAL,OH,8/23/2010 11:00 +Wichita falls,,SPHERE,TX,8/23/2010 18:00 +Venice,,,CA,8/23/2010 19:35 +Keizer,,LIGHT,OR,8/23/2010 20:40 +Oakdale,GREEN,SPHERE,CA,8/23/2010 21:00 +Boise,,DISK,ID,8/24/2010 8:00 +Visalia,,TRIANGLE,CA,8/24/2010 10:00 +Garden City,,FLASH,ID,8/24/2010 16:05 +Phoenix,,VARIOUS,AZ,8/24/2010 18:12 +Yuma,,FIREBALL,AZ,8/24/2010 19:40 +Nashville,,CIRCLE,TN,8/24/2010 20:00 +Livingston,,TRIANGLE,LA,8/24/2010 20:40 +Moxee,,LIGHT,WA,8/24/2010 21:08 +Redding,,LIGHT,CA,8/24/2010 21:15 +Woodward,,LIGHT,OK,8/24/2010 21:45 +Covington,,LIGHT,WA,8/24/2010 22:00 +Vancouver,,FIREBALL,WA,8/24/2010 23:15 +Atlantic City,,LIGHT,NJ,8/25/2010 5:00 +Montrose,,SPHERE,CO,8/25/2010 5:30 +Signal Mountain,,DISK,TN,8/25/2010 6:34 +Hammond,,VARIOUS,IN,8/25/2010 8:25 +Lake Chelan,,CIRCLE,WA,8/25/2010 13:00 +Easley,,OTHER,SC,8/25/2010 17:30 +Burlingame,,TRIANGLE,KS,8/25/2010 20:23 +Nashville,RED ORANGE,FIREBALL,TN,8/25/2010 20:30 +Blue Island,BLUE,CIRCLE,IL,8/25/2010 20:35 +Yacolt,,LIGHT,WA,8/25/2010 21:05 +Muskegon,,CIRCLE,MI,8/25/2010 21:35 +Caseyville,RED ORANGE,FIREBALL,IL,8/25/2010 22:00 +Hudson,,TRIANGLE,SD,8/25/2010 22:00 +Cottonwood Heights,,SPHERE,UT,8/25/2010 22:06 +Caldwell,BLUE,LIGHT,ID,8/25/2010 22:39 +Lapeer,,CIRCLE,MI,8/26/2010 0:00 +Park City,,CIRCLE,UT,8/26/2010 0:00 +Lynden,,LIGHT,WA,8/26/2010 2:00 +Downers Grove,,LIGHT,IL,8/26/2010 8:30 +Springdale,,CIGAR,AR,8/26/2010 9:30 +Glacier National Park,,CYLINDER,MT,8/26/2010 13:55 +Sanford,,TRIANGLE,FL,8/26/2010 15:20 +Tawas,,VARIOUS,MI,8/26/2010 17:00 +West Springfield,,DIAMOND,MA,8/26/2010 20:25 +Lansing,,LIGHT,MI,8/26/2010 20:40 +Chicago,,SPHERE,IL,8/26/2010 21:00 +Omaha,,LIGHT,NE,8/26/2010 21:10 +Stephenville,ORANGE YELLOW,FORMATION,TX,8/26/2010 21:10 +Springdale,,CIGAR,AR,8/26/2010 21:30 +Ruch,,LIGHT,OR,8/26/2010 22:10 +New York City,,LIGHT,NY,8/26/2010 22:23 +Denver,,CIGAR,CO,8/26/2010 23:30 +Escondido,,LIGHT,CA,8/26/2010 23:30 +Craig,GREEN,CIRCLE,AK,8/27/2010 0:00 +Cabot,,LIGHT,AR,8/27/2010 0:30 +Kennewick,,FIREBALL,WA,8/27/2010 7:00 +Chattanooga,ORANGE,FIREBALL,TN,8/27/2010 10:30 +Plymouth Meeting,,TRIANGLE,PA,8/27/2010 12:00 +Murry,,DIAMOND,NE,8/27/2010 14:34 +Lincoln,,LIGHT,IL,8/27/2010 18:27 +Kelso,ORANGE,VARIOUS,WA,8/27/2010 20:00 +Jacksonville,,LIGHT,AR,8/27/2010 20:30 +Turlock,,LIGHT,CA,8/27/2010 20:30 +Portland,,LIGHT,OR,8/27/2010 20:50 +Binghamton,,LIGHT,NY,8/27/2010 20:55 +Kirkland,,LIGHT,WA,8/27/2010 21:00 +West Richland,,OTHER,WA,8/27/2010 21:15 +Fort Collins,ORANGE,SPHERE,CO,8/27/2010 21:30 +Hiawatha,,CIRCLE,IA,8/27/2010 21:30 +Clinton Township,,LIGHT,MI,8/27/2010 21:50 +Everett,,LIGHT,WA,8/27/2010 22:15 +Madison,,DIAMOND,CT,8/27/2010 22:17 +Brighton,RED GREEN,CIRCLE,CO,8/27/2010 22:30 +Harriman State Park,,LIGHT,NY,8/27/2010 23:30 +Salem,,VARIOUS,IN,8/28/2010 6:00 +Westford,ORANGE,FIREBALL,MA,8/28/2010 9:15 +Des Moines,RED,LIGHT,IA,8/28/2010 11:45 +Seattle,,OTHER,WA,8/28/2010 17:30 +Ardsley,ORANGE,OVAL,NY,8/28/2010 18:10 +Lathrop,,FIREBALL,CA,8/28/2010 19:43 +Los Angeles,,OTHER,CA,8/28/2010 20:00 +El Centro,,TRIANGLE,CA,8/28/2010 20:16 +Los Angeles,,DISK,CA,8/28/2010 20:29 +Los Angeles,,DISK,CA,8/28/2010 20:29 +Ardsley,,RECTANGLE,NY,8/28/2010 20:30 +Burlingame,,,KS,8/28/2010 20:30 +Davie,RED ORANGE,LIGHT,FL,8/28/2010 20:45 +Beech Grove,,FIREBALL,IN,8/28/2010 20:50 +Montclair,,FORMATION,NJ,8/28/2010 21:00 +Washington,,FORMATION,IN,8/28/2010 21:15 +Sherman Oaks,,OTHER,CA,8/28/2010 21:20 +Valatie,,LIGHT,NY,8/28/2010 21:30 +Battle Ground,,FIREBALL,WA,8/28/2010 22:00 +Crestview,ORANGE,FIREBALL,FL,8/28/2010 22:00 +Dundalk,,LIGHT,MD,8/28/2010 22:00 +Mason,,DISK,OH,8/28/2010 22:00 +Mannford,,,OK,8/28/2010 22:20 +Rochester,,FIREBALL,NY,8/28/2010 22:30 +Steelville,,CIRCLE,MO,8/28/2010 22:30 +Ardsley,,OTHER,NY,8/28/2010 23:30 +Baltimore,,LIGHT,MD,8/29/2010 0:15 +Milwaukee,,,WI,8/29/2010 0:30 +Lafayette,,OTHER,IN,8/29/2010 2:10 +Chesterfield,ORANGE YELLOW,SPHERE,MO,8/29/2010 11:05 +Bellevue,,FLASH,WA,8/29/2010 12:35 +Newark,,CIRCLE,DE,8/29/2010 15:30 +Irondequoit,,CYLINDER,NY,8/29/2010 16:00 +Bothell,ORANGE,LIGHT,WA,8/29/2010 21:00 +Cutchogue,,,NY,8/29/2010 21:00 +Denham Springs,,DISK,LA,8/29/2010 21:00 +Plymouth,,TRIANGLE,MA,8/29/2010 21:00 +Plymouth,,TRIANGLE,MA,8/29/2010 21:00 +Cokeville,,FORMATION,WY,8/29/2010 21:20 +Bountiful,,LIGHT,UT,8/29/2010 21:35 +Westminster,YELLOW,TRIANGLE,MA,8/29/2010 22:00 +San Jose,,LIGHT,CA,8/29/2010 23:59 +Derby,RED GREEN BLUE,CIGAR,CT,8/30/2010 0:15 +Mountaindale,RED,CIRCLE,NY,8/30/2010 1:30 +Woodland Hills,,LIGHT,CA,8/30/2010 2:00 +Valrico,ORANGE,TRIANGLE,FL,8/30/2010 5:15 +Los Angeles,,OVAL,CA,8/30/2010 6:30 +Swartz Creek,,FIREBALL,MI,8/30/2010 9:40 +Plant City,,CIRCLE,FL,8/30/2010 11:00 +Manahawkin,,CONE,NJ,8/30/2010 15:00 +Phoenix,,OTHER,AZ,8/30/2010 15:20 +Lake Havasu City,,,AZ,8/30/2010 20:30 +Yorba Linda,,LIGHT,CA,8/30/2010 20:40 +Spring Hill,,FIREBALL,FL,8/30/2010 20:43 +Arcata,,,CA,8/30/2010 21:20 +Veneta,,,OR,8/30/2010 23:00 +Bryan,,TRIANGLE,TX,8/31/2010 8:20 +Burlingame,,CHEVRON,KS,8/31/2010 20:13 +Marietta,,TRIANGLE,GA,8/31/2010 21:30 +New York City,,LIGHT,NY,8/31/2010 22:00 +Middlefield,,DIAMOND,CT,8/31/2010 22:15 +Sacramento,,RECTANGLE,CA,8/31/2010 22:25 +House Springs,,DISK,MO,8/31/2010 23:00 +Garden Grove,,SPHERE,CA,9/1/2010 6:45 +Carlsbad,,OTHER,CA,9/1/2010 17:25 +Pittsburg,,LIGHT,CA,9/1/2010 18:56 +West Jordan,,CIRCLE,UT,9/1/2010 21:20 +Maricopa,,LIGHT,AZ,9/1/2010 21:45 +San Angelo,,LIGHT,TX,9/1/2010 21:50 +Peoria,,OTHER,AZ,9/1/2010 22:10 +Raleigh,RED,CIRCLE,NC,9/1/2010 22:25 +Newberg,,CHEVRON,OR,9/1/2010 22:45 +Media,,TRIANGLE,PA,9/2/2010 0:30 +Nashville,,,TN,9/2/2010 5:00 +Pierre,RED BLUE,,SD,9/2/2010 12:30 +Pierre,RED BLUE,,SD,9/2/2010 12:30 +Orange,,DISK,CA,9/2/2010 13:00 +Tumwater,,OTHER,WA,9/2/2010 19:55 +Boulder,BLUE,LIGHT,CO,9/2/2010 20:23 +Covina,,DISK,CA,9/2/2010 21:30 +Fort Gratiot,,CIRCLE,MI,9/2/2010 21:30 +Bountiful,,FORMATION,UT,9/2/2010 21:35 +Oak Lawn,,EGG,IL,9/2/2010 22:00 +Pond Gap,,,WV,9/3/2010 1:00 +Pelzer,RED,VARIOUS,SC,9/3/2010 2:23 +Tracy,,TRIANGLE,CA,9/3/2010 3:00 +Maricopa,,OTHER,AZ,9/3/2010 5:45 +Hayden Lake,,TRIANGLE,ID,9/3/2010 10:20 +Hayden,,TRIANGLE,ID,9/3/2010 10:45 +Rangely,,,CO,9/3/2010 10:45 +Winchester,,TRIANGLE,MA,9/3/2010 16:00 +Kenosha,,OTHER,WI,9/3/2010 19:55 +Framington,,SPHERE,NM,9/3/2010 20:00 +Alameda,,CIRCLE,CA,9/3/2010 20:15 +Nashville,,LIGHT,IN,9/3/2010 20:55 +Santa Barbara,,OTHER,CA,9/3/2010 20:57 +Oak Forest,,OTHER,IL,9/3/2010 21:05 +Joshua Tree,,LIGHT,CA,9/3/2010 21:30 +Webster,RED,TRIANGLE,NY,9/3/2010 21:51 +Red Bluff,RED,CIRCLE,CA,9/3/2010 22:00 +Scandia,,TRIANGLE,MN,9/3/2010 22:00 +Colby,YELLOW,SPHERE,KS,9/3/2010 22:10 +Lakeland,,DIAMOND,TN,9/3/2010 23:00 +Redlands,,CIRCLE,CA,9/3/2010 23:00 +Plainfield,,OTHER,IL,9/4/2010 3:55 +Sherman Oaks,,CIRCLE,CA,9/4/2010 4:30 +Colville,,DISK,WA,9/4/2010 9:30 +Edmonton,,TRIANGLE,KY,9/4/2010 9:35 +Crete,,TRIANGLE,IL,9/4/2010 11:40 +Las Vegas,,DISK,NV,9/4/2010 13:00 +Rosman,,CYLINDER,NC,9/4/2010 13:00 +Naperville,,LIGHT,IL,9/4/2010 16:00 +Lake Saint Louis,,LIGHT,MO,9/4/2010 16:35 +York,,LIGHT,ME,9/4/2010 18:15 +Coffeyville,,CIGAR,KS,9/4/2010 18:30 +Watertown,,SPHERE,WI,9/4/2010 18:30 +Huntington,,CIRCLE,WV,9/4/2010 19:00 +Osage Beach,RED,FIREBALL,MO,9/4/2010 20:00 +Rockford,ORANGE,FIREBALL,IL,9/4/2010 20:00 +Crete,,FIREBALL,IL,9/4/2010 20:19 +Middletown,,,NY,9/4/2010 20:51 +Deerfield Beach,,,FL,9/4/2010 20:55 +Lancaster,,TRIANGLE,KY,9/4/2010 21:20 +Everett,,LIGHT,WA,9/4/2010 21:30 +Salt Lake City,,CIRCLE,UT,9/4/2010 21:30 +Indianapolis,,CIRCLE,IN,9/4/2010 22:00 +Lindenhurst,,,NY,9/4/2010 22:00 +North Webster,,OTHER,IN,9/4/2010 22:00 +Bellevue,,,WA,9/4/2010 22:10 +Grants Pass,,LIGHT,OR,9/4/2010 22:10 +Easley,RED GREEN,SPHERE,SC,9/4/2010 23:00 +Dardanelle,,LIGHT,AR,9/4/2010 23:30 +Raleigh,,CIRCLE,NC,9/5/2010 0:00 +Kalama,,,WA,9/5/2010 1:45 +Hanover Park,,TRIANGLE,IL,9/5/2010 3:53 +Reed's Beach,BLUE,RECTANGLE,NJ,9/5/2010 13:30 +Alantic Highlands,,OVAL,NJ,9/5/2010 14:00 +Bear,,SPHERE,DE,9/5/2010 16:00 +Beverly Hills,,LIGHT,CA,9/5/2010 17:00 +Wells,,FIREBALL,ME,9/5/2010 18:35 +Auburn,,LIGHT,WA,9/5/2010 19:00 +Clarksvile,,LIGHT,TN,9/5/2010 20:00 +North Tonawanda,,TRIANGLE,NY,9/5/2010 20:50 +Pensacola,,LIGHT,FL,9/5/2010 20:56 +Desert Hot Springs,,TRIANGLE,CA,9/5/2010 21:00 +Elkhorn,,,WI,9/5/2010 21:24 +Fort Wright,,FIREBALL,KY,9/5/2010 21:30 +Cincinnati,,EGG,OH,9/5/2010 21:40 +Grass Valley,,SPHERE,CA,9/5/2010 21:50 +Thornville,,FORMATION,OH,9/5/2010 22:00 +Rochester,,CIRCLE,NY,9/5/2010 23:00 +Aitkin,ORANGE,FIREBALL,MN,9/5/2010 23:50 +Kearny,,TRIANGLE,NJ,9/6/2010 3:35 +Babylon,,DISK,NY,9/6/2010 4:30 +Stratford,RED ORANGE,FIREBALL,CT,9/6/2010 18:30 +Willard,,LIGHT,UT,9/6/2010 20:15 +Houston,,TRIANGLE,TX,9/6/2010 20:30 +Franklin,,DISK,TN,9/6/2010 20:35 +Azle,,,TX,9/6/2010 21:00 +Fremont,,LIGHT,OH,9/6/2010 21:01 +Goodland,,SPHERE,KS,9/6/2010 21:46 +Akron,,TRIANGLE,OH,9/6/2010 23:00 +Olin,,,NC,9/7/2010 0:00 +Seaside,,CIGAR,OR,9/7/2010 1:00 +Mountaindale,RED,LIGHT,NY,9/7/2010 1:17 +Mt. Pleasant,,TRIANGLE,IA,9/7/2010 2:30 +Plainville,,LIGHT,CT,9/7/2010 5:30 +Lebanon,,LIGHT,OH,9/7/2010 6:45 +Modesto,BLUE,CIRCLE,CA,9/7/2010 10:00 +Chelmsford,,LIGHT,MA,9/7/2010 19:30 +Portsmouth,ORANGE,LIGHT,VA,9/7/2010 20:35 +St. Augustine,,CIRCLE,FL,9/7/2010 21:23 +Largo,,LIGHT,FL,9/7/2010 22:30 +Ft. Jones,,TRIANGLE,CA,9/7/2010 23:00 +Landover,,TRIANGLE,MD,9/8/2010 1:00 +Shicksinny,RED BLUE,SPHERE,PA,9/8/2010 10:45 +Salem,ORANGE GREEN,,VA,9/8/2010 11:00 +Lake City,,FORMATION,MI,9/8/2010 11:30 +History Channel,,FORMATION,IL,9/8/2010 20:00 +Crofton,,TRIANGLE,MD,9/8/2010 22:00 +Louisa,,DIAMOND,VA,9/8/2010 22:15 +Grand Junction,,CIRCLE,CO,9/8/2010 22:30 +Maricopa,,OVAL,AZ,9/8/2010 23:00 +Key Largo,,LIGHT,FL,9/9/2010 0:15 +New York City,,DISK,NY,9/9/2010 0:31 +Spanaway,,EGG,WA,9/9/2010 2:00 +Lake Panasoffkee,,CIRCLE,FL,9/9/2010 6:21 +Tucson,,CIRCLE,AZ,9/9/2010 10:40 +Troy,,SPHERE,OH,9/9/2010 11:30 +Baltimore,,RECTANGLE,MD,9/9/2010 18:10 +Tinley Park,,LIGHT,IL,9/9/2010 20:30 +Phoenix,,OTHER,AZ,9/9/2010 20:45 +Austin,,LIGHT,TX,9/9/2010 21:00 +Brighton,,VARIOUS,MI,9/9/2010 21:30 +Gainesville,,OVAL,FL,9/9/2010 22:00 +Gainesville,,OVAL,FL,9/9/2010 22:00 +Lemitar,,FIREBALL,NM,9/9/2010 22:00 +Upland,ORANGE,CIRCLE,CA,9/9/2010 23:19 +Cadiz,,CIGAR,OH,9/10/2010 1:00 +Palm Bay,,SPHERE,FL,9/10/2010 1:30 +Festus,,OTHER,MO,9/10/2010 5:30 +Inwood,,LIGHT,NY,9/10/2010 5:30 +Caro,,RECTANGLE,MI,9/10/2010 19:00 +Trinadad,RED ORANGE,LIGHT,CO,9/10/2010 19:00 +Hampton,,,VA,9/10/2010 20:06 +Jefferson,,SPHERE,CO,9/10/2010 20:31 +Rochester,,,NY,9/10/2010 20:45 +Frankfort,,OVAL,NY,9/10/2010 21:00 +Patterson,,CONE,CA,9/10/2010 21:00 +Vancouver,,CIRCLE,WA,9/10/2010 21:00 +Olalla,,CIRCLE,WA,9/10/2010 21:20 +High Point,,TRIANGLE,NC,9/10/2010 21:30 +Bend,,TRIANGLE,OR,9/10/2010 22:00 +Sevierville,,,TN,9/10/2010 22:47 +Elyria,,SPHERE,OH,9/10/2010 23:00 +Midlothian,,DISK,VA,9/10/2010 23:30 +Uvalda,,DISK,GA,9/11/2010 2:00 +Saint Charles,,LIGHT,IL,9/11/2010 10:23 +New York City,,OTHER,NY,9/11/2010 15:00 +Seattle,,TRIANGLE,WA,9/11/2010 17:15 +Katy,,OVAL,TX,9/11/2010 18:30 +Memphis,,RECTANGLE,TN,9/11/2010 18:55 +Whitehouse,,FIREBALL,NJ,9/11/2010 20:00 +Reynolds,,LIGHT,IL,9/11/2010 20:21 +Lakewood,RED,,CO,9/11/2010 21:15 +Shoreview,,CIRCLE,MN,9/11/2010 22:30 +Toledo,RED,TRIANGLE,OH,9/11/2010 22:59 +Lee's Summit,,TEARDROP,MO,9/12/2010 0:00 +Litchfield,,FIREBALL,CT,9/12/2010 0:00 +Bourbonnais,,SPHERE,IL,9/12/2010 1:38 +Worth,,FIREBALL,IL,9/12/2010 1:40 +League City,,,TX,9/12/2010 3:45 +Stow,,TRIANGLE,OH,9/12/2010 4:30 +Algiers,,OTHER,LA,9/12/2010 12:32 +Reno,,TRIANGLE,TX,9/12/2010 20:30 +Omaha,,LIGHT,NE,9/12/2010 20:48 +Toms River,,CIGAR,NJ,9/12/2010 21:00 +Arlington,BLUE,TRIANGLE,TX,9/12/2010 22:00 +Sanger,,FLASH,TX,9/13/2010 0:00 +Sioux Falls,,TRIANGLE,SD,9/13/2010 1:00 +Hortense,ORANGE,SPHERE,GA,9/13/2010 2:39 +La Salle,,SPHERE,CO,9/13/2010 4:00 +Rockford,,,IL,9/13/2010 4:30 +Utica,,LIGHT,NY,9/13/2010 12:00 +Chicago,,OTHER,IL,9/13/2010 19:40 +Eldorado,,TRIANGLE,TX,9/13/2010 20:00 +Grand Junction,,LIGHT,CO,9/13/2010 20:15 +Quakertown,,LIGHT,PA,9/13/2010 20:30 +Charleston,,LIGHT,SC,9/13/2010 20:42 +Cumming,,LIGHT,GA,9/13/2010 20:50 +Junction,RED,LIGHT,TX,9/13/2010 21:00 +San Angelo,,OTHER,TX,9/13/2010 21:00 +Rock Springs,,LIGHT,WY,9/13/2010 21:30 +Charlotte,,,NC,9/13/2010 21:31 +North Augusta,,CIGAR,SC,9/13/2010 22:40 +Ft. Jones,,TRIANGLE,CA,9/13/2010 23:00 +Dallas,,TRIANGLE,TX,9/14/2010 0:03 +Jamison,,TRIANGLE,PA,9/14/2010 0:19 +Picayune,YELLOW,LIGHT,MS,9/14/2010 0:35 +Lodi,,CIRCLE,CA,9/14/2010 8:30 +Adairsville,,OTHER,GA,9/14/2010 12:40 +Portage,,DIAMOND,MI,9/14/2010 14:30 +Tacoma Washington,,DISK,WA,9/14/2010 18:29 +San Bernardino,,LIGHT,CA,9/14/2010 19:00 +Denham Springs,,LIGHT,LA,9/14/2010 19:35 +Brighton,ORANGE,LIGHT,CO,9/14/2010 20:15 +Williamston,RED,,SC,9/14/2010 20:45 +Marco Island,,FIREBALL,FL,9/14/2010 21:00 +Tulsa,,,OK,9/14/2010 21:25 +Brookfield,ORANGE,SPHERE,WI,9/14/2010 21:30 +Austin,,,TX,9/14/2010 22:00 +Fenton,RED,FIREBALL,MO,9/14/2010 22:00 +Okeechobee,,LIGHT,FL,9/14/2010 22:00 +concord,,CYLINDER,CA,9/14/2010 23:30 +Fort Gaines,ORANGE,FIREBALL,GA,9/14/2010 23:58 +Yuba City,,CHEVRON,CA,9/15/2010 0:00 +Westeren Springs,,,IL,9/15/2010 2:00 +Covina,RED GREEN,OTHER,CA,9/15/2010 2:05 +Murfreesboro,GREEN,CIGAR,TN,9/15/2010 8:50 +Buckner,,DISK,AR,9/15/2010 11:00 +Shelbyville,,SPHERE,IN,9/15/2010 14:30 +Kenohsa,,SPHERE,WI,9/15/2010 17:00 +North Myrtle Beach,,CIRCLE,SC,9/15/2010 18:00 +Hampton Bays,RED,TRIANGLE,NY,9/15/2010 19:40 +Barnwell,RED,OTHER,SC,9/15/2010 19:45 +Beechbottom,,CIRCLE,WV,9/15/2010 20:00 +Highland Park,RED,LIGHT,IL,9/15/2010 20:00 +Greensboro,,LIGHT,NC,9/15/2010 20:10 +San Jacinto,,CIRCLE,CA,9/15/2010 21:00 +Pinebluff,,OTHER,NC,9/15/2010 21:35 +East Greenwich,RED,TRIANGLE,RI,9/15/2010 22:45 +Caseyville,ORANGE YELLOW,CIRCLE,IL,9/15/2010 23:00 +Bridgeport,,LIGHT,CT,9/16/2010 1:00 +Piscataway,,,NJ,9/16/2010 4:00 +St. Louis area,,,MO,9/16/2010 5:15 +Fort Wayne,,OVAL,IN,9/16/2010 15:00 +Pomona,,OTHER,CA,9/16/2010 18:48 +Bouse,YELLOW,DISK,AZ,9/16/2010 20:00 +Hobe sound,,TRIANGLE,FL,9/16/2010 21:00 +Fort Mill,,LIGHT,SC,9/16/2010 21:30 +Bouse,,OTHER,AZ,9/16/2010 22:00 +Grand Junction,,TRIANGLE,CO,9/17/2010 1:00 +Cambria,ORANGE,LIGHT,CA,9/17/2010 3:00 +Summerville,,FORMATION,SC,9/17/2010 5:45 +Jamestown,,CIGAR,SC,9/17/2010 6:00 +Panorama City,,CIRCLE,CA,9/17/2010 6:30 +Winterville,,CIRCLE,NC,9/17/2010 7:30 +Grand Junction,,CHEVRON,CO,9/17/2010 13:00 +Kettering,,DISK,OH,9/17/2010 16:30 +Arlington,,LIGHT,VA,9/17/2010 19:00 +Galloway,,OTHER,OH,9/17/2010 19:40 +Escondido,YELLOW,LIGHT,CA,9/17/2010 19:50 +Meadville,,TRIANGLE,PA,9/17/2010 20:20 +Louisville,,FLASH,KY,9/17/2010 20:45 +Tinley Park,RED,TRIANGLE,IL,9/17/2010 21:56 +Lindale,,TRIANGLE,TX,9/17/2010 22:00 +Lake Charles,,LIGHT,LA,9/17/2010 22:30 +Butler,,SPHERE,MO,9/18/2010 3:00 +Eagle Rock,,SPHERE,CA,9/18/2010 3:50 +Antioch,BLUE,DIAMOND,CA,9/18/2010 5:00 +Rochester,,EGG,NY,9/18/2010 14:42 +Woodbury,,LIGHT,NY,9/18/2010 18:00 +Chesapeake Beach,ORANGE,CIRCLE,MD,9/18/2010 19:30 +Norwalk,BLUE,SPHERE,CA,9/18/2010 20:00 +Westbury,ORANGE,FIREBALL,NY,9/18/2010 20:30 +Kapolei,,LIGHT,HI,9/18/2010 21:00 +Louisville,,TRIANGLE,KY,9/18/2010 21:30 +Merrillville,,TEARDROP,IN,9/18/2010 21:44 +Pikeville,,,KY,9/18/2010 22:00 +North East,,FIREBALL,PA,9/18/2010 23:00 +Easton,,SPHERE,PA,9/18/2010 23:45 +Vero Beach,,CIRCLE,FL,9/19/2010 0:05 +Fort Mohave,,VARIOUS,AZ,9/19/2010 10:02 +Albuquereque,,CYLINDER,NM,9/19/2010 14:38 +Indianapolis,,,IN,9/19/2010 20:40 +Omaha,,FIREBALL,NE,9/19/2010 21:00 +Kiluea,,VARIOUS,HI,9/20/2010 0:00 +Westerly,,,RI,9/20/2010 0:00 +Nashville,,CIGAR,TN,9/20/2010 7:00 +Riverside,,OVAL,CA,9/20/2010 18:00 +Oxnard,,FIREBALL,CA,9/20/2010 21:02 +Ojai,,SPHERE,CA,9/20/2010 21:08 +Ventura,,VARIOUS,CA,9/20/2010 21:15 +San Jose,ORANGE,FIREBALL,CA,9/20/2010 21:20 +Durham,,OTHER,CA,9/20/2010 22:30 +Land O'Lakes,RED,TRIANGLE,FL,9/20/2010 23:20 +Butler,YELLOW,,MO,9/21/2010 2:00 +East Petersburg,ORANGE,CHEVRON,PA,9/21/2010 5:30 +Yorba Linda,,LIGHT,CA,9/21/2010 7:08 +Cicero,,CIRCLE,NY,9/21/2010 8:32 +Apollo,,LIGHT,PA,9/21/2010 8:59 +Virginia Beach,,SPHERE,VA,9/21/2010 9:35 +Fountain,,OVAL,CO,9/21/2010 18:00 +Reno,,OTHER,NV,9/21/2010 19:00 +Geneva,,CIRCLE,OH,9/21/2010 19:50 +Palm Bay,,OVAL,FL,9/21/2010 21:30 +Palm Bay,RED YELLOW,OVAL,FL,9/21/2010 21:30 +Palm Bay,RED YELLOW,OVAL,FL,9/21/2010 21:30 +Haddam,,LIGHT,CT,9/21/2010 22:21 +Marco Island,,OTHER,FL,9/21/2010 23:00 +Eddyville,,SPHERE,KY,9/22/2010 0:20 +Lakewood,,OVAL,IL,9/22/2010 0:30 +Wilmington,,OVAL,NC,9/22/2010 9:01 +Olive Branch,,LIGHT,MS,9/22/2010 19:45 +Warren,,TRIANGLE,MI,9/22/2010 20:30 +Santa Monica,,FIREBALL,CA,9/22/2010 21:00 +Los Angeles,,OTHER,CA,9/22/2010 21:30 +Depoe Bay,ORANGE,FIREBALL,OR,9/22/2010 22:10 +Orange,,FORMATION,CA,9/22/2010 22:30 +Cornelius,,SPHERE,OR,9/22/2010 22:55 +Eure,ORANGE,LIGHT,NC,9/22/2010 23:00 +Los Angeles,,DISK,CA,9/22/2010 23:00 +Fannett,,DISK,TX,9/23/2010 3:00 +Seward,,CONE,AK,9/23/2010 7:00 +Tumacacori,,CHEVRON,AZ,9/23/2010 19:30 +Roy,,,UT,9/24/2010 1:15 +Kennedale,RED,DISK,TX,9/24/2010 2:23 +El Paso,,OTHER,TX,9/24/2010 17:30 +Henderson,GREEN,FIREBALL,NV,9/24/2010 19:30 +Kennebunkport,,OTHER,ME,9/24/2010 19:45 +Kennebunkport,ORANGE,OTHER,ME,9/24/2010 19:45 +Nevada,,RECTANGLE,NV,9/24/2010 20:00 +Palmdale,,LIGHT,CA,9/24/2010 21:20 +Santa Monica,,CIRCLE,CA,9/24/2010 21:30 +Loma Linda,,,CA,9/24/2010 22:00 +Victoria,,SPHERE,TX,9/24/2010 23:30 +Salinas,,LIGHT,CA,9/25/2010 0:00 +Houston,,VARIOUS,TX,9/25/2010 1:00 +Cedar Rapids,,CIRCLE,IA,9/25/2010 3:00 +North Attleboro,,OVAL,MA,9/25/2010 8:00 +Fontana,RED ORANGE,DISK,CA,9/25/2010 9:45 +Tehachapi,ORANGE,FLASH,CA,9/25/2010 10:00 +New Castle,,FIREBALL,PA,9/25/2010 10:10 +Raleigh,,CYLINDER,NC,9/25/2010 11:15 +Tampa,,RECTANGLE,FL,9/25/2010 15:30 +Brookfield,ORANGE,OTHER,CT,9/25/2010 19:15 +Chatham,,CIRCLE,NJ,9/25/2010 19:45 +Deer Park,RED BLUE,OVAL,WA,9/25/2010 20:30 +Oceanside,YELLOW,LIGHT,CA,9/25/2010 21:00 +Grayslake,,RECTANGLE,IL,9/25/2010 21:15 +Thousand Oaks,,CIRCLE,CA,9/25/2010 21:30 +San Clemente,ORANGE,FIREBALL,CA,9/25/2010 21:43 +Vandenberg AFB,,LIGHT,CA,9/25/2010 21:43 +Los Angeles,,LIGHT,CA,9/25/2010 21:45 +Manhattan Beach,,FIREBALL,CA,9/25/2010 21:50 +New Castle,,FORMATION,PA,9/25/2010 22:00 +New Castle,ORANGE,FIREBALL,PA,9/25/2010 22:05 +Levelland,,,TX,9/25/2010 22:15 +Bourne,,FIREBALL,MA,9/25/2010 22:23 +Chico,,DISK,CA,9/26/2010 0:00 +Sayville,,OTHER,NY,9/26/2010 4:30 +Eatontown,,DISK,NJ,9/26/2010 12:00 +Seal Beach,,LIGHT,CA,9/26/2010 14:00 +Audubon,RED,OVAL,IA,9/26/2010 19:00 +Mascotte,,,FL,9/26/2010 22:00 +Springfield,,LIGHT,MA,9/26/2010 22:00 +Chino,YELLOW,DISK,CA,9/26/2010 22:12 +Palo Alto,,OTHER,CA,9/26/2010 22:45 +Canon City,,CIGAR,CO,9/27/2010 18:00 +Simpsonville,,,KY,9/27/2010 20:38 +Kyle,RED,CHEVRON,TX,9/27/2010 22:15 +Tiburon,,CYLINDER,CA,9/27/2010 23:00 +Amarillo,,OTHER,TX,9/28/2010 3:00 +Canton,,,MA,9/28/2010 3:45 +Breaux Bridge,,CIRCLE,LA,9/28/2010 5:00 +Columbus,,LIGHT,GA,9/28/2010 6:43 +Santa Monica,,OVAL,CA,9/28/2010 10:02 +Knifley,,LIGHT,KY,9/28/2010 10:20 +Omaha,,SPHERE,NE,9/28/2010 11:00 +Galesburg,,OVAL,IL,9/28/2010 13:00 +Salem,,LIGHT,OR,9/28/2010 14:47 +((Unspecified location)),,CHEVRON,IL,9/28/2010 19:30 +Edgewater,,LIGHT,FL,9/28/2010 20:10 +Greensboro,,LIGHT,GA,9/28/2010 20:30 +Safford,,,AZ,9/28/2010 21:00 +San Francisco,,LIGHT,CA,9/28/2010 21:00 +Little Rock,,CIRCLE,AR,9/28/2010 21:30 +Yakima,,CHEVRON,WA,9/28/2010 22:00 +Redding,,LIGHT,CT,9/28/2010 22:20 +Westminster,,FLASH,CO,9/29/2010 3:00 +Seattle,,,WA,9/29/2010 5:30 +Kennesaw,,OTHER,GA,9/29/2010 19:00 +Brookfield,ORANGE,CIRCLE,WI,9/29/2010 20:25 +Shingle Springs,,CONE,CA,9/29/2010 20:32 +Cape Coral,,TRIANGLE,FL,9/29/2010 20:40 +Edmonds,,FORMATION,WA,9/29/2010 20:45 +San Mateo,,LIGHT,CA,9/29/2010 21:00 +Cape Coral,,TRIANGLE,FL,9/29/2010 22:00 +Krum,,LIGHT,TX,9/29/2010 22:00 +Sioux City,,OTHER,IA,9/29/2010 23:00 +Pomona,,FORMATION,CA,9/29/2010 23:27 +Frankfort,BLUE,FLASH,IN,9/30/2010 2:25 +Fort Worth,,TRIANGLE,TX,9/30/2010 2:50 +Spokane Valley,,TRIANGLE,WA,9/30/2010 5:30 +Pontiac,,SPHERE,MI,9/30/2010 7:00 +Saluda,,VARIOUS,SC,9/30/2010 10:30 +Plano,,DISK,TX,9/30/2010 10:37 +Cedar Rapids,,TRIANGLE,IA,9/30/2010 13:05 +Burlington,,DIAMOND,WI,9/30/2010 19:00 +Woods Cross,,LIGHT,UT,9/30/2010 19:19 +Algonac,,SPHERE,MI,9/30/2010 20:00 +Hesperia,,LIGHT,CA,9/30/2010 20:23 +League City,,DISK,TN,9/30/2010 21:00 +Chicago,,LIGHT,IL,9/30/2010 21:30 +Grafton,,TRIANGLE,WI,9/30/2010 21:55 +Colorado City,,TRIANGLE,CO,9/30/2010 22:00 +Monticello,,LIGHT,GA,9/30/2010 22:30 +Terrebonne,,LIGHT,MN,9/30/2010 22:30 +Buena Park,,,CA,9/30/2010 23:00 +Paducah,RED,TRIANGLE,KY,9/30/2010 23:00 +Delray Beach,RED GREEN,OTHER,FL,10/1/2010 0:00 +Aripeka,,LIGHT,FL,10/1/2010 6:25 +Chico,,,CA,10/1/2010 7:00 +James Island,,TRIANGLE,SC,10/1/2010 8:03 +Middleton,ORANGE,OTHER,WI,10/1/2010 8:30 +Spotsylvania,RED GREEN,CIRCLE,VA,10/1/2010 9:30 +Seattle,,,WA,10/1/2010 10:05 +Sterling Heights,ORANGE,SPHERE,MI,10/1/2010 10:20 +Waxahachie,,DISK,TX,10/1/2010 12:16 +Dallas,,OTHER,TX,10/1/2010 16:30 +Strasburg,,CIGAR,VA,10/1/2010 18:30 +Fayetteville,RED,LIGHT,NC,10/1/2010 19:45 +Brunswick,,TRIANGLE,OH,10/1/2010 20:45 +Arlington,RED,OVAL,WA,10/1/2010 21:00 +Pittsburgh area,,OVAL,PA,10/1/2010 21:00 +Corona,,,CA,10/1/2010 23:00 +Rock Spring,,LIGHT,GA,10/1/2010 23:00 +Boise,,LIGHT,ID,10/2/2010 0:00 +Des Moines,,DIAMOND,IA,10/2/2010 2:12 +Galena,,TRIANGLE,IL,10/2/2010 9:00 +Orange,ORANGE,,CA,10/2/2010 12:15 +Covington,,OTHER,GA,10/2/2010 13:30 +Pleasanton,,OVAL,CA,10/2/2010 16:00 +Oroville,RED,SPHERE,WA,10/2/2010 17:00 +Allentown,,LIGHT,PA,10/2/2010 20:00 +Desert Center,,FIREBALL,CA,10/2/2010 20:45 +Severn,,TRIANGLE,MD,10/2/2010 21:00 +Austin,,,TX,10/2/2010 21:40 +Pomona,ORANGE,OTHER,CA,10/2/2010 21:45 +St. Louis,,CHEVRON,MO,10/2/2010 22:00 +Twin Lakes,BLUE,CIGAR,WI,10/2/2010 22:55 +Kingman,,,AZ,10/3/2010 0:00 +New York City,,OVAL,NY,10/3/2010 5:20 +Borden,,OTHER,IN,10/3/2010 5:30 +Amelia,,VARIOUS,OH,10/3/2010 10:30 +Villa Rica,,FIREBALL,GA,10/3/2010 16:30 +Holland,,OVAL,MI,10/3/2010 18:20 +Beecher,ORANGE,LIGHT,IL,10/3/2010 19:30 +Bloomington,,LIGHT,IL,10/3/2010 20:00 +Dubuque,,OTHER,IA,10/3/2010 21:00 +Kingston,BLUE,FIREBALL,WA,10/3/2010 21:00 +Gilman City,,LIGHT,MO,10/3/2010 21:15 +Burson,RED,FLASH,CA,10/3/2010 22:00 +New York City,,LIGHT,NY,10/3/2010 22:00 +Seattle,,FIREBALL,WA,10/3/2010 22:30 +Dubuque,,,IA,10/3/2010 23:00 +Socorro,,CROSS,NM,10/3/2010 23:00 +Birmingham,,TRIANGLE,AL,10/4/2010 0:30 +Northglenn,,CIRCLE,CO,10/4/2010 4:30 +Lynnwood,,CIRCLE,WA,10/4/2010 10:00 +Prunedale,,LIGHT,CA,10/4/2010 19:30 +Franklin,,TRIANGLE,IN,10/4/2010 20:30 +Dallas,,OTHER,TX,10/4/2010 20:45 +Mariposa,,CIRCLE,CA,10/4/2010 23:54 +Pensacola,,TRIANGLE,FL,10/5/2010 2:00 +Sacramento,,OTHER,CA,10/5/2010 3:00 +La Pryor,,FIREBALL,TX,10/5/2010 7:05 +Shelbyville,,OVAL,TN,10/5/2010 10:41 +Ashville,,DISK,OH,10/5/2010 12:00 +De Soto,RED,LIGHT,IA,10/5/2010 19:00 +Buffalo,,VARIOUS,NY,10/5/2010 19:34 +Edgerton,,DISK,KS,10/5/2010 20:00 +Coleman,,,TX,10/5/2010 20:30 +Livingston,,LIGHT,TX,10/5/2010 21:30 +Monroe,,LIGHT,WA,10/5/2010 23:00 +Bothell,,,WA,10/6/2010 3:30 +Harrisonburg,,TRIANGLE,VA,10/6/2010 7:50 +Madison,RED,OVAL,WI,10/6/2010 8:38 +Appleton,,LIGHT,WI,10/6/2010 9:30 +Chaska,,TEARDROP,MN,10/6/2010 14:40 +Elk Grove Village,,CIRCLE,IL,10/6/2010 18:00 +Miami,,CIRCLE,FL,10/6/2010 18:45 +Edgerton,,DISK,KS,10/6/2010 20:00 +Lexington,,OTHER,KY,10/6/2010 20:15 +Chalk Hill,,RECTANGLE,TX,10/6/2010 20:40 +Moran,ORANGE,FLASH,TX,10/6/2010 20:45 +Spring Hill,,OTHER,FL,10/6/2010 20:56 +Williamsburg,GREEN,OVAL,VA,10/6/2010 21:00 +Spring Hill,,FORMATION,FL,10/6/2010 21:07 +St. Louis,RED,TRIANGLE,MO,10/6/2010 22:30 +Clinton,,CONE,WA,10/7/2010 0:30 +Aurora,,OTHER,IL,10/7/2010 5:05 +Antelope,,OTHER,CA,10/7/2010 19:30 +Fort Worth,,CIRCLE,TX,10/7/2010 20:15 +Paint Rock,,LIGHT,TX,10/7/2010 21:00 +Spring Hill,,,FL,10/7/2010 21:02 +Clarksville,,SPHERE,TN,10/7/2010 21:40 +Abilene,RED,LIGHT,TX,10/7/2010 22:35 +Imperial,,LIGHT,MO,10/7/2010 23:30 +South San Gabriel,RED,OVAL,CA,10/8/2010 0:00 +Oak Lawn,,LIGHT,IL,10/8/2010 1:02 +Anchorage,,TRIANGLE,AK,10/8/2010 1:30 +Deltona,,LIGHT,FL,10/8/2010 2:00 +Saginaw,ORANGE,LIGHT,MI,10/8/2010 2:00 +Denver,,LIGHT,CO,10/8/2010 3:30 +Tunkhannock,,,PA,10/8/2010 5:30 +Canandaigua,,FLASH,NY,10/8/2010 7:25 +Stockbridge,,CIRCLE,MA,10/8/2010 11:00 +Lewisville,,,TX,10/8/2010 12:02 +Morrisdale,,DISK,PA,10/8/2010 16:30 +Las Vegas,,LIGHT,NV,10/8/2010 18:00 +Shelbyville,,OVAL,TN,10/8/2010 19:37 +Peoria,,OVAL,AZ,10/8/2010 20:05 +Climax,,LIGHT,NC,10/8/2010 20:50 +Bloomington,,TRIANGLE,IN,10/8/2010 21:00 +Cleveland Heights,ORANGE,CIRCLE,OH,10/8/2010 21:05 +Bath,,DISK,OH,10/8/2010 21:30 +Deerfield Beach,,SPHERE,FL,10/8/2010 21:30 +Portland City,,SPHERE,OR,10/8/2010 23:00 +San Angelo,GREEN,FIREBALL,TX,10/9/2010 1:09 +Butte,,FORMATION,MT,10/9/2010 1:20 +St. Augustine,,,FL,10/9/2010 1:56 +Martinsburg,BLUE,,WV,10/9/2010 4:00 +Stockton,,CIRCLE,CA,10/9/2010 4:20 +Woodland Park,ORANGE YELLOW,CIRCLE,NJ,10/9/2010 5:00 +Dunedin,,TRIANGLE,FL,10/9/2010 9:00 +Trenton,,LIGHT,OH,10/9/2010 9:45 +Soquel,,CYLINDER,CA,10/9/2010 12:00 +Gilbert,,DISK,AZ,10/9/2010 17:38 +Oak Lawn,,RECTANGLE,IL,10/9/2010 18:30 +North Henderson,,TRIANGLE,IL,10/9/2010 20:00 +Columbus,,LIGHT,GA,10/9/2010 20:15 +Ben Wheeler,ORANGE,TRIANGLE,TX,10/9/2010 20:20 +Adams County,ORANGE,CIRCLE,WI,10/9/2010 20:30 +Ocean Isle Beach,,,NC,10/9/2010 21:00 +Port Clinton,,FIREBALL,OH,10/9/2010 21:15 +Belmar,,LIGHT,NJ,10/9/2010 21:20 +York,,OTHER,PA,10/9/2010 21:40 +San Antonio,ORANGE,FIREBALL,TX,10/9/2010 21:42 +Boston,,TRIANGLE,MA,10/9/2010 21:45 +Meadville,ORANGE,TRIANGLE,PA,10/9/2010 22:30 +Pikeville,,DIAMOND,KY,10/9/2010 23:00 +Orchard Park,,LIGHT,NY,10/10/2010 1:00 +Harrisburg,,CIRCLE,PA,10/10/2010 2:30 +Euclid,RED,CIRCLE,OH,10/10/2010 3:00 +Starr,ORANGE,FORMATION,SC,10/10/2010 8:30 +Leominster,YELLOW,FLASH,MA,10/10/2010 10:45 +Greenwich,,LIGHT,CT,10/10/2010 12:00 +North Charleston,,LIGHT,SC,10/10/2010 13:00 +San Francisco Airport,RED BLUE,TRIANGLE,CA,10/10/2010 15:00 +Springfield,,CIGAR,VA,10/10/2010 16:30 +Bridgeport,,LIGHT,CT,10/10/2010 17:10 +Clackamas,,TRIANGLE,OR,10/10/2010 18:30 +San Angelo,ORANGE,OVAL,TX,10/10/2010 20:00 +Windsor,,FIREBALL,CT,10/10/2010 20:20 +Sterling,RED,CYLINDER,IL,10/10/2010 20:45 +Everett,ORANGE,OTHER,WA,10/10/2010 21:00 +Kykotsmovi,,DISK,AZ,10/10/2010 21:00 +Albany,,CIRCLE,NY,10/10/2010 21:30 +Garden Grove,,EGG,CA,10/10/2010 22:30 +Miami,,VARIOUS,FL,10/10/2010 23:00 +Anaheim,BLUE,DISK,CA,10/10/2010 23:30 +Redondo Beach,,OTHER,CA,10/11/2010 0:30 +Moxee,,RECTANGLE,WA,10/11/2010 4:00 +Albany,,OVAL,NY,10/11/2010 4:50 +West Palm Beach,,SPHERE,FL,10/11/2010 6:20 +Orangevale,,VARIOUS,CA,10/11/2010 12:30 +Cottage Grove,,LIGHT,MN,10/11/2010 19:40 +Glendora,,CIRCLE,CA,10/11/2010 20:50 +Ramona,,TRIANGLE,CA,10/11/2010 20:53 +Union City,,OTHER,CA,10/11/2010 21:35 +Clinton Township,,FIREBALL,MI,10/11/2010 23:20 +Cross Roads,,TRIANGLE,TX,10/12/2010 0:56 +Tomball,,CIGAR,TX,10/12/2010 6:00 +Sioux Falls,,LIGHT,SD,10/12/2010 6:07 +Milpitas,,OTHER,CA,10/12/2010 10:00 +Milpitas,,OTHER,CA,10/12/2010 10:00 +Waco,,OVAL,TX,10/12/2010 12:30 +Littleton,,TRIANGLE,CO,10/12/2010 14:00 +Hillsdale,,CIRCLE,MI,10/12/2010 16:00 +Arlington,,SPHERE,VA,10/12/2010 19:00 +Dallas,,CIGAR,TX,10/12/2010 19:10 +Daphne,,CHEVRON,AL,10/12/2010 19:13 +Bridgeton,,RECTANGLE,MO,10/12/2010 20:15 +Boston,,DISK,MA,10/12/2010 20:30 +Lufkin,,CHEVRON,TX,10/12/2010 21:00 +Pinellas Park,RED GREEN BLUE,CIRCLE,FL,10/12/2010 22:15 +Fort Mohave,,VARIOUS,AZ,10/12/2010 22:30 +Waterloo,,LIGHT,IA,10/12/2010 22:30 +Knoxville,,LIGHT,TN,10/12/2010 22:45 +Pueblo,,FLASH,CO,10/13/2010 1:00 +Webster,RED,CROSS,TX,10/13/2010 3:00 +Rochester,,LIGHT,NY,10/13/2010 4:45 +Las Vegas,,CIRCLE,NV,10/13/2010 14:30 +Green,,TRIANGLE,OH,10/13/2010 15:47 +Naperville,,CYLINDER,IL,10/13/2010 16:00 +Richmond,YELLOW,SPHERE,CA,10/13/2010 17:00 +Flora,,CROSS,IL,10/13/2010 17:30 +Grandview,,CHEVRON,MO,10/13/2010 18:15 +Grandview,ORANGE,CHEVRON,MO,10/13/2010 18:30 +New York City,,LIGHT,NY,10/13/2010 19:20 +Cincinnati,,,OH,10/13/2010 20:00 +Lincoln,,FLASH,CA,10/13/2010 20:00 +Brick,,CIRCLE,NJ,10/13/2010 20:30 +Gilbert,RED BLUE,CIRCLE,AZ,10/13/2010 20:30 +Martinez,,OTHER,CA,10/13/2010 20:30 +Sunol,,OTHER,CA,10/13/2010 20:30 +Grandview,,CHEVRON,MO,10/13/2010 20:40 +Charleston,ORANGE,TRIANGLE,SC,10/13/2010 20:45 +Charlotte,,LIGHT,NC,10/13/2010 21:00 +San Francisco,,LIGHT,CA,10/13/2010 21:00 +San Francisco,,SPHERE,CA,10/13/2010 21:00 +Allen,,,TX,10/13/2010 22:00 +Rio Linda,,CYLINDER,CA,10/13/2010 22:30 +Etna,RED YELLOW GREEN,FLASH,CA,10/13/2010 22:45 +Las Vegas,,VARIOUS,NV,10/13/2010 22:45 +The Colony,,LIGHT,TX,10/14/2010 6:04 +Imperial,,FORMATION,MO,10/14/2010 6:15 +Truth or Consequences,,CIRCLE,NM,10/14/2010 16:30 +Rock Hill,,FLASH,SC,10/14/2010 18:00 +Foley,,CYLINDER,AL,10/14/2010 18:30 +Visalia,ORANGE YELLOW,CIRCLE,CA,10/14/2010 18:35 +Mitchell,,LIGHT,SD,10/14/2010 19:20 +Ripon,,TRIANGLE,CA,10/14/2010 19:30 +Livermore,,LIGHT,CA,10/14/2010 21:25 +Western Springs,,,IL,10/15/2010 2:00 +Cheyenne,,LIGHT,WY,10/15/2010 2:30 +Harleysville,,CIRCLE,PA,10/15/2010 3:00 +Buffalo,RED GREEN BLUE,SPHERE,NY,10/15/2010 3:30 +Overland Park,,SPHERE,KS,10/15/2010 5:30 +Charlotte,,CIGAR,NC,10/15/2010 16:20 +Austin,,OTHER,TX,10/15/2010 16:30 +New York City,,DISK,NY,10/15/2010 17:00 +Greeley,,DISK,CO,10/15/2010 17:40 +Boulder,,LIGHT,CO,10/15/2010 19:30 +Havertown,,LIGHT,PA,10/15/2010 20:00 +Raeford,,VARIOUS,NC,10/15/2010 20:00 +Warren,GREEN,,MI,10/15/2010 20:00 +Warren,GREEN,,MI,10/15/2010 20:00 +Thornton,,TEARDROP,CO,10/15/2010 20:40 +Cedarville,,,OH,10/15/2010 21:15 +Buffalo,,FIREBALL,NY,10/15/2010 21:27 +Waterloo,ORANGE,LIGHT,IA,10/15/2010 22:30 +Caswell,,LIGHT,NC,10/16/2010 0:00 +Arcadia,,LIGHT,CA,10/16/2010 0:30 +Yakima,,OTHER,WA,10/16/2010 1:00 +Gibson,BLUE,OTHER,GA,10/16/2010 1:55 +Cullman,,SPHERE,AL,10/16/2010 15:00 +Troutville,,SPHERE,VA,10/16/2010 16:36 +Greeley,,SPHERE,CO,10/16/2010 18:00 +Salem,,SPHERE,OR,10/16/2010 18:00 +Troutville,,SPHERE,VA,10/16/2010 18:00 +Panama City,RED GREEN,OVAL,FL,10/16/2010 21:20 +Port Saint Lucie,,VARIOUS,FL,10/16/2010 21:38 +Columbus,RED,,OH,10/16/2010 22:00 +Meredith,,LIGHT,NH,10/16/2010 22:00 +Charlivox,,CIGAR,MI,10/16/2010 22:30 +Pittsburgh,,FORMATION,PA,10/16/2010 22:30 +Rochester,,CIRCLE,MN,10/16/2010 22:45 +Blowing Rock,RED,,NC,10/17/2010 1:00 +Norristown,,DISK,PA,10/17/2010 2:00 +Santa Ana,BLUE,LIGHT,CA,10/17/2010 4:00 +Phoenix,,LIGHT,AZ,10/17/2010 4:53 +Nazareth,,LIGHT,PA,10/17/2010 18:40 +Amesbury,,TRIANGLE,MA,10/17/2010 20:00 +Omaha,,FIREBALL,NE,10/17/2010 20:35 +New York City,,CIRCLE,NY,10/18/2010 1:00 +Helena,,TRIANGLE,OK,10/18/2010 2:45 +Highland,BLUE,TRIANGLE,NY,10/18/2010 4:00 +Huger,RED,LIGHT,SC,10/18/2010 5:00 +Martinez,,,CA,10/18/2010 6:30 +Honeoye Falls,,,NY,10/18/2010 7:30 +Pittsburgh,BLUE,VARIOUS,PA,10/18/2010 16:00 +Reidsville,,TRIANGLE,GA,10/18/2010 20:40 +Yonkers,,SPHERE,NY,10/19/2010 13:00 +Seattle,,LIGHT,WA,10/19/2010 18:30 +Kirkland,,LIGHT,WA,10/19/2010 19:00 +Rock Hill,,FLASH,SC,10/19/2010 19:00 +Tacoma,,LIGHT,WA,10/19/2010 19:00 +Riverdale,,LIGHT,UT,10/19/2010 20:05 +Raleigh,,LIGHT,NC,10/19/2010 20:15 +Southern Oregon,,,OR,10/19/2010 20:15 +Crescent City,GREEN,TRIANGLE,CA,10/19/2010 20:18 +Brookings,RED,CIRCLE,OR,10/19/2010 20:30 +Hazen,RED,TRIANGLE,NV,10/19/2010 20:33 +Ormond Beach,,LIGHT,FL,10/19/2010 21:00 +Burnsville,,,NC,10/19/2010 21:19 +Cross Lanes,,LIGHT,WV,10/19/2010 23:00 +Roseburg,,RECTANGLE,OR,10/20/2010 0:10 +Pearland,RED BLUE,SPHERE,TX,10/20/2010 2:59 +Southfield,,LIGHT,MI,10/20/2010 4:20 +Golden Valley,,,AZ,10/20/2010 5:45 +Hazard,,LIGHT,KY,10/20/2010 15:30 +Mesa,,OTHER,AZ,10/20/2010 16:17 +Boise,,FIREBALL,ID,10/20/2010 19:00 +Spokane,,OVAL,WA,10/20/2010 19:00 +Plymouth,,LIGHT,PA,10/20/2010 19:28 +Williamsport,,LIGHT,PA,10/20/2010 19:33 +Hillsborough,,OTHER,NC,10/20/2010 20:00 +Wilmington,,DISK,DE,10/20/2010 20:30 +Billings,,LIGHT,MT,10/20/2010 21:00 +Dale,,TRIANGLE,IN,10/20/2010 21:00 +Brandon,,TRIANGLE,MS,10/20/2010 22:20 +Daniels Park,,DISK,CO,10/20/2010 23:30 +Thomson,,DISK,GA,10/21/2010 19:00 +Cape Coral,,LIGHT,FL,10/21/2010 20:00 +Hardy,,LIGHT,VA,10/21/2010 20:30 +Fort Myers,,LIGHT,FL,10/21/2010 20:45 +Boston,,LIGHT,MA,10/21/2010 21:30 +Otis,,LIGHT,OR,10/21/2010 22:00 +Charleston,RED,TRIANGLE,SC,10/21/2010 22:30 +San Jose,,DISK,CA,10/21/2010 23:25 +Burnsville,,TRIANGLE,MN,10/22/2010 5:25 +Tucson,,FIREBALL,AZ,10/22/2010 5:45 +Reading,,,OH,10/22/2010 8:00 +Amherst,,,VA,10/22/2010 11:38 +Plano,,CONE,TX,10/22/2010 12:00 +Columbia,,TEARDROP,SC,10/22/2010 15:10 +Garner,,OVAL,NC,10/22/2010 17:15 +Perrysburg,,LIGHT,OH,10/22/2010 18:47 +Alexandria,,LIGHT,VA,10/22/2010 19:30 +Manchester,,TRIANGLE,NH,10/22/2010 19:50 +Atlanta,ORANGE,DISK,GA,10/22/2010 20:00 +Oakland,,CIRCLE,CA,10/22/2010 20:00 +Seagoville,YELLOW,CHEVRON,TX,10/22/2010 20:35 +Toms River,,OVAL,NJ,10/22/2010 20:45 +Catawba,,OTHER,NC,10/22/2010 21:00 +Pittsburgh,,SPHERE,PA,10/22/2010 21:22 +Phoenix,,CIRCLE,AZ,10/22/2010 21:30 +Highland,,OTHER,NY,10/23/2010 7:00 +Bloomignton,,LIGHT,MN,10/23/2010 9:00 +Eureka,,LIGHT,CA,10/23/2010 10:30 +Fayetteville,,SPHERE,AR,10/23/2010 15:15 +Hockessin,,SPHERE,DE,10/23/2010 18:50 +Glendale,,LIGHT,AZ,10/23/2010 19:25 +Phoenix,ORANGE,TEARDROP,AZ,10/23/2010 19:39 +Phoenix,,FIREBALL,AZ,10/23/2010 19:40 +Venice,,CHEVRON,CA,10/23/2010 19:45 +Venice,,OTHER,CA,10/23/2010 19:50 +Portland,,TRIANGLE,ME,10/23/2010 20:15 +Boyertown,,CIRCLE,PA,10/23/2010 21:00 +Phoenix,,LIGHT,AZ,10/23/2010 21:00 +Bourne,,TRIANGLE,MA,10/23/2010 21:20 +Sugar Hill,,CIRCLE,GA,10/23/2010 22:30 +Katy,,LIGHT,TX,10/24/2010 19:35 +Huntersville,,CIRCLE,NC,10/24/2010 21:00 +Yuba City,,CIGAR,CA,10/25/2010 9:00 +Omer,,,MI,10/25/2010 19:25 +Cleveland,,CIGAR,TN,10/25/2010 20:00 +Plainfield,,TRIANGLE,IL,10/25/2010 22:45 +New York City,,LIGHT,NY,10/25/2010 23:00 +Amherst,,,VA,10/25/2010 23:30 +Mt. Vernon,RED,OVAL,WA,10/25/2010 23:30 +Spokane,RED,,WA,10/26/2010 0:00 +Tucson,,CIRCLE,AZ,10/26/2010 6:30 +Bolingbrook,,RECTANGLE,IL,10/26/2010 7:30 +Midlothian,YELLOW,LIGHT,VA,10/26/2010 8:00 +Morgan City,,FIREBALL,LA,10/26/2010 18:30 +Rock Hill,,OTHER,SC,10/26/2010 19:00 +Miami,,,AZ,10/26/2010 19:20 +Missouri,,LIGHT,MO,10/26/2010 19:35 +Sumter,,TRIANGLE,SC,10/26/2010 20:00 +St. Louis,,CHEVRON,MO,10/26/2010 21:00 +Denton,,CIRCLE,TX,10/27/2010 3:00 +Jonesville,,,MI,10/27/2010 8:00 +Harleysville,ORANGE,LIGHT,PA,10/27/2010 10:00 +Meadow Vista,,OTHER,CA,10/27/2010 14:00 +New Kent County,,DISK,VA,10/27/2010 18:20 +Lansing,,FIREBALL,MI,10/27/2010 19:00 +St. Peters,RED,LIGHT,MO,10/27/2010 19:00 +Asheville,,LIGHT,NC,10/27/2010 20:15 +Wabash,,LIGHT,IN,10/27/2010 20:15 +Brockport,,TRIANGLE,NY,10/27/2010 21:00 +Cape Canaveral,RED ORANGE,FIREBALL,FL,10/27/2010 21:00 +Decatur,,LIGHT,AR,10/27/2010 21:00 +Wilmington,RED,RECTANGLE,NC,10/27/2010 21:52 +Boiling Springs,,OVAL,SC,10/27/2010 22:00 +Fort Campbell,,LIGHT,KY,10/27/2010 22:30 +Mt. Savage,GREEN BLUE,OVAL,MD,10/27/2010 23:20 +Mentor,,CIGAR,OH,10/28/2010 0:00 +Redmond,,TRIANGLE,WA,10/28/2010 0:10 +Gaffney,RED,FIREBALL,SC,10/28/2010 18:00 +Tracy,,CIRCLE,CA,10/28/2010 19:27 +Oak Ridge,,,NC,10/28/2010 19:37 +Stanton,,LIGHT,NE,10/28/2010 19:50 +International Falls,,CIRCLE,MN,10/28/2010 22:00 +Northridge,,OVAL,CA,10/28/2010 22:40 +Duluth,,TRIANGLE,MN,10/29/2010 0:00 +Chalmette,,CIRCLE,LA,10/29/2010 1:15 +Hot Springs,,,AR,10/29/2010 1:30 +Austin,,FORMATION,TX,10/29/2010 4:05 +Herkimer,,FIREBALL,NY,10/29/2010 5:15 +Laurel Hill,,VARIOUS,NC,10/29/2010 6:40 +Chantilly,,DISK,VA,10/29/2010 8:10 +Danville,,RECTANGLE,KY,10/29/2010 8:10 +Stratford,,DIAMOND,CT,10/29/2010 10:45 +Franklin,,SPHERE,GA,10/29/2010 14:00 +Bessemer,,TEARDROP,AL,10/29/2010 17:30 +Browns Summit,,CIRCLE,NC,10/29/2010 17:45 +Edmonds,,OTHER,WA,10/29/2010 18:00 +Katy,,LIGHT,TX,10/29/2010 18:00 +Vicksburg,,OTHER,MS,10/29/2010 18:20 +Vicksburg,,OTHER,MS,10/29/2010 18:20 +Kansas City,BLUE,LIGHT,MO,10/29/2010 18:30 +Edmonds,RED,SPHERE,WA,10/29/2010 19:00 +Kings Mountain,ORANGE,OTHER,NC,10/29/2010 19:00 +Arden,,CIRCLE,NC,10/29/2010 19:10 +Rockford,,TRIANGLE,IL,10/29/2010 19:10 +Tionesta,RED,EGG,PA,10/29/2010 19:45 +Yelm,,TRIANGLE,WA,10/29/2010 21:11 +Granite Falls,,FORMATION,NC,10/29/2010 22:45 +Cedar Falls,,LIGHT,IA,10/30/2010 2:00 +St. Matthew's,,TRIANGLE,SC,10/30/2010 3:00 +Ruston,,TEARDROP,LA,10/30/2010 7:00 +Kildeer,,CYLINDER,IL,10/30/2010 10:30 +Richmond,,LIGHT,KY,10/30/2010 21:00 +Fort Wright,,FIREBALL,KY,10/30/2010 21:30 +Moore,YELLOW,OVAL,OK,10/30/2010 21:45 +Tampa,,TRIANGLE,FL,10/30/2010 21:58 +Milford,,VARIOUS,NE,10/30/2010 22:00 +Tuttle,,DIAMOND,OK,10/30/2010 22:23 +Tuttle,YELLOW,TRIANGLE,OK,10/30/2010 22:23 +Bear,RED,LIGHT,DE,10/30/2010 23:35 +Broken Arrow,,VARIOUS,OK,10/30/2010 23:50 +Lenexa,,LIGHT,MO,10/30/2010 23:50 +Westland,,TRIANGLE,MI,10/31/2010 1:23 +College Station,,DISK,TX,10/31/2010 1:25 +Las Vegas,,RECTANGLE,NV,10/31/2010 5:15 +Jupiter,,OVAL,FL,10/31/2010 7:30 +Lee's Summit,,RECTANGLE,MO,10/31/2010 7:50 +Philipsburg,,CIRCLE,PA,10/31/2010 12:41 +Roselle,,,IL,10/31/2010 17:00 +Oak Lawn,,LIGHT,IL,10/31/2010 18:06 +Maple Heights,ORANGE,OTHER,OH,10/31/2010 18:15 +Pittsburgh,,FIREBALL,PA,10/31/2010 19:00 +Cincinnati,RED,FIREBALL,OH,10/31/2010 19:15 +Jupiter,,OVAL,FL,10/31/2010 19:30 +Northridge,,TRIANGLE,CA,10/31/2010 19:30 +O'Fallon,,VARIOUS,MO,10/31/2010 19:53 +Monroe,,FIREBALL,CT,10/31/2010 20:30 +Mooresville,ORANGE,LIGHT,NC,10/31/2010 20:30 +Holiday,RED,,FL,10/31/2010 21:34 +Stayton,,VARIOUS,OR,10/31/2010 21:50 +Dunsmuir,,CIRCLE,CA,10/31/2010 22:15 +Cambridge,,FORMATION,OH,10/31/2010 23:30 +Bardstown,,CHEVRON,KY,10/31/2010 23:50 +Rushville,RED,LIGHT,NY,11/1/2010 0:00 +Yuma,,DIAMOND,AZ,11/1/2010 3:00 +Roseville,,CIRCLE,OH,11/1/2010 6:57 +Houston,,OTHER,TX,11/1/2010 11:00 +Los Angeles,,SPHERE,CA,11/1/2010 11:00 +Crawfordsville,,TRIANGLE,IN,11/1/2010 12:00 +Tempe,,OTHER,AZ,11/1/2010 12:50 +Forest Hills,RED,CYLINDER,NY,11/1/2010 18:00 +Los Angeles,,FORMATION,CA,11/1/2010 20:15 +Casa Grande,,CIRCLE,AZ,11/1/2010 21:18 +Tracy,GREEN,LIGHT,CA,11/1/2010 21:20 +Chestertown,,LIGHT,MD,11/1/2010 22:00 +Marietta,RED BLUE,CHEVRON,GA,11/1/2010 22:00 +Bayville,,OTHER,NJ,11/1/2010 22:45 +Inverness,,DISK,IL,11/2/2010 1:17 +Oxnard,,DISK,CA,11/2/2010 7:00 +Ware,BLUE,OVAL,MA,11/2/2010 7:20 +Flint,,EGG,MI,11/2/2010 8:39 +Austin,,SPHERE,TX,11/2/2010 14:00 +Indianapolis,,CYLINDER,IN,11/2/2010 14:20 +Coventry,,OTHER,RI,11/2/2010 17:00 +San Mateo,,TRIANGLE,CA,11/2/2010 19:05 +Springfield,,CIGAR,MA,11/2/2010 19:15 +Rutland,,FIREBALL,VT,11/2/2010 19:18 +Berkeley,RED,TRIANGLE,CA,11/2/2010 19:30 +Coos Bay,,TRIANGLE,OR,11/2/2010 19:45 +Deerwood,GREEN,OVAL,MN,11/2/2010 19:45 +Woolwich,ORANGE,LIGHT,ME,11/2/2010 19:55 +Weston,,,CT,11/2/2010 20:16 +Baldwin,,,MI,11/2/2010 20:20 +Olathe,,LIGHT,KS,11/2/2010 21:00 +Los Angeles,,OTHER,CA,11/2/2010 21:30 +Portland,,SPHERE,OR,11/3/2010 5:10 +Bellevue,,OTHER,WA,11/3/2010 6:45 +Enumclaw,,RECTANGLE,WA,11/3/2010 9:00 +Inglewood,,RECTANGLE,CA,11/3/2010 11:50 +Muskogee,,CYLINDER,OK,11/3/2010 18:00 +Cedarville,YELLOW,FIREBALL,CA,11/3/2010 19:15 +Surprise,,LIGHT,AZ,11/3/2010 20:00 +Lake Havasu City,,LIGHT,AZ,11/3/2010 20:35 +Albany,,TRIANGLE,OR,11/3/2010 21:00 +Canby,,FLASH,OR,11/3/2010 21:00 +Albany,,LIGHT,NY,11/3/2010 23:00 +Gilbert,RED GREEN,,AZ,11/3/2010 23:19 +Billings-Lockwood,RED,DISK,MT,11/4/2010 0:00 +Las Vegas,BLUE,OVAL,NV,11/4/2010 0:30 +Sioux City,,LIGHT,IA,11/4/2010 7:00 +Grover Beach,,DIAMOND,CA,11/4/2010 10:30 +St. Charles,,OTHER,MO,11/4/2010 10:37 +Upland,,SPHERE,CA,11/4/2010 12:25 +San Diego,,SPHERE,CA,11/4/2010 12:48 +Venice,,SPHERE,CA,11/4/2010 16:40 +Miamisburg,,DISK,OH,11/4/2010 17:07 +Chicago,,TRIANGLE,IL,11/4/2010 17:30 +Williamsport,,DIAMOND,MD,11/4/2010 19:55 +Terlingua,,FIREBALL,TX,11/4/2010 20:45 +Richmond,,DIAMOND,CA,11/4/2010 21:28 +Paragould,,CIGAR,AR,11/4/2010 21:30 +Reno,,FORMATION,NV,11/4/2010 21:30 +Bensalem,,TEARDROP,PA,11/4/2010 23:00 +Leavenworth,,LIGHT,KS,11/5/2010 3:00 +Leavenworth,,LIGHT,KS,11/5/2010 3:20 +Leavenworth,,TEARDROP,KS,11/5/2010 6:00 +Longmont,,CHEVRON,CO,11/5/2010 8:15 +Stone Mountain,,,GA,11/5/2010 10:32 +Sullivan,,DISK,IL,11/5/2010 18:10 +Oxnard,,FIREBALL,CA,11/5/2010 19:00 +Port Hueneme,,FIREBALL,CA,11/5/2010 19:30 +Thousand Oaks,,OVAL,CA,11/5/2010 21:00 +Nebo,,LIGHT,NC,11/5/2010 21:01 +Fountain,,CHEVRON,CO,11/5/2010 21:10 +Groton,,TRIANGLE,CT,11/5/2010 22:00 +Jackson,ORANGE,OVAL,CA,11/5/2010 22:30 +Visalia,,TRIANGLE,CA,11/6/2010 0:14 +Leavenworth,,LIGHT,KS,11/6/2010 3:00 +Leavenworth,,SPHERE,KS,11/6/2010 3:00 +Revere,,LIGHT,MA,11/6/2010 6:45 +Austin,,SPHERE,TX,11/6/2010 14:00 +Arkport,,LIGHT,NY,11/6/2010 16:00 +Marceline,,LIGHT,MO,11/6/2010 16:30 +Kiawah Island,ORANGE,OVAL,SC,11/6/2010 20:30 +Corona del Mar,,LIGHT,CA,11/6/2010 22:00 +Hermosa Beach,,VARIOUS,CA,11/6/2010 22:00 +Sedona,,TRIANGLE,CA,11/6/2010 22:00 +Allison Park,RED,CIRCLE,PA,11/7/2010 0:05 +Canajoharie,RED GREEN BLUE,FLASH,NY,11/7/2010 0:30 +Big Lake Township,RED BLUE,TRIANGLE,MN,11/7/2010 1:00 +Walterboro,,LIGHT,SC,11/7/2010 1:13 +Fort Worth,RED GREEN,OTHER,TX,11/7/2010 1:30 +Gastonia,,TRIANGLE,NC,11/7/2010 2:47 +Lexington,ORANGE,LIGHT,KY,11/7/2010 3:35 +Eagle Lake,,SPHERE,MN,11/7/2010 6:50 +Haledon,,OTHER,NJ,11/7/2010 12:30 +Gardner,,SPHERE,MA,11/7/2010 16:00 +Tunica,,LIGHT,MS,11/7/2010 18:30 +Franklinville,,TRIANGLE,NJ,11/7/2010 20:35 +Ashgrove,,,MO,11/7/2010 21:10 +Omaha,,,NE,11/8/2010 6:55 +Huntington Beach,,DISK,CA,11/8/2010 10:44 +Huntingdon,,,PA,11/8/2010 16:00 +Joliet,,SPHERE,IL,11/8/2010 16:45 +Alachua,RED,CROSS,FL,11/8/2010 17:45 +Indianapolis,,DISK,IN,11/8/2010 18:25 +Glendale,,LIGHT,CA,11/8/2010 18:30 +Warrensburg,,RECTANGLE,MO,11/8/2010 18:56 +"Blue Ridge Pkwy, NC",,LIGHT,NC,11/8/2010 19:20 +Asheville,,LIGHT,NC,11/8/2010 19:30 +Fontana,,FIREBALL,CA,11/8/2010 21:30 +Silver Creek,,LIGHT,NE,11/8/2010 21:30 +Palmdale,,DIAMOND,CA,11/8/2010 21:35 +Fond du Lac,,OTHER,WI,11/8/2010 22:30 +Muncie,,LIGHT,IN,11/8/2010 23:30 +Owosso,BLUE,LIGHT,MI,11/8/2010 23:30 +Oxford,,SPHERE,KS,11/9/2010 12:20 +Front Royal,,OVAL,VA,11/9/2010 16:00 +Saginaw,,DISK,MI,11/9/2010 17:00 +Lexington,,,KY,11/9/2010 17:45 +Krum,RED,TRIANGLE,TX,11/9/2010 18:30 +Front Royal,,FIREBALL,VA,11/9/2010 20:00 +Amarillo,ORANGE,CROSS,TX,11/9/2010 20:15 +Damascus,RED,TRIANGLE,VA,11/9/2010 20:30 +Houston,,TRIANGLE,TX,11/9/2010 20:30 +Fort Myers,,LIGHT,FL,11/9/2010 21:00 +Hugo,,RECTANGLE,OK,11/9/2010 21:19 +Navarre,,FIREBALL,FL,11/9/2010 21:25 +Montrose,,OTHER,CA,11/9/2010 21:30 +Boston,GREEN,FLASH,NY,11/10/2010 0:00 +Sussex,,OTHER,NJ,11/10/2010 0:00 +Boston,,VARIOUS,MA,11/10/2010 2:30 +Kahului,RED,OVAL,HI,11/10/2010 4:00 +Atwater,,LIGHT,CA,11/10/2010 9:00 +Atlantic Beach,,DISK,FL,11/10/2010 12:00 +Port Orford,,OVAL,OR,11/10/2010 12:00 +Front Royal,,DISK,VA,11/10/2010 15:00 +Groesbeck,,CIGAR,TX,11/10/2010 16:30 +Pottsville,,OVAL,PA,11/10/2010 16:40 +Verona,,DIAMOND,NY,11/10/2010 17:45 +Crete,ORANGE,FORMATION,IL,11/10/2010 18:00 +Chicago,,FLASH,IL,11/10/2010 18:20 +Montville,,DISK,CT,11/10/2010 19:40 +Spruce Pine,YELLOW,TRIANGLE,NC,11/10/2010 21:00 +Amarillo,,TRIANGLE,TX,11/10/2010 21:40 +Campo Seco,,CONE,CA,11/10/2010 22:00 +New Sharon,,OVAL,ME,11/10/2010 22:00 +Folsom,RED,DISK,CA,11/11/2010 1:00 +Nashville,,EGG,TN,11/11/2010 15:00 +Wallkill,,OTHER,NY,11/11/2010 17:00 +Sacramento,,OTHER,CA,11/11/2010 19:00 +Uncasville,,LIGHT,CT,11/11/2010 19:20 +Chandler,,LIGHT,AZ,11/11/2010 21:30 +Oberlin,,LIGHT,OH,11/11/2010 22:40 +Watertown,RED GREEN,TRIANGLE,CT,11/11/2010 23:15 +Laguna Hills,ORANGE YELLOW,OTHER,CA,11/11/2010 23:30 +Myrtle Beach,,LIGHT,SC,11/11/2010 23:30 +Ithaca,RED BLUE,OTHER,NY,11/12/2010 0:00 +Galloway,,DISK,OH,11/12/2010 0:45 +Galloway,ORANGE,DISK,OH,11/12/2010 0:45 +Downingtown,,LIGHT,PA,11/12/2010 5:30 +Charlotte,RED,,NC,11/12/2010 8:00 +Spokane,,TRIANGLE,WA,11/12/2010 10:48 +Maple Grove,,SPHERE,MN,11/12/2010 15:30 +Albany,,CIGAR,GA,11/12/2010 16:30 +Buckeye,,OTHER,AZ,11/12/2010 17:35 +Cleveland,,CIRCLE,OH,11/12/2010 18:00 +Harrison,,TRIANGLE,ME,11/12/2010 18:30 +Harrison,,TRIANGLE,ME,11/12/2010 18:30 +Harrison,RED,TRIANGLE,ME,11/12/2010 18:30 +San Francisco,,OTHER,CA,11/12/2010 18:30 +North Sanford,ORANGE,CIRCLE,NY,11/12/2010 21:00 +Redbank,RED ORANGE,OTHER,SC,11/12/2010 21:00 +West Covina,,VARIOUS,CA,11/13/2010 7:11 +Decatur,,,IL,11/13/2010 7:45 +Magalia,,FIREBALL,CA,11/13/2010 10:00 +Pottstown,,SPHERE,PA,11/13/2010 12:00 +Highland,,,IN,11/13/2010 12:03 +Keyser,,LIGHT,WV,11/13/2010 17:30 +Pelion,,CIRCLE,SC,11/13/2010 20:30 +Roseville,,OTHER,CA,11/13/2010 20:30 +San Jose,,FIREBALL,CA,11/13/2010 20:45 +Kahului,,FORMATION,HI,11/13/2010 21:00 +Loudon,,LIGHT,TN,11/14/2010 0:30 +Milford,,CYLINDER,CT,11/14/2010 12:15 +Richmond,,,VA,11/14/2010 15:30 +Brimfield,RED,LIGHT,IL,11/14/2010 15:32 +Lovington,,CIRCLE,NM,11/14/2010 18:00 +Trenton,,CROSS,FL,11/14/2010 18:40 +Safety Harbor,,LIGHT,FL,11/14/2010 19:00 +San Pablo,,CIRCLE,CA,11/14/2010 19:33 +Connersville,,FIREBALL,IN,11/14/2010 20:55 +Washingtonville,,,NY,11/14/2010 21:00 +Rathdrum Prairie,,TRIANGLE,ID,11/14/2010 23:00 +Rockford,,TRIANGLE,IL,11/14/2010 23:15 +Milwaukee,,OTHER,WI,11/15/2010 1:00 +Bakersfield,,TRIANGLE,CA,11/15/2010 9:41 +Bellingham,,LIGHT,MA,11/15/2010 9:45 +Sioux Falls,,TRIANGLE,SD,11/15/2010 10:34 +Lakewood,,VARIOUS,WA,11/15/2010 13:05 +San Diego,RED,OVAL,CA,11/15/2010 15:15 +Fishers,,LIGHT,IN,11/15/2010 18:45 +Farmington,,TRIANGLE,CT,11/15/2010 20:20 +Ocala,,LIGHT,FL,11/15/2010 20:42 +Stockton,,LIGHT,CA,11/15/2010 21:30 +Bloomington,,OTHER,IN,11/15/2010 21:45 +Berlin Township,,FIREBALL,MI,11/15/2010 22:00 +Berlin Township,,FIREBALL,MI,11/15/2010 22:00 +Rock Falls,,LIGHT,IL,11/15/2010 23:35 +Hayward,,DISK,CA,11/16/2010 7:30 +Plano,,,TX,11/16/2010 15:05 +Rochester,,TRIANGLE,MI,11/16/2010 17:57 +Athens,ORANGE,LIGHT,GA,11/16/2010 19:00 +Topsail Beach,ORANGE,SPHERE,NC,11/16/2010 20:00 +Middle River,,DISK,MD,11/17/2010 0:24 +Raleigh,,OTHER,NC,11/17/2010 1:32 +Danville,,DIAMOND,VA,11/17/2010 4:00 +Gadsden,ORANGE,SPHERE,AL,11/17/2010 4:30 +Virginia Beach,,SPHERE,VA,11/17/2010 5:32 +San Bernardino,,LIGHT,CA,11/17/2010 7:00 +Lebanon,,TRIANGLE,IN,11/17/2010 7:15 +Great Falls,,TRIANGLE,MT,11/17/2010 11:00 +Clinton Township,,DIAMOND,MI,11/17/2010 17:00 +Bluffton,,TRIANGLE,SC,11/17/2010 17:30 +Alvin,YELLOW,FIREBALL,TX,11/17/2010 17:35 +Moncks Corner,,,SC,11/17/2010 18:15 +Moncks Corner,RED,,SC,11/17/2010 18:15 +Moncks Corner,RED,DISK,SC,11/17/2010 18:15 +Wachapreague,,,VA,11/17/2010 18:15 +Warthen,,CIRCLE,GA,11/17/2010 18:50 +Miami,,LIGHT,FL,11/17/2010 20:15 +Freeport,RED,OTHER,IL,11/17/2010 20:30 +Thomasville,,FIREBALL,NC,11/17/2010 21:30 +Kalamazoo,,LIGHT,MI,11/18/2010 5:30 +Olivehurst,,FORMATION,CA,11/18/2010 17:30 +Topeka,,CYLINDER,KS,11/18/2010 18:15 +Hwy 260,RED,,AZ,11/18/2010 18:45 +Myrtle Beach,YELLOW,CIRCLE,SC,11/18/2010 20:00 +Spokane,,OVAL,WA,11/18/2010 20:20 +Waldorf,,LIGHT,MD,11/18/2010 20:30 +Martinez,,TEARDROP,CA,11/18/2010 22:43 +Oxford,,CIRCLE,AL,11/18/2010 23:00 +Liberty,,CIRCLE,MO,11/19/2010 1:00 +Knoxville,,CIRCLE,TN,11/19/2010 8:30 +Juneau,,FIREBALL,AK,11/19/2010 16:10 +Parker,RED GREEN BLUE,OVAL,CO,11/19/2010 16:15 +Millersville,,,PA,11/19/2010 17:35 +Berlin,,TRIANGLE,MD,11/19/2010 19:00 +Boardman,RED,CIRCLE,OH,11/19/2010 19:00 +Massillon,,TRIANGLE,OH,11/19/2010 20:04 +Missoula,,TRIANGLE,MT,11/19/2010 21:00 +Charlotte,ORANGE,FORMATION,NC,11/19/2010 22:20 +Charlotte,ORANGE YELLOW,CIRCLE,NC,11/19/2010 22:30 +Chandler,,LIGHT,AZ,11/20/2010 2:00 +Wylie,,,TX,11/20/2010 3:00 +Sardis,,SPHERE,MS,11/20/2010 13:00 +Averill Park,,DISK,NY,11/20/2010 17:00 +Ozark,,CIRCLE,MO,11/20/2010 20:00 +Aurora,,,CO,11/20/2010 21:00 +Detroit,,OTHER,MI,11/20/2010 21:00 +Gettysburg,,FIREBALL,PA,11/20/2010 21:00 +Oklahoma City,,LIGHT,OK,11/20/2010 21:00 +Fresno,,LIGHT,CA,11/20/2010 23:00 +Brandenburg,,,KY,11/21/2010 0:00 +Sweeteater,,,TN,11/21/2010 1:00 +Albuquerque,,OTHER,NM,11/21/2010 10:00 +Scottsdale,,DISK,AZ,11/21/2010 11:00 +Sharpsburg,,VARIOUS,GA,11/21/2010 14:34 +Colchester,,,CT,11/21/2010 15:45 +Meridian,,LIGHT,MS,11/21/2010 16:55 +Bailey,,DISK,CO,11/21/2010 17:51 +San Angelo,,OVAL,TX,11/21/2010 18:00 +Warren,,LIGHT,MI,11/21/2010 18:15 +Umatilla,,TRIANGLE,OR,11/21/2010 22:00 +Orland,YELLOW,LIGHT,CA,11/21/2010 22:40 +Chicago,,DIAMOND,IL,11/21/2010 23:00 +Topeka,,FIREBALL,KS,11/22/2010 3:00 +Haleiwa,RED BLUE,DISK,HI,11/22/2010 4:00 +Bullhead City,,TRIANGLE,AZ,11/22/2010 5:00 +Orlando,,CIGAR,FL,11/22/2010 5:00 +High Point,,CIRCLE,NC,11/22/2010 17:25 +Elkton,,DISK,VA,11/22/2010 18:15 +Miami,,LIGHT,FL,11/22/2010 18:20 +West Des Moines,,LIGHT,IA,11/22/2010 19:40 +Northumberland County,,VARIOUS,PA,11/22/2010 21:00 +Santa Fe,ORANGE,SPHERE,NM,11/22/2010 22:00 +Little Rock,,EGG,AR,11/22/2010 23:00 +Auburn,,OTHER,GA,11/22/2010 23:50 +North Babylon,,OTHER,NY,11/23/2010 5:49 +Washougal,,OVAL,WA,11/23/2010 6:00 +Monument Valley,,VARIOUS,UT,11/23/2010 6:30 +Albany,,OTHER,NY,11/23/2010 16:55 +North Bergen,,OTHER,NJ,11/23/2010 18:00 +Rockford,,TRIANGLE,IL,11/23/2010 18:20 +Columbia,,CYLINDER,MD,11/23/2010 19:30 +Gloversville,,FORMATION,NY,11/24/2010 7:04 +Bemidji,,FIREBALL,MN,11/24/2010 20:00 +Jacksonville,,FLASH,TX,11/24/2010 20:00 +Myrtle Beach,,LIGHT,SC,11/24/2010 22:44 +Daleville,,TRIANGLE,VA,11/25/2010 0:17 +San Francisco,,CHEVRON,CA,11/25/2010 20:00 +San Francisco,,DISK,CA,11/25/2010 20:20 +Corpus Christi,,TRIANGLE,TX,11/25/2010 21:00 +Greeneville,,OTHER,TN,11/25/2010 21:00 +Klamath,,LIGHT,CA,11/25/2010 22:00 +Tucson,,TRIANGLE,AZ,11/26/2010 2:00 +Santa Paula,,CIGAR,CA,11/26/2010 4:00 +Guthrie,,OVAL,KY,11/26/2010 5:12 +Marysville,,FIREBALL,OH,11/26/2010 17:30 +Largo,,,FL,11/26/2010 21:00 +Havelock,,DIAMOND,NC,11/26/2010 21:15 +Bridgeton,,LIGHT,MO,11/26/2010 21:26 +Tallulah,RED,FORMATION,LA,11/26/2010 21:30 +Tumacacori,,FORMATION,AZ,11/26/2010 21:30 +West Hills,,CHEVRON,CA,11/27/2010 2:00 +Tuttle,,TEARDROP,OK,11/27/2010 19:25 +Omaha,ORANGE,LIGHT,NE,11/27/2010 19:42 +Houston,GREEN,CIRCLE,TX,11/27/2010 23:00 +Ocean City,,TRIANGLE,MD,11/27/2010 23:30 +Hollandale,,RECTANGLE,MN,11/28/2010 0:01 +Conyers,,OVAL,GA,11/28/2010 0:15 +Sanford,,CIRCLE,FL,11/28/2010 12:30 +Troy,,TRIANGLE,MI,11/28/2010 18:30 +Columbus,,TRIANGLE,OH,11/28/2010 19:00 +Anaheim,ORANGE,TRIANGLE,CA,11/28/2010 22:00 +Monroe,,OTHER,CT,11/28/2010 22:02 +Sacramento,,OVAL,CA,11/28/2010 22:59 +Goodrich,,,MI,11/28/2010 23:30 +Wellington,,CIRCLE,FL,11/29/2010 18:00 +La Puente,,LIGHT,CA,11/29/2010 20:30 +Playa del Rey,,TEARDROP,CA,11/30/2010 0:00 +Sedalia,,TRIANGLE,MO,11/30/2010 0:00 +Menifee,,TRIANGLE,CA,11/30/2010 18:00 +Chandler,,RECTANGLE,AZ,11/30/2010 18:09 +Belton,,OTHER,TX,12/1/2010 3:00 +Huntsville,,OTHER,AL,12/1/2010 8:20 +Carterville,,TRIANGLE,IL,12/1/2010 9:30 +Bakersfield,,OTHER,CA,12/1/2010 17:30 +Stanwood,,OVAL,WA,12/1/2010 19:00 +Melbourne,,CHEVRON,FL,12/1/2010 21:15 +Orinda,,TRIANGLE,CA,12/1/2010 21:30 +The Woodlands,ORANGE,SPHERE,TX,12/1/2010 22:00 +Temple,,OTHER,GA,12/2/2010 3:15 +Albuquerque,RED GREEN,FLASH,NM,12/2/2010 13:32 +Temple,,OTHER,GA,12/2/2010 15:15 +Kansas City,ORANGE,OVAL,KS,12/2/2010 17:30 +Ridgecrest,,DISK,CA,12/2/2010 17:45 +Silver Spring,,OTHER,MD,12/2/2010 18:00 +Twin Mountain,,FIREBALL,NH,12/2/2010 18:15 +Silver Spring,ORANGE,CIRCLE,MD,12/2/2010 19:00 +Del Rio,RED,LIGHT,TX,12/2/2010 21:30 +Uniontown,,TRIANGLE,PA,12/2/2010 21:30 +Medford,,OTHER,NY,12/2/2010 23:22 +Stevenson Ranch,,LIGHT,CA,12/3/2010 4:10 +Wellton,BLUE,SPHERE,AZ,12/3/2010 7:00 +Richardson,,OVAL,TX,12/3/2010 11:45 +Seattle,,OVAL,WA,12/3/2010 13:30 +St. Louis,,OTHER,MO,12/3/2010 17:00 +Ocala,,TEARDROP,FL,12/3/2010 17:20 +Escondido,,LIGHT,CA,12/3/2010 21:00 +Grahm,,CIRCLE,WA,12/3/2010 21:00 +Thousand Oaks,,FIREBALL,CA,12/3/2010 21:30 +Little Rock,,RECTANGLE,AR,12/3/2010 22:30 +Miami,,LIGHT,FL,12/3/2010 23:00 +Cypress,,,TX,12/4/2010 2:10 +Four Oaks,,LIGHT,NC,12/4/2010 5:45 +Inglewood,,LIGHT,CA,12/4/2010 19:30 +Pittsburgh,,,PA,12/4/2010 20:00 +Ward,,TRIANGLE,AR,12/4/2010 20:00 +Marysville,,FIREBALL,WA,12/4/2010 20:21 +Peoria,,,AZ,12/4/2010 21:00 +Somerset,,LIGHT,NJ,12/4/2010 21:00 +Montclair,,OVAL,NJ,12/5/2010 9:20 +Montclair,,,NJ,12/5/2010 9:45 +Vancouver,,TRIANGLE,WA,12/5/2010 19:00 +Streamwood,,TRIANGLE,IL,12/5/2010 20:40 +Huntsvile,BLUE,FORMATION,AL,12/5/2010 21:00 +Milford,,CIRCLE,CT,12/5/2010 23:00 +Sandestin,,,FL,12/6/2010 4:53 +Sandersville,,CIGAR,GA,12/6/2010 8:00 +Los Angeles,,CIGAR,CA,12/6/2010 12:00 +Condon,,LIGHT,MT,12/6/2010 13:00 +Vancouver,,TRIANGLE,WA,12/6/2010 14:30 +Loxahatchee,,RECTANGLE,FL,12/6/2010 15:12 +Battle Creek,,SPHERE,MI,12/6/2010 16:30 +Chino Hills,,LIGHT,CA,12/6/2010 18:00 +Renton,,CIRCLE,WA,12/6/2010 21:01 +Santee,,OVAL,CA,12/7/2010 5:20 +Woodland,,FLASH,WA,12/7/2010 5:50 +E. Bridgewater,,,MA,12/7/2010 6:00 +Portland,,TRIANGLE,OR,12/7/2010 10:40 +Arlington,,FLASH,MA,12/7/2010 17:20 +Monon,ORANGE,FIREBALL,IN,12/7/2010 21:15 +Tacoma,,OTHER,WA,12/7/2010 21:35 +Wrightsville Beach,,LIGHT,NC,12/8/2010 1:00 +Fairfield,RED,CIRCLE,CA,12/8/2010 19:20 +Henderson,,LIGHT,NV,12/8/2010 20:35 +Pine Bush,,LIGHT,NY,12/8/2010 20:35 +Newburgh,,VARIOUS,NY,12/8/2010 21:20 +Gwynn Oak,,TRIANGLE,MD,12/8/2010 21:28 +Werisdale,,VARIOUS,FL,12/9/2010 4:00 +Costa Mesa,,FLASH,CA,12/9/2010 13:13 +San Jose,,OVAL,CA,12/9/2010 16:00 +Dixon,,,CA,12/9/2010 17:45 +Riley,,FIREBALL,OR,12/9/2010 18:00 +Corona,,TRIANGLE,CA,12/9/2010 19:45 +Broomfield,,LIGHT,CO,12/9/2010 20:00 +Ventura,,TEARDROP,CA,12/9/2010 20:00 +Kildare,,OTHER,TX,12/9/2010 20:30 +Leesburg,,OTHER,FL,12/9/2010 21:00 +Charlottesville,,CHEVRON,VA,12/9/2010 22:00 +Newtown,RED,RECTANGLE,CT,12/10/2010 1:30 +Rice Lake,GREEN,CIRCLE,WI,12/10/2010 4:30 +Richmond,,CYLINDER,VA,12/10/2010 4:35 +Richmond,,DISK,VA,12/10/2010 5:45 +Roanoke,,DISK,VA,12/10/2010 6:00 +Nashville,,DISK,TN,12/10/2010 6:30 +Houston,,DISK,TX,12/10/2010 8:20 +Boscobel,RED BLUE,CIRCLE,WI,12/10/2010 10:08 +Lafayette,,DISK,CO,12/10/2010 11:00 +Tulsa,,CIGAR,OK,12/10/2010 12:00 +Rohnert Park,,SPHERE,CA,12/10/2010 14:00 +Clearwater,,FIREBALL,FL,12/10/2010 15:00 +Port Huron,,LIGHT,MI,12/10/2010 18:30 +Honolulu,,FLASH,HI,12/10/2010 20:00 +Mandeville,,CIGAR,LA,12/10/2010 23:00 +Tamiami Trail,,OTHER,FL,12/10/2010 23:00 +Newport,GREEN,SPHERE,NJ,12/11/2010 3:30 +Ft. Pierce,GREEN,FIREBALL,FL,12/11/2010 5:15 +temecula,,CONE,CA,12/11/2010 5:36 +Newark,,OTHER,NJ,12/11/2010 11:00 +Springfield,,TRIANGLE,NH,12/11/2010 19:00 +Jensen Beach,RED,LIGHT,FL,12/11/2010 20:38 +Albuquerque,,OVAL,NM,12/11/2010 21:00 +San Fernando Valley,,SPHERE,CA,12/11/2010 21:00 +Coral Springs,,LIGHT,FL,12/11/2010 22:55 +Pinkham Notch,,FIREBALL,NH,12/11/2010 23:00 +Lake Balboa,,SPHERE,CA,12/12/2010 1:00 +Bradenton,RED,OTHER,FL,12/12/2010 2:30 +Orlando,RED,CIRCLE,FL,12/12/2010 6:15 +Lancaster,,SPHERE,PA,12/12/2010 16:30 +Sugar Hill,,OTHER,GA,12/12/2010 21:30 +Villa Park,,FIREBALL,IL,12/13/2010 0:00 +Vashon,,FLASH,WA,12/13/2010 0:30 +Fruitland,,DISK,NM,12/13/2010 1:16 +Los Angeles,,VARIOUS,CA,12/13/2010 6:45 +Gillette,,FIREBALL,WY,12/13/2010 18:24 +Tucson,,LIGHT,AZ,12/13/2010 19:05 +San Tan Valley,RED ORANGE YELLOW GREEN,SPHERE,AZ,12/13/2010 19:15 +Hixson,,LIGHT,TN,12/13/2010 22:00 +Eufaula,,LIGHT,AL,12/13/2010 23:45 +Hudson,,CONE,FL,12/14/2010 3:15 +Peoria,,LIGHT,AZ,12/14/2010 5:00 +Kalaloch area,,DISK,WA,12/14/2010 15:00 +Troy,ORANGE,SPHERE,NC,12/14/2010 18:45 +Salt Lake City,RED,LIGHT,UT,12/14/2010 20:00 +Addison,,LIGHT,IL,12/14/2010 23:00 +Bailey Island,,FLASH,ME,12/15/2010 0:51 +Emory-Yantis,,LIGHT,TX,12/15/2010 3:00 +Palm Springs,,VARIOUS,CA,12/15/2010 4:45 +New York City,,CIRCLE,NY,12/15/2010 6:30 +Opelousas,,CHEVRON,LA,12/15/2010 22:00 +Kimmell,,,IN,12/15/2010 22:01 +Campbell,,TRIANGLE,CA,12/15/2010 23:00 +Spokane,,CYLINDER,WA,12/15/2010 23:00 +Sparks,,DISK,NV,12/16/2010 11:40 +Anchorage,,CIRCLE,AK,12/16/2010 12:00 +Bend,,LIGHT,OR,12/16/2010 16:00 +San Jose,,OVAL,CA,12/16/2010 16:00 +Draper,,CIRCLE,UT,12/16/2010 18:40 +Coleman,ORANGE,CIRCLE,TX,12/16/2010 19:00 +Airmont,,LIGHT,NY,12/16/2010 19:40 +Eugene,ORANGE,LIGHT,OR,12/16/2010 21:25 +Valencia,,,CA,12/17/2010 1:45 +Rio Rico,,CIRCLE,AZ,12/17/2010 13:00 +Buffalo,,DISK,WY,12/17/2010 18:15 +Allen,,CIRCLE,MI,12/17/2010 21:20 +Bogata,,DISK,TX,12/18/2010 0:00 +Rogers,,,AR,12/18/2010 3:00 +Fords,,LIGHT,NJ,12/18/2010 4:30 +Norfolk,,OVAL,VA,12/18/2010 10:30 +San Francisco,,FIREBALL,CA,12/18/2010 12:05 +Longwood,,LIGHT,FL,12/18/2010 19:30 +Oakland Park,RED ORANGE,DISK,FL,12/18/2010 22:00 +New York City,,LIGHT,NY,12/19/2010 4:27 +Joelton,,LIGHT,TN,12/19/2010 5:20 +North Falmouth,ORANGE,FIREBALL,MA,12/19/2010 5:20 +Venice,,LIGHT,LA,12/19/2010 5:50 +Haulover,,VARIOUS,FL,12/19/2010 15:00 +Kahului,,DISK,HI,12/19/2010 20:18 +Wichita,,OVAL,KS,12/19/2010 20:30 +Wichita,GREEN,OVAL,KS,12/19/2010 20:30 +Independence,,CIRCLE,MO,12/20/2010 4:00 +Kahului,,DISK,HI,12/20/2010 12:00 +Newark,,LIGHT,NJ,12/20/2010 19:00 +Bay Point,ORANGE,OVAL,CA,12/21/2010 0:22 +Exeter,RED GREEN,SPHERE,NE,12/21/2010 2:00 +St. Louis,,VARIOUS,MO,12/21/2010 3:00 +Sedona,,CONE,AZ,12/21/2010 3:13 +Paterson,,OVAL,NJ,12/21/2010 6:30 +Jeffersonville,,OVAL,PA,12/21/2010 19:10 +Erwinna,,LIGHT,PA,12/21/2010 21:00 +Wilmington,,DISK,DE,12/22/2010 0:00 +Houston,,VARIOUS,TX,12/22/2010 10:37 +Marion,,SPHERE,IN,12/22/2010 19:20 +McComb,,CYLINDER,MS,12/23/2010 0:00 +Manteno,BLUE,EGG,IL,12/23/2010 19:30 +Castro Valley,,DISK,CA,12/23/2010 20:25 +Manteno,BLUE,EGG,IL,12/23/2010 20:30 +Peotone,BLUE,EGG,IL,12/23/2010 20:40 +Downingtong,RED,OTHER,PA,12/23/2010 21:00 +Monee,RED,EGG,IL,12/23/2010 21:00 +Willmington,RED,EGG,IL,12/23/2010 21:00 +Peotone,BLUE,EGG,IL,12/23/2010 22:00 +Mesa,,VARIOUS,AZ,12/24/2010 0:00 +Red Lodge,RED,CYLINDER,MT,12/24/2010 9:00 +Morris-Okmulgee,,FIREBALL,OK,12/24/2010 18:00 +Chelsea,,TRIANGLE,MA,12/24/2010 19:00 +Gainesville,ORANGE,CIRCLE,VA,12/24/2010 19:30 +Reno,,LIGHT,NV,12/24/2010 19:30 +Cherry Fork,RED,LIGHT,OH,12/24/2010 20:00 +Columbia,,LIGHT,PA,12/24/2010 20:00 +Canton,,LIGHT,MI,12/24/2010 20:30 +Colonie,RED BLUE,,NY,12/24/2010 20:33 +Delray beach,ORANGE,LIGHT,FL,12/24/2010 21:00 +Center Valley,,FIREBALL,PA,12/24/2010 21:30 +Rolla,,SPHERE,MO,12/24/2010 21:30 +Baton Rouge,,OVAL,LA,12/24/2010 22:00 +Lynn,,LIGHT,MA,12/24/2010 22:00 +Las Vegas,,DIAMOND,NV,12/24/2010 22:30 +Lynn,ORANGE,,MA,12/25/2010 12:01 +Rockport,BLUE,,MA,12/25/2010 17:35 +Edmonds,ORANGE,SPHERE,WA,12/25/2010 19:00 +Edmonds,,LIGHT,WA,12/25/2010 19:40 +Southampton,RED,LIGHT,NY,12/25/2010 22:00 +Fort Lauderdale,,OTHER,FL,12/26/2010 0:05 +Oakland,,FIREBALL,CA,12/26/2010 4:45 +Mohawk,,CYLINDER,AZ,12/26/2010 16:45 +Fresno,BLUE,SPHERE,CA,12/26/2010 17:02 +Reno,,CIRCLE,NV,12/26/2010 17:08 +Anaheim,,TRIANGLE,CA,12/26/2010 22:54 +Los Angeles,YELLOW GREEN,OTHER,CA,12/27/2010 14:00 +Alabaster,,CIRCLE,AL,12/27/2010 17:00 +West Covina,,SPHERE,CA,12/27/2010 18:15 +Fremont,GREEN,TRIANGLE,CA,12/27/2010 20:00 +Glenview,,FIREBALL,IL,12/27/2010 21:20 +Tucson,ORANGE,OTHER,AZ,12/27/2010 22:30 +Palm Beach,,SPHERE,MA,12/28/2010 13:00 +Fremont,,TRIANGLE,NH,12/28/2010 17:31 +Norwalk,,FIREBALL,CT,12/28/2010 18:50 +Skidmore,,LIGHT,MD,12/28/2010 18:50 +Columbia,,CIRCLE,PA,12/28/2010 18:55 +Colusa,,LIGHT,CA,12/28/2010 20:38 +Westboro,,OTHER,MA,12/28/2010 23:40 +Chippewa Falls,YELLOW,OVAL,WI,12/29/2010 1:30 +Redding,RED,OTHER,CA,12/29/2010 1:45 +Galveston,,VARIOUS,TX,12/29/2010 2:28 +Seattle,,LIGHT,WA,12/29/2010 7:40 +Elmhurst,,SPHERE,IL,12/29/2010 18:00 +Wenatchee,,LIGHT,WA,12/29/2010 19:00 +Belle Vernon,,CIRCLE,PA,12/29/2010 20:19 +Catharpin,,DIAMOND,VA,12/29/2010 20:30 +Wagram,RED YELLOW BLUE,TRIANGLE,NC,12/29/2010 21:00 +Weston,,CIRCLE,FL,12/29/2010 21:30 +Poulsbo,,OVAL,WA,12/29/2010 21:45 +Tucson,,LIGHT,AZ,12/29/2010 22:30 +Napa,,CIRCLE,CA,12/30/2010 6:30 +Atlanta,,OVAL,GA,12/30/2010 17:30 +Odon,,LIGHT,IN,12/30/2010 19:00 +Cayucos,,OVAL,CA,12/30/2010 19:29 +Bluffton,,LIGHT,SC,12/30/2010 19:30 +Apex,,OTHER,NC,12/30/2010 23:00 +Arlington,RED,FORMATION,WA,12/31/2010 0:00 +Auburn,ORANGE,TRIANGLE,WA,12/31/2010 0:57 +Honolulu,,LIGHT,HI,12/31/2010 4:00 +Richmond,,SPHERE,VA,12/31/2010 4:30 +Carmel,,LIGHT,CA,12/31/2010 6:10 +Eugene,,OVAL,OR,12/31/2010 7:00 +Seattle,,CIRCLE,WA,12/31/2010 16:26 +Leominster,,LIGHT,MA,12/31/2010 19:00 +Boca Raton,,FLASH,FL,12/31/2010 19:40 +Anchorage,ORANGE,LIGHT,AK,12/31/2010 20:10 +Alpine,,FLASH,UT,12/31/2010 21:00 +Temecula,ORANGE,FIREBALL,CA,12/31/2010 21:00 +Wasilla,RED,SPHERE,AK,12/31/2010 21:00 +Asheville,,OTHER,NC,12/31/2010 21:05 +Long Beach,,LIGHT,CA,12/31/2010 21:14 +Poipu Koloa,,LIGHT,HI,12/31/2010 21:30 +Fort Worth,ORANGE,FIREBALL,TX,12/31/2010 21:47 +Kennewick,ORANGE,CIRCLE,WA,12/31/2010 22:45 +Leavenworth,,LIGHT,WA,12/31/2010 23:00 +Lewisburg,,FIREBALL,PA,12/31/2010 23:00 +Roswell,,CYLINDER,GA,12/31/2010 23:25 +Salt Lake City,,TRIANGLE,UT,12/31/2010 23:30 +Fairfax,,LIGHT,PA,12/31/2010 23:43 +Jacksonville,ORANGE,CIRCLE,FL,12/31/2010 23:45 +Miami,,CIRCLE,FL,12/31/2010 23:45 +Montgomery,RED,FIREBALL,PA,12/31/2010 23:50 +Floresville,ORANGE,,TX,12/31/2010 23:59 +Austin,,FIREBALL,TX,1/1/2011 0:00 +Clarksburg,ORANGE,OVAL,WV,1/1/2011 0:00 +Farmington Hills,RED,CIRCLE,MI,1/1/2011 0:00 +Joppatowne,RED,FIREBALL,MD,1/1/2011 0:00 +Lincoln City,,LIGHT,OR,1/1/2011 0:00 +Seminole,,LIGHT,FL,1/1/2011 0:01 +Sierra Vita,,CIRCLE,AZ,1/1/2011 0:02 +Woodbridge,,LIGHT,VA,1/1/2011 0:02 +Redlands,,SPHERE,CA,1/1/2011 0:05 +Reynoldsburg,,CIRCLE,OH,1/1/2011 0:07 +Salt Lake City,ORANGE,FIREBALL,UT,1/1/2011 0:07 +Guffey,,FIREBALL,CO,1/1/2011 0:10 +Bradenton,,TRIANGLE,FL,1/1/2011 0:11 +Oak Lawn,,FIREBALL,IL,1/1/2011 0:13 +Katy,ORANGE,SPHERE,TX,1/1/2011 0:15 +Milmont Park,,TRIANGLE,PA,1/1/2011 0:15 +Manhattan,,FIREBALL,IL,1/1/2011 0:30 +Orlando,,CIRCLE,FL,1/1/2011 0:30 +Welches,ORANGE,SPHERE,OR,1/1/2011 0:30 +Seminole,RED,FORMATION,FL,1/1/2011 0:35 +Miami,,,FL,1/1/2011 0:38 +Salt Lake CIty,,FORMATION,UT,1/1/2011 0:55 +Clermont,,CIRCLE,FL,1/1/2011 1:00 +Miami,,OTHER,FL,1/1/2011 1:00 +Thayer,RED,LIGHT,MO,1/1/2011 1:00 +League City,,LIGHT,TX,1/1/2011 5:15 +Murrieta,,TRIANGLE,CA,1/1/2011 7:25 +Orlando,,RECTANGLE,FL,1/1/2011 9:30 +Yuma,,OVAL,AZ,1/1/2011 14:00 +Jackson,,CYLINDER,TN,1/1/2011 17:00 +Royce City,,OVAL,TX,1/1/2011 17:00 +Wichita,,CYLINDER,KS,1/1/2011 17:00 +Humphrey,,OTHER,NE,1/1/2011 20:00 +Friendswood,ORANGE YELLOW,SPHERE,TX,1/1/2011 20:45 +Sarasota,,,FL,1/1/2011 22:00 +Doylestown,,FIREBALL,PA,1/1/2011 22:27 +Doylestown,,LIGHT,PA,1/1/2011 22:30 +Moreno Valley,,DISK,CA,1/2/2011 3:32 +Seminole,,TEARDROP,AL,1/2/2011 5:30 +North Canton,,OTHER,OH,1/2/2011 18:00 +Homestead,,,FL,1/2/2011 18:40 +Phoenix,RED,DIAMOND,AZ,1/2/2011 19:12 +Arlington,,TRIANGLE,WI,1/2/2011 21:33 +Crescent City,ORANGE,SPHERE,CA,1/2/2011 22:30 +Adrian,,CIRCLE,PA,1/2/2011 23:30 +Checotah,,DIAMOND,OK,1/3/2011 1:00 +Renton,,FLASH,WA,1/3/2011 5:15 +Selden,,LIGHT,NY,1/3/2011 5:30 +Fairless Hills,GREEN,,PA,1/3/2011 16:40 +Roosevelt,,DISK,UT,1/3/2011 17:10 +Katy,,OTHER,TX,1/3/2011 18:30 +Gainesville,,TRIANGLE,FL,1/3/2011 19:30 +Wakefield,,DISK,RI,1/3/2011 21:40 +Hoquiam,,LIGHT,WA,1/3/2011 22:00 +Savoonga,,LIGHT,AK,1/3/2011 22:30 +National City,,FIREBALL,CA,1/3/2011 22:40 +Sand Springs,,CIRCLE,OK,1/4/2011 0:30 +Lebanon,,OTHER,MO,1/4/2011 2:00 +Vincennes,,TRIANGLE,IN,1/4/2011 2:50 +Southbridge,,LIGHT,MA,1/4/2011 5:30 +Chesapeake Bay,,OTHER,MD,1/4/2011 15:30 +Woodward,,FIREBALL,IA,1/4/2011 17:15 +Holts Summit,,DISK,MO,1/4/2011 18:58 +Topeka,,OVAL,KS,1/4/2011 19:00 +Moultrie,,DISK,GA,1/4/2011 19:40 +Powers Lake,,FIREBALL,WI,1/4/2011 20:05 +Pangburn,,OTHER,AR,1/4/2011 20:10 +Harrodsburg,,TRIANGLE,KY,1/4/2011 20:17 +Winchester,,SPHERE,CA,1/4/2011 21:45 +Felton,,TRIANGLE,DE,1/4/2011 22:25 +North Highlands,RED,SPHERE,CA,1/5/2011 1:30 +Guymon,RED,CIRCLE,OK,1/5/2011 3:25 +San Francisco,,TRIANGLE,CA,1/5/2011 6:00 +Corpus Christi,,LIGHT,TX,1/5/2011 19:15 +Richmond,,LIGHT,KY,1/5/2011 19:30 +North Pole,,TRIANGLE,AK,1/5/2011 20:00 +Penn Yan,,FLASH,NY,1/6/2011 3:30 +Edinburg,,FIREBALL,PA,1/6/2011 5:27 +Dayton,,OTHER,VA,1/6/2011 6:43 +Broken Arrow,,CYLINDER,OK,1/6/2011 15:00 +Eugene,,TRIANGLE,OR,1/6/2011 18:30 +Warrenton,,CHEVRON,NC,1/6/2011 18:30 +Dayton,,,VA,1/6/2011 18:43 +Iowa City,RED,TRIANGLE,IA,1/6/2011 19:00 +Wildomar,,FIREBALL,CA,1/6/2011 19:15 +Wildomar,,FIREBALL,CA,1/6/2011 19:20 +Wildomar,,FIREBALL,CA,1/6/2011 19:25 +Murrieta,,TRIANGLE,CA,1/6/2011 19:30 +Wildomar,,FIREBALL,CA,1/6/2011 19:30 +Fred,ORANGE,,TX,1/6/2011 20:30 +Murrieta,YELLOW,TRIANGLE,CA,1/6/2011 20:30 +Menifee,,FIREBALL,CA,1/6/2011 21:35 +Murrieta,,FIREBALL,CA,1/6/2011 21:35 +Lake Elsinore,,DISK,CA,1/6/2011 21:40 +Murrieta,,FIREBALL,CA,1/6/2011 21:40 +Temecula,,FIREBALL,CA,1/6/2011 21:45 +Greer,ORANGE,FIREBALL,SC,1/7/2011 1:00 +Bremen,RED GREEN,OTHER,GA,1/7/2011 5:00 +Vista,,EGG,CA,1/7/2011 7:30 +Cape Coral,RED,LIGHT,FL,1/7/2011 20:00 +Rosenberg,,OTHER,TX,1/7/2011 20:30 +Edinburg,ORANGE,OVAL,TX,1/8/2011 1:05 +Glenns Ferry,,LIGHT,ID,1/8/2011 3:00 +Cape Coral,RED GREEN,CONE,FL,1/8/2011 4:00 +Port Orange,ORANGE,OVAL,FL,1/8/2011 7:08 +Juneau,,LIGHT,AK,1/8/2011 17:20 +Cape Coral,RED GREEN,VARIOUS,FL,1/8/2011 20:00 +Nottingham,,FORMATION,MD,1/8/2011 21:00 +Highlands,,FIREBALL,NC,1/8/2011 23:45 +Terrebonne,,CIRCLE,OR,1/9/2011 5:30 +Wilson,,CIRCLE,NC,1/9/2011 11:40 +Mount Vernon,,FLASH,WA,1/9/2011 19:00 +Brentwood,,LIGHT,CA,1/9/2011 19:10 +Little Rock,,CIRCLE,AR,1/9/2011 23:45 +O'Neals,,LIGHT,CA,1/10/2011 5:30 +Kinsman,,RECTANGLE,IL,1/10/2011 7:00 +Salem,,TRIANGLE,OR,1/10/2011 7:00 +Mira Mesa,,CYLINDER,CA,1/10/2011 9:45 +Erie,RED,CIGAR,PA,1/10/2011 17:45 +Madison,,OVAL,WI,1/10/2011 18:35 +Burgaw,,CYLINDER,NC,1/10/2011 19:30 +Port Clinton,,TRIANGLE,OH,1/10/2011 21:30 +Waxhaw,GREEN,,NC,1/11/2011 0:00 +Garden Grove,,,CA,1/11/2011 0:20 +Downingtown,,FIREBALL,PA,1/11/2011 5:19 +Delray Beach,ORANGE,TRIANGLE,FL,1/11/2011 6:03 +College Park,,OTHER,GA,1/11/2011 7:00 +Buffalo area,,,NY,1/11/2011 18:30 +Buffalo area,,,NY,1/11/2011 18:45 +Springfield,,TRIANGLE,VT,1/11/2011 19:45 +Brandon,BLUE,FLASH,MS,1/11/2011 20:40 +Pearl,,LIGHT,MS,1/11/2011 21:00 +Vicksburg,,FIREBALL,MS,1/11/2011 21:15 +Centre Hall,,VARIOUS,PA,1/11/2011 23:43 +Diamond Bar to Riverside,,TRIANGLE,CA,1/12/2011 0:00 +Tacoma,GREEN,CIRCLE,WA,1/12/2011 0:00 +Winter Springs,,RECTANGLE,FL,1/12/2011 3:33 +Crow Agency,,LIGHT,MT,1/12/2011 7:35 +San Jose,,FIREBALL,CA,1/12/2011 8:52 +Smithfield,RED,SPHERE,VA,1/12/2011 14:30 +Onamia,,FLASH,MN,1/12/2011 18:40 +Hutchinson,,LIGHT,MN,1/12/2011 19:35 +Cleveland,,FLASH,OH,1/12/2011 21:10 +Mobile,,FLASH,AL,1/12/2011 23:00 +Grosse Pointe Park,ORANGE,OTHER,MI,1/12/2011 23:25 +Hampstead,,CIRCLE,NH,1/13/2011 7:30 +Ocean,RED GREEN,FLASH,NJ,1/13/2011 19:00 +Jonesboro,,SPHERE,AR,1/13/2011 19:30 +Basye,,DIAMOND,VA,1/13/2011 20:05 +Ogden,,LIGHT,UT,1/13/2011 21:10 +Krum,,DISK,TX,1/13/2011 22:45 +Pewaukee,,,WI,1/14/2011 0:24 +Knoxville,BLUE,SPHERE,TN,1/14/2011 1:30 +Acworth,,RECTANGLE,GA,1/14/2011 3:30 +Holts Summit,,DISK,MO,1/14/2011 18:00 +Sarasota,,TRIANGLE,FL,1/14/2011 18:00 +Deerfield Beach,RED ORANGE,OVAL,FL,1/14/2011 21:00 +Davis,,TRIANGLE,CA,1/14/2011 22:00 +Peoria,,FLASH,AZ,1/14/2011 22:05 +South Bend,,SPHERE,WA,1/14/2011 23:00 +Scottsdale,GREEN,CIRCLE,AZ,1/15/2011 0:00 +Cincinnati,,CONE,OH,1/15/2011 1:00 +Shoshone,,LIGHT,ID,1/15/2011 1:30 +Plaquemine,,CIRCLE,LA,1/15/2011 4:45 +Valley Village,,TRIANGLE,CA,1/15/2011 14:48 +Burbank,,DISK,CA,1/15/2011 16:45 +Watson,,TRIANGLE,LA,1/15/2011 20:00 +Gilbert,ORANGE,CIRCLE,AZ,1/15/2011 20:49 +no data,,FIREBALL,WI,1/15/2011 21:30 +Northfield Falls,,FIREBALL,VT,1/15/2011 22:40 +Burnsville,,OVAL,MN,1/15/2011 22:43 +Darien,ORANGE,LIGHT,IL,1/15/2011 23:30 +Roswell,,EGG,NM,1/16/2011 14:30 +Dealth Valley,,LIGHT,CA,1/16/2011 17:30 +Schaumburg,,RECTANGLE,IL,1/16/2011 17:47 +Ft. Oglethorpe,,FORMATION,GA,1/16/2011 19:00 +Summertown,RED,LIGHT,TN,1/16/2011 19:00 +Ridgefield,,LIGHT,CT,1/16/2011 19:10 +Bothell,,OVAL,WA,1/16/2011 19:50 +Gaithersburg,,CIRCLE,MD,1/16/2011 20:12 +Pawtucket,ORANGE,CIRCLE,RI,1/16/2011 21:00 +New York,ORANGE,TRIANGLE,NY,1/16/2011 22:10 +New York,ORANGE,LIGHT,NY,1/16/2011 22:12 +South San Francisco,,LIGHT,CA,1/16/2011 23:00 +Coeur d'Alene,,CIRCLE,ID,1/17/2011 18:32 +West Milford,ORANGE,FIREBALL,NJ,1/17/2011 19:55 +Casper,,SPHERE,WY,1/17/2011 20:00 +Tempe,,,AZ,1/17/2011 22:00 +Hendersonville,,TRIANGLE,TN,1/17/2011 22:45 +Hendersonville,,SPHERE,NC,1/18/2011 1:00 +Seattle,,DISK,WA,1/18/2011 5:45 +American Canyon,,VARIOUS,CA,1/18/2011 10:36 +Glendale,,LIGHT,AZ,1/18/2011 19:30 +Lehi,RED,LIGHT,UT,1/18/2011 21:45 +Ione,,FIREBALL,WA,1/18/2011 22:07 +Ferndale,,TRIANGLE,WA,1/18/2011 22:30 +Navarre,,OVAL,OH,1/18/2011 23:30 +Tampa,,TRIANGLE,FL,1/19/2011 2:00 +Citrus Heights,RED,TRIANGLE,CA,1/19/2011 14:50 +Kingsford Hieghts,,OTHER,IN,1/19/2011 19:58 +District Heights,,FLASH,MD,1/19/2011 20:00 +Fayetteville,,OVAL,NC,1/19/2011 20:00 +Ocean Springs,,CIRCLE,MS,1/19/2011 20:00 +Queen Creek,,SPHERE,AZ,1/19/2011 20:15 +Siler City,,FIREBALL,NC,1/19/2011 20:45 +Alma,,SPHERE,MI,1/19/2011 20:50 +Lansing,GREEN,FIREBALL,MI,1/19/2011 21:00 +New Orleans,,LIGHT,LA,1/20/2011 0:02 +La Crosse,,CIGAR,WI,1/20/2011 7:00 +Scottsdale,RED,LIGHT,AZ,1/20/2011 7:00 +Sanford,GREEN,FLASH,MI,1/20/2011 9:00 +Colorado Springs,,LIGHT,CO,1/20/2011 20:33 +Church Hill,RED GREEN,CIRCLE,TN,1/21/2011 3:58 +Harvard,,OTHER,IL,1/21/2011 6:00 +Midland,ORANGE,FORMATION,TX,1/21/2011 10:50 +Warwick,,LIGHT,RI,1/21/2011 17:11 +North Eastham,RED GREEN,FIREBALL,MA,1/21/2011 17:15 +Sutton,,TRIANGLE,MA,1/21/2011 17:15 +Napa,ORANGE,TRIANGLE,CA,1/21/2011 18:45 +White Mills,,TRIANGLE,KY,1/22/2011 0:00 +Eastsound,,FLASH,WA,1/22/2011 1:00 +Columbus,,TEARDROP,GA,1/22/2011 6:30 +Philadelphia,,LIGHT,PA,1/22/2011 9:00 +Bel Air,,LIGHT,MD,1/22/2011 12:40 +Cypress,,TRIANGLE,TX,1/22/2011 18:30 +Tallmadge,,CIGAR,OH,1/22/2011 18:45 +Cypress,,FORMATION,TX,1/22/2011 19:15 +North Coventry,,LIGHT,PA,1/22/2011 20:20 +Gray Court,,OVAL,SC,1/22/2011 20:35 +Haymarket,RED,DISK,VA,1/22/2011 20:40 +Rochester,,,MN,1/22/2011 21:35 +Sedona,,CONE,AZ,1/23/2011 3:11 +Tehachapi,,LIGHT,CA,1/23/2011 4:30 +Simi Valley,,LIGHT,CA,1/23/2011 17:00 +Peoria,,FORMATION,AZ,1/24/2011 0:00 +Buxton,,OTHER,ME,1/24/2011 0:30 +Merrill,,OVAL,WI,1/24/2011 1:10 +Dallas,,TEARDROP,TX,1/24/2011 6:00 +Arvada,,OTHER,CO,1/24/2011 6:12 +El Dorado,,LIGHT,KS,1/24/2011 6:45 +Houston,,RECTANGLE,TX,1/24/2011 15:50 +Lancaster,,,CA,1/24/2011 17:30 +Dallas,,FLASH,TX,1/24/2011 20:00 +San Ramon,,LIGHT,CA,1/25/2011 17:00 +Broomfield,,FORMATION,CO,1/25/2011 17:15 +Riverside,,TRIANGLE,CA,1/25/2011 19:11 +South Kingstown,,,RI,1/25/2011 19:20 +Prescott Valley,YELLOW,FORMATION,AZ,1/25/2011 21:00 +Gila Bend,YELLOW,FORMATION,AZ,1/26/2011 0:30 +New York City,,FIREBALL,NY,1/26/2011 3:00 +Lehi,RED,FORMATION,UT,1/26/2011 19:05 +American Fork,RED,LIGHT,UT,1/26/2011 19:15 +American Fork,,LIGHT,UT,1/26/2011 19:17 +San Francisco,ORANGE,FIREBALL,CA,1/26/2011 22:15 +Lanham,,DISK,MD,1/27/2011 0:00 +El Cajon,RED,,CA,1/27/2011 1:00 +Pensacola,RED,TRIANGLE,FL,1/27/2011 2:38 +Watsonville,,DISK,CA,1/27/2011 9:55 +Homosassa,YELLOW,LIGHT,FL,1/27/2011 18:30 +Los Angeles,,LIGHT,CA,1/27/2011 19:00 +Bald Knob,RED,CIRCLE,AR,1/27/2011 19:45 +Miami,GREEN,FLASH,FL,1/27/2011 21:21 +Corvallis,ORANGE,FIREBALL,OR,1/27/2011 22:05 +Bay Harbor,,TRIANGLE,MI,1/28/2011 1:00 +Brewster,,OTHER,MA,1/28/2011 18:17 +Encinitas,,TRIANGLE,CA,1/28/2011 20:45 +Harvest,,,AL,1/28/2011 21:35 +Lynnwood,,,WA,1/28/2011 22:16 +Gainesville,,,GA,1/28/2011 22:30 +Galesburg,,TRIANGLE,MI,1/28/2011 22:30 +Parkville,,LIGHT,MD,1/29/2011 2:00 +Scranton,,LIGHT,SC,1/29/2011 2:00 +Doral,,,FL,1/29/2011 17:42 +McGill,GREEN,OVAL,NV,1/29/2011 18:00 +Mansfield,,,TX,1/29/2011 19:00 +Louisburg,,OVAL,NC,1/29/2011 19:30 +Plainville,,FIREBALL,CT,1/29/2011 20:30 +Dayton,GREEN,CIRCLE,ME,1/29/2011 20:31 +Shelburne Falls,,CIRCLE,MA,1/29/2011 21:45 +Ashburnham,,,MA,1/29/2011 21:50 +Chino,,TRIANGLE,CA,1/29/2011 23:30 +Geneseo,,LIGHT,IL,1/30/2011 18:30 +Stamford,GREEN,FLASH,CT,1/30/2011 22:00 +Grey's Point in Topping,,FIREBALL,VA,1/30/2011 23:45 +Downingtown,RED,CIRCLE,PA,1/31/2011 0:00 +Atlantic Beach,RED ORANGE,TRIANGLE,FL,1/31/2011 19:00 +Sacramento,,,CA,1/31/2011 20:00 +Dunedin,RED,SPHERE,FL,1/31/2011 21:00 +Jacksonville,GREEN,FIREBALL,FL,1/31/2011 21:45 +Hampton,ORANGE,LIGHT,TN,1/31/2011 23:40 +Lake Havasu City,BLUE,SPHERE,AZ,2/1/2011 9:00 +Bay Point Park,,OTHER,FL,2/1/2011 17:30 +Nashville,BLUE,OVAL,TN,2/1/2011 18:00 +Tucson,,OTHER,AZ,2/1/2011 19:00 +Vancouver,,FORMATION,WA,2/1/2011 19:30 +Greenbank,,LIGHT,WA,2/1/2011 20:00 +Redding,RED BLUE,VARIOUS,CA,2/2/2011 0:15 +New Mexico,GREEN,CIRCLE,NM,2/2/2011 16:40 +Janesville,,FLASH,WI,2/2/2011 18:20 +Charlotte Hall,,LIGHT,MD,2/2/2011 20:00 +Medina,,LIGHT,WA,2/2/2011 20:30 +Seattle,ORANGE,LIGHT,WA,2/2/2011 21:00 +Seattle,ORANGE,FIREBALL,WA,2/2/2011 21:30 +West Palm beach,,LIGHT,FL,2/2/2011 23:00 +Lehigh,BLUE,TRIANGLE,FL,2/3/2011 7:00 +Rochester,,,NY,2/3/2011 8:00 +Groton,,LIGHT,CT,2/3/2011 17:40 +Aliso Viejo,ORANGE,LIGHT,CA,2/3/2011 19:12 +Tonapah,,,NV,2/3/2011 20:00 +Gilbert,RED,DISK,AZ,2/3/2011 20:40 +Durham,,LIGHT,NC,2/3/2011 22:00 +Galveston,,LIGHT,TX,2/3/2011 22:30 +Pittsburg,,CIGAR,PA,2/3/2011 23:00 +Marathon,,CHEVRON,NY,2/4/2011 19:00 +Waterbury,,RECTANGLE,VT,2/4/2011 20:30 +Libertyville,GREEN,CIRCLE,IL,2/4/2011 20:55 +Ferrisburgh,,LIGHT,VT,2/4/2011 21:00 +Porter,GREEN,TRIANGLE,TX,2/4/2011 22:00 +Groton,ORANGE BLUE,LIGHT,CT,2/5/2011 1:00 +Ewan,,DIAMOND,WA,2/5/2011 8:30 +Gallatin,,OVAL,TN,2/5/2011 11:00 +Salt Lake City,,OTHER,UT,2/5/2011 11:45 +San Diego,,SPHERE,CA,2/5/2011 17:00 +Roseville,,CIRCLE,CA,2/5/2011 17:30 +Indio,,DISK,CA,2/5/2011 17:35 +Pomona,,OVAL,CA,2/5/2011 17:41 +Holts Summit,,DISK,MO,2/5/2011 17:45 +Latham,,OVAL,NY,2/5/2011 18:00 +Raleigh,,TRIANGLE,NC,2/5/2011 18:50 +Huntington Beach,,FIREBALL,CA,2/5/2011 20:00 +McMinnville,,CIRCLE,OR,2/5/2011 20:00 +North Salt Lake,RED,LIGHT,UT,2/5/2011 20:30 +Conway,,TRIANGLE,AR,2/5/2011 21:00 +Fayetteville,,LIGHT,NC,2/5/2011 21:50 +Oxford,,TRIANGLE,OH,2/5/2011 22:45 +Seaside,,FIREBALL,CA,2/6/2011 0:08 +Fair Oaks,,,CA,2/6/2011 1:00 +Whittier,,OVAL,CA,2/6/2011 4:25 +Fitchburg,,DIAMOND,MA,2/6/2011 6:30 +Center Conway,,OTHER,NH,2/6/2011 13:30 +Capitola,,TRIANGLE,CA,2/6/2011 19:15 +Miami,,LIGHT,FL,2/6/2011 19:20 +Orange County,,CIRCLE,CA,2/6/2011 19:30 +Modesto,RED,RECTANGLE,CA,2/6/2011 20:00 +Piranguinho,,FLASH,MN,2/7/2011 3:00 +Tacoma,,LIGHT,WA,2/7/2011 16:30 +Tacoma,,SPHERE,WA,2/7/2011 16:32 +Redondo Beach,,CHEVRON,CA,2/7/2011 18:00 +Corpus Christi,,LIGHT,TX,2/7/2011 19:04 +Oak Park,RED GREEN,,CA,2/7/2011 19:30 +Oak Park,,OTHER,CA,2/7/2011 19:30 +Tulsa,,TRIANGLE,OK,2/8/2011 1:00 +Fair Grove,,CIGAR,MO,2/8/2011 7:30 +Dunwoody,,CIGAR,GA,2/8/2011 15:00 +River Forest,,OVAL,IL,2/8/2011 17:50 +Rancho Cordova,,FORMATION,CA,2/8/2011 18:00 +Brockton,,LIGHT,MA,2/8/2011 19:15 +Prescott Valley,ORANGE,CIRCLE,AZ,2/8/2011 21:00 +Wilton Manors,,CIRCLE,FL,2/8/2011 21:00 +Laurinburg,,,NC,2/9/2011 0:00 +Carol Stream,,,IL,2/9/2011 1:20 +Lake Forest,,CIRCLE,CA,2/9/2011 12:15 +Troy,YELLOW,FIREBALL,IL,2/9/2011 19:10 +Lenox,,TRIANGLE,MA,2/9/2011 20:00 +Moab,RED,LIGHT,UT,2/9/2011 21:30 +Yakima,,,WA,2/10/2011 5:55 +North Caldwell,,TRIANGLE,NJ,2/10/2011 6:00 +Rochester,,EGG,MN,2/10/2011 7:28 +Grosse Pointe Woods,,CIRCLE,MI,2/10/2011 13:50 +Round Rock,,OVAL,TX,2/10/2011 14:40 +Fresno,,LIGHT,CA,2/10/2011 16:40 +Lansdale,,TRIANGLE,PA,2/10/2011 19:00 +Nashville,,SPHERE,TN,2/10/2011 20:00 +London,,,OH,2/10/2011 20:30 +Ruidoso,,LIGHT,NM,2/10/2011 21:00 +Pedro,RED BLUE,FORMATION,OH,2/10/2011 21:30 +Jacksonville Beach,RED,SPHERE,FL,2/10/2011 22:00 +Bakersfield,,CYLINDER,CA,2/10/2011 22:15 +Laguna Beach,,OTHER,CA,2/10/2011 23:00 +Clearwater,,OTHER,FL,2/11/2011 2:00 +Fairbanks,,,AK,2/11/2011 8:00 +Jacksonville,,,NC,2/11/2011 10:30 +Sacramento,,SPHERE,CA,2/11/2011 11:30 +Round Rock,,SPHERE,TX,2/11/2011 13:25 +Lakewood,,CIRCLE,CA,2/11/2011 13:43 +San Diego,,SPHERE,CA,2/11/2011 14:00 +Brea,,LIGHT,CA,2/11/2011 15:00 +Boilgee,,LIGHT,AL,2/11/2011 18:40 +Litchfield Park,RED ORANGE,CIRCLE,AZ,2/11/2011 19:00 +Oswego,,LIGHT,IL,2/11/2011 19:00 +Elkton,,VARIOUS,KY,2/11/2011 19:14 +Midland,,SPHERE,TX,2/11/2011 19:15 +Cape May,RED BLUE,LIGHT,NJ,2/12/2011 1:55 +Jackson,,LIGHT,MI,2/12/2011 5:30 +Niagara Falls,,SPHERE,NY,2/12/2011 5:30 +Calumet,,EGG,OK,2/12/2011 6:00 +Salt Lake City,,FORMATION,UT,2/12/2011 9:00 +Palos Verdes,,,CA,2/12/2011 17:00 +Carlsbad,,FLASH,CA,2/12/2011 22:00 +Clovis,,FLASH,CA,2/12/2011 22:00 +Maryland Heights,,,MO,2/13/2011 15:36 +Jacksonville,,TRIANGLE,MD,2/13/2011 16:35 +Quincy,,TRIANGLE,IL,2/13/2011 16:50 +Frankfort,,TEARDROP,IL,2/13/2011 19:00 +Richmond,,LIGHT,VA,2/13/2011 20:00 +San Bernardino,RED,FIREBALL,CA,2/13/2011 20:00 +Gastonia,BLUE,CIRCLE,NC,2/14/2011 0:45 +Iron Mountain,ORANGE,CIRCLE,MI,2/14/2011 3:00 +Pasadena,,OTHER,MD,2/14/2011 4:00 +Hermitage,,FIREBALL,TN,2/14/2011 5:00 +Tuckahoe,,TEARDROP,NY,2/14/2011 12:35 +Pittsburgh,,CIRCLE,PA,2/14/2011 18:05 +Taos,,LIGHT,NM,2/14/2011 18:45 +Winneconne,,LIGHT,WI,2/14/2011 19:20 +Millbrook,,TEARDROP,NY,2/14/2011 19:30 +Prescott Valley,,OTHER,AZ,2/14/2011 21:41 +Hampton,,SPHERE,NH,2/14/2011 22:00 +Lake Havasu City,,,AZ,2/14/2011 22:30 +Indian Wells,ORANGE,CIRCLE,CA,2/15/2011 0:00 +Conway,,FORMATION,AR,2/15/2011 12:00 +Solon,,OTHER,OH,2/15/2011 16:45 +Vicksburg,RED,FORMATION,AZ,2/15/2011 17:00 +Safford,ORANGE,FLASH,AZ,2/15/2011 20:00 +Yellowstone National Park,,LIGHT,WY,2/15/2011 20:00 +Bandera,RED,LIGHT,TX,2/15/2011 20:30 +Salisbury,,LIGHT,NC,2/15/2011 20:45 +Parker,,OTHER,CA,2/15/2011 21:05 +Portland,,OTHER,OR,2/15/2011 23:00 +Mountain Home,,OTHER,AR,2/15/2011 23:26 +Benwood,,CIGAR,WV,2/16/2011 0:30 +Fort Smith,,DISK,AR,2/16/2011 14:00 +Santa Maria,ORANGE,CIRCLE,CA,2/16/2011 19:02 +Barstow,,OVAL,TX,2/16/2011 20:00 +Yadkinville,,CIGAR,NC,2/16/2011 21:00 +Houma,,FIREBALL,LA,2/17/2011 10:15 +Franconia,,FORMATION,AZ,2/17/2011 17:20 +Washougal,,TRIANGLE,WA,2/17/2011 18:00 +Austin,,FIREBALL,TX,2/17/2011 18:30 +Dwarf,RED,,KY,2/17/2011 19:30 +Robersonville,,OTHER,NC,2/17/2011 20:30 +Tampa,,DISK,FL,2/17/2011 21:00 +Quartzsite,,FORMATION,AZ,2/18/2011 0:00 +Lebanon,,OTHER,OH,2/18/2011 1:00 +Goldthwaite,,,TX,2/18/2011 8:00 +Goldthwaite,,,TX,2/18/2011 8:00 +Barboursville,BLUE,LIGHT,WV,2/18/2011 10:00 +Apple Valley,,,CA,2/18/2011 17:03 +Tyler,,OTHER,TX,2/18/2011 18:00 +Austin,,LIGHT,TX,2/18/2011 18:25 +North Bend,RED BLUE,LIGHT,WA,2/18/2011 18:26 +Sag Harbor,,DIAMOND,NY,2/18/2011 19:10 +North Kingston,,FLASH,RI,2/18/2011 19:40 +Chino Hills,,LIGHT,CA,2/18/2011 20:30 +Tallahassee,ORANGE,CIRCLE,FL,2/18/2011 20:45 +Tallahassee,,CIRCLE,FL,2/18/2011 21:00 +Bloomsbug,,DISK,PA,2/19/2011 2:00 +Hampton,,CIGAR,TN,2/19/2011 4:00 +Decatur,,LIGHT,IL,2/19/2011 5:00 +Milwaukee,,TRIANGLE,WI,2/19/2011 5:23 +Endicott,,,NY,2/19/2011 6:30 +North Bend,RED GREEN,VARIOUS,WA,2/19/2011 19:00 +Snohomish,,LIGHT,WA,2/19/2011 19:30 +Sacramento,,LIGHT,CA,2/19/2011 20:15 +Shalimar,RED ORANGE,DIAMOND,FL,2/19/2011 21:21 +Fort Collins,,LIGHT,CO,2/20/2011 1:00 +Huntington Beach,,SPHERE,CA,2/20/2011 15:20 +Vancouver,,DISK,WA,2/20/2011 19:00 +Vancouver,RED,SPHERE,WA,2/20/2011 19:00 +Fullerton,,FIREBALL,CA,2/20/2011 19:45 +Vancouver,,,WA,2/20/2011 19:45 +Vancouver,RED GREEN,LIGHT,WA,2/20/2011 19:45 +Hannacroix,,LIGHT,NY,2/20/2011 20:10 +Miami,RED ORANGE,SPHERE,FL,2/20/2011 21:30 +San Diego,,,CA,2/20/2011 21:50 +Fontana,,CIRCLE,CA,2/20/2011 22:30 +Bloomington,,,MN,2/21/2011 2:00 +Avon Lake,,,OH,2/21/2011 5:50 +Richmond,,OVAL,VA,2/21/2011 6:30 +Palm Spring,,CIRCLE,CA,2/21/2011 18:00 +Miami,,,FL,2/21/2011 18:40 +Omaha,,DISK,NE,2/21/2011 18:48 +Raytown,,LIGHT,MO,2/21/2011 18:52 +Glenrock,,LIGHT,WY,2/21/2011 19:00 +Pipersville,,LIGHT,PA,2/21/2011 19:00 +Marysville,,CIRCLE,CA,2/21/2011 19:15 +Hillsboro,,LIGHT,OR,2/21/2011 19:30 +Germantown,,,MD,2/22/2011 1:45 +Gillsville,,OVAL,GA,2/22/2011 12:00 +Redding,,OTHER,CT,2/22/2011 13:30 +Plano,,,TX,2/22/2011 15:00 +Kettering,,CIRCLE,OH,2/22/2011 15:10 +Cody,,LIGHT,WY,2/22/2011 18:00 +Redding,,LIGHT,CA,2/22/2011 19:40 +Weston,,LIGHT,CT,2/22/2011 20:00 +Dunnellon,,LIGHT,FL,2/22/2011 22:00 +Prunedale,,LIGHT,CA,2/22/2011 22:18 +Loves Park,,OVAL,IL,2/23/2011 1:15 +Van Nuys,,LIGHT,CA,2/23/2011 2:05 +Tremont,,LIGHT,PA,2/23/2011 3:30 +Blue Bell,,TEARDROP,PA,2/23/2011 5:13 +Whitemarsh,,,PA,2/23/2011 5:13 +Central Valley,ORANGE,DIAMOND,NY,2/23/2011 7:15 +Berkley Heights,,LIGHT,NJ,2/23/2011 19:10 +Urrieta,ORANGE YELLOW,CIRCLE,CA,2/23/2011 19:40 +Holley,,TRIANGLE,NY,2/23/2011 19:50 +U. S. Highway 93,ORANGE,LIGHT,NV,2/23/2011 20:00 +Cathedral City,,SPHERE,CA,2/23/2011 22:00 +Jacksonville,,CIRCLE,FL,2/24/2011 19:50 +Ahwatukee,,LIGHT,AZ,2/24/2011 20:11 +Jacksonville,,TRIANGLE,FL,2/24/2011 20:30 +Carpinteria,ORANGE,OVAL,CA,2/24/2011 21:30 +Escondido,,TRIANGLE,CA,2/24/2011 22:30 +Georgetown,,LIGHT,TX,2/25/2011 4:00 +Fair Grove,,OTHER,MO,2/25/2011 12:30 +Bessemer City,,CIRCLE,NC,2/25/2011 15:57 +New Port Richey,,CIGAR,FL,2/25/2011 16:10 +Everett,,LIGHT,WA,2/25/2011 20:00 +Bloomfield Hills,,DISK,MI,2/25/2011 21:00 +Windsor,,,CO,2/25/2011 21:30 +Mill Creek,,TRIANGLE,WA,2/25/2011 22:30 +Oakland,,CYLINDER,CA,2/26/2011 0:10 +Travelers Rest,,,SC,2/26/2011 3:30 +Graham,RED ORANGE BLUE,LIGHT,NC,2/26/2011 5:30 +Gonzales,ORANGE,TEARDROP,LA,2/26/2011 19:15 +Valrico,,FIREBALL,FL,2/26/2011 20:30 +Pacific Grove,RED,LIGHT,CA,2/26/2011 22:15 +Ellington,,CYLINDER,CT,2/27/2011 8:47 +Ormond Beach,,DIAMOND,FL,2/27/2011 20:30 +Bozeman,,LIGHT,MT,2/27/2011 21:00 +Santa Rosa,,SPHERE,CA,2/27/2011 23:00 +Sumter,,LIGHT,SC,2/28/2011 0:30 +Fresno,,OVAL,CA,2/28/2011 9:35 +Imperial Beach,,OVAL,CA,2/28/2011 10:00 +Paso Robles,,SPHERE,CA,2/28/2011 10:10 +West Covina,,DISK,CA,2/28/2011 15:30 +Round Rock,,OTHER,TX,2/28/2011 17:02 +Lexington,,LIGHT,SC,2/28/2011 19:00 +Flower Mound,,FORMATION,TX,2/28/2011 19:10 +Denver,,LIGHT,CO,2/28/2011 20:00 +Ridgecrest,,SPHERE,CA,2/28/2011 20:00 +Cornell,,LIGHT,MI,2/28/2011 20:30 +Reading,,SPHERE,PA,3/1/2011 0:00 +Reading,GREEN,SPHERE,PA,3/1/2011 0:00 +Burley,,FIREBALL,ID,3/1/2011 5:15 +Bemidji,,TRIANGLE,MN,3/1/2011 7:00 +Orlando,,,FL,3/1/2011 8:00 +Youngsville,RED,,LA,3/1/2011 9:31 +Tumwater,,OVAL,WA,3/1/2011 10:00 +Cohoes,,TRIANGLE,NY,3/1/2011 13:00 +San Bernardino,,DISK,CA,3/1/2011 15:30 +New York City,,OTHER,NY,3/1/2011 17:15 +Arizona,,FORMATION,AZ,3/1/2011 18:00 +Conshohocken,,OTHER,PA,3/1/2011 18:00 +Wallingford,,TRIANGLE,CT,3/1/2011 19:45 +Waterbury,,,CT,3/1/2011 19:45 +Wolcott,GREEN,RECTANGLE,CT,3/1/2011 19:46 +Round Rock,,LIGHT,TX,3/1/2011 21:00 +Worthington,,CIRCLE,OH,3/1/2011 21:30 +Red Oak,,OTHER,TX,3/1/2011 22:30 +Murfreesboro,,LIGHT,TN,3/2/2011 0:00 +Bloomington,,LIGHT,IN,3/2/2011 1:00 +San Diego,,LIGHT,CA,3/2/2011 5:40 +Tsaile,,OVAL,AZ,3/2/2011 6:25 +Phoenix,,,AZ,3/2/2011 6:45 +Globe,,SPHERE,AZ,3/2/2011 6:46 +Escondido,,VARIOUS,CA,3/2/2011 16:25 +Lisle,,FIREBALL,IL,3/2/2011 16:30 +Chantilly,,LIGHT,VA,3/2/2011 16:45 +Harrisburg,,OVAL,PA,3/2/2011 17:15 +Katy,,CROSS,TX,3/2/2011 19:15 +Coleman,,OVAL,TX,3/2/2011 20:00 +Echo,,CHEVRON,TX,3/2/2011 21:00 +Lockport,,SPHERE,IL,3/2/2011 21:50 +Irvine,,OTHER,CA,3/2/2011 22:00 +San Marcos,,CHEVRON,TX,3/2/2011 22:00 +Great Falls,,FIREBALL,VA,3/2/2011 23:30 +Sedona,,TRIANGLE,AZ,3/3/2011 1:20 +Bluffton,BLUE,SPHERE,IN,3/3/2011 2:00 +Uintah,,LIGHT,UT,3/3/2011 2:15 +Gloucester,,TRIANGLE,VA,3/3/2011 12:00 +West Hartford,,OVAL,CT,3/3/2011 16:05 +Honea Path,,LIGHT,SC,3/3/2011 19:04 +North Dartmouth,,LIGHT,MA,3/3/2011 19:15 +Fishers,GREEN BLUE,SPHERE,IN,3/3/2011 20:00 +Rising Sun,,LIGHT,MD,3/3/2011 20:30 +Fort Bragg,,TRIANGLE,CA,3/3/2011 21:00 +Blanchester,,,OH,3/3/2011 21:03 +Blue Ridge,,DISK,GA,3/3/2011 22:00 +Elyria,,TRIANGLE,OH,3/4/2011 1:00 +Groton,,TRIANGLE,CT,3/4/2011 1:30 +Seminole,ORANGE,OVAL,OK,3/4/2011 2:00 +Littlerock,,,CA,3/4/2011 2:10 +Raleigh,,OTHER,NC,3/4/2011 8:45 +New York City,BLUE,,NY,3/4/2011 11:15 +New York City,,CIRCLE,NY,3/4/2011 11:20 +Manteno,,FIREBALL,IL,3/4/2011 19:00 +Alaska??,RED BLUE,FLASH,OK,3/4/2011 20:15 +Raleigh,,LIGHT,NC,3/4/2011 21:30 +Elkton,,FLASH,MD,3/4/2011 22:00 +Tracy,BLUE,OVAL,CA,3/4/2011 22:00 +Downey,,DIAMOND,CA,3/5/2011 3:00 +Islamorada,,LIGHT,FL,3/5/2011 18:40 +Missoula,,TEARDROP,MT,3/5/2011 20:00 +Delmar,,CIRCLE,MD,3/5/2011 20:30 +Vegas,,OTHER,NV,3/5/2011 21:34 +Rockport,,DISK,TX,3/5/2011 21:50 +Vista,,OVAL,CA,3/5/2011 23:05 +Las Vegas,,CIRCLE,NV,3/6/2011 4:45 +Valley Center,,LIGHT,CA,3/6/2011 5:30 +Mahwah,,OTHER,NJ,3/6/2011 10:28 +Camp Pendleton,,LIGHT,CA,3/6/2011 16:45 +Oneida,,LIGHT,WI,3/6/2011 17:10 +Oswego,,SPHERE,IL,3/6/2011 17:55 +Jacksonville,,OTHER,FL,3/6/2011 19:00 +Sierraville,,DISK,CA,3/7/2011 1:00 +Griffin,,,GA,3/7/2011 2:30 +Clearfield,,OTHER,PA,3/7/2011 2:45 +Wakefield,,FORMATION,RI,3/7/2011 18:50 +Lynnwood,BLUE,SPHERE,WA,3/7/2011 19:00 +Van Nuys,,DISK,CA,3/7/2011 19:45 +Cary,,SPHERE,NC,3/7/2011 20:00 +Culpeper,,TRIANGLE,VA,3/7/2011 21:00 +Ninilchik,,LIGHT,AK,3/7/2011 21:00 +Yakima,,CIRCLE,WA,3/7/2011 21:00 +Yakima,,CIRCLE,WA,3/7/2011 21:05 +Eugene,,FIREBALL,OR,3/7/2011 22:00 +Midway,,FORMATION,GA,3/8/2011 3:00 +Belle Mead,,LIGHT,NJ,3/8/2011 18:30 +Canoga Park,RED,,CA,3/8/2011 19:30 +W. Sacramento,,CYLINDER,CA,3/8/2011 19:30 +West Springfield,,TRIANGLE,PA,3/8/2011 20:00 +Greensburg,,,PA,3/8/2011 20:15 +West Springfield,,TRIANGLE,PA,3/8/2011 21:00 +Wickenburg,,LIGHT,AZ,3/8/2011 22:00 +Edray,RED,LIGHT,WV,3/8/2011 23:35 +Naples,,DISK,FL,3/9/2011 3:30 +Oceanside,RED,OVAL,CA,3/9/2011 6:20 +Florida,,,FL,3/9/2011 13:00 +Tampa,,,FL,3/9/2011 18:44 +Apache Junction,,LIGHT,AZ,3/9/2011 19:30 +"Maze District, Canyonlands National Park",,LIGHT,UT,3/9/2011 20:00 +Lake Springs,,TRIANGLE,MO,3/9/2011 23:30 +Rolla,,TRIANGLE,MO,3/9/2011 23:30 +Laurel,,TRIANGLE,MT,3/10/2011 0:15 +San Diego,,LIGHT,CA,3/10/2011 3:00 +Lake Havasu City,,DISK,AZ,3/10/2011 7:46 +Oak Lawn,,CIGAR,IL,3/10/2011 16:47 +Running Springs,,VARIOUS,CA,3/10/2011 17:40 +Avalon,,LIGHT,CA,3/10/2011 18:00 +Carmel,,LIGHT,CA,3/10/2011 19:30 +Winters,,OVAL,TX,3/10/2011 20:00 +Everett,,LIGHT,WA,3/10/2011 21:35 +Kermit,,TRIANGLE,TX,3/10/2011 23:00 +Gilroy,,DIAMOND,CA,3/10/2011 23:52 +Los Angeles,,TEARDROP,CA,3/11/2011 0:00 +Baraboo,,,WI,3/11/2011 0:08 +North Windham,,TEARDROP,CT,3/11/2011 1:30 +Orland,,TRIANGLE,CA,3/11/2011 1:30 +Appleton,YELLOW,,WI,3/11/2011 5:10 +West Palm Beach,,LIGHT,FL,3/11/2011 13:30 +Mesa,,TRIANGLE,AZ,3/11/2011 20:30 +North Platte,,DISK,NE,3/11/2011 21:26 +Toms River,ORANGE,FORMATION,NJ,3/11/2011 21:55 +Colleyville,,CONE,TX,3/11/2011 22:00 +Lacey Township,,OVAL,NJ,3/11/2011 22:00 +Waretown,ORANGE,OVAL,NJ,3/11/2011 22:33 +Comfort,,TRIANGLE,TX,3/11/2011 23:00 +Tomball,ORANGE,LIGHT,TX,3/11/2011 23:00 +Owings Mills,,LIGHT,MD,3/11/2011 23:10 +Spring Grove,,,PA,3/12/2011 4:00 +Santa Cruz,,OVAL,CA,3/12/2011 7:30 +Englewood,,DISK,FL,3/12/2011 17:45 +Stow area,RED,OTHER,MA,3/12/2011 18:45 +Kenner,,LIGHT,LA,3/12/2011 20:30 +Fort Worth,,SPHERE,TX,3/12/2011 20:35 +Lake Texoma,BLUE,CIRCLE,TX,3/12/2011 22:00 +Morgan Mill,,LIGHT,TX,3/12/2011 22:00 +Mt. Vernon,GREEN,OVAL,TX,3/12/2011 22:35 +Lorain,,TRIANGLE,OH,3/13/2011 0:40 +Henrico,,VARIOUS,VA,3/13/2011 1:00 +Atlanta,,,GA,3/13/2011 15:00 +Four Oaks,,TRIANGLE,NC,3/13/2011 16:30 +Visalia,,LIGHT,CA,3/13/2011 20:19 +Plattekill,,TRIANGLE,NY,3/13/2011 22:00 +Aspen,GREEN,FIREBALL,CO,3/13/2011 23:00 +San Antonio,,OVAL,TX,3/13/2011 23:34 +Union City,GREEN,FLASH,CA,3/14/2011 6:45 +Alhambra,GREEN,FIREBALL,CA,3/14/2011 12:00 +Lincoln National Forest,,OVAL,NM,3/14/2011 14:00 +Lake Havasu City,ORANGE,OTHER,AZ,3/14/2011 19:30 +Des Moines,,OTHER,IA,3/14/2011 21:00 +Perry,RED,,GA,3/14/2011 21:00 +East Moline,,DISK,IL,3/15/2011 0:00 +Hooper Bay,,,AK,3/15/2011 0:03 +Glasgow,,CIRCLE,MT,3/15/2011 12:00 +Ruthven,,CIRCLE,IA,3/15/2011 13:10 +Las Vegas,,CYLINDER,NV,3/15/2011 14:00 +Boardman,,FIREBALL,OH,3/15/2011 15:00 +Dillon,,FIREBALL,CO,3/15/2011 20:30 +Chaco Culture National Park,GREEN,OTHER,NM,3/15/2011 21:00 +Holts Summit,,DISK,MO,3/16/2011 2:39 +Canoga Park,,DIAMOND,CA,3/16/2011 10:30 +Greensboro,,,NC,3/16/2011 10:30 +Downey,,DISK,CA,3/16/2011 15:20 +Wayland,,OVAL,MI,3/16/2011 16:30 +Chamberlain,ORANGE,LIGHT,SD,3/16/2011 21:16 +Louisville,,LIGHT,KY,3/16/2011 21:35 +Salinas,RED,CHEVRON,CA,3/16/2011 21:45 +Middletown,,SPHERE,NY,3/17/2011 17:30 +Dahlonega,,DIAMOND,GA,3/17/2011 19:00 +Lawton,,LIGHT,OK,3/17/2011 20:25 +Bristol,,DIAMOND,VA,3/17/2011 21:15 +Machesney Park,RED,LIGHT,IL,3/17/2011 23:00 +Raleigh,,LIGHT,NC,3/17/2011 23:30 +Beverly,,RECTANGLE,WA,3/18/2011 0:40 +Seattle,,DISK,WA,3/18/2011 5:00 +Arizona City,,SPHERE,AZ,3/18/2011 19:00 +Fredericksburg,,TRIANGLE,VA,3/18/2011 19:00 +Glendale,,FIREBALL,AZ,3/18/2011 19:35 +Litchfield Park,ORANGE,CIRCLE,AZ,3/18/2011 19:40 +Surprise,,FIREBALL,AZ,3/18/2011 19:40 +Walhalla,,TRIANGLE,SC,3/18/2011 20:40 +Waxahachie,BLUE,CIRCLE,TX,3/19/2011 3:40 +Glen St. Mary,BLUE,TEARDROP,FL,3/19/2011 13:24 +Ewing,,OVAL,NJ,3/19/2011 19:45 +Belen,,,NM,3/19/2011 20:00 +North Bend,ORANGE,OTHER,WA,3/19/2011 20:00 +Taylors,BLUE,CIRCLE,SC,3/19/2011 20:50 +Griswold,ORANGE,LIGHT,CT,3/19/2011 20:52 +Elkhart,,FIREBALL,IN,3/19/2011 21:00 +Elkhart,,SPHERE,IN,3/19/2011 21:30 +San Jose,,OTHER,CA,3/19/2011 21:30 +Vero Beach,,LIGHT,FL,3/19/2011 21:30 +Lake Worth,,VARIOUS,FL,3/19/2011 22:00 +Boise,,OVAL,ID,3/19/2011 22:30 +Hockley,BLUE,,TX,3/19/2011 23:45 +Yacolt,BLUE,SPHERE,WA,3/20/2011 1:00 +Concord,,LIGHT,NH,3/20/2011 1:35 +Portland,,FORMATION,OR,3/20/2011 4:50 +Chicago,,CIGAR,IL,3/20/2011 19:00 +Elliottsburg,,TRIANGLE,PA,3/20/2011 19:40 +Lafayette,RED,LIGHT,CO,3/20/2011 20:00 +Broomfield,,LIGHT,CO,3/20/2011 20:25 +Lafayette,RED,LIGHT,CO,3/20/2011 20:45 +Goleta,,TRIANGLE,CA,3/20/2011 21:35 +Lafayette,,FORMATION,CO,3/20/2011 22:00 +Sylvania,,LIGHT,OH,3/20/2011 22:00 +Des Moines,,LIGHT,IA,3/21/2011 0:55 +Sarasota,,VARIOUS,FL,3/21/2011 18:30 +Vero Beach,,LIGHT,FL,3/21/2011 21:27 +Livermore,,OTHER,CA,3/22/2011 2:00 +Faribault,,LIGHT,MN,3/22/2011 5:00 +Shaver Lake,,TRIANGLE,CA,3/22/2011 15:00 +Seattle,,CIRCLE,WA,3/22/2011 17:45 +Dillon,,FIREBALL,SC,3/22/2011 19:30 +Bark River,,OVAL,MI,3/22/2011 20:00 +Stanford,RED,TRIANGLE,KY,3/22/2011 20:00 +Holden Beach,,FIREBALL,NC,3/22/2011 20:30 +Mesa,,LIGHT,AZ,3/22/2011 21:40 +Shady Spring,,RECTANGLE,WV,3/22/2011 21:50 +University Place,,LIGHT,WA,3/22/2011 22:02 +Palm Coast,,CIRCLE,FL,3/22/2011 22:40 +Burlington,,TRIANGLE,MA,3/23/2011 0:05 +San Antonio,,LIGHT,TX,3/23/2011 21:10 +Shawnee,,DISK,OK,3/23/2011 21:20 +Eau Claire,,TRIANGLE,WI,3/23/2011 22:00 +Seaside,BLUE,CIRCLE,OR,3/23/2011 22:00 +Brighton,,OTHER,MI,3/24/2011 0:10 +St. Charles,,DISK,MO,3/24/2011 1:00 +Haltom City,,TRIANGLE,TX,3/24/2011 1:30 +Vancouver,RED,TRIANGLE,WA,3/24/2011 5:40 +LaPorte,,,IN,3/24/2011 10:16 +Holt,,DISK,FL,3/24/2011 20:40 +Marana,ORANGE,LIGHT,AZ,3/24/2011 20:45 +Coral Gables,,DIAMOND,FL,3/24/2011 21:50 +Smyrna,,OVAL,DE,3/24/2011 23:05 +Port Orange,,CIRCLE,FL,3/25/2011 6:35 +Hollywood,,OVAL,FL,3/25/2011 7:00 +Atlantic City,,OVAL,NJ,3/25/2011 11:15 +Holladay,,DISK,UT,3/25/2011 19:00 +Chesapeake,,CIRCLE,VA,3/25/2011 20:30 +Myrtle Beach,,LIGHT,SC,3/25/2011 20:30 +Egg Harbor Township,,,NJ,3/25/2011 21:00 +Chaco Culture National Park,,LIGHT,NM,3/25/2011 22:00 +Tomahawk,GREEN,CIRCLE,WI,3/25/2011 22:00 +Naples,,RECTANGLE,FL,3/25/2011 23:00 +Stratford,,TRIANGLE,CT,3/26/2011 0:50 +Italy,,VARIOUS,TX,3/26/2011 10:30 +Dunnellon,,,FL,3/26/2011 11:20 +no data,,SPHERE,KS,3/26/2011 15:00 +Billings,,OTHER,MT,3/26/2011 18:00 +Jacksonville,ORANGE,FIREBALL,FL,3/26/2011 21:00 +Seward,ORANGE,LIGHT,AK,3/26/2011 21:00 +San Diego,RED GREEN,,CA,3/26/2011 21:30 +Morrisville,,OTHER,PA,3/26/2011 22:00 +Mullica Township,,LIGHT,NJ,3/26/2011 22:00 +Modesto,,DISK,CA,3/26/2011 22:30 +Greenfield,BLUE,,MO,3/27/2011 6:40 +Moss Bluff,,FIREBALL,LA,3/27/2011 8:39 +Ann Arbor,,TRIANGLE,MI,3/27/2011 11:15 +Independence,,FLASH,MO,3/27/2011 22:59 +Traverse City,,SPHERE,MI,3/28/2011 0:00 +Pembroke Pines,,DISK,FL,3/28/2011 0:05 +Wayne,,FORMATION,MI,3/28/2011 2:25 +Prescott,,DIAMOND,AZ,3/28/2011 3:45 +Huntley,,TRIANGLE,IL,3/28/2011 11:00 +Reading,ORANGE,,PA,3/28/2011 13:30 +Lauderdale By The Sea,,VARIOUS,FL,3/28/2011 15:00 +Smyrna,,,TN,3/28/2011 19:00 +Sacramento,RED,,CA,3/28/2011 20:30 +pks,,LIGHT,NC,3/28/2011 22:00 +Nashville,RED,DISK,TN,3/28/2011 23:30 +La Jolla,RED BLUE,TRIANGLE,CA,3/29/2011 4:58 +Rancho Cucamonga,,CIRCLE,CA,3/29/2011 9:46 +Virginia Beach,,OVAL,VA,3/29/2011 17:43 +Myrtle Beach,,LIGHT,SC,3/29/2011 20:00 +Oakdale,,CIRCLE,NY,3/29/2011 20:00 +Mead,,TRIANGLE,CO,3/29/2011 20:18 +Baltimore,,CIRCLE,MD,3/29/2011 21:00 +Fond du Lac,,TRIANGLE,WI,3/29/2011 21:00 +Ocean Isle Beach,RED,LIGHT,NC,3/29/2011 21:00 +Yucaipa,,TRIANGLE,CA,3/29/2011 23:00 +Floyd,,DISK,IA,3/30/2011 0:00 +Easton,RED,TRIANGLE,MD,3/30/2011 1:45 +Benson,,FIREBALL,AZ,3/30/2011 19:10 +Chico,,TRIANGLE,CA,3/30/2011 21:00 +North Bismarck,,TRIANGLE,ND,3/30/2011 22:10 +Ann Arbor,,LIGHT,MI,3/30/2011 23:30 +Bloomington,,DISK,IL,3/31/2011 0:00 +Escondido,GREEN,LIGHT,CA,3/31/2011 0:15 +Las Vegas,,,NV,3/31/2011 15:30 +Arizona City,,VARIOUS,AZ,3/31/2011 19:30 +Richmond,,OTHER,ME,3/31/2011 20:00 +Woolwich,,LIGHT,ME,3/31/2011 20:00 +Sedona,YELLOW,CIRCLE,AZ,3/31/2011 21:00 +Russellville,,TRIANGLE,AR,3/31/2011 23:24 +New Berlin,,OTHER,WI,4/1/2011 0:02 +Melbourne,,OVAL,FL,4/1/2011 1:00 +Wichita,,EGG,KS,4/1/2011 8:00 +Natomas,BLUE,LIGHT,CA,4/1/2011 20:30 +Homer Glen,,LIGHT,IL,4/1/2011 21:00 +Lakewood,,TRIANGLE,CO,4/1/2011 21:00 +Cheyenne,,LIGHT,WY,4/1/2011 21:10 +Conway,,OTHER,AR,4/1/2011 22:10 +Garden City,ORANGE,DISK,SC,4/1/2011 22:15 +Fort Myers,RED,,FL,4/1/2011 22:30 +Adrian,,TRIANGLE,MN,4/1/2011 22:35 +Alligator Alley,,RECTANGLE,FL,4/1/2011 23:00 +Naches,BLUE,SPHERE,WA,4/1/2011 23:30 +Escondido,,LIGHT,CA,4/2/2011 0:01 +Sedona,,LIGHT,AZ,4/2/2011 0:30 +Springville,ORANGE,,NY,4/2/2011 0:36 +Deerfield,,,IL,4/2/2011 1:30 +Rocky Mount,,,MO,4/2/2011 6:15 +Lincolnshire,,TRIANGLE,IL,4/2/2011 17:30 +Wichita Falls,,CYLINDER,TX,4/2/2011 20:00 +Nokomis,,OTHER,FL,4/2/2011 20:30 +Franklin Square,,TRIANGLE,NY,4/2/2011 21:00 +Parsippany,,OTHER,NJ,4/2/2011 23:00 +Kearns,,TRIANGLE,UT,4/3/2011 3:30 +Henderson,,OVAL,NV,4/3/2011 14:35 +Wilmont,GREEN,SPHERE,AR,4/3/2011 21:30 +Alligator Alley,,RECTANGLE,FL,4/3/2011 22:00 +Boulder Creek,,RECTANGLE,CA,4/3/2011 22:15 +Phoenix,,FORMATION,AZ,4/3/2011 22:30 +San Bernardino,YELLOW,LIGHT,CA,4/3/2011 23:45 +Venice,,OTHER,CA,4/4/2011 3:00 +Wasilla,,CIRCLE,AK,4/4/2011 4:00 +Orange,,LIGHT,CA,4/4/2011 6:00 +Las Vegas,,OVAL,NV,4/4/2011 8:30 +,,SPHERE,VA,4/4/2011 18:00 +Lipan,ORANGE,OTHER,TX,4/4/2011 20:32 +Venice,,LIGHT,CA,4/4/2011 20:41 +Carson City,,TRIANGLE,NV,4/4/2011 22:30 +Buellton,,LIGHT,CA,4/4/2011 23:27 +Vancouver,,,WA,4/4/2011 23:30 +Grand Rapids,,,MI,4/5/2011 3:00 +Tifton,,OVAL,GA,4/5/2011 10:25 +West Covina,,SPHERE,CA,4/5/2011 11:30 +Simi valley,,DIAMOND,CA,4/5/2011 18:25 +La Jolla,GREEN,SPHERE,CA,4/5/2011 20:00 +New Castle,,OTHER,PA,4/5/2011 20:35 +Vacaville,,,CA,4/5/2011 20:40 +Lowry City,,LIGHT,MO,4/5/2011 21:16 +San Francisco,,LIGHT,CA,4/5/2011 22:00 +Center Barnstead,RED ORANGE,OTHER,NH,4/5/2011 23:15 +Mystic,,TRIANGLE,CT,4/6/2011 1:00 +South Williamsport,,DIAMOND,PA,4/6/2011 1:23 +Hatfield,,FORMATION,MA,4/6/2011 3:15 +San Antonio,,OTHER,TX,4/6/2011 15:21 +Las Vegas,,TRIANGLE,NV,4/6/2011 17:00 +Bothell,,,WA,4/6/2011 17:39 +Athens-East Limestone,,OTHER,AL,4/6/2011 20:22 +Knoxville,,EGG,TN,4/6/2011 21:20 +Television program,,OVAL,NM,4/7/2011 1:00 +Grand Forks,,VARIOUS,ND,4/7/2011 1:40 +San Antonio,,CIRCLE,TX,4/7/2011 2:00 +Fishers,,LIGHT,IN,4/7/2011 5:03 +New York,,CYLINDER,NY,4/7/2011 9:00 +Valatie,,LIGHT,NY,4/7/2011 19:00 +Murray,,CIGAR,KY,4/7/2011 20:47 +Lexington,RED,SPHERE,KY,4/7/2011 21:00 +Stamford,,SPHERE,CT,4/7/2011 21:54 +Munford,,,TN,4/7/2011 23:05 +Garden Grove,,SPHERE,CA,4/8/2011 0:00 +Auburn,,TRIANGLE,NY,4/8/2011 1:00 +Corning,,OTHER,CA,4/8/2011 3:00 +Easton,,LIGHT,MA,4/8/2011 3:57 +Hollywood,,TRIANGLE,FL,4/8/2011 4:30 +Spokane,,CIRCLE,WA,4/8/2011 12:40 +Unionville,,CIRCLE,TN,4/8/2011 20:30 +Huntington Beach,,CIRCLE,CA,4/8/2011 21:00 +Orlando,,TRIANGLE,FL,4/8/2011 22:00 +Irmo,,TRIANGLE,SC,4/8/2011 23:00 +Woodland,,TRIANGLE,WA,4/8/2011 23:00 +Annapolis,,CIRCLE,MD,4/9/2011 0:15 +Fortuna,,LIGHT,CA,4/9/2011 1:00 +Buffalo,,CIRCLE,NY,4/9/2011 1:30 +Coeur d'Alene,,OTHER,ID,4/9/2011 5:00 +Travelers Rest,,SPHERE,SC,4/9/2011 5:30 +Orlando,,FORMATION,FL,4/9/2011 18:45 +Grand Island,,LIGHT,NY,4/9/2011 20:30 +Hampton,,CIRCLE,VA,4/9/2011 21:30 +Asbury Park,,TRIANGLE,NJ,4/9/2011 22:05 +College Place,,,WA,4/9/2011 22:15 +Canton,GREEN,,IL,4/9/2011 23:00 +East Peoria,GREEN,CIGAR,IL,4/9/2011 23:00 +Saunemin,,CIRCLE,IL,4/9/2011 23:00 +Sparland,GREEN,CIRCLE,IL,4/9/2011 23:30 +Farmington,,TRIANGLE,NM,4/9/2011 23:55 +Freeport,GREEN,RECTANGLE,TX,4/10/2011 5:30 +Norcross,,FIREBALL,GA,4/10/2011 22:00 +Stockton,,LIGHT,CA,4/10/2011 23:00 +Los Angeles,,VARIOUS,CA,4/11/2011 1:08 +Salina,,LIGHT,KS,4/11/2011 5:30 +Manassas,,SPHERE,VA,4/11/2011 12:55 +Bedford,,CIRCLE,TX,4/11/2011 21:00 +Lake Forest,,TRIANGLE,IL,4/11/2011 21:00 +Corvallis,YELLOW,LIGHT,OR,4/11/2011 22:00 +Ellensburg,,LIGHT,WA,4/11/2011 22:00 +Wenatchee,,CIRCLE,WA,4/11/2011 22:30 +Kennewick,,LIGHT,WA,4/11/2011 22:50 +Rockford,,LIGHT,IL,4/11/2011 23:00 +Louisville,,SPHERE,KY,4/12/2011 3:00 +Carrollton,,SPHERE,TX,4/12/2011 12:30 +Montgomery,,CYLINDER,IL,4/12/2011 14:30 +Royce City,,DISK,TX,4/12/2011 18:00 +New Boston,,,TX,4/12/2011 19:00 +Ruther Glen,RED,LIGHT,VA,4/12/2011 20:30 +Minot,,LIGHT,ND,4/12/2011 21:55 +Brazil,,,IN,4/12/2011 22:00 +Rosamond,,TRIANGLE,CA,4/12/2011 22:00 +Brazil,,SPHERE,IN,4/12/2011 23:00 +Smryna,,DISK,TN,4/13/2011 3:15 +Akron,,OVAL,OH,4/13/2011 10:30 +LaPorte,,CIGAR,IN,4/13/2011 14:53 +Albany,,SPHERE,GA,4/13/2011 18:30 +Detroit,,RECTANGLE,MI,4/13/2011 19:15 +Kure Beach,RED ORANGE,LIGHT,NC,4/13/2011 20:45 +Flowery Branch,,OVAL,GA,4/13/2011 21:00 +Augusta,ORANGE,,GA,4/13/2011 21:40 +Fort Payne,GREEN BLUE,OVAL,AL,4/13/2011 22:30 +Falls Church,,LIGHT,VA,4/14/2011 3:08 +Goodyear,,TRIANGLE,AZ,4/14/2011 4:40 +Lake Havasu City,BLUE,SPHERE,AZ,4/14/2011 4:50 +Carrollton,,OVAL,OH,4/14/2011 8:45 +Janesville,RED BLUE,,CA,4/14/2011 17:00 +Lake Havasu City,,OTHER,AZ,4/14/2011 20:00 +Richmond,,DISK,VA,4/14/2011 20:00 +Banning,,FIREBALL,CA,4/14/2011 21:00 +Bethalto,,TRIANGLE,IL,4/14/2011 21:00 +Egg Harbor Township,,TRIANGLE,NJ,4/14/2011 21:00 +La Puente,RED,LIGHT,CA,4/14/2011 21:00 +Solana Beach,RED,CHEVRON,CA,4/14/2011 21:20 +Valley Acres,,FIREBALL,CA,4/14/2011 21:25 +Valley acres,,FIREBALL,CA,4/14/2011 21:25 +Visalia,,,CA,4/14/2011 21:25 +Santa Barbara,ORANGE,VARIOUS,CA,4/14/2011 21:26 +Desert Hot Springs,ORANGE,FIREBALL,CA,4/14/2011 21:30 +Rosamond,ORANGE,CYLINDER,CA,4/14/2011 21:30 +San Diego,,CHEVRON,CA,4/14/2011 21:30 +Federal Way,,TRIANGLE,WA,4/14/2011 21:39 +Port Angeles,,SPHERE,WA,4/14/2011 23:00 +Clayton,,LIGHT,NJ,4/14/2011 23:37 +San Jose,,VARIOUS,CA,4/15/2011 14:57 +Chico,,OVAL,CA,4/15/2011 18:30 +Campville,,LIGHT,NY,4/15/2011 19:00 +Vandergrift,,DISK,PA,4/15/2011 19:30 +Belfast,ORANGE,FIREBALL,ME,4/15/2011 20:00 +San Diego,ORANGE,FORMATION,CA,4/15/2011 21:45 +New York City,,CIRCLE,NY,4/15/2011 23:50 +Boulder,,LIGHT,CO,4/16/2011 0:00 +LIttleton,,DISK,CO,4/16/2011 5:30 +Miami,,OTHER,FL,4/16/2011 13:30 +Miami,,OTHER,FL,4/16/2011 13:30 +Running Springs,,LIGHT,CA,4/16/2011 19:37 +Rancho Cucamonga,,TRIANGLE,CA,4/16/2011 20:00 +Corpus Christi,,CIRCLE,TX,4/16/2011 21:15 +Reno,,CIRCLE,NV,4/16/2011 22:00 +St. Augustine Beach,,FORMATION,FL,4/16/2011 23:45 +San Tan Valley,RED,SPHERE,AZ,4/16/2011 23:55 +Santa Clara,,CIRCLE,CA,4/17/2011 1:45 +LaPorte,,OVAL,IN,4/17/2011 14:02 +Miami,,SPHERE,FL,4/17/2011 17:40 +Benson,,LIGHT,AZ,4/17/2011 19:00 +Hendersonville,,CIRCLE,NC,4/17/2011 20:00 +Armona,,,CA,4/17/2011 20:58 +Arvada,,FORMATION,CO,4/17/2011 21:00 +Greensboro,,LIGHT,NC,4/17/2011 21:00 +Hendersonville,,LIGHT,NC,4/17/2011 21:00 +Lutz,,FLASH,FL,4/17/2011 21:48 +Kutztown,,CIRCLE,PA,4/17/2011 21:50 +Westminster,,CIRCLE,MD,4/17/2011 23:30 +Murfreesboro,,LIGHT,TN,4/18/2011 0:15 +Everett,,LIGHT,WA,4/18/2011 20:15 +Virginia Beach,RED,DIAMOND,VA,4/18/2011 21:00 +Yakima,,OVAL,WA,4/18/2011 21:20 +Bellingham,,,WA,4/18/2011 22:00 +New York City,,TRIANGLE,NY,4/18/2011 22:05 +Fort Worth,,OVAL,TX,4/18/2011 23:00 +Westfir,,LIGHT,OR,4/19/2011 1:15 +Sea Cliff,,LIGHT,NY,4/19/2011 3:00 +Clermont,,FIREBALL,FL,4/19/2011 22:00 +Wilmington,,TRIANGLE,NC,4/19/2011 22:30 +Hood River,,CIGAR,OR,4/19/2011 22:45 +Fredericksburg,,DISK,TX,4/20/2011 0:00 +Mesa,,EGG,AZ,4/20/2011 0:15 +Bishop,,DISK,CA,4/20/2011 1:39 +Klamath Falls,,CIRCLE,OR,4/20/2011 2:17 +St. Louis,,VARIOUS,MO,4/20/2011 3:00 +Lenexa,GREEN,LIGHT,KS,4/20/2011 8:56 +Point Mugu,,,CA,4/20/2011 9:00 +Corona,ORANGE,TRIANGLE,CA,4/20/2011 19:02 +Mexico,,,VA,4/20/2011 20:00 +Morton,,RECTANGLE,MN,4/21/2011 0:00 +Fort Bragg,RED,FIREBALL,CA,4/21/2011 10:00 +Lenexa,,OTHER,KS,4/21/2011 16:00 +Ardenvoir,,OTHER,WA,4/21/2011 21:00 +Effort,,TRIANGLE,PA,4/21/2011 22:00 +Fort Mill,RED,LIGHT,SC,4/21/2011 22:29 +Hollister,ORANGE,RECTANGLE,CA,4/22/2011 0:00 +Mendon,,LIGHT,IL,4/22/2011 2:36 +Fredericksburg,,,VA,4/22/2011 8:45 +Denver,,OTHER,CO,4/22/2011 22:00 +Topeka,,FIREBALL,KS,4/22/2011 22:00 +Cordova,,OTHER,TN,4/22/2011 22:30 +Burley,,LIGHT,ID,4/22/2011 23:00 +Whitefish,,TRIANGLE,MT,4/23/2011 1:00 +Pembroke,,OVAL,VA,4/23/2011 11:39 +Las Vegas,,LIGHT,NV,4/23/2011 16:00 +Lodi,,VARIOUS,CA,4/23/2011 20:22 +Orland,,LIGHT,CA,4/23/2011 20:35 +Spokane Valley,,RECTANGLE,WA,4/23/2011 20:59 +Murfreesboro,ORANGE,RECTANGLE,TN,4/23/2011 21:00 +South Reno,GREEN,,NV,4/23/2011 21:30 +Palm Beach Gardens,RED BLUE,LIGHT,FL,4/23/2011 22:45 +Yakima,,DIAMOND,WA,4/23/2011 23:27 +Fullerton,,VARIOUS,CA,4/24/2011 0:00 +Round Rock,YELLOW,TEARDROP,TX,4/24/2011 0:04 +Ocala,ORANGE,TRIANGLE,FL,4/24/2011 0:30 +Tinley Park,,RECTANGLE,IL,4/24/2011 11:45 +Applachian Mountains,RED,,NC,4/24/2011 15:00 +Vinita Park,,CIRCLE,MO,4/24/2011 17:30 +Omega,,LIGHT,GA,4/24/2011 22:30 +Stuart,,TRIANGLE,FL,4/24/2011 22:30 +L'Anse,,FORMATION,MI,4/24/2011 23:12 +L'Anse,,OVAL,MI,4/24/2011 23:12 +Athens,,CIRCLE,TX,4/24/2011 23:45 +Carpinteria,,DISK,CA,4/25/2011 20:00 +Carpinteria,,DISK,CA,4/25/2011 20:00 +Rockwall,,RECTANGLE,TX,4/25/2011 21:52 +Dallas,,TRIANGLE,TX,4/25/2011 22:00 +Pacoima,RED,DISK,CA,4/26/2011 0:30 +Stillwater,,SPHERE,MN,4/26/2011 0:30 +Wilkes-Barre,,RECTANGLE,PA,4/26/2011 3:00 +Weston,,SPHERE,FL,4/26/2011 13:44 +Rockland,,LIGHT,NY,4/26/2011 21:00 +Screven,,FIREBALL,GA,4/26/2011 22:05 +San Jose,RED,LIGHT,CA,4/26/2011 23:10 +Fairhaven,,,MA,4/27/2011 6:30 +Flint,,LIGHT,MI,4/27/2011 23:00 +Hopatcong,,,NJ,4/28/2011 9:30 +Southlake,,OTHER,TX,4/28/2011 11:15 +Aledo,RED,SPHERE,IL,4/28/2011 12:00 +Cabot,,SPHERE,PA,4/28/2011 19:30 +Cannon Falls,RED,LIGHT,MN,4/28/2011 21:00 +Colorado Springs,BLUE,LIGHT,CO,4/28/2011 21:35 +Los Angeles,ORANGE,CIRCLE,CA,4/28/2011 21:40 +Hialeah,GREEN,FIREBALL,FL,4/29/2011 3:00 +Emporia,,,KS,4/29/2011 20:30 +San Jose,,CIRCLE,CA,4/29/2011 20:40 +San Jose,ORANGE,FIREBALL,CA,4/29/2011 20:45 +Midway,,DIAMOND,GA,4/29/2011 20:55 +Marianna,,FIREBALL,FL,4/29/2011 21:05 +Alamo,RED,FORMATION,TN,4/29/2011 21:15 +Altamonte Springs,,FIREBALL,FL,4/29/2011 22:00 +Apex,,TRIANGLE,NC,4/29/2011 22:00 +Gainesville,,RECTANGLE,FL,4/29/2011 22:05 +Savannah,,CONE,GA,4/29/2011 22:15 +Corning,,LIGHT,NY,4/29/2011 22:30 +Starkville,,CIRCLE,MS,4/29/2011 22:35 +Douglas Creek,,,WA,4/29/2011 22:40 +Dearborn Heights,,OTHER,MI,4/29/2011 23:30 +St. Charles,,TRIANGLE,MO,4/29/2011 23:30 +Yakima,,LIGHT,WA,4/30/2011 0:05 +Owensboro,YELLOW,SPHERE,KY,4/30/2011 2:00 +Santa Fe,,LIGHT,NM,4/30/2011 2:07 +Portland,,OTHER,OR,4/30/2011 3:05 +Pennellville,ORANGE YELLOW,LIGHT,NY,4/30/2011 9:00 +Mojave Desert,,VARIOUS,CA,4/30/2011 16:00 +Grandview,,OTHER,WA,4/30/2011 18:00 +Las Vegas,,,NV,4/30/2011 20:22 +Nashville,,FIREBALL,TN,4/30/2011 20:30 +Nashville,,FIREBALL,TN,4/30/2011 21:00 +Saegertown,BLUE,,PA,4/30/2011 22:20 +Saegertown,,LIGHT,PA,4/30/2011 22:20 +Miami,RED ORANGE,,FL,4/30/2011 22:30 +Nampa,,CHEVRON,ID,4/30/2011 22:30 +Kenilworth,,CIRCLE,NJ,4/30/2011 23:00 +Springdfield,,LIGHT,OR,4/30/2011 23:00 +Seattle,,FORMATION,WA,4/30/2011 23:40 +Dearborn,,CIRCLE,MI,5/1/2011 0:20 +Pocatello,RED,LIGHT,ID,5/1/2011 0:55 +Richmond,,FORMATION,VA,5/1/2011 1:45 +Destin,,CIGAR,FL,5/1/2011 3:00 +Schaumburg,,SPHERE,IL,5/1/2011 12:00 +San Jose,,SPHERE,CA,5/1/2011 16:59 +Columbia,,FIREBALL,MO,5/1/2011 21:00 +Las Vegas,,VARIOUS,NV,5/1/2011 21:00 +Sound Beach,ORANGE,LIGHT,NY,5/1/2011 21:30 +Farmington,,VARIOUS,NM,5/1/2011 22:15 +Lakeland,,OTHER,FL,5/2/2011 20:40 +Arcadia,,FORMATION,FL,5/2/2011 21:00 +Presidio,,FORMATION,TX,5/2/2011 21:00 +Santa Monica,,TRIANGLE,CA,5/2/2011 21:00 +Brainerd,,LIGHT,MN,5/2/2011 21:30 +Santa Monica,,FORMATION,CA,5/2/2011 21:30 +Loveland,,LIGHT,CO,5/2/2011 21:56 +Whitwell,,DISK,TN,5/2/2011 23:00 +Riverwoods,,CIRCLE,IL,5/2/2011 23:30 +Tulsa,,LIGHT,OK,5/3/2011 5:20 +Issaquah,,CIRCLE,WA,5/3/2011 11:45 +Houston,,,TX,5/3/2011 12:30 +Caret,,LIGHT,VA,5/3/2011 21:00 +Grants Pass,ORANGE,OVAL,OR,5/3/2011 21:00 +Redwood City,,SPHERE,CA,5/3/2011 21:00 +Upland,,RECTANGLE,CA,5/3/2011 21:10 +Woodland Hills,,,CA,5/3/2011 21:16 +Venice,,TRIANGLE,CA,5/3/2011 21:20 +Davenport,,EGG,IA,5/3/2011 21:30 +San Jose,,LIGHT,CA,5/3/2011 21:30 +Saint George,ORANGE,FIREBALL,UT,5/3/2011 22:30 +Amery,,LIGHT,WI,5/3/2011 23:30 +Hershey,BLUE,,PA,5/4/2011 0:00 +Colorado Springs,,OTHER,CO,5/4/2011 1:33 +Albuquerque,,OTHER,NM,5/4/2011 9:00 +Naperville,,VARIOUS,IL,5/4/2011 17:30 +Oak Island,,LIGHT,NC,5/4/2011 21:00 +Bountiful,,CIRCLE,UT,5/4/2011 21:30 +Wirtz,,CIRCLE,VA,5/4/2011 21:40 +Prince George,,LIGHT,VA,5/4/2011 22:10 +San Francisco,RED,LIGHT,CA,5/4/2011 22:45 +Olive Hill,ORANGE,CIRCLE,KY,5/4/2011 23:30 +Myrtle Beach,,FORMATION,SC,5/5/2011 0:00 +Rochester,,TRIANGLE,NY,5/5/2011 1:03 +Mount Vernon,,,IA,5/5/2011 7:00 +Lewiston,,FIREBALL,ID,5/5/2011 9:15 +Amery,,LIGHT,WI,5/5/2011 11:41 +Port St. Lucie,,OVAL,FL,5/5/2011 15:00 +West Chicago,,LIGHT,IL,5/5/2011 17:15 +Ovalo,,OVAL,TX,5/5/2011 19:30 +North Las Vegas,,LIGHT,NV,5/5/2011 20:33 +Bennington,,LIGHT,KS,5/5/2011 21:00 +Brick,,FIREBALL,NJ,5/5/2011 21:00 +Winter Garden,,TRIANGLE,FL,5/5/2011 21:00 +Hockley,RED GREEN,LIGHT,TX,5/5/2011 21:50 +Nampa,,TRIANGLE,ID,5/5/2011 22:00 +Barnegat,RED,,NJ,5/5/2011 23:00 +East Bethel,RED YELLOW,CIRCLE,MN,5/5/2011 23:00 +Sioux Falls,RED,CHEVRON,SD,5/5/2011 23:05 +Myrtle Beach,,FIREBALL,SC,5/5/2011 23:20 +Berkley Heights,,CIRCLE,NJ,5/6/2011 4:30 +LaPorte,,OVAL,IN,5/6/2011 9:12 +Lexington,RED,TRIANGLE,MA,5/6/2011 9:15 +Hunlock Creek,,TRIANGLE,PA,5/6/2011 14:00 +Topanga Canyon,,LIGHT,CA,5/6/2011 20:56 +Mendocino,,FIREBALL,CA,5/6/2011 21:45 +Huntsville,,TRIANGLE,AL,5/6/2011 22:10 +Colchester,,CHEVRON,VT,5/6/2011 23:20 +Winona,,EGG,MN,5/7/2011 0:00 +Sacramento,,OTHER,CA,5/7/2011 2:30 +Douglaston,,TRIANGLE,NY,5/7/2011 12:44 +Chicago,,CIRCLE,IL,5/7/2011 20:30 +Cambria,,,NY,5/7/2011 21:30 +Charleston,,OTHER,ME,5/7/2011 21:30 +Phoenix,,OVAL,AZ,5/7/2011 21:45 +Phoenix,,VARIOUS,AZ,5/7/2011 23:45 +Bolingbrook,,FIREBALL,IL,5/8/2011 0:30 +Visalia,GREEN,CYLINDER,CA,5/8/2011 3:30 +St. Petersburg,,OTHER,FL,5/8/2011 12:00 +Oroville,RED,CIRCLE,CA,5/8/2011 15:30 +Albuquerque,ORANGE,TRIANGLE,NM,5/8/2011 19:00 +Starkville,,CIRCLE,MS,5/8/2011 20:30 +Ivans,BLUE,,UT,5/8/2011 21:00 +Barnesville,,,OH,5/8/2011 21:23 +West Palm Beach,,LIGHT,FL,5/8/2011 21:50 +New Bedford,,LIGHT,MA,5/8/2011 22:15 +Bayfield,,DIAMOND,CO,5/8/2011 22:30 +Comptche,,,CA,5/8/2011 22:30 +Walnut Creek,ORANGE,VARIOUS,CA,5/8/2011 22:45 +Exeter,,DIAMOND,RI,5/8/2011 23:00 +Palo Cedro,RED,,CA,5/9/2011 2:00 +Sacramento,,DISK,CA,5/9/2011 9:35 +Barnesville,,TEARDROP,OH,5/9/2011 11:27 +Riddle,,RECTANGLE,OR,5/9/2011 20:00 +Mitchell,,OTHER,GA,5/9/2011 21:30 +Nice,,LIGHT,CA,5/9/2011 22:45 +Radford,GREEN,,VA,5/9/2011 22:46 +Palo Alto,RED BLUE,LIGHT,CA,5/10/2011 0:00 +Boise,,,ID,5/10/2011 0:07 +Phoenixville,,LIGHT,PA,5/10/2011 21:30 +Red Bluff,RED ORANGE,SPHERE,CA,5/11/2011 3:35 +North Palm Springs,,FIREBALL,CA,5/11/2011 4:00 +Pottsville,,,PA,5/11/2011 10:05 +Alpine,,SPHERE,KY,5/11/2011 12:05 +Wilno,,OTHER,MN,5/11/2011 13:00 +Manteno,RED,CONE,IL,5/11/2011 20:20 +Watauga,,LIGHT,TX,5/11/2011 20:45 +Alaska cruise,,LIGHT,AK,5/11/2011 21:00 +Columbia,,LIGHT,SC,5/11/2011 21:40 +Harrington,,,WA,5/11/2011 22:00 +Manteno,,CIRCLE,IL,5/11/2011 22:00 +Escondido,,LIGHT,CA,5/11/2011 22:35 +Alexandria,,FIREBALL,VA,5/12/2011 1:37 +Phoenix,,OVAL,AZ,5/12/2011 12:25 +Perryville,RED ORANGE,SPHERE,MO,5/12/2011 21:00 +East Dundee,,FIREBALL,IL,5/12/2011 22:50 +Lake Bluff,,FIREBALL,IL,5/12/2011 23:28 +Hermosa Beach,,LIGHT,CA,5/13/2011 1:20 +Hackensack,,CIRCLE,NJ,5/13/2011 2:22 +Norman,,FORMATION,OK,5/13/2011 10:30 +Port St Lucie,,OTHER,FL,5/13/2011 11:00 +Olivebridge,,LIGHT,NY,5/13/2011 21:00 +Paducah,,LIGHT,KY,5/13/2011 21:45 +Kermit,,TRIANGLE,TX,5/13/2011 22:00 +Rock Hill,,TRIANGLE,SC,5/13/2011 22:00 +New York City,,VARIOUS,NY,5/14/2011 2:50 +Elkins,ORANGE,LIGHT,WV,5/14/2011 9:00 +Plainview,,TRIANGLE,TX,5/14/2011 12:30 +Tucson,,CIGAR,AZ,5/14/2011 12:30 +Weston,,CIRCLE,FL,5/14/2011 13:00 +Aventura,,OVAL,FL,5/14/2011 17:30 +Columbus,,FORMATION,OH,5/14/2011 22:00 +Miami,,CIGAR,FL,5/14/2011 22:00 +Austin,GREEN,CIRCLE,TX,5/14/2011 23:00 +Lee's Summit,,DISK,MO,5/15/2011 3:50 +Janesville,,TRIANGLE,WI,5/15/2011 9:00 +Buena Park,,LIGHT,CA,5/15/2011 10:20 +Fontanna,,OVAL,CA,5/15/2011 11:00 +Sun City,ORANGE,TRIANGLE,AZ,5/15/2011 20:00 +Soddy Daisy,,TRIANGLE,TN,5/15/2011 20:20 +Portsmouth area,,,NH,5/15/2011 22:10 +East Troy,GREEN,TRIANGLE,WI,5/15/2011 23:10 +Fullerton,BLUE,FIREBALL,CA,5/16/2011 0:00 +Avon,ORANGE,LIGHT,MN,5/16/2011 0:30 +Fort Worth,,FORMATION,TX,5/16/2011 2:30 +LaPorte,,CIGAR,IN,5/16/2011 11:41 +Plainwell,,FLASH,MI,5/16/2011 22:00 +Davenport,,CIRCLE,IA,5/16/2011 22:15 +Sioiux City,,TRIANGLE,IA,5/17/2011 1:30 +Omaha,,TRIANGLE,NE,5/17/2011 17:20 +Kure Beach,ORANGE,FORMATION,NC,5/17/2011 21:00 +Anniston,,FIREBALL,AL,5/17/2011 22:30 +Highland Park,,RECTANGLE,IL,5/17/2011 22:30 +Gloucester,,DISK,MA,5/18/2011 0:30 +Belen,,OVAL,NM,5/18/2011 10:00 +Bellingham,,VARIOUS,WA,5/19/2011 0:00 +Ellensburg,,LIGHT,WA,5/19/2011 1:30 +Hayward,,LIGHT,CA,5/19/2011 2:11 +Elizabethtown,,OVAL,PA,5/19/2011 10:50 +Florence,,FIREBALL,SC,5/19/2011 12:30 +Arcata,,FORMATION,CA,5/19/2011 21:15 +Kansas City,,DISK,KS,5/20/2011 1:30 +Kirkland,,,WA,5/20/2011 12:00 +Longview,,FIREBALL,TX,5/20/2011 16:00 +Mussel Shoals,,,AL,5/20/2011 21:40 +Lincoln,BLUE,SPHERE,CA,5/20/2011 21:50 +Talking Rock,,CIRCLE,GA,5/20/2011 22:00 +Woodland Hills,,OVAL,CA,5/20/2011 22:30 +Mobile,,TRIANGLE,AL,5/20/2011 22:34 +Sherrill,,TRIANGLE,IA,5/20/2011 23:00 +Walla Walla,,,WA,5/20/2011 23:15 +Farmington,,LIGHT,UT,5/21/2011 1:00 +Magnolia,,SPHERE,NJ,5/21/2011 1:00 +Nashville,,OVAL,NC,5/21/2011 1:29 +Littleton,,DISK,CO,5/21/2011 5:15 +Olympia,RED,DIAMOND,WA,5/21/2011 10:35 +Lakeville,,LIGHT,MA,5/21/2011 18:00 +Charlotte,,,NC,5/21/2011 18:01 +Oxford,,FIREBALL,MI,5/21/2011 19:00 +Lincoln,,,AL,5/21/2011 19:50 +Royal Oak,BLUE,OVAL,MI,5/21/2011 20:00 +Maple Valley,,TRIANGLE,WA,5/21/2011 20:07 +Orland,,CIRCLE,ME,5/21/2011 20:51 +Mount Joy,,OTHER,PA,5/21/2011 21:30 +Jackson,,OTHER,TN,5/21/2011 22:15 +Concord,,CYLINDER,NC,5/22/2011 0:10 +Wichita,,SPHERE,KS,5/22/2011 1:00 +Summerville,,FIREBALL,SC,5/22/2011 8:10 +Americus,,OVAL,KS,5/22/2011 12:00 +Niceville,,DIAMOND,DE,5/22/2011 14:00 +Battle Creek,,TRIANGLE,MI,5/22/2011 16:00 +Lake Zurich,,TRIANGLE,IL,5/22/2011 19:00 +El Segundo,,DISK,CA,5/22/2011 19:01 +Northampton,YELLOW,FORMATION,MA,5/22/2011 19:04 +New York City,,TRIANGLE,NY,5/22/2011 19:31 +San Antonio,,DISK,TX,5/22/2011 20:15 +Florissant,,FLASH,CO,5/22/2011 22:00 +Manteno,ORANGE,FIREBALL,IL,5/22/2011 23:31 +LaPorte,,CIGAR,IN,5/23/2011 8:34 +South Kortright,,OVAL,NY,5/23/2011 10:30 +LaPorte,,CIRCLE,IN,5/23/2011 10:32 +Ord,RED,SPHERE,NE,5/23/2011 21:30 +Monee,ORANGE,LIGHT,IL,5/23/2011 23:30 +Cincinnati,,LIGHT,OH,5/24/2011 1:15 +Bay City,,LIGHT,MI,5/24/2011 4:00 +Lakeside,BLUE,CIRCLE,CA,5/24/2011 11:05 +San Diego,,,CA,5/24/2011 14:56 +Irving,,CIRCLE,TX,5/24/2011 21:00 +San Leandro,,TRIANGLE,CA,5/24/2011 22:15 +Manor,,LIGHT,TX,5/24/2011 22:48 +Fayetteville,,TRIANGLE,NC,5/25/2011 0:09 +Delafield,,FORMATION,WI,5/25/2011 1:24 +Benbrook,,OTHER,TX,5/25/2011 3:30 +Tallahassee,,TRIANGLE,FL,5/25/2011 5:20 +Cincinnati,,SPHERE,OH,5/25/2011 21:15 +Leesburg,,FORMATION,VA,5/25/2011 21:15 +Augusta,RED GREEN,LIGHT,MT,5/26/2011 1:00 +Sparks,,DISK,NV,5/26/2011 4:15 +Scotland,,CIRCLE,SD,5/26/2011 9:15 +Gamewell,,DISK,NC,5/26/2011 18:55 +Timnath,,CIRCLE,CO,5/26/2011 22:10 +Las Vegas,,FLASH,NV,5/26/2011 22:30 +Raleigh,RED,CIRCLE,NC,5/26/2011 23:00 +Mankato,,VARIOUS,MN,5/27/2011 14:30 +Yakima,,,WA,5/27/2011 15:30 +Englewood,,CIGAR,CO,5/27/2011 20:00 +Elkins,,CIRCLE,WV,5/27/2011 21:05 +Ingleside,ORANGE,CIRCLE,IL,5/27/2011 21:45 +Oak Harbor,ORANGE,CIRCLE,WA,5/27/2011 22:20 +Genoa Township,ORANGE,SPHERE,OH,5/28/2011 0:15 +Huntington Beach,,LIGHT,CA,5/28/2011 2:00 +Westminster,,VARIOUS,MD,5/28/2011 4:24 +Snyder,RED,RECTANGLE,TX,5/28/2011 4:30 +Joplin,,DISK,MO,5/28/2011 13:00 +North Wildwood,,FIREBALL,NJ,5/28/2011 18:00 +Dale,ORANGE,FIREBALL,IN,5/28/2011 21:00 +Niangua,,FIREBALL,MO,5/28/2011 21:00 +Port Republic,RED,FIREBALL,NJ,5/28/2011 21:15 +Buffalo,,,NY,5/28/2011 21:55 +Mercer Island,,OTHER,WA,5/28/2011 22:00 +New York City,,,NY,5/28/2011 22:00 +New York City,,DISK,NY,5/28/2011 22:00 +North Aurora,,VARIOUS,IL,5/28/2011 22:05 +Quincy,RED,LIGHT,MA,5/28/2011 22:17 +New Milford,,,CT,5/28/2011 22:18 +Cockeysville,,LIGHT,MD,5/28/2011 23:15 +Tucson,,FLASH,AZ,5/28/2011 23:20 +Kitsap County,YELLOW,VARIOUS,WA,5/28/2011 23:50 +El Paso,,OVAL,TX,5/29/2011 0:00 +Myrtle Beach,RED,OVAL,SC,5/29/2011 1:00 +Poplar Bluff,,CONE,MO,5/29/2011 4:05 +Burrton,,LIGHT,KS,5/29/2011 4:45 +Rockwall,,RECTANGLE,TX,5/29/2011 12:00 +Modesto,,,CA,5/29/2011 17:00 +Salem,,LIGHT,CT,5/29/2011 21:00 +Coral Springs,ORANGE,CIRCLE,FL,5/29/2011 21:30 +Davenport,,TRIANGLE,IA,5/29/2011 22:00 +Fremont,,LIGHT,CA,5/29/2011 22:10 +Lake Como,,CIRCLE,NJ,5/29/2011 23:00 +Ithaca,YELLOW,FORMATION,NY,5/29/2011 23:25 +Moon,,LIGHT,PA,5/29/2011 23:30 +York,ORANGE,LIGHT,SC,5/29/2011 23:30 +San Antonio,,OVAL,TX,5/30/2011 0:00 +Yavapai,,OTHER,AZ,5/30/2011 1:30 +Castle Pines,,LIGHT,CO,5/30/2011 4:15 +Pueblo West,,TRIANGLE,CO,5/30/2011 4:20 +Eleven Mile State Park,,LIGHT,CO,5/30/2011 4:30 +Redding,,DISK,CA,5/30/2011 16:15 +Huntington Beach,,RECTANGLE,CA,5/30/2011 19:45 +Herriman,,FIREBALL,UT,5/30/2011 21:00 +Wills Point,,,TX,5/30/2011 21:45 +Austin,,LIGHT,TX,5/30/2011 22:00 +Middletown,,LIGHT,DE,5/30/2011 22:50 +Kansas City,,CIRCLE,MO,5/31/2011 4:00 +Dunnellon,,LIGHT,FL,5/31/2011 5:45 +Chipita Park,,OVAL,CO,5/31/2011 13:45 +Lowrys,,LIGHT,SC,5/31/2011 22:14 +Saint Petersburg,,FLASH,FL,5/31/2011 22:15 +Wareham,,LIGHT,MA,5/31/2011 22:45 +St. Joseph,,CIRCLE,MO,5/31/2011 23:00 +Wareham,,LIGHT,MA,5/31/2011 23:00 +Bergen,,TRIANGLE,NY,6/1/2011 0:00 +La Veta,,RECTANGLE,CO,6/1/2011 0:00 +Osage Beach,,LIGHT,MO,6/1/2011 0:38 +Monroe,,LIGHT,MI,6/1/2011 3:00 +Highland Village,,OTHER,TX,6/1/2011 4:00 +Marked Tree,,LIGHT,AR,6/1/2011 4:00 +Paint Rock,,,TX,6/1/2011 5:15 +Pleasant Hill,,OTHER,OH,6/1/2011 15:20 +Elk Grove,,OTHER,CA,6/1/2011 18:10 +DeBordieu Beach,,FORMATION,SC,6/1/2011 20:30 +Brooklyn Park,RED,SPHERE,MN,6/1/2011 22:00 +Little Rock,,,AR,6/1/2011 22:00 +Holden Beach,,CIRCLE,NC,6/1/2011 22:30 +Lancaster,,CIRCLE,PA,6/1/2011 22:30 +Perrysburg,RED,CIRCLE,OH,6/1/2011 23:00 +Montclair,,TRIANGLE,CA,6/2/2011 1:19 +Upland,,TRIANGLE,CA,6/2/2011 20:00 +St. Louis,GREEN,CIRCLE,MO,6/2/2011 20:50 +St. Charles,GREEN,LIGHT,MO,6/2/2011 20:55 +St. Augustine,,LIGHT,FL,6/2/2011 21:00 +Roxana or Wood River,GREEN,FIREBALL,IL,6/2/2011 22:00 +Seabeck,,LIGHT,WA,6/2/2011 22:00 +Auburn,,OTHER,WA,6/2/2011 22:05 +Carthage,,LIGHT,TN,6/2/2011 22:30 +Florissant,GREEN,LIGHT,MO,6/2/2011 23:00 +Arcata,,FLASH,CA,6/2/2011 23:30 +Lancaster,,SPHERE,PA,6/3/2011 1:00 +Sun Valley,,FIREBALL,CA,6/3/2011 7:00 +Seattle,,SPHERE,WA,6/3/2011 8:40 +Montgomery,,,NY,6/3/2011 9:01 +Kenefic,,OTHER,OK,6/3/2011 12:00 +Solvang,,,CA,6/3/2011 13:45 +Mills,,CIRCLE,WY,6/3/2011 15:00 +Clearwater,RED,LIGHT,FL,6/3/2011 21:00 +Burlington,,FORMATION,NC,6/3/2011 21:15 +High Rock Lake,ORANGE,LIGHT,NC,6/3/2011 21:30 +Cuba,RED,SPHERE,NY,6/3/2011 22:00 +Portland,ORANGE,LIGHT,ME,6/3/2011 22:00 +St. Charles,,SPHERE,IL,6/3/2011 22:22 +Swartz Creek,ORANGE,FIREBALL,MI,6/3/2011 23:00 +Belton,,TRIANGLE,TX,6/3/2011 23:30 +Federal Way,,FLASH,WA,6/4/2011 1:00 +Monroe,,CIRCLE,WA,6/4/2011 3:45 +Downey,,RECTANGLE,CA,6/4/2011 9:00 +Kailua-Kona,,OTHER,HI,6/4/2011 9:00 +Powell,ORANGE,LIGHT,OH,6/4/2011 9:45 +Avon,,DISK,CT,6/4/2011 12:40 +Menasha,,,WI,6/4/2011 21:30 +Rochester,,FIREBALL,NY,6/4/2011 21:30 +Beacon,,TRIANGLE,NY,6/4/2011 22:10 +Vacaville,RED ORANGE,OTHER,CA,6/4/2011 22:30 +Boston,,LIGHT,MA,6/4/2011 23:00 +Ogden,GREEN,OTHER,UT,6/5/2011 2:15 +St. Augustine,,SPHERE,FL,6/5/2011 14:18 +Buffalo,,DIAMOND,NY,6/5/2011 14:38 +St. Augustine,,LIGHT,FL,6/5/2011 21:23 +Omaha,,TRIANGLE,NE,6/5/2011 22:11 +Lawton,,SPHERE,OK,6/5/2011 22:56 +Ottawa Lake,,VARIOUS,MI,6/6/2011 0:00 +Signal Mountain,,SPHERE,TN,6/6/2011 5:30 +Lyons,ORANGE,OTHER,PA,6/6/2011 10:15 +San Tan Valley,,EGG,AZ,6/6/2011 14:30 +Barrington Hills,RED,,IL,6/6/2011 21:10 +Dubuque,RED ORANGE,LIGHT,IA,6/6/2011 22:00 +Apple Valley,,,CA,6/6/2011 22:05 +Somerville,,LIGHT,NJ,6/6/2011 23:31 +Manchester,,SPHERE,TN,6/7/2011 1:30 +Mount Pulaski,RED,LIGHT,IL,6/7/2011 10:05 +Rancho Mirage,,FORMATION,CA,6/7/2011 11:00 +La Porte,,SPHERE,IN,6/7/2011 11:11 +Westminster,,CIRCLE,CO,6/7/2011 17:45 +Huntington,,FLASH,NY,6/7/2011 21:29 +Pasadena,,LIGHT,MD,6/7/2011 22:00 +Palermo,ORANGE,LIGHT,NY,6/7/2011 22:30 +Southport,,FORMATION,NC,6/8/2011 21:00 +Litchfield Beach,,CIRCLE,SC,6/8/2011 21:30 +North Myrtle Beach,,FIREBALL,SC,6/8/2011 21:30 +Ocracoke,,OTHER,NC,6/8/2011 21:30 +Pawleys Island,ORANGE,SPHERE,SC,6/8/2011 21:30 +Sunset Beach,,SPHERE,NC,6/8/2011 21:30 +Pawleys Island,ORANGE,,SC,6/8/2011 21:31 +Myrtle Beach,ORANGE,FORMATION,SC,6/8/2011 21:45 +Holden Beach,ORANGE,LIGHT,NC,6/8/2011 22:00 +Plainville,BLUE,CIRCLE,CT,6/8/2011 22:30 +Yakima,,LIGHT,WA,6/9/2011 2:40 +Hartford,,LIGHT,CT,6/9/2011 3:30 +I-95,,FIREBALL,NC,6/9/2011 11:00 +Indianapolis,,OVAL,IN,6/9/2011 21:30 +Monrovia,RED,,AL,6/9/2011 22:00 +West Seattle,RED,SPHERE,WA,6/9/2011 22:00 +North Aurora,ORANGE YELLOW,LIGHT,IL,6/9/2011 23:50 +Medford,,CIRCLE,OR,6/10/2011 0:00 +New Rochelle,,,NY,6/10/2011 9:00 +Maplewood,,EGG,MO,6/10/2011 19:45 +Louisville,,FIREBALL,CO,6/10/2011 21:00 +Red Oak,,TRIANGLE,TX,6/10/2011 21:00 +Frankfort,ORANGE,LIGHT,IL,6/10/2011 21:05 +Lewistown,,FIREBALL,PA,6/10/2011 21:22 +Pawling,,FIREBALL,NY,6/10/2011 23:00 +Antioch,,CIRCLE,CA,6/10/2011 23:20 +Lake Stevens,,,WA,6/11/2011 0:00 +Richardson,,SPHERE,TX,6/11/2011 15:00 +San pedro,,SPHERE,CA,6/11/2011 16:00 +Chesaw,,OTHER,WA,6/11/2011 16:30 +Denver,,OTHER,CO,6/11/2011 17:35 +Franklin,RED,CIGAR,PA,6/11/2011 20:30 +Fairmont,,FIREBALL,WV,6/11/2011 21:00 +Nelsonville,,CIRCLE,OH,6/11/2011 21:50 +Winter Garden,,VARIOUS,FL,6/11/2011 22:00 +West Bloomfield,ORANGE,,MI,6/11/2011 22:28 +Wheeling,YELLOW,LIGHT,WV,6/11/2011 22:30 +Lakewood,,OTHER,WA,6/12/2011 0:00 +Jensen Beach,BLUE,SPHERE,FL,6/12/2011 5:00 +Woodstock,,CIRCLE,IL,6/12/2011 9:00 +Lincoln City,RED ORANGE,FIREBALL,OR,6/12/2011 22:00 +Waukee,,CIRCLE,IA,6/12/2011 22:30 +Yakima,,LIGHT,WA,6/12/2011 22:45 +Hudson Falls,,OTHER,NY,6/12/2011 22:56 +Lafayette,ORANGE,LIGHT,OH,6/12/2011 23:00 +Lubbock,,OVAL,TX,6/13/2011 0:00 +Green Bay,,DISK,WI,6/13/2011 1:00 +Bay City,,,MI,6/13/2011 2:00 +Erin,,VARIOUS,WI,6/13/2011 2:35 +Beacon Falls,,OTHER,CT,6/13/2011 3:00 +Durango,,DISK,CO,6/13/2011 16:00 +Annapolis,,CYLINDER,MD,6/13/2011 20:00 +Hillsville,,CIGAR,VA,6/13/2011 20:15 +Banks,,SPHERE,OR,6/13/2011 21:00 +Florence,,SPHERE,KY,6/13/2011 21:17 +Ardenvoir,,LIGHT,WA,6/13/2011 22:18 +Leavenworth,,TRIANGLE,WA,6/13/2011 22:21 +Greensboro,GREEN,TEARDROP,NC,6/13/2011 22:30 +Ardenvoir,,LIGHT,WA,6/13/2011 23:57 +Winnsboro,BLUE,OTHER,TX,6/14/2011 0:00 +Indianapolis,,,IN,6/14/2011 0:10 +Las Vegas,,TEARDROP,NV,6/14/2011 9:45 +Long Lane,ORANGE,SPHERE,MO,6/14/2011 16:00 +Pinole,,SPHERE,CA,6/14/2011 21:15 +Frisco,,LIGHT,NC,6/14/2011 21:30 +Mercer Island,RED,LIGHT,WA,6/14/2011 21:30 +Bellevue,,LIGHT,WA,6/14/2011 22:00 +Astoria,,CIGAR,NY,6/14/2011 22:25 +Lindon,,RECTANGLE,UT,6/14/2011 22:30 +Lemont,,CIRCLE,IL,6/14/2011 22:45 +New York City,,SPHERE,NY,6/14/2011 23:30 +Roswell,,CIRCLE,GA,6/15/2011 1:00 +Pennellville,,LIGHT,NY,6/15/2011 3:00 +Warren,,TRIANGLE,NJ,6/15/2011 4:15 +Westminster,,LIGHT,SC,6/15/2011 5:16 +Buxton,,LIGHT,NC,6/15/2011 9:00 +Plymouth,,,MA,6/15/2011 10:42 +Santa Rosa,,,CA,6/15/2011 11:20 +Great Falls,,CHEVRON,MT,6/15/2011 19:00 +Memphis,,CIGAR,TN,6/15/2011 20:15 +Chalmette,,LIGHT,LA,6/15/2011 20:50 +Eureka,,LIGHT,NV,6/15/2011 21:00 +Ocracoke,RED,,VA,6/15/2011 21:15 +Frisco,,LIGHT,NC,6/15/2011 21:27 +Frisco,,FORMATION,NC,6/15/2011 21:30 +Ocracoke,,LIGHT,NC,6/15/2011 21:30 +Loveland,,LIGHT,OH,6/15/2011 22:00 +Bohemia,,OTHER,NY,6/15/2011 22:30 +Middletown,,VARIOUS,DE,6/15/2011 23:20 +Corydon,,LIGHT,IN,6/15/2011 23:30 +Saugus,ORANGE,,MA,6/15/2011 23:30 +Redding,,LIGHT,CA,6/16/2011 0:00 +Gila Bend,,TRIANGLE,AZ,6/16/2011 1:00 +Navasota,,LIGHT,TX,6/16/2011 4:04 +Muskogee,,LIGHT,OK,6/16/2011 5:55 +Oak Harbor,,SPHERE,WA,6/16/2011 17:00 +Doylestown,,VARIOUS,PA,6/16/2011 18:00 +Ocean Isle Beach,,LIGHT,NC,6/16/2011 20:00 +Anaheim,,DISK,CA,6/16/2011 21:00 +Milton,ORANGE,FORMATION,FL,6/16/2011 21:00 +Winchester,,OTHER,IN,6/16/2011 23:20 +Green River,RED GREEN,SPHERE,WY,6/16/2011 23:30 +St. Charles,BLUE,DISK,MO,6/16/2011 23:34 +Naples,,,FL,6/17/2011 0:00 +Plum Boro,,OTHER,PA,6/17/2011 0:00 +Tinton Falls,,CIRCLE,NJ,6/17/2011 0:00 +Oak Island,,LIGHT,NC,6/17/2011 0:32 +Mebane,,,NC,6/17/2011 1:17 +Yacolt,,DISK,WA,6/17/2011 3:15 +Baton Rouge,,CIRCLE,LA,6/17/2011 10:50 +Goshen,,LIGHT,IN,6/17/2011 14:30 +Campbellsville,,OTHER,KY,6/17/2011 20:00 +Wharton,RED,TRIANGLE,NJ,6/17/2011 21:00 +Cicero,,FIREBALL,NY,6/17/2011 21:30 +Spring City,RED ORANGE,FIREBALL,TN,6/17/2011 22:00 +Redondo Beach,RED,FIREBALL,CA,6/17/2011 22:45 +Eugene,,LIGHT,OR,6/17/2011 23:30 +Burlington,,LIGHT,VT,6/17/2011 23:45 +Chicago,ORANGE,CIRCLE,IL,6/18/2011 0:00 +Hillsboro,,TEARDROP,OR,6/18/2011 2:10 +Spring Valley,,CIRCLE,CA,6/18/2011 17:20 +Monaca,,,PA,6/18/2011 22:00 +Fayetteville,,FIREBALL,AR,6/18/2011 22:18 +Massillon,ORANGE,CONE,OH,6/18/2011 22:30 +Hockley,,TEARDROP,TX,6/18/2011 22:45 +Bethpage,,OVAL,NY,6/18/2011 23:00 +Bethpage,RED,OVAL,NY,6/18/2011 23:00 +Moreauville,,LIGHT,LA,6/18/2011 23:15 +Fall River,,CIRCLE,MA,6/18/2011 23:30 +Ardenvoir,,LIGHT,WA,6/18/2011 23:33 +Spicewood,,CYLINDER,TX,6/19/2011 9:00 +Maple Glen,,RECTANGLE,PA,6/19/2011 14:30 +Clifton,,CIRCLE,NJ,6/19/2011 20:15 +Boca Raton,,DIAMOND,FL,6/19/2011 20:45 +New York City,,FIREBALL,NY,6/19/2011 21:30 +Pittsburgh,,SPHERE,PA,6/19/2011 21:45 +Chicago,,OVAL,IL,6/19/2011 22:30 +Albany,,FIREBALL,NY,6/19/2011 23:00 +Indianapolis,ORANGE,LIGHT,IN,6/19/2011 23:38 +Parsippany,ORANGE YELLOW,OTHER,NJ,6/19/2011 23:45 +Parsippany,RED ORANGE YELLOW,OTHER,NJ,6/19/2011 23:45 +Gastonia,,,NC,6/20/2011 10:30 +Mt. Vernon,,DISK,WA,6/20/2011 12:00 +North Hills,,SPHERE,CA,6/20/2011 16:10 +Lafayette,,DISK,CO,6/20/2011 18:00 +Mountain View,,LIGHT,CA,6/20/2011 22:00 +Naples,,,ME,6/20/2011 22:00 +Moline,,TRIANGLE,IL,6/20/2011 22:30 +Santa Cruz,,LIGHT,CA,6/21/2011 0:00 +Springfield,,CYLINDER,MA,6/21/2011 0:00 +Loon Lake,,OVAL,WA,6/21/2011 2:00 +Portland,,,OR,6/21/2011 8:00 +Saco,,OVAL,ME,6/21/2011 9:00 +La Porte,,SPHERE,IN,6/21/2011 11:12 +St. Maries,,SPHERE,ID,6/21/2011 13:00 +San Fernando Valley,,DIAMOND,CA,6/21/2011 15:57 +Simi Valley,,DISK,CA,6/21/2011 20:45 +Kihei,,OTHER,HI,6/21/2011 21:00 +Lake Havasu City,ORANGE,SPHERE,AZ,6/21/2011 22:00 +Vacaville,,LIGHT,CA,6/21/2011 23:00 +Virginia Beach,RED,LIGHT,VA,6/21/2011 23:00 +Lake Havasu City,,FLASH,AZ,6/21/2011 23:30 +Ontario,YELLOW,LIGHT,OR,6/22/2011 4:22 +Crystal Lake,,OVAL,IL,6/22/2011 7:30 +Hudson Falls,GREEN,FIREBALL,NY,6/22/2011 14:36 +Erin,,VARIOUS,WI,6/22/2011 18:42 +Pomona,,FIREBALL,NY,6/22/2011 21:00 +Lafayette,,LIGHT,LA,6/23/2011 1:00 +Wethersfield,,VARIOUS,CT,6/23/2011 17:45 +Quincy,,OTHER,IL,6/23/2011 21:00 +San Geronimo,,OVAL,CA,6/23/2011 21:00 +Louisville,,LIGHT,CO,6/23/2011 22:19 +Lakewood,RED,,WA,6/23/2011 22:30 +Moore,BLUE,LIGHT,OK,6/23/2011 22:55 +Leander,RED,,TX,6/24/2011 2:15 +New Carrollton,,OTHER,MD,6/24/2011 3:00 +Elizabethton,ORANGE,LIGHT,TN,6/24/2011 10:30 +Rockford,,OTHER,IL,6/24/2011 11:45 +Everett,,RECTANGLE,WA,6/24/2011 15:00 +Amargosa Valley,,OTHER,NV,6/24/2011 19:00 +Pikeville,,VARIOUS,KY,6/24/2011 20:30 +Canandaigua,,LIGHT,NY,6/24/2011 21:00 +Seminary,,CIRCLE,MS,6/24/2011 22:30 +Hoisington,,,KS,6/24/2011 22:45 +Babbitt,,CIRCLE,MN,6/24/2011 23:00 +Citrus Heights,,FORMATION,CA,6/24/2011 23:05 +Levan,,LIGHT,UT,6/25/2011 0:00 +Oklahoma City,,CIRCLE,OK,6/25/2011 0:00 +Stanley,,LIGHT,ID,6/25/2011 1:00 +Georgetown,,VARIOUS,TX,6/25/2011 9:30 +Yakima,,LIGHT,WA,6/25/2011 12:30 +Carey,,RECTANGLE,ID,6/25/2011 16:40 +Mukwonago,ORANGE,,WI,6/25/2011 21:00 +North Muskegon,ORANGE,LIGHT,MI,6/25/2011 21:45 +Clarksburg,,LIGHT,WV,6/25/2011 22:00 +Fort Mill,,LIGHT,SC,6/25/2011 22:00 +Lexingon Heights,ORANGE BLUE,,MI,6/25/2011 22:00 +Bristol,,LIGHT,CT,6/25/2011 22:30 +Gastonia,,LIGHT,NC,6/25/2011 22:30 +Fontana,,OTHER,CA,6/25/2011 22:35 +Spanaway,,LIGHT,WA,6/25/2011 23:00 +St. Louis,,TRIANGLE,MO,6/25/2011 23:00 +Texico,,LIGHT,NM,6/25/2011 23:05 +Yellowstone National Park,,FLASH,WY,6/25/2011 23:30 +Spanaway,,TRIANGLE,WA,6/25/2011 23:34 +Richardson,RED GREEN,TRIANGLE,TX,6/25/2011 23:48 +Dayville,,VARIOUS,CT,6/26/2011 3:15 +Highland Park,,FIREBALL,NJ,6/26/2011 21:30 +Dayton,,CIRCLE,OH,6/26/2011 22:00 +Fayetteville,,TRIANGLE,NC,6/26/2011 22:00 +Willits,ORANGE,OVAL,CA,6/26/2011 22:00 +Camp Seph Mack,ORANGE,CIRCLE,PA,6/26/2011 22:33 +Fort Collins,,LIGHT,CO,6/26/2011 23:00 +Lebanon,ORANGE,CIRCLE,OR,6/26/2011 23:00 +North Babylon,,LIGHT,NY,6/26/2011 23:30 +Hampton,,,VA,6/27/2011 19:00 +Hampton,,OTHER,VA,6/27/2011 19:00 +Milwaukee,RED,LIGHT,WI,6/27/2011 20:10 +Antioch,,TRIANGLE,IL,6/27/2011 22:00 +Holden Beach,ORANGE,LIGHT,NC,6/27/2011 22:15 +Stamford,BLUE,LIGHT,CT,6/27/2011 22:37 +Pfafftown,,OVAL,NC,6/27/2011 23:08 +Ferndale,,TRIANGLE,WA,6/28/2011 2:55 +Henderson,,FIREBALL,NV,6/28/2011 3:50 +Myrtle Beach,,,SC,6/28/2011 10:35 +Denver,,SPHERE,CO,6/28/2011 11:40 +Littleton,,SPHERE,CO,6/28/2011 11:41 +Erie,RED BLUE,CIGAR,PA,6/28/2011 14:55 +Browns Mills,,TEARDROP,NJ,6/28/2011 17:10 +Black River Falls,ORANGE,FIREBALL,WI,6/28/2011 17:30 +Springfield,,TRIANGLE,MO,6/28/2011 18:50 +Ames,,LIGHT,IA,6/28/2011 20:00 +Hermitage,,TRIANGLE,TN,6/28/2011 20:30 +Ocean Isle Beach,,LIGHT,NC,6/28/2011 20:30 +Ocean Isle Beach,,LIGHT,NC,6/28/2011 21:00 +North Myrtle Beach,ORANGE,TRIANGLE,SC,6/28/2011 21:25 +Litchfield Beach,,LIGHT,SC,6/28/2011 21:30 +Angola,RED,OVAL,IN,6/28/2011 22:00 +Osage beach,,DISK,MO,6/28/2011 22:34 +Isle la Motte,,VARIOUS,VT,6/28/2011 23:00 +Lemont,,SPHERE,IL,6/28/2011 23:00 +Lexington,,SPHERE,KY,6/28/2011 23:00 +Plymouth,,FIREBALL,MI,6/28/2011 23:00 +Miami Township,,SPHERE,OH,6/28/2011 23:15 +Thompsons Station,ORANGE,CIRCLE,TN,6/28/2011 23:30 +Harvard,,LIGHT,IL,6/28/2011 23:45 +Waretown,ORANGE,TRIANGLE,NJ,6/29/2011 1:20 +Dexter,,LIGHT,MO,6/29/2011 1:45 +Evansville,,LIGHT,IN,6/29/2011 2:15 +Porterville,,DISK,CA,6/29/2011 4:00 +Osage Beach,,DISK,MO,6/29/2011 20:45 +Dover,,,NH,6/29/2011 21:00 +San Diego,,LIGHT,CA,6/29/2011 21:00 +South Myrtle Beach Pier,ORANGE,OVAL,SC,6/29/2011 21:00 +Corpus Christi,,FIREBALL,TX,6/29/2011 21:18 +Jeannette,,LIGHT,PA,6/29/2011 22:00 +Fruitland,,LIGHT,MD,6/29/2011 22:04 +Modesto,RED,LIGHT,CA,6/29/2011 22:15 +New York City,,LIGHT,NY,6/29/2011 22:15 +Modesto,,DIAMOND,CA,6/29/2011 22:19 +Rancho Palos Verdes,,SPHERE,CA,6/29/2011 22:30 +Bridgeport,,CIRCLE,CT,6/29/2011 22:45 +Visalia,,LIGHT,CA,6/29/2011 22:55 +Rayne,,LIGHT,LA,6/29/2011 23:25 +Lexington,ORANGE,SPHERE,KY,6/29/2011 23:50 +North Shore Oahu,,OVAL,HI,6/30/2011 0:00 +Phoenix,,OTHER,AZ,6/30/2011 0:00 +Fort Collins,,FLASH,CO,6/30/2011 0:20 +Terre Haute,,OVAL,IN,6/30/2011 2:00 +Dardanelle,,LIGHT,AR,6/30/2011 3:50 +Chicago,,TEARDROP,IL,6/30/2011 9:30 +Darien,,CIRCLE,IL,6/30/2011 9:35 +Falls of Rough,,TRIANGLE,KY,6/30/2011 17:00 +Richmond,BLUE,CIGAR,KY,6/30/2011 17:00 +Ottawa,,SPHERE,KS,6/30/2011 20:40 +Grand Rapids,,TEARDROP,MN,6/30/2011 21:00 +Ocean Isle Beach,,LIGHT,NC,6/30/2011 21:00 +Nags Head,RED ORANGE,SPHERE,NC,6/30/2011 21:10 +Lawrenceburg,,OVAL,TN,6/30/2011 21:30 +Salem,,EGG,IL,6/30/2011 21:53 +Wyoming,,TRIANGLE,MI,6/30/2011 22:00 +Cape Girardeau,,LIGHT,MO,6/30/2011 22:08 +Shepherdsville,,CIRCLE,KY,6/30/2011 23:00 +Taos,,LIGHT,NM,6/30/2011 23:09 +San Diego,,LIGHT,CA,6/30/2011 23:14 +Modena,,LIGHT,NY,6/30/2011 23:30 +Lafollette,,TRIANGLE,TN,7/1/2011 0:00 +Mansfield,,LIGHT,MA,7/1/2011 0:05 +Myrtle Beach,ORANGE,CIRCLE,SC,7/1/2011 0:20 +Gaithersburg,,TRIANGLE,MD,7/1/2011 0:50 +Cincinnati,RED ORANGE,RECTANGLE,IN,7/1/2011 1:00 +Dansville,ORANGE,SPHERE,NY,7/1/2011 1:00 +Woodland,,,CA,7/1/2011 4:00 +Riverdale,,CIRCLE,UT,7/1/2011 10:00 +Seaside,,TRIANGLE,CA,7/1/2011 11:10 +Bardstown,,FIREBALL,KY,7/1/2011 19:00 +Temecula,,FIREBALL,CA,7/1/2011 19:00 +Kinderhook,,VARIOUS,MI,7/1/2011 20:30 +Eveleth,ORANGE,SPHERE,MN,7/1/2011 21:00 +Gypsum,,CHEVRON,CO,7/1/2011 21:30 +Northfield,,FIREBALL,MN,7/1/2011 21:30 +Belton,,CROSS,MO,7/1/2011 21:45 +Ontario,,OVAL,NY,7/1/2011 21:45 +Washington,,TRIANGLE,MO,7/1/2011 21:45 +Winston-Salem,,LIGHT,NC,7/1/2011 21:58 +Brooklyn Park,,FIREBALL,MN,7/1/2011 22:00 +Carrie,,CIRCLE,KY,7/1/2011 22:00 +Nashville,,SPHERE,TN,7/1/2011 22:00 +Orlando,RED,TRIANGLE,FL,7/1/2011 22:00 +Bay City,,FIREBALL,MI,7/1/2011 22:15 +Yankton,,,SD,7/1/2011 22:20 +Cuyahoga Falls,,CIRCLE,OH,7/1/2011 22:30 +Greencastle,,LIGHT,IN,7/1/2011 22:40 +McKinney,,CIRCLE,TX,7/1/2011 23:00 +McKeesport,,LIGHT,PA,7/1/2011 23:35 +Albany,,FIREBALL,NY,7/1/2011 23:45 +Dunmore,RED,CIRCLE,PA,7/2/2011 1:00 +Baldwin County,,LIGHT,AL,7/2/2011 3:00 +Central Point,,FLASH,OR,7/2/2011 4:30 +Charlotte,,CROSS,NC,7/2/2011 5:00 +Waterville,,CIRCLE,ME,7/2/2011 9:00 +Orlando,,CIRCLE,FL,7/2/2011 14:30 +Albertville,,VARIOUS,MN,7/2/2011 15:00 +Blue Ridge Summit,,SPHERE,PA,7/2/2011 17:00 +Washington,,DISK,NY,7/2/2011 17:00 +St. Mary,BLUE,OVAL,MT,7/2/2011 18:00 +Horse Cave,ORANGE,SPHERE,KY,7/2/2011 19:30 +Milford,,OVAL,MI,7/2/2011 20:00 +Owensboro,ORANGE,LIGHT,KY,7/2/2011 20:15 +Hilo,,LIGHT,HI,7/2/2011 20:20 +Greenwood,GREEN,FIREBALL,IN,7/2/2011 20:30 +Oologah,ORANGE,LIGHT,OK,7/2/2011 21:00 +Ramona,,CIRCLE,CA,7/2/2011 21:05 +Englewood,ORANGE,DISK,CO,7/2/2011 21:30 +Gillham,,LIGHT,AR,7/2/2011 21:30 +Maylene,,FIREBALL,AL,7/2/2011 21:32 +Newton,ORANGE,FIREBALL,KS,7/2/2011 21:40 +Nucla,,LIGHT,CO,7/2/2011 21:40 +Santa Fe,RED,LIGHT,TX,7/2/2011 22:00 +Manhattan,,FIREBALL,IL,7/2/2011 22:15 +Lake Cumberland,,SPHERE,KY,7/2/2011 22:25 +Fox Lake,ORANGE,LIGHT,IL,7/2/2011 22:30 +Moncks Corner,,LIGHT,SC,7/2/2011 22:30 +Russell Springs,,LIGHT,KY,7/2/2011 22:30 +Cleora,RED ORANGE,CYLINDER,OK,7/2/2011 23:00 +Friendship,ORANGE,SPHERE,WI,7/2/2011 23:00 +Brownstown,,CONE,IL,7/2/2011 23:26 +Edgerton,ORANGE,SPHERE,WI,7/3/2011 0:30 +Crete,,SPHERE,IL,7/3/2011 1:00 +Steger,RED,LIGHT,IL,7/3/2011 1:00 +Charlotte,ORANGE,LIGHT,NC,7/3/2011 3:00 +Minneapolis,,OTHER,MN,7/3/2011 3:00 +Litchfield Park,,FLASH,AZ,7/3/2011 3:40 +Denver,,LIGHT,CO,7/3/2011 8:00 +Red Feather area,,OTHER,CO,7/3/2011 8:03 +Inkster,,,MI,7/3/2011 10:45 +Wentzville,,SPHERE,MO,7/3/2011 14:00 +Burbank,,DISK,CA,7/3/2011 16:00 +Gastonia,,SPHERE,NC,7/3/2011 16:00 +Raymore,,FIREBALL,MO,7/3/2011 16:00 +Tinley Park,,LIGHT,IL,7/3/2011 18:57 +Brooksville,ORANGE GREEN,CIGAR,FL,7/3/2011 19:00 +Grand Junction,,FIREBALL,CO,7/3/2011 20:20 +Easton,ORANGE,DISK,PA,7/3/2011 20:30 +Bristol,ORANGE,FIREBALL,CT,7/3/2011 21:00 +Eldorado,,VARIOUS,IL,7/3/2011 21:00 +Esperance,,FORMATION,NY,7/3/2011 21:00 +Fresno,,LIGHT,CA,7/3/2011 21:00 +Little Gasparilla Island,ORANGE,CIGAR,FL,7/3/2011 21:00 +Moncks Corner,,LIGHT,SC,7/3/2011 21:00 +Mt. Washington,,CIRCLE,KY,7/3/2011 21:00 +Isle of Palms,,FIREBALL,SC,7/3/2011 21:15 +Mableton,,SPHERE,GA,7/3/2011 21:15 +Mableton,,SPHERE,GA,7/3/2011 21:15 +Mableton,,SPHERE,GA,7/3/2011 21:15 +Mableton,RED,SPHERE,GA,7/3/2011 21:15 +Patton,,LIGHT,PA,7/3/2011 21:24 +Poulsbo,,OVAL,WA,7/3/2011 21:26 +Barrington,ORANGE,LIGHT,IL,7/3/2011 21:30 +Onalaska,RED,FIREBALL,WI,7/3/2011 21:30 +Patton,,LIGHT,PA,7/3/2011 21:30 +Hanover Township,,TEARDROP,PA,7/3/2011 21:45 +Kelso,,CYLINDER,WA,7/3/2011 21:45 +Louisville,ORANGE,LIGHT,KY,7/3/2011 21:45 +St. Joseph,,FIREBALL,MO,7/3/2011 21:45 +Harrisonburg,ORANGE,CYLINDER,VA,7/3/2011 21:50 +Battle Creek,,TRIANGLE,MI,7/3/2011 22:00 +Broken Arrow,ORANGE,CYLINDER,OK,7/3/2011 22:00 +Cape Lookout,RED,RECTANGLE,NC,7/3/2011 22:00 +Eugene,ORANGE,OTHER,OR,7/3/2011 22:00 +Lake Roosevelt,RED,LIGHT,WA,7/3/2011 22:00 +Longview,RED,FIREBALL,WA,7/3/2011 22:00 +Louisville,,FIREBALL,KY,7/3/2011 22:00 +Moses Lake,,FIREBALL,WA,7/3/2011 22:00 +Riverview,,CIRCLE,WI,7/3/2011 22:00 +Spokane,RED,FIREBALL,WA,7/3/2011 22:00 +Whitehall,,LIGHT,PA,7/3/2011 22:00 +Bandera,,TRIANGLE,TX,7/3/2011 22:10 +Bradenton Beach,,OTHER,FL,7/3/2011 22:10 +Oak Lawn,,CIRCLE,IL,7/3/2011 22:10 +Pasadena,,CIRCLE,MD,7/3/2011 22:10 +Sylvania,,LIGHT,OH,7/3/2011 22:12 +Williamston,RED ORANGE,LIGHT,MI,7/3/2011 22:15 +Butte,,SPHERE,MT,7/3/2011 22:20 +Catawissa,,FIREBALL,MO,7/3/2011 22:30 +Conneaut Lake,,CIRCLE,PA,7/3/2011 22:30 +Crystal Lake,,,IL,7/3/2011 22:30 +Waverly,ORANGE,LIGHT,NE,7/3/2011 22:30 +Nampa,RED,FIREBALL,ID,7/3/2011 22:50 +East Orange,,FIREBALL,NJ,7/3/2011 23:00 +Joliet,,FIREBALL,IL,7/3/2011 23:00 +Millersville,RED,LIGHT,TX,7/3/2011 23:00 +Puerto Rico,,LIGHT,FL,7/3/2011 23:00 +Butte,ORANGE,FIREBALL,MT,7/3/2011 23:30 +Waterloo,,LIGHT,IA,7/3/2011 23:40 +West Lafayette,,FIREBALL,IN,7/3/2011 23:55 +Saint Paul,,TRIANGLE,MN,7/4/2011 0:01 +Saint Paul,,TRIANGLE,MN,7/4/2011 0:01 +Springdale,,TRIANGLE,AR,7/4/2011 0:05 +Beaverton,,FIREBALL,OR,7/4/2011 0:48 +Cleveland,,FIREBALL,OH,7/4/2011 1:50 +Neenah,ORANGE,,WI,7/4/2011 1:56 +Hastings,,LIGHT,MN,7/4/2011 3:00 +Chino,,DISK,CA,7/4/2011 8:00 +Natick,,FIREBALL,MA,7/4/2011 9:30 +Lorane,,TRIANGLE,OR,7/4/2011 13:00 +New York,,LIGHT,NY,7/4/2011 18:30 +Grand Rives,,LIGHT,KY,7/4/2011 19:00 +West Seattle,,SPHERE,WA,7/4/2011 19:00 +Snoqualmie,RED,LIGHT,WA,7/4/2011 19:30 +Coral Springs,,CIRCLE,FL,7/4/2011 20:00 +Elizabethtown,ORANGE,CIRCLE,KY,7/4/2011 20:00 +Lakeland,RED YELLOW,TRIANGLE,FL,7/4/2011 20:00 +Rolla,,FIREBALL,MO,7/4/2011 20:00 +Vancouver,,,WA,7/4/2011 20:00 +Cottonwood,RED,CIRCLE,AZ,7/4/2011 20:30 +Imlay City,YELLOW,LIGHT,MI,7/4/2011 20:30 +Lake Junaluska,RED,TRIANGLE,NC,7/4/2011 20:30 +Ocean Beach,,LIGHT,CA,7/4/2011 20:30 +Spanaway,,FIREBALL,WA,7/4/2011 20:30 +Washington,,FIREBALL,IN,7/4/2011 20:30 +West Des Moines,RED,CIRCLE,IA,7/4/2011 20:30 +Pinckney,,LIGHT,MI,7/4/2011 20:35 +Morgan Hill,,,CA,7/4/2011 20:53 +Antigo,ORANGE,LIGHT,WI,7/4/2011 21:00 +Columbia,ORANGE,TRIANGLE,MO,7/4/2011 21:00 +Ellwood City,ORANGE,SPHERE,PA,7/4/2011 21:00 +Fairview,,LIGHT,TN,7/4/2011 21:00 +Franklin Square,,FIREBALL,NY,7/4/2011 21:00 +Manchester,,OTHER,MO,7/4/2011 21:00 +Pontiac,ORANGE,SPHERE,MI,7/4/2011 21:00 +Crestview,,FIREBALL,FL,7/4/2011 21:05 +Traverse City,,SPHERE,MI,7/4/2011 21:05 +Bryant,,FIREBALL,AR,7/4/2011 21:10 +Ashland,ORANGE,LIGHT,KY,7/4/2011 21:15 +Escondido,,CIRCLE,CA,7/4/2011 21:15 +Knoxville,ORANGE,FIREBALL,TN,7/4/2011 21:15 +Pueblo,,CIRCLE,CO,7/4/2011 21:15 +Rice Lake,ORANGE,FIREBALL,WI,7/4/2011 21:15 +Beecher,,TRIANGLE,IL,7/4/2011 21:20 +Blue Springs,,SPHERE,MO,7/4/2011 21:20 +Rockford,ORANGE,FIREBALL,IL,7/4/2011 21:20 +Beecher,,LIGHT,IL,7/4/2011 21:25 +Lockport,ORANGE,TRIANGLE,IL,7/4/2011 21:25 +West Hills,,CIRCLE,CA,7/4/2011 21:28 +Bradenton,ORANGE,LIGHT,FL,7/4/2011 21:30 +Colorado Springs,,DISK,CO,7/4/2011 21:30 +El Cajon,RED,CIRCLE,CA,7/4/2011 21:30 +Ellisville,,FIREBALL,MO,7/4/2011 21:30 +Ferndale,,LIGHT,CA,7/4/2011 21:30 +Lancaster,ORANGE BLUE,EGG,OH,7/4/2011 21:30 +Madison,,LIGHT,AL,7/4/2011 21:30 +Malden,,TRIANGLE,MO,7/4/2011 21:30 +New Berlin,,CIRCLE,WI,7/4/2011 21:30 +Parkland,,FIREBALL,WA,7/4/2011 21:30 +Richmond,,CIRCLE,KY,7/4/2011 21:30 +Chicago,,CIGAR,IL,7/4/2011 21:35 +Northglenn,,OTHER,CO,7/4/2011 21:35 +Hawthorne,,FIREBALL,CA,7/4/2011 21:37 +Elkhorn,,LIGHT,WI,7/4/2011 21:40 +Manson,,CIRCLE,WA,7/4/2011 21:40 +Meriden,ORANGE,OTHER,CT,7/4/2011 21:40 +North Augusta,,FIREBALL,SC,7/4/2011 21:40 +St. Charles,,FIREBALL,MO,7/4/2011 21:43 +Escondido,RED,CIRCLE,CA,7/4/2011 21:45 +Fair Haven,,LIGHT,MI,7/4/2011 21:45 +Hummlestown,,VARIOUS,PA,7/4/2011 21:45 +Lynchburg,,LIGHT,VA,7/4/2011 21:45 +Seabrook,,,NH,7/4/2011 21:45 +Lincoln,ORANGE,LIGHT,NE,7/4/2011 21:53 +Lincoln,ORANGE,LIGHT,NE,7/4/2011 21:53 +Streamwood,,FIREBALL,IL,7/4/2011 21:55 +Auburn,RED,SPHERE,WA,7/4/2011 22:00 +Bellport,RED,LIGHT,NY,7/4/2011 22:00 +Berryville,,CIRCLE,AR,7/4/2011 22:00 +Bradenton,,OVAL,FL,7/4/2011 22:00 +Brazil,,OVAL,IN,7/4/2011 22:00 +Bryant,,LIGHT,AR,7/4/2011 22:00 +Cincinnati,RED,TEARDROP,OH,7/4/2011 22:00 +Fort Smith,,FIREBALL,AR,7/4/2011 22:00 +Greenbried,YELLOW,LIGHT,AR,7/4/2011 22:00 +Greenwood,,FIREBALL,IN,7/4/2011 22:00 +Huntsville,,CIRCLE,AL,7/4/2011 22:00 +Louisville,,CIRCLE,KY,7/4/2011 22:00 +Middletown,ORANGE,CIRCLE,CT,7/4/2011 22:00 +Muncie,,LIGHT,IN,7/4/2011 22:00 +Muncie,ORANGE,LIGHT,IN,7/4/2011 22:00 +Olmsted Falls,ORANGE,LIGHT,OH,7/4/2011 22:00 +Omaha,ORANGE,CIRCLE,NE,7/4/2011 22:00 +Oostburg,RED,LIGHT,WI,7/4/2011 22:00 +Plymouth,,VARIOUS,MA,7/4/2011 22:00 +Portland,,CIRCLE,TN,7/4/2011 22:00 +Portland,ORANGE,CIRCLE,TN,7/4/2011 22:00 +Underwood,ORANGE,LIGHT,MN,7/4/2011 22:00 +University Place,,SPHERE,WA,7/4/2011 22:00 +Waipahu,,TRIANGLE,HI,7/4/2011 22:00 +Warwick,,FIREBALL,RI,7/4/2011 22:00 +Smithton,,FIREBALL,PA,7/4/2011 22:07 +Wheeling,ORANGE,OVAL,WV,7/4/2011 22:10 +Billings,RED,LIGHT,MT,7/4/2011 22:15 +Flint,,FIREBALL,MI,7/4/2011 22:15 +Kelso,,OVAL,WA,7/4/2011 22:15 +Milford,,FIREBALL,MI,7/4/2011 22:15 +Minot,ORANGE,OVAL,ND,7/4/2011 22:15 +Elk Grove,,CIRCLE,CA,7/4/2011 22:25 +Redding,,DISK,CA,7/4/2011 22:25 +Sheboygan Falls,,LIGHT,WI,7/4/2011 22:25 +Apple Valley,RED ORANGE,FIREBALL,MN,7/4/2011 22:30 +Detroit,,SPHERE,MI,7/4/2011 22:30 +Everett,RED,OVAL,WA,7/4/2011 22:30 +Flint,,SPHERE,MI,7/4/2011 22:30 +Forks,,FIREBALL,WA,7/4/2011 22:30 +Phillipsburg,,SPHERE,KS,7/4/2011 22:30 +Sylvan Grove,,FIREBALL,KS,7/4/2011 22:30 +Warrensburg,,FIREBALL,MO,7/4/2011 22:30 +Ogallala,,SPHERE,NE,7/4/2011 22:31 +Newport,RED,LIGHT,OR,7/4/2011 22:35 +Saint Joseph,,DISK,MO,7/4/2011 22:38 +Bellingham,,LIGHT,WA,7/4/2011 22:40 +Kenosha,,CIRCLE,WI,7/4/2011 22:40 +Ogden,,LIGHT,UT,7/4/2011 22:40 +Elgin,,FIREBALL,IL,7/4/2011 22:45 +Levittown,ORANGE,FORMATION,NY,7/4/2011 22:45 +Northboro,ORANGE,FIREBALL,MA,7/4/2011 22:45 +Rochester,,CIRCLE,NY,7/4/2011 22:45 +Star,,FIREBALL,ID,7/4/2011 22:45 +Wolf Point,RED,FIREBALL,MT,7/4/2011 22:45 +Aurora,ORANGE,SPHERE,OH,7/4/2011 22:46 +Hillsboro,,LIGHT,OR,7/4/2011 22:48 +Harrisburg,,CIRCLE,PA,7/4/2011 22:52 +Arcata,GREEN,TRIANGLE,CA,7/4/2011 23:00 +Hebron,,FORMATION,IN,7/4/2011 23:00 +Longview,,OVAL,WA,7/4/2011 23:00 +Middlesboro,RED,FIREBALL,KY,7/4/2011 23:00 +St. Louis Park,,CIRCLE,MN,7/4/2011 23:00 +Tyrone Township,ORANGE,FIREBALL,MI,7/4/2011 23:00 +Warrensburg,,FIREBALL,MO,7/4/2011 23:00 +Washington,,VARIOUS,MI,7/4/2011 23:00 +Waterbury,YELLOW,DISK,CT,7/4/2011 23:00 +Bellingham,,SPHERE,WA,7/4/2011 23:10 +Waterbury,ORANGE,FORMATION,CT,7/4/2011 23:11 +Wolf Point,RED ORANGE,DISK,MT,7/4/2011 23:15 +Struthers,,CIRCLE,OH,7/4/2011 23:30 +John Day,,FLASH,OR,7/4/2011 23:45 +San Pedro,,TRIANGLE,CA,7/4/2011 23:45 +Verona,,LIGHT,NY,7/4/2011 23:45 +Van Wert,,FIREBALL,OH,7/4/2011 23:52 +Mount Pleasant,RED,CIRCLE,MI,7/5/2011 0:00 +Mishawaka,ORANGE,LIGHT,IN,7/5/2011 0:30 +Fresno,,TRIANGLE,CA,7/5/2011 0:38 +Washington,RED ORANGE,VARIOUS,PA,7/5/2011 1:00 +Austin,,TRIANGLE,TX,7/5/2011 1:30 +Newark,RED,FIREBALL,NJ,7/5/2011 2:45 +Palm Desert,,DISK,CA,7/5/2011 5:59 +Tacoma,,OVAL,WA,7/5/2011 15:30 +San Jacinto,,SPHERE,CA,7/5/2011 17:15 +Grosse Pointe Farms,,SPHERE,MI,7/5/2011 19:00 +Seattle,RED GREEN,OVAL,WA,7/5/2011 19:55 +Springfield,,,MO,7/5/2011 21:28 +Fillmore,,RECTANGLE,CA,7/5/2011 22:00 +Stevensville,,EGG,MI,7/5/2011 22:00 +Montgomery,,SPHERE,PA,7/5/2011 22:05 +Utah Valley,,CIRCLE,UT,7/5/2011 22:25 +Minersville,ORANGE,CIRCLE,PA,7/5/2011 22:30 +Chicago,,TRIANGLE,IL,7/5/2011 22:40 +Murrells Inlet,,OVAL,SC,7/5/2011 23:00 +Phoenix,,,AZ,7/5/2011 23:11 +New Sweden,RED,TRIANGLE,ME,7/5/2011 23:45 +Spokane County,RED,FIREBALL,WA,7/6/2011 3:00 +Portland,,,OR,7/6/2011 15:00 +Doha,,SPHERE,AL,7/6/2011 18:45 +Fayetteville,,DIAMOND,WV,7/6/2011 21:00 +Gulfport,RED,,MS,7/6/2011 21:00 +Burton,,FIREBALL,MI,7/6/2011 22:00 +Overland Park,ORANGE,LIGHT,KS,7/6/2011 22:00 +Strongsville,RED,CIRCLE,OH,7/6/2011 22:25 +Maumee,,CIRCLE,OH,7/6/2011 22:45 +Colorado Springs,,TRIANGLE,CO,7/7/2011 0:00 +Tarpon Springs,,CIRCLE,FL,7/7/2011 0:00 +Snoqualmie,,OTHER,WA,7/7/2011 0:30 +Cincinnati,RED,DIAMOND,OH,7/7/2011 0:50 +Milton,,,VT,7/7/2011 5:30 +Sedona,ORANGE,CIRCLE,AZ,7/7/2011 14:00 +South Padre,BLUE,OVAL,TX,7/7/2011 15:45 +Liverpool,RED GREEN,SPHERE,NY,7/7/2011 16:58 +Horseheads,,VARIOUS,NY,7/7/2011 19:00 +Machesney Park,ORANGE,CIRCLE,IL,7/7/2011 21:00 +Helixville,RED,CIGAR,PA,7/7/2011 22:00 +Osprey,,CYLINDER,FL,7/7/2011 22:00 +Harrison,,SPHERE,ME,7/7/2011 22:15 +Moore,,TRIANGLE,SC,7/7/2011 22:30 +Coon Rapids,,LIGHT,MN,7/7/2011 22:40 +Franklinville,,OTHER,NC,7/8/2011 0:00 +Villa Hills,YELLOW,FIREBALL,KY,7/8/2011 1:00 +Sacramento,,LIGHT,CA,7/8/2011 2:20 +Fort Bragg,,CIRCLE,NC,7/8/2011 11:00 +West Alton,,,MO,7/8/2011 16:00 +Lexington,,TRIANGLE,MI,7/8/2011 20:30 +Winter Garden,,LIGHT,FL,7/8/2011 22:12 +Dallas,YELLOW,DISK,TX,7/8/2011 23:00 +Owasso,,TRIANGLE,OK,7/9/2011 10:35 +Sparks,,OVAL,NV,7/9/2011 10:45 +Republic,,OTHER,WA,7/9/2011 13:00 +Medford,RED,CIRCLE,NY,7/9/2011 20:00 +Elizabeth,GREEN,CIRCLE,PA,7/9/2011 20:50 +Englewood,,LIGHT,FL,7/9/2011 21:00 +Imperial,ORANGE,FIREBALL,MO,7/9/2011 21:30 +Chicago,,OTHER,IL,7/9/2011 21:36 +Arcata,RED,RECTANGLE,CA,7/9/2011 21:40 +Delta,,CIRCLE,OH,7/9/2011 22:00 +Milwaukee,,FORMATION,WI,7/9/2011 22:00 +Grand Rivers,RED ORANGE,FIREBALL,KY,7/9/2011 22:15 +Mapillville,,FIREBALL,RI,7/9/2011 22:15 +Butte,,OTHER,MT,7/9/2011 22:30 +San Fernando,,OVAL,CA,7/9/2011 22:30 +Joplin,,LIGHT,MO,7/9/2011 22:45 +Columbia City,,LIGHT,IN,7/9/2011 22:53 +Wisconsin Dells,ORANGE,SPHERE,WI,7/9/2011 23:00 +Missoula,RED GREEN BLUE,LIGHT,MT,7/10/2011 2:05 +Marlington,,CIRCLE,WV,7/10/2011 8:30 +Bettendorf,,FIREBALL,IA,7/10/2011 10:06 +New York City,,SPHERE,NY,7/10/2011 14:00 +East Los Angeles,,DISK,CA,7/10/2011 15:40 +Bridgeport,BLUE,LIGHT,CT,7/10/2011 17:00 +West Hills,,TRIANGLE,CA,7/10/2011 20:00 +Menands,,,NY,7/10/2011 20:45 +Canisteo,RED YELLOW,FIREBALL,NY,7/10/2011 21:30 +York Beach,ORANGE,CIRCLE,ME,7/10/2011 21:30 +Celina,BLUE,OVAL,TX,7/10/2011 22:00 +Charlotte,,FIREBALL,MI,7/10/2011 22:30 +Durant,,FIREBALL,OK,7/10/2011 22:45 +New York City,,OVAL,NY,7/10/2011 22:45 +Arcadia,,LIGHT,WI,7/10/2011 23:00 +Ocean Beach,ORANGE,LIGHT,NY,7/10/2011 23:15 +Wolf Point,,LIGHT,MT,7/10/2011 23:15 +Orlando,YELLOW,LIGHT,FL,7/11/2011 0:00 +Chapel Hill,,FIREBALL,NC,7/11/2011 1:00 +Manchester,,OTHER,MI,7/11/2011 1:00 +Wingdale,RED ORANGE,SPHERE,NY,7/11/2011 1:45 +Woodbridge,,CROSS,VA,7/11/2011 3:00 +Georgetown,,VARIOUS,TX,7/11/2011 12:00 +Detroit,,SPHERE,MI,7/11/2011 16:10 +Memphis,,CIGAR,TN,7/11/2011 20:05 +Henderson,ORANGE,LIGHT,KY,7/11/2011 20:45 +Boyne City,,FIREBALL,MI,7/11/2011 21:10 +Oakdale,,CHEVRON,CA,7/11/2011 22:00 +Snowflake,,LIGHT,AZ,7/11/2011 22:00 +White House,RED,FIREBALL,TN,7/11/2011 22:00 +Las Vegas,,SPHERE,NV,7/11/2011 22:25 +Wisconsin Dells,,TRIANGLE,WI,7/11/2011 22:40 +Saranac,,TRIANGLE,MI,7/12/2011 0:08 +Hartland,,SPHERE,ME,7/12/2011 1:00 +Cocoa,,LIGHT,FL,7/12/2011 3:00 +Clive,,CIGAR,UT,7/12/2011 10:54 +Memphis,,CIGAR,TN,7/12/2011 20:03 +Fairfield,,DISK,OH,7/12/2011 23:10 +Bozeman,,,MT,7/13/2011 3:00 +Olney,,VARIOUS,MD,7/13/2011 3:00 +Lancaster,,FIREBALL,NY,7/13/2011 8:53 +Aloha,,CIRCLE,OR,7/13/2011 11:00 +Coarsegold,,DISK,CA,7/13/2011 13:00 +Wilkes-Barre,,LIGHT,PA,7/13/2011 13:30 +Gulf of Mexico,,CYLINDER,LA,7/13/2011 15:30 +Newtown,,,CT,7/13/2011 20:30 +Goshen,,CYLINDER,OH,7/13/2011 20:45 +Jersey City,GREEN,FIREBALL,NJ,7/13/2011 21:40 +Watkins Glen,,FIREBALL,NY,7/13/2011 21:40 +Dunbar,,LIGHT,WV,7/13/2011 22:00 +Lithonia,,TRIANGLE,GA,7/13/2011 22:00 +Columbus,,OTHER,OH,7/13/2011 22:25 +Watkins Glen,,LIGHT,NY,7/13/2011 22:29 +Litchfield,,FIREBALL,IL,7/13/2011 22:30 +Watkins Glen,,LIGHT,NY,7/13/2011 22:30 +Athens,BLUE,LIGHT,GA,7/13/2011 22:38 +Atascosita,,FIREBALL,TX,7/13/2011 22:43 +San Antonio,,LIGHT,TX,7/14/2011 0:00 +Ankeny,,TRIANGLE,IA,7/14/2011 2:00 +Humbel,,DISK,TX,7/14/2011 13:00 +Chicago,,OVAL,IL,7/14/2011 17:03 +Keyes,,LIGHT,CA,7/14/2011 20:00 +Cape Coral,,SPHERE,FL,7/14/2011 20:50 +Emerald Isle,,CIRCLE,NC,7/14/2011 21:15 +Cleveland,,CIRCLE,OH,7/14/2011 22:00 +Wayland,,FIREBALL,MI,7/14/2011 22:00 +Plano,,LIGHT,TX,7/14/2011 22:45 +Braintree,,OTHER,MA,7/14/2011 23:30 +Miami,RED BLUE,TRIANGLE,FL,7/14/2011 23:34 +Easton,,CIRCLE,PA,7/15/2011 1:00 +Palm Beach Gardens,ORANGE,OVAL,FL,7/15/2011 2:00 +Kissimmee,,OVAL,FL,7/15/2011 2:50 +Surfside Beach,,TRIANGLE,SC,7/15/2011 10:30 +San Fernando Valley,,OVAL,CA,7/15/2011 14:00 +Larose,,SPHERE,LA,7/15/2011 14:30 +Denver,,TRIANGLE,CO,7/15/2011 15:00 +Louisa,,CIGAR,KY,7/15/2011 15:00 +West Chester,,DISK,PA,7/15/2011 15:00 +Kenesaw,,DISK,NE,7/15/2011 17:00 +Newport,RED,FIREBALL,NC,7/15/2011 19:30 +Raleigh,,OTHER,NC,7/15/2011 19:30 +Watertown,,,CT,7/15/2011 21:00 +Lake Worth,YELLOW,CIGAR,FL,7/15/2011 21:05 +Stevens Point,,FIREBALL,WI,7/15/2011 21:15 +Stevens Point,,FIREBALL,WI,7/15/2011 21:15 +Lafayette,,FORMATION,LA,7/15/2011 21:20 +Stevens Point,,FIREBALL,WI,7/15/2011 21:30 +Lebanon,,OTHER,OR,7/15/2011 22:00 +Luenburg,ORANGE,FIREBALL,MA,7/15/2011 22:00 +Mt. Vernon,,LIGHT,IL,7/15/2011 22:05 +Wayland,,TRIANGLE,MI,7/15/2011 23:00 +SeaTac,,LIGHT,WA,7/15/2011 23:15 +Poughquag,RED,TRIANGLE,NY,7/15/2011 23:20 +Three Forks,,FIREBALL,MT,7/16/2011 0:00 +Shabbona,,DIAMOND,IL,7/16/2011 2:00 +Sarasota,ORANGE,DIAMOND,FL,7/16/2011 2:15 +Orlando,ORANGE,SPHERE,FL,7/16/2011 2:46 +Orlando,,CIRCLE,FL,7/16/2011 11:00 +Berkley Heights,BLUE,FLASH,NJ,7/16/2011 12:00 +Billings,,RECTANGLE,MT,7/16/2011 12:00 +Williston,,,FL,7/16/2011 12:00 +Mokena,,FIREBALL,IL,7/16/2011 21:00 +Clinton,RED,SPHERE,IL,7/16/2011 21:20 +Penfield,ORANGE,CIRCLE,NY,7/16/2011 21:30 +Onset,ORANGE,FIREBALL,MA,7/16/2011 21:45 +Salem,,OTHER,WI,7/16/2011 21:45 +Brunswick,RED,FIREBALL,OH,7/16/2011 22:00 +Manzanita,ORANGE,FIREBALL,OR,7/16/2011 22:00 +Monroeville,,LIGHT,PA,7/16/2011 22:00 +Clinton Township,ORANGE,,MI,7/16/2011 22:15 +Apple Valley,,CIRCLE,CA,7/16/2011 22:30 +South Euclid,ORANGE,SPHERE,OH,7/16/2011 22:30 +Conover,RED,CIRCLE,NC,7/16/2011 22:35 +Oak Harbor,,LIGHT,WA,7/16/2011 23:30 +Erie,,CIGAR,PA,7/16/2011 23:52 +Indio,,OTHER,CA,7/17/2011 0:00 +Hartland,ORANGE,SPHERE,MI,7/17/2011 0:30 +Findlay,,,OH,7/17/2011 1:00 +Palomar Mountain,,CYLINDER,CA,7/17/2011 2:30 +Fresno,,FORMATION,CA,7/17/2011 2:35 +Averill Park,,FIREBALL,NY,7/17/2011 4:06 +Lewiston,,TRIANGLE,ID,7/17/2011 13:00 +Ashburn,,CIGAR,VA,7/17/2011 15:45 +Palm Beach Island,,RECTANGLE,FL,7/17/2011 20:13 +West Haven,,OTHER,CT,7/17/2011 20:30 +Charlevoix,,CIRCLE,MI,7/17/2011 21:30 +Mussel Shoals,RED,SPHERE,AL,7/17/2011 21:50 +Elkton,,FLASH,MD,7/17/2011 22:00 +Emerald Isle,,FIREBALL,NC,7/17/2011 22:00 +Winston-Salem,,DISK,NC,7/17/2011 22:00 +Arvada,,,CO,7/17/2011 23:00 +Ormond Beach,,TRIANGLE,FL,7/17/2011 23:00 +Lusby,BLUE,SPHERE,MD,7/18/2011 0:04 +Clayton,RED,CIRCLE,NC,7/18/2011 1:30 +Lynnwood,,OTHER,WA,7/18/2011 3:15 +Tampa,,TRIANGLE,FL,7/18/2011 3:16 +Los Banos,,TRIANGLE,CA,7/18/2011 11:45 +Bennington,,CIGAR,KS,7/18/2011 21:05 +Turlock,,LIGHT,CA,7/18/2011 21:30 +Vancouver,RED GREEN BLUE,SPHERE,WA,7/18/2011 22:00 +Carthage,,TRIANGLE,TX,7/18/2011 23:00 +Bonham,ORANGE,FIREBALL,TX,7/18/2011 23:30 +Rainier,,LIGHT,OR,7/18/2011 23:40 +Salinas,,LIGHT,CA,7/19/2011 0:30 +Janesville,,,WI,7/19/2011 1:10 +Folsom,,,CA,7/19/2011 11:40 +Richmond,,OTHER,CA,7/19/2011 19:30 +St. Louis,ORANGE,FIREBALL,MO,7/19/2011 21:45 +Evans Mills,,,NY,7/19/2011 22:00 +Poughkeepsie,,FIREBALL,NY,7/19/2011 22:00 +Port Neches,,,TX,7/19/2011 22:30 +Sapulpa,,FIREBALL,OK,7/19/2011 22:30 +Lindenhurst,,LIGHT,NY,7/19/2011 23:00 +Lake Jackson,RED BLUE,DISK,TX,7/20/2011 1:00 +Oakwood,,LIGHT,GA,7/20/2011 1:00 +Churubusco,,,IN,7/20/2011 1:30 +San Diego,,RECTANGLE,CA,7/20/2011 13:13 +Memphis,,CYLINDER,TN,7/20/2011 20:00 +Talihina,,LIGHT,OK,7/20/2011 21:00 +Paradise,,OTHER,CA,7/20/2011 22:00 +Casper,,LIGHT,WY,7/20/2011 22:13 +Bridgewater,,LIGHT,MA,7/20/2011 22:15 +Wilbraham,GREEN,OVAL,MA,7/20/2011 22:30 +Clearwater,,,FL,7/20/2011 23:00 +Surfside Beach,ORANGE,LIGHT,SC,7/20/2011 23:00 +Brownsville,,TRIANGLE,KY,7/20/2011 23:20 +Redlands,RED,TRIANGLE,CA,7/21/2011 4:00 +Fairfield,,LIGHT,IA,7/21/2011 11:00 +Hemet,,FIREBALL,CA,7/21/2011 19:45 +Rochester,,VARIOUS,NY,7/21/2011 20:45 +St. Augustine,,TRIANGLE,FL,7/21/2011 21:18 +Bethany Beach,RED,SPHERE,DE,7/21/2011 21:30 +Edwardsville,,FIREBALL,IL,7/21/2011 21:30 +Middle Island,,FIREBALL,NY,7/21/2011 21:50 +Clarkston,ORANGE,FIREBALL,MI,7/21/2011 22:00 +Edisto Beach,ORANGE,CIRCLE,SC,7/21/2011 22:00 +Byron Center,,TRIANGLE,MI,7/21/2011 22:10 +Orlando,,DISK,FL,7/21/2011 22:30 +Yucca Valley,,FORMATION,CA,7/21/2011 22:30 +Dover,,,NH,7/21/2011 22:35 +Boca Raton,RED GREEN,CYLINDER,FL,7/21/2011 23:00 +Wheatland,,SPHERE,TX,7/21/2011 23:30 +New Whiteland,,FORMATION,IN,7/22/2011 1:00 +Custer,,CIRCLE,SD,7/22/2011 1:30 +Allen,RED,TRIANGLE,TX,7/22/2011 3:00 +McKinney,,LIGHT,TX,7/22/2011 20:30 +Houston,,LIGHT,TX,7/22/2011 20:55 +Houston,,LIGHT,TX,7/22/2011 21:00 +Livonia,ORANGE,FIREBALL,MI,7/22/2011 21:00 +Pawleys Island,ORANGE,SPHERE,SC,7/22/2011 21:00 +Menomonee Falls,,LIGHT,WI,7/22/2011 21:10 +Knoxville,,FIREBALL,TN,7/22/2011 21:15 +Sanford,,TRIANGLE,FL,7/22/2011 21:40 +Redlands,,LIGHT,CA,7/22/2011 21:45 +Portland,BLUE,LIGHT,OR,7/22/2011 21:50 +Appling,,FIREBALL,GA,7/22/2011 22:00 +Woodbury,ORANGE,,MN,7/22/2011 22:40 +New Smyrna Beach,,FIREBALL,FL,7/22/2011 23:00 +White Mountains,,DISK,NH,7/22/2011 23:00 +Spokane Valley,,DISK,WA,7/22/2011 23:15 +Huntersville,,,NC,7/22/2011 23:55 +Marysville,RED,SPHERE,WA,7/23/2011 0:07 +Key West,RED,CIGAR,FL,7/23/2011 1:35 +Gainesville,,FLASH,FL,7/23/2011 5:00 +Eagle Creek,,FLASH,OR,7/23/2011 5:23 +Mesa,,CIRCLE,AZ,7/23/2011 6:50 +Fort Pierce,RED,LIGHT,FL,7/23/2011 9:00 +St. Charles,,LIGHT,IL,7/23/2011 11:00 +Council Bluffs,,TRIANGLE,IA,7/23/2011 15:30 +Fredericksburg,,CIGAR,VA,7/23/2011 16:00 +Seattle,,,WA,7/23/2011 17:00 +Ursa,,LIGHT,IL,7/23/2011 17:00 +Houston,,FIREBALL,TX,7/23/2011 19:20 +Lawrenceville,,CIGAR,GA,7/23/2011 19:30 +Memphis,,OTHER,TN,7/23/2011 20:52 +Landsdale,,FIREBALL,PA,7/23/2011 21:00 +Yucaipa,YELLOW,LIGHT,CA,7/23/2011 21:00 +Cedarburg,,LIGHT,WI,7/23/2011 21:34 +Clive,,OVAL,IA,7/23/2011 22:10 +Des Moines,,LIGHT,WA,7/23/2011 22:15 +Monticello,BLUE,LIGHT,NY,7/23/2011 22:15 +Falcon,,LIGHT,CO,7/23/2011 23:00 +Jackson Hole,,TRIANGLE,WY,7/23/2011 23:00 +Lewiston,,LIGHT,ID,7/23/2011 23:00 +Anaheim,,TRIANGLE,CA,7/23/2011 23:06 +Sylvania,,FIREBALL,GA,7/23/2011 23:20 +Chicago,ORANGE,TRIANGLE,IL,7/23/2011 23:47 +Sloan,,LIGHT,TX,7/24/2011 0:00 +Billings,RED,FIREBALL,MT,7/24/2011 0:02 +Oxnard,RED GREEN,TRIANGLE,CA,7/24/2011 1:00 +Colonie,,OVAL,NY,7/24/2011 9:15 +San Antonio,,CIRCLE,TX,7/24/2011 18:00 +Hemet,ORANGE,FIREBALL,CA,7/24/2011 20:00 +Hemet,RED ORANGE,FIREBALL,CO,7/24/2011 20:00 +Oak Lawn,RED YELLOW,CIRCLE,IL,7/24/2011 20:45 +East Islip,RED,CIRCLE,NY,7/24/2011 20:57 +Ewa Beach,,CIRCLE,HI,7/24/2011 21:00 +Fruita,ORANGE,CIRCLE,CO,7/24/2011 21:15 +Miami,RED,,FL,7/24/2011 22:30 +Orting,,LIGHT,WA,7/24/2011 23:03 +Orting,,LIGHT,WA,7/24/2011 23:03 +Ocala,RED,CIRCLE,FL,7/24/2011 23:33 +Farrell,,FIREBALL,PA,7/24/2011 23:50 +Flagler Beach,,FIREBALL,FL,7/25/2011 0:00 +Osprey,,OTHER,FL,7/25/2011 0:30 +Columbus,,CHEVRON,OH,7/25/2011 1:45 +Seattle,RED,FIREBALL,WA,7/25/2011 3:20 +Oceanside,,FIREBALL,CA,7/25/2011 8:54 +Farmington,YELLOW,OVAL,MN,7/25/2011 12:23 +Skamania Co.,,RECTANGLE,WA,7/25/2011 20:49 +Galesburg,,VARIOUS,MI,7/25/2011 21:00 +Broomfield,,,CO,7/25/2011 22:15 +Mayville,,LIGHT,WI,7/25/2011 22:50 +Kent Island,,CYLINDER,MD,7/26/2011 15:00 +Cotulla,YELLOW,RECTANGLE,TX,7/26/2011 19:30 +Memphis,,CIGAR,TN,7/26/2011 19:50 +Memphis,,CIGAR,TN,7/26/2011 19:50 +In-flight sighting,,CIGAR,IL,7/26/2011 20:00 +Battle Creek,,FIREBALL,MI,7/26/2011 20:45 +Lebanon,BLUE,FIREBALL,OH,7/26/2011 21:30 +Chicago,,FIREBALL,IL,7/26/2011 21:34 +Burlington,,OVAL,KY,7/27/2011 0:00 +Payne Springs,,FLASH,TX,7/27/2011 0:20 +Chesterton,,DISK,IN,7/27/2011 1:00 +East Setauket,,CIRCLE,NY,7/27/2011 1:00 +Hilliard,,OVAL,OH,7/27/2011 1:00 +Watts,,VARIOUS,OK,7/27/2011 1:00 +Norwalk,,LIGHT,CT,7/27/2011 2:00 +Port Clinton,,OTHER,OH,7/27/2011 4:10 +Coram,,LIGHT,NY,7/27/2011 4:54 +El Paso,,SPHERE,TX,7/27/2011 5:18 +Lone Pine,,OTHER,PA,7/27/2011 8:00 +Edmond,,LIGHT,OK,7/27/2011 11:45 +Hilton Head Island,ORANGE,TRIANGLE,OH,7/27/2011 21:00 +Roach,,FIREBALL,MO,7/27/2011 21:45 +York,ORANGE,FIREBALL,MA,7/27/2011 22:00 +Brookings,,CIRCLE,SD,7/27/2011 22:35 +Broadkill,GREEN,FIREBALL,DE,7/27/2011 23:00 +Nashville,,CIRCLE,TN,7/27/2011 23:30 +Overland Park,,FIREBALL,KS,7/27/2011 23:59 +Bronco,,LIGHT,TX,7/28/2011 0:00 +Pueblo,,DIAMOND,CO,7/28/2011 0:00 +Atlanta,RED,TRIANGLE,GA,7/28/2011 8:30 +Beatty,,FLASH,NV,7/28/2011 10:30 +Princeton,BLUE,OVAL,WV,7/28/2011 12:20 +Blackduck,,CIRCLE,MN,7/28/2011 19:30 +La Habra,,LIGHT,CA,7/28/2011 20:45 +Boyd,,,TX,7/28/2011 21:20 +Cotulla,ORANGE,LIGHT,TX,7/28/2011 21:45 +Lawrenceburg,ORANGE,OTHER,IN,7/28/2011 22:00 +Plano,,,TX,7/28/2011 22:38 +Detroit,,SPHERE,MI,7/29/2011 0:30 +Fulshear,RED ORANGE,DISK,TX,7/29/2011 1:45 +Eagle Pass,,,TX,7/29/2011 3:00 +Fort Collins,,VARIOUS,CO,7/29/2011 3:06 +Wenatchee,,LIGHT,WA,7/29/2011 17:00 +Hoover,,OTHER,AL,7/29/2011 17:20 +Spokane,,OVAL,WA,7/29/2011 17:54 +Indian Harbor Beach,RED,LIGHT,FL,7/29/2011 21:00 +Williamsport,,FIREBALL,PA,7/29/2011 21:56 +Concord,ORANGE,EGG,CA,7/29/2011 22:00 +Goshen,,CIRCLE,IN,7/29/2011 22:00 +Utica,ORANGE,CIRCLE,NY,7/29/2011 22:15 +Dunn,,TRIANGLE,NC,7/29/2011 22:50 +Plainfield,ORANGE,FIREBALL,IL,7/29/2011 23:34 +Lowell,,LIGHT,MA,7/30/2011 0:00 +Eureka,,LIGHT,MI,7/30/2011 0:10 +Toledo,RED YELLOW BLUE,CYLINDER,OH,7/30/2011 1:35 +Marietta,,,GA,7/30/2011 2:00 +Philadelphia,,FIREBALL,PA,7/30/2011 9:00 +Buzzards Bay,,DIAMOND,MA,7/30/2011 13:45 +Johnson,,CIGAR,VT,7/30/2011 17:45 +Bethlehem,,CIGAR,GA,7/30/2011 20:00 +Los Angeles,,FIREBALL,CA,7/30/2011 20:30 +Oconomowoc,,LIGHT,WI,7/30/2011 20:30 +Roseville,,LIGHT,MI,7/30/2011 20:48 +Holts Summit,,CIGAR,MO,7/30/2011 21:00 +Lumberton,RED,FIREBALL,NJ,7/30/2011 21:00 +New York City,,FIREBALL,NY,7/30/2011 21:00 +Prospect,ORANGE,CIRCLE,CT,7/30/2011 21:00 +Dubuque,,LIGHT,IA,7/30/2011 21:10 +Troy,,OVAL,NH,7/30/2011 21:18 +Wind Lake,RED,FIREBALL,WI,7/30/2011 21:20 +Newington,ORANGE,CIRCLE,CT,7/30/2011 21:35 +Yarmouthport,,TRIANGLE,MA,7/30/2011 21:45 +Brandon,,CIRCLE,VT,7/30/2011 22:00 +Brentwood,ORANGE,FIREBALL,TN,7/30/2011 22:00 +Cassadaga,,FIREBALL,NY,7/30/2011 22:00 +Franklin,RED,FIREBALL,TN,7/30/2011 22:00 +Millsboro,,,DE,7/30/2011 22:00 +Norfolk,,FIREBALL,MA,7/30/2011 22:00 +Norfolk,,LIGHT,MA,7/30/2011 22:00 +Squaw Valley,,LIGHT,CA,7/30/2011 22:00 +Toledo,,LIGHT,OH,7/30/2011 22:00 +Port Jeff Station,,FIREBALL,NY,7/30/2011 22:05 +Clermont,,SPHERE,FL,7/30/2011 22:12 +Stone Harbor,,FIREBALL,NJ,7/30/2011 22:15 +Painseville,,FIREBALL,OH,7/30/2011 22:18 +Bakersfield,,CIRCLE,CA,7/30/2011 22:30 +Mattapoisett,ORANGE,LIGHT,MA,7/30/2011 22:30 +Wildwood,,FIREBALL,NJ,7/30/2011 22:30 +Cary,ORANGE,CIRCLE,IL,7/30/2011 22:45 +Waterbury,,FIREBALL,CT,7/30/2011 22:54 +Dennisport,,RECTANGLE,MA,7/30/2011 23:00 +Smithville,GREEN,TRIANGLE,TX,7/30/2011 23:00 +Lexington,,CIRCLE,KY,7/30/2011 23:10 +Ashland,RED,TRIANGLE,KY,7/31/2011 0:00 +Fulton,,FIREBALL,NY,7/31/2011 0:00 +Rockaway Beach,,CHEVRON,OR,7/31/2011 0:00 +Terre du Lac,,LIGHT,MO,7/31/2011 0:20 +Goodyear Lake,RED,CIGAR,NY,7/31/2011 1:25 +Milford,ORANGE,OVAL,CT,7/31/2011 21:00 +Yarmouthport,,DIAMOND,MA,7/31/2011 21:45 +San Diego,,LIGHT,CA,7/31/2011 22:22 +Lyndonville,ORANGE,FIREBALL,VT,7/31/2011 22:30 +Seven Hills,,LIGHT,OH,7/31/2011 22:31 +Princeton,ORANGE,OTHER,MN,7/31/2011 22:50 +Barrington,,LIGHT,IL,7/31/2011 22:51 +Algonquin,ORANGE,CIRCLE,IL,7/31/2011 23:00 +Beaverville,ORANGE,,IL,7/31/2011 23:00 +Kenosha,RED,LIGHT,WI,7/31/2011 23:00 +Lakeside,ORANGE,FIREBALL,CA,7/31/2011 23:30 +Bokchito,ORANGE,LIGHT,OK,8/1/2011 0:00 +Clinton,,,WA,8/1/2011 0:30 +Lawrence,,OTHER,MA,8/1/2011 0:45 +Danville,,,VA,8/1/2011 1:00 +Orting,,LIGHT,WA,8/1/2011 1:00 +Atlanta,,LIGHT,GA,8/1/2011 1:06 +Davenport,ORANGE,CROSS,WA,8/1/2011 3:00 +San Francisco,,LIGHT,CA,8/1/2011 3:30 +Poland,,CIRCLE,ME,8/1/2011 4:30 +Severa Park,,EGG,MD,8/1/2011 4:30 +South Milwaukee,,LIGHT,WI,8/1/2011 21:00 +Brick Town,,LIGHT,NJ,8/1/2011 22:00 +Violet,BLUE,TRIANGLE,LA,8/1/2011 22:00 +Newport News,RED,LIGHT,VA,8/1/2011 22:15 +Arvada,,CIRCLE,CO,8/1/2011 22:30 +Springfield,GREEN,DIAMOND,TN,8/1/2011 23:00 +Winnsboro,RED BLUE,,LA,8/1/2011 23:00 +Warsaw,,CIRCLE,NC,8/2/2011 0:00 +Kennewick,RED,LIGHT,WA,8/2/2011 0:26 +Sumter,,TRIANGLE,SC,8/2/2011 1:00 +Memphis,,CYLINDER,TN,8/2/2011 2:00 +Albuquerque,,CIRCLE,NM,8/2/2011 21:15 +Owego,,TRIANGLE,NY,8/2/2011 21:25 +Mahanoy City,,FIREBALL,PA,8/2/2011 21:30 +Rocklin,,RECTANGLE,CA,8/2/2011 21:35 +Lakeside,,CIRCLE,CA,8/2/2011 21:50 +Greenbush,GREEN,LIGHT,MI,8/2/2011 22:00 +Silver Spring,,SPHERE,MD,8/2/2011 22:00 +Riverside,,LIGHT,CA,8/2/2011 22:04 +Blue Springs,,SPHERE,MO,8/2/2011 22:30 +Harbor City,,CHEVRON,CA,8/2/2011 22:30 +Clarksville,,LIGHT,TN,8/2/2011 23:00 +Columbus,,FIREBALL,OH,8/2/2011 23:00 +Holladay,,LIGHT,UT,8/2/2011 23:20 +Ankeny,,FORMATION,IA,8/3/2011 0:14 +South Point,,LIGHT,OH,8/3/2011 1:00 +San Antonio,,TRIANGLE,TX,8/3/2011 1:20 +Fort Collins,BLUE,SPHERE,CO,8/3/2011 5:15 +Alexandria,,DISK,VA,8/3/2011 12:31 +Teterboro,,CIRCLE,NJ,8/3/2011 13:15 +Fredericksburg,,LIGHT,VA,8/3/2011 15:18 +Ocean Isle Beach,,FORMATION,NC,8/3/2011 20:45 +Arcata,,,CA,8/3/2011 20:52 +Eagle Pass,ORANGE,OVAL,TX,8/3/2011 21:00 +Hatteras,ORANGE,FORMATION,NC,8/3/2011 21:00 +Mount Shasta,,,CA,8/3/2011 21:00 +Wheeling,,LIGHT,IL,8/3/2011 21:35 +Albert Lake,,SPHERE,OR,8/3/2011 22:00 +Nampa,,TRIANGLE,ID,8/3/2011 22:49 +Key Largo,,CHEVRON,FL,8/3/2011 23:00 +Lakeview,,SPHERE,OR,8/3/2011 23:00 +Ontonagon,,LIGHT,MI,8/4/2011 0:00 +Round Rock,,CIRCLE,TX,8/4/2011 0:00 +Fairfield,,FLASH,VA,8/4/2011 0:23 +Asheville,,VARIOUS,NC,8/4/2011 1:20 +Willow Springs,,OTHER,IL,8/4/2011 3:30 +Nacogdoches,,TRIANGLE,TX,8/4/2011 3:45 +San Jose,,OTHER,CA,8/4/2011 12:00 +Pinellas Park,,TRIANGLE,FL,8/4/2011 15:11 +Pinellas Park,,TRIANGLE,FL,8/4/2011 15:11 +Kingman,,OVAL,AZ,8/4/2011 20:45 +Kingman,,OVAL,AZ,8/4/2011 20:45 +Kingman,,VARIOUS,AZ,8/4/2011 21:00 +Crestwood,,FIREBALL,KY,8/4/2011 22:00 +Post Falls,,LIGHT,ID,8/4/2011 22:00 +Gresham,,OTHER,OR,8/4/2011 22:10 +Winter,,RECTANGLE,WI,8/4/2011 22:10 +Kingman,,LIGHT,AZ,8/4/2011 22:30 +Canfield,,FIREBALL,OH,8/4/2011 23:00 +Miami Beach,,LIGHT,FL,8/5/2011 0:00 +Hialeah,,FIREBALL,FL,8/5/2011 1:13 +Sugar Land,,RECTANGLE,TX,8/5/2011 5:15 +South Lyon,,OVAL,MI,8/5/2011 12:15 +Cheyenne,,CIRCLE,WY,8/5/2011 18:13 +Grafton,ORANGE,,MA,8/5/2011 20:30 +Pueblo,,TRIANGLE,CO,8/5/2011 20:50 +Sandwich,RED,FIREBALL,IL,8/5/2011 20:53 +Luxemburg,ORANGE,TRIANGLE,WI,8/5/2011 21:15 +Merrillville,,FIREBALL,IN,8/5/2011 21:15 +Schererville,ORANGE,TRIANGLE,IN,8/5/2011 21:15 +Oaks,,TRIANGLE,PA,8/5/2011 21:55 +Long Beach,GREEN,LIGHT,CA,8/5/2011 22:15 +Winter,,FIREBALL,WI,8/5/2011 23:00 +Woodstock,,FORMATION,WV,8/5/2011 23:00 +Cambridge,RED BLUE,TRIANGLE,ID,8/5/2011 23:45 +Pendleton,ORANGE,TRIANGLE,IN,8/6/2011 0:00 +Round Rock,,CIRCLE,TX,8/6/2011 0:00 +Tucson,,LIGHT,AZ,8/6/2011 0:00 +Canyon Lake,RED,TRIANGLE,CA,8/6/2011 0:14 +Maryland,,OVAL,MD,8/6/2011 3:00 +Lehigh Acres,,LIGHT,FL,8/6/2011 5:00 +Fayetteville,,DISK,NC,8/6/2011 19:30 +Long Beach,,CONE,CA,8/6/2011 20:34 +Campbell,,FIREBALL,CA,8/6/2011 20:45 +Moline,,FIREBALL,IL,8/6/2011 21:00 +Halliday,,FIREBALL,ND,8/6/2011 21:15 +Oakdale,,FIREBALL,NY,8/6/2011 21:30 +Seaside,,FIREBALL,OR,8/6/2011 21:30 +Belleville,,LIGHT,MI,8/6/2011 21:45 +Northport,,FIREBALL,MI,8/6/2011 21:45 +Bloomington,,LIGHT,MN,8/6/2011 21:50 +Fargo,,LIGHT,ND,8/6/2011 22:50 +Algonquin,,,IL,8/6/2011 23:00 +Masaryktown,GREEN,FIREBALL,FL,8/6/2011 23:00 +Orwell,,LIGHT,OH,8/6/2011 23:00 +Tampa,,FIREBALL,FL,8/6/2011 23:05 +Naples,BLUE,CIRCLE,FL,8/6/2011 23:35 +Ocala,RED,CIRCLE,FL,8/7/2011 0:00 +Winslow,,LIGHT,ME,8/7/2011 0:41 +Oronoco,,,MN,8/7/2011 1:14 +Lehigh Acres,,,FL,8/7/2011 5:00 +Kingman,,OTHER,AZ,8/7/2011 8:30 +Joppa,,LIGHT,MD,8/7/2011 10:15 +Minneapolis,,CIRCLE,MN,8/7/2011 18:30 +Big Sur,RED BLUE,FORMATION,CA,8/7/2011 21:00 +Park Ridge,RED,CIRCLE,IL,8/7/2011 21:40 +Payson,,LIGHT,UT,8/7/2011 22:30 +El Cajon,,FORMATION,CA,8/7/2011 23:00 +Clarkston,,OVAL,MI,8/7/2011 23:15 +Felton,,OTHER,CA,8/8/2011 0:00 +East Moline,,LIGHT,IL,8/8/2011 2:30 +Commerce City,,LIGHT,CO,8/8/2011 4:50 +Kearns,GREEN,CHEVRON,UT,8/8/2011 10:30 +Commerce Cityy,,OVAL,CO,8/8/2011 15:07 +Norwalk,,LIGHT,CA,8/8/2011 17:00 +Amado,,SPHERE,AZ,8/8/2011 18:30 +Clinton,,OTHER,CT,8/8/2011 19:41 +Asheville,,TEARDROP,NC,8/8/2011 19:45 +Catlettsburg,,SPHERE,KY,8/8/2011 20:00 +Tulsa,,,OK,8/8/2011 20:00 +Corolla,ORANGE,SPHERE,NC,8/8/2011 22:15 +Dallas,,TRIANGLE,TX,8/8/2011 22:30 +Vista,RED,TRIANGLE,CA,8/8/2011 22:50 +Medford,,LIGHT,OR,8/8/2011 23:00 +Winslow,,LIGHT,ME,8/8/2011 23:00 +Commack,,,NY,8/9/2011 1:00 +Mount Summit,,TRIANGLE,IN,8/9/2011 2:00 +Auburn,,CROSS,WA,8/9/2011 8:30 +Rose Mountain Pass,,CIGAR,NV,8/9/2011 10:30 +Tucson,,RECTANGLE,AZ,8/9/2011 20:15 +Honolulu,GREEN,,HI,8/9/2011 21:00 +Yakima,,LIGHT,WA,8/10/2011 2:00 +Washington,,DISK,PA,8/10/2011 11:24 +South New Brunswick,,CIRCLE,NJ,8/10/2011 12:30 +Muncie,ORANGE,DISK,IN,8/10/2011 13:00 +Worcester,,EGG,MA,8/10/2011 13:00 +Billings,,OVAL,MT,8/10/2011 19:34 +South Nags Head,,LIGHT,NC,8/10/2011 21:15 +Trout Lake,,OTHER,WA,8/10/2011 21:30 +Auburn,,LIGHT,WA,8/10/2011 21:45 +Inlet,RED,CIRCLE,NY,8/10/2011 21:50 +Bartlett,,CIGAR,TN,8/10/2011 22:00 +Wakefield,,FORMATION,MA,8/10/2011 22:00 +Del Rio,RED,LIGHT,TX,8/10/2011 22:30 +Wyandotte,,TRIANGLE,MI,8/11/2011 1:30 +Lake Worth,,LIGHT,FL,8/11/2011 2:00 +Orr's Island,,,ME,8/11/2011 2:30 +Topeka,,LIGHT,KS,8/11/2011 4:15 +Trafford,RED,OTHER,PA,8/11/2011 9:15 +Bend,BLUE,LIGHT,OR,8/11/2011 10:00 +Beatrice,,LIGHT,NE,8/11/2011 11:30 +Fort Collins,,CIRCLE,CO,8/11/2011 12:35 +West Salem,,CIRCLE,WI,8/11/2011 17:58 +Buena park,,FIREBALL,CA,8/11/2011 20:00 +North Massapequa,,FIREBALL,NY,8/11/2011 20:48 +Desoto,GREEN,FIREBALL,MO,8/11/2011 21:00 +Norway,RED,FIREBALL,MI,8/11/2011 21:00 +Plainfield,RED,FORMATION,IL,8/11/2011 21:00 +Poyntelle,,LIGHT,PA,8/11/2011 21:30 +Streetsboro,,LIGHT,OH,8/11/2011 21:45 +Oak Bluffs,ORANGE,LIGHT,MA,8/11/2011 22:00 +Olympia,RED,LIGHT,WA,8/11/2011 22:10 +Orlando,GREEN,FIREBALL,FL,8/11/2011 22:35 +Binghamton,RED,RECTANGLE,NY,8/11/2011 22:36 +Wesley Chapel,GREEN,FIREBALL,FL,8/11/2011 22:40 +Roanoke,RED,DISK,VA,8/11/2011 23:00 +Virginia Beach,,FIREBALL,VA,8/11/2011 23:05 +Stowe,,FIREBALL,VT,8/11/2011 23:15 +Annapolis,,RECTANGLE,MD,8/11/2011 23:30 +LaGrange,,LIGHT,GA,8/11/2011 23:35 +Pottstown,,SPHERE,PA,8/12/2011 0:00 +Derby,,LIGHT,CT,8/12/2011 0:30 +Barton,RED,TRIANGLE,VT,8/12/2011 2:30 +Napa,,LIGHT,CA,8/12/2011 3:00 +Staten Island,,OTHER,NY,8/12/2011 3:05 +Kings Mountain,,LIGHT,NC,8/12/2011 5:30 +Honolulu,,SPHERE,HI,8/12/2011 6:00 +Atlanta,,TRIANGLE,GA,8/12/2011 6:34 +Gig Harbor,,LIGHT,WA,8/12/2011 7:45 +Bel Air,,FIREBALL,MD,8/12/2011 9:30 +St. Louis,,,MO,8/12/2011 11:30 +Puget Sound,,DISK,WA,8/12/2011 14:13 +Emmett,,DISK,ID,8/12/2011 15:00 +Collins,,LIGHT,MS,8/12/2011 17:03 +Temecula,,LIGHT,CA,8/12/2011 19:00 +El Centro,BLUE,LIGHT,CA,8/12/2011 20:00 +New Castle,,TRIANGLE,NH,8/12/2011 20:15 +Wernersville,,SPHERE,PA,8/12/2011 20:15 +Westport,,FIREBALL,MA,8/12/2011 20:30 +Twenty Nine Palms,,DISK,CA,8/12/2011 20:40 +Charlotte,,CIRCLE,NC,8/12/2011 20:45 +Encinitas,,LIGHT,CA,8/12/2011 21:00 +Galveston,,LIGHT,TX,8/12/2011 21:00 +Long Island,,,NY,8/12/2011 21:00 +Moses Lake,,FIREBALL,WA,8/12/2011 21:00 +Owensboro,,,KY,8/12/2011 21:00 +York,ORANGE,LIGHT,ME,8/12/2011 21:00 +Rhodhiss,,LIGHT,NC,8/12/2011 21:15 +Stonelick Park,,FIREBALL,OH,8/12/2011 21:30 +Chillicothe,,OTHER,IL,8/12/2011 21:45 +Paris Landing,ORANGE,SPHERE,TN,8/12/2011 21:45 +Whitefish,RED ORANGE,FIREBALL,MT,8/12/2011 21:55 +Forked River,,FIREBALL,NJ,8/12/2011 22:00 +Houston,ORANGE,TRIANGLE,TX,8/12/2011 22:00 +Cheektowaga,ORANGE,LIGHT,NY,8/12/2011 22:40 +Muskegon,,FIREBALL,MI,8/12/2011 23:00 +Yonkers,,LIGHT,NY,8/12/2011 23:15 +Mandeville,ORANGE,SPHERE,LA,8/12/2011 23:27 +Fairfield,,CIRCLE,CA,8/13/2011 0:45 +Watertown,,,NY,8/13/2011 0:45 +Edwardsville,,DIAMOND,IL,8/13/2011 1:00 +Woodland Hills,,TEARDROP,CA,8/13/2011 1:55 +Rapid City,,OTHER,SD,8/13/2011 3:30 +Apple Valley,,SPHERE,CA,8/13/2011 4:00 +Leavenworth,,CYLINDER,WA,8/13/2011 7:00 +Mashpee,,CIRCLE,MA,8/13/2011 9:31 +Carmichael,,CIRCLE,CA,8/13/2011 18:00 +Atlantic Highlands,,LIGHT,NJ,8/13/2011 18:20 +Grafton,,LIGHT,MA,8/13/2011 20:00 +Tazewell,,CYLINDER,TN,8/13/2011 20:00 +Indianapolis,,FIREBALL,IN,8/13/2011 20:45 +Crystal Lake,,FIREBALL,IL,8/13/2011 21:00 +Crystal Lake,,FIREBALL,IL,8/13/2011 21:10 +Dade City,RED,FIREBALL,FL,8/13/2011 21:12 +El Centro,,LIGHT,CA,8/13/2011 21:13 +Aloha,RED,LIGHT,OR,8/13/2011 21:15 +Phoenix,,DISK,AZ,8/13/2011 21:15 +Tonawanda,,FIREBALL,NY,8/13/2011 21:20 +Annandale,ORANGE,LIGHT,MN,8/13/2011 21:29 +Forest Park,,VARIOUS,IL,8/13/2011 21:30 +Truckee,,DIAMOND,CA,8/13/2011 21:30 +Grand Island,,LIGHT,NY,8/13/2011 21:50 +Mattoon,RED,TRIANGLE,IL,8/13/2011 21:50 +Bristolville,ORANGE,LIGHT,OH,8/13/2011 22:00 +Dennis Port,,,MA,8/13/2011 22:00 +Buffalo,,FIREBALL,NY,8/13/2011 22:40 +Mt. Hood parkdale,,OTHER,OR,8/13/2011 23:00 +York,ORANGE,CIRCLE,ME,8/13/2011 23:00 +Billings,,LIGHT,MT,8/14/2011 0:00 +Firebaugh,,TRIANGLE,CA,8/14/2011 0:00 +McFarland,,,WI,8/14/2011 0:00 +Hays,,OVAL,MT,8/14/2011 1:00 +Auburn,,FLASH,WA,8/14/2011 1:20 +Auburn,,CIRCLE,CA,8/14/2011 9:30 +Blacksburg,,OTHER,VA,8/14/2011 11:51 +Alpine,,OTHER,CA,8/14/2011 16:50 +Ewa Beach,RED,,HI,8/14/2011 19:25 +Fort Wayne,,DISK,IN,8/14/2011 20:00 +Ridgway,,FIREBALL,IL,8/14/2011 20:10 +Dixon,,DISK,IL,8/14/2011 20:30 +Bozeman,,LIGHT,MT,8/14/2011 20:45 +Houston,,,FL,8/14/2011 20:45 +Seguin,,TRIANGLE,TX,8/14/2011 21:15 +Central Lake,,LIGHT,MI,8/14/2011 21:40 +Corvallis,,LIGHT,OR,8/14/2011 21:55 +Pentwater,ORANGE,FIREBALL,MI,8/14/2011 22:30 +Ewa Beach,,CIRCLE,HI,8/14/2011 22:50 +Ludington,,CIRCLE,MI,8/14/2011 23:00 +Baraboo,,FIREBALL,WI,8/14/2011 23:18 +Hunt,,TRIANGLE,NY,8/15/2011 0:00 +Dinkey Lakes Wilderness,,LIGHT,CA,8/15/2011 0:30 +Oklahoma City,ORANGE,FLASH,OK,8/15/2011 2:00 +Lexington,,TRIANGLE,KY,8/15/2011 3:20 +Wellington,,CIRCLE,OH,8/15/2011 3:30 +Clifton Forge,GREEN,LIGHT,VA,8/15/2011 9:00 +Mississippi,,EGG,MS,8/15/2011 13:30 +New York City,,EGG,NY,8/15/2011 15:00 +Lawrenceville,,DIAMOND,GA,8/15/2011 16:00 +Battle Mountain,,CIGAR,NV,8/15/2011 17:00 +Hamburg,,OTHER,NY,8/15/2011 17:00 +High Point,,TRIANGLE,NC,8/15/2011 19:00 +Dover Township,,,PA,8/15/2011 20:30 +Mackinaw City,,FIREBALL,MI,8/15/2011 21:00 +Yankton,,LIGHT,SD,8/15/2011 21:00 +Boise,,CIRCLE,ID,8/15/2011 22:00 +Macon,,,GA,8/15/2011 22:00 +Phoenix,RED BLUE,LIGHT,AZ,8/15/2011 22:00 +Holden,RED,LIGHT,MO,8/15/2011 22:20 +Kittery Point,,TRIANGLE,ME,8/15/2011 23:00 +Oakdale,,LIGHT,CA,8/15/2011 23:00 +Raytown,,TRIANGLE,MO,8/16/2011 1:00 +Siloam Springs,,CIRCLE,AR,8/16/2011 1:00 +Lexington,,CYLINDER,KY,8/16/2011 11:40 +North Bend,,,WA,8/16/2011 11:55 +Coos Bay,,LIGHT,OR,8/16/2011 17:28 +West Seneca,ORANGE,FIREBALL,NY,8/16/2011 18:00 +Kingsport,,CYLINDER,TN,8/16/2011 20:00 +Old orchard beach,,FORMATION,ME,8/16/2011 20:10 +Kingsport,,CYLINDER,TN,8/16/2011 20:12 +Vancouver,,DISK,WA,8/16/2011 22:00 +Boise,RED,LIGHT,ID,8/16/2011 22:22 +Shawnee,,FIREBALL,KS,8/16/2011 22:30 +Topsail Island,,TRIANGLE,NC,8/16/2011 22:40 +Grand Canyon,,OVAL,AZ,8/16/2011 23:00 +Kent,,DIAMOND,WA,8/17/2011 0:34 +Las Vegas,,SPHERE,NV,8/17/2011 2:00 +El Paso,,CIRCLE,TX,8/17/2011 2:30 +Macomb,,LIGHT,IL,8/17/2011 8:41 +Waco,,RECTANGLE,TX,8/17/2011 14:00 +Cromwell,,LIGHT,CT,8/17/2011 16:00 +Cannon Falls,,CYLINDER,MN,8/17/2011 18:10 +Pinellas Park,,LIGHT,FL,8/17/2011 19:00 +Oak Creek,,TRIANGLE,WI,8/17/2011 20:45 +Fontana,,LIGHT,CA,8/17/2011 21:00 +Janesville,,SPHERE,WI,8/17/2011 21:00 +Port Jefferson Station,,CIRCLE,NY,8/17/2011 21:00 +Cromwell,,LIGHT,CT,8/17/2011 21:30 +Bartlett,,LIGHT,IL,8/17/2011 22:00 +Roseville,GREEN,LIGHT,MI,8/17/2011 22:00 +Spokane,,LIGHT,WA,8/17/2011 22:00 +Reno,,DISK,NV,8/17/2011 22:30 +Buffalo,,,MN,8/17/2011 23:10 +Waterloo,,CIRCLE,IA,8/17/2011 23:20 +Long Beach,,LIGHT,CA,8/18/2011 4:00 +Granite Falls,,LIGHT,WA,8/18/2011 4:19 +Slaughterville,,TRIANGLE,OK,8/18/2011 5:30 +Englewood,,SPHERE,CO,8/18/2011 14:30 +Tinley Park,,CYLINDER,IL,8/18/2011 18:30 +Kalamazoo,,LIGHT,MI,8/18/2011 19:00 +Sumrall,,OTHER,MS,8/18/2011 21:00 +Bellingham,,LIGHT,WA,8/18/2011 21:44 +Santa Ana,RED BLUE,FLASH,CA,8/18/2011 22:00 +San Jose,,LIGHT,CA,8/18/2011 22:15 +Virginia Beach,,OVAL,VA,8/19/2011 0:08 +Maple Valley,,OTHER,WA,8/19/2011 0:44 +Baker City,,FIREBALL,OR,8/19/2011 0:50 +Jacksonville,RED,LIGHT,FL,8/19/2011 1:30 +Kalispell,,OTHER,MT,8/19/2011 2:19 +Mulberry,RED,,FL,8/19/2011 5:30 +South Bend,,SPHERE,IN,8/19/2011 10:20 +Hialeah,,TEARDROP,FL,8/19/2011 13:34 +Tucson,,,AZ,8/19/2011 15:38 +Moore,,DISK,SC,8/19/2011 18:00 +Las Vegas,,TEARDROP,NV,8/19/2011 20:30 +Kansas City,,FIREBALL,MO,8/19/2011 21:00 +New Bedford,,FORMATION,MA,8/19/2011 21:00 +Kansas City,,,MO,8/19/2011 21:07 +Kansas City,,LIGHT,KS,8/19/2011 21:09 +Holland,YELLOW,FORMATION,MI,8/19/2011 21:26 +Hillsboro,,LIGHT,OR,8/19/2011 21:30 +Merritt Island,,FIREBALL,FL,8/19/2011 21:59 +Appleton,,DISK,WI,8/19/2011 22:00 +Yuba City,,,CA,8/19/2011 22:02 +Sanford,,LIGHT,NC,8/19/2011 23:00 +Las Cruces,YELLOW,SPHERE,NM,8/19/2011 23:55 +Prattesville,,TRIANGLE,NY,8/20/2011 1:00 +Yucaipa,,SPHERE,CA,8/20/2011 8:32 +Philadelphia,,VARIOUS,PA,8/20/2011 10:00 +Fullerton,,DISK,CA,8/20/2011 18:00 +Delaware,,SPHERE,OH,8/20/2011 19:30 +Globe,RED,LIGHT,AZ,8/20/2011 19:35 +Globe,,SPHERE,AZ,8/20/2011 19:35 +Angleton,,FORMATION,TX,8/20/2011 20:30 +Niles,,FIREBALL,NY,8/20/2011 20:44 +Cedarburg,,FIREBALL,WI,8/20/2011 20:45 +Mount Vernon,ORANGE,CIRCLE,OH,8/20/2011 20:55 +Chambersburg,,FIREBALL,PA,8/20/2011 21:00 +Lindenhurst,ORANGE,RECTANGLE,NY,8/20/2011 21:00 +Poplar Bluff,,CIRCLE,MO,8/20/2011 21:00 +Provo,,LIGHT,UT,8/20/2011 21:00 +Wailuku,,OTHER,HI,8/20/2011 21:00 +Kansas City,,FORMATION,KS,8/20/2011 21:15 +Aurora,,CIRCLE,OR,8/20/2011 21:20 +Lenoir City,ORANGE,FIREBALL,TN,8/20/2011 21:30 +Tacoma,,FORMATION,WA,8/20/2011 21:30 +Falls Church,RED,LIGHT,VA,8/20/2011 22:00 +Osage Beach,,OVAL,MO,8/20/2011 22:00 +Palermo,RED,LIGHT,ME,8/20/2011 22:00 +Ventura,,FIREBALL,CA,8/20/2011 22:20 +Kingman,,CIRCLE,AZ,8/20/2011 22:27 +Auburn,,LIGHT,WA,8/20/2011 22:30 +Independence,,LIGHT,MO,8/20/2011 22:30 +Casper,,LIGHT,WY,8/20/2011 23:00 +Palm Coast,,FIREBALL,FL,8/20/2011 23:00 +Riverdale,ORANGE,FIREBALL,MI,8/20/2011 23:05 +Bowling Green,ORANGE,SPHERE,OH,8/20/2011 23:50 +Raleigh,,CROSS,NC,8/21/2011 1:00 +Henrietta,,OVAL,NY,8/21/2011 1:30 +Waynesboro,,,VA,8/21/2011 3:00 +Denver,,CYLINDER,CO,8/21/2011 4:00 +Brentwood,,FORMATION,CA,8/21/2011 8:35 +Natomas,BLUE,OTHER,CA,8/21/2011 9:30 +Mansfield,,CYLINDER,TX,8/21/2011 12:00 +Worcester,,OTHER,MA,8/21/2011 13:00 +San Clemente,,TEARDROP,CA,8/21/2011 13:30 +San Diego,,CIRCLE,CA,8/21/2011 18:11 +Temecula,,FIREBALL,CA,8/21/2011 20:00 +Oakley,,TRIANGLE,CA,8/21/2011 20:25 +Knightsen,,FORMATION,CA,8/21/2011 20:30 +Temecula,ORANGE,SPHERE,CA,8/21/2011 20:30 +Discovery Bay,,TRIANGLE,CA,8/21/2011 20:34 +Clover,,CIRCLE,SC,8/21/2011 20:45 +Moses Lake,,FIREBALL,WA,8/21/2011 20:45 +Kalamazoo,,,MI,8/21/2011 22:00 +Cashers,,SPHERE,NC,8/21/2011 23:00 +Tunnel Hill,,TRIANGLE,GA,8/21/2011 23:30 +Muncie,,OVAL,IN,8/22/2011 5:00 +Livingston,,LIGHT,MT,8/22/2011 8:45 +Highland Springs,,FORMATION,VA,8/22/2011 14:00 +Mashpee,,SPHERE,MA,8/22/2011 14:00 +Whittier,,TRIANGLE,CA,8/22/2011 20:22 +Boynton Beach,,LIGHT,FL,8/22/2011 20:32 +Eddyville,,OTHER,KY,8/22/2011 20:47 +Hugo,,FIREBALL,OK,8/22/2011 21:00 +Salem,ORANGE,FIREBALL,OH,8/22/2011 21:45 +Whitefish,RED,TRIANGLE,MT,8/22/2011 22:00 +Pensacola,,LIGHT,FL,8/22/2011 22:10 +Warrenton,,SPHERE,VA,8/22/2011 22:25 +Conway,,TRIANGLE,AR,8/22/2011 23:30 +Stroudsburg,,FLASH,PA,8/23/2011 3:00 +Athens,,LIGHT,AL,8/23/2011 5:00 +Lancaster,,LIGHT,SC,8/23/2011 9:00 +Moon Township,,CYLINDER,PA,8/23/2011 10:05 +Middlesboro,,CIRCLE,KY,8/23/2011 10:13 +Portland,,TRIANGLE,OR,8/23/2011 11:06 +Denver,,DISK,CO,8/23/2011 11:15 +San Antonio,,OTHER,TX,8/23/2011 12:45 +Niceville,,OTHER,FL,8/23/2011 15:30 +Las Vegas,,CYLINDER,NV,8/23/2011 16:00 +Shallowater,,CIRCLE,TX,8/23/2011 17:50 +Hollister,RED,TRIANGLE,CA,8/23/2011 20:30 +Battle Ground,,FORMATION,WA,8/23/2011 21:20 +Auburn,,LIGHT,WA,8/23/2011 21:24 +West Des Moines,,TRIANGLE,IA,8/23/2011 21:25 +Ten Lakes scenic area; border,,LIGHT,MT,8/23/2011 22:00 +Bakersfield,,FIREBALL,CA,8/24/2011 1:15 +Cloquet,,LIGHT,MN,8/24/2011 4:15 +Cutchogue,,TRIANGLE,NY,8/24/2011 4:30 +Geronimo,,LIGHT,OK,8/24/2011 5:50 +Portland,,OTHER,OR,8/24/2011 9:00 +Raleigh,,OTHER,NC,8/24/2011 12:45 +Tontogany,,CIRCLE,OH,8/24/2011 20:50 +New York City,,TRIANGLE,NY,8/24/2011 21:00 +Wilkeson,,LIGHT,WA,8/24/2011 21:30 +Harrington,,SPHERE,DE,8/24/2011 22:00 +Laguna Niguel,,CIRCLE,CA,8/24/2011 22:10 +in space,,LIGHT,GA,8/25/2011 0:00 +Des Moines,,EGG,IA,8/25/2011 0:31 +Winnett,ORANGE,FLASH,MT,8/25/2011 1:00 +Lisbon,,DISK,OH,8/25/2011 5:30 +Herkimer,,LIGHT,NY,8/25/2011 8:25 +Herkimer,,LIGHT,NY,8/25/2011 8:25 +Saint Joseph,,LIGHT,IL,8/25/2011 9:50 +War Eagle,BLUE,TRIANGLE,AR,8/25/2011 12:40 +Bonneville Salt Flats,,OTHER,UT,8/25/2011 14:00 +North Woodmere,,,NY,8/25/2011 16:00 +Carmichaels,,DISK,PA,8/25/2011 19:00 +Alton,,SPHERE,IL,8/25/2011 19:30 +Twisp,,FIREBALL,WA,8/25/2011 20:45 +Curlew,,LIGHT,WA,8/25/2011 20:50 +Arlington,,LIGHT,WA,8/25/2011 20:52 +Fresno,,TRIANGLE,CA,8/25/2011 20:55 +Baroda,,,MI,8/25/2011 21:00 +Brier,,LIGHT,WA,8/25/2011 21:00 +Mountain Home,ORANGE,CIRCLE,ID,8/25/2011 21:30 +Nampa,,CROSS,ID,8/25/2011 21:30 +Wellesley Island,ORANGE,CIRCLE,NY,8/25/2011 21:30 +Burton,RED,CIRCLE,MI,8/25/2011 22:00 +Bellingham,,TRIANGLE,WA,8/25/2011 22:30 +Saint Paul,,LIGHT,MN,8/26/2011 0:00 +Sunland,RED,SPHERE,CA,8/26/2011 0:20 +Houston,,FLASH,TX,8/26/2011 0:45 +Orlando,,CIRCLE,FL,8/26/2011 8:35 +Clinton,,LIGHT,MS,8/26/2011 8:38 +Fairport,,FIREBALL,NY,8/26/2011 11:56 +Virginia Beach,ORANGE,CIRCLE,VA,8/26/2011 20:00 +Galveston,,LIGHT,TX,8/26/2011 20:30 +Monroe,,,WA,8/26/2011 20:30 +Portage,RED,OTHER,IN,8/26/2011 20:30 +Lake in the Hills,RED,LIGHT,IL,8/26/2011 21:00 +Perkasie,,CIRCLE,PA,8/26/2011 21:00 +Huntington Beach,,TRIANGLE,CA,8/26/2011 22:00 +Buffalo,,OTHER,NY,8/26/2011 22:30 +Portland,RED,FORMATION,ME,8/26/2011 22:30 +Lancaster,,CYLINDER,KY,8/27/2011 0:00 +no data,,FIREBALL,OR,8/27/2011 0:00 +Columbia,ORANGE,LIGHT,SC,8/27/2011 1:30 +San Fernando,RED,DISK,CA,8/27/2011 1:30 +Drake,,FLASH,MO,8/27/2011 2:40 +Manchester,,LIGHT,TN,8/27/2011 3:00 +Utica,,DIAMOND,NY,8/27/2011 7:30 +Joliet,,TRIANGLE,IL,8/27/2011 8:22 +Rutland City,,OTHER,VT,8/27/2011 10:30 +Field Store,,RECTANGLE,TX,8/27/2011 12:10 +Chicago,,SPHERE,IL,8/27/2011 14:30 +Hartland,ORANGE,FIREBALL,WI,8/27/2011 19:00 +Cary,,FIREBALL,IL,8/27/2011 20:30 +Lake in the Hills,,TRIANGLE,IL,8/27/2011 20:30 +Miami,,LIGHT,FL,8/27/2011 20:40 +Lockport,,LIGHT,NY,8/27/2011 20:45 +Atwater,,VARIOUS,CA,8/27/2011 21:00 +Wilkeson,,LIGHT,WA,8/27/2011 21:00 +Howard,RED,FIREBALL,OH,8/27/2011 21:05 +LaGrange,RED,OTHER,GA,8/27/2011 21:10 +Carmel,ORANGE,SPHERE,IN,8/27/2011 21:15 +Port Allegany,ORANGE,CIRCLE,PA,8/27/2011 22:00 +Seattle,,LIGHT,WA,8/27/2011 22:00 +Strongsville,,TEARDROP,OH,8/27/2011 22:00 +Umatilla,,LIGHT,WA,8/27/2011 22:00 +Seattle,RED,CIRCLE,WA,8/27/2011 22:15 +Riverdale,ORANGE,CIRCLE,MI,8/27/2011 23:00 +Evansville,RED ORANGE,FIREBALL,IN,8/27/2011 23:15 +Seattle,RED,TRIANGLE,WA,8/27/2011 23:15 +Rolla,BLUE,LIGHT,MO,8/28/2011 2:00 +Charleston,,OVAL,SC,8/28/2011 3:30 +Catawissa,,TRIANGLE,MO,8/28/2011 4:00 +East Brunswick,RED YELLOW GREEN BLUE,SPHERE,NJ,8/28/2011 11:30 +no data,,CIRCLE,WA,8/28/2011 12:00 +Nissequogue,,SPHERE,NY,8/28/2011 14:27 +Sacramento,,CIRCLE,CA,8/28/2011 16:50 +Ventura,GREEN,CIRCLE,CA,8/28/2011 17:45 +Amherst,ORANGE,SPHERE,VA,8/28/2011 18:00 +Waukee,,OTHER,IA,8/28/2011 20:30 +Shelbyville,,SPHERE,TN,8/28/2011 20:42 +Oregon City,RED,LIGHT,OR,8/28/2011 21:00 +Perkasie,,TRIANGLE,PA,8/28/2011 21:00 +Tonawanda,RED,CIRCLE,NY,8/28/2011 21:00 +Vancouver,RED,LIGHT,WA,8/28/2011 21:00 +Seattle,,LIGHT,WA,8/28/2011 21:09 +Milwaukie,,LIGHT,OR,8/28/2011 21:10 +Spokane,ORANGE,LIGHT,WA,8/28/2011 21:12 +Puyallup,,CIRCLE,WA,8/28/2011 21:15 +Rochester,,LIGHT,MN,8/28/2011 21:45 +Carbon Hill,,FIREBALL,IL,8/28/2011 23:05 +Riverside,,FLASH,CA,8/28/2011 23:15 +Prescott Valley,,OVAL,AZ,8/28/2011 23:20 +Leominster,,LIGHT,MA,8/29/2011 4:45 +Alvin,,CIRCLE,TX,8/29/2011 5:45 +Alvin,,DIAMOND,TX,8/29/2011 5:45 +New Lenox,,TRIANGLE,IL,8/29/2011 8:45 +Chula Vista,,LIGHT,CA,8/29/2011 12:30 +Chicago,,,IL,8/29/2011 20:00 +Gilbert,,LIGHT,MN,8/29/2011 20:00 +Seattle,ORANGE YELLOW,CYLINDER,WA,8/29/2011 20:30 +Brick,,CIRCLE,NJ,8/29/2011 20:45 +Lancaster,,DISK,CA,8/29/2011 22:00 +Oscoda,,LIGHT,MI,8/29/2011 22:00 +Branson,,LIGHT,MO,8/29/2011 22:05 +Reading,,LIGHT,MI,8/29/2011 22:30 +Morgantown,,TRIANGLE,WV,8/29/2011 22:50 +Elizabethton,,,TN,8/29/2011 23:20 +Toledo,,LIGHT,OH,8/29/2011 23:25 +Felt,,TRIANGLE,ID,8/30/2011 0:00 +Atlantic Beach,RED ORANGE,FIREBALL,FL,8/30/2011 1:30 +Grand Rapids,,TRIANGLE,MI,8/30/2011 3:15 +Pasadena,,FLASH,MD,8/30/2011 3:30 +Franklin,,,IN,8/30/2011 5:30 +Ashland,,CIGAR,OH,8/30/2011 9:35 +Bastrop,,LIGHT,LA,8/30/2011 11:20 +Blue Point,,FIREBALL,NY,8/30/2011 20:00 +Golden Valley,,LIGHT,AZ,8/30/2011 20:20 +White House,ORANGE,FIREBALL,TN,8/30/2011 20:30 +Sharon,,,PA,8/30/2011 20:36 +Sequim,RED,LIGHT,WA,8/30/2011 20:40 +Yonkers,,LIGHT,NY,8/30/2011 20:44 +Adelanto,,LIGHT,CA,8/30/2011 21:00 +Macon,,RECTANGLE,GA,8/30/2011 21:30 +Bennington,,TRIANGLE,VT,8/30/2011 21:45 +Bridgewater,,CHEVRON,MA,8/30/2011 21:45 +Lysander,,OTHER,NY,8/30/2011 22:16 +Boise,,LIGHT,ID,8/30/2011 22:30 +Exeter,RED,TRIANGLE,NH,8/30/2011 23:00 +Long Beach,,LIGHT,CA,8/30/2011 23:00 +Ardmore,RED,TRIANGLE,OK,8/31/2011 0:00 +Rock Springs,,LIGHT,WY,8/31/2011 0:00 +Hooks,,LIGHT,TX,8/31/2011 1:00 +Trenton,ORANGE,FIREBALL,MI,8/31/2011 10:30 +Idaho,,CIGAR,UT,8/31/2011 14:00 +Sun Valley,,TRIANGLE,CA,8/31/2011 20:00 +Industry,,LIGHT,ME,8/31/2011 20:14 +Mount Sinai,RED,OTHER,NY,8/31/2011 20:30 +Montauk,,FIREBALL,NY,8/31/2011 21:05 +Lynchburg,,OTHER,VA,8/31/2011 21:17 +Castro Valley,,LIGHT,CA,8/31/2011 21:22 +Lily,,DIAMOND,KY,8/31/2011 21:25 +Louisburg,,CIRCLE,NC,8/31/2011 21:27 +Hazelton,,,KS,8/31/2011 21:52 +Montauk,,FIREBALL,NY,8/31/2011 22:00 +Doylestown,BLUE,LIGHT,OH,8/31/2011 23:03 +Sherburn,RED,TRIANGLE,MN,9/1/2011 1:22 +Vashon,,LIGHT,WA,9/1/2011 1:55 +West Greenwich,,LIGHT,RI,9/1/2011 2:30 +Bremerton,,CIRCLE,WA,9/1/2011 3:00 +Friday Harbor,,CIRCLE,WA,9/1/2011 4:00 +Franklin County,,OTHER,NC,9/1/2011 9:00 +N. Myrtle Beach,,OTHER,SC,9/1/2011 9:20 +Wolf Creek,,SPHERE,MT,9/1/2011 10:25 +Hamburg,,CONE,NY,9/1/2011 18:00 +Falmouth,,LIGHT,MA,9/1/2011 18:45 +Watertown,,RECTANGLE,NY,9/1/2011 20:30 +Linton,,LIGHT,IN,9/1/2011 20:50 +Silver Lake,,LIGHT,KS,9/1/2011 20:55 +Aurora,ORANGE,CYLINDER,CO,9/1/2011 21:00 +Bernard,ORANGE,FIREBALL,ME,9/1/2011 21:00 +Fayetteville,,,AR,9/1/2011 21:00 +Jacksonville,,LIGHT,AL,9/1/2011 21:00 +Lititz,,VARIOUS,PA,9/1/2011 21:00 +Spring Hill,,FORMATION,KS,9/1/2011 21:00 +Ovid,,LIGHT,NY,9/1/2011 21:47 +Portland,ORANGE,SPHERE,OR,9/1/2011 22:00 +Signal Mountain,,DISK,TN,9/1/2011 22:00 +Brownfield,ORANGE,LIGHT,TX,9/1/2011 23:20 +Morgans Point Resort,,CIRCLE,TX,9/1/2011 23:30 +Lancaster,,LIGHT,PA,9/1/2011 23:45 +Alexandria,,TRIANGLE,LA,9/2/2011 0:00 +Merced,,LIGHT,CA,9/2/2011 1:10 +Sacramento,,,CA,9/2/2011 1:14 +Pineville,,OTHER,MO,9/2/2011 1:15 +Brattleboro,ORANGE,FLASH,VT,9/2/2011 8:39 +Syracuse,,DISK,NY,9/2/2011 15:00 +New Bedford,,DISK,MA,9/2/2011 19:00 +Bryceville,,OTHER,FL,9/2/2011 20:00 +Waupaca,RED ORANGE,SPHERE,WI,9/2/2011 20:22 +Des Moines,,,IA,9/2/2011 20:45 +Bentonville,,DISK,AR,9/2/2011 21:00 +Lubbock,,LIGHT,TX,9/2/2011 21:00 +Spencer,,LIGHT,WV,9/2/2011 21:00 +Salt Lake City,ORANGE,CIRCLE,UT,9/2/2011 21:50 +San Antonio,,TRIANGLE,TX,9/2/2011 22:00 +Matlock,,LIGHT,WA,9/2/2011 22:15 +Batavia,,CIRCLE,IL,9/2/2011 22:30 +Elkhorn,ORANGE,OTHER,WI,9/2/2011 22:30 +Indianapolis,,CIGAR,IN,9/2/2011 23:00 +Gorge,,FIREBALL,WA,9/3/2011 1:00 +Fitchburg,,CIRCLE,MA,9/3/2011 8:30 +Round Rock,,LIGHT,TX,9/3/2011 9:00 +Pittsburg,RED GREEN,TEARDROP,CA,9/3/2011 13:10 +Black Diamond,,TEARDROP,WA,9/3/2011 15:00 +Aulander,,VARIOUS,NC,9/3/2011 20:00 +Windsor,RED,CIRCLE,MA,9/3/2011 20:00 +Hampton Beach,RED,SPHERE,NH,9/3/2011 20:15 +Rochester,RED,CIRCLE,NY,9/3/2011 20:16 +Katy,,RECTANGLE,TX,9/3/2011 20:40 +Aulander,YELLOW,TRIANGLE,NC,9/3/2011 21:00 +Church Point,,CYLINDER,LA,9/3/2011 21:00 +Essex junction,ORANGE,LIGHT,VT,9/3/2011 21:00 +Freedom,,EGG,NH,9/3/2011 21:00 +Passaic,,OTHER,MO,9/3/2011 21:00 +Bentonville,,FIREBALL,AR,9/3/2011 21:15 +Cascade Mountains,BLUE,FIREBALL,WA,9/3/2011 21:30 +Wilkes-Barre,,FIREBALL,PA,9/3/2011 21:30 +Corvallis,,SPHERE,MT,9/3/2011 22:00 +Mono Springs,,CIRCLE,CA,9/3/2011 22:00 +Ogallala,,SPHERE,NE,9/3/2011 22:00 +Wisconsin Dells,,LIGHT,WI,9/3/2011 22:00 +Huron,,LIGHT,OH,9/3/2011 22:15 +Narragansett,,,RI,9/3/2011 22:15 +Richland,,CIRCLE,MI,9/3/2011 22:15 +Kings Park,,OVAL,NY,9/3/2011 22:22 +Bellefontaine,ORANGE,FIREBALL,OH,9/3/2011 23:00 +Glandorf,,SPHERE,OH,9/3/2011 23:00 +Riviera Beach,YELLOW,TEARDROP,FL,9/3/2011 23:30 +Centennial,,,CO,9/4/2011 0:00 +Newport,,TRIANGLE,TN,9/4/2011 0:00 +Savona,,LIGHT,NY,9/4/2011 0:00 +International Falls,,,MN,9/4/2011 1:00 +Ridgway,,CIRCLE,IL,9/4/2011 1:00 +Visalia,ORANGE,DISK,CA,9/4/2011 1:00 +Carrollton,BLUE,,TX,9/4/2011 1:20 +International Falls,BLUE,OVAL,MN,9/4/2011 2:00 +Milstadt,,LIGHT,IL,9/4/2011 2:30 +Coppell,,LIGHT,TX,9/4/2011 2:45 +Dallas,,FIREBALL,TX,9/4/2011 4:00 +McKinney,,LIGHT,TX,9/4/2011 5:45 +Faribault,,EGG,MN,9/4/2011 13:30 +Fort Flagler,,DISK,WA,9/4/2011 13:40 +Winston-Salem,,FLASH,NC,9/4/2011 15:00 +Findlay,ORANGE,FIREBALL,OH,9/4/2011 18:30 +Roswell,,LIGHT,NM,9/4/2011 19:50 +Tama,RED,FIREBALL,IA,9/4/2011 20:45 +Tucson,,TRIANGLE,AZ,9/4/2011 21:02 +King of Prussia,,FORMATION,PA,9/4/2011 21:10 +Waterloo,ORANGE,CIRCLE,IA,9/4/2011 21:32 +Corvallis,,LIGHT,OR,9/4/2011 21:37 +Ashford Hollow,,OTHER,NY,9/4/2011 22:00 +Cheswick,,LIGHT,PA,9/4/2011 22:00 +Columbia,,SPHERE,MO,9/4/2011 22:30 +Olympia,,CHEVRON,WA,9/4/2011 23:00 +West Des Moines,,FORMATION,IA,9/4/2011 23:25 +Brea,YELLOW,OVAL,CA,9/4/2011 23:30 +Pocatello,,LIGHT,ID,9/5/2011 0:30 +Baytown,,,TX,9/5/2011 0:45 +Portland,,LIGHT,OR,9/5/2011 1:00 +Seattle,ORANGE,LIGHT,WA,9/5/2011 1:00 +Miami,,CIRCLE,FL,9/5/2011 6:30 +Eugene,,LIGHT,OR,9/5/2011 12:18 +Rockford,ORANGE,LIGHT,IL,9/5/2011 20:30 +Columbus,,,OH,9/5/2011 20:45 +Copperas Cove,,TRIANGLE,TX,9/5/2011 21:25 +Lakeville,,FIREBALL,MN,9/5/2011 21:45 +Riverside,,LIGHT,CA,9/5/2011 22:30 +Morgan Hill,,SPHERE,CA,9/5/2011 23:50 +Wichita,,LIGHT,KS,9/6/2011 19:45 +Covington,RED BLUE,TRIANGLE,GA,9/6/2011 21:02 +Duvall,RED,TRIANGLE,WA,9/6/2011 21:30 +Fountain,RED,,CO,9/6/2011 23:30 +Escondido,,LIGHT,CA,9/7/2011 0:00 +Heber City,,DISK,UT,9/7/2011 0:22 +Nassau County,,,NY,9/7/2011 2:02 +Hemet,,DIAMOND,CA,9/7/2011 3:00 +Sacramento,,TRIANGLE,CA,9/7/2011 9:00 +Friendswood,RED,FIREBALL,TX,9/7/2011 20:10 +Saint Peters,RED,FIREBALL,MO,9/7/2011 20:30 +Pflugerville,YELLOW,FORMATION,TX,9/7/2011 21:00 +Cedar Lake,,CIRCLE,IN,9/7/2011 21:54 +North Wilkesboro,YELLOW,LIGHT,NC,9/8/2011 3:31 +Fuquay Varina,,FIREBALL,NC,9/8/2011 16:30 +Farmington,,TEARDROP,NM,9/8/2011 19:05 +Tulsa,,LIGHT,OK,9/8/2011 20:00 +Canton,,TRIANGLE,MI,9/8/2011 20:30 +Lock Haven,,FIREBALL,PA,9/8/2011 20:50 +Milwaukee,,,WI,9/8/2011 21:00 +Blythe,,OVAL,CA,9/8/2011 22:03 +Windsor,,VARIOUS,CO,9/8/2011 22:45 +Claymont,,CIRCLE,DE,9/8/2011 23:00 +Volo,ORANGE,FIREBALL,IL,9/8/2011 23:00 +Volo,,OTHER,IL,9/8/2011 23:00 +Rockford,,FIREBALL,IL,9/8/2011 23:15 +Rockford,,LIGHT,IL,9/8/2011 23:20 +Evansville,,LIGHT,IN,9/8/2011 23:33 +Arley,,SPHERE,AL,9/9/2011 8:30 +Hampstead,ORANGE,DIAMOND,NC,9/9/2011 9:30 +Double Springs,,SPHERE,AL,9/9/2011 10:20 +Wilmington,,OVAL,NC,9/9/2011 11:00 +Tulsa,,OVAL,OK,9/9/2011 13:00 +Portland,,OVAL,OR,9/9/2011 20:00 +Santa Barbara,ORANGE,FIREBALL,CA,9/9/2011 20:00 +Rochester,,CIRCLE,NY,9/9/2011 20:30 +Bradenton,,SPHERE,FL,9/9/2011 20:50 +Ridgeland,,,SC,9/9/2011 21:00 +Montauk,ORANGE,CYLINDER,NY,9/9/2011 21:15 +Chula Vista,,,CA,9/9/2011 21:30 +Chula Vista,RED,LIGHT,CA,9/9/2011 22:00 +Kenmore,,VARIOUS,WA,9/9/2011 23:00 +Mokena,RED,LIGHT,IL,9/9/2011 23:05 +Point Pleasant,,LIGHT,NJ,9/10/2011 0:00 +Glenwood,,CIRCLE,NJ,9/10/2011 2:00 +Houston,,SPHERE,TX,9/10/2011 2:20 +Ammon,,LIGHT,ID,9/10/2011 5:20 +Dale Hollow Lake,,SPHERE,KY,9/10/2011 6:22 +Oak Lawn,ORANGE,,IL,9/10/2011 8:00 +Buffalo,ORANGE,CIRCLE,NY,9/10/2011 9:25 +Hartland,ORANGE,FIREBALL,MI,9/10/2011 9:45 +Falls,ORANGE,CIRCLE,PA,9/10/2011 12:50 +Vassalboro,,CYLINDER,ME,9/10/2011 13:30 +Williamsville,,OTHER,NY,9/10/2011 14:30 +Pebble Beach,,LIGHT,CA,9/10/2011 19:30 +Seligman,,DISK,AZ,9/10/2011 19:45 +Tremont,BLUE,SPHERE,PA,9/10/2011 20:00 +Everett,ORANGE,CIRCLE,WA,9/10/2011 20:20 +Lakeville,,FORMATION,MN,9/10/2011 20:30 +Allen,GREEN BLUE,EGG,TX,9/10/2011 20:45 +Renton,ORANGE,LIGHT,WA,9/10/2011 20:54 +Allendale,ORANGE,OTHER,MI,9/10/2011 21:00 +Baraboo,,CIRCLE,WI,9/10/2011 21:00 +Tonawanda,,FIREBALL,NY,9/10/2011 21:00 +Harrison,,CIRCLE,ME,9/10/2011 21:30 +Plainfield,,CIGAR,IL,9/10/2011 22:00 +Port Clinton,RED GREEN,,OH,9/10/2011 22:00 +Seattle,,CIRCLE,WA,9/10/2011 22:00 +West Yarmouth,ORANGE,CIRCLE,MA,9/10/2011 22:00 +Greenfield,,LIGHT,PA,9/10/2011 22:30 +Lantana,BLUE,VARIOUS,TX,9/10/2011 22:43 +Landers,RED,CIRCLE,CA,9/10/2011 22:50 +Lincoln,,,CA,9/10/2011 23:20 +Sioux City,ORANGE,LIGHT,IA,9/10/2011 23:20 +Olathe,ORANGE,TEARDROP,KS,9/10/2011 23:30 +Twin Falls,,FIREBALL,ID,9/10/2011 23:30 +Greeneville,,LIGHT,TN,9/10/2011 23:44 +The Dalles,ORANGE,FIREBALL,OR,9/11/2011 0:00 +Fishers,,LIGHT,IN,9/11/2011 0:25 +Reno,,LIGHT,NV,9/11/2011 5:30 +Wasilla,YELLOW,TRIANGLE,AK,9/11/2011 9:00 +Newberry,,TEARDROP,FL,9/11/2011 11:00 +Ecorse,ORANGE,LIGHT,MI,9/11/2011 19:30 +Los Angeles,BLUE,VARIOUS,CA,9/11/2011 20:00 +Silver City,,TRIANGLE,MI,9/11/2011 20:00 +Oak Lawn,ORANGE,CIRCLE,IL,9/11/2011 20:20 +Senatobia,,CIRCLE,MS,9/11/2011 21:10 +Clinton Township,RED,OTHER,MI,9/11/2011 21:15 +Melvindale,,DIAMOND,MI,9/11/2011 21:15 +Canton,ORANGE,LIGHT,MI,9/11/2011 21:30 +Bellevue,YELLOW,SPHERE,NE,9/11/2011 22:30 +Detroit,,FORMATION,MI,9/11/2011 22:45 +Sterling Heights,ORANGE,FIREBALL,MI,9/11/2011 23:10 +Greenville,GREEN,LIGHT,NC,9/12/2011 1:00 +Dowagiac,GREEN,DIAMOND,MI,9/12/2011 2:55 +La Vista,,LIGHT,NE,9/12/2011 4:38 +La Porte,,CIRCLE,TX,9/12/2011 14:45 +Tupelo,,OTHER,MS,9/12/2011 15:08 +Vancouver,,CIRCLE,WA,9/12/2011 20:00 +League City,,SPHERE,TX,9/12/2011 20:12 +Casper,RED GREEN BLUE,CIRCLE,WY,9/12/2011 20:30 +Omaha,,TRIANGLE,NE,9/12/2011 21:15 +Providence,,TRIANGLE,RI,9/12/2011 21:30 +Destin,,LIGHT,FL,9/12/2011 22:00 +Kennedy,,,NY,9/12/2011 23:00 +Manchester,,TRIANGLE,MO,9/12/2011 23:15 +Dundalk,,TRIANGLE,MD,9/13/2011 0:00 +Silver Springs,,DIAMOND,FL,9/13/2011 1:00 +Bismarck,RED ORANGE BLUE,LIGHT,MO,9/13/2011 4:20 +Greer,RED,SPHERE,SC,9/13/2011 9:00 +Greer,RED,SPHERE,SC,9/13/2011 9:00 +Springer,BLUE,LIGHT,OK,9/13/2011 10:45 +Fort Edward,,OVAL,NY,9/13/2011 13:00 +Manalapan,,,NJ,9/13/2011 18:45 +Cathedral City,,,CA,9/13/2011 19:30 +Florence,,TRIANGLE,KY,9/13/2011 21:00 +Belleville,,CIRCLE,IL,9/13/2011 22:00 +Destin,,,FL,9/13/2011 22:00 +Scottsbluff,,LIGHT,NE,9/13/2011 22:15 +New Carrollton,,,MD,9/13/2011 23:30 +Lodi,,LIGHT,CA,9/14/2011 0:00 +Ojai,RED,DISK,CA,9/14/2011 6:45 +Cave Creek,,CIRCLE,AZ,9/14/2011 17:00 +Las Vegas,,FIREBALL,NV,9/14/2011 19:00 +Las Vegas,GREEN,OTHER,NV,9/14/2011 19:00 +Henderson,,FIREBALL,NV,9/14/2011 19:30 +Palm Springs,,,CA,9/14/2011 19:30 +Pahrump,GREEN,FIREBALL,NV,9/14/2011 19:40 +Gold Canyon,,OTHER,AZ,9/14/2011 19:45 +Henderson,YELLOW GREEN,,NV,9/14/2011 19:45 +Las Vegas,RED,FIREBALL,NV,9/14/2011 19:45 +Pahrump,,,NV,9/14/2011 19:45 +Phoenix,BLUE,TEARDROP,AZ,9/14/2011 19:45 +Ramona,,,CA,9/14/2011 19:54 +Portland,,LIGHT,OR,9/14/2011 20:00 +Lake Elsinore,,FIREBALL,CA,9/14/2011 20:30 +Lake Elsinore,,FIREBALL,CA,9/14/2011 20:30 +Perris,,LIGHT,CA,9/14/2011 21:00 +Boulder,BLUE,CHEVRON,CO,9/14/2011 23:00 +Corola,ORANGE,FIREBALL,NC,9/14/2011 23:00 +Naples,RED,LIGHT,FL,9/14/2011 23:30 +Dresden,GREEN,FIREBALL,OH,9/14/2011 23:34 +Wildwood,,OTHER,NJ,9/15/2011 0:00 +Bloomington,,SPHERE,MN,9/15/2011 2:00 +Konawa,,DISK,OK,9/15/2011 2:20 +Newark,,DISK,DE,9/15/2011 17:00 +Quincy,,LIGHT,IL,9/15/2011 19:00 +Cary,RED GREEN BLUE,FORMATION,NC,9/15/2011 19:15 +Pahrump,GREEN,FLASH,NV,9/15/2011 19:15 +Glenarm,,VARIOUS,IL,9/15/2011 19:30 +Glenarm,,VARIOUS,IL,9/15/2011 19:30 +Chandler,RED,LIGHT,AZ,9/15/2011 19:45 +East Lansing,ORANGE,FIREBALL,MI,9/15/2011 20:00 +Costa Mesa,,LIGHT,CA,9/15/2011 20:51 +Anahola,,FLASH,HI,9/15/2011 21:00 +Chestertown,GREEN,FLASH,MD,9/15/2011 21:15 +Cuchara,,SPHERE,CO,9/15/2011 22:00 +Scranton,,LIGHT,PA,9/15/2011 22:00 +Matinez,,LIGHT,CA,9/16/2011 1:00 +Odenton,,CIRCLE,MD,9/16/2011 3:10 +Clifton Forge,,SPHERE,VA,9/16/2011 5:30 +West Chester,GREEN,DISK,PA,9/16/2011 6:00 +Potsdam,,FIREBALL,NY,9/16/2011 9:00 +Macinaw,,SPHERE,MI,9/16/2011 10:00 +Sisters,,TRIANGLE,OR,9/16/2011 11:16 +Blue Diamond,,FIREBALL,NV,9/16/2011 19:30 +Hudson,ORANGE,LIGHT,OH,9/16/2011 20:45 +Wrightwood,RED,FIREBALL,CA,9/16/2011 21:15 +Ramsey,,CIRCLE,MN,9/16/2011 21:20 +Boise,,LIGHT,ID,9/16/2011 22:30 +Lyndon Station,RED,FIREBALL,WI,9/16/2011 22:30 +Hollywood,GREEN,LIGHT,CA,9/16/2011 22:45 +Philadelphia,,OVAL,PA,9/16/2011 22:52 +Provincetown,,CIRCLE,MA,9/16/2011 23:15 +Chicopee,,FLASH,MA,9/17/2011 2:00 +Clayton,GREEN,,NC,9/17/2011 2:23 +Plano,GREEN,OVAL,TX,9/17/2011 2:42 +Fort Worth,,CIRCLE,TX,9/17/2011 4:31 +Mehlville,,OVAL,MO,9/17/2011 5:30 +Bartlett,,DISK,IL,9/17/2011 9:50 +Alamogordo,,FIREBALL,NM,9/17/2011 10:00 +Salem,ORANGE,FIREBALL,OH,9/17/2011 18:30 +Naperville,RED,LIGHT,IL,9/17/2011 19:00 +Jackson,,DIAMOND,OH,9/17/2011 19:45 +Avon,,,IN,9/17/2011 19:55 +Johnston,,SPHERE,RI,9/17/2011 20:05 +West Warwick,RED,LIGHT,RI,9/17/2011 20:05 +Girard,ORANGE,OTHER,IL,9/17/2011 20:30 +Huntersville,ORANGE,FORMATION,WV,9/17/2011 20:30 +Lake in the Hills,ORANGE,TRIANGLE,IL,9/17/2011 20:45 +Leonard,ORANGE,FORMATION,MI,9/17/2011 21:00 +Warsaw,,SPHERE,IN,9/17/2011 21:00 +Anthony,,TRIANGLE,NM,9/17/2011 21:17 +Joshua Tree,ORANGE,DISK,CA,9/17/2011 21:26 +Chelsea,ORANGE,OVAL,AL,9/17/2011 21:30 +Monticello,ORANGE,CIRCLE,IN,9/17/2011 21:30 +Rockledge,,CONE,PA,9/17/2011 22:00 +Pilesgrove,ORANGE,LIGHT,NJ,9/17/2011 22:30 +Defiance,,CIRCLE,MO,9/17/2011 23:00 +St. Augustine,,CIRCLE,FL,9/17/2011 23:00 +Troy,RED,LIGHT,OH,9/18/2011 0:30 +Martinez,,LIGHT,CA,9/18/2011 3:00 +Thonotosassa,,TRIANGLE,FL,9/18/2011 3:45 +Delton,,,MI,9/18/2011 5:30 +Chandler,,TEARDROP,AZ,9/18/2011 6:00 +Queen Creek,,LIGHT,AZ,9/18/2011 6:00 +San Tan Valley,,CIRCLE,AZ,9/18/2011 6:00 +Norwood,,DISK,MA,9/18/2011 7:45 +New Berlin,RED,TRIANGLE,WI,9/18/2011 18:45 +Alpine,,CIRCLE,UT,9/18/2011 20:15 +La Barge,,CIRCLE,WY,9/18/2011 21:00 +Dennisport,,OTHER,MA,9/18/2011 21:45 +Ukiah,RED,LIGHT,CA,9/18/2011 22:00 +Winter Haven,RED GREEN,,FL,9/18/2011 22:00 +Hayward,,CIRCLE,CA,9/18/2011 22:30 +Las Vegas,RED,SPHERE,NV,9/18/2011 22:35 +Fremont,,TRIANGLE,OH,9/18/2011 23:00 +Pitman,,CIRCLE,NJ,9/18/2011 23:00 +Naples,,TRIANGLE,FL,9/18/2011 23:45 +Crete,,DISK,IL,9/19/2011 0:00 +Lake Jackson,RED,CIGAR,TX,9/19/2011 17:30 +Kennewick,,LIGHT,WA,9/19/2011 20:30 +Tucson,,CIRCLE,AZ,9/19/2011 20:30 +Round Lake Beach,,SPHERE,IL,9/19/2011 20:50 +Greeley,ORANGE,SPHERE,CO,9/19/2011 21:00 +Cleveland,RED,TRIANGLE,OH,9/19/2011 21:55 +Presque Isle,,,ME,9/19/2011 22:00 +Yerington,,,NV,9/19/2011 22:00 +Lawrence,,LIGHT,KS,9/19/2011 23:25 +Woodbury,,,MN,9/20/2011 1:30 +Portland,,RECTANGLE,OR,9/20/2011 1:55 +Bastrop,GREEN,SPHERE,LA,9/20/2011 2:00 +Corpus Christi,,OVAL,TX,9/20/2011 3:20 +Sioux Falls,,LIGHT,SD,9/20/2011 6:33 +Baltimore,,,MD,9/20/2011 17:30 +Yellowstone National Park,,VARIOUS,WY,9/20/2011 19:55 +Staten Island,ORANGE,FIREBALL,NY,9/20/2011 20:30 +Flagstaff,RED BLUE,CIRCLE,AZ,9/20/2011 20:40 +Talent,,TRIANGLE,OR,9/20/2011 20:45 +Minot,,OTHER,ND,9/20/2011 21:35 +Centralia,,CIGAR,WA,9/20/2011 22:00 +Micco,,,FL,9/20/2011 22:00 +Moses Lake,,LIGHT,WA,9/20/2011 22:00 +Ottawa,RED ORANGE,FIREBALL,IL,9/20/2011 22:00 +Batesville,,FORMATION,IN,9/20/2011 22:02 +Ashland,,SPHERE,KY,9/20/2011 22:25 +Portland,,FLASH,OR,9/21/2011 0:00 +Florence,RED,TRIANGLE,KY,9/21/2011 3:00 +Arley,,FIREBALL,AL,9/21/2011 7:00 +Parker,,VARIOUS,CO,9/21/2011 11:00 +Salem,GREEN,EGG,OR,9/21/2011 20:00 +Canby,GREEN,FIREBALL,OR,9/21/2011 20:15 +Tillamook,,CYLINDER,OR,9/21/2011 20:30 +Maple Grove,,FIREBALL,MN,9/21/2011 21:30 +Grand Rapids,,OVAL,MI,9/21/2011 23:30 +Minot AFB,RED,TRIANGLE,ND,9/21/2011 23:30 +Delary Beach,,SPHERE,FL,9/21/2011 23:45 +Mulino,RED,CIRCLE,OR,9/22/2011 0:00 +Russell Springs,,FLASH,KY,9/22/2011 13:15 +Harleysville,ORANGE,CIRCLE,PA,9/22/2011 18:00 +"Laguna, Irvine, Costa Mesa",ORANGE,TRIANGLE,CA,9/22/2011 19:20 +Shelby Township,ORANGE BLUE,LIGHT,MI,9/22/2011 22:00 +Tempe,,DISK,AZ,9/22/2011 22:15 +Vista,,FIREBALL,CA,9/22/2011 22:25 +Cocoa,,SPHERE,FL,9/23/2011 3:00 +Oklahoma City,RED,LIGHT,OK,9/23/2011 9:45 +Miami,,,FL,9/23/2011 10:00 +Grand Rapids,,DIAMOND,MI,9/23/2011 11:15 +Yakima,,CYLINDER,WA,9/23/2011 13:19 +Munford,,DISK,TN,9/23/2011 16:30 +Lubbock,,LIGHT,TX,9/23/2011 18:00 +Waynesboro,,,GA,9/23/2011 18:45 +Ann Arbor,,OTHER,MI,9/23/2011 18:55 +Island Park,,FIREBALL,NY,9/23/2011 19:15 +Happy Valley,,FIREBALL,OR,9/23/2011 19:50 +Miami,,CIRCLE,FL,9/23/2011 20:00 +Hugo,,OTHER,MN,9/23/2011 21:15 +Mechanicsburg,ORANGE YELLOW,TRIANGLE,PA,9/23/2011 22:57 +Indian Rocks Beach,,OTHER,FL,9/23/2011 23:00 +Kimball,,DIAMOND,WI,9/24/2011 0:00 +Pasco,,,FL,9/24/2011 1:20 +Bellevue,,LIGHT,WA,9/24/2011 2:35 +Las Vegas,BLUE,LIGHT,NV,9/24/2011 3:30 +St. Augustine,,CIRCLE,FL,9/24/2011 3:40 +Las Vegas,GREEN,OVAL,NV,9/24/2011 3:48 +Amarillo,,CIRCLE,TX,9/24/2011 4:30 +Maryville,RED,TRIANGLE,TN,9/24/2011 11:15 +Estes Park,,SPHERE,CO,9/24/2011 14:25 +Newaygo,,CIGAR,MI,9/24/2011 15:00 +Wyandotte,,CYLINDER,MI,9/24/2011 20:00 +Wyandotte,,FIREBALL,MI,9/24/2011 20:30 +Lakin,,LIGHT,KS,9/24/2011 20:35 +Santa Barbara,BLUE,LIGHT,CA,9/24/2011 21:30 +Burnsville,,,MN,9/24/2011 22:00 +Davenport,,DISK,FL,9/24/2011 22:30 +Stratford,ORANGE,OTHER,CT,9/24/2011 22:30 +Palm Desert,,LIGHT,CA,9/24/2011 22:38 +Fairport,ORANGE,FORMATION,NY,9/24/2011 23:00 +Clemson,ORANGE,CYLINDER,SC,9/24/2011 23:20 +Miami,,OTHER,FL,9/24/2011 23:25 +Lemoore,YELLOW,CROSS,CA,9/24/2011 23:30 +Dayton,,LIGHT,OH,9/25/2011 1:10 +Glendale,,SPHERE,AZ,9/25/2011 4:45 +Westminster,,,CA,9/25/2011 5:30 +Portland,,LIGHT,OR,9/25/2011 6:00 +Marion,,DISK,AR,9/25/2011 17:00 +Marcell,,CIRCLE,MN,9/25/2011 18:10 +Gulfport,,FIREBALL,MS,9/25/2011 19:30 +Philadelphia,,,PA,9/25/2011 19:30 +Dolores,,LIGHT,CO,9/25/2011 20:22 +Glenarm,,,IL,9/25/2011 20:30 +Ft. Smith,GREEN,LIGHT,AR,9/25/2011 20:46 +Johnson,,LIGHT,VT,9/25/2011 20:55 +Anaheim,,TRIANGLE,CA,9/25/2011 21:00 +Bend,RED GREEN,,OR,9/25/2011 21:00 +Florence,,LIGHT,OR,9/25/2011 21:00 +Tenino,,LIGHT,WA,9/25/2011 22:00 +Charlton,,OTHER,MA,9/25/2011 22:30 +Scranton,BLUE,FIREBALL,PA,9/25/2011 23:35 +Phillips,,LIGHT,ME,9/25/2011 23:40 +Camp Verde,,FIREBALL,AZ,9/25/2011 23:45 +Ludowici,,LIGHT,GA,9/26/2011 2:41 +Houston,,LIGHT,TX,9/26/2011 2:45 +Glendale,,SPHERE,AZ,9/26/2011 4:45 +Georgetown,,CIGAR,SC,9/26/2011 9:20 +Towson,,EGG,MD,9/26/2011 18:15 +Maine,GREEN,TRIANGLE,NY,9/26/2011 18:30 +Myrtle Beach,ORANGE,LIGHT,SC,9/26/2011 19:45 +Watsontown,,TRIANGLE,PA,9/26/2011 21:10 +Boise,,OVAL,ID,9/26/2011 21:30 +Bondville,,LIGHT,VT,9/26/2011 21:30 +San Francisco,,TRIANGLE,CA,9/26/2011 21:40 +Owego,,LIGHT,NY,9/26/2011 23:00 +Holland,,CYLINDER,MI,9/27/2011 3:45 +Richmond,,TRIANGLE,KY,9/27/2011 4:30 +St. Simons Island,,SPHERE,GA,9/27/2011 12:45 +Broomfield,GREEN,OTHER,CO,9/27/2011 17:30 +Arcadia,BLUE,LIGHT,CA,9/27/2011 19:20 +Little Rock,ORANGE,SPHERE,AR,9/27/2011 20:00 +Cheektowaga,,FIREBALL,NY,9/27/2011 20:30 +Eugene,,CIRCLE,OR,9/27/2011 21:00 +Englewood,,LIGHT,FL,9/27/2011 21:30 +Tucson,GREEN,SPHERE,AZ,9/27/2011 21:34 +Gastonia,,FIREBALL,NC,9/27/2011 21:45 +Cary,,CIRCLE,NC,9/27/2011 23:00 +Kent,GREEN BLUE,LIGHT,OH,9/28/2011 0:00 +Tarrytown,,TRIANGLE,NY,9/28/2011 9:52 +Interstate 40,,CIRCLE,NM,9/28/2011 12:30 +St. Simons Island,,CIRCLE,GA,9/28/2011 12:30 +Albany,,OVAL,OR,9/28/2011 16:15 +Burlington,,TRIANGLE,VT,9/28/2011 20:00 +Kappa,,OTHER,IL,9/28/2011 20:00 +Stayton,RED YELLOW GREEN BLUE,CIRCLE,OR,9/28/2011 20:50 +Vancouver,,SPHERE,WA,9/28/2011 20:55 +Gleneden,RED GREEN,OVAL,OR,9/28/2011 21:00 +Greenwood,GREEN,OVAL,SD,9/28/2011 21:00 +Yachats,RED,OTHER,OR,9/28/2011 21:00 +Lindsborg,,OTHER,KS,9/28/2011 21:05 +Evergreen,,LIGHT,CO,9/28/2011 21:18 +Bunn,,CIRCLE,NC,9/28/2011 21:55 +Sultan,,CIRCLE,WA,9/28/2011 22:00 +Sonoma,,TRIANGLE,CA,9/28/2011 22:15 +Manchester,,FLASH,CT,9/28/2011 22:45 +Idaho Falls,YELLOW GREEN,TRIANGLE,ID,9/29/2011 1:26 +Duluth,YELLOW,CYLINDER,GA,9/29/2011 3:00 +Auburn,,,WA,9/29/2011 4:11 +Long Beach,,VARIOUS,CA,9/29/2011 5:00 +Bellevue,,SPHERE,PA,9/29/2011 17:45 +Burbank,,FORMATION,CA,9/29/2011 19:35 +Christopher,GREEN,LIGHT,IL,9/29/2011 20:30 +North Myrtle Beach,YELLOW,SPHERE,SC,9/29/2011 20:53 +Memphis,,LIGHT,TN,9/29/2011 21:00 +Myrtle Beach,ORANGE,CIRCLE,SC,9/29/2011 21:00 +Myrtle Beach,ORANGE,TRIANGLE,SC,9/29/2011 21:00 +North Myrtle Beach,ORANGE,,SC,9/29/2011 21:00 +Sedona,,OVAL,AZ,9/29/2011 21:00 +St. Stephen,,,SC,9/29/2011 21:15 +St. Stephen,,,SC,9/29/2011 21:20 +Bismarck,,TRIANGLE,ND,9/29/2011 22:30 +Shawnee,,CHEVRON,OK,9/29/2011 23:45 +Miami Beach,,CHEVRON,FL,9/30/2011 3:00 +North Bergen,,CIRCLE,NJ,9/30/2011 3:46 +Ames,,CIRCLE,IA,9/30/2011 11:36 +Tyre,,CIGAR,NY,9/30/2011 12:19 +Piney Flats,,SPHERE,TN,9/30/2011 17:40 +Knoxville,BLUE,OVAL,TN,9/30/2011 19:35 +New Berlin,,TRIANGLE,WI,9/30/2011 20:00 +Truth or Consequences,,OTHER,NM,9/30/2011 20:10 +Middletown,,FIREBALL,CT,9/30/2011 20:30 +Sea Isle City,,,NJ,9/30/2011 20:30 +Bellevue,,SPHERE,NE,9/30/2011 21:00 +Copperas Cove,,OTHER,TX,9/30/2011 21:07 +Omaha,,CHEVRON,NE,9/30/2011 21:48 +Searcy,,DIAMOND,AR,9/30/2011 21:50 +Copperas Cove,,,TX,9/30/2011 21:51 +Port Arthur,,LIGHT,TX,9/30/2011 22:30 +Fort Mohave,,TRIANGLE,AZ,9/30/2011 22:45 +Vancouver,,FIREBALL,WA,9/30/2011 23:00 +Vancouver,RED,LIGHT,WA,9/30/2011 23:00 +Vancouver,RED,FIREBALL,WA,9/30/2011 23:15 +Hammock Beach,,FORMATION,FL,9/30/2011 23:30 +Cabot,,CIRCLE,AR,10/1/2011 0:00 +Staten Island,,,NY,10/1/2011 0:00 +Vancouver,,LIGHT,WA,10/1/2011 0:00 +Alligator Point,RED GREEN BLUE,,FL,10/1/2011 5:30 +San Benito,,TRIANGLE,TX,10/1/2011 6:00 +Brownwood,,,TX,10/1/2011 9:30 +Clinton,,CIRCLE,MS,10/1/2011 13:00 +Boise,,,ID,10/1/2011 15:00 +Goshen,,OVAL,CA,10/1/2011 16:00 +Jacksonville,,,FL,10/1/2011 20:00 +Linn,GREEN,,MO,10/1/2011 20:00 +Wilmington,,TRIANGLE,NC,10/1/2011 20:00 +Cincinnati,,SPHERE,OH,10/1/2011 20:15 +Palatine,RED,LIGHT,IL,10/1/2011 20:30 +Hamburg,,LIGHT,CA,10/1/2011 21:00 +Carlsbad,,FIREBALL,CA,10/1/2011 21:20 +Kansas City,,FIREBALL,MO,10/1/2011 21:43 +Kansas City,,FIREBALL,MO,10/1/2011 21:43 +Tenino,,LIGHT,WA,10/1/2011 21:50 +McComb,,RECTANGLE,MS,10/1/2011 22:00 +Bluffton,BLUE,CHEVRON,SC,10/1/2011 22:50 +Fond du Lac,,LIGHT,WI,10/1/2011 23:00 +Greenville area,BLUE,LIGHT,SC,10/1/2011 23:00 +Conyers,RED BLUE,LIGHT,GA,10/1/2011 23:11 +Captiva Island,,FIREBALL,FL,10/1/2011 23:30 +Bluffton,RED,,SC,10/1/2011 23:41 +Homestead,,FORMATION,FL,10/1/2011 23:57 +Owasso,,LIGHT,OK,10/2/2011 1:50 +Alligator Alley,,TRIANGLE,FL,10/2/2011 4:50 +San Angelo,,FLASH,TX,10/2/2011 5:29 +Lake Springs,,OVAL,MO,10/2/2011 17:30 +Lake Springs,,OVAL,MO,10/2/2011 17:44 +Battle Creek,,CIRCLE,MI,10/2/2011 18:00 +Mayaguez,ORANGE,CIRCLE,WV,10/2/2011 19:27 +Marion,GREEN,,IN,10/2/2011 21:00 +New York Mills,,LIGHT,MN,10/2/2011 21:00 +Simi Valley,GREEN,OTHER,CA,10/2/2011 21:00 +Miles City,RED,FORMATION,MT,10/3/2011 2:35 +Fullerton,,FLASH,CA,10/3/2011 4:00 +Fresno,,CIRCLE,CA,10/3/2011 4:35 +Plains,,LIGHT,GA,10/3/2011 9:00 +Alice,,TRIANGLE,TX,10/3/2011 19:00 +Crosby,,CIRCLE,TX,10/3/2011 19:00 +Livonia,,RECTANGLE,MI,10/3/2011 21:42 +Fredericksburg,,TRIANGLE,VA,10/3/2011 22:30 +Sault Ste. Marie,,VARIOUS,MI,10/3/2011 22:30 +Fredericksburg,,FIREBALL,VA,10/4/2011 4:00 +Lee's Summit,,TRIANGLE,MO,10/4/2011 8:00 +Van Wert,,FIREBALL,OH,10/4/2011 19:30 +Independence,,TRIANGLE,MO,10/4/2011 20:00 +West Bloomfield,,OTHER,MI,10/4/2011 20:05 +Monroe City,RED BLUE,FLASH,MO,10/4/2011 22:00 +Philadelphia,,CIRCLE,PA,10/4/2011 23:00 +Cypress,,TRIANGLE,CA,10/5/2011 0:00 +Idaho Falls,,DISK,ID,10/5/2011 4:00 +Lyman,,FORMATION,ME,10/5/2011 5:10 +Oakville,ORANGE,,CT,10/5/2011 5:10 +Enid,,CIRCLE,OK,10/5/2011 6:00 +La Plata,,,MD,10/5/2011 6:00 +Boise,,,ID,10/5/2011 6:45 +Bremerton,,,WA,10/5/2011 17:00 +DeMotte-Roselawn,ORANGE,FORMATION,IN,10/5/2011 19:00 +Globe,,LIGHT,AZ,10/5/2011 19:00 +Miami,,SPHERE,FL,10/5/2011 19:00 +Garden City,ORANGE,FIREBALL,MI,10/5/2011 19:30 +Alexandria,,OTHER,VA,10/5/2011 19:40 +Kalaeloa,,DIAMOND,HI,10/5/2011 20:00 +Norwalk,,VARIOUS,CT,10/5/2011 20:00 +Rockton,,CONE,IL,10/5/2011 20:34 +Independence,ORANGE,CIRCLE,MO,10/5/2011 20:40 +Lake Elsinore,,CIRCLE,CA,10/5/2011 20:45 +Ganado,,OTHER,AZ,10/5/2011 21:00 +Auburn,,TRIANGLE,NY,10/5/2011 22:00 +Fresno,,FORMATION,CA,10/5/2011 22:30 +Moncks Corner,,FIREBALL,SC,10/6/2011 0:08 +Grants Pass,,CIRCLE,OR,10/6/2011 1:00 +Stillwater,,DISK,OK,10/6/2011 1:00 +Cincinnati,,LIGHT,OH,10/6/2011 1:45 +Newburgh,,LIGHT,IN,10/6/2011 2:12 +San Antonio,,LIGHT,TX,10/6/2011 4:49 +Buffalo,,OTHER,MO,10/6/2011 17:13 +Frederick,,SPHERE,MD,10/6/2011 17:45 +Tampa,GREEN,SPHERE,FL,10/6/2011 20:03 +Macon,,FIREBALL,GA,10/6/2011 20:35 +Tampa,GREEN,SPHERE,FL,10/6/2011 20:35 +Hampton,,OVAL,GA,10/6/2011 20:39 +LaGrange,RED,FIREBALL,GA,10/6/2011 20:41 +Flowery Branch,RED,CIRCLE,GA,10/6/2011 20:55 +Flowery Branch,RED,OVAL,GA,10/6/2011 20:55 +Bangs,,,TX,10/6/2011 21:00 +Bangs,,,TX,10/6/2011 21:00 +Davie,,LIGHT,FL,10/6/2011 22:00 +Ghent,,LIGHT,NY,10/6/2011 22:00 +San Diego,ORANGE,LIGHT,CA,10/6/2011 22:05 +Saint Petersburg,,CIRCLE,FL,10/6/2011 23:30 +Waldo,,,AR,10/7/2011 5:50 +High Bridge,,LIGHT,NJ,10/7/2011 6:15 +Jacksonville,ORANGE,FIREBALL,FL,10/7/2011 11:22 +Wilmington,,FLASH,DE,10/7/2011 13:00 +New Braunfels,BLUE,CIRCLE,TX,10/7/2011 13:30 +Staten Island,,OVAL,NY,10/7/2011 18:00 +Belvidere,,CHEVRON,IL,10/7/2011 20:30 +Warsaw,,,MO,10/7/2011 20:45 +West Hartford,RED,CHEVRON,CT,10/7/2011 20:45 +Louisville,,CIRCLE,KY,10/7/2011 21:00 +Topsail Beach,ORANGE,CIRCLE,NC,10/7/2011 21:00 +Lake Geneva,,SPHERE,WI,10/7/2011 21:35 +Burton,,LIGHT,MI,10/7/2011 22:00 +Murray,,OTHER,KY,10/7/2011 22:13 +Cleveland,,FIREBALL,OH,10/7/2011 23:36 +Fenton,,CIGAR,MI,10/7/2011 23:43 +Omaha,,TEARDROP,NE,10/8/2011 0:15 +Mukilteo,,FLASH,WA,10/8/2011 1:00 +St. Louis,,DIAMOND,MO,10/8/2011 1:09 +Knoxville,,OTHER,TN,10/8/2011 3:30 +Mount Pleasant,,LIGHT,SC,10/8/2011 6:30 +Kennewick,ORANGE,DISK,WA,10/8/2011 19:00 +Kennewick,ORANGE,VARIOUS,WA,10/8/2011 19:00 +Kennewick,ORANGE,DISK,WA,10/8/2011 19:07 +Binghamton,RED,LIGHT,NY,10/8/2011 19:53 +Binghamton,RED,,NY,10/8/2011 19:55 +Pasco,,LIGHT,WA,10/8/2011 19:55 +Midway,,SPHERE,PA,10/8/2011 20:00 +Onaway,,LIGHT,MI,10/8/2011 20:12 +Indianapolis,,TRIANGLE,IN,10/8/2011 20:15 +Gaithersburg,,SPHERE,MD,10/8/2011 21:00 +Whitpain Township,RED,FORMATION,PA,10/8/2011 21:00 +Portland,RED GREEN,,OR,10/8/2011 21:10 +Ford CIty,ORANGE,,PA,10/8/2011 21:15 +Peoria,ORANGE,,IL,10/8/2011 21:15 +Hilliard,RED,SPHERE,OH,10/8/2011 21:35 +Conway,,TEARDROP,AR,10/8/2011 21:40 +Snowmass VIllage,,CIRCLE,CO,10/8/2011 22:00 +Warrenton,,CHEVRON,VA,10/8/2011 22:00 +Warrenton,,FORMATION,VA,10/8/2011 22:00 +Wisconsin Dells,ORANGE,SPHERE,WI,10/8/2011 22:00 +Munith,BLUE,LIGHT,MI,10/8/2011 22:30 +Central,,TRIANGLE,VA,10/8/2011 23:00 +Lewis Center,ORANGE,TRIANGLE,OH,10/8/2011 23:30 +Redondo Beach,RED ORANGE,CIRCLE,CA,10/8/2011 23:58 +Davenport,,LIGHT,WA,10/9/2011 1:00 +Sherman Oaks,,CHEVRON,CA,10/9/2011 1:00 +Romney,RED BLUE,OTHER,WV,10/9/2011 1:30 +Clifton Heights,ORANGE,FIREBALL,PA,10/9/2011 3:00 +Forest Park,,OVAL,GA,10/9/2011 8:00 +Columbia,,FORMATION,CT,10/9/2011 17:20 +Prineville,RED,CIGAR,OR,10/9/2011 18:00 +Waukesha,ORANGE,DISK,WI,10/9/2011 18:15 +Salem,,,NH,10/9/2011 18:20 +New Bedford,,FIREBALL,MA,10/9/2011 18:42 +Memphis,,OTHER,TN,10/9/2011 18:45 +Coeymans,,LIGHT,NY,10/9/2011 19:00 +Center Barnstead,RED YELLOW,SPHERE,NH,10/9/2011 19:05 +Murfreesboro,,DISK,TN,10/9/2011 19:30 +New Bedford,ORANGE,CIRCLE,MA,10/9/2011 19:42 +Middletown,,FIREBALL,CT,10/9/2011 20:00 +New Bedford,ORANGE,FIREBALL,MA,10/9/2011 20:00 +West Ossipee,,LIGHT,NH,10/9/2011 20:00 +Longview,,LIGHT,WA,10/9/2011 20:30 +Rockford,,FIREBALL,IL,10/9/2011 22:26 +River Falls,YELLOW,FIREBALL,WI,10/9/2011 22:56 +Plantation,,OTHER,FL,10/9/2011 23:00 +Staten Island,,OTHER,NY,10/9/2011 23:00 +Troy,GREEN,TRIANGLE,NY,10/10/2011 0:00 +Farmington,RED,CIRCLE,NM,10/10/2011 1:00 +Prescott Valley,,OTHER,AZ,10/10/2011 2:00 +Ashville,,CIRCLE,NY,10/10/2011 10:30 +North Kingstown,,OVAL,RI,10/10/2011 14:30 +Groton,,DISK,CT,10/10/2011 15:00 +Peabody-Saugus,,FLASH,MA,10/10/2011 18:15 +Mechanicsville,ORANGE,LIGHT,VA,10/10/2011 19:00 +Murfeesboro,,,TN,10/10/2011 19:30 +Middletown,ORANGE,FIREBALL,CT,10/10/2011 20:00 +Lakewood,,FIREBALL,OH,10/10/2011 21:00 +York,,CIRCLE,PA,10/10/2011 21:00 +North Platte,,CIRCLE,NE,10/10/2011 21:55 +Waynesville,,TRIANGLE,OH,10/10/2011 23:00 +Omaha,,CHEVRON,IL,10/11/2011 3:15 +Henderson,,OTHER,NV,10/11/2011 8:40 +Cedar City,,LIGHT,UT,10/11/2011 15:00 +Des Moines,,LIGHT,IA,10/11/2011 19:40 +New Bedford,RED ORANGE,CIRCLE,MA,10/11/2011 19:42 +Monroe,,,CT,10/11/2011 21:00 +Holden Beach,ORANGE,CIRCLE,NC,10/11/2011 21:10 +Harrodsburg,,,KY,10/11/2011 23:23 +Waco,,VARIOUS,TX,10/12/2011 17:11 +Seaford,,FIREBALL,DE,10/12/2011 19:00 +Whitesburg,RED BLUE,CIRCLE,TN,10/12/2011 19:40 +Ocean Isle Beach,,LIGHT,NC,10/12/2011 20:00 +St. George,,DISK,UT,10/12/2011 20:00 +Charleston,,,SC,10/12/2011 20:07 +San Antonio,BLUE,TRIANGLE,TX,10/12/2011 21:00 +Zortman,YELLOW,LIGHT,MT,10/12/2011 21:00 +Highway 95,,,NV,10/13/2011 0:00 +Norman,RED ORANGE,OVAL,OK,10/13/2011 1:36 +Newark,,LIGHT,NJ,10/13/2011 3:30 +Wilmington,,,OH,10/13/2011 15:00 +Merriam,,TRIANGLE,KS,10/13/2011 19:20 +Boiling Springs,,TRIANGLE,SC,10/13/2011 19:56 +Boiling Springs,,FORMATION,SC,10/13/2011 20:00 +North Myrtle Beach,ORANGE YELLOW,,SC,10/13/2011 20:21 +Avon,ORANGE,FIREBALL,NC,10/13/2011 20:30 +Gurley,,DIAMOND,AL,10/13/2011 20:38 +Surfside Beach,,LIGHT,SC,10/13/2011 21:00 +Atlantic Coast,,OTHER,NV,10/13/2011 22:00 +Myrtle Beach,ORANGE,CIRCLE,SC,10/13/2011 22:26 +Homestead,,SPHERE,FL,10/13/2011 23:38 +Blackjack,,LIGHT,MO,10/14/2011 0:00 +Cibecue,YELLOW,LIGHT,AZ,10/14/2011 0:00 +Corcoran,,CIRCLE,MN,10/14/2011 0:00 +Ringgold,RED,,GA,10/14/2011 0:00 +Oldsmar,,TRIANGLE,FL,10/14/2011 1:30 +Carterville,,OTHER,MO,10/14/2011 2:30 +Carterville,,OTHER,MO,10/14/2011 2:30 +Falls Twp,,FORMATION,PA,10/14/2011 5:00 +Whitakers,RED,TRIANGLE,NC,10/14/2011 5:00 +Scottsdale,,TRIANGLE,AZ,10/14/2011 5:30 +Elmer,RED GREEN,TRIANGLE,NJ,10/14/2011 9:42 +Honolulu,BLUE,TRIANGLE,HI,10/14/2011 10:00 +Coral Springs,,OTHER,FL,10/14/2011 10:30 +San Bernardino,,SPHERE,CA,10/14/2011 13:30 +Sierra Vista,,OTHER,AZ,10/14/2011 17:00 +Ocala,,CYLINDER,FL,10/14/2011 17:45 +El Paso,,CIRCLE,TX,10/14/2011 18:00 +Strawberry,,FLASH,AZ,10/14/2011 18:30 +Ellisville,ORANGE,,MS,10/14/2011 19:30 +Golden Valley,,OVAL,AZ,10/14/2011 19:41 +Golden Valley,,OVAL,AZ,10/14/2011 19:41 +Clinton Township,ORANGE,OVAL,MI,10/14/2011 19:45 +Wendover,,VARIOUS,UT,10/14/2011 20:30 +Eufaula,RED,LIGHT,AL,10/14/2011 20:35 +Holbrook,,OTHER,AZ,10/14/2011 21:20 +Sebring,,LIGHT,OH,10/14/2011 22:00 +no data,GREEN,LIGHT,NV,10/14/2011 22:30 +Tempe,YELLOW,SPHERE,AZ,10/14/2011 22:30 +York,,TRIANGLE,PA,10/14/2011 22:30 +Ft. Riley,,OTHER,KS,10/14/2011 23:30 +Largo,,CIRCLE,MD,10/15/2011 2:00 +Reistville,GREEN,SPHERE,PA,10/15/2011 8:00 +Valley,,LIGHT,NE,10/15/2011 9:30 +"Maplewood,",,DISK,MN,10/15/2011 13:30 +Holts Summit,,DISK,MO,10/15/2011 16:45 +Canandaigua,,CIRCLE,NY,10/15/2011 17:00 +Eugene,,LIGHT,OR,10/15/2011 18:00 +Columbia,,LIGHT,SC,10/15/2011 19:00 +Toney,RED,CIRCLE,AL,10/15/2011 19:00 +Lancaster,,CIRCLE,PA,10/15/2011 19:20 +Fresno,,OVAL,CA,10/15/2011 19:30 +Grand Junction,,RECTANGLE,CO,10/15/2011 20:00 +Muscatine,,TRIANGLE,IA,10/15/2011 20:05 +St. Petersburg,,LIGHT,FL,10/15/2011 20:20 +Douglas,,CHEVRON,GA,10/15/2011 20:29 +Absecon,,TRIANGLE,NJ,10/15/2011 20:30 +Anson,,VARIOUS,TX,10/15/2011 20:30 +Buckeye,,OTHER,AZ,10/15/2011 21:20 +Glendora,,LIGHT,CA,10/15/2011 21:30 +Glendora,YELLOW,LIGHT,CA,10/15/2011 21:30 +Sugar Grove,,LIGHT,IL,10/15/2011 21:49 +Salt Lake City,,LIGHT,UT,10/15/2011 22:00 +St. Louis,,FIREBALL,MO,10/15/2011 23:00 +Savannah,GREEN,CIRCLE,GA,10/15/2011 23:15 +Bridgewater,,FIREBALL,NJ,10/16/2011 1:30 +Orlando,,CYLINDER,FL,10/16/2011 6:30 +Surfside Beach,,OVAL,SC,10/16/2011 8:07 +Gainesville,,DISK,GA,10/16/2011 11:40 +North Wilkesboro,,TRIANGLE,NC,10/16/2011 13:00 +Salt Flats,,OVAL,UT,10/16/2011 15:00 +Rosamond,,SPHERE,CA,10/16/2011 18:08 +Saugus,,DIAMOND,MA,10/16/2011 19:00 +Omaha,ORANGE,,NE,10/16/2011 19:30 +Matteson,RED BLUE,CIRCLE,IL,10/16/2011 19:45 +East Berlin,RED,TRIANGLE,PA,10/16/2011 20:20 +Fort Wayne,,CIRCLE,IN,10/16/2011 20:30 +Slidell,,OVAL,LA,10/16/2011 20:45 +Cedar City,,,UT,10/16/2011 21:00 +Athens,,LIGHT,GA,10/16/2011 21:30 +Palmer Lake,,CHEVRON,CO,10/16/2011 21:45 +Clinton,,CIRCLE,MS,10/16/2011 22:00 +Greensboro,ORANGE,,NC,10/16/2011 22:00 +Springdale,,OVAL,AR,10/16/2011 22:30 +West Valley,,CIRCLE,UT,10/17/2011 6:15 +Manchester,,CIRCLE,CT,10/17/2011 7:15 +Big Sky,RED GREEN BLUE,TRIANGLE,MT,10/17/2011 15:00 +Cocoa Beach,,SPHERE,FL,10/17/2011 16:00 +Harrington,,LIGHT,WA,10/17/2011 18:42 +Jacksonville,,LIGHT,FL,10/17/2011 19:00 +Gilroy,,LIGHT,CA,10/17/2011 19:25 +Santa Rosa,,LIGHT,CA,10/17/2011 19:28 +Eugene,,LIGHT,OR,10/17/2011 19:35 +El Dorado Hills,BLUE,VARIOUS,CA,10/17/2011 19:45 +New Lenox,,DISK,IL,10/17/2011 19:45 +Frisco,,OVAL,NC,10/17/2011 20:00 +Leland,,FORMATION,NC,10/17/2011 20:00 +Baca Grande,,LIGHT,CO,10/17/2011 20:10 +Orlando,,OVAL,FL,10/17/2011 20:58 +Washington,,TRIANGLE,MI,10/17/2011 21:20 +Center Moriches,RED,TRIANGLE,NY,10/17/2011 21:30 +Temple,,TRIANGLE,TX,10/17/2011 21:30 +Waynesboro,,LIGHT,PA,10/17/2011 21:40 +Liberty,RED ORANGE,LIGHT,NC,10/17/2011 21:45 +West Walworth,,,NY,10/17/2011 23:00 +Katy,,DISK,TX,10/18/2011 0:00 +Portland,,FORMATION,OR,10/18/2011 0:15 +Baylis,,OTHER,IL,10/18/2011 1:40 +Queen Creek,RED BLUE,CYLINDER,AZ,10/18/2011 3:15 +Burwell,,SPHERE,NE,10/18/2011 3:30 +Chesapeake,,LIGHT,VA,10/18/2011 5:00 +Pasadena,,LIGHT,MD,10/18/2011 6:00 +Havre de Grace,,SPHERE,MD,10/18/2011 7:30 +Shelbyville,,OVAL,TN,10/18/2011 15:13 +Country Club Hills,,DISK,IL,10/18/2011 19:00 +Knoxville,BLUE,OVAL,TN,10/18/2011 20:00 +Morris,,OTHER,IL,10/18/2011 20:15 +Dupont,,FORMATION,WA,10/18/2011 20:20 +Glendale,,TRIANGLE,AZ,10/18/2011 20:35 +Coburg,RED GREEN,TRIANGLE,OR,10/18/2011 21:30 +Bothell,,DISK,WA,10/18/2011 22:15 +San Francisco,,FIREBALL,CA,10/18/2011 23:15 +Turlock,,FIREBALL,CA,10/18/2011 23:55 +Denver,,FORMATION,CO,10/19/2011 1:54 +Renner,,FLASH,SD,10/19/2011 2:00 +Denver,,FIREBALL,CO,10/19/2011 2:25 +Lennox,,,SD,10/19/2011 3:20 +Hinsdale,,FIREBALL,MA,10/19/2011 6:40 +Orlando,,VARIOUS,FL,10/19/2011 6:47 +Las Vegas,,DISK,NV,10/19/2011 18:45 +San Francisco,,LIGHT,CA,10/19/2011 19:30 +Maricopa,,OTHER,AZ,10/19/2011 20:37 +Brown City,,SPHERE,MI,10/19/2011 21:00 +Louisville,,LIGHT,CO,10/19/2011 22:15 +Loveland,,CIGAR,CO,10/19/2011 22:15 +Eagle mountain,,OTHER,TX,10/19/2011 22:56 +Chicago,,,IL,10/19/2011 23:30 +Pasco,,FORMATION,WA,10/19/2011 23:30 +Katy,,DISK,TX,10/20/2011 0:00 +Uncasville,,,CT,10/20/2011 0:00 +Seguin,RED YELLOW,OTHER,TX,10/20/2011 0:02 +Boston,RED,LIGHT,MA,10/20/2011 0:30 +Jamaica,,FLASH,NY,10/20/2011 1:00 +Grand prairie,,OTHER,TX,10/20/2011 2:00 +Allentown,YELLOW,RECTANGLE,PA,10/20/2011 7:30 +Dania Beach,,OVAL,FL,10/20/2011 9:30 +Mays Landing,,OTHER,NJ,10/20/2011 15:00 +Mansfield,GREEN,FLASH,MA,10/20/2011 19:00 +Nacogdoches,,LIGHT,TX,10/20/2011 20:00 +St. Augustine,,CIRCLE,FL,10/20/2011 20:00 +Virgnia Beach,,TRIANGLE,VA,10/20/2011 20:00 +Penn Valley,,TRIANGLE,CA,10/20/2011 20:30 +Clermont,GREEN,LIGHT,FL,10/20/2011 20:32 +Foxboro,GREEN,LIGHT,MA,10/20/2011 21:00 +St. Petersburg Causeway,,OTHER,FL,10/20/2011 21:00 +Muscatine,YELLOW,LIGHT,IA,10/20/2011 21:15 +Orange Beach,,CIRCLE,AL,10/20/2011 21:15 +Sunrise,,DISK,FL,10/20/2011 21:15 +Cove City,,OVAL,NC,10/20/2011 21:30 +Trumbull,,FIREBALL,CT,10/20/2011 21:30 +Plano,,TRIANGLE,TX,10/20/2011 23:00 +Oakland,,SPHERE,CA,10/21/2011 0:00 +Northridge,ORANGE,TRIANGLE,CA,10/21/2011 6:00 +Seattle,,,WA,10/21/2011 6:59 +Alsip,,CIRCLE,IL,10/21/2011 7:10 +Granton,,LIGHT,WI,10/21/2011 7:35 +Burnsville,,LIGHT,NC,10/21/2011 8:00 +Burnsville,,LIGHT,NC,10/21/2011 10:00 +Louisville,ORANGE,VARIOUS,KY,10/21/2011 10:00 +Ardmore,RED,OVAL,OK,10/21/2011 12:00 +Emeryville,,FORMATION,CA,10/21/2011 17:59 +Lee's Summit,,TRIANGLE,MO,10/21/2011 18:54 +Pelham,,CIRCLE,AL,10/21/2011 19:00 +Boone,RED,OTHER,NC,10/21/2011 19:25 +Ardmore,,LIGHT,AL,10/21/2011 19:30 +Hulett,,LIGHT,WY,10/21/2011 19:30 +Baytown,,LIGHT,TX,10/21/2011 19:40 +Boone,RED,LIGHT,NC,10/21/2011 20:00 +East Orange,,FORMATION,NJ,10/21/2011 20:00 +Buffalo,,OVAL,MN,10/21/2011 20:35 +Anchorage,,CIRCLE,AK,10/21/2011 21:00 +Monterey,,CHEVRON,CA,10/21/2011 21:00 +Skippers,RED,LIGHT,VA,10/21/2011 21:02 +Indianapolis,,CIRCLE,IN,10/21/2011 22:00 +Maricopa,,TRIANGLE,AZ,10/21/2011 22:00 +Radcliff,,CIRCLE,KY,10/21/2011 22:00 +Renton,,DIAMOND,WA,10/21/2011 22:20 +Rockport,,VARIOUS,TX,10/21/2011 22:30 +Colby,,SPHERE,KS,10/21/2011 22:47 +Florence,,TEARDROP,KY,10/21/2011 23:45 +Waldenburg,,TRIANGLE,AR,10/22/2011 1:50 +Wausau,,OVAL,WI,10/22/2011 3:15 +St. Clair,,,MO,10/22/2011 6:15 +Jasonvill,,LIGHT,IN,10/22/2011 8:10 +Boyce,,OVAL,VA,10/22/2011 8:22 +Los Angeles,,SPHERE,CA,10/22/2011 9:20 +Los Angeles,,SPHERE,CA,10/22/2011 9:20 +Miami,,CIRCLE,FL,10/22/2011 9:47 +Ojai,,,CA,10/22/2011 14:05 +Ventura County,RED,FIREBALL,CA,10/22/2011 14:15 +Chickamauga,,,GA,10/22/2011 14:59 +Seattle,,OTHER,WA,10/22/2011 15:00 +Jacksonville,,CIRCLE,FL,10/22/2011 16:00 +Madison Heights,,OVAL,VA,10/22/2011 19:10 +Madison Heights,,SPHERE,VA,10/22/2011 19:10 +Oakland,,TRIANGLE,CA,10/22/2011 19:30 +Vicksburg,,CIRCLE,MS,10/22/2011 19:45 +Loveland,,TRIANGLE,CO,10/22/2011 19:47 +Evergreen Park,,LIGHT,IL,10/22/2011 19:50 +Centerport,ORANGE,SPHERE,NY,10/22/2011 20:00 +Honolulu,,LIGHT,HI,10/22/2011 20:05 +Jasonvill,,LIGHT,IN,10/22/2011 20:10 +West Columbia,,LIGHT,SC,10/22/2011 20:30 +Crown Point,,CIRCLE,IN,10/22/2011 20:45 +Webster,,SPHERE,MA,10/22/2011 20:45 +Fox Lake,,FIREBALL,IL,10/22/2011 21:00 +West Milton,,LIGHT,OH,10/22/2011 21:15 +Pittsburgh,BLUE,,PA,10/22/2011 21:45 +Windber,,FIREBALL,PA,10/22/2011 21:57 +West Columbia,,FORMATION,SC,10/22/2011 22:00 +Amarillo,,,TX,10/22/2011 22:20 +mile marker 41 garden state parkway,,FIREBALL,NJ,10/22/2011 22:30 +East Hanover,,LIGHT,NJ,10/22/2011 22:45 +Sterling,ORANGE,CHEVRON,VA,10/22/2011 23:00 +Litchfield,,TRIANGLE,NH,10/22/2011 23:25 +Fairfield,,CHEVRON,CA,10/23/2011 0:00 +Fort Collins,,OTHER,CO,10/23/2011 0:00 +Shrewsbury,,CIRCLE,NJ,10/23/2011 0:00 +Webster,ORANGE,LIGHT,MA,10/23/2011 0:20 +Louisville,,CIRCLE,KY,10/23/2011 1:00 +Alamo,,TRIANGLE,TN,10/23/2011 1:30 +Hammond,,EGG,IN,10/23/2011 2:00 +California,,CIRCLE,MO,10/23/2011 3:10 +Newington,,CIRCLE,CT,10/23/2011 6:15 +Gastonia,,,NC,10/23/2011 6:30 +Center City,,,TX,10/23/2011 7:05 +Gatesville,,FLASH,TX,10/23/2011 7:05 +Whitehall,ORANGE,LIGHT,PA,10/23/2011 8:15 +San Francisco,,OTHER,CA,10/23/2011 10:00 +Berwyn,GREEN,CIRCLE,PA,10/23/2011 11:00 +Phoenix,,,AZ,10/23/2011 12:15 +El Paso,,LIGHT,TX,10/23/2011 13:00 +Creve Coeur,,DISK,MO,10/23/2011 13:30 +Willard,,CIGAR,NC,10/23/2011 15:00 +Honolulu,,CYLINDER,HI,10/23/2011 17:50 +New Orleans,,CYLINDER,LA,10/23/2011 19:00 +Portage,YELLOW,DIAMOND,IN,10/23/2011 19:00 +Tacoma,,,WA,10/23/2011 19:05 +Jackson,,SPHERE,NJ,10/23/2011 19:30 +Lambertville,,DISK,NJ,10/23/2011 19:30 +Colorado Springs,ORANGE,TRIANGLE,CO,10/23/2011 19:40 +Denver,,TRIANGLE,CO,10/23/2011 20:00 +Towson,GREEN,LIGHT,MD,10/23/2011 20:15 +Oaks,RED,CIRCLE,PA,10/23/2011 20:20 +Wasilla,,SPHERE,AK,10/23/2011 20:45 +Wasilla,,SPHERE,AK,10/23/2011 20:45 +Longboat Key,,LIGHT,FL,10/23/2011 22:00 +Rachel,,FORMATION,NV,10/23/2011 22:00 +Mukwonago,ORANGE,TRIANGLE,WI,10/23/2011 22:15 +Stering,ORANGE,LIGHT,VA,10/23/2011 22:15 +Martinsburg,,CIRCLE,WV,10/23/2011 22:50 +Vancouver,,,WA,10/24/2011 1:00 +Havertown,,FIREBALL,PA,10/24/2011 7:38 +Wenatchee,,LIGHT,WA,10/24/2011 18:00 +Kittanning,,,PA,10/24/2011 19:00 +Oxford,RED ORANGE,CIRCLE,GA,10/24/2011 19:21 +Charlotte,,CIGAR,NC,10/24/2011 19:30 +Comer,,CIRCLE,GA,10/24/2011 19:30 +Santee,,FIREBALL,SC,10/24/2011 20:00 +West Seneca,,CIRCLE,NY,10/24/2011 20:00 +Oxford,,LIGHT,OH,10/24/2011 21:00 +Buckeye,,LIGHT,AZ,10/24/2011 22:15 +Lansing,RED ORANGE,FORMATION,MI,10/24/2011 22:30 +Oxford,,OTHER,OH,10/24/2011 22:30 +Port Angeles,,LIGHT,WA,10/24/2011 22:30 +Ithaca,,FIREBALL,NY,10/24/2011 23:00 +Ithaca,,FIREBALL,NY,10/24/2011 23:00 +Memphis,,,MO,10/25/2011 1:00 +North Bergen,,CIRCLE,NJ,10/25/2011 4:00 +Bernardsville,,FIREBALL,NJ,10/25/2011 5:45 +Accokeek,,LIGHT,MD,10/25/2011 6:50 +Troy,,RECTANGLE,NC,10/25/2011 9:00 +Troy,,RECTANGLE,NC,10/25/2011 9:00 +Kennewick,,LIGHT,WA,10/25/2011 9:52 +Albuquerque,,CYLINDER,NM,10/25/2011 11:00 +Vancouver,,CIGAR,WA,10/25/2011 13:10 +Stratford,,TEARDROP,CT,10/25/2011 13:40 +Stroudsburg,,LIGHT,PA,10/25/2011 16:15 +Jefferson,,CIRCLE,GA,10/25/2011 17:30 +Santa Fe,,CONE,NM,10/25/2011 18:00 +Matteson,,FORMATION,IL,10/25/2011 18:20 +Matteson,,TRIANGLE,IL,10/25/2011 18:20 +Yakima,RED ORANGE,TRIANGLE,WA,10/25/2011 20:00 +Roseville,,LIGHT,CA,10/25/2011 20:25 +Hanover,,FIREBALL,NH,10/25/2011 20:59 +vacaville,,DIAMOND,CA,10/25/2011 21:30 +Palmer-Monson,,TRIANGLE,MA,10/25/2011 22:00 +Vacaville,,TRIANGLE,CA,10/25/2011 22:20 +Greensburg,,CIGAR,KY,10/25/2011 23:00 +Seattle,,LIGHT,WA,10/25/2011 23:00 +Columbus,,OTHER,OH,10/26/2011 8:30 +Malibu,,DISK,CA,10/26/2011 12:00 +Tampa,,TRIANGLE,FL,10/26/2011 20:00 +Hamilton,,DIAMOND,AL,10/26/2011 20:10 +Hamilton,ORANGE,LIGHT,AL,10/26/2011 20:15 +Manchester,BLUE,FLASH,CT,10/26/2011 21:00 +Candler,,OVAL,NC,10/26/2011 23:00 +Rapid City,,TRIANGLE,SD,10/26/2011 23:10 +Kilgore,,LIGHT,TX,10/27/2011 1:00 +Portland,,,OR,10/27/2011 3:00 +Bassett,,LIGHT,VA,10/27/2011 4:45 +Duck Island,,SPHERE,NC,10/27/2011 8:00 +Tuscaloosa,,CIRCLE,AL,10/27/2011 17:00 +Penn Valley,,CIRCLE,CA,10/27/2011 20:30 +El Paso,,LIGHT,TX,10/27/2011 21:00 +Upper Peninsula,RED,LIGHT,MI,10/27/2011 21:00 +Willard,,TRIANGLE,OH,10/27/2011 21:30 +Albuquerque,,TRIANGLE,NM,10/27/2011 21:45 +Marshfield,RED,TRIANGLE,WI,10/27/2011 22:00 +St. Louis,,,MO,10/27/2011 22:18 +Franklinville,,CIRCLE,NC,10/27/2011 22:45 +Madison,,TRIANGLE,WI,10/27/2011 23:30 +Laurel,,CIRCLE,MD,10/28/2011 0:00 +Georgetown,,TRIANGLE,KY,10/28/2011 0:40 +Redwood City,,OTHER,CA,10/28/2011 0:46 +Big Sur,RED,SPHERE,CA,10/28/2011 2:00 +California,,CIRCLE,MO,10/28/2011 2:30 +Norwalk,,CHEVRON,CA,10/28/2011 2:50 +Baltimore,,LIGHT,MD,10/28/2011 4:00 +Goodlettsville,,DIAMOND,TN,10/28/2011 4:36 +Alma Center,,LIGHT,WI,10/28/2011 6:00 +Anderson,,LIGHT,SC,10/28/2011 6:30 +Delray Beach,,TRIANGLE,FL,10/28/2011 11:00 +Murfreesboro,,FORMATION,TN,10/28/2011 13:00 +Pacifica,,RECTANGLE,CA,10/28/2011 13:45 +Scottsdale,,,AZ,10/28/2011 16:39 +Los Angeles,,OVAL,CA,10/28/2011 18:20 +Baytown,ORANGE,LIGHT,TX,10/28/2011 19:00 +New Bedford,,SPHERE,MA,10/28/2011 19:00 +Menomonie,,SPHERE,WI,10/28/2011 19:18 +Boothwyn,,CIRCLE,PA,10/28/2011 19:50 +Lawrence,,LIGHT,KS,10/28/2011 20:10 +Machesney Park,ORANGE,FORMATION,IL,10/28/2011 20:15 +Los Angeles,,LIGHT,CA,10/28/2011 21:00 +Jermyn,RED ORANGE,OTHER,PA,10/28/2011 21:30 +Tulsa,,CIRCLE,OK,10/28/2011 21:30 +LaCrosse,RED YELLOW,CYLINDER,WI,10/28/2011 21:45 +Red Hill,,,PA,10/28/2011 21:45 +Fort Smith,,OVAL,AR,10/29/2011 0:14 +Meredith,ORANGE,LIGHT,NH,10/29/2011 8:00 +Wrightwood,,DISK,CA,10/29/2011 10:30 +Richmond,,CIRCLE,KY,10/29/2011 15:30 +Bend,ORANGE,VARIOUS,OR,10/29/2011 19:07 +Pine Grove,,SPHERE,CO,10/29/2011 19:40 +Cannon Beach,,,OR,10/29/2011 20:00 +Williamsport,RED,FORMATION,PA,10/29/2011 20:00 +Churubusco,RED,FIREBALL,IN,10/29/2011 21:00 +Effingham,,TRIANGLE,IL,10/29/2011 21:30 +Madison,RED,OTHER,WI,10/29/2011 21:30 +Mingo,,CIRCLE,IA,10/29/2011 21:30 +Hamilton,,LIGHT,OH,10/29/2011 21:55 +Encinitas,ORANGE,LIGHT,CA,10/29/2011 22:00 +Rockford,RED,LIGHT,IL,10/29/2011 22:00 +Waterbury,GREEN BLUE,,CT,10/29/2011 22:00 +Foxborough,GREEN,FLASH,MA,10/29/2011 23:00 +San Leandro,RED,OTHER,CA,10/29/2011 23:46 +Berea,,CIRCLE,OH,10/30/2011 0:00 +Indianapolis,,LIGHT,IN,10/30/2011 0:00 +North Little Rock,,SPHERE,AR,10/30/2011 0:30 +Pasco,,,WA,10/30/2011 5:22 +Denver,ORANGE,TRIANGLE,CO,10/30/2011 10:00 +Laurel,,LIGHT,MD,10/30/2011 16:00 +Hackensack,,VARIOUS,NJ,10/30/2011 17:00 +Nazareth,,TEARDROP,PA,10/30/2011 17:30 +Nazareth,ORANGE,TEARDROP,PA,10/30/2011 17:30 +Martinsville,YELLOW,SPHERE,VA,10/30/2011 19:25 +Ripon,,CHEVRON,CA,10/30/2011 20:00 +Canyon Lake,,OVAL,TX,10/30/2011 20:02 +Ronkonkoma,RED ORANGE,LIGHT,NY,10/30/2011 21:00 +Ronkonkoma,RED ORANGE,LIGHT,NY,10/30/2011 21:05 +Turner,,FIREBALL,ME,10/30/2011 21:15 +Cleburne,,TRIANGLE,TX,10/30/2011 23:20 +Columbus,,CIGAR,OH,10/30/2011 23:30 +Hardshell,,LIGHT,KY,10/31/2011 0:00 +Colorado Springs,,FORMATION,CO,10/31/2011 0:15 +Castleton on Hudson,ORANGE GREEN BLUE,FIREBALL,NY,10/31/2011 3:46 +Torrance,,RECTANGLE,CA,10/31/2011 6:45 +Monroe,,FIREBALL,MI,10/31/2011 8:30 +Dover,,TRIANGLE,NH,10/31/2011 19:00 +Parma,,LIGHT,OH,10/31/2011 19:00 +Wichita,,TRIANGLE,KS,10/31/2011 19:00 +Clovis,,SPHERE,CA,10/31/2011 19:15 +Seattle,ORANGE,FIREBALL,WA,10/31/2011 19:15 +Castro Valley,ORANGE,FORMATION,CA,10/31/2011 19:20 +Quincy,,OVAL,IL,10/31/2011 19:30 +Thousand Oaks,,OTHER,CA,10/31/2011 19:30 +Sarasota,,OTHER,FL,10/31/2011 20:00 +Rock Springs,,SPHERE,WY,10/31/2011 20:15 +Lancaster,,TRIANGLE,PA,10/31/2011 20:30 +Somers Point,ORANGE,FIREBALL,NJ,10/31/2011 20:30 +Portland,,LIGHT,ME,10/31/2011 20:40 +Hershey,,CIRCLE,PA,10/31/2011 21:00 +Monroe,,FIREBALL,MI,10/31/2011 21:15 +Round lake,ORANGE,SPHERE,IL,10/31/2011 21:30 +Lakeside,ORANGE,FIREBALL,CA,10/31/2011 23:00 +Belchertown,,OTHER,MA,11/1/2011 0:00 +New York City,,VARIOUS,NY,11/1/2011 0:00 +San Francisco,BLUE,LIGHT,CA,11/1/2011 1:15 +Denver,,,CO,11/1/2011 2:05 +Perrysburg,ORANGE,OTHER,OH,11/1/2011 2:17 +Akron,,LIGHT,OH,11/1/2011 2:45 +Denver,,DIAMOND,CO,11/1/2011 3:00 +Wadsworth,,DISK,IL,11/1/2011 4:51 +Pasadena,,DISK,TX,11/1/2011 7:30 +Old River-Winfree,,SPHERE,TX,11/1/2011 7:55 +Myrtle Beach,ORANGE,LIGHT,SC,11/1/2011 17:20 +Beaver,RED ORANGE,LIGHT,OH,11/1/2011 18:10 +Turner,,FIREBALL,ME,11/1/2011 19:30 +O'Fallon,,LIGHT,IL,11/1/2011 19:31 +Yonkers,,DIAMOND,NY,11/1/2011 20:15 +Nomran,RED,FIREBALL,OK,11/1/2011 20:30 +Woodmere,RED ORANGE,SPHERE,NY,11/1/2011 20:32 +Denham Springs,ORANGE,CIRCLE,LA,11/1/2011 20:48 +Goldsboro,,FIREBALL,NC,11/1/2011 21:00 +Menomonie,,LIGHT,WI,11/1/2011 21:05 +Elgin,,LIGHT,IL,11/1/2011 22:15 +Washingtonville,,TRIANGLE,NY,11/1/2011 22:30 +Sterling Heights,,LIGHT,MI,11/1/2011 23:00 +Round Mountain,,LIGHT,TX,11/1/2011 23:10 +Elkhart,RED,LIGHT,TX,11/2/2011 1:00 +Manchester,BLUE,DISK,TN,11/2/2011 1:30 +Miami,,CIRCLE,FL,11/2/2011 10:08 +Las Vegas,,FORMATION,NV,11/2/2011 11:10 +Denver,,FORMATION,CO,11/2/2011 13:30 +Hermosa Beach,,EGG,CA,11/2/2011 15:50 +Oakville,,,CT,11/2/2011 19:00 +Linville,,CYLINDER,NC,11/2/2011 19:15 +Meriden,,OTHER,CT,11/2/2011 20:00 +Mesa,RED ORANGE,OTHER,AZ,11/2/2011 20:20 +Apple Valley,,CIRCLE,MN,11/2/2011 21:45 +Hyattsville,,LIGHT,MD,11/2/2011 22:30 +Clinton,,LIGHT,MS,11/2/2011 23:45 +Panhandle,,,TX,11/3/2011 0:00 +Seffner,RED BLUE,LIGHT,FL,11/3/2011 0:43 +Clayton,,CIRCLE,NC,11/3/2011 0:55 +Charlotte,ORANGE,FORMATION,NC,11/3/2011 4:40 +Sarasota,,LIGHT,FL,11/3/2011 7:30 +Anahiem,,LIGHT,CA,11/3/2011 7:40 +Mechanicville,,OTHER,NY,11/3/2011 17:03 +Englewood,,CIRCLE,FL,11/3/2011 18:50 +Gresham,,LIGHT,OR,11/3/2011 19:10 +Woodville,,,WI,11/3/2011 19:21 +Fort Myers Beach,ORANGE,,FL,11/3/2011 19:30 +New York City,RED,CIRCLE,NY,11/3/2011 19:30 +Venice,,LIGHT,FL,11/3/2011 19:30 +Venice,RED,LIGHT,FL,11/3/2011 19:30 +Englewood,,LIGHT,FL,11/3/2011 20:00 +over many,,OTHER,CA,11/3/2011 20:00 +Englewood,ORANGE,LIGHT,FL,11/3/2011 20:05 +Saint Stephen,,FLASH,SC,11/3/2011 20:52 +Katy,,TRIANGLE,TX,11/3/2011 21:05 +Bryan,,OTHER,TX,11/4/2011 2:05 +Fulton,,,NY,11/4/2011 4:30 +Crystal Beach,,,TX,11/4/2011 14:30 +Tarpon Springs,,SPHERE,FL,11/4/2011 17:13 +Rotonda West,,FORMATION,FL,11/4/2011 19:00 +Sumner,ORANGE,FORMATION,WA,11/4/2011 19:00 +Shady Side,,LIGHT,MD,11/4/2011 21:30 +Manchester,,SPHERE,CT,11/4/2011 22:00 +Lawrenceville,RED,CROSS,GA,11/4/2011 22:15 +Warrenville,,OTHER,SC,11/5/2011 1:00 +Boston,,TRIANGLE,MA,11/5/2011 5:00 +Kabetogama,,LIGHT,MN,11/5/2011 5:00 +Huntington,,FORMATION,WV,11/5/2011 11:01 +Santa Ana,,TRIANGLE,CA,11/5/2011 17:01 +La Plata,,,MD,11/5/2011 18:00 +Elsmere,,DIAMOND,DE,11/5/2011 18:15 +Honesdale,,OTHER,PA,11/5/2011 19:00 +Muscatine,ORANGE,LIGHT,IA,11/5/2011 19:00 +Flemington,RED,FORMATION,NJ,11/5/2011 19:15 +Grand Rivers,,FIREBALL,KY,11/5/2011 20:00 +Troy,ORANGE,SPHERE,MI,11/5/2011 21:00 +Naples,,FIREBALL,FL,11/5/2011 21:10 +Torrington,,CIGAR,WY,11/5/2011 21:30 +Capistrano Beach,,FIREBALL,CA,11/5/2011 22:00 +Seattle,ORANGE,SPHERE,WA,11/5/2011 23:00 +Lynn,,FIREBALL,MA,11/6/2011 1:00 +Rochester,,FLASH,NY,11/6/2011 5:30 +Tracy,,TEARDROP,CA,11/6/2011 6:10 +Dothan,,LIGHT,AL,11/6/2011 6:30 +Northridge,,OVAL,CA,11/6/2011 11:30 +West Long Branch,,RECTANGLE,NJ,11/6/2011 13:00 +MacDill AFB,,CIRCLE,FL,11/6/2011 14:00 +Orchard Park,,DISK,NY,11/6/2011 14:00 +Knoxville,,OTHER,TN,11/6/2011 17:40 +Brewster,ORANGE,LIGHT,MA,11/6/2011 18:00 +Columbus,,SPHERE,OH,11/6/2011 18:02 +Branchdale,ORANGE,FORMATION,PA,11/6/2011 18:17 +Harrisburg,ORANGE,LIGHT,PA,11/6/2011 18:35 +Rohnert Park,ORANGE,FIREBALL,CA,11/6/2011 18:35 +Frankfort,,CHEVRON,KY,11/6/2011 19:00 +Crossville,RED,CIRCLE,TN,11/6/2011 19:30 +Portland,,FORMATION,OR,11/6/2011 20:30 +Greer,,VARIOUS,SC,11/6/2011 22:30 +Farmington,,LIGHT,NH,11/6/2011 22:57 +Morganton,,LIGHT,NC,11/6/2011 23:00 +Annapolis,RED GREEN BLUE,LIGHT,MD,11/6/2011 23:40 +Yukon,,DISK,OK,11/7/2011 0:00 +Poland,GREEN BLUE,FLASH,OH,11/7/2011 0:30 +Columbus,,DISK,OH,11/7/2011 8:58 +Alpine,RED,TRIANGLE,TX,11/7/2011 10:30 +Savannah,,LIGHT,GA,11/7/2011 11:10 +Brick,,CIRCLE,NJ,11/7/2011 16:00 +Leland,,CIRCLE,NC,11/7/2011 16:30 +Pleasanton,,CIRCLE,TX,11/7/2011 17:30 +Sebastopol,,FIREBALL,CA,11/7/2011 18:30 +Laurens,ORANGE,TRIANGLE,SC,11/7/2011 19:00 +Tyrone,,SPHERE,PA,11/7/2011 19:00 +Johnson City,,LIGHT,TN,11/7/2011 23:00 +Grove City,,TRIANGLE,OH,11/7/2011 23:15 +Pinnacle,,LIGHT,NC,11/8/2011 0:00 +Bellevue,,OTHER,WA,11/8/2011 16:40 +Utica,,,NY,11/8/2011 18:15 +Duncan,ORANGE,LIGHT,AZ,11/8/2011 18:30 +Terre Haute,,FIREBALL,IN,11/8/2011 18:30 +Monroe,,LIGHT,NC,11/8/2011 19:00 +Wickenburg,,TRIANGLE,AZ,11/8/2011 19:00 +Newalla,,TRIANGLE,OK,11/8/2011 20:00 +Davidsonville,,TRIANGLE,MD,11/8/2011 20:30 +Lebanon,RED BLUE,CIGAR,ME,11/8/2011 21:00 +Andreas,,SPHERE,PA,11/8/2011 22:00 +Freeport,GREEN,LIGHT,ME,11/8/2011 22:00 +Morganton,RED GREEN BLUE,CIRCLE,NC,11/8/2011 23:00 +Albany,,CIRCLE,OR,11/9/2011 4:30 +Moncks Corner,,FORMATION,SC,11/9/2011 6:00 +Phoenix,,LIGHT,AZ,11/9/2011 17:00 +San Pedro,,SPHERE,CA,11/9/2011 17:45 +Arvada,RED,TRIANGLE,CO,11/9/2011 18:40 +Olympia,,FIREBALL,WA,11/9/2011 18:45 +Blacksburg,GREEN,OVAL,VA,11/9/2011 19:00 +Columbia,,CIRCLE,SC,11/9/2011 19:00 +Big Sky,GREEN,OTHER,MT,11/9/2011 19:40 +Hobart,,LIGHT,WA,11/9/2011 22:30 +Umatilla,,DISK,FL,11/9/2011 23:00 +Sarasota,,TRIANGLE,FL,11/10/2011 1:00 +Malibu,,,CA,11/10/2011 3:00 +Canyon Lake,,FIREBALL,CA,11/10/2011 17:05 +Gig Harbor,YELLOW,CIRCLE,WA,11/10/2011 17:30 +Minneapolis,,SPHERE,MN,11/10/2011 20:30 +Galivants Ferry,,LIGHT,SC,11/10/2011 21:00 +Stockbridge,,FORMATION,GA,11/10/2011 21:00 +Frisco,,LIGHT,TX,11/10/2011 21:30 +Barry Township,,TRIANGLE,PA,11/11/2011 1:00 +Seattle,RED,LIGHT,WA,11/11/2011 3:30 +Cincinnati,GREEN,CIRCLE,OH,11/11/2011 10:18 +Scottsdale,,,AZ,11/11/2011 11:20 +Austin,,OVAL,TX,11/11/2011 11:53 +Mercer Island,,,WA,11/11/2011 16:25 +Greensboro,RED,OVAL,NC,11/11/2011 18:05 +Dover,RED GREEN,TRIANGLE,DE,11/11/2011 20:00 +Clinton Township,YELLOW,CROSS,MI,11/11/2011 20:10 +Fairbanks,,CIRCLE,AK,11/11/2011 20:10 +Harbor City,,TRIANGLE,CA,11/11/2011 20:15 +Concord,YELLOW,LIGHT,NC,11/11/2011 20:45 +Cumberland,RED,OTHER,MD,11/11/2011 20:45 +Duluth,ORANGE,FORMATION,MN,11/11/2011 22:30 +Fremont,,CYLINDER,IN,11/11/2011 22:30 +Cromwell,,LIGHT,CT,11/11/2011 22:55 +Osceola,,DISK,AR,11/11/2011 23:15 +Albany,ORANGE,CIRCLE,NY,11/11/2011 23:23 +Dixon,YELLOW,LIGHT,IL,11/12/2011 5:30 +Bethlehem,,LIGHT,PA,11/12/2011 5:53 +Chandler,,RECTANGLE,AZ,11/12/2011 11:50 +Akron,,SPHERE,OH,11/12/2011 13:00 +Harrisonburg,,SPHERE,VA,11/12/2011 17:00 +Milford,BLUE,CYLINDER,NE,11/12/2011 18:00 +Rancho Cucamonga,RED,LIGHT,CA,11/12/2011 18:26 +Fort Lauderdale,,CIRCLE,FL,11/12/2011 18:30 +Hanover,RED,SPHERE,MA,11/12/2011 19:00 +Uniondale,ORANGE,CIRCLE,NY,11/12/2011 19:00 +St. Petersburg,,SPHERE,FL,11/12/2011 19:20 +Portsmouth,,SPHERE,NH,11/12/2011 20:00 +Whittier,,VARIOUS,CA,11/12/2011 20:00 +Canton,BLUE,LIGHT,MA,11/12/2011 21:20 +Mechanicsburg,,FIREBALL,PA,11/12/2011 22:15 +Troy,,TEARDROP,OH,11/12/2011 22:15 +Savannah,,SPHERE,GA,11/12/2011 23:30 +Astoria,,CROSS,NY,11/13/2011 9:45 +Moriches bay area,RED,SPHERE,NY,11/13/2011 17:30 +Akron,,FIREBALL,OH,11/13/2011 18:30 +Ross,,LIGHT,OH,11/13/2011 20:00 +Uniondale,,OTHER,NY,11/13/2011 20:00 +Goose Creek,ORANGE,FIREBALL,SC,11/13/2011 21:00 +Chesterfield,ORANGE,CIRCLE,MO,11/13/2011 21:20 +Crandall,GREEN,DISK,TX,11/13/2011 21:45 +Covington,,SPHERE,WA,11/13/2011 23:30 +San Fransisco,,OTHER,CA,11/14/2011 14:07 +Wautoma,ORANGE,FIREBALL,WI,11/14/2011 15:08 +Kansas City,,OVAL,MO,11/14/2011 17:40 +Worcester,,,MA,11/14/2011 17:45 +Lafayette,,LIGHT,IA,11/14/2011 18:05 +Green River,,TRIANGLE,WY,11/14/2011 18:50 +San Bernardino,,LIGHT,CA,11/14/2011 18:50 +Gainesville,BLUE,LIGHT,FL,11/14/2011 19:15 +Fountain Hills,BLUE,LIGHT,AZ,11/14/2011 20:00 +Seattle,,FIREBALL,WA,11/14/2011 20:05 +Friendship,,FORMATION,WI,11/14/2011 21:00 +Grand Junction,RED GREEN BLUE,,CO,11/14/2011 23:00 +Harrisburg,,SPHERE,PA,11/15/2011 0:30 +Petersburg,GREEN,RECTANGLE,VA,11/15/2011 16:00 +Parma,,CIGAR,OH,11/15/2011 17:30 +Brentwood,,CIRCLE,NH,11/15/2011 17:43 +Neenah,,TRIANGLE,WI,11/15/2011 18:32 +O'Fallon,,TRIANGLE,MO,11/15/2011 19:00 +Spokane,RED,FORMATION,WA,11/15/2011 19:00 +Kent,,FIREBALL,WA,11/15/2011 19:32 +Seattle,,SPHERE,WA,11/15/2011 19:35 +Washougal,ORANGE,OTHER,WA,11/15/2011 19:42 +Ferndale,,SPHERE,WA,11/15/2011 20:00 +Sunny Isles Beach,,SPHERE,FL,11/15/2011 20:00 +Oroville,,LIGHT,CA,11/15/2011 20:45 +Maple Valley,,OVAL,WA,11/15/2011 21:00 +St. Petersburg,GREEN,FIREBALL,FL,11/15/2011 21:00 +Appleton,,CIRCLE,WI,11/15/2011 21:30 +Watertown,,TRIANGLE,NY,11/15/2011 21:30 +Perth Amboy,,LIGHT,NJ,11/15/2011 21:45 +Loxahatchee,,FIREBALL,FL,11/16/2011 4:09 +San Bernardino,,LIGHT,CA,11/16/2011 5:38 +Irvington,,CIRCLE,AL,11/16/2011 8:00 +Springfield,,LIGHT,OH,11/16/2011 16:00 +Mauston,,CIRCLE,WI,11/16/2011 17:20 +Kayenta,,,AZ,11/16/2011 17:40 +Coloma,,,WI,11/16/2011 17:50 +Berlin,,CIRCLE,WI,11/16/2011 18:00 +Greenehaven,,OTHER,AZ,11/16/2011 18:00 +Monument Valley,,OVAL,UT,11/16/2011 18:00 +Wisconsin Dells,,,WI,11/16/2011 18:00 +Cedar City,,FLASH,UT,11/16/2011 18:28 +Cedar City,,FORMATION,UT,11/16/2011 18:30 +Norman,,LIGHT,OK,11/16/2011 19:00 +Madera,,OTHER,CA,11/16/2011 19:30 +Freeport,,TRIANGLE,IL,11/16/2011 19:45 +Irvington,ORANGE,CIRCLE,AL,11/16/2011 20:00 +Temecula,,,CA,11/16/2011 20:00 +Miami,,,FL,11/16/2011 20:13 +Sacramento,RED GREEN,LIGHT,CA,11/16/2011 20:30 +Sisters,,FLASH,OR,11/16/2011 20:30 +Haughton,,SPHERE,LA,11/16/2011 21:00 +Morris,RED BLUE,TRIANGLE,IL,11/16/2011 21:00 +Pittsburg,,FLASH,CA,11/16/2011 23:00 +Dallas,,FIREBALL,TX,11/17/2011 8:00 +Knoxville,,DISK,TN,11/17/2011 15:30 +Phoenix,,SPHERE,AZ,11/17/2011 16:30 +Kite,ORANGE,OTHER,KY,11/17/2011 17:23 +Champion,,TRIANGLE,OH,11/17/2011 18:00 +Champion,,TRIANGLE,OH,11/17/2011 18:00 +Ekron,YELLOW,DISK,KY,11/17/2011 18:38 +Lake Havasu City,,VARIOUS,AZ,11/17/2011 18:45 +Pink,,TRIANGLE,OK,11/17/2011 18:45 +Bennington,,FIREBALL,IN,11/17/2011 19:30 +Falcon,,OTHER,CO,11/17/2011 20:10 +East Stroudsburg,,CIGAR,PA,11/17/2011 20:15 +Ridgefield,RED,TRIANGLE,WA,11/17/2011 21:00 +Monee,,TRIANGLE,IL,11/17/2011 22:00 +Houston,,OTHER,TX,11/17/2011 23:00 +Brandon,,OTHER,FL,11/18/2011 0:30 +Delaware,,SPHERE,OH,11/18/2011 4:38 +Saint Marys,,LIGHT,WV,11/18/2011 6:50 +Albuquerque,,LIGHT,NM,11/18/2011 19:00 +Asheville,,CIGAR,NC,11/18/2011 19:00 +Champion Heights,BLUE,LIGHT,OH,11/18/2011 19:40 +Woonsocket,,CIRCLE,RI,11/18/2011 20:00 +Fayetteville,,FLASH,GA,11/18/2011 20:18 +Oscoda,,FIREBALL,MI,11/18/2011 21:00 +Athens,RED,,OH,11/18/2011 21:30 +Mattawan,RED,FIREBALL,MI,11/18/2011 21:36 +Zanesville,,TRIANGLE,OH,11/18/2011 22:30 +San Antonio,GREEN,,TX,11/18/2011 23:20 +Plainfield,GREEN,TRIANGLE,IL,11/19/2011 0:05 +Alma,,LIGHT,WI,11/19/2011 6:05 +Spotsylvania,,DIAMOND,VA,11/19/2011 10:00 +Chester,,FIREBALL,CT,11/19/2011 10:50 +Mckeesport,,CIGAR,PA,11/19/2011 11:15 +Newnan,,FIREBALL,GA,11/19/2011 18:35 +Gravette,,FLASH,AR,11/19/2011 21:30 +Midland,,LIGHT,TX,11/19/2011 21:45 +South Charleston,,TEARDROP,WV,11/19/2011 22:12 +Stafford,,OTHER,VA,11/19/2011 22:30 +Nesmith,,,SC,11/19/2011 23:00 +Lopatcong,,LIGHT,NJ,11/20/2011 0:24 +Everett,,,WA,11/20/2011 0:30 +Sedro Woolley,,DISK,WA,11/20/2011 3:20 +Goldsboro,,CIRCLE,NC,11/20/2011 19:26 +Snohomish,,,WA,11/20/2011 20:05 +Rescue,,TRIANGLE,CA,11/20/2011 20:30 +Yakima,RED,LIGHT,WA,11/20/2011 21:40 +Millbrook,,EGG,AL,11/20/2011 22:00 +Wildomar,,LIGHT,CA,11/20/2011 22:00 +Woodland,,,CA,11/21/2011 2:19 +Woodland,,,CA,11/21/2011 2:19 +Beadle County,,,SD,11/21/2011 6:15 +Visalia,,FIREBALL,CA,11/21/2011 13:00 +Palm Desert,,TRIANGLE,CA,11/21/2011 16:30 +San Bernardino,,FIREBALL,CA,11/21/2011 18:30 +Easton,,RECTANGLE,PA,11/21/2011 19:30 +Northampton,,DIAMOND,MA,11/22/2011 0:00 +Sharpsburg,,LIGHT,GA,11/22/2011 3:45 +Fresno,RED,SPHERE,CA,11/22/2011 17:22 +Lake Havasu City,RED BLUE,VARIOUS,AZ,11/22/2011 18:00 +Lomita,,TRIANGLE,CA,11/22/2011 18:00 +Novato,GREEN,LIGHT,CA,11/22/2011 18:00 +East Durham,RED,TRIANGLE,NY,11/22/2011 19:00 +Bridgewater,,,NJ,11/23/2011 0:45 +Geoje Island,,FIREBALL,CA,11/23/2011 1:32 +Independence,,LIGHT,MO,11/23/2011 1:45 +Anchorage,,CIRCLE,AK,11/23/2011 11:00 +Bridgewater,,OTHER,NJ,11/23/2011 12:35 +Belton,,SPHERE,MO,11/23/2011 12:45 +Exeter,,DIAMOND,NH,11/23/2011 15:30 +Newark,,TRIANGLE,OH,11/23/2011 20:05 +Stratham,ORANGE,FIREBALL,NH,11/23/2011 21:15 +Goodyear,,FIREBALL,AZ,11/23/2011 21:35 +Charleston,,TRIANGLE,WV,11/23/2011 22:45 +Hialeah,,DIAMOND,FL,11/23/2011 23:00 +Republic,,CIRCLE,WA,11/23/2011 23:00 +Laguna Hills,RED GREEN,TRIANGLE,CA,11/24/2011 0:01 +Boston,,LIGHT,MA,11/24/2011 1:00 +Broken Arrow,,,OK,11/24/2011 5:55 +Eugene,,LIGHT,OR,11/24/2011 5:55 +Shell Lake,,CIRCLE,WI,11/24/2011 8:01 +Missoula,BLUE,,MT,11/24/2011 10:12 +Waterbury,,DIAMOND,CT,11/24/2011 16:45 +Phoenix,,TRIANGLE,AZ,11/24/2011 17:30 +Branson,,LIGHT,MO,11/24/2011 18:00 +Orlando,ORANGE,FIREBALL,FL,11/24/2011 18:00 +San Jose,,SPHERE,CA,11/24/2011 18:00 +Roseburg,,LIGHT,OR,11/24/2011 18:25 +Saratoga Springs,,FIREBALL,NY,11/24/2011 18:30 +Isle of Palms,ORANGE,TRIANGLE,SC,11/24/2011 19:00 +Slingerlands,,CIRCLE,NY,11/24/2011 19:00 +Riverside,,FIREBALL,NJ,11/24/2011 19:50 +San Diego,,LIGHT,CA,11/24/2011 20:29 +Raleigh,,CIRCLE,NC,11/24/2011 20:30 +Lathrop,,LIGHT,CA,11/24/2011 20:45 +Reading,,FIREBALL,PA,11/24/2011 20:45 +Madison,ORANGE,TRIANGLE,MS,11/24/2011 21:00 +Pearl,,SPHERE,IL,11/24/2011 21:00 +Addison,,OVAL,IL,11/24/2011 21:33 +Visalia,,,CA,11/24/2011 21:50 +Louisville,RED GREEN,OVAL,KY,11/25/2011 4:55 +Tualatin,,LIGHT,OR,11/25/2011 15:00 +Madison Township,,RECTANGLE,OH,11/25/2011 17:45 +Loveland,ORANGE,FORMATION,OH,11/25/2011 18:04 +Green Mountain,GREEN,SPHERE,NC,11/25/2011 18:20 +Trooper,,CIRCLE,PA,11/25/2011 19:00 +Blue Springs,BLUE,VARIOUS,MO,11/25/2011 19:10 +Chula Vista,,TRIANGLE,CA,11/25/2011 19:30 +St. Pete Beach,ORANGE,LIGHT,FL,11/25/2011 20:30 +Waterbury,RED,FIREBALL,CT,11/25/2011 21:00 +Hermitage,BLUE,LIGHT,TN,11/25/2011 21:30 +St. Louis Park,,FIREBALL,MN,11/25/2011 21:30 +Long Beach,,FIREBALL,CA,11/25/2011 21:55 +Gainesville,,CIRCLE,FL,11/25/2011 23:30 +Lyndonville,,CIRCLE,NY,11/26/2011 5:15 +Providence,,,RI,11/26/2011 9:00 +Auburn,,CIRCLE,WA,11/26/2011 11:45 +Jerseyville,,FIREBALL,IL,11/26/2011 17:05 +Missoula,ORANGE,,MT,11/26/2011 18:30 +Duryea,ORANGE,TRIANGLE,PA,11/26/2011 19:00 +Charlotte,,FIREBALL,NC,11/26/2011 20:15 +Vero Beach,,LIGHT,FL,11/26/2011 20:30 +San Francisco,RED,SPHERE,CA,11/26/2011 20:45 +Santa Barbara,ORANGE,DISK,CA,11/26/2011 20:45 +Layton,ORANGE,LIGHT,UT,11/26/2011 21:00 +New York City,RED,CIRCLE,NY,11/26/2011 23:15 +Holland,RED BLUE,OVAL,PA,11/27/2011 5:15 +El Monte,,LIGHT,CA,11/27/2011 5:45 +Ephrata,,DISK,PA,11/27/2011 8:00 +Huntingtown,RED,TRIANGLE,MD,11/27/2011 18:00 +Kayenta,,OVAL,AZ,11/27/2011 19:13 +Houston,,OTHER,TX,11/27/2011 20:00 +Kansas City,RED GREEN,TRIANGLE,MO,11/27/2011 21:30 +Mayer,,FORMATION,AZ,11/27/2011 22:00 +Madison,BLUE,DISK,WI,11/27/2011 22:43 +Santa Monica,,OVAL,CA,11/28/2011 3:05 +Tyrone,YELLOW,LIGHT,OK,11/28/2011 3:20 +Helena,,OVAL,MT,11/28/2011 5:45 +Lansing,,,MI,11/28/2011 13:55 +Troy,,LIGHT,NH,11/28/2011 15:50 +Methuen,,DIAMOND,MA,11/28/2011 17:30 +Denver,,VARIOUS,CO,11/28/2011 17:45 +Lake Oswego,,EGG,OR,11/28/2011 18:30 +Sturgeon Bay,,DISK,WI,11/28/2011 21:00 +Austin,,TRIANGLE,TX,11/28/2011 21:28 +Pfafftown,ORANGE,,NC,11/28/2011 21:30 +Marquette,,LIGHT,MI,11/29/2011 3:35 +Bellingham,,,WA,11/29/2011 6:50 +Canby,,FLASH,OR,11/29/2011 9:30 +Golden,,SPHERE,CO,11/29/2011 14:30 +Payson,,CIGAR,AZ,11/29/2011 16:00 +Alameda,YELLOW,VARIOUS,CA,11/29/2011 17:00 +Keithville,,TRIANGLE,LA,11/29/2011 18:00 +Glendora,,CIRCLE,CA,11/29/2011 18:30 +Socorro,YELLOW,LIGHT,NM,11/29/2011 18:30 +Grass Valley,,CHEVRON,CA,11/29/2011 19:30 +Chandler,,VARIOUS,AZ,11/29/2011 20:00 +St. Louis,GREEN BLUE,FLASH,MO,11/29/2011 22:42 +Walterboro,,,SC,11/29/2011 23:59 +Santa Rosa,,LIGHT,CA,11/30/2011 8:00 +Elkton,,CIGAR,MD,11/30/2011 9:30 +Miami,,,FL,11/30/2011 13:45 +Raleigh,,,NC,11/30/2011 18:45 +Eugene,,,OR,11/30/2011 19:00 +Monticello,,OTHER,IN,11/30/2011 20:30 +Tallahasse,,TRIANGLE,FL,11/30/2011 20:30 +Koshkonong,GREEN,DISK,MO,11/30/2011 21:20 +Greensburg,RED,TRIANGLE,IN,11/30/2011 22:30 +Farmingdale,,LIGHT,NY,12/1/2011 0:05 +Blaine,,OTHER,WA,12/1/2011 0:10 +Kirkland,,TRIANGLE,WA,12/1/2011 1:30 +Natchitoches,,TRIANGLE,LA,12/1/2011 2:00 +Burton,,CIRCLE,MI,12/1/2011 5:00 +Bishop,,OTHER,CA,12/1/2011 6:06 +Bemidji,,CIRCLE,MN,12/1/2011 7:30 +Water Town,,CIRCLE,NY,12/1/2011 12:00 +Durham,,DISK,NC,12/1/2011 15:30 +Gastonia,ORANGE,FIREBALL,NC,12/1/2011 17:10 +Davie,,CIRCLE,FL,12/1/2011 18:00 +Davie,ORANGE,CIRCLE,FL,12/1/2011 18:10 +Holden Beach,ORANGE,EGG,NC,12/1/2011 19:00 +Louisville,,LIGHT,KY,12/1/2011 19:00 +Rogers,,TRIANGLE,AR,12/1/2011 19:00 +Myrtle Beach,,FORMATION,SC,12/1/2011 19:30 +Manassas,,FORMATION,VA,12/1/2011 19:45 +Myrtle Beach,ORANGE,LIGHT,SC,12/1/2011 20:45 +Palm Springs,ORANGE,FIREBALL,CA,12/1/2011 22:00 +Burke,RED,TRIANGLE,VA,12/1/2011 22:30 +New York City,,OTHER,NY,12/1/2011 23:15 +Yakima,,,WA,12/2/2011 0:00 +Portland,,OTHER,OR,12/2/2011 1:30 +Charlotte,ORANGE,VARIOUS,NC,12/2/2011 2:00 +Yakima,,LIGHT,WA,12/2/2011 6:30 +Mifflintown,,FIREBALL,PA,12/2/2011 7:00 +Fishers,ORANGE,CIRCLE,IN,12/2/2011 16:00 +Redding,,LIGHT,CA,12/2/2011 17:20 +Concord,,FIREBALL,NC,12/2/2011 18:10 +Lancaster,,DIAMOND,OH,12/2/2011 19:00 +Salisbury,BLUE,,NC,12/2/2011 19:00 +LaGrange,,DISK,GA,12/2/2011 21:00 +Bel Air,BLUE,CHEVRON,MD,12/2/2011 21:10 +LaGrange,,DISK,GA,12/2/2011 21:20 +Pompano Beach,,CIRCLE,FL,12/2/2011 21:30 +MIlford,,RECTANGLE,MI,12/2/2011 22:00 +East Dorset,,LIGHT,VT,12/2/2011 22:20 +Medford,,CIRCLE,OR,12/2/2011 23:00 +Muncie,BLUE,FIREBALL,IN,12/2/2011 23:00 +Duck Key,,OTHER,FL,12/2/2011 23:20 +Mojave,,DISK,CA,12/3/2011 2:30 +St. Louis,,CIRCLE,MO,12/3/2011 4:25 +Temple Hills,,,MD,12/3/2011 17:00 +Hays,,LIGHT,NC,12/3/2011 17:45 +Springboro,,TRIANGLE,OH,12/3/2011 18:30 +Locust Grove,,RECTANGLE,GA,12/3/2011 18:46 +Loganville,,LIGHT,GA,12/3/2011 18:54 +Middletown,,FORMATION,OH,12/3/2011 18:58 +Springboro,,FIREBALL,OH,12/3/2011 18:59 +Dayton,,LIGHT,OH,12/3/2011 19:00 +Weaverville,,CIRCLE,NC,12/3/2011 19:15 +Vienna,,LIGHT,OH,12/3/2011 19:30 +Jacksonville Beach,,TRIANGLE,FL,12/3/2011 21:35 +New Albany,,TRIANGLE,IN,12/3/2011 22:13 +Sherwood,,LIGHT,OR,12/3/2011 22:15 +Pointplace,YELLOW,FIREBALL,OH,12/3/2011 23:35 +Manchester,ORANGE,OTHER,CT,12/4/2011 1:00 +Torrance,RED,LIGHT,CA,12/4/2011 1:35 +National City,,OVAL,CA,12/4/2011 3:05 +Capitola,,OTHER,CA,12/4/2011 18:17 +Alexandria,,LIGHT,VA,12/4/2011 19:30 +Greenville,,LIGHT,NC,12/4/2011 20:00 +Staunton,,FLASH,VA,12/4/2011 20:00 +Anchorage,,LIGHT,AK,12/4/2011 21:17 +Bellevue,,LIGHT,WA,12/4/2011 22:12 +Palmetto Bay,BLUE,DISK,FL,12/4/2011 23:32 +Cuero,BLUE,LIGHT,TX,12/5/2011 1:00 +Laguna Hills,RED,DISK,CA,12/5/2011 5:45 +Billings,,SPHERE,MT,12/5/2011 6:45 +Orlando,BLUE,LIGHT,FL,12/5/2011 7:05 +King George,,TRIANGLE,VA,12/5/2011 17:35 +Ft. Bragg,,,NC,12/5/2011 19:00 +Bel Air,,OVAL,MD,12/5/2011 20:20 +Melbourne Beach,,DIAMOND,FL,12/5/2011 21:00 +Renton,,LIGHT,WA,12/5/2011 21:00 +Monterey,ORANGE,FLASH,CA,12/5/2011 22:00 +Fargo,,TEARDROP,ND,12/5/2011 23:00 +Flat Lick,,OVAL,KY,12/6/2011 0:00 +Winnetka,,TRIANGLE,CA,12/6/2011 0:10 +Glendale,,FLASH,CA,12/6/2011 5:26 +Reseda,ORANGE,TRIANGLE,CA,12/6/2011 18:00 +Eureka,ORANGE,OVAL,CA,12/6/2011 18:02 +Lansing,,LIGHT,MI,12/6/2011 19:00 +Fresno,,,CA,12/6/2011 20:34 +Brainerd,RED,TRIANGLE,MN,12/7/2011 6:00 +Canon city,ORANGE,DIAMOND,CO,12/7/2011 6:20 +Mount Shasta,,CIRCLE,CA,12/7/2011 7:23 +St. Louis,,TRIANGLE,MO,12/7/2011 11:19 +Johnstown,,,PA,12/7/2011 11:30 +Lenzburg,,OTHER,IL,12/7/2011 13:35 +Visalia,,LIGHT,CA,12/7/2011 18:00 +Visalia-Lemoore,,LIGHT,CA,12/7/2011 18:00 +Sarona,,LIGHT,WI,12/7/2011 20:00 +Doyleville,,,CO,12/7/2011 20:30 +Surfside,RED,,SC,12/7/2011 22:30 +Whitehall,BLUE,FIREBALL,OH,12/7/2011 23:25 +Johnstown,,LIGHT,PA,12/7/2011 23:30 +Lexingtob,,FIREBALL,KY,12/7/2011 23:32 +Metter,,TRIANGLE,GA,12/8/2011 0:00 +Downingtown,,CIRCLE,PA,12/8/2011 1:13 +Boston,GREEN BLUE,FIREBALL,MA,12/8/2011 2:15 +Sacramento,ORANGE,CROSS,CA,12/8/2011 11:40 +Saranac Lake,YELLOW,SPHERE,NY,12/8/2011 17:10 +Early Branch,,TRIANGLE,SC,12/8/2011 18:35 +Chester,,TRIANGLE,IL,12/8/2011 19:30 +Spartanburg,,OTHER,SC,12/8/2011 21:00 +North Myrtle Beach,,LIGHT,SC,12/8/2011 22:30 +Charlotte,GREEN,FIREBALL,NC,12/8/2011 23:00 +Pilot Mountain,,OVAL,NC,12/8/2011 23:00 +Cumming,,SPHERE,GA,12/8/2011 23:50 +North Myrtle Beach,GREEN,,NC,12/9/2011 0:30 +Longs,,OTHER,SC,12/9/2011 1:00 +Brinnon,ORANGE BLUE,CIRCLE,WA,12/9/2011 5:00 +Sarasota,,DISK,FL,12/9/2011 14:20 +Decatur,,SPHERE,IL,12/9/2011 17:50 +Alice,,OTHER,TX,12/9/2011 19:00 +Hardin,,TRIANGLE,MT,12/9/2011 20:00 +Boston,,FIREBALL,MA,12/9/2011 21:00 +San Antonio,,CIRCLE,TX,12/9/2011 21:00 +Provincetown,,SPHERE,MA,12/9/2011 21:30 +Sarasota,RED,,FL,12/9/2011 23:30 +Sarasota,RED,LIGHT,FL,12/9/2011 23:32 +Perryville,,TRIANGLE,MO,12/10/2011 13:00 +Ocotillo Wells,,LIGHT,CA,12/10/2011 17:30 +Florence,RED BLUE,,SC,12/10/2011 17:50 +Colorado Springs,,,CO,12/10/2011 18:30 +Lee's Summit,,LIGHT,MO,12/10/2011 22:00 +Medford,RED GREEN,OVAL,NJ,12/10/2011 22:04 +Hazard,,,KY,12/11/2011 0:00 +Yucaipa,RED,LIGHT,CA,12/11/2011 0:00 +Highland,,,IN,12/11/2011 3:45 +Lathrop,,OVAL,CA,12/11/2011 4:00 +Saco,,FORMATION,ME,12/11/2011 7:18 +Yardville,ORANGE,OVAL,NJ,12/11/2011 8:42 +New Paris,,SPHERE,IN,12/11/2011 18:01 +New Paris,,SPHERE,IN,12/11/2011 18:01 +Avalon,,LIGHT,CA,12/11/2011 18:20 +Eureka Springs,ORANGE,LIGHT,AR,12/11/2011 20:00 +Belton,,LIGHT,MO,12/11/2011 20:01 +Hazard,,,KY,12/11/2011 20:30 +Mazon,GREEN,LIGHT,IL,12/11/2011 21:00 +Lakewood,,DISK,CO,12/12/2011 1:00 +Tacoma,RED,FLASH,WA,12/12/2011 4:30 +Mount Vernon,,LIGHT,WA,12/12/2011 5:30 +Rochester,GREEN,FIREBALL,NY,12/12/2011 18:00 +Marathon,,FIREBALL,NY,12/12/2011 18:03 +Palo Alto,GREEN,CYLINDER,CA,12/12/2011 19:19 +Lacey,GREEN,LIGHT,WA,12/12/2011 20:11 +Summerville,GREEN,OTHER,SC,12/12/2011 23:00 +San Juan Capistrano,ORANGE,CIRCLE,CA,12/13/2011 13:30 +Canby,,TEARDROP,OR,12/13/2011 16:00 +Minneapolis,,CIRCLE,MN,12/13/2011 17:00 +Newark,ORANGE,FIREBALL,OH,12/13/2011 17:00 +Baxter Springs,,OVAL,KS,12/13/2011 19:00 +Hinesville,YELLOW,SPHERE,GA,12/13/2011 19:55 +Carroll Valley,,RECTANGLE,PA,12/13/2011 22:15 +Tampa,,FIREBALL,FL,12/13/2011 23:30 +Auburn,,CIRCLE,ME,12/14/2011 0:00 +West Sacramento,GREEN,OTHER,CA,12/14/2011 1:00 +Spencer,,SPHERE,IA,12/14/2011 12:30 +Rocklin,,FORMATION,CA,12/14/2011 17:00 +Aiken County,,FORMATION,SC,12/14/2011 18:00 +Leominster,,OVAL,MA,12/14/2011 18:16 +Knoxville,,FIREBALL,TN,12/14/2011 19:00 +Phoenix,,DISK,AZ,12/14/2011 20:00 +Saint Petersburg,,,FL,12/14/2011 21:00 +St. Louis,,DISK,IL,12/14/2011 21:30 +Berkeley,,CIGAR,CA,12/14/2011 23:00 +Charlotte,,SPHERE,NC,12/14/2011 23:58 +Charlotte,,LIGHT,NC,12/15/2011 0:00 +St. Petersburg,BLUE,OTHER,FL,12/15/2011 0:30 +Readfield,,LIGHT,ME,12/15/2011 0:43 +North Yuma,,CIRCLE,AZ,12/15/2011 2:00 +Ashburn,,CIRCLE,VA,12/15/2011 5:10 +Laramie,ORANGE,VARIOUS,WY,12/15/2011 17:30 +Mitchell,,LIGHT,SD,12/15/2011 18:05 +Bowling Green,,LIGHT,KY,12/15/2011 19:30 +Cochran,RED GREEN,,GA,12/15/2011 21:01 +St. George,,LIGHT,SC,12/15/2011 21:55 +Melbourne,,LIGHT,FL,12/15/2011 22:09 +Perry,,LIGHT,GA,12/15/2011 23:30 +Kansas City,BLUE,LIGHT,MO,12/16/2011 4:09 +Bloomington,,,CA,12/16/2011 6:00 +Hopewell,,TRIANGLE,VA,12/16/2011 6:05 +Pelham,GREEN,FIREBALL,GA,12/16/2011 12:50 +Leominster,,EGG,MA,12/16/2011 17:30 +Lamartine,RED,FLASH,WI,12/16/2011 18:13 +Ashgrove,,,MO,12/16/2011 18:34 +White Bear Lake,RED,TRIANGLE,MN,12/16/2011 19:05 +Manhattan,,LIGHT,IL,12/16/2011 19:50 +Seattle,,SPHERE,WA,12/16/2011 20:00 +Manchester,RED,TRIANGLE,CT,12/16/2011 21:00 +Fresno,,TRIANGLE,CA,12/16/2011 21:29 +Deltona,,TRIANGLE,FL,12/16/2011 21:40 +Lake Havasu City,BLUE,LIGHT,AZ,12/16/2011 22:00 +Cooksville,ORANGE,SPHERE,MD,12/16/2011 22:59 +Bellevue,GREEN,LIGHT,WA,12/16/2011 23:45 +Redmond,,LIGHT,WA,12/17/2011 0:00 +Lame Deer,,OTHER,MT,12/17/2011 0:30 +Henderson,BLUE,SPHERE,NV,12/17/2011 0:50 +Simsponville,,VARIOUS,SC,12/17/2011 1:00 +Everglades,BLUE,LIGHT,FL,12/17/2011 6:00 +Partlow,,FLASH,VA,12/17/2011 6:30 +Danby,,EGG,NY,12/17/2011 10:50 +Beaufort,GREEN,,SC,12/17/2011 17:00 +New Haven,,SPHERE,MO,12/17/2011 17:50 +Jacksonville,GREEN,FIREBALL,FL,12/17/2011 17:55 +no data,,OTHER,IA,12/17/2011 18:00 +Titusville,ORANGE,LIGHT,FL,12/17/2011 18:10 +Honolulu,,LIGHT,HI,12/17/2011 18:30 +Honolulu,,LIGHT,HI,12/17/2011 18:30 +Venice,RED,LIGHT,FL,12/17/2011 18:30 +Austin,RED ORANGE,FORMATION,MN,12/17/2011 18:35 +Latham,,DIAMOND,NY,12/17/2011 18:35 +Springhill,,FLASH,FL,12/17/2011 18:40 +Tuscola,,LIGHT,IL,12/17/2011 18:45 +Hixson,ORANGE,SPHERE,TN,12/17/2011 19:00 +Merritt Island,YELLOW GREEN,FIREBALL,FL,12/17/2011 19:00 +Fluvanna county,,OVAL,VA,12/17/2011 19:50 +North Scituate,RED,LIGHT,RI,12/17/2011 20:00 +Oakland,,LIGHT,CA,12/17/2011 20:00 +North Attleboro,,OVAL,MA,12/17/2011 21:00 +Oak Island,,LIGHT,NC,12/17/2011 22:00 +Saint Paul,,FIREBALL,MN,12/17/2011 22:00 +Yakima,,,WA,12/17/2011 22:00 +Asheville,ORANGE,LIGHT,NC,12/18/2011 1:00 +El Cajon,ORANGE,LIGHT,CA,12/18/2011 1:00 +Lakewood,,OVAL,IL,12/18/2011 5:30 +Easton,,TRIANGLE,MO,12/18/2011 17:26 +Rochester,,TRIANGLE,MN,12/18/2011 17:30 +Suffolk,,,NY,12/18/2011 17:50 +Newport News,,FLASH,VA,12/18/2011 18:00 +Elk Grove,,FORMATION,IL,12/18/2011 19:45 +Exeland,,LIGHT,WI,12/18/2011 20:00 +Snydersville,ORANGE GREEN,LIGHT,PA,12/18/2011 20:30 +Stella,,,NC,12/18/2011 21:00 +Loxahatchee,ORANGE,FIREBALL,FL,12/18/2011 21:20 +Hicksville,GREEN BLUE,LIGHT,NY,12/18/2011 22:05 +Lapeer,,TRIANGLE,MI,12/18/2011 22:30 +Tucson,,SPHERE,AZ,12/18/2011 22:30 +Myrtle Beach,,TRIANGLE,SC,12/18/2011 23:00 +Sacramento,YELLOW,CROSS,CA,12/18/2011 23:30 +New York City,,OTHER,NY,12/18/2011 23:40 +Harwich,,LIGHT,MA,12/19/2011 1:00 +Simpsonville,,VARIOUS,SC,12/19/2011 1:00 +Pella,,,IA,12/19/2011 1:30 +Freeport,,FIREBALL,FL,12/19/2011 4:45 +Wauchula,,RECTANGLE,FL,12/19/2011 13:15 +Billings,,LIGHT,MT,12/19/2011 18:15 +Burlington,,FIREBALL,VT,12/19/2011 20:00 +Clinton-Sherman Airpark,RED,LIGHT,OK,12/19/2011 21:45 +Shelton,,FIREBALL,CT,12/19/2011 22:15 +Wallingford,GREEN,CIRCLE,CT,12/19/2011 22:36 +Grand Lake,,LIGHT,CO,12/20/2011 0:00 +Shorewood,,,IL,12/20/2011 3:45 +Stanwood,,OVAL,WA,12/20/2011 8:50 +,,CYLINDER,PA,12/20/2011 12:00 +Nashua,,VARIOUS,NH,12/20/2011 12:00 +Crooked River Ranch,RED,,OR,12/20/2011 16:00 +Friday Harbor,,LIGHT,WA,12/20/2011 17:30 +Mayville,,LIGHT,ND,12/20/2011 18:45 +San Francisco,ORANGE,,CA,12/20/2011 19:15 +Norfolk,,LIGHT,VA,12/20/2011 20:00 +Gastonia,,LIGHT,NC,12/20/2011 20:32 +Moore,,LIGHT,OK,12/20/2011 21:10 +Stagecoach,,CIGAR,TX,12/20/2011 22:45 +San Diego,RED,OTHER,CA,12/20/2011 23:00 +Seaside,GREEN,,NJ,12/21/2011 0:00 +Tampa,,FORMATION,FL,12/21/2011 5:30 +Anacortes,,DIAMOND,WA,12/21/2011 15:00 +Bend,,VARIOUS,OR,12/21/2011 18:00 +Trinidad,,FIREBALL,CA,12/21/2011 18:15 +Terry,RED GREEN BLUE,SPHERE,MT,12/21/2011 20:30 +Bellingham,,SPHERE,WA,12/21/2011 21:00 +Satellite Beach,,FORMATION,FL,12/21/2011 22:55 +Sterling,,FIREBALL,VA,12/22/2011 0:57 +Bayville,GREEN,,NJ,12/22/2011 1:00 +Boise,,LIGHT,ID,12/22/2011 8:37 +Oregon I-84,,,WA,12/22/2011 17:30 +Baltimore,,CIGAR,MD,12/22/2011 17:45 +Twisp,,SPHERE,WA,12/22/2011 18:00 +Irvine,,OTHER,CA,12/22/2011 18:51 +Monroe,BLUE,LIGHT,OH,12/22/2011 18:57 +Ephrata,,SPHERE,PA,12/22/2011 19:00 +Boise,,CIRCLE,ID,12/22/2011 20:00 +Palestine,RED,,TX,12/22/2011 20:00 +Hermiston,,LIGHT,OR,12/22/2011 20:50 +Stafford Springs,ORANGE,LIGHT,CT,12/22/2011 21:00 +Stafford Springs,ORANGE,TRIANGLE,CT,12/22/2011 21:00 +Yakima,,FORMATION,WA,12/23/2011 0:30 +Conroe,,RECTANGLE,TX,12/23/2011 3:00 +Port Saint Lucie,,LIGHT,FL,12/23/2011 8:10 +Hudson,,VARIOUS,WI,12/23/2011 14:30 +Lehighton,,LIGHT,PA,12/23/2011 16:30 +Spokane,,FIREBALL,WA,12/23/2011 16:30 +Plattesmouth,,,NE,12/23/2011 16:45 +San Diego,,SPHERE,CA,12/23/2011 17:00 +Spokane,,FIREBALL,WA,12/23/2011 17:00 +Spokane,GREEN,LIGHT,WA,12/23/2011 17:14 +Syracuse,,SPHERE,NY,12/23/2011 18:00 +Kalispell,RED GREEN,,MT,12/23/2011 18:16 +Rio Rancho,,FIREBALL,CA,12/23/2011 19:30 +Orlando,ORANGE,LIGHT,FL,12/23/2011 19:55 +Marietta,,FIREBALL,GA,12/23/2011 20:18 +Naples,ORANGE,OTHER,FL,12/23/2011 20:45 +Palmdale,,OTHER,CA,12/23/2011 21:00 +Tijuana,,FIREBALL,CA,12/23/2011 22:15 +Grass Valley,,OTHER,CA,12/23/2011 22:58 +Hobe Sound,,LIGHT,FL,12/24/2011 0:00 +Medford,,CIRCLE,NY,12/24/2011 0:00 +Fairbanks,RED BLUE,SPHERE,AK,12/24/2011 2:00 +San Leandro,,OTHER,CA,12/24/2011 4:40 +Bradenton,,VARIOUS,FL,12/24/2011 5:00 +Bradenton,,VARIOUS,FL,12/24/2011 6:30 +Phoenix,BLUE,,AZ,12/24/2011 6:50 +Salt Cake City,,CIRCLE,UT,12/24/2011 8:00 +Clearwater,,CIRCLE,FL,12/24/2011 8:30 +Superior,,CIGAR,CO,12/24/2011 10:50 +Calistoga,,OVAL,CA,12/24/2011 11:49 +Tooele,RED,LIGHT,UT,12/24/2011 13:30 +Olney,,LIGHT,MD,12/24/2011 17:45 +Bridgewater,,,MA,12/24/2011 18:00 +Henrico,BLUE,OVAL,VA,12/24/2011 18:20 +Sammamish,YELLOW,FIREBALL,WA,12/24/2011 18:30 +Clarks Green,,,PA,12/24/2011 19:00 +Catonsville,,SPHERE,MD,12/24/2011 19:30 +St. Louis,,TRIANGLE,MO,12/24/2011 19:50 +Grand Junction,RED,OTHER,CO,12/24/2011 20:00 +Hatboro,ORANGE,OTHER,PA,12/24/2011 20:00 +Oldsmar,,OVAL,FL,12/24/2011 20:00 +Spanaway,,FORMATION,WA,12/24/2011 20:00 +West Jordan,RED,FIREBALL,UT,12/24/2011 20:00 +Irvine,,TRIANGLE,CA,12/24/2011 20:05 +Brickerville,,FORMATION,PA,12/24/2011 20:30 +Pumpkin Center,,LIGHT,LA,12/24/2011 20:30 +Port Charlotte,,VARIOUS,FL,12/24/2011 20:50 +Warminster,ORANGE,OTHER,PA,12/24/2011 20:50 +Levittown,,CIRCLE,PA,12/24/2011 21:00 +Gaithersburg,,CIRCLE,MD,12/24/2011 21:10 +Boise,,LIGHT,ID,12/24/2011 21:30 +New York,,FIREBALL,NY,12/24/2011 21:30 +Rio Rancho,,CIRCLE,NM,12/24/2011 21:45 +Boise,RED,CIRCLE,ID,12/24/2011 22:00 +Littleton,ORANGE,CIRCLE,CO,12/24/2011 22:00 +Pensacola,,FIREBALL,FL,12/24/2011 22:00 +Boynton Beach,,FIREBALL,FL,12/24/2011 22:15 +Kirkland,,LIGHT,WA,12/24/2011 22:35 +Lenore,,VARIOUS,WV,12/24/2011 23:00 +Phoenix,,OTHER,AZ,12/24/2011 23:00 +Fountain,,LIGHT,CO,12/24/2011 23:50 +Rogers,,LIGHT,AR,12/25/2011 0:15 +Eden Prairie,,OTHER,MN,12/25/2011 2:00 +Albany,,OTHER,GA,12/25/2011 4:54 +West Jordan,,FIREBALL,UT,12/25/2011 7:22 +Upper Darby,ORANGE,,PA,12/25/2011 7:30 +Heathsville,ORANGE,SPHERE,VA,12/25/2011 16:45 +Prior Lake,RED,LIGHT,MN,12/25/2011 17:30 +Washougal,RED YELLOW,,WA,12/25/2011 18:00 +Defiance,,CIRCLE,MO,12/25/2011 18:15 +Pompano Beach,ORANGE,CIRCLE,FL,12/25/2011 18:15 +West Jordan,,LIGHT,UT,12/25/2011 18:45 +Knoxville,ORANGE,SPHERE,TN,12/25/2011 19:00 +Bradenton,ORANGE,TRIANGLE,FL,12/25/2011 19:30 +Holbrook,YELLOW,LIGHT,NY,12/25/2011 19:30 +Burlington,,TRIANGLE,WA,12/25/2011 19:55 +Charleston,,CIRCLE,WV,12/25/2011 20:00 +Hanover,ORANGE,CIRCLE,MA,12/25/2011 20:00 +Delray Beach,,FIREBALL,FL,12/25/2011 20:30 +Winter Garden,,TRIANGLE,FL,12/25/2011 20:30 +Cedar Rapids,,FIREBALL,IA,12/25/2011 21:00 +Helena,,FIREBALL,MT,12/25/2011 21:00 +Sierra Vista,,DISK,AZ,12/25/2011 21:05 +Sarasota,,TRIANGLE,FL,12/25/2011 21:15 +Hometown,,,IL,12/25/2011 21:58 +Hickory,,SPHERE,NC,12/25/2011 22:00 +Littleton,YELLOW,CYLINDER,CO,12/25/2011 22:00 +New London,RED,LIGHT,NH,12/25/2011 22:00 +Wantagh,ORANGE,FIREBALL,NY,12/25/2011 23:00 +Port St Lucie,ORANGE,OVAL,FL,12/25/2011 23:30 +The Villages,,LIGHT,FL,12/25/2011 23:50 +Junction City,RED,DIAMOND,KS,12/26/2011 0:00 +Brooksville,,VARIOUS,FL,12/26/2011 1:06 +Seattle,ORANGE,FIREBALL,WA,12/26/2011 2:17 +Albany,,OVAL,NY,12/26/2011 3:31 +Phoenix,BLUE,,AZ,12/26/2011 6:30 +Houston,,LIGHT,TX,12/26/2011 7:30 +Naples,BLUE,DIAMOND,FL,12/26/2011 19:35 +North Hollywood,RED,LIGHT,CA,12/26/2011 19:35 +Emmett,RED,LIGHT,ID,12/26/2011 19:45 +Maugansville,ORANGE,FORMATION,MD,12/26/2011 19:45 +Queensbury,RED,CIRCLE,NY,12/26/2011 20:25 +Buffalo,,FORMATION,NY,12/26/2011 21:15 +Morganton,RED ORANGE,CIRCLE,NC,12/26/2011 21:30 +Novi,,TRIANGLE,MI,12/26/2011 23:50 +South Lyon,RED,TRIANGLE,MI,12/26/2011 23:54 +Albuquerque,,CIRCLE,NM,12/27/2011 5:25 +Santa rosa,ORANGE,CIRCLE,CA,12/27/2011 12:53 +Imperial,RED ORANGE,FIREBALL,MO,12/27/2011 15:50 +Redondo Beach,RED,TRIANGLE,CA,12/27/2011 18:30 +Media,,FLASH,PA,12/27/2011 19:00 +Auburn,ORANGE,SPHERE,CA,12/27/2011 19:15 +Security,,CHEVRON,CO,12/27/2011 21:45 +Puyallup,,OTHER,WA,12/27/2011 22:00 +Edwards,,LIGHT,CO,12/27/2011 22:10 +Santa Barbara,,CYLINDER,CA,12/28/2011 12:31 +Beacon,,DIAMOND,NY,12/28/2011 15:00 +Herculaneum,,CYLINDER,MO,12/28/2011 16:00 +Chattanooga,YELLOW,LIGHT,TN,12/28/2011 17:50 +Corpus Christi,ORANGE,LIGHT,TX,12/28/2011 20:00 +Chattanooga,ORANGE,FIREBALL,TN,12/28/2011 21:00 +Lahaina,RED,CIRCLE,HI,12/28/2011 21:05 +Maricopa,,FIREBALL,AZ,12/28/2011 21:30 +Rocky Mount,ORANGE,FORMATION,NC,12/28/2011 22:30 +Topeka,,TRIANGLE,KS,12/28/2011 22:30 +Midlothian,,CIRCLE,VA,12/29/2011 6:30 +Austin,RED GREEN,FIREBALL,TX,12/29/2011 16:30 +Austin,,CIGAR,TX,12/29/2011 18:00 +Arabi,,TRIANGLE,LA,12/29/2011 18:03 +Studio City,ORANGE,TRIANGLE,CA,12/29/2011 18:25 +Jacksonville,,LIGHT,FL,12/29/2011 18:30 +Portsmouth,,LIGHT,NH,12/29/2011 19:30 +Cedar Falls,,LIGHT,IA,12/29/2011 20:00 +New Cumberland,RED BLUE,DISK,WV,12/29/2011 20:10 +Douglas,,LIGHT,MA,12/29/2011 21:06 +Arcadia,,LIGHT,CA,12/29/2011 21:15 +Los Angeles,,,CA,12/29/2011 21:30 +Anderson,,FIREBALL,CA,12/29/2011 22:00 +Moncks Corner,,LIGHT,SC,12/29/2011 22:58 +Leland,,SPHERE,NC,12/29/2011 23:00 +Morrisville,BLUE,LIGHT,NC,12/29/2011 23:00 +Corydon,RED ORANGE,TRIANGLE,IN,12/30/2011 0:20 +Temecula,,TRIANGLE,CA,12/30/2011 1:00 +North Pole,ORANGE YELLOW,TRIANGLE,AK,12/30/2011 4:47 +Zachary,,OTHER,LA,12/30/2011 18:18 +Augusta,RED,FORMATION,NJ,12/30/2011 19:00 +Orlando,,FIREBALL,FL,12/30/2011 19:00 +Morongo Valley,,FIREBALL,CA,12/30/2011 20:00 +Thompson's Station,,LIGHT,TN,12/30/2011 20:45 +Yankton,,TRIANGLE,SD,12/30/2011 21:15 +Fayetteville,,LIGHT,NC,12/30/2011 21:50 +San Francisco,,SPHERE,CA,12/30/2011 22:30 +Richmond,,CIGAR,KY,12/30/2011 23:00 +Marysville,ORANGE,LIGHT,WA,12/31/2011 1:10 +Spokane,,FIREBALL,WA,12/31/2011 17:05 +Shrewsbury,,CIRCLE,NJ,12/31/2011 17:15 +El Cerrito,,LIGHT,CA,12/31/2011 17:30 +Acme,ORANGE,SPHERE,MI,12/31/2011 18:30 +Arvada,RED,,CO,12/31/2011 18:30 +Bishopville,RED GREEN BLUE,DIAMOND,SC,12/31/2011 18:30 +El Cerrito,,TRIANGLE,CA,12/31/2011 18:30 +Marysville,ORANGE,FIREBALL,WA,12/31/2011 18:30 +Moore,,DIAMOND,SC,12/31/2011 18:45 +Auburn,ORANGE,SPHERE,CA,12/31/2011 19:10 +Kenosha,,FIREBALL,WI,12/31/2011 19:25 +Elgin,ORANGE,LIGHT,SC,12/31/2011 19:30 +Medford,,,OR,12/31/2011 19:30 +St. Charles,,LIGHT,MO,12/31/2011 19:31 +Hwy 58,ORANGE,CIRCLE,VA,12/31/2011 20:00 +Scottsdale,,DISK,AZ,12/31/2011 20:00 +Alton Bay,ORANGE,SPHERE,NH,12/31/2011 20:13 +Cedaredge,GREEN,SPHERE,CO,12/31/2011 20:15 +El Cajon,,CIRCLE,CA,12/31/2011 20:15 +Wellton,GREEN,FIREBALL,AZ,12/31/2011 20:15 +Cottonwood,YELLOW GREEN,FIREBALL,AZ,12/31/2011 20:16 +Albuquerque,,DIAMOND,NM,12/31/2011 20:20 +Sedona,,TRIANGLE,AZ,12/31/2011 20:23 +Dallas,,CIRCLE,TX,12/31/2011 20:30 +Flagstaff,,SPHERE,AZ,12/31/2011 20:30 +Lyman,GREEN,,UT,12/31/2011 20:30 +Birmingham,,CIRCLE,AL,12/31/2011 21:00 +Cowpens,,FIREBALL,SC,12/31/2011 21:00 +Avinger,RED,OVAL,TX,12/31/2011 21:30 +Queen Creek,GREEN,OVAL,AZ,12/31/2011 21:30 +San Francisco,,LIGHT,CA,12/31/2011 21:44 +Roseburg,,LIGHT,OR,12/31/2011 21:55 +Brusly,,TEARDROP,LA,12/31/2011 22:00 +Jensen Beach,RED,LIGHT,FL,12/31/2011 22:00 +Prescott,,LIGHT,AZ,12/31/2011 22:00 +Orlando,,LIGHT,FL,12/31/2011 22:30 +Eugene,ORANGE,FIREBALL,OR,12/31/2011 22:50 +Port Richey,ORANGE,FIREBALL,FL,12/31/2011 23:15 +Scarborough,ORANGE,LIGHT,ME,12/31/2011 23:15 +Port Saint Lucie,ORANGE,OVAL,FL,12/31/2011 23:30 +Wellington,,FORMATION,FL,12/31/2011 23:30 +Norwich,,TEARDROP,VT,12/31/2011 23:35 +Kennebunk,ORANGE,LIGHT,ME,12/31/2011 23:40 +Mooresville,,LIGHT,NC,12/31/2011 23:40 +Duck,RED,OVAL,NC,12/31/2011 23:45 +Gainesville,ORANGE,CIRCLE,FL,12/31/2011 23:45 +Sarasota,,OVAL,FL,12/31/2011 23:45 +Seattle,ORANGE,CIRCLE,WA,12/31/2011 23:52 +Pasadena,ORANGE,CIRCLE,CA,12/31/2011 23:53 +Venice,,OVAL,FL,12/31/2011 23:55 +Imperial,,OVAL,MO,12/31/2011 23:57 +Mesa,,CIRCLE,AZ,12/31/2011 23:58 +Anderson,,FORMATION,CA,12/31/2011 23:59 +Anderson,,LIGHT,CA,12/31/2011 23:59 +Bogalusa,,,LA,1/1/2012 0:00 +Eastgate,ORANGE,SPHERE,OH,1/1/2012 0:00 +Farmingdale,,CIRCLE,NY,1/1/2012 0:00 +High Ridge,ORANGE,OTHER,MO,1/1/2012 0:00 +Phoenix,,OVAL,AZ,1/1/2012 0:00 +Port Richey,,FIREBALL,FL,1/1/2012 0:00 +Saint Amant,,SPHERE,LA,1/1/2012 0:00 +Sykesville,ORANGE,CIRCLE,MD,1/1/2012 0:00 +Anchorage,,LIGHT,AK,1/1/2012 0:01 +Seattle,,OVAL,WA,1/1/2012 0:01 +Tulalip,RED YELLOW,OVAL,WA,1/1/2012 0:01 +Marietta,ORANGE,LIGHT,GA,1/1/2012 0:03 +Round Rock,RED,CIRCLE,TX,1/1/2012 0:04 +Bonita Springs,,FIREBALL,FL,1/1/2012 0:05 +La Mesa,RED ORANGE,FIREBALL,CA,1/1/2012 0:05 +La Mesa,ORANGE,OVAL,CA,1/1/2012 0:06 +Bakersfield,ORANGE,SPHERE,CA,1/1/2012 0:10 +La Crosse,ORANGE,CIRCLE,WI,1/1/2012 0:10 +Mena,RED,CIRCLE,AR,1/1/2012 0:10 +Port Charlotte,,VARIOUS,FL,1/1/2012 0:10 +Lake Stevens,,LIGHT,WA,1/1/2012 0:11 +Jacksonville Beach,RED,LIGHT,FL,1/1/2012 0:12 +Chicago,,CIRCLE,IL,1/1/2012 0:13 +Anderson,,DISK,CA,1/1/2012 0:15 +Burlington,ORANGE,LIGHT,VT,1/1/2012 0:15 +Burlington,ORANGE,LIGHT,VT,1/1/2012 0:15 +Gastonia,,TRIANGLE,NC,1/1/2012 0:15 +Layton,,,UT,1/1/2012 0:15 +Loveland,RED,LIGHT,OH,1/1/2012 0:15 +South Jordan,ORANGE,TRIANGLE,UT,1/1/2012 0:15 +Sykesville,RED,CIRCLE,MD,1/1/2012 0:15 +Somerville,YELLOW,OVAL,MA,1/1/2012 0:18 +Miami,,FLASH,FL,1/1/2012 0:25 +New York City,ORANGE,FIREBALL,NY,1/1/2012 0:25 +Bowie,,LIGHT,MD,1/1/2012 0:30 +Louisville,,FIREBALL,KY,1/1/2012 0:30 +New York City,,FIREBALL,NY,1/1/2012 0:38 +Tampa,,FIREBALL,FL,1/1/2012 0:45 +Belgrade,ORANGE,CIRCLE,MT,1/1/2012 1:00 +Kingston,,LIGHT,TN,1/1/2012 1:00 +Ponte Vedra,,,FL,1/1/2012 1:00 +Ponte Vedra Beach,,LIGHT,FL,1/1/2012 1:00 +Wellington,,FIREBALL,FL,1/1/2012 1:05 +Norfolk,,EGG,VA,1/1/2012 2:00 +Cape Canaveral,RED,SPHERE,FL,1/1/2012 2:45 +Henderson,,TRIANGLE,NV,1/1/2012 8:52 +Winder,,TRIANGLE,GA,1/1/2012 11:00 +Wapato,ORANGE,OTHER,WA,1/1/2012 12:00 +Elkton,,DIAMOND,MD,1/1/2012 12:03 +Salt Lake City,ORANGE,CIRCLE,UT,1/1/2012 12:05 +Yuba City,ORANGE,LIGHT,CA,1/1/2012 12:08 +Lynchburg,ORANGE,LIGHT,VA,1/1/2012 12:10 +Pittsburgh,RED BLUE,,PA,1/1/2012 12:15 +State College,RED,CIRCLE,PA,1/1/2012 12:20 +South San Francisco,,LIGHT,CA,1/1/2012 15:00 +Deming,,,NM,1/1/2012 17:43 +Redondo beach,,LIGHT,CA,1/1/2012 18:00 +Fuquay Varina,,CIRCLE,NC,1/1/2012 18:45 +Cocoa,,LIGHT,FL,1/1/2012 19:00 +West Sacramento,,CYLINDER,CA,1/1/2012 19:20 +Anchorage,,SPHERE,AK,1/1/2012 19:30 +Walla Walla,,SPHERE,WA,1/1/2012 19:30 +North Canton,,FIREBALL,OH,1/1/2012 19:50 +Louisa,,LIGHT,KY,1/1/2012 20:00 +Hicksville,,CYLINDER,NY,1/1/2012 21:00 +Hicksville,,LIGHT,NY,1/1/2012 21:00 +Folly Beach,RED,CYLINDER,SC,1/1/2012 22:01 +University Place,ORANGE,SPHERE,WA,1/1/2012 22:45 +Houston,,CIRCLE,TX,1/1/2012 23:00 +Glendale,,CIRCLE,CA,1/2/2012 8:04 +Saint Francis,,VARIOUS,MN,1/2/2012 17:00 +Colorado Springs,,LIGHT,CO,1/2/2012 17:50 +Oxnard,,RECTANGLE,CA,1/2/2012 18:00 +San Francisco,,,CA,1/2/2012 18:20 +Reno,,VARIOUS,NV,1/2/2012 18:30 +Torrance,,,CA,1/2/2012 19:00 +Kihei,,LIGHT,HI,1/2/2012 19:10 +Rincon,YELLOW,TRIANGLE,GA,1/2/2012 19:50 +Beardstown,RED,TRIANGLE,IL,1/2/2012 21:45 +Binghamton,,OVAL,NY,1/2/2012 22:00 +Hudson Falls,,SPHERE,NY,1/3/2012 0:09 +Eufaula,,LIGHT,AL,1/3/2012 0:19 +Doylestown,ORANGE,CIRCLE,PA,1/3/2012 1:00 +Levittown,,,NY,1/3/2012 1:00 +Binghamton,,FIREBALL,NY,1/3/2012 3:00 +Thetford,YELLOW,TRIANGLE,VT,1/3/2012 4:50 +Ashtabula,,RECTANGLE,OH,1/3/2012 7:00 +Homeland,,OVAL,CA,1/3/2012 10:00 +Clemmons,,CIRCLE,NC,1/3/2012 10:05 +Watsonville,,DISK,CA,1/3/2012 12:05 +Oswego,,SPHERE,IL,1/3/2012 15:25 +West Palm Beach,,CIRCLE,FL,1/3/2012 17:11 +Arnold,,CIRCLE,MO,1/3/2012 17:50 +Nowata,,LIGHT,OK,1/3/2012 17:50 +Meriden,,DIAMOND,CT,1/3/2012 18:30 +Marengo,,,IL,1/3/2012 19:06 +Lovington,RED,OTHER,NM,1/3/2012 19:15 +Buford,,,GA,1/3/2012 19:30 +La Jolla,,CIRCLE,CA,1/3/2012 19:40 +Weston,,FIREBALL,FL,1/3/2012 20:25 +Council Bluffs,,LIGHT,IA,1/3/2012 21:00 +Holts Summit,,DISK,MO,1/3/2012 21:00 +Chrisney,,OVAL,IN,1/3/2012 22:30 +Casa Grande,,SPHERE,AZ,1/3/2012 22:45 +Elizabeth City,,TRIANGLE,NC,1/3/2012 23:50 +Big Sur,RED,,CA,1/4/2012 5:00 +Shreveport,RED,OVAL,LA,1/4/2012 6:12 +Richfield,,,WI,1/4/2012 7:20 +Babson Park,YELLOW,CIRCLE,FL,1/4/2012 9:32 +Bonner,,,MT,1/4/2012 12:11 +McMinnville,,,TN,1/4/2012 17:44 +Moreno Valley,,LIGHT,CA,1/4/2012 18:00 +Arnold,,OTHER,MO,1/4/2012 18:30 +Janesville,RED BLUE,,CA,1/4/2012 18:45 +Selden,,DIAMOND,NY,1/4/2012 19:30 +DeLand,,OTHER,FL,1/4/2012 19:50 +Deland,,LIGHT,FL,1/4/2012 19:54 +Keene,BLUE,CONE,NH,1/4/2012 20:30 +Sandy,,LIGHT,UT,1/4/2012 20:35 +Hazel Green,,CIRCLE,WI,1/4/2012 21:15 +Lovingston,GREEN,LIGHT,VA,1/4/2012 22:20 +Wichita,,LIGHT,KS,1/4/2012 22:30 +Kent Island,,LIGHT,MD,1/5/2012 0:00 +Newtown,,LIGHT,CT,1/5/2012 3:30 +Maple City,YELLOW,EGG,MI,1/5/2012 7:30 +Wytheville,,TRIANGLE,VA,1/5/2012 9:55 +Portland,,FIREBALL,OR,1/5/2012 17:00 +Kennebunk,,SPHERE,ME,1/5/2012 18:00 +Rio Rancho,,,NM,1/5/2012 18:00 +Bend,BLUE,LIGHT,OR,1/5/2012 18:11 +Pelion,ORANGE,FIREBALL,SC,1/5/2012 18:30 +Rich Hill,,LIGHT,MO,1/5/2012 18:30 +Gardner,,LIGHT,IL,1/5/2012 20:00 +Plainfield,ORANGE,LIGHT,CT,1/5/2012 22:15 +Dexter,RED BLUE,CIRCLE,MO,1/6/2012 1:20 +Hickory,,CIGAR,NC,1/6/2012 7:30 +Brick,,FIREBALL,NJ,1/6/2012 8:25 +Tucson,,LIGHT,AZ,1/6/2012 9:05 +Tucson,,OVAL,AZ,1/6/2012 9:10 +Taylor,,FIREBALL,MI,1/6/2012 9:15 +Walden,,OTHER,NY,1/6/2012 15:45 +New York City,,FIREBALL,NY,1/6/2012 16:20 +Rydal,RED,TRIANGLE,PA,1/6/2012 17:00 +Seminole,,CIRCLE,OK,1/6/2012 17:00 +Saint George,,OTHER,UT,1/6/2012 17:10 +Norwood,,TRIANGLE,MA,1/6/2012 17:45 +Blanford,,DISK,IN,1/6/2012 18:00 +Homestead,,LIGHT,PA,1/6/2012 18:00 +Las Vegas,,LIGHT,NV,1/6/2012 18:00 +Weyers Cave,,TRIANGLE,VA,1/6/2012 18:00 +Millwood,ORANGE,DISK,GA,1/6/2012 19:30 +North Port,,CIRCLE,FL,1/6/2012 19:30 +Boonville,RED,,MO,1/6/2012 19:45 +Fruita,RED ORANGE YELLOW,LIGHT,CO,1/6/2012 19:45 +Clinton,,FLASH,MS,1/6/2012 20:15 +Gilmore City,,DISK,IA,1/6/2012 20:45 +Wake Forest,RED,LIGHT,NC,1/6/2012 21:05 +Charlotte,,LIGHT,NC,1/6/2012 21:15 +Williamstown,,LIGHT,NJ,1/6/2012 21:30 +Kalispell,,RECTANGLE,MT,1/6/2012 21:50 +Mesa,ORANGE,SPHERE,AZ,1/6/2012 21:50 +Vancouver,RED ORANGE YELLOW,FIREBALL,WA,1/6/2012 22:00 +Cottonwood,,LIGHT,AZ,1/6/2012 23:00 +Richmond,,,KY,1/6/2012 23:00 +Springfield,,RECTANGLE,MA,1/6/2012 23:00 +Independence,GREEN,SPHERE,MO,1/7/2012 3:30 +Mesa,,LIGHT,AZ,1/7/2012 5:45 +Frazer Township,,LIGHT,PA,1/7/2012 6:03 +Hagerstown,,TRIANGLE,MD,1/7/2012 6:30 +Belair,,TRIANGLE,MD,1/7/2012 7:00 +Ashville,,SPHERE,OH,1/7/2012 16:00 +Aventura,,FIREBALL,FL,1/7/2012 18:30 +Mountain View,,CHEVRON,CA,1/7/2012 19:30 +Southbury,,OTHER,CT,1/7/2012 20:29 +Lake Havasu City,,SPHERE,AZ,1/7/2012 20:30 +Parrish,ORANGE,LIGHT,FL,1/7/2012 20:30 +Sioux Falls,,FORMATION,SD,1/7/2012 22:30 +League City,,,TX,1/7/2012 23:20 +Lewes,,RECTANGLE,DE,1/7/2012 23:43 +Kihei,,FORMATION,HI,1/7/2012 23:45 +Muskogee,,,OK,1/8/2012 0:00 +Ocala,,CIRCLE,FL,1/8/2012 1:00 +Mena,,LIGHT,AR,1/8/2012 3:00 +Russellville,,CYLINDER,AR,1/8/2012 8:45 +Murfreesboro,,VARIOUS,TN,1/8/2012 16:13 +Westerly,RED,FIREBALL,RI,1/8/2012 17:27 +Cambridge,,TRIANGLE,MN,1/8/2012 18:00 +Troy,ORANGE,LIGHT,VA,1/8/2012 18:00 +Cocoa,ORANGE,CIRCLE,FL,1/8/2012 19:00 +Phoenixville,BLUE,CONE,PA,1/8/2012 19:00 +Wakefield,,TRIANGLE,NH,1/8/2012 19:00 +Parkville,,LIGHT,MO,1/8/2012 19:10 +Vacaville,ORANGE,SPHERE,CA,1/8/2012 19:15 +Brookfield,BLUE,LIGHT,CT,1/8/2012 20:00 +Papillion,,LIGHT,NE,1/8/2012 20:00 +Bridgeport,RED,FIREBALL,CT,1/8/2012 20:30 +Pulaski,,FIREBALL,TN,1/8/2012 20:30 +Bridgeport,,FIREBALL,CT,1/8/2012 20:45 +Newington,RED,OVAL,CT,1/8/2012 20:45 +Smithtown,GREEN,LIGHT,NY,1/8/2012 20:50 +Clio,,FORMATION,MI,1/8/2012 21:00 +Moretown,YELLOW,DIAMOND,VT,1/8/2012 21:30 +Brown Deer,GREEN,TRIANGLE,WI,1/8/2012 21:35 +Sacramento,,FIREBALL,CA,1/8/2012 21:40 +Porterville,,,CA,1/9/2012 0:00 +Atlantic City,GREEN,,NJ,1/9/2012 1:00 +Brookhaven,,CIRCLE,NY,1/9/2012 1:50 +Millbrook,,OVAL,NY,1/9/2012 5:45 +Brookfield,,TRIANGLE,CT,1/9/2012 12:00 +Pensacola,RED,DISK,FL,1/9/2012 18:00 +Ridgecrest,,,CA,1/9/2012 18:03 +Columbus,,TRIANGLE,OH,1/9/2012 18:30 +Southbury,,FIREBALL,CT,1/9/2012 18:45 +Hagerman,,LIGHT,ID,1/9/2012 19:00 +Odessa,ORANGE,SPHERE,WA,1/9/2012 20:00 +Albany,RED GREEN,SPHERE,GA,1/9/2012 20:45 +Temecula,,DISK,CA,1/9/2012 22:00 +Yountville,,CHEVRON,CA,1/9/2012 22:45 +Clinton,,,MS,1/9/2012 23:55 +Evansville,,LIGHT,IN,1/10/2012 3:30 +Pittsburgh,,OTHER,PA,1/10/2012 5:15 +Pawling,,TRIANGLE,NY,1/10/2012 12:46 +Mio,,CIRCLE,MI,1/10/2012 16:45 +Savage,ORANGE,OVAL,MD,1/10/2012 17:50 +Sacramento,,VARIOUS,CA,1/10/2012 18:25 +Coeur d'Alene,,SPHERE,ID,1/10/2012 19:00 +Ingleside,,SPHERE,IL,1/10/2012 19:22 +Granby,,TRIANGLE,MA,1/10/2012 19:30 +De Leon,RED,FORMATION,TX,1/10/2012 20:00 +Kingsville,,LIGHT,MO,1/10/2012 20:00 +Bon Air,,VARIOUS,VA,1/10/2012 20:21 +Marysville,RED,TRIANGLE,WA,1/10/2012 21:00 +West Chester,,LIGHT,PA,1/10/2012 21:00 +Cheshire,,CHEVRON,MA,1/10/2012 21:30 +Athens,,TRIANGLE,IL,1/10/2012 22:00 +Scotts Mills,,FIREBALL,OR,1/10/2012 22:00 +Ames,BLUE,FLASH,IA,1/10/2012 22:30 +Trumbull,,RECTANGLE,CT,1/11/2012 5:30 +Corona,,FORMATION,CA,1/11/2012 11:15 +San Antonio,,DISK,TX,1/11/2012 13:15 +Collinsville,RED BLUE,,IL,1/11/2012 17:01 +Marysville,ORANGE,,WA,1/11/2012 17:20 +Wallingford,,LIGHT,CT,1/11/2012 17:30 +Hershey,,OVAL,PA,1/11/2012 17:36 +Russell,ORANGE,FORMATION,NY,1/11/2012 18:25 +Saranac Lake,,FORMATION,NY,1/11/2012 18:30 +Mobile,,LIGHT,AL,1/11/2012 18:35 +Porterville,ORANGE,,CA,1/11/2012 18:45 +Sacramento,,DISK,CA,1/11/2012 19:00 +St. Charles,,FIREBALL,MO,1/11/2012 19:45 +Desert Hot Springs,,TRIANGLE,CA,1/11/2012 20:00 +Antioch,RED ORANGE,CIRCLE,CA,1/11/2012 20:11 +N FL; S GA,,LIGHT,GA,1/11/2012 21:00 +Dallas,,OVAL,TX,1/11/2012 21:30 +Fort Morgan,RED,LIGHT,CO,1/11/2012 21:30 +Gulf of Mexico,,FORMATION,LA,1/11/2012 21:45 +Hogansburg,ORANGE,FIREBALL,NY,1/11/2012 22:00 +Hopkinton,,FIREBALL,NY,1/11/2012 22:00 +West Bangor,ORANGE,,NY,1/11/2012 22:00 +Walla Walla,,FORMATION,WA,1/11/2012 22:30 +Ashburn,,DIAMOND,GA,1/11/2012 22:40 +Lacey,,LIGHT,WA,1/11/2012 23:25 +Everywhere,,OTHER,CA,1/12/2012 0:00 +New Smyrna,,CYLINDER,FL,1/12/2012 0:04 +Ridgeland,,CIGAR,SC,1/12/2012 1:23 +Texas City,,SPHERE,IL,1/12/2012 1:26 +Kapaa,,OVAL,HI,1/12/2012 1:30 +San Tan Valley,,OTHER,AZ,1/12/2012 2:00 +Seattle,,CIRCLE,WA,1/12/2012 5:00 +Miami,,EGG,FL,1/12/2012 15:00 +Ventura,,LIGHT,CA,1/12/2012 18:00 +League City,,SPHERE,TX,1/12/2012 19:00 +Saratoga,,OTHER,CA,1/12/2012 20:45 +Rosemount,,TRIANGLE,MN,1/12/2012 21:00 +Kenosha,,FLASH,WI,1/12/2012 22:00 +San Francisco,ORANGE,VARIOUS,CA,1/12/2012 22:30 +Caruthersville,RED ORANGE YELLOW,,MO,1/12/2012 23:20 +Camano Island,,,WA,1/13/2012 2:15 +Phoenix,,VARIOUS,AZ,1/13/2012 7:00 +Eureka,ORANGE,VARIOUS,CA,1/13/2012 9:43 +Orlando,,SPHERE,FL,1/13/2012 11:00 +San Diego,,,CA,1/13/2012 16:30 +Fullerton,,EGG,CA,1/13/2012 17:00 +Willard,RED ORANGE,OVAL,NC,1/13/2012 18:20 +Malone,,,NY,1/13/2012 18:30 +Austin,,DIAMOND,TX,1/13/2012 19:40 +Houston,,SPHERE,TX,1/13/2012 20:35 +Washoe,,FORMATION,NV,1/13/2012 22:30 +Oakley,ORANGE,FIREBALL,CA,1/13/2012 23:04 +Auror,,CHEVRON,CO,1/13/2012 23:20 +Ocean View,,FORMATION,DE,1/13/2012 23:29 +Bonita,,LIGHT,CA,1/14/2012 2:58 +Quebeck,,TRIANGLE,TN,1/14/2012 11:50 +Manchester,,CIGAR,TN,1/14/2012 15:41 +Laguna Niguel,,CIRCLE,CA,1/14/2012 17:50 +Underhill,ORANGE,LIGHT,VT,1/14/2012 18:00 +Fort Mill,,LIGHT,SC,1/14/2012 18:20 +Medicine Park,,CIRCLE,OK,1/14/2012 18:30 +Spartanburg,,LIGHT,SC,1/14/2012 19:00 +West Palm Beach,,OVAL,FL,1/14/2012 19:00 +Dallas,ORANGE,LIGHT,TX,1/14/2012 20:29 +Fort Cobb,,CIGAR,OK,1/14/2012 21:00 +Bremerton,,CIRCLE,WA,1/14/2012 21:05 +Darien,,FIREBALL,CT,1/14/2012 21:15 +Woodstock,,LIGHT,GA,1/14/2012 21:45 +Prescott Valley,,LIGHT,AZ,1/14/2012 23:30 +San Angelo,,FLASH,TX,1/15/2012 3:59 +Orlando,,LIGHT,FL,1/15/2012 4:00 +Anoka,,DISK,MN,1/15/2012 8:30 +Smithfield,,TRIANGLE,RI,1/15/2012 17:00 +Mesa,,RECTANGLE,AZ,1/15/2012 18:00 +Modesto,,FLASH,CA,1/15/2012 18:00 +Mesa,ORANGE,OVAL,AZ,1/15/2012 18:20 +Astoria,YELLOW,OTHER,OR,1/15/2012 18:40 +Mahopac,,LIGHT,NY,1/15/2012 19:00 +Westchester,,RECTANGLE,IL,1/15/2012 19:20 +Simpsonville,GREEN,TRIANGLE,SC,1/15/2012 20:20 +Brooksville,,FIREBALL,FL,1/15/2012 20:30 +Corvallis,RED,LIGHT,OR,1/15/2012 20:35 +Garfield,GREEN,VARIOUS,AR,1/15/2012 21:00 +Murphysboro,,LIGHT,IL,1/15/2012 21:24 +Molalla,,SPHERE,OR,1/15/2012 22:18 +Allentown,,TRIANGLE,PA,1/15/2012 23:20 +Gilbert,,SPHERE,AZ,1/16/2012 0:00 +Hemlock,,CIRCLE,OH,1/16/2012 0:00 +Porterville,,,CA,1/16/2012 0:00 +"Wildlife Refuge, Medicine Park, Ft. Sill",,OVAL,OK,1/16/2012 2:00 +Bellingham,,LIGHT,WA,1/16/2012 3:30 +Graceville,RED,TRIANGLE,FL,1/16/2012 7:30 +Hamden,ORANGE YELLOW,FIREBALL,CT,1/16/2012 20:15 +Ohio,,TRIANGLE,OH,1/17/2012 1:00 +Brookings,ORANGE,LIGHT,OR,1/17/2012 5:36 +Tomaball,,OVAL,TX,1/17/2012 6:25 +San Diego,ORANGE,FIREBALL,CA,1/17/2012 13:20 +Ely,,CHEVRON,MN,1/17/2012 17:35 +Lutsen,,RECTANGLE,MN,1/17/2012 18:00 +Milford,,OTHER,OH,1/17/2012 18:00 +Redding,RED,FIREBALL,CA,1/17/2012 18:45 +Laredo,,,TX,1/17/2012 18:57 +Berlin,,LIGHT,NH,1/17/2012 19:45 +Auberry,,FIREBALL,CA,1/17/2012 21:08 +West Chester,,TRIANGLE,PA,1/17/2012 23:00 +Saugus,,,CA,1/18/2012 7:43 +Brasher Falls,,LIGHT,NY,1/18/2012 17:00 +Lawrenceville,RED BLUE,OTHER,GA,1/18/2012 18:00 +Valley Grande,RED GREEN,TRIANGLE,AL,1/18/2012 18:00 +Malone,,LIGHT,NY,1/18/2012 18:30 +Fort Washington,,,PA,1/18/2012 18:45 +Fort Washington,,,PA,1/18/2012 18:45 +Preston,,LIGHT,CT,1/18/2012 19:00 +Sachse,,LIGHT,TX,1/18/2012 19:15 +Little River,,TRIANGLE,SC,1/18/2012 19:45 +North Myrtle Beach,,FIREBALL,SC,1/18/2012 19:50 +St. Stephen,,FLASH,SC,1/18/2012 20:15 +Ceres,,FIREBALL,CA,1/18/2012 21:04 +Tucson,,LIGHT,AZ,1/18/2012 21:30 +Lincoln,,LIGHT,DE,1/18/2012 22:00 +West Valley City,,,UT,1/18/2012 22:00 +West Valley City,,,UT,1/18/2012 22:00 +Augusta,,TRIANGLE,GA,1/18/2012 23:05 +Estill Springs,,CIRCLE,TN,1/18/2012 23:59 +Lithia,ORANGE,,FL,1/19/2012 0:00 +Powhatan,,LIGHT,VA,1/19/2012 6:30 +Yuma,,OTHER,AZ,1/19/2012 6:45 +Rockford,,OVAL,TN,1/19/2012 12:00 +no data,,OVAL,NY,1/19/2012 18:00 +Barbourville,,CIRCLE,KY,1/19/2012 18:45 +Callands,RED,OTHER,VA,1/19/2012 19:00 +Macon,RED BLUE,RECTANGLE,GA,1/19/2012 19:00 +Orlando,ORANGE,,FL,1/19/2012 19:00 +Encinitas,RED GREEN,,CA,1/19/2012 19:20 +Lansdale,,LIGHT,PA,1/19/2012 19:25 +Woodstock,,FIREBALL,VT,1/19/2012 19:30 +Christiansburg,,FIREBALL,VA,1/19/2012 19:35 +Winter Park,YELLOW,FIREBALL,FL,1/19/2012 19:40 +Thonotosassa,,,FL,1/19/2012 19:45 +Indialantic,RED,LIGHT,FL,1/19/2012 20:10 +Cape Coral,RED BLUE,DISK,FL,1/19/2012 20:45 +New Port Richey,ORANGE,LIGHT,FL,1/19/2012 21:46 +Atkins,,TRIANGLE,AR,1/19/2012 22:00 +Miami Beach,,FIREBALL,FL,1/19/2012 22:10 +St. Stephen,GREEN,FIREBALL,SC,1/19/2012 23:06 +Kankakee,,FIREBALL,IL,1/20/2012 0:30 +Hunter,,RECTANGLE,NY,1/20/2012 5:00 +Wilmington,,LIGHT,DE,1/20/2012 5:15 +Tonawanda,,OTHER,NY,1/20/2012 5:54 +Oakland Park,,OVAL,FL,1/20/2012 18:30 +Hanalei Bay,ORANGE,LIGHT,HI,1/20/2012 19:15 +Daytona Beach Shores,,,FL,1/20/2012 19:20 +Sarasota,,LIGHT,FL,1/20/2012 19:30 +Morganton,BLUE,TRIANGLE,NC,1/20/2012 19:42 +Manchester,,LIGHT,NH,1/20/2012 20:00 +Daytona Beach,RED,OVAL,FL,1/20/2012 20:30 +Phoenix,,,AZ,1/20/2012 20:35 +Martins Creek,,LIGHT,PA,1/20/2012 20:55 +Rising Fawn,,SPHERE,GA,1/20/2012 21:00 +Silver City,,VARIOUS,NM,1/20/2012 22:20 +Chandler,,CIRCLE,AZ,1/20/2012 22:30 +Akron,RED,CHEVRON,OH,1/20/2012 23:00 +Hopewell,,,VA,1/20/2012 23:00 +Long Beach,,SPHERE,CA,1/21/2012 0:30 +Durango,,TRIANGLE,CO,1/21/2012 6:36 +San Francisco,,LIGHT,CA,1/21/2012 18:57 +Spring Hill,,CIRCLE,FL,1/21/2012 19:15 +Orlando,,FIREBALL,FL,1/21/2012 19:30 +Eloy,,OVAL,AZ,1/21/2012 21:00 +Madisonville,YELLOW BLUE,,TN,1/21/2012 21:00 +Manchester,,CIRCLE,NH,1/21/2012 21:00 +Chelan,,DISK,WA,1/21/2012 21:35 +Jacksonville,RED,FIREBALL,FL,1/21/2012 21:48 +Parkland,,SPHERE,WA,1/21/2012 22:45 +Poinciana,,FORMATION,FL,1/22/2012 18:04 +Orlando,,OVAL,FL,1/22/2012 18:10 +Lubbock,,CIRCLE,TX,1/22/2012 19:15 +Ocala,RED,CIRCLE,FL,1/22/2012 19:30 +Johnson City,,CIRCLE,TN,1/22/2012 20:10 +Anchorage,ORANGE,,AK,1/22/2012 20:15 +Cincinnati,RED,FIREBALL,OH,1/22/2012 23:10 +New York City,ORANGE,LIGHT,NY,1/22/2012 23:10 +West Virginia,,OTHER,VA,1/23/2012 3:00 +Bath,,LIGHT,NY,1/23/2012 7:50 +Hilo,,OVAL,HI,1/23/2012 19:15 +Anchorage,,SPHERE,AK,1/23/2012 19:30 +Dallas,,FIREBALL,TX,1/23/2012 19:30 +Helotes,,TRIANGLE,TX,1/23/2012 20:00 +Oakland Park,,,FL,1/23/2012 20:35 +Simsboro,,,LA,1/24/2012 3:10 +Chesapeake,,,VA,1/24/2012 18:20 +Brick,ORANGE,FIREBALL,NJ,1/24/2012 19:00 +Longs,,TRIANGLE,SC,1/24/2012 19:00 +Augusta,,TRIANGLE,GA,1/24/2012 19:18 +Phoenix,,LIGHT,AZ,1/24/2012 21:00 +Mission Viejo,YELLOW,CIRCLE,CA,1/24/2012 21:07 +Phoenix,BLUE,LIGHT,AZ,1/24/2012 21:30 +Mount Vernon,,FLASH,WA,1/24/2012 22:30 +Kenosha,GREEN,SPHERE,WI,1/24/2012 23:30 +St. Augustine,,LIGHT,FL,1/24/2012 23:45 +Chiefland,,SPHERE,FL,1/24/2012 23:55 +Brooklet,,,GA,1/25/2012 1:45 +Tamarac,,SPHERE,FL,1/25/2012 6:45 +Boardman,,FIREBALL,OH,1/25/2012 9:10 +San Francisco,,CIGAR,CA,1/25/2012 13:50 +Avon Park,,FIREBALL,FL,1/25/2012 16:30 +Colorado Springs,BLUE,CIGAR,CO,1/25/2012 18:22 +Murphysboro,,CIRCLE,IL,1/25/2012 18:22 +Henderson,,TRIANGLE,NV,1/25/2012 19:00 +Lake Oswego,YELLOW,LIGHT,OR,1/25/2012 19:05 +Sterling,RED ORANGE,FORMATION,IL,1/25/2012 19:20 +Wichita,RED,FORMATION,KS,1/25/2012 20:30 +Sugar Grove,RED,,VA,1/25/2012 20:45 +Antioch,,LIGHT,CA,1/25/2012 21:00 +Antioch,,LIGHT,CA,1/25/2012 21:00 +Antioch,,LIGHT,CA,1/25/2012 21:00 +Martinsville,,OTHER,IN,1/25/2012 23:00 +Fall City,,OVAL,WA,1/25/2012 23:30 +Cary,,,NC,1/26/2012 0:00 +Gilbert,,RECTANGLE,AZ,1/26/2012 10:25 +Lone Pine,,TRIANGLE,CA,1/26/2012 11:30 +Ozark,,FIREBALL,MO,1/26/2012 19:00 +Victor,,,CO,1/26/2012 19:00 +Redding,RED BLUE,OVAL,CA,1/26/2012 19:20 +Beaumont,,TRIANGLE,TX,1/26/2012 22:15 +Conroe,RED,CIRCLE,TX,1/26/2012 22:30 +Lackawanna,,,NY,1/27/2012 1:30 +Hayward,,DIAMOND,CA,1/27/2012 1:45 +Kansas City,,OTHER,KS,1/27/2012 2:00 +Brady,,FIREBALL,WA,1/27/2012 18:45 +Boring,,OVAL,OR,1/27/2012 19:20 +The Dalles,,,OR,1/27/2012 19:45 +Estacada,ORANGE YELLOW,OVAL,OR,1/27/2012 19:55 +Lufkin,,LIGHT,TX,1/27/2012 20:00 +Medina,RED,SPHERE,TN,1/27/2012 20:30 +American Fork,RED BLUE,CIRCLE,UT,1/27/2012 20:45 +American Fork,,DISK,UT,1/27/2012 20:45 +Lehi,RED BLUE,DISK,UT,1/27/2012 21:10 +Bremerton,RED,TRIANGLE,WA,1/27/2012 21:40 +Lake Mary,,FIREBALL,FL,1/27/2012 21:50 +Gloucester,,,VA,1/27/2012 22:00 +Gunter,,,TX,1/28/2012 15:30 +Conestoga,,TEARDROP,PA,1/28/2012 17:00 +Lansdale,RED,OVAL,PA,1/28/2012 17:00 +Tucson,,CIRCLE,AZ,1/28/2012 18:40 +Port St John,,EGG,FL,1/28/2012 19:15 +Lodi,,LIGHT,CA,1/28/2012 20:00 +Knife River,,SPHERE,MN,1/28/2012 20:05 +Wrens,,DIAMOND,GA,1/28/2012 20:50 +Bristol,GREEN,TRIANGLE,TN,1/28/2012 21:00 +Norman,RED,CIRCLE,OK,1/28/2012 21:00 +Gorham,,DISK,ME,1/28/2012 22:00 +Lafayette,,TEARDROP,NY,1/28/2012 22:00 +Middleton,RED,OTHER,ID,1/28/2012 22:00 +Sacramento,RED,CIRCLE,CA,1/28/2012 22:00 +Rexburg,,,ID,1/28/2012 22:15 +St. Louis,ORANGE,TRIANGLE,MO,1/28/2012 22:30 +Starke,ORANGE,LIGHT,FL,1/28/2012 22:35 +Occidental,,LIGHT,CA,1/28/2012 23:00 +St. Augustine,,TRIANGLE,FL,1/28/2012 23:00 +Lacey,,FLASH,WA,1/29/2012 1:30 +Hurricane,,,UT,1/29/2012 19:25 +Quinlan,,FORMATION,TX,1/29/2012 20:00 +Greenfield,,,MA,1/29/2012 20:30 +Fort Stockton,,FLASH,TX,1/29/2012 21:15 +Kenosha,BLUE,,WI,1/29/2012 22:00 +Racine,,TRIANGLE,WI,1/29/2012 22:03 +Pleasant Prairie,BLUE,TRIANGLE,WI,1/29/2012 22:05 +Kenosha,BLUE,TRIANGLE,WI,1/29/2012 22:08 +Norman,,,OK,1/29/2012 23:30 +Wells,ORANGE,FIREBALL,ME,1/29/2012 23:30 +Albion,,,MI,1/29/2012 23:59 +cl,ORANGE,OVAL,FL,1/30/2012 0:00 +Calabash,,CIRCLE,NC,1/30/2012 5:00 +Lafayette,,LIGHT,OR,1/30/2012 5:30 +Turlock,,TRIANGLE,CA,1/30/2012 6:01 +Winthrop Harbor,,FORMATION,IL,1/30/2012 11:30 +Las Vegas,,RECTANGLE,NV,1/30/2012 12:00 +Cedarburg,,LIGHT,WI,1/30/2012 18:20 +Browning,,LIGHT,MT,1/30/2012 19:05 +San Jose,,LIGHT,CA,1/30/2012 19:40 +Wallingford,BLUE,LIGHT,CT,1/30/2012 19:41 +Clearwater,,SPHERE,FL,1/30/2012 20:00 +Gorham,ORANGE,DISK,ME,1/30/2012 20:00 +Waltham,RED,TRIANGLE,MA,1/30/2012 20:55 +Winter Park,ORANGE,FIREBALL,FL,1/30/2012 22:06 +Falls Church,,,VA,1/30/2012 22:30 +Minneapolis,,DISK,MN,1/31/2012 11:42 +Phoenix,,FORMATION,AZ,1/31/2012 15:30 +Ronkonkoma,,FLASH,NY,1/31/2012 17:55 +Mastic,,CIRCLE,NY,1/31/2012 18:25 +Lincoln City,,FIREBALL,OR,1/31/2012 20:00 +Milford,,,CT,1/31/2012 23:15 +Burtonsville,ORANGE,OVAL,MD,2/1/2012 1:30 +Romeoville,RED,VARIOUS,IL,2/1/2012 2:00 +Brattleboro,,CIRCLE,VT,2/1/2012 4:45 +Ocala,,LIGHT,FL,2/1/2012 7:30 +Las Vegas,,RECTANGLE,NV,2/1/2012 10:42 +Arnold,ORANGE,TRIANGLE,MO,2/1/2012 11:00 +Seattle,,,WA,2/1/2012 11:45 +Penfield,,CYLINDER,PA,2/1/2012 14:00 +Smackover,,SPHERE,AR,2/1/2012 14:30 +El Paso,,CIRCLE,TX,2/1/2012 15:00 +Silver Springs,,,FL,2/1/2012 15:00 +Spring Grove,,VARIOUS,VA,2/1/2012 17:45 +Groveton,ORANGE GREEN,CIRCLE,TX,2/1/2012 17:56 +Santa Rosa,,TEARDROP,CA,2/1/2012 18:23 +Ocala,,CIRCLE,FL,2/1/2012 19:30 +Cedar Park,,FIREBALL,TX,2/1/2012 19:55 +Austin,GREEN,FIREBALL,TX,2/1/2012 20:00 +Chimacum,ORANGE,FIREBALL,WA,2/1/2012 20:00 +Tomball,GREEN,CIRCLE,TX,2/1/2012 20:00 +Ben Wheeler,,SPHERE,TX,2/1/2012 20:05 +Arlington,,LIGHT,TX,2/1/2012 20:20 +Somersworth,RED,LIGHT,NH,2/1/2012 20:28 +Terre Haute,,,IN,2/1/2012 20:45 +Colton,,FIREBALL,CA,2/1/2012 21:00 +Ocean City,,FORMATION,MD,2/1/2012 21:30 +Lee's Summit,ORANGE,,MO,2/1/2012 21:36 +Hurst,,CIRCLE,TX,2/1/2012 22:15 +Eugene,,,OR,2/1/2012 23:00 +Fullerton,,FIREBALL,CA,2/1/2012 23:40 +Orem,GREEN,LIGHT,UT,2/2/2012 0:06 +Rotterdam,,TRIANGLE,NY,2/2/2012 5:35 +Dodge City,,OTHER,KS,2/2/2012 13:00 +Port Angeles,,DISK,WA,2/2/2012 15:00 +Ft. Worth,BLUE,TRIANGLE,TX,2/2/2012 19:00 +Spanaway,,VARIOUS,WA,2/2/2012 19:00 +Henderson,ORANGE,,NY,2/2/2012 20:15 +Prospect,GREEN,VARIOUS,OR,2/2/2012 21:00 +Chattaroy,,CIRCLE,WA,2/2/2012 21:38 +Hawthorne,,CIGAR,NY,2/3/2012 0:45 +Kenton,,LIGHT,OH,2/3/2012 1:45 +Weed,,LIGHT,CA,2/3/2012 5:30 +Lake Worth,,FIREBALL,FL,2/3/2012 18:00 +Davis,,LIGHT,CA,2/3/2012 19:00 +Vida,RED GREEN BLUE,OTHER,OR,2/3/2012 19:00 +Federal Way,,LIGHT,WA,2/3/2012 20:00 +King William,,TRIANGLE,VA,2/3/2012 20:00 +Merlin,RED,CIRCLE,OR,2/3/2012 20:00 +Phoenix,,SPHERE,AZ,2/3/2012 20:00 +Chattaroy,RED YELLOW BLUE,CIRCLE,WA,2/3/2012 20:22 +Huntington,,OVAL,WV,2/3/2012 20:22 +Marshall,,LIGHT,NC,2/3/2012 21:30 +Sutton,,CIRCLE,WV,2/3/2012 22:15 +Spokane,BLUE,DIAMOND,WA,2/4/2012 0:27 +Tullahoma,,SPHERE,TN,2/4/2012 1:30 +Marysville,,LIGHT,WA,2/4/2012 2:20 +Tecumseh,,TRIANGLE,NE,2/4/2012 7:30 +Huntington Beach,,OVAL,CA,2/4/2012 11:00 +Mount Pleasant,,LIGHT,MI,2/4/2012 15:10 +Greenwich,,OTHER,NY,2/4/2012 17:00 +Hibbing,,LIGHT,MN,2/4/2012 17:30 +West Yarmouth,ORANGE,SPHERE,MA,2/4/2012 17:40 +Novato,,DISK,CA,2/4/2012 17:48 +Prescott Valley,,CYLINDER,AZ,2/4/2012 18:15 +Lakeside,,LIGHT,CA,2/4/2012 19:00 +Vida,RED GREEN BLUE,OTHER,OR,2/4/2012 19:00 +Weston,,CHEVRON,FL,2/4/2012 20:05 +Oxford,ORANGE,RECTANGLE,MI,2/4/2012 20:15 +Atlanta,,OTHER,GA,2/4/2012 20:45 +Cortland,RED,FIREBALL,OH,2/4/2012 21:00 +Louisville,,SPHERE,KY,2/4/2012 21:39 +Annandale,ORANGE,FIREBALL,NJ,2/4/2012 21:55 +San Rafael,GREEN BLUE,LIGHT,CA,2/4/2012 22:00 +Plainville,,FIREBALL,CT,2/4/2012 22:28 +Tempe,,FIREBALL,AZ,2/4/2012 23:15 +Bellflower,,TRIANGLE,CA,2/5/2012 0:22 +Grove City,,LIGHT,OH,2/5/2012 1:00 +Bakersfield,,LIGHT,CA,2/5/2012 2:10 +Salt Lake City,RED BLUE,TRIANGLE,UT,2/5/2012 2:30 +Wewoka,BLUE,TRIANGLE,OK,2/5/2012 4:00 +La-Center,,DISK,WA,2/5/2012 10:00 +Fountain Valley,,FORMATION,CA,2/5/2012 10:40 +Warwick,,OTHER,RI,2/5/2012 14:00 +Bellefonte,ORANGE,TEARDROP,DE,2/5/2012 18:20 +Niverville,,LIGHT,NY,2/5/2012 18:30 +Atlanta,,LIGHT,GA,2/5/2012 20:00 +South Williamsport,,LIGHT,PA,2/5/2012 20:10 +Sayre,,LIGHT,NY,2/5/2012 20:35 +Lubbock,,FIREBALL,TX,2/5/2012 21:10 +Lubbock,,SPHERE,TX,2/5/2012 21:10 +Overland Park,RED,LIGHT,KS,2/5/2012 21:15 +Ballwin,,LIGHT,MO,2/5/2012 21:30 +Patchogue,RED,LIGHT,NY,2/5/2012 22:00 +Normal,,,IL,2/5/2012 23:20 +Enterprise,RED BLUE,OVAL,WV,2/6/2012 1:00 +Maineville,,TRIANGLE,OH,2/6/2012 1:30 +Emmett,,TRIANGLE,ID,2/6/2012 3:00 +Rio Rancho,,CIRCLE,NM,2/6/2012 5:00 +Tucson,,RECTANGLE,AZ,2/6/2012 6:00 +Hamburg,,SPHERE,NY,2/6/2012 6:40 +Bucyrus,,LIGHT,OH,2/6/2012 8:40 +Brick,,RECTANGLE,NJ,2/6/2012 12:15 +Nibley,,,UT,2/6/2012 16:30 +Dennis,,CHEVRON,MA,2/6/2012 16:50 +Bright In,,RECTANGLE,IN,2/6/2012 19:00 +Dexter,,LIGHT,MI,2/6/2012 19:00 +Grove City,,FORMATION,OH,2/6/2012 19:00 +Tonawanda,,CIRCLE,NY,2/6/2012 19:00 +Trexlertown,YELLOW,LIGHT,PA,2/6/2012 19:25 +Toledo,,LIGHT,OH,2/6/2012 19:42 +Layton,RED ORANGE,LIGHT,UT,2/6/2012 19:45 +Lemitar,,LIGHT,NM,2/6/2012 20:00 +Fort Irwin,ORANGE,TRIANGLE,CA,2/6/2012 20:52 +New York City,,LIGHT,NY,2/6/2012 21:00 +Yakima,ORANGE,FIREBALL,WA,2/6/2012 21:00 +Santa Maria,ORANGE,FIREBALL,CA,2/6/2012 21:15 +Portland,,CIRCLE,OR,2/7/2012 0:00 +Las Vegas,RED,CIRCLE,NV,2/7/2012 7:00 +Plantation,,CHEVRON,FL,2/7/2012 16:00 +Edison,,CIRCLE,NJ,2/7/2012 17:00 +Rancho Mirage,,CIRCLE,CA,2/7/2012 18:40 +Morganville,,CYLINDER,NJ,2/7/2012 19:30 +Good Year,,LIGHT,AZ,2/7/2012 19:37 +Adamsville,RED,SPHERE,AL,2/7/2012 20:55 +Richmond,,LIGHT,VA,2/8/2012 1:50 +Salem,,TEARDROP,OR,2/8/2012 14:00 +Hoskins,,LIGHT,IL,2/8/2012 17:50 +Naples,,,FL,2/8/2012 18:30 +Tonawanda,,,NY,2/8/2012 18:30 +Florence,,,MT,2/8/2012 19:00 +Palm Springs,,,CA,2/8/2012 19:02 +Madison,RED,TRIANGLE,WI,2/8/2012 19:15 +Cuyler,ORANGE,,NY,2/8/2012 19:30 +Cuyler,ORANGE,,NY,2/8/2012 19:30 +Seattle,ORANGE,,WA,2/8/2012 19:45 +Marana,ORANGE,LIGHT,AZ,2/8/2012 20:00 +Henderson,,FORMATION,NV,2/8/2012 20:30 +Marco Island,ORANGE,SPHERE,FL,2/8/2012 20:55 +Sacramento,ORANGE,FIREBALL,CA,2/8/2012 21:00 +Bothell,,CIRCLE,WA,2/8/2012 21:34 +Puyallup,,CONE,WA,2/8/2012 22:00 +Rochester Hills,,TRIANGLE,MI,2/9/2012 0:47 +Monroe,,,MI,2/9/2012 2:00 +Bakersfield,RED,LIGHT,CA,2/9/2012 20:00 +Madison,,LIGHT,AL,2/9/2012 20:00 +Tucson,ORANGE YELLOW,CIRCLE,AZ,2/9/2012 20:15 +Troy,,LIGHT,MI,2/9/2012 21:30 +Hartville,,TRIANGLE,OH,2/9/2012 22:00 +Rochester Hills,,SPHERE,MI,2/9/2012 22:00 +Taos,RED,OTHER,NM,2/9/2012 22:00 +Lakewood,,,WA,2/10/2012 3:15 +West Palm Beach,,TRIANGLE,FL,2/10/2012 12:00 +Elizabeth Township,,TRIANGLE,PA,2/10/2012 17:00 +Haines,,DIAMOND,AK,2/10/2012 18:00 +Riverview,ORANGE,LIGHT,FL,2/10/2012 18:00 +San Jose,,LIGHT,CA,2/10/2012 19:00 +Alpine,,LIGHT,TX,2/10/2012 20:00 +St. Petersburg,,OVAL,FL,2/10/2012 20:30 +Los Banos,,LIGHT,CA,2/10/2012 20:40 +Saugerties,,TRIANGLE,NY,2/10/2012 21:00 +San Diego,,CIRCLE,CA,2/11/2012 18:00 +Carpentersville,,TRIANGLE,IL,2/11/2012 18:15 +Fairbanks,ORANGE,LIGHT,AK,2/11/2012 19:10 +Fairdealing,,,KY,2/11/2012 19:30 +Jensen Beach,ORANGE,CIRCLE,FL,2/11/2012 19:30 +Rochester,ORANGE,LIGHT,NH,2/11/2012 19:30 +Portsmouth,,LIGHT,NH,2/11/2012 20:30 +Elkhorn,BLUE,OTHER,NE,2/11/2012 23:10 +Saltville,,SPHERE,VA,2/12/2012 1:45 +Florence,GREEN,FIREBALL,SC,2/12/2012 1:47 +Metlakatla,,DISK,AK,2/12/2012 4:30 +West Bend,,,WI,2/12/2012 6:21 +Coatesville,,LIGHT,PA,2/12/2012 8:00 +White Bear Lake,,LIGHT,MN,2/12/2012 10:30 +Norcross,,LIGHT,GA,2/12/2012 19:00 +San Antonio,,FIREBALL,TX,2/12/2012 19:00 +Johnson City,,LIGHT,TN,2/12/2012 19:14 +Johnson City,,LIGHT,TN,2/12/2012 19:14 +Naples,ORANGE,LIGHT,FL,2/12/2012 20:30 +Glenarm,,DIAMOND,IL,2/12/2012 20:55 +DeWitt,,FIREBALL,MI,2/12/2012 21:00 +Eufaula,,OVAL,OK,2/12/2012 21:00 +Ankeny,,TRIANGLE,IA,2/12/2012 21:40 +Ft. Duchesne,,EGG,UT,2/12/2012 22:45 +Newport News,RED,LIGHT,VA,2/13/2012 0:00 +Front Royal,,CIRCLE,VA,2/13/2012 2:30 +Oroville,,VARIOUS,CA,2/13/2012 6:20 +Black River,,,NY,2/13/2012 6:30 +Oroville,,FIREBALL,CA,2/13/2012 18:00 +West Hollywood,,FORMATION,CA,2/13/2012 19:00 +New Hartford,,VARIOUS,NY,2/13/2012 21:00 +North Ogden,,SPHERE,UT,2/13/2012 21:00 +Rapid City,RED,TRIANGLE,SD,2/13/2012 21:30 +Anaheim,,FIREBALL,CA,2/14/2012 0:00 +Sedona,,,AZ,2/14/2012 0:00 +Sturbridge,,LIGHT,MA,2/14/2012 0:00 +St. George,,VARIOUS,UT,2/14/2012 1:45 +North Ogden,,,UT,2/14/2012 13:15 +Vona,ORANGE,OVAL,CO,2/14/2012 19:20 +Huntington Beach,,LIGHT,CA,2/14/2012 20:00 +Wynne,,OTHER,AR,2/14/2012 21:00 +Provo,,FIREBALL,UT,2/14/2012 22:40 +Midland,,FIREBALL,NC,2/15/2012 3:00 +Sedona,,TRIANGLE,AZ,2/15/2012 3:14 +Sedona,,TRIANGLE,AZ,2/15/2012 3:20 +Sedona,,,AZ,2/15/2012 4:00 +Milton,,OTHER,VT,2/15/2012 13:00 +Playa del Rey,,TEARDROP,CA,2/15/2012 16:25 +Hector,RED,LIGHT,NY,2/15/2012 18:59 +Tampa,RED,LIGHT,FL,2/15/2012 19:00 +Gaithersburg,RED GREEN,TRIANGLE,MD,2/15/2012 19:43 +South Huntingdon,ORANGE,TRIANGLE,PA,2/15/2012 20:49 +Alpine,RED,LIGHT,WY,2/15/2012 21:05 +Sacramento,,DISK,CA,2/15/2012 22:38 +South Kingstown,,LIGHT,RI,2/15/2012 23:35 +Homestead,,,FL,2/16/2012 3:45 +Wendover,,OTHER,UT,2/16/2012 7:45 +Rancho Viejo,,CHEVRON,TX,2/16/2012 8:00 +Gainesville,,OVAL,FL,2/16/2012 19:00 +Miami,,LIGHT,FL,2/16/2012 19:00 +Panama City,,SPHERE,FL,2/16/2012 19:00 +Monroe,,LIGHT,MI,2/16/2012 20:00 +Oxnard,,FLASH,CA,2/16/2012 20:00 +Spring Lake,RED ORANGE YELLOW,,MI,2/16/2012 20:00 +Yuma,ORANGE,LIGHT,AZ,2/16/2012 21:00 +Buffalo,,FLASH,TX,2/16/2012 21:15 +Fowleville,,FIREBALL,MI,2/16/2012 22:45 +Pearson,,SPHERE,GA,2/16/2012 23:30 +Anacortes,,OVAL,WA,2/17/2012 7:15 +Arlington Heights,,TRIANGLE,IL,2/17/2012 11:30 +Simsbury,,LIGHT,CT,2/17/2012 18:40 +Tonawanda,,LIGHT,NY,2/17/2012 18:45 +Manville,,,NJ,2/17/2012 19:10 +Mounds View,,RECTANGLE,MN,2/17/2012 19:10 +Fayetteville,,CIRCLE,NC,2/17/2012 20:00 +Columbus,,FIREBALL,OH,2/17/2012 20:45 +Golden Valley,,TEARDROP,AZ,2/17/2012 21:00 +Streamwood,BLUE,CROSS,IL,2/17/2012 21:00 +Statham,,FIREBALL,GA,2/17/2012 21:10 +Port Charlotte,,LIGHT,FL,2/17/2012 21:30 +Colleyville,,RECTANGLE,TX,2/17/2012 21:50 +O'Fallon,,,MO,2/17/2012 22:30 +Newburgh,,TRIANGLE,NY,2/17/2012 23:00 +Prineville,GREEN BLUE,LIGHT,OR,2/18/2012 0:30 +Brattleboro,,CIRCLE,VT,2/18/2012 5:05 +Auburn,YELLOW,LIGHT,WA,2/18/2012 10:55 +Miami Lakes,,CHEVRON,FL,2/18/2012 17:43 +Levittown,BLUE,OVAL,PA,2/18/2012 19:30 +Newark,ORANGE,,DE,2/18/2012 20:30 +Ridgefield,,LIGHT,WA,2/18/2012 21:30 +Pembroke,RED,LIGHT,NH,2/18/2012 22:30 +Jacksonville,ORANGE,SPHERE,FL,2/19/2012 0:15 +Morgan Hill,,EGG,CA,2/19/2012 19:00 +Clinton,ORANGE,CIRCLE,IA,2/19/2012 19:30 +Dry Ridge,,TRIANGLE,KY,2/19/2012 20:00 +Milford,ORANGE,CIRCLE,CT,2/19/2012 20:15 +Umatilla,,CIRCLE,OR,2/19/2012 20:20 +Los Angeles,,FIREBALL,CA,2/19/2012 20:30 +Arcadia,,CIRCLE,FL,2/19/2012 21:15 +Vienna,RED ORANGE YELLOW,DISK,IL,2/19/2012 22:30 +Tinley Park,,LIGHT,IL,2/20/2012 0:25 +Williston,,LIGHT,VT,2/20/2012 1:45 +Lexington,,CIRCLE,NC,2/20/2012 7:50 +West Barnstable,,DIAMOND,MA,2/20/2012 15:00 +Eudora,,LIGHT,AR,2/20/2012 17:00 +Pasco,,,WA,2/20/2012 17:10 +Morrison,,VARIOUS,CO,2/20/2012 17:45 +Flint,,,MI,2/20/2012 20:00 +Myrtle Beach,,VARIOUS,SC,2/20/2012 21:00 +Oak Hill,,,WV,2/20/2012 22:00 +Benton,BLUE,DISK,TN,2/21/2012 9:30 +Ashaway,,,RI,2/21/2012 18:45 +Bothell,RED ORANGE,CIRCLE,WA,2/21/2012 20:00 +Stephens City,,LIGHT,VA,2/21/2012 20:30 +Highwood,,DISK,IL,2/21/2012 20:40 +Charleston,,TRIANGLE,ME,2/21/2012 22:00 +Jackson,,OTHER,MS,2/21/2012 23:00 +Indianapolis,,DIAMOND,IN,2/22/2012 1:00 +Greenbrier,,OTHER,AR,2/22/2012 1:15 +Peoria,,LIGHT,AZ,2/22/2012 5:15 +Silverthorn,,,CO,2/22/2012 8:00 +San Diego,,SPHERE,CA,2/22/2012 18:00 +Cold Spring,,TRIANGLE,MN,2/22/2012 18:40 +Acworth,,CIRCLE,GA,2/22/2012 19:44 +Bay City,,VARIOUS,MI,2/22/2012 20:58 +Carmel Valley,RED ORANGE BLUE,,CA,2/22/2012 21:00 +Sweetwater,,,TN,2/22/2012 21:00 +Las Cruces,RED YELLOW,CIRCLE,NM,2/22/2012 21:20 +Conway,,TRIANGLE,AR,2/22/2012 21:28 +Yachats,ORANGE,,OR,2/22/2012 21:30 +Hinsdale,ORANGE,DISK,IL,2/23/2012 1:01 +Norfolk,,TRIANGLE,VA,2/23/2012 3:30 +Oshkosh,,LIGHT,WI,2/23/2012 5:45 +Scapoose,,LIGHT,OR,2/23/2012 14:00 +Las Vegas,,,NV,2/23/2012 18:23 +Phoenix,,FIREBALL,AZ,2/23/2012 20:20 +White Swan,,LIGHT,WA,2/23/2012 21:00 +Salina,,,KS,2/23/2012 21:06 +Sumter,,CROSS,SC,2/23/2012 22:45 +Oklahoma City,,CIRCLE,OK,2/24/2012 13:15 +Aliquippa,RED,TRIANGLE,PA,2/24/2012 20:00 +Liberal,,VARIOUS,KS,2/24/2012 20:10 +Las Vegas,,LIGHT,NV,2/24/2012 21:35 +Orem,,OVAL,UT,2/24/2012 21:50 +Burlington,,LIGHT,CT,2/24/2012 22:03 +Millersville,,LIGHT,MO,2/25/2012 0:00 +Union,,FORMATION,OH,2/25/2012 0:20 +Newark,,OTHER,NJ,2/25/2012 6:20 +Staten Island,,CIGAR,NY,2/25/2012 10:58 +Williamsburg,RED,LIGHT,VA,2/25/2012 15:30 +Rochester,RED,TRIANGLE,MN,2/25/2012 18:30 +St. Louis,,TRIANGLE,MO,2/25/2012 19:00 +Zeeland,,LIGHT,MI,2/25/2012 20:00 +Pocola,,LIGHT,OK,2/25/2012 20:14 +Chandler,,LIGHT,AZ,2/25/2012 21:00 +Lawrenceburg,ORANGE,CIRCLE,IN,2/25/2012 21:55 +Charlotte,,CROSS,NC,2/25/2012 22:45 +Youngstown,BLUE,OVAL,NY,2/26/2012 2:00 +Springdale,,TRIANGLE,AR,2/26/2012 15:50 +Ypsilanti,ORANGE,DISK,MI,2/26/2012 16:38 +Bellingham,,LIGHT,WA,2/26/2012 18:32 +Saint Peters,,DISK,MO,2/26/2012 19:00 +Ann Arbor,,RECTANGLE,MI,2/26/2012 19:18 +Fedetal way,,LIGHT,WA,2/26/2012 19:54 +Rio,,FLASH,WV,2/26/2012 20:45 +Chicago,,RECTANGLE,IL,2/26/2012 21:00 +Lake Orion,,OTHER,MI,2/26/2012 22:20 +Sauk City,,FIREBALL,WI,2/26/2012 22:25 +Hampton,,FORMATION,VA,2/26/2012 22:45 +Lansing,,SPHERE,MI,2/26/2012 23:52 +Ontario,,FLASH,NY,2/27/2012 0:00 +Issaquah,,LIGHT,WA,2/27/2012 0:36 +Monroe,,LIGHT,MI,2/27/2012 1:00 +Leavenworth,,FIREBALL,KS,2/27/2012 3:45 +Coventry,YELLOW,FIREBALL,RI,2/27/2012 9:25 +Marietta,,LIGHT,MS,2/27/2012 20:30 +Pasadena,BLUE,OVAL,CA,2/27/2012 21:00 +Coventry,BLUE,LIGHT,RI,2/27/2012 22:20 +Lakeland,,FLASH,FL,2/27/2012 23:10 +Ft. Myers,,LIGHT,FL,2/28/2012 18:00 +Saratoga Springs,,LIGHT,NY,2/28/2012 19:30 +Chaplin,,TRIANGLE,CT,2/28/2012 19:42 +Dover,,FIREBALL,NH,2/28/2012 22:10 +North Berwick,BLUE,,ME,2/28/2012 22:10 +Essex Junction,BLUE,FLASH,VT,2/28/2012 22:14 +Hamden,,EGG,CT,2/28/2012 22:15 +Mechanicville,,EGG,NY,2/28/2012 22:20 +Watertown,GREEN BLUE,LIGHT,NY,2/28/2012 22:20 +Alton,GREEN BLUE,OVAL,NH,2/28/2012 22:30 +Brighton Plantation,,FIREBALL,ME,2/28/2012 23:00 +Reading,RED,TRIANGLE,PA,2/28/2012 23:57 +Edins,BLUE,,MN,2/29/2012 0:00 +Mesa,,LIGHT,AZ,2/29/2012 0:30 +Colorado Springs,,OVAL,CO,2/29/2012 19:50 +Miami Beach,ORANGE,FORMATION,FL,2/29/2012 20:00 +Colorado Springs,,LIGHT,CO,2/29/2012 20:30 +Prescott Valley,,LIGHT,AZ,2/29/2012 20:30 +Plantation,,SPHERE,FL,2/29/2012 21:00 +Greenwood,GREEN,CIRCLE,SC,2/29/2012 21:20 +Ferrum,,TRIANGLE,VA,2/29/2012 23:15 +Williston,,OTHER,ND,3/1/2012 3:00 +Greensburg,,DISK,IN,3/1/2012 4:26 +Garden City,BLUE,,NY,3/1/2012 18:45 +Melbourne,,FIREBALL,FL,3/1/2012 18:45 +Vernal,,LIGHT,UT,3/1/2012 19:00 +Pleasanton,RED,OTHER,IA,3/1/2012 20:00 +Summerville,,CIRCLE,SC,3/1/2012 20:00 +Sedona,,CIGAR,AZ,3/1/2012 20:30 +Pittsburgh,RED,TRIANGLE,PA,3/1/2012 21:00 +Stuart,,FIREBALL,FL,3/1/2012 21:30 +Hagerstown,,OVAL,IN,3/1/2012 22:27 +Landover,,TRIANGLE,MD,3/2/2012 1:50 +San Dimas,,CIRCLE,CA,3/2/2012 13:45 +Vado,,,NM,3/2/2012 16:00 +Anchorage,RED,LIGHT,AK,3/2/2012 19:30 +Maumee,,SPHERE,OH,3/2/2012 19:30 +Natick,,LIGHT,MA,3/2/2012 20:00 +St. Petersburg,,CIRCLE,FL,3/2/2012 20:00 +Tempe,,CYLINDER,AZ,3/2/2012 22:00 +Orlando,,FIREBALL,FL,3/2/2012 23:00 +Seattle,YELLOW,LIGHT,WA,3/2/2012 23:30 +Miami,RED,LIGHT,FL,3/3/2012 1:10 +Pollock Pines,,LIGHT,CA,3/3/2012 16:00 +Alto,,FIREBALL,TN,3/3/2012 17:30 +Cary,RED BLUE,OVAL,NC,3/3/2012 18:30 +Philadelphia,,OTHER,PA,3/3/2012 19:00 +Philadelphia,RED BLUE,OTHER,PA,3/3/2012 19:00 +St. Charles,,TRIANGLE,IL,3/3/2012 19:00 +Grass Valley,,OTHER,CA,3/3/2012 19:23 +Zion,,,IL,3/3/2012 20:00 +Sacramento,BLUE,LIGHT,CA,3/3/2012 20:42 +Ontario,,CONE,CA,3/3/2012 21:00 +Vernal,ORANGE,FIREBALL,UT,3/3/2012 21:25 +Palm Bay,ORANGE,FIREBALL,FL,3/3/2012 21:50 +Silver Spring,,FORMATION,MD,3/3/2012 21:50 +Bethel,,LIGHT,AK,3/3/2012 22:15 +Greensboro,,LIGHT,NC,3/3/2012 22:15 +Maidens,,OVAL,VA,3/3/2012 22:30 +Lavergne,,CIRCLE,TN,3/3/2012 23:15 +Albany,ORANGE,TRIANGLE,NY,3/3/2012 23:30 +Sarasota County,,OVAL,FL,3/3/2012 23:30 +West Jordan,,CIRCLE,UT,3/4/2012 1:00 +Hollywood,,OTHER,CA,3/4/2012 3:00 +Dallas,,LIGHT,TX,3/4/2012 7:30 +Los Angeles,,TRIANGLE,CA,3/4/2012 13:30 +Soulsbyville,,VARIOUS,CA,3/4/2012 15:45 +Walkerton,,LIGHT,IN,3/4/2012 20:00 +Tomball,,CIRCLE,TX,3/4/2012 20:05 +Ventura,,TRIANGLE,CA,3/4/2012 21:00 +Jackson,BLUE,OTHER,GA,3/5/2012 6:45 +Nogales,,TRIANGLE,AZ,3/5/2012 10:00 +Davenport,,OVAL,IA,3/5/2012 11:30 +Blackwood,GREEN,FLASH,NJ,3/5/2012 19:58 +Hummelstown,,FIREBALL,PA,3/5/2012 20:00 +Jordan,,,MT,3/5/2012 20:00 +Kurtistown,,LIGHT,HI,3/5/2012 20:00 +Middletown,,LIGHT,NY,3/5/2012 20:05 +Leesburg,GREEN,FIREBALL,VA,3/5/2012 20:10 +Rockaway,,FIREBALL,NJ,3/5/2012 20:10 +Bellingham,,SPHERE,WA,3/5/2012 20:41 +Rutland,,FIREBALL,VT,3/5/2012 21:30 +Ainsworth,,LIGHT,NE,3/5/2012 22:00 +McCaysville,RED ORANGE,LIGHT,GA,3/5/2012 22:00 +Russell Springs,,EGG,KY,3/6/2012 0:20 +Loring,,CYLINDER,ME,3/6/2012 15:50 +Rocky Hill,,LIGHT,CT,3/6/2012 17:40 +Albuquerque,,LIGHT,NM,3/6/2012 20:30 +Citrus Heights,,OVAL,CA,3/6/2012 21:00 +Troy,,LIGHT,MI,3/6/2012 21:00 +Rockford,,TRIANGLE,IL,3/6/2012 22:55 +Sacramento,,LIGHT,CA,3/6/2012 23:00 +Margate,,LIGHT,FL,3/7/2012 10:43 +Hagarville,,TEARDROP,AR,3/7/2012 11:00 +Cincinnati,,CIRCLE,OH,3/7/2012 18:00 +Towson,,,MD,3/7/2012 18:10 +West Allis,,TRIANGLE,WI,3/7/2012 19:40 +Citrus Heights,,FIREBALL,CA,3/7/2012 20:15 +Greenlawn,,DISK,NY,3/7/2012 21:14 +Troy,,LIGHT,MI,3/7/2012 21:30 +Marietta,,FIREBALL,GA,3/7/2012 22:00 +Chicago,,LIGHT,IL,3/7/2012 22:30 +New York,,DISK,NY,3/7/2012 23:20 +Wellington,BLUE,CIRCLE,KS,3/8/2012 0:00 +Baltimore,,VARIOUS,MD,3/8/2012 1:30 +Bremerton,RED,FIREBALL,WA,3/8/2012 19:00 +Penn Laird,,DIAMOND,VA,3/8/2012 19:00 +Baraboo,,DIAMOND,WI,3/8/2012 19:30 +Santa Clara,,VARIOUS,CA,3/8/2012 19:35 +Sloatsburg,,LIGHT,NY,3/8/2012 20:00 +Blue Bell,BLUE,TRIANGLE,PA,3/8/2012 21:00 +Panama City Beach,,,FL,3/8/2012 22:18 +Draper,,CIRCLE,UT,3/9/2012 0:45 +Grass Valley,,LIGHT,CA,3/9/2012 1:30 +Carteret,,CHEVRON,NJ,3/9/2012 5:30 +Phoenix,,LIGHT,AZ,3/9/2012 7:20 +Medina,RED,TEARDROP,OH,3/9/2012 7:30 +Mesa,,RECTANGLE,AZ,3/9/2012 9:00 +Caledonia,,LIGHT,WI,3/9/2012 13:00 +Beaver,,LIGHT,PA,3/9/2012 20:00 +Sacramento,,VARIOUS,CA,3/9/2012 20:00 +Stockton,,LIGHT,CA,3/9/2012 20:22 +Greeneville,,,TN,3/9/2012 21:00 +Sheboygan,,CIRCLE,WI,3/9/2012 21:00 +Appleton,,CIRCLE,WI,3/9/2012 22:12 +Bloomington,,CHEVRON,IL,3/9/2012 23:15 +Yuma,,DISK,AZ,3/10/2012 2:00 +Selma,,LIGHT,CA,3/10/2012 11:00 +Lawrence,,DIAMOND,KS,3/10/2012 15:45 +Country,,,KS,3/10/2012 16:00 +Plantsville,,OTHER,CT,3/10/2012 18:23 +Redding,ORANGE,FIREBALL,CA,3/10/2012 18:45 +Smithfield,,FIREBALL,NC,3/10/2012 18:45 +Reno,,FIREBALL,NV,3/10/2012 19:00 +Sarasota,,TRIANGLE,FL,3/10/2012 19:00 +Hendersonville,,DISK,TN,3/10/2012 19:14 +Hooksett,,TRIANGLE,NH,3/10/2012 19:30 +Naples,,LIGHT,FL,3/10/2012 19:30 +Wentzville,ORANGE,FIREBALL,MO,3/10/2012 19:54 +Santa Ana,RED,OVAL,CA,3/10/2012 20:00 +Santa Ana,RED BLUE,OVAL,CA,3/10/2012 20:00 +West Islip,ORANGE,SPHERE,NY,3/10/2012 20:00 +New Britain,,CIGAR,CT,3/10/2012 20:23 +Gibsonville,,SPHERE,NC,3/10/2012 20:30 +Franklin,RED BLUE,LIGHT,WI,3/10/2012 20:43 +Chicago,,OTHER,IL,3/10/2012 21:00 +Fort Wayne,,,IN,3/10/2012 21:00 +Jacksonville,,SPHERE,NC,3/10/2012 21:00 +Pendleton,,TRIANGLE,IN,3/10/2012 21:54 +Sebastian,,LIGHT,FL,3/10/2012 22:00 +Defiance,,TRIANGLE,MO,3/10/2012 22:30 +Hardin,,FLASH,MT,3/10/2012 23:00 +Orlando,,FIREBALL,FL,3/10/2012 23:00 +Ventura,BLUE,CIRCLE,CA,3/10/2012 23:30 +Maumee,,CIRCLE,OH,3/11/2012 7:00 +Lake Forest,,FORMATION,IL,3/11/2012 19:30 +Windham,RED ORANGE,VARIOUS,ME,3/11/2012 19:50 +Schaghticoke,,LIGHT,NY,3/11/2012 20:00 +The Dalles,,LIGHT,OR,3/11/2012 20:35 +Chapin,ORANGE,CIRCLE,SC,3/11/2012 20:45 +Ogdensburg,,OVAL,NY,3/11/2012 20:55 +East Elmhurst,,LIGHT,NY,3/11/2012 21:00 +Mauldin,,OVAL,SC,3/11/2012 21:30 +Albuquerque,,CYLINDER,NM,3/11/2012 23:00 +Ocala,,CIGAR,FL,3/12/2012 0:00 +Rock Springs,,CHEVRON,WY,3/12/2012 1:02 +Salem,YELLOW,FORMATION,OH,3/12/2012 4:30 +Maineville,,CIRCLE,OH,3/12/2012 14:30 +Ellensburg,RED,TRIANGLE,WA,3/12/2012 19:45 +Oakley,,DIAMOND,CA,3/12/2012 20:29 +Monticello,YELLOW,OVAL,NY,3/12/2012 21:00 +Saint Joseph,ORANGE,VARIOUS,MO,3/12/2012 21:00 +Houston,,,TX,3/12/2012 21:30 +Lawton,RED ORANGE,TEARDROP,OK,3/12/2012 21:30 +Chillicothe,,FIREBALL,OH,3/12/2012 21:45 +Palmer,ORANGE,SPHERE,AK,3/12/2012 21:45 +Syracuse,,OTHER,NY,3/12/2012 22:04 +Saratoga Springs,YELLOW,VARIOUS,NY,3/13/2012 0:00 +Newark,,CIRCLE,OH,3/13/2012 1:00 +Newark,,CIRCLE,OH,3/13/2012 1:26 +Diamond Bar,,TEARDROP,CA,3/13/2012 6:00 +Fort Worth,,LIGHT,TX,3/13/2012 6:50 +Madera,,TRIANGLE,CA,3/13/2012 7:14 +Port Charlotte,RED GREEN,CIRCLE,FL,3/13/2012 19:00 +North Vernon,,LIGHT,IN,3/13/2012 20:00 +Sykesville,,TRIANGLE,MD,3/13/2012 20:20 +Dundalk,,,MD,3/13/2012 20:30 +Fort Wayne,,LIGHT,IN,3/13/2012 20:30 +Andover,,FORMATION,MN,3/13/2012 20:43 +Crystal Beach,,LIGHT,FL,3/13/2012 21:00 +Las Vegas,,FLASH,NV,3/13/2012 21:00 +Johnstown,,TRIANGLE,PA,3/13/2012 21:30 +Winterville,GREEN,TRIANGLE,NC,3/13/2012 21:30 +Richland,,VARIOUS,WA,3/13/2012 22:10 +Shadyside,,LIGHT,OH,3/13/2012 22:10 +Mount Pleasant,,,MI,3/13/2012 22:45 +Binghamton,RED,FORMATION,NY,3/13/2012 23:00 +Weymouth,,TRIANGLE,MA,3/14/2012 0:03 +Orleans,,FLASH,MA,3/14/2012 1:00 +Wilmington,RED ORANGE GREEN BLUE,SPHERE,NC,3/14/2012 2:00 +Catskill,,,NY,3/14/2012 2:35 +Yarmouth Port,,,MA,3/14/2012 3:44 +Hudson,,OTHER,WI,3/14/2012 4:35 +Tucson,,,AZ,3/14/2012 7:25 +Denver,BLUE,SPHERE,CO,3/14/2012 13:00 +Lafayette,,RECTANGLE,CO,3/14/2012 14:00 +Austin,,DISK,TX,3/14/2012 19:00 +Fountain Valley,ORANGE,LIGHT,CA,3/14/2012 20:00 +Vestal,,FIREBALL,NY,3/14/2012 20:00 +Walkertown,,FORMATION,NC,3/14/2012 20:25 +Watertown,,LIGHT,MN,3/14/2012 20:30 +Monticello,,TRIANGLE,MN,3/14/2012 20:40 +Liberty,GREEN,CIRCLE,SC,3/14/2012 21:30 +no data,GREEN BLUE,FIREBALL,AR,3/14/2012 21:30 +Rocky Point,,SPHERE,NY,3/14/2012 21:30 +Buffalo,,LIGHT,NY,3/14/2012 22:00 +Madison,,LIGHT,NC,3/14/2012 22:45 +Anaconda,RED,TRIANGLE,MT,3/14/2012 23:00 +Sterling,,TRIANGLE,MI,3/14/2012 23:00 +Niagara Falls,ORANGE,FORMATION,NY,3/14/2012 23:15 +Elyria,,FIREBALL,OH,3/14/2012 23:20 +Highwood,BLUE,CHEVRON,IL,3/14/2012 23:20 +Vancouver,RED BLUE,DISK,WA,3/14/2012 23:30 +Wentzville,BLUE,CHEVRON,MO,3/14/2012 23:30 +Monroe,,FLASH,NY,3/14/2012 23:50 +Lake Geneva,ORANGE,CHEVRON,WI,3/14/2012 23:53 +Sicklerville,,RECTANGLE,NJ,3/14/2012 23:57 +Salt Lake City,,TRIANGLE,UT,3/15/2012 3:00 +Harrisonburg,,CIRCLE,VA,3/15/2012 14:00 +San Diego,,FLASH,CA,3/15/2012 19:00 +Logansport,,OTHER,IN,3/15/2012 20:00 +Round Rock,,CROSS,TX,3/15/2012 20:00 +Hackberry,,CIRCLE,AZ,3/15/2012 21:00 +Queen Creek,ORANGE,SPHERE,AZ,3/15/2012 21:00 +Tampa,,SPHERE,FL,3/15/2012 21:00 +Danvers,,OTHER,MA,3/15/2012 21:20 +Pearl,,,MS,3/15/2012 21:30 +Anderson,,TRIANGLE,SC,3/15/2012 21:45 +Syracuse,,LIGHT,NY,3/15/2012 22:00 +Algonquin,,LIGHT,IL,3/15/2012 22:03 +Aquinnah,,,MA,3/15/2012 23:08 +Durand,RED BLUE,TRIANGLE,IL,3/16/2012 0:10 +Decatur,,TRIANGLE,IL,3/16/2012 0:15 +Staten Island,BLUE,LIGHT,NY,3/16/2012 4:00 +Erie,,FIREBALL,PA,3/16/2012 9:00 +Monterey,,EGG,CA,3/16/2012 12:00 +Thibodaux,,TRIANGLE,LA,3/16/2012 12:35 +Dell,,CYLINDER,UT,3/16/2012 14:00 +Mesa,RED GREEN BLUE,,AZ,3/16/2012 20:00 +Ponchatoula,,TRIANGLE,LA,3/16/2012 20:00 +Zephyrhills,ORANGE,LIGHT,FL,3/16/2012 20:00 +Mt. Jackson,,RECTANGLE,VA,3/16/2012 20:12 +Neenah,,OTHER,WI,3/16/2012 20:15 +Albion,,LIGHT,WI,3/16/2012 20:30 +Ashville,,TEARDROP,NY,3/16/2012 20:30 +Liberty Township,,LIGHT,OH,3/16/2012 20:30 +Spotsylvania,,CIRCLE,VA,3/16/2012 20:30 +Galesburg,,RECTANGLE,IL,3/16/2012 20:44 +Marietta,GREEN,,GA,3/16/2012 21:00 +Newark,ORANGE,CIRCLE,OH,3/16/2012 21:00 +Westville,,OTHER,FL,3/16/2012 21:03 +Tempe,RED BLUE,CIRCLE,AZ,3/16/2012 21:20 +Watkinsville,,CIRCLE,GA,3/16/2012 22:00 +New London,BLUE,TRIANGLE,NC,3/16/2012 23:20 +Atlanta,,LIGHT,GA,3/16/2012 23:39 +New London,,TRIANGLE,NC,3/16/2012 23:40 +Holiday,,OVAL,FL,3/17/2012 0:15 +Nuese River Mouth,,TRIANGLE,NC,3/17/2012 2:00 +Mendocino,,LIGHT,CA,3/17/2012 8:00 +California,RED YELLOW,TRIANGLE,CA,3/17/2012 10:00 +Detroit,,CYLINDER,MI,3/17/2012 13:00 +East Islip,,CIGAR,NY,3/17/2012 15:00 +Goshen,,TRIANGLE,IN,3/17/2012 17:45 +Bloomington,,FIREBALL,IL,3/17/2012 19:30 +Tinley Park,ORANGE,VARIOUS,IL,3/17/2012 19:57 +Lansing,,LIGHT,MI,3/17/2012 20:43 +Airway Heights,,SPHERE,WA,3/17/2012 20:45 +Gonzales,RED,LIGHT,LA,3/17/2012 20:45 +Cloquet,,FLASH,MN,3/17/2012 21:19 +Hayward,,LIGHT,WI,3/17/2012 21:20 +Rhinelander,,,WI,3/17/2012 22:00 +Gastings,,CHEVRON,MI,3/17/2012 22:30 +Phoenix,BLUE,TRIANGLE,AZ,3/17/2012 23:00 +Casselberry,,FIREBALL,FL,3/17/2012 23:30 +Grand Rapids,,CIRCLE,MN,3/17/2012 23:30 +Arlington,RED,FIREBALL,SD,3/18/2012 0:01 +Johnstown,,CIRCLE,PA,3/18/2012 0:30 +De Pere,,TRIANGLE,WI,3/18/2012 0:40 +Monroe,,LIGHT,MI,3/18/2012 1:00 +Robertsville,,LIGHT,MO,3/18/2012 4:45 +Jackson,,LIGHT,MI,3/18/2012 7:00 +San Tan Valley,,,AZ,3/18/2012 15:00 +Los Angeles,,DISK,CA,3/18/2012 18:00 +Warwick,RED,CIRCLE,RI,3/18/2012 19:15 +Chicago,,LIGHT,IL,3/18/2012 19:40 +Buffalo,RED,SPHERE,NY,3/18/2012 20:00 +Reading,,CIRCLE,MO,3/18/2012 20:00 +Warwick,,CIRCLE,RI,3/18/2012 20:00 +Butler,,FLASH,PA,3/18/2012 20:30 +Olalla,,,WA,3/18/2012 20:40 +Seattle,,FIREBALL,WA,3/18/2012 20:45 +Griffith,RED,CIRCLE,IN,3/18/2012 21:00 +Port St. Lucie,,FIREBALL,FL,3/18/2012 21:00 +Claremont,ORANGE,FIREBALL,NH,3/18/2012 21:30 +Iowa City,ORANGE,FIREBALL,IA,3/18/2012 21:30 +Alexandria,,TRIANGLE,VA,3/18/2012 21:45 +Hagerstown,,SPHERE,MD,3/18/2012 21:50 +Newberg,,OTHER,OR,3/18/2012 21:55 +Estero,,,FL,3/18/2012 22:00 +Niceville,,FIREBALL,FL,3/18/2012 22:00 +Paducah,,RECTANGLE,KY,3/18/2012 22:00 +Michigan City,,LIGHT,IN,3/18/2012 22:25 +Issaquah,,CYLINDER,WA,3/18/2012 22:30 +Gainesville,,LIGHT,FL,3/18/2012 23:00 +Barboursville,,OVAL,WV,3/19/2012 0:20 +Barboursville,,OVAL,WV,3/19/2012 0:20 +Hampton,RED,,VA,3/19/2012 0:30 +Laguna Woods,ORANGE,TRIANGLE,CA,3/19/2012 1:00 +Clintonville,,,WI,3/19/2012 5:00 +Charleston,,,WV,3/19/2012 6:20 +Alburtis,,LIGHT,PA,3/19/2012 8:30 +Irvine,,DISK,CA,3/19/2012 10:27 +Fort Wayne,,,IN,3/19/2012 15:00 +Wallingford,BLUE,OTHER,CT,3/19/2012 19:00 +Tiffin,RED,RECTANGLE,OH,3/19/2012 19:30 +Phoenix,BLUE,,AZ,3/19/2012 20:00 +Niskayuna,,DISK,NY,3/19/2012 20:20 +Buffalo,,FIREBALL,NY,3/19/2012 22:00 +Kokomo,,LIGHT,IN,3/19/2012 22:00 +Boise,,LIGHT,ID,3/19/2012 22:30 +Worth,,LIGHT,IL,3/19/2012 23:00 +Cayucos,,FIREBALL,CA,3/19/2012 23:15 +Hopewell Junction,,TRIANGLE,NY,3/20/2012 0:00 +Mojave,,OVAL,CA,3/20/2012 0:00 +Austin,,FIREBALL,TX,3/20/2012 1:00 +West Seneca,,TRIANGLE,NY,3/20/2012 3:40 +Conyers,,FLASH,GA,3/20/2012 6:25 +Dyersburg,,OTHER,TN,3/20/2012 14:30 +Mojave,,OVAL,CA,3/20/2012 14:46 +Waukegan,,OTHER,IL,3/20/2012 19:30 +Wright CIty,,FIREBALL,MO,3/20/2012 19:57 +Sedona,,LIGHT,AZ,3/20/2012 20:15 +Woodbury,,FIREBALL,MN,3/20/2012 20:25 +Andover,,CIRCLE,CT,3/20/2012 20:30 +Northborough,RED,DISK,MA,3/20/2012 21:00 +Surfside Beach,ORANGE,LIGHT,SC,3/20/2012 21:00 +Surfside Beach,RED,LIGHT,SC,3/20/2012 21:00 +Pawtucket,ORANGE,LIGHT,RI,3/20/2012 21:30 +Hopewell Junction,,TRIANGLE,NY,3/20/2012 22:00 +Wisconsin Rapids,ORANGE,LIGHT,WI,3/20/2012 22:00 +Kendall,,LIGHT,FL,3/20/2012 22:30 +Laveen,,LIGHT,AZ,3/20/2012 22:30 +Evington,RED ORANGE GREEN BLUE,OTHER,VA,3/20/2012 23:00 +Sandwich,,,MA,3/20/2012 23:30 +Santa Clara,,LIGHT,CA,3/20/2012 23:30 +Ipswich,,LIGHT,MA,3/20/2012 23:45 +Plattsburgh,,OTHER,NY,3/21/2012 4:30 +Phoenix,,,AZ,3/21/2012 5:00 +Whitesboro,,LIGHT,NY,3/21/2012 6:00 +Avon,,LIGHT,OH,3/21/2012 6:23 +Peoria,,LIGHT,AZ,3/21/2012 7:45 +Surprise,,DISK,AZ,3/21/2012 8:08 +Delmont,,OTHER,NJ,3/21/2012 13:00 +Joshua Tree,,DISK,CA,3/21/2012 14:30 +De Kalb,YELLOW GREEN,,NY,3/21/2012 19:30 +Greensburg,,LIGHT,PA,3/21/2012 19:30 +Westfield,ORANGE,FORMATION,IN,3/21/2012 20:00 +Huntsville,ORANGE,SPHERE,AL,3/21/2012 20:45 +Colorado Springs,ORANGE,CIRCLE,CO,3/21/2012 20:47 +Las Vegas,,CIRCLE,NV,3/21/2012 21:25 +Hanover Township,,LIGHT,PA,3/21/2012 21:32 +Akron,,FIREBALL,OH,3/21/2012 22:00 +Presque Isle,,TRIANGLE,ME,3/22/2012 1:00 +Houston,,CIRCLE,TX,3/22/2012 7:45 +New Iberia,RED,FIREBALL,LA,3/22/2012 8:30 +Las Vegas,BLUE,CIGAR,NV,3/22/2012 12:10 +Santa Rosa,RED,FIREBALL,CA,3/22/2012 20:00 +Lake Havasu City,,SPHERE,AZ,3/22/2012 20:20 +Nashua,,CIGAR,NH,3/22/2012 21:05 +Spokane,,EGG,WA,3/22/2012 22:00 +New Brighton,,,PA,3/22/2012 22:37 +Mansfield,,LIGHT,TX,3/22/2012 23:00 +Porterville,,DISK,CA,3/23/2012 0:00 +Northborough,,CIRCLE,MA,3/23/2012 0:15 +Chapel Hill,GREEN,,NC,3/23/2012 0:20 +Franklin Square,,CIRCLE,NY,3/23/2012 1:00 +Milanville,,TEARDROP,PA,3/23/2012 1:00 +Lebanon,,,NJ,3/23/2012 2:10 +Summerville,YELLOW,TRIANGLE,SC,3/23/2012 6:04 +Carmel Valley,,TEARDROP,CA,3/23/2012 11:30 +Peoria,,VARIOUS,AZ,3/23/2012 12:00 +Largo,ORANGE,CIRCLE,FL,3/23/2012 16:45 +Danville,,CIRCLE,VA,3/23/2012 19:10 +Cleveland,,TRIANGLE,TX,3/23/2012 20:00 +Cowen,,SPHERE,WV,3/23/2012 20:30 +University Place,,CIGAR,WA,3/23/2012 20:50 +South Plainfield,,FLASH,NJ,3/23/2012 21:00 +Boynton Beach,ORANGE,,FL,3/23/2012 21:10 +Bishop,,LIGHT,CA,3/23/2012 21:20 +Abilene,,TRIANGLE,TX,3/23/2012 22:00 +Argenta,,LIGHT,IL,3/23/2012 22:00 +Wabash,,TRIANGLE,IN,3/23/2012 22:00 +Davenport,,OTHER,WA,3/23/2012 22:30 +Antioch,,FIREBALL,TN,3/23/2012 23:00 +Somerville,RED ORANGE,SPHERE,NJ,3/24/2012 0:10 +Canton,GREEN,FIREBALL,GA,3/24/2012 6:46 +Wainscott,,LIGHT,NY,3/24/2012 7:00 +Wainscott,,LIGHT,NY,3/24/2012 7:00 +Waterloo,,CIRCLE,IA,3/24/2012 8:45 +Pecos,,SPHERE,NM,3/24/2012 15:00 +Lakewood,ORANGE GREEN,OVAL,WA,3/24/2012 16:00 +Hallandale,,LIGHT,FL,3/24/2012 18:50 +Brighton,,LIGHT,IL,3/24/2012 19:40 +Philadelphia,,CIRCLE,PA,3/24/2012 19:45 +Fenton,,CONE,MO,3/24/2012 20:00 +Billings,,LIGHT,MT,3/24/2012 20:28 +Bellevue,,LIGHT,NV,3/24/2012 21:00 +Burien,,FIREBALL,WA,3/24/2012 21:00 +Travelers Rest,GREEN,FIREBALL,SC,3/24/2012 21:00 +Farmington,RED YELLOW,TRIANGLE,NY,3/24/2012 21:15 +Scottsdale,RED,LIGHT,AZ,3/24/2012 21:30 +Canton,,FORMATION,CT,3/24/2012 22:00 +Fresh Meadows,,LIGHT,NY,3/24/2012 22:00 +Kew Gardens,,LIGHT,NY,3/24/2012 22:30 +Florida City,,LIGHT,FL,3/24/2012 22:35 +Mustang,,LIGHT,OK,3/24/2012 23:27 +Kansas City,RED,FIREBALL,MO,3/24/2012 23:50 +Burbank,ORANGE,SPHERE,WA,3/24/2012 23:52 +Davenport,,VARIOUS,IA,3/25/2012 0:00 +Elizabeth,,,NJ,3/25/2012 3:30 +Oneonta,,CIRCLE,AL,3/25/2012 16:00 +Orlando,,TRIANGLE,FL,3/25/2012 17:30 +Federal Way,BLUE,OTHER,WA,3/25/2012 19:00 +Fontana,ORANGE,CIRCLE,CA,3/25/2012 20:30 +Bloomington,,CIRCLE,IL,3/25/2012 20:45 +Geneva,,FORMATION,OH,3/25/2012 21:00 +Attleboro,RED,TRIANGLE,MA,3/25/2012 21:26 +Avon,,CHEVRON,CT,3/25/2012 22:45 +Conyers,BLUE,SPHERE,GA,3/25/2012 23:20 +Olathe,,TRIANGLE,KS,3/25/2012 23:35 +Monroe,,TRIANGLE,MI,3/26/2012 0:20 +Monroe,,TRIANGLE,MI,3/26/2012 0:20 +Orlando,,FIREBALL,FL,3/26/2012 0:37 +Phenix City,,RECTANGLE,AL,3/26/2012 10:40 +St. Louis,,LIGHT,MO,3/26/2012 12:57 +Bakersfield,,OTHER,CA,3/26/2012 18:20 +California,,,MD,3/26/2012 18:24 +Seminole,,OTHER,OK,3/26/2012 20:00 +Trumbull,,TRIANGLE,CT,3/26/2012 20:13 +Pueblo,RED,TRIANGLE,CO,3/26/2012 20:45 +Charlotte,,TRIANGLE,NC,3/26/2012 21:57 +N. Wilkesboro,,CHEVRON,NC,3/26/2012 22:00 +Macomb,RED,FIREBALL,MI,3/27/2012 4:00 +Prince Edward County,YELLOW,LIGHT,VA,3/27/2012 4:45 +Annapolis,,OTHER,MD,3/27/2012 5:00 +Kensington,,CONE,NH,3/27/2012 5:00 +Newburgh,,OTHER,NY,3/27/2012 5:05 +Ellicott City,,FIREBALL,MD,3/27/2012 5:10 +Jessup,,VARIOUS,PA,3/27/2012 5:10 +Middlesex,,LIGHT,NJ,3/27/2012 5:20 +Ojai,,,CA,3/27/2012 8:00 +Hudson,,RECTANGLE,NC,3/27/2012 9:55 +Shalimar,ORANGE,OVAL,FL,3/27/2012 20:47 +Columbia,YELLOW GREEN,RECTANGLE,MO,3/27/2012 21:00 +Reading,,LIGHT,PA,3/27/2012 21:00 +Tampa,,LIGHT,FL,3/27/2012 21:00 +Wrightsville Beach,RED GREEN,TRIANGLE,NC,3/27/2012 21:20 +Lillington,RED,FORMATION,NC,3/27/2012 21:45 +Bozeman,,TRIANGLE,MT,3/27/2012 22:51 +Big Sky,,TRIANGLE,MT,3/27/2012 23:00 +Bozeman,,,MT,3/27/2012 23:00 +Destrahan,,TRIANGLE,LA,3/27/2012 23:00 +Palos Park,,TRIANGLE,IL,3/27/2012 23:00 +Lodi,,OVAL,CA,3/28/2012 18:25 +Crowley,RED GREEN,CIRCLE,TX,3/28/2012 20:00 +Whitewater,GREEN,FIREBALL,CO,3/28/2012 20:45 +Gilberts,,TRIANGLE,IL,3/28/2012 22:00 +Charleston,,CIGAR,SC,3/28/2012 22:10 +Clinton,YELLOW,TRIANGLE,MT,3/29/2012 2:00 +Covington,,TRIANGLE,KY,3/29/2012 2:07 +Los Angeles,ORANGE,VARIOUS,CA,3/29/2012 4:00 +York,RED,CIRCLE,PA,3/29/2012 5:22 +Kaplan,,LIGHT,LA,3/29/2012 6:25 +Terre Haute,,CIGAR,IN,3/29/2012 15:51 +Morris,,CIGAR,IL,3/29/2012 16:00 +Crandon,,LIGHT,WI,3/29/2012 17:30 +Mesa,,VARIOUS,AZ,3/29/2012 19:10 +McDonald,,DIAMOND,PA,3/29/2012 20:30 +Bishop,,OVAL,CA,3/29/2012 21:00 +Waukesha,,TRIANGLE,WI,3/29/2012 21:00 +Harrison,,FORMATION,NY,3/29/2012 22:40 +Morehead,,LIGHT,KY,3/29/2012 23:30 +West Newfield,,OTHER,ME,3/30/2012 2:15 +Boston,,,MA,3/30/2012 4:00 +Tampa,,DISK,FL,3/30/2012 4:04 +Holladay,,LIGHT,UT,3/30/2012 21:10 +Story City,RED,FORMATION,IA,3/30/2012 21:15 +Burlington,,FLASH,CT,3/30/2012 21:30 +North Port,ORANGE,CIRCLE,FL,3/30/2012 21:49 +Little Rock,GREEN,OTHER,CA,3/30/2012 22:00 +El Mirage,GREEN,CIRCLE,AZ,3/30/2012 22:20 +Lake Havasu City,,FIREBALL,AZ,3/30/2012 22:45 +Sandy,,TRIANGLE,UT,3/30/2012 22:45 +Conway,,,SC,3/30/2012 23:00 +Atoka,,TRIANGLE,OK,3/31/2012 0:00 +Hiddenite,,,NC,3/31/2012 0:15 +Bernardston,GREEN,OTHER,MA,3/31/2012 0:54 +Copperas Cove,,,TX,3/31/2012 2:00 +Miami,GREEN,VARIOUS,FL,3/31/2012 7:00 +Lake Erling,ORANGE,CIRCLE,AZ,3/31/2012 21:00 +Corinth,,LIGHT,MS,3/31/2012 22:10 +White City,,TRIANGLE,UT,3/31/2012 22:37 +Lake Worth,,TRIANGLE,FL,4/1/2012 2:00 +Fairfield,,SPHERE,CA,4/1/2012 10:00 +Orlando,,CIRCLE,FL,4/1/2012 12:00 +Orlando,,DISK,FL,4/1/2012 12:00 +Marysville,,OTHER,WA,4/1/2012 13:15 +Sandpoint,,CIRCLE,ID,4/1/2012 14:00 +Bennington,,TRIANGLE,VT,4/1/2012 17:00 +Altadena,,OVAL,CA,4/1/2012 19:52 +Nevada City,,CIRCLE,CA,4/1/2012 20:00 +Holdenville,,,OK,4/1/2012 20:15 +Centralia,,OVAL,IL,4/1/2012 22:00 +Grants Pass,RED,SPHERE,OR,4/1/2012 22:00 +Dalton,,SPHERE,GA,4/1/2012 22:30 +Van Buren,,LIGHT,AR,4/1/2012 22:40 +Martinsburg,,LIGHT,WV,4/1/2012 23:30 +Graham,,TRIANGLE,NC,4/2/2012 2:00 +Lodi,,FIREBALL,CA,4/2/2012 2:40 +New York City,,CIGAR,NY,4/2/2012 5:00 +Kent,,CIGAR,WA,4/2/2012 12:20 +Kahana,ORANGE,FIREBALL,HI,4/2/2012 18:20 +Seattle,,CIGAR,WA,4/2/2012 19:24 +Baytown,,OVAL,TX,4/2/2012 19:50 +Rockaway Park,,CIGAR,NY,4/2/2012 20:42 +Okarche,BLUE,,OK,4/2/2012 20:50 +New Haven,,CROSS,CT,4/2/2012 21:00 +Ames,BLUE,LIGHT,IA,4/2/2012 21:30 +Pevely,RED,,MO,4/2/2012 21:30 +Cedaredge,,CIGAR,CO,4/2/2012 21:40 +Logan,,LIGHT,UT,4/2/2012 21:45 +Antioch,,FIREBALL,CA,4/2/2012 22:30 +Haena,,FIREBALL,HI,4/2/2012 22:30 +Yadkinville,,,NC,4/2/2012 22:30 +Lexington,,TRIANGLE,KY,4/2/2012 23:49 +Mayfield,,OTHER,MI,4/3/2012 9:00 +Union,,,NJ,4/3/2012 10:00 +Anacortes,,FIREBALL,WA,4/3/2012 10:30 +Worth,,OTHER,IL,4/3/2012 17:00 +Miami,,,FL,4/3/2012 17:45 +Fullerton,,SPHERE,CA,4/3/2012 18:17 +Columbus,,CYLINDER,OH,4/3/2012 19:15 +Mannington,,OVAL,WV,4/3/2012 20:50 +Philippi,BLUE,TEARDROP,WV,4/3/2012 21:45 +Beaverton,,OVAL,OR,4/3/2012 21:50 +Connersville,RED,RECTANGLE,IN,4/3/2012 23:00 +Clinton,,DISK,CT,4/3/2012 23:15 +Pgh,,CIRCLE,PA,4/4/2012 0:15 +Danville,,LIGHT,VT,4/4/2012 1:00 +Orlando,,VARIOUS,FL,4/4/2012 16:21 +Albuquerque,,DISK,NM,4/4/2012 17:38 +Ft. Myers,,,FL,4/4/2012 20:16 +Waxahachie,,OTHER,TX,4/4/2012 20:30 +Perryville,,SPHERE,MO,4/4/2012 22:15 +Concord,,LIGHT,NC,4/4/2012 23:00 +Norwalk,RED YELLOW GREEN BLUE,DISK,OH,4/4/2012 23:00 +Encinitas,,FORMATION,CA,4/5/2012 1:50 +Sharon,,LIGHT,CT,4/5/2012 11:20 +Allentown,,RECTANGLE,PA,4/5/2012 17:45 +Ridgway,,FIREBALL,IL,4/5/2012 19:45 +North Phoenix,,LIGHT,AZ,4/5/2012 20:00 +Cortez,,TRIANGLE,FL,4/5/2012 21:00 +Healdsburg,ORANGE,CIGAR,CA,4/5/2012 23:00 +Melrose Park,,LIGHT,IL,4/6/2012 4:00 +Denver,RED,DIAMOND,CO,4/6/2012 9:27 +Detroit,,OTHER,MI,4/6/2012 12:55 +Passaic,BLUE,DIAMOND,NJ,4/6/2012 14:00 +Seattle,,,WA,4/6/2012 16:30 +Carmel,,,NY,4/6/2012 16:41 +Tooele,,OVAL,UT,4/6/2012 17:00 +San Jose,RED BLUE,OVAL,IL,4/6/2012 21:15 +Pittsburgh,,LIGHT,PA,4/6/2012 21:27 +North Las Vegas,RED,FORMATION,NV,4/6/2012 21:30 +Reading,,EGG,PA,4/6/2012 21:50 +San Francisco,,FIREBALL,CA,4/6/2012 22:48 +Bethel,,CIRCLE,AK,4/6/2012 22:50 +Madisonville,,LIGHT,KY,4/6/2012 22:50 +Webster,,SPHERE,MA,4/6/2012 22:50 +Wichita Falls,,LIGHT,TX,4/6/2012 23:00 +Portland,,,OR,4/7/2012 1:55 +Ludowici,,FIREBALL,GA,4/7/2012 2:35 +Sarasota,GREEN,LIGHT,FL,4/7/2012 3:00 +Spokane,,TRIANGLE,WA,4/7/2012 7:40 +Kingston,,FORMATION,NY,4/7/2012 19:00 +Oak Forest,YELLOW,FORMATION,IL,4/7/2012 20:00 +Huntington Station,RED,LIGHT,NY,4/7/2012 20:45 +Cedar Park,,VARIOUS,TX,4/7/2012 21:00 +Mooresville,,LIGHT,IN,4/7/2012 21:00 +Mount Pleasant,ORANGE,CIRCLE,MI,4/7/2012 21:00 +Asheville,ORANGE,FIREBALL,NC,4/7/2012 21:28 +Rocklin,ORANGE,SPHERE,CA,4/7/2012 21:30 +Deltona,RED,CIRCLE,FL,4/7/2012 22:11 +Hope,RED,DISK,ID,4/7/2012 22:15 +Dallas,RED,TRIANGLE,TX,4/7/2012 22:30 +Citronelle,,TRIANGLE,AL,4/7/2012 23:00 +Kennesaw,,FIREBALL,GA,4/7/2012 23:00 +St. Anthony,,FLASH,ID,4/8/2012 0:32 +Richmond,,VARIOUS,VA,4/8/2012 1:00 +Kansas City,,DISK,MO,4/8/2012 1:30 +Griswold,,DISK,CT,4/8/2012 10:56 +Norco,YELLOW,LIGHT,CA,4/8/2012 20:00 +La Mirada,RED,LIGHT,CA,4/8/2012 20:05 +Miami,,CIRCLE,FL,4/8/2012 20:25 +Marysville,,LIGHT,CA,4/8/2012 20:35 +Rosemount,,DISK,MN,4/8/2012 21:30 +Seattle,ORANGE,SPHERE,WA,4/8/2012 21:30 +Seattle,,FIREBALL,WA,4/8/2012 21:40 +Columbus,ORANGE,OVAL,OH,4/8/2012 22:00 +Ventura,,LIGHT,CA,4/9/2012 6:05 +Arbutus,,LIGHT,MD,4/9/2012 9:00 +San Marcos,ORANGE,CIRCLE,CA,4/9/2012 12:05 +Franklin,,FLASH,MI,4/9/2012 20:00 +Moravian Falls,,,NC,4/9/2012 20:45 +Raleigh,,LIGHT,NC,4/9/2012 20:45 +San Diego,,SPHERE,CA,4/9/2012 20:50 +Carolina Beach,,FIREBALL,NC,4/9/2012 21:00 +Elkridge,,DISK,MD,4/9/2012 21:00 +Jefferson City,,LIGHT,MO,4/9/2012 21:15 +Frisco,,SPHERE,NC,4/9/2012 21:30 +Dysart,,LIGHT,IA,4/9/2012 21:45 +Dysart,,LIGHT,IA,4/9/2012 21:45 +Snellville,,CIRCLE,GA,4/9/2012 22:00 +Texas city,,OVAL,TX,4/9/2012 22:00 +Holmes Beach,RED,OTHER,FL,4/9/2012 22:15 +Georgetown,GREEN,LIGHT,TX,4/10/2012 1:00 +Bantam,,OTHER,CT,4/10/2012 2:00 +Chalfont,,SPHERE,PA,4/10/2012 2:15 +Livingston,,SPHERE,TX,4/10/2012 2:54 +Wildomar,,CIRCLE,CA,4/10/2012 12:16 +Summersville,,OVAL,WV,4/10/2012 13:45 +Danville,,SPHERE,KY,4/10/2012 18:00 +Glendale,,SPHERE,AZ,4/10/2012 19:45 +La Mesa,,LIGHT,CA,4/10/2012 19:50 +Spanish Fort,YELLOW,DIAMOND,AL,4/10/2012 20:00 +Wappingers Falls,,LIGHT,NY,4/10/2012 20:00 +Boulder,,TRIANGLE,CO,4/10/2012 20:10 +Spanish Fort,,DIAMOND,AL,4/10/2012 20:10 +Galveston,,LIGHT,TX,4/10/2012 20:15 +Miami,,LIGHT,FL,4/10/2012 20:51 +Coon Rapids,,LIGHT,MN,4/10/2012 22:00 +St. Louis,BLUE,,MO,4/10/2012 22:00 +East Haven,,,CT,4/10/2012 22:15 +Frostburg,BLUE,FIREBALL,MD,4/10/2012 22:30 +Gaithersburg,,FIREBALL,MD,4/10/2012 22:30 +Goshen,,TRIANGLE,KY,4/10/2012 23:45 +Dekalb,,LIGHT,IL,4/11/2012 0:00 +Tupelo,,TRIANGLE,MS,4/11/2012 1:00 +Omaha,,CIRCLE,NE,4/11/2012 8:20 +Janesville,GREEN,OTHER,WI,4/11/2012 8:40 +Taylors,,,SC,4/11/2012 10:05 +Haughton,,LIGHT,LA,4/11/2012 11:10 +Ames,,FIREBALL,IA,4/11/2012 20:00 +Cleveland,,SPHERE,OH,4/11/2012 20:00 +Elkridge,,LIGHT,MD,4/11/2012 20:00 +Genoa,,TRIANGLE,IL,4/11/2012 20:03 +Lakeside,BLUE,OTHER,AZ,4/11/2012 20:04 +Middleton,RED,SPHERE,WI,4/11/2012 20:22 +Seneca,,LIGHT,IL,4/11/2012 20:25 +Kernersville,,LIGHT,NC,4/11/2012 20:45 +Holden Beach,RED,LIGHT,NC,4/11/2012 21:00 +Holden Beach,RED,LIGHT,NC,4/11/2012 21:00 +South Milwaukee,RED,LIGHT,WI,4/11/2012 21:00 +Cass Lake,,SPHERE,MN,4/11/2012 21:15 +Grand Valley,GREEN,OTHER,MI,4/11/2012 21:30 +Oldsmar,,SPHERE,FL,4/11/2012 21:30 +Reinbeck,,LIGHT,IA,4/11/2012 21:40 +Nashville,,CIRCLE,TN,4/11/2012 21:45 +Casselton,,TRIANGLE,ND,4/11/2012 21:48 +Casselton,,TRIANGLE,ND,4/11/2012 21:58 +Connersville,,LIGHT,IN,4/11/2012 22:07 +St. Charles,,CHEVRON,MO,4/11/2012 22:30 +Clarksburg,,CIRCLE,MD,4/11/2012 23:00 +Honolulu,,LIGHT,HI,4/11/2012 23:00 +Kennesaw,,LIGHT,GA,4/12/2012 4:35 +Owensboro,,CYLINDER,KY,4/12/2012 6:52 +Covina,,CHEVRON,CA,4/12/2012 9:00 +Holmes beach,,FORMATION,FL,4/12/2012 9:45 +St. Cloud,RED,,MN,4/12/2012 18:00 +Buffalo,,OTHER,NY,4/12/2012 19:00 +Marion,,,OH,4/12/2012 19:00 +Lakewood,,FIREBALL,NJ,4/12/2012 20:00 +Sacramento,,CIRCLE,CA,4/12/2012 20:00 +McHenry,,LIGHT,IL,4/12/2012 20:05 +Norfolk,GREEN,VARIOUS,VA,4/12/2012 20:15 +Dayton,,CIRCLE,PA,4/12/2012 21:00 +Palm Springs,,OVAL,CA,4/12/2012 21:00 +Seal Cove,ORANGE,SPHERE,ME,4/12/2012 21:00 +James Island,,TRIANGLE,SC,4/12/2012 21:15 +Coulee City,,LIGHT,WA,4/12/2012 21:20 +Lynchburg,,SPHERE,TN,4/12/2012 21:20 +Parma,,FIREBALL,OH,4/12/2012 21:30 +Torrington,,CIRCLE,CT,4/13/2012 17:09 +Vista Point,RED,FIREBALL,CA,4/13/2012 20:00 +St. Amant,ORANGE,TRIANGLE,LA,4/13/2012 20:26 +Bristol,RED ORANGE,SPHERE,CT,4/13/2012 20:30 +Huntertown,RED,LIGHT,IN,4/13/2012 22:00 +Auburn,,,WA,4/13/2012 22:05 +Saint Petersburg,ORANGE,FORMATION,FL,4/13/2012 23:30 +Portland,,,OR,4/14/2012 1:47 +Belcourt,,CIRCLE,ND,4/14/2012 6:00 +Wyoming,,SPHERE,MI,4/14/2012 11:15 +Lake Villa,BLUE,CIRCLE,IL,4/14/2012 19:00 +McCaysville,BLUE,LIGHT,GA,4/14/2012 19:00 +Hailemaile,,CONE,HI,4/14/2012 19:30 +Amarillo,,CIRCLE,TX,4/14/2012 20:00 +Lake Havasu City,,OVAL,AZ,4/14/2012 21:15 +Palm Springs,YELLOW,CIRCLE,CA,4/14/2012 21:15 +Ben Lomond,RED ORANGE,FIREBALL,CA,4/14/2012 21:30 +Harlan,RED,TRIANGLE,KY,4/14/2012 21:50 +Spokane Valley,RED,LIGHT,WA,4/14/2012 22:00 +North Wilkesboro,RED,LIGHT,NC,4/14/2012 23:15 +North Augusta,RED ORANGE,CIRCLE,SC,4/15/2012 1:20 +Austin,,VARIOUS,TX,4/15/2012 2:00 +Merritt Island,,FIREBALL,FL,4/15/2012 3:23 +Bemidji,,OTHER,MN,4/15/2012 10:00 +Bohemia,,OVAL,NY,4/15/2012 14:00 +West Valley City,,,UT,4/15/2012 19:00 +johnson city,,TRIANGLE,TN,4/15/2012 20:00 +Wichita,,LIGHT,KS,4/15/2012 20:45 +Las Cruces,,OTHER,NM,4/15/2012 22:00 +Bradenton,,CROSS,FL,4/15/2012 22:30 +Bethpage,RED,CIRCLE,NY,4/15/2012 23:30 +Newark,,LIGHT,OH,4/16/2012 4:00 +Spokane,,,WA,4/16/2012 4:00 +Merced County,,OTHER,CA,4/16/2012 7:00 +Santa Nella,,RECTANGLE,CA,4/16/2012 7:20 +Dinosaur Point,,CIGAR,CA,4/16/2012 7:25 +Pacheco Pass,,RECTANGLE,CA,4/16/2012 7:48 +Los Banos,BLUE,OVAL,CA,4/16/2012 8:00 +Los Banos,,RECTANGLE,CA,4/16/2012 8:00 +Oakland,,DISK,CA,4/16/2012 18:00 +New Sharon,RED,CIRCLE,ME,4/16/2012 19:00 +Old Town,ORANGE,LIGHT,ME,4/16/2012 20:34 +Buckeye,,LIGHT,AZ,4/16/2012 20:53 +Greenland,,FLASH,NH,4/16/2012 21:20 +Natick,,TRIANGLE,MA,4/16/2012 21:30 +Melbourne,,CIRCLE,FL,4/16/2012 22:04 +Langhorne,,FORMATION,PA,4/16/2012 22:30 +Charlotte,GREEN BLUE,LIGHT,NC,4/16/2012 22:50 +Albuquerque,BLUE,FLASH,NM,4/16/2012 23:00 +Fall River,,OTHER,MA,4/16/2012 23:00 +Bethpage,BLUE,FLASH,NY,4/16/2012 23:33 +Bemidji,,FIREBALL,MN,4/17/2012 0:00 +Los Banos,,RECTANGLE,CA,4/17/2012 7:05 +Palm Harbor,,CYLINDER,FL,4/17/2012 7:30 +Keene,YELLOW,OVAL,NH,4/17/2012 20:06 +Myrtle Beach,YELLOW,LIGHT,SC,4/17/2012 20:10 +West Hollywood,,SPHERE,CA,4/17/2012 21:10 +Cudjoe Key,RED,TRIANGLE,FL,4/17/2012 21:30 +Des Allemands,,CIRCLE,LA,4/17/2012 21:30 +Victoria,RED,RECTANGLE,TX,4/17/2012 21:30 +Grand Rapids,YELLOW,TRIANGLE,MI,4/17/2012 21:35 +Albuquerque,,FLASH,NM,4/17/2012 22:00 +Cambridge City,,LIGHT,IN,4/17/2012 22:00 +Colorado Springs,,LIGHT,CO,4/17/2012 22:00 +San Juan Capistrano,RED BLUE,LIGHT,CA,4/17/2012 22:23 +Livingston,,LIGHT,TX,4/17/2012 22:24 +Pompano Beach,,DISK,FL,4/17/2012 22:50 +Sherman Oaks,,DIAMOND,CA,4/17/2012 22:50 +Las Vegas,RED GREEN,VARIOUS,NV,4/17/2012 23:00 +las vegas,,CIRCLE,NV,4/17/2012 23:00 +Buckhorn,,DISK,NM,4/17/2012 23:30 +Leo,YELLOW,SPHERE,IN,4/17/2012 23:50 +Grand Bay,ORANGE,CIRCLE,AL,4/18/2012 9:00 +Niagara Falls,YELLOW GREEN,CIRCLE,NY,4/18/2012 10:30 +Dayton,,OTHER,OH,4/18/2012 12:00 +Escondido,,LIGHT,CA,4/18/2012 12:00 +Atascadero,,CYLINDER,CA,4/18/2012 12:41 +Virginia Beach,ORANGE GREEN,SPHERE,VA,4/18/2012 19:00 +Bigelow,,LIGHT,AR,4/18/2012 20:00 +El Centro,,CIGAR,CA,4/18/2012 20:25 +Saugerties,,,NY,4/18/2012 20:30 +Fordland,,LIGHT,MO,4/18/2012 20:55 +El Centro,,FORMATION,CA,4/18/2012 21:15 +bloomfield,,TRIANGLE,CT,4/18/2012 22:15 +Indian Ridge,,LIGHT,FL,4/18/2012 23:00 +Monroe,,LIGHT,MI,4/18/2012 23:00 +Harpswell,,SPHERE,ME,4/18/2012 23:30 +Huntington,,LIGHT,IN,4/18/2012 23:30 +Schulenburg,,OTHER,TX,4/18/2012 23:42 +Bermuda Dunes,,OVAL,CA,4/18/2012 23:45 +Perkasie,,VARIOUS,PA,4/19/2012 17:45 +Sacramento,,TRIANGLE,CA,4/19/2012 18:25 +Elyria,,LIGHT,OH,4/19/2012 19:00 +Las Vegas,RED,LIGHT,NV,4/19/2012 19:45 +Katy,,TRIANGLE,TX,4/19/2012 20:00 +Whitehall,,RECTANGLE,AR,4/19/2012 20:00 +Scarborough,ORANGE,CIRCLE,ME,4/19/2012 20:42 +Scarborough,ORANGE,LIGHT,ME,4/19/2012 20:42 +Scarborough,ORANGE,LIGHT,ME,4/19/2012 20:42 +Wilhoit,,,AZ,4/19/2012 21:15 +Montreal,ORANGE,LIGHT,WI,4/19/2012 21:30 +Ironwood,ORANGE,CIRCLE,MI,4/19/2012 21:33 +Ironwood,,LIGHT,MI,4/19/2012 21:33 +Austin,,CHEVRON,TX,4/19/2012 22:40 +Clinton,,LIGHT,UT,4/19/2012 23:37 +Fargo,,TRIANGLE,ND,4/20/2012 0:43 +Knoxville,,FLASH,TN,4/20/2012 5:00 +Monroeville,,LIGHT,PA,4/20/2012 9:34 +St. Peters,RED YELLOW,,MO,4/20/2012 13:30 +Boston,,CYLINDER,MA,4/20/2012 17:00 +Austin,,,TX,4/20/2012 20:40 +Mason City,RED,LIGHT,IA,4/20/2012 20:45 +Danbury,,,NH,4/20/2012 21:00 +Shawnee,,CIRCLE,KS,4/20/2012 21:00 +Lake Elsinore,,CHEVRON,CA,4/20/2012 21:33 +Caldwell,RED,LIGHT,ID,4/20/2012 21:37 +Atkinson,,,IL,4/20/2012 21:55 +Concord,,LIGHT,NC,4/20/2012 22:00 +Jeffersonville,ORANGE,LIGHT,IN,4/20/2012 22:05 +Atascosa,ORANGE YELLOW,LIGHT,TX,4/20/2012 23:00 +Clinton,,LIGHT,UT,4/20/2012 23:00 +longboat Key,ORANGE,OTHER,FL,4/20/2012 23:00 +Argyle,,OVAL,FL,4/20/2012 23:10 +New Bern,,,NC,4/20/2012 23:21 +Baldwinsville,,TRIANGLE,NY,4/20/2012 23:30 +Littleton,,OTHER,CO,4/21/2012 0:00 +Wilmington,,LIGHT,NC,4/21/2012 0:00 +Indio,,TRIANGLE,CA,4/21/2012 1:00 +Salt Lake City,,SPHERE,UT,4/21/2012 5:23 +St. George,RED,FIREBALL,UT,4/21/2012 8:30 +Seattle,,DISK,WA,4/21/2012 12:40 +colorado springs,,LIGHT,CO,4/21/2012 15:00 +Bay Shore,,FIREBALL,NY,4/21/2012 17:45 +Surpise,BLUE,LIGHT,AZ,4/21/2012 19:45 +Hemet,,SPHERE,CA,4/21/2012 20:00 +Reedly,RED,SPHERE,CA,4/21/2012 20:30 +Sparks,,OVAL,NV,4/21/2012 20:40 +Lakewood,,LIGHT,CO,4/21/2012 21:00 +Las Vegas,,CIRCLE,NV,4/21/2012 21:00 +Santa Cruz,,OVAL,CA,4/21/2012 21:00 +Joliet,,TRIANGLE,IL,4/21/2012 21:15 +Arnold,,FIREBALL,MO,4/21/2012 21:30 +Bremerton,,TRIANGLE,WA,4/21/2012 22:00 +Auburn,,CIRCLE,WA,4/21/2012 22:25 +Olympia,,SPHERE,WA,4/21/2012 22:25 +Paris,,,MI,4/21/2012 22:35 +Portland,,LIGHT,OR,4/21/2012 22:35 +North Bend,,CIRCLE,WA,4/21/2012 22:40 +Rock Springs,,CIRCLE,WY,4/21/2012 23:05 +Fort Worth,,CHEVRON,TX,4/22/2012 0:15 +Vancouver,RED,OVAL,WA,4/22/2012 1:00 +Lewisville Tx,,FORMATION,TX,4/22/2012 2:15 +GA,BLUE,LIGHT,FL,4/22/2012 2:30 +Shaver Lake,,FIREBALL,CA,4/22/2012 7:30 +Yakima,,FIREBALL,WA,4/22/2012 11:08 +Albuquerque,,RECTANGLE,NM,4/22/2012 13:00 +San Diego,YELLOW,LIGHT,CA,4/22/2012 18:00 +Vancouver,,FIREBALL,WA,4/22/2012 20:32 +Royse City,RED,FORMATION,TX,4/22/2012 20:45 +Cedar Lake,,LIGHT,IN,4/22/2012 21:00 +Kennesaw,ORANGE,CIRCLE,GA,4/22/2012 21:00 +West Palm Beach,ORANGE,SPHERE,FL,4/22/2012 21:00 +Carlisle,,SPHERE,PA,4/22/2012 21:30 +Everett,,TRIANGLE,WA,4/22/2012 21:36 +Mountain Home,,FLASH,ID,4/22/2012 22:00 +Rapid City,,OTHER,SD,4/22/2012 22:10 +Marysville,,LIGHT,CA,4/22/2012 22:20 +Juneau,,LIGHT,AK,4/23/2012 0:00 +Decatur,,CIGAR,IL,4/23/2012 4:15 +Maple Grove,,CIRCLE,MN,4/23/2012 9:30 +Greer,RED,FLASH,SC,4/23/2012 11:43 +Melbourne,,OTHER,FL,4/23/2012 14:33 +Windsor,,CIRCLE,IL,4/23/2012 20:30 +Richardson,,TRIANGLE,TX,4/23/2012 21:00 +St. Helena,,TRIANGLE,NC,4/23/2012 21:14 +Yakima,,,WA,4/23/2012 21:33 +New York City,,,NY,4/23/2012 21:46 +Rio Rancho,RED,LIGHT,NM,4/23/2012 21:50 +Marco Island,,CYLINDER,FL,4/23/2012 21:54 +Hinesville,,LIGHT,GA,4/23/2012 22:00 +Stockto,RED BLUE,LIGHT,CA,4/23/2012 22:03 +Grindstone,BLUE,LIGHT,PA,4/23/2012 22:21 +Cedar Park,,CHEVRON,TX,4/23/2012 22:40 +Rochester,,SPHERE,WA,4/24/2012 2:45 +Noblesville,ORANGE,CIRCLE,IN,4/24/2012 5:20 +Ada,,CIGAR,OK,4/24/2012 16:45 +Gresham,,CIRCLE,OR,4/24/2012 17:00 +Gulfport,,DISK,MS,4/24/2012 20:55 +Marshville,,CIRCLE,NC,4/24/2012 21:00 +Cedar Rapids,,LIGHT,IA,4/24/2012 21:45 +Beverly Hills,,OTHER,FL,4/24/2012 22:00 +Olathe,,OTHER,KS,4/24/2012 22:00 +Scottsdale,,SPHERE,AZ,4/24/2012 22:10 +Highland Village,,OTHER,TX,4/24/2012 22:30 +Highland,BLUE,CIRCLE,UT,4/24/2012 22:55 +Valley-Omaha,,FIREBALL,NE,4/24/2012 23:00 +Cave Spring,,OTHER,GA,4/25/2012 5:45 +Spring,,SPHERE,TX,4/25/2012 7:30 +Watertown,,,SD,4/25/2012 9:30 +Okeechobee,,LIGHT,FL,4/25/2012 12:00 +Hephzibah,ORANGE,CIRCLE,GA,4/25/2012 21:15 +Portal,ORANGE,FIREBALL,GA,4/25/2012 21:45 +Tylertown,,OVAL,MS,4/25/2012 22:15 +Citrus Springs,RED BLUE,LIGHT,FL,4/25/2012 22:35 +Sunderland-Arlington,,SPHERE,VT,4/25/2012 23:00 +Circleville,,TRIANGLE,NY,4/25/2012 23:15 +Bismarck,ORANGE,TRIANGLE,ND,4/25/2012 23:30 +Big Pine Key,,CHEVRON,FL,4/26/2012 0:00 +New Palestine,,DIAMOND,IN,4/26/2012 1:30 +Topeka,,OTHER,KS,4/26/2012 1:45 +Upland,,OVAL,CA,4/26/2012 1:45 +Yakima,,TEARDROP,WA,4/26/2012 3:00 +Pella,,DISK,IA,4/26/2012 7:35 +Monroeville,YELLOW,CIRCLE,PA,4/26/2012 11:10 +Collinsville,ORANGE,LIGHT,IL,4/26/2012 11:57 +Otis AFB,,OTHER,MA,4/26/2012 15:15 +Mammoth,ORANGE,LIGHT,AZ,4/26/2012 20:28 +St. Simons Island,,CIRCLE,GA,4/26/2012 20:55 +Miami,,CHEVRON,FL,4/26/2012 21:00 +Simi Valley,,LIGHT,CA,4/26/2012 21:22 +Symsonia,BLUE,LIGHT,KY,4/26/2012 21:30 +Geneva,RED,TRIANGLE,FL,4/26/2012 21:35 +Bremen,,OVAL,IN,4/26/2012 22:00 +Harlingen,,OVAL,TX,4/26/2012 22:00 +Littleton,RED,LIGHT,CO,4/26/2012 22:35 +Monroe,,TRIANGLE,MI,4/27/2012 3:30 +Ocala,,RECTANGLE,FL,4/27/2012 19:30 +Virginia Beach,ORANGE,FIREBALL,VA,4/27/2012 20:24 +Las vegas,RED ORANGE,OVAL,NV,4/27/2012 20:26 +Olyphant,,FIREBALL,PA,4/27/2012 20:45 +Conway,,LIGHT,AR,4/27/2012 21:00 +New York City,,LIGHT,NY,4/27/2012 21:00 +Tiffin,,FLASH,OH,4/27/2012 21:00 +Greensboro,GREEN,SPHERE,NC,4/27/2012 21:40 +San Jose,ORANGE,LIGHT,CA,4/27/2012 22:00 +Schaumburg,RED,FIREBALL,IL,4/27/2012 22:30 +Williamsville,RED,,NY,4/27/2012 22:30 +Royersford,,OVAL,PA,4/27/2012 23:27 +Eagle River,,FIREBALL,AK,4/28/2012 1:00 +Surprise,,LIGHT,AZ,4/28/2012 8:10 +Sarasota,,CIGAR,FL,4/28/2012 13:37 +St. Cloud,RED,LIGHT,MN,4/28/2012 19:00 +Chandler,,VARIOUS,AZ,4/28/2012 19:30 +Cordova,,CIGAR,SC,4/28/2012 20:00 +Riverside,,TRIANGLE,CA,4/28/2012 20:40 +Charlotte,,TRIANGLE,NC,4/28/2012 21:00 +Mount Airy,,LIGHT,MD,4/28/2012 21:00 +Rancho Cucamonga,,FIREBALL,CA,4/28/2012 21:00 +Saint Cloud,,CIRCLE,MN,4/28/2012 21:38 +Salem,ORANGE,FORMATION,OR,4/28/2012 21:45 +Algoma,,,WI,4/28/2012 21:55 +Las Cruces,,OTHER,NM,4/28/2012 22:10 +Holly,,TRIANGLE,MI,4/28/2012 23:00 +Newark,,FIREBALL,NJ,4/29/2012 1:00 +Jacksonville,ORANGE,DISK,FL,4/29/2012 2:00 +Tum Tum,,LIGHT,WA,4/29/2012 3:00 +Saratoga Springs,,FORMATION,UT,4/29/2012 17:00 +Cary,,EGG,NC,4/29/2012 20:15 +Woodstock,,LIGHT,NY,4/29/2012 20:30 +Birmingham,RED,CROSS,AL,4/29/2012 21:00 +Hopkinton,,SPHERE,MA,4/29/2012 21:02 +Farmington,,SPHERE,NM,4/29/2012 21:05 +Kingwood,,OTHER,TX,4/29/2012 21:22 +Orlando,ORANGE,CIRCLE,FL,4/29/2012 21:30 +Elmsford,ORANGE,FIREBALL,NY,4/29/2012 22:45 +Webster,,TEARDROP,NH,4/29/2012 23:30 +Melbourne,ORANGE,LIGHT,FL,4/29/2012 23:45 +Ipswich,,SPHERE,MA,4/30/2012 0:00 +Centrailia,,OVAL,KS,4/30/2012 15:00 +San Tan Valley,,LIGHT,AZ,4/30/2012 20:43 +Fresno,GREEN,TRIANGLE,CA,4/30/2012 21:00 +St. George,RED,CIRCLE,UT,4/30/2012 21:30 +Surprise,,OVAL,AZ,4/30/2012 22:15 +Dayton,,,MT,5/1/2012 1:30 +Sumter,,DISK,SC,5/1/2012 4:00 +Karnak,,SPHERE,IL,5/1/2012 12:00 +Athens,,TRIANGLE,GA,5/1/2012 19:30 +McHenry,,LIGHT,IL,5/1/2012 20:30 +Sandy,,CIRCLE,UT,5/1/2012 21:30 +Concord,,FLASH,GA,5/1/2012 22:00 +Huntersville,RED ORANGE YELLOW,RECTANGLE,NC,5/1/2012 23:20 +Bolivar,,LIGHT,MO,5/2/2012 2:51 +North Phoenix,,SPHERE,AZ,5/2/2012 8:20 +Brownfield,,TRIANGLE,TX,5/2/2012 11:10 +North Phoenix,,SPHERE,AZ,5/2/2012 20:20 +Columbia,,LIGHT,MO,5/2/2012 20:30 +Pocahontas,,TEARDROP,AR,5/2/2012 21:30 +Marble Hill,,CIRCLE,MO,5/2/2012 23:00 +Columbia Falls,ORANGE,,MT,5/2/2012 23:30 +Carrboro,,CIRCLE,NC,5/2/2012 23:35 +Bristol,,CYLINDER,PA,5/3/2012 0:30 +Saint Joseph,,RECTANGLE,MI,5/3/2012 3:30 +Las Vegas,,FIREBALL,NV,5/3/2012 16:00 +Lakeview,ORANGE,OTHER,OR,5/3/2012 20:00 +Brownwood,,FIREBALL,TX,5/3/2012 21:00 +Everett,ORANGE,TRIANGLE,WA,5/3/2012 21:00 +Oxford,,FIREBALL,AL,5/3/2012 21:00 +Boardman,ORANGE,FIREBALL,OH,5/3/2012 21:08 +Mesquite,,TRIANGLE,NV,5/3/2012 21:45 +Kernersville,,LIGHT,NC,5/3/2012 22:15 +Mexico,YELLOW,SPHERE,NY,5/4/2012 0:00 +Jamestown,RED,OVAL,NC,5/4/2012 0:38 +Bernardsville,,,NJ,5/4/2012 9:00 +Centre,,CYLINDER,AL,5/4/2012 15:00 +East Peoria,,OTHER,IL,5/4/2012 20:30 +Sanford,,CIRCLE,FL,5/4/2012 20:30 +Bernardsville,,,NJ,5/4/2012 20:45 +Porterville,,,CA,5/4/2012 21:47 +Santa Fe,ORANGE,CIRCLE,TX,5/4/2012 22:25 +Cedar Falls,RED YELLOW,SPHERE,IA,5/4/2012 22:35 +Orem,,CIRCLE,UT,5/4/2012 22:35 +South San Francisco,,LIGHT,CA,5/4/2012 23:28 +Gladstone,,CIRCLE,OR,5/5/2012 0:00 +Plainview,,FIREBALL,NY,5/5/2012 0:00 +Greenwood,,OTHER,AR,5/5/2012 5:00 +Alcalde,,,NM,5/5/2012 9:40 +Weybridge,,SPHERE,VT,5/5/2012 10:17 +Eunice,,OVAL,LA,5/5/2012 19:30 +Berkeley,RED,OVAL,CA,5/5/2012 19:45 +Tucson,,FIREBALL,AZ,5/5/2012 20:20 +Colorado Springs,,OTHER,CO,5/5/2012 20:45 +Gilbert,,TRIANGLE,AZ,5/5/2012 20:50 +Natrona Heights,,SPHERE,PA,5/5/2012 21:00 +Oneida,,CIRCLE,TN,5/5/2012 21:00 +Torrance,,TRIANGLE,CA,5/5/2012 21:00 +Rancho Bernardo,,SPHERE,CA,5/5/2012 21:15 +Hamburg,GREEN,LIGHT,NY,5/5/2012 21:30 +Newport,,CIRCLE,ME,5/5/2012 21:30 +Boise,ORANGE YELLOW,SPHERE,ID,5/5/2012 22:00 +Hampton,,FIREBALL,GA,5/5/2012 22:00 +Hampton,,FIREBALL,GA,5/5/2012 22:00 +Orlando,ORANGE,OVAL,FL,5/5/2012 22:00 +Cumming,,FLASH,GA,5/5/2012 22:20 +Cheektowaga,,CIRCLE,NY,5/5/2012 23:00 +Granada Hills,,OVAL,CA,5/5/2012 23:00 +Hedgesville,ORANGE,OTHER,WV,5/5/2012 23:00 +Marshall,,DISK,NC,5/5/2012 23:00 +Tucson,,VARIOUS,AZ,5/5/2012 23:30 +Venice Beach,ORANGE,SPHERE,CA,5/5/2012 23:30 +Marina Del Rey,,LIGHT,CA,5/5/2012 23:35 +Plymouth,RED YELLOW,CIRCLE,IN,5/6/2012 1:00 +Brattleboro,,,VT,5/6/2012 12:45 +Torrance,,,CA,5/6/2012 14:00 +Vinton,,TRIANGLE,IA,5/6/2012 15:30 +Oak Lawn,,,IL,5/6/2012 19:55 +El Dorado Hills,,LIGHT,CA,5/6/2012 20:55 +Apopka,ORANGE,FIREBALL,FL,5/6/2012 21:00 +Berkeley,,DIAMOND,CA,5/6/2012 21:00 +Sparks,RED,LIGHT,NV,5/6/2012 21:25 +Danville,GREEN BLUE,,VA,5/6/2012 21:35 +Morganville,,CIGAR,NJ,5/6/2012 22:00 +Rock Stream,,SPHERE,NY,5/6/2012 22:00 +Saint Anne,BLUE,OVAL,IL,5/6/2012 22:00 +Westville,RED,CIRCLE,IL,5/6/2012 22:34 +Paducah,,LIGHT,KY,5/6/2012 22:56 +Waterbury,,DISK,CT,5/6/2012 23:39 +Chatham,BLUE,DISK,IL,5/6/2012 23:55 +Lakeland,,SPHERE,FL,5/7/2012 0:30 +Las Vegas,,OVAL,NV,5/7/2012 1:50 +Portland,,EGG,OR,5/7/2012 20:35 +Cary,,OTHER,NC,5/7/2012 21:00 +Shreveport,,LIGHT,LA,5/7/2012 21:00 +Ventura,,FORMATION,CA,5/7/2012 21:17 +Delaware,,CIRCLE,OH,5/7/2012 21:30 +Hoodsport,,FORMATION,WA,5/7/2012 22:00 +Milwaukee,,DIAMOND,WI,5/7/2012 22:40 +Auburn,,LIGHT,WA,5/8/2012 0:31 +Springfield,,FIREBALL,OR,5/8/2012 1:30 +Hanover,ORANGE,SPHERE,PA,5/8/2012 5:00 +St. Cloud,,TRIANGLE,MN,5/8/2012 5:00 +Phoenix,,SPHERE,AZ,5/8/2012 13:50 +Clovis,RED,LIGHT,CA,5/8/2012 20:30 +West Point,,LIGHT,UT,5/8/2012 20:30 +Carolina Beach,,FIREBALL,NC,5/8/2012 20:50 +Alameda,ORANGE,FIREBALL,CA,5/8/2012 21:15 +Sarasota,,LIGHT,FL,5/8/2012 21:15 +Oak Lawn,,LIGHT,IL,5/8/2012 22:15 +Clear Lake,,CONE,IA,5/8/2012 22:30 +Fort Worth,,DISK,TX,5/8/2012 23:00 +Elk River,,CROSS,MN,5/9/2012 14:00 +Robbinsdale,,FIREBALL,MN,5/9/2012 20:15 +Sour lake,,LIGHT,TX,5/9/2012 22:18 +Austell,BLUE,TEARDROP,GA,5/10/2012 3:00 +Miami,ORANGE,FIREBALL,FL,5/10/2012 10:51 +Reno,,,NV,5/10/2012 15:00 +Orlando,BLUE,CIRCLE,FL,5/10/2012 16:00 +Atlanta,,CYLINDER,GA,5/10/2012 18:30 +Cambridge,,,MA,5/10/2012 21:00 +Berberton,,OVAL,OH,5/10/2012 22:00 +Bozeman,,LIGHT,MT,5/10/2012 22:30 +Wooster,,SPHERE,OH,5/10/2012 22:30 +Riverton,,,UT,5/10/2012 23:15 +Riverton,,,UT,5/10/2012 23:15 +Lumberton,,TRIANGLE,NC,5/11/2012 5:10 +Real County,,TRIANGLE,TX,5/11/2012 7:30 +Pacheco Pass,,RECTANGLE,CA,5/11/2012 7:45 +Los Banos,,LIGHT,CA,5/11/2012 7:52 +Los Banos,,CIRCLE,CA,5/11/2012 8:00 +Salt Lick,,CIGAR,KY,5/11/2012 14:00 +Mechanicsburg,,SPHERE,PA,5/11/2012 16:00 +Chazy,,EGG,NY,5/11/2012 17:00 +Pacheco Pass,,,CA,5/11/2012 19:30 +Knoxville,,FORMATION,TN,5/11/2012 20:20 +San Jose,,VARIOUS,CA,5/11/2012 20:30 +Cleveland,,OVAL,OH,5/11/2012 20:35 +Brainerd,,FIREBALL,MN,5/11/2012 21:00 +Columbia,ORANGE,CIRCLE,MD,5/11/2012 21:00 +Oak City,RED,SPHERE,NC,5/11/2012 21:30 +Ambridge,,LIGHT,PA,5/11/2012 22:00 +Knoxville,,,TN,5/11/2012 22:00 +Knoxville,,,TN,5/11/2012 22:00 +Peach Springs,RED,,AZ,5/11/2012 22:00 +Williamstown,,,MA,5/11/2012 22:15 +Saint Paul,,,MN,5/11/2012 23:00 +Bemidji,,FIREBALL,MN,5/12/2012 1:00 +Kingston,,LIGHT,RI,5/12/2012 1:30 +Devine,,DISK,TX,5/12/2012 8:00 +Vienna,,,VA,5/12/2012 8:03 +Raynham,,SPHERE,MA,5/12/2012 9:44 +Riverside,RED ORANGE,CIRCLE,RI,5/12/2012 11:00 +Cleveland,,OVAL,OH,5/12/2012 12:01 +Cerritos,,CIGAR,CA,5/12/2012 13:00 +Blaine,RED,FORMATION,MN,5/12/2012 20:00 +Indianapolis,RED,LIGHT,IN,5/12/2012 20:00 +Caledonia,ORANGE,DIAMOND,WI,5/12/2012 20:30 +Yorktown Heights,ORANGE,CIRCLE,NY,5/12/2012 21:00 +Battle Ground,,OVAL,WA,5/12/2012 21:03 +Missoula,,SPHERE,MT,5/12/2012 21:10 +Tustin,,LIGHT,CA,5/12/2012 21:10 +North Sioux City,,FIREBALL,SD,5/12/2012 21:15 +Eden Prairie,RED,CIRCLE,MN,5/12/2012 21:30 +Highland Village,ORANGE,CIRCLE,TX,5/12/2012 21:30 +Lebanon,YELLOW,FORMATION,PA,5/12/2012 21:30 +New Britain,ORANGE,SPHERE,CT,5/12/2012 21:30 +Pearland,RED ORANGE YELLOW,CIRCLE,TX,5/12/2012 21:30 +Pass Christian,RED,LIGHT,MS,5/12/2012 21:36 +Sioux Falls,,OTHER,SD,5/12/2012 21:50 +Bay Minette,ORANGE,CIRCLE,AL,5/12/2012 22:00 +Edmond,GREEN,OVAL,OK,5/12/2012 22:00 +Sioux Falls,BLUE,CIRCLE,SD,5/12/2012 22:03 +Garden City,,SPHERE,NY,5/12/2012 22:15 +Hastings,RED,,MI,5/12/2012 22:30 +Edmond,GREEN,LIGHT,OK,5/12/2012 22:40 +Broken Arrow,ORANGE,CIRCLE,OK,5/12/2012 22:50 +Chatham,,FIREBALL,NJ,5/12/2012 23:00 +San Diego,,VARIOUS,CA,5/12/2012 23:00 +Vienna,RED ORANGE YELLOW,LIGHT,IL,5/12/2012 23:42 +Williams,,TRIANGLE,AZ,5/13/2012 1:00 +Pisgah Forest,,,NC,5/13/2012 2:30 +Olympic National Park,,OVAL,WA,5/13/2012 8:00 +Cleveland,,TRIANGLE,OH,5/13/2012 15:00 +Las Vegas,,CONE,NV,5/13/2012 16:00 +Bath,ORANGE,,ME,5/13/2012 16:30 +Wilmette,,LIGHT,IL,5/13/2012 20:30 +Diamond,,FIREBALL,IL,5/13/2012 20:45 +Chicago,RED,,IL,5/13/2012 20:50 +Mechanicville,,CIRCLE,NY,5/13/2012 21:00 +Conway,RED,,AR,5/13/2012 21:13 +Belleville,,VARIOUS,WI,5/13/2012 21:30 +Eugene,,LIGHT,OR,5/13/2012 21:30 +San Jose,,FIREBALL,CA,5/13/2012 21:45 +Waukee,RED GREEN BLUE,,IA,5/13/2012 21:45 +Des Moines,ORANGE,LIGHT,IA,5/13/2012 21:50 +Redding,,CIRCLE,CA,5/13/2012 22:15 +Everett,,LIGHT,WA,5/13/2012 22:25 +Bozeman,,SPHERE,MT,5/13/2012 22:45 +Seattle,,LIGHT,WA,5/13/2012 23:00 +Louisville,,DISK,KY,5/14/2012 0:45 +Lansing,BLUE,LIGHT,MI,5/14/2012 1:00 +New Town,,FORMATION,ND,5/14/2012 12:00 +Franklin,,FLASH,NC,5/14/2012 18:30 +Portland,ORANGE,LIGHT,OR,5/14/2012 21:35 +Missoula,,LIGHT,MT,5/14/2012 23:00 +Ranchos de Taos,,TEARDROP,NM,5/14/2012 23:00 +Schulenburg,,,TX,5/14/2012 23:55 +Dyer,,SPHERE,IN,5/15/2012 0:00 +Glendale,RED,FIREBALL,CA,5/15/2012 0:00 +"wailea, mckenna, Maui, HI",,DIAMOND,HI,5/15/2012 1:30 +Wethersfield,,FIREBALL,CT,5/15/2012 2:56 +Hemet,,,CA,5/15/2012 3:15 +Tulsa,GREEN BLUE,CIRCLE,OK,5/15/2012 8:30 +Siesta Key,,FIREBALL,FL,5/15/2012 9:50 +Cass Lake,GREEN,,MN,5/15/2012 11:00 +Oakhurst,,FLASH,NJ,5/15/2012 20:00 +Lawrenceville,,CIRCLE,IL,5/15/2012 20:35 +Downingtown,RED ORANGE,OVAL,PA,5/15/2012 20:45 +Oak Hill,,CHEVRON,WV,5/15/2012 21:00 +Burns,ORANGE,LIGHT,OR,5/15/2012 22:00 +Glendale,,FIREBALL,CA,5/15/2012 22:40 +Avon,,SPHERE,NC,5/15/2012 23:00 +Tampa,ORANGE,CIRCLE,FL,5/15/2012 23:00 +Lozeau,,TRIANGLE,MT,5/16/2012 0:00 +Cambridge City,RED GREEN,,IN,5/16/2012 5:45 +San Antonio,,CIGAR,TX,5/16/2012 10:45 +Watertown,,,SD,5/16/2012 11:15 +MIshawaka,,SPHERE,IN,5/16/2012 12:20 +Springfield,ORANGE,OVAL,MO,5/16/2012 16:45 +Hawthorne,,OVAL,CA,5/16/2012 20:15 +Springfield,,LIGHT,MO,5/16/2012 22:00 +Woodbine,ORANGE,SPHERE,GA,5/16/2012 22:00 +Ventura,,TRIANGLE,CA,5/16/2012 23:15 +Bonners Ferry,BLUE,FLASH,ID,5/17/2012 1:00 +Lakeville,,CIRCLE,MN,5/17/2012 21:00 +Plum,,CONE,PA,5/17/2012 21:20 +no data,,CIRCLE,SD,5/17/2012 21:30 +Issaquah,BLUE,FLASH,WA,5/17/2012 21:48 +China Grove,,OTHER,NC,5/17/2012 22:00 +Harper Woods,ORANGE,,MI,5/17/2012 22:00 +La Crosse,,,WI,5/17/2012 22:30 +O'neil,YELLOW,LIGHT,NE,5/17/2012 22:30 +Mastic Beach,,SPHERE,NY,5/17/2012 23:23 +Bayshore,,DISK,NY,5/18/2012 0:00 +Potomac,RED YELLOW,LIGHT,MD,5/18/2012 0:00 +Johnson City,RED,CIRCLE,TN,5/18/2012 0:05 +Newton,ORANGE,LIGHT,MA,5/18/2012 10:15 +Fort Collins,,SPHERE,CO,5/18/2012 14:30 +Davis,ORANGE,CIRCLE,CA,5/18/2012 17:30 +Fayetteville,,EGG,AR,5/18/2012 17:30 +Kernersville,,CIGAR,NC,5/18/2012 20:00 +League City,ORANGE,FIREBALL,TX,5/18/2012 21:00 +Rockford,,DISK,IL,5/18/2012 21:30 +Worthington,RED,CONE,OH,5/18/2012 22:00 +Goodrich,ORANGE,LIGHT,MI,5/18/2012 22:15 +Washington,,SPHERE,MI,5/18/2012 22:15 +West Bloomfield,,LIGHT,MI,5/18/2012 22:30 +Eskdale,,,WV,5/18/2012 23:00 +Elyria,RED,FIREBALL,OH,5/19/2012 2:00 +Marlton,ORANGE,SPHERE,NJ,5/19/2012 2:00 +Seabeck,,TRIANGLE,WA,5/19/2012 3:00 +Orlando,,LIGHT,FL,5/19/2012 4:55 +Sumter,,DISK,SC,5/19/2012 9:00 +Montgomery,,FLASH,AL,5/19/2012 16:40 +Lake Elsinore,,VARIOUS,CA,5/19/2012 20:15 +Anchorage,,TRIANGLE,AK,5/19/2012 20:30 +St. Peters,ORANGE,CIRCLE,MO,5/19/2012 20:58 +Edna,,OTHER,TX,5/19/2012 21:00 +Exton,ORANGE,LIGHT,PA,5/19/2012 21:00 +Grayson,,VARIOUS,GA,5/19/2012 21:00 +Gulfport,,LIGHT,MS,5/19/2012 21:00 +Lawrenceville,ORANGE,OTHER,GA,5/19/2012 21:00 +Tulsa,ORANGE,CIRCLE,OK,5/19/2012 21:00 +Elk Grove Village,ORANGE,FIREBALL,IL,5/19/2012 21:10 +Minneapolis,,CIRCLE,MN,5/19/2012 21:10 +Chicago,RED YELLOW,OTHER,IL,5/19/2012 21:15 +Minneapolis,RED,TRIANGLE,MN,5/19/2012 21:15 +Fremont,ORANGE,FIREBALL,OH,5/19/2012 21:30 +Woonsocket,ORANGE,LIGHT,RI,5/19/2012 21:30 +Detroit,,CIRCLE,MI,5/19/2012 21:45 +Stafford,,FIREBALL,VA,5/19/2012 21:45 +Kendallville,RED,,IN,5/19/2012 21:50 +Wesley Chapel,,OVAL,NC,5/19/2012 21:50 +Republic,ORANGE,FIREBALL,MO,5/19/2012 22:00 +Rockport,RED,LIGHT,MA,5/19/2012 22:00 +Sandy Creek,RED,SPHERE,NY,5/19/2012 22:00 +Sicklerville,GREEN,OTHER,NJ,5/19/2012 22:00 +Ovid,ORANGE,CIRCLE,NY,5/19/2012 22:15 +Johnstown,RED,SPHERE,PA,5/19/2012 22:30 +Omaha,,OTHER,NE,5/19/2012 22:30 +Britton,,OVAL,SD,5/19/2012 23:00 +Newport Beach,ORANGE,FLASH,CA,5/19/2012 23:00 +Palatine,RED,LIGHT,IL,5/19/2012 23:00 +Cumming,ORANGE,CIRCLE,GA,5/19/2012 23:52 +East Sandwich,,OTHER,MA,5/20/2012 0:00 +East Sandwich,ORANGE,RECTANGLE,MA,5/20/2012 0:00 +Gulf Breeze,,VARIOUS,FL,5/20/2012 0:00 +Milwaukee,,FIREBALL,WI,5/20/2012 0:00 +Portsmouth,,LIGHT,VA,5/20/2012 1:45 +Murray,,LIGHT,UT,5/20/2012 2:45 +Lenoir,,TRIANGLE,NC,5/20/2012 3:15 +Alameda,,CIGAR,CA,5/20/2012 8:35 +Holden beach,RED,TRIANGLE,NC,5/20/2012 10:42 +Fond du Lac,YELLOW,TRIANGLE,WI,5/20/2012 14:00 +Moffett Field,,OVAL,CA,5/20/2012 19:00 +Fresno,ORANGE,LIGHT,CA,5/20/2012 20:00 +Burbank,RED,FIREBALL,CA,5/20/2012 20:45 +Suwanee,,LIGHT,GA,5/20/2012 21:00 +Palm Springs,RED,OVAL,CA,5/20/2012 21:15 +Cedar City,ORANGE,CIRCLE,UT,5/20/2012 21:30 +Greensburg,,LIGHT,PA,5/20/2012 22:00 +South Jordan,ORANGE,CIRCLE,UT,5/20/2012 22:35 +Moore,,CIRCLE,OK,5/20/2012 23:30 +Tucson,,LIGHT,AZ,5/21/2012 0:50 +Durham,,LIGHT,NC,5/21/2012 4:00 +Vacaville,,LIGHT,CA,5/21/2012 4:19 +Burbank,,,CA,5/21/2012 5:00 +Clifton,,OVAL,NJ,5/21/2012 8:15 +Riverside,,VARIOUS,CA,5/21/2012 10:05 +Belton,,CIGAR,SC,5/21/2012 20:00 +Bark River,,LIGHT,MI,5/21/2012 20:45 +Paradise Valley,ORANGE,CIRCLE,AZ,5/21/2012 21:20 +Paradise Valley,ORANGE,CIRCLE,AZ,5/21/2012 21:20 +Bishop,RED,SPHERE,CA,5/21/2012 21:45 +Lago Vista,,CIRCLE,TX,5/21/2012 21:45 +Superior,GREEN,OTHER,WI,5/21/2012 22:07 +Edmonds,ORANGE,FIREBALL,WA,5/21/2012 22:30 +Lynnwood,,,WA,5/21/2012 22:30 +Old Town,,TRIANGLE,FL,5/21/2012 23:00 +Cape Fear,,OVAL,NC,5/22/2012 1:00 +Knighdale,,LIGHT,NC,5/22/2012 3:00 +Sutton,,OVAL,WV,5/22/2012 3:35 +La Porte,,LIGHT,IN,5/22/2012 4:30 +Red Bluff,RED,DIAMOND,CA,5/22/2012 10:30 +Chico,,DISK,CA,5/22/2012 13:00 +Oak View,,VARIOUS,CA,5/22/2012 15:30 +Oak Creek,,SPHERE,WI,5/22/2012 17:00 +Memphis,ORANGE,SPHERE,TN,5/22/2012 19:30 +Wilcox,,RECTANGLE,AZ,5/22/2012 20:40 +Oak Creek,,SPHERE,WI,5/22/2012 21:00 +Fulton,RED,CIRCLE,NY,5/22/2012 21:30 +Holladay,,DISK,UT,5/22/2012 22:00 +Florence,,LIGHT,AL,5/22/2012 22:30 +Omaha,,LIGHT,NE,5/22/2012 22:30 +Ypsilanti,,DIAMOND,MI,5/22/2012 22:30 +Saratoga Springs,,VARIOUS,NY,5/22/2012 23:30 +Pensacola,,OVAL,FL,5/23/2012 0:05 +San Antonio,,CIRCLE,TX,5/23/2012 0:15 +Olney,,TRIANGLE,IL,5/23/2012 2:00 +Hazelwood,,OTHER,MO,5/23/2012 2:20 +Des Moines,RED ORANGE,FIREBALL,IA,5/23/2012 3:00 +Oklahoma city,RED,RECTANGLE,OK,5/23/2012 3:30 +Exeter,,LIGHT,NE,5/23/2012 11:00 +Tunapuna,,DISK,WI,5/23/2012 13:30 +Maricopa,,SPHERE,AZ,5/23/2012 19:55 +Carpentersville,,OVAL,IL,5/23/2012 20:39 +Detroit,,OVAL,MI,5/23/2012 21:00 +Bristow,,SPHERE,OK,5/23/2012 21:30 +Chicago,,CIRCLE,IL,5/23/2012 21:37 +Gardner,GREEN,SPHERE,IL,5/23/2012 21:45 +Watson,,CIGAR,LA,5/23/2012 22:15 +Salt Lake City,,OTHER,UT,5/23/2012 22:30 +Ypsilanti,,DISK,MI,5/23/2012 23:15 +Fresno,,,CA,5/24/2012 2:20 +Yakima,,CIRCLE,WA,5/24/2012 3:00 +Burlington,,LIGHT,IA,5/24/2012 4:00 +Everett,,OVAL,WA,5/24/2012 9:36 +Blue Springs,,SPHERE,MO,5/24/2012 20:00 +Carrier Mills,,LIGHT,IL,5/24/2012 20:55 +Narragansett,,CIRCLE,RI,5/24/2012 21:00 +Flint,,FIREBALL,MI,5/24/2012 21:15 +Puyallup,,LIGHT,WA,5/24/2012 21:45 +Logan,,TRIANGLE,UT,5/24/2012 23:55 +Miami,ORANGE,CIRCLE,FL,5/25/2012 0:00 +Corning,,CIGAR,IA,5/25/2012 1:00 +Bremerton,,,WA,5/25/2012 12:40 +Mexico,,OTHER,MO,5/25/2012 21:40 +Holly,ORANGE,LIGHT,MI,5/25/2012 22:00 +Fletcher,,LIGHT,OH,5/25/2012 22:30 +Rogers,,CIRCLE,AR,5/25/2012 22:30 +Albuquerque,,SPHERE,NM,5/26/2012 0:00 +Mason City,,OTHER,IA,5/26/2012 0:00 +San Diego,,LIGHT,CA,5/26/2012 0:50 +Lebanon,,,MO,5/26/2012 4:49 +New Port Richey,GREEN,LIGHT,FL,5/26/2012 5:45 +Zebulon,,OVAL,GA,5/26/2012 11:23 +Wilmington,,OTHER,NC,5/26/2012 15:00 +Pueblo,,FIREBALL,CO,5/26/2012 20:23 +Norwalk,RED,LIGHT,CT,5/26/2012 20:30 +Cambridge,,CIRCLE,NY,5/26/2012 21:00 +Mokena,,CIRCLE,IL,5/26/2012 21:00 +Lake Village,,LIGHT,AR,5/26/2012 21:05 +Pueblo,,CIRCLE,CO,5/26/2012 21:23 +Deep Creek,,TRIANGLE,FL,5/26/2012 21:30 +Macedon,ORANGE,SPHERE,NY,5/26/2012 21:38 +South Lake Tahoe,,FIREBALL,CA,5/26/2012 22:00 +Belle Glade,,LIGHT,FL,5/26/2012 22:30 +Houston,,FIREBALL,TX,5/26/2012 22:55 +Springfield,,FIREBALL,OH,5/26/2012 23:40 +Smithville,,FIREBALL,MO,5/27/2012 0:00 +Silver Springs,,OVAL,NV,5/27/2012 10:15 +Irving,RED,LIGHT,IL,5/27/2012 17:30 +Eugene,,OVAL,OR,5/27/2012 19:00 +Oxnard,RED,OTHER,CA,5/27/2012 20:45 +Hanalei Bay,ORANGE,EGG,HI,5/27/2012 20:50 +Bartlett,,FIREBALL,IL,5/27/2012 21:00 +Portland,,LIGHT,OR,5/27/2012 21:24 +Mukwonago,RED,LIGHT,WI,5/27/2012 22:00 +National City,,SPHERE,MI,5/27/2012 22:00 +Thornton,RED,DISK,NH,5/27/2012 22:00 +Wingdale,,LIGHT,NY,5/27/2012 22:00 +Sterling Heights,ORANGE,LIGHT,MI,5/27/2012 22:10 +Pleasant Hill,,LIGHT,OH,5/27/2012 23:40 +Paris,,LIGHT,OH,5/28/2012 3:00 +Olney,,LIGHT,IL,5/28/2012 4:30 +Theodore,,LIGHT,AL,5/28/2012 8:15 +Carlsbad,,LIGHT,NM,5/28/2012 10:00 +Omaha,RED ORANGE,CIRCLE,NE,5/28/2012 10:00 +Sulphur,RED ORANGE,CIRCLE,LA,5/28/2012 11:50 +Boston,,CIGAR,MA,5/28/2012 13:00 +Greenville,,OVAL,KY,5/28/2012 18:00 +Waynesburg,,LIGHT,PA,5/28/2012 18:00 +Nixa,,CYLINDER,MO,5/28/2012 20:00 +Mesa,,CIRCLE,AZ,5/28/2012 20:30 +Omaha,,CIRCLE,NE,5/28/2012 21:20 +Greensboro,RED GREEN,OVAL,NC,5/28/2012 21:30 +Kaysville,,LIGHT,UT,5/28/2012 21:30 +Westminster,ORANGE,SPHERE,MD,5/28/2012 21:30 +Weybridge,,CYLINDER,VT,5/28/2012 21:30 +Monrovia,,VARIOUS,CA,5/28/2012 21:38 +Royersford,,FIREBALL,PA,5/28/2012 22:00 +Caledonia,,CIRCLE,NY,5/28/2012 22:35 +Crow Agency,ORANGE,,MT,5/28/2012 23:11 +Raleigh,,LIGHT,NC,5/28/2012 23:20 +Duluth,,TRIANGLE,MN,5/28/2012 23:30 +Bailey,,LIGHT,CO,5/29/2012 3:23 +University Place,ORANGE,SPHERE,WA,5/29/2012 3:51 +Buffalo,,TRIANGLE,MO,5/29/2012 6:15 +Portland,,TRIANGLE,OR,5/29/2012 20:00 +Ohatchee,,,AL,5/29/2012 21:15 +Pensacola,,TRIANGLE,FL,5/29/2012 22:09 +Summerville,GREEN,FIREBALL,SC,5/29/2012 22:15 +Bozeman,,SPHERE,MT,5/29/2012 23:00 +Gate City,,,VA,5/29/2012 23:30 +Hamilton,,LIGHT,MT,5/29/2012 23:30 +Connersville,,FIREBALL,IN,5/30/2012 0:45 +Barre,ORANGE,FIREBALL,VT,5/30/2012 2:04 +Tempe,,,AZ,5/30/2012 4:25 +Martinez,,CIGAR,GA,5/30/2012 19:30 +Arcata,GREEN,LIGHT,CA,5/30/2012 20:00 +Venice,,CYLINDER,FL,5/30/2012 20:45 +Mckean,,FIREBALL,PA,5/30/2012 21:00 +Bishopville,,VARIOUS,SC,5/30/2012 21:30 +The Woodlands,,FORMATION,TX,5/30/2012 22:30 +Davis,ORANGE,FIREBALL,CA,5/30/2012 22:35 +Madison,,CIRCLE,NC,5/30/2012 23:00 +Stamping Ground,,LIGHT,KY,5/30/2012 23:00 +Scottsbluff,,,NE,5/31/2012 12:00 +Las Begas,,LIGHT,NV,5/31/2012 20:30 +Durham,,LIGHT,NC,5/31/2012 22:00 +Greensburg,,LIGHT,PA,5/31/2012 22:30 +Greenville,,OTHER,RI,6/1/2012 12:30 +Cherry,,TRIANGLE,MN,6/1/2012 13:00 +Tulsa,ORANGE,CIRCLE,OK,6/1/2012 20:00 +Arnold,,TRIANGLE,MO,6/1/2012 20:30 +Katy,,OTHER,TX,6/1/2012 20:30 +St. Louis,ORANGE,SPHERE,MO,6/1/2012 21:00 +Sunnyvale,,FIREBALL,CA,6/1/2012 21:00 +Fort Lauderdale,,CIRCLE,FL,6/1/2012 21:21 +St. Paul,,FIREBALL,MN,6/1/2012 21:45 +Oak Park,,VARIOUS,CA,6/1/2012 22:00 +St. Paul,ORANGE,CYLINDER,MN,6/1/2012 22:05 +Breezy Point,ORANGE,FORMATION,MN,6/1/2012 22:30 +San Antonio,RED,FIREBALL,TX,6/1/2012 22:30 +Graham,RED,LIGHT,WA,6/1/2012 23:24 +Clinton,,LIGHT,AR,6/2/2012 0:00 +Marysville,ORANGE,CIRCLE,MI,6/2/2012 0:00 +Rockvale,,DISK,TN,6/2/2012 1:00 +Willow Springs,,CIRCLE,IL,6/2/2012 2:50 +Chicago,,RECTANGLE,IL,6/2/2012 14:00 +Twin Falls,,FLASH,ID,6/2/2012 15:00 +White Marsh,,CIGAR,MD,6/2/2012 16:30 +Beacon Rock State Park,ORANGE,VARIOUS,WA,6/2/2012 20:30 +Beacon Rock State Park,,SPHERE,WA,6/2/2012 21:00 +Beacon Rock State Park,ORANGE,SPHERE,WA,6/2/2012 21:00 +Bellevue,,FIREBALL,WA,6/2/2012 21:00 +Cedar Rapids,,CIRCLE,IA,6/2/2012 21:00 +Farmington,,FIREBALL,CT,6/2/2012 21:00 +Elk Grove,GREEN,FIREBALL,CA,6/2/2012 21:20 +Phoenixville,,LIGHT,PA,6/2/2012 21:25 +Billings,ORANGE,FIREBALL,MT,6/2/2012 21:45 +Apple Valley,,CIRCLE,MN,6/2/2012 21:47 +Big Sky,ORANGE,TRIANGLE,MT,6/2/2012 21:55 +Salisbury,RED,CIRCLE,NC,6/2/2012 22:00 +Strasburg,ORANGE,FIREBALL,VA,6/2/2012 22:00 +Webster,ORANGE,CIRCLE,NY,6/2/2012 22:00 +Cranberry Township,,SPHERE,PA,6/2/2012 22:15 +Olympia,ORANGE,CONE,WA,6/2/2012 22:15 +Aurora,ORANGE,CIRCLE,IN,6/2/2012 22:30 +South Riding,,TRIANGLE,VA,6/2/2012 22:30 +New Albany,,FIREBALL,IN,6/2/2012 22:38 +Bozeman,,FORMATION,MT,6/2/2012 22:50 +Aliquippa,,LIGHT,PA,6/2/2012 23:00 +Hazelton,,LIGHT,IA,6/2/2012 23:00 +Bozeman,ORANGE,FORMATION,MT,6/2/2012 23:17 +Covington,,RECTANGLE,TN,6/2/2012 23:45 +Harwichport,,DISK,MA,6/3/2012 0:00 +West Chester,,LIGHT,OH,6/3/2012 0:00 +Kiawah Island,,CIRCLE,SC,6/3/2012 1:00 +Harriman State Park,ORANGE,OTHER,NY,6/3/2012 1:15 +Cedar Rapids,,LIGHT,IA,6/3/2012 3:00 +South Chicago Heights,,EGG,IL,6/3/2012 14:00 +Lindenhurst,RED,TRIANGLE,IL,6/3/2012 21:00 +Madison,,RECTANGLE,CT,6/3/2012 22:00 +Alameda,,FORMATION,CA,6/3/2012 22:03 +Brick,ORANGE BLUE,CIRCLE,NJ,6/4/2012 1:10 +Sacramento,,FORMATION,CA,6/4/2012 4:19 +Sacramento,,FORMATION,CA,6/4/2012 4:19 +Dallas,ORANGE,EGG,TX,6/4/2012 16:00 +Bartlett,,FIREBALL,IL,6/4/2012 20:00 +Bay St. Louis,,SPHERE,MS,6/4/2012 20:40 +Point Pleasant,,OVAL,NJ,6/4/2012 21:00 +Dixon,YELLOW,RECTANGLE,IL,6/4/2012 22:55 +Sherman Oaks,,,CA,6/5/2012 1:30 +Ashland,,LIGHT,VA,6/5/2012 4:00 +San Jose,,OTHER,CA,6/5/2012 4:00 +Murrieta,,CYLINDER,CA,6/5/2012 9:00 +Blairs,RED,CIRCLE,VA,6/5/2012 9:30 +Bowie,GREEN,OVAL,TX,6/5/2012 10:17 +Janesville,,DISK,CA,6/5/2012 13:10 +Los Angeles,,LIGHT,CA,6/5/2012 21:00 +Ventura,,FORMATION,CA,6/5/2012 21:00 +Friday Harbor,,LIGHT,WA,6/5/2012 21:30 +Los Angeles,,CIRCLE,CA,6/5/2012 21:30 +Alpharetta,RED,SPHERE,GA,6/5/2012 21:35 +Wichita,GREEN,LIGHT,KS,6/5/2012 22:09 +Lake Worth,,,TX,6/5/2012 22:30 +Mckees Rocks,,CIRCLE,PA,6/5/2012 22:30 +McKees Rocks,,CIRCLE,PA,6/5/2012 22:45 +Alva,BLUE,FIREBALL,OK,6/5/2012 23:00 +Chandler,,CIRCLE,AZ,6/5/2012 23:05 +Chocowinity,,LIGHT,NC,6/5/2012 23:10 +Muscatine,RED,LIGHT,IA,6/5/2012 23:10 +Cleveland,,LIGHT,TN,6/5/2012 23:40 +Mentor,,CIRCLE,OH,6/5/2012 23:45 +Forest Lake,,OVAL,MN,6/6/2012 0:30 +Pidcoke,,TRIANGLE,TX,6/6/2012 5:25 +Ft. Bragg,,LIGHT,NC,6/6/2012 6:00 +Lemars,,CIRCLE,IA,6/6/2012 6:00 +Valhalla,,SPHERE,NY,6/6/2012 10:00 +Chicago,,SPHERE,IL,6/6/2012 10:20 +Kent,,OTHER,WA,6/6/2012 16:43 +Tuolumne Meadows,RED,TRIANGLE,CA,6/6/2012 20:45 +Miami,,,FL,6/6/2012 21:00 +Milford,RED ORANGE YELLOW,,CT,6/6/2012 21:15 +Milford,YELLOW,SPHERE,CT,6/6/2012 21:15 +Charleston,,OTHER,SC,6/6/2012 21:31 +Jackson Hole,,FIREBALL,WY,6/6/2012 21:45 +Columbia,,LIGHT,SC,6/6/2012 22:15 +Dateland,,CIRCLE,AZ,6/6/2012 22:22 +Portland,RED,LIGHT,OR,6/6/2012 22:48 +Asheville,ORANGE,TEARDROP,NC,6/6/2012 23:00 +Daniels,,,WV,6/6/2012 23:00 +Sayreville,RED,SPHERE,NJ,6/6/2012 23:00 +Ontario,,OTHER,CA,6/7/2012 0:00 +Westminster,,CYLINDER,CO,6/7/2012 1:05 +Tum Tum,,LIGHT,WA,6/7/2012 2:30 +Blue Point,,,NY,6/7/2012 4:02 +Warm Beach,,OVAL,WA,6/7/2012 5:30 +Winston-Salem,,VARIOUS,NC,6/7/2012 7:30 +Elsmere,,TRIANGLE,DE,6/7/2012 12:00 +Atlanta,,TRIANGLE,GA,6/7/2012 14:00 +Camarillo,,DISK,CA,6/7/2012 17:15 +St. George Island,,FIREBALL,FL,6/7/2012 21:05 +Masontown,RED,LIGHT,PA,6/7/2012 21:57 +Valparaiso,RED,,IN,6/7/2012 22:00 +Vancouver,,LIGHT,WA,6/7/2012 22:10 +Phoenix,ORANGE,TRIANGLE,AZ,6/7/2012 22:28 +Salem,,LIGHT,OR,6/7/2012 22:37 +Marshfield,,DISK,MO,6/7/2012 22:53 +Davison,,TRIANGLE,MI,6/7/2012 23:00 +Rochester,ORANGE,OVAL,MN,6/7/2012 23:00 +Arlington,,SPHERE,VT,6/7/2012 23:05 +State College,,LIGHT,PA,6/7/2012 23:35 +State College,,LIGHT,PA,6/7/2012 23:35 +Gulfport,,LIGHT,MS,6/8/2012 0:00 +Binghamton,,OTHER,NY,6/8/2012 2:00 +Sacramento,,LIGHT,CA,6/8/2012 3:35 +El Mirage,,CIRCLE,AZ,6/8/2012 6:00 +Atlanta,,LIGHT,GA,6/8/2012 7:00 +Cottonwood,,CYLINDER,AZ,6/8/2012 11:00 +Seattle,,CIRCLE,WA,6/8/2012 11:00 +Perry,,LIGHT,IA,6/8/2012 20:55 +Ballwin,RED,OTHER,MO,6/8/2012 21:00 +Nashua,,FIREBALL,NH,6/8/2012 21:00 +Baldwin Park,,FIREBALL,CA,6/8/2012 21:15 +Afton,,LIGHT,MO,6/8/2012 22:00 +Zanesville,,SPHERE,OH,6/8/2012 22:15 +Daytona Beach,,CIRCLE,FL,6/8/2012 22:30 +North Wales,ORANGE,CIRCLE,PA,6/8/2012 22:30 +Lawrenceville,GREEN,,GA,6/8/2012 22:40 +Fennville,,OVAL,MI,6/8/2012 22:45 +Ann Arbor,RED,FIREBALL,MI,6/8/2012 23:00 +Beloit,,VARIOUS,WI,6/8/2012 23:00 +Hayward,,OTHER,CA,6/8/2012 23:00 +Lansing,ORANGE,LIGHT,MI,6/8/2012 23:30 +Marion,ORANGE GREEN,,IN,6/8/2012 23:30 +Portland,,FORMATION,OR,6/9/2012 1:01 +Mentor,BLUE,OVAL,MN,6/9/2012 2:30 +San Mateo,,LIGHT,CA,6/9/2012 2:30 +Manchester,,FIREBALL,NJ,6/9/2012 2:36 +Bailey,,LIGHT,CO,6/9/2012 4:00 +Havertown,BLUE,SPHERE,PA,6/9/2012 9:45 +Atlanta,,OVAL,GA,6/9/2012 19:00 +Rapid City,,VARIOUS,SD,6/9/2012 21:00 +Rio Rancho,,DISK,NM,6/9/2012 21:00 +Woodbury,,LIGHT,MN,6/9/2012 21:00 +Charlotte,ORANGE,CIRCLE,NC,6/9/2012 21:20 +Camarillo,,FIREBALL,CA,6/9/2012 21:30 +Lake in the Hills,,OTHER,IL,6/9/2012 21:30 +Philipsburg,,CIRCLE,PA,6/9/2012 21:45 +Indianapolis,ORANGE,TRIANGLE,IN,6/9/2012 21:50 +Joliet,ORANGE,FIREBALL,IL,6/9/2012 22:00 +Macomb Township,,CIRCLE,MI,6/9/2012 22:00 +Orlando,,LIGHT,FL,6/9/2012 22:00 +Oswego,ORANGE,LIGHT,IL,6/9/2012 22:00 +Placentia,,FIREBALL,CA,6/9/2012 22:00 +Carmel,,FORMATION,IN,6/9/2012 22:10 +Fond du Lac,ORANGE,CIRCLE,WI,6/9/2012 22:20 +Saint Paul,,FIREBALL,MN,6/9/2012 22:30 +Jamestown,RED,LIGHT,NY,6/9/2012 22:55 +Akron,,FIREBALL,OH,6/9/2012 23:00 +Lansing,,FLASH,NY,6/9/2012 23:00 +Akron,,FIREBALL,OH,6/9/2012 23:09 +Frederica,,DISK,DE,6/9/2012 23:15 +Colorado Springs,,CIRCLE,CO,6/10/2012 0:00 +Fountain,,CIRCLE,MI,6/10/2012 0:04 +Greensboro,,SPHERE,NC,6/10/2012 0:30 +Clinton Twp,,OTHER,MI,6/10/2012 1:00 +Janesville,RED,,WI,6/10/2012 3:15 +Waukegan,,OTHER,IL,6/10/2012 3:45 +Landingville,ORANGE,OVAL,PA,6/10/2012 19:45 +Makawao,ORANGE,CIRCLE,HI,6/10/2012 19:50 +Oxnard,RED,FORMATION,CA,6/10/2012 20:00 +Anderson,RED,LIGHT,IN,6/10/2012 21:00 +Wauwatosa,,SPHERE,WI,6/10/2012 21:35 +Harsens Island,,LIGHT,MI,6/10/2012 21:45 +Pittsburgh,,FIREBALL,PA,6/10/2012 22:15 +Salt Lake City,ORANGE,FIREBALL,UT,6/10/2012 22:20 +Lima,RED ORANGE,CIRCLE,OH,6/10/2012 22:50 +Ansel Adams Wilderness,RED,FLASH,CA,6/10/2012 23:00 +Provo,ORANGE,LIGHT,UT,6/10/2012 23:00 +Credit River,,LIGHT,MN,6/10/2012 23:50 +Centreville,,LIGHT,MD,6/11/2012 0:00 +Kalispell,,LIGHT,MT,6/11/2012 2:00 +Royalton,,SPHERE,IL,6/11/2012 3:10 +Orinda,,,CA,6/11/2012 5:38 +New York City,,DISK,NY,6/11/2012 19:45 +Oroville,,DISK,WA,6/11/2012 20:00 +Indianpolis,ORANGE,CIRCLE,IN,6/11/2012 22:00 +Coarsegold,,LIGHT,CA,6/11/2012 23:00 +Hot Springs,,,MT,6/11/2012 23:00 +Madras,,VARIOUS,OR,6/12/2012 0:00 +Tallahassee,,TRIANGLE,FL,6/12/2012 0:25 +Port Charlotte,BLUE,OVAL,FL,6/12/2012 0:45 +Salt Lake City,,TRIANGLE,UT,6/12/2012 2:00 +New York City,,OTHER,NY,6/12/2012 3:00 +Rochester,,VARIOUS,MN,6/12/2012 3:50 +Omaha,RED ORANGE,LIGHT,NE,6/12/2012 4:00 +Antioch,,CIRCLE,CA,6/12/2012 4:30 +Surprise,,VARIOUS,AZ,6/12/2012 10:05 +Spring Creek,,SPHERE,NV,6/12/2012 10:45 +Tulsa,,FORMATION,OK,6/12/2012 15:30 +Laporte,,EGG,IN,6/12/2012 16:30 +Minot,,,ND,6/12/2012 18:29 +Richmond,,OTHER,KY,6/12/2012 21:00 +Los Angeles,RED,FIREBALL,CA,6/12/2012 21:45 +Bend,,DISK,OR,6/12/2012 22:00 +Williamsville,,,MO,6/12/2012 22:25 +Akron,,CIRCLE,NY,6/12/2012 22:30 +Jacksonville,,CIRCLE,NC,6/12/2012 23:00 +Westwood,,CHEVRON,NJ,6/12/2012 23:00 +Frederick,,CIRCLE,MD,6/13/2012 9:00 +Palm Coast,,CIRCLE,FL,6/13/2012 10:00 +Mt. Lookout,,CYLINDER,WV,6/13/2012 18:00 +Dauphin Island,ORANGE,SPHERE,AL,6/13/2012 20:00 +St. Clair Shores,,CYLINDER,MI,6/13/2012 20:00 +Columbus,,OVAL,OH,6/13/2012 21:00 +Gilbert,,CIRCLE,AZ,6/13/2012 21:30 +Mobile Bay,,FIREBALL,AL,6/13/2012 21:30 +Pawleys Island,,FIREBALL,SC,6/13/2012 21:30 +East Wenatchee,RED,,WA,6/13/2012 22:00 +Goodyear,BLUE,CIRCLE,UT,6/13/2012 22:00 +Indianapolis,,CIRCLE,IN,6/13/2012 22:00 +Manchester,,OTHER,NH,6/13/2012 22:00 +Cheektowaga,,CIRCLE,NY,6/13/2012 22:40 +Upper Sandusky,,TRIANGLE,OH,6/13/2012 23:00 +Louisville,,CYLINDER,KY,6/13/2012 23:05 +Las Vegas,BLUE,FIREBALL,NV,6/13/2012 23:46 +Oxon Hill,,DISK,MD,6/14/2012 1:00 +Huntington Station,,SPHERE,NY,6/14/2012 2:15 +Las Vegas,,CYLINDER,NV,6/14/2012 3:30 +Westchester,,RECTANGLE,OH,6/14/2012 9:20 +Pawleys Island,RED,CIRCLE,SC,6/14/2012 20:00 +Dana Point,,VARIOUS,CA,6/14/2012 20:15 +Garden City,,LIGHT,SC,6/14/2012 21:00 +Myrtle Beach,,LIGHT,SC,6/14/2012 21:00 +Flint,RED,FIREBALL,MI,6/14/2012 21:30 +Southfield,,OTHER,MI,6/14/2012 21:30 +Taylor,,FIREBALL,MI,6/14/2012 21:30 +Fenton,,FIREBALL,MI,6/14/2012 21:54 +Hephzibah,,CYLINDER,GA,6/14/2012 22:00 +Hopewell,RED,TRIANGLE,VA,6/14/2012 22:00 +Mount Pleasant,ORANGE,SPHERE,TX,6/14/2012 22:00 +Norwalk,ORANGE,FORMATION,CT,6/14/2012 22:03 +Bradenton,ORANGE,CIRCLE,FL,6/14/2012 22:30 +Newport,,LIGHT,WA,6/14/2012 22:30 +Newport,,LIGHT,WA,6/14/2012 22:30 +Noblesville,,,IN,6/14/2012 22:50 +Bow,ORANGE,SPHERE,WA,6/14/2012 23:00 +Cranston,RED,FIREBALL,RI,6/14/2012 23:00 +Cranston,,SPHERE,RI,6/14/2012 23:00 +cary,YELLOW,CIRCLE,NC,6/15/2012 0:30 +Fairmont,,LIGHT,WV,6/15/2012 3:00 +Jackson,RED,,MS,6/15/2012 3:00 +Jackson,,TRIANGLE,MS,6/15/2012 3:00 +Wheeling,,LIGHT,IL,6/15/2012 3:00 +Phenix City,RED BLUE,OVAL,AL,6/15/2012 3:30 +Fremont,,CIRCLE,CA,6/15/2012 4:58 +Pittsburgh,ORANGE,OVAL,PA,6/15/2012 19:20 +Yorktown,,CIRCLE,VA,6/15/2012 19:30 +Penn Yan,,FIREBALL,NY,6/15/2012 20:30 +Cherry Grove,RED,CIRCLE,SC,6/15/2012 21:00 +Huntington,,LIGHT,NY,6/15/2012 21:00 +Hillsdale,,FIREBALL,NJ,6/15/2012 21:30 +Kelseyville,,FIREBALL,CA,6/15/2012 21:30 +Charleston,,OTHER,SC,6/15/2012 22:00 +Mountain Home,,,AR,6/15/2012 22:08 +Seattle,ORANGE,FIREBALL,WA,6/15/2012 22:15 +Three Rivers,ORANGE,FIREBALL,MI,6/15/2012 22:15 +Chaska,ORANGE,FORMATION,MN,6/15/2012 22:20 +Cibolo,,,TX,6/15/2012 22:28 +Friendship,RED ORANGE,DIAMOND,WI,6/15/2012 22:35 +Gainesville,,SPHERE,FL,6/15/2012 22:50 +Harleysville,ORANGE,FIREBALL,PA,6/15/2012 23:00 +Oakdale,RED BLUE,DIAMOND,NY,6/15/2012 23:00 +Clarkston,,TRIANGLE,MI,6/15/2012 23:20 +Schenectady,,SPHERE,NY,6/15/2012 23:37 +North Babylon,ORANGE,CIRCLE,NY,6/15/2012 23:48 +Independence,,LIGHT,MO,6/16/2012 0:00 +Sarasota,GREEN,,FL,6/16/2012 1:26 +Lake Charles,,CIRCLE,LA,6/16/2012 4:20 +Savannah,,OVAL,MO,6/16/2012 10:30 +Kyburz,,,CA,6/16/2012 12:00 +Buckeye,,FIREBALL,AZ,6/16/2012 20:00 +Weeki Wachee,,FIREBALL,FL,6/16/2012 21:28 +Bloomington,RED,,MN,6/16/2012 21:30 +San Jose,ORANGE,FIREBALL,CA,6/16/2012 21:30 +Southold,ORANGE,FIREBALL,NY,6/16/2012 21:30 +Hemet,,VARIOUS,CA,6/16/2012 21:35 +Bear,ORANGE,FORMATION,DE,6/16/2012 21:40 +Moultonborough,,TEARDROP,NH,6/16/2012 21:45 +Lodi,,FIREBALL,CA,6/16/2012 21:50 +Siesta Key,,FIREBALL,FL,6/16/2012 21:50 +Bangor,,TRIANGLE,ME,6/16/2012 22:00 +Bend,ORANGE,CIRCLE,OR,6/16/2012 22:00 +Lakewood,ORANGE,CIRCLE,WA,6/16/2012 22:00 +Louisiana,,LIGHT,LA,6/16/2012 22:00 +Mesa,,TRIANGLE,AZ,6/16/2012 22:00 +Milford,ORANGE,CIRCLE,CT,6/16/2012 22:00 +Zanesville,ORANGE,FIREBALL,OH,6/16/2012 22:01 +Wauseon,,CIRCLE,OH,6/16/2012 22:16 +Phoenix,,SPHERE,NY,6/16/2012 22:20 +Davis,RED,TRIANGLE,CA,6/16/2012 22:24 +Las Vegas,,DISK,NV,6/16/2012 22:30 +Eden,,FORMATION,NY,6/16/2012 22:45 +Cartersville,,SPHERE,GA,6/16/2012 23:00 +Muse,,LIGHT,OK,6/16/2012 23:00 +San Diego,,LIGHT,CA,6/16/2012 23:00 +Des Moines,RED ORANGE,CIRCLE,IA,6/16/2012 23:27 +Menomonie,,FIREBALL,WI,6/16/2012 23:30 +Santa Ana,,LIGHT,CA,6/16/2012 23:30 +Hampton,,,GA,6/16/2012 23:40 +Woodbury Heights,RED,CIRCLE,NJ,6/16/2012 23:45 +Niskayuna,,LIGHT,NY,6/16/2012 23:47 +Andover,ORANGE,FIREBALL,OH,6/16/2012 23:50 +Rigby,RED YELLOW,,ID,6/17/2012 0:00 +Saint Joe,,CIRCLE,AR,6/17/2012 0:00 +Bridgewater,,LIGHT,NJ,6/17/2012 0:20 +Mill Creek,,SPHERE,WA,6/17/2012 0:30 +Huntington Beach,,SPHERE,CA,6/17/2012 0:40 +Soledad,BLUE,SPHERE,CA,6/17/2012 3:30 +Moore,RED,CIRCLE,OK,6/17/2012 10:05 +Richmond Heights,,DISK,OH,6/17/2012 10:20 +Castle Rock,,OTHER,CO,6/17/2012 15:30 +Baltimore,,SPHERE,MD,6/17/2012 19:00 +Dearborn Heights,,DISK,MI,6/17/2012 20:00 +Xenia,,RECTANGLE,OH,6/17/2012 20:41 +Ocala,RED,LIGHT,FL,6/17/2012 21:00 +San Jose,,OVAL,CA,6/17/2012 21:00 +Estacada,,LIGHT,OR,6/17/2012 21:18 +Peoria,,TRIANGLE,IL,6/17/2012 21:20 +Milwaukee,ORANGE,FIREBALL,WI,6/17/2012 21:27 +Wilmington,,,OH,6/17/2012 21:45 +Burton,RED,LIGHT,MI,6/17/2012 22:30 +Chicago,,LIGHT,IL,6/17/2012 23:40 +Enfield,YELLOW,SPHERE,CT,6/18/2012 0:00 +Lincoln,,OTHER,CA,6/18/2012 0:01 +Loveland,,LIGHT,OH,6/18/2012 1:04 +Garden City,,LIGHT,KS,6/18/2012 1:44 +Beverly Shores,BLUE,SPHERE,IN,6/18/2012 2:06 +Belcourt,,OTHER,ND,6/18/2012 7:00 +Wikieup,,,AZ,6/18/2012 18:22 +Carr,,VARIOUS,CO,6/18/2012 20:30 +Flagstaff,,,AZ,6/18/2012 21:30 +Ruston,,VARIOUS,LA,6/18/2012 21:30 +Elyria,,FIREBALL,OH,6/18/2012 21:50 +Green Valley,GREEN,CIRCLE,AZ,6/18/2012 22:00 +Enfield,,LIGHT,CT,6/18/2012 22:20 +Crawfordsville,RED,LIGHT,IN,6/18/2012 23:00 +Golden City,RED,FIREBALL,MO,6/18/2012 23:00 +Connell,ORANGE,LIGHT,WA,6/18/2012 23:20 +Farmington,,LIGHT,MN,6/18/2012 23:25 +Hendersonville,,CIRCLE,TN,6/19/2012 0:00 +Rosemead,,EGG,CA,6/19/2012 16:15 +Peoria,,FORMATION,AZ,6/19/2012 19:45 +Waynesboro,,CIGAR,VA,6/19/2012 20:15 +Covina,,RECTANGLE,CA,6/19/2012 21:41 +Portland,RED GREEN,CROSS,OR,6/19/2012 21:44 +Portland,,FIREBALL,OR,6/19/2012 22:00 +Millinocket,,DIAMOND,ME,6/19/2012 22:10 +West Covina,,FIREBALL,CA,6/19/2012 22:30 +Bettendorf,,LIGHT,IA,6/19/2012 22:45 +Coupeville,,LIGHT,WA,6/19/2012 22:55 +Dewey,ORANGE,SPHERE,AZ,6/19/2012 23:00 +Kiefer,,FIREBALL,OK,6/19/2012 23:45 +Indianapolis,ORANGE,CIRCLE,IN,6/20/2012 0:00 +Melvindale,RED,LIGHT,MI,6/20/2012 0:00 +Plain City,ORANGE,TRIANGLE,OH,6/20/2012 1:00 +Ferry Reach,,DISK,SC,6/20/2012 3:55 +Greenville,,TRIANGLE,VA,6/20/2012 5:15 +Springfield,,TRIANGLE,IL,6/20/2012 6:15 +Goldendale,,FIREBALL,WA,6/20/2012 12:00 +Bill,GREEN,LIGHT,WY,6/20/2012 12:42 +North Judson,,TRIANGLE,IN,6/20/2012 15:00 +Laramie,,CIRCLE,WY,6/20/2012 16:00 +Palm Harbor,,FIREBALL,FL,6/20/2012 17:20 +Alsea,,LIGHT,OR,6/20/2012 19:00 +Lake Orion,,SPHERE,MI,6/20/2012 19:45 +Denver,,TRIANGLE,CO,6/20/2012 20:15 +Exeter,RED,LIGHT,NH,6/20/2012 21:00 +Seaside,RED,TRIANGLE,CA,6/20/2012 21:20 +Medford,,SPHERE,OR,6/20/2012 21:28 +Millinocket,,CIRCLE,ME,6/20/2012 21:29 +Wilmington,,SPHERE,VT,6/20/2012 22:00 +Coeur d'Alene,,LIGHT,ID,6/20/2012 22:20 +Tonawanda,,FIREBALL,NY,6/20/2012 22:20 +Indianapolis,,LIGHT,IN,6/20/2012 22:24 +Chelsea,RED GREEN,LIGHT,MI,6/20/2012 23:00 +Grand Forks,,CIRCLE,ND,6/20/2012 23:00 +Atwater,,CIRCLE,CA,6/20/2012 23:10 +Fairfax,ORANGE,SPHERE,CA,6/20/2012 23:30 +"Winter Haven, Eagle Lake",BLUE,FLASH,FL,6/20/2012 23:30 +Caldwell,,,ID,6/21/2012 0:00 +Harrison,ORANGE,FIREBALL,AR,6/21/2012 0:00 +McMinnville,,,OR,6/21/2012 1:00 +Richmond,,OVAL,CA,6/21/2012 1:25 +Longview,,TRIANGLE,TX,6/21/2012 2:00 +Indianapolis,,LIGHT,IN,6/21/2012 3:24 +Clearfield,RED,OTHER,PA,6/21/2012 3:45 +Leland,RED GREEN,,NC,6/21/2012 3:45 +San Pedro,,LIGHT,CA,6/21/2012 10:22 +La Porte,,,IN,6/21/2012 12:37 +Foresthill,,OTHER,CA,6/21/2012 18:57 +Anacortes,,OTHER,WA,6/21/2012 20:00 +Loveland,,LIGHT,CO,6/21/2012 21:50 +Apex,,FLASH,NC,6/21/2012 22:00 +Binghamton,,LIGHT,NY,6/21/2012 22:00 +Smithville,,LIGHT,MO,6/21/2012 22:00 +Aledo,,LIGHT,IL,6/21/2012 22:30 +Ypsilanti,,TRIANGLE,MI,6/21/2012 22:30 +Charleston,,LIGHT,SC,6/21/2012 22:45 +Palm Springs,,CIRCLE,CA,6/21/2012 22:50 +Davenport,,FIREBALL,IA,6/21/2012 23:05 +Bloomington,ORANGE,TRIANGLE,IN,6/22/2012 0:00 +Mt. Prospect,ORANGE,FIREBALL,IL,6/22/2012 0:08 +Albuquerque,,LIGHT,NM,6/22/2012 0:30 +Boise,,LIGHT,ID,6/22/2012 1:00 +Arnold,,CIRCLE,MO,6/22/2012 1:20 +Porterville,,CIRCLE,CA,6/22/2012 1:20 +Acworth,,TRIANGLE,GA,6/22/2012 2:45 +Cross Lanes,,TRIANGLE,WV,6/22/2012 9:00 +Schaumburg,,LIGHT,IL,6/22/2012 9:45 +Beebe,,TRIANGLE,AR,6/22/2012 10:19 +Broomfield,,LIGHT,CO,6/22/2012 10:30 +Hartland,ORANGE,FIREBALL,WI,6/22/2012 10:50 +Anaheim,ORANGE,CIRCLE,CA,6/22/2012 20:30 +Poway,ORANGE,SPHERE,CA,6/22/2012 20:30 +Miami,,FORMATION,FL,6/22/2012 20:45 +Pahrump,,OTHER,NV,6/22/2012 20:48 +Anna Maria Island,,CIRCLE,FL,6/22/2012 21:00 +Portsmouth,,LIGHT,VA,6/22/2012 21:00 +Homewood,,CIGAR,IL,6/22/2012 21:05 +Escondido,,FIREBALL,CA,6/22/2012 21:10 +West Edmeston,,FIREBALL,NY,6/22/2012 21:15 +Lachine,,,MI,6/22/2012 21:30 +Melbourne,,SPHERE,FL,6/22/2012 21:52 +Eden,,TRIANGLE,WI,6/22/2012 21:56 +Chicago,,LIGHT,IL,6/22/2012 21:58 +Jerome,,CONE,ID,6/22/2012 22:00 +Middlebury,ORANGE,FIREBALL,VT,6/22/2012 22:00 +Wilhoit,,OTHER,AZ,6/22/2012 22:00 +Marine City,,LIGHT,MI,6/22/2012 22:12 +Grafton,,FIREBALL,WV,6/22/2012 22:30 +Bethel Park,,FIREBALL,PA,6/22/2012 23:00 +Pittstown,ORANGE,LIGHT,NJ,6/22/2012 23:00 +Pittstown,RED ORANGE,LIGHT,NJ,6/22/2012 23:00 +Sawtooth National Forest,YELLOW,CIRCLE,ID,6/22/2012 23:00 +Webster,,DIAMOND,NY,6/22/2012 23:00 +Eden,,LIGHT,WI,6/22/2012 23:15 +Bloomington,ORANGE,LIGHT,IN,6/22/2012 23:30 +Menomonie,GREEN,FIREBALL,WI,6/22/2012 23:30 +Rome,,DISK,NY,6/23/2012 0:00 +Forked River,,TRIANGLE,NJ,6/23/2012 1:00 +Gorge,,FIREBALL,WA,6/23/2012 1:00 +Kearney,,FIREBALL,MO,6/23/2012 2:00 +Liberty,,LIGHT,ME,6/23/2012 2:00 +Camden,,LIGHT,ME,6/23/2012 9:00 +Woodhaven,,FIREBALL,MI,6/23/2012 10:00 +North Woodstock,,RECTANGLE,NH,6/23/2012 13:00 +West Natcoke,RED,SPHERE,PA,6/23/2012 17:48 +Allison Park,,,PA,6/23/2012 20:00 +Ventura,,FIREBALL,CA,6/23/2012 20:10 +Camden,ORANGE,FIREBALL,ME,6/23/2012 21:00 +North Babylon,ORANGE YELLOW,CIRCLE,NY,6/23/2012 21:15 +Bridgman,ORANGE,OVAL,MI,6/23/2012 21:30 +Downey,,OVAL,CA,6/23/2012 21:30 +Holly Springs,,DISK,NC,6/23/2012 21:30 +North Adams,,OVAL,MA,6/23/2012 21:45 +Cincinnati,ORANGE,LIGHT,OH,6/23/2012 21:58 +Carrollton,YELLOW,FIREBALL,MI,6/23/2012 22:00 +Duluth,,SPHERE,MN,6/23/2012 22:00 +Seabrook Island,,,SC,6/23/2012 22:00 +South Wales,ORANGE,SPHERE,NY,6/23/2012 22:00 +Norwalk,,LIGHT,CA,6/23/2012 22:10 +Sewell,,LIGHT,NJ,6/23/2012 22:11 +Ashtabula,,LIGHT,OH,6/23/2012 22:30 +Lima,,FIREBALL,OH,6/23/2012 22:30 +Miles City,,FIREBALL,MT,6/23/2012 22:30 +North Royalton,,FIREBALL,OH,6/23/2012 22:30 +Staten Island,,FIREBALL,NY,6/23/2012 22:30 +Ypsilanti,,TRIANGLE,MI,6/23/2012 22:30 +Deer Lodge,,CIGAR,TN,6/23/2012 22:35 +Highwood,ORANGE,SPHERE,IL,6/23/2012 22:51 +Aurora,,FIREBALL,IL,6/23/2012 23:00 +Hoosick,,LIGHT,NY,6/23/2012 23:00 +Spring Hill,,CIRCLE,KS,6/23/2012 23:00 +Wrightsville Beach,,VARIOUS,NC,6/23/2012 23:00 +Kingsport,RED,TRIANGLE,TN,6/23/2012 23:09 +Santa Rosa,ORANGE,LIGHT,CA,6/23/2012 23:15 +Santa Rosa,ORANGE,LIGHT,CA,6/23/2012 23:16 +Twin Falls,,FIREBALL,ID,6/23/2012 23:20 +East Barre,RED,OTHER,VT,6/23/2012 23:25 +Bloomfield hills,RED,FIREBALL,MI,6/23/2012 23:45 +Nanticoke,,LIGHT,PA,6/24/2012 0:00 +Springfield,YELLOW,LIGHT,MO,6/24/2012 0:02 +Milwaukee,,RECTANGLE,WI,6/24/2012 0:24 +Ballwin,,CIRCLE,MO,6/24/2012 0:50 +Bayville,,FIREBALL,NY,6/24/2012 1:00 +Burlington,,,NC,6/24/2012 1:30 +Ballwin,ORANGE,LIGHT,MO,6/24/2012 2:30 +Lake Isabella,,LIGHT,CA,6/24/2012 2:30 +Bolivar,,DISK,MO,6/24/2012 3:15 +Beverly,,LIGHT,MA,6/24/2012 4:00 +Athens,,OVAL,TN,6/24/2012 4:30 +La Crosse,ORANGE,,WI,6/24/2012 4:30 +Hoquiam,,FIREBALL,WA,6/24/2012 10:24 +Bondurant,,CIGAR,IA,6/24/2012 12:45 +Gordo,,LIGHT,AL,6/24/2012 15:00 +Oakland,,VARIOUS,CA,6/24/2012 16:30 +Hollywood,,SPHERE,CA,6/24/2012 19:15 +Smyrna,,LIGHT,TN,6/24/2012 20:00 +Sparks,,SPHERE,NV,6/24/2012 20:10 +Fulton,,LIGHT,MO,6/24/2012 21:00 +Keansburg,,CIRCLE,NJ,6/24/2012 21:25 +Cape Girardeau,GREEN,LIGHT,MO,6/24/2012 21:55 +Wolcott,,LIGHT,CT,6/24/2012 21:59 +Fremont,,LIGHT,CA,6/24/2012 22:00 +St. Charles,ORANGE,CIRCLE,MO,6/24/2012 22:00 +Willow Springs,,LIGHT,MO,6/24/2012 22:05 +Heber Springs,,LIGHT,AR,6/24/2012 22:30 +Ypsilanti,,TRIANGLE,MI,6/24/2012 22:45 +Wilkes-Barre,RED,FIREBALL,PA,6/24/2012 22:50 +Houston,,TEARDROP,TX,6/24/2012 23:00 +Owensboro,,SPHERE,KY,6/24/2012 23:00 +Union,RED,,WA,6/24/2012 23:00 +Johnstown,ORANGE,FIREBALL,OH,6/24/2012 23:22 +Front Royal,,FIREBALL,VA,6/24/2012 23:30 +Kalamazoo,,OTHER,MI,6/24/2012 23:30 +Walls,,TRIANGLE,MS,6/25/2012 0:00 +North Cove,,OVAL,NC,6/25/2012 0:30 +Tullahoma,,LIGHT,TN,6/25/2012 0:30 +Sunflower,,CIGAR,AZ,6/25/2012 9:45 +Paris,,DISK,AR,6/25/2012 10:30 +Rising Sun,,LIGHT,IN,6/25/2012 10:30 +Janesville,,CIGAR,WI,6/25/2012 11:38 +East Brunswick,,OTHER,NJ,6/25/2012 19:10 +Ocean City,,SPHERE,MD,6/25/2012 19:30 +Cathedral City,,RECTANGLE,CA,6/25/2012 20:20 +Ephrata,,FIREBALL,PA,6/25/2012 20:35 +Watson,ORANGE,FIREBALL,LA,6/25/2012 20:40 +Front Royal,,TEARDROP,VA,6/25/2012 21:00 +Hampton,,CIRCLE,VA,6/25/2012 21:15 +Westport,ORANGE,LIGHT,CT,6/25/2012 21:40 +Atlantic Ocean,ORANGE,CIRCLE,FL,6/25/2012 22:00 +Cotulla,,LIGHT,TX,6/25/2012 22:00 +Lee,,RECTANGLE,NH,6/25/2012 22:00 +Middleton,,LIGHT,WI,6/25/2012 22:00 +Toledo,ORANGE,LIGHT,OH,6/25/2012 22:20 +Apison,,LIGHT,TN,6/25/2012 23:00 +Huron,RED,LIGHT,OH,6/25/2012 23:00 +Wilkes-Barre,,LIGHT,PA,6/25/2012 23:30 +El Paso,RED,CIRCLE,TX,6/26/2012 0:00 +Crofton,,LIGHT,MD,6/26/2012 0:01 +Dunedin,ORANGE,CYLINDER,FL,6/26/2012 1:00 +Dunedin,ORANGE,CYLINDER,FL,6/26/2012 1:00 +Las Cruces,,VARIOUS,NM,6/26/2012 5:00 +Kingsport,,FIREBALL,TN,6/26/2012 5:30 +Mabank,,LIGHT,TX,6/26/2012 9:32 +West Des Moines,,LIGHT,IA,6/26/2012 10:00 +Lee,,RECTANGLE,NH,6/26/2012 11:00 +Charlotte,ORANGE,LIGHT,NC,6/26/2012 12:04 +Memphis,,CYLINDER,TN,6/26/2012 16:45 +Maplewood,,CIGAR,MO,6/26/2012 20:30 +Moore,,FIREBALL,OK,6/26/2012 20:30 +Springtown,ORANGE,LIGHT,TX,6/26/2012 21:30 +Trussville,,OVAL,AL,6/26/2012 21:39 +Menominee,,DIAMOND,MI,6/26/2012 22:00 +Detroit,,LIGHT,MI,6/26/2012 22:35 +Patrick County,,,VA,6/26/2012 23:00 +Detroit,,DIAMOND,MI,6/26/2012 23:25 +Fresno,,SPHERE,CA,6/26/2012 23:30 +Eldridge,,TRIANGLE,IA,6/26/2012 23:45 +Nampa,,,ID,6/27/2012 0:00 +Minneapolis,,,MN,6/27/2012 2:00 +Prescott National Forest,,CIRCLE,AZ,6/27/2012 2:00 +Los Banos,,TRIANGLE,CA,6/27/2012 2:15 +Seattle,,EGG,WA,6/27/2012 2:15 +Monterey,,CYLINDER,CA,6/27/2012 3:25 +Las Vegas,,CIGAR,NV,6/27/2012 10:00 +Bethany Beach,,SPHERE,DE,6/27/2012 13:00 +Dixon,,OTHER,IL,6/27/2012 13:00 +Detroit,,OVAL,MI,6/27/2012 17:30 +San Leandro,,DISK,CA,6/27/2012 18:00 +Federalsburg,,,MD,6/27/2012 20:00 +Albuquerque,,OTHER,NM,6/27/2012 21:00 +O'Fallon,ORANGE,CIRCLE,MO,6/27/2012 21:00 +Parkton,,LIGHT,NC,6/27/2012 21:00 +Mays Landing,BLUE,SPHERE,NJ,6/27/2012 22:00 +Mount Sidney,ORANGE,SPHERE,VA,6/27/2012 22:00 +Parkville,,TRIANGLE,MD,6/27/2012 22:01 +Brunswick,ORANGE,SPHERE,OH,6/27/2012 22:04 +Shelby Twp,,CIRCLE,MI,6/27/2012 22:05 +Costa Mesa,RED,LIGHT,CA,6/27/2012 22:15 +Gila Bend,,FIREBALL,AZ,6/27/2012 22:23 +Seattle,ORANGE,CIRCLE,WA,6/27/2012 22:30 +Hamburg,,,PA,6/27/2012 22:45 +Parma,,FIREBALL,OH,6/27/2012 23:00 +Rocklin,RED,LIGHT,CA,6/27/2012 23:00 +Show Low,,LIGHT,AZ,6/27/2012 23:00 +Walton,,LIGHT,WV,6/27/2012 23:00 +Wildwood,,FIREBALL,NJ,6/27/2012 23:00 +Iowa City,,FIREBALL,IA,6/27/2012 23:30 +Tulsa,,FORMATION,OK,6/27/2012 23:42 +Harrisburg,RED GREEN,,PA,6/28/2012 0:00 +Pawtucket,,SPHERE,RI,6/28/2012 3:09 +Medford,,SPHERE,OR,6/28/2012 5:57 +Sherman Oaks,,DIAMOND,CA,6/28/2012 6:45 +Las Vegas,,DISK,NV,6/28/2012 12:00 +Redding,,FLASH,CA,6/28/2012 12:00 +Cheney,,TRIANGLE,WA,6/28/2012 16:00 +Freehold,,FIREBALL,NJ,6/28/2012 21:04 +South Charleston,,LIGHT,WV,6/28/2012 21:30 +Thousand Oaks,,DISK,CA,6/28/2012 22:00 +York,RED,FIREBALL,NE,6/28/2012 22:15 +Jonesboro,,FIREBALL,LA,6/28/2012 22:39 +Plainfield,,CIRCLE,NJ,6/28/2012 22:40 +Alexandria,RED,TRIANGLE,MN,6/29/2012 2:15 +Antioch,,LIGHT,TN,6/29/2012 3:15 +South Ogden,,OTHER,UT,6/29/2012 7:45 +PIco Rivera,ORANGE,FIREBALL,CA,6/29/2012 8:42 +Heyburn,,TRIANGLE,ID,6/29/2012 8:50 +Colorado Springs,,LIGHT,CO,6/29/2012 9:00 +Las Vegas,,CIGAR,NV,6/29/2012 10:00 +Evanston,,LIGHT,IL,6/29/2012 20:00 +Milton,ORANGE YELLOW,SPHERE,FL,6/29/2012 20:35 +Knoxville,RED,OTHER,TN,6/29/2012 20:45 +Bristol,,,TN,6/29/2012 21:00 +Glasgow,RED,FORMATION,KY,6/29/2012 21:30 +Shelbyville,,EGG,TN,6/29/2012 21:37 +Portland,YELLOW,FIREBALL,OR,6/29/2012 21:40 +Bellingham,RED,FIREBALL,WA,6/29/2012 21:45 +Bellingham,,LIGHT,WA,6/29/2012 21:55 +Cotulla,,OTHER,TX,6/29/2012 22:20 +Kingsford,,LIGHT,MI,6/29/2012 22:20 +Lebanon,ORANGE,OVAL,OR,6/29/2012 22:20 +Loveland,,FLASH,CO,6/29/2012 22:30 +Seattle,RED,LIGHT,WA,6/29/2012 22:33 +Jordan,ORANGE,LIGHT,MN,6/29/2012 22:59 +Lafayette,,LIGHT,LA,6/29/2012 23:05 +Eureka,ORANGE,SPHERE,CA,6/29/2012 23:15 +Parkville,RED ORANGE YELLOW,FIREBALL,MD,6/29/2012 23:30 +Yankton,RED,LIGHT,SD,6/29/2012 23:30 +Kansas City,,CIGAR,MO,6/30/2012 0:00 +Quincy,RED,,MA,6/30/2012 0:30 +Allentown,GREEN,FIREBALL,PA,6/30/2012 2:30 +Philadelphia,,LIGHT,PA,6/30/2012 8:30 +Bridgeport,,CIRCLE,CT,6/30/2012 8:45 +Eureka,RED,FIREBALL,CA,6/30/2012 9:00 +Turnersville,,FIREBALL,NJ,6/30/2012 10:00 +Skowhegan,ORANGE,CIRCLE,ME,6/30/2012 10:20 +Ada,,DISK,OK,6/30/2012 13:50 +Omaha,GREEN,SPHERE,NE,6/30/2012 15:00 +Anacortes,,DISK,WA,6/30/2012 17:00 +Palm Harbor,,FIREBALL,FL,6/30/2012 17:20 +Rockaway,,LIGHT,NY,6/30/2012 20:00 +Mesa,,TRIANGLE,AZ,6/30/2012 20:30 +Torrington,,FIREBALL,CT,6/30/2012 21:00 +East Islip,ORANGE,FIREBALL,NY,6/30/2012 21:30 +Jamestown,,DISK,PA,6/30/2012 21:30 +Jax Beach,,LIGHT,FL,6/30/2012 21:30 +Lakeside,ORANGE,FIREBALL,CA,6/30/2012 21:30 +Auburn,RED,LIGHT,NY,6/30/2012 21:45 +Summerville,RED,LIGHT,SC,6/30/2012 21:47 +Acton,ORANGE,CIRCLE,IN,6/30/2012 22:00 +Chesapeake,,LIGHT,VA,6/30/2012 22:00 +Johnsonville,,CIRCLE,NY,6/30/2012 22:00 +Utica,,CIRCLE,NY,6/30/2012 22:02 +Palatine,RED,SPHERE,IL,6/30/2012 22:05 +Ocean Park,RED,SPHERE,WA,6/30/2012 22:10 +Erie,,SPHERE,PA,6/30/2012 22:15 +Riverside,RED ORANGE,CIRCLE,RI,6/30/2012 22:15 +Meriden,ORANGE,CYLINDER,CT,6/30/2012 22:30 +Lebanon,RED,FIREBALL,NY,6/30/2012 22:45 +Columbia,ORANGE,SPHERE,NJ,6/30/2012 23:00 +Monroe,,SPHERE,MI,6/30/2012 23:00 +Navarre,,LIGHT,FL,6/30/2012 23:00 +Niles,RED ORANGE YELLOW,VARIOUS,OH,6/30/2012 23:00 +Saint Joseph,,FIREBALL,MO,6/30/2012 23:00 +Toledo,,LIGHT,OH,6/30/2012 23:00 +Blaine,,LIGHT,WA,6/30/2012 23:30 +Bremerton,,OVAL,WA,6/30/2012 23:50 +Burgaw,ORANGE,CIRCLE,NC,7/1/2012 0:00 +Cincinnati,ORANGE,DISK,OH,7/1/2012 0:00 +Manville,,FIREBALL,NJ,7/1/2012 0:00 +Sedro Woolley,,FIREBALL,WA,7/1/2012 0:00 +Pittsburgh,,LIGHT,PA,7/1/2012 1:00 +Denver,,DISK,CO,7/1/2012 4:30 +Oakwood,,LIGHT,GA,7/1/2012 6:00 +Ephrata,,CONE,PA,7/1/2012 11:00 +Moses Lake,,OTHER,WA,7/1/2012 19:00 +Newport,RED,CIRCLE,RI,7/1/2012 20:00 +Indianapolis,,SPHERE,IN,7/1/2012 21:00 +Millard,,LIGHT,NE,7/1/2012 21:00 +Blue Springs,RED BLUE,CIRCLE,MO,7/1/2012 21:45 +Lansing,ORANGE,CIRCLE,NY,7/1/2012 21:45 +Dingmans Ferry,,OVAL,PA,7/1/2012 22:00 +West Valley City,,FIREBALL,UT,7/1/2012 22:00 +Greenwich,ORANGE,LIGHT,CT,7/1/2012 22:10 +Sunbury,ORANGE,OVAL,PA,7/1/2012 22:20 +Babylon,,FIREBALL,NY,7/1/2012 22:30 +Babylon,,FIREBALL,NY,7/1/2012 22:30 +Taylor,ORANGE,LIGHT,MI,7/1/2012 22:30 +Seattle,ORANGE YELLOW,OTHER,WA,7/1/2012 22:50 +Whitesville,,RECTANGLE,WV,7/1/2012 23:00 +Yarmouthport,,SPHERE,MA,7/2/2012 0:00 +Blue Island,,FLASH,IL,7/2/2012 3:25 +Lapeer,GREEN BLUE,TRIANGLE,MI,7/2/2012 4:15 +High Ridge,RED ORANGE YELLOW,TEARDROP,MO,7/2/2012 17:20 +Akron,,LIGHT,OH,7/2/2012 18:00 +Atlantic Beach,,LIGHT,NC,7/2/2012 20:00 +Lawrenceburg,,TEARDROP,TN,7/2/2012 20:00 +Oak Island,,FIREBALL,NC,7/2/2012 21:30 +Deadwood,RED,,SD,7/2/2012 22:00 +Detroit,,LIGHT,MI,7/2/2012 22:16 +Cross,,CIRCLE,SC,7/2/2012 22:30 +Sterling,,,IL,7/2/2012 22:40 +Boise,,SPHERE,ID,7/2/2012 23:00 +Fairborn,BLUE,FLASH,OH,7/2/2012 23:00 +State College,,OTHER,PA,7/2/2012 23:00 +Elmira,,,NY,7/2/2012 23:45 +Renton,,FIREBALL,WA,7/2/2012 23:51 +New Bedford,,LIGHT,MA,7/3/2012 0:30 +Egan,,LIGHT,SD,7/3/2012 1:00 +Branford,ORANGE,SPHERE,CT,7/3/2012 20:30 +Nags Head,ORANGE,SPHERE,NC,7/3/2012 21:00 +Salem,ORANGE,FIREBALL,MO,7/3/2012 21:00 +Salem,ORANGE,FIREBALL,MO,7/3/2012 21:00 +Herkimer,,OTHER,NY,7/3/2012 21:11 +Auburn,,LIGHT,WA,7/3/2012 21:45 +Iron Mountain,RED,LIGHT,MI,7/3/2012 21:45 +Black Canyon,,LIGHT,AZ,7/3/2012 21:50 +Anderson,,FIREBALL,CA,7/3/2012 22:00 +Cameron,ORANGE,SPHERE,MO,7/3/2012 22:00 +Hillsville,,OVAL,VA,7/3/2012 22:00 +Salamanca,,OVAL,NY,7/3/2012 22:00 +Walled Lake,ORANGE,LIGHT,MI,7/3/2012 22:00 +West Harrison,,OTHER,IN,7/3/2012 22:00 +West Harrison,,OTHER,IN,7/3/2012 22:00 +Wilkeson,,FIREBALL,WA,7/3/2012 22:00 +Ferndale,,LIGHT,WA,7/3/2012 22:15 +Lake Leelanau,RED,CIRCLE,MI,7/3/2012 22:20 +Wanamaker,,LIGHT,IN,7/3/2012 22:20 +Irvine,ORANGE,TRIANGLE,CA,7/3/2012 22:30 +Portsmouth,,CIRCLE,NH,7/3/2012 22:30 +Washougal,ORANGE,FIREBALL,WA,7/3/2012 22:30 +Grayling,RED,CIRCLE,MI,7/3/2012 22:45 +Lake Leelanau,,CIRCLE,MI,7/3/2012 22:45 +La Porte,,CIRCLE,IN,7/3/2012 22:55 +Ardmore,ORANGE,FIREBALL,OK,7/3/2012 23:00 +Shillington,,FIREBALL,PA,7/3/2012 23:00 +Belt,,,MT,7/3/2012 23:10 +Carthage,,CIRCLE,MO,7/3/2012 23:45 +Bear,,FIREBALL,DE,7/4/2012 0:00 +Hanover Park,,SPHERE,IL,7/4/2012 0:00 +Lacey,ORANGE,DISK,WA,7/4/2012 0:10 +Derby,ORANGE,FIREBALL,CT,7/4/2012 0:33 +Gainsville,ORANGE,CIRCLE,FL,7/4/2012 2:45 +Springfield,,LIGHT,OH,7/4/2012 3:00 +Winnemucca,GREEN,LIGHT,NV,7/4/2012 3:00 +Spanaway,,VARIOUS,WA,7/4/2012 4:00 +Philadelphia,,OTHER,PA,7/4/2012 5:00 +Corpus Christi,,OTHER,TX,7/4/2012 10:30 +Cleveland,,TEARDROP,OH,7/4/2012 14:30 +Ocean City,,CYLINDER,MD,7/4/2012 16:30 +Springfield,ORANGE,FIREBALL,MO,7/4/2012 16:55 +Goochland County,,CYLINDER,VA,7/4/2012 17:00 +Gaithersburg,,EGG,MD,7/4/2012 18:00 +Roswell,ORANGE,CIRCLE,GA,7/4/2012 18:30 +Kansas City,,SPHERE,MO,7/4/2012 19:00 +Kingman,,OTHER,AZ,7/4/2012 19:00 +Omaha,,FIREBALL,NE,7/4/2012 19:30 +Lahaina,,FIREBALL,HI,7/4/2012 19:45 +Las Vegas,,CIRCLE,NV,7/4/2012 20:15 +New Rochelle,RED ORANGE,DISK,NY,7/4/2012 20:30 +Portage,,OVAL,ME,7/4/2012 20:30 +Durant,ORANGE,SPHERE,OK,7/4/2012 20:40 +Indian Harbour Beach,,LIGHT,FL,7/4/2012 20:40 +West Covina,RED,FIREBALL,CA,7/4/2012 20:45 +Arlington Heights,,SPHERE,IL,7/4/2012 21:00 +Beaumont,,LIGHT,CA,7/4/2012 21:00 +Brick,,CIRCLE,NJ,7/4/2012 21:00 +Broken Arrow,ORANGE,FIREBALL,OK,7/4/2012 21:00 +Checotah,,OVAL,OK,7/4/2012 21:00 +Fort Leonard Wood,,LIGHT,MO,7/4/2012 21:00 +Galveston,,TRIANGLE,TX,7/4/2012 21:00 +Hoffman Estates,ORANGE GREEN,LIGHT,IL,7/4/2012 21:00 +North Haven,,CIRCLE,CT,7/4/2012 21:00 +Orchard Park,RED,FIREBALL,NY,7/4/2012 21:00 +Seattle,RED,LIGHT,WA,7/4/2012 21:00 +Springfield,,CIRCLE,IL,7/4/2012 21:00 +Union Beach,,FIREBALL,NJ,7/4/2012 21:00 +Westminster,,CIRCLE,CA,7/4/2012 21:00 +Bristol,,FIREBALL,PA,7/4/2012 21:15 +Cedar Park,GREEN,CIRCLE,TX,7/4/2012 21:15 +Edwardsville,,LIGHT,IL,7/4/2012 21:15 +Lantana,,CYLINDER,FL,7/4/2012 21:15 +Spring Hill,RED ORANGE,DIAMOND,FL,7/4/2012 21:15 +Springfield,,CIRCLE,OR,7/4/2012 21:15 +Ventura,,LIGHT,CA,7/4/2012 21:15 +Chicago Heights,,CIGAR,IL,7/4/2012 21:20 +Dallas,,FIREBALL,TX,7/4/2012 21:20 +Dallas,RED,FIREBALL,TX,7/4/2012 21:20 +Auburn,YELLOW,FIREBALL,PA,7/4/2012 21:30 +Barberton,RED,CIRCLE,OH,7/4/2012 21:30 +Broomfield,,FIREBALL,CO,7/4/2012 21:30 +Chino Hills,,OVAL,CA,7/4/2012 21:30 +Coral Springs,,CHEVRON,FL,7/4/2012 21:30 +Deltona,,FIREBALL,FL,7/4/2012 21:30 +Erie,ORANGE,FIREBALL,PA,7/4/2012 21:30 +Hubert,RED,LIGHT,NC,7/4/2012 21:30 +Mashpee,RED,FIREBALL,MA,7/4/2012 21:30 +Meridian,,SPHERE,ID,7/4/2012 21:30 +Morgantown,,CIRCLE,WV,7/4/2012 21:30 +Muskogee,RED,CIRCLE,OK,7/4/2012 21:30 +New Castle,ORANGE,DISK,PA,7/4/2012 21:30 +Newark,,FIREBALL,DE,7/4/2012 21:30 +Port St. Lucie,ORANGE,FIREBALL,FL,7/4/2012 21:30 +Springfield,RED,FIREBALL,MO,7/4/2012 21:30 +West Haven,ORANGE,TRIANGLE,CT,7/4/2012 21:30 +West Mifflin,,FIREBALL,PA,7/4/2012 21:30 +Lenexa,RED,OVAL,KS,7/4/2012 21:32 +Sunrise,,LIGHT,FL,7/4/2012 21:38 +Seattle,,LIGHT,WA,7/4/2012 21:40 +Winter Haven,ORANGE,CIRCLE,FL,7/4/2012 21:40 +Puyallup,,FIREBALL,WA,7/4/2012 21:44 +Choctaw,RED,LIGHT,OK,7/4/2012 21:45 +Naperville,,FIREBALL,IL,7/4/2012 21:45 +Portland,,CIRCLE,TX,7/4/2012 21:45 +Pottstown,,FIREBALL,PA,7/4/2012 21:45 +Spanaway,,FIREBALL,WA,7/4/2012 21:45 +Toppenish,ORANGE,SPHERE,WA,7/4/2012 21:45 +Tulsa,,SPHERE,OK,7/4/2012 21:45 +Pottstown,,SPHERE,PA,7/4/2012 21:50 +Steinhatchee,RED,CIRCLE,FL,7/4/2012 21:50 +Steinhatchee,,CIRCLE,FL,7/4/2012 21:55 +Arlington,ORANGE,LIGHT,WA,7/4/2012 22:00 +Austintown,,OTHER,OH,7/4/2012 22:00 +Bothell,,CIRCLE,WA,7/4/2012 22:00 +Broken Arrow,ORANGE,FIREBALL,OK,7/4/2012 22:00 +Buffalo,RED ORANGE,FIREBALL,NY,7/4/2012 22:00 +Chicago,,OVAL,IL,7/4/2012 22:00 +Chicago,RED ORANGE,OVAL,IL,7/4/2012 22:00 +Daytona Beach,,CIRCLE,FL,7/4/2012 22:00 +Duluth,,CIRCLE,MN,7/4/2012 22:00 +Elizabeth City,RED,DISK,NC,7/4/2012 22:00 +Fayetteville,RED,SPHERE,NC,7/4/2012 22:00 +Graham,,TRIANGLE,WA,7/4/2012 22:00 +Houston,,LIGHT,TX,7/4/2012 22:00 +Hyde,,LIGHT,PA,7/4/2012 22:00 +Lee's Summit,,VARIOUS,MO,7/4/2012 22:00 +Lou,ORANGE,FIREBALL,KY,7/4/2012 22:00 +Mount Vernon,RED,FORMATION,WA,7/4/2012 22:00 +Painesville,,LIGHT,OH,7/4/2012 22:00 +Papillion,,CIRCLE,NE,7/4/2012 22:00 +Puyallup,ORANGE,LIGHT,WA,7/4/2012 22:00 +Puyallup,,TRIANGLE,WA,7/4/2012 22:00 +Renton,,FIREBALL,WA,7/4/2012 22:00 +Ridley Park,,SPHERE,PA,7/4/2012 22:00 +Rogers,,OVAL,AR,7/4/2012 22:00 +Saint Helena,BLUE,FLASH,CA,7/4/2012 22:00 +Sand Springs,RED,FIREBALL,OK,7/4/2012 22:00 +Seattle,,FIREBALL,WA,7/4/2012 22:00 +Seattle,,LIGHT,WA,7/4/2012 22:00 +Tacoma,,FIREBALL,WA,7/4/2012 22:00 +Topeka,RED,CIRCLE,KS,7/4/2012 22:00 +Tulsa,,FIREBALL,OK,7/4/2012 22:00 +Vandercook Lake,,FIREBALL,MI,7/4/2012 22:00 +Warrenton,,DIAMOND,OR,7/4/2012 22:00 +Westport,,LIGHT,CT,7/4/2012 22:00 +Hutto,,LIGHT,TX,7/4/2012 22:10 +Rochester,GREEN,CIRCLE,NY,7/4/2012 22:10 +Shelby Township,ORANGE,CIRCLE,MI,7/4/2012 22:10 +Wilkeson,,FIREBALL,WA,7/4/2012 22:10 +Louisville,ORANGE,DISK,KY,7/4/2012 22:11 +Duluth,ORANGE,LIGHT,MN,7/4/2012 22:15 +Enumclaw,RED,CIRCLE,WA,7/4/2012 22:15 +Renton,,CIRCLE,WA,7/4/2012 22:15 +Yakima,,SPHERE,WA,7/4/2012 22:15 +Mount Pleasant,,LIGHT,IN,7/4/2012 22:19 +Beaver Falls,,FIREBALL,PA,7/4/2012 22:20 +Maple Valley,,FIREBALL,WA,7/4/2012 22:20 +Pasadena,,DISK,CA,7/4/2012 22:20 +Pasadena,,DISK,CA,7/4/2012 22:20 +Redding,RED,FIREBALL,CA,7/4/2012 22:21 +Geneva On Lake,ORANGE,FIREBALL,OH,7/4/2012 22:27 +Annapolis,RED,TRIANGLE,MD,7/4/2012 22:30 +Boise,,OTHER,ID,7/4/2012 22:30 +Bozeman,,OTHER,MT,7/4/2012 22:30 +Bremerton,,CIRCLE,WA,7/4/2012 22:30 +Bremerton,,OVAL,WA,7/4/2012 22:30 +Deerfield Beach,,LIGHT,FL,7/4/2012 22:30 +Enid,RED,CIRCLE,OK,7/4/2012 22:30 +Enumclaw,ORANGE,CIRCLE,WA,7/4/2012 22:30 +Levittown,ORANGE,SPHERE,NY,7/4/2012 22:30 +Longview,,OTHER,WA,7/4/2012 22:30 +Louisville,ORANGE,SPHERE,KY,7/4/2012 22:30 +Medical Lake,,FIREBALL,WA,7/4/2012 22:30 +Moore,RED,CIRCLE,OK,7/4/2012 22:30 +Mossyrock,ORANGE,CIRCLE,WA,7/4/2012 22:30 +North Olympia,,OVAL,WA,7/4/2012 22:30 +Ocean Park,ORANGE,SPHERE,WA,7/4/2012 22:30 +Portage,,FIREBALL,ME,7/4/2012 22:30 +Sarasota,,FIREBALL,FL,7/4/2012 22:30 +Sedro Woolley,RED ORANGE,LIGHT,WA,7/4/2012 22:30 +Springfield,,FIREBALL,IL,7/4/2012 22:30 +Warren,,LIGHT,MI,7/4/2012 22:30 +Hillsville,ORANGE,CIRCLE,VA,7/4/2012 22:31 +Fort Collins,,EGG,CO,7/4/2012 22:33 +Issaquah,,FIREBALL,WA,7/4/2012 22:33 +Oklahoma City,ORANGE,FIREBALL,OK,7/4/2012 22:35 +Seattle,,DIAMOND,WA,7/4/2012 22:35 +Aurora,,FIREBALL,IL,7/4/2012 22:45 +Lynnwood,,FIREBALL,WA,7/4/2012 22:45 +Plymouth,,FIREBALL,MN,7/4/2012 22:45 +Warrensburg,RED,SPHERE,MO,7/4/2012 22:45 +Allyn,RED,FIREBALL,WA,7/4/2012 22:50 +Vancouver,,SPHERE,WA,7/4/2012 22:50 +Fox Island,ORANGE,FIREBALL,WA,7/4/2012 23:00 +Piedmont,,LIGHT,SC,7/4/2012 23:00 +Pt. St. Lucie,ORANGE,,FL,7/4/2012 23:00 +Seattle,,SPHERE,WA,7/4/2012 23:00 +Shelton,RED,CIRCLE,WA,7/4/2012 23:00 +Springfield,ORANGE,FIREBALL,OR,7/4/2012 23:00 +Walkerton,,,IN,7/4/2012 23:00 +Warren,,OTHER,OH,7/4/2012 23:00 +White City,ORANGE,SPHERE,OR,7/4/2012 23:00 +Florissant,,FIREBALL,MO,7/4/2012 23:05 +Xenia,,FIREBALL,OH,7/4/2012 23:05 +Xenia,,FIREBALL,OH,7/4/2012 23:05 +Bluffton,,LIGHT,OH,7/4/2012 23:10 +Reading,,FIREBALL,PA,7/4/2012 23:10 +Bothell,RED,FIREBALL,WA,7/4/2012 23:13 +Birmingham,,OVAL,AL,7/4/2012 23:23 +Everett,RED,,WA,7/4/2012 23:30 +Kissimmee,ORANGE,,FL,7/4/2012 23:30 +Lexington,RED,LIGHT,KY,7/4/2012 23:30 +New Port Richey,ORANGE,,FL,7/4/2012 23:30 +Portland,,DIAMOND,ME,7/4/2012 23:30 +Burleson,,CIRCLE,TX,7/4/2012 23:35 +Daytona Beach Shores,RED,LIGHT,FL,7/4/2012 23:45 +New Caney,,FIREBALL,TX,7/5/2012 0:45 +Tallahassee,GREEN,SPHERE,FL,7/5/2012 0:55 +Caldwell,,FIREBALL,ID,7/5/2012 1:00 +Tacoma,,LIGHT,WA,7/5/2012 3:00 +Wilmington,,VARIOUS,NC,7/5/2012 3:45 +Eldorado,,SPHERE,KS,7/5/2012 4:00 +Riverside,ORANGE,FIREBALL,CA,7/5/2012 8:00 +Lancaster,,CIRCLE,KY,7/5/2012 10:20 +Sellersburg,,FIREBALL,IN,7/5/2012 10:30 +Fort Mohave,ORANGE,OTHER,AZ,7/5/2012 19:00 +Burien,YELLOW,FIREBALL,WA,7/5/2012 19:30 +Channahon,,LIGHT,IL,7/5/2012 21:25 +Chicago,RED,CIRCLE,IL,7/5/2012 21:30 +New Freedom,,LIGHT,PA,7/5/2012 21:42 +Pulaski,ORANGE,CIRCLE,NY,7/5/2012 22:00 +St. Robert,,FIREBALL,MO,7/5/2012 22:00 +Burien,RED,CIRCLE,WA,7/5/2012 22:10 +Sister Bay,,FORMATION,WI,7/5/2012 22:30 +Mancheter,ORANGE,FIREBALL,NJ,7/5/2012 22:45 +Edmonds,RED ORANGE,FIREBALL,WA,7/5/2012 23:00 +Forest Park,,CIRCLE,OH,7/5/2012 23:00 +N. Truro,,FIREBALL,MA,7/5/2012 23:45 +Orchard Park,,,NY,7/6/2012 0:00 +Bristol,,SPHERE,CT,7/6/2012 9:00 +Coeur d'Alene,,TRIANGLE,ID,7/6/2012 10:45 +Crestview,RED,FORMATION,KY,7/6/2012 20:30 +Kernersville,,FIREBALL,NC,7/6/2012 21:00 +West Monroe,RED ORANGE,LIGHT,LA,7/6/2012 21:00 +Derby,,FIREBALL,CT,7/6/2012 21:10 +Carthage,,SPHERE,NC,7/6/2012 21:40 +Laguna Hills,,FIREBALL,CA,7/6/2012 21:45 +Millersburg,,LIGHT,PA,7/6/2012 21:45 +Glendale,ORANGE,,CA,7/6/2012 21:55 +Bedford,,LIGHT,TX,7/6/2012 22:00 +Bristol,,CIRCLE,CT,7/6/2012 22:00 +Pedro,,FORMATION,OH,7/6/2012 22:00 +Pittsburgh,,FIREBALL,PA,7/6/2012 22:00 +Sacramento,BLUE,VARIOUS,CA,7/6/2012 22:00 +Yukon,,FIREBALL,OK,7/6/2012 22:01 +Lewisburg,YELLOW,TRIANGLE,WV,7/6/2012 22:30 +Allentown,,,PA,7/6/2012 22:40 +Coeur d'Alene,ORANGE,LIGHT,ID,7/6/2012 22:45 +Liberty Township,,CIRCLE,OH,7/6/2012 23:00 +Newport,RED,CIRCLE,NC,7/6/2012 23:00 +Stamford,,FORMATION,CT,7/6/2012 23:00 +Walton,,FIREBALL,KY,7/6/2012 23:00 +Williamsville,RED,LIGHT,NY,7/6/2012 23:30 +Vancouver,,LIGHT,WA,7/7/2012 0:00 +Vancouver,,LIGHT,WA,7/7/2012 0:15 +Midlothian,ORANGE,SPHERE,VA,7/7/2012 0:45 +Olathe,,OTHER,KS,7/7/2012 1:00 +Stamford,,FIREBALL,CT,7/7/2012 1:00 +El Centro,,CIGAR,CA,7/7/2012 2:00 +Frankfort,ORANGE,LIGHT,MI,7/7/2012 4:00 +Parma,ORANGE,,OH,7/7/2012 10:30 +Port Sanilac,,TRIANGLE,MI,7/7/2012 11:00 +Annapolis,,,MD,7/7/2012 16:00 +New Brunswick,,SPHERE,NJ,7/7/2012 19:18 +Montclair,,FIREBALL,NJ,7/7/2012 19:45 +Chandler,ORANGE,FIREBALL,AZ,7/7/2012 21:00 +Sharon,YELLOW,FIREBALL,PA,7/7/2012 21:00 +Orange,,FIREBALL,CA,7/7/2012 21:15 +Penn Yan,,LIGHT,NY,7/7/2012 21:15 +Campbell,ORANGE,LIGHT,CA,7/7/2012 21:30 +Jersey Shore,,FIREBALL,PA,7/7/2012 21:30 +Stockton,,SPHERE,MO,7/7/2012 21:45 +Dewey,,CIRCLE,OK,7/7/2012 21:50 +Albuquerque,,,NM,7/7/2012 22:00 +Altoona,,CIRCLE,PA,7/7/2012 22:00 +Oaks,,CIRCLE,PA,7/7/2012 22:00 +Seattle,,CIRCLE,WA,7/7/2012 22:00 +Seattle,,CIRCLE,WA,7/7/2012 22:00 +Saint Peters,ORANGE,TRIANGLE,MO,7/7/2012 22:08 +Newport,ORANGE,FIREBALL,RI,7/7/2012 22:09 +Elmira,,OVAL,NY,7/7/2012 22:10 +Edmonton,ORANGE,OVAL,KY,7/7/2012 22:15 +Portland,ORANGE,SPHERE,ME,7/7/2012 22:15 +Fairfield,,FIREBALL,OH,7/7/2012 22:20 +Tomahawk,RED ORANGE,FIREBALL,WI,7/7/2012 22:30 +Johnstown,ORANGE,CIRCLE,PA,7/7/2012 22:50 +Seattle,,FIREBALL,WA,7/7/2012 23:00 +Seattle,,OTHER,WA,7/7/2012 23:07 +Olympia,,FIREBALL,WA,7/7/2012 23:10 +Traverse City,,LIGHT,MI,7/7/2012 23:15 +West Valley City,RED,FIREBALL,UT,7/7/2012 23:15 +Port Orchard,,LIGHT,WA,7/7/2012 23:19 +Detroit,,LIGHT,OR,7/7/2012 23:30 +Manzanita,ORANGE,RECTANGLE,OR,7/7/2012 23:30 +Vadnais Heights,RED,OVAL,MN,7/7/2012 23:30 +Seattle,,FIREBALL,WA,7/7/2012 23:40 +Kalispell,,DIAMOND,MT,7/8/2012 0:00 +Stafford,,LIGHT,VA,7/8/2012 0:00 +Clinton,,FIREBALL,WA,7/8/2012 0:45 +Miami,,CYLINDER,FL,7/8/2012 3:30 +Moreno Valley,,FLASH,CA,7/8/2012 3:33 +Springfield,ORANGE,FIREBALL,MO,7/8/2012 10:32 +West Valley City,,SPHERE,UT,7/8/2012 17:50 +Santa Nella,RED,FORMATION,CA,7/8/2012 20:45 +Santa Nella,RED,SPHERE,CA,7/8/2012 20:45 +Linden,ORANGE,FIREBALL,NJ,7/8/2012 21:00 +Oakland,ORANGE,CIRCLE,CA,7/8/2012 21:03 +Chicopee,,FIREBALL,MA,7/8/2012 21:15 +Norman,RED,VARIOUS,OK,7/8/2012 21:30 +Pomona,ORANGE,SPHERE,CA,7/8/2012 21:30 +Bolingbrook,,FIREBALL,IL,7/8/2012 21:52 +Los Angeles,ORANGE,CIRCLE,CA,7/8/2012 22:00 +Mission Hills,,FIREBALL,CA,7/8/2012 22:00 +North Topsail Beach,RED,LIGHT,NC,7/8/2012 22:10 +Prescott Valley,ORANGE,SPHERE,AZ,7/8/2012 22:10 +Woodbridge,RED,SPHERE,VA,7/8/2012 22:12 +Kansas City,ORANGE,SPHERE,MO,7/8/2012 22:13 +Woodbridge,,DIAMOND,VA,7/8/2012 22:15 +Olympia,,CIRCLE,WA,7/9/2012 0:00 +Duvall,,CIRCLE,WA,7/9/2012 1:00 +Elizabeth,,OTHER,NJ,7/9/2012 1:30 +Verde Valley,,,AZ,7/9/2012 2:00 +Harrison Township,,SPHERE,MI,7/9/2012 4:45 +Los Angeles,,EGG,CA,7/9/2012 5:35 +Brandon,YELLOW,SPHERE,SD,7/9/2012 11:00 +Portland,,CIRCLE,OR,7/9/2012 12:35 +Kearneysville,,DISK,WV,7/9/2012 13:00 +Buffalo,,CHEVRON,MN,7/9/2012 13:30 +Jackson,,DISK,MI,7/9/2012 16:00 +Doylestown,,RECTANGLE,PA,7/9/2012 21:00 +Hollywood,,FIREBALL,FL,7/9/2012 21:00 +West Middlesex,,CIRCLE,PA,7/9/2012 21:50 +Tiskilwa,,TRIANGLE,IL,7/9/2012 22:00 +Allen Park,,SPHERE,MI,7/9/2012 22:15 +Southport,,CIGAR,CT,7/9/2012 22:25 +Trumbull,,CIGAR,CT,7/9/2012 22:35 +Wesley Chapel,,FORMATION,FL,7/9/2012 22:40 +Bangor,,OTHER,ME,7/9/2012 23:00 +Flowood,,,MS,7/9/2012 23:05 +Chesterton,ORANGE,FIREBALL,IN,7/9/2012 23:25 +Amarillo,,FIREBALL,TX,7/9/2012 23:30 +Spring Grove,,CIRCLE,MN,7/10/2012 0:00 +Prineville,,FIREBALL,OR,7/10/2012 1:00 +Elko,,LIGHT,NV,7/10/2012 3:00 +Eden Prairie,,CIRCLE,MN,7/10/2012 4:13 +Reno,RED,LIGHT,NV,7/10/2012 5:01 +Powder Springs,,FIREBALL,GA,7/10/2012 10:02 +Jackson Center,,EGG,OH,7/10/2012 18:30 +Presque Isle,,FORMATION,MI,7/10/2012 20:30 +Bevington,YELLOW,TRIANGLE,IA,7/10/2012 22:00 +Lanson,,OVAL,MI,7/10/2012 22:00 +New Lenox,ORANGE,SPHERE,IL,7/10/2012 22:15 +Coventry,,FIREBALL,RI,7/10/2012 22:22 +Fort Walton Beach,,DIAMOND,FL,7/10/2012 22:45 +Baltimore,ORANGE,SPHERE,MD,7/10/2012 23:00 +Northport,,LIGHT,NY,7/10/2012 23:00 +San Diego,ORANGE,SPHERE,CA,7/10/2012 23:00 +Mackinaw City,,SPHERE,MI,7/10/2012 23:05 +Plantation,RED,LIGHT,FL,7/10/2012 23:30 +Davenport,,LIGHT,WA,7/10/2012 23:55 +Valley View,,LIGHT,OH,7/11/2012 0:00 +Haleiwa,,FIREBALL,HI,7/11/2012 0:01 +Jakes Run,,LIGHT,WV,7/11/2012 1:00 +French village,RED,,MO,7/11/2012 2:30 +Redding,,LIGHT,CA,7/11/2012 4:00 +Littleton,,LIGHT,CO,7/11/2012 21:00 +Kill Devil Hills,ORANGE,LIGHT,NC,7/11/2012 21:30 +Bozeman,,LIGHT,MT,7/11/2012 22:00 +Fox Lake,RED,LIGHT,IL,7/11/2012 22:00 +Fairport,RED,FIREBALL,NY,7/11/2012 22:10 +Archdale,,FIREBALL,NC,7/11/2012 22:15 +Pasco,,,WA,7/11/2012 23:00 +Rochester,,OTHER,MN,7/11/2012 23:00 +Mechanicsburg,RED YELLOW,CIRCLE,PA,7/11/2012 23:30 +Stonington,,FLASH,PA,7/11/2012 23:30 +Horseheads,,,NY,7/11/2012 23:41 +Fairfield,YELLOW,FIREBALL,CT,7/11/2012 23:43 +Madison,RED,SPHERE,OH,7/12/2012 0:00 +Somerset,,LIGHT,WI,7/12/2012 0:00 +Mukilteo,,FIREBALL,WA,7/12/2012 0:25 +Kansas City,,DIAMOND,MO,7/12/2012 3:00 +Austintown,,SPHERE,OH,7/12/2012 3:12 +Newark,,FLASH,DE,7/12/2012 4:50 +Ronkonkoma,RED,CIRCLE,NY,7/12/2012 9:15 +Los Banos,,TRIANGLE,CA,7/12/2012 10:30 +North Myrtle Beach,,FIREBALL,SC,7/12/2012 21:30 +St. Louis,ORANGE,FIREBALL,MO,7/12/2012 21:30 +Viola,,OTHER,DE,7/12/2012 21:30 +Pismo Beach,RED GREEN,DISK,CA,7/12/2012 21:45 +Girard,,OVAL,OH,7/12/2012 22:20 +Colby,,CYLINDER,KS,7/12/2012 22:36 +St. Augustine,,FIREBALL,FL,7/12/2012 22:40 +Siesta Key,RED,DIAMOND,FL,7/12/2012 22:50 +Des Moines,,,IA,7/13/2012 1:24 +Marshalltown,RED ORANGE,VARIOUS,IA,7/13/2012 2:26 +Charlotte,,TRIANGLE,NC,7/13/2012 3:27 +Gulfport,,LIGHT,MS,7/13/2012 4:00 +West Paducah,,CIRCLE,KY,7/13/2012 9:40 +Euclid,,CIRCLE,OH,7/13/2012 10:30 +Orlando,,CIRCLE,FL,7/13/2012 11:21 +Puyallup,,CONE,WA,7/13/2012 14:00 +Creedmor,,SPHERE,NC,7/13/2012 15:00 +Nottingham,,CIRCLE,NH,7/13/2012 20:15 +Gulfport,RED,TRIANGLE,MS,7/13/2012 21:00 +North Massapequa,,FIREBALL,NY,7/13/2012 21:00 +San Diego,,FIREBALL,CA,7/13/2012 21:00 +North Versailles,,LIGHT,PA,7/13/2012 21:15 +Roseburg,,LIGHT,OR,7/13/2012 21:25 +Roseburg,,LIGHT,OR,7/13/2012 21:30 +Simpsonville,,SPHERE,SC,7/13/2012 21:30 +Erie,ORANGE,LIGHT,PA,7/13/2012 21:50 +Andover,,FORMATION,NJ,7/13/2012 22:00 +Crawfordville,,OTHER,FL,7/13/2012 22:00 +Toledo,,LIGHT,OH,7/13/2012 22:00 +Wapakoneta,,FIREBALL,OH,7/13/2012 22:00 +East Moriches,,FIREBALL,NY,7/13/2012 22:30 +Industry,ORANGE,FIREBALL,PA,7/13/2012 22:32 +Mesquite,,CIRCLE,TX,7/14/2012 0:05 +Browning,ORANGE YELLOW,FIREBALL,MT,7/14/2012 1:00 +Terre Haute,,CIRCLE,IN,7/14/2012 2:15 +Somerset,,CIRCLE,KY,7/14/2012 3:00 +Ferron,,OVAL,UT,7/14/2012 10:38 +Jennings,,CIRCLE,MO,7/14/2012 17:15 +Eagle Bay,,OVAL,NY,7/14/2012 19:00 +Aurora,,OVAL,CO,7/14/2012 21:00 +Airway Heights,,LIGHT,WA,7/14/2012 21:30 +Fisher,ORANGE,FIREBALL,PA,7/14/2012 21:30 +Mantoloking,,FIREBALL,NJ,7/14/2012 21:30 +Wentzville,ORANGE,OVAL,MO,7/14/2012 21:30 +Springboro,,FORMATION,OH,7/14/2012 21:43 +Brookville,,LIGHT,OH,7/14/2012 21:45 +St. Pete Beach,ORANGE,FIREBALL,FL,7/14/2012 21:45 +St. Pete Beach,ORANGE,FIREBALL,FL,7/14/2012 21:45 +Culver,ORANGE,CIRCLE,IN,7/14/2012 21:50 +Kenner,RED,LIGHT,LA,7/14/2012 21:55 +Rice Lake,,LIGHT,WI,7/14/2012 22:00 +Seaside,,DISK,OR,7/14/2012 22:00 +Swainsboro,BLUE,CIRCLE,GA,7/14/2012 22:00 +Temecula,,,CA,7/14/2012 22:00 +Tigard,,CIGAR,OR,7/14/2012 22:00 +Warwick,RED,CIRCLE,NY,7/14/2012 22:00 +Zanesfield,RED,CIRCLE,OH,7/14/2012 22:03 +Hollister,,LIGHT,CA,7/14/2012 22:05 +Panorama City,,LIGHT,CA,7/14/2012 22:05 +Mantoloking,,LIGHT,NJ,7/14/2012 22:30 +Bethany Beach,,DISK,DE,7/14/2012 22:40 +Ocean City,ORANGE,OVAL,MD,7/14/2012 22:45 +Falmouth,,OVAL,MA,7/14/2012 22:55 +Aurora,ORANGE,FIREBALL,IL,7/14/2012 23:00 +Hallsville,,SPHERE,MO,7/14/2012 23:20 +San Francisco,,OTHER,CA,7/14/2012 23:20 +Blue Ridge,,LIGHT,GA,7/14/2012 23:50 +Marksville,,LIGHT,LA,7/15/2012 1:00 +West Los Angeles,,OVAL,CA,7/15/2012 1:45 +Dover,,TRIANGLE,DE,7/15/2012 2:25 +Columbus,,EGG,OH,7/15/2012 3:00 +Sandy Springs,,LIGHT,GA,7/15/2012 4:00 +King's Canyon Park,,,CA,7/15/2012 12:00 +Las Vegas,,SPHERE,NV,7/15/2012 12:00 +Florence,,TRIANGLE,MT,7/15/2012 15:00 +Gettysburg,,TRIANGLE,PA,7/15/2012 20:00 +Aurora,GREEN,TRIANGLE,CO,7/15/2012 21:20 +Gallipolis,ORANGE,SPHERE,OH,7/15/2012 22:00 +Seaside,,CIRCLE,OR,7/15/2012 22:00 +Dexter,RED,SPHERE,MI,7/15/2012 22:10 +Richfield,,LIGHT,MN,7/15/2012 22:50 +Terrell,,TRIANGLE,TX,7/15/2012 23:00 +Sanford,,TRIANGLE,ME,7/16/2012 0:00 +New York City,GREEN,LIGHT,NY,7/16/2012 0:30 +Aguanga,,OTHER,CA,7/16/2012 1:30 +Ottumwa,,LIGHT,IA,7/16/2012 4:32 +Clearwater,,DISK,FL,7/16/2012 7:30 +Breckenridge,,LIGHT,CO,7/16/2012 21:43 +West Allis,,,WI,7/16/2012 22:00 +Mt. Pleasant,ORANGE,FIREBALL,IA,7/16/2012 23:40 +Belmont,,SPHERE,NY,7/17/2012 0:00 +Salem,,SPHERE,OR,7/17/2012 0:20 +Sewell,,TRIANGLE,NJ,7/17/2012 1:10 +South Nags Head,,CIGAR,NC,7/17/2012 1:10 +North Dayton,,OTHER,OH,7/17/2012 1:25 +Rio Rancho,,LIGHT,NM,7/17/2012 1:45 +Myrtle Beach,ORANGE,FIREBALL,SC,7/17/2012 2:00 +Georgetown,,OTHER,KY,7/17/2012 2:20 +Hollansburg,,FIREBALL,OH,7/17/2012 4:14 +Stockton,,LIGHT,CA,7/17/2012 5:11 +Houston,,LIGHT,TX,7/17/2012 6:30 +Traverse City,BLUE,CIGAR,MI,7/17/2012 18:00 +Meredith,,CYLINDER,NH,7/17/2012 19:15 +Table Top Mountain,,CIGAR,AZ,7/17/2012 20:30 +New Richmond,,SPHERE,WI,7/17/2012 21:00 +East Lansing,ORANGE,,MI,7/17/2012 21:30 +Surfside Beach,ORANGE,CIRCLE,SC,7/17/2012 21:30 +Dade City,ORANGE,SPHERE,FL,7/17/2012 21:36 +Johnstown,,TRIANGLE,PA,7/17/2012 21:50 +Phoenix,ORANGE,LIGHT,AZ,7/17/2012 22:00 +Morgantown,,LIGHT,WV,7/17/2012 22:30 +Las Vegas,,CIRCLE,NV,7/17/2012 22:50 +Topsail Island,,CIGAR,NC,7/17/2012 23:00 +Surfside Beach,,LIGHT,SC,7/18/2012 0:00 +Homer,,LIGHT,AK,7/18/2012 1:00 +Homer,,LIGHT,AK,7/18/2012 1:00 +Jacksonville,GREEN,FIREBALL,FL,7/18/2012 5:55 +East Northport,,RECTANGLE,NY,7/18/2012 9:20 +Myrtle Beach,ORANGE,FIREBALL,SC,7/18/2012 9:30 +Myrtle Beach,ORANGE,FIREBALL,SC,7/18/2012 12:00 +Hartselle,,FIREBALL,AL,7/18/2012 14:00 +Myrtle Beach,,LIGHT,SC,7/18/2012 16:00 +North Myrtle Beach,,SPHERE,SC,7/18/2012 19:00 +Calabash,YELLOW,,NC,7/18/2012 21:00 +Holden Beach,,FORMATION,NC,7/18/2012 21:00 +Holden Beach,,SPHERE,NC,7/18/2012 21:00 +Ocean Isle Beach,,LIGHT,NC,7/18/2012 21:00 +Southport,,OVAL,NC,7/18/2012 21:00 +Port Orange,,TRIANGLE,FL,7/18/2012 21:20 +Shawano,,FIREBALL,WI,7/18/2012 21:20 +Holden Beach,,FORMATION,NC,7/18/2012 21:30 +Oak Island,,OTHER,NC,7/18/2012 21:30 +Centralia,YELLOW,FIREBALL,WA,7/18/2012 21:45 +Emerald Isle,,LIGHT,NC,7/18/2012 22:00 +Little River,ORANGE,CIRCLE,SC,7/18/2012 22:00 +Oak Island,,FIREBALL,NC,7/18/2012 22:00 +Orem,GREEN BLUE,DISK,UT,7/18/2012 22:00 +Pawleys Island,,LIGHT,SC,7/18/2012 22:00 +Whittier,,TRIANGLE,CA,7/18/2012 22:00 +Myrtle Beach,RED,LIGHT,SC,7/18/2012 22:30 +Lee's Summit,,RECTANGLE,MO,7/18/2012 22:40 +Council Bluffs,,TRIANGLE,IA,7/19/2012 0:07 +Staunton,,,VA,7/19/2012 2:00 +New Orleans,,TRIANGLE,LA,7/19/2012 6:30 +Seaside,ORANGE,SPHERE,OR,7/19/2012 9:50 +Fontana,,TEARDROP,CA,7/19/2012 11:00 +Independence,,RECTANGLE,KY,7/19/2012 16:20 +Hilo,RED,LIGHT,HI,7/19/2012 20:50 +Frisco,,CIRCLE,NC,7/19/2012 21:00 +Portland,,CIRCLE,OR,7/19/2012 21:15 +North Topsail,,CIRCLE,NC,7/19/2012 21:40 +Oakridge,ORANGE,CIRCLE,OR,7/19/2012 21:44 +Auburn,,LIGHT,CA,7/19/2012 21:50 +Emerald Isle,RED,SPHERE,NC,7/19/2012 21:50 +Deland,ORANGE,CIRCLE,FL,7/19/2012 22:00 +Pawleys Island,,LIGHT,SC,7/19/2012 22:00 +Beekmantown,,LIGHT,NY,7/19/2012 22:05 +Myrtle Beach,ORANGE,FLASH,SC,7/19/2012 22:45 +Ardmore,,FIREBALL,OK,7/19/2012 23:00 +Ocean City,,LIGHT,MD,7/19/2012 23:27 +West Los Angeles,,LIGHT,CA,7/19/2012 23:54 +Farmington,,CIRCLE,MN,7/20/2012 2:30 +Greene,GREEN,DIAMOND,ME,7/20/2012 4:00 +Hampstead,,CIRCLE,NH,7/20/2012 9:55 +Diamond Bar,,TRIANGLE,CA,7/20/2012 12:00 +Orleans,,OTHER,CA,7/20/2012 14:45 +Poplar Grove,,TRIANGLE,IL,7/20/2012 17:05 +Hopkington,,TRIANGLE,MA,7/20/2012 19:00 +Manitou Beach,,CIRCLE,MI,7/20/2012 19:00 +Plumas National Forest,,DISK,CA,7/20/2012 19:00 +South Nags Head,ORANGE,LIGHT,NC,7/20/2012 19:00 +Glendale,,OTHER,CA,7/20/2012 19:35 +Robertsdale,,LIGHT,AL,7/20/2012 21:30 +Toledo,RED GREEN,CIRCLE,OH,7/20/2012 22:00 +Wyandotte,,DISK,MI,7/20/2012 22:01 +Westfield,,FIREBALL,NY,7/20/2012 22:30 +St. Charles,ORANGE,SPHERE,IL,7/20/2012 22:45 +Long Beach,,LIGHT,CA,7/20/2012 22:55 +Durango,,LIGHT,CO,7/20/2012 23:00 +St. Louis,,DISK,MO,7/20/2012 23:24 +Monroe,,FIREBALL,WA,7/20/2012 23:30 +Princeton,RED,CIRCLE,IN,7/20/2012 23:45 +Saint Paul,ORANGE,RECTANGLE,MN,7/21/2012 0:40 +Saint Paul,ORANGE,RECTANGLE,MN,7/21/2012 0:40 +Rochester,,TRIANGLE,NY,7/21/2012 3:05 +Nicholasville,RED,CIGAR,KY,7/21/2012 9:30 +Portland,RED ORANGE,FIREBALL,OR,7/21/2012 10:30 +Rhome,,OVAL,TX,7/21/2012 10:30 +Canton,,CIRCLE,MI,7/21/2012 11:30 +Kenosha,,,WI,7/21/2012 12:40 +Suwanee,,LIGHT,GA,7/21/2012 15:00 +Kingsland,,OTHER,GA,7/21/2012 16:00 +Redmond,,CONE,WA,7/21/2012 17:00 +Reading,,OVAL,PA,7/21/2012 20:15 +Old Saybrook,RED,CIRCLE,CT,7/21/2012 20:30 +Greigsville,ORANGE,FIREBALL,NY,7/21/2012 21:00 +Maspeth,,CIRCLE,NY,7/21/2012 21:00 +Maspeth,BLUE,CIRCLE,NY,7/21/2012 21:00 +Montgomery,RED,FIREBALL,IL,7/21/2012 21:00 +Vacaville,ORANGE,LIGHT,CA,7/21/2012 21:00 +Brick Twp.,,,NJ,7/21/2012 21:13 +Vacaville,ORANGE,LIGHT,CA,7/21/2012 21:14 +Taunton,YELLOW,FIREBALL,MA,7/21/2012 21:25 +Cicero,ORANGE,FIREBALL,NY,7/21/2012 21:30 +Orefield,RED,SPHERE,PA,7/21/2012 21:30 +Senecaville,,FIREBALL,OH,7/21/2012 21:30 +Valdosta,ORANGE,CIRCLE,GA,7/21/2012 21:30 +Williamstown,ORANGE,FIREBALL,NJ,7/21/2012 21:35 +Colorado Springs,ORANGE,FIREBALL,CO,7/21/2012 21:45 +Sewickley,,FIREBALL,PA,7/21/2012 21:50 +York,ORANGE,CIRCLE,NY,7/21/2012 21:50 +Medford,,OVAL,NY,7/21/2012 21:55 +Montgomery,RED,FIREBALL,IL,7/21/2012 22:00 +Oklahoma City,,LIGHT,OK,7/21/2012 22:00 +Staten Island,,FIREBALL,NY,7/21/2012 22:00 +Hamburg,ORANGE,FIREBALL,NY,7/21/2012 22:05 +Marietta,ORANGE,FIREBALL,GA,7/21/2012 22:15 +Vienna,ORANGE,FORMATION,WV,7/21/2012 22:30 +Appleton,,SPHERE,WI,7/21/2012 23:00 +Duluth,ORANGE,CIRCLE,MN,7/21/2012 23:00 +Gurnee,RED,OTHER,IL,7/21/2012 23:15 +Ravensdale,RED ORANGE,LIGHT,WA,7/21/2012 23:30 +Brandon,,FIREBALL,FL,7/22/2012 0:00 +Charlotte,,LIGHT,MI,7/22/2012 2:00 +Boulder,,LIGHT,CO,7/22/2012 3:00 +East Helena,BLUE,CIRCLE,MT,7/22/2012 3:00 +Wagoner,GREEN,TRIANGLE,OK,7/22/2012 3:00 +Ardmore,,,OK,7/22/2012 4:00 +Lakewood,,VARIOUS,CO,7/22/2012 8:50 +Lakewood,,OVAL,PA,7/22/2012 15:56 +Torrance,ORANGE,SPHERE,CA,7/22/2012 20:40 +North Falmouth,,SPHERE,MA,7/22/2012 21:30 +Ripley,,TRIANGLE,TN,7/22/2012 21:45 +Frederick,,CIRCLE,MD,7/22/2012 22:30 +Frederick,,CIRCLE,MD,7/22/2012 22:30 +Quincy,,FLASH,CA,7/22/2012 23:00 +Springfield,,CIGAR,MA,7/23/2012 1:00 +Springfield,,CIRCLE,IL,7/23/2012 1:30 +East Helena,,TRIANGLE,MT,7/23/2012 4:00 +Morristown,RED,DISK,TN,7/23/2012 4:00 +Ronan,RED GREEN,SPHERE,MT,7/23/2012 4:15 +Surf City,,FORMATION,NC,7/23/2012 5:00 +Chantilly,,OTHER,VA,7/23/2012 9:45 +Metamora,,FIREBALL,MI,7/23/2012 11:00 +Pensacola,,OVAL,FL,7/23/2012 12:45 +Las Vegas,,SPHERE,NV,7/23/2012 13:31 +Portland,,OVAL,OR,7/23/2012 15:00 +Gates,,CIRCLE,OR,7/23/2012 18:00 +Berthoud area,ORANGE BLUE,,CO,7/23/2012 21:47 +Duck,RED,LIGHT,NC,7/23/2012 22:00 +Overland Park,ORANGE,FIREBALL,KS,7/23/2012 22:02 +New York City,RED,OTHER,NY,7/23/2012 22:20 +Lakeside,,LIGHT,CA,7/23/2012 22:41 +Bloomington,,,IL,7/23/2012 22:55 +Chico,,CIRCLE,CA,7/23/2012 23:30 +Adel,,FLASH,IA,7/23/2012 23:55 +Corinth,RED,TRIANGLE,MS,7/24/2012 12:24 +Brighton,,,MI,7/24/2012 21:06 +Cuyahoga Falls,ORANGE,TRIANGLE,OH,7/24/2012 21:45 +Ogden,,LIGHT,UT,7/24/2012 22:00 +Adamsville,,SPHERE,PA,7/24/2012 22:30 +Oxnard,,LIGHT,CA,7/24/2012 22:30 +Staten Island,,TRIANGLE,NY,7/24/2012 22:30 +Lancaster,,FIREBALL,OH,7/24/2012 23:00 +East Palestine,,EGG,OH,7/24/2012 23:40 +Columbus,,TRIANGLE,OH,7/25/2012 0:00 +Leroy,,OVAL,MI,7/25/2012 1:00 +Anchorage,,OTHER,AK,7/25/2012 1:15 +Chicago,,OVAL,IL,7/25/2012 2:15 +Chicago,,OVAL,IL,7/25/2012 2:15 +Audubon,ORANGE,TEARDROP,PA,7/25/2012 3:00 +Fairless Hills,,CIRCLE,PA,7/25/2012 3:56 +King George,,CIRCLE,VA,7/25/2012 6:25 +Bedford,ORANGE BLUE,FIREBALL,IN,7/25/2012 11:30 +Middletown,,SPHERE,CT,7/25/2012 16:00 +Brentwood,,OTHER,NH,7/25/2012 17:58 +Albany,,CROSS,OR,7/25/2012 20:10 +Indialantic,ORANGE GREEN,OVAL,FL,7/25/2012 21:00 +Safford,,FIREBALL,AZ,7/25/2012 21:00 +Playa Del Rey,,FIREBALL,CA,7/25/2012 21:10 +Clarence,,LIGHT,MO,7/25/2012 22:00 +Kure Beach,,CIRCLE,NC,7/25/2012 22:00 +Myrtle Beach,ORANGE,SPHERE,SC,7/25/2012 22:00 +Wilmington,ORANGE,SPHERE,DE,7/25/2012 22:15 +York Beach,,LIGHT,ME,7/25/2012 22:15 +Ocean Isle,RED ORANGE,SPHERE,NC,7/25/2012 22:20 +Cumberland,,CIRCLE,RI,7/25/2012 22:25 +Lake Stevens,ORANGE,FIREBALL,WA,7/25/2012 22:30 +Marion,,CIGAR,LA,7/25/2012 22:30 +Elkins,RED ORANGE,DISK,AR,7/26/2012 0:14 +Puyallup,,FLASH,WA,7/26/2012 1:30 +Cornelius,,VARIOUS,OR,7/26/2012 1:45 +Slidell,,CIRCLE,LA,7/26/2012 2:45 +Grand Bay,RED,LIGHT,AL,7/26/2012 3:30 +Silvia,BLUE,CIRCLE,MO,7/26/2012 4:50 +Centereach,,CIRCLE,NY,7/26/2012 19:00 +Bryant,,LIGHT,AR,7/26/2012 19:35 +Centereach,,,NY,7/26/2012 20:25 +Burlington,,SPHERE,NC,7/26/2012 21:00 +Arcata,GREEN,FORMATION,CA,7/26/2012 21:50 +South Portland,,LIGHT,ME,7/26/2012 22:00 +Avon,,FIREBALL,NC,7/26/2012 23:30 +Schneider,RED YELLOW BLUE,OTHER,IN,7/27/2012 0:00 +Stevensville,,LIGHT,MD,7/27/2012 0:10 +Des Moines,YELLOW,FIREBALL,IA,7/27/2012 4:07 +San Diego,,CYLINDER,CA,7/27/2012 7:00 +Cedar Hills,RED,CIRCLE,UT,7/27/2012 9:30 +Corinth,RED,TRIANGLE,MS,7/27/2012 12:39 +Clyde,,TRIANGLE,NC,7/27/2012 19:00 +Hagerstown,,TEARDROP,IN,7/27/2012 20:57 +Nags Head,,SPHERE,NC,7/27/2012 21:00 +Naples,ORANGE,FIREBALL,FL,7/27/2012 21:00 +Ship Bottom,ORANGE,SPHERE,NJ,7/27/2012 21:15 +Tacoma,,FIREBALL,WA,7/27/2012 22:00 +Bonney Lake,RED,TRIANGLE,WA,7/27/2012 22:30 +Hilliard,RED,OVAL,OH,7/27/2012 22:30 +Nashua,,LIGHT,NH,7/27/2012 22:30 +Wamego,BLUE,FORMATION,KS,7/27/2012 22:45 +Buffalo,,FIREBALL,NY,7/27/2012 23:00 +St. Peters,,CIRCLE,MO,7/27/2012 23:00 +Grand Rapids,,LIGHT,MI,7/27/2012 23:15 +Elkhart,ORANGE,CIRCLE,IN,7/27/2012 23:32 +Lincoln City,,FORMATION,OR,7/28/2012 0:00 +Huntington,BLUE,LIGHT,NY,7/28/2012 3:00 +Prescott Valley,RED,TRIANGLE,AZ,7/28/2012 3:00 +Lindenwold,,LIGHT,NJ,7/28/2012 3:18 +Chewelah,,LIGHT,WA,7/28/2012 3:34 +Mims,,SPHERE,FL,7/28/2012 4:15 +Dade City,,SPHERE,FL,7/28/2012 4:30 +Omaha,,TEARDROP,NE,7/28/2012 16:07 +Las Vegas,,SPHERE,NV,7/28/2012 19:38 +Phoenix,,VARIOUS,AZ,7/28/2012 20:30 +Greer,ORANGE,FIREBALL,SC,7/28/2012 20:45 +Liberty Boro,,TRIANGLE,PA,7/28/2012 20:55 +Chula Vista,,,CA,7/28/2012 21:00 +Petal,ORANGE,OTHER,MS,7/28/2012 21:00 +Schaumburg,ORANGE,LIGHT,IL,7/28/2012 21:00 +Upland,,CROSS,CA,7/28/2012 21:10 +Upland,,CROSS,CA,7/28/2012 21:10 +Cornish,YELLOW,CIRCLE,ME,7/28/2012 21:15 +Cranberry Township,,FIREBALL,PA,7/28/2012 21:15 +North Arlington,RED,SPHERE,NJ,7/28/2012 21:15 +Gary,ORANGE,FORMATION,IN,7/28/2012 21:30 +Olathe,RED,LIGHT,KS,7/28/2012 21:30 +Stoughton,,FIREBALL,WI,7/28/2012 21:30 +Vernon Hills,,SPHERE,IL,7/28/2012 21:30 +Dayton,,SPHERE,OH,7/28/2012 21:40 +Camarillo,,CIGAR,CA,7/28/2012 22:00 +Lancaster,,DIAMOND,CA,7/28/2012 22:00 +Massapequa Park,,SPHERE,NY,7/28/2012 22:00 +Kennesaw,,OTHER,GA,7/28/2012 22:45 +Macomb Township,BLUE,LIGHT,MI,7/28/2012 23:05 +Red Wing,RED ORANGE,SPHERE,MN,7/28/2012 23:25 +Cummings,,LIGHT,IA,7/28/2012 23:45 +Lincoln City,ORANGE,CIRCLE,OR,7/28/2012 23:45 +Trotwood,,DIAMOND,OH,7/28/2012 23:50 +Oswego,,LIGHT,NY,7/29/2012 0:05 +Imlay City,,FIREBALL,MI,7/29/2012 0:15 +Chicago,,LIGHT,IL,7/29/2012 1:00 +Sevierville,ORANGE,FIREBALL,TN,7/29/2012 2:47 +Kill Devil Hills,,FIREBALL,NC,7/29/2012 3:00 +New Prague,,FLASH,MN,7/29/2012 4:00 +Winterset,,FIREBALL,IA,7/29/2012 11:00 +Monroe,ORANGE,LIGHT,CT,7/29/2012 20:50 +Asheville,,CIGAR,NC,7/29/2012 21:00 +Ann Arbor,ORANGE,CYLINDER,MI,7/29/2012 21:30 +Gap,RED ORANGE,FIREBALL,PA,7/29/2012 21:30 +Shelbyville,,FIREBALL,IN,7/29/2012 21:38 +Shelbyville,,FIREBALL,IN,7/29/2012 21:38 +Bowie,,LIGHT,MD,7/29/2012 22:00 +Buffalo,ORANGE,FIREBALL,NY,7/29/2012 22:00 +Portland,RED,FLASH,OR,7/29/2012 22:00 +Brooklyn,ORANGE,LIGHT,MI,7/29/2012 22:05 +Sinking Spring,,CIRCLE,PA,7/29/2012 22:21 +Granite Falls,,TEARDROP,NC,7/29/2012 23:00 +Highland,,FIREBALL,IN,7/29/2012 23:00 +Coeur d'Alene,RED ORANGE,CIRCLE,ID,7/29/2012 23:30 +Ithaca,,,NY,7/29/2012 23:30 +Littleton,,LIGHT,CO,7/30/2012 1:00 +Sicklerville,ORANGE,FLASH,NJ,7/30/2012 1:00 +New York City,GREEN,OVAL,NY,7/30/2012 2:00 +Brightwaters,,LIGHT,NY,7/30/2012 4:00 +Sunny Isles Beach,,TRIANGLE,FL,7/30/2012 4:22 +New York City,,CIRCLE,NY,7/30/2012 16:00 +Beaverton,,,OR,7/30/2012 17:40 +Clifton Heights,RED ORANGE,CIRCLE,PA,7/30/2012 20:00 +Hugo,,,MN,7/30/2012 21:30 +Olathe,,LIGHT,KS,7/30/2012 21:50 +Ypsilanti,RED,OVAL,MI,7/30/2012 22:00 +Tawas City,,FIREBALL,MI,7/30/2012 23:00 +Federal Way,,LIGHT,WA,7/31/2012 0:00 +Shasta,,,CA,7/31/2012 0:00 +Huntington Beach,,LIGHT,CA,7/31/2012 1:22 +Portland,ORANGE,SPHERE,OR,7/31/2012 3:33 +Sandy,RED,FORMATION,UT,7/31/2012 4:07 +Los Angeles,,LIGHT,CA,7/31/2012 5:15 +Salem,RED,DISK,OR,7/31/2012 10:15 +Colorado Springs,,FIREBALL,CO,7/31/2012 19:28 +Universal City,,DIAMOND,CA,7/31/2012 20:00 +Livermore,RED,CIRCLE,CA,7/31/2012 20:45 +Pasco,,,WA,7/31/2012 21:00 +Richland,ORANGE,,WA,7/31/2012 21:00 +Clio,ORANGE,FIREBALL,MI,7/31/2012 21:30 +Sussex,ORANGE,,WI,7/31/2012 21:30 +Livermore,,FIREBALL,CA,7/31/2012 21:50 +Livermore,RED,FORMATION,CA,7/31/2012 22:05 +Wallula,RED,,OR,7/31/2012 22:15 +Finley,,,WA,7/31/2012 22:30 +Waitsburg,,LIGHT,WA,7/31/2012 22:30 +Tum Tum,,LIGHT,WA,7/31/2012 22:40 +Kansas City,,OTHER,MO,7/31/2012 23:00 +Montgomery,,DISK,TX,7/31/2012 23:00 +Simpsonville,,FIREBALL,SC,7/31/2012 23:00 +Cape Girardeau,,DIAMOND,MO,7/31/2012 23:15 +Hayward,,OTHER,CA,8/1/2012 0:00 +Vero Beach,,TRIANGLE,FL,8/1/2012 0:00 +Twin Falls,RED,CIRCLE,ID,8/1/2012 0:45 +Idaho Panhandle,,TRIANGLE,ID,8/1/2012 2:00 +Paw Paw,,OVAL,WV,8/1/2012 2:00 +Union City,,FLASH,NJ,8/1/2012 5:00 +St. Charles,,TRIANGLE,MO,8/1/2012 20:00 +Wilson,,CIRCLE,NC,8/1/2012 20:00 +Sacramento,,LIGHT,CA,8/1/2012 20:30 +Bedford,ORANGE,SPHERE,VA,8/1/2012 21:00 +Harwich,ORANGE,LIGHT,MA,8/1/2012 21:10 +Greer,RED,LIGHT,SC,8/1/2012 21:50 +Columbus,,SPHERE,OH,8/1/2012 22:10 +Cape Girardeau,,OVAL,MO,8/1/2012 22:45 +Erie,,LIGHT,PA,8/1/2012 22:45 +Hampton,ORANGE,SPHERE,TN,8/1/2012 23:00 +Kansas City,,CIGAR,MO,8/1/2012 23:00 +Modesto,,FIREBALL,CA,8/2/2012 0:00 +Penn,ORANGE,OTHER,ND,8/2/2012 0:00 +Hampton,,OTHER,AR,8/2/2012 3:00 +Lake Havasu City,,DISK,AZ,8/2/2012 3:30 +Los Angeles,,LIGHT,CA,8/2/2012 4:45 +Big Pine Key,,OTHER,FL,8/2/2012 6:01 +Chicago,,CIGAR,IL,8/2/2012 15:00 +Walker,,DISK,MN,8/2/2012 15:00 +Dubois,,,PA,8/2/2012 21:00 +Garland,,TEARDROP,TX,8/2/2012 21:00 +Kennewick,RED,TRIANGLE,WA,8/2/2012 21:00 +Newark,,CIRCLE,DE,8/2/2012 21:00 +Oregon City,,FIREBALL,OR,8/2/2012 21:30 +Staten Island,,FIREBALL,NY,8/2/2012 21:30 +Palmdale,,SPHERE,CA,8/2/2012 22:50 +Lakeside,,LIGHT,CA,8/2/2012 23:00 +Van Horne,,DISK,IA,8/2/2012 23:18 +Missoula,,VARIOUS,MT,8/3/2012 0:30 +Farmington,,,NY,8/3/2012 1:00 +Murray,,CHEVRON,UT,8/3/2012 1:30 +Eaton Rapids,,DISK,MI,8/3/2012 3:30 +Port St. Lucie,,CIGAR,FL,8/3/2012 7:00 +Detroit,ORANGE,,MI,8/3/2012 9:43 +Bayonne,,CIRCLE,NJ,8/3/2012 16:00 +Kihei,,FIREBALL,HI,8/3/2012 20:25 +San Diego,,LIGHT,CA,8/3/2012 21:09 +San Diego,,LIGHT,CA,8/3/2012 21:10 +Simpsonville,,CIGAR,SC,8/3/2012 21:20 +Seattle,,LIGHT,WA,8/3/2012 21:30 +Roswell,,FIREBALL,GA,8/3/2012 21:45 +Renton,ORANGE,OVAL,WA,8/3/2012 22:00 +Goshen,,FIREBALL,IN,8/3/2012 22:20 +Binghamton,,FIREBALL,NY,8/3/2012 22:30 +New Bern,ORANGE,CIRCLE,NC,8/3/2012 22:30 +Bowling green,RED,CIRCLE,OH,8/3/2012 22:55 +Lyndhurst,,FIREBALL,NJ,8/3/2012 23:00 +Issaquah,,LIGHT,WA,8/3/2012 23:04 +Graham,RED BLUE,FIREBALL,WA,8/4/2012 0:30 +Ontario,,TRIANGLE,OR,8/4/2012 1:00 +Mathews,ORANGE,LIGHT,LA,8/4/2012 2:00 +St. Louis,,FORMATION,MO,8/4/2012 4:00 +Atlantic City,,FLASH,NJ,8/4/2012 5:00 +Hampton,RED,SPHERE,NH,8/4/2012 10:00 +Hillsville,,CIRCLE,VA,8/4/2012 13:00 +NW Crazy Mtns,,CIGAR,MT,8/4/2012 14:00 +Jacksonville,,CHEVRON,FL,8/4/2012 15:00 +Ewa Beach,,LIGHT,HI,8/4/2012 20:00 +Federal way,ORANGE,FORMATION,WA,8/4/2012 20:00 +Salem,GREEN,SPHERE,OR,8/4/2012 20:30 +Lewis Center,,LIGHT,OH,8/4/2012 21:00 +Pawtucket,RED,CYLINDER,RI,8/4/2012 21:00 +Sheridan,,CIRCLE,CO,8/4/2012 21:00 +Warrington,,FIREBALL,PA,8/4/2012 21:05 +Simpsonville,ORANGE,FIREBALL,SC,8/4/2012 21:12 +Washington,RED,LIGHT,PA,8/4/2012 21:20 +Sicklerville,RED,SPHERE,NJ,8/4/2012 21:30 +New Rochelle,ORANGE,FIREBALL,NY,8/4/2012 21:35 +Brewster,,FIREBALL,MA,8/4/2012 22:00 +Carlton,,FORMATION,NY,8/4/2012 22:00 +Chandler,GREEN,FLASH,AZ,8/4/2012 22:00 +Exeter,RED,LIGHT,NH,8/4/2012 22:00 +Old Bridge,RED,LIGHT,NJ,8/4/2012 22:00 +Olympia,,CONE,WA,8/4/2012 22:00 +Hickory,,TRIANGLE,NC,8/4/2012 22:05 +Hickory,,FORMATION,NC,8/4/2012 22:10 +Hickory,,LIGHT,NC,8/4/2012 22:10 +Vancouver,,CIRCLE,WA,8/4/2012 22:19 +East Troy,RED,TRIANGLE,WI,8/4/2012 23:00 +Hamlin Beach State Park,,OVAL,NY,8/4/2012 23:00 +Huntington,,LIGHT,IN,8/4/2012 23:05 +Littleton,,CIRCLE,CO,8/4/2012 23:30 +Wilson,,OTHER,NC,8/5/2012 1:00 +Lincoln,,FORMATION,CA,8/5/2012 1:08 +Hockison,,FLASH,WA,8/5/2012 2:00 +Phoenix,,OTHER,AZ,8/5/2012 2:00 +Des Moines,,LIGHT,IA,8/5/2012 5:00 +Decorah,,TRIANGLE,IA,8/5/2012 5:55 +Boca Raton,RED,,FL,8/5/2012 11:00 +Pensacola,,LIGHT,FL,8/5/2012 17:10 +Newark,,CIRCLE,DE,8/5/2012 17:50 +Alabaster,,CIGAR,AL,8/5/2012 19:40 +Barstow,,SPHERE,CA,8/5/2012 22:00 +Fort Smith,,SPHERE,AR,8/5/2012 22:00 +Seattle,,CIRCLE,WA,8/5/2012 22:00 +Ephraim,RED ORANGE,FIREBALL,WI,8/5/2012 22:15 +Hastings,,LIGHT,MN,8/5/2012 22:20 +Houston,RED,FIREBALL,TX,8/5/2012 22:23 +Ashby,,LIGHT,MN,8/5/2012 22:28 +Aurora,,OVAL,IL,8/5/2012 23:00 +Coventry,,CIRCLE,RI,8/5/2012 23:00 +Rochester,,LIGHT,MN,8/5/2012 23:00 +Minneapolis,ORANGE,FIREBALL,MN,8/5/2012 23:15 +Hyannis,ORANGE,FIREBALL,MA,8/6/2012 0:00 +Lewistown,,LIGHT,PA,8/6/2012 0:00 +Ripley,ORANGE GREEN BLUE,,WV,8/6/2012 0:00 +New York City,BLUE,LIGHT,NY,8/6/2012 0:55 +Nordland,RED,LIGHT,WA,8/6/2012 1:20 +Moscow,,LIGHT,ID,8/6/2012 4:00 +Hagerstown,,TRIANGLE,MD,8/6/2012 4:10 +Phoenix,,FLASH,NY,8/6/2012 5:00 +Erie,,LIGHT,PA,8/6/2012 10:16 +Philadelphia,,RECTANGLE,PA,8/6/2012 18:00 +Galveston,,OVAL,TX,8/6/2012 18:55 +Rancho Bernardo,,LIGHT,CA,8/6/2012 19:20 +Grove City,,LIGHT,PA,8/6/2012 19:50 +South Burligton,,VARIOUS,VT,8/6/2012 20:09 +Thousand Oaks,,LIGHT,CA,8/6/2012 20:16 +Fishkill,,LIGHT,NY,8/6/2012 21:00 +Gallatin,,TRIANGLE,TN,8/6/2012 21:00 +Miami,,OVAL,FL,8/6/2012 21:00 +Milan,ORANGE,CIRCLE,OH,8/6/2012 21:00 +Boonville,,SPHERE,IN,8/6/2012 21:05 +Crete,ORANGE,CIRCLE,IL,8/6/2012 21:30 +Revere,,LIGHT,MA,8/6/2012 21:30 +Seattle,,FIREBALL,WA,8/6/2012 21:33 +Springfield,RED,CIRCLE,VT,8/6/2012 21:35 +Hubbard,,CIRCLE,OH,8/6/2012 21:55 +Newark,,SPHERE,OH,8/6/2012 21:57 +Ripley,,LIGHT,OH,8/6/2012 21:57 +Van Voorhis,,LIGHT,PA,8/6/2012 21:59 +Exeter,,OTHER,PA,8/6/2012 22:00 +Los Banos,,FIREBALL,CA,8/6/2012 22:00 +North Bergen,,SPHERE,NJ,8/6/2012 22:00 +Pawleys Island,ORANGE,,SC,8/6/2012 22:00 +Pennsboro,,LIGHT,WV,8/6/2012 22:00 +Yacolt,,OVAL,WA,8/6/2012 22:00 +Yakima,,FORMATION,WA,8/6/2012 22:00 +Pawleys Island,ORANGE,LIGHT,SC,8/6/2012 22:05 +Bloomfield,,FIREBALL,IA,8/6/2012 22:30 +Conway,,FIREBALL,PA,8/6/2012 22:30 +Carson,,SPHERE,WA,8/6/2012 23:30 +Twentynine Palms,,VARIOUS,CA,8/7/2012 0:00 +Lubbock,,OTHER,TX,8/7/2012 0:35 +Linwood,ORANGE YELLOW BLUE,LIGHT,NJ,8/7/2012 1:00 +Denver,,LIGHT,CO,8/7/2012 3:00 +Patterson,,TRIANGLE,CA,8/7/2012 3:00 +Ogden,,VARIOUS,UT,8/7/2012 4:30 +Ocean Shores,RED GREEN,LIGHT,WA,8/7/2012 5:40 +Wells,,FIREBALL,ME,8/7/2012 7:40 +Seattle,BLUE,RECTANGLE,WA,8/7/2012 8:00 +New Britain,,LIGHT,CT,8/7/2012 8:40 +New Hampton,,,NH,8/7/2012 13:00 +Guyton,ORANGE,LIGHT,GA,8/7/2012 16:55 +Eastport,,LIGHT,ME,8/7/2012 20:00 +Pottsville,,,PA,8/7/2012 20:00 +West Barnstable,BLUE,LIGHT,MA,8/7/2012 20:00 +Boca Raton,,TEARDROP,FL,8/7/2012 20:20 +Bridgton,,LIGHT,ME,8/7/2012 20:45 +Concord,,OTHER,NH,8/7/2012 21:00 +New Britain,RED,CIRCLE,CT,8/7/2012 21:00 +North Myrtle Beach,,LIGHT,SC,8/7/2012 21:00 +Sebring,,FIREBALL,FL,8/7/2012 21:07 +Goleta,ORANGE,DISK,CA,8/7/2012 21:10 +Winthrop,,LIGHT,ME,8/7/2012 21:10 +Buxton,ORANGE YELLOW,LIGHT,NC,8/7/2012 21:15 +Surprise,,TRIANGLE,AZ,8/7/2012 21:15 +Surprise,,TRIANGLE,AZ,8/7/2012 21:15 +Ulster Heights,,CIRCLE,NY,8/7/2012 21:15 +Weston,,LIGHT,WV,8/7/2012 21:15 +Augusta,,CIRCLE,ME,8/7/2012 21:30 +Johnson City,,CIGAR,TN,8/7/2012 21:30 +Pacific City,ORANGE,LIGHT,OR,8/7/2012 21:30 +Lenexa,,FIREBALL,KS,8/7/2012 21:35 +Chino,,CIRCLE,CA,8/7/2012 21:40 +Orlando,ORANGE,CHEVRON,FL,8/7/2012 21:43 +Orlando,ORANGE,CHEVRON,FL,8/7/2012 21:43 +DeBordieu Beach,,SPHERE,SC,8/7/2012 21:45 +Meridian,ORANGE,OTHER,ID,8/7/2012 21:58 +Binghamton,,TRIANGLE,NY,8/7/2012 22:00 +Coffeville,,LIGHT,AL,8/7/2012 22:00 +Eau Claire,,TRIANGLE,WI,8/7/2012 22:00 +Hatteras,,LIGHT,NC,8/7/2012 22:00 +Lapeer,ORANGE,DISK,MI,8/7/2012 22:00 +Myrtle Beach,,SPHERE,SC,8/7/2012 22:00 +Troy,ORANGE,CIRCLE,MI,8/7/2012 22:00 +Finley,,OTHER,WA,8/7/2012 22:15 +Sheridan,,LIGHT,WY,8/7/2012 22:20 +Burbank,ORANGE GREEN BLUE,SPHERE,WA,8/7/2012 22:25 +Moundsville,,TRIANGLE,WV,8/7/2012 22:25 +Brownfield,,TRIANGLE,TX,8/7/2012 22:30 +Iowa City,,VARIOUS,IA,8/7/2012 22:35 +North Myrtle Beach,YELLOW,FIREBALL,SC,8/7/2012 22:35 +Myrtle Creek,ORANGE,FIREBALL,OR,8/7/2012 22:50 +Fairborn,,FIREBALL,OH,8/7/2012 23:00 +Kendallville,,SPHERE,IN,8/7/2012 23:00 +Old Orchard Beach,ORANGE YELLOW,CROSS,ME,8/7/2012 23:00 +Red Wing,RED,LIGHT,MN,8/7/2012 23:00 +Warriors Run,,LIGHT,PA,8/7/2012 23:00 +Warriors Run,,LIGHT,PA,8/7/2012 23:00 +Traverse City,ORANGE,LIGHT,MI,8/7/2012 23:05 +Red Hook,,LIGHT,NY,8/8/2012 0:00 +Redmond,,LIGHT,OR,8/8/2012 0:00 +San Ramon,RED GREEN,SPHERE,CA,8/8/2012 0:05 +Columbus,,SPHERE,OH,8/8/2012 2:30 +Spokane,,DISK,WA,8/8/2012 3:00 +Portland,,,OR,8/8/2012 5:00 +Canton,ORANGE,LIGHT,CT,8/8/2012 10:20 +Pace,RED,CIRCLE,FL,8/8/2012 10:45 +Middletown,,FIREBALL,MD,8/8/2012 10:58 +Poughkeepsie,,TRIANGLE,NY,8/8/2012 11:00 +Elizabeth,,DISK,NJ,8/8/2012 11:25 +Seven Mile,,FORMATION,OH,8/8/2012 19:40 +Myrtle Beach,ORANGE,SPHERE,SC,8/8/2012 19:45 +Boise,,CYLINDER,ID,8/8/2012 20:00 +Myrtle Beach,,LIGHT,SC,8/8/2012 20:39 +Lodi,ORANGE,FIREBALL,CA,8/8/2012 21:00 +North Myrtle Beach,,,SC,8/8/2012 21:00 +North Myrtle Beach,,FORMATION,SC,8/8/2012 21:00 +Springfield,,CIRCLE,OH,8/8/2012 21:00 +Venice,,LIGHT,CA,8/8/2012 21:04 +Surf City,,SPHERE,NJ,8/8/2012 21:15 +Cuero,,TRIANGLE,TX,8/8/2012 21:30 +Myrtle Beach,ORANGE,FIREBALL,SC,8/8/2012 21:30 +Philipsburg,,FIREBALL,PA,8/8/2012 21:30 +North Anson,,LIGHT,ME,8/8/2012 21:50 +Myrtle Beach,,LIGHT,SC,8/8/2012 22:00 +Myrtle Beach,,SPHERE,SC,8/8/2012 22:25 +Myrtle Beach,,FIREBALL,SC,8/8/2012 22:30 +McAllen,,OVAL,TX,8/8/2012 23:00 +Nehalem,RED,LIGHT,OR,8/8/2012 23:00 +West Orange,RED,SPHERE,NJ,8/8/2012 23:05 +Inwood,,TRIANGLE,WV,8/8/2012 23:30 +South Daytona,,LIGHT,FL,8/9/2012 0:10 +Silver Lake,YELLOW,,MN,8/9/2012 5:07 +Seattle,,CIGAR,WA,8/9/2012 9:03 +Salem,GREEN,LIGHT,OR,8/9/2012 15:00 +Apopka,,FIREBALL,FL,8/9/2012 20:48 +Waves,RED,FIREBALL,NC,8/9/2012 21:00 +Schofield Barracks,,LIGHT,HI,8/9/2012 21:15 +Dennis,RED ORANGE,FIREBALL,MA,8/9/2012 21:20 +Stillwater,ORANGE,FIREBALL,MN,8/9/2012 21:35 +San Diego,,OTHER,CA,8/9/2012 21:40 +Pine Hill,,LIGHT,NJ,8/9/2012 22:00 +Pittsfield,ORANGE,LIGHT,ME,8/9/2012 22:00 +Yardley,RED,OVAL,PA,8/9/2012 22:00 +Puget Sound,ORANGE,,WA,8/9/2012 23:30 +Schofield Barracks,RED GREEN BLUE,LIGHT,HI,8/9/2012 23:30 +Torrance,,OTHER,CA,8/10/2012 0:15 +Seattle,,FIREBALL,WA,8/10/2012 2:00 +Brownsville,,OVAL,TX,8/10/2012 6:00 +Eden prairie,,CIRCLE,MN,8/10/2012 18:30 +Sheboygan,RED,CIRCLE,WI,8/10/2012 20:30 +Gilbert,,FIREBALL,AZ,8/10/2012 20:50 +Evansville,,TRIANGLE,IN,8/10/2012 21:00 +Finley,,LIGHT,WA,8/10/2012 21:00 +Santa Barbara,ORANGE,CIRCLE,CA,8/10/2012 21:15 +Parma,RED,SPHERE,OH,8/10/2012 21:20 +Eden Prairie,RED,FORMATION,MN,8/10/2012 21:30 +Oregon City,,FIREBALL,OR,8/10/2012 21:30 +Rancho Santa Margarita,,CIRCLE,CA,8/10/2012 21:30 +Wenatchee,,CIRCLE,WA,8/10/2012 21:40 +San Jose,ORANGE,SPHERE,CA,8/10/2012 21:50 +San Diego,,OTHER,CA,8/10/2012 22:00 +Hohenwald,YELLOW,CIRCLE,TN,8/10/2012 22:10 +Thompson Falls,,LIGHT,MT,8/10/2012 22:48 +Thompson Falls,,LIGHT,MT,8/10/2012 22:48 +"Layton, Roy, Ogden areas",,TRIANGLE,UT,8/10/2012 23:00 +Louisville,,LIGHT,KY,8/10/2012 23:00 +Franklin,ORANGE,FIREBALL,TN,8/10/2012 23:30 +Ridgeland,,,MS,8/10/2012 23:59 +Austin,BLUE,CIRCLE,TX,8/11/2012 0:33 +Bath County,,LIGHT,VA,8/11/2012 1:00 +Russellville,,CYLINDER,AR,8/11/2012 1:56 +Duluth,,,MN,8/11/2012 4:00 +Victorville,,SPHERE,CA,8/11/2012 4:35 +Chicao,RED,FIREBALL,IL,8/11/2012 8:30 +Worcester,,CIRCLE,MA,8/11/2012 9:20 +Mount Pleasant,,,SC,8/11/2012 9:44 +Albany,,LIGHT,OR,8/11/2012 10:00 +Lacona,BLUE,CYLINDER,NH,8/11/2012 11:00 +Portland,,FORMATION,OR,8/11/2012 11:45 +Henderson,,LIGHT,NV,8/11/2012 16:20 +Bartlett,ORANGE,FIREBALL,IL,8/11/2012 16:50 +Kearns,,OTHER,UT,8/11/2012 19:00 +Kirkwood,ORANGE,LIGHT,CA,8/11/2012 20:00 +Peoria,YELLOW,FORMATION,IL,8/11/2012 20:00 +Prescott,ORANGE,OVAL,AZ,8/11/2012 20:00 +Altoona,,,IA,8/11/2012 20:30 +Altoona,,TRIANGLE,IA,8/11/2012 20:46 +North Ogden,,,UT,8/11/2012 21:00 +Orlando,RED,TRIANGLE,FL,8/11/2012 21:00 +Renton,ORANGE,FIREBALL,WA,8/11/2012 21:15 +Algona,,LIGHT,WA,8/11/2012 21:30 +Bartlett,,LIGHT,IL,8/11/2012 21:30 +Old Lyme,,OTHER,CT,8/11/2012 21:40 +Enumclaw,,FORMATION,WA,8/11/2012 21:45 +Lake Ariel,,,PA,8/11/2012 21:45 +Park City,ORANGE,LIGHT,UT,8/11/2012 21:45 +Aurora,,CIRCLE,IL,8/11/2012 22:00 +Baldy Village,,DIAMOND,CA,8/11/2012 22:00 +Macomb,ORANGE,LIGHT,MI,8/11/2012 22:00 +Saugatuck,,LIGHT,MI,8/11/2012 22:00 +Seattle,,CHEVRON,WA,8/11/2012 22:00 +Union,RED,TEARDROP,MI,8/11/2012 22:01 +Houghton Lake,,TRIANGLE,MI,8/11/2012 22:05 +Gobles,,SPHERE,MI,8/11/2012 22:18 +Leavenworth,,,WA,8/11/2012 22:25 +San Diego,,CIRCLE,CA,8/11/2012 22:30 +San Jose,,DIAMOND,CA,8/11/2012 22:30 +Clawson,,LIGHT,MI,8/11/2012 22:45 +Bellingham,ORANGE,CIRCLE,WA,8/11/2012 23:00 +Myrtle Beach,,VARIOUS,SC,8/11/2012 23:00 +Western Kansas,,FLASH,KS,8/11/2012 23:00 +Mount Vernon,,TRIANGLE,WA,8/11/2012 23:10 +Bellingham,,FORMATION,WA,8/11/2012 23:30 +Port Angeles,,DIAMOND,WA,8/11/2012 23:30 +Kuna,ORANGE YELLOW,CIRCLE,ID,8/11/2012 23:40 +Coeburn,,LIGHT,VA,8/11/2012 23:50 +Edwardsville,,FLASH,IL,8/11/2012 23:55 +San Jose,,FIREBALL,CA,8/11/2012 23:55 +Davis,,,CA,8/12/2012 0:00 +Peoria,,CIRCLE,IL,8/12/2012 0:00 +Barron,BLUE,FORMATION,WI,8/12/2012 0:15 +Brodheadsville,,FLASH,PA,8/12/2012 0:15 +Bird in Hand,,OVAL,PA,8/12/2012 0:40 +Columbus,,DIAMOND,OH,8/12/2012 0:50 +Avon,,,IN,8/12/2012 1:00 +Beaverton,,DISK,OR,8/12/2012 1:58 +Big Bear,,OTHER,CA,8/12/2012 3:30 +Dorchester,,,SC,8/12/2012 4:00 +West Hollywood,,LIGHT,CA,8/12/2012 4:15 +Edmonds,,SPHERE,WA,8/12/2012 10:04 +Butte,,CIRCLE,MT,8/12/2012 10:30 +Thaxton,,SPHERE,MS,8/12/2012 18:30 +Niland,,,CA,8/12/2012 19:30 +North Myrtle Beach,,,SC,8/12/2012 20:15 +Scottsdale,,LIGHT,AZ,8/12/2012 20:15 +Denver,,EGG,CO,8/12/2012 20:30 +Sun City Summerlin,RED,EGG,NV,8/12/2012 20:30 +Edison,ORANGE,FIREBALL,NJ,8/12/2012 20:35 +Hebron,ORANGE,OTHER,CT,8/12/2012 20:37 +Jacksonville,,,FL,8/12/2012 21:00 +Old Tappan,,FIREBALL,NJ,8/12/2012 21:00 +Babylon,RED ORANGE,FIREBALL,NY,8/12/2012 21:15 +Louisville,,FIREBALL,OH,8/12/2012 21:40 +Bardstown,,DISK,KY,8/12/2012 22:20 +Jonesboro,RED,FORMATION,IL,8/12/2012 22:30 +Salem,ORANGE,SPHERE,OR,8/12/2012 22:30 +Boston,,FIREBALL,MA,8/12/2012 22:45 +Keansburg,ORANGE,FIREBALL,NJ,8/12/2012 22:45 +Oak Island,,TRIANGLE,NC,8/12/2012 22:45 +Defiance,BLUE,CIRCLE,OH,8/12/2012 23:20 +Maple Valley,,SPHERE,WA,8/12/2012 23:20 +Great Falls,,TRIANGLE,MT,8/12/2012 23:49 +Norman,ORANGE,TRIANGLE,OK,8/13/2012 0:15 +Tucson,YELLOW,LIGHT,AZ,8/13/2012 1:30 +Edmond,,FORMATION,OK,8/13/2012 3:45 +San Jose,RED,,CA,8/13/2012 4:00 +Surprise,,DISK,AZ,8/13/2012 4:49 +Carson City,GREEN,CHEVRON,NV,8/13/2012 5:35 +West Bend,,OVAL,WI,8/13/2012 9:49 +Las Vegas,,CIRCLE,NV,8/13/2012 13:00 +San Antonio,,RECTANGLE,TX,8/13/2012 15:00 +Santa Rosa Beach,,OTHER,FL,8/13/2012 19:39 +Fresno,,VARIOUS,CA,8/13/2012 20:39 +Bangor,,LIGHT,ME,8/13/2012 20:45 +Cedar Falls,,FORMATION,IA,8/13/2012 21:00 +Plant City,,CIRCLE,FL,8/13/2012 21:30 +Rogue River,ORANGE,LIGHT,OR,8/13/2012 21:30 +Bandon,,VARIOUS,OR,8/13/2012 21:45 +Grants Pass,,OTHER,OR,8/13/2012 21:45 +North Bend,ORANGE,CIRCLE,OR,8/13/2012 22:00 +Wilburton,ORANGE,LIGHT,OK,8/13/2012 22:00 +O'Brien,,FIREBALL,OR,8/13/2012 22:10 +Cloverdale,,,CA,8/13/2012 23:00 +Wilson,RED,RECTANGLE,NC,8/13/2012 23:00 +Cowpens,,RECTANGLE,SC,8/14/2012 0:00 +Guion,,FLASH,IN,8/14/2012 0:00 +Frankfort,ORANGE,LIGHT,MI,8/14/2012 0:10 +Stillwater,,OTHER,NJ,8/14/2012 3:00 +Boston,,LIGHT,MA,8/14/2012 3:20 +Upland,,CIGAR,CA,8/14/2012 9:00 +San Antonio,,SPHERE,TX,8/14/2012 10:15 +Fulton,,,KY,8/14/2012 17:00 +Parkman,,TRIANGLE,ME,8/14/2012 20:30 +La Porte,,,IN,8/14/2012 20:31 +York,ORANGE,FIREBALL,PA,8/14/2012 21:00 +Sandy,ORANGE,FIREBALL,UT,8/14/2012 21:15 +Antioch,ORANGE,LIGHT,IL,8/14/2012 21:30 +South Yarmouth,RED,CONE,MA,8/14/2012 21:30 +Old Orchard,ORANGE,CIRCLE,ME,8/14/2012 21:45 +Castleton,,FIREBALL,VT,8/14/2012 22:00 +Seatac,,LIGHT,WA,8/14/2012 22:10 +Lebanon,,LIGHT,OR,8/14/2012 22:30 +Sequim,,DIAMOND,WA,8/14/2012 23:15 +Sumter,,VARIOUS,SC,8/15/2012 0:45 +Phoenix,,LIGHT,AZ,8/15/2012 2:30 +Tooele,,FORMATION,UT,8/15/2012 7:30 +Yreka,,CIGAR,CA,8/15/2012 14:00 +Oklahoma City,,CIRCLE,OK,8/15/2012 18:00 +Brentwood,,CIGAR,TN,8/15/2012 19:35 +Bar Harbor,ORANGE,FIREBALL,ME,8/15/2012 19:44 +Nashua,,CYLINDER,NH,8/15/2012 20:00 +Pendleton,,,OR,8/15/2012 20:00 +Revere,ORANGE,SPHERE,MA,8/15/2012 21:00 +Tisbury,ORANGE,FIREBALL,MA,8/15/2012 21:00 +Yuma,,OVAL,AZ,8/15/2012 21:00 +Okanogan,RED,,WA,8/15/2012 21:09 +Omak,,CIRCLE,WA,8/15/2012 21:35 +Omak,,TEARDROP,WA,8/15/2012 21:35 +Buffalo,ORANGE,LIGHT,NY,8/15/2012 21:40 +Leavenworth,ORANGE,FIREBALL,WA,8/15/2012 21:44 +Alexandria,YELLOW,FIREBALL,VA,8/15/2012 23:00 +Missoula,RED ORANGE GREEN,CHEVRON,MT,8/15/2012 23:30 +Bowling Green,,TRIANGLE,OH,8/16/2012 2:00 +Port Republic,,VARIOUS,NJ,8/16/2012 3:00 +Middletown,,LIGHT,CA,8/16/2012 5:00 +Seaside Heights,,DISK,NJ,8/16/2012 18:20 +Norwalk,,TRIANGLE,CT,8/16/2012 20:30 +Colchester,RED,FIREBALL,VT,8/16/2012 20:45 +Midlothian,,FLASH,VA,8/16/2012 21:00 +Monrovia,RED,DISK,CA,8/16/2012 21:00 +Woodstock,,FIREBALL,NY,8/16/2012 21:00 +Nazareth,ORANGE,,PA,8/16/2012 21:05 +Santa Cruz,RED ORANGE,SPHERE,CA,8/16/2012 21:40 +Small Point,,SPHERE,ME,8/16/2012 22:00 +Wildwood,,,NJ,8/16/2012 22:00 +Grand Ronde,ORANGE,SPHERE,OR,8/16/2012 22:30 +Cut Bank,,SPHERE,MT,8/16/2012 23:00 +Cinebar,,TRIANGLE,WA,8/16/2012 23:05 +Mandeville,,LIGHT,LA,8/16/2012 23:50 +Wilmington,RED,CIGAR,NC,8/17/2012 0:49 +Sumner,,TRIANGLE,WA,8/17/2012 2:00 +Las Vegas,RED,TRIANGLE,NV,8/17/2012 8:15 +North Attleboro,ORANGE,FIREBALL,MA,8/17/2012 8:30 +Canton,,LIGHT,KS,8/17/2012 10:00 +Warwick,,,RI,8/17/2012 11:25 +Kansas City,,CIGAR,KS,8/17/2012 12:00 +Madison,RED,LIGHT,WI,8/17/2012 18:30 +Schwencksville,,OTHER,PA,8/17/2012 20:00 +Pittsburgh,ORANGE,LIGHT,PA,8/17/2012 20:30 +Warwick,,CIRCLE,RI,8/17/2012 20:42 +Conway,,CIRCLE,PA,8/17/2012 21:00 +Ellison Bay,,FIREBALL,WI,8/17/2012 21:00 +Hudson,,FORMATION,WI,8/17/2012 21:00 +York Beach,RED,CIRCLE,ME,8/17/2012 21:00 +Abilene,BLUE,OVAL,TX,8/17/2012 21:30 +Downers Grove,,FIREBALL,IL,8/17/2012 21:30 +Spokane,,CIRCLE,WA,8/17/2012 21:30 +Aliso Viejo,,FIREBALL,CA,8/17/2012 21:34 +Cleveland,,LIGHT,TN,8/17/2012 22:00 +Hermiston,RED,LIGHT,OR,8/17/2012 22:00 +Pendleton,,TRIANGLE,IN,8/17/2012 22:00 +South Bend,ORANGE,FIREBALL,IN,8/17/2012 22:00 +Bainbridge Island,,LIGHT,WA,8/17/2012 22:05 +Colby,,TRIANGLE,KS,8/17/2012 22:42 +Warren,,CIRCLE,MI,8/17/2012 23:00 +Houston,,OTHER,TX,8/17/2012 23:20 +Covington,,FIREBALL,IN,8/17/2012 23:30 +Rochester Hills,RED,OTHER,MI,8/17/2012 23:45 +Gladwin,RED,DISK,MI,8/18/2012 0:00 +Hagerman,RED GREEN,DIAMOND,NM,8/18/2012 0:00 +Minneapolis,ORANGE,FIREBALL,MN,8/18/2012 0:00 +no data,,OVAL,PA,8/18/2012 0:00 +Davis,,TEARDROP,CA,8/18/2012 0:05 +Aptos,,SPHERE,CA,8/18/2012 2:05 +Capac,,CIRCLE,MI,8/18/2012 4:00 +Cameron,,CIRCLE,MO,8/18/2012 6:52 +Massillon,,OVAL,OH,8/18/2012 9:47 +Tempe,,DIAMOND,AZ,8/18/2012 12:43 +Epping,RED YELLOW,OVAL,NH,8/18/2012 17:30 +Denver,,OTHER,CO,8/18/2012 18:50 +Maple Heights,,,OH,8/18/2012 19:00 +Hoxie,,CROSS,KS,8/18/2012 19:20 +LeClaire,RED,RECTANGLE,IA,8/18/2012 20:00 +Mundelein,,FIREBALL,IL,8/18/2012 20:15 +Rome,,CIRCLE,NY,8/18/2012 20:25 +South Beloit,,SPHERE,IL,8/18/2012 20:25 +Mukilteo,ORANGE,OVAL,WA,8/18/2012 20:30 +Ashburn,RED,FIREBALL,VA,8/18/2012 20:40 +Lindenhurst,,FIREBALL,NY,8/18/2012 20:50 +Phillips,,LIGHT,ME,8/18/2012 20:50 +Asheboro,ORANGE,SPHERE,NC,8/18/2012 21:00 +Binghamton,,,NY,8/18/2012 21:00 +Cambridge,,LIGHT,NY,8/18/2012 21:00 +Elk,RED,FORMATION,WA,8/18/2012 21:00 +River Falls,RED ORANGE,OVAL,WI,8/18/2012 21:00 +Santa Barbara,ORANGE,CIRCLE,CA,8/18/2012 21:00 +Spotsylvania,,TRIANGLE,VA,8/18/2012 21:00 +Erie,,,PA,8/18/2012 21:15 +Erie,ORANGE,FORMATION,PA,8/18/2012 21:15 +Madison,,CYLINDER,WI,8/18/2012 21:15 +Milford,RED,LIGHT,CT,8/18/2012 21:15 +Corpus Christi,,LIGHT,TX,8/18/2012 21:25 +Grafton,ORANGE,OVAL,WI,8/18/2012 21:30 +Kettering,,CIRCLE,OH,8/18/2012 21:30 +Macomb Township,RED,LIGHT,MI,8/18/2012 21:30 +Omaha,ORANGE,LIGHT,NE,8/18/2012 21:30 +Troutdale,,FIREBALL,OR,8/18/2012 21:30 +Holly Springs,RED ORANGE,FIREBALL,NC,8/18/2012 21:45 +Columbus,,,OH,8/18/2012 22:00 +Elmhurst,ORANGE,CYLINDER,IL,8/18/2012 22:00 +Grand Marais,,TEARDROP,MN,8/18/2012 22:00 +Hartford,,LIGHT,CT,8/18/2012 22:00 +Lapeer,ORANGE,FIREBALL,MI,8/18/2012 22:00 +Macomb,,CIRCLE,MI,8/18/2012 22:00 +New York City,,SPHERE,NY,8/18/2012 22:00 +Portsmouth,,TEARDROP,NH,8/18/2012 22:00 +Minneapolis,ORANGE,LIGHT,MN,8/18/2012 22:05 +Camas,,CIRCLE,WA,8/18/2012 22:30 +Glenwood,,LIGHT,MN,8/18/2012 22:30 +Montague,,LIGHT,MI,8/18/2012 22:30 +Grand Chute,,FIREBALL,WI,8/18/2012 22:40 +Arlington,,CIRCLE,TN,8/18/2012 22:45 +Erie,ORANGE,FIREBALL,PA,8/18/2012 22:45 +Pentwater,RED,SPHERE,MI,8/18/2012 22:45 +Brentwood,ORANGE,FIREBALL,MO,8/18/2012 22:46 +Abilene,ORANGE BLUE,,TX,8/18/2012 23:00 +Jacksonville Beach,,FIREBALL,FL,8/18/2012 23:00 +Milford,,FIREBALL,CT,8/18/2012 23:00 +Columbus,,SPHERE,OH,8/18/2012 23:40 +Leadville,,LIGHT,CO,8/19/2012 0:30 +Carefree,,LIGHT,AZ,8/19/2012 4:00 +Hollister,RED,LIGHT,MO,8/19/2012 9:30 +Corona,,,CA,8/19/2012 10:45 +Virginia Beach,,OTHER,VA,8/19/2012 12:45 +Valley Glen,,CHEVRON,CA,8/19/2012 16:30 +Brick,,SPHERE,NJ,8/19/2012 18:30 +Racine,,SPHERE,WI,8/19/2012 20:00 +Reseda,,FIREBALL,CA,8/19/2012 20:00 +Essex,,FIREBALL,VT,8/19/2012 20:20 +Wickliffe,,LIGHT,OH,8/19/2012 20:30 +Walworth,ORANGE,SPHERE,NY,8/19/2012 21:02 +Porter,ORANGE,,IN,8/19/2012 21:15 +Lewisville,RED,CYLINDER,TX,8/19/2012 21:30 +Battle Ground,,TEARDROP,WA,8/19/2012 21:45 +Chautauqua,,FIREBALL,NY,8/19/2012 22:00 +Commack,,DIAMOND,NY,8/19/2012 22:00 +McGregor,ORANGE,TRIANGLE,MN,8/19/2012 22:00 +Minneapolis,,LIGHT,MN,8/19/2012 22:00 +Cougar,,CIRCLE,WA,8/19/2012 22:15 +"Monee Manhattan Rd, Monee,on i57 headed north IL 60449",BLUE,TEARDROP,IL,8/19/2012 22:15 +Milwaukee,ORANGE,FIREBALL,WI,8/19/2012 22:20 +Huber Heights,,SPHERE,OH,8/19/2012 23:00 +Lake Ariel,,FORMATION,PA,8/19/2012 23:00 +Tulsa,GREEN,TRIANGLE,OK,8/19/2012 23:30 +South Beach,,FLASH,OR,8/20/2012 0:20 +El Dorado,,CIRCLE,KS,8/20/2012 9:15 +Newport,,CYLINDER,NH,8/20/2012 13:30 +Madison,,OVAL,SD,8/20/2012 19:40 +Loves Park,,CIRCLE,IL,8/20/2012 20:20 +Clovis,,FLASH,CA,8/20/2012 20:45 +Asheville,,LIGHT,NC,8/20/2012 21:00 +Memphis,,LIGHT,TN,8/20/2012 21:00 +Moxee,,OTHER,WA,8/20/2012 21:08 +Peru,,TRIANGLE,IL,8/20/2012 21:30 +Willowick,ORANGE,SPHERE,OH,8/20/2012 21:45 +Grants Pass,,CIRCLE,OR,8/20/2012 22:00 +Warrenton,,LIGHT,OR,8/20/2012 22:10 +Moses Lake,ORANGE,TRIANGLE,WA,8/20/2012 22:30 +Newbury Park,,TRIANGLE,CA,8/20/2012 22:30 +Ludlow,,OVAL,MA,8/20/2012 23:00 +Enfield,,CIRCLE,CT,8/21/2012 0:00 +Longmeadow,,SPHERE,MA,8/21/2012 10:00 +na,,OVAL,LA,8/21/2012 14:30 +North Bend,,EGG,WA,8/21/2012 20:30 +Green Bay,,TRIANGLE,WI,8/21/2012 20:35 +Green Bay,ORANGE,FORMATION,WI,8/21/2012 20:40 +Green Bay,ORANGE GREEN,,WI,8/21/2012 20:45 +Green Bay,GREEN,OVAL,WI,8/21/2012 20:45 +Ypsilanti,ORANGE YELLOW,DISK,MI,8/21/2012 20:50 +Longmont,,TEARDROP,CO,8/21/2012 21:00 +Rensselaer,,,IN,8/21/2012 21:00 +Orem,,LIGHT,UT,8/21/2012 21:30 +Port Clinto,ORANGE,CIRCLE,OH,8/21/2012 21:30 +Andover,,VARIOUS,KS,8/21/2012 21:35 +Richland,RED,FORMATION,WA,8/21/2012 21:40 +Kennewick,,OTHER,WA,8/21/2012 21:45 +Kennewick,,TRIANGLE,WA,8/21/2012 22:00 +Myrtle Beach,,FIREBALL,SC,8/21/2012 22:00 +Columbus,,FIREBALL,OH,8/21/2012 22:18 +Victoria,RED,TRIANGLE,TX,8/21/2012 22:47 +Vancouver,,CIRCLE,WA,8/21/2012 23:00 +Yakima,,DISK,WA,8/21/2012 23:00 +Springdale,,LIGHT,AR,8/21/2012 23:15 +Greenfield,,DISK,IN,8/22/2012 5:20 +Knoxville,,CYLINDER,TN,8/22/2012 7:12 +Morristown,,RECTANGLE,TN,8/22/2012 11:00 +Madison,,LIGHT,AL,8/22/2012 13:10 +Merrick,BLUE,TRIANGLE,NY,8/22/2012 18:45 +Hoover,,LIGHT,AL,8/22/2012 19:00 +New York City,,CIGAR,NY,8/22/2012 20:05 +Yucaipa,ORANGE,SPHERE,CA,8/22/2012 20:40 +Lincoln City,,LIGHT,OR,8/22/2012 21:00 +Fort Mill,,CYLINDER,SC,8/22/2012 21:05 +Rock Springs,,SPHERE,WY,8/22/2012 22:00 +Orr,ORANGE,SPHERE,MN,8/22/2012 22:25 +Tacoma,,OVAL,WA,8/22/2012 22:30 +Hilliard,,,OH,8/22/2012 23:00 +Block Island,,FIREBALL,RI,8/22/2012 23:15 +Bridgewater,GREEN,OTHER,NJ,8/23/2012 0:00 +Colorado City,,CHEVRON,TX,8/23/2012 0:00 +Hermann,,CIGAR,MO,8/23/2012 1:00 +Plainsboro,,FIREBALL,NJ,8/23/2012 1:47 +Perry Hall,,TRIANGLE,MD,8/23/2012 4:30 +Londonderry,,OTHER,NH,8/23/2012 5:52 +New Hyde Park,ORANGE YELLOW GREEN,FIREBALL,NY,8/23/2012 6:55 +Garfield Heights,ORANGE,LIGHT,OH,8/23/2012 8:45 +Brentwood,,,NY,8/23/2012 9:15 +Rochester,,VARIOUS,NY,8/23/2012 9:40 +Omaha,ORANGE,CIRCLE,NE,8/23/2012 10:00 +Charlotte,ORANGE,FIREBALL,NC,8/23/2012 11:30 +Longwood,,LIGHT,FL,8/23/2012 11:30 +Boston,,TRIANGLE,MA,8/23/2012 20:30 +Boston,,TRIANGLE,MA,8/23/2012 20:30 +Chicago,,FIREBALL,IL,8/23/2012 20:45 +Laguna Beach,RED,FORMATION,CA,8/23/2012 21:00 +Montclair,,SPHERE,NJ,8/23/2012 21:27 +Casper,,LIGHT,WY,8/23/2012 21:30 +Williamsport,RED,FIREBALL,PA,8/23/2012 21:45 +Grand Rapids,,LIGHT,MI,8/23/2012 22:00 +Two Harbors,ORANGE,TRIANGLE,MN,8/23/2012 22:00 +Waterloo,,FIREBALL,IA,8/23/2012 22:05 +Grantsville,,FLASH,MD,8/23/2012 22:30 +Uniontown,,FIREBALL,OH,8/23/2012 23:55 +Harvard,,FIREBALL,IL,8/24/2012 0:40 +Fresno,,FORMATION,CA,8/24/2012 2:30 +Northport,,FIREBALL,NY,8/24/2012 7:30 +Syracuse,,CIGAR,NY,8/24/2012 10:15 +Foxborough,RED,RECTANGLE,MA,8/24/2012 11:00 +White River Junction,ORANGE,CIRCLE,VT,8/24/2012 11:00 +no data,,OVAL,AK,8/24/2012 12:00 +Manchester,,DISK,VT,8/24/2012 13:00 +Sacramento,,DISK,CA,8/24/2012 20:00 +Beachwood,GREEN,OTHER,OH,8/24/2012 20:30 +Pasadena,RED,FIREBALL,MD,8/24/2012 20:40 +Huntley,ORANGE,DIAMOND,IL,8/24/2012 20:47 +Hampton,ORANGE,CHEVRON,NH,8/24/2012 21:00 +Erie,GREEN,OTHER,CO,8/24/2012 21:08 +Holly Springs,ORANGE,FIREBALL,NC,8/24/2012 21:30 +Clear Lake,,SPHERE,TX,8/24/2012 22:00 +Issaquah,,FIREBALL,WA,8/24/2012 22:00 +Nottingham,,CIRCLE,NH,8/24/2012 22:00 +Rochester,ORANGE,SPHERE,NY,8/24/2012 22:00 +Rockford,ORANGE,CIRCLE,IL,8/24/2012 22:40 +Asheville,ORANGE,CIRCLE,NC,8/24/2012 22:45 +Lockport,ORANGE,CIRCLE,IL,8/24/2012 22:50 +Bolton Landing,ORANGE,CIRCLE,NY,8/24/2012 23:00 +Boston,,OVAL,MA,8/25/2012 0:00 +Taunton,,OVAL,MA,8/25/2012 0:00 +Neah Bay,,SPHERE,WA,8/25/2012 0:30 +Joliet,ORANGE,LIGHT,IL,8/25/2012 0:35 +Arlington,,SPHERE,VT,8/25/2012 0:44 +Greensboro,,CIRCLE,NC,8/25/2012 5:00 +Malden,GREEN,LIGHT,MA,8/25/2012 5:55 +Cornelius,,OVAL,OR,8/25/2012 8:49 +Cobb,,TRIANGLE,CA,8/25/2012 11:00 +Espanola,,RECTANGLE,NM,8/25/2012 12:30 +Marshfield,,CYLINDER,MA,8/25/2012 16:00 +Vancouver,RED,FIREBALL,WA,8/25/2012 19:00 +Fowler,,SPHERE,NY,8/25/2012 20:00 +Oshkosh,ORANGE,CIRCLE,WI,8/25/2012 20:30 +Lansing,ORANGE,SPHERE,IL,8/25/2012 20:50 +Allentown,ORANGE BLUE,CIRCLE,PA,8/25/2012 21:00 +Cortland,,FIREBALL,NY,8/25/2012 21:00 +East Earl,YELLOW,,PA,8/25/2012 21:00 +Elkhorn,RED,LIGHT,WI,8/25/2012 21:00 +Greece,RED,SPHERE,NY,8/25/2012 21:00 +Las Vegas,,,NV,8/25/2012 21:00 +Milwaukee,ORANGE,FORMATION,WI,8/25/2012 21:00 +West Homestead,RED,CIRCLE,PA,8/25/2012 21:00 +Winston-Salem,,LIGHT,NC,8/25/2012 21:00 +Cornelius,,SPHERE,OR,8/25/2012 21:05 +Rock Springs,,LIGHT,WY,8/25/2012 21:15 +Austin,,,TX,8/25/2012 21:30 +Elyria,ORANGE,FIREBALL,OH,8/25/2012 21:30 +Henniker,ORANGE,FIREBALL,NH,8/25/2012 21:35 +Coeburn,,SPHERE,VA,8/25/2012 21:40 +Farmington Hills,,FIREBALL,MI,8/25/2012 21:45 +Hauppauge,ORANGE,FIREBALL,NY,8/25/2012 21:45 +West Windsor,ORANGE,CIGAR,VT,8/25/2012 21:46 +Liberty Lake,,FIREBALL,WA,8/25/2012 22:00 +Superior Township,,LIGHT,MI,8/25/2012 22:00 +Waxhaw,RED,CIRCLE,NC,8/25/2012 22:25 +Parkersburg,ORANGE,LIGHT,WV,8/25/2012 22:30 +MCewen,,,TN,8/25/2012 22:50 +Alpharetta,ORANGE,LIGHT,GA,8/25/2012 23:00 +Delray Beach,,CIRCLE,FL,8/25/2012 23:00 +Fifty Six,,LIGHT,AR,8/25/2012 23:00 +Troy,ORANGE,LIGHT,MI,8/25/2012 23:00 +Woodstown,,FIREBALL,NJ,8/25/2012 23:00 +Nampa,GREEN,LIGHT,ID,8/26/2012 0:00 +Stellenboch Montains,,OVAL,FL,8/26/2012 0:00 +Syracuse,,CIRCLE,NY,8/26/2012 0:00 +Suffield,YELLOW,TRIANGLE,CT,8/26/2012 1:00 +Mineral,,VARIOUS,VA,8/26/2012 1:30 +Ennis,ORANGE,VARIOUS,TX,8/26/2012 1:44 +Auburndale,,,WI,8/26/2012 2:00 +North Myrtle Beach,,TRIANGLE,SC,8/26/2012 3:00 +Winchester,,,VA,8/26/2012 3:00 +North Scottsdale,RED BLUE,VARIOUS,AZ,8/26/2012 9:30 +Union Grove,,FIREBALL,WI,8/26/2012 10:15 +Center,,CIRCLE,MO,8/26/2012 12:50 +Lake George,,OTHER,NY,8/26/2012 18:00 +Mineral,,,WA,8/26/2012 18:00 +Annandale,,FIREBALL,NJ,8/26/2012 18:21 +Spring Hill,,LIGHT,KS,8/26/2012 19:00 +Park City,,LIGHT,UT,8/26/2012 19:30 +Green Oak Twp,RED,CIRCLE,MI,8/26/2012 20:00 +Kansas City,,TEARDROP,MO,8/26/2012 20:15 +Morrisville,,FIREBALL,VT,8/26/2012 20:30 +Grove City,BLUE,LIGHT,PA,8/26/2012 20:45 +Langley,,FIREBALL,WA,8/26/2012 20:50 +Joplin,RED,CIRCLE,MO,8/26/2012 21:00 +Seminole,,CIRCLE,OK,8/26/2012 21:00 +Syracuse,,FIREBALL,NY,8/26/2012 21:00 +Palm Springs,,CIRCLE,CA,8/26/2012 21:18 +Edmonds,,FLASH,WA,8/26/2012 22:00 +Waldport,,CIRCLE,OR,8/26/2012 22:30 +Bondurant,,LIGHT,IA,8/26/2012 23:00 +Sag Harbor,RED,FIREBALL,NY,8/26/2012 23:30 +Branson,,OTHER,MO,8/27/2012 0:45 +Storm Lake,,FORMATION,IA,8/27/2012 4:36 +Trenton,,,GA,8/27/2012 5:30 +Lancaster,GREEN,TEARDROP,NY,8/27/2012 6:10 +Farmington,,CIRCLE,MN,8/27/2012 12:00 +San Diego,,LIGHT,CA,8/27/2012 20:25 +San Diego,,SPHERE,CA,8/27/2012 20:25 +Tomball,,LIGHT,TX,8/27/2012 20:45 +York,GREEN,FIREBALL,ME,8/27/2012 21:00 +York,,OTHER,ME,8/27/2012 21:00 +Topsfield,YELLOW,TEARDROP,MA,8/27/2012 21:15 +Columbus,,LIGHT,OH,8/27/2012 21:25 +Westminster,GREEN BLUE,,CO,8/27/2012 22:16 +Apple Valley,YELLOW,SPHERE,CA,8/27/2012 22:30 +Corolla,ORANGE,CIRCLE,NC,8/27/2012 23:00 +Pahrump,,LIGHT,NV,8/27/2012 23:18 +Duluth,,OVAL,MN,8/28/2012 0:15 +Joliet,ORANGE,CIRCLE,IL,8/28/2012 1:00 +Miami,ORANGE,FIREBALL,FL,8/28/2012 1:56 +Scottsdale,ORANGE,FIREBALL,AZ,8/28/2012 2:30 +Tulsa,,DISK,OK,8/28/2012 2:30 +Anchorage,,LIGHT,AK,8/28/2012 9:00 +Houston,,CYLINDER,TX,8/28/2012 20:00 +Dallas,GREEN,OTHER,TX,8/28/2012 20:58 +Bethel Park,,LIGHT,PA,8/28/2012 21:30 +El Centro,ORANGE,OTHER,CA,8/28/2012 22:00 +Charleston,,LIGHT,WV,8/28/2012 23:00 +Mancelona,RED,,MI,8/29/2012 0:00 +Rochester,,LIGHT,NY,8/29/2012 0:00 +Smithsburg,,TRIANGLE,MD,8/29/2012 0:30 +Columbus,,FIREBALL,OH,8/29/2012 0:31 +Castro Valley,,,CA,8/29/2012 5:25 +New York City,,EGG,NY,8/29/2012 12:00 +Huntington Beach,,DISK,CA,8/29/2012 20:00 +Topeka,GREEN,CROSS,KS,8/29/2012 20:20 +Providence Village,,LIGHT,TX,8/29/2012 20:30 +Santa Clarita,,SPHERE,CA,8/29/2012 20:30 +Philadelphia,RED,CIRCLE,PA,8/29/2012 21:00 +Springboro,,CROSS,OH,8/29/2012 21:00 +Sterling Hts.,,VARIOUS,MI,8/29/2012 21:00 +Imperial,,DISK,CA,8/29/2012 21:30 +Clarence,,OVAL,NY,8/29/2012 21:40 +Charlotte,ORANGE,FIREBALL,NC,8/29/2012 21:51 +Danielson,RED,SPHERE,CT,8/29/2012 22:00 +Simpsonville,BLUE,SPHERE,SC,8/29/2012 22:00 +Austin,YELLOW,FIREBALL,TX,8/29/2012 22:35 +Orange Beach,,SPHERE,AL,8/29/2012 23:00 +Poipu,,LIGHT,HI,8/30/2012 0:00 +Knoxville,,LIGHT,TN,8/30/2012 0:44 +Sacramento,,TRIANGLE,CA,8/30/2012 1:53 +Modesto,,LIGHT,CA,8/30/2012 2:30 +Laurel,RED YELLOW GREEN,,MS,8/30/2012 17:00 +El Cerrito,,DISK,CA,8/30/2012 18:39 +Pittsburgh,,FIREBALL,PA,8/30/2012 20:45 +Greer,,SPHERE,SC,8/30/2012 21:00 +Desert Center,,FIREBALL,CA,8/30/2012 21:15 +Blythe,,FIREBALL,CA,8/30/2012 21:30 +Salisbury,,LIGHT,MD,8/30/2012 22:00 +Ocean City,,FIREBALL,MD,8/30/2012 22:15 +Quarryville,,FIREBALL,PA,8/30/2012 22:55 +Dover,RED,LIGHT,NH,8/30/2012 23:00 +Milan,ORANGE,CIRCLE,MI,8/30/2012 23:00 +Chandler,RED,FORMATION,AZ,8/30/2012 23:28 +Hampton,,LIGHT,NE,8/30/2012 23:44 +Raleigh,RED GREEN,OTHER,NC,8/31/2012 0:20 +Collingswood,,,NJ,8/31/2012 0:54 +Madison,,FIREBALL,WI,8/31/2012 1:50 +Reno,,LIGHT,NV,8/31/2012 2:18 +Palmyra,,LIGHT,PA,8/31/2012 6:16 +Houston,,DISK,TX,8/31/2012 6:40 +Denair,,CIGAR,CA,8/31/2012 9:20 +Carlsbad,,CIGAR,CA,8/31/2012 12:00 +Yelm,ORANGE,RECTANGLE,WA,8/31/2012 17:20 +Mannington,,FLASH,NJ,8/31/2012 19:45 +Durham,,OVAL,CT,8/31/2012 20:40 +Newburgh,,FIREBALL,IN,8/31/2012 20:45 +Monroe,RED,FORMATION,WI,8/31/2012 21:00 +West Valley City,,TRIANGLE,UT,8/31/2012 21:00 +Spring Hill,,CIGAR,TN,8/31/2012 21:03 +St. George,,FIREBALL,UT,8/31/2012 21:04 +Burnsville,ORANGE,SPHERE,MN,8/31/2012 21:30 +Longwood,ORANGE,FIREBALL,FL,8/31/2012 21:40 +Villa Park,RED,CIRCLE,IL,8/31/2012 23:00 +Provincetown,,TRIANGLE,MA,8/31/2012 23:20 +Amsterdam,,,NY,8/31/2012 23:30 +McKees Rocks,,LIGHT,PA,8/31/2012 23:35 +Dennis,ORANGE,CIRCLE,MA,9/1/2012 0:00 +Kellys Island,,TRIANGLE,OH,9/1/2012 0:00 +Wildwood Crest,,DISK,NJ,9/1/2012 0:00 +Oakley,,TRIANGLE,CA,9/1/2012 0:30 +Wilmington,RED,TRIANGLE,NC,9/1/2012 1:30 +Bremerton,,CIRCLE,WA,9/1/2012 2:30 +Aynor,,CIRCLE,SC,9/1/2012 3:30 +Dexter,,FIREBALL,NY,9/1/2012 9:00 +Fairview,RED,LIGHT,PA,9/1/2012 9:15 +Oyster Bay,RED,FIREBALL,NY,9/1/2012 10:28 +Phoenix,BLUE,TRIANGLE,AZ,9/1/2012 10:35 +Helena,RED,LIGHT,MT,9/1/2012 11:15 +Scottsdale,,VARIOUS,AZ,9/1/2012 16:30 +Bessemer City,,FORMATION,NC,9/1/2012 17:10 +Norman,,,OK,9/1/2012 17:45 +Chicago,,OTHER,IL,9/1/2012 19:00 +Lake George,ORANGE,SPHERE,NY,9/1/2012 20:00 +Bristol,RED ORANGE,LIGHT,NH,9/1/2012 20:07 +Lincoln,,LIGHT,CA,9/1/2012 20:15 +Whitehall,RED,LIGHT,WI,9/1/2012 20:15 +Point Pleasant,,FIREBALL,NJ,9/1/2012 20:30 +Grove city,,LIGHT,PA,9/1/2012 20:35 +Edwardsville,ORANGE YELLOW,FIREBALL,IL,9/1/2012 21:00 +Jackson,,TRIANGLE,WI,9/1/2012 21:00 +Quinby,ORANGE,FIREBALL,SC,9/1/2012 21:00 +Rehoboth,RED,LIGHT,DE,9/1/2012 21:00 +St. Louis Park,,FIREBALL,MN,9/1/2012 21:00 +White Sands National,GREEN,LIGHT,NM,9/1/2012 21:00 +St. Louis Park,,LIGHT,MN,9/1/2012 21:01 +Saint Paul,ORANGE,SPHERE,MN,9/1/2012 21:12 +Cohasset,ORANGE,SPHERE,MA,9/1/2012 21:30 +Superior,,LIGHT,WI,9/1/2012 21:30 +Whiteland,ORANGE,DISK,IN,9/1/2012 21:40 +Lindenhurst,,FIREBALL,NY,9/1/2012 21:45 +Bay Village,RED,TRIANGLE,OH,9/1/2012 22:00 +Jackson,BLUE,TRIANGLE,WI,9/1/2012 22:00 +Londonderry,ORANGE,CIRCLE,NH,9/1/2012 22:00 +Dallas,,TRIANGLE,PA,9/1/2012 22:20 +Carolina Beach,,TEARDROP,NC,9/1/2012 22:30 +Eugene,,CIRCLE,OR,9/1/2012 23:00 +Hickory,,,NC,9/1/2012 23:00 +Huntington Beach,,LIGHT,CA,9/1/2012 23:00 +Pomona,,LIGHT,CA,9/1/2012 23:00 +Pomona,BLUE,LIGHT,CA,9/1/2012 23:00 +Victorville,ORANGE,CIRCLE,CA,9/1/2012 23:00 +Seattle,,FIREBALL,WA,9/1/2012 23:15 +Colorado Springs,RED,,CO,9/2/2012 0:00 +East Hartford,,LIGHT,CT,9/2/2012 0:15 +Chicago,,TEARDROP,IL,9/2/2012 1:00 +Milton,,LIGHT,NH,9/2/2012 1:10 +Quincy,,TRIANGLE,MA,9/2/2012 2:25 +North Platte,,TRIANGLE,NE,9/2/2012 3:25 +Edison,,DISK,NJ,9/2/2012 3:50 +Huntley,,OVAL,IL,9/2/2012 9:00 +Houston,,FIREBALL,TX,9/2/2012 10:05 +Abingdon,,,VA,9/2/2012 11:50 +New Haven,,FIREBALL,CT,9/2/2012 13:00 +Caldwell,,DIAMOND,TX,9/2/2012 18:00 +Lakewood,,SPHERE,CO,9/2/2012 19:30 +Macias,ORANGE,SPHERE,ME,9/2/2012 19:52 +Clifton,RED ORANGE,FIREBALL,NJ,9/2/2012 20:00 +Waterville,,,ME,9/2/2012 20:18 +Berlin,ORANGE,CIRCLE,NH,9/2/2012 20:30 +Crown Point,,CIRCLE,IN,9/2/2012 20:30 +Hampton,YELLOW,CIRCLE,NH,9/2/2012 20:30 +Elkhorn,RED,LIGHT,WI,9/2/2012 21:00 +Lancaster,,LIGHT,NH,9/2/2012 21:00 +Pelion,,FIREBALL,SC,9/2/2012 21:00 +Slatington,,CIRCLE,PA,9/2/2012 21:00 +Milford,ORANGE,OVAL,CT,9/2/2012 21:05 +Cape Coral,,FIREBALL,FL,9/2/2012 21:12 +Fairfield County-NYC area,,FIREBALL,CT,9/2/2012 22:00 +Fort Myers,,OVAL,FL,9/2/2012 22:00 +Southwick Beach State Park,,FIREBALL,NY,9/2/2012 22:00 +West Seattle,,SPHERE,WA,9/2/2012 22:05 +Dayton,,TRIANGLE,OH,9/2/2012 22:30 +Mentot,,SPHERE,OH,9/2/2012 23:00 +Verona,ORANGE,FIREBALL,PA,9/2/2012 23:00 +San Jose,ORANGE,FIREBALL,CA,9/2/2012 23:30 +Grand Forks,,VARIOUS,ND,9/3/2012 3:03 +Dade City,,OTHER,FL,9/3/2012 9:30 +Irvine,,CYLINDER,CA,9/3/2012 16:45 +Mason,,OVAL,TX,9/3/2012 17:15 +Belle Mead,ORANGE,FIREBALL,NJ,9/3/2012 19:00 +Palatine,,SPHERE,IL,9/3/2012 20:15 +Plainfield,RED ORANGE,OTHER,IL,9/3/2012 21:05 +Owasso,GREEN,LIGHT,OK,9/3/2012 21:15 +Clinton Township,,CIRCLE,MI,9/3/2012 21:30 +St. Augustine,YELLOW,FIREBALL,FL,9/3/2012 21:30 +Moline,,TRIANGLE,IL,9/3/2012 21:45 +New Cumberland,RED,TRIANGLE,WV,9/3/2012 21:45 +Farmington,,SPHERE,AR,9/3/2012 21:50 +Fairbanks,,,AK,9/3/2012 21:57 +Marlboro,,FIREBALL,MA,9/3/2012 22:00 +Olathe,,,KS,9/3/2012 23:00 +Toledo,,FIREBALL,OH,9/4/2012 0:00 +Sheboygan,,OTHER,WI,9/4/2012 1:00 +Las Vegas,,TRIANGLE,NV,9/4/2012 7:00 +Rancho Viejo,ORANGE,CIRCLE,TX,9/4/2012 8:56 +Moore,,LIGHT,OK,9/4/2012 17:40 +Fort Collins,ORANGE,RECTANGLE,CO,9/4/2012 18:00 +Auburn,,CIRCLE,WA,9/4/2012 20:00 +Alpine,,FLASH,UT,9/4/2012 20:30 +Lincolnton,,DISK,GA,9/4/2012 21:00 +Albuquerque,GREEN,OTHER,NM,9/4/2012 21:30 +Woodville,,LIGHT,ME,9/4/2012 21:36 +Dewattow,,OVAL,WA,9/5/2012 0:00 +Ellensburg,RED YELLOW BLUE,TRIANGLE,WA,9/5/2012 0:46 +Saugus,,DISK,CA,9/5/2012 1:00 +Fountain Valley,,OVAL,CA,9/5/2012 4:00 +Kelso,,OVAL,WA,9/5/2012 5:30 +Springfield,,FORMATION,MO,9/5/2012 5:30 +Lee,,LIGHT,NH,9/5/2012 6:30 +Everywhere,,SPHERE,WA,9/5/2012 8:00 +Miller Place,RED BLUE,DIAMOND,NY,9/5/2012 20:24 +Duluth,YELLOW,OTHER,GA,9/5/2012 21:00 +Hurricane,RED,TRIANGLE,WV,9/5/2012 21:00 +Indianapolis,,,IN,9/5/2012 22:30 +Auburn,ORANGE,CHEVRON,WA,9/5/2012 23:10 +Cogar,,CIRCLE,OK,9/6/2012 7:07 +Bridgeport,,CIRCLE,CA,9/6/2012 8:00 +North Falmouth,GREEN,,MA,9/6/2012 9:12 +East Prairie,,SPHERE,MO,9/6/2012 9:30 +Bozeman,BLUE,FLASH,MT,9/6/2012 11:38 +Lockport,,CIRCLE,NY,9/6/2012 19:00 +Heath,,DISK,OH,9/6/2012 20:37 +New York City,ORANGE,FIREBALL,NY,9/6/2012 21:04 +Stafford,,LIGHT,VA,9/6/2012 21:20 +Austin,RED GREEN,TRIANGLE,TX,9/6/2012 21:45 +Albuquerque,,,NM,9/6/2012 22:00 +Stroudsburg,ORANGE,FORMATION,PA,9/6/2012 23:45 +Big Bear City,,CIRCLE,CA,9/7/2012 0:00 +Walla Walla,GREEN,LIGHT,WA,9/7/2012 1:00 +Fort Worth,,FIREBALL,TX,9/7/2012 2:45 +Fort Riley,,LIGHT,KS,9/7/2012 5:20 +Delray Beach,BLUE,SPHERE,FL,9/7/2012 5:30 +Whidbey,,SPHERE,WA,9/7/2012 5:30 +Conyers,,CYLINDER,GA,9/7/2012 14:00 +North Tonawanda,ORANGE,FIREBALL,NY,9/7/2012 20:30 +Delafield,RED,TRIANGLE,WI,9/7/2012 20:50 +Gilbert,,SPHERE,AZ,9/7/2012 21:30 +Richland,ORANGE,FIREBALL,WA,9/7/2012 21:45 +Vancouver,,TRIANGLE,WA,9/7/2012 21:46 +Slatington,,SPHERE,PA,9/7/2012 22:00 +Stevens Point,ORANGE,FIREBALL,WI,9/7/2012 22:00 +Willow,ORANGE,FIREBALL,AK,9/7/2012 23:00 +Knoxville,,FIREBALL,TN,9/7/2012 23:10 +Buffalo Grove,,VARIOUS,IL,9/8/2012 0:00 +Miami,,FIREBALL,FL,9/8/2012 0:00 +Stroudsburg,,CIRCLE,PA,9/8/2012 2:00 +Coconut Creek,,TRIANGLE,FL,9/8/2012 5:00 +Gulfport,,CIRCLE,MS,9/8/2012 8:15 +Gifford Pinchot National Forest,,CHEVRON,WA,9/8/2012 9:00 +Wesley Chapel,,LIGHT,FL,9/8/2012 11:30 +Waxahachie,,VARIOUS,TX,9/8/2012 12:30 +Norton,,CHEVRON,MA,9/8/2012 15:30 +Rocky Boy,,DIAMOND,MT,9/8/2012 16:30 +Wasilla,ORANGE,SPHERE,AK,9/8/2012 19:00 +Pickerington,,CIRCLE,OH,9/8/2012 19:48 +San Ramon,RED,LIGHT,CA,9/8/2012 20:00 +Longmont,GREEN,CHEVRON,CO,9/8/2012 20:39 +Santa Clarita,,LIGHT,CA,9/8/2012 20:45 +Troy,ORANGE,LIGHT,NY,9/8/2012 20:52 +Benton,ORANGE,CIRCLE,IL,9/8/2012 21:00 +Seattle,,CIRCLE,WA,9/8/2012 21:00 +Wichita,,CYLINDER,KS,9/8/2012 21:00 +Lockport,,LIGHT,NY,9/8/2012 21:10 +Fort Wayne,,FIREBALL,IN,9/8/2012 21:15 +Lebanon,RED YELLOW GREEN BLUE,FLASH,TN,9/8/2012 21:30 +Wexford,,FIREBALL,PA,9/8/2012 21:55 +Des Moines,,LIGHT,IA,9/8/2012 22:00 +Troy,,FIREBALL,MI,9/8/2012 22:00 +Jupiter,ORANGE,FIREBALL,FL,9/8/2012 22:45 +Albuquerque,,,NM,9/8/2012 23:00 +Austin,,TRIANGLE,TX,9/8/2012 23:05 +Pittsburgh,ORANGE,OTHER,PA,9/8/2012 23:15 +Charlottesville,,LIGHT,VA,9/8/2012 23:18 +Point Arena,RED,,CA,9/8/2012 23:30 +Waterville,,,ME,9/9/2012 0:00 +La Crosse,,DIAMOND,WI,9/9/2012 4:30 +Murfreesboro,RED GREEN,TRIANGLE,TN,9/9/2012 4:43 +Malden,YELLOW GREEN BLUE,TRIANGLE,MA,9/9/2012 5:35 +Riverdale,,LIGHT,MD,9/9/2012 8:04 +Rancho Viejo,RED YELLOW,FORMATION,TX,9/9/2012 9:14 +Alvadore,,CIRCLE,OR,9/9/2012 10:20 +Montclair,,OTHER,NJ,9/9/2012 11:30 +Hayward,,LIGHT,CA,9/9/2012 13:00 +Norfolk,,DISK,VA,9/9/2012 14:00 +Waukegan,,CIRCLE,IL,9/9/2012 16:36 +Belton,,CIRCLE,MO,9/9/2012 17:00 +Jackson,,FIREBALL,TN,9/9/2012 19:05 +Arcata,RED GREEN,FORMATION,CA,9/9/2012 20:00 +Kannapolis,,FIREBALL,NC,9/9/2012 20:00 +Murfreesboro,RED,SPHERE,TN,9/9/2012 20:00 +Wilson,,LIGHT,NC,9/9/2012 20:00 +Elmont,,CIRCLE,NY,9/9/2012 20:10 +Mt. Juliet,,LIGHT,TN,9/9/2012 20:30 +Ventura,BLUE,CHEVRON,CA,9/9/2012 20:30 +South Jordan,,CIRCLE,UT,9/9/2012 20:52 +Elkhart,,OVAL,IN,9/9/2012 21:00 +New York City,,LIGHT,NY,9/9/2012 21:00 +Pawleys Island,ORANGE,OVAL,SC,9/9/2012 21:00 +Ventura,BLUE,CIRCLE,CA,9/9/2012 21:00 +Charleston,RED BLUE,FLASH,SC,9/9/2012 21:55 +Gainesville,,LIGHT,GA,9/9/2012 23:00 +Shiprock,,OTHER,NM,9/10/2012 0:00 +Fort Wayne,,OVAL,IN,9/10/2012 1:22 +Pittsburgh,RED,,PA,9/10/2012 2:00 +Mechancisburg,,SPHERE,PA,9/10/2012 2:40 +Tolland,,LIGHT,CT,9/10/2012 3:00 +Columbia,GREEN,DISK,SC,9/10/2012 3:20 +North Myrtle Beach,ORANGE,TRIANGLE,SC,9/10/2012 10:30 +Oshkosh,,LIGHT,WI,9/10/2012 10:40 +LaOtto,,,IN,9/10/2012 15:15 +Gretna,,SPHERE,LA,9/10/2012 16:00 +Stony Brook,,FLASH,NY,9/10/2012 18:00 +Alexandria,,RECTANGLE,VA,9/10/2012 19:00 +Baltimore County,ORANGE,SPHERE,MD,9/10/2012 19:30 +Niagara Falls,ORANGE YELLOW,FIREBALL,NY,9/10/2012 20:20 +Herkimer,,OVAL,NY,9/10/2012 20:30 +Mahwah,,FIREBALL,NJ,9/10/2012 20:30 +Mahwah,,FIREBALL,NJ,9/10/2012 20:30 +Neenah,ORANGE,TRIANGLE,WI,9/10/2012 20:30 +Layton,,CONE,UT,9/10/2012 21:00 +Omaha,,,NE,9/10/2012 21:00 +Weslaco,,LIGHT,TX,9/10/2012 21:26 +Eugene,,,OR,9/10/2012 22:00 +Hood River,,LIGHT,OR,9/10/2012 22:00 +North Myrtle Beach,,,SC,9/10/2012 22:00 +Madison,,TRIANGLE,IL,9/10/2012 22:10 +Lebanon,,SPHERE,PA,9/10/2012 22:20 +Geneva,ORANGE,LIGHT,OH,9/10/2012 22:30 +Holden Beach,ORANGE,TRIANGLE,NC,9/10/2012 22:30 +North Myrtle Beach,ORANGE,VARIOUS,SC,9/10/2012 22:30 +Myrtle Beach,ORANGE,FIREBALL,SC,9/10/2012 23:00 +Venice,,LIGHT,CA,9/10/2012 23:00 +Killeen,,CIRCLE,TX,9/10/2012 23:45 +Anaheim,,LIGHT,CA,9/11/2012 0:00 +Ojai,,TEARDROP,CA,9/11/2012 0:00 +Black River,GREEN,CIRCLE,NY,9/11/2012 0:30 +Ruston,,LIGHT,LA,9/11/2012 0:30 +Petaluma,ORANGE,LIGHT,CA,9/11/2012 1:00 +Corpus Christi,,SPHERE,TX,9/11/2012 2:00 +Litchfield,,FLASH,CT,9/11/2012 3:00 +Blanchard,,SPHERE,WA,9/11/2012 4:00 +Miami Beach,,,FL,9/11/2012 5:50 +Upton,,SPHERE,MA,9/11/2012 8:50 +Los Banos,,CYLINDER,CA,9/11/2012 11:00 +West Dennis,,OTHER,MA,9/11/2012 13:30 +Surprise,,LIGHT,AZ,9/11/2012 16:30 +Newburgh,,TRIANGLE,IN,9/11/2012 20:00 +Garden CIty Beach,,,SC,9/11/2012 20:04 +Murrells Inlet,,LIGHT,SC,9/11/2012 20:15 +Sarasota,ORANGE,OVAL,FL,9/11/2012 20:55 +Drayton Plains,,CIRCLE,MI,9/11/2012 21:00 +Lakeville,,TRIANGLE,MA,9/11/2012 21:00 +Sandston,RED,TRIANGLE,VA,9/11/2012 21:27 +Newport,ORANGE,FIREBALL,MI,9/11/2012 21:32 +New Kent,,CIRCLE,VA,9/11/2012 21:55 +Coulee Dam,,FIREBALL,WA,9/11/2012 22:00 +Snoqualmie,,FORMATION,WA,9/11/2012 22:50 +Dearborn,ORANGE,FIREBALL,MI,9/11/2012 23:00 +Elizabeth City,RED,LIGHT,NC,9/11/2012 23:45 +Nevada desert,,DIAMOND,NV,9/12/2012 0:00 +Everett,,TRIANGLE,WA,9/12/2012 0:35 +Blumont,,TRIANGLE,VA,9/12/2012 1:00 +Hagerstown,,TRIANGLE,MD,9/12/2012 4:00 +Piper City,,VARIOUS,IL,9/12/2012 6:30 +Northfield,GREEN,LIGHT,MN,9/12/2012 11:15 +Los Banos,,CIRCLE,CA,9/12/2012 14:00 +Gurnee,,,IL,9/12/2012 15:00 +Aptos,,VARIOUS,CA,9/12/2012 16:30 +St. Louis Park,,CIRCLE,MN,9/12/2012 19:00 +Yazoo City,,LIGHT,MS,9/12/2012 19:00 +Loris,,OTHER,SC,9/12/2012 19:30 +McNary,,OVAL,OR,9/12/2012 19:30 +Beaverton,,DISK,OR,9/12/2012 20:00 +Ocean Isle Beach,,LIGHT,NC,9/12/2012 20:03 +Ft. Worth,,FIREBALL,TX,9/12/2012 20:22 +Myrtle Beach,RED ORANGE,SPHERE,SC,9/12/2012 20:30 +Schenectady,,FIREBALL,NY,9/12/2012 20:30 +Oak Island,,FORMATION,NC,9/12/2012 20:45 +Garrison,,OTHER,MN,9/12/2012 20:50 +Monrovia,,OVAL,CA,9/12/2012 21:00 +Taylors,,OTHER,SC,9/12/2012 21:15 +Rochester Hills,ORANGE,DISK,MI,9/12/2012 21:30 +Murrells Inlet,,CIRCLE,SC,9/12/2012 22:00 +Riggs,RED GREEN,LIGHT,MO,9/12/2012 22:00 +Somerset,,LIGHT,NJ,9/12/2012 22:20 +Cutyhunk Island,,,MA,9/12/2012 22:45 +Compton,,FIREBALL,CA,9/12/2012 23:00 +Milford,ORANGE,FIREBALL,CT,9/12/2012 23:13 +Honolulu,,LIGHT,HI,9/12/2012 23:38 +Baltimore,,CIRCLE,MD,9/12/2012 23:45 +Buffalo,BLUE,LIGHT,NY,9/13/2012 0:50 +Muskogee,,LIGHT,OK,9/13/2012 4:20 +Twenty Nine Palms,,LIGHT,CA,9/13/2012 5:20 +Flagstaff,,LIGHT,AZ,9/13/2012 5:30 +Murrells Inlet,ORANGE,VARIOUS,SC,9/13/2012 8:00 +Logan,,LIGHT,UT,9/13/2012 9:00 +Springfield,,,OR,9/13/2012 13:30 +Garden City,,,SC,9/13/2012 20:00 +Pawleys Island,,FIREBALL,SC,9/13/2012 20:00 +Pe Ell,,DIAMOND,WA,9/13/2012 20:30 +Camano Island,,OVAL,WA,9/13/2012 20:50 +Hinsdale,RED GREEN,DISK,MA,9/13/2012 21:30 +Scottsville,,LIGHT,KY,9/13/2012 21:30 +North Myrtle Beach,ORANGE,CIRCLE,SC,9/13/2012 22:00 +Linden,,CIRCLE,WI,9/13/2012 23:33 +San Pedro,,CIRCLE,CA,9/14/2012 0:00 +Las Vegas,RED,FORMATION,NV,9/14/2012 7:45 +Laport,ORANGE,FLASH,IN,9/14/2012 8:00 +Hewitt,BLUE,,TX,9/14/2012 9:25 +New Orleans,,TRIANGLE,LA,9/14/2012 11:00 +South Myrtle Beach,,CIRCLE,SC,9/14/2012 15:30 +Laguna Niguel,,SPHERE,CA,9/14/2012 17:00 +Seatac,ORANGE,SPHERE,WA,9/14/2012 19:00 +Enfield,RED BLUE,,CT,9/14/2012 20:00 +Worcester,,FIREBALL,MA,9/14/2012 20:00 +Rancho Cucamonga,,CHEVRON,CA,9/14/2012 20:05 +Lakewood,,FIREBALL,CA,9/14/2012 20:15 +Wheeling,,LIGHT,WV,9/14/2012 20:15 +Chicago,,DIAMOND,IL,9/14/2012 20:40 +Austintown,,OVAL,OH,9/14/2012 20:45 +Howland,RED,SPHERE,OH,9/14/2012 20:50 +Corolla,,FIREBALL,NC,9/14/2012 21:50 +Westmont,,LIGHT,IL,9/14/2012 21:56 +Ponca,,CYLINDER,NE,9/14/2012 22:00 +Spring,,LIGHT,TX,9/14/2012 22:00 +Chicago,RED,OVAL,IL,9/14/2012 22:17 +Cleves,RED GREEN,TRIANGLE,OH,9/15/2012 0:00 +Lincolnville,,RECTANGLE,ME,9/15/2012 1:00 +Dallas,ORANGE,TRIANGLE,GA,9/15/2012 2:00 +Medford,,OTHER,OR,9/15/2012 2:15 +Ft. Myers,,VARIOUS,FL,9/15/2012 4:00 +Shartlesville,,LIGHT,PA,9/15/2012 4:20 +Huntsville,,LIGHT,AL,9/15/2012 5:20 +Colorado Springs,,LIGHT,CO,9/15/2012 5:30 +Canton,RED,,MI,9/15/2012 8:15 +Scarborough,ORANGE,OVAL,ME,9/15/2012 8:24 +Phoenix,RED GREEN,DISK,AZ,9/15/2012 15:30 +Glendale,,DISK,CA,9/15/2012 18:40 +Theresa,,CIGAR,NY,9/15/2012 19:00 +Waukesha,,FIREBALL,WI,9/15/2012 19:45 +Monroe Township,,LIGHT,NJ,9/15/2012 20:00 +Canton,,LIGHT,MI,9/15/2012 20:15 +Peoria,ORANGE,TRIANGLE,IL,9/15/2012 20:15 +Rome,RED,LIGHT,WI,9/15/2012 20:15 +Nicholson,,,GA,9/15/2012 20:25 +Coral Springs,,TRIANGLE,FL,9/15/2012 20:30 +Oakland Park,,FIREBALL,FL,9/15/2012 20:30 +Davie,,VARIOUS,FL,9/15/2012 20:35 +Billings,RED,,MT,9/15/2012 20:40 +Chester,ORANGE,CIRCLE,CT,9/15/2012 21:00 +Elkhorn,ORANGE,LIGHT,WI,9/15/2012 21:00 +Meridian,,EGG,ID,9/15/2012 21:00 +Peoria,RED,CIRCLE,IL,9/15/2012 21:00 +Windham,,FIREBALL,CT,9/15/2012 21:00 +Naperville,,LIGHT,IL,9/15/2012 21:05 +Kalamazoo,,FIREBALL,MI,9/15/2012 21:14 +Jackson,,OVAL,MT,9/15/2012 21:15 +Venice,ORANGE,,FL,9/15/2012 21:30 +Vineyard Haven,ORANGE,SPHERE,MA,9/15/2012 21:30 +Taylors,,SPHERE,SC,9/15/2012 21:45 +Darlington,,CIRCLE,SC,9/15/2012 22:00 +Portland,,CIRCLE,OR,9/15/2012 22:00 +Seneca,,FIREBALL,KS,9/15/2012 22:00 +St. Petersburg,,FIREBALL,FL,9/15/2012 22:00 +Point Pleasant Borough,ORANGE,FIREBALL,NJ,9/15/2012 22:15 +Chicago,,LIGHT,IL,9/15/2012 23:00 +Redwood City,,LIGHT,CA,9/15/2012 23:30 +Wildomar,,CIRCLE,CA,9/16/2012 0:11 +Fountain Valley,,LIGHT,CA,9/16/2012 1:00 +Sebago,,,ME,9/16/2012 3:30 +Liberty,RED,TRIANGLE,OH,9/16/2012 5:00 +Reno,BLUE,LIGHT,NV,9/16/2012 5:10 +Carlsbad,,OTHER,NM,9/16/2012 10:00 +San Jose,,DISK,CA,9/16/2012 15:55 +Milford,ORANGE,OVAL,CT,9/16/2012 20:08 +Coral Springs,ORANGE,OTHER,FL,9/16/2012 20:20 +Lincoln City,,SPHERE,OR,9/16/2012 21:00 +Lincoln City,RED,LIGHT,OR,9/16/2012 21:10 +Michigan,,LIGHT,MI,9/16/2012 22:00 +Oakland,ORANGE,FIREBALL,CA,9/16/2012 22:00 +Charleston,,,WV,9/16/2012 22:20 +Marshfield,YELLOW GREEN BLUE,LIGHT,MA,9/16/2012 22:20 +Fountain Valley,,,CA,9/17/2012 1:10 +Davie,,CIRCLE,FL,9/17/2012 3:00 +Germantown,,LIGHT,MD,9/17/2012 6:15 +Woodland,,OVAL,WA,9/17/2012 8:30 +Woodland,,LIGHT,WA,9/17/2012 8:45 +St. Paul,RED,LIGHT,MN,9/17/2012 14:30 +Jacksonville,,OTHER,IL,9/17/2012 18:00 +Dryden,,LIGHT,NY,9/17/2012 19:00 +Bangor,,LIGHT,ME,9/17/2012 20:30 +Tacoma,,LIGHT,WA,9/17/2012 20:45 +Atlantic Highlands,,DISK,NJ,9/17/2012 21:00 +Carmine,,FIREBALL,TX,9/17/2012 21:00 +Sumter,,LIGHT,SC,9/17/2012 22:30 +Buckeye,ORANGE,CIRCLE,AZ,9/18/2012 0:00 +Phoenix,,,AZ,9/18/2012 0:00 +Hector,,,AR,9/18/2012 1:38 +Deer Park,,LIGHT,WA,9/18/2012 3:29 +Danville,,DISK,CA,9/18/2012 3:30 +Morral,,LIGHT,OH,9/18/2012 6:35 +Cedar Rapids,,OVAL,IA,9/18/2012 7:30 +Potersville,RED,,PA,9/18/2012 15:00 +Tacoma,,LIGHT,WA,9/18/2012 20:50 +Augusta,,CIRCLE,GA,9/18/2012 21:00 +Greenwood,,FIREBALL,IN,9/18/2012 21:00 +Knoxville,,LIGHT,TN,9/18/2012 21:00 +Hendersonville,,DISK,TN,9/18/2012 21:10 +Bradley,,EGG,IL,9/18/2012 21:30 +Scottsville,,FORMATION,KY,9/18/2012 21:30 +North Platte,,TRIANGLE,NE,9/18/2012 22:00 +Whitehall,,,NY,9/19/2012 0:00 +Orland,,TRIANGLE,CA,9/19/2012 0:28 +Williamstown,,LIGHT,NJ,9/19/2012 1:00 +Bloomington,RED YELLOW BLUE,DISK,IL,9/19/2012 1:45 +New York City,,DISK,NY,9/19/2012 14:00 +Cedaredge,,RECTANGLE,CO,9/19/2012 15:50 +Morgantown,,OTHER,WV,9/19/2012 19:00 +Lisbon,,LIGHT,NY,9/19/2012 20:15 +Sierra Vista,,DISK,AZ,9/19/2012 20:33 +Indianapolis,BLUE,TRIANGLE,IN,9/19/2012 21:00 +Pittsburgh,,CIRCLE,PA,9/19/2012 22:00 +Pueblo,,FIREBALL,CO,9/19/2012 22:00 +Pueblo West,,SPHERE,CO,9/19/2012 23:25 +Danvers,,OVAL,MA,9/20/2012 0:30 +Morgantown,GREEN,FIREBALL,WV,9/20/2012 0:57 +Ramsey,RED YELLOW,TRIANGLE,MN,9/20/2012 1:00 +Kalkaska,,LIGHT,MI,9/20/2012 1:30 +Warwick,,LIGHT,RI,9/20/2012 1:30 +Garland,RED GREEN BLUE,LIGHT,TX,9/20/2012 4:00 +Seattle,,LIGHT,WA,9/20/2012 4:30 +Maineville,,CYLINDER,OH,9/20/2012 10:00 +Canton,,VARIOUS,IL,9/20/2012 19:15 +Houston,,CIRCLE,TX,9/20/2012 20:00 +Birmingham,,LIGHT,AL,9/20/2012 20:07 +Belington,,CYLINDER,WV,9/20/2012 20:35 +Brownstown,,FIREBALL,MI,9/20/2012 20:58 +Colcord,,TRIANGLE,OK,9/20/2012 21:45 +Goldsboro,,OTHER,NC,9/20/2012 21:45 +North Wildwood,ORANGE,LIGHT,NJ,9/20/2012 21:45 +North Myrtle Beach,,,SC,9/20/2012 22:00 +Brockton,GREEN,LIGHT,MA,9/20/2012 22:30 +Warminster,ORANGE,CIRCLE,PA,9/20/2012 22:30 +Owings Mills,,,MD,9/20/2012 23:00 +Lenexa,ORANGE,FIREBALL,KS,9/20/2012 23:51 +Richmond,,CIRCLE,VA,9/21/2012 0:00 +Richmond,,CIRCLE,IL,9/21/2012 2:12 +Waterbury,,,VT,9/21/2012 3:00 +Sturbridge,,,MA,9/21/2012 8:00 +Salvo,,DISK,NC,9/21/2012 13:00 +Epsom,,OTHER,NH,9/21/2012 17:00 +Salvo,ORANGE,CIRCLE,NC,9/21/2012 19:05 +Oregon,,CIRCLE,WI,9/21/2012 20:00 +Pacific Beach,ORANGE,FIREBALL,CA,9/21/2012 20:15 +Minneapolis,,OTHER,MN,9/21/2012 20:25 +Kingston,,LIGHT,NY,9/21/2012 20:30 +Mallory,GREEN,OVAL,NY,9/21/2012 20:30 +Moccasin,ORANGE,OTHER,MT,9/21/2012 20:30 +Plainfeild,GREEN BLUE,EGG,NH,9/21/2012 20:30 +Sharpsville,RED,CIRCLE,PA,9/21/2012 20:30 +West Palm Beach,RED,TRIANGLE,FL,9/21/2012 20:30 +Ithaca,,,NY,9/21/2012 20:47 +Valentine,ORANGE,FIREBALL,MT,9/21/2012 20:47 +Ithaca,,RECTANGLE,NY,9/21/2012 20:48 +Downingtown,,OVAL,PA,9/21/2012 21:00 +Oakville,ORANGE,FIREBALL,CT,9/21/2012 21:00 +Salvo,,FORMATION,NC,9/21/2012 21:00 +Aquebogue,,LIGHT,NY,9/21/2012 21:20 +Lockport,,FIREBALL,NY,9/21/2012 21:30 +San Diego,ORANGE,CIRCLE,CA,9/21/2012 22:00 +Sonoma,RED,FIREBALL,CA,9/21/2012 22:45 +Hastings,BLUE,,MN,9/21/2012 22:50 +Ridgecrest,,OVAL,CA,9/21/2012 23:00 +Gillette,,OTHER,WY,9/22/2012 2:30 +Fort Mill,,RECTANGLE,SC,9/22/2012 5:30 +Canoga Park,,FORMATION,CA,9/22/2012 5:58 +Omaha,,CYLINDER,NE,9/22/2012 6:30 +Espanola,,,NM,9/22/2012 7:00 +Rio Rancho,RED,CONE,NM,9/22/2012 7:00 +Hobbs,,OVAL,NM,9/22/2012 7:38 +San Diego,,SPHERE,CA,9/22/2012 16:45 +Fredericksburg,RED,CIGAR,PA,9/22/2012 17:00 +Santa Fe,,DIAMOND,NM,9/22/2012 17:00 +Oakland,,VARIOUS,CA,9/22/2012 17:15 +Albuquerque,,CIRCLE,NM,9/22/2012 17:30 +Randburg,,DISK,AL,9/22/2012 17:45 +Bernalillo,,CONE,NM,9/22/2012 18:00 +Hudson,,FIREBALL,WI,9/22/2012 19:00 +Pascagoula,,,MS,9/22/2012 19:00 +Mesa,,CIRCLE,AZ,9/22/2012 19:10 +Santa Fe,,DIAMOND,NM,9/22/2012 19:11 +Petaluma,RED,LIGHT,CA,9/22/2012 19:46 +Danville,,FIREBALL,IL,9/22/2012 20:00 +Coupeville,,VARIOUS,WA,9/22/2012 20:15 +Sedona,,FIREBALL,AZ,9/22/2012 20:30 +Brighton,,LIGHT,MI,9/22/2012 20:45 +Mesa,,FIREBALL,AZ,9/22/2012 21:15 +Lathrop,ORANGE,FIREBALL,CA,9/22/2012 21:35 +Dublin,,RECTANGLE,OH,9/22/2012 21:50 +Hampstead,ORANGE YELLOW,FIREBALL,MD,9/22/2012 21:55 +Newark,ORANGE,SPHERE,OH,9/22/2012 21:56 +Youngstown,,LIGHT,OH,9/22/2012 22:10 +Hoover,BLUE,FLASH,AL,9/22/2012 22:30 +Cape Meares,ORANGE,LIGHT,OR,9/22/2012 22:45 +St. Louis,,VARIOUS,MO,9/22/2012 23:00 +Austinburg,RED,,OH,9/22/2012 23:18 +Point Pleasant,,FLASH,WV,9/22/2012 23:30 +Carolina Beach,,CIRCLE,NC,9/22/2012 23:45 +Indialantic,,CIRCLE,FL,9/23/2012 0:00 +Ocean City,ORANGE,SPHERE,MD,9/23/2012 0:00 +Broadview,,LIGHT,IL,9/23/2012 0:10 +Madison,,LIGHT,CT,9/23/2012 2:22 +Denton,,DIAMOND,TX,9/23/2012 2:30 +Colorado Springs,RED,TRIANGLE,CO,9/23/2012 3:22 +Savoonga,,LIGHT,AK,9/23/2012 6:00 +Flint,,FIREBALL,MI,9/23/2012 14:00 +Laurence Harbor,,VARIOUS,NJ,9/23/2012 14:00 +Langhorne,,FIREBALL,PA,9/23/2012 18:55 +Langhorne,RED,FIREBALL,PA,9/23/2012 18:55 +Brookfield,ORANGE,DIAMOND,IL,9/23/2012 19:00 +Fond du Lac,ORANGE,FIREBALL,WI,9/23/2012 19:00 +Tacoma,,OTHER,WA,9/23/2012 19:00 +Trion,,SPHERE,GA,9/23/2012 19:10 +Atlanta,,OTHER,GA,9/23/2012 19:30 +Lagrange Park,ORANGE,CIRCLE,IL,9/23/2012 19:32 +Erie,,LIGHT,PA,9/23/2012 20:30 +Tampa,RED,FIREBALL,FL,9/23/2012 20:30 +Miami,,FORMATION,FL,9/23/2012 21:00 +Owasso,,CROSS,OK,9/23/2012 21:00 +Philadelphia,RED,CIRCLE,PA,9/23/2012 21:00 +Tunbridge,,CROSS,VT,9/23/2012 21:00 +Hartland,ORANGE,VARIOUS,WI,9/23/2012 21:20 +San Jose,RED,FIREBALL,CA,9/23/2012 21:30 +Riverbank,,TRIANGLE,CA,9/23/2012 22:00 +Westfield,ORANGE,TRIANGLE,IN,9/23/2012 22:30 +Columbus,RED,SPHERE,OH,9/23/2012 22:50 +Ashland City,BLUE,LIGHT,TN,9/23/2012 23:45 +Jacksonville,,LIGHT,NC,9/24/2012 0:00 +Garner,,LIGHT,NC,9/24/2012 1:05 +Lisbon,,OTHER,CT,9/24/2012 4:00 +Wells,,DISK,ME,9/24/2012 11:30 +Riva,,FIREBALL,MD,9/24/2012 18:30 +Seattle,RED GREEN,RECTANGLE,WA,9/24/2012 19:00 +Plainfield,RED,CIRCLE,CT,9/24/2012 19:30 +Cary,,LIGHT,NC,9/24/2012 22:30 +Windsor,GREEN,CIRCLE,MA,9/24/2012 23:25 +Naples,,RECTANGLE,FL,9/24/2012 23:30 +Huntington Park,,LIGHT,CA,9/25/2012 1:15 +Braham,,DISK,MN,9/25/2012 3:30 +Lowell,RED GREEN BLUE,DISK,MA,9/25/2012 3:45 +Chicago,ORANGE,SPHERE,IL,9/25/2012 5:40 +East Hampton,,SPHERE,CT,9/25/2012 5:40 +Friant,,LIGHT,CA,9/25/2012 6:00 +Fonda,,,IA,9/25/2012 6:24 +North Brunswick,,OTHER,NJ,9/25/2012 17:40 +Beaverton,,CIRCLE,OR,9/25/2012 19:32 +Starksboro,,OTHER,VT,9/25/2012 20:00 +Stevensville,,TRIANGLE,MD,9/25/2012 20:00 +Escondido,,SPHERE,CA,9/25/2012 21:00 +Franklin,ORANGE,FIREBALL,VA,9/25/2012 21:00 +Avon,,SPHERE,NC,9/25/2012 21:30 +Norwich,GREEN,RECTANGLE,CT,9/25/2012 21:35 +Salvo,,FORMATION,NC,9/25/2012 22:00 +Augusta,,,ME,9/26/2012 0:41 +Augusta,BLUE,,ME,9/26/2012 0:41 +Hayward,ORANGE,,WI,9/26/2012 2:30 +Buckhannon,,FORMATION,WV,9/26/2012 19:00 +Lakewood,ORANGE,SPHERE,WA,9/26/2012 19:25 +Anaheim,,LIGHT,CA,9/26/2012 19:40 +Cape Coral,BLUE,RECTANGLE,FL,9/26/2012 20:00 +Miami,,TRIANGLE,FL,9/26/2012 20:00 +Mount Sterling,,FIREBALL,KY,9/26/2012 20:00 +Vinton,RED,CIRCLE,IA,9/26/2012 20:00 +Depew,RED,LIGHT,NY,9/26/2012 20:20 +Muncie,,CIRCLE,IN,9/26/2012 20:40 +Omaha,,DIAMOND,NE,9/26/2012 20:45 +Middlebury,RED ORANGE,LIGHT,IN,9/26/2012 21:00 +Sultan,,CIRCLE,WA,9/26/2012 21:00 +Rice Lake,,,WI,9/26/2012 21:30 +Salvo,RED GREEN,CIRCLE,NC,9/26/2012 22:00 +Waves,,CIRCLE,NC,9/27/2012 0:00 +Raleigh,,CIRCLE,NC,9/27/2012 9:00 +Badger,,CYLINDER,IA,9/27/2012 15:30 +Holly Springs,,CIGAR,GA,9/27/2012 15:32 +Woodbridge,,,NJ,9/27/2012 17:45 +Beachwood,GREEN,,OH,9/27/2012 20:00 +San Jose,,FIREBALL,CA,9/27/2012 20:00 +Athens,ORANGE,FIREBALL,OH,9/27/2012 20:35 +Scotrun,,EGG,PA,9/27/2012 20:40 +Cobb Island,,FLASH,MD,9/27/2012 21:15 +Bellingham,,SPHERE,WA,9/27/2012 21:24 +Keokuk,,OTHER,IA,9/27/2012 22:30 +Pace,,OTHER,FL,9/27/2012 23:00 +Key West,ORANGE,FIREBALL,FL,9/27/2012 23:05 +Holland,,TRIANGLE,MI,9/27/2012 23:45 +Gladewater,,CIRCLE,TX,9/28/2012 1:15 +St. Cloud,ORANGE,FIREBALL,FL,9/28/2012 9:30 +Kansas City,,OTHER,KS,9/28/2012 19:05 +Saint Paul,,RECTANGLE,MN,9/28/2012 19:14 +Mansfield,,RECTANGLE,TX,9/28/2012 19:30 +Cincinnati,,SPHERE,OH,9/28/2012 20:00 +Polk City,,,FL,9/28/2012 20:00 +Irvine,ORANGE,CIRCLE,CA,9/28/2012 20:15 +Fountain Valley,GREEN,OTHER,CA,9/28/2012 20:30 +Los Angeles,,,CA,9/28/2012 20:55 +Thousand Oaks,,DISK,CA,9/28/2012 21:00 +Chicago,ORANGE,CIRCLE,IL,9/28/2012 21:15 +Cincinnati,,LIGHT,OH,9/28/2012 21:20 +Flagler Beach,ORANGE,TRIANGLE,FL,9/28/2012 21:30 +Ft. Lauderdale,,CHEVRON,FL,9/28/2012 21:30 +Oswego,ORANGE,FIREBALL,IL,9/28/2012 21:30 +Grand Rapids,ORANGE,FIREBALL,MI,9/28/2012 22:00 +Modesto,ORANGE,FIREBALL,CA,9/28/2012 22:34 +Wauwatosa,,CIRCLE,WI,9/28/2012 23:00 +Newark,ORANGE,LIGHT,OH,9/28/2012 23:14 +Dayton,RED,CIRCLE,OH,9/29/2012 1:00 +Provo,RED,RECTANGLE,UT,9/29/2012 1:00 +Spring Hill,,OTHER,FL,9/29/2012 1:11 +Sacramento,BLUE,FIREBALL,CA,9/29/2012 2:45 +Homestead,,,FL,9/29/2012 3:36 +Sarasota,,OTHER,FL,9/29/2012 4:00 +Midway,,LIGHT,GA,9/29/2012 5:00 +Lively,,OTHER,VA,9/29/2012 6:50 +Westland,ORANGE,TRIANGLE,MI,9/29/2012 9:10 +Temperance,ORANGE,FORMATION,MI,9/29/2012 10:00 +Petaluma,,OTHER,CA,9/29/2012 11:00 +Redmond,,SPHERE,OR,9/29/2012 12:00 +Athens,,FIREBALL,AL,9/29/2012 17:00 +Brookfield,,LIGHT,IL,9/29/2012 17:00 +Fulton,,FORMATION,MO,9/29/2012 18:45 +West Bloomfield,,SPHERE,MI,9/29/2012 19:00 +Seattle,ORANGE,LIGHT,WA,9/29/2012 19:58 +Woodbridge,,FIREBALL,CT,9/29/2012 19:58 +Dedham,ORANGE,CIRCLE,MA,9/29/2012 20:00 +North Tonawanda,,FIREBALL,NY,9/29/2012 20:00 +San Antonio,,CIRCLE,TX,9/29/2012 20:19 +Ionia,ORANGE,OTHER,MI,9/29/2012 20:27 +Buffalo,RED ORANGE,,NY,9/29/2012 20:30 +Vancouver,BLUE,TRIANGLE,WA,9/29/2012 20:30 +Danbury,,FORMATION,CT,9/29/2012 21:00 +Medford,BLUE,OTHER,MA,9/29/2012 21:00 +Erie,,FIREBALL,PA,9/29/2012 21:15 +Middletown,,CIRCLE,OH,9/29/2012 21:15 +Anchorage,,LIGHT,AK,9/29/2012 21:20 +Creswell,,SPHERE,OR,9/29/2012 21:45 +Grand Rapids,,OTHER,MI,9/29/2012 22:00 +Wayne,ORANGE,LIGHT,NJ,9/29/2012 22:00 +Temperance,,OVAL,MI,9/29/2012 22:10 +Ufica,,SPHERE,OH,9/29/2012 22:13 +Catawba,,FIREBALL,OH,9/29/2012 22:20 +Cicero,,DISK,IL,9/29/2012 22:59 +Delray Beach,,CIRCLE,FL,9/30/2012 0:00 +Indianapolis,,FIREBALL,IN,9/30/2012 0:00 +Chaska,ORANGE,FIREBALL,MN,9/30/2012 0:16 +Bellevue,,LIGHT,WA,9/30/2012 1:00 +Dover,,CIGAR,NH,9/30/2012 4:00 +Hays,,CIRCLE,KS,9/30/2012 4:55 +Hendersonville,ORANGE,CIRCLE,TN,9/30/2012 7:15 +Dexter,,TRIANGLE,MO,9/30/2012 8:20 +Brick,,CYLINDER,NJ,9/30/2012 12:45 +Los Angeles,,OVAL,CA,9/30/2012 15:50 +Honokowai,,CONE,HI,9/30/2012 19:00 +Spokane,,OTHER,WA,9/30/2012 20:00 +Portland,,FIREBALL,OR,9/30/2012 20:15 +Baldwin Park,RED,TRIANGLE,CA,9/30/2012 21:40 +McHenry,,FIREBALL,IL,9/30/2012 21:45 +Kingston,,FLASH,NY,9/30/2012 22:00 +Novi,,TRIANGLE,MI,10/1/2012 0:00 +Richmond,,,TX,10/1/2012 1:00 +Colorado Springs,,LIGHT,CO,10/1/2012 1:50 +Surprise,,LIGHT,AZ,10/1/2012 2:00 +Sarasota,,FORMATION,FL,10/1/2012 6:30 +Hawthorne,,CIRCLE,CA,10/1/2012 8:30 +Vinton,ORANGE,OTHER,VA,10/1/2012 9:00 +Ojai,,OVAL,CA,10/1/2012 13:30 +Port Hueneme,,LIGHT,CA,10/1/2012 17:30 +Leland,,OVAL,NC,10/1/2012 18:02 +Hinsdale,,FIREBALL,IL,10/1/2012 19:30 +Eugene,RED GREEN,LIGHT,OR,10/1/2012 20:00 +Fontana,,FIREBALL,CA,10/1/2012 20:00 +Racine,,OTHER,WI,10/1/2012 20:00 +Sunfield,,,MI,10/1/2012 20:00 +Capitola,RED,LIGHT,CA,10/1/2012 20:10 +Sauk Centre,,TRIANGLE,MN,10/1/2012 22:30 +Huntington,,FIREBALL,IN,10/1/2012 23:00 +Davis,,TRIANGLE,CA,10/2/2012 1:43 +Yelm,,LIGHT,WA,10/2/2012 5:25 +Canton,,OVAL,IL,10/2/2012 6:15 +Sanford,,TRIANGLE,NC,10/2/2012 10:15 +Cedar Rapids,,CIRCLE,IA,10/2/2012 13:00 +Corona,,OVAL,CA,10/2/2012 13:00 +Taylorsville,,CIRCLE,UT,10/2/2012 13:20 +McGregor,,FORMATION,MN,10/2/2012 15:00 +Brandon,,OTHER,VT,10/2/2012 17:00 +Huntington Beach,,OVAL,CA,10/2/2012 19:30 +Yucca Valley,,SPHERE,CA,10/2/2012 19:30 +Maple Valley,,CHEVRON,WA,10/2/2012 19:50 +Chula Vista,,CIRCLE,CA,10/2/2012 20:00 +Montana City,RED,LIGHT,MT,10/2/2012 20:29 +Conover,RED,CIRCLE,NC,10/2/2012 21:00 +Clinton,ORANGE,CIRCLE,IA,10/2/2012 21:15 +Anchorage,ORANGE,FORMATION,AK,10/2/2012 21:30 +Knoxville,,LIGHT,TN,10/2/2012 21:55 +Eden,BLUE,LIGHT,ID,10/2/2012 22:00 +Shepherdsville,ORANGE,FIREBALL,KY,10/2/2012 22:51 +Corvallis,RED,FORMATION,OR,10/3/2012 3:00 +Lake Elsinore,,OTHER,CA,10/3/2012 5:00 +Gary,,LIGHT,TX,10/3/2012 6:45 +Wagner,ORANGE,FIREBALL,SD,10/3/2012 8:24 +San Francisco,ORANGE,CIRCLE,CA,10/3/2012 8:38 +Missoula,GREEN,FLASH,MT,10/3/2012 11:30 +Wautoma,,SPHERE,WI,10/3/2012 14:45 +Vancouver,,OTHER,WA,10/3/2012 17:15 +Bridgewater,ORANGE,SPHERE,PA,10/3/2012 19:45 +Rochester,,FIREBALL,PA,10/3/2012 19:45 +San Jose,,CIRCLE,CA,10/3/2012 20:20 +Lakeville,,FORMATION,MN,10/3/2012 20:28 +Lakeville,,FORMATION,MN,10/3/2012 21:30 +Petaluma,,FIREBALL,CA,10/3/2012 21:30 +Columbus,,SPHERE,OH,10/3/2012 22:25 +Beachwood,,FIREBALL,NJ,10/3/2012 23:00 +McAllen,,LIGHT,TX,10/3/2012 23:58 +Bakersfield,,CYLINDER,CA,10/4/2012 6:45 +Roxbury,,OVAL,CT,10/4/2012 7:30 +San Francisco,BLUE,DISK,CA,10/4/2012 13:32 +Roanoke,,CYLINDER,VA,10/4/2012 16:00 +Roxbury,GREEN,OVAL,CT,10/4/2012 19:30 +Des Moines,RED,TRIANGLE,WA,10/4/2012 20:00 +Dayton,,LIGHT,OH,10/4/2012 20:30 +Mercer,ORANGE,FORMATION,PA,10/4/2012 20:30 +San Jose,,CIRCLE,CA,10/4/2012 20:45 +Shelby township,,LIGHT,MI,10/4/2012 21:00 +Lambertville,,CIRCLE,MI,10/4/2012 21:15 +Hamburg,,LIGHT,CA,10/4/2012 21:30 +New York City,,FIREBALL,NY,10/4/2012 22:00 +Baltimore City,,DISK,MD,10/4/2012 22:30 +Kila,GREEN,CIRCLE,MT,10/4/2012 23:30 +Plains,,FLASH,MT,10/4/2012 23:30 +West Wartan,,,MI,10/5/2012 0:00 +Torrance,,,CA,10/5/2012 0:30 +Waterbury,,,CT,10/5/2012 2:00 +Roscoe,,DISK,IL,10/5/2012 7:42 +Idaho Falls,RED ORANGE,SPHERE,ID,10/5/2012 9:30 +Blackstone,,OTHER,MA,10/5/2012 17:50 +Kansas City,,DISK,MO,10/5/2012 18:00 +Columbus,,SPHERE,MS,10/5/2012 18:40 +Lexington,,,MA,10/5/2012 18:45 +Mountain Home,,OTHER,AR,10/5/2012 18:45 +Fitchburg,,FIREBALL,MA,10/5/2012 18:56 +North Lake Tahoe,,LIGHT,CA,10/5/2012 19:20 +Barnard,ORANGE,SPHERE,VT,10/5/2012 20:00 +Peoria,,FIREBALL,AZ,10/5/2012 20:00 +South Windsor,ORANGE,OVAL,CT,10/5/2012 20:00 +Tulsa,,FORMATION,OK,10/5/2012 20:08 +North Myrtle Beach,RED,LIGHT,SC,10/5/2012 20:35 +Milford,ORANGE,FIREBALL,CT,10/5/2012 21:17 +Agoura Hills,,FIREBALL,CA,10/5/2012 21:30 +Asbury Park,ORANGE,FIREBALL,NJ,10/5/2012 21:30 +Gautier,RED,LIGHT,MS,10/5/2012 21:50 +Excelsior,,TRIANGLE,MN,10/5/2012 22:30 +Rockville,,OTHER,MD,10/5/2012 22:30 +Hayward,,CHEVRON,CA,10/5/2012 23:00 +Garland,,CHEVRON,TX,10/5/2012 23:28 +Cranston,ORANGE,,RI,10/6/2012 0:40 +New York City,,LIGHT,NY,10/6/2012 4:00 +Manchester,,FIREBALL,WA,10/6/2012 7:15 +Ocean Beach,,DISK,CA,10/6/2012 8:00 +Havertown,RED ORANGE,CIRCLE,PA,10/6/2012 8:15 +Columbia,RED,VARIOUS,SC,10/6/2012 8:22 +Reynoldsburg,,OVAL,OH,10/6/2012 10:00 +Spring City,ORANGE,OTHER,PA,10/6/2012 13:00 +Seattle,,TRIANGLE,WA,10/6/2012 15:17 +Chesapeake,RED,SPHERE,VA,10/6/2012 19:30 +Freeport,ORANGE,LIGHT,ME,10/6/2012 19:30 +Luray,,TRIANGLE,VA,10/6/2012 20:00 +Hollywood,,FIREBALL,FL,10/6/2012 20:20 +Bonney Lake,RED ORANGE BLUE,OTHER,WA,10/6/2012 20:30 +Brownsburg,,FIREBALL,IN,10/6/2012 20:42 +Downingtown,,LIGHT,PA,10/6/2012 21:00 +Torrington,ORANGE,VARIOUS,CT,10/6/2012 21:05 +Marinette,ORANGE,FIREBALL,WI,10/6/2012 21:30 +North Salt Lake,,LIGHT,UT,10/6/2012 21:30 +Visalia,,OTHER,CA,10/6/2012 21:30 +Salem,,CIRCLE,NH,10/6/2012 21:45 +West Columbia,,CYLINDER,SC,10/6/2012 22:00 +St. Charles,RED,LIGHT,IL,10/6/2012 22:10 +Rockport,,CIRCLE,MA,10/6/2012 22:45 +Pittsburgh,RED,LIGHT,PA,10/6/2012 23:30 +St. Louis,,LIGHT,MO,10/6/2012 23:30 +Limerick,YELLOW,LIGHT,PA,10/7/2012 2:37 +Fort Wayne,,DISK,IN,10/7/2012 11:18 +Glendale,,SPHERE,AZ,10/7/2012 12:15 +Troy,,LIGHT,AL,10/7/2012 19:30 +Dodge Center,,TRIANGLE,MN,10/7/2012 19:45 +Johnson City,GREEN,CIRCLE,TN,10/7/2012 20:00 +Marietta,RED,LIGHT,GA,10/7/2012 20:00 +Vista,,TRIANGLE,CA,10/7/2012 20:10 +Ormond Beach,,FIREBALL,FL,10/7/2012 21:00 +Columbus,ORANGE,FORMATION,OH,10/7/2012 21:05 +Avon,ORANGE,FIREBALL,NC,10/7/2012 21:15 +Knoxville,,FLASH,TN,10/7/2012 21:45 +Longmont,ORANGE,FORMATION,CO,10/8/2012 0:30 +Susanville,,FLASH,CA,10/8/2012 4:50 +Waterbury,,CROSS,CT,10/8/2012 16:00 +Latrobe,GREEN,,PA,10/8/2012 18:00 +Springfield,YELLOW,VARIOUS,MO,10/8/2012 19:00 +Killeen,,LIGHT,TX,10/8/2012 19:20 +Elyria,RED,OVAL,OH,10/8/2012 20:15 +Madera,RED GREEN,SPHERE,CA,10/8/2012 21:00 +Santa Barbara,,OVAL,CA,10/8/2012 21:00 +Augusta,,FIREBALL,ME,10/8/2012 21:30 +Long Beach,,LIGHT,CA,10/8/2012 22:00 +Denham Springs,,FORMATION,LA,10/8/2012 23:20 +Dubuque,,DIAMOND,IA,10/9/2012 0:00 +Hartland,,DISK,WI,10/9/2012 0:15 +Denver,,,CO,10/9/2012 0:35 +Stillwater,,LIGHT,MN,10/9/2012 2:20 +Antioch,,LIGHT,CA,10/9/2012 8:10 +Mineral Wells,,RECTANGLE,TX,10/9/2012 8:49 +Batavia,,CIRCLE,NY,10/9/2012 15:00 +Lake Oswego,,SPHERE,OR,10/9/2012 16:30 +San Diego,,SPHERE,CA,10/9/2012 17:35 +Melrose,,TEARDROP,NM,10/9/2012 18:00 +Collingswood,,FIREBALL,NJ,10/9/2012 19:00 +San Antonio,,DIAMOND,TX,10/9/2012 20:15 +Center Point,,TRIANGLE,LA,10/9/2012 20:45 +Lake Worth,,LIGHT,FL,10/9/2012 23:00 +Woodbourne,ORANGE,OTHER,NY,10/9/2012 23:30 +Burbank,,FIREBALL,CA,10/9/2012 23:45 +Bridgeport,,CIRCLE,CT,10/10/2012 10:15 +San Francisco Airport,,TRIANGLE,CA,10/10/2012 15:00 +San Diego,,SPHERE,CA,10/10/2012 18:56 +Sterling Heights,,OVAL,MI,10/10/2012 19:09 +Syracuse,,LIGHT,NY,10/10/2012 19:40 +Syracuse,ORANGE,CIRCLE,NY,10/10/2012 19:45 +Colorado Springs,,LIGHT,CO,10/10/2012 20:00 +Moundville,,VARIOUS,AL,10/10/2012 20:00 +New York City,,DISK,NY,10/10/2012 20:15 +Las Cruces,,FIREBALL,NM,10/10/2012 20:30 +Marion,,LIGHT,IL,10/10/2012 20:30 +San Jose,,OTHER,CA,10/10/2012 20:30 +Phoenix,,SPHERE,AZ,10/10/2012 20:45 +Yakima,,LIGHT,WA,10/10/2012 20:48 +Austin,,VARIOUS,TX,10/10/2012 21:00 +Bean Station,,CIGAR,TN,10/10/2012 21:00 +Rochester,RED,LIGHT,WA,10/10/2012 21:00 +Suffern,,CYLINDER,NY,10/10/2012 23:01 +Rancho Mirage,RED,RECTANGLE,CA,10/10/2012 23:20 +Truth or Consequences,RED,,NM,10/11/2012 0:00 +Worcester,,,MA,10/11/2012 1:00 +Watchung,GREEN,SPHERE,NJ,10/11/2012 2:45 +Tewksbury,,LIGHT,MA,10/11/2012 4:00 +Las Vegas; enroute to,,DISK,NV,10/11/2012 4:05 +Bablyon,,DISK,NY,10/11/2012 7:00 +Angola,,CIGAR,IN,10/11/2012 8:00 +Yakima,,,WA,10/11/2012 14:06 +Arbutus,,LIGHT,MD,10/11/2012 19:30 +Forty Fort,ORANGE,FIREBALL,PA,10/11/2012 19:30 +Saratoga Springs,,CIRCLE,NY,10/11/2012 19:45 +Nanticoke,,DIAMOND,PA,10/11/2012 20:00 +Las Cruces,,FIREBALL,NM,10/11/2012 20:30 +Ravensdale,,TRIANGLE,WA,10/11/2012 20:42 +Levittown,,DIAMOND,PA,10/11/2012 21:00 +Phoenix,YELLOW,SPHERE,AZ,10/11/2012 21:01 +Blue Island,YELLOW,CIRCLE,IL,10/11/2012 22:15 +Titusville,ORANGE,FIREBALL,FL,10/12/2012 0:00 +Chicago,,,IL,10/12/2012 4:10 +Pittsburgh,,RECTANGLE,PA,10/12/2012 6:30 +Bessemer,,CIRCLE,PA,10/12/2012 8:25 +Big Rock,,SPHERE,TN,10/12/2012 14:30 +Clarksville,,CIRCLE,TN,10/12/2012 15:00 +Ashland,,CYLINDER,OR,10/12/2012 17:00 +Waynesburg,ORANGE,LIGHT,PA,10/12/2012 17:45 +Salem,RED,OVAL,OR,10/12/2012 18:00 +Phoenix,,OTHER,AZ,10/12/2012 18:55 +Buckeye,ORANGE,LIGHT,AZ,10/12/2012 19:00 +Glendale,,,AZ,10/12/2012 19:00 +Lake Worth,,CHEVRON,FL,10/12/2012 19:00 +Lake Worth,,CYLINDER,FL,10/12/2012 19:00 +Shapleigh,,VARIOUS,ME,10/12/2012 19:00 +Hadlyme,,LIGHT,CT,10/12/2012 19:10 +Tucson,,CHEVRON,AZ,10/12/2012 19:30 +Cumberland,,LIGHT,MD,10/12/2012 20:00 +Deptford,ORANGE,SPHERE,NJ,10/12/2012 20:00 +Waukesha,ORANGE,CIRCLE,WI,10/12/2012 20:00 +Bellevue,,,KY,10/12/2012 20:28 +Oklahoma City,RED,SPHERE,OK,10/12/2012 20:30 +Wellington,RED,FIREBALL,FL,10/12/2012 20:30 +Grayling,ORANGE,LIGHT,MI,10/12/2012 20:45 +Anchorage,,FIREBALL,AK,10/12/2012 21:05 +Cabin creek,,,WV,10/12/2012 21:45 +Marlton,ORANGE,CIRCLE,NJ,10/12/2012 22:00 +Ridley Park,,LIGHT,PA,10/12/2012 22:00 +Wolcott,,CIRCLE,CT,10/12/2012 23:15 +Kingston,,LIGHT,PA,10/13/2012 0:00 +Bel Air,,LIGHT,MD,10/13/2012 1:00 +Cary,,FIREBALL,NC,10/13/2012 1:38 +Salt Lake City,BLUE,OTHER,UT,10/13/2012 2:00 +Stone Ridge,,SPHERE,NY,10/13/2012 4:00 +Ligonier,ORANGE,OTHER,PA,10/13/2012 5:30 +Cedar Bluff,,CIRCLE,AL,10/13/2012 6:30 +Columbia,,TRIANGLE,MD,10/13/2012 10:00 +Denver,,OTHER,CO,10/13/2012 14:38 +Stockton Springs,,SPHERE,ME,10/13/2012 15:00 +Pueblo,,OVAL,CO,10/13/2012 19:00 +Taos,,RECTANGLE,NM,10/13/2012 19:00 +Pekin,RED ORANGE,TRIANGLE,IL,10/13/2012 19:20 +Milford,RED,OVAL,CT,10/13/2012 20:22 +Holyoke,GREEN,OVAL,MA,10/13/2012 20:26 +Lemont,YELLOW,OVAL,IL,10/13/2012 20:30 +Milford,ORANGE,CIRCLE,CT,10/13/2012 20:30 +Milford,,LIGHT,CT,10/13/2012 20:30 +Evergreen Park,,OVAL,IL,10/13/2012 20:40 +Cromwell,,CYLINDER,CT,10/13/2012 21:00 +Hudson,ORANGE,CIRCLE,FL,10/13/2012 21:00 +Waterbury,,FIREBALL,CT,10/13/2012 21:00 +York Springs,RED YELLOW,OVAL,PA,10/13/2012 21:15 +Baton Rouge,,TRIANGLE,LA,10/13/2012 21:21 +Mount Laurel,ORANGE,FIREBALL,NJ,10/13/2012 21:45 +Isle of Palms,RED,CIRCLE,SC,10/13/2012 22:00 +Oregon City,,,OR,10/13/2012 22:05 +Ely,,LIGHT,MN,10/13/2012 23:00 +Mountain Home,RED GREEN,LIGHT,AR,10/13/2012 23:00 +New Bern,RED,CIRCLE,NC,10/13/2012 23:30 +Meadow Vista,GREEN,DIAMOND,CA,10/14/2012 2:30 +Modesto,RED,DIAMOND,CA,10/14/2012 2:46 +Fort Worth,,CIRCLE,TX,10/14/2012 7:30 +Centralia,ORANGE,EGG,WA,10/14/2012 12:50 +Sierra Madre,,FORMATION,CA,10/14/2012 13:37 +Raleigh,,CYLINDER,NC,10/14/2012 15:30 +Santa Barbara,,LIGHT,CA,10/14/2012 16:45 +Loveland,,TRIANGLE,CO,10/14/2012 19:00 +Round Rock,,LIGHT,TX,10/14/2012 19:00 +Santa Ana,ORANGE,FORMATION,CA,10/14/2012 19:28 +Easton,ORANGE,FIREBALL,PA,10/14/2012 20:00 +EL Centro,,CIRCLE,CA,10/14/2012 21:00 +Newburgh,ORANGE,,IN,10/14/2012 21:15 +Elmore City,,,OK,10/14/2012 21:30 +Canyon Lake,,,CA,10/14/2012 21:45 +Lakewood,,LIGHT,NJ,10/14/2012 21:45 +Toms River,,CIRCLE,NJ,10/14/2012 21:45 +Lake Wales,,VARIOUS,FL,10/14/2012 22:00 +Lake Wales,BLUE,VARIOUS,FL,10/14/2012 22:00 +Nanuet,,LIGHT,NY,10/14/2012 23:00 +Charleston,,TRIANGLE,SC,10/14/2012 23:34 +Towson,,CIRCLE,MD,10/15/2012 0:15 +Hartland,,VARIOUS,WI,10/15/2012 0:30 +Boise,,LIGHT,ID,10/15/2012 1:00 +Bonney Lake,,,WA,10/15/2012 2:30 +Hagerstown,ORANGE,CIRCLE,MD,10/15/2012 8:00 +Normandy,,RECTANGLE,TN,10/15/2012 10:30 +Murfreesboro,,,TN,10/15/2012 16:40 +Tooele,,CIGAR,UT,10/15/2012 17:45 +St. Louis,,CYLINDER,MO,10/15/2012 18:20 +Menomonee Falls,ORANGE,FORMATION,WI,10/15/2012 18:50 +Bloomington,,DISK,MN,10/15/2012 19:00 +Castor,BLUE,OTHER,LA,10/15/2012 19:00 +Yakima,,SPHERE,WA,10/15/2012 21:00 +Escondido,BLUE,LIGHT,CA,10/15/2012 21:02 +St. Cloud,,FORMATION,MN,10/15/2012 22:00 +Velarde,BLUE,FLASH,NM,10/15/2012 22:00 +Rochester,,TEARDROP,NY,10/16/2012 1:00 +Cedar Rapids,RED BLUE,TRIANGLE,IA,10/16/2012 2:00 +Englewood,,LIGHT,FL,10/16/2012 3:00 +Gunnison,,FLASH,CO,10/16/2012 5:35 +Piney Flats,,CYLINDER,TN,10/16/2012 10:00 +Johnson City,,CYLINDER,TN,10/16/2012 11:30 +Johnson City,,CYLINDER,TN,10/16/2012 11:45 +Johnson City,,CYLINDER,TN,10/16/2012 12:10 +St. Paul,,SPHERE,VA,10/16/2012 14:34 +Williamson,,CYLINDER,WV,10/16/2012 15:00 +Burlington,,TRIANGLE,IA,10/16/2012 15:30 +Belfry,,CYLINDER,KY,10/16/2012 16:30 +Tolland,,CIRCLE,CT,10/16/2012 18:20 +Boston,,LIGHT,MA,10/16/2012 19:00 +Edgartown,,SPHERE,MA,10/16/2012 20:00 +Myerstown,RED ORANGE,LIGHT,PA,10/16/2012 20:00 +Desert Hot Springs,,OTHER,CA,10/16/2012 20:10 +Orlando,,SPHERE,FL,10/16/2012 20:30 +Wrightsville Beach,,TRIANGLE,NC,10/16/2012 20:40 +Lyndonville,ORANGE,FIREBALL,VT,10/16/2012 21:00 +Wooster,,RECTANGLE,OH,10/16/2012 22:00 +Atlanta,,LIGHT,GA,10/16/2012 22:15 +Olympia,BLUE,LIGHT,WA,10/16/2012 22:30 +Shawano,,TRIANGLE,WI,10/16/2012 23:00 +Langhorne,,CIRCLE,PA,10/17/2012 1:00 +Webster,GREEN,OTHER,NY,10/17/2012 1:05 +North Grafton,ORANGE,DISK,MA,10/17/2012 1:30 +Merton,,VARIOUS,WI,10/17/2012 2:15 +Birmingham,RED,LIGHT,AL,10/17/2012 3:20 +Santa Fe,,LIGHT,NM,10/17/2012 5:33 +Navarre,,DISK,FL,10/17/2012 7:00 +Ft. Meade,,,MD,10/17/2012 11:25 +Hagerstown,,DISK,MD,10/17/2012 14:00 +Ridgewood,,OVAL,NY,10/17/2012 17:55 +Stockton,,LIGHT,CA,10/17/2012 18:50 +Machias,,LIGHT,ME,10/17/2012 19:00 +Norman,,SPHERE,OK,10/17/2012 19:00 +San Rafael,,FLASH,CA,10/17/2012 19:00 +Union City,,,CA,10/17/2012 19:45 +North Long Beach,,LIGHT,CA,10/17/2012 20:10 +Algodones,RED GREEN,CIRCLE,NM,10/17/2012 20:30 +Allentown,,CIRCLE,PA,10/17/2012 20:45 +Poteau,,,OK,10/17/2012 21:00 +Dunedin,,,FL,10/17/2012 23:05 +Williamsport,,CIGAR,MD,10/17/2012 23:30 +San Diego,,CIRCLE,CA,10/18/2012 1:00 +Lexington,,SPHERE,SC,10/18/2012 7:45 +Alsip,,RECTANGLE,IL,10/18/2012 16:30 +Lockport,RED,OVAL,IL,10/18/2012 19:45 +Brockton,ORANGE,TRIANGLE,MA,10/18/2012 19:50 +Wolfsville,,TRIANGLE,MD,10/18/2012 20:15 +Bay Village,ORANGE,SPHERE,OH,10/18/2012 20:50 +Umpire,ORANGE,OVAL,AR,10/18/2012 21:00 +Bonneville Salt Flats,,OTHER,UT,10/18/2012 21:20 +Fairbanks,BLUE,LIGHT,AK,10/18/2012 21:30 +Rumford,,LIGHT,RI,10/18/2012 22:00 +South Burlington,,OVAL,VT,10/18/2012 22:30 +Tampa,ORANGE,DIAMOND,FL,10/18/2012 23:40 +Springfield,,OVAL,MA,10/18/2012 23:45 +Unity,,CIRCLE,ME,10/19/2012 2:00 +Everett,,CIRCLE,WA,10/19/2012 5:00 +Tacoma,ORANGE,OVAL,WA,10/19/2012 9:03 +Severn,,OTHER,MD,10/19/2012 18:00 +North Port,,OTHER,FL,10/19/2012 19:00 +Butler,RED,LIGHT,MD,10/19/2012 19:15 +Santa Barbara,,FIREBALL,CA,10/19/2012 19:15 +Lockport,,OVAL,IL,10/19/2012 19:28 +Burns,,FIREBALL,TN,10/19/2012 20:30 +Katy,ORANGE,TRIANGLE,TX,10/19/2012 20:35 +Dallas,GREEN,OTHER,TX,10/19/2012 21:00 +Lakewood Ranch,,LIGHT,FL,10/19/2012 21:00 +Oklahoma City,,TRIANGLE,OK,10/19/2012 21:40 +Nashville,,FIREBALL,TN,10/19/2012 22:00 +Seaside Park,,CIRCLE,NJ,10/19/2012 23:00 +Scorrsdale,,LIGHT,AZ,10/19/2012 23:05 +Scottsdale,ORANGE,LIGHT,AZ,10/19/2012 23:25 +Nashville,,,TN,10/19/2012 23:45 +Glendale,RED GREEN BLUE,CIRCLE,CA,10/19/2012 23:58 +Faison,,OVAL,NC,10/19/2012 23:59 +Apple Valley,,CIRCLE,CA,10/20/2012 0:00 +Virginia Beach,,,VA,10/20/2012 0:30 +Hermiston,,CYLINDER,OR,10/20/2012 6:00 +Hermiston,,FIREBALL,OR,10/20/2012 6:00 +Princeton,,CIRCLE,MN,10/20/2012 6:05 +Brecksville,,LIGHT,OH,10/20/2012 11:30 +New York City,,SPHERE,NY,10/20/2012 17:30 +Cranberry Twp.,ORANGE,LIGHT,PA,10/20/2012 18:00 +Ft. Meade,ORANGE,FORMATION,MD,10/20/2012 18:30 +Hampton,ORANGE,FIREBALL,NH,10/20/2012 18:40 +Jackson,YELLOW,LIGHT,WI,10/20/2012 19:00 +Severn,RED,CIRCLE,MD,10/20/2012 19:00 +Delhi,ORANGE,LIGHT,NY,10/20/2012 19:15 +El Paso,,FIREBALL,TX,10/20/2012 19:20 +Bunn,,FIREBALL,NC,10/20/2012 19:30 +Eau Claire,,FIREBALL,WI,10/20/2012 19:45 +Kingsport,RED,LIGHT,TN,10/20/2012 20:00 +Sierra Vista,,TRIANGLE,AZ,10/20/2012 20:07 +Gilbert,ORANGE,LIGHT,AZ,10/20/2012 20:30 +Jackson,,FIREBALL,WI,10/20/2012 20:30 +Gilbert,RED,LIGHT,AZ,10/20/2012 21:15 +Bethany Beach,ORANGE,SPHERE,DE,10/20/2012 22:15 +South Jordan,RED,CIRCLE,UT,10/20/2012 22:20 +Cumberland,,LIGHT,MD,10/20/2012 22:30 +Glendale,,LIGHT,AZ,10/20/2012 22:30 +Scottsdale,ORANGE,,AZ,10/20/2012 22:35 +Lexington,ORANGE,LIGHT,SC,10/20/2012 22:45 +Anchorage,,LIGHT,AK,10/20/2012 23:00 +Snohomish,ORANGE,,WA,10/20/2012 23:30 +Morris,,FORMATION,IL,10/21/2012 0:05 +Troy,,,MI,10/21/2012 1:00 +Paradise Valley,,TRIANGLE,AZ,10/21/2012 1:30 +Decatur,BLUE,LIGHT,AL,10/21/2012 2:00 +North Las Vegas,,LIGHT,NV,10/21/2012 2:00 +New Bern,,TRIANGLE,NC,10/21/2012 3:00 +Lafayette,,FORMATION,LA,10/21/2012 3:33 +Sarasota,,CYLINDER,FL,10/21/2012 3:40 +Islamorada,,CHEVRON,NY,10/21/2012 4:00 +Stewartsville,,EGG,NJ,10/21/2012 5:30 +Turner,,SPHERE,ME,10/21/2012 5:30 +Wyoming,,TRIANGLE,MI,10/21/2012 7:25 +Edgewater,GREEN,TEARDROP,FL,10/21/2012 7:55 +Lawrenceville,,VARIOUS,GA,10/21/2012 14:40 +Aurora,,,CO,10/21/2012 15:00 +Stanton,,CIGAR,MI,10/21/2012 15:15 +Court,,TEARDROP,VA,10/21/2012 18:00 +Anchorage,,CYLINDER,AK,10/21/2012 18:30 +Milford,,CIRCLE,CT,10/21/2012 19:06 +Palm Bay,,CIRCLE,FL,10/21/2012 19:23 +State College,,CIRCLE,PA,10/21/2012 21:15 +Brazil,,CIRCLE,IN,10/21/2012 21:38 +Atlanta,ORANGE,OVAL,GA,10/21/2012 22:00 +Seguin,,FLASH,TX,10/21/2012 22:00 +Tyson's Corner,,CIRCLE,VA,10/21/2012 22:30 +Surprise,ORANGE,TRIANGLE,AZ,10/21/2012 23:10 +Cleveland,,DISK,OH,10/21/2012 23:30 +Cranston,ORANGE,,RI,10/21/2012 23:57 +Cincinnati,,CIRCLE,OH,10/22/2012 0:05 +Moseley,,OTHER,VA,10/22/2012 1:00 +Bourne,,CIRCLE,MA,10/22/2012 5:45 +Santa Ana,,FIREBALL,CA,10/22/2012 7:00 +Decatur,,CIRCLE,GA,10/22/2012 7:11 +Las Vegas,,LIGHT,NV,10/22/2012 9:17 +Jacksonville Beach,,VARIOUS,FL,10/22/2012 14:30 +Spokane,,LIGHT,WA,10/22/2012 16:00 +Batavia,,SPHERE,OH,10/22/2012 17:30 +Woburn,,DISK,MA,10/22/2012 18:15 +Wellsville,,FIREBALL,NY,10/22/2012 18:20 +Charlottesville,,CIRCLE,VA,10/22/2012 18:30 +Milford,ORANGE,FORMATION,DE,10/22/2012 19:45 +North Myrtle Beach,,,SC,10/22/2012 20:00 +North Myrtle Beach,ORANGE,LIGHT,SC,10/22/2012 20:00 +Alexandria,,LIGHT,VA,10/22/2012 20:07 +Morristown,,LIGHT,TN,10/22/2012 22:00 +Salisbury,,VARIOUS,NC,10/22/2012 22:00 +Seminole,RED GREEN BLUE,OVAL,FL,10/23/2012 1:30 +Virginia Beach,,CIRCLE,VA,10/23/2012 2:00 +Myrtle Beach,ORANGE,FORMATION,SC,10/23/2012 7:15 +Fishers,,LIGHT,IN,10/23/2012 8:30 +Las Vegas,,OTHER,NV,10/23/2012 14:30 +Myrtle Beach,RED,LIGHT,SC,10/23/2012 18:30 +Santa Fe,BLUE,LIGHT,NM,10/23/2012 18:45 +Norton,,LIGHT,MA,10/23/2012 19:15 +Surfside Beach,ORANGE,SPHERE,SC,10/23/2012 19:30 +Murrells Inlet,ORANGE,FIREBALL,SC,10/23/2012 19:45 +Southampton,ORANGE,FORMATION,NJ,10/23/2012 19:50 +Dorchester,,CIRCLE,MA,10/23/2012 20:00 +Huntington beach,ORANGE,LIGHT,SC,10/23/2012 20:00 +McArthur,ORANGE,SPHERE,OH,10/23/2012 20:00 +MillHeim,RED,LIGHT,PA,10/23/2012 20:00 +Myrtle Beach,,VARIOUS,SC,10/23/2012 20:00 +North Myrtle Beach,,SPHERE,SC,10/23/2012 20:00 +Charleston,,SPHERE,SC,10/23/2012 21:00 +Hammond,,LIGHT,IN,10/23/2012 21:00 +Wartrace,RED,CIRCLE,TN,10/23/2012 21:00 +Orrington,BLUE,SPHERE,ME,10/23/2012 23:00 +Lexington,GREEN,VARIOUS,SC,10/24/2012 0:00 +Melbourne Beach,,FLASH,FL,10/24/2012 0:00 +Arlington Heights,ORANGE,FIREBALL,IL,10/24/2012 0:30 +Limon,,LIGHT,CO,10/24/2012 4:50 +Blue Island,BLUE,FIREBALL,IL,10/24/2012 7:00 +West Valley City,,VARIOUS,UT,10/24/2012 7:45 +Little River,,VARIOUS,SC,10/24/2012 8:45 +Tucson,,VARIOUS,AZ,10/24/2012 9:30 +Santa Rosa Indian Reservation,,SPHERE,CA,10/24/2012 10:00 +South San Diego,,OTHER,CA,10/24/2012 10:30 +Richmond,,CIRCLE,VA,10/24/2012 16:14 +Mt. Vernon,,OTHER,WA,10/24/2012 17:00 +Ocean City,,LIGHT,NJ,10/24/2012 18:23 +Lexington,,DISK,SC,10/24/2012 18:42 +Pittsburgh,,FIREBALL,PA,10/24/2012 19:40 +Cape San Blas,ORANGE,FIREBALL,FL,10/24/2012 19:45 +Myrtle Beach,,CIRCLE,SC,10/24/2012 20:00 +Myrtle Beach,,FIREBALL,SC,10/24/2012 20:00 +Ocean Isle Beach,,CIRCLE,NC,10/24/2012 20:00 +Sunset Beach,,OTHER,NC,10/24/2012 20:00 +Cherry Grove Beach,,OVAL,SC,10/24/2012 20:30 +Myrtle Beach,ORANGE,LIGHT,SC,10/24/2012 20:30 +Ocean Isle,,LIGHT,NC,10/24/2012 20:30 +San Saban,,FORMATION,TX,10/24/2012 20:30 +Myrtle Beach,ORANGE,,SC,10/24/2012 20:40 +Myrtle Beach,,CIRCLE,SC,10/24/2012 20:45 +Lampasas,,LIGHT,TX,10/24/2012 21:00 +Villa Hills,,FLASH,KY,10/24/2012 21:00 +Toledo,RED BLUE,CIRCLE,OH,10/24/2012 21:16 +Brownwood,,LIGHT,TX,10/24/2012 21:30 +Grand Junction,,,CO,10/24/2012 21:30 +Inman,,DISK,SC,10/24/2012 22:00 +Little River,,LIGHT,SC,10/24/2012 22:00 +Jenks,,CIRCLE,OK,10/24/2012 22:30 +Glenford,,,OH,10/24/2012 22:45 +East Fishkill,ORANGE,LIGHT,NY,10/25/2012 9:30 +Cumming,,CIGAR,GA,10/25/2012 9:35 +Riverside,,FORMATION,CA,10/25/2012 11:00 +St. Louis,,DISK,MO,10/25/2012 16:30 +Cape San Blas,ORANGE,FIREBALL,FL,10/25/2012 19:45 +North Augusta,ORANGE,CIRCLE,SC,10/25/2012 19:50 +Kings Park,,TRIANGLE,NY,10/25/2012 20:30 +Yakima,,LIGHT,WA,10/25/2012 21:00 +North Pole,,LIGHT,AK,10/25/2012 23:00 +Sacramento,,DISK,CA,10/25/2012 23:00 +El Segundo,,LIGHT,CA,10/26/2012 0:00 +Tanacross,,LIGHT,AK,10/26/2012 0:00 +Maui,,CIRCLE,HI,10/26/2012 4:00 +Napa,RED GREEN,CIRCLE,CA,10/26/2012 6:10 +Cheshire,,OTHER,CT,10/26/2012 10:01 +Russell,ORANGE GREEN,DISK,PA,10/26/2012 12:41 +Las Vegas,,SPHERE,NV,10/26/2012 17:00 +Mystic,ORANGE,TRIANGLE,CT,10/26/2012 17:35 +Endfield,,FIREBALL,ME,10/26/2012 18:00 +Northfield Falls,ORANGE,SPHERE,VT,10/26/2012 19:00 +Hartland,,OVAL,WI,10/26/2012 20:00 +Woolwich,,CIRCLE,ME,10/26/2012 20:00 +Eagle River,ORANGE,LIGHT,AK,10/26/2012 23:10 +Anchorage,,TRIANGLE,AK,10/27/2012 6:00 +Harrisburg,,FIREBALL,PA,10/27/2012 11:30 +Valparaiso,,CHEVRON,IN,10/27/2012 14:15 +Bradenton,RED,FIREBALL,FL,10/27/2012 15:00 +Chicago,,LIGHT,IL,10/27/2012 17:30 +Murfreesboro,,CYLINDER,TN,10/27/2012 18:50 +Murfreesboro,,LIGHT,TN,10/27/2012 18:59 +Wheaton,,SPHERE,IL,10/27/2012 19:15 +Ventura,,LIGHT,CA,10/27/2012 20:00 +El Jebel,,FIREBALL,CO,10/27/2012 20:15 +Wading River,,FIREBALL,NY,10/27/2012 20:40 +Santa Rosa,,CHEVRON,CA,10/27/2012 21:00 +Springfield,RED ORANGE,LIGHT,OH,10/27/2012 21:00 +Vacaville,GREEN,OTHER,CA,10/27/2012 21:00 +Whiting,RED,CIRCLE,ME,10/27/2012 21:00 +Franklin,RED,CIRCLE,OH,10/27/2012 21:05 +Toledo,,SPHERE,OH,10/27/2012 21:15 +Springfield,RED,CIRCLE,OH,10/27/2012 21:30 +New York City,ORANGE,FIREBALL,NY,10/27/2012 21:35 +Nashville,,OTHER,TN,10/27/2012 22:00 +Englewood,,CIRCLE,OH,10/27/2012 22:05 +Springfield,,FLASH,MA,10/27/2012 23:00 +Arlington,,TRIANGLE,TX,10/27/2012 23:15 +Carmel,,OVAL,CA,10/28/2012 9:40 +Beverly Hills,,LIGHT,CA,10/28/2012 10:00 +Lone Pine,,OTHER,CA,10/28/2012 13:33 +Bourbonnais,BLUE,CIRCLE,IL,10/28/2012 16:00 +Houston,,FIREBALL,TX,10/28/2012 16:40 +Las Cruces,,FIREBALL,NM,10/28/2012 18:45 +Chandler,,FIREBALL,AZ,10/28/2012 19:30 +Lee's Summit,,VARIOUS,MO,10/28/2012 21:15 +Marietta,,,GA,10/28/2012 23:07 +College Station,,TRIANGLE,TX,10/29/2012 1:40 +St. Charles,GREEN,LIGHT,MO,10/29/2012 6:10 +Burbank,,TRIANGLE,CA,10/29/2012 7:35 +Woonsocket,,,RI,10/29/2012 10:30 +Las Vegas,,LIGHT,NV,10/29/2012 10:55 +Silver Lake,,OTHER,OR,10/29/2012 11:30 +Weston,,FORMATION,CT,10/29/2012 16:58 +Highridge,,DISK,MO,10/29/2012 19:00 +Venice,,TRIANGLE,CA,10/29/2012 19:41 +Omaha,,RECTANGLE,NE,10/29/2012 19:45 +Exeter,,FORMATION,CA,10/29/2012 20:00 +Roseville,,OTHER,CA,10/29/2012 20:00 +Lee's Summit,,CIRCLE,MO,10/29/2012 20:25 +Yuma,RED,RECTANGLE,AZ,10/29/2012 21:00 +Flint,,LIGHT,MI,10/29/2012 22:00 +Woonsocket,,,RI,10/29/2012 22:00 +Goose Creek,,FIREBALL,SC,10/29/2012 23:00 +Omaha,,OTHER,NE,10/29/2012 23:00 +Chattanooga,BLUE,TEARDROP,TN,10/29/2012 23:15 +Burlington,,CIRCLE,IA,10/30/2012 0:00 +Nashville,GREEN,CIRCLE,TN,10/30/2012 6:10 +Nashville,,FIREBALL,TN,10/30/2012 6:15 +Brunswick,GREEN,LIGHT,OH,10/30/2012 12:00 +Cullman,,CIRCLE,AL,10/30/2012 15:00 +Nashville,,,TN,10/30/2012 17:00 +Franklin,,CIRCLE,TN,10/30/2012 17:45 +Shrub Oak,,EGG,NY,10/30/2012 18:30 +La Mesa,,LIGHT,CA,10/30/2012 19:00 +Sims,,,AR,10/30/2012 20:15 +Marana,,VARIOUS,AZ,10/30/2012 20:30 +Huber Heights,,LIGHT,OH,10/30/2012 22:00 +Atwood,,LIGHT,KS,10/30/2012 22:45 +Myrtle Beach,,LIGHT,SC,10/30/2012 23:00 +Midlothian,ORANGE,TRIANGLE,TX,10/30/2012 23:30 +Campbellsville,,OVAL,KY,10/31/2012 2:15 +La Pine,,CYLINDER,OR,10/31/2012 10:00 +Lakebay,RED,CIGAR,WA,10/31/2012 19:10 +Tomball,,LIGHT,TX,10/31/2012 19:11 +Annapolis,BLUE,TRIANGLE,MD,10/31/2012 19:20 +The Woodlands,,LIGHT,TX,10/31/2012 19:30 +Commerce City,ORANGE,FIREBALL,CO,10/31/2012 19:42 +Little Rock,,TRIANGLE,AR,10/31/2012 19:50 +Carpentersville,ORANGE,CIRCLE,IL,10/31/2012 20:00 +Pinehurst,,LIGHT,TX,10/31/2012 20:15 +Anchorage,,LIGHT,AK,10/31/2012 20:36 +Las Vegas,,FORMATION,NV,10/31/2012 20:40 +Greensboro,GREEN,EGG,NC,10/31/2012 22:00 +Statesville,,CIRCLE,NC,10/31/2012 22:13 +Winchester,GREEN,OVAL,VA,10/31/2012 22:15 +Sacramento,,SPHERE,CA,10/31/2012 22:25 +Piperton,,TRIANGLE,TN,10/31/2012 23:00 +Merced,,LIGHT,CA,11/1/2012 0:00 +Lewes,,TRIANGLE,DE,11/1/2012 5:56 +Loretto,ORANGE,DISK,NE,11/1/2012 9:40 +Rifle,,CONE,CO,11/1/2012 16:00 +Franklin,,,NC,11/1/2012 16:30 +Coventry,,LIGHT,RI,11/1/2012 19:00 +Parsons,,LIGHT,KS,11/1/2012 19:07 +Oklahoma City,,CIRCLE,OK,11/1/2012 19:15 +Waterville,ORANGE,LIGHT,ME,11/1/2012 19:20 +Waterville,ORANGE,LIGHT,ME,11/1/2012 19:35 +Joliet,ORANGE,FORMATION,IL,11/1/2012 20:00 +Waterville,ORANGE,CIRCLE,ME,11/1/2012 20:00 +Omaha,,RECTANGLE,NE,11/1/2012 20:15 +Apple Valley,,CIRCLE,MN,11/1/2012 20:20 +Seattle,,LIGHT,WA,11/1/2012 20:45 +Tacoma,RED ORANGE,TRIANGLE,WA,11/1/2012 20:50 +Oneonta,,TRIANGLE,AL,11/1/2012 21:00 +St. Simons Island,ORANGE,FIREBALL,GA,11/1/2012 23:30 +Phoenix,,TRIANGLE,AZ,11/2/2012 0:00 +Anthem,,LIGHT,AZ,11/2/2012 1:00 +Miami,,,FL,11/2/2012 7:00 +Miami,,,FL,11/2/2012 7:00 +Hollywest,,FIREBALL,FL,11/2/2012 8:00 +Phoenix,,FORMATION,AZ,11/2/2012 18:30 +Coral Springs,,LIGHT,FL,11/2/2012 19:00 +Estherville,,TRIANGLE,IA,11/2/2012 21:00 +Plymouth,,FIREBALL,WI,11/2/2012 21:15 +Logan,,CIRCLE,UT,11/2/2012 21:18 +Liberty,,LIGHT,ME,11/2/2012 21:30 +Burnsville,,CIRCLE,NC,11/2/2012 22:00 +Centerville,,,ID,11/2/2012 22:00 +Homer,,FLASH,AK,11/2/2012 22:00 +Litchfield Beach,ORANGE,FIREBALL,SC,11/2/2012 22:00 +Soldotna,,FLASH,AK,11/2/2012 22:30 +Loveland,,CIRCLE,OH,11/2/2012 23:00 +North Liberty,RED,LIGHT,IA,11/2/2012 23:00 +Lewiston,,LIGHT,ME,11/2/2012 23:15 +Marina Del Rey,,FIREBALL,CA,11/2/2012 23:58 +Albuquerque,,DISK,NM,11/3/2012 0:00 +Albuquerque,,SPHERE,NM,11/3/2012 0:00 +Tunica,,OVAL,MS,11/3/2012 0:00 +Silver Run,RED,SPHERE,MD,11/3/2012 0:45 +Silver Springs,,,FL,11/3/2012 2:00 +Danbury,,FIREBALL,CT,11/3/2012 3:30 +Knoxville,,CIRCLE,TN,11/3/2012 3:35 +Burbank,RED,LIGHT,CA,11/3/2012 5:00 +Omaha,RED,LIGHT,NE,11/3/2012 8:03 +Corpus Christi,,CIGAR,TX,11/3/2012 8:30 +Denton,,DISK,TX,11/3/2012 15:00 +Buena Park,,FIREBALL,CA,11/3/2012 17:30 +Hood River,,OTHER,OR,11/3/2012 18:29 +East Wenatchee,,CONE,WA,11/3/2012 18:30 +Goldendale,,FIREBALL,WA,11/3/2012 18:45 +Lake Odessa,,VARIOUS,MI,11/3/2012 19:00 +Neosho,,RECTANGLE,MO,11/3/2012 19:00 +Longwood,,SPHERE,FL,11/3/2012 19:45 +Strasburg,RED BLUE,FLASH,VA,11/3/2012 19:45 +Eureka,ORANGE,RECTANGLE,CA,11/3/2012 19:50 +Studio City,GREEN,DISK,CA,11/3/2012 19:50 +Cedar Rapids,,OVAL,IA,11/3/2012 20:00 +Elk Grove,,SPHERE,CA,11/3/2012 20:00 +Kenosha,,LIGHT,WI,11/3/2012 20:00 +Mount Pleasant,ORANGE,CIRCLE,SC,11/3/2012 20:00 +Omaha,RED,OTHER,NE,11/3/2012 20:03 +Bertram,ORANGE,LIGHT,TX,11/3/2012 20:15 +Middletown,,,VA,11/3/2012 20:15 +Fairmont,,SPHERE,WV,11/3/2012 20:28 +Burbank,RED,LIGHT,CA,11/3/2012 21:00 +Carrboro,,TRIANGLE,NC,11/3/2012 21:00 +Comanche,,,TX,11/3/2012 21:00 +Petoskey,ORANGE,FIREBALL,MI,11/3/2012 21:00 +Los Cabos,ORANGE,TRIANGLE,CA,11/3/2012 21:30 +Mount Vernon,,TRIANGLE,IA,11/3/2012 22:00 +Greenville,,CIRCLE,SC,11/3/2012 22:05 +Grand Rapids,,FORMATION,MI,11/3/2012 22:18 +Florissant,,SPHERE,MO,11/3/2012 23:00 +Loxahatchee,,OTHER,FL,11/3/2012 23:00 +Yardley,,LIGHT,PA,11/3/2012 23:11 +Clayton,,CIRCLE,OH,11/3/2012 23:30 +Des Moines,RED,FIREBALL,IA,11/3/2012 23:45 +Pawling,GREEN,VARIOUS,NY,11/3/2012 23:45 +Yakima,,CHEVRON,WA,11/4/2012 0:00 +Boulder,,FIREBALL,CO,11/4/2012 1:30 +Upland,,CIRCLE,CA,11/4/2012 9:15 +Albuquerque,,,NM,11/4/2012 12:00 +Laguna Hills,,SPHERE,CA,11/4/2012 12:50 +North Hollywood,,RECTANGLE,CA,11/4/2012 13:00 +North Hollywood,,RECTANGLE,CA,11/4/2012 14:30 +Lakewood,,LIGHT,CO,11/4/2012 18:00 +Ranchos de Taos,BLUE,FIREBALL,NM,11/4/2012 18:34 +Thomaston,,LIGHT,CT,11/4/2012 18:45 +Myrtle Beach,ORANGE,FORMATION,SC,11/4/2012 19:00 +Sanford,YELLOW,DISK,FL,11/4/2012 19:00 +Anchorage,ORANGE,LIGHT,AK,11/4/2012 19:15 +Boulder,,TRIANGLE,CO,11/4/2012 19:30 +Clearwater,,LIGHT,FL,11/4/2012 19:30 +Renton,,LIGHT,WA,11/4/2012 20:00 +Burnsville,,CIRCLE,MN,11/4/2012 20:30 +Peru,ORANGE,LIGHT,MA,11/4/2012 20:30 +Willowick,,OTHER,OH,11/4/2012 20:30 +Loveland,,SPHERE,OH,11/4/2012 20:35 +Woodstock,,FIREBALL,GA,11/4/2012 20:45 +Matawan,,LIGHT,NJ,11/4/2012 21:00 +Spring Creek,,DISK,NV,11/5/2012 0:00 +Weston,,FIREBALL,FL,11/5/2012 1:24 +Orono,RED,CIRCLE,ME,11/5/2012 2:00 +Kenilworth,,,NJ,11/5/2012 3:30 +Germantown,,TRIANGLE,NY,11/5/2012 5:00 +Salt Lake City,,TRIANGLE,UT,11/5/2012 6:45 +Cranston,,SPHERE,RI,11/5/2012 9:40 +Grand Island,,CIGAR,NY,11/5/2012 15:30 +Boothwyn,,CIGAR,PA,11/5/2012 17:02 +Glastonbury,,VARIOUS,CT,11/5/2012 17:10 +Brewster,,FIREBALL,NY,11/5/2012 17:20 +South Kingstown,BLUE,CIRCLE,RI,11/5/2012 17:23 +Dayville,ORANGE GREEN,FIREBALL,CT,11/5/2012 17:30 +Milford,,FIREBALL,CT,11/5/2012 18:20 +Portland,ORANGE,FIREBALL,OR,11/5/2012 18:30 +Pacifica,ORANGE,CIRCLE,CA,11/5/2012 19:00 +Wethersfield,ORANGE YELLOW,FORMATION,CT,11/5/2012 19:00 +Myrtle Beach,,FORMATION,SC,11/5/2012 19:08 +Arcadia,,LIGHT,FL,11/5/2012 19:15 +Moncks Corner,,FORMATION,SC,11/5/2012 19:36 +South Orange,,TRIANGLE,NJ,11/5/2012 20:15 +Diamond Springs,,,CA,11/5/2012 21:30 +Del Mar,,TRIANGLE,CA,11/5/2012 21:52 +Tacoma,ORANGE,LIGHT,WA,11/5/2012 22:20 +Springdale,,LIGHT,AR,11/5/2012 22:40 +Boise,,OTHER,ID,11/5/2012 23:00 +Sardis Lake,,FORMATION,MS,11/5/2012 23:00 +Kenduskeag,,FIREBALL,ME,11/6/2012 1:00 +Cut Bank,,CHEVRON,MT,11/6/2012 6:30 +Las Vegas,,DISK,NV,11/6/2012 14:00 +Miami,,,OK,11/6/2012 16:15 +Wentworth,RED,FORMATION,NH,11/6/2012 17:00 +Sioux Falls,,LIGHT,SD,11/6/2012 17:45 +Boulder,ORANGE,LIGHT,CO,11/6/2012 18:00 +Pawleys Island,RED ORANGE,CIRCLE,SC,11/6/2012 18:26 +Euclid,,LIGHT,OH,11/6/2012 18:30 +Fairhaven,,LIGHT,MA,11/6/2012 18:44 +Jefferson City,,CIRCLE,MO,11/6/2012 19:17 +Arizona City,,VARIOUS,AZ,11/6/2012 19:30 +Hamilton,,CIRCLE,OH,11/6/2012 19:30 +Kamiah,RED GREEN,,ID,11/6/2012 19:30 +Kansas City,GREEN,CHEVRON,MO,11/6/2012 19:50 +Portland,,VARIOUS,OR,11/6/2012 20:00 +Evansdale,,,IA,11/6/2012 20:35 +Bozeman,,CIRCLE,MT,11/6/2012 21:00 +Damascus,,RECTANGLE,AR,11/6/2012 21:00 +DeWitt,,,IA,11/6/2012 21:00 +Lebanon,ORANGE,,CT,11/6/2012 21:00 +Monroeville,,FIREBALL,PA,11/6/2012 22:25 +Twin Falls,,SPHERE,ID,11/6/2012 23:15 +Fort Collins,,CIRCLE,CO,11/6/2012 23:30 +Reading,,OTHER,PA,11/6/2012 23:40 +Cutler Bay,,CIRCLE,FL,11/7/2012 0:30 +Studio City,,LIGHT,CA,11/7/2012 3:15 +Gulfport,,VARIOUS,MS,11/7/2012 11:30 +Albuquerque,,LIGHT,NM,11/7/2012 14:00 +Bay Lake,,LIGHT,FL,11/7/2012 17:30 +Tonopah,,LIGHT,NV,11/7/2012 18:15 +Boulder,,,CO,11/7/2012 19:00 +Zeeland,,TRIANGLE,MI,11/7/2012 19:20 +Casper,GREEN,SPHERE,WY,11/7/2012 19:30 +Delray Beach,,OTHER,FL,11/7/2012 19:30 +Lone Pine,,,CA,11/7/2012 19:30 +Barberton,,FIREBALL,OH,11/7/2012 19:45 +Wasilla - Susitna Delta,ORANGE,LIGHT,AK,11/7/2012 19:45 +Orlando,GREEN,LIGHT,FL,11/7/2012 19:51 +Tampa,,FIREBALL,FL,11/7/2012 20:00 +North Bend,RED,LIGHT,WA,11/7/2012 20:15 +Wilmington,RED ORANGE,LIGHT,NC,11/7/2012 20:35 +Durand,,LIGHT,MI,11/7/2012 20:45 +Cape Coral,RED,FIREBALL,FL,11/7/2012 21:00 +Mount Pleasant,ORANGE,CIRCLE,SC,11/7/2012 21:00 +Tucson,ORANGE,TRIANGLE,AZ,11/7/2012 21:30 +North Platte,,FIREBALL,NE,11/7/2012 22:10 +Richfield,,CIRCLE,MN,11/7/2012 22:30 +Omaha,,FIREBALL,NE,11/7/2012 23:00 +Bay City,ORANGE,TEARDROP,MI,11/7/2012 23:16 +Boulder,,TRIANGLE,CO,11/7/2012 23:45 +Pueblo,,FIREBALL,CO,11/8/2012 1:30 +McKinleyville,,CIRCLE,CA,11/8/2012 1:59 +Winston-Salem,,DISK,NC,11/8/2012 12:03 +Ketchikan,RED,LIGHT,AK,11/8/2012 16:30 +Hampton,,TRIANGLE,GA,11/8/2012 17:00 +Selah,,TRIANGLE,WA,11/8/2012 17:30 +Taylor,,LIGHT,TX,11/8/2012 17:45 +Granger,,FIREBALL,TX,11/8/2012 17:50 +Temple,ORANGE YELLOW,LIGHT,TX,11/8/2012 18:00 +Jonah,,VARIOUS,TX,11/8/2012 18:04 +Tarpon Springs,,OTHER,FL,11/8/2012 18:40 +Bernardsville,,LIGHT,NJ,11/8/2012 19:00 +Loris,ORANGE,OVAL,SC,11/8/2012 19:00 +Divide,,SPHERE,CO,11/8/2012 19:15 +Farmington,,FIREBALL,MO,11/8/2012 19:45 +Clinton Township,ORANGE,TRIANGLE,MI,11/8/2012 19:50 +Gulfport,GREEN,CIRCLE,MS,11/8/2012 20:00 +Walterboro,,FIREBALL,SC,11/8/2012 20:00 +Ypsilanti,,CYLINDER,MI,11/8/2012 20:17 +Okeechobee,RED,FIREBALL,FL,11/8/2012 20:40 +High Point,,TRIANGLE,NC,11/8/2012 21:00 +Myrtle Beach,RED,SPHERE,SC,11/8/2012 21:20 +Paton,,FORMATION,IA,11/8/2012 21:30 +Whiteville,,FIREBALL,NC,11/8/2012 21:30 +Texarkana,BLUE,LIGHT,TX,11/8/2012 21:40 +Canastota,ORANGE GREEN,LIGHT,NY,11/8/2012 21:45 +Eugene,,,OR,11/8/2012 22:10 +Fort Collins,GREEN,FIREBALL,CO,11/8/2012 22:30 +Roswell,,FLASH,NM,11/8/2012 22:30 +Germantown,,TRIANGLE,WI,11/8/2012 22:35 +Ansted,BLUE,LIGHT,WV,11/8/2012 22:45 +Springfield,,OVAL,OH,11/8/2012 22:45 +Victor,,FLASH,WV,11/8/2012 22:45 +Anaheim,,SPHERE,CA,11/8/2012 23:00 +Myrtle Beach,RED,FLASH,SC,11/8/2012 23:00 +Pueblo,,,CO,11/8/2012 23:00 +Scotts Bluff,,LIGHT,NE,11/8/2012 23:00 +Tucumcari,BLUE,FLASH,NM,11/8/2012 23:00 +Bogalusa,,DISK,LA,11/8/2012 23:21 +Manheim,,LIGHT,PA,11/8/2012 23:35 +Agra,,,OK,11/8/2012 23:57 +Kutztown,,,PA,11/9/2012 1:00 +Petersburg,GREEN,FLASH,TX,11/9/2012 1:00 +Springfield,,,MO,11/9/2012 2:30 +Oceanside,,CIRCLE,CA,11/9/2012 3:13 +Grifton,,OVAL,NC,11/9/2012 6:20 +Fredriksburg,,CYLINDER,VA,11/9/2012 15:00 +Meadville,,CYLINDER,MS,11/9/2012 16:00 +Lawrenceville,,OTHER,GA,11/9/2012 17:00 +Bakersfield,,CIRCLE,CA,11/9/2012 19:00 +Belpre,,CONE,OH,11/9/2012 19:00 +Lake Havasu City,ORANGE,SPHERE,AZ,11/9/2012 19:00 +Bakersfield,,,CA,11/9/2012 19:40 +Land O'Lakes,ORANGE,CIRCLE,FL,11/9/2012 20:45 +Coral Springs,,SPHERE,FL,11/9/2012 21:30 +Winter Springs,ORANGE,SPHERE,FL,11/9/2012 21:30 +Centreville,RED,OTHER,VA,11/9/2012 22:00 +Greensboro,GREEN,SPHERE,NC,11/9/2012 22:00 +Ketchikan,,LIGHT,AK,11/9/2012 22:00 +Radford,BLUE,FLASH,VA,11/9/2012 22:00 +Albuquerque,,,NM,11/9/2012 23:00 +Albuquerque,,FLASH,NM,11/9/2012 23:00 +Antioch,ORANGE,LIGHT,CA,11/9/2012 23:00 +Lewiston,,LIGHT,ME,11/9/2012 23:15 +Lisbon,RED,CIRCLE,OH,11/9/2012 23:30 +Hoquiam,,FLASH,WA,11/10/2012 1:00 +Crosby,,,TX,11/10/2012 4:38 +Nampa,,VARIOUS,ID,11/10/2012 5:39 +New Bedford,,,MA,11/10/2012 7:00 +Dandridge,,TEARDROP,TN,11/10/2012 12:08 +Summersville,,CYLINDER,WV,11/10/2012 14:15 +Eldridge,RED ORANGE,CIRCLE,IA,11/10/2012 17:50 +Eureka,,LIGHT,MT,11/10/2012 18:00 +Lower Burrell,,,PA,11/10/2012 18:15 +Payson,,FIREBALL,UT,11/10/2012 18:20 +Vancouver,RED,RECTANGLE,WA,11/10/2012 18:25 +Castle Rock,RED ORANGE,TRIANGLE,WA,11/10/2012 18:28 +Derby,ORANGE,,NY,11/10/2012 18:30 +Endicott,,CIRCLE,NY,11/10/2012 18:30 +Orlando,,CIRCLE,FL,11/10/2012 18:30 +Orlando,RED ORANGE,CIRCLE,FL,11/10/2012 18:30 +Bayville,RED,FIREBALL,NJ,11/10/2012 19:00 +Bellflower,ORANGE,SPHERE,CA,11/10/2012 19:00 +Chattanooga,,OTHER,TN,11/10/2012 19:00 +Tarentum,ORANGE,CIRCLE,PA,11/10/2012 19:20 +Placentia,ORANGE,CIRCLE,CA,11/10/2012 19:30 +Los Angeles,RED,CIRCLE,CA,11/10/2012 19:40 +Clinton Township,,TRIANGLE,MI,11/10/2012 20:00 +Lakeland,,,FL,11/10/2012 20:00 +Vidalia,,TRIANGLE,GA,11/10/2012 20:00 +Lakeland,ORANGE,CHEVRON,FL,11/10/2012 20:15 +Montpelier,,TRIANGLE,VT,11/10/2012 20:25 +Murrells Inlet,ORANGE,LIGHT,SC,11/10/2012 20:30 +Cut Off,,VARIOUS,LA,11/10/2012 20:32 +Dripping Springs,,FIREBALL,TX,11/10/2012 21:00 +Kittanning,,TEARDROP,PA,11/10/2012 21:00 +Redding,,,CA,11/10/2012 21:00 +Ballentine,,EGG,SC,11/10/2012 21:10 +San Anselmo,RED,VARIOUS,CA,11/10/2012 21:15 +San Anselmo,,LIGHT,CA,11/10/2012 21:30 +Cape Coral,RED,SPHERE,FL,11/10/2012 21:35 +Lynnwood,,OTHER,WA,11/10/2012 22:00 +Vestal,,TRIANGLE,NY,11/10/2012 22:00 +Siloam Springs,,OTHER,AR,11/10/2012 22:35 +Roseville,,TRIANGLE,CA,11/10/2012 23:20 +Hamilton,,TRIANGLE,OH,11/10/2012 23:30 +Creswell,,CIRCLE,OR,11/10/2012 23:45 +no data,,,MO,11/11/2012 0:00 +McCordsville,,SPHERE,IN,11/11/2012 0:31 +New Braunfels,,OTHER,TX,11/11/2012 2:00 +Troy,,SPHERE,OH,11/11/2012 2:30 +Bremerton,,,WA,11/11/2012 4:40 +Venice,,TRIANGLE,CA,11/11/2012 5:05 +Jefferson,,FIREBALL,GA,11/11/2012 7:00 +Omaha,,DISK,NE,11/11/2012 14:20 +Leesburg,,CYLINDER,VA,11/11/2012 15:50 +Sacramento,,FIREBALL,CA,11/11/2012 17:56 +Santa Cruz,RED,FORMATION,CA,11/11/2012 18:15 +Grand Junction,,TRIANGLE,CO,11/11/2012 18:45 +Kalispell,,,MT,11/11/2012 20:10 +Kalispell,,DIAMOND,MT,11/11/2012 20:30 +Shawnee,,FORMATION,KS,11/11/2012 20:30 +Fredericksburg,,TRIANGLE,VA,11/11/2012 21:00 +Warm Springs,ORANGE,,NV,11/11/2012 21:00 +Lisbon,,CIRCLE,OH,11/11/2012 21:52 +Galloway,,CIRCLE,NJ,11/11/2012 22:00 +Fairless Hills,,TRIANGLE,PA,11/11/2012 22:04 +Mancos,,,CO,11/11/2012 22:30 +Winter Haven,,,FL,11/11/2012 22:30 +Westminster,,CHEVRON,CA,11/11/2012 22:50 +Blue Springs,,CIGAR,MO,11/11/2012 23:30 +Gastonia,ORANGE,SPHERE,NC,11/11/2012 23:30 +Washington Township,,CROSS,MI,11/11/2012 23:50 +Salem,,CYLINDER,OR,11/12/2012 0:00 +Shawnee,,CIRCLE,KS,11/12/2012 1:00 +Platte City,,TRIANGLE,MO,11/12/2012 4:58 +Sebastopol,,CIRCLE,CA,11/12/2012 6:30 +Los Angeles,,TEARDROP,CA,11/12/2012 12:01 +Raymore,,TRIANGLE,MO,11/12/2012 12:15 +Boston,,SPHERE,MA,11/12/2012 15:00 +Norristown,,FIREBALL,PA,11/12/2012 17:00 +Chantilly,,CIRCLE,VA,11/12/2012 18:30 +Lynchburg,,CIRCLE,VA,11/12/2012 18:30 +Clayton,,TRIANGLE,NC,11/12/2012 18:50 +Cotulla,,LIGHT,TX,11/12/2012 18:55 +Hattiesburg,,CIRCLE,MS,11/12/2012 19:00 +Lancaster,,VARIOUS,PA,11/12/2012 19:26 +La Puente,ORANGE,,CA,11/12/2012 19:59 +Folsom,RED GREEN,CIRCLE,LA,11/12/2012 20:00 +Fort Collins,,TRIANGLE,CO,11/12/2012 20:00 +Garison,,DIAMOND,MN,11/12/2012 20:40 +Smithville,,LIGHT,MO,11/12/2012 22:00 +New York City,RED,SPHERE,NY,11/12/2012 22:20 +Lisbon,,FIREBALL,OH,11/12/2012 22:30 +Muncie,,TRIANGLE,IN,11/13/2012 0:25 +Porter Ranch,RED,SPHERE,CA,11/13/2012 2:00 +Lake Arrowhead,,CIRCLE,CA,11/13/2012 2:30 +Birmingham,,EGG,AL,11/13/2012 5:37 +Florence,,SPHERE,KY,11/13/2012 6:00 +Orlando,,CIRCLE,FL,11/13/2012 6:00 +Benbrook,,CIGAR,TX,11/13/2012 6:30 +Concord,,FORMATION,NH,11/13/2012 15:50 +Buffalo,,LIGHT,NY,11/13/2012 16:16 +Winchester,,OVAL,VA,11/13/2012 16:45 +Orlando,,FIREBALL,FL,11/13/2012 17:10 +Longmont,ORANGE,,CO,11/13/2012 17:30 +Danville,,,IL,11/13/2012 18:00 +Lewistown,,FIREBALL,MT,11/13/2012 18:00 +Lemon Grove,,OVAL,CA,11/13/2012 18:30 +Novinger,,SPHERE,MO,11/13/2012 18:30 +Southington,ORANGE,SPHERE,CT,11/13/2012 18:30 +Sebastopol,,CIRCLE,CA,11/13/2012 19:00 +Portsmouth,,RECTANGLE,NH,11/13/2012 19:15 +Webster,,FIREBALL,MA,11/13/2012 19:36 +Katy,,FIREBALL,TX,11/13/2012 19:55 +Columbus,RED,FORMATION,OH,11/13/2012 20:30 +Watertown,,LIGHT,MN,11/13/2012 20:30 +Enfield,YELLOW,TRIANGLE,CT,11/13/2012 20:40 +Kingsport,RED,TRIANGLE,TN,11/13/2012 21:20 +West point,,TRIANGLE,GA,11/13/2012 21:30 +Mussel Shoals,,CIRCLE,AL,11/13/2012 22:00 +Clarksdale,,DIAMOND,MS,11/13/2012 23:00 +Chesapeake,ORANGE,FORMATION,VA,11/14/2012 3:53 +Lake Ronkonkoma,,SPHERE,NY,11/14/2012 5:00 +Mission Viejo,RED,LIGHT,CA,11/14/2012 5:00 +La Porte,,SPHERE,IN,11/14/2012 5:45 +Chesapeake,ORANGE,FORMATION,VA,11/14/2012 15:53 +Longview,,FIREBALL,WA,11/14/2012 16:50 +Allenwood,,TRIANGLE,NJ,11/14/2012 17:30 +Cape Coral,,SPHERE,FL,11/14/2012 17:30 +Vancouver,,FIREBALL,WA,11/14/2012 17:30 +Vancouver,RED ORANGE,FIREBALL,WA,11/14/2012 17:30 +Vancouver,,FIREBALL,WA,11/14/2012 17:35 +Otis,RED,FORMATION,OR,11/14/2012 18:00 +Taunton,,TRIANGLE,MA,11/14/2012 18:01 +Vancouver,,FIREBALL,WA,11/14/2012 18:30 +Levittown,ORANGE,LIGHT,NY,11/14/2012 18:35 +Cicero,,FIREBALL,IL,11/14/2012 18:36 +Ridgefield,YELLOW,,WA,11/14/2012 18:45 +Danville,ORANGE,LIGHT,OH,11/14/2012 19:00 +Graniteville,,TRIANGLE,VT,11/14/2012 19:50 +Bellingham,GREEN,CIRCLE,WA,11/14/2012 20:00 +Orem,RED,LIGHT,UT,11/14/2012 20:00 +Sacramento,,FIREBALL,CA,11/14/2012 20:00 +Union City,ORANGE,LIGHT,CA,11/14/2012 20:08 +Union City,RED,LIGHT,CA,11/14/2012 20:10 +Hayden,ORANGE,CIRCLE,ID,11/14/2012 20:30 +Anchorage,,DISK,AK,11/14/2012 21:00 +Salt Lake City,RED,RECTANGLE,UT,11/14/2012 21:15 +West Jordan,,FIREBALL,UT,11/14/2012 21:20 +Tooele,,OTHER,UT,11/14/2012 21:45 +England,,TRIANGLE,AR,11/14/2012 22:00 +Knoxville,,CIRCLE,TN,11/14/2012 22:20 +Berkeley,,DIAMOND,CA,11/14/2012 22:45 +Tacoma,,FLASH,WA,11/14/2012 23:43 +Toms River,,CIRCLE,NJ,11/15/2012 0:00 +Wasilla,,OTHER,AK,11/15/2012 0:00 +Mammoth Lakes,,LIGHT,CA,11/15/2012 2:00 +Butte,,TRIANGLE,MT,11/15/2012 2:30 +Brownsville,,OVAL,TX,11/15/2012 5:15 +Cincinnati,GREEN,FIREBALL,OH,11/15/2012 6:41 +Coral Springs,RED,LIGHT,FL,11/15/2012 7:45 +Lakeside,,LIGHT,CA,11/15/2012 7:45 +Vancouver,,TRIANGLE,WA,11/15/2012 17:30 +St. Clair Shores,,FIREBALL,MI,11/15/2012 18:00 +Douglassville,RED ORANGE,RECTANGLE,PA,11/15/2012 18:30 +Blue Ash,RED,SPHERE,OH,11/15/2012 18:33 +Fort Dodge,,OTHER,IA,11/15/2012 19:00 +Lexington,,OTHER,NC,11/15/2012 19:08 +Duluth,,DIAMOND,MN,11/15/2012 19:20 +Ogden,ORANGE,LIGHT,UT,11/15/2012 19:45 +Gaithersburg,,CIRCLE,MD,11/15/2012 20:00 +Gaithersburg,,VARIOUS,MD,11/15/2012 20:00 +Morgantown,BLUE,TRIANGLE,WV,11/15/2012 21:00 +Vancouver,,LIGHT,WA,11/15/2012 21:00 +Wichita,,OTHER,KS,11/15/2012 23:05 +Pond Creek,,TEARDROP,OK,11/16/2012 3:00 +Pleasanton,ORANGE,FIREBALL,KS,11/16/2012 4:00 +Stillwater,RED ORANGE,TRIANGLE,MN,11/16/2012 4:50 +Brainard,,,NE,11/16/2012 5:28 +Omaha,ORANGE,OTHER,NE,11/16/2012 5:30 +Vandalia,RED,LIGHT,IL,11/16/2012 5:30 +Morgantown,,CIRCLE,WV,11/16/2012 7:16 +Newton,ORANGE,SPHERE,NC,11/16/2012 10:42 +Oconomowoc,,,WI,11/16/2012 12:45 +Owego,,CIRCLE,NY,11/16/2012 16:30 +Chaska,,LIGHT,MN,11/16/2012 18:00 +Stamford,,FIREBALL,CT,11/16/2012 18:00 +Greenville,BLUE,,PA,11/16/2012 18:14 +Homer City,,DIAMOND,PA,11/16/2012 18:54 +Homer City,,DIAMOND,PA,11/16/2012 18:54 +Las Vegas,,OTHER,NV,11/16/2012 19:00 +Ventura,,FIREBALL,CA,11/16/2012 19:00 +Indianapolis,,CIRCLE,IN,11/16/2012 19:25 +Standish,ORANGE,CIRCLE,ME,11/16/2012 19:30 +Long Beach,,FIREBALL,CA,11/16/2012 20:00 +Long Beach,,FIREBALL,CA,11/16/2012 20:00 +Saint Clair,,LIGHT,PA,11/16/2012 20:30 +Pittsburgh,,,PA,11/16/2012 21:00 +Snoqualmie,,CIRCLE,WA,11/16/2012 22:00 +Duluth,,LIGHT,MN,11/16/2012 22:30 +Springfield,,SPHERE,VT,11/16/2012 23:00 +Lancaster,ORANGE,FIREBALL,NY,11/16/2012 23:38 +Alto,ORANGE,LIGHT,MI,11/16/2012 23:50 +Bozeman,,CIRCLE,MT,11/17/2012 0:00 +Hagerstown,,LIGHT,MD,11/17/2012 0:37 +Burke,,TRIANGLE,VA,11/17/2012 1:00 +Hicksville,,LIGHT,NY,11/17/2012 1:00 +Salt Lake,ORANGE,LIGHT,UT,11/17/2012 3:00 +Eliot,ORANGE,CIRCLE,ME,11/17/2012 5:00 +Jamesport,,DISK,NY,11/17/2012 10:00 +Boynton Beach,,SPHERE,FL,11/17/2012 15:10 +North Dartmouth,ORANGE,CIRCLE,MA,11/17/2012 16:30 +Jersey City,,DISK,NJ,11/17/2012 17:00 +Knoxville,,,TN,11/17/2012 17:00 +Santa Cruz,RED ORANGE,CIRCLE,CA,11/17/2012 17:45 +St. Louis,,TRIANGLE,MO,11/17/2012 18:00 +Hampton Borough,RED,FIREBALL,NJ,11/17/2012 18:10 +Rochester,,FIREBALL,NH,11/17/2012 18:10 +Winthrop,ORANGE,FIREBALL,MA,11/17/2012 18:12 +Stafford,,CIRCLE,VA,11/17/2012 18:30 +Stafford,RED ORANGE,FIREBALL,VA,11/17/2012 18:30 +Stafford,,FORMATION,VA,11/17/2012 18:30 +Stafford,ORANGE,CIRCLE,VA,11/17/2012 18:33 +Springfield,,FLASH,MO,11/17/2012 18:35 +Springfield,,LIGHT,MO,11/17/2012 18:45 +Columbia,,LIGHT,MO,11/17/2012 18:50 +Cedarburg,ORANGE,FIREBALL,WI,11/17/2012 19:00 +Enfield,ORANGE,,CT,11/17/2012 19:00 +Jerome,,,MI,11/17/2012 19:00 +Cedarburg,RED,FIREBALL,WI,11/17/2012 19:13 +Ravenna,ORANGE,SPHERE,OH,11/17/2012 19:17 +Hooksett,,TRIANGLE,NH,11/17/2012 19:23 +Polson,ORANGE,LIGHT,MT,11/17/2012 19:52 +Phoenix,ORANGE,LIGHT,AZ,11/17/2012 20:23 +Oswego,ORANGE,OVAL,IL,11/17/2012 20:30 +Peoria,ORANGE,DIAMOND,IL,11/17/2012 23:00 +Peoria,ORANGE,SPHERE,IL,11/17/2012 23:00 +Turner,RED BLUE,OVAL,ME,11/17/2012 23:00 +Ansted,,LIGHT,WV,11/17/2012 23:30 +Columbus,,LIGHT,OH,11/17/2012 23:30 +Thornton,,TEARDROP,CO,11/18/2012 0:00 +Carlsbad,,DISK,CA,11/18/2012 0:40 +Pigeon Forge,,OTHER,TN,11/18/2012 1:40 +Birmingham,,,AL,11/18/2012 6:40 +Katy,,OTHER,TX,11/18/2012 9:56 +Worth,,FIREBALL,IL,11/18/2012 17:00 +Worth,,VARIOUS,IL,11/18/2012 17:00 +Russell Springs,,DISK,KY,11/18/2012 17:45 +Olivehurst,,VARIOUS,CA,11/18/2012 18:00 +Santa Clara,GREEN BLUE,LIGHT,UT,11/18/2012 18:00 +Stroudsburg,,VARIOUS,PA,11/18/2012 18:12 +Rockton,,LIGHT,IL,11/18/2012 18:15 +Russell Springs,ORANGE,FIREBALL,KY,11/18/2012 19:15 +Russell Springs,,FIREBALL,KY,11/18/2012 19:20 +Terre Haute,,FORMATION,IN,11/18/2012 19:52 +Austintown,,TRIANGLE,OH,11/18/2012 20:00 +Huron,,LIGHT,OH,11/18/2012 20:00 +College Place,ORANGE,TRIANGLE,WA,11/18/2012 20:15 +Roswell,ORANGE,FIREBALL,GA,11/18/2012 21:05 +Austintown,ORANGE,CIRCLE,OH,11/18/2012 21:15 +Bellingham,,RECTANGLE,WA,11/18/2012 21:30 +North Andover,,CHEVRON,MA,11/18/2012 21:50 +Ann Arbor,,FIREBALL,MI,11/18/2012 22:00 +Butte,RED,VARIOUS,MT,11/19/2012 0:00 +Florence,,CIGAR,KY,11/19/2012 0:00 +New York City,,TRIANGLE,NY,11/19/2012 0:35 +Laie,ORANGE,LIGHT,HI,11/19/2012 1:30 +Draper,BLUE,RECTANGLE,UT,11/19/2012 3:20 +Kearney,BLUE,CIRCLE,NE,11/19/2012 4:00 +Englewood,,CIGAR,FL,11/19/2012 5:00 +Saugerties,,DISK,NY,11/19/2012 11:50 +Cleveland,,CIRCLE,OH,11/19/2012 12:13 +Asheville,,,NC,11/19/2012 13:00 +Allentown,,TEARDROP,PA,11/19/2012 15:00 +Houlton,,TEARDROP,ME,11/19/2012 15:00 +Tryon,,LIGHT,NC,11/19/2012 17:50 +Providence,,TEARDROP,RI,11/19/2012 18:00 +Louisville,RED,TRIANGLE,KY,11/19/2012 18:35 +Chapmanville,,FIREBALL,WV,11/19/2012 19:00 +Irondale,,LIGHT,AL,11/19/2012 19:00 +Jacksonville,ORANGE,SPHERE,IL,11/19/2012 19:00 +Cordell,RED,LIGHT,OK,11/19/2012 20:00 +New York City,RED,SPHERE,NY,11/19/2012 21:00 +Lancaster,ORANGE,FIREBALL,NY,11/19/2012 22:31 +Aquilla,ORANGE,TRIANGLE,TX,11/19/2012 23:15 +Alamo,,FLASH,TN,11/20/2012 0:00 +Warren,ORANGE,VARIOUS,MI,11/20/2012 12:15 +Murrells Inlet,RED,OVAL,SC,11/20/2012 16:40 +Keedysville,,CIRCLE,MD,11/20/2012 17:00 +Southington,,SPHERE,CT,11/20/2012 18:15 +Freeburg,ORANGE,CONE,IL,11/20/2012 18:45 +Lima,,CIRCLE,OH,11/20/2012 19:00 +Escondido,ORANGE,OTHER,CA,11/20/2012 19:05 +Tucson,ORANGE,,AZ,11/21/2012 0:30 +Gainesville,RED,CIRCLE,TX,11/21/2012 1:14 +Boise,RED,OVAL,ID,11/21/2012 1:30 +Springfield,GREEN,,MA,11/21/2012 11:18 +Appleton,ORANGE YELLOW,FIREBALL,WI,11/21/2012 17:00 +Allentown,,CIRCLE,PA,11/21/2012 17:45 +Crawley,,LIGHT,WV,11/21/2012 18:00 +Needville,,FIREBALL,TX,11/21/2012 19:30 +St. Francis,,TRIANGLE,WI,11/21/2012 20:00 +Elyria,,TRIANGLE,OH,11/21/2012 21:05 +North Palm Beach,ORANGE,FIREBALL,FL,11/21/2012 21:15 +Jasper,,FIREBALL,AL,11/21/2012 21:30 +Apple Valley,,OVAL,CA,11/21/2012 22:00 +Newport,RED,CIRCLE,RI,11/21/2012 22:00 +Lake Jackson,BLUE,CIRCLE,TX,11/21/2012 23:00 +Seven Valleys,ORANGE,TRIANGLE,PA,11/21/2012 23:00 +South Bend,,VARIOUS,IN,11/21/2012 23:00 +Sheldon Springs,GREEN,TRIANGLE,VT,11/22/2012 0:00 +Carmel,,CHEVRON,IN,11/22/2012 0:10 +Bayonne,ORANGE,OTHER,NJ,11/22/2012 0:50 +Alice,,DISK,TX,11/22/2012 1:00 +Laporte,,LIGHT,IN,11/22/2012 1:00 +Sts Albans,RED,FIREBALL,ME,11/22/2012 1:00 +Coventry,,CIRCLE,CT,11/22/2012 1:50 +South Nayack,BLUE,LIGHT,NY,11/22/2012 2:00 +Sacramento,,TRIANGLE,CA,11/22/2012 3:30 +Cleveland,,FIREBALL,OH,11/22/2012 6:00 +Entiat,,DIAMOND,WA,11/22/2012 6:30 +Vacaville,ORANGE,CIRCLE,CA,11/22/2012 7:00 +Palm Springs,RED,VARIOUS,CA,11/22/2012 7:15 +Allen Park,,FIREBALL,MI,11/22/2012 16:30 +Mount Kisco,,LIGHT,NY,11/22/2012 16:45 +Medford,ORANGE,DIAMOND,OR,11/22/2012 18:00 +Avon Lake,ORANGE,FIREBALL,OH,11/22/2012 18:10 +Long Branch,,LIGHT,NJ,11/22/2012 18:10 +Ashland,RED YELLOW,CIRCLE,OR,11/22/2012 18:30 +Hopkinton,,FIREBALL,MA,11/22/2012 18:36 +Fairbanks,ORANGE,LIGHT,AK,11/22/2012 19:05 +East Goshen,,FORMATION,PA,11/22/2012 19:15 +Sandy,RED ORANGE,OTHER,UT,11/22/2012 19:15 +Sunderland,ORANGE,TRIANGLE,VT,11/22/2012 19:15 +Sunderland,ORANGE,TRIANGLE,VT,11/22/2012 19:15 +Albuquerque,,FIREBALL,NM,11/22/2012 19:30 +Holbrook,ORANGE,LIGHT,NY,11/22/2012 19:30 +Mt. Pleasant,RED,TRIANGLE,SC,11/22/2012 19:30 +New Milford,RED,CIRCLE,CT,11/22/2012 20:00 +Spencer,RED,LIGHT,NY,11/22/2012 20:00 +Lakeland,ORANGE,FIREBALL,FL,11/22/2012 20:15 +Burnsville,,CIRCLE,MN,11/22/2012 20:30 +Las Vegas,,FIREBALL,NV,11/22/2012 20:30 +Hurst,ORANGE,CIRCLE,TX,11/22/2012 21:00 +Leesburg,ORANGE,FORMATION,VA,11/22/2012 21:00 +Widefield,RED,LIGHT,CO,11/22/2012 21:00 +Winter Haven,,FIREBALL,FL,11/22/2012 21:00 +Virginia Beach,ORANGE,SPHERE,VA,11/22/2012 21:02 +Newton,,DISK,NC,11/22/2012 22:40 +Manchester,ORANGE,LIGHT,VT,11/22/2012 23:00 +Manchester,YELLOW GREEN,FIREBALL,MA,11/22/2012 23:30 +Northport,,LIGHT,NY,11/22/2012 23:30 +Livonia,,DISK,MI,11/23/2012 4:00 +Warwick,,FORMATION,NY,11/23/2012 10:00 +North Hollywood,,FORMATION,CA,11/23/2012 11:00 +Windsor,,,CT,11/23/2012 15:30 +Fort Towson,RED ORANGE,CYLINDER,OK,11/23/2012 17:00 +Hancock,,FIREBALL,WI,11/23/2012 18:00 +Brockton,,SPHERE,MA,11/23/2012 18:10 +Aiea,,LIGHT,HI,11/23/2012 19:00 +Monroe,ORANGE,FIREBALL,CT,11/23/2012 19:00 +Garden City,,FIREBALL,SC,11/23/2012 19:20 +Vallejo,RED ORANGE,SPHERE,CA,11/23/2012 20:15 +Honolulu,GREEN,CIRCLE,HI,11/23/2012 21:00 +Sacramento,,OTHER,CA,11/23/2012 21:25 +Holly,,LIGHT,MI,11/23/2012 22:40 +Cape Girardeau,RED ORANGE GREEN,OVAL,MO,11/23/2012 23:15 +Manchester,ORANGE,LIGHT,VT,11/23/2012 23:30 +Clinton,,CROSS,MS,11/24/2012 0:00 +Bellingham,,CIRCLE,WA,11/24/2012 1:30 +Felton,,OVAL,CA,11/24/2012 2:50 +Anniston,,LIGHT,AL,11/24/2012 4:00 +Moncks Corner,,FORMATION,SC,11/24/2012 7:24 +Miami,,CIRCLE,FL,11/24/2012 16:00 +Miami,YELLOW,FIREBALL,FL,11/24/2012 19:00 +Salt Lake City,ORANGE,LIGHT,UT,11/24/2012 19:30 +Fairfax Station,,CIRCLE,VA,11/24/2012 20:00 +Montgomery,,CIRCLE,AL,11/24/2012 20:25 +Glendale,,,MO,11/24/2012 21:00 +Houston,,LIGHT,TX,11/24/2012 21:00 +Key West,ORANGE,LIGHT,FL,11/24/2012 21:00 +Satellite Beach,,FIREBALL,FL,11/24/2012 21:00 +Kirkwood,,OVAL,MO,11/24/2012 21:15 +Galveston,,OVAL,TX,11/24/2012 21:30 +Huntingdon Valley,RED ORANGE,TRIANGLE,PA,11/24/2012 21:30 +Waveland,RED,LIGHT,MS,11/24/2012 21:30 +Bolton,,LIGHT,CT,11/24/2012 21:45 +Sandy,BLUE,,UT,11/24/2012 21:45 +Panama City Beach,RED,SPHERE,FL,11/24/2012 22:00 +Tampa,,CIRCLE,FL,11/24/2012 22:30 +Pine Mountain,,DISK,GA,11/24/2012 22:35 +North Las Vegas,,,NV,11/25/2012 1:00 +Las Vegas,GREEN,,NV,11/25/2012 1:30 +Columbia,,LIGHT,TN,11/25/2012 4:34 +Chicago,YELLOW,VARIOUS,IL,11/25/2012 5:05 +Raleigh,,FORMATION,NC,11/25/2012 7:25 +Portland,,LIGHT,OR,11/25/2012 16:50 +Savannah,,CIRCLE,GA,11/25/2012 18:00 +Columbia,,OTHER,SC,11/25/2012 18:35 +Sarasota,,LIGHT,FL,11/25/2012 19:00 +San Ramon,,FORMATION,CA,11/25/2012 19:38 +Anchorage,,LIGHT,AK,11/25/2012 19:50 +Pinellas Park,,DISK,FL,11/25/2012 19:50 +Manahawkin,,LIGHT,NJ,11/25/2012 20:07 +Columbia,,LIGHT,TN,11/25/2012 21:00 +Vineland,RED,LIGHT,NJ,11/25/2012 21:00 +Shrewsbury,,CIRCLE,MA,11/25/2012 21:50 +Dugspur,,DISK,VA,11/26/2012 13:01 +Port Huron,,CIGAR,MI,11/26/2012 16:00 +Acton,BLUE,FORMATION,MA,11/26/2012 18:14 +Auburn,RED,VARIOUS,WA,11/26/2012 18:43 +Harwich,,LIGHT,MA,11/26/2012 20:00 +Bakersfield,,LIGHT,CA,11/26/2012 21:00 +Chantilly,,OTHER,VA,11/26/2012 23:30 +Mt. Pocono,,RECTANGLE,PA,11/27/2012 10:00 +Springfield,,LIGHT,IL,11/27/2012 16:00 +Washington Court House,YELLOW,SPHERE,OH,11/27/2012 18:15 +Auburn,RED,TRIANGLE,WA,11/27/2012 18:50 +Wakonda,ORANGE,CIRCLE,SD,11/27/2012 18:50 +Thayer,,,MO,11/27/2012 19:11 +Monroe,BLUE,TRIANGLE,NC,11/27/2012 19:15 +Phoenix,ORANGE,CIRCLE,AZ,11/27/2012 20:00 +Port Jervis,RED,TRIANGLE,NY,11/27/2012 20:10 +Sedona,ORANGE,CIRCLE,AZ,11/27/2012 20:15 +Clearwater,,,FL,11/27/2012 22:15 +NASA TV,,OVAL,NH,11/28/2012 4:15 +Drummonds,,TRIANGLE,TN,11/28/2012 9:50 +Saco,,LIGHT,ME,11/28/2012 10:00 +Greenville,ORANGE,,OH,11/28/2012 13:11 +Roanoke,,,VA,11/28/2012 16:45 +Alexandria,RED,OVAL,VA,11/28/2012 17:00 +Heber Springs,,CIRCLE,AR,11/28/2012 17:00 +Houston,,FIREBALL,TX,11/28/2012 17:35 +North Smithfield,GREEN BLUE,OTHER,RI,11/28/2012 17:45 +Haines City,ORANGE,LIGHT,FL,11/28/2012 18:25 +Mitchell,,CIRCLE,SD,11/28/2012 18:41 +Knoxville,,LIGHT,TN,11/28/2012 20:00 +Arnold,,DIAMOND,MO,11/28/2012 20:15 +Milford,ORANGE,LIGHT,KS,11/28/2012 20:30 +Haverstraw,,LIGHT,NY,11/28/2012 21:36 +Studio City,YELLOW,FIREBALL,CA,11/28/2012 22:00 +Pawleys Island,GREEN,LIGHT,SC,11/28/2012 22:15 +St. Louis,RED ORANGE,LIGHT,MO,11/28/2012 22:25 +Pleasantville,,TRIANGLE,NJ,11/28/2012 22:30 +Loveland,,CIRCLE,OH,11/28/2012 22:51 +Fall Creek,,CIRCLE,OR,11/28/2012 23:35 +Freeport,,FIREBALL,ME,11/28/2012 23:45 +Revere Beach,GREEN,FORMATION,MA,11/28/2012 23:59 +Catawissa,BLUE,CIRCLE,PA,11/29/2012 0:00 +Omaha,,,NE,11/29/2012 3:00 +West Palm Beach,,CIRCLE,FL,11/29/2012 14:30 +Baltimore,,DISK,MD,11/29/2012 15:00 +San Mateo,,LIGHT,CA,11/29/2012 15:00 +Coventry,,FIREBALL,RI,11/29/2012 16:25 +Dover,,,NH,11/29/2012 17:15 +Haverhill,,OTHER,MA,11/29/2012 17:15 +Oakley,,SPHERE,CA,11/29/2012 18:30 +Oakley,,SPHERE,CA,11/29/2012 18:35 +Copperas Cove,BLUE,VARIOUS,TX,11/29/2012 20:00 +Richmond,BLUE,CHEVRON,RI,11/29/2012 20:00 +West Haven,,FIREBALL,CT,11/29/2012 20:10 +Charlottesville,RED,LIGHT,VA,11/29/2012 20:30 +Safford,,LIGHT,AZ,11/29/2012 20:30 +Geigertown,,LIGHT,PA,11/29/2012 20:45 +Overland Park,ORANGE,SPHERE,KS,11/29/2012 20:50 +Murrysville,,,PA,11/29/2012 21:30 +Mercer Island,,EGG,WA,11/29/2012 23:00 +Yankton,,LIGHT,SD,11/30/2012 17:00 +Kill Devil Hills,,TRIANGLE,NC,11/30/2012 18:00 +Wilmington,,,OH,11/30/2012 18:00 +Kelley,,DIAMOND,IA,11/30/2012 18:15 +Palatine,RED,CIRCLE,IL,11/30/2012 20:20 +Sandwich,,FIREBALL,MA,11/30/2012 20:47 +Calhoun,,TRIANGLE,GA,11/30/2012 21:00 +Union City,ORANGE,LIGHT,CA,11/30/2012 21:00 +Menasha,,VARIOUS,WI,11/30/2012 21:30 +Schenectady,RED,OTHER,NY,11/30/2012 22:20 +Harker Heights,BLUE,LIGHT,TX,11/30/2012 23:45 +Seattle,,OVAL,WA,12/1/2012 11:35 +Key West,,DISK,FL,12/1/2012 13:00 +Bridgewater,,RECTANGLE,MA,12/1/2012 18:00 +Dayton,,FORMATION,OH,12/1/2012 18:50 +Dayton,ORANGE,FORMATION,OH,12/1/2012 18:55 +Dover,,TRIANGLE,DE,12/1/2012 19:00 +Memphis,,FIREBALL,TN,12/1/2012 19:45 +Norfolk,RED,FIREBALL,VA,12/1/2012 19:55 +Melbourne,,FIREBALL,FL,12/1/2012 20:35 +Seffner,,LIGHT,FL,12/1/2012 22:00 +Batesville,ORANGE,OVAL,IN,12/2/2012 2:15 +Portland,,FORMATION,OR,12/2/2012 6:15 +Las Vegas,,TRIANGLE,NV,12/2/2012 16:30 +Gordo,,FIREBALL,AL,12/2/2012 18:00 +Miami,,LIGHT,FL,12/3/2012 2:30 +Thousand Oaks,,FLASH,CA,12/3/2012 3:24 +Birmingham,,SPHERE,AL,12/3/2012 5:25 +Cypress,,OTHER,TX,12/3/2012 14:20 +Pensacola,,LIGHT,FL,12/3/2012 16:40 +Binghamton,RED,LIGHT,NY,12/3/2012 17:00 +Little Rock,,CIGAR,AR,12/3/2012 17:00 +Wrentham,,TEARDROP,MA,12/3/2012 17:01 +Fredericksburg,,VARIOUS,VA,12/3/2012 17:30 +Kearns,ORANGE,LIGHT,UT,12/3/2012 19:15 +Goshen,,FIREBALL,NY,12/3/2012 20:00 +Scituate,RED BLUE,LIGHT,MA,12/3/2012 21:45 +Englewood,RED GREEN BLUE,,CO,12/3/2012 23:00 +Newark,,,DE,12/4/2012 1:00 +Albuquerque,,DIAMOND,NM,12/4/2012 9:30 +Westboro,RED BLUE,DISK,MO,12/4/2012 11:00 +Watertown,,OTHER,SD,12/4/2012 14:00 +Willowbrook,,LIGHT,IL,12/4/2012 16:00 +Hodgkins,,LIGHT,IL,12/4/2012 16:22 +Corpus Christi,ORANGE,LIGHT,TX,12/4/2012 18:45 +Leavenworth,,FIREBALL,KS,12/4/2012 19:00 +Nunn,,TRIANGLE,CO,12/4/2012 19:00 +Plattekill,,CIRCLE,NY,12/4/2012 19:00 +St. Paul,,LIGHT,MN,12/4/2012 19:00 +Adams County,YELLOW,FIREBALL,WI,12/4/2012 19:10 +Lake Villa,RED YELLOW,TRIANGLE,IL,12/4/2012 19:45 +Muncie,BLUE,CIRCLE,IN,12/4/2012 20:00 +Racine,,TRIANGLE,WI,12/4/2012 21:00 +Orange,ORANGE,DIAMOND,NJ,12/4/2012 21:20 +Westboro,ORANGE BLUE,SPHERE,MO,12/4/2012 21:30 +Huntington Beach,,OVAL,CA,12/4/2012 21:37 +Dennard,RED GREEN,CIRCLE,AR,12/4/2012 22:00 +Fort Wayne,,DIAMOND,IN,12/4/2012 22:00 +Morrison,,,IL,12/4/2012 22:00 +Jeffersonville,,SPHERE,IN,12/4/2012 23:50 +Marion,,LIGHT,NC,12/5/2012 1:00 +Beltsville,,FORMATION,MD,12/5/2012 1:12 +Reston,,VARIOUS,VA,12/5/2012 1:45 +Salina,,,KS,12/5/2012 6:00 +Renton,,FIREBALL,WA,12/5/2012 6:15 +Spanish Lake,,OTHER,MO,12/5/2012 6:40 +Broomfield,,OTHER,CO,12/5/2012 7:34 +Buffalo,,FLASH,NY,12/5/2012 10:37 +Newark,,LIGHT,DE,12/5/2012 12:30 +Westerly,YELLOW GREEN,FIREBALL,RI,12/5/2012 17:00 +Wilmington,,LIGHT,NC,12/5/2012 18:05 +Blanchester,ORANGE,FIREBALL,OH,12/5/2012 18:40 +Eastgate,,RECTANGLE,OH,12/5/2012 18:40 +Martinsville,,CIRCLE,OH,12/5/2012 18:45 +Clarksville,,,OH,12/5/2012 18:46 +Trumbull,,LIGHT,CT,12/5/2012 19:00 +Myrtle Beach,YELLOW,LIGHT,SC,12/5/2012 20:30 +Montgomery,RED GREEN,,TX,12/5/2012 21:00 +King of Prussia,,OVAL,PA,12/5/2012 21:30 +Atco,,LIGHT,NJ,12/5/2012 22:15 +Belleville,ORANGE,FORMATION,IL,12/5/2012 22:50 +Buford,,,GA,12/6/2012 0:30 +Philadelphia,,CHEVRON,PA,12/6/2012 2:00 +Pico Rivera,,TRIANGLE,CA,12/6/2012 13:30 +Henderson,RED,SPHERE,NV,12/6/2012 17:30 +New Durham,,DISK,NH,12/6/2012 18:30 +Canajoharie,,CHEVRON,NY,12/6/2012 18:45 +Ocean City,,OTHER,NJ,12/6/2012 18:45 +Denton,,LIGHT,TX,12/6/2012 18:47 +Birch Tree,,FIREBALL,MO,12/6/2012 19:00 +Canton,,FIREBALL,IL,12/6/2012 19:00 +Noblesville,BLUE,TRIANGLE,IN,12/6/2012 19:00 +Quail Valley,RED,TRIANGLE,CA,12/6/2012 19:00 +Spring Valley,,LIGHT,AZ,12/6/2012 19:00 +Independence,,LIGHT,OR,12/6/2012 19:30 +Sarasota,,LIGHT,FL,12/6/2012 20:10 +Tumwater,,OVAL,WA,12/6/2012 20:18 +Rancho Viejo,,TEARDROP,TX,12/6/2012 20:45 +Newark,,TRIANGLE,DE,12/6/2012 21:45 +Cocoa,,,FL,12/6/2012 22:10 +Worcester,,RECTANGLE,MA,12/6/2012 22:40 +Renton,ORANGE,FIREBALL,WA,12/6/2012 23:40 +Colorado Springs,YELLOW,FIREBALL,CO,12/7/2012 0:45 +Burbank,BLUE,LIGHT,CA,12/7/2012 1:26 +Rock Springs,RED,DISK,WY,12/7/2012 6:30 +Houston,GREEN,,TX,12/7/2012 6:35 +Max Meadows,,LIGHT,VA,12/7/2012 8:00 +Bend,RED,FORMATION,OR,12/7/2012 12:30 +Carson City,,,NV,12/7/2012 18:23 +Eldridge,ORANGE,LIGHT,IA,12/7/2012 18:40 +Alvarado,,CIRCLE,TX,12/7/2012 19:00 +Longmont,,FIREBALL,CO,12/7/2012 19:28 +Longmont,,LIGHT,CO,12/7/2012 19:30 +Ingleside,,FIREBALL,TX,12/7/2012 20:00 +Longmont,,FIREBALL,CO,12/7/2012 20:00 +Grants,,OTHER,NM,12/7/2012 20:15 +Spokane Valley,,,WA,12/7/2012 20:40 +Escondido,,RECTANGLE,CA,12/7/2012 21:15 +Phillips Ranch,BLUE,FIREBALL,CA,12/7/2012 21:18 +Kingston,,LIGHT,NY,12/7/2012 21:25 +Wellington,,OVAL,FL,12/7/2012 21:30 +Blum,,TRIANGLE,TX,12/7/2012 22:00 +Connersville,,CYLINDER,IN,12/7/2012 23:00 +New Durham,,TRIANGLE,NH,12/8/2012 5:00 +Chetek,,LIGHT,WI,12/8/2012 6:00 +Des Moines,,LIGHT,IA,12/8/2012 6:15 +Blackfoot,,CIRCLE,ID,12/8/2012 17:45 +Blackfoot,ORANGE,LIGHT,ID,12/8/2012 17:45 +Honolulu,,CONE,HI,12/8/2012 18:45 +Spindale,RED,CIRCLE,NC,12/8/2012 19:15 +Myrtle Beach,RED,LIGHT,SC,12/8/2012 19:30 +Odessa,,FIREBALL,TX,12/8/2012 20:30 +Spokane Valley,,FIREBALL,WA,12/8/2012 20:45 +Spokane Valley,,VARIOUS,WA,12/8/2012 20:45 +Spokane Valley,RED,VARIOUS,WA,12/8/2012 20:45 +Weeki Wachee,ORANGE,FIREBALL,FL,12/8/2012 21:30 +Oviedo,,LIGHT,FL,12/8/2012 21:40 +Raleigh,RED,LIGHT,NC,12/8/2012 22:00 +Medical Lake,,LIGHT,WA,12/8/2012 23:45 +Murray,GREEN,LIGHT,UT,12/9/2012 2:45 +Gloucester,,OVAL,MA,12/9/2012 6:30 +Rockport,,OTHER,TX,12/9/2012 9:00 +Gardendale,,LIGHT,AL,12/9/2012 9:55 +Lowell,,TRIANGLE,MA,12/9/2012 13:00 +Williston,,CIRCLE,VT,12/9/2012 16:00 +Atlanta,,LIGHT,GA,12/9/2012 19:05 +Waterbury,,TRIANGLE,CT,12/9/2012 19:18 +Davie,YELLOW,FIREBALL,FL,12/9/2012 20:00 +Knoxville,,DIAMOND,TN,12/9/2012 22:55 +San Francisco,,FIREBALL,CA,12/9/2012 22:59 +Clearlake,,,WA,12/10/2012 3:45 +Omaha,ORANGE,SPHERE,NE,12/10/2012 5:30 +Salisbury,,TRIANGLE,VT,12/10/2012 17:00 +Eagle Rock,,DISK,CA,12/10/2012 18:30 +Pasadena,,,CA,12/10/2012 18:30 +Des Moines,,CIRCLE,IA,12/10/2012 18:35 +Sunset Beach,,LIGHT,NC,12/10/2012 19:00 +Longmont,RED ORANGE,FIREBALL,CO,12/10/2012 19:15 +Buffalo Valley,ORANGE,FIREBALL,OK,12/10/2012 19:46 +Fort Myers,,FIREBALL,FL,12/10/2012 20:00 +Loris,,LIGHT,SC,12/10/2012 20:00 +Spring Valley,,LIGHT,AZ,12/10/2012 20:00 +Little River,,LIGHT,SC,12/10/2012 20:05 +Apple Valley,,,CA,12/10/2012 21:00 +Grand Junction,,,CO,12/10/2012 21:00 +Talihina,,LIGHT,OK,12/10/2012 22:00 +Miami,,CIGAR,FL,12/10/2012 22:45 +Brick Township,,DISK,NJ,12/11/2012 1:57 +Berlin,,LIGHT,NH,12/11/2012 2:00 +Spokane Valley,,EGG,WA,12/11/2012 4:30 +Lisbon,,SPHERE,OH,12/11/2012 5:00 +Marshall,,FLASH,NC,12/11/2012 6:20 +Arroyo Grande,,TRIANGLE,CA,12/11/2012 10:30 +Salt Lake City,,FLASH,UT,12/11/2012 10:30 +Sacramento,,VARIOUS,CA,12/11/2012 15:00 +Natick,,CIRCLE,MA,12/11/2012 15:25 +Kaylor,,LIGHT,SD,12/11/2012 18:00 +Pittsburg,,,CA,12/11/2012 18:15 +Nashville,,LIGHT,TN,12/11/2012 21:00 +Sedona,RED GREEN,TEARDROP,AZ,12/11/2012 21:28 +Carterville,,FLASH,MO,12/11/2012 22:00 +Fords,,DIAMOND,NJ,12/11/2012 22:00 +Park,RED,TRIANGLE,KS,12/11/2012 22:00 +Sunshine,,,AR,12/11/2012 22:30 +Springfield,,CIGAR,MO,12/12/2012 0:00 +Memphis,RED GREEN BLUE,CIRCLE,TN,12/12/2012 1:27 +Wailuku,,FIREBALL,HI,12/12/2012 3:30 +St. Peters,,OVAL,MO,12/12/2012 7:00 +Charleroi,,,PA,12/12/2012 7:30 +Lindenhurst,,CIGAR,IL,12/12/2012 10:00 +Kankakee,YELLOW,CIRCLE,IL,12/12/2012 16:00 +Elk Grove,BLUE,,CA,12/12/2012 16:30 +Jefferson,,OTHER,GA,12/12/2012 16:30 +Peacham,YELLOW,LIGHT,VT,12/12/2012 17:00 +Kelso,,LIGHT,WA,12/12/2012 17:30 +Pittsburgh,,VARIOUS,PA,12/12/2012 17:45 +Talihina,ORANGE,FIREBALL,OK,12/12/2012 18:41 +Gallipolis,,FIREBALL,OH,12/12/2012 18:45 +Nashua,,SPHERE,NH,12/12/2012 19:20 +Laurelville,,,OH,12/12/2012 20:15 +Elkhorn,,OTHER,WI,12/12/2012 21:00 +North Conway,,CYLINDER,NH,12/12/2012 21:00 +Castro Valley,RED ORANGE,LIGHT,CA,12/12/2012 21:20 +Bay Village,RED ORANGE,FIREBALL,OH,12/12/2012 21:35 +Westford,,FIREBALL,MA,12/12/2012 22:30 +Hopkinton,,CIRCLE,NH,12/12/2012 22:43 +Graycourt,,TRIANGLE,SC,12/12/2012 23:00 +New London,RED,CHEVRON,NH,12/12/2012 23:00 +Warner,RED,,NH,12/12/2012 23:00 +New Smyrna Beach,,FIREBALL,FL,12/12/2012 23:24 +Abington,,TRIANGLE,PA,12/13/2012 0:00 +Garland,GREEN BLUE,CIRCLE,TX,12/13/2012 0:00 +Markleville,,LIGHT,IN,12/13/2012 0:00 +Louisville,,FORMATION,KY,12/13/2012 1:15 +Litchfield,,LIGHT,ME,12/13/2012 6:30 +Towson,,SPHERE,MD,12/13/2012 6:30 +no data,,LIGHT,RI,12/13/2012 8:18 +Richmond,,LIGHT,KY,12/13/2012 12:18 +Carlton,,TRIANGLE,OR,12/13/2012 15:50 +Rye,YELLOW,OVAL,TX,12/13/2012 16:00 +Ocean Springs,RED,EGG,MS,12/13/2012 16:45 +North Providence,,,RI,12/13/2012 17:00 +Seminole,,OTHER,FL,12/13/2012 17:27 +Skokie,,LIGHT,IL,12/13/2012 17:38 +Port Washington,,CIRCLE,WI,12/13/2012 18:30 +Turlock,,LIGHT,CA,12/13/2012 18:30 +Fort Smith,YELLOW,CIRCLE,AR,12/13/2012 19:00 +Pueblo West,,CIRCLE,CO,12/13/2012 19:00 +Homewood,,LIGHT,AL,12/13/2012 19:15 +Hernando,,SPHERE,MS,12/13/2012 19:35 +Tomah,GREEN,SPHERE,WI,12/13/2012 19:55 +Phoenix,,LIGHT,AZ,12/13/2012 20:00 +Scappoose,,CIRCLE,OR,12/13/2012 20:00 +Newton,RED GREEN,TRIANGLE,MA,12/13/2012 20:10 +Macomb,,TRIANGLE,IL,12/13/2012 20:45 +Macomb,ORANGE,TRIANGLE,IL,12/13/2012 20:45 +Great Falls,ORANGE,FIREBALL,MT,12/13/2012 21:15 +Norristown,,TRIANGLE,PA,12/13/2012 22:00 +Wauconda,BLUE,DISK,IL,12/13/2012 22:00 +Burgaw,,TRIANGLE,NC,12/13/2012 23:00 +Sylvania,,DISK,OH,12/13/2012 23:55 +North Highlands,ORANGE,TRIANGLE,CA,12/14/2012 0:18 +Fayetteville,,DISK,NC,12/14/2012 1:00 +Springfield,RED,LIGHT,MO,12/14/2012 1:00 +East Bridgewater,,,MA,12/14/2012 2:00 +St. Louis,,DIAMOND,MO,12/14/2012 2:35 +New Orleans,,FLASH,LA,12/14/2012 3:58 +Pasadena,,SPHERE,CA,12/14/2012 4:00 +New York City,,VARIOUS,NY,12/14/2012 5:00 +Cincinnati,,LIGHT,OH,12/14/2012 6:00 +Wasilla,RED ORANGE,FIREBALL,AK,12/14/2012 8:20 +Memphis,,CIRCLE,TN,12/14/2012 20:00 +Libertyville,ORANGE,FIREBALL,IL,12/14/2012 21:50 +Las Vegas,RED,SPHERE,NV,12/14/2012 22:30 +Potomac,,TRIANGLE,MD,12/14/2012 22:45 +Morgantown,,SPHERE,WV,12/14/2012 23:17 +Alexandria,,LIGHT,VA,12/14/2012 23:29 +Forked River,,DIAMOND,NJ,12/15/2012 0:00 +Marietta,ORANGE,SPHERE,GA,12/15/2012 0:00 +Rapid City,,OTHER,SD,12/15/2012 0:00 +Havelock,,CIRCLE,NC,12/15/2012 1:00 +Aurora,,CYLINDER,CO,12/15/2012 1:10 +Lebanon,,,PA,12/15/2012 6:55 +Port Saint Lucie,ORANGE,LIGHT,FL,12/15/2012 10:30 +Bonita,RED,TRIANGLE,CA,12/15/2012 10:34 +Granby,,LIGHT,CT,12/15/2012 17:00 +Lewiston,,LIGHT,ME,12/15/2012 17:10 +Reading,,FIREBALL,PA,12/15/2012 17:54 +Portland,,FIREBALL,OR,12/15/2012 18:00 +East Boston,,LIGHT,MA,12/15/2012 18:30 +Millcreek,,FIREBALL,UT,12/15/2012 20:15 +Dalzell,,RECTANGLE,IL,12/15/2012 21:00 +Russellville,,CHEVRON,AR,12/15/2012 21:00 +Waltham,,SPHERE,MA,12/15/2012 21:00 +Manchester,BLUE,CIRCLE,NH,12/15/2012 21:30 +Abilene,,LIGHT,TX,12/15/2012 21:40 +Freeport,,CIRCLE,NY,12/15/2012 23:00 +Haleiwa,BLUE,OVAL,HI,12/16/2012 1:00 +Long Beach,ORANGE,FIREBALL,WA,12/16/2012 4:00 +Durant,,FORMATION,OK,12/16/2012 16:50 +Venice,,SPHERE,FL,12/16/2012 18:20 +Bakersfield,,LIGHT,CA,12/16/2012 18:25 +Portland,YELLOW,FIREBALL,ME,12/16/2012 20:00 +Taft,ORANGE,SPHERE,CA,12/16/2012 21:12 +Plattsburgh,,TRIANGLE,NY,12/16/2012 21:47 +Ocoee,ORANGE,OVAL,FL,12/16/2012 22:00 +Winter Park,,FIREBALL,FL,12/16/2012 22:30 +Oxnard,RED,CIRCLE,CA,12/17/2012 0:00 +Fritch,,CIRCLE,TX,12/17/2012 2:00 +Polk City,,FIREBALL,FL,12/17/2012 10:05 +Morton Grove,RED ORANGE,OVAL,IL,12/17/2012 16:00 +Delray Beach,ORANGE,FIREBALL,FL,12/17/2012 17:30 +Grand Junction,,FLASH,CO,12/17/2012 21:45 +Lawerenceville,BLUE,OTHER,GA,12/17/2012 22:00 +White Hall,,CIRCLE,AR,12/18/2012 3:00 +Middlesboro,,FIREBALL,KY,12/18/2012 5:30 +Deltona,,FLASH,FL,12/18/2012 6:25 +Tulsa,,OTHER,OK,12/18/2012 9:00 +Arapahoe,,FIREBALL,NC,12/18/2012 10:30 +Atascadero,BLUE,CIRCLE,CA,12/18/2012 13:00 +Attalla,,LIGHT,AL,12/18/2012 15:35 +Playa del Rey,,DISK,CA,12/18/2012 16:25 +Gunter,,LIGHT,TX,12/18/2012 17:00 +Cooper City,,LIGHT,FL,12/18/2012 17:38 +San Carlos,,CIRCLE,CA,12/18/2012 17:53 +Melbourne,,FIREBALL,FL,12/18/2012 18:45 +Bolivar,,TRIANGLE,MO,12/18/2012 19:15 +Des Moines,,LIGHT,IA,12/18/2012 19:30 +Islip,ORANGE,LIGHT,NY,12/18/2012 23:45 +Tuolumne,,LIGHT,CA,12/19/2012 2:00 +Somerset,,CIRCLE,MA,12/19/2012 4:00 +Honokowaii,GREEN,CIRCLE,HI,12/19/2012 5:00 +Homer,RED ORANGE,FIREBALL,AK,12/19/2012 19:00 +Pelham,ORANGE,OTHER,NH,12/19/2012 19:20 +Pontiac,ORANGE,OTHER,MI,12/19/2012 19:35 +Aurora,ORANGE,CIRCLE,NC,12/19/2012 19:48 +Christiansburg,,RECTANGLE,VA,12/19/2012 20:00 +Nicholson,,CIRCLE,GA,12/19/2012 21:30 +Miami,RED,CIRCLE,FL,12/19/2012 21:45 +Natick,,TRIANGLE,MA,12/19/2012 23:00 +Omaha,,SPHERE,NE,12/19/2012 23:00 +Southampton,,SPHERE,PA,12/19/2012 23:03 +Conneaut,,,OH,12/20/2012 1:00 +Flowery Branch,,FLASH,GA,12/20/2012 2:30 +Cedar Rapids,,,IA,12/20/2012 3:00 +Cedar Rapids,,LIGHT,IA,12/20/2012 3:15 +Cedar Rapids,BLUE,,IA,12/20/2012 3:45 +LaGrange,,TRIANGLE,OH,12/20/2012 5:30 +Tulsa,,LIGHT,OK,12/20/2012 5:45 +Legrand,GREEN,FLASH,IA,12/20/2012 6:45 +Athens,ORANGE,LIGHT,OH,12/20/2012 7:00 +Great Mills,,OVAL,MD,12/20/2012 11:19 +Safford,,OTHER,AZ,12/20/2012 13:00 +Lisbon Falls,,OVAL,ME,12/20/2012 15:30 +Lisbon Falls,,OVAL,ME,12/20/2012 15:30 +Tulsa,,OTHER,OK,12/20/2012 18:00 +Springfield,,LIGHT,MA,12/20/2012 18:31 +Columbia,BLUE,LIGHT,SC,12/20/2012 19:30 +Bremerton,ORANGE,DIAMOND,WA,12/20/2012 20:00 +Tumacacori,,LIGHT,AZ,12/20/2012 20:00 +Annapolis,,LIGHT,MD,12/20/2012 21:00 +Luther,YELLOW,SPHERE,OK,12/20/2012 21:00 +Greenville,,TRIANGLE,AL,12/20/2012 21:30 +Yelm,BLUE,OVAL,WA,12/20/2012 21:40 +Pompano beach,,FIREBALL,FL,12/20/2012 21:50 +Annapolis,GREEN BLUE,,MD,12/20/2012 22:00 +Clarksburg,,DISK,WV,12/20/2012 22:30 +Pittsburgh,RED,LIGHT,PA,12/20/2012 23:00 +Hollywood Beach,ORANGE,OVAL,FL,12/20/2012 23:20 +Cameron,,DIAMOND,TX,12/20/2012 23:30 +Cameron,,OTHER,TX,12/20/2012 23:30 +Gainesville,,FIREBALL,FL,12/21/2012 0:00 +Syracuse,,,NY,12/21/2012 0:00 +Tulsa,,OTHER,OK,12/21/2012 0:58 +Excelsior Springs,,SPHERE,MO,12/21/2012 1:00 +Webster,,VARIOUS,TX,12/21/2012 2:00 +Mount Vernon,RED GREEN,TRIANGLE,WA,12/21/2012 2:10 +Cedar Rapids,,,IA,12/21/2012 2:15 +Plant City,,FIREBALL,FL,12/21/2012 6:45 +Batesville,,LIGHT,MS,12/21/2012 7:01 +Woodbury,,VARIOUS,MN,12/21/2012 7:45 +Moundville,,SPHERE,AL,12/21/2012 11:00 +Geneva,,TRIANGLE,GA,12/21/2012 13:00 +Los Angeles,,SPHERE,CA,12/21/2012 13:00 +Magnolia,,OTHER,TX,12/21/2012 16:00 +Los Angeles,,TRIANGLE,CA,12/21/2012 17:35 +Milwaukee,,OTHER,WI,12/21/2012 18:00 +Burleson,,LIGHT,TX,12/21/2012 18:30 +Cedar City,,FIREBALL,UT,12/21/2012 19:40 +Sugar Land,ORANGE,FIREBALL,TX,12/21/2012 20:15 +Phoenix,ORANGE,,AZ,12/21/2012 20:20 +Fayetteville,,CROSS,NC,12/21/2012 20:30 +Castle Rock,RED,CIRCLE,WA,12/21/2012 21:10 +Albuquerque,,CYLINDER,NM,12/21/2012 21:30 +Albuquerque,,CYLINDER,NM,12/21/2012 21:30 +Bozeman,RED,FIREBALL,MT,12/21/2012 22:00 +Bozeman,,LIGHT,MT,12/21/2012 22:00 +Eugene,ORANGE,FIREBALL,OR,12/21/2012 22:00 +Eugene,,FIREBALL,OR,12/21/2012 22:05 +Portland,ORANGE,LIGHT,OR,12/21/2012 23:00 +Perry,,LIGHT,MI,12/21/2012 23:23 +Florence,,LIGHT,SD,12/22/2012 2:07 +Dallas,,LIGHT,TX,12/22/2012 6:35 +Camp Mckall,,TRIANGLE,NC,12/22/2012 7:00 +Dayville,,FIREBALL,CT,12/22/2012 8:40 +Effingham,,CIRCLE,IL,12/22/2012 16:30 +Centerville,ORANGE,SPHERE,MN,12/22/2012 17:00 +Kearney,,OVAL,NE,12/22/2012 17:00 +Fredon,RED,,NJ,12/22/2012 17:30 +Phoenix,,FIREBALL,AZ,12/22/2012 18:00 +Tigard,,,OR,12/22/2012 18:00 +no data,,LIGHT,OR,12/22/2012 18:15 +Yucaipa,,CIRCLE,CA,12/22/2012 18:30 +Charlotte,RED,OVAL,MI,12/22/2012 18:55 +Sanbornton,,TRIANGLE,NH,12/22/2012 19:00 +Richmond,,OVAL,VA,12/22/2012 19:30 +Greenville,GREEN,TRIANGLE,TN,12/22/2012 20:00 +Mt. Pleasant,YELLOW,TRIANGLE,MI,12/22/2012 20:15 +Phoenix,ORANGE,LIGHT,AZ,12/22/2012 20:21 +Boca Raton,,FIREBALL,FL,12/22/2012 20:35 +Springfield,ORANGE,LIGHT,MO,12/22/2012 20:35 +Beavercreek,,LIGHT,OH,12/22/2012 21:00 +Pataskala,,SPHERE,OH,12/22/2012 21:45 +Hialeah,,FIREBALL,FL,12/22/2012 22:00 +Rapid City,RED,,SD,12/22/2012 22:10 +Seattle,,OVAL,WA,12/22/2012 22:15 +Ovilla,,LIGHT,TX,12/22/2012 23:30 +Colonial Heights,RED,TRIANGLE,VA,12/23/2012 0:30 +Sacramento,,TRIANGLE,CA,12/23/2012 5:30 +Dublin,,LIGHT,OH,12/23/2012 6:00 +Bolivar,RED YELLOW,LIGHT,MO,12/23/2012 6:10 +Westminster,RED,CIRCLE,MD,12/23/2012 6:10 +Appleton,,FIREBALL,WI,12/23/2012 7:30 +Opp,,LIGHT,AL,12/23/2012 15:00 +Troy,,DISK,NH,12/23/2012 15:45 +Madison,,TRIANGLE,IN,12/23/2012 19:00 +Westminster,RED BLUE,TRIANGLE,MD,12/23/2012 19:00 +Venice,RED,FIREBALL,FL,12/23/2012 20:02 +Brewster,GREEN,FLASH,MA,12/23/2012 20:15 +Bear,ORANGE,FIREBALL,DE,12/23/2012 20:30 +Weehawken,RED,OTHER,NJ,12/23/2012 20:40 +Destin,,FIREBALL,FL,12/23/2012 21:00 +Grovetown,,TRIANGLE,GA,12/23/2012 21:00 +Friday Harbor,RED,LIGHT,WA,12/23/2012 21:30 +Norfolk,,TRIANGLE,VA,12/23/2012 21:50 +Lobelville,GREEN,,TN,12/24/2012 3:00 +Vidor,,,TX,12/24/2012 6:20 +Salem,RED,CIRCLE,OR,12/24/2012 9:13 +Lake Barrington,ORANGE,TRIANGLE,IL,12/24/2012 17:15 +Vero Beach,,SPHERE,FL,12/24/2012 18:15 +Bridgton,RED ORANGE,LIGHT,ME,12/24/2012 18:30 +Deep River,RED,FIREBALL,CT,12/24/2012 18:45 +Fairfield,,TRIANGLE,CT,12/24/2012 19:00 +Greenfield,,LIGHT,MA,12/24/2012 19:00 +Stuart,ORANGE,FIREBALL,FL,12/24/2012 19:00 +Waterbury,,CIRCLE,VT,12/24/2012 19:00 +Gainesville,,LIGHT,FL,12/24/2012 19:30 +Talent,,LIGHT,OR,12/24/2012 19:30 +Sparta,RED,LIGHT,NJ,12/24/2012 20:00 +St. Cloud,,CIRCLE,MN,12/24/2012 20:00 +Oceanside,ORANGE,OTHER,CA,12/24/2012 20:30 +Boise,RED,LIGHT,ID,12/24/2012 21:00 +Sparks,ORANGE,LIGHT,NV,12/24/2012 21:15 +Fairfield,RED,CIRCLE,CA,12/24/2012 21:30 +Pico Rivera,,FIREBALL,CA,12/24/2012 21:30 +Ruskin,,FIREBALL,FL,12/24/2012 22:15 +Santa Rosa,ORANGE,TRIANGLE,CA,12/24/2012 22:15 +Port St. Lucie,,SPHERE,FL,12/24/2012 23:00 +Tampa,,FIREBALL,FL,12/24/2012 23:40 +Tampa,,FIREBALL,FL,12/24/2012 23:40 +Holmes Beach,,CIRCLE,FL,12/25/2012 1:00 +West Palm Beach,,LIGHT,FL,12/25/2012 1:30 +Sanford,ORANGE,LIGHT,FL,12/25/2012 7:25 +Chester Springs,,DISK,PA,12/25/2012 13:30 +Hollywood,,FIREBALL,FL,12/25/2012 13:33 +Fairbanks,RED YELLOW,OVAL,AK,12/25/2012 16:30 +Windsor,ORANGE,FORMATION,VT,12/25/2012 16:30 +Burke,,SPHERE,VA,12/25/2012 17:10 +Burke,ORANGE,SPHERE,VA,12/25/2012 17:10 +Ponte Vedra beach,GREEN,CYLINDER,FL,12/25/2012 18:10 +Delray Beach,ORANGE,FIREBALL,FL,12/25/2012 19:00 +Santa Clarita,YELLOW,FIREBALL,CA,12/25/2012 19:00 +Shafer,ORANGE,LIGHT,MN,12/25/2012 19:10 +Salem,,OVAL,OR,12/25/2012 19:30 +Livonia,,SPHERE,MI,12/25/2012 19:35 +South Bend,ORANGE,,IN,12/25/2012 19:51 +Amherst,ORANGE,LIGHT,NY,12/25/2012 20:05 +Buckhead Ridge,,LIGHT,FL,12/25/2012 20:10 +Bangor,YELLOW,FIREBALL,ME,12/25/2012 20:30 +Harrisburg,,CIRCLE,PA,12/25/2012 20:30 +Somerset,ORANGE,LIGHT,MA,12/25/2012 20:30 +Landover,ORANGE,LIGHT,MD,12/25/2012 20:45 +Pine Bush,RED,FORMATION,NY,12/25/2012 20:45 +Atlantic beach,,SPHERE,FL,12/25/2012 21:00 +King of Prussia,,OVAL,PA,12/25/2012 21:00 +Pine Bush,,CIRCLE,NY,12/25/2012 21:00 +Weeki Wachee,ORANGE,FIREBALL,FL,12/25/2012 21:00 +Woods Cross,,DISK,UT,12/25/2012 21:00 +Howards Grove,RED ORANGE,FIREBALL,WI,12/26/2012 0:30 +New York City,,DISK,NY,12/26/2012 6:00 +Fairbanks,,TRIANGLE,AK,12/26/2012 7:40 +Hiawatha,,OVAL,IA,12/26/2012 8:00 +Williston,,OTHER,VT,12/26/2012 11:20 +The Dalles,,OTHER,OR,12/26/2012 12:00 +Omaha,,,NE,12/26/2012 14:00 +Bartlett,,FIREBALL,IL,12/26/2012 18:00 +Oceano,,RECTANGLE,CA,12/26/2012 20:00 +San Francisco,,TRIANGLE,CA,12/26/2012 20:00 +Murfreesboro,,,TN,12/26/2012 22:14 +Willow Grove,,FLASH,PA,12/27/2012 0:45 +Wilmington,,OVAL,DE,12/27/2012 3:00 +San Diego,,,CA,12/27/2012 6:50 +Las Vegas,,TRIANGLE,NV,12/27/2012 8:00 +Okeeckobee,,DIAMOND,FL,12/27/2012 8:06 +New York City,RED ORANGE,FIREBALL,NY,12/27/2012 17:15 +Foley,ORANGE,LIGHT,AL,12/27/2012 19:00 +Riverdale,,LIGHT,MI,12/27/2012 20:00 +Youngsville,RED,FORMATION,NC,12/27/2012 20:30 +Chuluota,RED,FIREBALL,FL,12/27/2012 21:15 +Spokane,,OVAL,WA,12/27/2012 22:00 +Pompano beach,,FIREBALL,FL,12/27/2012 22:20 +Augusta,,LIGHT,GA,12/27/2012 23:00 +Xenia,,CIRCLE,OH,12/28/2012 2:30 +Trion,RED,RECTANGLE,GA,12/28/2012 3:00 +Lewiston,,CIRCLE,ID,12/28/2012 17:00 +Gray,,OTHER,ME,12/28/2012 17:25 +Wenatchee,,CIRCLE,WA,12/28/2012 17:30 +Wenatchee,ORANGE,CIRCLE,WA,12/28/2012 17:30 +Wenatchee,,LIGHT,WA,12/28/2012 17:40 +Northridge,,TEARDROP,CA,12/28/2012 17:45 +Saint Paul,,LIGHT,MN,12/28/2012 18:00 +Livingston,,LIGHT,TX,12/28/2012 19:00 +Eagle River,,OVAL,AK,12/28/2012 19:30 +Edwards,RED,LIGHT,IL,12/28/2012 20:00 +Lincoln,RED,FORMATION,DE,12/28/2012 20:00 +Milford,,LIGHT,DE,12/28/2012 20:00 +Ocean City,ORANGE,TRIANGLE,MD,12/28/2012 20:00 +Monitor,RED,LIGHT,WA,12/28/2012 20:30 +Phoenix,,SPHERE,AZ,12/28/2012 20:50 +Ladson,RED,LIGHT,SC,12/28/2012 21:25 +Fort Myers,,FIREBALL,FL,12/28/2012 23:00 +Fort Myers,ORANGE,FIREBALL,FL,12/28/2012 23:00 +Ocatilio Wells,ORANGE,OVAL,CA,12/28/2012 23:00 +Seattle,ORANGE,SPHERE,WA,12/28/2012 23:55 +Orcutt,RED,FIREBALL,CA,12/29/2012 0:00 +Summerville,,TRIANGLE,SC,12/29/2012 1:00 +Wichita,,LIGHT,KS,12/29/2012 6:40 +Orlando,,LIGHT,FL,12/29/2012 17:50 +Wahiawa,,FORMATION,HI,12/29/2012 17:55 +Independence,RED,,OR,12/29/2012 19:00 +Waterloo,ORANGE,SPHERE,IA,12/29/2012 19:09 +Asheboro,,LIGHT,NC,12/29/2012 19:30 +Las Vegas,ORANGE,,NV,12/29/2012 20:30 +Deridder,,FIREBALL,LA,12/29/2012 20:45 +Edmond,ORANGE,CIRCLE,OK,12/29/2012 20:50 +Ballwin,RED ORANGE YELLOW,FIREBALL,MO,12/29/2012 21:00 +Bozeman,,LIGHT,MT,12/29/2012 21:30 +Currie,,OTHER,NC,12/29/2012 21:40 +Bend,,CIRCLE,OR,12/30/2012 0:00 +Sheldon,,CIRCLE,VT,12/30/2012 5:32 +Dulles,,FLASH,VA,12/30/2012 6:39 +no data,,FORMATION,IN,12/30/2012 8:00 +Parker,YELLOW,CIRCLE,CO,12/30/2012 11:00 +Irvine,,,CA,12/30/2012 14:05 +South berwick,ORANGE,TEARDROP,ME,12/30/2012 16:50 +Calimesa,,SPHERE,CA,12/30/2012 19:00 +Long Lake,GREEN,VARIOUS,MI,12/30/2012 20:00 +Temple Hills,,FORMATION,MD,12/30/2012 20:00 +Red River,RED BLUE,SPHERE,NM,12/30/2012 20:15 +Baltimore,,SPHERE,MD,12/30/2012 21:15 +Marina,,LIGHT,CA,12/30/2012 22:00 +Sarasota,,FIREBALL,FL,12/30/2012 22:45 +San Jose,ORANGE,LIGHT,CA,12/30/2012 23:30 +Bend,RED,OVAL,OR,12/31/2012 0:00 +Coral Spring,,LIGHT,FL,12/31/2012 0:00 +San Francisco,,OVAL,CA,12/31/2012 0:00 +Bullhead City,,CIRCLE,AZ,12/31/2012 1:30 +Honokaa,ORANGE,CIRCLE,HI,12/31/2012 2:17 +Roseville,,RECTANGLE,CA,12/31/2012 18:30 +Magnolia,ORANGE,CIRCLE,MS,12/31/2012 19:00 +Ladson,RED,TRIANGLE,SC,12/31/2012 19:15 +Selma,,VARIOUS,AL,12/31/2012 19:15 +Sequim,,OTHER,WA,12/31/2012 19:30 +Idaho Falls,,,ID,12/31/2012 20:00 +Louisville,ORANGE,LIGHT,KY,12/31/2012 20:00 +Santa Rosa,RED,SPHERE,CA,12/31/2012 20:00 +Cape Coral,,FIREBALL,FL,12/31/2012 20:04 +Peoria,ORANGE,FIREBALL,AZ,12/31/2012 20:28 +Orlando,ORANGE,CIRCLE,FL,12/31/2012 20:35 +Anacortes,ORANGE,FIREBALL,WA,12/31/2012 20:45 +DeBary,,SPHERE,FL,12/31/2012 20:45 +Thomasville,RED,FORMATION,NC,12/31/2012 20:45 +Idaho Falls,ORANGE,LIGHT,ID,12/31/2012 20:53 +Gainesville,RED,OTHER,FL,12/31/2012 21:00 +Glendale,ORANGE,FIREBALL,AZ,12/31/2012 21:00 +Fort Myers,,SPHERE,FL,12/31/2012 21:10 +Heathrow,,LIGHT,FL,12/31/2012 21:15 +Apple Valley,RED YELLOW,TEARDROP,CA,12/31/2012 21:17 +Greenville,,LIGHT,SC,12/31/2012 21:30 +Wahkiakum County,ORANGE,CHEVRON,WA,12/31/2012 21:30 +Londonderry,,LIGHT,NH,12/31/2012 21:35 +St. Paul,,SPHERE,MN,12/31/2012 21:45 +Bullhead City,ORANGE,FIREBALL,AZ,12/31/2012 22:00 +Cromwell,ORANGE,FIREBALL,CT,12/31/2012 22:00 +Karne City,,FIREBALL,TX,12/31/2012 22:00 +Roseburg,RED YELLOW,CIRCLE,OR,12/31/2012 22:00 +Somerset,,OVAL,PA,12/31/2012 22:00 +Boise,,FIREBALL,ID,12/31/2012 22:15 +Crandal,RED,SPHERE,IN,12/31/2012 22:20 +Bend,RED,LIGHT,OR,12/31/2012 22:30 +Carson,,CIRCLE,NV,12/31/2012 22:30 +Smyrna,,SPHERE,TN,12/31/2012 22:30 +Springfield,,TRIANGLE,OR,12/31/2012 22:30 +Bozeman,,FIREBALL,MT,12/31/2012 22:40 +San Diego,,LIGHT,CA,12/31/2012 22:52 +Barre,,FIREBALL,VT,12/31/2012 23:00 +Berkeley,RED,FIREBALL,CA,12/31/2012 23:00 +Mandeville,,SPHERE,LA,12/31/2012 23:00 +Poland,,LIGHT,OH,12/31/2012 23:00 +Boise,ORANGE,SPHERE,ID,12/31/2012 23:10 +Fort Myers,,FORMATION,FL,12/31/2012 23:10 +Ellsworth,ORANGE,FIREBALL,ME,12/31/2012 23:20 +Doral,RED ORANGE,FIREBALL,FL,12/31/2012 23:30 +Odessa,,CIRCLE,TX,12/31/2012 23:30 +Tempe,,FIREBALL,AZ,12/31/2012 23:30 +Waianae,RED,CIRCLE,HI,12/31/2012 23:30 +Azusa,,TRIANGLE,CA,12/31/2012 23:32 +Tampa,,DIAMOND,FL,12/31/2012 23:32 +Modesto,RED,LIGHT,CA,12/31/2012 23:40 +Burien,,OVAL,WA,12/31/2012 23:45 +Columbia,,FIREBALL,SC,12/31/2012 23:45 +Savannah,,TRIANGLE,GA,12/31/2012 23:45 +Ashburn,,FIREBALL,VA,12/31/2012 23:50 +Hollywood,RED,FIREBALL,CA,12/31/2012 23:54 +East Helena,,OVAL,MT,12/31/2012 23:55 +Palouse,ORANGE,LIGHT,WA,12/31/2012 23:58 +Henderson,,FIREBALL,NV,12/31/2012 23:59 +West Sacramento,ORANGE,FIREBALL,CA,12/31/2012 23:59 +Bellingham,,DISK,WA,1/1/2013 0:00 +Irvine,,,CA,1/1/2013 0:00 +New Port Richey,,SPHERE,FL,1/1/2013 0:00 +Richmond,,TRIANGLE,VA,1/1/2013 0:00 +Rio Rancho,,OTHER,NM,1/1/2013 0:00 +Portland,,OTHER,OR,1/1/2013 0:01 +Ocean Springs,,FIREBALL,MS,1/1/2013 0:02 +Modesto,RED,VARIOUS,CA,1/1/2013 0:04 +Berkeley,,FIREBALL,CA,1/1/2013 0:05 +Estero,,TEARDROP,FL,1/1/2013 0:05 +San Jose,RED,CIRCLE,CA,1/1/2013 0:05 +Sykesville,ORANGE,FORMATION,MD,1/1/2013 0:05 +Billings,ORANGE,LIGHT,MT,1/1/2013 0:07 +Bristol,,OVAL,PA,1/1/2013 0:07 +Odessa,,TRIANGLE,TX,1/1/2013 0:08 +Jupiter,,CIRCLE,FL,1/1/2013 0:10 +Milwaukee,,CONE,WI,1/1/2013 0:10 +Northampton,,,PA,1/1/2013 0:10 +Stockton,ORANGE,FIREBALL,CA,1/1/2013 0:10 +Port Richey,ORANGE,SPHERE,FL,1/1/2013 0:12 +Ridgecrest,RED,LIGHT,CA,1/1/2013 0:13 +Claremont,ORANGE,CIRCLE,NH,1/1/2013 0:15 +Pickens,,FIREBALL,SC,1/1/2013 0:15 +Pinellas Park,,FIREBALL,FL,1/1/2013 0:15 +Seagoville,RED,CIRCLE,TX,1/1/2013 0:15 +York,ORANGE,OTHER,PA,1/1/2013 0:15 +Fort Worth,ORANGE,LIGHT,TX,1/1/2013 0:20 +Miami,,LIGHT,FL,1/1/2013 0:25 +Palm Desert,,SPHERE,CA,1/1/2013 0:30 +Farmington,,EGG,NM,1/1/2013 0:37 +Ormond beach,,FIREBALL,FL,1/1/2013 0:37 +Long Beach,RED,FORMATION,CA,1/1/2013 0:38 +Brandon,RED,FIREBALL,FL,1/1/2013 0:55 +Chicago,,CONE,IL,1/1/2013 1:00 +Delta Junction,ORANGE,TRIANGLE,AK,1/1/2013 1:00 +Kalaloch,,LIGHT,WA,1/1/2013 1:00 +Wailuku,,SPHERE,HI,1/1/2013 1:00 +Elk Grove,,SPHERE,CA,1/1/2013 1:10 +St. George,ORANGE,CYLINDER,UT,1/1/2013 1:15 +Tulare,,FORMATION,CA,1/1/2013 1:15 +Canaan Valley,ORANGE,FIREBALL,WV,1/1/2013 1:30 +Longview,RED,,WA,1/1/2013 1:30 +Midvale,YELLOW,FIREBALL,UT,1/1/2013 1:35 +Seattle,RED,LIGHT,WA,1/1/2013 2:45 +Jacksonville Beach,,DISK,FL,1/1/2013 6:04 +Westminster,,OVAL,VT,1/1/2013 7:25 +Lake Worth,,FIREBALL,FL,1/1/2013 8:00 +Sacramento,RED,LIGHT,CA,1/1/2013 13:10 +Pittsburgh,ORANGE,CIRCLE,PA,1/1/2013 16:30 +Lahaina,,FIREBALL,HI,1/1/2013 18:45 +East Mesa,,FORMATION,AZ,1/1/2013 19:00 +Sarasota,ORANGE,LIGHT,FL,1/1/2013 19:00 +Stockton,,TRIANGLE,CA,1/1/2013 19:15 +Lacrosse,ORANGE,FORMATION,WI,1/1/2013 19:48 +St. Peters,RED,LIGHT,PA,1/1/2013 20:00 +Weaverville,,FIREBALL,CA,1/1/2013 20:01 +Springdale,,OVAL,UT,1/1/2013 20:30 +Orlando,,FIREBALL,FL,1/1/2013 20:35 +Anaheim,ORANGE,,CA,1/1/2013 21:00 +Port Townsend,,DIAMOND,WA,1/1/2013 21:00 +Honolulu,,FIREBALL,HI,1/1/2013 21:25 +New Port Richey,ORANGE YELLOW,VARIOUS,FL,1/1/2013 21:27 +Fountain Hills,,OTHER,AZ,1/1/2013 21:50 +Martinez,,OTHER,GA,1/1/2013 23:00 +Langley,,CHEVRON,WA,1/2/2013 1:30 +Seattle,,LIGHT,WA,1/2/2013 1:45 +Erlanger,,CYLINDER,KY,1/2/2013 4:45 +Corona,,OTHER,NY,1/2/2013 6:20 +Manchester,,CIRCLE,CT,1/2/2013 17:00 +Cutler Bay or Miami,RED,OVAL,FL,1/2/2013 21:13 +Reno,,SPHERE,NV,1/2/2013 21:45 +Chico,,CIRCLE,CA,1/2/2013 22:45 +Phoenix,ORANGE,,AZ,1/3/2013 0:43 +Elizabeth,,,NJ,1/3/2013 4:10 +Coalinga,,DISK,CA,1/3/2013 5:50 +Bedford,,TRIANGLE,NY,1/3/2013 6:45 +Hugo,,LIGHT,CO,1/3/2013 16:40 +Charlotte Court House,,LIGHT,VA,1/3/2013 18:15 +Roseville,RED,,CA,1/3/2013 19:40 +Clayton,RED BLUE,CYLINDER,NC,1/3/2013 20:00 +Mason,,LIGHT,TN,1/3/2013 20:00 +Rockford,,DISK,IL,1/3/2013 20:00 +Yankton,ORANGE,CIRCLE,SD,1/3/2013 20:00 +Weaverville,,SPHERE,CA,1/3/2013 20:03 +Fairfax,RED GREEN BLUE,SPHERE,CA,1/3/2013 20:15 +Fair Oaks,,OVAL,CA,1/3/2013 20:35 +Davenport,RED,TRIANGLE,WA,1/3/2013 21:12 +Terrebonne,RED,,OR,1/3/2013 21:37 +Deer Mountain,,LIGHT,UT,1/3/2013 23:45 +Brimfield,,CIRCLE,MA,1/4/2013 1:30 +Eldridge,RED GREEN BLUE,,IA,1/4/2013 3:30 +Los Angeles,,LIGHT,CA,1/4/2013 5:30 +Batavia,,DISK,NY,1/4/2013 15:00 +Arcadia,ORANGE,OTHER,FL,1/4/2013 18:00 +Rotonda,,OTHER,FL,1/4/2013 19:00 +Sioux Falls,ORANGE,DISK,SD,1/4/2013 19:00 +Oakdale,RED,LIGHT,PA,1/4/2013 20:50 +Mount Juliet,ORANGE,FIREBALL,TN,1/4/2013 21:00 +Milwaukie,,LIGHT,OR,1/4/2013 22:55 +Rochester,ORANGE,CROSS,MN,1/4/2013 23:15 +Cedar Rapids,,CIRCLE,IA,1/5/2013 2:17 +Seattle,,CIRCLE,WA,1/5/2013 6:10 +Loveland,,OVAL,CO,1/5/2013 8:30 +Huntington Beach,ORANGE,TRIANGLE,CA,1/5/2013 17:30 +Fountain Valley,,FORMATION,CA,1/5/2013 17:45 +Canton,RED,LIGHT,OH,1/5/2013 18:30 +Milan,GREEN,FIREBALL,NY,1/5/2013 18:35 +Santa Monica,,CIRCLE,CA,1/5/2013 18:45 +Gun Barrel City,,CIRCLE,TX,1/5/2013 18:55 +Portland,,CIRCLE,ME,1/5/2013 20:00 +Reno,,FIREBALL,NV,1/5/2013 20:10 +North Arlington,,FIREBALL,NJ,1/5/2013 21:04 +Easthampton,,FIREBALL,MA,1/5/2013 21:30 +Markesan,,TRIANGLE,WI,1/5/2013 22:00 +Greeley,,OVAL,CO,1/5/2013 22:45 +Canoga Park,,LIGHT,CA,1/6/2013 6:05 +Canyon Lake,,TRIANGLE,TX,1/6/2013 10:28 +Ogden,,CIGAR,UT,1/6/2013 11:00 +Miami,,FORMATION,FL,1/6/2013 15:30 +Claremore,,LIGHT,OK,1/6/2013 17:31 +Niwot,RED,LIGHT,CO,1/6/2013 17:54 +Springfield,RED,CIRCLE,IL,1/6/2013 18:05 +Fenton,,LIGHT,MO,1/6/2013 18:30 +Cedar Rapids,ORANGE,LIGHT,IA,1/6/2013 18:35 +Whitefish,,OTHER,MT,1/6/2013 19:00 +Dennisport,ORANGE,FIREBALL,MA,1/6/2013 19:30 +Kennett Square,RED BLUE,,PA,1/6/2013 20:30 +Moundville,,TRIANGLE,AL,1/6/2013 20:30 +Denton,ORANGE,CIRCLE,TX,1/6/2013 21:00 +Oley,,CIRCLE,PA,1/6/2013 21:00 +Reading,RED,LIGHT,PA,1/6/2013 21:15 +Hyannis,,OVAL,MA,1/6/2013 22:00 +Fort Lauderdale,,,FL,1/6/2013 22:30 +Chesapeake,RED YELLOW BLUE,TRIANGLE,VA,1/6/2013 23:30 +Anchorage,,,AK,1/7/2013 1:50 +Springfield,,LIGHT,MA,1/7/2013 2:10 +Sedona,,,AZ,1/7/2013 4:30 +Baltimore,,CIRCLE,MD,1/7/2013 6:50 +Greenwood,,EGG,MS,1/7/2013 12:35 +Nashville,,SPHERE,TN,1/7/2013 17:00 +Madison,RED,FIREBALL,WI,1/7/2013 17:45 +Branford,,CIGAR,CT,1/7/2013 19:00 +Sioux Falls,,TRIANGLE,SD,1/8/2013 0:00 +Culver City,,DISK,CA,1/8/2013 1:15 +Gibsonville,,TRIANGLE,NC,1/8/2013 8:00 +Cape Girardeau,,CIGAR,MO,1/8/2013 17:00 +Old Town,GREEN,LIGHT,ME,1/8/2013 17:30 +Rock Hill,ORANGE,FIREBALL,SC,1/8/2013 18:00 +Longs,RED,LIGHT,SC,1/8/2013 18:30 +Bountiful,ORANGE,FIREBALL,UT,1/8/2013 18:39 +Amherst,,TRIANGLE,MA,1/8/2013 19:00 +Funston,,,GA,1/8/2013 19:15 +Vestal,,TRIANGLE,NY,1/8/2013 19:50 +Keizer,,VARIOUS,OR,1/8/2013 22:00 +Burbank,,DISK,CA,1/9/2013 4:57 +Grantsburg,RED,,WI,1/9/2013 5:30 +Waukesha,,DISK,WI,1/9/2013 7:30 +Wheatland,,LIGHT,IA,1/9/2013 17:20 +Wheatland,,LIGHT,IA,1/9/2013 17:20 +Medford,RED,,OR,1/9/2013 18:00 +no data,,,GA,1/9/2013 18:45 +Greene,GREEN,CIGAR,ME,1/10/2013 0:00 +Plymouth,,LIGHT,MA,1/10/2013 5:31 +Montgomery,,SPHERE,TX,1/10/2013 12:20 +McGregor,,TRIANGLE,MN,1/10/2013 13:00 +Milford,RED GREEN BLUE,TRIANGLE,MA,1/10/2013 18:10 +Madison Heights,,CIRCLE,MI,1/10/2013 19:00 +Chantilly,ORANGE,FORMATION,VA,1/10/2013 21:05 +Madison,,TRIANGLE,AL,1/10/2013 22:00 +Springfield,,FIREBALL,OH,1/10/2013 22:00 +Hamlet,ORANGE,SPHERE,NC,1/11/2013 7:30 +Plantation,,,FL,1/11/2013 18:30 +Portland,,OTHER,OR,1/11/2013 20:00 +Orlando,ORANGE,LIGHT,FL,1/11/2013 21:30 +Miami,,FIREBALL,FL,1/11/2013 21:50 +Fuquay Varina,YELLOW,OTHER,NC,1/11/2013 22:00 +Syracuse,ORANGE,CIRCLE,UT,1/12/2013 0:30 +Bozeman,,FLASH,MT,1/12/2013 1:00 +Vancouver,RED,CIRCLE,WA,1/12/2013 5:45 +Orlando,ORANGE,FIREBALL,FL,1/12/2013 16:45 +Silver Lake,RED GREEN,CIRCLE,CA,1/12/2013 17:00 +Sacramento,,LIGHT,CA,1/12/2013 17:55 +Clayton,,OVAL,GA,1/12/2013 19:00 +Clayton,,OVAL,GA,1/12/2013 19:00 +Boise,,RECTANGLE,ID,1/12/2013 19:30 +Kennesaw,ORANGE,OVAL,GA,1/12/2013 21:00 +Kennesaw,ORANGE,OVAL,GA,1/12/2013 21:00 +Sioux Falls,ORANGE,LIGHT,SD,1/12/2013 21:00 +Grass Valley,YELLOW,SPHERE,CA,1/12/2013 21:45 +Lexington,ORANGE,LIGHT,SC,1/12/2013 22:00 +Orem,RED,SPHERE,UT,1/12/2013 22:15 +Troy,,CIRCLE,MI,1/13/2013 0:40 +Jackson,,OTHER,MO,1/13/2013 18:15 +Candler,,TRIANGLE,NC,1/13/2013 20:00 +Hampton,,TRIANGLE,VA,1/13/2013 20:00 +Indian Harbour Beach,ORANGE,FIREBALL,FL,1/13/2013 20:30 +Oakland,,LIGHT,CA,1/13/2013 22:00 +Milwaukee,,TRIANGLE,WI,1/14/2013 0:00 +Perris,,LIGHT,CA,1/14/2013 0:12 +Rancho Cucamonga,,SPHERE,CA,1/14/2013 7:00 +Thomaston,,OVAL,CT,1/14/2013 14:00 +Pascoag,ORANGE,LIGHT,RI,1/14/2013 17:00 +Broadway,RED GREEN,VARIOUS,VA,1/14/2013 18:00 +Scottsdale,,FIREBALL,AZ,1/14/2013 18:00 +Waukegan,,OTHER,IL,1/14/2013 18:00 +Maricopa,ORANGE,LIGHT,AZ,1/14/2013 20:00 +Lewiston,,LIGHT,ME,1/14/2013 20:10 +Muskegon,,CIRCLE,MI,1/14/2013 21:39 +North Eastham,,LIGHT,MA,1/14/2013 22:25 +Irvington,,,NY,1/15/2013 2:20 +Olympia,BLUE,FIREBALL,WA,1/15/2013 5:30 +Fort Dodge,,TRIANGLE,IA,1/15/2013 7:00 +Loris,,LIGHT,SC,1/15/2013 9:35 +Mansfield,ORANGE,CIRCLE,OH,1/15/2013 17:00 +Loris,,OTHER,SC,1/15/2013 18:30 +Estrella Mountain,ORANGE,OTHER,AZ,1/15/2013 19:30 +Phoenix,ORANGE,LIGHT,AZ,1/15/2013 19:30 +Marana,ORANGE,LIGHT,AZ,1/15/2013 20:00 +San Antonio,BLUE,,TX,1/15/2013 20:15 +Lakeland,,LIGHT,FL,1/15/2013 23:00 +Michicot,,VARIOUS,IN,1/16/2013 1:00 +Troy,,,IL,1/16/2013 1:30 +Coolidge,ORANGE,CIRCLE,AZ,1/16/2013 7:50 +St. Augustine,ORANGE,TRIANGLE,FL,1/16/2013 9:50 +Fayettville,BLUE,OTHER,NC,1/16/2013 12:00 +Issaquah,BLUE,OTHER,WA,1/16/2013 16:00 +Reno,,TRIANGLE,NV,1/16/2013 19:15 +Orting,,LIGHT,WA,1/16/2013 20:04 +Astoria,,CHEVRON,OR,1/16/2013 23:20 +Nehalem,,LIGHT,OR,1/17/2013 6:30 +Ferrisburg,,TRIANGLE,VT,1/17/2013 17:24 +Austin,,CIRCLE,TX,1/17/2013 18:00 +Kalispell,,CIRCLE,MT,1/17/2013 20:00 +Winchester,RED,LIGHT,VA,1/17/2013 20:00 +Port Charlotte,,FIREBALL,FL,1/17/2013 20:15 +Denver,ORANGE,TRIANGLE,PA,1/17/2013 21:45 +Minneapolis,,FORMATION,MN,1/17/2013 21:45 +High Falls,,CIGAR,NY,1/17/2013 23:00 +Pearland,,FIREBALL,TX,1/17/2013 23:00 +Dublin,,CIRCLE,OH,1/17/2013 23:11 +Waukegan,ORANGE,FIREBALL,IL,1/18/2013 0:30 +Milan,GREEN,LIGHT,OH,1/18/2013 5:30 +Durham,,CIRCLE,NC,1/18/2013 16:00 +Annandale,,CIGAR,VA,1/18/2013 17:45 +Casselberry,,LIGHT,FL,1/18/2013 21:44 +Parsons,,CIRCLE,KS,1/19/2013 3:27 +Clarkston,ORANGE GREEN BLUE,OTHER,MI,1/19/2013 3:41 +Boulder,BLUE,OTHER,CO,1/19/2013 14:15 +Denver,,DISK,CO,1/19/2013 15:00 +Fairmont,YELLOW BLUE,DISK,WV,1/19/2013 17:00 +Grayson,,,GA,1/19/2013 18:43 +Augusta,,SPHERE,MO,1/19/2013 20:15 +Mt.Pleasant,ORANGE,FIREBALL,SC,1/19/2013 20:50 +Branford,,LIGHT,CT,1/19/2013 21:00 +Fairbanks,,FIREBALL,AK,1/19/2013 21:00 +Eagle Mountain,ORANGE,FIREBALL,UT,1/19/2013 22:00 +Shelby,,LIGHT,NC,1/19/2013 22:00 +Cape Cod,,FLASH,MA,1/19/2013 23:00 +Crofton,,TRIANGLE,KY,1/20/2013 1:00 +Port Everglades,,CIRCLE,FL,1/20/2013 15:00 +Phoenix,,CIRCLE,AZ,1/20/2013 16:00 +Lawrence,,OTHER,KS,1/20/2013 18:50 +Indian Harbour Beach,ORANGE,FIREBALL,FL,1/20/2013 19:00 +Flomaton,ORANGE,CIRCLE,AL,1/20/2013 21:00 +Falls Church,,LIGHT,VA,1/20/2013 21:25 +Los Angeles,,CONE,CA,1/20/2013 22:00 +Falls Church,,LIGHT,VA,1/20/2013 23:50 +Hartford,,FIREBALL,CT,1/21/2013 0:00 +Schenectady,,LIGHT,NY,1/21/2013 0:00 +Atlanta,,FIREBALL,GA,1/21/2013 5:20 +New Hope,,VARIOUS,AL,1/21/2013 16:50 +New Castle,,CIRCLE,DE,1/21/2013 21:00 +Athens,,DISK,IL,1/22/2013 0:00 +Aston,,CIRCLE,PA,1/22/2013 1:00 +Clearwater,,RECTANGLE,FL,1/22/2013 1:00 +Arlington,,TRIANGLE,TX,1/22/2013 5:25 +Gray Court,,LIGHT,SC,1/22/2013 6:30 +Boldo,,CIRCLE,AL,1/22/2013 9:00 +Denver,ORANGE BLUE,CIRCLE,CO,1/22/2013 15:43 +Myrtle Beach,ORANGE,FIREBALL,SC,1/22/2013 20:45 +Myrtle Beach,,LIGHT,SC,1/22/2013 20:52 +Myrtle Beach,,FLASH,SC,1/22/2013 20:53 +Londonderry,,RECTANGLE,NH,1/23/2013 0:36 +Louisville,RED ORANGE,CIRCLE,OH,1/23/2013 7:10 +Kennewick,,OVAL,WA,1/23/2013 7:15 +Bedford,,LIGHT,MA,1/23/2013 18:00 +Nashua,GREEN,FIREBALL,NH,1/23/2013 18:00 +La Marque,ORANGE,CIGAR,TX,1/23/2013 18:45 +Sunerland,,FIREBALL,MA,1/24/2013 0:17 +Rocky Mount,,CIRCLE,NC,1/24/2013 7:48 +Scott Depot,RED,VARIOUS,WV,1/24/2013 11:07 +Port Charlotte,RED YELLOW,LIGHT,FL,1/24/2013 16:10 +Portsmouth,,,NH,1/24/2013 17:25 +Clearwater Beach,,SPHERE,FL,1/24/2013 18:40 +Martinsville,,DISK,IN,1/24/2013 19:30 +Kelso,,CIRCLE,WA,1/24/2013 20:00 +New Washington,,CIRCLE,OH,1/24/2013 21:00 +Toms River,,,NJ,1/25/2013 1:00 +Elk Grove,,CHEVRON,CA,1/25/2013 3:20 +Schenectady,,FLASH,NY,1/25/2013 6:02 +Schoharie,,FIREBALL,NY,1/25/2013 6:05 +San Antonio,,DISK,TX,1/25/2013 12:00 +Orlando,,OTHER,FL,1/25/2013 14:30 +Hope,,TRIANGLE,ME,1/25/2013 17:50 +Yankton,,FORMATION,SD,1/25/2013 18:30 +Sacramento,RED,LIGHT,CA,1/25/2013 19:00 +Turlock,,VARIOUS,CA,1/25/2013 20:00 +Portland,,FORMATION,ME,1/25/2013 20:35 +Kaanapali,ORANGE,CIRCLE,HI,1/25/2013 21:17 +Austin,BLUE,LIGHT,TX,1/25/2013 23:15 +Rio Chama,,LIGHT,NM,1/25/2013 23:25 +Wilbraham,,OTHER,MA,1/25/2013 23:42 +Boca Raton,,TRIANGLE,FL,1/26/2013 3:35 +Athens,,EGG,GA,1/26/2013 15:47 +Athens,,EGG,GA,1/26/2013 15:47 +Lehigh Valley,,TRIANGLE,PA,1/26/2013 18:00 +Hiawatha,ORANGE,DISK,KS,1/26/2013 18:15 +Marion,,LIGHT,NC,1/26/2013 19:00 +Tampa,,CIRCLE,FL,1/26/2013 19:15 +Elgin,ORANGE,VARIOUS,IL,1/26/2013 20:00 +Jensen Beach,,SPHERE,FL,1/26/2013 21:00 +New York City,,LIGHT,NY,1/27/2013 0:00 +Johns Creek,,,GA,1/27/2013 9:32 +Lakewood,,TRIANGLE,CO,1/27/2013 18:50 +Kelso,,OTHER,WA,1/27/2013 21:00 +Scranton,,LIGHT,PA,1/27/2013 21:00 +Washington,RED,DISK,NC,1/27/2013 21:25 +Old Bridge,,LIGHT,NJ,1/27/2013 22:57 +Long Beach,,LIGHT,CA,1/27/2013 23:40 +Remus,,TEARDROP,MI,1/28/2013 0:00 +Pierre,,LIGHT,SD,1/28/2013 21:00 +Jacksonville,,TRIANGLE,FL,1/29/2013 8:56 +Smithville,,OTHER,TX,1/29/2013 19:00 +Clifton Park,RED,LIGHT,NY,1/29/2013 21:00 +St. Augustine,ORANGE,CIRCLE,FL,1/29/2013 21:00 +Hagerstown,,LIGHT,MD,1/29/2013 23:50 +Vidor,,VARIOUS,TX,1/30/2013 19:05 +Leland,,OTHER,NC,1/30/2013 20:07 +Rohnert Park,,SPHERE,CA,1/30/2013 20:45 +Hobe Sound,,CIRCLE,FL,1/30/2013 20:49 +Hobe Sound,,CIRCLE,FL,1/30/2013 20:49 +Kissimmee,ORANGE,TRIANGLE,FL,1/30/2013 20:50 +Palm Coast,,DISK,FL,1/30/2013 20:50 +San Jose,,,CA,1/31/2013 4:10 +Nixburg,,SPHERE,AL,1/31/2013 5:30 +Puyallup,,VARIOUS,WA,1/31/2013 12:00 +Patterson,,TRIANGLE,CA,1/31/2013 18:00 +Albuquerque,,LIGHT,NM,1/31/2013 19:45 +Glenside,,TRIANGLE,PA,1/31/2013 21:00 +Mount Vernon,,DISK,AR,1/31/2013 21:00 +Monterey,,FLASH,CA,1/31/2013 22:00 +Lake Havasu City,ORANGE,CIRCLE,AZ,1/31/2013 22:30 +Brewton,,FLASH,AL,1/31/2013 23:00 +Naples,ORANGE,LIGHT,FL,1/31/2013 23:30 +Ladson,YELLOW,,SC,2/1/2013 5:15 +DeKalb,,DISK,IL,2/1/2013 12:00 +Pendleton,,,OR,2/1/2013 14:00 +Grand Junction,,TRIANGLE,CO,2/1/2013 20:35 +Orem,,FIREBALL,UT,2/1/2013 22:00 +Shallotte,ORANGE,LIGHT,NC,2/1/2013 22:30 +Katy,,CIRCLE,TX,2/1/2013 22:45 +Grand Junction,RED GREEN,CONE,CO,2/1/2013 23:00 +Hana,,,HI,2/1/2013 23:00 +Sicklerville,ORANGE,LIGHT,NJ,2/2/2013 0:00 +Las Vegas,,,NV,2/2/2013 0:40 +Poughkeepsie,,DIAMOND,NY,2/2/2013 5:50 +Dallas-Fort Worth,,,TX,2/2/2013 11:05 +Citrus Heights,,SPHERE,CA,2/2/2013 14:00 +Lake Zurich,RED,LIGHT,IL,2/2/2013 18:15 +Clarksburg,ORANGE,CIRCLE,WV,2/2/2013 20:00 +Hillsboro,ORANGE,CIRCLE,OR,2/2/2013 20:00 +Dallas,,LIGHT,TX,2/2/2013 20:30 +Hood River,,TRIANGLE,OR,2/2/2013 21:30 +Lewisville,RED,FORMATION,TX,2/2/2013 22:45 +Oviedo,,CIRCLE,FL,2/2/2013 23:30 +Hood River,,,OR,2/3/2013 0:00 +ucon,BLUE,OTHER,ID,2/3/2013 2:30 +Wilmington,,SPHERE,NC,2/3/2013 6:15 +Houma,,OTHER,LA,2/3/2013 17:00 +Lancaster,RED,TRIANGLE,MA,2/3/2013 18:00 +Santa Cruz,,SPHERE,CA,2/3/2013 18:15 +Fort Payne,,OTHER,AL,2/3/2013 20:00 +Sylacauga,,TRIANGLE,AL,2/3/2013 20:00 +Pittsburg,RED ORANGE,FIREBALL,CA,2/3/2013 20:10 +Apple Valley,RED,OTHER,CA,2/3/2013 20:15 +Hollywood,RED,FIREBALL,FL,2/3/2013 20:20 +Cape Coral,RED,LIGHT,FL,2/3/2013 23:00 +Charlotte,,OTHER,NC,2/4/2013 8:55 +Austin,,,TX,2/4/2013 14:30 +Ormond Beach,,CIRCLE,FL,2/4/2013 16:07 +Gill,,CIRCLE,MA,2/4/2013 17:00 +Conover,GREEN,LIGHT,NC,2/4/2013 18:00 +Whitney,,VARIOUS,TX,2/4/2013 18:00 +Nashua,,DIAMOND,NH,2/4/2013 19:36 +Remsen,,CYLINDER,NY,2/4/2013 19:36 +Ocean City,,LIGHT,NJ,2/4/2013 21:00 +Santa Fe,,VARIOUS,NM,2/5/2013 1:30 +Providence,,CIGAR,RI,2/5/2013 7:30 +Spokane Valley,,SPHERE,WA,2/5/2013 16:30 +Venice,,LIGHT,LA,2/5/2013 18:45 +Merrimack,,,NH,2/5/2013 19:30 +Blossvale,BLUE,LIGHT,NY,2/6/2013 5:55 +Plainfield,,CIRCLE,IL,2/6/2013 9:50 +Williston,,LIGHT,VT,2/6/2013 17:50 +South Burlington,,FORMATION,VT,2/6/2013 17:55 +Bethel,,FORMATION,VT,2/6/2013 18:00 +East Barre,,FORMATION,VT,2/6/2013 18:00 +Skowhegan,,CHEVRON,ME,2/6/2013 18:00 +Montpelier,,OTHER,VT,2/6/2013 18:15 +Scappoose,,TRIANGLE,OR,2/6/2013 18:45 +Ladson,,LIGHT,SC,2/6/2013 19:00 +Placerville,,TRIANGLE,CA,2/6/2013 19:00 +Miami,,OTHER,FL,2/6/2013 20:00 +Nashville,RED YELLOW BLUE,OTHER,TN,2/6/2013 20:30 +Plainfield,,CIRCLE,IL,2/6/2013 21:50 +New Harmony,,LIGHT,UT,2/6/2013 22:45 +Rio Hondo,GREEN,OVAL,TX,2/7/2013 2:30 +Bellevue,,SPHERE,WA,2/7/2013 20:56 +Saucier,,DIAMOND,MS,2/7/2013 21:00 +Paradise,,OTHER,MT,2/7/2013 23:45 +Knoxville,,TRIANGLE,TN,2/8/2013 0:00 +City of Industry,ORANGE,CIRCLE,CA,2/8/2013 17:04 +Lompoc,,LIGHT,CA,2/8/2013 18:28 +Alleouz,RED ORANGE,FORMATION,WI,2/8/2013 20:00 +Jacksonville,,DIAMOND,FL,2/8/2013 21:45 +Edmonds,ORANGE,OTHER,WA,2/8/2013 22:20 +Longwood,,CIRCLE,FL,2/8/2013 22:30 +Chicago,ORANGE,FORMATION,IL,2/8/2013 22:45 +Decatur,ORANGE,FORMATION,GA,2/9/2013 0:00 +Boulder,GREEN,CIRCLE,CO,2/9/2013 1:50 +Pasadena,,FLASH,MD,2/9/2013 2:50 +Downey,,LIGHT,CA,2/9/2013 3:40 +Columbia,,OVAL,SC,2/9/2013 6:35 +Rocklin,,CIRCLE,CA,2/9/2013 18:25 +Hana,RED ORANGE,FIREBALL,HI,2/9/2013 20:00 +Lithia,,CIRCLE,FL,2/9/2013 21:35 +Pacifica,ORANGE,FIREBALL,CA,2/9/2013 21:42 +Seattle,,FIREBALL,WA,2/9/2013 22:55 +Hayward,ORANGE,SPHERE,CA,2/10/2013 0:00 +Lincroft,RED,LIGHT,NJ,2/10/2013 3:35 +Pacoima,,CIRCLE,CA,2/10/2013 8:45 +Sevierville,,TRIANGLE,TN,2/10/2013 19:10 +Parkman,ORANGE,SPHERE,OH,2/10/2013 20:00 +Jacksonville,,OVAL,FL,2/10/2013 22:00 +Jupiter,ORANGE,FIREBALL,FL,2/10/2013 22:00 +Townsend,,FORMATION,TN,2/11/2013 2:05 +Hilliards,,CIRCLE,PA,2/11/2013 9:15 +Napa,,LIGHT,CA,2/11/2013 20:31 +Metuchen,ORANGE,TRIANGLE,NJ,2/11/2013 22:20 +Phoenix,,,AZ,2/11/2013 23:30 +Simpsonville,RED YELLOW,OTHER,SC,2/11/2013 23:30 +Rockport,RED ORANGE,,MA,2/12/2013 0:30 +Redway,,,CA,2/12/2013 19:00 +Fairfax,RED,LIGHT,VA,2/12/2013 19:30 +Harrison,,DIAMOND,MT,2/12/2013 19:30 +Knoxville,,TRIANGLE,IA,2/12/2013 21:25 +Needles,RED,FORMATION,CA,2/12/2013 21:30 +Sunrise,ORANGE,CIRCLE,FL,2/12/2013 22:45 +Elizabeth,,,NJ,2/13/2013 3:00 +Houston,,LIGHT,TX,2/13/2013 19:20 +Plainfield,,CIRCLE,IL,2/13/2013 19:35 +Gastonia,,SPHERE,NC,2/13/2013 19:45 +Redwood Valley,RED,LIGHT,CA,2/13/2013 19:47 +West Palm Beach,,SPHERE,FL,2/13/2013 20:00 +Fort Lawn,RED,LIGHT,SC,2/13/2013 20:40 +McMinnville,,SPHERE,OR,2/13/2013 21:00 +Raeford,,OTHER,NC,2/13/2013 21:00 +Fort Wayne,,LIGHT,IN,2/13/2013 21:35 +Newnan,RED,LIGHT,GA,2/13/2013 22:30 +East Glastonbury,ORANGE,FORMATION,CT,2/14/2013 0:00 +Knoxville,RED ORANGE,SPHERE,TN,2/14/2013 6:00 +Point of Rocks,GREEN,CIRCLE,WY,2/14/2013 6:00 +Eugene,ORANGE,LIGHT,OR,2/14/2013 12:20 +Spokane,,SPHERE,WA,2/14/2013 16:00 +Virginia Beach,,CHEVRON,VA,2/14/2013 19:06 +Nashville,,FIREBALL,TN,2/14/2013 19:15 +Grants Pass,,LIGHT,OR,2/14/2013 19:30 +Gallatin,RED,SPHERE,TN,2/14/2013 20:00 +Pasadena,RED,VARIOUS,CA,2/14/2013 21:10 +Cotulla,,,TX,2/14/2013 22:00 +Lewisburg,,,TN,2/14/2013 22:24 +Cornersville,,LIGHT,TN,2/14/2013 22:45 +Connersville,,LIGHT,IN,2/14/2013 23:00 +North Hollywood,,FORMATION,CA,2/14/2013 23:17 +Lawrenceville,GREEN,LIGHT,GA,2/14/2013 23:23 +Moultrie,ORANGE,LIGHT,GA,2/15/2013 0:00 +Antioch,,CIRCLE,CA,2/15/2013 3:40 +Crosby,,DIAMOND,TX,2/15/2013 3:43 +Spring Grove,,LIGHT,IL,2/15/2013 6:00 +Chillicothe,,CYLINDER,MO,2/15/2013 12:00 +Ridgeland,,CIRCLE,MS,2/15/2013 16:00 +Arlington Heights,,FIREBALL,IL,2/15/2013 19:00 +Arlington Heights,ORANGE,FIREBALL,IL,2/15/2013 19:00 +Seattle,,CIRCLE,WA,2/15/2013 20:15 +Kingman,,SPHERE,AZ,2/15/2013 20:30 +Redondo Beach,,CIRCLE,CA,2/15/2013 22:00 +Chesapeake,,LIGHT,VA,2/16/2013 2:00 +Los Angeles,ORANGE,SPHERE,CA,2/16/2013 14:50 +Riverside,RED,LIGHT,CA,2/16/2013 18:00 +Bellingham,,FIREBALL,WA,2/16/2013 18:45 +Fairlawn,,,OH,2/16/2013 20:00 +Millersville,,,PA,2/16/2013 20:30 +Rochester,,LIGHT,NY,2/16/2013 20:30 +Denver,ORANGE,OVAL,CO,2/16/2013 21:00 +Fremont,ORANGE,CIRCLE,CA,2/16/2013 21:00 +Golden Valley,ORANGE,LIGHT,MN,2/16/2013 21:15 +Louisville,,SPHERE,KY,2/16/2013 22:20 +Phoenix,,FIREBALL,AZ,2/16/2013 23:20 +Corydon,,TRIANGLE,IN,2/17/2013 2:11 +Forest Grove,ORANGE,FIREBALL,OR,2/17/2013 12:00 +Chester,ORANGE,VARIOUS,TX,2/17/2013 20:00 +Lincoln Park,,TRIANGLE,MI,2/17/2013 21:00 +Crestview Hills,ORANGE,CIRCLE,KY,2/17/2013 23:30 +Rialto,,OVAL,CA,2/17/2013 23:45 +Cut Off,,OVAL,LA,2/18/2013 16:00 +Spokane County,,FIREBALL,WA,2/18/2013 21:00 +Fort Wayne,,LIGHT,IN,2/18/2013 21:16 +Columbus,,FORMATION,GA,2/18/2013 22:50 +Monterey,,CYLINDER,CA,2/19/2013 0:30 +Stillwater,,LIGHT,OK,2/19/2013 4:39 +Bastrop,,DISK,TX,2/19/2013 12:30 +Media,ORANGE,OVAL,PA,2/19/2013 17:00 +Lexington,,TRIANGLE,SC,2/19/2013 19:00 +North Lauderdale,ORANGE,FIREBALL,FL,2/19/2013 19:00 +Dade City,ORANGE,SPHERE,FL,2/19/2013 19:30 +Cascade Locks,RED,TRIANGLE,OR,2/19/2013 21:00 +Watertown Square,,LIGHT,MA,2/19/2013 23:30 +Tucson,,CIRCLE,AZ,2/20/2013 1:30 +Chandler,,CIRCLE,AZ,2/20/2013 3:15 +Anderson,RED,FORMATION,SC,2/20/2013 10:45 +Olympia,,LIGHT,WA,2/20/2013 19:15 +Marathon,RED,FIREBALL,FL,2/20/2013 20:00 +Hercules,RED ORANGE,SPHERE,CA,2/20/2013 20:30 +Lyme,,RECTANGLE,CT,2/20/2013 21:00 +Sarasota,,LIGHT,FL,2/20/2013 21:00 +Huber Heights,,,OH,2/20/2013 21:15 +Fredericksburg,,,VA,2/20/2013 22:30 +Long lake,,CHEVRON,MN,2/21/2013 19:00 +Pittsfield,,CIRCLE,MA,2/21/2013 19:30 +Germantown,,DIAMOND,OH,2/21/2013 22:00 +Duanesburg,,OVAL,NY,2/22/2013 0:03 +Buffalo,,FIREBALL,NY,2/22/2013 7:20 +West Palm Beach,,CIRCLE,FL,2/22/2013 19:00 +Beaumont,RED,OTHER,CA,2/22/2013 19:10 +Piscataquis Co.,ORANGE,FIREBALL,ME,2/22/2013 19:15 +Vallejo,,LIGHT,CA,2/22/2013 21:45 +San Diego,RED,LIGHT,CA,2/22/2013 22:00 +Pocono Lake,RED ORANGE,FIREBALL,PA,2/22/2013 23:00 +Eastvale,,SPHERE,CA,2/22/2013 23:30 +Midlothian,,TRIANGLE,VA,2/23/2013 6:50 +Grand Canyon,,CIGAR,AZ,2/23/2013 11:00 +Phillips,,LIGHT,WI,2/23/2013 17:20 +Whittier,RED,CIRCLE,CA,2/23/2013 18:57 +La Mirada,ORANGE,SPHERE,CA,2/23/2013 19:00 +Greenville,ORANGE,LIGHT,SC,2/23/2013 19:40 +Redondo Beach,,FORMATION,CA,2/23/2013 19:43 +Glendale,,LIGHT,AZ,2/23/2013 19:45 +St. Louis,YELLOW,TRIANGLE,MO,2/23/2013 19:45 +Palmer,ORANGE,LIGHT,AK,2/23/2013 21:30 +Guilford,,SPHERE,CT,2/24/2013 0:00 +Bakersfield,,LIGHT,CA,2/24/2013 6:28 +Pasadena,,FORMATION,CA,2/24/2013 11:00 +Florence,,FORMATION,SC,2/24/2013 17:00 +Marion,ORANGE,CIGAR,IN,2/24/2013 18:00 +Addison,,SPHERE,IL,2/24/2013 18:20 +Wilkes-Barre,,LIGHT,PA,2/24/2013 18:37 +Pigeon Forge,RED,TRIANGLE,TN,2/24/2013 19:10 +Rockwood,BLUE,DISK,MI,2/24/2013 20:19 +Poughkkepsie,RED,CIRCLE,NY,2/24/2013 21:30 +Smarr,,OTHER,GA,2/24/2013 23:21 +Fresno,,LIGHT,CA,2/25/2013 0:02 +Oregon City,,,OR,2/25/2013 4:00 +Columbus,,CIRCLE,OH,2/25/2013 5:30 +McKinney,,EGG,TX,2/25/2013 13:00 +Las Vegas,,OVAL,NV,2/25/2013 15:30 +Eugene,,SPHERE,OR,2/25/2013 22:30 +Frostburg,,CHEVRON,MD,2/25/2013 22:30 +Tampa,,LIGHT,FL,2/25/2013 23:14 +Porterville,,OTHER,CA,2/26/2013 0:00 +East Stroudsburg,,TRIANGLE,PA,2/26/2013 3:00 +Liverpool,,SPHERE,NY,2/26/2013 6:00 +Woodville,RED,FIREBALL,TX,2/26/2013 8:30 +Augusta,RED,LIGHT,GA,2/26/2013 12:30 +South Lake Buena Vista,,CIRCLE,FL,2/26/2013 13:00 +Las Vegas,,CIRCLE,NV,2/26/2013 17:30 +Florence,,DISK,SC,2/26/2013 18:00 +Kearney,,,NE,2/26/2013 18:30 +Arlington,,OVAL,TX,2/26/2013 19:15 +Columbia,,FIREBALL,MO,2/26/2013 21:00 +Brawley,ORANGE,TRIANGLE,CA,2/26/2013 21:05 +New York City,,LIGHT,NY,2/26/2013 21:22 +Solebury,,,PA,2/26/2013 23:55 +Oakley,,OVAL,CA,2/27/2013 17:00 +Raleigh,,TRIANGLE,NC,2/27/2013 19:00 +Wichita Falls,ORANGE,LIGHT,TX,2/27/2013 19:00 +Raleigh,,OTHER,NC,2/27/2013 19:20 +Hampton,,CIRCLE,VA,2/27/2013 20:00 +Rohnert Park,RED,TRIANGLE,CA,2/27/2013 20:00 +Smithfield,,OTHER,NC,2/27/2013 20:00 +Tequesta,RED,FIREBALL,FL,2/27/2013 20:10 +Santa Ana,ORANGE,LIGHT,CA,2/27/2013 21:00 +Dunn,,,NC,2/27/2013 22:30 +Nampa,,CIRCLE,ID,2/28/2013 7:30 +Bellingham,ORANGE,OVAL,WA,2/28/2013 10:00 +San Diego,,OVAL,CA,2/28/2013 13:00 +Reno,BLUE,SPHERE,NV,2/28/2013 15:30 +Carmichael,,FORMATION,CA,2/28/2013 18:00 +Santa Fe,RED GREEN,LIGHT,NM,2/28/2013 18:55 +Charleston,,LIGHT,SC,2/28/2013 19:55 +Cottonwood,,SPHERE,CA,2/28/2013 20:30 +Wichita Falls,ORANGE,LIGHT,TX,2/28/2013 21:30 +Fort Hunter Liggett,,CHEVRON,CA,2/28/2013 22:15 +Salt Lake City,,DISK,TX,3/1/2013 0:00 +Portland,,CIRCLE,OR,3/1/2013 0:30 +Richmond,,CIRCLE,VA,3/1/2013 5:33 +Millican,RED,LIGHT,TX,3/1/2013 8:15 +Maitland,BLUE,TRIANGLE,FL,3/1/2013 8:30 +Lake Jackson,YELLOW,FIREBALL,TX,3/1/2013 19:20 +China Spring,RED,TRIANGLE,TX,3/1/2013 19:30 +Wichita Falls,ORANGE,FLASH,TX,3/1/2013 19:30 +Houston,,OTHER,TX,3/1/2013 20:01 +Palmer,ORANGE,CIRCLE,AK,3/1/2013 21:00 +El Centro,ORANGE,TRIANGLE,CA,3/1/2013 21:05 +Virginia Beach,ORANGE,FIREBALL,VA,3/1/2013 22:05 +Dublin,,SPHERE,OH,3/1/2013 22:45 +Charleston,,TRIANGLE,WV,3/1/2013 23:00 +Scottsdale,,,AZ,3/1/2013 23:00 +Phoenix,,CIRCLE,AZ,3/1/2013 23:35 +Brandon,BLUE,CIRCLE,MS,3/2/2013 1:00 +Ogilvie,RED ORANGE,LIGHT,MN,3/2/2013 2:00 +Princeton,,OTHER,MN,3/2/2013 16:00 +Kansas City,,LIGHT,KS,3/2/2013 19:00 +Montrose,,OVAL,CO,3/2/2013 19:00 +Montrose,RED,OVAL,CO,3/2/2013 19:00 +Akron,ORANGE,FIREBALL,OH,3/2/2013 19:07 +San Jose,ORANGE,FIREBALL,CA,3/2/2013 20:00 +Sudbury,,CHEVRON,MA,3/2/2013 20:00 +DeBary,,FIREBALL,FL,3/2/2013 21:00 +Los Angeles,,OTHER,CA,3/2/2013 21:00 +Brandon,,LIGHT,FL,3/2/2013 21:10 +Edwardsville,ORANGE,CIRCLE,IL,3/2/2013 21:55 +Edwardsville,ORANGE,LIGHT,IL,3/2/2013 21:55 +Cameron Park,,FIREBALL,CA,3/2/2013 22:00 +Seattle,,FIREBALL,WA,3/2/2013 22:17 +Hartly,,CIRCLE,DE,3/2/2013 22:20 +Culpeper,,OTHER,VA,3/3/2013 1:00 +Medford,,CYLINDER,MA,3/3/2013 16:10 +Bethel,RED,CIRCLE,AK,3/3/2013 18:30 +Hillsboro,,,OR,3/3/2013 19:30 +Hillsboro,,,OR,3/3/2013 19:30 +Malibu,,LIGHT,CA,3/3/2013 19:30 +San Pedro,ORANGE,DIAMOND,CA,3/3/2013 20:00 +Zion,,FORMATION,IL,3/3/2013 20:00 +Whately,ORANGE,LIGHT,MA,3/3/2013 20:40 +Cranston,,FIREBALL,RI,3/3/2013 21:00 +Fairfield,RED YELLOW BLUE,OTHER,CA,3/3/2013 21:00 +San Leandro,ORANGE,SPHERE,CA,3/3/2013 21:30 +Bullhead City,,FIREBALL,AZ,3/3/2013 21:57 +Sunset,BLUE,TRIANGLE,UT,3/3/2013 22:30 +Cincinnati,RED YELLOW,LIGHT,OH,3/3/2013 23:00 +Indiana,,EGG,IN,3/4/2013 0:00 +Harrison,,,MT,3/4/2013 4:06 +Auburn,BLUE,CIRCLE,MA,3/4/2013 4:39 +Houston,,SPHERE,TX,3/4/2013 18:00 +Kenner,,LIGHT,LA,3/4/2013 19:30 +Westfield,ORANGE,CIRCLE,MA,3/4/2013 20:30 +Las Vegas,,CONE,NV,3/5/2013 1:00 +Bakersfield,,LIGHT,CA,3/5/2013 18:15 +Berkley,,CIRCLE,NJ,3/5/2013 18:30 +Normal,RED,TRIANGLE,IL,3/5/2013 20:00 +Normal,RED,TRIANGLE,IL,3/5/2013 20:00 +Walworth,,OTHER,NY,3/5/2013 20:55 +Mesquite,,LIGHT,NV,3/5/2013 21:33 +Duluth,,,GA,3/6/2013 1:00 +Katy,ORANGE,DIAMOND,TX,3/6/2013 19:15 +Pueblo,,FIREBALL,CO,3/6/2013 19:20 +St. Petersburg,ORANGE,LIGHT,FL,3/6/2013 19:50 +Eugene,RED YELLOW BLUE,OTHER,OR,3/6/2013 19:55 +Henrietta,,RECTANGLE,NY,3/6/2013 23:00 +Mineral City,,LIGHT,OH,3/7/2013 7:50 +Wenatchee,,FLASH,WA,3/7/2013 11:11 +Limon,BLUE,CIRCLE,CO,3/7/2013 11:20 +Rockmart,RED,SPHERE,GA,3/7/2013 19:00 +Brookside,,CIGAR,AL,3/7/2013 19:30 +Donalds,,TRIANGLE,SC,3/7/2013 19:45 +Alamosa,ORANGE,LIGHT,CO,3/7/2013 20:15 +Port Huron,RED,,MI,3/7/2013 20:20 +Citrus Heights,RED,OVAL,CA,3/7/2013 20:45 +Bellingham,ORANGE,CIRCLE,WA,3/7/2013 21:00 +Pittsburg,,FIREBALL,KS,3/7/2013 23:09 +Independence,,LIGHT,KY,3/8/2013 2:20 +Caniste,ORANGE,LIGHT,NY,3/8/2013 7:56 +Snoqualmie,RED,LIGHT,WA,3/8/2013 18:40 +Albuquerque,GREEN,,NM,3/8/2013 19:45 +Aurora,ORANGE,FIREBALL,IL,3/8/2013 20:15 +Spokane,,FORMATION,WA,3/8/2013 21:00 +Alliance,,FORMATION,OH,3/8/2013 21:02 +Akron,,FIREBALL,OH,3/8/2013 21:15 +Boca Raton,,FIREBALL,FL,3/8/2013 21:30 +Fairview,ORANGE,VARIOUS,OR,3/8/2013 22:20 +Eagle,RED GREEN BLUE,,ID,3/8/2013 22:32 +Ventura,,FIREBALL,CA,3/8/2013 23:00 +Columbus,ORANGE,SPHERE,OH,3/9/2013 0:00 +Thibodaux,,FIREBALL,LA,3/9/2013 0:00 +Mansfield,,TRIANGLE,OH,3/9/2013 0:20 +Seattle,,FIREBALL,WA,3/9/2013 1:08 +Coeur d'Alene,,LIGHT,ID,3/9/2013 1:15 +Coeur d'Alene,,LIGHT,ID,3/9/2013 1:15 +Hartford,GREEN,LIGHT,CT,3/9/2013 2:30 +Fairfax,,TRIANGLE,VA,3/9/2013 8:00 +Lancaster,ORANGE,RECTANGLE,OH,3/9/2013 11:00 +Lancaster,ORANGE,RECTANGLE,OH,3/9/2013 11:00 +Dumfries,,FORMATION,VA,3/9/2013 18:00 +Syracuse,,LIGHT,NY,3/9/2013 19:00 +Providence,,OTHER,RI,3/9/2013 19:30 +Fayetteville,,CHEVRON,WV,3/9/2013 20:30 +Gilbert,RED YELLOW,TRIANGLE,AZ,3/9/2013 20:30 +Redondo Beach,,DISK,CA,3/9/2013 20:40 +Bowling Green,,FORMATION,OH,3/9/2013 21:00 +Cullman,,DIAMOND,AL,3/9/2013 21:00 +Portland,,FIREBALL,OR,3/9/2013 21:12 +Greensburg,GREEN BLUE,RECTANGLE,PA,3/9/2013 21:15 +Boise,,CROSS,ID,3/9/2013 21:22 +Benicia,RED,CYLINDER,CA,3/9/2013 22:00 +Long Beach,,FIREBALL,CA,3/9/2013 22:00 +Portland,ORANGE,TRIANGLE,OR,3/9/2013 22:05 +Riverside,GREEN,OVAL,CA,3/9/2013 22:10 +Charlotte,,OTHER,NC,3/9/2013 22:15 +Yucaipa,RED,CIRCLE,CA,3/9/2013 22:20 +Merced,,FIREBALL,CA,3/9/2013 23:05 +Lebanon,,FORMATION,PA,3/9/2013 23:40 +Lebanon,,FORMATION,PA,3/9/2013 23:40 +Tacoma,,FIREBALL,WA,3/10/2013 3:00 +West Springfield,RED,CIGAR,MA,3/10/2013 12:00 +Fairport,,TRIANGLE,NY,3/10/2013 12:50 +Glendale,,FIREBALL,CA,3/10/2013 15:45 +Pacific Ocean,,FORMATION,CA,3/10/2013 20:00 +Redondo Beach,,DISK,CA,3/10/2013 20:40 +Lakeside,,TRIANGLE,OR,3/10/2013 21:30 +New Washington,,LIGHT,OH,3/10/2013 21:30 +Winters,YELLOW BLUE,EGG,TX,3/10/2013 21:31 +Leesburg,,CIRCLE,GA,3/10/2013 22:35 +Honolulu,,FIREBALL,HI,3/11/2013 6:15 +Maricopa,ORANGE,SPHERE,AZ,3/11/2013 18:00 +Tuscaloosa,ORANGE,FIREBALL,AL,3/11/2013 18:00 +Maricopa,,LIGHT,AZ,3/11/2013 19:00 +Corona,,LIGHT,CA,3/11/2013 20:18 +Ormond Beach,RED ORANGE,,FL,3/11/2013 22:45 +Yelm,,LIGHT,WA,3/12/2013 0:00 +Natchez,,OVAL,MS,3/12/2013 2:00 +Bethlem,,TRIANGLE,PA,3/12/2013 8:45 +Pensacola,,VARIOUS,FL,3/12/2013 22:00 +Port Orange,,,FL,3/12/2013 22:00 +Huffman,,FIREBALL,TX,3/12/2013 22:50 +Greer,,LIGHT,SC,3/12/2013 23:05 +Florien,,TRIANGLE,LA,3/13/2013 1:00 +Tucson,BLUE,CIRCLE,AZ,3/13/2013 1:30 +Kentfield,,SPHERE,CA,3/13/2013 5:00 +San Francisco,,TEARDROP,CA,3/13/2013 13:00 +Ellington,,,CT,3/13/2013 13:30 +Etiwanda,ORANGE,OVAL,CA,3/13/2013 19:00 +Gurnee,,CIRCLE,IL,3/13/2013 19:00 +Merced,ORANGE,CIRCLE,CA,3/13/2013 20:48 +Albuquerque,,FORMATION,NM,3/13/2013 22:15 +Pottstown,,,PA,3/13/2013 22:15 +Santa Fe,,,NM,3/14/2013 2:00 +Louisville,,TRIANGLE,KY,3/14/2013 2:13 +Mt. Pleasant,BLUE,LIGHT,SC,3/14/2013 3:00 +Branford,,CYLINDER,CT,3/14/2013 17:40 +Dallas,,OVAL,TX,3/14/2013 18:45 +Midvale,RED ORANGE YELLOW,OVAL,UT,3/14/2013 20:25 +Tucson,,SPHERE,AZ,3/14/2013 20:30 +Garden Grove,ORANGE,VARIOUS,CA,3/14/2013 20:40 +Garden Grove,,LIGHT,CA,3/14/2013 20:50 +Arcadia,ORANGE,FIREBALL,IA,3/14/2013 21:00 +Fond du Lac,,SPHERE,WI,3/14/2013 21:00 +Grand Terrace,,FIREBALL,CA,3/15/2013 2:00 +Maui,,FLASH,HI,3/15/2013 3:45 +Huntsville,RED YELLOW,TRIANGLE,AL,3/15/2013 4:00 +Clinton,,SPHERE,TN,3/15/2013 9:00 +Eureka,,CIGAR,CA,3/15/2013 11:45 +Panther,,LIGHT,WV,3/15/2013 19:45 +Montoursville,RED GREEN BLUE,CIRCLE,PA,3/15/2013 20:00 +Woodstock,,EGG,GA,3/15/2013 20:00 +Alabaster,,FIREBALL,AL,3/15/2013 20:19 +Cape Coral,,SPHERE,FL,3/15/2013 20:34 +Dyersburg,ORANGE,SPHERE,TN,3/15/2013 20:45 +Cedar City,ORANGE,OVAL,UT,3/15/2013 22:00 +Eugene,RED,SPHERE,OR,3/15/2013 22:00 +Avondale,RED,LIGHT,AZ,3/15/2013 23:00 +Old Orchard Beach,ORANGE,CYLINDER,ME,3/15/2013 23:00 +Gloucester,,CIRCLE,MA,3/15/2013 23:30 +Baltimore City,,DISK,MD,3/16/2013 0:00 +North Pole,,LIGHT,AK,3/16/2013 5:10 +Knoxville,,TRIANGLE,TN,3/16/2013 8:35 +Pembine,,LIGHT,WI,3/16/2013 10:47 +Lone Grove,BLUE,FIREBALL,TX,3/16/2013 18:45 +Oswego,ORANGE,TRIANGLE,NY,3/16/2013 20:15 +Bradenton,,CIRCLE,FL,3/16/2013 20:35 +Cumming,GREEN,CIGAR,GA,3/16/2013 20:50 +Belmont,BLUE,OTHER,NC,3/16/2013 21:00 +Gilbert,,LIGHT,AR,3/16/2013 21:30 +Lehigh Acres,RED ORANGE,DIAMOND,FL,3/16/2013 23:00 +Wasilla,,TRIANGLE,AK,3/16/2013 23:20 +Wasilla,RED,CIRCLE,AK,3/16/2013 23:30 +St. Louis Park,GREEN,OVAL,MN,3/16/2013 23:48 +Marysville,RED YELLOW,OVAL,WA,3/17/2013 0:00 +Escondido,RED ORANGE,SPHERE,CA,3/17/2013 0:16 +Cranston,BLUE,,RI,3/17/2013 0:50 +Gulf Shores,,TRIANGLE,AL,3/17/2013 11:44 +Indiahoma,,,OK,3/17/2013 15:00 +Austin,,VARIOUS,TX,3/17/2013 17:00 +Henderson,,LIGHT,CO,3/17/2013 18:54 +Portland,ORANGE,FORMATION,OR,3/17/2013 21:30 +Tampa,,LIGHT,FL,3/17/2013 21:30 +Wanamie,,LIGHT,PA,3/18/2013 0:00 +Colorado Springs,,LIGHT,CO,3/18/2013 23:35 +Inola,,TRIANGLE,OK,3/19/2013 3:06 +Cedar Hill,,FORMATION,TX,3/19/2013 8:00 +New Paltz,ORANGE,FIREBALL,NY,3/19/2013 21:00 +North Olmsted,,DIAMOND,OH,3/19/2013 23:00 +Petaluma,,OTHER,CA,3/20/2013 0:00 +Orland Park,,OVAL,IL,3/20/2013 1:00 +Bridgewater,,TRIANGLE,MA,3/20/2013 1:53 +Shelby,,,IA,3/20/2013 4:00 +Park City,,SPHERE,UT,3/20/2013 15:00 +Round Mountain,,SPHERE,TX,3/20/2013 15:00 +Borrego,,DISK,CA,3/20/2013 18:00 +New Orleans,,FIREBALL,LA,3/20/2013 19:00 +Durham,ORANGE,SPHERE,CA,3/20/2013 20:05 +Bellingham,,FIREBALL,WA,3/20/2013 20:45 +Bremerton,,LIGHT,WA,3/20/2013 21:10 +Naples,ORANGE,CIRCLE,FL,3/20/2013 21:30 +Albany,,CYLINDER,OR,3/20/2013 23:12 +Fort Meyers,,,FL,3/21/2013 18:00 +Carlsbad,,OTHER,CA,3/21/2013 20:45 +Cotulla,,,TX,3/21/2013 21:00 +Mooresville,RED,LIGHT,NC,3/21/2013 22:01 +Orlando,,CIRCLE,FL,3/21/2013 22:10 +Englewood,GREEN,LIGHT,FL,3/21/2013 22:15 +Mt. Pleasant,,LIGHT,SC,3/21/2013 23:00 +no data,,TRIANGLE,ME,3/22/2013 0:00 +Alhambra,,LIGHT,CA,3/22/2013 3:00 +Madison,,DISK,WI,3/22/2013 5:35 +Watervliet,,SPHERE,MI,3/22/2013 9:00 +Xenia,,,OH,3/22/2013 13:35 +Solon,,FIREBALL,ME,3/22/2013 19:30 +Meriden,YELLOW,OTHER,CT,3/22/2013 19:47 +Alexandria,YELLOW,,VA,3/22/2013 19:53 +Staten Island,BLUE,FIREBALL,NY,3/22/2013 19:56 +Millsboro,,FIREBALL,DE,3/22/2013 19:58 +Nashua,GREEN,LIGHT,NH,3/22/2013 20:00 +Groton,,FIREBALL,MA,3/22/2013 20:02 +Toms River,,LIGHT,NJ,3/22/2013 21:35 +Belair,GREEN BLUE,CIRCLE,MD,3/22/2013 22:00 +Dayton,,FIREBALL,NJ,3/22/2013 22:00 +Duxbury,,CIRCLE,MA,3/22/2013 23:40 +Shelbyville,,LIGHT,IN,3/23/2013 0:00 +Citrus Heights,BLUE,LIGHT,CA,3/23/2013 9:00 +Richmond,,CIRCLE,VA,3/23/2013 9:10 +Mason,RED,FIREBALL,OH,3/23/2013 9:11 +Akron,,TRIANGLE,OH,3/23/2013 10:58 +Yakima,,VARIOUS,WA,3/23/2013 18:18 +Ithaca,,FIREBALL,NY,3/23/2013 19:59 +Ridge Mountain Elkins,,FIREBALL,WV,3/23/2013 20:00 +San Jose,RED ORANGE,LIGHT,CA,3/23/2013 20:06 +Longwood,ORANGE,SPHERE,FL,3/23/2013 20:15 +Manassas,,OVAL,VA,3/23/2013 20:30 +Anthony,,FLASH,KS,3/23/2013 21:45 +Brandon,YELLOW,DISK,FL,3/23/2013 22:00 +Spring,,TRIANGLE,TX,3/23/2013 22:30 +Seattle,ORANGE,CIRCLE,WA,3/23/2013 22:34 +Westminster,RED,FIREBALL,CA,3/23/2013 22:57 +Lafayette,ORANGE,FIREBALL,IN,3/23/2013 23:30 +Trumbull,,FORMATION,CT,3/24/2013 0:00 +Pittsburgh,,DIAMOND,PA,3/24/2013 0:05 +Plant City,,OVAL,FL,3/24/2013 0:22 +Springdale,,TRIANGLE,AR,3/24/2013 1:00 +Williamsburg,RED,SPHERE,VA,3/24/2013 23:00 +Tavares,ORANGE,OVAL,FL,3/25/2013 1:00 +Peoria,,,AZ,3/25/2013 1:45 +Tempe,GREEN,FLASH,AZ,3/25/2013 20:00 +Waldorf,,TRIANGLE,MD,3/25/2013 20:30 +Cape Coral,,LIGHT,FL,3/25/2013 22:00 +Camden,ORANGE,LIGHT,ME,3/26/2013 5:00 +Bangor,,LIGHT,ME,3/26/2013 5:15 +North Port,,LIGHT,FL,3/26/2013 6:15 +Santa Fe,,LIGHT,NM,3/26/2013 20:00 +Lake Oswego,,TRIANGLE,OR,3/26/2013 20:10 +Cocoa,,FIREBALL,FL,3/26/2013 21:00 +El Centro,ORANGE,TRIANGLE,CA,3/26/2013 21:05 +Southington,YELLOW,TRIANGLE,CT,3/27/2013 2:30 +Essex,,FIREBALL,MA,3/27/2013 18:00 +Canton,,OVAL,OH,3/27/2013 19:15 +Buhl,ORANGE,RECTANGLE,ID,3/27/2013 21:00 +Gulf Shores,,SPHERE,AL,3/27/2013 21:00 +Columbia,ORANGE,FORMATION,TN,3/27/2013 23:27 +Chicago,,TRIANGLE,IL,3/27/2013 23:41 +Kelso,RED,,WA,3/28/2013 8:30 +Lehigh Acres,,DISK,FL,3/28/2013 11:25 +Lincolnton,,FIREBALL,NC,3/28/2013 15:33 +Lincoln City,,FIREBALL,OR,3/28/2013 19:00 +Ambler,,FORMATION,PA,3/28/2013 20:00 +Thornton,,,CO,3/28/2013 20:15 +Dayton,,CIRCLE,OH,3/28/2013 21:00 +Studio City,BLUE,CYLINDER,CA,3/28/2013 21:00 +Blaine,ORANGE,FIREBALL,MN,3/28/2013 23:00 +Woodland Park,,CIRCLE,NJ,3/28/2013 23:00 +Monroe,RED,OTHER,MI,3/28/2013 23:12 +Antioch,RED YELLOW,FIREBALL,CA,3/28/2013 23:30 +Marion,RED BLUE,VARIOUS,IA,3/29/2013 0:00 +Marion,BLUE,VARIOUS,IA,3/29/2013 3:00 +Kellyton,,CYLINDER,AL,3/29/2013 10:35 +Gainsvile,,FIREBALL,FL,3/29/2013 20:00 +Maricopa,,CIRCLE,AZ,3/29/2013 20:00 +York,ORANGE,,PA,3/29/2013 20:30 +Greenbrier,ORANGE,CIRCLE,AR,3/29/2013 20:42 +Avon,,DIAMOND,NY,3/29/2013 21:00 +Gainesville,ORANGE,EGG,FL,3/29/2013 21:00 +Jacksonville Beach,ORANGE,LIGHT,FL,3/29/2013 21:00 +Rochester,ORANGE,TRIANGLE,MN,3/29/2013 21:00 +Chesapeake,,CIRCLE,VA,3/29/2013 21:20 +Chesapeake,ORANGE,TRIANGLE,VA,3/29/2013 21:30 +Phoenix,,OTHER,AZ,3/29/2013 21:30 +Lexington,RED,CIRCLE,KY,3/29/2013 23:30 +Yonkers,,LIGHT,NY,3/29/2013 23:30 +Yonkers,,LIGHT,NY,3/29/2013 23:30 +San Mateo,,LIGHT,CA,3/30/2013 0:13 +Worcester,ORANGE,CIRCLE,MA,3/30/2013 0:55 +San Jose,RED,DIAMOND,CA,3/30/2013 1:45 +Porter Ranch,,RECTANGLE,CA,3/30/2013 6:35 +Phoenix,BLUE,CIGAR,AZ,3/30/2013 9:00 +Dorchester,,VARIOUS,MA,3/30/2013 10:00 +Los angeles,,VARIOUS,CA,3/30/2013 15:00 +San Diego,,TRIANGLE,CA,3/30/2013 16:05 +Everett,,VARIOUS,WA,3/30/2013 18:45 +Miami,,LIGHT,FL,3/30/2013 20:00 +Charlottesville,ORANGE,LIGHT,VA,3/30/2013 20:20 +North Kingstown,YELLOW,,RI,3/30/2013 20:20 +Azusa,ORANGE,,CA,3/30/2013 20:40 +Lakewood,ORANGE,FIREBALL,WA,3/30/2013 20:57 +Melborune,ORANGE,CIRCLE,FL,3/30/2013 21:00 +Tyler,ORANGE,FIREBALL,TX,3/30/2013 21:00 +Phoenix,ORANGE,FIREBALL,AZ,3/30/2013 21:18 +Canajoharie,,TRIANGLE,NY,3/30/2013 21:23 +Elgin,RED ORANGE,SPHERE,IL,3/30/2013 21:30 +Elgin,RED ORANGE,SPHERE,IL,3/30/2013 21:30 +Aurora,RED,LIGHT,CO,3/30/2013 22:00 +Bay City,,TRIANGLE,MI,3/30/2013 22:00 +Navarre,,FIREBALL,FL,3/30/2013 22:00 +Pickerington,,TRIANGLE,OH,3/30/2013 22:00 +Dorchester,,LIGHT,MA,3/30/2013 22:30 +Ionia,,,MI,3/30/2013 22:39 +Palmyra,,OTHER,PA,3/30/2013 22:42 +Clearfield,ORANGE,SPHERE,UT,3/31/2013 0:00 +Mesa,BLUE,LIGHT,AZ,3/31/2013 0:00 +Corona,,LIGHT,CA,3/31/2013 1:00 +Muncie,YELLOW,TRIANGLE,IN,3/31/2013 3:00 +Irvine,,VARIOUS,CA,3/31/2013 13:10 +Jackson,,FIREBALL,MI,3/31/2013 20:30 +Fair Oaks,ORANGE,CIRCLE,CA,3/31/2013 20:45 +Fort Bragg,ORANGE,SPHERE,CA,3/31/2013 21:00 +Sahuarita,,LIGHT,AZ,3/31/2013 21:00 +Kankakee,BLUE,CONE,IL,3/31/2013 21:42 +Springfield,YELLOW,LIGHT,MO,3/31/2013 21:45 +Seattle,YELLOW GREEN,,WA,3/31/2013 22:00 +Orange,,FORMATION,TX,3/31/2013 22:15 +Fair Oaks,,CIRCLE,CA,3/31/2013 22:45 +Watauga,,SPHERE,TX,4/1/2013 3:00 +Plymouth,ORANGE,FIREBALL,MA,4/1/2013 6:30 +Colorado Springs,,CIRCLE,CO,4/1/2013 17:00 +Wilmington,,CHEVRON,NC,4/1/2013 20:00 +Lakeside,,FORMATION,CA,4/1/2013 20:13 +Santee,,LIGHT,CA,4/1/2013 20:13 +San Diego,GREEN,VARIOUS,CA,4/1/2013 20:15 +San Jose,,FORMATION,CA,4/1/2013 20:30 +San Jose,,LIGHT,CA,4/1/2013 20:31 +Eugene,,LIGHT,OR,4/1/2013 20:40 +Clermont,,FIREBALL,FL,4/1/2013 21:00 +Brookston,,TRIANGLE,IN,4/1/2013 21:25 +Fife,,LIGHT,WA,4/1/2013 21:57 +Elizabethtown,,LIGHT,KY,4/1/2013 22:00 +Forest Hills,,LIGHT,NY,4/1/2013 22:00 +Moncks Corner,,TRIANGLE,SC,4/1/2013 22:02 +Reading,,LIGHT,PA,4/1/2013 22:05 +Copperas Cove,,CIRCLE,TX,4/1/2013 22:30 +Chapel Hill,RED,TRIANGLE,NC,4/2/2013 3:00 +Pacific Grove,ORANGE,OTHER,CA,4/2/2013 20:30 +Saint Petersburg,,OVAL,FL,4/2/2013 21:05 +Fort Defiance,,OVAL,AZ,4/2/2013 21:15 +Eagle River,,LIGHT,WI,4/2/2013 22:20 +Conway,,,SC,4/2/2013 22:35 +Fresno,RED ORANGE,LIGHT,CA,4/2/2013 23:28 +New Baltimore,,TRIANGLE,MI,4/3/2013 5:30 +Northampton,,TRIANGLE,MA,4/3/2013 12:30 +Medford,,DISK,MA,4/3/2013 16:10 +Hillsboro,,,OR,4/3/2013 19:30 +Ridgecrest,ORANGE,SPHERE,CA,4/3/2013 21:35 +Centerville,,CIRCLE,OH,4/3/2013 23:00 +Lancaster,,SPHERE,NY,4/3/2013 23:15 +Seattle,,SPHERE,WA,4/4/2013 0:30 +Cherryvale,GREEN BLUE,FORMATION,KS,4/4/2013 13:00 +Red Wing,ORANGE,TRIANGLE,MN,4/4/2013 21:04 +Indianapolis,RED,DISK,IN,4/4/2013 21:12 +Oceanside,RED ORANGE,LIGHT,CA,4/4/2013 21:55 +Fowlerton,,,TX,4/4/2013 22:30 +New York City,,OTHER,NY,4/4/2013 23:40 +Las Vegas,RED,FORMATION,NV,4/5/2013 8:30 +Westover,,OTHER,MD,4/5/2013 18:47 +Jarrettsville,,CIRCLE,MD,4/5/2013 19:00 +Chesterfield,,CIRCLE,MO,4/5/2013 20:00 +Sandy,ORANGE,FIREBALL,UT,4/5/2013 20:00 +Simi Valley,ORANGE,LIGHT,CA,4/5/2013 20:00 +Fort Lauderdale,,CIRCLE,FL,4/5/2013 20:30 +Hilmar,RED ORANGE GREEN BLUE,TRIANGLE,CA,4/5/2013 20:30 +Kitty Hawk,YELLOW,LIGHT,NC,4/5/2013 20:30 +Pittsburgh,,CIRCLE,PA,4/5/2013 21:00 +Rock Springs,,OTHER,WY,4/5/2013 21:00 +Spartanburg,RED GREEN BLUE,CIRCLE,SC,4/5/2013 22:00 +Ft. Worth,,FIREBALL,TX,4/5/2013 23:36 +Minneapolis,,CIRCLE,MN,4/6/2013 0:00 +Houston,,CIRCLE,TX,4/6/2013 8:45 +Panama City Beach,,CIRCLE,FL,4/6/2013 9:25 +Brownsville,,DIAMOND,TX,4/6/2013 10:00 +Albuquerque,,CIRCLE,NM,4/6/2013 10:35 +Mesa,YELLOW,FORMATION,AZ,4/6/2013 10:59 +Philadelphia,,SPHERE,PA,4/6/2013 16:00 +Corydon,,SPHERE,IN,4/6/2013 19:45 +Casselberry,,OTHER,FL,4/6/2013 20:00 +Greenville,RED,LIGHT,SC,4/6/2013 20:00 +Huntington Beach,,,CA,4/6/2013 20:30 +Patten,ORANGE,LIGHT,ME,4/6/2013 20:30 +Floyd,,TRIANGLE,VA,4/6/2013 20:34 +Austin,,FIREBALL,TX,4/6/2013 20:55 +Del Valle,GREEN,CIRCLE,TX,4/6/2013 21:00 +Pittsburgh,,OVAL,PA,4/6/2013 21:00 +Fredericksburg,RED,OVAL,VA,4/6/2013 21:40 +Lebanon,,CIRCLE,PA,4/6/2013 21:58 +Redwood City,YELLOW,TRIANGLE,CA,4/6/2013 22:00 +Round Lake,,LIGHT,IL,4/6/2013 22:00 +Honesdale,ORANGE,FORMATION,PA,4/6/2013 22:05 +Pittsburgh,ORANGE,FORMATION,PA,4/6/2013 22:39 +Rockport,RED,CIRCLE,MA,4/6/2013 23:00 +Slidell,,FIREBALL,LA,4/6/2013 23:00 +Charleston,ORANGE,FORMATION,SC,4/6/2013 23:30 +Dawsonville,ORANGE,LIGHT,GA,4/6/2013 23:45 +Ocala,RED,LIGHT,FL,4/7/2013 1:00 +Sequim,YELLOW,FIREBALL,WA,4/7/2013 1:28 +Williamsport,BLUE,LIGHT,MD,4/7/2013 2:00 +Plantation,,,FL,4/7/2013 11:05 +La Puente,,LIGHT,CA,4/7/2013 20:45 +Stanardsville,,FIREBALL,VA,4/7/2013 22:15 +Indiana,,OVAL,IN,4/8/2013 5:00 +Port Clinton,,CYLINDER,OH,4/8/2013 17:00 +Northport,,LIGHT,AL,4/8/2013 19:07 +Pullman,,LIGHT,WA,4/8/2013 20:00 +Columbia,,OTHER,TN,4/8/2013 20:32 +Hattiesburg,,TRIANGLE,MS,4/8/2013 21:30 +Hendersville,,SPHERE,TN,4/8/2013 22:30 +Clarkston,,LIGHT,WA,4/8/2013 23:00 +Fairfield,,TRIANGLE,CA,4/8/2013 23:00 +Springfield,RED ORANGE,,MA,4/8/2013 23:08 +Burnsville,,OTHER,NC,4/9/2013 1:15 +Smith Center,YELLOW,DISK,KS,4/9/2013 14:00 +East Dennis,RED,CIRCLE,MA,4/9/2013 19:30 +Indian Wells,,SPHERE,CA,4/9/2013 20:00 +Chillicothe,ORANGE,SPHERE,OH,4/9/2013 21:00 +St. Louis,,CIRCLE,MO,4/9/2013 21:00 +Santa Barbara,,,CA,4/9/2013 21:15 +San Francisco,,FIREBALL,CA,4/9/2013 21:45 +Columbus,,RECTANGLE,OH,4/9/2013 21:50 +Columbia,,CIRCLE,PA,4/9/2013 22:00 +Los Alamitos,ORANGE,FIREBALL,CA,4/9/2013 22:00 +Redwood City,RED,CIGAR,CA,4/9/2013 22:00 +Winchester,,CIRCLE,VA,4/10/2013 1:00 +Medford,,SPHERE,MA,4/10/2013 12:00 +Seattle,,,WA,4/10/2013 18:00 +Clearwater,,CIRCLE,FL,4/10/2013 20:47 +Redlands,,LIGHT,CA,4/10/2013 21:12 +Bethany,,,OK,4/11/2013 0:00 +Burbank,,SPHERE,CA,4/11/2013 1:00 +Torrance,ORANGE,LIGHT,CA,4/11/2013 8:50 +Highlands Ranch,,TRIANGLE,CO,4/11/2013 21:00 +San Francisco,,TRIANGLE,CA,4/11/2013 22:00 +North Huntingdon,,FIREBALL,PA,4/11/2013 23:00 +Deerfield,,LIGHT,NY,4/11/2013 23:40 +Augusta,,CIRCLE,GA,4/12/2013 0:00 +Las Vegas,RED,FIREBALL,NV,4/12/2013 0:00 +Boston,RED YELLOW,OTHER,MA,4/12/2013 3:00 +Front Royal,,LIGHT,VA,4/12/2013 9:50 +Fernley,,TRIANGLE,NV,4/12/2013 13:00 +Provo,,CIRCLE,UT,4/12/2013 17:40 +Sacramento,,CIRCLE,CA,4/12/2013 20:00 +Ruskin,RED,OVAL,FL,4/12/2013 21:20 +Provo,,CHEVRON,UT,4/12/2013 21:28 +Warr Acres,,LIGHT,OK,4/12/2013 22:21 +Colorado Springs,,OTHER,CO,4/12/2013 22:30 +Livermore,BLUE,OTHER,CA,4/12/2013 23:00 +Austin,,LIGHT,TX,4/12/2013 23:45 +Webster City,YELLOW,LIGHT,IA,4/13/2013 5:25 +Charlotte,,RECTANGLE,NC,4/13/2013 11:40 +Nashville,,VARIOUS,TN,4/13/2013 11:45 +Nashville,,OTHER,TN,4/13/2013 15:45 +Bourbonnais,,FIREBALL,IL,4/13/2013 20:00 +Norfolk,ORANGE,LIGHT,VA,4/13/2013 20:15 +Holmen,,LIGHT,WI,4/13/2013 20:30 +Kenmore,,LIGHT,WA,4/13/2013 21:00 +Little Rock,ORANGE,OVAL,AR,4/13/2013 21:00 +Garland,,OVAL,TX,4/13/2013 21:45 +Albuquerque,,LIGHT,NM,4/13/2013 22:00 +Paragon,RED,SPHERE,IN,4/13/2013 22:00 +Carney,GREEN,LIGHT,MD,4/13/2013 22:23 +Wilbraham,ORANGE,FIREBALL,MA,4/13/2013 22:30 +Centreville,,OTHER,VA,4/13/2013 22:31 +Edgewater,,LIGHT,FL,4/13/2013 23:00 +Los Angeles,,FIREBALL,CA,4/13/2013 23:00 +New Castle,,FORMATION,PA,4/13/2013 23:14 +Chicago,ORANGE,,IL,4/13/2013 23:30 +Winona,ORANGE,FIREBALL,MN,4/13/2013 23:30 +Harrison Twp.,,SPHERE,MI,4/14/2013 0:00 +Kingston,,CIRCLE,NY,4/14/2013 0:00 +New Castle,ORANGE,LIGHT,PA,4/14/2013 0:30 +Bartlett,,,IL,4/14/2013 2:00 +Hayes,,LIGHT,VA,4/14/2013 4:15 +Norwalk,,OTHER,CT,4/14/2013 11:30 +Imperial Beach,RED,FIREBALL,CA,4/14/2013 20:00 +Oak Forest,RED,LIGHT,IL,4/14/2013 20:00 +Rockledge,ORANGE,SPHERE,PA,4/14/2013 20:07 +Oaks,ORANGE,CIRCLE,PA,4/14/2013 20:45 +Hudson Falls,,,NY,4/14/2013 20:53 +Oxford,YELLOW,FORMATION,OH,4/14/2013 20:57 +Saylorsburg,RED BLUE,LIGHT,PA,4/14/2013 21:30 +Colorado Springs,,,CO,4/14/2013 21:35 +Arlington,,CYLINDER,TX,4/14/2013 22:30 +Nelsonville,RED BLUE,SPHERE,OH,4/15/2013 10:25 +Nelsonville,RED BLUE,SPHERE,OH,4/15/2013 10:25 +Corbin,,SPHERE,KY,4/15/2013 20:00 +Jal,RED,LIGHT,NM,4/15/2013 20:00 +Gastonia,,LIGHT,NC,4/15/2013 21:30 +Thomasville,RED YELLOW GREEN BLUE,DISK,NC,4/15/2013 21:30 +Elgin,,DIAMOND,SC,4/15/2013 21:35 +Buffalo,,CYLINDER,MN,4/15/2013 23:00 +Everett,,FIREBALL,WA,4/15/2013 23:00 +Albion,RED,TRIANGLE,IN,4/15/2013 23:35 +Ramsey,,,MN,4/16/2013 0:00 +Johnsonville,RED ORANGE,VARIOUS,NY,4/16/2013 0:15 +Louisville,,CIRCLE,OH,4/16/2013 3:30 +Amston,,TRIANGLE,CT,4/16/2013 19:20 +Las Vegas,,LIGHT,NV,4/16/2013 19:45 +Ventura,,LIGHT,CA,4/16/2013 20:40 +Wilmington,,,CT,4/16/2013 21:08 +Placerville,ORANGE,CIRCLE,CA,4/16/2013 21:30 +Clayton,,CROSS,ID,4/16/2013 21:45 +Kahlotus,,FIREBALL,WA,4/16/2013 22:00 +Minnetonka,,CIRCLE,MN,4/16/2013 22:00 +Townsend,,CIGAR,MT,4/16/2013 22:00 +Bartlett,,TRIANGLE,IL,4/17/2013 0:00 +Ventura,,,CA,4/17/2013 2:52 +Little Falls,,DIAMOND,NJ,4/17/2013 10:15 +Surry,,CIRCLE,VA,4/17/2013 21:00 +Brownsville,BLUE,CIRCLE,PA,4/17/2013 21:25 +Brick,,CIRCLE,NJ,4/17/2013 21:30 +Stuarts Draft,,LIGHT,VA,4/17/2013 23:30 +Parker,,FIREBALL,AZ,4/18/2013 8:45 +Litchfield Park,,OTHER,AZ,4/18/2013 11:00 +Exeter,,DIAMOND,RI,4/18/2013 20:00 +Prescott,ORANGE,CIRCLE,AZ,4/18/2013 21:30 +Potosi,,,WI,4/18/2013 23:39 +Chatham,,OVAL,IL,4/18/2013 23:55 +Ludlow,,CIRCLE,OK,4/19/2013 0:00 +West Liberty,,LIGHT,KY,4/19/2013 5:30 +Santa Monica,,TRIANGLE,CA,4/19/2013 10:05 +rte 9,,OTHER,ME,4/19/2013 17:00 +New Durham,,,NH,4/19/2013 18:30 +Austin,RED,SPHERE,TX,4/19/2013 20:00 +Bay Point,,LIGHT,CA,4/19/2013 22:30 +West Valley,,FORMATION,UT,4/20/2013 0:00 +Allendorf,,LIGHT,IA,4/20/2013 3:20 +Tindall AFB,,LIGHT,FL,4/20/2013 10:30 +New York City,,DISK,NY,4/20/2013 17:00 +New Albany,,OVAL,IN,4/20/2013 19:00 +Hercules,RED ORANGE,SPHERE,CA,4/20/2013 20:30 +Oceanside,,OTHER,CA,4/20/2013 20:30 +Cardiff,ORANGE,SPHERE,CA,4/20/2013 21:00 +Avon,RED ORANGE,VARIOUS,OH,4/20/2013 21:20 +Vernon Hills,RED,TRIANGLE,IL,4/20/2013 21:25 +Hoffman estates,,LIGHT,IL,4/20/2013 22:00 +Newbury Park,,LIGHT,CA,4/20/2013 22:05 +Springfield,BLUE,LIGHT,OR,4/20/2013 22:15 +Shady Side,ORANGE,FIREBALL,MD,4/20/2013 22:20 +Bartlett,,SPHERE,NH,4/20/2013 23:00 +Northville,,FIREBALL,MI,4/20/2013 23:00 +Mesa,,CONE,AZ,4/20/2013 23:30 +Murfreesboro,,,TN,4/21/2013 0:00 +Paguate,,OTHER,NM,4/21/2013 0:00 +Las Cruces,,FIREBALL,NM,4/21/2013 2:00 +Tracy,ORANGE,OVAL,CA,4/21/2013 4:45 +Barkhamsted,,,CT,4/21/2013 10:30 +Palm Springs,,LIGHT,CA,4/21/2013 11:40 +Mandeville,,VARIOUS,LA,4/21/2013 20:00 +Barnstable,RED,DIAMOND,MA,4/21/2013 20:30 +Chandler,YELLOW,TRIANGLE,AZ,4/21/2013 20:30 +Deerfield,BLUE,LIGHT,MA,4/21/2013 20:30 +Albuquerque,RED GREEN,LIGHT,NM,4/21/2013 21:00 +Clinton Township,,OVAL,MI,4/21/2013 21:00 +Kekaha,,LIGHT,HI,4/21/2013 21:00 +Kekaha,,LIGHT,HI,4/21/2013 21:00 +Boston,GREEN,FIREBALL,MA,4/21/2013 21:30 +New York City,,LIGHT,NY,4/21/2013 21:50 +Hector,,RECTANGLE,MN,4/21/2013 22:00 +Attica,,OVAL,MI,4/21/2013 22:15 +multiple,,FORMATION,MA,4/21/2013 23:10 +Temecula,,CIRCLE,CA,4/21/2013 23:15 +Monroe Twp,,CIRCLE,NJ,4/21/2013 23:30 +Mineral Wells,,LIGHT,WV,4/21/2013 23:45 +Boulder,,DISK,CO,4/22/2013 2:04 +Phoenix,,SPHERE,AZ,4/22/2013 18:00 +Salem,BLUE,CIGAR,OR,4/22/2013 18:25 +Elk Grove,,CIGAR,CA,4/22/2013 21:00 +Litchfield,,TRIANGLE,ME,4/22/2013 21:00 +Superior,,FIREBALL,AZ,4/22/2013 21:00 +Memphis,,DIAMOND,TN,4/22/2013 22:00 +Arlington Heights,ORANGE,FORMATION,IL,4/22/2013 22:10 +Toledo,,LIGHT,OR,4/22/2013 22:15 +Lihue,,LIGHT,HI,4/22/2013 22:45 +Grand Rapids,ORANGE,OTHER,MI,4/22/2013 23:00 +Pearl River,GREEN,DIAMOND,LA,4/22/2013 23:50 +Exeter,,LIGHT,NE,4/23/2013 0:00 +Ypsilanti,RED,TRIANGLE,MI,4/23/2013 3:15 +Babson Park,ORANGE YELLOW,FIREBALL,FL,4/23/2013 20:50 +London,,TRIANGLE,KY,4/23/2013 21:00 +South Fulton,,CIRCLE,TN,4/23/2013 21:00 +Chesaprake,,SPHERE,VA,4/23/2013 21:55 +Lexington,RED BLUE,TRIANGLE,NC,4/23/2013 22:00 +Clinton,RED,TRIANGLE,NY,4/23/2013 23:00 +Jacksonville,,FIREBALL,FL,4/24/2013 0:00 +Stillwater,,LIGHT,OK,4/24/2013 0:00 +Rochester,,LIGHT,WA,4/24/2013 2:45 +Manchester,RED BLUE,CIRCLE,NJ,4/24/2013 3:30 +Elk County,,FIREBALL,KS,4/24/2013 6:00 +Monroe,RED,FORMATION,WA,4/24/2013 20:20 +Macungie,RED,,PA,4/24/2013 20:30 +Glendale,,TRIANGLE,AZ,4/24/2013 21:00 +Medford,BLUE,LIGHT,OR,4/24/2013 21:15 +Briggsville,,OTHER,AR,4/24/2013 21:20 +Hillsboro,RED,,OR,4/24/2013 21:45 +Grainfield,RED,TRIANGLE,KS,4/24/2013 22:00 +Carolina Beach,,LIGHT,NC,4/24/2013 22:45 +Carolina Beach,,CIRCLE,NC,4/24/2013 23:00 +Forsyth,,LIGHT,MO,4/24/2013 23:00 +Mondamin,ORANGE,CIRCLE,IA,4/25/2013 2:00 +Franklin,,SPHERE,WI,4/25/2013 5:30 +Bexley,ORANGE,LIGHT,OH,4/25/2013 7:35 +Indianapolis,RED,LIGHT,IN,4/25/2013 8:45 +Albuquerque,,RECTANGLE,NM,4/25/2013 9:28 +Foley,BLUE,FLASH,AL,4/25/2013 10:43 +Cherry Grove,ORANGE,TRIANGLE,SC,4/25/2013 20:00 +Conway,,CIRCLE,AR,4/25/2013 20:30 +Acton,RED,TRIANGLE,ME,4/25/2013 20:45 +Chattanooga,,CIRCLE,TN,4/25/2013 20:45 +Hayden,ORANGE BLUE,FIREBALL,ID,4/25/2013 21:15 +Leonardo,ORANGE,SPHERE,NJ,4/25/2013 21:15 +Prescott Valley,ORANGE,VARIOUS,AZ,4/25/2013 21:20 +Weston,,FIREBALL,FL,4/25/2013 21:24 +Escondido,ORANGE,CIRCLE,CA,4/25/2013 21:30 +Olalla,,SPHERE,WA,4/25/2013 21:30 +Phoenix,,CIRCLE,AZ,4/25/2013 22:30 +Englewood,,CYLINDER,CO,4/25/2013 23:50 +Quincy,,TRIANGLE,MA,4/26/2013 3:30 +"Huntington,beach",,DIAMOND,CA,4/26/2013 9:00 +Scappoose,,CIRCLE,OR,4/26/2013 11:46 +Lake Oswego,,LIGHT,OR,4/26/2013 20:00 +Birmingham,,LIGHT,AL,4/26/2013 20:20 +Beverly,YELLOW,CIRCLE,MA,4/26/2013 21:00 +Tucson,ORANGE,LIGHT,AZ,4/26/2013 21:00 +Minnetonka,,CIRCLE,MN,4/26/2013 21:15 +Myrtle Beach,,LIGHT,SC,4/26/2013 21:30 +Orlando,,DIAMOND,FL,4/26/2013 21:30 +Cornelius,ORANGE,CIRCLE,OR,4/26/2013 21:40 +Matamoras,,LIGHT,PA,4/26/2013 21:40 +Lynchburg,,TRIANGLE,VA,4/26/2013 22:00 +Toledo,,FIREBALL,OH,4/26/2013 22:00 +Blaine,,FORMATION,MN,4/26/2013 22:10 +Orem,RED,LIGHT,UT,4/26/2013 22:10 +Boise,,TRIANGLE,ID,4/26/2013 22:15 +Austin,,RECTANGLE,TX,4/26/2013 23:00 +Prattville,RED,LIGHT,AL,4/26/2013 23:00 +Prattville,,,AL,4/26/2013 23:13 +Lacey,RED,LIGHT,WA,4/26/2013 23:27 +Lacey,,SPHERE,WA,4/26/2013 23:27 +Prescott,ORANGE,FIREBALL,AZ,4/27/2013 0:00 +Scappoose,ORANGE,SPHERE,OR,4/27/2013 0:20 +Conway,RED,LIGHT,SC,4/27/2013 0:43 +Bandera,,LIGHT,TX,4/27/2013 1:00 +Lexington,ORANGE,CIRCLE,SC,4/27/2013 1:30 +Kelso,ORANGE,CIRCLE,WA,4/27/2013 2:00 +Snyder,,DISK,TX,4/27/2013 2:30 +Alloway,,LIGHT,NJ,4/27/2013 4:30 +Ocean Isle Beach,ORANGE,LIGHT,NC,4/27/2013 8:34 +Talahassee,,TRIANGLE,FL,4/27/2013 13:00 +Lake Wales,,LIGHT,FL,4/27/2013 19:00 +Allentown,RED,CIRCLE,PA,4/27/2013 19:45 +Temecula,,OVAL,CA,4/27/2013 20:30 +Crown Point,ORANGE,SPHERE,IN,4/27/2013 20:45 +Selleck,,FIREBALL,WA,4/27/2013 20:45 +Plano,,FIREBALL,IL,4/27/2013 20:53 +Edmond,,TRIANGLE,OK,4/27/2013 21:40 +Fairfax Station,,FIREBALL,VA,4/27/2013 21:45 +Sicklerville,,LIGHT,NJ,4/27/2013 21:45 +Sewell,,FORMATION,NJ,4/27/2013 21:50 +Pittsburgh,RED,CIRCLE,PA,4/27/2013 21:58 +Modesto,,,CA,4/27/2013 22:00 +New Britian,,LIGHT,CT,4/27/2013 22:00 +New Britian,ORANGE,LIGHT,CT,4/27/2013 22:00 +Union Town,,CIRCLE,OH,4/27/2013 22:00 +Minneapolis,BLUE,OTHER,MN,4/27/2013 23:00 +Apopka,ORANGE,LIGHT,FL,4/27/2013 23:15 +Caldwell,,TRIANGLE,ID,4/27/2013 23:30 +Albuquerque,,LIGHT,NM,4/28/2013 3:00 +Fresno,,LIGHT,CA,4/28/2013 4:15 +Largo,,SPHERE,MD,4/28/2013 10:30 +Safford,RED YELLOW BLUE,CIRCLE,AZ,4/28/2013 20:30 +Lake Wales,,LIGHT,FL,4/28/2013 20:45 +Albuquerque,,LIGHT,NM,4/28/2013 21:00 +Bayonne,RED,LIGHT,NJ,4/28/2013 21:00 +Chattanooga,,TRIANGLE,TN,4/28/2013 21:00 +Saint Petersburg,,FIREBALL,FL,4/28/2013 21:20 +Grants Pass,RED YELLOW,LIGHT,OR,4/28/2013 21:26 +Albuquerque,,LIGHT,NM,4/28/2013 21:30 +Englewood,RED,,FL,4/28/2013 21:30 +Wakarusa,,SPHERE,IN,4/28/2013 21:30 +Cedar Rapids,,LIGHT,IA,4/28/2013 23:30 +Sunnyvale,,CIRCLE,CA,4/29/2013 0:50 +Sunnyvale,ORANGE,CIRCLE,CA,4/29/2013 0:50 +Irvine,,,CA,4/29/2013 3:00 +St. Francis,,CIGAR,MN,4/29/2013 8:00 +Santa Fe,ORANGE,LIGHT,NM,4/29/2013 10:50 +San Antonio,,FIREBALL,TX,4/29/2013 19:15 +Davenport,,FIREBALL,FL,4/29/2013 20:05 +Oxford,,CIRCLE,MS,4/29/2013 20:15 +Mercey Hot Springs,,LIGHT,CA,4/29/2013 21:30 +Viola,YELLOW,CROSS,KS,4/29/2013 22:00 +Kuna,,LIGHT,ID,4/29/2013 22:05 +Batavia,,CIRCLE,IL,4/30/2013 2:19 +Cambridge,,TRIANGLE,MN,4/30/2013 9:30 +Culver CIty,,CIGAR,CA,4/30/2013 20:08 +Goldendale,,,WA,4/30/2013 21:00 +Smithton,,TRIANGLE,MO,4/30/2013 21:40 +Bastrop,,FORMATION,TX,4/30/2013 22:00 +Carteret,,TRIANGLE,NJ,4/30/2013 22:28 +Carteret,,TRIANGLE,NJ,4/30/2013 23:10 +Covington,,SPHERE,PA,5/1/2013 0:00 +Rockville,,TRIANGLE,MD,5/1/2013 0:00 +Stillwater,,LIGHT,OK,5/1/2013 3:20 +Collegeville,ORANGE,,CA,5/1/2013 4:00 +Grass Valley,RED,OTHER,CA,5/1/2013 10:10 +New York City,,FLASH,NY,5/1/2013 14:00 +New Haven,,OTHER,CT,5/1/2013 20:00 +Dacula,ORANGE,FIREBALL,GA,5/1/2013 20:20 +Elmont,,TRIANGLE,NY,5/1/2013 21:25 +Merrimack,,SPHERE,NH,5/1/2013 21:30 +Sauk City,,OVAL,WI,5/1/2013 21:30 +Essex Junction,,OVAL,VT,5/1/2013 21:43 +Towanda,RED,FIREBALL,IL,5/1/2013 21:53 +Grand Blanc,,,MI,5/1/2013 22:00 +Toledo,,OVAL,OH,5/1/2013 22:00 +Fort Dodge,,FLASH,IA,5/2/2013 2:15 +Littleton,,CIRCLE,CO,5/2/2013 16:17 +Gillette,,LIGHT,WY,5/2/2013 19:45 +Hobart,RED,CIRCLE,IN,5/2/2013 21:00 +Honolulu,,OTHER,HI,5/2/2013 21:00 +Santa Maria,,TEARDROP,CA,5/3/2013 0:00 +Seattle,,OTHER,WA,5/3/2013 1:05 +Venice,ORANGE,FIREBALL,CA,5/3/2013 2:30 +Barre,,LIGHT,VT,5/3/2013 8:30 +Richmond,,FIREBALL,VA,5/3/2013 8:45 +West Jordan,,TRIANGLE,UT,5/3/2013 13:30 +Taunton,,,MA,5/3/2013 19:20 +Medford,,CYLINDER,NY,5/3/2013 19:30 +Hiawatha,,TRIANGLE,IA,5/3/2013 20:00 +Exton,,LIGHT,PA,5/3/2013 21:00 +Furlong,,SPHERE,PA,5/3/2013 21:00 +Riverton,RED ORANGE,CIRCLE,UT,5/3/2013 21:00 +Riverton,,FORMATION,UT,5/3/2013 21:00 +Simpsonville,,,KY,5/3/2013 21:00 +Huntington Beach,,TRIANGLE,CA,5/3/2013 21:15 +Fredericksburg,,LIGHT,VA,5/3/2013 21:23 +Burlington,,SPHERE,WA,5/3/2013 21:45 +San Tan Valley,ORANGE,CIRCLE,AZ,5/3/2013 21:45 +Elverson,,LIGHT,PA,5/3/2013 22:05 +Mission Viejo,ORANGE,SPHERE,CA,5/3/2013 22:30 +Belchertown,,FIREBALL,MA,5/3/2013 23:00 +Marina Del Rey,,FIREBALL,CA,5/4/2013 0:13 +Idaho Falls,,CHEVRON,ID,5/4/2013 2:00 +Bremerton,RED,,WA,5/4/2013 2:45 +Reno,,OVAL,NV,5/4/2013 3:00 +Hooksett,,FIREBALL,NH,5/4/2013 3:18 +Lyons,,CIRCLE,KS,5/4/2013 4:30 +Ithaca,RED,CIRCLE,NY,5/4/2013 9:45 +Windham,,FIREBALL,ME,5/4/2013 20:00 +Florissant,,FIREBALL,MO,5/4/2013 20:30 +Manchester,,LIGHT,NH,5/4/2013 20:30 +Furlong,,OTHER,PA,5/4/2013 20:45 +Aloha,,FORMATION,OR,5/4/2013 21:00 +Brunswick,ORANGE,FIREBALL,OH,5/4/2013 21:00 +Mcelhattan,,SPHERE,PA,5/4/2013 21:00 +Sacramento,,LIGHT,CA,5/4/2013 21:00 +Sycamore,,FIREBALL,IL,5/4/2013 21:00 +Aurora,,TRIANGLE,OR,5/4/2013 21:10 +Baldwinsville,ORANGE,,NY,5/4/2013 21:30 +Joliet,,FIREBALL,IL,5/4/2013 21:30 +Williamsville,BLUE,OVAL,NY,5/4/2013 21:30 +Austin,,TRIANGLE,TX,5/4/2013 21:35 +Newport,,FIREBALL,OR,5/4/2013 21:53 +Eagle,GREEN,RECTANGLE,ID,5/4/2013 22:00 +Greenwood,RED ORANGE GREEN,FIREBALL,IN,5/4/2013 22:00 +Montgomery,,CIRCLE,TX,5/4/2013 22:00 +O'Fallon,,FLASH,IL,5/4/2013 22:00 +Portland,,LIGHT,OR,5/4/2013 22:00 +Boynton Beach,ORANGE,FIREBALL,FL,5/4/2013 22:30 +Grand Rapids,YELLOW,OTHER,MI,5/4/2013 22:30 +Huntington Beach,,FIREBALL,CA,5/4/2013 23:00 +Laveen,RED,FORMATION,AZ,5/4/2013 23:00 +Coos Bay,,,OR,5/4/2013 23:20 +Florence,ORANGE,LIGHT,OR,5/4/2013 23:30 +Austin,,OTHER,TX,5/4/2013 23:50 +Big Bay,,CIRCLE,MI,5/4/2013 23:50 +Midlothian,RED ORANGE,OVAL,IL,5/5/2013 0:00 +Rio Verde,,CIRCLE,AZ,5/5/2013 0:00 +La Crosse,ORANGE,LIGHT,WI,5/5/2013 0:30 +Sacramento,,,CA,5/5/2013 1:35 +Pittsfield,,TRIANGLE,MA,5/5/2013 12:00 +Danvers,,OVAL,MA,5/5/2013 16:00 +West Miami,,,FL,5/5/2013 17:00 +Lafayette,,CIRCLE,LA,5/5/2013 19:20 +Boca Raton,ORANGE,FIREBALL,FL,5/5/2013 21:10 +Hollywood,,LIGHT,FL,5/5/2013 21:15 +Wylie,,TRIANGLE,TX,5/5/2013 21:30 +Auburn,,SPHERE,WA,5/5/2013 22:00 +Austin,,TRIANGLE,TX,5/5/2013 22:00 +Corralitos,,,CA,5/5/2013 22:00 +West Haven,GREEN,FIREBALL,UT,5/5/2013 23:00 +Portland,RED,TEARDROP,OR,5/5/2013 23:20 +Yukon,,RECTANGLE,OK,5/5/2013 23:30 +Princeton,,TEARDROP,TX,5/6/2013 0:00 +Orlando,,FORMATION,FL,5/6/2013 5:30 +Florence,,VARIOUS,SC,5/6/2013 5:45 +Gardner,,LIGHT,MA,5/6/2013 16:50 +St. Albans,,DISK,VT,5/6/2013 22:00 +Cresco,,TRIANGLE,IA,5/6/2013 23:00 +Federal Way,,FIREBALL,WA,5/6/2013 23:26 +San Francisco,,LIGHT,CA,5/7/2013 1:40 +Santee,,DISK,CA,5/7/2013 14:30 +Pell City,,OVAL,AL,5/7/2013 18:00 +Three-Points,,CIRCLE,AZ,5/7/2013 21:00 +Villa Ridge,,CIRCLE,MO,5/7/2013 21:24 +Coatesville,ORANGE,CIRCLE,PA,5/7/2013 22:00 +Country Club Hills,,FLASH,IL,5/7/2013 22:00 +St. Cloud,ORANGE,,MN,5/7/2013 22:02 +Branford,,LIGHT,CT,5/7/2013 22:45 +Lima,,FIREBALL,OH,5/7/2013 23:00 +Albany,,FORMATION,OR,5/7/2013 23:30 +Springfield,RED,TRIANGLE,IL,5/8/2013 0:00 +Boulder,,EGG,CO,5/8/2013 13:30 +Scottsdale,,,AZ,5/8/2013 20:00 +Lake Placid,,LIGHT,FL,5/8/2013 20:50 +Onaway,,TRIANGLE,MI,5/8/2013 21:47 +Lubbock,,LIGHT,TX,5/8/2013 22:00 +Egg Harbor Township,,FIREBALL,NJ,5/8/2013 22:10 +Nassau County,ORANGE,CIRCLE,NY,5/8/2013 22:45 +Palm Desert,,VARIOUS,CA,5/8/2013 22:45 +Upper Lake,RED,LIGHT,CA,5/8/2013 23:00 +Meadowview,,TRIANGLE,VA,5/8/2013 23:41 +Dardenne Prairie,RED,TEARDROP,MO,5/8/2013 23:50 +Glen Burnie,RED,OVAL,MD,5/9/2013 0:00 +Mishawaka,,TRIANGLE,IN,5/9/2013 2:32 +Bowling Green,,FIREBALL,FL,5/9/2013 9:30 +Kalamazoo,,CYLINDER,MI,5/9/2013 18:00 +Laguna Niguel,RED ORANGE,OTHER,CA,5/9/2013 20:30 +St. Charles,,TRIANGLE,MO,5/9/2013 21:05 +Florence,,CIRCLE,SC,5/9/2013 21:39 +Canton,ORANGE,OVAL,GA,5/9/2013 21:45 +Pittsburgh,,CIRCLE,PA,5/9/2013 23:40 +Lumberton,,DISK,NJ,5/10/2013 13:00 +Corpus Christi,,DISK,TX,5/10/2013 16:50 +Philadelphia,,,PA,5/10/2013 20:00 +Norwalk,RED,OVAL,CA,5/10/2013 20:45 +New Haven,,VARIOUS,CT,5/10/2013 21:00 +Winston,ORANGE,CYLINDER,OR,5/10/2013 21:05 +Des Moines,,TRIANGLE,IA,5/10/2013 21:09 +St. George,,DISK,UT,5/10/2013 21:40 +Appleton,YELLOW,FORMATION,WI,5/10/2013 22:00 +Huntsville,ORANGE,LIGHT,AL,5/10/2013 22:00 +Stamford,ORANGE,FIREBALL,CT,5/10/2013 22:27 +Steamboat Springs,,FIREBALL,CO,5/11/2013 0:00 +Los Angeles,,OVAL,CA,5/11/2013 7:10 +Dugway,,OTHER,UT,5/11/2013 7:37 +Frisco,,OTHER,CO,5/11/2013 11:16 +Payette,,,ID,5/11/2013 13:40 +Henderson,,CIRCLE,CO,5/11/2013 15:54 +Chandler,,LIGHT,AZ,5/11/2013 19:00 +Miami,,SPHERE,FL,5/11/2013 19:00 +Bandon,ORANGE,SPHERE,OR,5/11/2013 21:00 +Wallingford,,LIGHT,CT,5/11/2013 21:00 +Orlando,RED,LIGHT,FL,5/11/2013 21:05 +Granite Bay,,FIREBALL,CA,5/11/2013 21:15 +Bandon,,SPHERE,OR,5/11/2013 21:25 +South Gate,,FIREBALL,CA,5/11/2013 21:35 +Bolivar,RED,LIGHT,OH,5/11/2013 21:56 +Ainsworth,RED,TRIANGLE,IA,5/11/2013 22:00 +Flagstaff,,LIGHT,AZ,5/11/2013 22:00 +Lake Michigan,ORANGE,CIRCLE,MI,5/11/2013 22:15 +Phoenix,,FORMATION,AZ,5/11/2013 22:15 +Irvine,,OVAL,CA,5/11/2013 22:30 +Denver,ORANGE,CIRCLE,CO,5/11/2013 23:00 +Frankfort,RED,TRIANGLE,IL,5/11/2013 23:00 +Ridgewood,RED ORANGE,CIRCLE,NY,5/11/2013 23:58 +Spokane,,CIRCLE,WA,5/12/2013 0:10 +Joliet,ORANGE,FORMATION,IL,5/12/2013 1:29 +San Francisco,,SPHERE,CA,5/12/2013 14:25 +Dedham,,CIGAR,MA,5/12/2013 18:00 +Salem,,CIRCLE,OR,5/12/2013 21:20 +Brunswick,ORANGE,LIGHT,OH,5/12/2013 21:40 +Greenville,,LIGHT,SC,5/12/2013 21:45 +Arches National Park,,,UT,5/12/2013 22:00 +San Diego,,OTHER,CA,5/12/2013 22:00 +Rockford,,FIREBALL,IL,5/12/2013 22:30 +Ogilvie,,LIGHT,MN,5/12/2013 23:35 +Area 51,,VARIOUS,AZ,5/13/2013 17:00 +Owensboro,,LIGHT,KY,5/13/2013 20:06 +Northfield,,LIGHT,NJ,5/13/2013 21:00 +Plant City,,FIREBALL,FL,5/13/2013 21:30 +Oxnard,,FIREBALL,CA,5/13/2013 21:34 +California,ORANGE,CIRCLE,MO,5/13/2013 22:00 +Portland,RED,RECTANGLE,OR,5/13/2013 22:00 +San Diego,,LIGHT,CA,5/13/2013 22:35 +Columbus,RED,VARIOUS,OH,5/13/2013 23:00 +Fremont County,,FIREBALL,CO,5/14/2013 1:15 +Lebanon,,OTHER,KY,5/14/2013 3:15 +Charlotte,,LIGHT,NC,5/14/2013 4:00 +Highland Mills,,LIGHT,NY,5/14/2013 4:00 +Parkersburg,,CIGAR,WV,5/14/2013 20:15 +Princeton,,FORMATION,WV,5/14/2013 20:45 +Franklin,,TRIANGLE,TN,5/14/2013 21:00 +Reidsville,,OTHER,NC,5/14/2013 21:00 +Tulsa,,,OK,5/14/2013 21:14 +Florence,RED,LIGHT,MT,5/14/2013 21:30 +Concord,,LIGHT,NC,5/14/2013 22:59 +Carrollton,,CIRCLE,MO,5/14/2013 23:00 +Captiva,,LIGHT,FL,5/15/2013 0:00 +Mashpee,,OTHER,MA,5/15/2013 0:00 +Greenville County,,OVAL,SC,5/15/2013 0:30 +Chester,,OTHER,SC,5/15/2013 13:00 +Fresno,,CIRCLE,CA,5/15/2013 13:00 +Denver,,CIRCLE,CO,5/15/2013 15:30 +Yuma,,LIGHT,AZ,5/15/2013 20:30 +Scott Depot,,SPHERE,WV,5/15/2013 20:40 +Dandridge,,SPHERE,TN,5/15/2013 21:00 +Captiva,,FIREBALL,FL,5/15/2013 22:00 +Greenwood,,LIGHT,AR,5/15/2013 22:00 +Santa Fe,RED,,NM,5/15/2013 22:00 +Monticello,,,MN,5/15/2013 22:30 +Beach Haven Terrace,,FIREBALL,NJ,5/15/2013 23:00 +Peoria,,LIGHT,AZ,5/15/2013 23:15 +Springfield,,LIGHT,MO,5/15/2013 23:45 +Richmond,,TRIANGLE,VA,5/16/2013 1:00 +Richmond,,TRIANGLE,KY,5/16/2013 10:20 +Pala,YELLOW,FIREBALL,CA,5/16/2013 11:40 +Highlands Ranch,,,CO,5/16/2013 16:35 +Honolulu,,EGG,HI,5/16/2013 18:35 +Clovis,,OTHER,CA,5/16/2013 19:10 +Saint Peters,,FIREBALL,MO,5/16/2013 21:00 +Chicago,,TRIANGLE,IL,5/16/2013 21:30 +Clermont,,FIREBALL,FL,5/16/2013 21:30 +Ogden,,TRIANGLE,UT,5/16/2013 22:10 +Kihei,,FIREBALL,HI,5/16/2013 22:49 +McMinnville,,,OR,5/17/2013 3:00 +Wantagh,ORANGE,CONE,NY,5/17/2013 10:00 +Glen Cove,,CIRCLE,NY,5/17/2013 19:00 +Wytheville,ORANGE,SPHERE,VA,5/17/2013 21:00 +Bellport,ORANGE,TRIANGLE,NY,5/17/2013 21:15 +Johnson City,RED ORANGE,LIGHT,TN,5/17/2013 21:19 +Colorado Springs,,FIREBALL,CO,5/17/2013 21:51 +Lansing,,LIGHT,MI,5/17/2013 22:00 +Macomb Township,,SPHERE,MI,5/17/2013 22:15 +Hamburg,,FIREBALL,PA,5/17/2013 22:20 +Neenah,,FIREBALL,WI,5/17/2013 22:30 +Luray,GREEN,CIRCLE,VA,5/18/2013 1:00 +Florence,,LIGHT,SC,5/18/2013 10:30 +Provincetown,,CROSS,MA,5/18/2013 12:00 +Murrysville,,FIREBALL,PA,5/18/2013 12:32 +Dallas,,SPHERE,TX,5/18/2013 12:35 +Bradenville,,SPHERE,PA,5/18/2013 13:00 +North Hollywood,,TRIANGLE,CA,5/18/2013 20:00 +Bellingham,,FORMATION,WA,5/18/2013 20:10 +Moore,RED,FORMATION,OK,5/18/2013 20:45 +Moore,,FORMATION,OK,5/18/2013 20:55 +Chesterton,RED,,IN,5/18/2013 21:01 +Chesterton,RED,,IN,5/18/2013 21:01 +South Yarmouth,,FIREBALL,MA,5/18/2013 21:07 +Virginia Beach,ORANGE,FIREBALL,VA,5/18/2013 21:24 +Elmhurst,RED,CIRCLE,IL,5/18/2013 21:30 +Colchester to Essex,ORANGE,LIGHT,VT,5/18/2013 21:50 +West Sacramento,,OVAL,CA,5/18/2013 22:20 +Salem,,OVAL,OR,5/18/2013 22:30 +Summerfield,,,NC,5/18/2013 22:30 +Califon,ORANGE,CIRCLE,NJ,5/18/2013 22:45 +Evansville,RED,LIGHT,IN,5/18/2013 23:00 +Lansing,,,MI,5/18/2013 23:00 +Puyallup,ORANGE,FIREBALL,WA,5/18/2013 23:00 +Shawano,ORANGE,FORMATION,WI,5/18/2013 23:30 +Hawley,,FORMATION,PA,5/18/2013 23:50 +Indianapolis,,CIRCLE,IN,5/19/2013 0:00 +Oakley,,LIGHT,CA,5/19/2013 4:00 +Paso Robles,,RECTANGLE,CA,5/19/2013 10:37 +Eddington,,CIGAR,ME,5/19/2013 18:30 +Albany,,LIGHT,NY,5/19/2013 19:00 +Burgaw,,TRIANGLE,NC,5/19/2013 19:15 +Surprise,ORANGE,SPHERE,AZ,5/19/2013 19:30 +Simpsonville,,TRIANGLE,KY,5/19/2013 20:30 +Orlando,RED,FORMATION,FL,5/19/2013 21:00 +Carol Stream,,TRIANGLE,IL,5/19/2013 21:05 +Columbus,,OTHER,OH,5/19/2013 21:30 +Lakeside,,CIRCLE,OR,5/19/2013 21:30 +South Palm Beach,BLUE,TRIANGLE,FL,5/19/2013 22:00 +New York City,,LIGHT,NY,5/19/2013 22:52 +Ladysmith,,LIGHT,VA,5/19/2013 23:05 +Union,,LIGHT,ME,5/20/2013 20:30 +Jacksonville,RED,OTHER,FL,5/20/2013 20:45 +Fall River Mills,ORANGE,SPHERE,CA,5/20/2013 21:25 +Oceanside,RED ORANGE,FIREBALL,CA,5/20/2013 21:25 +Delray Beach,,LIGHT,FL,5/20/2013 21:35 +Athens,,FLASH,AL,5/20/2013 21:45 +Port Washington,ORANGE,FIREBALL,NY,5/20/2013 22:30 +Lynbrook,,FIREBALL,NY,5/20/2013 22:45 +Hoboken,,OVAL,NJ,5/20/2013 23:00 +Cumming,GREEN,LIGHT,GA,5/21/2013 21:00 +Germantown,ORANGE,FIREBALL,WI,5/21/2013 21:18 +Olympia,,FIREBALL,WA,5/21/2013 21:45 +Virginia Beach,,CIRCLE,VA,5/21/2013 22:40 +Whitney,,TRIANGLE,TX,5/21/2013 23:00 +Hayward,,VARIOUS,CA,5/22/2013 7:00 +Sherman,,CIRCLE,TX,5/22/2013 11:30 +Pittsburg,,DISK,CO,5/22/2013 12:00 +Sacramento,,TRIANGLE,CA,5/22/2013 17:39 +Imperial,,CIRCLE,MO,5/22/2013 19:00 +Lubbock,YELLOW,TRIANGLE,TX,5/22/2013 19:00 +Lubbock,,TRIANGLE,TX,5/22/2013 19:02 +Hanalei Beach,RED,FIREBALL,HI,5/22/2013 21:40 +Everglades turnpike south,,LIGHT,FL,5/22/2013 21:45 +Grapevine,,CIGAR,TX,5/22/2013 22:40 +Goshen,,FIREBALL,NY,5/22/2013 22:50 +Euless,,CIGAR,TX,5/23/2013 0:00 +Hurst,BLUE,RECTANGLE,TX,5/23/2013 0:05 +Canon City,,CHEVRON,CO,5/23/2013 3:30 +Morrisville,,LIGHT,VT,5/23/2013 3:30 +Los Angeles,,,CA,5/23/2013 17:06 +Bomoseen,,OTHER,VT,5/23/2013 18:00 +Cross Lanes,,OTHER,WV,5/23/2013 20:15 +Columbus,,,GA,5/23/2013 23:00 +Twin Falls,ORANGE,FORMATION,ID,5/23/2013 23:00 +South Prarie,,,WA,5/24/2013 0:00 +Wittenberg,RED,LIGHT,WI,5/24/2013 0:00 +Palm Desert,,FIREBALL,CA,5/24/2013 2:00 +Plant city,,,FL,5/24/2013 8:15 +Orlando,,OTHER,FL,5/24/2013 8:40 +Eagan,,OTHER,MN,5/24/2013 16:15 +Luverne,,OTHER,AL,5/24/2013 18:30 +Sandy Springs,,SPHERE,GA,5/24/2013 18:30 +Spring Hill,,LIGHT,FL,5/24/2013 19:30 +Palm Bay,ORANGE,OTHER,FL,5/24/2013 20:45 +Madison,,FIREBALL,WI,5/24/2013 21:00 +Midlothian,ORANGE,TRIANGLE,IL,5/24/2013 21:00 +Santa Barbara,,LIGHT,CA,5/24/2013 21:25 +Capitol heights,,FORMATION,MD,5/24/2013 23:00 +Dover,ORANGE YELLOW,SPHERE,DE,5/25/2013 0:00 +Plainfield,,TRIANGLE,IL,5/25/2013 0:00 +Folly Beach,RED,SPHERE,SC,5/25/2013 0:10 +North East,,CIRCLE,PA,5/25/2013 1:30 +Charlotte,,RECTANGLE,TN,5/25/2013 1:45 +Purcell,,DISK,OK,5/25/2013 8:29 +Borrego Springs,,RECTANGLE,CA,5/25/2013 11:30 +Convoy,,SPHERE,OH,5/25/2013 14:00 +El Paso,BLUE,SPHERE,TX,5/25/2013 18:40 +Hazelwood,,CROSS,MO,5/25/2013 19:55 +Christiansburg,,LIGHT,VA,5/25/2013 20:00 +Porter,RED ORANGE,FIREBALL,TX,5/25/2013 20:15 +Covington,RED,FIREBALL,LA,5/25/2013 21:03 +Hattiesburg,RED,FIREBALL,MS,5/25/2013 21:10 +Tucson,ORANGE,LIGHT,AZ,5/25/2013 21:20 +Virginia Beach,ORANGE,CIRCLE,VA,5/25/2013 21:30 +Portville,,,NY,5/25/2013 22:00 +Redford,RED,FIREBALL,MI,5/25/2013 22:00 +Plymouth,,LIGHT,MI,5/25/2013 22:21 +Butte,,TRIANGLE,MT,5/25/2013 22:30 +Raleigh,ORANGE,LIGHT,NC,5/25/2013 22:45 +Youngsville,ORANGE,LIGHT,NC,5/25/2013 22:45 +Springfield,RED,CIRCLE,OH,5/25/2013 23:00 +Youngstown,RED,CHEVRON,OH,5/25/2013 23:00 +Rockvale,GREEN,OVAL,TN,5/25/2013 23:14 +Lake Shasta,ORANGE,FIREBALL,CA,5/25/2013 23:30 +Apopka,RED,DISK,FL,5/26/2013 0:15 +Perham,,LIGHT,MN,5/26/2013 0:30 +Orange,,LIGHT,CA,5/26/2013 3:45 +Sacramento,,CIRCLE,CA,5/26/2013 15:00 +Okauchee,,FIREBALL,WI,5/26/2013 19:00 +Carlsbad,,OVAL,NM,5/26/2013 20:00 +Peoria,,TRIANGLE,AZ,5/26/2013 20:00 +Portsmouth,,FIREBALL,VA,5/26/2013 20:00 +Kent,ORANGE,SPHERE,WA,5/26/2013 20:30 +Scottsville,RED,OTHER,KY,5/26/2013 20:30 +Seymour,,CIRCLE,CT,5/26/2013 20:30 +Seymour,,OVAL,CT,5/26/2013 20:40 +Seymour,,OVAL,CT,5/26/2013 20:40 +Jacksonville,ORANGE,LIGHT,NC,5/26/2013 20:45 +Orlando,,LIGHT,FL,5/26/2013 20:55 +Dayton,,SPHERE,OH,5/26/2013 21:00 +Lombard,RED ORANGE,CIRCLE,IL,5/26/2013 21:00 +Tyrone,ORANGE,LIGHT,PA,5/26/2013 21:00 +West Babylon,,LIGHT,NY,5/26/2013 21:03 +Conneaut Lake,,LIGHT,PA,5/26/2013 21:05 +Macungie,,FORMATION,PA,5/26/2013 21:05 +Southampton,,FIREBALL,PA,5/26/2013 21:15 +Indian Shores,ORANGE,FIREBALL,FL,5/26/2013 21:30 +Lisbon,,VARIOUS,MD,5/26/2013 21:30 +Rochester,,LIGHT,NY,5/26/2013 21:30 +Saint Petersburg,ORANGE,OVAL,FL,5/26/2013 21:30 +Saint Petersburg,RED,SPHERE,FL,5/26/2013 21:30 +Ashley,ORANGE,LIGHT,PA,5/26/2013 21:38 +Golden,,CIRCLE,CO,5/26/2013 21:44 +Anderson,RED,LIGHT,SC,5/26/2013 22:00 +Frankfort,ORANGE,LIGHT,MI,5/26/2013 22:00 +Green Island,,OTHER,NY,5/26/2013 22:00 +Old Lyme,,DISK,CT,5/26/2013 22:00 +Panama City Beach,,FIREBALL,FL,5/26/2013 22:00 +Wedowee,,FIREBALL,AL,5/26/2013 22:00 +Wedowee,,FIREBALL,AL,5/26/2013 22:00 +Woodstock,,OTHER,GA,5/26/2013 22:05 +Galveston,ORANGE,SPHERE,TX,5/26/2013 22:10 +Mundelein,ORANGE,FIREBALL,IL,5/26/2013 22:10 +Orem,RED,LIGHT,UT,5/26/2013 22:10 +Deltona,ORANGE,FIREBALL,FL,5/26/2013 22:14 +Elyria,,CYLINDER,OH,5/26/2013 22:20 +Kalamazoo,ORANGE,LIGHT,MI,5/26/2013 22:30 +Hudsonville,,OVAL,MI,5/26/2013 22:45 +New Orleans,ORANGE,CIRCLE,LA,5/26/2013 22:50 +Harsens Island,,SPHERE,MI,5/26/2013 23:00 +Novi,,FORMATION,MI,5/26/2013 23:00 +Massillon,ORANGE,DISK,OH,5/26/2013 23:15 +Novi,,RECTANGLE,MI,5/26/2013 23:15 +Sullivan City,,TRIANGLE,TX,5/26/2013 23:25 +Fairfax,,OTHER,VA,5/27/2013 0:02 +Long Island City,,LIGHT,NY,5/27/2013 0:10 +Houghton,,FIREBALL,MI,5/27/2013 2:30 +Wildwood,,LIGHT,NJ,5/27/2013 8:30 +West New York,,OTHER,NJ,5/27/2013 10:00 +Stanton,,FIREBALL,KY,5/27/2013 11:20 +Phoenix,,DISK,AZ,5/27/2013 15:00 +Cumming,RED,SPHERE,GA,5/27/2013 19:00 +Porterville,,CIRCLE,CA,5/27/2013 19:30 +Fort Myers Beach,,CIRCLE,FL,5/27/2013 20:55 +Torrington,,FIREBALL,CT,5/27/2013 20:55 +Allentown,,,PA,5/27/2013 21:00 +Middletown,RED,FIREBALL,CT,5/27/2013 21:00 +Castle Rock,ORANGE,FIREBALL,CO,5/27/2013 21:02 +North Tonawanda,,OTHER,NY,5/27/2013 21:18 +Leesburg,,CIRCLE,VA,5/27/2013 22:00 +Port Neches,,LIGHT,TX,5/27/2013 22:00 +Orlando,,FLASH,FL,5/28/2013 3:00 +Franklin,,TRIANGLE,GA,5/28/2013 10:00 +San Luis Obispo,,DISK,CA,5/28/2013 13:30 +Moorpark,,LIGHT,CA,5/28/2013 18:15 +Fayetteville,,FIREBALL,GA,5/28/2013 20:45 +Fayetteville,,FIREBALL,GA,5/28/2013 20:45 +Bridgman,RED,FIREBALL,MI,5/28/2013 22:00 +Kewaunee,,OTHER,WI,5/28/2013 22:00 +Nashville,,LIGHT,TN,5/28/2013 22:30 +Appleton,ORANGE,CIRCLE,WI,5/29/2013 1:00 +Palmdale,ORANGE,LIGHT,CA,5/29/2013 2:20 +La Mirada,,FLASH,CA,5/29/2013 3:15 +Palm Beach Gardens,,OTHER,FL,5/29/2013 4:00 +Chino Hills,YELLOW,DIAMOND,CA,5/29/2013 9:11 +Chaptico,,,MD,5/29/2013 20:47 +Glen head,RED,CIRCLE,NY,5/29/2013 21:16 +Lillington,,,NC,5/29/2013 21:30 +East Bethel,BLUE,DISK,MN,5/29/2013 23:00 +High Point,,LIGHT,NC,5/29/2013 23:00 +Millers,,LIGHT,MD,5/29/2013 23:15 +Moore,,TRIANGLE,OK,5/29/2013 23:30 +Zion,,LIGHT,IL,5/29/2013 23:35 +Cody,,LIGHT,WY,5/29/2013 23:37 +Gilbert,,CIRCLE,AZ,5/30/2013 17:00 +San Francisco,,CYLINDER,CA,5/30/2013 20:00 +Annville,ORANGE,OTHER,PA,5/30/2013 21:00 +Canal Winchester,,DIAMOND,OH,5/30/2013 21:00 +Gilbertville,,FIREBALL,MA,5/30/2013 21:00 +Atlanta,ORANGE,CIRCLE,GA,5/30/2013 21:15 +Sacramento,ORANGE,FIREBALL,CA,5/30/2013 21:15 +Foley,ORANGE,LIGHT,AL,5/30/2013 21:30 +Topsail Island,ORANGE,LIGHT,NC,5/30/2013 21:30 +Baltimore,GREEN,CIRCLE,MD,5/30/2013 21:40 +White Marsh,,LIGHT,MD,5/30/2013 21:45 +Parkville,GREEN,LIGHT,MD,5/30/2013 21:48 +Nottingham,,,MD,5/30/2013 21:55 +Nottingham,,,MD,5/30/2013 21:55 +Point Richmond,,TRIANGLE,CA,5/30/2013 22:15 +Tunkhannock,,,PA,5/30/2013 22:35 +Hawaii Volcano National Park,,LIGHT,HI,5/30/2013 23:00 +Portland,,,OR,5/30/2013 23:00 +Shade,YELLOW GREEN,OVAL,OH,5/30/2013 23:04 +Lafayette,,SPHERE,IN,5/30/2013 23:05 +Charleston,,TRIANGLE,WV,5/30/2013 23:30 +Green Island,GREEN,,NY,5/31/2013 0:00 +Tracy,RED,FIREBALL,CA,5/31/2013 0:00 +Marion,,EGG,IN,5/31/2013 1:00 +Cleveland,,OVAL,OH,5/31/2013 8:30 +Henderson,RED,CIRCLE,NV,5/31/2013 9:00 +Green Island,ORANGE,TRIANGLE,NY,5/31/2013 10:00 +Green Bay,GREEN,FIREBALL,WI,5/31/2013 10:30 +Plant City,,OTHER,FL,5/31/2013 13:00 +Duncannon,,DISK,PA,5/31/2013 19:00 +Monroeville,,CIRCLE,PA,5/31/2013 19:45 +Sacramento,RED,FIREBALL,CA,5/31/2013 21:00 +Spartanburg,,CIRCLE,SC,5/31/2013 21:20 +Cassadaga,,TRIANGLE,NY,5/31/2013 21:30 +Lebanon,ORANGE,CIRCLE,PA,5/31/2013 21:30 +Appling,,CIRCLE,GA,5/31/2013 21:35 +Fresno,ORANGE,LIGHT,CA,5/31/2013 21:45 +Gastonia,,FIREBALL,NC,5/31/2013 21:50 +Austin,,SPHERE,TX,5/31/2013 22:00 +Hudson Bend,,,TX,5/31/2013 22:00 +Waconia,,SPHERE,MN,5/31/2013 22:00 +Vancouver,,CIRCLE,WA,5/31/2013 22:15 +Los Banos,,CIRCLE,CA,5/31/2013 22:20 +Northport,,FIREBALL,NY,5/31/2013 22:30 +Versailles,,TRIANGLE,KY,5/31/2013 23:20 +Cloverdale,,LIGHT,CA,6/1/2013 1:30 +Coos Bay,RED,CIRCLE,OR,6/1/2013 1:35 +Mountain Home,,CHEVRON,ID,6/1/2013 1:52 +Appleton,,LIGHT,WI,6/1/2013 2:30 +Lancaster,ORANGE,LIGHT,PA,6/1/2013 2:40 +Palo,RED YELLOW GREEN,,IA,6/1/2013 9:30 +Pittsfield,,CONE,MA,6/1/2013 9:30 +Chatfeild,,OVAL,OH,6/1/2013 10:00 +Dallas,,FIREBALL,GA,6/1/2013 11:45 +Denver,,SPHERE,CO,6/1/2013 14:00 +Portland,,TEARDROP,OR,6/1/2013 20:45 +Bayonne,,SPHERE,NJ,6/1/2013 21:00 +Tilden,,TRIANGLE,TX,6/1/2013 21:00 +Fithian,ORANGE,OTHER,IL,6/1/2013 21:15 +Purcellville,,CIRCLE,VA,6/1/2013 21:20 +Louisburg,,FIREBALL,KS,6/1/2013 21:30 +Lakeway,,SPHERE,TX,6/1/2013 21:40 +Austin,,LIGHT,TX,6/1/2013 21:45 +Sacramento,ORANGE,,CA,6/1/2013 21:45 +Eastpointe,,FIREBALL,MI,6/1/2013 21:48 +Clarkston,,FIREBALL,WA,6/1/2013 22:00 +Franklin,,OVAL,IN,6/1/2013 22:00 +Pittsburgh,,FIREBALL,PA,6/1/2013 22:00 +Citrus Heights,ORANGE,FIREBALL,CA,6/1/2013 22:15 +Newton,,FIREBALL,NC,6/1/2013 22:30 +Amherst,BLUE,CIRCLE,NY,6/1/2013 22:45 +Johnstown,,SPHERE,PA,6/1/2013 23:00 +Navarre,,TRIANGLE,FL,6/1/2013 23:00 +St. Louis,RED,FORMATION,MO,6/1/2013 23:00 +Many,,,IL,6/1/2013 23:30 +Cottage Grove,,VARIOUS,MN,6/1/2013 23:50 +Long Beach,,SPHERE,CA,6/1/2013 23:50 +Maple Valley,ORANGE,SPHERE,WA,6/2/2013 0:10 +Ridgeway,BLUE,VARIOUS,SC,6/2/2013 1:20 +Oldsmar,,OVAL,FL,6/2/2013 18:00 +Perdido Key,,SPHERE,FL,6/2/2013 19:45 +Tinley Park,YELLOW,OVAL,IL,6/2/2013 21:10 +Newcomersotown,ORANGE,FIREBALL,OH,6/2/2013 21:30 +Fresno,,LIGHT,CA,6/2/2013 21:45 +Oklahoma City,ORANGE,SPHERE,OK,6/2/2013 22:30 +Wichita,,SPHERE,KS,6/2/2013 22:30 +Wichita,ORANGE,SPHERE,KS,6/2/2013 22:30 +Homestead,RED,CIRCLE,FL,6/2/2013 22:40 +Cleveland,RED,CYLINDER,OH,6/2/2013 23:00 +Indianapolis,,OTHER,IN,6/2/2013 23:00 +Portland,,LIGHT,OR,6/2/2013 23:00 +Portland,,LIGHT,OR,6/2/2013 23:00 +Eagan,,LIGHT,MN,6/2/2013 23:30 +Westland,RED,,MI,6/2/2013 23:30 +Indiana,ORANGE,TRIANGLE,PA,6/3/2013 0:15 +Algodones,BLUE,OVAL,NM,6/3/2013 3:00 +Richmond,,FIREBALL,VA,6/3/2013 3:30 +Huntsville,,LIGHT,AL,6/3/2013 9:30 +Hampstead,,TRIANGLE,NH,6/3/2013 9:34 +Bowling Green,RED ORANGE,FIREBALL,KY,6/3/2013 17:30 +Los Angeles,,CIRCLE,CA,6/3/2013 20:45 +Crossville,,LIGHT,TN,6/3/2013 21:00 +Gloversville,,LIGHT,NY,6/3/2013 21:00 +Bakersfield,,CIGAR,CA,6/3/2013 21:02 +Saint George,ORANGE,CIRCLE,UT,6/3/2013 21:46 +Cumming,,LIGHT,GA,6/3/2013 22:00 +Hagerstown,,OVAL,MD,6/3/2013 22:00 +Los Angeles,RED,FIREBALL,CA,6/3/2013 22:00 +Sylmar,RED ORANGE YELLOW,FIREBALL,CA,6/3/2013 22:00 +Indianapolis,ORANGE,OTHER,IN,6/3/2013 22:20 +Buford,,CIRCLE,GA,6/3/2013 22:27 +Alpine,,SPHERE,UT,6/3/2013 22:30 +Boise,,FIREBALL,ID,6/3/2013 22:30 +Ithaca,,LIGHT,NY,6/3/2013 22:30 +Salida,,OVAL,CO,6/3/2013 22:30 +Leavenworth,,LIGHT,KS,6/3/2013 23:00 +Vincennes,,SPHERE,IN,6/3/2013 23:00 +Weaverville,,CIRCLE,NC,6/3/2013 23:00 +Niles,ORANGE,CIRCLE,MI,6/3/2013 23:20 +Noblesville,RED,LIGHT,IN,6/4/2013 4:57 +Conshohocken,GREEN,CIRCLE,PA,6/4/2013 6:40 +Woodville,,LIGHT,AL,6/4/2013 10:00 +Bellevue,ORANGE,SPHERE,WA,6/4/2013 10:40 +Hattiesburg,,FLASH,MS,6/4/2013 11:30 +Charles Town,,CIRCLE,WV,6/4/2013 12:35 +Damascus,,CIGAR,MD,6/4/2013 12:35 +St. Louis,,SPHERE,MO,6/4/2013 13:30 +Marietta,,OVAL,GA,6/4/2013 15:30 +Helena,,FORMATION,AL,6/4/2013 17:35 +Manheim,,FIREBALL,PA,6/4/2013 21:00 +Chesapeake,,SPHERE,VA,6/4/2013 21:30 +Gwinn,,OTHER,MI,6/4/2013 22:00 +Bonita Springs,,VARIOUS,FL,6/4/2013 23:00 +Bozeman,,DISK,MT,6/4/2013 23:00 +Sedro Wooley,YELLOW,,WA,6/4/2013 23:23 +Ashburn,,LIGHT,VA,6/4/2013 23:30 +Bellevue,ORANGE,LIGHT,WA,6/4/2013 23:30 +Kirkland,,LIGHT,WA,6/4/2013 23:30 +St. Charles,,VARIOUS,MO,6/4/2013 23:30 +Twin Falls,RED ORANGE,SPHERE,ID,6/4/2013 23:43 +Bloomington,,OVAL,MN,6/4/2013 23:50 +Indianapolis,,DISK,IN,6/5/2013 1:00 +Roanoke,,LIGHT,VA,6/5/2013 1:00 +Newington,BLUE,,CT,6/5/2013 1:15 +Angoon,,SPHERE,AK,6/5/2013 1:20 +Tomball,,LIGHT,TX,6/5/2013 4:45 +Kingston,ORANGE,,GA,6/5/2013 5:15 +Lagrange,,FLASH,IN,6/5/2013 5:30 +Wendover,,VARIOUS,UT,6/5/2013 7:30 +Deale,,FIREBALL,MD,6/5/2013 11:06 +Plummer,,CYLINDER,ID,6/5/2013 12:50 +Bryant,ORANGE,LIGHT,AR,6/5/2013 21:00 +Burlington,ORANGE,CIRCLE,NC,6/5/2013 21:00 +Cypress,,CIRCLE,TX,6/5/2013 21:00 +Greensboro,,LIGHT,NC,6/5/2013 21:00 +Salina,BLUE,LIGHT,KS,6/5/2013 21:30 +Bryant,,FORMATION,AR,6/5/2013 22:00 +Binghamton,,DIAMOND,NY,6/5/2013 22:05 +Wardsboro,,SPHERE,VT,6/5/2013 22:45 +Bothell,,,WA,6/6/2013 0:00 +Slippery Rock,ORANGE,LIGHT,PA,6/6/2013 3:30 +Commerce city,,FIREBALL,CO,6/6/2013 4:27 +San Francisco,,OTHER,CA,6/6/2013 10:00 +Imaly City,,DISK,MI,6/6/2013 11:45 +Port Saint Lucie,,CIRCLE,FL,6/6/2013 15:00 +Grantsburg,,,WI,6/6/2013 19:45 +Webster,,FORMATION,MA,6/6/2013 21:30 +W. Sacramento,,CYLINDER,CA,6/6/2013 21:35 +Coloma,BLUE,CYLINDER,CA,6/6/2013 23:00 +Mount Vernon,,LIGHT,WA,6/6/2013 23:20 +Elkhart,,FIREBALL,IN,6/7/2013 1:30 +Gainesville,ORANGE,FIREBALL,FL,6/7/2013 20:23 +Rudy,,FORMATION,AR,6/7/2013 21:00 +Overland Park,RED,SPHERE,KS,6/7/2013 21:30 +Spring Hill,,LIGHT,FL,6/7/2013 22:00 +Weatherford,,SPHERE,TX,6/7/2013 22:15 +Coeur d'Alene Mountains,,OTHER,WA,6/7/2013 22:30 +McPherson,RED,,KS,6/7/2013 22:30 +Fort Wayne,,SPHERE,IN,6/7/2013 22:32 +Mansfield,,CIRCLE,OH,6/8/2013 1:15 +Virginia Beach,,TRIANGLE,VA,6/8/2013 11:30 +Rocky Hill,,FIREBALL,CT,6/8/2013 16:00 +Hatboroo,,TRIANGLE,PA,6/8/2013 16:02 +Cherry Hill,,VARIOUS,NJ,6/8/2013 17:48 +Clarksville,,OTHER,IN,6/8/2013 18:10 +Ephrata,,SPHERE,PA,6/8/2013 20:00 +Waverly,ORANGE,VARIOUS,TN,6/8/2013 20:00 +Napa,,SPHERE,CA,6/8/2013 20:25 +Oshkosh,,SPHERE,WI,6/8/2013 21:00 +Rivesville,,CROSS,WV,6/8/2013 21:00 +Topsail Beach,,LIGHT,NC,6/8/2013 21:00 +Cuyahoga Falls,,LIGHT,OH,6/8/2013 21:30 +Salem,ORANGE,CHEVRON,MA,6/8/2013 21:30 +Murrysville,RED,SPHERE,PA,6/8/2013 21:45 +Clinton Township,ORANGE,LIGHT,MI,6/8/2013 22:00 +no data,GREEN,CIGAR,IA,6/8/2013 22:00 +Norfolk,,CIRCLE,VA,6/8/2013 22:00 +Prior Lake,RED,CIRCLE,MN,6/8/2013 22:00 +Queen Creek,,,AZ,6/8/2013 22:00 +San Jose,RED ORANGE GREEN,DIAMOND,CA,6/8/2013 22:00 +Johns Creek,ORANGE YELLOW,DISK,GA,6/8/2013 22:15 +Corpus Christi,,OVAL,TX,6/8/2013 22:20 +Toledo,,OVAL,OH,6/8/2013 22:30 +Emmett,,SPHERE,ID,6/8/2013 22:40 +Tigard,,LIGHT,OR,6/8/2013 22:45 +Virginia Beach,,FIREBALL,VA,6/8/2013 22:50 +Johnstown,,FIREBALL,PA,6/8/2013 23:00 +Indianapolis,,TRIANGLE,IN,6/8/2013 23:30 +Orland Park,,OTHER,IL,6/8/2013 23:30 +Wyomissing,,EGG,PA,6/8/2013 23:45 +Greeley,BLUE,CIRCLE,CO,6/9/2013 0:35 +Liberty State Park,,CROSS,NJ,6/9/2013 16:00 +Golts,,,MD,6/9/2013 21:03 +Ft. Lauderdale,RED,LIGHT,FL,6/9/2013 21:20 +Cayucoc,,FIREBALL,CA,6/9/2013 21:32 +Williston,ORANGE,FIREBALL,VT,6/9/2013 21:35 +Lynchburg,ORANGE,SPHERE,VA,6/9/2013 22:00 +South Windsor,,OVAL,CT,6/9/2013 22:00 +West Hartford,,LIGHT,CT,6/9/2013 22:00 +Rochester,YELLOW,FORMATION,NY,6/9/2013 22:10 +City Height,YELLOW,TRIANGLE,CA,6/9/2013 22:20 +Lake Oswego,ORANGE,LIGHT,OR,6/9/2013 22:30 +Poughkeepsie,,CIRCLE,NY,6/9/2013 22:35 +Farmington,BLUE,OTHER,MO,6/9/2013 23:00 +Little Rock,,DISK,AR,6/9/2013 23:00 +San Antonio,,DISK,TX,6/10/2013 1:00 +Jamestown,,FIREBALL,NY,6/10/2013 10:50 +Louisburg,,CIRCLE,NC,6/10/2013 13:00 +Sacaton,,CIRCLE,AZ,6/10/2013 17:00 +Rancho Mirage,,FLASH,CA,6/10/2013 20:00 +Albuquerque,,FORMATION,NM,6/10/2013 22:30 +Melbourne,,FIREBALL,FL,6/10/2013 22:30 +Toledo,,LIGHT,OH,6/10/2013 22:30 +Woodbury,,CIRCLE,MN,6/11/2013 1:30 +Des Moines,RED,LIGHT,IA,6/11/2013 2:15 +Fort A. P. Hill,,CIRCLE,VA,6/11/2013 2:30 +Surry,,LIGHT,NH,6/11/2013 3:30 +Myrtle Beach,,OTHER,SC,6/11/2013 9:43 +Frederick,,CIGAR,MD,6/11/2013 17:45 +San Diego,,SPHERE,CA,6/11/2013 19:25 +Cary,RED,LIGHT,NC,6/11/2013 21:11 +Huntsville,ORANGE,SPHERE,AL,6/11/2013 21:30 +Burgaw,,FIREBALL,NC,6/11/2013 21:48 +Oak Island,ORANGE,,NC,6/11/2013 22:00 +Ravenna,ORANGE,TRIANGLE,OH,6/11/2013 22:00 +Colorado Springs,ORANGE,,CO,6/11/2013 22:15 +Menomonie,,FIREBALL,WI,6/11/2013 22:15 +Myrtle Beach,RED,FORMATION,SC,6/11/2013 22:30 +Spanish Fork,,LIGHT,UT,6/11/2013 23:00 +Chesire,,TRIANGLE,CT,6/11/2013 23:01 +Verona,,LIGHT,VA,6/12/2013 3:45 +Edmonds,ORANGE,VARIOUS,WA,6/12/2013 15:52 +Pittsburg,,CIRCLE,CA,6/12/2013 16:00 +Pawleys Island,ORANGE,FORMATION,SC,6/12/2013 21:00 +North Myrtle Beach,ORANGE,CIRCLE,SC,6/12/2013 21:45 +Myrtle Beach,,LIGHT,SC,6/12/2013 22:06 +Maple Falls,,CIRCLE,WA,6/12/2013 22:15 +Citrus Heights,,FIREBALL,CA,6/12/2013 22:20 +Sedona,RED,LIGHT,AZ,6/12/2013 22:20 +Kalispell,RED,EGG,MT,6/12/2013 22:45 +Garden City Beach,,,SC,6/12/2013 23:00 +Louisa,,OTHER,KY,6/12/2013 23:02 +Kalispell,,LIGHT,MT,6/12/2013 23:35 +Albemarle,,LIGHT,NC,6/13/2013 0:00 +San Luis Obispo,,DISK,CA,6/13/2013 16:30 +Johnstown,,FIREBALL,PA,6/13/2013 20:30 +Palm Desert,BLUE,RECTANGLE,CA,6/13/2013 21:00 +Myrtle Beach,,FORMATION,SC,6/13/2013 22:15 +Murrells Inlet,RED YELLOW,LIGHT,SC,6/13/2013 22:30 +Santa Cruz,,FIREBALL,CA,6/13/2013 22:30 +Fort Wayne,,TRIANGLE,IN,6/13/2013 23:30 +Whitehall,YELLOW,LIGHT,MI,6/14/2013 2:15 +Richmond,,LIGHT,VA,6/14/2013 9:50 +Cheektowa,,DISK,NY,6/14/2013 14:00 +Hampton,,SPHERE,NH,6/14/2013 20:00 +Thousand Oaks,ORANGE,FLASH,CA,6/14/2013 21:00 +Firebaugh,,,CA,6/14/2013 21:20 +Buford,,LIGHT,GA,6/14/2013 21:40 +Burlington,,FIREBALL,CT,6/14/2013 21:50 +Portland,,DISK,OR,6/14/2013 21:58 +Springfield,,CIRCLE,IL,6/14/2013 22:05 +Fairborn,,TRIANGLE,OH,6/14/2013 23:00 +Fairborn,,TRIANGLE,OH,6/14/2013 23:00 +Lebanon,,LIGHT,PA,6/14/2013 23:01 +Bridgeport,RED,LIGHT,MI,6/14/2013 23:15 +Las Vegas,RED YELLOW,FIREBALL,NV,6/15/2013 0:10 +Billings,,VARIOUS,MT,6/15/2013 2:15 +Garden Grove,,DIAMOND,CA,6/15/2013 2:22 +Gaffney,,RECTANGLE,SC,6/15/2013 5:45 +Stevens Point,,OTHER,WI,6/15/2013 11:00 +Jackson,,OTHER,WY,6/15/2013 12:30 +Binghamton,,SPHERE,NY,6/15/2013 15:15 +Hiram,,DISK,OH,6/15/2013 15:15 +Kingsport,,CYLINDER,TN,6/15/2013 16:00 +Westerville,,FORMATION,OH,6/15/2013 19:30 +Kaneohe,,CIRCLE,HI,6/15/2013 20:17 +Garden Plain,,LIGHT,KS,6/15/2013 20:50 +Canton,ORANGE,,OH,6/15/2013 21:00 +Hugo,,,MN,6/15/2013 21:00 +Menifee,,LIGHT,CA,6/15/2013 21:00 +Womelsdorf,,FIREBALL,PA,6/15/2013 21:00 +Whiting,,CIRCLE,NJ,6/15/2013 21:05 +Suffolk,RED,LIGHT,VA,6/15/2013 21:25 +Glen Allen,YELLOW,FIREBALL,VA,6/15/2013 21:30 +Middlefield,,OVAL,CT,6/15/2013 21:30 +Seattle,RED GREEN,,WA,6/15/2013 21:45 +Canton,RED,FIREBALL,GA,6/15/2013 22:00 +Grayson,ORANGE,FIREBALL,KY,6/15/2013 22:00 +Westlake,,,OH,6/15/2013 22:00 +Grandview,,SPHERE,WA,6/15/2013 22:25 +Dresser,,,WI,6/15/2013 22:30 +Ontario,ORANGE,FIREBALL,NY,6/15/2013 22:30 +Salem,,SPHERE,OR,6/15/2013 22:30 +Spokane,RED,FIREBALL,WA,6/15/2013 22:30 +Catharpin,RED GREEN,OVAL,VA,6/15/2013 23:00 +Goshen,RED,,KY,6/15/2013 23:05 +Merced,RED ORANGE,FIREBALL,CA,6/15/2013 23:07 +Hwy 97 between LaPine,,TEARDROP,OR,6/15/2013 23:10 +Issaquah,,OTHER,WA,6/15/2013 23:30 +Las Vegas,RED,CIRCLE,NV,6/15/2013 23:40 +Erie,,FIREBALL,PA,6/16/2013 0:05 +Ann Arbor,,TRIANGLE,MI,6/16/2013 0:23 +Fairfield,,OVAL,CT,6/16/2013 12:00 +Tomball,,CIRCLE,TX,6/16/2013 12:00 +Highlands Ranch,,OVAL,CO,6/16/2013 13:00 +Porterfield,,CIGAR,WI,6/16/2013 15:15 +Arlington Heights,,,IL,6/16/2013 16:00 +Lahaina,,VARIOUS,HI,6/16/2013 17:15 +Bourbonnais,,CIRCLE,IL,6/16/2013 19:00 +Milwaukee,,DIAMOND,WI,6/16/2013 20:41 +Las Vegas,,FIREBALL,NV,6/16/2013 21:00 +Tucson,,LIGHT,AZ,6/16/2013 21:00 +Laude,,CIRCLE,MO,6/16/2013 21:02 +Grahamsville,,LIGHT,NY,6/16/2013 21:50 +Holland,,FORMATION,OH,6/16/2013 22:00 +Wood Cross,,FIREBALL,UT,6/16/2013 22:00 +Hermiston,,LIGHT,OR,6/16/2013 22:30 +Sioux City,,TRIANGLE,IA,6/16/2013 22:30 +Whiting,BLUE,LIGHT,IN,6/16/2013 22:45 +Westfield,,DISK,MA,6/17/2013 0:30 +Scotrun,,SPHERE,PA,6/17/2013 1:00 +Phoenix,,DISK,AZ,6/17/2013 18:00 +Meeker,,EGG,CO,6/17/2013 19:00 +Ellicott City,,FLASH,MD,6/17/2013 21:00 +Shelbyville,,DIAMOND,TN,6/17/2013 21:00 +Cut Off,,FIREBALL,LA,6/17/2013 21:28 +Lincoln,,LIGHT,NE,6/17/2013 22:00 +Bangor,,LIGHT,ME,6/17/2013 22:30 +Waterloo,ORANGE,FIREBALL,IA,6/17/2013 23:00 +Albrightsville,,FIREBALL,PA,6/17/2013 23:51 +Muskegon,,LIGHT,MI,6/18/2013 0:00 +Richmond,,LIGHT,VA,6/18/2013 0:00 +Chicago,,CIRCLE,IL,6/18/2013 0:05 +Weymouth,RED,CIRCLE,MA,6/18/2013 0:34 +Williamsport,RED,VARIOUS,PA,6/18/2013 1:00 +Fayetteville,ORANGE YELLOW,,GA,6/18/2013 14:30 +Woonsocket,,DIAMOND,RI,6/18/2013 17:00 +Nogales,YELLOW,FLASH,AZ,6/18/2013 22:00 +Tucson,YELLOW,CIRCLE,AZ,6/18/2013 22:15 +Lake Villa,,CIRCLE,IL,6/18/2013 23:00 +Blythe,RED,SPHERE,CA,6/19/2013 1:30 +Wyndmoor,,FIREBALL,PA,6/19/2013 4:00 +Lebanon,,OVAL,OH,6/19/2013 11:35 +Glenolden,,CYLINDER,PA,6/19/2013 12:42 +Greencastle,,FIREBALL,PA,6/19/2013 21:00 +Natrona Heights,ORANGE YELLOW,CIRCLE,PA,6/19/2013 21:30 +Safford,,LIGHT,AZ,6/19/2013 21:30 +Nags Head,YELLOW,TRIANGLE,NC,6/19/2013 21:50 +Long Beach,,CIRCLE,CA,6/19/2013 22:15 +Hazleton,ORANGE,OTHER,PA,6/19/2013 22:17 +Pigeon Forge,,FIREBALL,TN,6/19/2013 22:30 +West Sacramento,,,CA,6/19/2013 22:35 +Lincoln,,CIRCLE,NE,6/19/2013 22:45 +Fairmont,,,WV,6/19/2013 23:00 +Lafayette,,LIGHT,IN,6/19/2013 23:06 +Stuart,,LIGHT,IA,6/19/2013 23:49 +Cincinnati,ORANGE,LIGHT,OH,6/20/2013 18:50 +Berlin,,CIRCLE,NH,6/20/2013 21:00 +Cherry Grove,,LIGHT,SC,6/20/2013 21:00 +North Conway,RED,LIGHT,NH,6/20/2013 21:00 +Garden City,ORANGE,LIGHT,SC,6/20/2013 21:30 +North Myrtle Beach,ORANGE,LIGHT,SC,6/20/2013 21:40 +Beach Haven West,,LIGHT,NJ,6/20/2013 22:00 +Canterbury,RED,LIGHT,NH,6/20/2013 22:00 +Canterbury,RED,TRIANGLE,NH,6/20/2013 22:00 +Myrtle Beach,,,SC,6/20/2013 22:00 +Ooltewah,ORANGE,FORMATION,TN,6/20/2013 22:00 +Patchogue,,LIGHT,NY,6/20/2013 22:00 +North Myrtle Beach,RED,FIREBALL,SC,6/20/2013 22:10 +North Myrtle Beach,ORANGE,LIGHT,SC,6/20/2013 22:12 +Oak Island,ORANGE,FORMATION,NC,6/20/2013 22:15 +West Deptford,,FIREBALL,NJ,6/20/2013 22:20 +Huron,,LIGHT,SD,6/20/2013 23:05 +Westminster,,LIGHT,CA,6/20/2013 23:50 +Rolesville,,,NC,6/21/2013 1:15 +Tacoma,YELLOW,FIREBALL,WA,6/21/2013 1:21 +Milan,,CIRCLE,NM,6/21/2013 4:25 +Houlton,,FIREBALL,ME,6/21/2013 18:00 +Atlanta,,CYLINDER,GA,6/21/2013 20:00 +Chicago,,RECTANGLE,IL,6/21/2013 21:05 +Gardner,,CONE,KS,6/21/2013 21:45 +El Cajon,,TRIANGLE,CA,6/21/2013 22:00 +Prospect Heights,,SPHERE,IL,6/21/2013 22:00 +San Francisco,,LIGHT,CA,6/21/2013 22:24 +West Sacramento,RED,,CA,6/21/2013 22:25 +Creekside,,CIRCLE,PA,6/21/2013 22:30 +Richmond,,TRIANGLE,KY,6/21/2013 22:30 +Wilmington,,SPHERE,NC,6/21/2013 22:30 +Salamanca,,SPHERE,NY,6/21/2013 22:38 +Centerville,,DISK,GA,6/21/2013 22:42 +Macomb,RED,DISK,MI,6/21/2013 22:50 +Parkersburg,RED,LIGHT,WV,6/21/2013 22:50 +Swampscott,,LIGHT,MA,6/21/2013 23:00 +Loganville,ORANGE,FIREBALL,GA,6/21/2013 23:08 +Barrington,ORANGE,CIRCLE,IL,6/21/2013 23:15 +Portland,ORANGE,CIRCLE,OR,6/21/2013 23:50 +Grand Rapids,,FIREBALL,MI,6/21/2013 23:55 +Fall River,,TEARDROP,MA,6/22/2013 0:00 +West Chester,,FIREBALL,OH,6/22/2013 0:00 +Chehalis,,OVAL,WA,6/22/2013 1:05 +Waxhaw,,,NC,6/22/2013 1:25 +Northville,,LIGHT,MI,6/22/2013 2:00 +Mt. Shasta,,SPHERE,CA,6/22/2013 3:30 +Woodbury,,LIGHT,CT,6/22/2013 4:30 +Worcester,,EGG,MA,6/22/2013 14:30 +Fort Flagler State Park,,DISK,WA,6/22/2013 16:00 +Harlan,,SPHERE,KY,6/22/2013 16:00 +Fishers,,DISK,IN,6/22/2013 16:30 +Stead,,CIRCLE,NV,6/22/2013 17:00 +Waikoloa,ORANGE,FIREBALL,HI,6/22/2013 19:30 +Roswell,ORANGE,FIREBALL,GA,6/22/2013 21:00 +Winchester,,DISK,VA,6/22/2013 21:00 +Yorba Linda,,LIGHT,CA,6/22/2013 21:00 +Crystal River,ORANGE,SPHERE,FL,6/22/2013 21:20 +Nolensville,,FIREBALL,TN,6/22/2013 21:30 +Poulsbo,,OVAL,WA,6/22/2013 21:30 +New York City,ORANGE,OTHER,NY,6/22/2013 21:33 +Worthington,,FIREBALL,OH,6/22/2013 21:45 +Albany,RED ORANGE,FIREBALL,NY,6/22/2013 22:00 +Iron Mountain,,LIGHT,MI,6/22/2013 22:00 +Lafayette,ORANGE,,IN,6/22/2013 22:00 +Los Angeles,,,CA,6/22/2013 22:00 +North Haven,,CIRCLE,CT,6/22/2013 22:00 +Northampton,,OVAL,MA,6/22/2013 22:00 +Norwalk,RED,OTHER,CT,6/22/2013 22:00 +Saint Joseph,,,MO,6/22/2013 22:00 +San Tan Valley,ORANGE,EGG,AZ,6/22/2013 22:00 +Versailles,,CIRCLE,KY,6/22/2013 22:00 +Citrus Heights,,FIREBALL,CA,6/22/2013 22:10 +Rowayton,ORANGE,CIRCLE,CT,6/22/2013 22:15 +Independence,,FIREBALL,OH,6/22/2013 22:20 +San Bernardino,,CIRCLE,CA,6/22/2013 22:20 +Bushkill,RED,FIREBALL,PA,6/22/2013 22:30 +Nampa,RED,LIGHT,ID,6/22/2013 22:30 +Richmond,RED,CIRCLE,IN,6/22/2013 22:30 +Barker,,FIREBALL,NY,6/22/2013 22:35 +Bellevue,,CIRCLE,OH,6/22/2013 22:38 +Cape Charles,,VARIOUS,VA,6/22/2013 22:47 +Eureka,RED,LIGHT,CA,6/22/2013 22:55 +Creston,,LIGHT,IA,6/22/2013 23:00 +Meadows of Dan,ORANGE,SPHERE,VA,6/22/2013 23:00 +Peoria,,,AZ,6/22/2013 23:00 +Guilford,YELLOW,SPHERE,CT,6/22/2013 23:07 +Newark,,FIREBALL,OH,6/22/2013 23:15 +Grove City,,LIGHT,PA,6/22/2013 23:30 +Indianapolis,,,IN,6/23/2013 0:00 +Santee,GREEN,CIRCLE,CA,6/23/2013 0:05 +Portland,,OTHER,OR,6/23/2013 0:21 +Centerville,,FIREBALL,OH,6/23/2013 0:50 +Las Vegas,BLUE,TRIANGLE,NV,6/23/2013 1:00 +Crestwood,,OTHER,IL,6/23/2013 1:26 +Big Bear,,LIGHT,CA,6/23/2013 11:30 +Seal Beach,,SPHERE,CA,6/23/2013 11:50 +Anderson,,OTHER,SC,6/23/2013 19:00 +Dundalk,,CYLINDER,MD,6/23/2013 20:15 +Tybee Island,,FIREBALL,GA,6/23/2013 20:45 +Bossier City,ORANGE,LIGHT,LA,6/23/2013 21:00 +Fort Lauderdale,ORANGE,LIGHT,FL,6/23/2013 21:00 +Los Angeles,,CIRCLE,CA,6/23/2013 21:00 +Miami,,FLASH,FL,6/23/2013 21:00 +Baker,,FIREBALL,CA,6/23/2013 21:08 +Portland,,LIGHT,TN,6/23/2013 21:15 +Houston,,LIGHT,TX,6/23/2013 21:48 +Roxboro,RED,TRIANGLE,NC,6/23/2013 22:30 +Colorado Springs,,LIGHT,CO,6/23/2013 22:55 +Lahaina,,FIREBALL,HI,6/23/2013 23:00 +Worthington,RED,OTHER,OH,6/23/2013 23:26 +Morgan,,FIREBALL,MN,6/24/2013 2:30 +Greensboro,,TRIANGLE,NC,6/24/2013 21:00 +Independence,,CIRCLE,VA,6/24/2013 21:00 +Captiva,,LIGHT,FL,6/24/2013 22:00 +Cincinnati,ORANGE,FIREBALL,OH,6/24/2013 22:00 +Hartman,,SPHERE,AR,6/24/2013 22:00 +Liberty,,SPHERE,OH,6/24/2013 22:00 +Myrtle Point,,OVAL,OR,6/24/2013 22:00 +Bertram,,LIGHT,TX,6/24/2013 22:03 +Custer,,LIGHT,MT,6/24/2013 23:58 +Louisville,,OVAL,KY,6/25/2013 0:00 +Arkdale,,FLASH,WI,6/25/2013 1:00 +Leitchfield,,OTHER,KY,6/25/2013 4:25 +Nashville,,FORMATION,TN,6/25/2013 12:00 +Kannapolis,,CIRCLE,NC,6/25/2013 16:20 +Palo Alto,,CYLINDER,CA,6/25/2013 16:45 +Beaver Falls,ORANGE,LIGHT,PA,6/25/2013 17:00 +Lakeland,,CIRCLE,TN,6/25/2013 20:52 +Hemet,RED,FIREBALL,CA,6/25/2013 21:00 +Lexington,,LIGHT,TX,6/25/2013 21:00 +Las Vegas,,LIGHT,NV,6/25/2013 21:11 +Miami,RED,LIGHT,FL,6/25/2013 21:20 +Parkland,ORANGE,SPHERE,FL,6/25/2013 21:30 +Bellport,ORANGE,CIRCLE,NY,6/25/2013 22:00 +Middletown,,VARIOUS,OH,6/25/2013 22:30 +Preston,,,CT,6/25/2013 22:30 +Arlington,,FIREBALL,VA,6/25/2013 23:00 +Redding,,FORMATION,CT,6/25/2013 23:00 +Temecula,,CIRCLE,CA,6/25/2013 23:00 +Ogdensburg,,LIGHT,NY,6/25/2013 23:20 +Williamsport,ORANGE YELLOW,FIREBALL,PA,6/25/2013 23:45 +Cinnaminson,,LIGHT,NJ,6/26/2013 0:00 +Escalon,,LIGHT,CA,6/26/2013 0:00 +Dayton,,FIREBALL,OH,6/26/2013 1:00 +Omaha,,LIGHT,NE,6/26/2013 4:00 +Niles,,CYLINDER,IL,6/26/2013 13:20 +New York City,,EGG,NY,6/26/2013 20:00 +Portage,RED,DIAMOND,IN,6/26/2013 20:00 +Rock Hill,,CONE,SC,6/26/2013 21:15 +Santa Cruz,,LIGHT,CA,6/26/2013 21:30 +Beacon Falls,RED,LIGHT,CT,6/26/2013 21:35 +Lakeview,,CIRCLE,OR,6/26/2013 22:30 +Longmont,,VARIOUS,CO,6/27/2013 11:00 +Clearwater,,CIRCLE,FL,6/27/2013 20:30 +Clearwater,,TRIANGLE,FL,6/27/2013 21:20 +Buckeye,,LIGHT,AZ,6/27/2013 21:30 +Stephens City,,LIGHT,VA,6/27/2013 21:42 +Independence,,SPHERE,KY,6/27/2013 21:45 +Sulphur Springs,,LIGHT,TX,6/27/2013 21:45 +Gretna,,LIGHT,NE,6/27/2013 21:54 +Independence,,RECTANGLE,KY,6/27/2013 22:15 +Minnetrista,,LIGHT,MN,6/27/2013 22:15 +Evergreen,,TRIANGLE,CO,6/27/2013 22:30 +Springdale,ORANGE,FIREBALL,AR,6/27/2013 22:50 +Seattle,ORANGE,LIGHT,WA,6/27/2013 23:00 +Alpine,,OTHER,CA,6/27/2013 23:55 +Parkersburg,,CIRCLE,WV,6/28/2013 1:30 +Seattle,,OTHER,WA,6/28/2013 13:25 +Lincoln County,,,KS,6/28/2013 13:41 +Lowell,,RECTANGLE,MA,6/28/2013 20:00 +Goodyear,,LIGHT,AZ,6/28/2013 20:15 +Oak Harbor,,CYLINDER,WA,6/28/2013 21:00 +Wichita Falls,RED ORANGE,LIGHT,TX,6/28/2013 21:45 +Covina,,OVAL,CA,6/28/2013 22:00 +Forsyth,RED,OVAL,MO,6/28/2013 22:05 +Cleveland Heights,ORANGE,CIRCLE,OH,6/28/2013 22:10 +Lakewood,,,CO,6/28/2013 22:20 +Littleton,,CIRCLE,CO,6/28/2013 22:30 +Parkdale,,TRIANGLE,OR,6/28/2013 22:30 +Meridian,,FIREBALL,ID,6/28/2013 22:40 +Nicholasville,,FIREBALL,KY,6/28/2013 23:00 +Austin,,LIGHT,TX,6/28/2013 23:15 +Schaumburg,,LIGHT,IL,6/28/2013 23:15 +Plummer,ORANGE,FIREBALL,ID,6/28/2013 23:35 +Monrowville,,EGG,PA,6/29/2013 0:00 +Noblesville,ORANGE,CIRCLE,IN,6/29/2013 0:00 +Polson,RED,FIREBALL,MT,6/29/2013 0:15 +Spring City,BLUE,OVAL,TN,6/29/2013 6:07 +Chattanooga,,TRIANGLE,TN,6/29/2013 18:50 +Mililani,RED,DIAMOND,HI,6/29/2013 20:20 +Stanton,,SPHERE,IA,6/29/2013 20:38 +Elizabeth City,,OTHER,NC,6/29/2013 21:00 +D'Iberville,ORANGE,LIGHT,MS,6/29/2013 21:30 +Kelseyville,,,CA,6/29/2013 21:30 +Newtown,,LIGHT,PA,6/29/2013 21:30 +Lake Wales,,SPHERE,FL,6/29/2013 21:38 +Baldwinsville,ORANGE,CIRCLE,NY,6/29/2013 21:40 +Baldwinsville,ORANGE,SPHERE,NY,6/29/2013 21:40 +Springfield,,FIREBALL,OH,6/29/2013 21:50 +St. George Island,GREEN,CIRCLE,FL,6/29/2013 22:00 +Edmonds,ORANGE,LIGHT,WA,6/29/2013 22:10 +Middletown,ORANGE,LIGHT,PA,6/29/2013 22:15 +Indianapolis,,CYLINDER,IN,6/29/2013 22:30 +Minong,,LIGHT,WI,6/29/2013 22:30 +River Falls,,LIGHT,WI,6/29/2013 22:30 +St. Paul,ORANGE,OTHER,MN,6/29/2013 22:30 +Murfreesboro,,FIREBALL,TN,6/29/2013 23:00 +Reston,,LIGHT,VA,6/29/2013 23:00 +Gas City,,FIREBALL,IN,6/29/2013 23:15 +Chesterfield,,LIGHT,VA,6/29/2013 23:44 +Boulder City,,CIGAR,ID,6/30/2013 0:00 +Portland,,,OR,6/30/2013 0:45 +Olallie Lake,,DISK,OR,6/30/2013 13:12 +Huntsville,,SPHERE,AL,6/30/2013 14:00 +Canfield,,DIAMOND,OH,6/30/2013 17:30 +Jackson,,OTHER,NJ,6/30/2013 20:20 +Hacienda Heights,RED,LIGHT,CA,6/30/2013 20:30 +Appleton,,LIGHT,WI,6/30/2013 22:00 +Mt. Lebanon,,FIREBALL,PA,6/30/2013 22:00 +Prescott,ORANGE,FIREBALL,AZ,6/30/2013 22:30 +Hershey,,RECTANGLE,NE,6/30/2013 22:35 +Plum,ORANGE,FIREBALL,PA,6/30/2013 22:50 +Bozeman,,,MT,6/30/2013 23:00 +Detroit,,CIRCLE,MI,6/30/2013 23:00 +Harison,,LIGHT,MT,6/30/2013 23:00 +Louisville,,,KY,6/30/2013 23:00 +Pullman,,,WA,7/1/2013 0:00 +Lamar,,TRIANGLE,SC,7/1/2013 2:20 +Madison,,LIGHT,WI,7/1/2013 3:05 +Seattle,,SPHERE,WA,7/1/2013 20:00 +Shorewood,ORANGE,OTHER,IL,7/1/2013 21:15 +Shorewood,ORANGE,OTHER,IL,7/1/2013 21:15 +Meriden,,CIRCLE,CT,7/1/2013 21:20 +North Wildwood,,CIRCLE,NJ,7/1/2013 21:20 +North Wildwood,ORANGE,FIREBALL,NJ,7/1/2013 21:22 +Brooklyn Center,,CIGAR,MN,7/1/2013 21:30 +Kinross,,LIGHT,MI,7/1/2013 21:30 +Hillsboro,ORANGE,LIGHT,OR,7/1/2013 21:37 +Arabi,,CHEVRON,GA,7/1/2013 22:00 +Moscow,,CIRCLE,ID,7/1/2013 22:33 +Southaven,ORANGE,FIREBALL,MS,7/1/2013 23:00 +Mission,,,SD,7/1/2013 23:35 +New York City,,LIGHT,NY,7/1/2013 23:40 +Blountsville,,TRIANGLE,AL,7/2/2013 1:38 +University Place,,TRIANGLE,WA,7/2/2013 4:21 +Naugatuck,,DISK,CT,7/2/2013 5:15 +Monterey,,DISK,CA,7/2/2013 11:40 +Napa,RED ORANGE,FIREBALL,CA,7/2/2013 16:00 +Cocoa Beach,,TRIANGLE,FL,7/2/2013 21:24 +Lexington,RED,LIGHT,KY,7/2/2013 21:40 +Buckeye,,LIGHT,AZ,7/2/2013 21:46 +Austin,,CIRCLE,TX,7/2/2013 22:00 +Parachute,,SPHERE,CO,7/2/2013 22:15 +Green Bay,GREEN,FIREBALL,WI,7/2/2013 22:30 +Farmington,,LIGHT,NM,7/2/2013 22:36 +Naschitti,,TRIANGLE,NM,7/2/2013 22:49 +Owasso,,FIREBALL,OK,7/2/2013 22:50 +Albany,,,OR,7/3/2013 0:00 +Ft. Gibson,,LIGHT,OK,7/3/2013 0:15 +Sterling Heights,RED,CYLINDER,MI,7/3/2013 0:38 +Broken Arrow,ORANGE,LIGHT,OK,7/3/2013 1:20 +Berkeley,,,CA,7/3/2013 1:30 +Tumwater,,FLASH,WA,7/3/2013 3:16 +Tigard,,LIGHT,OR,7/3/2013 3:30 +Surprise,,EGG,AZ,7/3/2013 4:07 +Riverbank,,FLASH,CA,7/3/2013 4:48 +Anoka,,FORMATION,MN,7/3/2013 10:00 +Chesepeake Bay Bridge Tunnel,,DISK,VA,7/3/2013 19:00 +Pevely,,FIREBALL,MO,7/3/2013 20:00 +Shapleigh,,LIGHT,ME,7/3/2013 20:30 +Orlando,,OVAL,FL,7/3/2013 20:47 +Black Hawk,ORANGE,CIRCLE,SD,7/3/2013 21:00 +Culver,,,OR,7/3/2013 21:00 +Kerman,,,CA,7/3/2013 21:00 +Myrtle Beach,ORANGE,,SC,7/3/2013 21:00 +Wentzville,,FIREBALL,MO,7/3/2013 21:10 +Myrtle Beach,,FIREBALL,SC,7/3/2013 21:15 +Paddock Lake,,LIGHT,WI,7/3/2013 21:15 +Walla Walla,ORANGE,SPHERE,WA,7/3/2013 21:15 +South Gate,,LIGHT,CA,7/3/2013 21:29 +Cleveland,,OVAL,OH,7/3/2013 21:30 +Louisville,,LIGHT,KY,7/3/2013 21:30 +Mt. Vernon,,CIRCLE,OH,7/3/2013 21:30 +North East,,CIRCLE,MD,7/3/2013 21:30 +Princeville,,TRIANGLE,HI,7/3/2013 21:30 +Crestline,ORANGE,CIRCLE,OH,7/3/2013 21:45 +Eugene,,FLASH,OR,7/3/2013 21:45 +Indianapolis,RED,CHEVRON,IN,7/3/2013 21:45 +Saint Peters,ORANGE,FIREBALL,MO,7/3/2013 21:45 +Bolingbrook,,FIREBALL,IL,7/3/2013 22:00 +Round Rock,,FIREBALL,TX,7/3/2013 22:00 +Hixson,,LIGHT,TN,7/3/2013 22:02 +Moundsville,ORANGE BLUE,OVAL,WV,7/3/2013 22:05 +Myrtle Beach,,FIREBALL,SC,7/3/2013 22:10 +North Platte,ORANGE,CIRCLE,NE,7/3/2013 22:15 +Bowling Green,RED GREEN,TRIANGLE,OH,7/3/2013 22:16 +Mundelein,ORANGE,TRIANGLE,IL,7/3/2013 22:35 +Santa Fe,,LIGHT,NM,7/3/2013 23:00 +Shoreview,,LIGHT,MN,7/3/2013 23:00 +Fairfax to Woodacre,,LIGHT,CA,7/3/2013 23:30 +Fargo,ORANGE,OVAL,ND,7/3/2013 23:30 +Fayettville,,CIRCLE,PA,7/3/2013 23:40 +Commerce City,,TRIANGLE,CO,7/4/2013 0:00 +Lewiston,,TRIANGLE,ID,7/4/2013 0:00 +New York City,,DISK,NY,7/4/2013 0:00 +Loma Rica,,LIGHT,CA,7/4/2013 1:00 +Sault Ste. Marie,,,MI,7/4/2013 2:40 +Summerset,BLUE,LIGHT,SD,7/4/2013 2:48 +Warsaw,,LIGHT,IN,7/4/2013 4:00 +Cedar Hill,,CIRCLE,TX,7/4/2013 4:30 +Jacksonville,,FLASH,FL,7/4/2013 8:00 +Cromwell,,,CT,7/4/2013 14:30 +Bartlett,,TRIANGLE,IL,7/4/2013 17:00 +Bremerton,RED ORANGE,CIRCLE,WA,7/4/2013 17:00 +Old Saybrook,RED,LIGHT,CT,7/4/2013 17:30 +Broken Arrow,RED ORANGE,SPHERE,OK,7/4/2013 18:30 +Downingtown,RED,LIGHT,PA,7/4/2013 19:45 +Rockford,RED,TEARDROP,IL,7/4/2013 20:00 +Tinley Park,RED YELLOW GREEN,TRIANGLE,IL,7/4/2013 20:00 +Boston,,OTHER,MA,7/4/2013 20:30 +Portland,RED,FLASH,ME,7/4/2013 20:30 +Tulsa,,,OK,7/4/2013 20:30 +Washington,,CYLINDER,NJ,7/4/2013 20:40 +Washington,,CYLINDER,NJ,7/4/2013 20:40 +Orange,,LIGHT,CA,7/4/2013 20:45 +Somers,ORANGE,FORMATION,WI,7/4/2013 20:45 +Washington,,FIREBALL,NJ,7/4/2013 20:45 +Chicago,,OTHER,IL,7/4/2013 20:48 +Chalfont,ORANGE,EGG,PA,7/4/2013 20:50 +Kingsville,,LIGHT,MD,7/4/2013 20:55 +Aiken,ORANGE,CIRCLE,SC,7/4/2013 21:00 +Cary,,LIGHT,NC,7/4/2013 21:00 +Denver,,LIGHT,CO,7/4/2013 21:00 +Fillmore,,,TX,7/4/2013 21:00 +Freeland,,SPHERE,WA,7/4/2013 21:00 +Hampton,,FIREBALL,NH,7/4/2013 21:00 +Irmo,ORANGE,,SC,7/4/2013 21:00 +Lake Mills,ORANGE,SPHERE,WI,7/4/2013 21:00 +Palm Coast,RED,RECTANGLE,FL,7/4/2013 21:00 +Port Saint Lucie,RED,CIRCLE,FL,7/4/2013 21:00 +Portland,,FIREBALL,OR,7/4/2013 21:00 +Seminole,GREEN,CIRCLE,TX,7/4/2013 21:00 +St. Charles,,SPHERE,MO,7/4/2013 21:00 +Stuart,,,FL,7/4/2013 21:00 +Wilmington,,OVAL,NC,7/4/2013 21:00 +Naples,,FIREBALL,FL,7/4/2013 21:01 +Easton,,FIREBALL,PA,7/4/2013 21:15 +Inverness,ORANGE,SPHERE,IL,7/4/2013 21:15 +Los Angeles,GREEN,SPHERE,CA,7/4/2013 21:15 +Mesa,ORANGE,CIRCLE,AZ,7/4/2013 21:15 +Naugatuck,RED,DIAMOND,CT,7/4/2013 21:15 +North Platte,ORANGE,CIRCLE,NE,7/4/2013 21:15 +Osceola Mills,ORANGE,FIREBALL,PA,7/4/2013 21:15 +Purcellville,,SPHERE,VA,7/4/2013 21:15 +Sebastian,RED,OVAL,FL,7/4/2013 21:15 +Winston Salem,,FIREBALL,NC,7/4/2013 21:15 +Chalfont,,EGG,PA,7/4/2013 21:20 +New Berlin,ORANGE,CIRCLE,WI,7/4/2013 21:20 +Pinellas Park,RED ORANGE,CIRCLE,FL,7/4/2013 21:20 +Longwood,ORANGE,FIREBALL,FL,7/4/2013 21:24 +Fulton,RED ORANGE,LIGHT,MO,7/4/2013 21:26 +Bridgeview,,SPHERE,IL,7/4/2013 21:30 +Broomfield,,VARIOUS,CO,7/4/2013 21:30 +Castle Pines,,TRIANGLE,CO,7/4/2013 21:30 +Durham,RED,SPHERE,NC,7/4/2013 21:30 +Heyworth,ORANGE,CIRCLE,IL,7/4/2013 21:30 +Howell,,TRIANGLE,MI,7/4/2013 21:30 +Lincoln,ORANGE,CIRCLE,NE,7/4/2013 21:30 +Long Lake,ORANGE,CIRCLE,NY,7/4/2013 21:30 +Mayflower,RED,OVAL,AR,7/4/2013 21:30 +Modesto,RED,SPHERE,CA,7/4/2013 21:30 +Moore,RED,CIRCLE,OK,7/4/2013 21:30 +Ravenswood,RED,LIGHT,WV,7/4/2013 21:30 +Springfield,RED,OTHER,IL,7/4/2013 21:30 +Stilwell,,OVAL,KS,7/4/2013 21:30 +Tinley Park,,TRIANGLE,IL,7/4/2013 21:30 +Woodbury,ORANGE,CYLINDER,NJ,7/4/2013 21:38 +Aurora,ORANGE,CIRCLE,CO,7/4/2013 21:40 +Cheektowaga,RED,FIREBALL,NY,7/4/2013 21:40 +Golden,,FORMATION,CO,7/4/2013 21:40 +Knappa,,TRIANGLE,OR,7/4/2013 21:40 +Murray,ORANGE,CIRCLE,KY,7/4/2013 21:40 +Westminster,,FIREBALL,CO,7/4/2013 21:40 +Cohoes,RED,FIREBALL,NY,7/4/2013 21:45 +Crestline,ORANGE,CIRCLE,OH,7/4/2013 21:45 +La Crosse,,OTHER,WI,7/4/2013 21:45 +Oregon City,,LIGHT,OR,7/4/2013 21:45 +Pittsburgh,RED YELLOW,TRIANGLE,PA,7/4/2013 21:45 +Westminster,,,CO,7/4/2013 21:45 +Temecula,RED,LIGHT,CA,7/4/2013 21:48 +Lewis Center,ORANGE,TRIANGLE,OH,7/4/2013 21:50 +Peru,,LIGHT,IN,7/4/2013 21:50 +Captiva,,LIGHT,FL,7/4/2013 21:51 +Minneapolis,RED,SPHERE,MN,7/4/2013 21:54 +Springfield,ORANGE,FIREBALL,MO,7/4/2013 21:55 +Boise,RED,CIRCLE,ID,7/4/2013 22:00 +Buffalo,ORANGE,FIREBALL,NY,7/4/2013 22:00 +Chicago,,FIREBALL,IL,7/4/2013 22:00 +Copiague,,LIGHT,NY,7/4/2013 22:00 +Eagan,ORANGE,TEARDROP,MN,7/4/2013 22:00 +Floyd Knobs,,CIRCLE,IN,7/4/2013 22:00 +Fort Wayne,RED,,IN,7/4/2013 22:00 +Hurst,,LIGHT,TX,7/4/2013 22:00 +Indian Lake,,LIGHT,OH,7/4/2013 22:00 +Mukilteo,ORANGE,OVAL,WA,7/4/2013 22:00 +Naugatuck,RED,,CT,7/4/2013 22:00 +North Platte,RED,CIRCLE,NE,7/4/2013 22:00 +O'Fallon,,VARIOUS,MO,7/4/2013 22:00 +Prince George County,,FIREBALL,VA,7/4/2013 22:00 +Racine,RED,SPHERE,WI,7/4/2013 22:00 +Richmond,,OTHER,KY,7/4/2013 22:00 +San Anselmo,,OVAL,CA,7/4/2013 22:00 +Shakopee,,LIGHT,MN,7/4/2013 22:00 +Shakopee,,LIGHT,MN,7/4/2013 22:00 +Sinking spring,,LIGHT,PA,7/4/2013 22:00 +Syosset,RED,OVAL,NY,7/4/2013 22:00 +Troy,,CIRCLE,OH,7/4/2013 22:00 +Yardley,,FIREBALL,PA,7/4/2013 22:00 +Auburn,,CIRCLE,WA,7/4/2013 22:07 +Scotts Valley,RED,SPHERE,CA,7/4/2013 22:10 +The Woodlands,ORANGE,TRIANGLE,TX,7/4/2013 22:10 +Auburn,ORANGE,LIGHT,WA,7/4/2013 22:15 +Jacksonvile,ORANGE,FIREBALL,FL,7/4/2013 22:15 +Mount Angel,RED ORANGE,FIREBALL,OR,7/4/2013 22:15 +Conway,ORANGE,,AR,7/4/2013 22:18 +Longwood,RED,FIREBALL,FL,7/4/2013 22:24 +Hammond,ORANGE,CIRCLE,IN,7/4/2013 22:25 +Seattle,RED,,WA,7/4/2013 22:25 +Bessie,ORANGE,LIGHT,OK,7/4/2013 22:30 +Black Rock,,LIGHT,AR,7/4/2013 22:30 +Buffalo,ORANGE,DISK,NY,7/4/2013 22:30 +Dearborn,RED,FORMATION,MI,7/4/2013 22:30 +Dearborn,RED,FORMATION,MI,7/4/2013 22:30 +Eden Roc,,FIREBALL,HI,7/4/2013 22:30 +Elk Grove,,LIGHT,CA,7/4/2013 22:30 +Gothenburg,,LIGHT,NE,7/4/2013 22:30 +Holiday,,FIREBALL,FL,7/4/2013 22:30 +Massapequa,,CIRCLE,NY,7/4/2013 22:30 +Minneapolis,RED,LIGHT,MN,7/4/2013 22:30 +Mount Sinai,ORANGE,CIRCLE,NY,7/4/2013 22:30 +Mt. View,RED,LIGHT,HI,7/4/2013 22:30 +Old Orchard Beach,,CIRCLE,ME,7/4/2013 22:30 +Puyallup,ORANGE,CHEVRON,WA,7/4/2013 22:30 +Renton,,LIGHT,WA,7/4/2013 22:30 +Riverview,RED,FIREBALL,FL,7/4/2013 22:30 +Snohomish,ORANGE,OTHER,WA,7/4/2013 22:30 +Spencer,,FIREBALL,OK,7/4/2013 22:30 +Willis,,LIGHT,MI,7/4/2013 22:30 +Lincoln,YELLOW,OTHER,NE,7/4/2013 22:32 +West Point,,,CA,7/4/2013 22:34 +Belgrade,,FIREBALL,MT,7/4/2013 22:40 +Denver,,LIGHT,CO,7/4/2013 22:40 +Levittown,ORANGE,SPHERE,NY,7/4/2013 22:40 +Portland,ORANGE,LIGHT,TN,7/4/2013 22:50 +Carbonado,,SPHERE,WA,7/4/2013 22:54 +Austintown,,OTHER,OH,7/4/2013 23:00 +Broomfiled- Standley Lake,,CIRCLE,CO,7/4/2013 23:00 +Chicago,RED ORANGE,VARIOUS,IL,7/4/2013 23:00 +Everett,,TRIANGLE,WA,7/4/2013 23:00 +Everett,RED,TRIANGLE,WA,7/4/2013 23:00 +Fairfield,RED,,CT,7/4/2013 23:00 +Glendive,ORANGE,CIRCLE,MT,7/4/2013 23:00 +Lee's Summit,RED ORANGE,LIGHT,MO,7/4/2013 23:00 +Lynnwood,,FIREBALL,WA,7/4/2013 23:00 +Miami,ORANGE,FIREBALL,FL,7/4/2013 23:00 +Nampa,,OTHER,ID,7/4/2013 23:00 +Spanaway,,FIREBALL,WA,7/4/2013 23:00 +Whitefish,ORANGE,FIREBALL,MT,7/4/2013 23:00 +Decorah,,SPHERE,IA,7/4/2013 23:15 +Kirkland,ORANGE,FLASH,WA,7/4/2013 23:15 +Valley Stream,RED,OVAL,NY,7/4/2013 23:15 +Jupiter,RED,SPHERE,FL,7/4/2013 23:18 +Bellingham,,SPHERE,WA,7/4/2013 23:30 +Boise,,LIGHT,ID,7/4/2013 23:30 +Bremerton,,LIGHT,WA,7/4/2013 23:30 +Bremerton,,OVAL,WA,7/4/2013 23:30 +Lake Geneva,ORANGE,CYLINDER,WI,7/4/2013 23:30 +Port Charlotte,RED,DISK,FL,7/4/2013 23:30 +Redding,,LIGHT,CA,7/4/2013 23:47 +Elkhart,RED,FIREBALL,IN,7/5/2013 0:00 +Fort Myers,ORANGE,FIREBALL,FL,7/5/2013 0:00 +Noblesville,RED,OVAL,IN,7/5/2013 0:00 +Port Angeles,RED,SPHERE,WA,7/5/2013 0:10 +Medical Lake,,SPHERE,WA,7/5/2013 0:15 +Surprise,,TRIANGLE,AZ,7/5/2013 0:17 +Strongsville,BLUE,,OH,7/5/2013 0:20 +Lombard,ORANGE,FIREBALL,IL,7/5/2013 1:12 +Salisbury,,CIRCLE,MA,7/5/2013 1:32 +Toms River,ORANGE,LIGHT,NJ,7/5/2013 2:00 +Kansas,,CROSS,KS,7/5/2013 2:30 +Kansas City,RED ORANGE,CROSS,KS,7/5/2013 2:30 +Lake Mills,ORANGE,SPHERE,WI,7/5/2013 20:00 +Turner,RED,SPHERE,ME,7/5/2013 20:30 +Birmingham,ORANGE,FIREBALL,AL,7/5/2013 20:36 +Ashland,RED,FIREBALL,VA,7/5/2013 20:40 +Fulton,RED ORANGE,FIREBALL,IL,7/5/2013 21:10 +Valdosta,,FIREBALL,GA,7/5/2013 21:30 +W. Sacramento,,,CA,7/5/2013 21:30 +Wyndotte,ORANGE,OVAL,OK,7/5/2013 21:30 +Wheeling,RED,FIREBALL,WV,7/5/2013 21:45 +Bettendorf,ORANGE,CIRCLE,IA,7/5/2013 21:50 +Chelan,,LIGHT,WA,7/5/2013 22:00 +Holiday,ORANGE,FIREBALL,FL,7/5/2013 22:00 +Monroe,ORANGE,LIGHT,CT,7/5/2013 22:00 +Mulberry,,LIGHT,FL,7/5/2013 22:00 +South Milwaukee,,CIRCLE,WI,7/5/2013 22:00 +Watertown,ORANGE,CIRCLE,CT,7/5/2013 22:00 +Enola,RED ORANGE,SPHERE,PA,7/5/2013 22:14 +Athens,ORANGE,FIREBALL,TX,7/5/2013 22:15 +St. Peters,,DISK,MO,7/5/2013 22:20 +Spokane,,FIREBALL,WA,7/5/2013 22:25 +Sun Prairie,,CIRCLE,WI,7/5/2013 22:25 +North Myrtle Beach,BLUE,VARIOUS,SC,7/5/2013 22:30 +Simi Valley,GREEN,CIRCLE,CA,7/5/2013 22:30 +Franklin Square,RED,CIRCLE,NY,7/5/2013 22:40 +Carlos,RED,SPHERE,MN,7/5/2013 22:45 +Virginia Beach,ORANGE,CIRCLE,VA,7/5/2013 22:55 +Middlebury,RED,CIRCLE,IN,7/5/2013 23:00 +New Sharon,,,ME,7/5/2013 23:00 +Post Falls,ORANGE,VARIOUS,ID,7/5/2013 23:00 +Warren,ORANGE,TRIANGLE,MI,7/5/2013 23:00 +Willard,RED,FIREBALL,OH,7/5/2013 23:00 +Bluffton,,LIGHT,IN,7/5/2013 23:03 +Canton,,SPHERE,MI,7/5/2013 23:12 +Mojave,,TRIANGLE,CA,7/5/2013 23:20 +Springboro,RED,CIRCLE,OH,7/5/2013 23:25 +Rocky River,,TRIANGLE,OH,7/5/2013 23:30 +Indianapolis,ORANGE,CIRCLE,IN,7/5/2013 23:58 +Pasco,,,WA,7/6/2013 0:00 +Barboursville,RED ORANGE,FIREBALL,WV,7/6/2013 1:00 +Horseshoe Lake,,,AR,7/6/2013 1:00 +Mission Hill,ORANGE,FIREBALL,SD,7/6/2013 3:00 +Des Moines,,TRIANGLE,IA,7/6/2013 11:00 +Puyallup,,SPHERE,WA,7/6/2013 16:30 +Marysville,,DISK,WA,7/6/2013 18:00 +Stroudsburg,,FIREBALL,PA,7/6/2013 19:30 +Tucson,RED,OVAL,AZ,7/6/2013 19:30 +Austin,,SPHERE,TX,7/6/2013 20:00 +Maricopa,ORANGE,SPHERE,AZ,7/6/2013 20:35 +Carlsbad,,OVAL,CA,7/6/2013 20:55 +Ashville,,CYLINDER,OH,7/6/2013 21:00 +Beachwood,RED,FORMATION,NJ,7/6/2013 21:00 +Columbus,,TEARDROP,OH,7/6/2013 21:00 +Denham Springs,,,LA,7/6/2013 21:00 +Grove City,,FORMATION,OH,7/6/2013 21:00 +Peru,,LIGHT,IL,7/6/2013 21:00 +Hoover,RED,CIRCLE,AL,7/6/2013 21:10 +Columbus,,LIGHT,OH,7/6/2013 21:20 +Columbus,,LIGHT,OH,7/6/2013 21:20 +Columbus,ORANGE,LIGHT,OH,7/6/2013 21:20 +Mt. Laurel,ORANGE,OVAL,NJ,7/6/2013 21:30 +Old Bridge,ORANGE,OVAL,NJ,7/6/2013 21:30 +Portland,,LIGHT,OR,7/6/2013 21:30 +St. Petersburg,ORANGE,FIREBALL,FL,7/6/2013 21:30 +Walnut Ridge,,CIRCLE,AR,7/6/2013 21:30 +Columbus,RED,CIRCLE,OH,7/6/2013 21:40 +Groveport,,CIRCLE,OH,7/6/2013 21:40 +Springfield,ORANGE,CIRCLE,MA,7/6/2013 21:40 +Bowling Green,RED ORANGE YELLOW,CIRCLE,KY,7/6/2013 21:45 +Columbus,,,OH,7/6/2013 21:45 +Lesterville,,CIRCLE,MO,7/6/2013 21:45 +Louisville,,LIGHT,KY,7/6/2013 21:45 +Canal Winchester,,LIGHT,OH,7/6/2013 21:49 +Columbus,ORANGE,VARIOUS,OH,7/6/2013 21:50 +Grove City,,,OH,7/6/2013 21:50 +Grove City,,FORMATION,OH,7/6/2013 21:50 +Columbus,,TRIANGLE,OH,7/6/2013 21:55 +Pataskala,,TRIANGLE,OH,7/6/2013 21:55 +Bremerton,RED,OVAL,WA,7/6/2013 22:00 +Fairfax,,TRIANGLE,MN,7/6/2013 22:00 +Grove City,,LIGHT,OH,7/6/2013 22:00 +New Milford,,CIRCLE,CT,7/6/2013 22:00 +New York City,,FIREBALL,NY,7/6/2013 22:00 +Poland,,SPHERE,OH,7/6/2013 22:00 +Poland,,SPHERE,OH,7/6/2013 22:00 +Springfield,,FLASH,MA,7/6/2013 22:00 +Springfield,,LIGHT,MA,7/6/2013 22:00 +West Chester,ORANGE,CIRCLE,PA,7/6/2013 22:00 +Southbridge,,LIGHT,MA,7/6/2013 22:01 +Rockingham,ORANGE,LIGHT,VT,7/6/2013 22:05 +Manheim,RED,LIGHT,PA,7/6/2013 22:10 +Rocheport,ORANGE,LIGHT,MO,7/6/2013 22:10 +Franklin,RED,CIRCLE,NH,7/6/2013 22:15 +Pittsburgh,,FIREBALL,PA,7/6/2013 22:20 +New York City,,LIGHT,NY,7/6/2013 22:25 +Bristol,ORANGE,FORMATION,NH,7/6/2013 22:30 +Canajoharie,ORANGE,CIRCLE,NY,7/6/2013 22:30 +Drexel Hill,RED,CIRCLE,PA,7/6/2013 22:30 +Hampton,,,VA,7/6/2013 22:30 +Kalispell,,LIGHT,MT,7/6/2013 22:30 +Haverhill,,FIREBALL,MA,7/6/2013 22:40 +Hiram,RED,SPHERE,GA,7/6/2013 22:45 +Seeley Lake,,FIREBALL,MO,7/6/2013 22:45 +Bellevue,ORANGE,CIRCLE,OH,7/6/2013 22:48 +Diamond,RED,,OH,7/6/2013 22:55 +Elizabethtown,,,PA,7/6/2013 22:55 +Goshen,GREEN,TRIANGLE,UT,7/6/2013 23:00 +Hopedale,,LIGHT,MA,7/6/2013 23:00 +Joplin,,LIGHT,MO,7/6/2013 23:00 +Mountain Home,ORANGE,CIRCLE,AR,7/6/2013 23:00 +Port Angeles,,TRIANGLE,WA,7/6/2013 23:00 +Traverse City,ORANGE,FIREBALL,MI,7/6/2013 23:00 +North Kingsville,ORANGE,FIREBALL,OH,7/6/2013 23:13 +Gilbert,ORANGE,FIREBALL,AZ,7/6/2013 23:30 +Frederick,,CIRCLE,MD,7/6/2013 23:37 +Hanes City,,FLASH,FL,7/6/2013 23:39 +Indianapolis,RED,FORMATION,IN,7/6/2013 23:40 +Remington,,FIREBALL,VA,7/7/2013 0:00 +Malad,,FORMATION,ID,7/7/2013 0:38 +San Diego,,FIREBALL,CA,7/7/2013 0:44 +Fort Meyers Beach,,OVAL,FL,7/7/2013 2:00 +Winter Park,ORANGE,LIGHT,FL,7/7/2013 8:30 +Aynor,,CIRCLE,SC,7/7/2013 10:00 +Manchester,,SPHERE,NH,7/7/2013 12:20 +Greenfield,,DISK,MA,7/7/2013 15:00 +Canton,,CIRCLE,MI,7/7/2013 19:00 +Elkmont,,FORMATION,AL,7/7/2013 20:30 +Lindenhurst,,CIRCLE,NY,7/7/2013 20:59 +Baton Rouge,ORANGE,FIREBALL,LA,7/7/2013 21:00 +Norwalk,,FLASH,CT,7/7/2013 21:00 +Paducah,RED,CIRCLE,KY,7/7/2013 21:00 +Spotswood,,LIGHT,NJ,7/7/2013 21:05 +Countryside,,FORMATION,IL,7/7/2013 21:30 +Charleston,,,WV,7/7/2013 21:50 +Cudahy,,CIRCLE,WI,7/7/2013 22:00 +Springfield,,CIRCLE,OR,7/7/2013 22:00 +St. Helens,,SPHERE,OR,7/7/2013 22:00 +Ingleside,,,TX,7/7/2013 22:10 +Chicago Heights,ORANGE,CIRCLE,IL,7/7/2013 22:15 +Surf City,,LIGHT,NJ,7/7/2013 22:30 +Houston,,TRIANGLE,TX,7/7/2013 22:36 +Ash,RED,SPHERE,NC,7/7/2013 23:00 +Englewood,ORANGE,CIRCLE,FL,7/7/2013 23:00 +Battle Ground,RED,DISK,WA,7/7/2013 23:30 +Richmond,,DISK,VA,7/7/2013 23:45 +Brownstowns,,OVAL,MI,7/8/2013 0:00 +Reading,,,PA,7/8/2013 0:00 +Libby,RED GREEN BLUE,VARIOUS,MT,7/8/2013 1:00 +Atlantic City,,FIREBALL,NJ,7/8/2013 2:15 +Portland,BLUE,DISK,ME,7/8/2013 4:45 +Roxborough,,LIGHT,PA,7/8/2013 11:20 +New York City,,CIRCLE,NY,7/8/2013 17:20 +Barrington,,FIREBALL,NJ,7/8/2013 21:30 +Springboro,,CIRCLE,OH,7/8/2013 22:00 +St. Louis Park,,CIRCLE,MN,7/8/2013 22:00 +Ocean City,,CIRCLE,MD,7/8/2013 22:15 +Manchester,,OTHER,KY,7/8/2013 22:30 +Montverde,,RECTANGLE,FL,7/8/2013 22:46 +Seattle,,LIGHT,WA,7/8/2013 22:55 +Riverview,ORANGE,FIREBALL,FL,7/8/2013 23:00 +Sacramento,,CIRCLE,CA,7/8/2013 23:00 +Franklin,,TRIANGLE,TN,7/9/2013 1:01 +Toms River,,CIRCLE,NJ,7/9/2013 2:00 +Norman,,CIGAR,OK,7/9/2013 14:53 +Manhattan Beach,,CIGAR,CA,7/9/2013 17:30 +Ocean City,GREEN,OTHER,MD,7/9/2013 21:00 +Kitty Hawk,,SPHERE,NC,7/9/2013 21:10 +Buckeye,,LIGHT,AZ,7/9/2013 21:30 +Homestead,,SPHERE,FL,7/9/2013 21:30 +Ogilvie,,LIGHT,MN,7/10/2013 0:05 +Indianapolis,,LIGHT,IN,7/10/2013 4:00 +Miami,,,FL,7/10/2013 6:00 +Cadiz,,CIRCLE,KY,7/10/2013 20:30 +Orem,,SPHERE,UT,7/10/2013 21:00 +Elk Grove,,CIRCLE,CA,7/10/2013 21:45 +Hamilton,,OTHER,OH,7/10/2013 22:00 +Hillsboro,,LIGHT,OR,7/10/2013 22:00 +Manchester,,FIREBALL,CT,7/10/2013 22:15 +Jacksonville,,EGG,FL,7/10/2013 22:22 +Minoa,,,NY,7/10/2013 22:35 +Blythe,ORANGE,SPHERE,CA,7/10/2013 22:40 +San Marcos,,TRIANGLE,CA,7/10/2013 23:30 +The Village,RED,CIRCLE,OK,7/11/2013 3:00 +Golden Beach,ORANGE,OTHER,FL,7/11/2013 3:15 +Hialeah,,TRIANGLE,FL,7/11/2013 10:05 +Cedar Rapids,ORANGE,TRIANGLE,IA,7/11/2013 20:00 +Fort Morgan,,LIGHT,AL,7/11/2013 20:50 +Charlotte,,CIGAR,NC,7/11/2013 20:51 +Douglas,,CIRCLE,MA,7/11/2013 21:15 +St. Charles,,LIGHT,MO,7/11/2013 21:54 +Baker,,LIGHT,NV,7/11/2013 22:00 +Bristol,,LIGHT,VA,7/11/2013 22:00 +Dallas,RED BLUE,FIREBALL,PA,7/11/2013 22:00 +Dedham,,LIGHT,MA,7/11/2013 22:00 +Clarksville,,OTHER,IA,7/11/2013 23:00 +Middlesboro,,FIREBALL,KY,7/11/2013 23:00 +Pt. Angeles,,,WA,7/11/2013 23:40 +Rathdrum,ORANGE,CIRCLE,ID,7/11/2013 23:40 +Charlotte,BLUE,OVAL,NC,7/12/2013 0:00 +Ogilvie,,LIGHT,MN,7/12/2013 0:05 +Winston-Salem,,LIGHT,NC,7/12/2013 0:25 +Lawrenceville,,OVAL,GA,7/12/2013 4:12 +Anaheim,,LIGHT,CA,7/12/2013 8:00 +Fairport,,CIRCLE,NY,7/12/2013 11:30 +Jacksonville,,CIRCLE,AL,7/12/2013 20:00 +Cortland,,FIREBALL,OH,7/12/2013 20:30 +Dallas,,OTHER,TX,7/12/2013 20:45 +Garland,,TRIANGLE,TX,7/12/2013 21:00 +Ithaca,ORANGE,FIREBALL,NY,7/12/2013 21:00 +Staten Island,,DISK,NY,7/12/2013 21:04 +Gulf Shores,RED,CIRCLE,AL,7/12/2013 21:08 +Liberty,,CROSS,SC,7/12/2013 21:10 +Louisville,RED,CIRCLE,KY,7/12/2013 21:45 +Albany,,LIGHT,NY,7/12/2013 21:50 +Billings,ORANGE,FLASH,MT,7/12/2013 22:00 +Duxbury,,CIRCLE,VT,7/12/2013 22:00 +W. Sacramento,,,CA,7/12/2013 22:00 +Elk Grove,,CIRCLE,CA,7/12/2013 22:10 +Fort Wayne,,OVAL,IN,7/12/2013 23:15 +New Castle,,TRIANGLE,VA,7/12/2013 23:15 +Attalla,BLUE,LIGHT,AL,7/12/2013 23:30 +Maplewood,,OTHER,MO,7/12/2013 23:30 +Auburn,,SPHERE,WA,7/12/2013 23:35 +Bellingham,,TRIANGLE,WA,7/12/2013 23:45 +Mooresville,,,NC,7/12/2013 23:55 +Charlotte,BLUE,FIREBALL,NC,7/12/2013 23:57 +Berkley,,LIGHT,MI,7/13/2013 0:00 +Eufaula,,LIGHT,AL,7/13/2013 0:00 +Louisville,YELLOW,OTHER,KY,7/13/2013 0:20 +Clinton Township,RED,CIRCLE,MI,7/13/2013 1:00 +Decatur,,RECTANGLE,MI,7/13/2013 1:00 +Chatsworth,RED,LIGHT,CA,7/13/2013 1:30 +Pocono Lake,,,PA,7/13/2013 3:30 +Pocono Lake,ORANGE,,PA,7/13/2013 3:30 +Cave Creek,RED,TEARDROP,AZ,7/13/2013 14:50 +Ellensburg,,SPHERE,WA,7/13/2013 17:00 +Oak Grove,,OTHER,LA,7/13/2013 19:30 +Haddon Heights,,TRIANGLE,NJ,7/13/2013 20:00 +Massuillon,,LIGHT,OH,7/13/2013 20:30 +Sodus Center,ORANGE,LIGHT,NY,7/13/2013 20:30 +Valley Village,,SPHERE,CA,7/13/2013 20:45 +Bozeman,,LIGHT,MT,7/13/2013 21:00 +Coram,RED,CONE,NY,7/13/2013 21:00 +League City,,CIRCLE,TX,7/13/2013 21:00 +Sealy Lake,,CIRCLE,MT,7/13/2013 21:00 +Springfield,ORANGE,FORMATION,IL,7/13/2013 21:00 +Surfside Beach,ORANGE,LIGHT,SC,7/13/2013 21:00 +Wells,,,ME,7/13/2013 21:20 +Evans,,FIREBALL,GA,7/13/2013 21:25 +Bethlehem,,FORMATION,PA,7/13/2013 21:30 +Evans,,FIREBALL,GA,7/13/2013 21:30 +South Hadley,RED,LIGHT,MA,7/13/2013 21:30 +Lake Dallas,ORANGE,FIREBALL,TX,7/13/2013 21:40 +Florence,,,KY,7/13/2013 21:45 +Norfolk,,LIGHT,VA,7/13/2013 21:45 +Oak Forest,,CIRCLE,IL,7/13/2013 21:45 +New Castle,ORANGE,OTHER,PA,7/13/2013 21:50 +Burton,,LIGHT,OH,7/13/2013 22:00 +Dearborn,ORANGE,FIREBALL,MI,7/13/2013 22:00 +Franklin,,FIREBALL,OH,7/13/2013 22:00 +Heath,RED,LIGHT,MA,7/13/2013 22:00 +Imperial,,LIGHT,MO,7/13/2013 22:00 +Shelburne,RED ORANGE,FORMATION,VT,7/13/2013 22:00 +Shelton,,CIGAR,WA,7/13/2013 22:00 +Hudson,,FIREBALL,OH,7/13/2013 22:10 +Franklin,,CYLINDER,OH,7/13/2013 22:15 +South Bend,RED,LIGHT,IN,7/13/2013 22:15 +St. Charles,,FORMATION,IL,7/13/2013 22:21 +Eastvale,,LIGHT,CA,7/13/2013 22:30 +Parkton,,LIGHT,MD,7/13/2013 22:37 +New Lenox,RED,CIRCLE,IL,7/13/2013 22:45 +Mansfield,ORANGE,OVAL,OH,7/13/2013 23:00 +Missoula,,TRIANGLE,MT,7/13/2013 23:00 +Northville,,SPHERE,MI,7/13/2013 23:00 +Plano,,SPHERE,TX,7/13/2013 23:00 +Dallas,,TRIANGLE,TX,7/13/2013 23:09 +Union City,RED ORANGE,FIREBALL,PA,7/13/2013 23:25 +Beaver Falls,RED,OVAL,PA,7/14/2013 0:00 +Boca Raton,,,FL,7/14/2013 0:00 +Georgetown,,SPHERE,KY,7/14/2013 0:45 +New Orleans,,OTHER,LA,7/14/2013 1:43 +Lafayette,,CIRCLE,TN,7/14/2013 14:33 +Pittsburgh,BLUE,SPHERE,PA,7/14/2013 16:00 +Townsend,,SPHERE,TN,7/14/2013 18:20 +Parkville,,FORMATION,MD,7/14/2013 20:00 +Oakland,ORANGE,CIRCLE,TN,7/14/2013 21:00 +Oakland,RED,CIRCLE,TN,7/14/2013 21:00 +Bossier City,,LIGHT,LA,7/14/2013 21:20 +Mount Laurel,,FORMATION,NJ,7/14/2013 21:30 +Deerfield,,FIREBALL,IL,7/14/2013 21:56 +Woodbridge,,SPHERE,VA,7/14/2013 22:00 +Downingtown,GREEN,CIRCLE,PA,7/14/2013 22:05 +Sanibel Island,,OTHER,FL,7/14/2013 22:10 +Mason City,ORANGE,FIREBALL,IA,7/14/2013 22:15 +Falmouth,ORANGE,LIGHT,MA,7/14/2013 22:20 +Shawano,,,WI,7/14/2013 22:25 +Staunton,,LIGHT,VA,7/14/2013 22:45 +Chandler,,TRIANGLE,AZ,7/14/2013 22:50 +Goodlettsville,,TRIANGLE,TN,7/14/2013 22:50 +Washougal,,LIGHT,WA,7/14/2013 22:57 +Davenport,,FIREBALL,IA,7/14/2013 23:00 +Endicott,,OTHER,NY,7/14/2013 23:00 +Laconia,,LIGHT,NH,7/14/2013 23:00 +Fort Myers,GREEN,,FL,7/14/2013 23:40 +Irvine,BLUE,SPHERE,CA,7/15/2013 1:00 +Daly City,,,CA,7/15/2013 3:30 +Mesa,,FIREBALL,AZ,7/15/2013 5:45 +Taft,,,CA,7/15/2013 7:00 +Lake Tahoe area,,SPHERE,NV,7/15/2013 14:00 +Tucson,RED,LIGHT,AZ,7/15/2013 15:30 +Salem,,CIRCLE,OR,7/15/2013 17:15 +Kenosha,,CIRCLE,WI,7/15/2013 20:40 +Bryant,ORANGE,LIGHT,AR,7/15/2013 21:00 +Grand Rapids,,SPHERE,MI,7/15/2013 21:00 +no data,,FORMATION,MS,7/15/2013 21:00 +Loganville,,CIRCLE,GA,7/15/2013 21:15 +Chicago,,OTHER,IL,7/15/2013 22:00 +Custer,,CIRCLE,WI,7/15/2013 22:00 +Towaco,,OVAL,NJ,7/15/2013 22:00 +Deal Island,,RECTANGLE,MD,7/15/2013 22:30 +Marlton,,FIREBALL,NJ,7/15/2013 22:30 +Nevada,,LIGHT,MO,7/15/2013 23:30 +Monroe,,TEARDROP,MI,7/16/2013 10:30 +Shasta Lake,,LIGHT,CA,7/16/2013 11:00 +Hot Springs,,DIAMOND,AR,7/16/2013 16:16 +Sparks,,,NV,7/16/2013 19:40 +Austintown,RED,CIRCLE,OH,7/16/2013 21:30 +San Rafael,RED BLUE,TRIANGLE,CA,7/16/2013 21:40 +Booneville,,CIRCLE,AR,7/16/2013 22:00 +Lena,,CIRCLE,IL,7/16/2013 22:00 +Prior Lake,,SPHERE,MN,7/16/2013 22:00 +Slate Hill,,FLASH,NY,7/16/2013 22:05 +New York City,RED,LIGHT,NY,7/16/2013 22:30 +Landisville,,FIREBALL,PA,7/16/2013 22:45 +State College,ORANGE BLUE,FIREBALL,PA,7/16/2013 22:45 +W. Sacramento,,,CA,7/16/2013 22:55 +Baldwin Park,,VARIOUS,CA,7/16/2013 23:00 +Bainbridge Island,,,WA,7/16/2013 23:35 +South Gate,ORANGE,CIRCLE,CA,7/17/2013 1:30 +Roan Mountain,,OVAL,TN,7/17/2013 1:53 +Roan Mountain,,OVAL,TN,7/17/2013 1:53 +Massillon,,LIGHT,OH,7/17/2013 3:00 +Boise,RED GREEN BLUE,VARIOUS,ID,7/17/2013 4:00 +Westminster,,CIRCLE,CO,7/17/2013 4:05 +Somers,,OTHER,CT,7/17/2013 9:15 +Dallas,,OTHER,TX,7/17/2013 12:00 +Oroville,,DISK,CA,7/17/2013 14:30 +Ridgeway,,LIGHT,SC,7/17/2013 17:30 +Lane,,FIREBALL,OK,7/17/2013 21:00 +Snohomish,ORANGE,DIAMOND,WA,7/17/2013 21:00 +Ash Springs,,LIGHT,NV,7/17/2013 21:05 +Selma,,LIGHT,CA,7/17/2013 21:14 +Clayton,,DISK,OK,7/17/2013 21:52 +Myrtle Beach,,TRIANGLE,SC,7/17/2013 22:23 +Litchfield,RED,LIGHT,SC,7/17/2013 22:30 +McAlester,,DISK,OK,7/17/2013 22:30 +North Myrtle Beach,ORANGE YELLOW,TRIANGLE,SC,7/17/2013 22:30 +Wichita,,TRIANGLE,KS,7/17/2013 22:30 +Wichita,RED,TRIANGLE,KS,7/17/2013 22:35 +Waldport,RED,LIGHT,OR,7/17/2013 22:40 +Iowa Cuty,,TRIANGLE,IA,7/17/2013 22:45 +Rapid City,,LIGHT,SD,7/17/2013 22:45 +Myrtle Beach,ORANGE,CIRCLE,SC,7/17/2013 22:47 +Brooks,,OVAL,GA,7/17/2013 23:00 +Missourri City,,FIREBALL,TX,7/17/2013 23:00 +Saint Ignatius,,FIREBALL,MT,7/17/2013 23:00 +Canfield,RED ORANGE YELLOW,FORMATION,OH,7/17/2013 23:30 +Louisville,RED BLUE,CIRCLE,KY,7/18/2013 0:00 +Lincoln City,,LIGHT,OR,7/18/2013 0:10 +Lebanon,,FIREBALL,OH,7/18/2013 0:22 +Lebanon,ORANGE YELLOW,OTHER,OH,7/18/2013 0:22 +New Milford,,,CT,7/18/2013 0:30 +West Hartford,,CHEVRON,CT,7/18/2013 2:30 +Fort Lauderdale,,,FL,7/18/2013 3:00 +Liberty Township,,FIREBALL,OH,7/18/2013 3:30 +Meridian,BLUE,OVAL,ID,7/18/2013 10:40 +Fishers,,OVAL,IN,7/18/2013 20:00 +Myrtle Beach,,FIREBALL,SC,7/18/2013 20:00 +Newport News,ORANGE,OVAL,VA,7/18/2013 20:30 +Panama City Beach,,FIREBALL,FL,7/18/2013 20:45 +Ocean Springs,,RECTANGLE,MS,7/18/2013 20:50 +Baytown,ORANGE,FORMATION,TX,7/18/2013 21:00 +Kiawah Island,,FORMATION,SC,7/18/2013 21:00 +Myrtle Beach,ORANGE,LIGHT,SC,7/18/2013 21:00 +Surfside Beach,,VARIOUS,SC,7/18/2013 21:00 +Mission Viejo,,FORMATION,CA,7/18/2013 21:10 +Montclair,,OTHER,NJ,7/18/2013 21:15 +Buffalo,YELLOW,,NY,7/18/2013 21:30 +Portland,,FIREBALL,OR,7/18/2013 21:55 +Anderson,,CIRCLE,SC,7/18/2013 22:00 +Myrtle Beach,ORANGE,CIRCLE,SC,7/18/2013 22:00 +Myrtle Beach,RED,CIRCLE,SC,7/18/2013 22:00 +Temecula,,CIRCLE,CA,7/18/2013 22:19 +Willet,,FIREBALL,NY,7/18/2013 22:30 +Platteville,,,WI,7/18/2013 22:32 +Seattle,,RECTANGLE,WA,7/18/2013 22:45 +Circleville,,TRIANGLE,OH,7/18/2013 23:00 +Hurricane,ORANGE,CROSS,UT,7/18/2013 23:00 +Defiance,RED GREEN BLUE,TRIANGLE,OH,7/19/2013 2:45 +Mukilteo,,DISK,WA,7/19/2013 12:55 +Elkins,,EGG,WV,7/19/2013 17:00 +Roseville,,TRIANGLE,CA,7/19/2013 21:00 +York Beach,,FIREBALL,ME,7/19/2013 21:20 +Lorton,RED,FORMATION,VA,7/19/2013 21:40 +Phoenix,,CYLINDER,AZ,7/19/2013 21:40 +Fort Myers Beach,,LIGHT,FL,7/19/2013 22:00 +Troy,,FIREBALL,IL,7/19/2013 22:05 +Huber Heights,,SPHERE,OH,7/19/2013 22:15 +Ann Arbor,ORANGE,LIGHT,MI,7/19/2013 22:20 +Staten Island,RED,OTHER,NY,7/19/2013 23:00 +Seattle,RED ORANGE,LIGHT,WA,7/19/2013 23:01 +Herndon,,LIGHT,VA,7/20/2013 0:00 +Pasco,,LIGHT,WA,7/20/2013 0:00 +Stringsville,ORANGE,SPHERE,OH,7/20/2013 0:00 +Livingston,,RECTANGLE,VA,7/20/2013 0:05 +Susanville,,TRIANGLE,CA,7/20/2013 1:00 +Colorado Springs,,SPHERE,CO,7/20/2013 15:30 +Sunset Point,,LIGHT,AZ,7/20/2013 17:48 +Dunkirk,,FIREBALL,NY,7/20/2013 21:40 +Lockport,ORANGE,CIRCLE,NY,7/20/2013 21:49 +El Monte,,FLASH,CA,7/20/2013 22:00 +West Point,,OVAL,CA,7/20/2013 22:00 +Seattle,ORANGE,CIRCLE,WA,7/20/2013 22:02 +Santa Monica,,FORMATION,CA,7/20/2013 22:15 +Columbus,,OTHER,OH,7/20/2013 22:30 +West Bend,ORANGE,OVAL,WI,7/20/2013 22:30 +Terryville,ORANGE,,CT,7/20/2013 23:00 +Pico Rivera,ORANGE,OVAL,CA,7/20/2013 23:40 +Wilton Manors,,SPHERE,FL,7/21/2013 19:30 +Amityville,,FORMATION,NY,7/21/2013 20:45 +Bailey Island,,FIREBALL,ME,7/21/2013 21:30 +Lynden,,FIREBALL,WA,7/21/2013 22:20 +Murfreesboro,ORANGE,FORMATION,TN,7/21/2013 22:30 +Pacific,,FIREBALL,WA,7/21/2013 22:50 +Lancaster,,CIRCLE,CA,7/22/2013 1:30 +La Grande,,OTHER,OR,7/22/2013 2:00 +Sterling,,,AK,7/22/2013 3:13 +New Jersey,ORANGE,RECTANGLE,NJ,7/22/2013 5:30 +Lee's Summit,BLUE,FIREBALL,MO,7/22/2013 9:45 +Chino Valley,,SPHERE,AZ,7/22/2013 20:00 +Seattle,,OVAL,WA,7/22/2013 20:50 +Surfside Beach,ORANGE,LIGHT,SC,7/22/2013 21:30 +Myrtle Beach,,TRIANGLE,SC,7/22/2013 22:00 +Myrtle Beach,ORANGE,TRIANGLE,SC,7/22/2013 22:00 +Moreno Valley,,SPHERE,CA,7/23/2013 14:57 +Canton,,,OH,7/23/2013 16:00 +Laurel,,DISK,MS,7/23/2013 17:10 +Providence,,SPHERE,RI,7/23/2013 17:40 +Silver Spring,,OVAL,MD,7/23/2013 18:10 +Peru,,SPHERE,VT,7/23/2013 21:40 +Washington,,CONE,CT,7/23/2013 22:00 +Captiva,,LIGHT,FL,7/23/2013 22:34 +Wenatchee,,TRIANGLE,WA,7/23/2013 22:40 +Myrtle Beach,,OTHER,SC,7/23/2013 23:00 +Brunswick County,,,NC,7/24/2013 0:00 +Tulsa,,LIGHT,OK,7/24/2013 0:00 +Lybrook,,EGG,NM,7/24/2013 2:31 +Royal Oak,,LIGHT,MI,7/24/2013 3:30 +Tigard,,LIGHT,OR,7/24/2013 3:53 +Longmont,,VARIOUS,CO,7/24/2013 9:23 +Shakopee,,CIGAR,MN,7/24/2013 12:45 +Montgomery,,OTHER,IL,7/24/2013 17:15 +Pinon,BLUE,LIGHT,CA,7/24/2013 20:25 +Ft. Lauderdale,,FIREBALL,FL,7/24/2013 21:00 +Toledo,,LIGHT,IA,7/24/2013 21:35 +Whitewater,,LIGHT,WI,7/24/2013 21:35 +Captiva,,LIGHT,FL,7/24/2013 21:40 +Waikiki,RED,LIGHT,HI,7/24/2013 21:40 +Cincinnati,ORANGE,FORMATION,OH,7/24/2013 21:45 +Monaca,,FIREBALL,PA,7/24/2013 21:45 +Castiac,,CIRCLE,CA,7/24/2013 22:00 +Eaton,ORANGE,SPHERE,OH,7/24/2013 22:00 +Frenchtown Twp,RED,LIGHT,MI,7/24/2013 22:20 +Coeur d'Alene,,FLASH,ID,7/24/2013 23:00 +Lakewood,,LIGHT,CO,7/24/2013 23:00 +Lakewood,ORANGE,LIGHT,WA,7/24/2013 23:00 +Garden City,,CIRCLE,SC,7/24/2013 23:30 +Williamsport,,OTHER,PA,7/25/2013 0:00 +The Dalles,GREEN,FIREBALL,OR,7/25/2013 0:26 +Kodiak,,TRIANGLE,AK,7/25/2013 1:15 +Watauga,,LIGHT,TX,7/25/2013 2:00 +Point Pleasant,,,WV,7/25/2013 2:43 +Fredonia,,LIGHT,NY,7/25/2013 6:00 +Indianapolis,,LIGHT,IN,7/25/2013 8:00 +Akron,,TRIANGLE,OH,7/25/2013 9:50 +Captiva,,LIGHT,FL,7/25/2013 10:08 +Hagerstown,,OVAL,MD,7/25/2013 17:45 +Grand Lake,,CIGAR,CO,7/25/2013 20:10 +Thorntown,,DISK,IN,7/25/2013 20:40 +Alexandria,,SPHERE,VA,7/25/2013 21:00 +Syracuse,,CIRCLE,NY,7/25/2013 21:15 +East Aurora,ORANGE,OVAL,NY,7/25/2013 21:20 +Sandy,,SPHERE,UT,7/25/2013 21:30 +Pensacola,ORANGE,SPHERE,FL,7/25/2013 22:05 +St. Louis,,FIREBALL,MO,7/25/2013 22:38 +Findlay,,SPHERE,OH,7/25/2013 23:00 +Syracuse,,FLASH,NY,7/25/2013 23:00 +Auburn,,OTHER,CA,7/26/2013 0:00 +South Kortright,RED GREEN BLUE,CIRCLE,NY,7/26/2013 0:00 +Acton,,FLASH,CA,7/26/2013 0:53 +Richmond Va,,SPHERE,VA,7/26/2013 1:30 +Woodbridge,,SPHERE,VA,7/26/2013 1:30 +Frankfort,,,KY,7/26/2013 3:00 +Captiva,,FIREBALL,FL,7/26/2013 9:56 +"Key West, Dubuque",ORANGE,LIGHT,IA,7/26/2013 20:00 +Pawtucket,,LIGHT,RI,7/26/2013 20:00 +West Chester,,,PA,7/26/2013 20:50 +Tobyhanna,,LIGHT,PA,7/26/2013 21:15 +York,,TRIANGLE,PA,7/26/2013 21:15 +San Marcos,,LIGHT,CA,7/26/2013 21:30 +Lexington,,FIREBALL,KY,7/26/2013 21:46 +Clear Spring,,CIRCLE,MD,7/26/2013 22:00 +Greensboro,RED,CIRCLE,NC,7/26/2013 22:00 +Florence,ORANGE YELLOW,LIGHT,KY,7/26/2013 22:10 +Springfield,,CIRCLE,IL,7/26/2013 22:29 +Corfu,BLUE,FIREBALL,NY,7/26/2013 22:30 +Jacobstown,,CONE,NJ,7/26/2013 22:30 +LaGrange,ORANGE,TRIANGLE,OH,7/26/2013 22:30 +Bridgeport,,LIGHT,NY,7/26/2013 23:00 +Lolo,BLUE,FLASH,MT,7/26/2013 23:20 +Eugene,,,OR,7/26/2013 23:23 +Middlesex,ORANGE,,NY,7/26/2013 23:30 +Springfield,,FIREBALL,MO,7/27/2013 0:00 +Carlisle,,TRIANGLE,PA,7/27/2013 0:30 +Portland,,CIRCLE,OR,7/27/2013 1:30 +San antonio,,VARIOUS,TX,7/27/2013 2:00 +Circle Pines,,FIREBALL,MN,7/27/2013 3:55 +Lanexa,,FLASH,VA,7/27/2013 4:28 +Pittsburgh,,SPHERE,PA,7/27/2013 9:04 +Van Nuys,YELLOW,FIREBALL,CA,7/27/2013 9:47 +Destin,,CIRCLE,FL,7/27/2013 11:30 +Rittman,,LIGHT,OH,7/27/2013 20:00 +Woods Hole,,FIREBALL,MA,7/27/2013 20:42 +Cordes Junction,BLUE,LIGHT,AZ,7/27/2013 21:00 +Lancaster,,FORMATION,PA,7/27/2013 21:00 +Pawtucket,,CIRCLE,RI,7/27/2013 21:00 +Pittsburgh,YELLOW,SPHERE,PA,7/27/2013 21:04 +Chillicothe,ORANGE,SPHERE,IL,7/27/2013 21:10 +Draper,,TRIANGLE,UT,7/27/2013 21:10 +Nags Head,,FIREBALL,NC,7/27/2013 21:10 +Roanoke,,FIREBALL,VA,7/27/2013 21:12 +Martin,,FORMATION,TN,7/27/2013 21:15 +Middle Village,RED,CIRCLE,NY,7/27/2013 21:30 +Sag Harbor,,FIREBALL,NY,7/27/2013 21:50 +Seven Hills,ORANGE,CIRCLE,OH,7/27/2013 21:55 +Anaheim,,FIREBALL,CA,7/27/2013 22:00 +Lynn,,TRIANGLE,MA,7/27/2013 22:00 +Morrisville,,CIRCLE,PA,7/27/2013 22:00 +Remlap,,LIGHT,AL,7/27/2013 22:00 +Marietta,ORANGE,FIREBALL,GA,7/27/2013 22:08 +Lemoore,,CROSS,CA,7/27/2013 22:09 +Chagrin Falls,ORANGE,FIREBALL,OH,7/27/2013 22:15 +York,,FIREBALL,ME,7/27/2013 22:15 +Sanibel Island,,LIGHT,FL,7/27/2013 22:20 +Huntsville,,FIREBALL,AL,7/27/2013 22:30 +White Lake,ORANGE,RECTANGLE,MI,7/27/2013 22:45 +Pompano,,LIGHT,FL,7/27/2013 22:46 +El Dorado Hills,,LIGHT,CA,7/27/2013 23:00 +Rogers,,LIGHT,AR,7/27/2013 23:00 +St. Peters,,FIREBALL,MO,7/27/2013 23:00 +Florence,,CIRCLE,KY,7/27/2013 23:30 +Portland,,FORMATION,OR,7/27/2013 23:30 +Ferndale,ORANGE,DISK,WA,7/27/2013 23:35 +Holts Summit,,DISK,MO,7/27/2013 23:45 +Monroe,,LIGHT,OR,7/27/2013 23:55 +Dog Bone Lake,,,NV,7/28/2013 0:00 +North Las Vegas,,TRIANGLE,NV,7/28/2013 0:00 +Penn Hills,,,PA,7/28/2013 0:45 +Flint,,LIGHT,MI,7/28/2013 1:30 +Williamsburg,,LIGHT,OH,7/28/2013 2:00 +River Falls,RED,TRIANGLE,WI,7/28/2013 2:26 +Pittsburgh,ORANGE,CIRCLE,PA,7/28/2013 19:30 +Anna,,FIREBALL,TX,7/28/2013 20:25 +Bridgeport,,FIREBALL,CT,7/28/2013 20:30 +Hereford,RED,FIREBALL,PA,7/28/2013 21:30 +Hialeah,,CIRCLE,FL,7/28/2013 21:30 +Paintsville,,LIGHT,KY,7/28/2013 21:40 +North Miami,,OTHER,FL,7/28/2013 21:55 +Dayton,,LIGHT,PA,7/28/2013 22:05 +Orrington,,CIRCLE,ME,7/28/2013 22:20 +Cedar Rapids,,LIGHT,IA,7/28/2013 22:35 +Englewood,,TEARDROP,FL,7/28/2013 23:00 +Wildwood,ORANGE,CIRCLE,NJ,7/29/2013 0:30 +Buffalo,,,NY,7/29/2013 1:00 +Wildwood Crest,,CIRCLE,NJ,7/29/2013 1:15 +Casper,,TRIANGLE,WY,7/29/2013 1:30 +Denver,RED,SPHERE,CO,7/29/2013 2:00 +Woodbridge,,SPHERE,VA,7/29/2013 7:09 +Prospect,,DIAMOND,CT,7/29/2013 9:30 +Indianapolis,ORANGE,SPHERE,IN,7/29/2013 10:23 +Oakland,,CIGAR,CA,7/29/2013 17:00 +Madison,,EGG,AL,7/29/2013 18:35 +Madison,,EGG,AL,7/29/2013 18:35 +Springfeild,RED GREEN,FLASH,VA,7/29/2013 20:30 +Vichy,RED,LIGHT,MO,7/29/2013 20:30 +Gallatin,,LIGHT,NY,7/29/2013 20:45 +Calais,ORANGE,,VT,7/29/2013 21:00 +Mountain Home,RED,FIREBALL,AR,7/29/2013 21:14 +Goodyear,,FIREBALL,AZ,7/29/2013 21:30 +Greenville,YELLOW,SPHERE,SC,7/29/2013 21:30 +Vancouver,GREEN,CIRCLE,WA,7/29/2013 21:40 +Vancouver,GREEN,DISK,WA,7/29/2013 21:40 +Fayetteville,,OTHER,NC,7/29/2013 21:45 +Tacoma,,SPHERE,WA,7/29/2013 21:45 +New York City,RED ORANGE,TRIANGLE,NY,7/29/2013 21:50 +Kingwood,,FORMATION,TX,7/29/2013 22:40 +Elba,,CIRCLE,NY,7/29/2013 23:00 +Madison,RED,DIAMOND,WI,7/29/2013 23:00 +South Bend,,LIGHT,IN,7/29/2013 23:00 +Glendalemingle Dale,,,AZ,7/29/2013 23:30 +Sammamish,,OVAL,WA,7/29/2013 23:45 +Bowling Green,,FIREBALL,IN,7/29/2013 23:50 +Valdosta,RED,LIGHT,GA,7/30/2013 1:00 +Pocahontas,,LIGHT,AR,7/30/2013 3:40 +Oshkosh,,CIRCLE,WI,7/30/2013 12:00 +Thompson,,FIREBALL,CT,7/30/2013 12:15 +Keene,,DISK,NH,7/30/2013 15:15 +St. Paul,,CIRCLE,MN,7/30/2013 20:40 +Avalon,,FORMATION,NJ,7/30/2013 21:00 +Baltic,,TRIANGLE,CT,7/30/2013 21:00 +Gulfport,RED,CONE,MS,7/30/2013 21:00 +North East,,,PA,7/30/2013 21:00 +Ocean City,,LIGHT,NJ,7/30/2013 21:00 +Buckeye,,LIGHT,AZ,7/30/2013 21:15 +East Moriches,,LIGHT,NY,7/30/2013 21:15 +Selah,RED,,WA,7/30/2013 21:30 +Clifton,ORANGE,FIREBALL,NJ,7/30/2013 22:00 +Dublin,ORANGE,CIRCLE,OH,7/30/2013 22:45 +Vancouver,ORANGE,SPHERE,WA,7/30/2013 22:45 +Wildwood Crest,ORANGE,LIGHT,NJ,7/30/2013 23:00 +Baltimore City,,DISK,MD,7/31/2013 20:00 +Riverside,ORANGE,VARIOUS,CA,7/31/2013 20:00 +South Bend,,LIGHT,IN,7/31/2013 20:59 +Buckeye,,FORMATION,AZ,7/31/2013 21:15 +Rothsay,,CIGAR,MN,7/31/2013 21:15 +San Ramon,,OVAL,CA,7/31/2013 21:20 +Huntington Station,,FIREBALL,NY,7/31/2013 21:30 +Gresham,,CIRCLE,OR,7/31/2013 21:40 +Buffalo,,FIREBALL,NY,7/31/2013 21:55 +Mt. Chestnut,,CIRCLE,PA,7/31/2013 22:00 +Elk Grove,,CIRCLE,CA,7/31/2013 22:34 +Commerce,,EGG,CA,7/31/2013 23:10 +Wells,,CIRCLE,VT,8/1/2013 0:15 +Sherman,,,CT,8/1/2013 0:30 +Tulsa,,FORMATION,OK,8/1/2013 1:30 +Watauga,ORANGE,LIGHT,TX,8/1/2013 2:00 +McCalla,,OTHER,AL,8/1/2013 3:00 +Danville,,OTHER,VA,8/1/2013 3:05 +Vero Beach,,,FL,8/1/2013 14:00 +Winterset,,FORMATION,IA,8/1/2013 18:00 +Cathedral City,,,CA,8/1/2013 20:00 +Highway 5,,CIRCLE,AZ,8/1/2013 20:01 +San Francisco,BLUE,SPHERE,CA,8/1/2013 20:14 +Buckeye,,LIGHT,AZ,8/1/2013 21:15 +Bethany Beach,RED,CIRCLE,DE,8/1/2013 21:20 +Great Mills,,SPHERE,MD,8/1/2013 22:00 +Hesperia,RED,TRIANGLE,CA,8/1/2013 22:00 +Coeur d'Alene,,SPHERE,ID,8/1/2013 22:15 +Grayson,,CIRCLE,LA,8/1/2013 22:15 +Ogilvie,,LIGHT,MN,8/1/2013 22:45 +Dumfries,,SPHERE,VA,8/2/2013 0:50 +Roanoke,,OTHER,VA,8/2/2013 1:00 +Franklinville,GREEN,OVAL,NJ,8/2/2013 1:15 +Orlando,,FIREBALL,FL,8/2/2013 1:30 +Sanibel Island,,CYLINDER,FL,8/2/2013 2:30 +Croydon,,DISK,PA,8/2/2013 15:00 +Lincoln City,BLUE,OTHER,OR,8/2/2013 19:00 +Flagstaff,,FORMATION,AZ,8/2/2013 20:30 +Cresco,,LIGHT,IA,8/2/2013 20:45 +Newport News,RED,LIGHT,VA,8/2/2013 20:45 +Easton,,FIREBALL,PA,8/2/2013 21:00 +Gulf Shores,,LIGHT,AL,8/2/2013 21:00 +Liverpool,,SPHERE,NY,8/2/2013 21:00 +Newport News,,LIGHT,VA,8/2/2013 21:00 +Raleigh,,SPHERE,NC,8/2/2013 21:00 +Madison Heights,,FORMATION,VA,8/2/2013 21:20 +Huntington,,LIGHT,WV,8/2/2013 21:30 +Everett,ORANGE,SPHERE,WA,8/2/2013 21:31 +Sacramento,,FIREBALL,CA,8/2/2013 21:35 +Oxford,,LIGHT,OH,8/2/2013 21:45 +Charlestown,ORANGE,CYLINDER,RI,8/2/2013 22:00 +Fremont,,SPHERE,OH,8/2/2013 22:00 +Nelsonville,,,OH,8/2/2013 22:00 +Williamston,,,SC,8/2/2013 22:30 +Paterson,GREEN,LIGHT,NJ,8/2/2013 23:00 +River Falls,,CIRCLE,WI,8/2/2013 23:25 +Hackettstown,,OVAL,NJ,8/3/2013 0:00 +Loxahatchee,,FIREBALL,FL,8/3/2013 0:00 +Madison,,FIREBALL,CT,8/3/2013 0:18 +Toledo,ORANGE,FIREBALL,OH,8/3/2013 3:48 +Toledo,ORANGE,FIREBALL,OH,8/3/2013 3:48 +Suffolk,,,NY,8/3/2013 4:00 +Deer Park,,LIGHT,NY,8/3/2013 4:05 +Panoche,,CONE,CA,8/3/2013 5:15 +Shelby,,DISK,MI,8/3/2013 10:40 +Forward Township,ORANGE,LIGHT,PA,8/3/2013 10:50 +Boynton Beach,,,FL,8/3/2013 17:15 +Hastings,,DIAMOND,MN,8/3/2013 21:00 +Voorheesville,,CIRCLE,NY,8/3/2013 21:15 +Pittsburgh,,CIRCLE,PA,8/3/2013 21:18 +Lee's Summit,,VARIOUS,MO,8/3/2013 21:20 +Dyersville,ORANGE BLUE,CIRCLE,IA,8/3/2013 21:30 +Grapeview,,OTHER,WA,8/3/2013 21:30 +Mesa,,SPHERE,AZ,8/3/2013 21:30 +New York City,RED ORANGE,FIREBALL,NY,8/3/2013 21:30 +San Diego,RED,OTHER,CA,8/3/2013 21:30 +Medina,,CYLINDER,OH,8/3/2013 21:35 +Indian Trail,ORANGE,SPHERE,NC,8/3/2013 21:40 +Madison,ORANGE,FIREBALL,WI,8/3/2013 21:55 +Asheville,,LIGHT,NC,8/3/2013 22:00 +Cayucos,,FIREBALL,CA,8/3/2013 22:00 +Grenada,,LIGHT,MS,8/3/2013 22:00 +Las Vegas,,LIGHT,NV,8/3/2013 22:00 +Oak Harbor,,VARIOUS,OH,8/3/2013 22:00 +Hoffman Estates,,FIREBALL,IL,8/3/2013 22:20 +Woonsocket,RED,FIREBALL,RI,8/3/2013 22:40 +Fresno,,LIGHT,CA,8/3/2013 23:00 +Monrovia,,LIGHT,CA,8/3/2013 23:00 +Bangor,RED GREEN BLUE,SPHERE,ME,8/3/2013 23:30 +New Richmond,,LIGHT,WI,8/3/2013 23:30 +San Jose,RED,FIREBALL,CA,8/3/2013 23:30 +Cedar Rapids,BLUE,CYLINDER,IA,8/3/2013 23:35 +Port Clinton,,FIREBALL,OH,8/3/2013 23:50 +Dayton,ORANGE,FIREBALL,OH,8/4/2013 0:05 +Riverhead,,FIREBALL,NY,8/4/2013 0:10 +Baytown,,OTHER,TX,8/4/2013 0:30 +Columbus,,LIGHT,OH,8/4/2013 1:58 +Dayton,,FIREBALL,OH,8/4/2013 2:26 +Leland,,FLASH,MI,8/4/2013 4:12 +Fairhaven,,TEARDROP,MA,8/4/2013 4:15 +Berkley,,EGG,MI,8/4/2013 10:50 +Drexel,,DIAMOND,OH,8/4/2013 11:21 +Leesburg,,CIRCLE,VA,8/4/2013 16:40 +Gurley,RED GREEN,CIRCLE,AL,8/4/2013 20:10 +Harvest,GREEN,FIREBALL,AL,8/4/2013 20:10 +Knappa,,CIRCLE,OR,8/4/2013 20:12 +Auburn,GREEN BLUE,CIRCLE,KY,8/4/2013 20:15 +Lisbon Falls,,OVAL,ME,8/4/2013 21:00 +Lake George,,CIRCLE,NY,8/4/2013 21:05 +Lake George Village,ORANGE,SPHERE,NY,8/4/2013 21:07 +Brunswick,,RECTANGLE,OH,8/4/2013 21:15 +Elkton,,SPHERE,MD,8/4/2013 21:15 +Clovis,,LIGHT,CA,8/4/2013 22:00 +Pekin,,LIGHT,IL,8/4/2013 22:00 +West Jordan,,LIGHT,UT,8/4/2013 22:00 +Yellowstone,,LIGHT,WY,8/4/2013 22:00 +Portland,,FORMATION,OR,8/4/2013 22:20 +Boulder,RED,SPHERE,CO,8/4/2013 22:30 +Palmyra,,OTHER,ME,8/4/2013 22:30 +Santa Barbara,,LIGHT,CA,8/4/2013 22:30 +Missoula,,LIGHT,MT,8/4/2013 23:00 +Post Falls,,FIREBALL,ID,8/4/2013 23:00 +Daytona Beach,ORANGE,CIRCLE,FL,8/5/2013 0:00 +Phoenixville,,,PA,8/5/2013 0:00 +West Valley City,,LIGHT,UT,8/5/2013 0:15 +Farmerville,,LIGHT,LA,8/5/2013 2:00 +Windsor,,,CT,8/5/2013 4:40 +Export,,LIGHT,PA,8/5/2013 5:11 +Dayton,ORANGE,SPHERE,OH,8/5/2013 9:28 +Oak Island,,CIRCLE,NC,8/5/2013 10:30 +Stafford,,OVAL,VA,8/5/2013 20:00 +Dike,BLUE,LIGHT,IA,8/5/2013 21:18 +Grove City,,OVAL,MN,8/5/2013 21:30 +Lakeville,BLUE,CIGAR,MN,8/5/2013 21:30 +Captiva,,FIREBALL,FL,8/5/2013 21:46 +Philomath,,LIGHT,OR,8/5/2013 21:59 +Gering,,OTHER,NE,8/5/2013 22:00 +Grand Marais,,,MN,8/5/2013 22:00 +Marstons Mills,,CIRCLE,MA,8/5/2013 22:00 +Valdosta,,CIRCLE,GA,8/5/2013 22:01 +Shoreline,,OVAL,WA,8/5/2013 22:05 +Turlock,,LIGHT,CA,8/5/2013 22:30 +Farmerville,,FLASH,LA,8/5/2013 23:00 +Bismarck,,LIGHT,ND,8/5/2013 23:15 +Commerce,,SPHERE,TX,8/6/2013 1:45 +Monroeville,,LIGHT,PA,8/6/2013 4:13 +Genesee,GREEN,CIRCLE,ID,8/6/2013 9:00 +Los Angeles,,SPHERE,CA,8/6/2013 15:23 +West Palm Beach,,CIRCLE,FL,8/6/2013 20:00 +Waxhaw,RED ORANGE,CYLINDER,NC,8/6/2013 20:30 +Hartford,,LIGHT,NY,8/6/2013 21:00 +Hendersonville,,TRIANGLE,TN,8/6/2013 21:00 +Hilton Head,ORANGE,FIREBALL,SC,8/6/2013 21:00 +Lawndale,RED,EGG,CA,8/6/2013 21:00 +Tucson,,,AZ,8/6/2013 21:00 +Wanamingo,RED,LIGHT,MN,8/6/2013 21:00 +Clarkston,,LIGHT,WA,8/6/2013 21:10 +Captiva,,FLASH,FL,8/6/2013 21:35 +Augusta,ORANGE,OVAL,ME,8/6/2013 21:37 +Attleboro,RED,OVAL,MA,8/6/2013 21:40 +Lehi,BLUE,LIGHT,UT,8/6/2013 22:10 +Toledo,,LIGHT,OH,8/6/2013 22:15 +Beaver,,FIREBALL,OH,8/6/2013 22:20 +Verona,,CIRCLE,KY,8/6/2013 22:40 +Rancho Cucamonga,RED GREEN,RECTANGLE,CA,8/6/2013 22:45 +Lewiston,,CIRCLE,ME,8/6/2013 22:50 +Allentown,,FIREBALL,PA,8/6/2013 23:00 +Hartwell,GREEN,OTHER,GA,8/6/2013 23:20 +Albuquerque,GREEN,,NM,8/6/2013 23:30 +Coeur d'Alene,,LIGHT,ID,8/6/2013 23:30 +Fayetteville,,TRIANGLE,NC,8/6/2013 23:40 +Fayetteville,,TRIANGLE,NC,8/6/2013 23:40 +Lassen National Forest,,,CA,8/7/2013 2:00 +Lake Wales,RED,FIREBALL,FL,8/7/2013 8:05 +Saint augustine,ORANGE,FIREBALL,FL,8/7/2013 8:30 +Harrison,,LIGHT,WA,8/7/2013 10:00 +Everett,,,WA,8/7/2013 10:15 +Las Vegas,,SPHERE,NV,8/7/2013 11:00 +Winter Haven,,FIREBALL,FL,8/7/2013 11:00 +Woodbury,BLUE,TRIANGLE,MN,8/7/2013 11:45 +Joppa,,OVAL,MD,8/7/2013 12:00 +Desert Center,,,CA,8/7/2013 12:15 +Painesville,,FIREBALL,OH,8/7/2013 19:45 +Boca Raton,,CIGAR,FL,8/7/2013 20:00 +Redondo Beach,,OVAL,CA,8/7/2013 20:00 +Reunion,,LIGHT,FL,8/7/2013 20:00 +West Palm Beach,BLUE,SPHERE,FL,8/7/2013 20:00 +Delray Beach,,FORMATION,FL,8/7/2013 20:15 +Staten Island,,CIRCLE,NY,8/7/2013 20:29 +Orlando,,CIRCLE,FL,8/7/2013 20:30 +Pompano Beach,,,FL,8/7/2013 20:30 +Sanford,,LIGHT,FL,8/7/2013 20:30 +West Palm Beach,,TRIANGLE,FL,8/7/2013 20:33 +Dania Beach,,FORMATION,FL,8/7/2013 20:40 +Pompano Beach,,LIGHT,FL,8/7/2013 20:45 +Portland,,,ME,8/7/2013 20:45 +York,BLUE,TEARDROP,ME,8/7/2013 20:45 +West Palm beach,,LIGHT,FL,8/7/2013 20:50 +Plymouth,,OVAL,MA,8/7/2013 21:00 +Schererville,,FIREBALL,IN,8/7/2013 21:00 +Custer,,CIRCLE,WI,8/7/2013 21:30 +Fairbanks,,DIAMOND,AK,8/7/2013 21:30 +Manchester,,TRIANGLE,NH,8/7/2013 21:30 +Poteau,RED,LIGHT,OK,8/7/2013 22:00 +Seattle,ORANGE,CIRCLE,WA,8/7/2013 22:25 +Ada,RED,SPHERE,KS,8/7/2013 23:00 +Woodland,,FIREBALL,WA,8/8/2013 0:10 +Wellston,,OTHER,MI,8/8/2013 3:00 +Mapleton,,LIGHT,UT,8/8/2013 4:30 +Jacob Lake,,CIRCLE,AZ,8/8/2013 9:30 +Tustin,,DISK,CA,8/8/2013 13:00 +St. Petersburg,,CYLINDER,FL,8/8/2013 16:00 +Peoria,,LIGHT,AZ,8/8/2013 20:30 +Miami,,TRIANGLE,FL,8/8/2013 21:00 +North Spokane,,SPHERE,WA,8/8/2013 21:00 +Old Orchard Beach,,CIRCLE,ME,8/8/2013 21:00 +Phoenix,,LIGHT,AZ,8/8/2013 21:00 +Portland,RED,OVAL,OR,8/8/2013 21:00 +Jericho,,SPHERE,VT,8/8/2013 21:02 +Coeur d'Alene,,CIRCLE,ID,8/8/2013 21:09 +Milwaukie,RED,LIGHT,OR,8/8/2013 21:10 +Winchester,,OTHER,ID,8/8/2013 21:10 +Astoria,,LIGHT,OR,8/8/2013 21:11 +Redmond,,LIGHT,WA,8/8/2013 21:15 +Everett,,OTHER,WA,8/8/2013 21:18 +San Diego,,CIRCLE,CA,8/8/2013 21:30 +Lincoln City,,CIRCLE,OR,8/8/2013 21:35 +Captiva,,FLASH,FL,8/8/2013 21:50 +Belmont,ORANGE,,NH,8/8/2013 22:00 +Ferndale,,LIGHT,WA,8/8/2013 22:00 +Lynden,,CYLINDER,WA,8/8/2013 23:00 +Los Angeles,,CIRCLE,CA,8/8/2013 23:20 +Redmond,,LIGHT,WA,8/8/2013 23:30 +Spring Lake Heights,,LIGHT,NJ,8/8/2013 23:35 +In orbit,,,WA,8/8/2013 23:58 +Wenatchee,RED,LIGHT,WA,8/9/2013 0:00 +Naches,,EGG,WA,8/9/2013 10:30 +Merced,,CIRCLE,CA,8/9/2013 11:00 +Kittery,,FLASH,ME,8/9/2013 11:50 +Merced,,CIRCLE,CA,8/9/2013 12:15 +Hermitage,,CIRCLE,PA,8/9/2013 21:00 +Battle Ground,ORANGE,FIREBALL,WA,8/9/2013 21:15 +Lovington,,FIREBALL,IL,8/9/2013 21:30 +Towson,ORANGE,FIREBALL,MD,8/9/2013 21:42 +Captiva,,FIREBALL,FL,8/9/2013 21:45 +Captiva,BLUE,LIGHT,FL,8/9/2013 21:45 +Captiva,,OVAL,FL,8/9/2013 21:45 +Lakeville,,DISK,MN,8/9/2013 21:45 +Gloucester,ORANGE,SPHERE,MA,8/9/2013 22:10 +Centerville,RED,TRIANGLE,GA,8/9/2013 23:00 +Jericho,,LIGHT,VT,8/9/2013 23:15 +Bellingham,,FLASH,WA,8/10/2013 1:00 +Bunkie,,LIGHT,LA,8/10/2013 1:00 +Bunkie,,LIGHT,LA,8/10/2013 1:00 +Wilbraham,,OVAL,MA,8/10/2013 1:00 +Seattle,,LIGHT,WA,8/10/2013 3:30 +Richmond,,TRIANGLE,MI,8/10/2013 4:00 +Overland Park,,OTHER,KS,8/10/2013 7:30 +Manomet,,DISK,MA,8/10/2013 7:34 +Nottingham,RED,FIREBALL,MD,8/10/2013 8:30 +Austin,GREEN,FIREBALL,TX,8/10/2013 9:00 +Yakima,RED,CIRCLE,WA,8/10/2013 9:30 +Warren,GREEN,FIREBALL,MI,8/10/2013 12:00 +Lombard,ORANGE,FORMATION,IL,8/10/2013 19:00 +Delafield,,FORMATION,WI,8/10/2013 19:45 +Sacramento,,OVAL,CA,8/10/2013 20:24 +Cudahy,,LIGHT,WI,8/10/2013 21:00 +Fitchburg,,LIGHT,WI,8/10/2013 21:00 +Genoa City,ORANGE,CHEVRON,WI,8/10/2013 21:00 +O'Fallon,ORANGE,RECTANGLE,MO,8/10/2013 21:23 +Columbus,RED,TRIANGLE,OH,8/10/2013 21:30 +Houston,,FIREBALL,TX,8/10/2013 21:30 +Linfield,RED,FIREBALL,PA,8/10/2013 21:30 +Monticello,RED ORANGE,TEARDROP,AR,8/10/2013 21:30 +Holden Beach,ORANGE,DISK,NC,8/10/2013 21:34 +Beech Creek,,CIRCLE,PA,8/10/2013 21:50 +Johns Creek,,OVAL,GA,8/10/2013 21:52 +Brewster,ORANGE,OVAL,NY,8/10/2013 22:00 +Bristol,ORANGE,CIRCLE,NH,8/10/2013 22:00 +Butte,,LIGHT,MT,8/10/2013 22:00 +Coolin,,SPHERE,ID,8/10/2013 22:00 +Duluth,,LIGHT,MN,8/10/2013 22:00 +Medina,ORANGE,FIREBALL,OH,8/10/2013 22:00 +Sheboygan,,LIGHT,WI,8/10/2013 22:00 +Wiscasset,,,ME,8/10/2013 22:02 +Lehighton,RED,FIREBALL,PA,8/10/2013 22:15 +Emerald Isle,ORANGE,FIREBALL,NC,8/10/2013 22:20 +Dayton,BLUE,SPHERE,OH,8/10/2013 22:30 +St. Louis,,FORMATION,MO,8/10/2013 22:48 +Vienna,ORANGE,TRIANGLE,VA,8/10/2013 23:00 +Auburn,RED,LIGHT,ME,8/10/2013 23:10 +Morrow,,CIRCLE,OH,8/10/2013 23:40 +Holden,,OVAL,ME,8/11/2013 0:15 +Amherst,,CIRCLE,ME,8/11/2013 0:30 +Norfolk,,RECTANGLE,MA,8/11/2013 0:30 +Georgetown,,CIRCLE,TX,8/11/2013 1:00 +Four Oaks,,OTHER,NC,8/11/2013 4:00 +Belmar,,DISK,NJ,8/11/2013 9:00 +Kennebunk,ORANGE,TRIANGLE,ME,8/11/2013 9:20 +Milford,,,CT,8/11/2013 12:00 +Concan,,CIRCLE,TX,8/11/2013 16:00 +Dover,,CIRCLE,ME,8/11/2013 18:00 +Lexington to Cincinnati,,LIGHT,KY,8/11/2013 20:00 +Bozeman,,LIGHT,MT,8/11/2013 21:50 +Jackson,,FIREBALL,OH,8/11/2013 22:00 +Jackson,,FIREBALL,OH,8/11/2013 22:00 +Loveland,ORANGE,LIGHT,OH,8/11/2013 22:00 +Sandy,,LIGHT,UT,8/11/2013 22:00 +San Jose,ORANGE,OTHER,CA,8/11/2013 22:10 +Wichita,RED,TRIANGLE,KS,8/11/2013 22:30 +Melbourne,ORANGE,LIGHT,FL,8/11/2013 22:40 +Englewood,,FIREBALL,OH,8/11/2013 23:00 +Cedaredge,,,CO,8/11/2013 23:24 +Hazen,,DIAMOND,ND,8/11/2013 23:30 +Sicklerville,,DIAMOND,NJ,8/11/2013 23:30 +Everett,,OVAL,WA,8/12/2013 0:00 +Fence,ORANGE YELLOW,DIAMOND,WI,8/12/2013 0:00 +Sanibel,RED ORANGE,,FL,8/12/2013 0:00 +Walla Walla,,CIRCLE,WA,8/12/2013 0:00 +Folsom,,CHEVRON,CA,8/12/2013 0:45 +Woodville,,SPHERE,TX,8/12/2013 0:45 +Thornton,,LIGHT,CO,8/12/2013 1:00 +Dallas,ORANGE,LIGHT,NC,8/12/2013 2:50 +Oxford,,LIGHT,OH,8/12/2013 4:30 +Litchfield Park,,LIGHT,AZ,8/12/2013 4:45 +Utica,RED BLUE,VARIOUS,NY,8/12/2013 5:00 +Colorado Spring,,LIGHT,CO,8/12/2013 9:00 +Portales,ORANGE,CIRCLE,NM,8/12/2013 9:23 +Jericho,,VARIOUS,VT,8/12/2013 11:15 +Yucaipa,,CIRCLE,CA,8/12/2013 12:30 +Arlington Heights,,EGG,IL,8/12/2013 13:00 +Greensboro,,CYLINDER,NC,8/12/2013 18:30 +Dallas,,LIGHT,TX,8/12/2013 19:00 +Dallas,,LIGHT,TX,8/12/2013 19:00 +Vicksburg,,FIREBALL,MI,8/12/2013 19:00 +Western,RED BLUE,VARIOUS,MA,8/12/2013 21:00 +Zeigler,,FIREBALL,IL,8/12/2013 21:00 +Salinas,,CYLINDER,CA,8/12/2013 21:08 +Rochester,,CIRCLE,WA,8/12/2013 21:15 +Devils Tower,GREEN,LIGHT,WY,8/12/2013 21:30 +Jefferson,,FIREBALL,OH,8/12/2013 21:30 +Lincoln,RED GREEN BLUE,TRIANGLE,CA,8/12/2013 21:30 +Massena,BLUE,TRIANGLE,NY,8/12/2013 21:30 +Franklin,,FIREBALL,IN,8/12/2013 22:00 +Hanford,,SPHERE,CA,8/12/2013 22:00 +Stevensville,GREEN,LIGHT,MI,8/12/2013 22:25 +Menomonee Falls,,TRIANGLE,WI,8/12/2013 23:00 +Menomonee Falls,,TRIANGLE,WI,8/12/2013 23:00 +Federal Way,,LIGHT,WA,8/12/2013 23:20 +Chicago,,,IL,8/13/2013 0:15 +Woburn,RED,TRIANGLE,MA,8/13/2013 1:00 +San Diego,,CIRCLE,CA,8/13/2013 1:50 +Fitchburg,,,MA,8/13/2013 2:00 +Las Vegas,,VARIOUS,NV,8/13/2013 2:00 +San Diego,,FORMATION,CA,8/13/2013 2:00 +McHenry,,,IL,8/13/2013 2:30 +East Wenatchee,,TRIANGLE,WA,8/13/2013 3:00 +Okemos,,CIRCLE,MI,8/13/2013 8:10 +Republic,,,WA,8/13/2013 12:00 +Southbury,,OTHER,CT,8/13/2013 16:00 +Wahiawa,,LIGHT,HI,8/13/2013 18:00 +Wahiawa,,LIGHT,HI,8/13/2013 18:00 +Houston,,LIGHT,TX,8/13/2013 18:30 +Orlando,,DISK,FL,8/13/2013 19:25 +Tybee Island,RED,FIREBALL,GA,8/13/2013 21:30 +Vancouver,RED BLUE,LIGHT,WA,8/13/2013 21:45 +Ft. Lauderdale,ORANGE,DISK,FL,8/13/2013 22:00 +Ravenna,,SPHERE,OH,8/13/2013 22:20 +Redmond,,LIGHT,WA,8/13/2013 22:30 +Batavia,,LIGHT,NY,8/13/2013 22:40 +Cannon Beach,BLUE,CIRCLE,OR,8/13/2013 23:00 +Fort Dodge,,CIGAR,IA,8/13/2013 23:30 +Corte Madera,,LIGHT,CA,8/13/2013 23:45 +Franklin,,FIREBALL,IN,8/14/2013 0:25 +Rochester,,FLASH,WA,8/14/2013 0:30 +Sylvania,,RECTANGLE,OH,8/14/2013 1:55 +Tahoe City,,,CA,8/14/2013 3:00 +Phoenix,,LIGHT,AZ,8/14/2013 3:33 +Key West,,CIGAR,FL,8/14/2013 4:00 +Plantation,,LIGHT,FL,8/14/2013 5:25 +Wethersfield,,SPHERE,CT,8/14/2013 5:30 +West New York,BLUE,DISK,NJ,8/14/2013 17:00 +Alma,,FIREBALL,AR,8/14/2013 19:00 +Massillon,,TRIANGLE,OH,8/14/2013 19:00 +Waldoboro,RED,DISK,ME,8/14/2013 20:15 +Seminary,,TRIANGLE,MS,8/14/2013 20:20 +Buckeye,,LIGHT,AZ,8/14/2013 21:00 +North Myrtle Beach,,SPHERE,SC,8/14/2013 21:00 +Winchendon,,TRIANGLE,MA,8/14/2013 21:00 +Romeoville,,FIREBALL,IL,8/14/2013 21:20 +Allentown,,TRIANGLE,PA,8/14/2013 21:30 +Captiva,,OVAL,FL,8/14/2013 21:50 +Bakersfield,,LIGHT,CA,8/14/2013 22:30 +Gardner,RED GREEN,TRIANGLE,KS,8/14/2013 22:30 +Santa Fe,,FIREBALL,TX,8/14/2013 22:39 +Shoshone,,LIGHT,ID,8/14/2013 23:10 +Banks,,SPHERE,MS,8/15/2013 0:14 +Colorado Springs,ORANGE,FORMATION,CO,8/15/2013 0:50 +North East,,,MD,8/15/2013 4:40 +Wallingford,,OTHER,CT,8/15/2013 7:27 +Clinton,,CIGAR,ME,8/15/2013 11:00 +Stow,,LIGHT,OH,8/15/2013 12:00 +Warm Springs,,CYLINDER,GA,8/15/2013 12:11 +Blue Springs,BLUE,OTHER,MO,8/15/2013 14:00 +Cherokee,,DIAMOND,NC,8/15/2013 15:00 +Cherokee,,DIAMOND,NC,8/15/2013 17:00 +Watervliet,,CIRCLE,NY,8/15/2013 17:00 +Fairhope,,DISK,AL,8/15/2013 17:30 +Bude,,CYLINDER,MS,8/15/2013 19:00 +Bauxite,,SPHERE,AR,8/15/2013 19:45 +Roseau,,FIREBALL,AL,8/15/2013 19:45 +Cleveland,,LIGHT,OH,8/15/2013 20:15 +Scottsdale,ORANGE,CYLINDER,AZ,8/15/2013 20:20 +Orlando,,LIGHT,FL,8/15/2013 20:30 +Milford,,SPHERE,NH,8/15/2013 20:52 +Chicago suburbs,BLUE,SPHERE,IL,8/15/2013 21:00 +Ramsey,ORANGE YELLOW,CHEVRON,MN,8/15/2013 21:00 +Avalon,RED GREEN,TRIANGLE,NJ,8/15/2013 21:30 +Maryville,RED,,TN,8/15/2013 21:30 +Captiva,,OVAL,FL,8/15/2013 21:45 +Sterling Heights,,LIGHT,MI,8/15/2013 21:45 +Lahaska,ORANGE,FORMATION,PA,8/15/2013 21:55 +Mission Viejo,ORANGE,CIRCLE,CA,8/15/2013 21:58 +Cedar Grove,,CIRCLE,NC,8/15/2013 22:00 +Coeur d'Alene,,LIGHT,ID,8/15/2013 22:00 +Lake Wales,,SPHERE,FL,8/15/2013 22:00 +Round Rock,,SPHERE,TX,8/15/2013 22:00 +Foxboro,,DISK,MA,8/15/2013 22:30 +Forks,,LIGHT,WA,8/15/2013 22:55 +Avon,,LIGHT,CT,8/15/2013 23:00 +Erie,,DISK,PA,8/15/2013 23:00 +West Union,,CIRCLE,WV,8/16/2013 0:00 +Madison,,FIREBALL,WI,8/16/2013 1:10 +Santa Clara,,CIRCLE,CA,8/16/2013 8:00 +Grandview,,LIGHT,WA,8/16/2013 10:50 +Lebanon,,CIGAR,TN,8/16/2013 20:00 +Larkspur,,DISK,CO,8/16/2013 21:00 +Fenton,ORANGE,CIRCLE,MO,8/16/2013 21:15 +Fredericksburg,,CIRCLE,VA,8/16/2013 21:30 +Reynoldsburg,ORANGE,SPHERE,OH,8/16/2013 21:30 +Sparta,,FIREBALL,KY,8/16/2013 21:40 +Gahanna,,LIGHT,OH,8/16/2013 21:45 +Loxahatchee,,CONE,FL,8/16/2013 21:45 +Comfort,,LIGHT,TX,8/16/2013 22:00 +Parker,ORANGE,LIGHT,CO,8/16/2013 22:00 +Rabun County,,FIREBALL,GA,8/16/2013 22:00 +Syracuse,RED YELLOW,OTHER,NY,8/16/2013 22:00 +Taylorsville,,LIGHT,NC,8/16/2013 22:00 +Topsail Island,,FIREBALL,NC,8/16/2013 22:00 +Orlando,ORANGE,FIREBALL,FL,8/16/2013 22:06 +Aitkins,ORANGE,CONE,MN,8/16/2013 22:15 +Monroe,RED,LIGHT,MI,8/16/2013 22:15 +Manson,,CIRCLE,WA,8/16/2013 22:20 +Captiva,,FIREBALL,FL,8/16/2013 22:30 +Cottage Grove,,FIREBALL,MN,8/16/2013 22:30 +Dubuque,ORANGE,OVAL,IA,8/16/2013 22:30 +Bakersfield,RED,TRIANGLE,CA,8/16/2013 23:00 +Ceres,,TRIANGLE,CA,8/16/2013 23:00 +Long Branch,,FORMATION,NJ,8/16/2013 23:00 +Westminster,,FIREBALL,MD,8/16/2013 23:00 +San Diego,RED BLUE,CIRCLE,CA,8/17/2013 1:00 +Orlando,RED,OVAL,FL,8/17/2013 3:05 +Madison,,RECTANGLE,WI,8/17/2013 7:30 +Cranston,,LIGHT,RI,8/17/2013 9:30 +Mabton,,LIGHT,WA,8/17/2013 10:00 +Port Wing,RED,DIAMOND,WI,8/17/2013 10:32 +Hove,,SPHERE,HI,8/17/2013 11:00 +Canton,,LIGHT,MI,8/17/2013 19:45 +Dillsburg,,FORMATION,PA,8/17/2013 20:30 +Evansville,RED,,IN,8/17/2013 20:30 +Gloucester,,CIRCLE,MA,8/17/2013 20:30 +Phoenixville,,,PA,8/17/2013 20:43 +Orlando,,SPHERE,FL,8/17/2013 20:55 +Conneaut Lake,,LIGHT,PA,8/17/2013 21:00 +Garfield Heights,,OTHER,OH,8/17/2013 21:00 +Sag Harbor,,CIRCLE,NY,8/17/2013 21:00 +Seattle,RED,FORMATION,WA,8/17/2013 21:09 +Shepherdstown,RED ORANGE,RECTANGLE,WV,8/17/2013 21:10 +Marlborough,,LIGHT,MA,8/17/2013 21:15 +San Marcos,,LIGHT,CA,8/17/2013 21:24 +Saint Johns,ORANGE,SPHERE,MI,8/17/2013 21:27 +Canton,ORANGE,SPHERE,OH,8/17/2013 21:58 +Danbury,ORANGE,CIRCLE,CT,8/17/2013 22:00 +San Gabriel,ORANGE,FIREBALL,CA,8/17/2013 22:00 +Lowell,,CIRCLE,MA,8/17/2013 22:05 +Grand Rapids,,OVAL,MI,8/17/2013 22:08 +Fort Wayne,,,IN,8/17/2013 22:10 +St. Clair,ORANGE,,MI,8/17/2013 22:15 +Kure Beach,,FIREBALL,NC,8/17/2013 22:30 +Heyburn,,TRIANGLE,ID,8/17/2013 23:00 +Ravenswood,RED ORANGE,SPHERE,WV,8/17/2013 23:30 +Safford,,CIRCLE,AZ,8/18/2013 3:00 +Paradise,,CIRCLE,MT,8/18/2013 3:15 +La Mesa,,FLASH,CA,8/18/2013 3:30 +Austin,,RECTANGLE,TX,8/18/2013 5:30 +Poteau,,OVAL,OK,8/18/2013 8:45 +Findlay,ORANGE BLUE,SPHERE,OH,8/18/2013 9:00 +Ontario,,DISK,CA,8/18/2013 10:37 +Ingleside,,VARIOUS,IL,8/18/2013 13:45 +Centralia,,LIGHT,WA,8/18/2013 19:30 +Temecula,,CIRCLE,CA,8/18/2013 19:30 +Gilbert,,CHEVRON,AZ,8/18/2013 20:00 +Bristol,ORANGE,FIREBALL,CT,8/18/2013 20:06 +Rochester,,CIRCLE,WA,8/18/2013 20:56 +Tacoma,ORANGE,FIREBALL,WA,8/18/2013 21:08 +Bellevue,,TRIANGLE,WI,8/18/2013 21:14 +Lake George,,LIGHT,NY,8/18/2013 21:15 +Lahaina,ORANGE,FIREBALL,HI,8/18/2013 21:40 +Brandenton Beach,ORANGE,CIRCLE,FL,8/18/2013 21:45 +Trout Lake,,LIGHT,WA,8/18/2013 22:18 +Lake Jackson,,LIGHT,TX,8/18/2013 22:23 +Blaine,ORANGE,SPHERE,MN,8/18/2013 23:30 +Lancaster,RED ORANGE,FLASH,CA,8/19/2013 5:50 +Las Cruces,,LIGHT,NM,8/19/2013 6:00 +Galatia,RED,CYLINDER,IL,8/19/2013 20:20 +San Rafael,,OTHER,CA,8/19/2013 20:31 +Chicago,RED,SPHERE,IL,8/19/2013 21:00 +Columbus,,CIRCLE,OH,8/19/2013 21:00 +Kill Devil Hills,,CIRCLE,NC,8/19/2013 21:00 +Rochester,,CIRCLE,WA,8/19/2013 21:02 +Marysville,,LIGHT,OH,8/19/2013 21:45 +Colts Neck,,LIGHT,NJ,8/19/2013 21:59 +Dublin,,DISK,OH,8/19/2013 22:00 +Virginia Beach,,EGG,VA,8/19/2013 23:00 +Concord,GREEN,OVAL,NC,8/19/2013 23:30 +Springfield,,CIGAR,VA,8/20/2013 3:00 +Highland,,LIGHT,UT,8/20/2013 5:20 +Pine Bush,,OTHER,NY,8/20/2013 5:30 +Ellsworth,,CIRCLE,ME,8/20/2013 7:50 +Santa Barbara,,VARIOUS,CA,8/20/2013 16:00 +Antioch,,OTHER,TN,8/20/2013 17:00 +Fairfirld,,DISK,CA,8/20/2013 19:00 +Farmington,,OTHER,MI,8/20/2013 19:22 +Hannibal,,FIREBALL,MO,8/20/2013 20:30 +Madison,,LIGHT,NH,8/20/2013 20:30 +Tacoma,ORANGE,FIREBALL,WA,8/20/2013 20:45 +Tacoma,RED,FIREBALL,WA,8/20/2013 20:45 +Boston,,LIGHT,MA,8/20/2013 21:00 +Los Angeles,RED ORANGE,FIREBALL,CA,8/20/2013 21:00 +Beaverton,,LIGHT,OR,8/20/2013 21:05 +Marstons Mills,,SPHERE,MA,8/20/2013 21:06 +Silverdale,,LIGHT,WA,8/20/2013 21:10 +Flat Rock,ORANGE,EGG,MI,8/20/2013 21:14 +Corry,ORANGE,LIGHT,PA,8/20/2013 21:40 +Portland,,FIREBALL,OR,8/20/2013 22:00 +Smithsburg,,TRIANGLE,MD,8/20/2013 22:00 +Baltimore,ORANGE,CIRCLE,MA,8/20/2013 22:20 +Kure Beach,,FIREBALL,NC,8/20/2013 23:15 +Waynesboro,,CIRCLE,VA,8/20/2013 23:30 +Orlando,,FLASH,FL,8/21/2013 2:15 +Preston,ORANGE,LIGHT,CT,8/21/2013 11:15 +Glen Rose,,CIRCLE,TX,8/21/2013 13:00 +Kennewick,,CIGAR,WA,8/21/2013 14:15 +Alton,,FIREBALL,IL,8/21/2013 20:30 +North Berwick,ORANGE,OTHER,ME,8/21/2013 20:30 +Potosi,,CYLINDER,MO,8/21/2013 20:44 +Fort Wayne,,FIREBALL,IN,8/21/2013 21:15 +New York,GREEN,RECTANGLE,NY,8/21/2013 21:40 +New York City,,LIGHT,NY,8/21/2013 21:40 +Rhinebeck,,FIREBALL,NY,8/21/2013 21:50 +Holiday,RED GREEN,LIGHT,FL,8/21/2013 22:00 +Nimishillen,,TEARDROP,OH,8/21/2013 22:00 +Sebring,RED,TRIANGLE,OH,8/21/2013 22:00 +Staunton,,LIGHT,VA,8/21/2013 22:00 +New York City,,SPHERE,NY,8/21/2013 22:30 +Rodanthe,ORANGE,LIGHT,NC,8/21/2013 23:00 +Stroudsburg,,LIGHT,PA,8/21/2013 23:15 +Hinesville,,,GA,8/22/2013 3:00 +Slingerlands,,,NY,8/22/2013 3:00 +Fort Dodge,,CIRCLE,IA,8/22/2013 10:00 +Huntington Beach,,FIREBALL,CA,8/22/2013 19:46 +Winston-Salem,,CIRCLE,NC,8/22/2013 20:10 +Richmond,,LIGHT,MN,8/22/2013 20:30 +Gig Harbor,,TRIANGLE,WA,8/22/2013 20:45 +Pemberton,,,NJ,8/22/2013 20:45 +Isanti,,FIREBALL,MN,8/22/2013 20:50 +Chicago,,TRIANGLE,IL,8/22/2013 21:00 +Madison,,LIGHT,WI,8/22/2013 21:00 +Azle,,CIGAR,TX,8/22/2013 21:11 +Broken Arrow,,LIGHT,OK,8/22/2013 21:30 +Deepwater,BLUE,SPHERE,MO,8/22/2013 21:47 +Ocean City,,LIGHT,MD,8/22/2013 22:00 +Petersburg,,FIREBALL,VA,8/22/2013 22:00 +Naples,,,FL,8/22/2013 22:30 +Kansas City,,LIGHT,MO,8/22/2013 23:00 +Lehi,,,UT,8/22/2013 23:00 +Lyndon,,RECTANGLE,WI,8/22/2013 23:00 +Harrisonburg,,LIGHT,VA,8/23/2013 0:00 +Lebanon,ORANGE,LIGHT,IN,8/23/2013 2:00 +Charlton,,LIGHT,MA,8/23/2013 6:30 +Marstons Mills,,SPHERE,MA,8/23/2013 8:20 +Torrington,,,CT,8/23/2013 9:58 +Erie,,CYLINDER,PA,8/23/2013 10:55 +Erie,,CYLINDER,PA,8/23/2013 11:00 +Pleasant Hill,,OTHER,CA,8/23/2013 17:30 +Eleven Mile Corner,,,AZ,8/23/2013 18:15 +Captiva,,,FL,8/23/2013 20:20 +Appleton,,FLASH,WI,8/23/2013 20:30 +Fresno,,LIGHT,CA,8/23/2013 20:30 +Johnstown,,CIRCLE,CO,8/23/2013 20:30 +Johnstown,,LIGHT,CO,8/23/2013 20:30 +New Bedford,RED,,MA,8/23/2013 20:30 +Unity Township,,LIGHT,PA,8/23/2013 20:30 +Manitowoc,,LIGHT,WI,8/23/2013 20:50 +Dana Point,ORANGE,FORMATION,CA,8/23/2013 21:00 +Santa Ana,,LIGHT,CA,8/23/2013 21:30 +North East,,TRIANGLE,MD,8/23/2013 21:45 +Lexington,,LIGHT,KY,8/23/2013 22:00 +Springfield,,FIREBALL,OH,8/23/2013 22:00 +Springfield,ORANGE,LIGHT,OH,8/23/2013 22:00 +Davenport,,SPHERE,IA,8/23/2013 22:09 +Elkton,ORANGE,,MD,8/23/2013 22:30 +South Portland,ORANGE,FIREBALL,ME,8/23/2013 22:45 +Hamden,RED,CIRCLE,CT,8/23/2013 22:47 +Marco Island,,CIRCLE,FL,8/23/2013 23:45 +Charlotte,ORANGE,LIGHT,NC,8/24/2013 0:00 +Tyndall AFB,,FIREBALL,FL,8/24/2013 0:00 +Washington,,,NC,8/24/2013 0:00 +Edmond,,OTHER,OK,8/24/2013 1:00 +Edmond,,OVAL,OK,8/24/2013 1:00 +Shaw,,CIRCLE,MS,8/24/2013 1:00 +Springboro,,FIREBALL,OH,8/24/2013 1:00 +Cottontown,,DISK,TN,8/24/2013 3:35 +Abington,,CIRCLE,PA,8/24/2013 17:00 +Indianapolis,ORANGE BLUE,VARIOUS,IN,8/24/2013 18:04 +Bemus Point,RED,CIRCLE,NY,8/24/2013 20:00 +Elmira,,SPHERE,NY,8/24/2013 20:00 +Kerville,,CIRCLE,TX,8/24/2013 20:00 +Westport,ORANGE,SPHERE,CT,8/24/2013 20:00 +Everett,,LIGHT,MA,8/24/2013 20:30 +Jackson,ORANGE,FORMATION,WI,8/24/2013 20:30 +Ogdensburg,,OVAL,NJ,8/24/2013 20:35 +Drums,,FIREBALL,PA,8/24/2013 20:45 +Jefferson,ORANGE,LIGHT,WI,8/24/2013 20:45 +Springfield Township,RED,TEARDROP,OH,8/24/2013 20:45 +Livermore Falls,ORANGE,LIGHT,ME,8/24/2013 20:50 +Silverdale,,LIGHT,WA,8/24/2013 20:58 +Bernville,,LIGHT,PA,8/24/2013 21:00 +Hudson,,FIREBALL,WI,8/24/2013 21:00 +Janesville,YELLOW,CIRCLE,WI,8/24/2013 21:00 +Mt. Airy,,SPHERE,NC,8/24/2013 21:00 +Nashville,ORANGE,FIREBALL,TN,8/24/2013 21:00 +New York City,,CIRCLE,NY,8/24/2013 21:00 +New York City,,OTHER,NY,8/24/2013 21:00 +Oak Island,ORANGE,LIGHT,NC,8/24/2013 21:00 +Los Angeles,,CIRCLE,CA,8/24/2013 21:05 +Chatham,ORANGE,CIRCLE,IL,8/24/2013 21:15 +Guilderland,RED ORANGE,SPHERE,NY,8/24/2013 21:15 +Hackensack,,CIRCLE,NJ,8/24/2013 21:15 +Belo,ORANGE,LIGHT,WV,8/24/2013 21:20 +Philadelphia,,LIGHT,PA,8/24/2013 21:20 +Birdlake,,VARIOUS,MI,8/24/2013 21:30 +Lowell,,LIGHT,MA,8/24/2013 21:30 +Ross Township,,FIREBALL,PA,8/24/2013 21:30 +Lisle,RED,CIRCLE,IL,8/24/2013 21:35 +Claremont,,CIRCLE,NH,8/24/2013 22:00 +Des Moines,RED,FORMATION,IA,8/24/2013 22:00 +Fort Wayne,,CIRCLE,IN,8/24/2013 22:00 +Ravenna,,TRIANGLE,OH,8/24/2013 22:00 +Seven Devils,,FIREBALL,NC,8/24/2013 22:00 +Tacoma,,LIGHT,WA,8/24/2013 22:00 +Lake Wales,,FIREBALL,FL,8/24/2013 22:08 +O'Fallon,ORANGE,SPHERE,MO,8/24/2013 22:30 +Hickory Hills,,CIRCLE,IL,8/24/2013 22:40 +Ilwaco,,FIREBALL,WA,8/24/2013 23:00 +Mission Viejo,RED,LIGHT,CA,8/24/2013 23:00 +Toledo,,LIGHT,OH,8/24/2013 23:05 +Mason,ORANGE,LIGHT,OH,8/24/2013 23:50 +Coloma,ORANGE,SPHERE,MI,8/24/2013 23:57 +Lockport,,FIREBALL,NY,8/25/2013 0:01 +St. Agatha,,LIGHT,ME,8/25/2013 0:30 +Port Saint Lucie,,LIGHT,FL,8/25/2013 0:35 +Murray,RED GREEN,OVAL,KY,8/25/2013 1:20 +Yakima,,LIGHT,WA,8/25/2013 4:30 +Weaverville,,CYLINDER,NC,8/25/2013 19:00 +Waikoloa,,,HI,8/25/2013 19:30 +Syracuse,ORANGE,VARIOUS,NY,8/25/2013 19:50 +Milford,,,CT,8/25/2013 20:00 +Indianapolis,YELLOW,CIRCLE,IN,8/25/2013 20:30 +Spring Hill,,SPHERE,TN,8/25/2013 20:30 +Dallas,,TRIANGLE,GA,8/25/2013 21:00 +Hillsborough,,LIGHT,NJ,8/25/2013 21:00 +Hutto,ORANGE,LIGHT,TX,8/25/2013 21:00 +Worton,,CIRCLE,MD,8/25/2013 21:00 +Cottonwood,,RECTANGLE,AZ,8/25/2013 21:25 +Ypsilanti,,FIREBALL,MI,8/25/2013 21:30 +Goshen,RED,FORMATION,IN,8/25/2013 22:00 +Linden,,OVAL,NJ,8/25/2013 22:00 +Moultrie,,CIRCLE,GA,8/25/2013 22:00 +Weaverville,,OTHER,NC,8/25/2013 22:00 +Mount Pleasant,ORANGE,FIREBALL,SC,8/25/2013 22:30 +Pelion,,FORMATION,SC,8/25/2013 23:00 +Winchester,,RECTANGLE,KS,8/26/2013 0:50 +Newburgh,,LIGHT,IN,8/26/2013 1:00 +Platte City,GREEN,LIGHT,MO,8/26/2013 1:30 +Greensboro,,CIRCLE,GA,8/26/2013 4:40 +Bear,,OTHER,DE,8/26/2013 9:30 +Tucumcari,,LIGHT,NM,8/26/2013 17:30 +El Paso,,LIGHT,TX,8/26/2013 20:25 +Greensburg,ORANGE,FIREBALL,PA,8/26/2013 20:40 +Delavan,,SPHERE,WI,8/26/2013 21:00 +Salt Lake City,,LIGHT,UT,8/26/2013 21:15 +Bridgeport,,LIGHT,WV,8/26/2013 22:00 +Dodge City,,CIRCLE,KS,8/26/2013 23:00 +Enfield,,LIGHT,NH,8/26/2013 23:00 +Ashgrove,,,MO,8/27/2013 1:05 +West Chester,,FORMATION,PA,8/27/2013 1:15 +Columbia,ORANGE,LIGHT,ME,8/27/2013 2:00 +Atlanta,,FIREBALL,GA,8/27/2013 17:00 +Pasadena,,TRIANGLE,CA,8/27/2013 17:30 +Campbell,,,OH,8/27/2013 20:00 +Richmond,,LIGHT,VA,8/27/2013 20:30 +Richmond,RED,SPHERE,VA,8/27/2013 20:37 +Bluebell,,FIREBALL,PA,8/27/2013 20:45 +New York City,ORANGE,FIREBALL,NY,8/27/2013 20:50 +Garfield,RED,OVAL,WA,8/27/2013 21:10 +Marshall,,SPHERE,WI,8/27/2013 21:10 +Cedar Rapids,,LIGHT,IA,8/27/2013 21:30 +Winsted,RED,,CT,8/27/2013 22:00 +Las Vegas,,FIREBALL,NV,8/27/2013 22:15 +Garland,,FIREBALL,TX,8/27/2013 22:23 +Somerset,,OTHER,NJ,8/27/2013 22:50 +Ridgefield,RED YELLOW,OTHER,CT,8/28/2013 7:50 +Kapoho,,LIGHT,HI,8/28/2013 10:30 +Munising,,OTHER,MI,8/28/2013 10:35 +Edgewood,,CIGAR,NM,8/28/2013 20:00 +Marmora,,TRIANGLE,NJ,8/28/2013 20:00 +Roseville,,FIREBALL,MI,8/28/2013 20:00 +Kailua Kona,,LIGHT,HI,8/28/2013 20:30 +Ft. Branch,RED,DISK,IN,8/28/2013 20:45 +Seattle,,FIREBALL,WA,8/28/2013 20:45 +O'Fallon,,OTHER,MO,8/28/2013 21:00 +Sidney,RED,SPHERE,OH,8/28/2013 21:00 +Captiva,,DISK,FL,8/28/2013 21:02 +Hilton Head,GREEN,CYLINDER,SC,8/28/2013 21:10 +Billings,,FIREBALL,MT,8/28/2013 21:30 +Shawnee,,LIGHT,OK,8/28/2013 22:00 +Auburn,,FORMATION,NY,8/28/2013 22:30 +Twin Lake,,OTHER,MI,8/29/2013 1:00 +Lees Summit,,LIGHT,MO,8/29/2013 4:30 +Phoenix,RED GREEN BLUE,CYLINDER,AZ,8/29/2013 5:00 +Indianapolis,,LIGHT,IN,8/29/2013 11:56 +Torrance,,,CA,8/29/2013 19:16 +Newark,,CIRCLE,DE,8/29/2013 20:30 +Salt Lake City,,LIGHT,UT,8/29/2013 21:00 +Captiva,,OVAL,FL,8/29/2013 21:05 +Lexington,ORANGE,SPHERE,SC,8/29/2013 21:05 +Port Saint Lucie,,FIREBALL,FL,8/29/2013 21:15 +Big Bend,,,WI,8/29/2013 22:00 +Coeur d'Alene,,LIGHT,ID,8/29/2013 22:25 +Bristol,,TRIANGLE,TN,8/29/2013 22:30 +Woodstock,,FORMATION,IL,8/30/2013 0:00 +Corpus Christi,RED GREEN BLUE,CIRCLE,TX,8/30/2013 1:00 +Farmersburg,ORANGE,LIGHT,IN,8/30/2013 2:30 +Mayfield,,VARIOUS,KY,8/30/2013 3:00 +Palmer,,CIRCLE,AK,8/30/2013 4:00 +Fort Smith,,TRIANGLE,AR,8/30/2013 4:30 +Brainerd,,CIGAR,MN,8/30/2013 15:30 +Pittsburgh,,,PA,8/30/2013 16:35 +Bristol,,LIGHT,CT,8/30/2013 19:30 +Bristol,,LIGHT,CT,8/30/2013 19:30 +Pensacola,,FIREBALL,FL,8/30/2013 19:30 +Sedona,ORANGE,FIREBALL,AZ,8/30/2013 20:10 +East Aurora,,FORMATION,NY,8/30/2013 20:30 +West Haven,ORANGE,SPHERE,CT,8/30/2013 20:35 +Falmouth,,TRIANGLE,ME,8/30/2013 20:48 +Falmouth,ORANGE,LIGHT,ME,8/30/2013 20:55 +Bedminster,,FIREBALL,NJ,8/30/2013 21:00 +Port Saint Lucie,,FIREBALL,FL,8/30/2013 21:10 +Bristol,,CIRCLE,CT,8/30/2013 21:15 +Pacific City,,CIRCLE,OR,8/30/2013 21:25 +Foster City,,FORMATION,CA,8/30/2013 21:30 +Mendota Heights,ORANGE BLUE,SPHERE,MN,8/30/2013 21:30 +North Myrtle Beach,BLUE,VARIOUS,SC,8/30/2013 21:30 +Haymarket,,LIGHT,VA,8/30/2013 21:45 +Haymarket,,LIGHT,VA,8/30/2013 21:45 +Bloomington,,FIREBALL,IL,8/30/2013 22:00 +Enola,,CIRCLE,PA,8/30/2013 22:00 +Des Moines,RED,LIGHT,IA,8/30/2013 22:30 +Necedah,,FLASH,WI,8/30/2013 22:30 +Vallejo,,FLASH,CA,8/30/2013 22:45 +Charleston,,TRIANGLE,WV,8/31/2013 0:03 +Albuquerque,,LIGHT,NM,8/31/2013 4:30 +Fairview Heights,,FLASH,IL,8/31/2013 5:20 +Oakhill,,CIRCLE,WV,8/31/2013 11:30 +Murfreesboro,,CIRCLE,TN,8/31/2013 12:45 +Beloit Township,,CIRCLE,WI,8/31/2013 13:29 +Gilbert,,OVAL,AZ,8/31/2013 14:00 +Eagle Creek,,OTHER,OR,8/31/2013 18:45 +Mt. Airy,,LIGHT,NC,8/31/2013 19:00 +Glendale,,VARIOUS,AZ,8/31/2013 19:59 +Mukwonago,RED ORANGE,RECTANGLE,WI,8/31/2013 20:00 +Lake Grove,RED,FIREBALL,NY,8/31/2013 20:20 +Milford,RED,TRIANGLE,CT,8/31/2013 20:30 +Fish Lake,,LIGHT,IN,8/31/2013 20:35 +Elk Mills,,FORMATION,MD,8/31/2013 20:45 +Lake Geneva,ORANGE,LIGHT,WI,8/31/2013 20:45 +Mentor,RED,FIREBALL,OH,8/31/2013 20:50 +Glenville,,LIGHT,NC,8/31/2013 21:00 +Grand Traverse County,ORANGE,LIGHT,MI,8/31/2013 21:00 +Mukwonago,,VARIOUS,WI,8/31/2013 21:00 +Smithtown,ORANGE,TRIANGLE,NY,8/31/2013 21:00 +South Lincoln,ORANGE,CIRCLE,VT,8/31/2013 21:00 +Westlake,,OVAL,OH,8/31/2013 21:05 +Fort Atkinson,,CIRCLE,WI,8/31/2013 21:10 +Oakland,,LIGHT,CA,8/31/2013 21:15 +Lenexa,,LIGHT,KS,8/31/2013 21:20 +Fairmont,,CIRCLE,WV,8/31/2013 21:30 +Grayslake,YELLOW,FIREBALL,IL,8/31/2013 21:30 +Ingleside,RED,TEARDROP,IL,8/31/2013 22:05 +Kingston,,OTHER,NY,8/31/2013 22:14 +Hillsboro,ORANGE,FIREBALL,OR,8/31/2013 22:20 +Phoenix,,CIRCLE,NY,8/31/2013 22:20 +Danbury,RED,RECTANGLE,CT,8/31/2013 22:30 +Beavercreek,RED ORANGE,LIGHT,OH,8/31/2013 22:35 +Loganville,ORANGE,,GA,8/31/2013 23:02 +Orem,,DISK,UT,8/31/2013 23:29 +Takoma,,DISK,WA,8/31/2013 23:30 +Wyoming,,CIGAR,WY,9/1/2013 0:00 +Milton,ORANGE,OVAL,WV,9/1/2013 0:55 +North Providence,GREEN BLUE,DISK,RI,9/1/2013 1:30 +Arlington,ORANGE,FIREBALL,TX,9/1/2013 2:15 +San Marcos,,LIGHT,TX,9/1/2013 3:10 +Salt Lake City,,SPHERE,UT,9/1/2013 9:30 +San Antonio,,EGG,TX,9/1/2013 15:00 +Clayton,,OTHER,NM,9/1/2013 17:30 +Antioch,,OTHER,IL,9/1/2013 18:50 +Grenada,,LIGHT,MS,9/1/2013 19:19 +Worthington,,,OH,9/1/2013 19:30 +Rowley,,DISK,MA,9/1/2013 20:00 +Woodbridge,ORANGE,FORMATION,VA,9/1/2013 20:15 +Loudon,,FIREBALL,TN,9/1/2013 20:30 +Santa Barbara,YELLOW,TRIANGLE,CA,9/1/2013 20:40 +Beavercreek,,FIREBALL,OH,9/1/2013 21:00 +Beavercreek,ORANGE,FIREBALL,OH,9/1/2013 21:00 +Rossville,,DISK,GA,9/1/2013 21:00 +St. Amant,,VARIOUS,LA,9/1/2013 21:00 +Zelionople,ORANGE YELLOW,FIREBALL,PA,9/1/2013 21:00 +Columbus,,FIREBALL,OH,9/1/2013 21:15 +Provincetown,,FIREBALL,MA,9/1/2013 21:15 +Wakeman,ORANGE,CIRCLE,OH,9/1/2013 21:19 +Georgetown,ORANGE,,KY,9/1/2013 21:30 +Lupton,RED ORANGE,LIGHT,MI,9/1/2013 21:30 +Zanesville,RED ORANGE,,OH,9/1/2013 21:33 +Bozrah,,CIRCLE,CT,9/1/2013 21:57 +Arlington,ORANGE,OVAL,WI,9/1/2013 22:00 +Costa Mesa,RED ORANGE,OVAL,CA,9/1/2013 22:00 +Everett,RED,LIGHT,WA,9/1/2013 22:15 +Hendersonville,,FIREBALL,TN,9/1/2013 22:15 +Wilsonville,,CIGAR,OR,9/1/2013 22:15 +Statesville,,,NC,9/1/2013 22:35 +Dennisport,ORANGE,SPHERE,MA,9/1/2013 23:00 +Ogallala,,LIGHT,NE,9/1/2013 23:00 +Pickerington,,TRIANGLE,OH,9/1/2013 23:00 +Milton,,LIGHT,WV,9/2/2013 0:55 +Greenbelt,,TRIANGLE,MD,9/2/2013 2:30 +Wellington,,CYLINDER,FL,9/2/2013 3:36 +Peoria,,CIRCLE,AZ,9/2/2013 7:10 +Seatac,,,WA,9/2/2013 17:00 +Mesa,,CIRCLE,AZ,9/2/2013 18:30 +Mesa,,TRIANGLE,AZ,9/2/2013 18:35 +Maricopa,RED,LIGHT,AZ,9/2/2013 18:50 +San Tan Valley,,TRIANGLE,AZ,9/2/2013 18:50 +Mesa,,TRIANGLE,AZ,9/2/2013 19:00 +Queen Creek,,CIRCLE,AZ,9/2/2013 19:00 +Goodyear,,CONE,AZ,9/2/2013 19:07 +Holyoke,,,MA,9/2/2013 19:18 +Sun City,,LIGHT,AZ,9/2/2013 19:20 +West Chester,,FIREBALL,OH,9/2/2013 20:15 +Buna,ORANGE,LIGHT,TX,9/2/2013 21:00 +Lincoln City,RED,LIGHT,OR,9/2/2013 21:30 +Lincoln City,ORANGE,CIRCLE,OR,9/2/2013 21:35 +Chesterfield,,TRIANGLE,VA,9/2/2013 22:30 +Everett,ORANGE,FIREBALL,WA,9/2/2013 22:45 +Indianapolis,,,IN,9/3/2013 0:00 +Logan,,TRIANGLE,WV,9/3/2013 1:00 +Woodbury,,TRIANGLE,MN,9/3/2013 8:50 +East Hartford,,TRIANGLE,CT,9/3/2013 14:36 +Springdale,,SPHERE,AR,9/3/2013 16:30 +West Palm Beach,,SPHERE,FL,9/3/2013 19:30 +Laguna Beach,ORANGE,LIGHT,CA,9/3/2013 19:57 +Mt. Airy,,CIRCLE,NC,9/3/2013 20:00 +Canton,,LIGHT,OH,9/3/2013 21:00 +Salt Lake City,,VARIOUS,UT,9/3/2013 21:00 +Yoder,ORANGE,SPHERE,KS,9/3/2013 21:15 +Lincoln City,RED,LIGHT,OR,9/3/2013 21:30 +Severna Park,,SPHERE,MD,9/3/2013 21:30 +Slippery Rock,,,PA,9/3/2013 22:00 +Chittenango,,CIRCLE,NY,9/3/2013 22:44 +Fresno,,OVAL,CA,9/3/2013 23:30 +Coram,,FLASH,NY,9/4/2013 0:24 +Clarksville,BLUE,FLASH,AR,9/4/2013 1:00 +Cutler Bay,,TRIANGLE,FL,9/4/2013 1:43 +Bradshaw,YELLOW,DIAMOND,NE,9/4/2013 5:55 +Meriden,,CYLINDER,CT,9/4/2013 6:25 +Waxhaw,RED ORANGE,SPHERE,NC,9/4/2013 8:45 +Santa Ana,,LIGHT,CA,9/4/2013 9:30 +Parkville,,LIGHT,MD,9/4/2013 11:15 +Malibu,RED GREEN,DIAMOND,CA,9/4/2013 19:40 +Seymour,,FIREBALL,CT,9/4/2013 20:50 +Moore,RED,LIGHT,OK,9/4/2013 20:53 +Manchester,,CROSS,NH,9/4/2013 20:55 +Covington,,CIRCLE,GA,9/4/2013 21:00 +San Diego,RED,LIGHT,CA,9/4/2013 21:09 +Warsaw,RED YELLOW,FIREBALL,OH,9/4/2013 21:15 +Gainesville,GREEN,,GA,9/4/2013 23:00 +Shavertown,RED GREEN,FLASH,PA,9/4/2013 23:10 +Campbell,,FIREBALL,CA,9/4/2013 23:30 +Advance,,DIAMOND,NC,9/5/2013 0:00 +Lincoln,,SPHERE,NE,9/5/2013 2:00 +Kings Mountain,,OTHER,NC,9/5/2013 5:30 +Hunt Valley,,SPHERE,MD,9/5/2013 7:16 +Susanville,,CIGAR,CA,9/5/2013 9:50 +Denver,,DISK,CO,9/5/2013 11:30 +Advance,RED,TRIANGLE,NC,9/5/2013 12:00 +Gilbert,,,AZ,9/5/2013 18:00 +Gallatin,,CIRCLE,TN,9/5/2013 19:00 +Los Banos,,TRIANGLE,CA,9/5/2013 20:00 +Whittier,RED,CIRCLE,CA,9/5/2013 20:00 +Bellingham,RED,CIRCLE,MA,9/5/2013 20:25 +Cary,,CIRCLE,NC,9/5/2013 20:30 +Sacramento,RED BLUE,VARIOUS,CA,9/5/2013 20:30 +Easton,BLUE,FIREBALL,PA,9/5/2013 21:00 +Emerald Isle,ORANGE,CIRCLE,NC,9/5/2013 21:00 +Everett,ORANGE,TRIANGLE,WA,9/5/2013 21:00 +Hayden,,,AL,9/5/2013 21:00 +Merrill,,FLASH,OR,9/5/2013 21:00 +Fairbanks,,DISK,AK,9/5/2013 22:00 +Pittsburgh,,,PA,9/5/2013 22:00 +Boston,,OVAL,NY,9/5/2013 22:20 +Shrewsbury,,CIRCLE,PA,9/5/2013 22:30 +Springfield,,VARIOUS,MA,9/5/2013 23:00 +Surfside Beach,ORANGE,DISK,SC,9/5/2013 23:30 +Fairport,,OVAL,NY,9/5/2013 23:45 +Celina,ORANGE,SPHERE,TX,9/6/2013 0:48 +Sicklerville,,FIREBALL,NJ,9/6/2013 1:23 +Lincoln,,,NE,9/6/2013 2:00 +Urbana,ORANGE,TRIANGLE,OH,9/6/2013 5:00 +Boise,,FIREBALL,ID,9/6/2013 6:37 +Victoria,,OTHER,MN,9/6/2013 9:35 +Augusta,,CYLINDER,WV,9/6/2013 16:00 +Hemet,,,CA,9/6/2013 20:00 +Johns Creek,,LIGHT,GA,9/6/2013 21:15 +Prosser,,EGG,WA,9/6/2013 21:25 +Pyote,,TRIANGLE,TX,9/6/2013 22:00 +Cumming,,DISK,GA,9/6/2013 22:20 +Myrtle Beach,RED,FORMATION,SC,9/6/2013 22:30 +Asheville,,VARIOUS,NC,9/6/2013 23:00 +Gladstone,BLUE,FLASH,MI,9/6/2013 23:10 +Hellertown,ORANGE,FIREBALL,PA,9/6/2013 23:30 +Searsmont,,LIGHT,ME,9/6/2013 23:30 +Broadlands,,FIREBALL,VA,9/6/2013 23:45 +Tampa,,DISK,FL,9/7/2013 1:15 +Placerville,,FIREBALL,CO,9/7/2013 2:35 +Portland,RED GREEN,LIGHT,CT,9/7/2013 3:45 +Tomball,,DISK,TX,9/7/2013 7:45 +Montpelier,,CIRCLE,VT,9/7/2013 9:45 +Cass Lake,,OVAL,MN,9/7/2013 13:00 +Dearborn Heights,,CIGAR,MI,9/7/2013 14:00 +Richmond,,LIGHT,VA,9/7/2013 17:00 +Rochester,,LIGHT,NH,9/7/2013 18:30 +Sebree,,LIGHT,KY,9/7/2013 19:50 +Racine,ORANGE,FIREBALL,WI,9/7/2013 20:00 +San Diego,ORANGE,FIREBALL,CA,9/7/2013 20:00 +Westport,RED,LIGHT,MA,9/7/2013 20:15 +Onalaska,,FIREBALL,WI,9/7/2013 20:22 +Dayton,,CIRCLE,WA,9/7/2013 21:00 +Peidmont,,LIGHT,AL,9/7/2013 21:00 +Springfield,ORANGE,SPHERE,OR,9/7/2013 21:15 +South Bend,,FIREBALL,IN,9/7/2013 21:16 +Cumming,ORANGE,,GA,9/7/2013 21:27 +Houston,,CIRCLE,TX,9/7/2013 21:30 +Petaluma,,CIRCLE,CA,9/7/2013 21:30 +Coventry,,CIRCLE,RI,9/7/2013 22:00 +Ludington,,,MI,9/7/2013 22:00 +Woodbury,,LIGHT,CT,9/7/2013 22:00 +New Orleans,,LIGHT,LA,9/7/2013 22:30 +Manchester,GREEN,CIRCLE,NH,9/7/2013 22:55 +Phillipsburg,,LIGHT,NJ,9/7/2013 23:00 +Renton,RED,FIREBALL,WA,9/7/2013 23:00 +Petaluma,,CIRCLE,CA,9/7/2013 23:15 +Piscataway,ORANGE,,NJ,9/7/2013 23:30 +Birch Bay,,LIGHT,WA,9/8/2013 0:30 +Leland,,TRIANGLE,NC,9/8/2013 0:50 +Fresno,,SPHERE,CA,9/8/2013 1:30 +Coldwater,ORANGE,TRIANGLE,MI,9/8/2013 2:30 +Austin,,VARIOUS,TX,9/8/2013 5:00 +Killeen,,,TX,9/8/2013 6:15 +Maine,,FIREBALL,ME,9/8/2013 19:30 +Pt. St Lucie,,CROSS,FL,9/8/2013 20:15 +Port Saint Lucie,,LIGHT,FL,9/8/2013 20:30 +Lincoln,,FLASH,CA,9/8/2013 20:58 +Wichita,,LIGHT,KS,9/8/2013 21:00 +Silveradale,GREEN,SPHERE,WA,9/8/2013 21:15 +Derby,ORANGE,FIREBALL,KS,9/8/2013 22:00 +Fort Worth,RED GREEN,LIGHT,TX,9/8/2013 22:25 +Fort Wayne,,FIREBALL,IN,9/8/2013 22:30 +Everett,RED,FIREBALL,WA,9/8/2013 23:15 +Norfolk,,,VA,9/9/2013 0:15 +Buffalo,RED,TRIANGLE,NY,9/9/2013 1:50 +Struthers,,,OH,9/9/2013 3:00 +San Diego,,LIGHT,CA,9/9/2013 9:51 +Reading,ORANGE,CYLINDER,PA,9/9/2013 11:00 +Star Tannery,,,VA,9/9/2013 12:00 +Cedar Park,,CIGAR,TX,9/9/2013 12:34 +Cabot,RED ORANGE,CIGAR,AR,9/9/2013 20:00 +Clifton,,OTHER,NJ,9/9/2013 20:15 +Tuscaloosa,,FIREBALL,AL,9/9/2013 20:20 +Clarksville,,FIREBALL,TN,9/9/2013 20:21 +Gainesville,,TRIANGLE,FL,9/9/2013 21:00 +Hamstead,ORANGE,LIGHT,NC,9/9/2013 21:00 +Woodstock,GREEN,SPHERE,GA,9/9/2013 21:00 +Nashville,,LIGHT,TN,9/9/2013 21:15 +Boise,RED,CIRCLE,ID,9/9/2013 22:00 +Kalispell,BLUE,DISK,MT,9/9/2013 22:00 +Napa,,OTHER,CA,9/9/2013 22:00 +Vienna,,CIRCLE,VA,9/9/2013 22:20 +Edmond,RED,CIGAR,OK,9/9/2013 23:00 +Starr,RED,DIAMOND,SC,9/9/2013 23:00 +Ft. Lauderdale,RED,OVAL,FL,9/9/2013 23:30 +Myrtle Beach,ORANGE,CIRCLE,SC,9/10/2013 0:00 +Hemet,,LIGHT,CA,9/10/2013 2:00 +Summerville,,TRIANGLE,SC,9/10/2013 5:15 +Talbot,,CIGAR,TN,9/10/2013 15:00 +Gorham,,CROSS,ME,9/10/2013 16:46 +Beavercreek,RED GREEN,CIRCLE,OH,9/10/2013 19:35 +Pine Mountain Club,,,CA,9/10/2013 20:00 +St. Helena,,FLASH,CA,9/10/2013 20:00 +Buxton,ORANGE,RECTANGLE,NC,9/10/2013 22:00 +Eau Claire,,,WI,9/10/2013 22:15 +Milwaukee,ORANGE,FIREBALL,WI,9/10/2013 23:00 +Warwick,ORANGE,FORMATION,RI,9/10/2013 23:00 +Syracuse,,SPHERE,UT,9/11/2013 0:45 +Medina,,CIRCLE,OH,9/11/2013 1:00 +Sharpsburg,,CIRCLE,MD,9/11/2013 2:00 +Gillette,,CIRCLE,WY,9/11/2013 9:00 +Virginia Beach,GREEN,CIGAR,VA,9/11/2013 10:00 +Cupertino,,,CA,9/11/2013 10:45 +Lebanon,,OVAL,IL,9/11/2013 12:26 +Auburn,,,WA,9/11/2013 17:15 +Nashville,,TRIANGLE,TN,9/11/2013 19:20 +Emerald Isle,ORANGE,CIRCLE,NC,9/11/2013 20:30 +Fayetteville,,VARIOUS,NC,9/11/2013 20:30 +Myrtle beach,ORANGE,CYLINDER,SC,9/11/2013 20:30 +Emerald Isle,ORANGE,FIREBALL,NC,9/11/2013 21:00 +San Miguel,RED,TRIANGLE,CA,9/11/2013 21:00 +Emerald Isle,ORANGE,RECTANGLE,NC,9/11/2013 22:00 +Saint Peter,ORANGE,CIRCLE,MN,9/11/2013 22:20 +Hillsboro,,TRIANGLE,OR,9/11/2013 23:00 +Myrtle Beach,ORANGE,LIGHT,SC,9/11/2013 23:00 +Myrtle Beach,,FIREBALL,SC,9/11/2013 23:10 +Scottsdale,,OTHER,AZ,9/11/2013 23:30 +Capitola,ORANGE,FIREBALL,CA,9/12/2013 0:00 +McMinnville,RED ORANGE,TRIANGLE,OR,9/12/2013 0:00 +Tampa,,CROSS,FL,9/12/2013 0:26 +Moreno Valley,,LIGHT,CA,9/12/2013 1:38 +,,LIGHT,OH,9/12/2013 3:00 +,,OVAL,OH,9/12/2013 3:00 +Hasbrouck Heights,,OVAL,NJ,9/12/2013 6:45 +Naperville,,TRIANGLE,IL,9/12/2013 18:30 +Buckeye,ORANGE,LIGHT,AZ,9/12/2013 20:00 +Holden Beach,ORANGE,FIREBALL,NC,9/12/2013 20:20 +Ocean Springs,,TRIANGLE,MS,9/12/2013 20:30 +Tacoma,,TRIANGLE,WA,9/12/2013 20:30 +Ashley,,LIGHT,IL,9/12/2013 20:45 +Sebastopol,GREEN,VARIOUS,CA,9/12/2013 21:30 +Tacoma,,LIGHT,WA,9/12/2013 21:30 +Pacoima,,CIRCLE,CA,9/12/2013 22:00 +Santa Barbara,RED GREEN,TRIANGLE,CA,9/12/2013 23:30 +Sweetser,,LIGHT,IN,9/13/2013 2:18 +Kingston,,OVAL,NY,9/13/2013 5:30 +Owensboro,,FIREBALL,KY,9/13/2013 19:52 +Webster,,FIREBALL,IA,9/13/2013 20:20 +Ben Avon,,SPHERE,PA,9/13/2013 20:30 +Keystone Heights,ORANGE,OTHER,FL,9/13/2013 20:30 +Dana Point,ORANGE,FIREBALL,CA,9/13/2013 21:00 +Livonia,ORANGE,FIREBALL,MI,9/13/2013 21:00 +Senoia,ORANGE,DISK,GA,9/13/2013 21:00 +Phoenix,ORANGE,FIREBALL,AZ,9/13/2013 21:10 +North Myrtle Beach,,,SC,9/13/2013 21:45 +Boulder,,VARIOUS,CO,9/13/2013 22:00 +Bryan,,LIGHT,TX,9/13/2013 22:00 +Bricktown,,SPHERE,NJ,9/13/2013 22:15 +Green Bay,ORANGE,CIRCLE,WI,9/13/2013 22:30 +Roswell,,CIRCLE,GA,9/13/2013 22:50 +Richmond,RED,DISK,VA,9/13/2013 22:55 +Boulder,GREEN,CIGAR,CO,9/13/2013 23:00 +Kentwood,,LIGHT,MI,9/13/2013 23:00 +Canby,,,OR,9/13/2013 23:39 +Kill Devil Hill,ORANGE,TRIANGLE,NC,9/14/2013 0:00 +Lake Worth,ORANGE,TRIANGLE,FL,9/14/2013 4:00 +Zionsville,GREEN,SPHERE,IN,9/14/2013 6:00 +Surprise,,,AZ,9/14/2013 7:01 +Frankfort,,,KY,9/14/2013 12:00 +Hiawatha,,LIGHT,IA,9/14/2013 14:00 +Gallatin,,RECTANGLE,TN,9/14/2013 15:00 +Elyria,ORANGE,FIREBALL,OH,9/14/2013 17:15 +Columbus,,LIGHT,OH,9/14/2013 17:30 +Kingsport,,DISK,TN,9/14/2013 17:30 +Morro Bay,ORANGE,FIREBALL,CA,9/14/2013 19:02 +Murray,ORANGE,CIRCLE,KY,9/14/2013 19:40 +Gardendale,,SPHERE,AL,9/14/2013 19:45 +Blossvale,,FIREBALL,NY,9/14/2013 20:00 +Milford,BLUE,OTHER,CT,9/14/2013 20:00 +North Huntingdon,,RECTANGLE,PA,9/14/2013 20:00 +Provincetown,,LIGHT,MA,9/14/2013 20:00 +Seattle,ORANGE,FIREBALL,WA,9/14/2013 20:00 +Syracuse,ORANGE,CIRCLE,NY,9/14/2013 20:00 +Frederick,RED,CIRCLE,MD,9/14/2013 20:10 +Mt. Holly,ORANGE,LIGHT,NJ,9/14/2013 20:15 +Athelstine,,LIGHT,WI,9/14/2013 20:30 +Collegeville,ORANGE YELLOW,LIGHT,PA,9/14/2013 20:35 +Bowling Green,GREEN,LIGHT,KY,9/14/2013 20:40 +Chicago,,CIRCLE,IL,9/14/2013 20:45 +Iowa,,FIREBALL,LA,9/14/2013 20:53 +Farmington,ORANGE,CIRCLE,CT,9/14/2013 21:00 +Fredericksburg,,LIGHT,VA,9/14/2013 21:00 +Meridian,RED,CIRCLE,ID,9/14/2013 21:00 +Canby,,SPHERE,OR,9/14/2013 21:23 +Columbus,RED,LIGHT,OH,9/14/2013 21:30 +Grosse Ile,,FIREBALL,MI,9/14/2013 21:35 +Lancaster County,,LIGHT,PA,9/14/2013 21:42 +Bridgewater,RED,FIREBALL,MA,9/14/2013 21:45 +College Station,,LIGHT,TX,9/14/2013 22:00 +Lafayette,,CIRCLE,IN,9/14/2013 22:00 +Landisville,ORANGE,OVAL,PA,9/14/2013 22:00 +Saint Louis,,DISK,MO,9/14/2013 22:00 +Seattle,,,WA,9/14/2013 22:00 +Seattle,RED ORANGE,,WA,9/14/2013 22:00 +Columbus,ORANGE,LIGHT,OH,9/14/2013 22:14 +Canton,ORANGE,FIREBALL,GA,9/14/2013 22:25 +O'Fallon,ORANGE,CIRCLE,MO,9/14/2013 22:40 +Fayetteville,,LIGHT,GA,9/14/2013 22:45 +Ashville,,CONE,NY,9/14/2013 23:00 +Hamilton,,FIREBALL,OH,9/14/2013 23:00 +Lakehurst,ORANGE,FIREBALL,NJ,9/14/2013 23:10 +Lock Haven,,RECTANGLE,PA,9/14/2013 23:40 +Cleveland,RED,,OH,9/14/2013 23:45 +Vancouver,ORANGE,TRIANGLE,WA,9/15/2013 0:45 +East Los Angeles,RED GREEN,CIRCLE,CA,9/15/2013 1:00 +Lincolnville,,TRIANGLE,ME,9/15/2013 1:00 +Miami,,FIREBALL,FL,9/15/2013 9:30 +Tempe,RED,SPHERE,AZ,9/15/2013 10:30 +Deer Park,,LIGHT,NY,9/15/2013 20:00 +Easton,,FORMATION,PA,9/15/2013 20:00 +Mt. Airy,,LIGHT,NC,9/15/2013 20:00 +Northampton County,RED,FIREBALL,PA,9/15/2013 20:00 +Oconomowoc,,LIGHT,WI,9/15/2013 20:13 +Wethersfield,,FIREBALL,CT,9/15/2013 20:22 +West Chester,,OVAL,PA,9/15/2013 20:30 +Gainesville,ORANGE,FORMATION,GA,9/15/2013 21:00 +Goshen,,RECTANGLE,IN,9/15/2013 21:00 +Manchac,,,LA,9/15/2013 21:00 +Charleston,,TRIANGLE,SC,9/15/2013 21:35 +Green Bay,,OTHER,WI,9/16/2013 0:00 +Idaho Falls,,CIRCLE,ID,9/16/2013 0:00 +Cromwell,BLUE,,CT,9/16/2013 10:55 +Goodyear,,VARIOUS,AZ,9/16/2013 18:30 +Eden Mills,,CONE,VT,9/16/2013 20:00 +Windsor,RED,LIGHT,CA,9/16/2013 20:03 +Burbank,,VARIOUS,CA,9/16/2013 21:00 +Fergus Falls,RED ORANGE BLUE,,MN,9/16/2013 21:00 +Salt Lake City,,OTHER,UT,9/16/2013 21:00 +San Diego,BLUE,,CA,9/16/2013 23:00 +Troy,ORANGE GREEN,LIGHT,ID,9/16/2013 23:00 +Fayetteville,ORANGE,TRIANGLE,AR,9/17/2013 0:00 +Bemidji,ORANGE,SPHERE,MN,9/17/2013 1:30 +Ocoee,ORANGE,,FL,9/17/2013 4:25 +Blackwood,,SPHERE,NJ,9/17/2013 14:00 +Mesa,,TRIANGLE,AZ,9/17/2013 15:30 +Flint,,VARIOUS,MI,9/17/2013 16:20 +Memphis,GREEN,OTHER,TN,9/17/2013 16:45 +Newark,,CIRCLE,NJ,9/17/2013 19:30 +Tumacacori,,VARIOUS,AZ,9/17/2013 20:00 +Westport,ORANGE,,MA,9/17/2013 20:15 +Akron,,,OH,9/17/2013 21:34 +Riverside,ORANGE,CIRCLE,CA,9/17/2013 21:45 +Portland,RED GREEN,LIGHT,ME,9/17/2013 22:00 +Bridgeton,,LIGHT,MO,9/18/2013 5:00 +Suffolk,ORANGE,TRIANGLE,VA,9/18/2013 9:00 +Hamilton,,FIREBALL,AL,9/18/2013 11:00 +Melville,,CYLINDER,NY,9/18/2013 12:00 +Silver spring,,CIRCLE,MD,9/18/2013 15:00 +Rochester,,CIRCLE,WA,9/18/2013 17:42 +Clearlake Oaks,,DIAMOND,CA,9/18/2013 20:10 +Dallas,RED ORANGE,,TX,9/18/2013 20:30 +Smithport,,LIGHT,PA,9/18/2013 20:30 +Silverdale,,LIGHT,WA,9/18/2013 21:00 +Baltimore,GREEN,LIGHT,MD,9/18/2013 21:05 +Centerville,,TRIANGLE,OH,9/18/2013 21:10 +Boise,,FORMATION,ID,9/18/2013 21:11 +Seattle,,LIGHT,WA,9/18/2013 21:30 +Shelbyville,,CIGAR,KY,9/18/2013 21:30 +Shelbyville,RED,CIGAR,KY,9/18/2013 21:30 +Clermont,ORANGE,LIGHT,FL,9/18/2013 21:50 +Everett,,FIREBALL,WA,9/18/2013 22:00 +Newfield,,,NJ,9/18/2013 22:00 +Ketchum,ORANGE,CIRCLE,ID,9/18/2013 22:30 +Suwanee,BLUE,LIGHT,GA,9/18/2013 22:30 +Bullhead City,,,AZ,9/18/2013 23:00 +Tucson,,CIRCLE,AZ,9/18/2013 23:00 +Cumming,BLUE,LIGHT,GA,9/18/2013 23:50 +Round Rock,,DISK,TX,9/19/2013 0:00 +New Mexico,,LIGHT,NM,9/19/2013 1:00 +Berlin,,LIGHT,MD,9/19/2013 11:00 +Klamath Falls,,TEARDROP,OR,9/19/2013 11:20 +Sharpsburg,RED,SPHERE,KY,9/19/2013 15:00 +Albuquerque,,CIRCLE,NM,9/19/2013 19:45 +West Warwick,ORANGE,FIREBALL,RI,9/19/2013 20:00 +Northville,ORANGE,FIREBALL,NY,9/19/2013 20:05 +Sequim,RED YELLOW,LIGHT,WA,9/19/2013 20:10 +Stowe,RED,SPHERE,VT,9/19/2013 20:10 +Asbury Park,BLUE,SPHERE,NJ,9/19/2013 20:30 +Somerville,GREEN BLUE,DISK,MA,9/19/2013 20:35 +Horseheads,,TRIANGLE,NY,9/19/2013 21:05 +Horseheads,,TRIANGLE,NY,9/19/2013 21:05 +Downingtown,,CIRCLE,PA,9/19/2013 21:20 +Auburn,RED,CIRCLE,WA,9/19/2013 21:23 +Deming,,OTHER,NM,9/19/2013 22:00 +Round Hill,GREEN,LIGHT,VA,9/19/2013 22:55 +Merrimcak,,LIGHT,NH,9/19/2013 23:00 +Wyoming,,FIREBALL,MI,9/19/2013 23:05 +Tuscarora,,OTHER,MD,9/20/2013 1:00 +Merrimack,,LIGHT,NH,9/20/2013 1:05 +Milwaukee,,,WI,9/20/2013 3:45 +Olympia,,FIREBALL,WA,9/20/2013 4:40 +Kingwood,,LIGHT,TX,9/20/2013 6:00 +Greenwood,RED GREEN,FIREBALL,SC,9/20/2013 10:00 +Newcastle,,SPHERE,ME,9/20/2013 19:00 +Grasonville,,FLASH,MD,9/20/2013 19:20 +Toms River,,LIGHT,NJ,9/20/2013 19:30 +Cowpens,,CIRCLE,SC,9/20/2013 19:45 +Bluffdale,,FIREBALL,UT,9/20/2013 20:00 +Tucson,,TEARDROP,AZ,9/20/2013 20:02 +Altoona,,FIREBALL,PA,9/20/2013 20:15 +Lehighton,,TRIANGLE,PA,9/20/2013 20:45 +DeLand,ORANGE,TRIANGLE,FL,9/20/2013 21:45 +Deland,ORANGE,TRIANGLE,FL,9/20/2013 21:45 +Indian Rocks Beach,,VARIOUS,FL,9/20/2013 22:00 +Whitesburg,RED,,TN,9/20/2013 22:30 +Albuquerque,,,NM,9/20/2013 23:00 +Latham,,CIRCLE,KS,9/20/2013 23:00 +Greenville,,TRIANGLE,SC,9/20/2013 23:08 +Drexel Hill,ORANGE,,PA,9/20/2013 23:30 +Somerville,ORANGE,SPHERE,MA,9/21/2013 1:00 +Greenville,ORANGE,DISK,NC,9/21/2013 2:00 +Grand Prairie,,OTHER,TX,9/21/2013 6:00 +Milan,RED,CIRCLE,TN,9/21/2013 8:45 +Manassas,,SPHERE,VA,9/21/2013 17:20 +Albuquerque,,CYLINDER,NM,9/21/2013 19:00 +Bedford,,SPHERE,IN,9/21/2013 19:00 +Rio Rancho,ORANGE,,NM,9/21/2013 19:00 +Albuquerque,,,NM,9/21/2013 19:10 +Bettendorf,,CIRCLE,IA,9/21/2013 19:30 +San Tan Valley,,FIREBALL,AZ,9/21/2013 19:30 +Santa Fe,,CYLINDER,NM,9/21/2013 19:30 +Chandler,,FIREBALL,AZ,9/21/2013 19:35 +Jupiter,RED,CROSS,FL,9/21/2013 20:00 +Racine,,OTHER,WI,9/21/2013 20:00 +Wichita,RED BLUE,DISK,KS,9/21/2013 20:00 +Marine City,,CIRCLE,MI,9/21/2013 20:15 +Miami,,LIGHT,FL,9/21/2013 20:20 +Medina,,FIREBALL,OH,9/21/2013 20:30 +Plantation,ORANGE,CROSS,FL,9/21/2013 20:35 +Celina,,,OH,9/21/2013 21:00 +Childress,GREEN,LIGHT,TX,9/21/2013 21:00 +Lind,,FIREBALL,WI,9/21/2013 21:00 +Powell,RED ORANGE,SPHERE,OH,9/21/2013 21:00 +Columbus,ORANGE,FIREBALL,OH,9/21/2013 21:10 +Lawton,GREEN BLUE,CIRCLE,OK,9/21/2013 21:11 +Waterford,ORANGE,FORMATION,WI,9/21/2013 21:15 +Anchorage,RED ORANGE,OVAL,AK,9/21/2013 21:20 +Rapid City,RED GREEN BLUE,,SD,9/21/2013 21:30 +Des Moines,,LIGHT,IA,9/21/2013 22:00 +San Antonio,,FORMATION,TX,9/21/2013 22:00 +Grand Prairie,,OVAL,TX,9/21/2013 22:30 +Delta,ORANGE,FIREBALL,OH,9/21/2013 23:00 +South Chesterfield,,FORMATION,VA,9/21/2013 23:00 +Tulare,,LIGHT,CA,9/21/2013 23:30 +Verona,,FIREBALL,NJ,9/21/2013 23:30 +Louisville,,LIGHT,KY,9/22/2013 0:00 +Janesville,RED,LIGHT,WI,9/22/2013 0:02 +Lititz,,VARIOUS,PA,9/22/2013 0:03 +Sandstone,,LIGHT,MN,9/22/2013 2:00 +Amherst,,,MA,9/22/2013 2:30 +Easton,RED,CIGAR,PA,9/22/2013 3:00 +Gastonia,,CONE,NC,9/22/2013 3:30 +Albuquerque,,SPHERE,NM,9/22/2013 6:00 +Rio Rancho,,CIRCLE,NM,9/22/2013 6:20 +Norman,,LIGHT,OK,9/22/2013 6:45 +Albuquerque,,TRIANGLE,NM,9/22/2013 7:30 +Kingston,BLUE,FIREBALL,NH,9/22/2013 7:30 +Warwick,,CIRCLE,RI,9/22/2013 18:00 +Albuquerque,,LIGHT,NM,9/22/2013 18:30 +Gorham,,FIREBALL,ME,9/22/2013 19:00 +Kennebunkport,,FLASH,ME,9/22/2013 19:15 +Canterbury,,,NH,9/22/2013 19:20 +Auburn,GREEN,FIREBALL,ME,9/22/2013 19:25 +North Wayne,,OVAL,ME,9/22/2013 19:30 +Plymouth,GREEN,FIREBALL,MA,9/22/2013 19:30 +Salem,,FIREBALL,NH,9/22/2013 19:30 +South Hamiltion,GREEN,FIREBALL,MA,9/22/2013 19:35 +Belfry,,LIGHT,KY,9/22/2013 20:00 +Chicago,,FIREBALL,IL,9/22/2013 20:00 +Lilburn,,FIREBALL,GA,9/22/2013 20:00 +Yarmouth Port,GREEN,LIGHT,MA,9/22/2013 20:00 +Sacramento,,FORMATION,CA,9/22/2013 20:20 +Sacramento,ORANGE,SPHERE,CA,9/22/2013 20:20 +Crestline,ORANGE,VARIOUS,OH,9/22/2013 20:30 +Orlando,,OTHER,FL,9/22/2013 20:30 +Redkey,,LIGHT,IN,9/22/2013 20:47 +Bloomington,ORANGE,DISK,IL,9/22/2013 21:00 +Jackson,,LIGHT,WI,9/22/2013 21:00 +Bloomington,ORANGE,FIREBALL,IL,9/22/2013 21:03 +Healdsburg,,,CA,9/22/2013 21:25 +Bar Harbor,,LIGHT,ME,9/22/2013 21:50 +Columbia,ORANGE,SPHERE,SC,9/22/2013 22:02 +New Brunswick,,LIGHT,NJ,9/22/2013 23:03 +Rockville,,CIRCLE,MD,9/22/2013 23:25 +Carmichael,RED,FORMATION,CA,9/22/2013 23:30 +East Islip,ORANGE,LIGHT,NY,9/22/2013 23:45 +Waterloo,,OTHER,IA,9/23/2013 1:00 +Alden,,,IL,9/23/2013 2:00 +Conway,,DISK,SC,9/23/2013 5:30 +Dillsburg,,CIGAR,PA,9/23/2013 8:00 +Montgomery,,DISK,OH,9/23/2013 17:20 +Denver,,TRIANGLE,CO,9/23/2013 17:30 +Englewood,,FIREBALL,OH,9/23/2013 19:30 +Miamisburg,,LIGHT,OH,9/23/2013 19:30 +Prunedale,ORANGE,FIREBALL,CA,9/23/2013 19:30 +Awatukee,,FORMATION,AZ,9/23/2013 20:00 +Hilliard,,FIREBALL,OH,9/23/2013 20:00 +Virginia Beach,BLUE,OTHER,VA,9/23/2013 20:00 +Lakewood,,OTHER,CO,9/23/2013 20:13 +South Elgin,ORANGE,FORMATION,IL,9/23/2013 20:15 +Las Cruces,,LIGHT,NM,9/23/2013 20:30 +Sachse,,SPHERE,TX,9/23/2013 20:30 +Muskogee,,LIGHT,OK,9/23/2013 20:40 +Denver,,FIREBALL,CO,9/23/2013 20:45 +Vernal,GREEN,FIREBALL,UT,9/23/2013 20:45 +Denver,ORANGE,SPHERE,CO,9/23/2013 20:50 +Millersburg,RED,TRIANGLE,KY,9/23/2013 21:00 +Delray Beach,YELLOW,LIGHT,FL,9/23/2013 21:10 +South Windsor,,LIGHT,CT,9/23/2013 21:10 +West Valley City,,LIGHT,UT,9/23/2013 21:11 +Las Vegas,,LIGHT,NV,9/23/2013 21:23 +Rochester,,,NY,9/23/2013 21:30 +Defiance,,SPHERE,OH,9/23/2013 22:00 +Coatesville,RED GREEN,DISK,IN,9/23/2013 23:00 +Neillsville,,CIRCLE,WI,9/23/2013 23:15 +Las Vegas,,FIREBALL,NV,9/24/2013 4:14 +Andrews,,DISK,SC,9/24/2013 5:15 +East Syracuse,,DISK,NY,9/24/2013 5:30 +Virginia Beach,,FORMATION,VA,9/24/2013 5:43 +Columbus,,OTHER,OH,9/24/2013 7:07 +Elk Neck,,,MD,9/24/2013 7:40 +Tulsa,,DISK,OK,9/24/2013 14:00 +South Sioux City,,SPHERE,NE,9/24/2013 18:00 +Townville,,LIGHT,PA,9/24/2013 19:30 +Mokena,,,IL,9/24/2013 19:45 +Turners Falls,RED ORANGE,FIREBALL,MA,9/24/2013 19:58 +Belleville,ORANGE,LIGHT,WI,9/24/2013 20:00 +Fort Wayne,,FLASH,IN,9/24/2013 20:30 +Fort Wayne,,FLASH,IN,9/24/2013 20:30 +Murrells Inlet,,TRIANGLE,SC,9/24/2013 20:30 +Richmond,,TRIANGLE,VA,9/24/2013 20:30 +Fairbanks,,CIRCLE,AK,9/24/2013 20:35 +Lonsdale,,,AR,9/24/2013 20:45 +East Dublin,RED,LIGHT,GA,9/24/2013 21:00 +Hudson,,FIREBALL,NH,9/24/2013 21:30 +Hazen,,CIGAR,ND,9/24/2013 21:45 +Columbus,,OVAL,OH,9/24/2013 22:33 +Rapid City,,TRIANGLE,MI,9/24/2013 23:00 +South Sioux City,,SPHERE,NE,9/25/2013 1:00 +Hopkinton,,LIGHT,RI,9/25/2013 3:39 +Three Forks,,CIRCLE,MT,9/25/2013 5:17 +Marin,,DISK,CA,9/25/2013 13:40 +Meridian,,DISK,ID,9/25/2013 16:18 +LaFayette,,LIGHT,NY,9/25/2013 19:30 +Kinsman,,LIGHT,OH,9/25/2013 20:02 +Redmond,RED,FORMATION,WA,9/25/2013 20:04 +Olathe,,LIGHT,KS,9/25/2013 20:20 +Blaine,,,MN,9/25/2013 20:30 +Newport Beach,,TRIANGLE,CA,9/25/2013 21:00 +Fayetteville,,VARIOUS,WV,9/25/2013 22:25 +Huddy,,FIREBALL,KY,9/25/2013 22:30 +Magnolia,RED GREEN,LIGHT,TX,9/25/2013 23:30 +Franksville,,FIREBALL,WI,9/26/2013 0:00 +Beverly,,SPHERE,MA,9/26/2013 0:20 +Baton Rouge,,LIGHT,LA,9/26/2013 3:00 +Blaine,,LIGHT,WA,9/26/2013 4:26 +Owensboro,GREEN BLUE,FIREBALL,KY,9/26/2013 6:05 +Fort Wayne,,FIREBALL,IN,9/26/2013 7:05 +New Britain,RED,LIGHT,CT,9/26/2013 7:30 +Youngstown,,CROSS,OH,9/26/2013 7:55 +Fort Wayn,,DIAMOND,IN,9/26/2013 12:00 +Meriden,,DISK,CT,9/26/2013 18:00 +Portsmouth,,LIGHT,VA,9/26/2013 18:22 +Pawcatuck,,TEARDROP,CT,9/26/2013 18:50 +Davenport,,LIGHT,IA,9/26/2013 19:00 +Cincinnati,ORANGE,CIRCLE,OH,9/26/2013 19:40 +Frankfort,,FIREBALL,MI,9/26/2013 20:00 +Leesburg,,FORMATION,VA,9/26/2013 20:15 +Denver,,,CO,9/26/2013 20:20 +Turlock,,CHEVRON,CA,9/26/2013 20:23 +Alameda,RED,,CA,9/26/2013 20:55 +Chicago Park,RED,FLASH,CA,9/26/2013 21:00 +Longs,,CIRCLE,SC,9/26/2013 21:00 +Conway,RED,CIRCLE,SC,9/26/2013 21:05 +Interlachen,ORANGE,LIGHT,FL,9/26/2013 21:15 +Arlington,RED,SPHERE,VA,9/26/2013 21:20 +High Point,BLUE,DIAMOND,NC,9/26/2013 21:30 +Lake Worth,,CHEVRON,FL,9/26/2013 21:30 +North Myrtle Beach,ORANGE,CIRCLE,SC,9/26/2013 21:30 +North Myrtle Beach,ORANGE,CIRCLE,SC,9/26/2013 21:30 +Turlock,,LIGHT,CA,9/26/2013 21:58 +Atlanta,RED GREEN,LIGHT,GA,9/26/2013 22:00 +Centreville,BLUE,VARIOUS,VA,9/26/2013 22:00 +Kennewick,,VARIOUS,WA,9/27/2013 0:00 +Bowie,RED ORANGE,SPHERE,MD,9/27/2013 0:05 +Glen Arbor,,,MI,9/27/2013 0:10 +Albany,,FIREBALL,NY,9/27/2013 0:25 +Ozark,ORANGE,CIRCLE,AR,9/27/2013 5:00 +Elkhorn,,LIGHT,WI,9/27/2013 6:30 +Farmington Hills,,CIGAR,MI,9/27/2013 8:30 +Leland,RED GREEN,LIGHT,NC,9/27/2013 9:00 +Franklin,,,IN,9/27/2013 11:00 +Hilliard,,FLASH,OH,9/27/2013 11:30 +West Chester,,FLASH,OH,9/27/2013 11:37 +Columbus,BLUE,FLASH,OH,9/27/2013 11:40 +Shaker Heights,GREEN,CIRCLE,OH,9/27/2013 11:40 +Flint,BLUE,,MI,9/27/2013 12:45 +Huntington,,RECTANGLE,IN,9/27/2013 16:00 +Manitou Beach,,,MI,9/27/2013 16:30 +Las Vegas,,LIGHT,NV,9/27/2013 17:45 +Smyrna,,CIGAR,TN,9/27/2013 19:00 +Hoover,BLUE,DISK,AL,9/27/2013 19:35 +Royal City,ORANGE,,WA,9/27/2013 20:00 +Lebanon,,DISK,TN,9/27/2013 20:14 +Clines Corner,,SPHERE,NM,9/27/2013 20:30 +Myrtle Beach,ORANGE,,SC,9/27/2013 21:20 +Denver,,SPHERE,PA,9/27/2013 21:25 +Lawndale,,FIREBALL,CA,9/27/2013 21:43 +Berlin Heights,,LIGHT,OH,9/27/2013 22:00 +Lewistown,,,MT,9/27/2013 22:00 +Peoria,,FIREBALL,AZ,9/27/2013 22:20 +Morrow,ORANGE,TRIANGLE,OH,9/27/2013 22:22 +Ann Arbor,,FIREBALL,MI,9/27/2013 23:30 +Frederick,,FIREBALL,MD,9/27/2013 23:34 +Dublin,,OTHER,OH,9/27/2013 23:37 +North Bergen,,DISK,NJ,9/27/2013 23:40 +Fairborn,,FLASH,OH,9/27/2013 23:45 +Boston,,FLASH,MA,9/28/2013 1:20 +Palm Springs,,FLASH,CA,9/28/2013 5:20 +Los Angeles,,LIGHT,CA,9/28/2013 10:45 +Georgetown,,TRIANGLE,CO,9/28/2013 15:30 +Boise,,OTHER,ID,9/28/2013 16:00 +Northridge,,FIREBALL,CA,9/28/2013 18:30 +Whittier,,LIGHT,CA,9/28/2013 18:40 +Chelsea,BLUE,FIREBALL,AL,9/28/2013 18:47 +Coon Rapids,,CIRCLE,MN,9/28/2013 19:00 +Eddyville,,FIREBALL,KY,9/28/2013 19:00 +Oxford,ORANGE,OVAL,PA,9/28/2013 19:00 +Glendale,ORANGE,,AZ,9/28/2013 19:15 +Clarksville,RED,TEARDROP,TN,9/28/2013 19:30 +Taylors,,OTHER,SC,9/28/2013 19:30 +Milton,,FIREBALL,GA,9/28/2013 19:44 +Cumming,,FIREBALL,GA,9/28/2013 19:45 +Loganville,,SPHERE,GA,9/28/2013 19:45 +Mcveytown,ORANGE,LIGHT,PA,9/28/2013 19:45 +Pensacola,ORANGE,CYLINDER,FL,9/28/2013 19:45 +Moreno Valley,RED,LIGHT,CA,9/28/2013 19:50 +Athens,,CIRCLE,GA,9/28/2013 20:00 +Binghamton,,LIGHT,NY,9/28/2013 20:00 +Cleveland,GREEN,CIRCLE,OH,9/28/2013 20:00 +Mattapoisett,,LIGHT,MA,9/28/2013 20:00 +Owls Head,RED,CIRCLE,NY,9/28/2013 20:00 +Tolland,,,CT,9/28/2013 20:00 +Canal Winchester,,FORMATION,OH,9/28/2013 20:15 +New Palestine,,FIREBALL,IN,9/28/2013 20:15 +Akron,RED YELLOW,TRIANGLE,OH,9/28/2013 20:30 +Oxford,,OVAL,PA,9/28/2013 20:30 +Sale Creek,RED ORANGE,FIREBALL,TN,9/28/2013 20:30 +Coldwater,,SPHERE,MS,9/28/2013 20:55 +Indianapolis,,FORMATION,IN,9/28/2013 21:00 +Niagara Falls,,CIRCLE,NY,9/28/2013 21:00 +Phoenix,RED,FORMATION,AZ,9/28/2013 21:00 +Sant Monica,ORANGE,CIRCLE,CA,9/28/2013 21:00 +Sedona,RED YELLOW GREEN,,AZ,9/28/2013 21:00 +North Pole,,LIGHT,AK,9/28/2013 21:10 +O'Fallon,ORANGE,VARIOUS,MO,9/28/2013 21:10 +West Carrollton,,CIRCLE,OH,9/28/2013 21:10 +Chesterfield,ORANGE,LIGHT,VA,9/28/2013 21:30 +Oxford,RED,FIREBALL,PA,9/28/2013 21:30 +Lafayette,,TRIANGLE,LA,9/28/2013 21:40 +Florence,RED,SPHERE,AL,9/28/2013 21:45 +Raleigh,,FORMATION,NC,9/28/2013 21:45 +Sunset Park,,CIRCLE,NY,9/28/2013 21:50 +Albion,,DIAMOND,ME,9/28/2013 22:00 +Florence,,OTHER,KY,9/28/2013 22:00 +Plantation,,SPHERE,FL,9/28/2013 22:10 +Colts neck,,FIREBALL,NJ,9/28/2013 22:20 +Lexington,,SPHERE,KY,9/28/2013 22:25 +Osprey,,CHEVRON,FL,9/28/2013 22:25 +Keansburg,,FIREBALL,NJ,9/28/2013 22:30 +Langdon,,CYLINDER,ND,9/28/2013 22:30 +Nashua,RED GREEN,FIREBALL,NH,9/28/2013 22:30 +Manchester,,FORMATION,CT,9/28/2013 22:50 +Sewanee,,LIGHT,TN,9/28/2013 22:50 +Erlanger,,OVAL,KY,9/28/2013 23:53 +Eatonville,,DISK,WA,9/29/2013 0:00 +Tonawanda,RED ORANGE,TRIANGLE,NY,9/29/2013 2:30 +Clarksville,ORANGE,CIRCLE,AR,9/29/2013 3:15 +Nashville,,DISK,TN,9/29/2013 17:45 +Ewing,,OTHER,NJ,9/29/2013 18:00 +Haverhill,,OTHER,MA,9/29/2013 18:00 +Johnston,,DISK,RI,9/29/2013 18:00 +Gunnison area,,CIRCLE,CO,9/29/2013 18:30 +Springboro,YELLOW,CIRCLE,OH,9/29/2013 18:58 +Catskill,,LIGHT,NY,9/29/2013 19:00 +Newbury,RED,CIRCLE,VT,9/29/2013 19:30 +Madison,,CIRCLE,WI,9/29/2013 19:39 +East Nassau,,FLASH,NY,9/29/2013 20:00 +San Clemente,,,CA,9/29/2013 20:00 +San Diego,,FIREBALL,CA,9/29/2013 20:15 +Mt. Holly,,LIGHT,NC,9/29/2013 20:35 +Albuquerque,GREEN,LIGHT,NM,9/29/2013 20:45 +Como,RED GREEN BLUE,VARIOUS,CO,9/29/2013 21:00 +El Reno,ORANGE,FIREBALL,OK,9/29/2013 21:00 +Gap,,FIREBALL,PA,9/29/2013 21:00 +Lookout Mountain,,OTHER,GA,9/29/2013 21:00 +Fairbanks,ORANGE,LIGHT,AK,9/29/2013 21:30 +North Berwick,,,ME,9/29/2013 21:50 +South Charleston,ORANGE,LIGHT,WV,9/29/2013 22:00 +Staten Island,,FORMATION,NY,9/30/2013 0:10 +Amesbury,,OTHER,MA,9/30/2013 1:30 +Keeseville,,VARIOUS,NY,9/30/2013 3:30 +Muskegon,,TEARDROP,MI,9/30/2013 7:30 +Austin,,CYLINDER,TN,9/30/2013 18:10 +Stow,,OVAL,MA,9/30/2013 19:00 +Berlin,,LIGHT,WI,9/30/2013 20:00 +Brewster,,SPHERE,MA,9/30/2013 20:00 +Thurmont,,,MD,9/30/2013 20:10 +Eagan,,TRIANGLE,MN,9/30/2013 20:30 +Scranton,ORANGE,TRIANGLE,PA,9/30/2013 21:30 +South Dennis,,TRIANGLE,MA,9/30/2013 21:30 +Glen Gardner,,,NJ,9/30/2013 22:30 +Colorado Springs,GREEN BLUE,TRIANGLE,CO,10/1/2013 3:00 +Clawson,,DIAMOND,MI,10/1/2013 6:15 +Bel Air,,FLASH,MD,10/1/2013 6:35 +Bakersfield,,CIRCLE,CA,10/1/2013 7:40 +Furlong,,OTHER,NJ,10/1/2013 8:38 +Boulder,,DISK,CO,10/1/2013 9:00 +Cobb Mountain,ORANGE,FIREBALL,CA,10/1/2013 9:42 +Muncie,,TRIANGLE,IN,10/1/2013 9:43 +Pittsburgh,,,PA,10/1/2013 12:30 +Pittsburgh,,,PA,10/1/2013 12:30 +Lincoln,,LIGHT,RI,10/1/2013 12:40 +Boulder,,LIGHT,CO,10/1/2013 18:30 +Thibodaux,,,LA,10/1/2013 19:15 +Webster,,SPHERE,NY,10/1/2013 19:20 +Southwest Ranches,,LIGHT,FL,10/1/2013 19:25 +Tampa,,LIGHT,FL,10/1/2013 20:00 +Cumming,,FIREBALL,GA,10/1/2013 21:30 +Sneedville,,CIRCLE,TN,10/1/2013 21:40 +White Lake,,,MI,10/1/2013 22:10 +Waterloo,ORANGE,TRIANGLE,IA,10/1/2013 22:30 +Middle Island,,FIREBALL,NY,10/1/2013 22:45 +Arlington,ORANGE GREEN,,WI,10/1/2013 23:30 +Marshville,,OTHER,NC,10/2/2013 0:08 +Upper Marlboro,ORANGE,CIRCLE,MD,10/2/2013 6:45 +San Francisco,,SPHERE,CA,10/2/2013 11:45 +Omaha,,CYLINDER,NE,10/2/2013 13:55 +Las Vegas,,CIGAR,NV,10/2/2013 14:15 +Janesville,,CIGAR,WI,10/2/2013 18:00 +La Habra,,CIRCLE,CA,10/2/2013 19:15 +Meriden,RED BLUE,DISK,CT,10/2/2013 19:50 +Middletown,ORANGE,FIREBALL,OH,10/2/2013 20:00 +Sherwood,,OTHER,AR,10/2/2013 20:00 +Martinsburg,GREEN,LIGHT,WV,10/2/2013 20:05 +Fairfax Station,YELLOW,CIRCLE,VA,10/2/2013 20:10 +Canton,YELLOW,FIREBALL,OH,10/2/2013 21:00 +Martin,,DISK,MI,10/2/2013 21:00 +Orrington,,VARIOUS,ME,10/2/2013 21:55 +Caledonia,,TRIANGLE,NY,10/2/2013 22:00 +Philadelphia,,LIGHT,PA,10/2/2013 22:00 +Waretown,RED,RECTANGLE,NJ,10/2/2013 22:00 +Hagerstown,,OVAL,MD,10/2/2013 22:45 +Athens,BLUE,TRIANGLE,GA,10/3/2013 0:10 +Baltimore,,LIGHT,MD,10/3/2013 1:30 +Waterbury,,LIGHT,VT,10/3/2013 2:00 +Newtown,,FLASH,PA,10/3/2013 4:30 +Rex,,CIRCLE,GA,10/3/2013 5:30 +Rineyville,,CIRCLE,KY,10/3/2013 10:00 +Naples,,RECTANGLE,FL,10/3/2013 15:30 +Newington,,CHEVRON,CT,10/3/2013 18:40 +Portland,,OTHER,OR,10/3/2013 19:40 +Barre,RED,TRIANGLE,VT,10/3/2013 19:55 +Noblsville,,LIGHT,IN,10/3/2013 20:00 +Somerset,,FIREBALL,PA,10/3/2013 20:00 +Covington,,CIRCLE,VA,10/3/2013 20:55 +Avon,RED,FIREBALL,IN,10/3/2013 21:00 +Louisburg,,CIRCLE,NC,10/3/2013 21:00 +Rocky River,,FIREBALL,OH,10/3/2013 21:00 +Harrington,,LIGHT,WA,10/3/2013 21:23 +Cue,,LIGHT,WA,10/3/2013 22:00 +Wilmington,RED ORANGE YELLOW GREEN,FIREBALL,OH,10/3/2013 22:00 +Clarksville,ORANGE,CIRCLE,AR,10/3/2013 22:15 +Diamond Springs,,CIRCLE,CA,10/3/2013 23:00 +Philadelphia,,FIREBALL,PA,10/3/2013 23:00 +Seattle,RED,TEARDROP,WA,10/4/2013 0:20 +Manor,,LIGHT,TX,10/4/2013 0:34 +Lexington,,TRIANGLE,SC,10/4/2013 2:59 +Surprise,,FIREBALL,AZ,10/4/2013 6:45 +Salt Lake City,,CIRCLE,UT,10/4/2013 8:04 +Fowler,,RECTANGLE,CA,10/4/2013 13:00 +Millstone Township,,CIRCLE,NJ,10/4/2013 17:20 +Bude,,LIGHT,MS,10/4/2013 19:00 +Westminister,,,MD,10/4/2013 19:00 +Dallas,,DIAMOND,TX,10/4/2013 19:15 +Albany,ORANGE,FIREBALL,OR,10/4/2013 20:00 +Albuquerque,BLUE,CIRCLE,NM,10/4/2013 20:00 +Fairbanks,ORANGE,CIRCLE,AK,10/4/2013 20:00 +Manassas,,LIGHT,VA,10/4/2013 20:00 +South Point,ORANGE,CIRCLE,OH,10/4/2013 20:10 +Botkins,ORANGE,CYLINDER,OH,10/4/2013 20:30 +Erwin,,LIGHT,TN,10/4/2013 20:30 +New York City,,VARIOUS,NY,10/4/2013 20:30 +Clinton,ORANGE,SPHERE,WA,10/4/2013 20:55 +Maumee,ORANGE,VARIOUS,OH,10/4/2013 21:50 +Salem,,TRIANGLE,OR,10/4/2013 21:50 +Salem,,TRIANGLE,OR,10/4/2013 21:50 +Fairbanks,RED,FIREBALL,AK,10/4/2013 21:55 +Madison,,CIRCLE,AL,10/4/2013 21:55 +Madison,,CYLINDER,AL,10/4/2013 21:55 +Shelby,,FIREBALL,OH,10/4/2013 22:00 +Plantation,RED,SPHERE,FL,10/4/2013 22:10 +Seattle,RED ORANGE,OVAL,WA,10/4/2013 22:20 +Maryville,,CIRCLE,TN,10/4/2013 22:30 +Homestead,,FORMATION,FL,10/4/2013 22:35 +Gresham,ORANGE,FIREBALL,OR,10/4/2013 23:15 +New York City,BLUE,TEARDROP,NY,10/4/2013 23:55 +Staten Island,,CIRCLE,NY,10/5/2013 0:40 +Altamont,,LIGHT,NY,10/5/2013 1:00 +Anchorage,,,AK,10/5/2013 2:55 +Ocala,,,FL,10/5/2013 3:30 +Pinetops,,,NC,10/5/2013 4:00 +Longmont,,CIRCLE,CO,10/5/2013 5:45 +Fairfax,,LIGHT,VT,10/5/2013 7:30 +Clark,,,WY,10/5/2013 12:15 +Bude,,CYLINDER,MS,10/5/2013 15:40 +Warren,,DISK,NJ,10/5/2013 16:45 +Dane County,,FIREBALL,WI,10/5/2013 18:00 +Bruceville,GREEN,TRIANGLE,IN,10/5/2013 19:20 +Chandler,ORANGE,SPHERE,AZ,10/5/2013 19:45 +Kaanapali,ORANGE,FIREBALL,HI,10/5/2013 20:00 +Nashville,,CIRCLE,TN,10/5/2013 20:00 +Colchester,,LIGHT,VT,10/5/2013 20:05 +Seymour,,LIGHT,MO,10/5/2013 20:25 +Seaside,,LIGHT,OR,10/5/2013 20:30 +Spokane,,SPHERE,WA,10/5/2013 20:45 +Salem,,LIGHT,MA,10/5/2013 20:57 +Boca Raton,RED,FORMATION,FL,10/5/2013 21:00 +Nashville,ORANGE,FIREBALL,TN,10/5/2013 21:00 +Spokane,ORANGE,SPHERE,WA,10/5/2013 21:00 +Daphne,,LIGHT,AL,10/5/2013 21:15 +Rexburg,,FORMATION,ID,10/5/2013 21:15 +Encinitas,ORANGE,CIRCLE,CA,10/5/2013 21:20 +Aptos,,DISK,CA,10/5/2013 21:30 +Oviedo,,CIRCLE,FL,10/5/2013 21:30 +Kahalu'u,ORANGE,FIREBALL,HI,10/5/2013 22:03 +DeLand,YELLOW,LIGHT,FL,10/5/2013 22:10 +Lewisville,RED,LIGHT,TX,10/5/2013 22:30 +Milton,,TRIANGLE,GA,10/5/2013 22:30 +Eugene,ORANGE,FIREBALL,OR,10/5/2013 22:44 +Colorado Springs,BLUE,LIGHT,CO,10/5/2013 23:00 +Rockaway Beach,,LIGHT,OR,10/5/2013 23:30 +Peoria,,FIREBALL,AZ,10/6/2013 7:00 +Eastsound,,FORMATION,WA,10/6/2013 15:20 +Greeneville,,CYLINDER,TN,10/6/2013 16:00 +Lincoln,,TRIANGLE,NE,10/6/2013 17:00 +Torrance,,SPHERE,CA,10/6/2013 17:00 +Los Angeles,,OVAL,CA,10/6/2013 17:35 +McCall,,CIGAR,ID,10/6/2013 18:10 +Ashford,,FIREBALL,CT,10/6/2013 19:30 +Katy,,OVAL,TX,10/6/2013 19:45 +Longmont,,LIGHT,CO,10/6/2013 20:00 +Manson,,LIGHT,WA,10/6/2013 20:00 +Lake Placid,,,FL,10/6/2013 21:00 +Steamboat Springs,RED,RECTANGLE,CO,10/6/2013 21:00 +Bremerton,,OTHER,WA,10/6/2013 21:10 +Canyonville,,,OR,10/6/2013 21:56 +Winter Park,YELLOW,TRIANGLE,FL,10/6/2013 22:30 +Opelika,,FLASH,AL,10/6/2013 23:11 +Snohomish,ORANGE,LIGHT,WA,10/7/2013 6:30 +Carson City,,,NV,10/7/2013 7:40 +Troy,,DISK,MI,10/7/2013 11:30 +Bryan,,CIGAR,TX,10/7/2013 19:28 +Duncannon,,LIGHT,PA,10/7/2013 20:00 +Oklahoma,,CIRCLE,OK,10/7/2013 20:00 +Uvalde,,,TX,10/7/2013 20:20 +Denver,,CIRCLE,CO,10/7/2013 20:21 +Austin,,,TX,10/7/2013 20:30 +Lawrenceville,,FIREBALL,GA,10/7/2013 21:00 +Old Station,RED,TRIANGLE,CA,10/7/2013 21:00 +Las Vegas,,OTHER,NV,10/7/2013 21:09 +North Versailles,,TRIANGLE,PA,10/7/2013 21:46 +Fort Wayne,,LIGHT,IN,10/7/2013 23:00 +Bellevue,,DIAMOND,NE,10/7/2013 23:45 +Boulder,,TRIANGLE,CO,10/8/2013 0:34 +Burlington,,LIGHT,VT,10/8/2013 2:00 +Lockesberg,,CIRCLE,AR,10/8/2013 2:00 +Natchez,,CIRCLE,MS,10/8/2013 4:00 +Richboro,,OVAL,PA,10/8/2013 7:15 +Redondo Beach,RED,OVAL,CA,10/8/2013 8:00 +Lewisville,,OTHER,AR,10/8/2013 8:13 +Lancaster,,CIGAR,OH,10/8/2013 16:00 +Salt Lake City,GREEN,SPHERE,UT,10/8/2013 17:00 +Mobile,,OVAL,AL,10/8/2013 18:30 +Fort Myers,,VARIOUS,FL,10/8/2013 19:14 +Cumming,,EGG,GA,10/8/2013 19:30 +Indianapolis,ORANGE,LIGHT,IN,10/8/2013 19:30 +Montgomery,,,IL,10/8/2013 19:45 +Ashfield,,LIGHT,PA,10/8/2013 20:00 +Ceredo,,CHEVRON,WV,10/8/2013 20:00 +Plymouth,,OTHER,MN,10/8/2013 20:00 +St. Cloud,,CIRCLE,MN,10/8/2013 20:00 +Sarasota,,LIGHT,FL,10/8/2013 20:30 +Ohio,,FIREBALL,OH,10/8/2013 21:00 +Everett,,CHEVRON,WA,10/8/2013 21:40 +Weston,ORANGE,LIGHT,CT,10/8/2013 22:00 +Sidney,,DIAMOND,MT,10/8/2013 22:15 +Tempe,,,AZ,10/9/2013 0:15 +Melber,,FORMATION,KY,10/9/2013 1:00 +Phoenix,,LIGHT,AZ,10/9/2013 4:00 +Franklin,RED,FIREBALL,TN,10/9/2013 5:00 +Fort Lauderdale,ORANGE,CIRCLE,FL,10/9/2013 6:00 +Nashville,,CIGAR,TN,10/9/2013 6:00 +Littleton,,OVAL,CO,10/9/2013 14:00 +Wellington,,EGG,OH,10/9/2013 17:00 +Greenfield,GREEN,LIGHT,IN,10/9/2013 17:30 +Brookston,,RECTANGLE,IN,10/9/2013 18:00 +Clearwater,,,FL,10/9/2013 18:45 +Clearwater,RED GREEN,,FL,10/9/2013 18:45 +New York City,,LIGHT,NY,10/9/2013 19:00 +Woonsocket,,LIGHT,RI,10/9/2013 20:00 +Grand Prairie,,OVAL,TX,10/9/2013 20:14 +Omro,,FLASH,WI,10/9/2013 20:20 +O'Fallon,,TRIANGLE,MO,10/9/2013 20:40 +Wellington,,OTHER,FL,10/9/2013 20:40 +Delta,,OTHER,OH,10/9/2013 21:00 +St. Cloud,,CIRCLE,MN,10/9/2013 21:07 +Dodgeville,,LIGHT,WI,10/9/2013 21:35 +Enola,,DIAMOND,PA,10/9/2013 21:45 +Mt. Pleasant,RED ORANGE,LIGHT,SC,10/9/2013 22:00 +Kent,BLUE,TRIANGLE,WA,10/9/2013 23:30 +Kewanna,RED,LIGHT,IN,10/9/2013 23:30 +Clifton,,LIGHT,NJ,10/10/2013 0:00 +Palm Harbor,,CHEVRON,FL,10/10/2013 2:32 +Sandusky,,TRIANGLE,OH,10/10/2013 4:00 +Aurburn,,TRIANGLE,KY,10/10/2013 5:00 +St. Louis County,,LIGHT,MO,10/10/2013 17:00 +Rittman,,LIGHT,OH,10/10/2013 19:00 +Essex Junction,,LIGHT,VT,10/10/2013 19:20 +Kenner,,CIRCLE,LA,10/10/2013 19:20 +Drexel,,CIRCLE,OH,10/10/2013 20:00 +Hudson,,LIGHT,NH,10/10/2013 20:00 +Grand Blanc,,LIGHT,MI,10/10/2013 20:30 +Savage,ORANGE,CIRCLE,MN,10/10/2013 20:30 +Warren,RED,SPHERE,MI,10/10/2013 20:32 +Canton,,TRIANGLE,MI,10/10/2013 20:35 +Lost Creek,,TRIANGLE,WV,10/10/2013 21:17 +Hudson,,LIGHT,NH,10/10/2013 21:30 +Saginaw,,CHEVRON,MI,10/11/2013 1:00 +Ankeny,,CIRCLE,IA,10/11/2013 6:13 +Palm Beach Gardens,ORANGE,LIGHT,FL,10/11/2013 9:05 +Kalamazoo,RED,FIREBALL,MI,10/11/2013 16:35 +Lawrence,BLUE,,KS,10/11/2013 19:00 +Rittman,,LIGHT,OH,10/11/2013 19:00 +North Cincinnati,,FIREBALL,OH,10/11/2013 19:20 +Winterhaven,,LIGHT,CA,10/11/2013 19:33 +Essex Junction,ORANGE,LIGHT,VT,10/11/2013 19:50 +Cincinnati,ORANGE,CIRCLE,OH,10/11/2013 20:00 +Cincinnati,,FIREBALL,OH,10/11/2013 20:00 +Naples,,LIGHT,FL,10/11/2013 20:00 +Saginaw,ORANGE,,MI,10/11/2013 20:00 +Bonaie,RED,LIGHT,GA,10/11/2013 20:15 +Cincinnati,,FIREBALL,OH,10/11/2013 20:15 +Union,,FIREBALL,KY,10/11/2013 20:15 +Hubbardston,ORANGE,FIREBALL,MA,10/11/2013 20:20 +Covington,,LIGHT,GA,10/11/2013 20:45 +Drexel,ORANGE,SPHERE,OH,10/11/2013 21:00 +Fayetteville,,CHEVRON,NY,10/11/2013 21:00 +Holgate,,FIREBALL,NJ,10/11/2013 22:00 +Jupiter,ORANGE,LIGHT,FL,10/11/2013 22:00 +Melbourne,,SPHERE,FL,10/11/2013 22:00 +Dresser,ORANGE,SPHERE,WI,10/11/2013 22:08 +Lombard,ORANGE,FORMATION,IL,10/11/2013 22:10 +Shelby Township,,VARIOUS,MI,10/11/2013 22:53 +North Canton,,FIREBALL,OH,10/11/2013 23:00 +Pinckney,ORANGE,FIREBALL,MI,10/11/2013 23:15 +Cincinnati,ORANGE,FIREBALL,OH,10/12/2013 0:00 +Orangevale,ORANGE,SPHERE,CA,10/12/2013 0:00 +Austin,,,TX,10/12/2013 3:08 +Cambridge,,LIGHT,NY,10/12/2013 4:30 +Strongsville,,TRIANGLE,OH,10/12/2013 7:17 +Festus,ORANGE,FIREBALL,MO,10/12/2013 7:45 +Owego,,DISK,NY,10/12/2013 13:00 +Kodiak,,OTHER,AK,10/12/2013 14:35 +St. Louis,,FORMATION,MO,10/12/2013 15:00 +Clarkston,,TRIANGLE,MI,10/12/2013 18:30 +Columbus,,VARIOUS,OH,10/12/2013 19:45 +Albuquerque,RED GREEN,LIGHT,NM,10/12/2013 20:00 +Finleyville,ORANGE,OTHER,PA,10/12/2013 20:00 +Grain Valley,,OVAL,MO,10/12/2013 20:00 +Lima,,FORMATION,OH,10/12/2013 20:00 +North Judson,,LIGHT,IN,10/12/2013 20:00 +Suffolk,,TRIANGLE,VA,10/12/2013 20:00 +Morganton,,LIGHT,NC,10/12/2013 20:20 +Hamilton,,FORMATION,OH,10/12/2013 20:40 +Austin,,TRIANGLE,TX,10/12/2013 20:55 +Franklin,,LIGHT,OH,10/12/2013 21:00 +Hamilton,ORANGE,FIREBALL,OH,10/12/2013 21:00 +Springboro,,,OH,10/12/2013 21:00 +West Chester,YELLOW,LIGHT,OH,10/12/2013 21:00 +Miamisburg,,FIREBALL,OH,10/12/2013 21:15 +Peoria,ORANGE,FORMATION,IL,10/12/2013 21:15 +Springboro,,,OH,10/12/2013 21:45 +Aspen,,FORMATION,CO,10/12/2013 22:00 +Grand Junction,,LIGHT,CO,10/12/2013 22:00 +Chandlerville,RED GREEN,DIAMOND,OH,10/12/2013 22:05 +Hilliard,RED,DIAMOND,OH,10/12/2013 22:05 +Hiawassee,ORANGE,CIRCLE,GA,10/12/2013 22:26 +Lombard,,OTHER,IL,10/12/2013 22:30 +West Newbury,RED GREEN,SPHERE,MA,10/12/2013 22:30 +Anderson,ORANGE,CIRCLE,SC,10/12/2013 23:00 +Russell Springs,,LIGHT,KY,10/12/2013 23:00 +Orangevale,ORANGE,FIREBALL,CA,10/12/2013 23:28 +Orangevale,ORANGE,FORMATION,CA,10/12/2013 23:30 +Bloomington,BLUE,SPHERE,MN,10/13/2013 0:00 +Salt Lake City,,,UT,10/13/2013 2:59 +Newark,,CIRCLE,TX,10/13/2013 5:01 +Santa Fe,,,NM,10/13/2013 10:50 +Afton,,SPHERE,MO,10/13/2013 18:12 +Council Bluffs,,FORMATION,IA,10/13/2013 18:57 +Council Bluffs,ORANGE,LIGHT,IA,10/13/2013 18:57 +Irondequoit,,FIREBALL,NY,10/13/2013 19:00 +Orange,ORANGE,LIGHT,NJ,10/13/2013 19:00 +Oswego,,CIRCLE,IL,10/13/2013 19:30 +Mechanicsburg,,FIREBALL,PA,10/13/2013 19:40 +Pasadena,,CIRCLE,MD,10/13/2013 19:45 +Spring Hill,RED,DIAMOND,FL,10/13/2013 19:45 +Spokane,,FLASH,WA,10/13/2013 19:47 +West Palm Beach,,LIGHT,FL,10/13/2013 19:47 +Jefferson,,LIGHT,WI,10/13/2013 20:00 +Sanford,ORANGE,,FL,10/13/2013 20:00 +Bushnell,,SPHERE,FL,10/13/2013 20:30 +Raymond,,,OH,10/13/2013 20:30 +Indianapolis,,CIRCLE,IN,10/13/2013 20:40 +Gobles,,,MI,10/13/2013 20:45 +Silverdale,,LIGHT,WA,10/13/2013 20:59 +Livonia,,TRIANGLE,MI,10/13/2013 21:15 +Ligonier,,LIGHT,PA,10/13/2013 21:45 +Walls,,LIGHT,MS,10/13/2013 22:00 +Fishers,,VARIOUS,IN,10/13/2013 22:50 +New York City,,SPHERE,NY,10/13/2013 22:55 +Warren,,SPHERE,MI,10/13/2013 23:00 +Sheldon,,CIRCLE,IA,10/13/2013 23:30 +Forked River,,CIRCLE,NJ,10/14/2013 0:35 +Albuquerque,GREEN,FLASH,NM,10/14/2013 1:40 +Hampton,RED,CYLINDER,NH,10/14/2013 11:47 +Buckingham,,RECTANGLE,PA,10/14/2013 16:00 +Charlotte,,SPHERE,NC,10/14/2013 16:45 +Vernon Hills,,CIGAR,IL,10/14/2013 18:00 +Seaside,,LIGHT,OR,10/14/2013 19:00 +Oakland,,LIGHT,CA,10/14/2013 19:15 +Green Bay,,LIGHT,WI,10/14/2013 19:30 +Ruston,,SPHERE,LA,10/14/2013 19:30 +Leland,RED ORANGE,DISK,MI,10/14/2013 20:00 +Holgate,,CIRCLE,NJ,10/14/2013 20:15 +Salt Lake Valley,,LIGHT,UT,10/14/2013 20:15 +Kalamazoo,,CIRCLE,MI,10/14/2013 20:30 +Point Arena,,TRIANGLE,CA,10/14/2013 20:30 +Kingsville,,RECTANGLE,OH,10/14/2013 21:40 +Watchung area,,,NJ,10/14/2013 22:00 +Warren,ORANGE,CIRCLE,OH,10/14/2013 23:00 +Holly Pond,,,AL,10/15/2013 0:00 +Fremont,RED,OTHER,CA,10/15/2013 6:20 +Hunlock Creek,,TRIANGLE,PA,10/15/2013 9:15 +Beale AFB,,SPHERE,CA,10/15/2013 11:30 +Bowdoinham,RED BLUE,,ME,10/15/2013 14:45 +Bethesda,,DISK,MD,10/15/2013 15:00 +Lake Havasu City,,FIREBALL,AZ,10/15/2013 16:00 +Bozeman,,LIGHT,MT,10/15/2013 16:45 +Rockford,RED ORANGE,VARIOUS,IL,10/15/2013 19:30 +Brigantine,,,NJ,10/15/2013 19:35 +Boise,,CHEVRON,ID,10/15/2013 20:00 +Yadkinville,,OTHER,NC,10/15/2013 20:00 +Ocean Isle Beach,ORANGE,LIGHT,NC,10/15/2013 20:30 +Reseda,,SPHERE,CA,10/15/2013 20:35 +Blaine,YELLOW,DISK,WA,10/15/2013 21:45 +Albuquerque,,FLASH,NM,10/15/2013 22:00 +Sacramento,,LIGHT,CA,10/15/2013 22:30 +Catoosa,,OTHER,OK,10/15/2013 23:00 +Reedsville,RED,TRIANGLE,WV,10/15/2013 23:30 +Bath,ORANGE,LIGHT,PA,10/16/2013 0:15 +Spencer,RED,FORMATION,IN,10/16/2013 8:40 +Carlisle,,CIGAR,PA,10/16/2013 18:50 +Oakdale,RED,FORMATION,MN,10/16/2013 19:05 +New Bedford,ORANGE,LIGHT,MA,10/16/2013 19:15 +Queen Creek,,,AZ,10/16/2013 19:30 +Amelia,RED,CIRCLE,OH,10/16/2013 20:15 +Sacramento,,CIRCLE,CA,10/16/2013 20:23 +Fort Worth,ORANGE,CYLINDER,TX,10/16/2013 20:57 +Surfside,,FIREBALL,SC,10/16/2013 21:20 +Globe,,OTHER,AZ,10/16/2013 21:30 +Indianapolis,ORANGE,CIRCLE,IN,10/16/2013 21:40 +South Weber,GREEN,EGG,UT,10/16/2013 22:30 +Payette,,OTHER,ID,10/16/2013 22:45 +Meridian,,FORMATION,ID,10/16/2013 22:57 +Orleans,ORANGE,CIRCLE,IN,10/16/2013 23:00 +Lakeside,,CIRCLE,CA,10/17/2013 6:45 +San Jose,,OTHER,CA,10/17/2013 7:00 +Palm Harbor,,,FL,10/17/2013 8:17 +Independence,,DISK,VA,10/17/2013 19:40 +Colville,,LIGHT,WA,10/17/2013 20:00 +Davie,,LIGHT,FL,10/17/2013 20:00 +Holgate,ORANGE,CIRCLE,NJ,10/17/2013 20:26 +Boise,,FIREBALL,ID,10/17/2013 20:45 +Silverdale,,LIGHT,WA,10/17/2013 21:00 +Carolina beach,ORANGE,CIRCLE,NC,10/17/2013 21:15 +Okeechobee,RED,LIGHT,FL,10/17/2013 21:35 +Charlottesville,,LIGHT,VA,10/17/2013 22:18 +Vista,,OVAL,CA,10/17/2013 23:00 +Keizer,ORANGE,FIREBALL,OR,10/18/2013 0:00 +Litchfield,,CIRCLE,NH,10/18/2013 1:45 +Boca Raton,,FIREBALL,FL,10/18/2013 8:00 +Pullman,,LIGHT,WA,10/18/2013 17:30 +Antelope,RED,CYLINDER,CA,10/18/2013 19:00 +Milton,RED,LIGHT,VT,10/18/2013 19:15 +Pinecrest,RED,,CA,10/18/2013 19:15 +Duluth,,LIGHT,MN,10/18/2013 19:40 +Clarksville,RED,,TN,10/18/2013 19:45 +Dallas,,CIRCLE,TX,10/18/2013 20:00 +Dayton,,SPHERE,OH,10/18/2013 20:00 +Washington,RED,FORMATION,PA,10/18/2013 20:12 +Sellersburg,,FIREBALL,IN,10/18/2013 20:15 +Washington,,TRIANGLE,PA,10/18/2013 20:15 +Bedford,,FIREBALL,NH,10/18/2013 21:30 +Oxford,,SPHERE,GA,10/18/2013 21:30 +Sarasota,RED,FIREBALL,FL,10/18/2013 21:30 +Lawrenceville,RED,OTHER,GA,10/18/2013 21:33 +Sarasota,ORANGE,LIGHT,FL,10/18/2013 21:40 +Cincinnati,ORANGE,FIREBALL,OH,10/18/2013 21:45 +Norwood,,FIREBALL,OH,10/18/2013 22:34 +Norwood,,FIREBALL,OH,10/18/2013 22:34 +West Yarmouth,,CIRCLE,MA,10/18/2013 22:35 +Dinosaur Colorado,,VARIOUS,CO,10/18/2013 23:00 +Boca Raton,ORANGE,LIGHT,FL,10/18/2013 23:30 +Boca Raton,ORANGE,LIGHT,FL,10/18/2013 23:30 +Noblesville,,FORMATION,IN,10/18/2013 23:30 +Eau Claire,ORANGE,OVAL,WI,10/19/2013 0:00 +Arlington,,CIRCLE,VA,10/19/2013 0:17 +Virginia Beach,,,VA,10/19/2013 0:20 +Prescott,,OVAL,AZ,10/19/2013 7:30 +Murphysboro,,OTHER,IL,10/19/2013 10:45 +Miramar,RED,LIGHT,FL,10/19/2013 11:00 +Revere,,OVAL,MA,10/19/2013 11:33 +Los Angeles,,DISK,CA,10/19/2013 13:13 +Sierra Vista,,CIRCLE,AZ,10/19/2013 13:40 +Brownsville,,DISK,OR,10/19/2013 18:00 +Lafayette,YELLOW,LIGHT,IN,10/19/2013 18:45 +Lowell,,LIGHT,MA,10/19/2013 19:05 +Winslow,,FIREBALL,AZ,10/19/2013 19:30 +Fairdale,,LIGHT,KY,10/19/2013 20:03 +Swansea,,,IL,10/19/2013 20:10 +Aubrey,,,TX,10/19/2013 20:15 +Aubrey,,,TX,10/19/2013 20:15 +Chandler,,FIREBALL,AZ,10/19/2013 20:15 +Oshkosh,,CIRCLE,WI,10/19/2013 20:15 +Goodyear,ORANGE,FIREBALL,AZ,10/19/2013 20:30 +Orlando,ORANGE,OTHER,FL,10/19/2013 20:45 +Fond du Lac,ORANGE,LIGHT,WI,10/19/2013 20:53 +Festus,,SPHERE,MO,10/19/2013 21:00 +Lewisburg,,OTHER,PA,10/19/2013 21:00 +Poolesville,ORANGE,SPHERE,MD,10/19/2013 21:11 +Palm Desert,ORANGE,LIGHT,CA,10/19/2013 21:30 +Saint Louis,,TRIANGLE,MO,10/19/2013 21:30 +Silver Creek,,TRIANGLE,GA,10/19/2013 21:30 +St. Paul,,SPHERE,MN,10/19/2013 21:30 +Charlotte,ORANGE,SPHERE,NC,10/19/2013 21:53 +Ansonia,ORANGE,TRIANGLE,CT,10/19/2013 22:00 +Boise,ORANGE,SPHERE,ID,10/19/2013 22:00 +Brecksville,RED,SPHERE,OH,10/19/2013 22:00 +Flint,ORANGE,SPHERE,MI,10/19/2013 22:15 +Austin,,FLASH,TX,10/19/2013 22:30 +Jupiter,ORANGE,LIGHT,FL,10/19/2013 22:30 +New Boston,,OTHER,MI,10/19/2013 22:30 +Albuquerque,RED GREEN BLUE,LIGHT,NM,10/19/2013 23:00 +Sisterdale,ORANGE,FORMATION,TX,10/19/2013 23:00 +Toledo,,LIGHT,OH,10/20/2013 0:00 +Salem,,CIGAR,NH,10/20/2013 8:10 +Manitou Springs,,CIRCLE,CO,10/20/2013 8:15 +Vineland,ORANGE,TRIANGLE,NJ,10/20/2013 10:20 +Naples,,,FL,10/20/2013 14:00 +Levittown,ORANGE,LIGHT,PA,10/20/2013 18:20 +no data,,EGG,CT,10/20/2013 18:30 +Spokane,,FLASH,WA,10/20/2013 18:57 +Germantown,,LIGHT,NY,10/20/2013 19:00 +Philadelphia,,SPHERE,PA,10/20/2013 19:00 +Woonsocket,,TRIANGLE,RI,10/20/2013 19:42 +Levittown,ORANGE,LIGHT,PA,10/20/2013 20:25 +Kennewick,,LIGHT,WA,10/20/2013 21:00 +Manassas,,TRIANGLE,VA,10/20/2013 21:00 +Stockton,,LIGHT,CA,10/20/2013 21:40 +Cottonwood,BLUE,LIGHT,AZ,10/21/2013 0:30 +Sugar Land,GREEN,FIREBALL,TX,10/21/2013 6:15 +Milwaukee,BLUE,,WI,10/21/2013 6:36 +Framingham,,OTHER,MA,10/21/2013 8:15 +San Antonio,,TRIANGLE,TX,10/21/2013 18:30 +Houston,BLUE,SPHERE,TX,10/21/2013 19:00 +Versailles,,FIREBALL,MO,10/21/2013 19:20 +Katy,,LIGHT,TX,10/21/2013 19:40 +Two Rivers,,OVAL,WI,10/21/2013 19:45 +Watertown,,FIREBALL,MA,10/21/2013 19:50 +Wilson,,LIGHT,OK,10/21/2013 20:30 +Barnegat,,FIREBALL,NJ,10/21/2013 21:00 +Oxford,,OVAL,PA,10/21/2013 21:35 +Cleveland,,TEARDROP,OK,10/21/2013 22:00 +Imperial,,DIAMOND,MO,10/21/2013 22:00 +Twin Lakes,,LIGHT,WI,10/21/2013 23:00 +Wentzville,,TRIANGLE,MO,10/22/2013 1:00 +Mount Holly,RED,DIAMOND,NJ,10/22/2013 5:15 +Longmont,RED,CIRCLE,CO,10/22/2013 5:45 +Albany,,DISK,NY,10/22/2013 6:00 +Milwaukee,,LIGHT,WI,10/22/2013 6:40 +Wenatchee,YELLOW,OVAL,WA,10/22/2013 7:30 +Ty Ty,YELLOW,CIRCLE,GA,10/22/2013 9:15 +Northwest Reno,,CYLINDER,NV,10/22/2013 14:30 +Glenallen,,OTHER,AK,10/22/2013 18:30 +Prescott Valley,,OTHER,AZ,10/22/2013 18:30 +Milton,RED,LIGHT,VT,10/22/2013 18:35 +McKeesport,RED,CIRCLE,PA,10/22/2013 18:58 +Miami,RED,DIAMOND,FL,10/22/2013 19:00 +Brattleboro,,RECTANGLE,VT,10/22/2013 19:08 +Prescott,,FLASH,AZ,10/22/2013 19:15 +Prescott,,FLASH,AZ,10/22/2013 19:15 +Kensington,,,NH,10/22/2013 19:28 +Ossipee,,CIRCLE,NH,10/22/2013 19:30 +Ossipee,,CIRCLE,NH,10/22/2013 19:30 +Topeka,,LIGHT,KS,10/22/2013 19:51 +Logan,ORANGE,CHEVRON,UT,10/22/2013 20:00 +Dandridge,YELLOW,SPHERE,TN,10/22/2013 20:15 +Weiser,RED,LIGHT,ID,10/22/2013 20:22 +Cedar City,,,UT,10/22/2013 20:55 +Auburn,,,CA,10/22/2013 21:00 +Chelan,,OVAL,WA,10/22/2013 21:00 +San Rafael,,FORMATION,CA,10/22/2013 21:39 +Arlington,ORANGE,SPHERE,TX,10/22/2013 21:51 +Kaneohe,RED YELLOW,OVAL,HI,10/22/2013 22:15 +Monroeville,RED,OVAL,PA,10/22/2013 22:30 +Davenport,,CIRCLE,WA,10/22/2013 23:30 +Parrish Alabama,,LIGHT,AL,10/23/2013 2:00 +Couer d'Alene,,SPHERE,ID,10/23/2013 2:30 +Marlboro,RED,TRIANGLE,NJ,10/23/2013 5:28 +Milford,,TRIANGLE,NH,10/23/2013 5:45 +Philadelphia,,LIGHT,PA,10/23/2013 7:10 +North Andover,,CHEVRON,MA,10/23/2013 7:15 +Venice,,SPHERE,FL,10/23/2013 17:53 +Anchorage,ORANGE,LIGHT,AK,10/23/2013 18:00 +Oak Forest,,OTHER,IL,10/23/2013 18:00 +Bellingham,,LIGHT,WA,10/23/2013 18:05 +Stratham,YELLOW,FIREBALL,NH,10/23/2013 18:30 +Wickenburg,ORANGE,FIREBALL,AZ,10/23/2013 19:00 +Colorado Springs,,OTHER,CO,10/23/2013 19:15 +Choctaw,,DISK,OK,10/23/2013 19:28 +Choctaw,,DISK,OK,10/23/2013 19:28 +Colonial Heights,,CIRCLE,VA,10/23/2013 19:30 +Stilwell,,SPHERE,KS,10/23/2013 19:30 +Cedarville,,LIGHT,CA,10/23/2013 19:45 +Mercey Hot Springs,,LIGHT,CA,10/23/2013 19:45 +Wlimington,,CHEVRON,MA,10/23/2013 19:45 +Anchorage,ORANGE,CIRCLE,AK,10/23/2013 20:00 +Toutle,,LIGHT,WA,10/23/2013 20:00 +Natick,,TRIANGLE,MA,10/23/2013 20:45 +Silverdale,,LIGHT,WA,10/23/2013 20:58 +Summer Lake,ORANGE,LIGHT,OR,10/23/2013 21:00 +Alcova,,LIGHT,WY,10/23/2013 21:15 +Cottonwood,,FORMATION,AZ,10/23/2013 21:30 +Washington,,,NC,10/23/2013 21:30 +Alexandria,,LIGHT,VA,10/23/2013 22:10 +Hermitage,,LIGHT,TN,10/23/2013 22:30 +Scottsdale,,OTHER,AZ,10/23/2013 23:38 +Pasadena,,FIREBALL,CA,10/24/2013 4:45 +Erial,,SPHERE,NJ,10/24/2013 7:00 +Columbia,BLUE,DIAMOND,MD,10/24/2013 7:10 +Richmond,GREEN,CIRCLE,VA,10/24/2013 7:19 +Morristown,,LIGHT,NJ,10/24/2013 7:30 +Dallas,,CIRCLE,TX,10/24/2013 9:30 +Woodbridge,,CIGAR,VA,10/24/2013 12:00 +Hogansville,,CIRCLE,GA,10/24/2013 13:55 +Bellingham,,LIGHT,WA,10/24/2013 16:00 +Dahlgren,,LIGHT,VA,10/24/2013 16:45 +Arnold,RED YELLOW,FIREBALL,MD,10/24/2013 18:30 +Cedarville,RED ORANGE,LIGHT,CA,10/24/2013 19:15 +Fuquay Varina,,LIGHT,NC,10/24/2013 19:30 +St. Louis,,TRIANGLE,MO,10/24/2013 19:30 +Lakeland,,LIGHT,TN,10/24/2013 19:40 +Brothers,,LIGHT,OR,10/24/2013 19:45 +Edgewater,,LIGHT,MD,10/24/2013 19:45 +Garland,ORANGE,CIRCLE,TX,10/24/2013 20:00 +Plainview,,TRIANGLE,NY,10/24/2013 20:00 +Winston-Salem,,LIGHT,NC,10/24/2013 20:00 +Eugene,ORANGE,OTHER,OR,10/24/2013 20:15 +Mitchell,,LIGHT,SD,10/24/2013 20:15 +O'Fallon,,TRIANGLE,MO,10/24/2013 20:35 +Wilkes-Barre,RED,OTHER,PA,10/24/2013 20:50 +Broken Arrow,,OVAL,OK,10/24/2013 21:00 +Chandler,,DISK,AZ,10/24/2013 21:00 +Rosamond,RED,FORMATION,CA,10/24/2013 21:00 +New Castle,,FIREBALL,PA,10/24/2013 21:38 +Irving,YELLOW,CYLINDER,TX,10/24/2013 22:30 +Ogilvie,,LIGHT,MN,10/24/2013 22:30 +Waterloo,RED YELLOW,TRIANGLE,IA,10/24/2013 22:40 +Mansfield,,TRIANGLE,TX,10/24/2013 22:45 +Toledo,,TRIANGLE,OH,10/24/2013 23:00 +Brandon,GREEN,CIRCLE,MS,10/24/2013 23:30 +Butler,BLUE,LIGHT,PA,10/25/2013 0:00 +Beverly Hills,ORANGE,CIRCLE,CA,10/25/2013 2:15 +Salt Lake City,GREEN,SPHERE,UT,10/25/2013 6:17 +Wellington,BLUE,,CO,10/25/2013 8:15 +Elkton,ORANGE,OTHER,MD,10/25/2013 10:00 +Milwaukee,ORANGE,CIRCLE,WI,10/25/2013 19:00 +Flushing,,OVAL,MI,10/25/2013 19:30 +Baltimore,ORANGE,FORMATION,MD,10/25/2013 20:00 +Des Moines,,TRIANGLE,IA,10/25/2013 20:00 +Morris,,,IL,10/25/2013 20:00 +Katy,,FIREBALL,TX,10/25/2013 20:15 +Pittsburgh,BLUE,DISK,PA,10/25/2013 20:15 +Ellicott city,,CIRCLE,MD,10/25/2013 20:27 +Lake Lure,,LIGHT,NC,10/25/2013 20:30 +Nampa,,DISK,ID,10/25/2013 20:30 +Meridian,,DISK,ID,10/25/2013 21:00 +Sarasota,ORANGE,RECTANGLE,FL,10/25/2013 21:00 +Centerville,RED,FIREBALL,OH,10/25/2013 21:40 +Playa Del Rey,,FLASH,CA,10/25/2013 22:00 +Loganville,RED,TRIANGLE,GA,10/25/2013 22:15 +Waukee,YELLOW,CIRCLE,IA,10/25/2013 22:15 +Seaside Park,,CROSS,NJ,10/25/2013 22:30 +Seaside Park,,CROSS,NJ,10/25/2013 22:30 +Avon,RED,LIGHT,FL,10/25/2013 22:39 +Milford,ORANGE,CIRCLE,OH,10/25/2013 23:55 +Los Angeles,,RECTANGLE,CA,10/26/2013 2:00 +Hosford,,LIGHT,FL,10/26/2013 3:00 +Thousand Oaks,,CIGAR,CA,10/26/2013 4:00 +Honolulu,BLUE,FLASH,HI,10/26/2013 5:00 +Methuen,,LIGHT,MA,10/26/2013 6:20 +Brighton,,FORMATION,CO,10/26/2013 7:00 +Longmont,,TRIANGLE,CO,10/26/2013 7:55 +Colton's Point,BLUE,CIRCLE,MD,10/26/2013 9:45 +Spokane,,RECTANGLE,WA,10/26/2013 17:30 +Glendale,,FIREBALL,AZ,10/26/2013 18:00 +Calabasas,,OTHER,CA,10/26/2013 18:50 +Fitchburg,YELLOW BLUE,LIGHT,MA,10/26/2013 18:50 +Athens,,LIGHT,GA,10/26/2013 19:00 +Brunswick,,TRIANGLE,MD,10/26/2013 19:00 +Chapin,,FIREBALL,SC,10/26/2013 19:00 +Kenosha,,LIGHT,WI,10/26/2013 19:00 +Zion National Park,,LIGHT,UT,10/26/2013 19:00 +Winston-Salem,,TRIANGLE,NC,10/26/2013 19:25 +Plant City,RED ORANGE,CIRCLE,FL,10/26/2013 19:30 +Hillsboro,,LIGHT,MO,10/26/2013 19:45 +Edgerton,RED YELLOW,RECTANGLE,WI,10/26/2013 19:55 +Goodlettsville,RED YELLOW,FLASH,TN,10/26/2013 19:55 +Beaverton,ORANGE,,OR,10/26/2013 20:00 +Savage,,TRIANGLE,MN,10/26/2013 20:15 +Beaver,,CIRCLE,AR,10/26/2013 21:00 +La Porte,,CIRCLE,IN,10/26/2013 21:25 +Olathe,,,KS,10/26/2013 21:30 +Cape Coral,ORANGE,FIREBALL,FL,10/26/2013 21:36 +Tallahassee,ORANGE,FIREBALL,FL,10/26/2013 21:45 +Lake Worth,BLUE,DISK,FL,10/26/2013 22:00 +North Canton,ORANGE,TRIANGLE,OH,10/26/2013 22:00 +Oldsmar,ORANGE,FORMATION,FL,10/26/2013 22:08 +Miami Beach,,TRIANGLE,FL,10/26/2013 23:00 +Mustang,,FIREBALL,OK,10/26/2013 23:00 +Garland,ORANGE,LIGHT,TX,10/27/2013 0:50 +King,,CIRCLE,NC,10/27/2013 7:02 +Marstons mills,,FORMATION,MA,10/27/2013 7:05 +Moorhead,,LIGHT,MN,10/27/2013 19:00 +Lorain,RED,DIAMOND,OH,10/27/2013 19:30 +Puna,,RECTANGLE,HI,10/27/2013 19:30 +St. Paul,,SPHERE,MN,10/27/2013 19:59 +Fayetteville,,FLASH,AR,10/27/2013 20:00 +Meritt Island,,CIRCLE,FL,10/27/2013 20:00 +Cincinnati,,TEARDROP,OH,10/27/2013 20:30 +Winston-Salem,,CROSS,NC,10/27/2013 20:30 +Lexington,,TRIANGLE,KY,10/27/2013 21:00 +Pasadena,ORANGE,LIGHT,CA,10/27/2013 21:45 +West Palm Beach,ORANGE,FIREBALL,FL,10/27/2013 21:50 +Pittsburgh,,FIREBALL,PA,10/27/2013 22:15 +Stillwater,ORANGE,SPHERE,OK,10/28/2013 0:06 +Peeble,,LIGHT,OH,10/28/2013 1:30 +Lake City,,LIGHT,IA,10/28/2013 4:00 +Walkertown,GREEN,DISK,NC,10/28/2013 10:38 +Graham,,DISK,WA,10/28/2013 18:30 +Aberdeen,,LIGHT,NC,10/28/2013 20:06 +Kingston,,FLASH,WA,10/28/2013 20:17 +Brownsville,ORANGE,CIRCLE,TX,10/28/2013 20:20 +Amherst,,DIAMOND,MA,10/28/2013 21:00 +Longmeadow,,TRIANGLE,MA,10/28/2013 21:30 +Davie,,,FL,10/28/2013 22:00 +Mt. Vernon,,TRIANGLE,OH,10/28/2013 22:15 +Wellington,,CIRCLE,FL,10/28/2013 22:30 +Sommerville,,OVAL,OH,10/28/2013 23:54 +Eastport,RED GREEN,CIRCLE,MD,10/29/2013 0:30 +Melbourne,,LIGHT,FL,10/29/2013 3:30 +Fort Lauderdale,,,FL,10/29/2013 7:28 +Santa Cruz,,CIRCLE,CA,10/29/2013 18:00 +Newport News,,OVAL,VA,10/29/2013 19:00 +Sacramento,RED,LIGHT,CA,10/29/2013 19:15 +Milton-Freewater,YELLOW,LIGHT,OR,10/29/2013 19:20 +Manistee,,,MI,10/29/2013 20:00 +Fayetteville,,LIGHT,NC,10/29/2013 20:57 +Norridgewock,,OTHER,ME,10/29/2013 21:45 +Camp Verde,,,AZ,10/29/2013 22:00 +San Clemente,,LIGHT,CA,10/29/2013 22:40 +San Diego,ORANGE,FIREBALL,CA,10/30/2013 3:20 +Idaho falls,,DIAMOND,ID,10/30/2013 5:00 +Kelso,,LIGHT,WA,10/30/2013 5:58 +Richland,,LIGHT,WA,10/30/2013 5:58 +Sandpoint,,TEARDROP,ID,10/30/2013 5:58 +Post Falls,,LIGHT,ID,10/30/2013 6:05 +Walla Walla,,LIGHT,WA,10/30/2013 6:05 +Kuna,,FIREBALL,ID,10/30/2013 6:50 +Lawrenceville,RED,FIREBALL,GA,10/30/2013 10:00 +St. Paul,,,MN,10/30/2013 14:00 +Ogdensburg,,LIGHT,NJ,10/30/2013 19:00 +Scranton,,LIGHT,PA,10/30/2013 19:00 +Jonesboro,,LIGHT,AR,10/30/2013 19:25 +Gulfport,,SPHERE,MS,10/30/2013 19:30 +Mechanicsville,GREEN,,VA,10/30/2013 19:30 +Taylorsville,,TRIANGLE,NC,10/30/2013 20:58 +Clermont,RED,LIGHT,FL,10/30/2013 21:00 +Palo Alto,RED,DISK,CA,10/30/2013 21:20 +Modesto,,FLASH,CA,10/30/2013 21:30 +New Kensington,ORANGE,FORMATION,PA,10/30/2013 22:00 +Truth or Consequences,RED BLUE,LIGHT,NM,10/30/2013 22:00 +Virginia Beach,,LIGHT,VA,10/31/2013 1:00 +San Diego,,LIGHT,CA,10/31/2013 5:10 +Boca Raton,RED,FLASH,FL,10/31/2013 5:45 +Ocala,,CIRCLE,FL,10/31/2013 6:28 +Sanford,,SPHERE,FL,10/31/2013 8:45 +Elmore city,,FIREBALL,OK,10/31/2013 10:45 +Torrance,,DIAMOND,CA,10/31/2013 14:23 +Littleton,,SPHERE,CO,10/31/2013 19:00 +Queen Creek,ORANGE YELLOW GREEN,OTHER,AZ,10/31/2013 20:00 +Santa Cruz,,CIGAR,CA,10/31/2013 20:00 +Los Angeles,,LIGHT,CA,10/31/2013 20:07 +Riverview,RED GREEN,CIRCLE,FL,10/31/2013 20:17 +Fairbanks,,DIAMOND,AK,10/31/2013 20:30 +Sandy Springs,,OTHER,GA,10/31/2013 20:40 +Del City,,CHEVRON,OK,10/31/2013 21:00 +Edgewater,BLUE,FORMATION,FL,10/31/2013 21:00 +Meridian,,LIGHT,ID,10/31/2013 21:00 +Arcanum,,,OH,10/31/2013 21:03 +Salyersville,,LIGHT,KY,10/31/2013 21:20 +East Wenatchee,RED,LIGHT,WA,10/31/2013 22:13 +Davenport,ORANGE,FIREBALL,FL,11/1/2013 0:28 +Okmulgee,,FORMATION,OK,11/1/2013 1:35 +Athens,BLUE,FLASH,OH,11/1/2013 2:00 +Napili,ORANGE,FIREBALL,HI,11/1/2013 4:30 +Mechanicsburg,,LIGHT,PA,11/1/2013 6:45 +Ann Arbor,,LIGHT,MI,11/1/2013 7:30 +Roseville,,OTHER,CA,11/1/2013 7:30 +Wisconsin Rapids,,TRIANGLE,WI,11/1/2013 17:00 +Liberty Lake,,CIRCLE,WA,11/1/2013 17:30 +Madison,,LIGHT,MS,11/1/2013 18:00 +Trego,ORANGE,FIREBALL,MT,11/1/2013 18:50 +Cincinnati,,FIREBALL,OH,11/1/2013 19:00 +Toms Brook,,SPHERE,VA,11/1/2013 19:11 +Cincinnati,,FIREBALL,OH,11/1/2013 19:15 +Pottstown,ORANGE,FORMATION,PA,11/1/2013 19:15 +Cincinnati,ORANGE,CIRCLE,OH,11/1/2013 19:25 +Madeira,ORANGE YELLOW,FORMATION,OH,11/1/2013 19:25 +Madeira,ORANGE YELLOW,FORMATION,OH,11/1/2013 19:25 +Cincinnati,,FIREBALL,OH,11/1/2013 19:30 +Lake Elsinore,,SPHERE,CA,11/1/2013 19:30 +Pismo,,EGG,CA,11/1/2013 19:30 +Lake Elsinore,,OTHER,CA,11/1/2013 19:32 +Westville,BLUE,FORMATION,CT,11/1/2013 19:50 +Vero Beach,ORANGE,FIREBALL,FL,11/1/2013 20:15 +Butte,,FORMATION,MT,11/1/2013 20:20 +Johns Creek,,EGG,GA,11/1/2013 20:29 +Gallup,,LIGHT,NM,11/1/2013 20:30 +Nashville,RED,EGG,TN,11/1/2013 20:30 +Marion,,CIRCLE,NC,11/1/2013 21:00 +Ravena,,FIREBALL,NY,11/1/2013 21:00 +Knoxville,ORANGE,OVAL,TN,11/1/2013 22:00 +New Paltz,ORANGE BLUE,CIRCLE,NY,11/1/2013 22:00 +Gig Harbor,,LIGHT,WA,11/1/2013 22:20 +Arlington,,LIGHT,VA,11/1/2013 22:42 +Shillington,RED BLUE,LIGHT,PA,11/1/2013 23:45 +Fordyce,ORANGE,FIREBALL,AR,11/2/2013 0:00 +Rapid City,RED GREEN BLUE,OTHER,SD,11/2/2013 1:00 +Ogde,,SPHERE,UT,11/2/2013 1:25 +Somerville,,CIRCLE,MA,11/2/2013 2:00 +Woodland,ORANGE,CIRCLE,WA,11/2/2013 6:40 +Naches,,FLASH,WA,11/2/2013 7:00 +Haddon Heights,,TRIANGLE,NJ,11/2/2013 7:15 +South Ogden,,LIGHT,UT,11/2/2013 7:30 +Helena,,OVAL,MT,11/2/2013 18:40 +Manchester,RED,LIGHT,VT,11/2/2013 18:50 +Londonderry,,LIGHT,NH,11/2/2013 19:00 +Peyton,,LIGHT,CO,11/2/2013 19:00 +Buda,,TRIANGLE,TX,11/2/2013 19:15 +Wickenburg,,LIGHT,AZ,11/2/2013 19:30 +Falmouth,ORANGE,LIGHT,ME,11/2/2013 19:45 +Newtown,RED,SPHERE,PA,11/2/2013 19:45 +Point Pleasant by the Barnegat Bay,ORANGE,CIRCLE,NJ,11/2/2013 20:00 +Roseville,,CYLINDER,MI,11/2/2013 20:00 +Santa Rosa,,TRIANGLE,CA,11/2/2013 20:10 +Wasilla,,DISK,AK,11/2/2013 20:23 +Weymouth,,LIGHT,MA,11/2/2013 20:30 +Middleton,,OTHER,WI,11/2/2013 20:35 +Aventura,RED ORANGE,CIRCLE,FL,11/2/2013 21:00 +Miamisburg,,LIGHT,OH,11/2/2013 21:00 +Port Hueneme,,LIGHT,CA,11/2/2013 21:05 +Geneva,RED,CIRCLE,FL,11/2/2013 21:45 +Conway,,FIREBALL,AR,11/2/2013 22:00 +Columbia,GREEN,LIGHT,MD,11/2/2013 22:30 +Wakefield,,FIREBALL,RI,11/2/2013 22:30 +West Hills,,LIGHT,CA,11/2/2013 23:08 +Discovery Bay,ORANGE,OVAL,CA,11/2/2013 23:15 +Naugatuck,,LIGHT,CT,11/2/2013 23:30 +Port of Long Beach,,CIRCLE,CA,11/3/2013 1:00 +Manteca,,,CA,11/3/2013 1:09 +Cuyahoga Falls,RED YELLOW GREEN BLUE,SPHERE,OH,11/3/2013 1:30 +Pigeon Forge,RED ORANGE,LIGHT,TN,11/3/2013 2:15 +Orlando,,CYLINDER,FL,11/3/2013 5:30 +Bonney Lake,,LIGHT,WA,11/3/2013 6:30 +Boerne,,CIRCLE,TX,11/3/2013 6:35 +Anthony,,VARIOUS,NM,11/3/2013 7:00 +Burns,ORANGE,CIRCLE,TN,11/3/2013 7:45 +Burns,ORANGE,CIRCLE,TN,11/3/2013 7:45 +West Haven,,CIRCLE,CT,11/3/2013 15:00 +Lacey,,FORMATION,WA,11/3/2013 16:30 +Fairfield,,TRIANGLE,CT,11/3/2013 17:00 +Bridgewater Corners,,LIGHT,VT,11/3/2013 18:15 +Nottingham,,LIGHT,NH,11/3/2013 18:15 +Pampa,,FIREBALL,TX,11/3/2013 18:25 +Tampa,RED,FIREBALL,FL,11/3/2013 18:40 +Wyoming,RED,LIGHT,MI,11/3/2013 18:41 +Parma,,FIREBALL,OH,11/3/2013 18:50 +Coos Bay,,LIGHT,OR,11/3/2013 19:00 +Deer Isle,RED GREEN BLUE,RECTANGLE,ME,11/3/2013 19:00 +Huntsville,,LIGHT,AL,11/3/2013 19:00 +Medford,,TRIANGLE,OR,11/3/2013 19:00 +Palmyra,,LIGHT,NY,11/3/2013 19:00 +Ten Mile,,CIRCLE,TN,11/3/2013 19:30 +Flagstaff,,VARIOUS,AZ,11/3/2013 20:00 +Huntington,,CROSS,WV,11/3/2013 20:00 +Tomah,,TRIANGLE,WI,11/3/2013 20:00 +Littleton,,CHEVRON,CO,11/3/2013 20:10 +Shively,,LIGHT,KY,11/3/2013 20:30 +Pipe Creek,,SPHERE,TX,11/3/2013 20:55 +Lebanon,,LIGHT,OH,11/3/2013 21:00 +Middletown,,CIRCLE,MD,11/3/2013 21:00 +Bridgeport,,RECTANGLE,CT,11/3/2013 22:07 +Front Royal,,LIGHT,VA,11/3/2013 22:23 +New Albany,,RECTANGLE,IN,11/4/2013 2:30 +Beaver Falls,,LIGHT,PA,11/4/2013 6:15 +Durham,,CIRCLE,NC,11/4/2013 12:30 +Minneapolis,,OTHER,MN,11/4/2013 17:30 +Jackson,,,MS,11/4/2013 18:03 +Mount Clemens,,TRIANGLE,MI,11/4/2013 19:00 +Mt. Orab,,LIGHT,OH,11/4/2013 19:00 +Napa,RED GREEN,CIRCLE,CA,11/4/2013 19:00 +West Oakland,,VARIOUS,CA,11/4/2013 19:00 +North Topsail Beach,,,NC,11/4/2013 19:54 +Albuquerque,,LIGHT,NM,11/4/2013 20:00 +Salt Lake City,,CIRCLE,UT,11/4/2013 20:00 +Escondido,RED,,CA,11/4/2013 20:04 +Clearlake,,TRIANGLE,CA,11/4/2013 20:09 +Clarksville,,VARIOUS,TN,11/4/2013 20:15 +Clarksville,,CIGAR,TN,11/4/2013 20:30 +Mt. Vernon,RED,OVAL,OH,11/4/2013 20:45 +Niskayuna,,OTHER,NY,11/4/2013 21:50 +Duluth,,LIGHT,MN,11/4/2013 22:00 +Key Largo,,TRIANGLE,FL,11/4/2013 22:00 +West Columbia,,CIGAR,SC,11/4/2013 22:00 +Clearwater,,TRIANGLE,FL,11/4/2013 22:25 +North St. Paul,,FIREBALL,MN,11/4/2013 23:00 +Raleigh,RED,TRIANGLE,NC,11/4/2013 23:00 +Silverhill,,CYLINDER,AL,11/5/2013 0:00 +Morehead,,SPHERE,NC,11/5/2013 3:00 +San Francisco,RED GREEN,FLASH,CA,11/5/2013 6:00 +Lahaina,,FLASH,HI,11/5/2013 6:20 +Augusta,,CIGAR,GA,11/5/2013 7:15 +Newton,,CIRCLE,MA,11/5/2013 15:50 +Springfield,,CIRCLE,LA,11/5/2013 17:00 +Houston,,SPHERE,TX,11/5/2013 17:30 +Wasilla,RED GREEN,DISK,AK,11/5/2013 18:05 +Grayson,,FIREBALL,GA,11/5/2013 18:30 +Lansdale,,CIRCLE,PA,11/5/2013 18:45 +Show Low,,FIREBALL,AZ,11/5/2013 18:45 +Grants Pass,ORANGE,FIREBALL,OR,11/5/2013 19:00 +Keizer,ORANGE,CYLINDER,OR,11/5/2013 19:15 +Vallejo,ORANGE,TRIANGLE,CA,11/5/2013 19:22 +Scottsdale,,OTHER,AZ,11/5/2013 20:15 +Medina,,FIREBALL,OH,11/5/2013 20:20 +Marina Del Ray,RED ORANGE BLUE,OVAL,CA,11/5/2013 21:00 +Langhorne,ORANGE,CIRCLE,PA,11/5/2013 21:10 +Mayflower,,TRIANGLE,AR,11/5/2013 21:28 +Panama City Beach,ORANGE,FIREBALL,FL,11/5/2013 21:30 +Charleston,,OVAL,WV,11/5/2013 22:15 +Erie,,OTHER,PA,11/5/2013 23:00 +Hubbard,ORANGE,TRIANGLE,OH,11/5/2013 23:30 +Noblesville,YELLOW,OTHER,IN,11/5/2013 23:30 +Moore,,CIGAR,OK,11/6/2013 1:00 +Whittier,,LIGHT,CA,11/6/2013 5:10 +Los Angeles,,DISK,CA,11/6/2013 6:05 +Austin,,TRIANGLE,MN,11/6/2013 10:00 +Bonsall,RED GREEN,FORMATION,CA,11/6/2013 10:00 +Vienna,,FIREBALL,VA,11/6/2013 17:10 +Raymore,,,MO,11/6/2013 19:00 +Dothan,,CIRCLE,AL,11/6/2013 19:30 +San Pedro,,FLASH,CA,11/6/2013 19:30 +Wadley,ORANGE,SPHERE,AL,11/6/2013 19:30 +San Diego County,,FIREBALL,CA,11/6/2013 19:50 +Desert Center,,LIGHT,CA,11/6/2013 20:00 +San Angelo,,LIGHT,TX,11/6/2013 20:05 +North Bergen,RED,DISK,NJ,11/6/2013 20:20 +Great Falls,,CIRCLE,VA,11/6/2013 20:36 +Fort Myers,RED,,FL,11/6/2013 21:00 +Santa Barbara,ORANGE,FLASH,CA,11/6/2013 21:49 +Jupiter,,DIAMOND,FL,11/6/2013 22:00 +Plano,,,TX,11/6/2013 22:26 +Houston,,FORMATION,TX,11/7/2013 0:45 +Casper,,CHEVRON,WY,11/7/2013 1:45 +Route 23 North,RED,SPHERE,NJ,11/7/2013 14:10 +Fair Lawn,,,NJ,11/7/2013 16:26 +Lorton,,CIRCLE,VA,11/7/2013 16:52 +Falls Church,,TRIANGLE,VA,11/7/2013 18:30 +Goose Creek,,DIAMOND,SC,11/7/2013 18:30 +Mobile,,LIGHT,AL,11/7/2013 18:30 +Freeport,,LIGHT,TX,11/7/2013 19:45 +Bunnell,,CIRCLE,FL,11/7/2013 20:00 +La Conchita,,OTHER,CA,11/7/2013 20:00 +La Conchita,,OTHER,CA,11/7/2013 20:00 +Londonderry,,TRIANGLE,NH,11/7/2013 20:00 +Longmont,,SPHERE,CO,11/7/2013 21:47 +Poipu,,FIREBALL,HI,11/7/2013 22:00 +Springdale,,CHEVRON,AR,11/7/2013 22:30 +Gassville,,LIGHT,AR,11/7/2013 23:00 +Cuba,RED GREEN,DISK,NM,11/8/2013 0:00 +Sandy,,OTHER,UT,11/8/2013 1:00 +Orlando,,,FL,11/8/2013 8:00 +Gibsonton,,FIREBALL,FL,11/8/2013 10:56 +Roanoke,,LIGHT,VA,11/8/2013 17:00 +Austell,,LIGHT,GA,11/8/2013 19:00 +Newton,ORANGE,LIGHT,IL,11/8/2013 19:00 +Pewaukee,,RECTANGLE,WI,11/8/2013 19:30 +Tomball,,TRIANGLE,TX,11/8/2013 20:20 +Apollo,,SPHERE,PA,11/8/2013 21:00 +Nottingham,,LIGHT,MD,11/8/2013 21:15 +Phoenixville,ORANGE,RECTANGLE,PA,11/8/2013 21:45 +Antioch,RED,LIGHT,CA,11/8/2013 22:00 +Charlotte,RED ORANGE,CIRCLE,NC,11/8/2013 22:00 +Warren,,LIGHT,MI,11/8/2013 22:00 +Fairbanks,ORANGE BLUE,,AK,11/8/2013 23:00 +Arlington,RED,CROSS,TX,11/9/2013 0:00 +Stillwater,,LIGHT,OK,11/9/2013 9:08 +Shoto,,CIRCLE,WI,11/9/2013 9:15 +Santa Monica,,CYLINDER,CA,11/9/2013 9:45 +Clearwater,,,FL,11/9/2013 10:20 +Cleveland,,OTHER,OH,11/9/2013 17:10 +Kuparuk Oilfield,,LIGHT,AK,11/9/2013 17:30 +Kuparuk Oilfield,,LIGHT,AK,11/9/2013 17:30 +Farmingdale,ORANGE,FIREBALL,NY,11/9/2013 18:00 +Frenchberg,,OTHER,KY,11/9/2013 18:10 +Waikoloa,ORANGE,LIGHT,HI,11/9/2013 19:00 +McCordsville,,FIREBALL,IN,11/9/2013 19:15 +Georgia,YELLOW,SPHERE,VT,11/9/2013 19:30 +Dobson,ORANGE,LIGHT,NC,11/9/2013 19:40 +Mesa,,FORMATION,AZ,11/9/2013 19:40 +Inverness,,LIGHT,FL,11/9/2013 19:44 +Pomfret,ORANGE,LIGHT,CT,11/9/2013 19:48 +Inverness,ORANGE,LIGHT,FL,11/9/2013 19:50 +Hanover,,,MA,11/9/2013 20:40 +Overland Park,RED,FIREBALL,KS,11/9/2013 20:40 +Gibsonia,YELLOW,FORMATION,PA,11/9/2013 20:45 +Roanoke,,LIGHT,VA,11/9/2013 20:45 +Ralston,,CHEVRON,NE,11/9/2013 21:00 +Severna Park,RED,SPHERE,MD,11/9/2013 21:00 +Leavenworth,,FIREBALL,KS,11/9/2013 21:20 +Vancouver,,OVAL,WA,11/9/2013 23:05 +Little Rock,,,AR,11/9/2013 23:30 +Sterling,RED BLUE,,VA,11/10/2013 0:00 +Carter Lake,,TRIANGLE,IA,11/10/2013 0:15 +Carter Lake,,TRIANGLE,IA,11/10/2013 0:15 +Albany,ORANGE,CIRCLE,OR,11/10/2013 0:20 +Palm Coast,,TRIANGLE,FL,11/10/2013 0:30 +Eagan,,FLASH,MN,11/10/2013 0:55 +Bolingbrook,,OVAL,IL,11/10/2013 5:15 +Seymour,,LIGHT,CT,11/10/2013 5:56 +West Orange,,RECTANGLE,NJ,11/10/2013 14:00 +Orlando,,CIGAR,FL,11/10/2013 15:29 +Olivehurst,RED,FIREBALL,CA,11/10/2013 16:30 +Grand Junction,ORANGE,CIRCLE,CO,11/10/2013 17:00 +Metairie,,CIRCLE,LA,11/10/2013 17:00 +St. Charles,,OTHER,IL,11/10/2013 17:50 +Bellingham,,SPHERE,MA,11/10/2013 18:17 +Graham,ORANGE,FIREBALL,WA,11/10/2013 18:25 +Sylvan Lake,,TRIANGLE,MI,11/10/2013 19:00 +Mt. Vernon,,OTHER,OH,11/10/2013 19:15 +Palmer,,FIREBALL,AK,11/10/2013 19:30 +Punta Gorda,,FIREBALL,FL,11/10/2013 19:30 +North East Florida,,FIREBALL,FL,11/10/2013 20:25 +Irving,,FIREBALL,TX,11/10/2013 21:00 +Irving,,FIREBALL,TX,11/10/2013 21:00 +Jonesboro,,RECTANGLE,AR,11/10/2013 21:00 +Tulsa,,TRIANGLE,OK,11/10/2013 21:00 +Havana,,SPHERE,FL,11/10/2013 21:45 +Virginia Beach,,VARIOUS,VA,11/10/2013 22:00 +Providence,,RECTANGLE,RI,11/10/2013 22:51 +Peru,,FIREBALL,IN,11/10/2013 23:00 +Las Vegas,BLUE,OVAL,NV,11/10/2013 23:05 +Savannah,,TRIANGLE,MO,11/11/2013 5:00 +Twin Falls,,TRIANGLE,ID,11/11/2013 6:25 +Houston,,,TX,11/11/2013 12:09 +Port Townsend,,OVAL,WA,11/11/2013 15:45 +San Tan Valley,,LIGHT,AZ,11/11/2013 17:00 +Bristol,,LIGHT,VA,11/11/2013 18:15 +Coeur d'Alene,ORANGE,FIREBALL,ID,11/11/2013 18:23 +Indianapolis,,DISK,IN,11/11/2013 18:45 +Mesa,,LIGHT,AZ,11/11/2013 19:03 +Delray Beach,,LIGHT,FL,11/11/2013 19:30 +Hamilton-Wenham,ORANGE,TEARDROP,MA,11/11/2013 20:10 +Peoria,ORANGE,SPHERE,AZ,11/11/2013 20:30 +Lake Worth,,LIGHT,FL,11/11/2013 20:37 +New Port Richey,ORANGE,LIGHT,FL,11/11/2013 21:00 +East Troy,,TRIANGLE,WI,11/11/2013 21:19 +Baton Rouge,,FIREBALL,LA,11/11/2013 22:00 +Jefferson,,LIGHT,WI,11/11/2013 22:00 +Iowa city,RED BLUE,DIAMOND,IA,11/11/2013 23:56 +Franklin,ORANGE,CIRCLE,TN,11/12/2013 1:00 +Groveport,,,OH,11/12/2013 1:15 +Lincoln City,,TEARDROP,OR,11/12/2013 2:48 +Littleton,,CYLINDER,CO,11/12/2013 5:15 +Florissant,,TRIANGLE,CO,11/12/2013 16:00 +Paddock Lake,RED,LIGHT,WI,11/12/2013 19:00 +Black Canyon City,ORANGE,CIRCLE,AZ,11/12/2013 19:30 +Black Canyon City,ORANGE,CIRCLE,AZ,11/12/2013 19:30 +Gibsonia,ORANGE,FORMATION,PA,11/12/2013 19:30 +Hillsville,,SPHERE,VA,11/12/2013 19:44 +Eastsound,,OVAL,WA,11/12/2013 20:00 +Buhl,,FIREBALL,MN,11/12/2013 20:39 +Nampa,,LIGHT,ID,11/12/2013 20:50 +Buhl,,CIRCLE,MN,11/12/2013 21:00 +Salisbury,,CIRCLE,NC,11/12/2013 21:00 +Santa Fe,ORANGE,,NM,11/12/2013 21:15 +Santa Fe,,DIAMOND,NM,11/12/2013 21:15 +Santa Fe,,OTHER,NM,11/12/2013 21:15 +Portage,,TRIANGLE,WI,11/12/2013 21:25 +Omro,,,WI,11/12/2013 21:58 +Bear,,LIGHT,DE,11/12/2013 22:45 +Granite Falls,,CIRCLE,WA,11/13/2013 0:00 +Sammamish,,TRIANGLE,WA,11/13/2013 1:21 +Florham Park,,LIGHT,NJ,11/13/2013 4:35 +Long Beach,,DISK,CA,11/13/2013 7:30 +Boise,,LIGHT,ID,11/13/2013 11:53 +Wadsworth,,CIGAR,OH,11/13/2013 13:30 +Milwaukee,,CIGAR,WI,11/13/2013 16:15 +Sacramento,ORANGE,LIGHT,CA,11/13/2013 17:30 +Lake Havasu City,,DISK,AZ,11/13/2013 17:35 +Barre,,OVAL,VT,11/13/2013 17:50 +Ellsworth,RED BLUE,FLASH,ME,11/13/2013 18:00 +Fort Myers Beach,GREEN,FLASH,FL,11/13/2013 18:00 +Bridgewater,RED,TRIANGLE,MA,11/13/2013 18:22 +Stafford,,,VA,11/13/2013 18:40 +Black River Falls,,FIREBALL,WI,11/13/2013 18:45 +Salt Lake City,,RECTANGLE,UT,11/13/2013 19:13 +McGraw,ORANGE,FIREBALL,NY,11/13/2013 19:15 +La Crosse,,TRIANGLE,WI,11/13/2013 19:30 +Okeechobee,,FIREBALL,FL,11/13/2013 19:45 +Houma,,FORMATION,LA,11/13/2013 20:00 +Portageville,RED,TRIANGLE,MO,11/13/2013 20:00 +Spanish Fork,RED,LIGHT,UT,11/13/2013 20:00 +Toms River,,TRIANGLE,NJ,11/13/2013 20:00 +Roseville,ORANGE,CIRCLE,CA,11/13/2013 21:15 +Mauston,,FIREBALL,WI,11/13/2013 21:25 +Black River Falls,ORANGE,FIREBALL,WI,11/13/2013 22:15 +Burbank,,OTHER,CA,11/13/2013 22:30 +Princeton,,OTHER,WV,11/14/2013 15:00 +Porterville,ORANGE,CIRCLE,CA,11/14/2013 16:00 +North Conway,,FORMATION,NH,11/14/2013 17:00 +Marshfield,ORANGE,CIRCLE,WI,11/14/2013 18:09 +Oxnard,,DIAMOND,CA,11/14/2013 18:45 +Saint Albans,ORANGE,CIRCLE,VT,11/14/2013 18:45 +Farmington,ORANGE,FIREBALL,ME,11/14/2013 19:00 +Hampton,,CIGAR,VA,11/14/2013 19:30 +Harrisburg,,CIRCLE,PA,11/14/2013 20:00 +Kansas City,,SPHERE,MO,11/14/2013 22:15 +Lake Havasu,RED,FORMATION,AZ,11/14/2013 23:00 +West Chester,,FORMATION,PA,11/14/2013 23:15 +Grand Rapids,GREEN,FIREBALL,MI,11/15/2013 2:50 +Martin,,FIREBALL,MI,11/15/2013 4:00 +Portage,,FIREBALL,WI,11/15/2013 5:45 +Spring Valley,,SPHERE,CA,11/15/2013 6:00 +Enumclaw,,FIREBALL,WA,11/15/2013 6:52 +Oxon Hill,,,MD,11/15/2013 16:00 +Westminster,,OVAL,CO,11/15/2013 16:00 +Hamburg,GREEN,CIRCLE,WI,11/15/2013 17:00 +Savage,,SPHERE,MN,11/15/2013 17:00 +Washington Township,,SPHERE,NJ,11/15/2013 17:00 +Burnsville,,FIREBALL,MN,11/15/2013 17:15 +Wautoma,ORANGE,CIRCLE,WI,11/15/2013 17:15 +Lisbon,ORANGE,LIGHT,NY,11/15/2013 17:30 +Portage,ORANGE,CIRCLE,WI,11/15/2013 17:45 +Berlin,,CHEVRON,CT,11/15/2013 17:57 +Waterloo,GREEN,OTHER,IA,11/15/2013 18:00 +Ocala,,DIAMOND,FL,11/15/2013 18:20 +Millis,,,MA,11/15/2013 18:53 +Alexandria,ORANGE,FIREBALL,LA,11/15/2013 19:00 +Pilot,ORANGE BLUE,,VA,11/15/2013 19:30 +Marina Del Rey,,CROSS,CA,11/15/2013 21:00 +Des Moines,ORANGE,LIGHT,IA,11/15/2013 21:20 +Wisconsin Dells,,,WI,11/15/2013 21:25 +Lincoln,GREEN BLUE,SPHERE,CA,11/15/2013 21:30 +Des Moines,,LIGHT,IA,11/15/2013 21:34 +Gainesville,,FIREBALL,GA,11/15/2013 21:45 +Syosset,,,NY,11/15/2013 22:30 +Farmington,,SPHERE,MN,11/15/2013 22:45 +Martinsburg,,OVAL,WV,11/16/2013 0:00 +Los Angeles,,FIREBALL,CA,11/16/2013 1:00 +St. George,,,SC,11/16/2013 5:30 +Yorktown,ORANGE YELLOW,,VA,11/16/2013 6:00 +Yuba City,,SPHERE,CA,11/16/2013 8:25 +Ames,RED,CIRCLE,IA,11/16/2013 9:45 +Nazareth,ORANGE,FORMATION,PA,11/16/2013 10:00 +Billerica,,VARIOUS,MA,11/16/2013 16:00 +Hartsville,,LIGHT,SC,11/16/2013 17:30 +Brick,,LIGHT,NJ,11/16/2013 18:00 +Meriden,ORANGE,FIREBALL,CT,11/16/2013 18:00 +Fleming Island,ORANGE,FIREBALL,FL,11/16/2013 18:20 +Jamestown,ORANGE,FIREBALL,RI,11/16/2013 18:30 +Akron,,LIGHT,OH,11/16/2013 18:45 +Boomer,,CIRCLE,WV,11/16/2013 19:00 +Santa Rosa,ORANGE,SPHERE,CA,11/16/2013 19:30 +Waterville,,,NY,11/16/2013 19:30 +Wizard Wells,,OTHER,TX,11/16/2013 19:45 +Lake Havasu City,,FIREBALL,AZ,11/16/2013 20:00 +West Des Moines,RED,FORMATION,IA,11/16/2013 20:25 +Rancho Santa Margarita,,LIGHT,CA,11/16/2013 20:30 +West Des Moines,ORANGE,LIGHT,IA,11/16/2013 20:30 +Springfield,,CIRCLE,OR,11/16/2013 21:00 +Bladen,,,NE,11/16/2013 21:43 +Pratt,,FIREBALL,KS,11/16/2013 21:45 +Irmo,,CIGAR,SC,11/16/2013 21:54 +Crescent,,SPHERE,OK,11/16/2013 22:10 +Cartersville,,CIRCLE,GA,11/16/2013 22:30 +Derby,GREEN,FIREBALL,KS,11/16/2013 22:30 +Gonzales,ORANGE,SPHERE,LA,11/16/2013 22:30 +Taunton,,FIREBALL,MA,11/16/2013 23:00 +Davie,ORANGE,FORMATION,FL,11/16/2013 23:20 +Jacksonville,,,FL,11/16/2013 23:55 +Des Moines,RED,SPHERE,IA,11/17/2013 0:00 +Osage City,,OTHER,KS,11/17/2013 0:00 +Cedar Rapids,,CIRCLE,IA,11/17/2013 1:30 +Tempe,,OVAL,AZ,11/17/2013 3:00 +Clarkston,,,MI,11/17/2013 9:00 +Reno,,CIRCLE,NV,11/17/2013 17:00 +Carlsbad,RED ORANGE,CIRCLE,NM,11/17/2013 17:45 +Boise,,LIGHT,ID,11/17/2013 18:00 +Upper Marlboro,,FIREBALL,MD,11/17/2013 18:00 +Arvada,,LIGHT,CO,11/17/2013 18:16 +Westminster,,FIREBALL,CO,11/17/2013 18:30 +Newark,RED,FIREBALL,NJ,11/17/2013 18:45 +Boise,,LIGHT,ID,11/17/2013 19:00 +Denver,,LIGHT,CO,11/17/2013 19:30 +Detroit,BLUE,LIGHT,MI,11/17/2013 20:00 +Vero Beach,,FIREBALL,FL,11/17/2013 22:02 +Orlando,,SPHERE,FL,11/17/2013 23:24 +West Lafayette,,CONE,IN,11/17/2013 23:30 +Gibsonton,BLUE,,FL,11/18/2013 0:35 +Merrimack,,CIGAR,NH,11/18/2013 4:00 +Nokesville,,CIRCLE,VA,11/18/2013 6:00 +Pelham,,LIGHT,AL,11/18/2013 11:30 +Natick,,LIGHT,MA,11/18/2013 16:45 +Crofton,BLUE,OVAL,MD,11/18/2013 17:00 +New Haven,,CONE,CT,11/18/2013 17:00 +Oceanview,,TRIANGLE,NJ,11/18/2013 17:30 +Chaska,,DISK,MN,11/18/2013 17:58 +Waldorf,,FIREBALL,MD,11/18/2013 17:59 +Red Lion,RED,VARIOUS,PA,11/18/2013 18:30 +Antioch,BLUE,SPHERE,TN,11/18/2013 19:00 +Virginia Beach,RED,SPHERE,VA,11/18/2013 19:45 +Nashville,RED,TRIANGLE,TN,11/18/2013 20:28 +Haddam,,CIRCLE,CT,11/18/2013 21:00 +Palmer,ORANGE,CYLINDER,AK,11/18/2013 21:00 +Red Rock,,LIGHT,AZ,11/18/2013 21:51 +Baltimore,,SPHERE,MD,11/18/2013 22:00 +Rock Hill,RED GREEN,CIRCLE,SC,11/19/2013 0:15 +Racine,,CIGAR,WI,11/19/2013 12:35 +St. Charles,,CYLINDER,MI,11/19/2013 13:00 +High Point,,SPHERE,NC,11/19/2013 14:00 +Hampton,,SPHERE,GA,11/19/2013 14:22 +Paterson,,CIRCLE,NJ,11/19/2013 16:00 +Captiva,,FIREBALL,FL,11/19/2013 17:10 +St. Johnsbury,RED ORANGE,CIRCLE,VT,11/19/2013 17:50 +Rio Rancho,,OTHER,NM,11/19/2013 17:55 +Rio Rancho,GREEN BLUE,TRIANGLE,NM,11/19/2013 17:55 +Lodi,RED,TRIANGLE,WI,11/19/2013 18:00 +Pittsburgh,RED,LIGHT,PA,11/19/2013 18:00 +Adel,RED,TRIANGLE,GA,11/19/2013 18:20 +Mount Airy,,SPHERE,NC,11/19/2013 18:35 +Covington,RED,,TN,11/19/2013 19:00 +Jeffersonville,ORANGE,SPHERE,IN,11/19/2013 19:00 +San Diego,,FIREBALL,CA,11/19/2013 19:00 +Santa Fe,RED,,NM,11/19/2013 19:00 +Flowery Branch,,TRIANGLE,GA,11/19/2013 19:30 +Indian Trail,BLUE,LIGHT,NC,11/19/2013 19:30 +Laguna Niguel,ORANGE,RECTANGLE,CA,11/19/2013 19:50 +Albuquerque,,TRIANGLE,NM,11/19/2013 20:00 +Kansas City,,FIREBALL,MO,11/19/2013 20:00 +West Chester,ORANGE,CIRCLE,OH,11/19/2013 20:15 +Ocean View,,OTHER,DE,11/19/2013 20:18 +Kensington,ORANGE,FIREBALL,MD,11/19/2013 20:20 +Livingston,,OTHER,TX,11/19/2013 22:00 +Sun Lakes,,CIRCLE,AZ,11/20/2013 0:00 +Brookhaven,,LIGHT,MS,11/20/2013 4:00 +Carlsbad,,FIREBALL,NM,11/20/2013 4:40 +Benton City,,FLASH,WA,11/20/2013 5:45 +New Bedford,,LIGHT,MA,11/20/2013 8:00 +Fresno,,LIGHT,CA,11/20/2013 10:30 +Swansea,,LIGHT,MA,11/20/2013 16:20 +Granville,,FIREBALL,VT,11/20/2013 16:50 +Berlin,ORANGE,FIREBALL,VT,11/20/2013 16:55 +Lyndon,,FLASH,VT,11/20/2013 16:55 +Granville,,FIREBALL,VT,11/20/2013 17:00 +Woodbury,RED,LIGHT,VT,11/20/2013 17:00 +Montpelier,,LIGHT,VT,11/20/2013 17:30 +Randolph Center,ORANGE,CIRCLE,VT,11/20/2013 17:40 +Quechee,,FORMATION,VT,11/20/2013 17:45 +Bristol,ORANGE,OVAL,NH,11/20/2013 17:50 +Norwich,,LIGHT,VT,11/20/2013 17:50 +Bridgewater,,CIRCLE,MA,11/20/2013 18:00 +Bridgewater,,FIREBALL,MA,11/20/2013 18:00 +Kuparuk,BLUE,LIGHT,AK,11/20/2013 18:00 +Montpelier,YELLOW,OVAL,VT,11/20/2013 18:00 +Montpelier,YELLOW,OVAL,VT,11/20/2013 18:00 +New Hampton,,LIGHT,NH,11/20/2013 18:00 +Churchill,ORANGE,FIREBALL,PA,11/20/2013 18:15 +Braddock Hills,,FORMATION,PA,11/20/2013 18:20 +Macomb,,OVAL,MI,11/20/2013 18:24 +Windermere,,TRIANGLE,FL,11/20/2013 18:25 +Bridgewater,ORANGE,FORMATION,MA,11/20/2013 18:45 +Oakdale,RED GREEN,CIRCLE,PA,11/20/2013 19:45 +Hollister,BLUE,TRIANGLE,CA,11/20/2013 20:00 +Drums,,LIGHT,PA,11/20/2013 20:25 +Freedom,YELLOW,FIREBALL,NH,11/20/2013 21:00 +Nogales,ORANGE,LIGHT,AZ,11/20/2013 21:10 +Tacoma,,DISK,WA,11/20/2013 21:15 +Temple,,,PA,11/20/2013 21:30 +Wexford,ORANGE,CYLINDER,PA,11/20/2013 21:57 +Holden,,TRIANGLE,ME,11/20/2013 22:00 +Brighton,,TRIANGLE,MI,11/21/2013 0:30 +Lockport,,FIREBALL,NY,11/21/2013 6:25 +Honolulu,,SPHERE,HI,11/21/2013 11:00 +Boise,RED,,ID,11/21/2013 16:00 +Santa Barbara,,LIGHT,CA,11/21/2013 19:00 +Poway,ORANGE,LIGHT,CA,11/21/2013 19:20 +Philadelphia,,TRIANGLE,PA,11/21/2013 19:45 +Arroyo Seco,,FIREBALL,NM,11/21/2013 19:57 +West Linn,,OTHER,OR,11/21/2013 20:00 +Jefferson,,SPHERE,OR,11/21/2013 20:18 +Columbia,RED ORANGE,,SC,11/21/2013 20:25 +Monroe,ORANGE,FIREBALL,WA,11/21/2013 21:00 +Everett,,,WA,11/21/2013 21:10 +Coral Springs,,FIREBALL,FL,11/21/2013 22:00 +Mountville,,LIGHT,PA,11/21/2013 22:40 +Mukilteo,,,WA,11/21/2013 23:35 +Damascus,,VARIOUS,MD,11/22/2013 0:00 +Tampa,,CIRCLE,FL,11/22/2013 0:00 +Arapahoe,,CIRCLE,NC,11/22/2013 1:00 +Redmond,RED ORANGE,SPHERE,OR,11/22/2013 1:00 +Anacortes,,LIGHT,WA,11/22/2013 6:20 +Bremerton,RED BLUE,,WA,11/22/2013 6:50 +San Diego,,LIGHT,CA,11/22/2013 16:08 +Cecil Co.,BLUE,OVAL,MD,11/22/2013 16:45 +Durham,RED,LIGHT,NC,11/22/2013 17:30 +Kansas City,RED,OVAL,MO,11/22/2013 17:30 +Durham,RED,LIGHT,NC,11/22/2013 17:40 +Riverdale,,CYLINDER,MI,11/22/2013 18:30 +Salt Lake City,,VARIOUS,UT,11/22/2013 19:32 +Willard,ORANGE,CIRCLE,WI,11/22/2013 20:22 +Pemberton,RED,,NJ,11/22/2013 21:22 +Grand Rapids,,DIAMOND,MI,11/22/2013 21:35 +Winter Garden,,LIGHT,FL,11/22/2013 22:00 +Port Richey,,TRIANGLE,FL,11/22/2013 22:30 +New Port Richey,,,FL,11/22/2013 22:40 +Rome,,LIGHT,GA,11/22/2013 22:45 +Arlington,,TRIANGLE,TX,11/23/2013 0:30 +Ashland,BLUE,,ME,11/23/2013 1:30 +Sheboygan,,,WI,11/23/2013 2:00 +Warren,,DIAMOND,MI,11/23/2013 2:42 +Helena,GREEN,OVAL,MT,11/23/2013 11:11 +Sandpoint,,TRIANGLE,ID,11/23/2013 11:51 +Santa Paula,,,CA,11/23/2013 16:45 +Coventry,,OTHER,RI,11/23/2013 17:30 +Virginia Beach,,CHEVRON,VA,11/23/2013 18:15 +Sturgis,,LIGHT,MI,11/23/2013 18:22 +Pinole,,LIGHT,CA,11/23/2013 18:30 +Eustis,,CIRCLE,FL,11/23/2013 19:00 +Lake Wylie,,FIREBALL,SC,11/23/2013 19:00 +Surry,,LIGHT,VA,11/23/2013 19:00 +Lake Wylie,,LIGHT,SC,11/23/2013 19:05 +Spokane,,LIGHT,WA,11/23/2013 19:15 +Spokane,,LIGHT,WA,11/23/2013 19:15 +Swanzey,ORANGE,LIGHT,NH,11/23/2013 19:18 +South Daytona,,SPHERE,FL,11/23/2013 20:30 +Chandler,ORANGE,FIREBALL,AZ,11/23/2013 20:55 +Allentown,YELLOW,FORMATION,PA,11/23/2013 21:00 +Fayetteville,ORANGE,CHEVRON,AR,11/23/2013 21:00 +Palm Habor,ORANGE,SPHERE,FL,11/23/2013 21:45 +Albany,RED GREEN BLUE,CIRCLE,OR,11/23/2013 23:30 +Okeechobee,,LIGHT,FL,11/24/2013 9:00 +Antioch,ORANGE,CIRCLE,CA,11/24/2013 10:00 +San Jose,,OTHER,CA,11/24/2013 16:00 +Shelby,,SPHERE,NC,11/24/2013 16:25 +Bakersfield,RED,TRIANGLE,CA,11/24/2013 16:38 +Brownstown,,SPHERE,MI,11/24/2013 17:00 +Evansville,,DISK,IN,11/24/2013 18:00 +Worcester,,TRIANGLE,MA,11/24/2013 18:00 +Hyattsville,RED,CIRCLE,MD,11/24/2013 18:24 +Lake Stevens,ORANGE,VARIOUS,WA,11/24/2013 18:26 +Monrovia,,LIGHT,CA,11/24/2013 18:28 +Hanover Park,ORANGE,FIREBALL,IL,11/24/2013 18:35 +Williamstown,,OTHER,NJ,11/24/2013 18:38 +Caledonia,,TRIANGLE,NY,11/24/2013 19:00 +North Providence,,LIGHT,RI,11/24/2013 19:00 +Lake Forest,,DISK,IL,11/24/2013 19:50 +Ware,,CIRCLE,MA,11/24/2013 20:00 +Greenville,ORANGE,LIGHT,NC,11/24/2013 20:15 +Twin Falls,,TRIANGLE,ID,11/24/2013 21:11 +Bend,ORANGE YELLOW,LIGHT,OR,11/24/2013 22:00 +Bend,RED,LIGHT,OR,11/24/2013 22:00 +Burlington,,TRIANGLE,VT,11/24/2013 22:10 +Burlington,,VARIOUS,VT,11/24/2013 22:11 +Bend,ORANGE,CIRCLE,OR,11/24/2013 23:00 +Nashville,,TRIANGLE,TN,11/25/2013 1:40 +Springfield,RED BLUE,FORMATION,OR,11/25/2013 17:00 +Springfield,RED BLUE,CROSS,OR,11/25/2013 17:09 +Oviedo,RED GREEN,FORMATION,FL,11/25/2013 17:25 +Berwick,,TRIANGLE,PA,11/25/2013 17:44 +Springfield,,TRIANGLE,VA,11/25/2013 18:00 +Fayetteville,,FIREBALL,NC,11/25/2013 19:00 +Nampa,,LIGHT,ID,11/25/2013 19:00 +West Mifflin,ORANGE,FIREBALL,PA,11/25/2013 19:00 +Pompano Beach,,TRIANGLE,FL,11/25/2013 19:11 +Lake Oswego,RED,DIAMOND,OR,11/25/2013 19:30 +South Orange,ORANGE,FIREBALL,NJ,11/25/2013 21:45 +Brookings,,CIGAR,OR,11/25/2013 22:00 +Americus,,LIGHT,GA,11/25/2013 22:30 +Leawood,,CIGAR,KS,11/25/2013 23:20 +Durham,,FLASH,NC,11/26/2013 0:00 +Copake,,LIGHT,NY,11/26/2013 1:00 +Medford,RED BLUE,,NJ,11/26/2013 1:30 +Fort Mill,,CIRCLE,SC,11/26/2013 6:00 +Wichita,,LIGHT,KS,11/26/2013 6:15 +Amber,,DISK,OK,11/26/2013 7:30 +Yuma,,RECTANGLE,AZ,11/26/2013 15:00 +San Clemente,,LIGHT,CA,11/26/2013 17:15 +Corona,,LIGHT,CA,11/26/2013 17:40 +Danville,,LIGHT,IL,11/26/2013 17:45 +Fort Collins,,DISK,CO,11/26/2013 18:30 +Irvine,RED,CIGAR,CA,11/26/2013 19:00 +Wellsville,,LIGHT,UT,11/26/2013 19:00 +Apache Junction,,FIREBALL,AZ,11/26/2013 19:05 +Dennisport,RED YELLOW GREEN BLUE,DISK,MA,11/26/2013 20:09 +Dennisport,RED YELLOW GREEN BLUE,DISK,MA,11/26/2013 20:09 +Campbell,,TRIANGLE,OH,11/26/2013 20:24 +Burlington,,CIRCLE,NC,11/26/2013 20:30 +Port Neches,,LIGHT,TX,11/26/2013 22:00 +Lubbock,,,TX,11/26/2013 23:00 +Menan,,LIGHT,ID,11/27/2013 7:35 +Oklahoma City,,FLASH,OK,11/27/2013 13:11 +Hollister,,CIRCLE,CA,11/27/2013 16:00 +Franklin,,DIAMOND,TN,11/27/2013 17:00 +Old Hickory,,CIRCLE,TN,11/27/2013 18:00 +Owatonna,,VARIOUS,MN,11/27/2013 18:00 +Pueblo,,TRIANGLE,CO,11/27/2013 18:00 +Fredericksburg,,OTHER,VA,11/27/2013 19:00 +Owasso,,TRIANGLE,OK,11/27/2013 19:00 +Phoenix,,TRIANGLE,AZ,11/27/2013 19:10 +Tucson,,OTHER,AZ,11/27/2013 19:30 +Houston,,VARIOUS,MS,11/27/2013 19:35 +Lincoln,,,NE,11/27/2013 21:14 +Guntersville,,FORMATION,AL,11/27/2013 22:40 +Chandler,RED,OTHER,AZ,11/28/2013 0:00 +Holts Summit,,DISK,MO,11/28/2013 0:00 +Lometa,,TRIANGLE,TX,11/28/2013 0:00 +Polk City,,SPHERE,FL,11/28/2013 1:50 +Milwaukee,,SPHERE,WI,11/28/2013 6:15 +Quakertown,ORANGE,CIRCLE,PA,11/28/2013 7:35 +Newbury,,TEARDROP,MA,11/28/2013 14:00 +Boston,ORANGE,CIRCLE,MA,11/28/2013 15:45 +Zion National Park,,OVAL,UT,11/28/2013 17:13 +House Springs,ORANGE,CIRCLE,MO,11/28/2013 17:30 +Amory,,SPHERE,MS,11/28/2013 17:55 +Bowling Green,RED ORANGE,CIRCLE,KY,11/28/2013 18:00 +Chicago,RED BLUE,DISK,IL,11/28/2013 18:00 +Azusa,YELLOW,CIRCLE,CA,11/28/2013 18:05 +Tempe,,FORMATION,AZ,11/28/2013 18:10 +Vadnais Heights,,CIRCLE,MN,11/28/2013 18:10 +Albuquerque,ORANGE,LIGHT,NM,11/28/2013 18:30 +Bridgewater,,FLASH,MA,11/28/2013 18:30 +Knoxville,RED,LIGHT,TN,11/28/2013 18:30 +Manassas,,EGG,VA,11/28/2013 18:30 +New Canaan,RED ORANGE,LIGHT,CT,11/28/2013 18:30 +Prospect,,OTHER,CT,11/28/2013 18:35 +Amory,,CIRCLE,MS,11/28/2013 18:39 +Fairwood,,TRIANGLE,WA,11/28/2013 18:40 +Gardiner,,FIREBALL,NY,11/28/2013 18:52 +Myrtle Beach,ORANGE,TRIANGLE,SC,11/28/2013 19:00 +Pittsfield,,,MA,11/28/2013 19:00 +Temperance,,FORMATION,MI,11/28/2013 19:15 +Gilroy,,LIGHT,CA,11/28/2013 19:21 +Lafayette,,FORMATION,LA,11/28/2013 19:30 +Mukwonago,,LIGHT,WI,11/28/2013 19:40 +Hopkins,RED,FORMATION,MN,11/28/2013 19:45 +Lake Havasu City,,CIRCLE,AZ,11/28/2013 19:45 +Albuquerque,,VARIOUS,NM,11/28/2013 19:50 +Canton,,LIGHT,CT,11/28/2013 20:00 +McHenry,,FIREBALL,IL,11/28/2013 20:00 +Oak Harbor,RED YELLOW,LIGHT,OH,11/28/2013 20:00 +Spring Mount,ORANGE,OVAL,PA,11/28/2013 20:00 +Sobieski,ORANGE,FIREBALL,WI,11/28/2013 20:28 +Lewes,BLUE,LIGHT,DE,11/28/2013 20:30 +Westford,,CIRCLE,MA,11/28/2013 20:40 +Folly Beach,RED,SPHERE,SC,11/28/2013 20:45 +Villa Rica,,FORMATION,GA,11/28/2013 21:00 +Brick,,CIRCLE,NJ,11/28/2013 21:15 +Weslaco,RED ORANGE,CONE,TX,11/28/2013 21:20 +Humboldt,,FORMATION,IA,11/28/2013 21:25 +St. Augustine,,SPHERE,FL,11/28/2013 21:50 +Tybee Island,,LIGHT,GA,11/28/2013 22:01 +Pelham,RED YELLOW,TEARDROP,NH,11/28/2013 22:30 +Orlando,ORANGE,FIREBALL,FL,11/28/2013 22:40 +Concord,,,MA,11/28/2013 23:00 +Hammond,,OTHER,LA,11/28/2013 23:00 +Tustin,,DISK,CA,11/28/2013 23:30 +Cape Coral,,OTHER,FL,11/29/2013 4:45 +I-95 south,,OTHER,SC,11/29/2013 7:45 +North Providence,,FIREBALL,RI,11/29/2013 8:07 +Newark,,EGG,NJ,11/29/2013 11:00 +Kennewick,,TRIANGLE,WA,11/29/2013 18:15 +Marietta,,VARIOUS,GA,11/29/2013 18:30 +Millersville,,LIGHT,PA,11/29/2013 18:30 +Orange Park,RED ORANGE,CIRCLE,FL,11/29/2013 18:30 +Pawleys Island,,FIREBALL,SC,11/29/2013 18:45 +Frederick,ORANGE,FORMATION,MD,11/29/2013 18:50 +Urbana,ORANGE,CIRCLE,MD,11/29/2013 18:50 +Urbana,,DISK,MD,11/29/2013 18:50 +Lexington,,LIGHT,SC,11/29/2013 19:00 +Shelby,,CHEVRON,OH,11/29/2013 19:05 +Shelby,,FORMATION,OH,11/29/2013 19:35 +Baltimore,,TRIANGLE,MD,11/29/2013 20:00 +Coventry,,SPHERE,RI,11/29/2013 20:00 +Pomfret Center,ORANGE,SPHERE,CT,11/29/2013 20:00 +Maynard,,SPHERE,MA,11/29/2013 20:10 +Mercer,,FIREBALL,ME,11/29/2013 20:15 +Fall River,,LIGHT,MA,11/29/2013 20:30 +Webster,ORANGE,CIRCLE,TX,11/29/2013 20:55 +Clifton,,CHEVRON,NJ,11/29/2013 21:10 +Bloomfield,,CHEVRON,NJ,11/29/2013 22:20 +Medina,GREEN,CYLINDER,TN,11/29/2013 22:29 +Carmichael,RED,OVAL,CA,11/29/2013 23:00 +Verona,,TRIANGLE,NJ,11/29/2013 23:12 +Cranford,,CHEVRON,NJ,11/29/2013 23:30 +Mukilteo,,,WA,11/30/2013 1:53 +Lake Havasu City,,CHEVRON,AZ,11/30/2013 11:35 +Dunedin,,FIREBALL,FL,11/30/2013 16:00 +Little Chute,,SPHERE,WI,11/30/2013 16:40 +Stanford,,DISK,KY,11/30/2013 17:30 +Waukegan,,OVAL,IL,11/30/2013 17:30 +Marietta,,VARIOUS,GA,11/30/2013 17:43 +Hampstead,RED,SPHERE,NH,11/30/2013 18:00 +Salem,,RECTANGLE,OR,11/30/2013 18:00 +Coweta,,OTHER,OK,11/30/2013 18:06 +Oakley,,FIREBALL,CA,11/30/2013 18:30 +Oakley,RED,FIREBALL,CA,11/30/2013 18:30 +Bridgewater,,FIREBALL,NJ,11/30/2013 19:00 +Douglasville,,OVAL,GA,11/30/2013 19:00 +Wilmington,RED,LIGHT,OH,11/30/2013 19:00 +Arlington,ORANGE,,IA,11/30/2013 20:00 +Houston,,LIGHT,TX,11/30/2013 20:00 +Jupiter,,,FL,11/30/2013 20:00 +Tucson,,,AZ,11/30/2013 20:00 +Milwaukie,,FIREBALL,OR,11/30/2013 20:02 +Lake St. Louis,RED,FORMATION,MO,11/30/2013 20:10 +Lake St. Louis,RED,FORMATION,MO,11/30/2013 20:10 +Pinellas Park,,FLASH,FL,11/30/2013 20:15 +Moore,,OTHER,OK,11/30/2013 20:20 +Oklahoma City,,SPHERE,OK,11/30/2013 20:20 +Lancaster,,,PA,11/30/2013 20:30 +Tucson,,OTHER,AZ,11/30/2013 20:30 +Royal Palm Beach,ORANGE,CIRCLE,FL,11/30/2013 20:45 +Louisville,,TRIANGLE,KY,11/30/2013 20:57 +Lafayette,,CYLINDER,IN,11/30/2013 21:00 +Sag Harbor,,FIREBALL,NY,11/30/2013 21:10 +Missoula,,OVAL,MT,11/30/2013 21:20 +Ashland,ORANGE,FIREBALL,MA,11/30/2013 21:30 +Hay Market,,LIGHT,VA,11/30/2013 21:30 +Haymarket,,LIGHT,VA,11/30/2013 21:30 +Kearneysville,ORANGE,FIREBALL,WV,11/30/2013 22:30 +Surf City,,SPHERE,NC,11/30/2013 22:48 +Pocatello,,LIGHT,ID,11/30/2013 23:00 +Arnold,,CIRCLE,MD,12/1/2013 2:25 +Wichita,,RECTANGLE,KS,12/1/2013 4:30 +Mobile,,SPHERE,AL,12/1/2013 14:30 +Midlothian,,DIAMOND,VA,12/1/2013 17:45 +Lake Ariel,,FIREBALL,PA,12/1/2013 18:00 +Sherman Oaks,,LIGHT,CA,12/1/2013 18:30 +Indianapolis,,,IN,12/1/2013 19:00 +Oklahoma City,,CIRCLE,OK,12/1/2013 19:37 +Corpus Christi,RED ORANGE,SPHERE,TX,12/1/2013 20:00 +New Hope,,VARIOUS,PA,12/1/2013 20:00 +Pueblo,,OTHER,CO,12/1/2013 20:00 +Moore,,FORMATION,OK,12/1/2013 20:15 +Bellingham,YELLOW,LIGHT,WA,12/1/2013 22:00 +Franklin,,FLASH,MI,12/1/2013 22:10 +Great Falls,ORANGE,CIRCLE,MT,12/1/2013 23:45 +Lillington,GREEN,CIRCLE,NC,12/2/2013 3:00 +Oakley,,CHEVRON,CA,12/2/2013 5:30 +Wheeling,,,IL,12/2/2013 5:30 +Orlando,,FIREBALL,FL,12/2/2013 5:51 +Portland,,LIGHT,OR,12/2/2013 17:30 +Titusville,BLUE,CIRCLE,FL,12/2/2013 18:00 +Antioch,,CIRCLE,CA,12/2/2013 19:00 +La Mesa,,SPHERE,CA,12/2/2013 19:00 +Thousand Oaks,,VARIOUS,CA,12/2/2013 19:22 +Los Angeles,,FIREBALL,CA,12/2/2013 20:00 +Louisville,,FIREBALL,KY,12/2/2013 20:00 +Columbus,ORANGE GREEN,OTHER,NM,12/2/2013 20:06 +Austin,GREEN,FIREBALL,TX,12/2/2013 22:10 +Cincinnati,,LIGHT,OH,12/2/2013 22:50 +Port Huron,,SPHERE,MI,12/3/2013 1:45 +Kaysville,,SPHERE,UT,12/3/2013 4:42 +Dripping Springs,,CIGAR,TX,12/3/2013 10:00 +Gainesville,,LIGHT,FL,12/3/2013 17:00 +Kissimme,,CIRCLE,FL,12/3/2013 17:00 +Richmond,RED,LIGHT,VA,12/3/2013 17:15 +Lehigh,,FIREBALL,FL,12/3/2013 17:30 +Lehigh Acres,,FIREBALL,FL,12/3/2013 17:30 +Glen St. Mary,,FIREBALL,FL,12/3/2013 17:35 +Lake Worth,,FIREBALL,FL,12/3/2013 17:40 +Lake Worth,,FIREBALL,FL,12/3/2013 17:40 +Lakeland,,LIGHT,FL,12/3/2013 17:40 +Pompano Beach,,VARIOUS,FL,12/3/2013 17:40 +Lake Worth,ORANGE,FORMATION,FL,12/3/2013 17:44 +Trinity,,FIREBALL,FL,12/3/2013 17:50 +Royal Palm Beach,,TEARDROP,FL,12/3/2013 18:00 +Burtonsville,BLUE,LIGHT,MD,12/3/2013 18:15 +Sebastian,,FIREBALL,FL,12/3/2013 18:42 +Lehigh Acres,,FIREBALL,FL,12/3/2013 18:45 +Arlington,,SPHERE,TX,12/3/2013 19:00 +Lawrence,,LIGHT,KS,12/3/2013 19:10 +Captiva,ORANGE,FIREBALL,FL,12/3/2013 19:15 +Clermont,,CIRCLE,FL,12/3/2013 19:45 +Tucson,ORANGE,LIGHT,AZ,12/3/2013 20:00 +Talent,,,OR,12/3/2013 21:45 +Medford,,CIRCLE,OR,12/3/2013 22:00 +Raleigh,,LIGHT,NC,12/4/2013 1:00 +Jacksonville,,CIGAR,FL,12/4/2013 10:30 +Federal Way,,,WA,12/4/2013 11:15 +Woodbury,,OVAL,CT,12/4/2013 16:05 +Hoffman estates,,FLASH,IL,12/4/2013 16:30 +Dudley,,CIRCLE,MA,12/4/2013 17:30 +Clinton,,DIAMOND,IN,12/4/2013 19:00 +Tucson,,FIREBALL,AZ,12/4/2013 19:00 +Tucson,ORANGE,LIGHT,AZ,12/4/2013 19:00 +Washington,,,MI,12/4/2013 19:00 +Port Charlotte,,FORMATION,FL,12/4/2013 19:30 +Valley Head,RED GREEN,LIGHT,WV,12/4/2013 21:05 +Coral Gables,,,FL,12/4/2013 23:00 +Reno,,TRIANGLE,NV,12/5/2013 6:00 +Simi Valley,,SPHERE,CA,12/5/2013 8:00 +Elkart,,TRIANGLE,IN,12/5/2013 16:00 +Ketchikan,,LIGHT,AK,12/5/2013 17:04 +Porum,,OTHER,OK,12/5/2013 18:00 +Porum,,OTHER,OK,12/5/2013 18:00 +Brooklyn Center,,DISK,MN,12/5/2013 18:40 +Davenport,ORANGE,,FL,12/5/2013 19:00 +Vancouver,,CIRCLE,WA,12/5/2013 20:00 +Pomona,ORANGE,SPHERE,CA,12/5/2013 20:10 +Palm Springs,,CIRCLE,FL,12/5/2013 21:30 +Port Ludlow,,,WA,12/5/2013 23:52 +Leland,,VARIOUS,NC,12/6/2013 0:27 +Tulsa,,CIRCLE,OK,12/6/2013 1:30 +American Fork,GREEN BLUE,,UT,12/6/2013 2:00 +Lake Bluff,YELLOW,CIRCLE,IL,12/6/2013 6:40 +Jacksonville,,FLASH,FL,12/6/2013 8:34 +Laveen,,FIREBALL,AZ,12/6/2013 16:15 +McMinnville,,,TN,12/6/2013 17:05 +Solana Beach,ORANGE,LIGHT,CA,12/6/2013 18:15 +Aiea,,CIRCLE,HI,12/6/2013 19:00 +Port Charlotte,,CIRCLE,FL,12/6/2013 19:15 +Wailuku,,LIGHT,HI,12/6/2013 19:30 +Cinti,,TRIANGLE,OH,12/6/2013 19:35 +Salt Lake City,ORANGE,LIGHT,UT,12/6/2013 20:00 +The Colony,GREEN,CIRCLE,TX,12/6/2013 20:00 +Unionville,RED,CONE,TN,12/6/2013 20:00 +Indianapolis,,,IN,12/6/2013 20:30 +La Jolla,YELLOW,OTHER,CA,12/6/2013 21:00 +Panama City Beach,ORANGE,VARIOUS,FL,12/6/2013 21:00 +Largo,,CIRCLE,FL,12/6/2013 21:45 +Coral Springs,RED,,FL,12/6/2013 22:20 +Daly City,BLUE,,CA,12/6/2013 22:30 +Kingston,RED,LIGHT,NY,12/6/2013 22:30 +Portland,,LIGHT,OR,12/6/2013 22:40 +Watchung,,OVAL,NJ,12/7/2013 0:30 +Laramie,ORANGE,SPHERE,WY,12/7/2013 1:00 +Laguna Beach,,CIRCLE,CA,12/7/2013 2:22 +Laguna Beach,,CIRCLE,CA,12/7/2013 2:22 +Virginia,,CIRCLE,VA,12/7/2013 2:30 +Charleston,,OTHER,SC,12/7/2013 2:45 +Boca Raton,,FIREBALL,FL,12/7/2013 7:00 +Summerville,,CIRCLE,SC,12/7/2013 7:16 +Grand Rapids,,CIRCLE,MI,12/7/2013 10:00 +New ort richey,,FIREBALL,FL,12/7/2013 11:30 +Groton,,LIGHT,MA,12/7/2013 16:00 +Olympia,,OTHER,WA,12/7/2013 16:00 +Miami,,FIREBALL,FL,12/7/2013 18:30 +Rutland,ORANGE,CIRCLE,VT,12/7/2013 18:30 +Vacaville,,SPHERE,CA,12/7/2013 18:30 +Bonita Springs,ORANGE,LIGHT,FL,12/7/2013 18:45 +Oroville,RED,FORMATION,CA,12/7/2013 19:00 +Mertztown,,FIREBALL,PA,12/7/2013 19:15 +Natick,RED GREEN,,MA,12/7/2013 19:30 +Levittown,,LIGHT,PA,12/7/2013 20:00 +Jacksonville,,FLASH,FL,12/7/2013 20:03 +Gilbert,,LIGHT,AZ,12/7/2013 20:30 +Garden Grove,,LIGHT,CA,12/7/2013 20:45 +Roscoe,,CIRCLE,IL,12/7/2013 21:15 +Yuba City,ORANGE,CIRCLE,CA,12/7/2013 21:24 +Jupiter,RED,DIAMOND,FL,12/7/2013 21:40 +Napa,,LIGHT,CA,12/7/2013 22:00 +Fayetteville,,CIRCLE,NC,12/7/2013 23:14 +Tampa,,CIRCLE,FL,12/8/2013 10:25 +Felton,,DISK,PA,12/8/2013 18:00 +Hillsboro,ORANGE,,OR,12/8/2013 18:20 +Satellite Beach,,FIREBALL,FL,12/8/2013 18:30 +Henderson,,TRIANGLE,NV,12/8/2013 19:20 +Holts Summit,,LIGHT,MO,12/8/2013 19:30 +Sweeny,BLUE,SPHERE,TX,12/8/2013 20:00 +Homosassa,,LIGHT,FL,12/8/2013 20:30 +Wildomar,,CIRCLE,CA,12/8/2013 21:30 +Port Orchard,ORANGE,FIREBALL,WA,12/8/2013 22:46 +Laconia,,OVAL,NH,12/9/2013 4:11 +Thornton,RED ORANGE,CIRCLE,CO,12/9/2013 6:16 +Grand Forks,,TRIANGLE,ND,12/9/2013 11:45 +Waukegan,,SPHERE,IL,12/9/2013 15:00 +Benton,,CIGAR,KY,12/9/2013 17:15 +Bristol,,CIRCLE,WI,12/9/2013 17:45 +Mount Vernon,,RECTANGLE,OH,12/9/2013 18:00 +Marietta,,EGG,OH,12/9/2013 18:20 +Buffalo,,LIGHT,WY,12/9/2013 18:30 +Fremont,,LIGHT,CA,12/9/2013 19:00 +Springfield,,TRIANGLE,IL,12/9/2013 19:48 +Gresham,,OTHER,OR,12/9/2013 19:50 +Edison,BLUE,SPHERE,NJ,12/9/2013 20:00 +North Pole,ORANGE,FLASH,AK,12/9/2013 21:00 +Redondo Beach,YELLOW,VARIOUS,CA,12/9/2013 21:00 +Mobile,,OTHER,AL,12/9/2013 23:15 +Evans,,CIRCLE,GA,12/10/2013 8:50 +Spring Hill,,LIGHT,TN,12/10/2013 17:00 +Abbeville,,LIGHT,LA,12/10/2013 18:00 +Bridgeport,,OVAL,CT,12/10/2013 18:00 +Hartland,RED GREEN,SPHERE,MI,12/10/2013 18:00 +Grovetown,ORANGE,,GA,12/10/2013 18:30 +Lawton,,TRIANGLE,OK,12/10/2013 18:30 +Great Falls,,,MT,12/10/2013 19:00 +Phoenix,,RECTANGLE,AZ,12/10/2013 19:08 +Yorktown,ORANGE,FIREBALL,VA,12/10/2013 19:55 +Belton,ORANGE,LIGHT,MO,12/10/2013 20:00 +Belton,ORANGE,SPHERE,MO,12/10/2013 20:00 +Overland Park,,LIGHT,KS,12/10/2013 20:00 +Orlando,YELLOW,LIGHT,FL,12/10/2013 20:05 +Goodyear,RED,LIGHT,AZ,12/10/2013 21:00 +Zim,,CIRCLE,MN,12/10/2013 22:00 +Metairie,ORANGE,LIGHT,LA,12/10/2013 22:20 +Fairbanks,ORANGE,,AK,12/10/2013 23:15 +Anchorage,YELLOW,LIGHT,AK,12/10/2013 23:50 +Bemidji,ORANGE YELLOW GREEN BLUE,DIAMOND,MN,12/11/2013 3:00 +Anchorage,,FIREBALL,AK,12/11/2013 8:25 +Brea,,OTHER,CA,12/11/2013 16:45 +Dane,,FORMATION,WI,12/11/2013 16:45 +Reno,,OVAL,NV,12/11/2013 16:50 +West Ossipee,ORANGE,FORMATION,NH,12/11/2013 16:54 +Chocorua,,FORMATION,NH,12/11/2013 17:00 +Mukwonago,,LIGHT,WI,12/11/2013 17:30 +Larsen,RED,TEARDROP,WI,12/11/2013 17:45 +Birmingham,BLUE,CYLINDER,MI,12/11/2013 18:00 +Powell,,CHEVRON,WY,12/11/2013 18:25 +Edmond,,OTHER,OK,12/11/2013 19:00 +Oak Harbor,ORANGE,,WA,12/11/2013 19:45 +Covina,,OVAL,CA,12/11/2013 20:29 +Baltimore,,OTHER,MD,12/12/2013 0:00 +Denver,,SPHERE,CO,12/12/2013 0:00 +North Huntingdon,,TRIANGLE,PA,12/12/2013 0:07 +Rio Arriba County,,CIRCLE,NM,12/12/2013 1:30 +Roseburg,,LIGHT,OR,12/12/2013 5:00 +Charlotte,,VARIOUS,NC,12/12/2013 6:15 +Petal,,LIGHT,MS,12/12/2013 7:30 +San Jose,,FORMATION,CA,12/12/2013 15:45 +Marion,,LIGHT,MA,12/12/2013 16:20 +Roseburg,,FORMATION,OR,12/12/2013 17:00 +Denver,,SPHERE,CO,12/12/2013 18:00 +Lakewood,,RECTANGLE,CO,12/12/2013 18:15 +Henderson,,SPHERE,CO,12/12/2013 18:25 +La Porte,,CIRCLE,IN,12/12/2013 18:26 +Boise,ORANGE,LIGHT,ID,12/12/2013 19:00 +Germantown,,LIGHT,OH,12/12/2013 19:00 +Garden Grove,,LIGHT,CA,12/12/2013 19:30 +Moncks Corner,ORANGE,LIGHT,SC,12/12/2013 19:30 +Cartersville,,LIGHT,GA,12/12/2013 19:50 +Canyon Lake,ORANGE,CIRCLE,CA,12/12/2013 20:00 +Dearing,ORANGE,FIREBALL,GA,12/12/2013 20:30 +Milwaukee,RED,,WI,12/12/2013 21:00 +Grovetown,ORANGE,LIGHT,GA,12/12/2013 22:30 +North Pole,ORANGE,FLASH,AK,12/12/2013 22:30 +Acworth,,FIREBALL,GA,12/13/2013 0:15 +Port Charlotte,,OTHER,FL,12/13/2013 2:00 +Princeton,YELLOW,CIRCLE,WV,12/13/2013 3:30 +Edmond,ORANGE,TRIANGLE,OK,12/13/2013 5:15 +Meriden,,CIGAR,CT,12/13/2013 5:45 +Madison,,LIGHT,IL,12/13/2013 6:40 +Pleasantville,,DIAMOND,NY,12/13/2013 16:00 +Gloucester,ORANGE,CIRCLE,MA,12/13/2013 17:30 +Wakefield,,CIRCLE,MA,12/13/2013 17:30 +Fairlee,,,VT,12/13/2013 17:45 +Daly City,,LIGHT,CA,12/13/2013 17:50 +Potsdam,,FIREBALL,NY,12/13/2013 18:00 +Whitman,ORANGE,CIRCLE,MA,12/13/2013 18:10 +Hartford,,CIRCLE,CT,12/13/2013 18:30 +Lakewood,,LIGHT,CO,12/13/2013 18:30 +Bushnell,GREEN BLUE,LIGHT,FL,12/13/2013 19:00 +Concord,ORANGE,FIREBALL,VT,12/13/2013 19:00 +Largo,RED,SPHERE,FL,12/13/2013 19:00 +Palm Harbor,,LIGHT,FL,12/13/2013 19:00 +Saint Petersburg,,FIREBALL,FL,12/13/2013 19:00 +Palm Harbor,GREEN,LIGHT,FL,12/13/2013 19:08 +Naples,GREEN,LIGHT,FL,12/13/2013 19:20 +St. Augustine,,TRIANGLE,FL,12/13/2013 19:30 +Longmont,,FIREBALL,CO,12/13/2013 19:31 +San Francisco,,DIAMOND,CA,12/13/2013 19:45 +Longmont,,FIREBALL,CO,12/13/2013 19:59 +Bemidji,,LIGHT,MN,12/13/2013 20:00 +Boise,ORANGE,SPHERE,ID,12/13/2013 20:00 +Longmont,,FIREBALL,CO,12/13/2013 20:00 +Columbus,,FIREBALL,OH,12/13/2013 21:00 +Springfield,,LIGHT,OR,12/13/2013 22:15 +Prescott,,DISK,AZ,12/13/2013 22:30 +Madison,,,WI,12/13/2013 23:00 +West Palm Beach,,CIRCLE,FL,12/13/2013 23:00 +Ontario,,FIREBALL,CA,12/14/2013 5:00 +Floral City,,CIGAR,FL,12/14/2013 13:30 +Maricopa,,CIRCLE,AZ,12/14/2013 16:00 +Sterling,RED,RECTANGLE,CO,12/14/2013 18:00 +Sumpter,,LIGHT,OR,12/14/2013 18:00 +Anchorage,,FLASH,AK,12/14/2013 18:50 +Santa Maria,,FIREBALL,CA,12/14/2013 19:40 +Purcell,,SPHERE,OK,12/14/2013 20:00 +Phoenix,,FIREBALL,AZ,12/14/2013 20:02 +Jacksonville,,CIRCLE,FL,12/14/2013 21:00 +Wellington,ORANGE,LIGHT,FL,12/14/2013 21:35 +Miami,,LIGHT,FL,12/14/2013 21:45 +Foreston,,OTHER,MN,12/15/2013 1:07 +Austin,,LIGHT,TX,12/15/2013 16:10 +Ojai,,CYLINDER,CA,12/15/2013 16:30 +Worcester,,OTHER,MA,12/15/2013 17:00 +Venice,,FIREBALL,FL,12/15/2013 18:15 +Sacramento,ORANGE,,CA,12/15/2013 18:30 +Rosamond,,LIGHT,CA,12/15/2013 19:11 +Escondido,,SPHERE,CA,12/15/2013 19:17 +Fort Worth,,LIGHT,TX,12/15/2013 20:00 +Stillwater,RED,LIGHT,OK,12/15/2013 21:30 +Franklin,,LIGHT,WI,12/15/2013 21:45 +Aberdeen,,CYLINDER,NJ,12/15/2013 21:50 +Danville,,OVAL,VT,12/15/2013 22:30 +Sacramento,RED,VARIOUS,CA,12/15/2013 22:30 +Sagamore Hills,,FORMATION,OH,12/16/2013 1:00 +Fayetteville,RED,,NC,12/16/2013 5:40 +Corner,,CIRCLE,AL,12/16/2013 6:30 +Warrinhton,,LIGHT,PA,12/16/2013 8:00 +Ocoee,ORANGE GREEN,LIGHT,FL,12/16/2013 8:45 +Memphis,,,TN,12/16/2013 14:30 +Marksville,,DISK,LA,12/16/2013 19:00 +Laurel,,,DE,12/16/2013 19:05 +Morrisville,,FORMATION,NC,12/16/2013 19:20 +Coupeville,ORANGE,SPHERE,WA,12/16/2013 21:00 +Hilo,,OVAL,HI,12/16/2013 23:00 +Aventura,,LIGHT,FL,12/17/2013 6:50 +San Juan Capistrano,,SPHERE,CA,12/17/2013 7:30 +Brunswick,,EGG,NC,12/17/2013 13:30 +Burke,,TRIANGLE,VA,12/17/2013 15:00 +Port Richey,,,FL,12/17/2013 15:09 +Las Vegas,,TEARDROP,NV,12/17/2013 17:00 +Miami,,CYLINDER,FL,12/17/2013 17:00 +Seminole,,LIGHT,FL,12/17/2013 17:45 +Minnetonka,,DISK,MN,12/17/2013 18:00 +Cadiz,,OTHER,KY,12/17/2013 18:16 +Port Charlotte,,DISK,FL,12/17/2013 19:48 +Kewaunee,,FORMATION,WI,12/17/2013 20:00 +San Jose,ORANGE,LIGHT,CA,12/17/2013 20:00 +Seminole,,VARIOUS,FL,12/17/2013 20:30 +Woodstock,,FIREBALL,GA,12/17/2013 21:22 +Perry,GREEN,FIREBALL,GA,12/17/2013 21:30 +Enfield,,CIGAR,CT,12/18/2013 0:25 +Albuquerque,,,NM,12/18/2013 1:00 +Ainsworth,,TRIANGLE,IA,12/18/2013 4:00 +Alexandria,,FIREBALL,VA,12/18/2013 16:20 +Mitchell,,FORMATION,SD,12/18/2013 18:00 +San Jacinto,,FORMATION,CA,12/18/2013 18:00 +Lancaster,GREEN,CYLINDER,CA,12/18/2013 18:15 +Runnemede,,TRIANGLE,NJ,12/18/2013 18:15 +Butler,,FIREBALL,PA,12/18/2013 19:00 +St. Louis,,LIGHT,MO,12/18/2013 19:00 +Waynesboro,,FIREBALL,GA,12/18/2013 19:15 +Myrtle Beach,,LIGHT,SC,12/18/2013 21:00 +Ames,,VARIOUS,IA,12/18/2013 21:45 +Kihei,ORANGE,FIREBALL,HI,12/18/2013 22:15 +East Longmeadow,,CIRCLE,MA,12/18/2013 23:00 +Santa Rosa,,LIGHT,CA,12/18/2013 23:40 +Daphne,,,AL,12/19/2013 0:00 +Orlando,,,FL,12/19/2013 3:00 +Belmont,,LIGHT,NC,12/19/2013 5:10 +Anchorage,RED,CIRCLE,AK,12/19/2013 16:00 +Farmington,,OTHER,MO,12/19/2013 17:25 +Bowling Green,,RECTANGLE,KY,12/19/2013 17:55 +Goodyear,ORANGE,CIRCLE,AZ,12/19/2013 18:00 +Trinity,,LIGHT,FL,12/19/2013 18:00 +Methuen,ORANGE,SPHERE,MA,12/19/2013 18:30 +Stockton,RED,LIGHT,CA,12/19/2013 18:30 +Myrtle Beach,,LIGHT,SC,12/19/2013 18:35 +Rio Rico,,LIGHT,AZ,12/19/2013 18:50 +North Myrtle Beach,,FLASH,SC,12/19/2013 19:00 +San Anselmo,ORANGE,CIRCLE,CA,12/19/2013 19:30 +Salt Lake City,GREEN,FLASH,UT,12/19/2013 20:00 +Santa Paula,ORANGE,LIGHT,CA,12/19/2013 20:00 +Venice,RED,OVAL,FL,12/19/2013 20:00 +Lacey,,OVAL,WA,12/19/2013 20:30 +Shallotte,ORANGE,FLASH,NC,12/19/2013 20:30 +Brecksville,,CIRCLE,OH,12/19/2013 22:30 +Alabaster,,FIREBALL,AL,12/20/2013 17:00 +Lakewood Ranch,,TRIANGLE,FL,12/20/2013 19:10 +North Port,RED,FORMATION,FL,12/20/2013 19:15 +Hudsonville,,FLASH,MI,12/20/2013 19:45 +San Tan Valley,ORANGE,LIGHT,AZ,12/20/2013 20:30 +Bushkill,,LIGHT,PA,12/20/2013 20:40 +Feeding Hills,RED,FIREBALL,MA,12/20/2013 22:00 +West Jordan,BLUE,FLASH,UT,12/20/2013 22:00 +Tampa,,LIGHT,FL,12/20/2013 22:50 +Kihei,RED GREEN,SPHERE,HI,12/21/2013 4:15 +Salem,,TRIANGLE,OR,12/21/2013 6:00 +San Antonio,,DISK,TX,12/21/2013 16:46 +Portland,,FLASH,OR,12/21/2013 17:30 +Palacios,,CYLINDER,TX,12/21/2013 18:00 +Franklinville,,FIREBALL,NJ,12/21/2013 18:04 +Seattle,,OVAL,WA,12/21/2013 18:43 +Burbank,,LIGHT,CA,12/21/2013 19:00 +Portland,ORANGE,OVAL,OR,12/21/2013 19:00 +Richmond,,TRIANGLE,CA,12/21/2013 20:00 +Kernersville,RED,LIGHT,NC,12/21/2013 20:15 +Sparks,BLUE,CIRCLE,NV,12/21/2013 20:50 +San Tan Valley,,RECTANGLE,AZ,12/21/2013 21:00 +Orem,ORANGE,LIGHT,UT,12/21/2013 21:15 +Keaton Beach,,FLASH,FL,12/21/2013 23:30 +San Rafael,,LIGHT,CA,12/22/2013 0:30 +Oakland,RED,TRIANGLE,CA,12/22/2013 1:00 +San Tan Valley,,OVAL,AZ,12/22/2013 2:30 +Virginia Beach,,EGG,VA,12/22/2013 8:45 +Soldotna,,LIGHT,AK,12/22/2013 18:00 +Farmington,,SPHERE,NM,12/22/2013 19:00 +Burton,RED BLUE,FLASH,MI,12/22/2013 19:01 +Rathdrum,ORANGE,LIGHT,ID,12/22/2013 20:15 +Springfield,,LIGHT,OR,12/22/2013 20:30 +Tucson,,FORMATION,AZ,12/22/2013 20:39 +Tucson,RED ORANGE,FORMATION,AZ,12/22/2013 20:39 +Jacksonville,,FIREBALL,FL,12/22/2013 21:00 +North Palm Beach,,FIREBALL,FL,12/22/2013 21:05 +Sapulpa,,LIGHT,OK,12/22/2013 21:30 +Cape Coral,ORANGE,CIRCLE,FL,12/23/2013 7:00 +Post Falls,,LIGHT,ID,12/23/2013 17:30 +San Jose,,LIGHT,CA,12/23/2013 17:50 +Waldorf,,TRIANGLE,MD,12/23/2013 18:30 +Rexburg,BLUE,FLASH,ID,12/23/2013 18:45 +Marietta,ORANGE,LIGHT,MN,12/23/2013 19:00 +Orange,,CIRCLE,CA,12/23/2013 19:30 +Rexburg,RED GREEN,FLASH,ID,12/23/2013 19:30 +Apache Junction,ORANGE,FIREBALL,AZ,12/23/2013 20:00 +Layton to Farmington,,,UT,12/23/2013 20:00 +Nashville,,TRIANGLE,TN,12/23/2013 20:00 +Saint Cloud,,FIREBALL,FL,12/23/2013 20:20 +East Brunswick,,LIGHT,NJ,12/23/2013 20:30 +Queen Creek,,LIGHT,AZ,12/23/2013 20:30 +Wasilla,,FIREBALL,AK,12/23/2013 21:15 +Toledo,,LIGHT,WA,12/23/2013 21:38 +Kipahulu,,CYLINDER,HI,12/23/2013 21:58 +Anchorage,,LIGHT,AK,12/23/2013 22:11 +Anchorage,RED,CIRCLE,AK,12/23/2013 22:22 +Roanoke,,OTHER,VA,12/23/2013 23:30 +Austintown,,TRIANGLE,OH,12/24/2013 0:00 +Watsonville,ORANGE,CHEVRON,CA,12/24/2013 0:15 +Holts Summit,,DISK,MO,12/24/2013 0:47 +Norwalk,,CIRCLE,CT,12/24/2013 7:45 +Columbia City,,CYLINDER,IN,12/24/2013 9:00 +Oceanside,,FIREBALL,CA,12/24/2013 10:50 +Bellingham,,DISK,WA,12/24/2013 13:30 +Methuen,,LIGHT,MA,12/24/2013 16:30 +Laguna Woods,,CIRCLE,CA,12/24/2013 17:00 +Denver,ORANGE,OTHER,CO,12/24/2013 17:30 +Providence,,FIREBALL,RI,12/24/2013 17:45 +Rock,,VARIOUS,MI,12/24/2013 17:45 +Metro Detroit,ORANGE,,MI,12/24/2013 18:00 +Saratoga,,SPHERE,CA,12/24/2013 18:00 +San Tan Valley,,FIREBALL,AZ,12/24/2013 18:25 +Southbury,,OVAL,CT,12/24/2013 18:28 +Bethel Park,RED,CIRCLE,PA,12/24/2013 19:00 +Caldwell,ORANGE,CIRCLE,ID,12/24/2013 19:00 +Fayetteville,ORANGE,FORMATION,AR,12/24/2013 19:00 +Clinton Twp,,TRIANGLE,MI,12/24/2013 19:03 +Riverdale,,FLASH,UT,12/24/2013 19:11 +Montpelier,ORANGE,CYLINDER,VT,12/24/2013 19:15 +Glendale,,FORMATION,AZ,12/24/2013 19:25 +Appleton,,SPHERE,WI,12/24/2013 19:35 +Boise,RED,CIRCLE,ID,12/24/2013 19:45 +Pullman,,CIRCLE,WA,12/24/2013 20:15 +Kewaskum,ORANGE,FORMATION,WI,12/24/2013 20:30 +Seattle,,SPHERE,WA,12/24/2013 20:40 +Greensboro,,SPHERE,NC,12/24/2013 20:45 +Selinsgrove,RED,LIGHT,PA,12/24/2013 20:50 +Athena,,CROSS,OR,12/24/2013 21:00 +Boise,RED,SPHERE,ID,12/24/2013 21:00 +Flint,,LIGHT,MI,12/24/2013 21:00 +Yuma,,CROSS,AZ,12/24/2013 21:00 +Bristol,,DIAMOND,CT,12/24/2013 21:10 +Albuquerque,,VARIOUS,NM,12/24/2013 21:15 +Rutland,,CIRCLE,MA,12/24/2013 21:15 +American Fork,RED ORANGE,LIGHT,UT,12/24/2013 21:20 +Albuquerque,,CONE,NM,12/24/2013 21:30 +Crestview,RED ORANGE,SPHERE,FL,12/24/2013 21:30 +Lynn,ORANGE,FORMATION,MA,12/24/2013 21:30 +Post Falls,ORANGE,CIRCLE,ID,12/24/2013 22:00 +Spring,,,TX,12/24/2013 22:00 +Garden Grove,RED,TEARDROP,CA,12/24/2013 22:15 +Jacksonville,RED,CIRCLE,FL,12/24/2013 22:15 +New Orleans,ORANGE,SPHERE,LA,12/24/2013 22:15 +Covington,ORANGE,CIRCLE,LA,12/24/2013 22:30 +Rapid City,,CYLINDER,SD,12/24/2013 23:00 +Valrico,,LIGHT,FL,12/24/2013 23:00 +Slidell,ORANGE,LIGHT,LA,12/24/2013 23:20 +Mesa,ORANGE,,AZ,12/24/2013 23:25 +Culver City,RED,OTHER,CA,12/24/2013 23:30 +Vero Beach,,FIREBALL,FL,12/24/2013 23:35 +San Diego,,CIRCLE,CA,12/24/2013 23:40 +Apple Valley,ORANGE,CIRCLE,MN,12/25/2013 0:00 +Los Angeles,,,CA,12/25/2013 0:30 +Portsmouth,ORANGE,LIGHT,OH,12/25/2013 0:30 +Miami,RED ORANGE,FIREBALL,FL,12/25/2013 0:45 +St. Louis,RED GREEN BLUE,TRIANGLE,MO,12/25/2013 5:00 +Lancaster,ORANGE,LIGHT,PA,12/25/2013 6:35 +Port Charlotte,,SPHERE,FL,12/25/2013 7:00 +Grangeville,ORANGE,SPHERE,ID,12/25/2013 7:10 +Bear,,CIRCLE,DE,12/25/2013 7:55 +Keyport,,OTHER,NJ,12/25/2013 8:30 +Coral Springs,ORANGE,LIGHT,FL,12/25/2013 10:00 +Fredericksburg,ORANGE,EGG,VA,12/25/2013 16:25 +San Jose,,LIGHT,CA,12/25/2013 16:30 +Berlin,ORANGE,FIREBALL,WI,12/25/2013 17:10 +Calabasas,,CIRCLE,CA,12/25/2013 17:42 +Colorado Springs,RED ORANGE,TRIANGLE,CO,12/25/2013 18:00 +Sanford,,FIREBALL,FL,12/25/2013 18:00 +Belle,,TRIANGLE,WV,12/25/2013 18:30 +Dorset,RED,LIGHT,VT,12/25/2013 19:00 +New Port,,DISK,FL,12/25/2013 19:00 +West Jordan,ORANGE,LIGHT,UT,12/25/2013 19:00 +Hayward,,LIGHT,CA,12/25/2013 19:08 +Loveland,,OVAL,CO,12/25/2013 19:15 +Maricopa,ORANGE,LIGHT,AZ,12/25/2013 19:15 +McCordsville,,SPHERE,IN,12/25/2013 19:15 +Pigeon Forge,,OVAL,TN,12/25/2013 19:40 +Yountville,RED,TRIANGLE,CA,12/25/2013 19:45 +Midlothian,RED,TRIANGLE,VA,12/25/2013 20:00 +Orlando,,FIREBALL,FL,12/25/2013 20:00 +Orlando,RED,LIGHT,FL,12/25/2013 20:00 +Woonsocket,ORANGE,FIREBALL,RI,12/25/2013 20:15 +Sacramento,,FIREBALL,CA,12/25/2013 20:30 +Weston,RED,CIRCLE,FL,12/25/2013 20:35 +Huntington Beach,RED ORANGE,LIGHT,CA,12/25/2013 20:40 +Port Charlotte,RED,SPHERE,FL,12/25/2013 20:50 +Hackettstown,ORANGE,LIGHT,NJ,12/25/2013 21:30 +Port Richey,,LIGHT,FL,12/25/2013 21:30 +Albuquerque,,CONE,NM,12/25/2013 21:45 +Santa Cruz,,FIREBALL,CA,12/25/2013 22:00 +Belmont,ORANGE,LIGHT,NC,12/25/2013 22:15 +Beavercreek,,CONE,OH,12/25/2013 22:30 +Saint Paul,GREEN,LIGHT,MN,12/25/2013 22:38 +Elgin,RED YELLOW,CYLINDER,IL,12/25/2013 23:05 +Sacramento,RED,TRIANGLE,CA,12/25/2013 23:30 +Bartow County,,CIRCLE,GA,12/26/2013 3:00 +St. Louis,GREEN,CIRCLE,MO,12/26/2013 4:30 +Little Rock,,CIGAR,AR,12/26/2013 5:30 +Borrego Springs,,SPHERE,CA,12/26/2013 16:15 +Puyallup,,OTHER,WA,12/26/2013 17:05 +O'Fallon,GREEN,CIGAR,MO,12/26/2013 17:21 +Manhattan,,FIREBALL,KS,12/26/2013 17:43 +St. Charles,,OVAL,MO,12/26/2013 17:45 +Columbia,,LIGHT,MO,12/26/2013 17:51 +Alpharetta,ORANGE,CIRCLE,GA,12/26/2013 18:00 +Monument,,FIREBALL,CO,12/26/2013 18:00 +Anchorage,,,AK,12/26/2013 18:21 +Medina,,VARIOUS,OH,12/26/2013 19:00 +Columbus,,FIREBALL,OH,12/26/2013 19:13 +Wayne,,TRIANGLE,NJ,12/26/2013 20:00 +Los Angeles,,CIGAR,CA,12/26/2013 21:00 +Kearns,RED,CIRCLE,UT,12/26/2013 21:25 +Boynton Beach,ORANGE,CIRCLE,FL,12/26/2013 22:15 +Foley,RED GREEN,DIAMOND,AL,12/26/2013 22:30 +Las Cruces,,LIGHT,NM,12/26/2013 22:45 +Batesville,,,MS,12/26/2013 23:00 +Glen Burnie,RED,CIRCLE,MD,12/26/2013 23:00 +Compton,ORANGE,FIREBALL,CA,12/26/2013 23:30 +Keyser,,FLASH,WV,12/27/2013 0:00 +Helena,,,MT,12/27/2013 5:50 +Shrewsbury,,LIGHT,MA,12/27/2013 17:10 +Marietta,,LIGHT,MN,12/27/2013 17:30 +Vandalia,,LIGHT,IL,12/27/2013 17:30 +Allentown,RED ORANGE,SPHERE,PA,12/27/2013 17:40 +Marietta,,LIGHT,MN,12/27/2013 18:00 +Port Saint Lucie,,OVAL,FL,12/27/2013 18:00 +Wellington,,VARIOUS,CO,12/27/2013 18:15 +Haverhill,,CIGAR,MA,12/27/2013 18:45 +Tucson,ORANGE,FIREBALL,AZ,12/27/2013 19:00 +Vista,,TRIANGLE,CA,12/27/2013 19:12 +Marietta,RED,FIREBALL,GA,12/27/2013 19:30 +Wrightsville Beach,,OTHER,NC,12/27/2013 19:30 +Hutchinson,,DIAMOND,MN,12/27/2013 19:40 +Largo,,SPHERE,FL,12/27/2013 20:00 +Sterling,RED ORANGE,LIGHT,VA,12/27/2013 20:27 +Salinas,,LIGHT,CA,12/27/2013 20:30 +New Orleans,RED,LIGHT,LA,12/27/2013 20:39 +Fallbrook,,LIGHT,CA,12/27/2013 20:40 +Aiken,RED,LIGHT,SC,12/27/2013 20:45 +Missoula,,LIGHT,MT,12/27/2013 21:00 +Quakertown,,LIGHT,PA,12/27/2013 21:00 +Santa Rosa,RED GREEN,FORMATION,CA,12/27/2013 21:12 +Rochester,,LIGHT,MN,12/27/2013 21:30 +Port Charlotte,,TRIANGLE,FL,12/27/2013 22:10 +Calabash,,FORMATION,NC,12/27/2013 22:15 +Anaheim Hills,GREEN BLUE,,CA,12/27/2013 23:00 +Corona,GREEN BLUE,LIGHT,SD,12/27/2013 23:00 +Indianapolis,,CYLINDER,IN,12/28/2013 1:15 +Columbus,ORANGE,SPHERE,OH,12/28/2013 3:00 +Zionsville,,CIRCLE,IN,12/28/2013 3:55 +Canton,,SPHERE,OH,12/28/2013 4:00 +Moreno Valley,,LIGHT,CA,12/28/2013 4:53 +Davison,,FLASH,MI,12/28/2013 6:00 +Carson City,,DIAMOND,NV,12/28/2013 11:00 +Grosse Pointe Park,,CIRCLE,MI,12/28/2013 11:30 +Hamilton,,FORMATION,NJ,12/28/2013 12:20 +Providence,BLUE,TEARDROP,RI,12/28/2013 13:00 +Rocky Mount,,VARIOUS,VA,12/28/2013 17:10 +New Bern,,LIGHT,NC,12/28/2013 18:00 +Cherry Hill,,LIGHT,NJ,12/28/2013 18:15 +Myrtle Beach,,,SC,12/28/2013 19:00 +Myrtle Beach,ORANGE,SPHERE,SC,12/28/2013 19:00 +Modesto,RED,SPHERE,CA,12/28/2013 19:15 +League City,,LIGHT,TX,12/28/2013 19:45 +Studio City,RED,CIRCLE,CA,12/28/2013 20:00 +St. Clair Shores,GREEN,LIGHT,MI,12/28/2013 20:30 +Forest Hills,,,PA,12/28/2013 20:57 +Los Gatos,BLUE,FLASH,CA,12/28/2013 21:00 +Maywood,,FORMATION,CA,12/28/2013 21:00 +Orlando,GREEN,,FL,12/28/2013 22:00 +Orlando,ORANGE,FORMATION,FL,12/28/2013 22:00 +Washington,,OTHER,ME,12/28/2013 22:30 +Monterey Bay area,,TRIANGLE,CA,12/28/2013 22:47 +East Haddam,,CIRCLE,CT,12/28/2013 23:00 +Lancaster,ORANGE,CIRCLE,PA,12/28/2013 23:00 +Maricopa,,LIGHT,AZ,12/28/2013 23:00 +Beaver Dam,,LIGHT,AZ,12/29/2013 6:00 +Orange Heights,,OTHER,FL,12/29/2013 9:02 +Stateline,,RECTANGLE,NV,12/29/2013 13:44 +Kailua Kona,,LIGHT,HI,12/29/2013 17:30 +Price,,SPHERE,UT,12/29/2013 18:00 +Tequesta,,FIREBALL,FL,12/29/2013 18:15 +Omaha,,CIRCLE,NE,12/29/2013 18:20 +Sarasota,,FIREBALL,FL,12/29/2013 18:20 +Bay Saint Louis,,FIREBALL,MS,12/29/2013 19:00 +Cleveland,RED ORANGE,SPHERE,TN,12/29/2013 19:00 +Hampton Roads,,TRIANGLE,VA,12/29/2013 19:00 +Greeley,,CIRCLE,CO,12/29/2013 19:15 +Urbana,,CIRCLE,MD,12/29/2013 19:15 +Wellington,,SPHERE,FL,12/29/2013 19:30 +Jeffersonville,ORANGE,CIRCLE,IN,12/29/2013 20:00 +Port Townsend,RED,OTHER,WA,12/29/2013 21:33 +Naples,ORANGE,CIRCLE,FL,12/29/2013 22:30 +Jacksonville,,FIREBALL,FL,12/29/2013 22:50 +Plain,ORANGE,CIRCLE,WA,12/29/2013 23:45 +Grand Junction,ORANGE,,CO,12/30/2013 1:00 +Woodinville,,RECTANGLE,WA,12/30/2013 2:30 +Phoenix,,FLASH,AZ,12/30/2013 6:00 +Marco Island,,TEARDROP,FL,12/30/2013 10:30 +Brookings,,OTHER,OR,12/30/2013 18:00 +San Diego,,FIREBALL,CA,12/30/2013 18:30 +Highlands Ranch,BLUE,CIRCLE,CO,12/30/2013 18:45 +Albany,,TRIANGLE,NY,12/30/2013 19:00 +San Diego,,CIRCLE,CA,12/30/2013 19:00 +San Diego,,FIREBALL,CA,12/30/2013 19:15 +Coloma,ORANGE,FORMATION,MI,12/30/2013 21:00 +Port Orchard,RED,TRIANGLE,WA,12/30/2013 21:00 +Los Angeles,RED,FIREBALL,CA,12/30/2013 21:30 +Brigham City,ORANGE,OTHER,UT,12/30/2013 22:00 +Ivor,,LIGHT,VA,12/30/2013 23:00 +Chesterfield,,OVAL,VA,12/31/2013 0:00 +Las Vegas,RED,CIRCLE,NV,12/31/2013 0:15 +Brattleboro,,FIREBALL,VT,12/31/2013 0:29 +Altamonte Springs,,SPHERE,FL,12/31/2013 0:30 +Fairbanks,ORANGE,LIGHT,AK,12/31/2013 1:00 +Dayton,,,OH,12/31/2013 7:00 +Longwood,,SPHERE,FL,12/31/2013 13:00 +Taos,RED,TRIANGLE,NM,12/31/2013 13:00 +In-flight,,LIGHT,CA,12/31/2013 16:00 +La Grande,,LIGHT,OR,12/31/2013 17:00 +Minneapolis,,OTHER,MN,12/31/2013 17:30 +Chanhassen,RED,TRIANGLE,MN,12/31/2013 17:50 +Hartford,,,CT,12/31/2013 18:10 +Sebastopol,ORANGE,LIGHT,CA,12/31/2013 18:10 +Pacifica,ORANGE,LIGHT,CA,12/31/2013 18:20 +Newfane,ORANGE,,VT,12/31/2013 18:38 +Clarkston,,FIREBALL,WA,12/31/2013 19:01 +San Diego,,CHEVRON,CA,12/31/2013 19:02 +Boynton Beach,RED,SPHERE,FL,12/31/2013 19:24 +Santa Cruz,,FIREBALL,CA,12/31/2013 19:30 +Selah,,FIREBALL,WA,12/31/2013 19:54 +Pleasanton,,,CA,12/31/2013 19:55 +Auburn,,CIRCLE,CA,12/31/2013 19:58 +Bozeman,,OTHER,MT,12/31/2013 20:00 +Bridgewater,GREEN,,MA,12/31/2013 20:00 +Fallbrook,,CIRCLE,CA,12/31/2013 20:00 +Middleburg,RED,SPHERE,FL,12/31/2013 20:00 +New Port Richey,ORANGE,DISK,FL,12/31/2013 20:00 +Denver,,LIGHT,CO,12/31/2013 20:20 +Eagle River,,OTHER,AK,12/31/2013 20:28 +Albany,ORANGE,CIRCLE,OR,12/31/2013 20:30 +Elk River,RED,SPHERE,MN,12/31/2013 20:30 +Newman Lake,ORANGE,FIREBALL,WA,12/31/2013 20:30 +La Jolla,,LIGHT,CA,12/31/2013 20:40 +Westport,,LIGHT,NY,12/31/2013 20:40 +Bossier City,,CIRCLE,LA,12/31/2013 20:51 +Fort Lauderdale,RED YELLOW,CIRCLE,FL,12/31/2013 21:00 +Palm Beach Gardens,,FIREBALL,FL,12/31/2013 21:00 +Portland,ORANGE,FIREBALL,OR,12/31/2013 21:00 +Pukalani,,SPHERE,HI,12/31/2013 21:00 +Wilmington,,CIRCLE,NC,12/31/2013 21:00 +Eugene,,LIGHT,OR,12/31/2013 21:15 +Louisville,,SPHERE,KY,12/31/2013 21:15 +Palm Desert,,DIAMOND,CA,12/31/2013 21:15 +North Seattle,RED,OTHER,WA,12/31/2013 21:20 +Hesperia,ORANGE,LIGHT,CA,12/31/2013 21:30 +Tigard,ORANGE,FIREBALL,OR,12/31/2013 21:30 +Portland,RED,FIREBALL,OR,12/31/2013 21:40 +Eastvale,RED,FORMATION,CA,12/31/2013 21:42 +Santa Barbara,,LIGHT,CA,12/31/2013 21:50 +Mesa,,FIREBALL,AZ,12/31/2013 21:54 +Aubrey,,FIREBALL,TX,12/31/2013 22:00 +Columbia,RED,OTHER,SC,12/31/2013 22:00 +Dayton,ORANGE,FORMATION,OH,12/31/2013 22:00 +Hickory,ORANGE,FORMATION,NC,12/31/2013 22:00 +New Market,ORANGE,SPHERE,MD,12/31/2013 22:00 +Saint Cloud,,FIREBALL,FL,12/31/2013 22:00 +Tucson,,CROSS,AZ,12/31/2013 22:00 +Waelo,,LIGHT,HI,12/31/2013 22:00 +Boise,ORANGE,LIGHT,ID,12/31/2013 22:10 +High Point,,LIGHT,NC,12/31/2013 22:15 +Magna,,CIRCLE,UT,12/31/2013 22:15 +Elko,ORANGE,FIREBALL,NV,12/31/2013 22:25 +Bozeman,,SPHERE,MT,12/31/2013 22:30 +Edison,ORANGE,TRIANGLE,NJ,12/31/2013 22:30 +Maricopa,ORANGE YELLOW,SPHERE,AZ,12/31/2013 22:30 +Myrtle Beach,ORANGE,FIREBALL,SC,12/31/2013 22:30 +South El Monte,RED,SPHERE,CA,12/31/2013 22:30 +Flemington,ORANGE,LIGHT,NJ,12/31/2013 22:50 +Cincinnati,,OTHER,OH,12/31/2013 23:00 +Fairbanks,,LIGHT,AK,12/31/2013 23:00 +Huntsville,,VARIOUS,AL,12/31/2013 23:00 +Lakeland,ORANGE,CIRCLE,FL,12/31/2013 23:00 +Tampa,,SPHERE,FL,12/31/2013 23:00 +Corvallis,,CIRCLE,OR,12/31/2013 23:10 +Mt. Pleasant,,LIGHT,SC,12/31/2013 23:10 +Largo,ORANGE,CIRCLE,FL,12/31/2013 23:22 +Stockton,,FORMATION,CA,12/31/2013 23:30 +Fairborn,,OTHER,OH,12/31/2013 23:40 +Pinellas park,RED ORANGE,LIGHT,FL,12/31/2013 23:40 +Sarasota,,LIGHT,FL,12/31/2013 23:40 +Taylors,RED,FIREBALL,SC,12/31/2013 23:40 +Bush,,LIGHT,LA,12/31/2013 23:45 +Kihei,,CIRCLE,HI,12/31/2013 23:50 +Las Cruces,ORANGE,OTHER,NM,12/31/2013 23:50 +San Francisco,,SPHERE,CA,12/31/2013 23:50 +San Francisco,RED,LIGHT,CA,12/31/2013 23:55 +Midland,,DISK,MI,12/31/2013 23:59 +Austin,,CIRCLE,TX,1/1/2014 0:00 +Bakersfield,ORANGE,LIGHT,CA,1/1/2014 0:00 +Brentwood,,CIRCLE,TN,1/1/2014 0:00 +Colorado Springs,,,CO,1/1/2014 0:00 +Dallas,RED,SPHERE,GA,1/1/2014 0:00 +Kettering,ORANGE,CIRCLE,OH,1/1/2014 0:00 +Lafayette,,,LA,1/1/2014 0:00 +Las Vegas,,CIRCLE,NV,1/1/2014 0:00 +Milpitas,ORANGE,LIGHT,CA,1/1/2014 0:00 +Moreno Valley,,LIGHT,CA,1/1/2014 0:00 +Sacramento,ORANGE,,CA,1/1/2014 0:00 +Sequim,ORANGE,OTHER,WA,1/1/2014 0:00 +Springfield,,CIRCLE,OR,1/1/2014 0:00 +Taos,,CIRCLE,NM,1/1/2014 0:00 +Trussville,,LIGHT,AL,1/1/2014 0:00 +Wenatchee,,OVAL,WA,1/1/2014 0:00 +Clarksville,ORANGE,SPHERE,TN,1/1/2014 0:01 +Henderson,,SPHERE,NV,1/1/2014 0:01 +Salem,RED YELLOW,LIGHT,OR,1/1/2014 0:01 +Waxhaw,,DISK,NC,1/1/2014 0:01 +El Paso,,FORMATION,TX,1/1/2014 0:02 +Goose Creek,GREEN,LIGHT,SC,1/1/2014 0:02 +Albuquerque,RED,EGG,NM,1/1/2014 0:05 +Austin,,LIGHT,TX,1/1/2014 0:05 +Colorado Springs,,FORMATION,CO,1/1/2014 0:05 +Elon,,CIRCLE,NC,1/1/2014 0:05 +Mt. Pleasant,,CIRCLE,SC,1/1/2014 0:05 +Rohnert Park,RED,SPHERE,CA,1/1/2014 0:05 +Spokane Valley,RED,FORMATION,WA,1/1/2014 0:05 +Jacksonville,ORANGE,CIRCLE,FL,1/1/2014 0:06 +Deltona,,SPHERE,FL,1/1/2014 0:07 +Charlottesville,,LIGHT,VA,1/1/2014 0:10 +Deltona,ORANGE,CIRCLE,FL,1/1/2014 0:10 +Fairborn,ORANGE,LIGHT,OH,1/1/2014 0:10 +Livermore,,LIGHT,CA,1/1/2014 0:10 +Modesto,RED,CIRCLE,CA,1/1/2014 0:10 +Saint Albans,,TRIANGLE,WV,1/1/2014 0:10 +Wilmington,ORANGE,TRIANGLE,NC,1/1/2014 0:10 +Baldwin,,FIREBALL,NY,1/1/2014 0:12 +Patterson,ORANGE,SPHERE,CA,1/1/2014 0:12 +Boise,ORANGE,LIGHT,ID,1/1/2014 0:15 +Burbank,ORANGE,SPHERE,CA,1/1/2014 0:15 +Corona,ORANGE,CIRCLE,CA,1/1/2014 0:15 +Greenfield,RED,LIGHT,IN,1/1/2014 0:15 +Oakland Park,BLUE,FLASH,FL,1/1/2014 0:15 +Salem,,CIRCLE,OR,1/1/2014 0:15 +Spanish Fork,,,UT,1/1/2014 0:15 +Wesley Chapel,,FIREBALL,FL,1/1/2014 0:15 +Lewes,RED BLUE,LIGHT,DE,1/1/2014 0:18 +Hokes Bluff,RED,CIRCLE,AL,1/1/2014 0:20 +Roanoke,ORANGE,FIREBALL,VA,1/1/2014 0:20 +Santa Clara,ORANGE,SPHERE,CA,1/1/2014 0:20 +Goodyear,ORANGE,SPHERE,AZ,1/1/2014 0:24 +Spring Hill,ORANGE,CIRCLE,FL,1/1/2014 0:25 +Bradenton,ORANGE,FIREBALL,FL,1/1/2014 0:30 +Fairfax,,FLASH,VA,1/1/2014 0:30 +Ocala,ORANGE,LIGHT,FL,1/1/2014 0:30 +South El Monte,RED,SPHERE,CA,1/1/2014 0:30 +Temecula,ORANGE,LIGHT,CA,1/1/2014 0:30 +Eastvale,,FIREBALL,CA,1/1/2014 0:42 +Fort Worth,,OVAL,TX,1/1/2014 0:47 +Kirtland,ORANGE,FORMATION,NM,1/1/2014 0:50 +Reseda,ORANGE,CIRCLE,CA,1/1/2014 0:53 +Albuquerque,,CIRCLE,NM,1/1/2014 1:00 +American Fork,,CIRCLE,UT,1/1/2014 1:00 +Boca Raton,,CIRCLE,FL,1/1/2014 1:00 +Chandler,ORANGE,EGG,AZ,1/1/2014 1:00 +Fanwood,RED,FIREBALL,NJ,1/1/2014 1:00 +Fayetteville,,LIGHT,NC,1/1/2014 1:00 +Lehigh Acres,,FIREBALL,FL,1/1/2014 1:00 +Mt. Pleasant,ORANGE,OTHER,SC,1/1/2014 1:00 +Tucson,ORANGE,LIGHT,AZ,1/1/2014 1:00 +Utah Valley,,VARIOUS,UT,1/1/2014 1:00 +East Ridge,ORANGE,CIRCLE,TN,1/1/2014 1:15 +Lake Elsinore,BLUE,FIREBALL,CA,1/1/2014 1:30 +Bradenton,,EGG,FL,1/1/2014 1:45 +La Mesa,,FORMATION,CA,1/1/2014 3:00 +New York City,,OTHER,NY,1/1/2014 12:00 +Placentia,,RECTANGLE,CA,1/1/2014 17:00 +Gorham,ORANGE,FIREBALL,ME,1/1/2014 17:15 +Mentone,,FORMATION,CA,1/1/2014 17:47 +Gilroy,RED,FORMATION,CA,1/1/2014 17:50 +Philadelphia,RED,LIGHT,PA,1/1/2014 18:00 +Woodridge,RED,FIREBALL,IL,1/1/2014 18:30 +San Diego,,,CA,1/1/2014 18:46 +Brenda,ORANGE YELLOW,CIRCLE,AZ,1/1/2014 19:00 +Pittsburgh,ORANGE,CIRCLE,PA,1/1/2014 19:30 +Boston,ORANGE,EGG,MA,1/1/2014 19:45 +Louisville,ORANGE,SPHERE,KY,1/1/2014 20:00 +Pittsburgh,,FIREBALL,PA,1/1/2014 20:15 +Hickory,YELLOW,TRIANGLE,NC,1/1/2014 20:30 +Powers,,,OR,1/1/2014 20:45 +Great Falls,ORANGE,SPHERE,MT,1/1/2014 21:00 +Spokane,,LIGHT,WA,1/1/2014 21:30 +Mount Ephraim,,CIRCLE,NJ,1/1/2014 22:00 +River Ridge,RED ORANGE YELLOW,SPHERE,LA,1/1/2014 22:00 +Cincinnati,RED BLUE,CIRCLE,OH,1/1/2014 22:15 +Liberty Township,,CIRCLE,OH,1/1/2014 22:30 +North Myrtle Beach,ORANGE,FIREBALL,SC,1/1/2014 23:00 +Tucson,,LIGHT,AZ,1/1/2014 23:00 +Auburn,,LIGHT,WA,1/2/2014 0:00 +Olympia,,OTHER,WA,1/2/2014 0:00 +Tarzana,GREEN,LIGHT,CA,1/2/2014 3:00 +Riverside,RED,SPHERE,CA,1/2/2014 16:45 +Austin,,CIRCLE,TX,1/2/2014 17:30 +Tucson,ORANGE,CIRCLE,AZ,1/2/2014 18:30 +Venice,,EGG,FL,1/2/2014 19:00 +Des Moines,,,IA,1/2/2014 19:05 +Cuthbert,,LIGHT,GA,1/2/2014 20:00 +Yankton,,FIREBALL,SD,1/2/2014 20:00 +Cape Coral,,LIGHT,FL,1/2/2014 22:00 +Austin,ORANGE,LIGHT,TX,1/2/2014 22:15 +Berkeley,ORANGE,LIGHT,CA,1/2/2014 23:00 +Rossville,ORANGE,LIGHT,IL,1/2/2014 23:45 +Marina del Rey,,LIGHT,CA,1/3/2014 0:00 +Aston,,TEARDROP,PA,1/3/2014 1:00 +Morton,,OTHER,IL,1/3/2014 2:45 +Port St. Lucie,ORANGE,,FL,1/3/2014 8:45 +Morgan Hill,GREEN,CIGAR,CA,1/3/2014 13:00 +Los Alamos,,OTHER,NM,1/3/2014 18:15 +Huntington Beach,ORANGE,LIGHT,CA,1/3/2014 18:56 +Jenks,,CIRCLE,OK,1/3/2014 21:23 +St. Louis,,CHEVRON,MO,1/3/2014 22:00 +Simsbury,RED,TRIANGLE,CT,1/3/2014 23:40 +Lakewood,,CONE,WA,1/4/2014 1:00 +Altoona,,FIREBALL,PA,1/4/2014 1:55 +Greensboro,ORANGE,TEARDROP,NC,1/4/2014 2:50 +Kill Devil Hills,,SPHERE,NC,1/4/2014 5:43 +Moreno Valley,ORANGE,FIREBALL,CA,1/4/2014 5:50 +Auburn,,FORMATION,CA,1/4/2014 7:00 +Jackson,,FIREBALL,OH,1/4/2014 7:35 +New York City,,LIGHT,NY,1/4/2014 11:00 +Prineville,,OVAL,OR,1/4/2014 16:22 +Ashburn,,SPHERE,VA,1/4/2014 16:35 +Crossville,RED,LIGHT,TN,1/4/2014 17:00 +Marrero,BLUE,LIGHT,LA,1/4/2014 18:00 +Norfolk,,CIRCLE,VA,1/4/2014 18:00 +Campbell,,TRIANGLE,OH,1/4/2014 18:10 +Marshall,BLUE,SPHERE,TX,1/4/2014 18:30 +Oregon City,RED BLUE,,OR,1/4/2014 18:30 +Berea,,FIREBALL,OH,1/4/2014 20:35 +Blue Hill,GREEN BLUE,FIREBALL,ME,1/4/2014 21:00 +Long Beach,GREEN,LIGHT,CA,1/4/2014 21:00 +Portland,RED,LIGHT,OR,1/4/2014 21:00 +Tacoma,,OTHER,WA,1/4/2014 21:15 +Lynn,,CIRCLE,MA,1/4/2014 21:34 +Phoenix,RED,OTHER,AZ,1/4/2014 22:08 +New York City,ORANGE,OVAL,NY,1/4/2014 22:30 +Fort Myers,,,FL,1/4/2014 23:00 +Scottsdale,,CHEVRON,AZ,1/4/2014 23:00 +Clermont,,TRIANGLE,FL,1/4/2014 23:30 +Tuscaloosa,,SPHERE,AL,1/4/2014 23:56 +Mansfield,,OVAL,OH,1/5/2014 2:22 +Columbia,,LIGHT,MO,1/5/2014 3:50 +Pleasanton,,OVAL,CA,1/5/2014 4:57 +Lodi,,RECTANGLE,CA,1/5/2014 5:30 +Spokane,,SPHERE,WA,1/5/2014 12:00 +Corona,,OTHER,CA,1/5/2014 16:00 +East Providence,,LIGHT,RI,1/5/2014 18:45 +Salt Lake City,,LIGHT,UT,1/5/2014 19:00 +Santa Rosa,RED ORANGE,,CA,1/5/2014 22:30 +Evansville,,OTHER,IN,1/6/2014 0:00 +Jackson,,,MI,1/6/2014 3:45 +Chesapeake,,DISK,VA,1/6/2014 7:40 +Morris,,DISK,IL,1/6/2014 9:00 +Morris,,DISK,IL,1/6/2014 9:00 +Clinchport,,CYLINDER,VA,1/6/2014 14:00 +Chalfont,,DISK,PA,1/6/2014 15:45 +Lansdale,,SPHERE,PA,1/6/2014 16:00 +Glenmoore,,FORMATION,PA,1/6/2014 16:30 +Georgetown,ORANGE,CIRCLE,KY,1/6/2014 19:00 +Lewisburg,,TRIANGLE,WV,1/6/2014 19:00 +San Diego,,LIGHT,CA,1/6/2014 19:00 +Cape Coral,,LIGHT,FL,1/6/2014 20:30 +Morgan Hill,GREEN,LIGHT,CA,1/6/2014 22:00 +Danville,,,VA,1/6/2014 22:15 +San Rafael,,LIGHT,CA,1/6/2014 22:18 +San Rafael,,FORMATION,CA,1/6/2014 22:20 +San Francisco,ORANGE,VARIOUS,CA,1/6/2014 22:30 +Hartford,,OTHER,SD,1/6/2014 23:52 +Mesa,ORANGE,,AZ,1/7/2014 0:00 +Savannah,,LIGHT,GA,1/7/2014 7:10 +Monticello,,,AR,1/7/2014 16:30 +Mayville,ORANGE,LIGHT,WI,1/7/2014 19:00 +Tucson,ORANGE,,AZ,1/7/2014 19:08 +San Tan Valley,,SPHERE,AZ,1/7/2014 19:55 +Princeton,,CYLINDER,WV,1/7/2014 20:00 +San Tan Valley,ORANGE,LIGHT,AZ,1/7/2014 20:00 +Missoula,BLUE,SPHERE,MT,1/7/2014 21:40 +San Tan Valley,,FIREBALL,AZ,1/7/2014 21:56 +Hampton,,LIGHT,VA,1/7/2014 21:58 +San Rafael,,FORMATION,CA,1/7/2014 22:41 +Hattiesburg,GREEN,CIRCLE,MS,1/7/2014 22:45 +Pittsburgh,,FORMATION,PA,1/8/2014 1:00 +Columbus,,OTHER,OH,1/8/2014 15:00 +Rome,,LIGHT,WI,1/8/2014 17:00 +Fond du Lac,,FORMATION,WI,1/8/2014 17:12 +Green Lake,ORANGE GREEN,,WI,1/8/2014 17:30 +Westfield,,LIGHT,WI,1/8/2014 17:30 +Clinton,,CIGAR,NJ,1/8/2014 18:00 +Doylestown,YELLOW,LIGHT,WI,1/8/2014 18:00 +Madison,ORANGE,FORMATION,WI,1/8/2014 18:00 +Hailey,ORANGE,SPHERE,ID,1/8/2014 18:20 +Kernesville,ORANGE,CIRCLE,NC,1/8/2014 20:00 +Alta Loma,ORANGE,CIRCLE,CA,1/8/2014 21:00 +Encinitas,,VARIOUS,CA,1/8/2014 23:00 +Sanford,,,FL,1/9/2014 2:10 +Oregon City,,CIRCLE,OR,1/9/2014 7:25 +North Miami Beach,,OTHER,FL,1/9/2014 7:45 +Tampa,,,FL,1/9/2014 8:10 +Los Angeles,RED GREEN,OTHER,CA,1/9/2014 8:20 +Dumont Dune National Park,BLUE,OTHER,CA,1/9/2014 9:20 +Fairborn,,FIREBALL,OH,1/9/2014 11:20 +New York City,,TRIANGLE,NY,1/9/2014 11:45 +Summerville,ORANGE BLUE,SPHERE,SC,1/9/2014 16:00 +Metairie,,TRIANGLE,LA,1/9/2014 16:07 +San Pedro,,SPHERE,CA,1/9/2014 16:50 +Bountiful,,DIAMOND,UT,1/9/2014 18:44 +Huntington Beach,,,CA,1/9/2014 19:15 +Scottsdale,ORANGE,LIGHT,AZ,1/9/2014 19:15 +Phoenix,ORANGE,SPHERE,AZ,1/9/2014 21:50 +Placentia,,RECTANGLE,CA,1/10/2014 6:00 +El Paso,RED YELLOW GREEN,CIRCLE,TX,1/10/2014 6:15 +Coal Creek,YELLOW,SPHERE,CO,1/10/2014 6:30 +Hartford,,FLASH,CT,1/10/2014 9:57 +Placentia,,RECTANGLE,CA,1/10/2014 17:30 +Adams,,,WI,1/10/2014 18:30 +Knoxville,ORANGE,LIGHT,TN,1/10/2014 20:00 +Yuma,BLUE,,AZ,1/10/2014 20:00 +Meredith,,FIREBALL,NH,1/10/2014 20:30 +Mercey Hot Springs,,LIGHT,CA,1/10/2014 20:40 +Newport Beach,RED,FIREBALL,CA,1/10/2014 20:50 +Lowell,RED,FLASH,MI,1/10/2014 21:15 +Kaneohe,RED,FIREBALL,HI,1/10/2014 22:58 +Napa,ORANGE,CIRCLE,CA,1/10/2014 23:50 +Mountlake Terrace,RED,LIGHT,WA,1/11/2014 0:00 +Bayville,,,NJ,1/11/2014 3:00 +Oviedo,,LIGHT,FL,1/11/2014 4:00 +Roseville,,FIREBALL,MN,1/11/2014 16:00 +La Junta,GREEN,OVAL,CO,1/11/2014 16:50 +Princeton,,TRIANGLE,MN,1/11/2014 17:15 +Tucson,,CIGAR,AZ,1/11/2014 18:00 +Palmdale,,FIREBALL,CA,1/11/2014 19:00 +Boca Raton,ORANGE,LIGHT,FL,1/11/2014 19:20 +Deerfield Beach,ORANGE,,FL,1/11/2014 19:20 +Pueblo,ORANGE,SPHERE,CO,1/11/2014 19:30 +Sun Valley,ORANGE,LIGHT,CA,1/11/2014 19:33 +Chesapeake City,,CIRCLE,MD,1/11/2014 19:55 +Falmouth,ORANGE,CIRCLE,KY,1/11/2014 20:00 +Palo Alto,,FORMATION,CA,1/11/2014 21:05 +New York City,,LIGHT,NY,1/11/2014 22:25 +Davie,ORANGE,FIREBALL,FL,1/11/2014 22:40 +Northport,ORANGE GREEN,DIAMOND,NY,1/12/2014 0:05 +Lawton,BLUE,TEARDROP,OK,1/12/2014 0:56 +Northern Cambria,,CIRCLE,PA,1/12/2014 10:00 +Chambersburg,,CIGAR,PA,1/12/2014 11:00 +Fort Collins,,SPHERE,MI,1/12/2014 11:00 +Charlotte,,CIGAR,NC,1/12/2014 13:25 +Huntsville,,DISK,AL,1/12/2014 13:35 +Marion,,DISK,SC,1/12/2014 13:35 +Melbourne,,CYLINDER,FL,1/12/2014 15:30 +Great Falls,,,MT,1/12/2014 17:00 +Inverness,,CIGAR,MS,1/12/2014 17:00 +Ellington,,FIREBALL,CT,1/12/2014 17:10 +Georgetown,,LIGHT,KY,1/12/2014 17:15 +Mukilteo,,,WA,1/12/2014 17:23 +River Vale,,EGG,NJ,1/12/2014 17:45 +New Orleans,,LIGHT,LA,1/12/2014 18:00 +Palatka,,FIREBALL,FL,1/12/2014 18:30 +Clawson,,RECTANGLE,MI,1/12/2014 19:00 +Easton,RED,LIGHT,PA,1/12/2014 19:00 +Rochester,ORANGE,LIGHT,NY,1/12/2014 19:30 +New Sharon,ORANGE,CIRCLE,ME,1/12/2014 19:45 +New Sharon,ORANGE,CIRCLE,ME,1/12/2014 19:45 +Cleveland,,LIGHT,OH,1/12/2014 20:15 +Hartwell,ORANGE,TRIANGLE,GA,1/12/2014 20:15 +Inchelium,,TRIANGLE,WA,1/12/2014 21:05 +Louisville,,SPHERE,IN,1/12/2014 22:00 +Dallas,,OVAL,GA,1/12/2014 22:35 +Haledon,RED,CIRCLE,NJ,1/12/2014 23:30 +New Sharon,,OVAL,ME,1/12/2014 23:31 +Watchung,YELLOW,LIGHT,NJ,1/13/2014 1:00 +Agawam,ORANGE BLUE,LIGHT,MA,1/13/2014 3:10 +Southwick,,LIGHT,MA,1/13/2014 3:15 +Hugoton,,FLASH,KS,1/13/2014 6:00 +San Antonio,,FIREBALL,TX,1/13/2014 6:47 +Carson,,SPHERE,CA,1/13/2014 13:45 +Lorton,BLUE,CIRCLE,VA,1/13/2014 17:50 +Henderson,,FIREBALL,CO,1/13/2014 18:00 +Sioux City,ORANGE,CIRCLE,IA,1/13/2014 18:00 +Willow Springs,,CHEVRON,NC,1/13/2014 18:00 +Boone,RED BLUE,TRIANGLE,IA,1/13/2014 18:30 +Greensboro,,TEARDROP,NC,1/13/2014 18:45 +Tinley park,,LIGHT,IL,1/13/2014 18:50 +Rushville,RED BLUE,TRIANGLE,IN,1/13/2014 20:30 +Rushville,RED BLUE,TRIANGLE,IN,1/13/2014 20:30 +Clarksburg,ORANGE,CIGAR,MD,1/13/2014 21:00 +Holts Summit,,VARIOUS,MO,1/13/2014 22:22 +Myrtle Beach,ORANGE,CIRCLE,SC,1/14/2014 0:35 +Flossmoor,,TRIANGLE,IL,1/14/2014 2:00 +Angleton,,FLASH,TX,1/14/2014 5:15 +Palestine,RED GREEN,TRIANGLE,TX,1/14/2014 6:00 +Yates Center,,LIGHT,KS,1/14/2014 6:30 +Surfside Beach,ORANGE,,SC,1/14/2014 18:30 +Eureka,YELLOW,OTHER,KS,1/14/2014 18:45 +Fredonia,ORANGE,LIGHT,KS,1/14/2014 18:45 +Roanoke,RED,LIGHT,VA,1/14/2014 19:35 +Waimanalo,ORANGE,FIREBALL,HI,1/14/2014 20:50 +Seattle,,LIGHT,WA,1/14/2014 21:27 +Kimberly,RED,FIREBALL,ID,1/14/2014 22:40 +Talkitna,,,AK,1/14/2014 23:00 +Crystal Spring,,OVAL,TX,1/15/2014 0:00 +Kealia,,FIREBALL,HI,1/15/2014 0:00 +Paia,,SPHERE,HI,1/15/2014 3:30 +El Dorado Hills,,LIGHT,CA,1/15/2014 5:30 +Tallahassee,,TEARDROP,FL,1/15/2014 12:00 +Pleasant Grove,,DISK,AR,1/15/2014 13:00 +Dana Point,,SPHERE,CA,1/15/2014 14:30 +Spearsville,,TRIANGLE,LA,1/15/2014 14:30 +Mountain Brook,,LIGHT,AL,1/15/2014 17:45 +Garner,RED,DISK,NC,1/15/2014 19:00 +Birmingham,,FORMATION,AL,1/15/2014 19:30 +Kihei,ORANGE,CIRCLE,HI,1/15/2014 19:30 +St. Stephen,,SPHERE,SC,1/15/2014 19:45 +Conyers,RED,FORMATION,GA,1/15/2014 20:00 +Lilburn,,VARIOUS,GA,1/15/2014 20:00 +Williamston,RED,FORMATION,SC,1/15/2014 20:00 +Campbell,,FIREBALL,CA,1/15/2014 20:10 +Loganville,RED,LIGHT,GA,1/15/2014 20:15 +Covington,,LIGHT,GA,1/15/2014 20:30 +Dacula,RED,,GA,1/15/2014 20:30 +Crystal City,,FLASH,TX,1/15/2014 20:45 +Peachtree City,RED,SPHERE,GA,1/15/2014 21:00 +Peachtree city,RED,SPHERE,GA,1/15/2014 21:00 +North Sutton,,,NH,1/15/2014 21:10 +Deleon Springs,,CIRCLE,FL,1/15/2014 21:30 +Stewartstown,RED,LIGHT,PA,1/15/2014 22:30 +Shoreline,,OTHER,WA,1/16/2014 1:00 +"UNKNOWN FLYING @ 39,000",,OTHER,GA,1/16/2014 11:00 +Belgrade,,,MT,1/16/2014 17:30 +Canon City,,SPHERE,CO,1/16/2014 18:00 +McAllen,,TEARDROP,TX,1/16/2014 18:15 +Birmingham,,FORMATION,AL,1/16/2014 18:27 +Cary,,TRIANGLE,NC,1/16/2014 18:30 +Corinth,YELLOW,LIGHT,NY,1/16/2014 18:40 +Forsyth,,FIREBALL,MO,1/16/2014 19:00 +Glenpool,,RECTANGLE,OK,1/16/2014 19:00 +North Chesterfield,RED,FORMATION,VA,1/16/2014 19:00 +Buckhead,,TRIANGLE,GA,1/16/2014 20:00 +Shartlesville,GREEN BLUE,,PA,1/16/2014 20:00 +Bolivia,ORANGE,LIGHT,NC,1/16/2014 21:10 +Loxahatchee,,SPHERE,FL,1/16/2014 21:25 +Clermont,,,FL,1/16/2014 22:00 +Menifee,,SPHERE,CA,1/16/2014 22:00 +Covington,,CIRCLE,KY,1/16/2014 23:00 +Miami,,OTHER,FL,1/16/2014 23:00 +Coldwater,,CIRCLE,MS,1/16/2014 23:16 +Garden Ridge,,,TX,1/17/2014 0:00 +Las Vegas,RED,LIGHT,NV,1/17/2014 2:18 +Orlando,,CYLINDER,FL,1/17/2014 2:45 +Sweet Lake,,SPHERE,LA,1/17/2014 5:00 +Maricopa,ORANGE,SPHERE,AZ,1/17/2014 6:45 +Grand junction,RED,LIGHT,CO,1/17/2014 8:30 +Desert Center,,SPHERE,CA,1/17/2014 11:00 +Glen Burnie,,OTHER,MD,1/17/2014 12:20 +Conroe,,SPHERE,TX,1/17/2014 13:00 +Glenpool,,,OK,1/17/2014 13:00 +Harrisburg,,,PA,1/17/2014 17:00 +Broomfield,,OTHER,CO,1/17/2014 18:00 +Lacey,BLUE,FORMATION,WA,1/17/2014 18:30 +Quartzite,,LIGHT,AZ,1/17/2014 19:30 +Santa Ana,,LIGHT,CA,1/17/2014 19:35 +Raleigh,,CIRCLE,NC,1/17/2014 21:00 +Naples,,LIGHT,FL,1/17/2014 22:30 +Troy,RED,SPHERE,OH,1/17/2014 22:35 +Paterson,,LIGHT,NJ,1/18/2014 0:00 +Wichita,,LIGHT,KS,1/18/2014 0:10 +Denver,,LIGHT,CO,1/18/2014 3:10 +Waddell,RED,LIGHT,AZ,1/18/2014 8:45 +St. George,,SPHERE,UT,1/18/2014 9:06 +Miami Beach,,OTHER,FL,1/18/2014 10:00 +Tujunga,RED,SPHERE,CA,1/18/2014 18:00 +Huntersville,,LIGHT,NC,1/18/2014 18:15 +Durham,ORANGE,TRIANGLE,NC,1/18/2014 18:20 +Carteret,,TRIANGLE,NJ,1/18/2014 19:15 +Clarksville,,OTHER,TN,1/18/2014 20:00 +Jackson,ORANGE,SPHERE,LA,1/18/2014 20:00 +Tampa,,SPHERE,FL,1/18/2014 20:00 +Willits,,FIREBALL,CA,1/18/2014 20:00 +Huntington,ORANGE,FIREBALL,WV,1/18/2014 20:30 +Roseburg,,OVAL,OR,1/18/2014 20:30 +Saco,,FIREBALL,ME,1/18/2014 20:30 +Columbia,,CIGAR,MD,1/18/2014 20:45 +Phoenix,,FIREBALL,AZ,1/18/2014 20:45 +Portland,,,OR,1/18/2014 20:45 +Easton,,LIGHT,MD,1/18/2014 21:00 +Lake Havasu City,ORANGE,FIREBALL,AZ,1/18/2014 21:00 +Royal Palm Beach,,OTHER,FL,1/18/2014 21:00 +Lake Havasu City,ORANGE,FIREBALL,AZ,1/18/2014 21:30 +Lake Tawakoni,,FIREBALL,TX,1/18/2014 21:50 +Boca Raton,RED,FORMATION,FL,1/18/2014 22:05 +Kirksville,,CIRCLE,MO,1/18/2014 22:30 +Westminster,RED GREEN,LIGHT,CA,1/18/2014 22:30 +Moncks Corner,,OTHER,SC,1/18/2014 23:00 +Pawtucket,,TRIANGLE,RI,1/18/2014 23:00 +Tacoma,,LIGHT,WA,1/18/2014 23:39 +Southfield,,DISK,MI,1/19/2014 2:30 +Nixon,,CIRCLE,TX,1/19/2014 4:47 +Camp Verde,,FIREBALL,AZ,1/19/2014 7:00 +Dania Beach,,RECTANGLE,FL,1/19/2014 12:00 +Honolulu,,CIGAR,HI,1/19/2014 17:05 +Pleasanton,,FIREBALL,CA,1/19/2014 17:30 +Sandy,RED,SPHERE,UT,1/19/2014 18:00 +Harvey,,FIREBALL,LA,1/19/2014 18:20 +Wellington,,LIGHT,FL,1/19/2014 18:36 +Vail,,FLASH,CO,1/19/2014 19:00 +Carlsbad,,CIRCLE,CA,1/19/2014 19:17 +Pflugerville,RED ORANGE,FORMATION,TX,1/19/2014 19:20 +Prescott Valley,,CIRCLE,AZ,1/19/2014 19:20 +Freehold,,CIRCLE,NJ,1/19/2014 19:30 +Las Cruces,RED YELLOW,LIGHT,NM,1/19/2014 19:45 +Redwood Valley,GREEN BLUE,VARIOUS,CA,1/19/2014 20:00 +Prescott,,FIREBALL,AZ,1/19/2014 20:15 +Walnut,,CIRCLE,CA,1/19/2014 20:50 +Elsmere,YELLOW,LIGHT,DE,1/19/2014 21:00 +Delanco,ORANGE,LIGHT,NJ,1/19/2014 21:15 +Portland,,LIGHT,OR,1/19/2014 23:00 +Raleigh,RED,CIRCLE,NC,1/19/2014 23:00 +Riverview,,OTHER,FL,1/19/2014 23:00 +Wake Forest,,FORMATION,NC,1/19/2014 23:00 +Spokane,,TRIANGLE,WA,1/20/2014 3:23 +Atlanta,,CYLINDER,GA,1/20/2014 14:45 +El Cajon,,OTHER,CA,1/20/2014 16:40 +New York City,,CYLINDER,NY,1/20/2014 17:00 +Appleton,,LIGHT,WI,1/20/2014 17:10 +Old Hickory,,LIGHT,TN,1/20/2014 17:24 +Lake Havasu,RED,TEARDROP,AZ,1/20/2014 17:30 +Litchfield Park,ORANGE,OVAL,AZ,1/20/2014 18:00 +Marshall,,OTHER,OK,1/20/2014 18:00 +Jupiter,,VARIOUS,FL,1/20/2014 19:15 +Madison,ORANGE,TRIANGLE,AL,1/20/2014 19:30 +Morganton,ORANGE,CIRCLE,NC,1/20/2014 19:45 +San Antonio,,FIREBALL,TX,1/20/2014 20:00 +Wappapello,ORANGE,LIGHT,MO,1/20/2014 20:00 +San Antonio,,FIREBALL,TX,1/20/2014 20:05 +Westport,ORANGE,VARIOUS,MA,1/20/2014 21:00 +Carnation,,TRIANGLE,WA,1/20/2014 21:13 +Summerville,,LIGHT,SC,1/20/2014 21:30 +Sacramento,RED,TRIANGLE,CA,1/20/2014 22:30 +Salem,,TRIANGLE,NJ,1/20/2014 23:25 +Luna,,FIREBALL,NM,1/21/2014 0:45 +Ducannon,,,PA,1/21/2014 1:00 +Lynnwood,,FIREBALL,WA,1/21/2014 5:30 +Thousand Oaks,RED BLUE,LIGHT,CA,1/21/2014 6:00 +Montana City,,VARIOUS,MT,1/21/2014 6:50 +Morrisville,ORANGE,LIGHT,PA,1/21/2014 7:15 +Park City,,EGG,UT,1/21/2014 8:30 +Milo,,SPHERE,MO,1/21/2014 17:30 +Dahlonega,ORANGE,CIRCLE,GA,1/21/2014 19:30 +Mariposa,,CIRCLE,CA,1/21/2014 19:30 +Oakley,,DISK,CA,1/21/2014 20:00 +Clermont,,DISK,FL,1/21/2014 20:15 +Congress,YELLOW,LIGHT,AZ,1/21/2014 20:25 +Westport,ORANGE,VARIOUS,MA,1/21/2014 21:00 +Vacaville,RED,LIGHT,CA,1/21/2014 21:45 +Hampton Bays,,LIGHT,NY,1/21/2014 22:30 +Overton,ORANGE,TRIANGLE,NV,1/21/2014 23:00 +Lake Panasoffkee,,SPHERE,FL,1/22/2014 8:45 +Sunrise,,OTHER,FL,1/22/2014 10:00 +Miramar,,,FL,1/22/2014 10:30 +Suwanee,RED GREEN,RECTANGLE,GA,1/22/2014 15:30 +Ashburn,,LIGHT,VA,1/22/2014 16:45 +Marysville,,CIRCLE,CA,1/22/2014 17:15 +Scottsdale,RED,LIGHT,AZ,1/22/2014 18:00 +Longview,,LIGHT,WA,1/22/2014 18:30 +Maricopa,ORANGE,,AZ,1/22/2014 19:00 +Micco,,CIRCLE,FL,1/22/2014 19:00 +New Braunfels,,TEARDROP,TX,1/22/2014 19:37 +Houston,,CIRCLE,TX,1/22/2014 20:00 +Hialeah,,LIGHT,FL,1/22/2014 21:15 +Eureka,RED,LIGHT,CA,1/22/2014 21:35 +Tabernacle,,,NJ,1/23/2014 0:05 +Huntsville,RED,TRIANGLE,AL,1/23/2014 2:00 +Walnut Creek,,,CA,1/23/2014 7:40 +Raleigh,,DISK,NC,1/23/2014 12:00 +Hudson,,CIRCLE,NH,1/23/2014 13:00 +Greenfield,,LIGHT,PA,1/23/2014 15:15 +Arbuckle,,SPHERE,CA,1/23/2014 17:30 +Farmington,ORANGE,OVAL,UT,1/23/2014 17:35 +Ellisville,RED,TRIANGLE,MS,1/23/2014 19:00 +Myrtle Beach,,FLASH,SC,1/23/2014 19:00 +Saginaw,RED,TRIANGLE,MI,1/23/2014 19:00 +Maricopa,ORANGE,,AZ,1/23/2014 19:30 +Hudson,,CIRCLE,NH,1/23/2014 19:45 +Rutland,GREEN,OVAL,MA,1/23/2014 20:14 +Lacrosse,,OVAL,FL,1/23/2014 20:15 +Phoenix,,CIRCLE,AZ,1/23/2014 20:30 +Salome,,LIGHT,AZ,1/23/2014 20:50 +Oviedo,,FIREBALL,FL,1/23/2014 21:35 +Vero Beach,,FIREBALL,FL,1/23/2014 21:45 +Clackamas,,LIGHT,OR,1/23/2014 22:00 +Conyers,RED,SPHERE,GA,1/23/2014 22:00 +Miami,,FIREBALL,FL,1/23/2014 22:00 +Fort Washakie,RED,LIGHT,WY,1/23/2014 23:00 +Noblesville,,TRIANGLE,IN,1/23/2014 23:40 +Maumee,,CIRCLE,OH,1/24/2014 6:50 +Spokane Valley,,LIGHT,WA,1/24/2014 17:15 +Campbell,,OTHER,CA,1/24/2014 17:48 +Kelso,ORANGE,SPHERE,WA,1/24/2014 18:00 +McLean,,FORMATION,VA,1/24/2014 18:00 +Lewisville,,LIGHT,TX,1/24/2014 18:55 +Seattle,,LIGHT,WA,1/24/2014 19:00 +Stilwell,,LIGHT,OK,1/24/2014 19:00 +San Marcos,,DISK,TX,1/24/2014 19:23 +Little River,,LIGHT,SC,1/24/2014 19:30 +Hernando,,CIRCLE,MS,1/24/2014 19:45 +Honolulu,RED,LIGHT,HI,1/24/2014 19:55 +Lubbock,,LIGHT,TX,1/24/2014 20:00 +Caldwell,,FORMATION,ID,1/24/2014 20:04 +Kelso,ORANGE,FORMATION,WA,1/24/2014 20:05 +Hillsboro,,FORMATION,OR,1/24/2014 21:20 +Seattle,,LIGHT,WA,1/24/2014 21:30 +Highlands Ranch,ORANGE,FIREBALL,CO,1/24/2014 21:40 +Beebe,,TRIANGLE,AR,1/24/2014 21:45 +Levittown,,,NY,1/24/2014 22:05 +Frankfort,RED BLUE,TRIANGLE,KY,1/24/2014 23:12 +Portland,,,OR,1/24/2014 23:59 +Novi,GREEN,LIGHT,MI,1/25/2014 1:30 +Salem,,FLASH,OR,1/25/2014 1:30 +Desert Hot Springs,,DIAMOND,CA,1/25/2014 2:10 +Centennial,,TRIANGLE,CO,1/25/2014 2:30 +Hermon,,TRIANGLE,ME,1/25/2014 3:00 +Raleigh,,DIAMOND,NC,1/25/2014 7:27 +Santa Cruz,RED,LIGHT,CA,1/25/2014 18:50 +Kent,ORANGE,VARIOUS,WA,1/25/2014 19:30 +Kennesaw,RED GREEN,,GA,1/25/2014 20:00 +Elgini,,FORMATION,IL,1/25/2014 20:30 +Cape Coral,ORANGE,LIGHT,FL,1/25/2014 20:35 +Irvine,,TRIANGLE,CA,1/25/2014 20:45 +Palm Beach Gardens,ORANGE,CIRCLE,FL,1/25/2014 20:45 +Whitefield,ORANGE,SPHERE,NH,1/25/2014 20:48 +Belgrade,,DIAMOND,MT,1/25/2014 20:53 +Fort Myers,RED,FIREBALL,FL,1/25/2014 21:30 +Hollister,,SPHERE,CA,1/25/2014 21:45 +Tewksbury,RED,LIGHT,MA,1/25/2014 22:00 +Vero Beach,,OTHER,FL,1/25/2014 22:00 +Vero Beach,,OTHER,FL,1/25/2014 22:00 +Diamond Lake,RED,LIGHT,OR,1/25/2014 22:02 +Lakeland,,DIAMOND,FL,1/25/2014 22:20 +Whitefish,,FIREBALL,MT,1/25/2014 22:30 +Sunrise,,FIREBALL,FL,1/25/2014 22:45 +Jupiter,RED,SPHERE,FL,1/25/2014 22:51 +Washburn,,LIGHT,ND,1/25/2014 23:30 +Wetumpka,,SPHERE,AL,1/26/2014 0:00 +Lynden,RED GREEN,FLASH,WA,1/26/2014 2:20 +Kill Devil Hills,,TRIANGLE,NC,1/26/2014 4:00 +Kearny,,OVAL,NJ,1/26/2014 9:30 +Kelso,,FIREBALL,WA,1/26/2014 17:15 +San Clemente,ORANGE,CIRCLE,CA,1/26/2014 17:35 +Albuquerque,,EGG,NM,1/26/2014 18:30 +Herndon,,SPHERE,VA,1/26/2014 18:35 +North Arlington,,FIREBALL,NJ,1/26/2014 20:00 +North Arlington,,TRIANGLE,NJ,1/26/2014 20:34 +Jacksonville,,DISK,FL,1/26/2014 21:00 +North Miami,,CIRCLE,FL,1/26/2014 22:30 +Athens,,OVAL,TN,1/27/2014 0:02 +Alameda,,DIAMOND,CA,1/27/2014 1:00 +Rancho Palos Verdes,,LIGHT,CA,1/27/2014 2:25 +Englewood,,VARIOUS,FL,1/27/2014 4:00 +Seattle,,FIREBALL,WA,1/27/2014 7:00 +Sarasota,RED,FIREBALL,FL,1/27/2014 8:00 +Chillicothe,,CIRCLE,OH,1/27/2014 15:30 +Longview,RED,FIREBALL,WA,1/27/2014 17:35 +Highfill,GREEN,TRIANGLE,AR,1/27/2014 19:30 +Midvale,,OTHER,UT,1/27/2014 20:15 +Tucson,RED,OTHER,AZ,1/27/2014 21:05 +Hayward,,OVAL,CA,1/28/2014 1:15 +Mizpah,GREEN,DIAMOND,NJ,1/28/2014 2:47 +Little Elm,RED,TRIANGLE,TX,1/28/2014 9:03 +Jeffersonville,BLUE,TRIANGLE,KY,1/28/2014 11:23 +St. Petersburg,,FLASH,FL,1/28/2014 13:24 +Punta Gorda,,LIGHT,FL,1/28/2014 18:45 +Downeast,RED,CIRCLE,ME,1/28/2014 19:00 +Destin,ORANGE,LIGHT,FL,1/28/2014 19:15 +Bowling Green,,FIREBALL,KY,1/28/2014 19:17 +Fayetteville,GREEN,FLASH,AR,1/28/2014 20:30 +Sultana,GREEN,CIRCLE,CA,1/28/2014 21:00 +Las Vegas,,LIGHT,NV,1/28/2014 21:10 +Morristown,,,TN,1/28/2014 21:30 +Elk Grove,,FLASH,CA,1/28/2014 21:37 +Omaha,,FORMATION,TX,1/28/2014 23:15 +James Island,,FLASH,SC,1/28/2014 23:45 +Leetsdale,,LIGHT,PA,1/29/2014 0:00 +Beech Grove,RED,TRIANGLE,IN,1/29/2014 2:00 +Fort Lauderdale,,,FL,1/29/2014 5:30 +Palm Beach Gardens,,DISK,FL,1/29/2014 6:05 +Ahwatukee,,LIGHT,AZ,1/29/2014 7:30 +Plaistow,RED,SPHERE,NH,1/29/2014 17:45 +Scurry,RED,CIRCLE,TX,1/29/2014 18:00 +Longmont,,DISK,CO,1/29/2014 18:17 +Scottdale,,TRIANGLE,PA,1/29/2014 18:41 +Scottdale,,TRIANGLE,PA,1/29/2014 18:49 +Santa Clarita,ORANGE,CIRCLE,CA,1/29/2014 19:34 +Fort Wayne,,LIGHT,IN,1/29/2014 20:00 +Schenectady,,TRIANGLE,NY,1/29/2014 20:00 +Oakton,,DIAMOND,VA,1/29/2014 20:10 +Fort Wayne,,TRIANGLE,IN,1/29/2014 21:00 +Piqua,,LIGHT,OH,1/29/2014 21:10 +Avondale,ORANGE,LIGHT,AZ,1/29/2014 23:00 +Oklahoma City,,DISK,OK,1/29/2014 23:00 +Hot Springs,,,AR,1/30/2014 0:00 +Lorton,,,VA,1/30/2014 0:10 +Malden,,LIGHT,MA,1/30/2014 2:00 +Winchester,,,VA,1/30/2014 4:45 +Fayatteville,,LIGHT,TN,1/30/2014 5:00 +Yarmouth,,OVAL,MA,1/30/2014 5:30 +San Manuel,,LIGHT,AZ,1/30/2014 6:40 +West Greenwich,,CIRCLE,RI,1/30/2014 17:30 +Alanson,,DISK,MI,1/30/2014 18:00 +Orange,,DIAMOND,CA,1/30/2014 18:00 +Boscawen,,CIRCLE,NH,1/30/2014 18:30 +Maryville,RED,CHEVRON,TN,1/30/2014 20:30 +Lynden,,OTHER,WA,1/30/2014 21:03 +Charlotte,RED ORANGE,,NC,1/30/2014 21:50 +Front Royal,,SPHERE,VA,1/30/2014 22:20 +Hudson,,CIRCLE,OH,1/30/2014 22:30 +Talladega,,TRIANGLE,AL,1/30/2014 22:30 +Gray Court,,OTHER,SC,1/30/2014 23:00 +Greenville,,TRIANGLE,SC,1/30/2014 23:45 +Reidsville,,OTHER,NC,1/31/2014 0:00 +Winchester,,FORMATION,VA,1/31/2014 0:00 +Galatia,,,IL,1/31/2014 3:45 +Eugene,,VARIOUS,OR,1/31/2014 18:00 +Salem,RED,,OR,1/31/2014 18:36 +Salem,ORANGE,SPHERE,OR,1/31/2014 18:40 +Decatur,,TRIANGLE,GA,1/31/2014 20:00 +Morganton,,LIGHT,NC,1/31/2014 20:00 +Kaanapali,,FIREBALL,CO,1/31/2014 20:30 +Alexandria,,LIGHT,VA,1/31/2014 20:54 +Cummings,,LIGHT,GA,1/31/2014 21:00 +Homestead,ORANGE,FORMATION,FL,1/31/2014 21:00 +Wilmington,,LIGHT,DE,1/31/2014 21:00 +Davie,,CIRCLE,FL,1/31/2014 21:10 +State College,,FIREBALL,PA,1/31/2014 21:30 +Sparks,ORANGE,LIGHT,NV,1/31/2014 21:40 +Winchester,,TRIANGLE,VA,1/31/2014 21:45 +Anchorage,ORANGE,CYLINDER,AK,1/31/2014 22:00 +Conestoga,,FORMATION,PA,1/31/2014 22:00 +Denham Springs,GREEN,LIGHT,LA,1/31/2014 22:30 +Parkville,,TRIANGLE,MD,1/31/2014 22:50 +Tonopah,,OVAL,NV,1/31/2014 23:30 +Chesapeake,RED ORANGE GREEN BLUE,CIRCLE,VA,2/1/2014 1:00 +Jonesboro,,LIGHT,GA,2/1/2014 1:43 +Temperance,YELLOW GREEN BLUE,,MI,2/1/2014 4:00 +University Park,,TRIANGLE,FL,2/1/2014 5:00 +South Kingstown,,TRIANGLE,RI,2/1/2014 15:25 +Sacramento,,FORMATION,CA,2/1/2014 15:30 +Fresno,,OTHER,CA,2/1/2014 15:43 +Stoughton,,FIREBALL,MA,2/1/2014 16:00 +St. Augustine,,CIRCLE,FL,2/1/2014 17:30 +Spring Hill,ORANGE,FIREBALL,TN,2/1/2014 18:00 +Gresham,RED,FIREBALL,OR,2/1/2014 18:50 +Kent,RED,SPHERE,WA,2/1/2014 19:00 +Miami,GREEN,OTHER,FL,2/1/2014 19:07 +Mesquite,,SPHERE,NV,2/1/2014 19:15 +McDonald,,LIGHT,PA,2/1/2014 20:00 +Myrtle Creek,RED,LIGHT,OR,2/1/2014 20:00 +New York City,GREEN,CIRCLE,NY,2/1/2014 20:00 +Imperial,,LIGHT,PA,2/1/2014 20:30 +Huntington,,FIREBALL,WV,2/1/2014 20:33 +Covina,,LIGHT,CA,2/1/2014 20:58 +Bellevue,ORANGE,FIREBALL,ID,2/1/2014 21:00 +Middleburg,RED,,FL,2/1/2014 21:00 +Richmond,,CIRCLE,VA,2/1/2014 21:00 +Atlanta,GREEN,TRIANGLE,GA,2/1/2014 21:09 +Portland,,LIGHT,OR,2/1/2014 21:30 +Salt Lake City,,LIGHT,UT,2/1/2014 21:30 +Oakland Park,,LIGHT,FL,2/1/2014 22:10 +Boise,,CIRCLE,ID,2/1/2014 22:48 +Charleston,,FORMATION,SC,2/1/2014 22:50 +Chattanooga,ORANGE,OVAL,TN,2/2/2014 0:00 +Wellington,ORANGE,FIREBALL,FL,2/2/2014 0:00 +Miami,RED,CIRCLE,FL,2/2/2014 0:42 +Aurora,,,CO,2/2/2014 2:00 +Mount Airy,,VARIOUS,NC,2/2/2014 5:00 +Clinton,,,TN,2/2/2014 15:00 +Portland,,OTHER,OR,2/2/2014 18:00 +Huntington Beach,RED,LIGHT,CA,2/2/2014 19:00 +Portland,RED,,OR,2/2/2014 19:00 +Auburn,,LIGHT,WA,2/2/2014 19:10 +Highland,ORANGE,LIGHT,CA,2/2/2014 19:35 +Aberdeen,RED,CROSS,WA,2/2/2014 20:00 +Port St. Lucie,,DISK,FL,2/2/2014 20:10 +Thatcher,,CIRCLE,AZ,2/2/2014 20:30 +West Palm Beach,,CIRCLE,FL,2/2/2014 20:47 +Bluefield,,OTHER,WV,2/2/2014 21:00 +Ann Arbor,,TRIANGLE,MI,2/2/2014 21:30 +Billings,RED,LIGHT,MT,2/2/2014 22:00 +Fairfield,YELLOW,OTHER,CA,2/2/2014 22:00 +North Augusta,ORANGE,SPHERE,SC,2/2/2014 22:00 +Princeton,,LIGHT,WV,2/2/2014 22:00 +Brentwood,,DISK,CA,2/3/2014 15:00 +Hooksett,,SPHERE,NH,2/3/2014 19:00 +Paramount,GREEN,FIREBALL,CA,2/3/2014 20:00 +Placitas,,LIGHT,NM,2/3/2014 20:00 +Ritzville,,CONE,WA,2/3/2014 20:00 +Ritzville,,CONE,WA,2/3/2014 20:00 +San Jose,,TRIANGLE,CA,2/3/2014 21:00 +DeKalb,,FIREBALL,IL,2/3/2014 23:15 +Puyallup,,SPHERE,WA,2/4/2014 0:00 +Lexington,GREEN,DISK,SC,2/4/2014 6:55 +Revere,,TRIANGLE,MN,2/4/2014 7:42 +Denver,,OVAL,CO,2/4/2014 9:45 +West Friendship area,,SPHERE,MD,2/4/2014 18:05 +St. Petersburg,,OTHER,FL,2/4/2014 19:30 +North Las Vegas,,CIRCLE,NV,2/4/2014 19:50 +Huntington,RED ORANGE BLUE,OTHER,WV,2/4/2014 21:58 +Butler,,LIGHT,TN,2/4/2014 23:09 +Beckley,,FORMATION,WV,2/5/2014 0:40 +Monaca,ORANGE,,PA,2/5/2014 1:00 +Campbellsville,,,KY,2/5/2014 1:45 +Spokane,,DISK,WA,2/5/2014 2:00 +Slidell,,CIRCLE,LA,2/5/2014 12:52 +Spokane,,SPHERE,WA,2/5/2014 15:20 +Fort Myers,,OTHER,FL,2/5/2014 17:55 +Durham,BLUE,CHEVRON,NC,2/5/2014 18:45 +Mobile,,,AL,2/5/2014 19:00 +Columbia Falls,,LIGHT,MT,2/5/2014 19:30 +Mesa,ORANGE,OVAL,AZ,2/5/2014 19:30 +Independence,ORANGE,LIGHT,OR,2/5/2014 20:10 +Deerfield Beach,ORANGE,LIGHT,FL,2/5/2014 21:00 +Hershey,,LIGHT,PA,2/5/2014 21:00 +Moreno Valley,,LIGHT,CA,2/5/2014 21:00 +Wahiawa,RED,CIRCLE,HI,2/5/2014 21:12 +Strafford,,OVAL,NH,2/6/2014 3:45 +Las Vegas,,FORMATION,NV,2/6/2014 5:54 +Portland,,LIGHT,OR,2/6/2014 13:45 +Middleton,,CYLINDER,WI,2/6/2014 15:15 +Borrego Springs,,OTHER,CA,2/6/2014 16:39 +New Paltz,,VARIOUS,NY,2/6/2014 17:17 +Clarksburg,,LIGHT,MD,2/6/2014 17:45 +Hope Mills,,DISK,NC,2/6/2014 18:10 +Las Vegas,,CIRCLE,NV,2/6/2014 18:30 +Idaho Falls,,CIRCLE,ID,2/6/2014 18:43 +New York City,RED,CIRCLE,NY,2/6/2014 21:00 +Ravenna,ORANGE,LIGHT,OH,2/7/2014 0:00 +Laconia,,LIGHT,NH,2/7/2014 1:40 +Ridgecrest,,,CA,2/7/2014 3:50 +Henderson,,OVAL,NV,2/7/2014 4:10 +Isla Vista,GREEN,LIGHT,CA,2/7/2014 5:18 +Pie Town,,DISK,NM,2/7/2014 11:32 +Veradale,GREEN,TRIANGLE,WA,2/7/2014 17:18 +Hamilton,,OVAL,MT,2/7/2014 17:30 +Bozeman,GREEN,CIRCLE,MT,2/7/2014 18:00 +Tonasket,BLUE,CIGAR,WA,2/7/2014 18:06 +Upland,,CIRCLE,CA,2/7/2014 18:15 +Harriman,,FIREBALL,NY,2/7/2014 18:30 +no data,RED,DISK,TX,2/7/2014 18:30 +Houma,,CIRCLE,LA,2/7/2014 19:00 +Madison Lake,ORANGE,LIGHT,MN,2/7/2014 19:50 +Salt Lake City,RED,FIREBALL,UT,2/7/2014 20:50 +Garden Grove,GREEN,,CA,2/7/2014 20:54 +Pasadena,ORANGE,,MD,2/7/2014 20:55 +Rochester,ORANGE,LIGHT,NY,2/7/2014 20:55 +Apex,,LIGHT,NC,2/7/2014 21:00 +Gilbert,,OTHER,AZ,2/7/2014 21:00 +Westminster,,LIGHT,MD,2/7/2014 22:40 +Woodland Hills,,TRIANGLE,CA,2/7/2014 23:40 +Hockley,,SPHERE,TX,2/8/2014 1:00 +Louisville,,TRIANGLE,OH,2/8/2014 1:00 +Arlington,RED ORANGE,TRIANGLE,WI,2/8/2014 3:00 +Eustis,,OTHER,FL,2/8/2014 3:00 +Manchester,,LIGHT,NH,2/8/2014 6:00 +Williston,,CIRCLE,VT,2/8/2014 6:00 +Haiku,RED,LIGHT,HI,2/8/2014 8:12 +Tucson,,OTHER,AZ,2/8/2014 13:15 +Chesapeake,BLUE,LIGHT,VA,2/8/2014 18:00 +New York City,GREEN,SPHERE,NY,2/8/2014 18:10 +Oildale,RED YELLOW,CIRCLE,CA,2/8/2014 18:45 +Boulder City,ORANGE,CIGAR,NV,2/8/2014 19:00 +Allouez,RED,FORMATION,WI,2/8/2014 19:50 +Davie,,LIGHT,FL,2/8/2014 19:50 +Eastpointe,,LIGHT,MI,2/8/2014 20:00 +Fairhope,GREEN,CROSS,AL,2/8/2014 20:00 +Glendale,ORANGE,LIGHT,AZ,2/8/2014 20:00 +Nashville,,FIREBALL,TN,2/8/2014 20:30 +Flushing,ORANGE,CYLINDER,NY,2/8/2014 21:30 +Leesburg,ORANGE,LIGHT,VA,2/8/2014 21:35 +Easton,RED,,CT,2/8/2014 22:10 +New York City,RED,CIRCLE,NY,2/8/2014 22:30 +Scappoose,,LIGHT,OR,2/8/2014 23:00 +Coral Springs,ORANGE,OVAL,FL,2/8/2014 23:30 +Bethel,,DIAMOND,NY,2/9/2014 1:05 +Jacksonville,,FIREBALL,FL,2/9/2014 2:00 +Vineland,RED,LIGHT,NJ,2/9/2014 12:00 +Rockville,,FIREBALL,MD,2/9/2014 18:00 +Clinton,,CIRCLE,IA,2/9/2014 19:37 +Newnan,RED,CIRCLE,GA,2/9/2014 19:45 +St. Anthony,,CIRCLE,MN,2/9/2014 20:00 +Mandeville,,LIGHT,LA,2/9/2014 20:15 +Maricopa,,OVAL,AZ,2/9/2014 20:32 +Lahaina,RED,LIGHT,HI,2/9/2014 21:35 +Franklin,,RECTANGLE,WI,2/10/2014 5:00 +Pi,,FLASH,CA,2/10/2014 9:00 +Murrells Inlet,,OTHER,SC,2/10/2014 10:10 +Geneva Hills,,CIGAR,OH,2/10/2014 14:38 +Newport,,DIAMOND,NH,2/10/2014 15:00 +Poughquag,,DIAMOND,NY,2/10/2014 18:20 +Wilmington,RED,TRIANGLE,NC,2/10/2014 20:30 +Oakville,,TRIANGLE,CT,2/10/2014 20:35 +Elmhurst,ORANGE,FIREBALL,IL,2/10/2014 21:00 +North Tewksbury,RED,,MA,2/10/2014 21:00 +Albuquerque,,LIGHT,NM,2/10/2014 22:30 +Las Vegas,,FIREBALL,NV,2/10/2014 22:30 +Las Vegas,ORANGE,SPHERE,NV,2/10/2014 23:00 +Enterprise,YELLOW,OVAL,UT,2/10/2014 23:37 +Biddeford,,CIRCLE,ME,2/11/2014 3:45 +Deming,,VARIOUS,NM,2/11/2014 14:00 +Jacksonville,,OTHER,FL,2/11/2014 19:00 +Afton,,SPHERE,MO,2/11/2014 19:03 +St. Louis,,CIGAR,MO,2/11/2014 19:12 +Oak Ridge,,CHEVRON,TN,2/11/2014 19:45 +Ammon,,TRIANGLE,ID,2/11/2014 20:17 +New Port Richey,RED,,FL,2/11/2014 20:30 +Mukwonago,GREEN,SPHERE,WI,2/11/2014 21:08 +Plano,,LIGHT,TX,2/11/2014 22:10 +Evansville,,CYLINDER,IN,2/11/2014 22:30 +Trimble,,DISK,MO,2/11/2014 22:48 +Nineveh,,TRIANGLE,IN,2/11/2014 23:15 +Cedar City,ORANGE,SPHERE,UT,2/11/2014 23:45 +Fairborn,,OTHER,OH,2/12/2014 17:00 +Thetford Center,,OTHER,VT,2/12/2014 19:00 +Missoula,RED,FIREBALL,MT,2/12/2014 20:40 +Salinas,,VARIOUS,CA,2/13/2014 5:00 +Chapmansboro,,OTHER,TN,2/13/2014 5:30 +Salem,,CIRCLE,OR,2/13/2014 5:45 +Coral Springs,,OVAL,FL,2/13/2014 6:05 +Princeton,,CYLINDER,IN,2/13/2014 10:30 +Colorado Springs,,SPHERE,CO,2/13/2014 12:00 +Murfeesboro,,OVAL,TN,2/13/2014 14:50 +Franklin,,FIREBALL,TN,2/13/2014 18:00 +Long Point,,LIGHT,IL,2/13/2014 18:00 +Miami,,LIGHT,FL,2/13/2014 18:59 +Parker,,LIGHT,AZ,2/13/2014 19:07 +Mercey Hot Springs,,LIGHT,CA,2/13/2014 19:25 +Monroe,RED,LIGHT,WA,2/13/2014 21:00 +Butte,,LIGHT,MT,2/13/2014 21:38 +Butte,,LIGHT,MT,2/13/2014 21:38 +West Kendall,,CIRCLE,FL,2/13/2014 22:15 +Citrus Heights,,OVAL,CA,2/13/2014 23:30 +Portland,ORANGE,CIRCLE,OR,2/14/2014 0:15 +Chesnee,,CIGAR,SC,2/14/2014 1:00 +Chester,,LIGHT,PA,2/14/2014 5:45 +Calhoun,,TRIANGLE,GA,2/14/2014 6:25 +Seaside,,DISK,OR,2/14/2014 6:25 +Janesville,GREEN,CIRCLE,WI,2/14/2014 9:10 +Upper Marlboro,,SPHERE,MD,2/14/2014 12:20 +Columbia,BLUE,OVAL,SC,2/14/2014 17:30 +Stephens City,RED,LIGHT,VA,2/14/2014 18:45 +Pueblo,ORANGE,FIREBALL,CO,2/14/2014 19:00 +Winter Park,,OTHER,FL,2/14/2014 19:00 +Evans,RED ORANGE,SPHERE,GA,2/14/2014 19:40 +Tucson,ORANGE,LIGHT,AZ,2/14/2014 19:45 +Ft. Denaud,,CIRCLE,FL,2/14/2014 20:00 +Greenacres,,SPHERE,FL,2/14/2014 20:30 +Rio Linda,ORANGE,CIRCLE,CA,2/14/2014 21:00 +Ridgecrest,BLUE,,CA,2/14/2014 21:19 +Louisburg,,CIRCLE,NC,2/14/2014 21:30 +Loveland,,,CO,2/14/2014 21:30 +Yuba City,,LIGHT,CA,2/14/2014 21:30 +Mineral Bluff,,CIGAR,GA,2/14/2014 21:34 +Raleigh,RED,SPHERE,NC,2/14/2014 21:45 +Santa Cruz,ORANGE,,CA,2/14/2014 21:45 +Exton,,,PA,2/14/2014 22:00 +Newport Beach,,FIREBALL,CA,2/14/2014 22:00 +Philadelphia,,FIREBALL,PA,2/14/2014 22:00 +Salt Lake City,,FIREBALL,UT,2/14/2014 22:00 +San Francisco,,LIGHT,CA,2/14/2014 22:00 +Kirkland,ORANGE,CIRCLE,WA,2/14/2014 22:08 +Lebanon,,FIREBALL,PA,2/14/2014 22:30 +Clearwater,,TRIANGLE,FL,2/15/2014 1:20 +Santa Ana,ORANGE,EGG,CA,2/15/2014 1:30 +City of Industry,RED,,CA,2/15/2014 1:59 +Lake Ft Phantom,,CIRCLE,TX,2/15/2014 5:40 +Arvada,,TRIANGLE,CO,2/15/2014 18:14 +Juno Beach,,FIREBALL,FL,2/15/2014 19:00 +Rancho Cucamonga,,CYLINDER,CA,2/15/2014 19:00 +Wabash,RED,FIREBALL,IN,2/15/2014 19:23 +Pasadena,ORANGE,LIGHT,MD,2/15/2014 20:12 +Perry,,FORMATION,GA,2/15/2014 20:30 +Las Vegas,,FIREBALL,NV,2/15/2014 20:45 +Webster,,,MA,2/15/2014 21:30 +Ford,,LIGHT,VA,2/15/2014 21:45 +Lakeland,ORANGE,FIREBALL,FL,2/15/2014 22:30 +Palm City,,OVAL,FL,2/15/2014 23:20 +Boynton Beach,ORANGE,TRIANGLE,FL,2/15/2014 23:30 +Sequim,,VARIOUS,WA,2/15/2014 23:45 +Sacramento,,CIGAR,CA,2/16/2014 3:30 +Quartzite,,OVAL,AZ,2/16/2014 11:00 +Custer,,CIRCLE,WI,2/16/2014 15:00 +Lantana,,OTHER,FL,2/16/2014 16:00 +Stockton,,CIRCLE,CA,2/16/2014 16:00 +Edison,,OVAL,NJ,2/16/2014 17:25 +Elk Grove,ORANGE,SPHERE,CA,2/16/2014 19:30 +Cambria,ORANGE,CIRCLE,CA,2/16/2014 20:00 +Woodland,,,WA,2/16/2014 21:10 +Pismo,ORANGE,EGG,CA,2/16/2014 21:45 +Surprise,,OTHER,AZ,2/16/2014 23:00 +Unspecified city,,,OK,2/17/2014 0:00 +Cusseta,,LIGHT,AL,2/17/2014 0:14 +Atwater,,OTHER,CA,2/17/2014 0:32 +Winter Park,ORANGE,VARIOUS,FL,2/17/2014 0:40 +Bowie,,LIGHT,MD,2/17/2014 11:00 +Keaton Beach,,OVAL,FL,2/17/2014 13:00 +Fresno,,,CA,2/17/2014 15:40 +Milwaukie,,TRIANGLE,OR,2/17/2014 18:30 +Decatur,ORANGE,,AL,2/17/2014 19:00 +Collegeville,,LIGHT,PA,2/17/2014 20:00 +Boise,RED,LIGHT,ID,2/17/2014 21:00 +Salt Lake City,,FIREBALL,UT,2/17/2014 21:15 +Dallas,,TRIANGLE,TX,2/17/2014 22:00 +Hopewell,,TRIANGLE,VA,2/17/2014 22:30 +Pembroke,ORANGE YELLOW,CIRCLE,MA,2/17/2014 22:50 +selinsgrove,,LIGHT,PA,2/18/2014 0:00 +Fairmont,,LIGHT,WV,2/18/2014 1:40 +Danville,GREEN,,CA,2/18/2014 2:22 +Lihue,,DIAMOND,HI,2/18/2014 6:20 +Toney,,DISK,AL,2/18/2014 8:15 +Toney,GREEN,OVAL,AL,2/18/2014 8:15 +Tampa,,CIRCLE,FL,2/18/2014 9:46 +Cape Canaveral,,CYLINDER,FL,2/18/2014 10:50 +Warr acres,,CONE,OK,2/18/2014 16:25 +Houston,,DISK,TX,2/18/2014 18:00 +Chicago,,CIGAR,IL,2/18/2014 18:55 +Tucson,ORANGE,LIGHT,AZ,2/18/2014 19:16 +Richmond,,FIREBALL,IN,2/18/2014 19:35 +Wentzville,,TRIANGLE,MO,2/18/2014 20:50 +Mardela Springs,,LIGHT,MD,2/18/2014 22:00 +Lame Deer,,,MT,2/18/2014 22:30 +Fallbrook,,CIRCLE,CA,2/18/2014 23:20 +Philadelphia,BLUE,LIGHT,PA,2/19/2014 0:00 +Palm City,,FIREBALL,FL,2/19/2014 0:30 +Palm City,,FIREBALL,FL,2/19/2014 0:30 +Helena,,,MT,2/19/2014 1:00 +Albuquerque,,,NM,2/19/2014 3:00 +Anchorage,,FLASH,AK,2/19/2014 3:00 +Mukwonago,,DIAMOND,WI,2/19/2014 5:15 +Boise,,CIRCLE,ID,2/19/2014 7:12 +Augusta,,CROSS,GA,2/19/2014 11:00 +Tulsa,,,OK,2/19/2014 15:00 +Columbia,,VARIOUS,SC,2/19/2014 15:17 +Moneta,,FORMATION,VA,2/19/2014 18:00 +Wirtz,RED,FORMATION,VA,2/19/2014 18:00 +Huntingtown,,LIGHT,MD,2/19/2014 18:15 +Raleigh,,FLASH,NC,2/19/2014 18:15 +Monterey Bay,ORANGE,FIREBALL,CA,2/19/2014 20:00 +Tucson,RED,LIGHT,AZ,2/19/2014 20:00 +Maricopa,,LIGHT,AZ,2/19/2014 20:30 +Moncks Corner,RED,SPHERE,SC,2/19/2014 20:30 +Bakersfield,,TRIANGLE,CA,2/19/2014 20:45 +Houston,,,TX,2/19/2014 21:20 +Maricopa,GREEN,LIGHT,AZ,2/20/2014 2:30 +Savannah,,OVAL,GA,2/20/2014 2:35 +Wilmington,,CHEVRON,DE,2/20/2014 6:50 +Riverbank,,LIGHT,CA,2/20/2014 8:30 +Orlando,,CIRCLE,FL,2/20/2014 9:00 +Seffner,,OTHER,FL,2/20/2014 10:00 +Fountain,RED,CIRCLE,CO,2/20/2014 18:30 +Broomall,ORANGE,SPHERE,PA,2/20/2014 19:00 +Vero Beach,ORANGE,FIREBALL,FL,2/20/2014 19:50 +Asheville,,CROSS,NC,2/20/2014 20:30 +Gila Bend,ORANGE,CIRCLE,AZ,2/20/2014 20:30 +Orlando,ORANGE,CIRCLE,FL,2/20/2014 20:55 +Tehama,,CHEVRON,CA,2/20/2014 21:00 +Saint Cloud,RED,SPHERE,FL,2/20/2014 21:10 +Porterville,ORANGE,DISK,CA,2/20/2014 22:00 +Venice,ORANGE,CIRCLE,CA,2/20/2014 23:29 +Las Vegas,,OTHER,NV,2/20/2014 23:55 +Anchorage,,OVAL,AK,2/21/2014 0:00 +Cornell,RED GREEN,VARIOUS,CA,2/21/2014 0:01 +Scottsville,RED YELLOW BLUE,DIAMOND,VA,2/21/2014 1:49 +Daytona Beach,,FIREBALL,FL,2/21/2014 2:30 +Stockbridge,,CIRCLE,GA,2/21/2014 11:00 +Arlington,,CIGAR,VA,2/21/2014 14:30 +Shelby,,OTHER,NC,2/21/2014 17:00 +Lansdale,,LIGHT,PA,2/21/2014 18:00 +Fresno,ORANGE,SPHERE,CA,2/21/2014 18:30 +La Porte,,CIRCLE,IN,2/21/2014 18:45 +Bend,,TRIANGLE,OR,2/21/2014 19:10 +Sun City West,,FIREBALL,AZ,2/21/2014 19:15 +Monrovia,,,CA,2/21/2014 19:20 +Winter Park,RED,SPHERE,FL,2/21/2014 19:30 +(City not specified),ORANGE,OTHER,MO,2/21/2014 19:45 +Newark,RED ORANGE,CIRCLE,DE,2/21/2014 19:45 +Winter Park,RED,LIGHT,FL,2/21/2014 19:45 +Monroe,,LIGHT,OH,2/21/2014 19:50 +Eastvale,RED,FIREBALL,CA,2/21/2014 20:00 +Kennett Square,,DIAMOND,PA,2/21/2014 20:00 +Castle Rock,,LIGHT,CO,2/21/2014 21:00 +Orlando,,OVAL,FL,2/21/2014 21:00 +Piqua,,LIGHT,OH,2/21/2014 21:00 +Thousand Oaks,,FORMATION,CA,2/21/2014 21:04 +Avon,ORANGE,SPHERE,CT,2/21/2014 21:15 +Raleigh,,TRIANGLE,NC,2/21/2014 22:00 +New Orleans,,TRIANGLE,LA,2/21/2014 22:20 +Glenwood,GREEN,FORMATION,NY,2/21/2014 22:30 +Palmer,,LIGHT,AK,2/21/2014 23:30 +Stoney Beach,,CHEVRON,MD,2/21/2014 23:30 +Peoria,ORANGE,LIGHT,AZ,2/21/2014 23:34 +Oakland,,,CA,2/21/2014 23:46 +Hopewell Junction,,CIRCLE,NY,2/22/2014 0:23 +Scranton,,,PA,2/22/2014 1:00 +Lafayette,,CIRCLE,IN,2/22/2014 1:20 +Ada,,OTHER,OK,2/22/2014 4:00 +Southampton,,,MA,2/22/2014 4:00 +Savannah,,OTHER,MO,2/22/2014 5:35 +Fresno,,,CA,2/22/2014 11:00 +Brownsmills,RED GREEN,OVAL,NJ,2/22/2014 12:00 +Miami,,OVAL,OK,2/22/2014 12:00 +Sacramento,,LIGHT,CA,2/22/2014 13:00 +Jacksonville,,RECTANGLE,FL,2/22/2014 17:20 +Collierville,ORANGE,CIRCLE,TN,2/22/2014 18:30 +Virginia Beach,,CIRCLE,VA,2/22/2014 18:55 +Chico,,LIGHT,CA,2/22/2014 19:00 +Dothan,,FIREBALL,AL,2/22/2014 19:00 +Punt Gorda,RED YELLOW,LIGHT,FL,2/22/2014 19:00 +Stockton,,CIRCLE,CA,2/22/2014 19:00 +Stockton,,LIGHT,CA,2/22/2014 19:00 +Williston,ORANGE,FIREBALL,VT,2/22/2014 19:00 +Las Vegas,,LIGHT,NV,2/22/2014 19:02 +Boca Raton,ORANGE,OVAL,FL,2/22/2014 19:15 +Thurmond,RED,FORMATION,WV,2/22/2014 19:15 +Manchester,,SPHERE,NH,2/22/2014 19:40 +Jeffersonville,ORANGE,SPHERE,VT,2/22/2014 19:45 +Philadelphia,ORANGE,FIREBALL,PA,2/22/2014 19:45 +Burke,,CONE,VT,2/22/2014 20:00 +Charlottesville,,LIGHT,VA,2/22/2014 20:00 +Beaverton,RED,LIGHT,OR,2/22/2014 20:20 +Wilton,RED GREEN BLUE,TRIANGLE,ME,2/22/2014 20:53 +Grenville,,OTHER,SC,2/22/2014 21:00 +Harpers Ferry,,,WV,2/22/2014 22:10 +Minnetonka,,LIGHT,MN,2/22/2014 22:17 +Fond du Lac,,CIGAR,WI,2/22/2014 22:23 +Tunkhannock,,TRIANGLE,PA,2/22/2014 22:30 +New York City,,LIGHT,NY,2/22/2014 23:00 +Newport Beach,YELLOW,CIRCLE,CA,2/22/2014 23:00 +Quakertown,,CIRCLE,PA,2/22/2014 23:15 +Dracut,,DIAMOND,MA,2/23/2014 1:00 +San Diego,,OTHER,CA,2/23/2014 6:40 +Winter Park,,,FL,2/23/2014 7:00 +Parker,,SPHERE,CO,2/23/2014 18:05 +West Deptford,,OVAL,NJ,2/23/2014 18:40 +Brandon,,LIGHT,FL,2/23/2014 19:30 +Olean,,TRIANGLE,NY,2/23/2014 19:32 +Anchorage,ORANGE,LIGHT,AK,2/23/2014 19:45 +Victorville,,LIGHT,CA,2/23/2014 19:55 +Ketchum,,LIGHT,ID,2/23/2014 20:15 +Loganville,RED,TRIANGLE,GA,2/23/2014 20:15 +Williston,ORANGE,FIREBALL,VT,2/23/2014 20:15 +Ballston Spa,,FIREBALL,NY,2/23/2014 20:43 +Fritch,,LIGHT,TX,2/23/2014 21:00 +Indianapolis,,,IN,2/23/2014 21:00 +Latham,ORANGE,CIRCLE,NY,2/23/2014 21:00 +Levittown,,FIREBALL,NY,2/23/2014 21:00 +Albuquerque,ORANGE,LIGHT,NM,2/23/2014 21:05 +Atlanta,,VARIOUS,GA,2/23/2014 21:16 +Kilmarnock,,TRIANGLE,VA,2/23/2014 21:30 +Temple City,,DIAMOND,CA,2/23/2014 21:55 +Antelope,,CIRCLE,CA,2/23/2014 22:00 +Balboa Island,,CIRCLE,CA,2/23/2014 23:00 +Cape Girardeau,,,MO,2/23/2014 23:00 +Los Angeles,,CIRCLE,CA,2/23/2014 23:00 +Orlando,,TRIANGLE,FL,2/24/2014 0:00 +Palm City,ORANGE,CIRCLE,FL,2/24/2014 0:00 +Browns Summit,,LIGHT,NC,2/24/2014 4:00 +Briceville,,OTHER,TN,2/24/2014 10:45 +Sacramento,BLUE,CIRCLE,CA,2/24/2014 16:20 +Salem,RED,TRIANGLE,NH,2/24/2014 18:20 +Blythe,,TRIANGLE,CA,2/24/2014 19:00 +Fresno,RED,,CA,2/24/2014 19:00 +East Tawas,,,MI,2/24/2014 20:00 +San Jose,,LIGHT,CA,2/24/2014 20:48 +Draper,RED,LIGHT,UT,2/24/2014 21:00 +West Chester,,LIGHT,PA,2/24/2014 21:00 +Belcamp,RED,VARIOUS,MD,2/24/2014 21:15 +Philadelphia,,FIREBALL,PA,2/24/2014 21:15 +Philadelphia,,CIRCLE,PA,2/24/2014 21:25 +Smithsburg,,OTHER,MD,2/24/2014 21:35 +Ft. Wayne,ORANGE,LIGHT,IN,2/25/2014 1:00 +Casper,,CIRCLE,WY,2/25/2014 2:20 +Evansville,,,IN,2/25/2014 4:00 +Mokena,,LIGHT,IL,2/25/2014 17:58 +Evanston,ORANGE,LIGHT,WY,2/25/2014 18:35 +Breckenridge,ORANGE,OVAL,TX,2/25/2014 20:00 +Kailua Kona,,CYLINDER,HI,2/25/2014 20:30 +Firebaugh,,FORMATION,CA,2/25/2014 20:35 +Phoenix,,FIREBALL,AZ,2/25/2014 22:00 +Frederick,,LIGHT,MD,2/25/2014 23:35 +Mesa,BLUE,LIGHT,AZ,2/26/2014 1:30 +Milpitas,,,CA,2/26/2014 3:30 +Taunton,RED YELLOW GREEN,OVAL,MA,2/26/2014 4:30 +Liberty County,,FIREBALL,MT,2/26/2014 4:50 +Seattle,,TRIANGLE,WA,2/26/2014 13:00 +Albuquerque,,OTHER,NM,2/26/2014 19:00 +Danbury,BLUE,SPHERE,CT,2/26/2014 19:30 +Grove City,,FIREBALL,OH,2/26/2014 19:40 +Tucson,,LIGHT,AZ,2/26/2014 19:40 +Hillsboro,,LIGHT,OH,2/26/2014 19:45 +El Cajon,,,CA,2/26/2014 19:58 +Washington Court House,,,OH,2/26/2014 20:00 +Noblesville,ORANGE,CIRCLE,IN,2/26/2014 20:05 +Fresno,,LIGHT,CA,2/26/2014 20:12 +El Cajon,RED,,CA,2/26/2014 20:30 +Stout,,LIGHT,OH,2/26/2014 21:00 +New Hope,GREEN,LIGHT,MN,2/26/2014 22:00 +Benton,,CIRCLE,MO,2/27/2014 0:00 +Monument,,SPHERE,CO,2/27/2014 1:00 +Waynesburg,,DIAMOND,PA,2/27/2014 2:24 +Scott Depot,,,WV,2/27/2014 3:05 +Churchton,,CIRCLE,MD,2/27/2014 3:35 +Stedman,RED GREEN,SPHERE,NC,2/27/2014 6:00 +Albert Lea,,LIGHT,MN,2/27/2014 6:02 +Winston Salem,,DIAMOND,NC,2/27/2014 14:50 +Nashville,,LIGHT,TN,2/27/2014 16:35 +Decatur,,DIAMOND,AL,2/27/2014 18:00 +Murfreesboro,,LIGHT,TN,2/27/2014 18:00 +Albany,GREEN,FIREBALL,OH,2/27/2014 19:00 +Boise,GREEN,LIGHT,ID,2/27/2014 19:21 +Butler,,,IN,2/27/2014 19:30 +Clayton,,DIAMOND,GA,2/27/2014 19:45 +Glenelg,,FIREBALL,MD,2/27/2014 20:00 +Springfield,,CIRCLE,MA,2/27/2014 20:30 +Montgomery,,TRIANGLE,AL,2/27/2014 21:00 +Attica,ORANGE,CIRCLE,NY,2/27/2014 21:33 +Chicago Heights,,CIRCLE,IL,2/27/2014 21:45 +Hixson,,TRIANGLE,TN,2/27/2014 22:55 +Fort Wayne,ORANGE YELLOW,TRIANGLE,IN,2/28/2014 0:00 +Claremore,RED,LIGHT,OK,2/28/2014 1:00 +Princeton,,LIGHT,WV,2/28/2014 5:20 +Saco,ORANGE,FIREBALL,ME,2/28/2014 8:10 +Rochester,,LIGHT,NY,2/28/2014 9:30 +Ocean Shores,,LIGHT,WA,2/28/2014 9:35 +Huntsville,,,AL,2/28/2014 16:00 +Westfield,,DISK,NJ,2/28/2014 17:56 +Schenectady,,VARIOUS,NY,2/28/2014 18:00 +Salem,,LIGHT,OR,2/28/2014 19:00 +Davie,,FIREBALL,FL,2/28/2014 20:24 +Evansville,ORANGE,CIRCLE,IN,2/28/2014 20:35 +On I-70 East of Bentleyville in PA,,FIREBALL,PA,2/28/2014 21:00 +Canandaigua,,TEARDROP,NY,2/28/2014 21:30 +Winslow Township,GREEN,FIREBALL,NJ,2/28/2014 21:30 +Dover,RED GREEN,,FL,2/28/2014 21:50 +Gorham,,TRIANGLE,ME,2/28/2014 22:00 +Imperial,ORANGE,OTHER,MO,2/28/2014 22:30 +Vancouver,RED,LIGHT,WA,2/28/2014 22:45 +Pittsburgh,,LIGHT,PA,2/28/2014 23:00 +Anchorage,RED,LIGHT,AK,3/1/2014 0:00 +Middletown,,OVAL,CT,3/1/2014 0:00 +Palm City,ORANGE,OVAL,FL,3/1/2014 0:00 +no data,,TEARDROP,PA,3/1/2014 6:00 +Apollo Beach,,OVAL,FL,3/1/2014 12:00 +Garner,,SPHERE,NC,3/1/2014 17:45 +Everett,RED,LIGHT,PA,3/1/2014 19:00 +Tampa,RED,TRIANGLE,FL,3/1/2014 19:40 +Arlington,,,VA,3/1/2014 20:00 +Sacramento,ORANGE,CIRCLE,CA,3/1/2014 20:00 +South Bend,,LIGHT,WA,3/1/2014 20:00 +Acworth,,DISK,GA,3/1/2014 20:34 +Lynchburg,ORANGE,LIGHT,VA,3/1/2014 21:00 +Davie,,DISK,FL,3/1/2014 21:10 +Portland,,OTHER,ME,3/1/2014 21:16 +Patchogue,,LIGHT,NY,3/1/2014 21:30 +Miami,ORANGE,CIRCLE,FL,3/1/2014 21:45 +Riva,RED,CIRCLE,MD,3/1/2014 21:50 +Coral Springs,ORANGE,CONE,FL,3/1/2014 22:05 +Rock Hill,,LIGHT,SC,3/1/2014 23:15 +Arlington,,FORMATION,VA,3/1/2014 23:30 +Butte,,LIGHT,AK,3/2/2014 1:00 +Phoenix,,OVAL,AZ,3/2/2014 1:00 +Middlesex,,TEARDROP,NY,3/2/2014 1:30 +Elizabeth,RED,TRIANGLE,IN,3/2/2014 2:00 +Riverdale,,CIRCLE,GA,3/2/2014 4:30 +Rochester,,LIGHT,NY,3/2/2014 10:15 +Albuquerque,,DISK,NM,3/2/2014 15:30 +Golden Meadow,,OVAL,LA,3/2/2014 17:00 +Modesto,,LIGHT,CA,3/2/2014 18:00 +West Palm Beach,,OTHER,FL,3/2/2014 19:00 +Jacksonville,,CHEVRON,NC,3/2/2014 21:25 +Niles,,LIGHT,MI,3/2/2014 22:00 +Sunrise,RED BLUE,SPHERE,FL,3/2/2014 22:30 +Honolulu,,LIGHT,HI,3/3/2014 18:15 +Ward Cove,,DIAMOND,AK,3/3/2014 19:02 +Wellington,BLUE,LIGHT,FL,3/3/2014 19:30 +Temecula,,CIRCLE,CA,3/3/2014 20:00 +Topping,,,VA,3/3/2014 20:00 +Wellington,BLUE,LIGHT,FL,3/3/2014 20:00 +Augusta,,TRIANGLE,GA,3/3/2014 21:00 +Punta Gorda,,FORMATION,FL,3/3/2014 21:00 +Sunrise,,OTHER,FL,3/3/2014 22:55 +Raeford,,OTHER,NC,3/3/2014 23:50 +Port Saint Lucie,RED GREEN,DIAMOND,FL,3/4/2014 0:30 +Tucson,,TRIANGLE,AZ,3/4/2014 19:39 +Laytonville,ORANGE,FIREBALL,CA,3/4/2014 20:45 +Kaimuki,RED GREEN,OVAL,HI,3/4/2014 21:00 +Oregon City,,FIREBALL,OR,3/4/2014 21:30 +Napa,RED,,CA,3/4/2014 21:40 +Turlock,,TRIANGLE,CA,3/4/2014 22:00 +Turlock,,TRIANGLE,CA,3/4/2014 22:04 +Page,,CIRCLE,AZ,3/4/2014 22:30 +Fort Wayne,,LIGHT,IN,3/4/2014 23:00 +Albuquerque,,CIRCLE,NM,3/5/2014 0:00 +Albuquerque,,OTHER,NM,3/5/2014 0:45 +Modesto,,TRIANGLE,CA,3/5/2014 4:34 +Sarasota,,RECTANGLE,FL,3/5/2014 17:00 +Peoria,,CIRCLE,AZ,3/5/2014 18:30 +Fort Lauderdale,,DISK,FL,3/5/2014 18:34 +Hudson,RED,TRIANGLE,NH,3/5/2014 18:40 +Lacy Springs,,TRIANGLE,AL,3/5/2014 20:07 +Chesterfield,,LIGHT,MO,3/5/2014 20:13 +Kingsport,,DISK,TN,3/5/2014 20:30 +St. Helens,,CIRCLE,OR,3/5/2014 20:30 +Turlock,,FIREBALL,CA,3/5/2014 21:01 +Medford,,OVAL,MA,3/5/2014 21:18 +Medford,,OVAL,MA,3/5/2014 21:18 +Crouse,,TRIANGLE,NC,3/5/2014 21:24 +Walnut Creek,,LIGHT,CA,3/5/2014 22:45 +Enterprise,,RECTANGLE,UT,3/5/2014 23:30 +Windom,,RECTANGLE,KS,3/6/2014 2:00 +Salt Lake City,RED,DISK,UT,3/6/2014 4:00 +Wenatchee,,CIRCLE,WA,3/6/2014 5:30 +Bartonsville,,LIGHT,PA,3/6/2014 15:45 +East Haven,RED ORANGE,CIRCLE,CT,3/6/2014 19:00 +Albuquerque,,TRIANGLE,NM,3/6/2014 20:00 +Springfield,,CIRCLE,OH,3/6/2014 20:36 +Durand,,OVAL,MI,3/6/2014 22:40 +Washington Court House,,SPHERE,OH,3/7/2014 0:10 +Kingston,,FIREBALL,NY,3/7/2014 0:20 +Simi Valley,RED,CIRCLE,CA,3/7/2014 2:30 +Vista,,LIGHT,CA,3/7/2014 5:30 +Frankfort,,RECTANGLE,KY,3/7/2014 10:00 +Mountain Brook,BLUE,LIGHT,AL,3/7/2014 15:47 +Houma,ORANGE,SPHERE,LA,3/7/2014 18:50 +Layton,,FORMATION,UT,3/7/2014 18:52 +Salt Lake City,,FORMATION,UT,3/7/2014 19:00 +Anderson,,FIREBALL,SC,3/7/2014 19:30 +San Angelo,RED,,TX,3/7/2014 20:15 +Shirley,ORANGE,FIREBALL,MA,3/7/2014 20:30 +Boynton Beach,ORANGE,LIGHT,FL,3/7/2014 20:45 +Boynton Beach,ORANGE,OVAL,FL,3/7/2014 21:00 +Yakima,ORANGE,OTHER,WA,3/7/2014 21:05 +Pilot hill,,,CA,3/7/2014 22:50 +Carson,GREEN,SPHERE,CA,3/8/2014 0:00 +Milford,,LIGHT,OH,3/8/2014 0:00 +Everett,,TRIANGLE,WA,3/8/2014 3:00 +Redlands,RED,DISK,CA,3/8/2014 3:50 +San Bernardino,,LIGHT,CA,3/8/2014 5:18 +Beaver Dam,,CIRCLE,AZ,3/8/2014 8:30 +Pomona,,TEARDROP,CA,3/8/2014 14:00 +Davie,RED ORANGE,SPHERE,FL,3/8/2014 17:00 +Greenacres,RED,FORMATION,FL,3/8/2014 19:30 +Los Lunas,RED,CIRCLE,NM,3/8/2014 20:00 +Moncure,RED,TRIANGLE,NC,3/8/2014 20:00 +Jacksonville,ORANGE,CIRCLE,FL,3/8/2014 20:12 +Cumming,ORANGE,SPHERE,GA,3/8/2014 20:30 +Yuma,RED ORANGE,LIGHT,AZ,3/8/2014 20:40 +Tampa,ORANGE,,FL,3/8/2014 21:25 +Brandon,RED,RECTANGLE,VT,3/8/2014 23:30 +Landrum,,CROSS,SC,3/9/2014 0:12 +Fort Mill,,,SC,3/9/2014 3:00 +Hillsville,,CIGAR,NC,3/9/2014 6:00 +Toluca Lake,,OTHER,CA,3/9/2014 16:45 +Coto de Caza,,FLASH,CA,3/9/2014 19:10 +Rochester,,TRIANGLE,MN,3/9/2014 19:40 +Inver Grove Heights,YELLOW,FORMATION,MN,3/9/2014 20:00 +Sunrise,,LIGHT,FL,3/9/2014 20:00 +Albuquerque,,SPHERE,NM,3/9/2014 20:45 +Commack,,FIREBALL,NY,3/9/2014 20:45 +Lakeland,,LIGHT,FL,3/9/2014 21:30 +Puyallup,RED,OTHER,WA,3/9/2014 21:30 +Kemah,,,TX,3/9/2014 21:40 +Canton,ORANGE,SPHERE,MI,3/9/2014 22:00 +Centennial,,LIGHT,CO,3/9/2014 22:00 +Jupiter,ORANGE,CIRCLE,FL,3/9/2014 22:00 +Mesa,ORANGE,RECTANGLE,AZ,3/9/2014 22:00 +St. Cloud,,,FL,3/9/2014 22:10 +Williamburg,RED YELLOW,LIGHT,VA,3/10/2014 0:00 +Hendersonville,,CHEVRON,TN,3/10/2014 0:15 +Montevallo,,FLASH,AL,3/10/2014 0:30 +Garrett,RED BLUE,OTHER,KY,3/10/2014 3:00 +Cherry Hill,,,NJ,3/10/2014 3:30 +Ainsworth,,TRIANGLE,IA,3/10/2014 4:00 +Terre Haute,,,IN,3/10/2014 4:00 +Ormond Beach,,CIRCLE,FL,3/10/2014 5:00 +Alpharetta,,OVAL,GA,3/10/2014 7:20 +Russellville,,CIGAR,AL,3/10/2014 14:35 +Bristol,,SPHERE,TN,3/10/2014 14:45 +St. Cloud,,OTHER,FL,3/10/2014 19:30 +Raymond,,TRIANGLE,NH,3/10/2014 20:00 +Richmond,,CIRCLE,IN,3/10/2014 20:00 +Sutherlin,,LIGHT,OR,3/10/2014 20:15 +Cook,RED,LIGHT,MN,3/10/2014 21:00 +Mesa,ORANGE,CIRCLE,AZ,3/10/2014 21:00 +Hagerstown,,,MD,3/10/2014 21:10 +Sugar Grove,,,IL,3/10/2014 22:19 +Cary,,TRIANGLE,NC,3/10/2014 23:15 +Guilderland,,LIGHT,NY,3/11/2014 4:02 +Garden Grove,ORANGE GREEN,DIAMOND,CA,3/11/2014 6:30 +Boulder,,OTHER,CO,3/11/2014 6:35 +New York City,,CYLINDER,NY,3/11/2014 11:00 +Lowell,,SPHERE,MI,3/11/2014 16:56 +Corona,,CIRCLE,CA,3/11/2014 20:00 +Mauldin,RED ORANGE,TRIANGLE,SC,3/11/2014 20:25 +Des Moines,RED BLUE,DISK,IA,3/11/2014 20:36 +Sunrise,RED GREEN BLUE,LIGHT,FL,3/11/2014 21:45 +Lakeland,BLUE,CIRCLE,FL,3/11/2014 22:20 +Sunrise,,CIRCLE,FL,3/11/2014 22:30 +Gresham,RED BLUE,LIGHT,OR,3/12/2014 0:30 +Camas,RED YELLOW GREEN BLUE,LIGHT,WA,3/12/2014 2:00 +Issaquah,,,WA,3/12/2014 3:00 +Sonoma,,,CA,3/12/2014 6:25 +Southfield,,,MI,3/12/2014 9:00 +Woodinville,,,WA,3/12/2014 9:30 +Gold Canyon,,LIGHT,AZ,3/12/2014 14:30 +Hackensack,BLUE,FIREBALL,NJ,3/12/2014 18:00 +Anaheim,,SPHERE,CA,3/12/2014 19:30 +Coral Springs,,OVAL,FL,3/12/2014 20:30 +Elverta,,CIRCLE,CA,3/12/2014 22:00 +Sunrise,RED,LIGHT,FL,3/12/2014 22:20 +Arlington,BLUE,LIGHT,TX,3/12/2014 23:21 +Ninilchik,,CIRCLE,AK,3/12/2014 23:30 +Seattle,,FIREBALL,WA,3/13/2014 3:30 +Orange Park,,VARIOUS,FL,3/13/2014 5:00 +Texas City,,VARIOUS,TX,3/13/2014 6:45 +Jupiter,,TRIANGLE,FL,3/13/2014 13:35 +Hollister,BLUE,LIGHT,CA,3/13/2014 20:30 +Perkasie,RED,TRIANGLE,PA,3/13/2014 20:55 +Bremerton,,SPHERE,WA,3/13/2014 21:00 +Henderson,,LIGHT,NV,3/13/2014 22:20 +Plano,GREEN,OTHER,TX,3/13/2014 23:00 +Pinion Hills,,,CA,3/14/2014 0:00 +Garden Grove,,DIAMOND,CA,3/14/2014 6:00 +Gainesville,GREEN,RECTANGLE,FL,3/14/2014 21:00 +Philipsburg,,TRIANGLE,PA,3/14/2014 21:30 +Rochester,,,NY,3/14/2014 22:00 +Chester Heights,,,PA,3/15/2014 0:00 +Vancouver,,LIGHT,WA,3/15/2014 0:00 +Gun Barrel City,ORANGE,,TX,3/15/2014 2:30 +Taylorsville,RED BLUE,TRIANGLE,UT,3/15/2014 6:55 +Fontana,,FIREBALL,CA,3/15/2014 7:45 +Hazlet,BLUE,TRIANGLE,NJ,3/15/2014 15:30 +Fullerton,RED BLUE,,CA,3/15/2014 19:23 +Littleton,ORANGE,FORMATION,CO,3/15/2014 20:15 +Middlesex,,CIRCLE,NC,3/15/2014 20:40 +Hermann,,CIRCLE,MO,3/15/2014 21:16 +Orangevale,ORANGE,LIGHT,CA,3/15/2014 21:30 +Orangevale,ORANGE,LIGHT,CA,3/15/2014 21:50 +Ankeny,,CONE,IA,3/15/2014 22:00 +New Milford,,CIGAR,CT,3/15/2014 22:00 +Davie,,LIGHT,FL,3/15/2014 23:00 +Russellville,,CIRCLE,TN,3/15/2014 23:00 +Charleston,RED ORANGE,SPHERE,SC,3/15/2014 23:30 +Miami,,CIRCLE,FL,3/15/2014 23:30 +Logandale,,LIGHT,NV,3/15/2014 23:31 +Charlotte,,CIRCLE,NC,3/16/2014 0:05 +Beaverton,RED,CIRCLE,OR,3/16/2014 0:15 +Hayden,RED,DIAMOND,ID,3/16/2014 0:40 +Perth,,RECTANGLE,WA,3/16/2014 1:00 +Sweetwater,,TRIANGLE,TN,3/16/2014 1:25 +Fresno,,FIREBALL,CA,3/16/2014 2:20 +Susquehanna,RED GREEN,LIGHT,PA,3/16/2014 3:00 +West Fork,,,AR,3/16/2014 3:35 +Shreveport,,FLASH,LA,3/16/2014 7:00 +Florence Township,,LIGHT,NJ,3/16/2014 20:00 +Birmingham,ORANGE,LIGHT,AL,3/16/2014 20:10 +Philadelphia,RED,CIRCLE,PA,3/16/2014 22:00 +Duluth,,FORMATION,GA,3/16/2014 22:18 +Charlotte,,OTHER,NC,3/17/2014 2:00 +Taylorsville,,LIGHT,UT,3/17/2014 6:57 +Clearwater,RED,LIGHT,FL,3/17/2014 20:35 +Cabot,ORANGE,OVAL,PA,3/17/2014 20:58 +New River,GREEN,LIGHT,AZ,3/17/2014 22:22 +Glenpool,,LIGHT,OK,3/18/2014 0:01 +Berwyn,RED,LIGHT,IL,3/18/2014 3:00 +Piscataway,,OVAL,NJ,3/18/2014 10:10 +Wildomar,,,CA,3/18/2014 16:15 +Albuquerque,,FORMATION,NM,3/18/2014 20:00 +Clermont,,FIREBALL,FL,3/18/2014 20:35 +Houston,,FLASH,TX,3/18/2014 20:45 +Massillon,,FORMATION,OH,3/18/2014 21:25 +Fair Oaks,,,CA,3/18/2014 21:30 +Providence,RED,SPHERE,RI,3/18/2014 23:00 +Olathe,BLUE,CIRCLE,KS,3/18/2014 23:40 +Medford,,DISK,OR,3/18/2014 23:44 +Aurora,,FIREBALL,CO,3/19/2014 0:40 +Lakeland,,TRIANGLE,FL,3/19/2014 2:00 +Spring Hill,,LIGHT,FL,3/19/2014 2:00 +Paradise Valley,,LIGHT,AZ,3/19/2014 4:45 +Stamford,,LIGHT,CT,3/19/2014 6:00 +Nashville,,CYLINDER,TN,3/19/2014 11:00 +Davie,,,FL,3/19/2014 16:00 +Arroyo Grande,,LIGHT,CA,3/19/2014 18:00 +Oroville,,LIGHT,CA,3/19/2014 19:00 +Ormond Beach,,TRIANGLE,FL,3/19/2014 21:00 +Augusta,ORANGE,FIREBALL,GA,3/19/2014 21:20 +Augusta,ORANGE YELLOW,OVAL,GA,3/19/2014 21:30 +Sanford,,TRIANGLE,FL,3/19/2014 21:45 +Candler,,TRIANGLE,NC,3/19/2014 21:50 +Boynton Beach,RED GREEN,CIRCLE,FL,3/19/2014 22:00 +Lewisville,,FORMATION,TX,3/19/2014 22:00 +Austintown,,FIREBALL,OH,3/19/2014 22:20 +Santa Fe,,CHEVRON,NM,3/19/2014 22:26 +Conway,,LIGHT,SC,3/19/2014 23:15 +Issaquah,,RECTANGLE,WA,3/19/2014 23:30 +Detroit,,FORMATION,MI,3/20/2014 0:00 +Miami,,LIGHT,AZ,3/20/2014 0:05 +Cosby,,FIREBALL,TN,3/20/2014 1:30 +Fullerton,,,CA,3/20/2014 6:10 +Southbend,,CIRCLE,IN,3/20/2014 6:50 +Atwater,,SPHERE,CA,3/20/2014 15:00 +Potterville,BLUE,LIGHT,MI,3/20/2014 18:00 +Gila Bend,ORANGE,FIREBALL,AZ,3/20/2014 18:45 +Patterson,,OTHER,LA,3/20/2014 19:00 +Harrisville,,TRIANGLE,RI,3/20/2014 19:45 +Clarkston,,LIGHT,WA,3/20/2014 19:50 +Globe,RED,OTHER,AZ,3/20/2014 20:00 +Jordan,RED GREEN,OTHER,MN,3/20/2014 20:00 +Brent,,,AL,3/20/2014 20:15 +Coconut Creek,RED BLUE,LIGHT,FL,3/20/2014 20:30 +St. Louis,ORANGE,LIGHT,MO,3/20/2014 20:35 +Lockwood,,,NY,3/20/2014 21:00 +Sevierville,,TRIANGLE,TN,3/20/2014 21:28 +Bowling Green,,LIGHT,KY,3/20/2014 22:00 +Kissimmee,,,FL,3/20/2014 22:00 +Park City,,OTHER,UT,3/20/2014 22:30 +Thibodaux,RED ORANGE,,LA,3/20/2014 23:00 +Dahlonega,,LIGHT,GA,3/20/2014 23:30 +Chaska,,,MN,3/20/2014 23:46 +Medford,,LIGHT,OR,3/21/2014 4:37 +Virginia Beach,,OTHER,VA,3/21/2014 15:20 +Kennesaw,RED,TRIANGLE,GA,3/21/2014 19:15 +Maricopa,,LIGHT,AZ,3/21/2014 19:35 +University Place,YELLOW,CIRCLE,WA,3/21/2014 19:55 +La Mesa,,CIRCLE,CA,3/21/2014 20:00 +Maricopa,ORANGE,SPHERE,AZ,3/21/2014 20:00 +Apache Junction,RED,FIREBALL,AZ,3/21/2014 20:30 +Londonderry,,VARIOUS,NH,3/21/2014 20:40 +Shirley,,CHEVRON,NY,3/21/2014 21:00 +Parsippany,,TRIANGLE,NJ,3/21/2014 21:10 +Folsom,,LIGHT,CA,3/21/2014 21:30 +Bakersfield,,EGG,CA,3/21/2014 21:45 +Kirkland,ORANGE,CIRCLE,WA,3/21/2014 22:00 +Coral Springs,,CIRCLE,FL,3/22/2014 1:00 +Hamilton,,FIREBALL,OH,3/22/2014 1:00 +Windsor,BLUE,FLASH,CA,3/22/2014 1:54 +Winchester,,DISK,KY,3/22/2014 7:00 +Port St. Lucie,,FIREBALL,FL,3/22/2014 10:10 +MacDill Air Force Base Tampa,,LIGHT,FL,3/22/2014 12:00 +Mount Vernon,,VARIOUS,WA,3/22/2014 13:00 +Severna Park,ORANGE,OVAL,MD,3/22/2014 20:30 +Philadelphia,ORANGE,CIRCLE,PA,3/22/2014 20:45 +Flat Rock,,FIREBALL,NC,3/22/2014 21:00 +Reseda,,DISK,CA,3/22/2014 21:00 +Lexington,RED,FORMATION,SC,3/22/2014 21:30 +Port St. Lucie,RED,LIGHT,FL,3/22/2014 21:44 +Fairfax,,OTHER,VA,3/22/2014 22:00 +Meridian,GREEN,,ID,3/22/2014 22:10 +Antelope,ORANGE,OTHER,CA,3/22/2014 22:50 +Lawrenceburg,YELLOW,CIRCLE,KY,3/23/2014 0:00 +Greensboro,RED,CIRCLE,NC,3/23/2014 6:00 +Bemidji,,DISK,MN,3/23/2014 10:00 +Gunnison,BLUE,SPHERE,CO,3/23/2014 16:00 +St. Cloud,,SPHERE,MN,3/23/2014 19:10 +Fullerton,BLUE,RECTANGLE,CA,3/23/2014 19:23 +Lawndale,,FLASH,CA,3/23/2014 19:50 +Portland,RED BLUE,,OR,3/23/2014 20:00 +Kerman,RED,FORMATION,CA,3/23/2014 20:10 +San Tan Valley,RED GREEN,LIGHT,AZ,3/23/2014 20:30 +Lancaster,,TRIANGLE,PA,3/23/2014 23:35 +Moab,RED,LIGHT,UT,3/24/2014 2:00 +Arlington,RED GREEN,DISK,TX,3/24/2014 3:15 +Natural Bridge,,LIGHT,VA,3/24/2014 5:30 +Lancaster,,TRIANGLE,CA,3/24/2014 5:53 +Buford,,TRIANGLE,GA,3/24/2014 14:20 +Mesa,,SPHERE,AZ,3/24/2014 18:00 +Bemidji,,CIGAR,MN,3/24/2014 19:40 +Montrose,,OVAL,CO,3/24/2014 19:47 +Mona,,FIREBALL,UT,3/24/2014 21:30 +Poplar,,DISK,MT,3/24/2014 21:39 +Gila Bend-Aztec,,FIREBALL,AZ,3/24/2014 22:00 +Reynoldsville,ORANGE,EGG,PA,3/24/2014 22:00 +Las Vegas,RED GREEN,FLASH,NV,3/24/2014 23:00 +Eugene,RED BLUE,EGG,OR,3/24/2014 23:30 +Caledonia,ORANGE BLUE,CIRCLE,MI,3/25/2014 1:00 +Wallkill,,OVAL,NY,3/25/2014 1:00 +Barberton,,CIRCLE,OH,3/25/2014 2:00 +Fort Eustis,ORANGE,,VA,3/25/2014 2:00 +Fort Collins,ORANGE,FIREBALL,CO,3/25/2014 2:40 +Richmond,,,VA,3/25/2014 14:00 +Manchester,,DIAMOND,TN,3/25/2014 16:00 +Comstock Park,,CIRCLE,MI,3/25/2014 20:30 +Nine Mile Falls,,TRIANGLE,WA,3/25/2014 21:10 +Fruitland,,SPHERE,ID,3/25/2014 21:30 +Clam Gulch,,SPHERE,AK,3/25/2014 22:00 +Nikiski,ORANGE,LIGHT,AK,3/25/2014 22:00 +Enfield,,,CT,3/25/2014 23:30 +Springfield,RED BLUE,OTHER,MA,3/25/2014 23:30 +New Tampa,,LIGHT,FL,3/25/2014 23:35 +Margate,,CIRCLE,FL,3/25/2014 23:50 +Redding,,,CA,3/26/2014 0:15 +Sykesville,RED YELLOW,TRIANGLE,MD,3/26/2014 3:00 +Greenville,,LIGHT,SC,3/26/2014 5:30 +Orlando,,TEARDROP,FL,3/26/2014 15:00 +Dudley,,TRIANGLE,GA,3/26/2014 20:45 +Mount Pleasant,ORANGE,TRIANGLE,SC,3/26/2014 20:45 +Oklahoma City,,FLASH,OK,3/26/2014 21:00 +Punta Gorda,GREEN,CIRCLE,FL,3/26/2014 21:05 +Idaho Falls,,OTHER,ID,3/26/2014 21:14 +Clayton,RED BLUE,CYLINDER,NC,3/26/2014 22:00 +Everett,,FLASH,MA,3/26/2014 22:15 +Irwin,RED,,PA,3/26/2014 23:30 +Charleston,,LIGHT,SC,3/26/2014 23:45 +Seattle,GREEN,LIGHT,WA,3/27/2014 1:45 +Arnold,,TRIANGLE,MD,3/27/2014 4:30 +Homer,,DISK,NY,3/27/2014 5:20 +Newport,,,KY,3/27/2014 5:55 +Coward,,SPHERE,SC,3/27/2014 6:40 +St. Petersburg,,TRIANGLE,FL,3/27/2014 8:30 +Monroe,RED BLUE,,WA,3/27/2014 19:45 +Monroe,RED BLUE,,WA,3/27/2014 19:45 +Wellington,,LIGHT,AL,3/27/2014 20:32 +Frederick,,TRIANGLE,MD,3/27/2014 21:00 +Concord,GREEN,TRIANGLE,NC,3/27/2014 21:16 +Hobe Sound,RED,LIGHT,FL,3/27/2014 21:35 +Los Angeles,,CIRCLE,CA,3/27/2014 21:45 +Monterey,RED,CIRCLE,CA,3/27/2014 22:00 +Plymouth,,OTHER,MA,3/27/2014 22:00 +Lanham,,CIRCLE,MD,3/27/2014 22:30 +Lehigh Acres,,,FL,3/27/2014 23:30 +Laveen,RED GREEN,LIGHT,AZ,3/28/2014 1:00 +MADISON,,CIRCLE,CT,3/28/2014 5:30 +Bethel,ORANGE,TRIANGLE,AK,3/28/2014 11:03 +Wasilla,,VARIOUS,AK,3/28/2014 11:17 +Chugiak,,LIGHT,AK,3/28/2014 11:30 +Corpus Christi,,CYLINDER,TX,3/28/2014 14:00 +Riverside,,FIREBALL,IA,3/28/2014 18:30 +Spring,GREEN,FIREBALL,TX,3/28/2014 19:00 +Benicia,,LIGHT,CA,3/28/2014 20:00 +Fruita,GREEN,,CO,3/28/2014 20:20 +Fresno,ORANGE,OVAL,CA,3/28/2014 22:00 +El Cajon,,DISK,CA,3/28/2014 22:30 +Morganton,,,NC,3/29/2014 0:20 +Houston,,TRIANGLE,TX,3/29/2014 1:00 +Rockland,,FLASH,ME,3/29/2014 2:00 +Harwich,RED ORANGE BLUE,OTHER,MA,3/29/2014 2:30 +Southbend,ORANGE,SPHERE,IN,3/29/2014 10:33 +Des Moines,ORANGE,CHEVRON,IA,3/29/2014 10:50 +Long Beach,,TRIANGLE,MS,3/29/2014 18:45 +Post Falls,,FIREBALL,ID,3/29/2014 19:55 +Albuquerque,,CIRCLE,NM,3/29/2014 20:00 +Decorah,,SPHERE,IA,3/29/2014 20:35 +Anchorage,,CIGAR,AK,3/29/2014 20:45 +Duncan,ORANGE,CIRCLE,AZ,3/29/2014 21:00 +North Little Rock,,SPHERE,AR,3/29/2014 21:30 +De Pere,RED,LIGHT,WI,3/29/2014 22:00 +Glendale,ORANGE,SPHERE,AZ,3/29/2014 22:00 +Hudson,RED,LIGHT,WI,3/29/2014 22:30 +Altoona,ORANGE,SPHERE,KS,3/29/2014 22:50 +EL Cajon,BLUE,OVAL,CA,3/29/2014 23:30 +Santa Rosa,ORANGE,LIGHT,CA,3/29/2014 23:53 +Apache Junction,RED,LIGHT,AZ,3/30/2014 1:00 +Kokomo,,DISK,IN,3/30/2014 1:30 +Flat Rock,GREEN,TEARDROP,MI,3/30/2014 3:00 +Trenton,YELLOW,LIGHT,OH,3/30/2014 10:10 +Cedar Falls,,TRIANGLE,IA,3/30/2014 10:30 +Kings Mountain,,TRIANGLE,NC,3/30/2014 14:30 +Sumner,,LIGHT,WA,3/30/2014 20:30 +Seneca,ORANGE,OTHER,SC,3/30/2014 20:50 +Arcadia,,CIRCLE,FL,3/30/2014 21:00 +San Clemente,,SPHERE,CA,3/30/2014 21:30 +Cumming,,TRIANGLE,GA,3/30/2014 22:00 +Edinboro,,LIGHT,PA,3/30/2014 22:00 +O'Fallon,,TRIANGLE,MO,3/30/2014 22:30 +Goose Creek,ORANGE,,SC,3/30/2014 23:00 +Tinley Park,,LIGHT,IL,3/30/2014 23:48 +Tampa,BLUE,LIGHT,FL,3/31/2014 0:25 +Bellingham,ORANGE,CIRCLE,WA,3/31/2014 0:57 +Abbeville,,CIGAR,LA,3/31/2014 1:00 +Bergenfield,,LIGHT,NJ,3/31/2014 2:00 +Wasilla,,TRIANGLE,AK,3/31/2014 2:30 +Chattanooga,,LIGHT,TN,3/31/2014 3:00 +Binghamton,,CHEVRON,NY,3/31/2014 4:00 +Petoskey,,FORMATION,MI,3/31/2014 5:00 +Orlando,,TEARDROP,FL,3/31/2014 9:30 +Rio Rancho,,CIGAR,NM,3/31/2014 11:52 +Cooper City,,DISK,FL,3/31/2014 12:47 +Topanga Beach,,SPHERE,CA,3/31/2014 18:32 +Virginia Beach,,DISK,VA,3/31/2014 19:11 +Brookings,,LIGHT,OR,3/31/2014 19:30 +Boca Raton,BLUE,CIRCLE,FL,3/31/2014 20:30 +Celebration,RED ORANGE,,FL,3/31/2014 21:00 +Dayton,,LIGHT,OH,3/31/2014 21:05 +New York City,,LIGHT,NY,3/31/2014 21:25 +Apopka,,SPHERE,FL,3/31/2014 22:40 +Hingham,,DISK,MA,3/31/2014 23:00 +Seattle,,LIGHT,WA,3/31/2014 23:15 +Phoenix,,CROSS,AZ,3/31/2014 23:50 +Boynton Beach,,CIRCLE,FL,4/1/2014 0:24 +Unity,,FIREBALL,ME,4/1/2014 5:00 +Centralia,,OTHER,NY,4/1/2014 8:45 +Colorado Springs,,OVAL,CO,4/1/2014 12:00 +Deptford,,VARIOUS,NJ,4/1/2014 19:00 +Lawrenceville,,CIRCLE,NJ,4/1/2014 19:29 +Keene,,DIAMOND,NH,4/1/2014 20:10 +St. Charles,ORANGE,TRIANGLE,MO,4/1/2014 20:30 +Palm City,RED,FIREBALL,FL,4/1/2014 20:40 +Lake Havasu City,,LIGHT,AZ,4/1/2014 21:00 +Philadelphia,,OTHER,PA,4/1/2014 21:30 +Port St. Lucie,,LIGHT,FL,4/1/2014 21:30 +Auburn,,TRIANGLE,NY,4/1/2014 22:00 +Hakalau,,FIREBALL,HI,4/1/2014 22:00 +Port St. Lucie,,,FL,4/1/2014 23:00 +Spring,RED,LIGHT,TX,4/1/2014 23:30 +Westmoreland,,DISK,NY,4/2/2014 0:00 +Green Bay,,CIRCLE,WI,4/2/2014 0:01 +Colorado Springs,,LIGHT,CO,4/2/2014 1:00 +Deerfield Beach,,OVAL,FL,4/2/2014 1:00 +Baltimore City,,OTHER,MD,4/2/2014 2:10 +Columbia,,TRIANGLE,TN,4/2/2014 4:00 +Norcross,,TRIANGLE,GA,4/2/2014 6:00 +Kenai,RED,OVAL,AK,4/2/2014 11:00 +Saugerties,,CIRCLE,NY,4/2/2014 18:30 +Reno,,CIRCLE,NV,4/2/2014 19:20 +South Dennis,,,MA,4/2/2014 20:00 +Port St. Lucie,,FIREBALL,FL,4/2/2014 20:28 +Lynnwood,ORANGE,FIREBALL,WA,4/2/2014 20:45 +Concord,,TRIANGLE,NH,4/2/2014 20:50 +Palm City,,DISK,FL,4/2/2014 20:55 +Lakeside,,CIRCLE,CA,4/2/2014 21:00 +Richmond,RED,VARIOUS,VA,4/2/2014 21:05 +Lehigh Acres,,,FL,4/2/2014 22:00 +Hastings,,FIREBALL,NE,4/3/2014 2:03 +Palm Desert,,DISK,CA,4/3/2014 12:00 +Muscle Shoals,,CYLINDER,AL,4/3/2014 14:00 +Surprise,,LIGHT,AZ,4/3/2014 14:00 +Franklin,BLUE,OTHER,WI,4/3/2014 20:00 +Phoenix,,LIGHT,AZ,4/3/2014 20:00 +Wellington,BLUE,DISK,FL,4/3/2014 20:05 +Des Moines,RED,DISK,WA,4/3/2014 20:08 +Pine Bush,RED,,NY,4/3/2014 20:15 +Billings,RED,LIGHT,MT,4/3/2014 20:20 +Dubuque,,CIRCLE,IA,4/3/2014 20:28 +Clovis,RED,VARIOUS,NM,4/3/2014 21:00 +Revere,,FORMATION,MA,4/3/2014 21:00 +Falls Church,,TRIANGLE,VA,4/3/2014 23:00 +Perryville,,VARIOUS,KY,4/4/2014 0:30 +Vero Beach,RED,CIRCLE,FL,4/4/2014 10:53 +Jefferson,,CROSS,ME,4/4/2014 14:15 +Jefferson,,OTHER,ME,4/4/2014 14:30 +San Diego,,OTHER,CA,4/4/2014 16:32 +Jacksonville,,OVAL,FL,4/4/2014 17:35 +Riverside,,DISK,CA,4/4/2014 20:10 +Panama City,,LIGHT,FL,4/4/2014 20:31 +Lakeland,,FIREBALL,FL,4/4/2014 21:00 +Frederick,BLUE,LIGHT,MD,4/4/2014 22:15 +Temecula,YELLOW,FORMATION,CA,4/4/2014 23:10 +Savannah,,VARIOUS,GA,4/5/2014 1:22 +Middleburg,ORANGE,CIRCLE,FL,4/5/2014 2:30 +Eureka,,LIGHT,CA,4/5/2014 8:50 +Oxford,,CIGAR,MD,4/5/2014 11:00 +Punxsutawney,,DISK,PA,4/5/2014 12:00 +Napa,,CYLINDER,CA,4/5/2014 12:09 +La Crescenta,,CYLINDER,CA,4/5/2014 14:40 +Encinitas,,LIGHT,CA,4/5/2014 17:40 +Morehead City,,EGG,NC,4/5/2014 18:00 +Wakefield,,OTHER,MA,4/5/2014 18:20 +Hobbs,,VARIOUS,NM,4/5/2014 18:30 +Hobbs,,VARIOUS,NM,4/5/2014 18:30 +Boscawen,,DISK,NH,4/5/2014 18:45 +Longboat Key,ORANGE,FIREBALL,FL,4/5/2014 18:45 +Carthage,,LIGHT,NC,4/5/2014 20:30 +Hazel Green,ORANGE GREEN,LIGHT,AL,4/5/2014 20:30 +Deltona,,OTHER,FL,4/5/2014 20:35 +Fort Wayne,,SPHERE,IN,4/5/2014 20:55 +Chesapeake,,CIRCLE,VA,4/5/2014 21:00 +Pinellas Park,,FIREBALL,FL,4/5/2014 21:00 +Henderson,RED,FIREBALL,NV,4/5/2014 21:15 +Bolingbrook,,VARIOUS,IL,4/5/2014 21:25 +Lithia,,LIGHT,FL,4/5/2014 21:25 +Vero Beach,,LIGHT,FL,4/5/2014 21:30 +Fresno,ORANGE,FIREBALL,CA,4/5/2014 21:45 +Manns Choice,ORANGE,,PA,4/5/2014 21:45 +Fairborn,ORANGE,LIGHT,OH,4/5/2014 21:50 +Everglades,,FORMATION,FL,4/5/2014 22:00 +Kissimmee,ORANGE,RECTANGLE,FL,4/5/2014 22:00 +Austin,RED,LIGHT,TX,4/5/2014 22:15 +Tamarac,,FORMATION,FL,4/5/2014 22:15 +Jerseyville,BLUE,CIRCLE,IL,4/5/2014 22:20 +Mesquite,,CYLINDER,TX,4/5/2014 22:20 +San Antonio,,TRIANGLE,TX,4/5/2014 22:30 +San Antonio,RED,TRIANGLE,TX,4/5/2014 22:30 +Cape Canaveral,,TRIANGLE,FL,4/5/2014 23:25 +Hammocks,,LIGHT,FL,4/5/2014 23:30 +Palm City,,LIGHT,FL,4/6/2014 0:00 +Orlando,RED,FORMATION,FL,4/6/2014 0:15 +Miami,,CIRCLE,FL,4/6/2014 0:30 +Cape Girardeau,,CIRCLE,MO,4/6/2014 4:00 +Paris,ORANGE YELLOW,SPHERE,TX,4/6/2014 11:30 +Cornwallville,BLUE,CIGAR,NY,4/6/2014 13:15 +Danbury,,SPHERE,CT,4/6/2014 17:45 +West Peabody,,FORMATION,MA,4/6/2014 18:30 +Union,,FLASH,OR,4/6/2014 20:00 +Doylestown,ORANGE,SPHERE,PA,4/6/2014 20:20 +Edison,,FLASH,NJ,4/6/2014 20:30 +Vancouver,ORANGE,,WA,4/6/2014 20:30 +Lexington,,LIGHT,KY,4/6/2014 20:35 +Pengilly,RED GREEN,SPHERE,MN,4/6/2014 20:45 +Melbourne Beach,,LIGHT,FL,4/6/2014 21:00 +Aloha,ORANGE,OVAL,OR,4/6/2014 22:18 +Lakewood Ranch,RED,FIREBALL,FL,4/6/2014 22:30 +Salt Lake City,RED GREEN,DIAMOND,UT,4/6/2014 22:45 +Marreo,,OVAL,LA,4/6/2014 23:00 +The Villages,,LIGHT,FL,4/6/2014 23:00 +Provo,,VARIOUS,UT,4/7/2014 0:00 +Lehigh Acres,BLUE,LIGHT,FL,4/7/2014 3:00 +Jacksonville,,TRIANGLE,FL,4/7/2014 6:45 +Pleasanton,,SPHERE,CA,4/7/2014 12:54 +Daytona Beach,,RECTANGLE,FL,4/7/2014 20:00 +De Land,,CYLINDER,IL,4/7/2014 20:00 +San Jacinto,,LIGHT,CA,4/7/2014 20:05 +Antioch,ORANGE,SPHERE,IL,4/7/2014 20:20 +Rootstown,BLUE,SPHERE,OH,4/7/2014 20:30 +Lake Worth,,DISK,FL,4/7/2014 21:00 +"Iowa City Hwy 218 north, I-380 north, Cedar Rapids)",,OTHER,IA,4/7/2014 21:05 +Bonsall,,TRIANGLE,CA,4/7/2014 21:45 +Kokomo,RED BLUE,TRIANGLE,IN,4/8/2014 0:00 +Aurora,,LIGHT,CO,4/8/2014 1:00 +Gun Barrel City,,OTHER,TX,4/8/2014 1:15 +El Reno,,OVAL,OK,4/8/2014 4:00 +Quincy,,LIGHT,MA,4/8/2014 8:00 +Scottsdale,BLUE,,AZ,4/8/2014 8:00 +Colorado Springs,GREEN,OVAL,CO,4/8/2014 9:40 +Tucson,,,AZ,4/8/2014 14:50 +Fillmore,,OVAL,CA,4/8/2014 20:00 +Rodeo,,LIGHT,NM,4/8/2014 20:45 +Austin,,,TX,4/8/2014 21:15 +Blaine,,SPHERE,WA,4/8/2014 21:30 +Greencastle,RED,TRIANGLE,PA,4/8/2014 21:35 +Garner,,FORMATION,NC,4/8/2014 21:45 +Romeoville,ORANGE,LIGHT,IL,4/8/2014 21:50 +Orange City,,FIREBALL,FL,4/8/2014 22:02 +Lakewood Ranch,RED,FIREBALL,FL,4/8/2014 22:15 +Duluth,,LIGHT,GA,4/8/2014 22:28 +Kingman,,LIGHT,AZ,4/8/2014 22:30 +Montello,RED ORANGE,FORMATION,WI,4/8/2014 23:00 +Milwaukee,,LIGHT,WI,4/8/2014 23:15 +Centerline,,OTHER,MI,4/8/2014 23:45 +Pembroke,,TRIANGLE,MA,4/9/2014 0:15 +Pittsburgh,ORANGE,FORMATION,PA,4/9/2014 4:00 +Santee,,LIGHT,CA,4/9/2014 8:00 +Las Cruces,BLUE,OTHER,NM,4/9/2014 8:45 +Kenai,,LIGHT,AK,4/9/2014 11:30 +Sevierville,,FORMATION,TN,4/9/2014 19:30 +Lakeland,,LIGHT,GA,4/9/2014 20:00 +Panama City Beach,ORANGE,LIGHT,FL,4/9/2014 20:30 +Orange,RED BLUE,,CA,4/9/2014 20:40 +Cumming,,LIGHT,GA,4/9/2014 20:45 +West Orange,,TEARDROP,NJ,4/9/2014 20:45 +Sunrise,,LIGHT,FL,4/9/2014 20:50 +San Jose,RED,FIREBALL,CA,4/9/2014 21:00 +Buckingham,,TRIANGLE,PA,4/9/2014 21:30 +Florence,,,KY,4/9/2014 21:30 +Bogart,,DISK,GA,4/9/2014 21:32 +Medford,,CONE,OR,4/9/2014 22:35 +Newport,,OVAL,OR,4/9/2014 23:00 +Chicago,,TRIANGLE,IL,4/9/2014 23:48 +Oakland Park,,TRIANGLE,FL,4/10/2014 0:00 +Odessa,,,TX,4/10/2014 2:00 +Phoenix,,FIREBALL,AZ,4/10/2014 6:00 +Crestview,RED,TRIANGLE,FL,4/10/2014 8:30 +Pompano Beach,,LIGHT,FL,4/10/2014 9:30 +Lacon,ORANGE,SPHERE,IL,4/10/2014 9:45 +Santa Rosa,,SPHERE,CA,4/10/2014 10:40 +buckingham,,DIAMOND,VA,4/10/2014 17:00 +Washington,,RECTANGLE,UT,4/10/2014 20:10 +Santa Rosa,,SPHERE,CA,4/10/2014 20:38 +Escondido,,RECTANGLE,CA,4/10/2014 21:00 +Kingstree,,TRIANGLE,SC,4/10/2014 21:00 +North Port,,FLASH,FL,4/10/2014 21:00 +Oshkosh,,OTHER,WI,4/10/2014 21:00 +Palm Desert,,SPHERE,CA,4/10/2014 21:00 +Riverdale,,DISK,IL,4/10/2014 21:00 +Phoenix,ORANGE,SPHERE,AZ,4/10/2014 21:15 +Turlock,,TRIANGLE,CA,4/10/2014 21:25 +Burlington,,LIGHT,IA,4/10/2014 21:30 +San Rafael,,TRIANGLE,CA,4/10/2014 21:30 +Pilot Hill,,FLASH,CA,4/10/2014 21:50 +Clovis,RED,OVAL,CA,4/10/2014 22:00 +East Jackson,RED,SPHERE,MI,4/10/2014 22:00 +Lugoff,,CIRCLE,SC,4/10/2014 22:00 +Boise,RED,CIRCLE,ID,4/10/2014 22:30 +Tacoma,,LIGHT,WA,4/10/2014 22:30 +Spanaway,,LIGHT,WA,4/10/2014 22:45 +Burnsville,RED GREEN,CIRCLE,MN,4/10/2014 23:58 +Southbend,RED,SPHERE,IN,4/11/2014 0:00 +Henderson,,FLASH,NV,4/11/2014 0:30 +Houston,RED BLUE,SPHERE,TX,4/11/2014 0:30 +Tacoma,,CIRCLE,WA,4/11/2014 0:30 +Louisville,,LIGHT,KY,4/11/2014 4:30 +West Los Angeles,,OTHER,CA,4/11/2014 5:20 +Phoenix,,SPHERE,AZ,4/11/2014 15:05 +Headland,,FLASH,AL,4/11/2014 18:15 +Willits,ORANGE,CIRCLE,CA,4/11/2014 19:00 +Rockledge,,SPHERE,FL,4/11/2014 19:27 +Wheatfield,,FIREBALL,IN,4/11/2014 19:44 +Campbell,,OVAL,CA,4/11/2014 20:00 +Rochester,,LIGHT,NY,4/11/2014 20:00 +Pevely,,DISK,MO,4/11/2014 20:30 +Barberton,,CIRCLE,OH,4/11/2014 20:32 +Hunt Valley,,,MD,4/11/2014 21:00 +Pevely,,OTHER,MO,4/11/2014 21:00 +Albany,,TRIANGLE,OH,4/11/2014 21:20 +Dexterville,,TRIANGLE,WI,4/11/2014 21:29 +Dexterville,,TRIANGLE,WI,4/11/2014 21:29 +Howard Lake,ORANGE,TRIANGLE,MN,4/11/2014 21:30 +Ketchikan,,FIREBALL,AK,4/11/2014 21:30 +Danbury,ORANGE,LIGHT,CT,4/11/2014 21:45 +Thousand Oaks,,CIRCLE,CA,4/11/2014 22:05 +Indianapolis,,VARIOUS,IN,4/11/2014 22:45 +North Plainfield,BLUE,LIGHT,NJ,4/11/2014 23:00 +Parrish,ORANGE,,FL,4/11/2014 23:00 +Riverbank,,,CA,4/12/2014 0:00 +Jackhorn,,,KY,4/12/2014 7:00 +Simi Valley,,LIGHT,CA,4/12/2014 10:00 +Conkling Marina,,,ID,4/12/2014 15:00 +Pittsburgh,,CIGAR,PA,4/12/2014 15:00 +Medina,ORANGE,OVAL,OH,4/12/2014 18:40 +Milton,ORANGE,LIGHT,WV,4/12/2014 20:00 +Panama City Beach,ORANGE,,FL,4/12/2014 20:00 +Queen Creek,GREEN,FIREBALL,AZ,4/12/2014 20:00 +Tucson,GREEN,FIREBALL,AZ,4/12/2014 20:00 +Chandler,,FIREBALL,AZ,4/12/2014 20:10 +Lenwood,GREEN,OTHER,CA,4/12/2014 20:15 +Rio Rancho,BLUE,OVAL,NM,4/12/2014 20:30 +Albuquerque,RED,FIREBALL,NM,4/12/2014 21:00 +Centerville,ORANGE,SPHERE,OH,4/12/2014 21:05 +Las Cruces,,FIREBALL,NM,4/12/2014 21:05 +Quincy,RED,OVAL,MA,4/12/2014 21:10 +Uniontown,,LIGHT,OH,4/12/2014 21:15 +Cedar Rapids,,CIRCLE,IA,4/12/2014 21:21 +Cedar Rapids,ORANGE,DISK,IA,4/12/2014 21:21 +Las Cruces,,FIREBALL,NM,4/12/2014 21:30 +Richfield,,CIRCLE,MN,4/12/2014 21:30 +Mokena,BLUE,CIGAR,IL,4/12/2014 21:35 +Milton,,,WV,4/12/2014 22:00 +El Paso,BLUE,OVAL,TX,4/12/2014 22:20 +Huntertown,RED,CIRCLE,IN,4/12/2014 22:23 +Woodbury,,FLASH,TN,4/12/2014 22:26 +Sterling Heights,,,MI,4/13/2014 0:24 +Orlando,RED GREEN,DISK,FL,4/13/2014 1:45 +Benson,,FORMATION,AZ,4/13/2014 2:00 +Fayetteville,,FIREBALL,WV,4/13/2014 2:00 +Orlando,,DISK,FL,4/13/2014 2:00 +Encinitas,,SPHERE,CA,4/13/2014 3:15 +Snoqualmie Pass,,TRIANGLE,WA,4/13/2014 12:00 +Pine,,,AZ,4/13/2014 12:49 +Huntsville,,LIGHT,AL,4/13/2014 21:00 +Merced,RED,LIGHT,CA,4/13/2014 21:00 +Roseville,ORANGE,TRIANGLE,MI,4/13/2014 21:00 +New Port Richey,,,FL,4/13/2014 22:30 +Salinas,,VARIOUS,CA,4/13/2014 23:00 +Warren,,OTHER,TX,4/13/2014 23:00 +Hillsboro,,,OR,4/13/2014 23:22 +Casa Grande,ORANGE,OTHER,AZ,4/14/2014 8:30 +Manalapan,,CYLINDER,NJ,4/14/2014 12:50 +South Lake Tahoe,,,CA,4/14/2014 16:00 +Ashe Fork,,LIGHT,NV,4/14/2014 19:00 +Las Vegas,,OTHER,NV,4/14/2014 20:00 +West Hollywood,RED,LIGHT,CA,4/14/2014 20:00 +Plantation,ORANGE,SPHERE,FL,4/14/2014 20:24 +Sun Lakes,,LIGHT,AZ,4/14/2014 20:40 +Conway,,RECTANGLE,SC,4/14/2014 21:00 +Clover,,OTHER,SC,4/14/2014 22:00 +Eden,,LIGHT,UT,4/14/2014 22:00 +Parkville,,,MD,4/14/2014 22:00 +Wasilla,RED,TRIANGLE,AK,4/14/2014 22:45 +Burlington,,FORMATION,WA,4/14/2014 23:00 +Spencer,RED GREEN,RECTANGLE,MA,4/14/2014 23:00 +Vancouver,,VARIOUS,WA,4/14/2014 23:00 +Banning,,CYLINDER,CA,4/14/2014 23:45 +Glendora,,CYLINDER,CA,4/15/2014 0:00 +Portland,,SPHERE,OR,4/15/2014 0:00 +Tacoma,,,WA,4/15/2014 0:00 +Los Angeles,,LIGHT,CA,4/15/2014 1:00 +Denver,,CIRCLE,CO,4/15/2014 1:05 +Denver,,CHEVRON,CO,4/15/2014 1:15 +El Cajon,,LIGHT,CA,4/15/2014 1:15 +Fort Collins,,FORMATION,CO,4/15/2014 1:15 +Grants,,TRIANGLE,NM,4/15/2014 1:15 +San Antonio,,LIGHT,TX,4/15/2014 1:55 +El Cajon,,,CA,4/15/2014 2:00 +Wichita,,CYLINDER,KS,4/15/2014 2:13 +Torrington,,LIGHT,CT,4/15/2014 3:40 +Cape Coral,,FIREBALL,FL,4/15/2014 4:06 +San Fernando Valley,,SPHERE,CA,4/15/2014 8:54 +Glendale,,CIRCLE,AZ,4/15/2014 14:30 +Surprise,RED GREEN,FORMATION,AZ,4/15/2014 15:30 +Sylva,,EGG,NC,4/15/2014 17:45 +Lordsburg,,CYLINDER,NM,4/15/2014 19:30 +Glenns Ferry,,RECTANGLE,ID,4/15/2014 20:30 +Green Bay,RED,LIGHT,WI,4/15/2014 21:00 +Morrisville,RED,LIGHT,NC,4/15/2014 21:15 +Oakley,ORANGE,CIRCLE,ID,4/15/2014 21:38 +Oakley,ORANGE,OVAL,ID,4/15/2014 21:41 +Saint Paul,,OVAL,MN,4/15/2014 22:00 +Blue Bell,,LIGHT,PA,4/15/2014 23:00 +Malibu,,CIRCLE,CA,4/15/2014 23:00 +Miamisburg,,LIGHT,OH,4/15/2014 23:00 +Port Angeles,,,WA,4/15/2014 23:00 +Arizona,,LIGHT,CA,4/16/2014 9:30 +Couer d'Alene,,CIRCLE,ID,4/16/2014 9:38 +Mollusk,,FIREBALL,VA,4/16/2014 10:30 +Wrightsville,,FIREBALL,GA,4/16/2014 10:30 +Huntsville,,CROSS,AL,4/16/2014 14:10 +Mobile,,OTHER,AL,4/16/2014 17:00 +Denton,,,TX,4/16/2014 20:00 +Deptford,,DIAMOND,NJ,4/16/2014 20:20 +Las Vegas,,,NV,4/16/2014 20:20 +Oracle,ORANGE,SPHERE,AZ,4/16/2014 20:40 +Tucson,ORANGE,SPHERE,AZ,4/16/2014 20:40 +Seal Beach,,,CA,4/16/2014 21:00 +Overland Park,,,KS,4/16/2014 21:40 +Mexico,,CHEVRON,IN,4/16/2014 22:03 +Branson,,TRIANGLE,MO,4/16/2014 22:40 +Summerville,,SPHERE,SC,4/16/2014 22:45 +Location unspecified by witness,,OVAL,GA,4/16/2014 23:00 +Columbus,,SPHERE,OH,4/17/2014 14:00 +Yellowstone North Entrance,RED YELLOW,CIRCLE,WY,4/17/2014 18:00 +Florham Park,,DIAMOND,NJ,4/17/2014 20:00 +Benson,,FIREBALL,NC,4/17/2014 21:00 +Prairie Village,,LIGHT,KS,4/17/2014 21:00 +Benson,YELLOW GREEN,CYLINDER,VT,4/17/2014 21:50 +Columbus,,TRIANGLE,MS,4/17/2014 22:00 +West Milford,,TRIANGLE,NJ,4/17/2014 22:00 +Rockwell,ORANGE,,NC,4/17/2014 22:15 +Hallsville,,TRIANGLE,OH,4/17/2014 22:30 +Vestal,,LIGHT,NY,4/17/2014 23:30 +Louisville,YELLOW,FORMATION,KY,4/18/2014 0:00 +Mt. Pleasant,,EGG,MI,4/18/2014 0:00 +Tampa,,LIGHT,FL,4/18/2014 1:17 +Henrico,YELLOW,CIRCLE,VA,4/18/2014 7:45 +Portland,,LIGHT,OR,4/18/2014 12:00 +Derby,,CIRCLE,CT,4/18/2014 15:00 +Waynesboro,RED,LIGHT,PA,4/18/2014 18:00 +Tieton,,CIRCLE,WA,4/18/2014 20:00 +Hernando,,CIRCLE,MS,4/18/2014 20:45 +Sumner,,FORMATION,WA,4/18/2014 20:50 +Longwood,,FORMATION,FL,4/18/2014 21:00 +Monroe,ORANGE,SPHERE,LA,4/18/2014 21:00 +Richmond Heights,,,OH,4/18/2014 21:00 +San Jose,,FIREBALL,CA,4/18/2014 21:00 +Carlton,YELLOW,LIGHT,OR,4/18/2014 21:14 +Dayton,,LIGHT,OH,4/18/2014 21:30 +New Holstein,,CYLINDER,WI,4/18/2014 21:30 +Chico,,LIGHT,CA,4/18/2014 22:00 +Shelton,,LIGHT,WA,4/18/2014 22:00 +Chico,,DISK,CA,4/18/2014 22:01 +Chico,YELLOW,DISK,CA,4/18/2014 22:01 +Bellingham,,LIGHT,WA,4/18/2014 22:10 +Villa Ridge,,FIREBALL,MO,4/18/2014 22:20 +Tulsa,,VARIOUS,OK,4/18/2014 22:58 +Phoenix,ORANGE,OVAL,AZ,4/18/2014 23:05 +Kodiak,,SPHERE,AK,4/19/2014 0:04 +Lutz,,CIRCLE,FL,4/19/2014 0:30 +Jamestown,ORANGE,SPHERE,OH,4/19/2014 10:00 +Parma,,EGG,OH,4/19/2014 13:00 +Atwater,,DISK,OH,4/19/2014 13:15 +Atwater,,DISK,OH,4/19/2014 13:15 +Llano,,,CA,4/19/2014 16:00 +Jackson,ORANGE,SPHERE,TN,4/19/2014 20:00 +Lexington,,OTHER,KY,4/19/2014 20:30 +Richmond,,TRIANGLE,KY,4/19/2014 20:47 +Phoenix,,CIRCLE,AZ,4/19/2014 21:00 +Portage Lakes,ORANGE,OVAL,OH,4/19/2014 21:05 +Louisville,ORANGE,CIRCLE,KY,4/19/2014 21:20 +Orlando,RED,,FL,4/19/2014 21:30 +Holly,,SPHERE,MI,4/19/2014 21:34 +Emmett,BLUE,LIGHT,ID,4/19/2014 21:45 +Englewood,RED YELLOW GREEN BLUE,SPHERE,OH,4/19/2014 22:00 +Hudson,,CIRCLE,OH,4/19/2014 22:00 +Anchorage,,FLASH,AK,4/19/2014 22:15 +Burlington,RED,CIRCLE,WI,4/19/2014 22:45 +Bend,,LIGHT,OR,4/19/2014 22:50 +Neptune,RED,SPHERE,NJ,4/19/2014 23:00 +Yakima,,DIAMOND,WA,4/19/2014 23:00 +Hillsborough Beach,ORANGE,LIGHT,FL,4/19/2014 23:30 +Berkley,,FIREBALL,MI,4/19/2014 23:55 +Irwin,BLUE,LIGHT,PA,4/19/2014 23:59 +Shreveport,,DISK,LA,4/20/2014 0:00 +New Glarus,,OTHER,WI,4/20/2014 1:15 +Anthem,,LIGHT,AZ,4/20/2014 5:20 +Las Vegas,,LIGHT,NV,4/20/2014 6:10 +Clarksburg,,FIREBALL,MD,4/20/2014 9:20 +Manhatten Beach,,CIGAR,CA,4/20/2014 12:45 +Denver,,SPHERE,CO,4/20/2014 14:00 +Scottsdale,,LIGHT,AZ,4/20/2014 15:40 +Las Vegas,,LIGHT,NV,4/20/2014 18:20 +Port Arthur,,CIGAR,TX,4/20/2014 19:00 +Seattle,,LIGHT,WA,4/20/2014 20:00 +Apple Valley,ORANGE,CIRCLE,CA,4/20/2014 20:30 +Peoria,RED YELLOW BLUE,CIRCLE,AZ,4/20/2014 20:32 +Pearl River,ORANGE,FIREBALL,NY,4/20/2014 20:35 +Anthem,ORANGE,,AZ,4/20/2014 21:00 +North Ridgeville,,FIREBALL,OH,4/20/2014 21:00 +Louisville,,TRIANGLE,KY,4/20/2014 21:20 +Sioux Falls,,CIRCLE,SD,4/20/2014 21:30 +Lovettsville,RED GREEN BLUE,FLASH,VA,4/20/2014 21:41 +LaGrange,ORANGE,CIRCLE,IL,4/20/2014 21:45 +Kenner,,LIGHT,LA,4/20/2014 22:00 +Norwich,,RECTANGLE,CT,4/20/2014 22:00 +Rainelle,,,WV,4/20/2014 22:00 +San Anselmo,ORANGE,VARIOUS,CA,4/20/2014 22:00 +Streetsboro,RED,LIGHT,OH,4/20/2014 22:00 +Fort Walton Beach,,LIGHT,FL,4/20/2014 22:30 +Seattle,,FORMATION,WA,4/20/2014 22:50 +Whitehall,,LIGHT,MT,4/20/2014 22:52 +Lawton,,CIRCLE,OK,4/21/2014 0:00 +Palm Harbor,GREEN,LIGHT,FL,4/21/2014 0:10 +Indio,,FIREBALL,CA,4/21/2014 1:00 +Buchanan,,VARIOUS,GA,4/21/2014 5:30 +Glen Rock,GREEN,TRIANGLE,NJ,4/21/2014 8:40 +Tucson,,DISK,AZ,4/21/2014 9:00 +Panama City,,OTHER,FL,4/21/2014 14:30 +Backus,,CIGAR,MN,4/21/2014 18:00 +North Atlanta,,LIGHT,GA,4/21/2014 22:00 +Ozark,RED GREEN BLUE,TRIANGLE,MO,4/21/2014 22:20 +Chesterfield,,,VA,4/21/2014 23:00 +Vacaville,GREEN,LIGHT,CA,4/22/2014 1:50 +Sam's Gap,,TRIANGLE,NC,4/22/2014 2:30 +Escondido,,FORMATION,CA,4/22/2014 5:30 +San Rafael,,CIRCLE,NM,4/22/2014 7:05 +Calhoun,ORANGE,FIREBALL,GA,4/22/2014 10:00 +Jupiter,ORANGE,FIREBALL,FL,4/22/2014 20:00 +Memphis,,LIGHT,TN,4/22/2014 20:29 +Aberdeen,,DISK,MD,4/22/2014 20:30 +Cocoa Beach,ORANGE,FIREBALL,NY,4/22/2014 20:50 +Cajah's Mountain,,RECTANGLE,NC,4/22/2014 21:00 +Ft. Campbell,,LIGHT,TN,4/22/2014 21:00 +Miami Beach,GREEN,DISK,FL,4/22/2014 21:00 +Morristown,,TRIANGLE,TN,4/22/2014 21:00 +Walla Walla,,,WA,4/22/2014 21:00 +Fletcher,,TRIANGLE,NC,4/22/2014 21:17 +Craig,,LIGHT,CO,4/22/2014 21:30 +Maumee,,CIRCLE,OH,4/22/2014 21:30 +Twilight,,SPHERE,WV,4/22/2014 21:30 +Mount Pulaski,,SPHERE,IL,4/22/2014 21:40 +Fallbrook,,FIREBALL,CA,4/22/2014 23:17 +La Mesa,,CIRCLE,CA,4/23/2014 0:57 +Raywick,,CIRCLE,KY,4/23/2014 3:45 +Charlotte,,DISK,NC,4/23/2014 8:37 +Dauphin Island,,LIGHT,AL,4/23/2014 20:08 +Clovis,RED,,NM,4/23/2014 20:15 +Phoenix,,CIRCLE,AZ,4/23/2014 20:30 +Alpharetta,,LIGHT,GA,4/23/2014 21:00 +Dauphin Island,,FORMATION,AL,4/23/2014 22:15 +Tulsa,,TRIANGLE,OK,4/23/2014 22:40 +Mount Vernon,,CHEVRON,WA,4/23/2014 23:00 +Lincoln,RED BLUE,SPHERE,CA,4/23/2014 23:15 +Harrisburg,BLUE,,PA,4/23/2014 23:20 +Tamarac,,FIREBALL,FL,4/24/2014 1:00 +Mojave,,,CA,4/24/2014 3:00 +York,,CIRCLE,PA,4/24/2014 3:30 +Louisburg,,CIRCLE,NC,4/24/2014 4:30 +Rio Rancho,,OVAL,NM,4/24/2014 8:45 +Warren,,CIGAR,RI,4/24/2014 10:00 +Phoenix,,CIRCLE,AZ,4/24/2014 20:00 +Dauphin Island,,LIGHT,AL,4/24/2014 20:30 +Henderson,,SPHERE,NV,4/24/2014 20:30 +Albuquerque,RED GREEN,LIGHT,NM,4/24/2014 21:00 +Fountain Inn,,LIGHT,SC,4/24/2014 21:00 +Orange Beach,ORANGE,FORMATION,AL,4/24/2014 21:00 +Lagrange,,LIGHT,GA,4/24/2014 21:30 +North Zulch,,LIGHT,TX,4/24/2014 21:30 +Debary,,LIGHT,FL,4/24/2014 21:35 +Huntington Beach,,FIREBALL,CA,4/24/2014 21:39 +Rogers,,LIGHT,AR,4/24/2014 21:44 +Evans,,LIGHT,GA,4/24/2014 22:00 +San Diego,,LIGHT,CA,4/24/2014 22:00 +Walnut,,LIGHT,CA,4/24/2014 22:26 +Pompano Beach,BLUE,OTHER,FL,4/24/2014 22:30 +Gardner,GREEN,,KS,4/24/2014 23:30 +Castleton,,LIGHT,VT,4/25/2014 1:00 +Newark,,DISK,NJ,4/25/2014 5:00 +Zillah,,FLASH,WA,4/25/2014 18:30 +Grandbay,ORANGE,FORMATION,AL,4/25/2014 20:00 +Rifle,,SPHERE,CO,4/25/2014 21:00 +Canyon Country,,OVAL,CA,4/25/2014 21:05 +Boise,YELLOW,LIGHT,ID,4/25/2014 21:15 +Oxnard,,LIGHT,CA,4/25/2014 21:19 +Morgantown,YELLOW,OTHER,WV,4/25/2014 21:30 +Cannon Beach,ORANGE,LIGHT,OR,4/25/2014 22:00 +Quitman,,TRIANGLE,GA,4/25/2014 22:00 +Hoover,,,AL,4/25/2014 22:09 +Columbus,,LIGHT,GA,4/25/2014 22:15 +Cedar Falls,,LIGHT,IA,4/25/2014 22:20 +Theodore,ORANGE,FIREBALL,AL,4/25/2014 22:30 +Rialto,GREEN,LIGHT,CA,4/25/2014 23:00 +Warren,RED BLUE,TRIANGLE,MI,4/25/2014 23:00 +Inverness,RED ORANGE,CIRCLE,FL,4/26/2014 0:00 +Holland,,TRIANGLE,MI,4/26/2014 0:50 +Newberry,,LIGHT,SC,4/26/2014 15:35 +San Antonio,,SPHERE,TX,4/26/2014 16:57 +Greenwood,,CROSS,IN,4/26/2014 17:00 +Maud,YELLOW,TRIANGLE,TX,4/26/2014 17:00 +Boise,,TRIANGLE,ID,4/26/2014 19:00 +Gilbert,,TRIANGLE,AZ,4/26/2014 19:00 +Riverside,,DIAMOND,NJ,4/26/2014 20:15 +Whittier,,FIREBALL,CA,4/26/2014 20:43 +Troy,ORANGE,CIRCLE,MO,4/26/2014 20:53 +Santa Cruz,,OTHER,CA,4/26/2014 21:00 +Louisville,BLUE,FIREBALL,KY,4/26/2014 21:10 +Pantego,,CIRCLE,TX,4/26/2014 21:15 +Cincinnati,ORANGE,SPHERE,OH,4/26/2014 21:45 +Cincinnati,RED,SPHERE,OH,4/26/2014 21:45 +Tarpon Springs,,,FL,4/26/2014 21:45 +Cuyahoga Falls,,FIREBALL,OH,4/26/2014 22:00 +Novi,RED ORANGE,SPHERE,MI,4/26/2014 22:15 +Cottonwood,,CIRCLE,AL,4/26/2014 22:30 +Manahawkin,,TRIANGLE,NJ,4/26/2014 23:30 +Brookhaven,,SPHERE,PA,4/27/2014 0:00 +Columia,,LIGHT,KY,4/27/2014 0:00 +Raceland,,TRIANGLE,LA,4/27/2014 0:00 +Kalispell,GREEN,SPHERE,MT,4/27/2014 0:32 +Slidell,,OTHER,LA,4/27/2014 1:50 +Savannah,BLUE,LIGHT,GA,4/27/2014 2:00 +Louisburg,,CIRCLE,NC,4/27/2014 4:40 +Awatukee,,RECTANGLE,AZ,4/27/2014 9:48 +Azuza,,CIRCLE,CA,4/27/2014 13:00 +Vinton,,RECTANGLE,VA,4/27/2014 13:45 +Fort Wayne,,FORMATION,IN,4/27/2014 18:20 +Wellington,,LIGHT,FL,4/27/2014 20:21 +Kenmore,,FIREBALL,WA,4/27/2014 20:30 +Cape Coral,RED,CIRCLE,FL,4/27/2014 20:45 +Chatsworth,ORANGE GREEN,CHEVRON,CA,4/27/2014 20:45 +Knoxville,ORANGE,FORMATION,TN,4/27/2014 20:45 +Chatsworth,RED,,CA,4/27/2014 20:50 +Belmar,ORANGE,LIGHT,NJ,4/27/2014 21:00 +Kenmore,,CIRCLE,WA,4/27/2014 21:00 +Kenmore,,LIGHT,WA,4/27/2014 21:00 +Shoreline,ORANGE,LIGHT,WA,4/27/2014 21:00 +Kenmore,,FORMATION,WA,4/27/2014 21:05 +Kenmore,,LIGHT,WA,4/27/2014 21:05 +Kenmore,ORANGE,LIGHT,WA,4/27/2014 21:05 +Kenmore,,,WA,4/27/2014 21:20 +Chatsworth,,CIRCLE,CA,4/27/2014 21:30 +Moss Bluff,,LIGHT,LA,4/27/2014 22:00 +Sparta,ORANGE,LIGHT,NJ,4/27/2014 22:00 +Sparta,ORANGE,LIGHT,NJ,4/27/2014 22:00 +Sonoma,ORANGE,LIGHT,CA,4/27/2014 22:15 +Deer Park,,SPHERE,WA,4/27/2014 22:34 +Bellingham,,LIGHT,WA,4/27/2014 23:00 +Fairfax,,CHEVRON,VA,4/27/2014 23:00 +Oakley,,,MI,4/27/2014 23:00 +Springlake,,LIGHT,MI,4/27/2014 23:10 +Coeur d'Alene,BLUE,VARIOUS,ID,4/28/2014 3:33 +Goodyear,ORANGE,LIGHT,AZ,4/28/2014 20:25 +Silver City,,LIGHT,NM,4/28/2014 20:30 +Sarasota,,CIRCLE,FL,4/28/2014 21:10 +Tonopah,,FIREBALL,NV,4/28/2014 21:30 +Jefferson City,,CIRCLE,TN,4/28/2014 22:00 +Vancouver,,,WA,4/28/2014 22:00 +Texarkana,,,TX,4/28/2014 23:00 +Sunrise,,SPHERE,FL,4/28/2014 23:30 +White Bear Lake,,LIGHT,MN,4/28/2014 23:50 +Crescent City,,TEARDROP,CA,4/29/2014 2:15 +Lysander,ORANGE,LIGHT,NY,4/29/2014 5:00 +West Paducah,,CIRCLE,KY,4/29/2014 18:00 +Stanford,,CIRCLE,CA,4/29/2014 20:30 +Coral Springs,,LIGHT,FL,4/29/2014 21:30 +Lawrenceville,,LIGHT,GA,4/29/2014 21:30 +Coral Springs,,DIAMOND,FL,4/29/2014 21:40 +Casa Grande,YELLOW,LIGHT,AZ,4/29/2014 21:45 +Clovis,,SPHERE,NM,4/29/2014 22:00 +Land O'Lakes,,CIRCLE,FL,4/29/2014 22:00 +Anderson,,DISK,SC,4/29/2014 22:30 +Seneca,,VARIOUS,SC,4/29/2014 22:34 +Ontario,,TRIANGLE,CA,4/29/2014 23:59 +Charleston,YELLOW,,WV,4/30/2014 1:10 +Portland,,FLASH,OR,4/30/2014 8:30 +Chino Hills,,RECTANGLE,CA,4/30/2014 17:00 +Ogden,,VARIOUS,UT,4/30/2014 21:00 +Port St. Lucie,BLUE,CIRCLE,FL,4/30/2014 21:00 +Tallahassee,,TRIANGLE,FL,4/30/2014 21:00 +Venice,,TRIANGLE,CA,4/30/2014 21:03 +Las Vegas,,LIGHT,NV,4/30/2014 21:10 +Camano Island,,FIREBALL,WA,4/30/2014 21:44 +The Dalles,,FORMATION,OR,4/30/2014 21:50 +San Marcos,,FIREBALL,CA,4/30/2014 22:00 +Stanardsville,RED,FLASH,VA,5/1/2014 0:20 +Frisco,,LIGHT,NC,5/1/2014 1:15 +Beaverdam,,OTHER,OH,5/1/2014 5:15 +Boise,,OTHER,ID,5/1/2014 8:15 +Santa Cruz,,SPHERE,CA,5/1/2014 10:30 +Honolulu,,OTHER,HI,5/1/2014 15:30 +Charleston,ORANGE,FORMATION,WV,5/1/2014 16:45 +Columbia,,OTHER,SC,5/1/2014 19:00 +Mesa,RED BLUE,CIRCLE,AZ,5/1/2014 19:15 +Mesa,RED BLUE,CIRCLE,AZ,5/1/2014 19:15 +St. Louis,ORANGE,FIREBALL,MO,5/1/2014 19:35 +Cullman,,,AL,5/1/2014 20:00 +Lynchburg,,TRIANGLE,VA,5/1/2014 20:05 +Huntsville,,OTHER,AL,5/1/2014 20:30 +Purcellville,,OTHER,VA,5/1/2014 20:30 +Boaz,,OTHER,AL,5/1/2014 20:48 +Rock Hill,,FORMATION,SC,5/1/2014 20:50 +Los Angeles,RED BLUE,LIGHT,CA,5/1/2014 21:00 +Fyffe,,,AL,5/1/2014 21:15 +Ringgold,,OTHER,GA,5/1/2014 21:15 +Belmont,,FORMATION,MS,5/1/2014 21:16 +McLean,,LIGHT,IL,5/1/2014 21:30 +Ringgold,,OTHER,GA,5/1/2014 21:30 +Salem,ORANGE,OTHER,OR,5/1/2014 21:30 +Eaton,BLUE,,CO,5/1/2014 21:35 +North Haven,,CIRCLE,CT,5/1/2014 21:45 +Rosedale,RED,CIRCLE,MS,5/1/2014 21:55 +Maricopa,,,AZ,5/1/2014 22:05 +Mountain Home,,,AR,5/1/2014 22:15 +Texarkana,,DISK,TX,5/1/2014 22:22 +Carrollton,,LIGHT,TX,5/1/2014 22:40 +Kingston,,CIGAR,PA,5/1/2014 22:50 +Chula Vista,,SPHERE,CA,5/1/2014 23:00 +Ellijay,,OTHER,GA,5/1/2014 23:00 +Frisco,,CIGAR,TX,5/1/2014 23:05 +Flower Mound,,VARIOUS,TX,5/1/2014 23:10 +Denton,,FORMATION,TX,5/1/2014 23:15 +Duluth,,OTHER,GA,5/1/2014 23:30 +Orange Park,,,FL,5/2/2014 2:37 +Mission,GREEN,TRIANGLE,TX,5/2/2014 5:40 +Colorado Springs,,OTHER,CO,5/2/2014 10:30 +Shreveport,,OTHER,LA,5/2/2014 11:00 +Lesterville,,,MO,5/2/2014 20:00 +McNary,ORANGE,CROSS,OR,5/2/2014 20:30 +Belgreen,,FORMATION,AL,5/2/2014 20:38 +San Diego,,TRIANGLE,CA,5/2/2014 20:40 +Yorktown,ORANGE,FORMATION,VA,5/2/2014 21:15 +Camden,ORANGE,SPHERE,TN,5/2/2014 21:30 +East Bend,ORANGE,FORMATION,NC,5/2/2014 21:44 +Scottsdale,,FIREBALL,AZ,5/2/2014 21:45 +Liberty,,TRIANGLE,SC,5/2/2014 22:00 +Salem,ORANGE,SPHERE,UT,5/2/2014 22:00 +Queen Creek,RED,LIGHT,AZ,5/2/2014 22:15 +Durham,RED,FLASH,NC,5/2/2014 22:30 +Iron Gate,ORANGE,LIGHT,VA,5/2/2014 22:40 +Parma,RED ORANGE,FIREBALL,OH,5/2/2014 22:45 +Enfield,RED ORANGE,LIGHT,CT,5/2/2014 23:30 +Milford,,CIRCLE,CT,5/3/2014 0:00 +Myrtle Beach,RED,CIRCLE,SC,5/3/2014 0:00 +Fulton,,EGG,MS,5/3/2014 4:10 +Umatilla,ORANGE,CIRCLE,OR,5/3/2014 8:15 +Crescent City,,,CA,5/3/2014 18:00 +Waikiki Beach,GREEN,LIGHT,HI,5/3/2014 19:55 +Canton,,SPHERE,OH,5/3/2014 20:00 +York,,VARIOUS,SC,5/3/2014 20:45 +Spring,,SPHERE,TX,5/3/2014 20:54 +Currie,RED ORANGE,LIGHT,NC,5/3/2014 21:00 +Grayson,,SPHERE,GA,5/3/2014 21:00 +Hialeah,ORANGE,LIGHT,FL,5/3/2014 21:00 +Waxhaw,,CIRCLE,NC,5/3/2014 21:00 +Lombard,RED,CIRCLE,IL,5/3/2014 21:05 +Atkinson,,SPHERE,NH,5/3/2014 21:30 +Parkersburg,,LIGHT,WV,5/3/2014 21:45 +Hot Springs,,,NC,5/3/2014 22:00 +Snow Camp,ORANGE,OVAL,NC,5/3/2014 22:00 +Waxhaw,,CIRCLE,NC,5/3/2014 22:00 +Henderson,RED,FIREBALL,NV,5/3/2014 22:02 +Thomasville,,LIGHT,NC,5/3/2014 22:20 +Huntersville,RED,SPHERE,NC,5/3/2014 22:30 +South Tamworth,ORANGE,OVAL,NH,5/3/2014 22:30 +Travelers Rest,GREEN,FIREBALL,SC,5/3/2014 22:30 +Buford,RED,,GA,5/3/2014 23:10 +Mckinney,,TRIANGLE,TX,5/3/2014 23:11 +Glendale Heights,GREEN,FORMATION,IL,5/3/2014 23:30 +Irving,,FIREBALL,TX,5/4/2014 0:00 +Clermont,,,FL,5/4/2014 4:00 +Junction City,BLUE,TRIANGLE,KY,5/4/2014 20:15 +Schwenksville,,OTHER,PA,5/4/2014 21:10 +Cherryville,RED,TRIANGLE,NC,5/4/2014 21:29 +Waterloo,,TRIANGLE,WI,5/4/2014 21:30 +Jackson,,CIRCLE,TN,5/4/2014 22:00 +Wyoming,,,MI,5/4/2014 22:15 +Rockford,,LIGHT,TN,5/4/2014 22:50 +Anaheim,,FIREBALL,CA,5/4/2014 23:10 +Hollywood,BLUE,CIRCLE,FL,5/4/2014 23:30 +Lancaster,ORANGE,CIRCLE,PA,5/5/2014 1:15 +Cumming,,CIGAR,GA,5/5/2014 1:25 +Kuna,ORANGE,CIRCLE,ID,5/5/2014 2:31 +Byron,,CIRCLE,GA,5/5/2014 3:20 +Vallejo,,SPHERE,CA,5/5/2014 9:40 +Anchorage,,,AK,5/5/2014 16:00 +Honolulu,GREEN,VARIOUS,HI,5/5/2014 19:30 +Nashville,,TRIANGLE,TN,5/5/2014 20:09 +Boca Raton,,TRIANGLE,FL,5/5/2014 20:30 +Charlotte,,VARIOUS,NC,5/5/2014 20:35 +Collegeville,RED GREEN,DISK,PA,5/5/2014 22:30 +Grand Rapids,ORANGE,TRIANGLE,MI,5/5/2014 22:45 +Lakeport,,LIGHT,CA,5/5/2014 23:00 +Oak Forest,,TRIANGLE,IL,5/5/2014 23:00 +West Seneca,,CIRCLE,NY,5/5/2014 23:04 +Santa Rosa Beach,,FIREBALL,FL,5/5/2014 23:16 +Coral Springs,,LIGHT,FL,5/5/2014 23:45 +Mendon,,OVAL,MA,5/6/2014 0:20 +Hernando,,LIGHT,MS,5/6/2014 1:00 +Lorton,,OVAL,VA,5/6/2014 2:00 +Oxford,,LIGHT,MI,5/6/2014 3:58 +Grand Bay,RED,CIRCLE,AL,5/6/2014 20:08 +Gadsden,,CYLINDER,AL,5/6/2014 20:35 +Ellensburg,RED,LIGHT,WA,5/6/2014 21:00 +Hanahan,,DIAMOND,SC,5/6/2014 21:30 +New Haven,RED,FIREBALL,CT,5/6/2014 22:00 +West Palm Beach,ORANGE,FIREBALL,FL,5/6/2014 22:00 +Shreveport,,OTHER,LA,5/6/2014 22:15 +St. Louis,,FIREBALL,MO,5/6/2014 22:30 +Liberty,,OVAL,SC,5/6/2014 23:00 +Melbourne,ORANGE,SPHERE,FL,5/6/2014 23:00 +Detroit,,FIREBALL,MI,5/7/2014 0:00 +Honolulu,,LIGHT,HI,5/7/2014 3:00 +Calera,GREEN BLUE,CIRCLE,AL,5/7/2014 3:30 +Reno,,LIGHT,NV,5/7/2014 4:24 +Port Richey,,,FL,5/7/2014 9:30 +San Jose,,DISK,CA,5/7/2014 15:00 +Lakeville,,OVAL,MN,5/7/2014 17:30 +Calimesa,,,CA,5/7/2014 18:25 +Seagrove Beach,,FIREBALL,FL,5/7/2014 20:30 +Visalia,,FIREBALL,CA,5/7/2014 20:30 +Theodore,,CIRCLE,AL,5/7/2014 21:00 +Naugatuck,,,CT,5/7/2014 21:10 +Hillsboro,,FIREBALL,MO,5/7/2014 21:20 +Apache Junction,,CIRCLE,AZ,5/7/2014 22:00 +Greeley,,RECTANGLE,CO,5/7/2014 22:00 +Cockeysville,,TRIANGLE,MD,5/7/2014 22:40 +Dalton,ORANGE,,GA,5/7/2014 22:45 +San Isidro,RED GREEN,,NM,5/7/2014 23:30 +West Palm Beach,ORANGE,LIGHT,FL,5/7/2014 23:30 +Memphis,,RECTANGLE,TN,5/8/2014 0:00 +Jeffersonville,,FORMATION,IN,5/8/2014 1:00 +Tucson,,CIRCLE,AZ,5/8/2014 11:30 +Lake Villa,,DISK,IL,5/8/2014 16:00 +Dublin,,CYLINDER,OH,5/8/2014 17:00 +Franklin,,DISK,IN,5/8/2014 17:00 +Ahwatukee,BLUE,SPHERE,AZ,5/8/2014 19:20 +Bristol,ORANGE,SPHERE,CT,5/8/2014 20:30 +Brandon,RED,LIGHT,FL,5/8/2014 21:00 +Dauphin Island,,FORMATION,AL,5/8/2014 21:00 +Dauphin Island,,LIGHT,AL,5/8/2014 21:00 +Taos,,OVAL,NM,5/8/2014 21:00 +Foxworth,,TRIANGLE,MS,5/8/2014 22:00 +New Concord,,TRIANGLE,OH,5/8/2014 22:30 +Owings Mills,BLUE,LIGHT,MD,5/8/2014 22:43 +Culver City,,FORMATION,CA,5/8/2014 23:12 +Martinez,ORANGE,,GA,5/8/2014 23:15 +Brinklow,,LIGHT,MD,5/9/2014 0:00 +Clermont,,CIRCLE,IN,5/9/2014 0:30 +Columbus,,FIREBALL,OH,5/9/2014 2:28 +Redmond,RED,,WA,5/9/2014 3:00 +Oxford,,,CT,5/9/2014 3:50 +Saint Petersburg,,FIREBALL,FL,5/9/2014 5:00 +Cary,,LIGHT,NC,5/9/2014 5:15 +Dallas,,OTHER,TX,5/9/2014 8:00 +Kenosha,RED ORANGE,LIGHT,WI,5/9/2014 9:40 +Monroe,,LIGHT,WI,5/9/2014 10:10 +St. Clair Shores,,LIGHT,MI,5/9/2014 11:20 +St. Louis,ORANGE,SPHERE,MO,5/9/2014 20:45 +Santa Cruz,ORANGE,LIGHT,CA,5/9/2014 21:20 +Methuen,ORANGE,SPHERE,MA,5/9/2014 21:35 +Scottsdale,RED BLUE,LIGHT,AZ,5/9/2014 21:45 +Mukilteo,ORANGE,,WA,5/10/2014 0:00 +Ewa Beach,,LIGHT,HI,5/10/2014 1:00 +Riverview,,FIREBALL,FL,5/10/2014 1:35 +Oceanside,RED ORANGE,CIRCLE,CA,5/10/2014 3:45 +Cartersville,YELLOW,CIGAR,GA,5/10/2014 6:00 +Greensburg,,,PA,5/10/2014 14:00 +Green Bay,,TRIANGLE,WI,5/10/2014 18:30 +caseville,,CIRCLE,MI,5/10/2014 20:00 +Cicero,ORANGE,FIREBALL,NY,5/10/2014 20:00 +mobile,RED ORANGE,SPHERE,AL,5/10/2014 20:00 +Winston-Salem,RED,TRIANGLE,NC,5/10/2014 20:05 +Cape Neddick,ORANGE,TEARDROP,ME,5/10/2014 20:30 +Owasso,RED BLUE,,OK,5/10/2014 20:55 +Irving,,CIRCLE,AK,5/10/2014 21:00 +Monrovia,ORANGE,CIRCLE,IN,5/10/2014 21:00 +Stewarts town,,LIGHT,PA,5/10/2014 21:30 +Tempe,,OTHER,AZ,5/10/2014 21:30 +Tinley Park,RED ORANGE,LIGHT,IL,5/10/2014 21:35 +Atoka,,TRIANGLE,TN,5/10/2014 21:40 +Melbourne Beach,,SPHERE,FL,5/10/2014 21:55 +Chicago,ORANGE,FIREBALL,IL,5/10/2014 22:00 +Davison,ORANGE,SPHERE,MI,5/10/2014 22:00 +Gloucester,,EGG,MA,5/10/2014 22:00 +Harrisville,,LIGHT,MI,5/10/2014 22:00 +Jefferson City,RED ORANGE,CYLINDER,TN,5/10/2014 22:00 +Jefferson City,,FIREBALL,TN,5/10/2014 22:00 +Jefferson City,ORANGE,FIREBALL,TN,5/10/2014 22:00 +West Chicago,ORANGE,CIRCLE,IL,5/10/2014 23:00 +Covington,,SPHERE,LA,5/10/2014 23:25 +Westlake,ORANGE,OVAL,OH,5/10/2014 23:28 +Put-In-Bay,BLUE,OVAL,OH,5/10/2014 23:30 +Riverview,,CIRCLE,FL,5/11/2014 1:30 +Reading,,CIRCLE,MA,5/11/2014 6:20 +Broadlands,RED GREEN,LIGHT,VA,5/11/2014 20:30 +Muscatine,RED,SPHERE,IA,5/11/2014 20:30 +New York City,,LIGHT,NY,5/11/2014 22:00 +Springfield,,,TN,5/11/2014 22:00 +Newport,,LIGHT,OR,5/11/2014 22:45 +Pittsburgh,,OVAL,PA,5/11/2014 22:50 +Hawthorne,,LIGHT,CA,5/11/2014 23:00 +Portland,,SPHERE,OR,5/11/2014 23:30 +Erie,,FIREBALL,PA,5/11/2014 23:55 +Tyngsboro,ORANGE,CROSS,MA,5/12/2014 4:00 +San Diego,,CIRCLE,CA,5/12/2014 9:20 +Comptche,,RECTANGLE,CA,5/12/2014 10:40 +Lawrence Township,,,NJ,5/12/2014 13:45 +Meriden,,CIRCLE,CT,5/12/2014 20:30 +Methuen,,OTHER,MA,5/12/2014 20:45 +Westminster,,LIGHT,CA,5/12/2014 21:00 +Myrtle Beach,ORANGE,LIGHT,SC,5/12/2014 21:30 +St. George Island,,TRIANGLE,FL,5/12/2014 22:00 +Troy,ORANGE,CIRCLE,NY,5/12/2014 23:00 +Marion,,CIRCLE,IN,5/13/2014 0:00 +Anchorage,,VARIOUS,AK,5/13/2014 2:00 +Surprise,,LIGHT,AZ,5/13/2014 2:30 +Louisburg,,CIRCLE,NC,5/13/2014 5:03 +Boise,,OTHER,ID,5/13/2014 13:45 +Riverdale,,SPHERE,UT,5/13/2014 16:00 +San Jose,,SPHERE,CA,5/13/2014 16:00 +Bentonville,,LIGHT,AR,5/13/2014 21:00 +North Myrtle Beach,ORANGE,SPHERE,SC,5/13/2014 21:00 +Carolina Beach,RED,TRIANGLE,NC,5/13/2014 21:30 +Galesburg,,FIREBALL,MI,5/13/2014 21:57 +Myrtle Beach,ORANGE,FIREBALL,SC,5/13/2014 22:30 +Altoona,,FIREBALL,IA,5/13/2014 22:58 +San Diego,,LIGHT,CA,5/13/2014 23:00 +Bozeman,RED,TRIANGLE,MT,5/14/2014 0:00 +Fayetteville,,FIREBALL,AR,5/14/2014 0:00 +La Habra,,CIRCLE,CA,5/14/2014 5:30 +Montgomery,,CIRCLE,NJ,5/14/2014 7:45 +Spirit Lake,,VARIOUS,ID,5/14/2014 12:15 +St. Louis,,CYLINDER,MO,5/14/2014 14:00 +Homer,,OTHER,AK,5/14/2014 17:45 +Bend,,DISK,OR,5/14/2014 20:00 +San Diego,,DIAMOND,CA,5/14/2014 20:00 +San Jose,,DIAMOND,CA,5/14/2014 20:00 +Camden,,RECTANGLE,SC,5/14/2014 20:45 +Burlington,,TRIANGLE,NC,5/14/2014 21:30 +Roswell,,LIGHT,GA,5/14/2014 21:45 +Vancouver,,LIGHT,WA,5/14/2014 22:00 +Sacramento,,,CA,5/14/2014 23:20 +Winter Springs,,LIGHT,FL,5/14/2014 23:20 +Phoenix,,DISK,AZ,5/15/2014 18:00 +North Waterboro,,TEARDROP,ME,5/15/2014 19:00 +Byron,,SPHERE,GA,5/15/2014 20:55 +Buford,,FIREBALL,GA,5/15/2014 21:30 +Unadilla,,CIGAR,GA,5/15/2014 21:30 +Cumming,,,GA,5/15/2014 21:40 +Lampasas,ORANGE,CIRCLE,TX,5/15/2014 21:45 +Goodyear,,OTHER,AZ,5/15/2014 22:06 +Owasso,,LIGHT,OK,5/15/2014 22:10 +Hermitage,RED,TRIANGLE,PA,5/15/2014 22:25 +Huntington,,DISK,WV,5/16/2014 7:30 +Auburn,,,WA,5/16/2014 14:00 +Orlando,,OTHER,FL,5/16/2014 20:10 +Wilmington,ORANGE,LIGHT,PA,5/16/2014 20:30 +Mesa,ORANGE,FIREBALL,AZ,5/16/2014 20:50 +San Diego,,FIREBALL,CA,5/16/2014 21:00 +Honolulu,,,HI,5/16/2014 21:30 +Laurens,,LIGHT,SC,5/16/2014 21:30 +San Fernando,,CIRCLE,CA,5/16/2014 21:47 +Norcross,,LIGHT,GA,5/16/2014 21:55 +Atlanta,RED,,GA,5/16/2014 22:00 +Merced,,FLASH,CA,5/16/2014 22:00 +Middletown,,,CT,5/16/2014 22:00 +Massillon,RED,FORMATION,OH,5/16/2014 22:05 +Alamogordo,,,NM,5/16/2014 22:30 +Wichita Falls,,VARIOUS,TX,5/16/2014 22:45 +Dubuque,,DISK,IA,5/17/2014 0:00 +Trexlertown,,SPHERE,PA,5/17/2014 0:03 +Oakdale,,CIRCLE,MN,5/17/2014 1:45 +Daytona Beach,,FIREBALL,FL,5/17/2014 2:30 +Gardendale,,SPHERE,AL,5/17/2014 5:04 +Wilkes-Barre,,CYLINDER,PA,5/17/2014 6:45 +Chandler,,TRIANGLE,AZ,5/17/2014 8:30 +Patterson,ORANGE,LIGHT,LA,5/17/2014 9:15 +Emerald Isle,ORANGE,SPHERE,NC,5/17/2014 9:45 +Cypress,,,TX,5/17/2014 10:00 +Inver Grove Heights,,SPHERE,MN,5/17/2014 12:15 +Allen,,CIRCLE,TX,5/17/2014 19:30 +Cary,ORANGE,SPHERE,NC,5/17/2014 20:00 +Finksburg,,FIREBALL,MD,5/17/2014 20:00 +Mechanicsburg,,,PA,5/17/2014 20:56 +Chicago,,TRIANGLE,IL,5/17/2014 21:00 +De Soto,,LIGHT,MO,5/17/2014 21:00 +Finleyville,,CIRCLE,PA,5/17/2014 21:00 +Jacksonville,,FIREBALL,FL,5/17/2014 21:00 +Villa Rica,,FIREBALL,GA,5/17/2014 21:00 +Los Angeles,,CIRCLE,CA,5/17/2014 21:05 +Portland,RED ORANGE YELLOW,LIGHT,OR,5/17/2014 21:08 +Blanchard,,CIRCLE,PA,5/17/2014 21:35 +Lindstrom,,FIREBALL,MN,5/17/2014 21:45 +Islip,ORANGE,,NY,5/17/2014 22:00 +Patchogue,,FIREBALL,NY,5/17/2014 22:00 +Largo,,FIREBALL,FL,5/17/2014 22:05 +Enfield,ORANGE,LIGHT,CT,5/17/2014 22:07 +Warrenton,ORANGE,FIREBALL,MO,5/17/2014 22:48 +Vail,,DIAMOND,AZ,5/17/2014 22:50 +Somers,,LIGHT,NY,5/18/2014 0:00 +Hilton,,LIGHT,NY,5/18/2014 0:45 +Holden,YELLOW GREEN,LIGHT,LA,5/18/2014 2:00 +Portland,,,OR,5/18/2014 3:20 +Stuart,ORANGE,EGG,FL,5/18/2014 11:00 +Glen Ellyn,,,IL,5/18/2014 20:32 +Atlanta,,SPHERE,GA,5/18/2014 20:33 +Phoenix,ORANGE,EGG,AZ,5/18/2014 20:50 +Nason,GREEN,,IL,5/18/2014 21:00 +Little Falls,,FIREBALL,NJ,5/18/2014 21:15 +Trinidad,,DIAMOND,CA,5/18/2014 21:15 +Goldsboro,,FORMATION,NC,5/18/2014 21:45 +Powder Springs,RED,FORMATION,GA,5/18/2014 21:50 +Salton Sea Beach,ORANGE,LIGHT,CA,5/18/2014 22:00 +Northampton,,LIGHT,PA,5/18/2014 22:10 +Round Rock,,TRIANGLE,TX,5/18/2014 23:00 +Waynesburg,,FIREBALL,PA,5/18/2014 23:45 +Healdton,,DISK,OK,5/19/2014 0:00 +Westwood,,LIGHT,CA,5/19/2014 2:45 +Middletown,,CIRCLE,RI,5/19/2014 8:30 +Dorchester,,DIAMOND,MA,5/19/2014 10:15 +Salida,,SPHERE,CO,5/19/2014 10:34 +Stockton,,OVAL,CA,5/19/2014 11:00 +Orlando,RED,LIGHT,FL,5/19/2014 20:50 +Altamonte Springs,ORANGE,FIREBALL,FL,5/19/2014 21:00 +Altamonte Springs,,LIGHT,FL,5/19/2014 21:00 +Peaster,,,TX,5/19/2014 21:15 +St. Hedwig,,TRIANGLE,TX,5/19/2014 21:15 +Manchester,,LIGHT,OH,5/19/2014 22:05 +Rathdrum,,LIGHT,ID,5/19/2014 22:20 +Killingworth,,DIAMOND,CT,5/19/2014 22:22 +Savannah,,VARIOUS,GA,5/19/2014 23:00 +Santa Paula,YELLOW,DIAMOND,CA,5/19/2014 23:20 +Madisonville,,LIGHT,KY,5/20/2014 0:00 +Miramar,GREEN,TEARDROP,FL,5/20/2014 0:00 +Jacksonville,,CIRCLE,FL,5/20/2014 1:00 +Parkland,,OTHER,WA,5/20/2014 1:22 +New York City,,FIREBALL,NY,5/20/2014 2:00 +Honokaa,,LIGHT,HI,5/20/2014 4:00 +Rupert,BLUE,CIRCLE,WV,5/20/2014 4:15 +Tampa,GREEN,CHEVRON,FL,5/20/2014 16:15 +Lahaina,,,HI,5/20/2014 18:30 +Mililani,ORANGE,LIGHT,HI,5/20/2014 19:00 +Lahaiiina,,LIGHT,HI,5/20/2014 19:30 +Waianae,,FORMATION,HI,5/20/2014 19:30 +Maui,,LIGHT,HI,5/20/2014 19:35 +Wailea,,OTHER,HI,5/20/2014 19:50 +Wailuku,,FIREBALL,HI,5/20/2014 20:00 +Peabody,,FIREBALL,MA,5/20/2014 20:30 +Cave Creek,,DISK,AZ,5/20/2014 21:00 +Cameron,ORANGE,SPHERE,MO,5/20/2014 21:30 +Custer,,SPHERE,WI,5/20/2014 21:40 +New Canaan,,FLASH,CT,5/20/2014 21:45 +Mill Creek,ORANGE,OTHER,WA,5/20/2014 22:00 +Orange Park,ORANGE,LIGHT,FL,5/20/2014 22:00 +Port St. Lucie,,LIGHT,FL,5/20/2014 22:00 +Tampa Vay viewing from west,,SPHERE,FL,5/20/2014 22:00 +Yakima,RED,OTHER,WA,5/20/2014 22:05 +Olive Branch,,FLASH,MS,5/20/2014 22:30 +Atlanta,,LIGHT,IL,5/20/2014 22:40 +Idaho Falls,,,ID,5/20/2014 23:26 +Tigard,ORANGE,TRIANGLE,OR,5/21/2014 0:00 +West Monroe,,DIAMOND,LA,5/21/2014 4:00 +Converse,,CIRCLE,TX,5/21/2014 9:15 +Las Vegas,,SPHERE,NV,5/21/2014 13:40 +Grand Rapids,,TRIANGLE,MI,5/21/2014 17:00 +Morrisville,RED ORANGE,LIGHT,PA,5/21/2014 18:20 +Laveen,,OTHER,AZ,5/21/2014 19:30 +Erie,ORANGE,VARIOUS,PA,5/21/2014 20:00 +Bullhead City,ORANGE,RECTANGLE,AZ,5/21/2014 20:43 +Fresno,BLUE,LIGHT,CA,5/21/2014 21:35 +Circleville,,FORMATION,OH,5/21/2014 21:37 +Cottage Grove,RED BLUE,,OR,5/21/2014 21:45 +Sabina,,LIGHT,OH,5/21/2014 21:45 +San Antonio,ORANGE,TRIANGLE,TX,5/21/2014 22:06 +Claremore,,DISK,OK,5/21/2014 23:10 +Phelan,,FIREBALL,CA,5/21/2014 23:45 +Birmingham,,EGG,AL,5/22/2014 0:00 +Smithsburg,,TRIANGLE,MD,5/22/2014 1:00 +Pasco,ORANGE YELLOW,CHEVRON,WA,5/22/2014 3:00 +Coeur d'Alene,,OVAL,ID,5/22/2014 3:23 +Denton,GREEN BLUE,LIGHT,TX,5/22/2014 3:30 +Grand Rapids,YELLOW,OVAL,MI,5/22/2014 5:20 +Billings,,VARIOUS,MT,5/22/2014 13:30 +Coalinga,,TRIANGLE,CA,5/22/2014 21:15 +Mammoth Lakes,,LIGHT,CA,5/22/2014 21:30 +Clovis,,TRIANGLE,CA,5/22/2014 22:00 +Dardanelle,,LIGHT,AR,5/22/2014 22:15 +Raleigh,,LIGHT,NC,5/22/2014 23:00 +Ripley,RED,TRIANGLE,TN,5/22/2014 23:00 +Minot,,TRIANGLE,ND,5/23/2014 1:30 +Richmond,,FIREBALL,VA,5/23/2014 14:48 +Youngsville,RED,TRIANGLE,LA,5/23/2014 19:37 +Philadelphia,,OTHER,PA,5/23/2014 19:45 +Phoenix,,VARIOUS,AZ,5/23/2014 21:00 +High Point,ORANGE,LIGHT,NC,5/23/2014 22:00 +Willowick,RED,SPHERE,OH,5/23/2014 22:03 +Boydton,,TRIANGLE,VA,5/23/2014 22:30 +Athens,,LIGHT,OH,5/23/2014 22:40 +Greeneville,ORANGE,SPHERE,TN,5/23/2014 23:10 +Danville,,TRIANGLE,VA,5/23/2014 23:30 +Palmyra,,CIRCLE,IN,5/24/2014 0:00 +Plain Dealing,,TRIANGLE,LA,5/24/2014 0:43 +Wapinitia,,LIGHT,OR,5/24/2014 0:45 +North Versailles,,RECTANGLE,PA,5/24/2014 1:50 +St. Petersburg Beach,RED,FIREBALL,FL,5/24/2014 2:30 +Clayton,,TRIANGLE,NC,5/24/2014 2:45 +Jackson,RED YELLOW GREEN,DISK,MI,5/24/2014 2:50 +Bellaire,,LIGHT,MI,5/24/2014 3:45 +Saugus,RED BLUE,CIRCLE,MA,5/24/2014 3:49 +New Port Richey,RED,FORMATION,FL,5/24/2014 11:15 +Incline Village,,TEARDROP,NV,5/24/2014 13:30 +Saranac Lake,,OVAL,NY,5/24/2014 15:11 +Crescent Mills,,SPHERE,CA,5/24/2014 17:00 +Harleysville,,CIRCLE,PA,5/24/2014 19:15 +Albany,RED,FORMATION,GA,5/24/2014 21:00 +Fillmore,,OTHER,WI,5/24/2014 21:00 +Avon,,VARIOUS,OH,5/24/2014 21:10 +Joliet,ORANGE,SPHERE,IL,5/24/2014 21:15 +Bradenton,ORANGE,FIREBALL,FL,5/24/2014 21:20 +Hickory,,,KY,5/24/2014 21:30 +Huntingdon,,FIREBALL,PA,5/24/2014 21:30 +Lynchburg,ORANGE,FIREBALL,VA,5/24/2014 21:30 +Mason City,,OVAL,IA,5/24/2014 21:30 +Portland,GREEN,SPHERE,OR,5/24/2014 21:30 +St. Charles,,SPHERE,MO,5/24/2014 21:30 +Fairview,,TRIANGLE,PA,5/24/2014 21:35 +Mukwonago,,DISK,WI,5/24/2014 22:00 +Mukwonago,ORANGE,FIREBALL,WI,5/24/2014 22:00 +Rock Springs,ORANGE,LIGHT,WY,5/24/2014 22:00 +Yorkville,,FIREBALL,IL,5/24/2014 22:00 +Murfreesboro,RED,FIREBALL,TN,5/24/2014 22:15 +Ann Arbor,,,MI,5/24/2014 22:20 +Wellsville,RED,SPHERE,OH,5/24/2014 22:20 +Arlington,RED ORANGE,LIGHT,VA,5/24/2014 22:30 +Berwyn,,LIGHT,PA,5/24/2014 23:00 +Clear Lake,ORANGE,LIGHT,MN,5/24/2014 23:00 +San Bernardino,YELLOW,LIGHT,CA,5/24/2014 23:13 +Fayetteville,,LIGHT,NC,5/24/2014 23:42 +Apopka,,LIGHT,FL,5/25/2014 0:00 +North Las Vegas,ORANGE,EGG,NV,5/25/2014 0:00 +Savannah,,DISK,GA,5/25/2014 0:00 +Mechanicsville,RED,OVAL,VA,5/25/2014 0:45 +Glennie,,DISK,MI,5/25/2014 1:00 +Ocean Cove,,FORMATION,CA,5/25/2014 2:00 +Kings Beach,,CIRCLE,CA,5/25/2014 7:00 +Salinas,ORANGE,SPHERE,CA,5/25/2014 7:00 +Kalamazoo,,CIRCLE,MI,5/25/2014 9:00 +Pittsburgh,ORANGE,FIREBALL,PA,5/25/2014 9:15 +Midwest City,,LIGHT,OK,5/25/2014 9:23 +South Lake Tahoe,,LIGHT,CA,5/25/2014 11:30 +New York City,,OVAL,NY,5/25/2014 12:00 +San Francisco,,SPHERE,CA,5/25/2014 12:00 +Las Vegas,,CIRCLE,NV,5/25/2014 13:40 +Pleasant Hill,,SPHERE,OH,5/25/2014 18:50 +Dickinson,,VARIOUS,TX,5/25/2014 19:00 +Worcester,RED,FORMATION,MA,5/25/2014 19:30 +Phoenix,,FIREBALL,AZ,5/25/2014 20:00 +Rock Springs,,LIGHT,WY,5/25/2014 20:00 +Jefferson,,LIGHT,MD,5/25/2014 20:30 +Spokane,,CIRCLE,WA,5/25/2014 20:30 +Algonquin,ORANGE,SPHERE,IL,5/25/2014 21:00 +Phillipsburg,,OTHER,NJ,5/25/2014 21:00 +Wheelersburg,RED ORANGE,SPHERE,OH,5/25/2014 21:15 +Harrisburg,RED GREEN,CROSS,PA,5/25/2014 21:22 +Bryson City,RED,LIGHT,NC,5/25/2014 21:25 +Boca Raton,,FIREBALL,FL,5/25/2014 21:28 +Eastport,,OVAL,NY,5/25/2014 21:37 +Campton,ORANGE,OVAL,NH,5/25/2014 21:45 +Essex Junction,ORANGE,LIGHT,VT,5/25/2014 21:50 +Levittown,RED,LIGHT,NY,5/25/2014 21:55 +Warren,,LIGHT,MI,5/25/2014 22:27 +Fairhope,,LIGHT,AL,5/25/2014 22:30 +University Place,RED ORANGE,OVAL,WA,5/25/2014 22:30 +Miami Township,RED,FIREBALL,OH,5/25/2014 22:40 +Phoenix,,,NY,5/25/2014 22:50 +Tipton,,CIRCLE,IN,5/25/2014 22:58 +Hackleburg,,SPHERE,AL,5/25/2014 23:00 +Methuen,ORANGE,FIREBALL,MA,5/25/2014 23:00 +San Clemente,ORANGE,SPHERE,CA,5/25/2014 23:00 +Tombstone,BLUE,CIRCLE,AZ,5/25/2014 23:00 +Antelope,,,CA,5/25/2014 23:15 +Hamden,,RECTANGLE,CT,5/25/2014 23:15 +Monroe,,FIREBALL,WA,5/25/2014 23:26 +Nampa,ORANGE,LIGHT,ID,5/26/2014 0:15 +Nampa,,FIREBALL,ID,5/26/2014 0:30 +Cedar Rapids,,,IA,5/26/2014 1:08 +Junction City,,LIGHT,KS,5/26/2014 4:00 +Pryor,,OTHER,OK,5/26/2014 4:00 +Wellington,ORANGE,SPHERE,KS,5/26/2014 4:08 +Cool,,CIRCLE,CA,5/26/2014 12:00 +Grass Valley,,CIRCLE,CA,5/26/2014 12:30 +Carlisle,,CIRCLE,PA,5/26/2014 15:00 +Grass Valley,,CIRCLE,CA,5/26/2014 15:00 +Reno,,OVAL,NV,5/26/2014 15:00 +Fremont,,SPHERE,CA,5/26/2014 16:00 +Henderson,,CIRCLE,NV,5/26/2014 17:30 +Sparks,,DISK,NV,5/26/2014 19:15 +Marlboro,,OTHER,NJ,5/26/2014 19:50 +Kannapolis,,,NC,5/26/2014 20:00 +Atoka,,LIGHT,TN,5/26/2014 21:00 +Laguna Woods,RED,OTHER,CA,5/26/2014 21:05 +Brentwood,ORANGE,OVAL,TN,5/26/2014 21:10 +Oshkosh,,CIRCLE,WI,5/26/2014 22:30 +Albemarle County,ORANGE,OTHER,MD,5/26/2014 23:30 +La Grande,ORANGE,LIGHT,OR,5/27/2014 3:05 +Topeka,,,KS,5/27/2014 9:20 +Colorado Springs,,FIREBALL,CO,5/27/2014 18:51 +Garden City,,CIRCLE,SC,5/27/2014 20:10 +La Puente,,,CA,5/27/2014 20:50 +Hanford Nuclear facility,,CIRCLE,WA,5/27/2014 21:00 +Jasper,,,AL,5/27/2014 21:00 +Pawleys Island,ORANGE,SPHERE,SC,5/27/2014 21:30 +North Myrtle Beach,,FORMATION,SC,5/27/2014 22:04 +Myrtle Beach,,TRIANGLE,SC,5/27/2014 22:50 +House Springs,,LIGHT,MO,5/27/2014 23:00 +Dewey,GREEN,,AZ,5/27/2014 23:30 +Reno,BLUE,SPHERE,NE,5/28/2014 13:00 +Shasta City,,DISK,CA,5/28/2014 13:45 +Windsor,,RECTANGLE,CO,5/28/2014 15:15 +South Topsail Beach,ORANGE,VARIOUS,NC,5/28/2014 21:25 +Calistoga,,,CA,5/28/2014 22:00 +Lincoln,,LIGHT,NE,5/28/2014 22:21 +Lufkin,,CIRCLE,TX,5/28/2014 22:30 +San Pedro,,LIGHT,CA,5/29/2014 3:35 +Albuquerque,RED BLUE,LIGHT,NM,5/29/2014 4:00 +Honolulu,,CONE,HI,5/29/2014 10:01 +Garfield,,,WA,5/29/2014 17:00 +Palouse,,,WA,5/29/2014 20:14 +Charlotte,,OTHER,NC,5/29/2014 21:30 +Indianapolis,,VARIOUS,IN,5/29/2014 21:30 +Englewood,ORANGE,FIREBALL,FL,5/29/2014 21:50 +Gardnerville,GREEN,TRIANGLE,NV,5/29/2014 22:00 +San Jose,,LIGHT,CA,5/29/2014 22:00 +Floral Park,,DIAMOND,NY,5/29/2014 22:30 +Denver,,LIGHT,CO,5/29/2014 23:15 +Wichita,,CIRCLE,KS,5/29/2014 23:45 +Spokane,,LIGHT,WA,5/30/2014 0:30 +Woodridge,,TRIANGLE,IL,5/30/2014 0:30 +Las Vegas,,LIGHT,NV,5/30/2014 16:50 +Fresno,,DISK,CA,5/30/2014 19:00 +Kihei,,LIGHT,HI,5/30/2014 19:30 +Lafayette,RED GREEN,,LA,5/30/2014 21:00 +Columbia,ORANGE,FORMATION,SC,5/30/2014 21:05 +Madison,,FORMATION,AL,5/30/2014 21:30 +Scottsboro,,LIGHT,AL,5/30/2014 21:30 +Daytona Beach,,FIREBALL,FL,5/30/2014 21:38 +Eden,,FIREBALL,NY,5/30/2014 21:50 +Buhl,ORANGE,LIGHT,ID,5/30/2014 22:00 +Hudson,,LIGHT,OH,5/30/2014 22:26 +Kasson,RED ORANGE,CIRCLE,MN,5/30/2014 22:30 +New River,,VARIOUS,AZ,5/30/2014 22:35 +Vidor,,OVAL,TX,5/31/2014 4:44 +Delray Beach,,LIGHT,FL,5/31/2014 9:00 +Cane Beds,,SPHERE,AZ,5/31/2014 10:00 +Cherry Hill,,RECTANGLE,NJ,5/31/2014 13:05 +Portland,,OVAL,CT,5/31/2014 18:29 +Barberton,,SPHERE,OH,5/31/2014 20:30 +Ocean City,RED,,NJ,5/31/2014 21:00 +West Lafayette,RED,OTHER,IN,5/31/2014 21:00 +Crown Point,RED,LIGHT,IN,5/31/2014 21:05 +Freeport,RED,OVAL,TX,5/31/2014 21:05 +Slinger,ORANGE,TEARDROP,WI,5/31/2014 21:24 +McMurray,ORANGE,LIGHT,PA,5/31/2014 21:30 +San Mateo,,LIGHT,CA,5/31/2014 21:40 +Coeur d'Alene,,CHEVRON,ID,5/31/2014 21:50 +Elgin,,FIREBALL,IL,5/31/2014 22:00 +Frankfort,ORANGE,CIRCLE,KY,5/31/2014 22:00 +West Bend,ORANGE,FIREBALL,WI,5/31/2014 22:00 +Bend,ORANGE,LIGHT,OR,5/31/2014 22:15 +Woodbury,ORANGE,LIGHT,MN,5/31/2014 22:15 +Redford,,FIREBALL,MI,5/31/2014 22:27 +Polk City,,CIRCLE,IA,5/31/2014 22:36 +Elburn,ORANGE,FIREBALL,IL,5/31/2014 23:00 +Warren,ORANGE,FIREBALL,MI,5/31/2014 23:05 +Grants Pass,ORANGE,FIREBALL,OR,5/31/2014 23:15 +Traverse City,ORANGE,SPHERE,MI,5/31/2014 23:30 +Springfield,ORANGE,SPHERE,MO,5/31/2014 23:40 +Lutz,,FIREBALL,FL,6/1/2014 9:00 +Keene,,VARIOUS,NH,6/1/2014 16:00 +Spring Valley,,DISK,CA,6/1/2014 17:15 +Portland,,TEARDROP,OR,6/1/2014 19:30 +Spokane Valley,,SPHERE,WA,6/1/2014 20:00 +Salem,RED,VARIOUS,OR,6/1/2014 20:05 +Bradford,,TRIANGLE,MN,6/1/2014 20:11 +Lakewood,,LIGHT,WA,6/1/2014 20:30 +Gilbert,,FIREBALL,AZ,6/1/2014 20:45 +Lawrenceville,,,GA,6/1/2014 21:00 +Bonny Doon,,LIGHT,CA,6/1/2014 21:05 +Portland,RED ORANGE,LIGHT,OR,6/1/2014 21:10 +Greensboro,RED ORANGE,,NC,6/1/2014 21:27 +Waterbury,,FIREBALL,CT,6/1/2014 22:25 +Gladstone,,TRIANGLE,MO,6/1/2014 22:30 +Brighton,,OTHER,MI,6/1/2014 23:40 +Jackson,ORANGE,LIGHT,NH,6/2/2014 1:00 +Centralia,RED,LIGHT,WA,6/2/2014 2:04 +Tacoma,,OTHER,WA,6/2/2014 11:00 +Murrysville,,OTHER,PA,6/2/2014 11:02 +MacArthur,,OVAL,WV,6/2/2014 16:55 +Gastonia,,RECTANGLE,NC,6/2/2014 18:50 +Darlington,,CYLINDER,SC,6/2/2014 20:25 +New Baltimore,,DISK,VA,6/2/2014 20:45 +Wellington,,CIGAR,FL,6/2/2014 21:00 +North Las Vegas,RED,CIRCLE,NV,6/2/2014 21:10 +Havertown,,SPHERE,PA,6/2/2014 21:40 +Ottawa,,LIGHT,KS,6/2/2014 22:00 +Canton,,LIGHT,OH,6/2/2014 22:23 +North Liberty,,FIREBALL,IA,6/2/2014 22:25 +Rochester,YELLOW,DISK,NY,6/2/2014 23:05 +Chicago,,FIREBALL,IL,6/2/2014 23:07 +Pittsburg,,LIGHT,KS,6/2/2014 23:15 +Carson City,,VARIOUS,NV,6/2/2014 23:37 +East Providence,,LIGHT,RI,6/3/2014 0:33 +Kannapolis,,SPHERE,NC,6/3/2014 1:00 +Boise,,CIRCLE,ID,6/3/2014 5:00 +Phillips,GREEN,FLASH,ME,6/3/2014 10:50 +Rosamond,,OTHER,CA,6/3/2014 12:00 +Anchorage,,RECTANGLE,AK,6/3/2014 14:00 +Salt Lake City,,OTHER,UT,6/3/2014 17:35 +Tuscaloosa,,OTHER,AL,6/3/2014 18:25 +Dublin,RED,SPHERE,OH,6/3/2014 21:30 +Tigerton,,LIGHT,WI,6/3/2014 22:30 +Bethesda,,LIGHT,MD,6/3/2014 23:00 +Drexel,BLUE,LIGHT,OH,6/3/2014 23:00 +Long Valley,ORANGE,FIREBALL,NJ,6/3/2014 23:30 +Richmond,,CYLINDER,VA,6/3/2014 23:45 +Starkville,,CIRCLE,MS,6/4/2014 0:15 +Atwater,,RECTANGLE,CA,6/4/2014 2:00 +Columbus,,LIGHT,OH,6/4/2014 2:00 +Rancho Bernardo,,,CA,6/4/2014 3:00 +Reisterstown,,CIGAR,MD,6/4/2014 3:30 +Lindenhurst,,,NY,6/4/2014 18:30 +Phoenix,BLUE,TRIANGLE,AZ,6/4/2014 20:00 +Cherry Hill,,FIREBALL,NJ,6/4/2014 21:00 +Scottsdale,,LIGHT,AZ,6/4/2014 21:00 +Mercer,,SPHERE,WI,6/4/2014 21:45 +San Jose,ORANGE,VARIOUS,CA,6/4/2014 22:40 +Saint Petersburg,,FIREBALL,FL,6/5/2014 5:38 +Morrison,,CIRCLE,CO,6/5/2014 9:45 +Lafayette,,SPHERE,IN,6/5/2014 9:58 +Kennewick,,RECTANGLE,WA,6/5/2014 10:00 +Reno,,CIRCLE,NV,6/5/2014 14:20 +Wixom,,CIGAR,MI,6/5/2014 16:20 +Fort Lauderdale,BLUE,CHEVRON,FL,6/5/2014 17:00 +East Brunswick,,OTHER,NJ,6/5/2014 17:12 +Johnson City,,FORMATION,TX,6/5/2014 18:22 +Witch Wells,,LIGHT,AZ,6/5/2014 20:20 +Denver,,CIGAR,CO,6/5/2014 20:30 +Dormont,ORANGE,,PA,6/5/2014 20:30 +Goldthwaite,,RECTANGLE,TX,6/5/2014 21:00 +Tulsa,ORANGE,SPHERE,OK,6/5/2014 21:00 +Box Elder,,LIGHT,SD,6/5/2014 21:18 +Palm City,,,FL,6/5/2014 21:30 +Rapid City,,SPHERE,SD,6/5/2014 21:32 +Tacoma,ORANGE,OVAL,WA,6/5/2014 22:00 +Tuscaloosa,,,AL,6/5/2014 22:00 +Aurora,,FIREBALL,CO,6/5/2014 22:30 +Wauwatosa,ORANGE YELLOW,LIGHT,WI,6/5/2014 23:00 +Blackwood,,,NJ,6/5/2014 23:30 +Upper Arlington,,LIGHT,OH,6/5/2014 23:42 +Oakland,GREEN,OTHER,CA,6/6/2014 1:05 +Salem,,TRIANGLE,OR,6/6/2014 1:18 +Las Vegas,,LIGHT,NV,6/6/2014 3:00 +Waterloo,,CIRCLE,IA,6/6/2014 3:25 +Charlottesville,,LIGHT,VA,6/6/2014 4:24 +Bellingham,,SPHERE,WA,6/6/2014 6:00 +Athens,,,GA,6/6/2014 10:45 +Yakima,,SPHERE,WA,6/6/2014 11:30 +Reno,,CIRCLE,NV,6/6/2014 12:30 +Clearlake,,OTHER,CA,6/6/2014 15:30 +Sunrise,,TEARDROP,FL,6/6/2014 20:20 +Redford,RED,LIGHT,MI,6/6/2014 20:40 +Smyrna,ORANGE,LIGHT,TN,6/6/2014 21:00 +Lynchburg,,VARIOUS,TN,6/6/2014 21:30 +Ankeny,ORANGE,LIGHT,IA,6/6/2014 21:45 +Hatfield,,FORMATION,MA,6/6/2014 21:45 +Mentor on the Lake,,SPHERE,OH,6/6/2014 22:00 +Omaha,,LIGHT,NE,6/6/2014 22:00 +Springfield,ORANGE,SPHERE,OH,6/6/2014 22:20 +Providence,,CIRCLE,RI,6/6/2014 22:30 +Springfield,RED,CIRCLE,OH,6/6/2014 22:30 +Providence,,TRIANGLE,RI,6/6/2014 23:00 +Racine,,,WI,6/6/2014 23:02 +Mentor,ORANGE,LIGHT,OH,6/6/2014 23:40 +Portland,RED GREEN BLUE,VARIOUS,OR,6/6/2014 23:50 +Provincetown,,LIGHT,MA,6/7/2014 0:30 +San Jose,BLUE,,CA,6/7/2014 1:00 +Columbia City,,LIGHT,IN,6/7/2014 1:15 +Clermont,RED,OTHER,FL,6/7/2014 6:00 +Wilmington,,,DE,6/7/2014 9:30 +Seattle,,SPHERE,WA,6/7/2014 11:50 +Nashville,,DISK,TN,6/7/2014 19:15 +New York City,,CIRCLE,NY,6/7/2014 19:30 +Hampton Beach,,CIRCLE,NH,6/7/2014 20:00 +Portsmouth,,SPHERE,VA,6/7/2014 20:40 +Portsmouth,,CIRCLE,VA,6/7/2014 20:45 +Pawtucket,RED,TRIANGLE,RI,6/7/2014 21:00 +Stuarts Draft,ORANGE,SPHERE,VA,6/7/2014 21:00 +Manville,,TRIANGLE,NJ,6/7/2014 21:10 +Peabody,,CIRCLE,MA,6/7/2014 21:10 +Wake Forest,ORANGE,SPHERE,NC,6/7/2014 21:15 +Lancaster,,FORMATION,SC,6/7/2014 21:30 +Simi Valley,,,CA,6/7/2014 21:30 +Manville,,TRIANGLE,NJ,6/7/2014 21:45 +Rochester,RED,LIGHT,NY,6/7/2014 21:45 +Purdy,,CIRCLE,WA,6/7/2014 21:46 +Severn,,LIGHT,MD,6/7/2014 21:50 +Weirton,,CIRCLE,WV,6/7/2014 21:55 +Huntingdon,,SPHERE,PA,6/7/2014 22:00 +Arlington,BLUE,FIREBALL,MA,6/7/2014 22:03 +Mansfield,,FIREBALL,MA,6/7/2014 22:03 +Sedro Woolley,,FIREBALL,WA,6/7/2014 22:15 +Sedro Woolley,,FIREBALL,WA,6/7/2014 22:15 +Miami,,FIREBALL,FL,6/7/2014 22:18 +Canal Winchester,RED,SPHERE,OH,6/7/2014 22:40 +West Deptford,RED,FIREBALL,NJ,6/7/2014 23:00 +Sumner,,,WA,6/7/2014 23:05 +Nags Head,,OTHER,NC,6/7/2014 23:14 +Mooresville,ORANGE,LIGHT,IN,6/7/2014 23:24 +Oregonia,,OVAL,OH,6/7/2014 23:30 +Brooklyn Park,,CIRCLE,MN,6/7/2014 23:31 +Kettering,,TRIANGLE,OH,6/8/2014 0:00 +Ashland,ORANGE,LIGHT,MO,6/8/2014 0:15 +Eastsound,,,WA,6/8/2014 0:30 +Lakeville,,CYLINDER,NY,6/8/2014 1:45 +Puyallup,ORANGE,LIGHT,WA,6/8/2014 2:00 +Tempe,,RECTANGLE,AZ,6/8/2014 2:31 +Bahrain,,OVAL,NV,6/8/2014 8:44 +Orlando,,,FL,6/8/2014 10:15 +Tacoma,,OTHER,WA,6/8/2014 15:00 +Auburn,,LIGHT,WA,6/8/2014 16:25 +La Grande,YELLOW,OTHER,OR,6/8/2014 18:50 +Scottsdale,ORANGE,EGG,AZ,6/8/2014 19:34 +Johnsburg,RED,LIGHT,IL,6/8/2014 21:00 +Bozeman,ORANGE,FIREBALL,MT,6/8/2014 21:05 +Overland Park,ORANGE,SPHERE,KS,6/8/2014 21:15 +Marble,,LIGHT,NC,6/8/2014 21:45 +Warrenton,RED GREEN,CIRCLE,NC,6/8/2014 22:00 +Berwyn,,OTHER,PA,6/8/2014 22:16 +Plano,YELLOW,LIGHT,TX,6/9/2014 0:30 +Jacksonville,,TRIANGLE,FL,6/9/2014 5:45 +Ashland,RED,OTHER,KY,6/9/2014 19:00 +Murray,,OVAL,UT,6/9/2014 19:30 +St. Louis,,DISK,MO,6/9/2014 19:30 +Puyallup,,VARIOUS,WA,6/9/2014 20:00 +Castro Valley,,CONE,CA,6/9/2014 20:30 +Bullhead City,GREEN,RECTANGLE,AZ,6/9/2014 21:45 +Cleveland,,,OH,6/10/2014 0:00 +Puyallup,,FLASH,WA,6/10/2014 0:00 +Santa Clara,RED GREEN,DISK,CA,6/10/2014 0:00 +Murrieta,,LIGHT,CA,6/10/2014 0:50 +Eagan,,FIREBALL,MN,6/10/2014 3:30 +Jacksonville,,TRIANGLE,FL,6/10/2014 6:20 +Tyrone,RED,FIREBALL,PA,6/10/2014 21:00 +Georgetown,RED ORANGE,FIREBALL,SC,6/10/2014 21:30 +Unspecified location,,LIGHT,TX,6/10/2014 21:45 +Kennesaw,,VARIOUS,GA,6/10/2014 22:00 +Myrtle Beach,,FLASH,SC,6/10/2014 22:00 +Myrtle Beach,RED,SPHERE,SC,6/10/2014 22:00 +Vantage,,TRIANGLE,WA,6/10/2014 22:00 +Myrtle Beach,,CIRCLE,SC,6/10/2014 22:30 +Myrtle Beach,,TRIANGLE,SC,6/10/2014 22:30 +North Myrtle Beach,,CIRCLE,SC,6/10/2014 22:30 +Oakboro,,DIAMOND,NC,6/10/2014 22:30 +North Myrtle Beach,,OTHER,SC,6/10/2014 23:00 +Stoughton,ORANGE,FIREBALL,MA,6/11/2014 1:00 +Tempe,,CIGAR,AZ,6/11/2014 18:00 +Huntley,,TRIANGLE,IL,6/11/2014 21:00 +Washington,,OTHER,NC,6/11/2014 21:25 +New York City,,TRIANGLE,NY,6/11/2014 21:50 +Indianapolis,YELLOW,FORMATION,IN,6/11/2014 22:45 +St. Peters,,TRIANGLE,MO,6/12/2014 2:35 +Wartrace,,CIRCLE,TN,6/12/2014 4:45 +Honolulu,,DISK,HI,6/12/2014 5:50 +Fontana,,DIAMOND,CA,6/12/2014 6:20 +Thomasville,,RECTANGLE,NC,6/12/2014 17:00 +Asheville,ORANGE,VARIOUS,NC,6/12/2014 21:00 +Taylor,,CYLINDER,TX,6/12/2014 21:22 +Wichita,,FORMATION,KS,6/12/2014 21:30 +Mesa,,VARIOUS,AZ,6/12/2014 21:42 +Mesa,,FORMATION,AZ,6/12/2014 22:00 +Myrtle Beach,ORANGE,LIGHT,SC,6/12/2014 22:24 +Georgetown,RED,TRIANGLE,KY,6/12/2014 22:30 +Myrtle Beach,,CYLINDER,SC,6/12/2014 22:30 +Cherry Grove,,CIRCLE,SC,6/12/2014 22:45 +North Myrtle Beach,,CIRCLE,SC,6/12/2014 22:45 +Conway,,FIREBALL,SC,6/12/2014 23:00 +East Wenatchee,,OTHER,WA,6/12/2014 23:00 +Isle of Palms,ORANGE,CIRCLE,SC,6/12/2014 23:00 +Southeast Lake City,ORANGE,DISK,SC,6/12/2014 23:00 +Surfside Beach,ORANGE,TRIANGLE,SC,6/12/2014 23:00 +North Myrtle Beach,,,SC,6/13/2014 1:15 +Lake Havasu,RED,SPHERE,AZ,6/13/2014 6:45 +Hanover Park,,EGG,IL,6/13/2014 13:00 +Lafayette,RED,OVAL,LA,6/13/2014 15:00 +Corolla,,LIGHT,NC,6/13/2014 20:30 +Boise,,DISK,ID,6/13/2014 21:05 +Lansdale,,FIREBALL,PA,6/13/2014 21:10 +Ventura,,LIGHT,CA,6/13/2014 21:20 +Vandalia,ORANGE,VARIOUS,OH,6/13/2014 22:30 +Wolfforth,BLUE,LIGHT,TX,6/13/2014 22:30 +Kansas City,,LIGHT,MO,6/13/2014 22:32 +Battle Ground,,SPHERE,WA,6/13/2014 22:45 +Onalaska,RED BLUE,TRIANGLE,WI,6/13/2014 23:10 +Portland,RED,FIREBALL,OR,6/13/2014 23:45 +Marion,,CIRCLE,IN,6/13/2014 23:50 +Johnsburg,,FIREBALL,IL,6/14/2014 0:00 +Manahawkin,,,NJ,6/14/2014 0:00 +Longmont,,OVAL,CO,6/14/2014 0:30 +Flowery Branch,,FIREBALL,GA,6/14/2014 1:00 +Hobart,,LIGHT,IN,6/14/2014 1:20 +Thonotosassa,,DISK,FL,6/14/2014 5:55 +Hermann,RED,TRIANGLE,MO,6/14/2014 9:30 +Philadelphia,,FIREBALL,PA,6/14/2014 9:30 +Merriam Woods,,OTHER,MO,6/14/2014 10:30 +Des Moines,,DISK,IA,6/14/2014 13:50 +Chula Vista,,DIAMOND,CA,6/14/2014 18:00 +Los Angeles,,CIRCLE,CA,6/14/2014 18:45 +Chicago,BLUE,OTHER,IL,6/14/2014 19:00 +Purcellville,,OVAL,VA,6/14/2014 19:00 +St. Louis,,TRIANGLE,MO,6/14/2014 19:00 +San Jose,,SPHERE,CA,6/14/2014 19:10 +New britain,,FIREBALL,CT,6/14/2014 19:23 +Flagler Beach,RED GREEN,CHEVRON,FL,6/14/2014 20:00 +Denver,,LIGHT,CO,6/14/2014 20:30 +Lake Lure,RED,FIREBALL,NC,6/14/2014 20:37 +Piqua,,DISK,OH,6/14/2014 20:53 +Hermann,,TRIANGLE,MO,6/14/2014 21:00 +St. Louis,,LIGHT,MO,6/14/2014 21:00 +St. Louis,,TRIANGLE,MO,6/14/2014 21:00 +West Springfield,,FIREBALL,MA,6/14/2014 21:00 +Holts Summit,,TRIANGLE,MO,6/14/2014 21:34 +Holts Summit,,TRIANGLE,MO,6/14/2014 21:40 +Chandler,,FORMATION,AZ,6/14/2014 21:45 +Fairfield,RED,FORMATION,CA,6/14/2014 21:50 +West Orange,,TRIANGLE,NJ,6/14/2014 21:50 +Chester Springs,,,PA,6/14/2014 22:00 +Hatfield,,SPHERE,PA,6/14/2014 22:00 +Milford,,OTHER,NH,6/14/2014 22:00 +Pikesville,,FORMATION,MD,6/14/2014 22:05 +Racine,ORANGE,LIGHT,WI,6/14/2014 22:15 +Warrensburg,,TRIANGLE,MO,6/14/2014 22:15 +Falmouth,ORANGE,TRIANGLE,ME,6/14/2014 22:23 +Vandalia,,VARIOUS,OH,6/14/2014 22:30 +West Branch,RED,SPHERE,IA,6/14/2014 22:30 +E. Lansing,,EGG,MI,6/14/2014 22:40 +Parkland,,LIGHT,FL,6/14/2014 22:41 +Auburn,,OTHER,WA,6/14/2014 22:42 +Line Lexington,ORANGE,CIRCLE,PA,6/14/2014 22:45 +Easley,,FIREBALL,SC,6/14/2014 23:00 +Riverside,,LIGHT,CA,6/14/2014 23:00 +New Bedford,,FIREBALL,MA,6/14/2014 23:17 +Tampa,,FIREBALL,FL,6/14/2014 23:40 +Bucyrus,,CIGAR,OH,6/15/2014 0:00 +Newport,ORANGE,LIGHT,OR,6/15/2014 0:00 +Brookings,,FIREBALL,SD,6/15/2014 0:20 +Detroit,,CIRCLE,MI,6/15/2014 1:00 +Pearl River,,LIGHT,NY,6/15/2014 1:45 +Newton,,FIREBALL,NJ,6/15/2014 9:30 +Cherry Hill,,DISK,NJ,6/15/2014 10:25 +Talala,,TRIANGLE,OK,6/15/2014 11:00 +Long Island City,,CIRCLE,NY,6/15/2014 14:30 +Virginia Beach,,DISK,VA,6/15/2014 14:30 +La Puente,,CIRCLE,CA,6/15/2014 15:04 +Black Canyon City,,LIGHT,AZ,6/15/2014 20:00 +Charlotte,,VARIOUS,NC,6/15/2014 20:00 +Boston,,LIGHT,NY,6/15/2014 20:30 +Clearwater,,LIGHT,FL,6/15/2014 21:00 +Zanesville,RED,LIGHT,OH,6/15/2014 21:00 +Newport Beach,,FIREBALL,CA,6/15/2014 21:15 +Waldorf,,,MD,6/15/2014 21:15 +Cape Cod,,CIRCLE,MA,6/15/2014 21:30 +Cherry Hill,ORANGE,FIREBALL,NJ,6/15/2014 22:10 +Kaysville,,LIGHT,UT,6/15/2014 22:15 +Steger,,LIGHT,IL,6/15/2014 22:19 +Newton,,TRIANGLE,NJ,6/15/2014 23:00 +Bumpass,,,VA,6/15/2014 23:30 +Butler,,CIRCLE,PA,6/15/2014 23:37 +Bloomington,,LIGHT,MN,6/16/2014 0:00 +Gilford,,FORMATION,NH,6/16/2014 0:00 +Omaha,,LIGHT,NE,6/16/2014 0:15 +Chicago,,LIGHT,IL,6/16/2014 0:35 +Kew Gardens,RED YELLOW,CIRCLE,NY,6/16/2014 2:00 +Colorado Springs,,EGG,CO,6/16/2014 9:45 +Colorado Springs,,FORMATION,CO,6/16/2014 10:00 +Spokane,,OVAL,WA,6/16/2014 11:30 +Clarkson,,OTHER,WA,6/16/2014 14:00 +Coral springs,,OVAL,FL,6/16/2014 16:25 +Olive Branch,,LIGHT,MS,6/16/2014 16:45 +Sand Springs,,CIGAR,OK,6/16/2014 18:30 +Celina,,OTHER,TN,6/16/2014 20:00 +Broken Arrow,GREEN BLUE,OTHER,OK,6/16/2014 21:00 +West Babylon,,LIGHT,NY,6/16/2014 21:10 +Tulsa,,OTHER,OK,6/16/2014 21:15 +Columbus,,LIGHT,OH,6/16/2014 21:30 +St. Louis,,TEARDROP,MO,6/16/2014 22:00 +Shasta Lake,,CIRCLE,CA,6/16/2014 22:23 +Big Pine,,LIGHT,CA,6/16/2014 22:36 +Billings,RED,TRIANGLE,MT,6/16/2014 22:46 +Depew,,CHEVRON,NY,6/16/2014 23:00 +North Versailles,,LIGHT,PA,6/16/2014 23:00 +Jonesboro,BLUE,FORMATION,IL,6/16/2014 23:30 +north of Bemidji,ORANGE,TRIANGLE,MN,6/16/2014 23:30 +Doylestown,,CIRCLE,PA,6/17/2014 0:00 +Ukiah,,LIGHT,CA,6/17/2014 0:00 +Scenery Hill,,OTHER,PA,6/17/2014 0:40 +Brazil,,TRIANGLE,IN,6/17/2014 0:43 +Biloxi,,TRIANGLE,MS,6/17/2014 13:02 +Topsail,,SPHERE,NC,6/17/2014 20:00 +Kure Beach,,,NC,6/17/2014 20:30 +Huntington Beach,GREEN,OTHER,CA,6/17/2014 20:36 +Fort Morgan,,FORMATION,AL,6/17/2014 21:15 +North Topsail Beach,ORANGE,LIGHT,NC,6/17/2014 21:25 +Carolina Beach,,SPHERE,NC,6/17/2014 21:30 +Oak Island,,SPHERE,NC,6/17/2014 21:30 +Butler,,LIGHT,PA,6/17/2014 21:38 +Surf City,,LIGHT,NC,6/17/2014 22:00 +Conway,,LIGHT,SC,6/17/2014 22:15 +Chesterfield,,TRIANGLE,MI,6/17/2014 22:40 +Mechanicsville,,SPHERE,VA,6/17/2014 22:45 +North Mankato,RED,LIGHT,MN,6/17/2014 23:00 +Peshtigo,,OVAL,WI,6/17/2014 23:00 +Ocean Island Beach,YELLOW,LIGHT,NC,6/18/2014 0:00 +Garden City,,LIGHT,SC,6/18/2014 0:10 +Cherry Grove Beach,,CIRCLE,SC,6/18/2014 0:30 +Dover,,OVAL,NJ,6/18/2014 1:00 +Los Angeles,RED GREEN,LIGHT,CA,6/18/2014 2:25 +Grand Rapids,,CIRCLE,MI,6/18/2014 4:00 +Madera,,OVAL,CA,6/18/2014 14:30 +Laguna Niguel,ORANGE,FIREBALL,CA,6/18/2014 20:00 +Oak Island,,CROSS,NC,6/18/2014 20:00 +Carolina Beach,ORANGE,LIGHT,NC,6/18/2014 21:00 +North Myrtle Beach,,OTHER,SC,6/18/2014 21:00 +Verona,,TRIANGLE,NC,6/18/2014 21:14 +Surf City,ORANGE,VARIOUS,NC,6/18/2014 21:15 +Port Saint Lucie,,LIGHT,FL,6/18/2014 21:30 +Wichita Falls,GREEN,DIAMOND,TX,6/18/2014 21:30 +Myrtle Beach,,CIRCLE,SC,6/18/2014 21:40 +Bloomsbury,,TRIANGLE,NJ,6/18/2014 22:00 +College Park,,,MD,6/18/2014 22:00 +Narian,,LIGHT,LA,6/18/2014 22:00 +North Myrtle Beach,,OVAL,NC,6/18/2014 22:04 +Temecula,,LIGHT,CA,6/18/2014 22:24 +Chino,ORANGE,FIREBALL,CA,6/18/2014 22:30 +Lake Forest,ORANGE,DISK,CA,6/18/2014 22:30 +Mission Viejo,ORANGE,LIGHT,CA,6/18/2014 22:30 +Pawleys Island,,,SC,6/18/2014 22:30 +Virginia Beach,,FIREBALL,VA,6/18/2014 22:35 +Dana Point,YELLOW,CIGAR,CA,6/18/2014 22:55 +Carlsbad,,FIREBALL,CA,6/18/2014 23:00 +Fremont CA,,LIGHT,CA,6/18/2014 23:00 +Hustonville,,LIGHT,KY,6/18/2014 23:00 +North Myrtle Beach,RED ORANGE,LIGHT,SC,6/18/2014 23:00 +Oceanside,,CIRCLE,CA,6/18/2014 23:00 +Oceanside,ORANGE,FIREBALL,CA,6/18/2014 23:00 +Orange Co,,CIRCLE,CA,6/18/2014 23:00 +Quakertown,,LIGHT,PA,6/18/2014 23:00 +Rancho Santa Margarita,ORANGE,FIREBALL,CA,6/18/2014 23:00 +Mission Viejo,,DIAMOND,CA,6/18/2014 23:05 +Moreno Valley,ORANGE,CIRCLE,CA,6/18/2014 23:15 +The Villages,ORANGE,LIGHT,FL,6/19/2014 10:00 +Plymouth - Northville,,RECTANGLE,MI,6/19/2014 16:45 +Wilsonville,,SPHERE,OR,6/19/2014 18:17 +Topsail Island,ORANGE,CIRCLE,NC,6/19/2014 20:00 +Englewood,,FIREBALL,FL,6/19/2014 20:30 +Rainbow City,,FIREBALL,AL,6/19/2014 20:50 +Wayne,,CIRCLE,NJ,6/19/2014 21:00 +Lowell,,OTHER,MA,6/19/2014 21:10 +Spring Hill,,TRIANGLE,FL,6/19/2014 21:15 +Denver,,DISK,CO,6/19/2014 21:20 +Denver,RED,OVAL,CO,6/19/2014 21:20 +Dawsonville,GREEN,CIRCLE,GA,6/19/2014 21:30 +Manchester,,CIRCLE,NH,6/19/2014 21:40 +Londonderry,ORANGE,FORMATION,NH,6/19/2014 21:45 +Carolina Beach,RED,CIRCLE,NC,6/19/2014 22:00 +Lenox,ORANGE,,IA,6/19/2014 22:00 +Patterson,,VARIOUS,CA,6/19/2014 22:00 +Zephyrhills,,TRIANGLE,FL,6/19/2014 22:15 +San Antonio,,LIGHT,TX,6/19/2014 22:35 +Moultrie,,LIGHT,GA,6/19/2014 22:45 +Austin,,CYLINDER,TX,6/19/2014 23:00 +Austin,GREEN BLUE,CYLINDER,TX,6/19/2014 23:00 +Rochester,RED,SPHERE,NY,6/19/2014 23:00 +Lakewood,BLUE,,CO,6/19/2014 23:06 +Wartrace,,CIRCLE,TN,6/19/2014 23:15 +Florence,,LIGHT,KY,6/20/2014 0:00 +Ypsilanti,,FIREBALL,MI,6/20/2014 0:00 +Charleroi,,CIRCLE,PA,6/20/2014 1:00 +Charleroi,,CIRCLE,PA,6/20/2014 1:00 +Enfield,,CIRCLE,CT,6/20/2014 1:00 +enfield,,CIRCLE,CT,6/20/2014 1:00 +West Milton,,SPHERE,PA,6/20/2014 1:30 +San Diego,ORANGE,SPHERE,CA,6/20/2014 2:00 +Lancaster,,OVAL,PA,6/20/2014 9:00 +Estes Park,,OVAL,CO,6/20/2014 16:25 +Augusta,,CIRCLE,GA,6/20/2014 16:45 +Pacheco,,DIAMOND,CA,6/20/2014 17:25 +O'Fallon,,FIREBALL,MO,6/20/2014 20:45 +Otis,,CIGAR,OR,6/20/2014 20:55 +Shamong,RED ORANGE,CIRCLE,NJ,6/20/2014 21:00 +Cedar Rapids,RED GREEN,CHEVRON,IA,6/20/2014 21:25 +El Paso,ORANGE,,TX,6/20/2014 21:30 +Murrells Inlet,YELLOW,TRIANGLE,SC,6/20/2014 21:35 +Gloucester,,,MA,6/20/2014 21:40 +Pico Rivera,,DISK,CA,6/20/2014 21:40 +Howell,RED YELLOW,CIRCLE,NJ,6/20/2014 22:00 +Waseca,ORANGE,LIGHT,MN,6/20/2014 22:00 +Geneva,,FIREBALL,NY,6/20/2014 22:20 +La Puente,RED,FORMATION,CA,6/20/2014 22:30 +Orefield,RED ORANGE,FIREBALL,PA,6/20/2014 22:30 +McMinnville,,FORMATION,OR,6/20/2014 22:35 +Terre Haute,RED,LIGHT,IN,6/20/2014 22:50 +Savannah,,FIREBALL,GA,6/20/2014 22:51 +Oak Island,,SPHERE,NC,6/20/2014 23:00 +Rochester,,LIGHT,NY,6/20/2014 23:00 +St. Augustine,,OTHER,FL,6/20/2014 23:00 +Eureka,ORANGE,OVAL,CA,6/20/2014 23:45 +Denton,RED GREEN,SPHERE,TX,6/21/2014 0:15 +Laurel,,OTHER,MT,6/21/2014 1:15 +Parkland,RED,LIGHT,FL,6/21/2014 4:30 +Portland,,OVAL,CT,6/21/2014 4:30 +Hillsboro,GREEN,RECTANGLE,MO,6/21/2014 4:45 +Hillsboro,GREEN,RECTANGLE,MO,6/21/2014 4:45 +New Baden,,TEARDROP,IL,6/21/2014 4:45 +Pearblossom,,LIGHT,CA,6/21/2014 5:10 +Fullerton,,SPHERE,CA,6/21/2014 5:30 +Lake Alpine,,CROSS,CA,6/21/2014 14:45 +Wapppapello,,CIRCLE,MO,6/21/2014 16:00 +Woonsocket,ORANGE,SPHERE,RI,6/21/2014 20:03 +Pembroke Pines,ORANGE,CIRCLE,FL,6/21/2014 20:30 +Brooksville,,LIGHT,FL,6/21/2014 21:00 +Fredericktown,,LIGHT,MO,6/21/2014 21:00 +Fryeburg,,FIREBALL,ME,6/21/2014 21:00 +Lakeland,,FIREBALL,FL,6/21/2014 21:00 +Spring Hill,,LIGHT,FL,6/21/2014 21:00 +Springfield,ORANGE,LIGHT,IL,6/21/2014 21:00 +Toms River,RED ORANGE,CIRCLE,NJ,6/21/2014 21:00 +Bremerton,,LIGHT,WA,6/21/2014 21:05 +Buffalo,,FIREBALL,NY,6/21/2014 21:30 +Pico Rivera,ORANGE,FIREBALL,CA,6/21/2014 21:30 +Connellsville,,LIGHT,PA,6/21/2014 21:45 +Minooka,,LIGHT,IL,6/21/2014 21:45 +Orlando,,CIRCLE,FL,6/21/2014 21:45 +Pasadena,,DIAMOND,CA,6/21/2014 21:45 +Casselberry,RED,CIRCLE,FL,6/21/2014 21:46 +Williamson,,LIGHT,NY,6/21/2014 21:47 +Cape Coral,,CIRCLE,FL,6/21/2014 21:50 +Dallas,GREEN BLUE,LIGHT,TX,6/21/2014 22:00 +Freeland,ORANGE,OVAL,WA,6/21/2014 22:00 +Martin,ORANGE,CIRCLE,GA,6/21/2014 22:00 +Pawleys Island,,SPHERE,SC,6/21/2014 22:00 +Topeka,,LIGHT,KS,6/21/2014 22:00 +Zeeland,,CIRCLE,MI,6/21/2014 22:00 +Edmond,,LIGHT,OK,6/21/2014 22:20 +Mukwonago,,OVAL,WI,6/21/2014 22:20 +Battle Ground,ORANGE,TEARDROP,WA,6/21/2014 22:30 +Harford County,GREEN,TRIANGLE,MD,6/21/2014 22:30 +Lawrenceville,RED,FIREBALL,GA,6/21/2014 22:30 +Lockport,,LIGHT,NY,6/21/2014 22:30 +Solon,RED ORANGE,TRIANGLE,OH,6/21/2014 22:30 +Syracuse,RED,SPHERE,NY,6/21/2014 22:30 +Whately,,FIREBALL,MA,6/21/2014 22:30 +Meriden,ORANGE,CIRCLE,CT,6/21/2014 22:34 +Sparks,,TRIANGLE,NV,6/21/2014 22:49 +Dunnellon,,TRIANGLE,FL,6/21/2014 22:54 +Atlanta,,OVAL,GA,6/21/2014 23:00 +Bensalem,RED,,PA,6/21/2014 23:00 +Cape Neddick,ORANGE,,ME,6/21/2014 23:00 +Newmarket,,CIRCLE,OH,6/21/2014 23:00 +Portland,,FORMATION,OR,6/21/2014 23:00 +Bensalem,ORANGE,LIGHT,PA,6/21/2014 23:15 +Lowell,,FIREBALL,MA,6/21/2014 23:15 +Wayland,,FIREBALL,NY,6/21/2014 23:20 +Phoenixville,RED,OVAL,PA,6/22/2014 0:00 +Hartville,,LIGHT,MO,6/22/2014 0:30 +Bensalem,ORANGE,CIRCLE,PA,6/22/2014 1:00 +Valley Stream,,VARIOUS,NY,6/22/2014 1:00 +Dedham,,DISK,MA,6/22/2014 2:30 +Las Vegas,,CIRCLE,NV,6/22/2014 10:00 +Aberdeen,,SPHERE,WA,6/22/2014 13:54 +Portland,,OTHER,OR,6/22/2014 18:30 +Hyannis,,SPHERE,MA,6/22/2014 18:45 +Fillmore,,FIREBALL,CA,6/22/2014 20:30 +Prescott,RED,FIREBALL,AZ,6/22/2014 20:30 +Deltona,,DISK,FL,6/22/2014 20:35 +Deltona,RED,DISK,FL,6/22/2014 20:35 +Torrance,,TRIANGLE,CA,6/22/2014 21:00 +La Mirada,,SPHERE,CA,6/22/2014 21:03 +Las Vegas,,LIGHT,NV,6/22/2014 21:08 +Deming,,SPHERE,NM,6/22/2014 21:30 +Mojave,,LIGHT,CA,6/22/2014 21:30 +Montpelier,,LIGHT,ID,6/22/2014 22:00 +New Albany,RED,FORMATION,IN,6/22/2014 22:00 +New York City,ORANGE,TRIANGLE,NY,6/22/2014 22:17 +Duck Creek Village,,SPHERE,UT,6/22/2014 23:03 +Orlando,RED GREEN,TRIANGLE,FL,6/23/2014 0:40 +Myrtle Beach,,TRIANGLE,SC,6/23/2014 9:30 +Westminster,,CROSS,CA,6/23/2014 9:30 +Canaan,,CIGAR,NH,6/23/2014 11:30 +Pawleys Island,,LIGHT,SC,6/23/2014 20:00 +Chandler,RED GREEN,CIRCLE,AZ,6/23/2014 20:35 +Gila Bend,ORANGE,,AZ,6/23/2014 21:45 +Garden City,ORANGE,FIREBALL,SC,6/23/2014 22:00 +North Myrtle Beach,,,SC,6/23/2014 22:00 +Okhay Owingeh,BLUE,RECTANGLE,NM,6/23/2014 22:00 +Pima,,FIREBALL,AZ,6/23/2014 22:00 +Billings,,FLASH,MT,6/23/2014 22:10 +Litchfeild,RED,FLASH,SC,6/23/2014 22:30 +Summersville,,CYLINDER,WV,6/23/2014 22:30 +Surfside Beach,,VARIOUS,SC,6/23/2014 22:37 +Leland,ORANGE,FIREBALL,NC,6/23/2014 22:45 +Crescent Beach,,SPHERE,SC,6/23/2014 23:00 +Holden Beach,ORANGE,CIRCLE,NC,6/23/2014 23:00 +Litchfield,ORANGE,LIGHT,SC,6/23/2014 23:00 +Lizerne County,ORANGE,FIREBALL,PA,6/23/2014 23:00 +Myrtle Beach,YELLOW,LIGHT,SC,6/23/2014 23:00 +Pawleys Island,ORANGE,SPHERE,SC,6/23/2014 23:00 +Cherry Grove,,FIREBALL,SC,6/23/2014 23:15 +Murrels Inlet,,LIGHT,SC,6/23/2014 23:30 +New York City,,FIREBALL,NY,6/24/2014 0:00 +Wentzville,,CYLINDER,MO,6/24/2014 0:46 +Cartersville,RED,OVAL,GA,6/24/2014 6:13 +Richmond,,OVAL,MO,6/24/2014 6:55 +New Smyrna Beach,,OTHER,FL,6/24/2014 11:30 +Nokomis,,,FL,6/24/2014 12:15 +Versailles,,TRIANGLE,IN,6/24/2014 12:30 +Farmington,,CIGAR,NM,6/24/2014 18:50 +Fort Lauderdale,BLUE,DISK,FL,6/24/2014 19:00 +Lake Charles,,FORMATION,LA,6/24/2014 21:00 +Chatsworth,,CIRCLE,GA,6/24/2014 21:26 +Ozark,,LIGHT,MO,6/24/2014 21:34 +Lahaina,,LIGHT,HI,6/24/2014 21:45 +Oklahoma City,,EGG,OK,6/24/2014 21:55 +Ocala,,LIGHT,FL,6/24/2014 22:00 +Seattle,ORANGE,,WA,6/24/2014 22:28 +Chicago,,LIGHT,IL,6/24/2014 22:30 +Myrtle Beach,YELLOW,LIGHT,SC,6/24/2014 22:45 +Avenal,,OTHER,CA,6/24/2014 23:30 +Buda,,FLASH,TX,6/25/2014 0:05 +Indian Rocks Beach,,LIGHT,FL,6/25/2014 0:50 +Kalispell,,CHEVRON,MT,6/25/2014 1:03 +Petaluma,,OTHER,CA,6/25/2014 2:45 +Avon,,TRIANGLE,NC,6/25/2014 8:30 +Garden City,ORANGE,CIRCLE,SC,6/25/2014 10:05 +Centralia,,FIREBALL,WA,6/25/2014 11:15 +Kalispell,,CHEVRON,MT,6/25/2014 13:03 +Krakow,,CIRCLE,MO,6/25/2014 14:00 +Orange County area,,CIRCLE,CA,6/25/2014 21:00 +Edmonds,,CONE,WA,6/25/2014 21:04 +Charleston,RED ORANGE,LIGHT,SC,6/25/2014 21:15 +Oxnard,,LIGHT,CA,6/25/2014 22:00 +Sunrise,,CIRCLE,FL,6/25/2014 22:00 +,RED,TRIANGLE,CA,6/25/2014 22:15 +Jacksonville,,OVAL,FL,6/25/2014 22:15 +Myrtle Beach,RED,LIGHT,OH,6/25/2014 22:25 +Myrtle Beach,,LIGHT,SC,6/25/2014 22:30 +North Myrtle Beach,,FIREBALL,SC,6/25/2014 22:30 +Oak Island,,LIGHT,NC,6/25/2014 22:30 +Mission Viejo,,OTHER,CA,6/25/2014 22:40 +Mission Viejo,,OTHER,CA,6/25/2014 22:40 +Myrtle Beach,,LIGHT,SC,6/25/2014 22:40 +North Myrtle Beach,ORANGE,LIGHT,SC,6/25/2014 22:45 +Alamo,,OTHER,CA,6/25/2014 22:54 +Bloomingdale,,TRIANGLE,OH,6/25/2014 23:00 +Garden City,RED ORANGE,FIREBALL,SC,6/25/2014 23:00 +Myrtle Beach,,FIREBALL,SC,6/25/2014 23:00 +Rancho Santa Margarita,RED,CIRCLE,CA,6/25/2014 23:30 +Portland,RED BLUE,LIGHT,OR,6/26/2014 0:25 +North Port,RED,OVAL,FL,6/26/2014 10:20 +San Clemente,,TRIANGLE,CA,6/26/2014 10:45 +Chandler,ORANGE,FIREBALL,AZ,6/26/2014 11:30 +Cotuit,ORANGE,,MA,6/26/2014 21:00 +Garden City,,FIREBALL,SC,6/26/2014 21:00 +Myrtle Beach,,CIRCLE,SC,6/26/2014 21:00 +Sacramento,,LIGHT,CA,6/26/2014 21:20 +Oceanside,ORANGE,OTHER,CA,6/26/2014 21:30 +Hawthorne,,CIRCLE,NY,6/26/2014 21:45 +Litchfield,,FIREBALL,SC,6/26/2014 22:00 +Litchfield Beach,RED,FORMATION,SC,6/26/2014 22:00 +Myrtle Creek,,CIRCLE,OR,6/26/2014 22:00 +West Tulsa,,CIRCLE,OK,6/26/2014 22:00 +Litchfield Beach,,LIGHT,SC,6/26/2014 22:15 +Mundelein,,FIREBALL,IL,6/26/2014 22:15 +Mundelein,,FIREBALL,IL,6/26/2014 22:15 +Myrtle Creek,,FIREBALL,OR,6/26/2014 22:15 +Cherry Grove Beach,ORANGE,LIGHT,SC,6/26/2014 22:20 +Litchfield,,LIGHT,SC,6/26/2014 22:30 +Pawleys Island,,SPHERE,SC,6/26/2014 22:45 +Temecula,,VARIOUS,CA,6/26/2014 22:45 +Blossvale,,LIGHT,NY,6/26/2014 23:00 +Franklin,,,NH,6/26/2014 23:00 +Glencoe,,LIGHT,AL,6/26/2014 23:00 +Litchfield,ORANGE,LIGHT,SC,6/26/2014 23:00 +Nags Head,,LIGHT,NC,6/26/2014 23:25 +Honea Path,RED,TRIANGLE,SC,6/26/2014 23:27 +Chandler,,FIREBALL,AZ,6/26/2014 23:30 +North Kingsville,RED,FLASH,OH,6/27/2014 0:00 +St. Peters,RED,DISK,MO,6/27/2014 0:00 +Rocky River,,OVAL,OH,6/27/2014 0:01 +North Kingsville,,LIGHT,OH,6/27/2014 0:05 +Montebello,,CIRCLE,CA,6/27/2014 2:00 +Palatine,BLUE,LIGHT,IL,6/27/2014 3:30 +New York City,,FORMATION,NY,6/27/2014 20:00 +Jacksonville,,CIRCLE,AL,6/27/2014 21:00 +Pawleys Island,ORANGE YELLOW,CIRCLE,SC,6/27/2014 21:00 +Shreveport,RED,CIRCLE,LA,6/27/2014 21:00 +Indianpolis,,RECTANGLE,IN,6/27/2014 21:15 +Union,RED,OVAL,MO,6/27/2014 21:22 +Midway,,FIREBALL,PA,6/27/2014 21:25 +Cincinnati,,FIREBALL,OH,6/27/2014 22:20 +Beaverton,,OVAL,OR,6/27/2014 22:30 +Beaumont,,LIGHT,CA,6/27/2014 22:45 +Ludington,ORANGE,SPHERE,MI,6/27/2014 22:47 +Mishawaka,RED ORANGE,LIGHT,IN,6/27/2014 22:54 +Columbus,RED YELLOW GREEN,DISK,OH,6/27/2014 23:00 +Geraldine,BLUE,DISK,AL,6/27/2014 23:00 +Grand Blanc,,LIGHT,MI,6/27/2014 23:00 +Harvester,,FIREBALL,MO,6/27/2014 23:11 +South Lansing,,FIREBALL,MI,6/27/2014 23:30 +Billings,,FIREBALL,MT,6/28/2014 0:00 +Lake Worth,ORANGE,FIREBALL,FL,6/28/2014 0:00 +Detroit,,LIGHT,MI,6/28/2014 1:00 +Sarasota,,LIGHT,FL,6/28/2014 2:00 +Marysville,BLUE,OTHER,OH,6/28/2014 2:30 +Grand Rapids,,LIGHT,MI,6/28/2014 9:45 +Albuquerque,RED,CIGAR,NM,6/28/2014 11:00 +Gadsden,,,AL,6/28/2014 18:00 +Ashleigh Lake,,TEARDROP,MT,6/28/2014 20:00 +Vergennes,,FIREBALL,VT,6/28/2014 20:30 +Glenmoore,ORANGE,OVAL,PA,6/28/2014 21:30 +Highlands Ranch,,SPHERE,CO,6/28/2014 21:30 +Hudson,ORANGE,OTHER,NH,6/28/2014 21:45 +Red Hook,ORANGE,TRIANGLE,NY,6/28/2014 21:45 +Fort Wayne,ORANGE,SPHERE,IN,6/28/2014 22:00 +Miami,,OTHER,FL,6/28/2014 22:09 +Columbus,RED ORANGE,OVAL,OH,6/28/2014 22:10 +White House,ORANGE,CIRCLE,TN,6/28/2014 22:15 +Brighton,,LIGHT,MI,6/28/2014 22:20 +Dolores,ORANGE YELLOW,LIGHT,CO,6/28/2014 22:27 +Valdosta,,,GA,6/28/2014 22:30 +Philadelphia,,FLASH,PA,6/28/2014 22:45 +Weirton,ORANGE,FIREBALL,WV,6/28/2014 22:45 +Antioch,,SPHERE,CA,6/28/2014 23:00 +Levittown,,FIREBALL,NY,6/28/2014 23:00 +Ridgway,,CIRCLE,PA,6/28/2014 23:00 +St. Albans,,CHEVRON,VT,6/28/2014 23:00 +Santa Ana,,TRIANGLE,CA,6/28/2014 23:25 +Rainelle,RED YELLOW,LIGHT,WV,6/28/2014 23:30 +Warrenton,ORANGE,LIGHT,VA,6/28/2014 23:30 +Myrtle Beach,,FIREBALL,SC,6/28/2014 23:40 +Lake Worth,,FIREBALL,FL,6/29/2014 0:00 +Los Angeles,,CHEVRON,CA,6/29/2014 1:48 +New Orleans,,,LA,6/29/2014 2:00 +Rapid City,,LIGHT,SD,6/29/2014 3:55 +Grand Rapids,,OTHER,MI,6/29/2014 4:00 +Lehi,,LIGHT,UT,6/29/2014 4:20 +Thornton,,,CO,6/29/2014 8:00 +Coos Bay,,CIRCLE,OR,6/29/2014 11:51 +Richland,,VARIOUS,WA,6/29/2014 14:00 +Laguna Niguel,ORANGE,CIRCLE,CA,6/29/2014 15:42 +Southampton,,CIRCLE,PA,6/29/2014 19:12 +Maricopa,,CIRCLE,AZ,6/29/2014 21:20 +St. Johns,RED GREEN,DIAMOND,FL,6/29/2014 21:30 +Medford,,SPHERE,NY,6/29/2014 21:40 +Olathe,RED,CIRCLE,KS,6/29/2014 21:45 +West Grove,ORANGE,CYLINDER,PA,6/29/2014 21:45 +Sharpsburg,ORANGE,CIRCLE,MD,6/29/2014 22:00 +Salina,,FIREBALL,KS,6/29/2014 22:02 +New York City,YELLOW,VARIOUS,NY,6/29/2014 22:13 +Akron,RED GREEN,CIRCLE,OH,6/29/2014 22:30 +Wilmington,,CIRCLE,DE,6/30/2014 0:07 +New York City,ORANGE,FIREBALL,NY,6/30/2014 0:10 +Colorado Springs,,OTHER,CO,6/30/2014 0:34 +Everett,,OVAL,WA,6/30/2014 4:00 +Frisco,,TRIANGLE,TX,6/30/2014 5:45 +Oklahoma City,,TRIANGLE,OK,6/30/2014 5:50 +Hurst,,FIREBALL,TX,6/30/2014 5:55 +New York City,,CIRCLE,NY,6/30/2014 7:00 +Berlin,BLUE,FIREBALL,NH,6/30/2014 10:20 +Oak Island,ORANGE,CIRCLE,NC,6/30/2014 16:45 +Miami,,VARIOUS,FL,6/30/2014 19:30 +Mansfield,,FIREBALL,MA,6/30/2014 20:45 +Liberty Township,ORANGE,LIGHT,OH,6/30/2014 21:45 +Madison,,FORMATION,AL,6/30/2014 21:50 +Port St. Joe,ORANGE,LIGHT,FL,6/30/2014 22:00 +Elk Grove,,CIRCLE,CA,6/30/2014 22:03 +Corona,ORANGE YELLOW,VARIOUS,CA,6/30/2014 22:34 +Sylmar,,FIREBALL,CA,6/30/2014 23:30 +Wyoming,,CIRCLE,PA,7/1/2014 2:30 +Winter Haven,,FLASH,FL,7/1/2014 3:00 +Lake Oswego,,CIRCLE,OR,7/1/2014 3:20 +Lake Oswego,,CIRCLE,OR,7/1/2014 3:20 +Palmyra,,LIGHT,PA,7/1/2014 3:30 +Kuna,,LIGHT,ID,7/1/2014 10:05 +San Diego,ORANGE,CYLINDER,CA,7/1/2014 19:00 +Middletown,,SPHERE,OH,7/1/2014 19:39 +Tucson,,OTHER,AZ,7/1/2014 20:43 +Murrels Inlet,ORANGE,DISK,SC,7/1/2014 21:00 +Boulder Creek,,,CA,7/1/2014 21:20 +Biddeford,RED,CIRCLE,ME,7/1/2014 21:30 +Charlotte,,LIGHT,NC,7/1/2014 21:30 +Tucson,,FORMATION,AZ,7/1/2014 21:37 +Centennial,ORANGE,LIGHT,CO,7/1/2014 21:45 +Garden City,,CIRCLE,SC,7/1/2014 21:55 +Jefferson,,LIGHT,MD,7/1/2014 22:00 +North Versailles,,LIGHT,PA,7/1/2014 22:15 +Allentown,RED ORANGE YELLOW,TRIANGLE,PA,7/1/2014 23:00 +Oregon,,SPHERE,IL,7/2/2014 0:00 +Scottsburg,,TRIANGLE,IN,7/2/2014 0:00 +Phoenix,RED,VARIOUS,AZ,7/2/2014 1:00 +Mckittrick,ORANGE,FIREBALL,CA,7/2/2014 2:00 +Brunswick,,TRIANGLE,GA,7/2/2014 3:00 +Lancaster,BLUE,LIGHT,CA,7/2/2014 3:00 +Bakersfield,,CIGAR,CA,7/2/2014 3:14 +Conover,,LIGHT,WI,7/2/2014 3:17 +Miamisburg,,SPHERE,OH,7/2/2014 6:00 +Route 22,,OVAL,NJ,7/2/2014 13:00 +Clearwater,,RECTANGLE,FL,7/2/2014 14:55 +Lake Charles,RED,OTHER,LA,7/2/2014 19:30 +Redlands,RED,FORMATION,CA,7/2/2014 20:00 +San Juan Capistrano,RED YELLOW,RECTANGLE,CA,7/2/2014 21:10 +Moreno Valley,,OTHER,CA,7/2/2014 21:15 +Wagner,,FIREBALL,SD,7/2/2014 22:00 +Tucson,,FIREBALL,AZ,7/2/2014 22:30 +Salt Lake City,,FORMATION,UT,7/2/2014 23:30 +West Carrollton,,TRIANGLE,OH,7/3/2014 2:00 +Bryan,,,TX,7/3/2014 4:45 +West Reading,ORANGE,EGG,PA,7/3/2014 10:05 +Jackson,,CIRCLE,NJ,7/3/2014 17:00 +Glencoe,ORANGE,CHEVRON,AL,7/3/2014 20:00 +Ringgold,,SPHERE,GA,7/3/2014 20:00 +Bucyrus,,VARIOUS,OH,7/3/2014 20:41 +Huron,ORANGE,OVAL,SD,7/3/2014 21:00 +Manteno,,LIGHT,IL,7/3/2014 21:00 +Columbus,,FIREBALL,OH,7/3/2014 21:15 +Columbus,ORANGE,FIREBALL,OH,7/3/2014 21:15 +Las Vegas,,CIRCLE,NV,7/3/2014 21:15 +Maryville,,LIGHT,MO,7/3/2014 21:15 +Milford,,,NH,7/3/2014 21:20 +Naples,,FIREBALL,FL,7/3/2014 21:20 +McMinnville,,LIGHT,TN,7/3/2014 21:30 +Pecatonica,,LIGHT,IL,7/3/2014 21:44 +Brooksville,,FIREBALL,FL,7/3/2014 22:00 +Findley,ORANGE,CIRCLE,OH,7/3/2014 22:00 +Laclede,ORANGE,LIGHT,ID,7/3/2014 22:00 +Round Rock,GREEN,LIGHT,TX,7/3/2014 22:00 +Auburn,,SPHERE,GA,7/3/2014 22:05 +Vandalia,RED YELLOW,SPHERE,OH,7/3/2014 22:10 +Goshen,ORANGE,LIGHT,IN,7/3/2014 22:15 +Kennewick,ORANGE,TRIANGLE,WA,7/3/2014 22:15 +Louisville,RED,CIRCLE,KY,7/3/2014 22:20 +Burien,ORANGE,VARIOUS,WA,7/3/2014 22:27 +Bourne,,CIRCLE,MA,7/3/2014 22:30 +Otsego,ORANGE,SPHERE,MN,7/3/2014 22:30 +Rockford,RED,CIRCLE,MN,7/3/2014 22:30 +Lebanon,ORANGE,CIRCLE,OH,7/3/2014 22:40 +Independence,RED,CIRCLE,OH,7/3/2014 23:00 +Niles,RED,SPHERE,IL,7/3/2014 23:15 +El Cajon,,CIRCLE,CA,7/3/2014 23:30 +Muncie,,LIGHT,IN,7/3/2014 23:40 +Salina,,,KS,7/4/2014 0:00 +Santa Ana,ORANGE,FIREBALL,CA,7/4/2014 0:00 +St. Charles,,TRIANGLE,MO,7/4/2014 0:00 +Lynn,RED,FIREBALL,IN,7/4/2014 0:15 +Bel Air,,LIGHT,MD,7/4/2014 0:30 +Corvallis,RED,FORMATION,MT,7/4/2014 2:17 +Minnetonka,,SPHERE,MN,7/4/2014 6:22 +Ashville,,SPHERE,AL,7/4/2014 9:00 +Hartland,RED ORANGE,OTHER,WI,7/4/2014 9:00 +Arvada,,CIRCLE,CO,7/4/2014 9:20 +Cincinnati,ORANGE,DISK,OH,7/4/2014 11:30 +Mt. Hood,,TRIANGLE,OR,7/4/2014 12:30 +Grove City,,LIGHT,PA,7/4/2014 14:00 +Banner Elk,,CIRCLE,NC,7/4/2014 15:30 +Salem,,SPHERE,OR,7/4/2014 16:42 +Clermont,RED,,FL,7/4/2014 19:00 +Paragould,,CIRCLE,AR,7/4/2014 19:00 +El Cajon,,CIRCLE,CA,7/4/2014 20:00 +Las Vegas,ORANGE,FIREBALL,NV,7/4/2014 20:00 +Tempe,,,AZ,7/4/2014 20:00 +Batesville,,DISK,MS,7/4/2014 20:15 +Des Moines,ORANGE YELLOW,LIGHT,WA,7/4/2014 20:25 +Cape Coral,RED,CYLINDER,FL,7/4/2014 20:30 +Johnson City,RED GREEN,CIRCLE,TN,7/4/2014 20:30 +Laurel,,LIGHT,MD,7/4/2014 20:30 +Naples,ORANGE,CIRCLE,FL,7/4/2014 20:30 +Panama City Beach,,SPHERE,FL,7/4/2014 20:30 +Bethel Park,RED,CYLINDER,PA,7/4/2014 20:34 +Columbus,,FORMATION,OH,7/4/2014 20:45 +Portage,RED,FORMATION,IN,7/4/2014 20:45 +Reading,,CYLINDER,PA,7/4/2014 20:45 +Rohnert Park,RED,CIRCLE,CA,7/4/2014 20:50 +Burke,RED,CIRCLE,VA,7/4/2014 21:00 +Cape Coral,ORANGE,OTHER,FL,7/4/2014 21:00 +Charlotte,ORANGE,DISK,NC,7/4/2014 21:00 +Chickasha,ORANGE,OVAL,OK,7/4/2014 21:00 +Cicero,,OTHER,IL,7/4/2014 21:00 +Damascus,ORANGE,CIRCLE,MD,7/4/2014 21:00 +Daphne,ORANGE,CIRCLE,AL,7/4/2014 21:00 +Denham Springs,RED,,LA,7/4/2014 21:00 +Denver,,LIGHT,CO,7/4/2014 21:00 +Easton,ORANGE,SPHERE,PA,7/4/2014 21:00 +Flatwoods,RED ORANGE,SPHERE,KY,7/4/2014 21:00 +Lawrenceville,RED,CIRCLE,GA,7/4/2014 21:00 +Louisville,,TRIANGLE,KY,7/4/2014 21:00 +Middleburg,,FIREBALL,FL,7/4/2014 21:00 +New Albany,ORANGE,CIRCLE,IN,7/4/2014 21:00 +Pompano Beach,,CIRCLE,FL,7/4/2014 21:00 +Portage,,OVAL,IN,7/4/2014 21:00 +Prescott Valley,,LIGHT,AZ,7/4/2014 21:00 +Puyallup,,FIREBALL,WA,7/4/2014 21:00 +Richmond,RED,OTHER,VA,7/4/2014 21:00 +Royal Palm Beach,RED,CIRCLE,FL,7/4/2014 21:00 +Sioux Falls,,FIREBALL,SD,7/4/2014 21:00 +Snellville,,SPHERE,GA,7/4/2014 21:00 +Staten Island,RED GREEN,CIRCLE,NY,7/4/2014 21:00 +West Richland,,SPHERE,WA,7/4/2014 21:00 +San Marcos,RED,,CA,7/4/2014 21:05 +Tucson,BLUE,,AZ,7/4/2014 21:05 +Cherry Hill,,LIGHT,NJ,7/4/2014 21:12 +Burnsville,,SPHERE,MN,7/4/2014 21:15 +East Limestone,,CIRCLE,AL,7/4/2014 21:15 +Fayetteville,RED,LIGHT,WV,7/4/2014 21:15 +Jacksonville,,OVAL,FL,7/4/2014 21:15 +Mesquite,,DISK,TX,7/4/2014 21:15 +Tucson,RED BLUE,LIGHT,AZ,7/4/2014 21:20 +Pacific Grove,RED,SPHERE,CA,7/4/2014 21:21 +Hinsdale,ORANGE,CIGAR,IL,7/4/2014 21:25 +Orlando,,LIGHT,FL,7/4/2014 21:25 +Sonoma,BLUE,FORMATION,CA,7/4/2014 21:27 +Bluffton,,FIREBALL,SC,7/4/2014 21:30 +Bluffton,ORANGE,LIGHT,SC,7/4/2014 21:30 +Cape Canaveral,ORANGE,SPHERE,FL,7/4/2014 21:30 +Coral Spring,,OVAL,FL,7/4/2014 21:30 +Denver,ORANGE,SPHERE,CO,7/4/2014 21:30 +Des Moines,,LIGHT,IA,7/4/2014 21:30 +Flat Rock,ORANGE,SPHERE,MI,7/4/2014 21:30 +Holland,,SPHERE,MI,7/4/2014 21:30 +Katy,RED,LIGHT,TX,7/4/2014 21:30 +Katy,RED GREEN,LIGHT,TX,7/4/2014 21:30 +Lake Arrowhead,GREEN BLUE,CIRCLE,CA,7/4/2014 21:30 +Lake Arrowhead,,LIGHT,CA,7/4/2014 21:30 +Luray,RED ORANGE,OVAL,VA,7/4/2014 21:30 +Noblesville,GREEN,LIGHT,IN,7/4/2014 21:30 +Oakland Gardens,,TRIANGLE,NY,7/4/2014 21:30 +Oscoda,,CIRCLE,MI,7/4/2014 21:30 +St. Johnsbury,ORANGE,CIRCLE,VT,7/4/2014 21:30 +Tucson,RED BLUE,FLASH,AZ,7/4/2014 21:30 +Tucson,RED BLUE,FLASH,AZ,7/4/2014 21:30 +Upper Arlington,ORANGE,SPHERE,OH,7/4/2014 21:30 +Westminster,,FORMATION,CO,7/4/2014 21:30 +Wilmington,ORANGE,FIREBALL,NC,7/4/2014 21:30 +Lake Arrowhead,GREEN BLUE,LIGHT,CA,7/4/2014 21:31 +Atlanta,,LIGHT,GA,7/4/2014 21:40 +Englewood,ORANGE,,CO,7/4/2014 21:40 +Latrobe,ORANGE,FIREBALL,PA,7/4/2014 21:40 +Petaluma,GREEN,LIGHT,CA,7/4/2014 21:40 +Lakewood,,FORMATION,CO,7/4/2014 21:43 +Golden,,,CO,7/4/2014 21:45 +Holden Beach,,CIRCLE,NC,7/4/2014 21:45 +Indialantic,,OVAL,FL,7/4/2014 21:45 +Madison,,CIRCLE,AL,7/4/2014 21:45 +Marietta,RED,CIRCLE,GA,7/4/2014 21:45 +North Canton,RED,FIREBALL,OH,7/4/2014 21:45 +North Tonawanda,RED,CIRCLE,NY,7/4/2014 21:45 +San Antonio,,SPHERE,TX,7/4/2014 21:45 +Seattle,,LIGHT,WA,7/4/2014 21:45 +Baltimore,ORANGE,LIGHT,MD,7/4/2014 21:48 +Hampton,,CIRCLE,GA,7/4/2014 21:50 +Stockbridge,,CIRCLE,GA,7/4/2014 21:50 +Wellsboro,,FIREBALL,PA,7/4/2014 21:50 +Hampton,RED,CIRCLE,GA,7/4/2014 21:51 +Downingtown,,SPHERE,PA,7/4/2014 21:55 +Waynesboro,,CIRCLE,PA,7/4/2014 21:59 +Arvada,ORANGE,OVAL,CO,7/4/2014 22:00 +Babylon,RED,FIREBALL,NY,7/4/2014 22:00 +Bantam,,OTHER,CT,7/4/2014 22:00 +Bartlett,GREEN,EGG,IL,7/4/2014 22:00 +Bethany Beach,,CIRCLE,DE,7/4/2014 22:00 +Bluffton,,TRIANGLE,SC,7/4/2014 22:00 +Brookport,,SPHERE,IL,7/4/2014 22:00 +Charlotte,,LIGHT,NC,7/4/2014 22:00 +Chino,,CIRCLE,CA,7/4/2014 22:00 +Clinton,,OTHER,WA,7/4/2014 22:00 +Delray Beach,ORANGE,,FL,7/4/2014 22:00 +Denver,,DISK,CO,7/4/2014 22:00 +Downingtown,,FORMATION,PA,7/4/2014 22:00 +Dubuque,,FIREBALL,IA,7/4/2014 22:00 +Edgewater,,FIREBALL,FL,7/4/2014 22:00 +Edinboro,,CIRCLE,PA,7/4/2014 22:00 +Emmaus,ORANGE,EGG,PA,7/4/2014 22:00 +Everett,ORANGE,CIRCLE,WA,7/4/2014 22:00 +Forest Lake,,OVAL,MN,7/4/2014 22:00 +Frankfort,ORANGE,SPHERE,KY,7/4/2014 22:00 +Franklin Square,YELLOW,LIGHT,NY,7/4/2014 22:00 +Goshen,BLUE,LIGHT,IN,7/4/2014 22:00 +Johnstown,RED ORANGE,,PA,7/4/2014 22:00 +Lakeland,ORANGE,CIRCLE,FL,7/4/2014 22:00 +Lohman,,LIGHT,MO,7/4/2014 22:00 +Louisburg,,FIREBALL,KS,7/4/2014 22:00 +Middlesboro,,CIRCLE,KY,7/4/2014 22:00 +Minneapolis,ORANGE,FIREBALL,MN,7/4/2014 22:00 +Newark,GREEN,CIRCLE,DE,7/4/2014 22:00 +O'Fallon,RED,TEARDROP,MO,7/4/2014 22:00 +Osceola,,LIGHT,IN,7/4/2014 22:00 +Pelzer,ORANGE,LIGHT,SC,7/4/2014 22:00 +Sandusky,,FIREBALL,OH,7/4/2014 22:00 +Sanford,ORANGE,FIREBALL,FL,7/4/2014 22:00 +Seattle,,FIREBALL,WA,7/4/2014 22:00 +Seattle,ORANGE,SPHERE,WA,7/4/2014 22:00 +Seattle,RED,SPHERE,WA,7/4/2014 22:00 +Seattle,ORANGE,TRIANGLE,WA,7/4/2014 22:00 +Seattle,ORANGE,VARIOUS,WA,7/4/2014 22:00 +Seattle,,,WA,7/4/2014 22:00 +Stillwater,,CIRCLE,MN,7/4/2014 22:00 +Troy,,VARIOUS,OH,7/4/2014 22:00 +West Branch,RED,CYLINDER,IA,7/4/2014 22:00 +Winston-Salem,,RECTANGLE,NC,7/4/2014 22:00 +Withamsville,,FIREBALL,OH,7/4/2014 22:00 +Birmingham,,FIREBALL,AL,7/4/2014 22:05 +Coos Bay,ORANGE,LIGHT,OR,7/4/2014 22:05 +Pennsburg,ORANGE,SPHERE,PA,7/4/2014 22:05 +San Jose,RED,LIGHT,CA,7/4/2014 22:05 +Surfside,ORANGE,SPHERE,SC,7/4/2014 22:05 +Upper Arlington,RED GREEN,SPHERE,OH,7/4/2014 22:05 +Ashland,ORANGE,,KY,7/4/2014 22:08 +Altoona,RED,,PA,7/4/2014 22:15 +Anderson,ORANGE,SPHERE,SC,7/4/2014 22:15 +Dublin,,OVAL,OH,7/4/2014 22:15 +Glen Burnie,ORANGE,LIGHT,MD,7/4/2014 22:15 +Hamilton,,FIREBALL,OH,7/4/2014 22:15 +Seattle,,OTHER,WA,7/4/2014 22:15 +Supulpa,RED,LIGHT,OK,7/4/2014 22:15 +Half Moon Bay,ORANGE,SPHERE,CA,7/4/2014 22:16 +Crown City,RED ORANGE,CIRCLE,OH,7/4/2014 22:17 +Acworth,RED,LIGHT,GA,7/4/2014 22:20 +Spanaway,,FIREBALL,WA,7/4/2014 22:20 +Bellingham,ORANGE,SPHERE,WA,7/4/2014 22:23 +Chicago,,CIRCLE,IL,7/4/2014 22:25 +Issaquah,ORANGE,LIGHT,WA,7/4/2014 22:25 +Booneville,ORANGE,CIRCLE,KY,7/4/2014 22:26 +Louisville,RED,SPHERE,KY,7/4/2014 22:29 +Aurora,,FORMATION,CO,7/4/2014 22:30 +Bay Shore,,CIRCLE,NY,7/4/2014 22:30 +Blacklick,,CIRCLE,OH,7/4/2014 22:30 +Boylston,,TRIANGLE,NY,7/4/2014 22:30 +Clinton Township,ORANGE,FIREBALL,MI,7/4/2014 22:30 +Culpeper,RED,DISK,VA,7/4/2014 22:30 +Culpeper,RED,DISK,VA,7/4/2014 22:30 +Eldersburg,ORANGE,CIRCLE,MD,7/4/2014 22:30 +Evansville,RED,LIGHT,IN,7/4/2014 22:30 +Great Falls,ORANGE YELLOW,,MT,7/4/2014 22:30 +Houston,ORANGE,FIREBALL,TX,7/4/2014 22:30 +Judsonia,ORANGE,CYLINDER,AR,7/4/2014 22:30 +Livonia,,FIREBALL,MI,7/4/2014 22:30 +Loon Lake,ORANGE,SPHERE,WA,7/4/2014 22:30 +Lynchburg,,TRIANGLE,VA,7/4/2014 22:30 +Lynnwood,ORANGE,CIRCLE,WA,7/4/2014 22:30 +Monroe,,LIGHT,MI,7/4/2014 22:30 +Mooresville,,TEARDROP,NC,7/4/2014 22:30 +Port Huron,,LIGHT,MI,7/4/2014 22:30 +Port Orchard,YELLOW,RECTANGLE,WA,7/4/2014 22:30 +Richfield,RED,FIREBALL,WI,7/4/2014 22:30 +Ridgway,,CIRCLE,PA,7/4/2014 22:30 +St. Petersburg,RED ORANGE,CIRCLE,FL,7/4/2014 22:30 +St. Petersburg,RED ORANGE,FIREBALL,FL,7/4/2014 22:30 +Fenton,,TRIANGLE,MO,7/4/2014 22:38 +Raymore,YELLOW,FIREBALL,MO,7/4/2014 22:39 +Palmdale,,LIGHT,CA,7/4/2014 22:40 +Chillicothe,,CIRCLE,OH,7/4/2014 22:45 +Garden Grove,ORANGE,CIRCLE,CA,7/4/2014 22:45 +Knoxville,ORANGE,LIGHT,TN,7/4/2014 22:45 +Louisville,,FIREBALL,KY,7/4/2014 22:45 +Nampa,RED,LIGHT,ID,7/4/2014 22:45 +Shelbyville,ORANGE,LIGHT,IN,7/4/2014 22:45 +Akron,RED,LIGHT,OH,7/4/2014 22:50 +Kirkland,ORANGE,CIRCLE,WA,7/4/2014 22:50 +Louisville,ORANGE,,KY,7/4/2014 22:50 +Greeenwood,,,IN,7/4/2014 22:55 +Brookfield,,DIAMOND,IL,7/4/2014 23:00 +Chicago,RED,FIREBALL,IL,7/4/2014 23:00 +Elk Grove,,,CA,7/4/2014 23:00 +Eugene,,,OR,7/4/2014 23:00 +Evansville,ORANGE,LIGHT,IN,7/4/2014 23:00 +Fort Wayne,RED,FLASH,IN,7/4/2014 23:00 +Hillsboro,RED,LIGHT,OR,7/4/2014 23:00 +Homer Glen,RED ORANGE,OVAL,IL,7/4/2014 23:00 +Howell,ORANGE,DISK,MI,7/4/2014 23:00 +Hubbard,ORANGE,FIREBALL,OH,7/4/2014 23:00 +Kelso,,DISK,WA,7/4/2014 23:00 +La Mirada,RED YELLOW,SPHERE,CA,7/4/2014 23:00 +La Porte,,FIREBALL,IN,7/4/2014 23:00 +Linden,ORANGE,LIGHT,NJ,7/4/2014 23:00 +Mobile,,SPHERE,AL,7/4/2014 23:00 +Orland Park,,EGG,IL,7/4/2014 23:00 +Saint John,,,KS,7/4/2014 23:00 +Stow,ORANGE,,OH,7/4/2014 23:00 +Tinley Park,,CIRCLE,IL,7/4/2014 23:00 +Waukegan,,FIREBALL,IL,7/4/2014 23:00 +Whidbey Island,,FIREBALL,WA,7/4/2014 23:00 +Pittsfield,,OTHER,MA,7/4/2014 23:01 +Bolivar,,OTHER,MO,7/4/2014 23:03 +Union,ORANGE,CIRCLE,OH,7/4/2014 23:03 +Ferndale,,LIGHT,WA,7/4/2014 23:05 +Cottleville,RED,FIREBALL,MO,7/4/2014 23:15 +Lockport,ORANGE,CIRCLE,NY,7/4/2014 23:15 +Baldwin Park,,LIGHT,CA,7/4/2014 23:18 +Havre,,CIRCLE,MT,7/4/2014 23:19 +Broadlands,,OVAL,VA,7/4/2014 23:25 +Gun Barrel City,ORANGE,LIGHT,TX,7/4/2014 23:25 +Austin,,LIGHT,TX,7/4/2014 23:30 +Boulder,GREEN,FORMATION,CO,7/4/2014 23:30 +Kent,RED ORANGE YELLOW,LIGHT,WA,7/4/2014 23:30 +Redmond,,FIREBALL,OR,7/4/2014 23:30 +"Rowlett, Sachse",,SPHERE,TX,7/4/2014 23:30 +Vancouver,,CIRCLE,WA,7/4/2014 23:35 +Albany,,SPHERE,NY,7/4/2014 23:36 +Wichita,RED,LIGHT,KS,7/4/2014 23:41 +Central Islip,RED,,NY,7/5/2014 0:00 +Edgewater,RED,,MD,7/5/2014 0:00 +Millington,,CIRCLE,MI,7/5/2014 0:00 +Waterford,,SPHERE,MI,7/5/2014 0:00 +Harrington,,OVAL,WA,7/5/2014 0:12 +Xenia,ORANGE,FIREBALL,OH,7/5/2014 0:30 +Booneville,,CHEVRON,KY,7/5/2014 0:45 +Little Rock,,CIRCLE,AR,7/5/2014 1:00 +Massapequa Park,,SPHERE,NY,7/5/2014 2:00 +Raleigh,RED,LIGHT,NC,7/5/2014 2:11 +Steam Corner,ORANGE,FIREBALL,IN,7/5/2014 8:30 +Coram,,OVAL,NY,7/5/2014 10:00 +Loron,,CIRCLE,VA,7/5/2014 10:30 +Port Jefferson Station,,CIRCLE,NY,7/5/2014 10:40 +Chester,,LIGHT,VA,7/5/2014 11:00 +Three Oaks,ORANGE,OVAL,MI,7/5/2014 11:10 +Lafayette,,SPHERE,IN,7/5/2014 11:30 +Maumee,,SPHERE,OH,7/5/2014 16:00 +Clermont,RED,CIRCLE,FL,7/5/2014 17:00 +Gouldsboro,,CIGAR,PA,7/5/2014 17:00 +Rochester,,CIRCLE,NY,7/5/2014 19:30 +Westminster,,CYLINDER,CA,7/5/2014 20:16 +Salisbury,ORANGE,CIRCLE,MD,7/5/2014 20:25 +Portage,RED,FORMATION,IN,7/5/2014 20:45 +Furlong,RED,OVAL,PA,7/5/2014 20:58 +Bovey,,SPHERE,MN,7/5/2014 21:00 +Bristol,,LIGHT,RI,7/5/2014 21:00 +Fairhaven,,LIGHT,MA,7/5/2014 21:00 +Lake Oswego,,FIREBALL,OR,7/5/2014 21:00 +no data,ORANGE,,IN,7/5/2014 21:00 +Holbrook,ORANGE,SPHERE,NY,7/5/2014 21:05 +San Diego,,DIAMOND,CA,7/5/2014 21:05 +Billerica,RED YELLOW,FIREBALL,MA,7/5/2014 21:15 +Greenville,,SPHERE,IL,7/5/2014 21:15 +Harford County,,TRIANGLE,MD,7/5/2014 21:15 +West Reading,,CYLINDER,PA,7/5/2014 21:15 +Nashua,ORANGE,CIRCLE,NH,7/5/2014 21:25 +Nashua,ORANGE,CIRCLE,NH,7/5/2014 21:25 +Corpus Christi,,FIREBALL,TX,7/5/2014 21:30 +Menifee,,LIGHT,CA,7/5/2014 21:30 +Philadelphia,ORANGE,SPHERE,PA,7/5/2014 21:30 +State College,ORANGE,,PA,7/5/2014 21:30 +Windham,,FIREBALL,NH,7/5/2014 21:30 +Cherry Hill,ORANGE,FIREBALL,NJ,7/5/2014 21:35 +Fairless Hills,,CIRCLE,PA,7/5/2014 21:35 +Philadelphia,,CIRCLE,PA,7/5/2014 21:40 +Columbus,,FIREBALL,OH,7/5/2014 21:45 +Madison,RED GREEN,LIGHT,IN,7/5/2014 21:45 +Cumming,BLUE,TRIANGLE,GA,7/5/2014 21:48 +El Monte,RED ORANGE,VARIOUS,CA,7/5/2014 21:49 +St. Peters,,CIRCLE,MO,7/5/2014 21:53 +Reading,RED ORANGE,OTHER,PA,7/5/2014 21:57 +Brentwood,,FORMATION,TN,7/5/2014 22:00 +Detroit,RED YELLOW,SPHERE,MI,7/5/2014 22:00 +Johnsburg,,FIREBALL,IL,7/5/2014 22:00 +Lanett,,FIREBALL,AL,7/5/2014 22:00 +Norwalk,,FIREBALL,CT,7/5/2014 22:00 +Old Bridge,RED,LIGHT,NJ,7/5/2014 22:00 +Saugus,ORANGE,OTHER,MA,7/5/2014 22:00 +Saugus,,TRIANGLE,MA,7/5/2014 22:00 +Suwanee,RED,LIGHT,GA,7/5/2014 22:00 +Wallingford,,FIREBALL,CT,7/5/2014 22:00 +Wilkes-Barre,RED,OVAL,PA,7/5/2014 22:00 +Williamstown,ORANGE,FIREBALL,VT,7/5/2014 22:00 +Albany,,LIGHT,OR,7/5/2014 22:03 +Harrington,,LIGHT,WA,7/5/2014 22:05 +Seneca,ORANGE,OVAL,MO,7/5/2014 22:05 +Elk Grove Village,RED,CIRCLE,IL,7/5/2014 22:13 +Harleysville,ORANGE,CYLINDER,PA,7/5/2014 22:15 +Pottstown,,FIREBALL,PA,7/5/2014 22:15 +Springfield,,FIREBALL,MO,7/5/2014 22:15 +Suwanee,BLUE,DISK,GA,7/5/2014 22:15 +Brooklyn Park,,LIGHT,MN,7/5/2014 22:20 +Norwalk,RED,,OH,7/5/2014 22:25 +East Islip,ORANGE,FIREBALL,NY,7/5/2014 22:30 +Goodletsville,,CIRCLE,TN,7/5/2014 22:30 +Grand Rapids,,,MI,7/5/2014 22:30 +Lexington,,DIAMOND,KY,7/5/2014 22:30 +Lockport,RED,CYLINDER,NY,7/5/2014 22:30 +Ogilvie,BLUE,FLASH,MN,7/5/2014 22:30 +Taylor,RED,CYLINDER,MI,7/5/2014 22:30 +Philadelphia,,FIREBALL,PA,7/5/2014 22:40 +Scottsdale,ORANGE,FIREBALL,AZ,7/5/2014 22:45 +Anaheim,,LIGHT,CA,7/5/2014 23:00 +Bay Village,,CIRCLE,OH,7/5/2014 23:00 +Del Mar,,DISK,CA,7/5/2014 23:00 +Moundsview,,FIREBALL,MN,7/5/2014 23:00 +Pueblo West,,LIGHT,CO,7/5/2014 23:00 +West Babylon,,CIRCLE,NY,7/5/2014 23:15 +Fallbrook,,LIGHT,CA,7/5/2014 23:25 +Fergus Falls,,LIGHT,MN,7/5/2014 23:27 +Bel Air,,LIGHT,MD,7/5/2014 23:30 +East Patchogue,RED,LIGHT,NY,7/5/2014 23:30 +Virginia Beach,,RECTANGLE,VA,7/5/2014 23:45 +White House,RED,SPHERE,TN,7/5/2014 23:45 +Upland,RED,TRIANGLE,CA,7/6/2014 0:00 +Davenport,YELLOW,VARIOUS,WA,7/6/2014 0:15 +Macon,,SPHERE,GA,7/6/2014 1:00 +New Freedom,YELLOW,LIGHT,PA,7/6/2014 1:05 +Mount Eden,,VARIOUS,KY,7/6/2014 3:00 +Clarkesville,RED GREEN,LIGHT,GA,7/6/2014 5:15 +Tacoma,,LIGHT,WA,7/6/2014 10:20 +Lafayette,BLUE,CIRCLE,LA,7/6/2014 12:50 +Seekonk,,OTHER,MA,7/6/2014 14:20 +Schenectady,,FIREBALL,NY,7/6/2014 20:19 +Calera,,FIREBALL,AL,7/6/2014 20:45 +Davenport,,LIGHT,FL,7/6/2014 20:45 +Topeka,,CYLINDER,KS,7/6/2014 20:50 +Point Pleasant,ORANGE,CIRCLE,NJ,7/6/2014 21:00 +Queen Creek,,TRIANGLE,AZ,7/6/2014 21:00 +Atlantic Beach,,LIGHT,NC,7/6/2014 21:15 +York,ORANGE,FIREBALL,PA,7/6/2014 21:15 +Alexandria,RED ORANGE,LIGHT,VA,7/6/2014 21:30 +Lancaster,RED GREEN BLUE,LIGHT,PA,7/6/2014 21:30 +Lewisberry,ORANGE,CONE,PA,7/6/2014 21:30 +BattleCreek,,CIRCLE,MI,7/6/2014 21:45 +Bainbrodge,,FIREBALL,OH,7/6/2014 22:00 +Lewis Center,RED ORANGE,CIRCLE,OH,7/6/2014 22:00 +Shaler,ORANGE,LIGHT,PA,7/6/2014 22:00 +Pahrump,RED ORANGE,,NV,7/6/2014 22:01 +Johnston,RED ORANGE,SPHERE,RI,7/6/2014 22:15 +Milford,,OVAL,OH,7/6/2014 22:15 +Independence,,FIREBALL,OR,7/6/2014 22:25 +Garfield,ORANGE,TRIANGLE,AR,7/6/2014 22:30 +Goodland,,SPHERE,KS,7/6/2014 22:30 +Columbia,,LIGHT,SC,7/6/2014 23:15 +Applegate,RED GREEN,,OR,7/7/2014 0:00 +Corona,,OVAL,CA,7/7/2014 1:05 +Vienna,ORANGE,CIRCLE,OH,7/7/2014 11:25 +Las Vegas,,OTHER,NV,7/7/2014 12:00 +Conway,,SPHERE,SC,7/7/2014 20:45 +Arlington,,CIRCLE,VA,7/7/2014 21:00 +Wilmington,ORANGE,FIREBALL,NC,7/7/2014 21:00 +Charlotte,,LIGHT,NC,7/7/2014 21:35 +Kansas City,BLUE,DISK,MO,7/7/2014 22:00 +Wolf Point,,FLASH,MT,7/7/2014 22:00 +Salt Lake City,ORANGE,FIREBALL,UT,7/7/2014 22:40 +Austin,,SPHERE,TX,7/7/2014 23:00 +Shortsville,,LIGHT,NY,7/7/2014 23:00 +Dacula,,DISK,GA,7/8/2014 0:15 +Jasper,,FORMATION,AR,7/8/2014 1:00 +Sterling Heights,RED,CIRCLE,MI,7/8/2014 1:00 +Athens,,FIREBALL,OH,7/8/2014 1:45 +Paterson,,TRIANGLE,NJ,7/8/2014 3:00 +Wakefield,,CYLINDER,MA,7/8/2014 20:04 +Torrance,RED,VARIOUS,CA,7/8/2014 21:15 +Apalachicola,ORANGE,LIGHT,FL,7/8/2014 21:30 +Perrysburg,ORANGE,CIRCLE,OH,7/8/2014 22:00 +Parkersburg,,TRIANGLE,WV,7/8/2014 22:04 +Carol Stream,,OVAL,IL,7/8/2014 22:35 +Carol Stream,,SPHERE,IL,7/8/2014 22:35 +El Cajon,,,CA,7/8/2014 22:40 +Saint Augustine,,CIRCLE,FL,7/8/2014 23:10 +Lincoln,,OVAL,NH,7/9/2014 0:00 +Santa Rosa,,CIRCLE,CA,7/9/2014 0:00 +Oneida,,TRIANGLE,NY,7/9/2014 3:00 +Beaumont,,EGG,CA,7/9/2014 4:40 +Buhl,,SPHERE,ID,7/9/2014 10:00 +Dubois,,CYLINDER,WY,7/9/2014 13:00 +Wichita,,CYLINDER,KS,7/9/2014 13:00 +Elizabeth,,LIGHT,WV,7/9/2014 20:00 +Mountain View,,LIGHT,MO,7/9/2014 21:00 +Williston,RED,,VT,7/9/2014 21:15 +Johnstown,RED,CIRCLE,PA,7/9/2014 21:30 +Holden Beach,ORANGE,LIGHT,NC,7/9/2014 22:00 +Lincoln,GREEN,SPHERE,NH,7/9/2014 22:00 +Yarmouthport,,OTHER,MA,7/9/2014 22:00 +Winooski,ORANGE,FIREBALL,VT,7/9/2014 22:17 +Easton,RED ORANGE,OVAL,PA,7/9/2014 23:00 +Lexington,,CIRCLE,KY,7/9/2014 23:04 +Stillwater,,LIGHT,MN,7/9/2014 23:30 +Ragland,,DISK,WV,7/10/2014 0:00 +South Seattle,YELLOW,FIREBALL,WA,7/10/2014 0:01 +Gassville,,CIRCLE,AR,7/10/2014 2:00 +Manchester,,CIRCLE,MI,7/10/2014 3:00 +Carlisle,,SPHERE,PA,7/10/2014 11:19 +Long Beach,,FIREBALL,NY,7/10/2014 13:00 +Cromwell,,FIREBALL,CT,7/10/2014 21:00 +Andalusia,ORANGE,FIREBALL,AL,7/10/2014 21:15 +Ventura,,TRIANGLE,CA,7/10/2014 21:15 +Tulsa,,FIREBALL,OK,7/10/2014 21:40 +Wilmington,,FIREBALL,DE,7/10/2014 22:00 +Patterson,,LIGHT,CA,7/10/2014 22:15 +Sullivan,,CIRCLE,NH,7/10/2014 22:15 +Three Points,,FIREBALL,AZ,7/10/2014 22:23 +Miamisburg,,LIGHT,OH,7/10/2014 23:00 +Livingston,,LIGHT,CA,7/11/2014 0:30 +Ochoco National Forest,,,OR,7/11/2014 0:30 +Roscommon,ORANGE,FIREBALL,MI,7/11/2014 0:45 +Santa Clara,,,NM,7/11/2014 5:00 +San Marcos,RED,DIAMOND,CA,7/11/2014 6:10 +Carlsbad,,CROSS,CA,7/11/2014 11:30 +Litchfield,,EGG,ME,7/11/2014 11:30 +San Diego,,OVAL,CA,7/11/2014 11:48 +Newark,GREEN,RECTANGLE,DE,7/11/2014 21:00 +Carlton,ORANGE,,MN,7/11/2014 21:40 +Baton Rouge,,LIGHT,LA,7/11/2014 22:00 +Cape Coral,,FIREBALL,FL,7/11/2014 22:00 +Cincinnati,ORANGE,LIGHT,OH,7/11/2014 22:00 +Leesburg,,FIREBALL,GA,7/11/2014 22:00 +Liverpool,RED GREEN,OTHER,NY,7/11/2014 22:00 +Meriden,,CIRCLE,NH,7/11/2014 22:00 +Mission Viejo,RED BLUE,CIRCLE,CA,7/11/2014 22:00 +Solebury,,FORMATION,PA,7/11/2014 22:00 +Mount Airy,,FIREBALL,MD,7/11/2014 22:02 +Durand,RED,TRIANGLE,MI,7/11/2014 22:15 +Mercer,,FIREBALL,PA,7/11/2014 22:45 +Pittsburgh,,FIREBALL,PA,7/11/2014 22:50 +Roseburg,,,OR,7/11/2014 23:00 +Cleveland,ORANGE,FIREBALL,OH,7/11/2014 23:15 +Hoschton,,LIGHT,GA,7/11/2014 23:26 +Spokane,,SPHERE,WA,7/12/2014 0:00 +Eugene,,FIREBALL,OR,7/12/2014 0:45 +Tacoma,ORANGE,LIGHT,WA,7/12/2014 1:30 +Chesapeake Bay Bridge,,CIRCLE,MD,7/12/2014 11:00 +Indian Shores Beach,RED,CIRCLE,FL,7/12/2014 19:00 +Rochester,,SPHERE,NY,7/12/2014 19:00 +Lafayette,,LIGHT,LA,7/12/2014 20:20 +Garland,,RECTANGLE,TX,7/12/2014 20:30 +Fulton,,CIGAR,MO,7/12/2014 20:35 +Warren,ORANGE,CIRCLE,OH,7/12/2014 20:50 +Austin,,LIGHT,TX,7/12/2014 21:00 +Bastrop,,CYLINDER,TX,7/12/2014 21:00 +Benton,,,LA,7/12/2014 21:00 +Bryan,,LIGHT,TX,7/12/2014 21:00 +Cameron,,FIREBALL,LA,7/12/2014 21:00 +Gluckstadt,,LIGHT,MS,7/12/2014 21:00 +Montgomery,,TRIANGLE,TX,7/12/2014 21:00 +Nacogdoches,GREEN,OTHER,TX,7/12/2014 21:00 +Pearland,,OTHER,TX,7/12/2014 21:00 +Richmond,,CIRCLE,TX,7/12/2014 21:00 +Wylie,,CIGAR,TX,7/12/2014 21:00 +Austin,YELLOW,LIGHT,TX,7/12/2014 21:05 +Montgomery,,CIRCLE,TX,7/12/2014 21:05 +Pearland,RED YELLOW,LIGHT,TX,7/12/2014 21:05 +Whitewright,,EGG,TX,7/12/2014 21:05 +Austin,,LIGHT,TX,7/12/2014 21:08 +Garland,,DIAMOND,TX,7/12/2014 21:08 +Katy,GREEN BLUE,,TX,7/12/2014 21:09 +Bossier City,,DISK,LA,7/12/2014 21:10 +Exeter,RED,LIGHT,NH,7/12/2014 21:10 +Ft. Smith,,LIGHT,AR,7/12/2014 21:10 +Mansfield,,CIRCLE,TX,7/12/2014 21:10 +McKinney,,CIRCLE,TX,7/12/2014 21:10 +Spicewood,,CIRCLE,TX,7/12/2014 21:10 +Austin,,LIGHT,TX,7/12/2014 21:12 +San Marcos,,LIGHT,TX,7/12/2014 21:12 +Austin,,LIGHT,TX,7/12/2014 21:15 +Leander,,LIGHT,TX,7/12/2014 21:15 +Monticello,,FIREBALL,MS,7/12/2014 21:15 +Quitman,,VARIOUS,TX,7/12/2014 21:15 +Hadley,,,MA,7/12/2014 21:18 +Port Berre,,TRIANGLE,LA,7/12/2014 21:18 +Lago Vista,,CYLINDER,TX,7/12/2014 21:20 +Kutztown,RED,TRIANGLE,PA,7/12/2014 21:25 +New Orleans,,,LA,7/12/2014 21:25 +Thorndale,GREEN,LIGHT,TX,7/12/2014 21:25 +Ilion,,TRIANGLE,NY,7/12/2014 21:30 +Lake Charles,YELLOW,CIRCLE,LA,7/12/2014 21:30 +Oley,,FIREBALL,PA,7/12/2014 21:30 +Round Rock,,LIGHT,TX,7/12/2014 21:30 +Spring,GREEN BLUE,LIGHT,TX,7/12/2014 21:30 +Aurora,RED,CIRCLE,OH,7/12/2014 21:45 +Douglassville,ORANGE,FIREBALL,PA,7/12/2014 21:45 +Piedmont,,FIREBALL,MO,7/12/2014 21:45 +Vashon Island,,LIGHT,WA,7/12/2014 21:45 +Conroe,,FIREBALL,TX,7/12/2014 22:00 +Durant,,,OK,7/12/2014 22:00 +New Orleans,,LIGHT,LA,7/12/2014 22:00 +Simpsonville,,SPHERE,SC,7/12/2014 22:00 +Cathedral City,,LIGHT,CA,7/12/2014 22:05 +Imlay City,,OVAL,MI,7/12/2014 22:18 +Camano Island,,CIRCLE,WA,7/12/2014 22:20 +West Linn,,CIRCLE,OR,7/12/2014 22:20 +Miami,RED,CIRCLE,FL,7/12/2014 22:30 +Warwick,,CIRCLE,RI,7/12/2014 22:30 +Wilson,,CIRCLE,NC,7/12/2014 22:30 +Franklin,,FIREBALL,MA,7/12/2014 22:45 +Johnson City,RED,FIREBALL,TN,7/12/2014 22:50 +Chewelah,,,WA,7/12/2014 23:00 +Cropwell,,,AL,7/12/2014 23:00 +Cropwell,,,AL,7/12/2014 23:00 +Lincoln,RED,LIGHT,NE,7/12/2014 23:00 +Livingston,,RECTANGLE,TX,7/12/2014 23:00 +Rockland,,FIREBALL,ME,7/12/2014 23:00 +Monroe,BLUE,CIRCLE,WA,7/12/2014 23:10 +Saugerties,,FIREBALL,NY,7/12/2014 23:30 +Lake Placid,,FORMATION,FL,7/13/2014 1:00 +Boise,ORANGE,CIRCLE,ID,7/13/2014 2:20 +Pittsburgh,,LIGHT,PA,7/13/2014 4:04 +Lantana,,FLASH,FL,7/13/2014 9:45 +Wilmington,,SPHERE,OH,7/13/2014 13:00 +Midvale,,DISK,UT,7/13/2014 13:45 +La Porte,,CIRCLE,IN,7/13/2014 14:06 +Lake Havasu City,,CIRCLE,AZ,7/13/2014 19:57 +Lake Havasu City,,LIGHT,AZ,7/13/2014 20:13 +Donalds,RED,OTHER,SC,7/13/2014 21:00 +Garland,,TRIANGLE,TX,7/13/2014 21:00 +Miami,GREEN,LIGHT,FL,7/13/2014 21:03 +Muskegon,,FIREBALL,MI,7/13/2014 21:20 +North Bend,ORANGE,SPHERE,OR,7/13/2014 21:30 +Des Plaines,,FIREBALL,IL,7/13/2014 21:32 +Emmaus,ORANGE,CIGAR,PA,7/13/2014 21:45 +Everett,,FIREBALL,WA,7/13/2014 22:20 +Drexel,BLUE,LIGHT,OH,7/13/2014 22:30 +Keene,,FIREBALL,NH,7/13/2014 22:30 +Vandalia,,CIRCLE,OH,7/13/2014 22:45 +State College,ORANGE,FIREBALL,PA,7/13/2014 22:50 +Mukilteo,,FIREBALL,WA,7/13/2014 23:00 +Shreveport,,CIRCLE,LA,7/14/2014 0:00 +Norwalk,RED,SPHERE,OH,7/14/2014 1:00 +Austin,ORANGE,CIRCLE,TX,7/14/2014 5:10 +Damascus,ORANGE,SPHERE,MD,7/14/2014 5:10 +Surfside Beach,YELLOW,SPHERE,SC,7/14/2014 10:15 +Shreveport,,DISK,LA,7/14/2014 13:00 +Helena,,LIGHT,AL,7/14/2014 19:40 +Tarkio,,CIRCLE,MO,7/14/2014 20:45 +Litchfield Beach,ORANGE,LIGHT,SC,7/14/2014 21:00 +Fredericksburg,,CIRCLE,VA,7/14/2014 21:15 +Ruskin,,,FL,7/14/2014 21:15 +Garden City,,LIGHT,SC,7/14/2014 21:30 +Polson,,,MT,7/14/2014 21:30 +Garden City,ORANGE,CIRCLE,PA,7/14/2014 22:00 +North Myrtle Beach,ORANGE,SPHERE,SC,7/14/2014 22:00 +Acworth,,CIRCLE,GA,7/14/2014 22:35 +North Versailles,,LIGHT,PA,7/14/2014 22:40 +Pittsburgh,,LIGHT,PA,7/15/2014 0:00 +Stagecoach,,OTHER,NV,7/15/2014 16:00 +Cadiz,,SPHERE,KY,7/15/2014 21:20 +Denver,,,CO,7/15/2014 21:45 +Denver,,LIGHT,CO,7/15/2014 21:45 +Hampton,,,GA,7/15/2014 21:45 +Portland,,LIGHT,OR,7/15/2014 21:45 +Morgan Hill,,CIRCLE,CA,7/15/2014 22:00 +Kuna,ORANGE,SPHERE,ID,7/15/2014 22:24 +Tulsa,,TRIANGLE,OK,7/15/2014 22:30 +Lakeville,,LIGHT,MN,7/15/2014 22:46 +Demming,,OVAL,WA,7/15/2014 23:50 +Little Falls,,DISK,MN,7/16/2014 0:00 +Dixon,,CHEVRON,MO,7/16/2014 5:00 +Ormond Beach,,LIGHT,FL,7/16/2014 5:00 +Woodbridge,,FIREBALL,VA,7/16/2014 7:00 +Locust Grove,,OTHER,GA,7/16/2014 10:00 +Grand Rapids,,OVAL,MI,7/16/2014 21:00 +Matthews,,FORMATION,NC,7/16/2014 21:00 +Mount Gilead,,CIGAR,NC,7/16/2014 21:15 +Fairview,,LIGHT,NC,7/16/2014 21:20 +North Myrtle Beach,,SPHERE,SC,7/16/2014 21:28 +Indian Trail,,FLASH,NC,7/16/2014 21:30 +Luverne,,FLASH,AL,7/16/2014 21:50 +Fort Mill,,FORMATION,SC,7/16/2014 22:00 +Uknown,RED YELLOW BLUE,TEARDROP,IN,7/16/2014 22:00 +Zebulon,,DISK,GA,7/16/2014 22:00 +Columbus,,FORMATION,GA,7/16/2014 22:30 +Phenix City,,LIGHT,AL,7/16/2014 22:30 +Brundidge,,LIGHT,AL,7/16/2014 23:00 +Kuna,,LIGHT,ID,7/16/2014 23:00 +Lawrence,BLUE,CIRCLE,NY,7/16/2014 23:07 +North Myrtle Beach,,SPHERE,SC,7/16/2014 23:17 +New York City,,LIGHT,NY,7/17/2014 1:00 +Cranberry Twp.,,,PA,7/17/2014 1:45 +Fort Wayne,ORANGE,SPHERE,IN,7/17/2014 9:00 +Portland,,TRIANGLE,OR,7/17/2014 10:30 +Santa Ana,,DISK,CA,7/17/2014 12:59 +San Jose,,SPHERE,CA,7/17/2014 14:00 +Somers,,OTHER,CT,7/17/2014 14:40 +Ocean Springs,,CIGAR,MS,7/17/2014 16:30 +Butler,,DISK,WI,7/17/2014 18:00 +North Royalton,,CIRCLE,OH,7/17/2014 19:00 +Lakeland,,FIREBALL,FL,7/17/2014 20:30 +Augusta,ORANGE,CIRCLE,GA,7/17/2014 21:00 +West Haven,ORANGE,LIGHT,CT,7/17/2014 21:00 +Apex,ORANGE,FIREBALL,NC,7/17/2014 21:15 +Martinez,,LIGHT,GA,7/17/2014 21:20 +Mather,ORANGE,FIREBALL,PA,7/17/2014 21:30 +Erie,ORANGE,SPHERE,PA,7/17/2014 21:52 +Myrtle Beach,,FLASH,SC,7/17/2014 22:00 +Garner,,LIGHT,NC,7/17/2014 22:10 +Longneck,,FIREBALL,DE,7/17/2014 22:20 +North Myrtle Beach,ORANGE,CIRCLE,SC,7/17/2014 22:30 +Wilmington,GREEN,,NC,7/17/2014 22:30 +Nampa,,SPHERE,ID,7/17/2014 23:30 +La Porte,,,IN,7/17/2014 23:50 +Daytona,,FIREBALL,FL,7/18/2014 0:00 +Ocean City,,CIGAR,MD,7/18/2014 11:45 +Cape Coral,,CYLINDER,FL,7/18/2014 18:45 +no data,,CIRCLE,MA,7/18/2014 20:30 +Evansville,,CIRCLE,IN,7/18/2014 21:00 +Cape Neddick,ORANGE,LIGHT,ME,7/18/2014 21:11 +Salem,,CIRCLE,OH,7/18/2014 21:13 +Chesapeake,,FIREBALL,VA,7/18/2014 21:15 +San Rafael,ORANGE,FIREBALL,CA,7/18/2014 21:24 +Export,,CIRCLE,PA,7/18/2014 21:40 +Holden Beach,RED,CIRCLE,NC,7/18/2014 21:52 +Moncure,,LIGHT,NC,7/18/2014 21:54 +Bristol,RED ORANGE,LIGHT,CT,7/18/2014 22:00 +Des Moines,,CIRCLE,WA,7/18/2014 22:00 +Glenwood Springs,,TRIANGLE,CO,7/18/2014 22:00 +Greensboro,BLUE,FLASH,NC,7/18/2014 22:00 +Houston,,LIGHT,TX,7/18/2014 22:00 +Sebring,,FIREBALL,FL,7/18/2014 22:00 +Weldon Spring,,TRIANGLE,MO,7/18/2014 22:00 +Cobleskill,ORANGE,TRIANGLE,NY,7/18/2014 22:15 +Fayetteville,RED YELLOW BLUE,CIRCLE,NC,7/18/2014 22:19 +Arlington,,TRIANGLE,TX,7/18/2014 23:00 +Jupiter,,FIREBALL,FL,7/18/2014 23:00 +Rathdrum,ORANGE,FIREBALL,ID,7/18/2014 23:00 +Montauk,,FIREBALL,NY,7/18/2014 23:20 +Weldon Springs,,TRIANGLE,MO,7/19/2014 0:22 +Theodore,,FIREBALL,AL,7/19/2014 2:00 +Sugar Land,,CYLINDER,TX,7/19/2014 2:30 +Sugar Land,,LIGHT,TX,7/19/2014 2:45 +Cottonwood,,VARIOUS,CA,7/19/2014 3:00 +Logansport,RED,TRIANGLE,IN,7/19/2014 5:00 +Redbush,RED GREEN,FIREBALL,KY,7/19/2014 5:00 +Topeka,,FIREBALL,KS,7/19/2014 5:00 +Columbus,RED,SPHERE,OH,7/19/2014 10:00 +In-flight,,DISK,PA,7/19/2014 14:30 +Halfmoon,ORANGE,CIRCLE,NY,7/19/2014 20:15 +Willow Street,,SPHERE,PA,7/19/2014 20:30 +Great Falls,,LIGHT,MT,7/19/2014 21:00 +Wichita Falls,GREEN,SPHERE,TX,7/19/2014 21:00 +Levittown,,CONE,PA,7/19/2014 21:10 +Williston,,RECTANGLE,VT,7/19/2014 21:10 +Virginia Beach,,FIREBALL,VA,7/19/2014 21:18 +Geneva,,FIREBALL,NY,7/19/2014 21:30 +Yarmouth Port,RED ORANGE,FIREBALL,MA,7/19/2014 21:30 +Chicopee,,FIREBALL,MA,7/19/2014 21:36 +Forney,,FIREBALL,TX,7/19/2014 21:40 +Palm Springs,,TEARDROP,CA,7/19/2014 21:40 +Palmyra,,CIRCLE,PA,7/19/2014 21:40 +Carmel,ORANGE,SPHERE,IN,7/19/2014 22:00 +Fulton,RED,FIREBALL,NY,7/19/2014 22:00 +Kansas City,RED,LIGHT,MO,7/19/2014 22:00 +Bernville,,SPHERE,PA,7/19/2014 22:07 +Grand Rapids,ORANGE,,MI,7/19/2014 22:30 +Kennett Sqaure,,SPHERE,PA,7/19/2014 22:30 +Bristol,,CIRCLE,TN,7/19/2014 22:45 +Harpersfield,,FIREBALL,NY,7/19/2014 22:45 +Pigeon Forge,,CIRCLE,TN,7/19/2014 22:45 +New Braunfels,RED BLUE,,TX,7/19/2014 23:00 +Gowen,,CIRCLE,MI,7/19/2014 23:14 +Blackstone,ORANGE,FIREBALL,VA,7/19/2014 23:15 +Daytona,RED,OVAL,FL,7/20/2014 0:00 +Surfside,ORANGE,CHEVRON,SC,7/20/2014 1:30 +Pleasant Hill,,LIGHT,LA,7/20/2014 20:00 +Brookport,RED,LIGHT,IL,7/20/2014 20:05 +Toms River,ORANGE,FIREBALL,NJ,7/20/2014 20:35 +Laguna Beach,,CIRCLE,CA,7/20/2014 20:45 +Kitty Hawk,ORANGE,LIGHT,NC,7/20/2014 21:30 +Ann Arbor,ORANGE,CIRCLE,MI,7/20/2014 21:37 +Bakersfield,,LIGHT,CA,7/20/2014 22:00 +Wildwood,,OTHER,NJ,7/20/2014 22:00 +Catoosa,,FIREBALL,OK,7/20/2014 23:30 +Oakland Park,,DISK,FL,7/20/2014 23:30 +Bethlehem,,FIREBALL,PA,7/20/2014 23:55 +Chicago,ORANGE,LIGHT,IL,7/20/2014 23:55 +Burlington,,LIGHT,VT,7/21/2014 0:30 +Chicago,,LIGHT,IL,7/21/2014 2:10 +Surfside,ORANGE,CHEVRON,SC,7/21/2014 2:25 +Mount Rainier,BLUE,SPHERE,MD,7/21/2014 20:00 +Cocoa beach,,FIREBALL,FL,7/21/2014 20:30 +North Charleston,,CIRCLE,SC,7/21/2014 21:00 +Dayton,RED,DISK,OH,7/21/2014 21:05 +Fort Worth,,,TX,7/21/2014 21:30 +Aurora,,DISK,CO,7/21/2014 21:35 +Jonestown,RED ORANGE,OVAL,PA,7/21/2014 21:45 +Plum,ORANGE,CIRCLE,PA,7/21/2014 21:45 +Westminster 104th,,LIGHT,CO,7/21/2014 22:30 +West Des Moines,,FIREBALL,IA,7/21/2014 22:54 +North Adams,RED,SPHERE,MA,7/21/2014 23:00 +Point Pleasant,RED,CIRCLE,WV,7/21/2014 23:00 +Jamul,,FIREBALL,CA,7/21/2014 23:13 +Eglon,,CIRCLE,WA,7/22/2014 0:00 +Jacksonville,,,FL,7/22/2014 0:05 +Worcester,ORANGE,,MA,7/22/2014 0:05 +Larkspur,,OTHER,CO,7/22/2014 1:30 +Wolf Point,BLUE,FLASH,MT,7/22/2014 2:00 +Saint Amant,,SPHERE,LA,7/22/2014 19:10 +Baton Rouge,,DISK,LA,7/22/2014 21:20 +Fairview,,CIRCLE,MT,7/22/2014 21:30 +Boxborough,,OTHER,MA,7/22/2014 22:00 +Roanoke,,DISK,VA,7/22/2014 22:00 +Algonquin,,OVAL,IL,7/22/2014 22:05 +Eastham,,SPHERE,MA,7/22/2014 22:30 +San Jose,,LIGHT,CA,7/22/2014 22:30 +Buffalo,,CIRCLE,NY,7/22/2014 23:00 +Hamden,,SPHERE,NY,7/22/2014 23:00 +Louisville,,FLASH,CO,7/22/2014 23:35 +Aurora,,SPHERE,CO,7/22/2014 23:59 +Grand Rapids,,DISK,MI,7/23/2014 1:30 +Greenwood,,OTHER,IN,7/23/2014 2:10 +Mole Lake,,CYLINDER,WI,7/23/2014 3:50 +Middletown,,FLASH,DE,7/23/2014 5:19 +Orlando,,FLASH,FL,7/23/2014 5:50 +Cedar Creek,BLUE,,TX,7/23/2014 16:00 +Reading,,,KS,7/23/2014 17:30 +Ocean City,,CIGAR,MD,7/23/2014 20:00 +Durrand,,CYLINDER,WI,7/23/2014 20:30 +Temecula,RED,OVAL,CA,7/23/2014 21:00 +Monterey,RED GREEN,CIRCLE,CA,7/23/2014 21:45 +Brownstown,ORANGE,SPHERE,MI,7/23/2014 22:00 +Ypsilanti,RED,LIGHT,MI,7/23/2014 22:15 +Clinton Township,,SPHERE,MI,7/23/2014 23:40 +Taylor,,,MI,7/24/2014 0:00 +Miami,RED,FLASH,FL,7/24/2014 0:34 +Los Angeles,,LIGHT,CA,7/24/2014 1:54 +Kansas City,,LIGHT,MO,7/24/2014 3:15 +Hudson Falls,BLUE,FIREBALL,NY,7/24/2014 4:40 +Clovis,,OTHER,CA,7/24/2014 14:25 +East Greenwich,,OVAL,RI,7/24/2014 18:30 +Richmond Heights,,LIGHT,MO,7/24/2014 19:00 +Myrtle Beach,ORANGE,OVAL,SC,7/24/2014 20:00 +Blandon,,OVAL,PA,7/24/2014 20:30 +Osage Beach,RED,LIGHT,MO,7/24/2014 21:00 +South Williamsport,,VARIOUS,PA,7/24/2014 21:30 +Circleville,,OTHER,WV,7/24/2014 23:00 +Ogallala,,FORMATION,NE,7/24/2014 23:00 +Lawrence,BLUE,CIRCLE,NY,7/24/2014 23:07 +Middletown,,DIAMOND,CT,7/24/2014 23:30 +Sykesville,,CIRCLE,MD,7/25/2014 0:00 +Avalon,RED,RECTANGLE,NJ,7/25/2014 1:00 +Sparks,,OTHER,NV,7/25/2014 1:20 +Hyannis,,TRIANGLE,MA,7/25/2014 3:45 +Scott City,,LIGHT,KS,7/25/2014 5:00 +Nashua,ORANGE YELLOW,CIRCLE,NH,7/25/2014 7:54 +Laconia,,CIGAR,NH,7/25/2014 9:50 +Nashville,ORANGE,OTHER,TN,7/25/2014 20:45 +Corpus Christi,,,TX,7/25/2014 21:15 +Clearwater,,CIRCLE,FL,7/25/2014 21:30 +Auburn,,TRIANGLE,CA,7/25/2014 21:40 +Pittsburgh,RED BLUE,OVAL,PA,7/25/2014 21:50 +Lima,,LIGHT,OH,7/25/2014 22:00 +Villa Park,GREEN,FIREBALL,IL,7/25/2014 22:00 +Mt. Lebanon,,DISK,PA,7/25/2014 22:07 +Mounds View,RED,CIRCLE,MN,7/25/2014 22:15 +Thompson,,OVAL,ND,7/25/2014 22:15 +Hutchinson,ORANGE,,MN,7/25/2014 22:20 +Toms River,RED,SPHERE,NJ,7/25/2014 22:30 +Woburn,,OTHER,MA,7/25/2014 22:30 +Green Bay,,LIGHT,WI,7/25/2014 22:38 +Temecula,,CIRCLE,CA,7/25/2014 22:45 +Grand Forks,,LIGHT,ND,7/25/2014 23:00 +Green Bay,,LIGHT,WI,7/25/2014 23:00 +Manassas Park,,LIGHT,VA,7/25/2014 23:00 +Federal Way,,LIGHT,WA,7/26/2014 0:00 +North Fairfield,,LIGHT,OH,7/26/2014 0:15 +Sumner,,FIREBALL,IA,7/26/2014 1:00 +Concord,,EGG,NC,7/26/2014 1:25 +Damascus,,FLASH,PA,7/26/2014 3:00 +Staten Island,,,NY,7/26/2014 3:05 +Whyndanch,,CIRCLE,NY,7/26/2014 3:15 +Sacramento,,CIRCLE,CA,7/26/2014 3:40 +Santa Rosa,,LIGHT,NM,7/26/2014 4:00 +Grand Fork,,CIGAR,ND,7/26/2014 9:00 +Clifton,,LIGHT,NJ,7/26/2014 10:00 +Rehoboth Beach,,DIAMOND,DE,7/26/2014 16:00 +Talmoon,RED,,MN,7/26/2014 19:45 +Butler,RED ORANGE,FIREBALL,NJ,7/26/2014 20:00 +Islip,,OVAL,NY,7/26/2014 20:50 +Pomona,,FIREBALL,CA,7/26/2014 21:00 +Sarasota,,,FL,7/26/2014 21:00 +Middletown,YELLOW,LIGHT,RI,7/26/2014 21:10 +Middletown,ORANGE,FIREBALL,NY,7/26/2014 21:20 +Northport,,SPHERE,NY,7/26/2014 21:30 +Hume,,,NY,7/26/2014 21:40 +Holcombe,,CIRCLE,WI,7/26/2014 21:50 +East Haven,,FORMATION,CT,7/26/2014 22:00 +Lake George,,LIGHT,NY,7/26/2014 22:00 +Oceanside,ORANGE,OVAL,CA,7/26/2014 22:00 +Rosman,,OTHER,NC,7/26/2014 22:00 +Bend,,CIRCLE,OR,7/26/2014 22:10 +Nampa,ORANGE,,ID,7/26/2014 22:55 +Slatington,ORANGE,FIREBALL,PA,7/26/2014 22:58 +Everett,RED,LIGHT,WA,7/26/2014 23:00 +Manitowoc,,LIGHT,WI,7/26/2014 23:00 +Portland,RED,SPHERE,OR,7/26/2014 23:00 +Cheyenne,,TRIANGLE,WY,7/26/2014 23:10 +Largo,GREEN,CIRCLE,FL,7/26/2014 23:30 +Villas,,FLASH,NJ,7/26/2014 23:58 +Belmont,,FIREBALL,NH,7/27/2014 0:20 +Austin,GREEN,,TX,7/27/2014 0:30 +Seattle,,OVAL,WA,7/27/2014 1:35 +Apex,,DISK,NC,7/27/2014 3:00 +East Haven,,FIREBALL,CT,7/27/2014 3:30 +Saint Claire Shores,,OTHER,MI,7/27/2014 3:45 +Charlestown Township,,VARIOUS,OH,7/27/2014 5:09 +Port Townsend,,CIGAR,WA,7/27/2014 13:00 +Sacramento,,FIREBALL,CA,7/27/2014 17:00 +Tucson,RED BLUE,LIGHT,AZ,7/27/2014 20:20 +Staten Island,RED ORANGE,FIREBALL,NY,7/27/2014 20:30 +New Orleans,,LIGHT,LA,7/27/2014 20:56 +Kannapolis,,LIGHT,NC,7/27/2014 21:30 +Belvidere,RED ORANGE,LIGHT,VT,7/27/2014 22:00 +Dewey Beach,BLUE,TRIANGLE,DE,7/27/2014 22:00 +Farmington,,LIGHT,MN,7/27/2014 22:00 +Milwaukie,,TRIANGLE,OR,7/27/2014 22:00 +Sparta,RED,FIREBALL,NJ,7/27/2014 22:00 +Beaverton,GREEN,LIGHT,OR,7/27/2014 23:45 +Redmond,,OTHER,WA,7/27/2014 23:45 +Las Vegas,,,NV,7/28/2014 0:45 +Lola,,LIGHT,KY,7/28/2014 1:45 +Niles,,DISK,IL,7/28/2014 4:30 +Shelton,,OTHER,WA,7/28/2014 8:15 +Mt. Shasta,,OVAL,CA,7/28/2014 14:30 +Makaha,,DISK,HI,7/28/2014 20:00 +Bloomington,,OVAL,IN,7/28/2014 20:45 +South Bend,RED,TRIANGLE,IN,7/28/2014 21:30 +Charlotte,RED GREEN,FORMATION,NC,7/28/2014 21:45 +New York City,BLUE,FLASH,NY,7/28/2014 21:45 +Johnston,,LIGHT,RI,7/28/2014 22:00 +New Orleans,,,LA,7/28/2014 22:00 +Frankfort,ORANGE,SPHERE,KY,7/28/2014 22:27 +Beaverton,,CIRCLE,OR,7/28/2014 22:30 +Ridge,,RECTANGLE,NY,7/28/2014 22:40 +Ocean City,,LIGHT,MD,7/28/2014 23:00 +Sandy Hook State Park,,CIRCLE,NJ,7/28/2014 23:30 +Swan Valley,,CIRCLE,ID,7/28/2014 23:55 +Grottoes,RED,CIRCLE,VA,7/29/2014 0:56 +Windsor,,FORMATION,VA,7/29/2014 1:30 +Lumberton,,LIGHT,NC,7/29/2014 2:00 +Charlotte,,CONE,NC,7/29/2014 4:00 +Seattle,,SPHERE,WA,7/29/2014 16:30 +Sherwood,YELLOW,CIRCLE,AR,7/29/2014 17:15 +Edgewood,,EGG,MD,7/29/2014 20:06 +Boca Raton,ORANGE,CIRCLE,FL,7/29/2014 20:30 +Boise,,CHEVRON,ID,7/29/2014 20:45 +Lemoore,RED,TRIANGLE,CA,7/29/2014 21:10 +Blacklick,RED,,OH,7/29/2014 21:30 +Wakefield,,CIRCLE,MA,7/29/2014 21:40 +Woodbridge,,FIREBALL,VA,7/29/2014 21:42 +Hillsboro,RED,OTHER,OR,7/29/2014 22:00 +Kitty Hawk,RED,LIGHT,NC,7/29/2014 22:00 +Chatham,RED,TRIANGLE,MA,7/29/2014 22:20 +Salina,RED GREEN,OVAL,UT,7/29/2014 22:35 +West Suffield,,DISK,CT,7/29/2014 23:00 +Manchester,,CIRCLE,NH,7/29/2014 23:50 +Houston,,OTHER,TX,7/30/2014 12:00 +Hulett,,,WY,7/30/2014 13:00 +North Charleston,,DISK,SC,7/30/2014 13:45 +Glen Ellyn,,OVAL,IL,7/30/2014 21:00 +Waterbury,ORANGE,LIGHT,CT,7/30/2014 21:15 +Worcester,,TRIANGLE,MA,7/30/2014 21:15 +Williamstown,,LIGHT,NJ,7/30/2014 22:00 +College Station,RED,,TX,7/30/2014 22:15 +Groton,,LIGHT,NH,7/30/2014 22:30 +Lancaster,,VARIOUS,CA,7/30/2014 22:30 +West Point,,FLASH,UT,7/30/2014 22:30 +South Daytona,RED,,FL,7/30/2014 23:15 +Kaneoeh,ORANGE,OTHER,HI,7/30/2014 23:27 +Quinault,,LIGHT,WA,7/30/2014 23:30 +Lafayette Hill,BLUE,FLASH,PA,7/30/2014 23:45 +Milwaukie,RED ORANGE,FLASH,OR,7/31/2014 1:30 +Federal Way,,LIGHT,WA,7/31/2014 2:45 +Milford,,CHEVRON,NH,7/31/2014 3:45 +Greenwich,BLUE,FIREBALL,CT,7/31/2014 5:25 +Tempe,,LIGHT,AZ,7/31/2014 18:40 +Sun Prairie,ORANGE,SPHERE,WI,7/31/2014 21:00 +Virginia Beach,,OTHER,VA,7/31/2014 21:00 +Skippack,ORANGE,LIGHT,PA,7/31/2014 21:08 +Saugerties,,TRIANGLE,NY,7/31/2014 21:30 +Virginia Beach,,FIREBALL,VA,7/31/2014 21:30 +Tavernier,RED,CIRCLE,FL,7/31/2014 21:35 +Newport News,,VARIOUS,VA,7/31/2014 21:55 +Coos Bay,,CIRCLE,OR,7/31/2014 22:00 +Coos Bay,YELLOW,CIRCLE,OR,7/31/2014 22:00 +Reedsport,RED ORANGE,CIRCLE,OR,7/31/2014 22:00 +Camden,,,DE,7/31/2014 22:30 +Coos Bay,,CIRCLE,OR,7/31/2014 22:30 +Selma-Coos Bay,ORANGE,OTHER,OR,7/31/2014 22:30 +Loveland,,,CO,7/31/2014 22:45 +Newport News,,CIRCLE,VA,7/31/2014 22:50 +Audubon,,,PA,7/31/2014 23:00 +Eugene,RED GREEN,RECTANGLE,OR,7/31/2014 23:00 +Ricardo,,OTHER,TX,7/31/2014 23:00 +Sutherlin,RED,LIGHT,OR,7/31/2014 23:00 +Murrieta,,,CA,8/1/2014 0:00 +Boise,,,ID,8/1/2014 0:56 +Portland,,CIRCLE,OR,8/1/2014 1:00 +Espanola,,CIRCLE,NM,8/1/2014 6:45 +Olathe,,OTHER,KS,8/1/2014 11:30 +North Charleston,,TRIANGLE,SC,8/1/2014 16:00 +Tujunga,,,CA,8/1/2014 16:45 +Franklin,,CIGAR,PA,8/1/2014 19:00 +Cave Creek,,LIGHT,AZ,8/1/2014 20:00 +Austin,RED,,TX,8/1/2014 20:55 +Pine Knoll Shores,ORANGE,,OR,8/1/2014 21:00 +Miami,,OTHER,FL,8/1/2014 21:30 +Tulsa,,TRIANGLE,OK,8/1/2014 21:36 +Lugoff,,CIRCLE,SC,8/1/2014 22:05 +Lowell,,LIGHT,MA,8/1/2014 22:15 +Orlando,RED ORANGE,FIREBALL,FL,8/1/2014 22:15 +Auburn,RED,CIRCLE,NY,8/1/2014 22:20 +Madison,,TRIANGLE,MS,8/1/2014 22:20 +Staten Island,ORANGE,FIREBALL,NY,8/1/2014 22:30 +Staten Island,ORANGE,FIREBALL,NY,8/1/2014 22:30 +Freeport,,LIGHT,NY,8/1/2014 23:00 +Imperial,,CIRCLE,PA,8/1/2014 23:00 +Louisville St Mathewes,RED,CIRCLE,KY,8/1/2014 23:00 +Fort Orange,,TRIANGLE,FL,8/1/2014 23:25 +Salina,,LIGHT,KS,8/1/2014 23:30 +Fairhaven,,LIGHT,MA,8/2/2014 0:10 +Eugene,ORANGE,OTHER,OR,8/2/2014 0:20 +Powers,,CIRCLE,OR,8/2/2014 1:00 +Miami Beach,ORANGE YELLOW,CIRCLE,FL,8/2/2014 3:00 +Lauderdale-by-the-Sea,,FIREBALL,FL,8/2/2014 5:00 +Fort Worth,BLUE,CIRCLE,TX,8/2/2014 5:58 +Waukegan,,OTHER,IL,8/2/2014 7:45 +Savannah,,VARIOUS,GA,8/2/2014 14:30 +Indio,,FIREBALL,CA,8/2/2014 18:00 +Spokane,RED,FIREBALL,WA,8/2/2014 18:05 +Spokane,,SPHERE,WA,8/2/2014 18:22 +Tyngsboro,,DIAMOND,MA,8/2/2014 20:00 +Woodridge,,CIRCLE,IL,8/2/2014 20:00 +Oakland Park,,LIGHT,FL,8/2/2014 20:37 +De Soto,ORANGE,FIREBALL,WI,8/2/2014 21:00 +St. Louis,YELLOW,LIGHT,MO,8/2/2014 21:20 +Von Ormy,,LIGHT,TX,8/2/2014 21:20 +Manzanita,ORANGE,CIRCLE,OR,8/2/2014 21:30 +Orlando,,EGG,FL,8/2/2014 21:40 +Fishkill,,FIREBALL,NY,8/2/2014 21:45 +Topeka,ORANGE,FIREBALL,KS,8/2/2014 21:45 +Wall,,CIRCLE,NJ,8/2/2014 21:45 +Pleasant Prairie,RED ORANGE,FIREBALL,WI,8/2/2014 21:50 +Arlington,BLUE,CIRCLE,TN,8/2/2014 22:00 +Greece,ORANGE YELLOW,FIREBALL,NY,8/2/2014 22:00 +Madison,,LIGHT,AL,8/2/2014 22:00 +Northglenn,,LIGHT,CO,8/2/2014 22:00 +Palm Springs,,LIGHT,CA,8/2/2014 22:00 +Skokie,BLUE,SPHERE,IL,8/2/2014 22:00 +Eva,RED ORANGE,FIREBALL,TN,8/2/2014 22:20 +Memphis,GREEN,FIREBALL,TN,8/2/2014 22:20 +Parkers Cross Road,,FIREBALL,TN,8/2/2014 22:20 +Tupelo,GREEN,FIREBALL,MS,8/2/2014 22:20 +Lake Worth,,FIREBALL,FL,8/2/2014 22:30 +Denver,ORANGE,OVAL,CO,8/2/2014 22:45 +Oklahoma City,,OTHER,OK,8/2/2014 22:45 +Arlington,,FIREBALL,WA,8/2/2014 23:00 +Pierre,,LIGHT,SD,8/2/2014 23:00 +Slidell,,DISK,LA,8/2/2014 23:00 +Flat Creek,,CYLINDER,TN,8/2/2014 23:07 +Oak Ridge,,CIRCLE,TN,8/2/2014 23:30 +Superior,RED,CIRCLE,CO,8/2/2014 23:34 +Livonia,RED,LIGHT,MI,8/2/2014 23:45 +Kennesaw,,,GA,8/3/2014 0:00 +Waupun,ORANGE BLUE,TRIANGLE,WI,8/3/2014 0:15 +Tribune,RED,TRIANGLE,KS,8/3/2014 2:00 +Everett,GREEN,DIAMOND,WA,8/3/2014 2:13 +Clackamas,,FLASH,OR,8/3/2014 2:30 +Kittery Point,,CIRCLE,ME,8/3/2014 3:00 +Dawsonville,,CIRCLE,GA,8/3/2014 11:21 +Salisbury,,VARIOUS,MD,8/3/2014 14:00 +Castle Rock,,CIRCLE,CO,8/3/2014 14:30 +Franklin,,OTHER,MA,8/3/2014 16:00 +Perry Hall,,TRIANGLE,MD,8/3/2014 20:00 +Cleburne,,LIGHT,TX,8/3/2014 20:15 +Los Banos,,,CA,8/3/2014 21:00 +Townsend,,FIREBALL,DE,8/3/2014 21:00 +Galliano,,LIGHT,LA,8/3/2014 21:15 +Senatobia,,LIGHT,MS,8/3/2014 21:15 +Waterford,,RECTANGLE,CT,8/3/2014 21:20 +Martinsburg,,FIREBALL,WV,8/3/2014 21:30 +Middleburg,,LIGHT,FL,8/3/2014 21:30 +Medina,RED ORANGE,CHEVRON,OH,8/3/2014 21:40 +Emporia,,LIGHT,KS,8/3/2014 21:45 +Hyannis,RED,FIREBALL,MA,8/3/2014 21:45 +Mineral Point,,LIGHT,WI,8/3/2014 22:00 +Omaha,,,NE,8/3/2014 22:00 +Sunset Beach,ORANGE,CIRCLE,NC,8/3/2014 22:30 +Edgewood,,LIGHT,MD,8/3/2014 23:00 +Wilson,ORANGE,LIGHT,PA,8/3/2014 23:00 +White Lake,,CIRCLE,MI,8/3/2014 23:30 +Cypress,,FIREBALL,TX,8/4/2014 0:00 +Rochester,,LIGHT,NY,8/4/2014 0:00 +Portland,RED ORANGE,CIRCLE,OR,8/4/2014 4:30 +Isle of palms,,OVAL,SC,8/4/2014 19:00 +Dallas,,TRIANGLE,GA,8/4/2014 21:00 +Seattle,ORANGE,LIGHT,WA,8/4/2014 21:05 +Spring Lake,,FIREBALL,NC,8/4/2014 21:58 +Gastonia,GREEN BLUE,FIREBALL,NC,8/4/2014 22:00 +Chapel Hill,GREEN BLUE,FIREBALL,NC,8/4/2014 22:01 +Sonoma,RED,LIGHT,CA,8/4/2014 22:30 +Chico,ORANGE,FIREBALL,CA,8/4/2014 23:00 +Port Neches,,LIGHT,TX,8/5/2014 0:00 +Parma,RED,LIGHT,OH,8/5/2014 0:13 +Tustin,,TRIANGLE,CA,8/5/2014 0:30 +Wasilla,,LIGHT,AK,8/5/2014 0:36 +Fort Pierce,,CIRCLE,FL,8/5/2014 4:00 +Port Saint Lucie,,,FL,8/5/2014 4:00 +Wildwood,ORANGE,FIREBALL,FL,8/5/2014 4:00 +Windermere,RED,LIGHT,FL,8/5/2014 4:00 +Lake Wales,ORANGE,FIREBALL,FL,8/5/2014 4:03 +Silverdale,,LIGHT,WA,8/5/2014 4:30 +Aiea,,LIGHT,HI,8/5/2014 20:35 +Greenfield,,CIRCLE,WI,8/5/2014 20:46 +Mesa,,FORMATION,AZ,8/5/2014 20:50 +Los Angeles,,FIREBALL,CA,8/5/2014 21:13 +Cleveland,,CIRCLE,TN,8/5/2014 21:25 +Merrimack,RED GREEN,CROSS,NH,8/5/2014 22:29 +Amarillo,,TRIANGLE,TX,8/5/2014 23:00 +Encino,,FIREBALL,CA,8/6/2014 1:20 +Fontana,RED,OVAL,CA,8/6/2014 1:32 +Tukwilla,,SPHERE,WA,8/6/2014 2:00 +Wichita,,,KS,8/6/2014 4:30 +Rockport,BLUE,CIGAR,MA,8/6/2014 7:15 +Langley AFB,,CHEVRON,VA,8/6/2014 14:00 +Waianae,,LIGHT,HI,8/6/2014 19:30 +Colorado Springs,,SPHERE,CO,8/6/2014 20:40 +Dummerston,,SPHERE,VT,8/6/2014 21:15 +Charlotte,BLUE,LIGHT,NC,8/6/2014 21:30 +Cape Canaveral,RED GREEN,,FL,8/6/2014 22:00 +Orlando,ORANGE,LIGHT,FL,8/6/2014 22:00 +Allen,BLUE,RECTANGLE,TX,8/6/2014 22:30 +Ellendale,,TRIANGLE,DE,8/6/2014 23:05 +Madison,,CIRCLE,WI,8/6/2014 23:10 +Grand Blanc,RED ORANGE,,MI,8/7/2014 0:01 +Franklin,YELLOW,,ME,8/7/2014 3:00 +Kenosha,,TRIANGLE,WI,8/7/2014 5:15 +Perry,,FIREBALL,OH,8/7/2014 5:20 +Ketchikan,,OVAL,AK,8/7/2014 17:30 +Allentown,RED,FIREBALL,PA,8/7/2014 20:45 +Deal,,LIGHT,NJ,8/7/2014 21:45 +Shreveport,,LIGHT,LA,8/7/2014 21:45 +Wauwatosa,,LIGHT,WI,8/7/2014 21:45 +Amery,,LIGHT,WI,8/7/2014 22:00 +Elizabethtown,RED,DIAMOND,KY,8/7/2014 22:20 +Oregon City,,DISK,OR,8/7/2014 23:30 +Surfside Beach,ORANGE,FIREBALL,SC,8/7/2014 23:30 +Oregon City,GREEN BLUE,OVAL,OR,8/7/2014 23:45 +Couderay,,CIGAR,WI,8/8/2014 0:10 +Safety Harbor,,CIRCLE,FL,8/8/2014 0:45 +North Liberty,,CIRCLE,IA,8/8/2014 3:30 +Charleston,,RECTANGLE,SC,8/8/2014 11:45 +Tampa,,DISK,FL,8/8/2014 12:00 +Salt Lake City,RED,CIRCLE,UT,8/8/2014 19:30 +Blue Eye,BLUE,LIGHT,MO,8/8/2014 20:00 +Tulsa,,CIRCLE,OK,8/8/2014 20:00 +Petersburg,,FIREBALL,VA,8/8/2014 20:37 +Eldridge,ORANGE,CIRCLE,MO,8/8/2014 21:00 +San diego,,LIGHT,CA,8/8/2014 21:00 +Scottsdale,ORANGE,FIREBALL,AZ,8/8/2014 21:00 +Monroe Township,ORANGE,FIREBALL,NJ,8/8/2014 21:15 +DeBary,,CIRCLE,FL,8/8/2014 21:30 +Pittsburgh,RED,LIGHT,PA,8/8/2014 21:30 +Kaukauna,,FIREBALL,WI,8/8/2014 21:40 +Kaukauna,,FIREBALL,WI,8/8/2014 21:40 +Gardners,,LIGHT,PA,8/8/2014 21:45 +Dunmore,,SPHERE,PA,8/8/2014 22:00 +Forest Grove,,LIGHT,OR,8/8/2014 22:00 +Custar,,OVAL,OH,8/8/2014 22:23 +Dennis Port,,CIRCLE,MA,8/8/2014 23:16 +Fresno,,TRIANGLE,CA,8/8/2014 23:28 +Lockport,RED,CIRCLE,IL,8/8/2014 23:30 +Woolwich Twp,RED,DISK,NJ,8/9/2014 0:00 +Metairie,,OTHER,LA,8/9/2014 0:30 +Breaux Bridge,RED,LIGHT,LA,8/9/2014 2:00 +Chicago,ORANGE,VARIOUS,IL,8/9/2014 2:30 +Allen,,LIGHT,TX,8/9/2014 4:00 +Banks,,CIRCLE,OR,8/9/2014 4:04 +Tampa,,DISK,FL,8/9/2014 12:00 +Vancouver,,FORMATION,WA,8/9/2014 19:51 +Miles City,,,MT,8/9/2014 20:15 +Mount Vernon,,LIGHT,OH,8/9/2014 20:20 +Douglassville,,LIGHT,PA,8/9/2014 21:00 +Bristol,RED,CIRCLE,PA,8/9/2014 21:30 +Easton,,TRIANGLE,PA,8/9/2014 21:45 +Clackamas,,OVAL,OR,8/9/2014 22:00 +Holtsville,ORANGE,CIRCLE,NY,8/9/2014 22:00 +Traverse City,RED,OTHER,MI,8/9/2014 22:15 +Uniontown,ORANGE,OVAL,OH,8/9/2014 22:15 +Wescosville,,FIREBALL,PA,8/9/2014 22:15 +New Stanton,ORANGE,FORMATION,PA,8/9/2014 22:23 +South Baldwin,ORANGE,SPHERE,PA,8/9/2014 22:23 +Monaca,RED,LIGHT,PA,8/9/2014 22:30 +North Brookfield,ORANGE,LIGHT,MA,8/9/2014 22:30 +Cape May,RED,LIGHT,NJ,8/9/2014 22:45 +Front Royal,,LIGHT,VA,8/9/2014 23:00 +Hagerstown,,FIREBALL,MD,8/9/2014 23:00 +Dunnsville,,FIREBALL,VA,8/9/2014 23:15 +Dunnsville,ORANGE,FIREBALL,VA,8/9/2014 23:15 +Dunnsville,ORANGE,FIREBALL,VA,8/9/2014 23:15 +Fair Oaks,RED BLUE,SPHERE,PA,8/9/2014 23:20 +Ocean City,ORANGE,FIREBALL,NJ,8/9/2014 23:30 +San Angelo,,LIGHT,TX,8/9/2014 23:30 +Clearwater,,DISK,FL,8/10/2014 3:00 +Edgerton,RED,DIAMOND,WI,8/10/2014 10:40 +Sea-Tac,,EGG,WA,8/10/2014 15:50 +Orange,ORANGE,CIRCLE,CA,8/10/2014 19:00 +Phoenix,,LIGHT,AZ,8/10/2014 19:30 +Hatfield,RED,RECTANGLE,PA,8/10/2014 20:15 +Boca Raton,RED GREEN,CIRCLE,FL,8/10/2014 20:27 +Vandenberg Village,RED,CIRCLE,CA,8/10/2014 20:30 +Harrisonville,ORANGE,FIREBALL,MO,8/10/2014 21:00 +Forest Hills,ORANGE,FORMATION,TN,8/10/2014 21:30 +New York City,,DISK,NY,8/10/2014 22:00 +Red Lion,RED,FIREBALL,PA,8/10/2014 22:00 +Tampa,RED GREEN,CIRCLE,FL,8/10/2014 22:00 +Youngstown,,,NY,8/10/2014 22:00 +Enfield,,LIGHT,CT,8/10/2014 23:00 +Fountain Hills,,OTHER,AZ,8/10/2014 23:00 +Katy,,FIREBALL,TX,8/10/2014 23:00 +Allentown,,DISK,PA,8/11/2014 0:15 +Highlands Ranch,,,CO,8/11/2014 0:30 +Astoria,,LIGHT,OR,8/11/2014 0:39 +Tonawanda,BLUE,VARIOUS,NY,8/11/2014 1:00 +Emporia,,DISK,KS,8/11/2014 9:19 +Evanston,,CONE,WY,8/11/2014 19:45 +Levittown,,CIRCLE,PA,8/11/2014 20:40 +Cordova,,FLASH,AL,8/11/2014 21:00 +Pawleys Island,,OTHER,SC,8/11/2014 21:00 +Boston,,LIGHT,MA,8/11/2014 21:20 +Roseville,,RECTANGLE,CA,8/11/2014 22:03 +Palmdale,,CIRCLE,CA,8/11/2014 22:30 +Norcross,,FIREBALL,GA,8/11/2014 22:45 +Carolina Beach,,CIRCLE,NC,8/11/2014 23:00 +Henderson,,OTHER,NV,8/11/2014 23:00 +Redmond,RED,LIGHT,OR,8/11/2014 23:00 +New Hampton,,LIGHT,NH,8/11/2014 23:15 +Eastvale,,CIRCLE,CA,8/12/2014 3:00 +Wilkes-Barre,BLUE,LIGHT,PA,8/12/2014 4:30 +Sioux Falls,,TEARDROP,SD,8/12/2014 13:30 +Moore,,TRIANGLE,OK,8/12/2014 19:00 +Milton Freewater,,TRIANGLE,OR,8/12/2014 21:00 +Pekin,RED,DIAMOND,IL,8/12/2014 21:30 +Dubois,,LIGHT,WY,8/12/2014 22:00 +Dubois,,OTHER,WY,8/12/2014 22:15 +Donnelly,RED,FORMATION,ID,8/12/2014 22:30 +Clarksville,,,TN,8/12/2014 23:30 +McKinney,RED GREEN,RECTANGLE,TX,8/13/2014 2:05 +Santa Barbara,,VARIOUS,CA,8/13/2014 6:15 +Cypress,,TRIANGLE,TX,8/13/2014 8:45 +North Highlands,,CIGAR,CA,8/13/2014 9:30 +Fort Fisher,ORANGE,CIRCLE,NC,8/13/2014 10:00 +Lexington,,LIGHT,MI,8/13/2014 16:00 +South Chicago Height,,,IL,8/13/2014 19:28 +Wailua,ORANGE,LIGHT,HI,8/13/2014 20:42 +Wilmington,,FIREBALL,DE,8/13/2014 20:45 +Clifton Park,ORANGE YELLOW,FIREBALL,NY,8/13/2014 20:55 +Clifton Park,ORANGE,OTHER,NY,8/13/2014 21:10 +Bradenton,ORANGE,FIREBALL,FL,8/13/2014 21:35 +Sacramento,,OTHER,CA,8/13/2014 21:40 +Harpers Ferry,ORANGE,CIRCLE,WV,8/13/2014 21:45 +Comfort,,LIGHT,TX,8/13/2014 22:00 +Valdosta,,LIGHT,GA,8/13/2014 22:00 +Las Vegas,,FLASH,NV,8/13/2014 22:30 +Martinsville,,TRIANGLE,VA,8/13/2014 23:00 +North Fort Myers,,LIGHT,FL,8/14/2014 4:45 +Pearland,,CONE,TX,8/14/2014 7:30 +New Bern,,VARIOUS,NC,8/14/2014 7:52 +Newark,,CIRCLE,NJ,8/14/2014 12:00 +Grand Rapids,,,MI,8/14/2014 20:00 +Oceanside,,RECTANGLE,CA,8/14/2014 20:27 +Bernardston,,,MA,8/14/2014 20:30 +Washington Township,,OTHER,NJ,8/14/2014 20:30 +Catawba,,VARIOUS,NC,8/14/2014 20:48 +Kill Devil Hills,RED,,NC,8/14/2014 20:50 +Frisco,,FIREBALL,NC,8/14/2014 21:00 +Swan Quarters,,OVAL,NC,8/14/2014 21:00 +Sarcoxie,,LIGHT,MO,8/14/2014 21:25 +San Gabriel Valley,,CIRCLE,CA,8/14/2014 21:30 +Sunset Beach,ORANGE,CIRCLE,NC,8/14/2014 21:45 +Tulsa,GREEN,TRIANGLE,OK,8/14/2014 21:48 +Northborough,,,MA,8/14/2014 21:50 +Camdenton,RED,,MO,8/14/2014 22:00 +Fenwick Island,RED,CIRCLE,DE,8/14/2014 22:00 +Harrington,RED,LIGHT,WA,8/14/2014 22:00 +Morongo Valley,,LIGHT,CA,8/14/2014 22:30 +Las Vegas,,SPHERE,NV,8/14/2014 22:50 +Provincetown,,CIRCLE,MA,8/14/2014 23:40 +Myrtle Beach,,CIRCLE,SC,8/15/2014 0:00 +Glasgow,,DISK,KY,8/15/2014 2:06 +Lake Port,,OTHER,CA,8/15/2014 5:00 +Orlando,,LIGHT,FL,8/15/2014 6:00 +West Valley,BLUE,,UT,8/15/2014 6:00 +Austin,,CIRCLE,TX,8/15/2014 6:45 +Littleton,,SPHERE,CO,8/15/2014 9:05 +Walpole,,RECTANGLE,MA,8/15/2014 16:00 +Walton,,,KY,8/15/2014 16:05 +Austin,RED,CIRCLE,TX,8/15/2014 18:45 +Spokane,RED GREEN,SPHERE,WA,8/15/2014 20:30 +Nags Head,,FIREBALL,NC,8/15/2014 20:45 +New Orleans,ORANGE,FIREBALL,LA,8/15/2014 20:45 +Oakland,RED,CIRCLE,CA,8/15/2014 20:50 +Columbus,,CROSS,OH,8/15/2014 21:00 +Green Bay,,FIREBALL,WI,8/15/2014 21:00 +Westland,,CIRCLE,MI,8/15/2014 21:00 +Warden,,LIGHT,WA,8/15/2014 21:38 +Takoma Park,RED ORANGE,FIREBALL,MD,8/15/2014 21:40 +Harriman,,LIGHT,TN,8/15/2014 21:55 +Pass Christian,,FIREBALL,MS,8/15/2014 22:00 +Lumberton,YELLOW GREEN,FIREBALL,MS,8/15/2014 22:15 +Greeley,,TRIANGLE,CO,8/15/2014 22:45 +Warrensburg,,LIGHT,NY,8/15/2014 22:45 +Westbury,,DISK,NY,8/15/2014 22:50 +Weiser,,LIGHT,ID,8/15/2014 23:15 +Houston,YELLOW,CIRCLE,TX,8/15/2014 23:30 +Ocean City,,FIREBALL,NJ,8/16/2014 0:00 +Charleston,,TRIANGLE,SC,8/16/2014 0:10 +Rochester,ORANGE,FORMATION,NY,8/16/2014 0:10 +Miami,,CIRCLE,FL,8/16/2014 1:00 +Atlanta,RED,CONE,GA,8/16/2014 1:47 +Allentown,,TRIANGLE,PA,8/16/2014 2:00 +Hanover,,,CO,8/16/2014 2:00 +Wilmington,,CIRCLE,NC,8/16/2014 4:00 +Cheyenne,,TRIANGLE,WY,8/16/2014 17:05 +Shawnee,,SPHERE,KS,8/16/2014 18:45 +Dennis,,CIRCLE,MA,8/16/2014 19:00 +Houma,ORANGE,FIREBALL,LA,8/16/2014 19:40 +La Grange,,LIGHT,WI,8/16/2014 19:40 +Easton,,FIREBALL,PA,8/16/2014 20:00 +Greeley,ORANGE,CIRCLE,CO,8/16/2014 20:00 +Clinton,RED,CIRCLE,OH,8/16/2014 21:00 +Marina del Rey,RED,LIGHT,CA,8/16/2014 21:00 +Phoenixville,ORANGE,FIREBALL,PA,8/16/2014 21:00 +Rapid City,YELLOW,LIGHT,SD,8/16/2014 21:00 +Harrah,,,OK,8/16/2014 21:15 +Highlands Ranch,,VARIOUS,CO,8/16/2014 21:23 +Smithfield,,FIREBALL,PA,8/16/2014 21:26 +Rehoboth Beach,ORANGE,OVAL,DE,8/16/2014 21:35 +Hanover,RED,FIREBALL,PA,8/16/2014 21:45 +Rolla,,,MO,8/16/2014 21:45 +Salt Lake City,,TRIANGLE,UT,8/16/2014 21:45 +Des Moines,YELLOW,LIGHT,WA,8/16/2014 21:49 +Exeter,ORANGE,CIRCLE,PA,8/16/2014 22:00 +Seattle,,FORMATION,WA,8/16/2014 22:00 +Seattle,ORANGE,LIGHT,WA,8/16/2014 22:00 +Morgan,RED,LIGHT,MN,8/16/2014 22:30 +Holden,YELLOW,OVAL,MA,8/16/2014 22:45 +McDonald,ORANGE,LIGHT,OH,8/16/2014 22:45 +Newport,,RECTANGLE,VT,8/16/2014 22:58 +Boise,,LIGHT,ID,8/16/2014 23:00 +Sykesville,,LIGHT,MD,8/16/2014 23:00 +Luray,,LIGHT,KS,8/17/2014 0:00 +Memphis,,,TN,8/17/2014 0:30 +Morristown,,TRIANGLE,NJ,8/17/2014 1:00 +Boulder Creek,ORANGE,CIRCLE,CA,8/17/2014 4:00 +Kehei,RED,LIGHT,HI,8/17/2014 5:30 +Wahiawa,,LIGHT,HI,8/17/2014 5:52 +San Diego,,OTHER,CA,8/17/2014 7:30 +Johnston,,OVAL,RI,8/17/2014 10:21 +Omaha,,LIGHT,NE,8/17/2014 18:00 +Adams,,FIREBALL,NY,8/17/2014 20:00 +Phoenix,RED,FLASH,AZ,8/17/2014 20:00 +Colonia,,CIRCLE,NJ,8/17/2014 21:00 +Lexington,,LIGHT,KY,8/17/2014 21:00 +Manitowoc,,FIREBALL,WI,8/17/2014 21:00 +Clackamas,,TRIANGLE,OR,8/17/2014 21:10 +Borger,,LIGHT,TX,8/17/2014 21:15 +Rome,RED ORANGE,FIREBALL,NY,8/17/2014 21:20 +Brookfield,,LIGHT,WI,8/17/2014 21:30 +Bailey's Harbor,,LIGHT,WI,8/17/2014 21:58 +Reading,,,PA,8/17/2014 22:30 +Rodanthe,,FORMATION,NC,8/17/2014 22:30 +Sesser,,TRIANGLE,IL,8/17/2014 22:30 +Kearns,,LIGHT,UT,8/17/2014 22:57 +Bellingham,,LIGHT,WA,8/17/2014 23:00 +Astoria,ORANGE,FIREBALL,NY,8/17/2014 23:53 +Franklin,RED BLUE,TRIANGLE,NH,8/18/2014 1:29 +Grants Pass,ORANGE,FIREBALL,OR,8/18/2014 2:00 +Madison,,,CT,8/18/2014 4:15 +Madison,,,CT,8/18/2014 4:15 +Salem,RED,FORMATION,NH,8/18/2014 4:47 +Belcamp,,LIGHT,MD,8/18/2014 5:00 +Oakland Park,,TRIANGLE,FL,8/18/2014 10:00 +Beaverton,,OVAL,OR,8/18/2014 11:00 +Roswell,,OTHER,NM,8/18/2014 15:00 +La Porte,,OVAL,IN,8/18/2014 18:00 +Waialua,,LIGHT,HI,8/18/2014 20:25 +Duck,,CIRCLE,NC,8/18/2014 21:10 +Wenatchee,,CIRCLE,WA,8/18/2014 21:14 +Waterford,,OVAL,MI,8/18/2014 21:40 +Arvada,,OVAL,CO,8/18/2014 22:00 +Cleveland,,CIRCLE,OK,8/18/2014 22:00 +Effingham,,FIREBALL,SC,8/18/2014 22:00 +Junction City,,CIRCLE,GA,8/18/2014 22:05 +Spokane,,FIREBALL,WA,8/18/2014 22:10 +Bellingham,BLUE,DISK,WA,8/18/2014 22:14 +Lilly,ORANGE,OTHER,GA,8/18/2014 22:20 +Narragansett,,FIREBALL,RI,8/18/2014 22:30 +Glenpool,,LIGHT,OK,8/18/2014 22:46 +Portland,,OTHER,OR,8/18/2014 23:00 +Timmonsville,,FIREBALL,SC,8/18/2014 23:00 +Myrtle Beach,,FIREBALL,SC,8/18/2014 23:30 +Clairton,,LIGHT,PA,8/18/2014 23:58 +Round Rock,ORANGE,LIGHT,TX,8/19/2014 1:32 +Lannon,,LIGHT,WI,8/19/2014 1:45 +Laguna Beach,,LIGHT,CA,8/19/2014 2:00 +Owasso,,LIGHT,OK,8/19/2014 2:02 +Billings,GREEN,SPHERE,MT,8/19/2014 2:05 +Helena,,SPHERE,MT,8/19/2014 2:11 +Boston,BLUE,DISK,MA,8/19/2014 3:30 +Yellowstone National Park,YELLOW,TEARDROP,WY,8/19/2014 7:40 +Gresham,,OTHER,OR,8/19/2014 16:00 +Myrtle Beach,RED,LIGHT,SC,8/19/2014 20:20 +Skippack,,CIRCLE,PA,8/19/2014 20:45 +Buffalo,,FIREBALL,NY,8/19/2014 21:00 +Collegeville,,LIGHT,PA,8/19/2014 21:00 +Skippack,RED,LIGHT,PA,8/19/2014 21:00 +Stockton,,RECTANGLE,CA,8/19/2014 21:00 +Watertown,BLUE,LIGHT,SD,8/19/2014 21:00 +West Roxbury,,,MA,8/19/2014 21:00 +Baton Rouge,,LIGHT,LA,8/19/2014 21:20 +Vancouver,,SPHERE,WA,8/19/2014 22:00 +Tonawanda,,LIGHT,NY,8/19/2014 22:30 +North Myrtle Beach,,CIRCLE,SC,8/19/2014 23:00 +North Myrtle Beach,,SPHERE,SC,8/19/2014 23:12 +Bossier City,,,LA,8/19/2014 23:15 +Myrtle Beach,RED,LIGHT,SC,8/19/2014 23:20 +Cherry Grove,ORANGE,OVAL,SC,8/19/2014 23:25 +Lilly,,OTHER,GA,8/20/2014 0:30 +Canyonlands National Park,,,UT,8/20/2014 3:00 +San Diego,,LIGHT,CA,8/20/2014 3:00 +Jacksonville,,DISK,FL,8/20/2014 4:15 +Talbott,,DISK,TN,8/20/2014 14:20 +Lakewood,,OTHER,OH,8/20/2014 19:30 +Adams,ORANGE,CIRCLE,MA,8/20/2014 20:00 +Georgetown,RED,OVAL,ME,8/20/2014 20:15 +Corinth,,FIREBALL,NY,8/20/2014 20:30 +Hyannis,RED,VARIOUS,MA,8/20/2014 20:30 +Pearblossom,,LIGHT,CA,8/20/2014 21:30 +Pierre,,CIRCLE,SD,8/20/2014 21:30 +Sandusky,,OTHER,OH,8/20/2014 21:30 +Menard,RED,LIGHT,TX,8/20/2014 21:40 +Cleveland,,LIGHT,OH,8/20/2014 22:00 +Holden beach,,CIRCLE,NC,8/20/2014 22:00 +Willow Spring,,,NC,8/20/2014 22:00 +Duxbury,ORANGE,CIRCLE,MA,8/20/2014 22:05 +Ocean Isle,ORANGE,,NC,8/20/2014 22:30 +Ocean Isle Beach,,LIGHT,NC,8/20/2014 22:30 +Pendleton,,OTHER,NY,8/20/2014 22:30 +North Myrtle Beach,RED,VARIOUS,SC,8/20/2014 22:45 +Ochelata,,CIRCLE,OK,8/20/2014 22:45 +Myrtle Beach,ORANGE,DIAMOND,SC,8/20/2014 22:50 +Sunset Beach,,CIRCLE,NC,8/20/2014 22:50 +Detroit,,LIGHT,MI,8/20/2014 23:00 +Myrtle Beach,,RECTANGLE,SC,8/20/2014 23:15 +Coalinga,,LIGHT,CA,8/20/2014 23:30 +Traverse City,,FIREBALL,MI,8/20/2014 23:30 +Waterbury,RED GREEN,TRIANGLE,CT,8/21/2014 0:00 +Carlinville,RED,,IL,8/21/2014 0:21 +Falcon,,OTHER,CO,8/21/2014 0:30 +Mesa,BLUE,TRIANGLE,AZ,8/21/2014 3:50 +Meridian,,LIGHT,ID,8/21/2014 5:00 +Morton,,SPHERE,TX,8/21/2014 20:15 +Holden Beach,RED,CIRCLE,NC,8/21/2014 20:50 +Holden Beach,RED,CIRCLE,NC,8/21/2014 21:08 +Lehi,,,UT,8/21/2014 21:50 +St. Charles,ORANGE,TRIANGLE,MI,8/21/2014 22:10 +Davie,RED,FIREBALL,FL,8/21/2014 22:15 +Topeka,,DIAMOND,KS,8/21/2014 22:20 +Port Neches,GREEN BLUE,LIGHT,TX,8/21/2014 23:00 +Oceanside,,FIREBALL,CA,8/21/2014 23:20 +Greenville,GREEN,CIRCLE,MO,8/22/2014 1:54 +New York City,,FIREBALL,NY,8/22/2014 4:00 +Pasadena,,RECTANGLE,MD,8/22/2014 4:22 +Pinehurst,,LIGHT,NC,8/22/2014 5:00 +Tulsa,BLUE,TRIANGLE,OK,8/22/2014 7:50 +Colden,RED ORANGE,CIRCLE,NY,8/22/2014 9:50 +McDonough,,CIRCLE,GA,8/22/2014 10:00 +Palm City,,CIRCLE,FL,8/22/2014 12:30 +Chicago,,FLASH,IL,8/22/2014 20:00 +Lancaster,,CYLINDER,MA,8/22/2014 20:00 +San Marcos,,LIGHT,CA,8/22/2014 20:15 +Shirley,,CIRCLE,MA,8/22/2014 20:45 +Wantagh,,FIREBALL,NY,8/22/2014 20:45 +Memphis,,LIGHT,TN,8/22/2014 21:00 +Morrill,ORANGE,LIGHT,ME,8/22/2014 21:00 +South Nags Head,RED,CIRCLE,NC,8/22/2014 21:00 +Kissimmee,,,FL,8/22/2014 21:10 +Colorado Springs,BLUE,LIGHT,CO,8/22/2014 21:30 +Rhawnhurst,RED,TRIANGLE,PA,8/22/2014 22:00 +Taveriner,,FIREBALL,FL,8/22/2014 22:09 +Greenville,,TRIANGLE,OH,8/22/2014 22:15 +Nashville,,DIAMOND,TN,8/22/2014 22:30 +Edmonds,,LIGHT,WA,8/22/2014 23:00 +Miami,,LIGHT,FL,8/22/2014 23:00 +Pikeville,ORANGE,LIGHT,KY,8/22/2014 23:00 +Eugene,,,OR,8/23/2014 0:00 +Roswell,BLUE,CIRCLE,GA,8/23/2014 0:00 +Pueblo,,FIREBALL,CO,8/23/2014 1:00 +Barnsdall,,,OK,8/23/2014 3:30 +Georgie,ORANGE,TRIANGLE,VT,8/23/2014 9:10 +Emerald Isle,RED,CIRCLE,NC,8/23/2014 10:00 +Kentwood,RED ORANGE GREEN BLUE,FIREBALL,MI,8/23/2014 10:00 +Everett,,LIGHT,MA,8/23/2014 11:00 +Douglasville,,FLASH,GA,8/23/2014 11:30 +Lincoln Park,,FORMATION,MI,8/23/2014 14:30 +Sayreville,,CIRCLE,NJ,8/23/2014 16:00 +Lolo,,TRIANGLE,MT,8/23/2014 18:00 +Naples,ORANGE,FIREBALL,ID,8/23/2014 20:00 +Merced,,FORMATION,CA,8/23/2014 20:05 +Ringoes,,SPHERE,NJ,8/23/2014 20:20 +Kingston,YELLOW,SPHERE,NY,8/23/2014 20:30 +Oceanside,,LIGHT,NY,8/23/2014 20:30 +Columbus,,LIGHT,OH,8/23/2014 20:52 +Crown Point,ORANGE,LIGHT,IN,8/23/2014 21:00 +Ridgecrest,,FLASH,CA,8/23/2014 21:00 +Washington,ORANGE,OVAL,PA,8/23/2014 21:00 +New York City,ORANGE,CIRCLE,NY,8/23/2014 21:10 +Aurora,GREEN,FIREBALL,IL,8/23/2014 21:15 +Crete,BLUE,FIREBALL,IL,8/23/2014 21:15 +Kaneville,,,IL,8/23/2014 21:15 +Orland,,LIGHT,CA,8/23/2014 21:20 +South Kingston,,FIREBALL,RI,8/23/2014 21:25 +Tallmadge,ORANGE,LIGHT,OH,8/23/2014 21:25 +Sumter,,LIGHT,SC,8/23/2014 21:30 +Watkins Glen,,CIRCLE,NY,8/23/2014 21:30 +North Plains,,TRIANGLE,OR,8/23/2014 21:40 +Clarksburg,,LIGHT,WV,8/23/2014 21:43 +Morrisville,,LIGHT,PA,8/23/2014 21:50 +Auburn,,FIREBALL,NY,8/23/2014 22:00 +Cape Coral,,LIGHT,FL,8/23/2014 22:00 +Cherokee,,DIAMOND,NC,8/23/2014 22:00 +Kent,ORANGE,FIREBALL,WA,8/23/2014 22:00 +Milwaukee,,CIRCLE,WI,8/23/2014 22:00 +South Lyon,,FORMATION,MI,8/23/2014 22:15 +Brick,RED,CIRCLE,NJ,8/23/2014 22:30 +Monroe,,FLASH,GA,8/23/2014 22:30 +Coldwater,RED,SPHERE,MI,8/23/2014 22:43 +Enumclaw,,LIGHT,WA,8/23/2014 22:45 +St. Louis,,DIAMOND,MO,8/23/2014 22:45 +Atlanta,,LIGHT,GA,8/23/2014 23:00 +Cherokee,,LIGHT,AL,8/23/2014 23:00 +Lafayette,BLUE,LIGHT,IN,8/23/2014 23:00 +Newnan,,FIREBALL,GA,8/23/2014 23:00 +Piscataway,RED,OVAL,NJ,8/23/2014 23:00 +Currie,,,NC,8/23/2014 23:09 +Old AL Hwy. 35,BLUE,SPHERE,AL,8/23/2014 23:20 +Atlanta,GREEN,RECTANGLE,GA,8/23/2014 23:30 +Morrisonville,RED,LIGHT,NY,8/23/2014 23:30 +Ontario,RED,CIRCLE,CA,8/24/2014 0:05 +North Myrtle Beach,,SPHERE,SC,8/24/2014 0:25 +Chattanooga,ORANGE BLUE,OVAL,TN,8/24/2014 0:30 +Grand Rapids,RED,,MI,8/24/2014 0:48 +Madison,,FIREBALL,CT,8/24/2014 3:00 +St. Paul,RED,LIGHT,MN,8/24/2014 9:45 +Lincoln,,LIGHT,NE,8/24/2014 12:45 +Ledyard,,OVAL,CT,8/24/2014 15:00 +Sacramento,,LIGHT,CA,8/24/2014 19:00 +Newark,,LIGHT,NJ,8/24/2014 19:05 +Shelbyville,,CIRCLE,IL,8/24/2014 19:50 +Manassas,GREEN BLUE,TRIANGLE,VA,8/24/2014 20:00 +Sacramento,RED,FORMATION,CA,8/24/2014 20:00 +Redmond,RED,OTHER,WA,8/24/2014 20:15 +Antonito,,SPHERE,CO,8/24/2014 20:30 +Atwater,,CIGAR,CA,8/24/2014 20:30 +North Lauderdale,,CYLINDER,FL,8/24/2014 20:45 +Amherst,,FIREBALL,MA,8/24/2014 21:00 +Norfolk,BLUE,LIGHT,MA,8/24/2014 21:00 +New Braunfels,RED,LIGHT,TX,8/24/2014 21:05 +Atascocita,,CIRCLE,TX,8/24/2014 21:15 +Vancouver,,LIGHT,WA,8/24/2014 21:30 +Cannon Beach,ORANGE,CIRCLE,OR,8/24/2014 21:45 +Cherokee Pass,,LIGHT,MO,8/24/2014 22:00 +Tamarac,,CIRCLE,FL,8/24/2014 22:00 +Fort Pierce,,FIREBALL,FL,8/24/2014 22:30 +Dawsonville,,CIRCLE,GA,8/24/2014 23:00 +Kent,,CIGAR,WA,8/25/2014 1:28 +South Bethany Beach,,CIRCLE,DE,8/25/2014 3:30 +Hopewell,,LIGHT,VA,8/25/2014 3:36 +Dayton,,,MO,8/25/2014 5:00 +Marysville,YELLOW BLUE,OTHER,PA,8/25/2014 5:00 +Scranton,,CIRCLE,PA,8/25/2014 8:00 +Murray,RED,VARIOUS,UT,8/25/2014 10:00 +Gunnison,,OTHER,CO,8/25/2014 13:00 +Dunn,,LIGHT,NC,8/25/2014 16:45 +Tempe,,,AZ,8/25/2014 20:00 +Santa Barbara,,LIGHT,CA,8/25/2014 20:20 +Central Islip,,LIGHT,NY,8/25/2014 20:30 +Massillon,,FIREBALL,OH,8/25/2014 20:35 +Lake Forest,ORANGE,LIGHT,CA,8/25/2014 20:45 +Long Beach,ORANGE,CIRCLE,CA,8/25/2014 21:00 +Orlando,,LIGHT,FL,8/25/2014 21:00 +Staunton,,CIRCLE,VA,8/25/2014 21:00 +Peru,,LIGHT,NY,8/25/2014 21:15 +Corona,,LIGHT,CA,8/25/2014 21:30 +Crestline,,LIGHT,CA,8/25/2014 21:30 +Mission Viejo,,,CA,8/25/2014 21:30 +Portland,,LIGHT,ME,8/25/2014 21:30 +Oceanside,,VARIOUS,CA,8/25/2014 21:38 +Rutland,,CIRCLE,VT,8/25/2014 21:50 +Murrieta,,LIGHT,CA,8/25/2014 22:00 +Nags Head,,LIGHT,NC,8/25/2014 22:00 +Warwick,,FLASH,MA,8/25/2014 22:05 +Escondido,,SPHERE,CA,8/25/2014 22:09 +Aliso Viejo,ORANGE,FIREBALL,CA,8/25/2014 22:11 +Rochester,,TRIANGLE,NY,8/25/2014 22:15 +Carlsbad,ORANGE,DISK,CA,8/25/2014 22:20 +San Marcos,YELLOW,LIGHT,CA,8/25/2014 22:28 +Brookfield,,LIGHT,WI,8/25/2014 22:30 +Tarlton,,TRIANGLE,OH,8/25/2014 22:30 +Charleston,,CIRCLE,WV,8/26/2014 0:00 +Lewistown,,TRIANGLE,PA,8/26/2014 0:15 +Savannah,,LIGHT,GA,8/26/2014 1:05 +Sarasota,,FORMATION,FL,8/26/2014 3:00 +Portland,,,OR,8/26/2014 3:30 +Lago Vista,,TRIANGLE,TX,8/26/2014 3:35 +Warwick,,CYLINDER,RI,8/26/2014 5:00 +Lake View area,,TRIANGLE,OR,8/26/2014 9:00 +Mesa,,DISK,AZ,8/26/2014 9:50 +Hickory,,FIREBALL,NC,8/26/2014 13:00 +Bristol,,LIGHT,TN,8/26/2014 20:25 +Deatsville,,LIGHT,AL,8/26/2014 20:30 +Westmoreland,ORANGE,LIGHT,NY,8/26/2014 20:30 +Colonia,,,NJ,8/26/2014 21:00 +Ventura,RED,LIGHT,CA,8/26/2014 21:30 +Barto,,CIRCLE,PA,8/26/2014 22:00 +Bettendorf,,TRIANGLE,IA,8/26/2014 22:00 +Joplin,,DISK,MO,8/26/2014 22:01 +Edina,,OTHER,MN,8/26/2014 22:30 +Salyersville,,LIGHT,KY,8/26/2014 23:00 +St. Louis,,TRIANGLE,MO,8/26/2014 23:30 +Bethany Beach,,FORMATION,MD,8/27/2014 1:00 +South Bethany Beach,,FORMATION,DE,8/27/2014 1:00 +South Bethany Beach,,FORMATION,DE,8/27/2014 1:20 +East Stroudsburg,,FLASH,PA,8/27/2014 5:00 +Winchester,,CIRCLE,VA,8/27/2014 5:10 +North Liberty,,DIAMOND,IA,8/27/2014 5:15 +Duck,,SPHERE,NC,8/27/2014 5:30 +Battle Mountain,,FLASH,NV,8/27/2014 10:00 +Woodland Hills,,CIGAR,CA,8/27/2014 16:00 +Menifee,,,CA,8/27/2014 16:30 +Taunton,GREEN,OVAL,MA,8/27/2014 20:00 +Red Hook,RED,FIREBALL,NY,8/27/2014 20:15 +Phoenix,BLUE,CIRCLE,AZ,8/27/2014 20:30 +Kenneth City,,FIREBALL,FL,8/27/2014 20:50 +Charleston,ORANGE,CIRCLE,SC,8/27/2014 21:27 +Colquitt,,CIGAR,GA,8/27/2014 21:45 +Kahuku,,LIGHT,HI,8/27/2014 21:52 +Hyannis,ORANGE,SPHERE,MA,8/27/2014 22:30 +Hyden,,,KY,8/27/2014 22:30 +Kenosha,RED,OVAL,WI,8/27/2014 22:30 +Sartell,,,MN,8/27/2014 22:45 +Clayton,RED BLUE,LIGHT,ID,8/27/2014 23:55 +Spanaway,,LIGHT,WA,8/28/2014 0:00 +Monroe,GREEN,SPHERE,NJ,8/28/2014 1:00 +Wesley Chapel,RED BLUE,OTHER,FL,8/28/2014 2:22 +Santa Ysabel,,OTHER,CA,8/28/2014 4:02 +New Holland,,,PA,8/28/2014 4:50 +Columbus,BLUE,FORMATION,OH,8/28/2014 5:00 +Forks Township,RED,CIRCLE,PA,8/28/2014 5:00 +Glen Burnie,,,MD,8/28/2014 5:00 +Lititz,,,PA,8/28/2014 5:00 +Merrimack,,LIGHT,NH,8/28/2014 5:00 +Riverhead,ORANGE,OVAL,NY,8/28/2014 5:00 +Sherwood,ORANGE,FIREBALL,MD,8/28/2014 5:05 +Linthicum,,FORMATION,MD,8/28/2014 5:10 +S. Bethany Beach,,,DE,8/28/2014 5:30 +Phoenixville,,CIRCLE,PA,8/28/2014 5:45 +Massapequa,,LIGHT,NY,8/28/2014 8:45 +Marlborough,,CIGAR,MA,8/28/2014 10:00 +Gulfport,GREEN,CIRCLE,MS,8/28/2014 18:45 +Opihikao,,LIGHT,HI,8/28/2014 19:00 +Salt Lake City,,LIGHT,UT,8/28/2014 19:00 +Cherry Hill,YELLOW,LIGHT,NJ,8/28/2014 19:15 +Seattle,,FORMATION,WA,8/28/2014 19:30 +Henryetta,,CIRCLE,OK,8/28/2014 19:45 +Owings Mills,,CYLINDER,MD,8/28/2014 19:45 +San Francisco,RED,RECTANGLE,CA,8/28/2014 19:45 +Houston,,TRIANGLE,TX,8/28/2014 19:55 +Rancho Cucamonga,,LIGHT,CA,8/28/2014 20:00 +Enders,BLUE,,NE,8/28/2014 20:30 +Newark,GREEN,,DE,8/28/2014 20:30 +Sayville,BLUE,FIREBALL,NY,8/28/2014 20:30 +Manassas,,CIGAR,VA,8/28/2014 21:00 +"Mount Rose Wilderness, Reno",,OVAL,NV,8/28/2014 21:00 +Pittsfield,,CIRCLE,MA,8/28/2014 21:35 +Salem,,LIGHT,NH,8/28/2014 21:36 +Boise,RED GREEN,LIGHT,ID,8/28/2014 22:00 +Fontana,RED BLUE,CIGAR,CA,8/28/2014 22:00 +Seattle,YELLOW,CIRCLE,WA,8/28/2014 22:00 +Merrick,ORANGE,LIGHT,NY,8/28/2014 22:03 +Hyden,,RECTANGLE,KY,8/28/2014 22:20 +Big Pine,,FLASH,CA,8/28/2014 22:28 +West Hills,,TEARDROP,CA,8/28/2014 22:28 +Folsom,ORANGE BLUE,TRIANGLE,CA,8/28/2014 22:30 +Lockport,,CIRCLE,NY,8/28/2014 22:30 +Morgantown,,DISK,PA,8/28/2014 23:15 +East Northport,,FIREBALL,NY,8/28/2014 23:30 +Weirs Beach,RED,LIGHT,NH,8/29/2014 0:00 +Clarence Center,RED BLUE,,NY,8/29/2014 5:00 +Louisiana,,LIGHT,LA,8/29/2014 5:00 +Ocean Beach,,CYLINDER,CA,8/29/2014 8:12 +Syracuse,,CIRCLE,NY,8/29/2014 12:30 +Harleysville,RED GREEN,CIRCLE,PA,8/29/2014 20:12 +Shrewsbury,ORANGE,FORMATION,MA,8/29/2014 20:40 +Oklahoma City,,LIGHT,OK,8/29/2014 20:54 +Troy,RED,CROSS,MI,8/29/2014 21:15 +Apple Valley,ORANGE,OVAL,CA,8/29/2014 21:30 +Arlington Heights,,CIRCLE,IL,8/29/2014 21:30 +Blaine,ORANGE,CIRCLE,WA,8/29/2014 21:30 +Breaux Bridge,,LIGHT,LA,8/29/2014 21:30 +New York City,,CIRCLE,NY,8/29/2014 21:40 +Snellville,,RECTANGLE,GA,8/29/2014 21:50 +North Charleston,RED,CIRCLE,SC,8/29/2014 22:00 +Satsop,,LIGHT,WA,8/29/2014 22:15 +Port Charlotte,,FIREBALL,FL,8/29/2014 22:30 +Spanaway,GREEN,OVAL,WA,8/29/2014 22:30 +Liverpool,,TRIANGLE,NY,8/29/2014 23:00 +Sykesville,,SPHERE,MD,8/29/2014 23:20 +Melbourne Beach,,CIRCLE,FL,8/29/2014 23:30 +Syracuse,ORANGE,DIAMOND,NY,8/29/2014 23:50 +Des Moines,,CIRCLE,IA,8/29/2014 23:52 +San Francisco,,RECTANGLE,CA,8/30/2014 4:15 +Lee's Summit,,CIRCLE,MO,8/30/2014 5:30 +El Cajon,,DIAMOND,CA,8/30/2014 8:20 +Londonderry,,CIRCLE,NH,8/30/2014 11:00 +Houma,YELLOW,CIRCLE,LA,8/30/2014 17:00 +Orlando,,DISK,FL,8/30/2014 19:45 +West Chester,,FORMATION,OH,8/30/2014 20:00 +Belvidere,ORANGE,,IL,8/30/2014 20:20 +Mukwonago,,FIREBALL,WI,8/30/2014 20:20 +Mukwonago,,FIREBALL,WI,8/30/2014 20:20 +Salisbury,,TRIANGLE,MD,8/30/2014 20:48 +San Diego,,LIGHT,CA,8/30/2014 21:00 +Dayton,,FORMATION,OH,8/30/2014 21:05 +Penn Hills,,CIRCLE,PA,8/30/2014 21:15 +Fallbrook,ORANGE,FIREBALL,CA,8/30/2014 21:20 +Virginia Beach,,LIGHT,VA,8/30/2014 21:33 +North Tonawanda,,OTHER,NY,8/30/2014 21:40 +Eugene,,VARIOUS,OR,8/30/2014 22:00 +Sioux Falls,ORANGE,CIRCLE,SD,8/30/2014 22:00 +Charleston,GREEN,SPHERE,SC,8/30/2014 22:09 +Eustace,,LIGHT,TX,8/30/2014 23:00 +Racine,,DISK,WI,8/30/2014 23:23 +Cumberland,,CIRCLE,MD,8/30/2014 23:55 +Mankato,RED,LIGHT,MN,8/31/2014 0:15 +Saint Paul,GREEN,LIGHT,ME,8/31/2014 1:20 +Panama City,,CIGAR,FL,8/31/2014 1:42 +Palmer,,LIGHT,AK,8/31/2014 2:00 +Manteca,,SPHERE,CA,8/31/2014 2:20 +Glenpool,ORANGE,FORMATION,OK,8/31/2014 6:10 +Stayton,,FIREBALL,OR,8/31/2014 8:55 +Demands,ORANGE,LIGHT,FL,8/31/2014 9:35 +Bellingham,,LIGHT,WA,8/31/2014 12:30 +San Tan Valley,,LIGHT,AZ,8/31/2014 18:25 +St. Louis Park,,DISK,MN,8/31/2014 19:00 +Cullowhee,,,NC,8/31/2014 20:30 +Bettendorf,RED,CIRCLE,IA,8/31/2014 20:50 +Pompton Lakes,RED,SPHERE,NJ,8/31/2014 21:00 +Greenwood,,CYLINDER,IN,8/31/2014 21:10 +Racine,,CIRCLE,WI,8/31/2014 21:23 +Sabula,,CHEVRON,IA,8/31/2014 21:30 +Saline,,CIRCLE,MI,8/31/2014 21:30 +Hummelstown,,RECTANGLE,PA,8/31/2014 21:45 +Montrose,ORANGE,SPHERE,MI,8/31/2014 21:45 +Dayton,,SPHERE,OH,8/31/2014 21:50 +Brunswick,ORANGE,CYLINDER,OH,8/31/2014 22:00 +Dayton,,FIREBALL,OH,8/31/2014 22:00 +Elkhorn,,FIREBALL,WI,8/31/2014 22:15 +Scribner,RED,TEARDROP,NE,8/31/2014 22:30 +El Cajon,,TRIANGLE,CA,8/31/2014 22:35 +Eastport,RED,,MI,8/31/2014 23:15 +Topsail,,LIGHT,NC,8/31/2014 23:45 +Panama City Beach,,OTHER,FL,8/31/2014 23:50 +Missoula,,LIGHT,MT,9/1/2014 0:00 +Harrisburg,,TRIANGLE,PA,9/1/2014 3:33 +North Charleston,,,SC,9/1/2014 4:00 +Kihei,,LIGHT,HI,9/1/2014 4:30 +Silverton,,OTHER,CO,9/1/2014 5:00 +Rock Hill,,LIGHT,SC,9/1/2014 5:45 +Southwest desert,,TRIANGLE,AZ,9/1/2014 9:30 +Minersville,RED ORANGE GREEN BLUE,TRIANGLE,PA,9/1/2014 11:56 +Hobbs,,FORMATION,NM,9/1/2014 13:00 +Mountlake Terrace,,SPHERE,WA,9/1/2014 13:00 +Senoia,,SPHERE,GA,9/1/2014 13:30 +Syracuse,ORANGE,CIRCLE,NY,9/1/2014 16:05 +Parma,ORANGE,FIREBALL,OH,9/1/2014 20:00 +Roswell,ORANGE,CIRCLE,NM,9/1/2014 20:00 +Concord,,VARIOUS,VT,9/1/2014 20:25 +Albuquerque,,LIGHT,NM,9/1/2014 20:30 +Revere,,LIGHT,MA,9/1/2014 20:30 +Galloway,,LIGHT,NJ,9/1/2014 20:35 +Columbia,,LIGHT,MD,9/1/2014 21:15 +South Londonderry,GREEN,VARIOUS,VT,9/1/2014 21:30 +Rossmoor,,SPHERE,NJ,9/1/2014 21:33 +Gold Hill,ORANGE,LIGHT,NC,9/1/2014 22:00 +Hudson,,,WI,9/1/2014 22:00 +Milford,ORANGE,CIRCLE,DE,9/1/2014 22:19 +Nampa,,,ID,9/1/2014 23:30 +Allentown,,LIGHT,PA,9/2/2014 1:47 +Wildwood,RED GREEN,,FL,9/2/2014 5:00 +Trevose,BLUE,TRIANGLE,PA,9/2/2014 5:50 +Monroe,,TRIANGLE,WA,9/2/2014 10:15 +Bowie,,LIGHT,MD,9/2/2014 12:00 +Fort Worth,,OTHER,TX,9/2/2014 16:05 +Albuquerque,,CIRCLE,NM,9/2/2014 19:00 +Newton,,TEARDROP,KS,9/2/2014 21:00 +Akron,,CROSS,OH,9/2/2014 21:02 +Aurora,,,MN,9/2/2014 21:15 +Logan,,DIAMOND,OH,9/2/2014 22:30 +Spearfish,ORANGE,FIREBALL,SD,9/2/2014 22:30 +Fort Collins,,TEARDROP,CO,9/2/2014 22:35 +Gilbert,,OTHER,AZ,9/2/2014 23:00 +Rapid City,,FORMATION,SD,9/2/2014 23:00 +Minot,,CIRCLE,UT,9/3/2014 0:00 +Manchester,,LIGHT,CT,9/3/2014 2:30 +Brentwood,,TRIANGLE,NY,9/3/2014 3:57 +Pleasure Island,ORANGE,SPHERE,NC,9/3/2014 5:00 +Woodhaven,,EGG,MI,9/3/2014 10:45 +Jonesborough,,CIGAR,TN,9/3/2014 12:00 +Johnson City,,,TN,9/3/2014 18:25 +Auburn,,CIRCLE,PA,9/3/2014 18:30 +Boca Raton,RED GREEN,CIRCLE,FL,9/3/2014 19:00 +Kingston,YELLOW,FLASH,NH,9/3/2014 19:00 +New York City,RED,FLASH,NY,9/3/2014 19:00 +Gastonia,,SPHERE,NC,9/3/2014 19:30 +Highland Park,,LIGHT,IL,9/3/2014 20:26 +Gooding,,SPHERE,ID,9/3/2014 21:00 +Johnsburg,RED BLUE,LIGHT,IL,9/3/2014 21:00 +Twin Falls,,LIGHT,ID,9/3/2014 21:00 +York,,LIGHT,PA,9/3/2014 21:00 +Bethel Park,ORANGE,VARIOUS,PA,9/3/2014 21:15 +Lake Geneva,,LIGHT,WI,9/3/2014 21:25 +Clarence,YELLOW,TRIANGLE,NY,9/3/2014 21:30 +Hanover,,LIGHT,PA,9/3/2014 21:34 +Buhl,,LIGHT,ID,9/3/2014 22:30 +Helena,,LIGHT,MT,9/3/2014 23:01 +Chesapeake Beach,RED BLUE,CIRCLE,MD,9/3/2014 23:30 +Rogersville,RED,OVAL,TN,9/4/2014 0:00 +Lawrence,,LIGHT,MA,9/4/2014 1:30 +Malta,,LIGHT,ID,9/4/2014 5:41 +Manahawkin,,CIRCLE,NJ,9/4/2014 8:30 +New Bedford,,LIGHT,MA,9/4/2014 9:47 +Woodbridge,,TRIANGLE,VA,9/4/2014 16:30 +Glendale,,CYLINDER,CA,9/4/2014 17:38 +Laconia,,CIGAR,NH,9/4/2014 19:02 +Langhorne,,OTHER,PA,9/4/2014 19:30 +Glen Ellyn,RED,CIRCLE,IL,9/4/2014 20:20 +Waynesburg,,FLASH,PA,9/4/2014 20:25 +Canal Winchester,,TRIANGLE,OH,9/4/2014 20:30 +Lawrence,ORANGE,LIGHT,MA,9/4/2014 20:30 +Ellicott City,,LIGHT,MD,9/4/2014 20:45 +Olympia,RED,LIGHT,WA,9/4/2014 21:10 +Iowa City,BLUE,LIGHT,IA,9/4/2014 21:11 +Marshfield,,LIGHT,MA,9/4/2014 21:15 +Seattle,,DIAMOND,WA,9/4/2014 21:15 +North Royalton,RED,TRIANGLE,OH,9/4/2014 21:30 +Deer Park,,LIGHT,WA,9/4/2014 22:00 +Glen St. Mary,,DISK,FL,9/4/2014 22:00 +Abingdon,,CIRCLE,VA,9/4/2014 22:05 +Lawrence,,LIGHT,MA,9/4/2014 22:15 +Melbourne,,OVAL,IA,9/4/2014 22:15 +Burleson,,LIGHT,TX,9/4/2014 22:30 +Elizabethtown,,CIRCLE,KY,9/4/2014 22:30 +Wyoming,RED,DISK,PA,9/4/2014 23:00 +Neligh,,CIRCLE,NE,9/4/2014 23:20 +Neligh,,CIRCLE,NE,9/4/2014 23:20 +Uhrichsville,,LIGHT,OH,9/5/2014 1:14 +Tucson,RED BLUE,,AZ,9/5/2014 2:40 +Orland park,RED,LIGHT,IL,9/5/2014 3:43 +Loughman,,LIGHT,FL,9/5/2014 5:30 diff --git a/data/vehicles_test.csv b/data/vehicles_test.csv new file mode 100644 index 0000000..fffa632 --- /dev/null +++ b/data/vehicles_test.csv @@ -0,0 +1,4 @@ +price,year,miles,doors,vtype +3000,2003,130000,4,truck +6000,2005,82500,4,car +12000,2010,60000,2,car diff --git a/data/vehicles_train.csv b/data/vehicles_train.csv new file mode 100644 index 0000000..c67ea4e --- /dev/null +++ b/data/vehicles_train.csv @@ -0,0 +1,15 @@ +price,year,miles,doors,vtype +22000,2012,13000,2,car +14000,2010,30000,2,car +13000,2010,73500,4,car +9500,2009,78000,4,car +9000,2007,47000,4,car +4000,2006,124000,2,car +3000,2004,177000,4,car +2000,2004,209000,4,truck +3000,2003,138000,2,car +1900,2003,160000,4,car +2500,2003,190000,2,truck +5000,2001,62000,4,car +1800,1999,163000,2,truck +1300,1997,138000,4,car diff --git a/data/yelp.csv b/data/yelp.csv new file mode 100644 index 0000000..c394c92 --- /dev/null +++ b/data/yelp.csv @@ -0,0 +1,44611 @@ +business_id,date,review_id,stars,text,type,user_id,cool,useful,funny +9yKzy9PApeiPPOUJEtnvkg,2011-01-26,fWKvX83p0-ka4JS3dc6E5A,5,"My wife took me here on my birthday for breakfast and it was excellent. The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning. It looked like the place fills up pretty quickly so the earlier you get here the better. + +Do yourself a favor and get their Bloody Mary. It was phenomenal and simply the best I've ever had. I'm pretty sure they only use ingredients from their garden and blend them fresh when you order it. It was amazing. + +While EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. It was the best ""toast"" I've ever had. + +Anyway, I can't wait to go back!",review,rLtl8ZkDX5vH5nAx9C3q5Q,2,5,0 +ZRJwVLyzEJq1VAihDhYiow,2011-07-27,IjZ33sJrzXqU-0X6U8NwyA,5,"I have no idea why some people give bad reviews about this place. It goes to show you, you can please everyone. They are probably griping about something that their own fault...there are many people like that. + +In any case, my friend and I arrived at about 5:50 PM this past Sunday. It was pretty crowded, more than I thought for a Sunday evening and thought we would have to wait forever to get a seat but they said we'll be seated when the girl comes back from seating someone else. We were seated at 5:52 and the waiter came and got our drink orders. Everyone was very pleasant from the host that seated us to the waiter to the server. The prices were very good as well. We placed our orders once we decided what we wanted at 6:02. We shared the baked spaghetti calzone and the small ""Here's The Beef"" pizza so we can both try them. The calzone was huge and we got the smallest one (personal) and got the small 11"" pizza. Both were awesome! My friend liked the pizza better and I liked the calzone better. The calzone does have a sweetish sauce but that's how I like my sauce! + +We had to box part of the pizza to take it home and we were out the door by 6:42. So, everything was great and not like these bad reviewers. That goes to show you that you have to try these things yourself because all these bad reviewers have some serious issues.",review,0a2KyEL0d3Yb1V6aivbIuQ,0,0,0 +6oRAC4uyJCsJl1X0WZpVSA,2012-06-14,IESLBzqUCLdSzSqm0eCSxQ,4,love the gyro plate. Rice is so good and I also dig their candy selection :),review,0hT2KtfLiobPvh6cDC8JQg,0,1,0 +_1QQZuf4zZOyFCvXc0o6Vg,2010-05-27,G-WvGaISbqqaMHlNnByodA,5,"Rosie, Dakota, and I LOVE Chaparral Dog Park!!! It's very convenient and surrounded by a lot of paths, a desert xeriscape, baseball fields, ballparks, and a lake with ducks. + +The Scottsdale Park and Rec Dept. does a wonderful job of keeping the park clean and shaded. You can find trash cans and poopy-pick up mitts located all over the park and paths. + +The fenced in area is huge to let the dogs run, play, and sniff!",review,uZetl9T0NcROGOyFfughhg,1,2,0 +6ozycU1RpktNG2-1BroVtw,2012-01-05,1uJFq2r5QfJG_6ExMRCaGw,5,"General Manager Scott Petello is a good egg!!! Not to go into detail, but let me assure you if you have any issues (albeit rare) speak with Scott and treat the guy with some respect as you state your case and I'd be surprised if you don't walk out totally satisfied as I just did. Like I always say..... ""Mistakes are inevitable, it's how we recover from them that is important""!!! + +Thanks to Scott and his awesome staff. You've got a customer for life!! .......... :^)",review,vYmM4KTsC8ZfQBg-j5MWkw,0,0,0 +-yxfBYGB6SEqszmxJxd97A,2007-12-13,m2CKSsepBCoRYWxiRUsxAg,4,"Quiessence is, simply put, beautiful. Full windows and earthy wooden walls give a feeling of warmth inside this restaurant perched in the middle of a farm. The restaurant seemed fairly full even on a Tuesday evening; we had secured reservations just a couple days before. + +My friend and I had sampled sandwiches at the Farm Kitchen earlier that week, and were impressed enough to want to eat at the restaurant. The crisp, fresh veggies didn't disappoint: we ordered the salad with orange and grapefruit slices and the crudites to start. Both were very good; I didn't even know how much I liked raw radishes and turnips until I tried them with their pesto and aioli sauces. + +For entrees, I ordered the lamb and my friend ordered the pork shoulder. Service started out very good, but trailed off quickly. Waiting for our food took a very long time (a couple seated after us received and finished their entrees before we received our's), and no one bothered to explain the situation until the maitre'd apologized almost 45 minutes later. Apparently the chef was unhappy with the sauce on my entree, so he started anew. This isn't really a problem, but they should have communicated this to us earlier. For our troubles, they comped me the glass of wine I ordered, but they forgot to bring out with my entree as I had requested. Also, they didn't offer us bread, but I will echo the lady who whispered this to us on her way out: ask for the bread. We received warm foccacia, apple walnut, and pomegranate slices of wonder with honey and butter. YUM. + +The entrees were both solid, but didn't quite live up to the innovation and freshness of the vegetables. My lamb's sauce was delicious, but the meat was tough. Maybe the vegetarian entrees are the way to go? But our dessert, the gingerbread pear cake, was yet another winner. + +If the entrees were tad more inspired, or the service weren't so spotty, this place definitely would have warranted five stars. If I return, I'd like to try the 75$ tasting menu. Our bill came out to about 100$ for two people, including tip, no drinks.",review,sqYN3lNgvPbPCTRsMFu27g,4,3,1 +zp713qNhx8d9KCJJnrw1xA,2010-02-12,riFQ3vxNpP4rWLk_CSri2A,5,"Drop what you're doing and drive here. After I ate here I had to go back the next day for more. The food is that good. + +This cute little green building may have gone competely unoticed if I hadn't been driving down Palm Rd to avoid construction. While waiting to turn onto 16th Street the ""Grand Opening"" sign caught my eye and my little yelping soul leaped for joy! A new place to try! + +It looked desolate from the outside but when I opened the door I was put at easy by the decor, smell and cleanliness inside. I ordered dinner for two, to go. The menu was awesome. I loved seeing all the variety: poblano peppers, mole, mahi mahi, mushrooms...something wrapped in banana leaves. It made it difficult to choose something. Here's what I've had so far: La Condesa Shrimp Burro and Baja Sur Dogfish Shark Taco. They are both were very delicious meals but the shrimp burro stole the show. So much flavor. I snagged some bites from my hubbys mole and mahi mahi burros- mmmm such a delight. The salsa bar is endless. I really stocked up. I was excited to try the strawberry salsa but it was too hot, in fact it all was, but I'm a big wimp when it comes to hot peppers. The horchata is handmade and delicious. They throw pecans and some fruit in there too which is a yummy bonus! + +As if the good food wasn't enough to win me over the art in this restaurant sho did! I'm a sucker for Mexican folk art and Frida Kahlo is my Oprah. There's a painting of her and Diego hanging over the salsa bar, it's amazing. All the paintings are great, love the artist.",review,wFweIWhv2fREZV_dYkz_1g,7,7,4 +hW0Ne_HTHEAgGF1rAdmR-g,2012-07-12,JL7GXJ9u4YMx7Rzs05NfiQ,4,"Luckily, I didn't have to travel far to make my connecting flight. And for this, I thank you, Phoenix. + +My brief layover was pleasant as the employees were kind and the flight was on time. Hopefully, next time I can grace Phoenix with my presence for a little while longer.",review,1ieuYcKS7zeAv_U15AB13A,0,1,0 +wNUea3IXZWD63bbOQaOH-g,2012-08-17,XtnfnYmnJYi71yIuGsXIUA,4,"Definitely come for Happy hour! Prices are amazing, sake bombers for $3...Great atmosphere and wait staff was incredibly nice and right on to all of our needs, didn't have to ask for a thing They were always spot on...Place gets crowded in the evening especially if you plan on sitting outside. I only wish there were one in Apollo Beach or Brandon!",review,Vh_DlizgGhSqQh4qfZ2h6A,0,0,0 +nMHhuYan8e3cONo3PornJA,2010-08-11,jJAIXA46pU1swYyRCdfXtQ,5,Nobuo shows his unique talents with everything on the menu. Carefully crafted features with much to drink. Start with the pork belly buns and a stout. Then go on until you can no longer.,review,sUNkXg8-KFtCMQDV6zRzQg,0,1,0 +AsSCv0q_BWqIe3mX2JqsOQ,2010-06-16,E11jzpKz9Kw5K7fuARWfRw,5,"The oldish man who owns the store is as sweet as can be. Perhaps sweeter than the cookies or ice cream. + +Here's the lowdown: Giant ice cream cookie sandwiches for super cheap. The flavor permutations are basically endless. I had snickerdoodle with cookies and cream ice cream. It was marvelous.",review,-OMlS6yWkYjVldNhC31wYg,1,3,1 +e9nN4XxjdHj4qtKCOPq_vg,2011-10-21,3rPt0LxF7rgmEUrznoH22w,5,Wonderful Vietnamese sandwich shoppe. Their baguettes are great hot out of the oven with butter or in one of their many sandwich choices. They have a modest selection of baked goods along with some of the best egg rolls around. Bring cash or your ATM card as no credit cards are accepted but they have an ATM on premises.,review,C1rHp3dmepNea7XiouwB6Q,1,1,0 +h53YuCiIDfEFSJCQpk8v1g,2010-01-11,cGnKNX3I9rthE0-TH24-qA,5,"They have a limited time thing going on right now with BBQ chicken pizza (not sure how long it's going to last) but let me just say it was amazing. Probably THE best BBQ Chicken pizza I have ever had. I have tried other things too, like the tomato basil soup, and many of their sandwiches ... very good, very fresh - every time. + +The 5 stars is for the pizza, but if I were to rate Jason's Deli over all they would get about a 4.",review,UPtysDF6cUDUxq2KY-6Dcg,1,2,0 +WGNIYMeXPyoWav1APUq7jA,2011-12-23,FvEEw1_OsrYdvwLV5Hrliw,4,"Good tattoo shop. Clean space, multiple artists to choose from and books of their work are available for you to look though and decide who's style most mirrors what you're looking for. I chose Jet to do a cover-up for me and he worked with me on the design and our ideas and communication flowed very well. He's a very personable guy, is friendly and keeps the conversation going while he's working on you, and he doesn't dick around (read: He starts to work and continues until the job is done). He's very professional and informative. Good customer service combines with talent at the craft.",review,Xm8HXE1JHqscXe5BKf0GFQ,1,2,0 +yc5AH9H71xJidA_J2mChLA,2010-05-20,pfUwBKYYmUXeiwrhDluQcw,4,"I'm 2 weeks new to Phoenix. I looked up Irish bars in town and found Rosie's. The decor and ambience was outstanding. I went there by myself on a Wednesday night in hopes of finding some friendly folks and that is exactly what happened. I ate dinner at the bar. Marcy was the bartender and she was very friendly and helpful and she introduced me to a whole bunch of people. For dinner I had a Rueben sandwich, which was pretty large and very good. I had a a small Rosie salad as my side and it did the job. I wish it was made with lettuce other than iceburg, but the bacon & eggs & other toppings helped a whole lot. I drank a nice, cold Smithwick's from the tap. Followed that up with 2 vodka tonics and my whole tab was under $25! + +The basketball game was on when I first got there. After the game, the jukebox was playing a fabulous mix of the best oldies. Around 10pm a live band played. I didn't catch much of their performance but I did notice that I really like the singer's voice and that's rare for me since I don't typically care for female vocalists. + + +All the people I spoke to were super nice and very welcoming. I am sure I will see a bunch (or all) of them again and I look forward to that!",review,JOG-4G4e8ae3lx_szHtR8g,1,1,0 +Vb9FPCEL6Ly24PNxLBaAFw,2011-03-20,HvqmdqWcerVWO3Gs6zbrOw,2,"Was it worth the 21$ for a salad and small pizza? Absolutely not! Bad service. Maybe the guys grandma died I don't know. I want to tell you what really made me mad about the experience. We order the small pizza and salad and the guys could have cared less and took our $ and we sat down. We were looking around and hmm, there's a sign saying ""x large pizza and large salad only 23$"". Wow that would have been nice if the guy told us that. I left hungry, mad and unsatisfied. + +To the owner: teach your employees the value of upselling and telling the specials. Something so small can affect a customers experience negatively. + +And your salads are severely overpriced + +Won't go back unless I'm desperate.",review,ylWOj2y7TV2e3yYeWhu2QA,0,2,0 +supigcPNO9IKo6olaTNV-g,2008-10-12,HXP_0Ul-FCmA4f-k9CqvaQ,3,"We went here on a Saturday afternoon and this place was incredibly empty. They had brunch specials going on, including $2 bloody mary's and mimosas, but we were more in the mood for lunch. Except for the bloody mary, I had to try one. It came out in a high-ball-sized glass. Boo! But it was really tasty. Yay! The hubby remembered a sign outside the restaurant a few weeks back that said they had Arrogant Bastard, and he got a 22 oz bottle for $4.75. Hey, that's not fair!! + +Next up: the wings. We were a bit hesitant to order them when the waitress informed us that they are ""seasoned"" but not sauced, so they can't be ordered hot. We did ask for them crispy though, and the waitress even asked the cooks to throw them back in for a few minutes when they came out not visibly crispy. These non-traditional wings were actually pretty damn good. The seasoning was a little spicy and salty with just a hint of sweet. If I were in the mood for the tang and kick of Frank's Hot Sauce, these wouldn't cut it, but otherwise they were good enough to go back again for. + +My entree was the Tilapia salad, and I was a bit disappointed. The fish was a bit dry and uninspired. And the greens underneath were overdressed and wilted. I ate the greens around the fish and picked out the almonds and Mandarin oranges, but I had to leave the mush hiding underneath the fish. + +It wasn't bad enough to say I wouldn't go back, but I won't be anxiously awaiting my next trip.",review,SBbftLzfYYKItOMFwOTIJg,3,4,2 +O510Re68mOy9dU490JTKCg,2010-05-03,j4SIzrIy0WrmW4yr4--Khg,5,"okay this is the best place EVER! i grew up shopping at the one in los gatos, and the one in Oakville. i was shock when i saw the best store in the world in Scottsdale and then not surprised at all. the have all the good stuff. from cheese down to wine. i can't tell you how happy i am that this store is here in Arizona. now if we could just get dean and deluca!",review,u1KWcbPMvXFEEYkZZ0Yktg,0,0,0 +b5cEoKR8iQliq-yT2_O0LQ,2009-03-06,v0cTd3PNpYCkTyGKSpOfGA,3,"I met a friend for lunch yesterday. + +Loved the water feature and patio walking in, if it had been warmer I would have definitely sat outside. + +Inside was a little dark and I guess it was all the bats around but it reminded me of ""Dusk Till Dawn"". + +We were seated, I hope was hoping for chips and salsa, I guess they don't serve them here? +We weren't even offered the ones on the menu, which I probably would have declined anyway because chips and salsa should be complimentary. + +Anyhow I ordered the Fresh Snapper Tacos (see pics) +There is a lot of fish there being smothered by all those peppers, but as for everything else what you see is what you get. + +For $15 I would have liked more than a TBSP of each, rice and beans, and a DEFINITELY more than a teaspoon of cheese and sour cream and maybe a lime or lemon. +There was more garnish on the plate than anything. Other than that it was good. + +My Friend ordered the Green Chile Stew and The Green Chile Mac and Cheese (see pics) She has been here before so knew what she liked. I tasted the macaroni and thought it was pretty good too. + +I'll give 3 stars until I go back and try out some other things.",review,UsULgP4bKA8RMzs8dQzcsA,5,6,4 +4JzzbSbK9wmlOBJZWYfuCg,2011-11-17,a0lCu-j2Sk_kHQsZi_eNgw,4,"They've gotten better and better for me in the time since this review was written. + +My last contact with them was a few days ago when I was having trouble redeeming some Groupons on their website. I called customer service and after waiting a few minutes I spoke with a rep who cheerfully booked four separate flights for me, patiently and manually entering my Groupon info for each one. + +I think the acquisition by Republic has helped them overall. After Republic took over the in-flight cookies started. It still tends to suck if you aren't Ascent club (like just about any budget-centric airline does), but once you get there it's a good value. When I've had to fly Southwest or USAir I've been disappointed in comparison.",review,nDBly08j5URmrHQ2JCbyiw,1,1,1 +8FNO4D3eozpIjj0k3q5Zbg,2008-10-08,MuqugTuR5DdIPcZ2IVP3aQ,3,"DVAP.... + +You have to go at least once in your life. It really is a neat place with alot of history. + +The service is great, it appears to be family run. + +The food is good. Better then Dennys but not as good as Mimi's. + +I had the all u can eat of beef ribs, lasagna, meat loaf, cat fish, chicken, mashed and diced potatoes, stuffing, rice, homemade apple pie, etc and salad bar. I know I am missing a bunch of stuff they had but you get the drift. + +They run specials on Prime rib and stuff so you might want to call to see what they are serving the night you go.",review,C6IOtaaYdLIT5fWd7ZYIuA,2,4,1 +tdcjXyFLMKAsvRhURNOkCg,2011-06-28,LmuKVFh03Uz318VKnUWrxA,5,This place shouldn't even be reviewed - because it is the kind of place I want to keep for myself... =),review,YN3ZLOdg8kpnfbVcIhuEZA,1,1,2 +eFA9dqXT5EA_TrMgbo03QQ,2011-07-13,CQYc8hgKxV4enApDkx0IhA,5,"first time my friend and I went there... it was delicious! The food, garlic knots our favorite and of course the wine! We will be going back ALOT!",review,6lg55RIP23VhjYEBXJ8Njw,0,0,0 +IJ0o6b8bJFAbG6MjGfBebQ,2010-09-05,Dx9sfFU6Zn0GYOckijom-g,1,"U can go there n check the car out. If u wanna buy 1 there? That's wrong move! If u even want a car service from there? U made a biggest mistake of ur life!! I had 1 time asked my girlfriend to take my car there for an oil service, guess what? They ripped my girlfriend off by lying how bad my car is now. If without fixing the problem. Might bring some serious accident. Then she did what they said. 4 brand new tires, timing belt, 4 new brake pads. U know why's the worst? All of those above I had just changed 2 months before!!! What a trashy dealer is that? People, better off go somewhere!",review,zRlQEDYd_HKp0VS3hnAffA,0,1,1 +JhupPnWfNlMJivnWB5druA,2011-05-22,cFtQnKzn2VDpBedy_TxlvA,5,"I love this place! I have been coming here for ages. +My favorites: Elsa's Chicken sandwich, any of their burgers, dragon chicken wings, china's little chicken sandwich, and the hot pepper chicken sandwich. The atmosphere is always fun and the art they display is very abstract but totally cool!",review,13xj6FSvYO0rZVRv5XZp4w,0,1,0 +wzP2yNpV5p04nh0injjymA,2010-05-26,ChBeixVZerfFkeO0McdlbA,4,"This place is great. A nice little ole' fashion homemade ice cream place that looks like it has been there for forever. The place has a real nice vibe to it. Sorta reminds me of Sugar Bowl only smaller, not as busy, and easier parking. + +The menu is ginormous. I couldn't decide what to get but that didn't matter because the other 3 people I went with chose for me. I wanted something basic but they insisted on sharing the 'patte' thing. It is a few scoops of ice cream over a brownie and topped with whip cream and caramel. While it was very good it just wasn't what I wanted. Next time I'm just going to get a scoop or 2 of the ice cream so I can really taste what the ice cream is all about. It is just too difficult to tell when it is topped with a bunch of stuff. The ice cream we got on the brownie though (butter brittle I think) was excellent. They have tons of different flavors and they all sound delish! + +Anyway I can't wait to go back if I am ever in the area again and need a sugar rush!",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2013-01-03,kZ4TzrVX6qeF0OvrVTGVEw,5,"I love love LOVE this place. My boss (who is into healthy eating) recommended this place. I went over with some highly skeptical friends and one dinner was enough to convert them into believers! The food here is so good! We had the Shrimp dumplings and the Onion tart as starters. We ordered the Shirataki noodles and street tacos as entrees. So also ordered the Kale-aid. All of the dishes were yummy. +I have gone back many times since then and have never been disappointed! I have gone after yoga to get some Kale salad or the chicken chopped salad. I always have to get the Kale aid. +Once, a guy at the next table, uprooted a whole plant by mistake (on the patio) and was highly embarrassed as was his date! Ever since, I have very careful not to throw my arms around as I can be quite clumsy sometimes! I do NOT want to be banned from my favorite place for my clumsiness! I don't think I can live without True Food!",review,fpItLlgimq0nRltWOkuJJw,0,0,0 +wct7rZKyZqZftzmAU-vhWQ,2008-03-21,B5h25WK28rJjx4KHm4gr7g,4,"Not that my review will mean much given the more in-depth reviewers but I will chime in nonetheless... + +I can really only review one dish, the #3 lunch special, Yellow Curry Chicken. I don't know what the authentic name for it is, Kang Karee something or other. It's so tasty that the first time I had it I knew I'd never branch out. Good lunch spot if you work around downtown. Not the quickest service all the time and can get busy during lunch, but always consistently good. Fairly dim inside, a good place to forget about the sun on a summer day.",review,RRTraCQw77EU4yZh0BBTag,2,4,1 +vz2zQQSjy-NnnKLZzjjoxA,2011-03-30,Y_ERKao0J5WsRiCtlKSNSA,4,"Came here for breakfast yesterday, it had been years since I have stopped in here and do not remember the entire place having waiter service. Place was empty at 9am on a Tuesday morning but the atmosphere was casual, this place is pretty much been here for as long as I can remember and I am one of the 2 people that are native to Phoenix. I always felt it was pricey but I think inflation has caught up since prices seemed normal when I went yesterday. I loved the chips and salsa, the hot sauce is fantastic with a great spicy kick. I went with the recommendation of the chile relleno which isn't my favorite but I like going with what waiters say so I gave it a try. It was great! Very flavorful and they just put it on the eggs so you can eat it together, the tortillas are fresh and home-made tasting, the hash browns and beans were good too. I read my newspaper and drank my soda while I enjoyed the whole place to myself....oh yeah, I read some Yelp reviews and bookmarked my next stop too, ha ha.",review,EP3cGJvYiuOwumerwADplg,1,1,1 +i213sY5rhkfCO8cD-FPr1A,2012-07-12,hre97jjSwon4bn1muHKOJg,4,"Always reliably good. Great beer selection as well as fabulous ""bitch fizz"" (ciders, etc.) and cocktails. Their pizza is outstanding AND they have a healthy menu. I generally steer clear of chains but this is an exception.",review,kpbhy1zPewGDmdNfNqQp-g,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2011-05-09,dtpJXC5p_sdWDLSobluJ3Q,5,"Disclaimer: Like many of you, I am a sucker for charming little homes that have been re-purposed into restaurants. I am certain that this colored my opinion of Cibo. + +That being said, I absolutely love having lunch here the other day. I unknowingly arrived at 2:05 (5 minutes after they close between lunch and dinner) but was served anyway. I had the salscicia sandwich and a side of fruit. The sandwich was excellent, served on perfectly crisp, chewy saltimbocca bread. The sausage was flavorful and was complimented by roasted red peppers and onions. All this was finished off with a great quality mozzarella cheese. Really, really delicious. + +I should also say that the atmosphere here was friendly and comfortable, though a bit small. This would be a great place to hang out if you lived nearby.",review,bCKjygWJZOQHCOzootbvow,0,2,0 +vvA3fbps4F9nGlAEYKk_sA,2012-05-04,S9OVpXat8k5YwWCn6FAgXg,1,Disgusting! Had a Groupon so my daughter and I tried it out. Very outdated and gaudy 80's style interior made me feel like I was in an episode of Sopranos. The food itself was pretty bad. We ordered pretty simple dishes but they just had no flavor at all! After trying it out I'm positive all the good reviews on here are employees or owners creating them.,review,8AMn6644NmBf96xGO3w6OA,0,1,0 +rxQ2PIjhAx6dgAqUalf99Q,2012-09-09,-v-shjbxoj7hpU62yn6vag,5,"Never having dealt with a Discount Tire in Phoenix before (only in Texas, and their service has been great all the time), I came in not knowing what kind of service to expect. I was pleasantly surprised! The store had a good amount of parking, and the store front was clean, open and had adequate seating around the perimeters. There were already 5-6 people sitting and waiting for their cars to be finished, and 2 people waiting infront of me to see a representative. All the guys working there were busy helping someone, yet were saying hello to us and reassuring they'd get to us very soon. I didn't wait an unneccesary amount of time and then was helped by Wally. He inspected my tires, recommended a plan of action gave me options, and we headed back into the store. After I made my decision to replace 2 of the tires, he checked their stock, and unfortunately they didn't have them there. BUT he called another store and had them picked up for the next morning, so I could just come back the next day to this same store and get those bad boys installed. Great! The prices were not as heafty (relief), and although there were a good amount of people the next day waiting for their cars to also be serviced, it took exactly the amount of time they'd told me (45 min). They apologized for the wait, but no need for that! The guy who helped me on the 2nd day (I'm sorry I forgot his name) was also very professional and great. I recommend this store and will be bringing my car here in the future most definitely. Thanks, guys! + +TIP: If you know you need to bring your car in, you can make an appointment with them online. They take walk-ins, but I believe it helps them manage their customers easier, and that in turn benefits you.",review,HLbhD2OyiMCUDRR4c1iXaw,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2010-03-28,2VTwjhOX3UUvgOGbxe4xfA,4,I went here again when I got back to Phoenix after being gone for six months. This is one of my mom's favorite places to eat and I can understand why. The ravioli and the miso soup are so delicious! The wine was ok and I would recommend one of their elixirs over an alcohol beverage. Still a pretty delicious place to go in Phoenix.,review,3iuZFgxUFKLxOplkDrFmyg,0,0,0 +3oLy0rlzRI_xiqfQHqC4_g,2011-03-27,Bk7F8IyBuOHVp6w3BAKVow,3,"There's two ways to look at this place. One is getting quality food at a good price. The other is getting a lot of food for a cheap price. I prefer the former but those who prefer the latter won't agree with my review. + +I thought the scramble I had was okay but nothing fantastic. I definitely didn't care for the biscuits. The food wasn't health conscious at all but if you're looking to fill up with calories and get a good-sized portion then this is your type of place. Also, I am not a fan of the diner-type ambiance... I would rather have something with more character but I'm glad I tried this place out.",review,1guJDgUfTiDdbgKqBhsZFQ,1,3,1 +o1GIYYZJjM6nM03fQs_uEQ,2011-11-30,ApKbwpYJdnhhgP4NbjQw2Q,1,"I've eaten here many times, but none as bad as last night. +Service was excellent, and highly attentive. +Food, absolutely horrible. + +My expectation was they would serve a steak on par with their seafood. After all, they were charging 39 bucks for a ribeye. +What I was hoping for was a 1- 1-1/2' thick steak, cooked Pittsburgh style as I had ordered. +What I got a a 3/4 in thick piece of meat that was mostly fat, gristle, and in no way resembled Pittsburgh Style. +Salad, similar to something you could get at Chick Filet +Veggies, blah. +Bread basket, ample, but day old, and if not, it certainly wasn't fresh. + +In addition to bad food, we were crammed into a small room where we were nuts to butts with 6 other tables, listening to conversations ranging from someone's recent bout with pinkeye, and another couple who elected to speak entirely in French, until the waiter showed up, then it was like they turned off the French switch and suddenly began speaking English. + +I've had it with this place. +If I'm going to pay 150 bucks for dinner, it'll be at Mortons, or Maestro where the steaks are 1-1/2 in thick, cooked to perfection, and half of it doesnt wind up on the plate as fat and gristle",review,iwUN95LIaEr75TZE_JC6bg,0,4,3 +Pr9rQKypHgC_J1AfufxzIw,2008-12-28,vUuFuf4LYxfqbZH3lYxJfw,4,"They must have renovated this place in the last year. It is now spacious and airy and there is no longer the dreaded ""hover over a table to get a seat"" necessity. It now reminds me much more of the dreaded ""Panera Bread"" chain in California, but the food is still much better and has much less of a ""mass produced"" feeling and taste. + +The service (management, staff etc) were extremely attentive and responsive to requests as well as keeping the place extremely well clean and cleared. + +I love carbs...Carbs with carbs and a side of carbs. They serve warm syrup with their pancakes (yum!) and their bread is just amazing. + +The ""side of pancakes"" is plenty big for a meal and they are always consistent, fluffy, and tasty. + +They offer both a dark roast and a house roast for coffee and all the powdery loveliness (cinnamon, nutmeg, cocoa) to top it off just right. + +Today, before returning to the land of freeways and smog and eternal sunshine(well, the other land of that anyway) we enjoyed their peppermint hot chocolate. I would highly recommend that you run on it and have this frothy goodness before the holiday season ends!",review,iFa0SLpNeLbx6aux65mNbQ,0,1,0 +AGar9KVq_W7YcF76avbDTw,2012-10-16,gNm48xplqt42p-NvCkzUBg,4,"Very clean and well thought out floor plans, nice to have a friendly staff with smiling faces. Best Target I have been to in a while.",review,370JyOQfFcPSB9_jk641gA,0,0,0 +-kVXDEqGHOWKxQ3EhvFgVA,2011-01-02,5V9lfjjlY7tkXgkcDUWYyg,4,"This Mexican food is very simple, slightly bland, but fairly fresh. The chicken is chopped up into tofu-looking squares. But I was satisfied with the food, which was fairly healthy Mexican food as Mexican food goes. The staff is quite polite. I met some cool people hanging out there while I sat outside.",review,Ja8SAyDdf1aY-E7vVixJiw,0,0,0 +qyNtVViurIcChc35mfYIEw,2008-07-09,1fRGR6XTTElRBZW_oDrpUA,4,"Decor functional +Staff friendly and are really kind to our toddler +food rocks within my limited range of red and yellow curries ( so much so they suggested I try something else, hey it's not my fault these are so good that I didn't want to risk anything lesser. + +Prices are a bargain for entrees, spice is there, they really get the request to make it very very hot. This is probably the best bargain in North Phoenix for spice hounds",review,N3L6SDymSRkYQtTiSDmXSg,1,1,0 +umdxfhSlk67yGEi8-S-bEg,2011-11-09,2sG6LKzRz91l10stVHl8uQ,4,"This Place just opened up next to the salon I work in. AMAZING! They hit the ground running, + +It's a deli style, where you order at the counter and they bring you the food. I had the Grayhawk Turkey Club and the turkey was great! No packaged crap here. It was thick sliced and probably rotisserie. For the side I had sweet potato tater tots. DELISH! The have regular fries, sweet fries, tater tots, onion rings, etc. + +Great looking salads, Chicago-style dogs, gourmet burgers and yummy sounding mac and cheese. + +The only thing keeping it from 5 stars is the price. It's great for dinner, but a little steep for a work day lunch.",review,F0dO68TECqEJBhBJ4P0qVA,0,1,0 +qsThMZ3lXWYLN4t08ScsNA,2009-03-13,fuY6Bf4EtW3UwrdLQJa9_Q,4,"I really really like Frances. I love most of the clothes in there, but I can never have them because I can't afford it. The store in general is pretty cool, there are lots of neat things in here from stationery to clothes to jewelry to baby stuff to dog stuff to vintage stuff. There is a lot of stuff here. It's all quite pricey though. The sales they have every now and then are sorta okay, but still break the bank if you buy anything. Overall they carry good quality products and the staff is super friendly and helpful. I can't hate on a place too bad just because I can't afford it.",review,W_QXYA7A0IhMrvbckz7eVg,2,2,1 +puy0PzIcCgR3KWJI7llBFQ,2012-06-30,UTWI0z7nV5zNJLWnOz9Z5A,4,"Solid food, great device, and casual environment. They will not leave you hungry. Overall, it's really good.",review,PiDqfET_ZrDKJSLKe03O9A,0,0,0 +e0vubCKi8KD8zC2C6FdbuQ,2012-04-12,7uzj6rJ71toRmdsXyo2suA,4,"my son really enjoys islands, great food, casual kid freindly atmoshpere we go here quite a lot and seem to keep coming back",review,wv5-4IPtpVA8wdqXu-Onpw,0,1,0 +faSdsW2s_SaVN0KTy-R2MQ,2009-06-13,HXU9dbOSlByXW-dB8LmJgA,4,"I was seated at the bar. A very nice young man was working the bar an provided good conversation. + +I was offered a DELICIOUS chicken, bacon, bleu cheese amuse. Yum! + +I ordered a pine nut pesto pizza, which wad delivered by the chef! :) + +The crust was perfect! Thick enough for structure and substance, but thin enough to ""hide"" behind the flavors of tomato and pine nut pesto. +The cheese was also just right. + +Delicious! + +I also had the chicken panini, which was fantastic! The bread was a bit hard, but I think I was too busy talking and let it sit too long. + +All in all I'd definitely recommend L'Academie if you're in that area of Scottsdale.",review,7cR92zkDv4W3kqzii6axvg,1,1,1 +qB-qsaSnhbHCt18_AN4Quw,2011-12-21,1FvrC35rTJ6BWFvRog7tuA,3,"Everything was nice. The ice cream was delicious, no overwhelming alcohol taste & an interesting variety of flavors. Service was fine, place was clean. I'll go back, but only because I have a killer sweet tooth and they're in the neighborhood.",review,66PQJEHC0tCWGMI4V9KT-Q,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2009-04-04,Ckk1Cne1GHwzmJfo7M4r2w,5,"(Un)fortunately for me, lux is close to my house. I walk there nearly every day and am much poorer because of it. The coffee and pastries are amazing. They always play really great music too!",review,IUWjTmXc3wLVaMHz33inaA,2,1,1 +JuBygU4XDjqSeW9okyvbsQ,2010-09-25,bu9S6tFKuTrMcNxQaQYMQA,3,"After watching her win on Cupcake Wars I was determined to find this place (It's very well hidden)and sample the cupcakes. I have to say I was not impressed; i make better cupcakes on my own. More creative and not so sweet you'll go into a diabetic coma. i did have a California BLT as well and it was a good sandwich although the bread was a little too toasted for my liking. The staff was friendly, the ambiance was very pleasant and it was clean. But the cupcakes...really not all that. Sorry....",review,1MyXsAhZK35A6EAr4reLCA,0,1,1 +jRfdz5voj40P6WS9L54caw,2012-01-03,V75NCU3EhqTDwPj5In94DQ,4,Good for an easy and leisurely business lunch or outing with the girls. The market downstairs is great for takeout and a great selection of bakery treats.,review,r-t7IiTSD0QZdt8lOUCqeQ,0,1,0 +7SO_rX1F6rQEl-5s3wZxgQ,2011-10-03,GxaYFCprt-wyqO--vB4PHQ,4,"After my last review, somewhat scathing regarding the burgers, I got an invite from the management to come down, meet the chef and give him another try. I thought to myself, ""how nice"", they read my review and they are concerned about the quality of their product. I think that is admirable. I did not take them up on the offer, because I don't feel that would be appropriate - I'm interested in doing yelp reviews because I have benefitted from reading the reviews of others, and I want to share my thoughts and feelings too :-) - I'm not looking for freebies. + +So, anyway, last friday seemed like a good day to walk over to LGO and see what's shakin. I grabbed my growler jug (still the best deal around) and the wife, called a friend to join us for a beer and walked on down to the corner. The evening was a bit on the warm side, but it was quiet and about the normal buzz of busyness for this corner. It's always kinda crazy and we like to sit on the patio to watch the manic drivers race around trying to find parking. We went into the store and the wife ordered a grilled-fish sandwich. I nervously ordered a cheeseburger with fries. After placing our orders and getting warned that we needed to be around to pick them up, I moseyed over to the bar to get my jug filled with Stella. Did I mention that this is an awesome deal? So, we got some glasses and headed out to the patio. Soon afterward, they called our name and we got our grub. My wife's fish sandwich was consumed with muffled oooh's and ahhhhs', and she raved about the perfect texture, grilled flavor and delicious, fresh multi-grain bread. She also raved about the slaw that came with it. I think she liked this sandwich. The burger, on the other hand, is still a disappointment. I ordered it Medium Rare (the only way to order a burger) and kudos to the woman for not warning me about undercooked meats - I'm aware. really. And I asked for cheese and put it on a hamburger bun. It came open-faced with a pile of coarsly shredded mild cheddar cheese. It had the appropriate veggies - lettuce, pickle and tomato, red onion slices and the special sauce. With a pile of limp matchstick fries on the side, it was a big pile-o-food. The portion was impressive. That's about where it ended for me. The burger was overcooked and the pile of shredded cheese is a bit off-putting. It's impressive, I'll give 'em that, but a big pile of cold, shredded cheese just doesn't work for me. The cheese needs to be melted. A good burger has the cheese melted. at least some. Lot's of cheese can be fun, but it overpowers the rest of the flavors and tends to cool the burger quickly. I scraped off about two-thirds of the cheese - enough to make a cheese crisp if I had a tortilla, and put the burger together. Flavor was so-so. After I added some salt and pepper, flavor was just a little better than so-so. Burger was cooked to med-well, but still juicy. The veggies were fresh and crispy. A side of mayo for dipping the fries in is required for me. I like my fries Belgian style. The bun was a little dry and on the edge of stale, but not bad enough that I could not eat it still. Overall, I stand by my original review of the burgers here. I realize LGO is trying to stand out with a ""different"" presentation, and I applaud the effort, but I think it needs a bit more work to stand out at a time when everybody is doing burgers. The fries were sub-par, limp and forgettable. The ambiance, however, is what brings us back. Sitting on the corner patio, sipping a beer, having a great conversation and watching the show all around me is a great way to wind down on a warm Friday night. LGO - keep working on the burger, I'll keep coming in, but I think I'll stick with the wings for now.",review,J3I2NClEbD1Xr8lOdjxlqQ,1,2,1 +EC9WB-iVjd28B6R6KIZ8TA,2010-08-04,RZZ9Tf5GWYwrcjg-ACiKmQ,4,"Cliff notes +- Cheap: $1-2/plate +- Fast: It's ready-to-go and on a conveyor +- Acceptable quality: I'm here weekly and haven't gotten sick lol + +This place is definitely good for what it is, ""it"" being a budget-friendly sushi place that's great for a quick bite. In a response to the lower-rating reviews stating how the food is just okay at best or authentic or blah blah blah, well think of it like wal-mart vs. *inserthighendretailerhere*. This place has a business model based on selling in large volumes (hence the low prices like wal-mart) so they're gonna have to ""reduce costs"" somehow (so-so quality food, not-so-attentive staff, and slightly smaller than average portions), but it's still a solid bang-for-your-buck kinda place. + +On top of this, I can be in and out quickly since everything is already prepared, perfect for those quick 30 min lunch breaks. All that's required is for you to grab it off the conveyor (depending on whether or not all the items you want are on the conveyor at the time). + +I've never had issues with seating, but do not make a point to go during peak hours and usually go with a small party (2-4 people). + +For those claiming to be ""left to fend for themselves"" due to an inattentive staff, most of your sushi-related inquiries can be answered by this thing called ""the menu"" that sits on the counters. See, this miraculous piece of technology contains things referred to as ""descriptions"" on them that help to inform you about the sushi going round-and-round before you. Furthermore, there's even a pricing guide based on the color code of the plates to assist you further! WOW! Lol wtf do people expect for $1-2 plates of sushi? Someone to hold your hand? LOLOLOLOLOLOLOL DIAF + +And the cherry on top? $4 large japanese beers and $5 sake bombs! HELL YEAH!",review,jdoGEEy5s-5L1O_lNzEi2g,1,0,1 +zp713qNhx8d9KCJJnrw1xA,2010-02-01,Bmt1QRDT0GfyXkhOvj_BfQ,5,"Fred M. pretty much said what I would say, so I won't beat a dead horse. I'll add, though, that they offer a wide variety of deep-fried quesadillas. + +Did you catch that? + +DEEP FRIED QUESADILLAS!",review,aqqbh1NZoFk48kp0eqSLdg,3,2,1 +pWPzxPPXN4IqI7RUU_8KKw,2007-10-29,V4hBluqV-xbgzk7Y6y9kzw,4,"I have no idea whether there is a Japanese community in this part of town, but New Tokyo would suit one well. It's rather small, but they have a wide selection of Japanese, snacks, beverages (including my new fave beer, Asahi Black), refrigerated items, staples, etc. + +This is not an Asian market, it's specifically Japanese, so don't expect more than a few crossover items like kimchi. That being said, sometimes it's good to specialize. It lets them carry more variety of Japanese products. + +The cashier was very friendly when I finally stopped loading my basket long enough to check out. Like the first reviewer, I loaded up with snacks for the hotel room...along with a six-pack of Asahi Black, of course. Oh, one more important factor...the prices were quite reasonable, in line with most ethnic market imports...maybe even a bit cheaper than usual.",review,ynGxw3zZqAjahVou563zXQ,1,2,0 +LDJhwZN14AZOJyHjg2lkRw,2011-12-13,hHwQaL3QN2xgTBSCQ26wIA,4,"We got passes for the preview of Mission Impossible (Ghost Protocol). We enjoyed the movie a lot. The theater itself is fine. The chairs don't move, and you can't raise the arm rests. No rocking, no reclining (granted most theater seats don't move a lot, but these don't move at all). Otherwise the seats were reasonably comfortable. The screen is IMAX (i.e. huge), and the sound was reasonably good. + +They could have put a little more slope into the auditorium seating. In other IMAX theaters I've been in it seemed the heads of people in front of you NEVER block any portion of the screen. But I found a few were just slightly into the bottom of the screen. It wasn't bad, but given my other IMAX experiences I did notice it.",review,Mb0psF4WQF7gZSuZafVr-g,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2009-08-06,GOconNmWgg6cJbgwSwrozw,5,"Alright, I have been away from Yelp for quite some time, and I feel that this place is fitting to be my comeback review... + +Chicken and Waffles. Yes, chicken and M'Fin waffles. + +In the ghetto? Check +Has sweet tea? Check +Has no-nonsense, quick service? Check +Ridiculously long wait? Check +Best thing that I have eaten in the last year? Check + +I have to say, not the best fried chicken I have ever had, but pretty damn good- it could use more seasoning. Now the waffles, probably the best ever... The waffles are deliciously soft inside, a little crispy out with a wonderful cinammoness to them. The seating is cramped, but it doesn't matter as soon as your food is delivered your table goes quiet, you get tunnel vision and after the first bite you are taken away to an orgy of goodness. + +If you are in Phoenix, this is a requirement. Come real early or be prepared to wait. Don't forget to order the Red Velvet cake and they have Kool-Aid if that fits your fancy. Even after I came home from Arizona, I couldn't stop talking about LoLo's for like 2 weeks. Shoot, two months later and I am still drooling thinking about it...",review,yy1SbjeyWiAhWfSr5d0new,2,3,3 +FCcFT610nQBVcRdY-devQA,2012-01-14,6jRs2P6zTYMn36fVnCu1Zw,4,"In our continuing quest to identify cool, locally owned places to eat and/or drink, Caroline and I auditioned Vintage 95 last night. + +Before I go further, understand that whenever I go out for eats or drinks, I have in mind a Platonic Ideal of the Bar/Pub/Eatery I most want to frequent. I'm on a constant quest to find that Ideal expressed in Real Life. + +Vintage 95 isn't quite there, but it's damn close. If I ever give something Five Stars, you'll know it has pegged my Platonic Ideal. Anyway... + +The plan last night was for drinks. No plans for food, just Adult Beverages and warm conversation. But it turned into more. + +The location in downtown Chandler is terrific for us. The owners have created a very fine visual experience - leather, stone, dark woods, good lighting. And they don't have the music turned up so loud that you CANNOT HAVE A CONVERSATION. This is one of my pet peeves. If I want to stare at people move their mouths while enduring an aural assault, I'll stand on the deck of an aircraft carrier. When I go out with friends, I want to enjoy their company AND their conversation. Is that concept so difficult to grasp? [/rant off] + +The atmosphere at Vintage 95 is very close to my Ideal. I'd go back just to sit on the leather couches in front of the fireplace, and then go back another time to sit on the leather stools at the bar, and then go back about fourteen more times to sit out on the patio. Seriously - go check out the patio. It is EXACTLY what a Patio Hangout Bar should be. EXACTLY. + +Caroline and I told the hostesses we were only there for drinks, so we were seated in the bar area in some fabulous leather club chairs. It wasn't initmate, but we weren't looking for intimate. And speaking of the bar, even though V95 advertises itself as a wine bar, they DO have booze. I'm not much of a wine drinker and was very pleased to see that they carried a pretty good selection of single malt scotches. Not an overwhelming selection, but well beyond the normal Glenfiddich /Glenlivit /GlenMorangie trio to which most places are limited. I had a couple of drums of Ardbeg, which is one of my new favorites and very reasonably priced at retail. (Scotch is never reasonably priced in restaurants, but I was celebrating so I didn't care.) Caroline had her normal ""vodka martini extra dirty extra cold"" which she judged to have ""perfect dirtiness"", (no wonder I love her!), perfect amount of olives and very cold. + +The limited Happy Hour menu had some very interesting choices. We settled on the bruschetta and the smoked tomato bisque. The bruschetta was VERY nice and quite unusual. You get to select four of eight choices for your bruschetta platter; we picked: (1) white bean and pancetta, (2) gravlax, caper goat cheese and pickled onions, (3) fig chutney, ricotta and prosciutto, (4) brie, pear and onion jam. They were all served cold, in nice sized portions and the flavors were all nicely balanced and very interesting. Caroline would have preferred the bread to not be so crispy, but I really liked it. The tomato bisque was creamy, smoky and had well-balanced flavor. Caroline said it was unique and I say it was just darn delicious. + +Things being as they are, drinks and appetizers turned into food. A friend had told us ""you have to try the Vintage burger"", so we did. It came served with a mixture of regular and sweet potato fries, all nicely cooked and nicely seasoned. Recommended. The burger was VERY tasty. They obviously use good beef, the bun was fresh, the fixin's were tasty. HIGHLY recommended. + +In for a dime, in for a dollar, right? So we ordered dessert. Again, the dessert menu is short, but I'm okay with that as long as they do it well. Chocolate torte with hazelnut gelato, apple pie with carmel sauce and creme fraiche gelato, and something else we couldn't remember. I'm allergic to hazelnut and don't like sweet desserts, so we decided to try the apple pie. + +Like everything else we had sampled, the apple pie was unusual - you wouldn't find it anywhere else. It was served on a freshly baked puff pastry, cubed apples served on top and inside - tender but not mushy - with lots of cinnamon and sugar, plate was swirled with salted dolce la leche. It was tasty, but instead of the expected creme fraiche gelato, we were served hazelnut gelato. I didn't realize it was hazelnut until I'd had a couple of bites and my throat started to swell up. + +At this point that the night could have turned into a disaster, but to their credit - it didn't. We told the waiter who told the manager, (Gavin - one of the owners), who immediately came and asked if I needed emergency assistance. I didn't, I'm not THAT allergic.) Frankly, their response was EXACTLY the kind of customer service you want to see. Anyone can make a mistake, so no harm, no foul. But I must give BIG Kudos to Gavin for his kindness, attention to detail and outstanding customer service. + +We will DEFINTELY be back and I strongly recommend you put it on your list too.",review,40aklZ2SQPKnlTPZdvAqww,0,1,0 +tA2DT7CGQPzgA6tTcTkXDw,2009-09-02,VyX6x7wnThr9g9Z6VBDIgA,2,"I have to add to Andrew's review..... + +I just can't believe the things that happened!! + +Yes the app was good. The entree was good too, but there were bites of just bread with no chicken in the panini. It definitely would have been better with more chicken! + +But the girl working here is one of the worst waitress/bartender/hostesses EVER! + +When we walked in, she didn't even sit us. We stood there forever waiting until she finally told us to seat ourselves. We went outside since there was nothing left inside. It was too hot outside so we came back in and figured we'd sit at the bar. Luckily a nice guy noticed us looking around and let us sit at the end of his table that he moved apart since his whole party didn't show up for dinner. + +I was so excited when I saw they had cider on their menu! And not just one, but two that I like! Wyder's Pear Cider and Strongbow!! +I ordered a Wyder's. After I finished it and asked for another, she said they were out of them. Okay, so I ordered a strongbow. She came back and poured it into a glass for me. When I took a drink it was disgusting!! It was Boddington's!!!! When I finally got her attention away from flirting with a man sitting at the bar to ask her for the correct drink, she told me they were out of Strongbow too! How are you out of both drinks?? You're a restaurant. Shouldn't it be stocked? You're right across from a BevMo for god's sake! + +When we ordered our food, he ordered the app. Then I ordered my entree and she walked away! She didn't even get his order!!!! We figured it was probably for the best. We'd split the app and the entree and eat less. Stupid of the waitress to lose money that way, but whatever. + +When she brought my food, she didn't bring the correct things. How hard is it to remember? She had maybe 4 tables to take care of! Maybe if she stopped texting while she's behind the bar on her cell phone or if she'd stop having a conversation with the guy at the bar, maybe she could have done her job a little better.",review,UL9chyH0a4Pj8J_9M6WSpA,1,2,2 +o5x6DF0KK1OBsiUOx2gavg,2010-02-04,IRGqHYbK5AOEv5MNYMz7cQ,4,"This would most certainly be ""my"" coffee shop if I hadn't already established myself as a regular at another local shop. This brand-new, independent coffee shop has spent the money to look really nice (it even has a fountain inside!). + +But what money can't buy is community and unfortunately this shop doesn't seem to have much of that. Granted, building community takes time and/or energy. For their sake, I really really hope it works out in the long-run.",review,xw77viWz_BbmyntxoBVH4A,0,0,0 +AaKlegu7gmOCD4rEESF76Q,2010-04-24,9CXNIZTV9uStuNbvvFS8uw,4,No matter what I order I know it will be tasty. Maizie's have a lot to choose from which can be a little overwhelming for me. I love their wait staff everyone is always friendly. When I am in Maizie's I feel like I am in a neighborhood hang out.,review,uA18GuF_ezOH6tXkrrykbw,0,0,0 +E6DnUFy3GoN4DxTqturtug,2010-09-28,nzSOTOZiAb1ITqbRgWKnnQ,5,"This restaurant is incredible, and has the best pasta carbonara and the best tiramisu I've had in my life. All the food is wonderful, though. The calamari is not fried. The bread served with dinner comes right out of the oven, and the tomatoes are the freshest I've tasted outside of my mom's own garden. This is great attention to detail. + +I can no longer eat at any other Italian restaurant without feeling slighted. This is the first place I want take out-of-town visitors I'm looking to impress. + +The owner, Jon, is helpful, friendly, and really cares about providing a positive dining experience. He's spot on with his wine recommendations, and he organizes wine tasting events which you can find out about by joining the mailing list or Facebook page.",review,U3uT-Phb8iL2iuZpAROZlg,0,0,0 +znBnrQNq1FdUt5aIGAbyuQ,2012-06-08,9BJJwIciVG-JPlXetInbXw,4,"One of the spot my coworkers and I go to for lunch. We usually try to get there before 11am (weekdays) to beat the rush from all the Corporate places near the MetroCenter. + +The deli sandwiches are good. I usually stick to getting the Amy's turkey-O. If you plan on substituting a side, make sure you tell them because the cashiers don't normally ask and you'll be stuck with chips. The salad bar here is very decent for the price. + +Don't forget to get ice cream on the way out!",review,wJzMpk54FF2jeENqMBJ24Q,0,2,0 +l4vBbCL9QbGiwLuLKwD_bA,2011-11-22,DJVxOfj2Rw9zklC9tU3i1w,1,"I have always been a fan of Burlington's deals, however I will not be shopping at this one again. I went to return a belt... pretty simple. Instead, I stood in the customer service line for 15 minutes thanks to an employee of Burlington buying/putting things on layaway. It took three other staff to help her out. There were no words said to me except ""Hold on"". I was pissed. When the lady was finally done, the employee at the service asked ""what do you want?"" Serious help is needed there! + If you work in the area of ""customer service"" I think you should have some.",review,EPROVap0M19Y6_4uf3eCmQ,0,0,0 +YeDYa6tYL16CyqYvUVOtLw,2008-01-28,J2Ig5cV9fJU-KGewdzQXOA,3,"If I could give 4 stars for atmosphere and 3 stars for food I would. + +With all the hype of getting a Margaritaville I guess was expecting a little more in the way of Margaritas and cheeseburgers. But I was underwhelmed with both. You can get a much better burger next door at Yardhouse and a much better selection of Margaritas from Salty Senorita. With that aside this place is quite the spectacle. It has 2 stories, a stage, fishing boat booths, and every other piece of decor that a Parrothead could love. TV's broadcast Jimmy himself rocking out and some odd montages of Parrothead outings. Live music is offered here several nights of the week and they offer 2-3 bar areas. If defiantly won't become part of the regular rotation but from time to time we might wonder in looking for our lost shaker of salt.",review,gTCM7qlVrwdml-hFB6aJqQ,0,2,1 +P5uC-zfGG6yqoQDUyqyAvg,2010-02-05,rghv_qgXpluzDE9qn8CNrw,4,"It is romantic here even if you are with just friends. The waitress kneels at the couch to speak with you, pour your wine, bring your check...I love that...its so 5 star and respectful. Our waitress was so friendly and I was on cloud 9 because the whole ambience made my evening so nice. I love the darkness of it, its all so exotic and relaxing there especially with all the coves and different areas to be seated. Apparently you have to put your name down if you want a table for certain as it seems to be packed anytime I have been there. We needed one more bar stool-we had no reservation and the waiter actually went ""out to the storage"" to get us one. Impressive!",review,nM3vfxr6fcnN_nXdzwbVCw,2,2,1 +CEswyP-9SsXRNLR9fFGKKw,2012-05-19,GXj4PNAi095-q9ynPYH3kg,1,Another night meeting friends here. I have to laugh. Waited another 20 minutes for my beer to be refilled at the bar. A girl even took my empty without even asking if I wanted a refill. A new brunette girl that I don't recognize left the bar and sat down with her guy friends on the customer side AT 9:25 ON A FRIDAY NIGHT. Another bartender had to ask her to come back and work. Management.... Pull your head out of your ass! Sad to watch.... I need to talk my friends into another place!,review,MjLAe48XNfYlTeFYca5gMw,0,1,2 +6Ry-gjGqApTSRZkfdYlLmw,2011-05-04,LN4l4wklQB0IVBjm-vq9TA,1,"Not busy at all but took nearly 45 min to get our meal. Ordered the trout and was shocked to see lots and lots of bones. Hmmmmm. Well asked the waitress about it and she said ""they try the best they can"" hmmmmmm isn't this a ""fish"" restaurant? +They comped the trout but still not sure I would go back.",review,rWN1pg3mCF2btJWtG6JmJA,0,1,0 +taSsiZAGZSz2gRg7_M4XDw,2011-12-30,L_q9kLaGo33j2Ij8yUIGDw,5,"This an incredible church that embraces the principle that ......Christ Life Church exists to bring people into a life-changing relationship with Jesus Christ. Three campuses allow Christ Life to reach into several locations...online, Tempe and Casa Grande. The wonderful children's and youth programs appeal to a wide perspective of people.",review,0jJhjgr3wPin-8vYnPab6A,0,0,0 +3oLy0rlzRI_xiqfQHqC4_g,2011-04-28,dY_p1YkjZxJmREb9Lfc5vw,5,"This is our favorite breakfast place. The food is good. They have the best biscuits & gravy of any restaurant I have eaten at. The wait staff is friendly. The only complaint I have is that Sunday mornings are packed, so there can be a wait to be seated.",review,-yg_AMAU2HNh48zcuQ13mw,0,1,0 +0QTn4pMzKv1mnQifcP9YoQ,2011-08-14,mTcLzmYunqJIGKgklFWICg,4,"The best sweet and sour soup ever! Food is delicious and favorable. Delivery is pretty good, nice people.",review,UHyDQ-laihWMGa8MtIToOg,0,0,0 +N5iW2JG5e-QyUh7brRNSfw,2012-01-05,-_hed9F2kUDdb4oa1CXKIA,5,"I had looked at several invitation websites along with catalogs with no luck in finding just the right balance of wedding colors/design. Thomas at Alphagraphics helped me every step of the way of designing and printing our wedding invitations and programs. I knew I wanted a booklet-style, but needed a little design creativity from Alphagraphics which they nailed! I highly recommend Alphagraphics to anyone needing any print work done - not just wedding invitations. Thomas and his crew are stellar!!",review,xP3o3-r0KRUnZqBSdIGJjw,0,0,0 +_HTE4pOKeJC7kcxiCF9vTA,2010-05-22,xNvNTC2iXwJiiujNK6Sphg,4,"Every now and then my Vietnamese side craves for PHO...are you surprised!? Noodle Ranch is my local Pho joint. I can literally walk to this place :) Okay, the Pho Tai is great here....I got the combination once and it wasn't as good. I love the decor here lots and lots of old photos of Vietnam. Service is always good here and I've been here when their busy and when it's slow. If you need a Pho fix I would definitely recommend this place!",review,XqMkm-DD9VsdcKx2YVGhSA,2,3,0 +NNGJQF3WeIHzGzweCpZ-VA,2011-04-23,jNewOjPp56NMDrKlajrgFQ,1,"Yikes, reading other reviews I realize my bad experience wasn't unique. As a server I make a very laid back customer. I like pretty much everything I eat and don't require a lot of attention from the waiter. + +La Piccola Cucina would benefit from just one extra person in the front of the house. Our guy, though adorable and friendly, was too busy to refill our drinks and to remember to bring our appetizer (though charged us for it). The ahi tuna (highly recommended over the other fish options he said) was so overcooked it was the color and consistency of chicken. Like other reviewers mentioned, he was frantic and made that clear to every customer. At one point I even saw him in the kitchen cooking - they need another person! + +I left super stressed out from the experience, which is very, very unusual for me. You can either have bad service or bad food, but not both.",review,5je-Jg8tq5BWxJtDBmTK2Q,0,6,1 +3HciJAVduCRoPDdzgh7cAA,2008-04-25,WONOXuKoiT2hkKITvTfC0g,4,"This is your typical Buffalo Exchange. I've been to others in San Francisco and San Diego, and they're all pretty much the same. Yes, they're super picky brand name whores about what they buy from you, but it means that there are some really great items for a much smaller price tag. I've gotten dresses that people always compliment and things that I've bought on impluse because I thought it was a great buy, and wore once. + +The building this one is located in leaves a lot to be desired, but there are good buys inside. I walked away with a great pair of skinny jeans, a cute top, and a super comfy dress for under $50 =).",review,IE_nJq65Qpso5fN4tG9zjQ,0,1,0 +4meJyPOhuAKzywUJTmu2hw,2008-06-23,IC2EAv_PGx44FnTvfAs_FA,4,"Though perhaps not the place you may pick for a special brunch with champagne and chocolate brioche French toast (a signature breakfast at the Sofitel Philadelphia), the Good Egg is my choice for neighborhood breakfast that offers consistent service and food in a comfortable atmosphere. + +No matter how busy the restaurant becomes, and on Sunday it is packed, the staff is always friendly and welcoming. You may have to wait for a table but the waits are never excessive and there is the coffee trolley where you can help yourself while waiting. Even more remarkable is that even at its busiest (read Mothers/ Fathers days), service is speedy and attentive and the kitchen never seems to slow down. Someone here knows how to run a restaurant! + +The menu contains a large assortment of the usual breakfast fare, eggs, pancakes, french toast, etc, all well prepared and tasty. In addition there are is a good number of health conscious offerings and even those less healthy dishes can be requested to be made with egg whites or egg beaters, and non-starch substitutes (cottage cheese, fruit, and tomatoes. etc). Some of my favorites include the Hey Ricky Omelet, Huevos Ranchero ,or my indulgence a (as in one huge singular) buckwheat pancake with (my choice of ""fillings): chocolate chips ( I admit my addictions), pecans, and bananas... + +We always opt for the patio and even in the scorching summer heat; the misters make this a great outdoor picnic with the best people watching in Phoenix. + +After you have been here a few times you feel like part of the family and with their frequent dinner program they offer even more incentive to return.",review,t8vH6ubd-6i9DTisZaQdgg,0,0,0 +pRmHreZcF7YmNEEPukfcFg,2008-06-13,SWdrx60taMa442b1enwfCw,5,"I absolutely love this little spot! It's a great little known boutique with incredibly unique gift items that I don't have to drive clear out to Scottsdale to find. I've been shopping at Vignettes for about 8 years. Whenever I am in a quandary about what to get someone, this is the first place that I head to. Mostly it is because of the wide range of specialty items that they have on hand. Whether it's something for the garden, a gift for the new bride or baby, a unique piece of art, or heavenly scented candles - you will not be disappointed. + +The owners / staff are super friendly and have always been more than willing to help find something within a price range or based on occasion / need. And they do the most amazing wrap jobs, making gift giving even easier. + +The final bonus is their annual Clearance sale. For three days each year they basically blow out their stock to make way for new finds. Ask to be put on their mailing list to ensure your have a heads up and get there early because long time customers like myself never miss it. : )",review,iwWBF3nKoRMoy1sbkLJwvg,3,7,1 +s9XNBJAZ3ZcNW5u8BRZXuw,2010-09-21,UxzU0E5eM_ZgIMus-wpS8g,4,"Great Southwestern restaurant. The food is incredible, especially the stacked enchiladas. Normally I do not eat heavy foods, but this was way too good to pass up. The chips and salsa were very tasty as well. + +Service was very friendly and timely. The interior is pedestrian at best, but still a pleasant environment.",review,BUeMRVgAQvBWnnrI2xcA1Q,0,2,0 +Xq9tkiHhyN_aBFswFeGLvA,2011-06-24,QqUj8brMiWkMicmlWtpPrw,4,"Went back to AB a few weekends ago, again for brunch, with a large group. I was surprised to see that, although they advertise themselves as being a brunch place on the weekends, they have pared their menu down to basically 4 items. The people that I invited that had never been to AB before were expecting more of a variety in brunch items since I'd told them that they had great brunch, but their concerns were quelled with a few bloody Marys and some good (if not diverse) food. I had the egg sandwich sans bacon again (excellent again) and Sweet Pea and I split the french toast as well. We'd only had a small sample of the french toast at the opening, so we didn't realize that it comes with this whole jar of cream and berries, in addition to the syrup. If you come here for brunch and like french toast, you have to try it. It's the best french toast I've ever had, and many at our table agreed. The secret is that they bread it in cornflakes. Yum. And, the bloody Marys are in the excellent range, I'd say just below the phenomenal ones at Dick's/Rokerij. The service was also friendly and quick.",review,GVH_iuoPc0aP3ZNYlWuKag,1,1,1 +ImghNwml8N-ncAqhXe00hg,2012-09-20,gLHPqclZG51HH9EGzOFjxQ,4,"Great prices, great food. The staff is very friendly... I'll definitely be coming back here for lunch on a more regular basis. I had the kung pao, and the portions were incredible for the $5 I paid. + +Not mind blowing, but better than most Chinese places I've been to in the Valley.",review,aLTl_OkLo0BFRxdz1n6sYA,0,1,0 +cBpJIOrVXotDI0XAZH_k0g,2011-08-18,ZXp8gEhfE7BHgRYIgnd3gQ,5,Came here with a large group a while back. We were there to eat and have a beer before a concert there. It was a weekday so we made it to happy hour. Happy Hour pricing was fair. The food was pretty good. The very best thing there is the beer! They had like everything on tap! MMMM!,review,O3huqF3nBeWP9Zd6NmCAaQ,1,1,0 +FkHhy6kWeoJf0xJTqzRWmg,2012-09-17,odua8qFSMEXSFYmElQTspQ,1,"This is my first year participating in Arizona to sell clothing, just wandering how busy its goona be in there ??? little worried, can any one reply me ??",review,68exKLCQnnZrvXNFOcIUnA,0,0,0 +c1yGkETheht_1vjda7G5sA,2011-03-28,vwHmBJ5YKbZxNFtmP2KpRQ,4,"The vibe exuding from this place is pure awesomeness. Reminiscent of a trendy hipster coffee joint, this is actually a casual vegan restaurant. + +I am a pescatarian and unless I am eating seafood, I steer clear of meat, even the mock kind usually however once in a while it's delicious... so why try it here at Green I thought. The menu's style is comfort food, which as we all know traditionally is heavy on the meat, sauces, and fat content... so at least if you're going to be bad, you can do it with organic and pure ingredients. + + +So as I wanted to sample as much of the menu as possible, my lovely friend, her fiance, and I shared a few items: + +*Artichoke Gratine: The corn chips were amazing, lightly salted and crisp. The dip was a bit too garlicky and runny for my liking. Ate a few bites of this but could not see myself eating the entire thing solo. + +*Spicy Buffalo ""Wings"": first things first... do not let looks dismay you... true it looks gross but they taste legit! The flavor of the buffalo sauce was perfect, although could have been spicier. And the cucumber ranch dipping sauce was perfectly creamy and lightly flavored as to not overpower the ""wings"". This dish is a must try!! + +*Vegan Chili Fries: the fries are thin cut and tasty. The chili sauce was good, at first, but I quickly got sick of the flavor. This could be because I was never a huge chili fan even back when I ate meat. Hmm, I think you are better off ordering the thyme fries. + +*Crab Puffs: Perfectly crisp with a delicious creamy filling. Another must try! + +Lastly my friend's fiance ordered that day's special which was a green chili burrito... delicious and huge. A bit too much rice but besides that a great option. It came with a side, which he ordered the curry pasta salad, mmm. + + +Green serves bowls, sandwiches, pizzas, salads... next time I am back in the area I will be checking out more of the menu when craving ""meat"" and not my usual tofu, seafood, veggie diet. + +Might I add the service is friendly. Perfect place for a casual friend date.",review,YBVdmm5zlpLpi2_DiKsd2A,0,0,0 +5kRug3bEienrpovtPRVVwg,2012-06-29,BslISEau8Pk2voEPN7kY-g,4,"Rokerij is worth the hype. We popped in last week for a late bite and left super happy. We scored a few seats at the bar, the place was SUPER crowded (which is a good sign on a Wednesday). I started with a beer called Banana Bread, which was awesome. Wifey had a glass of wine, but I can't remember what it was. We couldn't decide on what we wnated so we ended up splitting the entree of Blackened Salmon with Apple/Chipotle chutney and some potatoes. We also got three of the small Plates: mini reuben, crispy calamari and cilantro rubbed grilled shrimp. All the food was awesome. The salmon was cooked perfectly, although i think I would have liked the chutney on the side, but that's small fries. The calamari was cooked perfectly, the shrimp were awesome (although the bed of rice it came on was meh), and the mini reubens were great as well. I was super excited to try it, and it delivered. Can't wait to go back!",review,gcyEUr4DXcbjnGRAWFtfAQ,0,1,0 +d7_jkx0VPx3uHsUl18iHMQ,2009-06-16,xE2MKvzes5Twg-jfAe8s4Q,5,"Beer...or Yoga? + +Located in a small center just east of Four Peaks Brewery in Tempe (a reasonable distance from the light rail on Apache), is an amazing, classy studio for the Mind-Body connection. + +Mr. Mustachio had decided after doing a couple yoga classes with me at the ASU gym that he loved the stretch, so pursued a class for a semester at ASU this Spring and had the pleasure of practicing with Tish Hegel. After seeing his body transform to only 16.2% body fat, all his jeans get too big on him and fill out his American Apparel briefs nicely I was super jealous. He raved about his teacher and I could tell he had de-stressed a lot since he started the practice. + +Luckily, she opened up a studio recently, and it simply goregous. The waiting area is filled with yoga material and a very calming space with a remodeled bathroom and dressing rooms to change if coming from work/school. Not at all cheesy like the SouthWest Inst with the way too many angels imagery (creepy!). But the gem is truly the practice space. Hardwood floors, high ceilings, a beautiful staircase, tasteful decorations and absolutely NO MIRRORS. + +That is right- the only person staring at my pudge rolls is my teacher and who-ever isn't focusing on their tree posture-not the entire class! It really relieves a lot of stress and helps me concentrate on how a posture feels as opposed to just looks. + +As for Tish Hegel, she is simply outstanding-she has so many credentials, you have to read her biography for yourself. She has been practicing for a loooong time, and her hands-on instruction and confident voice echoes in my ears even now (bring those shoulders down!). + +So far, I have done: Ashtanga Inspired Flow (pretty intense, really hurt for 3 days, would recommend after getting into yoga for a while), Sivananda (ditto), Focus Class (did a lot of bike riding and she focused on everybody's body issues and did the sequence right then and there for us and my lower back and knees felt amazing the day after) and this morning brought my friend to Kinetic Yoga: Morning Movement and Flow, which kicked our 6am asses a little bit but we both felt amazing afterwards! She does tons of modifications, is always making sure we are okay, and is just super personable. + +I did the huge package since I didn't renew my ASU gym membership for this summer, but you can do drop-in. + +Now for the cliched Yoga Review ending: + +NAMASTE!",review,mfvezpz6ohS0NQk3DZdvqQ,11,16,8 +8ZwO9VuLDWJOXmtAdc7LXQ,2010-10-31,bxPZPvBJp5HwyKVHhcUMLQ,4,"Great hotel in Central Phoenix for a stay-cation, but not necessarily a place to stay out of town and without a car. Not much around the area, and unless you're familiar with downtown, I would rather have a guest stay in Old Town Scottsdale, etc. BUT if you do stay here, it's awesome. Great boutique rooms. Awesome pool that's happening in the summer. A GREAT rooftop patio bar, and a very very busy lobby with Gallo Blanco attached. A great place to stay, but have a car!",review,qLCpuCWCyPb4G2vN-WZz-Q,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2009-03-18,EUCqs_gfKZi1YoKVkWjSYw,1,"really, I can't believe this place has received such high reviews from people. + +my lady and i walked in, and were greeted rather rudely by a pretentious bitch at the front with a monotone ""name please?"", instead of a warm, friendly, french welcome to this rather charming looking place. we didn't have a reservation, which from the looks of how dead empty the place was, didn't seem like a problem. until the hostess whisked through her reservation list and explained she'd try to ""fit us in"". it was 6pm, the place had one other couple dining, and we were informed that the next party was arriving at 7:30. we weren't really looking to hang out. it would have be awfully lovely if yelpers would have informed of the need to MAKE RESERVATIONS before going in here, because if you don't, you're automatically a piece of shit according to the staff. sorry, i don't plan very much ahead. next time i will, and it won't be here. + +anyways, after debating for a minute or two with herself, the hostess decided we could ""squeeze in"" and sat us right on top of the other couple inside the restaurant. she informed us that we could cork our own wine, for their low low price of 9 fucking dollars. in words only office space could adequately describe,""coup des tartes, what is it exactly that you do?"". + +the food was good, nothing spectacular for $25+ a plate. we got a salad with apples and nuts and bleu cheese, which was served warm. now this is the first warm salad i've had all of my life, and by no means am i some sort of wordly food expert, but i believe salad should be cold and crisp. not soggy and warm. yuck. the cordon bleu was tasty and filling, however, the wobbly table was an extreme annoyance when cutting through the chicken, but it was solved (with no thanks to the staff) by placing a jack-in-the-box gift card under the leg. i will admit, the mashed potatoes are some of the creamiest and best i've ever had. my lady got the pork tenderloin, which had a strange peppery-sweet pairing which i didn't particularly care for. we were broke for desert, so unfortunately we didn't get to try any tarts. you would think for a place that promotes itself as being so poise would get some fancier menus, other than a $.15 piece of cardstock copied in bulk at kinkos. + +this place was rather disappointing. i honestly thought it would be way more comfy and welcoming inside but it really wasn't. it presents itself as being so high class and french and oh-la-la wee wee, but when it comes down to it, it's still located in a tiny shack of a house at 16th street and highland. maybe if it were located in the biltmore i'd give it a bit more cred.",review,HY9qpAamqLXFoa7xMwNntg,1,1,3 +5GpvSL1tlAjpgdJKZ5eLpg,2012-12-30,1RSEAeAWilUywt1B3SAkSA,4,"Great place to have a meal with family, can be a little on the loud side cause ita always a busy place, recomend calling ahead and getting name put on waiting list, reservations party of six or more only price range moderate, but well worth it",review,P-9g9-6OriX0ElKpZknUKA,0,0,0 +O-Xa9GCFWI65YiBD5Jw_hA,2011-04-22,pyCM8bH0z8fp6cWg6f2hKQ,5,"Figured it is time to write a review after going here for quite a few years for dinner on special occasions or just to have some of the best seafood and Bone in fillet around. + +First off you have to understand that the cuts are top quality so you can order almost any steak off the menus and be dazzled by the flavor, which is fantastic to the point that adding anything to it would destroy the integrity of the taste as is. + I mean the meat is perfection on a plate and this needs no other explaining. + +If with friends or even your significant other you must start with the the seafood tower, which can be order in many different ways to match your appetite and likes. When presented at the table you and your guests will be blown away at the quality of the seafood and rightly so as it is brought in fresh daily. + +The sides are too awesome in their taste and quality and i suggest the Lobster mash or the Maestros Mash potatoes neither of which will leave you hungry in their own right, but often wanting more :) + +Wine selection is great and the atmosphere is top notch, but topping it with some of the best servers in town makes this one of my favorites for entertaining. + +you will not be disappointed.",review,qT17WVkJi0RvQ4nNPN6NDw,2,1,0 +9lDZ2d6oRpFsSWwDCCDQOw,2009-01-31,WD99RuBcxqvYRCFTf_mT3A,4,"I was only able to play the front 9; my wrist was hurting too much to finish, which is a big deal because I live in IL, and was returning from LA and stopped here specifically to play the TPC. Oh well. + +I was a single, and got paired with another. The course was pretty open, but we took our time and enjoyed the round. The front nine, although rarely shown on TV, is quite nice. Definitely challenging enough, and I didn't even play the back tees. + +It was fairly easy to get on, the bar had pretty good food for a clubhouse, and the staff were very helpful. Definitely recommend the TPC.",review,Y9LxzNvQxKwLhy2Zo7R_4w,0,0,0 +vARjqeIkSNsazHltujiq4Q,2010-05-18,aRcp0rlSuAiuF-CDDZx9nQ,5,"I can't describe to you how amazing these gourmet adult hot pockets taste! They literally MELT in your mouth- a few of my favorites are the Cajun Chicken, Dill Salmon, and the Stilton & Steak---Bon Appetit everyone! And don't forget about the all day everyday-$3 car bombs(you can't beat that price) their happy hour is amazing, too!",review,ZoBrIw-7VgCOO30GJVCoOA,0,0,0 +145SQ_msdQ1yo7J0E63VoA,2011-03-15,VqNdpXrssjJrC0Z_swPUdA,1,"I was really excited about this event, maybe my expectations were too high, because I was really underwhelmed. Very little shade, ran out of water, by the time I got there at 1pm (other obligations) 20% of the vendors were out of food, and by the time I ate my way through some, everyone else was already out. 60 bucks for that? I don't think so. + +And when I mentioned it to ""the person in charge"", he was patronizing, invalidating and kept telling me how happy the chefs were. Well, I'm your consumer, big guy. + +Sorry, Devoured, wish it could have been better. + +What food I did try, was pretty good.",review,ASi6ZgbbwXIwU2H24uANmQ,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2010-07-06,6iEP6dvHIefVMMnjeDRNcQ,1,"The beach paradise of Ixtapa-Zihuatenejo awaited us....unfortunately, so did a connecting flight in ARIZONA of all places... + +Long story short....1/3 of our luggage did not arrive at our final destination, various articles of our clothing are still missing as well as my cell phone charger...not to mention security forcing us to open sealed containers of my son's baby food and milk for litmus tests... + +I looked on the bright side....at least we didn't get deported =)",review,8tbXmjYGsYFZXk6ppuwRWQ,7,7,9 +Hgbxen9iKGL4AH6kKgC8YQ,2012-12-29,CxVOhu043DTW4zPTsQnJPA,5,"So very Portlandia in its hipsterness and decor. Premium coffee roasted in-house, in the middle of the desert, no less! Who would have thunk it. + +Baristas were profesh and friendly. They even warmed up our pastries upon request. Perfectly foamed milk and fruity noted espresso. I hope this place has a long life in Scottsdale, where great coffee is few and far between.",review,cwm_3br1CTH8IO8ZwWzFLg,0,0,0 +yb17xHvhDJthJGS10uhFeQ,2009-01-21,ZbSLbPWeDfSL1HxyiSRqEg,4,This is a little hockey dive-bar located in the Arcadia area. TV screens hang above the bar & as you look behind the bar you can see the hockey rink and players. Enternaining as the other review said. I had Dunkel Hefeweisen and my girlfriend had a Corona. Good times as a group of kids played Rock Band and sang off-key Nirvana covers. I like this little hidden place. Just be prepared - it's your average little bar for the average Joe guy.,review,7izaZThzAWk2UjrDTL849w,2,3,1 +0QrA-Klgp1R-GzUr6uJS7Q,2010-01-23,pMm0qHdnBWd_PWGyYEOnWg,4,"Love this place. Actually, today was awesome, because they usually only offer the ""express dozen"" through the drive thru, and the kids didn't want to go in, so the dude behind the speaker actually fulfilled my order as I wanted. + +The only thing that bugs the hell out of me is that they charge for 2 donuts when you get a long john. :-(",review,H4ewd_HH1DE0Y8RbC_7HbA,3,2,2 +hfl62LX14YqNpG0g0Tj6_Q,2011-04-15,E6-DKEktgxA_fLEnfguAwA,4,"I grew up on Empanadas in Panama and I have been hard pressed to find anything close to them in the U.S.. today I found them! + +A perfectly crunchy crust and the beef was beautifully spiced. Usually Empanadas are bland and soggy. They did a great job on these. + +I usually don't like rice, but the rice and black beans were wonderful. + +Service was great! I'll be back!",review,ziCKT5n58tcVfgksImx0VQ,1,1,0 +rRe2eLIQ4MQ7d6vFL26Qdg,2011-06-15,i5Ms8r5AMRa-wcU5-necFA,5,Awesome subs clean and friendly well priced.,review,Gi_ZP3Pjdvc9-a8aS3SH0A,0,2,0 +E8z9E0aFDYwC7KQuEU3GYA,2009-03-09,Y8GAudCnbK-05qkFzLsv0Q,4,"Had dinner and brunch, not on the same day...the dinner was good, although I thought the mandala masala could have used more flavor. Brunch was great, tried 2 different tofu scrambles and both were very good. Service is...let's say uninterested -- it's hard to be burdened with angst and chipper.",review,0NckJhx0qXykvvhsm-p7MA,1,1,0 +yGmdo1ENajB98iryHGoWFw,2011-04-12,cALYebKb5hygdKHqlQJu2Q,4,This is a very interesting place. Don't go here thinking it will be classy.,review,thlVIc8s6ZCP37UGMf3yDA,0,0,0 +QGeliKMObpVZ3jP89--ZIg,2011-03-20,SawdMXLYD5ytRmMFvY4nmA,5,"I LOVE Chic Nails! + +I used to go to Tip & Toes on 48th street and Ray Road, until one day they were ""too busy"" to take my friend and I in for pedicured. We discovered Chic Nails and have been doing all of our manicures and pedicures there since. + +The staff is extremely friendly and they give the best pedicures for a very reasonable price. I highly recommend this nail salon over any other! + +P.S. It is extremely close to CK's Bar & Grill to go for happy hour after! :)",review,QAwWrE6LLbVHNtZOoDdRRw,0,2,0 +bc-lE-wGVAsUrX-kJhtY-Q,2011-03-06,j-jMQdELr6AFkCcEHxB7ww,5,"After the Padres Spring Training game, we had reservations at Don & Charlie's in Scottsdale . None of us had been here before and it came highly recommended by my dad. As soon as you walk into Don and Charlie's your eyes start feasting on all the signed baseballs down the left wall. Now everywhere you look from floor to ceiling and even the ceiling itself is covered in memorabilia and autographed items from athletes of all sports and other celebrities. Besides the amazing assortment of sports artifacts, I especially like the Cactus League Beer List which pairs a beer with each city that has a team in the Cactus League. Colorado = Coors Light , Texas =Shiner Bock, Chicago =Old Style, and San Diego =Stone IPA, etc. Also worth mentioning is the complimentary chopped liver platter with rye bread and bagel chips they bring as soon as you are seated. I had the ribs with coconut shrimp combo which was great. I wasn't thrilled with the side dish: potato's au gratin which is a $2.50 upcharge. They also bring a huge bowl of cole slaw with each entrée or you can choose soup which comes in a smaller bowl than the cole slaw! We were too full for dessert and as we walked out, this place was packed! I found myself trying to take in as much memorabilia as possible and then on one side of the crowded lobby there sat Willie Mays himself. He was signing his book (or a baseball) for a $200 charitable donation to his foundation. Needless to say, I 'm not bringing home any memorabilia myself!",review,v10WwWFKPAK6aKjghrLj3g,0,0,0 +CrBsdxqOjPdnfsDxV89GJQ,2010-02-17,SmUMyCUNrT9HEo_DXdgUuQ,4,"I have to admit that I find myself thinking that I like mine tall dark and Russian. + + It's nice to have a coffee shop near by that's not Starbucks, has good coffee and reasonable prices. So far I just stick with the house brew (which is smooth and not too bitter yet not too sweet) since the fancy coffee drinks usually have many calories that I do not need! I have tried the blueberry muffin-quite yummy as well as the chocolate chip cookies- delicious. The cafe is attached to The Great Indoors so you can people watch, browse thru design books or take a leisurely stroll through the design center. It's a great way to unwind or perk up on your choice of caffeinated beverage.",review,bZFRqP7s0Vszxeu8_IwYow,0,1,0 +m9Wqqma30o-hH2fAX7dnug,2011-03-14,oTB_mpCKcu-8wayQQuCDZw,5,"Best food, super friendly staff, and great prices. Love it!",review,FpCmGLWHe5Y-kDS7ZYaF5w,0,1,0 +M3zLQRbSF_VcGukkzxXc4w,2010-06-15,1e_YRoF0lrA9-4tvdym_Sg,5,"Christy is an amazing cake artist. She has an impressive portfolio as she has a flair for creativity. Her cakes are amazing and are truly one-of-a-kind. She also has several delicious cake flavors to choose from or she can create one for you. She has made several cakes for our family and I have been impressed with everyone of them. I was also excited to see her compete on TLC's Ultimate Cake Off show early this spring. If you're looking for a sculpted cake or one that will be the center of attention at your next party, then I recommend you call Phoenix Cake Company.",review,_w_hrcZ-9uObIBepDmLJwg,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2011-02-19,WqLc0KSfMHGoWNtvPque5w,4,"OK, Sweet Pea and I love us some Coup, and it's not just because we've been coming here for years- since I lived across the street and could see the restaurant from my window- or because we got engaged here (which was incredible.) It's because the food never disappoints. You can go to restaurants and have varying experiences from the best meal of your life to terrible, but Coup is not the place for that. It's consistent. And consistent can be good, or bad. +As consistently good as the food is, the service is likewise consistently slow (albeit friendly). We went here for Valentine's day which we've been several times and I highly recommend. It's romantic without being showy. They have a special Valentine's Day set menu of 4 courses which is always interesting and good. And, if you go on the day before Valentine's Day, they still have the menu, but it's cheaper. Damn those greeting card ""holidays"". The menu is also consistent. The outstanding things are the brie brulee which is an absolute must-try as an appetizer, and the lamb shank. Everything else is solidly good without being great. The desserts are exceptional. I like the BYOB aspect of the restaurant, although, they do charge you a lot for ""corking fees"", which amount to just charging you for nothing since they have a corkscrew sitting on the table and you are in charge of opening your own bottle. +Coup, I love you. You get 5 stars if you vary your menu a little, please, please, please get more vegetarian (if any vegetarian) options, and improve your service.",review,GVH_iuoPc0aP3ZNYlWuKag,0,0,0 +WaO_hAunQrZ--vI308rHQA,2011-06-06,4jkSNOjZN-35vo1_Z2SL7w,3,Great food and awesome service! Even better that the Chef came out and personally checked on our experience. I will be back for more delicious BBQ,review,qT17WVkJi0RvQ4nNPN6NDw,1,0,0 +COc06ScpJTN15NXMf4gkqA,2012-06-17,MbLozRSxSjtMJ3YmPCms7Q,1,"See the huge sign outside that says $2.50? Yeah, that's for shirts only. I was caught off guard when I brought in my skirt and got nailed for about $3.79. As I sadly handed over my $5 bill, the lady at the counter said a lot of people had told her they felt betrayed by the sign outside. No kidding. I had originally been heading down the street to Regal on 7th Ave.--who does a fine job in half the pickup time--for the ""advertised"" fake price here. Trying to make the best of it, I told the lady at least I'd learned they had an onsite alteration service, and maybe that was worth a buck. UH OH. Picked up my skirt a few weeks later with some Jersey Shore-type chick at the counter, and was told I owed another $3.79. I flat-out refused to pay twice. She screamed at me, chased me to my car, wrote down my license plate and said the police would be visiting. Ni-i-i-ice.",review,UfMHoQ4lic1aCkXFa4TxlA,0,2,1 +hfl62LX14YqNpG0g0Tj6_Q,2011-06-20,xbXkOaXLbwFsCMgsH6T9Tg,5,"After driving down a teeny dimly lit road and coming across what looked like a medical office building in the 60's, my husband and I found the amazing Fuego Bistro. We had a perfect meal there. Amazing ambiance, twinkly lights in the courtyard, live musician. Great wine. Food was so unique and delicious- I'd describe it as Southern-Spanish fusion. This meal was the highlight of our trip to Phoenix. + +If you live in Phoenix, you have no excuse to not come here. I live in Chicago and I'm sure I'll be back.",review,kWIyajQP2mEv93yj34oemg,0,1,0 +AGar9KVq_W7YcF76avbDTw,2011-03-16,LbSa1y7dGRZc4z6TXFG4AQ,3,"As Target's go this one is standard fare. That consistency is part of their brand recognition. However, as a part of the Up-Scale Desert Ridge Shopping Center, I'd expect a bit more than a Standard Target. Don't they have some sort of a Flagship Target? + +Also traffic and parking can be atrocious at Desert Ridge. I drive to Target's and WalMart's much further from my house because the round trip time is less when I don't have to negotiate the teen packed Desert Ridge lot. Probably safer too.",review,P_LzcrlVXFdgBq_24UnlUw,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2012-12-16,39gCBTrQVeM4GVOt_wEoLg,5,"It's just like pizza bianco without the wait. This pizza is a 9.9999 and bianco is a 10. This place has a much larger menu and their deserts are to die for. + +If bianco has more then a 30 min wait just drive and or walk here.",review,a_V8LRfMxGvpGtTwR2olrg,0,0,0 +Y-NqaDy_1bb-Y5dQ33x-Pw,2010-07-22,15YFoHK5HPQpg1u_vwbqmA,4,"Sacks is a different kind of sandwich shop. They have some crazy ingredients like varied sauces and mayos, fresh spinach, grilled peppers, and all sorts of other things you don't see at a typical deli. Then they serve it up on a baguette, wrap, or wheat bread for about $6. The specials are particularly diverse and change daily. On the other side of the coin, their website is horrible and occasionally we find some things missing or not quite right, but we chalk that up to charm and whimsy. (We get a weekly Sacks delivery.) + +If you want a basic ham and cheese sandwich, you can get that here. If you want a sandwich like their Blue Bayou, which is spicy marinated chicken served with bacon, bleu cheese crumbles, cheddar jack, mushrooms, spinach, and chipotle mayo, all melted down, well, you can get that here too, but only on the days when it's a special. + +From their regular, artist-inspired menu, their Dali is an instant classic take on the egg salad: This one comes with lettuce, bacon, cream cheese, mayo, and tomato, on 12-grain bread. The Encore has prime steak, melted provolone, hot/mild/or mixed peppers, feta yogurt or marinara sauce, lettuce, tomato, and parmesan for $6.30. Seriously, give this place a shot and you won't be disappointed. + +Oh, and every sandwich comes with a lovely cookie. Brilliant.",review,8-2W5CmkDl9vrkxRpkiPRg,1,1,0 +0RqNRc6RiILzZxK9J8Kqug,2012-03-03,2dEtB3h8yZEONOmUJIUPZQ,2,This is my first time back in years. It will be my last. I was in the bar area for lunch it was almost 1hour 25 min before I could get out. Ten min before my drink order and almost as long before food order. A secound drink forget it. Guy next to me walked out.,review,uQYOGKahTkpR9wEVjaAOCw,0,2,2 +YEQkTCmphjr6XKPh4m93AQ,2008-06-20,L1SNUf6VQgG2rolLLvVgxw,5,"As mentioned earlier, the best thing about this place is the super cheap, but super delicious lunch bentos. You get a main dish, rice, salad, and an orange for under $4. If that's not enough, you can get double meat for a buck or two more. I highly recommend the ginger pork or the katsu. My friend I normally go with is a big fan of the white fish (fried or grilled). The sushi here isn't bad. It's nothing super special, but I don't come here for the sushi so it's not a big knock against the place. + +As they would say on ebay: A+++ Great Seller! Would eat here again!!!",review,jdoGEEy5s-5L1O_lNzEi2g,0,2,0 +StiQ_lcCY8sX4JI-J6Mufg,2009-11-06,i2WTOTbT1lqu0byxcnY-GA,5,"'twas the night before booyah +and all the through the city +people were piecing +some pretty shitty +costumes together +at savers, good will +george w bush +clintons, bill and hill +jay-z & beyonce +biden and obama +even saw kanye +oprah, super mamma +yep, octomom +brad pitt & jolie +and men as madonna +and lynn sue cooney +i went to Easley's +to see what they had +of course, it was madness +every kid, mom and dad +crammed into the isles +pulling on wigs +vampire masks +and noises of pigs +all being assisted +by the yellow tee'd staff +so very helpful +no panic, just laughs +""yes we have liberace +in fact, we have two +try both of them on +i'll grab 'em for you"" +they found me a boa +a wig and make up +took just fifteen minutes +case opened and shut +and all around me +this repeated itself +the people rolled in +pleased people rolled out +into the darkness +parties around town +wonder how many +were out gettin' down +in get ups from Easley's +i'm guessing a ton +so check out Bert Easley's +make up, magic, fun +bright yellow building +south side of mcdowell +since nineteen sixty four +makin' halloween, howl",review,QKW7sYPWPSsIcWqSiDzChQ,6,6,6 +1Q_H3BLhKBymF6Se8FfZNw,2009-02-19,_o_WRkKLk7NJeOO6NsOmMA,1,"Unless you are a regular or look like your wallet is fat don't expect the best service. Entrees cost about 20-38 bucks and Anti pasta runs between 5-20 desserts are all 8 bucks unless you get aged balsamic vinegar. They also have a big cheese selection. + +I made reservations for this restaurant and they sat us by the back door. The waiter never once explained anything on the menu or suggested a wine to go with our meal. He didn't even tell us about the cheese menu except to check on the one we wanted. The other waiter for a table near ours went out of his way to explain the menu and go as far as to tell his tables how to eat the cheese ( it comes with jelly's and such) . + +My meal was good I had the duck. She had the salmon which tasted very fishy. Not fresh at all. The wine was 40 bucks for a carafe ( maybe if we would have got a 100 dollar bottle we would have gotten better service) The Dessert was good it was a rich chocolate cake with nuts and chocolate sauce. Nothing too special. + +Overall the experience made the meal not worth the 115 bucks in these times not to mention they overcharged my girls card for the drinks at the bar. If we dont want to give 25% don't charge it plain and simple. + +Just a warning reservations and customer service mean nothing. We mentioned our complaints to the waiter and manager. We received an apology but how bout comp our dessert or something. Hyatt Gainey staff is also rude for the most part. + +Two thumbs way down.",review,JnRT9i2d71pY8D8ngzCz9Q,0,1,0 +qRBeZAFiId0ainBtpFSGuQ,2011-07-24,NqIsMdYelNlkeK32kJPsCQ,3,Returned Sunday afternoon and was pleasantly suprised. Happy Hour is 7 days a week 3-7 pm ; ) I recieved great service at the bar which was friendly fast and efficient(Janessa) .I ordered couple of drafts and wings with good happy hour pricing! I will be back!,review,xOLR24JjRq3nE6lW-869Ug,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2010-08-24,tiSpPFzMEWbEZf7mXJ-O6w,4,"LOVE THIS PLACE!!! The food was amazing,who cares if it's chain restaurant. + We had tried to go the night before but they were packd so we made a reservation for the next night.It was really busy when we go there but we were seated immediately.Our server was really nice and very helpful when we told him we had never been there before. + We ordered the fried alligator app,and loved every bite of it.I had the filet mignon and rock lobster tail.The steak was cooked perfectly and was a good size for the price.I'm not usually a huge fan of lobster but wanted to give it a try,Pappadeux has changed my opinion about lobster,the meat came right out of the tail.It was buttery andjust plain yummy! It was the first chance hubby and I really had a chance to go out to eat without the kids,so we really wanted to make the most of our time.And we wre definetly able to do that here.Refills kept coming even after we had paid the bill.I also loved the live music from the jazz quartet making its way around the room.The only thing thats keeping me from giving it 5 stars is that the tables were too close to each other,and it was so loud I could hear the discussion at the table next to me but I had a hard time hearing my huband across the table.I will definetly be going back to Pappadeux over and over again.",review,PFaAf7rqKfWXIPiG1qxCiw,0,0,0 +F-ykHfGY9lWr12OJ_Ofy7A,2012-03-14,ty51pvsTv3KxBaeHFWFZrw,3,"Hit or miss food. I ordered the meat plate with corned beef, zuch and asparagus for the sides. Corned beef was WAY too salty, and same thin style you get on a sandwich. I sent it back for a chicken breast bone in, which was the driest chicken I have ever had. The side veggies were good (perfectly grilled no butter), and accompanied by garlic bread. I think this place has potential but I ordered wrong. I sat at the bar and service was mediocre. Price was pretty low though. Good place to watch the game.",review,DowPyTFtqen32BuOmzuBXg,0,0,0 +0BpMvu5B9fY-KEbOuxLtFQ,2011-04-05,Fzn7pH4L44WChbaMYaZmxQ,3,"Absolutely the best sushi in the valley, hands down. The fish is fresh and their spicy tuna is like no other. However, the service is extremely slow. We once waited 75 minutes to get our lunch and the restaurant wasn't even full. Can't say much about the cooked food though, but the sushi is amazing.",review,rz5kClFIidz_-sfJm4V7MA,0,0,0 +XMRj865sZBPWCI7tx0uBWw,2011-03-04,LfMuF4r-UJFf-ji1pAVlBA,4,"It was as good as everyone says! And sooo inexpensive...appetizers, entrees, and drinks for 3 people...about 30 bones. Not to mention the mountain of leftovers we brought home.",review,P4XRTKPDREmWvPIg81CzUQ,0,0,0 +CvRGjwCsrQs1DYYL3z8R7g,2008-02-27,xCEvHEszA3-CmFqtHacVQg,1,"Take your money elsewhere, unless you've got kids. I really try to like this place. A family member signed me up for the discount card, so I've been going more often, but I just don't love it. It's simply ok, but the prices are outrageous. And the sounds and animatronics are a huge distraction from the so-so food. The cocktails are alright, but, again, the price is not right. The ony thing fun about the place for an adult is the gift shop and the light-up cocktail glasses (which cost extra.) I've seen a lot of happy families in here though, so I bet it's better if you have little ones to bring along.",review,jKeaOrPyJ-dI9SNeVqrbww,0,0,0 +UI5ghIUeHYxzwSfaDVUXOA,2010-07-21,_gh5ddLVeF7xEQVUKJLiVg,4,Friend and I were planning on going to Postino's next door but it was already packed at 5:30 on a Thu... Anyway we tried out Aiello's and were happily surprised. I had the Scallops Venezia and my friend had the veal. Both were very well done and the bread was delicious.,review,w70p852jPyabsc2JEIis4w,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2012-02-16,_Ctic3_Iuw0ECtqH2Yw5yQ,5,"Took my fiance' there for Valentine's day/ Birthday. I did a lot of research of romantic places around the Valley, and this one really caught my eye. Immediately after walking through the door, you'll notice a dark and romantic ambiance with a lot of candle light. Seating is a bit tight, but it wasn't bad enough for me to give it a lower review. We began with an appetizer called ""Table side guacamole"" which was incredible to say the least. It literally is made in front of your table. Then it was onto the main dish... Build-your-own Pork tacos. Talk about tender meat!! The shoulder of pork literally fell right off onto the fork. The tortillas were exceptional, and so was the tasty sauce which included pineapple glaze. So, the food was absolutely delicious...but the service was equally impressive. My water level never reached the bottom of the glass the entire night, and I drink plenty! Everyone was incredibly nice and cheerfully said ""Happy Valentine's Day!"" and ""Happy Birthday!"" to my fiance', which made the experience even better. A fantastic place that I'll have no problem recommending to others to visit!",review,cCwj4RJSKU4-o9ZZ1VTtmA,1,0,0 +qkbloHdDZuHf_0wTqUGPjQ,2012-06-08,mmAi-uXUcfWLnH8qK2gfug,5,"I have had a great experience every time I have been there. The food is hard to beat and the service was pleasant. + +Portions are reasonable, not huge (I'm a big feller), and I was satified every time I ate there. + +Very pleasant environment, clean, spacious and calm.",review,ENJpS6i-s9hWiQg9ZGwevQ,0,0,0 +1DjRf3AdYpdlC1Df9KD6rA,2010-08-15,28guWjT8KRZKvMZkltdzew,4,"My husband and I went here on a Saturday night for dinner because we had a restaurant.com gift certificate. Yes, it's in the Sheraton, and yes it's near the airport with not much else around, but I have to say- we were both impressed. + +We started with the Gambas al Fuego, which were deliciously spicy (although I thought that $10 for four shrimp was a bit excessive, no matter how tasty they were). We both had house salads with blue cheese dressing- I think you can tell a lot about the quality of a place by their salads. They used fresh field greens, the tomatoes were perfect and sweet, and even the thinly sliced onions were sweet and delicious. The blue cheese dressing was fantastic, and had actual chunks of blue cheese. I was impressed, for a hotel restaurant. For our entrees, I had the hickory smoked baby back ribs (good, but not phenomenal) and husband ordered the chorizo chicken- I am so glad he shared a bite with me, because it was awesome. I was really wishing I'd gotten that instead of the ribs. Oh, and I especially wanted to mention the asparagus that came with my ribs- tender, cooked just right, and flavorful. This place uses quality ingredients. + +If it wasn't so out of the way, we would definitely come by regularly. My husband was especially enticed by the prime rib melt sandwich, so I think we'll be back during lunch in the near future. + +The only reason I'm not giving 5 stars was that the atmosphere was pretty dead. Which I suppose is understandable, given that it's inside the Sheraton. The decor was nice though. They should have a free standing restaurant in an area with more traffic- this place would be a hit.",review,4B6aJJTELjivUXrL_LTlqQ,0,1,0 +nFo_63pTr-4ZhakuaRFOCA,2012-03-30,L1ur4N-XFG_kviP0M2_SCA,5,"I love this restaurant!! I have been a fan of the Newport Beach location for years. Scottsdale definitely did not disappoint! The staff is friendly and knowledgeable. The drinks are fresh (worth the extra wait for the tasty Cucumber Jalapeño marg). And the food? Goes without saying, it's CRAVE worthy. This is a new location, so I expected the usual growing pains. But overall, a great dining experience. Welcome to the neighborhood, SOL Cocina!",review,E8Gh1Mv8Jtb6eJQjNmIPXg,1,0,0 +rZbHg4ACfN3iShdsT47WKQ,2010-07-13,hh1L68RTi1FCHNfXGHkc7A,5,"That darn Smokehouse burger is awesome. 5 stars. + +The smoked corn was a little Meh... it was oily like not butter oily... not a huge fan of the texture either. I like corn crunchy and it was not. + +Service was great. + +I did see an unmentionable bug running around near the back entrance towards the chicken rotisserie thing, but bugs have to eat too right? (still 5 stars lol)",review,C6IOtaaYdLIT5fWd7ZYIuA,8,9,6 +CgHcO651uEE3aalrkm4boQ,2007-08-22,L8C_ZWqXelQDG_SzAp3TkA,1,"My friend kept telling me how good their lunches are... I tried it, but it didn't do anything for me. The sandwich tasted like something you can get at Safeway, but twice the price. For being called a Purveyor of Fine Foods, I expected the food to taste like not just any ordinary sandwich. + +What I had: +Ham, cheese with portobello mushrooms on a panini with 2 sides of pasta, one was parmesan and the other was macaroni. Maybe it was the panini bread. I think the parmesan pasta was made there, but I know for sure the macaroni was not made there, it tasted like something I had at a picnic which was in a carton. It wasn't anything to brag home about. + +I found out the head chef made my sandwich... keep him in the kitchen and away from the customers, no personality whatsoever. I asked for his suggestion, and his reaction was ""anythings good."" + +Normally, when I go to AJ's, I go for their desserts. Their desserts are fabulous and you can get individual servings at a reasonable price. I can take an assortment home and have them for later. + +Our company does use them for their catering and I've had many compliments on their dishes, but pass on the lunches.",review,QSYnt4piL87oEWJHJ8_pGA,0,1,0 +huxYC5ZvUwJdJE3tfhnpIQ,2010-12-07,Oz9HXBHI8cqTeFgEusyUrw,5,Very friendly and knowledgeable guys.,review,nM3vfxr6fcnN_nXdzwbVCw,0,0,0 +hLRoMJv9KSoBLJILh2TwOg,2011-12-10,1-9CLP4RWHJbNThB7r1ErQ,3,"The florist manager is great, but i have not had a great experience with the night manager. He seemed upset that i was stopping him from tidying the shelves to ask about putting an order in for flowers. + +He said he had no clue how to order flowers and could not help me. I would need to come in and speak to the Florist Manager in the morning..... Well I work and i wanted to order flowers as a surprise thats why i was there in the evening. + +thought it was odd.",review,-Wa5j14Rhps3DC2SMaaatQ,0,0,0 +c0iszTWZwYtO3TgBx0Z0fQ,2008-04-23,7Xmf43U-uyrL6FFtq6OSBA,2,"I feel the Days Inn Tempe is best described as ""a place where you can purchase the right to sleep for awhile."" + +I booked my 10-night stay on Travelocity for a non-smoking room, yet when I entered the room I almost choked. It was disgusting. I've never had a smoking hotel room before and I will make sure I don't again. They said they couldn't move us to a different room. + +My local lady friend brought over a bottle of wine but forgot a corkscrew. No big deal, I thought to myself, as the front desk of a hotel will surely have a corkscrew. Nope. Coors Light it is. + +The towels felt like they were made of cow tongue, and they missed our wakeup call one morning making me late for a training class that had cost me about $500. + +I'm awarding one star in addition to the minimum one-star rating because I got to drink cheap beer by the pool in 90 degree weather for 10 days, and there are a few good places to eat and two dollar stores very nearby. The dollar store had a corkscrew.",review,rVlgz-MGYRPa8UzTYO0RGQ,1,3,1 +sbsFamEj5wDxNAjUKrMcSw,2010-09-15,4h1s3CFZX8QjIRmPX1URUw,3,"Came for a friend's birthday and really was not that impressed. First of all, it took us a while to find parking as this place only has street parking and a few spots in back. On Saturday if you are there before 7pm, all alcohol was 1/2 off and some appetizers were on special. We ate dinner there and the menu was very limited. The food was okay, but our burgers were over cooked. The service was slow and it took us a while to get our check. I'd go to hang out again and have a few drinks, but I wouldn't suggest making this your regular hang out.",review,4xaC4c660LOb2qdVeSZfqg,0,0,0 +aBjgE5pLhtz4RGGR-IWpGA,2012-08-13,LAXS5fIoyHBmRe-gJxUcQA,3,"Too bad about Mandalay Noodle World. Maybe if they had stressed better service and played up the Burmese aspect they would have had better luck. Who knows? + +Betito's moved in, and they're okay. The wife and I stopped in yesterday. I had a carne asada torta and a taco and both were about average. Their hot salsa took it up a notch though. My wife had something with diablo in the name (sorry, I'll have to look at the menu when I get home) and loved it. They do the usual menudo on weekends and the whole place is more or less along the lines of a Filiberto's--not that there's anything wrong with that. The whole bill was less that $20, so prices are good. + +Clean enough place, cheap, food is okay, and service is adequate. I would not go out of my way to get there, but if it is in your neighborhood it is worth a try. I'll probably stop here from time to time.",review,1wMGLaMIH7CcmJ2htS1rmw,1,1,0 +08Z_Zzp8PyEmWWpYurIO-Q,2012-03-07,skfhecYPk8vURCcrfTWtUg,4,"Excellent service and food. + +Very clean. + +Friendly folks. + +Beautiful patio",review,dCrd49_lbC3YAgTOZZwYmg,0,0,0 +K13dEvg4uimGQ1OcE5vGZA,2010-09-19,H8Uhlrj1bEaAgK5J9SomPw,4,"This is my 2nd time to this AMC. I like it! It is huge and clean. The wait for tickets were quick and they have it set up that it is a hotel check in. Not behind a bullet proof pawn shop set up. LOL! The concession area was huge with mutliple lines open. Not much of a wait either. + +Walked into theater #10, not too shabby. Pretty big screen and clean seats. The speakers sounded great. I had a great time.",review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2012-03-10,QESrotRf2_9329fpBgKvsw,5,"I have been here several times now and have never had a bad experience yet. Good food, good service; no complaints. Still have never made it here for happy hour, but their specials during that time seem like quite a deal. The staff are always friendly and seem to remember us from one visit to another. I've only ever eaten sushi here, but they have a lot of other menu items that I would like to try at some point, but I always turn to the sushi as it has always been good and fresh. I would recommend trying this restaurant.",review,psBJOZfXxUPHmF8mi8G0pw,1,2,1 +odhXwWaYZvD_icIN6f_DbA,2012-09-19,ygVApLq3sbc_U-Y9zFWRdQ,3,Affordable and good. Clean restaurant. Will return.,review,_tBu-2i9uT6LFxh-TyEOHA,0,0,0 +uxoibUaXA-lRXM37ZV8Bsg,2008-12-20,OUhKpg-1LG7bpyxHLtbJDQ,1,"Absolutely horrendous. This post office will lose your mail (repeatedly), laugh about it to your face, lie about it, blow it off, make it seem like it's your fault and make you wish you had sent it UPS.",review,VKiWDL608wBRQtk05ts59g,0,3,1 +87EXGxQk0nrM41NCfB1HTQ,2011-06-19,XGZzqC_pPOwqO5QZhHdBNw,2,"I'd love to give these guys a better review, because they were very friendly and professional. However, I was very dissapointed with the service I received. I'll type the one sarcastic comment that I can't get out of my head and then I'll get to the more substantial feedback. I thought a detail was supposed to be a little more DETAILED. + +Here are the positives, because I want to give credit where credit is due. The guys come to you and are very polite. They were a little delayed, but called to let me know which I appreciated. Also, they do a great job at steam cleaning the carpets and the exterior wax job was awesome. + +On to the negatives. When I came out to see the work they did, I immediately noticed several smudges in the interior which they cleaned after I pointed them out. Also, I noticed a scratch on the passenger side leather seat and a hole punched in the carpet near the pedals. Anyone who knows me knows that I am a DETAIL oriented person. Those defects were not present in my car prior to this job. To add to this bit of a let-down, a day later my boyfriend and I noticed that they didn't even touch my trunk! They didn't even bother to vacuum it out! + +When you advertise on your website ""showroom quality,"" I expect showroom quality. Overall review: good job on the exterior, attention to detail in the interior was very poor. I am really dissapointed that the attention to detail just wasn't there. I was expecting so much more from a detail job.",review,XYVfcuxJ4x805zIWvJ17MA,0,1,0 +V3lQtk1LgwAEcF9j-BzchA,2012-10-23,ExhhNpUulh2Yjog-nb6O7A,5,"I'm from Chicago so I'm picky with my pizza--this place does it right (NY style)! I love the ""hole in the wall"" feel. Every customer that walked in was a regular which was a good sign. I ordered the Mozzarella sticks and a large Monster Pie (Sausage, pepperoni, bell peppers, onion and cheese). The mozzarella sticks took a little while to come out but they were cooked to perfection. They also threw in a few garlic knots which was awesome. The pizza was unbelievable--I think the crumbled sausage really did it! They have great deals like large pie & 20 wings for $20 which I definitely will be taking advantage of during football games on Sunday. Glad to have found a new place where I can also be a regular!",review,LZxnr-c-VsG0N4Ef-9iAyg,0,0,0 +F1I_TEBT4Wpj0eDsoXKk3w,2012-12-10,BswsfdATKn9m2EiT-2_MZg,4,Very polite staff. Did not wait very long to be seen.,review,efZh8TKpCz5AJTcuAnBxRA,0,0,0 +wl51t6lT7leiX64SlkOx6g,2010-10-30,tCps1BXBR4ZUOF-uTxUBMw,1,"Other than the really great happy hour prices, its hit or miss with this place. More often a miss. :( + +The food is less than average, the drinks NOT strong ( at least they are inexpensive) , but the service is truly hit or miss. + +I'll pass.",review,WgdgOlb-OIwKxb1p4xWwRA,0,0,0 +R3UFldNkrGqOsDgD_cw6bA,2011-09-17,Qp7lu-oy_cLz71bjLgpNjA,4,"Yes this is a chain but after traveling in Maui for a week and then coming back home to Kahlua Pork from Rumbi, I can honestly say that the Kahlua pork here is better than any of the places I ate it at in Hawaii. Crazy huh? The Kahlua pork at Rumbi is so moist and tender and when its paired with some of their magnificent teriyaki sauce and Rumbi rice (rice cooked with coconut milk and beans), it is out of this world. The Kahlua pork plate at Rumbi has lately been the first meal that comes to mind when I want comfort food. This is a bit of a problem cause that is normally on a work day during lunch and after eating a meal of pork, rice, mac salad, and coleslaw, I am just down right exhausted and in dire need of a nap. +I used to come here quite frequently but forgot about this place and I am not sure why. Besides the Kahlua pork and Rumbi rice, I can say that their mac salad, sweet potato fries, and their beach burger are really good as well. If you are looking for something different, yet tasty and satisfying, try Rumbi. I think you will enjoy it.",review,mlBC3pN9GXlUUfQi1qBBZA,0,0,0 +35uDzLpJlbSztgkJLtg1kw,2007-10-14,jUlDw4GmEsdv8mHqJ3wFfQ,4,"I like coming here when I want to pretend to read and then do some grocery shopping. I say pretend to read becase, invariably, I start eaves dropping on people seated near me. Usually these people are either a) real estate professionals on a lunch meeting or b) families with small children who are saying ridiculous things. I've also run in to a guy my friend used to date while he is on a date... that was pretty strange. I like their salads, the breakfast sandwhich with feta, and the portobello sanwhich (on ciabatta, not the recommended bread). I am in love with the sweet potato sandwhich, but it is huge. I recommend ordering a half or sharing it... even then it is a lot of sandwhich. A scone will fill you up for the entire morning and afternoon. + +My mom requests a trip to ""the place next to the cool bookstore"" whenever she comes to town. (p.s. the cool bookstore is Changing Hands... and I agree with my mom -- it is very cool.)",review,b60JsTGYbVqUGYbI81aOsw,1,0,1 +NKSA0em3dHSGTyo6Eu-Waw,2010-05-26,b6hHEpYexHQ6LNhDLJ8Efw,3,"Service was faster than some of the other (but better) Indian restaurants I have been to in the area. The food was so-so. Nothing special. I enjoy spicy Indian food, but the ""hot"" was not. The only reason we ate there was the buy one get one free in the Phoenix area coupon book... no that, was a good value.",review,YPk47NcyWSkk-541OxyzMQ,0,0,0 +zp713qNhx8d9KCJJnrw1xA,2010-02-02,qyzPbUwY_QgqdEputNWk6g,5,"Perhaps it was foolish for me to give La Condesa only four stars at first, given the fact that I really liked it. What can I say? I'm critical by nature. I knew I was going back soon, so I felt like I had to save the last for a return visit. Well, it just got it. + +This place is fantastic. In fact, if CenPho lets this one go under, I will personally hold all of you responsible; watch out for a citizen's arrest if I ever see you. However, that is unlikely to happen, because the food is damn tasty. + +Today, the Oaxaca black mole chicken taco had me swooning, topped with pickled onions; the chicken is tender and simmered in the lovely sauce. The Soronan carne asada taco, char-grilled over mesquite charcoal is no slouch either; I'd rate it right up there with some of my favorites in town. + +Go to this place; I have a feeling I'll be here at least weekly. When and if they ever get a beer/liquor license...probably more.",review,dQO0tQISZyb9L4d5ASnXyQ,16,17,9 +St3jS0PnF1lulH1ggA4Jgw,2010-12-28,VyAIpPxEpMO581PoRB5G6A,5,Great place for brunch or to relax with a coffee. Their hot chocolate is amazing.,review,UHxBIipD-7xb60CGB8rOuQ,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2010-09-09,t5Hxl0agkS7p3vDnbl3Yyg,3,"I have been through plenty of airports around the world and I have to say that this one is on the better end. It is easy to navigate, clean (from what I have experienced), and makes getting to and returning rental cars a breeze. + +As in most airports, those who are not used to recent travel REALLY hold up the security check line. I would think they would want to be prepared and get through that check as quickly as possible and I held my breath when one young lady came back out in search of a 1 quart zip lock bag, fearing that we would have to evacuate the terminal for her breech, but we were all able to make our flights. + +A word to pet lovers who insist on traveling with their four-legged friends: allergies and asthma plague a large number of people and difficulty breathing caused by YOUR pet presents an unexpected glitch in their travel day. + +PLEASE CONSIDER LEAVING YOUR PETS AT HOME. An unplanned trip to the ER as a result of YOUR inconsideration should be YOUR responsibility. What do you say about that, health care providers??? + +In all my travels, this has been the only time I have been stuck behind the hairiest cat I have ever seen in my life because its owners had more baggage than humanly possible to manage. Clueless to others distress as the owners, their pet left wheezing, sneezing, itching, gasping travelers in its wake. Are you from Naperville?",review,gYIHSsoa260H544x9guLOg,2,2,3 +MLPUSpkbWAvr9gJOELKqmQ,2011-03-24,hQUn4oL-6qnjma8indhLNw,2,"Went here for the first time a few weeks ago. The owner was snoring when I walked in, so that was odd and kind of a turn off. Their regular manicures are cheap- $10, but the experience overall was so-so. It got busier as my manicure was going on, so it got a little better. Parking is pretty bad..they have approx. 3 spaces. Manicure was fine..have a range of OPI but all their polishes were jumbled together which I hate. Overall, for a few dollars more there are better places, even down the street.",review,nH0YyEYTE7RMeAbeERrSQA,1,2,1 +zDfaNgSYLn-TwquB5A6AaA,2012-09-14,1xrgXladKl8ukUsiyVU_kA,1,"Been here for many years but have seen a recent decline in quality service. Felt scolded by the bartender today at lunch. Felt disrespected as a customer. Service sucks stay away. ""bad service = bad review""",review,pRw80rCPUTcBo2Zv5De1yQ,0,0,0 +NN2qs5B713vM6BDcMyrg4A,2012-06-14,LFKXrB40LfFd16xtSuy7MA,5,"Hands down the best breakfast I've ever had, anywhere. It definitely feels like home cooked breakfast. I've never been to this place on the weekend when it isn't packed out the door. I'm not the only person that loves this place!",review,aLTl_OkLo0BFRxdz1n6sYA,0,1,0 +ho4Te6bO2tGs56h9PF2vuA,2011-06-27,WaXjxD6QcMBQQGOMnlGiYQ,3,"This is simply a poor substitute for the Los Dos Molinos in South Phoenix. It is a pale shade of itself. The salsa is spicy, but it doesn't have any of the same excitement. I think its partly the downtown location in a strip mall, (not that 98% of restaurants in Phoenix aren't in strip malls). But the Mexcian Pizza and Chicken enchiladas just didn't have the same loving kick and spice. When you are craving Mexican downtown, this'll do in a pinch. But make room and time to head out to the original deal, the one with 5 alarm salsa and huge patios. Margaritas the size of one's head and bring a group of friends to indulge!",review,vhxFLqRok6r-D_aQz0s-JQ,0,1,0 +sjCRI-lCh4KLO_RYQdlEeQ,2011-03-28,-qSWOLcNWhl0aLy-nadlKg,4,"Went there for a second time on Sunday. The first time I came, I was underwhelmed. I think the problem was that I went with only one other and this time I came with 5 others. It was a beautiful Sunday afternoon and over pitchers of Sangria ($20.00 specials on Sunday) and copious amounts of food I rediscovered the restorative quality of good food and great friends. Had serrano ham and manchego with quince paste, pollo colonial (my favorite), lamb with mustard and mint, pan con tomate, quail with lentils and chicken drumettes. With the exception of the drumettes (which tasted like overly fancy buffalo wings), the rest of the food was exceptional. Small portions, yes. A smidge pricey yet, but the communal feeling of being with your good friends in the open air sharing vino and small plates is priceless.",review,vhxFLqRok6r-D_aQz0s-JQ,0,0,0 +uL_kqSm8ZqJ_3U88uwA8tw,2012-07-30,CVFQy_w2RKrMA7TtPM0EQA,5,"This place is fantastic! + +We went in on Sunday the 29th of July around 5:00pm. The guy behind the counter told us to enjoy ourselves, take our time, ask if we had any questions. We wandered around for a bit, I found a bottle of Argyle bubbly that I wanted, and then began to stare with lust in my eyes at the selection of Absinthe. + +Girlfriend wandered over to ask the guy to recommend a white that wasn't a Chard as we both really don't like buttery oak anything. He took a few cues from her, and found a great bottle of white which we drank with great glee last night. + +This was a test for the guy behind the counter. She didn't set a price limit, just said ""show me your favorite."" He could have done what many others have in the past and shown us a $50 bottle, but instead he showed us a kick ass bottle at the $14 price point. This is the mark of a good wine seller. Find you what you want without bending you over on the price. Yes, sometimes I want to spend $400 a bottle, but not all that often. I'd rather get my drink on at the price he found, and he turned us onto a white we both REALLY liked, which is super rare as we have very different tastes. + +We'll absolutely be going back to buy more fermented grape from this place! + +Prices are on par with Total Wine, but what you're really paying for is the help of someone who knows what they sell and likes their job. Great job Sportsman's, see you next Sunday for afternoon drinking!",review,W7zmm1uzlyUkEqpSG7PlBw,1,1,0 +uzETXY35sIROqx6nnGuq-A,2011-01-15,OQjK5jYwSzoyUvOt1kEyPw,3,"I'm torn. + + +I LOVED my $20 facial. I'll probably go back for more once Groupon and the like run out of deals. + +However, I also got a brow and eyelas tinting. I wouldn't recommend that service from here. My brows were uneven, and my lashes faded out quicker than normal.",review,bkRfY8jHdFxf7k8vLX4buA,0,0,0 +06kfoeRs9Acj82Yl3i9p_w,2010-07-03,g0PIxO362sPzzvoYXNU4KQ,5,"Recently moved back to Mesa, I have been on the hunt for a place to get a good sandwich and fresh bread. This place now tops my list of places in the East Valley to get a good sandwich. My first sandwich was the Atlantic Haddock Provencal. A sandwich made with seared, lightly breaded haddock, sliced hard-boiled egg, fresh basil, romaine lettuce, tomato, Provencal tartar sauce on a grilled Brioche roll. The brioche was amazing. It was light and fluffy. The haddock was perfectly cooked with just the right amount of breading, and the vegetables were fresh and in perfect proportions as to not overpower the bread and haddock. Sometimes when you go to a sandwich shop they overload it with everything else that the meat and bread are just there to accessorize the vegetables and sauce. This was perfectly done. The atmosphere is pleasant and open with nice music as the light smell of fresh bread in the background salivates me. This is a must-visit lunch time destination. Dinner review shortly.",review,kxfUWPT6PuwieZHonfXtLw,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2009-04-05,2bPgTaY62Jc_FoTtXz35lg,5,"What a wonderful night. It didn't start out that way. I found this restaurant on yelp, not realizing that it was sixteen miles from the hotel my wife and i were staying at. I heard the grief all the way there. ""Come on honey, it's an adventure!"". + +We arrived, and were greeted warmly and shown right to our table. Zach, our waiter, was right there to offer us drinks and appetizers. We had the Summer Rolls and they were delicious! + +I explained to Zach that I was allergic to wheat and he brought us a special ""gluten free"" menu the owner had created for those of us who are allergic to wheat. Zach even brought us some special wheat-free dipping sauce for the Summer rolls. He showed great care, provided great customer service, and the sauce was delicious! + +The portions were good sized and the presentation was beautiful. But the wonderful tastes and personal service made the night special. Oh, the bathrooms were clean too. Thanks Zach, and thanks Malee's. It was a great night my wife and I look forward to repeating. (Yes, she admitted after dinner that the drive was worth it.)",review,7a_7iT6nDMQc76bz3-TQwg,1,1,0 +ht17atGW3tP8dFeiJkXI_g,2012-12-29,E7R_HyDkf4r0zVEuWxQl7A,3,"I met up with a few ladies here for drinks a few weeks back at the suggestion of someone else. We didn't end up playing pool, just enjoyed our drinks at the bar before moving over to a table. We were definitely over dressed and probably out of place, but it was a chill place to let loose. Drinks were okay, food was nothing outstanding, prices were to be expected.",review,6OWHDbEq23f24Vki_veHBA,0,0,0 +EXmWz2eaKTGNIf3FJUlVZA,2011-05-11,PE4ueS5NlXcBw4Ixb8G0hA,5,"I am a way more frequent visitor of the bell rd location, but sometimes I have to travel downtown for work. When I do, I make my route pass by this place because I have to have dutch bros. The guys at the bell location are pretty familiar with me by now but these guys still treat you as if you are there best customer. And it's the best coffee I've ever had.",review,Mex8qXT7nR89uTKX_qtgSA,0,0,0 +TdNIQQcfslKjkey4-yAlKg,2009-09-24,fQwfcdBJb1tf7JRTRE5EDg,5,Even more great news....on Tuesdays there is a special of 35c per ounce. Not that I needed another incentive...but this is GREAT.,review,0ouMuScWJ3GuNtWEmmsziw,0,2,0 +NN9dbEZF_c4YNgfWWAEVig,2009-06-10,a0YtahC0ZWer56OPruJA-A,2,"Been there, done that. Fair sandwiches (better than Safeway, anyway). Only 2 stars since I didn't know about the free soft serve, so didn't get to try that. + +There's gotta be a good New York-style deli west of the 17 and north of Thunderbird. Isn't there? Doesn't have to be great. Good would be wonderful.",review,ETIAM78kYT_xPM8b2iqi7g,1,1,1 +oyzxIqrtzu-8sWlPhJVsLw,2012-07-12,3R_6Havc78W_IWkOhK1Liw,5,"Where to begin? + +This is my favorite Mexican food establishment ever. I've been frequenting Carolina's for years and never once have I been disappointed. Some might compare it to Filiberto's or any of those [insert surname here]berto's but this is on a whole different level. + +Atmosphere-wise it's one step above a sketchy hole-in-the-wall but the food makes up for everything the appearance of the place lacks. I don't know their secret but their beans, the tortillas, the salsa... it's all to die for. And IT'S. SO. CHEAP. Like, seriously, I'd dish out more money for this food but the fact that it really is that cheap is the icing on the cake. + +It's almost always busy but it's always worth the wait. Always. + +If you haven't gone... you're missing out.",review,SlCfUUr1Pa7CzzSxbMH1pw,2,3,2 +qMkIbQFrROSnPaQ7at85-w,2007-03-12,uCdLSQa-bH_aYM-5DNuQJQ,5,"I just got back from an Arizona spring training vacation, and one of the highlights was definitely the Desert Botanical Gardens. We came really close to skipping on a visit altogether because it was 5:00pm, but decided to give it a shot...it was worth it! I was a little disappointed that the Butterfly Pavillion had closed for the day at 5:00pm, and several walking areas were being used for weddings/receptions (who could blame these people??) but still got to see a lot of beautiful desert plants and wildlife. We managed to get in for free, not sure if it was because of the time of the day or all the people just walking in for the weddings though, which totally made the park that much more fun. I am not sure I would have gotten as much enjoyment out of it if I'd had to pay $5 to get in... + +The little desert rat-sqirrels, and rabbits were totally fun to try to find hiding in the many different plants and burrows. I felt like a little kid ooh-ing and ah-ing at the different varieties of cacti and desert wildflowers, and have to give this place the ultimate rating . If you're ever in Arizona, please give this place a try, it's very well put together and a beautiful site to see.",review,dxPBchN0OnHTENctEUm7NQ,1,1,0 +V4wiGd78Si52Gys9gmoZCg,2010-11-22,WB_tV05UYyBO_EC0oTIXCw,2,"Meh....decent Filibertos knockoff but the place feels like a major health hazard considering how new it is. + +Just think Filibertos with less quality control and smaller portions.",review,OPStKHloEOVxcBtFgkzh2A,0,0,0 +HGOsJ1-GXCk5_8RmwKxomA,2009-06-14,RSwZ_b5xV9ovGXTX3mux_w,2,"eewh! yuck and wtf!? + +This Barnes & Noble Book Store sucks for sitting back, relaxing and trying to read. I know it is not a library, and I don't expect it to be. But, come on - you can at least have some sense of trying to keep the noise level down and have some cozy seating. + +And... Yikes! The people here are gross. They had some couch-chairs to lounge in and they were - in all of their grossness. And they were reading magazines of all things. WTF buy it and go home and let your kids do kart wheels there. EEWH! + +Then, those of us who actually purchased books and were trying to peacefully read them were in the cafe' - sitting on their dirty wooden benches - where I guess the servers there think that part of theirs jobs in serving coffee is to do a drum solo every time they empty the used coffee grinds into the trash can - which was about every 5 minutes. Yeesh! Luckily, I had my iPod. It was blasting and I still could hear them banging away. It was not a very cleanly area either. + +I was going to ask if they had wifi but I just high-tailed it out of there instead. This place is small too and their book selection is limited. + +I have been looking for a place to go to read, work and drink some coffee in my area (Arrowhead) and this one is definitely crossed off of my list. + +Come here to try and find a book but don't come expecting to kick back and enjoy your novel or what have you. If you like people watching though, this may be your place. There are all kinds here. + +PS: and I left my fav coffee mug at this crappy place - like I will go back and get it. I think I would burn it first - bummer!",review,nZ9XFVETN4hxdK4qPb-T3Q,4,5,8 +NCbHGtOP5yJBJsPPaE3X5g,2008-08-01,GXhCVzS14jGRpwusofxFIw,5,"Being Indian, and having grown up in London, I have been pretty spoilt for Indian food. Imagine my dismay when I moved to Phoenix! I've tried many different places here in town desperately trying to recapture the memory of a good London curry house but each time I've left either disappointed or clutching my guts fearing what may come. + +Couple of friends introduced me to this place a few months ago and I'm stoked. It's not as good as the stuff back home. And I'm sure you can get better in San Francisco or New York. But if you are looking for something closer to home you can't go wrong. + +Plus its got the real live Indians eating in there too. Can't be bad!!",review,3sJ62Mkavx69FBec71agYg,4,5,5 +MUsqPXthMdHoPEow9M3MfA,2007-07-28,EuC1SHR55UGShkq3iovTEQ,1,This place is not there anymore.,review,VBEbhE0ISjg6xowGNiGmgQ,0,3,1 +7XulXhz9PN2ctxtv0B0b7Q,2012-03-16,M0sPPYqC8ZDESo7HeJgC-g,5,Gaylee is great! She is super sweet and so professional! Her work is amazing. I found her through one of those online deals and now I am convinced that I will never go elsewhere. Keep up the great work!,review,33T-R7e8y7st0PA2HRyHnw,1,0,0 +cgNIBHS2mLdbTRiodAT6EQ,2007-04-06,ZqzBvizyfGpzfiveEsgZ8A,3,"No frills. Nothing fancy. Just some honest burritos and tacos. Voted ""best taco"" by New Times a few years back (in the 90's). Not sure I agree, but they consistently satisfy. They make a hearty breakfast burrito too. If you're looking for Sonoran or Tex-Mex or anything beyond what you might find at Filiberto's, try somewhere else. The red burro combo is my personal favorite. It's saucy (enchilada style) and just spicy enough. Bottled beer available.",review,1uTS7hrpgphH7ZDK8EThzw,0,1,0 +nY2QBNMEfT3j68j-DHOGyg,2010-06-19,ENbvrftx0kvaDfrR1mchSA,4,"Went here this morning around 10 am. There was like a 20 minute wait, but no biggie. Service was fast, orders were fresh and correct, and place was clean. It is the Waffle House, not a fancy joint. So for what it is, it was good. Plus the staff are all very easy going and create a fun lively atmosphere. Good for a casual breakfast.",review,QdypppSRw2H5UtMu1IebLw,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2011-08-09,iDujx3HhzFt3mv4KPay6eA,4,"Where do I begin? I love Casey Moore's! + +What a great ambiance! The outside patio is where it's at, with tons of seating and misters. Lots of beautiful decorations to stare at while you're waiting for friends to arrive, and the staff as well as fellow patrons are always very friendly. + +When I feel like getting in touch with my hippie side I go to Casey Moores, because I can always expect to find someone outside painting a work of art, or photographing the wandering cats (yes, they have cats! they're well-fed and happy). + +It gets pretty busy after 5pm, but the good news is that if you arrive before 5 you can bring your pets and stay all night. I bring my dog in all the time, and she is always met with animal lovers who didn't know they could bring their pets.. so now you know! + +The oysters are good, but if you're eating them out on the patio the heat kind of kills that deal for you. I had never tried oysters before going to Casey's but they are surprisingly tasty and comparatively better than other oyster houses. + +If you're feeling pretty ballsy, go pee on the Blarney Stone! Every time I go there I wish I was a man so I could do it.",review,px6RIT_CcE2Z1Jd52C8TQQ,2,1,0 +u3HMalNH-xBgZUXjnH3O6Q,2010-03-19,Z67Znbe5riZE4YISO45XAA,1,"Rarely do I give a 1 star rating but after four attempts in four months to get my fax line and internet rolling I can honestly say they have earned this. After finally showing up for a scheduled appointment the tech told us our internet was fine but we disagree because we are getting the same speed we had with Qwest in Cave Creek (SLOW) and they are charging us $64 a month for what they call the upgraded 20mbs. Furthermore, I tried to send out a couple faxes after he left and the line is not responding. Im going to drive down to the store tomorrow and demand that they remove the fees for service I have not received and just get efax. As I noted in the first review we were excited to upgrade to faster internet so that makes this experience even worse.",review,QnMPMD8Nh3ErZGfMRGAeYg,0,0,0 +qecLHHzAwgkkeA1bG81vmw,2011-01-18,kPS5PRqkwDpJx_bpDx9lCg,3,"Service was good, however my fettucine alfredo with meatballs was just OK. I would pass on this menu item the next and try something different.",review,8q2pilNlC3_mTfyDzp0TiA,0,0,0 +vA8T8QXh78iSXhxShLNgQA,2010-07-21,DWq3femFL-muAUB6lMBQDA,2,"So, I went because of all the hype. Immediately, realized how overrated it was. The ambiance is like a Chilis but trying to be mexican.",review,zFfXgANzhIcD-JkdBygcZQ,0,1,0 +K2_Hmmo5crTYWiT_1sWnfQ,2011-12-22,FSrIgThMfFIh__TubVQkxw,3,"Ok, so I'm catching up on past-due reviews. For me, Chipotle is one of those places you go to when you want something to eat from critters that have been decently treated while giving their life for your enjoyment. And the food is ok too. The guacamole is always fresh, the burrito's are big and there are lot's of add-ins. Just don't expect any gustatory excitation, it's pretty basic, non-threatening, and I think I heard somebody refer to it as gabacho mexican food. I think that pretty well sums it up. However, a big plus is that the iced tea is always fresh and all-you-can-drink :-)",review,J3I2NClEbD1Xr8lOdjxlqQ,0,0,0 +NBwPgX7L2D-EZedgo3A-pw,2009-08-18,roMeHsyf55-_O7rpudBbZA,4,"Gils.. A relatively new business to the complex on 16th St and Bell Rd. + +Gils is NOT your average Mexican Style food. It is New Mexican Style. They use whole beans, no lard and light on flavor. The rice is not orange but more of a yellow with hints of garlic infused. The burritos are covered in red or green sauce, which can be a hot or mild depending on the crop. + +I had the pork Carnita's burrito topped with green sauce. Beans and rice. I would have been disappointed it I expected smashed refried beans too. BUT I love the beans as they are. They are sort of like a ham hock style bean. The carnitas was wonderful and huge. filled with pork and not a spec of fat in it. Topped with cheese and Hatch Green Chilie sauce. Did I mention Huge? + +The whole meal including water and chips and salsa set me back $10 bucks. I even have a small lunch for tomorrow. The chips are homemade and the thicker type. The red salsa was spicy but not hot and green was good. + +The rest of the menu looked good, nothing stood out as a must have but I will be back. + +The place was clean and they made a nice patio outside, complete with waterfall and everything.",review,C6IOtaaYdLIT5fWd7ZYIuA,16,19,5 +VY_tvNUCCXGXQeSvJl757Q,2012-12-15,31mOjx2g1F2xAVi20JQP1g,4,Good pizza. Nice and laid back. Good staff too.,review,vpb5jICQEl6vT0NlHq1dug,0,0,0 +HvfefhU4b38wcSulkBzA1A,2012-11-05,a5WztkUFN4onrcG1NMoYuQ,5,The praise and worship with Pastor BJ just sets up a God Filled service with the charismatic and awesome Pastor Maiden ... Going the Past 18 months has made our Marriage Stronger and Faith Magical,review,hLi9rdbx4cXBklc4osQEJA,0,0,0 +4EeLblEpJc2VeBowa94YPQ,2008-03-28,RxwjDwQsSRE7flP6N4L4tA,5,"I come here probably at least once a week. The prices are right, there's a good variety of ""ethnic"" food, the cashiers are quick and friendly, and they're just helpful. I locked myself out of my car when having a space-cadet moment and they let me use their phone to call AAA to bail me out. + +Fresh flowers + great selection of wine and cheese + all the essentials + +They deal is that they cut out the middle man to get great prices for quality products and they don't have sales because they always sell their products at the best price possible. =) GO TJ'S!",review,IE_nJq65Qpso5fN4tG9zjQ,2,3,0 +3H2ttTM2aSIaZ6FTjHwDQQ,2012-11-29,6wih8fh9hGHRCc4tk6U3ew,5,"I have only gotten the cafe sua da (iced coffee) here but it's the best I have had yet. When you walk in there is always fresh coffee lined up in cups on the counter ready to be mixed with sweetened condensed milk. I don't get to Mesa often but when I do I go here for the wonderful, rich, dark and creamy coffee. This is strong stuff; that first sip is so good. The richness, full flavor, creamy caramel flavors are heavenly. And as the ice melts, it mellows out the flavor a little and it's still great. I can't say I have had all the cafe sua da in the valley, but what I have had; this is my favorite. + +Next time I come to Mesa for work I will need to come at lunch time so I can try the pho.",review,UhryFhGe1tqdbBzAhdooTQ,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2007-11-14,DDt-wItJxXlzsErG2XE2mQ,3,"Only had a chance to experience the Oscuro (amber lager) and the pizza (the Arizona vs. Boston) so far but it's enough to make me want to come back and try more. + +Lots of flat screens. Should be a great place to spend a Sunday afternoon watching footbal in the fall.",review,bkPFUCENKOYFDit-eV2PSw,2,2,0 +pfTwzep_4hRTX_jXoi38cw,2008-05-27,RqwFPp_qPu-1h87pGBAM8w,5,"Hippies scare me. So in my preparation to go to this place I ordered Xanax from an on-line Canadian pharmacy, which I have been taking for three days now. Bought a tazer from Spy Headquarters in case one of them tries to hold me down and pours patchouli oil on me. The fifth of gin that I slammed in the parking lot really helped with that last bit of extra courage that I needed to partake my journey into hippie-land. + +It was all for nothing. No hippies around, just a teenager behind the counter. This place is tiny and the counters are about at mouth level. I don't know how anyone under 7'6"" could easily eat off of them. + +Anyways for $5 flat, you get a kick ass burger, a school lunch bag half full of well seasoned skin-on fries, and a can of soda. It's true that the fries could have been a bit more crispy but they tasted so good I got over it real quick. + +I'd be afraid to ask what the special ingredient is because they might say ""it's organic, don't panic"". + +Jerry's dead, but this place lives on. Thanks hippies!",review,sEWeeq41k4ohBz4jS_iGRw,28,28,39 +supigcPNO9IKo6olaTNV-g,2010-12-14,O7jDv3ntT_rsFrd7qPrC4Q,3,"In addition to the nice atmosphere on the patio they serve a very nice brunch menu and the $2 bloody marys are a buy. Downside: parking validation is only a discount, not a freebie. Depending on when you go the service can be slow. During a recent happy hour the barmaid herself was left to tend to all bar patrons and the patio.",review,nDBly08j5URmrHQ2JCbyiw,1,1,1 +L9UYbtAUOcfTgZFimehlXw,2010-04-12,Z9XN4EZeGLnlMmuMvo_i8A,5,"Man, do I LOVE a restaurant with REALLY GOOD food and friendly service! Liberty Market is definitely that! + +Funny thing is that I was originally going to eat at Joe's Farm Grill, but ended up here (after a search here on YELP). + +Nice laid back decor too. + +You wait in line to place your order, pay, and they give you a stand with a number on it (like at Sizzler), then someone brings your order. + +I like places that spend the time to make their own salad dressings and take care with creating a delicious salad. The Italia was DELICIOUS and a perfect size! The homemade Minestrone soup was loaded with fresh ingredients and was REALLY fantastic too! + +I forgot to try one of their desserts...the last Red Velvet cupcake was ALMOST snatched up by another customer, but the Food Server was so kind to offer to get it to me (maybe I had a look of panic on my face??)...WOW!! This service is rare to find! + +The restrooms are quite amusing! Saw a similar set-up in NYC. Each toilet/water-closet is individual...no stalls. They were VERY CLEAN too (ok, I was seriously apprehensive that it might smell like a men's restroom, since it was all unisex...no worries!!!!) + +I can't wait to visit here again...but, after I check out their other place across the street: Joe's Real BBQ. YUM!",review,CP-IE-zyc2Mv3jlaceElVQ,0,3,2 +UmhTiNOKareQDP7D9aAnKw,2012-09-23,csHak1d1uCU4oItf8d5MBw,5,"Great experience from start to finish. Host (who was the owner) seated us at a table with a view. Was given house made foccacia bread and olive oil. Was awesome. Some of the best bread I've ever had before a meal. The olive oil was seasoned perfectly too. My grandma got the burger and I got the pesto penne primavera. The pasta came with shrimp, squash, and some other vegetables. I love pesto, so this hit the spot. Good serving size, but not too much. The food tasted fresh. They make their own pasta, which was delicious. The burger was huge. Looked like you get your moneys worth. The ice tea was even good. The place was clean and sleek. They played good music and the service was perfect. It has been a while since I had such a good overall experience with no complaints. I will be coming back. The host, who we later found out was the owner, was working that night and asked us how we liked everything. I've said it before, but that is a rare and good touch for any restaurant. Well done.",review,XqU1PB0XWjcr3sUyZZGaWQ,0,1,0 +j0cGt8mCE42Q-obJkcfrYw,2012-07-31,hBg8uej4Ix74Vq5LLPuiOA,5,"Great customer service, competitive rates, and I always get a call right back from Jeff! Nice to have an agent who actually cares about his customers. I would recommend giving him a call.",review,I5AcIAujn4X0fzjq-CTLBg,0,0,0 +hBHkHYOk_E-6EgObC6MTdQ,2010-11-14,Rfu5grIwYtiEQbbMZtGwTg,5,We went to The Farm today for lunch to enjoy a picnic on such an awesome beautiful day. I had the Tuscan sandwich and it was awesome. I had expected it to be good but was surprised at just how enjoyable it really was. I'm sure sitting outside in beautiful surroundings on a perfect day helped with the experience. This is the prefect place for lunch on a beautiful day. My date was equally impressed so I'm sure I will be back!,review,i0A-c2yoHySmFhRV2sDR1g,0,1,0 +1CNKe3H07sLu6rigOpAYsg,2012-10-31,yheuEeK2zj6HaNY5bAzhgQ,4,"Games- great. +Game prices- decent. +Food- Edible, but nothing to write home about. +Food prices- WAY too high for the quality. +Bar- Weird. The 1st bar Ive heard of that doesnt carry Baileys or some type of Irish cream liqueur. +Drinks- Meh, stick w/ beer. +Service- Also weird. Ive had the best service here when its crazy busy and the absolute worst when my friends and I are the only people to be waited on. + +A good time, if youre going for games and basic drinks.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2009-05-05,GiGm00UCTSDwA0c7RhRDFQ,4,"I love the ambiance at Joe's Farm Grill. It's great to grab your food and sit outside at one of the many picnic tables. Stopping there with the dogs after an afternoon at Cosmo Dog Park is a must! There is something for everyone on the menu, from gourmet burgers (all I have to say is fontina! Yum!) to pizza, to ribs. + +It's also a great place to take out-of-state guests who just blew into town from one of those cold climates. They are usually psyched to be sitting outside enjoying a meal during the winter without having a propane heater involved. + +Make sure you go for a walk on the grounds too. It's very relaxing and a great way to work off a few calories!",review,woXhdtL9ds78_mz8mOY4Vg,1,0,0 +pdxyZdnwltQXcu-kD5rpXQ,2007-01-22,kUw0d4RX-tp32zmP-XwkXw,5,"Screw Disneyland- Sephora is the happiest place on earth! They have everything a girly girl or a girly guy could possibly dream of and then some! They have all the best brands in cosmetics, skin care and perfume and they're always adding new items to their extensive product selection. To me, getting a gift card to Sephora is like having Christmas morning over and over again. Everywhere you look there are sparkly blushes, lip plumping glosses, lash-extending mascaras and anti-aging face creams- what more could anyone ask for? I can understand why men might hate going into Sephora- but they do have some products for guys too- although not many. As far as I know, Scottsdale Fashion Square is home to the only Sephora in Scottsdale, but even as great as it is, it still can't beat the one right on the strip in Vegas. They're open really late and you can shop with a drink in your hand- what could be better than that?",review,0CMz8YaO3f8xu4KqQgKb9Q,0,0,4 +yJr24Yy1K6bt2G9fX3_zPA,2011-12-10,T6x80EWBNGa6qzfCjSdMEg,5,"I loved this little slice of heaven. Reasonable prices, tiny dining room, very personal service. Pablo was laid back, but with only 4 couples in the small establishment, he did a great job of making sure we were taken care of.",review,MZaI_6ffmE_XzjKnM62oFw,0,0,0 +OOCLVeqqMFfSnKa7liv0Kw,2009-02-10,d4tC0RRd0ldMNZHeIMbGuQ,1,"What a load of absolutely hideous, uninteresting crap. + +Take every single one-star review written by Yelpers below, copypaste them here and you will have a far more eloquent summary of my feelings on this place than anything I can come up with. + +I have no reason to ever come here. Certainly not free will. The one time I did come here I was forced to by a friend who was meeting another friend.",review,17PPxx8RxjOUD_nQZ1aHEw,4,6,7 +LeBQ8Wc3BK_i_jPSbFpZHA,2011-06-10,1sn0-eY_d1Dhr6Q2uoFCgg,4,Had the enchiladas - cheese and shredded beef - and some mini chimichangas which were both good. Salsa is fresh and tasty. Friendly service. Will be back next time I'm in Florence!,review,RCmBxcE6ld-ANzEAS6yeUA,0,0,0 +ke3RFq3mHEAoJE_kkRNhiQ,2012-07-21,W2E-KyisRMC5fuih1AjTlA,4,"I found this place when we needed a place to meet for a business lunch. I had the smoked BBQ chicken which was good but that seems to be all I get when I go. I've tried some of the other dishes but haven't really liked them. My wife loves the fried pickles which I'm not a fan of. The portions are huge but there does not seem to be anything special I can remember besides really large portions. I suppose the biscuits topped with sugar smothered in honey butter are good but I also want to live to be at least 50 and they are not worth dying for. As unimpressed as I am with the food, the service is very good. I've been there a few times now and have always been pleased with they way they treat us. Everything from the speed and attentiveness has been good.",review,lAngRi4lwBIHmjCBVLd-8Q,0,2,0 +JhupPnWfNlMJivnWB5druA,2010-08-18,INgYGonM78YMB-5vpfoPQQ,5,"AZ-88 is at once chic, urban, fun, and just enough Scottsdale without making me want to stab myself in the face, as a t-shirt-and-jeans-wearing, overweight guy. + +You'll first notice the atmosphere, and with good reason--it's perfectly lit, with noticeable but not mind-numbingly blaring music, and even better, they have a live DJ who goes through no small trouble to beat match and keep things rolling throughout your Wednesday-Saturday evening dining experience. When I first hit AZ-88, it had an enormous deconstructed NY taxicab suspended from the ceiling which was a fantastical conversation piece. The wall behind the bar was completely covered in names and numbers. (I was far too proud when I accurately guessed that they were the names of cabbies and the numbers were their license numbers.) Overall, a very different, fun look. + +Comfortable chairs and very full cocktails abound, and while they typically have a rock-steady delivery, more than a little cosmo has ended up in my friend's purse, to her chagrin. That aside, the food is fantastic and even though it's a bit hard to get out of here for under $30 per person (because you simply must try the cheesecake, and drinks are pushing $14), it's worth it as a classy-but-casual night out that you can really enjoy. + +They have a great patio, the burger is dripping with flavor (and, in fact, cheese), and they have waffle fries with pretty much everything. Great salads and sandwiches help round things out, and they ship their cheesecake in from Carnegie Deli in New York which is just about the most perfect cheesecake you'll have the good chance to try. Forget that Cheesecake Factory nonsense, these people know how a cheesecake is done. It is rich, thick, with just a hint of sour, and an amazing flavor that takes your tongue hostage and demands whipped cream ransom. + +Overall, a wonderful place for drinks and good food with friends, and the staff is pointed but efficient and will throw back any shit you give them, in good humor or, as appropriate, not. (We've never run afoul of that rule, but you wouldn't want to, I assure you.)",review,8-2W5CmkDl9vrkxRpkiPRg,1,1,1 +Snp5LyDO9NeQiuFPOlkavw,2012-01-09,Ri6D23gr3_WqLgcZL6ttqg,3,"Sugar bowl ice cream is yummy but what ice cream isn't? let's just say if one day I was craving ice cream, I wouldn't think of coming here specifically for theiiir tubs. Very average stuff.. similar to Breyers/ Dryers. + +What I diiid like was the price, their abundant seating area and location (=",review,df0YRtus3XaN64pzs8iteg,1,1,1 +QnAzW6KMSciUcuJ20oI3Bw,2010-12-30,21Nfgtnns8gZuzNfg7c_QQ,4,"Great place for lunch, transport yourself back in time to this quaint farm grill which offers high quality food, fresh ingredients, killer burgers and an atmosphere that is one of a kind. Good place for breakfast as well. Family owned restaurant goodness. Only drawback is the line, however good things come to those who wait.",review,uzWTAgkONAZd5NrfP9XXlQ,0,1,0 +E4b5OC_6mZ0V7B6Nyjncsg,2012-01-13,VdD-2K_izVXf9nd912TkXg,2,"My girlfriend liked this place more than I did. It may be that I'm spoiled by eating asian food in the Bay Area, but this place just didn't cut it. Unfortunately we both got red curry based dishes, so my experience was fairly limited... I got Duck w/red curry, and was not very impressed at all. The duck was tasty, but the curry was VERY bland. Honestly had I not been told it was curry, I wouldn't really have identified it as curry. The duck came with some plain steamed vegetables on the side, which as the meal went on, served to further water down my already bland curry sauce as the veggie water moved around on the plate. In addition to the curry lacking flavor, the vegetables really needed a boost as well. They should have been stir fried, or been served with a sauce of some sort. + +The service was OK, but not great. There was only one other table in there, and the waitress seemed to forget things, and when we asked her about the meals, I felt like she was giving us canned answers of ""everything is good, just order something so I can go home"". Admittedly it was about 30 or 45 minutes before they closed, so that may have had something to do with it. + +It wasn't a BAD meal by any means. It accomplished the goal of providing nourishment, and was better than bringing mickey D's back to the hotel room, but I won't be going back. The yelp definition of 2 stars is ""Meh. I've experienced better"", and I think that description fits my meal perfectly.",review,-V3CXSxnUzjkLVqi1xGrkA,0,0,0 +Exx5ffvnmk4MrTyCkPRuug,2012-07-24,2YfYYOjwd_yOHxEuv-9Sqg,3,"Other then the chips and salsa (5 stars for salsa) the food is good, but not so much that I go out of my way to eat there. The fajitas are delish, with mushrooms and the meat always tender, but the price makes me cringe. At over $20 there are so many other places I rather eat. I usually opt for a cheese crisp with green onions and green chilies and a side of guacamole (which is always yummy but pricey) and I still pay for all that $15 plus what ever we are drinking.... I love the overly rustic atmosphere, but it really could use some updating and maybe a good scrub.... Some of the servers are not the friendliest, but these are mostly the family that work there and have been there forever, so don't take it personally.... +But overall it is a Scottsdale landmark that is fun to bring out of towers to and the food is overall good.",review,BtQVxFotHFK3T2FtIrBWmg,1,1,0 +RqbSeoeqXTwts5pfhw7nJg,2009-04-24,gjtWdiEMMfoOTCfdd3hPmA,4,"Man, if these guys were trying to replicate a gringo bar in Mexico down to every last detail, then they have it absolutely nailed. Sorry to ruin the mystery of the name. The building itself is a spectacle-- a brightly colored fusion of indoors and outdoors with a few different bars, games like the beanbag toss and televised sporting events in every direction, music blaring, a room dedicated to Elvis, and more Chuck Norris jokes than you can count plastered across the walls along with a bevy of posters advertising drink specials. A line of blue footprints painted across the concrete floor leads to the men's room, dollar signs to the ATM... genius stuff, really. It wouldn't have been at all out of place were they to have tried selling surfing monkey statues or trotting out a donkey painted like a zebra for an extra special photo opportunity. + +Rumor had it that Dos Gringos had a killer Sunday brunch buffet and Bloody Mary bar, so we showed up at 10:30 AM to find... that they hadn't opened yet. A place that offers brunch but has the balls to wait until after 11 is okay in my book. Ten bucks gets you all-you-can-eat eggs, bacon, chile verde, beans, and a bunch of other stuff to tickle your fancy. There's nothing like sitting out in the sun, feeding a hangover and resuscitating last night's buzz before the clock strikes noon, and it sure beats sitting in traffic when that monstrosity of a church up the street unleashes some Old Testament fury on Alma School Road. Dos Gringos probably gets spring break wild on Friday night, but on Sunday morning, this place was just as tranquil as the doctor ordered.",review,dYtkphUrU7S2_bjif6k2uA,2,3,3 +I4bSn5gXsHuSPu7L-d_8nQ,2012-12-04,EI3YXHKCwAIrEj18OVNg-g,5,"Fun, with caps if I did that sort of thing. The whole experience was great (you won't get any specifics, this review is 3 weeks after, I can't remember, sorry). Service was by that waitress who does everything perfectly. Explain food, wine, doesn't stay too long. Nice interesting big room decor. Looking forward to the next time.",review,k99cC9QpbUXlGRWwxEe93w,2,2,2 +FIQz9u8Cy7aTXfMQugUYvA,2008-07-07,ic86bSr_cewJSAPfIMyW8g,5,"Who dosen't like Cosco, I love this place. The pizza is cheap and good.",review,Ut8dgpxKahmC_9v5PbYOmw,0,0,1 +cp39VURFby4A6u9m2It8jg,2010-04-23,pNv6lyBfJITFITz-iIKPzw,5,"A group of us from the IVAA Summit went to Zinburger last night. The food & service was great! I think we scared our poor server (Mike), but he was wonderful!",review,LH9q3LtJRVstt8Of4N1M1g,1,1,1 +MU3i2uEyUBntebU6pEyMbw,2010-03-23,7ohAK9lUtD5GluvzDTErXA,5,"I love this restaurant (even though it's a chain and I can hear my brother saying it's just a ""glorified Red Lobster""). + +I ordered the Crab and Lobster Bisque soup and am drooling thinking about how much I wish I could eat it right now. For my entree I ordered the Atlantic Salmon (stuffed with crab, shrimp, and brie cheese) which was unbelievably amazing. I also had some scalloped potatoes which was basically in the shape of a brick covered with cheesy goodness. I wanted to eat the apple pie for dessert because it looked so delicious, but could barely breathe after eating all that food. + +The service was outstanding, although the manager stopping by the table several times throughout dinner was annoying. + +I can't wait to come back here.",review,TVJP9jSapI_jVHJ89mmijA,1,2,1 +8o-NLKy_XfbJtqljX9XLCA,2012-12-05,s_2Q1U2UgG14kNhFTVn-fQ,4,"This is a tough one. I'd found out about Mrs. White's by way of Lo-Lo's, and thought I'd try Mama's food before Son's. It was good, I'll say that. I had the smothered chicken and regretted it immensely - fried chicken covered with gravy amounts to a mess of watery breading. Between that and having to dig through the mess to find the bones, it wasn't exactly a lot of meat down my throat. Mac & Cheese and white rice as my sides were good. + +The ambiance? There IS none. I found more entertainment from the writing on the wall, which had clearly been painted over MANY times since the 60s, and the open/close sign which reads, if closed, to contact ""Jesus"". LOL. + +Unaware of the church across the street, I arrived right after Sunday services to find the place fairly full - some churchgoers, at least one newcomer party, and several regulars. Based on the caloric content of the entrees, I wasn't surprised to see about 50% obese customers, while the rest were inexplicably thin. + +As a Whitey, I can't say that I was comfortable. Clientele is almost all Black and while they are some of my best friends, I only felt welcome because of the cordial words spoken by our waiter and the cashier at the checkout, who clearly could have beat the crap out of me with one punch. Other than that, there were a lot of ""what are YOU doing here?"" looks from fellow customers. I kept wishing I had brought my sista friend with me, who would have loved this place. + +I'd go back, but it's not a perfect choice. Perhaps on a Saturday when church hadn't just let out. Also, the price is extreme - it's almost as high as Knott's Berry Farm which gives you more food for only about $2 more, and that's at theme park prices. This is just dumpy outskirts of downtown..but again, I don't wanna judge. I love small business and I'm proud of Mrs. White for making it this long; hope she continues for a long time to come.",review,e3LzMIrC6FtN9QeTvWiGag,1,1,1 +xmtKVO7C7KYVqMBe2eQq3A,2009-05-07,PQBYt2G58kn0tBMhK3x33Q,4,The food here is generally pretty good. Drink selection is great. Service is normally above average. The only thing stopping it from getting 5 stars is that it's a bit expensive relative to comparable quality places.,review,GeGDZ02UfARKBRl7LqKZuA,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-01-25,h2c-jLW9cLVIiiubGqTaog,5,"On one of my many visits to see mi amore, he took me to this fantastic little pizza joint. The aesthetics of the place were overwhelmingly perfect. I believe the maximum seating capacity of the dining area is 45, yes folks, 45. So the 2 1/2 hour wait was expected, and very VERY worth it. The pizzas are baked to order in a classic brick house oven. The toppings arent what youd find in your local Pizza Hut, either. You can choose from fresh slices of mozzarella, slices of perfectly seasoned italian sausage, pepperoni slices, salami slices, arugula, fresh basil leaves, tomatoes, etc. Basically what Im getting at, is this is beyond words delicious, classic LEGIT Italian pizza. Around the dining area, you will see freshly baked loaves of focaccia bread, that is later served to you with extra virgin olive oil for dipping once you are seated. The smell in that place is heavenly.....incredibly reminiscent of my grandmothers kitchen!! + +PS GET THERE EARLY!!",review,qklF6QU-bi4Y4Bt4g6Sv8A,2,2,3 +Vb9FPCEL6Ly24PNxLBaAFw,2010-01-06,iLHFyi913RBDovPVRPm_ZQ,5,"The pizza is my favorite in Phoenix. It is light, airy and tasty and does not give you that ""I am reading to explode as my cotton mouth is making me drink two liters of water every half hour"" feeling. + +The ingredients are fresh and delicious. + +I am hooked!",review,7brf9WC0Gr_7bUBXEHs9FA,0,1,1 +x4L42igQPv4TFlqGR2Wthg,2011-05-27,BzeBZD_ySZHkzOxA1oNozA,4,"had the place to ourselves on a thurs nite (5/19) so...service great, mgr came over and asked if we had eaten here before ""nope"" so he said he wanted to buy dessert, ""great, thank you"" oreo cheesecake was good... now.... pizza...pricey by 2-4 bucks but was very good. can't go wrong with your toppings but the riccotta was not my cup of tea (wife liked it on her pizza). definetly going back to try it again... great crust",review,5RVUt3bCDSA7F_SahuwZ8w,0,0,0 +MwaFQkJxzqg8G5_hTip99A,2012-07-09,dwC-XTgcmFTMKe1q-Cz8vQ,1,"Wednesday 7pm. This place is your average over priced, lack of taste chain food restaurant and this place was no different. + +I have to say, I was super disappointed as I have always heard rave reviews, now I'm starting to question who I associate with and their taste in food. + +Service=slow. +Food=just tastes like salt +Noise=loud and they do a dance...like a lot. + +Go somewhere else and skip Joe's Crabs.",review,Pk5T0OFCbl8mIKkKYyglWQ,0,2,1 +WYj43z0qmlKklhcvV75mwQ,2011-04-19,bAJIn-cEjNDPKoY3pXC3aQ,4,"After long debate of where to have lunch, I am glad that I stopped into The Greek Pita. + +I had ordered the lamb gyro with everything except onions. The gyro was loaded with lamb meat and toppings. The pita was soft and fresh. The Tzatziki sauce has a nice tang to it. It tasted light, cool, and creamy. The total cost was $5.74 + tax. I left with a very happy belly.",review,uqK3yvpg5Evk_XgzMW-lAw,3,5,3 +9Y3aQAVITkEJYe5vLZr13w,2008-08-26,vSQQ5EC65AJFU7ZPa6owzQ,3,"They serve breakfast all day, which is always a plus. + +I had the tomato soup with grilled cheese. The bread was delcious, tasted homemade. However, there was way too much cheese, and it wasn't fully melted. + +My g/f had the eggs benedict, which looked really good. She said it was really good, and filling. + +3 stars. I've had better. I've had worse. La de da.",review,gsMVXAI9su3B26Fd4vyyRQ,2,2,0 +FeI75xIG8PF_XZ6P80gLBQ,2012-06-04,eeJ10gamdNebtq028i0BvA,3,"I want to like Turf, but the food is just okay. I've only been here twice, but it was not mind-blowing. + +I'm not fond of the shepherd's pie here. It is the most bland version I have had... even in this town. + +The wings, however, are pretty good. I've eaten wings here with a couple Harps and have had a decent time. + +Surprisingly good is their seared ahi tuna. It is pretty weird to think an Irish pub would do this well, but they do. A friend ordered it and after shaking my head and saying there's no way it could be good, I tried a bite and I had to eat crow. + +Turf is typically a stop on the pub crawl, so I will definitely be back again for boozing.",review,64YY0h0ZAR2nbzxbx0IwJg,2,1,0 +yPJFfglhMHAKciUpjTmgBg,2011-12-27,TkTbb-JkRsdtD5wplSGEtw,1,"I had not been to an Oregano's in like 10 years. They seems to be popping up all over here in AZ now so my buddy was in from out of town and he wanted to try, so why not. + +I'll tell you ""Why NOT""... we has two thin crust pizzas... and I even hate to call them that. More like... crackers with melted cheese and some toppings. + +That was some of the worst excuse for pizza I've ever had. Most of the fast-food delivery pizza I've had beats it -- and I do not like, at all, delivery pizza. + +Maybe the pan pizza is better than the thin crust... god it could not be worse! + +It only deserves one star for the good service... other than that is the another sub-par overpriced ""gourmet"" pizza joint. + +If you want expensive, and good, pizza there are many good alternatives... Pizzeria Bianco, Grimaldi's, etc.",review,KucBnMrhalzxnD9AWrxwYQ,2,4,0 +vnRwp-LUrxMdJC9je4q9Fw,2012-02-20,IgjLZa2UFxhvtu4WjrOtDA,5,"I was a regular at Mia's first location in Wrigleyville/Chicago. Scott (the original founder/chef and present owner) is the reason Mia Francesca is what it is. Not sure if us folks up here in Scottsdale know how lucky we are he landed on our door step. Food, service, vibe...if I could give it six stars I would.",review,VeJi5LINIEkV78ug-WCV0g,0,2,0 +uI4YqMarUpchI4I3ZWgOGA,2008-04-24,Ygh_egJbl3jAYc8IaTRvPQ,4,"I thought Trader Vic's was very nice. Food was very good. Atmosphere was great. Staff was very very friendly and fun. They even gave me tons of recommendations of places to eat in the area since I am new around here. + +I recommend the lamb.",review,HGeXdydcZ9nDn9fT87z4fA,1,1,0 +PmPOuRvuN3CoNOi1nBj_TQ,2012-05-09,ujMijCZ5vv9pU2aOz2LHjg,5,"Excellent service and food + +enjoyed live music on patio",review,bMeRjJSiSZq1Izjvj7bvaQ,0,1,0 +8qrICL2tS2Rq7b5gxUdQwQ,2011-03-23,JBif92bIAelSfHoH39fSag,4,"I was fairly surprised to visit Line Thai and find some decently authentic, good-tasting Thai food. I'd always assumed that this area of Phoenix was (excuse me for the pun) totally dry on ethnic food, considering I had a hard time finding pho within a ten-mile radius of my parents' place in Surprise. + +Anyways, I chose the pad si yew (spelling varies all over the place, I think they spell it ""phat si iew"") and my father ordered some kind of chicken cashew dish. Both were excellent, though a little more in the line of American tastes -- not as spicy, and the pad si yew wasn't cooked slightly burnt like I recall it traditionally is made -- it was pretty tasty. + +The hot tea was a great companion to my meal as well. + +The service was great without being too pushy, invasive, or sloppy. They always refilled my water in a timely manner and didn't interrupt my conversation with my dad. That's important to me -- that servers don't bust into your conversation with little to no consideration of personal space. + +My parents had been there several times and enjoyed it, so now I see why they liked it. Oh, and their spring rolls and the accompanying peanut and hot sauces were also delicious -- not the best I've ever had but super-tasty. + +The atmosphere is a little dry (what is it with this word? Sorry) but I can live with it. The booths were comfy and it's not like the place was musty or gross. Not every good restaurant needs to be chic and trendy, really. + +All in all, it was a nice experience at a reasonable price and I'll definitely make a visit next time I hang out with the 'rents.",review,vOw4NYgKe57qcJ5fOjk6PQ,0,0,1 +D0K0F0RREGO8LeW16IlZlQ,2012-02-28,3_rbagmhkqp4mPJiwoMlmw,5,Love Krista!,review,o7sNqbEsMrztrVV_3RU4Hw,0,2,0 +h6jfMpTZpNduLG0wE2tbaw,2008-12-21,lG3Y6LPASX8MyqDedIpBGQ,2,"Ate here months ago. Was excited to finally find a Phoenix sushi venue, and one that also offered brown rice as a sub for sushi dishes (don't quote me on this however, since it has been many months and I may be recalling another venue). + +One item did impress me, and that was the complimentary appetizer that was comprised of tempura'd chips with perhaps a squid salad topping (?) I should have just ordered another serving of this! Instead, I tried an Ao Yasai (mixed gourmet greens with ginger) and a sushi roll w/ brown rice, the latter I thought was price-y considering the very small portion given. I was so unimpressed by its unexciting flavors that I don't even recall what kind of roll I tried! Pretty sad, I know. + +I told myself I wouldn't go back, but I would like to give Hana another try, perhaps for lunch and/or dinner with a group of friends and have apps and wine/sake!",review,0bNXP9quoJEgyVZu9ipGgQ,5,7,3 +2ceeU8e3nZjaPfGmLwh4kg,2007-09-05,nuT_InwR0gHYcwQ20ouXyw,4,"Fun Irish-pub type vibe with a great beer selection and not your typical bar food. I love the oysters on the half-shell, salads, sandwiches and fried zucchini/mushroom combo. + +Casey's offers inside dining and a bar - but the expansive patio is the hang-out spot. The clientele is varied and full of regulars. People from all ages and backgrounds hang out here but it's especially popular with ASU students, staff and faculty. + +The only downside is parking can be difficult, service sometimes slow and it can become fairly crowded - especially on the weekend.",review,7kRN8IkOWlLblEltNlnfRQ,1,2,0 +dSQh1Hx2BiSrYog4ad740A,2007-01-23,4YSQvTgbGy5DraaXM4DGRQ,4,"You may think this is a cop out... writing a review of Starbucks. It's like writing a review of water. (""It's wet, delicious and necessary to my survival!"") + +My aim is simple here though. This particular Starbucks location is an excellent place for people watching. Try hanging out there between the hours of 11am and 1pm on a Friday afternoon and tell me you aren't entertained by some of the patrons who go in and out of the doors. While attending school, I was taking a screenwriting class and given the arduous task of writing descriptions of about 35 random people. Where did I go to write every single one of them? Park Central Starbucks. + +The crew here is also super friendly every time I come in and they do their best to remember my name. It doesn't help that I tell them a different name every time. OK that's not true, but what a fun social experiment that would make. + +The coffee... been there, done that and there's not much else I can say about it, but for the sport of people-watching, this a great place to hang out in the corner and just take it all in.",review,DJIwm4UCnM-SOxXbARjPsQ,2,2,8 +adKyTJT-RtaTP0krxLyQwQ,2011-12-28,5YVQIr0AJiiiJmkuhoRjzQ,3,"nice location , good service but a little slow. been here twice so far and both times the food i would give 4 stars but both times they screwed up our orders and burger was cold, they did take off 20 percent for the issue and that was nice.. overall i enjoy the food and would go back.",review,fnO1oH3N5QMG-PvHA4F-VA,0,0,0 +5zrVZnla81bH9eh76d5GVw,2011-09-03,6QNmh2tk6XK0jBrswJoARQ,5,"I attended one of her classes for pressure cookers, and had to leave with one. Luckily, she offers great discounts after her classes! + +Since then I have also gotten a bosch mixer (don't know how I lived without one all these years!) and also a wheat grinder. Everytime I go in here I find something I can't live without! + +Shar has great classes, and tips on how to utilize all her products. Well worth it to attend a class. I just wish the store was closer to Glendale! + +So glad I found shar's, now my family enjoys homemade wheat bread and pizzas and all sorts of yummy things that are good for them too!",review,ITBs8txD0Zu-YuxXCGqokA,0,2,0 +P5uC-zfGG6yqoQDUyqyAvg,2011-04-19,6CVBHyAJT7X5HUp4WfH78Q,3,"I have either an extreme LOVE or DISLIKE for this place. More love, though. +Things I love: +Great wine, with all different price points, which is nice. Cool, speakeasy atmosphere. Great bands and entertainment. Great cheese platter and flat breads. Good prices. +Things I do not love: +Service. Are you a bouncer? A bartender? Are you leading me to a seat? can you get me a seat? Its confusing. The staff is not clearly defined (not only do they not wear uniforms, or name tags, but they are scarce and hard to find) +The mix. It is kind of a random mix. I guess that can be a good thing, but I was there once and it was like Spring Break in Cabo, and then the other time, it was like 50+ snow birds day. Either one is fine, it is just hard to gage when to go and who to bring, like, my mom, or my pals. +They serve dessert, but no coffee. That, to me, is just strange. Buy a coffee maker. Sheesh. They have this amazing fondue that would be great with some baileys and coffee, and alas, no coffee. Strange. I know, ""wine bar"", but if you serve dessert, coffee should go hand in hand. + +In the end, the place is cool and they have some of the best entertainment there. they ambiance is nice. Go early for a seat, they are hard to come by. Beware of paying $ at the door for an entertainment fee, but it is well worth it.",review,wxapwb1gulmqGVCNxVWjBQ,0,2,0 +R6aazv8FB-6BeanY3ag8kw,2009-04-18,EV7nE0i76PSf7Odfrqcicw,4,"I have visited MacAlpine's a few times, and every time I have been very pleased with both the food and the service. The wait staff and the owners are always very friendly and helpful and the food, although nothing fancy, is always good. I love the atmosphere of this restaurant as well as the neighboring thrift shop that is fun to browse while the food cooks. And the egg cream sodas are delicious! Not to mention visiting a piece of Phoenix history at the same time - I love it! The only downside to this place? I wish they were open later into the evening...",review,bUy80XymVAeKV9_QR0y8ug,1,2,1 +q1nDSpmV-FdTBNj6UuZvTg,2010-08-29,IZrBk5XXvCEO-7Ce3XYGOg,2,"I've never eaten at this location; both times I've had it was to-go. The first time I had a pulled pork sandwich, and a side of the beans. The pork was extremely dry and tasteless without the sauce. The sauce I found was overly seasoned. And the beans had way too much pepper. + +The second time I had HB's was a work lunch that we had this delivered. Once again, the pork was completely dry, but not as dry as the pulled chicken, which my coworkers complained about. + +I prefer Hap's BBQ over this place for sure.",review,2ARM6NFVciTzV21r7p8jiw,0,0,0 +CgHcO651uEE3aalrkm4boQ,2010-12-27,VcFKtk8h9nAztl2lnzaDaQ,5,"Need fig preserves? They've got it. Fennel? It's beautifully packed on ice and extremely fresh in the produce department. Need boneless pork loin roast from the blade end? The butcher has your back. Duck fat? Just take a peek in the freezer section. Sometimes, it's the little things that normally go unnoticed that gets you five stars... + +AJ's closed early the other night in lieu of the holidays and I ran around to FOUR different stores looking for something as simple as whole grain mustard and fennel. I came up empty handed on both items. I say ""simple"" items - but it's amazing when you rely on a grocer like this as much as I do and realize that most items are out of reach otherwise. AJ's carries practically anything my culinary desires could ask for! + +Although I had to wait a day to go shopping again and to make the recipe i was wanted, it was during my adventures to the 4 stores that I realized how much I truly appreciate this grocer. How is it I can get wireless internet via laptop on the I-10 freeway courtesy of my phone company, but can't find fennel within a 10 mile radius? + +This my friends, is why I love AJ's. And as someone who watches America's Test Kitchen as though it were food porn, I can say that any other grocer doesn't stand a chance against Eddie Bashas' high end store. + +You truly do get what you pay for. For all the employees at AJ's I say ""THANK YOU!!"" for the great service you provide and the products you offer.",review,jy1qPe0Tz3ewHacAtshmBw,1,2,0 +9mQj65SmYj2pcehH339aEw,2008-06-17,BXPqsdLt7GkVY0WFu_ypCw,5,"Love me some hidden house! + +The music is too loud. The drinks too cheap. The clientele too local. But I've never had anything but a good time there. Whether it's karaoke or weird shit on the weekends you'll have fun if you don't expect it to be Merc, cuz Merc it ain't. And not for one moment in it's life has it pretended to be. But I love it for what it is and that's an experience.",review,oC0kwGvgaAeT3ZIxdxTcJA,6,8,4 +FV0BkoGOd3Yu_eJnXY15ZA,2007-08-07,agM6-Nwj2Tbe-QCkqMugkQ,5,"Cowboy Ciao is one my favorite restaurants in Old Town Scottsdale. To start with, they share a wine list with Kazimierz. My favorite menu item is the Stetson Chopped salad. My only wish is that the serving was bigger! I can't get enough...and I'm too embarrassed to order two. The flavors in this salad are amazing! Smoked salmon, Israeli cous cous, creamy dressing. + +For dinner, I actually like the Exotic Mushroom Pan Fry. The tastes are really unique and I got to try mushrooms I hadn't had before. It's great! + +I did try the Bacon Peanut Brittle for dessert and I cannot recommend this. It was not good at all. It just makes the brittle really greasy and then you run into chunks of bacon...ick. Thank God my husband ordered the Chocolate/Peanut Butter pot pie so I could steal from him!",review,Mva8f3RBztfxUQoUi47SnQ,2,4,0 +1NZLxU5WvB5roPFzneAlLw,2012-09-04,fmogTChx_IX4QgLhuGFiQw,5,"Great Mexican food. +Authentic street tacos plus a full menu of tasty dishes. +Halibut tacos remind me of Ensenada +Michelada with Pacifico beer is a perfect beverage for any dish.",review,8KBmUXP4gUoGPxNKnHLpjw,0,1,1 +1cTI09YZ3uRPXt3YkznuPg,2010-09-25,eGYRmlaUPl-Wmrp2CweqOQ,4,"I really wanted to give this place 5 stars but.. well.. let me explain. + + +I came in on a Friday around 5:15pm trying to catch an early dinner. I am glad I did as upon entering I noticed they close close @ 7:30pm. When I came in all the tables were empty but they all had ""reserved"" place cards on them. Later I realized that there was some sort of club or church organization that came in and took over the restaurant so I would recommend making a reservation. The owner was very nice and sat us at one of the reserved tables. Her husband the chief quickly realized we knew nothing about polish food and offered us a sample of dill sour pickle soup. yummmmmy. + +The restaurant itself is located in old town Glendale's Catlin court in a small quaint little house that gives you a more personal ambiance. The owners made us feel like we were literally dinner guest at their house which was not what I was expecting but a nice surprise. + +The food is best described as ""home cooking"". The soup was excellent and my favorite part of the meal but the rest tasted just as my parents would have made growing up at home and I'm not Polish. Put simply all the main ingredients of my dish tasted as though they could have been bought at Fry's and my mom cooked them. The kielbasa was good but nothing unique, sauerkraut was tasty, but the green beans were either overcooked, thawed from frozen, or from a can. I am by no means a Polish food expert and maybe this is exactly how they would make it in Poland? + +Overall if you don't feel like cooking, want to try something new, and are in the mood for Polish food I would try it out and see for yourself. As for me I did like the restaurant and their owners but I think I will only return for the soup in the future, which I would gladly give 5 stars.",review,VyzwBKnq-LJ8OjvG0ZTwrg,1,1,1 +iDYzGVIF1TDWdjHNgNjCVw,2012-05-06,5vzkZR2B3TWcyrNkofEbEQ,4,"This is my first dinner stop anytime I'm in Scottsdale, and always makes me look good when I recommend it. + +This time, the standouts were the ceviche, the crab queso, the lamb adobo, and the Cadillac marg. Tablemates had other dishes they raved about. + +Noteworthy notes: + +I've not yet sat on the patio, but I can't explain why. It looks awesome. + +The margaritas are sufficiently stiff. They're not my preferred carburetor cleaning strength, but neither are they simply jazzed-up lemonade or those super-acidic-1.0 pH version you get some places. + +The service was a little lax this time, less attentive than before, and that's the only reason I'm not giving LS a 5 this time. + +If you're after Mexican when in Scottsdale, this is the first place to point your ride.",review,fSL20coJsOi_69A3u2OKcA,0,2,0 +PuHucejs4LG3hSXnrwi9-g,2010-01-17,qSqL5Ct8i0_2s8L29nYhuQ,2,"The actual restaurant is fine, the service is friendly and good. + +I am not going to go in to the food other than to say, no. + +Oh well $340 bucks and all I can muster is a no.",review,GubdNFoDAsiwE6bWIr97cQ,2,5,2 +619v4z_tj2NiZWuX1tPdrw,2010-01-26,JAq8WMuHq3DcITJa7O7byg,3,"I have been graciously reminded by many people that a ""bruin"" is a kind of bear. + +Sorry guys... I'm an AZ native (we don't have bears here in Phoenix) with the classic AZ school system education. :)",review,Yk37VAp452K7FwHWd1rrQw,1,1,1 +q7DzFSkt1ColaWrAOw7rFw,2012-05-27,4FlODbbswl1eq5-z96vppA,1,"I recently had a shit cleaned at the Intercontinental Hotel in Hong Kong. Not cheap. I only mention that because this place charged MORE to clean that suit - almost $30 for a two-piece suit after they tacked on their $6 ""designer brand"" surcharge (no, I am not kidding). Despite branding as ""green"" the suit still reeked of solvent (the green, silica-based solvents have never left an odor in my experience). No differentiation to justify these absurd prices - a lot of good alternatives in the area. Be warned!",review,JnJDO8c37PnwsP0P7-1v0w,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2008-06-19,3iA6ROdM2Ii-k7HHvGcNxw,2,"I used to frequent the Lost Leaf almost daily starting the day they opened, unfortunately I cannot say the same anymore. I used to love the refrigerator full of beers, the music, and the cool little home, not to mention the biggest thing, the promise of a full bar. Now, everytime I go there it's full of douchebags, they are out of the beer I want, and the music has somehow become sucky. Perhaps the biggest kicker... there is still no full bar! The servers are surly kids, who have the audacity to tell you were you cannot stand, seemingly forgetting they work in the hospitality industry. If this were a city with a ton of good bars, that would never fly. But since they are one of the only games in the area, most people go back just out of convienence. The last time I was there, we coaxed a bum to dance to 1920's tunes that were being played out of the treehouse out front. That was about the only redeeming quality. And I swear if I see one more dude with girls jeans trying to look cool with a bomber of the worst beer imaginable I'm gonna snap. + +Thanks for ruining what could have been an awesome hang out spot guys.",review,JgDkCER12uiv4lbpmkZ9VA,2,3,2 +hh2lP4_2N-tk_OxmaTf_qA,2009-09-01,MFIB6AA1sP7gq49z0Bh29w,4,"Yes, the view is wonderful. Absolutely. + +Sadly, my table was near the entrance, limiting my ability to enjoy said view. Also, we are still in the summer months, so I was confused that there was a fire raging outside at night. + +The decor is wonderful, dark with different tones and moods. We arrived in the early evening, so I was surprised to see how dark the room would eventually become. I didn't find the table and its decor that exciting, but it will give it a pass. Not everything has to be practical art. + +Our party consisted of five and we were certainly treated to a good sampling of what this place had to offer. Half of the party ordered off of the set price menu. This included a three course meal for something like fifty dollars. It may have even been less than that, but I'm not sure. This menu had an array of choices and wasn't limited to chicken or pork. + +I was impressed with the portions and the quality. The salads were crisp and the dressing wasn't overpowering, more of an accent, the way it should be. The meat was tender and flavorful; our table ordered the NY, Ribeye and Salmon. I do agree with others who said that the sides were a little small, but I do think they were worth the price. I know for sure the cream of corn was, as it was treated with green chili and a bit of spice. + +The desert was alright. Not a great deal of variety. The textures were spot on, but the temperatures seems a bit off. If a dish was intended to be served warm, it was slightly too cold, etc. + +The service was bad. Probably the worst service I've had at any restaurant. Our server left items off of the tab, forcing her to return and run the debit card three separate times. I am okay with someone making a mistake, but it should not take two attempts to correct. Also, my wife and I ordered Mojitos. They were very average. No sugar, which I assumed was standard fare for Mojiots, and amount of mint was rather low. I understand that drinks are open to a bartender's whim, so I won't dwell on this fact. + +Valet had a bit of trouble with our car and keys, which was annoying. + +Overall, I enjoyed my experience, food and atmosphere alike. However, the service did bring me down a bit.",review,syF-6VzPdjmCXbTye6N9Eg,0,0,0 +OFiQ34TNKEE5a00Vd8Kwsg,2008-11-03,N9lNmpiOD0bQQTDUvPAMew,2,"My first visit was roughly two weeks ago when I got a Mediterranean pizza over lunch. Service was friendly and prompt and the whole meal cost ~$4. + +Today, I stood around waiting for help for about 5 minutes without anyone so much as saying 'hi.' One employee looked at me several times but ultimately went back to stocking shelves each time. I could see people in the back and the general manager talking on his cell phone. I decided to ultimately leave rather than waste any more time. Disappointing at best.",review,EO5Q9yRT7LP00iQYpSNuhw,0,0,0 +D1T1jtCfTfXD-cQE3QViow,2012-11-04,kBZdDpYbZCNXdSWXgCSFPg,5,"What a fabulous dining experience! My boyfriend and I are always looking for new places to try and came upon this place on Yelp when our regular Saturday spot decided to no longer be opened for lunch Saturdays. Right upon entering we were greeted by someone behind the register and he sat us down at a booth. The decor was great and the place was spotless. We ordered the Saturday special of Monte Cristo, the potatoes and the biscuits and gravy among other items. The Monte Cristo was perfection and the home made blueberry and strawberry jam was excellent! The potatoes were seasoned to perfection and eggs cooked perfectly. I would definitely recommend this place to anyone and this is now going to be our regular weekend breakfast/brunch place.",review,jHwEOGkgl0yQ-oLWxiCAGg,0,0,0 +s26P-jeVUH9TjnTPQttPag,2012-04-05,-ZjQLlmThaRU5hpgLfmH_Q,1,"Where are the managers???? It took 1 1/2 hours for our meal to come out at 8:15 in the evening. Items came out at different times so we couldn't all eat at the same time. The asparagus tempura was inedible because they didn't cut the ends. Waitress just took it away and did not comp us. Waitress knew next to nothing about the sushi menu. She sat and talked with the hostess the entire time instead of waiting on her tables. Food was WAY over priced, and I couldn't speak to my dinner companions because the music was way to loud. One of the worst dining experiences in a long time. Paid $70 for a dinner for 4 and went home hungry. HORRIBLE!",review,Rv3k5uOZT5i40aLmlhw4DA,0,0,0 +-0bUDim5OGuv8R0Qqq6J4A,2012-01-13,ex4pODOWrfzx1k89FEE0Kg,3,"This place is busy, but the kids love the pancakes so much food for the price.",review,okcNd96gHHf_83wly93bpQ,0,0,1 +mn1LFFcQwEpir38_mPYH_g,2012-07-14,AgZm8lHgL_R3bsGDQSs6NA,5,"I was sad to come back to lai lai's and they no longer had the Mongolian :( boo,, but i took my mom there and we were starving so we decided to order off the menu. My mom is allergic to msg and they helped us with what we should order. and she didn't get sick!! woo hoo.. we ordered three dishes and an appetizer to share between her , my bf, and myself, and we stilll brought food home, and I dont think we spent over $30 bucks for all that food!! it was very good to! i love good cheap food!! Ill be back, they are always friendly.",review,TKiucSBuj9twVDW-BoAdrg,0,2,0 +RFMcLH3_58eAwvSfvLhJew,2012-09-05,etL0kdSM1kaKM7QHW2lbNg,4,"Mmm. The cream cheese and potato soup always perks me up when I'm getting sick, and I love their chocolate chip scones! I've had their ravioli too, they're yummy. Wildflower is homey and consistent!",review,nsjM5lu-8CL97d58pJuVng,0,0,0 +5I3H_dsz7u90rir67QJq_w,2012-02-25,-qbRKlaxLm0RBkdemva5Qg,2,"Ugh...I had never been to a Waffle House, but my southern friends who frequent them a lot back home convinced me to try it out for a late night creep. The food is just sub par and sits hard in your belly. All I ordered was waffles and I wasn't impressed. I do appreciate that they are open late, so I wont' ""throw the baby out with the bathwater"". The cocoa was cool and the server was cute, sweet and attentive. Fortunately for me, my taste buds are already spoiled with The Good Egg. I'm so sorry I cheated on you baby!",review,K0euQLFAcKhQPZ6JxGAryg,0,2,1 +jf4RUa9EQO37hqxRCxbEXQ,2012-10-10,pHX-AXHXtPDK3dWcH4sJew,5,Very good. My wife and I stopped by randomly on our way back and had beef pho and veggie pho. I eat large portions and this is the first time ever I didn't finish a bowl of pho. If in the area we will stop again for sure.,review,MxeHhDzPsO9P8swTby_faA,0,0,0 +91n02N35x38nvR1XH-jOAw,2010-12-05,abVV1guPWL3mK08A3a8ajw,4,"This place is wonderful! The service is amazing and food is delicious. + +I especially enjoyed the Clams Oreganato appetizer. + +The Eggplant Parm lunch special came with pasta and choice of soup or salad. What a great deal!",review,UfGlNf7MbKeRPp4ASUVTcg,0,0,0 +gb-k4Z17XxuPkUmsevwBYg,2010-06-27,-E_VKAzXc1__o8-X20CCuQ,4,"Angel Sweet Gelato is a welcome treat on a hot day. It sits in a small strip in the middle of Mesa Riverview, but if you can find it (west of Logan's), it's worth a stop. + +The selection of flavors is large, including a dozen dairy-free fruit flavors that aren't quite as decadent as the dairy gelatos in the left-hand case. I've tried the lemon and all the berry flavors, and haven't found anything that wasn't delicious. The prices are reasonable, and you can order sizes from one small scoop to a big box (all unfortunately served in styrofoam). + +There isn't a lot of seating in Angel Sweet, but I've never seen it full. Get a punch card if you live in the area. If you like firemen, this would be a good place to see them hanging out. =)",review,IldNKx5L8unlcv3LBSs-_g,0,0,0 +Cr2JNnewX53TYd9w6qw6Jw,2012-05-16,QaNWZl78P8pIWtmYqg5ECw,4,"Last nights To-Go order: +Char Burger w/avocado. Burger was delicious ~ Yum! +Extra crispy french fries were perfect! +Price was reasonable for a burger of this caliber. +No drive-thru +No waiters +Staff very friendly + +I WILL BE GOING BACK!!!!",review,MfbH-4cBh0EXWd7IKEuEhg,0,2,0 +PNrOTfMmE0CJFV9YwSLzYw,2009-12-17,qaSppPcuea8OfF2MwvZ9nA,4,"I have not had better chinese food since moving to Arizona. The restaurant was 3/4 full on a Tuesday night!!! With many Asian people. I thought in this ""recession"" that having a restaurant that packed was a pretty amazing thing. The service was superb. The food was overall yummy. I did not enjoy the greasy wonton chips that are served for free before the meal. My friend really like them though?!?! The hot tea was good. My veggie dish (something with bamboo shoots, mushrooms, green pepper, broccoli, ect.) and steamed rice was good. I ate every single bite. The free dessert (wontons filled with banana and others with plum maybe?) were yummy. The total bill with tax and tip for 2 entrees and 1 soda was $24. I left full and happy.",review,T7J9ae0wTskrI_Bgwp-4cA,1,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2011-06-24,ADVoNoduCFQ3Ecz4zJRVyg,3,"Probably the most overrated place in the Phoenix area. There pizza tastes way too much like their canned tomato sauce and there is always a wait to be seated. + +That being said there food overall is OK. There meat salad and cal-zones are good and the servers are friendly. For all the people out there giving it more than 3 stars: try other pizza places like spinatos, la grande Orange, pizzeria Bianca.",review,qQb4pg5uqvjMOfGPWbIkeQ,0,0,0 +PWG28q4JFOc8FiRBjnfCkA,2012-10-24,W5AdcbX_qzSYQ5VbwWyJsQ,3,"Alright, so here is my two cents on Brat Haus. I suggest to steer clear of the brats I tried (Beer Brat & Spicy Thai). I found them a bit dry and bland. I also found the pretzels less than fabulous. I do suggest to try to big, juicy, tasty, meatballs. Much better choice. The outside patio very cool, an open fresh space with plenty of seating and a big ol' wall of funky art. The service was also friendly, and attentive and fair prices. Overall, it's totally worth checking out if you are in the area and in the mood for something different.",review,lmiDCrmas8TxRsbIGZX9Pg,5,6,3 +Y-9dJvw-J2d9QKfuL7mKgA,2010-03-28,c15oWoC-EERMpE7iCmAcwQ,5,"Went here today Sunday about 8:50 and it was crowded but not to bad, about 1/2 hour wait. Im warning you now, dont ask how much longer after you put your name in if they told you how long when you checked in. + +About 10am is when it really got packed, just about when we got done. I ordered the chicken and waffles and i really liked it. I asked for some butter for my waffle because it didnt come with any and it made the dish perfect for me. The chicken had great flavor and when you take a bite with the waffle and butter and the syrup, heaven. I tried some bites without the butter and it wasnt even close to be the same for me. +My grandma got some omellete and she gave me some because she knew she wouldnt finish it and i would order that also. The omelletes are pretty good size but my wifes dish, my sons and mine where not that much food especially for $9. We are use to getting enough food for 2 when you eat at breakfast places and slighty cheaper. Not complaining because it was good but be ready. +There was 2 guys sitting next to use and trying to eat there 30 minute food challange. big ass egg plate with bacon and hash browns, they both only made thru about halfway. I would definilty go back and get the same stuff. I also got a lemonade with mint and it was just right. My son really didnt like his reese's pancakes. +Id like to go back and try some of this stuff ham steak w/ gravy, chicken fried steak w/ hashbrowns, bannana pecan caramel french toast",review,3w-JiPus8k-BR5PQ7egDvQ,0,1,0 +xWlCgISVtozxCztPA4nGaQ,2010-05-21,AUCwvenvFqnWcv04yYrL1Q,2,"On a early Saturday evening, the band was playing the crowd was just starting to meander in. Going further inside in an attempt to avoid the high volume of the band whose audio was piped in throughout the restaurant (I failed) I realized shortly that I must of been missed siting in the middle of the dinning are as the wait staff moved smartly from the kitchen to the front delivering the drinks and food to the patrons. I ask a member of the staff was I sitting in the wrong area and soon service was rendered. + +Food, nothing special but it is more of a bar than a restaurant. Although the atmosphere was unique, I do have a question why cameras were in the mens room.",review,nK74XYEJBa2Z5OLN5O6HYA,0,0,0 +08Z_Zzp8PyEmWWpYurIO-Q,2012-03-18,MD1FwtNX1SdCsEoSjlw6NA,5,Love this location at Gainey Ranch! Great food consistently!,review,BtQVxFotHFK3T2FtIrBWmg,0,0,0 +MuIXnv7Oq7X3-4aEsp9dDA,2013-01-02,CD3QORZYdE0UKBrdyylYsQ,5,Our server Gary was awesome. Food was amazing...an experience.,review,qK_o6Chm8VakPzeMCurtWA,0,0,0 +vxPPpj5jJKO8DtapF5S-NQ,2010-03-22,7cVUEyUE_rOT9AXdxfmKWg,4,"Pupusas?? As a hardcore Mexican food enthusiast I was intrigued by the concept but barely able to figure out how this fascinating dish was pronounced. I am proud to say that I am a HUGE fan of pupusas now. + +Salvadoreno popped up in a search of mine to find a low-key, nice Sunday night place to relax and enjoy some food. It definitely was worth the visit to an interesting part of Mesa. + +The restaurant is very similar to a lot of Mexican food restaurants anyone who has lived in Phoenix will be familiar with. One room with several tables and a counter with interestingly-named dishes posted behind it. The waitress was very friendly, but I will say that knowing a little Spanish helped. My girlfriend and I both ordered the Pupusa combo platter, real risky based on other reviews - I know. I went with Pollo and the revuelta mixed with pork, cheese and beans. She had the chicken as well with carne asada. This little dish is fantastic! I think next time I'll just stick with getting two pupusas because I was extremely full and did NOT need to add rice and beans to the mix (although those were good too.) + +The only disappointment was the fact that Independence Day was on the TV in Spanish, but the volume was too far down to hear. I'd love to hear the voice-over actor for Will Smith busting out a ""Bienvenidos a Tierra, P***!"" + +On a more serious note, I look forward to heading back here as soon as possible. I'd love to try the Ceviche, as it's on the Best of Phoenix list, and there are a few other dishes (think breakfast) that looked intriguing.",review,mQba83gB018LlGt51r80ZQ,1,2,1 +qMkIbQFrROSnPaQ7at85-w,2010-02-13,lkW5sIbOqiYRQbkpera8dg,4,"I agree with others that it seems a bit expensive at $15- but that still would not steer me away from going. + +For the first time in about 8 years I found myself at the DBG with some out of town family. Wanting to enjoy the weather (since they had just escaped the cold grey winter of Detroit) the gardens were the perfect spot. The garden is equipped with wide paths and plenty of benches to help the old timers pace themselves. It helps remind us city dwellers of the beauty the desert can have and how unique Phoenix truly is.",review,gTCM7qlVrwdml-hFB6aJqQ,2,2,2 +qd1ajiZRCwqEQJqCgoN1wg,2009-04-29,zykk2GqMA_QHVz6lvtQ9Xg,2,"Wed-Sat, sit at the bar and ask for bartender JOY. She's a GAS! +Great spot for a late-afternoon glass of wine with an appetizer. Mostly poor execution from kitchen, excellent service. + +--hummus appetizer with sample of olives is great choice +--crispy plantains with pepper are tasty and fun, crab dipping sauce, not enough crab +--tuna salad with arugula, uninteresting +--side salad for ciabatta ""sandwich"" typical Dole bag mix (first visit) was WILTED and nasty. Shame! +--chicken salad with dried tomatoes and goat cheese; way too much cheese + +Now, to Joy. She's a keeper. First visit, we struggled with the proper preparation of a Sapphire martini, but it was primarily the fault of our server's communication skills. Working with machine-made ice (you know, the stuff with all the flecks and shards that water down a proper martini), she primed the ice with a squeeze of lemon, drained, then prepped the glass with vermouth, in and out, then pour the STIRRED Sapphire in, drop twist! Congrats, my lady. + +If you can get past the chick-chosen wallpaper (wrong) and perfect-sphere fake tabletop plants from restoration, the different-height tables mix up the room just right and make it feels shabby chic without the white. + +Say hi to Joy. =)",review,hDlSSyDreM9xY4yQWPm54w,1,1,0 +9Y3aQAVITkEJYe5vLZr13w,2012-04-09,X_AT29hdvyK8omBxRsfasQ,5,We started each morning of our vacation at The Breakfast Club. Everything was so tasty; juices are fresh-squeezed. Menu has quite a variety and portions are very filling It gets busy early. Be sure to give it a try.,review,tVoCVBUg-ubBMLQlX5_SVQ,0,0,0 +97Z7j4vH0kfzL10AONi4uA,2011-08-09,62xjol6KYNtMS2gFSmqfaQ,5,"I had other piercings done here and then went out of state and got my nose pierced with a friend and when i got back I was having problems with it. I went in and talked to them and they changed out the stud for me gave me a discount on the jewelry and were really fun, friendly, professional and very informative. This place is top notch. Won't go to another place for my piercings again! No way! It is very clean, and these guys know their stuff! Really impressed...I could go on and on! I won't get my jewelry anywhere else either...they have a a great variety and if they don't have something you want they order it, easy peasy. Love it!",review,PzeWNJ_hrhDzs8NdcBA06A,1,1,0 +5GpvSL1tlAjpgdJKZ5eLpg,2011-01-06,PZoYdab9Zd9kfnqjDNh-XA,5,The food here is awesome every time I come here we have a great time And the waitress kimberly Couldn't ask for better waitress,review,vE3yvKUayE1WxQPuRB4eEw,0,0,0 +bts6jVczHJuWzpT8Y26UsQ,2009-01-05,d_2huUcM3ie0Zt-0tybnhg,4,"This has been a long time coming and is one more huge step in the development of Phoenix as an urban center of the United States. + +I have a stop three blocks from my house at Central & Thomas. I have ridden from there to Tempe and it only took about 20 minutes to get there. The stops at each station are very quick and efficient. Everyone is in and out and the train is on it's way again. The ride across the lake is a beautiful way to enter Tempe. From there, it's just a short walk to Casey Moore's and all the other spots I enjoy in Tempe. + +The last star is missing from this review because service ends far too early on the weekends. I understand not wanting to deal with the after 2 am crowd, but could we get at least 1:00 am or 1:30 am on the weekends!?",review,gW-ukHucTfVCnFCKKxPJzw,2,3,0 +CrBsdxqOjPdnfsDxV89GJQ,2009-02-24,Nmw167kEkXLJ7YdE7wWjiQ,5,"OK, I've decided that other coffee shops sell swill. I think about Dazbog coffee in a dreamy sort of way, like unstressed people think about sex. I mourn often that they open so damn late in the morning. Seriously, I would be there every day... + +The chocolate cappuccino rocks my world and perks me right the hell up, even on the mushiest afternoon. No bitterness, not overly sweet, just blissful- in an I've-just-been-bitch-slapped-by-caffeine sort of way, of course. + +Oh, and the sandwiches I complained about? Replaced by real deli looking ones in clam-shells. Far more appetizing. But what the hell do I need a sandwich for when I can have a giant red velvet cupcake? + +Don't make me break out the voodoo, Dazbog. Just open at 6:00 am like any other coffee shop and we'll be BFFs.",review,N-D-d1Z4UybdlkK1HxlNPA,4,4,5 +YQvg0JCGRFUkb6reMMf3Iw,2011-12-11,bT1Pen64fidmeNqm8ELFIQ,4,We had a delicious meal with great service. Awesome!,review,23iaSkV0K36OetsHnXLoYQ,0,0,0 +7eUFOcfxuXDdrHGVSp3_9A,2012-10-11,MLMI9B6j_E6YlcjCUJcG9g,5,"What's not to love? Herb n Flavors uses local, high quality ingredients, the food tastes GREAT and they are vegetarian, vegan and gluten-free friendly! I especially liked their vegan spinach and artichoke dip! We will definitely be back soon : )",review,EIQ8gPTx5L-zXPlYDwWGeg,0,0,0 +J7zXaGgQ7U6rWlaUBVEjjQ,2011-03-04,7DvxqVS6o6QRxAFv3wRP0g,4,"A friend of a friend recommended Lou/Autoplex and I couldn't be happier. Lou provides honest, fast service and is a pleasure to deal with. No runaround, no nonsense, honest auto service. Extremely difficult to find these days... I went to him for a muffler/tailpipe and then later for a catalytic converter and was completely happy with the outcome. Additionally, he pointed out other things that I should see my previous mechanic about that they needed to fix/finish. :)",review,LKJswnMTubEGjJXFDseHKA,0,1,0 +y6uO4ydAwBHUujfiSktxZg,2012-03-12,AYHZs0_M8XgoGDU40dewDw,5,"Excellent New Mexico style food, great hatch green chile.",review,DA_SU_MbfgfalzbktcsBzw,0,0,0 +eM0BAZ57RDHdhvXc72O8Pg,2013-01-04,sM0CDlYCfv7Q7K1z2kEN-g,3,"We have been to this location to buy gear prior to the Fiesta Bowl. Yes, things are way overpriced, but that is the premium one pays for licensed merchandise. One nice thing is that they had a buy one, get one half off deal. Was nice for our large crew. Nice selection of NFL, NBA and MLB gear. Friendly staff, good location. If you feel the need to buy licensed sports gear when you are in the area, worth the trip.",review,z5QQGDqErjMKD8XtM00s7g,0,0,0 +Gy7ERh2GhmAYMZMO48ztBg,2011-06-21,khAoUDIebA5CBJzQpQx3DA,3,"Went here last night with another couple for dinner. The pitcher of margaritas was spot on, the chips were outstanding along with the guacamole and salsa. I ordered the tortilla soup which I ended up sending back cuz to be honest it tasted and looked like a bowl of enchilada sauce. My husband ordered the filet and enchilada which I have to say was cooked perfectly and definitely would order if I ever went back. The other couple ordered the beef short ribs which I didn't taste but they both agreed it was over cooked. Service was great but when I have to send something back which I rarely do I can't give more then 3 stars.",review,FIin1o5cJb8thgJuP8eLCA,0,1,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2011-01-31,_Q519j_yNQ_RqprvHjSb9Q,4,"Arizona definitely lack cool spots, but luckily they have The Vig. The venue has a nice patio area--perfect for warmer nights, but the inside tables are fine too. + + +My friends brought me on a Sunday night where all their bottle wines are 50%off... which is pretty awesome. The service was friendly and the food was legit. Try the ""Good ol' Steak Salad"" and Crabmeat Artichoke dip! + +btw the valet is $3.",review,df0YRtus3XaN64pzs8iteg,0,2,0 +_pw-OnDpCe9XM0rDVvTUMg,2010-10-22,hi-Z3DzxW10iOHBGVfzhaw,5,I love this location! The food is always great and the service is good. Wi-fi is a plus especially since I am going to school. I come here almost everyday. I recommend this location to everyone.,review,JniV2vR1TZFBCrdTlIOlNQ,0,2,0 +GqtMJxq5-7Xp1ZXXmahLaA,2007-12-13,GQLdJaJQ2b1LKmZmmICMHA,4,"I am at work today, talking to my co-worker, letting her know that I was going to Taco Bell for lunch. She looked at me disappointed, and said ""I never want to hear that you are gaining weight again...stop eating that!"" She then told me about Sacks....I decided that I would give it a shot. (not that is was any healthier....) +I wasn't real impressed with the layout of the place, even where it was located. It was getting busy when I walked in...and had no idea what to order. I ended up with the Van Gogh, which was roast beef, dill, alfalfa sprouts, cheese and I subsituted the marble rye for a tomato basil bread. The girl at the counter was really sweet and helpful at helping me pick out what I wanted. +My sandwich was really good, and it wasn't just a normal sandwich. I also liked the little cookie that they snuck into my bag. And the fact that they have Stewart's root beer was a nice bonus. +The only thing that I could say that was negative is that I left there still smelling the kitchen on my coat. And it wasn't pleasant.",review,ca2Sa9Enqg2GlWFQ95p8bw,2,2,2 +MXOdsPTLQPsQK9hUq01DWg,2011-01-25,7aCLrfSXrGKdsBb3Ri520A,4,"we went here for dinner and drinks, and it was awesome. the giant soft pretzels are amazing, buttery, and delicious and are served with a roasted pepper cheese sauce. they are awesome, but get them to share, the butteryness is rich! the prices are reasonable, and the patio is nice to sit out on! even better than the food, service, and prices is the music!! they play an awesome selection of music!!",review,6VGodLwjrYPQYq0qxfRyXw,0,0,0 +rZbHg4ACfN3iShdsT47WKQ,2008-02-10,jP-z3uJAqR7J6XEcDq8cMA,3,"ok....first let me say that I grew up in PHX. And we used to go for special occasions to ""Bobby MaGees"" which is where BobbyQ's is now located (says something about the quality of my restaurant experiences as a young fella)...And as cheesy as Bobby McGaees was...i kind of miss the pirate serving me my dinner (and the salad bar in the bathtub). + +But i do like what they have done to the place. Cool interior. Casual but with a nice upscale feel. The patio seemed really nice (didn't sit out here). + +We tried a variety of things. A burger, a pulled pork sandwich, brisket, baby backs etc... + +I think the standout were the ribs. VERY good...very tender (but not overcooked), good sauce. I enjoyed every one.Everything else was just ok. Like on par with Chili's (which isn't saying much). + +The sides were pretty tasty. Corn (roasted and then taken off the cob for you) , mashed potatoes, cornbread...all pretty good. + +Dinner for 4 (2 kids, no booze)...50$. + +But a 5 star place? Maybe in the context of other restaurants in the Dunlap and I-17 areas (next to crazy Mitch's Furniture barn.) But not in the broader context of PHX. + +I would definitely go back for ribs...but not a place that will go into the normal rotation. + +Side note: Hilarious crowd on a Saturday night. Lots of ""west side"" clubbers...or maybe too old to be clubbers but want to go clubbing (there is a lounge attached).",review,gdLc6dq1NpjHj47WBUNZ_A,3,3,2 +EcHuaHD9IcoPEWNsU8vDTw,2011-02-26,zXzuOVGhoXcu0u9iLcYxhg,4,"My wife and I decided to take a little vaca to celebrate our 13th anniversary and also was the first time that we were traveling with our 5-month old, so you can imagine we were a little apprehensive. + +The resort is absolutely top-notch, the rooms are very spacious, the staff is very courteous, and the facilities are simply superb. Our room overlooked the mountain, and in the morning, it was blissful to sit outside and sip on our cups of joe. + +The rooms have a microwave and a small fridge, something that was invaluable to us to store milk and warm it up for our little one. The spa is simply one of the best in the valley, and even if you don't stay here, I would recommend the spa to anyone. The resort is close to at least 20 golf courses, something that might be important to other golf nuts like me. + +So then why not 5 stars? Simply because they would not extend the check-out time for us by even an hour. The check-out is 11 am and our flight was delayed to 8 pm, so when I requested, I was told VERY NICELY, but firmly that it wasn't going to happen. I've traveled some, and have NEVER been turned down for a late check-out request, ever. + +Still, a great place to stay, the facilities are top-notch, the staff is very nice, and we had a wonderful time. Would recommend this to anyone wanting a relaxing, fun experience in the Valley of the Sun. Cheers.",review,4o7r-QSYhOkxpxRMqpXcCg,1,2,1 +1621ir5mjVgbHwxCbMAEjg,2011-06-25,4TQTwp7lAca35ANmw2TD5g,3,"Thank you, Mobile Yelp App! Without you, I would have been stuck in Phoenix with no idea of where to find Thai food for lunch that was near a Light Rail station in Tempe! + +I arrived at Thai Rama about 11:15 AM. On entering, there was no indication of waiting to be served and no one visible from the staff, so I selected a table and sat down. My waitress came to the table and asked if I would be more comfortable at a 2-seat table instead of the 4-seat table I had selected. Since there were about 25 available tables of various size, I declined and told her I was comfortable where I sat. There were 3 other tables active in the restaurant, so I did not anticipate the restaurant needing my 4-top before I was done. + +The waitress set the lunch specials menu on the table and went to get a glass of water. The lunch specials menu had 10 options available, but no Som Tom. I asked the waitress if Som Tom was available and she answered that she did not know what Som Tom was. She reached for a full menu as I explained that Som Tom is green papaya salad. She handed me the menu and directed me to the third page for salads. There, first on the list, Som Tom. + +I ordered Som Tom, the yardstick by which I measure every Thai restaurant, 10 spicy (5 makes my nose run, 8 makes my forehead sweat and 10 brings tears to my eyes), leaving off the green beans and shrimp, and jasmine rice. Waitress asked if I wanted anything else to drink, but I said I would stick with water. + +Ambience here is pretty plain...and the paper napkins are not of the highest quality. The decor reminded me of a formula-type restaurant like an Applebees or Chili's...with a hispanic flair. I observed the chef as he came out of the kitchen and made a loop around the dining room. As he walked by, I asked in Thai how he was doing. He stopped and replied that the day was starting off slow, but that it would be busy soon enough. Then, he continued back on to the kitchen after wishing me a good day. + +About 5 minutes later, my papaya salad was brought to the table. Portion size was nice, about 2 1/4 cups. I took a taste and evaluated a 5 spicy. When the waitress came to ask if I needed anything, I asked for more chili and lime. She returned quickly with red chili pepper and sliced lime. I doctored up the order and fell to with a gusto. For the price, adequate. + +Jasmine rice was about a cup, and not too sticky. The waitress was good about keeping my water glass full...and in Phoenix, that is important! + +On completing my lunch, I sat and waited for the waitress to bring my bill. I saw no one for about 10 minutes, then the chef came out of the kitchen and made another round of the dining room. He asked me (in English) if I enjoyed my salad. I answered in Thai that it was not spicy enough, and I was surprised he was using red chili instead of Thai chili. He chuckled and replied that Thai chili was a little more expensive. I asked for my check and he said he would send the waitress out. + +For the convenience, outstanding! For the next experience, I will be sure the chef sees me before I place my order. For the wait on the bill, a little too long.",review,8qe2c5uRlAkvNFvDriBm1Q,0,2,0 +8oxnPoOS5wQzhl5LLOm7ow,2010-07-25,DCCqJzKnPARsxymujSUkAA,5,"Awesome country club. Great new remodled gym, heated Olympic pool for year round use. Love the family like atmosphere, plenty of planned family events/pool parties. + +Only complaint, wish members who didn't pay for the monthy tennis membership could still rent a court on a need by need basis. Regardless courts are top notch, great facilities and friendly staff.",review,_OLBq0aZR7K-UdPCrByatg,0,2,0 +QnAzW6KMSciUcuJ20oI3Bw,2009-11-16,RbAdrppz5Q_zwLsd9FYYaw,4,"We are lucky enough to live basically right accross the street. + +The food is great. Love the thin crust pizzas and the sweet potato fries. They grow a lot of their own veggies. They seasonally sell dates at the farmstand that are GREAT. + +You get your food free on your birthday. + +Gets very crowded on the weekends! + +the dessert is just OK, but the shakes are great!",review,9UxkYlsD0cnziYN--O8xug,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2010-07-18,tQ-y8TbqKTvM6WPgqADe4A,5,"This is probably the sweet I crave the most! Salted Butter Caramel! Yummmm! When I cant make it up to Scottsdale, I stop by my local Whole Foods in Chandler and pick up a pint from the freezer section and it is just as good.",review,KSTOdz0lSFCkqBSRNwjERA,0,0,0 +X25CYzSxzCgk2nO3DkrgdA,2012-12-10,Rx5HkApX1eXcNYX4_AvPMA,5,"This was the first real ballet I have ever been to, and I was so excited it was the Nutcracker! I have been wanting to see the Nutcracker for years. + +Thanks to Lindsey and Yelp, I had the opportunity to go and the performance was just stunning. When I walked in, I noticed the lobby was beautifully decorated, a gentleman reading a story to children and a ballet dancer posing for pictures. The bartenders we bought our drinks from, was very friendly and accomodating. + +I can't say enough about how beautiful the performance was from the dancers, the sets, the costumes, etc. Just incredible. I may just take my daughter to see it with me this season....",review,RxfFQxUtSIGYwTKU_rvAeg,2,2,1 +txCJurIIrE9ZoHu3gZUvnQ,2012-02-25,Qfz2HwpS3tdHOlwBlhZNrw,3,The server could have been better. She spilled a coke on my lap. This made me late for my movie. The wait was so-so however the food was cooked to my liking. I will go back.,review,u51Y4YnhAbWn0nghijc2dw,0,0,1 +8PYmv83XaJTioz5_A-SVxA,2011-08-01,iHw39WDbIi5qgurOkNNiWA,1,"Still quite poor both in service and food. maybe I made a mistake and ordered Sichuan Gong Bao ji ding for what seemed like people from canton district. Unfortunately to get the good service U have to speak Mandarin/Cantonese. I do speak a smattering but try not to use it as I never feel confident about the intonation. + +The dish came out with zichini and bell peppers (what!??) Where is the peanuts the dried fried red peppers and the large pieces of scallion. On pointing this out all I got was "" Oh you like peanuts.. ok I will put some on"" and she then proceeded to get some peanuts and sprinkle it on the chicken. + +Well at that point I was happy that atleast the chicken pieces were present else she would probably end up sprinkling raw chicken pieces on it like the raw peanuts she dumped on top of the food. + +Well then I spoke a few chinese words and the scowl turned into a smile and she then became a bit more friendlier. + +Unfortunately I do not condone this type of behavior. It is all in poor taste...",review,Zgp9T6IOVFOozrWDw_mUGQ,0,0,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2010-12-28,omMDENP3jXFF_lJ5UI5Rog,3,"I had a hankering for raw fish today and decided to give Moto a try. Overall I was pleased. + +The menu had a wide variety of tempting Asian treats but I was here for fish, so I ordered the sashimi combo with a bowl of Miso. + +The soup was a bit odd. It seemed to be normal Miso soup with some shredded cabbage tossed in. The cabbage added a texture that I didn't really want but it was easy to eat around it. + +The presentation of the sashimi was interesting. I had a pinwheel of fishy goodness with yellowtail, smoked salmon and tuna. The fish tasted quite fresh and the portions were generous. + +When I need a sushi fix for lunch I'll be returning to Moto.",review,ND95DgvN7ba8MabfXE3lsw,1,1,0 +eIxSLxzIlfExI6vgAbn2JA,2011-07-28,y7yBnfbPxZJ_L93tnxMP3g,2,"Was extremely psyched to try Lobby's, considering all of the great reviews, but I was sadly disappointed with the results. I'm a freak for Chili burgers (good ones are very difficult to find) and The Lobby's Chili burger was fairly dull, featured Cinci style Chili (BLAH) and like. some sort of cheese whiz kinda crap. Boo. Also ordered fries, and a Chicago dog.. the Chicago dog was overpriced and forgettable, and the crinkle cut fries were reminiscent of Del Taco's.. which isn't exactly a bad thing, but considering that Lobby's is supposed to be a tasty, quality burger place, frozen crinkle fries are kind of a half assed approach.. ALSO the amount of salt on the fries was enough to invoke a stroke! :x Finally whoever dude was that handed me my bag of food was all like ZIPPY DOO I GAVE YOU A CUP OF FRENCH FRY SAUCE.. There were two orders of fries.. one cup of sauce.. which was just basic secret sauce.. not super great... secret sauce, to boot.. Thanks bro, but I don't need any secret sauce favors.",review,nbofxFWHORebBHh10OgYLA,1,1,1 +Hf_MFIPi7ZiIWDQodJMzwg,2012-10-25,9l7FzgtZobP81lMwEQy4AA,5,Great service,review,9VmTOyq01oIUk5zuxOj1GA,0,0,1 +gMY_3RkmK2eeD9SHlBKfCg,2012-05-25,qtOMqRS8K03QTisX-2ddYQ,5,"My favorite Starbucks in Mesa. It's not even the closest one to my home, but worth the experience. GREAT staff.",review,8-mw_aotUGmP0k0s6QKwOA,1,0,0 +T4VsuYbgEqp1n_FghmFg2w,2010-11-03,TUjdm0FLco2-nGS-UVryvg,3,"I love this place! Great flavors, love the tiny gummy bear toppings. + +One thing I don't like is the inconsistent hours. One day they'll be open at 8, the next time they close at 7:30. When our yogurt craving hits, we'd love to patronize Woody's, but never know if they're going to be open. + +I tried over and over to call one night, and the phone was just constantly busy. A little frustrating! + +I do enjoy their yogurt, but with the weird hours, and so-so feel from the staff it's hard to give them more than 3 stars.",review,F8C1lM853UmUed3jb7j-_g,0,0,0 +yv9gVqydta-y8NHQQ3XPRw,2012-08-26,D_pEME20C-srxu-D8Se14A,1,"First, I hope La Fonda management reads these reviews and takes steps to improve their restaurant. Second, we miss the bloody mary bar too. Hubby & I visited LF a few weeks ago on a Saturday night for dinner. We asked the waitress a general question about a beer and she made something up that was ridiculously wrong. Okay, she doesn't know beer. We liked the chips & salsa, it was a good start, then I took a sip of my water. What the? I know what Tempe tap water tastes like, but this was weird. The aftertaste made me cringe, I couldn't drink it, even with a slice of lemon in it, maybe it was the ice. Hubby ordered chicken enchiladas, which he orders practically everywhere, and it was so bad he didn't finish it. My meal was not memorable either. I wanted to love this place, or at least like it. We walked out of there terribly disappointed, I doubt we'll go back.",review,vKs0r5yZhfJYdBSd0J1a3Q,0,0,0 +Tmzzn7JyCoMgeb-IYRNlGQ,2007-06-29,MqSH98OjzTqj6J0FyN9YUA,3,"This is a nothing but pies place...so I was expecting a little bit more oomph... + +Dispointing small selection of pie by the slices...also you gotta put in special order ahead of time for the more interesting stuff like Italian Ricotta. + +I was going to order something with berries, but the stuff I saw in the case was just runny and wet looking...so I ended up with a black-bottom pie...I really liked the flaky crust and the filling wasn't bad except for the fact that it did taste a bit over refrigerated. + +A minor gripe is the airpot coffee...not freshly brewed...despite the espresso machine clearly visibile behind the counter. + +The pies are just over $4 per slice and ~$20 per pie.",review,8WQubmP7G0NM3IyzyMnCEA,1,3,0 +l3yL2rQ6PoFBQ06RLczn9w,2010-08-21,Cluf-ijd2Ubr0hoVjLXoSQ,1,"I'd say I've been to the Clubhouse a few times a year over the past five years or so. Does that make me the most knowledgeable person on the venue? By all means, no. But, there are some very common themes among the shows I've seen here, even though the artists were different genres, different, crowds, and even different times of year. + +The sound quality is terrible. The last three bands that I have seen there (and have seen in other venues as well) all complained that they couldn't get the sound right on their monitors or in the house. To me, that's a major turn off, if the band isn't happy with their sound, are they going to be very motivated to play? Maybe it's a slighted observation, but it seems that the only bands that return to this venue, are the ones that play music, where the sound quality isn't...let's say ""sacrificed or as important"" (metal, hardcore, thrasher, hip-hop, whatever you call it). + +The venue is also hot. I don't read the reviews of others, before I review a location, because I don't want my opinions to be skewed, but I noticed someone said, ""don't wear pants,"" honestly, that's a really good tip. The last show I saw here was in June. I know, it's Phoenix, in the summer, suck it up. But when you exit the venue and it is noticeably and significantly ""cooler"" than inside the venue, we've got issues, can they not afford to run the a/c? + +The answer to that question is, maybe not. The bar is understaffed, and patrons seem to be lined up 3+ deep, all around. Sometimes you've got to spend money to make money. Hire more bartenders, customers get served faster, thus allowing them more time to consume the beverage and purchase more. That means you can sell more, which means you will make more money! What a concept. + +Hate to just destroy a business, but hopefully they will heed the feedback constructively. Until then, remember: if you've always wanted to hear the artist you are going to see in a low-fi format, here's your chance, if you have always wanted to forgo wearing those pantaloons, I support you, and finally, you should craft a clever way to hide a flask, since you won't get served, although this might be difficult sans bottoms.",review,80PHOfM8KOBb7xEQN4C0lg,0,0,0 +TbaAnzOTX2-boTbAp3e8Qw,2008-07-14,nOksR3WGXn8iuZwTyUX9qw,3,"I liked the tortillas: handmade, rich and salty. I thought the food was decent. I thought service was okay. I am not new to Mexican food, I know what I want: when I say I want cheese and cilantro and tomatillo salsa, please give it to me. They charged me and extra dollar for had smattering of queso fresca. Boo. I liked the mango-pineapple aqua, super sweet and clean flavor. I would go back, maybe.",review,tePGwo_ZH1Hu9bkCNhMJmw,0,0,0 +E0fZHHInMb6xscHDrPlh4Q,2009-01-04,dY7pGUx7LbbRQYwt9xGawQ,2,"Back from holiday and had some amazing soups that made me reflect back on my experience here. I have to preface this review with that the owner here is quite lovely and I'm sure has the best intentions, but unfortunately the soup was sorely lacking. As a proponent of organics, I had my hopes way too high. Well, first of all it was a bit confusing if we were to order at the counter from a very smudged, unreadable chalk board or if we were to be seated. The owner appeared from the kitchen and said to have a seat eliminating our initial confusion. To keep this review to the point, we ordered a smoothie, bland. A frittata, very small and actually strange as if it might have been cooked in the microwave, need I say more. Two bowls of soup, one was a bean with kale, unfortunately the beans were not thoroughly cooked and the flavor was not allowed to develop. The other a red pepper concoction, that another diner suggested, was one dimensional and needed copious amounts of help sprinkled with some love. +When paying these boutique prices one expects and should get a better quality, culinary creation. These soups needed proper development and herbal infusions that the kitchen obviously lacks. I would like to offer a suggestion that may help her, so she can spend more time with the soup prep and less time running around the table up front, and that is to consider a different style of service. The place is so small that she could have customers order from the chalkboard, if readable, and then deliver the orders. I wish her the best in her endeavor.",review,OpUXG69nP4YjlEZDlkdVcQ,0,2,0 +QIHyWCBG3ftvXbGdHQKdHw,2012-12-29,Dv9iSQe9s_kn5uuhy0iM_w,1,"Not that any SBUX is worth going out of your way for, but this one is worth skipping. The service I've experienced each time I've been is pretty dang poor and the drinks always seem quite cold.",review,QiLOh5KHp81eiju-n-z1Ng,0,0,0 +-bd26a1QEEpqUZjBmtBUiQ,2010-04-08,Cu6EG_rAd25OjCGzRCPxMg,5,"The food was flavorful and plenty of it. Eating with only your fingers is quite fun - make your momma proud. My girlfriend won the best dish of the night - lentils and chicken and cabage/carrots. It all had kind of sweetish/bitterish/spicy flavor. I had the lamb and jalapeño dish, which was kind of greasy. You eat with your fingers and can scoop up the food with the bread they give you - a tartish type crepe, which goes well with the food. I'd be happy to go back and try something different. If you are used to frozen pizzas and Burger King, you might want to stick with that as this experience might bit be as enjoyable as those who are more open to what they consume.",review,DjMYfLoL9KsTIcvOMxwkhg,0,0,0 +ohxd8La86GdC_3vgwBWLHA,2011-01-05,Jf3NgqescF1ZtQpH4vR-Nw,4,"Thank you Yelp for my first opportunity to enjoy Gammage. + +Impressive architecture and design (it is also mostly functional)! +The seats are roomier than expected and the rows have just enough room between them to allow people to pass relatively easily in front of you without having to stand up to let them through.[Relative to US Airways Center seats which outside of Lexus Club and courtside seats are several inches narrower than the ones at Gammage and you have to stand up every time someone needs to pass.] +Having the room to pass easily is nice, especially if you are seated in the middle of the auditorium, since you have to pass in front of at least 30 people just to get to your seat if your, say, running late or need to escape to the restroom. +This is also a negative especially if you are the crowd-fearing or clostrophobic type, there are not good ""outs"" from the center. + +I think it is wonderful to have a location that hosts wonderful Broadway performances and a variety of other artistic entertainment/performances.",review,usQTOj7LQ9v0Fl98gRa3Iw,3,5,2 +3n9mSKySEv3G03YjcU-YOQ,2011-04-05,dMVOvh4ipz3VV_jRf-qZ9w,5,"I honestly have only positive things to say about Postino's since every one of my visits here has been very pleasant. From the valet who is running his ass off to the food and everything in between, this place does it all right! If you go here hungry, you should know that your options are basically a panini, a salad or some bruschetta. I've had a little bit of everything and for the value and quality you can't go wrong the the bruschetta. I recently determined my favorite to be the ricotta, dates and pistachio but a close second is the salami and pesto. + +Wine by the glass can be a bit steep so if you're planning to stay for a bit and can agree on a style with your company, you might be better off getting a bottle. A bottle is pretty much 3x the price of a glass so you end up getting 1 1/2 glasses extra. Bonus! + +Someday, I'll actually take advantage of their $20 deal for wine and bruschetta!",review,upssaszVG_egJVRKBU5Dzg,0,1,0 +ntN85eu27C04nwyPa8IHtw,2011-01-01,s2NkuLh0UBmCvHvLwJFBPQ,4,"I'm going to stop being such a taker, and give for once! I use Yelp along with other reputable websites to help make my dining, travel and shopping decisions and I never take the time to give back!! I know, I know....awful. I'm turning over a new leaf! Here is my first Yelp. Please don't judge. It's my first time.... Okay, here goes. So, I went to Matt's for the first time a few days ago.... + +Food- Amazing. Best pancakes ever! I'm not sure what the secret ingredient is but they are beyond good! Fluffy little cakes of love. I also tasted the butter burger. Very, very, yummy. If you decide to dine here make sure you try the bacon. I don't think I've ever tasted anything like it. Sweet, savory and cooked just right. + +The building is very small, the wait is extra long and make sure you don't overindulge on the free refills of ice tea because there is NO BATHROOM!! The seating is cramped and the service is rushed, but the food is worth dealing with Matt's shortcomings.",review,wdtoa9VgowEdiYudN8T1YQ,2,1,0 +m7uxAxL9L3kuB8XWkoveHQ,2010-04-05,LYc0qoZTS8L0U_NvIaYwYA,4,"over 20 visits - and no rvw? wow - i must be loosing it. + +When I walk through the beautiful shoping district of Kierland, it is always fun to window shop - ok gotta go in! - and touch, feel, ooo, ya - and dream about having my home decorated with all thier furnishings... as soon as i win the lottery.. or something... almost there. (maybe i should stop travelling......... nah...) + +anyWHO - you CAN find some GR8 little snags: from candles, to books, vases, martini glasses (always a must, since somehow - not sure why, mine keep getting smashed - maybe goes hand-in-hand with vodka + consumption + beautiful galsses = tipsy, topsy, turvy - crash) + +I always enjoy looking, (and usually grabbing something i ""need"" ya, right) and thinking about where or what I might get for a gift - naaaaaaah - for me! next...",review,h7v_M_0-YVpSVZ2WD7FpAA,0,0,0 +glpdHF7XlpUQUs1Jpxv4SQ,2010-03-15,bFC3YitoCJgUuXAVVDMkXQ,5,"we went back here again this past weekend...actually we went there 3 more times this past weekend alone! we couldn't resist the awesome service and great prices...and great live music. this is definately going to be one of our ""regular joints."" if you like the country...country girls....and good old rowdy shit..then stop by and check it out for yourself. i bet you will like this place. +there is a large dance floor for some shit kickin' ...about 3 pool tables..big buck hunter and an outdoor area for smokin and boozin and dart throwin'. i love this place. this is what toby keith should have been singing about...seriously!",review,scxmg3Pu_jjpXSyFWH8-Cg,0,0,0 +Lnohr9bpCbHNsomazXDg-w,2008-07-16,IhVNA9hUjtdk1zufzziNug,1,"How does this restaurant generate so many 4 and 5 star ratings? + +I know it was on the food channel, but honestly the food was sub-par. Maybe it was just an off day, but I have a feeling it wasn't. The prices were not outrageous, but it wasn't cheap either. The atmosphere was nice, if very cafeteria like. + +But the food was way way too ""greasy."" And bland. And my stomach now aches after eating there....",review,UE1UIi95jSk5tAzOdtnjIA,0,3,0 +r_0k2yqAo1Z4tg_IgXr7Jg,2007-08-28,X_nBRl_nxue-SCfo5c9exg,4,"If you're the type that are into choices, then Gelato 64 has got your number. Their number stands for the 64 flavors of gelato that you can choose from. When I was there they seem to be a couple of flavor short since several of the slot in the gelato case was empty...but anything approaching 60 is already a ridiculously wide range of selection. + +The gelato was well flavored and had a nice smooth texture. Extra star for range of flavor.",review,8WQubmP7G0NM3IyzyMnCEA,0,1,0 +2FqG3fBB2XffmRTnc6YI_w,2008-10-11,ujwc8ggO33vvhMJwAE0bHw,3,"My boyfriend and I were in Arizona on vacation for a wedding. The food was better than the average deli and they give you a free cookie with your order too. It is a shame they don't have these in malls near me. Although I read on their website that they have one at the Galleria which would have been nice when I lived in Davis, CA for college. + +Shopping really works up an appetite and this satisfied it well. and light enough not to ruin a dinner as we had a wedding to attend later that evening.",review,d0nD0TzD_NvzQLHE6zL-1g,1,1,0 +WYj43z0qmlKklhcvV75mwQ,2011-04-29,-qeKy3NyksHZlmIxmaBI1A,4,"I stopped in one afternoon and ordered some baba and a chicken salad. The baba was good, and served with a ton of pita quarters. The salad was good too, except that most of the chicken was burnt. +The cashier was pleasant and must be related to the guys doing the cooking. They were giving her a hard time about a male customer who I guessed must come in a lot and she was giving it right back to them! Kinda funny. I will definitely be back for takeout and lunch again while shopping. I will go for the gyro salad next time though.",review,wC1CPV5bf--bDLtlhNSPLg,0,0,1 +Hdi7jkB7pHiM1nyPHcqSdw,2011-05-26,0Bhq-3T6e0L7WqfdE1X2wA,4,"This is the best mall in Arizona. Lots of high end shops and nice restaurants. Except during the holidays, plenty of covered parking.",review,Kqvfep2mxS10S50FbVDi4Q,0,0,0 +B8ujMtvvpHyEQ2r_QlAT2w,2009-02-04,lkXM8gxdU1qQVCHggDfsyQ,4,"I didn't pay much attention to this place for several years. Passed it many times, just didn't catch my eye enough for me to remember it on those nights when I desperately try to think of some new place to try. + +I've since been here twice (over about a 3 month time span), and I really love it. First time, had great food (all server recommendations - although he disappeared prior to arrival of meal, seemed to be doing side work so he could bolt out). Great although somewhat minimal service for the second half of our dinner, former waiter did not say he was leaving, we sat for a little while before someone new arrived. Ambiance and company made it barely noticeable. Personally, I don't care as long as I get good service. We're not family, I don't need an apology or heartfelt goodbye. The garlic app - what it is called? - your server will know, it's probably their most popular dish, it is AMAZING. Order this unless you hate garlic or are on a diet. I consider myself a good cook, but I would leave this up to Richardsons. As I write this I realize the whole reason for my review is that dish, because I don't remember anything else I had. Stopped by for drinks the second time, ended up ordering a pizza, expected little since it didn't mesh with the menu, it was really quite good. Bartender was great (I think he was actually the take-over waiter from my previous visit). Very cozy place, if you come later or are are willing to wait, you can get a private table in a cave like nook. The place is not cheap, comparative to other finer dining establishments. Overall, a lively but romantic place with character, good food, and decent service.",review,zsBmBMbZhPuWKueEyKoI1Q,0,0,0 +7U8TYNW4Mvx6m3zexsO0sg,2010-12-28,SWHnJvsZVqBJzDSGS0YwLw,4,"Yum! +Steaks were great! Corn bread + +large portions +definitely worth the price!",review,6XDBxbqC3kD5xvQMCkwhNQ,0,0,0 +aHGcI-KGitnGRco_D_I9Ag,2012-06-23,zTr5W2aHhGuY7FC4bFflbQ,3,I much prefer drinking here to eating here. Sometimes it is the only place close and I decide to order food and I always regret it. I'm a vegetarian so maybe I'm too limited and the burgers are awesome So stick to traditional fare. The salads my daughter and I had yesterday were pathetic,review,44FZYP4fQbeAimA818oHtw,0,1,0 +kfscAJnLVf6J2uEte7g-5A,2011-11-13,oEz2MUkfQtaD1KvYuyWV3Q,5,"I found this little hot spot on Yelp and used my phone to navigate me there; I wouldn't have found it otherwise. This small establishment is hidden in a neighborhood right off of Historic Downtown Chandler. It's a quaint little diner with modest décor. I felt very comfortable there and the service was fast and friendly. As I looked over the menu the first thing I saw was the Morning Monte and havarti cheese as one of the ingredients. Cheddar isn't better; it's all about havarti folks! I needn't look further; I knew that's what I was having. Hawaiian bread French toast, bacon, turkey, egg and the havarti - absolutely delicious! Can't wait to come back and bring everyone I know.",review,wFweIWhv2fREZV_dYkz_1g,4,5,4 +GVg4GHHRblwY1MFlV1ubAw,2011-06-24,gQoXRk2oRLxQWDf1i7rnOQ,2,It seems like there is not as much value for your dollar at Gold Medal. We had been there since the new school opened but decided to move on. We got a 'can't we get you to stay' call which felt like desperation on their part. My daughter enjoyed her lessons but her favorite teacher left (as most do) and the cost was not worth it anymore. I would not recommend them to my friends.,review,RIAkOx7jS_IYdF0ZO0Hc_Q,0,3,1 +u9MKnG0PqI8N7ixSfrrTiw,2012-03-01,b7KiP9ZNOyfaLgS24dAcdQ,3,"If I could give this 2.5 stars, I would. But that's because I've been to Joe's Real BBQ, and so I know how good BBQ can be. + +Famous Dave's is fine. There are two of them I know of, and I've been to both. They're both fine. + +We visited this one, near Chandler mall, for lunch. We ordered off the lunch menu. My wife and I both had the brisket sandwich. I had the Wilbur beans, she had fries. It was fine. Not great, but OK. + +The brisket meat itself did not seem to be smoked. At all. Meat has a certain look and taste when it has been smoked, and this just didn't have it. Frankly, the meat seemed sorta pale...as if it had been boiled instead of grilled or smoked. And either the meat or the sauce was excessively salty. It wasn't severe (or I would have returned it), but it was noticeable. Salt should enhance flavor, not stand out as a major flavor. + +And a note about the sauce. I examined one of their 'for sale' bottles (you can buy their sauce to take home). Did they use molasses or brown sugar, as most self-respecting BBQ chefs would? No. High fructose corn syrup. Yuck. Besides that stuff being poison to your pancreas, it's just ""not right"". That's not how BBQ is done. + +Anyway, Famous Dave's is really nothing special. The BBQ is ""OK"", but not very authentic. Given the choice I would take Joe's, hands-down. But if you want some BBQ, and are nowhere near Joe's, this will do. Beats the heck out of Tom's BBQ, that's for sure (see my review of Tom's...truly awful). And the beans and fries are pretty good.",review,Mb0psF4WQF7gZSuZafVr-g,1,1,0 +yktWUtKBja_Lzk3wwR6RFA,2008-11-25,wereg_Qjqym6PCN8ZyDZZw,4,"I've been here twice now for the lunch buffet and the second time I even brought a friend who was a foodie and both times it was great. They have a great selection of dips on the buffet, a few salads and many warm entrees to choose from. + +I recommend taking a little bit of everything and if you follow my rule, you won't be disappointed. Everything is absolutely delicious and you'll have fun guessing the spices in the various dishes. + +If you're in the mood for some tasty middle eastern food, I would really recommend it. It's a little short on ambiance, but with flavors like that, who's looking anywhere but their plate?",review,qABKRj1ggJmtvrL9FMFtuA,1,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2012-02-25,WE3QQvXUohL0HVxrUjmsJw,5,"The mall of malls, for sure! So many designer boutiques, so little time! On this trip, I was given the utmost in attention from the fabulous women at the Fossil store....what fun they were! I enjoyed a smoked chicken & black bean salad @ Z Tejas next and the service was excellent. I then perused the new styles at Aqua before finding a great pair of shades at Solstice = shopper's bliss :) +This review is a bit late; I visited the center on 1/27/12 - and I'll be back :)",review,onCVo3jNuKsSk8HcpDE1sQ,0,0,0 +qNoNkF1yJctEs3t40VkX4w,2009-10-13,jWKbfXA2oxlgmZrW0VA02A,4,"Went there for Dinner on a Friday night and I have to say I'm impressed by the quality of the food and the reasonable prices. There's a great deal of variety and some creative New Mexican dishes. I'd go so far as to say this is the best New Mexican restaurant in the East Valley! Its not super spicy like Los Dos but there's a lot more flavor and you'll still feel the burn. + +Pro's: The Food and Service +Con's: Ambiance & decor could use a little jazzing up, location is not ideal",review,4-BhPJwJp6d-XMmo-w1FRw,1,1,1 +b9dv7Q0A8XcJ44zzTDJeYw,2010-04-07,RMBOYKJ8lCyL39wOycBvCg,3,"Qdoba is a kicked up version of Chipotle/Kokopellis. You walk up, choose a form of delivery (burrito, nachos, salad, burrito bowl, etc) you get a choice of meat (chicken, steak, etc) then you chose your toppings (different salsas, lettuce, cheese). We all know the drill. I will say one thing Qdoba is much better in taste than Kokopellis and Chipotle.",review,SGXahHRReksq3m_Zk9V20w,0,0,0 +eR_vyBCRhMQKhmHbxFkPVw,2008-12-11,yt_CpzmwoSv3NPGNcHzI-w,4,"So Wednesday evening I needed milk and cat food. On my way to the store I realized my stomach was growling. Never a good idea to shop on an empty stomach. A while back in The Savvy Shopper rag in the China Grill ad was a little banner about Wok n Stix being a new location. And because of an event that fell apart this week I had a bug to eat something Asian. So I found it and stopped in. + +Chinese fast food. They also have hamburgers and a few other things. I stuck with something I figured I would like, orange chicken ($7.95). It came reasonably quick, was too hot to eat right away. Most of my Chinese fast food consists of Panda Express and Ming Gee. This was much better, in addition to the onions and bell peppers listed mine had mushrooms, celery, sprouts and some other stuff. Service was on styrofoam with plastic utensils. Even though I was eating in the rice came in a take out box which I thought was sorta weird. I still hate eating out alone but at least I wasn't the only person in the place. Each side of the place had a long upholstered bench with tables and chairs that could be slid along to make up different seating and two tables in the middle. + +There was nobody being served at the front counter when I was finished so I stopped,picked up a menu and talked to the woman there and found out she is an owner. They have had the place for 6 months and are the same family that owns China Grill not far away.",review,Ps1Db9zOatoF_76FZNO5CQ,0,3,0 +13lNc7KSuVHBrUybTR23qw,2012-01-20,3eY_MfLha0Sbv4B2IXpqVw,4,Excellent selection of unusual but delicious pizzas. my favorite so far include prosciutto pizza and the lamb pizza,review,yov4PgFnEIOimzKdU2wV0g,0,1,0 +O-Xa9GCFWI65YiBD5Jw_hA,2009-10-29,nlQUxEm_5GouQdmgG8GXVA,5,"What an unbelievable night we had at Mastro's City Hall Steakhouse. Everything we ate was top notch, the atmosphere is fun, and the service is spectacular. How many steakhouses play Jim Croce, Beatles, and Beach Boys? It's a very welcome change. + +It's dark, it's sexy, and it's probably the best steakhouse in Arizona. + +The seafood tower featured totally fresh and delicious oysters, crab legs, claws, and huge shrimp. My Kansas City Strip was out of this world and probably the best piece of meat I've had all year. Gorgonzola mac & cheese and sauteed mushrooms were real winners as well. I'm not a dessert person, but the warm butter cake should be illegal it's so good. I was stuffed already when it came to the table, and then I ate all of it. + +The only hiccup all night was our seafood tower was short a shrimp, and when I told the waiter don't worry about it he said ok, and then proceeded to bring us a fourth shrimp on it's own bed of ice. It was a really top notch recovery. This place is absolutely amazing.",review,JgDkCER12uiv4lbpmkZ9VA,1,2,0 +ViLOy7fr21PIVGEzYPyK4w,2012-08-12,RPpt_W8DSEpahyXxeRhVrA,2,"I went here with a friend to use a Groupon for a gel manicure and a spa pedicure. I knew it was a school going into the appointment. My issues with the place are as follows: +1. The students there were very unprofessional. They talked about their personal lives, talked to each other, and just were generally inappropriate for a business setting. Their supervisor overheard everything and did not say anything. This is pretty disturbing since some of these girls stated that they were going to work at places like Dolce in a few weeks. +2. The gel manicure was billed as 'unchippable' by the people at this salon, but my friend had one whole nail peel off the day after the manicure and my nails chipped 2 days after. This is especially annoying because it is difficult to remove the polish that remained on my nails, so they just look bad. +3. The massage was pretty weak. +4. They don't have enough carts for pedicures, so I had to put my foot up on my 'pedicurist's' lap...that's a bit odd. +5. It was difficult to make an appointment here. I had to call several times and leave messages and wait for them to call me back. + + +Overall, I would not return to this place, even at the cheap price. I guess you get what you pay for.",review,3gIfcQq5KxAegwCPXc83cQ,0,1,0 +-EctXOb3B7T177jGYUhjVA,2012-03-05,WrYEb2x-JkLZLfLimP5csg,3,"The beer list here is GREAT. Seriously. If you like craft brews, go here. + +The food is meh. There are a lot of really interesting combinations, but the execution wasnt the best. The service is also meh. All 8 of us had to be wary when our waitress came around to tell her that so and so needed something too. She would take one or two orders at a time. + +Seriously though, the beer is awesome.",review,X5GbNXY_nNoa_vTZDD0aCA,0,2,0 +AhpzPZH3b0PGT9mVoLCQDg,2009-08-02,N9cAK1CCCYdgicvD7c8Ywg,3,"Kabuki was great....A lovely little middle-of-the-afternoon oasis found in Tempe Marketplace! I scoped out the menu had some some sushi for happy hour, including some rare beef sashimi, some unusual and unique rolls and complimentary edamame. Although I did not dine here for a full meal, I feel justified in expressing my enjoyment of their happy hour. The tiny bar was cozy and the service was good. The happy hour prices were enticing and I would definitely return for it:) Although for my personal taste the ambiance of Kabuki seemed a little too corporate for me I definitely would return for their happy hour and maybe to sample other menu items. I will keep you posted on my next visit:)",review,ZdDmxmGVhHHI4PzmVdTzxQ,1,1,1 +Aicnm12Zped8nQFXyRRFvw,2008-10-19,cpJejPGKMujmhyBbRSn1fQ,4,"Ok...this place is *REALLY* outdated...HOWEVER, the food was great. The Veggie plate was gone fast (barely got to taste any of it ... wife loved it) and my Gryo plate was very good as well. This is the ONLY other place that I've been to where the Felafel was great! I've been to only one other place...",review,_jjIaczpcVDpHlH6l334rQ,1,1,0 +ZdQbDVZWDsO-d7q2qW8E3A,2012-11-11,-Ieb92HyWYckqlJTAuf_GA,1,"My wife and I live around the corner, hadn't eaten here in a few months. We got food for take out, Mongolian beef,kung po chicken,pad Thai noodles. Mongolian beef, there were more white onions then scallions and it was very bland. Kung po chicken,lots of white meat chicken the whole dish only had one peanut and the taste of this dish was non existent. Very very Blah... Pad Thai noodles,the dish was dry and came out of the container in one giant clump. It tasted like plain noodles, i was glad I had peanut sauce in the fridge to,add to it. Then it was edible .... We will not be going back to G@S.. Very disappointed !!!! From now on it will be Jade palace on 92nd street. For take out Asian !!!! Do yourself a favor go elsewhere !!!!",review,P0Ki-xij91UU-_Hk4t6tGA,1,1,0 +9ziO3NpoNTKHvIKCBFB_fQ,2009-12-23,zZy22sccki71427oAtzKhw,3,"I know I enjoy food when I think about how good it was later..like days and days later. It has been about a week and I am still craving the Mac n' Cheese I inhaled during my Happy Hour visit. The Macaroni was cooked to perfection, the cheese was the perfect consistency and texture, and the addition of spicy sausage really set the dish apart. + +While the service was impossibly slow, every waiter I came in contact with was extremely nice. But nice or not, I was sucking on melted ice for half the night while I waited to get my drinks refilled. No bueno. + +The atmosphere was relaxing and casual, and the bathrooms were fabulous!! Well lit, great aroma, and my choice between cloth hand towels or paper. The bathroom had well placed mirrors which made the space feel big and clean. + +I will definitely come back, but next time I might sneak in my own drink.",review,s8fJCSltyub39Q1dqzjb6g,6,7,6 +xsSnuGCCJD4OgWnOZ0zB4A,2010-08-21,X4Vhbp78ZRwiRjZU14GaXg,2,"- the location is excellent +- the food is mediocre, and milder than they advertise +- the wait staff is polite and bland. At several opportunities, they were missing for more than 5 mins. +- the bill will be higher than anyone expects + +Bottom line: don't bother",review,1ADvDGbYb3DVakds4jCAnw,1,2,0 +732Z5HGLEEBjAgXxfnuXlQ,2011-05-28,39kwDyJI29y3poToHdCcHQ,5,"So your going to Scottsdale via Paradise Valley....or your coming from Scottsdale heading east....your stomach is growling but you don't want the usual...then look no further than Jason's Deli. I was in that situation on Friday night and decided to give this locale a try....and I must say I was not disappointed. I had the Smokey Jack Panini with Smoked turkey breast....guacamole....provolone cheese....lettuce...tomato....bacon on the side which I gave to my wife....LOL...since I don't eat red meat....and Russian dressing. However sandwich was made to order and pressed perfectly on the grill....and the flavor was outstanding. They give you a pickle and homemade potato chips on the side....and I also had some lemonade which comes from a fountain with free refills. + +I almost missed out on the free Ice Cream....but I seen people walking around with cones of Ice Cream and I had my wife ask was it free. Indeed it was and we both enjoyed a nice Ice Cream cone....mine was chocolate vanilla swirl...and you can also get it in a cup as well. The service was great and the whole place had a real nice neighborhood feel to it.....I look forward to returning here very soon. Eat, Drink, and be Merry my Friends!!!!",review,ky9pQ8AKufvZ63IxR41jGg,4,5,2 +iLtSto_Tgu2yaj_r_iohAg,2010-03-11,gC60r2BGT14QGZ8Zbe6ptw,4,"Large Goodwill location (formally a PetSmart), but dark like a cave. This one is hit or miss... It is clean for a Goodwill (I've seen some pretty dirty ones). Just need to keep checking to find the treasures here.",review,CP-IE-zyc2Mv3jlaceElVQ,0,2,0 +hsOnzcy8mFbUvIWFC1agoQ,2007-01-26,wFe8lRlC5lmBGpbbJvBdlw,4,"Sandbar gives us North Scottsdalers another chance at a casual bar on our side of town! Located near Scottsdale Road and Shea, Sandbar has a pretty convenient location and is usually a fun spot to go out dancing and drinking. The DJ is either hit or miss; sometimes he plays awesome music and everyone's on the dance floor and other times the dance floor is completely empty because the music ain't so great. +I've always wondered if anyone has become so intoxicated while at Sandbar that they have fallen into the little pond outside. Unfortunately, I have never seen this happen. +But I have woken up in the morning with a Sandbar server schedule in my pocket with no recollection as to why. +My friend was dancing so crazy one night on one of the platforms, that when she jumped off, she sprained her ankle. +See? Sandbar's a really good time. +Oh and if you get hungry, there's a little hot dog cart out front, so you can eat a wiener, drink and be merry.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,4 +yb17xHvhDJthJGS10uhFeQ,2010-09-16,kfJC_crlXCUQ-UgXNR04Ew,4,"My name is Amy and I'm a comedian. (""Hi, AMY!"") I perform here about once a month and it's one of my favorite spots to make people laugh. +This is a bar. Behind an ice rink. The wall behind the bar is the plexiglass of the ice rink. One time, while I was on stage, a puck hit the glass. Freaked me the you-know-what out. I thought I'd been shot. But I hadn't. Lucky for you. +I don't drink, so I have no idea about specials, what's on tap, blah blah blah. +I can tell you this: The service is amazing (and CUTE!) and the place is clean. I judge. I judge you on your bathroom. This bathroom is clean. +The comedy show is every Wednesday night. It's free. If you're lucky, you'll see me there. Making people laugh.",review,6kmu0mYbdpMIOZ6Y0eVsxg,6,8,7 +EGiGWZp_zSqdeftiFQ7MbA,2010-10-14,3BnCZAfr2Dwe5dkxE_cB-g,3,"I like the review of the whacked waiter... i think he may be still at work at 'Cantina Laredo' cuz i think he served us....... + +Called ahead after a Cardinals game to make sure there was room enough for our party of 10- +"" No problem "" we were told , come on down. + +arrived 9:00 ish on a beautiful 80F evening in Scottsdale -stepped across a half empty patio into the spacious Cantina - chilled to an ungodly 60F- + +Note to the great state of Arizona : + +(the reason that y'all are booming and experiencing sustained in-migration is because people are like lizards--- ( in more ways than one)---they like the sun , they like the heat ... they flee from northern climes to get away from the chill - Don't AC your premises such that it reminds us of Duluth in winter.... we just escaped Duluth in winter and fled south to thaw ) . + +we asked for a spot on the patio and our man immediately declined stating that "" he had already set a table for us inside""- + +upon my wife's insistence that he reevaluatethe patio he disappeared for a moment or two and then reappeared - affirming that the half empty patio was indeed full. + +this puzzled my wife who then surmised that : + +A) he wanted our large party in his section -not the patio + +B) there would likely be a built in minimum gratuity on the final bill + ( there was) + +after taking our drink order ,(competently), he returned with salsa and chips. The salsa he described as being of two types ""hot "" or ""regular""- +there were indeed two temperatures -but they appeared to be seperated thermally rather than chemically -?? the same salsa one served at room temperature , one served chilled...??? + +when asked about the best dishes for people who wanted a little kick to their food he replied: +"" I wouldn't really know , I don't like spicy food"" + +????????????????? + +Dude , can you not at least fake something.... it is after all a Mexican restaurant. If people want spice they go Mexican - if they want bland they seek out a Saskatchewan restaurant - non? + +The meal was salvaged - ( not saved), by a compatriot of our man who hailed from Durango- he spoke knowledgeably about the menu , filled our empty margarita glasses and retreated into the kitchen to assemble , on our behalf , a pepper mole sauce that was truely outstanding. + +The food was uninspired -( there was a Baja Grill of some sort across the parking lot and we wondered if they shared a kitchen...) , the service was poor ( excepting our hombre from Mejico ), and the casa freakishly cold-- + +Two stars tops over all but boosted up to three by our amigo from Victoria de Durango",review,Kq4cVcc_g8amBkHe5dJ01A,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2011-08-15,Lf3zby7BdwuW0XJ_D05H9w,3,"Whew! What a hike. Coming from Colorado, though, the relative comparison makes it just a 3. + +Firstly, it's definitely treacherous. When we arrived between 730 and 8 on a Saturday morning, there were about four, maybe five firetrucks in the parking area...these rescue/aid teams just camp out there, I think, because of all the doofuses who don't plan accordingly waterwise or overestimate their ability to make this climb. Also, two different areas of the Echo Canyon trail are especially steep and potentially slick, so they've installed some metal railings to help you along there...but only if you've got some gloves or if the temperature is moderate (uhhhh,...that doesn't really happen in Phoenix during the day in summer), because those damn things get hot enough to fry an egg. Also - water, water, water. Bring a LOT, or top off at the start of the trail before you go up (though the water out of that tap attached to the water fountain is about 85 degrees, yuk). + +It was a fun jaunt. The view was worth it - not entirely picturesque as far as nature goes, but it was nice view of the city and surrounding area. If you go, just be wary of the sun/heat, and know that you'll be clambering over and around boulders and such. (If you trip, it's CURTAINS!)",review,Lmgv46LyI1PlLs0KNIfYFQ,0,1,0 +hCtyvahPsEOUb38LKxEQNQ,2011-05-22,p4Aea4EFNIj6rTmuDRln4g,3,"My boyfriend and I tried this place out last Saturday. Our total was $24 for 2 burgers, 2 fries, 2 beverages. Not bad for a lunch in Scottsdale. We found the burgers to be just OK tasting. Nothin special to lure us back anytime soon. I was satisfied with portions for $. I think people are used to ridiculous huge meals like the ones served at cheesecake factory which are big enough to feed a family of horses so when they see a normal single portion they feel underwhelmed/cheated. I found the restaurant to be clean and nice enough to sit & enjoy the burger & kill some time before our movie started.",review,GPPHDWEZGjiw777_iTOJ1w,0,0,2 +9OPheVf5o8sRcRHxJDl4-A,2010-02-14,mK4zxOOrgdslesi0IcKyrg,5,"After a year in the Valley, one of my girlfriends took me to Side Bar. I really like the atmosphere. It was sleek yet cozy. The night we went in, it was hopping but not overly crowded. A welcome sight considering much of my first year in the Valley was spent in crowded, pretentious Scottsdale hotspots. + +As I get older, I crave more intimate setting and SideBar fits the bill. Also, I give five stars to any business who goes out of their way to help a good cause. SideBar is just that kind of establishment. If anyone is on Twitter, follow #buzzcation. @SideBarphx has let #buzzcation folks hold a number of networking and fundraising happy hours. It's a cool crew so come out and joing and I commend SideBar for always accomodating this crazy crew of tweeples. :)",review,eA7hkwrrknhxhqs-dOhDYg,0,2,1 +_oQN89kF_d97-cWW0iO8_g,2012-02-17,wa_exNUrfZRlzk8xiqYDxA,2,"I read all the good reviews of this restaurant , and wanted to try it, as it's right up the street from where I live. I don't think I hit a bad night, it was slow, the service was horrible, they confused our order with the table next to us. + He put plates of food down and walked off, the order had nothing to do with ours. +We tried to get his attention,gave up and took a bite. +OMG, it was AWFUL,fried fish that tasted so fishy that I couldn't eat it. +At that point, the table next to us realized it was their meal , and got up and walked out . + Finally I got the waiters attention, he took the plates ,gave us the correct meal, and didn't offer to do anything about all of our time he had wasted, let alone the mistake. Our real meal was O.K., I tried the tamales, wasn't blown away,my boyfriend said his steak was so-so. I don't think I would come back again.",review,KpC10_UEJuga43WadHCmYw,0,1,0 +XkNQVTkCEzBrq7OlRHI11Q,2010-05-04,Y2uoNO428_rn0swSO8UzAA,5,"I've been a bunch of times for takeout and took a seriously picky foodie friend this past weekend. Everything I've had here has been excellent and I mean, excellent. + +In the past I've had the margherita pizza, eggplant parm and fried calamari. All good. This weekend we had the comp tapenade, beef carpacchio, lasagna and one of the pizzas (can't remember name -- had olives, art hearts, ham and ?). All delicious. The lasagna was so delicate but melded perfectly with the sauce. + +My very particular picky friend LOVED the place. Seriously loved it.",review,-Dc9up-WyQ6XrYTjmL3GaQ,1,1,1 +ZhMlXLXuZf5z7lxunHk2ww,2011-07-18,2XkrLvu5xTfOJIdYFeE0Yg,5,"As good as it gets. We ate here for a birthday celebration and we were taken away by the great food and service (as usual). We requested the V Lounge and were given a nice corner booth. When we sat down there was a birthday card signed by the employees of the restaurant -- a very nice touch. For appetizers, we had oysters and the (best) crab cakes (anywhere). Steaks and seafood as our main courses paired well with the red cabernet wine. Overall, just incredible. Completely up to par with Eddie V's standards -- comparing to Houston and Austin. My mom forgot her sweater at the booth and a hostess ran out to give it to her. We also got a follow-up phone call the next day asking how everything went. For those special occasions or a fun happy hour, Eddie V's never lets you down! Also, their Banana's Foster is divine! Save room for it or just stuff your face and go to the gym the next day -- delish!",review,UrjEdSRi5vry3bQ1NKyLuQ,0,1,1 +0lEp4vISRmOXa8Xz2pWhbw,2011-12-08,rbI4SgEjR5_mFD0AAJpL4Q,4,"Zupas officially opens today! I was invited to their VIP catering event a few days ago and was able to get a sneak peek. + +The soups are very good; I tasted all of them! My favorites are the wild mushroom it is very creamy and has a great flavor. The shrimp and sausage gumbo is very hearty with just a little New Orleans kick! I recommend them both! If you enjoy tomato soup theirs is a tomato basil and it is yummy!. One thing I really liked is that you can taste the soup before you order it! Bonus they have 8 varieties of soup to choose from! + +I had the turkey pesto artichoke panini as well it was very good. You can get a 7.99 combo of any 2 items soup, salad, sandwich. By the way it's not 1/2 sizes with that combo either! I got a full panini and full soup. + +The soda bar is nice to you can create your own drinks! + +The ingredients are fresh and the employee's are very friendly. + +They also cater which is a big plus!",review,_7el1cOgnfkNfmZKi277bQ,2,4,0 +M6fjHpkL9IRI-nI0BattRw,2011-01-24,9J6zDTYyPjMqDC-KUQIE3Q,4,"I'm still feelin the love. A most wonderful combination found I today of simple delightful food, a laid back atmosphere, warm staff, dog-friendly accommodations, a vegan-friendly menu and... oh yeah... all day Monday Happy Hour. + +Thank you TMI for the immediate bowl of water set down for my hound, the speedy $4 glass of red, and a yummy manageably-sized veg sandwich. I couldn't have asked for a better ending to this much dreaded Monday. It was lovely winding down and enjoying the sunset while other suckers waited in traffic. + +I second Sarah G's enthusiasm for Sophie's salad sans mozzarella. Mmmm mmmm arthichoke. My next mission is the Cash Money sammie with house made cashew butter (wha?!) Cabernet jelly AND bananas. It's like Elvis met Sophia Lauren and decided to class it up. Soon will I be back to attempt such an adventure. Very soon.",review,FHDI8M5sm6lrZXNUBZAOfA,1,5,1 +miuWgBMwg_6RzI_BvUfjnQ,2008-07-30,YkFNxEyAyOmFBDFtyytjsw,4,"Brought my car in to get the electric stuff checked. $25 to do an electronic systems check, then determined it was a bad alternator. I brought my car in at the end of the day, about 5pm or so, and they had it ready by 11am the next day. + +The owner/manager, Terry, seemed like a straight up guy. Pricing is fair, as far as I could tell. + +They seem to stay pretty busy with normal cars as well as business fleet vehicles. I've seen school buses there, Topkick-sized trucks, and as well as your standard fare trucks with lawnmowers on the back.",review,ZOKN67ZtI1ClbRmcAR4yKQ,3,4,3 +GrGHVKec258eN1_gtJwS1w,2012-11-04,9dQ-nc14v538hjkQyr-E3w,1,"There really isn't much I like about Michael's to begin with - I especially dislike them for using my name and putting on such an inferior showing - but this location was a particular disaster. Clean up your aisles for goodness sake, I feel claustrophobic with all the crap hanging around - its like the clothing section at K-Mart, but possibly worse.",review,5lq4LkrviYgQ4LJNsBYHcA,0,0,0 +17DI33J8TkcfzyoiIYLQIw,2012-05-21,uPfs1kC6brJcAKnDwVxc0A,5,"Heart be still I loved this place. Way better than I expected. I had the spicy noodles and they were delicious, flavor great and quality was on point. For desert the sticky rice with mango, I dream about it now. Highly recommend if you are in the mood for Thai food. I'll be back!",review,kiL8inOENuxBRJjknd7aNw,0,2,0 +Fy75nbQSylmO3UGCSedaZg,2010-04-01,pusWCa-D9Kx8kTvcL4bH-g,5,"Still 5 stars, but sadly Amber is closing up shop. Don't feel bad for her as it is not for the lack of business. She is getting married and leaving the state and taking Spoken with her. Damn her!!! I did pick up some jeans and 3 shirts, all at 60% off. So hurry over and pick up some bargains! And wish Amber good luck!",review,1ylYrKcGNA8MDkhNBTjHMA,3,3,1 +EcHuaHD9IcoPEWNsU8vDTw,2009-02-22,GJJFzEx4_zOhVRN7cMOJ4w,5,"This is my favorite spa in the world! Hopefully, I'll make it to others...but if I could only get to the Camelback Inn, I'd be in heaven. Here's the rundown of how I enjoy the place: Early morning appointment for massage - Rose does fantastic hot stone - I like her the best. Then I shower and get into the eucalyptus steam room. Next I head out to the pool and savor the view of Camelback Mountain and the amazing desert landscaping they've procured. I drink some water and as I lounge there, I order a small, healthy and very tasty meal (usually breakfast). I swim a little, lounge a lot - regardless of the time of year. If I have planned it, I then head back into the showers and clean up for my next treatment. I spend hours there and if I feel like I might be pressed for time, I reschedule.",review,msgAEWFbD4df0EvyOR3TnQ,1,1,0 +3n9mSKySEv3G03YjcU-YOQ,2012-06-01,9V5XGfH54FWON5zkK6SpSg,3,"Bad service, great food, awful coffee.",review,1r7dSiDim_U0GFn8V4HvAQ,0,0,0 +jsJxRLGm8zjWm_HVR2FDnw,2011-07-24,RriK-Hb3PGwroO7Zfnd8pw,2,"I'm usually a big fan of dive bars but wasn't impressed, at all. One of the kegs was empty so my friends didn't get their ""favorite"" beer, not a huge deal but not a good thing for 5pm on a Friday. The servers seemed really overwhelmed and was probably due to the fact that there were only 4 for the entire place and it was really busy. + +On a very positive note, my friends said that the food was really good for bar food. + +This might be a great place for any day and time other than happy hour on a Friday.",review,8B5pqCDFglMvfW7qj5W8TQ,0,0,0 +eTbtfgUtfewdncgVf2CbWw,2010-05-06,u89APIU0kXS1-JPqBcPIgA,4,"This place is fantastic - very tasty and a nice surprise for the Tempe area. Tempe seems to be full of places meant for those in college (makes sense because it is, in fact, a college town) - but for those of us who work in the are this is a nice break from the regular places. I will be adding this to my list of lunch options. + +It is really nice when you are looking for a light salad or even quiche. I would recommend this.",review,oMDSmhe72hjxoR3EAj6sXQ,0,1,0 +lVHtVCyFJOqAH0ltn7pLuw,2009-02-04,W3R-lEDWBooITQOgwwblKw,3,"I had been craving sushi steadily for about two weeks, so I decided to try somewhere new. This place happens to be just across the street from my work and the reviews on here were a vote of confidence. + +I had the cherry blossom roll and rainbow roll, shared edamame, and hot green tea. The cherry blossom roll was good, not amazing, but good. The fish was fresh enough, and I did like the eel sauce drizzled on it. The rainbow roll was much less rainbow than I'm used to. The rainbow roll did have a bit of a fishy taste, and the whitefish on it was a pale yellowish brown color, and not as moist as it could have been. The crumbled macadamia nuts were and interesting and kind of fun garnish. The edamame was tasty, not over cooked, but could have used a little more salt. The green tea was boiling hot, with the kind of walnutty aftertaste you get from good green tea, I was disappointed it came in a single glass, not in a tea pot diffuser with a teacup like at most restaurants. + +My girlfriend had pork katsu, the sauce drizzled on it was sweet and vinegary, but not too overwhelming. Gauging from the fact that she ate all of it I would assume it was pretty good. The salad that came with it was a bit strange, iceberg lettuce and a cream sesame dressing. The miso soup on the side was better than the little packets I get at the store, but didn't taste home made. It was not too salty, but the tofu must have been dehydrated, it was in tiny little shriveled squares on the bottom of the bowl. + +The waitstaff was very attentive and friendly. It wasn't too busy when we went, about 5pm. The music was typical pop music, but thankfully unlike some places (RA for instance) its not blaring. + +I would say its definately not the best sushi I've ever had, not even the best I've had in arizona, but it was ok. The rainbow rolls at kobe are better.",review,K46kUag6aS0Vd4JjiaqNsQ,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2010-10-31,E-EAo8WSdyBTUDMVaMn3uA,3,"Meh. + +Plus for cool decor. Minus for being in a strip mall (but hey it's Phoenix...) + +Cinnamon Roll was good. Awesome icing. Toluca Brizza was unique, but nothing spectacular. + +it would be a good place for groups, with a vast menu (that i hear is very vegan friendly), but they are better places around town for brunch, both in terms of quality and price points.",review,kvL7bId7FbaMi19TFl3h9w,0,1,0 +1NZLxU5WvB5roPFzneAlLw,2011-01-25,zEmsQ-WVAxXKG4QjH1gfxw,5,"3 syllables for this place. +A-MAZ-ING! + +The best Phoenix has to offer.",review,Z6_d6w5G5QkosYMRhct_Vw,0,1,0 +YQz2fnfnL5eAWn1zOmKYnQ,2012-12-24,3w2FnG0ljCy7HXPqsFqoSg,2,"They have good baked baguettes and the price was $1.50 last month, however raising the price to $2 per roll during the holiday's is ridiculous. The female cashier was short and unprofessional. While i was waiting for the rolls, she was rude to the next three customers spending money. They need to work on their customer service and I vowed never to go back.",review,TvDqY4iUY8kNGqyvKpQfVw,1,1,0 +OFBJtqWGSx6n6CchtVmoRw,2009-08-29,anRbWt5BCVmxuiQCimIIjw,4,"I came here after having wanted to try this place for some time. I love hamburgers, and a good burger is a real treat for me. Nothing complicated really, just a good well made burger. + +When my date and I arrived, we liked the interior. The place was smaller then I had anticipated. Very narrow seating. Anyways, service and menu selections were excellent. I went with the traditional burger, and my date went with the Panini. I went with the French fries, and date went with sweet potato. I loved both. The excitement of my night was the fries in the shopping cart!! + +Anyways, I was happy with my experience here. I would return, and liked my food. So did date. Aside from tight seating, lovely place!",review,JffajLV-Dnn-eGYgdXDxFg,6,7,5 +TMdHhDI7jYQ9206dtvrBgA,2012-10-01,cqXOZprfCylgAP-IRVOLHg,5,I've been coming here since the 70's when it was across the street and had a screen door. I know the staff and the daily specials by heart. When I lived away from PHX it was the place I wished for. When I go to NYC I have to take RM food to my friends. The whole family agrees. I don't understand the negative reviews. The reviewers must have had a bad day. I love the food and so has everyone I know.,review,El1Q48x6ZfofQmaBZTrduQ,0,1,0 +YCCDMLcb7UW8G-o_HsWiiA,2010-06-24,ROKM11JR_yGq3mnSy_chZA,3,"It's not hard to find a steakhouse in Scottsdale. Modern Steak's schtick is that it is... well, ""modern"" in the sense that it's not in a dark oak-filled room with overstuffed booths. Unfortunately, however, ""modern"" also means that it's in a mall. Ugh. + +Pretty efficient (if not brusque) service, with decent enough food. I had the salmon w/ maple and bacon glaze. It's a bit of a bizarre combo -- I'm not sure the salmon quite holds up under such a sweet glaze, but you can't complain too much anytime bacon is involved :)",review,iBW6n_0yzFDn4C6_0sf62w,0,3,0 +NNGJQF3WeIHzGzweCpZ-VA,2010-08-16,ShPQNfKz9k9lZQRrotOKGA,5,"The food and service were both amazing. I've had the gyro pita, orzo and greek potatoes. All were fantastic. Try the gelato also. It's the best in town! The owners are very friendly and happy to speak with each customer.",review,7yqlOyMgwkBgq0O88a20FA,0,0,0 +FhjdZ2DtjVgCfK47bYO6sw,2012-05-13,GgVqF1e-R6tmIqlvmRccuQ,5,"Rita's Kitchen is a hidden gem located right smack in the center of the Camelback Inn. While this may be a hot-spot for hotel guests, I think that locals might be missing out on its charm. + +I am a huge fan of anything the Camelback Inn does, especially since they offer live music and a great space for relaxation and Rita's Kitchen is no exception. This restaurant is airy and opens up to the spacious Camelback Inn patio where they play live music every night. + +Breakfast: + +Breakfast at Rita's is sublime and pretty reasonably priced. They offer a breakfast buffet for around $23 which includes eggs made to order (including omelets), pancakes, waffles, pastries, fresh fruit, bacon, sausage and hashbrowns. It's a great pick for a leisurely weekend breakfast. Just today was Mother's Day and while we only did the breakfast buffet, I did catch a glimpse of the Mother's Day brunch and holy moly do they know how to wow a crowd! Not only did they have stations set up all throughout the restaurant, patio and R-Bar, but they also had an extensive dessert area with build-your-own sundaes, freshly made cotton candy (in an old fashioned cotton candy maker) and a long dessert table with a chocolate fountain. + +Lunch: + +Lunch here is sublime and I also enjoy either the tacos or the chicken sandwich. The chicken sandwich is particularly a favorite of mine due to the cheese and sauce. The fries are tasty as well and you can either get sweet potato or regular. I also get sweet potato then regret not just getting the regular which are better in my mind. If the weather permits, sit on the patio and enjoy the beautiful water fountains, views of the mountain and tropical/desert setting.",review,4ozupHULqGyO42s3zNUzOQ,3,7,2 +8cL7aJVKTYmLguzXEAS3Lw,2011-09-09,-GIRAMumwpwkJ790HOd9KQ,5,"We happened upon this location when meeting a friend for dinner. When I showed up there was a line of about 20 people ahead of me. i asked them to put me in first available and they said 15-20min and then 45min for a booth. + +Ok, I'll wait. + +Our friends showed up and my girlfriend had asked if there was a spot at the bar we could sit in the mean time. We were there for about 10min already. That's when she said to us. ""Your table inside is ready"" she walked us right there and we were sat. WOW! that was quick! + +We ordered drinks and food. I got these jerk chicken wings for an appetizer and holy cow, they were delicious. For my main dish I ordered a garlic noodle dish. It definitely hit the spot. My only beef would be that it was hard to talk with so many people inside. I wont let that affect the rating though. + +Awesome place!",review,_4lqpCYCqOQzbB6xQGGhrQ,0,0,0 +g-eZgnBDvSDguF8cUxKCkA,2012-05-21,OxlQFXVZbYxBEJSh8czh0A,5,We stayed at the Hyatt Gainey Ranch during spring break and had a fabulous time. We ate at SWB for lunch and enjoyed it so much we ordered dinner that evening to eat in the room with our kids. My husband ordered me the chocolate caramel tart which turned out to be one of the best desserts I've ever had. I tried looking for the recipe and couldn't find it so I figured it wouldn't hurt to ask for it. Surprisingly I received an almost immediate response from the hotel that they would let the chef know. Within a few hours the recipe from the chef was in my e-mail with additional tips! Now I call that customer service. We loved the hotel and loved the restaurant. Looking forward to going back someday.,review,oeN1mnXSqa_Mt0L_-bp8vg,0,0,0 +VEojEXbJ81eiPLSSF9jNEQ,2008-08-13,8ZC2ymJRf81mGgRKpBWOmQ,4,"It has been several months but I hadn't lost the formula (80/10/10 - veggies, meat, noodles). Pat down some chicken-turkey (no taste difference as far as I can tell) with the wax paper. Load up with mostly veggies (more green than red or white), add some wheat noodles to fill the bowl to the brim. Follow with the sweet and sour mix but add some extra vinegar and orange sauce. Add some pineapple and all set to have it grilled. Fill a small bowl with peanuts and another small bowl with pineapple. Fill the large red plastic drinking vessel with ice and low cal lemonade. Then chow down... + +My formula has more or less stayed the same since being introduced to YC's by Mike T and/or Erik T. Both took different approaches and none tasted like the other despite selecting choices from the same line. Amazing how three related people ended up with very different meals especially Erik T with cod fish and Mike T with who knows what kind of sauces except they were very dark.",review,J72XoQspNBmPsX2iKl2YvA,2,2,1 +Y_TtMiH_nx33FH4C48XhsA,2011-04-16,gwGGLhbcx27rzz3D9jVudA,5,"Called these guys when an evap cooler water pressure line at my office burst. A guy with a clean white shirt tucked in to his pants introduced himself to me, assessed my problem, and quoted a very fair price to fix it. This guy was way too clean, personable and professional to be the plumber? He went right to work and had everything back to normal for me in no time! You have to understand... I am use to a dirty, loud, intrusive plumber that smiles with his butt! These guys won me over and their telephone number 623-977-4458 is in my cell phone now. I highly recommend Palmer's Plumbing!!!",review,LL2Kk0jjD9McDPfPEDbZBQ,1,1,1 +9BH18avE46LlHMvJn67MaA,2011-06-30,Ob4PFYGeHC0Frj34-l0uDw,4,"I had a nice lunch here on a hot summer day. $12 for a good pastrami sandwich with crispy seasoned fries and an iced tea. Definitely recommend the food. + +Line was very short on a Friday afternoon. Soda machine ran out of ice, but they filled my cup with ice from ice maker in back and quickly filled machine with more ice.",review,wy9AIj-FTQaH7OAGg3xBfg,0,1,0 +BO_TJFFJyXu8i2rW83hG3g,2011-11-13,z8WydPXflaC4Yvk6WUSxpg,4,"More like 3.5 stars, but I'm rounding up because the overall property was so nice. + +Good Food, Good Service, Good View (overlooking the golf course). + +I had the Chicken Caprese sandwich which was quite tasty, but the burger my mom has was WAY better. If you go here.... order a burger. They are big, juicy and super duper good. It's also super duper messy. It's a ""fork and knife"" type of burger. + +Their bloody mary is pretty good... a little too tomato-y.... needed more seasoning. + +Mom's John Daly Peach drink was refreshing. Good for cooling off and relaxing after a round of golf. :) + +Tater Tots were served with our sandwiches and they were good... but nothing all that special. They were crunchy on the outside and soft and hot on the inside... but for this type of establishment.... I would have expectetd Truffle Tots or something different. + +Their relishes that they offered on the side were 'ok'..... I was not impressed. They tasted like they were from a bottle.... I'm sure they make their own relish... I'm just saying they didn't taste any different than the ones you get at the store.",review,IYJg3a-NTaymcYPOfRrcsg,0,0,0 +CWoXwnoxdFihXB1KhH9goA,2012-07-21,UjfIUMfKaB04M_R2hYAmPw,5,"I got a coupon at a past Yelp event to try them out and I'm SO glad I did! Massage Envy really exceeded my wildest expectations for a chain that offers affordable rates for massage therapy. I was pleasantly surprised by the level of expertise and professionalism that I experienced! + +My massage therapist was Dannie and she worked through my trigger points and loosened my tight muscles with an intuition that I have rarely experienced. + +I highly recommend this place and hope to return soon!",review,wIi2J1UGRB2G_3vu5eNK3g,0,1,0 +pxClzo2Ek5wGRJmYZcSkuQ,2012-07-09,GXXnhfTtNefRIktHo_ZGLA,5,Ask for Alex - he is very helpful and knowledgeable with products in the store. He is a young college student and works part time but always has a great attitude and finds the best deals for our family. Thanks Alex!,review,HBRvlxpo1PUQS9uU8csDTQ,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2011-03-24,sQN2Mo5KRTi3_vd3GaVcbQ,4,"Go from brunch and get the breakfast nachos. OMG. They were to die for. red chile sauce, two cheeses, baked chips, chorizo eggs. Got sour cream on the side and left of the pico. Came with sausage gravy that was not the artery cloggin' kind. These were so yummy. + +It was a little dark inside (full out front) and they don't have sweet & low. Nice ambience. Totally cool for the kids, too, but no paper kids menu.",review,Rg4gzsz3w00vRlIOXcGUIA,1,1,1 +TuuENwzxOFdDLY_oKCbFZw,2011-01-05,wKZh0hKZbRNBiE-59mbk-g,2,"Sorry, I am gonna get killed here... I am not that impressed. +I kept hearing about this place and it was so so at best. The food is sloppy and very expensive but has a decent taste +The place was also a little dirty looking.. +Just a bunch of sandwiches and the pizza was a disaster, go there if you are into quirky places that charge a lot and are not the best. +The waitress seemed pre-occupied by what?? not us.",review,I0pyeAcqXQl7Rv-DQmgHow,2,1,1 +P1DyzJfy3RCOdT9s9zgNiA,2008-11-13,rLClasWrTkKWf6KULsMeew,2,"I love Chez Nous for the dancing, the live music is always great, but this past Friday I was really disappointed. The cover charge has been raised to $7, the drinks were weak, and I got charged $9 for a Three Olives and Coke. Combine that with being cash only so getting hit for $3 at the ATM inside the bar, and after one poor drink I was already at $20. Maybe it's because I've gone back to being a broke college student, but I found the whole experience disappointing. It seems like a few articles in the AZ Republic recently and the prices are flying through the roof. So for now, I think I'm going to take a break from our relationship... sorry Chez Nous",review,OqisxqKDGaZwEvLm1OG4dg,4,5,3 +6imLt53br7SJ3av07jjH7w,2012-11-06,SPDbkT9WXghJedf1xxYnOg,5,"It's the place to be. + +I went before heading over to Symphony Hall and seeing Ballet AZ perform Giselle. Having heard great reviews about the place, it's food and the vibe... I had to try it. + +Restored into a restaurant and bar from an old department store, Hanny's has the feel straight of of New York City. The lighting is dim enough to give that sexy, intimate feelings and with long, pew style seating with individual tables, the vibe is very posh. + +My roommate and I ordered the bruscetta plate and the margarita pizza. Very good choice! The bruscetta plate was on the saltier side, so be wary of that but it was delish. The pizza was much bigger than we expected. For $10 you really do get a good deal. + +We each orded drinks. A orded the peach martini and a glass of giseling. Wasn't a HUGE fan of the martini and I thought it tasted like cough syrup but it was also my very first martini so I am not holding Hannys against anything. My roommate on the other hand said it was the best Manhattan he'd ever had, which I believe. + +Hannys has a modern feel with a touch of Mad Men and I simply cannot wait to go back.",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,0,0 +vxPPpj5jJKO8DtapF5S-NQ,2009-06-05,MMt47JTaLAmrbf4d_ATCPA,4,"Wow, not what we were expecting at all. But that's a good thing. The restaurant would qualify as a ""Dive"" in most circles, a tiny 20 seat affair with recycled refer units as cabinets located in the corner of a strip mall with a 99 cent store and a BigLots. Not exactly a high-end neighborhood. + +But after having heard of this little cafe in The New Times and finding that Phoenix Magazine rated their Ceviche and Shrimp salad as one of the Valley's top 50 dishes, we decided that we must give it a try! The article in New Times raved about something called a Pupusa and description sounded familiar, once we were there I realized why. + +Every culture on earth seems to have developed some form of stuffed hand pie. You know the formula, a regional bread or pastry dough, formed into a pocket and stuffed with savory or sweet fillings. Food on the go. Well in El Salvador it's called a Pupusa, and they were delicious! + +A kind of thick corn tortilla type bread, filled with several different types of fillings, pork and cheese, beans, chicken and cheese, beef and cheese or beef, bean and cheese. + +Now this is NOT your typical Arizona/Mexican food. The cheese is a freshly made cheese that is a Salvadoran tradition and is one of the best fresh cheeses I have ever had, smooth and soft yet very flavourful. The tortilla is not what you might be used to either, they are corn tortillas but they are not the course chip like corn tortillas so prevalent in Americanized Hispanic foods. They are thick, soft and delicious. It is this tortilla that is the basis of their Pupusas. + +Don't expect to find the standard ""Mexican Restaurant"" re-fried beans here either. Spicy, flavourful and smooth, having been mashed right after cooking, they are among the best example of simple yet wonderful tastes you will experience here. + +We had some of all of the different Pupusas offered on the menu which are priced very reasonable indeed, and were impressed with all of them, though the pork and cheese and the bean were my personal favorites. + +We also had a corn tamale that was sweet and moist and tasty, rolled in a banana leaf instead of the corn husk we are used to. Perhaps that is why it was so much more moist than your average corn tamale. + +To finish off our repast we enjoyed the fried plantains, actually an appetizer on the menu, they were crispy on the outside and starchy and tasty inside. Served with freshly made salsa and the Salvadoran version of Crème Fraîche that was also a hit. + +The owner was our server and I am still not sure she spoke much English, but she was very nice to us and the orders were always right. As well as very very hot! I had to let my Pupusas sit a few minutes before they were cool enough to consume, and a word of warning, Plantains retain heat even better than potatoes do so proceed carefully. + +As I've said the Ceviche and Shrimp salad is an award winner and the Carne Asada that the folks at the next table had ordered looked delicious. However I could not ask their opinion as they did not seem to speak English either and my Spanish is worse than terrible. But they seemed to be enjoying it, I'll give it a try next time. + +They serve breakfast too and I can hardly wait to give that a try as well. + +Stop in, you'll be glad you did.",review,WmldRvl1nKxuKM6weiO6fQ,2,3,1 +KwGQqUCpHHhOhVqyOL2QTA,2007-08-08,bnHBeO3MIyG_yduDiN-XpA,3,"While Scottsdale's Jackrabbit Supper Club is Britney Spears-approved -- the pop singer made the rounds last December when she reportedly made out with Arizona Cardinals hottie Matt Leinart -- it's a little too clubby for my taste. The music is usually loud, making it hard to carry on a conversation and nearly everyone looks like they stepped out of the pages of a fashion magazine. Oh, and be prepared to throw down more than the norm for drinks -- martinis are $13! If all of this isn't scaring you away, you'll probably have a good time. And the best part? The bar offers hourly burlesque-style performances from the club's saucy dancers.",review,nWouNfZD3Pw08RYizxkqcA,0,2,1 +hWhVP-28LYP3llaMlAJ_JA,2010-09-13,DYhwTfyy6PIHgc13K_ZjJA,5,"Definitely one of my favorite places to eat, hands down. I love their enchiladas verdes combo. Their refried beans are THE BEST! I have been eating here for over 15 years and the waitresses are mostly the same. Definitely feels like you are at an old friends house when you are there. Yes, it is in a bad area, but that hasn't ever deterred me from telling everyone I know that if they want really good, real Mexican food at a great price, to head down there. And their green salsa for dipping chips is amazing.",review,dGfOZWZbYaoTlFiW8EnAFw,0,0,0 +mKNK-LCFJMtYuNc8kzsaAw,2012-03-09,dP8S_sPtD4BA90Kil5wJJA,5,"This is a great QT for when you're driving through Phoenix on I-17. It's right off the freeway so it's perfect for stopping for gas and grabbing a tasty snack. + +Plus it's a QuikTrip, there isn't really any part of it that isn't awesome.",review,fR6Vch-D0L6OBnLMl8f9Sg,0,0,0 +IRxBQfA7FdHhzrPjtBxuuw,2012-06-22,le7sctcLjBi_4y6wGN7m-Q,4,"Inexpensive, tasty, fast. The gentle peanut dressing on the pre-meal salad gets you started on a simple, no-frills meal with exactly one option from all of the classic dishes you expect at a Thai restaurant in America: massaman, red, green, yellow, or panang curry; pad thai or chowmein; meat or vegetable rice plates. There's nothing extravagant in spices or food choices, but you can order the spiciness level to you liking.",review,3UHFF9kWZgIFHaaoBk5xCg,2,1,0 +qjmCVYkwP-HDa35jwYucbQ,2011-03-15,_CV94H0BgcZ_VjrGllmXpg,4,"I had been dying to try True Food Kitchen for a while now, after seeing reviews on it on various people's ""Vegetarian"" lists. I was even more psyched to see that it not only is close to where I live, but also took the place of that awful Coffee Plantation spot in the Biltmore! Yay! + +I went with my somewhat reluctant meat-eating boyfriend, but he was quickly won over with their expansive alcohol menu and their plethora of meat dishes- all either local or organic. A place we can both agree on! + +I ordered the honey lemonade ($3) which was the perfect balance between tart and sweet-- honey is a great sweetener! I was brought a refill just when my glass became less than half full-- bonus! + +We also ordered the hummus appetizer (~$8), which we both enjoyed immensely. My boyfriend liked the tart olives and feta cheese, whereas I loved the cucumbers! There was more hummus left over as our pita bread slices dwindled, but that just means we loaded up our pieces! + +For my main course, I had the TLT (Tempeh, Lettuce, and Tomato) ($9), which I really enjoyed. The tempeh was pretty crunchy, but it was balanced by the smooth avocado slices. The boyfriend ordered the Organic Ravioli with Ricotta cheese and kale pesto (~$13), which was super good! It came with 6 pieces of ravioli, which he thought was not enough at first, but after he cleaned his plate he said he was ""stuffed."" Good sign!! The plate also comes with a ton of meaty mushrooms, which made it even better in my opinion. + +We definitely did not have room for dessert, but I've heard mixed reviews of the desserts so I'm not sure if that's something we'll end up trying. Our server was extremely attentive to us, did not pressure us into ordering anything extra, and was prompt in refilling water glasses, answering questions, and bringing the check. + +The atmosphere is interesting- a mix of well-dressed business and retired people (think: khaki pants, button up shirts, sweater vests (in the winter); nurses just off work; people coming in for happy hour (jeans and nice shirts); and people just in off the street (shorts, casual shirts, even hats). I really liked this ambiance, because it doesn't make it too stuffy and turn people ""off"" of this locally grown, organic restaurant concept. + +We would definitely be back in a heartbeat, but the only reason I marked it down was because we were sitting underneath their funky lights, and a spider fell out of the light on to my boyfriend's arm. He wasn't terribly bothered by it (other than 'wtf, why is there a spider on my arm?') but I would have freaked out. So... don't sit under the lights, if you can help it!",review,YgucNL2tibnjEmDLqHPqow,0,1,0 +0ONypOKIhttBz9IJzBE8jg,2010-09-24,r36zYGVScZB1r49kqvllFw,5,"flemings is always top notch. we went for the thursday night wine tasting 20 wines for $25 introducing there new 100 wines by the glass. The selection was good from lite whites to deep reds a great way to sample a portion of there new wine list. then to top it off we received $25 gift cards for dinner. so we stayed and had the AZ resturant week pre fix dinner for $39 the food was wonderful. salads, soup lamb chops and filet. i guess to sum it up you can't go wrong with a meal from flemings. they also have a great happy hour.",review,mAWDlmTrBCbxZftZfdJf3w,1,1,0 +P1R-DyUyBeWCvPKrRkglsQ,2008-11-22,zkpzZv9L9kpCUVvyyGPw-Q,1,"oK, first i broke my promise to myself and went here again, i figured by now things have got to be better. i ordered something that i wouldn't care if it was cold, French Toast. ok so the french toast is good. but it wasn't worth waiting 40 fucking minutes to get it. and on top of it. my friends food was cold again. one of them would rather eat glass then eat at this place so refused to order a cold meal, but since my other friend was paying she said fuck it i'll go. + +well she ordered toast and some sausage as sides. and my other friend ordered the mish mash, his review of the place is more generious then mine, but he's only been there once and said it wasn't so bad. lol. + +so anyways toast, soo cold the butter couldn't even melt. and cold sausage to boot. the friend with the mishmash, lol. i saw the bottom of the bowl and it was all a weird watery substance at the bottom. how hard is it to drain poached eggs before dumping them in a bowl? + +i was going to give palatte 3 stars based on the french toast, but it was hardly warm. i so badly want to like this place cause it's close and Matt's is always packed. + +can i please get a breakfast place in the roosevelt area that is large enough to seat more then 20 people and serves good breakfast?",review,E5QyEU6FCQwnTys0S73zNw,1,5,1 +iELA6eREUgDVQrtLgYmS6Q,2011-04-13,UomIbZJSHfjXAGpFxiDxFA,4,"Oh Yogurtland.....why can't I resist your calling? + +I had to run an errand and saw this location next to a Fedex Office...perfect! I dropped in and ordered: + +Double Cookies & Cream, Strawberry, and Cheesecake...topped with Peanuts, Captain Crunch, and Reese's Peanut Butter Cup for around $4.90. +http://www.yelp.com/biz_photos/Co4cQNWyAYv7Hw8jKcEKJg?select=VcouxvxQ0Sl310XRxn9HOg +http://www.yelp.com/biz_photos/Co4cQNWyAYv7Hw8jKcEKJg?select=8xzd9ms7YvNaEAvn1irgsQ + +It was of course awesome! The line was very short too....even though the weather was in the mid-90's....boy did I luck out! + +Return Factor - 100%",review,kGgAARL2UmvCcTRfiscjug,2,4,2 +AkOruz5CrCxUmXe1p_WoRg,2009-01-11,f6imoOr8UeKXXyJtSt-AWw,2,"Craving a noodle soup--thought I'd check this place after seeing the reviews. Upon entering I didn't like the air quality, smelled like dirty deep frying oil. Upon perusing the menu and looking around at other diners food, I realized it was mostly composed of tempura, duh, deep fried. Yikes, I am not a fan of deep frying but that explained the smell. I opted for the shrimp udon soup. It wasn't anything near the wonderful soup I had experienced elsewhere, especially this great Japanese restaurant in Chiang Mai that had this amazing moat around the sushi chefs were they would float the sushi on little boats that you could pick and choose. Very disappointing, broth, noodles, spinach, green onion and 2 shrimp, $8. I did get an added bonus of deep fat smell covering my clothing.",review,OpUXG69nP4YjlEZDlkdVcQ,0,0,0 +oLYOGtdW5RxvaBiSdv3WCw,2011-11-03,DvMquoPKQFWFkkmzbfFQOA,4,"This is my favorite breakfast/brunch spot. Fresh bagels and different types of cream cheese. + +They even have Bagel Thins for those who are cutting their carbs. + +You don't pay the person who took you order, but move down the line to pay for your food. + +Their iced coffee are a great deal!! It's a 20oz cup for less than $3!",review,chI2p-ROg2tXI2-tT2_G2A,0,0,0 +pF7uRzygyZsltbmVpjIyvw,2010-12-27,KepstMD3yRwWrrTa45nYyw,5,"I really like this place and I must say it's the best pizza I have had West of Chicago. The sauce is on the sweet side, but I like that. It's kid friendly so it's a great casual place to be with family and friends without a pretentious side to it. + +The lines can be a little long at times but I think it's worth the wait.",review,y96CV_ML3MGld3asJxzusw,0,1,0 +h762dZ33uhSKtLZ-21u6Jg,2011-02-14,TLp8VwfDjn9W-UaWWn6XdQ,3,Good destination for pizza. Would frequently go there for a slice at lunch when I worked in the area. Nice New York style pizza with a crisp crust.,review,hJBOxmNREXmMGTfXgMcGug,0,0,0 +c1yGkETheht_1vjda7G5sA,2012-01-28,md5-wukyyb3BlnHYY0ic-g,5,"Green is by far one of my favorite restaurants to eat at. My husband loves it too and he is a carnivore! Our favorite things to get are the ""boneless buffalo wings"" and something that another customer shared with me while waiting in line that is not on the menu ""the Wendy's pickle sandwich"" It is amazing! Another special they have from time to time is ""the big WAC"" and I must say it is better than the real thing!!!!!",review,Xffah_1oR1AYdi3TiW9Ckw,0,0,0 +sa9heRBSqZdEzNAUBdk2Eg,2010-08-19,6zs10vbzh1NuRPKyLypZpA,5,"This is a must try for any Mani Pedi fan. I use to drive to Scottsdale for all of my services until I found this spot. Get the pedi, no metal file pedi once - and you will NEVER go any where else. Have fun. I do..Customer service - top end. Thanks",review,D6J7pwjvAsd9VwzIrMzC7w,0,1,0 +6NHkOtivA_gb_2EbbJbJ5Q,2011-04-22,PN2CfYeUVri4e3l5GEMk1Q,1,They have some rude employees its unbelievable. I'm trying to give business to them and ordered 6 smoothies and the cashier and her employee gave me a dirty look. Not customer friendly. At all.,review,OfIm-r7GAv7p5JwzPUYDXg,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2012-12-13,ig5kYd1TvqHtnDu_AJH13g,5,"I had the best culinary experience of my 8 years in Phoenix tonight. First time at Switch. Started off with some appetizers; pesto & sun dried tomato risotto, marinated chicken breast, Mac n cheese. All delicious! + +Next my wife orders the blackened salmon. I looked at her with my wtf scowl. We don't even eat seafood. ""It looks interesting"" she says. Whatever. It gets to the table and it's the biggest hunk of salmon I've seen. We simultaneously stab into it with our forks, take a bite, and we look at each other like the first time we fell in love. The combination of the salmon, bacon and sautéed greens was out of this world. Coupled with the bread pudding and sweet tomato concoction put me over the top. + +We let the waitress know what we experienced and to thank the chef. She brought him out and he spoke with us for about 15 minutes. Jason is touched by the hand of God. He proceeded to tell us what he had planned for tomorrow's dinner menu and we made reservations on the spot for tomorrow night. + +I never knew food could profoundly affect your mood but I was driving home singing my heart out to my iPod. Got home, plugged the iPod into the stereo and continued the concert, danced with my dog and made me a latte. Perfect night. + +Thank you Jason and Switch.",review,aB_1_t8nAUHkS2nAFxcW0A,1,1,2 +mHZXq1c6j1b5bKXTxKJ-pA,2012-06-26,H23asGzFq_W6NoXVNdIhdQ,4,"I've been here a couple of times when I was in college, and once or twice since I've graduated. A memorable time while in college was my friends 21st bday on a Thursday night I came here on a party bus with some people (including some guy from the Real World) and they had a fountain of champagne with strawberries. All you can drink is definitely a bad idea for me because I felt the wrath and had to call into work the next day. But it was a whole lot of fun! Recently I came here with my bf and some friends and I must say I had a great time. I was happy to have a little more than annoying house music all night. They played a wide variety of music that was fun to dance to. I also loved the pussycat dancer that dances above the DJ, it's pretty cool when the two way mirror reveals a bed and sexy burlesque dancer! The bartenders are pretty cool and I didn't have to wait very long to get service. I think PCL is a decent bar based on my experiences.",review,ZW8jy6ehrNzn9A5iCubVGg,2,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2012-02-10,5lNGrP620pJIVGhr2XkQPA,4,The only place I go for a nice lunch on Mill. Two words: Beet Salad. Thank me later.,review,gh2OwESXrgVyufGz_NPHxw,0,0,0 +5IO32LUAX4b-nD13fxKsIw,2012-10-24,O6a4VlSMLKwmAMjH0BUQyg,5,"New to the Scottsdale area, I've been searching for a nail salon for a few weeks. I stumbled upon this place and was very happy. Although it's in a weird strip mall, it's really relaxing inside. My gel manicure was perfect, and the shoulder massage was a nice added extra! Totally recommend!",review,oaz8Fhe38u2DbeTguvLkPA,0,0,0 +FyN6aerPklmO8weJbGlPsg,2012-04-23,uZ1A6CLImILvu6v9EakS3Q,5,"The pizza is incredible, they use really high quality ingredients and the prices are great. I would recommend cooking it on the bottom rack of your oven for a slightly better texture on the crust. + +I want someone to mark that this post is funny, so I will add a joke: + +Mushroom walks into a bar... Bartender says, ""sorry, we don't serve your type here."" Mushroom says ""why not? I'm a fungi (fun guy).""",review,-YLtOLwOh1_xxxBnGtuvNg,0,2,2 +M6fjHpkL9IRI-nI0BattRw,2011-01-18,_p-ylizuse5eGnoOrcknlA,4,"It's the middle of January and 75 degrees out. While there's no shortage of things to do outside, there aren't many dog-friendly places for that where you can sit down and eat. +Jacqui J and I took out doggies to the dog park. They're bruthas, you see, and hadn't hung out in awhile. We had MLK day off together and spend the afternoon together. Trying to decide where to eat with the pooches, I thought of TMI because I had seen so many people recently check in on Yelp. +Their patio is pretty big and mostly shaded. This wasn't a day to be too concerned about shade, since it wasn't hot out. I read the reviews ahead of time and already knew what I wanted before I even got there. I was happy to have to take home a doggie bag, too. +I got the olives, red goat salad and the mac and cheese. I will eat anything that includes green chiles in it. Anything. A few varieties of olives were served wtih fresh herbs and a dash an oil & vinegar. I love all olives and don't always buy them for home, so it was a real treat. They came in a little bowl, but there were about 20 of them. The red goat salad was perfect: tons of pistachios on it, big chunks of goat cheese and strawberries. +And den...and den...the mac and cheese, generously stuffed with chopped green chiles, ooey-gooey melted cheese that was crusty on the edges, the way it's supposed to be. +I'll be back with Dexter. They gave him a treat. Oh, and my meal was treat. I'm burping up the leftovers as I type this.",review,6kmu0mYbdpMIOZ6Y0eVsxg,12,15,12 +zKFX8BVTWYZNa2vJ46UdmQ,2012-04-27,dbIb7vrfgo84UazHU6p4yQ,4,I only go for the movies or when I know what I'm getting. Not much of a shopper but I remember having fun here when I still lived in L.A. and came to visit.,review,Jrx1fLr5JdqgHdIfMT7wag,0,1,0 +OllL0G9Kh_k1lx-2vrFDXQ,2012-06-17,Lxv69FsRyAX5L6hLqfJCbQ,1,I really don't get why everyone is raving this place. I've been here twice and ordered the carne asada burrito. The portions are really small for the price that they charge. There is too much tortilla for the meat. I think this place is overrated and that there are better places for carne asada in the valley.,review,meBgdnN_Jw9MOwz3ZzqQEA,0,0,0 +106JT5p8e8Chtd0CZpcARw,2009-08-06,KowGVoP_gygzdSu6Mt3zKQ,5,"RIP AZ Coffee Connection. :( I stopped by two days ago unaware that they had closed. I am severely bummed. This place is irreplaceable! Damn you, Starbucks and McDonalds!",review,jKeaOrPyJ-dI9SNeVqrbww,1,0,0 +_-9pMxBWtG_x8l4rHWBasg,2012-03-09,KoH2U6Pf3X02Zs4cA_I6bw,2,"I've always said if the guacamole, chips and salsa aren't good, the food is not likely to be good either. I was right, Guacamole was not very good at all, same with the salsa. Rest of the food was just okay but for a restaurant in the Biltmore I expected so much better. Just as a note, when it comes to Mexican food, I'm super critical. This place will probably get a higher ratings from people of the Midwest.",review,1rE51uSipcbiqQlkvj4Kvg,0,1,0 +uQyrVlJS4nh2Y3C0fCy3fw,2008-07-27,trBbDX9XPxqNjho0emZqSA,3,Probably one of the better gay bars in town.. friendly.. decent crowd.. reasonable prices.. after hopping from one to another this place was our favorite. Lots of furry muscle bears too! Nice!!,review,lPaYMDmJbAnv_3pmZH_inw,4,2,4 +_Ne4sL68IW6lEXYvrnkt-w,2012-11-19,pIF-0VPyKIqaOvgcPylfPQ,4,"Great new addition to Mill Ave. + +First stopped by here for a Monday Happy Hour, and instantly loved it. This is a perfect day-drinking place when the weather is nice, and they do a good job of creating a large indoor / outdoor space with plenty of patio. Happy Hour is pretty great - 1/2 off almost all beers. (they do well drink / wine specials too, but don't remember what they were. I think it was $1 off... but don't quote me on that.) Bottom line, I had 3 Firestone DBAs, and i think my bill was about 8 bucks before tip. Score. (normal beer prices are in the $5-6 range. A vodka gimlet not on happy hour (well vodka) cost me $4, which is right where it should be.) + +Also made a return trip on a Saturday night, to get a feel for the weekend crowd. Not too bad, but mildly disappointed. I was hoping it would remain a little more of the chill day-time vibe, but come 10pm the music gets cranked up, and my group decided to move on to a place where we could actually have conversation without screaming. + +(sidenote: every bartender / waitress I've dealt with here has been really, super nice.) + +Def. worth a shot I'd say, and I could see it being a fave HH place.",review,yneTxW_9TTRXTOgJDH9fnQ,0,0,0 +2e1jzfiHFGCRpV66gYNVbA,2009-07-19,nw66R5FsB3xjOVwyiymQog,1,"I have had it with the meat department at Whole Foods Market on Scottsdale Rd & the Mayo Blvd. They really suck. + +I gave them another chance (out of desperation really) and they blew it! I am so disappointed. I purchased some turkey breasts there (3 of them) at around $30.00 for a 4 lb breast. I came home, froze two and cooked one. It smelled, but my husband insisted that it was the smoked smell of being in the butcher case with all the other meats. + +I trusted his opinion and cooked it. Upon slicing it up for dinner, I found that the free range turkey was very fatty. It was gross but no one got sick luckily. + +Well, now I just thawed out another one and the same thing but worse. It stinks like the rotting dead animal it is. It is definitely bad. + +And it gets even worse! As I inspected it and opened up the two breasts (Whole Foods puts two breast together with a net to make one large one), I pulled out about 8 inches of thick, fatty, I don't even know what from it. Let's just say it definitely LOOKS like the dead animal it is too. What ever that stuff is, it is all gray and rotten. + +They are basically stuffing their Turkey Breasts with junk to make more money. I have had it with them! + +I am not surprised. They have always been trouble. Frank the manager there is really not the kind of guy one would trust with food. His is kind of creepy and gives off a dirty ""I don't care"" attitude. + +I spent over $100.00 there on Turkey (ground & whole) and he (Frank) still charged me for the breast bones - and another employee told me that they usually just throw them in the trash! + +The meats at this butcher department cannot be trusted. The manager there cannot be trusted and has failed every time. It is really gross; top dollar for top trash! My husband thinks the manager is getting some sort of incentive for selling the ""questionable meat"" instead of throwing it out! + +I am still nauseous from the smell, sight and from touching all that gray, rotting gross stuff. BLEECH!!! I think I ate that in the last one!",review,nZ9XFVETN4hxdK4qPb-T3Q,6,8,5 +-gefwOTDqW9HWGDvWBPSMQ,2009-02-03,2btIYEj7RWEkNBtha3ulPA,1,"just say no. + +this place is truly awful. +too bad it's taking up valuable space on monroe.",review,pU2lBD_W3VNvpzKZsRzi2A,4,4,2 +B8ujMtvvpHyEQ2r_QlAT2w,2008-11-26,7yfWeorPMnVrI0X4xRgbnA,5,"I am ready to update you to a five because the last three times I have been there, your service has been better, the huevos rancheros has been consistently perfect, I have never had to wait for a seat at the bar and I want to hug the cute new bartender because she is quirkily cute!! + +If you were still serving breakfast at 6pm, I would come eat you now.",review,MWt24-6bfv_OHLKhwMQ0Tw,7,7,5 +rRe2eLIQ4MQ7d6vFL26Qdg,2012-03-05,kxOKxUWaZdJ5smh0i-SeIg,3,"Always wanted to stop by, and give them a try. Only thing that stopped me were some bad rumors of how clean they are? But then again, how clean is all the places we eat at?? So I had their 8"" Meat Ball sandwich, this was my second choice? I wanted was their cheese steak! But they were out of cheeses steak. But I do not regret their meat ball sandwich. It was very good, wish their bread would have been more toasted. But I thought it was good anyways. Place looks like and feels like a lot like Subway. But I do agree, they do add more meat to the sandwich. I will probably come back again.",review,UCQNrwN4_hHHTWYa8cqe_Q,1,1,0 +GqtMJxq5-7Xp1ZXXmahLaA,2008-05-12,yiUT-C_qaVpn58TtBnEJNg,3,"Sacks is a great little place. One issue and I know this wouldn't seem like a bad thing (at least if you are the owner) but it is a bit too busy for me. I can never find a parking place or a seat. The sandwiches are good and I like them, but I will admit that sometimes I don't go just because of the crowds. + +The food is good. I like that they have a variety of sandwhiches and they put a lot of things on the sandwiches which can easily be taken off for the picky folks like me unlike other places where things are mixed in and not removable. If you are looking for a good tastey sandwhich, this is a great place to check out. If you are looking for a nice relaxing lunch where you can find a seat, move along.",review,7Pyi-M7MfO3R2PHTuVY0TA,3,2,0 +DIYHTgM-YGKWOWLzQ4XVhA,2010-07-19,_qWfA3Be9Ybjnxc6nTGRsQ,5,I have passed this place for 20 years and had always heard good things. Well one night when we were kidless we went. It was pricier that we thought but we forgot the price once the meals arrived. We were both very impressed. Warm homemade bread. Awesome salads. I tried the escolar (it's a fish that a friend of mine loved but I had never tried it) and it absolutely melted in my mouth. My husband enjoyed his sausage and peppers. We will definitely go back!,review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +6nseTZb6WrGWcithRThfag,2011-07-16,AH4M-ANlfJA0PD4hz1j51Q,4,"tried this place due to a restaurant.com gift certificate, 4 stars for service, we had an awesome and attentive server which made it great for first visit. drinks were good. went with friends and did some sharing to try the different dishes we ordered. the salmon quesadillas was on the fishy side, the pollo relleno good but a little dry and didnt get the poblano and goat cheese flavors that drew me to choosing the dish, the cilantro mousse sounded more interesting on the menu but was cream cheese and cilantro, the Obama burrito was the winner on our table though. great salsa. would come back and try other dishes and tae in some live music.",review,KxmOlAI4f4bwFMDPzRRzNA,0,0,0 +OOCLVeqqMFfSnKa7liv0Kw,2012-11-04,9NrXM5p0sssVJiVgvFmwdw,4,"This is an open-air mall. Unlike most malls which are totally enclosed, this mall is outdoors. In the outdoor area they sometimes have ""events"". The Batman ""Tumbler"" was there for a day once, we've heard concerts here, and this last visit they had a sculling team there with their boat. + +They have many of the usual shops (American Eagle, Gap, Aeropostale, Victoria's Secret, etc). The Harkins Theater hear is pretty nice. We like the Genghis Grill for food (see my review of them). The Paradise Bakery is nice also. There are several other eateries here, but we haven't tried most of them yet. However, several choices are available. + +This is a nice mall to just wander and shop, and eat and drink, and enjoy whatever is going on.",review,Mb0psF4WQF7gZSuZafVr-g,0,0,0 +Pr9rQKypHgC_J1AfufxzIw,2011-08-12,6ka2jUMJLx9ti2kRZh05yQ,5,"Once again Wildflower proves why it's my favorite breakfast hangout! Jeff the Manager on staff today rocks! + +Some of us hangout at a restaurant to make it a working meal...and sometimes, during that time Nature calls...so I asked the busboy to not clear my table as I needed to step away for a moment and he cheerfully agreed. I came back to find my table cleared by new patrons who had taken it upon themselves to steal my table (I guess the fact that the food was only half eaten, and the water and coffee were still half filled were no clue). The busboy was upset that he'd turned his back for just a moment and Jeff came to the rescue...after apologizing to me and finding the perfect way to make it right, he vowed to let the new people know that they were rather um 'overly proactive' in clearing the table themselves and that he had some people who regularly relaxed and worked in the restaurant and do step away. + +He handled the situation with me just right and I am sure that those people that took my table were made to gently understand that they need to ask before taking an uncleared table. + +Kudos to Jeff and the staff for making me so happy I had to tell everyone here...and to the couple who took my table, if you are reading this...did you REALLY need that booth? I mean, when I came out of the can there were like, I dunno, 5 empty tables...seriously? Like, did you propose there or something????",review,3PleJJEDyGLIWqaW7JlTyQ,1,1,2 +bO2rQLEntQLcg675LjEqaA,2009-04-03,OBRGsiB-FjLoZewGXtEQ5A,3,"Came here for lunch recently with active Yelper and friend Brett B. I'm sure he'll post up his own review of the place. + +This is the kind of place you walk up to the register and place your order, then take a plastic number to your table and the server brings you your food. You also get your glass and go fill 'er up at the fountain yourself. I wasn't sure what to expect, but felt good vibes the minute I asked ""how big is the salad"" and the guy at the register walked into the kitchen to bring me a dish to show me. That was nice and above my expectation, as most places the servers will make a ""size"" with their hands and shrug and say, ""i don't know... about like this?"" So, yeah. I like that this guy actually showed me a plate and made a ""mound"" with his hand to show me some kind of size of the salad. + +When I ordered ""just water"" he went to give me a plastic cup with a lid, and then said, ""you know what? Just take a regular glass, it's more comfortable...."" He trusted me not to fill up my glass with anything but water (and I did only drink water). That was nice, and made me feel like an adult. Not like at some places (much cheaper than this place) that give you a plastic cup like the ones you pee in at the doctor's office, when you order water. + +I really enjoyed my lunch here - Had a chicken caesar salad (one of my favorite things to order pretty much anywhere i go because I'll never make it at home), along with a cheese pizza. + +The caesar salad - for those who have a love affair with this meal - was ""perfect"" . The portion was generous, and it was chopped and tossed. The chicken was shredded and mixed in with the salad, which makes SUCH a difference in getting an even distribution, and reducing pain-in-the-ass-ness of having to cut up a chicken breast atop a salad with oversized utensils like at so many other places. It was perfectly dressed too - not too heavy, just right. And the parmesan cheese was shaved over it, rather than shredded or grated. Nice touch. Excellent flavor, every mouthful. + +The cheese pizza was a cripsy, ultra thin crust, delicious red sauce (kinda sweet, in a good way), and the cheeses were mozzarella and fontina - the saltiness mixed really well with the sweetness of the sauce and made this simple pizza taste extraordinary. + +Granted, having had some beyond-extraordinary pizza in new york, I'm spoiled and have to say it was not as good as my favorite thin crust pizza from Totonno's in NYC's upper east side. But still, darn good. I'd eat it again. (I took some home and it didn't look like it heated up well later on when my husband was having it). + +Brett had the tomato, gorgonzola, chicken, salad on mixed greens. I think it had pine nuts too. I got to taste it and it was even more flavorful than mine. Either one of these would be an excellent choice for those of you who like to order salads. Delicious. + +And the service was great! The manager even came by our tables to refill our glasses for us, though the drinks were self-serve from a fountain. the place was not busy when we got there, but it picked up as we were finishing our meals. + +Great food - great service - great vibe. I hope this place sticks around. + +Definitely would eat there again. Looking forward to it, even!",review,KICFDhBX25ruK_iW6gLgTA,1,3,0 +hb9EA0McsItsYi_FvoWFIA,2012-06-30,7WdxVKa6S08FyP5Chz1c4Q,5,"There are no words to express the value of the quality of service that you receive from Tina Yragui's Hands 4 Healing therapeutic overall body care. The value of knowledge of the body, the commitment of service, the excellence of research for each individual client. The degree that she possesses cannot be measured with a dollar amount because no dollar amount can beat this value. It is value what goes far beyond what you receive each and every time you see Tina. + +Tina is a healer and is dedicated to you. + +It just doesn't get any better! + +Carol Taylor-Tassone +Erica Elizabeth Tassone",review,pmkI2GIZ9Qh9LlHjey-w5A,0,0,0 +vYvT8J9uEh4Fqt7f9ILKlA,2012-01-24,KFG2OFPaX0N4omAILlq37Q,1,"Food middle of the road... The staff is rude.. Seems like it starts with the owner. I think she makes the staff pay for everything that goes wrong so in turn they dont want to fix issues with poor, wrong food etc. I think she tends to forget the customers are actually what keeps a business open. For a long time it was the only choice in the area. Now there are multiple choices. If your in the area Chili's or Connolys is much better choice in my oppinion.",review,-US_SpFlEAsu3ZRWY8Bsvw,0,2,0 +bc-lE-wGVAsUrX-kJhtY-Q,2008-04-01,Tx0t7Jr6K7UicgbWympFsA,2,"This place was so bad on so many levels I'm not even sure where to begin. Our server kept calling me honey.. and seemed to be in such a hurry she wouldn't stop and listen to me. You know how needy I can get and need to be listened too and heard. We started by ordering the Baked Spinach and Artichoke Dip.. what I couldn't understand is 1, how did the chef let this go out and 2, no one but us could smell the scorched burnt smoke coming off the dish. This thing was so badly burned and scorched it was completely inedible. Sent it back and she didn't even offer to bring another one. Perhaps it was because they were so busy they just wanted the food to go out? + +So I ordered their Famous BBQ Ribs.. I hate complaining to much but these were old ribs.. maybe maybe a day or 2 before.. pork takes on a funky taste when its fridged for to long.. the texture of the meat (when you could find any) was like jerky. I happily ate my Creamed Spinach (2 star yummy) and didn't eat more then 2 bones of the ribs. When the waitress came to clear the plates (she never checked on us) she asked if I was full. I told her that the ribs weren't to my liking.. she smiled and asked if I wanted dessert. + +Over all I would never come back to Don and Charlie's.. aside from the Creamed Spinach, which I can make myself, there weren't many redeeming qualities. A shame too because it's so close to the house. I don't get it because the Yelps are so good. Maybe they were having a bad night? It was so bad I wouldn't ever go back to find out.",review,lPaYMDmJbAnv_3pmZH_inw,4,10,1 +soiGohHtWOltGeomkSxzEw,2012-03-29,zMuTMydgOXEXA7ycogchyA,1,"If there was a way I could give this restaurant NO stars, I might have. The chips and salsa are the ONLY thing that requires a star here. + +The service was less than average, the food was hotter than the surface of the sun, and the drinks were teeny tiny (and didn't much taste like alcohol). My husband ordered a green chile dish and it came smothered in red sauce, when he asked the waiter if it looked green or red, the server said, ""nope that's what green looks like"". WOW! + +Sorry but I don't think I will be returning.",review,DY-U7c0451pUs25p_AhUgQ,0,3,1 +obYD-4HxZ3gqhS5hPJKG_Q,2009-05-29,BpZhrMPGm5MyiSPYOJ0WwA,4,"If you need something obscure, or you need to get everything you need in one place, then here you go. I also love how many different 1 shot mini bottles BevMo has to choose from.",review,uHQ2ZRacs1Zhi_38MQz2BQ,1,0,0 +bbi-76L0uvQRrno57Qjpaw,2012-11-28,wC9w5m_ROb0dLWMqVXjbDw,4,"Handmade, in-store fine candies aand chocolates are awesome (way better than See's, but higher priced). The owners are really great people!",review,EcgpGtxB5916NPqvXwMcjQ,5,10,2 +Bm2PBs_AZEtx93zdtwqUJA,2012-05-15,1_I9nQwAsG86w0vuwNg41Q,5,"I have been here many times, pretty much can't go wrong here. prices are good service is prompt and friendly.",review,kAMGHCEOlJxlY0wtxao9Rw,0,1,0 +HMUvbAHRnbAczNrYy8e5MA,2008-12-19,22gEHz1TUHw1I9hGgOAnKw,4,"I used to come here about once a week for their amazing vegetarian sandwiches. My favorite is the griefo with pepper jack cheese, hemp cream cheese, guacamole, sprouts, lettuce, black olives, onions, mushrooms, cucumbers, and tomatoes. The hemp cream cheese is to DIE for seriously! I also enjoy the humbolt, which is very similar, and the majic mushroom with sliced portabella mushrooms, teriyaki glaze, green bell peppers, pineapple and pepper jack cheese. The 8inch is soo big but makes a great and filling lunch. You can't beat the prices either. Get the garlic herb bread, it is the best. The only thing I do not like about this place is that the whole ""marijuana"" theme can get old and annoying. This location can also get really really busy and the sandwiches take time to make. Staff is usually pretty friendly and social though. One last thing is that if you eat there or have to wait for a while your clothes will smell like food :/",review,oCFQmDotqcyIYAY1JyKUPg,1,1,0 +dzncF6n6MHJLXUo4_J6eig,2011-08-20,HOs-JvAydh1WF05wEO496g,4,"This dry-rub barbecue was delicious. The ""sassy"" barbecue sauce was meh, but the sweet was good enough to make up for it.",review,AK2Nt1PdjHlLVoEzF0FqpA,0,1,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2011-12-23,WDrr9VfuAB0AMq6jfXarNg,2,"The Vig was just okay in my opinion. I met some friends there for happy hour on a Friday evening and it was packed. We did get the drinks/app specials, and all the food we tried was just okay. The atmosphere was your standard trendy bar/meat market. (i.e. A lot of people trying waaaay to hard to look and act cool.) We had a good time, but I probably wouldn't go out of my way to go back there anytime soon. The people I was with we're great, but The Vig itself was 'meh'...certainly nothing special.",review,z4Z-wIgEcnOjeHclfF0yXA,0,0,0 +iwzHQ7aBPrxKybarW5q5TA,2010-11-17,msXzt_S78n3M7xLKowTTWg,2,"Absolutely, positively bitter. They use a powder in lieu of syrups which adds a after taste I don't care for. + +There was no color difference between my beverage (latte) and my friends (iced coffee). Why... I have no clue. We order these drinks everywhere and this has never happened before. + +I can see how a powder would be more cost effective but the taste was something I did not care for. + +Maybe that makes me a coffee snob, I am not sure.",review,T5mD6ggC7fh48QgXR0LevA,2,2,2 +_A4x1TNYwm0XY1V882aUJw,2011-03-06,FLaC8K2RxdeqNLpll5qynQ,5,"As an artist, I've come to be very picky about the stores from which I purchase my art supplies. Arizona Art Supply is a GREAT store!!! Every time I visit I overhear the staff's experienced recommendations; they take the time to ensure that every customer's needs are satisfied. + +I am always immediately welcomed as I delve into the fully stocked and well-organized aisles. Yes, this is my kind of art supply store! As I browse the expansive selection of everything from drawing supplies to paint, easels and canvases to ceramic tools, an overwheming desire to create comes over me. AZ Art Supply has a HUGE selection of my favorite brands--Prismacolor and Golden Paints! + +Although this store is smaller, the prices are reasonable--they beat out Michael's prices for nearly every item. If you're looking for exceptional quality, a diverse selection and a knowledgeable staff, Arizona Art Supply is your best bet.",review,qZrArI2ohkYkQlELl13BKQ,1,4,0 +vN4mFODLd-gLmDg261wsyw,2011-09-05,-8a9TktdvoC01Xm69S6Q7w,4,Our visit to Scottsdale brought us into Fountain Hills to look for a home. While we were there we decided to look at the beautiful fountain we heard so much about. That's when we happened upon this place. The pizza was fantastic!!! It made us want to move here even more. Delicious!,review,cZgbUqTxXV0-EIzRZEKlQg,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2012-04-11,I6rtvk8Sc1U06DIuQ4kIPw,3,"We had a large group and they honored our reservation with having the tables ready at our specified time as opposed to getting them ready when we arrived. We had a somewhat set menu. + +The tofu dumplings were delicious. Satay chicken was alright. + +We had a choice between 3 entrees. I want to give them higher ratings for their service, but the spiciness between the dishes were very inconsistent. You get to choose on a 1-5 scale and finding a dish that suited your desired spiciness was a hit or miss. Some people's 1-2 were super spicy and other's 4-5 weren't that spicy. (note: 5 is spiciest) + +Also, we had a huge mess with the bill where they put all the appetizers onto one bill for a table, and none on ours. It was quite a mess trying to figure that out. Also, their timing for food was so bizarre. By the time 1 table had basically finished their dinner then the rest of the meals arrived. Then again, dealing with 40+ people is a lot.",review,9pW26TfIHW2GV1zxCfvT-g,0,0,0 +Snp5LyDO9NeQiuFPOlkavw,2011-09-07,pOELqa1WtOTZN34UN0OQzw,3,"We were visiting again, so of course that means at least 2 trips to Sugar Bowl! The food, service and ice cream were good as always, but WOW, the prices sure have gone up. I know that the economy sucks, but for what we got, the prices just don't seem to justify it. We had different waitresses both times. The fist was efficient but not very warm. We had Sandra on our second visit - and YES, she remembered us again! Could not believe it. She is very friendly and can really keep up when they get swamped. We will be back, but maybe only once per visit instead of 2 (or 3 or 4) times. Just can't afford those prices for what you get.",review,BRpbP8FI9Q-MULAj6iyXHA,0,0,0 +_CG5zJAoNN6gszjhSyUcww,2012-06-17,E3816qsDqj9yCAPEpx5fOg,5,"So yummy in my tummy. My sister and I went here for dinner and the food was as always-- very yummy. We had the marinated BBQ pork and the seafood hot pot at hot. We finished half the of the plates because they give you a lot. It would be better of the price wasn't as pricey. But overall, awesome service and yummy food! We will be back!! + +They first serve you lil condiment plates from seaweed to kimchi (spicy marinated cabbage that has been fermentated). When they serve you your food, they will ask if you want egg in the soup-- of course!!! They crack it in front of you in the sizzling hot soup...drools. Serving you some extra rice for the soup and pork. We had to pack to go boxes because it was a lot of food. + +Today, we went again for Father's Day and our family agreed this was so yummy. We had the BBQ pork again with Dumpling Tofu soup (""Yum-O"" Rachael Ray) and Bibimbap with rice! The Bibimbap was okay but everything was excellent. Our family of five finished nearly everything. :D so GOOOOOD! Going to come back soon! + +Check this place out!",review,HnqzojvN3AyZHjslUlxiJQ,0,2,0 +Nu0_tUBN6R9Oc-YsLVFNJg,2011-12-17,P19m6G0uR48q1l83ajOI1A,5,LOVE the food!!!!,review,IXuKjVb0F7t7T-BTpwLqKQ,0,0,0 +m6h0xM8nvmjx-WeOjV6XbA,2010-01-23,wk-1KK8GkTNtPA1wM-SDVQ,5,"I am a huge Suns fan but my review is about the fundraising options that the Suns have to offer as well as their back-office staff. + +First and foremost, talk about a professional, classy organization. Whether you have fundraising experience or are a total novice, the staff treats you like you are the only group they are working with. My contact is Kyle Pottinger and he is always a gentleman. No matter what questions I have, he always answers them promptly and never makes me feel like I'm bothering him. + +The fundraising process is easy and the tickets practically sell themselves because who doesn't want the chance to purchase discounted tickets? + +The process is easy and the rewards can be lucrative depending on the target audience you are working with. The Suns will treat you professionally and courteously. You won't be disappointed.",review,kG8jkVFgOAOq6Ht6RvAjEQ,0,1,0 +ApUCpJ9aa6yVgsde16gYrg,2011-02-17,PPXsoCqGb3h0w-ujzD6oEA,3,"They have high definition pictures of their menu items proudly displayed on the walls, and I like that. + +Regarding the Chicken Pad Thai. The chicken and tofu were cooked perfectly, but the noodles were a bit chewy. + +Spring rolls were great. The pic on the menu shows them served in halves, but they arrived at our table whole. + +My date had their Thai noodle bowl, and Id suggest skipping on the beef balls. Also, its very bland if you order with no spice. + +The owner recommended that we vacation in Thailand. He also offered to install new granite flooring in out home. Travel agent, mason, restaurateur. He does it all.",review,pIm17SVRo8IdhGoBD4qbnA,0,0,1 +EdQRXa0sTJ1vFK6_c8vMLQ,2012-07-22,grH6ZNUaSqeER9H_qo3-CA,5,"These guys helped me out with my rear windshield wiper. They could have just shrugged their shoulders and said they didn't have the part, but they worked with me and tried a couple of different options until we found a solution. Everyone I encountered was great.",review,W9ZG5q-QIblXYeHgaPS5Uw,0,0,0 +F3wzildlt2jM4OAQ2Z0ZJw,2010-12-15,9XAelcQLGb75xe2r6todGw,5,"Eating in is a decent experience, but for delivery, I have yet to meet their match. When I order delivery I always get a 16"" chicken pizza with alfredo sauce on top, and for the last 6 years I have received it in 30 minutes or less all but 2 times. Its always tasty, fresh, and is my preeminent food for delivery, ever, period.",review,YbHL_lmvARxf0rz0WlVQPQ,1,3,1 +HhNY3X0kyrN5682La6N6Cg,2011-05-12,4qZB6JCWSeUwWoCPu5_UWA,5,"I love boba drinks but hate the word ""boba"". I always feel like an ape when I say that word. + +Anyways. + +There was a period where I use to drink this stuff at least 3 times a week when I was living in San Francisco, so when I say I love something, I really do (or is it more like a creepy obsession?) So! When I found a boba place here I got excited, especially when I saw that they had green milk tea. + +I can't vouch for all of their drinks, as I've only tried the green milk tea and avocado snow, but every time I have ordered them they have been super good.",review,b6CyeouS97Y8YSTi8T2xRg,1,4,0 +bxEd1ust_wI0Br-HLnEy0Q,2012-04-09,L6CABV5Fc-a5apw9weE0NQ,2,"Decentfood, but horrible service. Both servers walked by me three times while I was sitting inside without acknowledging me at all. I was by myself and felt as though everyone else that came walking in were immediately welcomed. I wish I would have received the same attention. I was ready to walk out when i was finally approached. Nobody came back to check on me to make sure everything was ok after they delivered my food. Being from Vegas I am not accustomed to such non attentive service staff. I guess that flys here in Scottsdale, but I expected more from the type of clientele that they have. On a positive note, they do have a cozy place that gives the feel of a French coffee shop/bistro. Hopefully this review will be helpfull in giving them insight into making sure that every guest is treated with the same attentiveness to service.",review,R7XtOWCTIh-VzdVDu9iYmA,1,1,0 +3GAPcBG8SowgrpS6UHlDeQ,2011-07-14,PLm5cOKBBOspHNMyfAHbmg,3,"A girlfriend and I have been meaning to check Bombay Spice out for a while but have never gotten around to it until last night. (I found a great deal on LocalDines.com -use ref # 102729 if you sign up! Also, checking in with FourSquare got a us a deal! ) + +We ended up going a little later (8ish) so there wasnt a wait or a crowd at all which was nice because the venue is a little smaller. The bartender was very friendly, our serve was a little distracted and took a little longer to respond to our needs but she was very nice. + +We both had wine, the ""single glass"" serving is actually 2 glasses in case you are torn between splitting a bottle for $20 or just buying a glass for $6. I recommend the Falling Star Cab, it was full bodied and very yummy. The other wine we tried was the Hob Nob Pinot Noir. It was great, it had a delicious combination of earthy and sweet tones to it. (I am not very good with wine lingo, but those are my unofficial terms that make sense to me.) + +Neither of us were very hungry but we wanted to sample the fare so we could at least see if we wanted to come back. We got to choose either a free humus or a dessert because of my deal for checking in on FourSquare (POWER NERD! I know.) I really wanted to try the mango sorbet but we opted for the chickpea hummus and roti bread. For those of you, like me, who aren't sure what roti bread is- its much lighter than pita bread and a little thinner than a tortilla. Its very tasty. The hummus was very good, and they garnished it with diced tomatoes, onions and cilantro which i loved! + +We also ordered the seared eggplant. It was AWESOME. It was a large slab of eggplant with a black sauce that was herby (thats a technical term in case you were wondering). They also served the egglplant with a yellow sauce drizzled on the plate which was sweet and very good, in addition to a small scoop of a red chili sauce (our waitress told me the name and I couldnt remember it for the life of me) which was spicy...I really loved this sauce it was the perfect amount of spice for the eggplant. + +I will be going back here to try the curry and some of the other things on the menu i cant pronounce. + +There are a LOT of vegetarian/vegan dishes clearly marked on the menu. Their menu also boasts that everything, except for 9 or 10 items, is completely Gluten free. + +Good experience, definitely looking forward to trying it again for a full meal.",review,hTKFGpi3ltCV4B-XDFRT-A,1,2,0 +kJFS_3WlP6TFdNUYt6V6FA,2011-08-09,N_oaJQezhQb5EeK6lzwe3A,2,"An interesting concept that didn't end up being what I hoped for. + +I was pretty excited to try the Posh Noodles & Noshes Japanese street food as prepared by Josh Hebert. I love Japanese food and was looking forward to the dishes that are not readily available in Phoenix. Unfortunately I was underwhelmed by both the venue and the food. + +The location inside the Lexington Hotel has definitely seen better days. An attempt has been made to create a temporary generic space with chalkboard walls and butcher paper topped tables. However, it came across as worn and dingy. + +Our waitress was not familiar with the menu or drink offerings ('I didn't work here last night') but was friendly and did find out answers from other staff. Foolishly thinking that we would love each and every dish and take home a lot to enjoy the next day, we tried a large assortment. An expensive mistake. + +Duck Gyoza w/ Ponzu - I prefer steamed gyoza over the fried presentation here. Also, these had the tiniest, greasy portion of filling I have ever seen. + +Homemade Tofu w/ Ginger, Scallion, Cherry Blossom - this was good, with a sweet, dessert-like flavor but a somewhat runny texture. + +Okonomiyaki - this 'Japanese pizza' was among the better items. However, the texture of the ingredients was strange - i.e. full slices of bacon rather than smaller bite-sized pieces made greasier than it needed to be and messy to eat + +Tako Yaki - again, a strange texture with awkward large chunks of octopus surrounded by 'breading' that fell apart easily + +The ramen dishes (Miso Ramen w/ Pork, Goma Ramen w/ Pork and Shitake Mushroom Rames) were small, and more or less indistinguishable from one another. We left most of them behind, deciding not to take anything with us. + +The dessert, Green Tea Pot de Crème was a nice finish but did not make me feel better overall about the $100+ meal.",review,n9Zg0jlOGtxfIrvoPm6Hhw,4,6,3 +4xLRmAD8QeqbN7Q7xTbmYg,2011-06-16,m3Tz7zfvsK7MAkwOafA6XQ,2,"I love Victoria's Secret, but this store has a terrible selection, and the employees are rude here. I have visited many locations all over the U.S., and was not happy with this one. They were very pushy about trying to get me to buy bras that I did not like as I only buy a certain style of bra from here. I also thought that there selection of PINK merchandise was severely lacking.",review,DsoD6Nyv4n4gQpjIq_y5DA,0,0,0 +lTgbj26dpv8Ltzbf83T6oQ,2012-03-10,JkNadCNcsQLnK9SRjDPvSw,5,"I found Cake Frenzy through an service listing on Craigslist while looking for someone to create our wedding cake/cupcakes. Not only were we on a tight budget we only had about 2 1/2 months to plan for the venue we wanted only had a few dates available. I met Jennifer about a month prior, my fiance' and I knew we wanted a peanut butter & jelly cake and she happily obliged. I emailed her a picture of what I wanted and the day of our wedding when I first saw our cake I almost cried. She went above and beyond my expectations. The cake was beautiful with sugar flowers and gelatin butterflies. All of our guests loved the flavor combinations and the decorations. I highly recommend Cake Frenzy, she is professional, she takes pride in her work and extremely reasonable.",review,Ksu2OeDaXiHurIX8gUHmkQ,0,0,0 +DE8UVNCCpOE0vTAbGaMoeQ,2011-08-20,xojz72lSkjuhZylKIeSDRA,5,"Love it. + +Last night I dropped into Romanelli's for the first time after driving past a time or two. Glad I did. + +It's a bakery and deli that offers a fine selections of meats, cheeses and breads. They also sell all things culinary Italia. + +When I stopped in it was 30-40 minutes to close. I went directly to the deli counter for a sub and was met with a challenge as I decided which to try. I opted for George's Special (ham, capicolla, salami, mortadella, pepperoni, provolone and hot peppers). Given the close proximity to closing time I was expecting a sub on older bread that had been sitting around all day but it was still soft and very fresh. The sub is easily the best I've had. Amazing. + +I also purchased a cannoli. I'm picky about these things. Too many places fill 'em and stock 'em and the filling makes the shell soggy. Romanelli's fills them upon order just like the Italian bakery near a friends house in Newark, NJ (until last night the best cannoli I've had). The cannoli was top notch. Simply the best. + +Right here in Phoenix, on one night, I had one of the best meals ever. I cannot wait to return. I only open they were open past 6pm.",review,gg_OKjOAl_vVmdh5ZETuiw,0,0,0 +_w2wIsBh-1M1ZCed2KjLlw,2011-11-03,TrPutW46q_oVN6xScoZM7Q,4,"I have been coming here for the past 4 years; the pizza and food are great. The service has been very good, some seasonal workers and some regulars. I bring friends from out of town here for good pizza and wings. I would recommend it any time.",review,Xo4i9b1ytYPa2hbNXP_mYQ,0,0,0 +cInzGnaFZ3EIItvFXl1MvQ,2010-11-18,WypVTJ1PseynOeSROw3Yvg,3,"Just a quick review to get the ball rolling. Popped in here on opening night, and was pleasantly surprised. Hubby and I split the Mussaman, a hearty portion of curried veggies and short-ribs, and the Garlic Veggies with tofu. The Mussaman was by far the star, and given it's $16 entree price it needed to be. I see a lot of promise here, though I do find the prices to be rather high for this neighborhood. I should hope once they get their liquor license (expected sometime in January according to the waitress) that the food prices will come down. I'm not holding my breath on this one, however, since the moniker ""Modern Thai"" has become euphemism for ""Expensive Thai."" I look forward to trying SaBai again after they've had some time to coalesce.",review,g2mozOU_F1nzpjLDY4CfzQ,1,2,0 +mKtHJOe1rtf-zGewKpAqrw,2012-10-23,i4kZYaGypxV6LPCroMK5-A,1,"One stop has one goal and that is to get the $80. diagnosis fee and split. Francisco told me i needed to spend over $1300. for parts the manufacturer only charges $316 for. Stay away! I intend to file a complaint with the Attorney Generals office today, hopefully they will stop this nonsense.",review,DYDCOM77BTeQo18Z5tYlag,1,2,0 +1F-pelV0fTduYV_vCrvjLA,2008-08-07,TCCeEXnStlwi7nQXj0bxRQ,4,"I love the kitsch of this place! Bears bears everywhere! Black Bear Diners are usually found in small to medium sized towns, but for some reason this one is smack in the middle of urban sprawl. So not complaining though, because it means I don't have to drive to the middle of nowhere to enjoy their old-timey newspaper-menu and awesome pot roast! + +Their fare is strictly comfort food and always well-prepared. The full portions will fill an average 200lb guy, so it's nice that smaller folk like myself have the option of getting the small (or ""senior) portion! + +Save room for their personal-sized pies...you won't regret it!",review,x5ve4LVa-iIfZ65Qe9Pqvg,1,1,1 +C6gkuLYG_NOobXxaXwUUpA,2007-03-08,WowIQci4KEfcKZEeAdydmA,1,"this another place that i would give no stars to if possible. +it's been on the corner of mill and university for as long as i can remember, which is impressive since nothing older than ten years has been able to withstand the rent increases, and even more impressive because i don't know a single person who goes there. + +i went in there one time, for drinks and walked past one of the foulest salad bars I've ever seen. for some reason, it's right by the door. instead of walking in to see a hostess stand you walk right into this brown mess of vegetables. + +after seeing that first off, i wouldn't dream of ordering food here. the place is also dark and dirty and there's never anyone inside of it. + +seriously, I'm really curious how this place survives. awesome little neighborhood wing and live music joints like long Wong's get torn down for high rise condos, yet gross, ghost town ruby Tuesdays hangs on the corner of main and main of Tempe. what is wrong with the world?",review,7GC9fVWKa4a1ZmBGLH6Uww,0,0,0 +Xq9tkiHhyN_aBFswFeGLvA,2011-03-21,cVDmpkto6Fs-LwCkxKPx3g,2,"I think all the 5 star reviews are from people who work here, of which there must be 500. Look at the trend all 5s then 2,3 and a few 4s. I HATE that. + +First off, it bills itself as a steak/chop house or American Grill- whatever that is. It is not a Steakhouse, despite have butcher in the name. + +Lets start with the ambiance: Don't ever sit in the back room, it is so loud it is like trying to eat in a drum. Also, what is up with the TV? If I wanted to watch TV while I ate I would stay at home, or go to a sports bar. + +Next the service: It sucked. There must have been 20 Servers, yet service was slow and inattentive. I know the place is new, but they did not even have a wine list printed. When we asked for the wine list, they first said they did not have one. Sitting in the back room, I could see the freaking bottles. Then, they sent us the manager, who was clueless. She then the Bar manager. Who looked like he used word to type up what he thought he had. He was knowledgeable about wine at least. Other than that the servers were slow and did not know the menu well. + +Drinks: My Dad ordered a Margarita, it was awful. We complained to our server who sent over the Bar Manager. The bar manager made him a second one, which was passable. For that price it should have been great. I ordered a draft IPA, they were out. I got a 22 bottle it was good. My mom got a 7 and 7, it was fine. + +Now the Wine, WAY over priced. An average markup is about double, it was triple or more here. I.E. a $12 bottle at the store should be about $20-24 in a restaurant, it is $36+ here. +No value + +Food: Meh at best. The best part of the meal was the Cheese/meat plate. Me and my Dad had the Ribeye. The meat was drowned in a sweet sauce with mushrooms and cauliflower, I liked the Sauce, My dad did not. But the sauce really over powered the steak. +My mom had the Pork and Beans, she loved it. All in all not the worst meal I ever had, but no value here. + +Dessert: I would not know, I am allergic to Peanuts and True nuts, not a single desert was nut free. My Mom had the peanut butter cup - she loved it. Also, they had no dessert wines, or any after dinner drinks. + +Value: $80 a person with food, wine, and drinks. I can think of many other places I could go and get a better meal for that price, or less! For example, We had dinner at the Tuck shop the night before, the meal was great, and drinks and dinner was $80 Total!",review,zNR8Q6Fw9UvlVSgxwEy-3Q,3,10,1 +B6sT5YGBYB9KfhkiZtzQ4A,2013-01-02,IdFTGG7jVjN-NAJc09hKYg,4,"We have tried every Chinese delivery in Chander over the past few years and have found them all to be barely edible...and we aren't picky eaters. Honestly, fellow Yelpers, we even didn't like the one's you gave 4 stars. Where's the flavor? We tried Asian Grill delivery tonight - wonderful...delicious! We finally found excellent Chinese food delivery in Chandler!",review,GveOUdXagY6tuZttk2SUew,0,0,0 +K9fIADfO_zKFPFm75A1Hxw,2012-03-06,XFVJstX3gRXv3Bhitzk9rA,1,"1 star for service, but the food is not ok :( they literally put 4 pieces of chicken on my taco. I let that go & figured was a mistake. When I went again, ordered different item & same result. Little to no meat. I will not be going back.",review,AV4-6n6SKop4Bp5S15c98Q,0,0,1 +fm4X0SV2Kofj-57ZfHiZ_A,2012-05-26,8P7Z3mVRTNGsje6-g7POqw,5,"My Fiance and I went here today for the first time. We shared a meat pie +and a serving of the largest Bosnian Sausage dish. + ALL of it was amazing. I cannot speak highly enough of their food. Service was very prompt and the waitress courteous and quick. The food was very reasonably priced and the restaurant itself was very charming and nicely decorated. All over, the ambiance was pleasant. I look forward to returning!",review,cVR4YQYdouuuSTra25akww,0,0,0 +c1yGkETheht_1vjda7G5sA,2011-04-01,RUe0yOda890ngDaz32MZ8g,4,"I read that the guy who owns GoDaddy shot an elephant...at night...using spotlights...I'm thinking his fully tumescent ""manhood"" must be the size and color of a 7 year old raisin...I can't imagine what he thought he was proving by felling one of these magnificent creatures with high powered/laser sighted rifle from 500 yards away, while it stood transfixed by the spotlights glare. + +There was a word that we used for poachers that did the same thing while hunting deer, when I was a kid back in Oregon...""Asshole"". + +He did prove to me that I will need to move any and all business I can away from GoDaddy...""vote with your feet""...but I guess that's another review. + +The Beautiful Carin and I were in Scottsdale on business this past week and we take these opportunities to spend time with those near and dear to us! + +At the very tippy top of the ""near and dear"" list is our lovely daughter, Whitney. + +Whit is a Vegan...with a capital ""Vege""...and she was distraught by the wanton slaughter of an African elephant by some dot bomb misogynist. + +So she was thrilled that her meat lovin' daddy was going to take her to Green for dinner...an experience so very alien to me that I made Carin pick up a pound of fully cooked bacon and bring it to dinner in her purse for me...just in case! + +I am not a Vegan...I was born and raised on a cattle ranch...I do love a good medium rare rib-eye...I don't think it hurts Elsie the Cow to have a teat twiddled so I can have cream in my coffee or cheese on my burger...and yet, the elephant deal brought a tear to my daughters eye and touched my black flinty excuse for a heart! + +I checked Yelp and saw that while my Vegan friends on yelp love this place, my decidedly carnivorous Yelpy friends were also nearly unanimous in their agreement that Green is foodgasm inducing! + +We ordered way too much food...Chili Fries, Egg Rolls, a Green Burger, the Secret BBQ Chicken Sandwich, No Harm Chicken Parm...I barely had room to choke down a couple of Tsoynami's and an oatmeal cookie sandwich! + +Even after we were stuffed, Whitney took home enough leftovers for a week! + +The big question about Green is ""why didn't I ever eat here, when I lived here...Why?"" + +I don't know...but I will be putting on my hemp cargo shorts, a tie dye t-shirt and growing a neck beard...and I will be eating here again. + +I like to ""fit in"". + +The menu is fairly extensive...the portions are plenty big...the flavors are bright and well defined and the textures and aroma's (always a big deal for me) are both exotic and welcoming. + +I didn't have to break out the bacon (although I should have taken my flask...no cocktails at Green for Donald...oh well, agave sugar cola was a delightful departure from the ordinary). + +I really could eat this way on a regular basis...it's that good...I probably won't, but it's nice to know I could! + +I imagine that Karma will have it's own way of dealing with a self-justifying, trigger happy technotard...for me, the occasional dinner at Green nicely balances the Karmic forces at work in my life...and tastes good, too!",review,du6KeE54IFbPiXpU3LOd1g,13,9,16 +VgOnAwmaca49g5ESmZrcng,2010-02-03,8Wi_nK2q3U_EmRppS6AIFw,4,I have since revisited the store several times and I would be remiss if I didn't update my rant. Debbie the owner has been friendly and helpful ever since I asked nicely. I suppose with the amount of lookie loos or window shoppers in Old Town I can relate to the lack of enthusiasm.,review,hqnySkbeUJGoC6h76gtSIQ,0,1,1 +R8gQHxVqHhehMINgAAfHPw,2007-02-09,GEBvuekkQHPJNaAtLkoV8w,5,"Buckle is a really cool store. They carry both men and women's clothing and they have a huge selection of jeans. From Silver to Lucky, they're all there! + +They also have really cute tops- from casual to dressier ones you could wear out to a club or bar. It's nice because this store has its own style...kinda casual, a little funky, but definitely different than anything you'd find at Macy's or Nordstrom's. + +They also carry some shoes and accessories and the staff is really helpful. You'll also get a little punch card with your first purchase and after so many punches, you'll get $10 or $15 off. + +The clothes range in price, but generally, I'd say everything in the store is pretty reasonable. This location is in Paradise Valley Mall- check it out!",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,0 +TnkxapUN4nWMz_z5h3qMYg,2011-08-07,C4biUihjN5upcGmx1dHJ-Q,2,"I'll agree that this is a great meet up place in the city. Nice neighborhood, adequate parking in the structure behind, and a greta atmosphere with great service. The menu is interesting and I'd come back to try more but here's what our first visit was like. + +As a Starter we had the Spinach Quesadilla made with Lavosh and it was great. I mean really great and enough as a meal for two. For that alone I'd go back. + +My better half had the Falafel Pita and thought it was OK. I had the Gyros Pita and got luncheon meat. I'm talking precisely sliced, straight from the fridge but thrown on the grill to warm-up luncheon meat. If you go online to see the menu, it's one of the items you can click for a nutrition chart. Here's what it reads for the ""meat"" Gyro Beef [Beef, Lamb, Water, Bread Crumbs (Bleached Wheat Flour, Water, Dextrose,Salt and Yeast may contain soy bean oil, Calcium Propionate), Soy Protein Concentrate, Less thean 2% Salt, Garlic and Onion Powder, Monosodium Glutamate, ]; + +So, the takeaway here is stay away from the Gyro. + +But, Hey! Gyro IS a pita. I expected a reasonable execution. Heck, make a Gyro meatloaf and slice it up at least. + +Yes, I'm bitter.",review,SINn9supzIkv77lgB4OnZA,0,1,1 +6Lo25bdGe3qEdFLGygBsPw,2011-08-21,qbw_6lX5pyM7YBWxHrBbbw,5,"Like others, I found this studio through a Living Social coupon. It is a great studio. Kim is so friendly and fun. I would highly recommend the yoga classes. They are both challenging and relaxing! It is a small studio, but that gives it a really nice, intimate feel. I definitely recommend it!",review,Y_iCmH_z_T5cOy3_8p_pQw,2,2,0 +TisnIBR2lMvT1DMC95_eHg,2012-06-03,FgmtoIJjj3PQTD-X6ru5Kw,4,"Kind of cold, otherwise your typical Paradise Bakery. Delicious chicken Caesar salads.",review,yDCjypQo1dpQ7rwgNx9f6Q,0,1,0 +sa-CgzlC0m5xrspvBbz6xA,2011-08-02,6uAN_mdFFpKHyCyUxvvC0Q,5,"I freakin love this place. My favorite thing is to sit and eat facing the counter and watch new people come in and get all confused. Now that's just funny. My first time I was the same way, like what the hell do I do here. Now I'm a pro. Stack it deep and use another bowl for smashing, Soba noodles piled so high it looks like a circus act getting the bowl to the cook. Mmmm....good.",review,oTB3jV0wp1pf3bHy6Lxv2A,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-01-31,RV6BEdJNPxjwQQazQRXqAA,4,"Who woulda thunkkkk Scottsdale, AZ would have such amazing soul food??! They surprised the hell outta me! + +Coming from someone who regulars Roscoes chicken &waffles... believe me when I say LOLO's is BOMB!!! + +I got the 3chicken combo... w greens, mac&cheese &cornbread. + +Cornbread.. hands down Roscoes! +Greens... Roscoes +Mac&cheese... LOLOs for suuuree! +Chicken... tied.. they're both really good! + +the staff is super friendly!! can't wait to go back when i visit AZ. (=",review,df0YRtus3XaN64pzs8iteg,1,2,1 +wTiQXYB9fE9rcSZDsZgbtQ,2007-03-02,oqcdLgCFXYhdd70qfl7XeQ,3,"So, yea. Kelly's review has me more than a little concerned. Thinking we won't go back for awhile. Most likely quite awhile. I'd rather be sure they have that crap taken care of. Literally. + +But here's why we'll still end up going back. It's all about 3 things. It's conveniently located. It makes you feel like you're eating healthy (Note - doesn't really encourage healthy eating, more just a healthy attitude. Keeps the brownies, chocolate pudding, pizza and mayo based salads in large supply) And then finally - Coupons. They have coupons ALL the time. ALL the time. + +Special note - if you aren't that hungry - don't go here. Go somewhere else where you can split your meal or take 1/2 home. Here that 1/2 a plate of salad greens is going to cost you just as much as the guy on his 4th plate.",review,l53FUDHRHLg7BQ89KgAtxQ,0,0,0 +Ay840nDkj5qfHTAKSrb1Sw,2012-06-01,CyNsiOkW3PcB-JZAZ3SxUg,5,"If you want to go back to the future at the movie theater Silver Cinemas is the place for you- I felt like I was in the 1980- the decor LITTERALLY says it all.. I kid you not, I am as frugle as the come and you get & more than you pay for here -($3.00 everyday except for tuesdays $1.50) +have I mentioned the minnie arcade? Epic place to relive your childhood on date after drinks next door ...",review,-vRFUY8ixuNniCCNVvmkRQ,1,2,2 +rZbHg4ACfN3iShdsT47WKQ,2012-02-01,8vjB_5z6F0xnkiWNy_PiRw,5,"Until Bobby Q's entered my life i wasnt a fan of BBQ anything! made me kinda sad to see so many people enjoying some messy ribs but anyways I i digress...This place has changed my life for the better!. Their St. Louis ribs are fall off the bone AMAZING! and their Mac n Cheese is a must have! I have to admit this place has made me a bit of a ribs snob, if something doesnt come close to Bobby Q's i automatically right that place off. + +A short review but you get the gist of it...",review,JlMLNh0ECg0tgZKUL818DA,0,0,0 +eTbtfgUtfewdncgVf2CbWw,2007-03-22,wAL9qe2PCJORCcAoCL7Gvw,5,"WOW this place is good! SO good! And not just yummy good, but intrinsically good. Check out their amazing list of environmentally responsible business practices - http://essencebakery.com/essence_bakery_environmentally_friendly.shtml ! + +That, and it's cute. And it tastes Yummy! And they are SO nice! SOOO nice! And their deserts are just disgustingly cute and beautiful and freaking good. I almost bought the mini box of 4 cupcakes for just $3.50. Bite sized so not too bad, but if I bought them today they'd be gone before I got home. + +I got their grilled cheese w/ mozzarella, basil and tomato on grilled buttery brioche bread with a light and tasty green salad on the side. It will be hard to not come here every week. I love that all the drinks are refillable - and it's up to you to refill them. Coffee, tea or soda, just walk on up and fill your glass. And I love that it's all so fresh and local! + +Important note - You order at the counter, they give you a number and bring out your food. If you're paying w/ debit card, they will ask you if you want to include a tip. That threw me. I'd been in the place less than 2 minutes - how do I know if it's worth the tip - or how much of a tip it's worth?? Bring some cash or plan to deal w/ that question accordingly.",review,l53FUDHRHLg7BQ89KgAtxQ,5,5,0 +lktu5JPDlQUG-7cV7gOzDQ,2010-09-12,PBI_r3y_s2McZRLLhyPfWA,5,"What a cool little place tucked away behind a strip mall. Would never have found this if it was not suggested by a good friend who raved about the cappuccino! He is world traveler, so, it's a must try if it's the best cup he's ever had. He was right! Don't know if it's in the beans or the care that they take to make it with a fab froth decoration on top. My hubby and I loved the caramel brulee taste.. My son loved the hot ""warm"" cocoa. Yeah, we walked in as a family last night and almost everyone turned our way since we did not fit the hip college crowd. Everyone was really friendly, though. The sweet young man behind the counter gave my son some micro cinnamon doughnuts and scored major points with the little dude! We will be back.",review,c3yJNjz_K--z4CIpR7yhvQ,1,0,0 +rrWhi2TL0smrbihvavZxcg,2010-06-28,Mh4xsviaTXgcXXoFyhaPCQ,4,"This place is great! I've eaten here twice now and both times the food has been wonderful. I've driven by this place for years and it always looked closed to me. The windows are very dark. My husband's barber told him his customers (the barber's) drive all the way from Scottsdale to eat here. We decided to try it out after hearing this and reading good reviews about it on Yelp. The first time we went for dinner. I had the Osso Bucco and my husband had Seafood Paella. Both were great. I've had Osso Bucco in high end restaurants that couldn't compare to this. The second time we ate here for lunch. Husband had the Philly Cheesesteak with Peppers, Onions, and Mushrooms. I had the spaghetti and meatballs. I had some of his sandwich and we both agreed it was the best Cheesteak we've ever had. The sandwiches are loaded with fillings and are not salty. Spaghetti and Meatballs were good but I like Babbo's and Humble Pie's better. I would have given it five stars but the atmosphere is not the best. Our first waiter even told us they do have the reputation for being a hole in the wall. The service is very casual with no sense of urgency. On our second visit for lunch our waitress told us she had been there over five years and they have quite a few regulars. Both times we have visited the restaurant was almost full. Try this place out even though it is a ""hole in the wall.""",review,y0kjuHVdGQhLd-bqQ0gZnA,0,2,0 +1_43FZHx3P5D7X-CpIR9WA,2012-07-18,ibhV9mSDM-ACwsq6kINA5A,3,"Jersey Mike's is okay. It's a chain place, and a bit over priced for fast food. I ordered a philly cheese steak. It was mostly bread, with a few thing microscopic slices of meat. A little cheese too. And a sliver or two of peppers. But mostly, it was bread. I think it's funny the people that work here try to make small talk with you. ""So, what are you guys up to tonight?"" I think it would be fun to just try and f*#k with them, and say something like, ""Oh you know, smoking a little meth and just chilling with some hookers."" See what they say to that.",review,0mqHhdKEdak_A1FBhFNXqA,0,1,1 +LYyGQgL60VKdV-p_9OxmWQ,2011-08-07,3UvVKx-DAJNFPbWb1F4Whg,4,"I have been here a few times, but mainly at dinner. Dinner Has always been great, great waiters and staff, with a LCD TV playing almost famous famous bolywood movies. LOL It cracks me up when they dance.....LOL...anyhow, Great vegetarian choices for people who eat there veggies, but trust me, I am a MEAT eater, Chicekn Tika masala, Little dry but still good. My favorite is there Palak Paneer. Great for the vegetarian. I have also tried there lunch Buffet for 11.00. I give a Thumbs up.. Good, serve yourself, and pig out!!!!!!",review,Y_ZITL9cYCKgBgDCwUQrow,0,0,0 +4FS5otEktCyI1aDpg_h03g,2009-07-29,FjYsp-wwywN9jpwoNaP7pg,1,"I was here for a conference and saw their sign for a $10 lunch special which wasn't available that day. Took over an hour to just get a lunch salad. The waiter had major attitude. +Avoid this place!",review,WeFxOADIRIDgdgjg8PmQdw,0,0,0 +GpK9MeUjEd7rwhejG2ykww,2012-09-19,S3bWrlDaBAZqx2LJPW924A,4,"I have friends that I meet there once a month for a delicious greasy spoon breakfast and these guys never disappoint. I am a breakfast maven so love their hash browns most of all. If I'm feeling a little decadent, I order a side of gravy with them. It's really nice to sit outside during the cooler months and have some fries and a shake too!",review,_Lz4b5QL0K8ndeyz2vxslA,0,0,0 +Lnohr9bpCbHNsomazXDg-w,2009-03-31,WgK-pkPIU0PXceJt9pGDvg,5,Love it!!! Wish we still lived in Arizona as Chino is the one thing we miss. Every time I think about Chino Bandido my mouth starts watering. If I am ever in the state again I will drive out of my way just to go to it again. YUMMY!,review,qo7OFaG6cY3nHyzVHaRskw,0,0,0 +FyyNwrfVbCG3BsYEM5csQA,2009-03-22,L0d5zPb019LfKStL2d4hzw,5,"I lived off Salazar Bros my first year of college because I lived right near it. Must have eaten there twice a week minimum. I was heartbroken when it turned into Armando Bros because as much as people told me they just changed their name, they didn't. It was a different restaurant. + +I had written it off as another great place gone to the pages of history until I moved near 48th and Baseline, and 'lo and behold there was Salazar's, tucked away in the Fry's parking lot next to a Little Caesars and a clothing outlet that appears to have escaped from the mall. + +The interior itself is cheaply thrown together and completely forgettable. The only thing the employees seem to care about is making food. And none of this bothers me because they make some damn amazing food for cheap prices. + +I recommend the adobada burrito with extra sour cream and 2 things of red sauce. It's pork brushed with a delicious sauce of some sort. Comes with pico and guacamole. I sometimes have to convince myself to try something new off the menu. Brownie points for carrying Pepsi products as well, I take Mountain Dew with my burritos.",review,WRY-wk7t2u7xxrIwWbQu0w,1,2,0 +7eUFOcfxuXDdrHGVSp3_9A,2012-11-03,ODykrO2NWH-RIAttQP7Q6g,5,"I have now visited Herb n' Flavors several times. I love supporting local businesses who have sustainable practices. This place uses local farms for their produce, safe from GMO's and pesticides. So, I was already a fan before I walked in! Everything I have tried has been delicious, and the owner is such a cool guy- always so friendly to the customers. The food always tastes so fresh, and full of flavor! They have a little something for everyone. I am a gluten free vegan and my husband has no dietary restrictions. We always both leave happy. I definitely recommend this place. I would like to see their business continue to grow and stick around for a long time! :)",review,DKi8rNg_jTZpVYs5BVVnRw,0,0,0 +SS073W0tN3nvG36Qy6n0qg,2012-05-14,a_wQKZwhbCd0uBuV5o2BXg,4,One of my regular buffet stops. great service and average food.,review,HJLwvRnK22elM2vA4C4XtQ,0,1,1 +9jBTMRNxvYyyHAlCGVO91Q,2012-01-14,BXLjzyOkEsyTq0facHWjng,3,"We received a Netflix subscription from our daughter for Christmas along with a Roku box. We have the streaming stuff. The video and audio quality is very good (almost as good as a dvd). +However---many of the things we would like to see are on DVD only and that would DOUBLE the monthly cost of Netflix (UNACCEPTABLE). +Many of the streaming programs are FREE on Crackle and Hulu (not to be confused with HuluPlus which charges). +Overall, it is OK but I'm not sure that we will spend the $96/year when our gift subscription is over since a lot of this content is out there for free.",review,LX3cTVaS8f2UF0Uuafsfug,0,0,1 +5o5MLNPmAeakGgdqeGyMvw,2012-10-07,AUQLbK9vP-FyWveaFh7B4A,5,"Tried them out for Restaurant Week. The food and service was excellent. I will certainly be back and loved the atmosphere. We sat at a booth and very comfortably sat 3 adults. The wait staff was non stop on refilling drinks, bringing more bread, making sure the food was cooked to order.",review,45Cf2MLgLhwnXoLY_zY2EQ,0,0,0 +jPhmaY35qGP2qNc68viXPg,2007-07-11,Mp5GMmdgNr5UzlIBm2J_Aw,4,"Nice resort located next to the Desert Ridge shopping complex. If you're from out of town, this would be a great place to stay since you'll be across the street from a ton of restaurants and bars. + +I went to an event here, and haved stayed here a few times. JW Marriott has hosted a few wine tastings that I've gone to, and the resort is super nice, with a staff that is ready and waiting to help you no matter what it is you need. + +The rooms were decently sized and the bed was big and comfy. The bathroom was nice as well. The resort has a lot of fountains around and huge windows so you can check out the great views. + +The pool area is where it's at though. They have a great lazy river to nurse your hangover on, and a water slide for when you're feeling better. Of course you can get drink and food service out there and you can even rent a cabana- which I recommend. It's not that pricey- around $100, so if you get a few people to go in with you, it's no biggie smalls. The servers are way more attentive to you when you have a cabana and you can choose different packages that come with water and fruit or lunch and so on.",review,0CMz8YaO3f8xu4KqQgKb9Q,3,3,0 +Gq092IH6eZqhAXwtXcwc6A,2012-12-02,OXFYCSpUaaNJWoW1zk0wYw,4,Great brewery and open atmosphere! Had the Buffalo Chickens sandwich. It was great. Washed it down with a Sunspot Golden Ale which was awesome. Will return to sample the other beers. Making a reservation online worked like a champ.,review,MppkYbypgGl7h4pCWWM3rg,0,0,0 +RtApx92iFX4n-e1VlQlkmQ,2007-10-16,w_1eaDHCD8DGXUPD1RbP5A,2,"I'm going to break this down to explain my two stars. Here we go. + +THE GOOD: +* Great Sindhi biryani - the rice is flavorful, the chicken is tasty, all in all a great dish. +* Chicken boti tikka (boneless pieces of marinated chicken grilled in a clay oven) - also tasty, but have had better elsewhere +* Naan - Really good stuff. Crisp and soft in all the right places - exactly how it should be made. Better than 95% of other Indo-Pakistani places in the Valley. + +THE BAD: +* Chintzy interior which seemed like you just warped yourself straight back to the Punjab somewhere, complete with water-stained panels on the ceiling. 99.99% of the time, this doesn't faze me at all, but something was a little off and I don't know why. +* A surly ""aunty type"" who's standing behind the register and doesn't even want to greet you unless you're apparently related to her or go to school with her kids +* Said ""aunty type"" disappears into the kitchen for 5 minutes at a time, so you stand around and wait. And wait. +* Said ""aunty type"" expresses nonverbal displeasure when you ask her for anything. Case in point: Asking her for tamarind chutney. Even though you waited for your food for 30 minutes. +* Said ""aunty type"" brings back a tiny plastic cup of goopy, thick tamarind paste. Huh? +* Said ""aunty type"" doesn't say ""thank you"", smile, or anything when you go up to pay, even though you've been nothing but friendly and appreciative. So much for engaging a potential repeat customer. She could care less about your patronage. + +THE UGLY: +* Big screen TV tuned to some badly acted Indian soap opera about some ancient king of Sri Lanka who tries to get it on with his handmaidens while his brother schemes for the throne while twisting one end of his moustache, but then switched to another channel showing bad, unknown songs from 4th-tier mid-90's Bollywood movies. Although I am not kidding you...there was one video where a guy and a girl were doing their running around and singing thing....in the SWISS ALPS. And then, all of a sudden, in the middle of all that snow, a table appears full of Indian food and an umbrella advertising beer and pretzels. WTF? + +So, in the end, here's the equation: + +1 Pretty Good Food - 1 Dubious Dining Room - 1 Surly Aunty Type - 1 Singing/Shrieking Girl/Guy While Eating Curry On The Matterhorn Which Makes No Sense - 1 Overly Randy King of Ancient Sri Lanka Who No One Really Needs To See = 2 Stars. + +Bah.",review,htC49ZwXiKNka5cp0GKBfQ,5,5,7 +9Y3aQAVITkEJYe5vLZr13w,2012-10-18,XS5Lvk8WFNmS0bCqdl-agw,1,"My family and I ate here just a few days ago. It was an experience that left me yearning for more out of a restaurant I have seen so crowded over the years and decided to try with a group of 7 of us in the family. First off we got there at 10 am and were missing only two in our party so we had to wait to be seated which was fine. Once the rest of our party showed up at 10:07 we were not seated until after 10:30. When we were seated we were all scrunched together at a medium sized table that would comfortable seat 5 adults. Well, there were 7 of us total and needless to say it was very tight! The waitress stated that we could take our water and go wait back up front for a bigger table but we were looking at roughly 40 minutes of waiting again!!! Seriously? We ordered drinks first and the waitress brought my father his tomato juice and almost spilled it on him but instead spilled it all over her hand. Then she sat the glass down in front of him with juice on table and all over glass and left! She never came back with a wet towel to clean up her mess!! We all ordered and the food arrived quickly. This was the only part of the experience that was good, sadly to say. We received our food order for 7 of us within 15-20 minutes which was excellent. My uncle and grandmother both had charred toast (it was black, not just black around the edges) . The bacon looked like dried strips of hard leather. Overall, none of us will be returning to this place! It was is so overrated. We are headed back to RANDY'S here in Scottsdale to do our next family breakfast.",review,Hb49IsEZltm85wLz3uMrmw,0,0,0 +XTIIAZspxssIF7WenlXmrA,2011-09-11,OG6fluz_DxfnMYcfnmmqrA,3,"Spa whore, I am! I work in the industry, live in the industry and have breathed the industry for the last 5 years so I know spas. After a few stressful weeks of work, school and planning a wedding I suddenly remembered I am a better version of myself when I take adult time outs. My ""corner"", so to speak, was at Joya spa. I just so happen to remember a TravelZoo purchase I made a few months ago for a massage or facial at Joya Spa at the Montelucia Resort in Phoenix. +Boy, was I excited! I called, booked an appointment with a male therapist and started to prepare myself for my next great spa adventure. +After anxiously awaiting Sunday to roll around, I finally found myself walking into a Moroccan paradise. The space was entrancing from the moment I walked in. It smelled like a spa and helped to set the mood for my day of relaxation. I was given a full tour of the facilities and allowed to set my intentions with small crystals in a round room, and then brought into a room with a GIANT crystal used to help calm, bring intention and awareness of your visit and to yourself. The woman giving me the tour was very professional and thorough. Though informative, I was waiting for a warm connection from her, and never received it. +After being led to the locker room, I changed into my bathing suit and waited in the woman's lounge for my provider to find me and take me back for my massage experience. +I chose a male provider. Knowing I had tension, knots and stress I was hoping for a firm, slow, relaxing massage. I have had MANY massages and this one was actually a little disappointing. My therapist picked me 7 minutes late and ended 5 minutes early. The strokes consisted of a lot of rocking and fast movements. Not really the relaxing experience I was craving. My massage therapist was very sweet and genuine in his approach, I was just hoping for something more. +I definitely didn't let my treatment ruin my experience! The facilities were amazing! They were clean and always stocked with towels. I have to say the spa attendants ROCKED!!!!! I could not believe how efficient they were. I observed on 5 occasions (YES 5) every time a shower was vacant an attendant was there to clean it up, any time a towel was on the floor, it got picked up immediately. They worked together like a well oiled machine! And I would love to give them props for making me take notice to the work the do! +I plan on returning! I may not receive a massage because of my experience, but I truly enjoyed the facilities and the staff. I'm even thinking of booking a suite for my bridal party to enjoy the day there. In the end, if you know massage the way I do, please beware, you may not get all the bang for your buck in your treatment.",review,T2YhY--VPurB8rPJ-Q5giw,2,3,2 +55seKyxRWUmHC1s52xk45g,2012-12-23,CZeb1ZY4vRZFHH-ghe8-hg,4,"Kinda of a rough and tumble crowd at times with the OTB booth in the back corner of the bar. Place is usually crowded after work with the blue collar drinking types and unless your a regular you will probably get ignored like I did on a previous visit. In this case, finally tried the food and it was surprisingly good. The waitress said that the buffalo wrap was good, so I went with grilled chicken tossed in mild wing sauce and that went into my wrap with the usual cheese, lettuce, some blue cheese and maybe a touch of bacon? THe wrap was huge and the chicken and blue cheese melded perfectly together. On the side dish selection wheel, I went with sweet potato fries - this was a decent version of that variety, but the raspberry sauce? served as a dipping option was a fail. Great service on a saturday afternoon and reasonable prices ($8.99) for a filling lunch.",review,DrWLhrK8WMZf7Jb-Oqc7ww,0,0,0 +bcBMAa0UQpNLFvvdZ4dxtQ,2008-10-15,VO1mJpGWPKRdGnJuwYJcXw,5,"It does not get much better than this, fellas. + +BS West is hands down the best gay bar in Phoenix. + +Friendly bartenders, cheap drinks, good-looking crowd, great music..it's definitely got it all. + +Best night to check out is the obvious 2-4-1 Wednesday. + +Thursdays and Sundays can also be fun if you're into karaoke. Saturdays are a nice alternative if you don't really dig Forbidden or Amsterdam, it's a different crowd. + +It definitely has a ""Cheers"" feeling to it... not pretentious whatsoever. Great patios too, especially the back one with the new video screen they installed. + +Oh, and their Halloween bash is THE party to be at. 3,000 people attended in 2007.",review,YavFbDG7DUOTXJBLxpq97A,3,3,3 +MPsCdY0Bwv2G0JXtwvE_hw,2011-02-22,FBw_MLyO9eduoDfs-IbbMQ,1,"I was severely mislead by Frank A's, ""It's hot, but the food ain't bad."" review. It was very cold and by far the worst food I've ever eaten. You would have to drag me here in cuffs to get me to return.",review,lhf22sqBafQv6CXu2fCmvg,3,5,20 +VY_tvNUCCXGXQeSvJl757Q,2012-01-30,7kB6kuvSXiPTcuT_RqmnvQ,5,I really like this place alot. their pizza's are really different but really good! I wish i could say i had a favorite but ive liked every pizza ive gotten except the portabello mushrooms cause i dont like mushrooms but other than that they have an amazing beer selection! Major thumbs up!!,review,wb1kSEFZzyy5_UAbYJrEYg,0,0,0 +uL_kqSm8ZqJ_3U88uwA8tw,2012-07-15,O9hcvwafKVdGbezJ8UjwiQ,5,"Sportsman's is on top of the game when it comes to wine! The staff is more knowledgeable and helpful than any other place that I have bought wine at before. I didn't feel like I was being judged for trying to find a cheaper bottle and there was no pretentiousness in the air. While I was inquiring about dry resling, one of the vino gurus offered to get me a taste of one from their bar - and came back with TWO samples for me to try! + +Sportsman's also has a very intriguing liquor section - I enjoy wandering around and looking at all the fabulous bottles I have never seen nor heard of. + +Several times a month, they offer complimentary wine tastings and special discounts on most of the bottles being sampled. They also have a full service restaurant/bar off to the side where they have a huge ""by the glass"" list - you are also welcome to pick out any bottle from their store, they cork it free of charge, and you can enjoy your retail priced bottle with dinner! + +The portabello sliders that I had for dinner were amazing and I am still having dreams about them! + +My one complaint is petty: their website. Its overrun with text and finding important information is difficult, it also needs to be better updated with their amazing tasting events!",review,B4K5ruafil9RSDiTIL-1Bw,1,1,1 +P5uC-zfGG6yqoQDUyqyAvg,2008-02-01,PQJk0XP4KzKj-_Hhq4mfew,4,"I love the food!! Love for the environment.. eh.. not so much. + +Mom and I missed our reservation at Cowboy Ciao's on a Friday night and a worker recommended us to visit the sister restaurant ""Kazimierz."" Ok, we'll go as long as they have the famous Stetson Chopped salad. My mom loved the salad when she went to Cowboy Ciao. + +So we enter the restaurant and the place is so dark. How the heck are you suppose to find a table and read the menu?? We had no idea how the seating worked, so we asked a worker. We were seating within a couple of minutes. Mann.. we had to hold up the candle to read the menu. The environment is nice if you are just spending time with your friends and chatting. But to eat and see your food?? The darkness is not good for that. + +Anyway, we had the Stetson Chopped salad ($12). It was sooo good with the smoked salmon, dehydrated corn, pepita mixture, and the greens. Yummy! + +The Burgundian Flatbread ($13) was also delicious! I liked the crispy crust and the chunks of brie!! Wow!! The morels and the shallots gave the flatbread some sweetness. + +Since I liked the food, I'll give this place 4 stars. However, I wish I could see what I was eating. Thank goodness I took a picture of what I was ingesting. + +The service and atmosphere is more like 3 stars.",review,mU5GwCA4uiD0-RH1qt3jrQ,1,1,0 +V1nEpIRmEa1768oj_tuxeQ,2008-11-23,zXODym69r8pyX7KOlOoXPQ,5,"Alright, went back last night, felt bad because we were the late nighters, and everything was perfect. The pizza, the salads and the wine were all so well done. And what finally brought me to five stars was the crepe with Nuteila and Mascarpone. OMG amazing. I'm currently craving it the day after. Totally beats out the crepe with nutella and banana that I also love...",review,OqisxqKDGaZwEvLm1OG4dg,1,0,0 +z2YTaHtGod3i3BBbKiMNwQ,2010-09-17,ZHcIgajjP0VVyefvw777XQ,5,I love supporting local coffee houses and this one is my favorite. They are always super friendly even if I sit in there for hours studying and only order one drink. I LOVE their sugar free avalanches!,review,VyzwBKnq-LJ8OjvG0ZTwrg,0,0,0 +tdcjXyFLMKAsvRhURNOkCg,2010-10-11,8NWN06HnbPbi9VamIjzsWQ,4,"I have been coming to this bar for over 4-years now - and I will continue to do so... Just be aware that this is no longer ""J Chew & Company"". + +Originally, when it was called ""J Chew"" I fell in love with the place - it had a cool underground loungy charm. It was the best place to meet new and interesting folks. Now it is known as ""Old Town Tavern"" and has more of a generic sports pub theme that is dominated by TVs. The crowd is slightly older and the bartenders aren't as wild/fun... Not a great place to take a date any more. + +On the upside: The place is much cleaner now, has live music almost every night, and Tuesday movie-night has some serious potential. Check it out for yourself.",review,90a6z--_CUrl84aCzZyPsg,1,3,2 +oFW8Fjszgsmy39a5hUnoBQ,2011-07-11,-X_L_zWFmoalzGsF6Lq3Xw,5,This is one of best libraries I have ever been to. I live very close by and it is very easy to stop by to pick something up or drop something off. This is always a must visit before road trips to California to pick up books for the adults and kids as well as DVD 's for the road trip. We visit this location at least once a week and the kids love it.,review,eX_vXeJMKDp1oMZZ4FlI9A,0,1,0 +ZztUsJyGDwPySepmXRG13g,2009-12-28,yhjDv66GmCwH5s3qIYaAnw,4,"I didn't eat here, so I guess I can't give a full review. But I did have a beer, and I did take the Orbit to downtown Tempe, and I walked over here and had a yummy pint for 2 bucks on Sunday evening. +The more places that I can drink then take a bus home, the better.",review,q0KigjVBtb6dfRjX3QJbsQ,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2010-01-11,GFEr11tEyu07dlXlfUbfAA,5,Loved the burgers and the onion rings were fabulous! This place is a must visi if you are in the Phoenix area anytime soon!,review,jvvzoDYVq3BD_Dy7eMRdhA,0,0,0 +81a6sTDzNzsRsoUETeoBRA,2009-06-09,BuOszvE0-Edv9xbFtmXt8A,2,"Yelp has failed me...I went here based on the reviews I found on here, only to find a restaurant that has fallen off from what it used to be. + +I guess this use to be a chef driven restaurant, he created a name for the place. But whatever it is now it has definitely fallen off and definitely not good. + +The space is nice enough, I really did not enjoy sitting at the bar and have to look at there dirty kitchen the whole time...But the place does offer a pleasant enough atmosphere. + +The food on the other hand was bad. I had the tasting of the appetizers in which everything was overcooked (mushy eggplant) or overcooked and Burnt (anything that had bread like potential) I kinda of wanted to leave after this but I had ordered my Salmon entree from the start... + +And now on to the entree which consisted of overcooked salmon, burnt spices on the top, and RAW skin underneath, did not make any since to me. it came with a brick of polenta edible only by the pool of sauce on the plate. + +The menu and idea of this restaurant is great, sharp contrasts and bold flavor, but the technique and care is definitely lack here, or maybe they just had a shitty cook that day, I don't know, I just know that I will never make my way back there.",review,DeYRUi2YEFYZLZ1ukOGd6w,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2009-10-19,wfuMClw9Pqv618WdIIO_Ng,2,"What the crap folks? So much ""blah blah blah"" ""this place is so great"" spewing from Yelpers and the media that I felt like I was missing out. I finally went to this damn place and I guess I am missing the point because this was a joke. + +Their menu has all of about 5 things on it. Most of them seem reasonably priced until you see their size. I ordered the Vampiro because it sounded good, had guac, carne asada, and was portrayed as a quesadilla type meal. Ya, this thing was like the size of a Kennedy half dollar - and half as filling! What the hell? $4 for this? I can't even taste the guac!! + +If I want cheap good mexican food, I guess I'll stick with 'Bertos because this place is a disaster. At least at 'Bertos I can get more than 5 items and the burritos are Soviet-car-sized.",review,fev0iI-XDrteD4SYRKjiUw,4,4,5 +1dC3GSC5bgQf9wEp-bv8PQ,2012-05-30,IpQ8TU73HFFKpQib62zdBQ,4,"Fabulous place. The food is good and the selection of organic and specialty items is nice. Love the butcher shop and Jerry the Cellarmaster is abslutely fantastic. Seriously, if you want a bottle of wine - he is the best resource. And if you go back frequently he tailors his suggestions to what you like. My favorite thing about this store is that the staff tries so hard to treat you like a valuable customer. They remember your name, ask after your kids and honestly act like they like you. It feels like a small town grocery store and I love that. Breakfast is fantastic and the coffee is great. Everyone at the coffee counter is terrific. This was a really great addition to the neighborhood.",review,pq4HdRAn2MFArQCFYXkYkA,0,0,0 +FKlr2XmPA7G5MlMFpka1OQ,2010-10-16,wHEBxpIC34f6NiZc578vfg,3,"I don't like mega-chain pizza. I don't like Domino's. I don't care for Papa John's. I've never had Hungry Howie's because frankly on their flyers it looks horrifying. And I will never ever eat Little Caesar's again in my life . . . but I gotta admit, Pizza Hut makes a decent thin crust pizza + +There were a few great locally owned pizza joints where I used to live in Tempe. Tessio's and Boulders On Broadway stand out, but ya know what? Sometimes you don't want to pay $20 $25 bucks for an extra large 3 topping pizza. Sometimes you just want something decent for only $10 $12 bucks. Sometimes you really DO want a decent cheap pizza delivered to your door in 30 minutes or less + +The three years I lived nearby, I probably ordered Pizza Hut delivery or takeout once every couple of months, and I've never had anything to complain about at this location on Broadway + +PS - the boneless spicy bbq wings are dangerously addictive",review,VcN9i7sPrGSOn4BnpOJ9tQ,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2012-09-01,0HsyKC9qSC07FPpQ2xOOsA,4,"Cibo! Eating outside is a major part of the experience even on a hot summer night in Phoenix! Worth the dampness from head to toe. The BONUS is sitting under the African tree with the lights and grapes with the FULL moon shining on us ~ + +Our red haired waiter sporting 1950's style glasses was fun, fun, fun and pleasingly attentive. We had white wine; superb choice thanks to the 4 different wine tastes I received while choosing it. + +The strawberry/walnut salad was a bit dry, yet the feta was marvelous! Great soft texture to melt in your mouth. + +The pizza was the sausage and it was wood fired, nice and perfect. Just enough food for the 3 of us ~ + +So much food, just the right amount for our bellies. For the 3 of us, the bill was only $43.00. Not too bad on a Saturday night to go in 1/3's. + +~ Luana Joya Lucia",review,eZQ2b5dJDlIji9AtfdOE0g,0,1,0 +6YWp7frmHKuPLYSlPyUdsw,2008-04-05,fpKQ1DiOwNi__vzKv5FvAw,1,"Would have to agree with Rana A below... I think she said it best + +Actually, I had several folks tell me this place was lousy before I went... it even fell below my already low expectations... + +Given that I just left the real Barcelona (in Spain)- part of me was truly crying inside that night. OK, I gotta admit- everytime I tell someone I was just in Barcelona (the city) and they say ""you mean the one in Scottsdale"" there is a part of me that wants to just pack my bags and fly back...",review,uzEls2fkJZPUH050rON2pw,1,1,1 +OjNTZTZ6HYQghJN-3jmwnA,2010-05-11,Y4rFTE6JoCgnPa14ROTo4A,1,"when i worked in retail my paycheck was spent before i got paid. therefore, i relied heavily on coupons and splitting meals w all of my other poor college friends. + +well, i hit the jackpot. $15 coupon for a FEAST. the picture on the coupon showed everything we would get: a huge steak, shrimp, and lobster PLUS 2 sides. there were 3 of us- this was PLENTY. + +it was prom night too so we were initally fooled with how popular it was. popular for prom girls with light up clear shoes (not even lying), if that says anything about the crowd for you... + +our waitress stops by our booth and just stares at us. one of my friend kinda looks around at me and our other friend, then back at the waitress. 'ill have a diet coke?' + +then our waitress writes it down and doesn't say anything but looks at my other friend. + +i lost it and started laughing. why isn't she talking to us? this is so weird. + +we ended up asking for a different waitress, then found out the coupon was a big fat liar. you didn't get all of that. it just says you do but you don't. the food ended up being nasty. probably one of the worst meals ive ever had. + +as we're leaving susy talks a lot waitress trips over my friend and it was all too awkward bc i couldn't control laughing. + +awful food, awful service, AND the bathrooms were some of the grossest i had ever been in. + +if wal-mart ran a restaurant, this would be it.",review,hFtlFksrcLaWHGPNa6SmeA,7,9,9 +x_2kKQYLSRsa2OgPmGgWCw,2008-04-26,b9kdLLhQR8QulzYYMVb5Iw,4,"4.5 stars + +Ok....I just had the most amazing facial there today....I never experienced anything like it. And my pedicure rocked also. + +I don't think I picked a better day to have a little relaxation. I rode almost 24 miles today (I swear it was all uphill) and I had the worst pain in my legs. (Yes, I did stretch) + +My pedicure was great...Shannon does a wonderful job....though now I have straight line syndrome with french man/pedicures. Since I hate it that they have to use latex gloves, I couldn't tell at all that she was wearing them when i was getting my massage. AND! She actually made my feet completely soft and dry skin free. That alone is a miracle. + +Then I had my amazing facial. Where do you get a facial that they put your hands in parrafin wax, massage your legs (I did complain about my pain....) and give the most relaxing neck, shoulder, and head massage ever????? Laura is amazing...and she does a great job with waxing also. + +I found out today that you don't have to be a member of Lifetime Fitness to go there...and I did hear another rumor that rocks...but I don't know if I should say it here....",review,ca2Sa9Enqg2GlWFQ95p8bw,1,2,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2009-03-24,YquYQb3MtCNXt6SEtiFstQ,4,"The Vig is a great place to meet up for a drink. I haven't found too many other places that serve Hoegaarden (my favorite beer). The atmosphere is one of the best I've seen in Phoenix, and the food is pretty good as well. I'd recommend the ""Big Azz Burger"" or the ""Hot Vings""!",review,oERfYLY8vainWu5m1ZQS2w,1,2,0 +SDwYQ6eSu1htn8vHWv128g,2010-03-29,vc3xoZsQVGmK3GcNy_UyBw,4,"absolutely love this place. It is a fru-fru hang out joint that isn't pretentious. + +The cucumber lemonade has become my favorite non-alcoholic drink and their bruschetta is always the best!",review,0wNFzxEof0RDrWPLjDlwZg,0,1,0 +9mfec4ySQpW8doGs3FUP2Q,2008-02-24,9PxJFuuR8sy0keT4quZryw,5,"Our company held our fourth annual user conference here, and compared to our previous venues, this one was a smash hit in terms of facilities. It compares particularly favorably with the doudy, sour old St. Francis in San Francisco, a venue I hope we never book again. + +The standout quality of this place is the hustle and quality of the service. Our opening night reception included an array of food service stations with different themes, including a noodle bar that was particuarly well done. The food was all delicious but what really distinguished this event was the personable, attentive, extra-mile oriented staff. They were reading the nametags of our 200 guests and calling people by name whenever possible and chatting us up in line to make sure we were all happy. + +The event coordinators were all over the venue throughout the ensuing two days. Where at the St. Francis we struggled with temperature and electrical problems and grumpy, uncooperative, disinterested staff, here at the Fairmont, the very few glitches drew aggressive responses by people who cared about our event.",review,r5uiIxwJ-I-oHBkNY2Ha3Q,7,7,2 +SGwnJIFKGQcYzE2c3ebs8A,2012-01-13,IXh7sAr5xSqiuf1xhCPmWQ,5,"Nooooooooo! Curse the the gods of all that is delicious, for Huauchinango is now CLOSED. Replaced by some generic grill that offered us some nachos and quesadillas, thanks for that. So not only did you replace a great eatery, but you also had to throw in a little bit of extra salt in the wound. So, I don't think I'll be giving my business to the devil grill anytime soon. Huauchinango, you shall now only be a distant whiff of habanero al pastor memory. You shall be missed.",review,kgfAnunPn0sI3Ycp8EypyQ,0,4,0 +SoMmHSD_g9xQv68GV22RZw,2012-04-11,YODp9vMDJXhquJjkltv-RA,2,"It's so promising. Great specials. Awesome space. TV's everywhere. Full bar. Good food. Great place to grab some beers before and after a spring training game. + +But service sucks. I don't understand why I have to be carded at the door, carded at the table, then carded at the bar. There were 3 groups in the entire place, and we still got slow and crappy service. + +I wish I had better things to say. But really.... the experience completely sours the good things about this place.",review,yA77gvXdxFViK0mZcSiveA,0,2,0 +IBNHRj-NLfA-FlKnWxZDQg,2012-01-16,VsTJH9GEn_0NW7wFDlLWcA,4,"Jimmy Johns has got to be my guilty pleasure. Love the Beach Club and the salt and vinegar chips. This location is fairly new and it does the JJ chain well. Although they do keep the music louder than I'd like. Great place, great sandwiches.",review,rgrECAY_EZ_xFdSx6CGfvQ,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-07-03,LAaZfL4zmsz495H-vME-oQ,4,"I have been to St. Francis twice - once for brunch and once for dinner. The brunch deserves 5 stars, we had great service and great food. Their bread was AMAZING! We had great service for dinner, but the food wasn't up to what I was expecting. Things were a little bland and the sauces on all the dishes was a little heavy. However, overall I would definitely recommend them.",review,7k5mTaDV609kLd8QFqYznw,1,2,0 +GoWTsb8sGyJ026a3cbw03Q,2012-06-12,sTpGOOb9MBaiWov8LP_Rsw,4,"Always here for their California burritos... The burritos are huge and can be easily shared by two people. Their jalapeno and carrots are somethin I havent seen at other similar places, id recommend it if you,re lookin for some heat! The drive thru service is fast and friendly. I have seen they did remodel the inside seating and does not look as,roughed up as before... There is a drawback when using your card to pay- 50¢ addtl charge, which shud b done away with.",review,LiNbZqDdHLqueYz4nORWzg,0,0,0 +E7nk0lC317pGxMX56gvaVQ,2009-10-19,ePM1HUrdIvP3FBlmJi5RCw,3,"I like Bungalow because its a great starting point for a night in Old Town Scottsdale. Centrally located, any other watering hole is in short walking distance, keeping the options open. + +Making this bar/grill the main location for your night out might pose some problems: +-the drink prices are mediocre at best, so don't expect to be frugal. +-the staff aren't anything special. +-I didn't even know they served food, so it can't be better than average. +-unless you can drop a pretty penny (and look the part) don't expect any good conversation. + +I can appreciate what this establishment is good for though. Bungalow offers a nice atmosphere to sit and converse with friends (not many locations in Old Town offer the ability to hear normal conversation)...",review,LMqKXdbwYdCqCCF64QbVkA,2,2,2 +UKgSs_SJzW9fu4CwhIV1yA,2008-12-01,mWMv72kX_nldxmvUlS1yyQ,5,"This is my favorite hotel of all time, so far, at least of the Kimpton ilk. I experienced nearly impeccable service and a super comfy bed, organic and local products, a lovely shower, and general happy relaxation. I love that the gym and pools are open 24 hours a day. The decor, half Asian deco and half Southwestern, works works works.",review,zw-bIcZP4_VEi3UetomDeg,3,3,1 +5ambRqdTJt9vGwFzVI9HBw,2010-10-29,b4A-bc2Eo5CCymeiyutfkg,5,"Hands down my favorite coffee shop in town. They used to be located inside the Conspire art collective but have now moved into the old Hood Rides digs up the block and it's awesome. + +Plenty of seating room at the bar and also a really cool little room next door where you can pull up a seat and hang out. From what I understand there will be seating outside too. + +Most importantly however is the coffee. They use a special mix roasted specially by Cartel. I'll be the first to admit I'm no coffee connoisseur but I do know this, every drink I've had, no matter who's behind the bar has been perfect. Not burnt, not too sweet, and not a hint of pretentiousness. + +Sooooo, why go to S-word Bucks when you can get a better cup of coffee up the street. Oh and for those of us who burn the midnight oil on more than a few occasions, they're open until 12am EVERY night.",review,_ei7Bs7tciprz4im-_0kxg,0,1,0 +rFgSvsgo0BWnS03NFgI7Sg,2011-09-17,8JXFycbpW30ixl6VOeU6jQ,2,"Horrendously overpriced. ~$13 for an xlarge 2 topping that I had to bake myself? The pizza itself was better than average, but if you don't bake on location then at least make it cheaper than going to pizza hut and having it delivered to my door, ready to eat. + +I'm glad I had the experience, but I don't see where the benefit to this is, at all. It isn't more cost-effective than going to the grocery for frozen pizza, and it isn't that much better than frozen. + +On the plus side, the gal at the counter that made my pizzas was very nice, but it's a shame I don't see this kind of business surviving. I probably won't return, I am pretty disappointed.",review,yJ22u_1l01H4NM3wCowIKw,0,2,0 +rDvz5jX65gpfONFu7er9Tw,2011-05-14,eW5_e24iBTsvlKNbBQR6mA,5,"Tacos, tacos, tacos......how can something so simple be this great? Having seen this place being featured on DDD we had to try it out and it was worth every penny! I have a thing for always trying the ""odd"" menu items so I've tried the tongue tacos and cabeza (head/cheek) burrito and to me there is nothing better on the menu! This place is rather small which makes it perfect if you're there with some friends or a special someone! My friend loves the shrimp ceviche though I havent tried it myself. Go to this place for some great authentic, local and quite tasty food.......probably some of the best the east alley has to offer!",review,qXxwTfCGF9tAvXOrY-hWlQ,0,0,0 +K4Oo7A5Kp5eSgBV7MgOu8Q,2009-08-12,sl2r-tZMBsHjmTIV1NRltw,4,My buddy and I (along with our dogs) stop by here every morning on the way to dog park. Hot coffee and hot women making the coffee! Love this place!,review,bFVetbys5Z74h1fcihmvOw,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-06-20,gXebSdATb35QRiCjB9VXJA,5,"This past weekend I went to The Vig Uptown twice because it was that good. This is a perfect place to hangout with friends and get a bite to eat with a really great drink menu. What I love most about this place is that it is very modern and the people are pretty chill. The cherry on top is the games they have to offer, Bocce and Bags! + +Drinks +1. Moscow Mule is a perfect nice refreshing drink to order, made with Vodka/Ginger beer and fresh lime juice. +2. If you bring in your own ""pimp cup"" any size, They will fill it up with the mixed drink called Pimms Cup. + +Food +1. VigAzz burger is my favorite food item to order because the pretzel bread is amazing. +2. Thai spicy Vings here are probably one of my favorite wings that i've ever had so I highly recommend getting them.",review,R8Vm1249P4E-aZCuiEj7eQ,1,1,1 +9U7_UWXXJZOW14L0kAdCNA,2009-10-12,6ufiyRAvzqLlgIA2a0SHPQ,2,"No cover and outdoor misters. Decent crowd, overpriced drinks, teeny dance floor, good selection of d'bags to giggle at. It's A.) a club, B.) in a chain hotel, C.) in Scottsdale, fer chrissakes. What more could you ask for? My only hangup was how dark they keep it in there. People in Scottsdale are generally good looking, so a little more lighting in there isn't going to hurt business one bit. +Overall... this place doesn't feature anything that really stands out.",review,Xm8HXE1JHqscXe5BKf0GFQ,4,4,2 +h_764eIV-D3n7qjyBmluug,2009-08-04,hCJV0MLEG9ggjvFWV2_iNw,5,"Hands-down my favorite pizza place in the East Valley. I have been going to Sourdough pizza for close to 15 years, and it is consistently delicious. I grew up in Mesa, now live in Phoenix, but I make it a point to visit Sourdough Pizza when I am in the Mesa area. The decor definitely leaves something to be desired, as they are in a stucco strip mall, and their interior probably has not been updated all that much in the 15 years I've been there. But I could care less when the food and prices are this good.",review,gcuwbVN0LCBrOsp7VCTAvQ,0,0,0 +JJDaF4yFPLgQ3u678qyL2w,2010-07-25,glakpKBOBREYLBp7LbkbDA,1,"HELLISH HELLISH SUMMER WEATHER (March thru October) +it hurts my lungs to breath. + +I couldn't get transcripts because I had a parking ticket I needed to pay. +The problem is... *i DON'T OWN A CAR, I don't drive, I don't even have a drivers license*!! +~*~*-- aside from that one minor incident,~*~* + +I paid 9000 USD a semester to receive a so and so education. +I graduated with a magna cum laude. I have attended other universities. However, I couldn't help but notice the gap in the quality and variety of classes offered. + +For example, you have to be a finance major to take upper level interesting finance classes. + +Business school was so and so, a lot of repetition. +Very little hands-on and help with internships. +Way too much groupwork and free-riding. +They do not have many good employers at their semi annual recruiting events. + +Oh, and professors rarely teach the courses. +They have their teaching assistants teach us. + +Also, there is a lack of bridging classes between lower level and upper level classes. + Junior year when you get admitted into the ""professional program"" the level of the classes and transition isn't too smooth. + +The campus tutoring program is pretty helpful for general classes if you're having trouble with classes (usually lower level) + +There are not enough chairs/desks in some classes. +The students sit on the floor and cram on the stairs in the lecture halls. + +Also, the classes don't teach you how to think critically, which I think is crucial in college. +Please don't waste your money, especially those of you from out of state. Its not worth it. + +Expect to wait in line wherever you go. +ASU accepts way too many people. +It would prolly accept my cat and my baby sister who barely talks if we threw money at them. + +Thus its very difficult to get myself into the classes I need. +The advisors are walking advertisements of the business school. +They are not informed enough to advise you. + +I got dropped from two required prerequisite courses so I could not move on to the next level.... even after pre-registration. +I got screwed and ended up having to take one more semester to graduate. + +Tuition rose from 6000 a semester in Fall of 2003 to 9000 + in Fall of 2007. +Gross!! + +One thing I liked was the student theatre performances. The admission $ was reasonable and quite entertaining. + +The College of Architecture and Environmental design studios are pretty good and has good security. + +ASU is not the most safe neighborhood. +I have been approached by many shady people. + +do NOT live on campus. Especially the dorms on north campus. +They are beyond crappy and overpriced. +You have to split your room with a room mate in most cases for undergrads. +The ""freshman year experience"" bullsh*t they pull on you, don't buy it. +and Please PLEASE please don't move into Manzy Hall (Manzanita; 15 stores with triangular windows). + +I lived here my froshy year and its the dirtiest (rats), unhealthy (mold, pot circulation), most promiscuous place on campus. + +Again, please don't bother wasting your money, especially if your an out of state or international student. +Hope this helps.",review,I-P1v7sRjDLEfVOndp01kA,3,6,6 +WaPRb2Iq2pkwJfOdr9uvhA,2012-09-25,vRSPyfJkfF-0BXMWeLgdbg,1,"Tried to get ahold of this dude to no avail. No personal message on his answering machine at all. Website sucks for information to let me know what sorta work or quality thereof he does. +I tried to call here @ 6:53pm tonight and again...no one picks up the phone. So fed up with flaky contractors. Do they want work or not?",review,qg9Jn8GeqQ8EuxNUFDshCg,0,0,0 +2R_VekjT6HSZpGL9KYzcuw,2010-02-25,3lDBMS0-Lq7ZBtGQ4txZ2Q,5,"I'm not a fan of ice cream, I just don't find it appealing and it's too high in calories/saturated fat. However I do love frozen yogurt, and ironically it's much less fattening, yet more satisfying. At 25 calories an ounce, Golden Spoon's is the best around. There have a large array of flavors to choose from and they rotate flavors each month, they also have seasonal flavors such as pumpkin pie and egg nog. You also can get more than one flavor combined. They also have a wide variety of toppings to choose from, from gummy bears to low-fat brownies. + +Even though their yogurt is non-fat and low calorie, adding toppings can quickly add a lot more calories, I suggest going with chocolate or rainbow sprinkles (adds less than 50 calories), or if you like fruit, go with that.",review,MrQCy8eJD1x51U87J5C6ZQ,0,0,0 +k8Y7aXXA8BFcn5CillHFYw,2010-06-16,raaH2O1gL1H712CjHv_lwQ,3,"Not the newest or the nicest but, everything you need and usually no wait for machines. The staff is super nice and there are magazines to read while your there. If they could just turn up the AC a little bit and put ESPN on more than two of the TVs.",review,AVCBC2G5RjJM8tu_PebFPw,0,1,0 +lXUaypwLG_rIU4qnpBmF-A,2010-11-14,4yMDvhgb2lvy1hz6MMVRQw,4,"I love this gym, I do wish it were closer to a freeway or either more north or more west for me. I agree with Will M. that it would be great at Norterra and lets face it, there are empty spots there just waiting for a great gym. I love the attitude at this gym and the metro location as well. There is always someone onsite caring for the equipment and keeping the place clean and tidy. I dont remember that care when i was at LA Fitness. The equipment is color coded to the muscle they work and that is awesome! I like the staff and the people that go here and have made many friends. They also have this new finger print system so you don't need a gym card with you to go, you just enter your phone number and scan your finger (very cool). Sorry if you are a twin and like to cheat though.... Also be sure you check out Costco before you join to see if they still have the special of a 2 year membership for $299.00 (that's about $12/month) It's a smoking deal and is good for all gym locations across the nation.",review,EP3cGJvYiuOwumerwADplg,1,0,0 +ObYf1kZVWfL8NocxUwGJKg,2011-08-11,Z4NoiD7HK5QQs9e6E0lrqg,5,"Phenom. +The food is always fresh and well seasoned. A good selection of Tequila. +Every meal that I've had has been just fantastic. The carnitas and the fish taco's are very well prepared. It's fresh, the beans are fresh as is the rice. +It averages about $10 a plate but worth it. This is how really good Mexican should be. +The salsa bar is excellent: you have about 5 different types of salsa from which to choose. All freshly made. +I can't say enough about the flavoring of the meats and fish. +Decor is a somewhat minimalist/modern, probably to attract a happy hour crowd. They have TV's for your viewing pleasure. +Service is friendly and quick. +I've only been to the Chandler location but will start going to the one in Scottsdale. +Good food. You won't be disappointed.",review,nyHh14Vb9S269-kGKaUelg,1,1,0 +V6BYjHM9SnXscfkln3hCdA,2011-12-20,GG5E14t_w0Kqudxdpz59qg,4,"A definite four stars, the focus on fresh food and a great breakfast has build a strong following at this destination location in Scottsdale Civic Center. now that i think about it how can i not give this place a 5 stars theirs way to much creativity and freshnewssness in the fruit, veg and the nectar of the gods, Coffee, all packed into one nice bright orange place. + +Old Town has a few breakfast spots but this is one you have to find. can i say I hope to see this as a Scottsdale yelp ""hidden gem."" + +As for my last meal I had the prosciutto melt and it went past expectations, the fresh basil really added the extra taste. + +Service was ok, a typical cafe style, the restaurant does not seek to be over pertinacious, the look is clean and the cafe is a really nice touch with options to order and go. + +So many Little restaurants like this keeps me looking for the next one. Don't forget for later in the night AZ 88 is just down a few steps. + +Happy breakfast, +Kevin +PS there seems to be some kind of yelp trend, does a hand full of yelps make a difference in a restaurant, does that have a yelp definition when this happens.",review,0qIsBt4EzBDCKrIviV55Ew,3,3,1 +GIGI8bJfN6HyPzmEW-QqjA,2011-01-12,-nQHHXi-d_yuW301_Y0EZQ,2,"A pleasant place in Kierland Center, but has gone down hill from earlier visit. Good house wine by the carafe, we had the French Merlot. Very inconsistent food quality. I had the spinach and frisee salad. The poached egg was overcooked, so no yolk to add the a very dry salad. No enough bacon fat to wilt the salad properly. An average quality lamb shank without any evidence of the olives and other seasonings promised. My friends filet of beef was ordered medium rare and served med. well. Rather dry. They refused to subsitute for the brussels sprouts, then the waiter came back and said they could do it after all. Desert souflles were ordered by two diners, both were dry and flavorless. They need to pay more attention in the kitchen. Overall, a very average experience at above average pricing.",review,4QORbyhfN01oKR_GgBstfQ,0,0,0 +-4A5xmN21zi_TXnUESauUQ,2012-07-09,0bQUqKGw0uGobtP7S-EkAw,4,"Came here and did drive-though to pick up a turkey sandwich and the ""man"" salad. The salad was really good!!!! On a hot summer day, the salad is a perfect choice for lunch!!!",review,YuSjiBCf_3j1Oqs99Aue0A,1,2,1 +QKGZajo_Xm6AW3lHkU9Mmg,2011-03-31,S5wVFzi3VreZMzi_EluILg,5,"Bring a flashlight. It is so dark inside you can not read the menu. But the waiter was so well versed we just used his recommendations. + +We all had filets cooked to perfection and served on a 400 degree hot plate. They recommend the lobster mashed potatoes but did not feel they were worth the price tag. + +The wine list is extensive and expensive. If you are looking for fancy this is the place but we went after a round of golf and they were very accommodating . + +Great special occasion dinner but not your everyday steak joint .",review,cMNHD4NWHvsKhmJlx5F3ag,0,0,0 +0Vty6xYvihX-kmsocY1HWQ,2011-04-07,OHEOZlL_-Lcl63HsuSZ-_w,2,overpriced for an average course,review,Ys0ZU50fVW-BeDGjKto0mw,0,0,0 +mSbFLlDB5Qu-6al1e2DSBw,2010-04-29,swhMVGUffHcfl3YgSgKszQ,5,"These are the best, most consistent donuts in the valley. I was always a fan of the Chandler location, so I tried this location as soon as it opened. I was pleased that the donuts were as fresh and as varied as the other location. + +I don't care if people go to dunkin for the coffee..a donut shop is about the donuts, and I haven't yet had any donuts in the valley in the same league as BoSa.",review,2OLdiDZNdrPkdjp1WmW0-w,0,1,0 +JsorhAPDyafD2JC-6fY-sA,2011-12-17,uZ9rHZQ41KX4PWaRTwjmRQ,4,"6 cities in 10 days.....no significant delays, great service and the food was even good. Get rid of the lowly 757's to Hawaii and give me the fancy LAX-JFK 777 for all 5 hour flights, plus redo the overhead compartments in the 767's and I'll give Delta 5 stars. + +Great job with the merger as the employees/customers seem much, much happier!",review,VqSCQCva71Q-ZVcMsYfQuw,0,0,0 +vJ8h5KUTL5L7taf72zcOlA,2008-06-14,WoSwxLzRtESWmdej4p3uIQ,4,"Sheraton Desert Oasis is a great value in the late spring/early summer to get away for a few days and relax. + +It is part of the Starwood Hotel Chain, but this is one of their first forays in to the recent boom in Hotel chains opening time share residences for sale under their brands. So this was meant to be property that was sold in timeshares, which some have. mostly for winter weeks for cold snow birds. + +But in the low season, which is summer, you can get a room for around $100. And what do you get? You get a nicely appointed, decorated model home, about a 700 square foot 1 bedroom apartment. It is repleat with 2 gas fireplaces, full kitchen with all wares and utensils, living room, patio with table and chairs, his/her bathroom sinks, a marbled tiled shower, a king size bed and a heart shaped large jacuzzi bathtub in the bedroom. + +It has a full social and activities calender, so it is a good place to take the kids. There is a large clover shaped pool, with multiple water fountains, and a large rocklike island structure with caves where the jacuzzi is located. There are about 75 chaise lounges and several tables, so there is usually one available for you. There is also a poolside grill for food and beverages. + +You are not far from the restaurants and nightlife of North Scottsdale, near Kierland Commons Mall, Desert Ridge Mall, 101 Mall, and about 6 other strip and big box shopping centers. You can buy food and easily eat in to save some money. The famed Tournament Players Club (TPC) gold course is close by, as well as the more exclusive and expensive Fairmont Princess hotel. + +This is more of a vacation home than an exclusive resort with people waiting on you hand and foot. But it is well maintained, nicely appointed, and a relaxing getaway. Peak season (winter) rates are $325 and up, so if you come in early summer, you get a bargain and a tan by the pool.",review,2rlBbFPHyZjXSFSE8r551w,4,8,0 +k8JnZBspVOI8kLcQek-Chw,2012-01-09,dGzFMtE5JQ3YkUHS6UU0uA,5,"I moved from Philly this past summer and I've searched all over the Valley for a ""GOOD"" Pizza. After eating lots of tasteless and cardboard pizza, I found Momma Mia when I moved into Arcadia! I love the hole in the wall vibe! Just like home :) The sauce is great and super tasty! The dough tastes slightly sweet and is fluffy..It's what makes the pizza so great and there is a brickoven!! I love it! My husband and I order the pizza/wing special .The wings are so hot and spicy ( we order the hot, but it comes in buffalo and mild) They have an extensive menu of pasta, sandwiches and salads. I want to try their Philly Steak next, but for the time being I still make mine at home. +Every pizza place likes to say its ""New York Style"", but this place really does a NYC pizza. Well the best nyc pizza you're gonna get in AZ, Something about the water.",review,ED5xDqDU9JDtlVEOqNCB5g,2,2,1 +7kAXbY8hjHhC-nZKR2Embg,2008-08-22,bWhz0gwcvVOafbc47BXAXA,4,"I really enjoy this course but I am saving the 5 out of 5s for the Troons, Grayhawks and WeKoPas of the world. Nonetheless, this is a great, very challenging course and you don't have to drive waaaay up north or east of Scottsdale to get there, which is always a great plus. I remember Golf Digest did a list of Top 25 College Courses and this didn't make it, which I thought was nuts. My only complaint is that the course isn't really as luxurious as the peak season rate would indicate. Also, as the other guys who reviewed this mentioned, there is some fantastic ASU swag available in the shop if you are a fan, they probably have every variety you could ever imagine. Haven't eaten there but Ted's Hot Dogs is close enough that you'd be crazy not to go there after your round.",review,tLrjg5jMmBfnnTs3d61SWw,1,1,0 +e8FMAuTswDueAlLsNyLhcA,2012-08-27,dLheU5beqzcsY9sCcxfxvA,3,"Good, but the salad was not as good as remembered. Still think its a great spot in scootsdale!",review,vU1bHO3IjqLnf3_9Igeluw,1,0,0 +GRFunGSUZxXqNCZJrN8Oow,2012-04-27,yQKRFqQZrR7l4ti6YiGHOw,2,"Coworker and I met for lunch this afternoon. Restaurant was understandably busy and there was a delay in the delivery of our food. + +When my pear omelet with potatoes arrived, it brought mixed reactions. The omelet itself was served hot, and loaded with bacon and cheese. The potatoes served alongside were STILL FROZEN in the middle. We were unable to catch the attention of the hectic servers to get this corrected. When I brought my plate to the bartender, he poked the potatoes with his fingers, and then asked me if it would be OK if he kept the same omelet, but ""throw some fresh potatoes"" on the plate. The server said that, if the kitchen had to remake the omelet, there could be a long delay. + +I could only respond with a shrug. He left and went to the kitchen with my plate. Several other people touched and poked the plate and potatoes before replacing them. He then brought the plate back to me at the bar, and not my table. + +End result - good omelet, mediocre potatoes, below-poor service and follow-up.",review,k8QnA7UNbe5DBCmYqxYs8Q,0,1,0 +1NZLxU5WvB5roPFzneAlLw,2008-11-02,llMrv3u6jOOz2E9T7214mA,2,"I've been to Barrio twice now. Simply put, I do not believe that it is worth the prices that they charge. The first time I went there was with the pseudo boyfriend and he adored his meal, and so I embraced it and loved it. The second time was last night for Dottsy's birthday dinner. + +Dottsy and I ordered up the guacamole that everyone raves about. We were unimpressed, as we had huge chunks of avocado in there and have both made our own guacamole and didn't see what the big fuss was about. + +I've had the enchiladas suizas and enchiladas de hongas and although they weren't bad- they were not amazing. Not worth the 16 bucks, at all. Don't get me wrong, I wouldn't complain about the cost if it tasted like it was worth it, but not so much. + +Because it was Dottsy's birthday, they brought her a complimentary flan which we both agreed was pretty tasty flan. So, if you are a flan person, this may be a place to check out. I am not a flan person- too jiggly (which makes me think of what fat looks like on a person's body which stops me from eating it). + +The two things that make this place worth going for are the margaritas and the service. The margaritas are 50% tequila and fabulous- I usually just stick to the house margarita and am satisfied. The people that work at Barrio are friendly and cool. I imagine that they all enjoy working there. + +I don't really ever need to go back to Barrio, unless I'm craving a serious margarita served up by a cute hipster. I'd go for a drink or two and then go elsewhere for dinner.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,10,9,9 +AkOruz5CrCxUmXe1p_WoRg,2012-09-24,1n6AhAJ6n92x_vesTaWZyA,4,"Now THIS is ramen! I even ordered it for take out and could tell with my first slurp that it was everything I'd been looking for. Complex broth, yummy noodles, all the right toppings...the only thing I would have changed is the pork, which was tough and chewy and not melt-in-your mouth delicious. I'd definitely try again while dining in to see if the quality I'd the pork improved. The rest of the ramen was so tasty it didn't matter! + +Also, for take out the service was super quick and friendly. The prices are great, too! I got the ramen lunch special which came with a California roll that was incredibly tasty and fresh, and it came out to under ten bucks for a lot of food!",review,MOpFJnB5HyXdXW1sMwz7Bg,0,1,0 +GjY3YczfF_wT7-euVoSbWQ,2011-10-23,8j0rATm6prGd__VoJMMcfw,3,"Beware the latte. Otherwise this is a typical Circle K. Come to think of it, the latte is probably typical of Circle K as well.",review,ng3hl9D1EzsmSDHnXXfGBg,0,0,1 +JoqrcQuzD3yEvs9KvN82ag,2012-09-08,2k57IbygwTWDvu4R1husvA,1,"food is ok, but service is very slow!",review,pQ6ij6cOBRB3yJGHbVZHUQ,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2012-01-31,v2yXWRV4Lo4ig9lxd560Lg,3,"I adore all of Joe's restaurants. That being said, I think this one is my least favorite..(which means it's still better than most of the restaurants I've had the pleasure of dining at in the greater Phoenix area.) +I got the chicken sandwich and it was okay. I think I could have found something on the menu that I would have enjoyed more, but for some reason I wanted to try it. I think I'll have to try the pizza next time, because it looked amazing. The service and atmosphere were great, as per all the Joe's establishments. +I wasn't completely fond of standing in line for awhile to get a table and order my food. Sometimes I just want to sit down at a table and have the server come to me after a long day. +That being said, I would love to try this place again...especially for breakfast!",review,CjL3FtpiDzhNXTQPw0-RBw,0,1,0 +Lbue8gqRiBPEnA7g7H1qdw,2011-05-02,jOx0kjcxoXqkbB3F1dXTdA,4,"I've been meaning to try Humble Pie for a while, and as luck would have it this weekend I was in the right place at the right time and we decided to stop in. + +Rumors are true, everything is delicious. We shared the strawberry & gorgonzola salad, which was flavorful, light, and summery. Then we split the Schreiners Sicilian Sausage pizza. It was flavorful, spicy, and delicious. I will definitely be back to Humble Pie when I need a pizza fix.",review,Gy9nOzH_L8NGCjrQr-ntng,0,2,0 +tpIU_ZvIfCfCp36IgghlHQ,2012-08-07,Aele-C1tzSUc-1qsUvzHMw,3,"Lets just set the record straight here. Zoe's serves Mediterranean just like Qdoba serves Mexican. + +When I say just like the Q, I mean the entire experience. Walking into the shop gives more of a cookie cutter national chain feel; which is probably because they are in fact a chain of restaurants. Zoe's food was average and unimpressive. I did like the hummus though. Their prices similar to independent and family operated Mediterranean around the valley; in some cases more. I would prefer to visit Cypress Grill, just up the street from this location, they're my favorite Medi in CenPho so far. + +The staff here was friendly, they took our order promptly and served the food within a few minutes. Don't get me wrong, the food was in no way ""bad"", per se. I just can't shake the feeling of ""I've had better"" when thinking about my experience. + +If you're looking to fill your belly with food just because it's time to eat, this might just be the place for you. If you're interested in a great Mediterranean meal, I implore you to please try something new. I likely won't be returning, we do live in the city of a million restaurants, go out and choose one! (but don't take me at my word on that just made up fact). + +Happy Yelping Phoenix, now where's my hummus?",review,cRyNICH0mhjxagvSyVr60Q,7,12,6 +VVeogjZya58oiTxK7qUjAQ,2009-12-06,DtgJ5aFeUSk7bNGY408WPA,4,"Great Pizza! Great food! Great service! Still, this place isn't perfect.... + +BE PREPARED TO WAIT! Alright, most people seem to know this going in (we did too). However, when you arrive at 7:00pm, and they say you won't be seated until 11:30pm, that doesn't mean you can put your name in and show up at 11...which we almost found out the hard way: **At 10:00pm they will do one last head count. If you're not in the vicinity, soooorrrrry!** Luckily we were calling in every hour for updates (which they recommend, btw). At 9:40pm we called and got the news that we better be there for the last head count (information we probably could have used earlier), and had to hurry on back from our meanderings downtown. At 10:00pm we were deemed worthy to stay on the list and wait another 45 minutes or so. + +Service: the hostess knows she holds all the cards--sort of like the lady at the cash register for the Soup Nazi. However, a smile was all it took to get one back from her for me. Still, I can see how others might misconstrue her attitude as something less than cordial. Our server was great though! Very helpful and fun. He was as excited to serve us as we were to eat there. Good stuff! + +The pizza is indeed great! But after waiting 4 hours, I was expecting the heavens to part and birds to sing and the ground to shake. Nope. Just made-from-scratch, meticulously-thought-out, high-quality pizza. A light and airy, smoky crust, a decent sauce and fresh mozzarella formed the basis of the Sonny Boy and Wise Guy pizzas that we tried. The quality and tastiness of the toppings were also apparent. We were impressed. This was absolutely great pizza--one of the best we've ever had. ...I just don't know if I'll hurry back to Pizzeria Bianco to wait that long again.",review,UuwjD6MZf6Z6QlNphiXRjA,3,6,1 +BINYfrtGp3A4w0d5E7kbYw,2012-04-22,oIPCrYI-fRmOFaDcJGMoLg,5,Very delicious and friendly! They do happy hour every day which is so great! The sushi is always very delicious and the same with their entrees. I love how close this is to my house. We visit this place quite frequently!,review,mVPISwK-W6gmlbR5oemOsQ,0,0,0 +_yGo2ubkwQPXcKrdcURSNw,2010-07-26,RGrPbp37oY4Ua1m8YBHPYQ,3,"Marriott's beds are always the most comfortable out of all the hotels I've stayed. I would not recommend Marriott Phoenix Airport for an extended (more than a week) stay, though. All in all, the hotel is nice, and the staff is probably the friendliest I have dealt with in a long time. + +There is no free WiFi, and you'd think that a chain like Marriott would provide it for free. There are no refrigerators or microwave ovens in the rooms, either.",review,hw9irUmYqNe5zSW1V1ybbw,0,0,0 +nFo_63pTr-4ZhakuaRFOCA,2012-11-28,insSDnDwgRLAwMwjZrix2Q,4,"Popped into Sol Mexican Cocina before a movie one night for Happy Hour. We were seated quickly, which was great because there was only 15 minutes left for happy hour and we wanted to get our order in before it ended. Our waitress was SOOO... nice! She had a great personality and was attentive and informative, pretty much everything you would want in a waitress. + +We ordered everything off the happy hour menu, so I can't comment on the main menu, but the happy hour food was great! The Hubs and I shared the pork tacos and chicken tacos - he loved the chicken and I loved the pork - go figure. We shared guacamole, which was good, but needed a bit more seasoning. By adding the salsa, which was served with it, it became quite good. BTW, love the unique ""chips"" that are served here... some of our had a ton of seasoning and others had only a little - we liked the ones with just a little. We also shared the empanadas (I think that's what they were), anyway they were really good. + +Overall, we had a great happy hour experience here. It thoroughly redeemed my not so enthusiastic impression from the Yelp event here (just about the food, not the event). I can't say enough great things about our waitress - can't remember her name, but she was awesome. I am sure we will be back soon to try out their main menu.",review,f1-pIw_p0ifzu03TXjPRiw,2,1,1 +ShUSw5yD7EFWBOiq_CuHMQ,2010-03-04,XYLQ-2MnnhKiwR3umVIVeA,5,"Oh, YEAH!!! Coming to Scottsdale. I have used RedSeven in Tempe and Mesa and excited to know that they are coming to Scottsdale. I work on the roads throughout the valley and have a lot of customers in Scottsdale that I continue to brag to them about RedSeven's Super Quick Service. Getting the job done quick and right and guaranteed to be the fastest to get you back to work!!!! Oh, and they talk to you so you can understand, not computer talk. Can't wait for Scottsdale!!!!",review,dKMzuhnwGh3hGxP0QH7m6Q,2,1,1 +ZtT1O60hjWaiGS8itVDQyg,2009-09-21,T8u9ntOrAh-4kGZoK5IpkQ,5,"I've been hearing about these cheesecakes from my husband and his incessant twitter following and I was really excited to try some of the goods at the market this past Saturday. + +We finally woke up early enough on a Saturday morning to hit up Matt's and then peruse the market before it got too hot. We made our way over to the cheesecake table and then debated between 10 or so flavors. He had key lime and chocolate chip out to sample and I decided to try the key lime. I was amazed at how natural it tasted. There was nothing artificial about it, it just tasted exactly like it should. These are very good, very simple cheesecakes. I ultimately went with the peanut butter chocolate chip which is extremely tasty. There are a bunch of different sizes to choose from, all at very fair prices. YUMMY!",review,W_QXYA7A0IhMrvbckz7eVg,4,4,2 +_-9pMxBWtG_x8l4rHWBasg,2012-09-18,3NkpiDnSEX2-RN1vNw9sdQ,4,Had the signature Black Chile entree. It was fabulous!,review,c10-vMDNqbRVYcM4nrhfpw,0,0,0 +zmFc8M-hS4uuyY0hklIpoQ,2011-01-17,A2lCUSvDJfIa5kwUoFFk8A,4,"A definite favorite in the neighborhood. + +The happy hour menu is always interesting and good. In several visits I've never had anything that wasn't delicious, and the beers on special are uniformly impressive.",review,nDBly08j5URmrHQ2JCbyiw,2,3,2 +hW0Ne_HTHEAgGF1rAdmR-g,2009-07-04,ZSuen309_TLXd9UKZ3ISEw,2,A pain to get in and out of. I dread each trip I have to take to this place.,review,2FiNCj5rM3nF0qgaWf86Gg,2,2,2 +90AXjqb4O-wrTHDKDoDUzg,2012-10-18,DTcud9LQcBwrC2OOZALS_A,4,"Great quality. Their Pad Thai with chicken is the best I've ever had. Fresh, flavorful, and perfectly cooked. Their Yupha's Fried Rice is delicious with the pineapple compliments. Their Red Curry gets a 2 star rating for just being Red Curry (it's not as creamy, fresh, or flavorful as Thai Basil on University). It's a neighborhood gem and I'm lucky enough to live right around the corner from Yupha's Thai Kitchen! + +Also, it's clean, bright, and has an inviting ambiance. It's perfect for a sit in casual dining experience, and even nice for takeout. + +Staff is friendly and attentive. + +Come here. Seriously.",review,ZzaGa2nsW5bh71N3GOFO2w,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2011-07-14,rIMJZ33kWr9gJqrFUBWQew,4,"Great shopping. Even better people watching! Here you can shop stores ranging from H&M and Pac Sun, to Prada, Gucci, and Louis Vuitton. It's a pretty upscale mall, so most shoppers dress to impress, while other people recognize the fact that it is still JUST a mall, so they don't. That being said, you'll never feel out of place, no matter what you show up wearing. I love the valet area the most... it's littered with tricked out Bentleys, Lambos, Ferraris, and Aston Martins! I mean, I drive a REALLY nice car, and I would still be ashamed to valet it there! + +My favorite store is probably Lush! I have a tendency to spend a lot of money in that store!! Sephora is a close second... I'm always on the lookout for my next favorite cologne! + +Fashion Square also boasts some pretty good dining as well! Modern Steak, albeit very pricey serves up a damn good slab of steak. On my next visit I'd like to try the Kobe beef hot dog!! Z Tejas, Kona Grill, and the Yard House all offer great happy hour and reverse happy hour deals on food and beverages! + +All in all, this mall is impeccably clean, very inviting, and fun to shop!",review,vuUddBhwlrVijAAFvK5UTg,1,1,1 +6oRAC4uyJCsJl1X0WZpVSA,2012-03-22,6Gb_wp8N0TFXcYDkuRyWOQ,5,"The best gyro you will have in Arizona... +or maybe anywhere. + +Love the grocery selection. +Everyone there is really nice. +And you can buy a BUCKET of dates for like $6.",review,QUTW6GQnEAJSqrzoUJ0m7Q,0,0,0 +-hQ8iZygzi0iiTFUkHgiEA,2012-06-25,KWfhJo0PHpmIG9zE2Q05GA,1,"Have the owners from here ever even had a bagel from back east? Certainly doesn't taste like it, and they charge double what they do back east too. No thanks. The search for a good bagel continues, for now I'll just keep having them shipped straight from NJ.",review,8QnZXXA_yJRd_eYWOzcYUQ,0,0,0 +KoIRdcIfh3XWxiCeV1BDmA,2012-09-07,t2QTyQKMagNguZBBlou2GQ,4,"Great white sangria and margaritas!!! We went for dinner, but ended up ordering appetizers and a pitcher of white sangria. All I can say is the service was great but the drinks are amazing!!! The tortilla chips were fresh and homemade. The ceviche was so tasteful!",review,I4GolEA9L0k2RfH4CauL0A,1,1,0 +386VJataUtyocjP-RzFnNA,2011-05-11,I3A0nhGZM99qCIgMzTqErQ,4,Home sweet home love it ...only wish is more hot water for showers other than that it's a great place to live,review,LdxngKjcYJTbuf_Q4If3Gg,0,1,0 +lPc3v2JEaCUdbOWM0kGSRA,2012-06-30,upkkNexw5PI21H6Y7F3d4g,5,"I've been going to Jess @ Chace Salon for almost 2 years now and she is nothing short of amazing!! Cut, color, highlights....she is my super stylist. :) If you are looking for someone to give you a new look, or just revamp a style you're already in love with, ask for her.",review,dTTbYe3Kniw0KLpNUYinVA,0,0,0 +SoMmHSD_g9xQv68GV22RZw,2011-05-17,BElKVd2_Zn7A9cQP42gt5A,4,"Good place to meet a group, watch a game or grab a quick bite. We found this place on St. Patrick's Day after a long, frustrating day of apartment searching. No wait, quick/good/friendly service, good food and lots of good beer. I like the segmented areas and because it is so big, even when there is a huge crowd, you never feel like you have lost your personal space. Have walked over many times since and will definitely continue to.",review,g-rWJxGx1EKqDORpkZXjJw,0,0,0 +n25AWEdWRaNMdMI_uN_VOw,2012-01-17,BnELCouVX59gBTQLYsZy8A,3,"I've stayed at an Aloft before. They are pretty much all the same. My king room was clean, modern, and well maintained. I went in the winter, but had it been summer, I probably would have taken advantage of the pool and outdoor lounge area. Even the gym looked appealing, and that's saying a lot. The major downfall (and I say major because the whole point of a hotel is to sleep) is that the bed pillows are so incredibly uncomfortable. It is almost impossible to fall asleep. Someone please get some decent pillows in there!",review,8PSUiFWz11tGdYy9xEFPZA,0,0,0 +vA8T8QXh78iSXhxShLNgQA,2009-09-08,YmWlIg7HWFu3fwPeh3Tnaw,4,"BEST CARNE ASADA (GRILLED SLICED STEAK), HACIENDA-STYLE HOSPITALITY. A MEXICAN FOOD EXPERIENCE IN THE THEME-PARK STYLE. + +--colorful, tasteful, vibrant ambiance in the country-hacienda style; kudos to the designers with an eye for detail; +--dining room draws natural light from the delightful patio windows to the vaulted ceilings above; +--this place and the adjacent ranch market are a ""must-do"" for tourists (bring your out-of-towners here); + +--Don't miss the Parrilla (grilled platter); one ""portion"" serves two; choose three meats and voice your tortilla preference; +--grilled vegetables include nopales (cactus), Mexican zucchini squash, jalapenos (consumed whole, took me to five hiccups before my stomach settled), and baby onion stalks (not the typical pile-o-fajita yellows); +--both rice and beans served family style, and perfectly flavored. I could just sit and eat bowl after bowl of those beans; +--juicy, perfectly cooked shrimp; ""asada"" goodness knows no bounds; +--guacamole is plentiful (no melon-ball scoops of yesterday at $3/ea here!) and freshly made to order; NOW THAT'S what I'm TALKing about !!! +--table salsa is spicy with lots of freshly chopped chilis and pureed onions; really good burn; +--try the horchata (rice milk and cinnamon sugary goodness) or any of the featured Aguas Frescas. +--no fuss over separate checks (and that was for our table of 10!) + +--pork was a bit dry; is ""gamey"" possible in pork? +--server forgot our desserts and we gave up after 20 minutes (shucks! they were sitting right there on the pass!); the manager refunded us promptly and then packaged them to-go. + +After so many recent disappointments on rock-hard rubbery shrimp, I _finally_ found a place that grills properly, excellent marinade, and with the freshest ingredients. If you get the impression that you are amidst a food operation staffed by thousands, you are correct: several hundred are working in the kitchens next door making tortillas, cheese, asada, aguas and more! + +If you don't have a filthy-rich Mexican relative with a hacienda (Mexican mansion) across the border, this may be the closest you'll get without an invitation. The mostly-abandoned courtyard is centered with a gigantic fountain, lined with what could be booths for a seasonal market, bodas, or other festival. In the corner a lush garden with a somewhat secret door leading to la sala, the grand room. + +Don't miss the Ranch Market next door; you won't see retail food sold in this quantity anywhere else in town. Take your camera.",review,hDlSSyDreM9xY4yQWPm54w,3,3,4 +yRga-WpyfZRz8Es4OpyMhA,2011-04-24,dMjfTRryNVk2_8JRgRH4eA,4,"They have plenty of equipment so there should never be a wait for anything. They offer great classes, although they tend to get too full sometimes. It would be nice if there was a restroom up front so you don't have to walk through the entire shower/locker room if all you need to do is pee!",review,XK3jzcg2pibsHm6nlCn08w,1,1,1 +H91jZ9BiQZZ4_7OlEd6eQg,2012-03-03,9KEu3HIsAuFr5F8lNFnLkg,4,Omg! So good! So fresh! Great burger joint. Ordered the tri-tip steak sandwich with grilled onions. The steak was tender and perfectly pink. Husband ordered the Original with fries. The burger was juicy and a good size. The fries were perfectly seasoned and fresh. We split a drink. Total bill was a bit over $14. Not a bad dinner price. Place was empty when we got here at 9:00 on a Saturday night but quickly filled up. Great service and great food. We will make The Habit a habit!,review,JkHm-xBNa8KKNvWH5TKk4Q,0,0,0 +cqIHyZ3Q0D4vBi-vb4mi-g,2012-01-21,08RHBfJ0zyko1-J_GxlokA,5,"i love this place. very rarely do i get to go out and tie one on. when i do, this is were i want to be at some point in the night. where else can i go and request the cramps? i...love...this...place, it makes me happy. i suppose i should go on and on about what it's like, but i won't. go and experience it for yourself.",review,A7p8fnVMFQ5GuMY2Szb81g,0,0,0 +W1JyjDzetDVPpnXdpr-l7w,2012-05-01,EO9HN49LdsxzAIKc-deVEQ,5,"Hands down a great lil joint! Gotta get the guac, staff is awesome, way cozy and great food!",review,FW5o1j_WytQAT6vGgs7tvg,0,1,0 +-AAig9FG0s8gYE4f8GfowQ,2006-01-11,EuHMyw814oxWS_NExJmp4Q,5,"Maestro Chris Bianco whips up addictive sandwiches at his laboratory on Central Avenue. Ingredients are local and super-fantastic. Check out what today's market sandwich is -- if it's oven-roasted pork, buy it immediately. Don't miss the rice pudding.",review,9Z05mtXrXJ-22PElwp1ahA,2,2,0 +V9i9LnTg9H2XvzqCVBSOXg,2009-05-09,YAXPKM-Hck6-mjF74Zy9tA,4,"Tandoori Times + +Volume 1, Issue 1, Number 1. Limited run. Copyright 2009, Mejimbo Enterprises. All Rights Reserved. + +Dateline 7 May 2009 +Scottsdale, Arizona + + Yelpers Jim W and Audrey W were reportedly seen enjoying lively conversation and delicious Indian food with Donald S and Carin S. Witnesses claim the group was laughing loudly at times. One bystander reported, ""That was a guffaw. That outburst right there was definitely a guffaw. Wild stuff."" + + Sources have related to this publication that the group dined on two appetizers, one known as a bread basket which consisted of four types of naan bread. Jim W was overheard to say, ""I really like the onion naan."" The other appetizer may have been Aloo Tikki. This has not been confirmed as yet. In any case the plate containing the reported Aloo Tikki was cleaned by the foursome, several even going so far as to swab at the remaining sauce on the plate. + + The above sources also reported that the table was served an order of the Friday daily special of Kahari Shrimp. It was overheard by a nearby table that the shrimp was ""...flavorful with strong notes of garlic and ginger."" This has not substantiated, however. + + Audrey W reportedly was served the Lamb Korma which she was rumored to have noted was ""Yummy."" + + Carin S apparently was served the Chicken Masala and Donald S may have been served some sort of Vindaloo that included potato. It seems there was considerable sharing of the dishes around the table and the main dishes may have been spooned over what some experts have suggested was a basmati rice with various herbs and spices. + + An unnamed source has informed this publication that while Jim W claims to have particularly enjoyed the food and festive atmosphere which included a belly dancer and some swordplay, he was displeased with the excessive sound level produced by the in-house sound system and even requested that the music be reduced. + + Jim W's blog had a statement this morning that read, in part; ""...ears haven't hurt the next morning like that since my last rock concert. I really liked the food but I wouldn't go back on a night when they have dancing again.""",review,P2kVk4cIWyK4e4h14RhK-Q,22,23,27 +fP-BPL6iRu2tbcvlnjRshw,2011-08-20,ZPdAsJQOE50mgxgziI4gkw,4,"Good drinks, great food, and cool music. There is a stage right behind the bar. We tried the Fingerling Potatoes in Tomato Jam and it was fantastic.. I recommend.",review,55-K5KXdbrUGQCNF8z3hHQ,1,1,1 +DDnmNTvIIQu2t3WZ2EQx-w,2012-08-20,ZsrfHa0bnNXQn87ZRboPAA,4,"Apparently I'm late to the party on this one, but my first visit to Sierra Bonita Grill was last weekend for brunch. I'm hesitant to add another good review of this great place because I didn't have to fight anyone for a table, and I would like to be able get one in the future. + +Anyway... I'm a huge fan of brunch (and especially of Mexican/Latin American-type brunches), so I was thrilled to try this place. My friend ordered the Verde Vaqueros, which are their verison of biscuits and gravy. But the biscuits are no ordinary biscuits, they're Green chile beer biscuits (!) with smoked sausage gravy from Schreiners. The biscuits were delicious. I could eat them with anything... or really without anything else. My friend cleaned his plate. I got the stacked chicken enchiladas because I'm a sucker for anything with hatch chiles, and they did not disappoint. The sauce was flavorful, and the crispy tortillas were a nice texture contrast to the rest of the dish. + +Will definitely be back, and would definitely recommend that people check this place out for brunch... just don't take my table.",review,KzFTp00JdzuggUHaRn_uzQ,0,0,0 +V6BYjHM9SnXscfkln3hCdA,2012-06-27,h3vM0J9MuqpLscQAPp5hfQ,1,"We went here for Mother's Day based on the positive reviews and had a pleasant experience. Good food, good service, good ambiance. We came back here for Father's Day and had a very unpleasant experience; the worst display of management I have ever encountered! Apparently our order was never put in from the server or there was some sort of ""computer malfunction' they claimed, but we waited at the table for 45 minutes after ordering, no food, nothing. The server obviously recognized the mistake and kept checking in with us and apologized for the unusually long wait, (did I mention the restaurant was half empty, I wonder why!) and she did offer to comp our coffee drinks. But the infuriating part was when we finally complained to the manager because we could not figure out why the ridiculously long wait, she came over to our table, did not properly introduce herself, sat down and pointed to the man-held computer system and TOLD US we had only been waiting 15 minutes. Really?!? You're coming over to tell us how long we have been waiting??? It was so rude and disrespectful, she was trying to argue her point to us which clearly showed that the server did not put in our order immediately which is probably why the server apologized to us umpteen times!!! It was the most ridiculous display of what NOT to do as a manager. I have been in management and customer service for over 12 years and this was clearly a Management 101 mistake. She never apologized or tried to rectify the situation, but when you come out to your customers in fighting mode you really cannot rectify that! + + Needless to say, unless this restaurant starts to provide better training to their managers and team members, or hires a new manager, we will NOT be coming back here again.",review,TwK4rCo5Q_OnEP3874xTLg,0,0,0 +o4DsvwwD2kIbF-EM4r9G8A,2008-02-10,wBGJfwLCFIIli9X5LRoHpA,4,"After SMOCA opening night, I just wanted to relax with some friends and not go get wasted or have to wait a long time to get a seat at a trendy bar on a Friday night. Oh yeah, and get something to eat. I had remembered some generally good reviews of Drift, had noticed it when going to shows at Martini Ranch, and really wanted something with coconut (?). + +After a terrifying short-cut with a walking GPS that I was sure was leading us to our death (or at least led us to dog-shit on the sidewalk at one point), we ended up here with a nice enough door guy. Inside I was really impressed. It was a lot nicer than I thought it would be, more sophisticated and while it was Tiki-themed, I thought it was very tongue in cheek COOL interpretation of tiki (very hard to pull off). + +We asked for a booth and got one near the door (which lead to superior people watching later). Our booth was creamy, spacious, left us with no ass swamp, (although the acoustics were a little bad-I had trouble hearing someone two people away) and showed us more intimate tables in very Ikea-esqe and mod black leather. This place is surprisingly classy. The giant aquarium at the bar was goregous and if I ended up here with one other person, I would def. sit there. + +Our waitstaff was extremely sweet, the food (veggie spring rolls, coconut shrimp, and pot stickers) were not that expensive (5-8) and surprisingly good. Kristin and I got two orders of spring rolls. We took the longest time deciding drinks-I got the old fashioned Pina Colada in a coconut shell (YUM) and Erica got the Evil Bastard which was set on fire and it was damn potent. I was very giggly the rest of the night. + +Looking around, this WAS not a pick up scence. Groups of friends just sat around chatting. On the way to the bathrooms, a small open lounge was dominated by one party having a lot of fun. The bathroom sink blew my mind and I still don't know what sets it off...although my theory is some dude needs to flush the toilet for water to come down and vice versa. I started freaking out in my drunky state, saying ""I have soapy hands goddamit! And I'm smart! How does this shit turn on!"" wiping my hands on the sink with tiny amounts of water. + +Overall, a very chill scene with a bizarre assortment of people (bro dogs, homely couples, musicians, barbies, and just regular folks) perfect for a second or third date for a casually romantic drink or two.",review,mfvezpz6ohS0NQk3DZdvqQ,8,7,4 +yypKLRJxSjR2uNaTS_O6pw,2011-02-14,IP-mkqqLSLJp9IVd7VaHSA,3,"Been here several times for lunch and had the pizza. Today my friend & I decided to try the sandwiches. Very disappointing! I had the Roast Beef & my friend had the Turkey. Both were lackluster and smothered with slimy roasted red peppers. If you go to Humble Pie, go for the pizza (and the Happy Hour!)",review,tcWQQaDc0BH1dwhyl6ynaA,0,0,0 +F-ZOeAK1v7e5Rt2Mv5rVMw,2010-09-22,6BVDp3xFEJr7vgHyWyFr6g,5,"Okay I have found my new favorite ""home office!"" I don't have an office for my agency yet so coffee shops tend to be where I get most of my work done. + +Last week I checked out Echo Coffee for a client meeting and we both really liked it. Today I returned and spent a few hours working at Echo Coffee on their wi-fi. It was such a nice break from my usual home office at Starbucks. Walking into Echo Coffee you can instantly tell its a different type of coffee experience. The environment is very relaxing, music is not blasting so customers don't have to scream over each other, and they have great big couches in the back. Of course atmosphere and great coffee needs to be in balance and it definitely was at Echo. + +The coffee is really good and love very fair price for the quality you get (my 2 favs are Cappuccino at $2.75 and $3.75 for large Chai Latte). My chai latte came in a big ceramic mug. I don't know about you but there is just something special enjoying coffee out of big mugs and not recyclable paper cups. + +A surprising first for me is getting actual lunch at a coffee place and was pleasantly surprised to find the food was also really good. Can you tell I am a fan yet? I ordered a Curry Chicken sandwich and it was huge and delicious so finished the whole thing. There was a nice bonus on the plate - Mango Chutney so make sure you get that if you order lunch at Echo. I would have loved just a bowl of that and bread as its flavor was so good. I need to find out where they get this from as I want to have it at home. About $12.50 for my huge Chai tea and curry chicken sandwich.",review,WEuIqh8ygm-bH81s8lwD0g,11,15,5 +P5a2hK5G64J7DcNwLAPhuA,2012-11-29,Rl1gotAIgb8wHCi48puewQ,1,I never got a chance to try the food because I was so turned off by the way I was treated. My family and I will be waiting for a table across the parking lot at The Cheesecake Factory.,review,FFfBjFZWkjMnlZPwbufAkw,0,1,0 +ntN85eu27C04nwyPa8IHtw,2011-06-12,METLCA4XTWdH2kZJ05JTIQ,3,"A-OK is right and the hype is not always worth the wait. I will keep it simple since there are probably 500 reviews on the place. + +Pros: + +Great Hashbrowns, and made from scratch food + +Good specials to keep things mixed up + +Great company and service + +Cons: + +Guy up front says a little over 35 minutes but really means an hour and 45 minutes + +Pricey for some dishes + +Interesting people around while you wait to get inside (street walkers, etc.) + +the fresh squeezed orange juice is enough liquid to maybe fill up a double shot glass + +Overall I would love to give this place more stars if I could get in there without wanting to eat a finger due to starvation, and leave a bit more satisfied. Anyone who has eaten at Bryan's in San Diego would know what I mean.",review,k3yuawPEvzlAJPj_RMO0MQ,1,1,0 +pdxyZdnwltQXcu-kD5rpXQ,2011-12-05,5_mXBgsLxVqs8Yaa3Qvbbw,3,"Was super annoyed by this Sephora. The first three times I was asked if I was ""doing ok?"" was not bothersome. By the tenth time I was asked, I really felt like the employees were going to frisk me. I had a baby with me! I really hope I don't have to do any holiday shopping here. I'd rather go somewhere else.",review,Ske6pb78p1AeeBh0GulEJA,0,0,0 +XKrEnL9yCtlhhIa6efbtGQ,2011-08-06,v09iUodtcoCJxyqSLEdibw,3,Went there last night for their monthly free planetarium show. It was a really cool show that was unfortunately set to Pink Floyd music. After the show the science dept professors had a huge telescope set up and we were able to look at the moon. First friday of every month!,review,PDFku3Ozng656CxAWH1kVQ,0,2,0 +c7VgGP8xT25OSReok6fwcQ,2009-05-23,LtjtyM0CcVWBNRJ-mfsC_Q,4,"I've gotta say, Nordy's (as my aunt refers to Nordstom since it's her favorite department store ever) is always a safe bet if you're looking for quality selection, customer service, and a very pleasant shopping experience. Whether you're looking for shoes, lingerie, cosmetics, apparel, etc... you'll likely find it at Nordy's. + +I'll have to take Samantha O's and Julia T's advice and remember to go to Nordstom's next time I need a new bra. + +In the meantime, I've gotten lucky with shoes, all kinds of clothes, accessories, and perfume. This weekend is a big sale. I ran in earlier to return something and walked out with a new pair of shoes. Oops. Take that as a warning, Nordstrom can be dangerous for shop-a-holics. + +The only times I have not gotten lucky at Nordstrom are when I've been on a mission for something specific - such as Converse Sneakers in Jared's size 7 or a certain shirt or bathing suit in my size. But I'll overlook these times and return again and again... Keep up the good customer service and selection, Nordy's - and I'll be a customer for life.",review,fczQCSmaWF78toLEmb0Zsw,7,8,4 +MLVKDbuI2xaOJQ4-NZj2MQ,2009-10-19,a2swmdqJKVM_yEGS9QWZsQ,4,"I really liked the experience I had at Marcellino's on Friday night. They had opera singers from the Phoenix Symphony performing which were very good. I enjoyed my handmade ravioli with spinach and yummy cheese (not fish yay!) filling and the wine and the mouse. It was good!! + +But then something happened....my date gave the server his card to pay for the meal and it was brought back as not able to be processed (yikes!). The server also informed him that they'd been able to process someone else's but one other didn't go through. My date checked his account on line and it had plenty to cover, but had just enough cash to cover the tab, not really enough for a tip. So he asked the server if they would try to put a lesser amount on the card to cover the tip and take the cash. This is when the server informed us that the machine might be down and it wasn't just his it was everyone's! So he kinda lied earlier, which wasn't cool. We then waited another 30 minutes without an appearance by the server to explain what was going on, although I could see Marcellino working on the machine, even trying his own card. My date got up to go speak with him, and the server tried to divert him, but he was respectful and wanted to speak with the owner. No attempt was made to really apologize for the delay or make up for the wait...so they wrote down his information and address to mail him a receipt. + +Then, the next day, he checked his account and he'd been charged twice!! :( sad, because I thought I might like to go back at some point.",review,sA0sK9l9VxsynxvrOgmBXQ,0,0,0 +R2IWbpUgJQ3NRRjKQy6O_Q,2012-05-21,Om_B3VbViUp9hzk42Xn20Q,5,"This my favorite Chipotle ever!!! It's so consistent and good! No hormones in the meat makes this ""fast"" food an A+ for me!!! Yum!!!",review,BtQVxFotHFK3T2FtIrBWmg,0,1,0 +IPsG_71MD8pwB9i3TKOJYg,2010-08-19,7m3c59swF7eH2DGV2OTShA,5,"This place is amazing. Absolutely LEGIT. Some of the best shawarma and hummus in the US (Zankou Chicken in LA is a close competitor). The pita sandwiches are stuffed with delicious fresh meat, traditional pickles, and tahini or garlic dressing (depending on preference). Ask for their hot sauce to help spice things up even more. And the Jasmine infused lemonade is crazy sweet, but really good. + +I love this place, and have been a die-hard fan for over 4 years now.",review,edy9zILE5uaa0B6HXEekLw,0,0,0 +V5QdxePG-pGPXVPHSLLM9A,2012-05-30,OSxnYPxv__h3IIONka_I0g,5,"Stop everything you're doing and go get one of their brownies, warmed up, with an ice cold glass of milk. I'll never be the same.",review,_2oYcAukTIaexAnsjUo9tg,1,1,0 +DxUn-ukNL27GOuwjnFGFKA,2009-11-12,EcvD8MPKPYKWtKl4L5pf-Q,5,"Suffered a senior moment today! Did the yelp check and thought this sounds good...the drive was very dejavu and then I discovered why....see previous review! lol .....but to update....the volcano appetizer, sedona roll and Mochi Icecream (which I am becoming addicted to) were all wonderful. Our waitress was also fantastic bringing plenty of their delicious iced tea and keeping the ginger bowl full....a necessity for me. The place was full tonight and I can see why. Question is will I remember?",review,0ouMuScWJ3GuNtWEmmsziw,2,1,2 +d_8bMNQd0mesbEUeq1U2kQ,2009-03-09,QGe-BFFgDnVJ2l3jHXq0eA,3,"If Star of India (SoI) is named after the historic ship that set sail from Great Britain to India then it is best to declare at the beginning that there is nothing worth remembering about this place and there is little that keeps you afloat in the morass of ordinary fare. + +Like many other Indian restaurants in the valley, the smell of Indian cooking hangs in the air and permeates every piece of furnishing. The place does not disappoint when it comes to service, it is warm, quick and attentive. The complimentary papadums (Indian flatbread) with homemade chutneys (condiments) is usually the high point of a meal at SoI. + +Experiences with the order could be as follows: +Gobi Parantha (Indian bread stuffed with cauliflower)- The real thing is meant to be fluffy and served with butter but the SoI parantha resembles a topping-less thin crust pizza. +Lamb korma- The gravy is thick, nutty with a lot of authentic flavours but the meat tastes pre-cooked. +Chicken biriyani- it is difficult to describe the God-food that is biryani but SoI manages to serve a new variation which is nothing more than chicken pieces thrown into a mishmash of rice and vegetables. +Disheartenment with the over-priced, sub-standard food could lead to a decision of not ordering dessert. + +Finally, as observed in other reviews and the menu, if you visit this place then stick with the tandoori stuff and Chef's specialities. However in that case the excitement of an extensive menu will be lost.",review,LMlBCXFVAHdPnSA94jc6PQ,1,2,1 +gXkv89nyNlFyrEdblB3MKw,2011-07-11,_vzqn2kve9Mp05Vsm_c7ow,5,"great 3D Imax theater,,,see the Transformers...very spectacular",review,nM3vfxr6fcnN_nXdzwbVCw,1,1,2 +nfyqtEoufkhjv97IueK7Ow,2011-03-04,6-Bd6EH7f4iOClnPi3R5pg,1,"Here's the 1. 2. 3... + +1. Great Food. I love hot New Mexico style food. Good job. +2. They have a little brewery and make 3 house beers. Unfortunately, they're all shitty. +3. They could REALLY improve the service. No Bueno! + +We'll be back for the food. It might be take out next time though! + +4-17-11 Update: Some asshole who was clearly affiliated with Arribas contacted me via private message to slam me for my review. I hope the yelp police find you and pull you off the site. More importantly, I hope more people read my review and stay away from this restaurant. Good Food folks, just get it to go! To Bryan L. and the rest of the gang over at Arribas....Go EFF yourselves! You get one star and NO more of my money!!!!!!! Learn how to work, Kid!",review,zzmRKNph-pBHDL2qwGv9Fw,1,4,4 +nXKwzVKJCtIGd4HxXgjdnQ,2012-02-09,ZQ2S7QL9ubt_zZdcE4Kz9Q,4,"I love that this place has top seafood plates and choices. The services is hit and miss but once i went in with three friends and we sat at the sushi bar and they saw we weren't getting service they grabbed our order right away. Happy hour is good and drinks aren't expensive anyhow so drinkers celebrate! Cherry roll (i do it without sauce), octopus, anything with their eels, i love the quality of salmon as well. The best part is that FOOD IS SERVED TILL 2AM!!",review,a89BrWkaBblvdBGdFy1YUg,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2008-03-12,h6_uHLM-j0vKLjkRmKSNlg,5,"This is my favorite haunt. Whether it be St. Patricks Day, before a sundevil game or just a place to meet some friends for a quick drink. Gavin and the rest of the peeps are great. The food is the good, whether out on the patio eating bar food or inside the dining room indulging in dinner. + +This place will always be the primary place to grab a Guinness for me.",review,ScR4Kp6zM9QYpi7pEE3pVQ,1,1,0 +chFzObJSoxAbVlFfgk5JRg,2011-04-18,vtHTJAz77K6uucwV51Cg0g,4,"3+ meals for $10.75? GREAT DEAL! Ask for your meal to go, so you don't have to pay 50 cents for take out box :) + +How do you get 3+ meals, you might ask? PACKING & SMUSHING! First, add some meat, and use the wax paper to pack down the meat all along the sides and the bottom of the bowl. Try to avoid empty spaces in between every piece of meat. Then add your vegetables, and smush it all down with the wax paper with each layer of veggies you add. Make sure to add enough meat and veggies so that your have a flat surface up to the brim of the bowl. Add lots of green onions for extra flavor. + +I recommend using the wheat noodles, because you can create a taller mountain of noodles and it's healthier! + +Advice for the sauce: ADD LOTS OF IT. Since you're now a packing queen/king, you can't use the recipes on YC's wall, either double up or triple up. + +Ask the nice Mongolian BBQ chefs to add pineapples and cilantro, and then when they finish cooking up your food, add some sesame seeds for that lil extra somethin somethin!",review,Vyl9tU5OeDcZND37iObmOw,2,3,2 +Agz-gMJfjCsK5tdKC6FBYQ,2011-05-04,JpmTOGXZYOwEY3tV7x2OoA,3,"Not bad. Not super amazing. My cafe rumba burrito was okay, line was moving a little slow but the employees were nice.",review,3Zi1udoY2iT9s8Q3X6tgZQ,0,1,0 +LzNJLEIo4gh-X_rmDkNkNg,2008-08-11,gnkpry4OZrNA_4Y2t_XXtw,3,"I came, I Kiltlifted til the wee hours, caught up with a friend who was in town for a few days and staying nearby. Decent enough bar, was able to talk above the music without yelling, no asshatness witnessed and they have Kiltlifter. Service was attentive, a team effort, yet a bit robotic. They seemed a bit overstaffed, and well , just bored. Did I mention the Kiltlifter?",review,bcZd4ohK6CIT_BOQ0_O53w,2,2,2 +jQST5lkLGX9L52-A10TGTQ,2011-06-21,Rq_CS4yv-0x8odT4BMYnAw,5,I had Thai coffee and thai fresh rolls. It was good. The vegetables were fresh and delicious. Plans to visit again.,review,k5U-0FBwvWUob8dlT6RvmA,0,1,0 +h8rqIokh6EkM4flR9CjxbA,2009-02-23,5rzUPtAk7rR5EK8x_WszwA,4,"I really don't consider myself a Neiman's type of girl... +As a matter of fact, I don't really feel comfortable in Neiman's - it's extremely 'fancy' and high end for me. But, I've gone in a handful of times and even bought a dress or two on sale at Neiman's in the past. I admit, the quality associated with the designer labels at this store is pretty amazing. + +Anyways, I felt some major pressure to register at Neiman's from my mom, so I met my mother-in-law-to-be at this Neiman's location on Sunday. The housewares / registry department is extremely small... and although the woman working was sweet, she botched the spelling of Jared's name in the process. Needless to say, i was not so impressed. + +Fancy sums this department store up in my eyes - I'm much more of a Nordstrom's or Macy's or Bloomingdales type of girl!",review,fczQCSmaWF78toLEmb0Zsw,6,8,2 +1udzLbeQxmLTbOtgyVP0kQ,2012-11-17,YdrffsqmsOZX81hYvK8Qwg,5,Delish & authentic! The serving was generous (meat combo fed 2). The injera was good (not too thick/doughy). Spicy and yummy. I would like to return and experience their coffee ceremony.,review,TmC0qdyUgXCkKK47vwLRPQ,0,2,0 +WJ5mq4EiWYAA4Vif0xDfdg,2009-05-12,SuHlTdX-4q-mXkXD_H0m7g,4,"Well.. i love the space. It feels like a fresher, newer LUX. EVerythings ""newer""..that's the only real difference (oh..and it;s 3 blocks over). Same varied array of mid-century modern tables and chairs. Original artwork spread thru-out. I've heard it the same original owners of LUX so it makes sense. Even the espresso tastes like LUX.. which i don;t care for really.. tastes burnt. I love my espresso... but not here nor there. + +i love the space, its convenient, evreyone was friendly but (BIG BUT).. they close at 7pm Here's why i find it a problem... .Near a big High Rise, off the light rail (central and c-back).. so I would assume the majority of the crowd would prefer showing up, having a copa de cafe', enjoy some wi-fi surfing, mingle with friends.. but... how can I if i get off work at 5... i;m home by 5:30... freshen up at home.. it';s now 6.... i walk to Lola... its now 6:15... I order my coffee... it;s ready.. i sit down.. it;s 6:30, I now have 30 minutes to enjoy my espresso read the paper or check my email. + +but hey,,, that;s just me. + +why do I give it 4 stars u may ask... again.. i love the space, the people, the art.. the furniture.. and most importantly I love small local business. + + +PLEASE STAY OPEN LATER! (and reconsider your espresso bean)",review,Qm44BhvzVRN5ugsJWK_Svg,2,2,1 +w8D3DAby1nVgU8a4s3z88w,2011-06-02,nTem0s2r5HX74DXs25WXaQ,5,Amazing clothing and fantastic deals! As a photographer this is my first stop for designing shoots when I need amazing wardrobe items. The owners are really nice and friendly and very helpful.,review,8SFpYIJed0i6NMr_2rYJhg,0,4,0 +AkOruz5CrCxUmXe1p_WoRg,2012-01-16,XIW7sy-FBHx6W0pyjv3Hgg,4,"Ordered the pork ramen and a rainbow roll. Both were great, sushi was like every other good sushi place and pork ramen was tasty and spicey. Good service from waiter but the hostesses weren't able to keep up with everyone and forgot we were there and had us wait awhile. Other than that, experience was good and would come back.",review,KuPscbI0KPxudSMPZIcrCA,0,0,1 +JGpl_nv5hHKGEOdphj-9-g,2010-10-03,1KhtNOyfDXCYVdLRQ0SjgQ,3,"The sign also bills itself as 'Santa Fe style' food. Having lived many years in New Mexico, with a family - generations of which are from New Mexico - the cuisine was decidely not New Mexican. It was standard Sonoran. + +With that said, the meal was quite enjoyable. The enchilada sauce had a nice flavor. The dulce de leche was fantastic. The service was very good. The decor was a little non-descript, but that's OK, All in all, a nice addition to the meager choices for Mexican food in Surprise. We would probably come back. + +I had to give it 3-stars because of what it is not. If you are looking for Spanish food - there is none here. If you are looking for New Mexican style-cuisine, you won't find it either. + +However, if you are looking for a decent, enjoyable meal at a local family-owned establishment, this is a good choice.",review,bc8w3CYs70_EgwTxQHVjQA,0,0,0 +z5r8zD7vGPCMpKljERvKqg,2010-10-05,IolU9r-B-NBp-rDRso6GaQ,1,"My husband and I have Been meaning to go in here and see if it was anything like hong kong gourmet, so yesterday for lunch we decided to give it a try. Huge mistake! The food was literally inedible, everything was either too cold or burnt to a char, nothing tasted good. We decided to try the desert and the cream puff (I'm unsure how you can mess that up) was petrified and the cream was so gross I spit it out. The smell of the flan actually made us gag, we had such an awful time I complained to the manager. She didn't even seem to care, and gave us 20% off of a lunch we didn't even eat. We were disgusted by this place, and we will never, ever go back. Don't do it, you will regret it!",review,bvYk98zUE61KoWifshskpw,0,1,1 +R8VwdLyvsp9iybNqRvm94g,2008-11-20,DdeLB3snAlRh2qtZVss9LQ,4,"My wife and I visited LGO a while back and we were both impressed and enjoyed our meal. The WINGS were by far the best I have ever tasted. Our pizza was great, we had the pepperoni and ricotta. It does get kinda crowded and chaotic on weekend nights. The grocery store in pretty cool but didn't buy anything. Like a previous review, it did feel like a upscale Cracker Barrel. All around a great place to eat. Also, Take a camera so you can take pictures of all the lame hipster clowns that try to make it all about them. They are the only downside to LGO.",review,RknsoxpICgtuuv46uaTpyw,0,0,0 +bc-lE-wGVAsUrX-kJhtY-Q,2012-07-13,Cq9HM6xD-y-qA-nKoOOPtA,2,"They're really slipping now. With dinner, you get cole slaw - you can ""upgrade"" to soup or salad for 2.50 more. Really? I've never heard of cole slaw being a pre-meal before. I got the French Onion Soup, its actually better at Mimi's. They put way too much cheese, the bread is pathetic and there's hardly any onions in it. + +The prime rib comes with horseradish - very weak and cut with butter. Never heard of that before either. Luckily I had some sour cream with my baked potato and I asked for some raw horseradish so I can concoct my own. Wasn't the best, but way better than the butter! + +The barbeque chicken was ok. I've had better at diners. They didn't really season the bird, just threw some barbeque sauce on it. At least it wasn't terribly dry... + +I don't think I'm coming back to this one. Nooooo..",review,d0wJVf7Gv7v1B-HHYhxZtQ,0,2,0 +6VRbbNQe5ouWmwsMebUMkg,2010-06-12,2Vykbm0AO1_KjK2XB8W-KA,5,"This will be a simple post...I love indian food, and this is HANDS DOWN the very best in Az. The Chicken makhani is so buttery, so savory...the Chicken tikka masala, the best I ever had. Service is always good, the food comes out fast. It's not super cheap, since you have to pretty much order everything ala cart, but it is worth it. If you go on Friday or Saturday there is also belly dancers. When in rome!",review,p6Os13EIOkUOUK5pzd0-ag,0,0,0 +TAlmdEr0RNWZh9IiUS_BLA,2009-03-17,x7_1l-zEcADww6KwO1-LIg,4,"We love this restaurant. It's a family-owned place and you always feel welcome. The food is excellent, especially compared to On the Border, etc. + +Order the guacamole. + +A tad pricey but it's North Scottsdale, so what do we expect?",review,LiBeWMVMk4pI3hRrsYiAJQ,1,2,1 +ItMihRR-t810HgctGofF3g,2011-12-12,hfPUZTSCEACNP8d1FYUKCQ,4,"If you have dietary restrictions or are insanely health-conscious (like me), YOU MUST TRY NOURISH. + +This is an amazing culinary experience for two reasons. + +First, if you are looking for exceptionally healthy food or have dietary-restrictions, you have a multitude of yummy choices. The organic-y menu ranges from special dietary needs (Gluten-free, Egg-free, Dairy-free, etc.) to proteins from Vegan to Free-Range Meats. All foods are well marked for dietary-restrictions. Yesterday, we had a great roasted chicken and hamburger (gf bun--burger was a bit bland and dry but wifey was happy just having meat, since I do the cooking for us.) The quinoa is quite tasty too. The sweet potato-avacodo salad is great, as are the fries. The 'free' cucumber water is very refreshing, to which I have adopted having a pitcher in my own kitchen. + +The second reason the kitchen is REALLY COOL is that it is a COLD kitchen, with no ventilation. Food is pre-cooked in kilm-like ovens, then when ordered, the prep work is to put into 800 degree Air-Fryers (and yes, no oil is used, it's an air dryer that looks like a jet-turbine engine). It makes awesome fries and crispy skins on chicken. Some done-ness variation does occur in this process; nonetheless, it works well for restaurants with not exhaust. + +p.s. Thanks for the tour.",review,hduuRwJpz8gukqbFC26rcA,0,2,0 +rZbHg4ACfN3iShdsT47WKQ,2009-12-20,A0-FUf6-Q-NI8iWxF857lQ,5,"The BEST of the BEST! + +I agree with Daren C. Killer Burgers, Steaks, Prime Rib and of course ribs. + +Food melts in your mouth. Make this your next restaurant stop. You will not be disappointed.",review,NHAIwjKa8RfSzlwATIsAHA,0,0,0 +8ZwO9VuLDWJOXmtAdc7LXQ,2011-03-28,PxcSbgfDs6yBh_6nBeNcQg,3,"I was hoping for a more adult friendly place. I haven't been here in years, it used to be a gay-friendly hotspot. Now it seems to caters more to families and children. I've heard the restaurant is good, but I haven't visited yet.",review,xg4AdOGHFxJyWByFbG8stA,1,2,0 +cof7qW-PD0M7Jykclg48oQ,2008-06-10,3zMROSt7HNbyq7Lp-MzaWA,4,"I used to live off this place. They cut their meats and cheeses fresh like a real deli, so already it kicks the shit out of Subway, Quiznos, and every other fast food deli chain that offers up pre-packaged meats. Their bread and cookies are fresh as well. For some reason, this location has better tasting food than any other Port-o-Subs I've been to. Don't know why. + +There's always a long line at lunch, but it moves fast. There's some good people watching to be done here - cops eat here, firemen eat here, doctors and nurses eat here, and you also get the entire spectrum of downtown Scottsdale folk... sometimes you would think you arrived at a costume party or they are filming a new Village People video. I don't know what it is and I don't know that it matters either, but good looking people eat here. Whatever you want to make of that... + +Most of the people that work here are really nice and competent. They keep this place pretty clean as well. Once I noticed some fruit flies buzzing around by the soda machine and was told they sometimes come with the fresh fruit they get for the smoothies (which are fantastic). Outside of that, I can't complain about this sub shop and I eat here all the time... it's almost just about as good as a non-chain place.",review,Cp-PV8rsypbO-xBrQ6KmQg,3,6,4 +FGTbFEyNmsPoDoD93T8iSg,2012-10-01,Wke6QDpOcszhU5EHL2bC1w,3,"Like anyone else with good taste, I think this place was better when it was called ""The Library"". IDK when their specials are, but the first jager bomb was $2 on a Tuesday night, and I'll love them forever just on that alone. There's plenty of space to sit throughout the bar, a restroom attendant, and usually a DJ. + +It reminds me of sports bars you find everywhere in Glendale, just with a younger crowd.",review,jdeNI5TTTuM6mj3HTgstRA,2,3,1 +c2_iUhnFqctffbBCSVMEbQ,2009-03-19,T5uA9SW0saB8wuFMs9IsyQ,4,"I like these sort of ""mom & pop"" spots, small and intimate setting. Great pizza! I always enjoy the veggie pizza with jalapenos, oh so good! And mu hubby loves the suicide wings, but we've tried almost everything off of the menu and you CANNOT go wrong. Prices rock too!",review,r-zwGpl12La0MQn4Jf-2hw,1,2,0 +W0eocyGliMbg8NScqERaiA,2011-01-31,yCB0PVMgHBCJYaAN7ZIAzg,5,"One of my new favorite lounges to go to with the girls. 1. I am a HUGE champagne fan 2. You can smoke on the patio 3. the drinks are great and 4. I LOVED the decor and atmosphere. My friend and I were at Salt next door for a friends birthday party on a Friday night and decided to sneak next door for a drink to check it out. The staff as a whole were awesome, everyone was very polite and sweet. It has that chic feel with all the servers wearing cute corsets and dresses. The DJ was great as well, fun music that kept the energy level up without making it too clubby and easy to still cary a conversation. Definitely a great new place to sit back and lounge in a place with a fun atmosphere and good service. Yay!",review,oHn52UJAeJQJxDOob4FEAw,2,6,0 +EWMwV5V9BxNs_U6nNVMeqw,2008-05-08,R3Dndbcc0jEAlXyr4JV1EA,5,"After reading the great reviews and getting plenty of recommendations to try Fez, I had the awesome opportunity to test it out last night at my first Yelp event and I am in love! From the bright decor to the delicious food to the amazing service (I mean everyone who works there actually looks like they enjoy their job and are having a good time!) this place is 5 star. + +I love the cozy lounge feel and could easily see myself enjoying several hours of delicious cocktails and conversation with friends. This would be a great spot for dinner, drinks, or even an event (another Yelp event please!). + +Highlights: +Tasty drink menu +Fabulous wicker tables and trendy IKEAish style +Great part of town +Sexy servers...dang + +Impress someone: Take them to FEZ!",review,5RxpP2Woo7CpOGUmKgDyAw,3,3,2 +VDzgxHjMJj-1nMfJMtcSPQ,2013-01-01,YlAdlU2f1Fumt7U6OGUs0A,2,"Tried this for the first time today. While my hubbies french toast was wonderful and the kiddos enjoyed their meal, my biscuits and gravy tasted much like bacon grease and flour. Sending it back and trying something else is what I would have liked to do, but the server never returned to check on us until my family was finished with their meal. The owner did apologize and asked us to give them a try again. Maybe I will, if the staff gets some training. Everyone seemed completely overwhelmed. It's too bad~as I love going out for breakfast.",review,uQcl8Usm1cK9bQYbpXYdiQ,0,2,0 +2ceeU8e3nZjaPfGmLwh4kg,2009-10-16,jWvzWKC2AM-enanyY0rOjw,2,"People used to rave about this place - I never got it...and I find it interesting that several other folks said the SAME thing in their reviews. The parking lot would be full if you didn't get here before 7 PM, the service was always terrible and the crowd was overwhelmingly hipster morons. Yeah, sure - that's better than the popped collar frat boy meat heads on Mill Ave but not who I want to spend my time with. + +This place is for folks with too much to prove. + +I'm pretty sure I only went once - maybe twice...I won't be back.",review,NMNiUVcUFLPWjQme5Fo6Dg,1,1,1 +JhupPnWfNlMJivnWB5druA,2010-12-18,POFRAQRX9UY4BF6faAP0jQ,4,"AZ88, the cousin of Hanny's, brings more glitz and better food selections than is Downtown relative. My friend had a killer salad with buffalo chicken and I had a tremendously delicious burger with avocado, jalapenos, and salsa. They were able to accommodate my desire to skip the fruit and veggie sides and go all waffle fries for me. When I asked for dipping sauces beside ketchup, I got three choices. I would only complain that their water glasses are far too small, especially for some of their spicier dishes. I think the expectation is that you have cocktail to help you wash away some of the heat. Speaking of their cocktails, the martinis, which I have had on a different occasion, are quite good. This place definitely provides for an evening out and makes you forget that you live in Phoenix.",review,-OMlS6yWkYjVldNhC31wYg,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2010-05-05,mf3osxL0XKEwcJ37tWzOMg,5,"Yes, it is small, yes, it takes time to get your order, but the quality of the food serve is excelent !!! Celina is the name of the owner (not Selena) of this fabulus resturant. She takes your order, runs to the kitchen and then she serves your order too. I wouldn't say that this is a one person resturant, because she has help in the kitchen. +Very few Mexican resturants in Phoenix serve food as good as this one. The Menu is limited but whatever you order you will not be disappointed.",review,pcYFt1EjfOizhvRJDiz3AA,1,1,0 +luCSjoNQ9q_0QIjKKOy2pQ,2010-08-07,RfpcyW2C579dHixRbwa9XA,4,"If you like beer, you'll love Papago. They have a huge beer selection and the prices are very good. When ever I'm in Scottsdale, I make it a point to visit them.",review,IESg-R-NaG8yQwNdxxftyw,0,0,0 +GlfwqH2dY3MKxrRirKeueg,2012-09-18,pXuWwfsLqMhNBRG_MLsBGA,1,Service was horrible and food was mediocre at best~ won't be going back,review,ur1hCrzqzOLB0vCnjONTzA,1,0,0 +R8VwdLyvsp9iybNqRvm94g,2011-08-25,1WupnSzzotzuhjkyl7yTEA,4,"La Grande Orange is great......at certain times! I used to work by there and the curbside pick-up is fantastic. Other than that? I find myself hesitating to go there now because of the atrocious parking situation. This place is an absolute zoo on the weekends and when I can't find a parking spot by the restaurant, I find myself parking in the surrounding neighborhood worrying that my car may be towed when I come out! + +Needless to say, their homemade English Muffins are amazing. I really could just survive on those happily for the rest of my life. The grape preserves on the side are fantastic as well...and I don't even like grape preserves! That, paired with their coffee, makes for one of the best breakfasts in the Valley. And, if you're splurging? Go for the salted chocolate chip cookie if they have it. It makes me happy just thinking about it. :-) + +This place is great if you have a weekday morning available to come here..or an hour or two on the weekend. The little shopping area is great to browse around - when you can figure out a way through all the people in line! Don't get me wrong..the food is fantastic. I just like a little more relaxation on my weekend than fighting through the hordes just to get that amazing english muffin. It's worth it, but then I just feel tired.....annoyed. And that's really not how I want to start my weekend off. + +If you can....call in the order for Curbside Pick Up. That way, you can enjoy LGO without the frustration of finding the mythical parking spot, standing in a long line (albeit trendy) and searching for a table with everybody else so you don't have to eat the wonderfulness standing up.",review,wB7YiVcqEWyL7arlVLsa-g,0,0,0 +Qr232ykh-d73aAKQqfdu8Q,2010-12-28,hAWU7LKCKdeM0lYyYfY3fQ,5,"Can't go wrong with an iced gingerbread latte, hot waffle with Nutella spread and free wi-fi - especially shared with my beautiful wife. :)",review,ehCtzkedHa4Oq5c0IJ9X8A,0,0,0 +NAkRjPhS4yCD5trp0dY-bQ,2012-07-01,5luYHSisIHcx7YtZohJPaQ,1,Refused to call me a cab because I had a phone.,review,4OFp34tCTh9Pps5nsjt_lw,0,0,2 +MHy50GRrcXxMORpF_-kNCA,2008-01-24,INhnWFbTOFOil3Q_Is0RGw,5,"Yup, I'm reviewing a gas station. I like the Quiktrip chain in general and this station in particular. + +I find Quiktrips to generally be the cheapest gas in town. Sure, the Arco sign down the street might say it's 2 cents/gallon cheaper, but then you get whacked with the ATM surcharge, not to mention there's all those bums loitering in the adjacent bus stop. + +With Quiktrip, the place is well lit, there's always a trash can and window squeegee at every pump, the convenience store is better than most, and unlike most other gas stations, they don't charge you for the air compressor. Oh, and the person at the register will actually greet you when you step inside the door, while managing to sound sincere about it. Is that the coolest thing for a convenience store or what? + +Bonus: for those of you who enjoy shopping at the Hot Chick Safeway down the street, this is the Hot Chick Gas Station.",review,BX9K5JMU-NnjxJaNKxImpQ,1,2,1 +0COaKgRuDzBisc2AxcLzMA,2010-11-28,Q79BryA9gKNujzm39jpDKQ,2,"As a pretty devoted Fry's shopper, I have to say this is one of my least favorite locations. Unfortunately, it's the closest one to me, so I end up there often. It's almost always crowded, the layout is less than intuitive, and I've gotten questionable produce on more than one occasion. The employees are friendly enough, but it's just no comparison to other locations. + +By the looks of it outside, it seems like it would be pretty large, but once you get inside it's cramped and the selections seem limited. + +I suppose this is mostly things they can't change, but it's enough to make me drive a few miles out of my way to avoid it if I have the time.",review,a8gpBi7biN9VAoJwKgl3Xw,0,0,0 +PoRYjYUSjmeWM1WLsx_45w,2012-07-15,XThJY15-3koNSfynPQTJ_w,4,"The view from the top is quite amazing! I took my fiancee up here for a sunrise as part of her proposal, and she loved it!! You really can see the whole valley. As you're driving around Phoenix and have an unobstructed view to the south, you should be able to see all of the radio antennas at the top. You'd be surprised how high you are when you finally up get there. The rangers up there are friendly too. Just as some of the other reviews state though, do WATCH OUT for random bike riders, runners, and various pedestrians on your way up and in. The roads are a little narrow and there is not much room for error.",review,8qSr4B1NJL99rlylewUjOw,0,1,0 +qBc36uFI7orWS8NpYZCv_w,2011-02-14,u2OXOYGUcKilQf8ndpbSkw,3,"A perfectly good place for a chill Friday night dinner. I absolutely loved the atmosphere. Matta's has an upper level where every table is set up like a balcony over looking the main level, it feels like your in a courtyard. The only thing it's missing is an open look at the sky. There was also a mariachi band playing during the night which added to the appeal. And to make things really cool (at least to me), they did a Mexican version of the Godfather theme song. Loved it! + +The chips and salsa came out right away. The hot had a kick to it, but wasn't very flavorful. The mild was excellent, but I prefer my Salsa hot. I tried combining the two, which was only okay. The menu isn't really anything special. It's a lot smaller than most Mexican restaurants, and is loaded with the standards. My girlfriend had a chicken burrito which she enjoyed. I had the chicken fajitas, which were good as well. The food was good, but not great enough to make me run back out. + +The service was excellent. Our waitress was on top of everything despite the fact that we were on the upper level. We watched and felt a little bad as she had to run up and down the stairs (she usually took the stairs that weren't as visible, but you know what's going on) to get everything for us. I could imagine that if a server were having a bad enough day, they would just make people up there and wait. + +We just randomly chose Matta's because we happened to be at Mesa Riverview. I enjoyed my experience there. While it's not a place that I'm dieing to try again, if someone suggests Mexican, and we're nearby, I'd recommend it.",review,thdVzCfKx-DV0zYWqId3pw,0,1,0 +UUssRgBCO_riWg3chbv9Zg,2011-12-27,gNepvdQlS4feEB92g33qVw,2,"Not impressed. Beer was cold, but bar keep was disinterested in assisting us, atmosphere was drab, place was small, and the to go order was TERRIBLE! There was no BBQ the day we were there and I just wasn't feeling the place. + +My hubby and I have been missing this place since it closed its original restaurant in Cave Creek. We heard it moved to Phoenix and we found it and went there this past week. Unfortunately, it was nothing like the old, hopping, smell good, smokey, fun filled environment of the original SF. + +I can see that they have a lot of regulars and the barkeep knew everyone that walked through the door, which to me, was very cool, but it just wasn't gelling for me this night I suppose. + +We ordered the deep Fried green chili's and there was soooo much batter on them, I had to really concentrate hard to find the chili. I ended up peeling all of the batter off of the chili's just to get a small bite. icky. + +I would give this another chance just because I hate writing a bad review. So, after the holidays, may check it out on a Friday night and see where it stands then, Also, I will hope that when I arrive next time, the smoker out back is kicking and there is some REAL BBQ to be had.",review,VaLglvhXegtW1OMF6_Xfag,0,0,0 +byhwHi0lhYdyY5kSpuqoaQ,2012-05-26,PgSPQE9n-c3FqUhmSoJHAw,4,"Here last night with friends. We had to wait a little longer to be seated than I would have liked but we were a party of five so I understand. Once we were seated service was quick and pleasant. We shared a couple of the flatbreads to start, so by the time we ordered entrees I was already pretty full and went with a salad, the strawberry balsamic, which was delicious and just made me feel all ready for summer. We were there quite a while talking and enjoying our meal, and the staff never made us feel hurried although it was a pretty busy night. We tipped well enough that I don't feel bad about taking up space for that long, that's something I always make sure to do in that situation.",review,h3TnHCqFga0VgPO390PjKA,0,0,0 +d-wxvpytpGuvSp8w1M4FzA,2011-02-23,FabrQiKKx83aiG4PNdd_hA,4,"Don't be confused by the Yelp definition, ""Yay, I'm a fan"", Lowes gets 4 stars because they have great employees that get me out of there fast! I'm not one that would typically be classified as ""Handy"", so the fact that I can go into Lowe's, and get someone to give me DIY instructions in about 5 minutes, makes me happy. I've been to several Lowe's/Home Depot's in the past, but I feel compelled to review this location, because after 10+ trips (mostly on the weekends), I have never had to wait for assistance or behind more than one customer in line. Also, they get bonus points for not only allowing my pups in the building, but complementing them on their cuteness =).",review,Zwtx7FLZcK5F2P0-Tz8mHg,0,1,0 +R3sbDS0YcJDedSmUjwE48Q,2012-12-29,olF_c_Lv-MCdFrfb6ixILw,5,Tried going there for my 1st visit and they were closed during hours they were supposed to be open. Have tried calling them a few times during normal business hours and did not get anyone to pickup. They may be closed for good. Not sure.,review,g45j6zxyjTmEy6nhf42o0g,0,0,1 +vZBYSQtTbY9MaYu5qNuU8Q,2008-02-01,s6Gx6KvpjEdbNK_yYVSyhw,5,"Piestewa and Camelback Peaks are the two boobs of Phoenix. They're real, and they're spectacular. + +Of course, being all-natural one is just a slight bit larger than the other, but this is barely noticeable. Camelback is barely 100 feet higher than Piestewa, whose nipple... er... summit, is at 2608 feet. Climb either one and you can enjoy great views of the other at various vantage points, not to mention views of the city. + +Although Camelback strikes me as a funner climb, I give Piestewa 5 stars because for what it lacks in the intangible fun factor it makes up with being just a tad less insanely crowded. Piestewa Peak Park also has a number of really cool looking trails that don't go up to the summit, which look to me to be worth exploring some day. + +Speaking of female body parts, the former name for this peak was ""Squaw"" Peak. This has inspired one of the most ridiculous controversies in modern times in our state. Native Americans are offended by the term ""Squaw"", and regardless of the linguistic origins of the word, it is basically the equivalent of terms such as ""Negress"" or ""Jewess"". In the 1990s, the State of Arizona proposed ending the controversy by renaming the peak after our greatest political leader ever and the father of American conservatism, Barry Goldwater. The whining dipshits who apparently constitute our voting population rejected the idea. They'd rather continue using a stupid name that has no historical or sentimental value whatsoever just to spite Native Americans, rather than honoring one of their finest citizens. + +And so, in this decade, Democratic Governor Janet Napolitano put an abrupt end to the whole issue. She gave the sqaw-apologists the finger and ordered the renaming of the peak to Piestewa, after Lori Piestewa, the first US woman soldier to be killed in the 2003 Iraq war and a member of the uniquely-Arizonan Hopi Nation. A fitting end to the debate. + +NOTE: Even more fitting, the original name of this peak was Squaw Tit Peak, and I swear to God I'm not making that up to be funny.",review,17PPxx8RxjOUD_nQZ1aHEw,5,6,11 +UAATzhTdfd43S8F0SwXDcw,2012-09-07,jw-Hqj5F0SO33vRhw0W5zA,5,"I just love Chipotle. Fresh, yummy, spicy (if you want it to be). And the restaurant was clean a HUGE plus! My personal fav is the chicken burrito, no rice, no beans w/ fajita veggies, pico, cheese, sour cream, and lettuce. Guacamole and hot sauce on the side. So delicious!!! The person who did our order was so nice! It was my friend's first Chipotle experience! She was impressed by how big the burrito was. I'm glad I only live a few blocks away... because I will be back.",review,JPdGiAA8qNS-9Re2RN5qVA,0,0,0 +FGePlnlKXHxBrxYMNGtdAw,2011-03-25,mIhNUhDZqzUM6xstFv7lGg,5,"I love you, Marquee Theatre. + +Just last night I saw Dashboard Confessional here and it was packed. +I have seen many shows here and I have not a single complaint about The Marquee. The bartenders are really friendly, the bouncers do a great job, and the bands they have play here are always phenomenal. Not to mention, the sound guys do an awesome job. + +I love how big it is in the Marquee, because it allows for tons of people to see a great show. One thing that most venues fail at is keeping it cool inside of the venue, The Marquee on the other hand does a tremendous job of keeping the temperatures bearable in there. + +The only thing I hate (and this has nothing to do with The Marquee itself) is that I am always standing next to belligerently drunk, annoying girls who can't seem to keep their mouths shut during a set.... Please don't speak... I am listening to Chris Carrabba's angelic voice, thanks. + +All in all, I think that The Marquee Theatre is my favorite venue of all time.",review,eL2AbD_vXdP57eewFH21lQ,2,1,1 +LzNJLEIo4gh-X_rmDkNkNg,2012-07-12,yHkvJxOyBbGT3MG-d487zw,4,"Great drinks!!! + +Good atmosphere + +Fantastic food (the bbq chicken pizza is a must) + +Nice people to conversate with + +What is not to like? + +Oh yes, the creepy guy that kept staring at me. Oh well, he will not be there next time I go...I hope :)",review,mRAPMBM3dbw8KXNit1aDCw,0,0,1 +0lEp4vISRmOXa8Xz2pWhbw,2012-06-12,fm77arZHyksGfjdRoSB5Zg,4,"This location has been so many different restaurants in the past few years and now there is finally a good one! It's basically a fancied-up paradise bakery with better food, bread, and condiments. Oh and better prices too. I had a small Chipotle Chicken salad and a small tortilla soup and that was a good amount of food- with a drink, for only $10.58. The soup was great! And they let me sample several kinds before making my decision. I also loved that they had at least a dozen different kinds of hot sauce bottles on the wall that customers are free to use as they please. I tried three because I like to bring the heat and because they were available. + +My only complaint was that the dirty dish bin was overflowing even though the place was super slow. Can't someone handle that? Its gross to have to move other people's dirty dishes around in order to fit yours in there. Ts seems like an easy thing to fix- someone pick up dirty dishes every couple of hours or something.",review,wC1CPV5bf--bDLtlhNSPLg,0,0,0 +W6TgqysHj-5rFryJ2IIyfQ,2012-02-21,ZosKIEfjUXP64RIg6bCmyg,2,"I've only been here once, and for good reason. To put it nicely, the service was seriously lacking. I walked in and nothing. They didn't ask if I needed help looking for something, greet me, or even acknowledge me until I was about to pay. I guess the magazine the cashier was reading was VERY important. I've been to several comic book stores and I don't need someone to hold my hand, I would just like common courtesy. On the positive it was a organized place and the selection was pretty good.",review,k7hlbzPqiyNRDSKDNsevRg,0,0,0 +ujLZmyy11g1JHCQTxRA3Dw,2011-09-28,SOUAXFGLrvunLJQNXQcgCA,4,"Tucked in a quite plaza In Chandler AZ, is an un-assuming, little Thai restaurant with BIG flavor. Despite the lack-luster curb appeal from the outside, the inside is quaint and clean. +Get things started with some spring rolls. The sauce isn't mind blowing, but those 6 dainty morsels of fried goodness have got some real flavors goin on. (especially when dipped in your curry) +I recommend their signature dish, ""Thai Basil,"" for those who haven't been here before. +I prefer an extra spicy, KANG-DANG (red curry): Your choice of meat, simmered in coconut milk with bamboo shoots, bell pepper, broccoli, carrots, green beans and Thai basil, Served with jasmine rice. + +I will say, some menu items are hit and miss. So don't judge this place based on ONE dish you don't like. (You can find something you aren't going to like on every menu across the country). +Friendly service, fresh ingredients, and an authentic ""je ne sais quoi,"" earn Thai Basil 4 stars. ""I'm a fan."" +Eat well, Live well, and surround yourselves with ones who do. - Cheers",review,RqfHaelhNMn-UpTRnAtw8w,0,1,0 +zruUQvFySeXyEd7_rQixBg,2012-03-23,KnBBQ-r_eP9h3MNEBhhNrA,4,"We arrived at US Egg on St. Patrick's Day at 10:00 am before the A's vs. Giants Spring Training game and only had a wait of 15 minutes. Not bad to start! Promptly seated we were brought a pitcher of water and ordered our breakfast. The Denver Scramble is delicious! My husband ordered the Hash & eggs - reasonably priced, quick service and a ton of food to start your long days off right!",review,RgqU8dg9zaSSkwAlyB5Isw,1,2,0 +1_WD7kvNQAbscw1c7CFH3A,2012-01-27,WZsnJvHQoXIRlYA0c9XmQQ,5,"Their food was GREAT! I had the pancit, lumpia, and that purple rice! The price was not bad for the amount of food that they gave you! + +Even though they had a very long line they were still very fast with service!",review,AKfF9LglCfrV6SKoIDgnOA,0,0,1 +3Df6ICj0rHROVH4xUlb7Yw,2013-01-04,1lfLTA62ZTVTRoAeXC7EXA,4,"We were staying at a local hotel and used online ordering to feed our crew. The ordering went smoothly and the pleasant surprise was the food arrived early and warm. We ordered two of their usual pizzas and one of our custom orders. Could have had a few more toppings on one of them, but overall nice value and timely service with warm food. We looked for the specials on-line and save a few dollars. Worth the time to do so. Would order again.",review,z5QQGDqErjMKD8XtM00s7g,0,0,0 +xmjv8g356v8Qo55ICjG8rg,2009-02-16,hxX_83ihwWyWE_p8mO077w,4,"My family and I love this place. Yummy food, great service, kid friendly, rarely a wait, great prices, nice beer selection, food always comes out hot, and people around you are having a good time. The boneless chicken with raspberry barbecue sauce is so so yummy!",review,0H9ne5frm1GjO6TjUwbxlw,0,0,0 +r3r_bAfa6pZKIhQB82FizQ,2009-02-12,-0d1TTyKmgknAYVEDLaqgQ,5,"FINALMENTE!!! + +Andiamo.... + +FOOD +-------- +Appetizer: Fritto Misto, which is a trio of fried appetizers. For the day, ours included a cheese, a stuffed olive, and whole leaves of broccolini. The cheese wedge was great (I wish I remembered what it was), and have you ever had a deep fried veal-stuffed olive? Very interesting. The flash-fried broccolini took a little getting used to, since the leaves kept crumbling as I was trying to eat them, but still tasty, if subtle. + +Main: Orecchiette alla Puttanesca. Man. This is the real deal. Orecchiette is the ""little ear"" pasta and ""alla puttanesca"" means it's made ""whore style"". + +And what a beautiful, classy, yet very vibrant whore she is. + +The pasta was cooked just perfectly, and even though puttanesca sauce usually goes with a stringier pasta (spaghetti, linguini, etc.) it worked really well with the orecchiette. + +And the sauce. Holy mother, this streetwalkin' hussy of a sauce with its 12 ingredients: capers, breadcrumbs, anchovy sauce, garlic, olives, basil, olive oil, and, uh, the other 5. The flavors were a perfect, clear-heeled harmony. Nothing overpowered the other. Subtle and humble home food. It really tasted just like something my Italian friends' mothers would cook in their kitchen. + +As for the servings, when I first got my bowl I was thinking, ""oh ok, this is a European serving. I'm still going to be starving after this."" And, um, nope. Why? Because I slowed down. I savored my meal, and took my time with the dish. And by the end, was I hungry? Not at all. I really enjoyed this meal. And the serving was just right. Complimentary packs of long breadsticks are also found on each table. + +SERVICE +------------- +Very friendly, efficient, and willing to go through the menu in detail and answer any more questions about the restaurant. Dishes were brought out in a timely manner and there was never any rush after the meal was completed to clear the table. + +And the mood inside Pastabar was palpable. Everyone looked happy, excited, and relieved that the restaurant was finally open for business. And I felt the same for them. + +SETTING +------------- +I would say the space was just the right size. Not a cavernous place in the least. Probably the same size as Sens, maybe even a little smaller. It's tucked away in the very back of the hallway of the building, so much so that I completely missed it when I was IN THE HALLWAY the previous afternoon looking for it. But I like it a little hidden off, actually. + +The colors inside are warm, with a modern bistro feel. No windows looking outside but I didn't mind that. There is seating at the bar, a few two-tops up front, and larger tables in the back. Selections from different Shins albums made up the soundtrack throughout the dinner, and while the music sounds like it could be incongruous with a bunch of little ears cooked whore-style, it worked. + +I definitely don't think this is going to be as ""scene-y"" as Sens. It has a completely different vibe. + +EXTRA CRIB NOTES +----------------------------- +* the main courses of Pastabar are pasta and ONLY pasta. No veal parm here. And no hoikey sauces like Olive Garden-y alfredo or a jar of sugary Prego. +* It's great +* Prices for antipasti range from $7-$11-ish and mains $11-ish to $18. I spent around $26 with tax and a nice tip. +* it's great +* No liquor license (yet). For now, sparkling waters, lemonades, a number of sodas (including root beer & cream soda). +* it's great +* complimentary valet awaits the diners, if you're averse to parking close by yourself. +* it's great +* It's open till midnight on weeknights and 2 am on weekends! What more could you ask for? +* did I tell you it's great? + +ALL IN ALL +--------------- +An awesome asset to the area and I'm very content. And as much as I loved my whoreish little ears, all the other pastas on the menu sounded incredible and I can't wait to try them all. + +I'm wishing these guys much success and giving them gratitude to finally being open. A few minor kinks to be worked out (and I wasn't as into the appetizer as I was my entree) so it's not totally perfect but they have started out very strong, and it's only Day 2. + +And here I was thinking my days of giving out 5 stars were over (ok, more like 4.55 and rounding up)...",review,htC49ZwXiKNka5cp0GKBfQ,17,16,13 +fi5TM0p_6es4QEw8SKRSfw,2010-02-21,hfUpkVDfarhfaogS_Y0YOA,5,"This has by far been my favorite movie theater and favorite movie chain in Arizona. This location is better than the others I have been to - quieter, friendlier staff. The theaters are clean and usually not packed either. + +I love the t-shirt and cup program - and buying tickets at Costco. I went to AMC last month, and spent a lot more money all the way around and did not like the theater either.",review,MBLcbQ_miC1c11cfXQRKoQ,0,0,0 +Y_Y91oeUrIwYa18F8ey5NQ,2009-04-14,GOQUvL0xb-Bqj_79TvyudQ,5,"If you've read some of my other reviews you'll see a trend. + +Kohl's Department Stores.....Brewers spring training...... + +Yep, I'm a cheesehead. (But if you EVER actually catch me wearing a hunk of fake foam cheese on my head, shoot me. Really.) + +What can I say? I like Culver's. It reminds me of home. It's total comfort food. + +Got one of their Wisconsin Swiss melts. What other fast food joints offer burgers with Swiss on rye? The crinkle cut fries are always hot and fresh. And tasty. + +Culver's is known for their frozen custard. What Wisconsinite has not driven past a Culver's, looked at their sign, checked out the 'flavor of the day', and gone, ""Hey, that sounds good!!"", and quickly pulled into the parking lot? + +If you're from Wisconsin or the Midwest stop in for a Butterburger and some custard....it will bring back lots of good memories. + +Like another reviewer noted when he said he felt like he was in Iowa or something.....well.....that's the whole charm behind Culver's. You DO feel like you're in Wisconsin or one of the upper Midwest states. + +Granted I'm not the best person to review Culver's....I'm a little biased towards it. But if you want a 'different' kind of fast food experience and you've never been to the upper Midwest, it's a heck of a whole lot cheaper than flying there. + +Give it a chance....see if you like it.",review,ZKuevUayT2eqkGNrJm2nAg,3,2,2 +xxSq7BBoCwUHnaxMMgF5mg,2012-10-05,LNAnF5YqVMh91A3eSsoVpQ,5,"Let's be honest, when you walk into a tanning salon if you have high hopes you'll expect to see a nice person behind the counter who is friendly and can tell you the prices for packages and the max times on the beds. If you have low expectations you'll expect a bored teenager who hands you a price sheet and stares at you looking bored. + +Walking into the Total Tan I had pretty good expectations based on the reviews and even those were blown away. Dallas was the person who helped me (I think he's one of the owners?) and he was sooooo friendly and knowledgeable I spent more than I was originally planning but I feel good about it actually. + +I had looked at the pricing online so I had an idea of what I wanted but he explained things about the beds that I never knew and that none of the other salons I'd been to had ever told me. He was super personable too, even asking for my name just during his explanations of everything before I had committed to buying anything. He made sure I knew every detail of the beds, the differences, gave recommendations and was never pushy with any of it. During our conversation several people came in and he always asked my permission first to take care of them and I don't think he had to ask for their names once, a good sign that he pays attention and remembers his customers. + +I could go on and on because I was so impressed with his service and also the location itself (super clean, trendy, nice extras in the rooms like baby wipes and extra towels) but I think you get the point by now. Just check this place out, you'll be happy you did.",review,q3Fa0PhTGzRl-05fXHIi4g,0,3,0 +29hR24tcAM3JZaXfA5xCxQ,2013-01-05,lI8Bo4AMQT7C-zNLgvRasw,4,"My husband surprised me with a stay-cation at the Westin Resort for the weekend and we ate here on our first night! + +Let me just say, I LOVE MUDDLED DRINKS, I am not a fan of cosmos or martini's or anything that just tastes like strong alcohol - BLAH! For me stronger isn't better, flavor and uniqueness is better! This place has by far the best muddled drinks I have ever had! If you just want to go for drinks they have this cute little drink bar right before you enter the restaurant - separate from the main dining which I thought was nice. The decor is romantic latin! I love it! + +We started our dinner first by receiving these potato rolls. OMG where have these been my entire life!!!!???!! They are just fall apart in your mouth good! We both ordered mambo mango drinks - STELLAR! We then got the tres ceviches (lobster escabeche / mixto clasico / ruby red tuna) the lobster was the best! But all very good. However the crab empanada was my favorite! YUM! + +My husband got the jidori chicken and myself the adobo pork. Both were good but not GREAT. Too much seasoning on my pork. To me this place is a MUST go to for drinks and small bites. I would have given this place five stars but the entrees just didn't do it for us. However, it was not horrible - just okay. The rest of our experience with dinner - service, restaurant ambiance, overall feel and all of our food and drinks before the entrees was AMAZING! So we will be back just for a more small bites and drink night!",review,PWtlBs3PCH1l0DdypgEszw,0,1,0 +jPsSPQpDd_x1AFw6Ts4wKw,2011-04-15,bcJsF2Snj2SZx2uGZBGJMQ,4,"This is a great dog park. There are two sides, a big dog side and a little dog side. There is a little bit of seating but you can bring a chair if you want. There is water for the dogs and pooper scoopers as well. Everyone that visits for the most part is pretty nice except for the occasional crazy lady who tries to discipline other people's dogs. + +The only thing that would make this dog park better would be if it had lights so you could come at night and if it had more shady areas for the hot summers!",review,My9DUYlhgwARA-6JJ8_Y6Q,0,0,0 +Yet-ozuhwfG5NLeLqeKcWg,2011-01-24,sBms4XMlA7ynZoPpfrhM5Q,5,"This place really made a terrible situation as easy as possible. Our cat was hit by a car or beaten, and my husband found her immobile and crying horribly in pain. We rushed her to the clinic, and the doctor saw her right away. She told us our options, but was very upfront about the liklihood that our kitty would pass no matter what we did. She didn't pressure us one way or another, and left the room so that we could talk privately and make our decision. My husband asked if they could give her some pain meds while we talked about it, and they gave her some immediately. + +Once we made our difficult decision to put our kitty down, she brought the cat into a private room with us so that we could say goodbye. She left us alone and gave us as much time as we needed. She also let us be present in the room when they gave her the final shot. At all times the doctor and the techs were compassionate and very respectful. I was crying and they were very sensitive to my feelings. They treated my little kitty so gently even after she had passed. They even sent a sympathy card to our house a few days later. I really appreciated how they helped us through this difficult time, and I would definitely reccommend them if anyone else is in a similar situation.",review,GF6IArfVHEFAQmwekt7wug,0,1,0 +l1kqHWtICTNk8TdCNisf5A,2011-03-29,x08RjoY6FzKBAqLWIw5psg,5,"OK, yeah, everyone LOVES teriyaki, we know! + +Well, don't so quickly dismiss the other absolutely AMAZING dishes served here! It may look like a little pre-processed Japanese hole in the wall from the outside, but they're a die hard home-made mom and pop your mouth full of great food establishment! + +I'd highly recommend trying the Katsu bowl! You can hardly find ANY kind of Japanese katsu in AZ, yet they have an excellent one that's very traditional, but not too expensive! I'd love to explain the mystique of this dish, but too many people think that fried egg with onions and leeks topped over a diced pork cutlet that's coated in panko bread crumbs is too strange to be palatable. Well, to them I say you should educate your tongue, and expose it to some delicious culture! + +There's also Orange chicken... This dish is completely the bee's knees. It easily and without remorse makes Panda Express look like a burnt out oil can that a homeless person decided to cook some chicken in over a pile of burning newspapers. + +Their house beef? Spicy garlic brown sauce and beef with mushrooms? Heaven. Simple and delicious. + +And I haven't even mentioned their coup de grace yet. Their fried rice might seem a little ""heavy"" on the surface as it's lightly fried with some garlic oil, but it outclasses all competitors. Paired with their lightly fried shrimp, it's sweet garlic love. Seriously, their fried rice is the Sean Connery of fried rices. + +As I've been eating here for far longer than I'd like to admit, I'd have to say I might be a little biased. But, for the great unique quality and cheap price, I guarantee you're not going to find any better in AZ!",review,EbnK9Tb1iE8Svz2z-QPxNw,0,2,1 +EGiGWZp_zSqdeftiFQ7MbA,2010-04-30,gZV-8mMVVaNx1jwm_7h9HA,3,"From the outside the place looked alot busier however, Not a bad place to go for lunch on Friday afternoon. Especially when it's close to 1pm as the place was pretty empty. My coworker order brisket tacos and they came out stuffed with tons of brisket. She said they they were very good and I will take her word for it as they looked pretty tasty. Now me, I am not an enchilada person however the enchilada de avocado sounded pretty good as it had two of my favorites stuffed in in, avocado and artichoke. I must admit that it was pretty good. I only finished a little bit of it as I had filled up on the warm chips and salsa that was served when we sat down. Yum. + +So why only three stars? Well It's actually 3.5 stars as although the food and the company were great, the service was a little off. Like I said the place was empty and yet our server either forgot about us at times or was busy doing something else in the back. Nicole, our server was sweet enough but still.... hmmm. Oh well no biggie. It was empty and we did get in and out in under an hour but not 5 star worthy. Will I be back again? Probably as the food was pretty good. Heck the chips and salsa alone are worth giving it another shot.",review,4E_nPWw89FLFHdNsEgMH-g,0,2,0 +X5QTGpPfqXFtmtizsGAksw,2011-05-02,oYcKDHrZ8ziPdX9ORRoJUw,4,"Enjoyed sitting outside and the barra viejo shrimp dish. I didn't find anything ""to die for"" but it's good. More importantly it was a nice evening and I enjoyed the experience very much. My waiter was very laid back and friendly. I didn't feel rushed and was able to have a relaxed dinner. Case in point- I'm usually a one-drink girl, but I had 2 that day.",review,qyy2X0sjuwcikplzdATfGg,0,0,0 +_bsTEMjThKNd8CfiHBX6wg,2009-10-06,YWiQJBrXTuSYgkv1y7QaRw,5,"I first heard about gangplank at the Arizona Entrepreneurship Conference last year. Since then I have been a regular there and the people that co-work or work there are some of the most inspirational ones I know and are passionate about bringing start-up culture to Phoenix area. + +The companies that anchor Gangplank are always working overtime to plan events from Gangplank Jr. for kids to learn programming to the Wednesday ""brown bag"" talks that have ranged in topics from how to pitch to angel investor to a local news anchor talking about how they are using Twitter as a resource for news leads. + +Gangplank rocks. Nuff said. + +@iamtimhardy",review,zS4hmZxiOa7gA5yndaC4EQ,1,1,0 +LzNJLEIo4gh-X_rmDkNkNg,2012-02-24,BeTsdc7abK_c6QIZPV3o7g,4,"I am not a beer drinker, so this is not rating the beer, but the food and atmosphere. + +1) Atmosphere: sweet - great patio and nice bar scene inside + +2) Food - pretty good for bar food + +3) Hit it up if you are in Tempe, its just one of those places you need to go",review,Br9mpMhkVunsp8Un5GpYWA,0,0,0 +kzZJjm56gG0aSpyA-dS3eA,2011-01-22,2ezengWz-lYIDWRCX5cfPQ,5,"I'm President of the Local scooter club so I know and deal with most of the dealers Valley Wide. Tylor the GM and team run a good shop. Very friendly. Don't get me wrong, they are there to make money but they are not push. You are free to hang out and ask lots of questions. Good assortment of accessories and they can pretty much get anything. + +They know bikes and parts inside an out. Service on my Piaggion BV500 has been fast and fantastic. I did not say cheap, but fair. Actually they had a Buy 1 tire get the 2nd for 1cent event this week. In the past they had a 1/2 price on all their helmets. Got a Scorpion $220 helmet for about $110. Just ask what and when they are having specials. + +I don't buy the review below about bait and switch, pretty serious accusation. However, GoAZ and Gina over there are good people as well.",review,NlZE2Oir3HLV0XdELgkjcg,0,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2010-05-16,TFkWpWEpcioVVV-iKU3fdw,4,"I've been here a million times and usually have lunch at the bar. This is the classic french brasserie style restaurant. With a nod to Balthazar restaurant in NY's Soho this is a fun place. + +This visit I sat at the bar and had the curry chicken sandwich on toasted sourdough. I think that toasting the bread on any sandwich makes it better. The sweet curry flavor make this sandwich a winner. + +Sean may be the best bartender in Scottsdale. He is always friendly and very efficient. + +Definitely stop in here the next time you're at Kierland Commons.",review,Kqvfep2mxS10S50FbVDi4Q,1,0,0 +M0Ulu3PzwBumgOZJL-6KnQ,2011-03-28,_dO-XDY5X_R0cp53bEGnPA,4,"Finally! A non-corporate place in Chandler that doesn't try too hard, yet knows how to please with high-end ingredients: local and organic when possible! + +I ordered the Chef's Burger from their lunch menu. Grass-fed, ground in-house 8 oz burger with arugula, Gruyère, and onion rings. I personally would have liked the arugula melted under the Gruyère or tossed with the Russian dressing. It was too ordinary undressed on the top bun. But, it IS the Chef's Burger and if that's how he likes it, then that's the way it should be enjoyed. Oh, and the onion rings are awesome. + +The service was genuine and friendly. The food came out reasonably fast and HOT! + +It would have been nice if you could hear the music...it was just too quite. + +I will definitely come back and try other menu options and I highly recommend BLD!!",review,ZXTIFYJPsqBDeBaoGKJc_Q,0,0,0 +9Vu9KhK2-kBSM-FXvxXGNg,2009-11-11,mD0e-9jhmbG13jNxYcIg7Q,3,"For quick fast food.. this is my choice.. I usually call ahead and get take out.. Dont expect super friendly.. but its just take out.. not clear table service.. even if you stay.. I always get the chicken salad with sesame vinagrette on the side but I will say, Im not a fan of the pungent dressing.. I get the chile sauce instead.. vietnamese rolls.. and its not so unhealthy.. NOW my friends that usually nosh with me.. hate the foods they get.. they say it every time I suggest this place.. who knows? Since I havent really tried anything from my norm salad.. I cant say.. but for me its a strong 3..",review,sALB8-F04S9VcZMF_GkGUA,1,2,1 +QHyqYUZ0WdxHYPAenIuLjw,2010-05-18,ZceWozc1QEY0c3K4Xz5HYg,4,"Recently ""discovered"" Rosati's in Ahh-wuh-too-key. A friend (a former New Yorker no less) ordered us some thin crust, and I was surprised to find good ol' squares instead of slices. I was even more surprised to find that it's the best Chicago style thin crust I've had in my 6+ years in the valley. How have I not run across this place sooner? + +I wish they had a ""junk"" or ""garbage"" pizza special, but the Classic Sausage will do. Nice spicy hunks of sausage in almost every bite + +Avoid the wings though! Horrible. Wings should be deep fried or grilled . . . maybe I got a bad batch, but I think they actually BOILED them? Is that possible? Irregardless, they were terrible. + +It's a huge kitchen with a small counter area for takeout, so don't plan on eating there. It's in the strip mall with CK's . . . I wonder if CK's would let us bring in Rosati's pizza while we drink and watch the games . . . ? Wings aside, it's my new Go To for pizza",review,VcN9i7sPrGSOn4BnpOJ9tQ,0,1,0 +18TUn9oiW0k0yB6lheiOvw,2011-09-09,yj_LYhizV601mC2Y9ql55A,5,Yep -- still my favorite hole-in-the-wall eatery awesomeness. The brisket sandwich with cheddar and slaw and dippin' sauce was to die for. I ate at the bar and just enjoyed my visit. Can't wait til I can walk here!,review,aTi0NVrcPJWbN6jAsJVcAw,0,0,0 +d52zg-S0o940WUCK-nNiKw,2009-07-12,HqepGdfaKNmtNmdkkeuJVA,4,"I recall my first visit to Carolina's... + +The time? About 1 PM. + +As my GPS says ""You have arrived at your destination,"" I frantically look. I see nothing that looks like a hole in the wall restaurant! + +Well, I review the exact address, and note that the address (1202 Mohave Street) matches the ""ghetto"" building with all the nice cars parked afront. + +""Well, that must be it!"" + +I park. Then I walk up to the door. The entrance reminded me of a homeless shelter or food bank. + +As I entered, the restaurant was filled with people. + +Since then, I have repeated visits to Carolina's with a few favorites... + +- Chips and Salsa +- Shredded Beef Taco (Crispy) +- Cheese Quesadillas +- Cheese Enchiladas + +The food is low-priced. For example, tacos are about $2 each. Burritos are about $4 each. + +Additional Notes: + +- Closes relatively early in the evening. +- Serves breakfast.",review,E-Bd5r6Z3zMGA75_D4IRKw,4,5,5 +vwZ15OkVO6PemAe87k0M-Q,2010-12-09,lOYV0P8kCp8ll8bI12nmxQ,2,"The manager at this location is a pretentious jerk, he is condescending and immature. I will never return to this place or recommend it. The food is delicious, the atmosphere is sophisticated but the crowd is lame and the management is even worse. Spend your evening and your money elsewhere.",review,kFhzv2iDyBrqvfMZHt-yYw,0,0,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-01-08,mRAbu8Oidt88_MST5GoQTg,4,"My friend and I decided to try this place for happy hour around lunchtime since it's such a short walk from ASU. I ordered a glass of the crossing, which was tangy, and a little on the dry side with a fruity aroma. Going off of a college student's budget, we shared a plate of the bruschetta which was a bit pricey for 4 slices of baguette with toppings, but delicious nonetheless. Pulled pork and salmon were my two favorite! The atmosphere is great and it's always lively and full of people- plus it's a great location.",review,ru6uX6w_ms7B_Q3U7wMYbQ,0,0,0 +SLLRCOUiq-WY0nmePLQAYQ,2010-03-20,nTCK1ssbAbyZlAYFJAaZZw,3,"Big fan of their SW Chicken Caesar salad and fire roasted tomato soup. My favorite sandwiches are the chicken panini, the turkey cranberry, and the teriyakki chicken wrap. I love both wildflower and Paradise but Paradise Bakery has the best cookies. And although I do not get it very often because its a killer in calories, the chocolate cheesecake brownie is to die for!",review,Hy8FHZmJIRP-WNMjQZqeMw,0,0,0 +x4L42igQPv4TFlqGR2Wthg,2012-03-18,r20BS868J_pNak2trwNoqQ,5,"Having lived in Chicago for most of my life I was more than nervous of what an Arizona pizza experience would be like. For the most part my assumptions were correct - but Grimaldi's is great! We get the margarita pizza and it's amazing. I'm normally a deep dish pizza person but Grimaldi's is slowly winning me over for thin crust. Also, this place has amazing cheesecake - the best I've ever had in a restaurant.",review,PimB4yUetjP2ylJGMpK21g,0,0,0 +7WGBi29_vj_7RcPVxpLNHA,2007-08-26,YKSDT60LP_Rvmpvj97CFQw,3,"Scrambled eggs, toast and hashbrowns. Simple, basic and just what you want for an early morning breakfast. It's kind of like having breakfast in someone's kitchen. I'd recommend starting with (and sharing) one of their cinnamon rolls. They're big and covered with frosting! Good stuff!",review,n1h87EmG_HBlp33v3X_QuA,0,2,0 +OE5nAmaSVaopeRS1Cs9Kuw,2009-12-02,CLegdxmPfC1u9IU-r_uGMw,4,"Come with an appetite! + +I went for a work event which was real nice. We had the private dining room and the whole 9 yards. + +All I can say is if you're not a fan of red meat or have a cholesterol problem don't bother. The ambiance is not as format as I assumed it to be due to the location and hype. Although, the meat and presentation is great. Anything you want sent right to your table and cooked however you would like. Just don't leave your card on the green for too long otherwise you will have more meat than you can handle. + +On the other hand, the specialty drinks are good. I don't recall the name of it but they served a traditional Brazilian drink that was wonderful. Not as strong for my liking but good. The salad bar was great too. Everything was fresh and there sure was a lot to choose from. Probably the best I have seen in a while.",review,PQOk3AaaODhSykbqYsSgEg,0,0,0 +UuAxFxxabj60OrMFdurShw,2012-12-05,915mO7l6Lmz_vWqfnIgwkg,5,"Everyone here is very helpful and friendly. No matter who I come in contact with I can tell they love animals and care about me and my pet. The vet calls me himself to discuss my cat's test results. They also made sure to give me a lot of information regarding the medications they are putting her on. I feel that my family gets good care from this vet. We ended up moving about 15 minutes away, but still make the trip to see this vet.",review,6gt6iJB1hiFvSrms5RWxgA,0,0,0 +PZv6SPORD9ivj4jwKvGgjQ,2011-02-21,7D_iPgl-pNRJjYq4O9G24w,4,"Q. How do you fix a broken pizza? +A. With tomato paste! + +Ok, that sucked. + +Spin-at-O's pizza is actually how it's pronounced as the owner learned to make pizza in Baltimore MD home of the Orioles or O's for short. Ok, I just made ALL that stuff up but it would have been cool. Right? + +Spinato""s pizza and calzones are amazing. Very heavy and sauce rich. If you're on a diet STAY AWAY. If you're not calorie counting-COME HERE. Their thin pizza is very thin and very good! We got the baked spaghetti w/meatballs calzone and it was what you'd expect but wow was it great. + +Only downside after eating here: FOOD COMA ZZZZZzzzzzzZzzzzz :)",review,Ui00Ci0DO3TCElTJ1rVY6w,0,1,1 +eZyqa81qS0LuH0Bv8vfvrw,2008-08-14,bopymn8kouD2GHzrca84cw,5,"No matter where you go in the World if you are wearing an in and out shirt or hat some big guy usually yells out ""In and Out Man I love that place"" I think that says it all.",review,pIuRwWH-mVwJeD1m8W2yng,2,2,0 +-3WVw1TNQbPBzaKCaQQ1AQ,2007-01-20,5vaFU2g9t88ge4Fm_JnM2A,3,"Had lunch here today after hearing all the colossal raves about it. However, once I walked in, I realized that any semblance of having an authentic Chinese meal went out the window (no offense, my hungry white friends!). + +I decided to try it out anyway, was seated by a friendly waiter and ordered the hot & sour soup (they were able to sub in chicken instead of pork - bonus) and the waiter recommended the house chicken to me. I asked for it to be made really spicy, knowing full well it wasn't going to be (no one EVER listens to me when I demand the food be spicy - listen, dammit, I'm brown, people). Anyway, that's my issue. + +The hot & sour soup arrived, and it was excellent. I was happy. Nothing mars a Chinese meal more than beginning it with a bowl of shiteous soup. Then came the house chicken (with string beans added for $1). Steamed rice costs another extra buck - I get annoyed when Chinese restaurants don't make it complimentary, but again, my issue. Anyway, the chicken was just ok. Nothing amazing and it still ended up feeling pretty heavy. So that dish I'm more willing to give it 2.5 stars. + +So why did I bump up the star wattage? I guess the service. + +The waiter: + +* noticed I wasn't devouring my dish and offered to switch it for any other dish of my choice, no extra charge. Who does this nowadays - in a Chinese restaurant no less? Extra star. +* is from the SF Bay Area like myself, so he gave me the lowdown for good Asian food in Phoenix (for dimsum he recommended Golden Buddha first, Great Wall second, C-Fu third - then for Vietnamese he recommended some place on 19th Ave between Indian School & Camelback.) He agreed that Thai, Korean, and sushi in Phoenix is kind of a letdown compared to California, but almost all the Asian restaurants (he admitted, including China Chili) cater to their core customers, who by sheer demographics are pretty much not Asian. That said, he told me that China Chili is THE place people go to for Chinese food, including Chris Bianco (of Pizzeria Bianco), the mayor, folks from Channel 10 news, the owner of the Diamondbacks, etc. etc. So take that for what you will. +* When I asked if this China Chili was affiliated with...""oh, the one in Fremont? No. But people say that place is good and fancy and has an electric piano."" Bonus points for knowing that. + +Anyway, he recommended I come back and get the Mongolian beef next time, which I'll definitely do, plus the hot & sour soup. I didn't mind the big open seating area - many Chinese restaurants in SF are like this, loud and raucous. + +All in all, China Chili is a case where service overcame the food (again, how often does that happen?) to come back and give it another shot. + +And there you have it.",review,htC49ZwXiKNka5cp0GKBfQ,2,4,1 +1eJiyKXx_ruNu6F36BJQCg,2010-10-02,4GN4dKHBVHEMzWyAGkZ6bw,3,"a bit too sweet (sweeter than Yogurtland and Red Mango), but liked the skinny mango and blueberry flavors, excellent spread of toppings (incl. green tea mochi) and great quality fruit. perfect stop-in on Mill.",review,r8xfTpifZ7gP5Cd5CSQaIQ,0,0,0 +91n02N35x38nvR1XH-jOAw,2012-11-03,yG7p1fhb0q8Pz_oUGU834g,3,Very VERY average. Actually disappointed in the braciole. Kelsey with the pretty smile and form fitting shorts would probably make me think about going back and trying something different.,review,JeBi1WOHYnCW7Jmi3-nrWw,0,0,0 +F78kWIJw1PrfS4CbB3qk4g,2008-08-19,G72ULY3aYWnsBh8V3GHnTw,5,"Video Paradise is great. For those who aren't financially comfortable enough for the monthly payment to maintain a NetFlix account, or when you don't feel like buying something from Amazon.com, Video Paradise is a wonderful substitute if you want to get something that you know won't be at Blockbuster or Hollywood Video. + +The selection is staggering. I remember the first time I stepped in, I was amazed. The only movie I really wanted to see and they didn't have was The Helstrom Chronicle, but that's okay. I'm not going to ding this place because they didn't have it. ""You didn't have The Helstrom Chronicle? Lame!"" I mean, come on. No one else has it. + +This place had it all, from little indie films to gross-out horror films I had long forgotten from my disturbing adolescence (Cannibal Holocaust, Faces of Death, etc.). They even had the worst movie I'd ever seen in my life: Hard Rock Zombies. + +The décor is that of sheer, unbridled love for cinema. You can easily spend hours and hours browsing through their selection.",review,mym5tXZoZCbuPCYQzI5Ysg,2,3,1 +fjHUnUP1Lt-YAbeWUx2LrQ,2010-04-11,JngfXIeZ16IEVs9q05TOaA,3,"Finally tried Sucker Punch Sally's today and I think it has promise. They are still on the small opening menu so the lunch choices were limited but I had the pork tenderloin sandwich and must say I was impressed. Obviously made in house and not frozen, nice sized portion and very tasty, almost like a German schnitzel. The fries were so-so, I don't care much for fresh cut fries as they are usually limp like these were. Will definitely give them another try for breakfast and when they get the full menu going in a few weeks. Nice vibe and the waitress was very friendly. If you live in the area and have been thinking about it, give them a try.",review,C5N_L46b_EYU_0WQJt3iwA,0,0,0 +fLtUF61A5WrKIRIaWlf9wg,2009-07-28,yJhmdViCBXMpPtIwT1UbBg,2,"This place could be great, and I've always wanted to like it more than I actually do. Occasionally, I have stopped into Mill's End for breakfast, specifically because they have crepes on their menu; in fact, their breakfast menu is actually fairly extensive for a small cafe. For reasons explained below, lately I've found myself just walking past Mill's End, no longer considering giving it my business. The general issues that I have with this place involve just a couple of basic things; if the owners made the effort to correct these, I believe Mill's End could be a great cafe. + +I have always thought there are three factors that can make a cafe stand out from its competitors. It is with all three of these that Mill's End falls short: + +1)Ambience. This means that the environment must be suitable both for studying/reading, as well as relaxation. So, the music playing needs to be something that is non-intrusive and that the customers can generally ignore; sometimes Mill's End has this covered, but other times not at all. Onto the seating. It seems that this cafe was decorated back in 1995, in an attempt to capture the coziness of the cafe on the TV show ""Friends;"" unfortunately, they didn't come close, but there is usually plenty of seating open. By the way, what is up with pseudo-sexual ice photography on the walls? + +2)Price. This is actually my number one problem with Mill's End. The coffee is reasonably priced, but the food is too expensive. Anytime I tell someone that I ate there, it's always the same response, ""yeah, their food is good, but it's really pricey."" Considering that this place is literally ten feet from a major light rail stop, I imagine that their business has gone up, but those prices sure haven't dropped. + +3.Customer service. The staff has always been just lukewarm. Look, I don't expect the staff in cafes and restaurants to be smiling like idiots all of the time, I only want to feel welcomed with a bit of hospitality; this has just always been kind of lacking at Mill's End. + +Honestly, I think this place has a lot of potential, but it seems to be awash in complacency.",review,ykg3-2C-8Vv3K4mVj1iSfA,1,1,0 +t_0576Esa58pcLHCEpj31A,2010-11-14,rHFrTHicKvplYqoAUl__FA,4,Really nice jumping point for a good night in Phoenix. Crab Cake Sandwich was great!,review,0Sunr838_CEnkDRSAgaz3Q,0,0,0 +HIiVx2mseVWKtx8TKfWC_A,2011-11-12,3mXMYCWEhQMGSaTk7tvTGw,3,"We visited for the annual Local First Fall Festival. There was no parking available, so we had to go across the street. There were also too many people, so crowding and navigation were problematic. There were a good number of tents offering free samples. It was great to try food from several local places, since we got to discover new places to visit later. Unfortunately, none were selling food, so we couldn't also get lunch on the spot and had to go elsewhere for a full meal. I like this event as a way to try food samples and explore potential places to visit in the future.",review,qQns9dP75RNOWOVWI_ZKZw,0,1,0 +XWvht_1ZLdK7EHJ3jo4q0g,2012-05-22,nK6jxzqS5pVVTDYtva_Lew,5,"Weekend plans prevented me from kicking off AZ Restaurant Week on Saturday. So on Monday, Venyse and I headed to White Chocolate Grill where we both had our cherries popped. + +We started out with the spinach artichoke dip. The blends of cheeses made this perhaps the single most spectacular dip I've ever had the honor of putting in my mouth. O.M.G. Venyse and I were practically clawing at the bowl to get the last of its creamy loveliness. But when you hit a home run so soon in the game, the rest of a meal can seem at odds. + +However, I was not daunted. She ordered the New York Strip with a side of mashed potatoes (with good gravy...what exactly is that?) and roasted carrots; I the blackened Mahi [*back story to follow] topped with crab and a side of Israeli couscous. We didn't share our protein, but we sampled each others sides. All were very good, but the carrots really stood out. The gravy and the potatoes were good and I loved my couscous. But halfway through here steak and by the last few bites of my fish, we both hit the wall. A food coma was certain. I persevered but Venyse relented and boxed the rest of her meat and carrots. + +Then came the white chocolate brownie. So sweet, so rich, so topped with vanilla ice cream. It was all we could to to make a dent in it. We both felt bad, because isn't white chocolate supposed to be their signature ingredient? + +Regardless, this was a terrific first restaurant to go with which to begin. And we both agreed it would be a place in our future dinner splurges. I also must admit I love LOVE the belt buckles. Having about 42 myself, I was intrigued when I first noticed what I thought read ""SWAG"" after staring for perhaps too long in that general region of one of the staff. (Really super sorry if that creeped you out.) It's actually WCG. + +[* When a group of us went to Key West one December to escape of the harsh winter of NWOhio and Detroit, we went to a restaurant the listed ""Dolphin"" as one of its menu items. I asked in a slightly shocked voice if it was really dolphin, to which the server responded it was actually Mahi. 'Oh,' I responded. 'Then I'll have the veggie burger.' Because even in 1998 I was a food bitch.]",review,nc3cqVN0UuB3m50-CcMftw,1,4,1 +Lnohr9bpCbHNsomazXDg-w,2011-07-12,Jp1Qz-v1T8l26EPpYb7Iow,1,"I waited 45min and ended up with a tiny gross little serving of tortilla with vegetable scraps thrown in it, served in a aluminum take-out box. The tables are folding tables, like the kind you play beer pong on. And they have pictures of kids and babies on the walls and signs asking people to send in pictures of their kids for the walls too, which has nothing to do with Asian/Mexican cuisine, it creeped me out.",review,OCsrk-5wLPhFMMGZUQasrA,0,1,3 +jVaujSVCpH9c2qb7XkvpnA,2011-03-22,DrFU7tPfdY-95Pm47r72nA,5,"I am so not a fan of the dentist. But Dr. Ito and his staff changed that. Professional, yet relaxed attitudes. From the moment you book the appointment to the time you leave you feel like are well cared for and that you aren't just a number or a dollar sign. + +While in the waiting area I flipped through Dr. Ito's ""Smile"" book that shows some of his work. WOW! He makes teeth look real, not like Chiclets. He does some fabulous cosmetic work! + +I went in to have a crown put on and it was quick and painless. So quick that I didn't get to finish watching the movie! Each chair has headphones and a flat screen that shows a movie (he keeps a good stock of the latest movies.). Who'd have thought that going to the dentist would keep me so entertained? + +I've had to bring my son to each appointment as I haven't had anyone to keep him. Does that matter? Nope. Dr. Ito's office is equipped with a children's area in the back where the kids can watch a movie, read a book or play a game. He thinks of everything. + +I have been recommending him to everyone I meet. I can't say enough good things about Dr. Ito and his staff. You won't regret going to the dentist if Sonoran Hills Dental is your new dental office.",review,n1ZKHhVozfzCDLEgsZTrkQ,0,0,0 +NH67MdKaFGNcP-dlu56pyw,2009-02-19,BkTIVrr0ghwYSOIwBmnk0Q,5,The best tai in downtown for the price! Masiman is the most tasty dish here!,review,JnRT9i2d71pY8D8ngzCz9Q,0,1,0 +9ziO3NpoNTKHvIKCBFB_fQ,2012-07-29,MsfsufTolTGqp8e1odn0fA,4,"I have never had a bad meal from here. I can't say the service is quite up to par considering the menu, interior and pricing, but sometimes the food is all you need to be won over. This restaurant is within walking distance from my work and when I have gone for lunch, I have never had to wait. The host is professional and poised. Unfortunately, the hostesses are not as much. But again, you can quickly look past that. The menu has already changed at least a couple of times which makes the dining even more fulfilling because you can keep trying new things! The food is definitely not average or casual cafe style, yet you can find things on the menu such as homemade chips, baked macaroni and cheese and a buffalo sloppy joe. The bar is beautiful and they have live jazz on Saturday nights.Great for a business lunch, a romantic dinner or tasteful happy hour.",review,dVJ_y1NGSA_g6rc-NDDWHQ,1,1,0 +3n9mSKySEv3G03YjcU-YOQ,2011-04-09,LgEe0Ryq099i2O8BhK5Nfw,4,"Very pleasant hip restaurant. Try as many Bruchetta options as you can; each order comes with 4 pieces (potentially 4 different toppings), and all the ones I got were delicious: Brie & Apples with Fig Spread, Tomato Jam & Fresh Sheeps Milk Cheese, Prosciutto with Figs & Mascarpone, and Fresh Mozzarella with Tomato & Basil.",review,xg4AdOGHFxJyWByFbG8stA,1,2,0 +6P2DqisDHtmD4Lvs2sMP-A,2012-09-09,cY55iO5GK4nsY4-4eCSHyQ,1,"Totally dissapointed. I had purchased a coupon from TravelZoo, to try out this restaurant, which given its location I would have thought it was going to be very upscale and we were expecting a WHOLE LOT MORE. +The Service was great, but the food, not worth it. The restaurant itself is very outdated, very 80's. +My husband and I had the crab cakes for appertizer. They were cold when they were served. We told our waiter, who in turn told the chef, and the message was passed back to us, that she appologized. +My Husband ordred a 12oz New York Strip ala carte for $29.95, 6 oz of that was pure fat! and for the price you would expect to get more meat than fat! I ordered a wild mushroom pizza, which was OK. This place needs an over haul in a major way, if they want to make any money at the restaurant, which for a Saturday night at 7pm when we went, was empty. I think the highlight of the meal was the bottle of cabinet!",review,L8NC1S3O0AgBwrysvG1wfw,0,0,0 +dpbY5XypBdeFmo8DsZ-DNQ,2011-12-25,23K_F9_k9LaWI44jw31qDA,5,"Man, I love Southwest. Best airline ever. After a bunch of holiday delays on my way home from a business trip they comped us all a round of drinks. It's nice to have an airline that can give you a glass of wine to compensate for a one hour delay. Cheers to that!",review,4jZwjy_SE1LOmYFN9IWibA,1,0,0 +xsSnuGCCJD4OgWnOZ0zB4A,2011-10-28,8u4Zx8HOdKGIUdFzjqqXFw,3,"Really mixed feelings here. Met a friend here on a Thursday about 6:45. Place was busy, but we were able to get seated immediately as it wasn't totally full, and even being not at capacity, it was insanely loud. Naturally I expect a beer bar to have a relatively high volume but this place was ridiculously loud to the point of being annoying. + +The beer selection was good though I'm not sure that makes up for the loudness and atmosphere that seemed a bit off: really brightly lit, and the decorating was of the signs-bought-new-but-made-to-look-old variety. Almost like a Bennigan's, kind of fakey-like. And why oh why does a place that specializes in beer and seats so many people have just a single urinal and single stall in the tiny men's bathroom? I hate standing in line to pee but than again maybe I'm just getting old :D (as an aside, obviously I have no experience using the women's so can't address that, sorry ladies) + +I'll try it again though. Food was OK, not great. Probably won't be a regular hangout since it's not close by to where I live and it didn't seem worth going out of the way for considering how many other beer bars/breweries there are around the city with better atmosphere.",review,aidmFfjOjpVKD-5L4J6X7w,0,0,0 +MXOdsPTLQPsQK9hUq01DWg,2011-02-06,zAlqvp4Jz3ImkkEaUjDuOQ,4,"Sweet Potato Tater Tots..................why are you still reading? what more needs to be said? Yum Yum getcha some! + +The only thing keeping them from 5 stars is their unwillingness to enforce rules with parents who bring kids and think everybody else wants to enjoy watching them run around the place like its a playground, its NOT - keep your kids at the table or at home.",review,6K6GvIJZ_G_luOrVZDwrZw,1,0,0 +-d1I0dwtCg1IIjnI3DZ38Q,2010-03-07,PIDUqvrJvHE0dBUYThQwag,3,"I went to Susie's for lunch the other day. I got it to go, as I was alone and don't like to eat at restaurants by myself. There was only a few people inside and the food seemed to come pretty fast if you eat in. + +I probably waited about 20 mins for my to go food. I thought the restaurant was in need of a remodel. But they don't seem like they have the greatest hours, as they close at 5pm. So it is a lunch place, not a dinner place. + +I got my food and took it home. I live not even a mile from this place. I ordered Sopes. They had shredded beef, lettuce, cheese, tomatoes and salsa. I thought they were very comparable to the ones I have had before, which were homemade. + +I would like to go back for lunch, but as I'm not home much for lunch it might be difficult! Definitely worth a second chance!",review,L3XWX_dd8_pYnRSMdppjDg,0,0,0 +8lKiCgPn_eonn5CNsffabw,2011-03-27,CIcYQfeXAHpGHcb78HLdJg,2,"We arrived at 7:00, had a party of six, and were able to be seated within 15 minutes. Fabulous, considering the number of hungry people coming into the restaurant that evening, but we have always had good luck getting right into Grimaldi's, regardless of the location. + +The new Scottsdale Quarter location has great ambience and service going for it, but I was sorely disappointed by the quality of the pizza. One of the reasons my partner and I keep going back to the Old Town location is for the consistently tasty crust: crisp and thin, yet chewy and moist as well. Our pizza last night had a thicker crust and too well done, by comparison. Maybe the QC will improve as time goes on--I'm sure we'll be back to see.",review,IEFyvGVxFKhYJDyEV5Erog,0,0,0 +oajNY_oTIMb7YZsor7Xonw,2007-03-04,8ex-QTfinXgYqxBsjv5dcw,4,"I've been to corporate events, concerts and Spring Training games here, and I've been consistently surprised at how well they do what they do. + +First the field. At Spring training games you are so close you feel like you're watching a little league game. The grass is go green it almost looks fake (it's not). And the backdrop of office and apartment buildings is decidedly suburban. I finally get the big draw. + +Next - the vendors. Taco in a bag (must experience to believe). Strawberries and banana dipped in chocolate on a stick. Great pizza. Amazing choices of beer. Oh, if only they had a selection of soda the way they had a selection of beer. + +Parking is plentiful and the grounds are always kept neat. Folks who work there have all been helpful and friendly. It may feel like it's forever away from our Phoenix core, but it's not to far for an experience that BOB or Chase Field could never provide.",review,l53FUDHRHLg7BQ89KgAtxQ,1,2,1 +z8eZR3tKIXIo2X9rEd9p2A,2012-12-24,eepsXJKHhETXXU4fFgm8aA,1,This store is banking on the hope they are the only place to buy what they are selling. The mgr at the cash register was not only snobbish and unhelpful but down right rude. It is 12/21/12 I know Christmas time is tough for retail employees but I was at many other retail stores today and their mgrs and employees were extremely friendly. I spend approx 1/2 hour talking to a sales assoc who was very friendly and all was good until I got to register with the mgr and I ended up walking out without purchasing anything. I then went to my car and purchased desired items on amazon while in this stores.parking lot. I know business is good this time of year and maybe this companies business is always good. But the post office and Sears also used to be the king! I could explain all the facts of the situation but I am sure it would make no difference as I am confident this is the culture of this store.,review,-yaUMGgbVm1iOG_j8CmBtA,0,2,0 +4AKcmN--0hbF0kX9pg8scg,2012-03-11,8RdvpQ1dFAUE8kIZvbtbcw,5,Excellent burger,review,ebCOe-Bavz5fYCVL716KIA,0,1,2 +GXFGmNCR4jgT8toUBQp2Hg,2010-09-08,8Xt2fKbgEujyRojTmP8tbA,5,Came here instead of Starbucks to get some much needed study time... It's too hot for coffee.. Close to my university ... Has all things berry healthy... I personally ordered the Berry Fulfilling w a free energy shot... Free!! I'll take berries and free any day.. My drink : all berry and only 150 mere cals..& filling.. Actually felt like dessert.. Awesomely sweet staff..,review,sALB8-F04S9VcZMF_GkGUA,0,0,0 +IMGW6y8wHQCfr_6k-YXg_A,2010-03-07,X6RfPfjHFBkA2UB3QotYSw,4,"I was actually really impressed, even though I didn't think I would be. I headed here for lunch last week when Chipotle was super busy. + +They have a great and fairly affordable lunch menu with lots of options, including lots of vegetarian options. I also really appreciated that my waitress went back and checked with a vegetarian staff member to see if the tomato soup had meat stock (it didn't, but minestrone did). + +I got the pasta with the soup or salad combo with this delicious Mediterranean pasta - olive oil, feta, pine nuts, tomatoes and red peppers. The pasta itself was surprisingly bland, but with a hint of salt and pepper, it was pretty tasty. The bread that it came with was also delicious, all on its own. I got the tomato soup, and man, it was definitely one of the better tomato soups I've been lucky enough to have. + +My server was great about the food coming out quickly, and was on top of my refills. Very friendly, not over-crowding. + +I'll be back in the future with my partner to get a better feel for the beer (which I don't drink) and meat dishes (which I don't eat), but I'm happy with my first visit and will be back!",review,rR5W8Bj-IGu6sw1_1v4m7g,0,1,0 +xhwp_bACX0017Qxu8_AVbw,2011-01-02,RlJ_E3O9p9QGjrQEsChm2Q,4,"I found this place in Yelp, so I at least started with some optimism ;) I wasn't disappointed. Great portions and plenty of variety. Got egg rolls, mu shu pork, house low mein, Mongolian beef, rice and 4 fortune cookies, soy sauce, and hot +mustard for about $30 plus tip. Plenty of leftovers after stuffing myself ;) Everything tasted as expected, though the egg rolls and Mongolian beef were better than most... Not crazy great, but really good for take out/delivery. Now if they only made Chinese turkey for Christmas!!",review,VlpwSHJnXruY2nWJMcvg7A,0,0,0 +ojjtPlnSmCX1zCzWL7JoNQ,2011-03-28,cHQXswil4gewZ--z-wtc8Q,5,"I have found my new favorite breaksfast/lunch spot! I love the much cozier and homey feel this place has as opposed to chains like Panera and Corner Bakery. We stopped in at Wildflower Bread Company over the weekend because I had heard great reviews about their freshly baked loaves of bread. We were just going to pick up a couple specialty loaves since we needed bread at home anyhow. Instead, we ended up staying for lunch after we got a peek at the menu and the dessert case. + +My fiance ordered the salmon alfredo and he loved it. This said a lot to me because he's normally not a pasta person. The salmon itself was really good - soft and flavorful. I had the butternut squash ravioli - one of my all time favorite pastas - and WBC's version did not disappoint. I loved the nutmeg flavor it had - perfect complement to the creamy sauce and the butternut squash. Both dishes came with big slices of grilled toast. The pasta portion sizes itself were perfect. Just the right amount to feel satisfyingly full but not overly stuffed like the portion sizes at Cheesecake Factory or Macaroni Grill. We ended our meal by splitting a lemon bar which also was devoured down to the last crumb. + +It was a later lunch for us (around 3pm) so it wasn't crowded inside but there were still a good amount of customers so it seems to be a favorite. Service was pleasant and fast and the menu has a wide variety of items that we're excited to go back and try more.",review,hcctCQy3bdZMezrUKkZLtA,0,1,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-04-21,0zaH6wDCTDs75jxXnXV51A,5,"I saw this place on a Food Network series in November. When my family went to Phoenix in March for spring training, I knew we had to stop here. It was the first stop after getting off the plane and getting the rental car. It was in a sketchy area in the town, and far enough from the freeway. When we were there, the workers gave us samples of the different foods. I got the chicken fried rice combo with jade red chicken and the pollo diablo. The pollo diablo had a nice spicy flavor, and the jade red chicken was also very good. The snickerdoodle was very soft and chewy, which was a good thing for me. This will be a permanent stop in Phoenix for Spring Training trips.",review,hpuc-b9xxcrOWluFYmCLoA,0,0,0 +ss5gVggeSmAgMUeL65UvYw,2012-03-28,OHEPhyLR6NoadE9BlBcPkQ,4,"Congratulations on opening the Gilbert location. Glad to see you guys making the shift to the far East Valley. As to be expected, the bruschetta was great. We really enjoyed the Syrah and the Sangiovese. It's really hard to beat the $5 glass/pitcher deal before 5pm, and the board + bottle ($20) on Monday and Tuesday night make for the perfect date night, though it can prove to create a long wait. + +It was nice to see staff from the other locations making the move out here. Small mishaps and things that get confused in the midst of opening a new restaurant are bound to happen. No worries though, we've been 5 times in the first 10 days, showing that you guys are right on target. Looking forward to getting to know the staff and becoming weekly regulars.",review,vTvxsif_dlYJOtFxS-t2RQ,1,4,0 +1NZLxU5WvB5roPFzneAlLw,2008-04-18,MtTbbSSKXimJCjvhEl6BIw,2,"Terrible food. Pretentious service. Stale bread brought to table. Mole was grainy and tasteless. On the upside, great tequila selection! At least you can get loaded and pretend the dinner you just waited too long for and paid too much for was worth it.",review,IdcwNulMu2xQN8JDvm67SA,3,1,5 +TsmBNiwMMeb8aRrZs00JBA,2012-01-27,xmXoAQdtynpoI0fQvtQsZA,2,"This place loses out due to poor customer service, which is a shame, because the food is good. it didn't used to always be this way. It used to be good food with a friendly, attentive staff, but then they changed management. + +Our first experience with the new management and staff wasn't great. Service was slow, but we figured they must be busy so we let it slide. Then we bought stuff from the market. They have two registers side-by-side--one for the market purchases and one for the restaurant bills. We went to the restaurant register so we could pay for our market purchases along with our meal. First of all, we got ignored and had several customers taken before us, despite the fact that we were there first. When they finally decided to acknowledge us, they told us we couldn't pay at that register since we had a market purchase. Rather than just sliding over to the next register and taking care of the purchase there, they made us wait in line again. Finally we checked out...and were overcharged. We didn't realize this until we got home and by then it wasn't worth going back. + +We decided to give them another chance and went back a few weeks later. This time the service was even more slow. 15 minutes passed before we even got our water. 45 minutes later our food still hadn't arrived. The waitress kept speeding by our table and ignoring us. We snarfed our food down fast when it finally got there since we had to get back, and went to pay. Long wait again as we got ignored for other customers who came after us, and then they overcharged us. Again. Fortunately we caught it this time. They hastily made the correction, without so much as an apology. Rather, they acted annoyed that we were holding them up. How about getting it right the first time if you don't want to do it again? + +So that was it. I don't think we'll be going back. It's really a shame, because the food is delicious and this used to be one of our favorite places. It's just a shame that the new staff sucks. I can get good food elsewhere and not be treated like garbage and overcharged.",review,PlYBocPQMxzbDWLGIGAa4g,0,0,0 +Ih1TGSZyu2Q8htn2JA4tIA,2012-01-03,hw7z9Y1Hvr9sXwKqUxMO3Q,2,"I love German food, and as far as the food went at Bavarian Point, they had some good eats. The *only* reason I'm giving the restaurant two stars instead of one is the food. Their rindsroulade was very good, and the red cabbage and spaetzle were excellent. But the quality of the food was undercut by the poor service. It was bad enough that I wouldn't return, and certainly wouldn't recommend it to anyone else. As others have noted, there was no-one to greet or seat us -- not even a sign saying ""seat yourself"". Our waitress took a LONG time to make it to our table to take our drink orders, and when she did, she was complaining about something and looked put-out in general. When my wife ordered a beer, the waitress told her that it would be more expensive because it wasn't available on tap. Now, that could be useful information, but the manner in which she told my wife was defiant rather than helpful. Believe me, we gave her no reason to be so sour -- it was clear that this particular waitress was clearly unhappy -- whether with her job or life, it's hard to say. It's too bad, really, because the food *was* good. But why would anyone want to eat at a restaurant whose workers are either nowhere to be found, or miserable? Not me.",review,CuLj9-1BYbK7KkmO2dC7Aw,0,1,1 +7Jmri1RCl9Ksmpi5EoIOZQ,2010-10-23,jDfW8sYmK9-JNcZoyY_naA,4,"One of my earliest memories of Phoenix concerns waking up under the eucalyptus trees that used to cover most of what is now the business park and shopping center next to what I will call the ""new"" Duck. The old one was far larger and would have been about where the Starbucks is now. Of course, I'm talking about 1973 here, so I digress. . . . + +Anyway, the current abbreviated Duck remains one of my favorite places to relax and hang out in Phoenix. Now I have a little one who enjoys running through the grass near the patio and socializing with the other youngsters that frequent the place. The bar features interesting wines by the bottle and glass. Most nights the by-the-glass happy hour special is something rather interesting, in contrast to the ""red"" or ""white' found in other joints. The interior of the small bar is dark like a cellar. In fact, you can find a variety of atmospheres in and out of the Duck. + +And the sandwiches! Yes, try them all. Very, very good.",review,nDBly08j5URmrHQ2JCbyiw,1,1,1 +jiuXlfRHzpi9DLzdx9yqvQ,2011-11-30,63pmCoLKOMVRBkI-kI4W-Q,1,"I was so happy to see another station in the neighborhood. I went in to fill up as I usually do at any station unaware that I was paying TEN CENTS MORE PER GALLON (than Circle K) because I wasn't paying cash or using a Shell credit card. Yes, there are signs on the pump but, really, who would think to look for such a requirement? I've been buying gas for over 40'years and have never seen such a non-cash penalty. I, and my children, their spouses and our friends will not be getting gas there ever again. How disappointing and dishonest.",review,Aj7Gx0gmjb-tX9tJ4IvqKQ,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2010-04-17,A8LQr-i0lN5x_tts8mwXdg,2,"Our group was not pleased with the quality of the seared tuna salad (everything about it was low quality and just not tasty) and the quality of the grilled cheese (Velveeta cheese?) sliders. The cuban sandwich was pretty good, though it's not enough to make us want to go back for more. On the good side, our server was really nice and sitting outside was very pleasant and breezy. I hope the food improves.",review,XaSDZk_rE3D7WI4EKtXM2Q,0,0,0 +O_ZNZDr6c5CsK6GgsKdDeQ,2011-04-25,pKmFVKVA5GQN5dqU8QblAA,4,"Stayed here for a friends wedding and it was excellent. The rooms are expensive, but they have been redone. This hotel was built in the 80's and the grounds are above par. They have a 3 level pool with a bar in the middle. Works for me! The golf course is really nice. + +The staff is excellent and the rooms were really nice. Make sure to use your Starwood Guest Number. If you like cactus, stay here.",review,V4VW69mBsRzfa3mLmyBqLQ,0,0,0 +XeoeF0twXRV4mUZJgIjc8A,2009-12-29,Lf5qRPFFlsrpT8IN2RYe6w,4,"Being a stranger to town, it took a while to find it, but well worth the search. I was hungry for cajun food and thought I would give it a try, and am glad I did. I tried both the gumbo and jambalaya and both were excellent. I sat at the bar, and the service was friendly and attentive. Although it is a long drive, I will be going back as soon as I have another craving for cajun food.",review,w_hcSjqLeSZQL9Rx1UP-Tw,1,0,0 +4juYmq_YpvdV8HZ1r0AWBw,2011-07-18,JS6RZ9f1NDo1QcbpEoA-bg,4,"Very nice, classy decor all around, cleaner than most places I've seen. Seems like a place you'd wanna dress up for. + +Drinks could be a little cheaper ($9 a shot), but I figure it's Scottsdale, so whatevs.. + +Music ranges anywhere from old school hip hop to top 40's music you hear straight from the radio. + +No cover, so that's always a plus.",review,uNbB1uR4EBhmygUc3IfPAw,1,4,0 +CMTDZRDnv_O0rwAvRVbjvg,2010-01-19,U70RIBj0LRe7E68XGsGURg,4,"Great soup at a great price. + +I go for the veggie soup normally, since I'm a bit leery of the raw meats and strange meatballs you can get. Their vermicelli is also quite edible. + +Service could be a little quicker. + +Bring cash if you're spending less than $5 - with pho and water you will pay 3.50 + tax. Cheapest lunch in town.",review,8h5EXsiEuK5_igQ0cgxPZQ,1,2,1 +tenKOmTRi2rjZAWwNCDv6w,2012-09-22,0UBnLhVxAfBI8e36wTupXA,5,"This is the only auto repair place I've ever seen with 5 stars solid, and they totally deserve it. + +My boyfriend has a 1969 Pontiac Firebird that hasn't run in several years. After sinking lots of his own time into tinkering with it and $1000 to the awful Meineke down the street, he gave up... until my car's transmission went for good, and he decided to fix the Bird (yeah!) so I could drive it (yes, I am super lucky!) + +Whitey's diagnosed it as the carburetor dumping fuel (which is what Meineke charged $500 to replace.. hmmm...). Upon hearing the story of Meineke, Whitey's told him to order the part himself to avoid the markup and they'd put it in for just labor. Awesome! + +We took it home, but it wasn't running quite right still, and then failed emissions. Back to the shop it went. + +Whitey's took it back, spent ALL WEEKEND on it doing various minor things. At one point, they called and said ""We've done this, this and this, and it's still not quite right, so we're gonna keep it another day."" I was glad they were admitting they actually felt it to be not right and were determined to fix it, versus just handing it back again... but I was dreading the repair bill. + +We picked it up Tuesday. The bill? $7. That's right - SEVEN DOLLARS. They only charged him for a spark plug and oil filter. That is amazing to me - I was expecting several hundred dollars for their time. + +The car runs beautifully now, and they were extremely pleasant the entire time. I'm taking my alleged defunct car to them for a second opinion next week. I HIGHLY recommend Whitey's!",review,ysINNe8YpbOW_-5T5CSyhw,1,2,1 +sbD4f8aOsXZ6PJYh1kN4Ag,2011-01-15,47lUbqC14ufZJYEG5-RcOw,3,"Westgate has a few more restaurants now but stil need more shops for shopping to come along. It is starting to build up but slowly. It was nice to walk around from dinner, but the amount of teenage kids there were a little annoying. Guess I am not the mommy type!",review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,1 +XkNQVTkCEzBrq7OlRHI11Q,2012-08-14,mtKGyWW1YFniTYzIFendBg,3,Pizza crust & toppings are excellent. However the pizza sauce was too salty. I'm willing to try again later.,review,8Uuzc8YpvQgGLeB0X-Ferw,0,1,0 +nXKwzVKJCtIGd4HxXgjdnQ,2012-07-24,YR-RzwSMkn5XIcX47kiT_w,4,"Their rolls are super inventive....and they stay open later than most Sushi Places in the Valley (2am). + +Their Happy Hour is insane! Ex: 99 cent beers on Tuesday! + +I've never had a disappointing meal here, and I am pretty hard to please when it comes to sushi. + +Recommendations: +Signature Roll +Squid Salad +Yellowtail Collarbone +Drinks, Drinks...drinks. + +They have a little karaoke room, and full bar you can make use of as well. + +1 Thing: When it's busy, be prepared to order everything at once...or you will be waiting.",review,oKzkyfGalJC3-BOeLLCcIw,0,3,0 +UIGFrEcoDsw05I1UOrxdOA,2010-06-12,64oFbcXXvvr18fPZi9rREg,2,I believe this place is over-hyped. the menu is overpriced. the portions are small. the meat is low quality. slow service. sterile decor.,review,bkRfY8jHdFxf7k8vLX4buA,0,1,0 +fJx0N4N0NbyHEeoDU9nH8g,2011-03-12,uGTQAJ9h3WfqoHif_DbDKQ,4,"This place is sweet. They are not big on china, glassware or silverware. They use recycled products plates, plastic-ware and drinks in the container they come in (ie a coke in a coke can). The ambiance is awesome. Sweet and funny signs everywhere, reading material, classic rock playing. They only have the radio on but there always seem to be great songs on! They have a large patio out back that is difficult to see from the front but is really nice on a sunny morning. + +I haven't gotten past the breakfast bowls yet. $6 for 6 toppings, potatoes, buttered toast, and jam. Go ahead and eat carnivore, omnivore or herbivore style (not sure if there are vegan options). Seriously, this $6 breakfast bowl would be $12 at other places served on fine china and with silverware! I don't care about accoutrements like that. Especially when the food is so tasty. + +The location, midway point of the Melrose District, is stellar. You can spend hours walking up and down looking at retro shops and cool little places. Two Hippies sets a perfect tone for hanging out on 7th Ave!",review,04xW5mhSBaCzpjbcf2VSZg,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2009-04-11,t9ngnScZDCF1QTkYKGgEsQ,4,This is a great staple of Tempe. I try to stop by here before spring training and Diamondback games. If you're looking for a grill dog I would say this is the place to go.,review,V1k7XMUX4qHVUi-3IUYzhA,1,1,1 +YxLiLBNTm4cOg7OlKKLmVw,2012-01-01,ABF9gU7feK6obdFDeBq0vQ,4,"This is about a 3.5 star mexican place to me. I've always had good service but watched other folks get like 1-star service, at a level I might not come back. + +I like the White Chimichanga here. The Chili Verde is decent, and the Hatch Chilis are nice too, if you haven't had those. + +4 Stars - White Chimi +3 Stars - Chili Verde +3 Stars - Cheese crips with Hatch chilis + +I'm sure there are better places around but I've been coming here for several years when in the area, and I definitely enjoy this place. + +Sometimes they have hot chicks working up front. If you keep up this practice Arriba, I'll five-star you sometime soon!",review,bGvtW70L5c2SBp6mwAvqLA,0,0,0 +6PQZz7xe2VoWNjhPQhoPjA,2012-02-13,kKGlFLRIgvpil-uRw8CjtA,5,"I've rented from Captain Ted many times, and even gone on one of his guided trips down the Salt River. He is helpful and very knowledgeable and I would highly recommend renting here.",review,aqmtZa9o9K4casagyyfpyA,0,1,0 +F8q_9PUl-Lwjj9xIRPArcg,2010-09-07,7X9CV9e3PS_q-a_024kosA,5,"Have I got a place for you un-health conscious, frugal foodies out there! Rocket Burger and Subs serves up huge sandwiches and fried delights for astonishingly low prices, and much of the food is home-made. There's also an enormous section of unusual soft drinks; for instance, there's over two dozen brands of root beer to choose from. Dennis, one of the owners worked for A&W for 8 years, so he probably has root beer running through his veins by now. + + I saw Rocket Burger in a listing of new valley eateries, then did a little research. The reviews I saw were all stellar, so I knew we had to give it a try. It doesn't look like much, inside or out - it's in a little strip mall tucked behind Churches Chicken at 35th Ave. and Cactus. But it's clean, and everybody is helpful and pleasant. Ken gave a happy whoop when he saw Cheese Curds ($2.49/$4.49) on the menu. We decided to get an order while waiting for our friends Randy and Marty to join us. The curds came quickly out of the kitchen, piping hot, served with some tasty homemade marinara. They were a touch greasy, as they should be, and the oil was fresh. Marty and Randy arrived in time to save us from ourselves by helping to finish off the curds. Then we took a while trying to make our selections from the extensive menu. Eventually Randy and I both went for the New Yorker: pastrami with homemade slaw and thousand island dressing ($2.99, $3.99 or $4.99). Ken had a homemade-meatball sub, with more of that good marinara and some provolone. It was the same price structure as our New Yorkers and all the rest of the entries under Classic Subs and Sandwiches. Marty went with a double burger ($3.89, the singles are $1 less). He could have opted for a Rocket Burger - !0 inch sub with three burgers and the fixings in either plain, cheese, bacon, teriyaki, or chili style ($4.99 to $5.99). Of course we had to try the fries and onion rings. + + Again our food arrived quickly, served in plastic baskets. It became very quiet, except for the occasional growl of pleasure. The onion rings ($1.99) had been dipped in a thin cornmeal batter which made them nice and crunchy. The handcut fries ($1.49) were skinny, the way I like them. Randy thought they were undersalted, but I thought they were fine - our usual disagreement. At any rate, they disappeared quickly. Unlike the sandwiches. They were so big that we all ended up taking half of each sub home. The slaw on the New Yorkers was delicious, as was my whole wheat sub roll. The meat balls were nice and tender, and there was plenty of cheese on top. Randy had found a bottle of ginger beer imported from Australia that had a wonderfully refreshing true ginger taste. There seemed to be actual pieces of ginger in it - instructions on the label said to invert the bottle before opening. It never did tell you to turn it right side up again - the Aussies give us more credit than we deserve. + + Other food items available: Hebrew National hot dogs in several styles ($2.49), Pizza +Bread with various toppings, Gyros ($3.69), salads ($1.99 - $3.99), a fish sandwich ($2.49) served with homemade tartar sauce. And lots more. I don't know how Dennis and Steve manage to turn out food of this quality for so little money, but I surely do hope they continue and prosper!",review,QiR2X306Yzd9fuJdKDhkGg,3,2,2 +uEJQSIjWui-TDWXaGlcqyQ,2010-08-16,BRHJDnT-kLosTfUWhRBQ_w,4,"Being a fan of the infamous Roscoe's Chicken and Waffles in Long Beach, I was totally down for some chicken and waffles this morning. The bestie found this place because it was close to my new home in Arizona and was sure to be a hearty brekky after all the physical exertion of packing, moving and loading/unloading a Uhaul. So off we went... + +The place is easy to find and pleasant to walk into. The staff was friendly immediately upon arrival. Service was quick and attentive. The menu is simple but appealing...so are the prices. We decided to go with the traditional chicken and waffle plates to satisfy the savory and sweet tooth. Waffles are big, maple syrup is warm and the chicken is perfectly southern fried. + +I'm afraid I have to admit that I may now be thinking of LoLo's first whenever I hear chicken and waffles. MmmMmm!",review,hcctCQy3bdZMezrUKkZLtA,0,0,0 +sDGjlZV3SqYGWG9BO4ZpMA,2012-04-12,7pDu262vEGm7Avr9QeghAA,1,"not clean, worst gel manicure ever and ruined my nails--Jimmy finished it --his wife started it. Nails sanded too thin and they talk to other people and look away while they'e filing, sanding and cutting. They cut two times now into the side of my thumb nail, which causes it to catch and tear off the same day, or soon. Their 10 or 12-yr old daughter brought the colors to pick (she is much too precocous to be customer focused--she's narcisstic and I want an adult waiting on me). They have to open bottles to look at gel color--no samples. Gel drying machine is sitting on a priority mail box on top of chair in customer wait area. Pedicure okay. Won't come back. This place like many with Vietnamese want your money, they don't understand service (or cleanliness in this one) and why we really come to these places. They also try and nickle and dime you on price, for instance give you a deal to take off gel from previous manicure, when you're getting a new gel manicure. They want to use the dremel to sand your nails down to the quick. How about healthy nails and return visit. This place I'm surprised stays in business. Sadly it's not in a category by itself although the others are cleaner. Jimmy should stay away from nails and customers, and just keep quiet. The girl might be cute to some customers but I am not coming to have a 12-year old wait on me. No thank you.",review,wvsMlpa6U9RV4-_pU4gBJg,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2010-08-04,DdGcTKaN7G1TbMZ5rbEWqQ,3,"Today I was ready to be beside myself with glee as I took my daughters out for lunch. I've been here several times for breakfast and lunch, and have never been disappointed. They have the BEST eggs! I also love the layout and of course, the free wifi. August is their ""Burger Daze"", a different burger every day for the entire month. Today's burger was the wasabi burger, and being a fan of foods with kick, I was thinking about this burger since yesterday. It almost makes me cry to say I was underwhelmed by it. It was a burger with a creamy horseradishy sauce on it, and you got a little wasabi flavor, but it lacked that kick you get from eating wasabi. It also had an Asian salad mixture on the burger as well. Don't get me wrong, it was tasty, but when I think that I paid $11 for that and a side of potato chips, I feel a little slighted. If you eat ten of their burgers over the course of the month you can get a $25 gift card (save your receipts). The burger just wasn't good enough to get me to come back 9 more times this month. + +I'll definitely return to Liberty Market again- as I said I do love the restaurant and would recommend it to anyone looking for a place to eat. However I think I'll stick to their breakfasts and other sandwiches. The three stars is for today only- next time I hope to come back here and give them a 5!",review,DOJM58OkGSsIdk2qCUZnLQ,0,0,0 +RMcSaSsKiIRTO-OO-6kW3w,2010-02-03,k1Z_y1mV3of8Jsl0AsibFQ,4,"Great cleaners, open weird hours, always polite to me, anyhoo.",review,VnOtsJ2514YIAd0fM2O8oQ,0,0,0 +LM9d5wQcVqh97g7qpCQ88A,2010-04-08,5E83rtbNiOHzRhvBXBpaog,5,"I've been going to La Canasta for as long as I can recall. I live in Tempe and can't go as often as I'd like but I go at least once a month. I love this Canasta because they have a green chile salsa and menudo every day! Always quick and fresh. I either get the ground beef tacos (yummy), the red chile burrito (watch out), or the menudo (got a hangover?). It is very consistent and prices, well it adds up, but it is worth it. I have yet to have a bad experience after 28 years!",review,VcIlVWhLQLlKoHfVhsA97w,0,0,0 +XWpkTxBLgRXxl7g2Hw62Qg,2011-08-03,N4fLnV6utcZyMzPraZbOFg,5,"It cannot get any better than this my favorite is mix of banana , hazelnut and lemon. It is quality stuff. If you want something better fly to Italy.",review,tueZZgG49lLPMj1gRkM2Ag,0,0,0 +hzHyNCc3WijMVOzPcCuRJg,2010-04-03,wUcCDY7qrFPvdi5IJnorFg,4,"Been here twice and enjoyed both of our experiences. The setting is pretty urban feeling for far east Mesa--grateful for that. The wine list is pretty unusual...lots of wines and grapes you've never heard of since the owner is from...Hungary? Can't remember, but the wine selection benefits from his extensive knowledge of that region. + +The fried chicken--patented, no less--was really something. Spicy and brined to fall off the bone. The pasta dishes are good as well, with portions expected in a urban restaurant (don't expect Claim Jumper portions). + +All in all a great place to sit, savor dinner and talk. Waitstaff is on a learning curve, and you benefit, since the restaurant is new and they bend over backwards, service-wise. Highly recommended!",review,KnutNOkfu5t1XA8rEhiq2Q,0,0,0 +IP_1LeKBGA5HYzNQrGqJGQ,2012-04-07,bUry2lOH49ZiLa6689F6Qw,5,"Visited the phoenix public market - open air market - farmers market they have on saturday mornings and decided to give mojo bowl a try! They are at the market for food truck fridays also. Check out their website for their usual schedule. They can take cash or credit (with square). + +I tried their strawberry banana smoothie and my wife had the Funky Monkey (peanut butter / chocolate blend). They were both great quality with fresh ingrediants. They serve salads, yogurt parfaits, and soup also (which I didn't try) but Ive heard their smoothies was where they shine and they did not dissapoint. Give them a try, at $5.00 for a 24 oz smoothie, you can't really complain about the price - its basically a meal itself.",review,cRyNICH0mhjxagvSyVr60Q,5,5,0 +50cJrzHLMDQiazc-w0V2gA,2011-07-28,1cwNQX4UvihE4ylRyw_eog,1,"Bad customer service! + +No one at the front desk for thirty minutes. Plus they left the phone on the counter so when I tried to call their number, phone just kept ringing and ringing. :(",review,gC9JZOzHYxJd8IxUlzoqtw,0,0,0 +pfTwzep_4hRTX_jXoi38cw,2009-11-09,y5WcIWT8SCTX2FfM6zjJtg,1,"What's with the cheese? It isn't even Velveta. It's liquid cheese food and it belongs somewhere other than on my burger. + +$5 burger and fries is a great deal IF -- IF -- it's a great deal. This is just liquid cheese food on a hamburger patty. McDonald's will do a burger and fries for $5 that's tastier than this dump.",review,DW15zMg6lrCiSGwo04uWkQ,0,0,0 +6Kon3cR5ZEm5rmYKlpcfcw,2007-04-30,wIQ3fPSi6KhB24wmcpO6Ow,5,"what is it with me and pricey phoenix hotels? i swear i don't just give out fives willy nilly or do i have any particular adoration for phoenix. (sorry phx.) + +I went to the Valley Ho on an amazing business trip that involved rock stars and the Oakland Athletics, which happen to be my favorite team. it was downright magical. + +the decor was fantastic, the rooms were huge, with huge tubs, a poolside patio and a comfy chaise lounge. the flatscreen TV had an iPod doc! yaaaaay! (why don't more hotels do this?) + +the pool was phenomenal. i sat around for days on couches drinking bloody mary's and frozen drinks. the lobby bar had a deadly but wonderful drink called the stardust. + +The trader vic's attached isn't so hot, but i generally liked all the food i got from the pool bar and the restaurant ZuZus. (room service too- they make their own english muffins!!!) + +If i'm comparing it to the royal palms, the other phoenix resort i raved about, it's tough. Royal Palms is better for chilling and families; Valley Ho is better for singles. Royal Palms is your wedding; Valley Ho the bachelorette party. Valley Ho had better food and more style, but Royal Palms had a bit more to it and better service. Really, you can't go wrong with either. + +What is it about Phoenix hotels??? all i know is i am no longer groaning when i'm sent on a business trip there!",review,gOvKWYXobX_Pgzsz-K8auA,5,6,3 +mhQCxOiqp03qnhGRTtPduw,2012-07-30,ICUGOXjzk8KaV54W0exmDw,5,"This is my dad and I favorite lunch spot. Pho-real! Impeccable service and the freshest food. Their spring rolls ate immaculate, fried rice is pretty close to Peruvian friend rice, and their pho is truly unphoghetable. The servers are friendly, the owner always asks you how the food was. Nestled inside the Mekong plaza market this place will meet all your expectations in delicious Vietnamese cuisine.",review,OOxLwlNadygUwL_aG8KnSQ,1,1,1 +tZXPhvufHhfejGrRp554Lg,2010-12-20,o6OaLBaDitDYi0HgIl18Bg,2,"2.5 stars really. I've been holding off on the review because I stunned myself by paying $6.50 for a macaroon. Really? I did that! Ugh. It was tasty but $6.50!?! + +And, that's not even counting my breakfast: $9 for a wedge of quiche and a salad (that I didn't want - I just wanted a piece of quiche). + +I don't mind paying for good food (anyone who knows me knows food is pretty much WHAT I spend my money on... ) but I'm having huge buyer's remorse... over my meal! Something's not right with that.",review,vsXP832M0kOxKpfduD7dWw,5,6,2 +e9nN4XxjdHj4qtKCOPq_vg,2011-01-08,twjAkn8Z7OlAemQfZexVrQ,5,"CASH ONLY! But we easily feed a family of 4 hungry people for less than $20 and it's not Taco Bell. So with that being said... the Grilled Pork #5 sandwich... oh hell ya... it's good ringing in at only $2.85. The regular Turkey / Ham on a crossaint is about $4.25 and it's the size of a small football... great value... you could probalby get by with the small croissant sandwich instead for only $1.95... yeah... it's crazy cheap. Hot wings are generic prebreaded with a kick of spiciness. The steamed bun is sweet dough..however, not my favorite... my husband and sister seem to love the egg and meat inside. The ice cream is all homemade...also another great deal at $.99 cents for a cone... check out the icecream...looks crazy good. Don't miss out on taking home some baked goods... the baguettes are crusty-soft and warm when you get them. The croissants are delicious and some of the better ones here in the valley. I did try and Avacodo boba...had to send it back...not sure what the heck it was...it was green... but didn't taste anything like Avacado... so I did head across the way to Boba tea house for my bobas. The Viet coffee, also great kick for you mentally if you need a boost, very strong=very good. Don't miss out on this place... it's a good go to place for a great lunch or snack.",review,JNfR68wvXOCt0Toy9OBfDg,1,1,1 +j5HLcBru7FEirYJPbKFVWA,2013-01-02,UYn6Kod4ZluHcuMZRG55jA,4,"Nice place surrounded by many fast food places. No grease here! Breads are wonderful, but customer service was just ok. Great pastries and part of the Belly loyalty program. Super dog friendly as well with the outdoor seating.",review,M-d7R2GVDqUi8iBaLyXcwg,0,0,0 +6dqDSEMDqTA-wNOdWtshUQ,2012-04-14,JGefSV5LTpgH2tC4g-jtVQ,2,"I got the banana nutella cupcake and love the banana bread-like cupcake. However, the frosting is way too sweet and overpowers the banana flavor of the cupcake. As many reviewers have already mentioned, the cupcake is also over-priced at $3.75 each for the size and the lack of creativity. +With so many desert/snack places in Scottsdale, I am unlikely to come back here.",review,4aL1FgMljGIuDNksiLVKDw,0,1,0 +yhe0HLEd6g-WCxF5rKVF_A,2012-04-20,LZIPa3wJjIZZUw6khjk-zg,4,"Good water pressure. $2 = 6 min. Cons- ""water pressure gun"" rubber tips come OFF -can scratch car paint. Had to back out since a car blocked me forward-then a hose (which I put back) caught my car. Hispanc guy gets angry/curses. The ceiling 360 degress brush holder gets jammed. 1 is bent. Stalls get muddy. Vacuums not strong.",review,Jw3ocYlfPw3T7g0OknI-lQ,0,0,0 +R6aazv8FB-6BeanY3ag8kw,2011-05-10,lS0sRdDgeY0v4TKjjXj-7Q,3,"Stopped in here on a Sunday afternoon for a milkshake when my sister was visiting from out of town. We browsed the racks of vintage clothing and costume jewelry before sitting down at the bar. It was difficult to choose our milkshake flavor, given the dizzying array of syrups and ice cream combos, but after settling on chocolate and wild cherry, we were very pleased. Plus it was a cheerful looking thing, topped with whipped cream, colorful sprinkles, and a cherry. +I was not as pleased with the service... it wasn't busy until after we sat down, but no one took our order or even gave us a menu or a ""hello"" until we'd been sitting for about 10 minutes. A party of 8 or so, including a bunch of indecisive kids, sat down AFTER us, and were served before my sister and I... and no acknowledgement of the wait. While we waited, I did enjoy looking at all the cool decor from the past, though I think the whole place could be a little bit cleaner.",review,x46c5z1ldZHuYcLlrIf1nA,0,0,0 +7fdAFixba3JDk0pCCiAx8w,2011-07-16,PO6P1STqxLYNePwM4kvTUg,5,"Had a late night plumbing emergency last night. Called a friend who recommended Kevin's Classic Plumbing. Within an hour the plumber was at my home repairing my problem. At 10:00pm my water was back on with kids taking showers, toilets being flushed, and my wife was talking to me again. Sounds great right? Get's even better! The price they charged me for the after hours repair was the most reasonable ever. Last but not least he was a heck of a nice guy. Kevin's Classic Plumbing will be my plumbing company for both home and work from now on. + +On another note... I had called one of those companys that advertise on TV all day long. They were not able to come out last night and when they did call me they indicated that it was probably not something they could fix and would most likely require a two man crew. Thanks Parker & Son's.",review,gst9ZZo44SwKzg9F1IHpSQ,0,0,0 +tqDwpyCB53TiEIv915Tuww,2011-03-18,5LlWXd1r7nnCrSb_RWlU4w,3,I always just get one thing from Vietnamese places and its their rice dish with grilled pork chop and egg cake. This place does it goooood. You get a reasonable amount for the price and the fish sauce is just right.,review,CC1INHcQo7eM-SST44UnVA,0,1,0 +R1ySBCVS2eQf-s0Z4ifIug,2012-04-21,9pHuaXzP6gi_TQX0gnHIqg,2,"I've really tried to like the Gilbert House. Been there several times; unfortunately, I've always left underwhelmed. The coffee isn't very good. The dishes are unique, but lack taste. I ordered a spinach and goat cheese quiche last Sunday. The quiche was cool (expected it to be a bit warmer) and only had a hint of spinach. Not what I expected. Prices are ok, but there are so many good independent restaurants in the area, that there is just no good excuse for bad food",review,xAVu2pZ6nIvkdHh8vGs84Q,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2008-05-22,VrYtuGimhq7UqBBmKtkfVw,4,"Five stars, five +1st star Culinary excellence, +2nd star Service perfection +3rd star Atmosphere and history +4th star flawless operation +5th star dessert +-1 star, management need not say more., + +Old School Style fine dinning. This restaurant dates way back to the early days of downtown Phoenix.",review,0qIsBt4EzBDCKrIviV55Ew,0,1,0 +R4zcw0jq-gMgDtPyCjwnew,2012-08-18,W31rbleIX9NdRdkEBdEO_Q,5,"The best fish tacos, period! And I hate chain restaurants!",review,ZKz2htCNEjDUPqiImJhHrA,0,0,0 +1zDCfNgtfyh-Uw8j3JxhHA,2012-11-05,3mz-4BcEktKFjSTPy_Zn9Q,5,"This is hands down the best burrito in the East Valley! Fav's is always consistent and their prices are excellent! My standard meal is a California Carne Asada burrito, it comes with the most tender carne asada I've ever had. Also, their green and red sauce is a step above the competition, and they have great mexican rice, it comes with peas and carrots! Guac is exceptional, and they also have really tasty breakfast burritos that are available all day. Five stars for being consistent, clean and for having pleasant and professional employees! One more thing is that they close at midnight except for Sunday when they close at 10. Bummer but still the best!",review,9F3ZmyGKIA6ALNWgEq3Log,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-05-09,HubRamXEv3IS3pW7x5oteQ,5,"After a second visit, the chicken was a little dry and lacked flavor. Quite a contrast to my first visit. Still enjoyed the meal, but wasn't as impressed with the chicken. I'll have to go back to see if it was a fluke.",review,0q87nf1yJFv0GML2J64Ttg,0,1,0 +gUt-pPUpOVVhaCFC8-E4yQ,2011-02-10,Aq6CcDYwQrFtL5nBJ-wHiw,4,"Go Go here for happy hour! From 4-7pm you can delight in their half priced apps and specialty cocktails. Their sushi rolls are meh, but their teriyaki ribs are falling off the bone, finger lickin' good! The cocktails seem to be concocted for little Asian girls (which is odd since there are no Asian girls in Scottsdale, especially now that my BFF and I are gone) - fruity with cutesy names like ""Hello Kitty,"" ""Harajuku Lover,"" ""Shiso Horny,"" and ""Kinki Kooler"" just to name a few. My favorite was the ""Turning Japanese"" which was like biting into a vodka infused pear. + +Service at the bar was wonderful - Victoria is the one of the cutest bartenders in Old Town (guys, go pay her a visit). Drinks were flowing and the food came out quickly. + +In addition to the happy hour and Victoria, make sure you check out their restrooms and private karaoke rooms, complete with ""entertainment"" poles. If you end up spending a long time on their Toto toilets, people will understand why. Seat warmer and a bidet? You'll want to take your business there on a daily basis.",review,w6Vv-kldGpmvSGqXvTbAdQ,16,17,17 +uEJQSIjWui-TDWXaGlcqyQ,2010-01-13,xh5iJ4WMi3WNGFI2fpawOA,4,"Same great Lolo's fried chicken and waffles without the risk of getting stabbed or shot... and it WAS worth the risk to visit their South Phoenix location on occasion. The food is that good, it might even be the ultimate in comfort food! Lucky for us they have a new Scottsdale location where the most dangerous situation you could encounter might be a hungover Scottsdale ""clubber"" (who could scratch you with their Ed Hardy bling). + +The only suggestion I have for them is to drop the prices about 25%",review,90a6z--_CUrl84aCzZyPsg,5,6,5 +ItMihRR-t810HgctGofF3g,2011-06-18,BK4FpIlwDx2mAhk9qsK3sQ,2,"Bland and lackluster food that is not worth the price or the wait to get it. We had lunch at Nourish a few months ago and while we weren't overly impressed, as they do serve healthy food that is in line with our whole foods, plant-based eating habits, we decided to give them another shot and went for brunch a few weekends ago. I ordered the egg sandwich, which is described as an air-fried egg, avocado, and tomato on a gluten free bagel with a side of sweet potato hash. As I have never found gluten free bread products to be very mouth-watering, I asked to substitute multi-grain bread in place of the bagel, as the bread had previously been the best part of the lunch sandwich that I'd had. The server informed me that they were out of bread (how does a restaurant run out of bread when half of their menu items are sandwiches? very poor planning by management) and that the only other item available was a wheat bun, which I opted for. My husband ordered the veggie quiche, which is described as zucchini, asparagus, caramelized onion, parmesan, and a quinoa crust. + +After an incredibly long wait (the restaurant was less than 1/3 full), our food finally arrived. My egg sandwich was by far the most flavorless breakfast item I have ever consumed. The air-fried egg had sounded appealing as it would be healthy and not greasy, which was the case, however I didn't realize that this also meant there would be absolutely no seasoning on it or flavor to it at all. The sweet potato hash was downright disgusting and I only consumed a cube or two of the mushy, flavorless heap that was on my plate. As bad as my meal was, my husband's veggie quiche definitely won the award for worst breakfast item ever tasted. The ""quinoa crust"" which we were looking forward to as we love quinoa dishes, was actually undercooked quinoa mixed throughout the entire quiche with no visible crust present, which gave the whole thing a granular texture equivalent to fine gravel having been poured into the dish. The vegetables almost appeared to be ground up as there was just an overall green appearance to the egg portion with no discernible pieces of the veggies described on the menu actually present. The dish in general had a strange taste and the off-putting texture from the quinoa was more than I could handle even in just the one bite that I tasted. I honestly don't know how my husband even managed to choke down the portion of the quiche that he did. + +We also each had two bloody marys while we were there and while each took an incredibly long time to get, the first one was flavorful and seemed to be made ""extra spicy"" as we requested, however, the second one was flavorless and tasted like watered down tomato juice. While Nourish has a nice patio and offers a view of the lush foliage present in the complex, these elements are not enough to bring us back after we left with our tastebuds reeling in horror over the flavors, or lack thereof, of our brunch.",review,2qnz2y_Z1nDo2HqqfxJxSA,0,0,0 +4eFIVmbeCvJGCrhzmd-VYA,2010-03-19,hlA2F8tM4UpeIq7Zy9EQ9A,5,"I would be beside myself if Grinders closed. It's about time I wrote a review, since I'm a regular. I can be found sitting on one of the giant chairs surfing on the wi-fi many mornings. + +I'm the one who brought the plants in. I used to water them a couple times a week but nowadays I'm lazy and they really need to be repotted. I should get on that ... + +The music is always playing and everyone knows my regular drink ... they've continued to memorize it for me even as I started to slowly decrease the fat & calories of my regular order. Now it's an ice skim latte with sugar free vanilla. I used to get an Everything bagel with egg, cheese and potatoes most mornings. Now I get it on multigrain toast. Eh, it's the little things. + +The coffee at Grinders is really really good. It's not bitter and sharp, it's smooth. They grind their beans outside many mornings per week. Sometimes it gets too warm inside during the winter so we prop the doors open, but if the grinder is going outside, it'll blow coffee bean fumes in the door. + +There's some retired motorcycle cops who meet up every morning and sit around the big round table. They often park their motorcycles in front of the place together. They call themselves the Geezerados. + +There's sometimes a few right-wingers having conversations mid-day. One time I listened to their meeting and heard them trying to come up with controversial topics to get people to come to church. They spent a long time trying to figure out who could get them proof that global warming isn't happening, so they could use that as their hook. + +A lot of moms come in with their kids. Seeing siblings piled up in one of the oversized chairs together is common. There are a few regulars who come in specifically to sit on the internet all day. I'm not there all day, but I'm there at all times of the day because I have a home office, and you never know when you suddenly need caffeine. + +Early in the morning and after 3pm the place becomes flooded with Sunnyslope High School kids. They range from ROTC kids wearing pickle suits to trendy girls in neon to the alternative crowd. They often lay around the couch splayed across each other or gazing into each others' eyes. + +Ordinarily I'm a real talker and I can't usually keep my mouth shut, but Grinders is the one place that I go where I barely make a peep. I just eavesdrop on everyone's conversations and sometimes run into friends I know. I usually go before my brain is fully awake in the morning, that's part of it. For the record, a couple months ago one of the girls there said I was practically invisible and she hardly knew I was there, because I was so quiet. + +There's nothing pretentious about Grinders at all, and it's also down to earth without being ghetto. It has character. Some months the art is better than other months. Hannah has been there for years (they call her Big Hannah now, only because there's another girl named Hannah who is tiny and they call her Little Hannah) and Hannah rocks and makes the best breakfast ever. + +I can ride my bike in the morning and be wearing my pajamas and not have anyone really bat an eye. That's the beauty of Grinders. I've seen other people come in wearing their pajamas, too. It's a little bit like the cafeteria in a college dorm, except the people are of all ages and we live down the street from each other instead of down the hall from each other. + +Grinders has a location inside the John C. Lincoln hospital across the street, too. It's common to see the hospital workers walk in wearing their scrubs. I think they're also opening one at Devry, or they just did. I was frustrated to hear that they tried to open a location at the Art Institute but they were one week too late, Stupid Starbucks had just gotten there. LAME!",review,t79B56n8IeVrMNmM4QU2Ow,2,2,2 +Jje3kP5CNasYDSpH0NPRGQ,2010-10-01,OuY0JQ1vSp5-SCVipZgl7A,4,"Finally, a pizza place that satisfies the individual pizza taste buds of my family! We ordered the Rocky's Philly Steak Pizza along with a cheese pizza and both were delicious! Everyone left happy.",review,J9u2d1P-nr937LGlZ3wmHQ,0,1,0 +JDFmfsK_i20VFXbGE1PRVw,2009-08-07,J5zQQjvwo-aodvxtw-HlzQ,2,"Dropped by for a manicure, and as soon as I sat down, my manicurist started talking in rapid Vietnamese. I couldn't see her headset so I thought she was speaking to me, but obviously she wasn't. In fact, she never looked at me during the lightning fast manicure, except in confusion when I said I didn't want her to cut my cuticles -- just push them back. She really didn't understand that, and asked me in broken English why I was getting a manicure but not getting my cuticles cut. She didn't have an attitude about it, but was just really confused. I think after that exchange, she told whoever was on her phone about it. + +I also thought it was strange that she asked me to wash my hands after giving me a lotioned hand massage -- sort of defeats the purpose of applying lotion to my hands in the first place? + +The whole experience was perfunctory, but didn't leave me wanting to return for a manicure. Not asking for a great nail technician, but it would have been nice if she acknowledged my existence other than doing my nails, and most importantly if she asked whether I wanted them cut round or square because I wanted them round! I would have interrupted her phone conversation to let her know my preference, but she was so fast to dunk my hands back into the soaking dish that I didn't see what they looked like!",review,2ARM6NFVciTzV21r7p8jiw,0,0,0 +O-Xa9GCFWI65YiBD5Jw_hA,2012-07-03,748rZWrS3ZR4xhhvfGJUcg,5,"In my opinion, one of the best steakhouses in town. My husband and I go here for all our special occasions and have never had one bad meal. The service is the best just like their steaks. I recommend the Caesar salad, fillet, creamed spinach, cream corn, garlic and lobster mashed potatoes. We will continue our tradition and keep coming back here.",review,XFLeKAsj3UKv5VPoIQjdIw,0,1,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-02-25,RC6FR0Ov1PWR64a_Hqhzfw,5,"We have been here many times in the last 10+ years. The Stetson Salad is the best salad I have ever had. The combination of sweet, crunchy, savory and acidic is perfect to me. Lately, I have also tried the Scallops on Beet risotto. The scallops are great, but the risotto just doesn't work, though I love beets and I love risotto. I have, of course, had the mushroom stir fry, which is very good but very hearty and heavy. Soups have been excellent. The current best desert is that peanut butter brownie. But beware...it is really rich and sweet. I also enjoy the wine flights here. Most recently, I took my 8 and 11 year olds at lunch. Though they were the only kids there, they thoroughly enjoyed the Kobe beef burgers. This is still my favorite place in Old Town.",review,dEMm29V7ktNHndxwXzhPfA,1,0,0 +8cL7aJVKTYmLguzXEAS3Lw,2012-06-15,cnXCw7hxnz1tytLG3y_kTg,4,"First let me start by saying they're beer selection= heaven. The beer list, is not only in order of type (which makes it easy to find a beer you know you like and look Below it to find something similar to try out) but also alphabetical and progressive. + +The food...DECENT. definitely not the selling point for this place, but for a place that's selling point IS a yard of beer...decent. + +Service: very attentive, waters & beers always full, bartenders are great at making recommendations for beer (when your being annoyingly indecisive about which fashion you plan to get inebriated). + +Bottom line, if your not freshly 21 and stoked about drinking a beer out of a yardstick then this place may notice be AS amazing to you, but it certainly does not disappoint when your in the mood for some grub and beer! Food can be pricey, menu is huge and so are the entrees so there's no harm in sharing an entree with a friend...more room for beer!",review,f4_0MTexPnmvuWwjTsR_mQ,0,0,0 +D5xdl1REXFeix3y1u-nXLw,2012-01-04,T4L2cqUhhDv7BJSs7wqg5Q,5,"This place literally just opened. I didn't really know what to expect, but when I walked in the doors I was immediately greeted by Nick, and he was very nice and down to earth. This is a shop for people who like to garden/grow plants hydroponically or in the ground. They have all kinds of gardening supplies and Nick said they will be receiving their seed shipment from Seeds of Change any day now. I will definitely be back, as my green thumb (or lack thereof) has been sparked:) P.S. I was informed that the in the next issue of the New Times, Grotown will have an add to clip out and bring in to save 20% !!Yay plants:)",review,oXBahXJCXUEATm5IVexw8A,0,1,0 +IuAPYzf3NSyfyXYgT46YVA,2010-09-26,sA_wkvAZpt4Hm6AXGecKNA,5,"FnB is how every restaurant should be. Unfortunately this will not happen because Pavle Milic, who runs the place, cannot be at every restaurant. + +This is a small, friendly restaurant in my hood, that just happens to have some of the best food you will find. I always feel welcomed & taken care of by the staff. I've come here with friends, but I've also come alone & felt totally welcome. I like sitting up at the counter, and I've actually met some really great people to chat with there. Pavle & his wife run the place, & they are the kind of people who always make you feel like they are glad you are there. + +Chef Charlene does things with food that make it amazing, & these are things that I myself could never accomplish. My main cooking skills involve a microwave or a menu. I just wish I had the funds to eat here more often. + +In conclusion, fabulous food combined with wonderful service make me feel lucky to have FnB in my neighborhood. :)",review,AdEy5KAIlMAy8xHyuMQCFg,17,20,10 +IykF45RvqD14rudLTDoigA,2008-08-12,MtFe-FuiOmo0vlo16_-tRg,2,"I love Coldstone like no other but this place has really bad mixers. I came in on a late afternoon weekday, no other customers to be served. Placed my order and figured she would give it a good solid mix. All she did was poke my brownie into my ice cream a few times, sprinkle some nuts, and called it quits. It was sad that I had to eat all of my brownie at the beginning because it ended up all on top!",review,y9YW-BpDACEGytpX3NaeRw,0,0,0 +UU-kkvyX6pyrl_4fK6Qpvg,2011-10-09,sygb6tDxewmncTsLdHFzkA,4,"My first ever trip to Bass was overwhelming. Like walking into a Sportsman's Warehouse that had mated with Dick's Sporting Goods, and then gone on steroids. Bass Pro Shops is an outdoor person's dream. + +And it's good for the whole family, oddly enough! + +Once you get inside this massive place, you have an upstairs and downstairs. There is a kid's area, a restaurant with fresh fish, a huge women's section and mens, and areas for fishing and boats and hunting and camping and survival and gear for any occasion. You can look at the giant fish tank, climb up a faux rock side for $3, and just be purely entertained for ages. They have snack foods and jerky and sweets. BBQ grills. Do they have guns? I don't know, probably! They have GPS equipment and water bottles and on and on and on. + +It was exhausting in a great way. My camping/outdoors needs tend to be more mimimalist oriented so I prefer an REI. But I like it here a lot. I picked up some socks that have a lifetime guarantee, and a nice woolen shirt for almost nothing, and a couple of gifts for the hunter/outdoors people in my life back in Tucson. + +Bass: it is an experience.",review,61CTpBsZmaYbBO0qOZzROA,0,0,0 +_FXql6eVhbM923RdCi94SA,2011-08-26,0GWbPY8bPMehWN73xvuOdg,4,"Big fan of Hula's been a bunch of times, but finally was compelled to write a review. Just came back from a week in Maui, so I was still in ""Hawaii-Mode"" (which is soooo hard to get out of lol), so I insisted we go to Hula's to get my Hawaii fix. Mainly....that just means I was dying for a good Mai Tai. + +If you go here, you MUST order a Mai Tai. While most of their drinks are pretty good and tropical tasting, the Mai Tai is the best in town (now that Trader Vic's is donzo). I'm a Mai tai snob, and cringe when most mai tai's here on the mainland are made way way way too sweet and fruity. The Mai Tai at Hula's could rival some of the best in Hawaii in my opinion. Mostly rum (white and dark) and just the right amount of sweet mixed with the right amount of tart/sour. They go down great and they hit you with quite the kick before ya know it, so be careful ;-)! + +As far as the food...its good, but its not Roy's so don't except anything amazing. I usually get fish here, just to go with the whole Hawaiian thing. Most of the times I've had Mahi, it can be dry sometimes, but always tastes good. Ive had both the wasabi crusted and the macadamia nut crusted, both are decent. The Luau Pork plate is darn good, but my recommendation is get the Luau Pork sandwich instead. It goes so much better on bread, than just by itself. All the appetizers are great to munch on while you're enjoying your Mai Tai...all thats missing is Hawaiian music, and the sun setting over the ocean :)",review,omuO9FVYAVRTybkSc4a4fw,0,2,0 +J-c25QK8xBqv1P-huUkoTQ,2010-08-27,nAJ0HvYhoUjo5wKMewK7iA,5,"I LOVE Laser for Less (Chandler)! If you are going anywhere else for Laser hair removal you need to stop now and call to make an appointment with Laser for Less, Chandler. I wasted a lot of $$$ at another Laser removal place before I found Laser for Less and now I am kicking myself for not going to them first. If you pay to wax any part of your body you should be lasering that hair off. It works better, lasts longer, and in the long run is cheaper. + +Pros - +1. Free touch ups 14-18 days after your first appointment if they missed 1 hair they will touch up for free. Never had a problem with them discouraging me, in fact it was the opposite they give me reminder cards so I know when my touch ups are due. They encourage you to come in. +2. They can also charge you by the laser shot instead of a whole area. So if you only have a few random hairs they will just charge 10 cent per shot on the legs or 70 cents on the face or smaller areas. You can't beat that deal. +3. I am pretty sure they beat or match all prices in town. +4. Once they laser the hair, all your hair will fall out and wont grow back for like 2 months, its better than waxing. Not all laser removal places use the type of laser that does this place does. That is why I recommend them, it works a lot better! +5. They actually care about getting rid of unwanted hair and will go over all their policies with you. Kristen is who I go to and she is great. I have been to almost all their girls and they are good. +6. In fact when it was my birthday month I didn't know I got some discount and they back credited me for it, I feel like they are always trying to get me the best deal. +7. They always have deals. Just last month they had their underarm extravaganza where you can get your underarms done for $30!!! That is so cheap. They let you buy up to 3 sessions. I referred a friend and she loved it so much because she didn't have to shave her underarms the WHOLE summer. +8. I love Laser for Less, CHANDLER!!! + +Cons - never having to shave again, darn.",review,mqueHx5CFC9IsZxLQb3H9g,0,3,0 +GrUh2Jo6sL3wllrtZY4zmg,2012-03-25,oY2weReylq-SmJUp3LBAvQ,3,"= = = = = = CLOSED = = = = = = + +After having enjoyed this nice 3-Star place which we regulars called ""Eastern Buffet & Tacky Swapmeet"" for over two years, I was sad to come up here today & find them gone. :-( + +For a similar place nearby I went to New China Buffet today, & enjoyed it. They're at 2939 N 24th St.",review,ikm0UCahtK34LbLCEw4YTw,0,1,0 +1nhug_rhFFtF9D61X_EVBg,2012-03-12,zcOqzbvDrPY-kJvMMoaGDg,4,"We had a very difficult time finding trail 201 which was noted as one of the more strenuous hikes. We took trail 100 and came across some extreme mountain bikers, several other hikers and a couple who gave us confusing directions on how to reach one of the highest sections of the mountain. We got lost and ended trail busting which is highly discouraged but give us rules and we will break em. During our run back down the trail I took a pretty hard fall face planting into the dirt, stabbing my right hand into a rock and banging up my knee. No broken bones or teeth, thankfully. We had just passed a couple of hikers when I took the fall so they saw everything. I laid there for about 10 seconds, jumped back up, noticed the blood, my torn tee and just continued on with the hike. We came across a park ranger who was standing outside his truck and asked if he had any medical supplies. Unfortunately, his first aid kit was about 20 years old and didn't contain anything that would help any of my wounds. We found a CVS on our way home and picked up some medical supplies and my wounds were washed and bandaged in the parking lot. + +Probably my most memorable hike thus far.",review,4lkTIhTuMhLprQprGlTRlA,2,2,2 +duHUQFn7K-Ybs1rPI4AOEQ,2012-04-21,-mx37da3WjhatYeOMqz9DA,5,Excellent service and food. Best tex-mex in the valley.,review,7MN4_lEG5yVFTaEHSfJMVg,0,2,0 +iWlaj4R-2BTsWR7PwL90BQ,2011-09-29,jhuJCBXos-g3xSWVky-NkQ,1,"The organization is grand with a ton of selection but the employees could care less about costumer service. + +It is very amazing with the amount of unemployed people in the city they have to hire the most incompetent individuals.... + +I'm not going to be ignorant and say they are ALL bad, but a few in the bunch seem to make it difficult to be a repeat costumer. + +Try talking to a manager at this location and you will be routed around the store till you finally get some one that states ""the manager is off till next week."" + +i will stay a website purchaser until they change their policy at this location and hire individuals with a better standard",review,ZcjSjT_7mQOx2LOhYq01bw,0,1,0 +7lbvsGKzhjuX3oJtaXJvOg,2012-12-26,uddCuR6lHzMya-U4t6OzXw,5,"This store has the most pleasant employees of any Forever 21 I have ever been to. The girls are always smiling and they take the time to esquire if you need help. The other day, I went in and an employee spent over 10 minutes helping me locate a particular skirt my sister wanted for Christmas.",review,lcu7u9kSWMeSNq6j135BfQ,0,0,0 +zofs5Ig8kgvtFyp3ySoSBA,2011-08-12,-ORxBhgPdPF7wAUZMkwJSA,5,"I love cupcakes. Its true. I really do. I have waited in an hour long line outside of Magnolia Bakery in NYC to experience the bakery that started the cupcake craze. That said, if there is a good cupcake to be had, I'm on my way to experience it. I must note- that I am not a fan of Sprinkles; as I think they are overly dry and waayy too hyped. + +We just ordered two dozen different flavors from Mind Over Batter to celebrate our August birthdays (its a tradition we do once a month from baker's around town). Because of my love for all thinks coffee- I got the Carmel Mocchiato. Let me just say- i wished I took a picture. But I couldn't help but to dive in. Mocha Buttercream frosting-piled high, crushed coffee toffee and carmel drizzle. + +I also heard rave reviews from the office about the Birthday Cake and the Chocolate Red Velvet. The one I most want to try is the Lemon Drop (because I love lemon). + +I'll be back in very soon to check out more flavors and cake pops.",review,wEwU88bt18BUf7DhHDRbHw,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2010-09-12,eSoWi45YPFQYUz8fN6VdpA,1,"This is my very first review and I can't say I feel bad for what I am about to write. I took everyones review hoping for a really good hotdog and onion rings like the reviews I read (best hot dog ever, amazing hotdog., etc) oh man were we disappointed. I'd have to say I'd go to cocstco for a hotdog for $1.50 with a drink.",review,w225lKHnX3jorkSXWgss0Q,0,1,0 +oIkwj10HmUiognO68j7jOg,2009-05-05,hqpTT_eLPiQlb7-77zUo3w,1,"I went today to meet my daughter for lunch. We are both big sushi enthusiasts. The interior and atmosphere was beautiful. Well appointed. +The service was excellent. We ordered edamame, was good...nothing to rave about. Not much you can do to mess that up. Drinks were well poured but exspensive for what you got. Ordered five different sushi rolls. +All five were bland, not much flavor and stale. The fish was not fresh. +Paid $12 for a soft shell crap roll and it tasted days old. Will not go back. +Did here they have good pizza and a happy hour at three. My daughter says to give it another try. We'll see... I'll let you know if I do.",review,kBM2vv1yEDqByi5FvucHYw,2,3,2 +z3yFuLVrmH-3RJruPEMYKw,2011-07-01,Tx4liSAgZDz9pNTRwXLAEg,5,"I love this place! Everything about it! The great food, the grocery section, the cramped seating (it gives character). It all goes together perfectly. Haven't found one bad thing yet:)",review,V-gZC7GXA82mYfvWprtYJg,0,0,0 +fZWVI2Bjk6wJoRUB0s4Pzg,2010-12-15,EMYmuTlyeNBy5QB9PN1HWw,2,"It depends on what you're looking for I guess. I was putting together a new household and needed housewares and the various crapstuffs to make my house seem more like a home. Also I would have liked to have found some toys and furniture for the boy. + +It's pretty well picked over, and for the most part priced . . um . . . optimistically. + +The Goodwills vary greatly from location to location. The store on Chandler Boulevard in Ahwatukee foothills gets some really nice cast-offs. I have a feeling this one on 16th St. is in an area where there's too much competition from other thrifts for good donations, and where shopping thrift stores is so well-accepted that they can still drive their prices up on whatever stuff they get. + +I think there's a condition in the DSM-IV called ""Thrift Store Delusion Complex"" wherein people willingly pay prices nearly equal to new and think they're getting a deal. I'm all for helping the disadvantaged, but the idea of a thrift store is . . . ahem . . . thrift.",review,nDBly08j5URmrHQ2JCbyiw,1,2,2 +umdxfhSlk67yGEi8-S-bEg,2012-08-19,NVXB1Hzil7qSe6MpdD8oYg,1,35 minutes... No food. You be the judge.,review,cZWYisGrQIuN7Guez4KGjQ,1,1,1 +CFaRVxsnN4Zjf28cbORKIA,2010-08-06,ITCXnv7hHhq5VuUKDSdpLA,3,"If you don't want to read the whole review, I'll sum it up in one sentence -- Via Delosantos only uses yellow cheese. + +I went here about 4 years ago for a celebratory occasion, and was afraid to eat the food based on the smell of old grease and the look of the entrees on tables around. We ate on the patio, which is directly on Central Avenue, and after the horrid smell of grease & exhaust pipes, I couldn't wait to flee the scene. + +Last year, I was unknowingly led back to this same place. Years had passed, and I had completely forgotten about my vow to never return. This time, I was pleased. + +It probably helps that upon entering my expectations were very low. I immediately was attracted to the kitschy Mexican artwork, their vast tequila collection on display, and of course, the christmas lights. + +The salsa seemed fresh and was just the right amount of spice. They keep the chips & salsa flowing so be careful not to fill up. The margaritas are really sweet, but they're cheap and will get the job done. + +This is the kind of place where you stick to basics. Don't get fancy or try and order something healthy. Get a chimichanga, burrito, shrimp enchiladas, or a chile relleno, and if it's appropriate, get that sucker enchilada style. Be sure to have your Tums handy when done if you think you can eat a whole plate by yourself. + +The portions are huge and totally splitable. Oh, last word of advice, don't get the guacamole. It's super gringo, and has a ton of sour cream in it. + +I'm giving this place 3 stars b/c it's a good value if you're sharing, they ambiance is very comfortable & amusing, and the service is very accommodating.",review,jt8jtEY1K6TD1FBzYa7HGw,0,2,2 +9dopZKjYiKwPiw7kEQsEag,2012-08-29,350wZFK1W9Hz1e9b-On3Hg,3,Sooo...if they ask you if you want to sit in the 'lounge'...just say no! Trust me... Artichoke brushetta is good but garlicky which I like,review,eapbAr6Zi5G8rK62gaWT9Q,0,0,0 +Dp9905k5BH4MsWHK_K01tg,2009-09-23,2jEbztXAifOWzMMKHv58YQ,4,"I can't dance..yes I can! Well tonight the hubby and I took our first dance lesson and what a hoot! Had a blast. The instructor's approach was clear and easy to follow. She did a great job at blending focus on the instruction with keeping it fun and upbeat. The facility is pleasant, immaculate and huge - and available to students for practice at any time, not just during their lessons. +As mentioned in a previous review, they have a great deal for first time students. The best thing for couples is that the price per lesson is the same whether for a single or a couple. Because I've only done one lesson, and my first dance lesson every (well since high school, but the dinosaurs because extinct since then), I'm looking forward to more lessons and the opportunity to add a star.",review,GnZWh25MyJD1d5FMKl3QmA,5,6,4 +sxQiL_xBP0AuTWVWEQ9Lzg,2008-02-06,EnbCMn59AlRnxoIQjIAz9w,4,"I know its gonna sound a bit foolish when I divulge that I was actually a bit scared to enter the Roadrunner Lounge, but the truth is that I was. Due to its lack of windows and barebones facade, I concluded that this bar had the possibility of being the sort of place where, when I opened the door, I might bare witness to a mob boss or two trying to decide what they should do with the man they just shot... but that wasn't the case. + +What I discovered was a long corridor flanked by mirrored walls and strings of multicolored lights, as well as ample seating and classic video games to boot. The games included PacMan and Golden Tee, accompanied by a dartboard and a pool table - enough to keep the gamer in any of us busy for at least a few hours of drink-sippin. + +The drinks were cheap and strong, and the tunes were decent - however the digital jukebox put a frown on my face; I hoped for a Wurlitzer. Our barkeep was friendly and efficient, and our drinks were strong and low-priced. I think tap beer's only two bucks, and mixers aren't too much more. + +In conclusion, the next time you're feeling a bit nostalgic, and you're looking for a watering hole off the beaten path, kick a few back at the Roadrunner. Bottom's up!",review,fpWiDfJVWqDNWbfft22anQ,4,4,2 +TKJ2qE4NQfTBvekYs7JkGg,2012-03-11,ALGhOlSh__RuRj-f7EHZyw,4,"Horseback riding for an hour and a half, my @$$ hates me right now...but it was so much fun. + +The terrain varies from dusty paths to shallow streams and rocky roads. I'd consider myself a beginner as far as horse riding goes. I don't count horse camp 20 years ago to count towards ""experience"". But riding a horse is kinda like riding a bike. Once you learn you don't forget how to do it, but every horse is different. + +We had a successful ride, seeing wild horses, a roadrunner (yes, they do exist but look nothing like the cartoon one), bald eagles and their nest, roaming cattle and waded on horseback through shallow rivers and streams in the breathtaking desert. I wanna move to Arizona!",review,gDl4dMYPpuuIaNAW_Bh3qQ,0,1,0 +H7KzlC0-o1wIhlGg-Me5Ag,2011-04-29,JMENONnRPKsgWj3lRHnh3w,5,"Best Chinese food in the Valley. As others have said, salad dressing is addictive as IS available to take home in containers. Shrimp dishes are outstanding with large, plump high quality pieces of shrimp. I have never had even an average dish here. Go and enjoy!",review,9NyCrQI8gvY73gz7hSNY8g,0,0,0 +V6BYjHM9SnXscfkln3hCdA,2011-09-05,dYw7WQkpVeK4e_A4Yxv0iQ,5,"Here's the deal. I said I was done with OT, but a friend told me the management had changed and it was worth another shot. + +My friend was right. + +Everything I had a problem with before was remedied. I went in unannounced, didn't tell anyone about a previous bad experience, and I was given some of the best service I've received in town. When we went in, we were sat quickly and tended to very well for our entire visit. + +No texting employees, no indifferent waitstaff. The chef was in the food window expediting food, making sure it went out promptly and correctly. Not only was our server attentive, but there was a team service atmosphere and other servers came by our table when we had empty drinks, debris on the table, etc. + +The decor has been refreshed, and although I didn't dislike the decor originally, it is definitely an upgrade as well. Now its much cleaner, but still maintains the character that was part of its charm before. + +Props to the new management. Well done. I'll be back. + +PS - forgot to order side syrup. Curious to see if they still charge $2.",review,2CdbmUXg7kkmbJ1XSDrY-A,0,1,1 +7cP7WFmWiTVh-raIL3N_Vw,2007-02-03,mGVU-oYnheibMlBjYOyhvA,4,"Loved the atmosphere most of all. This is a converted bungalow house that should set an example for downtown revival in the future. Very respectable selection of beer and wine and a limited menu, but with creative selections. + +* The house beer, made by Four Peaks, tasted like something made by Four Peaks, which, if you've ever had a beer crafted by Four Peaks, is the sincerest of compliments. + +* The ""G Red"" blended red wine didn't suck. + +* The Ham and Eggs: Deviled eggs were quite tasty. The ham was medium-thickly sliced and put on a stick. Nicely warmed. How could you possibly f up ham? + +* Grilled cheese and tomato soup: Both quite delicious. + +* Cheese plate: Three cheeses with toasted almonds, crackers, dried apricot and apple half. I've had better cheese. Not the greatest selections. Could stand to include a nice blue. + +An overall pleasant experience, but I agree with Omer K. that the music was distractingly loud. + +Fortunately, our service was acceptable. No complaints about it. Matt even passed through checking on customers a couple times and chatted with us briefly.",review,1uTS7hrpgphH7ZDK8EThzw,1,3,0 +d3MxUXS1b6U2P_gGuCO1-A,2011-07-12,0lAz-mLMpE9wb-SLK4f0sw,1,"I am not a fan of this place. I like to try to stay positive though so here is my attempt a the proverbial ""positive sandwich"" + +Top Bun: The location is fantastic. I really like where it is, its a cute little place that is very easy to find. + +The Meat of the Matter: The food here is odd. I am very open to trying new things and experiencing different cultures. As I have mentioned in other reviews, I love all types of food from all over the world. I didn't care for this place. I ordered an appetizer that was wrapped in a banana leaf and i honestly thought I was eating an ashtray. It wasn't good. The pad thai that I sampled was very lifeless. I had a friend get a big bowl of soup that looked good but i didn't try it. + +Lettuce, onions pickles, tomato: The service was not good. I sat at the bar the first time I went here and we got ignored for the most part. The bartender (who i believe doesn't work there anymore, luckily) sniffed at me when I asked for clarification on something. There are also jars of really weird floating things at the bar (probably pickled/preserved veggies/meat/fruits etc.) it was unappetizing to be around....I don't have a weak stomach at all, it was just odd. The second time I went in, the service was equally as bad. there was a table of 8 of us for lunch and the place was mostly dead and I had to go up and ask them to take our order after we sat waiting for 30 minutes. Subsequently, the menu is small and the prices are high with not much room for substitutions or changes + +Bottom bun: I like the owner, he is really nice and friendly. The cooks were also friendly. I like to believe that my taste buds merely didn't care for this place. I know a lot of people that have very positive things to say about this place. I will not recommend it as a personal favorite and I will quite frankly probably avoid it unless it is specifically requested by a client. I am completely fine with the concept that not everyone has to like the same things. I personally have not had a good experience with this place, but I respect the fact that a majority of the reviewers for it have.",review,hTKFGpi3ltCV4B-XDFRT-A,0,1,2 +fmWyI5ec05F8PJpx3eNpLg,2012-10-06,0vCShkH7ldjJ9GXA4n7KHw,3,"A bit disappointed so writing after only one exploratory visit and a revisit for the one dish that deserved an encore. + +The Ossobucco was the major disappointment, A beautiful Presentation that lacked flavor and was past overcooked. One of my favorite dishes when prepared correctly, but they just missed - badly! + +On the plus side the Gnocchi were little pillows of wonderfulness! Reminded me on our neighborhood ""little Italian lady"" who made it for me as a child over 60 years ago and was, until now, the very best I have ever had. This version was very close and was served with a wonderful four cheese white sauce (calorie free for certain!). The Caesar Salad was a decent rendition but nothing I have eaten here approached the Gnocchi, unfortunately. + +Worth the trip for the Gnocchi alone!",review,Phj1jHdpcPPBE1hNg9-Tqw,0,0,0 +-fsCfTYEnJ4s6yStgBnQig,2009-03-18,RWQ44U4aLBnmxy8l_zrFEQ,1,"If it wasn't for the bad food I would go here more than once or twice a year. The meat was dry and tough in my first entree and not edible in my second. Now when my wife drags me here to watch a movie, I order a salad only. Because they do catering, I have a suspicion that they serve up left over food from catered events to their restaurant customers. + +The service is OK. They have a couple of generic draft beers. Everything is overpriced. Caveat Emptor if you order an entree.",review,3XyuBpNbvrHukaEJyWBAsw,0,0,0 +wNUea3IXZWD63bbOQaOH-g,2011-07-20,sFxTS1_APzl9GCnn0E1LiA,2,"Never. Again. *hork* + +I have been to this location a couple of times. My friends LOVE this place, and I really wanted to at least like it. But here I sit typing out my review and fighting the urge to double over the trash can at my desk. I can't remember the last time I felt so sick! + +A few things about last night's dinner stand out...as negative. But I'll start with the positive, which bumped the review up from 1 star to 2. + +POSITIVE: + +Our waitress was very friendly and chipper. + +NEGATIVE: + +But alas, it was not enough. We ordered edamame, 4 rolls and a couple of sake bombers...um...but the ""shot glass"" was too big to fit in the glass...so that no worky. + +The waitress asked if we wanted everything to come at once or if she should bring them out as they were prepared...we chose the latter... + +1) we never got our edamame, + +2) it took 30 minutes before the first roll came out (with no wasabi or ginger??), the next 2 rolls took an additional 30 minutes, and the 4th roll was about 5-10 minutes after that... + +3) the spicy yellowtail (roll #3) had obviously turned, it smelled like bad fish, which I unfortunately didn't realize until it had already made it's way into my mouth...I felt instantly sick and haven't been right since then, which means I didn't even get to enjoy a taste of the 4th roll because I didn't trust it anymore. + +POSITIVE: + +She took the yellowtail off our bill...which seems like it would be a no-brainer, but you never know these days. + +NEGATIVE: + +No apology for serving us bad fish, and no acknowledgment from the mgr on duty, which should be standard operating procedure at a restaurant. + +Also, the acoustics are not conducive to having any sort of conversation. The music was at a decent level, but for some reason, the place is just REALLY loud. + +And finally, and this is just a matter of personal preference, I'm not a fan of the seating arrangement. It's set up in a way so that you are rubbing elbows with other parties and unable to avoid being all up in their kool-aid... + +POSITIVE: + +For the moment, I'm still alive (which feels like a negative right now, but I'm hoping that this current wave of nausea will be the last).",review,2KNPtV5E44vAiEr5BvMkUA,3,2,4 +e1TRaM2GZq8qBFogZaNklw,2012-08-22,cHiH_DWMj_nrXiUR31kexA,3,"Like many of my fellow Yelpers, I too take issue with the ladies at the MAC counter, but not necessarily Nordstrom's as the ""store."" After using my pressed powder compact to the point of ""crumbs,"" I prepared for battle and a trip to the mall. But, before leaving home, I checked my email for sales and specials. What I discovered is the best thing ever! Yes, this is drum roll worthy - so start tapping! Nordstrom's offers FREE shipping & FREE returns! Every item on the website regardless of price can be shipped to your door for (in case you didn't get it the first time) FREE! Needless to say I put down the sword, took off my armor, and ordered my compact online. I am now ""crumb-free!""",review,EabJsW5sDkfUx0WIhqlJeg,0,1,1 +Zh_y9AmSfWZpR2JB9wye-A,2012-07-28,anNiMqPrpbsmxGaKpX3rRA,2,"Hella, hella pretentious and offering food not at a level to back that up, imo~ No complaints, but nothing worth coming back for. + +Really bland tacos, bland beans with tacos, decent portions, nice martinis/cocktails. Lemon tart was lemony. Mushroom pizza was mushroomy. + +Pretty stock Safe White Yuppie Food menu aimed at hitting every upper-class food trend on the map right now. Nothing gets people going like making them feel green AND worldly! + +Good wait staff, hostess was not on the ball so much, it was a Thursday night near closing time and there were toddlers crawling on top of some tables on the patio and other such perils of family dining. + +Not a place that I will go on my own or drag my husband to. I understand the appeal for some people, bless their hearts, but this place is just too boring to waste calories on.",review,W9h1ufjEzDp7THyAqRw65g,2,4,3 +6nseTZb6WrGWcithRThfag,2009-07-31,85TTjXjzjOej-M5EOLLbEg,4,"So I started this review over a month ago, and I still can't get the Duck Breast Tacos out of my mind. + +I don't remember much else at this point, except I got the Lazy Enchiladas and they were great too. But M got the aforementioned tacos, and their tender smoky goodness haunts me. + +I need to go back as soon as M gets home.",review,yGs16xQiN3dLo03OQyto8A,1,1,1 +eHC_xNrT1SkJyC2oncJlhw,2008-08-28,l-EBLrFAVyESzYqbo5LKBg,2,"We went here for the fabulous UYE. As the restaurant is often empty, Julia though it would be good to give them some business...but in the end it was our group that ended up being given the business. The words highway robbery come to mind, but I guess we weren't really on the highway. The prices listed on the menu really didn't seem that out of line, a bit on the pricey side but nothing alarming. Our waitress slyly sold us a kazillion dollars worth of appetizers that were not on the menu. We got 4 plates which consisted of 4 individual sauces with some stuff in them...one had shrimp, one had chicken, one had pork, and one had chihuahua. Oh wait, I think that was the cheese on top. Anyway, the plate with 4 tablespoons of sauce was not worth the $25...oh wait, we got 4 of them. The waitress also managed to slip two orders of guacamole in on us for $11 a piece. As far as the entrees are concerned, the portions were small and the food was kind of meh. The mole was way too sweet for my taste. The biggest bummer of all was NO BOOZE! The $120 worth of appetizers would have gone over much better if they were washed down with some frosty margaritas. A couple of pitchers and they could have slipped us some $100 flan. + +Regardless of the price and the mediocre food, it was well worth going for the amazing company of the awesome Phoenix Yelpers. I don't think I would go back for the food though.",review,ytr46wNbedr8-iqSZngl8g,3,3,3 +_ISHH8x8Qe6IoVTQWegbpQ,2012-05-29,TsFuefVgomHNrm_sQBJOdg,1,This was absolutely horrible. I got the supreme pizza with the mystery meats. I threw it in the trash. I will wait until I get to my destination to eat. Horrible!!!,review,DRw2GfcyTo8wjx2G27NxlQ,1,2,0 +E0DwaRvT_QlMwBU679xSCA,2012-06-22,hYSsjM3d_IEZTHa2q62iNA,4,"I'm a sucker for popcorn, so when I saw a ""now open"" banner along with the ""My Popcorn Kitchen"" sign today, my car swerved around the parking lot and grabbed a spot right in front. I swear, it was out of my control! + +It turns out, today was the first day this adorable little popcorn/candy shop was open... so lucky me, I get FTR (first to review)! + +Kim Brush, the owner, was front and center, and welcomed me as I walked in. She also had a team of people working there that I assume were all training. They were friendly although it was obvious that I was one of the first customers, so it took longer than necessary to package up my small bag of kettle corn. The customer before me appeared to have been waiting awhile on her large bag of Puppy Chow (which looked pretty amazing). The kettle corn I ordered was just the right balance of sweet and salty. I had to dig deep to exercise my self-control and not demolish the entire bag in one sitting! + +I took a menu to go as well, and now as I look at it, I can't wait to go back to try more of the unique gourmet popcorn flavors. Not only do they have the basics (Buttery and Low Salt), but they have all kinds of savory flavors including several different cheeses, Dill Pickle, Salt & Vinegar, and Southwest Jalapeno. If you're more of a Caramel person, they've got you covered as well, and of course there are a rainbow of Fruity Delights and Decadent Chocolate flavors too! Popcorn Bags come in all sizes from Mini to Party and range in price from $1 to $149.95. You can also order tins, boxes, and/or pots of popcorn and this place ships anywhere in the U.S.A. + +Congrats on your Grand Opening, My Popcorn Kitchen. Let the popcorn parties begin!",review,fczQCSmaWF78toLEmb0Zsw,12,12,6 +ut-kla-EA23nJOij_dcL0Q,2008-10-04,HGlLM4J1U-xJBgP1-_jmXA,3,"Maybe I'm being generous, but CPK is an okay place for unique pizza. I've always enjoyed their Santa Fe pizza, but this time I thought I'd try their Greek pizza. It was o-k. Nothing special. Too many veggies, without enough meat, cheese and Tzatziki sauce to counter-balance it. + +What really bothered me was that they sat my sister and me right behind the kitchen. I don't think they should even have a table right there. I saw everything that was going on in there. Plus, I kept hearing the servers complaining to their boss about shit. One girl was saying something about another server ""not liking her."" I felt like I was in a high school cafeteria. And, to top it off, it was FREEZING in there. It is never a good idea to have it soooo cold, that your patrons want to get the hell out of there to warm up! + +But, besides my few complaints, it is a fine establishment, although it could definitely improve. I'm sure I'll go back again. But, maybe the next time,I'll stick with my old stand by -- the Santa Fe.",review,oIVsVM8H273aoT1JUmsDIg,2,4,1 +UL3OMN_c-NXHlyb97pDifA,2010-05-13,soA1xb5ug18f0Mb_sDwaVQ,4,"This was another stop on our pub crawl and I only had one drink here so I don't have too much to go by for rating, but they had a nice selection and the cider realler hit the spot. They had a nice big patio outside that accomodated a ton of us and when the birthday boy was ready to leave, the waitress tallied everything up nice and quick.",review,qABKRj1ggJmtvrL9FMFtuA,0,0,0 +OEWW22gUG_JADQ3h4ajXtg,2011-09-10,hyjUG1baYa-q25xsoLedqA,5,Have alread posted a review but had to add that a friend at work ordered vegan chocolate cupcakes for my birthday and they were sooooooo delicious!! All my nonvegan coworkers LOVED them.,review,OOYZNIBX1Qp7fUF7IVpXog,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2008-06-10,WRBYytJAaJI1BTQG5VI8oQ,1,"Yeah...notsomuch. + +Sprinkles is sooooooooo not worth the wait . Or the chaos. Or the hype. Or the attitude from the morons who work there. Other things that are terrible about Sprinkles include... + +- The cupcakes are not that great. I ordered two. The vanilla was okay, the cinnamon was dry and chalky and I really disliked it. + +- This place is a disorganized mess. + +- There is no rhyme or reason to any of the ordering process. My friends and I were carefully watching the ordering process and we actually think they decided to choose the dumbest and most irrational methods to take orders and dispense cupcakes. Just stupid. + +- The owners must have purposely only hired people who cannot think for themselves or make decisions. No sane person could possibly work here without being like ""um...there might be a better way to do this..."" + +- Also, the employees were rude. Did I mention dumb? + +So get this: I attempted to order a bottle of water. I told the clerk it's 100+ degrees outside, I walked there and I'm realllllllly thirsty. The idiot at the counter told me ""You can order a water here but you must wait for your name to be called to receive the water and pay for it."" I pointed out that the water was RIGHT THERE and there wasn't anyone currently paying or using the register. Couldn't she just sell me a water? She said ""NO"" and proceeded to WRITE DOWN MY ORDER (just the word ""water"") on a cupcake order slip. She then told me to stand there and wait for my name to be called so she could HAND ME THE WATER and then ring me up. + +I was all sorts of thirsty and all sorts of moody that day so I got really ghetto on her ass and was all like OH HELLLLLL-TO-THE-NO!"" + +I said ""It's quite simple. Just hand me the water and I will hand you money. End of discussion."" (There are the actual words out of the mouth!) + +She looked really mad and also possibly terrified of me and my 5'4"" 110 lbs of fury. Thankfully she handed me my water so I did not have to stab her. Which was good because I was waaaaaaaaay too thirsty to stab anyone. + +I must be properly hydrated in order to commit crimes of passion. And I'm mad crazy passionate about my cupcakes, yo.",review,g84VjttN28PWiv_WtdhnSQ,17,20,30 +8lHJm7hAlfsUNbVb3YaSMA,2009-02-18,4XqFXkL3cjd22fZH2KU-Hw,5,"The BEST SPORTS BAR in chandler hands down!! A great place to meet friends and even bring the kids!! The owners are always around to ensure ur experience!! TV's everywhere, if you love sports and beer this is the place for you!! The nob has events all week and food specials to go along... the ribs are amazing!! however the GYRO is good as it gets!! The best gyro in the valley you can write that one down!! and the wings... once you pop u just cant stop!! + +HOB NOB SPORTS BAR & GRILL cheers to you!!",review,aXPNzAxz2JWrjelJdjdfqQ,1,1,0 +52QtjHlHoa7V611bOvv1aw,2010-05-16,IZvHtSx-eeLZv0F6rimZzw,5,"Beautiful restaurant! Terrrific service! + +Wonderful, fresh and authentic cuisine - what more can I say but don't miss the Carpaccio!",review,U4E0mci8eBfGlwFLWo2cIA,2,2,0 +24V8QQWO6VaVggHdxjQQ_A,2008-01-14,VOHKdym9kQuC7etKBtXZvQ,4,"I wanted to check this place out as I had got my mother in law a gift certificate for here... It is what appears to be an old farmhouse that was left standing in the middle of Scottsdale busy city life.. The inside is very charming, like stepping into someone's home with all the good smells of cooking. We didn't make reservations and since it was a Sunday, knew we were pushing it, especially with the after church crowds. But as luck should have it, was able to sit outdoors and was such a nice sunny day, was great. I had the Chicken, wild mushroom and leeks crepe..was that ever heavenly! My husband the strawberry chicken salad, which he also enjoyed.. One thing that drew my attention was that there were a lot of women senior citizens...very well dressed ones...obviously part of the Scottsdale upper crust..I think we were the youngest ones in there.. Next time I'm back in Scottsdale will have to go back..",review,rY0T1Sx-kSeSHgnPbLOA1g,3,1,0 +BFZHdg2TRrgw56CyqkSryA,2012-05-24,-fX_t5IE1Ca_FqePEiNy7A,4,"Lunch review: +Great quick lunch options. I'm a big fan of the lunch salads. They are very filling (paired with the free chips and salsa!!) My favorite is the Chipotle Chicken Salad (Mixed lettuce, black beans, roasted corn, cheese mix, pico de gallo topped with grilled chicken)-- it's only $6.99. The spunky chipotle dressing is delish. There are also several lunch-sized versions of dinner plates available for diners looking for a heartier meal. The service is always friendly and were are able to get in and out in less than an hour, which is very convenient during a busy work day.",review,IbNzF_SIdZioYbLnL6F5Vw,0,1,0 +-9pVS__IliMA2aNEYzrQrg,2011-07-31,bn2OLRVHRlquGcSp_9KNIQ,3,"came out last night with a few friends. The bar was cool, but I'm really not a fan of the crowd in Old Town. The drink prices were not bad, but it was a blast dancing outside. Overall a pretty cool spot.",review,gcyEUr4DXcbjnGRAWFtfAQ,1,2,1 +0Xz7umPUtAxf6JMHwybnmg,2012-10-05,-d5xJozQi6bNH1mchDjekg,5,I've always been treated well @ D'ambrosio's despite my not exactly being 'N Scottsdale plastic'. :),review,1m8rFe-BCr6qHSMoV5KkUw,0,0,0 +uf4AWTEI6RmRUXx-28MZsg,2009-03-15,wExRQGQ_gdBRLwf5c28mhw,5,"Ben & Jerry's is still the best chain ice cream shop! The employees are always helpful and polite, and their flavors are just outrageous! The smell of the waffle cones and waffle bowls wafts out the doors as you walk by, and you can't resist. Whether you go for new flavors or classics like Cherry Garcia and Phish Food, you can expect the most flavorful ice cream with the perfect consistency.",review,OQMOgqS1NFIyAW4i66iDYA,2,2,1 +FUI-hWH_bpis7AKZTWenUQ,2009-12-18,mMpcnn605-joiWZvMPlo9g,4,"Sit at the bar, order tacos and sangria. you will not be disappointed.* + +*you might be disappointed if you do not like techno music and a wide variety of alternative relationships being showcased around you. If you like to eat/drink and have a little social interaction and have an open mind, then this place is for you.",review,idSvgXVCamuEwbL3sp9O_A,0,1,1 +fjHUnUP1Lt-YAbeWUx2LrQ,2010-03-18,1i6z7SFTabmLRT_WAtUHbA,2,"Not the WORST place, but nowhere NEAR the best place, I've ever been. + +Went in, back in January, for a dinner around 9:30, on a rainy night with my beau. It took 15 minutes for our waitress to stop, acknowledge our existence, and take our drink order. By that time, we had decided our food order, and gave her that, too. Another 10 minutes later, we received our beverages. another 25 minutes later, we received our order, and my chili cheese fries were decidedly bland, while his hamburger was worse than McDonalds. Minus that his regular fries were actually good. + +I'm pretty sure that will be my only experience at SPS's. The decorations were pretty awesome though.",review,Sve2h1r-jOyaoGY2GYL0WA,0,1,0 +jqZKv-7F54guDLalXEjHxg,2010-08-05,g5HDYPyaKomPtMTAAiAtGg,4,"Went there for the first time today. Excellent burger, and all the extra's on the burger are free which is pretty nice. It was just over 10 bucks for a cheeseburger, regular fries, and large drink. The food was excellent. I ding it down to 4 stars though, just because anything this good has to be unhealthy, and its definitely greasy. The grease from the fries saturday my brown paper take-out bag. They also squished the top of my bun pretty bad when wrapping it up in tin foil. I'm guessing if you eat there, you don't have this problem as much. Still, 4 stars for an excellent burger and fries place. Definitely a step up over In-N-Out.",review,L-O1rmPXJ3ihCnfgJIigbQ,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2011-04-17,jkwsq63XsDOIx-lOHx-rHg,5,"Did you know that Malee's on Main offers cooking classes!? They offer them twice a month during tourist season and once per month during the rest of the year. I attended two weeks ago, and it was OUTSTANDING! Not only did we learn to cook Thai (which, incidentally, it was significant to learn that Thai gets its flavor by layering is sauces), but we were given the recipes for some of the signature dishes, served tastings, a meal, and wine pairings, and we were even given goody bags. It was a great way to spend a Saturday afternoon with another foodie!",review,NLDDaat42UQXQCOpU4e2TA,4,5,2 +gFDTSqVdeuAGA-mzWEP2rQ,2012-09-08,9xub6R8ZkVac--CiNEO3dw,4,You know......first when my girl dragged me here....i thought it will suck. Once I stepped in....well....BAM! Interesting colors fill my senses. I do appreciate the set up of this place and the quirky items I found. So yea it is a chick store but still managed to entertain me.,review,iJUVamUkqL6VfEMfyQoujw,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2011-02-23,RxVtyynTn5_MrxKFZkvTaw,4,"This review is for the cooking class... +I was told about this class by my favorite Thai joint in Chandler. My mom and I went not really knowing what to expect. +The class is held on a Staurday. When Chris called to confirm our reservation he made sure to let us know that a cab my be needed to take us home...sounds good to me. +The classroom is small seating about 20 people at the most. There were mimosas waiting for us. +The class started with introductions to the variuos Thai cooking ingredients. I found this information so interesting. How do you know which fish sauce to buy, what the different pastes smell and taste like, how to grow your own Lemongrass and so much more. +We started by making Siamese Kisses. It was all hands on and really fun. The next was a fresh red curry paste. Then we compared the fresh to the store bought brand. What a difference! +The Arizona Heatwave was next. So Delish. The final dish was Asian Pumpkin Custard. +We tasted everything along the way and then they served us HUGE portions of the items for lunch with a Champange paring. +The Chamange paring was also very informative and the pours were never ending. He was right about having a DD lined up... +The staff really cares about the food they produce and will make any dietary adjustments you may need. + +I really had a great time.",review,0o0VMEJeQY0pAAZ9nxErBA,3,3,1 +LxNehlnStQY_rxEwiPof_g,2011-06-01,PNHcsA9aGOjDQkT_lSSbmw,5,"Even though I've rarely had anything else on their menu except for hummus, I highly recommend this little greek hot spot. They have tons of regulars because the food keeps them coming back. The hummus is to die for (it only comes with one pita however, so I always order 2-3 extra). I have also tried their veggie gyro which is great. I have brought many meat-loving friends here and I've never heard anything but great things about their experience with their food. + +The staff is completely Greek. They are friendly in their own unique kind of way. Because I usually saunter in with a drink from Starbucks (same parking lot), the female owner assumes I work there and she always asks me how business is going at SB. I corrected her the first few times, but she continued to ask, so now I just keep it going and tell her it's going great but that I hate my job (because I'm assuming I would, if I worked there). I love her personality...very intense. Never smiles, even when a smile would be just right. But she is still very kind. Always look forward to seeing her and eating her food.",review,SWoWXML68esw-UhHRjLBQQ,1,1,1 +kfscAJnLVf6J2uEte7g-5A,2012-08-12,REryGbDQ8raf84FpUCo7SA,5,I came here hoping to catch brunch but I guess it ends at 11:30am or 12pm. Luckily the lunch menu looked just as tasty. We ordered the Luau pulled pork sandwich (the jalapeno cole slaw gives it a nice kick) and the Monte Cristo (french toast instead of regular bread slices = delicious). Service was friendly and attentive. The dining area is decorated like a household- very comfortable and clean.,review,_YFr0NsiulAoUOAtARP_Xw,1,2,0 +AZq_SBJsqsleJkQCksYsjg,2012-09-16,MhQ19Fb3mbxL7fcrLjPNxA,5,"My husband and I enjoyed a ""staycation"" here for my birthday. We had an amazing time! We took advantage of the great happy hour specials at the poolside bar and at the Sangria bar. The Sangria bar had billiards and a card table. They also had a wonderful Happy Hour menu where everything is $5. Excellent hamburgers and margaritas. We enjoyed a beautiful dinner at Palm Court and a breakfast buffet at Vista Verde. We took advantage of the free bike rentals and the exercise facility. The staff was amazing and very accommodating. They have definitely earned our business and will refer our friends.",review,Rj3LpeiJUPYBC8L_Xy6cBQ,0,0,0 +Y-NqaDy_1bb-Y5dQ33x-Pw,2008-07-07,30k1pU5P4EJYhIRxookf-w,2,"First of all, the hours, this place keeps the most absurd hours for a restaurant serving 50,000+ students and faculty. I cannot tell you how many times I've walked over to get a sandwich and Sacks has been closed. They open sometime in the morning and close at about 2 or 3 in the afternoon, I can't report definitively what the hours are because they do not list them on Sacks' website, apparently they are trying to keep it a secret. I understand a sandwich shop in downtown Phoenix keeping these hours, but here is an update for the owners of Sacks: ASU students and faculty do not keep bank hours. + +The quality of the food is substandard but the sandwiches are priced reasonably.",review,ykg3-2C-8Vv3K4mVj1iSfA,0,0,0 +tr4L9VWmPGZtdBD-L2Pofw,2011-06-20,mRYtZxroWxERkoDhEFnjTg,2,"I had Smashburger for the first time a couple of days ago and I was not impressed. My burger was way too greasy. The smashfries were good but they were greasy as well. I'm not expecting for my burger to be dry but there is a major difference between juicy and greasy and they crossed over into the land of the grease. And they were heavy handed with the salt. Unless I want my sodium intake for the week in 1 day, I would suggest that they move away from the salt. + +They are similar to Five Guys in that they have no combos but they have more options. I can see what the appeal is and maybe the cook was having a bad day but between the grease and the salt I will not be going back unless I have a death wish.",review,K5oJ9aQth_Ltg3Awgjy-wA,0,2,0 +lVkDZZ8sTafPlq7f1i5row,2010-07-02,GrF1BYTZl2mYjT0SjQNCyw,5,"Okay, if you actually like the taste of good whole foods and fresh ingredients this place is an Oasis of goodness. If your looking for a place that says they make natural foods but uses 2nd rate ingredients and comes up with recipes to hide the fact by using spices to cover it up your better off going somewhere else. +My family took me here when we were visiting, and it is wonderful. I had the Pesto Presto sandwich and it was divine! I also tried my family's strawberry fields salad and Arizona rolls. They were all really good. The vegetables were fresh and high quality and the price for the portion and quality was a good price. +I was amazed that they had a couple of options for people on the raw foods diet. The juices are different, but surprisingly refreshing. +This place is a great example that eating well and health can be tasty and satisfying.",review,2-GIaS8Bc4MHqzXHLQY9Ew,1,1,0 +L9UYbtAUOcfTgZFimehlXw,2011-07-27,J5kIrC9Sx8il8DZkOhVOgQ,5,Just perfect !!! For what it is!!! Down to the Edison light bulbs from rejuvanation!!,review,l2srZt-GNvF7tMotR_VyAw,0,0,0 +niPFXq4r2mc0zFlOpWV3Eg,2011-08-15,eRm_2IWGdWO8BgkAF1N78w,2,"Years ago, and I do mean years ago, their Mill Avenue location in Tempe, was outstanding. + +As they expanded, the food along with the total expierence has gone DOWNHILL, big time. +Why has this happened ... they're doing franchising. + +I'm suggesting a name change: +""My Big Fat Greek Disappoinment""",review,3nUQ4xbLlySDbkE03nyp-Q,0,2,1 +q-qjZDKcBdDRuIUxj7b97g,2012-03-18,ghR3ui-7gHOk-Cq1BKNVWw,3,"The experience we had was just fine. Food, service and wine list were all good - salad bar was good too. I am not sure if I'd go out of my way to go back though. There are a lot of trendy and fun places to dine in the Scottsdale area and this one seems to be like the ""Grandfather of Scottsdale Dining"" - older and almost antiquated.",review,W9ZG5q-QIblXYeHgaPS5Uw,0,0,0 +ZCE_ZHlZGpWPGICWpGNrdQ,2011-03-30,3QWrztGoYGxma0yPV5wdXQ,5,"It's a beautiful day. Clear sky and around 65 degrees in the late morning! What to do? My little guy had been riding his bike without training wheels. Woo-hoo! Is he ready to go on a dirt trail? We're gearing him up to go mountain biking up North. Hubby suggested Riparian Preserve. It was an excellent choice. + +""This is awesome!"" my little one exclaimed, as he bounced up and down on the trail. Then, he'll just stop right in front of me without warning. Five year olds get distracted so easily. ""Is that a wasp? Look at that hover fly! What kind of ant is that? What kind of beetles live here!"" asks my little future entomologist. We'll be taking some tours and classes the Riparian offers soon! + +My little one did bite the dust several times due to some excessively gravelly paths. He learned to either walk his bike over or slow down a bit. Such a sport! ""Let's come back here again., That was fun!"" It was fun for us too! + +We're so lucky we live not far from here. It is a very well maintained park. As it gets hotter, we would walk and feed the ducks in the morning and spend the rest of the time in the Regional Library. I highly recommend you check this place out.",review,c3yJNjz_K--z4CIpR7yhvQ,3,4,3 +ASfFd5hKoG6QF6H3id2l0A,2012-07-07,YpGfn3_39otBIklxjp1U2w,2,"Not impressed. The young lady behind the counter aked like she could care less about my 15 shirts I had to drop off. I had used them before and nobody ever smiles at you. When I asked about pricing and how they protect shrinkage she said "" we can't guarantee anything"". Well, I can guarantee I will be goping elsewhere. You would think based on how expensive they are that they would care more.",review,yUrJNGlx8V10dRAvdh3ZFw,0,0,0 +qSLdUiI2edATC3KBT2zf4Q,2011-06-15,rjL18zsmqUU00_cgQwcv-Q,5,"The Thai menu is totally amazing! I had the Panang; and the coconut curry was to die for. I have been mistakenly driving past this wonderful place for a year. Do yourself a favor, try Na Rai, you will be so pleased you did. +They have a lunch menu as well.",review,eqpoFHtDafP6XBv5ClufLg,0,0,0 +1O4M8H5g3vdrzg9WcLeGsg,2012-07-25,3qfRlR1G3tea0oy-1BZUQw,4,"First, and most importantly, every person I've met at QC Vet Clinic has been super! They are caring and wonderful with my dogs. They are never too busy to smile and give great service when I come through the door. They have even taken time to share stories and pictures of their own pets. + +Second, they understand that some people must take a fiscally conservative approach with the care of their pets. They discussed all options thoroughly with me and I performed the care that was needed a little at a time -- as it was needed. This was important to me since many vets that we've visited in the past have handed us an estimate for hundreds or thousands of dollars and wouldn't budge -- insisting that we HAD to do ALL the work listed. At QC Vet Clinic, I didn't feel like I was judged for that decision. + +Unfortunately, we had a small mistake that I discussed with the vet. She listened and gave appropriate feedback to my concerns. This is really the only thing that is preventing a 5 star rating. Overall they are still the best vet I've visited and I will continue to put my pets lives in their very capable hands. + +BTW, we had to have a pet put down because he was ill. The team at QC Vet Clinic was absolutely the best! They were so empathetic and even sent us a sympathy card with a little surprise inside... I won't give it away, but it was so very special to my family. It's the little things in life that fill our hearts...thanks QC Vet Clinic!",review,SZN_eQkeLii4VUkjupS9UQ,0,0,0 +QxEUzbLfCTXF6gHWJegWgw,2012-08-23,QNX3-6wuBmVEggl7w084dg,1,I (like others) am at a loss as to why this place has such a good overall review. tasteless and awful,review,d1vSOBq_RauHGpCh7VN7KA,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2007-11-13,gjWVccNw6kB2UycZAEzyQg,4,"I hate to find out that there was another location closer to where I was. It doesn't matter because it was worth the trip. I ordered pick up because I was by myself and wanted to a bit of exploring. The place has a nice casual ambiance. They also have an outdoor seating area. I ordered the pad thai that comes with chicken and shrimp as a standard. Since it was lunch time, it was part of the lunch menu that came with a choice of soup or salad. I chose the soup, but was too stuffed to have it because I jumped right into the pad thai. I ordered it medium spicy, and it was pretty spicy. I can't imagine what hot would have tasted like. Actually, I'm more curious of what it would have tasted like in a mild flavor. The noodles were slightly overcooked, but still flavorful. I also had the Thai Iced Tea here, and it was perfect for the weather and a great combination with the tangy pad thai flavor. The prices are expensive compared to Chicago, but I hear it's typical for Phoenix/Scottsdale area. My lunch speciai and drink costed me a little over $15. I guess if you are craving it that bad like I was, you'll pay the price...",review,jfXT_8J_EQnJVa4sJ3z6hg,2,1,0 +5weJ3DRKwvQ9claomkYq9w,2011-07-21,rqfTcaa2IvVUfeXituCqoA,4,"I am a little finicky with pizza. I don't think Venezia's can be beat (for Arizona pizza).. Since bitches are crazy, and make you move out of the house you practically built for them... I no longer have a Venezia's near me. I moved to Chandler with eyes scouting for what could be my new pizza joint. Fox's Den caught them quickly. I ordered a large 2 topping pizza with 10 hot wings for pick up on a Wednesday. My order was 10 bucks! Now.. this is not the best pizza ever, but it kills your major pizza chain any day. I highly recommend trying these guys.",review,GMkF0yJWwFRVO9kiGOcojQ,0,1,1 +DnA5Ec7DOvaaCxmnLx2iYw,2012-12-08,mJHnR7SYE54ObVjBoNdcEA,4,"I went back tonite for more LFC. + +This time, the chicken pieces seems to be a little bit bigger than last time. The menu now has a disclaimer saying that some sides may incur an additional charge. That was two of my gripes on my first visit, so check and check.. + +This time, I ordered an 8pc with 2 large sides...As stated above, chicken was bigger, and it was hot and moist..perfectly seasoned. For sides, I ordered the sweet corn nuggets and mac and cheese. They had run out of mac and cheese and had to make more. It took about 10 minutes to make. Was it worth the wait? It was fresh, REAL macaroni and cheese, baked in the oven, not some ""out of the box"" variety. It was made with real cheese, as witnessed by the stringy cheese when eaten. My comment here is that I prefer a more creamy variety than what it was. But it definitely was better than Kraft mac & cheese in a box. + +The sweet corn nuggets were incredible. Not sure if they are something they make fresh or if it comes out of a freezer bag, but they were delicious little morsels. Nuggets of corn kernals, surrounded by a light crunchy coating and deep fried. + +I wanted to try out their fried shrimp, so I got an ""add on"" of 4 fried shrimp ($1.99). At first view, I was disappointed. What I got were 4 very small (think MAYBE 45-50 sized shrimp). They were not even butterflied, which would have made them appear bigger). But upon tasting them, I really enjoyed the flavor. They appeared to be freshly breaded (is it the same seasoned flour used for the chicken?) and were very tasty. My suggestion here would be to 1) butterfly the shrimp and 2) get a slightly larger shrimp (even if it means a price increase). + +With my second trip to LFC, I am becoming an even bigger fan..Tasty chicken, good sides, a clean restaurant, and nice employees.",review,cFoiVWF42HSXQEtqxDvdWQ,1,1,1 +duHUQFn7K-Ybs1rPI4AOEQ,2011-02-18,oaZpNjMgTYOaiAJ1I17zyQ,4,"Attention margarita lovers- you MUST order the Chambord Margarita. Delicious (and dangerous) and oh so tasty! + +The restaurant is always busy because it is at Fashion Square but the service is always prompt. The patio/bar area upstairs is open seating so you can usually snag a table up there even during busy times. + +The cornbread they bring to your table is really yummy but sometimes you have to ask for it to make sure that they bring you some. + +I have had a large variety of of things on the menu and never been disappointed. The seasonal menus they offer are great as well and i definitely recommend branching out and ordering off of that menu every once in a while. + +Definitely our ""go to"" place for drinks and dinner.",review,rXrJkICbrO7SEvKNZlrPkA,0,2,0 +c7VgGP8xT25OSReok6fwcQ,2011-09-12,fYob74usntFSxqgp8ycPjw,5,"Tiffany @ the chanel counter. +Tana in the lingerie department. + +these are my go-to girls for everything. i bring all of my purchases to them bc they are THAT much better than everyone else. except shoes because the shoe people know how to work that confusing back shoe room. + +but everything else: make up, accessories, clothes....all to one of these girls. i recommend you only work with them as well :)",review,hFtlFksrcLaWHGPNa6SmeA,4,5,3 +5UH0FGpE2Ge3FkUlS8MUMg,2009-02-05,p4T4ZN97CdkJ0KLAfq-uYA,3,"I tried the shrimp and chips and they were tasty. The shrimp was a little salty, but with the dipping sauce they tasted fine. I liked the ""chips"" a lot. After reading the other review I'm nervous to try the fish and chips.",review,nGuemQk8wCFyohPz3Z-big,0,0,0 +uS2T2BMt7_EE7mhM3m3I7w,2009-09-01,zy43GWc0gjbsUsGRwsPZzA,4,"One of the best sports bars in the valley. Ton's of screens (although some of the big screen projectors could be updated). Nice big drafts and the food is always tasty. Try the teriyaki chicken sandwich with fries it's awesome. Upstairs they have shuffleboard and pool tables. Golden tee 2009 downstairs with another pool table. If you like loud sports bars where the patrons get into the game this is the spot to go. Plenty of fun to be had. People say too many kids but I guess I go later on at night and never have seen a problem with little kids.?. The service is on and off here, sometimes it's been great sometimes it's been useless.",review,nN3Ym_sgqI5EQuC4AIJprA,0,0,0 +JhupPnWfNlMJivnWB5druA,2011-04-25,I2KXAFlusCKgfuWEU9OZUQ,5,"Yeah it was good. My wife & I went with 2 other foodie couples, who are good friends, for our monthly ""side dish"" function. The food was all fantastic. All 5 of the other people in our group were drinking martinis, which they all said were very tasty as well, but at $12-$16 per, I'm a little put off. I'm more of a beer guy anyway, so I had a couple of craft-brews that are not available everywhere, and then settled on a Firestone DBA -- a very very tasty beer -- and had several of those. Great food, great booze, club music atmosphere is pretty cool. Outdoor area is excellent. Felt like an idiot when I had to ask where the mens room was only to turn around and find that the huge wall of a door was right behind me and said ""he"" in huge letters on the bottom of the door. Oh and then (6 or 7 strong beers into the evening) I found that the mirror next to the (only) urinal in the mens room misled me into believing there was a second urinal, which I tried unsuccessfully to walk to. Why is that guy walking directly toward me? Oh, it's me. In the mirror. Dumbass. So then (after relieving myself in the actual urinal) I go back out to the table to tell the story about trying to use the urinal in the mens room that doens't exist, and somebody else says ""yeah the same fucking thing happened to me too!"" so I don't feel like such a dumbass anymore. Fun night.",review,azj8vFl7JuSyHqamSVhd4A,0,0,0 +1QxI2IP3XfndDAY8nyZVPg,2011-03-06,h0HT8EswtP2ROQf-nTODWQ,4,"It is ALWAYS fun & enlightening to visit an Apple Store as their employees are ALWAYS so helpful!.....now this store is somewhat small and has ""sleepy Scottsdale"" hours of opporation.....opening at noon on Sunday???!!!!.... How 1965 of them.....used to the exceptional hours at the store on 767 5th Avenue in NYC and their 24/7.....but you CAN schedule genius classes as early as 9:00......so all in all another great Apple Store experience and Will be back for iPad 2 next week!",review,u1IC7xORIeAkJEt6n4p3_A,0,1,0 +KVq-1WEJNKK2NqFC7nUoRg,2009-06-06,DBsqh6uvt5VvWSCGlWZpsw,3,"If you happen to get lost and wander by the gun show at the Coliseum, be sure to stop here. A little whole in the wall of a former Wendy's, this place rocks the steak taco world. + +My favorite is the ""jaz"". Carne asada + cheese + peppers/onions = yum!!! + +The barbacoa and chicken tacos are tasty, but I wouldn't say they'd knock you off your feet. Definitely go carne asada and defintely try this place.",review,188v8fiXebMrsPAB4PJ_PQ,2,2,2 +-AAig9FG0s8gYE4f8GfowQ,2009-03-31,PXDF0BsdQ3L_v0hMqXNLQA,5,"I love this place! I love that it's to-go only (no 3 hour waits, like Pizzaria Bianco), and the mozzarella is mouth watering. +Please try the mozzarella, tomato, basil sandwich. You won't regret it!",review,tZL60BEoU-NVHK8OsBiN3Q,1,1,1 +6sELDdbWi_Cjwp5uZ8PmGw,2010-06-21,ZucxvCvKaw7ViaKU00HYGg,5,"Ice Ice Baby... +Ice Ice Baby... + +All right stop collaborate and listen; +Ice Now is here and it's got my attention +Make some drinks - not warm but frosty; +And believe me when I say they are not costly +Will it ever melt? yo I don't know. +Give them a call and they'll show +To the extreme I yelp like a sandal; +Ice your drinks and get lit like a candle +... Ice ice baby + +PS - not sure where the sandal line came in but writing a review in lyric form is a challenge! This is the best I can do for now... + +Need ice for an event? Call Ice Now! They offer free delivery and their pricing is surprisingly cheap. + +And good luck getting the Ice Ice Baby lyrics out of your head... (sorry)!",review,fczQCSmaWF78toLEmb0Zsw,8,7,10 +Sodko0hlMg7F5doNJGKcWQ,2012-05-09,2EVZlVaf6LxUKWgF6SNLGA,4,"I'm just glad that they brought back the Strawberry ""fields"" salad. Yummo! Fresh greens, goat cheese, fresh strawberries, bell peppers, onions, glazed pecans, chicken and this amazing viniagrette dressing! Wowwy Mowwy! Oh, and it comes with a crusty buttery cheesy bread. I have had a few run ins with bad waiter service, but the manager was always quick to come by our table to ask if anything else was needed. As long as I get what I ordered and I dont have to poke around their tables to make ""eye contact"" with my server I'm ok. They know they will get a mideocre tip if their service is so-so. It's on them. My mother got a red velvet cupcake on the house for her birthday! That was nice.",review,vcywddFwcXuE-cIlQfouiA,0,1,0 +LRuIY8JFqadCSYLo242MGg,2011-05-28,-ElU8lXSX9Yz001EK2lG_Q,3,"3/5 + +the sandwiches are huge. i'm not to bent on the whole freedom fries this and such on the menu, but it is AZ so i guess that is how it runs.",review,WPjR6viRLglxD_BMztch2g,0,1,0 +V5QdxePG-pGPXVPHSLLM9A,2010-08-21,tVxzP18vBkMn6tMaxwv7LA,2,"Good lord. I don't ask for much. I ordered a slice of quiche and an iced coffee. They didn't have to bake the quiche, just warm it up. I waited 15 minutes and then went to the counter to ask for it. The server looked confused and the Guy who took my order said he ""got lost."" I heard the server apologize to at least three tables (but not to me). She told one guy the toaster burned his cinnamon raisin bagel (the last one in the shop) and insisted repeatedly that SHE didn't burn it--it was the toaster's fault. Quiche was tasty, though. The server said it was mushroom and spinach, so I had to wonder for a minute what the bright red things in my quiche were...then, I figured out it was mushroom and chard. Coffee was ""eh."" The floor looked dirty. There was a paper towel in the toilet. Ok, I'm nit-picking now. The place was moderately busy; the small private parking lot was full. Fortunately, I was on my scooter, so I could squeeze into a non-parking space easily.",review,2LCrT_BOJvGV4xi_lmoRcA,0,0,0 +621ZMZH68DilrRgBRw1R6A,2011-12-08,M1LxHqmnzohCNyLamfbmow,5,I love Dr. Scott!! He is the funniest doctor I've ever met and he makes me feel good too! Dr. Scott is always willing to bend over backwards to make sure you are provided the best service and treatment possible. The massage therapists rock too! I will be a lifelong patient of Integrated Chiropractic.,review,PoLTut88ZmgFsnFvsTy5XQ,0,0,0 +kUvJiI7teJ--m5i1ReG58w,2012-03-07,tvp0cGaYy1n-u6OVnTJyLQ,5,"Total wine totally takes a crap on Bev Mo. This store has everything! The employees are also very knowledgeable. The other day we went in and my husband insisted I try red wine instead of sticking to my usual Riesling (I don't like change). So we asked one of the employees and he asked me a few questions then suggested a bottle of Malbec. The Malbec tasted amazing! I was so happy. For those of you who don't know, it's not only wine! You can find everything else. Total wine has helped us stock our bar and entertain our guests. Also, don't forget to chill your bottles before you leave!",review,XXVfsLunIiz3xDeK17aHFQ,0,0,1 +GjvIDOEhdQB1oPrFeSpxBw,2012-11-13,BBSQvT-lBFuiTBc80XummA,5,Try the Moroccan Chicken on the low calorie menu. I was really surprised at how great it is.,review,E5qFR0RBQBoXx8FbrOkdbw,1,0,0 +7_7fxuG9ESAFmx-AiMsJHg,2009-08-15,m6IduNPjU-3opMt-z9Zt4A,3,"This is a decent place to go see various types of electronic dance music. It's not an insane place that will make you want to vomit or gouge out your eyes (i.e., Myst, et al). The times I've been here, the people here seem pretty decent, though there is the share of ridiculous folks. + +The bar service generally isn't very good, and you can expect to wait a while to get a drink. The place is pretty small, so if you're seeing a big act, you will be tightly packed and wait a while to get upstairs (one up - one down when filled). And be wary, you're liable to get second-hand pepper sprayed from one of the neighboring bars/clubs. The bathrooms are small, and the Men's has no door on the stall (gee, I wonder why...). + +On the plus side, the music is usually good, and they stay open past 2AM (wtf is with you people and ""liquor laws""?).",review,rmUJGvphy7GXY9Y_kGutgA,1,2,1 +3l72FflaaeI0tWEAWN3-gQ,2008-11-11,Q37beQah9GJQNRXLfTecCQ,5,"Wow. + +Been there 2 times. I wanted to revisit to see if it was a fluke, and to my pleasant surprise - it wasn't. I'm from NW Indiana originally. I know corn. Indiana sweet corn cannot be beat - well - until I had the corn from America's Taco Shop. This corn has cotija cheese, hot sauce, mayo, and I swear crack. There has to be crack in there... I have viscous dreams about that corn and wake up in a cold sweat. I need that corn... it's just so good. + +I don't eat beef and that's the only meat they serve but that won't stop me. Their vampiro's minus the carne asada, bean and cheese burritos, chips and salsa, quesadilla are all awesome. They also have delicious horchata.... but that corn.... + +I know where I'm going tonight.",review,k1ACFw3wmqkNGoiGeNLc0w,2,2,2 +peA3F-PnIfijYr8HuG-A-Q,2009-07-13,MRnetROe0f_zjMvjlL-fQA,4,"Good things about the Merc Bar: + It's dark inside and the decor makes it feel kinda swanky. + The service is very friendly. + They have lots of comfy chairs and couches for anyone to sit down. + The location is good - in the Esplanade, right across from the Biltmore, where there's lots of restaurants you might be eating at (and includes free parking in the garage if you validate!) and it's kinda hidden, so you feel cool going there. + They have a great drink menu with a wide selection. + +Minus one star because the drinks are a little on the pricey side. + +I know there have been some negative reviews about the old age of the regular patrons, but honestly, when I've been there, it's been a good mix of 20-somethings to 40-somethings. If you're in the Biltmore area, Merc Bar is definitely a place worth checking out as a start to the night or for a date.",review,auVkTXPmA8o3oU8barlBSw,0,1,0 +W0eocyGliMbg8NScqERaiA,2012-01-22,1T2IYVRiG0yz8u_DJgWJsQ,4,"Going to keep this review short and to the point... + +Service: Most of the time horrible. Typical waiting forever at the bar for a drink, if I can even get thru to the bar... Bartenders seem to be oblivious to serving patrons in a fair first-come-first serve fashion...Major dislike + +Atmosphere: Trendy and hip. Except for the excessive desperate looking cougars trying to cash in on fake rich or really young ripped Jersey Shore looking guys. The cougars are just minor annoyances, they don't get in the way too much. The majority of the people seem to be pretty cool though. + +Pricing: A little steep, but it's Scottsdale. The place could offer a better happy hour. Sunday's bottomless bubbles (champagne) is a great value. + +Food: Portions are pretty small, but are decently priced. + +Decor: Outstanding! Job well-done in decorating and furnishing the place. It's really distinctive and luxurious. However, the rough plastic-feeling purple couches do not feel pleasant to the touch. They look like velvet, but are vinyl. Major fail on this! This requires immediate attention. + +Patio: Great views and plenty of seating. However, hated how many stupid old smelly cigar smokers were out there clogging up the air. I'm not sure what can be done about these disgusting people, but overall the patio set up is one of the best around...",review,Uf-jZhhEYRIFxzyT1d5R6Q,0,1,0 +zpKmFI47BWUT-dUlTDSVug,2012-07-21,bw3WAeRVXWnUbJvX5ibXcw,4,"Every time I drove by this store with my brother I mused upon the social issues faced in a FOOD CITY. + +Do you suppose they have problems with segregation/integration? You know, the tomatoes CLAIM that the bagels could have moved into the produce department if they had CHOSEN to; they just CHOSE to occupy shelf space in the bakery department because they LIKED being with their own kind? Doesn't a bathroom cleaning product have the same rights to locate itself in a freezer case as a gelato does if that's what its little heart desires? Do the canned yams believe that there is nothing wrong with the candy in the bulk food section, they just wouldn't want THEIR daughter to marry one? I almost wanted to stick a carrot in the dairy section just to make the point. NO MORE SEPARATE BUT EQUAL around here. Nope, we're a modern day non-bigotted ""everybody deserves a fair shot around here"" kind of grocery store. + +Well, I finally had the occasion to stop in here over the the weekend I was visiting Phoenix and was surprised to discover it catered to a mainly Hispanic customer base. Being from Bakersfield, California, this made me feel at home at once! There was mariachi music playing over the PA system, and there were spanish language entertainment magazines by the checkout. + +I stopped in because a friend texted me to pick up a bottle of Pinot Grigio for her. Now, I know that those of you who shop here regularly are probably still rolling on the floor laughing, but remember - I'm from out of state and didn't know any better. When I discovered their tiny wine section, and that it was mostly Carlo Rossi & Gallo wine, I was momentarily downcast. But there, on the very top shelf, were a few varietals by a decent Australian Wine Cellar and - Lo and behold - one lonely Pinot Grigio. Ta - da! Cue cherubs descending Earthward blowing trumpets in celebration. And to make it even more exciting IT WAS ON SALE! Yes, normally priced at $7.99 a bottle, they were on sale for $5.99 each. I decided to bring her two bottles just to celebrate. + +The checker was very friendly and spoke English with only a minimal accent so bonus there, too. The final kicker was when I gave my friend the receipt she discovered they'd only charged me $4.99 per bottle. Woohoo! + +The store was very clean and I did notice they had an excellent selection of Hispanic themed items so if you're looking for that sort of thing, this place might be for you!",review,377CDhtGrgoNNEnEhf6Ccw,0,2,1 +YUV08PQk7Vk96r9Q0b3XAw,2012-04-23,m2DZbEyRue24jfUrk1l6vw,3,"No way around it: this place is overpriced. From the menu prices to the plate-splitting charges to the extra ingredients to the sides. Food itself it good not great. + +Blue Burger confirmed to me that they use specials and happy hours when they first open to generate traffic, but take them away once they hit the critical mass they want. So don't get to hooked on anything you like about these places.",review,bX5MJIMxOnfKd_Ex6V9gXA,0,1,0 +tb24fvNJfHhyKEXkKn12Xw,2009-04-17,IMcD-Py6d6YlZVpiGo4vFA,4,"Okay...I have been going here for a while and I love the place and the food! I am surprise it hasn't had as many reviews as it should. The truth is I come back to support local businesses in my neighborhood...I would come here anyday than go to a Fast Food burger joint.. + +The trailor that the restaurant is in is the cutest thing you will ever see...straight out of a 50's picture! Its small but fitting... + +The food is very fresh..I love their cheeseburgers and hotdogs..I sometimes even get some of their mango salsa/chutney on the side..they get it from this lady that homemakes it.. +Not the cleanliness place but I guess thats what makes it tastes so great!!:) Its the extra grease...I know that just sounds horrible, but true! + +Anyways, support locals and their businesses...go go go!!!",review,xs_fnNe0hofd7ZOupCjesQ,4,4,2 +3H2ttTM2aSIaZ6FTjHwDQQ,2010-02-07,FUQ-lJndG7xgxLrEFX-u-g,5,"Expect no com TAM-foolery here....this joint is serious about their broken rice business! + +Endless options of different broken rice (aka com tam= deliciousness) dishes which typically include shredded pork and whatever type of meat flavors your fancy, all within your $6-10 wallet budget! Service is prompt and efficient, menu is ez to follow, focus your energy on the broken rice dishes; thats what theyre known for. + +I highly recommend the shredded pork + pork chop + steamed egg combo that comes with a light pork broth on the side. The portion is HUGE and each component of the dish is so flavorful and unique, bringing together a fantastic symphony for your palate. My personal favorite is the steamed egg; there's just something about the soft and moist texture that compliments the broken rice. Go easy on the fish sauce (ngoc mam) they give you on the side (try adding Sriracha to the sauce to add some spice in your life), the dish is by far no means lacking in flavor/sodium. All at a pansy $5.99, I could really eat this all day...everyday!",review,LcWp2WChE9HpqdMEM8D2VQ,1,0,0 +4t-W81Tpt1OER_p3mIgMDg,2011-07-07,Wlz_WpSO5aKXL8LIMYWHVA,4,"I must say that for awhile now I have stayed clear of Subways because of the smell inside the restaurants making you smell just like it when you leave but .... + +I am completely impressed at how clean and non smelly this store was compared to the ones I've visited at in Alaska. The employees are freindlier and they didn't pile my pickles in one spot or squirt a huge blob of mayo in a particular spot! + +I'm not quite sure the names of the 2 guys working tonight but THANKS! I am now a fan of Subway again :-D",review,5y0N0fTEg_ZGEGDGzzRTdg,0,1,0 +u-nMW__EKMYH_PVqacYc3Q,2012-02-21,-gldZntaKQdMeSIqQQJZBg,4,"I dabble in vegetarianism/veganism here and there, and this place is awesome. This is a great restaurant for people who are not vegans/vegetarians and want to try it, or think vegan food is ""weird"" (in the words of a friend). Everything here is flavored so well, and the dishes are delicious. I love all the apps, and have tried several of the entrees and thought they were all pretty good. They also have a fabulous selection of creative drinks. I hope this place sticks around for a long time, since it never seems to be busy when I go. The staff is very open and friendly and knowledgeable about the food, so never hesitate to ask if you're unsure about something!",review,nEL-_kLeN37CSR9fXFY4zw,0,0,0 +mQ6_slsCd8-c8WFNtESnqw,2010-02-16,-AIz2AvqHlnSNyD8O6cIVA,2,"Uhhh...These are supposed to be carne fries? + +ASU boys think that these are the best carne fries. Me thinks not. The carne fries consist of boiled meat AND the order is wrong. It's supposed to have the guacamole on top of the sour cream on top of the melted cheese over the meat, but they just dumped the boiled carne asada on top of the sour cream. I told some ASU boy about this, but he said that I probably had a different person making my carne fries the wrong way. What a disappointment, but I ate everything anyway because I'm fat like that. hahha",review,31tjiU793jocP_DKwn1V8A,1,2,1 +2E5iuTckRcbtJm2pC1tIlQ,2011-10-03,8MiqqY2vjEmcBgA3btVnUA,3,"After reading Lindsey's review, I had to think twice about my original review of this place. Yes, I had been back and gave it another shot. + +Yes, perhaps, I was a bit douchy in my prior review. + +This place is definitely a great spot if you need a quick lunch, and you are on the go. Its a fairly comfortable place to eat, and it's better for you than a Baconator (although, that does sound delicious right about now). + +They tend to water down their Sriracha, but it might be more of a heat thing rather than a cost cutting thing. Sriracha can be a bit spicy for some. + +The spicy chicken bowl is the way to go. Try it. Don't listen to my old review. I was probably having a bad day at work.",review,8JC-Yb3UDUv2FUl5ym1nVg,2,2,2 +_1QQZuf4zZOyFCvXc0o6Vg,2010-02-11,nXZtrJbq5QbSryV8KvE_jg,4,"Ringo is a tri color beagle. Ringo loves the dog park. There are so many dogs at chaparral he can run around with. The park is really nice, a big wide open space and is kept pretty clean. They have an active dog area and a passive dog area. We start in the active dog area and Ringo can run and get all his goons out, then we opt for a nice cool down in the passive area. Ringo likes to sniff small dogs. During really busy times when there are a lot of dogs Ringo can get intimidated and has trouble finding a crew to fit in with.",review,kkUvJK-Y-Jb7nWjnTRZFVA,1,2,0 +yOYFhiTjT-SM4spKtDk92w,2010-06-26,yHwQM9UtZ4lkMMEeS6ak8Q,4,"Had a very delightful meal here the other day. + +I benchmark all Chinese restaurants by their potstickers. These were delicious and not deep fried. They were more toasted than anything. + +The mongolian beef was delicious. Good quality, nice spicy flavor.",review,MBLcbQ_miC1c11cfXQRKoQ,0,1,0 +AqbgC7Gul5Es1rRzGNLDFA,2010-08-23,J1q-zeAespG5YRRSxalSfQ,3,"Somehow while attempting to write an update to my original incredibly witty Sprinkles review, I edited the original review in error, resulting in the loss of my original incredibly witty review, worthy of many UFC's. Now my 18 fans are stuck with my incredibly less witty new review. + +Believe it or not, I actually had not been to Sprinkles in well over a year. Unbelievable, I know, considering I live close by. Maybe that says something. Something along the lines of I'm not really anxious to pay more for a single cupcake than it costs me to make a dozen or two at home. But what do you do when it's August and the thought of adding any more heat to the kitchen just won't do, and yet you really need a cupcake? Well, you go stand in a line 12 deep to pay $14 for 4 cupcakes. + +I've been to Sprinkles maybe 4 times now, and they've been pretty consistent. I do like their frosting, but I find the cake to be somewhat dry and flavorless IMO. And I'm always surprised by the line here. Are people that much in love with Sprinkles, or is it that most of the population is not able to read the directions on a Betty Crocker box? I'm not saying Sprinkles is bad. It certainly has its place in my life for a cupcake fix, particularly when I know if I make 12, I'll eat 12. But I wouldn't go so far as to say I'm a fan. Unless they lower their price to $1, then I'll be their biggest fan.",review,wHg1YkCzdZq9WBJOTRgxHQ,7,8,9 +Bc5bgPG1MlTc75G0A-_7fg,2006-02-09,-EddE6xa2YBdiBllClqZ7w,4,"A perfect way to top of an exotic shopping experience at 99 Ranch. The Taiwan Express has photos of many (not all) of their dishes. Very authentic. + +Also try some shaved ice for desert (brought me back to Singapore!). My kids love the shaved ice, though they are more used to Asian foods than most kids. + +Note that the Buffet section (to the left) is better than any mall food courts, and may be more tame for some taste buds. + +AND - in between the buffet and Taiwan Express you can buy a whole roast duck for about $12.50, which they will cut up for you. Be sure to buy some Plum Sauce (elsewhere in the store) for a sweet dipping sauce for the duck (yummy!).",review,cFC35FulkCpmFlVrhK8iHw,0,0,0 +YjURbuHKIAQrwQKE8jxszQ,2011-02-28,FpH5-puFe_Bacmfua5oQZQ,5,Woo Hoo! Little Caesars opens in Fountain Hills! Yummy pizza.,review,_GVAV2LjUWEs9fGjslex_A,1,1,1 +XqrgB_gIXDQQ2NLukgqD3w,2008-07-09,8OarB7g8DhPLtdG9qrgXFQ,5,"Covet is an excellent clothing store. +In Arizona, there is almost nowhere decent to shop. +unless of course you loooooove Juicy Couture, in the event of which, you should probably not even bother reading this review, because this kind of fashion forward clothing won't appeal to you. + +Acne Jeans? check. +Endovenera? check. +Ksubi? check. +Nike? check. + +Covet starts off with an excellent men's shoe section, +continues with an excellent men's clothing selection, +and finishes off with excellent women's wear. + +It really is a shame if you haven't been to Covet yet. Do yourself a serious favor and support a small business at the same time.",review,qm5xGd3d47RfLWib0ryMAg,1,6,1 +Rx9WPIaYCBquFBC563RjYg,2009-04-19,ukSAApxk4-vjK1Jt6NXRgg,1,"Boy is the name a temptation.Seriously :) I'll try to be fair though but I'm writing at a time were this restaurant was truly life changing. So much so that I'm buying a dining room table, additional gear for the kitchen and not frequenting any chain while I'm in my hometown based on the strength of this experience. Even in a good mood this place wouldn't be breaking a 2.5 . I'm not in a good mood. + +Texas cheese fries. Pretty tasteless,mess of uncrisp steak fries that are meant to be Monterrey jack , cheddar and bacon. Either the cheese mixed itself together really well or that's not what I had. Bacon , mm that is a very generous term for the toe nail clippings of meat that ended up atop it. Saving grace was only ordering 1/2 an order. + +Kid's meal. Holy crap dried and scraggly carrots accompanied the most basic hot dog imaginable on the most generic bun. No refill offered this time on drink, no straw either. By far the most cynical kid's meal I've met. Sure make a profit but don't take the piss! Fresh carrots are not hard to do , with white film on them.. sorry you've just earned a 1 star. Should have walked out, didn't. :( + +Entrees. + +Cajun steak . Claims to be marinated in spices that I couldn't find. They may indeed have shown them a picture of the process in the recipe but I couldn't find it. Meant to be medium rare but was medium on one side , rare on the other, close though:) + +Sirloin steak. Cooked as requested , a bit over seasoned. + +Sides: Twice baked potato. If you ever want to open up a salt mine these guy will do it for you. You want an idea of what it's texture was? Twice chewed would be a better name. Warm vomit with bacon bits would be a slightly more colorful, and chunky, term. + +Fried onions: came with whatever was stuck to the grill they came from.The mushrooms were the only thing that were as tasteful as expected. They looked very consistent though, canned? Never mind they were edible: + +Steak soup,really more a stew,but tasted pretty good. Overall service was ok'ish but walking the kid to the toilet twice the staff just seemed to want to get to where they wanted to go and not care for the toddler walking up the aisle to the restroom in front of me. ( that's for this occasion only , past two times it's been great fun for the kid,) + +1.5 rounded to 1 for the carrots.",review,N3L6SDymSRkYQtTiSDmXSg,1,3,4 +AqbgC7Gul5Es1rRzGNLDFA,2010-04-03,COXIY5Om_HoDABhaZ-30UA,3,"I'm not a woman and I don't read People magazines at the gym so I'm not sure I'm really the qualified demo for this place. Nonetheless, in spite of all the hype and hyperbole, it's a good cupcake. When the Olive Oil Vanilla Cupcakes from the Olive Oil mill are too far away, this becomes the cupcake backup. Especially the vanilla. + +I'd give this place a better review but I don't because I consider the cupcake to be the ""Rodney Dangerfield"" of desserts. Too many far better post meal options come to mind before I'd waste my valuable calorie allotment on a cupcake.",review,GrSixRnGIxNUJ1Cn5DNX9A,0,5,7 +vaqmESluryt5i4Wbkb6KRA,2009-04-14,JiWZ9SA-Z67pgWOs3P4mpg,1,"When I was in highschool various clubs used to sell Karsh's bagels around campus to raise money. I would buy a bagel and cream cheese and hide it in my backpack to munch on during class. Soooo good! + I was feeling nostalgic one day and decided to pop in for a bagel and cream cheese. +The guy behind the counter was nice enough, I told him my order which came to $2.95 or something just barely under $3. I had failed to notice the sign which said they do not accept credit cards for purchases under $3. I apologized and said I didn't have any cash and offered to run the the ATM. The guy behind the counter very nicely asked other lady behind the counter (the owner? manager on duty maybe?) if she would let me use my card. She looked right at me all stink-eyed and said ""No"" and returned to what she was doing. No apology, no ""I'm sorry but there is an ATM at so and so...."" Very curt. +Thanks a lot personality plus! I will not be returning and I hope you choke on a matzo ball. +Shame too, I loved those bagels.",review,_LEQt7oTVjiaXyVHK_MM7g,1,1,2 +zw2iJahOnSxlzmRlF4al6g,2010-06-04,vuC4L-2V3uxoto--Dz3XOQ,4,"Nice spot, with a friendly staff. The sandwiches were very good, and the ingredients all tasted very fresh. The lady at the counter convinced me to try the cookies, and I was not disappointed. Oh, and of course, try the cider, it's no joke. Mmmm.",review,N37cYLoF_BQf15fcid35lQ,0,0,0 +mjoxSQR7bFQtlIIjfNfaSQ,2010-01-29,kw2u9SdTElQXJBNHKJde2A,3,As good as it gets for Chinese food in Surprise right now.,review,z-JC1S58qaW8WNiOzUh_TA,0,0,0 +CSoURupWEyuyzkjMOExKPg,2012-04-09,fWZirQBj1A_30Y2Jp9fJVw,3,"This would actually be another 2.5 Star experience but I went ahead and rounded it up to 3 stars since I am in a good mood. We came here after going to Chelsea's Kitchen down the street which was super packed for the night. I easily get annoyed with complementary valet parking because I hardly ever carry cash and feel weird if I do not tip the valet boys and girls but I digress.... + +The concept and look of this place is really fun and different. I felt like I was in a modern barn. We walked in and put our name on the list and was surprised that it is all done by an i-Pad and you receive a text message when your table is ready. Good thing the bf and I remembered our phones or else we would have been out of luck. The wait wasn't horrible. We went to the bar and got a couple of glasses of wine, the bartenders didn't seem really in a hurry to help us which got me a little annoyed. + +We were seated in a cozy, and I mean cozy 2 top table right in a main traffic way. My bf and I are not big people and felt uncomfortable in the size of the table. I know you want to pack a lot of tables in a small space but at the expense of the customer? Our waiter was friendly enough but not as friendly as he was to the group of women that was seated next to us.... nothing like treating all your tables equal huh? + +We ordered an appetizer, the zucca chips, which had a decent flavor but were a little burnt. We ordered out main dishes which were a chicken dish and their version of spaghetti and meatballs. The wait for the food wasn't bad either but I hate when you as the customer have to ask for a wine list because your wine was empty for 10 minutes but the waiter didn't ask if you wanted anything else because he was focused on the table of 5 women next to us sharing an appetizer. + +I had the pasta and meatballs, which was me'h. The pasta was a little mushy and the meatballs really didnt have much flavor. My bf had the chicken dish with spinach which he loved! All in all the experience wasn't bad but wasn't good. Maybe they are still working out their kinks but this place probably won't be high on my list to return any time soon!",review,100Df1wcVrl9rJgB7EG6xw,1,2,1 +IuAPYzf3NSyfyXYgT46YVA,2011-12-07,f1nRsYO1mmqg4NgB1unshg,5,"Love, love, love! Service is always fabulous and every dish has been perfect. The local cheese plate and AZ wine selections are amazing. I think between the 5 of us we have had everything on the menu, and it was all delicious. This is my fave place in the country right now. Can't wait to go back over the holidays!",review,YsTdL5RgU0qHHlsyFwDAaA,0,0,0 +I20sRbcEK8Ib1YFQFMoERg,2012-01-25,GG4crhXGZFSwSzpA52rt9w,5,"This place pushes out some delicious food, Red chile burro with rice and beans is better than any I've had, and their Nachos are soooo freaking cheesey and good you'll want to order both for one sitting. Unfortunately only outside seating but cool art work on the building to enjoy while eating and don't be discouraged by there greedy practice of charging for extra hot sauce. But of all things to remember make sure you bring cash the place can't afford a card processing machine which is a good thing other wise I'd be there too often and a fat face looks weird on me",review,hSGAiCRmKSuNIuSsRq0nAQ,0,0,2 +qyqOfpsAC5ooVROm7fB0jQ,2012-03-18,CYXxynHL7F7kIdcQzWSxkQ,4,"If you love pickles you'll love Old Town whiskey. We've been here twice so far, and both times, we've been very pleased. So far, I've only tried their pickled beets and pickled cherry tomatoes, but both were absolutely fantastic. The Cherry Tomatoes were so sweet and sour, they paired perfectly with the ricotta, olive tapenade and Crustini they were served with. This place is a gold mine if you're a whiskey drinker, my hottie loves some good whiskey and was really impressed with their selection... not to mention he said the burger was probably the best he'd had. I can't wait to get a taste of their Veggie burger, but I haven't gone hungry enough yet... Next time for sure! We went for Happy Hour this past Friday, and they had a lovely Agave Fizz cocktail on special, very refreshing. Their Happy hour is progressive, meaning that everything is $5 from 5-6, $6 from 6-7, and it runs every day.",review,Zwtx7FLZcK5F2P0-Tz8mHg,2,3,1 +ESjWCcBpMeiRsvMYXWgdgw,2011-10-16,5L2eDzr_eXI15l79i_3FnQ,1,"First off, the restaurant is dim and dark.. I thought the decor was a little off because they were going for a tropical Vietnam theme with banana trees in there and a waterfall fountain. The waiter there did not have a smile and didn't seem freindly, it looked like this was the last place he wanted to be at. The service sucked ass. I mean come on, there was only two tables including mines and 3.9/4 of the time, he didn't check up on us or refilled our water and we had to walk up to ask for our bill.. like seriously...? Are you that lazy. Bun Bo Hue was skimpy on the meat and had little veggies on the side. Pho had a rancid smell. Noodles in my sister's bun thit nuong were hard and watery (seemed like they were super old) Overall, I wouldn't recommend to ANYBODY.",review,mc5mitfrreuuf7eMe404Kg,0,1,0 +RUZvUPOn90ScX60eETwcCw,2008-04-28,OjUCE0pCYjxgm8MkuLASjQ,4,"It's brand new so it doesn't smell fishy yet. It will soon just like all other Asian markets. + +Looks like they will have another place to eat inside but it's still under construction from what I can tell. + +They have Durian, I really want to try one because they are supposed to be so gross and stink to high heaven. + +Banana blossoms? How would I cook those things. + +Food is divided into ""Regions"" so if you want Japanese noodles you go to one isle, Korean noodles in another isle etc. It's a bit confusing but fun to look at all the different stuff.",review,sEWeeq41k4ohBz4jS_iGRw,3,5,4 +nFo_63pTr-4ZhakuaRFOCA,2012-07-12,oYwffOl6EfzAqzCf6d_B2A,4,"This restaurant = a great experience. Everything about this place is fabulous. The server was extremely attentive, the food was fresh and delicious, and the intimate yet casual ambiance is to die for. + +ENTREE + +For starters, they do put a rather unique spin on the typical 'chips and salsa' that's brought out to you in the beginning of most Spanish restaurants. They bake corn tortillas until their crisp and serve that with an interesting array of dips: black bean, salsa, and a tray of salt, limes, and hot sauce to stir in. + +I ordered a simple entree of carne asada tacos and black beans; my meal was yummy and filling, and I even had leftovers. Beware of spicy when choosing your dish, however. My coworker kept complaining about how hot her meal was (beer battered fish burrito). I don't know if she has sensitive taste buds, or if it was really spicy.. so proceed with caution. + +DESSERT + +They have a wide variety of entrees, but unfortunately only have 3 sweet options. I'm a BIG dessert person, so it was a little disappointing but what the heck. I ordered the flan and it was scrumptious, incredible, delectable, etc.. all that good stuff. My coworker who complained about the spiciness called our dessert 'sexy'. So I guess sexy is the best way to describe it's caramel drizzle and chocolate bark yumminess. + +AMBIANCE/SERVICE + +The waiter was incredibly attentive and friendly. He answered all questions we had, and gave speedy and praiseworthy service. The manager even came up to our table and made conversation; that, to me, is always a plus. The background music helped add to the overall appeal to the restaurant. + +I would definitely go back to SOL. Maybe tomorrow..",review,GYUM5OpAH_7pJsvN5lw7wA,0,1,0 +6oRAC4uyJCsJl1X0WZpVSA,2011-07-08,qdmWiBaolhOnibLQh5W_Gg,5,"My husband and I have been going here for a few years now. It is one of our favorite places. Really low key, affordable, amazing food! Between the 2 of us our bill is never more than $10 and we are always stuffed! I love how casual it is and the humus cannot be beat!",review,sbNbxmGNodDJukgSXBFD4Q,0,0,0 +E2F25cRcYf_bWtvbCht0EQ,2011-03-29,9XXSiKeqHm_Ey2owLZD-fw,2,"The caramel ones were heaven on earth, but I agree with the other Yelpers that the standard brownie is on the dry side. + +I still have quite a few flavors to sample, but from what I have seen so far, they are not worth the price point.",review,tQ5wiJ9TGUbmIqnO4-njWg,0,2,1 +Pg8OPh1D2ws0xO-I-8ppoA,2012-05-28,v6IC6e8S8R8-y_VpMTBG5w,5,"I came here after receiving a free pizza at a Yelp event. Upper Crust had some of the best food at the event so I couldn't wait to have dinner at the restaurant. + +My friend and I came here on a Wednesday and were pleasantly surprised it was 1/2 off a bottle of wine day. I can't remember exactly which wine we ordered, but it was a Shiraz and it was good. We shared a happy hour appetizer of mild wings and a large pepperoni pizza with basil. It was all so delicious! + +I also came here a different day with my boyfriend and we shared the meatballs with cheese on top and a large pizza with pepperoni, sausage, and basil. Again, it was very tasty! + + Everyone was very friendly and prompt. I will be back to Upper Crust!",review,Ti86eeLrIhpNHDpjbla_fA,5,7,3 +XJc9Ueb3avGpYaj5Ll92hg,2012-04-17,ruts-VngHxeB83K_t-_TdQ,5,"Yes it is bad for you. Yes it is delicious. Great customer service. Clean, fast and predictable.",review,kk05snSafuIFK0lsxoMNzA,0,0,0 +eGevCRobYnA_HSj60sEWvQ,2011-07-05,forp4jF8zgMhcR9Zd6X1TQ,5,"I love pita Jungle! Everytime I am in town, I make it a point to get here. The food is fresh and healthy(ish). There ice tea comes in a variety of wonderful flavors and is so delicious. I would recommend you eat here, especially if you like yummy food with a medditeranean flare.",review,viMBWEgaZ0gSUpre0W8rhA,0,0,0 +oXKPSI-RUqOvmuSCh_DEQQ,2012-07-08,y9adq0MRVQmSxP7eiRWBYg,4,"This place is busy, had live music in the bar, and the servers were trying to squeeze by. The seafood is flown in DAILY and I think our bill helped fund a grouper or two's first class seat. I ordered the grouper with crab on top (as an extra- you can ask for it this way). Ordered the lobster mashed again, and green beans (if it ain't broke- don't order something else.). Had a great night!",review,n6LeAoIuDR3NfIBEsmL_zg,0,0,0 +XD7hxupuU3kkid0tqsD1nw,2012-08-10,xis6VjTNGFiEYbZkrehz1g,5,"I love the girls there. I get my eyebrows done every two weeks and I get my nails done there as often as I can. Recently, I just did the gel nails (just the gel polish not like the fake nail stuff) and I LOVE it. I can't tell you how happy I am that I did it. I always just did my toes because I'd always manage to goof up my fingernails in the first hour after I get them done- but with gels, you can't do that because after they're put under the UV Light, they dry immediately. No goof ups! Plus, they don't chip. The lady said they'd last around two weeks. I'm so happy with them. It's been a week and they still look pretty good. :)",review,_k1lZP9bVrmIYpfwLLtZZA,0,0,0 +gZ3GVh4aER2q6_UdA6fTKw,2012-06-22,Lp9eZPwIOq5SJw--9Ee0Hw,4,I've been hearing good things about this coffee house in Cave Creek so when a friend suggested we meet there I was all for it. Easy to see furniture store Big Bronco and Janey's is behind it. Very good coffee and I'll come back to try the food. Comfortable place to just hang out.,review,MZ2xyaW-hMOUzpUcHAUatA,0,1,0 +8frfhwRITfgjLaDBueU8iA,2012-02-14,Sc6Y_tCh0nBfuTkrCY7w3g,5,"An oasis of little kid fun in Phoenix, we hadn't been in over a year and came for a birthday party. They're always running a deal, so look for one before departing. One year we did an annual pass. It was a good deal. There are also lots of special events that include deals. One time we met spiderman. + +There are lots of rides, mostly for shorter kids. Some have modest height requirement that exclude the very young and some that exclude the tall. There's a train, carousel, mini-coaster, tea cup ride, an up and down parachute ride, several rides that go in circles in different vehicles (e.g., planes, cars, and helicopters and futuristic flying machines), and a bumper boats ride that turns into a splash pad in the summer. Determining whether the adults need a wrist band or tickets is always a little tricky as adults are needed on some rides, but not others, and it also depends on the age of the child. The place has a little bit of a rundown feel, but kids don't notice and have loads of fun. The arcade is really rundown, but the ATM is really nice. There isn't much shade, so be prepared. All of the staff are really nice. + +There are usually a few game and art vendors about: ball toss game, sand art, and/or face painting. All are a big hit with the kids, but also hit up the wallet for a few bucks a piece. Everyone is a winner at ball toss, by the way.",review,U_fAIe7CUaGMejwSdNvMgw,1,0,1 +Zy2vca7i9QFGRKa4m0C__A,2009-01-22,ZRkT5HbMisTWsVlcRLYUSA,3,This place is old but the food is good. The compliments arent that great...such as the basil and bean sprouts they give out. Their soy milk is made fresh and does not come from a Yeo's can.,review,bc1BST38H04S7wvL1SRniw,0,0,0 +TqHTtjPANCBKGsjGBjDoQQ,2009-05-24,vus5QnNLxuB7mqG6iqBFqg,4,"My daughter and I sort of stumbled on this place a couple of weeks ago. We were at the Ulta just around the corner and she said she was hungry and she LOVES pizza. We have been here twice as of this writing. The second time around was ""Kids Eat Free"" night. That is Wednesay for those of you with kids and it's a good deal. I will eventually put together a list of Kids Eat Free places in the area. For now let me tell you about NYPD..... + +The pizza is a winner! Nice crust, great topppings! They use paper thin slices of sausage instead of hunks of sausage. The flavore is great too. My daughter had a slice of black olive pizza and they were very generous with the olives....she loved it! I have had the ceaser and the house salads and both were good and fresh. + +So for the Kids Eat Free night adults need to order an entree (I think this includes a whole pizza too, not sure though) There were several things to choose from including cheese ravioli, baked ziti, and lasagne. I chose the lasagne and it was delish! Piping hot with melted mozeralla over the top, I could not stop eating it!! The flavors melded together nicely and it reminded me of my Mom's lasagne. And did I mention the bread......OMG!! The little ibites of heaven are sooooo good!! I could have eaten ten of them!! They are homemade, the real deal, yeasty goodness!! Warm and just a little chewy, the flavor was amazing!! +Oh and the Desert Flower Ice Tea.....so refreshing!!! I keep thinking about it, that's how good it is!! + +Try the canollis.....you won't be disappointned. Kids get an ice cream sundae with their meal. On our first visit Lori, our server, was a real sweetheart. She gave me some coupons and signed me up for the email list. And on our next visit , Jessica was awesome and attentive too! + +This is a small place but they also have an outdoor patio with misters. The bar is tiny, probably seats 10. Flat screen for watching the D'backs and some good beers on tap, along with Happy Hour specials makes this a great place!! This will be somewhere we will frequent!! Thanks NYPD!!!",review,ZmIgP4U4Ht9CYmNX0_zP6w,13,12,8 +kfveMaYeaqGVNHPitT4O9w,2008-03-20,Pj5H3WucndmksGmc2Nwbqg,4,"Another wonderful little counter joint. It's extremely basic, no frills, and cheap. The baklava isn't fabulous, but everything else is worthy of a special trip. Once again, the chicken shawarma draws me in, though I'll occasionally force myself into breaking out of that far too predictable mold (for falafel since I truly am stuck in a rut). The hummus is great. As mentioned, the salads mainly consist of iceburg lettuce, but they are not stingy with the feta and the dressing is amazing. + +There is night, semi-scrubby outdoor seating and the drinks are bottled or canned. Last year I went with a group of friends for Valentine's Day and there was a musician who was slightly too loud for the environment. When something special is going on, the owner comes around and checks with the patrons to verify quality and whether or not the activity is enjoyable. This is always a nice classy touch for a little dive. + +It's a rarer occasion that I find my way down there. Let's be honest: I only go that direction for SMoCA, the Venue of Scottsdale, and EZ Tattoo. It's not generally ""my scene"" and it's definitely out of my way. Any time I find myself doing something in downtown Scottsdale, however, dinner at Pita House prior to the main event is an absolute must.",review,YMB29SPB8Z_a2be4O5gxOg,3,4,0 +ut-kla-EA23nJOij_dcL0Q,2007-02-15,36LZ2UOhAwa8p-nyQgbN5Q,3,"If you have been to one CPK, you have more or less been to all of them. I went through a stretch when I really liked it here and I still don't mind it, I guess I just don't get excited about it anymore. + +The BBQ Chicken pizza is my go-to but the Thai variations are tasty, as well. The appetizers are ok, the service is ok, but it all just seems a little played out to me. + +I am waiting for CPK to make some moves, shake things up, add something interesting to the menu, because I feel like nothing has changed there since 1992. + +I'll still drop in from time to time, but I won't be as excited about it as I used to be.",review,Ovpa3S8xD96dLE5eDxcxJg,0,3,0 +4waggbCK-MSE9dbIdSMfPA,2010-05-02,3X3r3YglV-zmp9hKV3KFkQ,3,"I would give this place 3.5 stars. The service was excellent and the view of Pheonix at sunset was nice. I ate the wedge salad (nothing special) and the chorizo mac and cheese (yummy). The highlight for me was the pudding trio, the honey date flan was delicious but the portion was small...which led me to savor every bite. The other people in my party were satisfied with their food and there were no complaints.",review,CoO7q1yFPVy-nRqPOYLglA,0,0,0 +FY_OXEVcewAQFZuu6fynLA,2012-11-24,wFQkyr7hXMHV1RbN4olXYA,5,"Took us a while to find a good Greek restaurant. We have been here many times and have yet to have a bad meal. + +Gyro combo this trip. Meat was very flavorful and great texture. Tzatziki sauce is one of the best I've tasted.",review,FvSVsGNKBgQdQt-MYP3Kxw,0,0,0 +T4ox3wUzFjWvyrjaTRoBbA,2012-06-01,QWG4gF5yc0frf48XvPpn-g,5,"Sushi ken I love you so much, I don't even know where to start! It's about time I write a review. This place in my opinion is the best quality for largest portion size in the valley. + Let me just say now that if are one those people who A. Like California rolls B. like spicy whatever rolls C. Want to go somewhere trendy and have sake bombers then this is NOT the place for you, please just don't come and spare me your stupid review, just go to Ra or Stingray or somewhere like that. +My husband and I eat here a least every couple of weeks, I feel like the staff is our family. They are very nice and polite. A lot of families here, restaurant is decorated simply. +Nigeri and sashimi are very good. UNI here is amazing! Yellow tail belly is awesome also love the seaweed salad. +From the regular menu I love the yellow tail Kama and the cold soba bowl. +I also really like that they are open 7 days a week pretty late since most places in AZ close at like 9.",review,CpvQD8CxglFO6KhqX-MFAg,1,1,0 +5VMajxduxfLPSyQkVFKESg,2009-07-03,dHD67wPzULlH3LIh66mwAg,5,Best BBQ ever. Go here and thank me later.,review,CuzADeE8rkYwiWrIxTsNGg,0,0,0 +mnJHxPTbAxhueeuh76ePZQ,2012-05-07,hBOlBUtar9KmyF7SjioTtQ,4,"Surprised to have a good sushi place like this in Fountain Hills. Can get expensive, but eat in or take out is always great. Fun to mingle with the chef while making the sushi.",review,tKgDgXSkOklBb9tQVGkYhQ,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2008-08-04,xTNGA-ZJ8oYS0zA5_dla7g,3,"On my way to the Airport, I decided to stop at Ted's for a bite to eat. Being that I live really close to this place, and have never tried it before, I thought this would be a prime time to check this place out. + +Well, it was alright. Nothing special on the interior, and even though I was not blown away by my experience here, I really did enjoy myself. We waited in line, and I ordered a jumbo beef hot dog, with Chili. Austin got a sausage, with some of the fixings, and fries. We both liked it, and I plan on returning again soon. Pretty good!",review,JffajLV-Dnn-eGYgdXDxFg,1,1,1 +DcrM4hwDcU2G6vuh2cnaYQ,2010-04-25,YHvP_RM3pvYXbGRH-k0a3Q,4,"Excellent service. Easy to access. Dessert is amazing. Husband loved Salted Butter gelato, I loved the cherry. he always loves his fish entrees here. I eat very unsophisticated so finding anything here on the menu is hard for me. I tried a pasta last night, it was salty and boring. +I still recommend this place for people with grown up tastes.",review,zMhkzu9VXFULKQ8YCCsDVQ,0,0,0 +-9pVS__IliMA2aNEYzrQrg,2011-02-02,_RukVw-RgOuGGHo0j9Sn5A,1,"We went to American Junkie after we found a 50% discount from http://www.restaurant.com. They couldn't pay us to go back. + +If you like velvet ropes, not being able to talk to the person next to you because the music is so loud, and being around people who are really into themselves, American Junkie is your spot.",review,V1_3yModtZm-WmHs1zbc7g,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2012-03-29,cFQ37IRUM5OXjzUUFJEqIw,4,"The food here is amazing! So full of flavor, not fat. Healthy, and delicious! Prices in the 10 range for a salad, and 20 range for an entree'. The resturant is very loud, because they are always busy. The chairs are too small for my hips, making it uncomfortable to stay very long. Oh well. I suppose they expect, if you eat here, you must be a size 6.",review,uK9Oh-IgPT4MOCJ69KSRSg,0,1,0 +EZ7MD_hOsBZuWEvSjXr7DA,2012-04-07,wR7N0nfzWLXY2s05BuYTuA,4,"I'm on a low carb diet right now, so I had to pass on the pizza, unfortunately. I was expecting to order a house salad with chicken. When I told the server my diet limitations, she suggested a side of meatballs for about $4. It was perfect. I had the smallest bill at the table, and the meatballs were homemade and plenty tasty.",review,wysB0lvlJuSBwUAerJqjJQ,0,0,0 +9dn3AMdwvD2KXnTr6AJY1g,2012-01-18,yzVPHvePW7Pe51Sn_mg6mg,5,"There are many places in the valley and its surrounding cities to eat Mexican food; however, there is one and only La Canasta. + +In the last two years the boyfriend and I have eaten at this restaurant location quite often. For the money, you get exactly what you pay for: a decent meal and generous portions. + +The chips and salsa are ever-flowing and the salsa is some of the best I've tasted. + +The wait staff are generally pleasant, attentive and very accommodating. Plus they frequently recall what you had during your previous visits. I recommend you try the Machaca dinner or my boyfriend's favorite dish, the number 5 lunch special. + +There are multiple locations in the valley, but this one beats them all hands down.",review,QB49hhSLpPMaZ_rqBjP8uQ,0,0,0 +5EyT-ZbhJR6LwtVaPyE3bg,2009-11-24,Y9zRL8O92YetxmUIxSVmaA,5,"I do a lot of traveling and during a quick trip to Phoenix, I was able to get two classes in at their studio. It was very clean and the people were friendly. I did think the studio was excessively hot my second class but everyone else seemed to be ok with it so perhaps it was just me. + +I would defiantly return if I were in the area again.",review,rdRJ3gejMIz8pB2zyR24oQ,1,1,0 +o4DsvwwD2kIbF-EM4r9G8A,2008-03-30,CLxSYq-bqoMnnnVUL1Pp9A,4,"It really was the perfect place to start our night. I was with a group of girls out for a bachelorette party and someone in our group suggested Drift. Loved it! It's totally cute, and I love the touristy Hawaiian vibe it's got going on. We had a few appetizers, a round of drinks, and a round of shots. The appetizers were simple and nothing spectacular. The drinks and shots were pretty good. Service was hit or miss. Our server was pretty attentive at the start but we had to hunt her down when we were done and ready to move on. I'd love to come back to Drift for dinner, the menu looked pretty good and I'd love to try another drink. If anything, I'd like to return to stare at the woman's bathroom again. Totally cool!",review,m7j9e53ycZxjWYBD7rZVng,4,5,1 +z7q29LOjWMOy-ryBSeqgjg,2010-10-28,jhNnYjPMfTTai4eX0siMew,5,"Evil Place!!! + +That's right.. I walked in there and I couldnt believe it. The people were nice to me, asking me if I needed help and by the end of the day, i had a new kitten! + +All joking aisde, I love this place. I know you can buy food and other things cheaper at grocery stores, but I kinda like a specialty store like Petsmart. The staff is great and anything you need they are more than willing to help out. + +To this day I have purchased two cats here and both are still awesome and amazing. The last kitten my girlfriend actually picked up and when I went in there to pick up some food, they remembered which kitten we got. Apparently she was among the favorites that was adopted. + +You want good service and a great place for your pets.. Petsmart is the best!",review,_4lqpCYCqOQzbB6xQGGhrQ,1,1,2 +0yfN4bdKZfkFSXseB2kOBg,2009-09-07,oempttImeHSIu46FNfAQYg,5,"I love guerrero's! I worked in Mesa 15 years ago and we did burrito runs here all the time. I'm a huera, but my Hispanic pals all rated this place authentic. It's a husband and wife team that runs it. The best thing are the beans - incidentally, that's how I rate the authenticity of Mexican fare- They are the kind of beans I ate in Nogales during college (at a place I could only locate while intoxicated). Thinner, lighter colored, and delicious compared to any I've EVER had this side of the border. I live in PV now- super far - but after this I think I'm gonna have to take a road trip tomorrow to Mesa! Yum!",review,nRWHSp7rtXVPCjHxan_h8A,0,2,0 +NIuaxYvM_-dzmgGXwPJ1Gw,2012-10-01,Mw0NRnvkpaEquVRFCitOmA,2,"I really wanted to like this place, but the service just ruined it. + +I went on a sunday afternoon, when it really wasn't that busy. I was sitting directly at the bar and still got poor service. The server walked by probably 5 times while my glass set empty before she made eye contact with me. It was a bit ridiculous. + +I feel like the yardhouse had just as many (if not more) taps, with the same prices and better service. + +Great decor though, very tall open ceilings and lots of TVs. Just don't expect good service.",review,XwEY9qjfXtdpNbmRY2p_bA,0,3,0 +G2Re2E5Jkv_UF1xrenSsDg,2011-09-28,P3OPFhL_QZAZh7YQBS4Owg,4,"I love Macy's! My mom & I can spend some serious dough here on just a few tops, but it's so worth it! They have sales often, but it's funny how we always like the ones that are full price. Aside from the women's section, their men's section is decent (bought my hubby some denim shorts on clearance for $20 each), shoe section is just ok, Coach bags are to die for & we love their jewelry section (particularly Betsey Johnson stuff!). My mom has a Macy's card so there are usually great savings when she uses it & they send her coupons all the time!",review,33vUIil_GCaT92aUaZhRXA,2,1,1 +d3MxUXS1b6U2P_gGuCO1-A,2009-06-25,dQrlUUrCdc9heo4bUrFVcA,2,"I had very high hopes for this place, after the very good reviews Fate got and that Sens has been getting, but I was terribly disappointed. The mango papaya spring rolls were dominated by the flavor of anise/licorice. The shu mai dumplings were so hard, even hard-core Italians would have said they were too al dente. The black dragon chicken was good, but not great. After we left, we noticed the dinner menu was much more extensive, especially without the tapas. Maybe dinner here is a much better experience, but I'm not sure I'd even be willing to give it a try after the lunch I had here. As for the atmosphere and decor - don't even get me started. Talk about trying too hard to be hip. The Vegas-y blue lighting in the bar area, the Northwest coffehouse style old-looking couch in the back, the Asian influence...I'm not a proponent of ""matchy-matchy"" decor, but this was all over the place. Service was just okay, too. I won't be back any time soon.",review,OQMOgqS1NFIyAW4i66iDYA,0,0,0 +PkG9bV1SvfOydOCCnDUGgw,2010-08-04,qTuisLGKbQCXLlUZUeGciQ,4,"Want a unique date night? Craving for something to do on your own? Want to have an avenue to express your inner artistic abilities? OK, here you go! + +Very interesting concept: Pick a piece of pottery, think of what you would like to design on it, you can draw your idea on with pencil, go grab your paints, brush, sponges, or stencils, and away you go. They will then fire & glaze it, ready to pick up your masterpeice in a few days, + +A great place to zen out and leave all your stress and worries at the door. + +Good for a keepsake, special gift, 1-of-a-kind conversation piece, or create a memory. + +1 star lost for the very annoying and extremely intrusive studio ""helper"" which I will leave un-named. Kinda ruined alot of the experience. I should say that if you need assistance, you can have it, but when you do NOT need it, well, please leave us alone - ie: i f you are in Barnes & Noble, you don't need a clerk to repeatedly come up to you every 10 mins to ask if you are going to buy that book or they read it, or do you want a better suggestion..... ect.",review,h7v_M_0-YVpSVZ2WD7FpAA,0,1,1 +CTSuvTp8ymqtrM2t0lwAOA,2008-10-02,gSAQ9GMDO-aLL410pd-ThQ,5,"I love the Superstition Mountains! It is the most convenient place to get away from it all. The last time I was there I hiked Siphon Draw up to the Flat Iron. There were a lot of people on the trail but I still felt like I was in the wilderness. Camping sites fill up fast here, so I would recommend checking out the Canyon Lake area as it is close and a pretty drive.",review,7oMqFG6Su53dtbkVnF80Gg,3,2,0 +rZbHg4ACfN3iShdsT47WKQ,2011-07-08,ca_6nisikghrwKd9w0OAqg,5,"I have never had BBQ in the South, Texas, or anywhere outside of California (except Bobby Q), but of all the places I've tried, Bobby Q is my current favorite BBQ place EVER! I found this place on Yelp and came here while on a trip to Arizona. The place was pretty crowded but we only waited about 15-20 minutes. We ordered babyback ribs, St. Louis ribs, corn, and mac&cheese. They also give you DELICIOUS AMAZING CORNBREAD! + +Everything was excellent. The St. Louis ribs were the best ribs I have ever had. They were extremely tender and had a nice flavorful bark on the outside with dark grill marks. Their BBQ sauce was equally awesome and the kind I like -- a bit more on the sweeter side, less on the vinegary side. The babyback ribs were also tasty, but not as flavorful (and less meat of course) than the St. Louis ones. The sides were good but more forgettable due to the sheer perfection of their ribs. + +I don't know if I will ever be in Phoenix again, but this place is a must-return if I ever am. Oh and at the end of the meal, they gave us complimentary, piping hot FRESH cinnamon donuts! That double-won me over. I want Bobby Q right now.",review,upG0mzEpQFpoSZXRv2pfaw,0,1,0 +Exx5ffvnmk4MrTyCkPRuug,2009-02-16,3sjhgrdp_kF-D-eAyZiQaA,4,"I was surprised to see that this place has such low ratings on yelp- it is one of my favorite Mexican places in the valley. Favorite dishes include: mini beef tacos, Tapopo Salad (iceberg lettuce, cheddar cheese, chicken, peas, corn, beans, tomatoes and large amount of quacamole under it all), fresh salsa, and Tacos Al Carbon. All freshly prepared and wonderful tasting. + +If you have kids, ask to sit in the blue room by the fish tank - the decor is fun and mysterious and will keep young children distracted thru the entire meal.",review,0H9ne5frm1GjO6TjUwbxlw,0,0,0 +9x0rvR9SSX5mO1vUqx_hnQ,2011-07-15,FSu-Gq7XZ9gQvGRmDKODog,3,This place is consistant with it's good Chinese food. The staff is courteous the place is clean. Want Chinese take out in Tolleson come here. =0),review,z1tNqF5qJRpibGj-9_r9Ew,0,0,0 +RT06SJHkloqMvNn1aXdpBw,2012-08-10,g_1V2aRQLfu710YdiSVs0g,5,"I am sad that Lucky's is so far from where we live. I worked near Lucky's last year and just happened to walk in for lunch. My lunch was so good I took a huge meat lovers pie home, which was so good my husband proposed all over again! + +The employees were so friendly and explained that their pizza might take a little longer than normal, but they want to make sure it's right. I loved everything about my visit there, and was able to stop in a couple more times throughout the year. It's about an hour drive from where I live, but the more I think about it, I think we're going to have to go get some more Lucky's pizza. Great neighborhood pizza place!",review,WxeD74JGiwjljzHndYSvmw,0,0,0 +NFloHgUrC5kCTFybx_r-aw,2011-11-06,riCVn_XNMpqMMtwint2NKg,5,"Rarely crowded. 4 tables indoors, many more outdoors. Wifi is usually fast. Only downside is that it's next to a gas station, so the visuals out the window aren't exactly spectacular. But if you care about that, why are you in Scottsdale?",review,AvjnPmsfQWsUFJ4-M9wI1A,0,0,0 +-sAoGZTnFtDZUY9JYWHqlg,2011-10-25,zD3xBirR3eT998BDoJs4IA,5,"Attended the Pink charity event at the Shade bar. Great time and the scene was fantastic. + +Need to highlight the job that Jason and Halley do with VIP tables. I've worked with both of them twice now and the experience is always top notch. Always ensure that the experience is better than expected.",review,g-lJlj7TNdfoNqtk3r3Ikg,0,0,0 +trG1k-K6Nq4YKcexa1AGOA,2007-02-01,9afF31qJRE6AVgEdTFdGHg,4,"Good food, good drinks, fun bar. +There are quite a few Buffalo Wild Wings in the valley and they're a fun place to grab a quick lunch or dinner and watch the game. +They have a pretty good garden burger and their buffalo chips (french fry-ish things) are really good. +If you like bloody mary's, they have the best one. It's so good...really spicy and filled with celery and olives. +Be careful when you come though, if there is a game on, you'll have to get there early or you definitely won't get a spot to sit.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,0 +PoRYjYUSjmeWM1WLsx_45w,2012-01-11,PKzziDJj5KLksknLXhzJWA,5,"I can't add much to what has already been said....BUT I'll try, haha! + +Um, don't come here without a map, or some sort of gps device (NOTE: some spots in the mountain do not get good reception, so a map on your phone may not always fully come in). It is VERY easy to get lost! + +There are many trails, I look forward to getting to know them better. So far, all I have really done is Mormon Trail and the Hidden Valley Loop.....Fat Man's pass is probably my most favorite spot...OH! AND there are some really cool rock formations on the way there (including a natural tunnel) look for the rock that looks like a big mushroom! + +This is a good area to do a hike in the dark....but don't do it until you've done the trail a couple times in daylight. You can see what seems like the whole valley from up there! If you do the night hike, make sure the moon is full.....you can actually see pretty well with that and the city lights. Plus, it's GORGEOUS! (if you did mormon trail at night, you could start about an hour before sunset, then head back as the sun goes down) + +Don't forget water, it is a moderate level hike.....and flashlights would be a good idea too, just in case :)",review,wLuDGMXytNVTF8ZU2gwUEQ,0,2,0 +l3WML3zeuotwUHzhbwCj_w,2007-07-26,BCfR-9xzSG3aDCGlV3_pTg,4,"I'm pretty much in agreement with the previous five reviews. A great way to spend the day when it's hitting over a hundred degrees! It's about a forty-five minute drive from Phoenix. + +I went on a Saturday afternoon, around three or so. So, I missed the huge crowds and rowdy bunch, along with the sun at it's hottest point! It's about a two to three hour ride from the shuttle drop off point two to the pick up point four. + +Rentals are $14/pp, which includes your tube rental and shuttle service. This is the all day rate, so if you get there in the morning, you can go back again and again. It's $10/pp without the tube rental. You can also rent a tube for your ice chest (styrofoam coolers are not recommended as they float away), which is a must as you need to load up on TONS of water and your beverage of choice. + +Bring along tons of sunblock and reapply often. Bring a hat though because you'll be glad you did when you see all the sunburn faces around you. A few old bedsheets will feel like a godsend on your hot tube, so think about bringing those along too! And bring along a pair of cheap water shoes or old sneakers because it's definitely rocky and you will need to climb out of the river at the end. Flip flops or loose sandals are not recommended as you see them floating on by in the fast current. (Don't be foolish and bring your new expensive sunglasses aka 'spies' to show off because you'll look like an idiot when you lose it!) + +And yes, the river is dirty - with river grass, pee, marshmallows, every other kind of food possible, etc. But you hope with the quick current flowing, that it makes the water less dirty...you hope at least. And please take your trash with you! (The shuttle drivers offer decent plastic trash bags for free, so please take a couple with you on the river!) + +They require that children be a minimum of 8 years old AND four feet tall before they'll allow you on the shuttles to take you down to the river. It can be a fast river, but also because of the mostly high school and college aged crowd frequently and dominating the river. + +It's open 9 am to 7 pm, seven days a week. The last tube rental is at 4 pm, and lost tubes will cost you $20 each. You need a driver's license for every four or five tube rentals. And no glass containers! Your ice coolers will be inspected before you're allowed to board! + +We're on the lookout for more rivers to float on!",review,zTWH9b_ItSdLOK9ypeFOIw,6,9,4 +MFlkmsxlDloSiEd8SLjnAQ,2012-05-01,AJAd4q49arSXZmaB45KZFA,3,"If I could eat a southwestern Caesar salad once a day, every day, I think I would. This is one of my favorite salads...ever. Paradise in general is a little overpriced but one in a while, I'll bite the bullet and splurge. My only complaint is their lack of vegetarian options. For a restaurant that specializes in soups, salads and sandwiches, it would make sense to have more than one or two options in each category suitable for veggies.",review,sPEFql7fLp0oouFxnooGpQ,0,0,0 +OmxAvtMyIvCVm16NFIOOUA,2012-08-18,xr-pPsKe487INePfJHqsNw,3,"Their service was above acceptable, but kind of slow. It was Wednesday night around 9pm and only one section in the restaurant was open for just a few groups. Their business looked very slow there. But I suppose it was a probably typical week night situation.",review,CoQ5qnDp_rLqkBN3U3yxCg,0,0,0 +-Ogv7rpcgUHkFaSy3vD8Sw,2009-08-13,eFV6Dovl1CL3d6Ef0oqZvA,5,"When Hoa called and said we were having a reunion of former branch employees at a Chinese buffet, I wasn't at all apprehensive. My normal concerns with such eateries--will the food be maintained at a proper food-safe temperature, is this seafood fresh, how long has the sushi been sitting out, will I be able to make it home before my intestines rupture--dissipated because Hoa knows good Asian cuisine. She is, of course, born to Vietnam and world traveled. + +Let's start with my happiest aspect about HKGB: the sushi. No, it's not the best sushi in the Valley, but they make it fresh for you on site. You can stand there and watch it being make, grab a soup or something else to munch on, or just sit at your table and chat awhile. Afterwards, you can head back for more sushi or veer over to the more traditional offerings of a Chinese buffet: sweet and sour chicken, fried rice, crab legs. + +Now let's review the not-so-shiny aspect: the price. Yes, it seems a little steep that we paid about $25 per person with tip (and I made only two rounds) but when you factor in the 2 hours we spent there, grazing, catching up, grazing, passing Lisette's daughter around, grazing and making plans to keep in touch, it's really not such an outrageous amount to pay. + +If you find yourself in this part of town, craving Chinese and are wicked crazy hungry, give HKGB a shot.",review,nc3cqVN0UuB3m50-CcMftw,10,11,2 +mM_sT64i46AKPQtz26PCcg,2011-08-24,ZBrl8qRkHeYr3XLQw6_ZJQ,4,"One of the better places to get some frozen yogurt, and since this is the location closest to my house, we tend to come here more than any other place we have been to so far. + +There is no indication next to the names of the yogurts what ingredients are in it, so I am docking a star for that. I'm trying to avoid eating eggs as much as I can and it is always helpful when that information is available without having to ask. I have been on the website enough times now to know which flavors have eggs and which don't so its not a problem for me anymore, but for anyone else it would be. But the flavors I have had have all been good. The fruity pebble flavor I had awhile ago actually tasted just like the cereal. It was a fun flavor. + +The topping bar is a good size. There are fruits, candies, and nuts among other toppings. My husband and I are generally happy with this topping bar. + +The best thing about this location is on Wednesdays, if you come in wearing pajamas (or something resembling pajamas) you get 50% off your total! Its a great deal. The last time we only paid $5 for the two of us. It gets pretty busy on Wednesdays but its not too bad.",review,2nXFEyQ06RfcdAXIPbxuwA,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2008-11-18,zVPF4RaGG7jpfQ63HRVGcQ,5,"LOVE Chino Bandido. The snickerdoodle cookie they give you with your meal is heaven. Well, all of the food might actually be heaven, but usually by the time I get to the snickerdoodle I could die happy on the spot.",review,MUHoBFzwRoXpCpgYSN8KRA,1,1,1 +AhpzPZH3b0PGT9mVoLCQDg,2012-10-18,NcDrQYipok1104bqpIwS_w,4,The grilled yellow tail salmon here is out of this world! I have eaten here twice in last 8 weeks and the sushi is fresh. The miso soup is great. Everything I have tried has been delicious. The staff is fairly friendly. Looking forward to happy hour here in the near future.,review,Hb49IsEZltm85wLz3uMrmw,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-02-10,M3jTv5NIipi_N4mgmZiIEg,5,"I pride myself on being 'that girl' that tries out every restaurant I come across. It's practically a hobby for me. For YEARS I kept saying, ""I want to go to Cowboy Ciao"" but we never made it. Then, thankfully, the hubs' best friend had a big birthday dinner there, so we just HAD to go. (Thank you hubs' best friend!) + +I have to say that the service was incredible, and the menu was almost overwhelming. There were SO many interesting choices, but I had to stick to the tried and true chopped salad - everyone and their mother has told me about this salad, and I wasn't about to miss out. The hubs ordered the Tenderbelly Pork Shank. + +The chopped salad has earned its reputation. That thing is de-freaking-licious. The Pork Shank dish was fabulous as well, but I couldn't get over how great the salad was! AND the server always came over to make sure that my wine glass was never empty. Seriously, can it get any better? + +For dessert we ordered the spumoni- I have had better (no offense) but I'm not sure anything served after that salad would have made me happy :) + +I'm very glad we finally made it to Cowboy Ciao and I look forward to going back - SOON!",review,g9s_yIDg9uA3RufY8-cqtA,1,2,0 +npNGjnLuB16sU_6T2b-5bA,2010-01-11,cat5mQdwKeXF--LgMm1ESQ,4,"This is our theater of choice in N Scottsdale. An older theater with no stadium seating, it is still kept in good shape and is clean. + +Great prices at $5 a ticket before 6:00, it is the best bargain around since they still show all the new releases! + +Our main reason for going here it is never crowded and personally I only like sitting next to someone I came with :0). That's never a problem here!!",review,OmnXoXdLsXhOVHQCDX_nAw,0,0,0 +nk6_ipMkmUvUtq6Xvncf0A,2009-03-16,ZxabF5JQcKPM86L0qB4xGw,3,"I could care less about being seen in Scottsdale, what my friends look like, and how cool we look when we hang out together. This is why I don't go to this place more than once every two years!!!! That being said, I do like their food. Its pretty good for sushi. But, the music is too loud, its pretentious as all get-out, the staff is too cool for their own good (Hey Bambi... You work in a frickin' restaurant), and its too much of a scene! Can I just have two of the Las Vegas' to go without all the crap?",review,iBO2m9xXivsIbvFnZHsNvg,1,1,1 +7hmTTGJHKfAw82uT4kIxvQ,2012-01-23,lRlv4LVKxNg2au5k9lJc2A,5,"The facility is a bit dated, but the service is great. Dr. Rios is patient and thorough, and his staff are friendly and efficient. Dr. Rios gave me several different alternative contacts to try in order to make sure that I was getting the right fit for me - it made a big difference. Who knew that they make bi-focal contacts now? They're great.",review,yujwS7lAU_2e8z8yQdsqlg,0,0,0 +ftdKj1p2Y0ABrr9uOPn97g,2008-01-03,fIlx7VKQuBmj0wBRTw4qjA,2,"Ya know - I could see this place being very inconsistent and I was there on a ho hum day. The wine recommended was their chianti which tasted pretty bad, they have a weird assortment of imported beers, and like a couple other reviews the pizza had little flavor. We order a PESTO chicken pizza and we had to bite around on each piece to find the pesto, no flavor, a bit dry and the pizza was really late and warm - late and warm which means = sat there for a while. Our waitress was nice, cute, fun but hey that only gets you 2 stars. The salad was better than the pizza and the wings were pretty good. - Thats all folks.!!",review,SwnLshF0NJBRK9UilGA80Q,1,1,0 +E6DnUFy3GoN4DxTqturtug,2012-09-22,NNyGfPeJOvTOMquOCOFg2Q,5,"Went wed nite, wife tells me best gnocchi since Europe, were cooked perfectly . I had pollo erbe, terrific. + + "" wine tasting director"" very good, with tasty selections. Will be back, OFTEN. Highly recommend. Rich D",review,QqndsiMnOxuyhaSzIGmq7Q,0,0,0 +yktWUtKBja_Lzk3wwR6RFA,2010-02-07,TYCjT2hujpmarVzCDCCTuw,4,"Nice restaurant and hookah lounge. The service is...as it is in every Middle Eastern restaurant I've been to-t's not bad, but not good; if you ask for something they take care of you, but otherwise they do the bare minimum. Nice people, though. I had the best falafel EVER the other day when I ate some late lunch at the restaurant. The market has a nice selection of hookahs, shisha, and accessories. I'll be back, for sure.",review,Y1yGvKaf3XzQ-oLu-J4-3Q,0,0,0 +N_zdv9ApM_RIk_80KsNX5g,2012-02-16,7etNJc6oUiAJX-TAHcNXUg,2,"Food was alright, nothing special, a bit bland. The water tasted so bad though, bad enough that you could still taste it through iced tea or tap water, do they not have a filter!?",review,X8hjnv-PSuJ0ASItdwpzqg,0,1,1 +TPbaVXcot4-MGFMi2gREJQ,2012-05-20,56VDT0x0FbAVyBp_oj1XgQ,5,Our family have used this Discount Tire for 11 years now. Amazing service and warranty on tires. Thank you!,review,O0WWBU6acBCzzYjyXaouUQ,0,0,1 +SMpL3z4FLF07bRA6-y22JQ,2012-09-30,GAl0L7rhCUaPbKJtXGD1qA,5,"I can't think of a better Thai rest. In PHX. Consistently good food and service. They have Thai staples like rice paper rolls, Tom Ka Gai and Pad Thai as well as more creative items such as Crispy Mango Fish. Average Thai food pricing, free parking. There are a good number of tables, so don't let a short line dissuade you. Like any rest., scope your table before you sit to be sure it suits your mood. Boisterous din in the main room when busy.",review,hNs-x49UQmkN3GSAwKXUGQ,0,0,0 +tS12t_uuiCGAryiNaRmF9w,2010-04-22,cprXmVFzgCrni9gd-pyrxQ,1,"Avoid at all costs. Awful service, slow as hell, only uses disposable plasticware/plates to add landfill insult to heinous food. Despite telling them we were in a rush to catch a plane and multiple reassurances that the food would arrive in plenty of time, they lollygagged around and I ended up paying $30 to be seriously pissed off and hungry with no food. BLECH.",review,Bl9i_CBC9orZCmr2NxrlMA,0,2,0 +1pGC-0jvQ6vN5rzmCHjmfg,2007-08-23,8uV26l7-ktb4tZ5gRsIWWg,5,"The new Harkins Cine Capri, one of the first things to open in Tempe Marketplace, boasts 16 theatres and offers more than the norm when it comes to movie snacks. Moviegoers can order brownie bites, mozzarella sticks and pizza. + +The theatre is super spacious and the seats are plush and comfy. And the screen is huge. This is my new favorite movie theatre.",review,nWouNfZD3Pw08RYizxkqcA,0,1,0 +3n9mSKySEv3G03YjcU-YOQ,2012-01-09,3naXtoD6EkZ6PhWGb-elFA,5,"Postinos a spot for high rollin' winos. + +You woke up at noon and had breakfast during lunchtime, so the next logical step is to have lunch food during dinner time, with some wine. This is where postino's comes in. + +The menu is full of salads, Paninis, bruschetta and a few apps. There is a large by the glass wine menu ($8-$14) and hipster cool ambiance. + +Service here is great, the patio is quite nice with heaters, a fire place and even a few patio furniture loungers. Great for a date, hanging with friends and conversation. + +We started with the Bella Postino $9 Crustini with a artichoke dip and a hummus. The artichoke dip was great as any fat laden dip would be. The humus was ok but I am a hummus snob. + +For our main we had the Vegetarian Panini ($9.75) It was good and moist with hummus roasted tomatoes olives and an artichoke spread, the focaccia bread was well toasted from the Panini press. + +We also had the mediterranean salad 8.75 which is a romaine salad with copious amounts of feta. Pretty good as I do like cheese but maybe not as healthy as one would want from a salad. + +For desert we had a crem burle, simple not to sweet and well executed a classic.",review,M6oU3OBf_E6gqlfkLGlStQ,3,1,3 +Me6hKl5pjH2KCuxLZm6pzQ,2012-10-03,qnJpKukeM1PiE_y3KHeqAA,5,"Soooo this location is even better than the one in Superstition Springs. They also have a play place, which is pretty cool. I ordered the deluxe chicken and it was simply amazing. Fantastic service as well. I ordered and set my stuff down and within a couple minutes my food was brought out to me with a smile. Very polite staff, and delicious food.... what more could one ask for? I totally wish Chick-fil-A would sell thier Chick-fil-A sauce by the bottle cuz it's sooo good",review,XAYnVFLCV7i3iR4qs4eeQQ,0,0,0 +byhwHi0lhYdyY5kSpuqoaQ,2011-04-04,HjDpBri_flkD7obrtuxb9w,4,"Brio is delish, plain and simple. I have yet to get something that isnt tasty. I live about 15-20 miles from one so I dont get out there too often but I do wish there was one closer to my area.",review,1bV0I0j-YzDcfiXK2M-U8A,0,0,0 +UkbiF2Y3FUDGPK5YdCGgIQ,2008-10-16,I9SVFf4llKx0RPWOuQFPhg,4,"In all of my shopping adventures at The Rack, I've found each day can be hit or miss. Some days they have very little selection of high quality clothing and other times I've seen $700 high-end designer dresses marked down to $30. They key, I've found, is to go on the days when their new merchandise arrives straight from Nordstrom. + +I somehow got on the Nordstrom mailing list, which I don't mind because they send postcards with the dates of these fashion events when new shipments arrive. These are the dates when the best selection of designer clothing comes straight from Nordstrom. So, if you can make it a point to show up, you're bound to find what you're looking for at a bargain.",review,FHJUj7EHB9nB2czVOzQX3Q,2,5,0 +_HTE4pOKeJC7kcxiCF9vTA,2012-07-18,ggHGaV87khLrOM6nxEOrMg,3,"I was NOT too impressed with this place but... it was good for Phoenix, where I am starting to realize there is NOT an abundance of people who look like me. =/ LOL! + +Flavor-wise I thought it was pretty good. Don't be misled by the spring rolls... Even though it says they serve them in 3s... its 3 that are cut in half... so you get 6 pieces. This is pretty good if you're looking to share with someone. I did not get a lot of lettuce and mint, though and ate the last two pieces by themselves. I was a little disappointed by this. + +I had the combination Pho... (YES i braved SOUP it in HOT ASS ARIZONA) and it was not too bad either. The broth was nice and clear, just portion wise... was not as extra large as I expected it to be. + +When the bill came, I ended up paying about $18 total which included tax and tip and no drink. I think the Pho was almost $10.00 and the Spring Rolls were like $4 and some change? + +I think this place is cool but would not be my FIRST choice when it comes to pho. (Trust me... I've eaten a LOT of pho) I just don;t think the price vs. portion is worth what you;re paying. This saddens me to say too because, I am ALL about supporting small Asian businesses. + +Oh well...",review,IrTcXG-XwBcgrmcBxz2J-Q,0,2,1 +H7KzlC0-o1wIhlGg-Me5Ag,2008-04-29,dCQfxVElqKdqEp6Nx5lL2w,4,"Out of all of the Flo's locations, this is the one I've frequented the most over the past 3 years of living in the Valley. I've seen the menu change here and there, but I have to say, I've never had a bad meal at Flo's. + +I met my friend Melanie H for dinner this evening and we really enjoyed our meal... we had great service - our waters stayed filled throughout the time we were there, and our food was served promptly. Our server checked on us several times as well. We started with vegetable pot stickers and requested that they come steamed. They were delicious! Next, we shared 'Indian Curry Vegetables' (I ordered it with shrimp) and Indian Vindaloo Chicken. Both were extremely tasty - fresh veggies, chicken, and shrimp in really flavorful sauces with just the right amount of spice. The curry vegetable dish came with broccoli, mushrooms, carrots, snow peas, and long beans. The chicken dish had tomatoes and onions. We also had steamed white rice. + +Note to Flo: We were both disappointed that you took the Vietnamese Spring Rolls off of the menu and I miss the days of the green curry dish with calamari. One more thing - the chicken corn soup that you serve at the DC Ranch location should be offered at the others as well - I love that soup! + +Fortune cookies came along with the check and we both were happy with our fortunes. The bill didn't break the bank either. See you again soon, Flo!",review,fczQCSmaWF78toLEmb0Zsw,2,3,0 +9YUe5J_cPCBo_mL7-z9HCQ,2011-12-12,JMsGNA3bc3CzqoOqb79dkg,4,"I went for lunch with a large group and the place was pleasantly empty. The decor is very modern and has a comfortable lounge style. + +The chips and salsa are a great starter. You get three tasty kinds of salsa: brown, red, and pico de gallo. The tortilla chips are fried perfectly. They are extremely light and crispy. + +I tried the steak tostadas. The meat had a food flavor and the tortillas were nice and crunchy. The red jalapeño and fresh cilantro on top brought excitement to each bite. + +The dishes are small, but they are are also inexpensive at $6-10 each. Along with the chips and salsa, I got plenty of food, so portion sizes are only an issue for big eaters. It seems like a great place to share several dishes between everyone. + +I would definately go back for the food, but I wonder if this place becomes a standing-room only drunk fest when it gets busier and later in the evening (if so, no thanks).",review,qQns9dP75RNOWOVWI_ZKZw,0,0,0 +7pxa5tueoEcmt6hztqsz2A,2008-12-10,hMD_kV9jYdZ8PzCZoqtmMA,5,"Just because i feel like doing something different. :P +i'm just going to paste some song lyrics that i feel sum up Pei Wei on McDowell... + +Truth is here the truth is here +Truth is here the truth is here +Truth is here the truth is here +I said the truth is here the truth is here + +I want more +Give me more +We want more +God damn it I'm back to demand we get more +We want more +I want more and more and more +I want more +We need more +I want more +God damn it I'm back to demand we get more +Give me more +I want more and more and more + +[Verse 1:] +I stand here naked as the day I was born +Face to the dawn and my faith in the song +Blood soaking the pages I painted em' on +And none of ya'll will take my place when I'm gone +I'm the pure raw uncut, who the fuck want what +Here to show you sucker ass mutts what's the fucks what +Brother Ali vow solemnly not to die while the music is still inside of me +It's got to be allowed to breathe +Got to let it out enough at least to let the monster flee +I want more than what your offering me +Songs that make me feel like I'm already free +I'm a rebel in my own right +Ya'll don't want to write or think or speak a rhyme standing next to me +When the game need it I'm exactly what it need +Put the soul in the speech, let it go, let it be + +[Chorus: x2] +I want more +We need more +I want, god damn it I'm back to demand we get more +Give me more +I want more and more and more + +I said the truth is here the truth is here +Truth is here the truth is here +Truth is here the truth is here +Truth is here the truth is + +[Verse 2:] +Not nearly a single solitary soul +Still put the kind of passion to the mic that I hold +One day it'll have to be pried from my cold dead hand +Until then the big man is gold +Got one lone reason to go on breathing +Climb into the zone of the evening, keep reaching +Just to pull more out the core of the deamon +The people need to see them pure human being +Blood, sweat, love, hate, life, death, joy, pain +Little child running wild striped to the raw veins +Rugged junkyard dog off the chain, barefoot balls out marching in the rain +Sacred war dance suspended in the moment +We throw the fuck down like our lives depended on it +Jaws of the streets with our heart on our sleeve +Throwing shots at the law which is all I believe + +[Chorus x2] + +[Verse 3:] +Our songs are supposed to be the voice of our soul +Not bought and sold, not all controlled +Bring a little fire when the world get cold +Let me shed a few tears and to me you went gold +People need more freedom +Children need to hear more truth when ya'll teach em' +Damn I want to hear a plan from the dude preaching +Got new seeds with true needs and who's leading +I truly believe every word I've ever uttered on a drum break +Right or wrong, life go on but it wasn't nothing fake +I demand you start listening to the crowd +If not - we gon burn this bitch to the ground + +[Chorus x2] + +I said the truth is here the truth is here +Truth is here the truth is here +Truth is here the truth is here +Truth is here the truth is + + +the atmosphere is pretty hot here too..exposed brick always makes me Yelp!",review,E5QyEU6FCQwnTys0S73zNw,2,2,3 +o9nCXNC14VScabiy2bftgw,2007-02-05,FRq9MZnoZltnwh_lAYiQAw,4,"Holy manfest '07. +I think I was one of the 20 women (not including the waitresses) in Tilted Kilt yesterday. +It was raining men. And I liked it. +A few minutes after entering the bar, I knew exactly why I was surrounded by a sea of men- the waitresses were barely wearing any clothes. +Let me clarify: they did have tiny skirts on, even tinier tops and their bras were hanging out, so I guess that constitutes as clothes. +The outfits were cute, but extremely revealing, so much so that even I had a hard time looking our waitress in the eye and I know the guys around me were having the same problem. +The bartenders (all men) were all pretty cute. And wearing kilts. All I kept thinking yesterday was that they must make some pretty damn good money to warrant wearing a skirt to work. +The food is pretty good too and their menu is extensive. You'll find the usual apps, sandwiches, tons of salads, chicken fingers, wings and so on. +But the real highlight of Tilted Kilt for me was when I found little purse hooks underneath the bar. I thought that was awesome. +Way to look out for the ladies Tilted Kilt.",review,0CMz8YaO3f8xu4KqQgKb9Q,0,1,3 +6oRAC4uyJCsJl1X0WZpVSA,2010-05-01,j2Eno7wxttUkoeClhctwkQ,4,"The place is nothing special, you can even think there is nothing going on there as it is almost hidden. Once you are in, you still won't believe there is something worthy. Sit and try one of their gyros, hummus or the vegetarian combo! All tasty and well served. After that you can check and buy some interesting to impress your friends next time!",review,LqgGgWi3FLHBViX9tmZ9sw,1,1,0 +UxvOXcoCRFRAVhRB0D9imw,2011-01-16,smnXvsjJNqsCvEGbaNxulQ,5,"One of my favorite brunch spots. Not the cheapest, but you come here to admire the Arcadia families/couples coming into have brunch. There is sometimes a wait but it is worth it. I have a hard time deciding between the lunch salads and breakfast. I usually cave and get the french toast or ginormous belgian waffle. Parking is plentiful but it is on a weird corner in the strip mall, if you are going, look for cork and cleaver.",review,vhxFLqRok6r-D_aQz0s-JQ,0,1,0 +rZbHg4ACfN3iShdsT47WKQ,2012-03-19,QGfkgls44HbbrPDTR_ct2Q,5,"Seriously. I seldom give 5 stars, but it deserves at least this much. +If it wasn't for the location and the super scary after dinner club scene, I would go every.single.day. + +Truly one the best BBQ places in greater Phoenix. My mouth is watering as I'm thinking about the Hog Heaven special. In fact, my puppies mouths are watering too. Decent prices, giant selection. One of those places where the early cowboys of the SW would appreciate. + +If you are a cracker family, I suggest going super early, like super early bird special early , like when the snow birds come out for the senior special early, because after dusk, the whole place transforms into a pulsating super loud, super dicey Mexican Dance Club, and the blue hairs are sure to have a coronary attack after indulging in such a lipid laden meal as they attempt to make their way out of the Club. + +Ah the sacrifice for decent BBQ....",review,die-1gtgzw5KcyUjKo-VSg,1,1,1 +heszpsyNiT3i8MEOk04sUw,2012-08-30,PQRwGcpCCVYVIdluLmn0gA,5,"I live in two cities in two different states and travel back and forth each month. I tend to use services where I find them and haven't really found a really great barbershop in the last three years. While I was in Anthem this week, I decided to give Vs Barbershop at Happy Valley Road a try. I rarely use chains and prefer a more intimate and personal hair stylist, but I was pleasantly surprised this time. I was able to make my appoinmtnt online and choose the services I wanted to have with the haircut--very efficient. I didn't know any of the barbers, so I just let the shop (?software) choose one. I was treated to a superb haircut, a very satisfying shave, and a facial mask and massage. My barber, Manuel, was precise, experienced, and he went about his business with style. I cannot imagine how many hot towels he used but I would not want their laundry bill. Finally, Manuel washed my hair AFTER the cut, which makes all the difference for the rest of the day. The overall experience was excellent and I am sure to return the next time I am in town. Yes, the package was pricey but the haircut was standard price for this type of service. This is no Supercuts or Hair Salon--trust me on that. If you are looking for that old style Barber experience with more than just a clipped head, please give Vs a try. By the way, it is just behind Paradise Bakery in The Shops at Norterra.",review,TLxb5zxzXO-Y0bFB__i53g,0,1,0 +7tTK3VPlFtBGBHm8-LZIUg,2012-08-24,pX2ROPQLKnnnEU86JunAHA,5,"Awesome place!! EXCELLENT food/apps(try the bleu cheese figs)! Ask for Dizzy Dre, he's AWSOME and listens to your likes and customizes drinks for you!! Very patient with women!! ;)",review,q9U8zvkHbEkMCABvBkQByQ,0,3,1 +sDGjlZV3SqYGWG9BO4ZpMA,2012-04-08,pmOExg5ab56RZjG0K6mJPw,1,I got my nails done there last Thursday for the first and last time. I would never ever go back there. The man who did my nails burnt two of my fingers really bad. The place was dirty and messy and talk about noisy he asked me to many personal questions. To top it off he answered his cell phone and talked on it about 10mins all load and on speaker phone . So rude and bad customer service. It might be a little cheaper there but as the saying goes u get what u pay for!!!!!!!,review,3xLRUt8wYKwkqE68Inz3uA,0,0,0 +J-c25QK8xBqv1P-huUkoTQ,2012-07-04,-DkKPO2kj-6tobkQU3CU4A,5,"Do not bother going anywhere else. This is the place to go for laser. No contracts, easy to get appointments, very reasonable. The staff is fantastic, every one of them. I usually go to Kristen, but all others are as equally friendly and competent. Location is very convenient also. I have looked, and I have received many groupon and living social offers from other places, but I never bothered. This is the one.",review,_nKsyDUIdoTimDPM9aG23w,0,0,0 +3u7-xGwUKyGHkSexwBd9Wg,2011-03-06,ALs-zIMXcUrH50Y-CaSMYA,5,"I realize L&L is a chain, but I love their food. My favorites are the Loco Moco and the BBQ Chicken. I also enjoy their haupia-filled donuts. The family that runs this place is very friendly and do a great job in making sure you will enjoy your meal. Go there.",review,AZ8NDHmLWdZGzvMtZXzjkA,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2009-09-14,VH3eXyerwSofqISU5KqZzw,4,"This review is for the bar ONLY! + +First time I came in here it was packed to this gills, and no where to sit so we left.. Next! + +Second time I came here I met 2 of the strangest old women I've ever encountered who tried to reel me into a marketing scam, wouldn't shut up about how lovely I was and how both of them wanted me as their daughter, then performed Reiki on me and my friend, waving their hands all around us eyes closed and chanting.. in front of the everyone. I couldn't help but bust out in laughter. Bartender laughed too, then poured more bourbon in my glass and winked. + +I really liked this place aside from the geriatric nonsense. Great vibe & I loved the entrance, you walk right through the kitchen and can observe the chefs working their magic. The interior is dark and sexy, with some of the coolest wallpaper I've ever seen. + +I am hoping to write an update soon, because I desperately want to try the steak that I have heard so much about, but $60 for dinner is a little out of my budget, thanks to our economical crisis and being unemployed. *sigh*",review,v5k-__wHo2xPI25WO-dcQA,4,5,7 +UUssRgBCO_riWg3chbv9Zg,2012-04-28,BMJMZDdmWR8Qhf6J64XMeA,3,"Huge portions of delicious pulled pork, perfect coleslaw, ice cold drinks, plenty of TVs, and friendly staff make this a fun place you should try! Ohhhh yeah, be sure to use the Yelp check in deal for a free desert! We went with the Death by Chocolate! It is built for two and ohhh so delicious! + +However, I am only going with three stars due to limited BBQ meat selection compared to the others in town, limited cramped parking, and dirty paper menus.",review,n1KWJCpVeoTrzcN9iATfKA,0,1,0 +muCl5p-9ut1sY0aKeUeRhw,2009-09-26,TFOQStpfdozOP7Xy4y3nVA,4,"When one course of a meal is so significantly better than the rest of it, it's hard to write a balanced review. I went down to Cheuvront with a few friends for Restaurant Week. The place is tiny, very relaxed-hip looking, and right on Central Ave. While the place doesn't have any distinct look or theme going on, there was a movie with french subtitles playing on a screen next to the dining area so...I guess it's supposed to be French. They have wine and cheese too, so, yeah, probably French. + +So the meal didn't start out so great. The spinach salad came out to me on a dirty place. Sure, it's a restaurant. I know other people use the same plates and silverware I'm using, but things like that, especially when noticed, are off-putting. Unfortunately, the ahi tuna that followed was also overdone. Not in a bad way, and I almost didn't notice through the thick peppercorn crusting, but when it was pointed out, I was a little disappointed. + +That was when they pulled out dessert. + +I'm not a sweets person. I don't know that I've ever been. Give me spicy or savory 10 times out of 10 over any kind of sweet-tasting anything. Although my dentist might argue evidence to the contrary, I really just don't have a sweet tooth. That being said, I wanted to die and be entombed in the citrus flan that was put in front of me. I wanted to lick the plate clean and then go back to the kitchen and demand they fill my pockets, one with the smooth, creamy, more-like-custard-than-flan flan and the other with the wonderfully sweet and subtle citrus sauce they coated the dish with. I'd also probably ask for some of the figs and berries to be put in a doggie bag. + +I have never, in my entire life, enjoyed a dessert as much as this one. I would happily drive the 20-plus minutes downtown just to have this again. + +Before I forget or the keyboard shorts out from me drooling, the wine selection here is also amazing. I didn't take time to look at the whole thing, but I think most wine connoisseurs would be happy here. + +While it was a mixed bag, the place certainly deserves another trip. I can see (if I had a real life, not one that consisted solely of studying) sitting out on their patio, enjoying Phoenix, and making a dent in their wine and cheese stocks.",review,lczLjHO7zIhrmSlOXI3ohg,1,1,1 +mhQCxOiqp03qnhGRTtPduw,2011-03-24,mlg4QXm6F9RoRGqjHIRx3w,5,This is my favorite pho joint in all of Arizona. I have been to about 17 from flagstaff to mesa to central and Tucson! The owners are so welcoming and very proud of their business and it shows! The place is always clean and the bathrooms are immaculate! I always order pho Tai and water.. But I've had both their egg rolls and spring rolls both excellent! I love the broth! It's true pho broth.. It's not the beef bullion cubes other place use and you can defiantly taste the difference! The sprouts are the cleanest I have ever seen! I love this pho place ... try the greatest pho in Arizona!,review,FXbDtMtmR3zF50ljxeQueA,0,0,0 +8o-NLKy_XfbJtqljX9XLCA,2011-06-25,hveo5L8uwJPGQgr9pt56aw,5,"I have been visiting Mrs. White's going on 30 years, but after looking up the phone number this afternoon to verify if they were open and still had fried chicken, my wife started reading some of the reviews following a recent Food Network recommendation - I almost got cold feet. + +Good thing I didn't. The food is as awesome as ever. The service is much as it has always been. Be forewarned, trendy restaurant goers, who glom onto TV reviews, Mrs. White's is not trendy; there are no bubbly fresh blonde girls waiting to seat you. The service is matter of fact, no goofing around, you must get to the business of ordering and pretend you know what you are doing - this is the way it has always been at Mrs. White's. If you are looking for others to pamper you, this is not the place for that. Mrs. White's is where you go to pamper your indulgence for perfect soul food. If you want Scottsdale ambiance, again, this joint won't work for you. + +When you go, be prepared that not all dishes may be on the menu during your visit. There are no corporate owned semi-trailers that deliver two tons of food every other day. This is a small and very cramped operation that makes homemade food for those who know how to appreciate it. In these days of flash frozen prepared dishes that are uniform from visit to visit at chain restaurants, this food is made in a tiny hot kitchen. If they run out of your favorite dish that has been cooking for hours prior to your arrival, there is no way they can whip up another pot of green beans and potatoes in 20 minutes. + +I often call ahead to verify if they have what I want because years ago it was not uncommon that by 12:30 they would be out of half of everything on the menu, which was OK because if forced me to try new things Back then, Mrs. White's was open Monday through Friday from 11:00 till 3:00, but I'd swear you'd be lucky to get anything after 1:00 - and that was perfectly fine as you knew they were doing all they could with their limited space to do their best for us customers. I'd just come back on another day. + +To say I have the utmost respect for the White family would be an understatement, today I was afraid I might have to lose that based on those poor reviews below. I do not believe those reviews are an accurate representation of The Golden Rule Cafe. They are the distortions and disappointments of people who have skewed expectations. Funky little hole-in-the-wall family-run operations that attract a loyal customer base may not be the place for everyone, but if you understand that wonderful stuff doesn't always come wrapped in a sterile designer package, then you might get along with Mrs. White's. + +I love this place and hope I always will.",review,5cVACUA-5e1SYyQ_E2-9iw,2,6,1 +y3V2jqKmvWjyo9Mc-Ipn4g,2012-01-27,F9BTRx7yCar_sDVwoOx7NA,4,Pasand is under new ownership and the changes already seem good. I went there today expecting the same old stuff. What I got was some truely excellent tasting food. The food was leaps and bounds above the previous food. The spices were much more distinct and flavorful and especially fresh. In talking with the owners they were going to rennovate the run downinside and add some more buffet places. Overall I approve of what has been down to the place especially the food.,review,xH5ETGmT8IUaPjbwZmj-Ow,1,1,0 +UFfYVoK3RwDVo9eb70Fh9w,2007-10-19,C-reF7nMYNitSPknENhr-g,4,"Creamy, luscious, divine...just some of the words that barely describe the wonderfulness that is Ritter's frozen custard. + +Short of having real Italian gelato (never been to Italy yet, so I can't even begin to compare the schtuff we have here), this frozen custard beats everything this side of town. + +Mix-ins, schmixins. The custard's yummy with or without. It's more flavorful than teeth loosening sweet and they have over 65 to choose from...although they rotate around about 6 of them per day. + +It sure makes the moody blues go bye-bye with each spoonful. Okay, I'm being a little over-dramatic. But it really is good! + +Price is right, service is great, and it would take a long time before you became bored with the flavors. You could literally go every day and try something new. Bad for hips, good for the little kid in all of us.",review,1S7XdhbZWR17Wy4TBsIzaw,2,2,0 +IFKTsVSSguMjLBA9mo0x0Q,2012-01-05,bGC4jifhIjxZq8-YmwfS6A,4,"Some pretty decent mexican food, and quiet cheap as well. $5 for a burrito, though it's not as big as the $6/$7 burritos or taste as good as the ones in San Jose, CA, it was still good. if I was from here, I'd probably come here a lot.. maybe a little too much though. I tried an Arizona Burrito, which was potatoes, cheese, and steak burrito. Pretty good, though the potatoes seemed a little too hard, but it was whatever. Just tasty greasy food, my brother said it's the perfect hangover food, and they are open late so :).",review,VL3-X2kM2u2Z7dFo-FXVIA,0,0,0 +7Vqrh77SOYwZ3_AOK-TTiQ,2011-04-01,C7A-aZ0UsWaGgWXVUJfr5A,4,"Formerly Sandbar, this is a great new spot in Central Scottsdale to chill out after work. Good Mexican food, good strong drinks, and a massive outdoor patio with pleanty of drinking activities. They also have plenty of TVs to watch the big game. FYI - It gets slammed on weekend nights...",review,90a6z--_CUrl84aCzZyPsg,4,3,2 +IuAPYzf3NSyfyXYgT46YVA,2012-01-15,9eUoNQ9z1QnoDZbfl2-G5A,4,"Returned for another meal and the overall experience was excellent. Only negative was that the braised leak appetizer is now somewhat drenched in cheese.. Feels a bit ""pizza hut"".",review,XtzSu8tDs_XDVAhO_J1VDw,0,1,0 +Eeonj15SXvfR6kgvh8BOWw,2010-08-12,koqs0LrKatUyJz72pCJ1gQ,3,"I've probably passed by this place a thousand times without ever stopping in before today. As others have pointed out, it's small and intimate, but I liked the charming atmosphere. + +I ordered the Seasoned Grilled Chicken on Cibatta and a Desert Blossom Iced Tea (lavender, hibiscus, apricot and rosehips). The sandwich was well balanced and moist. It was served with iceberg, roma tomatoes and a side of their house fries, ""Kilo Fries."" The fries were seasoned with a cheese blend, which seemed a little dry to me. However, a quick swirl in olive oil improved them quite a bit. The tea was delicate and refreshing - a nice complement to my lunch selection. + +The service is what stood out for me here. My server was friendly and attentive throughout the meal, even though I was dining solo. I certainly felt that my business was valued here. She even offered me a to-go cup for my tea, which was a nice touch. + +I will definitely be back to explore more of their menu. Prices are reasonable too, which doesn't hurt!",review,VChMRGEsIC675BAjnzq4ZQ,0,0,0 +ncxBZxetREZ_jCma0c7mHA,2011-08-22,tzjPEhNgrDDmTm_UZkR1nQ,1,"I am DONE with Classic Car Spa, their sub-par car washes, and their shady business partnerships. + +Whatever you do, DO NOT get your windshield replaced by the Auto Glass Shop that Classic Car Spa allows on their premises. I am holding Classic Car Spa accountable for placing their customers in such close proximity to criminals. + +While these Auto Glass Shop men are friendly and seem helpful, it is a scam. They replaced my windshield (and hey, it cost me nothing b/c my insurance covers it) and put the glass in wrong THREE TIMES! After one week and many HOURS on the phone with them and my insurance company, they are still giving me the run around. So although it was free, I will now have to foot the bill for fixing their crappy craftsmanship. + +After trying in vain to get my windshield fixed by the Auto Glass Shop, I spoke with the manager of Classic Car Spa. I don't think I've ever met a manager with a more relaxed, ""who cares?"" attitude. That place is a joke. Except, I'm not laughing....",review,BQrTHuaYJx-_KslhWT4pVA,0,1,0 +zKFX8BVTWYZNa2vJ46UdmQ,2012-09-01,WK9m_30WJLrrBBtpXG7-1g,1,Don't waste your time...Arrowhead mall on the other side of town is so much better!,review,6670GGYK2G11s-D5JQbgzg,0,0,1 +aRkYtXfmEKYG-eTDf_qUsw,2012-11-08,tuvjALQppER6ij1F9yRTMw,1,"I can overcome the hipster sneer and accept that I am an uncool blemish in a world full of cut-off corduroys and patterned leggings. What I cannot and will not get over is an unapologetic staff whose epic error led to me breaking 5 years of meatless eating because of an order mishap. + +I ordered the red pepper tomato quiche. After 20 minutes waiting for the quiche to warm in what appeared to be a 200 degree oven, I double checked to make sure my name was on the plate at the counter. When I dug in for the first bite, a wave of nausea and panic washed over my after realizing this was a piece of the bacon spinach quiche. I returned to the counter and explained that I had ordered the vegetarian quiche, and the chic who took my order asked the chic behind the counter which one she served, because she was sure she got it right. The chic in the kitchen said she put them out in the order she got them. Then they spent some time looking around in confusion and murmuring a bit, meanwhile all the quiche had been sold. So the counter chic simply turned to me and send, ""well we don't have anymore of that one."" + +Thanks. I told her I was more upset about the fact that I had just put bacon in my mouth after 5 years of no meat than there being no more quiche. She did give me my money back, but no one apologized or offered me any recompense. I'm over you being cooler than me, but I'm not over you having no soul.",review,FHDI8M5sm6lrZXNUBZAOfA,3,9,3 +6v0vQm3wXzaFoEywvpbnqg,2012-06-14,-_MguNFy09v8GeFS5NDIbA,5,Best happy hour on this side of town. The bartenders are very friendly and service is always prompt. I've never had a bad drink or a bad meal here. I only go in if Jennifer is working though! The bar has plenty of TVs too.,review,aLTl_OkLo0BFRxdz1n6sYA,0,1,0 +vwZ15OkVO6PemAe87k0M-Q,2011-12-14,DeBT32JITXEey6oLIjVcfg,5,"I have been to Mabel's a few times now and I think it is a pretty stellar place. The food is awesome (try the chicken lollypops and the deviled eggs) and the drinks are strong. The ambiance is nice and cozy and I think it works well for a romantic dinner or a big group of friends. The staff has always been pleasant and accommodating and that goes a long way for me in Snottsdale. + +Last night I was wowed by Mabel's. We had a fundraiser for a great friend who has cancer and they not only let us throw it there FOR FREE, but generously offered to donate 20% of the bar tab to the cause. The service was great that night and they earned a fan for life. Thanks Mabel's, for being so cool, you're a breath of fresh air.",review,q9XgOylNsSbqZqF_SO3-OQ,3,4,2 +rvHy0q0Gnqxy3G87BNluaQ,2012-06-23,RG_Twuw-RM9Rj5KsL3BR6g,5,Great place for Italian food. Very family friendly. Mellow atmosphere with friendly and knowledgeable staff. Never had a bad meal. My favorite is Sirloin Marsala and you can choose any pasta they have to go with it at no charge. Recommend to anyone who enjoys quality Italian for a good price.,review,L56wgzkIBP5_zVPHQ9XQCA,0,1,0 +2bdKR3l4o-S1CscLqqnvVw,2012-09-24,jWOsUlUT5dJ9DFfKdYJ-jQ,1,"Hey Thai Elephant! Stop sucking! You used to be so good. Why is my egg roll cold? Why don't I get a fork with my food.... after asking!? Why won't you make me the Tiger on Fire for lunch when I got it last week for lunch?... AND it's on the menu! When did you decide to cut my curry portion in half almost? When did your service start sucking? Hey every person that decided that my two top was not important enough to attend! Why did it take 10 minutes to order my drink and then an additional ten minutes to actually get my drink? By the way, Tiger beer is on your menu. If you are not going to actually offer it, then you need to take it off your menu. I can't believe it's come to this... I used to love you. You broke my heart for the last time.",review,4GdN3itvzmFc_6kib2UzlA,0,0,0 +ZWbvjFC_qE21JUpGlAU0Cw,2011-09-08,HeojLizkqjubh7JCduMipg,5,"I never write these things. But I have to say that you will not be disappointed with Paletas Betty. Especially with the weather right now, it is a delicious and healthy treat, made with seasonal ingredients. I highly recommend the limón amarillo when in season. Delicious frozen lemondade/lemon drop on a stick, tossed in a sugar rub. It is for certain served in heaven. That is all. + +P.S. check out the hours, yo. You know what's up.",review,vuxnLRJLT7EjjwIwycDAoA,2,2,1 +C1tH3sEQra33EOTk56Eu1Q,2010-03-08,7IqWsRRug9CEF5Rohlr77A,4,"I adore Radio Milano. Tried to hit it up this last Thursday evening and found it to be closed. I was really depressed by this as I have had my eye on the deviled eggs and the beautiful bartender boy the last couple of times I've dined here. (neither of which I've been able to try yet...booooo!!) + +According to the valet guy across the street at Postino they are scheduled to re-open in early April. Apparently with somewhat more of a ""lounge like"" feel or some such nonsense. Works for me! I hope they keep the Tuna Crudo around which is just insanely good. Drown yourself in some chocolate pudding for desert, you won't regret it. Ahhhhh, now I'm hungry... don't worry about me, he was too pretty to be straight anyway.",review,y9IKf7VckFc-fesWuDwgxg,3,3,2 +gI4jThFNwy73SzaNvi-1dw,2012-03-28,qq2n7VzjTTxz1Y4v_Fnrhw,4,"Tried Ling & Louies for the first time, different than the traditional for sure. Service and food were both excellent. We tried the duck sliders,lucky lo mein rice, orange peel chicken & beef & broccoli.",review,O5z9K7JNEWWWF5AjBj6ahg,0,0,0 +h53YuCiIDfEFSJCQpk8v1g,2011-10-02,-5jtdmmE6PWZOzGRzO1j5w,4,"I had a chicken panini and was more than enough! It was dinner and lunch! + +They have this special bread that is like a big bun. The people is very friendly and patient to explain their different options. Nice place, and for sandwiches it was just good.",review,LqgGgWi3FLHBViX9tmZ9sw,0,2,0 +Zh_y9AmSfWZpR2JB9wye-A,2011-08-12,BsCsjuTf5JmxqdjLjarkzg,4,"Really cool, foodie restaurant in scottsdale. All the food was fresh and original. The service was quick and pleasant, and definitely a place to consider to eat. It's not the cheapest restaurant but worth the price. This place definitely belongs in Scottsdale as is more upscale and you could sense it from the decor and service.",review,BQ_WTijKUVgP2x5FzR-paQ,1,0,0 +UUssRgBCO_riWg3chbv9Zg,2011-09-07,Y_EU4hN4MMMg2HJucHfPCw,3,"Could have been 4 stars... + +I went here for the first time last Friday. + +It was busy, but they don't have that many tables and there were at least 4 waitresses on that I could see. Our services was sooooooo slllllllow. Like painfully slow. We waited a long time for refills, a long time for our food, a long time for the check to come. It was really annoying. Our waitress was nice, but slow. + +Onto the food! We got an order of wings and an order of the fried zucchini. The zucchini was really good but holy hell she should have warned us that it had JUST came out of the fryer that may have been heated by lava. I popped one of those bad boys in my mouth and immediately felt the skin on the roof of my mouth start to come off. Once the burning subsided I was good to go. I hear the wings were tasty, They were really big (I just don't eat wings) + +I ordered the fish and chips. So yummy! Our friend got the grilled chicken sandwich with a side of grilled asparagus. LOVE that they offer grilled veggies as a side! I snuck a couple asparagus and they were tasty. Hubs got the ribs, it was a huge pile of meat on a plate. He loved it! + +I will for sure go back, the food was really great, I will just know not to expect quick service.",review,6ts41fCsDKHbFZaKOMNmVQ,1,1,1 +co8rv2zfOhMXc_TlEI9VrA,2010-05-14,dCMbp2vkcHfS05tKrNOSMw,5,"I almost wish I hadn't discovered this place because it's so good! Ton's of flavors and every kind of topping you could want (even cake frosting) +So much better than MoJo and to top it off the staff couldn't have been nicer.",review,AVCBC2G5RjJM8tu_PebFPw,0,1,0 +6ie9xvy2WW1pn7RuBvGNhg,2010-09-08,twFUV4a-TFOem4JKIhMLTg,4,"Tasty Kabob is kind of a throw away name, but the service and food are excellent. The hummus is good, not the best I have ever had, but it is better than many places I have been to. The chicken kabob was excellent, I am not sure how they spice the chicken shwarma, but it is excellent. I had the gyro platter and that was also excellent. + +What I really do not understand is why Pita Jungle is so packed and this place is empty. The food is more authentic and frankly tastes better in my opinion. No more Pita Jungle for me. When I am in the area, I will go to Tasty Kabob.",review,99Jm9c6QZjvElZznML2Y8A,0,0,0 +EKzMHI1tip8rC1-ZAy64yg,2011-03-02,93OcCc6MfpuuMRIr15YFbA,4,"Loved the location at atmosphere of this place! Had a very nice business dinner here last night. We were able to sit outside thanks to the gorgeous weather, and I'd recommend this to anyone. The houses inside have their charm, but al fresco dining is great! + +We had a few drinks at the bar before we started dinner - they have a fairly nice wine by the glass list, as well as a nice stocked bar. Something for everyone! + +The menu contained lots of delicious choices, and it was hard to choose. Ended up going with Hapuku, which was a new-to-me fish from New Zealand, similar to grouper. It was delicious - tender, flaky, and the earthy vegetables with it were a nice complement. + +We had very polite service, though not well-timed. I like when plates are cleared all at once for people, instead of taking plates at the table away when others are eating. OR, bringing the bill before we've finished dessert. Both of these happened here.",review,u760qQnKAwRkRhq6Fn8yzA,1,2,0 +90AXjqb4O-wrTHDKDoDUzg,2011-08-28,4Jr7NZisSBxabb-lGLRadg,4,"Food and atmosphere, it's excellent for me. We ordered the chicken satay with peanut sauce, my husband is generally picky and only praises the American comfort foods but this time , he liked it a lot. We ordered red chicken curry and two thumbs up! I cant wait to dine in at that place again. Winner!",review,-q0RFaCkmT6TFxgk0a9dPw,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2010-05-18,XrCU7y6UPJ5Y1eITHaM8dg,5,"Gotta love Sweet Republic.... great philosophy and great icecream and sorbets. I've loved every single flavor I've had there (peanut butter, brownie swirl, mint chip, salted butter caramel, mayan chocolate, and more). Everything is made from all natural, fresh ingredients (virginia peanuts, fresh mint leaves, etc). + +When I really want to splurge I make my own sundae, you get to pick two flavors of icecream, a sauce, and a topping. + +If you haven't been to Sweet Republic, go! If you're far from Shea & 101, find them at First Fridays downtown, farmers markets, and more.",review,oy6fdscGSXY2gzRqF9pZxg,0,3,0 +nCeeguQS-MHQRifOpKzwUg,2008-09-06,6_ALmzg1PGrBG2fQ5Q2i2g,1,I took my family here and this was a disappointin experience. The service was snobby and rude. The waitress was condescending and the food was overprices. I have not been to the other Tomasos but I will clearly discourage anyone from dining at the Chandler Tomasos. The service is clearly substandard and snobby.,review,GkWuTgewni9bzPM4HUCO-g,0,0,0 +EfmR4e1tmjC5_ZQOgfnYrg,2011-12-16,qRyganQ35aKuDiAhtp9Dcg,3,"Food was good. + +I had the Choppino Fruittas de Mare. Apparently the serving is large as the server hinted that it may be too large for me, but the serving was typical for a Fruits de Mare type plate that I've had at other restaurants. Sauce was nice: spicy and good flavor. Pasta was cooked well and the right portion size, I think people add too much pasta to make the dish look larger. Other than the imitation crab (a disappointment but not a deal breaker) the seafood was cooked nicely between the calamari, mussels, etc. + +Kid's spaghetti was very good. I taste all the kid's spaghetti since I have 3 kids and invariably someone doesn't finish or even start their bowl. The pasta was cooked well, the meatball was decent, but the sauce was shick and chunky (not watery which I hate) and covered all the pasta (which for some reason other restaurants can't seem to do). There isn't a specific kid's menu but the server said they make kid's portion size of anything on the menu but the price isn't available to be seen so you have to trust they aren't going to bend you over on those, which they didn't. + +Bread, of course, was available prior to meals. The butter used is very tasty, some type of garlic I think. Bread was warm, soft, and not overcooked. + +Now I would have given 4 stars except for a few exceptions: the decor and slower service. + +Decor was dreadful, sorry. Old and dated. I think their target demographics is 50 years old or greater as the chairs, pictures, and everything inside screams 1970's. The chairs remind me of an old conference hall. The lighting is on the dark side. I guess if I was out on a date or with 4 retired couples, it would be a nicer decor, but with 8 adults and 5 kids it just doesn't fit quite right. + +Kid friendly not quite, but kid accomidating is more like it. Since the ambience is darker and softer volume on conversations, having loud and obnoxious kids is not the right place for them. + +Overall, the food is good, servers friendly but not the family friendly place I usually prefer.",review,7o6OfRHsmcv44R1CjAh8dQ,0,2,0 +B30hnkwVSxvtem09QLgHiw,2012-05-21,6TL4GU4a7p0MzsFT7eo4Ow,1,"False ads, do not stay there. Unless you don't mind a dirty, smelly, overrated hotel. The sheets and towels that were supposed to be white were gray. The place is run down and poorly serviced. The front lobby is clean but once you head up to your room you quickly find out that the place is run down and not being taken care of. I stayed on the fifth floor ""cabana suites"" and as soon as my elevator opened up on the fifth floor, I knew right away I stayed at the wrong place. The ""suites"" were nothing more than a room with a tiny bit of extra elbow space that are on the rooftop area with a pool in the front of the room. The pool was NASTY! (see pictures I uploaded) It was green and looked disgusting and when I arrived to take a look, it had an ""out of order"" sign placed at the entrance. This place was embarrassing! I had told my brothers to book there with me because we thought it was going to be a great hotel based on their website but we were very disappointed again!",review,Ee6n17uyTOYFH39jvWDVCA,1,2,0 +9AbyBqGWHYZC73GlyAuTrQ,2011-11-13,eSOmx01vY6hEgNdlRzw0FA,4,"FAN-FREAKIN' -TASTIC! + +Yes, it's a Great steakhouse... but they also have a Great wine selection... and Great bread to start... and Great desserts.... and Great service. + +Rich and Richie took exceptional care of us. They were attentive and fun to talk to... too. + +I had the Prime Rib and it was huge and perfectly prepared. I ended up taking the rest home and having it for lunch the next day and it was just as good the following day. :) + +The Bread to start came with 2 different flavored butters. You could easily fill up on bread before dinner.... so go easy on this as they will keep bringing out refills if you let them. + +The Dessert.... we got the Chocolate Lava Cake... and the cake part was good... but the sides that came with the cake... they were Amazing. The Chantilly Cream they serve on the side of the cake is freshly made and it's a Little Pillow of Heaven. Rich brought us more when we ate all the cream and still had cake left. And then they have a little homemade pistachio cookie with vanilla ice cream on the side too... these were great too... So, net, net... I wouldn't order the Chocolate Lava Cake for the cake part.... I'd order it for the things that come WITH the cake. :) + +Good for special occassions and if you are looking to have a lovely evening out.",review,IYJg3a-NTaymcYPOfRrcsg,0,1,0 +ytpmoIty7loFB8kRYRtJHw,2012-05-05,EQhoWEG-vLVnqKg4W843Cg,5,This was our first time at Texas BBQ House. They gave us a sample and help us with our order. The brisket was fantastic. I got the moist and my wife got the lean. We both enjoyed our choices immensely. I will definitely go back. I wanted some spicy BBQ sauce and apparently they have it but I didn't see it.,review,7x9oYPGJUnUic47GJ_ewbg,0,0,0 +MK7pf2TUDrd-ITXEYAAxOg,2012-12-06,fJrQuzN05m9L-3C4pgP11g,4,"Honestly I would normally go to a specific lady to get my nails done but she rides solo and my friend wanted to get her nails done with me at the same time. + +So I went where my friend goes and I was pleasantly surprised. Not to be snobby but I have done the strip mall walk in nail salon and usually walk out disappointed. I was expecting the absolute worst to be honest. + +The girl who worked on me NAILED IT! Pun totally intended. + +I got the gel because that is all they offer. I normally get Shellac but hey...I am a convert for now. I will let you know how the hold up over time. For now my nails are amazing. Not only do they look great but it was done in half the normal time. + +The reason I gave 4 stars and not 5. + +The place is a little on the not so new or super clean side. It's not dirty it's just not 5 stars. They also do not provide you with the nail oil my regular nail lady gives me to keep my nails hydrated. The only other thing is the lack of color selection for gels. If you are feeling like you need that electric blue, neon yellow or emerald green (color of 2013) then you are out of luck. + +All in all I will probably be going here from now on unless I want a more trendy color other than Red. Walk right in and walk right out with great nails and zero guilt on how much you just spent. :)",review,6rkICkKa9RlOMy-L8g05fw,0,0,0 +seg5LOqFqUXKqJz-thKIKA,2011-04-06,Yt5oPuoVoTp2wrzn8b5Emg,3,As much as you don't want to like Wally World...it is what it is...crazy!!,review,Kmtui6Q9md18Cqk7QHTBOA,0,0,0 +ZlvVCqFKTMK4rBkTQzVBpA,2012-07-19,59jvJf_z2UnmFTewTUBseg,2,"Disappointed. I'm from Jersey, everybody in my family raves about Jersey Mikes and they are all in Jersey. First off, I ordered the Italian sub that comes with the works (5 different meats) and is supposed to come with provolone. Got home to Buckeye to learn there was no provolone on my sandwich. That throws the taste of an Italian sub off, period. My second disappointment was the meat. The franchise contracts out to a provisioner to make all their cold cuts under the Jersey Mike's label, but the meat does not have the flavor of New Jersey's finest deli meats, Thumann's. Boar's Head doesn't come in close to Thumann's but I'll take Boar's Head when nothing else is available. Third place goes to Dietz and Watson. If Peter Cancro, the CEO of Mike's really cares, he'll get his meat elsewhere. + +The staff was very friendly, the restaurant was clean, there were blown up photos of the Pt. Pleasant side of the Manasquan Inlet and Jenk's pier with surfers heading out, a nice touch of back home, but that's the best I can say. The staff was so personable I don't regret leaving them a tip even though they forgot my cheese. I just wish I had a good reason to go back and see them again.",review,8D408fDn0twwIW6FZ42YWg,0,0,0 +b4hI0x_vgagZyF_D-OqCLA,2007-01-28,qri4f9_J7_C-W6zCYU3IiQ,3,"It's three stars because I don't know how to rate it -- I didn't think it was very good at all when I went the other night during their grand opening, but maybe I just don't have a taste for it. Service was prompt and polite. The food? Eh. I had one of the house specials. I didn't think it was very special. I do think the waiter deserves bonus points for talking me into a half order rather than a full order. The lemon-lime beverage was strong and sweet.",review,FLdun6KWwAh-gC8VHVZGCw,0,0,0 +Y2Lfzulh_D9nNcuH49UT4w,2008-10-02,VnXtKqjcxxVNwu_ngF5k_g,4,"Yummy!! +Went with my best friend last night for our weekly date and had a great meal! We enjoyed the sushi menu but everything looked quite delicious. I LOVED the welcoming sushi chefs and beautiful aquariums. Here is a rundown of the food... + +Edamame: solid...can't really screw that one up +Philly: Great distribution of cream cheese! I hate when sushi places over do it on the Philly... +California: Solid but could have been a bit creamer and with some spicy sauce +Some kind of Latino roll: Skip it...weird texture inside +Scallop roll: Yummm + +Great experience and so far maybe the best sushi I have come across in AZ. I will keep you posted",review,5RxpP2Woo7CpOGUmKgDyAw,1,3,0 +_FXql6eVhbM923RdCi94SA,2012-12-16,6m324Co38HyL-Fh3NjWr_Q,4,"Very good food! We ate some shrimp tacos and macaroni and cheese. They split our tacos up for us and didn't charge for it...the portions were great too! + +Our server was friendly as well. Would definitely return!",review,xFG4Ca2HHmbxDTkMlmHnjQ,1,1,1 +wEsor9I2DcyYoR3brlqIMw,2011-06-15,ohGv9HXmVxImPpfuQ24UHg,2,"I ALWAYS pay in cash at this Panda's. If it wasn't across the street from work, I wouldn't go here at all. + +Two separate times I have been double billed on my debit card for my lunch. I'm not saying it was intentional, but either way it is annoying to have to dispute a charge with your bank. + +Fair warning.",review,k6ZQA3DJ2EfZJMmadBlWNw,0,0,0 +j_MTYLfepzkYqdqHsfYwMg,2010-07-22,qcE6sfeP1hv2GJoI9FhKeg,2,"I planned to order chocolate truffles from Truffle Trolley for our wedding favors. We ordered the sample box to try them out. They came in about a week and they were packed on ice which was really nice. However, when we tried them, we just found them WAY too sweet! We didn't like them so we are looking for something else. Just make sure you try the chocolate before you buy to make sure you like it.",review,yBz5KP3YC7ryiAef6FXNVQ,0,1,0 +Ax11wyp-FudujeU9nejQbw,2009-12-16,MzhxJ5AmpG4czwk98SEMEw,4,"GREAT customer service! Bought a compromised food item and they assured me that this issue would be corrected immediately. + +Plus they insisted on comping me the BEST MEDJOOL dates I have ever ever tasted. I had been happy to pay $7 per pound for them because they are utterly superior when purchasing them before.",review,EXZrHtmzdtDHtH9MPNEhkw,1,0,0 +VGhMTZyqmGmM4Lrn9i6yuQ,2009-10-25,amf0jmbwOrCRQte4ev0miw,5,"My husband and I have been here twice in the last week for dinner...it is a bit pricey as other reviewers have said (around $20 for dinner entrees), but for vegetarian and organic food, what exactly do folks expect? You get what you pay for. We were happily surprised after reading the reviews...the food was amazing, the portions are huge and we had leftovers both times. (and p.s., we paid with a debit card both times and have had no trouble, despite the review about only paying cash.) + +Our first visit, we were greeted kindly and given a plate of fruit to munch on until we ordered. My husband ordered the mint tea and it was delish! For an appetizer, we had the sabzi...which is a huge plate of green herbs, homemade wheat nan, feta cheese, and walnuts. The herbs were FRESH and the nan was delicious...just the smell of it was enough to get us drooling! + +For entrees, we had the spinach herb stew and the vegetable stew with eggplant. I am currently pregnant and garlic is not something that's agreeing with me. I asked if the vegetable stew had garlic in it and the waiter said ""we can make it however you want...every dish is made when you order it""....what?? the dishes are made to order?? I haven't heard that at a lot of restaurants! After about 20 minutes, our stews arrived...steaming hot and smelling delicious. They were HEAVENLY! So many flavors and so fresh!! + +Our second time here, we had the dolmeh plate and Mast Va Mosear (a spinach dip)...both were ok...but I like the Sabzi better. The entrees we had were amazing...I had a special of the day (pomegranate walnut sauce over tofu, which was blissful to smell and eat) and hubby had the vegetarian sampler to get his falafel fix. + +Overall, if you are willing to pay a little more for a nice, organic foods dinner, go here and check it out. Everything will be fresh...everything will smell and taste delicious...and the restaurant's atmosphere is perfect for a relaxed, decadent evening.",review,raMSkwLdZ-kFea1fTY_-Ew,2,3,1 +dwUCKSSDh-gnmLWQ6nr8CA,2012-04-29,IpgWj3_uS5s5x2L8MUkOOA,4,Funny how progress sometimes catches you off guard! My local Fry's is going through a revamp and now I have no idea where anything is. It's just momentary inconvenience- I will find my bearings again and appreciate the improvements!,review,bvvLS4Vz5yFuNvGKBV3-1g,0,1,0 +n-iA7O3vKAgCMk3Caf2Syw,2012-02-27,RWNPDwgtNuPx-kwQFqhnBg,4,I have liked every sub I've had there with the exception of one. Pretty good odds!,review,Ejy4fKodyYROIU3fH6SGZA,0,0,0 +9lWwAw9u1IVlYKbGiVOTFg,2011-06-10,K1E4aftgIQ2gtsrVV4z10g,4,"This is by far one of the best subways I've ever been to! 9 times out of 10, you go into subway, order a sandwich, and the employees either do a poor job of making the sandwich or they skimp on ingredients bc their bosses are cheap bastards! This Subway has a fun, laid back manager, and cheerful employees that make a BOMB sandwich every time, thus restoring my faith in Subway! They are true sandwich artists!",review,vuUddBhwlrVijAAFvK5UTg,1,1,1 +ImVx220_Pcp2iB5uworODw,2009-09-25,SPmxZtNhj3XGD8zDh1CQ_g,3,"My wife and friends went for lunch the the other day and liked it so I thought I'd give it a try. Nice place, nice menu - good selections. I had the meatball hero lunch special. Good meatball hero (meatballs with marinara + extra for cheese to make it meatball parm) - it was good; too big for lunch - I would have been satisfied with half with a handful of chips and a deli pickle spear or peperocini on the side vs. just the hero sitting on the plate solo (hope the owner reads Yelp!). + +I'll go back and try something else. Good food, good location should do well. + +Who mounted all those nice TV's in there? Shaquille O'Neal? You get a neck ache looking up that high! + +PS - hey food runner, when you deliver a slice of pizza and it starts to slide off the plate don't use your bare hand to move the pizza - gross! You know you saw me watch you do that too!",review,7u3eL3IodZLq4a1ORGJmrQ,1,1,2 +fmuj7u1gflmEjW-h0v9bwg,2010-07-19,VehgopRJRc4LZ9UWWwQ_dg,1,"No, I simply cannot put in a good review for Miracle Mile. +A coworker recommended this place to me. Actually, two coworkers did. +However, upon inspection of my pie right before I was about to eat it, I noticed that there was mold in it. + +Yes, mold. + +Sorry Miracle Mile, your fries were bland and while your chicken tenders were decent, I can't forgive mold in a pie. I did take a picture of it so I will be adding it to this review as soon as I can. + +Who knows if I will get my 2.95 for moldy pie back. + +*ETA +MM has been notified and I am to receive a gift certificate for my 2.95. I was given the option of returning it but it's over a 40 min drive.",review,zing3W2AVxcHwmBHid-Fcg,1,2,3 +WNy1uzcmm_UHmTyR--o5IA,2010-02-24,rai0XuKom2GYz3qQ8lN9LA,5,"I went here for lunch a couple of weeks ago with my bosses. It was packed on a Friday - we sat at the bar and our cook was fantastic! We got to sit and chat with him while he worked away at the orders. I had the chicken pesto pasty and it was wonderful! the bread used is similar to a pastry dough type...but not as sweet. The pasty was so filling, I could barely finish it. + +My bosses have been there before and have always wanted to try the peanut butter and jelly pasty - so we all split it as dessert and it was so good. They put bananas in it and drizzle jelly over the whole pasty. It's definitely rich and gooey. + +I would totally go back here again and have told my friends about it too! Amazing place.",review,Q4c-HD4iycZGrAnNK6d0tw,1,1,0 +8x9Mzb7gX6SEHQIlSDpU8w,2010-12-01,5HA7xJgPQJjcAuaA9j_PSg,3,"Since I work @ a casino, I'm always checking out the others...Plus, I like to gamble!! + +This place is nice, but seemed to be lacking personality. It's new, so it's very clean, w/all new machines. The few employees I dealt with, seemed extremely bored, and a drink girl was nowhere to be found. Because this place is new, and @ the edge of the Phx. area, they don't have to try very hard, and I think it shows.",review,xhqlSHTBbMACpLN7jU1Nrg,1,1,2 +6apEKjkj5j1W1sS1dSwWyA,2008-08-08,DSH3Fr9H0E_k33VkNwzjlQ,5,"This is an adorable little gallery located in the middle of nowhere, Downtown Phoenix. My art teacher friend got fixated on bringing me here when she heard me complaining about Phoenix being chain hell (and thanks to her and Yelp, I don't believe that anymore). I think she chose wisely as I loved this little space. + +It was a nice place to stop and check out, and then of course we had lunch at the attached City Bakery. A perfect activity for a half-day of school! Hooray creativity and uniqueness!",review,0lxf4v5NuJ1U6Bk7SGAJ5w,2,2,2 +RIeWXLMHZQlYprYt1x2f1w,2012-11-19,emiRMDbPxivUMVctFJ4uCQ,1,"Food poisoning alert. There is no doubt in my mind that this incident was caused by the order of potato skins I was served at this un-fine dining establishment. First off, the cook looks like somebody off the street, at least wear an apron buddy. + Now we are watching the games there and it's about 30 minutes after I eat 4 fairly large skins which I dipped in sour cream and the rumbling in the stomach started. Five minutes later, I was depositing those skins in their tiny toilet and trying to hold on while the games ended. Lastly, another stop was needed on way home to drop off some more skins. This place is full of local drunks, but a good watering hole (yeah literally). Go here to drink and stay away from all food. Also, it was 8 bucks for one order of skins. Why do places charge the same price for apps as they do for sandwiches. It's another sign of a clueless place with poor food and hygiene. Bad choice.",review,DrWLhrK8WMZf7Jb-Oqc7ww,0,1,0 +8m08a9xJKmANwmeuR-0bPA,2011-09-07,k_irkIDyZ9_bDeE4J29u0g,4,"I went here last night with my wife to celebrate our 2 year wedding anniversary. We purposely arrived early to have a drink at their bar. There wasn't much of a selection on their happy hour drink menu so we just ordered our go-to drinks. Champagne for her and a martini for me. The hostess/waiter/waitress were very friendly and prompt. When we were ready for dinner we were brought to the main dining area and our bar tab was transferred without trouble. + +I made a reservation a few weeks prior and made a notation that it was our anniversary. Upon arrival at our table there was a card saying happy anniversary which was a nice touch. The table was smack in the middle of the dining room so my wife asked if we could move to another table. The host was very accommodating and gave us a better table. + +The place is pretty sheik to the eye but uncomfortable. The 2-top tables are small, too close to other people, and I don't want to sound like a 90 year old, but the chairs are ridiculously uncomfortable. I don't know about you but I like to eat my too expensive meal in utter comfort. The noise level is also above where it should be but they were playing some pretty solid tunes throughout the night. + +Our waitress was excellent and knowledgeable but was taking care of way too many tables which made her unable to come around as often as I would have liked. I especially liked our sommelier who gave us an awesome wine recommendation. Also, I'm not sure if this is all the time or not, but all bottles under $300 were 1/2 price so we splurged on a more expensive bottle than we would have normally purchased. + +The Food: + +* Fries - they give these to you instead of bread. They are excellent especially the truffle ones. My only issue is that you could tell they were sitting out for a half hour before being served to us. I would have liked them fresh but whatever. +* Wedge Salad - just ok. The blue cheese and bacon were great though. It just wasn't the typical steak joint wedge I am used to and was looking forward to. +* Burrata Cheese - this was very unique to me and pretty good +* Truffled Mac n' Cheese - not the best I've ever had but still pretty good. Not as thick and cheesy as I would have liked and they use weird noodles. +* Wagyu Beef Trio - My wife and I shared this. Perfect amount for the both of us to share. Each 4oz piece of steak was perfectly cooked, juicy and delicious. I still can't tell the difference between regular beef and wagyu though. The sides were also very good. We especially liked the mushrooms. The mashed potatoes were too creamy and just eh. +* Beignets - we shared these for desert and they are fluffy, sugary awesomeness. The sauces are equally awesome. + +All-in-all it was a fantastic meal and great experience. Good food, good wine, good company. I would come back any time to enjoy a steak or one of their burgers.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,3,1 +NSuT83Bl4LWtMP5nMfzHFw,2012-02-09,vttXONTHncmzMcdBj9hZlA,5,"Very very nice family owned bookstore that allows you to trade in your books and buy other books for half price. The owners have also recommended many books/authors to my family over the years. + +I came in today still seeking a book that I have gone to numerous libraries looking for. I found a copy on the shelf that was much bigger than an ordinary paperback. I asked if they might have any additional copies. The owner was so nice and went in the back room not once but twice to find me the book and it's sequel. I was so thrilled to have found the books! + +I believe that almost every year they have a book clearance where they sell off many books for only $1. I won't be in town for it but if anyone is, I recommend checking it out!",review,cKEkbRkYcYtWymUF8Zxolw,0,0,0 +-h-q6zTIdPlkz9BDP11sBg,2012-10-09,rGFVSbE73Q4hPuGNVmqMUA,4,"Our second experience here was much better. We knew to stay away from the traditional fattier foods and stuck with healthier options. We had: + - Mussels appetizer + - Stuffed mushrooms appetizer + - Chicken flatbread + - Salmon + - Scallops + +Everything had quite a bit of flavor and was prepared well. We would return again!",review,xFG4Ca2HHmbxDTkMlmHnjQ,0,0,0 +fRtuc2k17r6aZMJWEMcXFQ,2011-06-20,14Sm7WUBIdqEhyNlFp3fTQ,4,"I had not been to this location since they remodeled the inside it's really clean and nice... Friendly staff I was impressed. I ordered the chicken finger basket it comes with fries and two pieces of toast... For the sauces I went with the honey mustard and the gravy... I rate the food as followed. +Chicken Fingers - B +Fries - B +Toast - D +Gravy - B +Honey Mustard - B +I will be back again for lunch plus I really wanted a blizzard.",review,LXWAXIeYFIdgd2JVPF-9qA,1,1,0 +qB-qsaSnhbHCt18_AN4Quw,2012-06-20,ZMl-Z7yrsiN9BmKDy-fBNg,5,"OK, so this is how much I love this product. I first tasted Lee's at a Yelp Elite event and waited and dreamed a whole year to eat it again. When I was invited to the next year's Elite Pleydate it was the topic of the first question out of my mouth. ""Is Lee's gonna be there?"" ( Ok, maybe the whole French restaurant's Bone Marrow gravy came to mind too, but I digress) When I made it inside to Pleydate I literally ran to that booth having desert before dinner. I am all about the alcohol infused ice cream now. The funny thing about that is I am not even a big ice cream lover. I will have to visit the shop soon.",review,tBvrnSCLSpUdCDm5w5GPkg,1,0,0 +i0d1RvC0RcjT53S-2GZsgw,2011-09-18,YbMpfJnxo7fMrF9q47XuWw,5,"If you are a big tea drinker like myself then you must check this place out! They offer a HUGE variety of loose teas from all around the world. They have herbal, rooibos, green, black, and white teas. The selection is phenomenal and there is some loose teas here for every type of tea drinker out there. They also offer high quality tea accessories that are beautiful like the teapots and tea mugs which are very classy and not overly expensive. Great place for those looking to pick up a unique gift for a tea lover or for the tea lovers like myself it is like stepping into tea HEAVEN. The owner is also very nice and offers good advice if you are looking for a particular taste or type of tea since there are at least 50-60 loose teas to choose from. Hear my teapot whistling......gotta go!",review,Hb49IsEZltm85wLz3uMrmw,0,0,0 +6cy2C9aBXUwkrh4bY1DApw,2012-07-17,uik4l22IUnNUyCK9f6SZIQ,5,"I go to Regio's a lot; today I went and want to reiterate how great I think it is. I have been going there for a couple years - have never been disappointed in anything I've ordered. Their beans are delicious, as is their menudo (only on Saturday and Sunday, unfortunately), and eveything else: tacos, burritos, enchiladas, chile rellenos, etc, etc, etc. is great. It is so inexpensive it's hard to believe. Today my bff and I had 5 tacos and an order of beans (between us) and it was $10. HELLO! We had the mini-tacos, but we were stuffed and left there saying how wonderful it was and how full we were. + Check it out next time you're in the mood for some awesome, authentic Mexican food. You will be glad you did. Yummy.",review,qdEXAYozQKtDeleky9NacA,0,1,0 +_4_84uCAFDI2VHHEQz5f2g,2011-09-07,Ocn5WymC5o0Gajwnll1FGA,5,"Every time I head to ABC cake supply I see this wonderful store on the way. I often say, ""I need to stop there."" Today I did. It is a wonderful ecclectic store filled with unique items. From baby, wedding, kitchen and on! I picked up some of their mini cupcake stands! LOVE!!!",review,04bgNBaA08GfHUndweJZSA,1,1,0 +VsO_rhXi5lgbaGxNwoEZsQ,2008-04-09,WAJrBZL6RPM4JUVhCA5SJw,4,"I think Fate is delicious and great! I love the remodeled house the restaurant is in....super cute! Fate's crab puffs are simply amazing,filled with cream cheese and crab goodness! The hong kong flat rice noodles are scrumptious! The sauce on the flat rice noodles is SO flavorful, I could eat them all day! I don't get all of the bad reviews on Fate. I think those people are simply crazy!",review,9tVLD8PjH7Wwn_EAmCHzWA,0,1,0 +X3icXUyW9vS4UXY6V_MR4w,2011-04-24,2zCYD1tuTkHvwlUS9QDk2A,3,"I only go here when my little cousin is in town and he adores this place. My cousin is 4 years old and obsessed with trains so he loves the small train display, the stationary trains you can walk through and the little train that goes around the park that you can ride on. A definite place to go with little kids especially if they like the trains.",review,8eH7olqrxizIdscDZvE-Nw,0,0,0 +onto4zpPMd1fIfNLxzZcZA,2011-12-14,zHWnS1D62pvrVMBViq1ZLg,3,"I moved in here a few ago and I do like it for the most part. The grounds are kept clean and tidy, except for some irresponsible pet owners. Some of them even let their pets run around leash-less or cannot control them. But that is not the management's issue. + +Pros: +1. The apts are spacious, well-built. +2. Grounds are clean and grass is maintained. +3. Pool is well-maintained. +4. Online system for rent pay and maintenance tickets is great. +5. Price is great for the value. + +Cons: +1. Apts not sound-proof or heat-proof. +2. Sprinklers tend to sprinkle more water over the sidewalks than the grass area. +3. Covered parking is extra $$$ and not enough of them anyways. +4. Uncovered spots are all just crowded in the parking lot at the back. +5. Security gates are open most of the time from the front and have gaps that could let an adult through on the sides. +6. Outer compound Walls are not high enough to actually prevent/make it difficult for an intruder. +7. Fitness center is adequate at best. Most of the free weights and equipment (except the machines) are broken or missing. The machines work ok, but are not maintained well. +8. Leasing office employees could use a bit more smile and inter-personal skills.",review,ZREYKjErXkcoeqUw6gRQtw,0,5,0 +-PA_1J9JzxLcluTOw2gZjw,2012-04-27,MNjiCQavIbMZpuBGSbGp9Q,1,Not worth the money. Food was average and the portion was small for the price I paid.,review,mCE9nD2NnYrokWMMMDoEdw,0,1,0 +bRk44ShCT0osos-1xaTRyA,2008-09-21,eYtmkXM7xLwb0w-OpAqIIQ,5,"I love me some Dobson Ranch. As far as municipals in the Valley are concerned, this is as good as it gets (Aguila is a close second). No overbearing marshalls. Rates that top out at $28 in the winter. Above average range and practice area, including two large putting greens. Cheap pitchers of beer. A long-time cart lady who will spray your face with water in the summer! + +As far as the course itself, this is not typical AZ golf - there are no cacti, only tree-lined fairways and some water sprinkled throughout to pose as threats. But there are birdies to be had, and lots of them; #1, 3, 5, 7, 10, 13, 15 and 18 are the best chances in my experience (I consider this my home course). The greens are usually pretty moderate speed to slow - this is grainy bermuda, not some hybrid or bent grass, so prepare to run the putts into the back of the hole. #5 is my favorite hole, a short-par 5 that gives you the chance to hit over a tree left and drive the narrow fairway, leaving you a long to mid-iron into an elevated green that slopes toward you. #8 is a formidable challenge if you have the tendency to block (or slice, as may be the case) the ball from time-to-time, as your ball will face a watery grave. #16 is a tricky tree-lined hole with a tight driving area and doglegs right. And finally, #18, a short par 5 that is easily reachable and where a par feels like a bogey. A scant 6600 yds from the blue tees (but rarely plays it's full length), there are some low scores out there. + +A great course, value, practice area, and recently renovated restaurant and bar - 5 stars.",review,dQO0tQISZyb9L4d5ASnXyQ,0,1,0 +roTWGaU-RcJ06l8cjFw7xQ,2007-11-27,KpnYRPGPVAAh3tl8NUuGHg,2,"I don't know why i have been here more than once, but the parking is horrible, and the food is only so-so. lots of color and flare but not much going for it. the baja sauce is great but i seem to get sick later that evening when i eat it. i need to learn from experience",review,GAW_mbLDbIoZQ0V0ZhWK8Q,0,0,0 +V2isTBBfO0NgLzXO9oq1Mg,2007-08-13,pehsPum9iW6DVyWil6WhFQ,5,"Mouth watering. That's all I have to say. + +The food at this place is seriously amazing. Everything we tasted was better than the dish before it, and we had a fabulous bottle of white wine to accompany our meal. The scallops were a highlight, as was the potato pie dish (that's not a very technical name for what it was, but that's my best effort). It was all very, very good, and the only thing keeping us from returning is the cost! We genuinely enjoyed our evening here, and we will absolutely go back, but it is pricey, especially for the size of the dishes. + +The atmosphere and ambiance are so fun, and this place is a little dressier and trendier than some other places we've been in Scottsdale. I highly recommend this for a night out with friends, or a cool date night. It seemed as though reservations would be a good idea, although we didn't have them and were okay (it was busy, though).",review,9FbgqZ5u9WTLAs28nNafIQ,1,0,0 +WUZxVr_CaRqEQgzvyeK5tw,2012-03-25,1v3rPVXx6RDWjgIUTfVLpw,5,"IKEA is so much fun. It's a little bit of a walk up and down the store but with all the different items on display there is time to sit and relax on the chairs, couches, beds. I love walking around the store looking a new ideas for my own home. They have very good prices on all household items. When shopping for accessories for the house I highly recommend going to IKEA because you are bound to find something. Simple things such as Tupperware, trash cans, bathroom accessories can all be found at a really good price.",review,WxO2x4xGbHfeWfU_MbuzTQ,0,2,0 +vfLog2bLJGl6hAFtGtr0GQ,2012-10-30,bmsk5foqmcBgQ_pylNDpCw,4,"Great atmosphere with interesting lights (look like white jellyfish). Got a Chicken piccata which was delicious. TVs were conveniently placed so we were able to watch the World Series Games. Overall, a fun place to catch up with friends.",review,3ltazFFclBfchSYlctX6iA,0,0,0 +rhOC6FyEpPuZxm563uwLzQ,2011-04-08,JxEbBeCjFkREw_AkQ_5kLw,4,"Service was great, Food was excellent...the down side was the tables were dirty! The place only had one table in use when we arrived!",review,r9_tXmlmmm1OTtEzezcnRQ,0,1,0 +GNZuoHxehd_3Kej7eXj8iQ,2012-09-01,7w6OeliWC3n3EvBEYwegBA,2,"Not bad, but not great. Service was really friendly, and prompt. Food was ""meh"", maybe I just ordered the wrong thing.",review,WxqpkFekB8Zd9psbJ5GqAQ,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2010-05-08,mqtQLXrVkEbiGvc9xCxlrg,4,This is probably one of my favorite spots in Oldtown. I definitely enjoy the the Thai food here and plus the atmosphere is really chill and homey. Service was never a problem here every time I go. My favorite is the Basil Crispy CK....so simple to make but I love it. Date place? Sure why not :),review,XqMkm-DD9VsdcKx2YVGhSA,0,0,0 +bSFuJDDTj6BeKypgBNFBGg,2010-05-18,YjKssTLX9NCT-5gwV5Pwmg,4,"Friendly, knowlegeable, GREAT coffee, cute place where you can everything from meetings to weddings, take a yoga class, and meet great people on Monday nights for Leashes and Lattes!",review,4-Nju_626eCGQRDmodHUug,0,0,0 +MXOdsPTLQPsQK9hUq01DWg,2011-12-09,mErm3BC2S2I-dCjS6vSu3Q,3,Great for Saints and LSU games.,review,gIEyHQJeyBQ8IhYusvTIGg,0,1,0 +8SgxmzOgLUCnkuVMs2NOrQ,2011-03-07,AEnFHfL0xiyAW6m4l3bIZg,4,"I was impressed with their menu and drink selection. 3 different sized cups, all kinds of flavors. They also have these ""bowls"" which look so enticing! Consists of fruit, granola, acai, honey etc. they have a few different kinds but they look so good for being healthy for ypu :). Honestly, i think they have maybe more to offer than Jamba does. I had the Pina-cool-ada, and i feel in love with it. They break down the calories of each drink depending which size cup you get also. I'm all about information at my fingertips and they had everything I needed/wanted to know laid out nicely. You get a free boost as well.. fat burner, energy etc. They also serve different kinds of pretzels as well. + +It was my first visit here so forgive me because i know i am leaving some things off...but this goes to show you the menu is extensive cause I damn sure cannot remember all of it. + +Next time you're in the mood to get your juice on.. Check out Juice it up... see if it titillates your senses as it did mine. :0",review,AeucYo8J-rZjcq09Wuqsjw,2,2,2 +giyl3pyGo6sbvsnn94f4Hg,2012-10-19,1EesW6BrZb1sLDO-XIlplA,3,"Came for dinner with a friend with the $2 off coupon. The service was attentive, friendly, and overall excellent. The english conversation is less than stellar but the fact they took off $2 from both of our meals more than makes up for it. Still a little pricey for two gals with small appetites but not bad. Pani poori, naan, mango lassi, hot chai tea, tikka masala, paneer makani, lamb curry, and many other options available. I would avoid the gross spaghetti noodle option and awkward as it sounds mango flavored other fruit custard. Overall a good experience. My favorite part is that the separators still have bears from when it was a black bear diner!",review,nYfpquFWxQC342RenTI3rA,0,1,0 +UI5ghIUeHYxzwSfaDVUXOA,2011-07-19,bRXiWxnT46VElE8A3mDNSg,4,"Went to Aiello's for my b-day and really enjoyed the food and service. Everyone was extremely nice and we even got to play their ""bingo"" game for a free dinner (we didn't win). + +I had the breaded chicken with marinara sauce which was HUGE! Portions at this place are insane, I don't think that I even ate half. The fillet Mignon is heaven in your mouth, it was butterflied and topped with mushrooms ( a little too much mushrooms though). + +Overall, this is a great place to dine at, small little romantic place with good music also. A little pricey, but I believe it's worth it for the atmosphere, food, and friendly service. :)",review,Xz1w0h7wDI22IZKi-CnrHA,0,0,0 +_ZP5cN3wMmHlOEgP-yH9Gg,2008-07-09,r9SHp4FJzcpob1XBe_YZww,4,"Run by the Mormons, they keep it really well stocked and organized. I got a couple of cool chairs there, a pair of fake leather cowboy boots, 3 belted pencil skirts, 4 or 5 pairs of chunky 80's earrings, a man's plaid shirt that fits me perfectly, countless other things. It is a thrift store, so there are the usual things that would take away from the experience, but the prices are reasonable and not fixed by item, like Goodwill. I've seen some really nice living room couches, sets, even, but never had a need. At one point, they had 40 or 50 framed prints of the same 5 paintings, one is a Van Gogh floral still life with a green background. I'd never seen it, my mom picked one up, though. + +I am a masochist, so I love to peruse the ""As-Is"" and the yard where they keep a lot of bigger, crappier stuff.",review,sfKMl7ERKuwxIh3HLXUg-Q,1,1,1 +e8FMAuTswDueAlLsNyLhcA,2010-08-08,oAsNmwLYYaL0i6zaXkK2_Q,4,"Well this is truly a hidden gem in Old Town Scottsdale. The wife and I visited this establishment last Sunday after church. There is usually a long wait here...but we arrived about 10 am and there was no wait. We were seated very quickly and the service was very good...there was a little wait for our food but no complaints about that though. I had 2 great buttermilk pancakes, turkey sausage, eggs, potatoes, and hash...the price....only 9 bucks plus tax...a really great deal. So if your ever in Old Town Scottsdale and need a great breakfast to get your day started...visit this establishment. Eat, Drink, and Be Merry my Friends!!!!!",review,ky9pQ8AKufvZ63IxR41jGg,2,3,0 +NBwPgX7L2D-EZedgo3A-pw,2012-12-10,zPwtgoxIwCQNGXKIIqlKeQ,5,"This review is for Gil's catering - which is fantastic. + +Our perfect event for a new product launch needed to be casual, but tasty and high quality. Gil's was all of these things. The food presentation is pretty without pretension. Everything was fantastic. Best of all, Gil worked with us to plan an event within our budget. + +Fare is traditional with a tasty twist - our group loved the chimis, taquitos, enchiladas and especially the chips. + +We expected 2 servers and 4 showed up - including Gil. They over delivered in every sense.",review,HQ5ocr3bT7TrZe8MT3DDSA,0,0,0 +3OauvrqUU8nDLWcW6q9hGQ,2011-07-21,tgkwWhT0dwlwx4S1MiuEIA,5,Enjoyed the egg rolls. So glad that they were made out of fried rice paper because I have food allergies. The entree of BBQ beef with rice noodles was also very good. I will be going back this weekend with the hubby for sure. Very clean and nicely decorated restaurant. Very nice waitress. The restaurant smelled really good too: spices maybe? A bit warmer than I would like inside. Maybe they need to turn up the A/C.,review,n4Y05XFlXMWVi7xiY62jfg,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2012-12-09,fE2PDQ6wbT3M1ICH3-vmSw,5,"My wife and I celebrated our anniversary here for the first time. I have nothing but good things to say. Food, wait staff and overall experience were excellent. This is an old school type of steakhouse with red velvet wallpaper, leather booths, etc. If you haven't been, I can't recommend it highly enough. Give it a try and you'll be glad you did!",review,pQ6ij6cOBRB3yJGHbVZHUQ,1,1,1 +OPKUjv6D5G46Lh2BHP20fA,2012-03-16,3jJ1SkAoPXmfXniRA6LzUw,4,We stopped here on our way back from Wildlife World Zoo after seeing they changed the restaurant there and it doesn't have very good reviews. This was a great alternative. Plenty of food and a nice variety. I enjoyed it.,review,Qz_WQ6blpBBSaEwsofbB_w,0,0,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-09-18,hew9a4Gi3x06fHnMXtKxjQ,3,"I live in downtown Phoenix; Boyfriend lives in Tempe. After two years of getting our date on at places like Postino's, St. Francis, the Rokerij, Dick's Hideaway, and Padre's, we decided we needed a Tempe date place. Friday night we decided to check out La Bocca. + +In short. it's okay. Nice environment, good service, pretty good pizza, and great ice cream flight for dessert. But this is tempered with over priced wine (almost $20 for two glasses of HOUSE wine?), small pieces of bruschetta (tasty - scratch that - REALLY tasty, but the slices are teeny tiny), and it's on Mill, so most of the other patrons are frat guys trying to impress sorority sisters, and if you're lucky, you'll get to see a couple of Greeks making out. Yum? There was a table of older people tucked into a corner who didn't seem to mind the age gap, but in my late-20s, I was not very much amused. + +The good service, cool atmosphere, tasty bruschetta choices, and creative, thin crust pizza get this place three stars. The over priced wine and bruschetta (seriously, we usually get bruschetta at Postino's for the same price for 4 people, and then I am too full to order dinner, but at La Bocca I was ready for round two after my half of the plate), and the fact that it's on Mill keeps it from 5 stars. We both really wanted to like this place, but I think next time we want to get dressed up and go out on the East side, we'll try somewhere else. In the meantime, we'll stick to downtown.",review,k9cMboDc6uqa-6BggMxxaA,0,1,0 +YEQkTCmphjr6XKPh4m93AQ,2011-03-11,Udhg5DaC_2CLRYbnRhPnZw,4,"I've been coming to this place since college, and I can tell you its definitely one of those ""an oldie but a goodie"". So, its not a fancy schmancy place with hip party music playing and it doesn't serve mixed drinks with cute names like ""hello kitty"", but it should be a staple to anyone's lunch place repertoire. + +They serve bento boxes (basically a lunch box with rice, your choice of entree, salad and slices of oranges--a healthy dessert!) for $3.75. If you're feeling like a high roller, you can order the sashimi bento box, and that will set you back a whopping $6. + +Who says you can't eat good for cheap?",review,zG7NW5vCKJZRcBR95qEuMw,2,1,0 +Y-9dJvw-J2d9QKfuL7mKgA,2008-12-16,Q0bdZy0Dq6n-lzqDfpe6-w,2,Good place to go if you're hungry and don't want to cook breakfast. Not great due to the fact that most of their food is straight from the freezer to the frying pan and just so-so. Small portions of bland food. Great people and great service. Just altogether blah food.,review,pDSMS-IW5wyZK0XBi4jnDw,0,1,0 +jMqcipWlVtodzRFM3snKcg,2012-02-20,dxZf5rDCEDqgKSztAznYfg,5,"We came here the weekend of the Grand Opening. I will say we were very impressed and there was so much to choose from at this new and improved Pets Mart. There is a Hotel here for Cats and Dogs. There is a Banner Pet hospital, and there is a Grooming station ,as well as a Dog training store as well. Talk about your one stop shopping. I even got to hold a beautiful baby girl Pug just 6 weeks old. She was absolutly adorable. We took a picture but have not figured out how to download it yet. Nice and Clean all throughout the store . We purchased a few items and then we were on our way. Lots of Parking in the lot. Plus nice clean human bathrooms.",review,kffxYQVQsEpF1DVlQlcGCg,1,0,0 +T4ox3wUzFjWvyrjaTRoBbA,2011-04-01,Y5YaED054tq-jA2iQDIrMg,5,A great family owned restaurant! Their lunch specials are very reasonable. I recommend this place to anyone looking for good Japanese food. My only request is that they open a restaurant closer to Tempe - I would go so much more often.,review,QqAL6vvUE_lJbAFSucWysA,0,0,0 +EGiGWZp_zSqdeftiFQ7MbA,2011-08-21,ZAmRRDcDyioeAhqHx7f_Pg,4,"When I called to place an order last night I was put on hold briefly, however, this time my call was actually answered!!!! When I walked in, the one girl at the desk seemed somewhat awake!!! Keep up the good work Cantina Laredo! + +My queso and guac were delicious!!!",review,3uR5YTXgW4hatuFnaNxSGg,0,0,0 +2qbajPD8M7PJlWWaHSRR5Q,2008-11-19,WxVChik_0ZMOceJWxukG6w,1,"Glad this place has new ownership... I should probably remove the review below, Its really harsh and doesn't apply to the NEW establishment. You have been warned ;) +---------------------------------------------------------------------------------------------------------- + +Short Review: + +THIS PLACE SUCKS BALLS + +Long Review: +We were supposed to meet a friend here at Draft House on Saturday night. We were excited to be out on a date-like experience cuz its been a while. We went to my in-laws for dinner and then headed to Draft... I knew it was going to be interesting from the sound of the music as we pulled into the strip mall. + +The music: Good music, probably the only good thing about this place - if you're a hip-hop fan. All hip-hop, all night. + +The crowd: Ghetto fab all the way! Seems like everyone there is late 20's - early 30's (and some older sprinkled throughout the crowd) and none realize its not 1996 anymore. Expect to hear a lot of fake accents a la Da Bronx and a lot of misuse of slang terms. It was entertaining until it became annoying. Oh and people WILL steal your seats or tell you they are saved - ugh! + +The atmosphere: small, crowded... Small dance floor. A couple pool tables, but don't expect to get one. Some TVs playing various sports, which I guess qualifies this place as a ""sports cafe""?? + +The service: OMG, we had one beer each and the ""line"" was retarded, over 30 minutes to tab out. No line in sight, just people crowding together, trying to get to the front of the line. Oh! and LOL.. the bar tenders are total morons, one of them complained to the guy next to us about his crappy tip and the other argued with his customer about whether they ordered rum and cokes or redbull and vodka. The guy had already made the rum and cokes and was pissed that HE got it wrong. Weirdos! + +If any of this appeals to you this is your place! + +BTW her friend didn't show and we ended up going to Skip n Jan's to play some pool :o) We had a great time there :o)",review,VBKbZD9X4zruXYORIhJhhg,3,6,4 +LMG0zsAkUSscIvmV9vvm3A,2010-12-21,2_aftEi4GMt_tsKIQwheCw,5,"My work got some Christmas allowance and instead of doing a dinner we decided to get a really nice lunch for our branch. We decided on Oregano's cause it was on the way. + +I had the stuffed Italian sandwich and it blew my mind. I couldn't believe how bug this sandwich was, it provided me with two wonderful lunches. + +It looks like some of my coworkers got the sausage sandwich and the steak sandwich and one person got a pasta dish and couldn't even eat a quarter of it because they gave so much. + +After that experience I am going to make more of an effort to get to the restaurant instead of getting it to go.",review,Mex8qXT7nR89uTKX_qtgSA,0,0,0 +GzVGqT454Ld3I1yrDmz5vA,2012-08-05,gCojMOY9-heb9eLIg3owcA,3,"Do to have that ONE review you just keep putting off and dont care to write it? Thats the post office for me. You get what you get, and you get it here. It's like a review of a place that no matter what any of us write, it'll never change. + +One thing I'd LOVE to see, especially once the Snow Birds return... A speed line. Just a basic line for basic transactions. I always use the automatic machines as often as I can, but it always seems the times I have to wait in line, it's always out the door and takes forever. + +Stick to mornings and late afternoons. Skip on weekends!",review,BWo7K_QGZCO2PG1osiwRuQ,4,5,3 +Kau5iJl6VR-TJ20YGrL7MQ,2009-02-07,tB1RGzfF-wpGSA_6pXH88A,2,"I needed an oil change reeeeaaaally badly (i know, but i have a honda and those things can run on gas fumes for 30 miles and oil resin for months) and had had an OK experience at the danny's family on HIghland (free wash with a oil change, who doesn't love that?) + +But. I checked the Danny's site and saw no promotion of the wash and didn't want to drive out of my way for nothing. i checked yelp and this Jiffy Lube had the best rating i could expect for an oil change place and was up the road from work. Downloaded the coupon (thanks for the tip, Kym) and was on my way. + +Pull in and i tell the guy i want the ""Signature"" change which includes window wash and floor vacuum, mentioning my $5 off coupon. He said that they were already running a special that was $13 off the $35 price so i said a-ok, cowboy. + +i wait for about 8-10 minutes in the small waiting room (bonus for having a Phoenix Magazine in the stack of Muscle Car Monthly, Oil Today and Antennas Weekly - look, just because i'm getting routine maintenance on my car does not mean i'm INTO cars). + +I get pulled into the garage area for the ""spiel"" everybody dreads but it was surprisingly short and non-pushy. (i'm glad they don't drag you over to your engine anymore, that's totally lame). i do have to note that he tried to tell me my right front blinker, my left back blinker and my license plate lights were out. i had JUST gone to Checker to replace my left front blinker light and went through some extensive light checking and so found this news odd. i kept saying as much, and he kept insisting and i was about to ask to see for myself when he calls out to another worker ""Hey, was that the honda with the lights or the jeep?"" the other guy says ""the jeep."" however, there was no other car in the place. hmmmmmmmm. + +OK, so i pay up ($24 altogether with a tax or fee or something added in) and go back into the waiting area while they finish up. I decide to use the bathroom -- and this is where the they lost two stars (this was, up until then, quite possibly a four-star experience - wait, two stars for a bathroom, you ask? oh, you just wait...) + +the bathroom was filthiest thing i have seen in my life, and i've been to some raunch truck stop pee holes. literally, piss, in the bowl... i get in closer and i shit you not (pun intended) four shit smears in the bowl as well (yeah, i counted). two rolls of TP hanging out on top of the dispenser, each with one square left on them. realizing i need to sterilize my hands from just walking into this mess, i discover no soap or paper towels (not very surprising). as well, hair clippings all over the sink, like the guys are trimming their moustaches on their break. un-freaking-believable. i am still haunted by this bathroom experience. + +but car's running great!",review,7GC9fVWKa4a1ZmBGLH6Uww,6,8,8 +W7xb2iS4cYL14Yi5LOGSkA,2012-07-20,mYQUMTcBhBp_NTaj7gQr8Q,1,"I will precede this lackluster review by stating the following: + +1)I have only been to this place once. +2)I didn't get a chance to actually try the cuisine. +3)I am a sympathetic person to servers, as I have been one. + +That being said, I give this place one star for reasons of poor service. + +About six months ago, at around 4pm on a Sunday afternoon, we decided to eat at this place. The atmosphere was warm and cozy; typical college bar with college-aged waitresses. + +We made sandwich selections and ordered happy hour beers. The beers came, the food never did, and we watched other patrons come in, eat, and leave. All the while, our waitress never came by to give us an explanation or even get us another round of drinks (we got them ourselves from the bar). + +Since my bf and I both worked in food service, we are always sympathetic when we can see that a place is under-staffed. But after an hour of waiting, we finally crossed the room to speak with our server. She said, ""I can't imagine it will be much longer."" I think the more professional approach would have been an apology and admitting to forgetting to put in our ticket, which is what we gathered when we saw her speaking frantically with the cook. + +Where was the manager that day? Or someone who noticed that we sat there so long without our food or any communication at all? + +We left money on the table for our beers and walked out. I guess there is a first time for everything.",review,YnuPa08WRFw_VYQsb3rcoA,0,2,0 +WSHQ9qpL39g5xA3E5iBCmw,2011-10-09,HwZKlZ4F3RH3adez4cC4FA,5,"As I passed the velvet rope flanked by shiny, exotic cars I knew I was in for an experience. Some might call it a fine-dining experience, but clearly this was something more. A tribute to opulence and Regan-era excess, Dominick's is your seven-figure foodie fantasy come alive; from the moment you enter the swanky foyer to the gleaming 10 inch tower of tiramisu that finishes your meal. It's glittery, bedazzled, and oozing pretension - and I loved it. + +The Service +My visit to Dominick's was the night after it's official opening. The service tried very hard to be as impeccable as the surroundings and, while not perfect, the charming staff and the sincere effort put forth made little things like missing napkins and bread plates instantly forgivable. Our server, Drew, let us know that the wait staff only had 2 - 3 tables each and it was very evident in the personal service we received. A few more weeks of experience for the staff should easily iron out the little wrinkles. + +The Food +We started with the jumbo shrimp appetizer, which unfortunately came with 3 shrimp - hardly conducive to sharing - so we ordered two. And ""Jumbo"" they certainly were, accompanied by a kicky cocktail sauce which my dinner companion felt was spicy enough. Ever the daredevil, I added additional horseradish to mine because who doesn't like to burn the inside of their nostrils at dinner. +For the main course we both had the 9-oz filet, lobster gnocchi and steamed asparagus. My filet was a perfect rare-plus with a dark pink center, expertly seared and juicy. +Surprisingly the lobster gnocchi really stole the show for me. I'm not big on starches or cream sauces so when it was suggested I wasn't particularly excited; I should have been. The dough was light and fluffy, the cream sauce not too rich and the lobster added the perfect amount of salt & texture. +After dinner I indulged in a grand marnier while my companion ordered the tiramisu. He was presented with a 10 inch tall hunk of cake that could easily have been intended for 4 people. The tiramisu was spongy and light, with a lovely cool custard and only a subtle flavor of rum. A nice finish to an excellent meal. + +Atmosphere +We were lucky enough to score a poolside table which started off as very romantic but over the course of the evening became quite the place for people watching. The scene at the small bar area on the 2nd floor was bustling and both the waiters and I wondered aloud how long it would be before a guest fell in the pool. I bet they didn't make it through the weekend without someone making a splash.",review,fiyOnIEKBOgj00NJLwDBVg,7,7,8 +EC9WB-iVjd28B6R6KIZ8TA,2012-12-30,77pW4aInLqX4bX17tJCd6A,5,"I Love this place. I eat here either take in or take out at least 2 times a week! + +I also agree with some of the others. I love the fact that I can try something new without committing! I love the revolving sushi. I also do not like that there are a lot of spicy selections. Why not offer the spice on the side. I would love some of the sushi, but it has that spicy sauce on it. + +Some of the best to offer that some people might not know about: + +Haru sushi - Tuna stuffed with crab and topped with avocado! +Hand rolls - YUM!!! Some are only 2.50 +Udon - Good! + +The staff is great. The wait can be long on some days or eves. + +Love the baked scallops. Great mussels too.",review,DFOHCl7siB7Jt7ggQ8fEyA,0,1,0 +I4bSn5gXsHuSPu7L-d_8nQ,2012-03-23,veV0Ny77CkehL-71n8FJMQ,5,Very nice neighborhood spot. The mussels are great and both pork dishes we tried were outstanding. The Bacon-Cheddar biscuits make the meal and Fig pecan pie is the perfect finish.,review,9wl224U7ZQrNggpWVsiLTg,0,1,0 +KBG28p3lGX17hOPoHhq5PQ,2008-04-10,clNitliTZ7Cp0afx1RL-6g,5,"I had a tough time deciding between 4 and 5 stars. Wish there was 4.5 stars available for me to choose. + +Went here on a business trip with a coworker and tried it out. I had at least one of the following: +Sapporo - Can it ever be bad? It was served very cold. Thumbs up. +Green Tea - Good. Good service on the refills also. +Edamame - Good. Right amount of salt. +Miso - Interesting wooden bowl and wooden spoon. It tasted good, tho. +Yellow Tail, Salmon, Tuna, Albacore, Uni, FW Eel, Kampachi nigiri. Good stuff on all of those. They also have ""Yasu style"" nigiri for some types, and they are good. It usually involves ponzu on top. +Spicy Tuna and Softshell Crab roll. SSC was great! + +Service was pretty good and sushi was also good. The bar was full but I wish I could have eaten there. The sushi chefs were friendly and talkative to the people at the bar, which is unusual (at least compared to LA). The base quality of the fish, outside of whatever ponzu, soy, wasabi and other ingredients were on it, was pretty good, but I wouldn't say 5 stars. Since I generally judge a place wholly on the food, I give it 4.5. Failing that, I rounded up!",review,s0yUJlCABN8oVjcNocRpxg,3,3,0 +winRNt7prallDbpaDMS9Ig,2011-05-09,cpglG9iRJxmZYMTSh1h6_Q,2,"I give up. When you can still see the dough through the sauce and the cheese and the $2.00 extra cheese, and when the manager looks at it and says ""yeah, that's extra cheese"", I won't be going back. Sorry.",review,onWc8uutW3q9q8KYdxqvZA,0,0,0 +xsSnuGCCJD4OgWnOZ0zB4A,2011-12-29,qBqgN3dJWpa0YVg8lLmDJg,2,Very average. Food was overdone and waitress stopped chomping her gum only long enough to take our order.,review,bYZN1gwIQRS_miEPqeV9og,0,0,0 +atIp_n45JaHeY86-Gd4Xxg,2012-08-18,33dp9suA85sOjSB99ee7jg,5,"I love this place. The first time I went, I had my mom and my sister with me. We all got pedicures and by far the best foot massages I've had at any of these nail places. The thing that really impresses me the most is that after only one visit... the next time I came in- they greeted me by my name. How often does that happen? Hello, customer service- welcome back. It's husband and wife owned and operated and they are as nice as can be. Love it here. Great atmosphere, friendly, good service, affordable. You won't be disappointed.",review,IMeUbv6u0uIIoMFKBOZhtw,0,1,0 +suivIX2e8mQKGvbMvbcm2Q,2012-06-30,CI0J5Foz7teDOLqJGS6hig,4,"I love this place! Authentic mexican food at inexpensive prices. Friendly and attentive staff. The cleanest Filiberto's I have seen. I visit at least once a week during the lunch hour. The Chile Rellenos are awesome, lightly battered, lots of spicy sauce... just simply delicious. Taco Tuesdays (99 cent tacos) are a great bargain. Complimentary salsa bar with multiple hot sauce type salsas, sliced cucumbers, and a fantastic spicy carrot/onion/jalapeno/chile salad... all free. My only complaint is the salsa bar, soda fountains and cashier area, which are all located up front, can get very congested... I wish they could rearrange that somehow. Oh, plus it would be nice to offer a chunky (pico de gallo) type salsa on the salsa bar, similar to Baja Fresh. Check out the website for coupons - great deals! You also will receive a bright orange (can't miss it) set of coupons with each purchase, to use on your next visit. I'm a fan!",review,ZNG23JOioaJs6dbAVWRMfg,0,1,0 +bc-lE-wGVAsUrX-kJhtY-Q,2011-05-30,pFy_H_e8HMd6js-Vw6Ej7Q,4,We ate there last night and were very pleased our meals and service. The ribs were especially good. We would go back again.,review,UpHMvyLaYYVPkt7YPnMkWQ,0,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2011-07-18,eoF-0QA3uk53E3TgM7ardw,5,"Mid-priced dining with high end flavor. I ordered the special Yelp menu. Started off with mixed green salad with fig dressing. Very good. Moved on the the ""smart"" chicken. Tender, char grilled breast with corn risotto. Yum! Topped it off with a perfect chocolate de creme. Staff was friendly and very on top of things. Great experience. I'm definitely coming back. give these guys some love!",review,RQi82OtF2qvOBv6VEE0pyw,1,1,0 +3NqERLqdtQSe0w9540rZrQ,2011-08-15,DZheznh2w87MnVsDCLRwOQ,4,"Coming from NY, I tried out the bubble tea to see how it compares to back home with kung fu tea and quicklys in flushing. + +its actually pretty good, but with one downside. +i got the taro milk tea, and my friend got the honey milk tea. + +the taro milk tea is very popular in flushing, so I decided to try it out to see how it compares.. and it wasn't that great. +I don't know if it's how the drink is supposed to be served, or if its because the maker of my drink added too much powder. but my drink was really bad. + +but my friends drink was outstanding, probably the best milk tea i've ever had.",review,rxNiJzemV2g9mxDEzpWetQ,0,0,0 +dsh91PoFIn_gHCFEM0okHw,2009-11-24,ajwVxL2kJwOiV5Fik-24gA,5,"Still loving Sunflower after a year and a half. I actually moved houses to be closer to this grocery store. The staff have never complained about going an extra mile, the prices have stayed better than any store I've been to lately and they have been having great beer specials. + +Special note: They have a large selection of homeopathic and environmentally sound products for your everyday corporal adjustments. Tons of specialty soaps, herbal supplements and vitamins. Check for the solution here before going to chain pharmacies!",review,N1Q6HiZvnZHjNU712Gymqw,3,4,3 +pwpl-rxwNRQdgqFz_-qMPg,2012-10-21,rRlTFCOFmRC7EhOMyiAGig,4,"Excellent atmosphere, eclectic menu, and reasonable prices. Welcome to The Parlor! Pizza seems to be their specialty but the menu offers so much more. Friends swear by the duck club sandwich, and my wife loves the sausage pizza. If you visit during peak times expect a wait, but head to the bar for a drink until your table is ready. Staff is super friendly- our server forgot to deliver apps we ordered and made it right by providing free apps (equal value) for our next visit. He was apologetic and owned up to the mistake (he simply forgot to add to computer) - it happens but he handled it well. I'll be back!",review,-7LfdqX286W8zJ01ljY_SQ,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2007-07-24,6tuNa-Z2Zw2I7zPBMbkZrg,5,"Ace and fried mushrooms at Casey's. My version of heaven. + +The food is good and the beer is even better, but what people really go for is the ambiance. The most awesome potpourri of people. Old, young, but always interesting. + +Say hi to Thomas the cat for me! He's chilling with the patrons when ever it's not too crowded.",review,QEDVhdE7tK6aQp1WuJY69g,1,1,1 +KLaxBc83JnxyGf7GP7enYA,2011-12-01,U0JnlmQGQpzybrHD4VscUg,4,"Extremely friendly staff, very comfortable decor, and delicious food! I enjoyed a sampling of a few different mezes and a greek salad - just wonderful!",review,pEVf8GRshP9HUkSpizc9LA,1,0,0 +AjHhlZJ7FSp7l6f2OBm3bQ,2008-10-19,BUoR_PD2ZMlTEg5JhmtlLg,3,"Cave Creek is a well-manicured muni, featuring a straight-forward layout, nice practice area and large putting green. There are some elevation changes and some bunkering that add some challenge, but overall it's a pretty easy course. + +Some of the better holes are #5, a dogleg right with no room to drive it left (slopes into a hazard), and large green with some tricky pin positions if the flag is in the back. #8 is a long par four with a narrow driving area and a challenging approach featuring a narrow chute to the green that will most likely need to be hit with a mid-to-long iron (#1 handicap). #11 is a par 5 that forces you consider fairway metal off the tee, as a driver hit over 260 yds and to the right could likely find a water hazard, and anything left is completely dead. My personal favorite hole is #18, a short four par with a carry over a ravine from the tee to an uphill, dogleg left fairway with a slope on the left side and a reachable fairway bunker. + +Most of the greens here are fairly large, so lag putting will come into play. There aren't any tricks here - it can suit fairway-green style and the bomb-and-gouge crowd. The driving range desperately needs new balls, but the course is a solid three stars.",review,dQO0tQISZyb9L4d5ASnXyQ,0,0,0 +NH67MdKaFGNcP-dlu56pyw,2010-07-31,psmnvVPbuXMWIpO6HqvItA,4,I went again on Friday and YUM! I got the same ginger chicken and it was just as delicious as before. I need to venture out and try something else on the menu.,review,IhcTLLWKS6ZiNyIX9oQQPQ,0,0,0 +-sAoGZTnFtDZUY9JYWHqlg,2012-03-20,-hwao-SCJR_pFmQxZdRj3g,2,"I have mixed feeling about the W Scottsdale. During the day the pool area is poorly run, but in the evenings the pool turns into a pretty fun nightlife spot. + +Daytime: +The pool is always jam packed with a fairly disgusting crowd and the dudes out number the babes by a 3 to 1 count I'd say. That's no fun. Oh, and by dudes, I mean douche bags. And Babes? More like gross skanks covered in makeup at the pool. Ok, I guess I'm being a hater, but spend a few hours here and you might be kind of disgusted with the scene too. It's just really amateur hour here with the piss poor service and their bad attitudes and obnoxious patrons. The only reason I came was because a friend likes to stay at the W when visiting and he too noted the quality of this place has declined over the years. He has stayed at four different W locations (NY, South Beach, Westwood) and said this one is the ""worst and trashiest"". It took an hour before any waitress came over to ask if we wanted any drinks or food. When started to get service it was always a long wait for our pitcher of margaritas or buckets of beer and food. Speaking of the food, the fries, fish tacos and club sandwich are all great. The grilled cheese, not so much. The first $42 pitcher of margaritas was weak, hardly tasting any alcohol. The second pitcher was stronger. To be fair, the Saturday service was much better. + +Nighttime: +Much improved scene, but still not great. There are a lot of out-of-towners since it is a hotel, but still plenty of locals too. I think it's a good mixture. Pants and collared shirts are required, so that usually gets rid of most of the tank top, neck tat wannabes from earlier in the day at the pool. But really, you are just trading one group of wannabes for another. Man, I'm a hater huh? Oh well, you can handle it. Drinks are overpriced, but this is the W. Be ready to spend lots o' cash. + +Rooms: +I've been in a few rooms at this hotel. Each have been nice and clean, but pretty small.",review,34gJ_KlP3RM6jotNT6TcDQ,0,3,3 +pbVL3t783OyO701yK5W08g,2012-12-14,TdDAZBKQuNE-N7wr_IfF2g,5,"Top notch cheesesteak. One of the best in the valley. This place has a large delivery area, and is located right by campus. The owners are really nice and friendly. I'm really glad something moved into this spot. It's so convenient. + +Their desserts are great as well. I wish they had some chicken options, but they are new and said they would be adding to the menu as time goes on. My girlfriend said the turkey sandwich was fantastic. They sometimes carry Tasty Kake, so ask about that. + +I've had the authentic cheesesteaks from Philly, and this tastes every bit as good if not better. It's definitely in my top 5 local cheesesteaks. + +Edit: Just ordered delivery - Lightning fast! This place is incredibly legit. I went with a cheesesteak with White American cheese instead of ""wiz"" this time - So incredibly good. They tossed in a new dessert they didn't have last time which was awesome. + +Their prices are really good and their food is so delicious. I'm a huge fan. I'm not kidding with this 5 star rating - I love this place. Rave rave rave...",review,Cp-PV8rsypbO-xBrQ6KmQg,1,1,1 +SYqTY48DJa1cYhglvmgvsQ,2008-01-03,_zZxNAdfBhduQTzH24ASzA,5,"The Westin Kierland is a beautiful resort located in PHOENIX, not Scottsdale. + +Some close friends of mine from Canada stayed in this PHOENIX resort for a few days, so I've hung out in its rooms and generally lounged about the property. The rooms were impressive, beautifully decorated, and spacious. We especially enjoyed taking the kids out to small fire pits maintained on the grounds, where guests to our fine city of PHOENIX can roast marshmallows. + +The Kierland has some tough competition, considering that the city of PHOENIX has every one of the most famous resorts in the Valley, from the Biltmore, to the Phoenician to the Royal Palms. It does pretty well in a tough line-up. No offense to Scottsdale, which also has some great resorts such as the Four Seasons. It's just that the most famous ones are in PHOENIX. + +[For further information, please visit: http://phoenix.gov/BNDMAPS/index.html]",review,17PPxx8RxjOUD_nQZ1aHEw,3,3,4 +JXBdcBb3ivm89fhr6-yfSQ,2011-02-23,vTCHP8Xv3bw4xA2Vc0JXqA,5,"Sprouts is my favorite market to shop at! They are a great company who have a very friendly staff in their stores as well as their corporate office. They are also very involved with the community and with local farmers and businesses! + +The prices for all the fresh and natural groceries they carry are the most reasonable out of all the grocery stores I have been too! The Vitamin Department has everything you could ever look for to help your well being and they are always extravaganzas in the stores so you are always getting the most out of your money, and in times like these I know people are very appreciative of that since groceries are becoming more and more expensive everyday, or so it seems! + +I most definitely recommend anyone to shop at Sprouts!",review,UDBYhBP8avCa-2iZb71Ixw,0,0,0 +Xbxve72Hp5cWWj96ThGNtg,2008-07-12,A-wOtYNvykVyHT8015Chtg,2,"I've been to three Pizza Picazzo locations, and this one absolutely blew,. The reason? Service with a capital S. I invited a very large group out to lunch (made reservations the day before). The waitress was rude, rude, rude and completely incompetent. When someone asked how large the slices were, she answered 'regular."" We kept waiting for her to laugh or smile, but she never did. It turned out ""regular"" was her answer to just about everything -- we now use ""regular"" as an inside joke at the office. She also kept us waiting AT LEAST an hour and a half for the check and was largely a mirage during the entire meal. Worst service EVER. + +Food was good (though I agree that it could be considered overpriced), but that was completely overshadowed by the horrible service.",review,28MSq7NWzcLCGYXkX2p9KQ,0,1,1 +r3FHkf6lbmMUh3oPSrlIvw,2012-03-11,5ExxIOu6P1OQ0Zg0OoQBeA,1,"Went to Fatburger with our family tonight and will not return. + +Average food. The burgers were average. The lettuce was wilted, the tomato was green, and nothing outstanding about the flavor. I'd say better options nearby are Joe's farm grill, In-n-out, or Culvers. + +Cleanliness was average. The floor was a little sticky and the beverage area was kept very neat. The kitchen appeared clean. + +Service was below average/horrible. The cashier was very unpleasant. We all ordered at the same time and the first half of the food came out about 15 minutes prior to the 2nd part. It was pretty slow. By the time we got the fries they were cold. The staff literally acted like they were a bunch of highschoolers who were annoyed that there were any customers who interrupted their hangout. + +I know this sounds harsh...it is. My experience was absolutely horrible. We will not be back and I don't recommend that you should either.",review,dbgrCZFswU_5WrKmSTf_fg,0,0,0 +rVUEZpHQfWI_3kt0lBwaxQ,2010-11-22,1mIrLeJ8X1du1eKwnfNS4w,5,"I love this place. Great food, great service from some of the nicest staff, and just a fun place to go. It is also a place I like to meet people for happy hour. They have a wonderful selection of beers, fantastic wines, and I have never once had anything but great food while eating there.",review,e1ojEz8owjWsHsaxaRiFmg,0,1,0 +sv8tYgFzIRKHHERURumyVQ,2012-05-20,UyhQoX5DDDtcR_7p3KHchw,4,"This is by far my hubby's favorite lake for bass fishing. I am not a fan of waking up at 4am in the morning to get there by 5am...not for fishing. Yes, that is all my boys do here. It gets really packed on the weekends by 9am. When the water is low, it is not easily accesible from the picnic spots. It also gets super windy, enough to go windsurfing (too bad it's a long treck for us). You really have to have a boat to enjoy this lake. The absence of shade trees make the heat uncomfortable in the middle of summer, you might as well go to Canyon or Saguaro (my faves). + +I love the sharp edged cliffs juxtaposed against the crystal clear water. Good photo ops. + +Why the 4 stars? Like I said, my hubby loves fishing here for the bass. For some reason, little bluegills like me. I also like the floating porta-john and porta-jane...weird, but cool! Whoever does the draining has a crappy job. + +All in all, it is a nice big lake and by far one of the cleanest too.",review,c3yJNjz_K--z4CIpR7yhvQ,1,1,0 +rrd7NeAgARDNzPsxxsBJiQ,2012-08-19,W7dfiS4G77DHIaNiVmT8oQ,4,"There are bunch of different tours. I went on the hour long one (probably the cheapest one as well) where I didn't see the bedrooms or inside of the house. + +It was very hot coming here on a summer day - I do NOT recommend it. They do provide you with water and a red umbrella though. + +I learned a lot about architecture from the tour and why certain things were done. + +I would recommend coming here during the fall seasons because they mentioned you can see the tents out there. + +So quick summary - basically, Frank Lloyd Wright would live at this place during the winter months when it was warm in Arizona but super cold where he's from. He didn't come here during the summer months - way too hot!",review,qrX3s0BfiHQTH_gmnyysjw,1,2,1 +6oRAC4uyJCsJl1X0WZpVSA,2012-07-24,NiqLX8pW-R2OrnjUxgyXkQ,5,"I had the pleasure of living across the street from this treasure for about 6 years. I'm still lucky enough to work close by. Let me be clear. I 'm reviewing Haji Baba as a GROCERY STORE first. Then I will give you some insight into the prepared food for take-out or in-store dining. + +This is one of the few stores in Arizona where you have several choices for pita bread--it's also the ONLY place I've found for whole wheat pita. +There are several choices for Feta cheese. Danish, French,Greek...same with olives--there are choices. +I ALWAYS buy my tahini here. All the prices are very inexpensive. + +Need spices??? They have them all. At about 25% of the price you would pay anywhere else. +The best way to describe Haji Baba is that it is a REAL grocery store, with REAL prices, for REAL people. It is NOT a ""specialty store"" with trendy items and inflated prices. They sell food items that you will actually use. The bonus here? You won't find a 10 year old can or jar of something. + +On to the ""restaurant"" portion. Haji Baba is better if you think of it as a take-out joint that happens to have places to sit and eat. They do have tables and they do perform table service, it's just got zero charm. You go for the food, that's it. + +Okay, food. The lamb tongue sandwich is to die for. Let me repeat. The LAMB TONGUE PITA SANDWICH. GET IT! Their baba ganouj is also darned tootin' tasty. Actually, I sometimes dream about their baba ganouj. +I'm not crazy about their hummus, maybe because making hummus takes 5 minutes and mine is bomb? But it's not bad. +Gyros are good and not greasy. Greasy gyro meat is a pet peeve of mine. +Chicken shwarma? Yup, that's good too. +I'm sure I've had something to eat here that I was a little disappointed in, but I honestly can't remember what, or when +.",review,XpSZrY_Ym8GGx7SNEd0q9g,2,3,2 +yRga-WpyfZRz8Es4OpyMhA,2010-08-23,G4R9ZqwwY_eq2PeGcQlv4Q,1,"I was looking into gyms around the area. Upon entering I was greeted by the front desk guy. I asked about memberships and then he said, ""Sorry we are sold out"". I stood there stunned. Then he snickered, ""Just kidding"". Trying to be a good sport I went with it. + +Next came the young sales guy. He was personable - at first anyways. Showed me around the gym and I was interested in joining. Next we went over to the childcare area since I have a little one. Children were in the room however the two girls monitoring the room were chatting it up with one another and ignoring the kids. Bad sign. I asked the girls if they were CPR certified and had fingerprinting and background checks. The world stopped for just a moment and they stared at me. I had interrupted their important conversation. Then they were both saying, ""Yeah, like, well, um, no, I mean yes,"". In other words, no straight answers. + +We sat at the sales guy's desk and the wheeling and dealing began. I felt like I was purchasing a new car. ""If you choose option A, you then can go to all the gyms."" ""If you choose option B, then only here"" . The whole time I could see the children's area and the kids were being completely ignored (and we are talking very little children). When I told the sales man I needed to think about it he switched into some type of Dr. Jekyll, Mr. Hyde routine. ""Well you only have today to make a decision, after that no price guarantee!!!"" From there he was down right rude. + +I walked out of there thinking what the heck just happened. Like Sarah G, I felt horrible when I left this gym. It was an awful experience. Ended up getting a membership at Tangible Fitness on 7th Street. They don't have the same amenities however it is locally owned, and the people are very nice there.",review,QT-7jpsEuCR-pFro59KBtQ,3,5,1 +BESmH-lmMm34_EefL8X9fQ,2010-09-17,u0ZceqKcyZ8FoeaMrJ54FA,5,"Great and has been for years. Lines out the doors at lunch but worth the wait. I recommend combo 'K' + +This place is the where you should take someone from out of town that wants the best mexican food.",review,h2AKBbrycz4bzJ6F8V7a_w,0,3,0 +IVc23uY-36WUNYoIbz42Fg,2009-01-15,_pmYOW52o5wenplbAcu5wA,4,"Lame joke alert : +Okay, I think I have switched over to Switch , I am finally making a switch to Switch whew almost over , after you try Switch you'll never switch. And done. + +Thanks for letting me get that out of my system.Lunch today was delightful. Mom and I were downtown playing around and we tried Switch for something new. Glad we did. + +Our server Matthew was helpful, courteous and efficient. He really made the good food stand out . For being at the peak of lunchtime it was nice to see the restaurant wasn't packed but they were well prepared for the lunchtime crowd.Food was served fast without feeling rushed. Drinks were filled promptly without hovering. + + +We had the Beef Galletta , a puff pastry with mushrooms, tender beef, brie , onions and a light sauce. Great size not too much but definitely filling. Mom had chicken chop salad that looked fresh and tasty. She really enjoyed it. I look forward to coming back and trying other items here.",review,tdNV2Wb0LrFpm1Yfov_Klw,8,7,8 +EfmR4e1tmjC5_ZQOgfnYrg,2008-03-07,lOvdXM6zXyzxpMxptY4PYw,5,"Another great Italian find! + +My BF and I went to Roma Garden for dinner last night because he was given a gift certificate there from a friend. We'd never heard of it, but we're always up for trying something new, especially with $50 towards our meal. We pulled up to their strip mall location without expectations and we were both pleasantly surprised! + +When you walk in, the lighting and decor are welcoming and the staff is friendly and attentive. It was a Thursday night and there were plenty of other guests in the restaurant, and there was a lively energy in the air. After browsing the menu, I ordered one of the few 'Chef's Specials' of the night - tilapia with fresh veggies and pasta in a lemon caper sauce. BF went with Pollo Parmagiana. He had a glass of cabernet and I had pinot grigio... and voila - a warm bread basket arrived on our table at just the right time! + +We were both happy with our orders when they arrived as well... the fish was cooked just right and the sauce was tasty... good portions as well! Although we were full, we decided to order a dessert to share - the homemade snow white chocolate tartufo - yum! The perfect sweet ending to our meal. In addition, we were each brought an after dinner drink of amaretto on the rocks, on the house. + +****I just have to share that I was pleasantly surprised that the women's restroom was clean, spacious, and had a fresh fragrance to it - I normally don't notice that, but I was impressed by this! + +In speaking to the waiter and the owner, we learned that this restaurant recently changed locations but they've been in business for over 15 years. Gotta love the local businesses that last in the valley... we'll be back to support Roma Garden and enjoy their fine ""Northern Italian Cuisine"" without a doubt. I suggest you go check it out also - bon appetito!",review,fczQCSmaWF78toLEmb0Zsw,6,9,4 +l-Xv5Kmg2gilJI3-DGVCqw,2011-06-06,cORMKcZsMAwTNyh-vfGXDw,5,Love this place...can't beat it for a healthy meal. Tons of good options that are tasty without all the cheese.,review,0DDWHEWmcYWGIPQ6fvG_xw,0,0,0 +rLAeltELaGdQKh_LYIllEA,2012-03-10,p3OxpFa318wTOMc_7SR6QA,5,"Agree with those who describe this place as enchanting. The rooms are extremely comfortable, the grounds are picture perfect and the pools are very pretty. We had 8 people in our group ages 15-64 and everyone found something they loved about this place.",review,C0vujI9rPTA30iHyBYKlfg,0,0,0 +zBPjqEKHcBJN9iNx-QWc5w,2011-10-13,Ur-wOKIT4qhMbu1LhX3kNA,5,"I was sent to Amomi spa from my OBGYN for my first pregnancy to get all of my ultrasounds. I felt very at ease the first time I walked in because of the very clean place and friendly staff. Every ultrasound technician I have had has been really great and knowledgable. I really like that they have high tech equipment with big plasma tv's on the wall so I could see a big,clear picture of the baby. Also, the large spacious rooms are really nice. On a side note, they have great products to buy in the lobby. + +Now pregnant with my 2nd baby, my OB referred me to 2 different places this time for my ultrasounds. Without hesitation I knew I wanted to go back to Amomi spa again to get all of my ultrasounds. I have already been twice this time around and looking forward to going again in a few weeks.",review,QHRmdqfrZRlynmlL7k_v4g,0,0,0 +1LSxfyNIUFbQb-Ej0FDGTw,2011-11-16,8sZmxY20I7Z_ZtYCIRdNgg,5,"We had a GREAT dinner there on Saturday. We were celebrating my aunt's birthday, and we ordered from the regular and special menus. I had a truly wonderful chicken Madiera, my hubby had meat loaf, which is always a ""tell"" for a good place, my uncle had fried haddock which was crunchy and not at all greasy, and my aunt also had the chicken Madiera, which was fork-tender. We also had great service - attentive without being too much, and we completely enjoyed our meal. We will definitely visit this location again.",review,7mXorwoYFPlBvU9qCNuoOg,0,1,0 +bxpzP73A7gauvxFEyd_8xA,2010-07-01,Dla8VIa3kkGKIBVI0wazNg,4,"oh my, these are huge gyros. somewhat scary looking at first. not pressed in their cellar but good enough to find on a food cart in nyc. simply can not beat the value if you are hungry for lunch. they do need some greek coffee though. + +with all the i heart chicago wallpaper, you'd think they would have a plasma TV with my big fat greek wedding on repeat play,",review,crrp9oqSWsVnDHPKgy_bqw,0,0,0 +HDvCnqIf5twbMb5-eG1EJw,2011-08-22,HhbkWDna_ANmDHI_DlyDKA,3,"Wow, what a busy place. We came here while visiting Scottsdale. We are always up for a good breakfast and it seemed that this was the appropriate restaurant to try. + +This place reminded us a bit of a great small pancake house in Anaheim, CA called the Original Pancake House. It is much bigger and modern, so it lacks charm, but the food is better than standard faire. With that said, the creativity is good in their menu selection, but poorly executed. I had the banana french toast and was a bit disappointed. The banana bread used was fine, but too dense for french toast. It hardly had any egg coating to truly classify it as french toast. + +They serve huge slices of raisin toast, but bigger is not necessarily better. Very dry and not flavorful. + +Eggs were fine, and the service was good. I would come here before going to IHOP, but I would seek a different small hole in the wall breakfast joint before rushing back here. Avoid the Sunday brunch hour patrons, unless you're prepared to wait an hour or so. Enjoy.",review,blgNUB-2AGkVOKHBJ_-1qg,0,0,0 +Zy2vca7i9QFGRKa4m0C__A,2011-03-08,4ZCt4Z2mMHxdvCnqtxBkGQ,1,"Pho-yuck this place! + +I was tricked in to going here with promises of great Vietnamese. I was ready for a culinary adventure and what I got was a ride in the fright house. + +The Bánh xèo was so greasy I couldn't eat it, it was literally served on a plate of grease. + +The bun was about the same. It lacked flavor, the rice noodles were slimy, the spring roll was loaded with grease. + +I ordered some sort of plum soda drink and it had a cup of salt on the bottom of the glass. + +The service was horrible and I will not be back.",review,q9XgOylNsSbqZqF_SO3-OQ,3,4,2 +NH67MdKaFGNcP-dlu56pyw,2008-02-21,XbC1i3lXYMDlHS94S-FHJw,4,"Went here because of the reviews on Yelp, very good. Had the green papaya salad, great light taste and a very large portion with a few shrimp on top. Had two types of curries and both of them were very tasty. I need more of that green papaya salad so I'll go back and try a few different things.",review,sEWeeq41k4ohBz4jS_iGRw,3,3,0 +dW0aTU2DcZI2FetaZXYsXg,2010-07-30,wzNZqy1ERk5dw0hGSYvu0Q,4,"Love this place! Super fun you never know what you will find until you find it! +So here's the deal I just adore to browse in there and get ideas-seriously how can you go wrong? +I found a ridiculous item which I'm not sure that I want to share online-oh well lets do it. So you know when you buy hot dogs and the package doesn't seal back up? So of course the container store would have something as silly as a hot dog container to hold the rest of your package. Plus they had great large jars, and shoe boxes, and lots and lots of containers. +I think if I could get away with it I would build a room of containers! I love to have things organized and the container store if fun to look at. +Check it out!",review,db7t1HCsqxvwbe3kSoqtYQ,0,0,0 +jfDBaBgwINrGYAo8p2MJ4g,2010-05-28,aJNeEzPuss8qEl1sTe710w,3,"Shaved noodles, shaved noodles, shaved noodles! Am I too butt lazy if I only go for shaved noodles? The dish ordered with the handpulled meant I had to hold chopsticks high into the air trying to separate a portion of noodles out onto our plates. Not bad but wasn't special... but the shaved noodles, loved the chewy texture. I unashamedly used my baby godson as an excuse to get a mini noodle pulling show at the window. + +I'm going to work my way thru the fresh fruit juice offerings... I used to drink that daily while working as an expat in HK. Speaking of which, the bathrooms are sooooo HK grand (Amy L, you and I think alike!)... + +Overall the stir fried dishes were a bit greasy and the flavors decent, but the draw here is the shaved noodles (can I plug this anymore?!) and the fresh fruit juice.",review,xdWsnbaTEfBMVHttqZDHxg,0,0,0 +jqZKv-7F54guDLalXEjHxg,2010-09-28,31Yf698M0Tz1fLeK5WQabQ,3,"Meaty, beaty, big and bouncy! + +Add ""beefy"" and you've pretty much summed up your 5GB&F experience! + +After detoxing this morning, I was really hungry...after all, I'm a pretty big and bouncy boy and when you lug this kind of tonnage up and down the canal, you're going to need some retoxing! + +And since it's Taco Tuesday, I thought a burger fest sounded about right! + +I needed to be up north anyway, so I texted my order (what a time and vexation saver that is!...two stars for 5GB&F right there) and it was ready, hot and juicy when I rolled in. + +The burgers and fries remind me of nothing so much as Wendy's of about 30 years ago...you know, when Wendy's was actually pretty good (not like now when, they consistently screw up your order and figuratively, literally throw your bag-o-food into your car as you idle by the pickup window). + +The burgers are OK, the fries are fresh and peanutty (no, really...fresh peanut oil...the fries taste peanutty!), and the Coke is, well, Cokey. + +The atmosphere is nice enough, all red and white checked and tons of ""look at me"" crap on the walls (""Best Fries in Hoboken!"") + +The music was also reasonably pleasant (Men at Work...""I come from a land down under""...I shuddered a little bit at the part ""and men chunder""...please, no chundering while I'm eating!). + +Anyway... + +I was able to purchase this little repast for a mere $11.83 (I saved a little by having the small fries). + +I know, Grind or Delux prices for a retro Wendy's burger! + +I'm no spendthrift, but I could feed a family of 6 at In-n-Out for $12...and with better burgers. + +But, 5GB&F filled me up, they had my burger ready to roll and they very nicely didn't mess up my order (but then again, how could they screw it up...they were ordered to prepare my burger by a computer...we know what happens when you don't do what a computer tells you...you ""accidentally"" ride over a cliff on your Segway, that's what happens!) + + And, in a nostalgic sort of way, they reminded me of how Wendy's used to be (complete with 70's music), and for that, a reasonable 3.25 stars.",review,du6KeE54IFbPiXpU3LOd1g,10,10,11 +4sW8Z6NLXLRkruSKSKUEUw,2009-06-07,X6DYb34KHjiLdwGy4r74RA,4,"I do enjoy this coffee shop, though admittedly it has largely subscribed to bohemian bloodletting since emerging from the former Willo House. They still present photographs, paintings, sculptures and more throughout the cafe, most, if not all, for sale. The clientele has changed, as has the interior. Regardless, it's still a nice place for coffee. For those who haven't been, it's set in an old house on the southeast corner of 3rd Avenue and McDowell. Personally, one of my favorite activities is to start here for coffee and take a walking tour in the area. It's one of the few neighborhoods in Phoenix with historic homes from the 1920s, which seem to be untouched by the authoritarian overlords of homeowner's associations so popular in suburbs. I could be wrong, as I don't live in the area. But, to stay on topic, the menu is a bit pricey but Hob Nob's has retained the Willo House's cozy, neighborly feel, though yes, over a few short years it transitioned from hippie to yuppie.",review,9mjItdXixKECanLV6RBIrw,2,2,1 +rZbHg4ACfN3iShdsT47WKQ,2010-01-27,xWEJNaXUQdlQe5J2aoZrTw,5,"we celebrated my birthday all weekend. we made the trek to bobby q on sunday. I ordered the brisket sandwich with mac and cheese and let me tell you about that mac & cheese..it was amazing. Mr H went with the chicken and brisket and for his sides: beans and potato salad. +The food is sinfully delicious! I will NOT be coming here as often as I would like... I found it too indulgent. it is definitely a treat and worth trying! I love those little donuts they give you at the end!",review,fNfLXX_ce2TQPrdHCqPzZQ,3,2,1 +UCid2Tas6K4SB9sHO9gQ8w,2009-07-16,wtmUi6t17Rh1xQ2F0xQTOg,4,"Wow, I am kinda suprised by the recent reviews of this place. My girlfriend loves this place and has been going for the past 5+ years. She would probably give it 5 stars. I really like this place, the atmosphere, we always get great service. The food is really, really good and the prices aren't bad. Sometimes, very crowded, but haven't ever waited too long. We love going back and can't wait till our next visit.",review,dKMzuhnwGh3hGxP0QH7m6Q,0,1,0 +xtX2qS64zP2NRPV_7NNqHw,2011-01-25,SXxzqpZ-jp4NPc2-1-6hZQ,4,"We had a wonderful four nights at Gainey Ranch. The rooms were beautifully appointed (although not enough drawer space), immaculate, and high quality bath products, bed linens and furniture. We had a 3rd floor garden view, which was very Zen with a natural pond and fountain, and access to their Regency Club (a must have). The spa was very nice and they carry high quality products. They also have so many options to hang by a pool, including a private spa mineral pool (sans children). We understand there is a great kids pool also. The food was delicious at their restaurant also. + +We did not experience any construction issues (as they may be finished), but we certainly benefited from all their efforts. It is beautifully appointed and plenty of spaces that feel private. It is not a convention-like hotel, but I have heard (from a corporate event planner) they do a wonderful job for large parties. + +Everyone from the valet, to registration, housekeeping and wait staff were more than accommodating and very friendly. Kudos to their general manager, who when we brought up the issue of not having enough drawer space, immediately remedied the situation. (I won't say how, as I don't want to turn it into a precedent. I'll just say, he went above and beyond.) + +I would return to Scottsdale just to visit the Hyatt. Happens to be a bonus we have wonderful family that we can visit too!",review,F8MIgcGzop_Mv0gFYJc4fA,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2009-12-16,iQuKsiIwucQSJd-m0c4HBA,5,"I'd been hearing about Defalco's for a while now. My husband, Jim W, and my youngest, Abby, raved. ""Best steak grinda since Baston,"" they said. So, on an expedition to get more raw chocolate, we went. + +The first thing I noticed was that the tables were scattered among the racks of Italian foodstuffs. I loved that. The place screamed ""Boston"" from the moment we walked in the door. When we ordered, Jim found one of my favorite types of soda in the case, Doc Brown's diet black cherry. I was in heaven. + +So we got our number and sat down. While we were waiting - a short wait - I got a brilliant idea which solved a long-vexing problem. Guess it was the east coast vibe. + +The food came and I was in heaven. We split a steak sandwich and red potato salad. Jim likes everything and I just like onions so they gave him the mushrooms and peppers on the side. Lots of mushrooms and peppers. It didn't look like a ton of food but we certainly got enough to eat. + +What's not to like at Defalco's? The food is fabulous, the prices are good, the people are really nice, and they have all kinds of imported goodies. So I guess the only thing I didn't like about Defalco's was leaving.",review,LTX9pmF-zXPYB4wE8b9RZg,5,6,4 +1oFvqm7eSpJbVpxpPxueaA,2013-01-03,xUz7NWXlO6jXnZ7oaP7RtA,2,"I've been to multiple Buca di Beppo locations in several cities. They are a good place to go with a large group. We went to this location with a group of nine. The menu was typical. We ordered the seafood trio, which was nice, and the fried mozzarella, which was also good. The Caesar's salad was also good. We ordered pasta entree's and chicken, all of which were served up warm and in plentiful portions. We left with a fair amount of food. I would give the food four stars. However, I would give the service one star. Two in our party ordered cocktails. Five of us ordered wine with dinner. All drinks arrived together with our entrees. We did not get enough dinner plates. We did not get enough wine glasses, and had to wait for three more. Three entrees arrived together, and we had to wait about five minutes for the fourth to arrive. We had to ask three times for boxes to put our leftovers in. We were never asked if we wanted dessert. If the service were spot on, the rating would be much higher, but, I can't justify it.",review,z5QQGDqErjMKD8XtM00s7g,0,0,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2012-04-17,RA1yIXNVlS1uy3ptLB2nuA,5,"Incredibly good calzones; friendly service, nice courtyard seating.",review,z5GWsidy0WT2CLxwhGiV5A,0,1,0 +R8VwdLyvsp9iybNqRvm94g,2012-01-31,ox914gCFn8tM8KJf8hmSnQ,5,Nic-nacs galore!,review,yrXCDuHsWLt14ql-aLOCYg,0,0,0 +_AvHni-xdRHmZ3XfYHwGkg,2011-08-05,_jI6o9Dd-MDxXtOVxawOeA,4,"This restaurant is in my TOP-5 favorite restaurants of all-time! ...The only reason I am not giving it 5-stars is because it is a real splurge, and it takes a pretty special occasion (and experience) to justify such an expensive meal. + +While in my personal experience at Posh, the quality (and ""deliciousness"") of the food I had definitely justifies the price-tag, it should - if the quality wasn't extraordinary, it wouldn't rank at all. + +You really do have to be an open-minded, mostly omnivorous eater to fully appreciate it though. If there are ingredients or flavors that you don't much care for, it might be more challenging to assume that you will like everything you get. + +It can be daunting, because you may get something that you don't like, but that is also part of the excitement (and the adventure of trying new things!) You also may get something that you've never had done well before and find that you are a newly converted fan. + +Also, though the wine parings are wonderful, if you are on a budget, skipping the wine is a good way to trim the bill. + +For the best experience, don't go when you are famished, and don't bring picky eaters with you - both will interfere with you having a completely satisfying experience.",review,o6hksardqzx7jZwiNxoRDg,0,0,0 +3EEVGDngt4DEhoOQZIUNUw,2011-05-13,F4ce5Dgnb8opwBxE-JHR8g,4,"This was a very nice place to take your mother. We both had a good lunch. The service and iced tea were very good. I felt like the food was high quality, but maby should have been priced 1 or 2 dollars less. The patio was beautiful and very peaceful to visit with your lunch partner aka Mom.",review,IhcTLLWKS6ZiNyIX9oQQPQ,1,1,0 +OSlTIcDNSSt_83ciKwT1Xg,2010-04-09,XmnwLZ4z_B72JCp-IyZXYA,5,"After talking to a number of bartenders in the area -- and doing some fairly extensive personal research -- I feel pretty comfortable saying that if you want the best cocktails in the Phoenix area, you should head to the Jade Bar at the Sanctuary Resort. + +This is off the beaten path a bit, and after a few miles down streets with no street lights, it felt a bit like driving to a ski lodge up in the mountains. It's worth the drive though. I had two excellent cocktails (""The Last Word"" and a ""Pendemums Club""), and one enjoyable and informative conversation with Jillian the bartender. Wish I could have made some of their mixology classes.",review,EsH5xs6wMUQ11oleoPmKfQ,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2011-11-04,OmcoLT0j_RrCuU3cl_BdVw,4,"There's a lot to love about The Mission. The experience comes so close to 5-star that it makes me want to nit-pick about all the tiny things that fall juuuust short so they can fix them for my next visit! + +The Bar: What a lovely, refreshing Basil margarita! It was just sweet enough without being syrupy. But bartender, why is getting a recommendation out of you like pulling teeth? + +The Food: Excellent table-side guacamole; it lived up to the very high expectations set by all the other reviewers. My dinner partner's Hangar Steak was very juicy for such a thin cut and the dressing from the tomatillo salad give the whole dish a tangy, acidic bite. My Chorizo Porchetta was very unique and flavorful, but a little more sauce would've saved it from being slightly dry. I love though how the star of the entrees really is the meat here, the portions were generous and the sides were an accompaniment, not a competitor. +***Almost forgot about the pumpkin bread pudding we shared! He loved the scotch-carmel sauce which I thought was too sweet. I loved the moist, fragrant bread which he thought was missing pumpkin-y spice. To each their own! + +The Atmosphere: It's a gothic romance come to life with beautiful dark metal chandeliers, warm, glowing salt bricks, and dim lighting. I just wish the table of 6 old men talking golf wasn't sooo close. A little more room between tables would complete the intimate decor. + +The Service: I have no complaints here! Our server was excellent and never overwhelming, the lady who made our guac was all charm, and kudos to the chef who sent us complimentary street corn (yummy by the way). + +A note on the street corn: I felt like this was a dish that would've won the Top Chef competition where they had to re-invent convenience store food. The grilled, slightly salty & crunchy corn topped with creamy spicy cheese sauce beats any AM-PM nachos I've ever had! :) + +Lots of wonderful food still to try here. I will be back very soon for brunch with mom!",review,fiyOnIEKBOgj00NJLwDBVg,5,5,4 +wNUea3IXZWD63bbOQaOH-g,2012-02-13,diYXQjM9GgvBZSLpvHTn7g,3,"What's not to like? Stingray does stylish sushi and happy hours just fine. This is the only ""chainy"" sushi place that I will eat at. I can't stand sushi at Kona or, god forbid Ra. I have always found the sushi to be fresh tasting, especially the salmon skin roll, which for some reason, is absent in a lot of establishments. One of my other favorites is the summertime roll, it's tuna and avocado delicately wrapped in soy paper which I love. They also do a very adequate and lively happy hour where house drinks are half priced, and there is a nice variety of sushi rolls and apps that are between $3-$8, oh and sake bombers too! We went specifically for the fact that their happy hour lasts until 7pm, and they have a great patio. We have always received attentive service, and when sitting at the sushi bar, you receive complimentary edamame and miso soup (although their version is kind of salty and not my favorite). Friday the BF and I had 4 drinks, fried calamari, gyoza, 2 sushi rolls and salmon nigiri for $40. Not bad, not bad at all. The Biltmore location is where you will find me.",review,qkbiaiS8t8YHWx3J04NjSw,1,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-07-02,-SyaHWUhaYTISZjiTzoe1Q,4,"Great service every time. Food is excellent. Levi is the best server.Great place for a few glasses of wine, fun atmosphere & delicious food. The ice cream is amazing!",review,f1EokGAtmy2OChSs1XbETA,0,0,0 +H7KzlC0-o1wIhlGg-Me5Ag,2010-02-19,E6AjU_CgVAqVDl_ve9PnyA,1,"omg...hands down the worst chinese food I've ever had anywhere. Stopped by for lunch with my wife. I ordered their cashew chicken dish and my wife ordered the pad thai noodles with shrimp. Barely edible. Makes Panda Express look like gourmet chinese food. Prior to Flo's, the distinction of the worst chinese food went to a chinese restaurant in Nebraska...but that's Nebraska. I'm chinese and live in San Francisco so know a thing or two about good chinese food.",review,FS_3j3S_QvIaQCAMFKl_7w,0,1,0 +GPAg6fpHEiYNDbd_QWTc8g,2008-12-17,QWLWEXk6EV47edim1jR8eQ,3,"Hit or miss. Pretty much the perfect definition of the ""HoHo"". + +My friend and I like to come before shows and for happy hour (super cheap draft beers and wells), the well drinks are usually a little weak but being so cheap I can't blame them. + +Tuesday's are taco day and they have some pretty decent deals. Each day of the week has a ""special"" as far as food goes, it's average to below average bar food. + +There are some games and shuffleboard as mentioned in previous reviews. TVs scattered all along the sitting area and a sizeable patio for the smokers. + +The bartenders are the real hit or miss part of the experience. I've been here and had great service, I've returned to have sub-par service (it wasn't very busy). + +All in all, if you're looking for a place to grab some cheap beers (we're talking domestics on tap) before heading into The Clubhouse or heading to somewhere else to spend the night, stop in and check it out at least once.",review,hW2XQMGHy5_TW7dnijZR6Q,2,3,1 +6FGwEHnoD-mM-PiXrhxOlw,2010-09-21,uHp4VoPz8GU0Qt4pCgPuLw,4,"You'd think it would be easier to find good Chinese take-out but it's not.. Luckily, Great Wok fits the bill. It's not super expensive, they give you a ton of food and it's really good! I usually get the General Tso's chicken and it's hot, covered in sauce and cooked right. The beef and broccoli is good too. It's a typical small Chinese food joint in a strip mall so the dining room isn't anything special. I stick with take-out.",review,uJVPMnfxx3lYX7kVHUTbTw,0,0,0 +i-0DzAP50NT6fBsYl3Rqlg,2010-11-14,wMy2EDFQpkODuhiJVmyZLw,4,"Every time going to this Best Buy I've had a good experience. The staff is extremely helpful, but not overbearing (constantly asking and asking to help like other Best Buys). They ask once, then give you your space. When you have a question, they're always nice and prompt to answer. Perfect customer service. + +It gets better though. The most recent visit to this location I had bought a camera, and even with good reviews online, and the help of the BestBuy staff, I found out the audio on the camera was terrible. Just a problem with that model camera. We didn't know. + +The next day I returned the camera with its plan, and had the easiest transition with customer service too get a different camera. Within 10 minutes I was in and out with a new and better camera, and didn't spend an extra dime. It was perfect, and the new camera is great! + +Just one of the many great experiences at this Best Buy. I would give this 5 stars, but the store itself is super tiny, so selection can be limited (the only drawback).",review,0nCNOQv4VV2qYcqVno5ZrA,0,2,0 +QniH_NAABATeAx45mQ4ESQ,2011-11-15,s_gxH6jfyP-I8Lv05Osocg,5,"What an amazing Mini Vacation. I went in August which was about 105 degrees but it was perfect. The pool was relaxing, the water felt great and I enjoyed all three nights of my stay. We decided it was so great we never left the resort. + +The Room was very clean and very comfortable. + +Talavera had the most amazing Fish Entrees, the seabase OMG I can still taste it, the salmon was the best I have ever had, and I dislike salmon completely. The service through out the restaurant and hotel was amazing. The special drinks they had were very tasty and made the 105 degrees weather manageable. + +The brunch buffet and breakfast at Crescent Moon is excellent all three days, so fresh, the pomegranate fresh juice was amazing I had three. The food tasted like the items were freshly picked that morning. I literally gained 5 ILBs on this trip and it was worth all of it. + +The Lounge had tasty small Tapas which I enjoyed while it drizzled that night, the whole hotel has a great relaxing ambiance. + +The nights were amazing to walk around the hotel or sit around the pool with the night lights on and enjoy the peacefulness of the resort. I believe we saw bats flying around in the middle of the night. which was very cool. + +Worth every penny. Just watch out for Camera Speed Traps on the way there. Enjoy,",review,TstEnc6buaP6XLUPMgNH-A,1,2,1 +rZbHg4ACfN3iShdsT47WKQ,2010-01-21,jGqbHG0AUGFu95RUioNy_A,5,"Delicious barbecue, we had 4 meats platter that we split with three people. The pulled chicken is amazing, the brisket tender and juicy, the ribs succulent and flavorful, best barbecue around. The sides were delicious as well, mac & cheese was great, mashed potatoes did not disappoint, ranch beans aren't anything special but they tasted good. + +Service was great, waiter was attentive to our needs and accommodated a last minute switch after already putting in the order. Atmosphere is good, not too noisy/quiet, the lighting could be improved though, a single bulb above the table barely allows you to see what you are eating, though the food wasn't there long enough to be seen:) + +Highly recommended to someone looking for great barbecue ribs, chicken, brisket, etc.",review,RHWm_duEdCgWwtN1fBUkHA,1,1,1 +P1R-DyUyBeWCvPKrRkglsQ,2008-09-15,0Jbwi-38gafiegreugqeaA,4,"Ate here for the first time a week ago. Had the fried egg with applewood smoked bacon on top of a crispy puff pastry and grape tomatoes. It was nice and light; didn't feel bloated afterward like you would after IHOP. I love the European cottage decor and ambience. Eating inside and outside looks equally appealing. Also, besides regular juice and coffee, they have hibiscus tea. My only wish is that the portions were slightly heartier for the price. But everything tastes fresh. I definitely plan to go back. Great local fare.",review,ZrUZtLgLOn15v2NIZl-oKQ,3,4,0 +KDfmJTIG-z6W6cl4YC-WDA,2008-11-23,e5Ga90pFpQFhEe_vKlyhkw,3,"I so wish you could do 3 1/2 stars. i would give it. + +Not bad chinese. NYC style. If you have lived in or around NYC you would completely understand. + +I LOVE the Fried Dumplings. SO GOOD!! Highly recommend them. Pork Lomein is good to. Take out for sure. Not really a place to sit and eat. you can do it but it is more geared for take out.",review,OsYh3jArm6fgozczE85ZeQ,0,0,0 +v68yAIw0gpn15xwtcR_rKg,2012-05-28,uMTrZsAO-U1IXZeMDo-U5g,4,"This Dutch Bros had some of the best customer service I've ever seen from a young guy working on a holiday (Memorial Day). I ordered an Americano which was excellent and just the right proportions. My wife had a soy chai latte which was just a little too sweet, but still good. +Overall, it was an experience I would recommend, and it's staying on our list of go-to places as we explore our new neighborhood.",review,sYxD6VdrAaajp-gxim0I_Q,0,1,0 +1xu5wFd0TeBg6xNBiRtknw,2010-01-06,RcLZ4nWKbVnrNHMQKk07AQ,3,"Two and a half stars, really. + +This place is really quite strange. Video coffee bar? I don't have much to compare it to, I guess. + +We'll start with the coffee: traditional espresso macchiato. No microfoam, large bubbles in the milk, too hot to drink right away. The shot was good, but by the time it was cool enough to drink had lost quite a bit of flavor. + +Very friendly service, on the other hand. Given that Phoenix-foam tends to be subpar, I tend to think that service and atmosphere are almost more viable measures for successful coffeeshops than coffee. (in Phoenix) + +The actual place was pretty odd. Large paintings of Mexican sugar skulls in the back, nice chairs and tables, an orange faux-finish on the walls... And then the video bar element. Three huge flatscreens on the wall playing pop music videos from the '90s. Very strange, in my opinion. I'm not sure that Cher and Madonna really mesh with coffee shop, but I guess they're trying something new. + +I had a nice time lounging and it was relatively quiet with regularly good lighting.",review,0rRTTYnjOtMDD32RvlxPow,0,1,0 +mWFA3S-h2_bEvjDJP-11wg,2011-06-21,S1EvUj_NI7bjFhjLSZDhxA,4,"Starbucks is Starbucks when it comes to the coffee and food, but the staff at this location are particularly helpful and nice. One offered to help me decide on what drink to choose, and promised that if I did not like it, he would make me another one free of charge. The seating is a bit limited because the place is somewhat small, but other than that, an above average cookie cutter Starbucks.",review,I4EIRTgGREZKTMThz1LihA,0,0,0 +GV1P1x9eRb4iZHCxj5_IjA,2012-12-12,OcKg7311fpbZAP53cGd01Q,3,"I had the Potato Balls, they were larger than i expected (i'm used to the likes of Portos) but i was not discouraged from attempting to take them in all at once, alas i failed.. but i was a happy camper.",review,31OZmHva7Q0dTNqpM4TKug,1,1,1 +GRFunGSUZxXqNCZJrN8Oow,2012-03-15,FgTpNPkTfwm4ILPreidgFQ,5,"Lovely outdoor seating area, very dog friendly. Don't sit in the back of the outdoor seating area because it smells like propane back there. Had some coffee and just hung out for a couple of hours. It was a pleasant experience. Didn't order food this time but next time I will, because every dish that came by looked magnificent! All of the prices on the menu looked very reasonable for the portion.",review,iC7NVBmkzRl4rKEU5MWS0A,0,0,0 +QAWdgDgWaFJYzJ2pGDjmdw,2012-05-29,sKoWTT0MbmAnFJkKGU-BHw,4,"A clean shopping center with many classy options for food, drink and retail therapy.",review,8-mw_aotUGmP0k0s6QKwOA,1,1,0 +0LCqaCnEGesFEhpa6qNauQ,2010-02-27,A1K4jqhMOPuCYJZcmmSWLg,5,"Excellent in every way. Attentive and fun owners who tend bar every weekend night - GREAT live music, excellent wine selection. Keeping Fountain Hills young.... one weekend at a time.",review,5zd678Uuarx_Xj-0NNSy7g,3,2,1 +V5QdxePG-pGPXVPHSLLM9A,2012-04-05,R5i3jMW0vl2VLbRXyWdLnQ,4,"Always my favorite coffee shop. + +Too bad the baristas remember my fiancé but not me, even though we always come in together. Pfft. + +But that's okay. I can take solace in their georgia peach tea and gluten-free/vegan english muffin. Toasted with just the right preserves, it makes my belly happy. I cheated on my diet but that's okay. Just don't tell my doctor. + +I have always been a fan of their food. I did knock this down to 4 stars because they seem to have dumped a lot of the vegan/gluten-free options they used to have. Super sad face. + +Also, there was a very loud man in there asking for money, yesterday. But he quickly left. Loud conversation is very distracting. It is not the quietest coffee shop if there are many people, but it is still nice!",review,SJoMGpnY0DVtMlpjFK78-Q,0,0,0 +_tkAI5Q5XQSfgbqJzDKSDQ,2009-08-07,AHrqKpT07lviBm5PWtJwFQ,4,"Old Town Tortilla Factory does a fantastic job with Mexican/New Mexican cuisine. The chicken pinwheels that were supposedly featured on the Food Network or something are phenomenal. There's a good variety of entrees featuring different types of seafood and meat, and plenty of southwest flavors. The margaritas, served with a little shaker of extra, are excellent too. My mom actually drank a whole one, which, maybe you don't know my mom, but, trust me, is saying something. The ambiance out on the patio (when it's not too hot outside) is quite comfortable and cozy, with the fountain and the strings of lights. Also, they have homemade flavored tortillas, with different flavors featured daily, but sometimes the waitstaff doesn't seem overly eager to give them out. Had to deduct one star for service. Other than that, I highly recommend this place.",review,YL8SKv-pwx-Wj9cwGYrn3g,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2010-03-16,UPmCFEhZwAKOX2__tYgxRg,1,"We checked out RnR on Sunday (just a few days after opening.) In all fairness, I have to agree with many of the other reviews. Even though they are new, these things are fixable so hopefully the feedback will be taken in the appropriate vein. The building is very cool and the vibe was energetic on a sunny Sunday morning. There was an abundance of waiters but they seemed to be confused and frenetic without a real focus on the customer. The menu is very limited and our server had not eaten most of the items. He was struggling to explain. Our drinks took more than 15 minutes to arrive even though we saw them sitting at the bar for the entire time. Our water had just disappeared. Then the food. I ordered the grill cheese ( a rare treat and when I order it I want it good!). It was cold and overwhelmed by heavy bread. The cheese wasn't melted. I sent it back and they simply nuked it and brought it out. Icky. Our son wanted a kids cheeseburger and the staff kept coming back and forth not sure if there was a single burger or sliders for kids. It became comical after the third person came out. My husband ordered a salmon omelet with several additional fixings. The eggs tasted like box eggs and it was lackluster and flavorless. We even took the time to provide feedback to management but we got a weak smile and ""come back and try us again."" He made no effort to ""make things right"" either by comping something else to taste or providing an incentive to come back. There are too many restaurants in town to have to go to one that is less than mediocre. The young crowd may enjoy it for the bar vibe it gives but the majority of the tables on Sunday am were families or middle aged and we saw similar responses at other tables.",review,U4j1MmMVZlts04OZxz87SA,0,7,0 +gWQlTK3o29rZGlw2YLUnhA,2008-10-08,TaLnv40D99JimeXXt89-oQ,4,"Whenever you want a refreshing drink, go to Tea Infusion. (+ positive, - negative, -/+ neutral) + ++ Comfy tables and chairs. It's a bit like a coffee joint, a place to sit, relax, and talk with friends. + ++ The tea selection is AMAZING. I don't drink too much tea myself, but I know my friends like it. They have fresh tea in boxes and have a very large assortment. + ++ You can do so much to your drink. Blend, ice, hot, boba. I like to get smoothies (they also put green tea in their smoothies) with boba. It's delicious. + +- Location. A place like this should NOT be sandwiched between stores in a crappy mall. It would be better in a shopping center, away from Tempe Marketplace. + +-/+ Food is alright. If you're looking for a snack, good, but if you're looking for a decent sands",review,Ovac_Bws19DOy2_ai3WzeA,3,3,2 +08OcGan0xiT6I_oJ2loLMA,2011-09-08,r1zdRc_ZfYqu16BB6TlMdw,4,"Love shopping here! It's pricey, so I don't do my regular grocery shopping at this place, but it has a lot of unique, gourmet options. It's a fun splurge!",review,Od-H9HkTG4PgWGJP4_pFGw,0,0,0 +1NZLxU5WvB5roPFzneAlLw,2010-10-27,-3j0mEzgdl57_PKfnmw3wQ,5,"This place is such a delightful treat. Not only is the Barrio Cafe in what some Phoenicians would called the actual barrio, but it's non-descript on the outside and purely magical within. Not terribly difficult you keep your eyes peeled, Barrio Cafe is one of the best Mexican restaurants in Arizona and is a must try for any Phoenix local. + +You really can't go wrong with anything on their menu, although their seafood offerings are my least favorites. I am in love with their conchita pibil, which is their slow-roasted pork and they have the best made-at-the-table guacamole in all of Phoenix. Their food is the kind of special occasion dinner that you and all your guests will be savoring every morsel, but save room for one of their delectable desserts! I'm a fan of their flan, in particular. + +Service is spot on and it's usually pretty packed, so come as early as you can or face a semi-long wait at the bar. Don't worry though, they've got great margaritas. This is the place Tempe's Mucho Gusto wished it could be some day. But it probably won't.",review,zgCO0TnkvfohTmwPTwP7Ew,0,0,0 +EKzMHI1tip8rC1-ZAy64yg,2008-10-29,9IoWmskJG2sz7hEFAfqV3g,4,"House of Tricks is a great place for dinner if you're looking to go out for a special occasion. It's not somewhere I'd go on any given night, seeing as how the bill is about $100 for a dinner for two. + +I appreciated the menu having a good deal of seafood on it, as I don't eat any red meat. We had the scallops as an app. - while the serving was small (as expected), the scallops were the prettiest ones I have ever seen! For dinner I had the ahi tuna - it was WAY bigger than I expected, I couldn't even finish it - but my date didn't hesitate to finish it for me. + +We sat outside as the sun was setting. The atmosphere was pretty much perfect except for one thing. We were seating next to the concrete wall separating the restaurant from the street. If you're sitting at the tables next to the wall, I'd say it comes up to your elbows. Anyway, there were ants crawling all over the wall and it made me kind of uncomfortable and itchy. + +Our server was a young guy who could have washed his shirt a few times before wearing it again. Otherwise, he was pretty cool - sort of a 'no sense of urgency' kind of server - but we weren't in too much of a hurry anyway.",review,BPde0dz-vM4_fZCNPRT8sA,5,7,4 +DmkTDze8ruJr6o2f5GAvJA,2011-02-10,HQUI88wG-rKVwGuMkuhZZA,3,"I am slightly confused as to what this place is. +Is it a coffee shop? yes. +Is it an ice cream parlor? well..yes. +Is it an antechamber for the hair salon upstairs? kinda. +Seemingly the Pink Spot *giggle* is trying to be a few things at once, and vaguely succeeding at those goals. +I like the Pink Spot *giggle* for a number of reasons: +-location +-convenience +-ambience +-selection +In all honestly it isnt the best coffee shop that the area offers, but It's another option- and that my friends, is a corner stone of capitalism: consumer choice. +Now I won't be making the Pink Spot *giggle*, my local haunt, that spot belongs to Lola, and I would never cheat on my beloved tranny. But for those special nights when I get the strange urge for simultaneous brain freeze and a scalded tongue, i'll go down on the Pink Spot...*giggle*",review,pv82zTlB5Txsu2Pusu__FA,8,9,12 +6Kon3cR5ZEm5rmYKlpcfcw,2012-11-23,IMvkZV_IRuPohmSW7VcGPQ,5,Very Hip Hotel and Comfortable ~ Amazing location ~Great Staff all is good at the Valley HO !!!,review,6rAzupZ7IYIxkjxpV96A8A,0,0,0 +vWnlScr9y2F6_ctDJZ6XLg,2010-09-10,s_Axvp77G4vYn-l86Y9qrg,4,"I actually have grown to love this little place. Their coffee is good; their breakfast burritos are absolute heaven. Made with provolone cheese, these burritos have a more mellow and sophisticated taste than the average breakfast burrito you'll find drowned in yellow cheese. + +You can get a Big Ass Burrito, or a Half Ass Burrito. Personally, I don't like to do anything ""half-assed"", so I opt for the Big Ass Burrito that, although adds circumference to MY big ass, is soooo worth it in the morning when you want a laid back spot to enjoy your meal and coffee (go for the iced). + +They also have an art exhibit /sale right now for the month of September with awesome aviation pictures printed on canvas. Amazing art to enjoy as you sip your coffee.",review,vN25DTdMDr718zMCAgJvQQ,0,0,1 +lktu5JPDlQUG-7cV7gOzDQ,2009-08-15,_Bqoydi_j47Nwj5eQS7QqA,4,"Cartel is a coffee world unto itself for downtown Tempe, which is void of many non-alcoholic places to hang out. Situated in what seems to be a motel from the outside and a garage on the inside, Cartel can satiate your brass tax coffee fix and your espresso lust for reasonable prices. + +The coffee is great. Period. They roast the beans themselves, know way too much about coffee and are proud. The espresso, in whatever form you get it in, is rich and nutty. The toddy (cold brewed iced coffee) is strong to the point of me jittering out the door from a small one. The teas are various and steeped in a cool manner and timed according to their type. The vibe can come off a little pretentious sometimes with all their rules and such, but they are selling a great product and the rules help distinguish them from the crowd. + +I like to hangout here for an hour every week or so, good people watching, the pretentious guy behind the counter is good to listen to if you want to hear people getting so-so advice that they didn't ask for and my professors come here so it is a good place to catch them not in work mode. + +My only complaint is that they need to find a way to get a bike rack closer to the door. My only other complaint is that they could have more snacks available, I would love to dip something baked in their coffee.",review,N1Q6HiZvnZHjNU712Gymqw,3,3,3 +qecLHHzAwgkkeA1bG81vmw,2011-08-29,QKwo9xyYIiI6gdbCnFCKhA,4,"3 stars for a great happy hour. 1 extra star for having happy hour 7 days a week (from 3pm-7pm). If more places did happy hour every day of the week, I'd be drinking and eating all the time...oh, wait. + +Anyway, here's the happy hour download: +-Wine by the glass: $2 off +-Domestic bottles: $3 +-Draft beers: $4 +-Sangria: $4 +-Specialty Cocktails: $7 + +In addition, they also have multiple food items at the $4, $6 and $8 price points. + +We sampled the ""Lemoncello"" (in quotes because it should be ""Limoncello"" - note to management) martini as well as the Grapefruit Basil Fizz. Both were delicious, although the basil one was definitely the best. For food, we had the spinach artichoke dip and the arancini (rice balls). Neither was amazing but a great value for the money. + +I thought the service was attentive and efficient, although the food runners needed to learn which spot at the bar was which table number since they kept delivering other people's food to us. + +Finally, while this has zero impact on my review, there is a very bizarre picture of a dark-haired shirtless man with dark chest hair in a very flirtatious pose hanging in the women's restroom. As my Facebook friend pointed out, it looks more like bad 80s porn than restaurant wall art. While entertaining, it probably makes sense to replace with some generic pic of the Colosseum or something!",review,HOleI3jz1MLNUJ6cc1x0Pw,1,1,1 +Pfb6VOIiroqDWOebfgWGPQ,2007-08-04,cq4ZcJwr-MUYgxLuWElA2g,5,"PCG is the restaurant by which I judge all others. PCG is totally dependable, always excellent. Service is always good, food excellent. i have eaten here probably 20 times and have never had a bad meal. + +Although the food is not ""challenging"" in that there are no weird flavors or textures, if you want a great nouvelle American meal for a reasonable amount of money, you need look no farther than here.",review,D9aj6AjCyLp-zp8fozL8aQ,1,2,0 +3Q7vtF_cdHGyp2JOlKcu-Q,2010-08-28,p95EFdew2gfMyJhC0IS2Nw,5,"cant go wrong with a Double Double, fries, and a shake! Always good. Great service. I got some cold fries once, called the corporate office, they sent out some gift cards for our meals, then followed up with a thank you card as well. Not to mention they sent a coupon in a Xmas card that year. You",review,DwU7KVfebA70AlVtX0iOWw,0,0,0 +CRvVvR6aE1eWVRtzQ0UC6g,2011-08-03,7kWWBMZnuesf4osMqvxHtg,4,"Great great great tacos! +I go to a restaurant for the food first. As long as it is clean, and Lulu's is, then sitting in, what looks like a used McDonalds booth, doesn't bother me a bit. Afterall, it's a taco shop! +I like the fish tacos (the small ones) and I usually order 3 of them. I like how they are made and it reminds me of what you can normally find in Mexico, not at these chain restaurants. +The Ceviche tostada is really good too, but is difficult to eat, so don't wear your sunday best. +Not in the mood for fish, then try the carne asada tacos or any other kind for that matter. + +Lulu's is a great place and a break from the Americanized Mexican Food, we see everyday. + +Enjoy it for what it is!",review,j2eMum97Tm37YDRIFtQ44A,0,0,0 +Vn8qcaX64fkl8vByCsSvIg,2012-02-03,IXEe6N49j-pY85wy9qkcFg,5,"This place is very good. I have dined here for breakfast, lunch and dinner, but Sunday brunch takes the cake. Food is all extremely fresh, and tasty. The best time to go is when this place gets cranking, the style is smaller portions of the food, that have to be replaced very often when busy allowing for extremely fresh food. Asian food is always good, and the gentlemen behind the line can do custom stir fry for you. Italian station has fresh pizzas, that once again are made fresh for you, or order a custom calzone like I do. Mexican station always has the staples, but recently had crab stuffed poblano rellenos!!!! . Berto's gelato with like 16 flavors is a great way to end your meal. If you like buffets, do yourself a favor and make this your number 1!!!",review,QNzDmxyhQjS0wwS2zNACNg,0,2,0 +s1IkTuTdWmPunObMizXxSg,2012-06-15,90K80SYtVN-blK3FrNqPNg,5,"Pizza Venice has, hands down, the best pizza in the Valley. In my mind, they've got the best bang for your buck with the XL three-topping pizza deal. Get that with the garlic crust, and you're buying pizza nirvana. It doesn't hurt that the owners are incredibly friendly. Why would I even consider ordering terrible chain pizza when I can get a great pizza for a great price from a locally owned business?",review,ddr63wQ7CdByADPnHNr4-w,0,1,0 +uEJQSIjWui-TDWXaGlcqyQ,2010-07-01,QhRnY1Rz-zvsY66mgrW2sw,4,"I tried to give full marks to Lolo's having heard all the hype. Realize that I am coming from Louisiana and also New York City where one can obtain the namesake specialty rather easily and in variations. +Instead of telling you all the cliche things that you will need to know about Lolo's, I am going to tell you why ultimately I did not ""drink the kool-aid on a 5 star rating. + +Better pricing is the missing star. I found the place to be on the expensive side for what you get. It is perhaps a part of my relationship towards this home cooking that makes me feel this way. But please note: Service was great...but don't plan on being in and out for a quick lunch unless to do a to go order... Also, these waffles are wonderfully flavored. I detected a nice hint of vanilla and a touch of cinnamon. The chicken is nicely seasoned...nothing greasy about this batch. I will also say that if you are not used to Kool-Aid, or if you are like me and used to be able to water that thing down until the original colour had faded by simply adding batches and batches of sugar to it.... You will be in for a diabetic shock! Here's what to do: Ask for a side glass of water and then inject some of the kool-aid into the water. My favorite is grape drink!!! + +I am hoping to get back to Lolo's to try their gizzards. I had the basics on this trip and it is really worth the return trip. Bring your friends and go and eat late there on Friday night!",review,2XCsVpAMsGUykrM-BBFEXA,1,1,1 +NleiJA9dpfKjhxe0cCD1MA,2008-04-17,7tg3X6RPdDYiyracX4YIuw,1,"We decided to hit up the ""Wine Down Wednesday"" that was happenin' at Tastings courtesy of KYOT. Here's what went wrong: + +The event is from 6-8 so we arrived just a few minutes (3 maybe?) after 6 so we could get a spot just in case it was hoppin'. We walked in and the hostess (she looks like she's possibly the manager or owner) asked if we were there for the event and then pointed us towards the back room where the event was being held. + +We walked in and there were about 7 tables and there were people at them all already. Talk about early bird gets the worm! We had to wait for about 3-4 minutes for the waitress to finish with a table to find out if we could sit on the patio for the event. She said yes and that she would be right out to help us. In the meantime another woman and her friend also took up at a patio table nearby. + +20 minutes later the hostess/owner/manager looking woman came out and asked if we had been helped yet. We said no and she left only to return with a small happy hour flier menu which she just handed from a distance and didn't even come over to our table. I know you're wondering why I would wait the 15 minutes, but I really wanted to see just how bad the service was going to be and frankly, I just wanted some good $2 wine. + +It's been about 5 minutes and the same woman comes back with full, detailed menus and I asked if the happy hour flier was the deals for the event and she said yes and then asked if we were ready to order. Um, you just gave us the menus 10 seconds ago... + +By now I'm ready to just order and enjoy the meal deals from the event. I look over the happy hour flier and I see some app deals. They said there was a specialty appetizer menu. Not so much, but whatever. I can deal with that. Then I see the drink section. The claim for the event was $2 glasses of wine. I was excited to try some nice new wines on the cheap, but again... not so much. In reality it was $4 glasses of house wine which only consisted of three different wines that weren't really what I was looking for. By now, the other women that were outside decided to leave having had enough of this shenanigans. We decided (after 30 minutes since we arrived) to go next door to Sprouts, get some apps, and have our own ""Wine Down Wednesday"" at home. + +I bet there are plenty of people that will have good experiences here and continue to visit happily, but this one experience has caused me to write them off for good (which I don't usually do after one instance). I wish that I could actually review their wine and food, but the service was so poor and substandard that it's not worth giving them my money. I understand if the food isn't good at a restaurant - some are just better or more talented than others. However, any business can and should have good customer service. I think this is where the cliched line of ""if I could give them less than 1 star I would"" comes in... + +Oh yeah, and I slapped down a ""You've been Yelped"" card as I left. + +Take that Tastings!!",review,-Dof9NwAoQwRM-GVPZk5zw,6,7,6 +2bdKR3l4o-S1CscLqqnvVw,2011-12-09,AOTSm0ttv6VTWYTHkOdSnQ,1,"Bad quality ingredients. I ordered a red curry beef and the beef was awful, hard, I tried to chew it for a minute and decided to give up.",review,MhybZXjI3PrrJ2l9QJ5o2w,0,0,0 +rDvz5jX65gpfONFu7er9Tw,2010-10-11,-iEBSKeCRLo7xPww6C8T_w,5,"My son comes here for the tacos but I am all about the chile relleno. I never had one with potatoes inside, but oh my, this was the best! My only recommendation would be to order it dry, with the sauce on the side. I am counting the days until I get back to AZ. The new location is so much closer to us, I plan on trying all of their menu, but....but... that chile relleno is ....calling....me.......! The tacos were very very good though.",review,byIGqd1Chrzuv8RT0al35A,0,1,0 +8SjO3b-87uN2jXVXYNn47g,2012-08-01,kHmQ4IJQGm7dOfOtSGrhnQ,5,"I've learned to expect very little from airport restaurants. Now I've been ruined - I went to Blanco and my paltry expectations were blown out of the water. Prompt and attentive service, flavorful and delicious food, and a delightful assortment of drink options. I'll have to connect through Phoenix for the rest of my life. + +I had the grilled shrimp salad, which was fresh, flavorful, and filling. I also had the sangria, which was pretty good. My friends had tacos (fish and carnitas); they practically licked their plates clean. Try the rice - it is a rich and delectable treat. + +An added bonus: They were patient as we sat for three hours waiting for our connecting flight. If I ever find myself in this airport again, you can be sure I'll make my way here.",review,Lsygjb8x4QDIFOY6mbNmrg,1,2,0 +-h-q6zTIdPlkz9BDP11sBg,2012-06-28,5mWSXhdN8k6ZrTIWCBzD6w,5,"What a wonderful restaurant. I can't believe each dish is 475 calories or less and the portions are still a good size. No sauces, no bread, no fries. The fish tacos were delicious, succulent, with just the right amount of spiciness. The grilled, boneless rainbow trout was fantastic. The pane seared, sushi-grade Ahi Tuna salad was to die for. And leave room for dessert....yes dessert. Only $2.50 but arrives in a shot glass size bowl. just enough to stave off the sugar craving. +The decor is elegant and sophisticated. Great for an executive power lunch or a date to impress. menu changes 4 times a year and features local, fresh, in 'season' food. Very inventive menu starting mainly around $9 (flatbreads and sandwiches) to $16 for lunch. Wait staff is knowledgeable and attentive. +Great food, great atmosphere, great for your waist line. But even if you're not a calorie counter this still ranks right up there for the food quality, taste and presentation.",review,DfsrWRuuiET_-CEupb5NdA,0,1,0 +rLqvHfvtojxd_DtM9kqw8g,2011-03-28,MAcuAxaVOW7e7wg-phyUZA,4,"This is a pretty cool store! + +I've recently found my artistic spirit through an old coworker, and I paid a visit to Utrecht one day to pickup some pastels and a sketchbook. They had all kinds of great stuff here, and the prices are very reasonable. + +The staff was pretty friendly, and helpful. + +I am not an artist, and I have no idea what I am doing with any of the mediums, but I didn't feel ashamed to ask questions. + +The location is a bit out of my way since I live in Scottsdale....and we found a store a little closer, Arizona Art Supply. BUT....this store is worth the drive and worth a visit.",review,8JC-Yb3UDUv2FUl5ym1nVg,0,1,0 +dGcVT0WGenhh8Np76ta6AA,2012-11-01,wZHpYsC1p07_zf6Grz8qrQ,5,"Stopped in here for lunch today joined by Mike C. & Robyn N. This was my third visit ever to a CB & the first time to this one. I went with a Reuben Sandwich Plate, which included a cup of Cole Slaw & a cup of Beefy Cabbage Soup. The service was good at this location, the atmosphere fun, the food delicious & the prices reasonable. 5 Stars! :-)) + +Reuben Sandwich Plate $8.19",review,ikm0UCahtK34LbLCEw4YTw,1,2,2 +9mx6uFh_lSj6SOSW4fMWWg,2011-02-16,GIQgTbUtJQaxefMg-Q2n8A,5,"I have not been bowling in 24 years,so you can imagine i was worried. But, this place is clean and fresh. On certain nights,(Monday)and a few others you pay a $5.00 cover charge,then everything is $1.00 .Food ,drinks , games and most important bowling games. The instructions were easy. We got shoes in our size then went and picked out a ball. Lots to choose from! Lots of fun!!! It was a $20.00 night for 2 of us. The workers are very helpful and Friendly. Bathrooms were also clean. I did not see them spray the shoes with Lysol so that was a little gross.But, other than that it was a great time.",review,F6QsMoJdvtohlbnST-fDyQ,1,1,1 +w19cemjVR8u02PgjFpJ7Mw,2009-08-17,RaWAU0yBTffXrOzPRAEnWg,3,"Their beef gyro's are delicious! Great portions for what you pay. And their falafel is really good too. Not a great portion it seems for an order of hummus, we got like one piece of pita. Just didn't seem to be much there. We always do carryout, and either the bartender is really nice and funny, or just werent very friendly.",review,Kyc_V-2G77tRfwJsBxwZ4A,1,1,1 +uEJQSIjWui-TDWXaGlcqyQ,2009-09-27,viX90WUMQ_jRTK_FTQYszw,5,"Maybe it was the authentic Gospel music in the background, but our ears were filled with a heavenly chorus as we feasted upon the sacred, and until this morning unknown, pairing of chicken and waffles--a combination rivaled by only bread and wine in it's ability to induce a religious experience.",review,318bjHL6yRQIo4hy4DzRPw,1,1,2 +hW0Ne_HTHEAgGF1rAdmR-g,2012-05-30,hUIEsrEvC5L-0B45_8bMtQ,4,"My home airport, so with work travel, I'm passing through here very often. I prefer Terminal 4 because of the variety of eating/drinking options for pre-flight enjoyment, and 2 and 3 are just OK and don't offer so much in amenities... but they're less crowded and that is a nice plus. Also, free wifi! + +I rarely get lost in here and to be honest, security here has never been an issue... lines have been long going to gates in Term 4 but they move fairly quickly. + +I don't do body-scans (my personal choice), so if you choose to do the same, when you put your crap in the conveyor belt and you note they are only doing body scanners, alert the TSA person and let them know you'll need a pat-down (or a groping.. feel-up.... whatever you wanna call it ;)). Electing to do this takes me longer to get through security, but I prefer it and plan ahead. + +Also, if you have a digital boarding pass on your iPhone or Android and go through a *different* gate (they are mostly all connected via runways, etc) due to the line at the gate you're supposed to go through, note that they may not be able to scan your digital boarding pass... this happened to us once when we went to another gate with a significantly shorter line.. luckily they had the kiosk just there so I ran out of line and printed them out while hubby held my spot. FYI!!",review,A99dyhEqcd_yXKPfBWeZHA,1,3,0 +1NZLxU5WvB5roPFzneAlLw,2010-07-23,lJBRh-p_pYQ_xXmw3aqV-w,2,"Sorry. I'm from Southern California so I'm used to great Mexican food. We were excited to try this restaurant, since we had read some great things about it. However, the waiter was pompous and the food was mediocre. We were in a party of four and we all ordered different meals. The guacamole that was made from one avocado was $11. The restaurant is in a scary location. We had to park in a back alley. It was agreed that the experience was a bust. If you're in the area and want great food, go to Lon's at the Hermosa, Elements at Sanctuary or True Food Kitchen.",review,2-W8eFdPPLxS1nD50swCUA,0,3,0 +PLLM4iCYy_OrT-53IZ88Qw,2010-07-10,09WZtQfWc2PO5LQ-uuUoag,2,"Phoenix is lacking in good Indian restaurants, and that is compounded if you're in the mood for South Indian food. Cafe Krishna is a perfect example. I would come here again on occasion only because I often crave South Indian and there are no superior alternatives. + +I ordered the sambar-vada. The vada was not as hearty or flavorful as I would ordinarily expect. It was also served somewhat lukewarm. The chutneys were mediocre. The vada was a bit too soft for my liking. Dosa is harder to screw up, so I enjoyed that a bit more, but still nothing out of this world. + +The service was poor, unprofessional and a bit chaotic. The environment and atmosphere were good. I was not impressed by the cleanliness of the bathrooms, which for me is always a bad sign for what must be the cleanliness level of the kitchen.",review,17PPxx8RxjOUD_nQZ1aHEw,0,2,0 +V6BYjHM9SnXscfkln3hCdA,2009-04-10,2RYm11CFei503KuwXihT6w,2,"What happened to my sunday love the Orange Table? First off I have been going to this restaurant for sunday brunch forever (they have delicious mimosa's). However recently a friend of mine and I decided to grab some quick and yummy dinner here. The portions of the appetizers they are now serving to their patrons is just sad. The brie app I so love at this place was enough for two bites per person,which i assume they thought was ok because they cut up like two apples for us. If i were interested in cut up apple for an app i would have stayed home and eaten one, not gone to a restaurant and payed $10.00. The rest of the meal was just mediocre to say the least, for a restaurant that only serves sandwiches you would think they would be absolutely incredible. The service that night was pathetic the staff there seemed less than eager to be working for Orange table. Will not be in a hurry to get back, especially when next door AZ88 has delicious food and the staff are happy and upbeat!!",review,xxMoW5Xj8mvuqoawsK-l6A,1,2,1 +K2_Hmmo5crTYWiT_1sWnfQ,2011-04-23,fgEMK0d0upxfalu9JFOYTg,3,"This place is solid...solid...solid...plus its right across the street from my job...the crunchy tacos with chicken, corn salsa, pico de gallo, green salsa, cheese, lettuce and guacamole...yum yum yum...I love their salad dressing so I like to put it on my tacos too! It is very busy during lunch so expect there to be a line...but do not worry they move quickly and it will not take too long! They are very friendly there and I cannot complain about a thing...I just cannot say it compares to some of my 4 and 5 star reviews.",review,X_kPh3nt0AJPNPHye2rTlA,0,0,0 +nvaAUTTl7oqiJDhuimNG6A,2011-08-17,pFZNL92ukdwwBUfxd1kD3w,4,"If you're looking for a good meal with solid service you'll find it here. The menu has something for everyone, too. If you like to go out for lunch or brunch, this is a great place to go. Friendly, fast staff helps make the experience that much better.",review,vmvCjcHVTFgLG7rFSuGQjw,0,1,0 +CKjcewWeWvdJ7TzOQbZOIw,2007-03-27,exAq-cDua-q--O0TfaEtig,4,"This is was, WAY out of the way for me. But when I heard about That's Amore, I just had to try it. What can I say, I love gelato! Anyway, one afternoon I talked the kids into a Sunday drive with cool gelato as the reward. + +While That's Amore gelateria is located in a strip mall (what in Arizona isn't?), the taste and style are pure Italian. Credit the fact that it is owned and operated by two sisters and their husbands who emigrated to Scottsdale from Italy. The murals of Italian cities on the back wall were even painted by their father, who they brought to the valley for just that purpose. How cool is that? It might not make the gelato taste better, but it almost made a ride to Pinnacle Peak feel like a trip to Napoli instead.",review,lC4X2crUuxT9Ac9BlOX4Uw,3,2,2 +vH_WlMNtzx7Dq6Li5ecWEQ,2012-10-26,3x9UyudXapyrSJvNa-aPrQ,4,"I've been going to this Costco location since I was a tyke, when it used to be called Price Club, and my parents carted me around in their giant warehouse sized shopping carts (Those were the days, and those huge carts were the coolest to sit in!). The employees here are nice and friendly for the most part, and there are employees I see when I'm here that I remember from when I was in junior high, a testament to the happiness of the staff here if they've been at this location for so long.",review,uZbTb-u-GVjTa2gtQfry5g,1,1,1 +d3MxUXS1b6U2P_gGuCO1-A,2011-12-23,xNPp5mEWC5EzUbu4fB2RPg,4,"Mmmmmmm butterrrrr. + +I'm speaking specifically of the Edamame with truffle butter. We probably could have eaten a few orders of these. + +Sugar cane pork. Ohhh yes. Falls of those teeny little bones right into my mouth. Very finger foody. Delicious. + +Spicy ""Sirring"" Shrimp. Comes out sizzling and spicy and delicious. As the server mentioned, ""Sirring"" isn't a real word, but who cares! + +These three were the stars of the five tapas that we chose. I cant really remember the other two, so they clearly weren't that great. + +The atmosphere is cute, artsy and pretty comfortable. The music was a little low, so we could hear the conversations of the couples on either side of us pretty easily. Kinda awwwwkwaaaard. + +I would for sure return.",review,palND-kF1qpMLhkcgAnSxA,2,3,1 +ytcm2DXuJWKPTqCtr6uJ4A,2011-12-15,Yn2priuHe62bh0IhqG68LA,5,If I were to ever get hooked on crack... I would want my crack to be these amazing donuts! They are delicious and addicting.,review,L3QJNJhvvq0dUGjLx8ZERw,0,1,0 +hnw-5xX7i4C1po5X9i686Q,2008-08-29,g2Pwq4ou4YW06jhPNM1o5w,4,"I went to lunch with my buddy, Rob M., to a place called Uncle Bear's Bar and Grill. It was actually pretty cool! I was surprised because it is in one of the more LAME areas near my house. Namely ""Warner and Cooper"". + +When we entered however, it was anything BUT lame. Dog bowls on all the tables filled with mutant peanuts. Granted, it was lunch, but there really wasn't more than 3 other groups there. This led me to believe the food/service was bad. Not at all! This place rocked! + +We shared some nachos in a heterosexual kinda way, and shared manly stories about football before shoving off. By the way, Rob, you owe me $15.00!!!",review,qwu5B9anH4AlEtau0K-6aQ,7,8,10 +Xq1FtLSV54Spf-HfONc1aA,2012-04-09,K_30eA1aj9scDye5f67XwA,5,Best donuts I have ever had.,review,kRMZ5hV-3OVkxdSh6YNw0A,0,1,0 +YQDQyxrp3z6eyUKXwSD9hw,2012-08-16,M_1QFMdFgnp89R8o0jUqxw,5,"Considering my experience with a previous dentist, I was hesitant to try a new one. But my experience was absolutely the best. Foothills Smiles is the best dentist I have been to in the valley!! They are professional, friendly, and reassuring allowing their patients to feel comfortable during the visit. Most people dread going to the dentist, but I feel motivated to continue going to my 6 month check-ups!!",review,PxpTsxoOIB2j9WL_hg9yKg,1,1,0 +lquFtAcCRSpNYAN1qlxWhA,2010-02-03,s1dMa-5CkwBQtWoedfXPdg,5,"Vitality Health and Fitness is a small gym that offers personal fitness, group fitness and fitness classes. The classes and the training programs are all varied, challenging, unique and fun. The members are positive, full of smiles and easy-going. The gym is not intimidating at all, the trainers are kind and build programs that suit your personal fitness levels, and the cost is VERY reasonable. + +My husband and I have been working out with Megan, and she's a doll. We haven't gone for very long so we'll keep you posted on the impending RESULTS! + +Vitality also offers nutrition and massage -- which we both plan on checking out! The owner is delightful and easy to work with. If you have any questions or concerns about your costs or the way you are being treated, she works WITH you to ensure you are getting the level of service that you expect and that the club/program can provide. The owner is honest and respectful, fair and reasonable. I think everyone should contact this club and see if it might work for them - you won't be disappointed!",review,x4eIi_YiwKj1pzcspeLt-Q,0,2,0 +vwh496Ag4oRFgR6Dw3Hilg,2011-07-09,ycqONNW2e-9wlmeI4PrtVA,4,"we come here once every two months for date night. the serivce is generally slow because these are students, but everyone is super nice and tries their best . luckily every issue we've had has been with confidence for the front of house stuff (speaking up, looking at you in the eyes) -- the food is always excellent generally they don't always offer everything on the menu but it's generallty the cod or sole. the filet is always fantastic. desserts are yummy. really everything is good. the price cannot be beat $15 for a 5 course meal. don't expect to get a last minute reservation, it's generally for a few weeks out. we like this place and happily tell others about it every chance we get.",review,6SP-1gM4JV1tXGEe1Tu45g,1,6,0 +Evg8IfqcHSyTPV9sLNhArw,2012-09-10,mfx1mMlppwU3Yz7wChT0eg,5,"After 6 years of searching I have finally found Laura! My brows have never really been ""bad"" per se, but not great either...I have been searching for someone to show me the hidden potential of my natural arches, and Laura did just that. After only two visits she has groomed my brows into perfect shape and balance. Its funny how such a small change can make such a big difference! + +I also enjoy the quiet and private suite with the pretty chandelier to look at during my appointments...and she always has great music playing in the background too! + +Thanks Laura!",review,V_9r9zTqfXl1YfXqkZ2krw,0,0,0 +uI4YqMarUpchI4I3ZWgOGA,2010-05-25,2CkKyoydZDVLr4jHIWrcDg,5,"Just the facts re: full dinner experience: + +Ambiance: Thinking about redecorating the house to look just like Trader Vic's - unbelievable. +Service: perfectly charming, informative and attentive. +Drinks: I don't drink, so read every other review for a review of drinks. +Appetizer: Beef Cho-Cho - amazingly tender, it melts in your mouth. Great flavor. +Dinner: Trader Vic's Calcutta Curries: good & better when you mix in the variety of garnishes. fun to play around with the flavors. +Dinner 2: Chinese BBQ Flat Iron Steak: Amazing. Crispy onions, mashed potatoes and tender/flavorful steak will make you close your eyes and wish it would never end. +Dessert: (don't know the name) vanilla icecream covered in coconut + on a bed of chocolate sauce: simple, beautiful and tasty. + +Overall experience: the best darn dinner experience I've ever had.",review,XmpqbfSu9X7mjwJGUXTrAQ,0,0,0 +EuNV8_SReV_3KeET2Ums6A,2009-05-18,hxWDhtiM9KTvRfXGOlIDpQ,4,"I have been eating at Tokyo Express since I was teeny tiny. My fam used to go a few times a week. It's still the same and still as good. I have tried alot of the items on the menu. I like the regular terriyaki, the tokyo chicken, the sukiyaki, and the bentos. The bento boxes are a ton of food for only about 7 or 8 bucks. I would definitely recommend this place for to-go japanese or a quick rice bowl lunch.",review,Q-e5Kriu18oFX5orJkoNhA,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2012-12-06,7asKG4Bt_PXDE_5SZ1TxFw,3,"The last three times I have been here, the hostesses have been so incredibly rude I have to update and ding them a star. The last time was the last straw and we just left turned around and left. +Yes, you work at a popular property. That does not entitle you to be rude and nasty. It's weird as it seems to limited just to the front of the house. The waitstaff is usually great, food is great, and cocktails are top notch. +Whoever is running this place, its time for a sit down with your girls in the front.",review,slp8VQWuW0Dq_azDCAshCw,0,0,0 +x84ho2JtSqp3ZJ624Gj7kA,2012-07-18,Ny3ex7Iu7l_ScfwsYMgpuQ,2,I really wasn't impressed with the service or the food.,review,Bmzq_nkjYqp8aWn12RJdhA,0,1,0 +IDcXqa_9baqO286SdGHB7A,2011-10-08,08d24-DGFhaGVqkI6TaqQA,5,"Great Mom/Pop store! We've stopped by several times for some fresh produce and to get treats for the kids. We usually sit outside on one of tha picnic tables to eat gelato, while the kids love playing/petting all the animals. Thanks!",review,NoWhtugDv430JrfIFZLxmg,0,1,0 +3YrW77yHkp3JIyTGYCS_Nw,2012-06-23,dzAwZL5AELxjhlP0fm7foQ,1,"There was hair in the food. Not just 1 but 2 in the same Bhel Puri dish. + +The whole experience was pretty bad. There is no indication of how you order your food and when you finally figure it out the food does not taste good. We checked sodas on the order sheet and when no sodas showed up we asked if we were supposed to go and find our own sodas from the front of the store and were told that that was the case. + +Also the guy at the counter is down right dismissive. + +Pani Puri was OK +Papdi Chaat - boring, no flavor +Bhel Puri - boring and no flavor before we found the hairs + +Not worth the trip.",review,LIWGMn3Yz1LIUZXA-VzOBg,0,2,0 +azBHKHqif0NXO3xcALo5VQ,2009-01-11,tB1IkP_HQyNeFVl_VJYFCw,2,"Eh... the food was good but not something I'd crave? I had a chicken/swiss panini that evidently came with corn on it? + +EDIT: (actually it was the Adobe Panini: ""Mesquite turkey, fresh mozzarella, green peppers, corn relish and chipotle mayo"". I got called out that there wasn't anything on the menu I said I ate, got it a little wrong but the review remains the same regardless. Here you go Bob M.) + +Slightly surprised on it but, can't complain... it was good but nothing great. + +They have subs and soups too - I'd go there again if friends were already going but def not somewhere I'd really mention when trying to think of somewhere to eat.",review,8CNEh7fSbLwDuAKhLjDPKQ,2,2,1 +eXxULzJRIutN6wF1mQH2Tw,2009-05-20,nFGjVwIcpNi98KBzpUmF5A,4,"During the work week I have to eat out for lunch quite a bit and I get tired of paying 10+ for lunch. I remembered hearing something about Boston Market having a $5 lunch special so I figured I would go check it out... Finally there is a place that has good, somewhat healthy and well priced lunches! Your choice of carver sandwich with soup/salad and a drink, they have soup and salad and I can't remember the others but it was a pretty nice selection. + +You pay more at McDonald's for a combo and this is way better! If you are out and about for lunch I would highly recommend going here. I'm sure most people have eaten here before so the food won't be a big surprise but the price is GREAT! This will definitely be a go to for me.",review,XOxQEeYRZOPdJDqOHnhYig,2,1,0 +H91jZ9BiQZZ4_7OlEd6eQg,2012-06-16,bw7qfhQvm6JFo-G_gChl5Q,4,"Quality offering at a reasonable price? Check. +Burgers fresh and cooked the way they were meant be cooked? Check. +Great fries- 2 kinds no less? Check. + +This is a tweener restaurant-perfect for a great casual dinner. Not too expensive. Not cheap and greasy. Just right for that one day of the week when you want something in between. + +Enjoy.",review,agNzBnuOmGqfDL2oMBRAYw,0,0,0 +slO8j375ae2_Pd6PuyBLNA,2007-12-13,LqkM8dWx3tnUnmWkrh6B0g,4,"In today's environment of zero tolerance of drinking and driving (for millions of good reasons), its good to have a phone number programmed in your cell phone that is truly useful when you've had a little too much to drink. This ain't no 2 a.m. booty call. This is a call that gets you home safely and back to your car in the morning all for a few mere dollars that potentially saves you thousands in the long run. + +Yes, you can also call a myriad of other cab companies, but the thing I love most about Execuar is the professionalism that they bring to my front door each and every time they pick me up or take me home. + +Do they make mistakes, sure. Have they left me waiting for an inexcusable amount of time before, yes. But they have done their ""fare-share"" in managing those few situations. There's damn good reason they are one of my top-five speed dials.",review,CJkY0WOCNfCuv0HAbB2cjw,1,2,1 +heszpsyNiT3i8MEOk04sUw,2011-09-06,F1k3kZgBBm2YMAY_5Mrqig,5,"I went for brow threading. Yelena was extremely gentle and took her time making sure they were perfect! I just found my new ""brow lady"" and she's just across the street from my office! LOVE IT!!! Give her a try!",review,YeK95nGGvYsssVHzcWpmkA,0,0,0 +OdD1GuGNQ64ssJmMJ_D9RQ,2011-05-17,uxGRX_l3OgbAtBjUP9qu3g,2,"This is a cool place for low key hanging out, killing time, chatting and relaxing with friends. It is NOT a good night spot and doesn't work as an event venue like they seem to be trying to make it. + +I've attended 2 events there and its basically a disaster in trying to make your way through the 200-300 patrons they bring in. You get funneled in past the food trailer into the bar area which is packed with people standing among several oversized tables. Only if you've been there before can you figure out that you can walk towards the boxing ring past the crowd to get behind the stage and into the retail area. Once there you have to get a spot among the wares to watch the back (or the side) of the show that is going to take place facing the bar. Both times I stood the entire night with my drink next to a display of $50 t-shirts. Very nerve wracking and annoying. + +1. The old timey way they make drinks is very cool and the drinks are delicious but I have waited now 35 and 45 minutes each on different nights to actually get a single mixed cocktail. Its insane how slow it is. + +2. There are rules to what you can get at which station. One spot is just wine. Another spot is just mixed drinks. Lemonade - oh thats a different place entirely. + +3. They use the boxing ring as the ""stage"" for shows. Very hard to view the show there because of the odd angle its at. Both times I've had to stand in the retail area while the performers faced the seating/bar area (which only seats about 75 people). + +To pay more than $10 to see a performance at this place is outrageous. If the owners want to be an event venue they could do it simply by doing some rearranging and investing in some more seating.",review,bazh3LiYydXe3hvx3bF0Cw,1,5,0 +sbsFamEj5wDxNAjUKrMcSw,2011-07-05,EnIeH7-Chvf2RKj3q2EHcg,4,"I have been to RnR a couple times. + +Once during the NBA finals/happy hour. It was easy to get a good seat in front of a tv, the waiter was super friendly and the drink specials and food were pretty good. Nothing to really write home about. + +Then I went to RnR for brunch and the waffles with apple butter has put this place on my Fav Breakfast Places list. Not only did it taste amazing but the portion size was perfect and it looked damn pretty. If only the mimosa price there was pretty, doesn't everybody have cheap mimosas?",review,YuuzQtcqBpuOzi8ZJqfzTg,0,1,0 +CvRGjwCsrQs1DYYL3z8R7g,2011-08-11,ONeZqYTFWlmq99DgFeABEg,1,"I had never been to Rainforest Cafe and I'm glad that I got to try it because I love trying things at least once; however, this will also be my last time going there. We'll start from the beginning: + +The atmosphere was nice for the ""jungle"" but it was so loud that I could not hear my wife talking to me. I felt that I had to scream at her to talk. Our waitress was nice but didn't check on us often. We barely understood her either because she speak loud enough. We got our drinks (ten mins later) and my iced tea was good but my wife's chocolate shake was gross. Too much chocolate syrup and it was expensive!! We sent it back so she could get water another 10 mins later. Food delivery was quick and my burger was pretty good but it was plain and $12!! Jeez, so expensive for something so plain!!! I got onion rings for an extra few dollars (they were okay but worth the extra few $$$). My wife got an extra plate of fries and they were a few bucks but they didn't give her more than ten! I like the atmosphere of the restaurant and the theme but they are completely over priced!!!! Not worth it at all! The food was mediocre but left me sick that night. + +Not as amazing as I thought it would be after seeing it many times in Vegas...",review,ghcW4xVywnbaAEq5eW2slA,0,0,0 +FkHhy6kWeoJf0xJTqzRWmg,2011-10-20,BuEbV3okQCWocCBYODgw_Q,3,"I have to say I was slightly surprised when I went to the State Fair this year. Now I wouldn't go as far as saying I was impressed and it's a must for families or friends. My sister and I won free tickets to the fair and reserved seats for The Band Perry Concert off the radio and thought that was a good enough excuse to head that way. We got their around 5:30pm and it was relatively easy to find a somewhat secure parking spot (for $10). + +We went on a Wednesday so I imagine it wasn't as crowded as a weekend tournament, but this day happened to be a day where you could get in free if you bought three canned food items to donate to St. Mary's Food Bank. Good way to save on admission. I think I would be a little irked if I had to pay $10.00 to get in on top of cost for game/ride tickets and food and everything else. The other nice thing about going on a Wednesday is most of the games and rides are half the # of tickets or 4 tickets per game/ride (not all of them but the majority). + +Lines were short and you didn't have to wait much for anything. They sell some pretty strange fair food - I mean I can't even imagine eating fried butter, but I did have a fried Reese's Peanut Butter Cup which was pretty good. + +We went around 7:00 into the Veteran's Memorial Coliseum and it was easy to enter and pretty full once we got inside. We got moved to seats closer than our original section. This is a one time adventure for me and I am glad we went but the fact that it was pretty much free is what made it appealing.",review,5fPTQulecWNd_j787MFEKA,0,0,0 +PEFUYmqfqy93_xyCnSfGNg,2010-02-03,ZLhToDLEyZmXZ40bh87XzQ,5,"This is my go-to spot for mani-pedi's and brow waxing. They do a bang-up job on my poor feet because it takes a lot to get those pups looking good. I have never made an appointment but never had to wait more that 3-5 minutes to be assigned a nail tech. +They recently got new massage chairs that don't grind your bones or shake you to death like some chairs do. Also, this is one of the best places I have been for a brow wax. My sensitive skin has taken a beating at many other places but never here. I don't know anyone by name but the employees are all very nice and skilled at what they do. Oh, and they are typically $5 cheaper than anywhere else I have been for pedicures!",review,wC1CPV5bf--bDLtlhNSPLg,1,4,0 +I1rvqU2k5UQGo2lGdY6hyw,2011-10-30,g1lY9x17jjc0MG304MTspw,5,"In Phoenix for a concert and felt like Thai. Found this place on Yelp! and decided to check it out based on the reviews and the fact that it was near the friend we were visiting at the time. The restaurant is in a strip shopping center that we never would have noticed (or found) had we not been looking for it. Oh, but what a magical dining experience! The cashew chicken was the best I'd ever had (and we eat Thai a LOT!) and the chicken satay was exceptional. Loved the veggie Pad Thai and my husband got a vegetarian (tofu) curry dish he loved. Wish this place wasn't 400 miles from my house. I'd be eating here every week!",review,FyA9xkaXy_cjtYYYnCTY_Q,1,0,0 +Sqt7_F2D1G2c_pwH_9R7ww,2011-06-19,763n3ZAZvik0NhSJR-pB9Q,5,"No attitude, efficient lines, clean, well stocked with flat rate boxes and other sundries????? Is this USPS or a dream? + +Writing Yelp reviews for post offices seems like... weird, or, something, but it feels so right for this location.",review,W9h1ufjEzDp7THyAqRw65g,1,1,1 +qK_nxiXCxjIP8Hd659bhvA,2010-10-18,djv9d94qGF4ego_N41-I9A,1,"I don't like the pizza hear and if you go for lunch there are no specials by the slice. The ranch tastes bottled and tastes gross. The ingredients are not fresh but rather canned (also gross). The chicken wings were not that great either. The atmosphere was nice for a casual place with a couple of flat screen TV's on the wall. I will not be going back to this place, so hopefully they get better soon since Barro's pizza is going in the area soon.",review,EP3cGJvYiuOwumerwADplg,0,2,0 +2mcmuAvpNIJuV3gV0v9v2A,2012-06-18,XE-YKyZ61oBfluP-XVddCw,3,"This was my go to Vietnamese restaurant for pho and rice plates not because it's my favorite but because of convenience. Pho Avina is closer to me but that place is terrible so I end up going to this place. It also helps that LeeLee Supermarket is one street over so I get a Viet fix and my Asian needs shopping in one trip. The pho and com tam is average. The service is fast and friendly enough. I do find it a big stingy that they don't bring out the bowl of broth/soup before you get your rice plate unless you ask for it. + +All in all this place is fine if you just want an average meal; nothing to rave about here. If I felt like driving farther, I'd definitely hit up Pho Van in Chandler for pho or Com Tam Thuan Kieu in Mesa for com tam.",review,1KQaefZNzcphPA-K28gHoQ,0,0,0 +ycBa5cnSa6hgdB7rb9rdiw,2011-12-27,pY4QTKUcH6bpBtl4yeOMaw,4,"good selection, they had pretty good prices too",review,KucBnMrhalzxnD9AWrxwYQ,1,1,0 +muCl5p-9ut1sY0aKeUeRhw,2010-05-15,TbhbsMrRtLijF7sysHELVw,4,"I have to give major kudos to our server here. We rolled up at 9p per the Yelp listing happy hour times. Come to find out that 9 is the weekday happy hour and Fri/Sat's happy hour doesn't start until 10. We we're okay with this but our server spoke to the manager without us even complaining or asking him to and honored the 9p happy hour because of the Yelp listing. + +Now to the food and drink. +If you love cheese, their cheese menu was very large. We got several of the cheeses, the Tres Freres was my favorite (non-happy hour item though). The pork empanadas are a must and the happy hour drinks were very good as well. The strawberry sunset martini was very yummy. + +I'd say the happy hour items are where it's at overall. The food was great the drinks were good. Really given their menu and atmosphere I was really surprised that it wasn't more busy. It's kind of sad to see many of the Phoenix area restaurants kind of dead at 9pm on a Friday night. I'm guessing if it were located in Scottsdale that would be a different story.",review,MTu3hVSZkK8nkPhqT2FIDQ,0,1,0 +Vak7jP7fu6LUxQDZmSZE3g,2011-09-07,yTkQwtKPDj1o4-5c47uFbQ,3,"Person 1: ""So, where do you want to go to lunch?"" + +Person 2: ""Hmmm. I'm not sure"" + +Person 1: ""Want to go to Paradise?"" + +Person 2: ""Naaah, we've been there three times recently."" + +Person 1: ""What about Subway?"" + +Person 2: ""I'm so damned tired of sandwiches. . ."" + +Person 1: ""Well, here's Qdoba."" + +Person 2: ""Qdoba? Okay, I haven't been there in a while. We can get in and out pretty quickly and get back to work."" + +That's pretty much how it is. Nobody really plans to go out and eat at Qdoba. It's one of those places you decide to go to on the fly or because you've eaten everywhere else. + +The Mexifood is fair. Nothing special, nothing bad, nothing to distinguish it. There's tons of Mexican joints within ten miles that are better, but Qdoba's here in this strip mall. Haven't eaten here in a while and don't want to drive any further? This will make a nice alternative, and then you'll be good on this place for another six months or so. . .",review,IGkoathSlJmIOBDGo9vUZg,4,5,5 +WNy1uzcmm_UHmTyR--o5IA,2011-03-13,VWhQ07IB_VvCTQJL0uEt-A,4,"Oh god. It's like GOD'S VERY OWN HOT POCKET. Fresh, delicious, and cooked perfectly, though I have trouble bringing myself to get anything but The Pilgrim (served with turkey, cubed sweet potatoes, onions, and deliciousness). Cornish Pasty is great, though you'll likely want to consider takeout: it's TINY and finding a table can be a real pain. + +The staff is fun and helpful, even though they're quite harried, and the oven-roasted potatoes are fantastic, as are nearly all of the pasty options, all priced damn well, to boot. If you've never been, they'll almost certainly have something you like. My only problem is that nothing is customizable: they're all served as is, which I understand from a production standpoint, but which frustrates for the number of menu items with just one dealbreaking ingredient for me. + +Overall, it's exceedingly easy to be a regular, and to feel VERY full, careful not to eat the crimped part of the pasty, just like the tin miners of yore so as to avoid the traces of arsenic from their dirty hands.",review,8-2W5CmkDl9vrkxRpkiPRg,1,2,2 +hwXFp8FKJ7ivQb8_f4X23g,2011-10-09,O8bta2G4tjwBYG0KKf9qJg,5,"Satori to Kaigen! (Enlightenment and Spiritual Awakening!) + +1st review. Nervous and working on an empty stomach, with the only exception being the half loaf of French bread and herb-butter I had consumed prior to dinner. Thinking Asian all day and being an incapable decision maker, I rely on Yelp and the assistance of a small list and a single 6 sided cube with dots on it. I jotted down 6 prominent businesses, held my breath and flicked a wrist. A ""2"" brought me to La's Thai Cuisine! + +Peeped the website and open til 9:30, score! My eye spotted closing time was at 9:00 though! Arriving on the scene at 8:49, poorly reverse parking my Honda in two spots because I was worried that they were closed. They weren't, I was met by a Thai beauty introducing herself as Lisa. I humbly asked for takeout, my adventure begins with the opening door... + +Smells are incredible. Having thought they were closed, I had forgotten what I was going to order! I rifled through the menu, feeling as if the whole kitchen was watching (they weren't) but she instructed me to take my time; So I ordered a soup, a salad, an entree, a dessert and a side of brown rice. They kindly ask me for my preference on the degree of heat, on each item, I asked for not the hottest but close to the top. + +#17 Mixed Vegetable Soup: Stellar + +Culinary Thought: Clear, piping, spicy and vegetable packed. + +Ninja Eating Plan: Gently lay over white and brown rice, alternately. + + +# 9 Papaya Salad (Som-Tum): Phenomenal + +Culinary Thought: I got shrimp on the side, due to allergies. This was probably the most awesome experience of the evening. They even ""fenced in"" the shrimp within a Masai-esqe cage of cabbage, to prevent their oceanic brine from invading the delicate papaya, sprout and carrot forest. Spice and crunch with every munch. Beautiful. + +Ninja Eating Plan: Try not to be seen scarfing this down in front of a date, it's that awesome. Fortunately, my sister was only present and she knows I can eat like a pig and sound like one, too. + + +# 53 Peanut Curry (Panang curry style, comes with rice!): Umami + +Culinary Thought: I don't like coconut. I do now. The lemon and coconut milk rises through the savory peanut curry. Tofu was my protein option, it was done perfectly. Green beans provided great consistency in this masterful crescendo. + +Ninja Eating Plan: Laid over rice, alternately brown and white rice, interrupted by the occasional, gorgeous, curry-only spoonful. + + +Coconut Ice Cream: Yum + +Culinary Thought: I was reeling at this point but I wanted to continue this experience. As I stated earlier, coconut is not my thing but I believe in giving things a fair try, so I did. Coconut ice cream is delicious. Coconut pulp, or meat, I still have a texture issue with, but the honey swirl throughout the ice cream made this delectable. + +Ninja Eating Plan: Use the cooling ice cream energy to return your body back to normalcy. Perfect coda for the culinary symphony. + +I will be back. I plan to have every dish vegetarian style. Family-run places are truly number 1. + +Overall experience of the Culinary Ninja: PAVLOV + +Do you hear the sound of a bell chiming?",review,POVio1iSAaPDCsxpp2EmMQ,0,0,0 +cIPzndsbagQGj9U1sLqLtA,2011-12-21,kNsD6Ui-aPIiLYfbilYp0Q,5,"I went to the physical location the first time with my dog Foxy to scope out the place. The store inside is iitttyyy bitttyyy and not worth going to in all honesty, but the staff that work there are REALLY friendly, and helpful. Foxy eats Evanger's, which is really hard to find, and the only place I knew of that carried it was 20min away from me. + A month later, I run out of dog food....so I call Goober (after research I find they sell Evanger's for the cheapest price) and they delivered it right to me. I wasn't home so they left it on my front porch along with a pretty large amount of free dog treats for Foxy ! They left their newsletter, some reference cards, and their product list (which is HUUUUGGGEEE) in a bag hanging from my door. The reference cards you give out will earn you discounts on your next purchase! Oh of course- I forgot to mention the delivery was completely FREE of charge!!! I'll never get my dog food anywhere else.",review,zbq9j56YHSa_WEEXtsEcBg,0,2,0 +ScvhAJe5lIJ7_SIvNTDfgg,2012-08-24,OT9779o629UEC8gmI8Fa4g,5,"So yummy!! My favorite Mexican place!! Love the chips, salsa, and bean dip. The extra spicy green salsa is so good too. We are regulars here.",review,I7zvmDRYtsLUHsLi50wDNA,1,1,0 +27hfvE5DcOY3J1-MWbTU9Q,2009-07-13,HK_VGoXkZmzmj2yrn8c_yA,2,"I shouldn't have judged this place so soon. They are local to my apartment, they do deliver for $2.90, but I've been back 3 times since my first review and I'm getting bummed out here. + +A few weeks back my boyfriend and I wanted to get a little buzzed at home, so we decided on streets of new york to deliver us some grub. We went with pasta. My boyfriend got the spaghetti with meat balls, and I got the meat ravioli. Ah I really hate to say this, but I would have had a better time eating a can of Chef Boyardee. I don't know what is up with their ""beef/sausage"" but it always has a funny taste to it. Kind of like when you re-heat a hamburger in the microwave. That taste. I was less than impressed. The salad it came with was decent, and I'd go back just for the bread, but even with a buzz I wasn't enjoying my pasta. The boyfriend agreed it lacked flavor and was 'off'. + +Then yesterday we decided to have another one of these nights, and do the Pizza instead since our pizza was good the first round. I got chicken and pepperoni on mine, and he got sausage. They charge extra for chicken. Um.. I don't really understand why. The chicken is breaded chicken strips that they just cut up and threw on the pizza. I wasn't impressed AT all. The sausage on my boyfriends pizza tasted weird and sweet like.... I don't know what's up with this place! + +So I say if you're going to go with one of their pizzas, definitely get a coupon and stick to the basics. I suggest the bacon, or pepperoni.",review,RvaQ6i9CdTpF_1MzKlUUaA,1,1,1 +YSesarsmfOIKwx6eiRqFZQ,2009-04-30,x6b0jru4OlUzfzeoNxvZEg,5,"I have been taking vehicles to this place for 15+ years, mostly for routine maintenance, but occasionally for the other annoying things your car does to you. We have never had any problems with their service or repairs, and they have always been reasonably priced, fair and honest with us. + +They also refill propane tanks. + +Note -- this business has outlasted at least two gas suppliers. Previous names include McClintock Unocal and McClintock 76 :-)",review,1f8_7NDng8w5CV7bshe63A,0,1,0 +5nahZe5bBYUbFWgEfwoNOA,2011-03-28,n-MKaPksVzxBoTlda0gYzA,5,"Thank you Sunflower for having a decent selection of tofu and fake meats so I don't have to drive 25 minutes to Whole Foods. Also I would like to tell you that I really enjoy your produce prices and your friendly staff, especially the cashiers, they are always so pleasant and helpful. While I am at it I should probably apologize for ""sampling"" lots of your candy from the bulk item bins, those chocolate covered peanut butter filled pretzels are amazing, I promise I always use the scoop. And one more thing, it's really awesome that you carry beers brewed by Rinkukiu Alaus Darykla, the Lobster Lover is DELICIOUS!",review,BfetZm9fa0zqyAFn8vo_6w,0,0,0 +gUt-pPUpOVVhaCFC8-E4yQ,2009-01-21,fZ6ktQYONjrOcK4SjTxS8w,5,"Private Karaoke at Geisha A Go Go is the coolest thing to hit Old Town in a while!! My girlfriends and I went this weekend and it was incredible. I have heard a lot about karaoke being the new trend but not until I actually experienced it for myself did I understand why, until now. We had a private room with a flat screen TV and drinks at the flip of a switch (um, can you say bachelorette party?!). It was so nice to have a night out without actually having to wait for drinks at a crowded bar or being able to hang out with your friends without random guys interrupting with a cheesy line to try to talk to you. It was $75 for an hour in a private room with 10 of my best friends. And by the time you split that between everyone it was well worth the extra expense. + +Seriously once you try it you will be hooked too! I can't wait to go back!",review,8gM0VBG-5vlS7teGszclKQ,2,2,1 +lXUaypwLG_rIU4qnpBmF-A,2012-08-31,vz4xCCersFRfDXl2qhvAWA,5,"Yes, it's on the Northwest side and its tucked into a non-descript strip mall better known for being the home of Padre Murphy's Sports Bar, but don't let appearances fool you, this is a great gym. The gym offers a large selection of cardio equipment, weight machines, free weights, and group exercise classes. It also has a pool, hot tub, sauna, and steam room. But will really makes this gym special is its kids care facility. It has video games, pop-a-shot, and a giant climbing structure that my kids like so much, they are begging to go to the gym... and it's a lot easier to get a workout done when the kids are excited about going! + +Definitely a great find and well worth the drive to the Northwest side.",review,uBp2Jmip2qXQ0iWHUDY9sQ,3,3,2 +Gq092IH6eZqhAXwtXcwc6A,2012-05-27,1CjzOocxElDQfpRkap2fcA,5,"What a brewpub should be. The beers are great. The food, the Slingers (wow) & the service is all top rate. Lisa, the server was very helpfull. I need say no more.",review,eI8_XqMTJ0OgVrpc33N8Uw,0,1,0 +SDs4eWoV-cpJystzTAH0qg,2009-07-11,uRRbRj5f7E0cfw6X4sDhGg,3,"My first visit to Picazzo's is not what I had hoped it would be at all. A few of my friends who have fine taste in food raved about it and so I had high hopes. Let me start by saying, I'm not really a gourmet pizza lover. As a teacher, I have plenty of Domino's and Pizza Hut all the time, and can be quite happy with that, either that or I love a great slice of New York style pie. + +Since I am not a huge fan of gourmet pizza and the overabundance of toppings, I checked the menu for a nice plate of delicious pasta. I was incredibly unhappy to find that they had about 6 pastas and they all sounded bland and/or too strange to order. Then, I found their sandwich section. I decided on their Spicy Chicken sandwich that sounded perfect. But it took awhile for our waitress to come over, so I glanced at the pizzas and found a couple that sounded good too. Thank goodness I did, because as I ordered the sandwich, the waitress informed me that they only serve the sandwiches at lunchtime! What?! That really peeved me off. What is irritating is on the menu there is a clear line between the section that says ""Lunch Specials"" and where it says ""Sandwiches."" I mean, there is an actual black line drawn between the two...to me, that says that they aren't a part of lunch. Don't you think? + +Instead I ordered the Popeye and Olive Oyl pizza, which has a white garlic sauce, spinach, artichoke hearts, garlic, Kalamata olives, carmelized onions, mozarella, Roma tomatoes, and Applewood smoked bacon. After I ordered it, I really thought how I truly didn't even want it. I was really irritated. + +My husband and I both ordered our own pizza since we couldn't agree on what we wanted, so he got The Vortex, which basically had all the meats you could possibly think of. For an appetizer we ordered the garlic cheese bread, which was way too garlicy. It came with olive oil for dipping...I would have preferred some marinara sauce or something. After I had ate the bread, I really didn't want my pizza b/c of knowing that it had so much garlic. I picked a lot of the garlic cloves off along with most of the other toppings...there was just too much on it. I know for some, they would probably like that...but it just isn't my thing to have too much on my pizza. + +All in all, the pizza was pretty good, once I picked off half of the toppings. The crust was really tasty and had the perfect crispiness and softness to it. I could have had just had that alone and been happy at that point. + +My husband and I both agreed that it won't be a place we go to again, unless it is for lunch time, so I can try the sandwich my mouth had actually been watering for.",review,vUM21g3cPEdSlI89oDttgw,0,1,0 +WxpCYziMlEy8mrEa_VcB1w,2010-10-31,ZTEuHLTnuP4WzO3k3KE58g,1,"eeew. It started with a cranky waiter who told me that if I wanted to know the specials, then I should have read them on the board. The food was downhill from there. The entire place smelled like fried onions.",review,MNd2kbG7OYxElc6xe1xexQ,0,0,0 +c8XlQvVNwKhH9BOHEObtNQ,2012-01-11,9kM1TcS3XWOYxe6-rYZ0PA,4,I love this place!! Great food and service..portions are Hugh..,review,fnO1oH3N5QMG-PvHA4F-VA,0,0,0 +wuYbkc2hMYli2dv6nONvKw,2007-03-11,rKVjF9XlDfW_mIf_n-VrIg,5,"Brookstone is the Sharper Image's older and more laid back cousin. Yea, it's got a similar feeling, but it's more focused on keeping you relaxed and healthy than on funky electronic toys. The massaging chairs, pads and other devices are enough motivation to stop in alone. And if you're with a partner who's less interested than shopping, it's a great place for them to just hang out too! (Trust me - this works.)",review,l53FUDHRHLg7BQ89KgAtxQ,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2011-10-05,Wv2aN1KONDstohMR_lWWzw,5,There is no shortage of Mexican restaurants in AZ and this one is one of the tops on my list. It's not your average Mexican fast food. It's a little more pricey but well worth it. Their bean and cheese burrito is so good (they say no lard and I don't know what else they use to make it good). Their carne asada and pastor tacos are done to perfection. I stop by whenever I pass by this place.,review,xwTe8xDNEuQGUzk9peGnVQ,0,0,0 +0ONypOKIhttBz9IJzBE8jg,2012-11-25,-xSNmV9r8vzsi8OIBK-_QA,3,"Excellent food, top-notch service, exorbitantly priced. Not for budget minded diners...",review,KsrdgOiz8Woi1f8CV8sdXQ,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2008-11-09,aGjSwMpcgnjeAvIA3NF9Wg,3,"I like this quaint little restaurant although the space is a bit crowded - especially during peak times. Too bad all they really serve is Pizza (there are other things on the menu - but not much else). I thought the Pizza was OK - but certainly nothing to rave about. Desert was awesome -- they have a selection of crepes to choose from which are ALL to die for! + +Bottom line: Experience is nice and unexpected for Phoenix. Food is not disappointing as long as you aren't expecting a lot. Desert is special.",review,jWvzAN1czxypi-GM1KY62g,1,1,0 +tdeHd2AVYlEnz9F1UGb84Q,2009-09-08,jwaLD-4EJdk_mVIRZWP5ZA,2,"My darling SO just looooooves this place, supposedly because they have a BLT that comes with avocado and a half-cooked egg on it. Ummm... OK. When he finally dragged me here, I realized he probably likes it because the waitresses hit on him. (Honeybuns, if you're reading this, they'll do anything for a tip. ANYthing...!?) + +I got a veggie egg white omelet, which had all my favorite components of caramelized onions and broccolini, but it tasted as if they had sauteed the veggies in the drippings from the burgers that just came off the grill. Uh, gross. This alone takes the rating to two stars, and I'm not even a super-strict vegetarian. It's just disgusting. The English muffin was this weird little hockey puck that really served no purpose other than to serve as a vehicle for the tasty, homemade apricot preserves that came on the side. The chocolate cherry scones were delish and the coffee quite good. + +The booth next to us held three 20-somethings (two dudes and a chick) downing mimosas, still wasted from the night before, who thought it fun to play their cell phones and/or iPods at high volumes. Just annoying as shit. Later, when I visited the swanky bathrooms, I saw the girl out crying in the lobby. Guess the swordfight didn't end well. + +I'll go back, so my SO can continue to get his ego stroked and his cholesterol raised, but I'm staying away from things from the grill...",review,UoBfwbXaixelZBghbJ2cSg,1,1,4 +zG_wv69bsllw_PWhOmoAKQ,2007-03-04,_2FCV5-xP7TdHmRS3mmV1g,2,"My wife and I had reservations there last night. Poor choice! Not a bad place to eat, but a terrible dining experience. + +Parking was an issue. Despite our early reservations, the only parking available was in the next lot over. One had to traverse an earthen embankment and a grubby alley to get to the place. Tell your companion to wear something other than high heels! + +I dislike places that serve olive oil in place of butter with one's bread. I know it's fashionable, but it gives an impression of economy. That's fine for Macaroni's Italian Grill, but detracts from the tone of a place with Tarbell's pretensions. I'd prefer it if they'd serve both, or at least give one a choice. + +The soup of the day, potato and leek, was of delicate flavor but redolent of Potato Buds. Could it be possible that they're making this stuff out of a dehydrated product? The Caesar salad starter was a nonentity, and might have been improved by a little ground pepper, which wasn't offered. + +My bride was mightily impressed by the grilled salmon....some of the best she'd ever had, she said. The effect was somewhat dissipated by the peculiar potato product offered as a side. If you like to peel off and eat the crust around the edges of a pan just used to bake scalloped potatoes au gratin, you'll like this stuff. + +I had the pork chop, which was very good without being memorable. It's served with a side of what they claim to be 'wild boar bacon' and unidentified greens. The pork, independently, was bland and without much character; but spear a bit of pork, add to the end of your fork a fragment of bacon, and then a green or two, and the dish is much improved. + +Dessert was uninteresting. The sorbet was of the store bought variety....and not top shelf stuff, either....and the apple tart was bland and as dry as if it been left in the oven overlong. + +The ambiance of the place leaves a lot to be desired for a celebratory experience. It might work for a business meeting, but it ain't no place I'd care to take a date, ever again. The dining room is crowded and noisy, making conversation difficult and at times impossible. The tables are too close together and I had to endure a face full of server's butt whenever he waited on, or cleared the dishes of, the folks at the table neighboring ours. + +I suppose I've saved the best....or the worst....for last. I haven't been as rushed by the waitstaff at a meal since my experience in an Army mess hall at Ft. Bragg, North Carolina. The place is being run as a money making machine and that means that they are trying to turn over tables as many times as possible in an evening. Services is overly rapid and one feels pressured to finish up and allow the waitstaff to get the next course on the table. The object, of course, is to get you fed and out the door, freeing up a table for another party. My wife resorted to the tactic of picking up her fork when she saw the bus-guy approaching....otherwise he'd be on us to clear the plates containing food over which we were tarrying, in his opinion, overlong. + +The check was presented to us the moment it was ascertained that we had completed dessert but before the plates had been cleared. I returned it asking that she bring it on AFTER we'd finished our coffee. Which, by the way, hadn't been offered, either. + +To his credit, the dining room manager did come over to apologize for rushing us, and comp'ed our coffee. He explained that ""the standard in America is to present the bill when dessert had been finished"". I beg your pardon? Not in any place I've ever dined, and I was born in Ohio. + +This place seems popular enough on a Saturday night, but I certainly won't be gracing its dining room any time soon. At this price point ($175 including wine and tip for the two of us) I expect more than what was offered. + +Sorry, folks, I know this sounds like a rant, and to some extent it is. It was an important evening for us....after all, twenty years only comes once in a marriage (well, most marriages, anyway)... and we had hoped for a gentler experience.",review,To6VfMpjPuiixoT4uq_mIg,2,6,2 +gb-k4Z17XxuPkUmsevwBYg,2010-07-18,u9flSRrKJbLJu1cLLhVGWw,4,"This is my first review on yelp. My wife and I were looking for a place we could take the kids for ice-cream tonight after visiting bass pro shops. Did a search on yelp found this place. +I've got to say I've never tried gelato before but my wife thought it looked good. I got peanut butter and banana, the wife got PB and choc Oreo, and my kids got Oreo and choc chip... As my 5 yr old said, this place is off the hook. We will definitely come back.",review,NGIGvoHYuCXi8aYWvaKlCg,0,0,0 +NBwPgX7L2D-EZedgo3A-pw,2010-08-20,yeMNAZKxXf4T2MgBMYAH4Q,2,"Things I liked: The homemade chips (mmm), the red salsa, the tender chicken pieces in my enchiladas and the service. + +Things that just didn't work for me- The green sauce was so blah I couldn't eat it without dousing it in the red to get a little flavor. The beans and rice were disappointing as well. Perhaps it is my lack of familiarity with New Mexican cuisine, but I was not impressed.",review,wC1CPV5bf--bDLtlhNSPLg,0,0,0 +CVkUxfuLx5AGLI6eDFU4RA,2010-03-10,6WkUEkK28o0eQN_u5BmSJg,3,"I really want to like MADCAP. I love the idea of playing old b-movies and some forgotten favorites. The boyfriend and I went to MADCAP last weekend to see their Chuck Jones presentation. Unfortunately, we were pretty disappointed, not that it was completely MADCAP's fault but still. + +My biggest problem with MADCAP is the price of admission. $10! That's more than a new movie. Why should I pay $10 to see a movie that I could get on DVD for half the price? I know the money is going to a bigger cause - having a cool theatre in town - but I just wish it was cheaper. If it was $5 I think I would go a lot more. For $10 it has to be something I really want to see and after not being so impressed by the Chuck Jones things I'm a little wary. There wasn't even a screen in the theatre - just a white wall. + +If they showed new independent movies for $10 and old movies for $5 I think they would really have something cool going on. I hope they can figure it out because I'd really like to see the place become what it could be.",review,Pv7DGHzZ-uqIUdOsqPpsVg,0,1,0 +nFo_63pTr-4ZhakuaRFOCA,2012-04-20,pibxf3JHyWa1CDmU1ykasw,2,The food was ok. Waitress forgot my guacamole. Wait staff continually bumped into our table. Great wine list. Nice decor. I may or may not try again. Not impressed by the food. Id go up to Narcisse or True Food instead.,review,oW0dmS7HNz3fILK-Z-MLSA,0,3,0 +5oIiBxbTYuWAtHx7-alXbA,2009-04-26,O2szBGfOjIx0Gxqft0tk3g,1,"Needs a new name - now. + +The Pischke's of old had such a sad ending. I appreciated McGrath's effort to keep ""Pischke's"" alive. But it is nothing, nothing, nothing like the Pischke's of old. Call it ""The Blue Ribbon Cafe"" - take out the PIschke name - I can't imagine that Chris PIschke would have been honored to be remembered this way. If his restaurant was a reflection of who he was as a person - Pischke's Blue Ribbon Cafe would be the exact opposite of who he was. + +The current restaurant is not a laid back, family friendly and yet a bar all at once restaurant that serves an unending array of crazy good sandwiches/salads/etc - the current decor is pretentious, and the food matches that.",review,vNFxfUDTPgZRgV3EHnkmJg,0,2,0 +2nd4_b7-DFjI921Mtt7GrA,2011-07-31,2AqetcqrCB8wINZEMGUPNw,2,"Writing my 7/29/11 review prompted me to return to this establishment for a manicure. I got there at 9am, but unfortunately the sign on the door states they don't open until 10am. So I ran a few errands and returned at 10am. There was no one in the store and all the lights were out. Again, it is already over 100 degrees outside by 10am. I decided I didn't need a manicure that bad and left.",review,LX3cTVaS8f2UF0Uuafsfug,0,1,0 +TuuENwzxOFdDLY_oKCbFZw,2010-03-01,22EzOvEVs0U1nxbBx5z8EQ,5,"I have been to this place many times and the food and service is always great. I am so excited to have found a place where I can get freshly made, good food out here in Queen Creek. My favorite is their home made mozzarella cheese. Its great on anything. I frequently order the tomato, basil and Mozzarella pizza and I recently discovered their vegetarian plate which was delicious. The staff is very friendly and the atmosphere is casual and comfortable. Don't forget to save room for the amazing ice cream they have.",review,3dHAHbMesWcpET-D0zs-LQ,1,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2009-01-21,_ZlHhTIn0aN-1AQvz6aeSA,5,"Stayed here for the RocknRoll marathon like 80% of the guests and absolutely enjoyed my stay. + +the hallways to the rooms were the only slightly blah decor, all other things such as the bedrooms, bathroom, lobby, restaurant and pools were great! + +Amenities included: +1. pet fish (that someone else fed) +2. complimentary granola for the race day +3. smores for our firepit (next to the pool) +4. nice wait-staff that was pleasant and chatted us up +5. super fast towel replenishment service (4 girls use up a lot of towels) +6. great cabanas -we never had a problem snagging one or two of them +7. happy hour, decent food, delicious alcohol... +8. cool lobby area with lots of places to looooounge at +9. dog friendly +10. heated pools + +love it! I will stay here again for sure..",review,Jb8p4tDOrq_IKjBJXM0GSg,4,3,1 +w19cemjVR8u02PgjFpJ7Mw,2012-03-04,jF1iUovQfBtIsQcQFhevyg,3,"I wish I could love this place... It's just tough. +I've eaten here several times and just haven't really LOVED anything. My sandwiches have always been dry and kind of bland tasting. Salads have been ok, but I usually feel like I can make them better. Hummus - dry. Dolmades - tasted like the ones from the jar. Ahh, so sad, because it's food that I do normally love. +Here is why I gave this a three- happy hour prices are good ($2 or $3 for small plates). With prices like that, I can forgive some of the food quality a bit.",review,vAZEQTXiDtM-64SXy9FUuw,0,0,0 +jRfdz5voj40P6WS9L54caw,2011-03-22,2M_blXbHIPct5HT11gEhSg,4,I had a really good experience at this place. Started with the chilled cilantro lime crab dip. I wasn't sure about fried plantain dippers but they worked. If you go here you have to get the Thai bbq baby back ribs. They were awesome! Next best thing I had was the mac & cheese and also the spinach & parsnip gratin - good stuff. Ended with the guinness chocolate cake which was pretty good but next time I think I will go for the s'mores creme brulee. All in all a good time and would recommend.,review,AYRv5k9H2w7VNI1X-9fM3A,0,1,0 +7LGjM8HKJTwqfYU3C7N_0w,2012-12-06,z393huZItap6YIZVcofLyQ,4,"Great food at Rico's! The nachos are great, as is the green chile stew. You can actually make a meal out of either of those appetizers. They're filling and delicious. Decent beer selection--although I'd prefer if they had Four Peaks (Hop Knot) on tap. Sort of a casual/upscale atmosphere. You'll probably feel at ease no matter what you're dressed like. Very helpful and friendly staff. Overall, Rico's is a winner. If I lived closer, I'd visit often.",review,UuwjD6MZf6Z6QlNphiXRjA,0,0,0 +IyldfEGfCVcEOb7SMlKs7Q,2009-03-27,L3vNlx0BnuyL7QgHJJfVbA,5,"This is one of my favorite places to take out of town guests. It never fails that we laugh so hard our sides hurt! Always fresh, always funny! Great place for a date night or family night! Even my teenagers love it! I never have to worry about offending my guests because their content is family friendly. + +To finish off the night, head down the street to ""The Sugar Bowl"" for fresh ice cream!",review,y3d4v0x-vD10hw-O0YKa1Q,5,5,3 +8nRXiNdt_8-aePTlVxKqmA,2009-03-23,rDD8usjaBlaMk1-vSWMxXg,4,"El Paso currently has some recession specials that lower the price of several entrees. I got the brisket platter for $9 (reg. $13) and it was plenty of food for a good price. The brisket was juicy while hot, although when it cools it gets drier. I should eat faster next time! The brisket also had a very dark pink smoke ring and good smoky flavor. the bbq sauces are good but nothing special. The platters come with 2 side dishes and I was pleasantly surprised that the veggies were not boiled to death. The carrot strips were just the right tenderness and sweet, and the broccoli was slightly crunchy. My other side dish was the sweet potato fries. They were good and went well with the BBQ sauce. + +For the price, I'd definitely go back to try some of their other meats. + +Side note - I don't know why, but all of the tables around us were filled with elderly people. Does El Paso put coupons in AARP magazines?",review,jPwveAVMfAtmAkT-9l83vg,0,0,0 +2MHIzCgnuLrLJcorln_7WQ,2011-02-08,c6le-YGgkN24XCxupfHIdQ,5,I was very sad to see this restaurant go. I wish Anthony the best and hope he opens up somewhere else!,review,U14IHoSXcztl-4PjyY0pug,0,0,0 +4rySWsfL5enT7t4XuVNJuQ,2008-10-28,d9X2rr2pTxaDwJ2H59zaNw,4,"It's 4:00 am on a Friday, you've just finished listening to awesome music and drinking too much, you're starving and want some good comfort food to fill your gut and soak up that alcohol..... enter Jerry's. + +The place was open. The place was clean. The food was good. The service was great. The prices were great. WAY better than a Denny's, better than most diner's I've been to, actually. + +I had ham and eggs and the plate was delicious. The ham steak was gigantic, the eggs perfect, and hash browns were done just right... crispy and good.",review,waD2euOMPTnTzQ0thq3H6Q,8,9,6 +6imLt53br7SJ3av07jjH7w,2009-05-25,Ug5Wzg4LNZe9t5qYXE02AQ,2,"Let me say this: the bar at Hanny's is one of the best looking bars in Phoenix. This square-shaped sparkly thing gets an A+ on the presentation, and they make some great cocktails. The rest of the place... not so much. I agree with everyone else: Hanny's has a great concept for a place. They left the skeleton of an old department store intact -- complete with a completely unusable second story -- but the results aren't spectacular. The restaurant looks great inside, like it should be a real classy establishment. So why are they serving pizzas here? The pies are decent, yeah, but really? Shouldn't we be getting steak here? Prime rib? A nice grouper fillet perhaps? With such a nice space and a primo location right in the heart of downtown, I'd think Hanny's could step it up in the food department. It's like this place is confused about who it wants to be: a neighborhood fare spot or a classy dining destination.",review,xkTbpCc-YhU8-EXZDA7u0g,2,2,0 +0nGjXTpUtpIJl10PL0eBGg,2012-07-16,M7fqSgapGomLM7cha4j7VQ,5,Excellent Soutwest breakfast bowl. Great service. Very convenient to downtown hotels.,review,Mhy-dtosAuafEyQo04a0Gg,0,1,0 +-EctXOb3B7T177jGYUhjVA,2011-04-28,tk2QSeGvq7iOASVnNqmU_g,5,"I can't help but love this place. I've been going here since, quite literally, the day the opened. I move further away and I keep coming back. + +The staff is friendly, the food is delicious, the beer selection constantly rotates to new and interesting beers... and this is basically the de-facto hangout for climbers and cyclists! Really can't go wrong with this place.",review,sQwgFhirdCt6h_g1rbjHHA,0,3,0 +09dr3kXV8Ff42Ur3mCh3LA,2008-02-14,lsMdJrQXcs_0EMvRD8w8tw,5,"I went to Peter Piper Pizza tonight to celebrate my daughter's 5th birthday! It is a great place for kids to have fun. Being a former employee of PPP I know that we could have had reservations for her birthday and had a party representative help with everything. Unfortunately, this was just a small family celebration. So I ordered the big family meal deal which consisted of two large pizzas and an order of wings. The pizza is always delicious to me, it is not greasy like some of the pizza places out there. We forgot to bring a lighter for the birthday candle so they had one on hand for us to borrow. Needless to say this is a place that the kids love. They can eat great pizza & play which is all kids worry about.",review,Qx6Kq92S72-tik94Hfn0UA,1,1,1 +bA-Cj6N9TEMlDlOh2aAnUw,2010-12-13,aTFGLkEPU4UPhP-PTY7WbQ,1,"OK. So I think that this may be the first business that gets one star from me. I just flew home from Israel on this airlines. Boy, they are pretty sad. I usually don't like to be too harsh on anyone, but this airlines deserves it. + +Please, don't think of this review as complaining, but rather a warning to others out there to never fly US airways (Nobody likes a complainer right? Haha.). Well, not never, but if you have no other choice. I would venture to guess that this airlines is pretty cheap because of the full flight loads that i encountered. You could say that is good for them but the service on the planes was not up to par. I guess I have been spoiled with the likes of Hawaiian Airlines, Nippon airlines, shoot, you can even throw Delta in there. The flight attendants are rude. This is from both personal experience and from observation of my own. + +You know what, I could go on and on, but I really don't like to cry about stuff. Would I fly US Airways again? No way. If it was one of the last airlines on Earth? Maybe. I just hope that their service of customers get better. + + Then again, maybe they didnt treat me well for the fact that I hadn't shaved and looked Talibanish. Oops.",review,94-cnnPccqQixVhJkRwPnQ,0,1,1 +o2rrTbAxGXrdQKQvKDcGiA,2008-03-12,5KNRveSLv3bPAsyc-32JHg,5,"I would not survive without Channel 8. i really don't watch much TV, but when I do, I want it to count. + +Let me see: Keeping Up Appearances, Coupling, RedDwarf, Antiques Roadshow, NewsHour, Nova, This Old House, Dr. Wayne Dyer, Frontline, Horizon, Scientific American Frontiers, The War, As Time Goes By, Red Green. Plus, tons of responsible programming for kids in the am and afternoon. + +(I don't think RedDwarf and Coupling air on PBS anymore - but thanks to PBS for introducing me)",review,90a6z--_CUrl84aCzZyPsg,5,3,0 +fF6m3qsD5blnwuZRuYhzWg,2012-02-13,vKOGdefx0bpG_EYe1q8XNg,2,"The food is good here, ordered the Mole enchiladas with no complaints, however we also ordered a skinny margarita which was not very strong and $15 ea! The regular margaritas are fine and priced okay at $8, but to charge $15 without warning is usury. The service was okay, not great. The menu is also hard to read because the type and busy background design. I would have given 4 stars if the margaritas were $11, but $15?? This is not Modern Steak or the W !!",review,rSKOHQi-NByjMIsul9WDLQ,0,1,1 +MuIXnv7Oq7X3-4aEsp9dDA,2012-12-27,-J17U4z18USof3QDECzr4Q,5,"I had the Crispy Steelhead, and it was delicious! The sweet pea risotto and roasted tomato-chanterelle ragout were a great addition. If you're looking for a great restaurant with an original menu, this is the place to go! Friendly staff and they were quick to seat us.",review,by2WhWockh5hh16y968WXg,0,0,0 +b7GM0x9zZU5gq1aXErUf7Q,2012-05-05,vTWa1SoHKt2HYWsIq5u08Q,4,"This review is a little late coming, but just got myself some fabulous chocolates and remembered how addicted I am to the passion fruit ones. It's a good things they're so pricey or I would probably eat an entire box. +Julia Baker also did our wedding cake in 2010. The cake was a beautiful three tier red velvet. It tasted amazing, we still get compliments on it. Julia and all her employees were a joy to work with, the tasting appointment was one of our favorite parts of wedding planning. Would definitely recommend. + +Lost a star because they are a tad bit overpriced. Also the design on our cake was the wrong color, our wedding color was an olive green and the cake design was a bright almost neon green and we had asked for an olive or dark emerald color. If there wasn't a million other things going on I might have stressed about it but as it were the cake tasted great enough to make up for it. + +They didn't last too long at the Montelucia, which is usually when I'd stop in for a treat. I'm not sure where they moved but I know that you can buy the truffles and chocolates (seriously try the passion fruit) at AJ's Fine Foods in the area.",review,zkhOTlhe6dn-jrwDpYDN6Q,0,0,0 +NA3tQYxR6Fq5O8nV6u41Tw,2010-12-20,zJK2nPkflDAeb3sUwwgkaw,1,"Called last night @ 4:30 and tried to do call ahead seating for 6:30 for a party of 9. We are in town and are here to see some friends. Explained to hostess that some in the group are seniors so would need to have assurance on reservation. I was told to call back in an hour, the thought process by her was that it was too soon to give me a time and they weren't that busy yet. So I did as told and called back and after about 10 minutes of confusion and other waiting I was told we couldn't be seated until 7:30 or we could have seperate booths. I explained that we needed to sit together and 2 hours was the best she could do. I was so frustrated I told her no thanks that we would find other arrangements. She said ok and that was it. Nice job Texas Roadhouse. NOT!!! There is no excuse for not having a reservation system in place, like Open Table. One day there will be no customers to disappoint, then maybe you will get it.",review,u6iqjUjeQHsxCYmsF2m8jA,1,2,0 +XfgU_1_X8eVX8_CqofAeIQ,2010-11-22,q4yypayig8V8lO3Qg7rb2w,5,Fantastic donuts! Great selection! Coffee was definitely above average!,review,hO7qiLvCzzzf9O_hlpw7fQ,0,0,0 +C42yP2SAQyit92zVyRAqMw,2012-01-22,r2QA2-FuQk1Cn-WwQhBSzw,3,"If you want to feel really bad about what you're eating, you'll love Rally's... + +I tried this place for lunch, after I heard about the ""Baconzilla"". I love bacon, so this burger sounded like a match made in heaven for me. The burger itself was OK, though I didn't love it. It was two patties, cheese, and about 47 slices of bacon. The bacon was the saving grace, as the burger itself was a little dry and didn't have a ton of flavor. You can also have different styles of ""loaded"" fries, I had seasoned fries with cheese and bacon. When I think about my meal there, it's amazing that I've lived long enough to write this review... + +It's a quaint little place, you can either walk up and eat outside or do the drive thru, either way the food is ready pretty quick. In addition to burgers they have chicken strips and a double decker fish sandwich, so it's not all about the red meat. It's not high quality, and it's the furthest thing from good for you, but if you're in the area and you want a greasy burger, Rally's is a good place to try.",review,LdhwY7eudLlx1KFQQe9GwA,0,0,0 +SlV4MCNrAC9slMyV5gf47w,2010-04-18,U3ZZ062j281VOBeCHEEHhQ,4,"Handsdown, Anthro is my favorite store ... every major city I'm in, I map out Anthro to see what is in their sales racks.... Boston, Chicago, SF, Austin..etc etc. This is the closet of a roommate I've never had, she is so decadent cool w/out flaunting it. + +Always adored the sales rack, but most recently the finds have been for home area... knobs, pulls, face plates for light switches as we refurbish a new home...",review,xdWsnbaTEfBMVHttqZDHxg,0,0,0 +EWnSPExh_T5zTv6oMJOC5g,2011-03-12,FjpbxGCp0xhnZi4Ta4tRSA,4,"We tried Mr Chao's Asian Bistro last night. It's a small place and they do a lot of take-out orders. The quirky interior works fine for me. My wife thought the single gourami looked kind of sad in the small, flat tank on the wall. They have a bar and a decent selection of wine for a small restaurant. I tried one of the specials, the Hunan Smoked Pork. It was basically kind of like bacon stir-fried with fresh vegetables with a spicy Hunan black bean sauce. I love bacon and I really liked this dish. My wife had prawns w/vegetables, we liked the freshness of the vegetables and generous amount of prawns but overall the dish was slightly bland. She liked it but thought that it would have been better with the lobster sauce. We were mixed on the iced tea, my wife felt it was too strong but I thought it was fine. + +Overall, Mr Chao's is a fine choice in Ahwatukee for Americanized Chinese food. It is a bit pricier than our usual stop, Panda Garden, but a nice alternative.",review,voUqX5ON9lMa80HRiO2jTg,0,0,0 +t4pkeGscooStLjy-Js5Byw,2011-12-17,2Lvtmi4k4HmEnqcHSSnTzw,1,"Just had Daphnes for the last time. In the 3 times that we have ordered from them, they cannot seem to get a simple order right. One Kids Burger with Apple Slices (Nope) one side of hummus(Nope) But they are quick to charge you for the order. Then you call and talk to a girl name Liz and she begins to tell you that they are correct and you the customer are wrong. Even though I have all the food sitting in front of me nope still no kids burger or side of hummus. HMMMMM,.. keep letting her answer the phone and you will see your to go customer base decline. We are an office in Scottsdale that everyday is ordering lunch for the office, Daphnes has officially been removed from the menu book. + +Nice customer service!!!!!!",review,kR86gUPgfUumFxtpm0VehA,0,0,0 +9tSHBEoAhKu-tkU8n6SKjA,2009-03-10,Bpm3X6HGMzKH_xTcN52gVA,3,"Pretty good food. The location is kind of scary, for a famous place. i was a little disappointed in their lunch menu. i am not a fan of paying $12 for a lunch plate. i don't need 10 lbs of food at lunch time, but a nice $4-5 plate of food at lunch would be great. I might return by myself, because the food is very spicy, and most people i hang out with don't like that. it was even spicy for me and i don't mind that too much.",review,GAW_mbLDbIoZQ0V0ZhWK8Q,1,1,1 +1zDCfNgtfyh-Uw8j3JxhHA,2012-03-19,8fQX6iyf2GH2Tmy_69iN1g,4,"I love this place!!! Lots of space and cheap, TASTY Mexican food. Not much more than that needs to be said.",review,Vv89iM91KdciCALtg6hJtw,0,0,0 +O-usNZUjADajkeYXIDAJiQ,2011-05-29,1tXqchOF3_3Vhp-ksT9a6A,3,Way too expensive for a hot dog. Confusing to eat there too unless you can speak Spanish. Last time I checked I wasn't in Mexico.,review,6ZXbTu3isjKoD42_iKOhqA,0,0,0 +KXx5qUj5eevUAma8XEZzyw,2012-08-20,IIS5XNEHS29IVEV_QYoxIg,2,"I was very impressed by their website and their services, and setting up my files for my cards was super easy and straightforward. I ordered samples before my cards...three weeks ago. + +Haven't received anything yet. Now I know that the turnaround time on cards is between 12-14 days, but I didn't receive any confirmation that they'd been shipped, or what method they were being shipped through. Luckily I was able to call them and talk to people who straightened everything out, but I really get a strong feeling that they're a very small company that's still trying to learn the ropes. + +The biggest problem I had was that my shipping and billing addresses are different. There's a box where you type in your shipping address, then it takes you to the billing section. When I got my order confirmation, I noticed that my billing address and shipping address were listed as the same at the top of the order, then lower down in the order section was where I had typed in my correct shipping address, yet it was partially cut off. I called them about it and they assured me that it was shipping to the correct address, however once I called UPS and had them reassure me that my cards were coming to the correct address, I received another email from Taste saying that the reason my samples weren't delivered was because I didn't give them the correct address. I looked back at my confirmation receipt and the correct address was typed into the bottom of my order. It was a matter of not paying attention I guess. + +Suggestions would be to either pay closer attention to their customers entire order, or to work on the billing/shipping page instead of leaving it as a box to type words in, especially if it's not going to be read. + +Pros are that they get back to you very quickly and make sure that your custom order is correct for print. +Cons seem to be the shipping and customer care portion. + +Will I order from them again? Possibly. But my trust has definitely been tested.",review,BzDnXvrWm-EB7N5a9Nisdw,0,1,0 +TqVESkM8cDQdTC1LL3RUSg,2008-11-07,cUHSkzxw7yyZsp4V0TsJKQ,5,"I have been here a few times but have to remember to come here more often. + +I LOVE it! + +I've never made it past the refrigerated and prepared foods section, but who needs to! You can find everything you need right there. + +The meat section is beautiful to look at, they have a whole section of prepared heat and eat dinners, side, soups, sauces etc. grab a premade one or grab a few ingredients and make your own! + +My favorite so far would be the Tub of Alfredo sauce, package of fresh pasta, and package of chicken breast strips ..YUM! +Dinner in 20 anyone? ;-) + +Their Tomato basil soup is Amazing too!! + +I scored dinner for 3 last night for ......$7!!!! +2 packages of their heat and eat mac and cheese and 2 packages of Tilapia, all ready and in about 10 minutes! + +Seriously if you are trying to save money and still want to eat good, fresh and easy food then this your place!",review,UsULgP4bKA8RMzs8dQzcsA,5,6,2 +AkOruz5CrCxUmXe1p_WoRg,2009-01-31,gCwZvHa_j4Vppn8aa8hjdA,3,"3 stars - Yelp says - A OK + +That means, sure, I'd go back and I should state here and now that the 3 stars might not be all their fault but my fault too. + +Plan to see mid-week movie with my daughter who teaches at junior high school and after school volleyball and we have plans for 7:45 movie which means time is compressed. Daughter has limited sense of adventure for foods so I figure this place always offers her bail-out choice of Italian. Enough background... + +Problem is, I had lunch too late and I arrived less than hungry. I'm equivocal what to order. I ask waiter for advice (mistake). I order cream soda and he comes back and asks me what flavor and listing too many choices. I order cherry and it seems to be a club soda with grenadiene (sp?) - mistake. + +Orders arrive - daughter shocks me by ordering Pad Thai which was quite good. I get winter special of Ishikari - Salmon, cabbage, tofu and rice noodles rather cleverly cooked in a miso based soup in industrial type mini-bucket with oak sealing lid and apparently brought to table from oven. The salmon infusion into the miso was an incredibly delightful broth. The salmon appeared to be generous, good quality but a bit undercooked and I didn't have the time window to do anything about it. The rest...the tofu / cabbage / etc. seemed to derive no benefit from the delightful miso broth. + +So in the end...I probably could have given them 4 stars because there is nothing inherently wrong with CherryBlossom Noodle Cafe. The waiter wasn't all that helpful but he was available at the most important times and we managed to get orders, served and check paid in time for movie which by other reviews worried me because of our narrow time window and the fact that this place is indeed busy. + +I would definitely return a much wiser person and next time, I go with my gut instinct and order the Champon as I had intended to the first time.",review,55ecDCpJIXzTWjEzMQ11Vg,2,2,1 +FqzgT9Y-Yu7jiWdHnGW-kQ,2008-07-08,vd_CtmjAoC8E5ax0PNqk3g,5,"So, I now frequent The Vig. If you go, talk to Jason, the bartender. He's quick with the beverages and funny. Enjoy yourself. You deserve it! This place can get packed during dinner hour, though.",review,M7B2A90idij3HDfCvfEBWw,0,0,0 +UI8iKvzhGn2qZCGIqtQqrQ,2009-04-21,N8d7fWRRU5Y4lkYT7k_2qw,3,"One thing is for sure: You will be full when you leave Harlow's. I think that the huevos are pretty good, but the biscuits and gravy leave a little to be desired, or so say the meat eating friends of mine. To be fair, this was in comparison to my very amazing freshly made biscuits and veggie gravy (biscuit recipe credit to Mark Bittman's How to Cook Everything). + +It is a decent people watching locale on the weekends as long as you can stand to wait out in the parking lot until they call your party inside.",review,b60JsTGYbVqUGYbI81aOsw,1,2,0 +lnX2gaGdO0fNtykyFrp1AA,2012-02-15,fBiJ5uefZEDIivBGJgVUlA,4,The food was what one would expect from the outside. Mel's is not a hole in the wall place with amazing food. It's diner with decent food for decent prices. I wouldn't go out of my way to eat there. It's nearby so I go. Sadly they had no T-shirts for sale. One would think that they would capitalize off the TV history.,review,D9WIDdPgbOk8-ChvH_hUfQ,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2010-04-20,tMLsmKEgbprLQ2DVCxejUA,5,"Honestly, this is the best pizza that I've had in Arizona. I'm a sucker for wood-fired goodness and fresh mozzarella--Cibo does both to perfection. Additionally, I've come to appreciate the character and charm possessed by this little gem in a sea of chains and strip malls. The wine list is not overly extensive, just efficient and thorough like it should be. The salad selection is full of variety and offers a bright way to begin their dining experience. Be warned: Cibo is pretty tiny, causing a wait on weekends.",review,IbNzF_SIdZioYbLnL6F5Vw,0,0,0 +Gq7CbG8Gw4lGixXKIACB5g,2012-04-12,niMmA49Z07G1T-h5Gea4tw,5,"I love the Madagascar coconut white tea! The prices and very reasonable, only downfall for me is they don't list the caffeine content;(",review,0TuOVaf4sM11UUbqGRL-4A,0,3,0 +v1H45TVGiORapYHQyGdoFw,2008-04-07,julrXc7fBvyCa0Z8xJKkRg,4,"El Taco de Chandler exceeded my expectations. I've driven past it almost every day for a year. My curiosity finally got to me, so my boyfriend and I went in to try the food. We waited quite a few minutes (easily 10 to 15) for our order, which is a good sign for fresh preparations. The joint is hooked up with a juke box, pool table, dining area with tables and chairs, and two benches near the register, for those waiting to take their food home. There were special desserts in a glass display cabinet, including coconut clusters and sweets I've seen in Mexico. The assortment of beverages is outstanding, offering both Coke and Pepsi products, juices, CapriSun, horchata, beer, and Sunny Delight! The menu is about par for Mexican restaurants in the Phoenix area, in terms of content and price. I got a fish taco, which was outstanding! No cheap tartar sauce here! I also got a cheese quesadilla, which came garnished with lettuce and tomato slices. The quesadilla was warm and fresh, on an obviously fresh tortilla filled with tasty cheese. For the two of us to eat a few a la carte items from the menu, the total came to $11.00. There are also combination plates available, as well as quite a few soups. Overall, I was very impressed! This looks like a fun place to hang out. The food is definitely worth the wait. I happened to ask the cashier, and they are open until 10pm on Saturday's. Muy delicious!",review,jKeaOrPyJ-dI9SNeVqrbww,1,1,0 +qjmCVYkwP-HDa35jwYucbQ,2010-03-22,00lByKsp1MLHSciAflZSmw,5,"WOW! I am very sorry that it took me so long to convince Bri D. to go here. We went for brunch and it was amazing. Absolutely one of the best breakfasts I have ever had. The johnny cakes were out of this world! They have a granola-y taste to them, are filled with blueberries, and topped with yogurt and real maple syrup. It is this awesome combo of sweet and tart that is great. Despite being three pancakes, they weren't heavy and dense like normal ones. They made me feel satisfied but not ""stuffed"" and gave me lots of energy throughout the day. That's exactly what the awesome waitress said they would do. + +I love this place! It is beautiful inside, I love their theme, I love their concept, and I love the food. Can't wait to try more.",review,fev0iI-XDrteD4SYRKjiUw,2,3,2 +yRga-WpyfZRz8Es4OpyMhA,2011-12-26,xd0M51RYiFXDMeebWa0TdA,1,"Considering what is considered the 'norm' for workout facilities... this place is WAY behind the times. + +This place would be amazing for 1952- it would then be considered clean, tidy, and cutting edge. There are some actual perks about this place- they do have daycare and plenty of mirrors for me to watch my fat jiggle while I run on the treadmill ;) + +It's just an utter disaster. When the BF and I originally signed up, we got a couples membership at a newly redone Glendale location and it was worth the monthly membership fee. + +This place does not need a 'face-lift.' It needs to be gutted and TOTALLY renovated. You just feel a nasty moistness when you walk in the door- which just gets worse the longer you're there... and is even MORE WORSE during the summer. Guys always have the weight benches dominated. There's never any availability for machines (any kind) from 4-7:30pm, then it starts to thin out. Blah bla bla blah bla. + +Considering this is the ""Biltmore"" location... huge disappointment. Fact.",review,huE7A2WBkTJTyEr2K8Owzw,0,4,0 +Dka36Pw7ibbHV6xIimQAOg,2011-07-25,5o3cR2uPme47EXiqBsTU6A,1,This place was messy and loud. The food really wasn't great and the salsa bar looked like a three year old put it together. Overall the only plus was the tortilla chips that were free before the food. I will not be back unless one of my friends pays for me,review,3s0K-1USEkGnA8de9GRrhQ,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-01-29,wxJbkvhNEu0O9ghfFPE8nw,4,"I really am a fan of this place. It has good food and good beer, and also is associated with some good memories here. This place is a great place to come to and watch a game or two. Or in our case, a great place to come to after watching out team win or lose the game. The parking here can be difficult since there is no lot or anything designated for costumer parking. The beer is really good here. I like the lighter beers, such as their regular peach beer, but their other beers and seasonal are awesome too. The food is delish; I always get a hankering for their beer battered fries. Eat it with their jalapeño ranch sauce and it's perfect. That and some loaded chicken nachos are easily split between friends; their portion sizes are fairly huge. It's really an awesome spot to get together with friend, have a pint, enjoy a game and some good food.",review,BgY9LwHmY8BO_lPI3pNRFQ,1,2,1 +I1rvqU2k5UQGo2lGdY6hyw,2011-06-25,Pm7nvkGDpDDXYWQ7TDg2HA,5,great food... love the pad thai....awesome atmosphere...,review,7b07TmlFDFej_r65H2wF6g,0,0,0 +_lDDgqKSwzYKNiCqdGQLHw,2011-07-02,OxvQeuyvUrEOUvpaSCo2Iw,3,Good Starbucks in the Happy Valley Shopping Center. Excellent AC in this place and a nice place to cool off from the heat and get a Frap!,review,P_LzcrlVXFdgBq_24UnlUw,0,0,0 +InwM3QZtHxSGH0BheHr1uQ,2011-11-17,8rN8-3-ggG5dda2xOKnIsg,2,"What's up with the premium gas in this state being only 91 grade? Where's the 93? + +Anyhoo, this is a very busy gas station at the corner of 16th and Highland. When the pumps are full of cars, it's hard to maneuver in and around the parking lot. The store looks a bit short on supplies, but then again I just went inside to pay. + +I may give it another try, we'll see. But I'll look elsewhere first.",review,aTi0NVrcPJWbN6jAsJVcAw,1,0,0 +-vaGR2CXNS4NZrMdctSkGA,2011-08-07,8VN65nUBl22-g81bcSeLDA,4,"The first thing to know about this Los Reyes location is that it is quite different from the one on 7th St! It's a different menu here, for starters! I had my heart set on my usual, a ""Torta Norteña, & a 99 cent Ceviché. They don't have those things here, so I settled for the nearest looking sandwich, a ""Mexican Torta"". (My server did say the ownership is the same as the Sunnyslope location.) Anyhow, here's how it was for me here today: + +* This is a good sized place, & I managed to find both a parking space & a comfortable table inside to land at, even though they were ROARING BUSY! + +* My nice server almost immediately brought me a big basket of tortilla chips & two kinds of salsa, medium & hot! Both were good. (They don't even serve tortilla chips at Sunnyslope.) + +* I ordered, & it took a little while for my sandwich to arrive, but as I said, they were super busy! No problemo. Meanwhile, I ate about half of my chips, & Señorita brought me ANOTHER big basket of them, & more salsa! + +* My torta arrived, & it was BIG & DELICIOUS! It comes with a side salad, which included some pimento & cucumber slices, lime halves, lettuce, & a fried quarter onion. All this was good too (& DID remind me of the other location). + +* Gripes? THREE TVs blabbing out a show in Spanish, fairly loud, & this place was noisy to begin with. + +SO? ...I didn't care as much for the menu here as Sunnyslope, & the TVs were a bit of a nuisance, but with that said, I still think this is an very good place to eat, & the value was AMAZING at only $6.50 for everything! :-))",review,ikm0UCahtK34LbLCEw4YTw,3,4,2 +CV4DDFG6tII-ehzaWPXK4g,2007-11-16,NJ_kBNIQG6vSNBnrWxEyoA,3,"I honestly feel a bit bad giving Wildflower a three star rating, but I'm honestly waiting for the time when I feel impressed with their food. + +I've been to Wildflower quite a few times, ordering something different each time. First time was the sweet potato and fig sandwich. Disaster. Next time with the BLT plus. Ick. Next time was Potato Soup. Eh. I don't know what my problem is, everyone raves about this place as being awesome. + +The nice thing about this location is that I can meet friends here for a mediocre lunch and walk to the movie theatre or Target afterwords.",review,m7j9e53ycZxjWYBD7rZVng,0,1,1 +4O8NrAHjO6Tb_Xa_YT-Xjg,2010-03-23,2ZBIhY405zvsqbZPQM9gsQ,4,"I've been to a few Schlotzky's around the valley and this one is actually surprisingly one of the nicer ones. It's clean with plenty of space for even the largest working group lunch. Service comes quick, and they have this southwestern sandwich that is great! + +If you're one of the many people who work for a large company on the Dunlap corporate freeway, this is not a bad place to grab a bite before the second half of your work day. + +One quick tip - it's kind of tough to find, but it's a stone's throw north of Dunlap on the frontage rd. You have to go back and around a building to find it though.",review,mQba83gB018LlGt51r80ZQ,0,1,0 +HRjDpeJOL02ZqwrYgtHV_A,2008-07-08,2M3EkRUj-88W23ZmFO6Zzw,5,"This store used to be closer to 19th Ave & Bell they have since moved and expanded a ton over the last few years. Everything is made fresh daily ceviche, guacamole, salsa's, they have pan dulce delivered every morning yummm. You can pick up the old school soda's here, and good Mexican Favs like Pinguinos, Gansitos, Duvalin, Pelon Pelo Rico, De Las Rosa, and even Bimbo bread just to name a few thing's they carry here. They have natural all organic small game hens that can be stuffed or bbq'd you can ask for their rub they have all kinds of meat most get the Ranchera here for some carne asada you just need to be able to say how many ""Libras"" (Pounds) and you want them to make it ""Preparada"" they will put in their special marinade w oranges, onions, and spices in the bag. If your a meat eater you cant go wrong here. I cant get enough of this place!!",review,V0y4fqp-4pSRfsz0FmsjPA,3,5,1 +c1yGkETheht_1vjda7G5sA,2008-08-16,Fd_7VBAR07qGHwLiMZstRA,2,"I don't get it. Not the concept of a good vegetarian restaurant but the need to create mock this and mock that. The word mock appears on the menu no less than 30 times, and that made me want to flee pell mell at mach 1 out of there, sonic boom be damned. I understand it from a marketing strategy to appeal to and or convert the carnivores and omnivores I suppose. Do meat eaters feel better about eating something vegetarian as long as it is shaped like a chicken wing? Has anyone gone to a steak joint and had mock carrots made from pork medallions? I am also aware that we eat with our eyes, have preconceived notions of certain types of cuisine etc. However, I firmly believe that if an establishment uses veggies, legumes, tofu and such and gets creative instead of trying to reinvent the meat wheel, the end result would be much better. For Example the Mexicali burger, no mock meat reference here. How about listing something as ""whatever the hell it is"" served Parmesan style? + +I stopped here for lunch yesterday as I was in the area. Cool space, it was open colorful and inviting. A couple of organs line a small space up front. Nice mild funk flavor to the decor. Ordering is done counter style and they bring it out to you. You pretty much go behind the counter to get ice for your beverage which I thought was a bit of a weird queue. + +I ordered the spicy Thai peanut, a dish that offered mock choices, but I went with the crispy tofu. The brown rice that was the bedding here was ok, lukewarm at best. the dish lacked any real flavor and there was no spice whatsoever.The tofu tasted as if it was freezer burned, which really dumbfounded me. I think it may have been crisped long before it was served to me and microwaved, the texture was just off. Copious amounts of cock sauce, err... Sriracha saved it from blandsville. + +I am not saying I would never return, as I tend to give places more than one chance. I love well prepared vegetarian dishes, just don't mock me.",review,bcZd4ohK6CIT_BOQ0_O53w,6,5,8 +HaenKnTNbXGowZBoYGY4Ow,2010-03-10,nwDD285137wq3aaJr0Reow,2,"I don't know why Sunset Clothing Exchange moved from it's way bigger digs at Southern & McClintock.. but I guess they wanted to be right next door to Buffalo Exchange... + +Anyway, this store is very take-or-leave it. If you are going to BE, stop by there, but I wouldn't go out of your way. I did buy 3 kick ass vintage dresses on a fluke once... and they have really cool art on the walls from local artists, including art by my bud Wiley. I think this place has good, if not great intentions - but just doesn't have the purchasing power to keep the store fully stocked/ or interesting.",review,SC_bFYaDgDub7tDjKCvV_g,2,2,2 +5VMajxduxfLPSyQkVFKESg,2011-01-29,Kf2uRhhbjaGvNhkAmGd1dQ,4,"Joe's is a Gilbert staple. They have the service down to a science so you can start your journey standing in the back of a line that is about a quarter mile long, and inside of 5 minutes you are sitting at a picnic table under the trees enjoying your grub. + +I have been a fan since before I knew why it was important to find and keep places like this thriving. Joe is cool, and a guy that people who want to succeed in independant business in Arizona should keep their eye on. + +The food is quality, the location has been around forever, but keeps fresh with awesome and unique decor (like a life size tractor) and lots of space outside for families with kids to go crazy. + +The menu is simple and doesn't try to do too much. The staff is usually very pleasant as well. + +My usual is that potato that is as big as my forearm stuffed to the gills with pulled pork, sour cream, chives, bbq sauce, butter, cheese. + +and pickles on the side. + +If you haven't been to Joe's, you should make it a point.",review,5oLJL8ImlYLkFm05J6oKqQ,2,2,1 +yVQiGdxmnrkJDyQXv2maNA,2011-07-20,9DPZSubMwYAsmnK5ui50Zw,4,"#26, #1, #150 is my favorite. I go here every time I need something warm in my belly. They are open early too! + +I love this place and the dining area has gotten bigger :) + +Had the Bun bo hue. Was pretty good and cheap!",review,HFzJb1EnBsB6fD5s-9fXUA,0,0,0 +0Xz7umPUtAxf6JMHwybnmg,2011-12-25,LYtKdDmGDn0flUKCXlLdyA,4,"Older clientele (don't go here for a hip salon) but solid professionals who know how to cut hair without messing it up :) + +Thought it was a little weird getting water in a ceramic coffee mug...I think plastic cups or water bottles would be better.",review,PHqfRoNsHKcvS24-yxxewg,1,1,0 +eHC_xNrT1SkJyC2oncJlhw,2012-03-08,PvrzzBYNlTWmz0gKyvazEg,2,"TORTILLA SOUP = not the biz. + +that's all I tasted so that's all I'm rating this place on lol",review,l5upkLok78p-NQN_3uurrA,0,0,0 +5VMajxduxfLPSyQkVFKESg,2010-12-22,wM199bUIqy-2w0je2L5Ojg,5,"Love. It. Awesome pulled pork, brisket, turkey. The sides are really good, too. I feel like it's somewhat expensive, but it's worth every bite, but then again, that's BBQ. If it's dirt cheap, that means it's not quality meat. + +Anyway, the 2-pound potato is great, too -- chives, sour cream, butter....",review,9ZbwFZhqWVwdbuYSP_FjWg,1,0,0 +5Js9G0axfWhbYlB9UgXLww,2010-08-19,74itj9az8k89zAGypfX4dg,1,"Einsteins in general has mediocre bagels at best, and their ""schmears"" appear to be highly processed. I've generally given up on Einsteins all together because because their food has really taken a nose dive, as has the service. I stopped by this location recently because I was driving by and in a hurry, and wanted a bagel (they're supposed be a bagel store after all!). First, no salt bagels. Aren't salt bagels one of the standards? Second, I ordered my bagel with cream cheese (cream cheese being a $1.50 option) to go and that was my real mistake. Whoever made the bagel didn't even manage to slice all the way through the bagel and put an amount of cream cheese approximately equivalent to a pat of butter on one-half of the bagel. The other half was basically dry. Unbelievable. Needless to say, I was pretty annoyed when I got to work and opened up my bagel. Stick to any of the local bagel joints like Chompies or Kashmans - they have much better bagels, and they will dump a brick of cream cheese on them for you.",review,F3slVCSkCvytxat4Trw3jw,0,0,0 +SgGINtDKQgoXoAnQgrDKDg,2012-12-16,HD4qbc-7eGyXAUYnXdb0Sg,3,"The Good: We absolutely love their wings and its becoming a regular for us to go every other Tuesday for their wing deal. We always get the honey hot wings and share a side of either regular fries or the loaded fries. + +The Bad: I do feel the wings are a bit too pricey, even on the deal days. Also, what is up with their high school hostesses!? They are incredibly rude and give dirty looks every single time we have gone, which is now around 7 times. Someone really needs to put these girls in check. Goodness. This is the reason for 3 stars instead of 4. I would actually give it 3.5 stars if I could. + +We like the atmosphere and it always seems clean and the servers have been very nice so far.",review,J5nb9AT1LDiGN4_hY0Au8Q,1,1,1 +bF7KQ6AQK5rBS7aOFKtlWg,2012-08-09,2ZhNA-xTjlr7RNwZpM5lqg,5,"Dilly Dally My Willy Wacky +By The Rue + +Why do I always forget this place, +When deciding on where to eat lunch, +Here I could really stuff my face, +It doesn't matter if it's dinner or brunch. + +My wonderful, tasty Honey Do, +Alfalfa sprouts, turkey on whole wheat, +Add a slice of cheddar for you, +This sandwhich cannot be beat. + +Located not to far from the hospital, +So you get a great crowd of nurses, +The hotties who come here are pivotal, +I'll stay until the crowd disperses. + +Get the soup in a bread bowl, +Or a bag of chips if you please, +Add a cookie for your hole, +I'll say bless you after you sneeze. + +Bottom line is you cannot go wrong, +You'll love whatever you order, +Go home and hit the bong, +And then make a run for the border. + +DEEEES NUTS!!!",review,9JpnM-xebt0343KkGR_HKQ,0,0,2 +qb4PzVr19bXXLBf71dd5kQ,2011-12-12,QUxMPdPKpAYreYTHI80LUA,3,"Finally a place to watch local sports with sound. I always find it unbelievable that many sports bars here in town look past our local teams and support the foreign hoards from Wisconsin, Minnesota, NY, Illinois etc.. Not at Dukes...local first. + +Please return to your frozen tundras and leave us with the Suns, Cardinals, Devils and Coyotes. + +The food here is nice bar/pub fare and is always fresh and hot. Drinks are plentiful and service respectable. Would like to see a little more variety on the taps but other than that Dukes is a great place to catch a game.",review,lmvohdrRD8SKitMVynzTcg,0,0,1 +jEWfxxA_kjeJE_Z_ku3zLA,2012-02-18,1ShyhjZOoavLH7LArfKwmA,2,"I have been twice, both at lunchtime. Cute (trendy) place, sushi rolls are decent, not spectacular. Loved sitting out on the patio; however, there was a distinct smell of sewage wafting by every once in a while. Not sure where that was coming from. + +The hostesses were unfriendly. Waitresses were nice enough, but wow, S L O W service. I mean, my God. I had nearly polished of a bottle of sake by the time the food got there (which may account for my belief that the sushi was good, lol!). Same embarrassingly slow service in getting our check to leave. + +Overpriced for a lunch menu, I thought, and the calamari appetizer was a huge disappointment. It was like ... TGI Fridays or something. Just very ... sportsbar-esque. Huge, rectangular chunks of calamari, heavily battered and deep fried. What happened to light tempura and calamari rings? Isn't this a Japanese restaurant? + +All in all, it was okay. I was in good company both times, and had plenty of time to spend, so the slow service was not an issue, but it could be a problem if you have other plans. I will likely go back until I am able to find a comparable or better sushi place - I'm new to Arizona.",review,pni4uLN1j4qwh_4dSUPnlQ,0,1,0 +qW9UysjJw3y3CwEbzruEEw,2011-07-01,Ve5yd9rFYUtjHoAsqs-29Q,2,"I was really looking forward to eating here because I had read good reviews. Maybe we went on a bad day. They were very slow but it took way too long to get our food and they screwed up my friends order. I got a chicken, carne asada and fish taco. The Chicken was the best. I didn't care for the carne asada or the fish. Guedos fish tacos are far superior. I don't think that we will return to Elmer's with all the great Mexican food choices in the area. Sorry.",review,EQZjeyvQRe0xnEYcV_eK0A,2,4,1 +6Kon3cR5ZEm5rmYKlpcfcw,2011-03-07,oYwWCGdemEwokONQWvRKyQ,5,"Anything I write will not do justice to this awesome, awesome hotel. I've stayed here a good dozen or so times over the past three years and it's always fantastic. I love all the rooms. If you can get a suite, you're an extra lucky duck, but even the basic rooms are adorable with phenomenal bathrooms. + +The bar and restaurant is also great, with fantastic appetizers, wonderful specialty cocktails, and fun rat pack music. Breakfast is better than most restaurants, forget about comparing it to standard hotel fare. + +The location is also good, with plenty of shopping, restaurants and bars within easy walking distance. + +This place is not within my normal price range at all, but it is worth every penny and I would never stay anywhere else in the Phoenix area.",review,kCc44Or_pDdKCmmRolQWeA,0,0,0 +cp39VURFby4A6u9m2It8jg,2010-05-25,PIPXQ9N0ihcdd3xeaXdVcA,2,The buns fall apart so you end up eating your burger with a soggy bun. Staff does not seem to know what is going on and they are not well trained. Can't think on their own.,review,DaOKLm7KrCIdciwa3O6Etw,0,0,0 +LbLVO7yqAJGEQ1nK6rEvHA,2008-11-05,GUdj_ur2gIyIOKN6EMlgNA,3,"And now ladies and gentlemen, the category tonight: Things that make Siu-Wok A-OK in my book. + +Here we go.... + +#10 - I can actually understand the people that answer the phone +#9 - The sweet burn on my tongue after eating a mouthful of Kung Pao Chicken +#8 - The lack of lasting gastral repercussions from eating said Kung Pao Chicken +#7 - The friggin huge area to which they will deliver, for a minimal $2 charge (beware their website says it's a buck-fifty, but the gas crunch is effecting everyone) +#6 - The pork fried rice that is literally one part rice mixed with one part tender / tasty pork +#5 - The place is actually clean +#4 - The coupons attached to the menus that they send to my home at regular intervals +#3 - I can call in an order, hop in my car to pick it up, and be back watching quality reality programming within 15 minutes +#2 - They have Mr. Pibb on tap + +And the number 1 thing that makes Siu-Wok A-OK in my book... +Eight... yes count 'em, eight, yummy soups that they will deliver to my door when I just can't bring myself to change out of my pajamas!!!",review,iwWBF3nKoRMoy1sbkLJwvg,5,5,5 +tHztlek7Ecs-5ZonXUATyA,2009-09-28,hIgF92olv5yRUdIvWJu0zA,1,"Man oh man... I can't decide whether I want to review this place or not under the auspices of ""if you don't have anything nice to say..."" + +All I have to say is this: + +We ordered food. It came totally wrong. I asked for a vegan salad, not specifically, but that's how I ordered it, and it came with chicken and cheese. This just shows a complete inability to read the order. People make adjustments all the time. I have worked at a restaurant. I have fucked up. I should have been lashed 40 times! Read what people order! + +So when I got the wrong salad and saw what an unbelievable disappointment it was going to be, I ordered a veggie sandwich instead, which, to their credit, they delivered and took off the bill. + +The best customer service in the world could not overcome this sandwich. It was a monumental fucking embarrassment. I cannot believe they let that thing out the door. I ate it because I was starving but I would have liked to have driven it back there and go through it, ingredient by ingredient, with the preparer... Explain to me how this is appealing to the eyes, mouth, stomach, etc. + +I just hated it. A lot. + +Sorry, I'm sure you're nice people with good intentions.",review,oC0kwGvgaAeT3ZIxdxTcJA,4,5,5 +GDSHvc_xW6HjrxMU-gC0uQ,2012-11-02,nhUvXrVPXxZhJ1xh3uH2pg,5,"I brought in six pairs of shoes to Ariel to see if he could put new heels on them (I wear the spiky-heeled high heels). For $12, not only did Ariel put new heels that perfectly matched each color, size and type of heel (and even filed them just a hair so that they would wear smoothly), but he also put a lot of work into fixing the front of them. Many of my shoes had toes that were worn, shredded or faded; Ariel made them like absolutely new. Amazing! + +My shoes are not Prada or Gucci. They are mostly Nine West with leather uppers and man-made everything else. :) However, Ariel took amazing care of them as if they were ""the king's"" shoes. It is so great to have my favorite pairs of shoes back. I will return. Thank you, Ariel!",review,Rz7qXI6Vu-fzuCViv7_veg,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2010-11-06,q35wX6JC_tc3VyYeC9ULXg,5,"Best nights to go to Postino's are Mondays and Tuesdays. They offer $20 deals where you get 4 slices of bruschetta out of the 12 that they offer and one whole bottle of the house wine. Each bruschetta slice is probably the size of maybe your hand with your fingers outstretched -- if you're a petite girl :) ... They then cut each slice into 4's. Perfect for sharing! + +We went on a Monday night after 8PM and ordered 2 bottles of wine, the 2 orders of the bruschetta (which were 8 slices for those that can't count), and a bowl of olives. The total came out to about $50...that's a little over $13/person w/o tip!! AWESOME!! PLUS, they have complementary valet parking. + +Everything was just fantastic, I've never had fig before and they made my experience there quite memorable. I definitely recommend you come in, regardless if it's for their $20 deals on Mon/Tues or not. They've got GREAT food and I WILL be back.",review,zjX3Bph1uSWtrhaLCuyC2g,0,1,0 +r3r_bAfa6pZKIhQB82FizQ,2010-09-27,Aig77qNnNFDKFLiML6F5pQ,4,"I went here Saturday night with a party of 4. It is a pretty neat place in a neat area. I felt pretty hip and urban being there. Anyway, I NEVER eat pasta because I ""try"" to stay away from those carbs, so even coming here was a giant step for me. I wasn't expecting the pasta here to be anything great but boy was I wrong. Each one that I tried was excellent. The ingredients tasted fresh and delicious and each was very flavorful. I don't remember exactly which ones I tried (I tried 4 of them), but each one was excellent. They probably don't make a bad pasta dish. + +Some of the dishes have some odd/random ingredients, but don't let that scare you. Order each dish as it is listed on the menu and you won't be disappointed. + +When I feel like I have to get carbed up for a big race I will return! + +I'm still a little pissed that they didn't have diet coke or any diet soda at all for that matter. Who doesn't have diet soda? I get that they are trying to be green, local, natural, organic or whatever else is hip right now but come on. I know I should probably stick to water anyway, but I always enjoy a diet coke with any good meal. I'm not sure why, but I just love it and it makes my meal a lot more enjoyable. Weird, I know.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,1,1 +XU5Fb3TosXDUJcNRWQM5cA,2012-02-06,cePaDdq4KrlFJTOsn37TDw,4,Best Chai Latte- Great atmosphere and friendly staff,review,hZIBTTAHwnr-7n00pRNmMA,0,0,0 +wCi6nBXnXf5PAHqJZP9dqA,2009-07-15,2t0mrli1ozlp6dpe9tTfwA,5,"I agree with Tracy, my wife and I are big fans of Fiorella's. Definitely a treasure for the northwest valley. The service is great and the food is delicious. Prices are a bit higher than other dining options in the area, but the friendly people and yummy food are worth it.",review,p4biT34WoS6rSnP28GdxwA,0,0,0 +WbGyfSypHxJZPC18Kj5OmA,2008-12-30,Wj9hXcWxlVi2TGAfU8tpcA,5,"Best UNIQUE breakfast / brunch / lunch spot. This tiny place may look like a boring little bakery, but think again! +SIt outside on the small patio area, ck out the GR8 crepes! savory, breakfasty, sweet - u pick or choose! +Hubby luvs lox & cream cheese & capers. +I luv the chicken, aspargus, basil, feta :-) +Mmmmmmmm.",review,h7v_M_0-YVpSVZ2WD7FpAA,2,5,2 +c0zhbiffge6fGl_Nzgxbqw,2008-07-05,z57cHVF0wrQlFsCLcGQ8oQ,5,"Places like Made make me realize that there is hope for my life in Phoenix. It is a cute converted house shop that carries a wide array of stuff that you won't find easily elsewhere. + +There is lots of cute baby stuff that I would laugh at if I ever saw a baby wearing. The jewelery is unique and cool- it made me feel like I had etsy right in front of me, live! They have some good books around and some key David and Goliath pieces. + +I heart places like Made, so therefore I heart Made.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,2,8,1 +-AAig9FG0s8gYE4f8GfowQ,2011-09-14,x6isAcCQ13ITojUY3Enzhw,5,"Lately I have been addicted to a good Caprese style sandwich and Pane Bianco's is AWESOME! I read the previous reviews so I went there expecting a crowd and nowhere to sit. This did not detract from the experience for me because the quality and freshness of the food was more than enough to get and keep my attention. The staff were very friendly and helpful, being from the Atlantic Northeast I have high expectations when it comes to Italian done well with personality to boot. I did not want to wait till I got home to eat my so good smelling prize so I went outside to find picnic style tables and benches. It was way to hot to sit outside and I was craving iced coffee so I went next door to Lux and was both surprised and relieved to find many of their patrons with Pane Bianco bags openly eating their lunches with drinks from Lux to claim patronage. Can't wait for a hopefully air-conditioned expansion.",review,sBXm7wsHKkrkcnyYRlZlzg,0,0,0 +06kfoeRs9Acj82Yl3i9p_w,2011-03-10,fu075k8dTKAQaBKAGSNuFA,4,"I finally made it to this place after hearing nothing but great reviews from others. Now I can see why it is held in such high regard. If you are a fan of Paradise Bakery, this place is better...hands down. At first glance, it appears to be identical, but on closer look it wins in two important categories. First, the vast menu blows away the Paradise selection of ""like 3 items"" There are countless sandwhiches, salads, soups and deserts. Second of all, the prices are incredible. It is very affordable for the quality and quantity of food. Finally, the food is excellent. Not that I have a problem with Paradise, but given the choice, Wildflower wins every time..",review,IVb9YMopuGyt5jJ7rjwoqg,0,0,0 +24OmQWFTnbfGv-e8GyEMAw,2012-09-17,LLMEBVFBVYem9MX8NvK0Fw,4,"Tasty food, great deals at happy hour..",review,kAY3g4QY9TIX6aNQ-XnX0Q,0,0,0 +AryNioF9fxl8RYGiIE7fSA,2010-07-28,Duh0LdoFedFNUAQH0z7mgw,5,"A great place for midday healthy food, thin crust good pizza ( try wild mushroom & arugula), salads are great too & the best part that serve pretty acceptable nice wines. It is not an average American food eatery, it is definitely for those who are looking for healthy low calorie lunch.",review,3guuClGenXUxHmmHR7-VBQ,0,0,0 +OXwKBaV74IM_VduC5OWV1g,2011-12-21,fTwKSY6PnO9dEr5AnpIdbg,4,"Once again, family was out to try something new! I was in the mood for pizza. I noticed there were quite a few pizza joint in this area! So this was the first one we tried. We order a pepperoni and green peppers pizza well done, spaghetti and meatballs, and chicken Parmesan. The pizza was good, I enjoyed the flavors, pepperoni, cheese, and sauce was very good. I am not sold on the crust! But overall the pizza was still good. The spaghetti was very good, especially the meatballs! It takes a lot for me to like meatballs and these were one of the best I have tasted. Daughter hardly gave me a chance to taste the chicken Parisian, but what I did taste was really good, they do like to pile on the cheese, that's the way to get my daughters heart! Over all we had a great time, we love the small mom and pops atmosphere, and we will probably come back soon!",review,UCQNrwN4_hHHTWYa8cqe_Q,0,0,0 +hZRLGfRrZTo9up2P-0aAHg,2010-11-27,aGsE6UcZ4T3CTlo5P_rMtw,5,"The food reminded me of my mom's home cooked meals. The beef with red salsa was super good...and not to mention the warm, handmade tortillas. The prices were decent, the service was excellent and the food was great. ;-)",review,JrNSIOrh7S7FmlAmxnk0Mw,1,1,0 +xun1GBrZzChBLHY6NrsnMg,2012-02-01,7IYLYBTRrpvpIz-uC8wkfA,5,"I've never been to this location before. My husband had taken his car here previously, and asked me to take it in today (there was a nail a front tire). The second I stepped through the doorway I was greeted, even though all agents were busy helping other customers -- excellent customer service to acknowledge I'm there! + +Less than a minute later I had a gentleman walk me out to the car and look at it. He tested to see how far in the nail was, and realized it didn't puncture, so he took it out and said the tire was fine. + +I went there knowing my husband is WAY overdue for new tires, so asked for a quote. He gave me a few options, and told me what driving habits they'd be best for. He also gave me the warranty information without me asking for it, and included it in the price instead of ""shockingly"" adding it in when I would pay like most places would. I never thought for a second that I was being oversold. It was amazing because I despise going anywhere having to do with fixing my car. + +Quick. Clean. Friendly. Intelligent. Honest. That about sums up this place. I'd recommend it to ANYONE and tell you to go out of your way to visit this location.",review,mR7LQurf_awsKqDK46NRew,2,1,0 +35uDzLpJlbSztgkJLtg1kw,2012-09-11,tq-wwW15BvELO34P0wNqpA,4,"Wild Child Bed For Company +By The Rue + +My favorite sandwich is the chicken continental, +The toppings on here are pretty fundemental, +You can get something else, I won't be judgemental, +When I give you a hickey I promise to be gentle, +If it's not on your neck it's not accidental, +When I am done it will be something monumental, +Before work, covering up with a scarf is detrimental, +Back to my review the rest is experimental. + +If you want something different than chicken, +I won't give you a hickey but something finger lickin', +The gorgonzola and roast beef will not sicken, +I don't care if your from France or Great Britain, +The herb mayo on sourdough gets the pulse to quicken, +If it were up to me I would name your cat ""Mitten"", +Jim Carey was in a movie called ""Once Bitten"", +This is a great place to eat, hunger now stricken!! + +Beatnik!!",review,9JpnM-xebt0343KkGR_HKQ,0,0,0 +bO-WvOxfPzNbwSD87KuiBQ,2012-10-14,GTL4WBj1peHUgHaBUgrsgA,5,"Tucked on the western edge of the Foothill Acres neighborhood in North Phoenix or what I would call ""The Slope"", Try Me Bicycle Shop has been in business for nearly 40 years and has been collecting the odd part for every type of bike over that time. + +The showroom is filled with cruisers and comfort bikes, new and used. No high end bikes here but they do have an inventory of old and hard-to-find parts, good service and free air that makes this place.",review,gN03qFYysM5DbgjuV6N0QQ,2,2,1 +pvMeUi5Lw2O5vIXg9_EvDg,2011-08-24,GvMTOOFBzGjIkbfdzC4YSw,4,"My daughter and I had a couple of the beef and lamb gyros. They were wonderful. The meat was tender and juicy, the bread was soft and pliable. The only thing that I could find wrong was the tazeki sauce could have used some more spices, it was kind of blah. We would go back. Service was great too.",review,6ZXbTu3isjKoD42_iKOhqA,0,0,0 +ZG4oIFBRlXyaF5F9L3dzxg,2010-04-17,vNlxlaz9qwj8VCYV0H_rVg,1,"Maybe I should have had a hot dog but I crave Chicago's Italian beef, I didn't get it here just some greasy old beef of some kind, use beef broth if the meat gets dry, not a whole can of olive oil, YUK! It didn't have that good Italian beef flavor so I asked for giardinara to add some flavor, it was very oily too and I had to pay extra for any peppers either hot or mild. No stars for that beef, the only saving grace was it didn't make me too sick, I expected to be sick for days not just one day!",review,b48NAHm3R12f7nRJXHVnCw,0,1,0 +K4Oo7A5Kp5eSgBV7MgOu8Q,2012-10-08,8kOvjFsHRFc4kcLDit489g,5,"Ok, so iv been a Starbucks junkie for years....until i discovered dutch bros! This location is my favorite, although they are all good. My favorite thing about dutch is you can order ANY blended drink sugar AND fat free. You cant do that with any frappes at starbucks. You cant beat their customer service either, all the employees and incredibly nice and upbeat, always greeted with a smile! I once ordered a blended double coc coffee and it was too frothy for my liking so i stopped at the location in tempe since i was going that way to order a new one..they exchanged my drink, apologized and sent me off with a new drink at no charge. added bonus is the stamp cards, so if your an avid coffee drinker like me, you'll be saving some money to. Quick drive-through for on the go.",review,n3j5V4tqOB3KioGl6qOBcA,0,0,0 +TuuENwzxOFdDLY_oKCbFZw,2012-04-29,BNcZZkyxTDMrGnCvpOTnQg,5,"This place always pleases! Their sandwiches are always great, bread is great, pizza is AWESOME, and their short ribs are great. The food is SO fresh! The waiters are kind and friendly. When we asked if they had some of their awesome ice cream, she kindly told us the freezer broke. I heart the deli!",review,Z17u_U5WTe8KPAGiRjw7QA,0,1,0 +vSWEXsXmJw5ozuF4zqE9ng,2009-03-23,vDUFw4zYIF-uxbUONBFDSw,2,"I actually yelped this restaurant from my brunch table and my blackberry wouldn't post the review. So, will try to capture the original intensity of the yelp. I still love my blackberry and maintain it is better than iPhone, by the way! + +Anyway, anyone who knows me well appreciates the importance of toast in my life. When I moved to Phoenix to work for a catholic hospital, my best friend bought me a ""Jesus toast"" stamp which puts an imprint of the Mary which appears better when the bread is toasted. I guess she wanted me to fit in. + +So when I told my waiter I was having a ""bad toast experience"" and he blew me off, you can imagine the impact. I ordered the oatmeal as well as the basket of toasted willow breads served with a variety of jellies, Nutella, honey etc. My oatmeal came out with over-buttered, grilled bruschetta-style toast; that's it--a plate with a bowl of oatmeal and 3 pieces of bread. I asked for flatware, then brown sugar and milk, then inquired about my basket of willow bread. The waiter said, ""this is the toast that comes with your meal. I reminded him of my order and he brought me some jam. I decided to stop complaining (cus I had been making ridiculous requests like being served what I ordered and having utensils). I put jam on the ""toast"" and it literally tasted like they had grilled it in bacon grease. Meanwhile the table next to us (the only other occupied table in the restaurant at 10 am on a beautiful Sunday) was getting their cranberry walnut and sourdough bread, perfectly toasted with all the accompaniments. I told the waiter I wanted toast like theirs and that mine tasted like pork (still a veggie after 25 years) and he said again, ""this is the toast that comes with your meal"". My friend was getting embarrassed, so I gave it up and left. How hard is it to bring a girl a new piece of bread? + +Ok, now all the anger is stirred up... I must say that My florist is one of my fav weeknight spots and their pianist is first rate-amazing. She truly plays from her soul and her personality shines through in her interpretations of classic songs. I have been there since the ""toast experience"", but make my friend arrive first to look for the waiter with the ponytail!",review,yaw_aNmYB-BNOoPTkzD69Q,2,1,2 +Nc8BKRECkNItZBJIku5G4w,2009-09-16,XfPv2QYkGyUoJrn7GruWjg,3,"Yes, I've shopped here. DIRTY as expected, maybe it didn't start as a Big Lots. Service is hit and miss and usually they're great at helping. Sometimes when asking for a reduction on damaged items, it's a good answer from a rare on the ball, positive employee. Other times, even though it's up to the manager, the clerk is crying with a such a dirty glare that you can hear them thinking ""you cheap xxx"", that it's already reduced (on clearance). It's still damaged so what's your beef w/wanting a little more discount? What? We don't need no stinkin' discount on the discount???",review,4muLyMlTP1ijRLACBBRcaQ,1,1,0 +adPVJMkRrS8_3VHQKw5-qw,2010-06-30,4-sDDVjEbdFaybDoER1K_w,4,"The best fast food Mexican I have had in town, complete with super cold Mexican sodas on ice. +I had a barbacoa, lengua, tripita and chicharon taco. 2 hours later and I am still full, and haven't made a made clenching dash to the bathroom yet, so I'd say it was a good meal. The chicharon was delicious, like a taco full of bacon!!!",review,9eY0M7voV1g_cm4ddI4OCw,1,2,2 +uEW1NwL9h5N0zI2Ip9UKrQ,2010-03-01,RXpMSFNuTfVMEvBE_k74xg,2,"Okay, this place has received a ton of slack from prior reviews. I am not a huge fan of the food nor the 1950's style decor, but the people are nice and I have been more than satisfied with the spinach queso dip. I actually do get a craving for it which draws me every few months to that bright turquoise and black decor. +The lunch menu is very reasonable and the lunch portion of the pollo magnifico was good! What this place lacks in food, is made up in quick, fairly friendly service, and an area that is convenient to downtown Scottsdale and the Giants Spring training stadium. I like the breezy patio area but the big black birds that stalk the fallen corn chips under your chair are a bit frightening. But after a game this March, I am actually looking forward to spinach dip and margarita at Julio G's.",review,DevOUUL0hiC5fpdnsoiAjQ,0,0,0 +IRxBQfA7FdHhzrPjtBxuuw,2010-03-25,yihQlrlE0Hw9CFnC60w_qQ,4,"Definitely one of the better Thai options in the Valley. This place is small and pretty casual - but they do have nice touches like carved wood decor inside. Got a green papaya salad with grilled prawns and a chicken satay. The satay was perfect. The salad was also tasty. The Thai tea was the ideal accompaniment. And afterward I could not resist the sticky rice with mango - which was fantastic. Prices were reasonable, too. I'll for sure be back. The location is quite convenient, including a huge parking lot.",review,wx0tEyolozKNBimMkN0ixA,0,1,0 +Lnohr9bpCbHNsomazXDg-w,2008-01-22,Q6mdVTEOjIL3ZE3jRrxAWg,4,Where else can you get a Chile Relleno wrapped in a tortilla to make a burrito? Super crunchy friend goodness with oozy melty cheese in every bite.. Oh the overkill and love every second of it!! Jen Red Pork in a quesadilla with a side of black beans and jerk fried rice.. this is some serious hybrid comfort food.. may sound strange but works very well! You'll leave super stuffed and change in your wallet from a $10!,review,lPaYMDmJbAnv_3pmZH_inw,2,1,0 +YxLiLBNTm4cOg7OlKKLmVw,2009-09-27,GxsKp9Xa4hC2T7iAy7A6Kg,4,"A Mexican friend of ours recommended Arriba's. We usually order take out, the 2 times I ate at the restaurant, service was poor and food was not as good. + +Luckily, every time we order for take out the food has been very good. The chips and salsa are always fresh. My husband likes the chicken chimi platter and we had try the carne adobada pizza, plate and sampler platter. I like the way they seasoned the food, not too salty and you can taste the spices. Leftovers taste better (though maybe mushy) the next day. + +So, service and food at the restaurant will be a 2, but since I always have a great take out experience, I'll give them 4 stars",review,h9d3VW5RTJymoFoLnN60_w,2,2,1 +-h-q6zTIdPlkz9BDP11sBg,2012-02-19,WHo_1gd9tEKUD8E9l_9fhQ,5,"Love Love Love! +All you need to do is order dessert here. It comes in small shot glasses & the flavors explode in your mouth..",review,aklTOtGeeBxTh8s9CRseRg,0,1,1 +AOLx-xr0JsFhle4K6xRHfQ,2012-10-16,4bQV2vZy3aHcg65G2iaBmA,4,Went by this morning to grab a few donuts. The real star was the glazed cinnamon twist; pretty perfect if you ask me. Also had a chocolate glazed cruller and an old fashioned donut (I think they might be sour cream). GET THE CINNAMON TWIST!,review,gdNJzMx9duSZCBdiU1QKFg,0,0,0 +JoZsAxRCwzkBI6MAfjSu_Q,2012-08-08,7YZfA6cRVhvxuRZvKr9Q8Q,5,Loved my haircut. Walked in and waited for just a minute. The stylist cut exactly like I wanted and I walked out paying 20 which included the tip.,review,RdZwXJY6IlCcnLdJPH25yQ,0,0,0 +qNqvJIH4_KENAajUfRZKoA,2011-03-23,lhzsqdaoq3Jpeov9N2ewkA,2,"Consistency is an issue with the Chipotle chain. Some of their restaurants are clean and well run, some are not. They really need to trim the chicken of the chewy parts before they chop it up and throw it in a burrito. That really sucks.",review,myhod6THr8jGMsWUl6e2uA,0,1,0 +Mysd5IypHqTFkmHlbQeOyA,2011-06-01,yBBF4WOOjpRuFBte9zx1lw,3,"Whatza Culvers? +I drove by this place as it was being built; didn't know what it was, but ""butterburger"" and ""frozen yogurt"" caught my eye..... so I decided to visit it on 2011-05-30 (dine-in). Looks like it just opened, and it was busy. +Turns out this place is a fast-food chain based out of Wisconsin that I had never heard of before... kind of like a cross between an In-and-Out and a Dairy Queen. Menu is a bit daunting the first time - a burger or a sandwich? what side? smoothies, or regular drinks? You walk up to the counter, place your order, take your number to your table, and they deliver your order to your table when it's ready. +The burger patties are different... they're about 1/8"" thick and seem pressed/fried. The buns are nice and soft... ingredients are fresh or properly cooked. Flavors are there... but it is a different style burger than what we're used to seeing. I tried the cheese curds; just wish they hadn't breaded/deep-fried them. I like my curds natural. A fountain drink completes the ""value basket"" deal. +Their frozen yogurt or ""concrete mix"" sealed the deal.... we tried the banana split (nice) and their ""brownie cookie dough"". Kinda hard to screw up frozen yogurt! yum! +Okay, so I now know what a Culvers is. It's a good change-of-pace from the other fast food chains. Not sure I'd go out of my way just to come here (unless I'm really in the mood for it). I'll have to try other items, but for now, its a 3 star rating.",review,TVMLSvdYuHK3BOwh-kafRQ,0,1,1 +FCJHirFzEtj4M1VcuaKieg,2012-08-22,kupytM_bndQwNuR482KxQQ,5,Great for young kids... tons to do and see,review,KucBnMrhalzxnD9AWrxwYQ,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2010-12-29,93ap2c64RAbxONxvA51cyw,4,"Love the Vig Uptown's vibe, decor and oh yeah, food! The only thing that I tried that I thought was just ok, was the Pad Tia. The sandwiches are wonderful, would prefer large cut fries more, but I still enjoy the shoestring type. A friend of ours, a die hard foodie, Loved the pork chop with the polenta and cherry sauce... if we had looked away for a second I'm sure she would have licked the plate!!! +All in all, the only bad experience we had was the forced valet service. Just drives me crazy that a restaurant uses the main parking lot for ""free"" valet, when it should be for customers, and valet down to another lot. No such thing as free... then people sneak into lots down the way to save the tip. If this was Chicago, or New York I could see it, but not Phoenix. But don't let that keep you away...",review,sYe1DZYWnAHVfEzWlLkaAw,0,0,0 +57-dgZzOnLox6eudArRKgw,2008-08-28,sksXE8krD3WvqSOhtlSUyQ,5,"Obsessed. Like, I've-got-the-Twangy-Tart-withdrawal-shakes level of addiction to this place. Please make one in Arcadia! Pleeeaaassse.",review,gEnU4BqTK-4abqYl_Ljjfg,3,3,5 +ZEdaJ8mcMpPiFWgDuSPqeA,2012-03-29,INkSw_fUeF1VyFQYCraAHQ,5,Loved the winkie! Eat your vegan meal next door at Green and stroll over to Nami for dessert.,review,frfPWeciPdetufUbQuoBbA,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2009-07-21,SOMcKk6XBy9fRwxtZUGZyQ,5,I have been patronizing Casey Moores for 10 years and have never had a bad night! Great for people watching and the service is always great! Get there early or it will be standing room only!,review,C5_Fe8CxYWLlxm44U1yrsQ,0,0,0 +QSCeI8HdUluG-YmbDWo-fw,2012-02-17,SjWAYNV79iT-j6NSUS1Rcw,2,No good,review,VRzQrrqpEonzull95pDCww,0,0,1 +OL9p2tme85Sd3d8mCiSOxw,2010-08-03,iGus6wCenfh62PVeQrVcVQ,1,"Every time I come here the staff is so rude! Its the closest bar to my gate so I'm kinda stuck. Hey staff, can you please pretend to like people????",review,0o0VMEJeQY0pAAZ9nxErBA,0,0,1 +Trar_9cFAj6wXiXfKfEqZA,2012-06-18,Rzorh-nPKORglooFK3i4ig,4,"Awesome Donuts! + +The only thing is, I was expecting the light fluffy glazed that Krispy Kreme has. This is not the same. HOWEVER these donuts are homemade delicious and why not support small businesses?!?! + +So why the 4/5 star instead of 5/5? Well the majority of our group LOVED the donuts and swears by them. HOWEVER, one or two just thought they were alright and preferred a light airy donut a la Krispy Kreme (lameeee). So thats why I am trying to represent all opinions here in my reviews. + +We were headed there when they were closing the dining room apparently (the drive thru is 24 hours though), but the nice lady allowed us to come inside, we had a rather large group with us. + +THE BUTTERMILK donut is amazing!! TOTALLY worth the late night trip!!! + +These donuts taste fresh, delicious, and the customer service was so great when we were there that night. This place is the best donut place I have been to in AZ. No more KKreme or DDonuts (that place is not that good anyway). Just go to Bosa and you will never go to a chain donut shop again.",review,7jWmd57QoJnq2q4QyvVS2Q,0,0,0 +oiLe3lqMFaZtsSpRuIUChw,2011-06-12,SLd_mXX26a5z3q9cSJ8eXg,4,"Pretty good food, the selection was great the service was a bit slow and I had to seat my family my self but overall it was ok, all day every day 99 cent margaritas.",review,rYH9_o2J2Y4DzvZYzE7qag,0,0,0 +ujLZmyy11g1JHCQTxRA3Dw,2012-08-20,SANIRivZOgHZKu5CCFB_9A,5,"I have been saving my 100th review for my favorite restaurant of all time. + +We found Thai Basil over a year ago now and have been loyal customers, going at least once a week and sometimes more than that, since last July. Everyone who works here is super friendly, and they know us now and know what we like to order by heart. We just walk in now and they see us and say ""Spicy noodle, tofu, hot, right?"" Its pretty great having a place that knows my regular order. I have tried most of the menu items. The garlic eggplant is also pretty great. The thai basil is also amazing. I have generally liked everything I have had here except the curry. I never have had a good curry experience. Both of the times I ordered it I ended up with long black hairs in it (which they quickly replaced with a new order) but I just wasn't a fan. Maybe it's because of the coconut milk and it makes it too sweet. + +The spring rolls are also the best here out of every spring roll I have had anywhere. + +Before I went vegan again last year we also got the fried banana ice cream pretty often. That is pretty amazing. If you eat dairy, you have to try it at least once. + +Thai Basil is one of our regular spots to eat out, and we hope its here to stay for many more years to come. I don't know what I would do without my spicy noodles!!!",review,2nXFEyQ06RfcdAXIPbxuwA,0,0,0 +-bd26a1QEEpqUZjBmtBUiQ,2010-05-03,14kJj0ogLI1C0tQ1bakdQA,3,"I reeeeaaalllyyyyy wish that I could give this a 4, but I can't do that in good conscience. The food was great, but the service was downright abysmal. + +In a fit of random adventurousness, I thought it would be fun to try a new kind of food for me. I'm typically a weenie and afraid of anything ""weird"" so this is a big deal for me. We drove out here on Friday night and at around 6 or so the restaurant was about half full. We stood at the door for entirely too long while we waited to be seated. When we were at our table, we waited entirely too long to get menus. When we knew what we wanted, we waited entirely too long to place our order. You get the idea. Thankfully the food came out fairly quickly. + +I ordered the vegetarian plate that had collard greens, some kind of cabbage/carrot/potato thing, red lentils, and some bean/carrot/onion thing. As with all dishes, it was served with the injera, a weird sourdough crepe thing. I was a little weirded out that the bread thing was served cold, but I got used to it quickly enough. Everything on my plate was yummy, but if I were to rank it, my favorite would be the lentils, followed by the collard greens, then the potato, then the carrot/bean thing. + +Eating here was a fun experience for sure, and not having any silverware definitely made for some creative feeding procedures. I would probably come back here if the mood for Ethiopian food struck me again, but I would really hope that the service would be better. Since everyone else mentions great service, I am going to assume we came at an ""off"" time.",review,W_QXYA7A0IhMrvbckz7eVg,0,0,0 +mkOgGgniAgOng1s7tjhMrA,2012-06-24,4k-ro-KmZiQw3xvRS5rHZw,4,"great merch. great prices. + +although..it's a bit sketchy getting out of the parking lot. you have to back up in a major street. is there anywhere else to park?",review,7tA6O_H0uWtszsIbolpgsw,0,0,0 +1M4oczf2lmkdgbrJ3J7OqA,2009-03-31,LYT2pgW50hez3C-GUbc7Jg,1,"I dined at this restaurant on a Saturday morning and was actually the very first guest. I got greeted by the hostess and was promptly seated. The service was phenomenal from when I walked over the door step and the ambiance is the restaurant was amazing . I ordered the smoked salmon as an appetizer and the daily scallop special as the entree. + +When my salmon dish came out I said to my self ""WHAT in the hell?"" Two extremely thin slices of salmon, little salad, and a piece of bread with some aioli on the side. Salmons cheap and they charged me $15 for this crap? I work in the food industry and the food was crap. + +Next, the entree. The waiter described the the scallop dish like it was heaven on earth. Explaining to me how delicious this special was. So I took his advice and ordered. When the dish came out I said to my self again ""What in the HELL?"" Four small scallops, 2 baby carrots, broccoli rabe, and cilantro sauce. The scallops weren't seared enough, the broccoli rabe was brown and mush, and the baby carrots were still raw. The funny thing was. The sauce didn't even resemble any cilantro flavor at all. I could of made this dish 1000x better and the entree took a big hit in my wallet, $32 for crap. + +The meal came out to roughly $60 and I left that restaurant to never try it again. I could of gotten some pho for $8 would of been a hundred times happier than spending money that wasn't even mediocre.",review,2sM4fCVg6FNdfq3FLDJbIw,1,5,6 +B_Ea839qdvPWa07YnpeIrg,2011-11-23,ayfcmgfmkqmjr8sO0Iqsuw,4,"I absolutely love this regional park! The only pitfall is the cost of admission.....Seems to me that a park should be free to enter but I understand that there are costs for maintenance as well. Buying an annual park pass makes the most sense if you plan on making repeat visits. Beautiful views of the valley from any trail. All levels of intensity for hiking, biking and the like. Hard to believe the mountain is surrounded by houses because it seems so serene when visiting.",review,VXNqQAiFc95LNtONaimqhw,0,1,0 +OdD1GuGNQ64ssJmMJ_D9RQ,2012-06-18,Vv3NJShznZTFJq8-6VKNfw,1,"Cool place but don't try to arrange a special event. The proprietor was arragont, unflexible and unethical when I held my friend's bachelorette party at The Duce. Be warned!",review,QpCdrAfqOvHjZ_sdNC4gWQ,0,0,0 +StwBhPYVo-q-x1FccSmzwQ,2012-08-27,R4aFJ8B1e4aSPge-vFHvjw,4,Great prices with great selection. Great for your everyday shopping needs.,review,Ue9mYNOxPcicrU_UzhGluQ,0,0,0 +EmlgWjs1ZzZEpDjZCSPLmw,2012-11-02,YDGhV4Lakr4TDElnwvfy2w,5,"I am in love with the cinema suite! Being able to stretch out your legs on the LazyBoy recliner is the way to enjoy the movie. The chair is spacious and the room is not crowded with viewers. The foods are at a reasonable price and the server is nice. +For movie that are 2+ hours long, watching movie on the recliner is the best experience. Also great place to go on a date :)",review,P7Zcg73x8FzszGEiC9YPfw,0,0,0 +zOJdahdaaLz7DpfdIucslg,2011-04-20,emhHChKwAwRT0gm20hpXjg,4,"Everyone knows about Pei Wei right?! I really thought so until my boyfriend admitted that he had never been. Challenge accepted. + +Now, I've been a frequent Pei Wei customer ever since I discovered Asian food did not always have to send to you running to the restroom. (Yeah, thanks for nothing Bing Heng and Great Wall Buffet). This isn't the best Asian food ever, but it is quick, accessible, and always pretty tasty. + +I've tried everything on the menu, but my favorite options are the Crab Wontons and the Pei Wei Spicy Chicken. I ordered these plus the Spicy Korean for my n00b boyfriend to try, and everything went better than expected. + +In fact, he even commented that the place was ""classier"" than he expected. + +Just a side note: you can order and pay online, so you don't have to wait for the takeout line. You can also choose the specific time you would like to pick up your food.",review,Zkn45PKSC3Lj-o_ZnK35yw,1,3,2 +MLVKDbuI2xaOJQ4-NZj2MQ,2012-09-03,wgDOy_o_T8qJUpFfH1eATg,5,Marcellino's was an amazing romantic dinner experience. I had their fresh pasta w/mushroom truffles and lobster. The combination was amazing. I also had the white wine that's made by a friend in Italy. It was tantalizing and really lingered on my pallet. The homemade tiramisu was a blissful ending to dinner. The staff is attentive and very helpful.,review,I4GolEA9L0k2RfH4CauL0A,1,1,0 +xL7H-eMQDE-y23VL7MpLsA,2010-02-17,lXVF7nz1SdwRp3DW8zqnkA,5,"Restaurant 28 is a solid hole-in-the-wall that's pretty easy to miss, but it's definitely worth a stop. On my visits I've gotten brisket and other barbecue, and my friends swear by the chicken and say it's some of their favorite chicken in the Valley. The hush puppies are great- the greens are good too. + +Another review said it well when they said this place doesn't underseason food. Every time I've gone it hasn't been bland- it's got some great flavor and it's tasty stuff. + +It's in a pretty dull area where there isn't much else to do, or I'd be out there more often. It's a tiny place too but I've never been in and had it be hugely busy or busy to the point that waiting was crazy. + +Definitely recommended, and I hope they're able to grow and thrive.",review,YEp3lrsXDGDbLT3cFRHT7g,0,0,0 +pgz6IeaZgLuzqrk6HMPhzA,2010-02-28,F21FB1A_XHfpvSdZPRo2Ng,5,"The Renaissance Festival is a place where everyone and anyone can venture to in order to awaken their medieval passions and expose a side of them no other place can reveal. Here people can be themselves without fear of being judged. They can dress in clothing appropriate to the era, eat as citizens of the renaissance age would eat, and live a day in the shoes of people whose lifestyle consisted of these aspects every day of their lives, all while having a merry time. + +What's fascinating about the Renaissance Festival is it is an escape from the everyday bustling industrial environment known to people of the 21st century. Once you pass through the gates, you are immersed in a culture rarely seen these days. Men, women, and children of all ages absorb the spirit of the festival and change into someone only such a place can expose. Immediately you are compelled to have high spirits as people dancing, shopping, and just continuously enjoying themselves welcome you to the festival. From there the opportunities are limitless for there are twelve stages of continuous live entertainment, jousting tournaments, over 200 artisans displaying a variety of unique wares, and displays of ancient skills like glassblowing, leatherworking, weaving, woodcarving, blacksmithing, candlemaking and pottery. + +One specific entity of the Renaissance Festival that stands out in my mind is the old coin striking mill tucked away and blended into in the strips of stores surrounding it. Here, a family of three (father, mother, and daughter) work to produce unique coins crafted into necklaces by means of a punch press. + +The store offers some 100 different punch dyes each a symbol possessing its own special meaning. The categories range from mythological symbols, to astrological, to even ancient Egyptian. Once their customer has chosen two of their own special symbols they want imprinted on a coin, they place a blank, either bronze or silver, between each dye and clamp it to a press. Then a heavy weight is hoisted a few feet above the dyes and then suddenly dropped onto the head of one dye, eternally imprinting the symbols on the coin. + +What's distinctive about this certain store is they can fulfill the needs of any customer that they are presented with by owning such a broad spectrum of dyes applicable to anyone due to the meaningful descriptions given to each symbol. Additionally, what captivates people is the fact that the coin is formed before your very eyes three feet away, making the production a very personal thing for the consumer. + +If you and your family are venturing to the Renaissance Festival in Arizona anytime soon, which I would undoubtedly recommend, be sure to stop in on this special experience not attained anywhere else close by.",review,mQ6LzbfhBbLA5HUTKDVYfg,1,1,0 +xm8F51qKjx0cfdOSukTDng,2008-08-03,TJQ1R5b7qku-r7Ps6ew9Bg,5,"In one word...excellent! My fiancee and I had an amazing time here last summer, when we were upgraded to a Spa Casita Suite because the hotel had found out about our engagement, which happened right before we left for our trip. The room was huge, the grounds were beautiful, the pool was awesome, and everything there was so peaceful. The concierge helped us with directions to anywhere we wanted to go and the location was great as well...not far from the main drag, but somewhat hidden from the outside world. We are hoping to return soon.",review,VpnwO4DztZcFOskjO_VCjA,1,2,0 +YCCDMLcb7UW8G-o_HsWiiA,2011-06-20,vbrsS_wrWA5VTe-85-jALg,5,"Holy AMAZING. I went here this past Saturday for a baby shower in one of the private dining rooms and was absolutely blown away by the food. We had a spread which included Mac & Cheese, Sliders, Chopped Salad, some bread and french fries. I'm still thinking about those sliders and the french fries. I can't WAIT to go back and order from the full menu. + +As is par for the Sam Fox course; the decor is over the top. I need to find out who designs these places and have them make over my house!",review,z06IHGXI_ofBc2DkAbCgnA,1,2,0 +ntN85eu27C04nwyPa8IHtw,2011-01-31,txYVk8AjUrNhAQuFBk4eZg,3,"After hearing all of the hype on diners, drive in and dives and reading the yelp ratings, we decided to try it. We waited over 30 minutes for a table. The place is small and outside of a dungy motel. The service was extremely fast once you got in the door and the waitstaff are very friendly. I had a waffle and it was good but nothing memorable. My partner had an omelette with portguese sausage that he loved. The hash browns were so buttery and they were good. + +I wouldn't make a special trip back.",review,kbE6ZgYaytswPn1n3fligQ,0,1,0 +O_ZNZDr6c5CsK6GgsKdDeQ,2009-02-22,9hldnPtKmCgVRA9Ro1L7dQ,5,"Great experience at the Phoenician, specifically Il Terrazzo. We normally buy many loaves of bread from them at OTFM (Old Town Farmer's Market). They were absent yesterday so we called in an order & went directly there to pick it up. + +Was gorgeous of course & they were as nice as pie. + +And the important part is that the bread was fabulous as always (olive walnut, chocolate cherry sourdough, farmer's rye, wheat sourdough, rosemary sourdough, baguette).",review,mmJzZPMT06-4jRhf5L8laQ,3,3,3 +FUI-hWH_bpis7AKZTWenUQ,2011-04-21,Rfwj9pFfFejwr25d2buyRg,4,"Pleasantly surprised, great drink specials and cute outdoor seating. +Food was really good and I look forward to going back!",review,Pc-6iaUA1hPkTZP2g4G0Hg,1,2,1 +XhdMiSn0b3O929YpjVBMHw,2011-04-24,DfsdM_qT6kyzRa2MpfeuSA,5,"Great Frozen Yogurt. Helpful staff, clean enviroment.",review,fumqlFyxTEQIMi81uN-z2w,0,0,0 +ymSMV5wMjFwcusoGRaqDWA,2012-07-18,pWGoMHOn51voA10_2fO4Sw,1,"Yikes...I won't be going back. The ordering system is confusing. The staff also seemed confused. The food was very bland and pretty tasteless. THIS PLACE IS NOT EVEN IN THE SAME LEAGUE AS HONEY BEAR'S NEAR THE AIRPORT!! Skip this bland chain, and go to Honey Bear's!",review,2SAfpKiBCl4TQE0D3UhyTQ,0,1,0 +YUV08PQk7Vk96r9Q0b3XAw,2011-03-18,CWHbKK73_ejiG1IWRbwkHg,5,Excellent burgers and sweet potato fries,review,4M16MDakz-XK9t5MfLEwEQ,0,0,0 +VN5gJKlXIBQzx_M32F_lkA,2011-03-12,ku_VObOYfuJ-qVB72KLFhA,5,Fabulous service tonight and it was crowded!,review,1iJ0AwkYqDKHYMdUVarN0g,0,1,0 +Zx8_4zKdDBSO3qGrkukBIA,2008-06-15,n00HCW6_X4U0esmFO_BbAw,4,"Let's rewind four years: + +""You've never been to Chino Bandido?"" +""No, what is it?"" +""How long have you lived here?"" +""About eleven years, but a bunch of those years were when I was a toddler, and I just moved back from a few years in Flagstaff."" +""And you've never been to Chino?"" +""NO. What is it?"" +""Amazing."" +""Take me there."" +""Okay."" + +Yet we never went. + +On the drive home from the Children's Museum of Phoenix, I realized that I was hungry, on a budget, and Chino Bandido was not too far off of path. I ran the plan by my father, checking to make sure that would be an appropriate Father's Day dinner. I received a confused look and thumbs up. He's not the most adventurous when it comes to dining experiences, but is generally a good sport. + +If my friend and I had been on the ball, I could have been eating here for four years. Granted, I rarely have business around 19th and Greenway, but I could have made Chino Bandido my business. + +We both ate a perfectly reasonably sized and delicious dinner for less than $10. Three cheers for Caribbean influenced burritos and homemade teriyaki sauce. + +Stevey P mentioned the only reason I'm giving four instead of five stars: If the dining room weren't so disgusting that I had trouble eating in it, it would easily be a five star place. Wipe down the counters and tables, and perhaps give it a new coat of paint, and I'll be completely thrilled.",review,YMB29SPB8Z_a2be4O5gxOg,6,6,4 +gfj0gqRkvwn5-vkx8sFjdA,2012-07-04,gIbRhmD67FQpO1PJRlOZlg,5,"I love Scottsdale Child Care & Learning Centers. My daughter started going there when she was 10 months old. The teachers are wonderful. Not only are they nurturing and kind they are also very interested in each child. + +My Daughter has been attending for 6 months now and has graduated to room 2 for toddlers. She knows over 30 words and I attribute much of that to Scottsdale Child Care. She has loved all her teachers and welcomes with open arms each morning when I drop her off. +I would recommend this center to any parent, especially if you are nervous about leaving your loved one for the first time.",review,ATL4qZipZhzIMzVtweq2yA,0,2,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2011-02-13,4aqWnxcqh6C6lCLS7ZvlFw,4,"Nice crispy crust. Came here the other night and ordered a pie at the bar, with a couple of beers. Definitely an Old Town Scottsdale institution. Their calzone looked pretty good, and enough for two people, unless you were the 135 lb guy sitting next to me, that scarfed down the whole thing himself. I mean if he ate it all, it had to be good. They also have some pretty good local beers on tap and by the bottle. I'll definitely add this my repertoire of AZ pizza haunts.",review,588oY8EejEFCr-ym_2TR0Q,0,0,0 +iyTQbU_XdznZ48AzeQfbdg,2012-11-16,uvMlcMqLzLaHssmFSdLkVA,3,"The Choice Hotel chain continues to be my preferred properties of the mid-$ range hotels. The only issue I had with this one was the noisy A/C unit in the hallway right outside the door. Other than that, it was clean with a friendly staff.",review,9mNlD64jqX7VjignlT9Efg,0,0,0 +lVkDZZ8sTafPlq7f1i5row,2012-02-06,vdfCSIa3KfwbgW9ytZxn4A,5,"This place was a huge surprise and a huge relief! + +Being a foodie, and quite the fan of healthy food, this place definitely lives up to those expectations. If you've ever been to San Francisco, then you'll definitely get that feel when you enter the cafe. + +It's got a great atmosphere, and the menu is by far the best when it comes to serving healthy ""organic"" foods. I know that many places in the valley claim to serve healthy food, but serving ""all-natural"" and locally farmed foods doesn't necessarily mean it's healthy. People that are true foodie's know exactly what I mean. + +I ordered the Dragon Bowl with quinoa and it was delicious. I'm excited to try this place again.",review,Cxt0n_IohFGXncyomAEv0Q,2,2,0 +EWMwV5V9BxNs_U6nNVMeqw,2008-09-01,xOuqhNoA1Ol6BWYLUINQyg,5,"Based on Yelp reviews, I went to check this place out while I'm working on assignment in Phoenix. As promised the food was great, the service was great and I got to meet the venerable Thomas. + +I sat at the bar and the boys took care of me. The Fez Kisra sounded good, but I should have listened to Russell's recommendations. I will definitely try those next time, which will be soon. + +The wine selection was varied, but didn't blow my mind. I stuck with whites and found that the one that sounded the best wasn't nearly as good as the most popular (shockingly). + +The place combines hip and tasteful decorating, good music, great food and a nightlife atmosphere. Definitely seems like a great place for a night out with the guys/girls if you don't want to be overly bothered.",review,npOswlvP8Rz82d-dfy53-g,4,2,0 +JokKtdXU7zXHcr20Lrk29A,2010-08-05,XdAtb3hIzydAmzdFy0Ubyw,5,"Still solid, still delicious. I love this place!",review,TL46g36OKxmgSDYRFJdPRg,0,0,0 +sBxd1tZZtGJ8jDZZxHZiwg,2011-06-12,QHYmiInNzmfYUdzj1U9B0w,3,"Third stay here in two years. It's o.k. But nothing terribly special. + +Pros +Spacious rooms +Bathrooms are nice +Breakfast selection + +Cons +Paid internet +A/C is loud and blower is in bedroom part of suite +Long walk to room",review,I3YhFIXT3TlNBd5DmeZGXQ,0,1,0 +f9eDYb3FXVdnHuOPrxpilw,2011-11-28,DXUAxm3Bw02tvdrdM5oxLA,5,"I just wanted to add that in addition to party and catering equipment, they also rent heaps of tools and equipment. Think hedge trimmers, lawn aerators, cement mixers - stuff you might need for a once a year or special project, and so, don't want to invest in the equipment. + +In our case, we needed a chainsaw to take down some dead stuff from last winter's freeze, an unwelcome sapling, a dead tree, branches encroaching the roof, and to tame some monstrous oleanders. + +I was just about to head to the tool rental department at that big box home improvement store, when a friend mentioned A to Z. I gave them a call, and their prices were competitive. Plus it had that feel good factor of being a local biz. + +The process was pretty easy. We got a thorough tutorial on chainsaw operation and safety, and were on our way to some serious arboreal carnage. + +Pro tip: rent on Friday after 4pm. You can return it Monday morning, and only be charged for one day (Saturday), since they are closed on Sunday.",review,RMX11FC48KZTYIeExtGUCw,2,2,1 +fd0iSXEhwz-foQdS8SCKYA,2010-03-29,50kriCKOYEL6SXII96zs-g,4,"This review will be short and sweet. I promise! + +I was able to have breakfast here with the guys as our weekend was coming to an end and it was pretty darn good. I ordered the pancakes with scrambled eggs and extra crispy bacon. YUM! Dennis ordered the Mardi Gras omelet with fruit and I swear the is the second time this weekend he had mardi gras something. The first was mardi gras pasta over at pappadeaux. Hmm I see a theme lol. JD ordered eggs and chicken sausage and let me just say I have never heard the word sausage sound as naughty as it did with these two around. Even our server Steven was blushing by the time we left. + +All in the the service was good, the food was good and the company was awesome. I will have to come back and try lunch or dinner one day soon.",review,4E_nPWw89FLFHdNsEgMH-g,0,0,0 +t4aP7ksa716XY6S4EsWFqw,2011-02-07,ZgeVTjlTQYZsoI5pfVnYZA,4,"Maui Dogs is great if you're looking for a dog that's a little out of the ordinary. Get the Hawaiian toppings, and both the polish sausage and bratwurst are good, I don't think I've had a regular beef dog. + +This is one of the two places with good dogs I frequent that are like a block away from me. I go here if I want something unique, they go for a mix of sweet and spice here, and it works. I recommend the sweet and spicy dog, the sunset dog, and the spam sliders Maui style. Whatever I get I usually make it a meal with tots and either red cream soda or green tea. + +On my visit today they were giving away free samples of chicken wings with every meal. I liked the crispness of the skin, and once again the sauce was a nice mix of sweet and spicy. If (when) I order them in the future I'm going to ask for extra sauce though. The only thing I've had here that I wouldn't get again is a burger with chili on it. The thin chili is fine on a dog you're going to eat with a fork, not as much in a burger. Thankfully the cook was nice enough to suggest that I should get the chili on the side if I was ordering to go, so I still got home with decent food and not a soggy mess.",review,opjBZ0ImnKv5eRNQZ-98DQ,1,1,1 +JmEp4DxBEIrFD-rgbL8bvQ,2012-01-03,0SK9ESvxPiBj-tLvwvAFgg,3,"I like perusing Buffalo Exchange, but, whenever I bring some clothes in for store credit, I end up disappointed. They seem to give you very little credit for good items, and they are very picky. So I clean out my closet, take it to Buffalo Exchange, and come back with 3/4ths of the stuff. Discouraged, I set it on my floor and it sits there making my room dirty for months. + +I would suggest going in to trade during an off time (not a weekend) when there will be less people trading. They may spend more time looking at your items. They also prefer the items to be in season, so don't clean out your sundresses until May-ish if you don't want to have to bring them back home.",review,8n4SarsuI9Km6lEtydiE0w,1,4,1 +P2zgRMywotyalwFGFwAJZw,2008-02-06,YaE6ACqodfbnR7TvRw_D3A,4,"Humongous flat screen TV!!!! That is the first thing I noticed about the room! Pretty awesome! + +The room is cozy, and a decent size. The king size bed was comfy with fluffy pillows. The living room had plenty of seats that faced the flat screen TV. The room has a mini-fridge and a microwave. + +The only gripe about this place is a very small closet and bathroom. There is barely enough room to close the door for the bathroom. The closet also had one sliding door. + +The continental breakfast was average. No hot food. Guests can choose either cold cereal, instant oatmeal, juice and milk, fruit, yogurt, toasts or bagels. The seating area in the kitchen was convenient for guests to enjoy their meal. + +If you need access to computers, they are located next to the kitchen. There is a printer as well.",review,mU5GwCA4uiD0-RH1qt3jrQ,1,1,0 +GqtMJxq5-7Xp1ZXXmahLaA,2011-01-29,_b1OxYRklzmXxpbq4Wku1g,5,"I can always count on Sacks. It is always fresh and always tasty and the sandwiches are so creative that years later I'm still not sure how they get those fabulous blends and tastes that they do. I try to hit lunch a little off the lunch hour and then the crowds are not so bad and I can find parking but, its worth it to eat a little latter when I know the meal will be so satisfying I can go back to work and be so productive. Sacks is my ""go to place"" when I have a guest or friend that I want to be well fed and satisfied too.",review,5q47UxwDj3aqwhEZfgW5XA,0,2,0 +yJYQ5P3TxP8i-u_GK8NO_g,2010-03-27,El1LXGcbyEZIalC-c9ydSQ,3,"Decades ago when this festival was up and coming, and I lived in Tempe, I would go to this street fair as we called it then two or three times while it was going on. Today I went with a friend. The festival has grown by blocks now. It's pretty big, I think they claim 400 vendors! That has to include the food vendors. +I had my fry bread taco. It was super good and $9 bucks. I looked for something to buy but left with nothing. The things I liked most were huge home items and big ticket prices. I saw a few handbags of interest but not within my budget either. It use to be that this festival would have jewelry, matted photography and pottery a college student could afford. That's still my budget this year, unfortunately - but such priced things could not be located here this year. So I'm disappointed with the festival offerings. + +Parking covered & uncovered was $10 if you could not find free street parking. There wasn't enough ice cream vendors in my opinion but there was plenty of food vendors and the neighboring eateries were also busy and offering variety. + +The entertainment was very limited. I hope they will seek more entertainment in the future especially since they claim its one of the top 20 street festivals in the country. Otherwise there isn't much to stick around for unless you have deep pockets or want creative ideas.",review,-9mljS0O9mwdOnGv-Oea3Q,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2012-12-24,ZUJaQ2OEfduzN3Xkq8WMgQ,4,"We had our work holiday party here and we can't wait to come back and enjoy it again. We were greeted with a large wine selection and some appetizers on a back patio. The appetizers were mini pizza/bruschetta - some had mushrooms and some has tomatoes with cheese. Both were delicious. Another appetizer was a date wrapped in bacon - this was super delicious and easy to eat. I ordered a pineapple mojito and at first our server was confused, saying they don't have a blender but could make us a raspberry mojito. (I've had bartenders tell me they don't have blenders when I've ordered mojitos before, so I was used to this.) Luckily, our server came back later telling me she was confused and viola a delicious pineapple mojito was placed in my hands with a large slice of pineapple on the rim. It was amazing! So good, the husband had to order one for himself. Our party moved inside to a private room where we were given tiny menus with simple selections. The husband ordered the beef entree, steak with horseradish mashed potatoes and I ordered the scallops with corn polenta. While the scallops were delicious, the steak was super tender and moist! (Better than a fillet we had the night before!) For desert, I ordered the chocolate cake with coffee crema inside and the husband ordered the cheesecake. The cheesecake came in a cute mason jar and was amazing. I really liked my chocolate cake but the cheesecake was better. For once everything the husband ordered was better than what I had ordered! It was a fantastic party and such a great venue. Can't wait to come back!",review,tHz9cWxwSfcP4qRaPIHvww,0,0,0 +BM0-dgPJMBMmcmO9PVCJfQ,2011-04-21,EEPXlNaADR8wqmoiOHMYvQ,5,Best Mexican food in phoenix... very reasonable prices...,review,R8xAZICRKkz91tdMgXNGPA,0,1,0 +jj-K19oswZARMwCQK-b37A,2009-09-01,rVk-_YJi0liaSoUyJkPgEw,4,"Great food, fresh crispy veggies, excellent service. I love the luau pork, but it's kind of salty, even for me considering I love salty food! Mango iced tea is very refreshing and key lime pie is gooood. I have tried the tofu but it has been hit or miss the way they cook it.I like it crispier (or as crispy as you can get tofu:)",review,h9d3VW5RTJymoFoLnN60_w,0,0,0 +ZztUsJyGDwPySepmXRG13g,2010-01-17,3uoZItEtW2WGjmYT-u-t-Q,1,"After repeat visits it just gets worse - the service, that is. It was as if we were held hostage and could not leave for a full 25 minutes because that's how long it took to receive hour check after several requests to several different employees. Female servers might be somewhat cute but know absolutely nothing about beer and this is a brewpub. I asked if they have an seasonal beers and the reply was no, that they only sell their own beers! Even more amusing is their ""industrial pale ale"" is an IPA but it is not bitter. So, they say it's an IPA but it's not bitter, it's not a true-to-style IPA. Then people say ""Oh I don't like IPA's"" and want something else. Their attempt to rename a beer/style is actually hurting them. Amazing. + +The menu was not the regular menu, just a small list of about 4-5 choices. To make it worse, the actual menu on every table was wrong, yet the kept the menus on the tables anyway. I heard 3 separate tables order the fried raviolis but they did not have them. + +This place is *only* in business because of the location, location, location.",review,joIzw_aUiNvBTuGoytrH7g,1,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-04-18,8UagcGX7JLewBcKhufv1Ew,4,"This is a very pretty and very chic looking restaurant, and I hoped that the food was as good as the decor. My friend and I had the sangria and the mojito, and then we shared a bruschetta and the garlic pizza. + +I found the sangria a little on the acidic side, but drinkable, and it was fortified with something, because it was a lot stronger than it tasted. My friend's mojito was good. + +I LOVED the bruschetta. Not only were the toppings well-planned and delicious, but the bread had a nice crunch and a slightly smoky fire-baked taste to it. Ditto for the pizza, in which the crust shared the stage with the toppings. Don't expect cheese-red sauce-and-pepperoni type pizzas, as you might expect from the look of the place, the pizza is artisianal. + +Nearly half the seating is out on the patio, and one unusual feature is that the seats were low and the tables as well. This makes it a good place to relax with your friends (as you feel like you're sitting on patio furniture) but harder to eat your food. + +We had good service the night we went (a weeknight, around 8:30). Zero wait for our table, and prompt, polite service. I would definitely go here again.",review,dn8OpAemsZCUzbSwtulNHw,1,2,0 +1eJiyKXx_ruNu6F36BJQCg,2009-09-23,ahYBLDytup64H0br4tlZpg,4,"Oh Mojo you won my heart from day one... I always thought I was a gelato spot kinda guy but no apparently I can swing both ways. But if Mojo and Gelato Spot were in a heavyweight championship of how to retain best customers, Mojo has won round one. Why? Simply because of the awesomest event that runs every week on a Tuesday of which I love and that is Twitter Tuesdays! On this day and as an avid Mojo twitter follower, I am rewarded *that's what I think* for my fan-ship and loyalty with a fun secret word of which I made aware of the day of, and upon learning the secret word, drive after work to the Mill Ave location and get myself some Mojo fro-yo goodness for half-off! Score!! =) =) + +I just love that at this location there are 14 flavors available to sample, and mix and create the best combinations ever! Oh, and the many toppings and mix-ins make the experience enjoyable! Love getting myself a cup of lemon fro-yo with a tinge of strawberry fro-yo topped off with blueberries -delish- on and birthday cake with choc fro yo mixed in with almonds, peanuts, and choco pebbles... OMG! Yes... I love you Mojo... I am a fan!",review,ROr4DQ-gxlfUKmiDC-qSEQ,0,0,0 +Cp6JGY5YIRncTV_My9nf9g,2010-11-18,t_aMvbqbr4T-TkxSm_8uVA,4,"I'm in love. The festive décor charmed me the second I walked in the door. We sat down and were immediately greeting by a sweet waitress carrying a basket of chips. The chips were light and fresh and came with two salsas, a red and a green avocado salsa. + +We ordered: Camarones aguachile hot drowned shrimp, Camarones culichi shrimps in a green sauce,tomatill & cilantro, rezongue enchiladas crab enchiladas in a red sauce. I also ordered a club soda and when the waitress asked if I wanted it prepared mexi style I said yes. What she brought back was a delicious mix of club soda, salt and muddled lime. It's my new favorite drink. + +We patiently waited for our meal and remarked on the little mermaid scene in front of us. I almost expected the crustaceans to come to life and start playing music. Then to our surprise little fish tostadas were dropped on our table. What a nice touch! +The dishes were excellent, all were paired with homemade tortillas, beans and white rice with vegetables. The camarones culichi was my favorite. + +Fresh seafood, fun atmosphere, great service.",review,q9XgOylNsSbqZqF_SO3-OQ,5,5,2 +co8rv2zfOhMXc_TlEI9VrA,2012-10-07,pS91RgbLkwWvVfUtSmTpEw,4,YUM! The flavors were great! Oatmeal cookie and caramel apple were great and tasted just like the real thing. The only reason I gave 4 instead of 5 is because some of the toppings such as the twinkies and baklava were whole pieces and I wish I could have just grabbed pieces of them instead of a whole one...toppings like those could add a lot of $$ very quickly so I skipped those ones.,review,m_yUhRsYJ86K8cleWt9rNg,0,0,0 +qw93CjlAZ6a4ff11Z-hF3Q,2012-02-11,WOPagb46YqI008S9C_vsmg,4,"Innovative venue. Bleacher seating in the back is a bit odd, but it works. Dig the long bar at the far end of the hall. Excellent sound. Haven't tried the food yet, but I intend to investigate.",review,MU1JHF8Gj6tEjSc0gZw9Zg,0,0,0 +EHi-lebXGWjSktl4WvSoow,2009-10-25,8kSRYat9LZwyNQsPMBfaNQ,2,"Made the mistake of eating here on 10/24. Hostess and maitre de set the tone wrong with their completely haughty and unwelcoming approach when we arrived. Acted like they were doing us a big favor by letting us eat there. + +Wine list is extensive but outrageously overpriced. We selected a good bottle (90 points WS) and when we asked the self-labeled ""wine guy"" about it, he said, ""I actually can drink that."" A snobby comment. + +Food was completely uninspired and pedestrian. Nothing special here. + +Service fair, pace was bad between courses - long waits. + +Had a meal the night before at T Cooks -it was extremely better in every single category. Lon's gets by on it's nice patio setting. The food is average at best. Go to T Cooks instead. + +If you do go here, call long ahead and at least get a decent table on the patio.",review,alssDn2euFDd6rJApeSEvg,0,0,0 +Xq9tkiHhyN_aBFswFeGLvA,2012-02-28,HD1nAo1VffZZoUQH1ra5WA,3,"Wanted a restaurant within walking distance of our hotel so picked this one. Was ok: Nothing major to complain about, but also really nothing to rave about either. There are better restaurants to choose from.",review,1BNxg9rMcMD8M-t2XUTqfQ,0,1,0 +zV_LBn9F_3jtx0bFgoGvOA,2012-12-13,YQZ5QlvnE284x-sa1RM63Q,5,Just want to Say ThankYou Hawaiian Airlines for Making My Grandparents Flight Very Enjoyable. They Say Nothing But good things,review,Ndj0VsWFoIJQJV6p3zswzg,0,0,0 +FY_OXEVcewAQFZuu6fynLA,2011-06-24,cANlH55ZBvFRzQ7A4iVwBw,5,"Brought my parents here for lunch last time they were in town. Dad loved his gyro. Mom and I both got large salads, hers chicken and mine gyro meat. SO much delicious food for not a lot of money. Between my Mom and I's leftovers I had a full dinner to eat later. + +Hooray for pleasing the parents!!",review,JXjU9EVUCJ1rmYKxzDXSlQ,0,0,0 +c7VgGP8xT25OSReok6fwcQ,2008-07-18,xytGQSaiuV7ghZZgoWqQYg,5,"Okay, so I have a little bit of bias towards Nordstrom. I freaking love Nordstrom! + +The store is always clean, and the staff are always friendly. I have never had such good service anywhere else. I especially love that Nordstrom will return or exchange an item with no questions asked. + +Aside from the service, the selection is very nice. I always go during the half yearly sale, so that I can get some good deals on my designer duds! + +I am big on shoes and the selection is very good. They always have some cool shoes that I can't seem to live without. Also, the staff in the shoe department are very good on helping to make suggestions when I am not sure what I want. + +If you go, go in June or January when the sales are great! Make sure you check out the shoes!",review,M7B2A90idij3HDfCvfEBWw,1,1,1 +EZ7MD_hOsBZuWEvSjXr7DA,2010-03-01,09wV2L_fgTAqe-m68BP_Lw,2,"Here is the thing about JoJo's, its in a neighbor were you eat at chain joints or you cook at home. It seemed like a safe bet, and who doesn't want to support their neighborhood pizza place? + +They started off on the wrong foot with me by not accepting their free pizza coupon they had sent me in the mail. I had called before hand and asked if it was valid, was told it was, and then was not given a free pizza. Instead, I was given a discount on another pizza. So, instead of coming home with two, which was the plan, I got one for cheap. I didn't want one for cheap. I wanted two. + +The food itself is typical. The crust, cheese and toppings are average, sloppy in a bad way. The sauce is a bit to sweet for my liking, but having eaten here twice, has tasted different each time. The service was alright, delivery took about an hour on a Friday. + +The rest of the menu, aside from the pizza, is what you would imagine. Wings (not remarkable), fried items and some sandwiches. + +Lets put it this way, if I was at someone's house and they ordered a pie from JoJo's, I would eat it. However, I wouldn't purchase one again myself.",review,syF-6VzPdjmCXbTye6N9Eg,0,0,0 +mqQwChPNN4o4DhAzaGntIA,2010-04-28,OmpMaKVUXTnybZQ1baiydQ,5,"While I love that it is Native American owned and operated, the best thing about this restaurant is the food - as it should be. I don't go out to eat to be entertained or charmed - just fed better than I could be at home and that is exactly what this place does. + +The food is amazing. The fry bread isn't greasy and I don't know how they do that. The meals are flavorful, filling, and reasonably priced. The only thing I would do is add some tomatoes to the tacos but that is a minor quibble. + +If you want to go out for a delicious meal in a casual place and not pay a lot for it, GO NOW to the Fry Bread House.",review,rg8S_nurlsPwnLcnwWLwVQ,0,1,0 +xY1sPHTA2RGVFlh5tZhs9g,2012-01-21,KHj__WuHNdc15jFegl3u7Q,3,"i dunno what the deal is...but i was not terribly impressed with the pretzel fondue. the food was actually nothing to write home about. however...the adult beverages were superb! bacon infused bloody mary? hell yes! if you're a gin fan (and i am) then you must try velvet death. that's it, end of review.",review,A7p8fnVMFQ5GuMY2Szb81g,0,0,0 +UE4h9OXNzNInmxseAkUihw,2012-04-16,2aKJbAw_cjl8WKhSyh5MqA,4,"Thai Basil is just delicious! I love Thai food but i try not t drag the bf along too much since he has not yet found a Thai place that has a dish he really loves but that changes since bringing him here ! WHOOP WHOOP! Really good and quick service for either eating in or taking to go ( we have done both). He is in love right now with their chow mein and i as always am a big fan of Pad Thai. their pad Thai is not as spicy as other places i have been which is ok considering i can spice it up myself if necessary. only downfall for me is i am not a fan t all of their sweet and sour pork which is a big deal for me, since next to Pad Thai that is definitely a second. + +Their chicken sa tay and spring rolls are really good as well! + +Cheap!",review,AeucYo8J-rZjcq09Wuqsjw,0,2,0 +wlftPhCaYn2j2LbcP8j3vg,2012-07-22,5Qh7s5q5RoHPZYHUh1faUQ,4,"This place is where I normally go to get all the different loose teas that I love to drink. + +They always have at least two or more samples of their 'tea of the day' which are both hot and cold. + +The best part about this place is that you can mix different teas together to create your own special blend. + +I also bought a cast iron tea pot set that I absolutely adore.",review,mRAPMBM3dbw8KXNit1aDCw,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2010-07-16,dmKG6jTJx41xZUUVYHihSA,4,Who doesn't like a good carne asada burrito? No one doesn't that's who. It's rudunk,review,VAKSiuSInRXsWFEFo1g7lQ,0,0,1 +AGar9KVq_W7YcF76avbDTw,2011-07-19,r4uTWH1905nfE4ZVp9lvIg,4,I love Target. This is a great one. Parking is decent and it's right at Desert Ridge next to everything else so it's a convienent location.,review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +iJPG0GPcIirjOMlmzZWxBQ,2008-07-14,IDFpYyXoCUVLvdIv7Wi1mA,4,"I live in a town where I can find 5 Filipino restaurants in a 5 mile radius. So when I came to Phoenix for work, I wanted to see what the Filipino restaurant scene was like. + +Like the previous reviewer stated, there are very few Filipino eateries. The supermarket that I found on my GPS was closed, so I found this one on Yelp. Overall, I would recommend to go to support the local Filipino restaurant. + +When you first walk in, you start in the bake shop area where you'll find cakes and pastries on display. I wasn't sure if I could seat myself, but I was greeted and seated. There were two other tables filled with about 8 people eating including myself. What concerned me is that 2 of the other folks were the only other Filipinos - as I tend to judge all ethnic restaurants by the number of people of the same ethnicity. + +But that logic doesn't seem to work here were the demographics of Filipinos seems relatively low. + +I was craving Sisig (grilled pork - which is my favorite at Ongpin in South San Francisco) - but they didn't have that. On the whiteboard, they had Sinigang na Baboy (pork) - so I figured I couldn't go wrong with one of my favorites. + +Since I was here on business, I figured I'll order a few other things including the shanghai lumpia (eggrolls), Halo Halo, and topped it off with Hot Pandesal. + +The Sinigang was served in a bowl with 3 pieces of boneless pork. The meat was very tender and you can pull it apart with a spoon and fork. The soup was a little on the salty side since they may have put a little more tamarind mix, but that I might just be a little oversensitive about my sodium intake. + +I couldn't help but think that I was eating at home or a family friend's house. Included in the sinigang was spinach, string beans, eggplant, a small potato, and cut onions. What was missing was dikons (those white radish things). It wasn't bad, and it wasn't exceptionally delicious because nothing compares to home made sinigang. But this would be the next best thing. I ate all the meat, and had quite a few eggplants left. + +The shanghai lumpia came out shortly afterwards. The portion was pretty large and I could have shared it with someone else. I didn't care for sauce that it came with. I wanted vinigar, but a filipino family came in and there was only one server. + +If you ever had Halo Halo at Ongpin, you'd find this lacking. It is served it a large plastic cup. What was missing is the ube ice cream. In fact, there was hardly any ube in it. There was a spoonfull of the leche flan, but I didn't finish it. + +I actually ordered the Pandesal later, this version was like two very large dinner rolls served with butter. The bread had a fresh out of the oven taste. + +The restaurant section was clean, with standard fare dining. There was a large flatscreen tv with TFC playing. + +Last week, when I ate there, they were just written about in the local paper, but I didn't get to read the review. + +They accept Master Card and Visa, but not American express. + +I would eat here again to try some of their other dishes not because I want to support my fellow Filipinos, but because the food is actually worth having again. I took some photos of each dish with my iPhone, so I'll have to figure out how to upload them. + +This is actually my first review because I was hoping to read more about Philippine restaurants in the area, I only saw this one. So I figured, I should also contribute!",review,IijJvpe0DznIG_UMlmvI8Q,3,7,0 +wH9WtaTlrRawH_IpK90RPg,2012-10-14,6wpACpeWHrucwsciJZYljw,4,"This is a great place to eat and hang out with friends. I always get the pretzel appetizer and the angry chicken sandwich. When I am eating them, I believe there is nothing better I could be eating at the time. I crave those items. I also enjoy the games there- buck hunter, pool and darts. I recommend this place!",review,BFRoUfAdeYyvITqZ8QhWfA,0,0,0 +uPDTnuR-sOi47blHH943lg,2011-11-21,bNEamJDVe7MzNSVtPRXx7Q,5,"My wife and I have made two trips to Roberto's from Dana Point, CA (400 miles) and we haven't been disappointed. Although its not the only reason for our visit, a stop at Roberto's is a must when we're in the Phoenix area. I have tried, and thoroughly enjoyed the al pastor tacos, beef chimichanga burrito, and I really like the way they crisp up the carnitas. + +My wife judges a Mexican restaurant by the quality of its chile relleno and says this is the chile relleno she has been waiting for: two to a plate, great presentation and delicious. The light breading allows the flavors of the chili and cheese to dominate the palate as they should. + +She also recommends the tortas she had at breakfast. The bread, light and toasted perfectly, hugs a generous helping of carne asada (with fajita style onions and peppers), and if you like, guacamole. Pair that with a cup of their terrific coffee, or if you have never had Jamaica, a delicious Mexican beverage brewed fresh from flowers, try it. Either way you have a breakfast you won't forget. + +Oh, and by the way, the members of the local fire department showed up to order breakfast while we were there. If they are eating there, you know it's good. Just had to thank them for their service. + +This is truly a restaurant where family meets family, Roberto's and yours. + +And for you insiders, we both love Roberto's homemade tamales. Although they're not on the menu, we have been fortunate enough to take some of their tamales home during both of our visits. + +I believe tamales are normally made for the sale in the store on Thursdays (check with them to be sure), but they don't last. On our first trip in 2008 to their old location, we stopped in for lunch (excellent) and were told that they were bringing in homemade tamales that afternoon. We returned that night for dinner and to pick up some tamales that they kept for us. + +During our most recent trip we stopped in for breakfast on a Saturday. But, fortunately for us, they were making tamales for a catering job the same day and sold us some of their extras. We again returned in the evening for dinner and to pick up some tamales. + +These tamales are just like I wish my (Chinese) grandmother used to make. Check with them to see when they're available. They're really worth the extra effort. + +Although Roberto's delivers, I regret that they won't come to Dana Point.",review,HeNSYRvvt2p7f76Mv_wmNA,0,1,0 +o15PeOAUzpcCl8ngk0lMHw,2011-08-02,6Hcj5bOyAsqqNoPDAPdaLg,4,"As my roomies put it: + +""Finally a Thai place in Mesa that I actually like."" + +""This tastes like my Mom's Thai restaurant in Utah."" + +Three of my roomies and I ordered the Panang Curry with Beef, Red Curry with Chicken, Tom Yum Koong, Spicy Chicken and 4 Thai Iced Teas. The curry was the right consistency, not watered down and too thick. And the best part was that it was just deeelish! What is great about this place is that the spices don't overpower the dish, and you can taste many different flavors with each bite. + +This little place seats under 16 people max. It's a definite mom and pops store that makes tasty and very reasonable priced meals. We chatted how we wish we hit this place up sooner because its one of the best tasting ones in the Phoenix area.",review,SNH5L8QZ4kT9unURQUrYow,2,2,2 +IuAPYzf3NSyfyXYgT46YVA,2010-08-19,Ac0rdOM6YSbb_yI458J0bQ,5,"When I mean 5 star, I mean 5 STARR...but this place is SPECTACULAR!! Pavle & Charleen are such a fantastic duo....they really know how to make your dining experience exquisite! The food, not to mention the service, is truly unbelievably delicious!! If you want to have some amazing food and get top notch service while doing so, the time has come for you right here in beautiful Arizona!! +HATS OFF FOR FnB!!",review,GjH8vpf6mBVtT3NJUb7siA,0,0,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-08-13,7lBp1WB1V3rQU6fxmkUdyQ,2,"Happy Hour Review. + +We stopped by to try the much ballyhooed Happy Hour and were were pretty damn underwhelmed. First of all, I guess I'm failing to see what's so happy about a $6.00 spicy tuna roll and $8.00 drink. Secondly, like other non-japanese sushi joints in this town (cough, cough Ra Sushi), this is sushi for people who don't really like sushi. Thirdly, seriously attitudinous staff, but one look at the uber-douchy clientele explains that. Pass.",review,d66FhQQZzFDKxklh6t63RA,1,3,1 +cVejKU_SrdbvzIbQ4oPV0A,2011-08-03,jX14ytUgnYN33L5NCcMrmw,4,"Sure, I'll pretend that the main reason I come here is the food and not the super cheap margaritas. It was the... uhh... food that is really good even if I don't remember what I ate. I think there were some fish tacos that were pretty tasty. Okay fine, I go for the margaritas- they are big, cheap and tasty.",review,wk3JwAEeMuipzJBDTBivGg,0,0,0 +Trar_9cFAj6wXiXfKfEqZA,2010-10-29,PKb8uHXaqMUg8Lt85g7OnQ,5,"WOW! Great donuts! Honestly you can't eat just one! I loved the plain glazed and the old-fashioned! Not like the franchise donut shops, these have the real bakery taste!",review,eZ9OjseD4FHfZW-p70Rw-g,0,0,0 +A9TCNsHFQvRcsZ6zOB7Xxg,2011-05-16,NNU3SGvUadDMhrjJM9VXKg,5,"Saw this place while I was picking up pizza for my kids. I didn't want pizza thought I would go in and give the tamales a try. I haven't regretted that decision at all. The chicken tamales are the BEST! They are super spicy, the way I like. The beef with red sauce is great too, not very spicy at all. The masa in all the tamales is flavored wonderfully. I am hooked on these tamales.",review,tVVj-hfCKmMM3ntewxxP_g,0,2,0 +NH67MdKaFGNcP-dlu56pyw,2008-05-15,CRxXw0wWZWKZ-n1RnIUs6g,5,"I was in Phoenix a few weeks ago on a business trip. Lucky me, Thai Elephant was right across the street from my hotel! This is a tiny little joint, maybe 20 tables. The menu is like a book, there is so much to choose from, rice dishes, noodle dishes, soups, appetizers. My coworker and I settled on a red curry dish with chicken and I had a sweet & sour dish (yeah, it sounds trite, but I was in the mood and it was so delicious!) We had tons of leftovers, which we shared with a homey down the street, I hope he enjoyed it. Highly recommended, and if I'm ever back in town, I will visit again.",review,snd45oedwXxF9tsHUX_6dg,3,3,1 +VVeogjZya58oiTxK7qUjAQ,2009-05-04,Gp8BXuzWMIDZK9fsYo9PtQ,5,"It was 3:45pm and I'm about to jump on a bus to the light rail. We have no reservations for Pizzeria Bianco, but a couple of friends just got in line and were waiting to get some wine. Useless fact: they're 26th in line. So in theory, at 5:00 we're in the first seating. And so it happens, the publicly-underwritten public transit arrives (my one-way trip cost $1.25, my gf's unvalidated parking fee was $12) and two Hop Knots later, we're sitting down and waiting. + +Typical order, one of everything, two Biancoverdes. At this point being almost review #200, the details are irrelevant. The crust is great, the cheese is great, the Sonny Boy is uber-salty and delicious, fruity olive oil, holy shit these roasted peppers, etc. Why is that person staring at me through the window? + +So I guess the point is, if you make it your only point to go to Bianco, it's hard to be disappointed.",review,dQO0tQISZyb9L4d5ASnXyQ,4,6,7 +B-FG89Jw729_i5rfA7FT7A,2012-09-07,hghI4qb8mDNGko2GSHx3Ew,3,"I'm always on the lookout for a morning coffee place and decided to stop at the Coffee Bean. Since I am always interested in trying new places, it looked inviting and clean, and was close to where I was going.They had the usual items you find in a coffee shop, and there was ample seating, with outside tables. That said, it wasn't anything out of the ordinary. However, if I am in the area, and need coffee to drink while reading my newspaper, this is a good option.",review,w_hcSjqLeSZQL9Rx1UP-Tw,0,0,0 +2ra3NpFuk6hxh4TNPAj-Ig,2012-07-11,bEUVx138esXExmoY2t0dbw,5,Dr. Greg Allen is the best doctor in the East Valley and probably the state! He has the best of bed side manners and is caring in his listening to the patient's needs. We have used him for several years and trust him completely.,review,Y1mij_XxGLcPogt1Wx8tsQ,0,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2011-02-17,TEjpikAl-hfs5LHjapam1g,5,"INCREDIBLE food, relaxed/great atmosphere, perfect to bring kids/family...the cheeseburger, shredded bbq pork sandwich, sweet potatoes- too die for! Must try! Worth the drive!",review,Xvw4kRnBNvOT4ZrpJHKifA,0,0,0 +JRhbdbjWYsK0s3q2waoULw,2012-11-04,V2JcAEPTcjHqEexrD5lIBQ,4,"Pretty clean dining room and clean men's room, friendly service, as good as any quick serve restaurant.",review,iq46mlqoLmNQzTR1z8oqUA,0,0,0 +tbrFsCEUuq2S5lraOln4nQ,2012-01-05,AM3fGS96uqfVoK9TP2_s4Q,4,"Came to town for work and remembered coming to Thai Elephant the last time I was in town and loving it. Walked here with friends and the name had changed. The wait staff saw my confusion and quickly reassured me that the name and menu had slightly changed but the food was basically the same. I had the curry fish last time and was craving it so I tried it again and yes, still absolutely delicious. Tried the calamari and crab wontons as appetizers. The calamri was solid but the crab wontons were only okay. A little too fried and in a skin that didn't feel like wonton skin. The curries that came to our table looked pretty neutral colored and the noodle dishes, instead of being on the red side or the dark brown side was also very neutral colored. Since I didn't taste those dishes, I can't legitimately penalize the restaurant but I have to admit that I hesitate to order anything else besides the fish because of their appearance. I'm still going to give this place 4 stars because of the taste of the food I ordered, the good service and the fact they had brown rice as an option. If ever I'm brave enough to stray off the path, my rating may change. But in the meantime, check this place out and order the curry fish on their specialties menu. I ordered it level 4 - hot and it was just the right amount of heat.",review,yRalNhE4YSdOoKJ9n_a4uA,0,1,0 +nBfusVbqwul0BU0Rcrlelw,2007-02-20,jqjDuUnyshAzGQSIyQwdEQ,2,"yeah, this is the place where pseudo sushi afficienandos go to feel like their really exotic food experts. if it's got cream cheese in it, it ain't sushi, and this place has cc is just about every roll. + +happy hour is LOUD in the bar. not fun loud, but ""let's crank the bad early 90s alt rock and top 40 emo rock as loud as possible"" seemingly as catch all for the only demographics who will like this place- early 20s and late 40s and 50s who want to seem like they still know how to get down with the younger generation. + +because it's ahwatukee (a ""sleepy bedroom"" community that is pretty affluent all in all and likes to be reminded), the crowd can be obnoxious, even more than this bar already is. + +again, i recommend it as a place to go and be rowdy, not to eat great sushi.",review,7GC9fVWKa4a1ZmBGLH6Uww,1,0,1 +yQONzVpX-DEpGSuKMIov6A,2012-03-19,fXHzQAUjOkOt7Ey10vKfAg,4,"Nice ambiance, nice authentic spicy chinese food. +As good as you can get here in Arizona; it aint L.A or San Fran, but does a good job to satisfy the craving for real chinese. + +Of all the Cofco asian restaurants, this is one of the more presentable ones to bring business clients or a new date, if ambiance is key to scoring positive brownie points. + +For some bizarre reason, on the weekends, it is filled with asian-women/white guy couples, which strikes me as hilarious. If it wasn't for this, I would eat there multiple times a week. +Asian woman orders from real chinese menu; her white guy orders from chow mein menu. + +Side note: Get a grip; asian women check each other out, and usually not in a nice way--like in a sizing you up-comparing you to herself way--so I usually end up losing my appetite when I catch one of them staring at me (and my man) and whispering to her white guy or her girlfriends about me; yah, I understand the shit you say about me, asian girls, because I speak your language too, hello! + +So I compensate for my chinese food cravings by quick carry out. Works like a charm every time. I'm happy, my own Cracker is happy. Owner gets lots of business and is happy. + +We all win.",review,die-1gtgzw5KcyUjKo-VSg,1,0,1 +zw2iJahOnSxlzmRlF4al6g,2012-09-06,mbhXq3Tg4VFOEm3kWpdhvg,5,"GET. THE. CIDER. Just do it. I'm a huge cider fan and this is the best I've ever had. Not syrupy sweet, and nice and cloudy so you know that it's been brewed from actual fruit and not some secret sugar concoction. Their master brewer also brews all of their sodas. Grab a taster for the sodas and see which one you like best. My favorite is the vanilla. The staff is ridiculously friendly and willing to answer any questions you have and will have a nice chat with you if they're not busy. + +The sandwiches are quite tasty as well. I've had the Mario's Monster Mill-wich, and my boyfriend has had the tuna and the French dip. All have been really good, but if you don't like a lot of feta on your sandwich I would suggest letting them know because they really pile it on (Mario's)! I love it so it was no problem for me.",review,Jp2x0JOXVdRBthyHoo6NWQ,1,1,0 +IW9yHeqnFCEbO5s1UCrqeA,2008-08-12,xcGov-ej12psx--6WmQVhg,2,The desserts are a little bland and are pricey given the small size. I've had better Japanese bakery items elsewhere.,review,y9YW-BpDACEGytpX3NaeRw,0,1,0 +ptH216EFNFLvF32EN-9tmA,2011-01-06,XJEyJwH3GIkfNP-Voy-8gQ,5,"I got the best KEEN hiking boots on sale here and they have a great selection of dog frisbee and dog boots and dog toys. I like this location, nobody bothers me and I can mill around without anyone bothering me.",review,nM3vfxr6fcnN_nXdzwbVCw,1,1,1 +gfhO1Q1c7QCigu7waVpeSg,2008-06-28,mrQDzovhhj5CPfHe2IeeKg,1,"No offense to everyone who gave this place 5 stars, but the Tempe Cinema staff needs a swift kick in the ass. During school hours, this place is regularly crawling with hooligan truants. Maybe those who run this theatre want to ensure they will have a steady stream of staffing options from the dropouts who use it as a hideout. Losers.",review,N-D-d1Z4UybdlkK1HxlNPA,5,5,6 +IwhkOh4fPsiU7TThIsz6Og,2012-09-06,NiYiXSGSMqd_JehbwG7txA,5,"Everything here is awesome! I love the Kung Pao shrimp and the Hong Kong soup which has wontons and and egg noodles they make in house. The soup they bring out before your meal is delicious as well. Everything tastes made to order, always fresh never greasy, and is presented beautifully. The staff is very friendly and attentive. Definitely try this place! It's a regular lunch spot for my office. They also have great lunch specials. :)",review,SstDhzlTcp7gvRum2KHwbg,0,0,0 +qwmHm3s8p7J12AIY6Co8HQ,2012-07-28,2eYqEetOoqE0sfZ7l5ruHg,5,"They have anything from salads, pitas, wraps, burgers, and wood fired pizzas. Although this isn't a 100% plant-based restaurant they pride themselves on having many vegan options. Not only are there options, but upon visiting their site I found a table of what items are vegan, what aren't, and what makes them non-vegan (which is always nice to know). Great to have so many vegan options that are spelled out on their website. + +We expected a counter-service experience but were pleasantly surprised when we entered to find it was an actual sit-down restaurant. The vibe was a classy yet laid back, youthful feel. Most of the servers were high school or college age and wore regular street clothes (think Urban Outfitters style). I loved the laid back atmosphere of the servers even though it's a sit-down experience and really enjoyed the color scheme and tin plated ceiling. + +The food was absolutely FANTASTIC. Oh my. For an appetizer we selected the garlic dip with two pitas. The garlic dip is a mix of olive oil, lemon juice, fresh garlic, and smashed potatoes. If you love garlic, you'll love this. + +My husband chose the Falafel Pita which was topped with cilantro and spices, mixed greens, tomatoes, onions, pickles and tahini. He was very happy with his choice, although next time he'd ask for no onions. + +I went with the Veggie Garden Wrap that included zucchini, broccoli, cauliflower, eggplant, yellow squash, carrots, onions, tomatoes, brown rice, mixed beans, ginger, herbs and garlic. + +One thing we quickly found was that our entrees were HUGE. This is not a complaint in anyway. However, next go around we may share an entree. Either way, this visit, we had leftovers to take home for lunch the next day. + + Will definitely return.",review,7P9okhRRYG0hz02Fk7tRMw,2,4,1 +VVeogjZya58oiTxK7qUjAQ,2011-05-08,1AqE_z07w-kufK2wYA245w,3,"Sorry, I really just don't get it. I didn't hate it and I'm not hating on it now, but I don't see what all the fuss is about. + +* Pizzas slapped together resulting in uneven, soggy crusts. Our party ordered 5 of the 6 available. + +* Psychological warfare of having to wait forever for just a few tables maintains an air of pompous superiority that tricks the famished patrons into reporting the pizza is a lot better than it really is. Waiter actually boasted about the 3 to 4 hour Saturday night wait, which we got around by having reservations! + +* Bottles of iced tea and other drinks bought in bulk rather than any alternative that would make more sense. + +Good? Not bad... Best in the Phoenix Valley? HIGHLY debatable, but personally I really can't say that I think so... Best is the USA? Impossible, there's just no way. + +LGO is better. Cibo is better. Spinato's is better. + +Most hyped? Most definitely.",review,fKYP2YKR5yp_cNHPzBxxKw,4,5,2 +z3yFuLVrmH-3RJruPEMYKw,2008-09-07,Zq-p1AU512qs0tHDjB_0mw,4,"Great sandwiches at reasonable prices. The bread is good, the au jus was flavorful and not too salty, and the sausages are made daily. It was nice to find a place to get great sandwiches. The line moves a little slow, but it's definitely worth the wait. I had the italian beef and my friend had the sausage, both were great.",review,SRsofHYNavGfAuDtIJ_n2Q,2,3,1 +e8FMAuTswDueAlLsNyLhcA,2012-06-21,o95pGHKcvdzhor3au9M1ng,5,"NO BETTER BREAKFAST IN AZ. From scrambled eggs to their blueberry pancakes. Top end. Yes, you pay for it. But it's special, like Valentines Day. Just pay out and enjoy the treat. Lunch is also nice, especially if you get a seat outside so you can people watch. Great wraps and sandwiches. Haven't tried anything later here yet. But I saw their happy hour specials and it is on my TO DO list.",review,NzlVca80ziZxANoTXxHfvQ,0,0,0 +XhdMiSn0b3O929YpjVBMHw,2011-04-24,xRB_UlukHW8Na6agxVHPEQ,5,"Great tasting frozen yogurt, excellent customer service, very clean inside. Healthy choice for a sweet treat.",review,SDwqxiWJCQqcXCCqysorow,0,0,0 +Z_KjmNp3sMwodUBTSgFZGw,2010-06-10,nRpDYEtOhbXL2AISgF-8CQ,5,"If you are looking for top-notch produce and organic goodies then NGD is the best. Pricing can't be beat and it's delivered as well. Always great quality, and a large selection. Easy ordering process and awesome customer service. One of the reasons I am sad not to live in Scottsdale anymore.",review,uF0T47DU-I4rzgnTcCUkbw,0,1,0 +qd1ajiZRCwqEQJqCgoN1wg,2011-09-10,18gOxMXn3FHwzlx4dGAonw,4,"Nice atmosphere, especially outside patio. Strange to see some people dressed gym casual on a Friday night, as well as some kids. They poured Chimay into a pilsner glass, so bad marks for that. Falaffel appetizer was nice, but Falaffel itself was too finely ground and flavorless. Salads were really outstanding. Enchiladas, also, were very good. Thai short ribs were pretty good as well. Great dessert options. Overall pricey, but fair.",review,EdTOfyShPKmil_A-IWdTPQ,0,0,0 +cdwHgELA2puX2DNfwSt5EA,2011-01-25,l2wR_gIHCfL8Id_PG6fLqg,4,This weekend was my first time back since they have done the huge remodel and under new ownership. This place still has the same comfort feel to it and is cozy. Havent tried the food yet but enjoyed the drinks and the ambience in the bar. Hopefully the food is better than what it used to be.,review,sgKj8sfJ0VqU_a4oxEk3OA,0,1,0 +4r9-iKOagzn5oUvPE9Bz4Q,2012-09-16,Apmt0bquoBr47PjWFUx1lA,4,"We get a date night rarely throughout the year, so I try and find something new when ever we get that chance. Once we made it into the restaurant we were both quite pleased with the decor and the atmosphere, little did we realize that this was just the beginning! The wait staff here is beyond friendly and knowledgeable, our server Sam was what you would consider first class in every aspect. His attention and knowledge started our evening off in such a way that I feel indebted to him!! Then comes the food....! We had a four course meal that not only included a wine pairing for two of the courses, but also a pre-dinner cocktail. The food was exquisite, the pork chop with the kale and pickled onion main course was grand, and the paired wine could not have been better.",review,3SIjo6vQIvxwHKEpIHfaBg,2,2,1 +hW0Ne_HTHEAgGF1rAdmR-g,2012-09-05,qXSvJMsgP9c6BBZuxNbaxA,2,"Sky Harbor is one poor gateway to the city of Phoenix and the Valley of the Sun. It is outdated, super crowded, it feels dirty and it is the home of US Airways, the biggest carrier in and out of this airport. + +Terminal 4 is configured rather poorly. The terminal reminds me of a backwards E, like the second E in EMIN3M, except that there is another prong to the backwards E. The concourses are not spacious at all, the seating limited, and consequently the crowds spill out into the walkway areas. +. +To go from one end of Terminal 4 to the other necessitates using really narrow moving walkways which are on the spine of the E. It is really hard to maneuver if you want to pass the throngs given the limited space. The distances are long, the bruises will be many, either to you but most likely given by you as you negotiate your way between flights. + +The other thing that must be mentioned is that Sky Harbor is not a business person's airport but rather a tourist airport. I think that contributes a lot to the chaos. When an airport is full of amateurs, like Sky Harbor, there are bottlenecks of humanity in all the wrong places. Further exacerbating the tourist nature of this airport are the snowbirds who flock here so that they can seek skin cancer in all months of the year, not just summer in their native habitats of the Upper Midwest. + +Get going on the remodel since it is long overdue and make sure you take in mind the tourists and the business traveler when updating this airport.",review,btlLxxNXWA6WQUezOfpW7w,1,1,3 +Pg8OPh1D2ws0xO-I-8ppoA,2011-04-11,VmlUmx2xl6o7bkFuBa_zmA,4,"I frequent this joint often to relax outside on the patio and drink wine and/or beer. The service here is outstanding. My vegan friend particularly likes this place because they make her vegan friendly pizza. As a carnivour I love their italian sausage. And for all you cheese lovers their mozerella is made fresh daily! I am more of a beer fan than a wine person so it is worth mentioning they have an extensive beer list, including quite a few beers on tap. + +The sign above the patio says 'Patio and Wine Bar', so it can be easy to miss if you are looking for the full name on the sign.",review,K6MrbZeqKG35ZiucFfucvw,0,0,0 +Tsff0UUVgrnawjI_xd2cKg,2010-06-02,ZfEemRGcK5n1rCaRyNnjCw,1,"I was really excited to try this restaurant, and tonight my husband and I came and ordered food to take-out. The service was very friendly and the store was clean, cute, and colorful...but the food was very disappointing. My husband ordered the curry chicken, and although it tasted okay, he literally almost choked on tiny bones in the meat 4 or 5 times. I asked ahead of time if they used white meat and was told yes, but the ""Calypso Pasta"" I ordered had tiny, tiny pieces of dark meat jerk chicken...instead of the boneless white strips I was expecting, and really it was just mediocre. I'm bummed I wanted to like this place.",review,UWhxz-hO6cYy1Y2pLowrJQ,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2011-01-22,us79WZcTQ5lH_EticmhReA,4,"Joined @SMUNCHPhoenix at @GalloBlanco. + +For my first breakfast at Gallo, I ordered Chilaquiles Verde, and my girlfriend had the Chorizo and Eggs. + +We were both very happy with our choices! + +The chilaquiles was delicious, with the crispy corn tortillas providing a nice contrast. + +The chorizo and eggs were definitely in line with what I consider to be authentic. + +I am definitely a fan of Gallo, and will return as often as time and money allow.",review,7cR92zkDv4W3kqzii6axvg,1,2,1 +B54ozdLlH5ozkwnweskhYg,2009-01-19,KsWX2prP6L6BopYqpxP3pw,4,"I go here often. This is my kind of place for a leisurely coffee and roll. Big, open, airy, warm atmosphere. Only downside is it gets too crowded. So find your own place for coffee, this is mine!",review,3XyuBpNbvrHukaEJyWBAsw,0,0,0 +1zPhQ3_jdmQTn9_--IbYLQ,2011-11-06,dn2T5q5s4JTef4F31e-hkg,4,"Bring an extra sleeve of balls when you play here for all the water hazards! + +I showed up today (Sunday) and was a little thrown off by all the people at the bag drop wearing football jerseys. Especially when the people wearing jerseys were the ones grabbing my clubs and putting them in a cart. Thought I was at Buffalo Wild Wings! + +I thought this was a very nice course but the reason it didn't get 5 stars was because it just didn't have that top notch feel that other Troon managed properties have. The greens were very inconsistent; some really fast, some really slow, and some were bumpy. The grass on gold was extremely long and it was very easy to lose your ball in the rough because the grass was so deep. Blue was cut much better but I had a couple complaints with holes 7 and 9. If you're playing the blue course in the late afternoon, you might as well close your eyes while teeing off at 7 and 9 because the architect made the course so you look directly into the sun. + +I sneaked on today for $44 bucks and was very satisfied with what I got for the price. If I didn't live 15 miles away, and could always get on for $40 I'd probably golf here a lot more. If the green fees are above $50, I just couldn't justify it with all the other nice options around the valley. + +On a final note, I was EXTREMELY impressed by the staff and how friendly they were. I was not only asked how my round of golf went, I was also told how glad they were that I came out, and finally that they really hope to see me again. Definitely don't get that kind of service too often!",review,gTs3AALeNJhSbVrgamKQyg,0,0,0 +ykKSshfa9ANCZCuvM2LaWg,2010-04-13,YlqYJjUepiBlZV6GveWuRg,3,"I was watching a Judge Judy show today and JJ was really giving the business to this loser (you know...had bad credit, met a chick, she took a credit card in her name, he didn't pay her back, she's shocked, now they're in court)...she was RIDING his ass. It was awesome. Finally she said ""what planet are you from?""...Dude with mullet bows his head, darts his eyes from JJ and says ""Why, I'm from Wisconsin Judge Judy"". + +LMAO! + +Culver's, by way of the Dairy State, has settled on Camelback and Central. Rickie and I ate here after seeing Date Night on our ""date night"". Thought it was a cute, innocent, 1950s way to wrap up our afternoon. You know, kinda like Richie and Laurie Beth. Please, I need to check ID's on this reference. I'm sure Rickie wouldn't pass this one! + +Culver's was very clean with well trained and polite employees...think In N Out. We ordered the famous Butter Burgers along with various sides. Burgers. Yum! Sides. Ugh! Would rather have had Ore Ida. Cheese curds had a thick, icky overcooked batter with a Q tip sized cheese curd, fries were limp and sad (kind of like Jesse James career and life now) and the chicken tenders were standard fast food fare. + +Root Beer! Outstanding! Smoothie was OK...probably should have went with a good old fashion malt. But who knew? + +We had a fabulous booth across from a large open window with a fantastic Sunday breeze cooling our curds. + +I would go back for a burger and root beer. I might even wear a Packers or Brewers t shirt...just to see if I get some free stuff.",review,C8ZTiwa7qWoPSMIivTeSfw,18,17,22 +GAPqG0WNBBidKeZTMpEZ-w,2010-03-14,xVsnBJTFX-BsjJKi0yoMtA,5,"I can't say enough good things about this place. + +Quick disclosure: When I was working for the Downtown YMCA, I discovered Local Breeze as I was searching for businesses to participate in our fund-raising campaign. Local Breeze was totally down to contribute. So on top of getting that delicious meal, know that your money is largely going back to the community. Awesome. + +But the food (and drinks) are really what keep me coming back. The coca-cola ham is delish, and the serving sizes are pretty decent. You definitely get your money's worth. And there's a reason why my profile says that my ""recent discovery"" is ""spiced cottage cheese from Local Breeze."" That was written months ago, but I don't think I've discovered anything quite as amazing yet. And I normally don't even like cottage cheese. + +The last time I went was for my bday dinner, and again, it didn't let me down. We had good food, good drinks, and a good time in general. The bartender mixed up this killer cucumber martini, which sounds weird, but if you're a martini fan, go for it. If you're feeling less risky, you can't go wrong with their mojito.",review,ILGInX_7PgGBnur3d0Vx7Q,0,1,0 +1F-pelV0fTduYV_vCrvjLA,2012-04-29,nG1b-1CxsE_ir-s4k6m0Bw,5,"This place is literally within walking distance from my apartment, yet I have passed by it daily. This morning I was hungry for breakfast and had a lot of things to do so I thought I would try something close. I have noticed the parking lot is usually full, so I thought it must be good. I had no idea what type of food they had or what to expect. + +It was Sunday morning just around 9:30 and I was fortunate to be able to walk in and instantly have a table. The server was very friendly and she checked back often always refilling my coffee. The menu is a little newspaper and it's a bit overwhelming with many options, but I finally settled on the volcano. It is described as three pancakes, 2 sausage links, 2 bacon strips, and an egg. The pancakes are three different sizes and stacked to create a volcano with the egg on top. It was under $9 and I was surprised at the size of it! I attempted but could not finish it. The big pancake was left uneaten. They do have a smaller option for around $6 and that might be the better way to go unless you have just returned from a month long trip through the jungle or plan to share with someone. + +The server continued to check on me and even offered up a to go cup of coffee. I don't know how I have overlooked this place but based on the experience today, I would put it right at the top of best spots in town for breakfast. I will say come early because by the time I was leaving the lobby was full, people were milling around the parking lot, and the wait to be seated was 15 minutes.",review,zCC6huLkNBEr3JUgQyxJbg,7,5,3 +4hNjK7TpXjb86rfLDvL1lA,2012-07-14,_qTKFI_sRXSZ_D5m9sJ76A,4,Friendly and knowledgeable staff! They even have a nutritionist on site which shows their dedication to promote healthy living! I think it's great that they make the food daily and have appropriate portion sizes. I gave it only 4 stars instead of 5 because they didn't have as many vegetarian/vegan meals as I would have liked. What I did purchase though tasted delicious! I look forward to going back and checking out their meals again!,review,FVSpUG2tCifMcs2sFTTzqw,0,1,0 +Zx8_4zKdDBSO3qGrkukBIA,2008-05-25,iXiDZ0_T29qzmGkhhj1izA,3,"Chino is a cool place to take someone who has never been there before. It's strange and fascinating. I live fairly close by and the food is fine, but it certainly doesn't blow your mind. It's the kind of place that I get that Chino craving then I don't need to go for another 6 months or a year. The snickerdoodles are great and come with the meal. Expect to pay close to $10 a person if you get a drink with your meal.",review,zNvGIj1LefuBnBwCuqAGjg,1,0,0 +JRzrqJmsQ5AZ4bMQLUfyHg,2011-10-27,_6LWiRnz0RgKwlhf9eQ-fA,3,I personally love the other crackers so much more. I think it's the better customer service I'm never really impressed with the services here. It's either okay or a little below expectation something always happens when I come here. Something is forgotten or the wait is ridiculous just for the check to be picked up to be paid for or something. I can never tell you because it always changes. Food wise...good. this last visit the French toast was NOT as amazing as it usually is. So kind of bummed about that. And my skillet I must have ordered the wrong thing because I usually just get the skillet with carnitas eggs and potatoes this time their was chorizo in it so it made my potatoes soggy:( those things are another reason for dropped stars and also because I dont care for Chorizo and all its oils. For food and service to be off is unusual. But it happened so i always remember if you want the best you have to go to the best and this place is not it. Go to the one in mesa behind Home depot and beside Holiday Inn!,review,rO3WEI9L-_deUR9-JHuNQw,1,1,0 +sF3k_ZSndah1OwduVlb8_w,2011-11-21,SLQ_A2o9wQHAMYcnuFZTvA,5,So perfect. The atmosphere is just spot on. I love going whether it's just to grab coffee and leave or if I am there studying or just want to chill. I love their Apple Harvest (?) salad. So delicious and beautifully prepared. Baristas are always very nice (especially Brianna!). Can't wait to hopefully become a regular and attend some of the live music events they put on every week!!,review,U5C5ao1yVTDUfVBKfTYyUA,0,0,0 +PzbEhqo8uz2D-3OchHIPzQ,2011-06-20,HHvUn1TB9XjtvL7qxWT7yA,4,Good & fast food. Prices are fair. They charge a fee for Bank cards.,review,rIfvWHPWusWqff32L2D1BA,0,1,0 +VmRmj-IspfzXZdVYCaOOMA,2011-07-10,9qnmcoT5rsap2O6-MCPfbg,3,"For the price, Xona is a clean, beautiful spot in North Scottsdale adjacent to the upscale Princess Resort. Place was virtually empty during our recent two-day stay, so we had a tranquil pool all to ourselves. Unlike some of the other reviewers, we received great service from the staff. Food from the onsite restaurant was tasty and convenient. Surrounding area safe for walking or jogging. We stayed in a king suite...comfortable and roomy. Thought this place was a bargain.",review,ewIzFWba8q9PBBZzNeDGdw,0,0,0 +AryNioF9fxl8RYGiIE7fSA,2011-05-18,cNIaPe1Cg4uHfEfa3meiWA,4,"A yummy-in my tummy cozy spot! I met a friend for lunch here and was pleasantly surprised. The food is full of flavor and very reasonable. They give you huge portions, and the service is very friendly. I got a salad and the caprese bruchetta. What a perfect combo! The bold garlic taste of the bruschetta, washed down by a light salad. My salad had the perfect amount of dressing. I wish we had this place in So Cal, I would definitely come more often!",review,ssrs_xgmEZh39R_Gk9QxpQ,1,1,0 +cLojUtqkFpVIHFEvA_5Atw,2009-06-10,MfsiHiRvjITx6PN5dF0SKw,3,"Breadfruit is a cool spot. The interior of the place is well decorated and they can only seat about 15-20 people, making a nice, intimate ambiance. I really appreciate that they serve locally grown organic produce and that their chicken is all natural and raised cage free. Any addition of a Jamaican restaurant down town earns at least three stars in my book. We arrived at 7:30pm and were the only people there throughout almost the entire meal.. + +We brought our own bottle of wine and there was only a $5 corking fee, not to shabby. + +We started with the plantain and avacado spring rolls, I really liked that wonton was baked and not deep fried, the presentation was nice, the mango chutney was fresh but the rolls themselves lacked flavor. I really wished they would have paired some other fruit or spice to add more contrast to the dish. + +For my main I got the jerk chicken and I was a little disappointed. Again they did an excellent job with the presentation, but the corn was mushy and what the jerk rub lacked in flavor they tried to make up for in spice. I like spicy, and can handle a lot of heat, but heat shouldn't overpower flavor... + +The chef/owner came out and asked us how we enjoyed our meal, and explained his philosophy behind the food. The service was excellent, but in comparison to some other Jamaican places I've been, it really only warrants 3 stars (sorry)!",review,q9XgOylNsSbqZqF_SO3-OQ,7,8,3 +41j3GB7M-Lwq284Pfb9zgw,2012-12-06,gZFxtexyA9cCxDVy7z8pCQ,4,I took my son who has been living in Sweden to Angels since he likes good beer. And he was noy disappointed. The price was right for the quality of the beer. We also enjoyed the food I had the sweet potatoe tacos and the were great. He loved that so many varieties of good beers were on tap. Definitely going again especially if all three of my son's are home. Good beer good food good people,review,8DTPxXrbbSB0HafilA2IrA,0,0,0 +vSWEXsXmJw5ozuF4zqE9ng,2008-05-20,CWyyvYCV-wzDjJVGbk5Mtg,4,"Half of Bottles of Wine! Open 7A to 12A 7 Days a Week. + +My Florist displays one of the Valley's largest sings and salad menus. The story of name comes from an old flower shop and the current owners of My Florist continued to use the sign and name. + +The fresh products, from the bread to the veggies and fruits equals four stars to me. The service is friendly and the servers know their stuff but I have never been blown away by the service operations. + +Dessert, +Amazing, This is a place that I will drive to just to have a dessert and perhaps some wine to go along with it. The place takes reservations late so don't be afraid to stop in late. + +LIve music Tuesday - Sunday. Nicole Pesce plays the piano W-S ((Please Send me a message if you know of any other restaurants with live music)) + +The relaxed atmosphere is created by a very open dinning area. And don't forget to go next door during the day to visit Willio Grocery. + +I'm amazed how different the reviews are for the restaurant. Please see for your self and see why so many people yelp (good or bad) about the place.",review,0qIsBt4EzBDCKrIviV55Ew,1,1,0 +VKNl2-aF4n1x7lPVyU-Mag,2011-02-22,oC3NTNCTczDMrYQeTQO0Hg,4,"EXCELLENT! What a fun time we had. Hubby and I went out for my bday celebration and were so glad that we did. What a fun and comfortable experience. We walked in and were greeted right away. We had made reservations but there was absolutely no reason to. It was a Monday night and really @ 7:30 there wasn't a whole lot going on. + +Alec was our server. We opted to sit in the bar area. Same menu available. We started off with the Haas Guac and the Green Chile Stew. We initially made the mistake thinking that the stew was going to be like the kind @ Roaring Fork. It's not. They would do themselves a favor if they called it hash. I suppose hash is not as appealing as stew. Nonetheless it was good. The little fry breads that they give were not my favorite but it was good with the chips that came with the guac. I had the pork tenderloin and hubs had the mac and cheese with chicken. Both good. Really good. + +It would have been a five star review but there was something weird tasting in my diet coke. Like soap or something. Hubby thought maybe it was because they probably didn't sell a whole lot of soda product. I dunno. Could have been the straw, the glass, syrup ratio to C02. + +And by far which is probably the best part of the restaurant. THE BEST CHAIRS in the world. So comfy. So plush. You could sit there for hours and never leave. IF you had them in your home you would never leave. EVER!!!!",review,yoQAZWDdBW3kQH7geFEoWA,0,1,0 +OOCLVeqqMFfSnKa7liv0Kw,2011-08-19,Q4xhIcWf9gqlmQsEcIRclw,4,Great mall. has pretty much everything.,review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,0 +di2QHs2SrY0XFHcfAq_k2A,2011-10-29,Kd53qk6QX2RxL8wt7GfB2A,5,"Excellent customer service, super clean, and the food's not bad at all. Despite the fact that I asked for extra mayo on my sammy, but got NO mayo, was a little annoying. But, for some reason, something told me to pick up some packets of mayo. So I was in the clear and my annoyance never gained traction into anything that prevented me from returning. That, and the sandwich was pretty yummo. They also give a pickle and a free bag of chips to go with it. + +I do not, however, recommend the chocolate chip cookie. No bueno.",review,yk3kUEPdNDuIcwdUF2yaNA,0,0,0 +8vLEHHZJ-dk8M32bYti7eQ,2010-10-15,P9eUtYCx4TQCdAwZTd0bpA,2,The customer service here could be 100% better but then again not much around here is anywhere near the greatness of texas customer service!! Was not greeted when walking in and waiting for about 25 minutes!,review,ekMRQH5dkzB2mglNBcNh7Q,0,0,0 +qb4PzVr19bXXLBf71dd5kQ,2012-08-11,xnnqQAkpbRx9KrTyPDPmbw,1,"From my door, it's a five minute stroll through the greenbelt to Dukes. They have a nice patio. They have enough TVs to show all MLB/NFL/NBA games. They have plenty of shuffleboard and pool tables. Yet, I've only been to Duke's a few times and I am not going back. This place is just bad. + +Mixed drinks are poured short and use cheap mixers (such as bottled sour mix for margaritas). They offer a pretty basic beer selection. I think PBR pitchers might be more modestly priced, but that might be only when they're on ""special."" + +The food is pretty bad, even for bar food. And pricey. Sure, the menu is gigantic and I've tried many different items, but I didn't find anything good. Everything seems to be made from ""freezer to fryer"" or packaged products. I'm not exaggerating: the burger and fries for about $8 is a thin, previously frozen patty with a handful or supermarket fries. I could go on about salads, sandwiches, and ribs. In the same price range, you can get a much better version of anything on the menu at Four Peaks or Zipps or even Devil's Advocate. + +One of the owners was there on a few occasions. I guess being the boss of (and drinking in) his own bar is some sort of dream of his. He treats the place like his kingdom. He'll ask patrons ""how is everything?"" and get mad at them if they have anything negative to say. I feel bad for the rest of the service staff; they seem to be above average, but when the overall situation is this bad it just doesn't matter. + +In this city, sports bars are a dime a dozen. I'd rather go elsewhere.",review,04IL-BzBN8WdOQEtYVoZ4Q,0,1,0 +QCxXYA13PtkD3wec47_r8Q,2010-10-08,d3gYkRfYRlt2NTV-7eVzpg,1,Wow?! Is this the new Barcelona?! Yuck! Old scuzy men and middle aged women with fake boobs that are falling out of their painted on dresses. All bars were completely under staffed on a Friday night. We waited 7 minutes at the front bar until being ignored continuously and we became so frustrated that we made our way to the round bar and it seemed just as understaffed. What's the point of only having a few bartenders on probably the busiest night of the week for bar-goers? We even approached the blond manager to ask for service and she was completely rude and had a total lack of desire to help us. We will NOT return due to the lack of service and efficiency. This place has GOT to staff more bartenders and needs much more help. Welcome to North Scottsdale Barcelona.,review,YuY8MA5BaDpXROleb0RI2g,0,0,2 +Xr2Qe7Se0WyH68nOxSn5aw,2011-09-05,rjFP1FUaabaAzCZMaGYxkQ,4,"I went to the one in Mesa on Baseline. I loved the vibe, service, and decor. They have witty jokes on the walls and the whole place makes you feel like you are at a party on the beach. We ordered the carne asada burrito and the mushroom burger and the sweet potato fries. We got the dessert pear and blackberry lemonades. You get 1 free refill so we tried the blood orange and the guava flavors after. Everything tasted great. I would def go back and get the mushroom burger. The prices are super cheap and the portions are huge.",review,5gmnzvjYprzK21Q5awYF_Q,0,0,0 +41j3GB7M-Lwq284Pfb9zgw,2012-09-10,EqwQIojP46MwQVAwHpUrNg,2,"I was not a particular fan of this place. Went on a Friday evening after work. A friend wanted to try it because we always enjoy supporting new, local places. + +They do have a very large selections of beer but the process is very confusing. All of the beers on tap are written on a very large chalkboard above the bar. They use several different colors of chalk for each selection making it very hard to read. It may be easier if they pick one color of chalk for each type of beer, that way it is easy to find what you want. Or have #1-5 be one type of beer, #6-10 another and so on. My boyfriend spent so long trying to find a beer on the board because of this. Two of our friends were so overwhelmed with the way the selections were presented they just asked the server to surprise them with a choice. + +The acoustics in the place are terrible. It was so loud inside that it was hard to carry on a conversation at the table. + +Also, no happy hour. This would be a great way to draw in an after work crowd.",review,ZUx-B52hGRhmeUDVukmjrg,1,6,3 +5Feaj6aixO_QxKFnkHf3xg,2007-11-25,SC1ekCmjhYXbCvp1GBWAdg,3,My goodness this place has gone downhill. Yeesh.,review,g84VjttN28PWiv_WtdhnSQ,0,0,1 +FOfhEC6rN23RQaUlsR2byw,2012-06-06,VNRLp4NtaMJ5j5eEhqpWgQ,4,"I was not a believer, but one of my friends said I would not be disappointed so I gave it a shot Happy Hour in the bar is $5 a person per section ($5 cheese, $5 chocolate, $4, salad, and drink specials as well). I was super surprised, it was all really good of course, and I was FULL!!! Also, you can have more bread and dessert for free if you have and of your cheesy or chocolatey goodness left! Took a lot of time, I think we were there for like 2 hours but I would do it again.",review,jzNujHInKuFQCyf7UECIjw,0,1,0 +Nz_AasmpsQ8MLSqhCTRVoA,2012-01-02,z-7knCp-Roz694OZwAPcKw,5,"I traveled to Phoenix often for work from the early 90's to the late 00's and the first thing I'd do leaving the airport was to hit the Pink Pepper lunch buffet, hence I've never ordered from the menu or had their dinner service, but their lunch buffet was awesome! Very reasonably priced, including an iced tea. It may not necessarily be the most authentic Thai food as I think they reduce the heat a bit but the flavors were excellent and the variety was good. Loved their eggplant dish (can't recall the name) and their crispy chicken with the creamy sauce, and of course the usual curry sauce dishes. + +If I'm ever back in Phoenix again the Pink Pepper will be one of the first places I go.",review,0n6o5WIeiMUDtq3ayL3I-Q,0,0,0 +0UZ31UTcOLRKuqPqPe-VBA,2008-04-14,l9xhdOFY4MerjyzXIVa7xQ,3,"I feel bad for this park. Its nice. Really nice. The only problem is its in Phoenix where it is hot like heck. That means the roof is always closed. And with the roof closed, it almost feels like you are watching baseball inside of an auditorium.",review,E9JBw3ztKUjs9A1sf7a5AA,0,0,1 +INHDFn2183h8xMCDj9B1iQ,2009-05-27,krz0GyZJ1HaGfzrGjnbF6Q,5,"OK, being from Wisconsin (the land of the ""great lakes"") I was COMPLETELY surprised to be told that, yes, there are lakes here in the desert of Arizona. The Lake, Saguaro Lake, is a man made lake originally built as Stewart Mountain Dam...even so, its beauty is equal to those you would see in the glacier regions of the Midwest. I was amazed, frankly, at how beautiful this tour was. Sold for $18 for 90 minutes, you get your money's worth. But that is probably not what you want to hear... + +The ""event"" is a combination of 1) the scenery, and also 2) the charm of the paddle boat itself. The boat is quite large with seating for probably close to 75 people! It's an event that you could share with family, but I happened to be there with friends. Currently, it's a pretty mellow type of event (great for Mother's Day!), although I am told that they are hoping to exploit its benefits to include comedy shows, Jazz ensembles, stargazing, and a variety of other events. + +P.S. They also advertise that you can rent the paddle boat for company picnics, weddings, and the like.",review,NLDDaat42UQXQCOpU4e2TA,7,8,3 +JokKtdXU7zXHcr20Lrk29A,2010-02-12,G7f_vWLGMfkDenOTmamd9A,4,"There food is pretty good here but they have a lot of different brews, I tried a pumpkin beer witch was very good. This place used to be real quite and unnotice now it's always busy and very crowded. It is located away from mill ave by about 3 miles so if your trying to bar hop make sure you have a dd and stop by this place.",review,gc4rNAgbGydNMAPJ85FZag,0,0,0 +jqZKv-7F54guDLalXEjHxg,2012-06-16,SZ3vNmTgzm-NbDDBDjt7zw,4,Been to a few different locations and this one by far is the best one. The food seems better than the others.,review,meBgdnN_Jw9MOwz3ZzqQEA,0,0,0 +UIfORCz28cEGMr_9p0eJ5g,2009-07-20,flpiiXKS4JmP6Yw5PLgj2w,4,"Perhaps a bit on the pricey side, but sometimes you pay for atmosphere. This very sexy and trendy joint is located at City North (next to Blue Martini). I ordered the #1 sirloin burger with carmelized onions, gorgonzola, crescenza (soft, buttery cheese), arugula & thousand island dressing. OMG! It was massive and juicy and made me lose all dining diplomacy as the juices dripped down my arm! My friend built his own w/ hickory bbq sauce, cheddar and bacon. + +On the side we had onion rings, sweet potatoe fries mixed w/ reg fries. Errrr....lemme make sure my gym membership is still active!! LOL + +Personally, and I know this will cause a small uproar, I think the burgers are FAR better than Delux! I never understood the Delux cult following anyway. There...I said it! :) + +I even endulged in the Guinnes milkshake (Guinness beer/vanilla bean & chocolate ice cream)! You know the saying don't knock it til you try it??This would be one of those times. When's the last time you had a sugar high and a buzz at the same time off a desert....hmmm?? + +Bon Appetite!",review,4IxLt4QvCsJEdaNvH9QApw,5,4,3 +JbJDlfcnYiyZRXeHQcAVjg,2012-09-23,EducGFK7bq0xWhdHLsd32w,1,"So, what kind of place serves chicken fingers and NO Ranch dressing?????? The only sauces they had was honey mustard and ""Canes Secret sauce"" Can I say EEWWWW!! I thought that the sauce tasted terrible. I am not too big a fan of honey mustard but I do On occasion eat it if there is nothing else And that wasn't even good! The coleslaw was awful also. I do have to say that the chicken fingers were very juicy but also very bland. Those were the only 2 items that I tried, not that there were really any more items on the menu, Texas toast? And Fries I think?? Overall, I would never go back.",review,svlNoU7zTA6VmVsvtIedKg,0,0,0 +yTFdhqH9eLzaP05xXQa2rw,2009-07-14,m8JBuwO7H5M6uv-_1pNgbw,5,"Had the pastrami sandwich. It brought me back memories of living in NYC and eating that first pastrami. It was good. Good food hAs the power of time travel. + +This is a great place. Plus the coke is primo. Good mixture. The ice makes it over the top.",review,b9TcMqRXE0suDiBgNlOBdQ,0,0,0 +pwpl-rxwNRQdgqFz_-qMPg,2011-04-27,cnRKlXHSE0k8Ro7dHa94Cw,4,"The Parlor is one of my go to favorites when I'm craving pizza, going on a first date or have friends and family in town. + +I always have a serious conflict between the margarita pizza v. the pesto pizza. They are both sooo good. Lately I've been going for the margarita with a side of marinara side. Usually pair it with caesar salad.",review,C3SXTtxCtSvcJuBtV4TDdw,0,1,1 +6Ckmrpp6OW1pJ-3Pjg7VaQ,2012-02-09,qqHCqpE3dDnjFG9fA3MSHg,2,"I stayed here last month. It's your average motel (since the doors face outside, not a hallway), and the breakfast buffet is okay (scrambled eggs, hash browns, sausage links, bacon, cereal, batter to make waffles, and toast provided). The walls are REALLY thin, so thin that the guy snoring next door kept us awake all night. + +The room was clean and equipped with a mini fridge (like the kind you'd keep in your dorm room) and microwave, although lacking a safety deposit box. If you want to keep your items safe, you have to bring your items to the front desk, make a list of what you're dropping off, and then sign. I was uncomfortable making a list, so I decided to forgo this process. + +FYI if you call the front desk to order you a taxi, they actually order a car service. The car is an unmarked, dark-colored Lincoln sedan. To go to the 16th Street Sports Bar down the street cost us about $10 vs $6 for an actual taxi (which we ended up taking later). We didn't want to drink and drive, so not bad, but just know that the hotels in the area do not order taxis. + +My main complaint is that we didn't have housekeeping service the entire time, hence the two stars. We left for lunch from 10:30AM - 1:30PM, returned, but housekeeping never arrived. We left again at 3PM for the rest of the day, and housekeeping, upon arrival back at the room after midnight, hadn't come. I called the front desk for someone to bring towels, but since there was no one to cover the front desk, we had to go get the towels ourselves. I also wanted an extra pillow, but the front desk person couldn't leave the front desk to get a pillow out of the housekeeping room. I thought this was very strange. + +I guess for less than $100/night (Hilton resort down the street much more expensive), it's not too bad. I would probably stay here again for the mere fact that the location is conducing to our activities. But, if I could find another hotel close by with a similar price, I wouldn't mind staying somewhere else.",review,L3Jsd79upFBPk2z4EBOsVQ,0,0,0 +qRBeZAFiId0ainBtpFSGuQ,2011-04-01,aeXZGKD0_pgnHyZKxYU45w,2,"Have been to the Garage twice now and they are batting 1 for 2. + +Went there on a Saturday for lunch and the food and service was excellent. I had the pulled pork sandwich with sweet potatoe fries which was original for pulled pork served on a pizza crust bun. My girlfriend had the buffalo chicken salad which was really good, grilled chicken in buffalo sauce on top of baby greens. Excellent beer selection. + +Went there on a Friday for happy hour and got there a little before 6, there was a 30 min wait for a indoor table or immediate seating on the patio, so we decided to sit on the patio. Hostess sat us and said a server will be by shortly, normal procedure. About 10 minutes later no server had come by and the hostess returned and asked us if we ave been helped yet, we said no so the hostess said she will get someone. Another 10 minutes and no server. It wasn't busy on the patio about 5 tables occupied, all with food and drink. We decided that they must not want our business, so we went next door to Sushi Eye. + +Will try again, just won't sit on the patio.",review,Yqwt6k2s39cCrQzvTLM6lQ,0,1,0 +OEQMqI-duBA1gbBFzi7BPw,2012-08-19,DufvlO5HC_GD2Y8PHidILA,1,"I hadn't been to Fuddruckers for about 20 years... now I know why. Cashier was nice and very helpful. I ordered bacon cheese burger combo. Fries were only warm, not hot. Burger was not very tasty and it was full of gristle bits... you know the ones that stick between your teeth. Lots of trash on the floor. After we were finished, someone came to ask how things were. I told here about the fries and she offered to get me more; I declined. She offered a free dessert: I accepted. In all, not a good experience, will probably be at least another 20 years before I go back.",review,OwgqvIcUSTwFJueBX9JmcQ,1,1,1 +nRO4tRwimU12hg7Cnz__iA,2009-04-24,OHQj2xhSKlbL8nnNV5U4Jg,5,"Eden's Grill has to be one of my favorite, and newly discovered Middle Eastern/Mediterranean restaurant in the PHX metro. Located in a sleepy strip mall, close to Artie's Ace, is EG. My partner and I had the opportunity to have dinner here a few weeks ago and we were totally wowed by everything! We started off with the hummus, followed by two orders of the vegetarian plate. The vegetarian plates were huge and featured dolmades, falafel, rice, veggie skewers and veggie patties (2). The vegetarian plate was massive and everything on the plate was delicious. Next time we'll pay the extra $5 and split one Vegetarian Plate instead of getting two. The pita and hummus were fresh and delicious, however, I find EG's hummus to be a a little thick for my preference and they use a heavy dose of tahini in their hummus. Overall, I would totally recommend EG to anyone with an itch for Middle Eastern/Mediterranean food but be warned, they aren't open for lunch on the weekends yet.",review,6hRKotVFPYL7Ci0hipN9Eg,2,3,2 +Mh85-BDqDHlngT8G2ZnRWg,2010-07-23,6wFkP1odFM6CDCgJuX6R6g,4,"If you are in the mood for pizza this is possibly the best pizza, no it is the best pizza that I have had thus far from tempe. This is a five star if Tempe was the only place in arizona. + +They have amazing pizza that does not taste like a piece of hot cardboard with tomato past and a sad excuse for cheese. Unlike other pizza places the owners are some real italians and keeps the company in the family. + +Recommendation: To anyone living in tempe and enjoys a REAL pizza.",review,cWg07SD9-PnDUglqtS5owg,0,1,0 +7cP7WFmWiTVh-raIL3N_Vw,2012-05-08,DEspvhnHjYXGx0RGxU_0PA,4,What can I say - I love this place! I was introduced to it by a group of 20 something friends so I was a bit worried going there (I'm no longer of that age group.) Turns out I had nothing to fear! Roosevelt is perfect for a glass of wine with the hubby or post dinner cocktails with a group of friends. Still have a the munchies after dinner - there is a great food menu selection as well.,review,bvvLS4Vz5yFuNvGKBV3-1g,0,1,0 +mhQCxOiqp03qnhGRTtPduw,2010-05-02,4sV0vcNO0qyOxwxfbsG3Vg,4,"UnPhogettable- a poem +Trying new things can be oh so frightful +so it helps to have owners that are oh so delightful +Start out with springs rolls to begin the meal, +I liked the peanut sauce so much that I let out a squeal! +And ah the pho, the main show if you will, +both my tummy and soul it did fill. +I've also had their chicken dishes a time or two, +those are quite good if soup's not for you. +The lighting is dim and the tables lack in style, +but once you get past that you'll be there a while.",review,aUWLSsTqraEORdiNCpNq3w,0,0,2 +WyJRPTn2FCFdj2cYT9pqyw,2009-12-18,IFc6QJwtfCU20aVqVlmg4w,4,"In my opinion, this is one of the best restaurants on and/or near Baseline Rd in Tempe. + +Their service is great! You will be greeted from the time that you step a foot through their door. Unfortunately, per today's so-called standards this is not a very common courtesy. + +If you a first time customer or a returning customer, you can ask the person behind a counter to recommend a meal for you or you can ask for a minute or five. As a very indecisive person when it comes to choosing an item from a menu... I really, REALLY appreciate it when I do not feel rushed when it comes to making such an important decision in my overwhelmed life. :P + +I haven't tried too many things from their menu because I usually stick to my favorite: Award Winning Gyro Lunch/ Dinner. A plate of delicious slices of beef and lamb, carved off the rotisserie, served with fresh toasted pita. + +Lunch is served with your choice of the sides... Oh, and did I mentioned that their prices are extremely affordable! $5-$13 price range!! + +So, enjoy your meal and make sure that you do get a chance to turn around as you are walking out because they WILL thank you for coming! + +Kudos to you... my dear My Big Fat Greek Express owners and employees for making my oh-so-many dining experiences pleasant! I shall forever cherish thee!!",review,k8vE4MWAvcAYjQ7EyZGkug,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2008-12-31,qRVrMDcgEQ2J5p64bWAsNg,3,"I only did layovers in this airport to and from Colorado from California, but I liked it. There were a ton of places to eat which was fantastic. Their flights left on time, which was kinda annoying when we got in 10 minutes late and ended up getting stuck there for almost 3 hours. Free internet access helped with that though. It's an airport I don't mind being stuck in for a bit.",review,bJgt3IZajlpo_rpPtJ7tWg,1,1,1 +qbCNlrrY5Ms0ehAMi3XX6w,2010-03-29,wdxPFtg7yeGyzTI-CapaqQ,3,"Tailgating here is something else altogether, but if you are doing ANYTHING near ASU, then you already know about the party scene. Let us get to the stadium proper... + +This place is huge. Standing down on the field and looking up towards that blue Arizona sky will give you a little perspective on just how massive this place is. Sandwiched between two mountains, it's easy to get lost in your surroundings. + +The only bone I have to pick is with the fact the bathrooms are like finding water in the desert. I was expecting a stadium of this size to have numerous bathrooms, but I had to do more then a little searching to locate one. + +If you are looking to catch a college football game and get the ""big stadium"" experience, Sun Devil Stadium is a pretty good place to start.",review,hedOECpUoqK0wkodLk-rqg,0,0,0 +r9sGMJ084n4IS9eGmlCKjg,2010-08-07,2l4P-VEwggoi7S5qELfKHQ,5,"Consistent is a great word to describe this place. The food is consistently great; the service is consistently great; the regulars are consistently there. (they're great too). It has a comfortable smoking/drinking patio and great prices during happy hour. The staff and owner is always (consistently) accommodating and friendly. You feel like you are part of the family here. + +Food I'd recommend: Any fish served Greek style, the Prime Rib, the burgers and definitely the fillet medallions with the gorgonzola wine sauce. All the food is good though and you gotta love the salad bar!",review,GJl1qIvyQEs501rfw0hDBg,1,4,0 +KT_r7qwU8sSfcR31zETGkg,2012-09-23,yIVAO0dL8iDxoQM5U1pv7w,4,"I've eaten at this Smashburger a few times and I'm always pleased with my food and the friendliness of the staff. On my most recent visit, I called ahead to pick up my family's order and we were not disappointed, once again. We ordered a variety of menu items (and in typical 'When Harry Met Sally...' style) - a grilled chicken spinach and goat cheese sandwich (subbing the goat cheese for American & changing the multigrain bun to egg), a build-your-own burger with an egg bun, spicy chipotle mayo, pickles and onions, an order of Smashfries, an order of french fries and an order of fried pickles. Everything was made perfectly to order and plenty of extra sauces (ranch, etc;) were provided without having to ask. +On weekends, this shop is jam packed and it's a wait to get a table, but worth it. During the week, everything flows very smoothly and the vultures ""circling"" for booths is at a minimum. +I highly recommend this Smashburger location whether dining in or taking taking your meal on the go.",review,o9TIZgH9OdKpVSVk6CVCgg,0,0,0 +9Y3aQAVITkEJYe5vLZr13w,2011-05-09,Xf24HAnLyLC-foz_F_SSPg,4,"The food is good and the location is perfect. A solid breakfast spot in Oldtown. Everything on the menu looks fantastic. I went the healthy route this morning and went with the Quick Start Conscious. 4 egg whites, broccoli, tomato, fruit and cottage cheese. Phenomenal for a healthy breakfast out. Breakfast club also brews a pretty solid cup of coffee that gives me a pretty good buzz for only having two cups. + +The only real negative is the outside seating. It seemed good in theory on a cool day in Scottsdale with temperatures only in the seventies. However, being right on Scottsdale Road, it was hard to hear the people I was eating with because of all the passing traffic. I'd advise that anyone dining here eat inside (where it unfortunately can also be a little loud since the place is always busy).",review,thdVzCfKx-DV0zYWqId3pw,0,2,0 +wH9WtaTlrRawH_IpK90RPg,2011-03-25,wZnZbXQeUooGnBHHntxBag,5,"How have I gone this long without reviewing the lodge? Sheesh! I get all fluttery inside when I think about the lodge. The Mac and Cheese is not something to play around with. It is a dish of fantastic, cheesy wonderfulness. Also, please note the veggie wrap. HOLY SMOKES. Its a heavenly combo of sauteed veggies, feta cheese, and some kind of lemon/herb/heaven sauce all wrapped up in a pita! Really? Really Aaron May? + +The other aspects of the lodge I enjoy involve the friendly staff, and comfortable setting. It's decorated all rustic and cushy, and true to form there are antler-chandeliers. You will also find pool tables, darts, several TV's, jenga, bean bag games...they have plenty going on at the lodge to keep you and your friends entertained. Check it out...",review,i4MKtZoii8WCSq518WvIkw,1,1,1 +Sm-KSR7qtHmP-Z1yBPxedA,2011-06-20,W-9P2BYSk51_ftA1ho26Lw,2,"This Safeway is nice and is close to my house, but after visiting this weekend I have to stay I am going to stick with Bashas. The prices are definitely higher on my normal items at Safeway. Also, I know Safeway can't really control this, but the vibe is not as friendly. The parking lot was packed, there were grumpy folks looking for spots. This is the same Safeway that my husband was at when a guy and his girlfriend walked up to him and offered him $5 to help get him a hair cut. My husband's hair wasn't even that long (maybe an inch or two). I don't know what it is that draws that type of crowd, but Bashas has a much more home-town feel.",review,iAD9GVUI8m5KaHgi1CnJBQ,0,1,0 +0nGjXTpUtpIJl10PL0eBGg,2012-10-07,jui8bGOENuFTYH59aluhpA,4,"in town for a conference and craving 'real food'/a substantial breakfast to start the day - breakfast club, walking distance to our hotel, completely delivered. our server was super friendly, though we were sleepy and indecisive; she recommended the french toast side we ordered to be made ala bananas foster - YUM. more like dessert but nothing wrong with dessert for breakfast... otherwise we had fairly standard egg dishes but they were yummy, fresh, served quickly, and exactly what we needed. + +the *only* complaint i have is wayfinding - perhaps, since they were setting up for an event downstairs, it was moved - but there were ZERO signs on ground level, and while we could smell bacon/coffee/breakfast, we had to lap the block a few times and only found it because we figured we may as well try the escalator... a few signs would go far.",review,zzhdnNeg65wupOXqYtGyJw,0,0,0 +jRfdz5voj40P6WS9L54caw,2010-01-23,FPWS5DY5DNNyVl_Duu6cCw,5,"Just went for my first time last night with ""the ""girls"". Two of us heard about it and after I read the reviews and checked out the menu it was slated for our next night out. +Anyway we had a memorable evening with wine, the make-your-own cheeseboard and the to-die-for pear and gorganzola flatbread pizza. It was topped with fried sage leaves -- different and delicious. Afterward we were able to fit dessert and shared a huge slice of fresh layer cake filled and frosted with dark chocolate. Sublime! Can't wait to go back and try other dishes - definitely made it to my 'Restaurants to Frequent' list :)",review,2LdmDvRyrXgFsVL1KoRfRA,0,0,0 +qdbtpxgfYp0aBZdg4jEFIQ,2012-12-20,Ay15hq7aTzBP_aT7XBNjXQ,5,"I really enjoyed my mani/pedi with Trisha! She took her time and taught me about manicuring my nails from home which I loved. + +I went in for the Groupon basic mani/pedi deal and left feeling like I got a lot more! It was the most pleasant experience I've had at a nail salon. The conversation was easy and Trish is a great person. I will be coming back to Trish for nails again! + +The entire staff was friendly and professional. Great Salon!!",review,x67gqdKYmKD8YZ3j3wmW_A,0,0,0 +Q_jHqufNoxdlgCtLbqrpsA,2010-08-15,jhJDITmMgBVoaafrSFPp7A,4,"So much fun! In town for work and wanted to celebrate a colleague's birthday so following the great reviews on Yelp, we ended up here. We were exhausted but still had a blast. These are some seriously talented performers. The crowd was mixed from a lot of 20 somethings to 40's/50s and all were dancing and singing and just overall, having a great time. $6 cover but so worth it. Definitely recommend this bar if you're looking for a lively place to have some drinks.",review,_bYIJdwBzZhHGcDQjiFeEQ,0,0,0 +17DI33J8TkcfzyoiIYLQIw,2011-02-20,mMR9QwwtDrQ9CBTAYp7pDw,4,"The only thing you can say critically about the Thai House is the location isn't a home run. But get past that, and get inside because the food is top shelf and the recepies are authentic making this a fave five spot for my family. Start with a Thai Iced Tea, try a spicy soup, and don't miss the curry - but beware of the heat index and order according to your ability to enjoy flame in your flavor! My personal favorite is tradtional Pad Thai - the perfect balance of peanut and chili spice with sticky noodles & chicken...",review,GjNyOTcibcI_XKCzeMgO2g,0,1,0 +b-6GC5VpE3tHZTcWmZynfg,2012-06-15,aluHwnhLGXIPanqHT9aX9A,5,"Mister Softee is an all-star, he showed up on time, provided great service, and has great tasting ice cream... Give him a call !!",review,vQ0aO_auGTuL000he02ikw,0,0,0 +0_vMnSRqc5aZUg1eBk3l2g,2011-11-21,uioGU4llZCstxsuy37IjuQ,2,"uuuuuugh. What a sorry disappointment of a meal. The BF and I went here for dinner tonight and it was pretty not good. I got the pick two with the balsamic steak 'panini' and the chicken stew. The BF got a turkey 'panini.' Well....his 'panini' was barely toasted, let alone a panini. My sandwich was toasted but the steak was pretty gross....chewy and tasted like it came out of a bag. The tomatoes were mealy. The whole thing was sad. The chicken stew was decent, but had that plastic -y look to it. I always find that a little disturbing. It came with a biscuit that was really gross and didn't go with the stew at all. Both of our cookies were raw in the middle. Plus the meal cost 20$. Really?! 20$?!?! Are they kidding me? I could get a countless amount of better food for that money. Not awesome. Not even good. I won't be returning.",review,3gIfcQq5KxAegwCPXc83cQ,1,1,1 +YCCDMLcb7UW8G-o_HsWiiA,2011-04-03,Vnr2wuBXEjbLtfQT_XuDSQ,5,"Awesome food anyone??? Go check out Modern Steak in Scottsdale, AZ. +Gorgeous dining room! Excellent service (with our server Gabe)! And the food was AAAMMMAZZING! + +It's located at Fashion Mall, but it's NOT a ""mall"" restaurant. A MUST go!",review,UrXg7zOknA7WAHD60JnK9g,0,0,0 +8t80-omyflkywRfu9LPh6g,2009-06-12,yU7W-WFau7IKNL-mu5Eo7w,5,"Dude...a happy hour that is TRULY happy!!! + +This joint is relatively swank for all the deals it has. Nice decor, good bar, FRESH seafood (seriously...this is some good quality). Starting at 4:00 p.m., they have $5 martinis AND $0.75 oysters. YUM! + +On top of that, they offer discounts on other appetizers such as the bread and cheese plate, a GIANT crab cake, a salads, and shrimp dishes. All are tasty. + +For all the Zoners out there (yeah, I said it), you have to check out this place. You will have a great time! + +NOTE - beware of dirty old men. They'll hit on your friends!",review,4Dqeb_NGFpLG1PJp7wqaJg,0,1,1 +s87D-mtAuJ8BluKgYYsXGw,2010-03-15,qCx6SePFqACM1CqTyXPpNg,5,So my friend and I stumbled upon this place on our way to Barb's bakery but WOW I have never had a better taco in my life. The carne asada street tacos are freaking amazing. They also have the bottled cokes from mexico that for some reason taste sweeter than cokes bottled here. The waitress was also extremely friendly when we were checking out we asked how to pronounce the name of the restaurant and she started teaching us some Spanish.,review,h5unSMFD5BKuods_Po_lsA,1,1,1 +mQde7KRomOQoUyPGTqeXhA,2010-09-11,LDEj_-lmUw9ug-AQxgitQA,5,"I can now thank the Humane Society for not only giving me my dog Brutus when I was a child, but now my dog Harley as an adult. A couple of years ago, I planned a visit to the Arizona Humane Society to present them with a corporate donation on behalf of my old company. When I scheduled the meeting, they offered to give me a tour of the vicinity and as a friend of the helpless animals, I said of course and planned my visit. However, I knew that with a tour, I might be in some trouble in the willpower department. + +When I arrived to the center, I was greeted by a pretty view of South Mountain and a wide open vicinity. I walked inside and immediately noted how clean it was for being home to many a furry creature. The staff was warm and welcoming as potential new ""parents"" waited in the lobby to adopt a new friend. Kittens and bunnies greeted the guests and there was a special area for the cats being featured that week. The vicinity was a five star facility to say the least and I could immediately tell that the animals were treated well here and in good hands until they found a new home. + +To make a long story shorter, they gave us a detailed tour of the complex. I walked through spacious room after spacious room full of dogs of all kinds just wanting a home. As I walked up to one of the cages, a furry ball of fluff looked up at me and placed his paw on the cage. I fell in love immediately. To make matters worse, the staff then took us into a room where we could make a kong of peanut butter and treats for our dog of choice. Of course I had to give it to my new found friend. At that point I knew I was in trouble and could very well be leaving with a dog. So to end that part of my story, I did leave with a dog and Harley has been happy in his new home ever sense. + +While I visited the Humane Society, I couldn't get over their quality of service for not only the clients but the animals themselves. They were clean, kept in spacious areas and they even had a huge playground for the animals to play in each and every day. When i found Harley and started to think about taking him home with me, they took me to a private play area where I could get to know Harley a bit more to make sure he was the right dog for me. A staffer stayed in the area and helped me with any questions I had. When I made the decision to take Harley home with me, they neutered him, gave me a couple free vet visits and sent me home with some treats, food and a leash. They even have a pet store to pick up all your essentials for your new friend. And did I mention that the proceeds go back to the Humane Society...a nonprofit? + +This Arizona Humane Society is a five star pet resort that focuses on making the most of a pet's stay until they find a new home. I suggest just taking a visit to the facility to see how well-kept it is. They even have horses that they rescued. Sorry folks, they are not up for adoption though. So thank you Arizona Humane Society for bringing my little dog Harley to me and saving so many animals from the streets.",review,4ozupHULqGyO42s3zNUzOQ,8,12,3 +pwpl-rxwNRQdgqFz_-qMPg,2009-08-10,Q1XN0L0P5evdBYZZNRUFCw,5,"Awesome, awesome, awesome....everything was fantastic. The innovative drink menu, the pizza was out of this world and the bartender was very personable. A++ I would definitely recommend this place to everyone. Ban't wait to return!",review,wW5YgcJHKebkjKCMo5mSOg,1,0,0 +eek3lFfNMKULpwTSHGwzQA,2009-08-30,wgEUSAcuqwQbgW90di2YiQ,3,"This place confounds me... + +They have an excellent beer and wine selection. As a matter of fact, their beer selection is one of the best I've seen in AZ. Tons of micro-beers and many different and unique bottles of rare Euro- brau. For the selection, to stop by and pick something up and go, this place is great. As a restaurant/Wine Bar bar, I give this place a big...Meh. + +The service was terrible. Of the party of 6, everyone that ordered a glass of wine, only got one. They sat with their glasses empty for at least 30 minutes. Those of us drinking beer, just walked over to cooler and grabbed a beer. We also had an appetizer. We got the warm pretzels with gourmet mustard. It was frozen pretzels they microwaved with Honey mustard. They were still cool in the middle and a little stale. + +Maybe it was just an off night or something, I'll probably give it another shot.",review,SRsofHYNavGfAuDtIJ_n2Q,0,0,0 +NXsw4z0AtaILgS4-UxSWUg,2009-09-26,hWMsdIfX662k1b0ZSUKbLw,5,"Hole-in-the-Rock is a cave-like natural rock formation sculpted into the top of a sandstone butte in Phoenix's beautiful Papago Park. It's one of the most powerful scenic views in our city, and is the perfect place to showcase its exquisite landscape. Just a short hike up the butte and you'll find yourself in the amazing chamber sculpted over millions of years of wind and water erosion. + +At sunset there are few locations that can rival its awesomeness. The hole faces south, giving a wonderful view over south Phoenix all the way to South Mountain. + +Hole-in-the-Rock is truly one of the greatest attractions in our city and everyone would be blessed to experience it at least once. + +No fee to enter. Bring a camera!",review,LMqKXdbwYdCqCCF64QbVkA,3,2,0 +zmjWXerSZlB0eRLxrKevYQ,2011-05-15,5E9Q7R_vcAAcup3sdbip6g,4,"This place has decent, prompt sandwiches, and I'll take it any day over every other sandwich chain in the Valley.",review,sMgt2JAQ85nz59Woe0IAtw,0,0,0 +uU70AmVxV_OOgkumhUpu-g,2011-06-29,7fRjOosRauMeC2FVE39L-Q,3,"I may have to disagree with the majority of reviews of this restaurant. + +We came here after my parents played a round of golf. With their round they got two free steak dinner, which they raved about... not sure if it was more on the fact that they were tasty or that they were free, which today can be just as exciting. + +I ordered the Coconut Shrimp with Sweet Potato Fries, and although this is a large plate of fried concoctions, it was delicious! I could not ask for a more crispy, summer-y meal. + +There were some problems with the service, we had a dirty glass and a bad glass of wine. But they were very helpful in recognizing their fault and fixing the problem. + +There was karaoke playing the night we were there, which was interesting, but not the creme of the crop participants if you catch my drift. + +So if you are a golfer and looking for a great place to go after your round, stop by.",review,ZZaPkWkk9NVTzNECzUTTag,0,2,0 +CZBYYCb4xBwNlSIYNc6Eiw,2011-11-07,8sgxXIKV_t5VzNcmFcU3Qw,5,"Flatiron Mesa is one of my favorite hikes in the Phoenix area. Like other reviewers have stated, once you've gotten used to Squaw and Camelback, give this one a try. It'll kick your ass. It's about a 2600' climb in elevation, so you're doing more like 2.5 Camelbacks. You'll be scrambling over boulders most of the way up since there really aren't switchbacks. I'd say give yourself about 5 hours to go up and down. It's inside Lost Dutchman State Park so you will need to pay an entry fee. + +My one recommendation besides the obvious ones (being fit, pack food and water) is to bring some light gloves. Since you're climbing up and down on all those boulders your hands will probably get a little scratched up. + +Don't feed the wildlife.",review,34gJ_KlP3RM6jotNT6TcDQ,1,4,1 +Oz1w_3Ck8lalmtxPcQMOIA,2008-06-25,chnK3AbSFMZ5qCr5H3adDg,4,"Being a total Asian bobaface in a generally boba-deficient state, I adore this joint. The chocolate mint smoothie is always on my mind if I'm in the Tempe area or passing through on my way north. I dig my boba firm and chewy, so I always ask for the drink to be made extra icy to chill the little pelotas to ideal suppleness. Eba has a pretty large menu and will gladly do flavor combinations. They use the proper plastic seal on the tops of the cups so you can shake the living daylights out of the drink (as one should). + +Also, Eba has free wi-fi and is close to the airport; it's our favorite pre-flight stop to do a final check of email.",review,rTMsw1YYYQhzrXX9ovtLJw,4,5,2 +3oZcTGb_oDHGwZFiP-7kxQ,2012-12-31,e4igIkKyhP60FsxRGCUjFQ,4,"My fiance and I eat at Chelsea's about once a month. We love the chicken nachitos. Don't be fooled by the name; they are enormous. There is nothing ""ito"" about them. They come generously topped with fresh shredded chicken, silky melted white cheese, chunky guacamole, and sour cream. That appetizer is accompanied by a fantastic red salsa. Yum. + +Another of our favorite entrees is the swordfish tacos. The fish is always tender and cooked to perfection. I love the homemade tortillas and kale salad too. + +The service is always impeccable. They are quick to refill bevs and ask how we are doing.",review,8C-2oT1Tjiv6ewIUCksRpA,0,0,0 +nSCLWYT0irr4WSAYihvwHQ,2011-07-15,YAi44VuskGKPPs-Ua8_I4A,5,"I've been going to Lake Pleasant Dentistry for 2-3 years now and Dr. Sharon Bader is hands-down the best dentist I've ever had. I've traditionally had bad experiences with dentists and am always wary of any dental procedure, but I've never felt more comfortable than with Dr. Bader. + +She is very accommodating, puts you at ease, explains all the options and does GREAT work and will stand behind it. She did a pretty complex crown for me when the tooth was borderline whether it could be saved and it worked out great. I wouldn't hesitate to recommend this practice to anyone.",review,XTYX5B23tXxKZUAz3pOi1g,0,0,0 +FI4ns6iR4ZrhoaYjITf-Mg,2011-09-13,K-HZAVyZ-m-RO1gUQd3PaA,5,"What happened to this place? The food was good and seemed to have passionate folks who worked there. + +What a shame! I think many were only just discovering it.",review,ryjqXdp68i2I9JPOpX9URw,1,1,0 +NCM64MnD1NCtBfJzgBIZKQ,2010-03-15,nMr9qXtf8Kb5JGQ79zBSyA,4,"I have used The Parking Spot twice now, and am a registered card carrying member...lol. I have coworkers who use one of the other economy places across the street, but they don't get covered parking and I don't remember them being offered a complimentary news paper on entry and nice cool water when leaving. I get a government discount with ID and you can usually find a coupon online. Not to mention the prompt pick up. They are behind my vehicle ready for me and my luggage even before I am out of my car. There have been times when we wait for a few more people before we go to the airport, but never more than 10 or so min. I love not having to weave my way through the airport construction or get lost or delayed trying to park at the airport. +When getting picked up the most I have had to wait was about 20 min. And as I was about ready to call, they showed up. Don't loose your ticket. I have seen others who have and it makes it really tough. You can pretty much expect to be the drivers last drop off, unless you remember where it is or see your car as others are getting dropped off. + +The entrance is just W. of 40th St. and can only be accessed when heading W. bound on Washington due to the light rail. But the website has some good directions as well.",review,usQTOj7LQ9v0Fl98gRa3Iw,1,1,0 +efirwxiGfXc9avcO6c86qA,2012-02-25,Xo90ReVlApKXchqM-hmr8g,5,"Pleasant, courteous, low prices and your clothes are ready the next day! What more could you ask for!",review,ldYjw0QuCpUpeanIfdFecA,0,0,0 +dAJC97pUsxa1SucwFQE07A,2010-04-07,cJj6img2V3NofgtSmm9LAA,4,"I've been to this theatre a fair share, but this time I went for the UFC 111 Georges St. Pierre vs. Dan Hardy. Who knew one could watch UFC at the friggin movie theatre?!?! They also show boxing fights. + +At first, I was SO hesitant, I even walked back from DSW to ask if I could get my money back if I decided against going. Yes, as long as it's before the fight. It was $20, yeah kind of steep, but I thoroughly enjoyed it and I will go back when it's a big anticipated fight with a fighter I like. + +But, come on, Georges fighting on a large screen!?!?!",review,ZKs7NR45Fi27wcIoAilEMQ,3,3,1 +xIdyiVoX5woL8iKHYKoiWw,2010-09-17,fpb28HGGrE_yT234vzWwfQ,5,"It's pretty awesome here! I was traveling in Phoenix for work and had to get my raw food fix (I eat a raw diet at home and as much as I can while traveling) and this was excellent! The portions were large and the price was good. The same type of food in places like Chicago are much more expensive. I got the raw taco's for lunch and the blueberry fields salad to-go. They were both great! I also had an appetizer but that ended up being too much food so I packed it, too. The location is actually fairly close to the airport (10 min drive) and so it will be my preferred place to go when I'm in Phoenix.",review,iw14LAmDOesphvxtPVKZFQ,1,2,0 +VsrvWdZL2993olnW3z8R3A,2010-08-19,BZuMZZQxcKlxlAS8pD-FbA,4,"Five Guys is good eats. We've been eating at this location frequently (perhaps too frequently!) since it opened. + +Honestly, I don't think the food here is any fresher than In & Out Burger, but I like the selection of toppings (can you say, ""fresh jalapenos!"") and the great selection of sodas. + +The peanuts are a nice touch to get you warmed up for the Main Event while you wait. + +I personally think it's a little over-the-top to decorate the place in nothing but rave reviews (WE GET IT ALREADY!!), but the cool music makes up for the lack of ambience. + +Since the Zagat announcement earlier this week, it's been mobbed. Try to avoid peak hours, unless you want to wait for a table. + +Five Guys is definitely pricier than In & Out, but I think the selection of ingredients justifies the premium. + +3 tips: + +-Our family of 4 (2 adults, 2 kids under 10) can make do with one order of fries, though the orders have gotten smaller than when they first opened. + +-Ditto for the burgers. Don't let the moniker ""Little Cheeseburger"" fool you. I got the regular burger...once. But the ""Little"" one is perfectly sufficient for me, especially after I load up on toppings. + +-Can't decide between the regular fries and the tasty Cajun fries? Ask for a 'half-half' order and ""POOF!"", you'll get it! + +Enjoy! + +UPDATE: Gotta drop 'em to 4 stars. The last several visits, the fries have been soggy. Once they were even opaque in the center --- not cooked! Ask for them EXTRA CRISPY!!",review,NRBhz5ptfd_GNb0dArTggQ,0,1,0 +R0TyGazD5a0Wc7QkIAUTJQ,2009-12-28,JWdWLSE1CYNJ4cF1TSRyHw,5,"Went here for the first time a few weeks ago and it was some of the best BBQ I've had in Arizona. + +The service was great as well! The manager stopped by a few times as well as our waiter to make sure everything was good. + +*****UPDATE***** +Looks like they went out of business. Haven't been open for two weeks now.....",review,XLO0gE99ur2fv7VmPBJb3g,0,0,0 +NLVcGseUhgQdABs1mIYk8g,2011-08-11,z3JC3wZkHdw2oyyVfw-JwQ,2,"They must have had a slammed lunch as I came in around 1:30 ( by the time I found my way back from the old station) and for a new place the counters were dirty. +I hate when the counter help is eating in the dining room, I feel like I am inconveniencing them. The vegetarian choices are limited and the Pho was good for 8 bucks. I have eaten Pho at another place in Mesa and enjoyed it more. +I won't run back to this one but if someone else was paying and wouldn't cave to other suggestions I would not die of it either.",review,WLTK-AW2ejX1dJVgfCi0RA,0,0,0 +G9LwkTSdKOyOGqd5BbuIkA,2009-04-16,G6YUVoYwRI1sQ6zjWuiFXw,4,"I went for lunch with my mother-in-law, she had the veggie fajitas, and I had a chicken burro with green enchilada sauce. we both enjoyed our meals.",review,yJihBbisa05Yz6FUQtzE1w,1,1,1 +bQ1s5pqX_UVWVQ-k4e9rAg,2010-10-04,v6h1q3YNe3aR-x3Yt0DXmw,5,"I went in at 8 on a Thursday night, and the place was pretty empty except for a family of 4 eating. The layout is a little strange, it looks like you should order at the big window with the kitchen behind it, but you actually order in the back right corner of the restaurant. The girl who took my order was very friendly and made my fat ass feel welcome there, which is pretty rare these days. She suggested I do the slider plate, which I did with a side of green chili mac and cheese and cornbread. It took about 10 minutes for my order to come out, which is probably a good sign that they were at least spending some time cooking something back there. The sliders were awesome, all the meat was very moist and full of smoky flavor, my favorite out of the three was definitely the pulled pork. The green chili mac and cheese was also very good, which was somewhat surprising to me. I was expecting Stouffer's with pickled jalapenos stirred in, but it was far from that. For being the end of the night, it was very fresh and cheesy. The only part of the meal that wasn't great was the cornbread, but I don't think you can really do much to cornbread to make it wow you anyway. I definitely like this better than Honey Bears, and it doesn't even compare to the BBQ joke Famous Dave's. When I have tailgate this year, Andrew's will definitely be my go to place for everything. Also, my meal only ran me about $8.50 and it was very filling and worth every penny.",review,D5I9x6Uun4-N37vCm30Mzg,0,1,0 +IMGW6y8wHQCfr_6k-YXg_A,2011-07-14,EDxwfkAZnYJSHSLMnc6FiQ,5,"Service is always great, and the waiters are plesant and nice to have serve you. This is one of my favorite breweries to come too. They have a good selection of beer that is made in house, and you can also get a growler of any type to take home (or home made root beer, which is also amazing) I have never had anything less than a great meal in the around 60 times I have ate here.",review,0im6WIvEj7MWfJSLCuZYaQ,0,0,0 +xYIFrDywauczSt_wX6s-cA,2012-09-28,2lw14kNEFhSpiyaxJGgS-w,1,"Everything about this company sucks. Walmart treats their customers and employees horribly, I mean HORRIBLY! They destroy the communities in which they sit. I'm done, never shopping here again, I don't care how cheap something might be, there is a high cost to low prices afterall...",review,iGtZCZEuow7pn6F7L1XYyA,1,0,0 +-wwJIaO7-diyEqxGwZKVuQ,2011-02-01,8XD0BW-aU7MNj1sPUUZCuQ,4,"Sub Factory is one of the better sub shops in Tempe - They have been around forever and have a reputation of using the highest quality, freshest ingredients. They may need to give this location a ""make-over"" soon though... it's getting a little tired. (FYI - their secret weapon is their bread)",review,90a6z--_CUrl84aCzZyPsg,2,2,1 +cp39VURFby4A6u9m2It8jg,2010-04-04,m1a8UsK4JqeHo2qsEzrcCg,3,"Someone already commented on the large Cow mural, I was not going to because it might just be me, but I have heard a few comments about it now. Yea, really odd choice, and kind of uncomfortable to be eating a burger and having Elsa the Cow, with very sad eyes, staring at you while your biting into one of her relatives. Other then that, I feel that they did a good job on the decor. Really nice in fact. +Now I ordered the Zin Burger, and it was very good. I mean as I was eating it, it was as good as any burger that I have had. As good as Gallo Blanco, and Hula's. Very juicy, flavorful, I liked the bun. It was a 5 star until I stopped eating it. Yep, then it lost a star. How? After I was done, my mouth turned into the Salton Sea. Holy crap, easy on the sodium chef!!! Way too much salt. Now I know what salt does, but overkill. I actually tasted salt for the next hour. You had me with everything else, just don' t want to feel that I just sucked on a pretzel. + +Only other complaint is the pricing. Like everyone else on here, I think the pricing is all wrong. Especially if your going solo. I mean as a single diner I have to order a basket of fries? I thought Delux was stupid for doing so, why make the same bad move. I also saw most people sharing a burger. If thats not a sign, when customers have to get creative on how to eat at your place without breaking the bank, take a good hard look at how you might make your customers more happy. +Look at it this way Fox team. + Zin Burger 10.00 + Basket fries 5.00 + Draft Beer 5.50 + Second draft beer because + my mouth is a salt shaker 5.50 + Desert (are you kidding, I'm + out of money). + 25.50 + tax 2.25 + Total 27.75 + Wow, I am back in NYC at these prices!!!",review,PV5Lv_xl3DDAcAchFJCbXQ,0,0,1 +IceZ4BtTz76eppjNWm-c6A,2010-08-16,8evfajVpQcxcXftzKyHoPw,2,"My experience was on a random Saturday afternoon, and I think that might skew my opinion a bit. + +During my visit we were the only guests dining. There was one guy at the bar that was friends with the employees. + +The atmosphere is mellow. And I can imagine it being a pretty happening place on weekend evenings. + +The prices were a bit high for what we ate. I had a pita sandwich and it was just under $10. The lunch prices are a bit steep. + +The food was okay, but nothing I'd go back time and time again for.",review,YTw0hz4Y9z29xtd4axMcNQ,0,1,0 +IM-9thHqQbBK5tX5MfTzBQ,2009-11-20,-J7wig9QxiQkzpY71HPmBw,2,"Came here one morning a couple of weeks ago. Had about 50 minutes alloted before my Mayo clinic appointment, so I thought a short stack of banana-nut pancakes would get me in and out fast. I thought wrong. Staff was friendly enough, but it took at least 10 minutes for the server to finally take my order. I asked for banana-nut pancakes, but instead of the pancake syrup (not pure maple), I wanted a side of the blueberry compote that usually comes w/ the blueberry pancakes. Would this be OK? Server said yes. The short stack (2 cakes) arrived 15 minutes later, but instead of banana-nut pancakes, these were blueberries, delivered by another server. My server came by to ask if I needed anything else, heard my complaint, and rushed back to the kitchen to correct it. I was assured that it would only take 10 minutes to get a fresh batch out, but another 15 minutes went by before the correct order arrived. Keep in mind, it's already been at least 40 minutes since I sat down. I only had 10 minutes to spare- not enough to savor these delicious cakes. The blueberry compote ended up containing corn syrup, the ingredient I was trying to avoid by not using the pancake syrup, but it's hard for me to resist blueberry compote, so if I must suffer... + +I most likely will visit Chompie's again the next time I'm out and about and craving for pancakes, but only if I have 90 minutes or more to spare...",review,0bNXP9quoJEgyVZu9ipGgQ,1,5,4 +bqktAhYfTOXp8lNwghu1BQ,2010-09-09,-kmc5YSYJDEvFO9GiRQEQA,3,"Jack in the Box, this one in particular, is busiest from 10pm-2am. It definitely a ""better when your drunk"" kind of place, or at least I think it is from the number of drunk patrons I see eating there. + +The food? Well, it's JitB, what do you expect? You got the 99 cent for 2 tacos deal, which is a must add for any meal. You also have breakfast served all day. This means you can get a Extreme Sausage Sandwhich, 2 Tacos, and a Chicken Fajita Pita in the same meal. That's some good eatin'. Please note that nothing about the Chicken Fajita Pita is remotely close to an actual fajita. + +This location specializes in making your food NOT look like it does in the picture. The picture may show a big fluffy bun with a juicy burger, however your burger will probably look like someone stepped on it then ran it over with their car. It doesn't change the taste, tho. Still tastes exactly like you would expect something to taste from JitB. I mean, it's good food and a good value. By ""good"" food, I of course mean greasy and unhealthy. That is the definition of good food though, right?",review,wapnZrMhivxyy0djBaHoeg,2,1,2 +hfl62LX14YqNpG0g0Tj6_Q,2012-04-12,K6h2ZtsisF5g5gUpMapHUg,5,"Great little restaurant. The staff is super friendly, and their happy hour specials are pretty amazing. I got thePanko crusted Tipalia which was a little dry, but my girlfriend's stuffed mahi mahi was delicious. The Horchata bread pudding was really good too. They have a nice patio where most of the customers sit, I will be bringing my dog with me next time. + +It is a bit expensive, so be prepared to drop some money, but it's definitely worth checking out.",review,Q6D3W-1jaZhui6yiHSl4Cw,1,3,0 +yW4XOMS4biiSXOwkbZ6wpA,2012-06-01,ok6x_NB3KNDGITLR3bWOLw,5,The best bar in town.,review,sdUc66dpqO_tP3Lhof23tQ,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2011-05-11,AhS7wfTI9GxjMsYvQmVbLg,4,"LOVE LOVE LOVE the ambience outside! Love the fact the restaurant is in a old style bungalow and the patio is lit with string lights. + +I went there for the first time last night 15min before close and I dont know if they usually have music or not..but if they don't, they need it. + +Food was great but nothing to die for.",review,0D0ypakiUxrN5c7gCUy_Xg,0,0,0 +UKgSs_SJzW9fu4CwhIV1yA,2011-04-30,3SdwdPIEFdXc2BSZN6VgTQ,4,"I stayed at the Firesky Resort before taking my MCAT and have mixed feelings about my stay. Now granted, I had extremely high anxiety at the time so perhaps I didn't get to see the full glory of this place, but in my opinion it is somewhat overrated. For the price I paid, I expected more. + +The resort layout is more like a fantastically designed apartment complex. In fact, I am pretty sure that it was an apartment complex prior to being a resort. With that said, however, the lobby and grounds are absolutely phenomenal. They are stylish, comfortable, and luxurious without being ostentatious. + +My room was a little bit less impressive though. It had most of the amenities that I expected, but nothing extra. The artwork wasn't overly impressive and the linens were just average. Also, the TV was small. It certainly wasn't nearly as glorious as the common areas of the resort. + +The deck/balcony area was very nice though and I was able to study in the fresh air without any distractions. + +If you are wanting to stay at a reasonably nice hotel that is close to everything, the Firesky fits the bill. However, don't expect to be wowed by your room. It is an average room. Nothing less, nothing more.",review,tNpfNLjxS34wmsroFemoNg,0,2,0 +YkFBelUWinftlweJzuiIAw,2009-05-13,HlIDj7Xj-rtJ6wELW9WfQw,5,I' m psycho for this place. The sell cupcakes now! (Ollie Cake) and have longer hours of operations I believe ( I want to say until 7?) NOM NOM NOM.,review,aJfAJPoynVj-CBLGaXE22A,0,1,1 +VD8a_B589J_NlCirS8QA0Q,2012-01-24,1JwcUYZhkL5Ewpt_yzg3Kg,3,Ordered spanikopita and Greek salad. Spanny was doughy and Greek salad lacked a kick. Unlike any Greek I'd had before. Not going back.,review,X5xjcV1yQsBHIQ_nMphXfQ,0,0,0 +x65HKjRIzTptg_cWSHwZ7w,2008-09-03,-TnRg4vFH0HB7izhjega9A,5,"Lived in house for 9 years and just thought was time to replace the carpeting, had used some of those ""$99 room"" services over the years for routine cleaning, met Ray Odom, Owner of Hydro-Pro, and gave them a crack at cleaning the carpets before I replaced them. I was Amazed at results, by the time they were done the carpets looked brand new, took their time and did incredibally throrugh job. Great service at reasonable price-well worth it. My carpet cleaner from now on.",review,9ojTY6akKarpt1t0YeFJXg,0,0,0 +zMa6YoEekpABg1HZnnTZdg,2011-01-29,okur9hFc00Qdp-RGiYevfw,4,"This just in: Houstons is on steroids! Yup, it's true. + +If you're familiar with Houston's you're familiar with Hillstone. But, Hillstone is better in my opinion. Why? + +-Wonderful outside ""first come first served"" patio seating with fireplaces +-Indoor/Outdoor space for the bar area +-A sushi bar (and shockingly really good sushi. We had the mango salmon roll - delicious). +-No need to worry about Valet... lots of parking. +-Great service. + +What hasn't changed is the menu and the crowd. Still your 40+ real estate suits - or should I say jeans + a blazer - and all the cougary women that come along with these men... Not knocking it, simply the truth. + +Overall, a great place for a good American meal, people watching or to take your parents. This isn't a place you'll be racing to take your friends who just came into town... it's a chain restaurant. There are way too many locally owned gems in the Valley to spend too much time here.",review,PNS9z4aFDbfhpIsHCfNvNg,1,2,3 +s87D-mtAuJ8BluKgYYsXGw,2011-07-28,WbSuagIlBL8t51KhPe31-g,5,"Let me start by saying that I love tacos. I eat lots of tacos. When I get hungry one of the first things to cross my mind is tacos. That said, I love El Nopalito for their tacos. I'm pretty picky about my tacos. I don't really like dumb-ass flour tortillas, dry tacos, unseasoned meat in a taco, taco bell is not tacos, the list goes on. I prefer authentic Mexican street tacos. + +That being said, El Nopalito is the one place in town I feel like I am getting the most authentic street taco that I have been able to find in Phoenix. The only reason I am not here more often is the commute is a bit much as I live in the East Valley. However, if I am anywhere near the area it is almost mandatory to stop and have at least a taco or two. I recommend trying all of the tacos though my favourite has to be the cabeza (it sounds creepy but is buttery and delicious). + +It does help if you speak Spanish as it will make ordering and asking any questions you may have easier.",review,x7Sr0kL1h_I9wQqLRF8ZIg,0,1,1 +ogMsiOU3QA2671pFUvexUA,2009-05-15,vr8VGvLewoq0xkrit2SwvQ,4,"Update: As of Feb 2010 this place closed because the owners got in a bitch fight. + +I live right next door to this place at Shade. I go often enough, great happy hour. Prices are pretty cheap ($5ish for the various happy hour sushi rolls), service is pretty fast, and it's great that it's locally owned and not a chain restaurant. + +Only ""negative"" comment is it' is a bit small inside, hard to accommodate large groups of more than 8, and even that is pushing it if they are busy. If you can go before everyone gets off work, it's pretty quiet in there, and fun to sit at the sushi bar as well.",review,tjbp15UbZ0yziMsZEqwabw,1,2,0 +UU-kkvyX6pyrl_4fK6Qpvg,2012-10-03,5aWP_2EYbIZmtzXCNX2oig,4,"What a cool store! the wife and I spent 3 hours poking around here, ended up ordering their ""cat mapper"" recliner (my new throne!). I don't hunt anymore and rarely have time to fish, but I still love this store!",review,EcgpGtxB5916NPqvXwMcjQ,0,0,1 +TqHTtjPANCBKGsjGBjDoQQ,2009-04-07,PtGXlsu91_otLUudUmM7kg,3,"I tried a few different kinds of pizza and they were all okay. A few people had told me that they made ""incredible"" pizzas, but I didn't really think so...I'd say they were pretty good pizzas. What I liked were the fresh tasting vegetables which topped some of the pizzas. The cheese was a bit disappointing, especially since I don't think you can really go wrong with cheese...it just lacked flavor. + +All in all, I probably wouldn't go back...it just really wasn't all that impressive.",review,_1OTipGDKze-M0XaYh-kXQ,2,2,2 +n4mfUCDXHsg0GH50HzJpug,2008-04-02,q_xk3xZ1JKwwFZk8HJd4MA,4,"Even though I don't drink beer, I've been going to Rock Bottom since I lived in San Diego. And have always had a decent experience. + +I stopped in for lunch. I got the Mac and cheese with NO chicken , it comes with a salad. +Huge portions, Cold plate and chilled fork for the salad was a nice touch. The Mac and cheese was piping hot and really good. (see pics) + +Two people could have shared the mac and cheese, I couldn't finish it, even though I wanted to. + +Friendly waitress, refilled my drink and brought my check in a timely manner.",review,UsULgP4bKA8RMzs8dQzcsA,2,3,1 +YRWuNpZHoSpy0zPpc7TzqQ,2012-05-30,nz7rsUgMK6X497NlsNUugg,4,"Daaaaaaaaaaaaaaaaaaaaaang, their AC feels good here.",review,TPqXQMBaRdn7wYUP_diphQ,0,1,0 +b5cEoKR8iQliq-yT2_O0LQ,2012-03-16,yeJSQXhPe7OK5JjZ8V_QtQ,3,"Visited recently for the first time. Enjoyed happy hour appetizers on the patio. Cool place for outdoor dining, the waterfall added a nice background. They offer smoking and non-smoking on separate sides of the patio. Of course you know that if anyone is smoking, the entire area gets to ""enjoy"" the smoke. Being a non-smoker, I would appreciate an true non-smoking area but being outdoors was too compelling to pass on this beautiful day. Another small observation - the tables were too low for the chairs causing you to lean over to eat and the chairs were not comfortable at all. + +We ordered chicken quesadilla & crab cake appetizer. The quesadilla was made w/ green chiles and cheese, served w/ green & red salsa. Didn't care for the red salsa but the green was pretty good, rather mild. A side of sour cream was all that was missing here. Crab cakes were ok, nothing special. Served w/ a nice side salad it made a very good small meal. A side of some kind of orange sauce (chipotle?) for the crab cakes that seemed really HOT to me - skip this next time please. + +Just based on the outdoor atmosphere alone, I would definitely come back again.",review,Ud43DdZ6PibSYEtsi18F4A,0,1,0 +jGldmslgIegQNM5kvb851Q,2011-01-03,VZA-Ghv3smBenqURzNiCyw,4,"This was a great place to go with the parents for Thanksgiving. Dinner was served family style and it was a ton of food! Started with a plate of 3 different bruschetta appetizers that were excellent. Then had a choice of 2 salads, 2 meats - we had turkey that was served with a focaccia dressing and the tilapia served with a side of some of the best creamed spinach I ever had - then 2 side dishes in addition - mashed sweet potatoes and mashed garlic potatoes that were just okay - 2 pasta dishes - we had the signature Rigatoni D and the angel hair with pomodoro sauce/sausage - and 2 desserts! + +It is a little pricey, but for the amount of food they serve and all the leftovers, I think it's worth it. The best way to go here is with a group and do the family style menu. + +I've been to other Maggiano's in Chicago and to me, they're all pretty much the same - good and plentiful food and fast friendly service.",review,jx104chvz7NbkVytXldUGg,2,2,1 +XWvht_1ZLdK7EHJ3jo4q0g,2012-06-29,pHmpxF9npF7LMIkhGfJ8lA,4,"Their quinoa veggie burger is the best veggie burger I've had in a long time. It's not dry, it's flavorful and has texture to it. This is a place where I consciously choose to make room for dessert. The bread pudding is amazing, it's light, it's fluffy, it's sweet but not *just* sweet. You know how some desserts just seem to have only one taste setting and they might as well have brought you a huge pile of sugar? The souffle is delicious as well. Nice atmosphere, relaxed but classy.",review,h3TnHCqFga0VgPO390PjKA,0,1,0 +2ceeU8e3nZjaPfGmLwh4kg,2011-03-27,xq1RRWPcda-7oZWihqQU6A,4,"Its haunted! Isn't that enough to get everyone to go check out Casey Moore's? Who doesn't like Casper?! + +Such a great compromise... you are still right around Mill Ave and if you are an ASU student this is quite convenient. However, Casey's is not part of the typical 'Mill Ave' meat-market scene. Always is a whole slew of people from old timers, to angstful hipster, to stoic gothic, to average joe. + +Drinks are reasonably price with a great late night happy hour. Food is fantastic... the oysters really live up to the name 'Casey Moore's Oyster House'... besides they are supposed to be an aphrodisiac so bring your dates ;) + +Lots of outdoor seating (picnic benches) so you can cram people at tables. The interior is as divey as you are going to get in Tempe ... so I'll take it. + +Only downside is unreliable service.. its been quite hit or miss as far as the bartenders go... but the bouncers/ID checkers are undoubtedly hilarious everytime!",review,mqyH3CqjMufsm5FccDrjLA,1,2,1 +53YGfwmbW73JhFiemNeyzQ,2012-08-31,Vv0FeEOn7AMmw7iKutmnAw,3,"Sometimes I really wish I could live in Scottsdale. I met up with two girlfriends there and we had a great time! This visit was a solid 3-4. We went in to take advantage of their happy hour (if you don't the prices seem wayyyy to steep for me). Anyway, if you take advantage of their happy hour you must sit either in the outside patio or the lounge. Now the outdoor patio was beautiful! Prettiest outdoor seating I have seen ever. But not when it is 104 out. (and there are no misters). Why did we sit outside do you ask? Because the bar area (which is tiny) filled up super fast (duh. its yummy!) The indoor ambiance is beautiful. (a little dark) The most awesome lights ever are in there. The service was good and the location is nice (right next to the free parking too!) + +I tried the featured white wine, and whatever it was (sorry I forgot) was good! My friend tried the sangria, but I was not a fan. Weird flavor compared to most sangrias that I can't describe. + + Now onto the food. People who raved about the flatbread pizzas...I have no idea what you are talking about. I had the margharita and it was just not good. Soggy and flavorless. The hummus was very yummy. Needed more pita with it. Now onto the star of the show: the bruschetta. The vine ripe tomato is yummy. The apple caponata is just as yummier, and the prosciutto and fig was also excellent! Ohhhh so yummy! This is the place to get bruscetta and wine after a long day.",review,gQMuqiadl4WXnB58fljphw,0,0,0 +rr13jM6SUmfPPPGHHMHCgQ,2010-05-23,HeHeLUUaJwwkJgPSWLXowQ,2,"I will agree with the others that it is a cheap sushi option. But I wasn't impressed. The sashimi was precut, tasteless and soggy (like it was just defrosted). Also, I saw that they had pre-made rolls on the back counter. Come on, how hard is it to make a fresh roll? + +I would have given them 1 star but we did get free miso and salad and I didn't get sick from the fish. We got what we paid for.",review,jMyy4KU2SuJ6FhWtgLqRwQ,0,1,0 +AsSCv0q_BWqIe3mX2JqsOQ,2012-11-17,Y3uVyBwuoydPOBuT72gYaw,5,This place is heavenly!!! I have dreams about it on a regular basis. The cookies are so fresh and you can choose two different kinds and two different ice cream flavors. TASTY!,review,khPlizt3ava1xkbtAxHQnw,1,1,0 +Uty42E_VZV_iGMYiY_WB5w,2011-02-18,BkZOHEAVnwTTdbBhcl3VUw,2,"Stopped by one night late, only one guy working, probably the manager/owner based on him being on the phone and looking like he wanted to gtfo dodge attitude and not wearing anything quiznos related like most workers do... + +Food... subpar... it's a chain... it's hard to fuck up... but he did. There was no care in the making of the sub... I pretty much watched him throw it together, run it through the toaster tossed some lettuce on and wrap it up... + +I had chips in my hand... wanted a meal... he didn't ask and just rang it up w/o the drink... I asked what size cup to grab and he said ""oh you wanted a drink?"" Of course I wanted a fucking drink... I just stared at him like wtf man? Told him to keep his drink cause he'd have to re run my card... + +srsly it's a chain that gives you all the stuff and training to make a sandwich like the other 1000's of quiznos around the country... and you can't do it. If you hate customer service don't buy a franchise sandwich shop. + +Two stars... lucky it isn't one. I'm out",review,8CNEh7fSbLwDuAKhLjDPKQ,1,2,1 +-3WVw1TNQbPBzaKCaQQ1AQ,2012-12-15,huPT-KNdfDmrSFNW1yYQhA,4,"On a Friday night restaurant was busy, but the service was top drawer. Food was very good and we will be back. Prices reasonable.",review,x_XnF95v-Bwl3_n11FALoA,0,0,0 +ytcm2DXuJWKPTqCtr6uJ4A,2011-07-12,8UGbKHQseX7Q1Bt02vPCww,5,Yum best donuts in Phoenix.,review,FdxUhQ2orufg_eMgWAoH6Q,0,0,0 +JRzrqJmsQ5AZ4bMQLUfyHg,2012-02-13,2JZqlmRzuAWuSZ6IwUHudQ,5,"Alright we are going to say that this place is Awesome! The service is outstanding and the food wonderful! We came here for Breakfast on Sunday Morning . They were very busy ,but, we did not have to wait too long at all. Our server Colleen was great! She greeted us right away and brought our drinks very quickly. The food was very good and just love their Potatoes. The menu is fantastic! Lots to choose from. We like the decor and lots of parking in the lot. Nice Place and we will be back!",review,kffxYQVQsEpF1DVlQlcGCg,4,3,2 +6oRAC4uyJCsJl1X0WZpVSA,2010-04-20,MDtjJub6L_2dgkSxF1lipA,5,"This place is a gem. The food is amazing. It's cheap. The service is good. My favorite part? The place never changes. I can walk through the door and Ali already knows my order. The Chicken Shawarma special comes with their hand-made pita - so soft and delicious. The chicken is seasoned perfectly and comes with a yummy little dollop of garlic sauce. I've never found better hummus in my life. I've had it all around town, in New York, in L.A. (ick...L.A. *shudder*). SO good! The iced tea has a hint of rose water. OH and the gyro? Hands down, the best in town. + +Did I mention they have a market attached? Talk about the best price on spices in town! The spices come in little plastic sealed pillows, so get some spice jars from Ikea and stock up! + +I couldn't get through this without mentioning the lamb tongue. I am no connoisseur of organ meats, but this sandwich is like the most tender lamb you've ever had in your life. Shut up and try it. + +The only sad part about Haji's is that they close early. Usually 8pm on a week-night, but totally worth getting to-go orders if you can swing in on your way home from work!",review,YEVokKX9G9PgHJ_gK4gO_g,1,1,0 +fDZzCjlxaA4OOmnFO-i0vw,2012-02-22,Cl4HwB-TN7N3rp-bTPv58A,4,"I went during the week with my two young children. We met a friend who also has a young child. Nice use of space. We didn't watch television, but it does have a few flat panel TVs that would be nice during football season on a weekend. The space was child friendly - nice menu although they didn't offer crayons to kids, which they said they were in the process of incorporating. + +Menu was huge and offered lots of traditional breakfast combinations. I had the waffle with eggs and sausage. I ordered the pigs in a blanket for my children. It is prepared with sausage that was fantastic. The perfect amount of spice and wrapped in pancakes that were also really good. My waffle was wonderful. Really light and fluffy but with the perfect amount of crunch on the outside. My friend ordered the French Toast, which was coated in captain crunch cereal (this sounds odd, but it was incredibly good and the bacon served with it balanced out the sweetness) and served with her choice of bacon. She ordered the applewood smoked bacon. It was excellent. They have five different types of bacon, including one infused with jalapeno, which I will try next time. + +The service was a bit slow, but understandable given it was the first week of opening. The staff was very friendly and attentive. I will definitely be back and would recommend to anyone for a nice neighborhood breakfast spot!",review,bl6qTJt0UkFoHtLIm2PdPQ,0,1,0 +cgNIBHS2mLdbTRiodAT6EQ,2010-11-14,iaJ-DFL3je6oxcutTxjzkw,4,"The food is fresh here. The quality and taste is consistent. The service is nice and polite even though a couple of the servers don't speak much English. The building is a trip - the outside looks like a doublewide trailer on a foundation, but the inside has a homey Northeastern Mexico look. On the other hand, even though the guacamole was fresh, it's a little bright and lacks strong taste, and the red hot sauce is too watery(it's still got that kick). Overall, if you're not itchin over substandard guacamole and marginally inflated prices for the location then it's a great place to chow. I give it four stars because the food is good, fresh, fast and the service is friendly and quick.",review,QXwoSi_A4OpOBsyc1AdIgQ,1,2,0 +vvA3fbps4F9nGlAEYKk_sA,2007-03-07,JDZNoAax4s1DAAbOK1JLJg,4,"Avanti! Come in! + +This place is cool, I did get a mild mobster vibe, but that's alright with me. And I think the food is fantastico. Really, really good homemade pastas and an extensive wine list filled with great choices. If you're uncertain which wine would go best with your meal, don't hesitate to ask because the servers are pretty friendly and knowledgeable. + +Try the crab and shrimp cakes for an appetizer and the tortellini portifino for dinner- both are delish. + +If you're a dessert lover, get either the cream brulee or the tiramisu.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,3,0 +pAHUC05ceak48e745i6G4g,2012-08-11,bz-bfn67R8awWNI_2OYQIA,5,"We decided to eat here on a whim. My husband got the burger brûlée and I got the beach house burger. Both were fantastic. The buns were perfect and we both agreed these were the best burgers we had had in a really long time. The sweet potato tater tots and French fries were also amazing. For $27 it fed our family of five. I'm definitely going back. Friendly service, casual atmosphere, and clean. Thumbs up all the way!",review,vly1KuEvBdRdQRVd2xY7og,1,0,0 +Xk3inJcuBGLhavUcdlINZA,2012-11-18,N8iWLV7rcfbfD_ahNzrkeQ,3,"We arrived on time however our table was not ready. Offered a place in the bar but was told we cannot order for 30 minutes?! +Somewhat bizarre thing to be told. Had a total of eight dishes, some were fantastic, others mediocre. Despite the fact that they are the hot new thing, a customer should never be told that they can't order for 30 minutes. That exudes arrogance. Cocktails pretty good. Might give them another chance.",review,I62z57QNcj86cXxgSrHcOA,0,0,0 +flMu0Tz5RsaMzr6K8kg1EA,2012-06-21,LahW2hidQK4L15RN9RPUPw,5,"I have lived steps away from this place for years and a few months ago, my boyfriend suggested I give it a try. Since I'm very picky with mexican food places, I had doubts, but boy was I wrong! All I can say is wow!!! This place is amazingly delicious. I thought I would never find a place who served authentic Mexican tacos and out of the blue I found it in a hole in the wall strip mall and just steps from my house! This can be a good thing, but also a dangerous thing because I am trying to lose weight. + + +This place is so good. I got two tacos and I know I will be going back again and again.",review,Foe_x9I0OhY1hp62BtFSgQ,0,0,0 +YKOvlBNkF4KpUP9q7x862w,2011-04-17,PikrkILIWSQiT5Oyi3MZ1w,3,"A bit surprised at the high prices but figured that the ""trendy factor in old town"" and the atmosphere was the reason because the teeny portions of the food and the quality is just GOOD, like the Good egg, not great, not bad, just good. +No happy hour? +And Too dark inside. +Lots of pretty wait staff. +My first suggestion would be to fire grill the mahi tacos and not batter them, they were not that flavorful. The side dishes of street corn and some potato chorizo thing were very good. I wanted to try the guac, but 12 bucks for an avacado with some garlic and cilantro? How about trying to make a good ceviche? + +My hubby and i thought that Rubios rocks in comparison, we love the shrimp tacos and the pablano and portobello tacos.",review,8AT9WSphWIIC2k8lh__izA,1,3,0 +yewofYCtFEMQ6BKd5zwQUA,2011-02-13,u4ZlL_d-sZbs2uitBvQLUw,4,"This particular Wal-Mart has gone a major renovation. It is really clean store and well kept. Unlike most Wal-Marts, they have put a Subway inside instead of a McDonalds. This is now Super Wal-Mart, so it has even groceries. The interior of this store looks much like a Target, but has the Wal-Mart prices. You can practically find everything here except alcohol. It is right next to the 101 Freeway off Chaparral Exit, so its easy to find. Most Wal-Marts are notorious for long waits, but there is self-checkout as well, which speeds up the process.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,1,0 +ke3RFq3mHEAoJE_kkRNhiQ,2012-08-04,T70lUpub5MgNq6Ap-iulRA,1,"Bad experience...Terrible service, terrible food. + +First of all, I was organizing a Happy Hour and Dinner for a retirement party that we had on Friday, August 3rd, 2012. Reading the fine print on the website it did say that happy hour prices were in the bar area, although because it was a party of 30 we could not fit in that area. One of the attendees called the restaurant and spoke with the Manager which he confirmed that we were going to have happy hour prices. It turns out when we got to the restaurant they thought we were another party for 40 people that booked the spot for happy hour, but the attendee that spoke with the Manager was misinformed and they only gave us one round of happy hour prices. + +Second of all, our server was awful. There were a couple of servers that actually waited on us because there was a table of 10 people. Anyways, she took wrong orders and did not listen to our needs and was rushed, rushed, rushed. Then a new person came in late on our table, and she was not even served when she saw her. We had to track her down. I am sorry but the amount of restaurants that I have been to, this was the worst service ever. I mean I had servers that actually new who was new at the table and took their order once they arrived. + +I ordered full size of fried green tomatoes, 1/2 order of fried okra, and a plate of sweet potato fries. The server gave me my fried green tomatoes, but gave me full size of fried okra and the sweet potato fries was horrible. So I had the server take my sweet potato fries because it was awful. The server took it away without even asking me if I wanted another batch. I don't cook much, but I probably can fry those tomatoes alot better than the restaurant. I told the server I ordered 1/2 size of fried okra, and she said ok and brought it back to the kitchen then she brought the same dish back and said that she will just charge me for the 1/2 size order. + +And lastly, when the server gave us the bill, it was all separate checks and did not even do that right. The server was putting stuff on the bill that did not even belong on the check. + +So needless to say...I AM NOT COMING BACK TO THIS RESTAURANT AGAIN.",review,-ZVmHZcdn_OH52QWwSMimA,0,1,0 +ssSeK9MYRCUjoabppekwoA,2010-01-23,-sNSP8_vSbyjDxeWu9oO6w,2,"My wife and I were downtown with some friends, and decided to check this place out. I ordered a pasta lunch, and chose Penne Alla Campagna and another penne with tomatoes and Mozzarella. Meh, it was just okay. The food was just okay, kind of bland and a bit overpriced. I did snag a small slice of pepperoni pizza from one of the kids at our table that was actually the best part of my meal. Would I go back, nope no sir",review,gcyEUr4DXcbjnGRAWFtfAQ,0,0,0 +b3mfNkad2uxdlKLrS3hDCg,2009-04-26,ygTUOgZn4aXyDMToOq6c6Q,5,"One of my favorite places to go with the kids for lunch. Bring a small amount of $ - grab yourself a table under the trees and enjoy the afternoon away while your kids play within eyesight. The entire ""patio"" is really a large, fenced grassy, tree filled area with 2 volleyball courts, multiple gathering areas, ping pong, horse shoes, jumbo checkers and even another fenced in area full of sand and toys for the kids.",review,vNFxfUDTPgZRgV3EHnkmJg,1,1,1 +Shl6PtJERnowSJSC4IHbYQ,2012-06-09,CCMftMLcRYi6uQWSsNnelA,4,"Best pizza Ive had in Arizona hands down. My best friend lives in AZ, my friends and I stopped by this place and enjoyed surprisingly wonderful tasting pizza a must try. When I went here they were playing underground hip-hop which I am a fan of. It made it a great atmosphere to enjoy my food. I highly recommend this place I live in California and this place still comes to mind. Great for college students and the fam bam.",review,0FBHDK_lXbAdSRopnOwyVQ,1,0,0 +Y-9dJvw-J2d9QKfuL7mKgA,2011-03-11,Avr8PwwX8YFTUMlhPpxwUg,3,"The banana pecan french toast was great - order a 1/2 order and split it with someone else for ""breakfast desert""! + +Rest of the food was definitely better than ok, but dropped my review to 3 stars because restrooms weren't clean and had no hand soap -- where are employees washing their hands???",review,8sPCbR5LCbCVOrQaAFR_QA,0,0,0 +f7Xe9Xzoafhi_EY4xwEpSw,2010-05-02,ptaV9AQw_78TlKIohuwe1w,4,"I had my first meal at Miele's last night, and was pleasantly surprised. I purchased a Groupon to the restaurant a month or so ago, and am glad that I did because otherwise may not have noticed this cute place amongst it's neighbors in the strip mall. + +We started with the brochette, and spent the next 10 minutes raving about how amazing it was. The tomatoes were crisp and fresh, the chopped garlic was very complimentary, and the oil had a fantastic flavor. Definitely a good choice. For dinner I had the spaghetti and meatballs and my boy had the chicken toscana. Both had a very authentic Italian flavor that accompanies food made with care. The meatballs were everything I was craving...a little spicy and filled with flavor. My portion left enough for leftovers, but Brent ate his entire meal. We both left with a full belly and intentions to return again soon. + +I have no complaints about the food (delicious!), but docked the restaurant a star for two reasons: + +1. The lights are way too bright. While I appreciate that the restaurant is more casual than some Italian joints I've been to, a dimmer switch on the overhead lights could do wonders for the atmosphere! + +2. One of my favorite treats at Italian restaurants is bread dipped in tasty olive oil with fresh ground pepper and Parmesan cheese. The bread is delicious, but the prepackaged butter that accompanied it didn't impress me. I also would have liked freshly ground Parmesan on my spaghetti. + +We noticed a lot of pizzas being picked up for takeout, and both thought the bar looked like a cute little place to come have a drink and a bite sometime. + +Highly recommended and a great way to support a local business owner in Tempe!",review,AMTubqx4AT8ZnrFvvJng2w,0,0,0 +PoRYjYUSjmeWM1WLsx_45w,2007-10-23,6b5sifuzXWw0cMd_8c9how,3,"Uh-oh. Where am I? + +The view from atop the mountain is superb. The city can be seen in all directions. Look, there's Downtown 1 and Downtown 2. And a bunch of houses under construction. And look at that sky. Wowza. + +Ok, so stopping to enjoy the view is one thing. Stopping to figure out where the hell you are is another. ""Don't worry,"" I told my friend. ""This city is laid out in a grid. If anything, we can walk down the other side of the mountain and cut back across on the street."" Oh, little did I know. + +Let me give you the back story. I've been to South Mountain twice. The first time was Christmas Eve 2006 when hardly a soul could be found. I met a friend there and we blazed our own trail. He always had his jeep in sight, so no harm in getting turned around. I trusted him to be my guide. + +The second and last time I hiked South Mountain was in February. My best friend flew in to Phoenix for the weekend (for my birthday) and since the weather was so great (in comparison to Detroit), she wanted to be out in the sun as much as possible. No problem. I knew where we could go for a good hike. Little did I know we'd get lost. + +We parked at the 24th St. entrance and picked our path, the Mormon Trail. We were on our way to discovering religion, we joked, passing by several other hikers. When we reached a recognizable summit, we stopped to appreciate the view... and then ponder our location. Should we turn around and go back the way we came? Were we still on the Mormon Trail? Where were the markers, the loops, the signs from God? We looked at each other, each of us having a take-no-prisoners personality when it comes to conquering great piles of rock. ""Onward!"" we shouted, punching the air with our fists. + +A little while later, we were once again stopped, our eye squinting against the retiring sun. I wouldn't call us ""lost,"" as this point in time, but that's only because I'm too stubborn to admit such an error. ""Let's ask somebody,"" I suggested. So, the next hiker dude that passed by, we stopped to ask him, ""Will this trail loop back around?"" ""Where do you want to go?"" he asked. That's when I realized we had tied our tennis shoes tight only to march into a rocky labyrinth. I told him where we parked and he said it was a good 2 hour hike back to our car, yet about another mile or two to the 48th St. entrance. Oh, no problem, I thought, since the city was laid out like a grid. Little did I know there are exceptions to that. + +We pressed on, thanking our impromptu guide friend. We hiked and hiked and hiked, passing by fellow hikers and mountain bikers. Finally, the trail opened up to flat land. We were close, or so we thought. When we reached the end of the trail, there was no parking lot and no street connecting us to where we needed to go. Instead, there was a long gravel road that weaved itself through a golf course. W.T.F. + +We set out to walk the long gravel road until we hit Baseline, in which we were determined to cut back Westward and find my car, the only way we had of getting anywhere. The sun was setting. We had no time to waste. + +Having hiked about 15 miles already, our feet were heavy, like cinder blocks. But, we continued on. ""Let's hitch a ride,"" I suggested. People were gathering in their wonderful Ford pick-up trucks and jeeps. Hikers are friendly, I thought; somebody was bound to accept our plea for help. We opted to just do this ourselves. + +That's when a car slowed down. ""Ugh, creep,"" I thought. Instead, it was our helpful hiker friend from the summit. He asked if we needed a ride. My best friend and I exchanged glances. I thought, ""We can take him."" After a 70-second long pause, we accepted. She hopped in back and I rode shot gun, leaving my seat-belt off and the door unlocked, in case of a speedy getaway. + +We chit chatted on the drive down the road, which lead to another road, and then another and another, until we finally touched Baseline. Where the hell were we? That's when it hit us. We would have been walking another 7 miles on foot back to my car. All these windy, disjointed roads. Damn golf course. Damn South Mountain. Damn unmarked trails. It should change its name to the Moron Trail, for we just blazed it enthusiastically. + +The kind hiker man dropped us off at my car and drove away. With a sigh large enough to blanket the skyline, we unlocked my car, got inside and drove away - away from South Mountain, nature's beast and practical joker. + +We counted the miles and the minutes it would have taken us to get back to my car. Another hour, at least. The sun would have set by then and we would have missed our dinner engagement. Lucky for us, we stopped the right hiker friend at the right moment; otherwise, I may never have made it home to write this review.",review,APLIPfq1Rf8QyhHHk2uAyA,4,5,4 +-sC66z4SO3tR7nFCjfQwuQ,2012-05-28,-cDLdPqZyJwslg500NjwOA,5,Love this place. Great Happy Hour.,review,Dngg6R24eGnEry89Tf926A,0,1,0 +3OF6i6LTzRXpwNgodv7aeQ,2012-09-26,t7bWOojFVqeOtb-RFnxmAA,3,"I ordered a cappuccino, my typical order at a new place and it was very good with a pretty heart design on top which made me smile. The espresso was perfect and did not require any sweetener. I also got a blueberry muffin which wasn't very good, perhaps it was low fat or something but I am very picky about pastries anyway. + +My biggest problem with this place is the fact that they do not have a bathroom. Coffee makes me have to pee and when I discovered this and had to walk all the way to the baby gap because the place next door with a bathroom wasn't open yet requiring me to pack up my computer and leave my drink and food unattended, it was a bit undesirable. I know it's a mall type area but it still surprised me for a drink/food place. It does not set the tone for a place to spend a lot of time which may be their intention. Also, I love John Mayer but they played his same songs over and over again. Perhaps mixing it up or putting on a pandora station would be better? + +The staff was nice and they have free WiFi. + +I will return for the espresso but get it to go.",review,1wIeo3yUIZ7g7OWdzQ0vfA,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2010-11-27,omFFL7IBSlHGMTwkijA-BQ,4,"HARISSA SPICED FRIES. Need I say more? The wine list is exceptional, and they are open late, both of which are mandatory if you're a boozy creature of the night like me. + +Our server was quite attentive without being intrusive. Our wine glasses were never dry, and she instinctively sensed that it would be a three bottle sort of night and suggested additional bottles to go with our meal. + +The food was of a generous proportion, so bear this in mind when ordering. My Fez Salad was fresh, crisp, and the combination of the dressing and goat cheese hit the spot. Our hummus platter was heaven-sent, and had just the right amount of garlic. The lamb kisra was also exceptional, and immediately devoured. The aforementioned Harissa fries were fiery and I often dream of them. No, really. If Fez was located in Tucson, I would gain at least ten pounds from just eating harissa fries every day. Harissa, for those of you who are unfamiliar, is a North African chili-based spice that has a lovely smoky quality. I highly recommend it! + +Well, Fez. I'm in Phoenix next weekend. Prepare yourself for round two.",review,hCVIyb8z0vzGXxtn6V1b8Q,0,0,0 +iWlaj4R-2BTsWR7PwL90BQ,2012-02-04,0bVf_Zx9qzKeOLu_CkrkvQ,1,Nasty workers and over priced trash,review,HE8AOm5mO_sgap7_coM0RQ,0,0,1 +Cp5_NSJFNgylD5SUdmT8nQ,2011-03-24,0lF4gUlgdFot80CAQdzd7w,4,"Went there to photograph a concert. Great crowd and fun quirky locals. Loved the dive bar ambience without being trashy/dirty. The lighting for the show wasn't great but the sound was good. Great beers, too. Get the 99Shillings.",review,Rg4gzsz3w00vRlIOXcGUIA,0,0,0 +m9i6aX4nmuTwqO5PjeLNZg,2012-10-02,eVkl8le195A8e1As21bWJg,5,Dr. Jones was very friendly and understanding!,review,oSqsvEHLxowiQiWNqsd7zA,0,0,0 +wNsmt1hF1uv3YvbwXZMAoQ,2012-06-18,K-wADqFPVlhBRz0P16AuCg,2,"The noise makes it almost impossible to talk. The staff looks like the customers or the customers are better dressed. Staff is wrinkled, sunglasses on the back of their head, it's hard to know who you supposed to ask for help. Once you know, they are responsive, friendly and willing to please. + +The food is fair, dressings, sauced are too watered down. The food is minimal in terms of amounts for the money. It is a favorite among the neighborhood but these are now the adults whom hung out at the old Monastery behind Whitney & Murphy funeral home. I am beginning to think my fellow Az peeps have no idea what good casual food is about. The service in AZ is terrible, all of customer service in businesses here is terrible, restaurants and retail. +watch out for the Valets, they drive customers cars too fast around the parking lot, here and Arcadia Tavern! + + +I am entitle to my opinion since I have worked my way through school as a waitress/bartender , valet service manager and service consultant. + +Deb",review,Myya0TP7RshcuHm9HO4dPw,1,1,0 +hqVbmZNLTdR2y7G7oJu9vg,2011-11-11,E8uqj0y_ShvN7cp9qvXeHg,4,"Surprised by unexpected North Phoenix location. Attentive but not bothersome service. Antipasto platter shared among 3 people plenty for all. The Chianti was splendid! The entre arrived piping hot, very impressive. The food was delicious. Lovely intimate dining. Reccommend. + Only down side was it became so dim, had a hard time reading menu. A bit more uplighting, please.",review,8iCo1fXYvFPAPbL3cYBXlw,0,0,0 +rRSrENv9j_rLnehMlQEukQ,2012-04-27,cr9gHsAoIxPmelFl8CpMfA,5,"Great library...take your canned food to donate all during APRIL and they wave off your fines- GREAT cause, GREAT deal and now fine free!",review,nM3vfxr6fcnN_nXdzwbVCw,2,2,1 +V1nEpIRmEa1768oj_tuxeQ,2012-11-16,MLtzUWelRFIBJ3cV5JUeKA,3,"Ok here goes. I'll start with the bad and finish positive. As far as Pizza goes, which is what we went for, I was not that impressed. I must say I'm more of a NY style, by the slice pizza kind of guy. So the pizza did not hit the spot. Maybe a little too fancy for my palette. (You can take a boy out of the ghetto, but you can't take the ghetto out of the boy, so for me simple food is always better.) Obviously, there are enough people who like gourmet pizza as this place has amazing reviews, so I'm just one simple man. + +The obnoxious fat chick sitting right behind me proclaimed to her friend, ""I'm no longer investing time in men who aren't available!"" Put down the pizza and grab a dry salad and shut up!! That's not really the restaurants fault though but I did have to endure that convo through the duration of my meal. + +Our server was very nice however seemed very rushed and at times we had to wait for refills on water and for the check. The atmosphere is very romantic outside with light trees and live music. They even turned on one of the heaters on the patio for the lil lady. We has the Crepe with Nutella chocolate powdered sugar and ice cream and it was very very good. + +Bottom line. I'd be willing to come here again and try something other than pizza.",review,wpzKJORxvWVfXL7AdKjhvg,1,1,1 +vtQOervVVTXjhvSZQiZ6PA,2008-06-17,NbP-kkjLbqHnlRzSPNQ-aw,4,"I've never actually eaten in the restaurant - Swaddee is one of those places I used to pick up and take home when I lived in Chandler. So, first their take-out process: they've never botched an order, food has been ready within the time frame given each and every time, and I'm almost always in and out in a flash. The food: I've sampled various veggie and seafood options, and they've all been equally delicious. Since I've never been inside for more than a few minutes, I can't really vouch for the atmosphere or the service, but I stand by the food. A little pricier, perhaps, than the Thai Basil down the street, but totally worth it.",review,zHH2Iz49wCZYYDLBTv0YOg,2,5,1 +gf3hwItAL3ssLLa1rh8QIg,2009-07-23,TrYFsKx0SUj_NmZiyv4wFA,5,"I have been meaning to stop in but keep driving on by. I am SO GLAD that I stopped. I was pleased the moment I walked in. The store is well lit and cheery, the books line the wall making you feel like you're walking into a oasis of knowledge. I found 10 copies of the book I was looking for (I needed 10 copies) and the owner said he will order me copies of two books he didn't have. Also, he offered his community room for my book club! So nice, very friendly, definitely the kind of place we want to encourage.",review,9OpjxLRhiV9YImoMVHlxLQ,2,1,0 +7SO_rX1F6rQEl-5s3wZxgQ,2012-12-20,FqfWt22uSDgca4dRK4PIgw,5,"The best gluten free pizza!! Absolutely loved the avacado pizza. So delicious. The wait staff was great, very friendly and invited us to a wine tasting while we waited. Parking is limited, but certainly not an issue to complain about.",review,SW5RpjVtyMhxdzuA8dOdYA,0,0,0 +XvQDPOu2oTdNPx8kiiTYow,2012-04-06,ZvsS9z4uuL2yc7jtAyk-zA,1,"The portions are too small, the plasticware just reminds me of Jack In The Box, the serving tray is right from a mall food court, and the menu selection is drastically reduced. You can't really enjoy conversation or relax at lunch listening to the kitchen scream out order numbers to the customers. The flavor mixing softdrink machine is fun, but gimmicky. The food quality and flavor are the same for the most part, but you do leave wanting more... + +I won't be returning to this location.",review,qJb1Z2tSTBu89IAE1mPx6A,0,3,0 +aWFzJ5kGhEH5Dve_D8u-0Q,2010-03-26,5CtSOHNUgJ57bkBQZeX5tg,5,"I went in to check out the new drop of denim that the boys at The Phoenicia Association got in and left with a new pair of Naked and Famous Raw Selvedge Denim, Weird Guy cut; and a shirt by Wrath Arcane with the sickest little pocket that drops from your breast to your waist (perfect for my lighter and cigs) with a little zipper at the bottom. Spent a nice chunk of dough but nothing crazy for such a nice combo I can wear to dinner with the parents or to Old Town/Downtown on a Saturday night.",review,d1o01mHoY7Yv5hzDZE9VBg,1,1,1 +qjmCVYkwP-HDa35jwYucbQ,2010-10-25,MPm_rk8IdBeOenP-kOvu3A,4,"Food is good. Service is pretty good. + +Its a restaurant that definitely reminds you of LA, as it is very loud in there. + +Definitely will go back.",review,jAVKFq7iAE_IQYdRT--hiA,0,0,0 +R7YlKfLpoFDAJQB9hBcQJA,2011-07-25,anzXqMA6LR_YngiQJBrTgw,5,The best food I have found the area and the price is right. You get so much food you have to take home. Get there early to get a good seat fills up for lunch. Priced just right.,review,fjD-bmdoT5PrdV0ryZ8IKg,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2012-09-30,vM7LSLjxyH1RQ2xwYrXHIg,5,I love breweries and I love Four Peaks. One of e best breweries in Az. We came here on a Friday night but had no trouble getting a table. This place is huge and packed but still room to move around. We ordered the Hopshot IPA which is a great beer! I've been here a few time and always had a good experience. I can't wait till the pumpkin porter coming Oct 1st!!!,review,-kIvLyWpY17aRa0vPp-RmA,0,2,1 +MEOC6ng0jPhQOX_BzEzf_w,2010-01-28,bVm6S0tZ-XJ_WcsbNbWNSw,1,"Cold, under done chips. If a Mexican food restaurant can not get this staple right how can I expect them to get much more right. I arrived for a party that my autocross group was having. Every table had chips and salsa on it. Sombreros were used as the server platters. Senor I don't think this even meets health code. + +Dinner was served Buffet Style, one of the dishes was called ""fandito."" I can't think of a less inspired dish. It was simple pasta with some Mexican flavors thrown it, a dish that your mother would make if she had leftovers from Mexican Italian nights. + +I like really like Mexican food, however I left this place hungry as I did not even want to try any of the dishes other than the salad.",review,M6oU3OBf_E6gqlfkLGlStQ,0,0,0 +L8STRioAgDx-_FRFuuUU2Q,2011-04-19,riaWMmMx6n1IFAjfcgIzoA,3,"Better than rubio's or filaberto's by a long shot open late and has a drive through. When i walked in it was packed and i noticed how cheap the beer and Margarita's were. Wait... I don't remember having ever seen a hole-in-the wall Mexican spot serving booze before (wonder if they sell it via drive through). The menu is like a Jewish Torah being that it has a 100,000 words and is very hard to read. The tacos and burritos also come w/ a side of toquitos that is buried under chiuaua cheese and guacamole. Shrimp and fish taco's are made on tortilla's are made in house. Food is super cheap and tasty. Its too bad that all their locations are in the middle of nowhere.",review,qTJw91zBn696dxp8RpiZfA,0,1,0 +WwFsYHahQIMzuilmOAfR8g,2011-02-09,yQq5eGvBj90w4O8NwvbCRg,4,"Accidently discovered this place because of the Chinese New Year/Vietnamese Tet Festival of this year.. very nice surprise that the buns here are bigger and have more filling than the buns at Lee Lee's Market. I know, I know, there are probably many more places in AZ that sells these, but I honestly don't know of any other places that sell these other than Mekong Plaza (here) and Lee Lee's in Chandler. + +It's around $1.30-1.40 a bun and they seem very fresh because the times that I've came by, someone is preparing and cooking them in large ovens in the back. Very nice that it is located by the Asian market and shops. They have a frequent buyer card you can pick up in the front (for every $100 you spend, you get $10 off your next bakery purchase). This is gonna be in use for me since I can see myself coming back countless times!! + +P.S. Please change your outdoor business sign to ""AA Wholesome Bakery"". Since it says ""Mekong Bakery"" on the outside, it confuses people.",review,uNbB1uR4EBhmygUc3IfPAw,1,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2009-10-03,4-RIg_uFHneQch6Pvv45TA,4,"It was a unique dining experience. The staff were incredibly nice. They are the MOST professional staff in the entire Valley!!! They remembered our family on our subsequent returns. + +This is a fun place for foodies and out of town guests with adventuresome palettes. Depending on your family this can be a fun place for family outings. They were very accommodating and made a dish my 5 year old enjoyed!",review,VCZ42oA9yRKB93DQI5cHuA,1,1,1 +oMw1SaH_zEbOOufTsGuk6w,2007-12-27,-z05Jx-_6dgvcnNQCz7o1w,4,"""Tanked Fish"" is one of my favorite places in the neighborhood and we frequent it often. + +Rolls are of a great quality and there are some rather unusual and pleasantly different ones there. Price is very reasonable. And drinks selection, if not overly excessive, is ""Cool"". Place is not riddled with kids, like many other places are, and you can actually kick back and have a conversation there. +One one of the weekday evenings they have this special thing where you can request your musical choice from this rather large list. Its real neat. What else is neat - their happy hour on Wednesday (I am not sure what day exactly to be honest. Call them if you really want to know.), when drinks, starters and most rolls are 1/2! This really makes a huge difference. + +I gave this place 4 starts. This is pretty much as high as it goes for me for this. + +""I like"" +Eugene",review,vWCksqJJfYjGGdD-yb9qGA,1,3,0 +Zpw07SfLkkzqKeRk07GWhw,2012-09-18,Vro4FDX0QmghJO4YA8uXmQ,5,"Great service by Angela and their Doc +First time I don't have to wear reading glasses as they switched me to a mono contact +Very enjoyable experience and very quick +Had a issue with a contact and they track a replacement done right away +Definitely recommend",review,-pN7vtnFxLOY-BEyWU2UHA,0,0,1 +VpSiOW1PapVmZyyRBK_GBQ,2007-10-13,XnRtNrKAisgJQIxb9dQT7g,4,"I was surprised here for my birthday and it is a very romantic, old-school, traditional great service kind of place. The low lighting and small dining rooms make for a great ambiance. + +The dual menus, one french-ish and one southwestern-ish are sort of on odd pair, but it is Scottsdale. The appetizer, shrimp ""beinets"" were simply breaded, fried and very greasy while the lavender dipping sauce and salad that came along with were much more appealing. Both our entrees were wonderful and perfectly cooked - so well in fact, the sides were essentially meaningless, even though I remember them as fairly good also. So if you find yourself here, keep the Ahi Tuna and the Wild Boar in mind. The wine menu is extensive and filled with surprises. + +The wait staff were classic in service, yet easily engaged in conversation and very friendly. They only acted snobby for the people who expected it, we on the other hand provided the Diamondbacks/Rockies scores and had a great time! We ended the night with great Grand Marnier birthday souffles. + +Great place, people and food - we would go back.",review,9D-RAOVRTnALk-GFvhbJcw,3,3,0 +AqbgC7Gul5Es1rRzGNLDFA,2009-03-03,C0_XvWKIc6WU7Br95pvcNw,3,"I am not happy with Sprinkles, but I can't really subtract stars because I make better cupcakes than they do. Let me first start with the location. It's very stupid. Very easy to miss and it blends in with everything else. No personality. I guess when you are so famous though, you don't need ""personality"" to get people in. Second of all, I hate Scottsdale. Again, I can't subtract stars for this, it doesn't make sense. + +As for the cupcakes, they are really only okay. I will set aside my disdain for chains and judge solely on the quality of the cupcakes. I ordered a red velvet and a peanut butter chocolate. The red velvet was very plain. It lacked the subtle cocoa flavor and the lovely tangy flavor of the buttermilk that should be peeking through the copious amounts of red food coloring. It wasn't. I just tasted red and cake. Not really that great. To top it all off, my cupcake crown popped off the second I picked it up. This pissed me off. It essentially ruined my first bite. At least I could still eat it. The cream cheese frosting was so-so. I really like a big bold cream cheese flavor to pair with a red velvet, and this was barely tangy. It was super sweet, slightly grainy and it got that crust on the top from sitting out too long. The red velvet overall was kind of meh. + +The peanut butter chocolate was definitely not what I had hoped for. The cake was very dense and peanut buttery, but lacking in sugar. It was studded throughout with chocolate chips. The frosting was chocolate, and it's texture was nice and smooth. It was covered in chocolate jimmies, I just love those. This cupcake was okay. The lack of sweetness in the cake made me wished it was saltier. A saltier cake paired with the delightfully sweet frosting would have made for a much more grown-up and sophisticated cupcake. It was just okay as is. + +Sprinkles, I will not be back. I don't like you. Good luck in all you do though. I would never wish bad things on a cupcake bakery.",review,W_QXYA7A0IhMrvbckz7eVg,1,2,2 +bZivzFTkkjNtUBSuMhoCtg,2009-06-10,YCsB_ur8R6fQK9G5cH_0wQ,2,"""trendy, loud-music, ok-sushi!"" - 2/5 + +When we lived right across the street from the Sushi Brokers, J and I used to go there at least once a month for its happy hour. We probably had been there at least 8 times with friends and family. I have to say that the quality was good for the start but went downhill since then. The price was right if you go during the happy hour. Other time, kinda expensive with the quality and service. It was a seen-to-be-seen place with ok-quality sushi.",review,vC-9ROCPBhWuXtMcBNeDiQ,0,0,0 +yGmdo1ENajB98iryHGoWFw,2009-01-17,SJRnBlTtP_lasrYoKPhk2g,3,"I had a good time at Monkey Pants, we celebrated a buddy leaving for basic training. I will have to go back again. And the one o'clock shirtless shot was awesome. Sorry I don't have more to report because I was drunk and don't remember much else, so that tells you it must be good.",review,RNSGaQSkC56tGPfKt9lHjQ,1,2,1 +MuIXnv7Oq7X3-4aEsp9dDA,2011-08-27,Lqoidcyku8NoT-XOkxzNXw,5,"My wife and I finally tried CPH and were greatly surprised by everything. The food, as expected, was superior along with the professionalism of the staff. The ambiance too was well set as the place could hold large parties very comfortably. +We began the nigth with a bottle of wine, the original chopped salad alons with the rock shrimp. All were exceptional! As out main courses, my wife orded the sea scallops and I ordered the short ribs. (Peter of Cowboy Ciao's must miss this guy.) Both dinners were cooked to perfection and the staff never left alone. For dessert, we had coffee and the evening's special, the donut holes with three dipping sauces. All were fantastic. The wife and I don't usually rate places with five stars, but this place actually gets how food and service are meant to be as one. Can't wait until we head back.",review,sUNkXg8-KFtCMQDV6zRzQg,0,0,0 +HiTpXu1BNE2DlvjyqpObjw,2009-12-28,YftIN3drgo7Lzt1c4ODcrw,5,"Some might say that Phoenix is a city without much culture. That may be true in some aspect, however we have to remember that Phoenix is a young large city compared to other cities that lie within the United States. So you can say that this city is a work in progress on catching up with everyone's culture expectations. + +The Japanese Friendship Garden in downtown Phoenix is only seven years old. Very new to the park scene for this metro, I have to say that it looks great and will only keep getting better in time. That will happen if people stop saying there is no culture in Phoenix and become a part of the evolving city by visiting places such as this. The admission and or donations will fund a more desired park for all. + +The grounds of the garden are very beautiful with a nice flowing stream, several waterfalls, coy fish, and many species of plants. I can't wait to go back in the next several years to see it become a wonderful masterpiece.",review,ceKoQX0_IJZ6Lr9-9LGcbA,6,9,0 +YxLiLBNTm4cOg7OlKKLmVw,2009-08-12,xgTAQuozPxLAS7-8s5KpLg,2,"just wanted to chime in & say that this place is so vegetarian-UN-friendly it's not even funny. I was dragged here with family & ended up ordering a chile relleno, which was just about the only meatless item on the menu, short of a fucking cheese crisp. + +it wasn't terrible, but this place is really just all kinds of lame. service was mediocre, food was mediocre. with as many awesome & authentic mexican restaurants as there are in the valley, there's no reason on earth to come back, except MAYBE to try a mango margarita.",review,EXBOkXWPNYZk5HFBg5NbTQ,0,0,0 +1OA1jo0GlK9sf68f00w8ZQ,2011-10-10,wd_d9GcxZ3D6dJwNYLH_yg,4,"My husband's former employer said when we get to Phoenix we must go to In-N-Out. He said the last time he had one there was a line out the door. Not much of a beef burger person, we stumbled upon this burger joint as we left Ikea and decided to try it. The emergency granola bar I keep in my purse wasn't working. + +There was no line out the door, who wants to wait in line anyway. We both ordered a cheeseburger (no tomato, no special sauce, no ketchup for me). It arrived in a card board container which was kinda cute and everything was hot and fresh. My burger has a thick slice of onion and several crispy lettuce leaves. The burger itself was just okay, but the freshness of the toppings won me over. My husband's had a big slice of tomato. + +Did In-N-Out live up to the hype from his former employer? Not exactly, but it came pretty close.",review,fIvDzLhs-cXbTKWp8P3eIA,0,1,1 +sCv1wUWJhFmQEMw3A4lwXQ,2011-10-11,3gBIEXa78N4tpzGj3NFNzw,3,"Not bad, I usually leave pretty happy and full.",review,YPmQEVEFZ0EwiDNJFVo2Sg,0,0,0 +QAUDLYNxhHGdUn5YP7au_w,2012-10-02,Uu9F8_mkuxCq6YVCwLCsaQ,4,"= = = = = = CLOSED = = = = = = + +China Star here has now closed. :-(",review,ikm0UCahtK34LbLCEw4YTw,0,1,0 +gpyWGG0U-yqnVKru6y8fNQ,2011-10-21,PWv4dlKRiHu7tlFzDA7G4A,5,"This is a very special medical practice with customer service and attention to detail that you hardly ever see in a doctor's office anymore. I started seeing Dr. Ross for Osteopathic Manipulation after having a few back surgeries. He has given me tremendous relief and I highly recommend OMT rather than chiropractic treatment since it works with the tissue and muscles as well as the bones. Anyways, He listens and takes time to treat your WHOLE body unlike most doctors that have one hand on the door knob as they speak to you. + +I saw a Naturopath in the past and saw Cheryl the P.A. for the first time the other day. She took a lot of time with me, going through my blood work line by line. I was so please that she suggested supplements and knew about things that I learned from the Naturopath...but actually, she knew about more supplements than the Naturopath! So I was really pleased. + +This is a great office and everyone is like family....they also treat you like you are a part of their family. They make your children feel comfortable too. There are tons of Mickey Mouse figures and videos for them to watch. The nurses have always loved on my daughter since she was a baby. They make sure that all of us have a productive appointment! I highly recommend this office.",review,ndDCHB7BGLklzzojEW4i6Q,1,1,0 +hyff2JyqQgf85MaJZslHCg,2007-12-11,YAqT_Y8UNjZQGkieq8ZHwQ,4,"I wrote a review of this place back in mid-September and gave it only 3 stars... what the fuck was I thinking? + +The food here is fucking brilliant... especially for a chain. Amazing burgers. Their Diablo Chicken pasta dish is to die for. The cornbread is actually good - I fucking hate cornbread and yet I'll scarf this shit down like it's crack. Their chips and salsas aren't that great - they'll do the job, but I'm still not convinced about them. I'm also unimpressed with the sides that come with the mains, but I don't come to this place to eat the sides. + +As I've said before, their margaritas are awesome. They'll fuck you up though, so make sure you have a ride home or else go see a movie to sober up. + +The atmosphere is low-end upscale and pretty nice and cozy - kinda dark inside and a bit generic, but generic is better than flashy, ugly and distracting. Service is upscale as well and I'm usually pretty pleased with it. They offer free valet parking for customers too which is perfect now that they charge an arm and a leg for the parking structure. + +Here's my old review for reference: + +Great margaritas to be had here... really strong and tasty. This location isn't very busy ever it seems... perhaps with Fat Tuesdays around the corner, it's just too much competition. + +It's a good place to grab a strong margarita before heading over to the movies or something. Their food doesn't inspire me to eat there, so all I've had are appetizers so far... mainly chips and salsa. Salsa sucks. + +It's also got some competition from Macayos down the street which doesn't help. I don't know if this place can stay in business much longer unless it gets busier. It could just be the times I was there though.",review,Cp-PV8rsypbO-xBrQ6KmQg,4,3,0 +cIPzndsbagQGj9U1sLqLtA,2012-07-02,wSX8FEXtUYQRkCPrAens9Q,4,"I love that Goober will deliver direct to your door!! The are affordable, convenient and include free bones with your order. + +The only reason why I do not rate them as a 5 star is that several times they have had to call me to let me know they are out of a product I ordered online.",review,focPnXD_bcIj1cDbcTbFxA,0,0,0 +vlEsxOtkCrStCb52gJhG5w,2012-04-24,IoZjPWk2Xx6HiEXZD9TAug,5,Best prices and a huge selection. I love their single bottles of beer isle where you can mix and match your own 6-pack of beer. Some of my favorite beers I can only find here.,review,5jO2RMO-MYZDWTIYzr3dSA,0,1,0 +RYZ08XAToBaN-bS5HHVEhQ,2011-04-13,ihS3vJGm-437Nd4xHJMyiw,4,"Met a group of people...great craft beer selection.. ordered Old World Salad w/House Dressing, excellent.. enough to feed 2-4 people.. +then the Murphy pizza.. applewood smoked bacon and onions w/the thin crust, wood fired. This is an awesome pizza. The rest of the group got various pizzas and loved everything! Our waitress was great, and took good care of us..",review,LXWAXIeYFIdgd2JVPF-9qA,4,4,2 +7LuKiasIyGUEo7uipN10Eg,2011-08-12,jouRCLiFuAHJQ_DQMaHx8Q,4,"First thing - I felt compelled to write a review because the Android and Ipad app both state that Mokis is closed. If you are doing a mobile Yelp for this place, it is most defiantly open. + +Second, I decided to give them a try for an early Friday dinner, about 5 in the evening. There were a few people dining in the restaurant, and quite a few people on staff for the evening. The dining room is pretty well decorated, more so than I thought it would be, giving a faux Hawaiian feel to it. Seeing some people there at that time gave me hope for a good meal. + +I asked the lady manning the counter what was good, and she took a bit of time to walk me through the menu. Emphasizing the plate lunches, I decided to try the Combo that would get me the most variety. I elected for terriyaki beef and kalua pork. I took the side of the 'potato mac' and got my meal to go. + +Arriving home, my meal sat for about 5 minutes before I had it unboxed and ready to enjoy. Considering that fact, everything was in pretty good condition. The potato mac was a bit more room temperature than cold, but that was my own doing. The rice stayed warm, the pork moist and really flavorful, and the beef sweet and tender. + +Having dined at a few places offering plate lunches in the past, the potato mac was probably what sold me as much as the meats on why I'll return. Potato mac's tend to have a pretty flat flavor, and when I find out how Hawaiian's garnish them, I will be excited to get some more flavor in them. But it was just the right amount of dry ... I've had many potato mac's that are just too wet, but this felt about perfect. + +I'll give the fish dishes a try in the future and report on those. But I really enjoyed what I experienced and well give it a second (and probably more) pass.",review,-nkYxSyYTQNIlj_D3fJGag,0,3,0 +Om3WtcK5qgwEW5-CojPMxw,2011-12-15,AX4u1XaFo6hXsK4-2YZa7A,5,"This is the old location. For current reviews, look up Karen's Kreamery Cafe'. Here is what I posted for the new location...please give it a chance. I do not know the owners, I just love supporting a good, local business... +Great ice cream, super cute store, extremely CLEAN! The ice cream is good, service is always great, and the location is fun (although a little out of the way). The prices are reasonable. I would rather support a locally owned business and pay more than McDonald's prices and less than Cold Stone prices. If you haven't been, and plan on visiting in the Summer, bring suits for the kids. There is a nice little splash area right next to a big playground. Karen's Kreamery is located in a big park/sports facility. There is also a medium sized skate park. We usually make a fun outing out it. My family loves this place!! Support local businesses!!!",review,E_1N6H102rr1YdZAakDLYg,0,0,0 +9Vu9KhK2-kBSM-FXvxXGNg,2011-09-17,O--Ov0YCveF9hl35eru6Rg,4,"I like Pei Wei, its good when I want something fast. But the main reason for my review on here today was to say HOW AMAZING the manager was at this location. + +I came in at lunch and it was VERY busy. There was a line to the door. There were some arguments about someone stealing a seat (unhappy customer, complaining because a seat was saved and they had waited in line, wanted to be comped because of it.... so dumb if you ask me. I mean just deal with it people! Its busy!) But the manager dealt with it so professionally, and when I was next in line he did not act rushed, he was very helpful, and told me that if I did not like what I ordered to just tell him and he would get me something new. I work in the restaurant business (a much higher priced place) and this manager was awesome! Good job man!",review,hE8cu6qYG474Gd2B9_qqog,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2010-03-24,-04V-J248jjwibqilfLePA,4,"Tasty standard bar food. +Great bar service. +Sweet servers (90% of the time). +Huge awesome patio. + +The cherry on top is that it is NOT on mill ave! + +Best spot to be at on a beautiful spring afternoon in Arizona. + +What else could you possibly need?",review,NsIoM2PlaL28E-jbrs4Zlw,0,0,0 +dzncF6n6MHJLXUo4_J6eig,2012-01-06,jMVxc5mZXK3MXfVUfUkIHA,5,"All around great food. True Texas brisket experience. Meat has great flavor and tasty sides add variety to the offerings. Don't forget about the sheet cake for dessert!! I'll be back. + +***Read another review on here talking about wings. They don't have wings here!! Get your reviews right people.",review,JCx3wTsBcN91i7uF1RM-aA,0,0,0 +ChmqODwuYP1ewjmWXtxtsg,2010-08-02,8aftQwExSE9ZP8csK0pehw,3,"The Nee House.......well I just wish they would get the concept of customer service! I tend to feel second rate when we go in for dinner. + +I really like the food but after 5 attempts at dining in with crappy service we have decided it is best for take out only. + +The food is pretty good and they are super quick when it come to take out. I am happy to say that when I picked up our order yesterday the girl at the front actually smiled and chatted with me while processing our order!",review,VlPalcT0hoEWwdUlEfKHwQ,1,1,0 +cjjZt2oOkk0F152RkQMfQw,2011-01-12,yVzM9GuUSSkD6NHLjqzeBQ,4,"Coach house is your favorite dive bar...this bar reminds me of almost every shit hole in the upper peninsula of Michigan. A great little spot to throw back a few beers after a rough day. +Drinks are cheap and the staff is friendly. Plenty of games to play and TV's to watch. +If you have never been I would definitely check it out.",review,Ofxlhi_HKp7myFDpwg9aIA,0,0,0 +1CNKe3H07sLu6rigOpAYsg,2011-11-23,MbBL1-CrkE-RteMYe4y7JA,3,"I have to say that I'm not a huge fan of D&B's food. Typically if I'm here it's to have a couple beers and remind my husband how good I am at ski-ball. Overall, it's a cool vibe with many different games to play. The drinks are affordable and you can't beat the location (Tempe Marketplace.)",review,sPEFql7fLp0oouFxnooGpQ,0,0,0 +Tsff0UUVgrnawjI_xd2cKg,2012-05-26,ty9eckTsSzGdjnyGFk4vPA,4,I had a serious craving for Roti. So glad I found this place. A very small menu selection but it had exactly what I wanted. The serving for $8.20 after tax is enough for 2 meals. I know where to go from now on for a great meal with leftovers. This is a noteworthy place to bring my Uncle T.J. who's a Trini when he comes to visit.,review,uj2fHfOZ8_tR5kFGl9sV0Q,0,1,0 +F3SEkW6v2LJ5y6Ldo5pPaw,2011-04-18,GU8qqwr2ufzGzsisc5VT5w,5,"This is my neighborhood Chinese Restaurant and a family staple. I personaly like the roasted / peking duck. The Shrimp Lo-Mein is good, Fast, Friendly Service, No MSG. +Lunch Specials during the week are awesome too.",review,KVYEjEFmaUd8bLJNnoj6uw,2,1,0 +xI0UZH734lJtm39DbLf-Bw,2010-01-19,zdslxeH4T2MhkDtE79RRnw,1,"This was my second visit to Arriba's and believe me, it wasn't my choice. I spent the first 26 years of my life in Southern New Mexico and I miss the food like CRAZY, especially green chile. When you walk into Arriba's it's New Mexico this and New Mexico that and the dishes are named after cities and landmarks in the state. + +When we told the waitress that in New Mexico green chile sauce doesn't have pork in it she said, ""Well, we say that but it's not *really* New Mexican"" and walked off. What?!?! + +The first time there we mentioned this to a Manager and got the same exact reaction. I also asked if I could get a side of plain green chile and was told no. Both times we were being super nice and just trying to start a friendly conversation, had these interactions been better this review wouldn't be here. + +I'm far from being a vegetarian, I don't eat pork or beef because I don't like it. Also, I didn't ask about the red chile sauce because I'm not a fan, maybe it's porkless and amazing but I can't speak for that... + +I ordered the Santa Fe Chicken salad. Iceberg lettuce, slimy greens, cooked onions and bell peppers, mushy tomatoes, half melted greasy cheese clumps and very dry chicken piled on a shell... yuck. + +If it wasn't for the delicious fresh chips, guacamole and two 99cent happy hour margaritas I would've been VERY unhappy. I definitely won't ever be back and this time I mean it.",review,AjmdjjXYHrLgFjaSd2zx-g,2,3,1 +ntN85eu27C04nwyPa8IHtw,2009-11-11,ZC4dA0KenvqDN3Ih--nwNw,3,"We went on a Sunday afternoon, the wait was 45 mins for 4 people. We waited because everyone keeps talking about it. Man, was I starving to death when we were seated. I had the ham and cheese omelet and everyone shared an order of waffle with everyone else. The omelet was good. The waffles were light and fluffy. Good but not to die for. I personally think it was over hyped. It is good breakfast food, not GREAT.",review,_PzSNcfrCjeBxSLXRoMmgQ,0,2,0 +xdwPHc25l7_roZ9Kfea13w,2009-07-11,Mzn47QcxO88k60qgXiO0Kg,1,"Sadly disappointed. I've passed Lola's an uncountable number of times and each time thought I needed to try it. I finally did tonight and was terribly disappointed. For anyone that has been to Firefly in Las Vegas there is just no comparison. The sangria was decent but nothing special and the tapas were just ""so so."" The atmosphere was busy and our service sucked, but it was a very unique and cool environment.",review,hFP7Si9jvdOUmmMesg4ghw,0,0,0 +weCbIA8mCkVw7zmxPNT5sA,2009-11-14,VIWkzqhxIvtu58u35YeLDw,4,Older restrant but very good food,review,SzpPsfGGviCt_IURJMNs4w,0,0,0 +KS2w8ychyieJbUqRa6kCHw,2009-08-18,CMe1I7gom1KiG3TuJi4pxw,4,"I LOVE this place. The marijuana theme isn't kid-friendly though, so DONT bring your kids. Just bring it home to them. + +Their subs are really tasty, the theme (for adults) is hilarious, the people are friendly, and are reasonably priced. + +Also, the potato salad is fantastic!",review,4mILqmATFktvFYWqrpRAUg,1,2,1 +Mng1FUcW-xRSdsDkowQm2Q,2008-11-14,qFPgS7gCTA2zM6vk937M8Q,5,"I used to shop her constantly when I live right across the street and I still make the drive up there, even though the prices are higher than Safeway. Why? + +-The staff rocks. Need a certain type of wine? They know where to find it. Need a spice? That's covered too. Every employee is courteous, and most importantly, SPEAKS FLUENT ENGLISH. + +-Their deli rocks my socks. Always fresh and always tasty, I've purchased more than a few dinners and have never been disappointed. + +-The ready to cook stuff is delicious too. In the mood for some kind of meat stuffed with a vegetable and/or cheese? This is the place. + +-I also loved the fresh food cooked every day right in the store. From BBQ to MASSIVE Sunday omelets, the choices are a plenty. Again, not cheap, but you certainly get your money's worth. Go early if you want the breakfast, they run out quick. + +And you can buy good beer by the bottle! Dogfish Head rocks.",review,rV-B4sIzTbnvsYZZi2Nyrw,2,2,1 +b1d8nKDgizi3K8Jw6llksw,2011-02-14,rudZ-SWNx8x9bRIgWxeihw,5,"Since moving to Arizona I have selected Fry's as my new grocer and am very happy with my choice! I immediately signed up for their VIP card and love seeing the many savings listed on the receipt after every trip. + +I am especially happy that I have moved closer to this Frys as it is open 24 hours and even when shopping in the wee hours of the morning can expect to see some nocturnal ASU students. + +Any interactions I have had with the staff have been pleasant and enjoyable.",review,rC3JBdYGn4l7opz5tSFs9g,0,2,0 +HEI4WFai9zoixD5GhCnbeg,2012-07-09,8TBgbLGmeS0OLkmohx4pIA,3,"Read all the reviews on Yelp and thought I give Chang's Chinese Buffet a try. With a 4 star rating, I was expecting 4 star quality food. Well, some of it was good, but some of it could be better. First of all the atmosphere was pretty nice. It almost felt like Cheers, where everyone knew your name. Even though we didn't know anyone there, everyone talked to one another. The T.V. in the corner drew most everyone's attention. You could tell who the regulars were. They were up front and closest to the T.V. + +Most of the food was fresh. The Shrimp was very fresh and tasty. The rice was also seasoned probably and tasted almost as good as back East Chinese food, it just wasn't brown. Orange chicken was good, but a little hard. Not as moist and juicing like I wanted. The chicken was dry. It was flavors well, but was dry inside. Seems like it was under the heating lamp too long. The sweet & sour soup was good, but I've tasted much better. The egg drop soup wasn't too good though. Spare ribs weren't bad. Also a little dry, but not as bad as the chicken. The Egg-foo-yung was not good. Hockey puck shaped or not, it was too watery and didn't taste like real Egg-foo-yung. Everything else was pretty average. For the price, it wasn't bad. I would go back and eat there just so I could have the rice and shrimp. So pretty much 2 stars for the food and 1 for the atmosphere, service and cleanliness. Place was very clean and service was decent. Not a 4 star restaurant. Barely a 3 star. I think my wife gave it 2 stars. If you go there and find certain foods you like, it's probably worth the $5-$6 to go back and eat as much as you want of those particular foods. Skip the bad stuff and eat all of the good tasting foods. Other buffets will run you $10-$15, so this place could be a gem if the food gets better.",review,Ts6UNH4LQp4YIwATf-cqnw,1,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2012-01-18,RUO0_QEKAvr_yNURIPV9NA,5,Great decor. Great food and very good service. You have to try the pork belly pastrami. To die for! Their version of the Manhattan was very good. As for the main courses you can't go wrong with the scallops or the smoked duck. For dessert go with the black & tan pudding. Oh soooo good. Highly recommend this place.,review,qAbgwS6XmukTJlTDKKj23A,1,1,1 +YXp62JdXJDzX0EuRv_zgMQ,2011-06-23,ChjUj0rjDRbFu_5Q3ZN4nw,5,Ditto what Kristi M. said. Thank you to my fellow Yelpers for helping me find this place.,review,0CRk-70pIHwk16iKGVCpxw,1,3,1 +FFHzFdyWgM-OdMghuXMPEQ,2010-11-06,BWpNXieyNRIxdW7hZTVEwg,4,"1st..downtown Mesa needs to get its props. They have some really good places to check out and Mango's is one of them. Mangos is one of my favorite Mexican food stops. I love their taco salads because their tacos are homemade and soooo delish. + +I also love their 100% fruit juices, so simple and so good. You gotta get there before the lunch crowd if you want some though, they run out super fast. + +Simple, Delish, and fun. Oh....and here's a lil inside hint, going to the bathroom there is an adventure on its own....",review,Y4vDAMdI7NMpeuB_IhcpMw,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2009-06-13,-8Ed9HuTraLTPb-dTBxoCg,5,"Four Peaks serves up some great beers and great eats. This is no secret so no matter which day out of the year or which hour and minute out of the day you go you will see a full patio, and a populated bar. Plan accordingly. Try their Italian beer bread, the Carne Adovada, or the Southwest burger and wash it down with a pint of Hop Knot or Kilt Lifter. You will be happy you did. All of Four Peaks' menu items are appropriately priced and you will always leave satisfied.",review,DZ7NafMn4ACDLcdCiWlllA,0,1,0 +5jazn-RZP2R6ZkCIPZsf0w,2013-01-03,lr7ue4c2BjJIi3yXdAZTKA,5,"Wow this place is fabulous. Everything is so fresh and tasty that you can enjoy a healthy and yummy meal without breaking the bank. The salad bar is huge and they have a fresh soup bar where you can choose numerous varieties of homemade soups. Great tasting desserts and frozen yogurt machine. Best Strawberry Lemonade I have ever tasted. You have to try this place you will not be disappointed. They need to open locations in the Midwest. + +Also, I want to give a shout out to the server at the restaurant. His name is Oscar and he is so wonderful and funny. He made us all laugh and smile and Oscar is such a hard worker and everyone that visits this location has to say hello to Oscar because he is the nicest man ever!",review,19z2sZCwjNveJf6koqlplQ,0,0,0 +AaKlegu7gmOCD4rEESF76Q,2010-09-26,pIEpiXF-08GoKZ7MeYnoOQ,4,"As I mentioned in my previous review, Maizie's was my favorite spot with the first Urban Wine Walk. So it makes perfect sense that if the UWW Returns, so do I. Well, return to Maizie's that is! We started there this time and enjoyed all three wines they were tasting. Their pizza and bruschetta bites were great. And after we quickly inhaled the samples, we decided to get more food. + +The menu is pretty huge and everything sounded and looked delicious. Yes, we were eyeing everybody else's plate as well; the bar seats are good for that! After ooh-ing and ah-ing over what we saw, we decided to split the spinach and artichoke dip that came with chips and pit bread. It was great! + +The best part about Maizie's is that they just seem to do things right. Friendly, casual service so you feel like you're among friends. All sorts of specials listed up on the boards so 1) you don't have to feel dumb asking and 2) you don't have to feel even dumber when you forget and have to ask again. Beer of the month (always fun to try), 20% off beer or wine to-go (what is this, Vegas?), happy hour specials (you had me at ""daily""), the list goes on and on. + +Good food, great energy, small, cozy inside and an nice patio space too. I have only been twice now, but have have fabulous experiences each time. A few more times, and they win the fifth star, easy!!",review,AirVzN1BVQBmq5zY0YMNYQ,2,3,0 +n25AWEdWRaNMdMI_uN_VOw,2011-12-22,Uaki6WdA6P65N35WbHI2pw,5,"Always love the ALofts +If you've stayed at one, they're pretty much the same +Rooms were clean and comfortable. +There was plenty of room in the standard king room +Bathroom was nice, you don't have to deal with the miniature shampoos, they're in the wall mounted containers, which is nice. +Only thing missing is an iron and ironing board, but other than that, the room was perfect, especially if you like hip, modern decor, which I do. Rooms are a notch above TheStandard in LA, but not quite as roomy. The rest of the property was just OK, yes, they have a lounge, but need a restaurant. This location also does not have a DJ as some of the other ALofts do. +All in all though, probably one of the best hotels to stay in while in the Phoenix area, especially for the price. I heard from the bartender that the one in Tempe is more live than this one.",review,gx7gQMWkzoke3VPitU2hlA,0,3,0 +2bdKR3l4o-S1CscLqqnvVw,2009-07-10,PR5PA-5yAQF1w8v0dy3ZNA,4,"One of those places that can not possibly serve bad food...! Lunch, specifically, is very nice, quick and affordable... All their curries as well as entrees are equally good and you can ogfcourse adjust the level of spice as in all Thai places... ( that's something I don't like but serves good for those who don't eat spicy food)... Thai coffee is one of my favourites too...",review,KvVxMBkrcOHW3DkdxUsquQ,1,1,0 +NWtC07BxIqQp76kugbvynA,2011-09-27,IZiaeiG5wXUf7-9HJsNH0A,5,"I have always loved this place. Good Food, fair price, and typically a couple of cute girls working there. All around good place.. its a go to .",review,rjZoXU3OOPJc0-_jqx1iTA,0,0,0 +AtoMSHZ-lO7kxHRBdioMtA,2010-04-26,p71IfW6kt-gUjg0TkNkDIA,5,"Sanctuary you've been replaced. Willow Stream Spa is my new fav spa spot. Loved. Loved. the service. +Robe got slightly damp from use, helpful attendant appears and gives me a new one. Loved the waterfall treatment. Loved private rooftop pool. Loved the attendant walking around giving us sun bathers bottles of cold water. Loved the fitness classes, the facility. +All this for $50 during AZ Spa Week. +The facility and service is so f-a-b-u-l-o-u-s here that I would come here anytime and think every penny I spent was worth it!",review,ru8p3RTlk8f9LB_3zLXURQ,0,0,0 +zXg2O_QnpHQVD7e1azAu_w,2009-10-19,vpovx0zYelOrU-4O9IYL1A,4,"I enjoy some burros because it's a good cross between fast food and sit down Mexican food. The taste is always fresh, and good - the service is fast and friendly, even with a packed house. It satisfies my Mexican fix and does not leave me regretting life afterwords .... (like Filbertos does) I have only had this location, but have gone back numerous times and will continue to hit this place up and work my way through the menu ... I had the beef taco and been enchilada today ... see pictures ... you will want.",review,UPtysDF6cUDUxq2KY-6Dcg,3,3,1 +FqzgT9Y-Yu7jiWdHnGW-kQ,2011-08-17,smRJLdNn0C6FtzKhiuvBDA,4,"So we went here on Monday to celebrate another milestone in my sweetheart's life. The staff there is awesome and even changed the channel for us to catch a little Monday Night Football as we did our unedited (and OH so funny) version of ""Oh My God What Is S/He Wearing, Volume 2"". + +I am a BIG fan of their Thai Sweet Chili Hot Vings. Those get 4.5 stars easily! + +We also had the edamame with their signature spice rub (very yummy, but towards the end it was a teensy bit *greasy* for my taste), the flatbread pizza w/ tandoori chicken, and the banana-nut bread pudding w/ ice cream. + +I wasn't very impressed with the bread pudding, don't get me wrong, it wasn't bad, but I didn't think it was very flavorful, and I'm always on the lookout for the perfect one. (*note* If there is even the HINT of a raisin in the bread pudding, I will not go near it. I like raisins, some of my best friends are raisins, or something to that effect...just not in my bread *giggle*) + +I love the atmosphere here, it is a GREAT place to do some people watching, the patio is awesome, although I refuse to sit on ANY patio between July and September here...I'm already hot-blooded, I don't need to be reheated in any shape or fashion! + +Great place, great atmosphere, I'm a fan.",review,2KNPtV5E44vAiEr5BvMkUA,0,1,0 +rr13jM6SUmfPPPGHHMHCgQ,2011-05-09,52JX_qMCJBGnY-6ZzEBIQA,4,"Good time. We sat at the sushi bar and were entertained. We brought my 9 year old very picky daughter and she had fun. She has some edamame and a plate of plain noodles. Sticking me for 5 bucks for a small pile of plain noodles I felt was outrageous. Sushi was good and rolls were fantastic. Asked the sushi chef to make his favorite and it was a spicy tuna roll with a sweet sauce that was awesome. We'll come back, but I'll give me daughter a hot dog before we go.",review,C6Av_qoKe3H5-9BOnzi7yQ,0,0,0 +L7pERyEB70Vo_sb4T5dLrQ,2011-01-03,TO9DkR743eqaa0vs5kx8sg,2,"I live a stone's throw from this Safeway and never end up here for groceries. Based on experience, if I cart my lazy ass down to the Fry's at Thomas and 44th, I end up spending about 1/4 less on my shopping trip than I do at this Safeway. Everything is ridiculously expensive, even after the ""club card"" savings. + +I have no idea why. Is it because it's in Arcadia? Is it the added expense of upkeep involved in over-stocking the wine section, or the fancy olive bar, or the gourmand cheese selection? Or maybe it's the added cost of employing cashiers by not installing self-check out lanes. Do I really have to stand in line for ten minutes behind a suburbanite with 2.5 screaming childes just to buy a couple sticks of buttah? + +And I understand carding, but do you really have to whip out the book to copy down my info and then make me sign my name like three times because my 16-year old self's signature doesn't match my 27 year-old scrawl? Come on, now. That's excessive. I appreciate that you think I'm looking foxy young for my age, but I'd rather hit up the crack pipe-selling liquor paloozas along McDowell than deal with this nonsense. + +Unless I am in desperate need of an ingredient *stat* or require something special like their amazing Mediterranean olive selection, I'm staying far, far away.",review,tlSSQwfHYJany7wPoTH46A,1,3,7 +9r5YLKGTdQz_Q29cBifePQ,2007-09-27,gYlJTm2iavYfY66JaCxKqA,3,"I enjoy ""the BOP"" as my friend calls it on the same level that I enjoy pizza. It's good, but it's not my desert island bar. I go here to meet up with friends. I've never been there on my own because let's face it. I'm not likely to be caught dead trolling Scottsdale (even non-Scottsdale Scottsdale) by my lonesome. The atmosphere is cozy and inviting. Which kinda turns me off. I like my bars a bit seedier. But if that's your thing then I'm cool with it. I hear the food is pretty good for English fare, but hey who wants to waste time eating when you could be drinking?",review,hvgYD6Pmyaa6hS39ymIQBQ,1,0,0 +l5-Svx1dgLN661zx-ilLFQ,2009-07-27,StAGDHDRzWw9JWkBp8KbkQ,5,"I can't believe this wasn't reviewed yet! This place rocks, and Dr. Heather is the very best vet in town. She's reasonable in price, thorough in her evaluations, and super kind. She handled the life and death issues so carefully and warmly, and she talks about her own pets and has compassion! + +When our cat Everett died, she not only called us throughout the whole cremation process, but she sent a card and when we picked up the ashes - she had made a single footprint ""ornament"" with a ribbon and his name on it as a gift. Never had a vet do anything so kind. + +We have had MANY cats and MANY VETS. I know a good vet. Go here. Please go here!",review,x4eIi_YiwKj1pzcspeLt-Q,1,7,0 +G_2CWsU7GYwhNqptrLXUBg,2010-09-12,9yrSYobZ9OlKCDNRtzTs1Q,4,"It's really easy to write reviews about places like D'licious Dishes. This was my second visit since Petite Fromage sadly closed. This time, I was with my mother and wife. We each ordered a sandwich and a side salad for about $7.00 per person. Everything was really very good. I honestly think I would have been satisfied with only half of the cuban sandwich that I ordered, but it was so good, I had to finish it right then and there. My wife and I are moving into a house in the Medlock Historic District, directly behind D'licious Dishes, and we have decided to make this our standing Saturday lunch spot. I was too full to indulge in their beautiful selection of sweets, but I will be sure to dive into that area on my next visit.",review,2eVF68QkqhjPBFYI_4ErLA,1,1,0 +7QSYBp2-AOdyUJXEaLnbgA,2011-09-06,5JNwatofp-E_-o5kNJXzYQ,5,probably my favorite restaurant :),review,8fwK6mZbsX4VKz0X2TsLFw,0,1,0 +jKHRI4bg4fP8zQVpE4jsIQ,2011-08-02,RACmf5ZlaxqhmBcIsGzptQ,5,This is a great hole in the wall shop off of Val Vista Rd. I've been getting the chicken salad sandwich since 2006 and it's the same ever since GREAT! Cookies and bread are awesome as well...,review,FW5o1j_WytQAT6vGgs7tvg,0,0,0 +7QSYBp2-AOdyUJXEaLnbgA,2011-01-31,UgOy-JZPau5s83QkoyO3sA,4,"what a great place. there were 4 of us and we all have something different. the ribs just melted off the bones. my wife had the filet and it just melted in your mouth. she had the special mashed potatoes, don't remember what they were called but she really enjoyed them.another party had salmon and it looked great. the son from OR had the meat loaf and it really left a lot to be desired. sort of dry and not much taste. The B 4 drinks were good and near the hi end of pricing,but hey its Scottsdale. This was our first visit and it will not be our last. Just a long drive from Surprise. don't forget the corn bread and request butter. A great meal would be a large salad and the corn bread.",review,vMZX1Br4TurxDAzgvvu5_Q,0,0,0 +531AqbFkCNO1lLJ4fTgE8Q,2012-04-24,XvGByHtVvH5gplOEObwvFQ,4,"This would be a +great place to live at",review,pg2fDQinZv-a4uvkiPGSMg,0,1,0 +_L5kScT8_QCmFoHV6fmrqg,2012-04-26,NEcGg4OWpzRx3_Eo2hOptA,3,I am not going to complain about the quality of my manicure! They did a fabulous job...On the other hand their customer service was a little off. Very unorganized and they could just not get it together. It took them forever to assist us since we didn't have an appointment and are not regulars.,review,xaEtXJM62xy-jdGyevR7VQ,0,1,0 +ItMihRR-t810HgctGofF3g,2010-07-19,AyZ8VIpoJYFgouBwnHR9ww,5,"This place had me from the moment our waitress asked us if it was o.k. if our water was infused with the flavor of cucumber. Heck yeah it was o.k. in fact I don't even want to order a drink, I just want the free cucumber water! My buddy and I decided to start with an app. order of sweet potato waffle fries with dipping sauce. Delightful! I ordered the sweet potato and garbonzo burger and the sweet potato and avocado salad side dish. Notice the sweet potato theme?? I love those crazy orange taters! The food was really tasty and quite flavorful. The burger was a little different than I expected because it didn't come on a bun..but no biggie. In typical girl fashion, my buddy and I split a cupcake...finger lickin' good! I am picky-picky but this place won me over big time! Also, I felt that, for the location, their prices were very reasonable. The prices for those condos located upstairs..well that's gotta be a different story!",review,UKjrGv2k8H_DbMW9EXmEcA,1,0,0 +U4IipLI4RsuBLmxTFEV2MQ,2011-02-27,lLXh24KI8x0-ZGBlWoRDdA,4,"Been parking here at least 10 times; fast, affordable and safe. Use your smartphone and YELP app to access the super check-in discount. + +While it didn't happen this time, at Christmas they were especially full, so don't be surprised at that time of year and make reservations (yes, make reservations at a parking lot)",review,OroGqv0t7fy-Q3E2PzTEwQ,0,0,0 +7pxa5tueoEcmt6hztqsz2A,2012-02-21,BP5qPstHl30OCvXe_6L5Bg,3,This Pei Wei is consistant with it's orders being correct & clean. My one wish is that the parking lot it shares with Starbucks & Sidebar were about 15 cars larger. I don't see that happening but a girl can wish can't she?,review,z1tNqF5qJRpibGj-9_r9Ew,0,0,0 +VpW40mznMS43CqdbelX2wA,2012-08-20,-w_ZTzt5EOH7MDXzvwwExA,5,"If you don't love Guissepe's, you don't love Italian. Kindly find your way to a chain restaurant that serves bland, unseasoned, frozen-then/microwaved meats, sauces that are fit for an old folks home and an ""endless"" pasta and salad bar. Go to these places, because Guissepe's is not for you. It's for lovers of true Northern/Northeast American Italian cuisine. Chicken Parm that is fried, NOT baked, thank you very much. Meatballs that use beef, veal and pork. Sauce that use LOTS of salt, as it should be. Leave your dietary worries at home. + + In a word: perfecto. + +Robert's passion for music (he's a well known accomplished cellist in NY circles) and food is unparalleled. He is without peer in the state of Arizona. + +But be warned... there ain't no endless pasta bowl here. + +Their weekday lunches are equally superior. This is Italian the way we had it growing up in North Jersey.",review,LZ86tqJTvDdHHD68oluGQA,0,0,0 +5Va2HCh_R2fhdGI15K32XA,2010-11-21,uERIDJypjod13_XVbn3COQ,4,"Finally! A Chinese restaurant on the west side that's really good! Understand they've been here a year - on a Saturday night at 6:30pm they were packed - at 7:15pm, they were practically empty. Now you know when to arrive. +Jo had Asparagas with Chicken and Shrimp, I had Kung Pao Beef...both excellent. The spring rolls were very tasty. +I'd consider 5 stars except for the waiter - too much of a hurry, put down the spring rolls without sauce or mustard, never asked if we wanted anything. I watched other waiters and they were much more thorough, so we just caught a poor one. +Go back again? For sure!",review,ETIAM78kYT_xPM8b2iqi7g,0,0,0 +HQ8N_EwJA3NdF1UApsF-fA,2008-12-02,HHpWveXhw4rbntA9HN7XwQ,4,"Our team ordered a pizza while we were in a business meeting and the guys were great in delivering it on time. As a bonus the pizza was great. I'm usually a stickler when it comes to crust, and this stuff was great. The only thing I didn't like was that the margarita had tomatoes on it and not tomato sauce. Just a personal preference. Also wish they added the basil leaves at the end to keep it from fully cooking/charing. + +We'll be ordering from here again.",review,6POmMZXi6CMWPzj8eaWk6g,0,0,0 +-9pVS__IliMA2aNEYzrQrg,2011-10-04,xKAsktcvPTRe14pEeNwptA,3,"I discovered this place on my way to a comedy show! It was a Saturday night with an ASU game on and was not packed so we stopped in to get a drink and a bite to eat. First impression was nice! Everything looked clean and open, which i didn't expect from the outside appearance. +The service was kinda slow. I have worked in the restaurant/bar industry for 10+ years and I understand how things can go wrong that the customers don't see so i am not going to be hard on these guys. (By the way, the girls are all dressed pretty skimpy and the guys are just short of guidos, so if you have small kids this may not be the place to bring em) So the drink service was slow and throughout we never were really sure who our server was. One girl took our drink order, another brought them, someone else took our food order, someone else brought our food, and someone else came over to see if all was ok... There had to be 15 employees and maybe 25 customers, not to mention the kitchen staff. +So the service was slow and not sure why because we were constantly seeing the staff goofing around with one another and as mentioned before it was not busy. BUT the associates were very nice the entire time so it was not bad service my any means, just slow and a little unattentive. +It seemed to turn into a club style late at night, which could explain the extensive staff. +There is a wheel that you can spin with different actions on it, such as, ""kiss a random' '50% off bill"" ""go plastic"" (which apparently gives you a chance to win plastic surgery). I would suggest NOT attempting this if you are not single. +Overall, the food was GREAT!!!! The place was clean (bathrooms could use attention). The service could use some tweeking. But we were happy with it!",review,33T-R7e8y7st0PA2HRyHnw,0,0,1 +vSEFzop2GDXsIWTLxIGMiw,2012-02-21,qfHkekpzM6EVI1mA_yZ1ug,4,"I was hella skeptical that a Phoenix fast food Mexican joint could top a Mission taqueria. Rivas pleasantly surprised me. I chose the two burritos with chicken meal that came with rice and beans. Standard, but fulfilling rice and refried beans. The burrito was a breath of fresh grilled veggies. A warm tortilla filled with chicken, peppers and onions. So simple and yet so mouth watering. Best part was that the burrito was so big that I got to save the second one for my flight back to SF. Oh, and this whole package was under $7.",review,-OMlS6yWkYjVldNhC31wYg,1,1,0 +8x9Mzb7gX6SEHQIlSDpU8w,2011-10-16,hs_EgRhQiwR-lXrhb36-jw,3,"Beautiful Casino. I'm into architect. Yet, if you are a slot machine gambler for the fun of it or not. This may not be a place I would dump my hard earnings into even if it where just for fun. I was out her with my Uncle and although I didn't play. He was having a good time playing 2.5 hours straight. Yet, as I followed in from one slot to another after spending a lot of his money down the drain. I noticed that not only did he not get any winnings, but no one around was winning either during the entire time he played. Really?!?! Not only was he in the hole, but many others. Very ODD that I noticed this. Also, no one was working the floor asking anyone if they'd like a drink. Perhaps, I may be used to how Vegas does it? + +I'm curious for other feedback from other attendees at this place. Have you had any winnings? + +We initially came out her for the Vietnamese Concert and Show. I would provide a rating for that, yet it's not a regular performance at this Casino. So I will refrain.",review,8-InERGLhHGjX3DZPFXMqg,0,0,0 +TehSM5JrMRikSnjnnfulbw,2010-04-10,46eplIuUE5l1GYi9dLZ-eQ,4,"I enjoyed a pleasant lunch here with my carefree grandparents-in-law who recommended Tonto as a delicious place. When we first entered the I thought it might be full of retirees and rich Arizonians but I was pleasantly surprised to find a crowd of all sorts enjoying lunch on the outdoor patio overlooking a pretty view of the golf course and elegant Saguaros. Elegantly Casual American describes Tonto. + +Indeed it's pricey, but the food is fresh, creatively presented and delicious. (Extra pluses for using locally-sourced ingredients) +I enjoyed the Mexican white shrimp tacos. The petite shrimp comes drenched in a sassy ancho chili green pepper sauce, complemented by a cool and zesty cabbage-carrot-cilanto slaw, avocado cream sauce and chewy homemade white corn tortillas. The fun is getting to assemble your own tacos. I ate nearly every bite and was stuffed for most of the day. + +My companions enjoyed the Reuben sandwich (layered corned beef on crispy rye, served with skinny fries that don't need ketchup) and the Halibut served on potato cake with spinach and carrot salad. Grandma-in-law said the halibut was tender and flavorful. I can imagine a bunch of friends or foodies mingling and laughing, sipping wine in relaxed delight as you drink in the beautiful view. + +Worth a visit, whether you're a local foodie or traveler.",review,r2D6DUDgN2CCDVtqranHTg,0,1,0 +PoRYjYUSjmeWM1WLsx_45w,2012-01-11,HHASTCkx31YiMeYb8-YMIw,5,"BEAUTIFUL! Phoenix doesn't get much more amazing then when you're looking down at her from Dobbins Lookout. + +A few tips: +1. Get there before 6pm. The park closes the entry but if you're in, you can stay as long as you want. +2. Be ready for a drive up a mountain -- scary cliffs and tight corners. Make sure you go slow, watch for hikers and cyclists, and overall be cautious. +3. If you're heading to the summit for the views (Dobbins Lookout) bring a jacket or blanket. It's cold and windy when the sun goes down, even in the summer. + +There are bathrooms but no water fountains at the Lookout.",review,nSLrExcVVphiNzvSf5H7vA,1,3,1 +Lo0dRIDKXc5mlE-coVZrtQ,2012-01-27,j39bSuhgxfAwU1CK2o3sWw,4,"Chloe's Corner, opened last week in the CityScape, Downtown. + +The interior is modern, spacious and very comfortable. The design is not only admirable, but also very broad. Inside the restaurant there are various types of seating. Tables, counters even plush chairs to chill and kick it with a glass of beer or wine among friends. There is an outside patio too. + +The first thing you notice during breakfast is a fifty cent cup of coffee. This is a bold brew in a paper cup and plastic top. Excellent coffee. For my morning meal I order Chloe's favorite, a six dollar 2 scrambled eggs, 2 slices of bacon, toast, wedge of fruit, plate. The swirled marbled rye bread crafted at John Anthoney's Italian Bread Company was perfect. Potatoes sauteed with fresh chili peppers were tip top. Bacon was thick and so good. + +This is one of the areas newest restaurants, and even has a few groceries. Fresh ready to go pre-made lunches, fruit, wine, beer and soft drinks. I would love to recommend at least one bottle water that would come in a paper carton instead of plastic. I took home a bottle of Le Village, Sparkling French Limonade, tasty. + +Also a big thanks to Malalay, a super svelte, very friendly gal that not only poured the coffee and brought the food, but laughed with me too. And ^5's to my cook. + +Total bill today was $10.33. I will visit again. Happy Hour next time, to check out the beer garden.",review,gN03qFYysM5DbgjuV6N0QQ,2,3,0 +QAWdgDgWaFJYzJ2pGDjmdw,2010-01-31,iU8dIknYlPPOnYvCiZEM8Q,3,"The parking situation is ridiculous, seriously. If you can, walk/bike/bus. It's not worth the energy/effort otherwise. + +Another downside? If you don't make 6 figures, dont' plan on buying anything here. Seriously. Nothing lends itself to everyday people. Except for m aybe Borders (outside of food options). + +My most recent venture there was on a Fri afternoon and it was PACKED and we literally could not eat anywhere without a decent wait and we were starving... so we were stuck. + +The bonus is the MoJo, Borders & Paradise there. But nothing else lends itself to my medicore income.",review,T5mD6ggC7fh48QgXR0LevA,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2012-02-19,mym0Q4PzTZ2-2eyfKgUxRg,5,Took Travis here for one of our first dates and just LOVE Cibo. It's situated in a home from 1913 and has colored lights wrapped all around the trees. You can either sit inside or on the gorgeous patio. Brick oven pizza and cheese plates offered here and it's definitely a place for a cool date.,review,n6LeAoIuDR3NfIBEsmL_zg,2,1,0 +vA8T8QXh78iSXhxShLNgQA,2010-05-17,F7_kvr01KHD9l2hckfXbnA,2,"On the verge of just giving one star I, I figured on 2 only because I enjoyed the cool open interior of the main restaurant. As far as the food. That is one star. +While having just stopped in at the Ranch Market to pick up a few groceries, I was going to eat at the Market itself but decided to maybe try a place I had never tried near by instead. As I took my groceries to the car, I decided that since I had not yet tried ""Tradiciones"" I would give them a try. +I enjoy the food at the Ranch Market-- tasty and authentic. Since they are connected I THOUGHT the food would be the same. Boy was I wrong! I don't know who they have cooking here, but with all the great stuff they have next door it should be A LOT better. +The salsa should have been the first clue...it was just ok. Again, knowing what they make in house next door, made this salsa pretty sad. Wanting an Agua Fresca to drink and again knowing next door had like 7+ varieties, I was disappointed they only had horchata and pina here. I got the pina, which was probably the best part of this meal. +I was really craving some tacos, and noticed they only really offered them under the appetizer menu as street tacos. Also wanting to have a sopito, I thought WTH I will get the sampler platter and add a taco. + +The platter came with 2 mini chimis, 2 mini taquitos, 2 mini cheese enchiladas and a soptio each of chicken and beef. All looked good when it came out. I enjoyed the taco first...the last thing I was to enjoy on this culinary outing. Then, digging into the chicken enchiladas, the sauce was a ""mole"". This was not a good mole...way too sweet, someones idea of a mole. Yes, just because a mole has chocolate doesn't mean it's a chocolate sauce. And the chicken, stringy bland kinda tough. Everything followed suit, bland not very authentic, someones idea of mexican food. It all reminded me of something I would get if in the Mid-west somewhere and wanted Mexican food...not Arizona! + +The only saving grace to this meal was that it was happy hour on a Saturday and the platter was 1/2 off and the taco was a buck so I left paying only $9 instead of $15. + +While I will continue to eat at the Market....I will pass on TRADICIONES...*blegh*.",review,usQTOj7LQ9v0Fl98gRa3Iw,2,2,2 +nts2OALwvyvfNh9focRZ3w,2010-10-22,xUPi1IU3JlCnbuZgMqSj-g,1,"The reviews were so good that my friend and I had to check it out. We were very disappointed this morning while trying to eat breakfast and swatting tons of flies!!! They were everywhere, on us, our food, the other customers - and this was inside. The egg sandwiches were served on hamburger buns shaped like rolls - I could have went next door to get one just like it at McDonalds. Not surprised people from Ahwatukee like this place, it looks nice but the food is so-so.",review,0ZFxSVbJhiN06OJSXsWVxg,0,0,0 +WrMPN5glZGrbI3rvVtxJFw,2008-03-16,3WHYWpKEp9UkPtX7agHV-Q,5,"I don't think my husband will let me rate it anything less than 5 stars... + +Parking for us was okay since we did not park in the lot, we parked at neighboring house for 5 bucks. Grabbed some towels from the hotel and staked out our claim on the lawn... People were very friendly. My hubby met some folks from Dixon, IL the day before and they came by to say Hi... and of course, watching the Cubbies - can't beat that!!!",review,i3P_fJi5tjzMOEutUwl_uw,3,3,0 +djYFLq4Bkqpkd14-0IJfug,2012-03-29,Nx7nZauAL79zkL7Ka55DEw,5,"We were shopping at the Bass Pro Shop in Tempe and decided to go for ice cream to kill some time before dropping my parents off at the airport. I pulled out my iPad and 'yelped' ice cream. It brought up 4 options in the area and we chose Dairy Queen which was a few blocks away. + +As luck would have it there was no left turn onto Dobson and we ended up going East on the 202 the opposite direction of the Dairy Queen. So I searched again and we came up with Yogurtland. It wasn't luck after all but some ice cream higher power at work to bring us to our frozen yogurt oasis in Yogurtland. Not only were the ingredients fresh and delicious but the price was reasonable as well. 5 of us each had a scrumptious & generously portioned sundae and our total bill was less than $20! + +We all enjoyed our selections. One topping surprise was the Fruit Pebbles cereal my daughter put on her sundae. The fruity crunch they added was delish! + +Yogurtland was a home run! Thanks For the Yelp!",review,uL8JCYexqWNs2Ewg4Cimiw,1,0,0 +p_4cUTxtMWToqUKCy11qcw,2012-12-27,TOlpNDa4ekkuooTXffP6QQ,5,"Great product! I was on a mission to make homemade mozzarella with the absolute best ingredients I could find. Organic, whole, raw milk - this certainly did the trick! We'll be going back that's for sure!",review,vzAvkSRois2VMqj_AT7xVA,0,0,0 +4yrf5wPxntzJt5Iz-96OEA,2008-08-02,2PowKeFWzpjJA_OXMjwqaQ,5,"I've been giving a lot of 5-star reviews lately, but (in my opinion) they all deserve it. + +Movies on Central RULES. They have 99.9% of every movie title we've looked for. Since summer started, we've been in there at least once a week. Bonus: they have a water cooler right by the door. Sweet!",review,EJu5peGoO4tzop0pQtgHgA,1,1,0 +HDvCnqIf5twbMb5-eG1EJw,2011-11-27,KsRPq1cYZIIeXexZ5rBfKg,4,I really enjoy the food here. Great breakfast fare. Great prices. Great service. The pancakes are really good. I still wonder why people go to Dennys. This is wayyyyyy better.,review,v26k4Bzy9GiLLlSmDk8LfA,0,0,1 +qVWR4NHU3NXlEIaCy67g2g,2010-09-23,O2YWgyNkbNFbYCO7XxVfkA,2,"I was so excited to find this place, less than a minute down the street from home! Because I'm not a big panda express fan, but I love Chinese food. Sadly, I was disappointed. + +The orange chicken was very stringy and tasteless. The sweet and sour sauce was runny and mostly sour. The wontons were the only decent thing we ate there. + +If you want good, cheap chinese avoid this place and try Li's Bowl on 35th ave.",review,5xSIdC1tdsJPtJnWj3ofRw,0,1,0 +uL_kqSm8ZqJ_3U88uwA8tw,2012-12-04,dW7kjEcQFt_ckvKXr2fNbQ,5,"I can't believe it took me this long to visit Sportsman's but now that I have, I know I'll be making my way back soon enough! Sportman's is a combination wine bar and retail store for spirits, wine, champagne and beer galore. Plus it's locally owned by the Basha's family! + +I like Sportsman's because it's a friendly and warm atmosphere and they have a great variety of discounts for their different levels of alcohol. The walls are lined from the floor to the ceiling with every type of alcohol. The prices range from $10 - thousands of dollars! It's pretty easy to find any type of brand here. Since it's the holiday season, they are currently offering sales on several of their high-end brands which makes it easy to visit for the purchase of a gift! I also like the fact that guests can visit the intimate bar area and sip on some beverages to take a break from shopping. They also make customized gift baskets!",review,4ozupHULqGyO42s3zNUzOQ,6,11,6 +Y293fHh5SZ0_9BZm4M6BCg,2011-05-29,oXmhPVATH70xTdDBNrrcOw,3,"went there for sunday morning hangover breakfast. the mariachi band, while maybe nice outside or not so loud, was so overpowering that we could not talk... the trumpet was terrible for hangover ears... not peaceful or calm at all- so we sat outside. food was good. service was decent. a little pricey but okay because thats what every downtown restaurant has to do. i would go back... just not near that mariachi band.",review,rWFCaDU05dUelPe8gFtJvg,0,0,0 +FUI-hWH_bpis7AKZTWenUQ,2012-10-14,k1a70dZI5EABm-MW4asQGg,4,"I enjoyed our dinner here although I think this might be more of a happy hour destination. We had the trio of dips which were lovely. I had the house enchiladas with grilled chicken and that was delicious. The rice and beans left something to be desired. Husband had the pork green chile mac and cheese which he enjoyed but felt was underseasoned. + +I ordered the peach sangria on the recommendation of a friend but found it to be too wine-y for me. I was expected a glass full of fruit as is customary and there was one tiny lone piece of peach clinging sadly to the bottom of the glass. The waiter was kind enough to swap it out for the passionfruit sangria which I enjoyed much more. I also tried the blood orange mojito and the coconut mojito. They were both fabulous and LARGE! If it were up to me, I'd make them slightly less sweet but they were still fantastic nonetheless. + +We shared the macadamia nut brownie and ice cream for dessert and that was wonderful. The brownie was sort of like the bastard child between cake and a brownie. Denser than cake, not as dense as a brownie. + +Our server was wonderful. Friendly, attentive, and helpful.",review,kpbhy1zPewGDmdNfNqQp-g,0,1,0 +4sE8irsM-l6Y-Npodmx9kA,2011-12-03,voZHhgDuLxX1TmSq4Gd2tw,4,I didn't give this rating based on taste because I frankly hate Pizza Hut pizza. I think it's gross. The sandwiches and wings are great though. My fiance loves it all though. I like it because it is right next to our house and the staff are always friendly. I pick it up on my way home and if I get there early they try to get it for me as soon as they can.,review,SB37ySvE9n2GY0AJi47nug,0,0,0 +1F-pelV0fTduYV_vCrvjLA,2012-02-16,hIydalJ3IiaC60pAhLX__w,4,"I've been here so many times, I can't believe I haven't reviewed Black Bear yet! This is me and my friend's ""go-to"" breakfast place. Ginormous portions, and for a decent price. A little slow on the service, but if you're not in a hurry it's no big deal. Basically down home cooking. You see diner and that is exactly what you get. Good eats!",review,DOJM58OkGSsIdk2qCUZnLQ,0,1,0 +OuGcrCgeTBrJnEGvLZ3JvQ,2009-08-24,qbQunSvGEEaUkmwbBJiuyA,4,"Was out on a date yesterday, and we had worked up an appitite. We were on the light rail, and decided to stop off on Mill to find food. Walked down mill for a second, and found silvermine subs. SCORE! + +I had never been here before but I liked it. Its not the fanciest place. Simple location, good food, decent prices. They seemed to have a good selection of hot and cold subs, with different side items and combo meals. I got the King Bullion, and it was tasty! I went with the small sub (5 inches) a large pop and some chips. Food was up in no time flat. Seems to be a college kid hang out, especially considering the location. + +Would return in a heartbeat. Tasty, reasonably priced, and right off the light rail on Mill.",review,JffajLV-Dnn-eGYgdXDxFg,5,6,3 +9BOeSWUvmh4rRhpQNgrdqA,2012-01-26,EFrh89jtPS9cf65O1AyyPg,2,"Carl's has raised the price on its food so that the $6 burger is now actually almost $6. The big marketing ploy here was that you could get a burger for just a few dollars that was the same quality as what other places charge $6 for. Not anymore. +Additionally, they have not resolved the issue of employees that speak so little English that they are unable to either take or execute your order correctly. We have emailed Carl's in the past regarding this issue and are just tired of having to bring it to their attention when they get the order wrong (which is most times now). +We have now decided to just go across the street to the In N Out burger at Fiesta Mall for any future burger runs. You can get a burger for half the price and the employees speak English and can get your order right.",review,LX3cTVaS8f2UF0Uuafsfug,0,2,0 +zSEknIqmkGL1pQt-ApEeoQ,2012-01-06,YbhBATyRdcbY_Wg8gk0o_Q,4,"I've only been here once, but I really like this place. There's a good vibe about it. It's clean and airy, with friendly people...oh, and the food is really good too! + +I tried the Chicken Parmesan sandwich. It was big and delicious and came with a scrumptious salad on the side too. I tasted the Salumeria sandwich too, and it was also very tasty. That one had a nice spicy bite to it; very good! + +I wish I lived closer to this Aiello's. If you live in the northern part of Phoenix though, this place is certainly worth checking out. I'm looking forward to returning anyway.",review,UuwjD6MZf6Z6QlNphiXRjA,1,1,0 +mQUC-ATrFuMQSaDQb93Pug,2010-12-08,XVz-9sNx-Wj7Nh2x-L4rww,4,"Dumplings, Chicken fried steak with gravy. What more can you ask for. The satff was friendly and fast, Cant wait to try it again.",review,e8xrkMtbKJTq33PvPQW37A,0,0,0 +V5QdxePG-pGPXVPHSLLM9A,2012-04-01,qVT1Iy4Td4g74nW1ISzhdQ,3,"Great coffee shop with tasty lunch and dinner options, very good coffee and cozy atmosphere. A couple of critiques - I found the lunch and dinner menu a bit overpriced for what I received. + + I frequently stop in early in the mornings for coffee and a muffin (I live in the area). The muffins are EXCELLENT, unique and tasty . . when they are available. + +It doesn't seem like the pastry chef begins early enough in the morning to have pastries ready to go around 6:30 or 7am. Most other niche coffee shops I've been to in the Phoenix area have fresh baked goods ready to go early in the AM for early commuters like myself.",review,RJbbfty8gzR9j-_vDPE2XQ,0,2,0 +mqQwChPNN4o4DhAzaGntIA,2012-01-23,CqxF_JsKuq7YsW8NIBkGMQ,4,"Yum! even though it is incredibly heavy and bad for you- YUM. we got the beef and hominy stew with fry bread and the ultimate taco. let's start with the stew- though it was just beef and hominy, the broth was so tasty and delicious. didn't even need the fry bread on the side. the ultimate taco was pretty awesome- we got the red beef chili and then it had refried beans, cheese, sour cream, and lettuce. it definitely wasn't gourmet but it was so delicious and so cheap! gluttonous, but worth it. we wanted to get a dessert fry bread, but we were just way too full to even go there.",review,bQzLun5k4H7X8KCENbbfSQ,0,0,0 +hh2lP4_2N-tk_OxmaTf_qA,2010-08-04,VgFeoe5kTEBuiQt9MGDlEQ,5,"Great views, great food, great service and great atmosphere! We thoroughly enjoyed our dinner here and couldn't believe the neighborhood special - 3 courses for $35! + +The split pea soup was amazing as well as the bing cherry cheesecake...yum!",review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +mxrXVZWc6PWk81gvOVNOUw,2012-08-03,7vFs3GHFgxYR3mPP0t26Qg,4,Great Happy Hour ! Great Food ! I work in the building and many of us wish they opened for lunch.,review,u1fxUYcCZsiazNmczJh0hQ,0,1,0 +FKbLmiEDKqDolWzMXeusUQ,2011-02-02,Gb1IFS9xd8mwMGjqZzyE0Q,4,"Id say 3 stars but since the have menudo everyday and prepare it at order I'll go 4. Street tacos are good so is the carne asada. Typical gringo ""Mexican"" food.",review,Vk-hJ1i5ZagPM87Kv9FOnA,1,1,1 +7YYD_agS3Kb2sAx9JPkQEw,2012-04-10,svaYvWFKqE9nHMhGOuPPcQ,4,"I had never heard of this place until some friends from out of town brought us a bottle of the olive oil. So when I had out of town company visiting, we made a trip to the Olive Mill and signed up for the tour. + +The tour is not really much of a tour, but more of a 20-25 minute lesson on growing and harvesting olives, and then a look at the equipment used to press the oil. Our tour guide was very entertaining and funny. While there was a long period of standing, there is very little walking so really anyone can get their $5 worth. + +While waiting for the tour to start, we wandered around the store and then enjoyed the wine and cider tasting outside. They also have live music every Saturday. + +After the tour we filled several sample cups with a variety of olive oil flavors, and bought a loaf of bread, and enjoyed figuring out what was in each cup. The line to order food was too long, so we didn't stick around for a meal, but everything looked wonderful. + +The only less than positive thing I have to say is that they really promoted the Pork Shop down the road, so we went there hoping to load up on ready made food (since we had opted not to wait in line for Olive Mill food). It's actually a butcher shop that also sells a few cooked items. There were BBQ pork burritos, green chili burritos, and spare ribs. The pork burrito was alright, but the sauce overwhelmed the meat so that's all you could really taste. + +The ribs were really a disappointment. They are around $6-7 a pound, and although they were meaty, it took way too much work to get the meat off of the bones. Perhaps a few more hours in the oven, and they would have been better - but I don't recommend going out of your way to check this place out.",review,T-fNA0Z-iEzRhSiIlxs38w,0,1,0 +oHjoahzL5F0m-OGDQouEGw,2011-07-28,8ktkceex_iE1UAW400dYSA,5,"I bought the HomeRun offer for a bike tune up at Trailhead. I have to say that I was surprised at the quality of the service they did to my Trek hybrid bike. I could definitely tell the bike was riding better, smoother, more efficient. They even re-installed my bike computer, threading the wire around the front right fork very neatly. I definitely recommend this place. Oh, and the food is good, too!",review,3bpZ7LSFyaNy9q3SOaGCYg,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2012-09-30,oMPUPWWt5Cb2rci5d9yPgA,5,Great food and even better beer. Staff are always friendly. My favorite microbrewery in the Valley.,review,umftbZH3OI9gDXyC8suXQw,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2009-07-17,8miGqaSSjPWu20c555ufRA,5,"After writing the review the other day I had a taste for Pappa's. So I went last night and YA-HUMMEE! I tried something new the Hudson platter and this baby did not disappoint! Perfectly grilled scallops, 2 succulent and sweet lobster tails, 4 huge shrimp brochette. If you are not familiar with shrimp brochette it is shrimp stuffed with Monterey jack cheese and a sliver of Jalapeno, wrapped in bacon and char -grilled. DELICIOUSNESS! It is served with the fabulous dirty rice and sauteed green beans all for are you ready for this wait for it 22.95! + +I also indulged in sharing a little pecan sweet potato pie with Hagen daas vanilla ice cream and bourbon sauce. WOOHOO! FYI all deserts purchased until July 26th will have a portion of the proceeds go to a local food bank! + +Dinner last night was sooo freakin good I may be back tonight! Bon Appetite",review,_7el1cOgnfkNfmZKi277bQ,3,3,2 +nBaXh8dRLsX_9Ndyvsnv5w,2010-10-10,2SHqYQ3T4FQuP0sDGLMamQ,5,"I'm glad I bought my tickets back in August when the event was first posted. I'm not sure the organizers knew what an amazing turn out they would have but the event was sold out so tickets were not available at the door. We arrived at 11:15 (doors opened at 11) and while standing in line to get in there was a staff person checking to make sure we all had tickets and letting people know that if they did not, the event was sold out. + +Once inside it was a sea of cupcakes! Tiny cupcakes that were delicious! I didn't taste one that I didn't like. Liberty Market was my fave I think. Espresso Carmel and Red Velvet! YUM!!! Cruelty Free Cakes makes delicious vegan cupcakes too! I also liked the ones from Cry Baby Ranch. I'm going to have to find them again at the 20th street Farmers Market and Old Town Scottsdale Farmers Market. And everyone was so nice! + +$10 got you all the cupcakes you could eat and water AND milk!! And it was for two very worthy causes. Singleton Moms and Safe Haven For Animals. There were also raffles, a cupcake eating contest and cupcake decorating for the kids. So many festivals these days charge you to get in and then, once inside, charge for everything else. People can't afford that these days so it was refreshing to go to an event and not be nickel and dimed for everything. I appreciate that. And best of all my daughter had a great time! There were lots of people so it was a little overwhelming for her but she loved it. Both of us are just coming down from our sugar high. + +It was great to see Gabi and Lindsey manning the Yelp booth and our very own Thomas S. helping with emcee duties! + +Will I be back next year? You bet!! And you should come too....just make sure you get your tickets early!",review,ZmIgP4U4Ht9CYmNX0_zP6w,7,9,5 +mQfT3JYu18HN22DVylcE7A,2011-09-27,9QECdUlKowg20lRDo8FwTQ,5,"Our administrative assistant at work is a big fan of Bertha's. And now, I am, too. She's ordered in lunch from Bertha's a couple of times. The first time, it was the Thai chicken salad, which I loved. Today, we had two salads and a sandwich tray. I don't even like sandwiches. I helped myself to both salads, and picked up a sandwich, intending to dismantle it and eat the meat and cheese. Inexplicably, I took a bite of the sandwich, and said ""OMG! This is so good!"" It was the turkey w/bacon and avocado sandwich. My friend seated directly to my left said, ""Let's go to Bertha's and order more of these after lunch."" They were truly that good. The salads were both great, too. I think we'll be frequenting Bertha's a lot in the immediate future.",review,2LCrT_BOJvGV4xi_lmoRcA,0,1,0 +DLOr9MYltjcu8X5kwDJgnQ,2012-03-18,KYs9AFn1CKKYTadbKXbNjQ,4,"I used to work near here and we got take out a lot. + +My favorites: spinach enchiladas, green corn tamale, chicken mini chimis ( they come with a green chile cream cheese dip, OMG). + +I loved their tex mex spin, not authentic Mexican, mind you, but tasty. + +I can't speak to the service, I rarely went in to pick up, even... I'm one of those crafty people who can get others to do that, lol. + +I liked it though.",review,BuwjlU6D4kcs1aGo7wSM4Q,0,1,0 +SvhXjMn91ODnzkjjZY7j6A,2012-09-07,hRVojRPSshD7h3VYdv_HpA,5,"I don't know what I would do if this store ever closed. It's right near our home, has an excellent selection of both wine, meats, and produce. Note that wine is mentioned first... I can't help it! The service is always really good too. Everyone who works here seems like they really love their job. The only issue I have ever had was not being able to get basil a couple of times. I got over it. :D",review,cHnlIFP5WwJRer7_C2NUng,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2010-01-28,N7jK4Hp_i-3H0S5tXtTAZg,2,"The atmosphere was nice what we saw of it. Our party had dined at this establishment over 20 times and we where placed at the worst table in the place on the second floor in the back. The food was good and the service adequate. when we left the valet asked us if we came in the old BMW it is four years old and cost over 100,000. I am never going back and will tell all my friends that this place is not acceptable.",review,JIdnF9vzN7XHaYsTvscnGQ,0,0,4 +JnCtEM8rrPcg6ME_ivcLBA,2010-05-26,ScNbWQ3HYBVfSYDP5QEauw,5,"I always look forward to a haircut with my fave Barber, David. $13 always gets me the cut I want. I used to head down to a another Barber off of Central Ave but never got the haircut I wanted. Now I never have to worry about that. So if you're ever in need of a Barber shop cut, give David or one of his gals a try. Cheers!",review,7F-DVLnGmC5hHPUVfSfxDw,2,2,1 +yZbPvIa_7nt7ekxi31SkUA,2012-10-19,JJmqkq9_cylU0pm9n6kw_g,4,"The Saguro is a bright, happy place in the middle of Old Town Scottsdale and I, for one, am a big fan of bright, happy places (people, too but that's a story for another time.) + +It is set up more like an apartment and less like a hotel with lots of buildings scattered about, all surrounding a pool. (There is actually more than one pool to make this happen.) It definitely has more of a party vibe than some hotels, which is just fine by me. I can imagine during the summa, summa, summertime these pools are hopping. + +And, even though the feel of the place is fun, the staff of the place is nothing less than professional. Every single person I interacted with was beyond kind, helpful, and happy. + +Whether you need a hotel room for a night or a full trip, a place to hang out poolside, a happy hour cocktail, a casual meeting place, or breakfast or lunch I think The Saguaro just might have you covered. And all with a smile. + +What's not to like about that?",review,F9T6m1YdRFreyKDufcyoOQ,7,6,3 +2jg5fV6orXdfBW6420mA3w,2012-08-16,O7eW27kWQBOsdyY6YJF-8w,5,"My van broke down and I needed a tow real fast because I had my kids with me in the heat. I looked up towing on my phone and just happened to pick Leyva's. I am so glad I did. I spoke with Chris and he was very nice and helpful. The driver was there within 20 minutes and was also so, so nice to me and my kids. He was very clean and professional and courteous. The whole experience was better than I have every had with a towing company. I keep their card in my wallet now and gladly refer them.",review,4DXhDszXSHzhaUqOOc4RoQ,0,0,0 +asebFFgabg_lfoNpGJHZlQ,2010-09-13,4CgoGDd236jY7VaSoFmB1w,4,"There is absolutely no other restaurant in town that has better BBq. Their pull pork is just mouth watering.. Very juicy.. Great bbq sauce with a touch of spicy to it... Just perfect.. Ribs are unbelievable.. This is not a place you get a 5 star customer service.. if you are going here and expecting anything but great bbq, you will disappointed... It's a whole in wall and I absolutely love their food... I usually give a lot of points for customer service and treatment... but their food is so good that makes up for everything else they lack and I will keep going back just because of their good bbq....",review,82vsbM8ggZV4BVrtLB9s3A,0,0,0 +G9LwkTSdKOyOGqd5BbuIkA,2011-01-09,I72TB8lRvc4Jx8_nuqsjAA,4,Had just gotten off a long flight and wondered into Aunt Chiladas for the first time. Loved the food and the margaritas !! Will go back again.,review,B_uj5v3CrnpU--3oswtPLQ,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-05-07,lwR1tL_ZmBRv7q5AIUTNtw,4,"The place was dope! The only bummer was the half-assed sun cover offerings out on the patio, but we were lucky to find a spot inside for post brunch drinks! Food, service and atmosphere are all good! Definitely make it to this spot!",review,Sek3oLIIHtBSTSFh9z3pXQ,0,0,0 +RQWliUrWic_b5FZEj3JThQ,2012-05-03,0OSewGLXfkNzGZLNSnFkNw,4,"Cheap and good, family type feel...",review,aQ4wSvsatTj1_iW_YXxHJQ,0,2,0 +luCSjoNQ9q_0QIjKKOy2pQ,2008-04-05,TxB2nZN2ntdO5xrEirkpOw,4,"FOOD: I tried the T-Rex (meat lovers pizza), and it was scrumptious. The Thai Peanut Sauce Pizza was a little weird, yet still tasty in its own way, and I could only handle one slice before growing tired of peanut sauce. The Buffalo Chicken Wing Pizza was also pretty good. The highlight of the menu was the beer. The Elsie's Irish Cream, a milk stout, was one of the best stouts I've had (better than the Left Hand Stout). It had a strong coffee flavor but in a good way (I don't drink coffee). The Orange Blossom (mandarin orange hefeweizen) was the best Hefeweizen I've ever had, and I generally don't like Hefeweizens. The orange flavor definitely made that drink more than tolerable. I tried several other beers from Papago's own brewery, and the rest seemed good. They have dozens of bottled beers in the fridges along the walls. But I never got a chance to try any of them. + +PRICE: Around $5 per beer on tap. Personal pizzas were $9 and large pizzas that could feed 2-3 people were $18. Appetizers were around $5. + +ATMOSPHERE: Pretty neat place. Funny statues, tvs, darts and all wooden furniture. Drawbacks are very small tables, uncomfortable chairs, odd layout, and almost too loud at times. + +SERVICE: The place seemed a little understaffed at times. We would be helped my a couple employees throughout the night as one would have to run behind the bar to make drinks or clean. All the servers were very nice and patient, but seemed to be a little overwhelmed and, thus, forgot to bring me a drink I ordered. + +SKINNY: Papago Brewing Company Inc has its pros and cons, but overall its a good place. I would definitely go there for the beer, while the pizza is good but nothing to rant about. Some may disagree with me, but I still prefer Tempe's own Four Peaks. I feel Four Peaks' food is better, better seating, and the beers are just as good as Papago's flavors. Don't let this comparison discourage you! Papago's is still a good place to drink and eat.",review,6GJM8bWV3m2cOYPjDjohJA,3,2,0 +UI5ghIUeHYxzwSfaDVUXOA,2012-02-16,NMXfzmoPJgDlbF1x7E5Ppw,4,"Had an opportunity to take our Canadian guests to Aiello's for supper on the weekend. It was a a moderate drive but we were not disappointed. We were rewarded with pleasant surroundings, attentive service and good food. The complementary hot pepper starter was unusual and tasty when coupled with the fresh bread. The Mushroom Ravioli Special was especially enjoyed by my spouse and the other entrees brought favorable reviews from our guests. All in all an enjoyable dining experience.",review,aPyDfWvzoeBLYJpuz-OHSg,0,0,0 +M_GFrB5jq323JAIh9aU0Bw,2008-11-24,JTlz3wfoh_zx__nOgoONKA,3,"this may be the fastest I have ever Yelped and it proves that I am hopelessly addicted to this foresaken site!!! + +Was in the area and figured I would hit up this burrito place. i was in the mood for the slop that makes a tasty burrito. This certainly was not bad. + +HUGE burrito. + +lots and lots and lots of meat +tons of sauce, guac, cheese, pico, and more of all that too. + +Pretty tasty and now I am stuffed. + +I am in the area from time to time so I think I will go back and kill some more burritos.",review,OsYh3jArm6fgozczE85ZeQ,0,1,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-01-04,SLgZGUP91wV06QT4pVrqNQ,4,"Thank God that The Vig wasn't open when I lived just down the street! I would've lived there! I was back in town in the fall and after brunch across the street at Dick's we needed MORE post-brunch champers. Over to The Vig we went. + +How darn cute! When I lived in Phoenix, this was a BofA training center and my standard ATM spot. I like it better as The Vig. We enjoyed many, many of the $5 mimosas with your choice of fresh juices (orange, grapefruit, strawberry or watermelon). Yummy! We stayed so long and drank so many mimosas that we had to order nachos. They were really tasty. + +Sitting out on the patio in late October in short sleeves with friends and champagne was delightful for this Chicagoan.",review,EVN484M7GZxhVpp61JgQBA,0,0,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2012-08-07,pwBby4MzhVmiBfUJasq0jg,3,"This was my first restaurant in Phoenix. I was taken here for a lunch prior to an interview I had. I was pretty nervous about the whole situation so I don't remember too many details, but I would recommend this place if you're a sushi lover or on the go and need a quick lunch to eat at your desk. Service was great too.",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,1,0 +r3r_bAfa6pZKIhQB82FizQ,2010-07-09,ZWzx7pQbIMNLxib-wZ0tNw,5,"Delicious food, amazing martini's, and wonderful desserts. Every dish I have eaten here has been nothing short of awesome. First, to start they have house infused seasonal vodkas. You can see the vodkas steeping on the bar when you walk in. Appetizers are not overly filling - The frito misto is always seasonal so depending on the time of year you will get different things. The coating is perfect and light so you can really taste the vegetables but still get the crunch. The same is true with the mozzarella. The cheese was fresh and the crunchy crust of fried coating around it was perfect. + +As far as entrees go, the portions are perfectly sized and flavorful. The pasta is perfectly cooked and coated with whatever you choose on the menu. I love the simplicity of some and the complexity of others. Finally, desert has always been good. Try the limoncello cheesecake or any flavor of gelato and you certainly won't be disappointed.",review,3VIRjR2V29TOaI9u64hMig,1,1,0 +BRhKD4BEMg6NagsD3z-0YA,2012-06-03,DrZjmuK4w-eCFRdnZiOkyA,3,"This is the FIRST Red Robin I had ever been to (earlier this year). The service is always really good. Good Veggie Burgers, love the bottomless fries (garlic & sweet potato), cool shakes and mixed drinks. One of the few restaurants to stay open late in this town!!! Great place to come after a movie at Harkins.",review,K0euQLFAcKhQPZ6JxGAryg,0,0,0 +0wRPvS-sG5x-pEMKVuDBJg,2012-07-17,uMD5efbewunrCU6LxqXzxA,4,"This is definitely the best place for breakfast in Wickenburg. Loved all the cowboy decorations, photos of actors from the early Westerns days, and the ""cuckoo"" clock which didn't cuckoo but instead whinnied like a horse. Clean premises, very friendly staff, excellent service, and breakfast for the group came out in due time. Call ahead for groups of more than 4, as most of the booths are small.",review,t0Z7kU8Wt4ouJ2qFO3vxow,0,0,0 +IYYaa562PybzXf8tQnT17w,2011-03-22,gxwyUlAafPsd3Rz9GpYZIA,4,"Sorry, had to deduct a star because it's freakin EXPENSIVE for lawn seats. Really Glendale? You're gonna charge $13 for lawn seats? + +It's a BEAUTIFUL facility! Plenty of grass, plenty of seats, plenty of shade, and a plethora of food choices... all which perfectly align with the baseball experience.",review,yA77gvXdxFViK0mZcSiveA,0,0,0 +zYCGmnEvORQ7pf4Lwfrc2w,2012-04-19,fnJQ1arn9sRH4RoQs8B3xQ,5,"Perfect burritos, polite staff with a couple cuties working here. I love Chipotle!",review,JCpQDETmyGtQ_PJbSnc47w,0,1,0 +qfFSS0A5OXUkCbTeC1fYLw,2008-09-25,ObLm2Kw_Vyj0MthpgwaozA,5,"A few years ago my husband bought me a gift certificate for this spa. Oh my god - it was the most beautiful spa I had ever went to! I had a facial and a massage. In addition to that - I got unlimited day usage of their spa stuff! They had a beautiful locker room that had a sauna and jacuzzi in it. An secluded area where you could lay outside - naked! They also had a huge pool out behind the spa where you could just layout and be lazy. Oh- also they had some sitting rooms with magazines, fire places -oh my goodness. It was awesome! AND - the prices weren't that high compared to other spa's in the valley. Check it out if you can!",review,uVU1FyUPPVxzZ8jbye-rFA,1,4,2 +hebts_NucpamjCG2B9VY5g,2012-07-14,M6tdg-RPnkKG9AKaSHlo_A,1,"Let me start by saying after my experience I surly wish they had half or quarter stars and I am not often found with a lack of words but this is going to take some effort to stomach. + +Strolled into this establishment at about 1:30 am, now to their credit I fully understand the crowd on mill at these hours so I lower my levels of expectations.. + +Place is moderately busy as we walk in, I get to the counter, order some pepperoni pizza and a pretzel with 2 drink cups. Second drink cup is forgot after they ran out of the dispenser, after I remind him he gets a fresh stock of cups to replenish his dispenser but first takes his hand, fingers placed inside the cup and hand me one. Yuck.. Gf didn't catch it so I gave her the first cup and took the lingering finger taste cup as my own. + + +Fast forward a few minutes, guy is in there , his friends are loud and his face is cut wide open from who knows what incident.. He is arguing and finally his friends get him out the door. Now if I ran this place that guy and his yelling and problems would have been asked to stay, his hands Nd bloody shirt bumping and squeezing past people was discussing . But.. Let's let that go because it's busy and again this is MIll and it is 2 am.. + + + +Fast forward 10 minutes.. Tell the guy the ice machine is out, several minutes later.. They fill it.. Again it's busy, no big deal on that one, and with the high temp in the place maybe it killed on the fingerprint bacteria in my cup while we waited.. ""I'm a wishful thinker"" + +Several more minutes go buy of people bustling past, smearing nastily cheese wish sandwich wrappers all o over the floor as We walked by ""place was trashed"" I go back up and ask the guy for our order.. He said"", oh sorry forgot"" I was amused but it's just sliced pizza and a pretzel.. He tosses them in the oven, and a couple minutes later I get them. Well pizza had obviously been there forever but it was pizza, pretzel was hard as a rock and couldn't eat it. + + +Then the show starts.. there had been a few people in there, that obviously knew the gentlemen working the register, the flooding actions are the cause for this reviewing of the above.. + +Short list + +-employee is wiping his sweaty face by hand, receiving money..then is prepping pizza with topping BY BARE HAND.. Placing it in the oven, all with out gloves. This occurs over and over, then when his friends arrive there is a round of hand slaps... Um.. Where did these guys come from, did they wash their hands?, eww. So in the 45 minutes I am in here,no hand washing, no gloves..his hands on food, toppings, money, hands, face, along with all over surfaces possible. Freaking DISGUSTING. + +But it gets better.. His friends that he is conversing with are about to ice the cake.. One of them this red headed guy is reaching behind the counter near the pick up, and grabbing fries out of the Bin with his hands.. This happens no less than 10 times.. + +Another one ask his to meet them in the bathroom... Um what? Yes.. That locked bathroom father 1 am that is closed off to customers.. Hmm my imagination can only wonder what brief activity occurred in the restroom. could my dazed and non health conscious server and front man for this business also be doing drug's one can only speculate. His actions after reflected a very relaxed and dazed person. + +Where I will give this guy a couple points, is end of the night he started picking up the place as it had slowed, well this obviously is his job and they have to clean up at the end of the night anyways..but was surprised at this point. + +At this point and my food not eaten we are done being entertained by watching all this and he asked to take our plate at which time he noticed I didn't eat much. He asked if the pretzel was not good and I choose this time to politely tell him the reasons above as why we didn't finish. + +He took it in stride, with no attitude but said simply they got busy and backed up. I do appreciate that but honestly there is ZERO excuse for even a small percentage of the actions to have taken place. I see this as a health risk and was more comfortable at taco stands in Mexico than this establishment. + + + +In short, I'll be contacting the owner of this location. + +I do realize this is a late night food offering, I do realize the clientele, but I also know this is unacceptable and some poor guy who is mismanaging this place needs a wake up call. + + +I will be back very soon, if anything just to see if changes are made after I voice my concerns. If needed ill be happy to forward my videos to the county health inspector. + + +-Thanks for reading this little novel.",review,QnIm5uXIvBQ8k4FGVSu3CQ,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2012-04-28,6-d31tLaZEqF9mqYG6xlyg,4,Went in after a day of shopping with my mother. We walked into the bar side and decided we wanted to sit in the pew benches on the restaurant side instead. We ordered waters and sodas while munching on a side of chips. My mom got the chicken pot pie and loved the crust and the moist chicken. I got the Meat and Cheese. Although I wish the cheese was a bit more melty the sage pork sausage was great. The dipping gravy tasted of beer. Great addition. The music was fun and the bartender dancing to the music was fun. Great lunch! Will go again when I'm in Tempe. Another plus: enough for left overs!,review,OqeEFFbXGi6KGg9UeN6AQg,0,0,0 +ChmqODwuYP1ewjmWXtxtsg,2011-06-21,epf_obhMpyZe4kIp4WAW-Q,3,"Decent place for legit Chinese food with the usual fast service and decent prices. We were able to enjoy roasted duck, crispy pan fried noodles and honey walnut shrimp. All winners we thoroughly devoured. It's location is convenient and parking is readily available. Seating is plentiful so there was no wait when we arrived. Overall, a good find we'll probably go back to when we're in the mood for real Chinese din din.",review,hcctCQy3bdZMezrUKkZLtA,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2013-01-02,gMTMPAyZWUuYgvfq4eQkIw,5,We live by and love this place! Happy hour is most def the biggest bang for your buck! Try the shrimp boil but only if you like your shrimp a little spicy!,review,ssahHNGm1UDnR2XOYl2q9w,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2012-06-21,zqbJKo1GmJ694PQ-M_4y3g,5,Gallo Blanco has the most delicious ceviche I've ever tasted in AZ. Portion size is plentiful and the chips are quality. I love the indie music selection it really adds to the vibe of Gallo Blanco. If I'm in the area I make it a point to visit.,review,yV6rKdVT7E833ffE6UHwRg,1,0,0 +pOQpwDJMikAgrM8BW3iHnw,2008-12-20,7gOzR7vm5Pt-68-6k1dZ_Q,4,"Very casual. Great white alfredo pizza. We get it with mushrooms, onions and ricotta. So yum! Very pleasant staff. Delivery - quick! Salads are just okay. Standard - w/ iceburge lettuce It's really for the pizza that we go.",review,pVDAcUrUBTz9RGselQfofg,0,1,0 +01cEFI5Pq_RyEwM3GSTopQ,2010-10-24,MOZDvsYt4ydT6gy4svMVsA,4,Great food with family! Good place to laugh and watch a game or two.,review,aGvpUCEKjKc4bqbVDiEhlQ,0,0,0 +14Ys8nYayXPpUouHsyTN1A,2011-12-29,gYoDVHH91Znp93jh2WiZKQ,2,"Played today, course in decent shape for the money. Would be nice if they would educate groundskeepers on not running mower up to you when trying to play. Also would be nice if beverage service would continue after 4 oclock. Course was packed play was slow and no beverage service. Called in but pro shop phones shut off at 4 30 . No ranger on course either to keep groups moving ended up not finishing eighteen,teed off at 12 30.",review,QzOLMG9OXmsHPUb6CYxuSg,0,0,0 +rK9wysMZ3nh6b6dxiG-l_Q,2010-05-10,ds9hTUUdsuE1dJGUEz6FMg,2,"Ok, so we've been here a total of two times... the first was a pretty good experience... not memorable, but ok. Then we went again, last night for Mothers Day. My Dad wanted the Trout so bad, so us Mothers gave in. The only positive thing to say about them is how nice they were, we called to see if we could get in at for dinner at 8:30pm, (they closed at 9pm) they said not a problem. I was kinda impressed cuz we've called other restaraunts and they have turned us down in the same senario.... when we sat down, we ordered right away, it took awhile for us to get our food, i finally had to flag our waitress down and ask her to bring whatever was ready whenever it was ready. My salad was probably the best thing I had that night next to the water. Come on tho, how hard is it to mess up salad and a water! My Dad had the trout, he finished it but said it wasnt the best, my Mom had the Chicken Parmesean. She picked around the stuff she didn't like. I ordered a coconut shrimp apetizer, it arrived cold. The bill for two adult entrees and one appetizer a small ceaser salad and one childs meal was $80.... we still tipped $20, but $100 for one of the worst meals in a long time wasn't worth it. We won't be back at least for awhile.",review,87xBol0dUS8cWao8F-8P9w,1,1,0 +smWlFMgNgfDm8ZUKGvx65A,2008-10-27,1iFwwhNZ8rAUkwtAMYV-Vg,3,"I like F&E. There are some good things in there, but it's kind of like you have to play by its own rules. If you walk in with one specific item on your list, (Examples: pico de gallo. Not that uncommon, right? How about good hamburger buns? Only one kind? Really?) chances are you might not find it. But, you will be tempted by the premade meals and delightful snacks. Fresh chicken salad? I didn't know I wanted that when I walked in, but now I have it. + +Don't come here if you have a strict list that you need to shop for or if you're seeking hard-to-find items. Come here with a friend late on a sunday night when you need ideas to make meals for the rest of the week. + +The store is indeed freezing cold and kind of has that sterile hospital feeling. Lots of really bright lights and WHITE everywhere. The 50% off stuff is great. I got a big package of fettuccine for a dollar. Their prices are a bit odd, though. $0.99 for a pack of four bratwurst, and $2.50 for a can of generic tuna? Well, alright. I'll be back! But now I know under what circumstances to shop here. + +Highlight: This location seems to be run by a rather sassy nun.",review,TWjDnKexHSp0U3UQ3W01Kw,2,4,5 +et2RtW29FPTTFPgu4gsZfw,2011-01-04,ysA0OhPy5BCPJt5VsXEKiA,1,"Rude, rude, rude. I will *never* go back to this place. I don't normally carry cash and when I went to pick up my son's pants for his recital that night, I was in a little bit of a jam (they only take cash or checks). When I suggested they might put this on the claim ticket, or at least mention it when people drop off their clothes, the owner pointed to an itty bitty sign and told me ""we have signs everywhere."" The owner was hostile and argumentative and just didn't care about what I had to say. Then he hovered over me while my son tried his pants on, like I was going to steal something (the place is TINY). I went to an ATM and pulled out cash, it wasn't that big of a deal, but this place has no customer service skills whatsoever. I won't ever go there again. Steer clear.",review,kuJKFidhXZ2Mv9R7_GFmiQ,0,1,0 +onwUqByAIhtkyJsEITV5lQ,2010-10-08,k5pNPY-LKDpaCQ6F9BQD-Q,1,"The Vine Tavern (i'll omit the word Eatery as i'm fairly certain this term can't be applied to the food they serve at this establishment) is a vortex sort of culmination hang-out for low-brow Fred Durst clones and future (day-shift) strippers. With that being said, this cesspool of a building hasn't burned to the ground yet so I feel compelled to warn others before they consider spending an evening there. + +Being new to the Tempe area, myself and a small group of friends decided to drop in to check it out. As we approached the-dimly lit building I began to have second thoughts: my bloomy sense was tingling (more on this later). As we entered we were greeted by a lovely bouncer type gentlemen who begged us to pay the 5$ cover.... seriously. We were seated towards the back near a group of teenage mothers and their burly counterparts. We ordered food... + +The food arrived in a timely manner, it may have been poisoned but i was too hungry to care. I ordered the mushroom/swiss burger.... 9 dollars-ish. If Mcdonalds ever begins selling their products in the frozen food aisle of grocery stores it might taste something like what they serve at The Vine. I had immediate food regret, my only consolation was the 1$ you call its and the poor old man behind the mic with his acoustic guitar wrapping up his set. Surreal. .. . .We regrettably paid and escaped out the back. + +Good: Cheap Drinks !!!! +Bad: You may be stabbed!!!",review,wEMn5U0mlTp3Td5n2ZgwKQ,2,3,5 +wct7rZKyZqZftzmAU-vhWQ,2011-12-21,bpETPtrqZge1KjM0cbEIgw,5,"What a joy to discover Thai Lahna with my friend Keith Galbut who has been going here for over 10 years. I can see why. Family owned and operated - and everyone is very friendly and helpful. Of course all that matters is the food, right - and it's marvelous. We tried several dishes and all were well spiced and wonderful. Highly recommended.",review,2BzcoI6Kiq-2RQ9EUFR5Tw,0,0,0 +7SO_rX1F6rQEl-5s3wZxgQ,2008-01-14,Co24bDyiWK0XStIL8FzZGQ,4,"Given its location and surroundings (Postino's, fancy little grocery, etc), LGO is surprisingly casual inside, which I actually enjoyed. + +There seemed to be a decent selection of wine (sorry, I didn't pay attention to the beer list) and if they don't have what you want, you can grab a bottle at the grocery and drink that. I had the sangria, but didn't really love it. + +The pizza though, oi, so yummy. We had just cheese and sausage, and it was delicious. I was a little iffy ordering sausage as I'm pretty picky about it, but it was great. Had I not been trying to be a little ladylike, I could see myself scarfing down most of a whole pizza. + +I also have bumped LGO to the top of my list of good places to take out of town guests, especially pickier eaters. Who doesn't love pizza? + +Update: The roasted corn pizza is FANTASTIC.",review,-txH2zJSBZQHO6RWvoWXuQ,3,1,1 +vfLog2bLJGl6hAFtGtr0GQ,2012-06-25,o5KPIpdCtkfOgungohck4g,3,"Cool atmosphere and good service. +The food is good but seems they are still working on their recipes. The complimentary bread was cold (a small but important detail) and the ""salsa verde"" was mediocre. I had the Orange and Fennel Prawns and there was too much orange and barely any fennel. My boyfriend had the Lobster Mac n' Cheese. Said the lobster didn't taste fresh and the sauce was too rich. +Ernie, the manager came over and introduced himself. He explained the remodel from the previous concept. +We'll definitely come back to support a local place at CityScape. I just hope to see some improvements in the food.",review,-2u23VxjDrJhHnPW8KxCyQ,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2009-11-30,QqZj1yJMmpf7BhdFB_sN9A,4,"I know my 2 girlfriends that absolutely LOVE this place will balk at my 4 stars instead of 5. But honestly, I think this place is slightly overrated. Don't get me wrong, I like this place, and I oblige them every time they want to go, but I think 4 stars is just right for the rating. + +We went there this weekend, and the typical scenario went down. Parking was cramped (lucked out to get a ""valet"" spot which I parked into myself as it was right out front by the entrance - no I'm not waiting for you Mr. Valet Dude to get into my car and pull it forward into the spot right in front of my face, thank you very much), and there was a short wait (maybe 10-15 minutes). We sat outside, which wasn't ideal since it was cold and drizzly, but we had patio heaters on both sides of our table so it was OK. + +Sadly we didn't make their $5 wine special, which ends at 5pm, so we were paying full price for the glasses of wine - ranging from $8 to about $12-13. I don't know about you, but I really am not a fan of paying $10 for a glass of wine when I can pay that for an entire bottle. But alas, I had 2 different wines through the course of the night, both on recommendation from the servers, and both decent. + +We ordered the infamous bruschetta, with the 4 choices being: smoked salmon (YUM!), warm artichoke (tasty), roasted red pepper (still good), and white bean with tomato (OK, but nothing to write home about). + +For dinner, I had the half & half combo (where you get to choose 2 different items), and I chose the mixed green salad (REALLY delicious, with an awesome combination of greens, pears, grapes, gorgonzola cheese, pecans, & poppyseed dressing) and half of a turkey/pesto pannini. The pannini was QUITE boring. Didn't have much flavor at all. I think it was lacking on the pesto. + +And honestly, this is what I come to expect at Postino. Some things are just unbelievable and you want to lick your plate clean, and other things are simply boring and tasteless (like the white bean/tomato bruschetta and the turkey/pesto pannini). + +And hence my rating of 4 stars rather than 5. If the parking was easier, the wines were always $5 a glass, and the food was consistent, I would give it 5 stars. Fair enough? :)",review,weYT-xJwz8o7mLNWIhD6HA,4,4,3 +jnzROxEjNkgeo5Ju3F8qzQ,2010-03-26,cTr84XfzGeUmYjNCxUWcWA,3,"I went here last year when I was in AZ, I thought it was God's gift to Mexican food... I was a bit tipsy last year when I went there... I went again last week, it was ""ehhhh"". Don't get me wrong, still good, but not as wonderful as I remembered... not even close. + +We had to wait an hour for a table, the waiter made us wait about 15 minutes (not kidding) for water and chips/salsa... Seriously, 15 minutes? You dumbass! + +The desserts were super good though, that was the upside...",review,Uxnqej_rEAj-jUOXdk1Kxw,0,0,0 +DDg0jSO9C8_FdOIcEq4dDg,2011-08-29,w_luF8jbwLEqQZF0dxIiPA,5,"My roommate came home the other night with a Chocolate Cream pie and oh. my goodness! It is AMAZING! The crust is this wonderful crunchy chocolately wonderfulness. I think she bought a Groupon and I don't know how much she paid but the pie was so good, regardless of full price, I'm sure it's worth it!",review,rlcJkEoYzuiS7iF5XfXCMA,0,2,0 +4DhqZ0tyi2V2Mp8IqTREAA,2010-05-19,rBkXFIhljFRx6yXrjnD2AA,3,"Hmmm ... where to start. Food was good, flavorful, no complaints; although for the price I did not think the portions were that great - but everything was tasty and everyone enjoyed their meals. + +It's a big open place, with concrete floors and picnic table type environment. Patio with misters and big open doors to the outside. A good atmosphere for BBQ. Someone mentioned the parking being marginal (very true - same as when this was a bar in it's prior life). I think my biggest downside is how much I had to serve myself - go to the counter to order, pay, get to table, get drinks, get place settings (plastic utensils), for a beer have to go to the separate bar area, order, pay, return for more, etc. (can't order beer where you order food). + +While I enjoyed the food, not sure how often I'll be back - would not want to be there when it was crowded and have to wait in lines repeatedly.",review,na7c6gMDyReSKu5Yz2BM3g,1,2,1 +jfDBaBgwINrGYAo8p2MJ4g,2011-02-24,5awuhFhKTGmU3dTYq5spRA,5,"The Phoenix metro area is definitely not known for authentic Asian cuisine. China Magic Noodle House, however, is the real deal. This place reminds me of the Taiwanese delis that I used to go to in LA, as well as noodle houses that I've frequented in Taipei. + +They have a great selection of cold noodle, hot noodle and soup noodle dishes. And, a variety of ways to have your noodles (I typically order the thick noodles or shaved noodles). There's always a veggie on the whiteboard to try and the fried tofu is very tender and tasty with the dipping sauce. + +If you're looking for a reasonably priced, ethnically authentic meal in Phoenix (especially the East Valley), China Magic Noodle House should be near the top, if not first, on your list. the only negative that I would have about this place is that there isn't enough choices where chicken is the main protein.",review,Jxy_Kcymck0Z0QN8XE7rmQ,0,1,0 +JM6X0PJBcMkAjOuZqMaZsQ,2010-10-28,Ljx8xFy2GwtQnu1_Ds4QGA,5,Was looking for a nice dinner place in Peoria to send my mom and step-dad for a birthday celebration. The people at Flemings were wonderful. They took my request over the phone and made sure they had a lovely evening. Mom raved about the service and the photos she sent made the food look fantastic!,review,v_T4PoUlyE3kpBBXpmVWNA,0,0,0 +136zvrfN6Kpr9tFj3OMNUQ,2010-03-08,RL7JrAroxWw8kjrN2b_4IA,3,"The food here is good. It's not outstanding, or anything to write home about, but it IS tasty. + +The whole making a tortilla in front of your eyes seems a little kitch-y to me, but so what? Everyone has to have a marketing ploy. + +I've eaten in, and taken out, and the burrito quality is about the same. Personally, I like Chipotle better, as I like the dressing on their veggie salad. + +My one beef (amusing, since I only get the beans) is that they were a little too light handed with everything. I got hardly any guacamole or sour cream, and that is really what helps to make a delicious tasty burrito of goodness in my eyes. + +Will I go back? Certainly, if it's on my way and I'm hungry. Will I choose to seek it out? Probably not.",review,rR5W8Bj-IGu6sw1_1v4m7g,1,1,0 +FV0BkoGOd3Yu_eJnXY15ZA,2006-12-16,deF_5OANi4UoW8PlIglz3A,5,"great food... HUGE wine list (same as Kashmere)... whatever you do make sure to get there cob salad thing (stedson chopped salad)... I substituted the salmon for chicken, but it is still out of this world... i know people that have brought in chefs from out-of-town to figure out what is in it so they can bring it home to their city... don't remember much else... but i remember i have never had anything bad since i have been going there.",review,llkm_iXQszkN5DZvmqjNqA,0,1,0 +1JtBZRcuyLnFn9pGmwMddg,2010-07-04,buEkVuCaYnf--1OPUf_-EA,3,"i know they're doing their jobs and i can understand that. but we couldn't shake our saleslady. we finally had to say that if she didn't leave us alone, we were going to leave. we absolutely couldn't discuss anything because she was CONSTANTLY THERE! we even said we'll come find you if we need any help. literally any piece we glanced at, touched, or came near, she was on top of us ""oh isn't this a great piece. we can set up financing and lock in the sales price, and if you buy 5k worth today with cash, we'll throw in...etc"". every single item. +they have nice stuff, no question about that. but i know this game. and it's not fun. it makes shopping miserable. and besides, it's too expensive for us. we got 3 of the same, exact pieces (same model, same sku) at pruitts for less than half we would have paid at Ashleys.",review,ST8Yzlk2MqKlcaLqL2djBg,0,1,0 +yJr24Yy1K6bt2G9fX3_zPA,2011-05-26,f6f62rroMa4vSgK1Emmqxw,2,"I have never written a review, but the food at Havana Cafe was so underwhelming (and not in the least bit good) that I feel compelled to share. +I ordered the Pollo Ajillo which, in reality, was a pile of salt with a side of chicken and rice. I opted for Arroz con Gandules instead of white rice as it has been years since I have had this tasty Puerto Rican side. The whole thing was almost inedible... I came home and actually brushed my teeth immediately, it was so bad! My husband had the Pollo Cubano, which was equally underwhelming and nothing that we could not make at home ourselves. The restaurant gets an extra star for the wonderful Cafe Cubano and the extremely attentive wait staff . I had high hopes for this place but the next time I have a craving for Cuban food, I will be heading to Sabor Cubano.",review,lJle0RtEcaRo41cVVRLv6A,0,1,0 +jfDBaBgwINrGYAo8p2MJ4g,2011-11-17,Aoi2mMoXLX_XX_NEip6Pog,4,"This place is an amazing little find. It serves fresh, delicious noodles for next to nothing. The absolute best part of this place is that you get to pick the kind of noodle you want meaning you can try your favorite dish multiple times while changing it up!",review,Wn4cr3qd67lYL_aya4I2TA,0,0,0 +R2FuwuSjmyvzNWNfqzKUvw,2012-03-06,cmq2sBWQoBvnJk4L0hXLyg,5,Very delicious food without long waits! The staff is very friendly and accommodating. I look forward to going back.,review,j4Bk_hLCc6jpOD-Mb4F48g,0,1,0 +U605aUo9MJn5vgLfP3yYKg,2010-05-03,Q55prN7JXMbndsHGr-O6Cw,4,"Same as the others... + +Clean, friendly and good. + +I was able to order a chicken legs and mashed taters for one kid, coleslaw and frys for the other, 2 kids meals for the adults and no one complained. They are always more then happy to help you in anyway possible.",review,C6IOtaaYdLIT5fWd7ZYIuA,4,3,2 +Aicnm12Zped8nQFXyRRFvw,2007-08-07,OHkVZtMNwwUoSThKHBzb3A,4,Byblos has some of the best Middle Eastern food I've ever tasted. Their falafels and Tzatziki are delicious. And the restaurant serves up an amazing tomato cream soup which will have you lapping up every last bite. This is a great lunchtime destination.,review,nWouNfZD3Pw08RYizxkqcA,1,0,1 +tHP-YGYtc5-t3MofXFgk2A,2011-01-14,11dydAJbZItvNFkhIzzAGg,2,"If I'm rating strictly on getting what I wanted out of the visit, this doctor is fine. He checked my eyes, did all of the tests and I walked out with my prescription. + +Here is why I can't give him a good review (and this is solely based on my personality and preferences while dealing with the service industry- others may think he's wonderful...) + +1) I purposely chose an early morning (7:30 a.m.) appointment so that I would get to work by 9. My office is less than a mile from his office and I was still running into work at 9:05 a.m. This is due to the very long-winded soap-box like speech that Dr. Greene gave me. I am a get-in, get-out type of person who hates small talk and hates self-promotion even more and if I heard him tell me how often he visits the gym or works out one more time, I probably would have gauged my eyes out right there to never need an optometrist again. I also learned all about his wife, friend's boat...you name it...he told me about it (completely unsolicited). + +2) I am an educated individual who does not need an hour-long explanation- filled with graphical references and cutesy anecdotes- about why I now need progressive lenses. + +3) The fear-inducing sales pitch by the staff and the doctor was a bit much. I realize that all optometrists and dentists are going this route now- ""buy this test (not covered by insurance) and be free from worry that you'll instantly go blind""; however, if I want something, I'll ask for it...just like any other retailer. + +Like I said...I got what I needed, a solid eye exam and prescription. However, I purposely did not buy glasses there due to the doctor's cheesy personality and the ""hard-sell"" environment. Again, there are obviously (based on the other posters) people who are attracted to this type of personality...I am not one of them. + +Hence, why I do most of my shopping online.",review,SIG_tdhVIapMsHzYjIFyAg,0,0,1 +YCCDMLcb7UW8G-o_HsWiiA,2009-11-23,U6JvoV0WYiNgUANabXMQsw,3,"Steak, yes, but 2 other words first come to mind when reminiscing about Modern Steak: Retail Therapy. + +No, I'm not talking about the fact that Modern Steak is conveniently (albeit awkwardly) located in Scottsdale's Fashion Square. Instead, I think back fondly on a delightful little cocktail -- Belvedere, Grand Marnier, strawberry, basil and lemon juice, served chilled in a martini glass (as expected), but also with a little carafe of extr drinky-drink (unexpected), complete with a suspended ice-ball to keep your drink cold while you sip -- without watering it down. GENIUS. + +Ok, ok, so you're wondering: why the 3 stars? Well, genius cocktails only get you so far. I like to think that I've sampled a fair number of steaks in my day, from frou-frou to straight-from-farm fresh, and I gotta say that the whole steak experience at Modern Steak was about a 3 -- not bad, but not amazing. Just pretty...average. And for $46, I'm not %100 convinced it was worth it. Let me elaborate: + + - 12 oz. filet: I ordered it three of their five sauces -- the Steak Sauce (which cost extra...bummer) and the House-Made Ketchup. Now, one of the sauces that I simply a-dore with a nice steak is a Peppercorn sauce...so I was a little bummed when they didn't have one. So after getting a recommendation for the Steak Sauce, I went with it, and it was...well, kind of a let down. I didn't love either sauce, truth be told. Granted, I haven't tried the other three, so I guess I'll have to go back and check them out, but all in all, my steak experience was lessened by these sauces, rather than heightened. Boo. + + - Sides: we ordered the Roasted Brussel Sprouts and Yukon Gold Potato Puree. The sprouts were...meh, but I'm willing to admit that I've been spoiled by the best brussel sprouts of all time at a little place called Larchmont Grill in Los Feliz, CA. They are fantastic. But even so, I'm not convinced these were really that great...I felt they were a definite let down. As for the potatoes, they were literally SWIMMING in butter, which made them very difficult to eat...and to top it all off, both sides were pretty small, even for two people. + +All in all, I felt the level at which the meal was prepared was a bit sub-par considering the prices and what I can imagine they were going for...there are a lot of restaurants that do what they do, and do it a lot better, so if they want to compete, they're going to need to up their game. UP it. + +Combined with the fact that we were sitting awkwardly on the patio, which was really just sort of jutting out into the mall, I can't justify more than 3 stars. However, would I try it again? Absolutley. Get the steak? Maybe not. But I think that, for a relatively new restaurant, they're well on their way.",review,l4nJ5rCyw_qaFiO0-NLhtw,2,5,2 +ZRrIwqIUMII1b2keMI8QRw,2012-07-19,2djiOpkUgFKJfMPfmg04ng,3,Very dated but clean. Fine for a one night stop on road trip. Free coffee in morning & cookies at night. Bathroom tiny!,review,gkCb6ngzXxSXREI2qCvXaA,0,0,0 +LjqY98zL96sem_PxC6ZG3g,2007-01-22,lYMhA9YpNOUswD2yKnJTGA,5,"One word: PISTACHIO... +in all its glory... +no need to say more.",review,Udj_a2KWaxqeOHu_1FrFAg,1,1,1 +E4KKFmUsWzgv-pPISdi1BQ,2012-06-30,GokYFMw-3hqTVfpAdaEB_A,3,"Ruby Tuesday's salad bar and healthier choices (With caloric count for calorie counters) for entrees is what sets it apart from other chain restaurants that serve your basic American style cuisine. The salad bar includes 2 types of base greens (Iceberg and mixed greens), with various toppings (Edamame, peas, mushrooms, croutons etc.) and dressings (Italian, low fat balsamic, ranch, thousand island, etc). + +Generally, with any main entree, you will have your choice of side and salad bar, or 2 sides. They also have more healthy side options such as roasted spaghetti squash and steamed broccoli. My husband had the chicken trio, and I had the creole fish on our visit. The chicken was nicely presented, and was fairly tender and juicy. Of the three different toppings (Balsamic and tomato, mushroom cheese, and mango salsa), my least favorite was the mango salsa since the mango in it, while fresh, wasn't totally ripe. The creole fish was presented in a Spartan way, with just one piece of fish with a mound of side next to it on a plain white plate. The fish (Some type of white fish, maybe carp?) was a freshwater white-flesh fish and had a decent seasoning and was cooked well. + +Service was friendly, but we did not have any silverware on our table when we were seated and had to ask for it after our entrees were served to us. Drinks were refilled quickly as needed. + +I haven't indulged in a lot of the desserts, but I am a fan of the Italian creme cake. It's moist, and not too sweet. + +Prices are moderate, and entrees will be around 15 dollars, give or take a few dollars.",review,uZbTb-u-GVjTa2gtQfry5g,1,1,0 +XI-_Y2XRw03mozGx0Z90Gw,2012-08-08,lpLwO739FKKNpP_k2oSqKg,3,"It's Baja Fresh, what can i say? It's clean, they're fast and it's a hell of a lot better than McDonald's. I usually call in my lunch order from work and it's almost always ready and waiting when I get there to pick it up. + +I do have to say that their pico de gallo is great and I could probably live on just that for the rest of my life. I get extra cups of it and eat it all by itself.",review,wNqwKWaRjClmcKsoJJRFow,1,1,1 +6rijZ1qIjiq1Dgdy35iqxw,2009-03-15,XmBI9fdKFhPx_6Firl9CtQ,4,"This is obviously the mecca of the Phoenician mountain hikes, and deservedly so. Camelback is the perfect mix of central location, unparalleled views and, most importantly, a grueling workout. I love hiking this mountain because of the mix of rock types. It starts out as red rock near the base up to the hella scary rails, then very suddenly changes to a granite look-alike (Anyone know if that's actually granite about halfway up? It sure looks like it.) The last leg is bascially boulders that you have to crawl over, but the view at the top is an unbeatable 360-degree view of the Valley. Though South Mountain has a more centralized view, on Camelback you really feel on top of the whole Valley. + +My only complaints: First, the parking is a nightmare, especially on the weekends. Perhaps it's just due to its reputation (and the surplus of multimillion-dollar homes in the area), but it can be hard to find a spot. Plus, people like to jockey for position on those rails, especially coming down, so be careful you don't take a tumble.",review,xkTbpCc-YhU8-EXZDA7u0g,0,0,0 +JIV4LF8KE8pAUnU28QAhIw,2011-03-07,8uq5VA6fxCz1BuEXel82Dg,2,"I'm not a big fan of this place. I hate these ""centers"" where you have to park in a parking garage and pay to park. I'm already paying to go the shops and restaraunts, why do I need to pay to park too? Seems stupid and not a good way to get peopel to frequent your business. I'd rather go to Desert Ridge, Tempe Marketplace or any other one.",review,0mqHhdKEdak_A1FBhFNXqA,0,2,0 +ncuj9qx4WjprfJfYJGdmtQ,2009-07-19,qVBgP1muzJcetre6j0SfLA,5,"When I first stepped into Smeeks, my entire face lit up, I was figuratively (and quite literally) ""a kid in a candy store."" + +It's is a true one of a kind store, it's so entertaining to just walk around in. The decor is fun, the inventory is even more fun, and the photo booth is by far the most fun! + +The walls are full of great novelty items, such as the Smoking Baby (that actually smokes!), Yodeling Pickle (that actually yodels!), and Fake Cigarettes that are surprisingly realistic! Plus, Smeeks has a lot of really cool, and delicious candy. My personal favorite was the Fat Pig organic chocolate bar (with Puntini coming in a close second). + +Smeeks is most definitely my new favorite store in CenPho!",review,7NF_JQ18tkXQqs_eSVWqKw,1,3,2 +yc5AH9H71xJidA_J2mChLA,2011-06-20,R1FrxnJUmd2TOwBdF_IU5g,2,"I always hate giving bad reviews, but our service left quite a bit to be desired. I can normally dismiss such things, but it became evident that our bad service was not a fluke. + +We arrived around 10:00 and was told that food would only be served until 11. That wouldn't be a problem at all except that our waitress didn't return with menus until close to 10:30 and then returned to take our orders at only a few minutes before 11. The place had other patrons, but it certainly wasn't so busy as to take an hour to get our orders. Unfortunately, on each of our visits, the waitress was half listening and seemed easily confused + +The food itself was quite good. The Shepherd's pie was hot and tasty and the bloody marys were actually perfectly spiced. Neither was worth getting excited about, but they were certainly decent and reasonably priced. + +Considerably later in the evening, our waitress returned with the bill. There was one extra drink on the bill which no one ordered and she was perfectly friendly about saying she'd remove it, but we spent a good five minutes as she kept getting confused about our - apparently - very complicated instructions of ""$20 on the credit card. The rest in cash"" She continually read back excessively complex scenarios, and we kept asking her simply to put twenty on the card, that's all. + +When she returned, she had taken $20 of our cash towards the bill, charged $60 to the card and kept the remaining $55 in cash as a tip. That's just shy of a 75% tip she assigned herself. + +We spoke to the manager, who couldn't find her for some time, and when she showed up, she blamed us repeatedly. She finally refunded the card and brought us our new bill, with the extra drink. + +It wasn't worth arguing about at that point. + +The sad part is that everyone at my table, and our surrounding tables started telling similar tales from past visits. I guess this kind of service is not uncommon.",review,1F5G7Tdo14xzsGyISkHDvQ,0,2,0 +sbsFamEj5wDxNAjUKrMcSw,2010-04-17,OvWclW10lovDNUq8JwWKCw,1,"Honestly the drinks are overpriced and have a hint of rubbing alcohol +Honestly my lunch was just okay +Honestly they have a drink called the stigmata +Honestly I am dreading having to give them 2 stars given the hype + +But, I am supposed to be honest. + +This place has been the buzz since before I returned stateside. My coworkers had also been hearing the same buzz. We just had to go as the finale to our week of lunch. Yeah, I probably would've been better off at the Billet Bar across the street. I mean it is biker week. The people watching would've been stellar. The only people watching I had at RnR was the gorgeous server outside our window on the patio. But even his piece of art body won't bring me back. + +The first hint should've really been the overpriced drinks we started with. I figured for that price they should be damn good so I ordered some lime concoction. A coworker got the stigmata. Holy strong... and not in a good way. I mean, I appreciate my drink as much as the next but not when I can't even enjoy it. + +One of my other coworkers on the other hand, was enjoying his blue moon. That was until he held it up to take another sip and the entire bottom of his glass fell off.. yes.. fell in one piece.. onto our table. What happened to the contents do you ask? That went all over him, the table, inside someone's wallet, and onto an iPhone and my face. The waiter wasn't even really apologetic about it aside from giving us some extra cloth napkins which weren't soaking anything up at all. No wet rag, no comp, no apology, nothing but another glass of blue moon we were hoping wasn't bought at a prank store and a sticky table, faces, and sunglasses. + +The chicken lollipops were not what I expected, but really weren't bad. I did enjoy those. I also enjoyed the presentation of my fries. Cute silver bucket. Tons of fries. Couldn't finish. + +I ended up getting a chicken sandwich that had brie and some other goodness on it. Totally forgot to order it without tomato, but I picked it off easily. + +I know what you're thinking, they serve breakfast here til 2pm, why the hell did the breakfast queen not order breakfast. Honestly, none of it wooed me enough that it looked delicious. They had a make your own omelet that was on my short list of things to order, but I'm glad I didn't after seeing a coworker's tiny ass omelet and bread with no other side for $10. Also, I highly doubt their Amish french toast is all that Amish. Just sayin'. I know a bit or two about Amish goodness. + +So, back to my lunch.. it was just eh, which was sad. The description sounded so delicious I really was expecting to be wowed.. finally.. after all the mishaps I'd had up until this point. I do admit I loved the bread. It was delicious. I also appreciated that despite them not having honey mustard, aioli, or anything else to dip my fries in aside from ketchup and barbeque sauce (which was given with the sweet potato fries.. ew) they tried to make me honey mustard. Unfortunately it was just honey mixed in with bottle mustard ketchup. I ended up using the ranch dressing from the lollipops. + +What I paid for this was ridiculous. +The way they reacted to the beer mishap was ridiculous. +The food was meh. +Not even I was tempted to try breakfast there. +It was like the beautiful model that has no brains.... and I want some brain thought going into my dining experience. Don't try to woo me with simple sex appeal. + +One of my coworkers commented that maybe in 6 months when the pans are seasoned well after being used the place will be worth it to try again. I told him maybe. + +Had to edit that someone from our table got terribly ill too... oy vey!",review,7zDqr2I0-xpw9HF5Ha54cA,1,7,3 +o-OV2LkJxpcCHmI_d4TZiQ,2011-02-05,mBNFVAj5Me5FDlzFY3ACMA,5,"This review corresponds to my first Check-In to Oregano's. + +Outside of the wait times, I've not had a bad experience @ Oreganos. The food was good, the people were friendly and I had a good time. This visit was no exception. Even when my wife got meat in her minestrone soup, the situation was handled impressively well. I've known for years that my wife is a VERY picky eater when dining out, she left all smiles and so did I. + +It's one of few places I go to with ""stuff"" on the walls that I don't find obnoxious. + +Keep up the good work.",review,9JcWUImFT29_QrBO8mlcdA,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-09-01,S52X40bDwyYLRb_4x8LoyQ,5,"Excellent brunch food and great Bloody Marys! They make their own bread onsite, which is to die for! Love it. Hate the valet parking.",review,D8Uf7blD-hozwcTCDAk1bA,0,0,0 +EOCQ5E0lakUyBvUH0L9--g,2009-02-20,Hw0IOfTf-SpkByFAG7BilQ,4,"My friend who I was visiting and I went here for a fundraiser type of a deal. I don't know what I was expecting but I really liked the island concept of the place. My friend recommended a salad and I got a Caribbean chicken salad with some sort of coconut rice, chicken, oranges, pineapple, tortilla strips, etc. Well, the salad was huge!!! The honey lime dressing was very flavorful and complimented the salad well. We shared the rumbi fries, which were a combination of sweet and regular fries, and as aforementioned in some other reviews, I love the sweet potato fries and wish they all could have been that (do I sound like the Beach Boys?). + +The decor was pretty cute and the music was great (Marley, Buffett type stuff). The rice bowls looked fantastic, as did the sandwiches. The prices were pretty good, considering the amount of food you received.",review,0Kz7-hBrrtBTdKBpEqb6AA,0,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2012-10-20,huxJYY1CrRta2AZL6Gyoig,5,"Chopped Salad was fabulous, as was the lamb burger. Service was top rate.",review,G5vTGbTHvyg8J9xmLLBy7Q,0,0,0 +xz1fQwwVAhqA9MsmMaGyZA,2011-06-22,g1jv4rFme2Y5UCSSi38cug,5,"Visited this restaurant last week with a groupon special, not expecting their best service since I was using a coupon. I was pleasantly surprised on how great the service was! Our waitress was knowledgeable and friendly which made for a great happy hour! Their guacamole is great and their assorted chip basket made everything extra yummy! + +I'll definitely be returning :)",review,3d-h6xMt6aXb4MfXTMpAYA,0,0,0 +s1dex3Z3QoqiK7V-zXUgAw,2012-05-05,jby9csL18RfTe8oUpWFf4A,5,"This is the most comfortable place to have a glass of wine, relax, and enjoy some great food. Their service is amazing. There are really comfy seats and couches inside and great outdoor seating. You could literally spend hours here. They have wi-fi, so you can chill out on your CPU or IPad. The bar super cool. Very nice bartenders that are knowledgable and accommodating. Their wine is killer, of course, or they wouldn't be named 5th and Wine right?",review,IsvpOkTel_AWtGTAapM6XQ,0,1,0 +eGevCRobYnA_HSj60sEWvQ,2010-01-18,_U__5Z9XLC8LR3-3UdR3ww,5,"Pita Jungle can do NO WRONG in my eyes! + +The food has always been amazing! I have been going here for 10 years or so and have never left displeased. Also they are a home spun local business, which always makes me happy! + +Yes, they do have hipper then thou hipster working there, but those hipsters can sure make a mean hummus! + +I have many favorites which is starting to make it hard when I go there, because I want them all! Pita Jungles portions are always so generous that I have never even finished what I ordered. + +My new fav is the Lentil Fetoosh Salad, the mix of the lentils and rice with the caramelized onions over the fresh mixed greens with that lemon vinaigrette is WHOA! Its incredibly filling, split it with 2 or 4 friends, seriously! + +Another fav is off the starters section, but its so much food that I never finish! The lavosh pita crisp! Its like a fancy spicy supped up cheese crisp! + +Thank You Pita Jungle for bringing bomb diggity food to the valley!",review,6ts41fCsDKHbFZaKOMNmVQ,0,0,0 +v68yAIw0gpn15xwtcR_rKg,2012-06-15,khrdbAbNc55KawLbyam7aA,2,I moved to phoenix from northern California where I would get my Dutch Bros. fix almost every day! Either I was spoiled by the great customer service in my area or the service here is really that horrible. I've gone a handful of times and they have all been extremely shallow and inattentive. Not to mention they've all charged me different prices for the same drink! One person charges me $3.50 and someone else charges me $5.25?? Get your act together and be a bit more friendly and real with your customers.,review,Capf_zG28-3Kx68BegCyAA,0,0,0 +WbeZe2BttJlZcHa3B9b_lw,2012-10-24,tTGXjt1QZcBnfNmrYLCYKA,1,"The only reason 1 star can be given is the flavor choices and taste. The SMALLEST wings I have ever seen, they must be off of baby chicks. I thought it was getting punked, actually LOL. Never to be back",review,C_Mu2W625yJWgswDsp_dOw,1,0,0 +LuTLXVyJvgshMlXTBw-Now,2011-04-03,JB22Hz08FvceJBiP0yt2XQ,1,"I have so many friends that love this chain, but I'm not a fan. I've eaten at different locations across different states, but always end up sick. I think that I must be allergic to a seasoning that they apply to everything. I've gotten sick from salad, pasta, to steaks. Needless to say, if a friend wants to eat dinner here, it's tea or water only for me.",review,fLjjtm4beQfqPxLfeuqboA,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-03-25,38g8SK5MYuRCWw5kvrk4_w,4,"You are so clean, Sky Harbor. +I don't mind flying out of this airport. The flight attendants are nice. + +Security is fast and thorough. I really dislike one lady that works in security, because she was rude to me for no reason. It probably wouldn't have bugged me so much if it weren't for the fact that it was 11:45 PM, I had just worked a double, and I was being forced to fly to Ohio....where it was cold and still had snow on the ground.. Oh not to mention on my Spring Break. + +Anyway, the stores are nice and have a good amount of nice items to buy for your flight to keep you occupied. + +Flights are on time the majority of the time, and when they aren't they at least warn you.. *cough cough* Cleveland Hopkins International *cough cough*. + +I suppose it could use some remodeling.",review,eL2AbD_vXdP57eewFH21lQ,1,1,1 +znk1y9lL5zbR1s3EpeojZw,2012-03-09,FAyctGefcKSgWQQuL_QOSA,4,"We had a pretty darn good time. + +Decided to take my two nieces to the festival. Our total cost for 3 of us w/ 2 bracelets before food and extras was $64 - and the girls got on almost every ride, even the big, scary ones! We went on a Friday at 4ish and the crowd was perfect and relaxed.. absolutely no lines. Come 6pm, though, that all changed. The lines got big and it started to not matter to get our bracelets worth of rides for the wait in line (plus the cold night air!). Also, come 6pm, it just got plain ridiculous with all these little high school kids wearing skimpy clothes and making out and talking bad (where are these kid's parents!?!.. who raised these kids!?!).. it got annoying real quick. + +The shows: +- Ostrich Race at 6pm was good - kinda funny, but not that entertaining +- Monkey Show at 9pm was AWESOME - I saw this show last year when we went with the in-laws and I *still* laughed my butt off (easily amused maybe?) +- Petting Zoo - LOVE this.. they had a lot of baby goats (my fave!) and the animals were never menacing and actually very docile. +- In the past I saw the trapeze show and it was entertaining, though the motorcycles in the metal sphere was quite impressive and very entertaining + +Overall, the price was decent for the entertainment and the rides the gals got to enjoy; the food was typical fair food (FYI, DO shop around.. prices change across similar products by 2-3$ sometimes, so feel free to shop around for water bottles and other food staples); the staff running the rides were decent people (not creepy, which can be the status quo); the ambiance is good (not OVERLY ghetto) but caution that after 7pm, it gets more crowded with high school kids.. so more lines and more stupid conversations you get to listen to.. yay!",review,A99dyhEqcd_yXKPfBWeZHA,0,1,0 +duHUQFn7K-Ybs1rPI4AOEQ,2010-06-11,LApGjBwHeNnKCvwwIxmDxQ,4,"Yeah, it's a chain and while not haute cuisine, we had a very good meal there. We were there on a busy Saturday night and we had great, friendly and quick service and our food was quite good. + +Not only is it a good value for the neighborhood, I thought it was downright cheap for what you get. (It's probably roughly comparable to The Hillstone Group's Houston's or Bandera in terms of quality and service at about half the price.) + +Great salads too. + +I wouldn't necessarily go out of my way for it, but it's a very reasonable choice if you happen to be at Fashion Square. + +Dinner for 2 with drinks, about fifty bucks.",review,d66FhQQZzFDKxklh6t63RA,0,1,0 +AkOruz5CrCxUmXe1p_WoRg,2011-08-13,UVKtVQZgEIT-kNpEp5NqMA,5,I love the menu here it has many selections of many cultures including Italian!!!,review,TYKa4QE3IkSndx80rhuH7Q,0,0,0 +nfyqtEoufkhjv97IueK7Ow,2012-05-15,BnA5IJia3_hC1usM0rVLiA,2,"We've eaten at Arriba a few times now. I really don't care for their food, and service is slow more often than not. The first time we went we were there it took a good two hours! And that's not because we're slow eaters. We did stop in for happy hour last week though, and although their margaritas aren't the greatest, they're decent enough! They ofter a 12 oz. house margarita for .99 or a 24 oz. grande for 4.99. Why people would pay five times as much for a marg twice the size, I don't know. We each had three .99 margs, ate the chips, salsa and bean dip and our bill came to 5.94. $6 and I left with a full stomach and a buzz. Nice!",review,MIvCXHgE_vcKz7lYS5FPvg,0,1,1 +edDmYTcsClAL9XPR8YkvnQ,2012-06-17,hvWidq2AHQSa8nTkluvqMg,5,"The shaved ice at Bahama Bucks reminds us of vacationing in Hawai'i! Lots of flavoring options, and a cheap date! Haven't tried the smoothies yet, but we heard they're great!",review,ZD7ke0KAB8ptoQTlt3UG0g,0,0,0 +It8Q9-l1EEtTr9NPpTgGPA,2011-08-27,rWRxG-XzihggwUCaOFc9Dg,2,"I wanted to love this place so bad considering I've lived in Venezuela and hadn't tasted some of this country's food in over 17 years. However it pains me to write that I was pretty disappointed. The server, who is assume owned the restaurant, is a very nice guy but forgot my stepson's food and didn't realize until 15 mins after he dropped off our food. My cachapa was burnt and dripping with butter. Don't get me wrong, cachapas usually are rockin with butter but this was oozing everywhere. The arepa was pretty decent and the only saving light of the meal but overall this experience left me wanting more.",review,LKnsv1meIthvgdky00qkQA,0,0,0 +6SMQl2vR37HvjYWwSl1V3w,2007-11-08,sim2cQ2QPXL4Y2A3mH4vbg,5,"By far my favorite restaurant in valley. Deliciously spicey. A bit pricey if you're picking and choosing items but they're complete meals are a pretty good bang for the buck. + +Not actually sure about the service as I've only gotten takeout but if its any where close to the quality of food, then it must be awesome.",review,72OdAJ2eQYecT91OdJXyfQ,2,2,0 +mwiNm868yAo8Xh8hO7Ke_Q,2011-08-07,tkomvYi0y5Do0XVwi0ZFBQ,4,"Okay, the place is no frills, simple, would almost qualify for Triple D... Except, it TASTES good. We've been to a few Triple D joints and most have been disappointing, making me wonder how much they pay to grab Guy's attention and the publicity. Flavors of Louisiana brings it!!!! Flavor, taste, smell, appearance, and portion... All good. What would make them great? One thing... Liquor license... so I could have a beer with my fab fish! + +Glad I grabbed the 'go' box because I had serious craving the next day. It reheated perfectly and I learned that the flavor was really the ingredients and not over saturation of grease. + +Momma loved her Gumbo and appreciated that there were NOT huge slimy chunks of okra in it. The main man and I had oysters, chicken, and catfish... All worthy of ordering again and again and again. I enjoyed the tater salad but we both thought the dirty rice could have used more meat in much, much larger pieces. As it was the meat was so minimal and small it could not be tasted even though I could see it... That, and the lack of beer, were the only down sides to our kickin' Lous-E-anna experience!",review,nTCt6CV-qx3lHsHIMJqizg,0,0,1 +JRzrqJmsQ5AZ4bMQLUfyHg,2009-01-19,_UWKkz9dTM6ntfd1QY6-Sw,5,"Hands down, the best breakfast I've had in Tempe/Phoenix. We arrived on a Sunday morning around 9am and had no wait for a table. The service was friendly and attentive. A few slip ups on forgetting things in the kitchen (e.g. bringing someone's toast), but our waitress was great. + +Everyone in our party loved their food. I had the Vatican skillet (which we still can't figure out why it's called the Vatican...?) and blueberry pancakes. Others had the three musketeers omelette and the breakfast burrito. All of the food was awesome. + +And then there was the brandied blackberry bread pudding dessert. Oh. My. God. I don't even have the words to describe it. At least not words that are appropriate for yelp. It alone is worth a trip to this restaurant. + +I'll be back. Not soon enough.",review,8GccAq9PTpIWlp0gnCHoRQ,2,3,2 +Xq9tkiHhyN_aBFswFeGLvA,2012-12-13,5WSHeWRxZ91ACTBwkkWZ5w,5,"Absolutely loved this place! My fiance and I came across the Arrogant Butcher while we were in Phoenix celebrating my birthday and our engagement. My fiance had found it on yelp and said ""we must go there for lunch one day"" while we were there. We ended up going here for my birthday dinner, after a ""higher end"" establishment couldn't accomodate my gluten allergy. The food, the drinks and the waitstaff were great! It was so good, we went back the next day!",review,HJm6lygitZwsl52yUwr-bw,0,0,0 +KTF-E3NfkJy2wiwcgOPyVQ,2012-03-27,nRGoGMl-q2yz050--09MVw,5,This is one of the best Asian meals you may ever eat. They are amazingly inexpensive for lunch too. The house fried rice and the wonton soup are perfection. The Lincoln location is prettier but the food is the same.,review,90a6z--_CUrl84aCzZyPsg,0,1,0 +ZZP4c4epsE4j_SniQe6KnQ,2010-12-28,0DxhgINXijG7V1LDyYXZ3A,2,"I've lived at Mark Taylor properties for about five or six years now and I have to say, they have declined greatly in the last few years. When I first started living at my first MT property, the front office staff took the time to get to know you, knew you by name, kept abreast of any ongoing issues and were proactive about things. + +Now, they really seem to be nothing more than shills for what Mark Taylor has become, reacting to issues only when implored to do so. Rent constantly goes up, even for those of us that have shown property loyalty years over. Additional ""fees"" are even being added on for services that you may or may not even use -- either way you have to pay. + +The only reason that I didn't give them one star is because of the maintenance staff. They are what the front office staff used to be. Friendly, polite and very responsive to your problems. They, in fact, have a pretty similar opinion of the ""front office"" folks as I do. That is pretty telling.",review,eNf1gPW9hRslGcrqN_X0pg,0,2,0 +TMZP6Kzkc-FytzgbgIC9JA,2012-10-05,RzlQ8yLmE0h2pm_BuMJqow,2,"As far as teppanyaki restaurants go this one isn't top of my favorites. 2 stars for good service and a nice setting... I'm docking 3 stars for my food being over cooked and not being offered anything to replace it, and our chef not doing any sort of classic teppanyaki cooking tricks (making oil light on fire, flipping shrip at people, bouncing his utensils around.. ect). Decent place to eat, but not a value for what you pay for.",review,Oi4WNK_mL-h2Kc03Mj5ZHw,0,1,0 +x_mxrJALBi5No9CxRswEaQ,2011-08-10,Bdfo3Nytyvd5fuV2D3C-Wg,5,"Wow, love that a place like this moved in down the street. +Inexpensive, fresh, delicious - everything I want in a mexican restaurant. +My soft shell carne asada taco was fantastic -- freshly prepared and topped with guacamole, which by the way is super creamy. Basket of chips are free, as is the toppings bar -- every one of the 6 or sauces were delicious. +I plan on frequenting Salsa Blanca ; )",review,2LdmDvRyrXgFsVL1KoRfRA,0,1,0 +Hgbxen9iKGL4AH6kKgC8YQ,2012-01-06,E7-n_dzvhriH_3c3zOfe4A,1,This is the closest to a New York hipster style coffee shop I've seen in Arizona. They serve beer too. Problem is that the espresso was unbelievably bitter. Cookie happy hour is pretty cool though.,review,pJUdG8KPNfZOLdVqiWIpAw,0,0,0 +SDetUVwhaCPGkQYqmUak6g,2011-10-09,Sp_zhACNYp_nD-gB2dELeQ,4,"I'm kind of worried about this place. First, this is for the new location Downtown. I guess they have another one in Park Central, but I've never seen it. When you call for takeout, they remind you of which location you're calling. I like that because some people are idiots and will probably go to the other one. +I loooooooove the curried noodle dish. I've eaten it in the restaurant and ordered it for takeout. +The service is super friendly and the place itself is really nice. +Call ahead before going, though. I drove down there one night after checking their hours and they were closed. Who does that????? That's the main reason I'm worried about this place staying open. It gets a good lunch crowd, but they need to work on dinner, too. +Prices are reasonable and on par with the 87 other Thai places Downtown.",review,6kmu0mYbdpMIOZ6Y0eVsxg,3,5,4 +ZRJwVLyzEJq1VAihDhYiow,2012-07-10,v2yYkwqf9KJ7i-DASIMegQ,4,"Great customer service, perfect dining area! This lightly dimmed pizzeria is nothing like the other high top table pizza places, the staff and waitress' are really friendly with along great customer service! (and I am picky with people who serve at restaurants!) this place is great for family or even with friends to get a great bite to eat. I ordered the side ""Chef Eric's Caesar salad and thin crust cheese with pepperoni"" I highly recommend For GREAT pizza! However the guy who was going to bring my pizza dropped it...but made it up by giving me Nicole's Notable Chocolate Chip cookies :)",review,KjlVjf3Rji33oiPnzAIqjQ,0,2,0 +e_riFHMoJ1Yguvr0KtOkDQ,2011-01-16,DZF0Ip31NM2nqvpqMOHleA,3,"Dear Yelp: Why can't there be a 3.5 star rating? I wanted to give this place 4 stars, but will have to wait for another visit to bump it up. + +I have never been here before, so I consulted with my fellow Yelpers for their input. + +The service was quick and prompt. Our waitress was friendly and on top of things. I was impressed by the selection of beer, although small, with an offering of Alaskan Amber Ale...mmmm. + +We decided to keep things simple this trip. 12 wings, medium flavor, one large margherita pizza with garlic on 1/2. + +GOODS: I LOVE the mozzarella that they use! I have never tasted cheese this cheesy or this good on my pizza. NO JOKE. The wing sauce was also delicious and they provided you with a perfect amount of sauce to cover the wings. AND, the ranch was NOT watered down, which I am traditionally used to. + +BADS: The parking lot sucks. We had to park across the street from their main lot to find a spot. Also, the tomatoes on the pizza were unripe. Our pizza was soggy in the center, perhaps from the tomato juice during the cooking process, and it made for bad leftovers in the microwave the next day. + +So, with the combination of the both, I will definitely say that I shall return to give them another sampling in due time, and perhaps bump up that star to where I think it should be in the back of my mind.",review,amv1I9D-4LaOvmL9fVa5sA,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2012-12-13,5aD_MsPpT8iTMEHycVbomg,3,"Set in a restored 1913 bungalow, Cibo (pronounced ""CHEE-boh"") has hardwood floors, exposed brick, a stained-glass panel and a fireplace to set the mood while revitalizing the downtown Phoenix area with beautiful salads, antipasto, artisanal pizzas and housemade fresh pasta. + I flew in for business on a Wednesday night. My friends picked me up and they decided to take me to Cibo. + Right off the bat, I was impressed with the ambiance this place exudes. Every corner of this place is romantic. Great for small parties, or just two. + We were seated outside at a table for four. The server was very well versed with the wine list, and the menu. She right away offered some appetizer ideas, and wine parings. All good offerings. We decided on a bottle of Vipra rossa. It was over all a good wine, and went well with dinner. Also we ordered the 3 Pair Buschetta. This little gem was awesome. It came to our table on a cutting board type platter. Three little buschetta slices each having a different topping. First was grape tomatoes and basil, the second had cannelini beans, and the third had prosciutto crudo and mozzarella. Ah Mazz ING. + Being that I wasnt feeling super adventurous on the meal, I just ordered the Diavola pizza for one. Average pizza I'd have to say, was not very inventive. Good presentation though. + Service was a five.",review,oASaTXSLIYXQUAev04ApKA,1,2,1 +zOJdahdaaLz7DpfdIucslg,2012-06-09,Zxt3XJJKaG-hVjw6WND5sg,2,"Not a fan. I know this isn't supposed to be authentic Asian food but the dish I ordered (can't remember what it was called) was inedible. The description of the entree I ordered gave no indication that it would be sweet in flavor. I'm not a huge fan of sweet entrees in the first place but this dish was sickeningly sweet. I had to send it back. The reasons why I give this place 2 stars is because of the nice ambiance, the service is good, and they were nice enough to swap out my entree for something a little more palatable.",review,L4tR-pVG5rJMxp_ldxJLKA,0,0,0 +iK6LQjFL4aMJzTS6Hf3F_Q,2009-11-28,xOpk7K3xrHL_TXsiS7k1Mg,4,"I am so in love with the exceptional level of service provided at this diamond in the rough naturopathic clinic! It may not look like much from the outside. Inside the unsurpassed warmth and tenderness is ideal for a deeply enriching, healing experience. I was gifted a 90 minute massage and was not disappointed. The masseuse was knowledgeable and hyper receptive to my needs. I walked in trapped in a bubble of negativity. When I left I was literally floating... I felt cleansed and utterly flawless. Another major plus was that the entire indulgent, spirit lifting experience was under $40. A professional, extraordinary 90 minute massage for under $40?! Seriously go for it!",review,_w4uNlrT3UMdtWc7w8Szlg,0,0,0 +x_mxrJALBi5No9CxRswEaQ,2012-07-14,lNENARxI5vB41ZczCjNUDA,5,"My husband and I absolutely LOVE this restaurant! Anytime I find myself craving Mexican food, the first place that pops in my head is Salsa Blanca. We have always encountered friendly, welcoming staff and amazing, fulfilling food. What more could you ask for?!",review,mSuXQZu5NsKXRPW81Llntg,0,0,0 +2h9LsLPdJ7OvZrYJZhVdAw,2009-06-29,dc9QzMK5ngeWlser3yiQLQ,5,Best place in Arcadia to get a coffee or a tea. Lots of friendly locals and great place to sit outside to people watch and read the paper in the morning early lunchtime.,review,GwP7klR69owmP-y1XCuSsg,0,0,0 +DhjQHxJ9EX-l2QpimjWfEg,2011-03-14,UHdDGGscclU5kPCaDsL5Xw,4,"for those who like dirt track racing, this is a place to go. it's a 3/8 mile oval clay dirt track that hosts the likes of imca modifieds, super stocks, pure stocks, sw modlites, bombers, dwarfs cars, sprints, late models. + +after the races, go into the pits to meet the drivers and get an up close look at the cars. it's a good time hanging out. + +they have concessions, souvenir stand, offer free overnight camping on race nights for self contained campers only, as no services are available. + +there's something about the roar of the engines and the exhilaration of the race that keeps me going back. + +check out the website, www.canyonspeedwaypark.com for schedule, entrance fees, directions, etc. + +hope to see ya there!",review,Y2FcksTOoJWzq0Nf_sOwSw,0,0,0 +j0Uc-GuOe-x9_N_IK1KPpA,2009-05-09,XJHknNIecha6h0wkBSZB4w,3,"Every friday, my dad and I eat here. We order the same thing... pizza wraps. they are good and fillng. iced tea hits the spot. Typical strip mall pizza.",review,0VfJi9Au0rVFVnPKcJpt3Q,0,0,0 +nBfusVbqwul0BU0Rcrlelw,2010-05-05,fGD06vpAuusuv3MNxWB95g,3,"This place needs a face-lift, the whole concept and decor is outdated and needs some help. I think their sushi and other food items are alright, although they try to be so trendy and in reality there menu is pretty blah. Its a fun place to grab a drink and sit on the patio, but the excitement and trendiness of this place is completely gone.",review,awNfKzVWjrhxCmRap-DeaQ,0,1,0 +O-Xa9GCFWI65YiBD5Jw_hA,2012-09-20,sYO9odoEv84GSeIKmBfkow,5,"Best Steak Ever. That is all. + +Everything on the menu is amazing. Go now.",review,oysCTCXSQAK2eiXEVv-1qQ,0,0,0 +maB4VHseFUY2TmPtAQnB9Q,2011-01-25,ylkaE7_T-Nt4VdLh76P6PA,5,"in honor of the impending superbowl XLV, i wanted to write my majerles review. + +this year though, instead of hitting up a sports bar for the biggest day in football, i'll be going to a party. a real rager. if i wasn't though, i would definitely be pressed up against majerles front door bright and early superbowl morning. it's a great sports bar. + +the weirdest thing about majerles is their name. someone finally told me it wasn't pronounced ""mah jer lees"" like i had thought.... it's pronounced ""mar lees"". so let me get that out first. + +i'm a big sports nut.... well, let me rephrase that. i'm a big sports nut when it involves REAL sports. i won't make fun of anyone, but if it's not football, baseball, basketball or hockey i don't wanna hear about it. unless of course we're talking about extreme sports like surfing, skateboarding, etc. + +being a fan of sports makes me a fan of sports bars. there are only 3 main things i need in order for a sports bar to be great in my opinion. let me lay them out for you: + +a good selection of beers, happy hour specials and bar snacks--- yes, majerles has this in spades. large selection of beers and any sports bar that has perrier jouet, vueve clicquot and dom champagnes must be praised.(mostly because i think this is absolutely hilarious. WHO orders pricey champers at a sports bar? haha!) also, put me down as a fan of their reuben reuben and tenderloin sliders. yum. + +the service--- there's nothing worse than sidling up to a bar, excited to watch your team kick some ass and ordering a drink from a bartender that seems bored and unhappy. every bartender i've come in contact with at majerles truly loved being at work (or they at least acted like it). bartenders attitudes really carry a lot more weight then they realize. happy bartender = happy bar patrons + +the strategic placement of large TV sets for comfortable viewing pleasure--- yep. they designed this with real sports fans in mind. no matter where i sit, i can see a multitude of TV's with little blocking my view. + +so they have it all, and i likey. go here if you're looking for a good bar to watch the superbowl... or any sporting event for that matter. + +oh, and GO PACK GO!!!",review,DglSIRnl69GUqHvVnG3QaA,9,13,6 +MY0_6BAzQCu4sqXqwNEFfg,2012-08-23,t-Jg9rC5XTk0vQ2JbP8gxg,1,"Great at first, then the bartender ignored me and my friends for a good 20-30 minutes, put everyones bill on my tab. I opened a tab so this wouldn't happen then they made us wait another 15 for them just to ask us who had what. Then they over charged us by quit a bit. We had to flag someone f=down from napkins and plates and it took a few try's for a water. And to make matters worse my friend got a parking ticket because they took so long. There were three bartenders for what I handle myself at a bar on a daily basis. No sorry from any of them and not even a drip of regret from the manager. He pretty much told us to chill out after this whole 45 min waiting or deal, just to close a check. Kind of a joke really.",review,SJKCDS0LfQelLR_fHRlkJA,0,1,0 +-xFO1E3OiDMmdqdjwUM_DA,2010-05-06,82cDFmXQkZH4Hti8Rp0hSA,4,"It was almost impossible for me not to stop here on the cab ride back from old town for carne asada fries.mmmm sooo good! I really only went there between the hours of 2-4am but, los betos never let me down.",review,AVCBC2G5RjJM8tu_PebFPw,0,0,0 +xLCbkTYQaP-nij6mEfaw7A,2008-12-28,HgDmQgsGpUhidPtaTEWh6A,3,"playing the ""poor college student"" card here, i went to bookmans with a dvd player, computer speakers, a digi cam, an iflip, and about 90 dvds including some tv sets. + +they took 4 of my dvds (2 seasons of l word, my nightmare on elm st. video set [including 3d glasses, in great condition - what a find, that bitch cost me $100!!!], and a family guy i think. and they gave me $12. what a load of shit. + +they took the dvd player, digi cam, and iflip of course. gave me like $33 for those. again, rip. + +overall, kind of picky as far as what they take, cuz when i was browsing the shelves, lots of the movies i had/was turning weren't on their shelves. + +so instead, i took all my dvds to mo money pawn shop on 12th and indian school and got 85 big green bitchez. + +it looks like they have a ton of books, which is pretty cool, but i believe in a system of free literature, aka the library. + +screw you, bookmans! + +however, you get three point five stars because not only did i find my favorite lez movie lola, but another great flick by the name of everyday people.",review,HY9qpAamqLXFoa7xMwNntg,2,3,3 +nWLPuXTP6cunw86V1rJMAQ,2011-09-28,J3S_YK1AQmj7fnjt5WqhMw,5,"Excellent service!!!! I had to find a spa different from lavenders after they got rid of yet another excellent staff member, so I tried this place! I was SO HAPPY!! clean, pleasant, warm, comforting. The manager is actually on site and aware of the things going on in their spa! The staff is friendly and efficient! +Lavenders day spa can learn from this place. Send the owner from lavenders to sanity and TAKE NOTES. +I HIGHLY recommend it here!!!!!! Go and enjoy!!!",review,0ef9ECBuv5gghvcPxTI0Gw,1,2,1 +GhhpkAkGl4JE_M_Szwegeg,2011-01-21,qLs_bZnb6esDcXDVvbe68Q,4,"So much food to choose from on the menu! They have so many options (healthy eater,unhealthy eater, vegetarian, breakfast, lunch, etc) for every kind of diner. I tried an omlet with turkey and brie and I enjoyed it very much. The orange juice was fresh. I was expecting very large portions but they are more than perfect for a super hungry appetite. Service was very good.",review,kyDg10Hoxz9LdLniTNTIGA,0,1,0 +iNvY0zAlaD_ye7Z6rHu-Ug,2008-12-30,7ceH1q2lBT0EBHGbIcR-jg,4,the grilled chicken sandwich hold the mayo add ketchup and mustard and the fries - off the chain! minus one star because it should stay open later.,review,fFoRIzbwpMiv3BvfdtdlXQ,1,2,2 +xY1sPHTA2RGVFlh5tZhs9g,2010-12-29,QXvMbL1dwOwOMxOLP4CHqQ,3,"Thank goodness someone took over what once was pink taco, aka yuck city, and turned it into something worth stopping in when in Scottsdale. Fox Concepts yet again has made a success and a place I think I will actually return to. + +To start with we had a delicious plate of cheese and meats from the anti pasta menu, along side with some marinated olives and bread w/ olive oil. Just enough to get our taste buds excited and just enough to have my boyfriend (who is not into fancy smancy stuff) say ""give me some more"". These went nicely with our beers (they've got a great list), my mother's martini (which she seemed to enjoy), and my brother's gin on the rocks (he says they carry a gin that is very rare and delicious but the name didn't stick with me-sorry). + +All of our dinner plates were delicious; fried chicken w/ mashed tatters & biscuits (skin on chicken was a little on the salty side but very crunchy), salmon w/ apple and rice, grilled cheese sliders(who could mess those up?), chicken salad, prime rib dip (served with onion soup instead of au jus, yum yum), and the patato ghesicuto (pasta- I know I can't spell but it was yummy too). Around the table, everyone seemed pretty satisfied. + +My only criticisms would be that we were seating just to the side of the kitchen, enough to be able to look inside. I dig places that leave it open so you can watch your foot and the chefs are aware that the client is aware of whats going on BUT I did watch one man on the end prepare countless dishes without gloves on. He went from cutting and laying out proscuitto onto creating their carmel kettle corn dessert (scooping with bare hands), to setting out what appeared to be the fondue app. Yes, there can be worse things that happen in a restaurant but as someone who has worked in food service, it made me squirm a bit. I suppose that's why it's called Culinary Dropout. + +...oh, and the music was a bit too loud for me. Great joint for out with friends on the way to the bar or I would think for happy hour but not for a family dinner (my Grandma had to barrow a flashlight from the waitress it was so dark).",review,UjKzJ78F4mUi1rNS0EjH_Q,0,0,0 +mQfT3JYu18HN22DVylcE7A,2011-04-17,N7j2J3V278BSyYBMXuSqcw,5,"I live no where near this place & have gone out of my way to eat there MANY times! I haven't been since it moved (bc I had no idea where they went) but it looks like it's bigger so that's great. I even made it a point to take an out of town friend here. I don't know about the new place but the old place was kind of a hole in the wall diner feel (in a good way). It can get really busy at lunch, so I don't recommend it for a lunch break from work. I did that once, and got in and out just fine, but it's a lot more fun without the time crunch. Everything is delicious, but the mini red velvet cupcake is always a must!",review,GSZebDbIf0h_2MFv8xBGrw,0,1,0 +-Y2rZMPttQqKXD_XJPQerA,2011-11-09,bziSuhgla3vMf8qxcB2PeA,2,"I'm generally very fond of Rubio's, but this location just isn't up to snuff. The food is good, but somehow not quite as good as other locations (it doesn't seem as fresh). The restaurant isn't as clean as it should be, the tables are always kind of sticky, and the restroom... well, it smells like swamp gas (and not just once). Also some of the seats are town and have been ""repaired"" with large amounts of tape (the tape is worn and sticky and if you're a dude wearing shorts, it will pull the hair right off your leg!) ...To be fair, I guess it could pull the hair off a non-dude's leg too, but let's just not go there.",review,KtmnxDb0TtBM3Q3AogQmbw,0,0,0 +8qL697NwICTc_ac0-26Ycw,2009-05-20,JWF6vkqKTqwPP5ZYQd6GaQ,3,"I like this mall. It's in a decent location, there are lots of good stores, and the clientele here is bearable. I've always thought of this mall as just below Scottsdale, but without all the silicone and snobbery. We went last weekend to kill some time and were a little surprised to see that it was overrun with screaming toddlers. I guess I should have known that when the AZ temperatures tip past 100 degrees, we have nothing better to do then hang out inside air conditioned malls or hang out inside air conditioned movie theatres, take your pick. Anyway, the store selection is pretty good here, I just wish they would add a Crate and Barrel and a LUSH, then I would never have to visit Scottsdale again.",review,W_QXYA7A0IhMrvbckz7eVg,3,3,3 +Mb46iSlA4qmTwXf-WrqtQA,2008-07-29,_yhmq8UKS_qihUbVzc3MBQ,5,"Quick update for Mama Java's since we had the Yelp Office Hours there last week... we lucked out and were able to take over the couch / chairs to the right when you walk in the door. It worked out perfectly! + +Even though I hadn't been in to MJ in a couple of months, Jensy remembered that I drank a soy latte - incredible! I felt so special (almost like a regular) when I walked in and she greeted me and asked if I wanted a soy latte! I did, and it was just as good as last time! + +The atmosphere provided the perfect place for the yelpers to come and go, chat, etc... I think everyone felt comfortable and welcome. Thanks again to all of you who came by to visit! Looking forward to the next time... + +Lastly, MJ created a yelper special of the day... the ""hold me closer tiny yelper' which i believe was a vanilla cinnamon latte. Now if that didn't make us feel special, what does?!",review,fczQCSmaWF78toLEmb0Zsw,5,3,1 +mW1gB2DmBe__AEVgCoTgjw,2010-08-17,-ktx8fqFn5QuAoU9lIV4Aw,2,Went downhill. Not clean and the food isn't what it used to be.,review,v6jF7qJOyzO2SZR_qyBXLQ,0,0,0 +eGj1NnvbIUVWgDYQWEOwQg,2012-06-10,MEzqi22MaWQV1LMSSPmh6Q,1,"This dog park gets one star.Why?Because the last time I went,some piece of shit broke into just about every car in the parking lot to steal whatever they could.So much broken glass from side windows everywhere. +It used to be okay before this incident,but a busy parking lot in borad daylight and some vulture lies in wait? +Yeah,I'm done here.",review,qBAaWZxyuFnSZU0NzFlNDw,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2011-09-27,9QZCngJhrRZJv6Iee1Jj3A,4,"great beer, great food, great prices and it's haunted!!!",review,6aLrBqbTXRRQLmMW5RHVJw,0,1,0 +53YGfwmbW73JhFiemNeyzQ,2011-12-21,QZlnTcNHSKiTVKNfFpbajg,5,"It's been a while since I was in Arizona, but I still remember the Olive and Ivy. I was in Phoenix on a business trip and went out for dinner at this place with a bunch of work people based on a recommendation from a local. We were not disappointed. Firstly I want to say that the decor and outdoor area in this place is just fabulous. We sat outside and enjoyed a delicious meal. The staff were professional, welcoming and accommodating. I enjoyed the experience so much that I brought the gf along for dinner when she arrived that weekend. Both times I was extremely pleased with the food, drink, level of service and the ambience of the place. 5-stars for mine.",review,7B_LFcB6u1olDoWjd6fSiw,0,0,0 +NBwPgX7L2D-EZedgo3A-pw,2011-01-15,ruGmXKpLqTj_mTNeiv1rcw,5,"Great little hole in the wall with authentic New Mexican food. Chili Relleno was awesome, and the red and green chile was flavorful and spicy. Rice and beans were good and the sopapilla was delicious. Atmosphere was cozy. If you want real red and green chile vs. sauce this is the place.",review,e_MwXVPglyJIwE8t-Px-bQ,0,1,0 +rE2InW2Jmjy6hzH3p4Iyjw,2012-01-13,HhRPCCeoUBH9_KQt-oGODg,5,"I just stopped at Biagio nail place today and got my mani and pedi done, it was fabulous. Tiffany gave me great feet and my neck massage. She does really job. The shellac manicure was really nice she gave me a lots of different colors so she actually helped me find the colors that i like and I was very happy that I got her. I will Go back and ask for her...",review,XiuLpXucDuwabVkyhqAb3w,0,0,0 +PZUZH0vsLOy2AB1FubByhg,2012-12-26,Nub4DaQLsxk9Y_7Fp6eS9A,2,"Service. +Was great until checkout..... +Matthew, a twenty something with brown hair, was fine during the first few minutes of bagging but he asked me if I wanted my pizzas in a bag. I assumed it would be put in one bag per pizza. They were digorno pizzas with the bred sticks or wings. +Matthew told us that they wouldn't fit in a bag. So my boyfriend said it was fine without a bag, but I knew they could fit one in a bag per box. So I asked for a large paper bag. Matthew held up the box to the bag And told me it wouldn't work. I just stood there and continued to place groceries on the line. When I noticed he put one in a bag and the inter in another plastic bag. THEN... Things were getting hostile between the cashier brittani and him. They kept discussing work related topics sucks as the time of the checkout. The cashier seemed irritated with the day that the bagging area was over crowded and backed up. Seemed like she wanted to say something. After that i noticed he was doing s terrible job bagging which caused bags to rip. putting a wide variety of packages in one bag Matthews attitude changed as well giving a sarcastic goodbye. + +Store +Clean but carts were hard to find when store is busy. + +Overall +I like that I have a marketplace close to me but that was some surprising service at the end of my trip. I'll be back but hopefully I will be able to have a better bagger",review,8BxNrCQ400-Wri_-rjLQWQ,0,0,0 +1nhug_rhFFtF9D61X_EVBg,2011-04-20,2uxq5PH3NoLUU6_h0cPmZw,4,"I start at 40th st and Shea and I love this hike! This hike is HARD. I call it a sleeper hike, it starts off easy and then before you know it...BAM....it get's a little ridiculous. It will kick your butt but it's totally worth it.",review,bucwbyP1wOxRJe_RwmmAqw,0,2,0 +e9nN4XxjdHj4qtKCOPq_vg,2009-07-31,Zuy62frkFzeO96_VGXfYmQ,1,"I just had the ice cream. That was when I didn't know where to go for ice cream. It tasted artificial, much like how everything else looked. There was also a weird feeling about the place - too self-consciously ""cute"" suspension of reality - almost as if a crime was imminent like a bad TV show. Looking at the rest of the food was almost disturbing - like school cafeteria food, only worse. Oh well, it discouraged me from eating anything the whole rest of the day.",review,TI88k_ezEWaj_XZSiuBNGA,1,1,1 +3n9mSKySEv3G03YjcU-YOQ,2011-04-14,NVw77_A30sALPJAniEYrPQ,5,This is one of my favorite places to go in Phoenix!! I love the $5 wine glasses during happy hour!! The bruschetta is out of this world!! The sundae with salted caramel and pretzels is probably one of the BEST things I have ever eaten!! :o),review,6PHSvn_G2Bh5ZEVT6mMwaA,0,2,0 +xs1LHeJy78u-7taSEnQ2Yw,2011-06-16,8TAlp1OVe95YSBzNqmeV2A,3,"I'm not a huge sushi person (I know, I know...) but I ordered the tuna with lotus chips and it was very yummy. The server was friendly and the chefs were efficient. The atmosphere is dark and modern though a bit squashed and overwhelming.",review,vQayPl7cix0BFaSiL_t5XQ,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2011-05-25,ATVM503VXnQlI9HdS360Zw,5,"The food in this place is indescribably awesome! Granted, the place could be nicer, but if you're in the mood for great food without the frills of a great looking place: this is it. The service is fast, friendly, and the prices are great- especially knowing that their portions are typically huge. I can't finish my plate most of the time, so I always end up taking leftovers home. +I love their Jade Red Chicken, as well as their emerald chicken. Their black beans are to die! Order a combo plate, if this is your first time here. You'll get a good mix of everything and you'll leave without regrets!",review,GjHXd24vZbWJbYuWlwQbDw,0,1,0 +qW9UysjJw3y3CwEbzruEEw,2011-02-02,A8krd18p9ujOg1H7beHzBw,4,"Right around the corner from my sister's ghetto-tastic shack, this place is bomb. Green chile tostada...hell yes! + +The place is not much to look at from the outside, not much to savor on the inside, but the only people hanging out here are Chandler High kids escaping 4th period. + +You stand in line, you get your paper bag of greasy goodness, you leave with a smile on your face. + +You hope your sister has beer in the fridge when you get back to her place.",review,5oLJL8ImlYLkFm05J6oKqQ,8,7,6 +Cse5FvYuACIxljwaac2SZg,2012-07-10,agWENQvyoHf3w-k5uu_3RA,4,Another new great place in the Arcadia neighborhood to grab some great food and select a drink from the extensive beer and wine list. I think there were over 60 beers and 40 wines to choose from. I thoroughly enjoyed the tomato and candied pancetta bruschetta and the lamb kefta...yummy! Definitely check this place out when the weather is cooler and you can enjoy the view of Camelback Mountain from the patio.,review,pEVf8GRshP9HUkSpizc9LA,1,3,0 +YEQkTCmphjr6XKPh4m93AQ,2010-11-29,mSaa0X25WDBQYj5faxX1zw,4,"While I'm a sushi fan, my husband is a sushi FIEND - we made biweekly trips to his favorite haunt in NYC (Monster Sushi) and if he was on his own for dinner, I could always count on him to be there for a bite. After relocating to Phoenix, he'd been jonesing hardcore for non-commercial, non-fussy sushi in epic proportions served with a smile. Our trusted source told us that Kyoto was their favorite and we had to indulge. The mixed views on Yelp made be a tad nervous, but I like to give places an unbiased chance. Very glad that I did. + +The interior of the place is a little strange given the shape of the restaurant and lack of windows, but we made ourselves cozy in a table next to the sushi bar. I also did not notice a pre-club atmosphere - it was chill the night we went, but maybe it was because we went after work (which is probably on the earlier side for the see and be seens). + +No teppan for us that night - it was all about the sushi. We started with a pleasantly savory miso soup, flavorful seaweed salad and moist, tender tako (octopus) salad. Next was my favorite dish of the night (and no, not traditional for sushi, but whatever) - a peppered, seared tuna with onion sauce. Divine! I could have had three plates of this and called it a day. Most of the folks in our party ordered rather classic rolls, while I ordered an additional three specialty rolls (Candy Cane, Ichi and Shrimp Tempura - I love to crunch it out). The rolls were so HUGE we struggled to eat it all. Keep in mind that those specialty rolls are massive, particularly the Ichi (should have been called Ichi the Killer Roll) which you could barely eat with chopsticks. I was a mess of dungeoness crab and spicy tuna by the end of the night, but I was happy. + +Price was absolutely fair for the quality of the food - there are many (MANY) overprices sushi places in Scottsdale and many dirt cheap places in the valley. This one charges fairly and keeps the quality up. I don't ever mind paying if it's worth it. + +Will most definitely come back and hopefully take in some teppan next time :)",review,vLMwisRi7IWPooI9YZ1znA,0,1,0 +oJpmYvLibGrYPDvcaUeMOw,2011-08-21,sTbYSEAcDoZIY82PL5eYKg,3,"Ate here the other day with a friend for lunch, it was my first time there. +I had the Tom Kha Gai soup, my friend had the Thai fried rice with tofu, each was ""Thai hot."" We shared. Scrumptious! The fried rice dish was large. We also shared some mini eggrolls. Mini. +I think my soup could've been more dense with lemon grass and cilantro, but it was yummy anyway. I guess it's cuz I'm a sucker for this dish. I think it's much better at Mailee's in Scottsdale but you pay 5 bucks more. + +The place is spartan, not fancy, has some damage, looks like what you would expect by looking at the outside. I'm not picky as long as the place isn't a complete dump. Thai restaurants for me don't have to be princess palaces.... I've enjoyed Char's for years, and it showed its age but wasn't in a state of disrepair. + +They have some beers on hand as well. +The menu has a variety of curries, which I look forward to trying. +I'd like to try this place again, I just don't have much more to say at the moment other than I spied a few dishes on their way to their enjoyers, and they looked appealing. +Convenient location. +Worth a try, not bad. You know if it was I'd tell you. + +Give it a try for weekday lunch, they have a lunch special menu.",review,zGz5NI4sscO4_6YYH-qVtA,0,0,0 +10BgGvCMDH-JbYsg8KRLRg,2009-04-04,yYUDcq5u21JxyM9SqpJMhw,4,"i used to come here with my roommate to grab an iced chai and do the crossword puzzle on our lazy, halcyon undergraduate afternoons, or come in for a warm breakfast and a cup of coffee, hungover after an amazing houseshow the night before back in the neighborhood. this is that kind of place. + +great, relaxing place to do homework or study. depending on the day and the time, you'll find professors, honors college kids, hipster bike folk - the whole gamut of the non-party-bro asu population. + +food is good, but a little overpriced, i think. drinks, like any independent coffeeshop, depend on the barista, but i've never had a really bad drink experience here. i especially like the dirty chai.",review,d2RAl63RTdfZF7kcuKcj-g,1,1,1 +YXp62JdXJDzX0EuRv_zgMQ,2011-01-25,IUQzesgdMj9FtuwnAbddLA,5,"everything, everyone has posted about this company is true! great service, friendly people, good pricing! highly recommend!",review,M9zyD3urANpe6PoCnCJhDg,1,0,0 +LzNJLEIo4gh-X_rmDkNkNg,2009-02-09,xcJoN7KOPVKtLTD3p_Eduw,4,"As you may have read in a previous review, so graciously provided by Dally, that Four Peaks is our post-Tuesday night hockey watering hole. We normally show up stinky and limping or in some sour mood or another. Somehow we always leave a little happier, but still limping, well I do anyway. + +Unfailingly, we are greeted by the bouncer, who no longer cares to see our ID's, either because he can see the age in our strides or because he knows us now. I would like to believe the latter. Also, waiting for us is the lovely and nicht so talented Karina. Bless her poor soul for putting up with our asinine questions about her life and our requests for more water. She humors us anyway. + +We are made to feel like this place is home, at least for a couple of hours on a Tuesday night. Karina knows what we order for drinks and never has to ask, just brings. I usually switch between a simple salad with a great balsamic vinaigrette or a plate of fries. I know, diametrically opposed. Just depends on the mood and how committed I am that day/week to my diet. I always get the 8th St Ale though. It is very good and for 3 bucks can't be beat. + +I have enjoyed the pretzels, the now ""famous"" nachos, with chicken mind you, the spinach-artichoke dip, some of the various wing flavors, and a pizza. For late night dining they are all very palatable. I have a funny wing story, but I think it is only funny to me, Dallas, Z, and our friend Peter. If we ever get the elusive Z to join, I will make sure he shares his story on here. + +Until then, check out Four Peaks in Scottsdale. The late night menu satisfies and is not hard on the wallet. Tell Karina Brad sent you. You won't get a discount, maybe just a laugh.",review,1ylYrKcGNA8MDkhNBTjHMA,2,3,2 +byhwHi0lhYdyY5kSpuqoaQ,2011-11-08,EaH-VbdgUGyPbAeEqFCoIg,4,"Came here for my cousins rehersal dinner and the first dish out was the lobster bisque and it was one of the best things ive ever ate !!!!!! AMAZING, I could have ate 10 more bowls of this and forget the main dish. +the main dish i got some chicken dish that i dont remember that well. I do remember that it was over pasta and the pasta was great, +I also had 2 GREAT dirty martinis ,",review,3w-JiPus8k-BR5PQ7egDvQ,0,0,0 +o1GIYYZJjM6nM03fQs_uEQ,2011-08-29,lkCq9JaJDMYA3DP3pA7lFw,4,"I love the Salt Cellar for being the lazy woman's go-to place for seafood. If you get lobster or crab from them, the waitress will crack and de-shell it for you; it's such a great service since a lot of the time I am hesitant to get any kind of crustacean because I don't like getting messy and spending all that time getting the meat out of the shell. The lobster here, while technically from Maine, is flown in fresh from Boston, and they offer 1.25 lb, 3 lb, and occasionally a showcase jumbo lobster. When I went here they were touting an 8 lb lobster for those with the stomach (and coin) to spend a pretty penny on the Yao Ming of lobsters. + +While the sides are very basic, the seafood is understandably the real star of the show. While I was happy with my fresh lobster, I did try some salmon wellington, which was some of the best tasting salmon I've had in some time. It was very tender and moist, and very fresh. I'm also happy to report that they have soft shell crabs here this season, which is one of my favorite seafood items. + +The ambiance itself, for me at least, is a bit lacking. They don't call it the Salt Cellar for nothing, for when you descend into the restaurant through a flight of stairs, it's very dark and a bit damp and chilly. The lighting for me is too yellow for me, and everything in general seems antiquated. I remember eating here years and years ago, and it seems like they haven't changed anything about the decor since then!",review,uZbTb-u-GVjTa2gtQfry5g,1,3,1 +3OauvrqUU8nDLWcW6q9hGQ,2012-03-20,1XLHHwLYDnQnLhMfBP5x4Q,3,"Could be because I've never met a bowl of pho I didn't like, but I could slurp this stuff up all day. Viet Kitchen does a decent job with their pho; the broth is so delicious and soothing. I have only ever gotten pho at all the Vietnamese restaurants I've been to, and here's what I didn't like about Viet Kitchen's: the chicken is somewhat dry and tasteless. The broth has a ton of flavor, so when you eat a piece of chicken with the broth it is fine. But to eat it alone, is way too plain. All they need to do is season it up a bit before cooking it. Also, the spring rolls were very fresh and great dipped in the sauce. Without the sauce, they would have been a bit dry, too. Overall, this is my go-to place for pho since it is so close to my house.",review,vHoKL-4FCgGSfDrPr43Opw,0,1,0 +rrd7NeAgARDNzPsxxsBJiQ,2011-10-12,dAaXvILHexKJfDwbW66oJw,4,Amazing tour with a guide that was very knowledgeable and entertaining. The prize of the 90 Minute tour was a bit steep but well worth it after the fact. I will be back for the shelter tour.,review,m2T71nxPgzrmXi-cKE3U2w,0,0,0 +WaO_hAunQrZ--vI308rHQA,2011-04-11,yiOoJBEy3Hpro9mwLnKadA,4,"After my sixth or so visit here at Big Earl's I have to give them a four plus rating. My first time here was opening night and it was ok...the second time was improved...third time good...etc. Now when I come in the smoke is starting to impermiate in the walls leaving a wonderful smokey resonance in the dining room, and the food has become exponentially better!!! + +I am like most people in the serious dining population, a lover of all things pork. And while they do some real good pig here, I am thrice impressed with the beef offerings! I like to judge a restaurant on the dishes I would absolutely return for, and the brisket is for sure that item here. Actually, the beef ribs are also one of those ""return for"" items as well. They, much like the brisket, are perfectly smokey, wonderfully seasoned, and impossibly tender. I highly suggest either one. + +As for the sides, I can honestly recommend the collards, potato salad, and the Mac and cheese...although it's not a creamy Mac, but it is gooey enough to pass my palate's stamp of approval. + +A huge selling point for me when I dine out are the drink specials, or selection. They are GREAT here!!! Being a total whisky slut, I am in heaven here, with dozens of delicious options, and the handful of beers on tap here make me happy for the change in libation after a few too many. Try the front porch cocktail, one of my top five here in town. + +Big Earl's has proven that with time, all things become better. Like I said before, each separate visit has been more fulfilling than the last. I can only imagine how the experience will be, come summer and autumn, my guess is pretty damn amazing!",review,bPWCuFEaVL5F6dT3JgivLw,1,2,0 +uFR7CpDJlW-gNdmk-zhIGw,2011-03-20,ixloXRCwqDx9pIWuiXhdpQ,5,"I don't love the coffee at Starbucks, but this place is getting 5 stars for their service! They are quick, ACCURATE, friendly, and they always remember my drink even though I only go there about once a week! Amazing! The staff is great and I thought I should leave them a nice little ""Good Job"" on Yelp!",review,0beZngJ03EmIQfVcnlVK4w,0,0,0 +679pJn1KyKr2X8NcQNyMzA,2011-09-04,kWzxXRfFOC5SwY10mUWrhQ,3,Great dive bar. Great jukebox,review,YjyM32qgF9QQs7_GcqRsHQ,0,0,0 +bgTB6MgdVQssXhkNJ7qIfw,2009-02-27,sDTYQmj4KOfLCUDc6SBgpw,5,"This place was incredible. The staff was friendly, not pretentious, and very knowledgable. I don't know what it was called, but our group ordered a tray which was a sampler platter and had a bit of everything on it. So fresh! We also tried the sushi with the caviar on top. Try the sake that they recommend (flown in from Japan - they are the only ones in PHX that carry it). I'm not a sake fan but I loved it. That's how good it was.",review,brVRJisWkstW6Zlz5jxJ-g,2,3,0 +yGmdo1ENajB98iryHGoWFw,2007-08-21,nW-rY1EgvzNFYHJCDDmCow,5,"Monkey Pants has some of the best burgers in AZ. Great place for a long lazy lunch over some pitchers. I think one month my friends and I went there like 20 times for lunch. Never got sick of it. It's a dive bar, but it's a cool dive bar.",review,IjhG-oFCGvOjP8kxoMZx0w,1,1,0 +5Feaj6aixO_QxKFnkHf3xg,2009-09-13,EJi2hMav9tkYMnP4JrelUA,4,"Known as ""The Jewel of the Desert"" and the ""Grand Dame,"" this beautiful hotel is the only one in the world with a Frank Lloyd Wright-influenced design. The architect was a man named Albert Chase McArthur, who had studied under Frank Lloyd Wright. Hence, the main restaurant's name is ""Frank and Albert's."" + +Celebrating its 80th birthday this year, this unique art-deco resort is rich in history. Dozens of presidents have golfed here, Marilyn Monroe splashed around in one of the 8 on-site pools, and many more celebrities and industry magnates have called this their temporary home. + +When visiting here, it is important to note that on-site parking is costly. A self parking fee of $12 is imposed even on its guests, and the self parking lot is often located some distance from the hotel entrance. For those not wanting to bother with parking the car themselves, the price is$27 to valet. The package I purchased luckily had the self-parking included, but the car was delivered to the valet nonetheless. I was sure to speak to a hotel manager about how ridiculous it is to ask a hotel guest to pay for parking, and he happily credited our room for the valet fee. + +So, my first experience was our dinner at ""Frank and Albert's"", formerly known as the ""Biltmore Grill."" Local purveyors provide the ingredients for nearly all of its organic dishes. From Queen Creek Olive Oil to Shriner's Sausage, Mesa Ranch Goat Cheese to Biltmore grown Rosemary, one can taste the difference. The menu provided a range of selections from salads, pizzas, and flatbreads, to rotisserie and classic comfort foods. The wood stone baked filet of salmon was flavorful, tender, and full of tender feelings. I recommend their ""bloody rose"" cocktail. I snicker as I write these words, because bloody marys are my least favorite cocktail. However, this unique blend is made with crop organic tomato vodka and juice, fresh biltmore grown rosemary and spices. Service was attentive and timely, waiter was very knowledgeable, and we were very impressed with the quality and flavor of the food. + +Next, it was on to the newly added wing of the resort, the Ocatilla. The Ocatilla is essentially a new boutique hotel situated on the Biltmore property. It has its own pool, a concierge, and an executive lounge which offers daily complimentary breakfasts, a light evening fare, beer and wine, desserts, as well as coffee and soft drinks.Our package included a room on the third floor of this location, as well as access to its executive lounge. + +Although our stomachs were full from dinner, we made room for chocolate covered cheesecake, choc. covered strawberries, fudge brownies, tarts, and chocolate chunk cookies. We swallowed it all down with some prosecco, and headed up to our room. + +The room was at least 500sq feet, and I believe that the rest of the hote has fairly sizeable rooms, as well. The decor was a blend of art deco and southwestern. The bathroom with its granite countertops, boasted a tub with sea salts and candle, in which we submerged ourselves comfortably up to our chins. Two plush robes were there for us to lounge around in. A snack bar was provided, although a package of nuts and dried fruit was $7. Biggest disappointment was that that there was no wetbar. I always look forward to these in any hotel room, especially to use them for storing leftovers from dinner. The king bed was etremely comfortable, with its pillow-top mattress and feather pillows, as well as the high thread count sheets. Silky soft... + +We enjoyed peace and quiet all night, and were not disturbed in the morning by housekeeping. + +The next day were were early to rise to enjoy the lavish continental breakfast spread in the lounge. Granola with local pecans and yogurt parfait croissans with spinach and boursin, ham and cheese, small danishes, assortmnt of fresh fruits and juices gave us the perfect start to our day. We grabbed some bottled waters and cokes and headed to the pool. We had an appointment at the spa an hour later, for seaweed wraps and massages, and it was wonderful, the service excellent and very personalized. + +Recommendations: +go to biltmore's website directly to book a room. you will find incredible packages. our package was $200 and included dinner for two, lunch for two, 50% off at the spa, and access to the executive lounge at the ocatilla. + +if you live locally, they will shuttle you - saves the parking headache. + +About Ocatilla: +basically an upgrade with your stay. For an additional $75-$100/day, these are the following amenities you will receive: +complimentary beverages, wine, beer, breakfast, light evening fare, and desserts in the lounge +business center (computers, internet, printers) +Wii rentals +pressing service and shoe shine +therapeutic turn down bath +neck and shoulder massages every thursday +personal concierge",review,HjhR3u17OjxD4s8t3toTfg,2,3,0 +BLgkoO4MKq00V2o9jOf5zw,2011-08-13,_vR8fLPVveZUpjZ5jjex6w,4,"Just visited this morning and had a great experience. The staff was friendly, and the coffee was great. I had a raspberry muffin and iced toddy. Muffin was large and full of flavor. The owner was kind enough to give me a sample of the toddy (iced coffee brewed for 24 hrs i believe) My husband got the quiche which was light and fluffy and I'll order next time for sure. I loved the vintage plates they give you, and the atmosphere is inviting and airy. It is kind of a cramped space when busy, but worth any wait and maneuvering.",review,VQDgEiTWbiQ71Lnqp6IX6A,0,0,0 +_IwgdSjrIMwAcQdeLNhcZQ,2010-11-18,FParXpOQ3fXqKfhykIdWJQ,5,"We were in town for the weekend and I had a cigar at this lounge. The cigar prices are reasonable and I didnt mind paying $9 for a La Gloria Wavelle. Service was good and the atmosphere was nice and chill. My Wife doesnt smoke cigars and the air circulation was good, no lingering smoke. We met some nice people and the lounge singers were a plus. We will come back next time we visit, I wish we had something like this in LA.",review,45_XilpsKrVRUWZmdL6hfw,0,0,0 +di2QHs2SrY0XFHcfAq_k2A,2012-10-13,HNinCPxgoNU_whrdpZOYRQ,4,The Corner Bakery was A-Ok! To me it seemed like an elevated Paradise/Panera. I had the Cobb Salad and it was perfectly chopped and dressed. The desserts looked really good but a little on the pricey side for me to try that day. I'll be back because I really enjoyed the atmosphere and the great customer service.,review,rL3dPeKDTybG_ct9OCXGAA,1,0,0 +SspuGxPX7AEIh_0KqR3RqQ,2012-01-02,wg3N8cP7-C6qQtWVPDSt4w,2,"I have lived here for about 5 months, the place is okay i guess, the ground are clean which I like, but the staff seems kinda disorganized.. they got our move in dates wrong which thank god I'm an early mover and didn't wait to the last min, then when we FINALLY moved in, we got a different apt than we were showed originally. The linen closet has a big freakin heater tank in it. Which okay whatever i guess is not that big of a deal but then I found out we pay more for our water because its not divided out between everyone else. Also EVERYTHING breaks our shower has broken twice, the closet light broke out the wall, the bathroom light fell out of the wall, the kitchen stove and the washer has all broke from the time we moved in (Last May). the only reason i give it 2 stars is because i do know there are a lot worse apartments out there but still my house is falling apart! When I go in the office i feel they always try and rush me out because i can finish my questions its really annoying. So be careful when looking at these apartments when looking for a place to live.",review,gIhEoQQLLUHbKbn2_TS1hg,1,2,2 +EWMwV5V9BxNs_U6nNVMeqw,2008-01-25,Ej4huHvwrw4by7kTsXoWew,2,"The only thing I like about Fez are the pomegranate margaritas. +Food could be better...",review,qaAmAU9T_t84UDGiBI98sw,4,6,3 +ky3kuTeqTUOU4CsZ_2_LzQ,2008-11-19,1hiA8UlYnmupJgb2waVXAg,3,"you want a hotel, what really matters? + +Cleanliness!!! 5 stars. +Friendly staff. +And they got the really good cylindrical candies... mmmmm. + +ok, now that we got that out of the way.... some funky odors in one of the hallways and elevator at one end of the hall was out of order our entire stay. + +i would come back though. solid price performer.",review,anTtulQ9G2b3SipCEwGVHg,0,1,0 +53YGfwmbW73JhFiemNeyzQ,2012-06-22,Gi-4O3EhE175vujbFGDIew,1,If you like the stuck up Scottsdale vibe this is a good place for you. The food isn't impressive. Nice outdoor seating.,review,Hqgx3IdJAAaoQjvrUnbNvw,0,1,2 +5KG0A3WlC7K3DAXtrIFFjg,2012-03-29,Zrxco2mFgSzMeWFNiY_dGQ,5,"Where else can you get fresh lemon grass, fresh pork uterus, and avocado ice cream? Asian markets are the bomb, but Lee Lee's is the BOMB DIGGETY since they have EVERYTHING. Jamaican, Cuban, Vietnamese, Korean, Indian, Lebanese---you name it. + +If you love to cook (and I do, I really do!) you can seriously spend hours here. + +ONE CAVEAT: The seafood is fresher and better at 99 Ranch on 44th St. in Phoenix. + +Last week, they were giving a 10% discount off of your grocery bill and a free bottle of fish sauce or soy sauce. If you spent over a certain amount, you got a big bag of rice. + +Go! Now! + +And have lunch in the Vietnamese restaurant attached.",review,XpSZrY_Ym8GGx7SNEd0q9g,0,3,1 +3Zsjlum5kl5N5KV712aTMQ,2012-03-13,fJjsZ9zBb6rELpejWpLyDQ,5,"This is my FAVORITE place to dine out in the greater Phoenix area. The food (I recommend the steaks) is almost as good as the view and the service is impeccable. My boyfriend took me here on a date a year ago, and it was definitely one of the most romantic restaurants we have found in Phoenix yet. + +The prices are a little high ($25 - $40 per entree), but it's well worth it and you won't leave disappointed. If you like American or French food (who doesn't?) and have a special occasion or just feel like doing something different, I highly recommend Different Pointe of View to everyone!",review,w3JoT0gxtaRtLaGrE_GfLg,0,0,1 +2VpSPb8IVXNqyVY5n7caGg,2011-12-13,ly8U_mWxJ1kUX2HbgLIudQ,3,"Well....it is what you can expect from airport food. Not that great but not terrible. All I wanted was a simple sandwhich to take on the plane with me. This airport does not have the best in choices, Starbucks, Wendys, Pizza Hut, etc. This little place is literally a kiosk in terminal C. It is good if you are in a rush and just want something cold for later.",review,Ds-DFKb1rF9l7aq4OaJUpg,0,0,0 +WaO_hAunQrZ--vI308rHQA,2011-08-01,Lgn1k3g1CE044i1rMJD4Sg,5,"Dropped into this joint just wandering around Old Town Scottsdale. Ordered the nachos and had a couple margs. WOW. The staff was friendly, have a great sense of humor (you gotta see the posted picture joke in person), and the food is...beyond good. Having only sampled the uber nacho plate, which is by the way, as big as a platter and slathered in layers of ooey gooey cheesy goodness, I can definitively say: + +Best. +Ever. + +I give this place the highest marks for ""doesn't suck""",review,vPjrrDnE2cP7D8Gz1fCpeg,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2009-04-04,QxajHgOFrRWNbDNHkB4egQ,5,"If you ever want to instantly ""up"" your cool factor with a friend or date, meet them at the Lost Leaf. The mere fact that there is no external sign (other than the tacky ""open"" sign indicating that it is, indeed, the lost leaf) you would probably never have any idea that the best neighborhood bar in Phoenix is inside. When i am asked to describe the lost leaf to someone who has never been before, it is basically a big open house with the most well-stocked beer fridge you have ever seen. + +No cocktails or draft, but for atmosphere and quality of beer selection, lost leaf is by far my favorite place to meet people in dtown phoenix.",review,_JUAxvr5DSEcHTvvXnUsxg,1,1,1 +ChmqODwuYP1ewjmWXtxtsg,2012-03-30,2zJjXsb6wYQ239KpKabC1w,4,"My previous review has the real details about what i LOVE about their food! + +Update: Doing mostly take-out here, but at least one of the grumpy girls is more friendly now! Yesterday when I grabbed our to-go order, she smiled, made small conversation, and did not exude a sullen disposition in any way. I'm happy for me, I'm happy for her! + +Ordered many of our usual items, plus Mongolian beef, which was very tasty. I'm stil partial to the Ginger beef, however.",review,ngD5RF07pxwlq4euexSluA,1,3,1 +6PFPQeCM-XDrZRy0DHV2Yw,2010-12-27,eCDqROlxiUB6Njw-Nup4Tg,4,"This is a very good Chinese restaurant, we have gone there for years. I am shocked by the bad reviews and would suggest you ignore them, this is good Chinese food!",review,CBosnOS2STTS75a1ZsYLZA,0,0,0 +-yxfBYGB6SEqszmxJxd97A,2010-01-30,ADzTrcqIKaB_idu0tzrdgg,5,"This is my favorite restaurant in the Phoenix area. There, I wrote it...and I am sticking to it. First off -- fresh local, sustainable, organic are not just words on the menu and the website. Now, in places like San Francisco and NYC, this would be nothing notable, but in the desert, it is truly something hard to find. Aside from the practical, in the land of Fox Restaurants (True aside) and the big box store at the strip mall, there really appears to be little demand for a small, local restaurant on a farm. It's time to make new demands! It's time to say no to the next Zinburgergeist and try that little corner place run by your neighbor...but I digress. + +We enjoyed the Farmer's Feast and it was worth every penny of the $65/person. First, the house cured meats, including the head cheese, were amazing. Second, how often do you get a chef's menu where each person's plate is different? Not often. Ultimately we each tried 10 different items. And each item, was amazing. I would come back for the pasta alone, let along the perfectly cooked scallops, and melt in your mouth sliced fillet. + +The service was ideal. If you want to eat in 60 minutes, don't come here, but if you want to enjoy in evening of great food, do come here. I noted to the waiter that the previous night they had sturgeon -- something I haven't seen on a menu since N. California. I commented on how unique it is, etc...Of course, it was not available on the night I was there...or was it? When it came to our fish course, the waiter brought out sturgeon for me. The restaurant didn't have enough to have it on the menu, but the waiter clearly put in a special request on my behalf and made the effort to make a diner happy. + +Maybe if I offer to work on the farm I can eat for free...",review,0NckJhx0qXykvvhsm-p7MA,2,2,1 +fd0iSXEhwz-foQdS8SCKYA,2012-02-16,ki2Lnci73UvAmuj9Pu7kGg,2,"I received a buy one entree, get one free coupon for joining their fan club membership so my son and I went this morning for breakfast. Got there around 9am. Greeted and seated immediately in a nice booth. Waitress was quite knowledgeable and took our order after giving us time to peruse the menu. I ordered the Country fried steak and eggs which comes with OJ, country potatoes and toast as did my sons breakfast which he ordered the standard bacon and eggs with an extra egg. We both agreed that the breakfast was OK, both our potato sides were cold. I had a small thick dollop of gravy on my country fried steak, which was quite good but had to ask for extra gravy. Put in a serving bowl it was so thick it wouldn't pour so I used a spoon. I spread it on my Country fried steak with a butter knife much like you would a piece of toast. Weird! Watch out for the coffee. If you are offered flavored coffee it is extra. Hidden charges for everything. In other words, even with the coupon the total came to almost $20.00. for 2 average breakfasts. (tip, cancer donation, etc.) I had to do a double take on the check to see if they included the coupon. Nothing really bad but nothing really good either. I should have known better! Probably not coming back. My son seconds the motion.",review,lz6V_bpLpPI1-gxUZJU9Lg,1,3,0 +ntN85eu27C04nwyPa8IHtw,2010-10-31,3eJ2M94guIOhVWexTM6iEw,5,"Matt's was absolutely fantastic. Got there at 2pm on a Sunday, which is apparently the time to do it (half an hour before close), as we walked right in, sat right down, and had food in 5 minutes or less. Brilliant. + +I had the Five Spot which was simply the best egg sandwich I have ever had. Two eggs, two huge slices of perfectly cooked bacon, american cheese (my favorite with eggs when I'm not going fancy-style, reminds me of when I was a kid), and well grilled onions round it out, served on a fantastic roll. + +By default, this item doesn't include the normal potatoes and toast, so I had them add homefries--they were magnificent, and entirely unnecessary. A huge portion of them, with a wonderful smattering of rosemary to punch them up, they were delicious, but I couldn't finish them. + +The girlfriend got a waffle with bacon and it should just be said that restaurants who serve waffles without real maple syrup are simply criminal. Matt's brings the good stuff, and it's MUCH appreciated. Perfect for dipping both waffle and bacon alike. The waffle was fluffy, light, and had that good, homemade flavor. + +I can't get over how filling and delicious my sandwich was. Service was prompt and friendly, and overall, it was a great experience. Added a glass of OJ and a coffee to my sandwich with added homefries and her bacon and waffles bringing our tab to right about $21. Absolutely worth every penny. Will be coming back. Probably near 2 o'clock again, to avoid the wait!",review,8-2W5CmkDl9vrkxRpkiPRg,2,2,0 +18TUn9oiW0k0yB6lheiOvw,2011-02-05,CT7j5_WvUtIlMX7PfxJTdQ,5,"This is by far the best Chicken Fried Steak around! Not to mention their mashed potatoe's, salad and biscuit! I've never been able to clean my plate here, which is great since I always have an extra meal! Of course you can always get the lunch portion which is smaller, but then you don't have the extra goodies for later! + +It's a small down home place, dress comfy and go there to eat up! The wait staff is always the best and they know their stuff! + +I've had their T-Bone here, and it's good, but really hard to go there and not get what made them famous! Wonderful food! + +Prices for lunch are around $7.00 and dinner around $12.00 - really hard to beat for real down home cooking!",review,ZzxZZksMVxeOGcGfEFbfUw,0,0,0 +r4AG1WXCRWkZKQctrcy9FA,2012-09-25,oet4Ii22WUMa2kw8REVo1w,4,took my wife there last week. it is a really good. the food was great and the decor was really cool and the staff was very helpful and nice.,review,qsyO7LAgVVFoLhxkdBwzGg,0,0,0 +L_MtTn4IUBTmQtqqM2iFqA,2010-06-02,A5Msw7_zF_36ya1GZ3WleA,5,"I love the place. Was a bit hesitant at first but friends recommended it, and it turned out to be quite good. They even have a few choices for those that aren't into Asian fare.",review,hlAkBrhXD5JfQS6CQn-9mA,0,0,0 +6v0vQm3wXzaFoEywvpbnqg,2013-01-01,l7L95_bLqKhPCrTWo9aVRQ,4,"While in the area we wanted something for lunch but knew we'd be having dinner out that same evening. Not wanting to fill up too much we ordered an appetizer and entree to share. +The lettuce wraps with shrimp were so good! Fresh and crispy veggies accompanied seasoned shrimp all wrapped in butter lettuce leaves. It was light and tasty. For our entree we ordered the Hawaiian mahi mahi which came with a pineapple, red pepper and onion mixture over a bed of rice. The fish was a little overcooked but still tasted pretty good. Star for the water glass test!",review,y5_vrqIylhXMrejM_-x_vA,3,3,1 +DLFsfN6SWtjZnE2ZbV9S_Q,2012-05-21,LLHGW8-jlgB92qmTJRw33A,3,"I like the way they treat my dogs, really friendly staff. They are really good about getting your pet seen in an emergency. The facility itself is nice. However, it feels as if they are always trying to sell me something things I don't need. This place is so expensive, we can never get out of there for less than $100.",review,F2GEqt_mV95OQEiYPTQ4VQ,0,0,0 +Xk3inJcuBGLhavUcdlINZA,2012-09-30,Uzisz3l_LnK-kF34CDq5Nw,5,"I ate here once while Crudo was still in its Scottsdale location. And I raved about it and vowed to come back (although the strange location in a salon delayed that return). Then Crudo disappeared. And I wondered how a place that fed me one of my best meals in Phoenix could disappear in a town supposedly full of foodies. Now it has reappeared, and in a better location. Oh joy.",review,OD5nkH4uJDDTJQdmaltDAw,0,0,0 +qd1ajiZRCwqEQJqCgoN1wg,2011-01-08,1wvndcCwnvhB4eui7rV4cQ,5,"BEST RESTAURANT IN AZ! + +No but seriously, I could eat every meal here. Chef Becky is amazing and breakfast this morning did not disappoint. I decided to try the Organic Oatmeal and my friend ordered the Red Velvet pancakes. Ok, so you're probably saying ""with all that yummy goodness you ordered oatmeal?"" Well, what I really wanted were the chilequiles (eggs, cotija jack, pulled pork, tortillas, tomatillo verde? Yes please!!) but being allergic to eggs I went with the oatmeal, which was delicious. The oatmeal had a vanilla flavor to it and the strawberry and pecan topping gave it some texture. The red velvet pancakes are too intense for words. Rich, fluffy...they'll make you want to get up early on a Saturday morning. I also tried a side order of the banana bread which was slightly toasted....now if you've never toasted banana bread, you need to. This was the perfect buttery flavor combination with the oatmeal. + +The service was fast as always--we never had to wait or ask for a coffee/water refill. The decor inside is warm but I think sitting outside on the patio is the way to go. + +Love the Herb Box and can't wait to go back and try the cinnamon buckwheat pancakes.",review,NUjmxyT96tdLIaet5uSQRw,1,0,0 +UIfORCz28cEGMr_9p0eJ5g,2009-09-10,j4Ga7qT7RrHZuxegQy2hAw,2,"Set up a VinVillage event at this place, sight unseen, which I hosted last night. After the glowing descriptions on their website, some of the reviews here, and knowing they are located at CityNorth, I expected much better! + +Walking in, I did not get the feeling of ""upscale"" restaurant. Sports on 2 TVs blaring out over the bar and into the open dining room did nothing for the atmosphere. They had a long table pulled together for our group in the center of the room, but I grabbed a seat at the bar since I was the first to arrive. Took a few minutes, but the bartender eventually gave me a wine list/menu, answered my questions, and proceeded to get my drink. They had a good selection of wines, and some you don't normally find on wine lists at every other place in town. + +A few others came in and we moved to the table, no problem transferring tabs. Seemed to take a long time between everyone (about 15 of us, though we initially expected 20) receiving their drinks and the time the first apps came out. Granted, they were complimentary (the deal I worked out for my group), and they were quite yummy - especially the spicy tuna on tempura eggplant - so once we started eating, we forgot about the wait. The pate was very rich and served with soft slices of raisin bread. Some were immediately addicted to the bacon-wrapped dates. + +Everyone ordered a burger of one type or another, some opting for the pre-selected toppings, other customizing and adding sweet potato fries. We confirmed that everyone was on separate checks. My burger came out not quite as rare as I would have liked, but what do you expect when the patty is only 1/2"" thick? I am not a big beef fan, anyway. Sauces were good, especially the pungent garlic parm, as were the fries. + +But then, we waited for the checks...and waited...and waited. Seems the staff didn't begin trying to sort out who had what until at least HALF AN HOUR AFTER everyone had finished eating and plates had been cleared! And none clearly knew how to use the POS system. Those who had cash eventually tired of waiting and just left it on the table. Those of us with credit cards were not so lucky...and several bills had to be re-rung, as they did not include the right items. + +I had wanted to go back to try the salted caramel milkshake, but it will be a long time before I return.",review,Laas9Ip1BoMGMlli1K4XcQ,0,0,0 +EdPa3d82Dq_za2Wf7Dtysw,2012-01-04,AU8rXv22KbxaMwK3_sY9BA,5,"This review can be applied to any and all Quick Trip locations. I have, on many occasions, gone out of my way to stop in QT over other gas stations, because not only are they much much nicer, but they are very clean and offer a ton of gas station fare (drinks, shakes, coffees, juices, snacks, etc). I really appreciate how quickly they work, with cashier's that are able to take care of two customers at once. I usually abhor using gas station bathrooms because, let's face it, we've all been there and seen how putrid they can be, but whenever I visit QT they are always clean! They mop, sweep, clean the bathrooms, windex the doors...and for that I applaud you all, thanks for the cleanliness:D",review,oXBahXJCXUEATm5IVexw8A,0,0,0 +FuqWdD44gYFhofESN6JD1A,2012-09-29,VzDUUDDRnuaWq1bVy6_Fwg,4,Jesse and I had a lovely evening out- we had great dishes and the owner was our server as well. He belts out a lovely Italian birthday song while playing the guitar. Very nice,review,i_dXLt7xSBQM8OGEjnTdlw,1,1,0 +er20L6Wzviiin8OS9FqFmg,2011-06-10,HDhmOIX6eZYQrvelvX3Czw,4,"The only reason I'm not giving 5 is the misguided bus driver. After asking the driver if he dropped off at 'Pecos', not 1 but, 2 times, and he agreed both times, we wound up in Chanlder/Gilbert border NOT on Pecos. My mistake in thinking there was only 1 Pecos stop. Newbie me had no idea. It was easier when our parents pinned our bus stop destination on our shirt when we were 6! + +Stranded, about 8 miles away from my park n'ride, I was advised to call their help number. So, I called Customer Service who transfered me to Wanda, the dispatcher. I've never talked with someone so nice, helpful and compassionate - THIS is how customer service is supposed to be...HP, Dell, are you listening?! + +She not only tried to find me other buses to link and other routes to my stop, but in the end, tracked down a site supervisor Bob, down the road, luckily he was on a run, and took me to where I needed to go. He was so nice and understanding, I didn't feel like a total doornob. + +Tell you what, I can't think of anywhere else where their customer service was actually helpful, and hope these guys at least get a bonus, stipend or something. They went out of their way when they didn't have to. Thank you and great job - wish more people modeled your service-oriented organization!",review,Lzug6WSdwzdGECzcgHPEyw,3,0,0 +FURgKkRFtMK5yKbjYZVVwA,2011-12-05,WLKcLVYCXduMlWJT6uW4rQ,5,"What a place! I recently hosted a 25-person family party there, and both the food and service were impeccable. The staff were all very friendly and accommodating, even with the dozen children we had in the group. Leslie was the manager and she paid attention to every last detail, helping me to plan the menu and gauge food quantities for that many people. The restaurant itself was spotless, from the outside patio down to the restrooms. Thanks for making our family event such a wonderful success. Everyone left full and happy. We will definitely be back!!",review,gamYvJY-JaxQ0sV5Fkr3DQ,0,1,0 +3XG4-xRNCHPQs2sAYa66pw,2009-03-02,Ll8KJ3EQqPqdg5nHCQNM6w,4,"I had my doubts about Cream Stereo Lounge beacause I didn't like the name of the place and I heard that they played a lot of house and techno music. I've been sick of all the Scottsdale staples like Myst, Axis, SIX, PCL, etc.... so I thought I would give Cream a try and I ended up liking the place a lot. Everyone there was very friendly and the DJ played a lot of good songs to dance to. If you're sick of going to the same bars in Old Town give Cream a try.",review,jopndPrv-H5KW2CfScnw9A,2,3,1 +8t80-omyflkywRfu9LPh6g,2007-03-06,EQZjeyvQRe0xnEYcV_eK0A,2,"2.5, just not enough to give it three. + +Food was just OK and they ran out of ahi tuna by 9pm! + +They have happy hour all night (pretty good specials too) but they close SO early (10pm last call on Sunday)!",review,VFTd1QaNvVVucagkq8ZJAw,1,5,0 +q9WaFYhlOZCrfXJQTG5t_Q,2012-08-09,rgkkCRoODa2FfBwBSHd7SQ,2,"To sum it up, this place was just not the place for me. Maybe I am just a fuddy duddy, but it seems that the clientele are cougar-like women, aged 30-50, with bleached hair and sequin tops. I expected a quiet wine bar, but instead it is more like a loud night club. + +The hubby and I visited The Living Room on a Saturday night, so maybe the whole ""we-wish-we-were-a-club"" thing was just a once a week occurrence, and maybe, just maybe, I am totally un-cool, but we don't plan to return. + +Food: Wine specials were fairly decent and priced well. Food was average (3 stars). We had a variety of bruschetta, a tuna salad and a strawberry salad - way too much dressing on both salads. + +Service: It took a long time to get a table (~30 mins), but it was Saturday night and crowded, so expected. Once seated, our waitress seemed more concerned with anything other than serving us. She was not very attentive at all. She asked for my order and walked away. My husband was like ""uh, I kind of want to order too"" + +Atmosphere: The overall look and feel of the place is pretty neat. It is a smaller restaurant with lots of patio/outdoor seating. Decor is large heavy curtains and many couches, thus the name The Living Room. However, as I mentioned earlier, the music was ridiculously loud. They had a DJ playing music so loud, having a conversation was impossible (and we ended up sitting pretty far from the speakers!). We left a soon as we finished our dinners (didn't stay for more wine or dessert) because the music was just too annoying.",review,98jhrpmyYcLLM0-9z-r2oA,0,2,3 +KV-yJLmlODfUG1Mkds6kYw,2011-12-01,NT37ZZQBZkL0aI2dzDfUkw,5,"Oh my God, Chompie's is the bomb and I'm so happy to have a location so close to my house! + +While this location has a steady customer base, I have never had to wait longer then five minutes to be seated, unlike the other location at 92nd Street, Win! Service has always been fantastic. Quick on to seat, quick to get drinks, quick on refills, and delicious food from breakfast to dinner items. As other reviewers have stated, the Jewish sliders are amazing, but I have also enjoyed different wraps and sandwiches. Prices are a little higher, but the food is well worth the money. There is a ""bar area"" with about six stools and two TV's that you are able to see from your tables/booths which usually has ESPN on. + +The restaurant itself is all decked out in a NYC theme, well lit, but the acoustics aren't that great so it can get a little noisy. Bathrooms are nice and always clean. Oh, and don't forget to check out their bakery for delicious goodies to take home!",review,fl6oI21uXoxVMwfR6lFanQ,0,0,0 +1CNKe3H07sLu6rigOpAYsg,2008-11-29,WLZ98oKtIHJT9CfF7LrxbQ,2,"Drinking + Arcade Games. This should be an obvious winner, right? Wrong. + +Oh, how wrong. + +Eating here is like eating in a casino, only less classy and with worse food. + +Beers are overpriced but absolutely necessary to make it through the event. + +Those combo deals that include beers and a game card seem like a good idea, until it's 45 minutes later, you're out of points, you're nowhere near drunk and you've already spent $40. + +If you go late, try not to get syphilis when you walk by San Felipe's.",review,jYWI9qJFCd1hDwF_dihPhg,2,4,8 +q9_N4b26UhGAYicjueUinQ,2007-08-14,8oLQLmDJdCXeJqSvYEpSGQ,4,"The Yucca Tap Room is wonderful for the following reasons: +1. They don't actually have taps +2. They do have live band karaoke +3. They do have table shuffle board. +4. They do have the naked lady game.... otherwise known as Photo Hunt... the best bar game of all time. (A note to both ladies and gents, the naked ladies are much less distracting than the naked men... and hair, heels, and bra straps are heavily relied on as the sourced of difference between the image. +5. It's a good mix of people and pretty cheap. Unpretentious and awesome! +6. It's bikeable, but I feel like I've traveled long distances to get there (I think that is because crossing Souther is intimidating)",review,b60JsTGYbVqUGYbI81aOsw,2,1,1 +Bjt3rB73dvSDe1XEPEWc6w,2011-04-21,lE9cfDT-KpXPK8groYpYKQ,5,"Great sushi place! Ample portions of sashimi. Unagi is the best I've had. And don't forget the Tako salad. The atmosphere is okay. It's not bad, but not exactly cool. Of course, if it were 4 miles south (in Old Town Scottsdale), you'd never get a table.",review,CudlbVQsaP4d8LATjkgfFw,0,0,0 +d_f2yIJ8mkRXD_BnQ-yA7A,2010-12-11,JGIpGhojr7IavqUCAErwGA,4,"My family comes here for cases of citrus every year. The navels and tangerines are delicious, and very reasonably priced. They also have lots of other interesting local products like a variety of honeys.",review,F5OGEH2jk5sA_R4xBp2TPg,0,0,0 +Ax11wyp-FudujeU9nejQbw,2011-03-22,bBrWfrmif0hKB2eZ030dBQ,4,"I was pleasantly surprised to find the Phoenix Public Market across the parking deck from the Cronkite School of Journalism and Mass Communication. It's too bad it's not located on the ground floor of the school, replacing the space currently occupied by Subway. It would be much healthier for the students. + +I had their breakfast protein shake, which was AWESOME! Even though it was $6, I ended up having TWO! + +While the shop is not as big as a Whole Foods, it does provide the organic and healthy staples, while serving fresh salads, pastries, and different types of chocolates. I didn't get to purchase the local bran of organic ice cream, which seems to be popular. Maybe next time I'm back in Phoenix. + +I also liked their little coffee shop in the back room, which is separate from the main shopping area, giving you a bit of quiet to read a book or check your email. + +Lastly, all the staff are quirky, yet incredibly friendly. They offered up suggestions for local things to do, and were generally helpful. + +Overall, love this place. I wish it a long and successful life. The world needs more Phoenix Urban Markets.",review,yeSRxEDtWpdI1Oc2TsX3xw,0,1,0 +XWpkTxBLgRXxl7g2Hw62Qg,2010-09-26,przKjmzv7o3guyLstuDJmg,5,"Careful! You'll get addicted. + +Angel Sweet is the best gelato this side of Italy. + +The pana cotta and zupa flavors are to die for. Don't settle for just one either, you can get as many flavors as will fit in your cup!",review,HITt6wNacTbmNudzNKy9Eg,2,1,1 +s1Z1GO4UZ-GDmRvSqpqDFg,2008-06-26,J37jEakdUbzPzVe8QtgODQ,4,"I think there food is amazing! However, it is a bit pricey which limits my trips there. I love the white decor but hate how expensive the drinks are! I ordered a Key Lime Martini and it was 15.00 for one and served in a tiny little glass! Come on! + +Additionally, last time I was there we went to the bar afterwards and most people were wearing flip flops which drives me nuts! Take a shower, get dressed, put some effort in! Save the flops for the pub! Hopefully, it was just an off night because I really think it is a cool spot!",review,fQ65oVUPQ3RXhm6qtjUTSg,2,2,0 +bNu-PVXtfyLE6A1qv9bDcA,2012-06-16,f08dCX8AguuKrYEmAfeK1Q,5,"I can't believe I hadn't been here before yesterday! Talk about a hidden gem! I was taking a friend around to cross stuff off her ""List of Stuff to do Before the World Ends"" and smoking a hookah happened to be on it. Therefore I googled places nearby us and Oasis popped up. + +As soon as we got there the guy at the door welcomed us in with a smile and opened the door for us and once inside the waitress/bartender helped us pick a table and took our drink orders. We decided to get the peach hookah and an order of the Hummus and Pita Deluxe with beef. The food was delicious and the hookah was great! The staff was awesome the entire night as well. Everyone kept checking on us to see if we needed anything and they would just stop and chat with us as well. One guy was even helping my friend try to make smoke circles! I definitely love that they're open until 4 am on Fridays and Saturdays too because it's always nice to have somewhere to wind down after all the bars close!",review,q3Fa0PhTGzRl-05fXHIi4g,0,0,0 +Fo5O94HccxE4PvMQf-G_vQ,2007-08-12,v8rGYASn4jSu8qn_Wevx6g,4,"I've been two Pie-Zanos twice now and I think my wife did the best job of describing the format of this unique dining experience: Subway for Pizza. Of course, this is not to imply that Pie-Zanos is staffed by mouth-breathing ""pizza artists"" or stocked with sub-par ingredients and generally filthy. On the contrary, this ""Subway of Pizza"" is staffed by congenial and hip 20-30 somethings who are eager to please by heaping tons of fresh and flavorful ingredients onto your individual personalized pizza. + +Pie-Zanos allows you to pick from wheat or white dough and from up to 8 different sauces. From there you can add herbs and crust flavoring and then you can pick from 6-8 different cheeses. Then you select from the widest selection of pizza toppings you'll find anywhere. The fare is basically affordable as long as you don't go apeshit on toppings (55 cents each after the first). As a special bonus they have Pepsi products. + +I have also enjoyed the breadshits which are fresh and delightful and pair nicely with the traditional red marinara as well as the tomato-pesto. + +My only complaints with Pie-Zanos and what keeps it from achieving 5 stars is how busy it gets at lunch, limited indoor seating and the fact that they allow children's birthday parties which, when mixed with ubiquitous bad parenting, quickly turns a hip and snazzy pizza joint into a Chuck-E-Cheese's.",review,8RzsGBVrqLWLCE8sOSYQkw,4,6,1 +7xbTnoyaai4JTkZ8rFPQTA,2005-07-03,H7tCJThvVA7a96c-x1mKnQ,2,"Happy hour in Phoenix from 5PM to midnight on Thursdays? Yes, at Devil's! Hey, it's Phoenix; you need to escape the 100 plus degree scorching weather in a casual place. The staff is friendly and the atmosphere is fun and lively. Mind you, my disclaimer about Phoenix qualifies my prior observations of Devil's-it's good for being in Phoenix. Devil's is a fun place to get stupid and have a good time in a casual setting. It does remind of a frat party though.",review,VxRPbgauDdOcA3eg1uazXA,0,3,0 +0UZ31UTcOLRKuqPqPe-VBA,2009-04-28,C5AUgjPlyhsKuuXfcK5bqg,3,"So Chase field you get 3 stars. + + +Here's the problem(s) I have with the venue or CONS so to speak. + +1. Cash Only almost EVERYWHERE, for a stadium named after a bank, don't you think someone would have taken finacial practice into better concern, perhaps CHASE just wants to sucker you more by making you pay their ATM fees if your not a member which I see as ""Greedy Fat Cat"" practices. + +2. No real options in regards to ""regular"" ball park food, the Brats are a joke and at 6 bucks a pop, they don't even offer peppers and onions, strange that it shows it in the menu picture. Other than that it's just another typical ""let's capitalize all we can"" with your typical crap chains (Fridays, Panda Express, etc) which I find pretty disgusting. + +3. The ""Value"" beer stands..... Okay, when is a beer a ""value"" at 4 dollars, I mean seriously, being that I just paid 6 bucks for a brat that's pretty pathetic I'd at least like the decency of having a good size beer to help wash down the piss boiled frank I just overpaid the crap out of for. To sum it up, the value beer is tiny and the only one worth buying IMO is the 9 dollar 24 ouncer or even better, the 10.50 Corona, HA. + + +Here's the PROS. + +1. Damn good deal on seating prices, we sat in section 140 (lower level outfield) for 15 bucks a person, Not too shabby! + +2. The stadium is rather beautiful, for a stadium that is. + +3. There's a pool in the outfield, cool idea + +4. Parking is rather cheap (12 bucks) and has never seemed to be an issue. + +5. Traffic control before and after games is surprisingly smooth + + +Overall 3 stars, I just think they need more originality instead of what ""Joe Sixpack"" wants while charging him Paris Hilton prices.",review,P1qwZrslRv9KS9vPJNXe4g,1,2,2 +wGaFCroINBx3o4L_siYEtw,2011-07-16,sY3Dj0iuUDti4dSVR1L5Kg,4,"Simply put, this place rocks. CleanFreak has a TON of vacuums, a debugging station, and a fast, very efficient car wash. Best of all, for a mere $17 you can have UNLIMITED car washes. If you have windows, you have probably noticed that it is monsoon season, and monsoons hate clean cars as much as terrorists hate freedom. While I cannot explain why we call monsoons 'haboobs' I can tell you CleanFreak is a great place to wash your car. + +CleanFreak has some perks I have never seen at other self car washes. For starters, the employees are outstanding. Somehow they are smiling and seem happy- even in the hot summer heat. They great you and explain how things work, and you get an armor all towel, to clean your interior. As you pull around and queue up for a wash, you are then given your choice of air freshener! Where else does that happen at this price? + +I highly recommend checking out the unlimited wash VIP fast pass. There is actually a separate line for people with the fast pass, and how it works is a bar-code sticker is placed on your windshield, and you pull up to the fast pass line, and it scans your pass- and you're in- just like that. This +saves time, and waiting in line, which is good stuff. + +The one thing CleanFreak can do a bit better, is communicating how things are supposed to go. On my second visit, I was getting ready to start through the wash, and I asked an employee for an air freshener. He asked me where my receipt was, and I didn't know what he meant. I asked him what receipt and he told me that if you have a Fastpass, you need to bring the recipt that the machine spits out. I had no idea about that, and explained that to him, and he was cool I think it would save some headaches to either have some more signage, or give people a flyer with an overview of what/how to do things. Otherwise, CleanFreak will take care of you, and for the price of one wash somewhere else, you will have a month of unlimited washes. + +Bring it on monsoons!",review,AYGHNy8gPxl2Q-etTT3hZw,4,3,4 +R6aazv8FB-6BeanY3ag8kw,2012-06-24,aDNa_XOJlqE7MlPWpW8O4w,2,"The ice cream floats were great! I know because we ordered 5 of them! + +The food on the other hand was not so good. We ordered the kids cheese pizza, grilled cheese sandwiches, pastrami, pastrami ruben and a cheese burger. The pizza was not edible (too hard). For the price of the entrees, it would have been nice to offer fries or fruit instead of chips or lower the price. + +The staff was attentive and nice! + +The atmosphere was great for playing I spy. + +Would visit again but only for soda and ice cream floats.",review,ZxturuGk-mcM91Jj6VS_0A,0,3,0 +Dim6R6ki5Z_05bk_V1htbQ,2012-05-02,zEALlbBCcSk0eahDIt1xmw,2,It was just okay for me. Pizza was huge which was great for the price. I would eat there again.... But it would not make my top 10 favorites. It has nothing that stands out to me as a wow factor. Wings were good.,review,4hR-tE1PYvp7Go5a8s8pmw,0,1,0 +jh9NywTvV-POnF1I6Pc9ng,2011-01-05,4hYFxePCgQTbM1l2ZTjgfw,4,"Alright, well seeing as I work right next door, my mouth has been watering over this place ever since I laid eyes upon the menu. And tonight, we finally had some yummy Rumbi take-out. + +First things first: they're a little pricey, at first glance. However, their portions are *enormous*. Each of us ordered a full size bowl(Honey Orange Shrimp for me, Jamaican Jerk Kalua Pork for Jamie, Honey Orange Kalua Pork and Teriyaki Chicken for Jamie's parents). The full size bowls were more than enough to last the average person through dinner, and then through lunch the next day; packed full of rice/noodles, meat, and veggies, with each bowl containing a ramekin of sweet teriyaki sauce. + +The shrimp in my bowl was perfectly tender and succulent, the Honey Orange sauce sweet, but not cloyingly so. The bowl came with a lime wedge, which added the perfect zing to the mellow coconut ""Rumbi rice"". + +We also ordered some of their Bahama Mama's Tortilla Soup, which was a creamy coconut-based broth filled with chunks of grilled chicken, tortilla strips, and melty mozzarella. It was a good, cozy soup, but could have benefited from more depth--some tang, some spice, something. + +For dessert, we had some of Rumbi's Key lime pie--moist, rich, and delectably sweet with a lovely measure of sour. Only complaint? The graham cracker crust was too mushy, soft, and crumbly; it would have been much better with a crispy bed under the pillowy-ness of the Key lime filling. + +All in all? Great place with reasonable prices, given their generous portions. They have a TON of salad options, as well, each more inventive than the last, and I'll be returning to try and test each one :)",review,xdhu_CZVomaGPD2qB0IQXw,0,1,1 +IVc23uY-36WUNYoIbz42Fg,2008-01-13,Kibj2ajzr5yyNrEkpIk_BQ,4,"I absolutely love the atmosphere and vibe of Switch. I've been there 3 times, once for a latenight snack (before they were serving alcohol) and twice for breakfast. My favorite thing about it is that I feel completely comfortable going by myself with a book and lingering over breakfast and coffee. + +Service is always very quick and super friendly, and prices are good. Unfortunately, as much as I love GOING to switch, I have to be honest and say I haven't been wowed by the food so far, although I still need to try lunch/dinner. Food's not bad, not at all, just nothing spectacular. + +Having said that though, I'll still go back often!",review,-txH2zJSBZQHO6RWvoWXuQ,5,5,0 +_dVPzYGXKNg2rIsc40VtyA,2010-06-19,ct98FQE43aU5RqHxVLXMHA,1,"This Jack in the Box location has the worst service & food that I have found in the Phoenix metro area. Every time I have gone through the drive through there my order has either been wrong or inedible - how hard is it to make a taco without frying it into oblivion? The wait times are consistently more than 5 minutes...I think I will be spending that 5 minutes driving to another location, just to get the correct order & food that is properly prepared.",review,lZZjKaoCmoYZ0F1pzuQ56g,0,4,0 +v8Tz2WYLTsD3HV3nu5hevQ,2011-01-31,BTGV7LcDCspf3kmkcttiJg,4,"I had a small fender bender in a hospital parking lot a few months back. No big deal, and the other driver's insurance company immediately took responsibility, so all I needed to do was get an estimate and get it fixed. + +They were quick but thorough with the estimate, and when I brought my car back for the repair, they found some additional hidden damage, contacted the insurance company, secured a promise from them to pay the shop directly (so I didn't have to pay then wait for the insurance company to reimburse me), and still had everything done as promised, when promised, and they called me a few times to update me on the progress. + +The only thing that I would like to see would be some courtesy transportation, even if it would only be offered within a certain radius. + +All in all, they made the process as painless as possible. Strong 9 out of 10; if they offered to drop me off and pick me up at work at no additional charge, it'd be a 10 out of 10. + +I hope I don't need a body shop in the future, but if I do, I wouldn't hesitate to bring my car back to Brighton Collision Centers.",review,fM4dMVGeraQ-t9SDcP0bbQ,2,2,2 +IuAPYzf3NSyfyXYgT46YVA,2010-03-03,GH69vvp-BOEcOh8r-Hvd0A,5,"My meal at FnB last weekend was one of the best I've had in Arizona. I love everything about this place, the food, the cocktails, the staff, the atmosphere. + +It was a rainy Sunday. I knew the restaurant was right next to Cowboy Ciao, but managed to walk right by it (my friends noticed me go by). I turned back, and Pavle was nice enough to wait at the door, and said ""Ben?"" as I was about to pass by again. I agree with what everyone else said here, Pavle really makes you feel at home. + +I started with the slivered fennel salad and a ginhound. I split the order with a friend, and they were more than happy to bring the salad split onto two plates for us. I love citrus, and these were a very refreshing start to my meal. + +Next up was the trout. It was presented stacked on top of the sunchokes and caramelized onions, with some wonderful broth on the plate. The combination of flavors was rich, and amazing, and the presentation ensured that every bite was as good as the last. I could eat this every visit, but I sampled the chicken and lamb, and was just as blown away. For desert I had lemon cake with ice cream and strawberry compote. + +FnB has been receiving a lot of positive buzz lately. It's well deserved. If you haven't visited yet, you're missing out.",review,opjBZ0ImnKv5eRNQZ-98DQ,2,4,2 +aRkYtXfmEKYG-eTDf_qUsw,2011-03-20,2pOUXf6XDO8a3uy2CjZ5tg,4,"Stopped in with my two yr old granddaughter today after going to the children's museum, got some raised eyebrows when the cool people saw the kid but whatever I had to have one of there dirty chai's. Good as usual and the kiddo had a cupcake she thoroughly enjoyed on the drive home.",review,WI4DyaHOz9SMhngG83QbNA,0,1,0 +XuSSzunh_LnO7VIMKNc-eQ,2012-04-08,LPJ1icmpCDZA8VQe7X8Fdw,1,Got a padi and the tech stopped for a while to eat. then i got a new tech to finish my pedi. my total was different than the quoted price. when paying my total was $25 i hanede them a $50 and they cashier tried to keep all the change for a tip. he refused to give me my change until i told him that is not gon to happen. My feet were so dry afterwards. I DO NOT recommend them,review,Qc3mQL34qq0Eo6dbU00ZTg,0,0,0 +-EctXOb3B7T177jGYUhjVA,2008-05-28,ru2izNr8PLQ1IrGDJQTOJw,4,"A ski-lodgey pizzeria. This says it all. Well, almost. While the decor may be a bit ""weird"" and ""puzzling,"" make no bones about it, the beer selection is great. + +Let's re-cap 2 of my experiences, shall we? + +DINNER: + +Arrived shortly after 6 p.m. on a Saturday and sat in the bar area, which was littered with a few patrons. Live music started at 7 p.m. Since Saturday is considered ""All Day Happy Hour,"" I went with a $5 sandwich - turkey, with smoked provolone. On the side, fresh fruit. They call this their ""Half and Half."" The sandwich was okay. Nothing I can't make at my own hacienda, though. I really liked the turkey, which like appeared freshly carved. The beverage: Sam Adams Summer ale, which was their seasonal at the time. + +My family, who dined with me, thought the food was okay. When both my brother and my dad ordered beef, they weren't asked what temperature they wanted it cooked at. They were just given it well done. I would not have stood for that. + +Overall, the food is average ""bar style"" food. The menu is large, though. It may take you several minutes to narrow down your choices. From calzones and burgers to sammies, you have options. + +JUST DRINKS: + +Now we're talking. If you're looking for a low-key place to hang for a couple hours, play some pool, watch some sports or hear live music, I would suggest checking out this place. They have two pools tables: one downstairs in the bar area; one upstairs. They also have a video game machine at the bar. (Beware that the pool tables were probably bequeathed to this place. After all, balls disappear. Where did the que ball go? Hmm.) + +As for the beer, well... Let's just say they have quite the selection. You may not find your fancy imports here, but you will find some really great beers from some Oregon and Colorado microbrews. For that, this place goes up in rating for me (hence the 4 stars). After all, there's not may low-key places 'round town - especially close to home - that offer quite the array of beers to satiate my discerning tastes. I recommend you try The Great Divide Raspberry Ale, which is made with real raspberries. It's not overly sweet, but it's unique enough that you may find yourself, like me, craving it from time to time. Or, if you enjoy Rogue beer, they do sell the Dead Guy Ale on tap! + +Sure, I list out their beers here, but that'll take up my entire character limit. Let's just say that on their drink menu, THREE WHOLE PAGES are devoted to beer - what you'll find both on tap and by the bottle. + +SO WHY GO? +Uhm, that's easy. Go for the great beer. (That's the main reason for the 4-star rating.) + +If you love good beer, like I do, and want to chill with some friends, while playing pool or listening to some live jams (though the live music stopped at 9 when i went), then check out Boulders on Broadway. You may even find yourself thinking you stumbled through an invisible portal into a 1970's Denver ski lodge. Good times!",review,APLIPfq1Rf8QyhHHk2uAyA,3,4,0 +pQ3kRVmttsV1bHxuTf7TAg,2009-05-03,uX2ikFy4j5929NvjzBS5rg,4,"I love the Lost Leaf for not ony becuase it's cool and hip, but because I am always made to feel welcome and relaxed - as I am not that cool or hip. The crowd varies, but I like to go on Sunday night and listen to Jazz. They have had some great bands there and I like how they prefer the local talent - the artists, the musicians, and the bevies. + +There is no food, which is really sad. I wish they had packaged food to nosh on, or took the approach that SideBar did wtih the package nosh (hummus and chips, etc.) Too bad.",review,x4eIi_YiwKj1pzcspeLt-Q,1,2,0 +DWvglLKvpKGyQOiVgGEPGQ,2009-07-08,9HL3yiYKoO2hI8K8yB4GyA,5,"So my coworkers and I decide we want donuts on a Weds. I know typically donuts are on Fridays but what the hay. In my search for a really good donut I go to the Internet and Google ""best donuts"" and low and behold Bosa Donuts comes up. They have 3 locations, and the one in Chandler has 12 reviews, which all raved about how great Bosa Donuts were. So I notice they have a location at 35th Ave and Glendale! I had seen it many times but never stopped in thinking it was just the average run of the mill donut shop. Boy was I wrong! +Bosa Donuts is by far the best donut I have had in a very long time, maybe ever! I stopped by for a dozen this morning and bought a little something special for myself. I got to the car and took one bite and was in heaven. The what I would call a Cinnamon Fry with crumb topping was to die for. What I liked the most was it was not greasy like some other donut shops. (I won't mention any names, you know who you are!) Lightly crisp on the outside and so tender on the inside. The crumb topping was just the icing on the cake. It was all I could do not stop and get some milk so I could utterly devour the rest of my donut on the way to work. I did have a bite of an Apple Fitter after getting to work and it was very yummy too. They have many varieties and some wonderfully looking croissants too. If you have not tried Bosa Donuts in Phoenix you are missing out!",review,VW1zLVadNrWZgYBCueSFow,0,0,0 +LcAamvosJu0bcPgEVF-9sQ,2012-12-26,edBjosp0Rk9qM1M5Vwlj7g,4,"I purchased the introductory groupon they offered a few weeks ago, and was hesitant at first because I haven't had the greatest experiences using groupons. I was pleasantly surprised. + +I did look at some of the bad yelp reviews before going in, which made me nervous! So for those of you that only look at bad reviews, I hope you see this one and have a little more hope. + +I had a stylist named Annie, she had pink hair. Super friendly, and really appeared to want to get my style right. Since I had read bad reviews before coming in about stylists not listening to the customer when they asked for the curling iron to be used for better curl, I was concerned she would do the same. But, I let her know I was looking for good curl, and with thin/straight hair, it can be tricky to achieve. She attempted to curl with just the round brush and hair dryer first, and when she was ""impressed by her curling abilities with a round brush,"" she was ""equally impressed with my hair's inability to hold a curl."" So she broke out the curling iron! + +We made great small talk, and I let her know I would be back in a month when I go out to celebrate my birthday. + +The salon is a fun, well-decorated environment. It was pretty loud with the hair dryers going, but not terrible. The less than perfect rating was that I saw people with mimosas/champagne, and while I had been offered something to drink, I figured I could just choose water or coffee, as that is usually is what at hair salons, I wasn't informed of my choices by the front desk staff. Now I know for next time to ask for some bubbly! + +Another good tip is to plan for longer than 45 minutes if you are planning to do a style with curls. While I got started on my appointment about 5-10 minutes late, I was there for 1 hour (and I dont have super long, thick hair that takes a great deal of time). + +I will be back in January for my 25th birthday night!",review,_6seymnSl8rS-pw801ENAg,0,1,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-03-08,ZMYqCMQL9xPjY7ygu2X3XQ,5,Papago has a great beer selection & awesome food. Try the Orange Blossom!!,review,Qq_sUGEwyvG2vv6cJC0Zrg,1,3,0 +fPExBO1aXA5c4uwlHFyx2Q,2008-02-27,rqVuVVQezQ6S_Fzaxf4Y6g,4,"One of my lunchtime favorites -- a great bar menu under $10 (steak, shrimp, Italian sausage, etc) with good quality food and prompt service. + +Fun place to have drinks at happy hour. Plus, they have a nice traditional dining room for dinner. + +The bar area is always DARK (how it should be).",review,90a6z--_CUrl84aCzZyPsg,0,2,0 +oqQvCiG9FDbIdr6M4yen5A,2009-02-23,EdZuhjeGmZAOeTaBJSDPUQ,5,"YUM! + +I can never remember what it is, but order the salad thing on pita bread! It will change your life! My co-workers and I would always go in here and share one of those and then we'd each get a slice of pizza. Perfect amount of food- low prices- never too/disgustingly full. Their bilinis are wonderful as well!",review,NM09MXHEGiyK-cjyk1wiIg,0,0,0 +gHKB66up5VluCWT4vuSZpw,2011-11-30,XDPXwd7STgbIPP4qAiEngw,5,"Best Italian restaurant in the valley, as far as I'm concerned. Totally unassuming from the outside since it's in a strip center on 64th St. & Greenway (in the same center as Fry's and McDonalds). But this family run restaurant that has been here for years. Same friendly staff every time...especially love being in the bar area. A little on the pricey side, but definitely worth it. Must try the ravioli (either as an appetizer or main dish) and chicken Marsala with fettuccine Alfredo on the side. All entrees come with soup or salad.",review,Jxc55V4D3iHAataiLpylDg,0,0,0 +po5FyERB4lUZNnBIwnhFlg,2012-02-27,dW_qFUfUZpv3cp5DqfvKcA,5,"Yelpers, have a question. If menus and prices vary by location, help this CA transplant figure out the best ones to try! Thanks, I've heard such good things about Sonic but have only been to the Anaheim and Hemet, CA ones while visiting.",review,cyWeHMyFKzhVJpb_kqtzsw,0,1,0 +WM8sy8FjrU3PpxN_NI02ZA,2012-07-23,HZ4X7H0udSHqIHRUsjtHag,3,"Descent food, of course it's not autentico. Free chips, salsa, & wifi though.",review,ZFumpo95KdVjPkImxzSqVA,0,0,0 +YQvg0JCGRFUkb6reMMf3Iw,2009-11-22,Rymd7AkDJPKevlqmPPMYOA,4,"Scale of 1-10 (single visit): +8 Food +9 Service +9 Atmosphere +7 Value",review,eBwBjylS66qPcHs2_ajLag,1,0,0 +CNvPqN9pa5aJRn-Npcqgdg,2010-03-03,0nc87fm121sNx3-H5htBUg,4,"Cheesy, beefy, greasy GREATNESS. + +The burgers are made as you watch.. Sit at the bar and watch the grill cook (who also is the server, bartender, and cashier) grab a nice fat ball of ground and pound it out on the grill to make your one of a kind patty. NEXT comes the wine onto the grill and the patty... which gives the place it's name. Finish it off with a fat layers of veggis. + +Pair this with some jalapeno bottle caps and a pint of draft, and your in BUSINESS!!! + +Don't mind the dingy early 70s decor....it is character. + +The only negative...you will be jogging for weeks to drop those calories...a very guilty pleasure.",review,nGYaT5sAuqKkd48dqX_2Kw,0,0,0 +UScgPn6pIHuOmQJTsZQIOg,2012-08-23,WNfddsdJW2u3Cd9Mq06SEg,5,"May I add ""family friendly"" to my past reviews? We love this place because we feel like we are home when we come here. The staff is kind and they always welcome us with open arms. The manager, Kaj, literally treats us like family. We brought our new born baby to Corbin's for her first meal out, and we were thrilled with the level of service we received, as usual. The food is excellent, and the service is divine. The happy hour is awesome! My favorite items are the quesedillas, burgers, feta and hot sauced topped homemade potato chip appetizer, and the excellent selection of beers. Corbins is just an overall great place!",review,7W4egS-WyR0hRHMfQtPEOQ,0,0,0 +NN2qs5B713vM6BDcMyrg4A,2011-05-14,0XLDiFIZcO-Gm-Pv2smoSQ,2,"My bf and I drove in from ""the city"" lol and met some friends here for brunch. We didnt have to wait long to get seated which was great. The waitress came and took our drink order and right away she didnt seem too thrilled. So I ordered an omelet and asked for turkey sausage instead of the toast or pancakes it came with, she looked at me like I was asking for a cure to cancer and proceeded to tell me that I would have to be charged full-price. Well duh, I kinda figured and since I asked it was probably ok. Needless to say, we waited 30 mins to get our food, which we had to ask her for. My omelet was cold, I didnt get the turkey sausage I had ordered but she did add it to the check. Thank god we had a groupon or else it would have been a total loss. The Breakfast Club in Old Town is better!",review,100Df1wcVrl9rJgB7EG6xw,2,2,2 +EKzMHI1tip8rC1-ZAy64yg,2008-11-07,VYMhaQ4y3ZIjii43ntmdsA,3,"While throwing a small get together, we were able to have a back patio with a buffet style table set up with some pretty tasty appetizers. The chicken sqewers were delicious and smoked salmon was also tasty but something seemed to lack. At the end of the day it was good and I wouldn't hesitate to go back, but nothing to make me a raving fan.",review,6uNeagh9ljbwV8XRUn_cYA,1,1,1 +DuaoskPAVBV55px_cwxIVw,2011-03-30,PUi38ibCuXQ9XGtZTsEMFQ,3,"E-Z Buffet is a Chinese buffet that recently opened in my neighborhood. + +It was about $10 for dinner . The place had a bunch of tables so seating was easy. You can also get take out. + +They have a lot of food to choose from, typical Chinese fare plus sushi, fried chicken wings, roast beef, salad fixings, pudding & fruit. They also had ice cream for desert, not soft serve but hard ice cream. + +I like the General Tso's Chicken, Scallion Pork and their freshly steamed green beans. I loved their rocky road ice cream. + +The wait staff was prompt and friendly. I really liked that. + +This place is worth trying. If you go please write a review. I'd love to know what others think.",review,NLrBhZojW5ink7eN1GrcGg,1,0,0 +St3jS0PnF1lulH1ggA4Jgw,2011-05-05,3WiXbvYkrMHNFm1TauSKiA,3,"I always feel a sense of guilt having to write a less than stellar review after meeting the owner of a restaurant. + +Lucia was Beautiful and sweet, and a pleasure to meet, my lunch, however, was not fit to eat. + +I ordered the THE HUMM-DINGER VEGAN WRAP: Roasted artichoke, zucchini, red bell pepper, onion, fresh spinach and hummus with a balsamic reduction drizzle, with a side of fruit and the sun dried tomato wrap. + +Notice it says ""Roasted"", the cashier told me the Veggies were ""Grilled"". Unfortunately, to my dismay, they were neither. + +Everything inside was heated up, by either stove or microwave, I'd guess the latter, and the ""Sun Dried Tomato Wrap"" was thin, doughy and utterly flavorless, not to mention a shocking pink color, which I'm sure was due to being naturally colored with beet juice, but did not help make things anymore appetizing. The fruit was a soggy pile of your typical pre-cut cantaloupe, honey dew mix. + +It was not what I was expecting AT ALL, when I think of a grilled veggie wrap, I imagine tasting all those veggies bursting with flavor after caramelizing on the grill, they had no flavor though. I also did not expect the temperature to be Hot, chilled would have been better in my opinion if the veggies had actually bee grilled that is. + +This lunch to me was less than average and as I sat there will my full plate in front of me I was asked how my meal was, I clearly stated my concerns as I have here and was simply told that it was a ""Best Seller"". + +Lucia did send over a piece of chocolate cake, which was appreciated, but unfortunately missed the mark since I'm Vegan and the desserts aren't. + +Honestly, in my opinion, aside from the market, most of the menu items are anything but healthy. + +The 3 stars is for the market, my food would have been 1. + +And that folks is why I am the Lunch Snob!",review,UsULgP4bKA8RMzs8dQzcsA,1,4,0 +YDyN11CdbO0ZwTlPwa5KnA,2011-09-07,aEUcD9yBM11dUSrEhdzTDA,5,"I was extremely happy that we chose Cool Cuts 4 Kids for my son's first big boy hair cut. He was instantly comfortable and drawn in by all of the friendly things they have for children. He was given the choice of a movie or playing a video game, of course knowing exactly what he wants went straight for the video game (Sonic on XBOX). It was pretty much a breeze from that point the little guy was hypnotized and didn't even realize what was going on w/ his beautiful, lovely long hair =( obviously they need to focus on distracting the mom's lol! Jessie who cut my sons long hair was a doll, she didn't seem to be bothered by the mother breathing down her neck as she hacked off my little's hair or the boyfriend taking a copious amount of pictures and video of the whole event. In the end my son looked great and I was a happy mama, I couldn't have asked for a better experience.",review,GdekSs5TvIHIe3157aOx3A,0,1,0 +OmJ283Un9mAbr_gc7v4N4A,2012-11-12,5Pc6vYDAD_apWMAT1mpjGQ,4,"I have stopped in here for lunch and drinks a few times now. The teriyaki beef/chicken and bulgolgi have great flavor (I prefer the spicy versions). Their bowl meals come with plenty of meat and rice, while the bento meals also come with macaroni and slaw. These are affordable dishes and excellent for a lunch of easy take-out dinner. In addition, the meals are big enough that two people could split one. + +The other item that I really like here is the boba. The milk tea and Thai iced tea both have a nice tea flavor and are not overly sweet like some places. Hence, it's also a nice place to pass by for a drink.",review,qQns9dP75RNOWOVWI_ZKZw,0,1,0 +bD3-686wN4ZApuDVXyTtGw,2008-11-13,ypWJ8P_xar8yvpVbmdRmNQ,5,"Amanda at Butterfly Petals did the flowers for my wedding. I didnt want to spend a lot on them and shaved it down to only needing my bouquet, three boutonnieres and two corsages. I told her what I liked and didnt and my budget. She created a bunch of options for me based on my specifics so I had a number of choices. She also did all of this via email. which I give her total kudos for. + +On the day of my wedding, there was a fabulous bouquet waiting for me as well as perfect corsages and boutonnieres for my groom and our parents. Amanda waited for me, even though I was terribly late, to make sure I was happy with her creations which really gave a personal touch. + +Butterfly Petals is creative and affordable. I love my bouquet so much that I ended up keeping it and I am having it preserved!",review,vZogScun_jFpoIEbAOAqFw,1,1,0 +aBjWR-Mol58GMsRAdz2Tjw,2010-07-25,qh4NX1gErJDLdnauYpUS6Q,4,It's like Paradise Bakery but with a more diverse and far better menu.,review,r0nKFYzoSTBeD1f3qfBchg,0,1,0 +BO_TJFFJyXu8i2rW83hG3g,2011-03-05,RnhBH0hGPB9dBXP0BQAYBw,5,"I loved this casual dining experience at the gorgeous Phoenician. I stopped in for happy hour with some friends, and we had a great time. We sat in front of the fireplace and sipped beers over appetizers. The location alone is worth going for, but the food was good and service was even better.",review,pV7C6w6rQLYl7BS9-J8cUA,0,0,0 +UEdKDUGcvXzR-0_Ow9K2Vg,2011-08-24,4b5vmez0wDoAT4dn4VRuLA,4,"luckily, i've only had to take my truck in for service once and had no issues with service or quality. it is always expensive to have something auto related repaired....wish i would've paid more attention during shop class in high school, but oh well...i can't be good at EVERYTHING. + +friendly staff. they called a few times to make sure i wanted them to proceed with repairs and had my truck done in a few hours.",review,ST8Yzlk2MqKlcaLqL2djBg,1,3,1 +N1Dq9PyY1jDQdZcX4u8oFg,2010-12-30,ml6v9xaaZEDoDrD8xQakIg,4,AMAZING! This is the first time I ever got what I ordered!!!!! 140 degree grande peppermint latte! WOWZA! YIPPEE! Though the staff did not seemed thrilled to be there or had any sort of personality-it didn't matter because my drink was perfect:) FYI-this was the location outside of the B security check-point.,review,ez3AXTDwueKEwwx3-8qJDw,0,0,0 +oxsCvEkQNNIbOPDt_QK_0A,2007-11-28,DulkTT5d5KcSqYZAObP4-w,4,"I had to chime in for JOT-C (yep, that's what I call it) because I know it very well, and it's gotten an unjustified bad rap from other Yelpers so far. I've eaten here for over a decade. I've brought friends, college classmates, relatives, and dates here. I lost my dad 3 years ago and I have fond memories of dining here with him. I distinctly remember spilling a Coke all over myself the first time I brought him here. I also remember coming here on my very last day of law school, with a bunch of classmates from Employment Law. The folks here have seen their share of special occasions in my life. Wouldn't be true if this were truly just a 2 star experience. + +I don't think it's fair to nail a restaurant with a bad review based on only a single visit, in most circumstances. Restaurants are run by humans, who are allowed to have a bad day now and then. I've eaten here a billion times. Occasionally something has annoyed me. Most of the time the service is prompt. And those things are true of every restaurant I've ever frequented more than once. At JOTC, even if it's not prompt, it has not even once been unfriendly. There is an elderly gentleman waiter in particular who I especially like. A non-Indian friend I came here with once asked him, ""So, what part of India are you from?"" The waiter look back puzzled and said in his typically mild and hushed manner, ""Sir, I am from Mexico City."" We LOL'd. + +It's #2 on my list of Indian restaurants in the Valley, which is pretty good. Since Tandoori Times is so close by it almost always wins out on a given night, over the past year or so. But the fact remains that JOTC is solidly #2. + +The food is good, by my Indian standards. Samosas: awesome. Chicken tikka masala: very good. I tried the bhindi masala once and that didn't turn out too well. A unique JOTC feature is that dishes are served in very cute, traditional-looking, brass or copper Indian pots. + +Little details like that lead me to say that the decor and atmosphere here probably beat out Tandoori Times and every other Indian place. Simple but elegant, with old Indian art on the walls and cool room dividers thoughtfully placed throughout. The outdoor seating is very pleasant, with heaters to warm you up during winter. The location only adds to the reason to eat here. It's in a cool space next to the Scottsdale Civic Center, a few yards away from AZ 88. It's a solid place to come with a group to eat, drink, and enjoy some good conversation. + +JOTC doesn't blow me away (thus only 4 stars), but it needs to be said that if you live in the Valley it is worth at least one visit if you like Indian food, which you wouldn't be able to tell from the other reviews. Judge for yourself.",review,17PPxx8RxjOUD_nQZ1aHEw,1,3,0 +MLPUSpkbWAvr9gJOELKqmQ,2011-04-23,k9AZS7Qp81c2ub0-2buEjQ,4,"I had a great experience here and was suprised by how charming and clean the spa is inside, given it is right off of busy rural rd! I had Lana as my manicurist and she gave a GREAT pedicure. I used a coupon from the ASU Insider's book and got a relaxing, hour long and hot stone pedicure for $18. I think the normal price is still around $18...maybe $20 for the cheapest one??!! Lana was super friendly and sweet, and the owner was also very helpful and made me feel comfortable. I will definitely go back here for a gel mani!!",review,UHOFZkgIvb8sn3RSPMXMSQ,0,0,0 +eqSSrri7_E0eX296p8Ld5g,2012-06-11,8CUu84mGh8t7GZ-ptY0P_g,1,"I purchased a pair of Naot Paris sandals ($160 with tax) at The Shoe Mill. I considered buying on-line, but decided to shop locally instead. I ended up paying more, but assumed that I was paying for the superior service. I wore my new shoes to work on Friday. By the end of the day, I had developed blisters on both feet near my toes and my ankles. I was surprised because I had read many reviews stating how comfortable Naot sandals are and the salesman who helped me confirmed that I was buying the correct size. Sadly, I took them back to the store the next day. To my surprise, I was told that The Shoe Mill does not take returns. I have never tried to return shoes, so it didn't occur to me to ask this question when I made the purchase. However, as I stated, I expected full service from a high end shoe store. +I will no longer shop at The Shoe Mill. It's been three days and my feet are still recovering. It's a constant reminder of how dissatisfied I was with my purchase. I will definitely shop Zappos next time.",review,WIp4lzMExKhs3MXfF92mWg,0,0,0 +LMjl-bvnCZKhMrc2OT9ptg,2008-10-11,H5O3O191XcJWc3Vys4hIiQ,5,"This place has the best wraps I've ever had. The smoothie's are good as well, but I go here because of the wraps.",review,6uNeagh9ljbwV8XRUn_cYA,2,2,0 +Xq1FtLSV54Spf-HfONc1aA,2012-11-16,dI0OhAIYgWjkO_EwI1qL9Q,5,"I stopped by a Friday morning a few months past and have been meaning to write a review. I've had donuts since then from other donut shops, but none compare to Bosa. The price and quality at Bosa are far superior to all others. You can't go wrong with the donut holes.",review,tXhlRAnR3_GoWvewfQni4Q,0,0,0 +zp713qNhx8d9KCJJnrw1xA,2012-06-18,vbUI1pHeVTv0VAK2scZl-w,5,Amazing place wish i lived in Phx so i could have this EVERYDAY!,review,injbO7hPQcusNziz6gyuIg,0,0,0 +UeWr0eT1KEoMSYwf0vXIKw,2011-10-18,azyMLujqH6LgAYZwRC90JA,5,One of my favorite places to eat if I'm looking for cheap and fast :),review,tpOgdsqWcrlFyQSrRIua-g,0,0,0 +cp39VURFby4A6u9m2It8jg,2011-01-22,ITc9NTB8U_hmY-ht3rrfEw,3,"Stopped in and tried both their sweet potato fries and zucchini fries. Much fonder of the sweet potatoes & the others were a little heavy?! Like previous posts I was not to fond of their dipping sauces either. + +Loved their freshly prepared lemonade and the great outside spot to people watch!",review,5LU-21bimh4DgdEthvf8iQ,1,1,0 +JokKtdXU7zXHcr20Lrk29A,2010-02-25,N4dWz-SCUPan0eaNYzvVlw,5,"I love this place. Just to hang out on a Summer day on the patio and have a beer is like...the perfect day. + +The food is awesome. The Kilt Lifter is tasty and thirst quenching. + +The area is definitely lucky to have such a place.",review,ASenO-NcZyEoJJw_aO7C7A,0,0,0 +2rMf09C5uXzF2qIlD5F5BA,2011-07-07,lqTl1i4uq09N2SajtR6nOQ,1,"Once again, THE TROUGH SLURPERS offer far too many stars to this mundane eatery, proving again that they are truly CANAILLE of the first order.: +Slow indifferent service +Mediocre food +The kind of wine that patrons of kokopelli swill with delight, calling it ambrosia when it's actually dishwater. +But..as with Kokopelli, it keeps the shit eaters out of the better restaurants! So, I say to you canaille..flock, flock there with your disruptive screaming children and your leathery palates.",review,Rx1YEuOcfclyg7OHnhJkwg,1,1,2 +ohxd8La86GdC_3vgwBWLHA,2011-10-13,Za_JNArZ2ix644LMTwh-YQ,4,"Like many before me, I am trying to be sure to review only the venue itself. I appreciate Gammage for what it brings to the Valley. The arts don't have a huge presence here but this theater brings a little bit of Broadway to the dry, Arizona desert. They typically line up seasons that have something for everybody which makes an evening show now and then almost impossible to resist. + +The building itself is older and does not have an elevator--meaning that anyone who has a physical disability which renders them unable to climb stairs, must buy tickets on the orchestra level. Out of the many shows I have attended here, there have been frequent issues with the sound system...disappointing when you are sitting further than 5 rows from the stage. + +However, being that this is the only stage in AZ that houses big traveling productions, I can't complain too much and will continue to be a patron here. Looking forward to the rest of this season!",review,sPEFql7fLp0oouFxnooGpQ,1,0,0 +Nc2TtVj6py6dHH_XdWAKRQ,2011-09-16,TVKXYYKMf1hTyZfjbH6exQ,5,Yes... I love Eegee's... I have to admit it could be a bit of a problem for me as I drove from Chandler to Casa Grande just for an eegee and sammich in the worse rush hour traffic. If that isn't love I don't know what is because we all know Arizona drivers are ... well you know. I always get the pina colda mixed with lemon eegee and a grinder / or turkey sub and don't forget the ranch fries! The one is Casa Grande is new and clean not that I can say the same for the ones in Tucson.,review,DhmTnRzhuzOLgo_RdQcYtA,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2010-09-10,z7y85mjtSoG9TNheBe6sSQ,4,Unbelievable ahi. Service was adequate. Mood and ambiance was good. Background music was nice. Will go again sometime.,review,0VfJi9Au0rVFVnPKcJpt3Q,0,0,0 +yb17xHvhDJthJGS10uhFeQ,2009-07-01,GMm0xFMRArZX7lztrWPG8Q,4,"One of my new favorite neighborhood bars! + +We had a Canada Day shindig here and it's a great little neighborhood bar with fair drink prices and super friendly bar staff. You'd never know that there's a bar inside when you get to the parking lot behind the Ice Rink - just look for the signs on the top of the building. + +They have lots of TVs for hockey fans and the bar looks right out onto the ice so you can watch people skate. They had a great jukebox and the Rockband kit so you can rock out with all your newest bar friends. + +For food selection you have BBQ, BBQ, or BBQ...either beef, pork, or chicken, with a side for $6.50. Tasty stuff! Great beer selection including Molson Canadian or Labatt Blue.",review,hq0WUfau1Mh3GyHn8oVdNQ,4,4,1 +TqHTtjPANCBKGsjGBjDoQQ,2010-06-05,imuDixqyVx3hZc6VSM0f3A,3,"Yelp pointed me to this place while on a business trip-- looking for good pizza in the area. Kind of a mixed result. The restaurant is located in a strip mall, sort of hidden in one of the back corners. Walk in thinking fast food, but turns out it's sit down. Why does it seem all the burger and pizza joints in this area are sit down-- odd... Anyway, I got three slices. Quality was ok-- a bit doughy and filling, I couldn't make it through all three. Lots of free refills was a nice touch on a 105 degree day. Staff were really friendly, and, oh yeah-- it was cheap! Less than 6 bucks for more pizza than I could eat and bottomless coke. So, great value, nice service, just ok pizza, though.",review,X74iDW0yAiEUEQzmWK39pg,0,0,0 +9YUe5J_cPCBo_mL7-z9HCQ,2011-05-03,an5Jl49Z_dFDjxsL26s01w,4,"Canteen is my new favorite happy hour spot. You can get two orders of wonderful pork and habanero tacos, two orders of their tender ribs, an order of quite good chips and guacamole and a couple of margaritas for around twenty bucks, it's amazing. Add in the cool atmosphere and HUGE selection of tequilas(all half off during happy hour) and you have a recipe for success. Canteen is a very welcome addition to Mill Ave, and while it can get very loud, you simply cannot go wrong during happy hour.",review,qa05pUVNapADHZXpHMPMeA,0,0,0 +erBoatMp1TFi_NPxTigp6w,2008-09-21,Xuw4BQM95mEm9Hy0Gl4MtA,2,"This place is great - IF YOU LIKE TO BE IN A SNOBBY ENVIRONMENT! There are not too many places that I've been to that are more hype than anything. But this is one of them. When you try to go to THE PINK TACO, it's impossible to find a parking space. Once you make your way to the front, the hostess is always too busy texting her friends than interested in helping the customer!! If you are lucky enough to find a seat at the bar, you better have a rolex watch on or you will not be served quickly. Either that, or you better be a Hugh Heffner spouse. I tried the burrito and was grossed out by how rubbery it was.",review,7zJeiY6YGosO7jakhlK91A,1,1,2 +PsKAMRgeydy54ytW8xWKCw,2010-01-11,oQ3ZMhZD9C4VF6DKX3gkpg,4,"Okay, it almost seems a shame to burst the bubble of the positive reviews of this place, but I just have to. + +I'm not an Indian food expert, but I am a serious enthusiast and I've eaten at dozens of Indian places on three continents, not to mention my family being from the vicinity of that area of the world and therefore having grown up on curry and rice and all things spice. + +We went here for lunch yesterday (Sunday), thanks to a Yelp/Aloqa recommendation after we'd had a romp at Estrella Mountain Park and were starving. The place was almost deserted at 1pm, with only one other table occupied - fair enough. We went for the buffet. And I have to say, it was simply ""okay"". The buffet didn't have a particularly wide variety of stuff - several items were cheap regulars such as the saag and the dhal - spinach and lentils for the uninitiated. They did have aloo zucchini, never seen that before - tasted okay, about as good as I'd have been able to make it (and that's actually not a compliment). No lamb dishes - disappointing, but unfortunately this is also rare. + +Flavorwise, I found it boring and unspectacular. Saag is saag, tandoori chicken is tandoori chicken, except their chicken was very light on the tandoori smoke flavour. None of the food left the slight zing on my tongue that it should have. Rice was okay, but then you typically can't go wrong with cooking basmati (although another reviewer's mileage apparently differed on this count). We had our almost-3-year-old along and he did have a little rice, chicken and beef - it was his first real curry and thus a pretty substantial milestone for us. Then the wife went to get a little kheer and a gulab jamun ball. The kheer was watery but tasted okay - compared unfavourably to the sabudaana kheer at India Palace. The jamun ball was almost completely solid - you had to press real hard with a fork to cut it, normally they're nice and soft and soaked. However, another one I got was normal - so it was just the luck of the draw there. Beef curry was nice, although the first piece I ate was mainly fat - whatever, you get that and I don't mind it. The fried pakoras can normally be cut through with a fork. These you had to saw through with a knife - not great, chewy to the point of almost being crunchy. No samosas in the buffet. The naan was unusual. I've had a LOT of naan before and this stuff was the uncommon kind, not thick and pita-ey but instead a little more like a roti. It tasted very fresh - we had plain and also garlic - and the wife really liked it. Kid did too. I personally prefer the other sort of naan - softer and a little more substance to it, but this one had merit regardless. However, it took at least fifteen minutes after our food was served before the naan arrived. + +All up, middle of the road as far as I'm concerned, although the wife quite liked it. Note that this is for the buffet only - we did not have a-la-carte and perhaps the to-order cooked food may have tasted better. I've had better buffets - the best one in Phoenix west of the 17 IMO is India Palace - a wider variety, a lot busier (as a result, I'm sure) and more flavourful food. Admittedly, I haven't tried any other Indian places south of Bell but west of the 17 except for Sutra. Bell appears to have most of them? + +I would normally have given this place a flat three stars, but I'm going to give it an extra half and round up for a few reasons. Firstly, the waiter was real nice and very attentive - up to the standard of a typical US chain place, rather than the silent wanderers with the Easter Island statue facial expressions at other buffets who do no more than refill your water and clear your dirty dishes every fifteen minutes or so. He was asking us how we were doing, offered refills of my wife's iced tea at appropriate times etc. Spot on. Next, there's a buffet discount where all kids under 10 are $5 - however, we noticed that they appropriately knocked the price down to $3.50 for us, unbidden and I guess for the simple reason that he was set up in a high chair and obviously only ate 1/4 of a breakfast bowl worth of food in total. Third, the place had nice decor (although I was a bit concerned there were no tablecloths, with my kid banging his plastic sippy cup and spilling sh1t all over the tabletop) and thankfully they didn't have sh1tapple wudda-wudda-waa-waa pretentious bhangra muzak playing in a cheap attempt at making you feel like you're actually in India. + +I'd eat here again, but only if I'm in the area and DYING for Indian food. It simply didn't measure up, either buffet-wise or flavour-wise. For first-timers, I can see how they would have enjoyed the experience - clean seating area, Americanized flavours and a good waiter. My experience, however, has been burned in over almost four decades and I've kicked the tyres of more cuisines from this area of the world than I can recount, especially Indian. Three and a half, rounded up to four, Seacrest out.",review,6G8vLJUi1Ees2qC3RGA3Nw,2,1,1 +sbsFamEj5wDxNAjUKrMcSw,2010-05-02,H71I6Rjyaegqxwz81hJG8Q,3,"I will say that the weakest link in this restaurant is the maturity of the staff. We went for lunch and asked to sit on the patio. Most of the people we're eating but then they sat a large group right next to us that only wanted to drink and smoke. I know smoking it allowed on the patio but since it wasn't the only table available AND the rest of us we're eating food I think they should have sat them a little farther away from us. +Our order wasn't right but couldn't get the server to come back so we just let it go. The food was great! Had a few items from the small plates and then we had the bacon grilled cheese and the chicken sandwich. Both very good. +My biggest complaint is that we we're ignored unless we we're actively looking around for someone and then snagged someone as they walked by. I will try again as this place is still trying to find its way but service needs to be stepped up for sure.",review,UwD8Ho0PsEwxthdxrCrewQ,0,1,0 +0UZ31UTcOLRKuqPqPe-VBA,2011-09-12,pkPCg8x1kiZmOwlEeOJiOQ,4,"This trip we rented an area over centerfield to have a conference for about 250. We got in the ballpark in the early AM with the intent to stay for the game as we had a separate suite for this. + +It drizzled a bit, so the roof was open for much of the day, though temperatures we over 100. Walking around an empty ballpark makes you appreciate the size of Chase. Groundskeepers moved and massaged dirt all day as their #1 DBacks appear to be playoff bound. Who would have thought? + +The catering service was excellent and finally at game time we enjoyed watching the DBacks come from behind to beat the Padres. The suites above centerfield have poor visibility because of the size of the ball park. + +Enjoyable, but get me the box seats else I can't watch baseball from the nosebleed area.",review,VqSCQCva71Q-ZVcMsYfQuw,0,0,0 +a5N-FJqNPOmhoTV5JkQrww,2011-12-01,Z_BCiHEYUlNtuBjg6AJ-Sw,4,Super friendly staff and smoothies come out so fast...delicious too!,review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +AMwr-IwwaamJ2l3Z8yce6Q,2009-12-05,Qm5zYFafWu9u2nD3HJHOuA,4,"I was a little hesitant of Zipps when we pulled in - didn't look from the outside like it would offer an awesome time. Walking in around 7 on a Friday night revealed a place that was almost full. We chose to sit on the chilly patio, which did have a couple of heaters. The heaters were a little high up and less effective, but it was also one of the coldest nights this year. + +Service was fast and friendly, we never ran out of beer. I got the BLT on Sourdough, and so did my friend, her husband got the Black and Blue Burger. The fries were good, but not as crispy as I like. The flavor was great and I ended up eating all of them. The BLT was awesome! Tons of crispy bacon, and they cut it so that you were able to eat the sandwich without bacon attacking you. The sourdough bread was thick cut and lightly toasted. + +The burger was a little less than we expected - 2 nice size patties, but the blue cheese could have been done a little better, and it was very messy. The onion rings were nice sized and with great, fluffy breading on them. + +The on tap beer list was a little heavy on the cheap domestics for my taste, but they did have an Alaskan Amber that went great with the food. + +We were able to sit and talk for several hours, and the server made sure that we always had what we needed.",review,66tWp8ThwPATFUxYNPyYLw,0,0,0 +bZivzFTkkjNtUBSuMhoCtg,2012-08-18,h5MjXLjDEwBh9_ZL3d5KNA,1,"I used to go here at least 3 times a week for Happy hour. The volcano chicken was my favorite meal. However, the last time I was in there I had a cricket in my water. I took a sip squeezed the lemon, and thought there was something wrong with the taste. I checked and at first thought it was a lemon seed but no, sure enough it was a cricket (in which i took a picture). The way this restaurant handled an insect in my water was repulsive. One of the male bartenders came over and brought a new water saying, ""It happens."" No, sorry that's disgusting. If i hadn't been craving the volcano chicken I went there for I would have just left. And then on top of getting a cricket in my water there's no discount or compensation off of my bill.",review,83wSOjFAUrSS98jygNAldg,0,1,0 +dipzJ5BExpm6BtJ91mXd4Q,2009-12-21,sphsn_-28eMd7lXvgtL0xw,2,the broth was too sweet for me. perhaps just personal taste though.,review,LJPvRgTZWHlwpaYBauOOkw,0,0,0 +1QxI2IP3XfndDAY8nyZVPg,2010-02-23,O0AiwfWBTy9BcpJtCQweTA,4,"This is a beautiful store. Its huge and spacious. The workers are friendly and helpful. You can't go wrong with cute, nerdy boys who help you fix things! :]",review,IO3AsR6cdMto7VCwfPzf2w,4,4,4 +sjCRI-lCh4KLO_RYQdlEeQ,2011-06-27,gDaookcsy_UR-8xUe8G0zA,1,"I went here with Friends last Friday. All my friends and I use Yelp, at the end of the meal taking cost into perspective we all came to this is a 1 star place. It was a huge disappointment after looking at the positive reviews. Our 1st disappointment came because they had a ""limited"" beer list. My good buddy just wanted an IPA and all they had was the normal domestic beers and a few other quality ones. Then, the Spanish ham was not very good and once you take into account the price it was terrible. We had a sausage plate where the sausage was dry. The Calamari was extremely oily. The only positive thing was the lamb chops but once you factor in price that was poor too. We all came to the conclusion we would never go back.",review,2Zd3Xy8hUVmZkNg7RyNjhg,0,5,1 +aRkYtXfmEKYG-eTDf_qUsw,2010-08-23,eDruO8J72RtZsW3yKSZCOg,5,"Totally worth the drive from Scottsdale. The food is delicious, and is not pre-packaged, such a nice change for a coffee joint. Support local business, Starbucks has nothing on Lux; other than a million locations.",review,hebXGQk5ggZSwTlUoEcTWQ,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2010-11-06,n1z0SyoHoPXBbJxOqSwtgw,4,"Perfect patio for a Saturday! + +This place walks a fine line between being too snooty and being just plain awesome. I've had a couple of experiences here, and overall the food is really tasty. I'm a fan of the gnocchi, even though it's a little different than traditional gnocchi. +The location is great, as long as there isn't a douche bag convention going on, and as long as the bartenders and servers keep their positive attitudes, I think this place will be around for a while. Thanks!",review,sQTvI2N_WT5m60ZUbTMCMQ,0,1,0 +Rg2IrML03E10C2R5A9d9OQ,2012-06-15,EZNnS44Ffk11dC_Tl1XGvA,4,"Like every other Trader Joe's, this one also has a wide variety of products, extremely nice and helpful staff, and provides a great overall grocery shopping experience. I'll echo what someone below me said - their cilantro jalapeno hummus is the bomb, you have to try it! + +One frustration is that I can never seem to find any handmade flour tortillas. Only handmade wheat tortillas...and anyone who has ever had Joe's handmade flour tortillas know that they are phenomenal for grocery stores! + +Pick up some wine on your way out! There's always new ones to try out.",review,Yoa2y89jR7tAnWRLSDca7Q,0,2,0 +24qSrF_XOrvaHDBy-gLIQg,2012-01-12,MD9uv37WiXXXyh3sTWbAWA,3,"Lately, I've been on the hunt for a good shrimp po boy. I'm not sure if this compulsion was spurred by homesickness for New Orleans, the food challenge show featuring 2 famous NOLA po boy joints, or both but I've it seems the last few weekends I've found myself dreaming of that crusty bread ""dressed"" with lettuce, tomato, and mayo, and golden deep fried gulf shrimp. I happened to notice Baby K's one day and decided to try it out. To be honest, I wasn't even really that hungry but I wanted the po boy and I didn't know when or if I'd have the opportunity to go back to Town and Country mall any time in the near future. The inside was empty but they have a French +Quarter-esque patio complete with wrought iron fence. The bf and I both ordered the half pb with a cup of gumbo. I'm a bit of a gumbo snob bc I feel I can make it better than any restaurant can but theirs was really good! They had 3 different kinds which was nice and it was seasoned perfectly. There wasn't a bite that didn't have meat in and the broth was just right. The shrimp on the pb was succulent and almost tasted as if it was battered in beignet mix as the fried was light and airy. I didn't indulge in any libations but they do have Abita and a few other New Orleans beer classics. If I find myself in the area again I'd probably go back but this time I'm ordering a whole po boy!",review,oexyVjQSZ62qT7tpxgOcKg,0,0,0 +VKNl2-aF4n1x7lPVyU-Mag,2011-03-09,dpnlV37wmNjA-0v9BP41Gw,3,"Met some friends here for happy hour the other day. This is the old El Paso BBQ and they did a knockout job with the remodel. Great feel and warm colors to the place now. + +I had a couple of Coronas and some chips and guacamole. The regular menu looks better than the happy hour menu and think I'll try them the next time for lunch or dinner.",review,Kqvfep2mxS10S50FbVDi4Q,1,1,0 +jdStuaC_1leN_DNGcQ0yEw,2012-01-21,9Jcxcm6noFZfl2RfoWRyQQ,5,"The management thanked me profusely for my input on Yelp and graciously invited me to return as a guest to show me the true Latilla Experience. I was told changes have been made because of reading my YELP review.The changes are that dinner portions are more ample than before, the appetizer plate share charge is gone now and I noticed the web site has been updated. This visit showed little resemblance to the service I had last time. A full staff was on with staff working in sync as a team with all the tables not just mine. + +I was even more blown away with the food than the last time due to perhaps I picked foods that were more suiting to me some highs were- + +Beet salad- it was similar to others I had in other places but this one also had HOUSE GROWN BEETS ,Riesling soaked pears and the toasted hazelnuts made the salad pop with flavor. + +Foraged mushroom rissotto-correctally made with a depth of flavor, it was good on it's own but this had an added embellishment of a SIXTY TWO DEGREE duck egg. + +Nicely seasoned and prepared fresh branzino sat on top of ribbon cut caponata, an unusual surprise was the vinaigrette and the ribbon cut string less celery that was very good. + +We also enjoyed the Kobe Flap steak with wine reduction and tiny marble size multi color potatoes and tasty spinach. + +Since we skipped the interesting desserts last time we had to try one this time and tried the chocolate hazelnut cake with jam-figs and mascarpone gelato this dessert was garnished with a chocolate sort of lavender crisp and roasted hazelnuts. This dessert was something Iron chef worthy for sure with all the flavors working well together. + +The service we had was phenomenal. + +The food at Latilla is masterfully done, the surroundings are majestic and breathtaking. The meal we had wasn't ordinary it was extraordinary!",review,p7dvahRPZIWL7T6pFA_0dg,1,4,1 +cqIHyZ3Q0D4vBi-vb4mi-g,2008-03-25,h_PHLbOedibeZkUfdb9IXw,5,"5 stars for bein the only bar in Phoenix where I was first scared to order a drink. but- thats why I love this place. That, and its near the Trunk Space.",review,YoBgKOdfpGH48LpIDSfoQQ,1,2,3 +aRkYtXfmEKYG-eTDf_qUsw,2012-07-01,AHBjuEzhJs0NWZ44rFnVzA,5,"Lux is a great place for coffee, bakery items, bites, and even cocktails if the occasion permits. The people are friendly, and it has a great atmosphere. + +I love coming here in the afternoon for a cup of their Americano, which is pretty damn top-notch. As I don't live in AZ, if I'm going to be away for an extended period of time, I'm always sure to take a bag of their freshly-roasted coffee beans from wherever with me. + +I was there last week on a Sunday afternoon having some darn good mimosas with a friend, and it wasn't too crowded. + +The only downside I've experienced is it can be a bit confusing where to order for food and cocktails during the day. + +If you go for the first time, don't be shy. Grab a cup of coffee and explore. As one of the earlier reviewers mentioned, you might get looks walking in like you shouldn't be there. Maybe it's your hair. Maybe you're displaying something that's not eco-friendly. Whatever, dude. Be brave, press on. It's worth it.",review,2IbMDQWmzM-kY7bhjS87zw,0,1,0 +KQVOXl91K79PbqAUK74elQ,2012-02-15,gpx2zQWXvnlYLGnl5i6i-Q,5,"I was in the middle of a dilemma and needed proof of something faxed to me right away and stopped in here and got what i needed within just five minutes and was outta there and back to what i needed to take care of. The price for two piece of paper for the fax was almost $3, which while is not the cheapest considering you can get it for free at home, but beggars cannot be choosers and was happy to pay it.",review,AeucYo8J-rZjcq09Wuqsjw,0,0,0 +k76odRRsXPErPzB0gjn-3g,2012-03-02,T-KRbt7Hjct-CsB9ZUhrpA,3,"Styles of pizza can be so different. I have a hard time comparing a place like Boombozz to Grimaldi's. At Grimaldi's, they refuse to carry ranch because they don't want people dipping their pizza in it. At Boombozz, they offer ranch as soon as they set down the pizza. + +So no, Boombozz is definitely not the best pizza that I've ever had, but for their style of pizza, they are pretty good. Think traditional Domino's/Papa John's type crust with stepped-up, unique toppings and sauce. My husband said the crust tasted like a cheesy breadstick, and I think that's a pretty accurate description. We got the D'Sienna with an interesting tomato cream sauce, spinach, and tomatoes. The low quality cheese detracted from it overall, but it was still much better than the pizza at Oregano's. + +Boombozz is relatively new to town, but they seem to know their crowd well. It was pretty busy when we visited midweek. Big menu, lots of drink specials, TVs everywhere, ample seating... everything a chain restaurant needs to succeed. I'm sure we'll be back when we're eating with finicky family members who are too scared to eat anything ethnic.",review,o2CGc1kQHEFkYOECM3NFdg,1,0,0 +qNoNkF1yJctEs3t40VkX4w,2011-01-10,oVzrBaFvDRW-h9I3fxwfZQ,5,"My mom had purchased a Groupon for this place back in March and yesterday we were all deciding what sounded good for lunch. I suggested Mexican so then we were thinking which Mexican restaurant sounded good. (Living in AZ, you know there's MANY to choose from) So my mom suggested going to Blue Adobe so all of us headed there. + +My mom, my dad, my sister, my nephew, and I all thoroughly enjoyed our meals. I had the Triple Stack of New Mexican style Enchiladas. One shredded beef and two Carne Adovada. It was SO delicious! The red sauce at Blue Adobe is unparalleled and unlike any other. My dad had the Chorizo stuffed Chicken Breast and loved it. My mom had the seafood enchiladas with halibut salmon and shrimp and she inhaled those. And my sister had the Chile Rellenos and couldn't stop saying how tasty they were. And my 5 year old nephew loved his kids cheese enchilada. Our server was named Travis and he was great as well. Phenomenal service. Even if Travis had been sub-par, I would still give this place 5 Stars because that's just how good the food is.",review,LIl5vcUHRkZlhBS5H5uzdQ,0,0,0 +wN_wAXWg8W94v04eqijy6g,2012-08-11,R6VKu2LAo_HW71Ruij6BVQ,5,"This place is excellent. Hands down, the best tacos I've had. Fresh and flavorful meats and great salsas. I see people raving about some of the ""salsa bars"" at all of the 'berto's and such but the salsa there is like water compared to what Tacos Atoyac has to offer. They care about what they are serving and take pride in their craft. + +If you like the style of food here you must try Sonora Mesquite Grill on 46th Street and Thomas.",review,mUYZbOJJVvPHaIsiXWjZ1g,0,1,0 +lAGDe38li38fyf971CslFg,2009-05-29,TQ3whoVnYXdWmbA1hN8GTQ,5,"I totally love this place. It reminds me of the old school hardcore Chinese restaurant my parents used to take us when we were kids :D + +The decor is amazing- unlike more Chinese places in Phoenix. The walls are a teal blue, adorned with large carved pieces of artwork depicting scenes in China, golden dragons and more. The lights hanging from the ceiling are amazingly ornate. The place looks like its from a bygone era (doesn't help that its in a run down strip mall) but it is clean and charming inside. + +The service was great- kind to our 2 yo, and very attentive. The food was the best part- I can't remember the last time I had such good Chinese food, and it's priced very reasonably. We got the Peking dinner for 2 which included the fried noodles, hot tea, wonton soup (with generous noodles, meat, shrimp and veggies, the best I've ever had), a pupu platter with eggrolls, bbq skewers, house wings and those cheese puff thingies (the presentation is pretty cool, too). Next came 3 entree sized plates of food: mongolian beef, fried chicken (can't remember the name) and the Peking fried rice. The meal concluded with incredible little desserts- sort of like eggrolls but filled with banana and then covered with crystalized honey. I could have eaten 100 of them! Adding in a beverage and tax, the meal was only $34! + +My 2 yo can really eat, so I am surprised and pleased to say that even with sharing the dinner for 2 people with him, the 3 of us walked out with lots of leftovers. Highly recommended. Do it! DO IT!",review,U8ayzBXrBzgjdrCYOzwNOg,1,3,1 +3BOGWi4iykpxxBSYHLrdOg,2011-10-25,GQlYcHJFA82Uj0lHuARUPQ,1,"OVERPRICED & DECEITFUL & RUDE! + +I should have read the reviews before I came here! I took a bridesmaid dress in to have the top taken in like 1/4 inch, not much. I asked her, how much will this cost? She assured me it would not be ""much"". It was $60 and she hardly did a thing, can't even steam it there. I was irate but calmly asked her if she could charge less and she screamed NO! She said it's because the dress cost more. Yeah...like that matters A guy was there dropping off pants that needed taken OUT which is a lot more work, she charge him $18.50 for each pair. I don't know if that is good for pants a lot but her pricing scale seems way off! + +Previously I've been to 5th Avenue Alterations and they charge me $50 for a floor length brdiesmaid dress that they took in the whole thing AND steamed it. They're also polite and will work with you on pricing and communicate with you beforehand. Definitely worth the few extra minutes of a drive!!",review,q3gDMyDku0ihp0MDzXOcPA,0,1,0 +f7Xe9Xzoafhi_EY4xwEpSw,2009-05-24,hczz-lyKKqFTVxF4-GTxrw,4,"These guys are still delivering consistenly good, fresh food. It's a great little neighborhood place, good food, friendly owners. Just a really good place to go for a nice meal out - nothing fancy. Clean restrooms - always. + +Good limoncello after dinner - always a hit!",review,7u3eL3IodZLq4a1ORGJmrQ,1,1,0 +k8JnZBspVOI8kLcQek-Chw,2010-02-12,Oy0kqHnjDpCsm29Lh-fzsQ,4,"Since I'm on a low-carb diet, I never imagined I'd be able to eat pizza without cheating like a vengeful ex. Then, thanks to my fellow Yelpers, I found Mamma Mia and its 10 carb pizza. For $5.95+tax. Sold. + +Show up at the store, where there are a few people on the ""patio"" happily chowing down on what looks to be some tasty grub. Once I walk inside, I feel the warm, home-owned vibe that makes my tummy smile. I pay my dues (under $6.50 with tax minus tip), wait 6 minutes, and voila! the pizza is ready. + +Armed with crushed red pepper and fresh parmesan from the restaurant, I dig in when I return to my office, savoring each pepperoni-and-cheese covered bite. This is not the best pizza I've had; however, I can't imagine a 10 carb pizza being any better. Crispy, thin, wheat crust, flavorful ingredients, and a short drive from work? Wow! + +I will return, and may upgrade my already high rating!",review,XRjmRSO4XhkUVMKVJOSEIA,0,0,0 +XLwT4615x9rQHIfnu0J1QA,2008-11-24,npPJ1oYuwEy2-lzenbi4og,5,"Great prices and service. The delivery process could be improved but for the price and peace of mind with the Costco warranty process you cant go wrong. + +High quality furniture and very low prices.",review,23zT_daU4O5VcFnajw8MTg,0,0,0 +GCs6-N-8CalT4L2_nNas7A,2010-07-06,ezT5Q_vqyYQ0vGg6AGwIjA,5,"I have been going here for years. The staff is always very pleasant, the place is nice and clean and they offer a variety of services. I also like the $5 kids haircuts on certain days. Overall, a top notch establishment.",review,St8bDCbyyftkKVhXUssPJg,0,0,0 +JLrAD5J7O0xIdtUHb21jvQ,2012-09-25,QjsYLTJg_gytHvpzjbkj-g,4,"Basicly i would let anyone know i like it, never heard a wiper of a bad experience here. + +Def a fan, i work very close by and if i really need they would deliver, yeah their that nice. +How can i put it Ladybug House of Sandwiches or Sandwich shop for short what a great place in phoenix to take care of the lunch fill with out going to Subway, (not saying i don't go there). +When I need a real sandwich I stop in here. + +They are a lunch spot so they close early and will have specail summer time hours. + +Why ladybug house of sandwiches well, great meats choice of differnt breads and its like what I love the ladybug theme. and just what you think of ladybugs their nice not pests, pretty and would make a cool friend. +Small note, i put my business card in their bowl once and actually won! I got half off for the whole office, thanks ladybug ladies your the best. + +Once again Kevin, lets you know whats real, kind of like me + +McDowell right accross from the Banner Hospital right smack in the middle of the whole campus of medical buildings and offices.",review,0qIsBt4EzBDCKrIviV55Ew,2,5,2 +laHph41d1nMBhCJJ9Kl8gA,2012-10-10,OlY2bx0yWGjHYxJPVmXasQ,5,I have been going to Salon Mila for 12 years. I will never go anywhere else. My hair always looks amazing when I leave. The color and cut are always perfect! I feel glamorous and beautiful when I leave. First class salon! Beautiful surroundings! Always great service! They aim to please! Mila knows what it takes to make sure her customers feel welcome all the time! Thanks everyone!,review,0lRPDROhoiXAIot7jM6xSw,0,0,0 +1oFvqm7eSpJbVpxpPxueaA,2008-01-09,QMU906B86pFCpp4lOUOteg,1,"Buca Di Beppo is literally, italian restaurant hell. You know how all big box chain restaurants throw junk up on the walls in an attempt to make the space feel vintage? Buca Di Beppo throws junk, and knick knacks and statues and anything else 'italian' they could find in the chinese warehouse where they loaded up these goods. It's a terrible horrible mess and you end up sitting in a yardsale of italian paraphenalia while eating your very bland pasta. + + +It's embarassing how truly flavorless the food is here. Thin, flavorless alfredo sauce. Thick slabs of lasagna with less taste than what I can get out of the frozen section at Publix. I went with a large group and across the table, bland food. + +When they seat your party, they guide you through the kitchen area where the cooks play along and say a welcoming hello. Deep down you know they hate this. Why are we in the kitchen? Sure it's nice, but I'd rather have them concentrating on making the food, and making it good. Of course, the food at Buca Di Beppo seems to be far beyond any point of return to tasting good. It's just dead. Dead food. No life, no flavor, not emotion. I get more flavor from the $.99 Michelina's frozen lunch package. + +Far from claiming anything authentic Italian, Buca Di Beppo even pumps out bread with no taste. Eating at Buca is like eating food from an assisted living facility. No salt, no sugar, no butter, no fat, it's all gone along with anything resembling taste. Sure, Buca has huge portions, and the setup is nice for large parties and families - but they might as well just buy the family-size pasta packs from the frozen section and bake it at home, even that would be better, and they wouldn't have to the mandatory gratuity. Say what you will about other italian chains like Macaroni Grill, or Olive Garden - at least their food taste like something.",review,SbzANP6hRVwDU5pbtz5ANw,7,6,14 +ZRJwVLyzEJq1VAihDhYiow,2012-03-30,_cfetEw0dU8MRPpxMReHNg,5,"Just did take out. Great experience. Easy to place my order over the phone, friendly service. Nice that they have special pick up parking spots and entrance. Made it an in and out operation. Ordered the gluten free pizza with pepperoni and sausage. My husband and son loved it and have already been asking to get it again. I had the spaghetti calzone and was in HEAVEN. I highly recommend it.",review,T7J9ae0wTskrI_Bgwp-4cA,0,2,0 +SX0pCDRvuTEoXobTovJEIQ,2010-06-04,1D8buGjiJ6lZ5ZvvAjVOfA,4,"I am a fan of big and tasty sandwiches but have had very few really good ones as of late. That is until I tried this place. I was in the area and decided to give the them a try after spotting their sign. When I first walked in I noticed the place was empty (normally a bad sign) but it was a Thursday afternoon so no big. This was my first time eating here so I took a few minutes to see what they had to offer. The sandwiches here come in different sizes from a small 5 inch to a 2 foot extra long, which makes it easy to decide what to order depending how hungry you are. + +The 8 inch sub is easily enough for one really hungry person or two not so hungry people. Seriously it is about the size of a subway foot long and taste way better to! You have three choices when it comes to bread. They are white, wheat, and sourdough. I chose sourdough for my sandwich and it was chewy and seemed to be really fresh. Like most sub shops they also have a selection of pre selected combos (18 to be exact) with toppings like Ham, Turkey, Pastrami, Salami, Capicolla, Roast Beef, and Tuna. The cheese selection includes Provolone, Swiss, Smokey Cheddar & American + +What makes this place so different from most sandwich joints is the fact that they hand slice your meat when you order it. No more slimy meat that has been sitting in a case for hours and floating in weird juices Yuck! Finally a place that understands that it is OK to take the time to slice meat for each customer because it makes for a better tasting sandwich. One that a customer will want to come back for over and over again + +For me this place set the bar so high most of the other chain places will never be able to compare with the quality of not only the food but the great customer service that I received from this place. It is not often that a place is able to make such a great impression on me (read my other reviews) but I will definitely make sure to give them my business the next time I am in the mood for a sandwich. The only thing that brought their score down was the fact that they had no customer parking and I had to pay to park in the garage. Yes I understand it is Tempe but why not at least offer to validate my parking LOL.",review,B8HTR0tC1NFe4yAuUV3tGw,1,3,0 +CYMG5AsrhkhUPro2c6NSUA,2012-06-06,hVcICtxo4arSv8n1iPHWiw,4,"I dug this place. Got a great deal from Priceline, and I pretty much knew what to expect going in. I've stayed at places like this before across the country, and I can definitely say that this was a very pleasant experience. Everyone has complained about the beds being hard, but I didn't really find this to be the case. I like a firmer mattress, so I guess that's just my personal preference, but it wasn't like sleeping on a campus futon or anything. The towels were nice- nothing fancy, but definitely not the thin washed-out wisps of cloth that you might have expected at other places. The setup of the place was great- it's just like having a little studio apartment. Even had a coffeemaker, and an ironing board, which is strangely becoming a rarity these days. + +I have to make special mention of one thing- the pillows, for some reason, were absolutely amazing. My girlfriend and I both agreed (and we're both flight attendants, so we KNOW hotels) that these were some of the best hotel pillows we've ever slept on. Couldn't exactly tell you why, but there was just something about them- proper amount of spring, cushioning, support, punchability, etc. + +If you need to be in Arizona on business, you couldn't pick a better place. The convenience is amazing- you're right near the highway and there's quite a bit of stuff within walking distance. We got some DELICIOUS takeout from some of the local restaurants, and it was SUPER Handy to have a microwave and kitchenette available within the room for our use! + +So yeah, I gotta say, I didn't mind this place one tiny little bit. If you're used to Marriotts, Hyatts, and other fancy hotels, then you need to know that this isn't one of them. But for a relatively no-frills ""home away from home"" type of place, this is perfect!!",review,U5JyHRVayfHRHipogAq84A,0,0,0 +yJMLD-6AggZNdC-GonVBsA,2012-03-15,B7Mm_FUBsBVRHti8CXTg5w,5,"As a previous reviewer stated: ""This restaurant is like no other"". We had a birthday celebration and we couldn't have chosen a better place to eat. + +First of all, the service is second to none. Every staff member that we encountered was very professional and happy to explain the food and answer any questions we had. They obviously like working there because they were all so upbeat and smiley. You feel welcome as soon as you step in the door. + +Now for the food - fantastic! I ordered the four course tasting menu and everything was superb. My husband ordered the ribeye steak and enjoyed every mouthful, although the portion was a bit on the small side. But, in between each course came a little treat of creativity from the chef so that's something we've never encountered before. For example, we each had an espresso sized cup of a creamy soup that was so delicate and delicious that we were wishing for more. They also served us a little savory doughnut, about the size of a dollar coin, that was oh-so-good as well as little cranberry ""shooters"" that had little teenie squares of jello (not really jello, of course, but a fruit gel of some sort). Somewhere in between everything else we were also served a prosciutto mousse that was smooth and delicate. As the meal drew to an end, they again brought out a little taster and this time it was piping hot mini cinnamon souffles with a creme anglaise on top. For dessert, I ordered the goat's milk panna cotta that had a marmalade bottom and alongside were orange, grapefruit and strawberry segments and to top that off the server drizzled honey over all. Fantastic! + +We didn't consume any alcohol but we did have a nice bottle of water and purchased two coasters ($10/each) that flash colored lights when a glass is placed on them. The total was $169, including the coasters but not including the tip so it wasn't an inexpensive night but it was well worth it. I can't wait until the next birthday celebration!",review,io5b3aooPSgC0gFpSSrqNg,0,1,0 +aHGcI-KGitnGRco_D_I9Ag,2012-09-05,2Lb0yQc5VRT5JTMYnqH4Cw,1,"I want to like this place as it is in the neighborhood and there aren't many other options around here, but this is probably the worst restaurant/bar I've ever had the misfortune of going to. + +My last trip I sat down to order a beer at the bar. The bartender takes about five minutes to get me a beer, despite the bar being nearly empty, as he was too busy for me with his time and focus instead spent flirting with one of the servers. + +I drink my beer and want another. The glass sits empty for about five minutes while he paces around the bar. I try on three occasions to get his attention and ask for another. The dude is just ignoring me at this point. I guess they don't want my business and I just leave. He can have the 8 cents he owes me in change for a tip... I just want out of here. I feel bad when I leave that he even got the 8 cents from me. I hope he spends it well. + +On other trips here my wife and I have had the food. It's not any better than the service sadly. I have an English Bulldog at home with a poop eating problem and I'm not sure he would even find this food acceptable. Overall just the worst restaurant around and it's no surprise why the place always looks so dead out front. Nobody's there because it's simply horrible. Avoid at all cost. I wouldn't eat here again, but would give the bar another shot if I heard the replaced all the help. Whoever owns this place needs to clean house. Looking at other reviews on here, I see I'm not alone in my feelings about the service. Get rid of these people already... just sad!!",review,GuRU8N7gKPNBnWCuUrLOGw,0,1,0 +7SO_rX1F6rQEl-5s3wZxgQ,2007-03-28,V8MQK2HLoaFrdj6tfe3Yhw,3,"The Orange is a popular, well-reputed joint in my neighborhood. The Pizzaria is connected to a small bakery and deli. IMO, it's overpriced and over-rated. The parking is usually impossible and often dangerously full of gargantuan SUVs and expensive sports cars. + +There is valet parking available at times that is also overpriced, pretentious, and unnecessary. The parking lot is tiny and I need a valet to park my car? What a racket. Overflow parking is available on street in the bicycle lane (thanks a lot folks!) + +I used to have coffee here in the mornings week-ends in the outdoor cafe', but the place has become a neighborhood nusiance. The orange caters to a clientele that largely appears to regard itself as quite UMC. Probably they should be located in Paradise Valley instead of eastern Phoenix. + +I give it three stars because the food is good. That can't be disputed. The facilities and the company leave much to be desired though. If your idea of an enjoyable experience includes good food surrounded by SUV-driving soccer moms with ears adhered to cell phones, this place might just be for you.",review,yy8vNTtESId44OcGyaVnbw,0,2,3 +WxLMUX59m6sSszVNLnHDEw,2010-04-12,m9n76yM_vlXLFJUXQegEkQ,4,"Stopped into this good-sized place for lunch today, with Mike C. It's a little worn, but comfortable, & I counted up 81 regular food items. All that I tried from the soup, salad, sushi, hot dishes, & dessert selections were good, & I particularly enjoyed these items: + +* The Hot & Sour Soup! +* The Kim Chi! +* A tasty salad topping with broccoli, mushrooms, & more! +* The Seafood Salad! +* The Egg Foo Young! + +A good solid 4-Star place here! Lunch Buffet $6.99, $6.29 Sr.",review,ikm0UCahtK34LbLCEw4YTw,7,8,2 +-tBiXT917wKlr6n9wSqViw,2010-10-19,v1P47gNxPMPC0TNNiztiUA,4,"Went for my birthday and anniversary, and I was pleased by both the service and the food. The waiter let me try a piece of Prime Rib, since I'd never had it before (I know, what have I been missing?!?!), so kudos for going out of his way. + +Another nice touch was the manager personally coming over to introduce herself and ask about our experience. + +Overall the service was great, and the food, while tasty, wasn't spectacular or terribly distinguished. I probably wouldn't come here too often, mainly due to price, unless I have more birthday coupons.",review,X6RyZWTWZNIVEwes5T3WGg,0,0,0 +jgWAgT7LWPTf5wju9Q-kiw,2012-01-15,tQmgYx1VAz98Q6l4woKHbA,5,"Been here a few times and the food is always fresh and tasty. I am Chinese from northern China. This is authentic northern Chinese cuisine. Food is not fancy but extremely delicious and satisfying. Highly recommend the Zha Jiang noodles (meat sauce with hand made noodles), the chives and egg pocket, and dumplings. Good prices and comforting home made Chinese food. Owners are very nice.",review,UY-Vo1HErkyMa1R5PxDrTg,0,0,0 +9Ep4sguv3HH_8lWyzSogjw,2010-03-21,pNF4Ic_rfs85Rxu_pH34uw,2,"I really wanted to enjoy my experience at Indulge, but didn't. From the website, local magazine reviews, and driving by, I expected it to be a slightly upscale neighborhood joint, but it really is no different than a Fuddruckers. +We were underwhelmed by the food and hated the environment. Two of us built our own burgers, and one ordered a pre-made pick off the menu. We had the dill chips (fried pickles) as an appetizer. I can't say that any of us loved our meal, and as soon as we walked out we all agreed we weren't interested in going back. It was just no better than you could make at home (and I burn soup). +The tables were crowded, too close together, and the place was uncomfortably noisy. Our servers were trying to clear plates as soon as one of us set down a fork (no one was waiting for our table), and asked for our dessert orders while we were still eating. +The whole experience was rushed, loud, uncomfortable, and not ""indulging"" in any way. I'm so disappointed.",review,EHI8th4wH7et9Ezk20d-KQ,0,0,0 +q7MXrL3K5COL51o_bxDLDQ,2011-10-06,vqC-X-kvSIaWEFW0AmbQ6w,4,I really like the facial I had done. I was able to choose what I wanted and I could see the results when I left. Very nice.,review,RyhQ25rEbRFPbnxfLXZGBA,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2010-11-18,kbE8egnIGXP_Ze031ZK2Cw,2,"Cool atmosphere. Very laid, chill environment. Good price on beers, but thats all I can say. The server was pretty awful, not continually checking back with us and not friendly. There were 4 of us and 2 of us order food initially and the orders came out about 5 minutes apart. My friend order 1/2 dozen oysters (its an oyster house) and from his experience the person that shucked those oysters obviously was not a lover of them. There were small broken pieces of the shell around the edges, and the bottoms were absolutely filthy dirty. For being an oyster house you would think that would be the thing they take pride in, but not that night. Then the remaining of our group ordered food and both those orders came out at separate times (almost 10 minutes apart) and one order was just a side of fries. It's a great drinking atmosphere and a cool place to chill, but I wouldn't go expecting great service of great food.",review,1vIg1iRDdx8RokPAFNkFEw,0,0,0 +6NAOp61ozWlO6KCxTlgCkw,2008-11-19,7Ivl3Fikr0IZjPkbrz538w,4,"This place has been my weakness since childhood. I still get food from here once a month or so. Probably the only fast food place I visit often, other than Five Guys when I lived on the east coast. If you're preparing for a trip to Mexico, just dine here once a week for a month or two before your vacation. You'll probably be introduced to much of the bacteria of delicious real-Mexican street food. + +Perhaps it's not that bad, but it is delicious. Especially their ""pastrami dog"". You can be a self-proclaimed ""foodie"" all you want, with your ""oh, ha! ha!, but I admit that I do on the occasion dine at the selected In-N-Out"" pompous asshole who thinks you're still down-to-earth, or you can come down and gorge on some real disgusting, real fast food. What are you afraid of? Your arteries will expand enough to still allow the blood through, don't worry. Sure, they may drop your hot dog on the ground and forget to use sanitary gloves from time to time, but how else are you going to break in your immune system, you sissy?",review,jnMII2mt0V6AM4_oMECyIQ,2,1,3 +h6jfMpTZpNduLG0wE2tbaw,2011-06-22,o205X1jGfSqjQXRVkPvRsg,4,"BYOB and you can get a flaming boat of sushi?! #winning + +This is an awesome neighborhood place with reasonable prices and delicious menu options. Plus, it's BYOB - a rarity it seems. + +I attended with a party of four and we spent about $110 and were stuffed on tons of food. The noodle dishes and sushi were great and our server was a lot of fun.",review,lCVLT95VUnlZfboVoZJCZA,0,1,1 +nBh7RAqeGq2Y2vH-s8Aw9w,2012-12-17,zhMr_eIxcQWzMGCUVsnnFQ,5,"Much more organized than the last time I was there, and I noticed more price systems vs having to ask. The even had the new Color Club halo hues I have been hunting for!!! They had 5 of the 6 colors and they were the highest priced polished in the store at 6.50 a pop!! Still MUCH cheaper that the 11$ everywhere else. No striping tape!!! Although the owner did say he had ordered it before and it didn't sell well...... I just went down the street and got some...:)) yay candy cane nails!!!",review,wvtg5Dfw0wTYmhn14VkzwQ,0,0,0 +H03D-h5UwPXOv64W5Iqn_Q,2012-02-06,gX9B5L-BDVK34m5mCli-QA,2,"I had every intention of giving this place a chance. Mostly because it doesn't look like the kind of place that people RAVE about after a meal. Sometimes making a snap judgment is completely justified! + +We were intially given a server that was not at all confident in her ability to perform her job even at the most basic of levels. When she was asked about the ""specials"", she shrugged her shoulders and told us she didn't know about the ingredients or sides that were available. I was still hanging in there and giving this place my all. Afterall... she could have been new, having a terrible day OR goodness knows what she was going through that day? Then the baby started screaming in the booth next to us and every server in the place ran for the hills, leaving the issue unaddressed. PEOPLE!... if you have a crying baby, FOR THE LOVE... take the poor little thing outside and deal with the problem, don't force unsuspecting strangers to listen to it. We opted for a changed of scenery within the restaurant after five minutes of non-stop crying and were moved into the main area of the restaurant and reassigned to a new server. + +She no sooner finished warming my coffee (I use this term loosely, as it was more like colored water) before I glanced into the grill area which open for the whole restaurant to see. This was the nightmare... I saw a rather large female cook with a tissue paper plug in her nose. Anyone who's ever had a bloody nose knows that this is one of the few things you can do to passify the DRIPPING BLOOD!! You would think a bloody nose would qualify one for a break until the bleeding subsided, wouldn't you?? + +I don't think i'll be able to bring myself to visit this place again!! In the mean time... might I suggest some food safety training??",review,Ea0QvMihI7UmWBrYUy0sYw,0,0,0 +pAHUC05ceak48e745i6G4g,2012-12-10,qO4kC74xeNNOqBTm3NezPg,5,"Stopped by here for lunch today... I saw the Burger sign outside and thought I would try it out. WOW!! This place is amazing. The owner/chef was taking the orders and was super helpful and friendly. I had a Paradise CHZ which came with 2 patties, smoked mozzarella lettuce, tomato, caramelized onion as well as cucumber. I also ordered Sweet Potato Tater Tots I was blown away! BEST BURGERS IN PHOENIX! Our bill came to $18 for 2 cheese burgers, 2 sides and a soda. +It was so amazing I went back for dinner. I bragged to much when I got home that my boyfriend just had to try it. I had the special which was a Roasted Duck Burger (2 beef patties, topped with roasted duck, caramelized onions, bacon, fried egg over easy served with duck au jus) By far the best burger of my life. My boyfriend got the Beach House (2 beef patties. roasted green chili, smoked mozzarella, pico de gallo and jalapeno ranch) He also ordered the seasoned fries. I don't care for fires and I think I could eat 3 orders they were so good. His was so good he ordered another burger. +For Desert we shared a Maple Pecan Bacon Milkshake, also to die for. I really think I need one of these every night. +From the atmosphere, the music, the staff to the food every thing about PV Burgers was a hit. +This is a must go!",review,jtT3RFcI8isonLupfH7RwA,1,1,0 +5-X03Zc0nN7U5eoe8uFUdw,2011-12-08,9Z_bU2xRCzD3AERtnOjKqg,5,"This is place is a weekly trip for us as my girlfriend loves the salmon and martini's they serve here. We have been frequenting this place ever since we moved to the area versus the rare trips we would take for the awesome cream cheese chocolate cake made by Caroline or the lunch Caesar chicken sandwich. Here are my ratings of each dining point I consider when going here: + +Service: 5/5 Fast and very helpful, Even the chef will dig up custom stuff and cares what people think of the new entrees. + +Ambiance: 4/5 The place used to be a home so it's a little cramped but nice nonetheless. Not as comfy as some others like Ticoz but we like it. As it is small +in seating ranges you can't get too loud so keep the rowdy folks to the Applebees locales. + +Drinks: Ginger ale and the kiltlifter is nice as well as the blackwidow and black / blue martinis. + +recommended Food: +Fish 5/5: My girl's favorites are the halibut,swordfish,miso salmon with basmati rice, she also loves the spinach and asparagus. +Sandwiches: 5/5 for roast chicken with green chili, side of coleslaw or balsamic salad 4/5 chicken caesar is good but sometimes is hit and miss +meatloaf: 5/5 best I have ever had, it is a beauty. +Tacos: 4/5 One time I had pork tacos they were the best ones I had tasted, the next time they were ok, then the last time they were great, not sure why but still recommended. +Cream cheese cake: 5/5 Made from local baker who used to do deserts for Circa 1900 but now does it for them and Urban Bean to name a few. +Steak,chicken, pork: 3/5 I have tried each and every one here and while you wont be disappointed there isn't a wow factor like the meatloaf. The sauces seem to not match or compliment the specific meat in my opinion. I would love a bordelaise sauce or onions and mushrooms with the filet for example. +Appetizers: ?/? I am not a fan of the bruschetta but haven't tried the rest. I have heard the crab cakes are awesome but have yet to compare them to Fez's awesome versions. + + +Pricing is on par with Sophie's but less than Christopher's and more that Ticoz. I am fine with it as the food I order is totally worth it.",review,9g_ARKx0eJmNH8oO1TR9rQ,0,0,0 +DlCtdbceo4YNSI53cCL2lg,2010-10-25,87dFLz3no7v3jKgtX5pbBA,3,"I've actually never set foot inside this restaurant, so I can't comment on the place itself. But every now and then we've picked up orders from Old Spaghetti Factory at work, so I can comment on the food itself. + +The food is as basic as it gets. This is definitely ""family food."" Most adults won't complain about it, and kids will enjoy the simplicity. I recently had the Old Spaghetti Factory's Chicken Parm. I won't call it bland, but it's nothing that the average home chef couldn't cook up for their family. + +I will give the place credit for the portions. It's not expensive and you get a lot of food. While the chicken itself was not huge, it comes with Spaghetti, an entire loaf of bread and butter, and a side salad. The salad was way too plain for my taste, but at least I had a little bit of vegetables to go with my meal. It's also quick. Take out orders are almost always said to be ready within 10 to 15 minutes.",review,thdVzCfKx-DV0zYWqId3pw,0,1,0 +WM8sy8FjrU3PpxN_NI02ZA,2012-03-16,fUPyltvyHqgmzftT4VhWvA,1,D-scust-ing.,review,SGXahHRReksq3m_Zk9V20w,0,1,0 +1_43FZHx3P5D7X-CpIR9WA,2011-09-04,C4zN4vdqJkBdhXDpmbFI0w,5,"I LOVE THIS PLACE!!!! I have tried several of their subs and although they are all delicious the Chipolte Cheese Steak (it's the # 43) is my favorite! It is the MOST DELICIOUS sub I have ever had!!! The bread is always soft and fresh, it is extremely filling because it's stuffed full of steak, peppers, and cheese!!!! To make it absolutely the BEST sub ever have them add some of the little red chili's to it (I think they call it chili relish)....OMG!!!!!",review,8jLwlohHK5Lka4tSdwfjqA,0,0,0 +zRqU9_TTVNSo9d23fL8qgQ,2012-10-01,fjAbI8cUVaEFoe-vGnFwow,1,"Walk the other way, just walk right the hell the other way... + +Here was how this played out. Oktoberfest a few days ago. Starting the night off. I walk past this place and see a place that sells a slice of pizza for $1.99. Good, right? No. + +me: ""Hi, one slice of pizza please"" +guy: ""you buy drink with it, 4 dollars."" +me: ""no, just one slice of pizza"" +guy: ""we do not sell one slice, you have to buy a drink. 4 dollars"" + +I should have pulled a flag on this play at this point, but knowing I was going to be drinking I move forward wanting food in me. Not a wise move. + +me: ""so, I can't buy one slice?"" +guy: ""no, you buy a drink with slice, 4 dollars."" +me: ""It doesn't say that anywhere on the menu or walls"" +guy: ""No, do not sell one slice. +me: ""what the... O.K., give me 2 slices of pizza"" +guy: ""you buy two slices then."" +me: ""yes, Jesus Christ, yes"" +guy: ""toppings?"" +me: ""no, no toppings. cheese."" +guy: ""we have toppings."" + +what is this guy, fucking deaf? + +me: ""no thanks"" + +I give him the money. + +guy: ""it take 10 minutes, you wait."" + +I don't think they run the air conditioner in this place, so I wait outside. + +Pizza comes out. Tastes like absolute crap. I eat it outside because in September in Chandler Arizona it is cooler outside then inside this place. I think they had the thermostat set to ""HELL"" Guy working or running the place comes outside and stares me down as I am eating. I'm sure if you want to eat here you can check the dumpster for plenty of slices to try beforehand to avoid having to pay for one. Excuse me, avoid having to pay for two. However after what I had served to me I'm pretty sure they will beat you to the garbage cans and sell it back to some other unsuspecting soul. I was the only one dumb enough to finish all the food. Wouldn't eat here if there was a natural disaster and this place was the last to be ransacked for provisions. I'd keep walking. + +FAIL.",review,KgnQz4WFT892AXmimnP4jg,0,2,2 +vARjqeIkSNsazHltujiq4Q,2010-08-29,kdVVlmyKFPC2aCBTLNpaVQ,3,"The main reason to miss a star is that the one that we ordered (the mint-lamb) was a bit dry to my taste and no mint to taste at all. For desert we had the apple one and that was much better. I'd like to try a different one some other time and compare :). + +Good environment, and for groups, friendly staff who would explain you what they are cooking!!",review,LqgGgWi3FLHBViX9tmZ9sw,1,2,0 +mKtHJOe1rtf-zGewKpAqrw,2012-12-07,GkoBNcDM_08BNCWTRuoD3A,1,I love how all other Yelpers reviewing this company have discovered the same issues that would never permit me to use their services again. Company is a disaster and should be reported to the BBB.,review,Jr11o_s3zIkKtOM8a8H8rw,0,1,0 +gkv2XvXpFgiq4Bb2XK7YmQ,2012-02-14,ldOnZ0of0M2MrR2EQTqX7g,1,"if you like terrible service and overpriced food you've come to the right place. If I knew before I went in there I would be paying $16.00 for macaroni and cheese, and had the pleasure of waiting around for an hour to get it, while my glass remained empty, I would've stayed away (which is what you should do). Food wasn't awful, although 2 members of the party did cut up their mouths eating the hard as a ""Rock"" bread on their sandwiches. The mac n' cheese was nothing special. The service was beyond poor. First and last time I will eat at Hard Rock Cafe.",review,JEHGgY_fGtRCXur03C9fQQ,0,1,0 +sNuyncpQdcvfEpfZS-3Yew,2011-07-07,fX8DkfV6uXNbanxyfpp5Ig,4,"Clean, fast, fairly cheap. I had the Orange chicken and it was good. Liked the brown rice option. I enjoyed this $6.19 meal much more than the lame sandwich/soup I had at Great Grains yesterday and that cost me $12.25, I'll be back to Tott's.",review,onHakaxo9xOWtzLZtif9nA,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2011-11-24,Kjtu2HXWQQX1Ww1Ob5mAag,5,Great food. Great ambiance. Great for a night date on the patio. I can't wait to go again.,review,z-JC1S58qaW8WNiOzUh_TA,1,1,0 +k8JnZBspVOI8kLcQek-Chw,2008-08-16,hka-nUBLnJpxOy6YAvwm2w,5,"You know that scene in Fast Times at Ridgemont High where Jeff Spicoli takes one of his Vans off and hits himself on his head? Well that's what I did when I went to this place for the first time. Why haven't I been coming here for the last 10 years, this place is great!!! + +I would say this is the best non-Pizzeria Bianco/Cibo pizza in the valley. The crust is awesome, sauce and cheese just perfect! + +The really impressive part is is how picture perfect the pizzas are made. + +The lobster ravioli were huge, easily enough for two. Baked Ravioli's were better that average but needed more basil or something. + +You really can't dine here, so it's take out or delivery. They have one table and a few other seats inside if you had to eat here I guess you could.",review,sEWeeq41k4ohBz4jS_iGRw,17,15,11 +vfLog2bLJGl6hAFtGtr0GQ,2012-07-29,3ZHH5fSxzMLVmVK9vaCdwQ,5,"Jeremiah is great! He is very friendly, patient, and knows what he's doing! + +We started off with the Drunken Cheesy Bread, it's ok. Not something I would want again. Nothing wrong with it, just not my taste. + +For lunch, I had the Chicken Parmesan sandwich, along with a house salad. The sandwich is great. Loved it. +The house salad... I mean, I could not stop eating it. I have no idea which kind of dressing was on it, but it was AMAZING. I am craving it just thinking about it. + +The interior is very clean, roomy, very casual. I heard they have great happy hour, so I will be back again.",review,ugoqDrn6cPPD63Pt_CLi8A,0,1,0 +rZbHg4ACfN3iShdsT47WKQ,2010-03-17,DFjpEBuLU5Wu4cJ8JAeX8w,4,"""You smell like smoke."" That's the greeting I received when coming home from a terrific UYE organized by BBQ lovin' Deb L. And at that point, if my stuffed self didn't already know it, I knew I had just eaten some damn good food. + +Upon arriving, I had a deja vu moment of being there before...a long time ago, sipping a virgin strawberry daiquiri (I told you it was a long time ago), and thinking I was all that. Yes, it was Bobby McGee's at one time! So flash forward 25 years, and I'm having a strawberry lemonade ""adult"" beverage, which was quite tasty btw, in the company of 20 fabulous Yelpers! + +We were given corn bread pretty quickly, and it was devoured pretty quickly. A little on the crumbly side, but delicious nonetheless. Because my husband could not join us, I went with the 2-meat combo (brisket and pulled pork) so there would be some left to take him. Yeah, that's my story. I was a happy eater to find I could order my meats sauce free! The brisket was good, but a little too fatty. The pork was really good, however; adequately seasoned and smokey. I tried the spicy sauce on the table, and found it to be just right, just a little kick to it. For sides, the mac and cheese was creamy and not lacking in sauce. Yum. The roasted corn was really really good. If corn always tasted that good, I would move to Iowa. + +Our service was great and they were accommodating for our request for separate checks with a 20% gratuity. Our service was actually good enough, especially given a party that size, that I tipped extra. And I did refrain from eating all of my meal, so that I could have a nice lunch the next day when my husband refused my offer of the leftovers. Only problem was he didn't refuse. And I went hungry the next day, wishing I had eaten all of my meal when I had the chance.",review,wHg1YkCzdZq9WBJOTRgxHQ,7,7,7 +i41M_To0DAxuzZIGvU1wyg,2008-05-31,wPa3peOXdMf6LYnfskFUYg,1,"Mediocre, bland, low quality food topped off with painfully slow service. I worked in the neighborhood and continued to return occasionally ""just in case it's gotten better"", for reasons I could never fathom once the plate of abysmal food was placed on the table. The salsa and rice are usually good, but that's the most I have to offer.",review,YMB29SPB8Z_a2be4O5gxOg,2,3,3 +r3r_bAfa6pZKIhQB82FizQ,2010-09-26,6WZ9XwBdRXQi-AH3V4lHVg,2,"We came here on a Friday night. My husband ordered a dirty martini and it was so dirty, it came out looking like a glass of olive juice with some grenadine in it - it was actually red - WTH? It was the first time in his life he had sent something back. The waitress was cool about it though. She had to be, she has eyeballs too. We ordered the mozzarella and heirloom tomato appetizer. It was ok, nothing special. I have a pet peeve though - if you say heirloom, I expect heirloom and heirloom tomatoes, they were not. If they are not in season, that's fine, but tell people when they order. Then, we had the cannelloni special with sausage sauce. Again, nothing special. Here's the kicker - they charge for bread (not special bread, just plain ol' bread) and for parmesan cheese to put on top of your pasta!!! In fairness, they do give you one piece of bread with your pasta, but if you want any more, you are paying $3. Let's be serious - the name of the restaurant is Pasta Bar and you charge for grated cheese?? That's like going to a sushi restaurant and paying for soy sauce or a burger place and paying for ketchup. The cheese actually on the menu as a side. Are you kidding me? We're not talking special grated cheese. It looked like the stuff from a green shaker bottle. I wanted to add some salt to our appetizer, but there was none on the table. I didn't ask for any because I was afraid they'd charge for that too. I'm actually surprised they didn't have it on the menu as a side. We won't be going back.",review,z2QYfopPGuL2h9mJ1icrJQ,0,1,1 +DHt6YEtuGWQtewpByra2sg,2012-09-12,53uEchUGkTw_DmIXGULZ8A,3,"I give this place 3 stars because of how friendly the lady that worked there was and how amazing their prices were. It was pretty unorganized though and I am sure that it is due to people moving books to where they shouldn't be and there just being too many books to keep organized. It is not a bad book store at all, just be prepared to have to dig and dig for what you are looking for. Worth it though for the prices :)",review,0z6CbySSyUrRi-qK5Edqng,0,0,0 +3QhPvyen9kSiAxduT8g3bQ,2011-05-19,zpatQBj8m2UAECkMi-SXZg,3,"I tried Rare Earth for the first time as a solo diner. Often a good way to get the take on a new restaurant. I sat at the bar which has surprisingly uncomfortable seating. Really hard seats that cut me in the back of the knees. The wine selection is nice. Not big but two or three choices of each variety. +I ordered a glass of wine, a small House salad and a pizza. +The server behing the bar was ""professionally friendly"" +Then the wait began. Fifteen minutes passed and I still had no salad. I was able to get the servers attention and asked about my salad. She didn't check on the status of the salad but gave the excuse that several people had come in around the same time that I did. +Just about 3 minutes later both my salad and my pizza came out at the same time. Very disappointing. I wanted to eat my salad but I didn't want my pizza to go cold. Note: This is extremely thin pizza...like a cracker crust...so it goes cold very quickly. +The server offered to send the pizza back to keep it hot but since it had fresh tomato on it, I didn't want the pizza to be ruined. +The house salad was fresh, good mushrooms and shaved pecorino cheese. There were lots of red onions and the dressing, a house vinaigrette was very strong ""and vinegary"". For me the onion and vinegar were just overwhelming and I would not order that particular salad again. +The pizza had a good amount of toppings and held together pretty well, even considering how thin the crust is. + +I would like to try this restaurant again because there were several things on the menu that sounded really good. + +4 stars for the pizza, 2 stars for the salad that I ordered and 3 stars for the service.",review,5U0InJlG-CoZeikFUUl1Dg,0,1,0 +XNSito__Fne14TXU0vz1Qw,2008-09-04,STevB88V3RZuighli4qkQg,5,"I was in Bomberos for breakfast this morning, and I was told they now carry Coca Lite! So much better than Diet Coke - I had no idea I could find it anywhere in the US! How great is that? + +Also, Bomberos is now using MJ Breads and Tammie Co pastries... not too shabby, huh?",review,fczQCSmaWF78toLEmb0Zsw,9,11,6 +Snp5LyDO9NeQiuFPOlkavw,2011-09-17,HBzIraUgYdV6_AOLJppLAg,4,"This place is strictly a dessert place. While they serve food, I would skip the food and go right to the dessert. At least that is what I do, being that I have only eaten dessert at this place. + +I have been here 3 times, all of which have been very good. My only complaint is that the sundae's are a little pricey and the decor is pretty dated. But it is an authentic retro, ice cream parlor. + +The sundaes are always made up to perfection. They have many unique flavors and I have enjoyed each one. + +Next time you are in need for a sugar fix, give this place a try!",review,aQQn3GztQ_gTb0QOEnxyCg,0,0,0 +cPmbPQepAatet3QMUZaSeg,2009-05-25,zxjv7d1rAZO4vyHxPDExBQ,3,"Food wise, this is my favorite Lenny's location. They make the perfect jalapeno cheese burger. The fries are really good too. + +The location kind of sucks. Its surrounded by a greyhound station, a liquor store and some kind of AA hall. Need I say more?",review,2FiNCj5rM3nF0qgaWf86Gg,2,2,1 +F0ZXhPJD8yNS3xzTxsichg,2008-12-15,OViAJbHgoeY85nm6JiOEbA,5,"I recently saw a Coyotes game here and I was seriously impressed. This arena is super nice, almost mall-like and clean on the inside. What also impressed me was how much stuff there is around the arena. Where I'm from, you'd have to drive somewhere else if you want to go to dinner before or hang out after the game. Here you can just stay in your cozy little free parking spot and hang around. Probably my only gripe is that the screens on the inside could be a little bigger, but other than that. this arena is right up there.",review,n0bn_DJxCj2m9y5AMhnA1g,1,0,0 +Pfb6VOIiroqDWOebfgWGPQ,2013-01-01,w6a4k8b5H0X2rS5SphCrSA,5,What a place for brunch. $4 drinks are fantastic. Their tenderloin egg Benedict and sea food sandwich is heavenly. Wish we had such a place in Los Angeles.,review,EaBSxpcf3S128Ncrtt95Zg,0,0,0 +IfMwqincIFlyj4L0qa5BRA,2011-03-04,lIZE03FZc_Sh6t4uCI_GBg,4,"Never had any complaints about this place, except it smells like death when you walk in. I've always been well taken care of when Im here.",review,gN4JuiRC2sIssc1qijg4Zw,0,0,0 +KBG28p3lGX17hOPoHhq5PQ,2008-07-28,WpAmwbpzZTJOtqu3bBVrvQ,4,"Tonight was my second time dining at Yasu's. I was really excited to score a seat at the sushi bar, eagerly hoping to chat it up w/ the sushi chefs. However, they seemed too flustered w/ all the orders that they made a minimal attempt to talk to me besides asking, ""is everything ok?"" And I think the Mexican sushi chef is new so the Japanese sushi chef had to instruct him on certain things a few times. + +I started off w/ an order of kampachi sushi, per one of the recommendations of the Japanese sushi chef. While it tasted fresh, it was very blah to me... nothing special about it at all. + +A few minutes later, the waitress arrived to take my drink order. I decided to just stick w/ water and told her I was ready to order a few items off the paper menu. I had decided on mirugai (giant clam/geoduck) w/ mixed mushrooms, hamachi sashimi w/ jalapenos and ribeye sumibiyaki. First up was the hamachi sashimi w/ jalapeno slices. Nice thick slices of buttery hamachi, but all the seeds were scraped out of the jalapeno slices so they weren't packing much heat. After I ate them all, I remembered that there's a freakin recall on jalapenos in AZ and there wasn't a sign in the restaurant stating that their jalapenos are safe. JUST. EFFIN. GREAT. I hope I don't get salmonella. If you don't hear from me in a few days, pls call for help.. I live alone! And tell them, IT WAS THE JALAPENOS FROM YASU'S THAT DID ME IN! + +Anyhow, next up was the mirugai w/ mixed mushrooms dish. Very small portion, but it was tasty. They were a bit skimpy on the mirugai to mushroom ratio so that was a little disappointing. About 10 minutes later, the waitress asks if I'm all done.. I ask her about the ribeye and she asked the sushi chef & kitchen in a frantic tone.. They reassured us it was almost ready. Another 10 mins later, it arrives.. I guess it was worth the wait.. it was soo tender I was able to ""cut"" off the fat w/ my chopsticks. DEEE-FREAKIN-LISH. It could have used a lil salt, but that's just me being picky. The 3 sweet dipping sauces helped. Next time, I wanna try the duck sumibiyaki. + +Since I had a $50 gift card (that I purchased from the radio promos for $25), I had another $10 to use up so I ordered the shrimp skewers wrapped in crispy noodles. The crispy noodles were like deep fried chow mein noodles. Interesting, but good. + +Stuffed like a pig, I paid and waddled out w/ my leftovers in tow.",review,Q5dlLCEni_my05az9wIptg,0,0,2 +tr4L9VWmPGZtdBD-L2Pofw,2010-02-23,UJh5uWBq-wi8rWXdyO1c2w,3,"I've heard about this place being ""the best"" burger joint so i had to check it our for myself. My boyfriend and i went on a saturday afternoon and to my surprise most of the seats were taken, people were coming and going so my first thought was they must be good since they were so busy. Severs were really nice and prompt. + +we both ordered their 1/3 lb arizona smashburger which has: habanero cheese, guacamole, lettuce, tomato, onion, chipolte mayo and fresh jalapenos on a chipotle bun, we also had an order of their smash fries. + +first thought, the presentation of the burgers and fries looked great, after putting mustard and ketchup on it and TRIED to pick up the burger everything almost feel out. It was messy and greasy totally ruined the experience of enjoying the burger. It tasted like any other burger, nothing really special about it. Their fries however were amazing. + +on a scale of 1-10 i would give this place a 6 just for the food presentation. my boyfriend said he wouldn't go back but i'll give it another try one day.",review,i-kPcHFEXraUB77-0u60uw,0,0,0 +TuCAYZ89lP_s6D7Y78xNhQ,2011-03-28,AcAejpKnMrFZva9pKCQ8Rg,5,Fast service. Great burgers and fries. So far the Arizona burger coupled with sweet potato fries is my favorite.,review,6YdlDDgPGTToXm5vTKh6iQ,0,1,0 +GfMRsE7rYqNyfC6wUYZkzA,2010-11-17,ezFQPLUBegqcb4YGPeSDTQ,5,Island Terrayki is a great place to eat at. The owners are nice the prices are right you can't go wrong with that. My coworkers and I have been going there for a few years now and we all love it. Highly suggest eating here if you are in the northwest valley and want some good quality food.,review,s1e7gVzxaC8uryJVordhvQ,0,0,0 +KgTb63IZHFn_rhLG-cpm_A,2011-02-23,5VnleLYRYb-41ksgsdiFng,5,"Whitney walked into Renegade Canteen and never had a chance. Nor did any of her previous favorite Scottsdale spots. + +The green chile pork stew is enough to make a good date great or a bad date totally tolerable. Tender, juicy, sent from above...having this dish once is not enough. You won't have the heart to inform your mother that after tasting McGrath's bowl of deliciousness, any pork dish she's ever prepared seems dry and flavorless. + +We can only hope that the clouds in heaven are made of the mashed potatoes. I get them every time. The filet was the best steak I've ever had (I've thought about it, trust me) and the Dr. Pepper braised short rib will give you something else to think about the next time the Kiss ""Dr. Love"" commercial comes on. + +yummmmmmers.",review,m5cQ7Vsqt1KgpJ5ZqyofwQ,0,1,2 +0yfN4bdKZfkFSXseB2kOBg,2012-07-13,vB5V5gTnYlwjRO34PcYRMA,5,"This is a Mom & Pop Mexican restaurant on Tempe's east end, the food is awesome +and of the good ""Homemade"" quality. Known the family for almost 30 yrs now.",review,LRblz3w7ngMUnbDWZzB_Hw,0,1,0 +I7IfnWW1nXljC4ZGqwPe-w,2010-01-30,Rdbh5Djh6nd5C0GDm-xHQQ,4,"Good chips and salsa, excellent service. Friendly folks who greet you well and say good-bye when you leave. MY staff love this place and I gave them gift cards for Xmas from here so they could go to lunch and talk about the boss! + +Food is good but not great. Not high-end Mexican but decent ingredients put together with care. I highly recommend asking about their specials. They are thinking about what they prepare and have some excellent dishes they have created themselves. The spicy roast pork is very good - as an example. + +Parking can be tough at peak hours. I had to use the street last night and the place was absolutely packed. Large lot but at peak hours... + +Very good value. You will leave knowing you have eaten something! + +Decor is basic Mexican restaurant but comfortable.",review,cUMxaIaeZovQTYBBxcQKzA,1,1,0 +2OY8xs4aqOt8eTnYokdrww,2009-08-05,WyJhYnlpQTfnuaoPs-FEVQ,5,"ABSOLUTELY ADORE THIS RESTAURANT!!!! Amazing location and such a great food !!! Been going there for a long, long time! I have yet be even slightly annoyed. BLISS! They wait on you hand and foot, food presentation and TASTE is Fantastic...Always make you feel very special.. the hostesses are not rude nor snooty and are always smiling- GREAT Managers! LOVE them all around! ( and I AM SUPER PICKY ( and Proud of it!) DO IT!!! GO THERE!!!!! #1 rest. per me in AZ for beautiful location and food!",review,OCiyaqz1BlfgddS6Lp0S6g,0,0,0 +fMcI0fOLmUwSvgVCmGA9Rg,2012-02-13,DygrWmhDiuxZbnXqOxnT4Q,2,"5 Stars for the delicious food & flavors. + +No stars for the tired, drab & dusty interior. Very disappointed. Needs a complete interior update overhaul and face lift. + +The food is great quality, but their portions are monumental, and rather unappetizing with the amount of food on the plate--although this could be appealing to others of a unsophisticated palette. + +Quite disappointed, but gracious that the quality of meat was outstanding.",review,eSbl3Q1HxQuZTmu5dqpn-g,1,1,1 +jGldmslgIegQNM5kvb851Q,2008-11-06,RM6sKStyROJflS4GBIVIOQ,5,"Had a family style meal and everything was delicious. Rigatoni in a cream sauce with chicken was outstanding, as was the pound cake dessert. Appetizer stuffed mushrooms were also really good. + +On the pricey side, but nice for a special occasion.",review,kAw0HygRTr8QJ56Vsc_6WQ,0,0,0 +hoDG7g0Qxqje0dP_7MqpHQ,2010-08-15,pgOrQ_YAcauscW-bWmwOlQ,2,"The place was pretty busy when my husband and I visited one night. +The decor was ok but very kitschy. +My husband and I split the pear salad although the pears were the ones out of a can. +The special that night was beef cheeks which if you are familiar and like them, they can be amazing. But I could barely find them on the plate because they were drowned in a heavy overpowering sauce. +My husband had the lasagna which was decent and I honestly had more of that then my entree. +For what we had, it was totally overpriced. I could imagine Olive Garden would be just as good.",review,pvkLLX9n2hanP9QfHex6pQ,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-09-06,YvQe-wF-QA7Db9jyOrHuKg,4,"Over Hyped ??... Yeah a little but its definitely worth checking out ! +The pizzas are freshly baked and very minimalistic but extremely tasty ! I particularly loved the ROSA - Red Onion, Rosemary, Pistachios sprinkled with just the right amount of Parmigiano Reggiano on a thin crisp crust ! + +The classy brick wall and the gorgeous brick oven give a rustic feel to the décor and you feel transported to another time.",review,M3R4oIrJaHDDHbhbzwCLrA,0,1,0 +WS1z1OAR0tRl4FsjdTGUFQ,2010-08-06,JCUxqiNAtAPmHi6DHi3I9g,3,"yet another phoenix joint w/ hip decor and a solid menu. +nice gold on brown color scheme, soaring ceilings. cute marker board to write all over at whim. +the food? some of the best glorified bar food in town, albiet pricey. sampled several top notch martinis, the smoked salmon app, good chicken burger and sweet potato fries. +place also has bocce ball which makes for a fun diversion. +my biggest complaint is the terrible acoustics. It was so loud my ears hurt and I felt that a hundred people were simulaneously shouting into a steel drum. Can we put some softies on the wall or something? +But then, again, it's a bar.",review,v3IrMAMxz9ScN0dtU_eS8A,0,0,0 +T4ox3wUzFjWvyrjaTRoBbA,2009-01-30,6LbKHp4BGuS3JiYTwFh9NQ,4,"This place is absolutely delicious but you'll want to stay away on Friday and Saturday nights. It gets packed and the service declines. My boyfriend and I went a couple of weeks ago and if the food wasn't so delicious, the service would have kept us from returning. Kind of like the soup nazi on Seinfeld; you'll do whatever it takes to get what you want!",review,wt6585C8WtScTX-bqq84hw,1,1,1 +pQAIM21Yw4eNdbha2Rxkcg,2009-03-27,WrdNidNnDuKRVOQUzPBRSw,4,"I know that all Melting Pot locations gets mixed reviews... usually the price turns people off. It is a little pricey, but it's all about the experience. Also, since it's a time-consuming experience, one tends to be there about twice as long as at a regular restaurant. So I don't really mind the price for a once in a while kind of thing. My hubbie and I have been 8-10 times... twice at the Scottsdale location. + +The husband and I always order the ""Big Night Out,"" generally the ""Lobster Indulgence."" (We figure if we're going to spend a pretty penny, we might as well really make it worthwhile.) Maybe since we always do the lobster thing, the price doesn't bother me as much. + +Don't remember the specific themes the times we went to Scottsdale, but the ""Big Night Out"" meals go like this: Cheese Fondue (you can choose the special or any from the regular menu) with assorted dippers, Salad Course (again, the special or off the menu), Main Course (if you get the ""Lobster Indulgence,"" it includes twin lobster tails, usually a couple kinds of beef (e.g., filet and sirloin), shrimp, chicken, salmon, and/or pork, often a stuffed pasta, and lost of vegetables) with assorted sauces, and the best part... Chocolate Fondue with fresh fruit, brownies, marshmallows, Rice Krispies Treats, etc. Yummy! + +I must say that your experience also really depends on your server. If you get a bogus one, you might not have a great time. We've had good experiences for the most part, some absolutely awesome experiences. + +Also, check out each location's web site prior to making reservations. They sometimes offer really great deals or promos, especially on weekdays. This info might be helpful to those who feel like the regular price is over the top.",review,rK3e_J8VcBtrvo75aOCpSQ,3,4,0 +NAkRjPhS4yCD5trp0dY-bQ,2008-05-14,mzFQpwhn_AC6-fdVgVOhBA,3,"I went out here tonight with a couple of clients. I had heard some good things about it, and they were from back East, so I thought to myself, ""why not?"" I must admit I was not that impressed with it all. + +We came here for dinner. Started out with some apps, and ordered the Monster Platter. Complete with ""sliders"" on it that rivaled a Jumbo Jack for shear size, this could easily feed a family of four for a week. Thank God there were 10 of us. Most everyone ordered steak for dinner, and most were impressed. I, on the other hand, was not that impressed. All I could taste on my steak was butter, not meat. I almost had to reach for the A1 Sauce, a cardinal sin in my mind with steak, just to make it edible. + +Since we all had a round of golf in the morning, none of us opted for the giant 3-liter beer option they had. But the booze selection, including wine, was quite impressive. Service all around was very attentive. And for those of you that love your barely-18 and barely-100lbs servers that Scottsdale is serving up on a daily basis, this is a great place for you. + +There were a few people in our group that opted for the bull ride, a nice little touch that gave this place that little something extra to set it apart from the other Old Town places. All things considered, I don't think I'd head back here. I can get a better steak at a Chili's-type place, and the atmosphere (comprised mainly of your younger Scottsdale-types) didn't really do all that much for me. + +A couple other things of note: their happy hour only goes until 6:30 (boo!!) but they do have a daily brunch that, strictly reading off the menu, did not look half bad. I may have to check that out some day.",review,-3HkgwyxVPf49MXM4dT8Tw,0,1,0 +6Kon3cR5ZEm5rmYKlpcfcw,2010-03-10,Ra86Qp1ssr2G6J7zZw_TfQ,4,"If you're a local, check out their spa's slow day specials (most often a Tuesday, Wednesday or Thursday). It's a nice little spa in a great location and the staff was pretty good too!. It doesn't hurt that Trader Vic's is so close by and has tropical happy hour specials for afterwards :)!. Great Staycation location! +Here's a sample of the newsletter spa specials: +http://www.returnity.biz/images/email/VHO/wVHO_020210.html",review,snBHXvENp0MNfw4wuEbtIg,0,1,0 +KoIRdcIfh3XWxiCeV1BDmA,2011-12-18,fmvEirpy6Xi8N5OdhPZt7Q,4,"When I found out I was going to Scottsdale for a vacation, I signed up for Groupon and was excited to score a tequila tasting at Cien Agaves! Well, I didn't read the fine print and it was only for the last Thursday of every month. Not a problem - the owner/manager was great when I told him I had kind of skimmed over the fine print, and he still honored the group on. We had delicious tacos, yummy margaritas and left thinking how great people in AZ are :)",review,v9YeR-dpv2FPyUn7Hg248w,2,2,0 +NCM64MnD1NCtBfJzgBIZKQ,2012-03-19,l8i0L2v4UzUQyZ_p8jLkQQ,4,"More expensive than some of the other nearby locations ($5 military lot next door) The shuttle was nice and quick shuttle despite odd hours of the night. Nice enough, they also accepted competitor coupons when the lot with the deal was full. The boyfriend and I had a great experience and prompt service at all hours of the night. It also seems more secure. Loved it!",review,nYfpquFWxQC342RenTI3rA,0,0,0 +YL_EiYALmGUd1lm5HZgL3w,2012-04-16,vM0ahTjVJo6DdjFs9AvgKA,3,"The staff is friendly and will give you a smile. The store is clean. The plaza is very nice and a good place to shop for all kinds of things. That said, the food is typical of a chain style and reflects my 3 rating. I'm sure many people will enjoy the food. I just prefer a Pollo Asado Burrito from one of the local ""mom & pop"" shops. Overall, it's OK.",review,Zof_qo5X5tRQXvkuuR1RzA,0,1,0 +Aicnm12Zped8nQFXyRRFvw,2008-02-21,IYke8Lz-ukiHEox0Q201jg,4,"I love eating at Byblos. The food there is great! I love their hummus w/meat & pine and their pita bread has always tasted pretty good to me. The tomato soup is awesome and the rest of their dishes are SO good. The one waiter everyone is talking about? I've never thought he was rude, he's just quiet and old. Gosh, give him a break! I don't know how most of these reviewers have never run into the owner. He's awesome! Half the time he's the one who will wait on you and he's super nice and friendly. He's always willing to make recommendations. Sure it's not in some upscale neighborhood, but the food is good.",review,OvGwAmRJnUWBx9cy_bn5Qw,0,1,1 +sNuyncpQdcvfEpfZS-3Yew,2008-12-20,Fy_l9paD0RBj-bhidCcfUg,4,"Tott's is this amazing little neighborhood Asian restaurant that has quickly become a favorite of mine! +The simple yet effective decor is vibrant without being tacky. The service is very friendly and helpful. They are always smiling and it actually seems sincere! +This is one of those places where you order your food from a cashier and they give you a number and you choose your seat from one of the 16 or so tables. There is a nice little patio as well. There are a couple of tasks you must do before they bring out your order. +1. Fill your cup with your beverege of choice (Soft drinks and Tea only- no alcohol, hence only 4 stars). Do get a beverege as the food can be very hot if you like that way-AND I DO! And because I am a fool thinking it will never be hot enough, I grab a jar of the hot mustard and one of the Hot Chili paste to bring to my table. You can, of course, choose chopsticks or a fork. I usually start with the good intentions and select the chopsticks. I pretend I know exactly what I am doing. But these never work as I cannot get enough food into my mouth quick enough so I end up with at least 1 fork. +I am impressed how quickly they bring your order to your table. I barely have time to do all of the above and get back to my table and they are bringing out a gorgeous plate of steaming Hot Korean with black bean sauce and tofu, or the yellow curry ""panang"" also with tofu. You can aslo get chicken, beef or fish. The meats are hand trimmed and do not have that grisle part that is such a turn off at other places. The vegetable are as bright and fresh as the smiles on the employees' faces. +I must also confess my longing for PF Chang's or Pei wei has certainly diminished after discovering Tott's. +Tott's even has excellent Won Ton soup. Now if they could only get a beer and wine license.",review,VA5zvXwaaj81_tjiQCH2mg,1,1,1 +n-Q7d10K0h6PyNewmiHLyg,2009-04-20,Q-rFjI37_DYuyZc_rFuCng,3,"Let's start with an SAT-type question: + +Scottsdale Stadium :: AT&T Park is like _______ :: Oakland Coliseum. + +a) Oakland A's +b) Rickey Henderson +c) Phoenix Municipal Stadium +d) Yankee Stadium + +If you answered C, you, my friend are correct. And you're pretty smart, too. Give yourself a pat on the back. + +Much like Oakland Coliseum, Phoenix Muni won't amaze you with state-of-the-art facilities, breathtaking views or spectacular nightlife nearby. What you get here is a functional, simple, 40-year-old ballpark that serves its purpose. The crowds here are much smaller than you would encounter at other parks, but it fits 6000-7000 people comfortably. Unless you are in the premium infield seats, you will be sitting on the aluminum benches or on the grassy knoll. Pick your poison, so to speak. + +We always get the infield seats, because you can sit 12 rows behind home plate for under $20. I don't care how bad the economy is, it's a steal! Even if you sit directly behind home plate, you will most likely struggle to see the tiny outdated scoreboard screen in the centerfield. + +There are no fancy food choices at Phoenix Muni. If you're not intimidated by enormous wieners, a footlong hot dog might be for you. Believe me when I say, you will not be able to eat more than two, no matter how much you love hot dogs. I am also a fan of the little dining area by the left field foul pole. You can sit there at a table with a giant umbrella, hide from the sun and sip your beverage of choice. If you're lucky, you can even watch the game from some of those seats. + +The people who work here, from ushers to concession stand clerks, are incredibly nice. They really do want to make sure you have a great time at the game, and it shows. + +Parking here is very easy. For $5, you can park in the lot right across the street. The lot rarely gets full, and you can always almost find a spot. I hear there are ways to find free parking if you are willing to walk a little more, but at $5, why would you? It's important to know, though, that the walk from the lot ""across the street"" from the ballpark will take you about 7 minutes. There is no crosswalk on the street, and you have to use that ridiculous pedestrian bridge they erected with the sole purpose of annoying most baseball fans. + +So, +1 star for great seats, +1 star for cheap parking, -1 star for horrible scoreboard, -1 star for the pedestrian bridge. A-OK, 3 stars.",review,ca_Q9OGfyjwOnfvXqmhdIg,2,2,2 +z7W0sUbrVi2k6R2BR5jtzw,2012-01-19,SMTjk42KnUfJn1vLh8Y_eA,1,Prices are often way too high!,review,XqDh0QDMoMAaBvJcakze5A,0,0,1 +RLjA7TBXJfyqDfPuVCcrtQ,2009-12-11,YMNY-K0D1DCe9pmaHRoiKQ,4,"At first I was hesitant about trying Prado out because of some of the reviews. I got the impression that I may in for a hit-or-miss experience. And it was my fear that I'd catch one of their ""miss"" days. I was pleasantly surprised when I had an absolutely sublime meal! + +Since the menu changes nightly, I won't bore you with details of the meal. I'm a huge fan of restaurants using local, organic produce &/or meats....and I'm a bigger fan of Prado b/c of this! + +The resort and the restaurant is extremely sexy! You really do feel as if you've traveled to Spain. I encourage people to take advantage of the local gem!! + +Bon Appetite!",review,4IxLt4QvCsJEdaNvH9QApw,2,3,2 +UWrB5H3G-hhiHMy3iKV2ew,2010-04-22,NFW7WImcuAzYGO0P0BUmKA,5,"Simply an AWESOME tuna sandwich! Great service, and the atmosphere was really cool. Just wondering what the difference is between pickles and cucumbers in brine. (50 cents, apparently)",review,mu6AXWXmUiE2FVw_pYxHdA,0,1,1 +7lbvsGKzhjuX3oJtaXJvOg,2012-08-13,Nr-6xqBN9XqBJXnCToYYKA,1,"I brought my sweet sister in law shopping at this Forever 21 location. She had a bag full of goodies (several hundreds of dollars worth) from H&M. She stopped at Forever 21 and sat her bag on the ground right beside her while she tried on a pair of shoes. Her H&M bag was stolen during that brief moment that the bag was not in her arms.....and while this certainly was not the responsibility of Forever 21....we were so disappointed in the way the Forever 21 staff reacted. They did not call security, or the police, or even offer any condolences. They just shrugged their shoulders. My sister in law did love some of the fashions at Forever 21....but the store was such a mess. There were clothes all over the floor under each and every rack. There were way too few staff members working, and many who were working were ""socializing"" with one another instead of helping customers or maintaining the store inventory in a decent fashion. The only employees that were on task were: 1 at the checkout, and 1 at the fitting rooms - there was a band of 5 girls dressing one mannequin while the store was amidst in chaos (including someone stealing bags from other customers)..... So - if you choose to shop at this store - hold on to your bags :)",review,2UPPp-p0Yk7l56o75ZCIBg,0,0,17 +UGogpZhk0pkBNdvigzTvng,2010-01-02,LtAsU-F4DE0dhUWTL51YpQ,4,"I love Zoya! She does a phenomenal pedicure and eyebrow wax. I never have to wait. It is very professional there. The decor is beautiful and I always relax when I'm there. Zoya told me today that she does Swedish massages at their sister salon which is right across the way in the same parking lot. They have a hair salon in the other location as well. + +I have been going there for a while for the Happy Feet pedicure. Best exfoliation, great neck massage and paraffin wax for the feet. + +Ahhhhh...my feet are so happy right now!",review,Ft-i74HyCpMDi3R7EDAUWA,0,1,0 +XWvht_1ZLdK7EHJ3jo4q0g,2010-12-15,9b55G_rAfvQIKc-MaOOLVQ,4,"Made our way here last night for my Birthday Dinner. THANK GOD. I have been looking for a restaurant like this since I left Chicago 5 years ago. The style was perfect, the prices were not exorbitant, the food was delicious, the service was tremendous. + +We had a table at 7, and even though we Happy Hour had passed, they still let us order off of the happy hour menu, so we had four courses for $30 a piece. We started with Spinach Artichoke DIp, each had a salad (I had the Bacon/Bleu Cheese/Walnut - YUM), then I had the Balsamic Ribeye... It was so delicious. + +One complaint, half of my steak was medium, a quarter was rare, and the other quarter was practically blue, but it still tasted great. Oh - and the carrots were a little too sweet for me... They tasted like sweet potatoes.... + +Anyway... For dessert we had the bread pudding which was the best damned bread pudding I have ever had. Add in the drinks (which were tasty) and our bill was still nothing too crazy. + +Our server was just the right combination of hands off and hands on, and i dug her big time. We ended up having a long leisurely meal, were there from 7-9, but it didn't feel like we were there a long time. It was just a nice relaxing meal... + +Loved it - best restaurant experience I've had since I moved here three years ago. Can't wait to go back.",review,_j4PdUTEw7N3NXQM628ZKA,2,2,0 +jvvh4Q00Hq2XyIcfmAAT2A,2011-09-04,iL4a5Bzhv0FnpDLDP0Agbg,3,"I went to Five Guys for the first time (North Scottsdale) to see what all the hubbub was and why everyone was comparing it to In 'N Out burger - a place I love and have been eating at for over 25 years (CA and AZ). + +Pros: wider assortment of toppings and menu items, including the veggie sandwich (not a soy pattie - just veggies and cheese, if you want; extra menu items like jalapeños and hot sauce, grilled mushrooms, etc.; Cajun styled french fries (their small size is enormous). + +Cons: more expensive than In 'N Out. + +Neutral: Thick burgers are more like your home grilled burgers, all well done and crispy on the edges - not like In ""N Out's thinner patties. + +I don't know why people compare the two places since the prices are not similar. Five Guys is good, but should be compared more to places like Fat Burger, regarding size and price of burger. + +I still prefer In ""N Out for taste and value.",review,-GuI1BlfyPGhvgYXA4LhSA,0,2,0 +GpK9MeUjEd7rwhejG2ykww,2011-10-02,rl1D3Hsc4jwsEauUmAv-jA,2,"So you already know it's a 50's diner with outdoor seating, and we're in the time of year now where sitting outside late night is nice especially after the club. I've come here a lot with friends late night, and the food was always scrumptious and service excellent, but after last night I MUST PROTEST. + +I ordered the Bourbon BBQ Wings, a promising title appealing to my tastes exactly. They arrive with a generous bowl of ranch and a few stalks of celery. I know most people don't eat the celery, maybe that's why, so I guess carrots were out of the question. + +THE WINGS WERE FROM BABY CHICKENS!!! +I was shocked. some of them (both sections) were not 1.5 inches long, I swear. The sauce was yummy BUT I'M ANGRY ABOUT THE WING SIZE!!!! + +Come on 5& Diner, you're better than Long Wong's, ACT LIKE IT and serve up goodness on all fronts! +(See my scathing review on them as well.) I want so much to write a glowing review here but NO. + +So my friend got the Southwestern eggrolls. They were sliced open diagonally and nicely presented on the plate. I tried one, and eventually my friend let me have the last 2. They were hard and irritating to eat, and tasted fine for tourists as it reminded me of Rubio's or Arriba's standard. I think Jack In The Box could've put out a better product overall. + +Another friend got the chicken quesedilla. +Although I didn't taste it, presentation looked nice with the pico and guac on the side. The quesedillas were a good size and thickness. My friend took half of it home. + +I can recommend the burgers, onion rings, and breakfasts. + +Prices went up a couple of years ago to an average $9.49 for a burger plate, and slightly less for appetizers and other things. Service is always good, but don't go if you're in a hurry and the place is packed. + +BOTTOM LINE.... choose wisely. Last night I chose.... POORLY.",review,zGz5NI4sscO4_6YYH-qVtA,0,0,0 +VGvieeQwktJPxLMq6I3tkg,2009-06-16,9mBDDkxKpuZ-bD3TmbaV5A,4,"This could possibly be 5 stars. Driving by you would never know this restaurant serves excellent Italian food. It is rather small and has a very different decor from other Scottsdale restaurants. I went on a Friday night and there were not many people there and I have walked by on other weekend nights and it was the same result. + +Regardless of that the food was outstanding. I ordered a special, lobster risotto and it was superb. There are many other things on the menu which I would like to try as well. It is rather expensive, but well worth it. The service was also very quick, and it should be when there are not many people dining.",review,OpjFNuQiyqh9Sms5Ex8Wxg,1,2,0 +9Y3aQAVITkEJYe5vLZr13w,2010-05-28,7NHcsID9ZTebvaxm5NumoA,2,"I recently went to The Breakfast Club for the first time with a good friend who I hadn't seen in awhile. It was a weekday and so, while it was still busy, we didn't have to wait to be seated. The food was good, but slightly over-priced. My biggest problem with the restaurant - the service. They were slow to deliver our drinks and food, yet once our food came, they were swarming around like bees every five minutes to take our plates so we could get out of there. I felt like they didn't care at all for the fact that I was having a nice morning with a good friend but instead wanted us to pay and leave. After we had been there for just over an hour and fifteen minutes, out waitress actually told us to leave the table and finish our conversation outside so they could seat other customers. We were mortified. I have NEVER been asked to leave a restaurant in my life. Needless to say, they didn't win a loyal customer with me.",review,X0V2GK2cr2lDzttQKXD4JQ,0,0,0 +bDR6kF5Aw9guBkaahSAchw,2012-10-04,ih2Jw9TX1VRjnwDL21HbqQ,5,"Recently was invited to this restaurant & found out that they have children's plates for adults or any age. + +It was SUPER CHEAP & it included a drink with refills like tea or soda etc. + +What a deal! + +Under 5. bucks including the drink. + +I will definitely be going back to any Cracker Barrel who has this deal because it is cheaper than fast food etc. or just about anywhere.",review,ywFAzVgeC_taqNIY-b-awA,0,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2011-02-11,l7dGGo2VxzLS0jQ9LCBlEQ,5,"Oregano's is my FAVORITE restaurant in all of Tempe! The food is delicious - I've never been disappointed by a single appetizer, entrée or desert! And since they've recently add Blue Moon beer on draft I could stay here on the patio all day. Bonus: The wait staff is incredibly fun and friendly. Just a really great place to dine!",review,Ks5lPe_E14_-GheoA1A3UQ,0,0,0 +MAfc2V_EVtyR9rMxxEAPLg,2011-10-10,YhkWc4Fdbb7zTyCKU2SOhA,4,"So the other day, I was in the mood for sushi at my usual spot (Sakana). + +Unfortunately, they were closed for lunch, so the next choice was some pasta at Caffe Boa next door. Also closed for lunch. Double Shit!! + +Pasta Pomodoro? Their tortellini alfredo rocks!! Then I find out all of their AZ locations closed. Triple shit!! + +Stomach is growling and quickly getting pissed off. Okay, Haji Baba then. + +Bessie gets me there in record time but alas, the place was PACKED, even for a 2pm lunch. What to do? + +Wait...there's that little Vietnamese joint a few doors down, that I've always wanted to check out but just never did. + +Well, I guess they say better late than never for a reason. I popped in, grabbed a seat and was quickly served up one of my favorite Vietnamese dishes. Deelish is all I can say. Now I've got a new little spot to add to my local list of favorites.",review,sKXvBM91tMQZTS4bDsyZcg,0,0,4 +52QtjHlHoa7V611bOvv1aw,2009-05-15,wsL6xjTh8VTpDH1e85pwfw,2,"Just not a great Sushi Roku location. The service was okay and the ambience was too - but the food wasn't fabulous and the sushi chef knew very little of the food he was serving. When sitting at the sushi bar in a 'fine dining' japanese restaurant you kind of expect the chefs to be spot on and knowlegable about the food. Not the case here. If you want to spend this kind of money, go to Roka Akur - it's fantastic and worth every penny.",review,Eo0o6m0gKBMgmooN_ZeFGw,0,0,0 +hkKvb6oXxn8ygoP5fFln1g,2011-03-20,VkAofxxE0DgvQNZlKF3gEQ,5,I love this place. Every time I visit I come here. I did miss out of Bucket of Crab night :(,review,zs9EphhkXylrxHCzxhC_ag,0,1,0 +kVHEdvgO-UyxfXC-2f7KuQ,2011-08-26,qA2FQ0aeKqZSnN2fKwHbcA,4,"I really like this place! Plenty of room, very organized. And is willing to help you out. Price is very acceptable @ $7.00 a day. They have ear plugs, targets and beverages to purchase at a reasonable price. If it's your first time there is a 10 min video they want you to watch. It's diffidently a great place to go, just have to watch out for dumb A$$ like myself. I tend to have a major brain freeze. But the workers there are nice enough to let me know what I did wrong in a polite way. Give me time! I promise I won't shoot anyone! I'll get better.",review,UCQNrwN4_hHHTWYa8cqe_Q,0,0,0 +a12JKFiqBVyaUfTWNaAzQQ,2012-12-21,yo4xovBRZsqd6pl8oMQ9Yg,4,"I'm huge fan of this place. Its tough for me and my wife to Love this place due to the Gilty feeling of bad eating we get after visiting this establishment. The food is Outstanding and I've liked everything except the Catfish fried. My wife enjoys the catfish, but I think its lacking flavor, however they fry it to a cripy golden brown crust. I could just eat the crust and forget the fish. + +We've been twice now and I'm sad to say that we pretty much ordered the same things twice. The garlic parmesan wings and honey habenero wings are our favorites (of course we haven't tried any others, so take it with a grain of salt) catfish, corn nuggets, fried okra, french fries, and coleslaw. And to finish it all off...the best Biscuits of all time, if you consider a biscuit a French dougnut.(beignet) a biscuit. Seriously the best thing ever, but you feel pretty guilty afterwards. + +My recommendation is to hit the gym prior to going so you don't feel so guilty! + +But what ever you do, GO......",review,r25GXBdaCjcBld3PrfDi5Q,0,0,0 +OFBJtqWGSx6n6CchtVmoRw,2011-04-09,MmaNK7CTSnO54uVi6te05A,5,Talk about one of the best burgers in town...in fact i think houstons and this place have the best burgers in phoenix!!!! I took one bite and i was in heaven...it was a whole new take on a burger but not too crazy!! I love the fries especially when you mix the sweet potato fries with the regular ones OMG!!! I like to dip them in ranch but you can select what you want to.dip them in...i have to thank.my sister for this place she introduced me!!! Its a great place to.go for lunch and dinner but it.is not very big so you may have to wait but its worth it!!! Its a fun place do not miss it...,review,X_kPh3nt0AJPNPHye2rTlA,1,1,0 +J3INwTy4KZJ8aJwVoOqAJA,2012-07-17,hu1izY3YrDlr5C-VI08EmQ,4,"Hungry and footsore near the end of a marathon shopping trip for the 13 year old, we decided to pause here for a bit of rest and refreshment, despite the low yelp ratings. + +We had a decent experience here. Maybe they have made some improvements recently? + +I really enjoyed the little bit of complimentary bean dip that I was able to snatch between the giant scoops that my oldest son kept shoveling into his mouth. The salsa had a tasty kick to it, and the chips were extra large, thin, and crispy. + +The eldest ordered the poco chimis off of the appetizer menu. Much as he liked them, he was full with 2 chimis left. My husband (who received the leftovers) found the filling a bit dry, and the jalapeno cream cheese too bland to deserve the 'jalapeno' in its name. + +My green corn tamales were a tad sweet for my taste, reminiscent of El Torito sweet corn cake. No problem though, since the youngest gobbled up half! + +Ambiance was comfortable and service was polite and efficient. My only complaint is that they never refilled the chip bowl even though it ran empty before our orders came out. + +3.5 stars",review,2EJbfAHmwxm_G6800s1nLw,0,0,0 +_RBUU1y4yJrK0SPAd8z0-w,2010-12-24,CB8dEDNiVqsTsfBIXYDAlQ,4,"Great lunch buffet, for the price, you get a ton of different types of food to try. The naan is great and piping hot. I will say that their chicken tikki masala is not my favorite but overall for the ambiance, this place is super pretty and delicious!",review,vhxFLqRok6r-D_aQz0s-JQ,0,0,0 +IdnYOlL9aDfMu_S2kcaUkQ,2012-10-20,SnQMstxml4y7VBW8P0vyMg,3,We finally visited the new restaurant 3 1/2 years after the Richardson's fire. It is quite amazing how similar the new Richardson's looks and feels like the former landmark restaurant. Their service is great. We ordered a pizza and salad. I should have known better to order a pizza from a New Mexico style restaurant... roasted tomato sauce with New Mexico sausage and mozzarella. It brought back memories of conversations with my Papa debating whether Prego or Ragu was the better canned tomato sauce.,review,6F-5GaueiVKkRg7LYTCfxQ,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2010-08-11,QG86VEqtP2eBN_UWc-LBjQ,4,"My sister took me here last week its crazy that I haven't been yet right? This is her regular go to place. Not much I can say after so many reviews here already. The patio looked very nice I bet its the place to be when its cooler. It was kind of empty in here but it was late afternoon. My sis ordered us some Drunken Italian Sodas they were made super strong though usually this would not detour me however I had my child with me and had to drive all the way back home after. Basically it tasted like straight vodka in a giant glass it was a bit much for me mid day and after adding Sprite to it which I stole from my daughter I still couldn't drink it without feeling like I'd be a drunken Mexican after. I didn't understand this drink maybe someone can explain it to me? My sis told me their Sangria was good but I had no idea they made Caipirinha's next time that's what I get no question. + The food: We had the garlic lemon hummus it was really good the ingredients separately didn't have much taste to them but together it was really nice the pita bread was excellent. The kid couldn't stop eating the hummus she got so full she barely touched her mac n cheese so we brought that home along w all the leftover hummus. Now on to the Tejano burger we decided to split. OMG it was so delicous I couldn't put it down and we both regretted having split it w each other. Extra star just for that burger alone you best try it if you haven't son!!!",review,V0y4fqp-4pSRfsz0FmsjPA,6,6,3 +SAjXnxuyScAsahI8p4D-UA,2012-01-11,rrac4n5rVenpMxZJYQJMOw,5,"Dr Brodkin is one of the greatest doctor out there. She was voted two years in a row for arizona foothill top doctor and it shows!!! She is caring, and overall great doctor. She moved her office last year and wow did she change for the best. The staff is great her new nurses i love love love....i recommend Dr Brodkin to anyone who need a GYN....",review,wwykkLVCFm1tlNZdlEJQhA,0,1,0 +-Ogv7rpcgUHkFaSy3vD8Sw,2012-06-23,mdKlE62dlSTZZjo1Tw4KsQ,4,"Good buffet, albeit it's a tad on the more expensive side in my opinion. We came here for dinner on a Sunday night for their ""Super Buffet"" which was $15.99 per person. + +This buffet offers a large selection of food...hot entrees, made to order sushi, Mongolian BBQ, soup, fresh fruit and salad, and dessert. I liked the fried rice, chow mein, broccoli beef, string beans, and this dish with tofu. The egg drop soup was really good and the hot and sour soup was decent. + +For a Chinese buffet, they offered some quality desserts since some of their offerings probably came from Costco like the red velvet cake and cream puffs. + +Service was friendly and polite. Our waitress did a great job with clearing our plates and offering to refill our hot tea. (Hot tea was $1.60 per person, by the way.) + +The restaurant is spacious and appeared to be well maintained. Parking is easy since there's plenty of spaces in the lot out front.",review,IqdFvfcjqZXuuomsyGyTsw,1,1,0 +LjjcWJtE9RKdUMd25EsL5A,2012-09-28,a_3K4EHta-2rsTk9srS3GA,5,"After shopping all over town and visiting every single shop in the phx area I stumbled into this little gem. Store was clean and only stocked with desirable items and lacked the items that just arent used by the majority, but I am sure could be ordered if needed. This planning I found easy to make my purchases in a quicker manner since I dont always have the time to sort through typical store junk, there just isnt any here! Only quality sought after items. Management is second to none and the business is family owned and operated. When you walk in your greeted and after a few visits by name even. This is a huge plus and isnt found anywhere else in town that I have seen. There is a prefered customer program and most livestock is local grown and special items are taken in a wish list and you can get called once available. After my month long search for the perfect store to set up my custom order that could also fulfill my stocking needs I couldnt get my order in fast enough for a complete custom setup installed and delivered. Pricing was fantastic and cheaper than anywhere in town and the ability to come in anytime and get advice no matter what the need is makes this shop feel like home when you walk in. If your looking for a one stop shop that is friendly, knowledgeable, and isnt out to empty your wallet in a bad way this is your place. Thanks again Reef Monsters for the help in sorting out what was an overwhelming amount of information into a custom tailoring to what I could handle and needed to continue in this hobby.",review,4Zk_SPnvJ8Ybdjwo4BOJ5A,0,0,1 +rDvz5jX65gpfONFu7er9Tw,2010-04-07,OmzL9YJufS2qzMcxd98vrA,4,"We were staying at a hotel nearby and found the reviews for this spot. Boy are we glad that we did! We are constantly on the hunt for great tacos in any city, this was definitely one for our list. +We ate here for dinner both nights we were in town. The majority of the meals ordered were the 3 taco plates. One carne asada, marinated pork, and carnitas, served with yummy rice and beans- the tortillas were very good too. This is definitely the plate to get here. I think that the carne asada ones were the best. +Normally we order all of our food medium spiced, but beware of the red hot sauce that they put on the tacos. My daughter somehow got an extra dose on her tacos and was having a hard time getting through the burn. This somehow justified the obscene amount of Fresca's ordered. :) If you are remotely sensitive to heat, order your sauce on the side.",review,Obtx8kRJAwV8AlmNH3x0Rw,0,2,0 +EzAen1_nwVuiWPKBj9HUpQ,2010-11-05,6oFiNU-pzlmkCtbTlkazFw,2,"Nothing spectacular about the food...service was good and the fruity adult beverages/margaritas were tasty. Somehow, between 2 people, we ended up spending close to $50. We thought the waitress was being friendly, but after ordering drinks, it seemed like all she wanted to do was sell us more random crap to get a bigger tip. +It was a nice change to see hockey on the big screen...",review,5j7qmDZTAetaH0yXFnAFyw,1,0,0 +0K634ehk41ZRc4kj3NTAEQ,2011-07-10,dcW4NqwQR-YyfLHIf2H3EA,5,"I absolutely love Chompies! It's the closest thing to a New York style deli that I have found in Phoenix. They have a very large and extensive menu and everything I've ordered has been really good. + +They also have an amazing bakery that offers a very large assortment of tasty treats such as black and white cookies, red velvet cake, enormous éclairs, napoleons, and New York style cheese cake. + +I'd say that my favorite thing on the menu is the pastrami sandwich, although I recently tried the Jewish Sliders after seeing them on Man vs. Food. The sliders were really good, unlike any slider I have ever had. The challah bread and potato pancake gave these sliders a very unique flavor, very tasty. I also tried the Western Sliders and those are good as well. + +Although I live closer to their new location in Chandler, I still go to the Tempe location because of the hot ASU waitresses. + +Chompies is the best!",review,o3FDn0YCRJpGHMPrpuUUpg,0,2,0 +KTF-E3NfkJy2wiwcgOPyVQ,2008-03-27,GVYSUw4R2oPVyYF05AF69A,5,"This is the best Asian restaurant in town! Previously Shanghai Palace, this out of the way restaurant serves up some of the best curry and pad Thai, that I have ever tasted in my life! The Panang Curry is so savory and aromatic, literally one of the best things I have ever had. I honestly crave this dish about twice a week. +Also any thing on the menu can be made vegetarian this is a huge bonus for all veggie's around town! + The Chef-owner Tottie Kaya, is always very hospitable. She walks around to each table making sure everything is up to standard. I have never once had a bad experience at this delicious eatery. So if you love Asian cuisine, you must dine at Tottie's!",review,9tVLD8PjH7Wwn_EAmCHzWA,3,3,0 +3g2ofV7mhEoPyfF7vFMObA,2010-05-14,3uErFjbijWBFL9xGb__m5w,3,"Mulligan's is that place in Scottsdale you don't think of going to when you're in the mood for dancing, which is mostly why I go out in Scottsdale at night. But I always find myself there either before or after my dance trips. I totally dig the atmosphere at Mulligan's - it's chill, unpretentious, and never obnoxiously crowded. The prices are decent and the location is pretty centralized. The DJ isn't always the best, but when you're with good friends and good drinks, Mulligan's makes you feel at home. + +Mulligan's kind of has that dive bar feel but doesn't make you feel like you might get mugged and stabbed in the eye.",review,-eIsz3-MIQT6ueiM4MusHg,0,0,2 +VVeogjZya58oiTxK7qUjAQ,2008-12-28,VSjXQh390mZuo8ioXZpzDQ,5,"Best pizza I've had anywhere. Perfect, perfect and I mean perfect crust. Thin, chewy, smoky and sweet. Lots of interesting toppings that center around fresh, local produce. I deeply envy the regulars here.",review,uRgzENYa6NhmTZ4wfJq77w,0,1,0 +6I3FdazyK8qnqIYm11x9fQ,2012-11-12,1QNTfkvcNNJgoIU140upLA,4,"Though not the cleanest Denny's I've been to, the service is really nice so I'll keep coming back. + +The dirty that I'm referring to is in between the double-pane windows is soap film that makes it look like the windows are really dirty, but I know it really isn't on the inside of the restaurant.",review,Bmzq_nkjYqp8aWn12RJdhA,0,0,0 +cjjZt2oOkk0F152RkQMfQw,2012-12-10,TZ3FBZBd98gYEd_N8veCAw,4,"This place is a most see must do during xmas time! The staff is always friendly, drinks are reasonable and the place is always packed on the weekends. It is a must because of their un beatable holiday spirit. This place is top to bottom decked out with lights wrapping paper and anything shinny and colorful.",review,Rfay6nTu98uvRAZhVV4oVw,0,0,0 +Y293fHh5SZ0_9BZm4M6BCg,2011-11-21,vvNDkB7OOjB5eReAau1xJQ,5,"I have been going to the Matador since I was little when it was a little hole in the wall on 2nd Street. They have always had great Sonoran style Mexican food! It's always our go to place when we attend events downtown or have business to attend to. They also have the best hot sauce in town! As far as the service, the food comes out quickly and we never really have to wait long. If you're downtown and looking for great food I would highly recommend this place.",review,WcTVz9XL7iRO9CcaNVhFBA,0,0,0 +vYvT8J9uEh4Fqt7f9ILKlA,2012-06-06,RXjEzaESWb0vHXh6LobGDA,5,"What an awesome neighborhood bar. I brought my little brother here when he was in town and the service was spectacular. For entertainment they have pool, darts, games and music. Our waitress Chris was more than attentive. I will defiantly be coming back!",review,XqDh0QDMoMAaBvJcakze5A,0,1,0 +FkFjSrQx33Xn3yC-IUNjUQ,2011-02-27,Fmvb3iCwRTocFTsJeC3zyg,3,"This used to be my favorite fro-yo place. A couple of years ago, I would have given them a 4, but lately I am noticing there is no real rotation on the flavors. Always the typical cookie monster, chocolate and vanilla. My favorite is Pistachio, I haven't seen it here. I am addicted to fro-yo, but if I am going to indulge, it better be special. The location is nice, and I know I will be back if I am in the area and one of the cravings hits.",review,8p4at4zdzCpueAmSBaorZA,1,1,1 +_-9pMxBWtG_x8l4rHWBasg,2011-06-06,bDjE7tLwM2Ad21LfngonFA,3,"After hitting up the bank to sign some paper work, I wanted to stop by the Biltmore for a quick lunch and had Paradise Bakery in mind. As I was making my way through, I encountered a new facade with Southwestern designs that I have never seen before. ""Cool!"" as I exclaimed to myself. + +It looked intriguing enough that I went in to ask the hostess for a menu. After gazing around for a few minutes, the Chimichanga Entrée caught my attention! Content I was! j'adore Chimis! + +After being seated in the, rather blandish, outdoor patio area with mistifiers cooling away, I put in my order: a Chimi and an Arnold Palmer. + +Not too long, my waitress brought out some cool, fresh salsa and chips. Nothing too dazzling, quite ordinary. Chips were crispy, oily, and a tad salty. Arnold palmer seemed to lack both the sweetness and citrus. + +Now come the Chimi with a side of rice and beans. Typical Mexican, you would think right? Well, up until I took my first bite into the rice! Puzzled face I was--like an Anime character. I steadily kept taking small bites after small bites, analyzing what in the heck I was eating. Generally, it was just sweet and overpowering what I would think a Mexican rice should be. The corn bits probably only enhanced the sweetness further! The waitress confirmed honey was used but I initially guessed coconut! + +The beans with pieces of bacon was just simple and watery. At first, it seemed to have that smoky, cowboy-ish hint to it, but fell short of a decent side. + +The Chimi was quite underwhelming in its overall taste. What blanketed this deep-fried burrito were green chili (tasteless for the most part), drizzle of this sweet white cream (unsure of what), and some white cheese (unsure). The tortilla shell was crisped enough and the chicken shred lacked the savoriness that I would have expected from a true Mexican joint. + +Nothing made sense to me! Where was the Mexican? I tried very hard to find the positive in my meal. I quit half way to be honest. I hate to mention this, but I did garbled some of what I chewed back out to my plate. Overall, it missed the savoriness that would have saved the meal. I desperately wanted Tabasco sauce like it was the end of the world, but unfortunately it was too late. + +I explained my calm, analytical dining experience to my waitress and she was very understanding and was fine with removing the item from the bill. 5-stars for that. + +I really am unsure of returning as first impression is a pretty big deal to me. The happy hour menu did not look that appealing either. + +I guess the question is, how much can you expect out of Mexican-esque establishment that sits on a Fashion Park? Heed, heed, heed this review.",review,hjJPKQ1Ah91h3fVbc8GsOg,1,4,1 +nLL0sjLdZ13YdvhXKyss7A,2010-09-02,QXL1CTFKnL52fAWeHgbMiA,5,"unless you hate ice cream and friendly people you will love Papa Ed's! It's tucked away in Caitlin Court in downtown Glendale. Walking towards the front you can't help but notice all the love and care that went into the garden and flowers - the flower bed still makes me smile! Walking through the front door it's easy to forget where and when you are - the wood floors, Vintage coke machine and friendly staff all most made me forget why I was there... ICE CREAM. good selection and great ice cream.. + +Now let's talk about ice cream pie... Papa Ed's makes to order (with advance notice) ice cream pies. I love the Peanut butter cup with Oreo cookie crust. The lemon and Raspberry sorbet swirl in a graham cracker crust and my Holiday Favorite - Pumpkin Pie Ice Cream in a graham cracker crust!",review,SSUp9ZVTgaxQ2SweskkO0g,0,1,0 +5KG0A3WlC7K3DAXtrIFFjg,2009-12-31,brjKvcxggrZNmpguzUUT1w,5,"I have been shopping at Lee Lee's for over ten years. The store stocks Chinese, Malaysian, Korean, Japanese, West Indian and other foods. You can usually find what you are looking for here. + +The fish selection is vast, fresh and reasonably priced. + +They have the finest selection of noodles and yerba mate tea!!! + +Enjoy",review,7brf9WC0Gr_7bUBXEHs9FA,0,0,0 +9mNTkR5w-47cG7gGIprT4A,2011-11-27,Kj6R_McnhgnZ-jOmVsnHRA,5,"Y'know, rarely do I buy the ""extended warranty"" that most places try to peddle on you nowadays. If you buy the item from a reputable manufacturer, it should be unnecessary. + +In the case of tires, I have to make an exception. + +You can control the quality of tires you buy and put on your car, but not the quality of construction workers who don't know how to secure their nails, screws and bolts for travel on highways, streets and other local thoroughfares. They're a nefarious bunch for the most part. I'm not for extra taxes, but I'm contacting my local elected officials to institute a tax on all businesses who transport these little metal devils on the streets we drive...and stiff penalties/massive fines if they get caught dropping a load of these on the highway. + +For the second time in a year, one of my tires caught one of the little buggers -- this last one was not a nail or screw, mind you, but a BOLT. I pulled my receipts from the glove compartment, used Yelp to find the nearest Discount Tire, and called for a tow. + +The replacement certificates I got were $16 per tire (back in NC, but they're good here too), and worth every penny. The folks at this Discount Tire location were extremely nice, and had me in and out of there in about 30 minutes (with no appointment). There is even free water for customers. They were able to fix the tire instead of replacing it, which is fine (as long as it holds). + +Every Discount Tire location I've visited has been great as far as the transparency of what you're getting, the quality of customer service, and the wait. In a town of 4.3 million people and never-ending road construction, I have to recommend the free replacement warranty on your tires, no matter where you buy them. I prefer getting mine from DT.",review,aTi0NVrcPJWbN6jAsJVcAw,0,2,0 +ttLtsY1S2Angj6hvEdzwDQ,2010-08-21,aqcX3eFZTxAkm99iQKre2w,3,"Came in with high expectations. + +Wonderful surroundings, I love the New York concept here. And the area attracts a higher quality of person, which appeals to me. + +Place was packed on a Friday night of course , drinks were good, lots of attractive people, and a FABULOUS band playing. + +However, the energy/vibe in the room didn't match the band's energy. There were many 40+ something men going after early to mid 20s girls/women. That resonated throughout the place. I actually walked around the entire venue to see if I ""felt"" differently, but nope it was all over. + +Not only that but people were indifferent about dancing in groups with strangers. I was there with my wife and she doesn't really dance so I tried to casually get into a group of 3 or 4 and there was no welcoming. I was disappointed. + +So we left after maybe 30-45 minutes, probably never to return, unless people start raving about the venue, which will mean either the people changed or new people have discovered it.",review,-wwNJ0zd82_q8Gh5XXqAEw,1,0,1 +lgbKg9Nnqa4n3waMex2etg,2008-06-17,LE84qZ4F9Q4PeNiIHy0PNA,3,"So, my eye has been bothering me for months now and i decided to go there to have it checked out again. Yes - Again! I went there when it started first and had it looked at - ""Nothing wrong, here are some artificial tear drops."" Humm ok. Months later i am still in pain. So, i call and ask for appointment with another Doc. I show up there fashionably 10 min early, check in, put my ass in the chair and wait. And wait. And wait some more, for the total of 40+ min. Aaaaaalright, i had worse waits before. So i go in and some super unpleasant lady asks me some questions and leaves. Then Doc comes in and does whatever they do there. Sure enough there is some other elderly chick there in tow for some reason. Just standing there glaring. Geesh What is up with that? + +So, anyhow - 3 stars! For the long wait and super unpleasant stuff. Where they found those witches anyhow? + +""Its alright""",review,vWCksqJJfYjGGdD-yb9qGA,1,1,0 +LsHqtkdZPorIC9xOZEpz6A,2008-11-17,yKY_1a3ZKrVmPOEK7MluIQ,3,"I had lunch at Villalpando's with a group of co-workers and this place is A-OK. The food wasn't spectacular, but everyone was satisfied with it and the prices are reasonable. The restaraunt was not very busy which makes it an easy place to go to with a large group. The service was friendly and had no problem with making substitutions to the menu items. I do like that they offer chile relleno that's not breaded and fried!",review,ZqLf-FPtyNpnkYoHOH490g,0,0,0 +C0Oax-LBEFf0mmPSugymEQ,2009-06-08,IS2G_age9UkbygBMZ_sZfQ,5,"Best whole in the wall Chinese food in the west valley! I have been going here as a kid and I would go there again and again. Take out is great and I would recommend getting take out there. Now, eating there I might not suggest, taking the food home is awesome!",review,acOfAooftS7jdWlhyI0CQw,0,0,0 +Jc_DTEvDNo0jQiYjJt_BCw,2012-09-03,ApUoLY9j4GB4UCZQKCl2tA,5,"Beautiful hotel, great rooms, best views out of the resorts in the immediate area. Service is comparable to a Ritz Carlton. Very understated and clean feeling, yet still over the top luxurious.",review,tmenRuxwRehYPOYOPjO6uQ,0,1,0 +1HNEj6kcEw369RX9Vlcixw,2011-04-10,XB0bnayqaDoCuiJI6P503g,4,"My super close, local taco shop. For me, consistency is key, and Filiberto's is always a step above most other restaurants ending with ""to's"" in that regard. I'm fairly mental for their Chicken Soft Tacos on corn tortillas. Larger than a typical street taco, they are almost sized more like a mini burrito - Shredded Chicken, a red pepper sauce, lettuce, and melted cheddar = AWESOME. Tuesdays they are only $1, all day! Finally their Adobada tacos are a bargain at thrice the price. Avoid the Chili Relleno burrito, however. It may be one of the worst things to ever get passed through a drive-thru window.",review,nbofxFWHORebBHh10OgYLA,0,0,1 +V7Da92RVtaWGTL6GNkPT8A,2010-06-04,HOeqfwT3dhxxxBoWi6CETg,2,"Stayed for a few days. Was not impressed. I prefer Marriott, but was not available. The room was clean and check in was good. The pool and fitness center sucked. I had dinner in the restaurant, a hamburger. It was good. Over all downtown Phoenix sucks, nothing to do after 6PM.",review,Bq6IP1DqzchTmpePXnOfvA,0,1,0 +YqcPBiZMeCjZFlJlA28zwQ,2011-06-14,eJoSw-0dNiEkJVBSEV2inQ,4,"I'm a bit of a sandwich addict. This place has the BEST tuna in town, hands down! Cheaper than Jimmy Johns, a bit more than Subway - but the fresh, locally sourced ingredients make up for it. It gets a little packed at lunch hour, so I recommend calling or faxing your order in first. + +Try the #4 or #10! The potato salad is also amazing. I have not had a chance to make it in for breakfast, but I want to. A few times, I ended up going down the street to the second location because they ran out of bread (they are that good). The other location is a lot less busy and you might get hit on by one of the dudes there, but this one has Renee behind the register and she rocks (and also owns).",review,zNboC5RhzoDLh-CffdIMzA,1,2,1 +luCSjoNQ9q_0QIjKKOy2pQ,2012-06-21,5OS9zcOMFxDHemh5VIzIyQ,2,Beer Selection 10/10 however service is 1/10. Staff lacks product knowledge. Specials are not mentioned. Wait time is long. Staff makes you feel like they are doing you a favor by taking your order.,review,-2jevGd5B6dqAT7AwBW6lA,1,0,0 +1DjRf3AdYpdlC1Df9KD6rA,2010-02-16,cMiI02mYDrr7fWJyTEz1YA,3,"I went here due to a Restaurant.com coupon. The menu was expensive, which made me think that it was a fancy place, but it turns out that the food was expensive because it was a restaurant inside a hotel! It was inside the Sheraton and I didn't see any signs outside indicating it was there. We'd made reservations since it was a Friday night, but they really weren't necessary, as there were only two other families in the restaurant. We'd dressed up. We were the only ones. + +The restaurant area was really very modern beautiful. They'd made good use of lighting effects and there was a large, full bar wrapped along the back portion. + +We ordered the Pan-Seared Cheese (which were basically fried cheese poppers - delicious, but definitely overpriced considering only 4 of them came on a plate) as an appetizer. My date ordered the Baron's Burger (your basic burger), and I ordered the Valley of the Sun Ribs. The ribs were a little dry, but I really loved the ""Arizona croquette"" that came with them. It was fried crispy on the outside with creamy mashed potatoes on the inside. + +With the restaurant.com coupon, the meal was reasonably priced, but without it, I would have felt a little ripped off.",review,U3uT-Phb8iL2iuZpAROZlg,0,0,0 +TMZP6Kzkc-FytzgbgIC9JA,2011-02-24,Q-DQal55CVKqAvAhRZkWMQ,4,"This was my second time dining at this Benihana (not my first teppanyaki experience), and we were out for one of my bf Sarah's birthday. We had a 7:30 reservation, and were seated at around 7:40 (why they make reservations, who knows?). + +There were six of us, and another couple was seated at our table. One of my gripes with this style of cooking, is that the dining space is super tiny. With all of our drinks (one each) at the table, there was hardly any room for error. Either way, our server was super nice and took very good care of us. The meal was good, albeit expensive, which is what one should expect when going to Beniana's. Everything was cooked great though, very fresh and yummy. This is definitely a place that you come for the experience as well as the food.",review,6OWHDbEq23f24Vki_veHBA,1,0,0 +LEQUQuNEByxWNpv4eWYq1Q,2012-07-19,FM-uVqNpzz1X4N9u5X4IAQ,5,"I'm in (puppy) love with the new Wag N'Wash in Scottsdale... + +I'd been to the Phoenix location years ago and remember wishing they were closer to my home, and my wish was granted... this new location is less than a mile from where I live! + +Minnie and I popped in a few weeks back for a self-serve bath. I initially called to see if a groomer was in, but they were booked out for weeks. Doing it myself was actually not only cheaper, but it was fun... and a good bonding experience for me and Min as well. Sara helped us out and explained our options. We decided on the ultimate wash which included an extremely efficient shampoo and conditioner, brushes, towels, cologne, etc... It was easy and quick - bonus! Minnie was clean and fresh within 20 minutes or so! + +Of course we spent a tad bit more time at the store doing some shopping and I was impressed with the dog food selection, homemade treats, eco-friendly collars and leashes, etc... + +I'll definitely head back to Wag N' Wash again really soon... so psyched that they moved to my 'hood!",review,fczQCSmaWF78toLEmb0Zsw,5,6,3 +SDwYQ6eSu1htn8vHWv128g,2011-08-15,w8tpt4mg3nlYXoG7LC6cVg,5,"Great food, great Sangria, great live music, great vibe, great service EXCLAMATION MARK. Overall it was a great way to spend a Sunday afternoon.",review,8U6I0GuBasZa9rapy2H-8A,0,0,0 +-yxfBYGB6SEqszmxJxd97A,2012-07-07,jqgQg-i2lxWVKFN7ciZmjA,5,Amazing. Romantic!,review,aom-4my104ueMEqRBf3log,0,1,0 +sbsFamEj5wDxNAjUKrMcSw,2011-03-28,JnF3vwi8TB-H07oS41AKbA,4,"I have been here three times now. Each time I brought a different guest. I have become a huge fan of their Green Chili Burger (I cant remember the correct name). Sweet potato tater tots and the sweet potato french fries are great. The chicken sandwiches rock, as well. + +I like the venue. And, I have always liked the service. I keep coming back here because everyone has enjoyed it, found something on the menu they like, and I often crave that burger. Give RnR a shot!!",review,-qEO4PkRNlkmQKvpB0Im2Q,1,1,0 +sMO71vGV8wkKujOle3-v7g,2012-02-29,coQQbIXXnMPwHWto9j-XrQ,4,"This place is pretty darn good, if your into bbq. My husband ordered a burger with bacon, brisket and cheese, this was very tasty! I ordered the bbq chicken salad, room for improvement here. It was plenty big, but lacked in significant flavor. Mostly lettuce, a small amount of corn, almost nothing else to speak of. The reason I gave it four stars is because of the burger and fries that were pretty awesome. I guess it's just not a place for salads. The customer service was great as well. They were training a new girl, but she had a wonderful attitude.",review,4Q3pqQ-WR7kSBJyhQvRipw,1,0,0 +0dORc6ckZw5HezR3BuSsqw,2012-05-29,-anI_3FEizR1wNUkXRRmcg,5,"Absolute greatness!!! + +Service: friendly + +Food: TRY the faux chicken wings (I crave this) +Kung pao noodles +Vegan chilli fries + +Ambiance - A+ + +Tip: don't order the faux chicken wings Togo. Soggy experience plus they add the carrots, cucumber, celery in the box and close it. Equals the case of raw cooked veggies. + +Go next door to nami for dessert!!",review,SqE440A80WYwajn_qTM9SA,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-05-17,Jz3RU93vI7YWcfOpbe9tQw,5,"Tried the Restaurant Week special, and chose the Stetson chopped salad, mixed mushrooms with polenta, and bread pudding. The Stetson chopped was amazing. The preparation is beautiful when they bring it out, and then the taste is the perfect mix of sweet, savory, crunchy, soft once the salad is mixed up. I tried some of the testosterone salad, which was decent, and filled with a lot of well prepared beef, but it didn't quite compare to the chopped salad. + +Just as a general side note, if you choose the restaurant week menu and have the chopped salad and then the mushrooms, I think the flavor of the chopped salad is more bold than the mushrooms, so the mushrooms will taste bland to you. This happened to me as I transitioned from the salad to main dish, but when I took the mushrooms home in a to go box and ate them later, the more delicate flavor showed through and I appreciated it a lot more. + +The bread pudding was amazing. Perfectly moist, with lots of flavor, and not too sweet. + +Service was excellent (Thanks Owen!), and along with the extensive selection of wines, they also have some more unique beers such as lambic, as well as a nice selection of non alcoholic sodas (The cream soda is locally made and very tasty!)",review,uZbTb-u-GVjTa2gtQfry5g,1,1,0 +-_Ke8q969OAwEE_-U0qUjw,2008-11-01,BTI97Zws3dNdwM-u6uJxhw,4,"Some amazing friends of mine surprised me and set up a whole birthday dinner at Jug 'n Barrel! This was my first time here and was shocked at how cute the place was. Even in a strip mall it actually had a fireplace which gave it a very cozy feel. The wine list is great and not too intimidating. We had a great server who even put together a wine flight to match my sweet tooth. The only thing that knocks a star (More like 1.5 stars) off the rating is the completely average food. We had a group of about 12 and ordered several appetizers and all of us ordered entrees. I don't think any of us were blown away by our meals. + +Although I will not return for a meal, I would return for wine with friends.",review,5RxpP2Woo7CpOGUmKgDyAw,0,0,0 +AaKlegu7gmOCD4rEESF76Q,2011-01-05,hShE1Px4tDIo0B1eMG92vw,3,"I see one word come up again and again in the reviews for this place: ""Cute"". + +Well, it is cute. The lighting and furniture and concept are happy, kind and appealing in an innocent way. The patio is cute, too. + +And it's not Applebee's. Oftentimes I'll be with a group of people trying to decide where to eat and drink. Someone will say ""Applebee's at Central and Camelback"". There will be groans. Then someone will think of Maizie's across the street and the response is ""well, it's not Applebee's"". Then we go there. + +Aside from that, ummm . . . well . . . . .",review,nDBly08j5URmrHQ2JCbyiw,1,2,1 +tZXPhvufHhfejGrRp554Lg,2012-02-18,QqGwjNJQZudq6lOLF3PWHg,4,"Went here tonight with a friend and we had a wonderful experience! We decided to start with the calamari which was just ok but I am more partial to the fried versions so that could have been part of the problem it was a little on the rubbery side and wasn't packed full of flavor. The bread that came with it though was absolutely amazing, hands down one of the best breads I have ever had. It also had a mini salad with it that had a wonderful dressing so we focused more on the bread and salad as opposed to the calamari. For dinner I decided to go with the lamb and potatoes which was 3.5/5 stars. It had decent flavor but I definitely have had better. The potatoes were very delicious though :) My friend had the duck and potatoes and it wasn't gamey and fell right off the bone which was great. It had good flavor but once again I have had better. For desert I got the pear/almond pastry(tart? can't remember) and it was absolutely amazing!! Soooo delicious and had a great balance of sweetness and was the perfect size. My friend got the blueberry and lavender desert with red cake and white chocolate which was very good as well and you could taste the lavender which was delicious but overall I don't think I would have been able to eat the entire thing myself as the sweetness level was very high. + +This was a very cute restaurant and the staff was wonderful and very helpful. We had a great experience here and are looking forward to returning! I definitely recommend people try this!",review,KsQQOQ3ngmh_Yk6RmTo2ug,0,0,0 +OzX6PCBFBAwqyTCN_EACtg,2009-02-13,bHBpN81urn3DhZfDrx9L8g,4,"Cool stable up in Cave Creek where my wife and I took a sunset ride. Very casual environment with some folks who seem to like what they're doing. + +I got a horse named Sox who wanted to move forward all the time, but was easy to control. Our guide was very informative and casual at once, had fun with us and did a great job including everyone. + +That pig is humongous! Easily the biggest pig I've ever seen. I can't believe that guy can walk around. I want a pig like that.",review,qX-uubS-40UXci2goy4LGA,0,1,0 +IGrp61aiyR-PtL581brrcg,2008-06-30,bHoKy2Dt9lPdZRLJc0NGTA,3,"Side Door, West on Hayde, a small location that does it right. + If you respect the Chicago area you will recognize Vienna beef right away. + +I really enjoy the italian beef at this location, its hard to find a place that serves Italian Beef (see Defalcos Scottsdale Rd). Bianca was our server and was very helpful for my first time, at the restaurant. If you live in the area check this place out for a quick bite to eat. + +Where are all the other reviews?",review,0qIsBt4EzBDCKrIviV55Ew,2,3,0 +rZbHg4ACfN3iShdsT47WKQ,2011-10-01,hiF2ACdSzB-08TIiBls1lQ,4,"This isn't your typical bbq place, where you wear bibs and there's country music playing and bbq sauce flying everywhere - that's how we do it in Texas. At Bobby Q's, its more formal; there's a nice ambience, there's a full bar, and you eat with forks and knives. + +The Pros: +The great service +The 10% off by checking in on yelp - yay! +The complimentary cinnimon sugar donuts at the end which are HOME MADE - dayum, those things were awesome +The pineapple drink - its a real pineapple filled with a ton of alcohol but guess what? It tastes like juice...which means its dangerous. Drink at your caution. + +Cons +Their sides could be better - The mac and cheese was way too thick and unfortunately, didn't match the rave reviews. + +Another interesting fact - there's a club next door so you can get your grub and then dance it off",review,oJTwHtNlipl1iqaFV7HHZA,0,0,0 +BFZHdg2TRrgw56CyqkSryA,2011-12-01,2dZwxXz1ULr_SQ7ZDCAoRA,3,"I came here with a friend for a Groupon dinner. We got an appetizer assortment , an entree each, and a house margarita. The app plate came with mini chimichangs (yay), chicken taquitos (yay), cheese quesadilla (nay), and wings (ok). I had a decent chicken fajita, and my friend loved her steak fajitas. The drinks were a little too strong in my opinion. Overall, I would need another try at this place without the Groupon deal, and see if they can execute more flavorful food.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,0,0 +sAwxt4I4gTiL-08nyarJbg,2011-05-02,8BiDORbHvGzhrPGbVKiTEQ,2,"Get the White Chocolate but leave the Strawberries and Cream flavor, too faux-berry/chemical tasting.",review,7z6uuJ3fuaurG4dmdGidJw,2,3,2 +vARjqeIkSNsazHltujiq4Q,2009-04-27,dpycAue1wVYLP0_Js18Avg,5,"Being English and missing a lot of the things we can't get over here we were delighted to have found this place. I have not tried all of the pasties and have stuck to the traditional ones that we get at home, i.e, cheese and onion and cornish and they are very good!! I sent my husband there to buy their half baked ones so we could freeze them and have whenever we get the craving and I ended up ordering $80 worth without any regrets. Needless to say my freezer is full of pasties and I even have a couple of ones I have not tasted before, so looking forward to trying those. Have not eaten in the place either but quite frankly the food is that good I don't it would matter what it's like inside. Also just noticed this is the Mesa shop we have only bought from the newly opened on in Tempe.",review,BkdQfuEXY8k1karD0R9T1w,1,1,1 +cU6u5Plu0fD2fIvLig7z1Q,2009-02-21,_7hvqxBUo009MXtcBnE4AA,2,"Had a couple of happy hour apps here, all flavorless. Bacon wrapped scallops: bacon undercooked, scallop overcooked. Seared Ahi Tuna: flavorless. Pork sliders: Not bad, but not memorable. Service was good. Go to Tutti Santi in the same mall instead.",review,WnrKtdSeJhh_H1XM3oOXgg,0,0,0 +_tkAI5Q5XQSfgbqJzDKSDQ,2011-02-09,Ij3tYiITRFl6RyMT7lHvwQ,4,"I had my rehersal dinner here for my wedding. I had a lot of people coming in from out of town and staying at the Vally Ho so we chose this place because it was within walking distance. I must say I was hesitant because I went with my then fiance (now husband) for dinner one night just to check it out and I was not impressed with the food. However my very large group was so well accomodated, I couldn't have asked for more. I would hightly recommend getting the hors d'oeurves packages that they offer. A great price and something for everyone, they can get a plate and munch at bar tops with drinks while talking to everyone. It was like having a bar with drinks and food just for my wedding party and family. A truly great experience and I look forward to using this restaurant in the future for any event that requires a great atmosphere with great food and great service, for a large party.",review,D2NKLp8yrK-49RKslrOnpw,0,0,0 +RA2EuX04SHqmayKpLhpNvA,2011-05-07,CEwceGp5g2Qg1pMFkiMuaA,4,"Last night was my first adult play experience. I have been to the theater to see the Nutcracker when I was a kid and I saw the Lion King in New York when I was a kid as well. I remember them being fun, but that's about the extent of my memories of the theater. There happened to be a groupon for the play ""The Mystery of Irma Vep"" that my mom purchased for the four of us (mom, myself, husband, sister) to attend. + +We got there a bit early after dinner and walked around the theater looking at the art that was up around the building. There were places you could grab a drink and relax before the show. At our call time we went in and found our seats. We were up on the balcony in the fifth row pretty much right in the center. We had really good seats. The only thing about this theater that made me uncomfortable and keeps it from attaining that fifth star were first of all the seats. The backs were extremely straight and having a back condition it makes sitting up that straight difficult for long periods of time. The second thing that was a bit uncomfortable was the temperature of the theater. It was a bit warmer than I would have liked. I left coated in a film of sweat. Not pleasant. I was nervous I wasn't dressed appropriately having never been to the theater before, I went in jeans and a t-shirt, but I am glad now that I did because it would have been much more uncomfortable in one of my nice silk dresses than in jeans. + +However the show was hilarious. The part that made it for me was when one of the characters started singing the Rebecca Black ""Friday"" song. Classic! Most of the people in the theater didn't get the reference so there were only a few pockets of young people laughing when it happened. But I found it to be a nice touch and after a play full of references I didn't get, I liked that there was something for us young folk thrown in. The rest of the show was funny, and I am glad that I got to experience it. + +After coming here I am interested in becoming more active in plays and am looking into seeing a ballet soon. All of us really enjoyed this, and I was surprised my husband liked this as much as he did. A good time had by all!",review,2nXFEyQ06RfcdAXIPbxuwA,0,0,0 +0qUesn1TBPpPjW20h5Lqfg,2010-12-19,9VoFyB96a1e9kgrTSpqOXg,4,"We go to Fresh Wasabi a lot and usually it's the same thing...the service is not the fastest on the planet, but when you are there with good company you hardly notice. Their sushi is amazing and they have a perfectly priced menu. Love it!",review,jXGaZVodhyHZ_5r7GzxrUg,0,0,0 +OkRzw22eDg45do8i-1jHow,2008-09-23,cb34fx-bkonWhxJ5lBHQ9Q,4,"Ok, so I've just come to the conclusion that it's not me....... it's YOU. + +I just don't like other peoples used, worn, busted up shit. That said, I really like My Sisters Closet. I've only been in a couple of times but I know potential when I see it in the form of a $400 Louis Vuitton bag. ( I wouldn't purchase it but I liked that it was there) I did pick up a pair of designer (not sure which one, don't really care) sunglasses for $14. Sure, they are probably *gasp* ""last season's"" or whatever but I don't care. They look hot and they cover almost my entire face which is something I look for in shades. + +I will be back soon to see what other goodies I can find. That $400 Louis really made me nervous though. Who has so much dough that they can just drop a perfectly good $1200 bag at consignment??........ and are they interested in adopting or marrying me...",review,y9IKf7VckFc-fesWuDwgxg,5,4,10 +Pju_pKfvEnUYV9wMVNsacg,2009-01-02,QOKN3doQrjNcLI9PbNXegQ,5,"Even though the new place is limited on seating the food more than makes up the difference. + +I took my wife and kids for lunch. We had some pulled pork and beef brisket sandwiches, fresh made slaw, and mac and cheese made from scratch like mom used to make. The kids gobbled up the mac and cheese. The meat was definately cooked with love. + +Grady's makes their own signature sauce in several varieties. They sell bottles of it as well. I liked mixing the Hot with the Super Hot to make that pork melt that much better in my mouth. + +I also noticed they do catering. I've had events catered by some other BBQ joints before, but this food is much better quality and I think I can woo the crowds with Grady's BBQ. + +I fully recommend stopping into my new favorite barbeque place in Arizona. + +Thanks for making good food Grady. We all enjoyed it and writing this made me hungry for more.",review,k7gP5z86RNFQuYAOTDAjXg,3,2,2 +NDKkce5Au-o_OhIt5f2ZBg,2008-09-28,mbWqhyCAB9kb9VS837WPMA,2,"Jewish girls in Chinese dresses serving Japanese food. If that isn't a recipe for confusion, I don't know what is. + +Too bad, really. Because when they first opened up, they had a real Japanese chef who had a respectable career and was trying to make actual Japanese cuisine. He naturally didn't last long in this 1980s pseudo-asian theme park environment. Remember when the owner used to intermittently drop the screens down and fire up the THX system and play movie trailers from last year? The chefs couldn't even see their hands. Now that's setting your priorities! + +Happy hour and late night patio is this place's saving grace (for others, not for me). But it's so far from Japanese food/sushi as to make them guilty of false advertising. See my Stingray review for a similar take on the food experience. If you FAIL rice, you FAIL sushi.",review,5kJYTUtFUJT24dWNs6eW8w,5,5,6 +XeoeF0twXRV4mUZJgIjc8A,2010-06-30,_DYMS_Mi0ddx_XL5XOy7VA,5,"I love love love the chicken & hummus appetizer. Its served w/ sauteed spinach and pita. Although its an app, its large enough for a light meal. Most times, I get that w/ the beet salad and split it w/ a friend. Perfect. + +For those of you who avoid beets, I think you'll change your mind w/ this salad. The beets are sweet like candy. Served w/ feta, mandarin oranges, candied pecans and a very unique pear dressing, you forget you're eating healthy. I've been trying to harvest the pear vinaigrette recipe forever!!! They won't give up the secret sauce! :( + +Enjoy!",review,4IxLt4QvCsJEdaNvH9QApw,1,1,0 +qrapwnls-3IMg-iaXhkQKw,2012-11-25,j86wTgJqxuIm-6jtMnQlEw,4,Cheap and delicious! Can't beat that.,review,OhaT3fcYxY1bFdXapGzHag,0,0,0 +sbjb1qNUcqQomJvcgPuJCg,2012-11-01,dboSdSJdr0X0aPYlH3anbQ,4,"Consistently great service. Pretty standard food quality for a high end chain. Have really enjoyed this location both when busy and quiet. Cocktails aren't particularly exciting or strong, but a great wine selection makes up for it. Best way to describe the experience, 'consistent'.",review,yLUMLAo-qh8-g54wGxZClg,0,0,0 +uyuiIvQ3aWZxc1-2i_dQtQ,2009-05-13,svcg6kHypVP3hipG722Lrg,3,"Their food isn't bad, it's pretty hard to mess up gyros, rice, salad, and fries. When it comes to this type of food it really comes down to preference. For me, I didn't care for this place. I like crispy fries, their fries are soggy. I like Beef & Lamb gyros, theirs are Beef only. I like a mixed green salad with light onion, they serve a shredded romaine salad with heavy onion. Their prices are fair, portions large, and service friendly, it's just not for me. They did have a lot of sandwiches and burgers that looked good, if that's your thing.",review,waD2euOMPTnTzQ0thq3H6Q,4,5,2 +4meJyPOhuAKzywUJTmu2hw,2008-01-08,rba5dGcJrTPuaA4ScMiRIQ,5,"I have shared many an awful, hungover morning with my favorite stars from the Gay Corridor. The service can be on the scary tweaker side, but it's a good, simple breakfast that doesn't stress my dehydrated mind to find deliciousness. They've also many different healthy options, not that I've ever done more than glance at those, but it's wonderful nonetheless. It's the crown and glory of Park Central, and the only reason I still consider Park Central an actual place, as opposed to the reality of it just being a bad idea.",review,gq_G5VCDziyEV2-bzGuqzw,4,3,6 +FGePlnlKXHxBrxYMNGtdAw,2009-06-23,_q3Mrk2eZpVREwmTle635Q,2,"Five bucks for a bottle of Miller Lite says pretty much everything you need to know about this place. + +Also, if you are planning on attending a show here, plan on paying for parking. + +I have seen some terrible sound guys here, but it's hard to say if that is the fault of the Marquee - a lot of bands that would play here tour with sound people. + +The majority of the problems here are problems with venues of this size everywhere in the country - the parking, the over-priced shitty beer, the strip-search upon entry, the lack of re-entry. + +Still, if there was any competition for a venue in that part of the Valley that could handle bands that are as popular as the bands that play at the Marquee, they'd be hard-pressed to do a less-enthusiastic job of it. + +Also, the sloped floors make it easier to see a band from further away, but they also can KILL your back.",review,d2RAl63RTdfZF7kcuKcj-g,2,2,2 +bO2rQLEntQLcg675LjEqaA,2011-09-20,23OvLE4OnBydhUSaFDWP1Q,3,"The pizza here is average. It's not bad, but it's not the best pizza I've ever had, either. Was it worth $9.75 for a 12"" personal pizza? No. I paid with a Fox Restaurants gift card, so I can't complain too much about a ""free for me"" meal. I would probably not come back again if it was on my dime. Also, my pizza was a little bit burnt on the crust. It was edible, but I was surprised that they served me slightly burnt pizza at the price of $9.75. My fiance's wasn't-- in fact, they remade his entire pizza and didn't even send it out to us because it had a hole in the crust.",review,btTx6B1JDp0cAiGtJ21xsQ,0,0,0 +c7VgGP8xT25OSReok6fwcQ,2012-08-05,AnNg4KAEPHCR13369YKZgw,5,"...the customer service alone gets 5 stars, but when you factor in the semi-annual sales it is more like 6. Having been to a number of Nordstrom's in multiple cities I'd put this particular location on the same level as those in San Francisco (without the assinine traffic to contend with) and Seattle and only a notch below the best of the best in Chicago. + +Living in a city with a Nordstrom and a Nordstrom Rack is going to be a daily exercise in resisting temptation.",review,5lq4LkrviYgQ4LJNsBYHcA,2,2,0 +2FudHUhV9U54dm0S1ePuCw,2011-04-25,RtcByaIHK678WXT-2TP3nQ,4,"Good coffee and they always take care of what i need in a timely manner. Never mind the fact it is literally 20 yards from my front door, but that may play into my liking of the establishment. Either way you should check it out and enjoy some free Wifi.",review,qT17WVkJi0RvQ4nNPN6NDw,0,1,0 +MAXKQMjuOQ17EAbKoTfUwQ,2010-12-06,LV_EtbE7K_5zZ6-XU1pHkQ,1,"The absolute worse service I've encountered. My boyfriend, son and I sat at a tepan table, we were ignored for a good 15-20 minutes until my boyfriend had to ask the manager to please have someone get us something to drink. Once we had our drinks, it took another 20 minutes to order our food. By that time, another family sat at our table. My son & boyfriend ordered a meal from the tepan menu, I had sushi. Everyone on that table got their meal and I still didn't get my sushi. I asked the server to please bring it and she brought someone else's order, I had to wait another 20 minutes for my sushi. The family on our table were so upset for us as well. + +The food is excellent, the service is so poor I am disappointed. I advise anyone who comes here to sit at the sushi bar and deal with the Chefs, they are great. I talked to the owner and she was just as bad as the servers. + +I then gave it another try. I met my girlfriends there. We had dinner, spent over $200. We then moved over to the bar area and were completely forgotten about. We asked the manager/owner to please have someone come take care of us and we were told that they were concerned because we were drinking and had kids with us. One of my girlfriends had her kids but she was not drinking. I was offended that she tried to cover up the poor service with her so-called concern. + +Again, food is great service is lousy. I am so disappointed and will not go back. I will look elsewhere for my Caliente Rolls. I hear Blu at the Wigwam is really good and servers are hospitable.",review,FmBpiDp6KMjlP3mKKp8vGA,0,1,0 +jf4RUa9EQO37hqxRCxbEXQ,2010-12-09,XC4rh_9jtl27QK4bu7a58w,5,"I am a huge fan of Saigon Nites. A friend and I regularly eat here (once weekly) and we have NEVER had a bad experience. The Steak Pho is amazing. Typically when I Have Pho I load it up with hot sauces, chili oil, etc...not at Saigon! Their Pho is ready to rock and roll the second it leaves the kitchen. Two thumbs way up!",review,hf49J3TgNaiCmgcY3ehOjA,0,0,0 +_yW2zLQAmqhj2m7rBbpFPw,2012-05-27,_HibfwML2alOCvvgqgzKvQ,5,"Food is good to the tummy. To me this is better than in and out burger. Place is spotless, friendly service, and wide selection.",review,-Fi7zyYkdWrrChGRF4mIBQ,0,1,0 +zMa6YoEekpABg1HZnnTZdg,2011-08-07,RyVBraOxcGl4zNraQkLP9g,5,"Last night we met friends at Hillstone's and we truly enjoyed a great meal and great atmosphere. +We were met by a very friendly and helpful server who took great care of us the entire evening. We started out with a wonderful wine recommended by our server, she let us taste 3 kinds before we chose what suited us. We went on to enjoy the savory spinach and artichoke dip as well as fresh baked bread served with some olives and olive oil. The caeser salad was a very large portion almost could have been my entree and the dressing was so fresh and light. The croutons crisp and fresh baked. We all ordered the hawaiian ribeye, OMG!! So moist and so juicy - the flavor was so fabulous and I could only eat half of it. The loaded baked potato was also wonderful and very large. I ended up taking half my meal home and was really happy that they let us sit quite awhile to chat with our friends after our meal was over (we were way too full for dessert however the server brought us a complimentary slice of key lime pie which my husband and friends said were fabulous I just was too full to try it) we never were rushed out and they kept refilling our drinks I can't wait to go back. Was always a fan of Houston's in NYC and this was very much the same and enjoyed the jazzy low music in the background and the dim lighting that was warm and relaxing.",review,NxqcDEUm4FNDSxMYXlV6gA,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2012-06-18,-o_qtnxf_3upxkltWeGcLg,4,"I was here over Memorial Weekend with my friend. We waited 10 minutes and got a great table outside. +Our server was so friendly and helped up with suggestions. We probably ordered to much, but some how we did manage to eat it all. +I highly recommend their burrata. It was the 2nd best I've ever had. And we had 2 different meats & the olives. The serving sizes on the meats was very generous given the price. the olives were delish too. +Give this place a try if you haven't yet. Also, the decor is really cool.",review,qUdXbLXXMjvFmf0_DTODiQ,1,0,0 +nInabwjYRoTe8nc6X_dYkg,2011-11-18,apRnl5ZS2FvbehoqSuOTqg,1,"Sadly with new owners comes changes on menu. My fav Barbecue chicken salad +no longer has a hint of the same taste. It should now be called flavor of tomato. + Also sad to find out that the most outstanding veggie sandwich now tastes like it comes from another country. Again not a single hint of similarity of same flavor. Im sure many people will love these new changes. Yet, Im sad it's not the same. I woke up today dreaming about the old veggie sandwich! No joking!!!!!!!!!",review,LxgdyviWGbgvVp_L0DABpg,0,0,0 +6nseTZb6WrGWcithRThfag,2009-09-14,jhQmEtAS-2m57ie0cVzMzg,4,"At first I was disappointed with Padre's menu. I usually get tacos, rice, and beans, and they only had soft tacos. But then I ventured out and got this amazing beef burrito that came with rice and beans. Really glad I tried it. + +I was also pleased to see that they had Sol beer on the menu. It is my favorite Mexican cerveza, and I usually can't find it in restaurants.",review,NWbiPd4AhbIKjep_vgasog,0,0,0 +xsSnuGCCJD4OgWnOZ0zB4A,2010-02-14,0_4XOZ-O239bx04chvU_ug,4,"Wings are not my favorite type of food, and I find most ""wing bars"" to be about the same. So when the East Valley Friday Night (#EVFN) Tweetup headed here I didn't have high hopes. + +The wings were good, the beer was even better. I was honestly impressed by the excellent selection on tap, including some crazy stuff I had never head of before. It satisfies both the Pickiest Vegetarian and Pickiest Beer Snob I know, so is on my list of places to take just about anyone to relax and have a good time.",review,Znu5KKqytHfmjbXfQo3f4Q,0,0,0 +rLv5DPLnO67TCHIbbBWYPA,2012-11-13,G-aG9nPvovalTDJAFqZNPQ,2,"I am from NYC and have been in Phoenix for a few months! This Native NY'er is within walking distance from my hotel. I've been going their for about two months on Friday and Saturday nights for food, drinks and the karaoke. The food was OK, the drinks specials were good and the service was also good. The problem is that when a confrontation erupted at the bar the staff did not respond quilckly to notify the police. So, I ended up geting injured and when I asked them to call the police the did not, I had to. And after the episode they said they hoped It would not affect me not coming back again! Not even a comp or something! Just an I'm sorry what happened! I will not be returning at all. I looked over my nine charges on my statements and seen I had spent over $300 their. There loss!",review,oanHCNCLByQdW_TIgJKzjg,0,0,1 +fRCZktDIBu9-uJ1wOYB3bA,2011-12-24,2mNEeGfjmHVt5tRh58Awxw,3,"Tip: If you know how to play poker...go sit at a poker table, and order the fried rice. You get your meal for half price while playing poker. + +The filet mignon fried rice(ask for it rare and it will come out medium) is excellent!",review,FgkmsIAmA3uKx5bLNkXF9A,0,0,0 +j0mNAIzwRH1QHTuMQaYX1g,2012-02-15,4n23hhnN38BXQna8DynvWQ,2,"So I am an occasional shopper here at this market.. for a few reasons: we love their in-house made corn tortillas; they have a good selection of mexican treats (Bimbo breads and coconut bars) and if I'm buying conventional produce, their prices can't be beat. Also, their pan Bolillo is really good and cheap and their cakes (3 Leches) are pretty damn good. + +OK, so here is where the minus comes in.. the BIG minus. +My husband and I used to go occasionally for breakfast (I'd usually order simple, straightforward things like carne asada tacos.. don't get much simpler than meat in a corn tortilla).. well, the last time we did this, I found my meat... ready?... wait for it... to be the color blue and purple. I had brown meat, but I had pieces of it that were blue and purple... no effin' joke. I thought it was a trick of the eye, but I closely examined it and ... sho'nuff, that shit was blue and purple. I immediately threw away my dish and never have I since ordered meat from their kitchen side. + +That being said, I've also become more cautious in buying meats here... not to sound like a snob, but you bet I'm not buying my next cut of beef here! I'm cool with their breads and their cakes and tortillas and such, but if it comes to meat, I'm out the door. + +I much prefer Pro's Ranch Market - the REAL Ranch Market.",review,A99dyhEqcd_yXKPfBWeZHA,0,1,2 +oXKPSI-RUqOvmuSCh_DEQQ,2012-05-19,xHg82RqrCuNCUIColUmzfA,4,"I'm from California and every time I visit Arizona I have to make a stop here. The ambiance is very nice and classy and located in a great/fun area. The bar and drinks are great and the food is fantastic. Like i said, I'm from California and live in the Bay Area, so I thought I knew what great seafood was - wrong! Who knew that the desert had better (well almost better) seafood than San Francisco or Monterey Bay? + +I had the Vanilla Battered Sole with Gorgonzola Mac & Cheese - Amazing! Never tasted anything like that - I recommend that this place be the first stop to anybody looking for a fun night out.",review,ZJ6MUaj6z5Hgtnxzu-QG5A,0,1,0 +-AAig9FG0s8gYE4f8GfowQ,2010-12-14,eX2xmJE_yRxEw0MK-sjxDQ,5,"The mozzarella tomato and basil sandwich is the BEST sandwich in Phoenix, hands down. If you haven't been to Pane Bianco you are truly missing out.",review,iI7NSXGiUoY9sPdAUE8J0w,0,0,0 +6nseTZb6WrGWcithRThfag,2011-07-19,sfiGruMcgQigquvfOyrdPg,3,"I've had this groupon for Padre's that had been burning a hole in my pocket for a long time! Finally as it neared expiration date I ventured into Phoenix to try it out. It's a cute little restaurant with a really cool red door! + +FYI - there's a check-in deal here! $.01 margarita! Mmhmm you saw that right! Certainly not the best I have had by any means but you can't really go wrong for that price right? + +After ordering our drinks we decided to splurge on an appetizer so we started out with the Queso Fundido. I was so excited about it because hey it should be all about the cheese and as a Wisconsin boy, I'm all about it! Unfortunately it was more about the spinach and not so much about the queso - it tasted really good, just missing a lot of the main ingredient in my opinion... + +He ordered the Mexico City Fajitas! Really well cooked chicken, with the right amount of everything! Super good! I ordered the Pollo Rellano. The chicken (as in the previous dish) was really well cooked but was lacking on the stuffed part. So it was good - just nothing wow worthy. My dish came with side of guajillo mashed potatoes - which look like a pile of mashed sweet potatoes - I personally wasn't a huge fan of the taste but as usual I'll finish my plate anyway :) + +The service was pretty good, it was just a very laid back environment, which I wasn't really expecting for some reason. + +I'm not dying to go back by any means but if someone wanted to try it out I would go again!",review,BpixBbjot5Wl8brVj5hT-Q,0,0,0 +WV2UObiT3EknPaAvo1GVYg,2010-01-15,9XwL2ENfB_1wS2xXrZgMwg,1,This place is closed. Good riddance.,review,bkRfY8jHdFxf7k8vLX4buA,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2011-06-19,V_KiwceE5IUmlEv4GCoXgQ,5,Was looking for something refreshing for a nightcap on a hot Scottsdale night. You will not be disappointed. The sorbet was really tasty and refreshing.,review,_Ng6CqgQbZJ3c9ZhWGCu_A,1,1,0 +XhdMiSn0b3O929YpjVBMHw,2009-04-01,WWIDk0nUo4H2nROGeVHE7g,4,"I love a place that lets me do whatever I want. I can go to this place and scarf down a whole bunch of pretty good tasting frozen yogurt for 160 some-odd calories. I can pig out on Thrifty Brand Ice Cream - oh joy! I can pretend I am in Hawaii and have shave-ice (snow cones to mainlanders). I can get a puppy cup of frozen yogurt for my dog. How COOL is THAT??? I can get quarts of stuff to bring home. AND - here's the big one....the people are actually really, really nice! Okay - I've read the other reviews - the frozen yogurt is good - nothing that will drive you to ecstacy - but good enough to hit that ""I need something cold and frozen"" spot. My dog loves the lo-cal treat. So, depending on the Length of my hike, it is yogurt, ice cream, sometimes both......you get double punches on Wednesday and the puppy cup is free if you bring your puppy.",review,DvQ09Ieg_d_PgrAdQy71Qw,1,2,1 +r4AG1WXCRWkZKQctrcy9FA,2009-03-08,xwtg_u6SUTwo7n9smSJaHw,5,"still a big fan, wonderful pizza!!! +-- Remember to join their birthday club!!!-",review,DnwHp_A92KvllfaUIdFraw,0,0,0 +QzXFdjIbFRGhzL83goPPLA,2012-08-01,BJ29byDvNAvqsAdlQngeYw,3,The best thing was the dessert. Shrimp was alright. Nothing to write home about. Wesabi chicken was lacking.,review,7WO1DSyx-0FP0cBkaCISAA,1,1,1 +jJhNOhuGpIsJX5SEUFFWYQ,2012-12-27,tPgHu1UT0ZW23vVKuC5y7g,5,"You like hotdogs? Motor (thats me) says get in your Mommy's oldsmobuick and get over to TEDS! AND you sissys that like ""sonoran"" style dogs talking smack about Teds, go back to Tucson and eat your fru fru pineapple topped dogs with peanut butter. This is old style, 4th of July chargrilled hotdogs and hamburgers. Makes my mouth water. Ok so visualize and taste this in your mind. First the juicy hamburgers that have the hardwood charcoal taste that makes your mouth water. The crispy ice berg lettuce, juicy tomato and onion make this a purist burger lover's dream. Real good home made taste. So now act you like you always do on the 4th of July and get an all beef hotdog. First a warning. You will crave their hotdogs after you eat em. The crispy plump skin that cracks in your mouth and the taste is like when you were a kid and watching the fire works on the fourth. Add the spicy brown mustard with their ketchup ""hot sauce"" and buddy you got yourself dilemma. The dilemma you ask? Is do you order one more hotdog cause they are soooo goood! Try the Italian for a spicy dog. Don't start with me on the fries and onion rings. Just make sure you wear your fat pants. Motor out and going back for another dog.",review,ehtcnF3Ebvq23p107LcsuA,1,1,1 +_1QQZuf4zZOyFCvXc0o6Vg,2008-06-24,pDcWm7nc4_bt-_Y0o2MK6g,5,"i have 2 words for you: passive. active. dividing the dog park into sections based on tempermant isn't smart, it's f'n brilliant. +2 gates upon entrance and exit safe it up so i have no worries that my shelter dog will hit the streets again. +this dog park is clean, the people are friendly and so are the dogs. finally, a place where we can all get along.",review,yAy_yq9pcp4YiotWEsTOpQ,7,9,5 +yc5AH9H71xJidA_J2mChLA,2007-09-09,uwGWwL5FLlNZUdokJlVbYQ,4,"This place is right up my alley. + +Smithwick's on tap- check +Awesome fish & chips (award-winning for a good reason)- check +Good pub vibe accompanied by live music- check +A nice soccer following (the unofficial bar for Glasgow Celtic supporters- not my club, but good enough)- check + +I'll go with 4 & 1/4 stars.",review,4zinPJ38-WxjPPomn7CPAQ,2,1,0 +QSCeI8HdUluG-YmbDWo-fw,2012-03-19,8skcfVFQq5S3FyS4Ew6q2w,5,"I've ordered pizza and wings three times and the have consistently created perfection, seriously.",review,r2j-1IIRt9-cxT8z0sPr3g,0,0,0 +1QxI2IP3XfndDAY8nyZVPg,2010-09-21,h4oJEDoK6LWyFwAf2GyNPw,3,"I've grown to like Apple, though I've always thought their products were priced on the rich side. When we lived in Seattle there was a Microsoft bias, but a large group of us all had Apple iPhones. And that is a key part to the Apple story. You buy the iPhone and then the next thing you know, you're looking at iPads. + +The Genius Bar is fun and very helpful when things go wrong; like when my new phone duplicating one calendar entry 341 times. I had to bring in my Win-Tel PC into the Genius Bar and in the end we had to delete MobileMe to fix it. But, absolutely great, GREAT customer service!!! + +I love my new iPhone 4, and I've had Blackberries for 14 years! Maybe when they add FaceTime to the iPads, I'll belly up to the Genius Bar.",review,1BW2HC851fJKPfJeQxjkTA,1,1,0 +d3MxUXS1b6U2P_gGuCO1-A,2009-09-24,KEQh_cm_yvdFQYFpNFcNPw,4,"I came here with three other friends. We were all on business trip together and walked over from the nearby Sheraton. + +The place is modern styled for the gen y's with loud music. It's bad for the boomers with inflexible ear drums. In fact, there was a DJ there for Thursday night. + +I ordered Pork with Pineapple Ginger Sauce, Oyster Mushroom and Clams with Lemon Grass Claypot. The chopped pork was nicely deep fried, wrapped around a skinny stick of sugar cane and the pineapple ginger sauce was very tasty, maybe a bit on the sweet side. The Manila clams were really fresh. I was hoping that the broth was broth but it was just liquid used to boil the clams and it was not salty or tasty enough that I just abandoned it. The oyster mushroom was very fresh and good. After these three small plates, I was still hungry. I had to scavenge my friend's Tofu Curry and some of his rice to get satisfied. The food is definitely good, fresh and tasty but if you are really hungry, you could spend $25 and still feel a little empty.",review,QfnKAXo0aOk0AFPPRa-WIw,0,0,0 +kEyCMHBnohaWc81omLDfYg,2010-06-26,YjcxAKMU-OnDZc-ybpGZ0A,5,"I was inspired to visit Casella's after a coworker told me about their authentically Italian goodness. As my tummy growled today, I was in the neighborhood so I knew just where to go. I walked into a simple yet clean deli. Immediately, I was welcomed by the entire staff (I believe they are all related or at least family through friendship). They asked me if it was my first time in and I said yes, so right away they started giving me a history of the shop and the tasty cuisine. Celebrating their 33rd anniversary (congrats!!), I learned that everything is homemade -- from the meatballs to the chicken salad. The owner said he goes through 40 lbs of chicken a week. He gave me a sample and the chicken was chunky and delicious. I'm not surprised he has to prepare so much chicken every week! The meatballs and freshly cut meat for Philly Cheese-steak sandwiches looked great too! The owner mentioned he is from Philly so better be ready for some authentic Philly and Italian style cookin'! + +While I was there, the owner was slicing some fresh provolone, so I added that to the warmed turkey sandwich I ordered. The turkey was tasty, the provolone was yummy and the sourdough roll tasted like it was fresh from the oven. It was $8 for a sandwich and soda but the sandwich was hefty enough that I saved half for later. As I walked out, everyone said goodbye to me and I felt like I was leaving a family dinner. + +In summary, here's what made Casella's stand out: + +- The very friendly staff +- It's a local family-owned neighborhood deli celebrating their 33rd anniversary. Gotta support the local businesses! +- Clean decor +- Tasty, homemade food that's on display for visitors to see +- A good family-style atmosphere that greets you the second you walk inside. + +I'm not sure how it's taken my so long to find this local treat, but now that I've found it, I plan on becoming a regular. + +Directions: Note that this is hidden in the Basha's strip mall (on the side of Granite Reef) but don't let that fool you!",review,4ozupHULqGyO42s3zNUzOQ,3,5,2 +KBKDl08flVw1AqvM5ucVpA,2012-10-23,ftTgregq0XLWbANHpKVuMg,4,"I FINALLY tried Fuego Tacos and I really really am a fan! + +So here I was with a Yelp deal and an upcoming national taco day. I do like I do and text some of the InstagramAZ honeys to meet me up at the esplinade for a mini sunset photo walk and an excuse to have some margartias. + +What an amazing combo for a Ladies Night! First off the starter chips and salsa was bomb! BOOM! the salsa has like chipotle flavor, not runny but hearty like steak! hahaha! We also ordered a few Queso appetizers. Dang... Let me say we could have been fine with that and our margaritas. + +Just kidding! Of course we all order food! Tacos galore and delicious! Seasoned to perfection and sided with really good rice and beans. I am super picky about my rice, 'cuz you know, no one makes it like Nana used to. Not even moms. But I was really impressed! I am definitely coming back to this spotty and checking out all the other Fuego restaurants! + +Oh! And they had no problem honouring my Yelp deal. Over all a very pleasant experience!",review,k2u1F6spBGhgk2JtAe97QA,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2011-04-05,mBM0uQzbnrkoQoNl0LDcnA,5,"Very very good lunch spot! Was a little disappointed when I found out they didn't have pizza on their lunch menu. But when I tasted the prosciutto ""sandwich"", I didn't mind anymore. It was a great meal with a relaxing & great ambiance!",review,Fu_2qxs9bKgFf133uvnsmw,0,1,0 +KGX7O-_WqOIy9o7u9NOa9A,2011-07-18,6RdVTsl-UaWEv80hYhS_3w,5,My fav Mexican place by far! They make the most delicious chicken tortilla soup and tacos I've ever eaten. Fresh ingredients and the owners are super nice. Love this place!,review,58YQSpx5Ct8W3HxFhNs-Lw,0,0,0 +Gl4TouO2_CCz2nFPS9fGlA,2012-09-06,POIrOqAbF51D21TSelUQHw,1,"Bad shop, rude owners. Pro-tip: If you want to ""enhance"" the Phoenix community you could start by not playing music loudly when it's obvious that there are musicians trying to perform their sets that people paid to see at the well-respected venue next door.",review,yETtApEyYQAmUQVOBgUjhw,0,3,2 +0kZ4aYmqf5fzTt9Yvz8Kvw,2012-06-24,FqREFhToDVD7PQBRJxdfUQ,4,"Ok reviewing the Waffle House is kinda lame, but here goes. If you have lived in America at any point in the last 50 years you know they have good waffles and hash browns. Is it the best breakfast option you could possibly encounter, well no. It's just every once in awhile I find I just want Waffle House. ( Fond late night memories from college I would guess. ) It can be for breakfast, lunch, dinner, whenever. + +So what does this location have going for it that makes it better than the average Waffle House? + +1. Lots of parking +2. It's not in a shady part of town +3. It has a really nice staff +4. They are fairly speedy +5. The restaurant is clean + +So there you go if you have a craving for waffles and hash browns then this is one of the better WH in the area.",review,3ONPPazUH-Q3XblYJIaA1A,0,1,1 +PlcCjELzSI3SqX7mPF5cCw,2010-12-19,SJ0eHg5JpJRhDlmZU4c0cw,4,"I'm not a sushi expert by any stretch, but suffice to say that the rolls here are well-priced, fresh-tasting, and overall pretty damn delicious, with good presentation. + +I'm not a fan of their tea, but that's just a personal preference, I think. I enjoy the Las Vegas, but the Spank Me roll was really good as well. We usually mix and match our way around, and right now they're running a ""happy day"" 4pm-9pm special on a lot of their rolls which makes them cheaper by $1-$3, each. Definitely worth it. + +Good service, laid back vibe, even if the decor is a little ""college dorm"" with the lighting, but overall, fun, good food, and affordable.",review,8-2W5CmkDl9vrkxRpkiPRg,0,0,0 +DvPsl-CtYj3Q5GnOgClyew,2010-09-21,OOAy8__OXk7fsLN4x-IHHg,4,"This is now Amore Sports Grill. Try the sausage & peppers, they are to die for.",review,3Bl7aJQcBgOj3Looi8GoYQ,0,0,0 +ZJxs1L4oMhX9GW00ty0aAg,2011-06-17,ucvMSywUrCWOPoYL1M2plg,3,"ive been here 100 times for all types of events and its a great place to eat, drink, and watch sports. I love the parmesaean garlic, teriyaki, and habenero sauces. The monthly beer specials isnt a bad deal for a tall domestic. Fries are also pretty good.",review,juB4dIllPpM4Mt4_x2SErQ,1,1,0 +L9UYbtAUOcfTgZFimehlXw,2011-05-04,OuiIPI6PSHl_3-dYeu5LzQ,5,Great food!!! Everything on the menu is good. The bacon guacamole burger is next to perfection.,review,VtCCL2QTKxQ50uOlZZ3n8A,0,0,0 +u_F86yMy2iOVQXhLJoxj2A,2009-10-06,2BmDTRmjKp5YEQdm5dLA_g,1,"Pure Fitness as a whole I like. No contracts, the people going there are actually there to work out and not to be seen, (ex. LA Fitness). Plus you get complimentary training sessions. However, this location I will NEVER return to and its all because of their new GM Adam. I had a free pass and he was the one that I had been assigned to for my fitness test and 1st training session. I had already explained that I planned to join but he wouldn't stop the full court press of selling which I didnt like at all. I wanted to use my weeks free pass THEN join. He wanted me to give him money right then and there when he hadnt so much as given me a tour yet! Anyway, I told him I wanted to wait and then he starts asking when I get paid, is it a money situation, etc..if made me VERY uncomfortable. + + I went ahead with the training session and he knew in advance that Im not inactive but going to the gym is not something Ive done on a consistent basis in a very long time. Now I enjoyed the workout but from what others have told me..he pushed me way to hard for my first time out of the gate. My arms weren't sore, I know sore, Im okay with sore but they became weak for FIVE days, that I had trouble sleeping they had that irritable and restless feeling, and it hurt to use a freakin' date stamp at work! + +But the reason Im not going back..I was surfing them online and saw how easy it was to sign up online so I did. That way I wouldnt have to worry about remembering voided checks etc. Well I called Adam to let him know and he went off on me.. just short of yelling. ""Great, now I lose the commission the gym loses the points.. you can understand why Im upset right."" and he went on for about 5 minutes. I was stunned at how unprofessional he was and he's the GM??? If they work on commission they should give you a heads up ""hey I know its easy to sign up online but we work on commission so I would appreciate it if you went through me if and when you choose to sign up"". I would have respected that. OR if when you sign up online it allows you to put in the name of the person you have been working with so it doesn't circumvent them. But I was floored and pissed that he came at me like that. + +Ps. Of all the Pure Fitness this one is the smallest, visually unappealing and has the worst customer service. I did sign up and I love the one I go to now...but this one I will never step foot in again",review,g6rlp5No6GjEDXkrjvg1kQ,2,5,2 +zG_wv69bsllw_PWhOmoAKQ,2012-07-07,qUJiEs-lG9x8faXMKXipbA,4,"I have eaten here four or five times. We always get the mussels to start, and they are always delicious and cooked just right. The broth is great for dipping the bread in, although I could probably just use a straw. The fish of the day was halibut. It was very flavorful, but maybe just a tad overcooked. The scallops were wonderful. Great wine selection. This place a lively atmosphere. Not too noisy to hear across the table, but a good vibe. The service was excellent.",review,EGlqOFCbnrAEIvd86BS2_A,0,1,0 +bzDs0u8I-z231QVdIQWkrA,2012-03-19,363TEYAQ7YOUXq1MhiRRpg,4,"Ordered the King Carlos IV. It was HUGE, two of us ate half of it. I thought it would be smaller than that. It had all the major meats plus hotdogs, cheeses, and a siracha type sauce. I think this was featured in diners, drive-ins, and dives. It was very good but just wow huge. It came with a side of ruffled chips. Very nice people. The fruit smoothies were good the horchata decent but not the best I've had. Great bang for your buck though. I'd go again and try something a bit more sensibly sized. + +There was a wait of about 15 minutes or so. Very popular on a Saturday for lunch :)",review,aw3NdtzanMHUT4FIv1lCzQ,1,1,0 +SYHatptm7gpcmYjW1d-o5A,2011-12-30,SmEXyv2RXZHQsLVjfh0jkw,1,"Easily the worst ""burrito"" I have ever had. +It amazes my that anyone would choose to eat at this chain. I bet the rations they serve from the back of UN trucks to refugees is better.",review,0rI5H6cZ3sUt3llaOqLJkg,0,1,0 +b5cEoKR8iQliq-yT2_O0LQ,2008-11-23,-KQF0w78TeG7xhT1DrWtnQ,4,Awesome atmosphere and a unique place to go. I ordered the habanero burger and it really lit me up. As I was nearly finished the waiter remembered it is supposed to come with a free glass of milk (which I didn't get).,review,zCC6huLkNBEr3JUgQyxJbg,0,0,0 +8T8B_xK10FuO6MBOFcVQ3w,2010-12-27,alOgydV6AcU8MIe6wazV2g,4,"The hubs & I have been coming here for a couple years now. We usually hit the drive thru. Always get the same thing, butterburgers w/fries/onion rings & a concrete mixer. The employees are always super friendly & always offer our doggy a treat. Definitely our go to spot when we're in the mood for burgers & frozen custard.",review,33vUIil_GCaT92aUaZhRXA,2,2,1 +GfMRsE7rYqNyfC6wUYZkzA,2012-08-12,OZxAQ6dlqcX4RTmc9M04vQ,5,Love all their dishes!,review,OsD0cwqmg4JHheV7O17UDg,0,2,0 +qMkIbQFrROSnPaQ7at85-w,2009-12-21,zo2_AAke2oMQqblhF-YsRw,5,"To say this place is super rad would be an understatement!! We for las noches de las luminarias. And I wish we could've stayed longer, also seeing the gardens during the daylight is added to the 'to do' list! + +Having never been there the staff was super helpful in guiding us, not to mention really friendly! The music was entertaining and a good variety. They also have a synthetic ice rink and you're allowed up to 15 minutes of skating, if you're not shy! The buffet they offered was a joke and I don't recommend doing it. For 16.50, you're only allowed one trip through and other such silly stipulations... no thanks. + +Other than that, what a great place to go!",review,wM7VQJ2SXIQWEDTEokG99g,0,0,0 +SOvF2IM9LwgBYi1uGnUwrQ,2010-10-18,8yc9Xgd_ZWKSFJg_0Woc-w,4,Pretty new building and they have a pretty good selection in books. As Steve mentioned they're pretty nice in finding you a book. They have the usual Starbucks inside which is also pretty good. (Staff is friendly and the service is great),review,6G_83_F0CQ9XJZdYdeE7Hg,0,0,0 +HiTpXu1BNE2DlvjyqpObjw,2012-02-18,4MCFckgRwcYP7O-TS_xOGA,5,"This is really worth taking the time to see and experience. The cost is very low - $5 per adult. The garden is beautiful and peaceful with many areas where you can sit by yourself and reflect or just people-watch. Also, the lady in the gift shop is very helpful if you are a first time visitor. + +Metro Light Rail stop at Roosevelt and Central.",review,IhcTLLWKS6ZiNyIX9oQQPQ,0,0,0 +uPRz5JI11QQpwgNnSZZzaQ,2011-01-24,hIKce9nWq7VuZ_z7JpD3lw,2,Highest gas prices in the valley!,review,d6y3GGhsQ7sJQf49u02hLQ,0,1,0 +u0NbikWwP7TVkMkCily-4g,2011-03-27,bping773Iiq2-21KfHt7FQ,4,"The contemporary and American art sections of this museum are 5 stars, outstanding! I also loved the overall museum layout and architecture.",review,sc_Kcz2apQ1IJa9moO8qvA,0,0,0 +GeHwru6TVDyVErFc92Nn2w,2009-11-30,29xSkJ1Dc7myBWgLFi21TA,4,"We went to Central Grille on Thanksgiving for their buffet. Good food, excellent service and very nice ambiance. We asked to sit outside and the weather was great for it. Great place to sit back, relax and enjoy some food. While I didn't drink they had a pretty good wine and beer list. I will go back, enjoyed the experience.",review,uTyIIbOvXH_XZw7OEiTiNg,0,0,0 +c0iszTWZwYtO3TgBx0Z0fQ,2011-09-11,xbboe-eF8p2iu5xOppdj9w,2,I agree with the other guys. The towels here are gross. Staff is not helpful. When i checked in there was no vehicles in parking lot. When I asked for a room I could park in front of because I wanted to be able to keep an eye on my truck they said none were available to me. If you don't get much business maybe you should be nice to the people who do show up.,review,h3aJjV87gtjgVvxiopsrjw,1,1,0 +fP-BPL6iRu2tbcvlnjRshw,2012-04-10,QvlIKmMpqF2wnChlRaNmUA,4,"The boy and I finally check this place out last night. +It was everything I imagined it to be. Great view from the semi-outdoors bar area, lots of beers on tap, and nice patio area. It was a Monday night so they weren't very busy, which was nice, I wasn't in the mood for a crowed. + +When checking out their menu online I saw they have my favorite beer on tap, SeaDog Wild Blueberry. It was delicious! Completely different on draft, but yummy all the same. They also had an Apple Cider on draft, my pick over a pear cider any day, that I could have in my Black Velvet (cider and Guinness). I was a happy camper. + +Only downer was that they closed a bit earlier than we would have liked, but no worries we will just have to come back again soon to try some more beers. + +The bartender was great, she let us try anything we wanted before committing to a full on pint. I tried to get the boy to be adventurous, but he stuck with the Stella, not bad at all, just a little boring. Oh well ;-) + +I am looking forward to checking out Stand-Up Live soon as well, and the live bands they have at Copper Blue. I also hear they ahve a pretty awesome Ladies night on Thursdays, saweet! Menty menty more trips in my future, I can just see it. :-)",review,_uL7OiQSfNsCd60DrAf7qQ,2,1,1 +muCl5p-9ut1sY0aKeUeRhw,2009-05-27,bixk3FHce0aPJatX0wOZ9Q,5,"Yum yum yum. Husband and I first went there early on a First Friday night and were pleasantly surprised to be seated right away. We didn't want anything too heavy since we were planning on doing some walking so we split the Spanish cheese plate which was delightful. The fig cake is delicious!! Splitting the plate made the bill pretty affordable and it was just enough to fill us up without overdoing it. + +The server was very helpful in suggesting a champagne for me and red wine for husband. Don't remember what we had but my champagne had a strawberry in it and was perfectly bubbly. + +Ambiance and decor is nice and mellow. We've since been back with friends and it has been enjoyable for both a date night and chatting it up with people. Enjoy!",review,hPidlmUa8VQ5FEv37TQgWA,2,2,1 +SG-bV3OZizne2MZ-zQSmRg,2011-06-26,6NrJfwC73Mj0GN2vWCFt2Q,3,"It's a hotel bar, so expect typical hotel pricing on drinks. They have some good tapas to choose from, ask for the calamari, but a grilled version (off the menu)... it's REALLY good. I've had a few of their drinks there, but I stick to the mojitos, but had plenty of others that were just as good.",review,6wkKxBVwQmB2DnjllZvk0A,0,0,0 +nDdfN6onfb0JoxKKYwCnjA,2009-06-19,RK1zTs73vTwlS0tmpKSJmA,2,"The rap on Starbucks is that they ""over-roast"" or ""incinerate"" their beans. + +And I think that might be right...sometimes at Starbucks, it seems like I'm drinking something brewed from charcoal briquettes...it doesn't taste good:( + +Now, I will tell you that I am really no connoisseur of coffees...I like coffee, you know...a good dark roast, made with freshly roasted beans:) + +But the beans don't have to come from a specific plant , grown on the southern side of a special hill in Columbia and then eaten and pooped out by a badger of some sort. + +No, I just want a decent cup of coffee at a decent price:) + +Why can't Starbucks do that? + +I occasionally need to meet someone for business, and Starbucks comes up as meeting place (and I understand that...they are almost annoyingly ubiquitous:) + +I have sat at a cafe table on a street corner in San Francisco, having a cup of coffee at a Starbucks...looking at the Starbucks across the street...Lewis Black calls it ""the place where space and time folds in on itself""...I say ""why build the Hadron Super Collider to open a black hole?""...Starbucks did it a decade ago with a combination of charred coffee beans and vats of money to open a Starbucks for every adult in the United States:) + +In and of itself, that's no reason for a 2 star review...Gordon Gecko said it best...""Greed is Good!"" and Starbucks exemplifies that credo...they are a generally very successful corporation grown up from the Bay area defectors from Peet's Coffee...I have no problem with success:) + +No, my gripe with Starbucks is that they seem to be all about the marketing and not about the product...their coffee is crap:) So is most of the stuff they serve...it's second or third rate, at best. + +And just because it's convenient doesn't mean we all need to stop in. + +There is better coffee and better tea and better everything around...at much better prices...it's worth looking for another meeting spot:)",review,du6KeE54IFbPiXpU3LOd1g,8,9,7 +B8ujMtvvpHyEQ2r_QlAT2w,2006-02-23,RKXoQcfWnfut6f079zZN5Q,5,"I hardly ever get past their carne adovada. It's simply amazing. Add a couple of extra homemade tortillas to it? Can't be beat! I have had their pecan crusted sea bass also, along with lamb chops (chipotle?) both very, very good. Great atmosphere, friendly, competent staff...a winning combination. Get there early! Long waits after 6:00pm!!",review,CQVPwymzvS01Re6O4DATGQ,3,1,2 +53YGfwmbW73JhFiemNeyzQ,2011-12-10,ncIrgCWBN8Emik4mtdoWPw,1,"Refused to give water to young teen & referred her to PF Changs. Olive & Ivy handled this poorly, unprofessionally & pathetically. + +PF Changs didn't even hesitate to give her the water. That's why I ate there instead.",review,TN6ZI_NNUw8OAvODoxTKCg,0,1,2 +mhQCxOiqp03qnhGRTtPduw,2011-01-24,dfOxbp4WxFHiNWUtzbOu4A,5,"Great customer service, nice owner. The broth here is actually the best ive tasted in Arizona.",review,ehVMHDvELiKBg1Mn5H9dMQ,0,0,0 +STv-ED3M2xmRFMSvQbWGaw,2009-01-30,KpN9kZeDJwovSXvUCWNWMg,4,"The Capistrami is the best thing ever. Hot pastrami, swiss cheese, cole slaw and a russian dressing. I'm addicted to this sandwich, but of course, there are worse vices. This sandwich screams 'eat me' even when I'm completely full. It's okay, the pain I feel later is justified by how amazing it tasted earlier. They have a good selection of chips and also make fresh baked cookies. Service is on par. Love it. If I had to pick one gripe, the bread could probably be a little bit better, but that's minor in light of how great the food is here.",review,wnadMe8lJEVWNsN5bVJ3Ww,0,0,0 +Vm9GQUptdZmBM9R7tZ9_Tg,2012-04-10,cP_4PFlGG16qLa5tCeTnkg,3,"A nice place to shop, but I wouldn't want to live there. + +I never used to be a department store shopper, but recently Ive discovered that nicer cloths just seem to fit better. Go figure. While I still like getting a deal, I usually wait until there is a clearance or sale or some type. The macy's at scottsdale fashion square seems to have more selection, such as more size options for the items you seem to like and a few more items to choose from also. For guys, I would suggest checking out the Dillards at fashion square; the mens dept is about the size of this entire macy's store. 2 or 3 times a year dillards has an awesome clearance event and you can pickup 65% off clearance prices; which are usually already 50 - 70% off the original price. + +I digress; this is supposed to be a review of macy's. If you're in the biltmore area and looking for higher end quality shopping go ahead and check them out, then travel down camelback to fashion square mall when they tell you the item you like is only available in your size at a different store.",review,cRyNICH0mhjxagvSyVr60Q,1,7,3 +YxMnfznT3eYya0YV37tE8w,2011-04-30,OxXv1VCFhhsV158mFgN7Zw,3,"I liked the fish. It was delicious. The cole slaw was also very tasty. Not too sweet. A bit tangy. I like that. + + The shrimp was okay. A bit rubbery, but then what does one might expect for a seafood place in the middle of a desert? + +My biggest problem with this place was the price of the food. It is just too expensive for what amounts to frozen food plopped into a deep fryer. I could buy frozen fish at the grocery store and then come home and plop it into my little deep fryer and it would taste about the same and be a lot cheaper. + +I just wish it wasn't so expensive. Especially considering this in the hood. If you know what I mean. I don't mind driving down to the hood for some fried fish, but only if it is reasonably priced.",review,DBAg7I65F1lVwKU7UaScag,0,0,0 +VSPuvNSDUvlTl670lVAkkw,2012-12-03,Ahc76drU_s4y_9UQzSfuVQ,5,"Yup. It's all true. Great food, super charming place, very intimate. + +We sat outside on the patio under a heat lamp. Enjoyed the olives as a starter, as well as some fried raviolis (yes, please) and a caprese salad app. Outstanding artisan pizza, with as good a crust as I've ever had, and homemade mozzarella. Wine was just ok, but very reasonable. Server was attentive, helpful and friendly. Owner came by a couple times to check in on us and was absolutely delightful. + +Deduct a point for the proximity to the Handlebar J Saloon and the faux-cowboys arriving in limos with 10-gallon hats. Then add a point back for the near-fight we got to watch between a biker and the faux-cowboy who almost hit him with his Cadillac. + +We'll be back, and with more friends.",review,GP-h9colXgkT79BW7aDJeg,0,0,1 +14K90G-hbfk795NY7cKxMA,2009-07-02,TJR-Q8_09ae1bICoTLk6_w,4,"I really expected crappy food, because, after all, that's what sports bars generally offer. Then I was told that the food was not bad, but good! Which only made me eye my table mates suspiciously. I ordered the tacos al carbon which comes with cilantro lime rice. these are three street taco sized dealies that have steak in them and come with a little shot of pico and queso. + +Now like I said, I expected crap. But the tacos, with pico and queso poured on them, and grease dribbling out into a glorious puddle on the plate, were really amazingly good. The steak bits were really tender--ordinarily in such a taco they'd be the tenderness of jerky. Really: the tacos were totally sensational. + +Also, we ordered a buffalo chicken flatbread which is essentially a pizza. And it was great! even with the bleu cheese, which I detest, this was a culinary delight. + +So why the four stars, you ask? two reasons. One: the cilantro lime rice is offensively bad, like straight out of a box of rice-a-roni bad. I would have preferred kibbles and bits as a side item. + +And one other thing: it was happy hour and for a while they were serving beer OUT OF PITCHERS THAT WERE IN THE REFRIGERATOR INSTEAD OF STRAIGHT OUT OF THE TAP! Capital crime. Felonious. In fact, Dante wrote about a circle of hell where all they did was serve beer out of pitchers instead of straight from the tap. + +So you should know that although the beer serving would usually be a four star deduction and I'd never look back, I didn't drink beer tonight and so I really don't care if my table mates suffer. But if you try that shit on me... + +Four stars. The food is really damn good.",review,vhAn390OgR1H4DwacJdc7w,3,4,7 +6vKgpermKi8PNDYD5mkpKQ,2012-04-24,nkt4pe1T4YLQJ9kCVkA_GA,4,"I always find good used records at Zia. I know I'll come out with something. They're pricing is usually pretty high on records/artists/genres that are popular or trendy. That's pretty standard for anyplace. The Ghost of Eastside keeps their prices slightly lower with more obscure selection. + +However, the flipside is that Zia will overlook gems in their used stock and price them pretty low. Probably because they don't know much about certain band line-ups, labels or releases in general. I've found quite a few gems for two or three bucks in the used section. + +Used records are where it's at. There is no rationale in buying anything new because they'll press those things in such high numbers that they're not rare anymore. I'll still buy some new things from bands and such. Not a lot. + +Anyhow, I inadvertantly went to this Zia on record store day. I was eating with my kids at that Chinese place around the corner. + +I found a bunch of shit (not all rare but stuff I wanted): The Shit Licker's EP ""Cracked Cop Skulls (total early swede crust/dis), Orchid s/t 7"" on Hand Held Heart, The Automatics ""Golden Hits"" and ""Makin Out"", Chubbies ""Im the King"" 7"" on Sympathy, The Tie That Binds ""Adding Machine"" 7"", Gravy Train ""Hello Doctor"" LP. + +All %15 off for record store day. + +I'll always check out Zia. I'll always check out anyplace that sells records but I have to say that I do like Zia.",review,3BddvFu894h9jHKneItueg,0,2,0 +NA3tQYxR6Fq5O8nV6u41Tw,2008-06-06,4HauhOnomrQxb3KPvIm_cA,4,"True, you throw your peanut shells on the floor. And yes, my Asian family has gotten some curious looks when we've ventured here. + +ALL worth it. Great steaks, the sides that come with the meal are SMASHING, and the sweet bread rolls and cinnamon butter? Those are worth the trip alone, for reals. The portions are huge - and you know how sometimes food tastes worse when made in large quantities at restaurants? everything is still really good (I recommend the house salad and the chili). Did I mention that bread? We always ask for a basket refill and then take it home. haha. + +My family's go-to restaurant for a good steak dinner. I could do without the hokey Western thing, though. Yeah, not much for theme dining.",review,jqs0xPGhZwlyijqWLEgRyg,1,1,1 +RtwOc-n_RkiUuDGaNfCsNw,2012-08-01,nq0Qf0od9lWKXsE3EwwWEw,4,"Looking for good Philadelphia street eats? Well, Forefathers Cheesesteaks & Fries is the place for you! + +While Forefathers' is light on Philadelphia decor like the Liberty Bell, the sandwiches would give fan favorite Philly restaurants like Pat's, Geno's or Jim's a run for their money. And you don't have to be a Cheese Whiz fan. The gooey provolone on my sandwich left my mouth watering. The sweet potato fries were equally good. Be sure to sample the available dipping sauces like ranch, honey mustard, or (my fave) fries sauce. + +The next time you're in the mood for cholesterol count busting goodness, be sure to check this place out. Even Ben Franklin wouldn't need his bifocal specs to see that Forefathers is worth a fry...oops, I mean, try.",review,ltGh04bjEBhwItWVVG7UJg,0,1,0 +6ie9xvy2WW1pn7RuBvGNhg,2010-07-30,1z8Z2VJUXl-6psEVGXyqIw,4,"Friendly staff, clean restaurant, good food. Our favourite - filet & chicken kabobs. Patio seating with fans - great with a Blue Moon when the weather is nice.",review,HHlIOuuImgBq7Gbn5smaRA,0,0,0 +EHi-lebXGWjSktl4WvSoow,2012-02-07,sYvIF5BHPK7L-DeHmwl8SA,5,Had a celebratory lunch for a colleague today. We had a group of ten. Service and ambiance were great. I had the best burger I can remember. It was Lon's special burger; expensive at $16 but worth every penny. Highly recommend.,review,QHguW0BNdNF4lr8YyNmXkg,0,0,0 +F-ykHfGY9lWr12OJ_Ofy7A,2010-03-18,3BvSyX9kVKVRqRbpz-eqEw,4,"Well it was St. Patrick's day and I could not think of anywhere to go but here, that might be celebrating. Oh the were definately into it up in here! haha patrons and staff were both decked out for the day in green and with hats, tee-shirts, plastic jewlery and just about anything you can find related to the day.The crowd was happy and I talked to a lot more people than on the average stop in. The dining room and bar were both filled. The Irish music was filling the place, the green beer was flowing as one might expect at a discounted rate. There was a corn beef & cabbage plate special being offered up as well as the usual menu items and the Wed .40 cent wing deal they now have started. There was St Paddys day decoration and give aways from happy hour into the evening. A fun and lively pub it was. My only complaint was that drinks were all being served in limp little plastic cups; mixed drinks and the beer.",review,-9mljS0O9mwdOnGv-Oea3Q,0,1,1 +JW6fDZOuUKtJyZGeldh0xA,2009-10-14,uIayR5rIp73fB_1k01s6Qg,2,"I'm always searching for quality food at a fair price for lunch. There are tons of sit down expensive lunch places and lots of fast food (junk food) places too. When I read the reviews on Chestnut Lane I hustled right on over. The concept is right on but the execution leaves a LOT to be desired. + +First challenge is getting a parking place and I was lucky. The line to order didn't look too bad when I arrived so i was feeling lucky. However, the line took forever to move forward causing the people waiting to shuffle back and forth in a very confined space as there was lots of foot traffic trying to enter and exit. The woman at the register took each order, processed the payment, and then proceeded to prepare the drinks and sides for each order. The drinks are somewhat specialty items and are kind of labor intensive, especially considering that the order line is at a total standstill. SLOW! After way too long a wait, I finally was able to order...then the real wait began! It was a good 25 minutes before my order came up and it was just a TURKEY SANDWICH! I felt lucky, though, as the woman ahead of me in line was still waiting for her SANDWICH after I had finished mine and was driving away! + +Sometimes a long wait is mitigated by the awesomeness of the food. Well, at Chestnut Lane this is unfortunately not the case. I mean it was a decent turkey sandwich, but when I saw the almost $16 charge for a TURKEY SANDWICH and ICED TEA I was expecting something fabulous. It wasn't all that. + +If you decide to go to Chestnut Lane, maybe you could park in the spacious Jack-in-the Box lot just to the east. And grab a Breakfast Jack to hold you over during your long wait!",review,qNANO9sFNVPMPfuogtBZXg,2,2,2 +9Ep4sguv3HH_8lWyzSogjw,2010-12-13,OCtlAqr3igeU2sv5I1u-cQ,4,"Yummy, this place is great. Good burgers and you get to choose everything yourself the meat the cheese what type of sauce or veggies you want. Your not tied to a box at this place and it shows the meats are all fresh and the cheese and veggies are all top quality. I recently ate here with my family and at first thought it was a little expensive about 11.00 a burger after cheese and stuff. My personal burger was like $15.00 after I got kobe beef and horseradish cheese but the burger was very good. After thinking about it for a while it dawned on me that a Whopper is like 6 dollars and this was easily 3 to 4 times better then a Whopper. I recommend it if your looking for a good burger all natural no hormones and an entire gluten free menu.",review,SveiOSU6AHrjAY5cbewRvg,0,0,0 +-h-q6zTIdPlkz9BDP11sBg,2011-04-25,lyGntT95a-OlXAI4Y7SyUg,3,"The Family and I went back here on Saturday night. + +The food is just as spectacular as it was the first time we went! + +The service however was just not good. Our waiter seemed dazed and confused the whole time we were there. And slllllow. He also forgot stuff, I ordered a second glass of wine mid dinner and it never came, and I was never given the option to remind him because he did not come back until it was time to clear the plates! We sat at our table, all of us with empty plates for a good 10-15 minutes with out anyone coming by to clear them. We just sat there. Not cool, and its not like he was in another section, there was a table he was at 3 separate times that was directly behind ours, he just chose to ignore ours. + +We will go back as we do like the food and atmosphere and hopefully the service will improve.",review,6ts41fCsDKHbFZaKOMNmVQ,1,4,2 +8SjO3b-87uN2jXVXYNn47g,2012-07-25,PsfM9FGL96Ac7TWXUvzAtA,2,"I got a quick to go Asian Salad. Read the ingredients, no bell peppers (i'm allergic.) Awesome. Run like Oj to terminal B to catch my connecting and sit down to eat. There were at least 15 slices of red bell pepper that i had to pick out. This usually does the trick. I guess since it was packaged, it tainted the rest of the salad. Yep. Instant allergic reaction. Would not have wanted to sit next to me on the plane. + +It was tasty fresh and fast. Please check your labels, Blanco. Spare me and others that might be allergic to unlisted ingredients.",review,QRJ4DiRAWQ0kbJV6yLT8WQ,0,1,0 +luCSjoNQ9q_0QIjKKOy2pQ,2010-09-25,iZmySSvFpqwTAGlcld47Ng,4,"Great beer selecton, and the white pizza is delicious! Good hang out spot wit sports on the big screen and board games/darts if that's your thing. + +They also have a wide selection of exotic beer for sale. This is a beer paradise!",review,Xj8_uH9j98szzpcM_9E6Pw,0,0,0 +TgxDGx7L_JICWbuBUCGVqw,2009-10-22,UjcA-veGAIoheZjz_3WeQQ,4,"A great place for group celebrations, Fajitas serves up its signature dish in 1/2 pound increments, including chicken, beef, pork, shrimp and vegetarian. Served with sides-- lettuce, salsa, cheese, pico, etc-- and warm tortillas, the fajitas always taste great. There's little reason to stray elsewhere on the menu, other than appetizers and additional sides.",review,vzwS0Hy3J5r3URvQ3eJr5A,1,1,1 +166feddAL9YETnzTSUJ8aA,2009-12-03,fg7q0GxO-jwTJhmijzVrhQ,3,"So I went here twice and I hated it the first time. I don't know if I got a bad cut of meat or what, but my burrito was a bit too fatty. I think it was the red chile burrito, or something. + +Having said that, I recently gave it another shot and and went for the carne asada burrito. Very, very good. The cut of the beef is a little thicker than the usual Salazar's or Filiberto's burrito, but it was really good regardless. Oh, and the beans in there were awesome, too. It didn't have guacamole and I didn't notice till it was too late, but I'll be sure to get some in there next time. + +Overall, I give it 3 stars because i really hated my first visit, but their carne asada is completely legit.",review,WK2Jh-uBmeqH7oI9IxfSHA,0,0,0 +5kRug3bEienrpovtPRVVwg,2011-10-30,LWob6jdkvZa_aGsifYQLEw,2,I was expecting more since there are so many 5 star reviews on yelp. Three friends and I tried Rokerij for the first time on Saturday. We had a reservation for 6:30. The specials are on a blackboard above your head behind you if you are seated in the booths. You have the practically get out to read them. The paper menus have a lot of abbreviations so you have to keep remembering what the letters mean. I don't want to work that hard. Can't you just spell out the words? I ordered the surf and turf from the Richardson's side of the menu. What was delivered was an unappetizing mess. The plate and everything on it was covered in a chili sauce. It looked like dog food with a piece of steak in the middle. Really it was a terrible presentation. My husband's plate looked the same. The other two at our table ordered from the Rokerij side and at least it looked a lot better. The two bacon wrapped shrimp were flavorful and my steak was over cooked for medium but OK. I could have skipped the messy beans or at least they could put them in a cup. I may try them again but just for happy hour and I'll keep the Rokerij side of the menu.,review,28i9BnGOUpL4z4HJC18gfg,0,1,2 +JZJqJadk9pSoCGT7VTwBvg,2012-04-16,u54Z1UZCi4vflPf5OmVrMQ,4,"I was last at this place in 2004, and it was great. My favorite band was playing and I had a great time dancing, drinking and just listening to music. It's a must-see for any rhythm and blues fan. Of course, it wasn't open when I just visited. Ah well. But still a good place to catch a show.",review,b1k4tWoA_ISD7wqu82l8rA,1,1,0 +PxeX1M8WtyPxX1MuuGIh-g,2010-04-29,VFVYYw7c13CmoUIseHXlTQ,4,"How have I not sang Scott's praises yet? Well, here I go! + +Do you want a place for a good, solid, stick to your ribs breakfast without being too frou frou? Scott's is the joint! It's a Jewish deli in the middle of my neighborhood! I was so surprised that I hadn't noticed it before! Chrissy P invited me to join her for breakfast one morning and I was just blown away! On my first visit, I had the eggs Benedict. My only complaint was that my eggs were a tad overcooked, (not runny) and I wished for more hollandaise sauce. + +For my second visit, I brought my little sis and her BFF and we chowed! I had the Hash Mash and we shared an order of the french toast. I don't know why I challenged myself to my own personal ""how much breakfast can you stuff into your stomach"" contest, but I think I won. Everything was so good! There was nothing to complain about. + +I wish I could go to Scott's every day for a hearty breakfast! The dishes are simple, the service is straight forward, and I have NEVER walked away hungry. I will return very, very soon!",review,4UUIpbOTPmu43wuC2aSGkg,5,4,5 +hfl62LX14YqNpG0g0Tj6_Q,2010-06-13,8kg8PJWeltCQxvqgEAadig,4,"We were gifted a Groupon for Fuego and had the pleasure of dining there on Friday night. We did not have a reservation, which would have helped us sit outside, but we were seated inside right away. The host was very pleasant and welcoming. + +Much has already been praised about this little gem, and I agree with all of the accolades regarding the atmosphere, the service, the food...it was all wonderful. + +We had the Fuego salad, which was huge and lovely (although I would have liked some diced onions on it; maybe I'll ask next time), the tortilla soup (husband raved about this), the Pulled Pork with cheddar chipotle mashed potatoes and maple-glazed carrots, and the panko-breaded chicken breast with creamed jalapeno corn and maple-glazed carrots. + +In all it was delectable. The entrees were succulent and nicely plated. I particularly loved the creamed corn, which was perfectly spicy and helped clear by sinuses (I succumbed to a bad cold the next day, so maybe I need some more!). + +The only thing I would not order again is the carrots. I didn't feel these added anything to our dinners. The maple taste was pretty subtle, to the point of being nonexistent. Also, I think that if you're going to put yourself out there as an upscale restaurant, go the extra mile and use real carrots instead of the bagged ""baby carrots"" that you can find so readily on cafeteria lines. It will look better. + +Our waiter forgot to charge us for the soup. I pointed this out, and he comped us anyway. I will definitely continue to patronize an establishment that empowers its staff to make decisions like that without worrying that they're going to get a dock in pay. + +We'll be back, probably first to try out the amazing-looking Happy Hour!",review,HvaVgP0S0dFaCbBDIQIkag,0,1,0 +SDwYQ6eSu1htn8vHWv128g,2012-01-04,sjcP6BpAr80mXlUfD7f2dA,4,"Great! came here with my girlfriend and my mom and left very satisfied! We ordered some of there apparently famous bruschetta, some panini and a bottle of their Zweigel wine from Austria and it was all fantastic! I highly recommend going there and at least getting some wine and bruschetta if nothing else, it is well worth you time! + +Keep singing, + +-Jerron",review,zLZZpwBNB8hWson5dKXEtg,0,0,0 +wct7rZKyZqZftzmAU-vhWQ,2008-08-17,rOGsQLINCnMHjogRuAFhHw,4,"Best Thai I have found in Phoenix, so far. This is not just excellent Thai food for Phoenix, this is excellent Thai food for the Bay Area. It's that good. Thai Lahna's food will intrude into your thoughts for days after you eat here. Like gustatory flashbacks, you will find yourself thinking about how wonderfully flavorful everything was. + +We had dinner here with Christine O & Myles (+1) and shared 2 appetizers and 4 entrees. We had Chicken Satay and Angel Wings. The Satay was the least interesting item we had, it was merely good. Everything else was great. + +Our entrees were Phaht Thai which we ordered with no spice and Khung Nahm Prik Pow which was sauteed shrimp with roasted curry paste, onions, chili, bell peppers and mushrooms. Our friends ordered a spicy pineapple fried rice and a beef dish which I can't recall the name of. All of the dishes were richly flavorful and had plenty of sauce to carry over to the steamed rice. + +One enjoyable highlight was the point counter-point going from the spicy heat of the rice to the almost sweet sauciness of the Phaht Thai. We can't wait to get back here and try more dishes. + +My only complaint about this place is that they need to put some sort of tinting on the windows to a height of about 3 feet. When cars are pulling into the spots right in front of the restaurant some diners were blinded by the headlights.",review,P2kVk4cIWyK4e4h14RhK-Q,4,4,3 +-6O53B-ksqSKzWM6Y9moEQ,2012-05-29,FHo3Zk0LJ6REZ4bLoDBIQg,4,"This location has 2 businesses. A bar and a grill. I never entered the bar. I only eat at the grill for breakfast. I love the food though. This is a great, greasy spoon when you don't care about exotic ""gourmet"" concoctions an upscale location or an eye catching electronic sign. This place serves your standard menu items. Quality food, reasonable prices and low overhead. Just the way I like it! The other reviewers commented on the owner and her abrasive nature. I agree she is abrasive but only at first glance. She is funny and sweet if you give her a chance.",review,CkwbQmJTc4uiCbVBZO8iIQ,0,0,0 +x-QxnXWvV9m8FNAeIsnoFw,2011-08-31,U-lP9UlO9B_vMYPY0jh1EA,5,"This place is great! I called at 8:30 am to make an appointment for that afternoon for 3 people. The place wasn't open yet, but the phone was forwarded to I think the owner's cell. He told me he would be at the store at 9:30 and he'd call me back when he had the schedule in front of him. Sure enough, at 9:30 he called me back and was able to schedule our appointments for 3pm. + +When we got there we were immediately brought back to a small room that had 3 big, comfy chairs. We sat down and a couple minutes later they brought in 3 tubs of warm water for our feet. They reclined the chairs and started at our heads. They massage your face, head, neck, shoulders, arms, hands, feet and calves. The they tell you to turn over, as they quickly turn the recliner into a massage table and proceed to massage your whole back side....all fully clothed. It was just wonderful....and all for $30! I definitely recommend!",review,MIvCXHgE_vcKz7lYS5FPvg,0,2,0 +BpSLpzq_NRYghGSsb10G3A,2008-08-02,soz3rgTDeV_WjUcPkEXJrw,4,"Fecking Great. + +Update: + +Went for lunch: This time I thought the corned beef taquitos even better than last, curry chips tad saltier. Still loving the appetizers and the cider. This time had the cottage pie, it's really nothing to write home about, specially if you are from the region and your parent's wouldn't appreciate you seeing other cottage pies;) Spend the extra on the sheperds it's really much better. This was ok , really really nothing special and the heat could have been better. Service is good, but pedestrian , the last time I had no time pressure, this time I did. We're sitting at 3.5 - 3.75 now with the round up till 4. Still I'll return + + +Original Review: + First thanks to Julie P for pointing out that this place exists. That it's within stumbling distance of the house ( think prolonged zombie stumble over an hour versus a quick trip and recover) is even better. +Cider on tap is Strongbow and you get it in a real pint., Yay. Sadly that's all they have and there's no bottled ones to try , Strongbow is the Bud of UK ciders and while it's way better than no cider or what passes for beer here it's not that hard to stock more of a common drink for a themed bar. + +Onto the Food (I'll get to it as a venue some other time) +Appetizers. Curry and chips was exactly what it should have been and a generation of Irish and UK kids have grown up with this for lunch at the local chip shop. + +The corned beef and cabbage taquitos I think are moving up to be our #1 appetizer that's not a hot wing. Taste of these and the hot mustart / tomatillo salsa on the base compliment each other nicely. Not heavy on the fat and delightfully crunchy. For once an Irish restaurant trying to do something other than name US staples with cute regional names. + +Main: Salad and the sheperd's pie. Let's not get into the salad it's a waste of time reviewing vegetables. The pie is pretty good and none of the flavours overwhelm each other. Not sure the champ ( mashed potatos ) atop them live up to what lies below but it's more a personal texture issue than it spoiled the overall dish. + +Bread and Butter pudding is really good but please if you have any trouble sleeping after reading nutrition sheets as to the fat and carb content of your meal DON'T just eat it and run round the block four times before getting back in the car. + +Oddity? parsley flakes on all the plates to make it green , please just buy green speckled plates , it's classier:D At the end got a coupon for 25% off the next bill which I will certainly take them up on. It's as good for food as any of the valley's Irish bars ( better imho) but have to get back on pub quiz night to really know. + +Were in too early to hear the band but you can look at the pa, the space and know it's going to sound bad ( place looks like standing wave city) with anything electric and full drum set. The jukebox played ""i'm too sexy "" by Right said fred WTF that really messed up the ambience.Country bars don't have NIN on the box after all.",review,N3L6SDymSRkYQtTiSDmXSg,3,3,2 +GpM75HH17EN6T8-Zoz93AA,2009-01-24,ePrwqwZ0w8RmeMcxym3EpA,5,"i miss this place so much, it's insanity. + +ten high kentucky bourbon is all i can say.. and i never really cared how bad i felt the next day.",review,pU2lBD_W3VNvpzKZsRzi2A,1,1,1 +DlCtdbceo4YNSI53cCL2lg,2010-05-02,88pcmUu2Lsv_6vOKH81lHw,3,"I had business downtown this morning, so I stopped in here for lunch, right around the corner. I used to go to OSF in Newport Beach, CA way back in the '70s, & I was somewhat amazed that they are still around & that there's one in Phoenix! + +Stepping inside, this is the most junked-up restaurant I've ever been to!!! Ok, except maybe Bahooka Ribs & Grog!* It's a big place, with soft lighting inside, & rooms all over the place stuffed with tons of furniture, barrels, & so on, cluttering up every one of them! It's all on purpose, of course, & my booth in the midst of all this craziness was actually completely ok. (The floor elevation is up & down all over the place, too!) + +Ok, so for my first time (in about 35 years!) I just ordered the ""Pasta Classics - Rich Meat Sauce"", which is their way of saying, ""Spaghetti."" + +Some good things: + +* I started with a cup of coffee, & it was excellent! + +* Pretty soon came a mixed lettuce salad, which was simple, but the Ranch Dressing was really tasty! + +* The next thing to hit the table was a little loaf about three by eight inches of hot Sourdough bread, with a cup of whipped garlic butter, all on a breadboard with a suitable knife for cutting it. It was great!! + +A couple of less wonderful things: + +* Some girl (from the kitchen?) brought my spaghetti before I was finished with my salad. + +* I thought the spaghetti sauce was ok, but not great. + +Bottom line: They give you plenty to eat here. My meal included the beverage, salad (or soup), the hot bread, entree, & dessert. It was nice & filling, & a good value at $9.99 for everything. :-) + +* Rosemead, CA (& formerly also West Covina).",review,ikm0UCahtK34LbLCEw4YTw,5,8,7 +LYyGQgL60VKdV-p_9OxmWQ,2010-01-07,75WRKGIQMMXhKMeUuCIY3w,5,"Unlike other reviewers, I didn't like the buffet, though my friends from work think it's a good value. However, I've been going for dinner to Flavors of India for nearly three years now, and have ALWAYS liked the food. FOI is my first choice for Indian cuisine in Phoenix, out of the four other Indian restaurants in the valley I've tried. + +Yes, FOI is in a strip mall, but once inside, the ambiance is pleasant. It seems quite clean, I never got sick from anything I ate there (that's saying a lot, as I admit to being a fussy eater), and the waitstaff is helpful. Bollywood videos on the large flat-screen wall display in the corner are an unusual feature, but the volume is low or completely muted, so you can watch or choose not to, it isn't distracting. (Here's a footnote about that: I ate at FOI on the night of the presidential primary election. My dining companion noticed that most of the waitstaff was gathered around the TV in the bar, watching electoral results, so he asked our waiter if we could watch too. After getting the enthusiastic okay from the two other occupied tables, it was quite late in the evening, silent Bollywood was replaced by live news coverage with volume turned on). + +Regarding the food: I love their mattar paneer (cooked peas in a tasty curried gravy, with small cubes of homemade mild-tasting cheese). My super-spicy friend gets the lamb vindaloo (super-spiced as he requests). Tandoori shrimp, chicken and tikka masala are good though a bit pricier, the samosa appetizer (lightly battered and deep-fried cut vegetables) is fresh, warm and crunchy. Regular and garlic nan bread are everything they should be, biryani rice is overpriced (I'd stick with basmati rice as a side dish), and sweet lassi (a well-chilled dairy drink, similar in taste and consistency to a vanilla yogurt smoothy) is a nice treat. My spicy friend says his gin-and-tonic was weak, and they don't have ingredients to make a Bloody Mary, but hey, FOI is an Indian restaurant, so I can't fault them too much for that! + +Other pluses: open a bit later than many Phoenix restaurants (seating ends at 9:30 pm); very fast with takeout orders; there's lots of parking; the 16 North bus stop is nearby; silverware, glasses, white cotton tablecloths and napkins are always spotlessly clean.",review,8VikyrWXFKL8GU1a9t-o6Q,1,1,0 +nts2OALwvyvfNh9focRZ3w,2011-09-06,jL4VbnAphrhZTfrH_WJM9g,5,Just had takeout from here. Amazing as always!!! Had the carne asada torta. DDelish!!!!,review,1lNo1hVxPsTLHWfQoiORSQ,1,1,0 +7QSYBp2-AOdyUJXEaLnbgA,2012-11-29,aKDiEOhSMwcq0IHH8Ra7WA,5,"The chicken was unreal good! And, the cornbread, just as reviewers stated was heavenly. It was light and very good!",review,tVoCVBUg-ubBMLQlX5_SVQ,0,0,0 +PZv6SPORD9ivj4jwKvGgjQ,2012-10-28,VCyJyiitF6UjJIIeaTuuuQ,2,"This is a some what conflicted review. Again, I wish Yelp would allow us to review multiple things. The staff was extremely friendly (maybe a tad too talkative), the location was nice and clean. The food LOOKED great. + +The pizza just wasn't that good. It's just way too sweet. And when I say sweet, it's so extreme that it overshadows anything else about their pizza. It's so different in taste, it makes it seem like the wrong sauce was used. (I know it wasn't) + +If you don't like sweet sauce, then order something else as their was nothing else remotely wrong with the rest of my dinner. It's just I've had about 1000 other better pizzas.",review,cXZFEVY_mEb0Itn9fyxN5A,0,0,0 +qXQ3ZBdwI3GlbR5-eYWqNA,2007-07-19,GoMNItcEppD35cWj2QZFew,4,"I went to Saba's feeling a little scared. Fast food Greek in a strip mall? This could go one of two ways...surprisingly good or health code violation bad. + +I am very glad to say it didn't end being the latter. In fact, the food here was pretty damn good. I did expect Saba's to be an order at the counter joint, so I was a little disappointed to see it was actually a tiny restaurant. I like my Greek fast and cheap, okay? But I got over it, got a table and began the interminable wait for our server to stop chatting with other diners and take our order. + +The menu has all the normal Greek items, including falafel- little fried balls of joy I might add- gyros, vegetarian platters, spanakopita and dolmas. Prices for the sandwiches and gyros are pretty cheap, but when you venture into the platter territory, you're going to pay for it. Platters start around $10 and go up. I ordered the falafel, of course, and so did my boyfriend. The pita sandwiches don't come with any sides, so we ordered a basket of fries to go along with our meal. + +The dcor was pretty cool with big pictures of Greece all over the walls and the classic Greek music piped in. Unfortunately, not even the Greek music could mask the hideous, loud tool of a diner that was sitting at the table in front of me. He was one of those idiots that has to talk so loud, even the half-deaf cook in the kitchen can hear him. He was so loud I felt like I should respond to his questions. Hey moron- saying things like ""I like it loose, like my women,"" is just not funny. + +Anyways, when we finally got our food, it was really good. The falafel pita and the fries were tasty, but our server sucked. He obviously knew the loud tool, and kept chatting with him while we waited for our check. That was a little annoying, but overall, Saba's is a good choice for a quick Greek meal.",review,0CMz8YaO3f8xu4KqQgKb9Q,5,5,4 +JiLK9QPjd53pOBEAaY83lw,2011-02-22,5FSz9K2wb8P6fpCfhAglkQ,4,"I love the Penang Curry at the Thai House! Better than any other place I've had. Too, the lunch special is one of the best deals in town. The spring rolls are pretty good, although I'm not crazy about the sauce, it's a bit too thick and sticky for my liking. The service is okay, during lunch they could use additional help, servers are literally jogging to service their tables. Overall, it's a great spot - I'm definitely eating there a few times a month if not more.",review,E_6QWOFzPdGhIzaV3MlBXw,0,0,0 +qfDYECGmZmc4ofVpXNyFJQ,2011-11-12,t0Wn9BP_22VXDjG997hmXw,3,"4 stars for the patrons that attended. good looking, generally friendly, and hardly any douchebags. +2 stars for the cleanliness. I was there last night for a reserved, catered party and even though the food had run it's course on the patio, nobody cleaned it up. fantastic decor coupled with disgusting expired looking food +2 stars for the bar service. ordered drinks three times and despite being at the barfront, it took 15mins each time to get a drink - which was generally underserved and overpriced. and this wait time wasnt just because sex girls were getting served... the bartenders were just that poor +3 stars for the ambiance. music, staff, mood of the club. +2.75 stars overall. with places similar to this such as mabels and az88, i prob wouldnt go back to this place unless invited.",review,B_leEp0XWSNi5_HQ_BLAAg,0,0,0 +-sAoGZTnFtDZUY9JYWHqlg,2012-10-10,rR3hTIr3wxCLZ8FzU9Keng,2,"Well what can i say, if you like a club atmosphere and girls have naked walking around at night this is your type of place. It felt to me like this hotel was trying to be a hotel that you would find in vegas. the rooms are overpriced, there is no storage in them and they give you like 5 hangers total. The water here is awful so dont drink it. The pool area is nice, and the room service is very quick. So those aspects of this hotel are nice. I am not sure i would spend 300 buks to stay here though again. I am not really into the party scene but if you are this might be your kind of place. Id rather be at a pub bar or sports bar personally but to each their own!",review,Ajrx5XuFoBqZk3HKAm76-w,0,1,0 +DRuE7KNz8vGR1_X1h9fiSA,2010-02-16,3BiFRC-W8IY2QQbx7v8cWA,4,"If its cold, creamy ,sweet, and I can put many a topping of choice on it and its fat free and low calories, I'm all in. Golden spoon is this and more. Simply delicious flavors and all around good. Need I say more?",review,3VIRjR2V29TOaI9u64hMig,1,1,1 +MAFjNfDWJRgWCw8IOC7mew,2012-01-23,b6wmNM-d15ii_VAdEmstZg,4,My wife and I ate here when we were in town for the B&J auto auction. The food was good and affordable. We liked the fact that they had a full bar and we were able to have a couple of tasty Margaritas. Staff was friendly overall we had a good dining experience.,review,PO_Q5sx5AlY3HKGsSa1hmw,0,0,0 +WwIBWuyavda4DggXh8pPNg,2011-05-20,1DRD_FQ836VScS_AEBJLgg,5,"I am a big fan of this place, either to stop in on a slow Sunday just to see what they have. Their stock rotates pretty frquently so always new interesting things to find. So far I've bought a vintage print, an awesome dress that I have received tons of compliments on, cool earrings, and some other kitchen items. The staff are always friendly. When you go, make sure you check out the Burt Reynolds beefcake poster they have behind the counter. + +Great strore!",review,JXjU9EVUCJ1rmYKxzDXSlQ,0,1,0 +JJDaF4yFPLgQ3u678qyL2w,2012-09-11,YPNq_oUyl5MKRjGShanEEA,5,"There are 3 choices at ASU for game design. Which one you choose depends on why you want to study game design. + +1. Polytechnic = Games are an engineering problem. If you are interested in the engineering of games - go there. The college of technology and innovation http://interactive.asu.edu/?q=hom + +2. Tempe = Games for (Education, Medical, Legal etc) They are closely tied with the education department and the Games for Impact initiative. http://cidse.engineering.asu.edu/ + +3. West = Games as Art (Fine Art) If you want to explore games as a medium and art form this is where you want to go. You can either get a BA -http://newcollege.asu.edu/harcs/degrees/majors/interdisciplinary-arts-and-performance-program or a BS http://newcollege.asu.edu/mns/degrees/computing/applied-computing-program",review,Q4Yy0RkFVtyqsYig8dyg3w,0,0,0 +8z7NiCGUWVXj-Wg9rMJJ_w,2011-07-12,RCFkvo1K8NRYlz_Wag1ZDw,5,"Dana, there is no other like Dana! Even my kids ask to go visit her! I have 4 children, 2 boys ages 3 1/2 and 5 1/2 and 2 girls ages 8 and 19 months. Dana has been cutting their hair for quite some time. They all have a style of their own and have always been happy every time we leave. She has a great shop in Downtown Scottsdale, convenient and is very accomodating. Highly recommended by this Mom and her children!!",review,0CIP-nma5yM9HY1OOBS2yA,0,0,0 +pvMeUi5Lw2O5vIXg9_EvDg,2011-12-23,RA2JIZ-n4MIqcbENT0LFsg,4,"Finally made my way up to this little joint. Owned by a couple of people who live in-State, not a corporate chain but they do have multiple locations. + +Had the DeeZee. Tasty lamb,garbanzo,potato mixture in a thick stew with a side of flavorful broth ""soup"" for slurping. + +Son had chicken kebab, very tender, very juicy, flavorful and served with basmati rice which went well with my lamb too! Came with a cool roasted Roma tomato, spicy red onion pieces and more pita than we could eat. + +Had the hummous, its simple & tasty but too ""chilled"", next time I will ask for an extra plate and stir it up real well before we dip. + +GOOD SERVICE. Friendly order takers give input on the food. HAPPY with my selections. We'll be back. Two full meals with leftovers, hummous and 2 drinks for under $25!",review,6K6GvIJZ_G_luOrVZDwrZw,0,0,0 +EZox45JjYxhwYFbL70wPIA,2007-03-29,R26jQ_9xBU8tk9j3ysLI7g,4,"I love this place because it's right next to my dorm and also, it's one of the few Mexican restaurants that I've found that actually sells a Mole (molay') dish (chocolate and poblano chile's if I'm not mistaken). Try the chicken Mole and you'll really like it... very authentic. + +Chips are great, as is the salsa. You can tell its family owned... you can ask for Mexican cokes too I think. I've gone here twice and I'd go again whenever the stomach callers. + +Sometimes they have a wandering mariachi guy. I always feel awkward when they come around because then you feel like you have to tip, but I think he sensed we were poor college students so he didn't come by. + +I'm not sure what you ordered that you didn't like (to the first reviewer).",review,uGsL74xWb-vDbXCn8u1LkA,0,2,0 +JuBygU4XDjqSeW9okyvbsQ,2012-01-08,FuRD5928_S2gpmGpRG8gyw,5,"Great little place in a great little neighborhood. Food was great, service good and friendly and sitting amongst the rose bushes and garden made one feel as if we were having a nice relaxing Sunday breakfast in our backyard. Love the place.",review,IGVVkUvKZsmWAPzbketgjA,0,0,0 +L2J3JfjXZLnX1rLhWKthqA,2008-02-05,vBnGjrTvITilgRQ6_8W16g,4,"There's not much more I can say about Rula that hasn't already been said. Except, I guess, I can tell you why I like this place. I like it for two glorious words: HAPPY + HOUR. + +Yes, those two words matters so much to me. Rula offers 1/2 off all appetizers and discounts on pints. What could be better? I say try the brie, for it comes with an unbelievable apple chutney. If you're looking to split an entree with a friend, opt for the lamb stew - served with a side of soda bread. The stew is hearty and the serving is huge. I've also had the shepherd's pie, which was pretty tasty. Way too large for one person, though. + +Also, I discovered that Rula can make ya a Raspberry or Chocolate Guinness. I don't know how either tastes, for I went with a plain (but satisfying) pint. I asked to sample the concoctions, but was told Rula doesn't let people sample liquors. Fair enough. + +If I could change one thing about this place (ok, maybe more than one thing), I'd have a larger beer selection - even sold by the bottle. I'd also make it less noisy and crowded at night. If you don't get there early enough to stake your spot, you're likely to be standing the entire time. That doesn't make for a very comfortable experience. Word to wise: take advantage of Rula's casual atmosphere and leave your ridiculously high heels at home. + +It's great that Rula offers live music. I wish they offered more. Sure, the outside patio is great, but what if I'm in the mood to play darts? I guess I'll have to go to another bar for that... and for the beer I'm really craving. + +WORD TO NON-MEAT EATERS: +Try their veggie burger thingy - with mushrooms, peppers and such all heaped between two soft and delicious pieces of bun. Yum. It comes served with fresh, crispy and DIVINE 'tator wedges. These ain't your normal french fries, people. I STILL have cravings for them! + +Rula Bula's food deserves 5 stars!",review,APLIPfq1Rf8QyhHHk2uAyA,2,4,0 +ujLZmyy11g1JHCQTxRA3Dw,2012-04-22,NeLthtGs80ad0BFE7yjv0w,3,"I don't know why I waited so long to try this place when it is literally right around the corner from my house. I think its because I went to the one in Ahwatukee a long time ago and didn't care for the food. But I don't think they have the same owners since the websites are totally different. But anyway, on to the review. + +We ordered takeout and I was very impressed with how nicely it was all packaged and how quickly it was ready. Also, the woman on the phone was very friendly, easy to understand in spite of an accent, and patient in explaining the menu items that I was unfamiliar with. All the appetizers sounded so good, we decided to get a bunch so the hubby and I could just pick at them since he was sick and didn't have much of an appetite. However, the portions were bigger than expected so we ended up with quite a lot of food. Lettuce wraps were very tasty, I loved the dressing on them. Eggrolls were good but a little too much ""wrapper"" and not enough filling IMO. Sweet potato chips were not what I was expecting, they were the white sweet potatoes that really don't have much taste to them and they were deep fried with I believe a panko breading on them. A little bland but the sweet/hot dipping sauce they came with was fantastic. I loved it so much I would order this again just for the sauce. Also got some chicken soup for the sick hubby which I didn't try but he said was quite good. I threw in some pad thai noodles since that basic dish is always my test when evaluating a new Thai restaurant. I asked for a four (out of five) on the spiciness scale and that was perfect for me. I was very pleased at the heat level and overall flavor of the dish. So many places hold back on the chiles if you are American, even if I insist I want it hot, and I have never understood why. The only thing missing was a squeeze of lime and garnish of fresh cilantro that I like on my pad thai. Presumably you could get that upon request if you were dining in, it was no big deal to me since I had some at home. + +I still prefer Yupha's as the best Thai in the area. But I will definitely be back here for takeout because of the friendly, speedy service and convenient location. I noticed some wine bottles in the back when I was picking up my food so that may entice me to dine-in at some point as well.",review,VPXgY9lGJF3XC4ZpusxNuA,2,3,1 +nBfusVbqwul0BU0Rcrlelw,2011-10-26,C8cgoIpYOQ34M2aQviePcg,4,Food is consistently tasty and people are way cool. Take care of your bartenders!,review,3gUcAKxaPfUlJIHqNRMGHQ,0,1,0 +-sC66z4SO3tR7nFCjfQwuQ,2009-07-30,mB17dzreCHZs4QhnHRAp3w,5,"Why am I trying to hide my love... + +I'm at Gallo Blanco Cafe at least three times a week. Yes, it's totally convenient. But then again, so is that Rice Stick in a Bowl place around the corner and I'm never there! + +I'm trading in my four stars for five stars. I never get tired of the food (which is totally delish), the drinks, the jolt in the coffee, the servers...and THE HOTEL!! + +You guys always treat me well, and I can see you treat everyone else like a rock star too. + +Thanks for being a great 'light rail convenient' local business!",review,Yik3_gi3e2F5WsKOFm14QQ,3,2,2 +53YGfwmbW73JhFiemNeyzQ,2012-09-25,y0hIX_5HWANLM0keAUqe-Q,3,"It was nice but not a great experience. The music was very loud. The waitress was very helpful and knew the menu and the wines and made some good recommendations (love the Newton Chard). We split a salad and a pizza. The watermelon salad was an incredible medley of complex flavors - the red chili giving the watermelon, avocado and goat cheese some kick to offset the sweetness. Very interesting. We got the funghi trifolati pizza and it was just ok. After the first wonderful taste of mushrooms, it was all very bland with nothing to make it stand out. I think next time I would try sitting on the patio as that looked very inviting and relaxing.",review,VgdDYz0-i1kDszfEu5nFdg,0,0,0 +gI4jThFNwy73SzaNvi-1dw,2008-04-01,RTTXp5yKNSKFDg70nIagJQ,4,"While my partner and I don't normally like chain restaurants Ling & Louie's is an exception. They're a small chain of only two restaurants they are franchising. + +We both started with Miso soup which was okay. Then we moved on to Potstickers, on of our favorites. they were very good, but not outstanding. For our entree's I ordered Firecracker Chicken with Broccoli and my partner ordered Meatball Sliders. The Chicken was VERY spicy, but also very good. I didn't have room to try the Meatball Sliders but here they were also very good. All-in-all it was a pretty good meal and the service was perfect.",review,Sa64rQmghfE9i17_dRIDyw,1,3,1 +Zg-C1aYcoR2L5OIrA01MkQ,2011-04-05,ns6TGzpmxMsv8TIFg4-kpQ,5,"love the food and the services ,but you neesd to weight at 350ib to eat the burgers for free, the burgers are big and jucey",review,u5wb4pqK-yCNR9hdRcAiDA,1,1,0 +cT_rocMh92B9t62Disp6gA,2012-03-05,9d2yxnG3UQf8RuSxqEdz3Q,1,"We found a bandaid with the panang. We ordered panang with chicken, not panang with bandaid. + +When we told the waiter, he argued that it wasn't a bandaid. I'm sorry, there's no mistaking a bandaid! The icing on the cake was that they charged us for it!!! + +If you like bandaid on your dish, this I the place to go! + +Too bad yelp doesn't allow 0 stars. This place definitely was a ZERO.",review,HKZkXR96W6UgAexpX-cKFQ,0,0,0 +u-nMW__EKMYH_PVqacYc3Q,2011-07-30,XEAemMRWs3hMalYqQcyl3w,5,"I love to come here from time to time when I'm in the area and I am always highly satisfied with the food and service. The menu is great and there's a variety of dishes for every taste. The service is great, everyone is always really nice and the atmosphere is quiet and relaxed. Definitely a great place to have dinner/lunch with friends. I read some other reviews from people who complained about the food, mostly these were meat eaters, I'm assuming, so of course they were not satisfied. This is a %100 vegan restaurant, note it.",review,iqP9cGJIVakQfaW3QL3WFA,0,0,0 +fVgrpVyp-nPLTac9YIjTug,2009-06-05,w_xsHHKXmcmcfjy2qYg3Ow,5,"T. Cook's continues to be my go-to spot... with or without my fiance. It's like my home away from home. I feel comfortable going in for a drink or a bite to eat any night of the week. Let me be clear about one thing, however - I always sit at the bar! + +In addition to the regular menu items, the burger at T. Cooks is consistently amazing. This sizable delight is carnivore candy for the soul. Ten ounces of tenderloin burger with white cheddar cheese, bacon and Guiness tempura onion rings on a ciabatta bun with a grain mustard aioli. My mouth is watering just thinking about it right now. + +Anyone up for a burger?",review,PMNbT3Y8KDt7E979AJMyng,1,3,1 +65ujBUIwQ3iGBjymj268IA,2010-07-26,kJqVszekNb3F0yanBVnNzw,5,"I just started taking my car here a few months ago. Someone from their business stopped by my office building with donuts and coupons for a 60,000 mile check up, and that's how they got my business. + +I brought my car there for a routine oil change, and they did the 60,000 mile check up which was very useful. Of course there was the usual list of things I should fix, but they never made me feel like an idiot or that they were taking advantage of me, which I can't say for most mechanics. + +The other thing I really like about them is they give me a ride to and from work, so I can get maintenance done on my car without missing work or worrying about how I'm going to get back to the shop. + +Bill and the other guys that work there are all very friendly and I definitely trust them with my car needs.",review,eJSohFKrMPXVHjOLEcK4_g,0,1,0 +IKDPP8onhaxbM12drBWCKQ,2009-04-22,g2eIDF_bxq6j23rXwlO5vw,5,"I love Lulus cupcakes! They always have a perfect amount of frosting and alot of their cupcakes are better than the ones at sprinkles. This is because they seem to be moister and hold themselves together better. +I love the raven! The Sales people are nice. + So yummy! And I love that the place is pink!",review,zSz_nb1y0fYwfsBOdWCW6Q,1,2,2 +rQ4z0EStSZE4acgkne6Hmg,2011-05-07,siLUMKPdCZUBAAKv7HTeHA,5,"I recommend this to everyone. I have never had a bad meal here. Inexpensive, great service, off the beaten path. Love this place.",review,kk05snSafuIFK0lsxoMNzA,0,2,0 +TtLsZgjqIzWe-OapFGa_aA,2012-02-25,2jBdsDsQ3sKxa9JGDFVhMg,5,I've been going to Orange theory for awhile and I can't believe how much I've toned up and slimmed down!!! I haven't bulked up and now I'm on my way to getting my bikini body back!! I highly recommend this work out!! It's so awesome and I can't believe I can get my full work out in an hour!!!,review,H4HyYjNt9Vcu-a4ZMugdeA,0,1,1 +4K7nR-e9staGTNJk1ez7MA,2011-08-06,h5smYAVKZfIGJH09RBNJ_w,5,"Oh my gooooooooodness! I love this store. I have been a tea enthusiast ever since I received a cast iron tea pot for Christmas. A few weeks ago, I purchased a Groupon for $20 worth of merchandise for $10 and headed over to the store. The experience was amazing. The varieties were intriguing, the prices were reasonable, and the owner was very knowledgeable and friendly. Also, the layout of the store was appealing and inviting. + +When we visited the store, we received a packet of tea for the stores 1st birthday. I hope there will be many more to come.",review,rKiKokChTSYQaoZAkU9kEQ,1,1,0 +fdhydw4SV3rSjq06IL9LVA,2012-03-15,x2QYZVAWKCx3VPvBtmiBTA,1,"After looking for a car wash & vacuum in the area I selectioned Francis & Sons. I checkeed thier priced on thier website, but when I got thier the price they wanted to charge was much more, they kept trying to sell an upholstery cleaning, and then said I don't take care of my care so there would be an additional $20 to clean the black plastic exterior pieces. I only wanted a qhick exterior clean and vacuum. They refused to honor thier website pricing and insisted that what I read on thier website was not on there. Needless to say I didn't get my car washed there. I would highly recommend AVOIDING these crooks.",review,394ECIL6M0w8S-nJypi7Kg,0,4,0 +AqbgC7Gul5Es1rRzGNLDFA,2009-01-15,AG-WoV2KNZd60LGyQA-mpQ,4,"great product, cool concept and atmosphere, would get the 5th star if was more welcoming to hanging out and enjoying with a cup of coffee, but i also can respect the fact that this place is strictly business. like any place if you get there during a rush you are gong to wait, but the trade off is fresh product neatly packaged a for sure spot to check out in old town",review,J2L8E6dYS66cKkV6SHujuA,0,0,0 +2e1jzfiHFGCRpV66gYNVbA,2011-08-14,P4V_MGc-hA6iBRajU4Km4w,5,"I violated my rule of avoiding grocery shopping while hungry and decided to venture over to Whole Foods. Whole Foods tends to be the indecisive individual's nightmare (that would be me). Yet, this store is a foodie's dream. + +There are aisles upon aisles of glorious, wholesome products (pun intended). Everything is meticulously organized and there are at least ten varieties of every type of item. No joke. It took me fifteen minutes to decide which brand of bottled tea would be suitable (and economical). + +I roamed the freshly prepared food section like a vulture circling it's prey...strategizing which choice would be the best taste sensation. Did I want a made-to-order wrap? Or a glass of wine and a couple tapas? (the live music was alluring)...Maybe sushi? Pizza? Salad bar? Soup? Maybe something from the smokehouse...oooh! A cupcake from the cupcake bar? + +On and on it went. + +My final decision was sushi. The spicy tuna roll tasted fresh, and the Pacific salad roll was very crisp. I also grabbed a container of ginger for $1.99--not the artificially preserved pink variety--all-natural pickled ginger. Bliss. I purchased some cucumber salad from the salad bar as a side/palate cleanser. All in all, a very satisfying meal. + +Prices are a tad higher than your average grocery store. Then again, it is Whole Foods. A word of advise: come with a game plan (e.g. a shopping list). If you don't define what it is you want prior to entering this store, you'll end up spending two hours and twice as much money than you anticipated.",review,qZrArI2ohkYkQlELl13BKQ,5,2,4 +fa776KC8le1MHOOws_1PNA,2009-08-27,52CzJDb4EakSjEQOUys77Q,3,"The sales people here are very knowledgable and helpful. They are also very friendly and great with reccomendations. + +I know it is a comic store but I only went there for DnD books/suppliments and ocassional Anime. + +I am pretty sure their Anime is bootleged, but due to how cheap it is and the fact that you usually can't find it anywhere else I don't care. They often come in complete sets for like 30 bucks which is great for a whole series. I have had problems watching them on PS2/Xbox sometimes but due to the price I keep coming back. + +Now then if it weren't for this next part they would have a 4 star. + +They no longer sell DnD books, or Dice sets which breaks my heart. They always had the best selection when it came to dice and I haven't been able to find another place that carries more than 5-6 at a time. + +Out of all the Atomic Comics I have been to I like this one the most, the people there are always fun and inviting I can't stress that enough.",review,E9rN5N6_39vyBVmqwZDqGw,0,0,0 +sb4wU69LkCtC6Axqcd34WQ,2011-09-24,hPBa2_LPhYphpx7XpOKlew,4,Went to Blanco for our 3rd restaurant week meal. Been here before and it's great. the hostess really was having a bad night and just needed to go home. Not one smile or even a hello. When we walked in just a blank stare. Great! (sarcasm) Food and service were otherwise really good. I had the green chile pork enchiladas and I love a good tomatillo sauce. The tres de leche cake was also wonderful! It's kind of loud place and we got to hear the conversation about blow jobs from the table next to us.,review,Up6DnMZnFw2RRjZHkt9Fug,1,1,1 +e34tIpveepWkpvOuv_boqw,2011-07-19,nSe5tNvfDBjSkUAX2Q_M7g,5,"Beautiful little gem of a restaurant. Great outdoor seating, amazing-truly amazing mussels. Wholeheartedly recommend, perfect ""date night"" too.",review,2Oxg0Iwe6BwgrlofA3f21g,0,0,0 +lhRUPA28pRIN1MnllN-o9g,2012-12-29,CyVYUFnUHGo5TafWoP1azg,5,"The restaurant itself is not fancy and does not have an amazing atmosphere, but I really love the food here. I've eaten in the restaurant a few times and frequently get takeout. I love the Gobi Manchurian, Vegetable Vindaloo, and Special Vegetable Curry. I also like the weekend buffet - it's a great way to try several different things. Delicious!",review,O-Offow2UVaab04Wwv9g-w,0,1,0 +7U8TYNW4Mvx6m3zexsO0sg,2008-05-16,_7DelOvcAaPrP-eUXIt-Cw,2,"I know this place has been around forever and is well established in the Valley. But I think its about time for some CPR! Everything about this place inside and out screams old school...all the way down to the service staff's uniforms! Ummmm...has anyone else noticed that this place used to be their parent's old stomping grounds? That's cool but how but making it inviting for the 30-40 yr old crowd? + +I had prime rib that was barely warm and I swear had the flavor of a dry piece of toast! The most bland Prime I've ever had. The ""fresh"" horseradish I requested on the side was even bland. My friend had the buffalo meatloaf (half buffalo/half ground sirloin). Now that my Dear Reader was a home run! Tender and full of flavor! +The ribs were decent and the ""baseball"" fillet was par at best also. + +We went on a Friday night and were 4 of perhaps 20 other people in this huge place! The website reads like its scrumptous. When in fact, the experience was more like waiting in line at the new hot club only to find no one inside! + +Oh....the only redemption was the desert. Pecan pie and their citrus creme brulee....Both make you rub your belly!!! + +Bon Appetite!",review,4IxLt4QvCsJEdaNvH9QApw,0,1,1 +l39y6WX-S6Hh2h35Bv4oNg,2012-06-27,e99_YVWJESEqFfXHZMjdMg,4,Spectacular view and great beer on tap. The atmosphere is one that makes you want to hang out all day and enjoy the view.,review,x5hR5zfQiXBqlYubgv375w,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2012-03-20,aa73X0bZaJmA0SPuu0BDrA,3,"Beyond the attractive decor and nice food-presentation, I wasn't all that impressed by True Food. Certainly the concept of healthy, sustainable, locally bought food is great (albeit in the form of an upscale-chain), but overall, True Food didn't live up to the hype. + +On the positive side, the edamame dumplings with daikon radish and white truffle oil were extremely tasty, and my Ginger Margarita was excellent. + +On the not-so-positive side, the raw ahi tuna app-special was just OK, and the tiny slivers of fish (maybe 8 total?) were more of a ""taste"" than a full appetizer. Even worse, my chicken sausage pizza was slightly burnt on the bottom, and tasted bland and uninspired -- the sausage was finely ground and lacked much flavor, and the fennel was invisible. Added to the long wait (weekend dinner reservations are a must even though the restaurant is huge) and the pay-parking lot (if you stay more than two hours, which we did because of the long wait), we all came away mildly disappointed. + +With many other excellent Phoenix-area restaurants to choose from, we'll head elsewhere next time.",review,gVgbIRT9mJkeWSAzBA9i6g,0,1,0 +FURgKkRFtMK5yKbjYZVVwA,2012-12-29,qKwNZzXPniKiQyDdIhNBEg,4,"Oh my... Delicious! Lunch plans with the girls led us to Windsor on a lovely Sunday afternoon. I had the crab cake BLT ... Crab cakes, yum... add bacon? Amazing! You have your choice of sides and I had Jo's Church Potatoes. This was a really yummy potato casserole. I was wickedly full and incredibly satisfied leaving Windsor (didn't stop me from getting ice cream next door, but that's another review.) And like their parent establishments, they have happy hour every day until 5pm. Woohoo! I highly recommend this for a CenPho lunch or happy hour. Yummmeee!!",review,xdl61MWMguYRSunH8CniQw,0,0,0 +o9nCXNC14VScabiy2bftgw,2011-03-29,uj_bMO6nm-fbghj8EMG-WQ,4,"I was in Scottsdale from California with some friends to catch the end of Dodgers spring training and to get in a couple of rounds of golf. We came here wanting to watch the Lakers game, but unfortunately, they don't have the NBA package so we had to settle on watching the Suns game on ESPN. + +My friends and I ordered the fried clams, a salad and three burgers. We all thought the food was good as well as the service. Drinks were tasty and our server Heather was very attentive and was always coming by to make sure we were well taken care of. We'll definitely come back!",review,scUmhhh16tMpv2vVKw9lqw,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2008-07-10,AHu5r-41HYmM-0Ddjv6HZw,3,"This place does not need another review, but I'll chime in anyway. + +I have been dreaming of coming her for several months after countless hours of drooling over their website. + +I went for a late lunch with the Gorgeous Gabi. +We had the restaurant all to ourselves, it was quiet and comfortable. + +I ended up just ordering a salad, it was so hot out (surprise) and I just wanted something light. +I got a Diet Coke and the Caesar Romero Salad (see pics) it consisted of; mixed greens with cilantro dressing, grilled lemon/herb chicken, fontina, cherry tomatoes and toasted pepitas. + +It was really good, I like the mixed greens in place of the usual romaine and although I didn't taste much cilantro it had great flavor. + +Our waitress was not very attentive at all, when she did come around to grab my empty glass of soda she did not ask me if I'd like another, instead she brought me a glass of water.........with a bug in it! + +I'm giving 3 stars for now, but I will go back because there are still quite a few things on the menu I'd like to try.",review,UsULgP4bKA8RMzs8dQzcsA,2,4,1 +x3ws2L-TlI-JPcEQjjEC9g,2012-02-28,KMixZiFAIsgbFtfCDxJttQ,1,"This has to be the worst restaurant in terms of hygiene. Two of my friends had food -poisoning after having dinner here. The food is just unhealthy with tons of oil floating on the top of curries, and I am not sure if any health/hygiene code is followed here. +The service is poor and the information on its website is incorrect, the owner does not allow dine-in after 9 or 10 even though it says that the restaurant is open till 11. + +One night I saw the owner cleaning the place without gloves and she was nice enough to give us a to-go parcel without cleaning her hands (great example to the servers!). I had a peek inside the kitchen when the door was ajar, and it definitely looked dirty. + +I have been a lot of hole-in-the-wall places around this restaurant, including Haji Baba, the Vietnamese place and others, but neither any of my friends nor I have fallen sick coz of the food. If you need a spicy-food fix, i strongly recommend you do not try this place, lest you want a visit to the doctor the very next day.",review,77UjgOU5vayzFUCFUhykgQ,0,4,1 +SMaed6DT2GCRlM-kFIl-eQ,2012-04-03,DbD5Anjjk64oC9uPW-0onQ,3,Been closed for a long time.,review,w98TrmskPMlMQLpz-Z8EVg,0,3,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2009-07-19,U3cCw_QbYPRH41HxhbYd3g,5,"Once we went to Grimaldi's in Hoboken, NJ and weren't all that impressed. Yet the first time we ate at this Grimaldi's, we were blown away! + +Upon entering, you are enveloped by the aroma of pizza baking in a coal-fired oven. This is swoon-inducing---and I mean that in a good way. The smell almost has you believing that you are in a pizza joint with a coal-fired oven in the Northeast. + +When ordering pizza baked in a coal-fired oven, I like to get a plain cheese pizza. IMO, this is the best way to fully taste the sauce, cheese and crust without anything else get in the way. + +There's nothing like a thin crust pizza from a coal-fired oven with that char on the crust. The crust has just the right balance of crispy and soft. The sauce is well flavored with proper proportions of basil and oregano. The amount of cheese is just right. I love to savor each and every bite. + +There is more to this Grimaldi's than the one under the Brooklyn Bridge. This one has other items in addition to the pizza. We like their antipasto. It has sliced mozzarella which is fresh and creamy, black and green olives (the black ones are pitted, the green ones have pits in them), roasted red pepper slices which are bursting with flavor, and a good, flavorful salami. + +Everytime we're in AZ, it is so worth it to us to deal with the heavy traffic in Old Town Scottsdale to dine at Grimaldi's!",review,16GhsZiS_ybqfHO-7Av07g,1,3,0 +VO13q-11lh7St1gd7JPI3Q,2008-01-21,9uwKBawK2GF_awBTteNt2g,3,"Ok, this is coming from sombody that is not a fan of the Cheesecake factory. +My cousin, her friend, and I walk into the the restaurant and decided to eat in the bar area. We had a very sweet waitperson, Summer. She rocked with suggestions and her personality was great. I had one of their smoothies, just like the one at Cheesecake Factory. It was good, but I have had better at Jumba Juice. I ended up having their angel hair pasta, my cousin had a chicken salad, and friend #3 decided that he would just mooch off our plates. The reason why I hate these types of places is that they give you WAY TOO MUCH FOOD! Why do they do that? Especially with people, like me, that learned that they better clean off their whole plate? I just gained 10 pounds. + +Food was nothing spectacular. My cousin then ordered the Splenda Cheesecake, that she said tastes horrible. (She had the one at Cheesecake Factory, which she thinks is awesome) + +5 stars to the lovely Summer (or was it Winter...I can't remember now...crap!) My cousin actually left her money on the booth. She called the restaurant and Summer actually said she found it and was holding it for her just in case she came back for it. Extra plus for honesty that I didn't even think existed in the world anymore. 2 stars for the mediocre food. And 3 stars to the host stand...a story that I don't have enough energy to even type here.",review,ca2Sa9Enqg2GlWFQ95p8bw,3,3,3 +HvCIOs3WQiycBk_3VqdGYQ,2011-04-14,XeFRi_pCUoEw-TfuhBANtA,1,"Terrible service--they replaced my phone screen and it broke within 2 wks. Phone was not dropped or mishandled, just cracked and ""owner"" would not honor their warranty. They only accept cash--that should be a red flag if you are considering a business like this!",review,RzHNDCGLrGtlB_gRWiOXEQ,0,0,0 +7TMf1NuuAdvhG7IojZSKnw,2010-11-09,OvHF6-irwMIcZcwPXLb7lQ,5,"Championship establishment here. + +I walked in with my significant other and was surprised at how busy it was on a Tuesday night. At first, it didn't click but the entire volleyball team from a nearby high school decided to come so it was extremely busy. + +They have some really good specials, but what really caught my eye was the specialty burgers that are $6. Big misunderstanding, most $6 are single patty and have some special toppings. Zipps decided to do a double-stacked specialtly burger. Yes, two 1/3 lb patties on a bun with some special toppings. We got two burgers and split them half and half, green chile burger and sweet jalapeno. Both were extremely awesome. You can get salad, fries, onion rings or half-half (half fries half onion rings). The fries kind of taste like In-n-Out fries, and my significant other would describe them as being better. I don't agree, and I don't disagree. Overall, good food, I can't wait to come back and try something else from their special menu. The $6 specialty burgers are available Tuesdays from 8-close and weekends from 11-4. + +The service was really awesome. They definitely cared about us and went out of their way to make sure we were doing okay. I think they felt guilty that we were there when a huge group was there as well. Apparently, they also were understaffed, but it honestly did not feel like it. Seriously though, it was some of the best service I've ever had at a Phoenix restaurant. To top it all off, the manager had checked up on us a few times, and at the end after we paid the bill he brought us a cookie platter (pizzookie, or cookie with ice cream). + +Now, I'm not a fan of pizzookie, but wow, their cookie platter was awesome. It wasn't on special that night, but I know its on special some other night and at $4 its probably worth a go again. Might I say one more thing about the cookie platter? It's just as good if not better than BJ's. + +I am actually excited to go here again. With some really good food specials almost any night, I think if I ever run out of ideas this might be the first place I think of. The food is a little greasy, but I think that is expected when you go to a sports grill. Want to lose 50 lbs, go to subway. Props to the owners for such an awesome establishment.",review,LHQ2fuC2RDS-Md_dN2O1IQ,1,1,0 +JMZfcwARQ68n7GGsqmtdaA,2012-09-10,1NXx__E4lfMzoVUIdCFpsQ,5,"This place is amazing! The food was delicious, the waffle was like no other. The service was great, very attentive and nice. I will be returning.",review,xfo0J6gri7wQJ2S_tYc6BA,2,1,1 +gFGldPLVQdqbHQodU5TeUw,2011-10-26,aAonWkbUIzw3q-TOp_npNw,3,It's Pei Wei. The service and food are always satisfactory.,review,WczdDqTWfFbk9P0db2J3YQ,0,0,0 +WixkMVXXFCx-lYsr6JoF6Q,2010-05-18,3RPDdb3Pupa9Rdus7gMDRA,4,"For what Pei Wei is...I love this place. Casual fast dining with great food at a great value. If you've ever been to P.F. Chang's, this place is owned by the same company and offers similar fare. + +Be prepared to wait during peak hours as this place always does a steady business (at all their locations). I often call ahead and order take out. I've had nearly everything on the menu. The Vietnamese Salad rolls are really light and yummy. Can't go wrong with the orange peel chicken. Oh, and the honey seared shrimp is great too...however that one needs to be eaten at the restaurant...it's like an In & Out burger & fries...best eaten ASAP.",review,Hyf725qMfNI5T-52UK9tpw,0,0,0 +cqXv3w9Mf-aVi4PPRspfFQ,2011-12-23,Cov-gwfxQF8KuXrT6vWNbA,2,"Jerry's... Ugh! I try to like you since we live so close to each other but... Ugh! +I have had numerous irritating experiences at Jerry's. In a nutshell... +I use red Prismacolor pencils. I run out and go to Jerry's, they don't have them, don't know if they carry them and and nobody can tell me when and if they might reappear. Why? The (seemingly) canned answer is because the order comes from corporate, in North Carolina or somewhere far, far away where there is no phone or email access. I go to buy Sculpey... OUT! Same answer as to when it might return. I need Faber Castell PITT brush tip markers... OUT! The same story with some airbrush materials. +""Come back Tuesday or Thursday or just give us a call and we'll check if it's in..."" +I can walk to Jerry's in less than 10 mins but I would rather go to AZ Art or anywhere else than have to call everytime I need some stuff. I can go to AZ Art in Tempe and when something is out can order from their mother store and it's there the next day. + +The clerks I have dealt with there are part of my rant. Of the handful that I have dealt with, (mostly morning and daytime) it seems like they don't really know the store well or give a crap to give some insight on their products or company. +They do have a big store and I understand that there is alot of inventory to know about and be able to locate but that is your job. It just seems like nobody that I have dealt with there is really keyed in on knowing their stuff. +I spoke to a gal there who was really chatting me up on her recent art night where she painted this huge piece and blah blah blah but when I asked if she knew when they might have more of the brush tip markers she was mum. ""No clue."" +Jerry's, just clean it up and have your people act toward you and your customers with the same passion they have with their own art. Do this and I will try to like you again.",review,fJSbP73QyGHkA1TmT6I71Q,0,0,2 +4NpEP2sTOxm4Cw1SuXuGRQ,2008-11-23,OxDuLpG3t4IjgZAqX6VRLQ,4,"Great neighborhood sports bar. They've got something like 35 HD TV's all arranged so you can get a good view no matter where you sit. The staff is friendly, drinks are inexpensive (like $10.00 for 1 beer and 2 vodka/soda), and their food is tasty. They have a large comfy outdoor seating area if you want to catch some fresh air. + +My only complaint about this place is on the weekends they usually have a cover band... not that the band is terrible or anything (i think they switch it up so it's not always the same band anyway), but they're loud and if you're there to watch a game, forget about hearing anything relating to the game, including the people you are with. I can see how this could go either way with people since it does add kinda a rockin' environment, which is nice, depending on your mood. + +Oh and they have those satellite speaker things so you have this box at your table and you can tune the sound to whichever game you're interested in listening to, not that it matters when the band is playing, but every other time it's cool.",review,waD2euOMPTnTzQ0thq3H6Q,3,3,1 +3QhPvyen9kSiAxduT8g3bQ,2011-07-19,eTa5KD-LTgQv6UT1Zmijmw,4,"Very cool neighborhood restaurant and wine bar in North Scottsdale. The bartender was extremely friendly and helpful and the selection was great. The pizzas looked fantastic, so we'll be coming back to try them out!",review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +8SvCSiGwtaGL2Z78tRSSlQ,2012-11-08,GvmiObAQEc9af2hY0vmChw,2,"Not very impressed. Burger was ok, fries Looked great, but mushy +Try Smashburger!! Sooo much better",review,BaHlhZ4dUO1AUY87ZXY6Tg,0,0,0 +qTx2IZG66_B2US3L_4TnDA,2012-07-08,749N8txx9Nd_JqU6X7qAAA,4,"This review was posted over a year ago, however, it was removed by Yelp HQ only last week. +I'm reposting it after making some minor modifications, mainly since the response and comments were so positive.... by everyone except Yelp HQ. + + +Whole Foods Market. +Ladies, you're young and vibrant...today. +But as the years drag on, you notice changes. Subtle changes, such as: + +*crow's feet +*saddlebags +*sagging butt and or tits, +*and orange skin from all the tanning products, your complexion now resembling that Louie V handbag you've been toting your Shitzadoodle around in. + +You've got a choice to make. + +Spend all your money now on organic, free range shit, this in an effort to remain healthy looking, or, shop for a lot of the same stuff at Costco, where you can load up, get twice your money's worth, and have a shitload of cardboard boxes you won't have a clue what to do with. + +But the real bonus will be how in only a few short years, you'll have saved enough money for a good plastic surgeon, which you're going to need anyway if you have any plans to remain living in Scottsdale for any length of time. + +My opinion? +I highly recommend the latter and here's why. + +Scottsdale has a serious shortage of fish-lipped women with feline looking facial features, who routinely wear yoga pants telegraphing their hiked-up thongs. +Poor thong....how sad that your fate...to be cast to a fifty-something, saggy-butt host. +Ladies, is that what you want? +To idly standby, watching, as the ranks of this bass-cat looking oddity dwindle in population? +I didn't think so. + +The choice is yours. +Beautiful and broke from shopping at Whole Foods today. +Or, aging not so gracefully with the help of medical science, an overzealous plastic surgeon, and Victoria's Secret, which I assure you with one of her thongs in yoga pants will be anything but. +A lot of good all that free range organic crap did. + +If you do come here, try the hot deli, where you can get every kind of ethnic food, save for Ethiopian. It helps after a late night at work, on your way home, when you don't feel like eating fast food. They also have a taco and pizza bar, fresh bakery, and a smoked meats section where you can get some of the worst barbecue and smoked meats I've ever tasted. +The only thing I'll recommend in this place other than the hot deli, is the chocolate and coffee bar, which seems to have a ton of delights that are supposedly good for you. +I doubt it.",review,iwUN95LIaEr75TZE_JC6bg,3,1,4 +iDoigI3605ixHl_qHly3Tg,2011-01-01,OXmGQvOqiULJlLPGgGW0jA,5,"We make it a tradition to come here whenever family is in town. So I've probably been here atleast 10 times. + +Love their steak with buttered plates. We've had it before where the streak wasnt cooked to our satisfaction. But after being there so many times I know how to order it. Sweet potato casserole is excellent. Cesar salad is the best I've ever had. On this occasion the wait staff was very friendly, but I've had it before where they are like buzzing bees. I usually like to have tea after dinner which is always nice. + +The atmosphere is good. It is nicer to sit in the main dining area near the windows instead of the side room. + +Also people if you are going to spend hundred dollars on dinner, don't cheap out on a babysitter. Nobody wants to listen to your whinnying little brat kids who can't sit still. Ruth Chris should have an age requirement! + +I've been to Mortons twice. Once in Chicago and once in Phoenix and both times it wasn't as good as Ruth Chris.",review,VNEqps27mp8-gTqTfzg7yw,0,1,1 +SgTjnyElc26gPUghVuCuSQ,2008-06-04,QDLI0C8YCppB5hFjLFhFYg,4,"my husband and I started going to Keegan's on Sunday's for their brunch, which is pretty decent. If you get there after 10am, the bar is open, which is a plus in my book. +We've eaten lunch and dinner there a few times as well. They have a really good french onion soup, another soup I think was chicken pepper jack and the cobb sandwich is good. Their chicken fried steak is pretty good as well. They give you two decent sized steaks covered in mashed potatoes and gravy. +The bar is good as they have a great selection of beers. +I also love their ice tea, it always hits the spot.",review,HP_xZYNC5XK-VyNrnHbtRQ,2,3,1 +GjvIDOEhdQB1oPrFeSpxBw,2011-03-20,U2LlqjEFA6XYzADd-BkqLQ,2,Hostess staff were a few unorganized morons-- it appeared as if it was literally their first night on the job. Maybe too many of them? The service was fast but I wouldn't say friendly. She made a few mistakes with our order-- gave my daughter a cheese pizza when we ordered pepperoni.. She put a glass right in front of my 22 mo old who grabbed it right away of course-- few other rookie mistakes like that. Calamari- gross. Lobster/crab tacos with white bland rice-- don't order it. My husband was happy with ribeye and atmosphere is cool and clean.,review,SLtSL-N1RfTcDUdW5I4z5w,0,1,0 +ss5gVggeSmAgMUeL65UvYw,2012-11-26,mDJucjHAjoxhDHXd9MvCDQ,5,"Postinos on the East side!? + +Whoa, you like to think that you're immune to Postinos, oh yeah +It's closer to the truth to say I can't get enough +You know I'm gonna have to face it, I'm addicted to Postinos + +Thanks Robert Palmer and let's just say I wouldn't be surprised to see the fashion models around here. Very attractive crowd! I am honor just to be here! + +Another bottle of wine and you'll be mine, a one track mind +I can't be saved +4 flavors of Bruschetta is all I crave +If there's some left for you +and don't mind if I do + +I might as well face it I'm addicted to Postinos + +I've always enjoyed attending Postinos on the West side of town, but the East side adds a new flavor. The place still has a great deal on Monday and Tuesday nights. Bottle of wine plus a large plate of bruschetta's for $20! The ambience is always chill and low lighting. Quite romantic and add some pretty ladies and I'm golden here! Service is always great at Postinos. The staff is definitely well train in the knowledge of wine and their service is spectacular! - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,2,2,2 +L2J3JfjXZLnX1rLhWKthqA,2010-02-20,-NZSTwgm1d03JjIDZWq01A,5,"Rula Bula gets five stars from me for two reasons: + +#1 Perfect fish and chips. +#2 One of the only correctly poured Guinness drafts in AZ. + +They could punch me in the neck when I walked in, and i would still give them five stars for those two reasons. + +Almost all the food is good (though I can count the number of times I've had anything other than the above on one hand). The happy hour is great, with half off appetizers, including the fish nuggets, which are the fish 'n' chips I eat before I eat the fish 'n' chips. + +The world's most competitive trivia night. These people STUDY for trivia night. + +Great outdoor seating, good service. Decor is interesting, especially if you like this particular famous race horse that I currently forget the name of but is the subject of approximately 90% of the wall art.",review,XMEBJp8mmpz3vsSkvg9T9Q,2,2,2 +h1kwVr1eTpBK0rWfcm5QSg,2012-04-25,vJ8Pz1HHH-srCcatKvx5Uw,2,"I used to frequent the Buffalo Wild Wings on Litchfield and Bell and never had a bad experience. Whether it was fight night on a Saturday evening or a lazy Tuesday dinner, I never was worried about the overall experience at that location. + +This location, on the other hand, could take some hints from there now defunct location to the west. I have been to this location 4 times with each visit hoping the previous one was a fluke. I always would get their flagship item as well, wings. I like the spicy garlic which I find as the best balance between flavor and heat. Each time the chicken was either overcooked, under sauced, or both. Why can't they do their staple item right each and every time? Major disappointment, times 4. + +I won't elaborate on the other shortcomings of this location because they are too many. The bullet points are that the service is very lackadaisical with anything. You sit down waiting longer for the service to take your order than it takes to get it out to you. On multiple occasions a buddy of mine who I went with each time felt compelled to recite Reservoir Dogs lines when it came to drink refills. They were few and far between. Finally, I don't sit at the bar because I like to speak with the company I am in, but that was virtually impossible. This wasn't just on event nights either. The volume of the speakers didn't vary anytime, not even in the middle of the week during lunch. + +I want a good Buffalo Wild Wings in my area badly. I have to travel to get to this location and would happily if they delivered on what I was used to. I guess I am off to find another of the few that are actually still open until I see this location pick up its game.",review,Mwt1AlYH5p5eNss-2ai5OA,0,1,0 +4gxZ5tPEqm0QnRkILa9cNQ,2010-08-14,KakKzsqS2FLLo1M6GDT8HA,4,"Ok, so this business is currently run from a mobile kitchen. Now I do mean that it is a kitchen. The crepes are made to order, the ingredients are absolutely fresh and delicious. They are currently going to various farmers markets, Old Town Scottsdale and Awatuke, and going to private parties when they are asked. +So when you have the chance to find where they are and try them. You won't be disappointed at all. They are great. +Also check then out on twitter.",review,pWdtEqtIb9YD_rdogPG-DQ,1,1,0 +NQhPkGeHiljeg7tXPTHJeA,2012-01-09,uB1JFooxz56eewl4kT71Pg,4,"Probably go to this location, or the one at Arrowhead, once a month. Very much a fan and rarely disappointed with each visit. They usually have coupons online and they take them from your smartphone! The only gripe I have is that their bananas at breakfast are usually still a little too green to be tasty. Although the donut muffins make up for it! Recommended for all meals, but lunch and dinner are usually a little better. Screw Flanders.",review,JEHGgY_fGtRCXur03C9fQQ,0,0,0 +HUR7B6X_f_V_50w4pfoyyQ,2011-11-25,3-qrOeFDNh7L9P3Ksg9aGw,5,"One of my favorite places to come. Their salsa and guacamole is to die for. I like that they bring each person their own individual bowl of salsa. + +I ways get their huevos rancheros with beans and rice + homemade flour tortilla. Delicious!!! + +I eat the entire plate every time.",review,90lIhRatefq0kwwKu0ceCw,0,1,0 +xtX2qS64zP2NRPV_7NNqHw,2012-09-01,LuflJdPvkuCA2qUiwFBwUA,5,"Great place, enjoyed the amenities. Pool was great and view on the property was very picturesque. Food in the property restaurants were very good. Definitely would stay there again if ever in Scottsdale again.",review,9ojXl2cwWhK2U92Kbc0qzw,0,0,0 +RUZvUPOn90ScX60eETwcCw,2011-02-15,osscZipO5QVterKGsewH_A,5,"What would I do without this place? They pretty much anything you need to make any Asian home cooked meals. Very clean. Fresh produce, fresh seafood, fresh meat. I love how they have pre sliced meats. This is definitely one of the largest Asian supermarkets in the valley. Avoid the the 2 asian restaurants in the market though. They're not very good.",review,s7Tm9oYWqRlBm5ex2OQ1nw,0,0,0 +wZwZcte4lcbu51NOzCjWbQ,2012-04-12,3uNHhkulmHBHkcjAW8K0wg,4,"A great experience every time we make it here. Where else can you slide into the dining room? We always have large groups and they are very accomodating, every table we've been at affords a beautiful view at sunset. They try to make it a complete experience. +Servers are always very helpful and attentive. Steaks are good and the sides are good if not very inventive. The birthday dessert and cotton candy really cap off the dinners.",review,ProoN4h8kx-OSez1zBCYgg,0,1,0 +qW9UysjJw3y3CwEbzruEEw,2011-12-07,Aczfhjkc5Wfsw1ghBkPHSg,4,"Went in to pick up lunch. I ordered the bean & cheese burrito (per Yelpers recommendation). +It took a LONG time for my order to be ready, next time I will definitely call ahead. The price was awesome and the food was really good. +I anxious to try more items on the menu!",review,0o0VMEJeQY0pAAZ9nxErBA,2,2,2 +Epw24kOK4s9kvnf9I6XoCA,2010-03-23,6wwOvRPdxRvnzeSmPcKmPw,5,"love. Love. LOVE. + +How can you not fall in love with this store the moment you walk in is beyond me. It's like entering that magical fairy tale land your mind goes to every time I start to sing or sit down at my piano. And that's exactly what a music store should be. It should bring you to that creative center where the outside world doesn't exist. + +First and foremost, the staff is extremely friendly, both on the phone and in person. I've spent I don't know how much of their time having them assist me in finding sheet music and they've always been a gem and even gone so far as to go google searches for me while I was there and give me some additional leads. It's just an awesome amazing experience. + +They also never seem to mind me going in and gawking at instruments for hours on end. I always tell myself someday I am going to learn a new instrument, and going in there causes me to think of at least 10 I want to play... especially when I stare at the drums. + +Go to Milano and experience what a music store is supposed to be.",review,7zDqr2I0-xpw9HF5Ha54cA,2,1,0 +TuCAYZ89lP_s6D7Y78xNhQ,2011-05-16,wmeQoT0hHwlmuzN58azzzg,3,"I've decided to up the rating of this place to 3 stars because I went back for a second try. (it was close to work) This time the burger actually had juices left. They still wont cook it less then well done which puts me off but at least it had flavor this time. + +I still dont recommend this place when you can spend a bit more and get a real burger at FEZ, Zinburger or Delux.",review,iAXUAPxzKXxWMCiXLjY-ww,0,0,0 +Snp5LyDO9NeQiuFPOlkavw,2008-05-27,rnvpABw_FY1zoaWpl9c9tg,2,"In a word: Kitsch. + +This 50's palace of pink serves up a number of ice cream dishes, including favorites such as banana splits and brownie sundaes as well as build your own creations. The ice cream itself was underwhelming, I was expecting a homemade recipe, but was a little surprised when I saw tubs of Dreyers being brought into the front dining room. + +Given it's location in Old Town Scottsdale, a venerable dumping ground of knick knacks galore, Sugar Bowl was exactly what I expected in terms of decor and atmosphere, kitsch, kitsch and more kitsch. + +Where is Gelateria Parmalat when you need it?",review,Syn0IvWg-M7I4G2t_XyHoA,1,2,2 +VpSiOW1PapVmZyyRBK_GBQ,2011-09-04,Jck18cBsBbzBlJs7tTGT8Q,2,"I feel sad to write this...but Vincent needs to improve things or his place will be only a past memory. I'm ok with that based on the dinner I had there recently. +The restaurant was packed...but with people who had Groupons...I only wish I had because my dinner would not have been 177.00. Too much for a weak and sad plate of out of date food. +We had the Foi Gras, small portion and so/so:(...Duck chimichangas they were decent. The wild boar was a tiny serving...we were fine with that because it was tough and difficult to chew. It was accompanied with a hospital style vegetable medly of green beans with carrot shreds and minute white rice. We also had trout..it was covered in a heavy white sauce (French) and had the same veg medly and white rice...seriously like the hospital food...or a big banquet service. It was edible...but not great...We each had a glass of wine. No dessert for us...it was hot in there and the arches and decor reminded me of a taco bell. I wouldn't even go back if it was a free meal:(",review,PYtryNSk30ytqOc_36sLPw,1,2,1 +pwpl-rxwNRQdgqFz_-qMPg,2009-08-17,GhXVv7ri0uzwTE58Y8-Xxg,3,"I'm going to have to work through this review before I decide on 3 or 4 stars. I've been thinking about this since my visit and I cannot seem to come to a conclusion. Another one of those times I wish we had half star options. + +The Parlor is definitely The Vig's little baby sister. It Aesthetically looks extremely similar, it has both the same Scottsdale-esque vibe and crowd, both are in weird, out-of-the way locations, and both are really loud. + +Even for a new restaurant with lots of buzz on a Saturday night, I thought this place was crowded. There was over a 45-minute wait for two of us, so we ended up grabbing a beer at the bar. I'm glad we did because our bar tender was smokin hot. Nothing better for the self esteem of two broken-hearted girls than a cute, flirty bartender. + +After a while we just decided to eat at the bar and skip the whole table idea. Good choice, even though the bar area was REALLY loud. + +On to the food... we started out with the cheezy cauliflower appetizer. OH MY GOOD LORD. It was amazing. It was topped with bread crumbs and baked... it was just absolutely amazing. It was good later as a midnight snack and good as breakfast the next morning. + +For dinner we shared a Pesto and a Margharita pizza. I loved both of them, but the Margharita had more flavor and I preferred it over the Pesto. Both had great quality ingredients and were extremely tasty. + +I'm pretty stoked that the prices are so reasonable. Two hours, five beers, an appetizer and two pizza's later, we ended up with a bill for $50 plus tip. My solo bar tabs are normally higher than that! + +My major complaint, though, was the whole entire time I was there I had a stuffed nose. I don't know if it was an allergy to something they were cooking, the wood, flowers, etc but I could barely breathe. The second we stepped outside it was like I had a new nose. + +Man.. I still don't know... three ... four... three ... four... okay .. my decision is made: if the 6' tall snobettes coming into the bathroom as we were walking out didn't smash rudely into my dining partner and act like she was Antichrist for trying to inhabit the same place at the same time, I would definitely go with a 4 but it's a 3 for now until things settle down a bit.",review,MWt24-6bfv_OHLKhwMQ0Tw,10,10,10 +3l72FflaaeI0tWEAWN3-gQ,2009-12-04,OGsYXIxtLkeIkyLoSvpQ-g,4,"New Taco shops seem to be opening at a fast clip and America's stands out as one of the best. We absolutely love the quesadilla and the tacos. The corn is also a must have. + +If you go with two people, don't miss their meal for two deal that includes two drinks. + +We can't wait until their 7th Ave store opens in January. Hopefully the quality will stay the same.",review,KOig7-X_TKXrnCJYJZib5g,0,2,0 +MMLEhoPYQif2PEIVxAfIKQ,2010-01-10,45frOWOmibZX4v9y01aujA,4,"Obs, a great location in the quaint Gold Spot next to the soon-to-be Pita Jungle. I really like what they did with the space. The vintage elementary school chairs bring me back to the days of learning cursive and pasting cotton balls on paper to create a snowman. Lots of natural light, too! The coffee is spot on, and they have pastries as well. -1 star for not having a punch card. They need to get on that!",review,eRhqwWWYneA3Wr_WYbmVGw,1,2,0 +Bc4DoKgrKCtCuN-0O5He3A,2009-04-04,enxR6S4K0RI-tN3-wILbQQ,5,"What else can I say that hasn't been said already? + +I'm weirdly glad that they're not closer ( in fact very far away from me) because I'll be there every day = gaining tons of weight! + +My baby loved the mango lassi flavor! So much he did the sign for ""more "" for the first time at the store:) + +I do want to try the bacon flavor....so a trip soon is in order",review,h9d3VW5RTJymoFoLnN60_w,0,0,0 +cdwHgELA2puX2DNfwSt5EA,2012-12-26,5QDhx75ulwaDHGNIqeOcDg,2,"We had a mixed experience at Happy Hour (HH) and dinner. Quick summary follows. + +Hits: + ++ Food was tasty. + ++ Ambiance was nice. + +Misses: + +- Waitress was never able to bring the ""last call"" round of HH she offered. No explanation or apology. + +- Asked if I ""minded"" anchovies on my salad. I said ""no,"" but didn't realize there would be an upcharge until the final bill came. + +- While in the bathroom, observed one of the staff go straight from the stall (not the urinal) to the Kitchen. No hand-washing, not even a pause by the sink. + +¡Buen apetito!",review,r0CGfp7yGtirXYZLDRaBfA,1,0,1 +AqbgC7Gul5Es1rRzGNLDFA,2009-05-13,CX2jGM3K1dW1X_827Xmaqw,4,"Ok so who goes from California to Scottsdale and ends up at a Sprinkles? That would be ME. + +In search for a cute independently owned cupcakery to test how AZ cupcakes stack up to SF Bay cuppies... we headed to downtown Scottsale. WELL, not really for the cupcakes, but just to check it out. However, seeing there were a handful of cupcakeries nearby, we had to try one. + +BUT the reviews of 2 and 3 stars for some of these places seriously put me off. I hate dry cupcakes and I was not eager to spend precious calories on something that would not satisfy. Sprinkles had the better reviews and whala it was open after all the other places closed. (Note to self, who closes a bakery at 6pm? Cupcake freaks come out at NIGHT!) + +We have a Sprinkles about a 15 min drive from us@home, but have I ever gone??? NO. So yes here we are at Sprinkles in AZ. The gals are friendly, they answer my questions tirelessly. I end up with 2, lemon and chocolate marshmallow. + +They stay overnight in our hotel room since our dinner left absolutely no room for cupcakes. I was worried they'd be dry and stale the next morning when I busted them out at 7am before my workout. Gotta get some carbs in so I can burn them off right? + +Bottom line... Sprinkles may not be a cute little indy shop any longer but their stuff is solid. No mixes, the dark chocolate cupcakes are the perfect combo of dark, bitter, and sweet. The lemon was dense, I think mine is better, but the chocolate marshmallow OMG. It was like a grownup version of a Hostess cupcake, MY FAVORITE. Despite their overnight rest, they were not dry, the result of a fair amount of oil if the residue on my fingers was any indication. + +Please send me three dozen of the Chocolate Marshmallow please. I will love you forever. Thanks.",review,nYa0GRbjizzzKoVOm9-lsQ,8,9,7 +ZRJwVLyzEJq1VAihDhYiow,2012-05-18,iT60w_XiOX14tvHr3VwQSg,2,"The pizza here is very good, but i would warn anyone who is thinking to have it delivered, to think twice. Their system seems to be manual and we were actually asked ""are you in our delivery zone?"" After 12 minutes on the phone i gave up and decided to save the $5.50 delivery charge and pick it up myself. + +They are one of the best pizza's in the tukee area, but if you are going to go to a place that charges the max for their pie ($85 for 4 pizzas) , i would suggest Florencia in this area. + +This is our second time trying them, first was eat in, and now pick up, i would rate the overall customer service very low, enough to bring a 4-5 star place down to a 2.",review,o4mzRnNMeLIvWeCRM78cGw,0,1,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-12-03,GiP3aNuA5XepHT9m6q3awg,4,"The Vig Uptown has its hits and misses, but the hits definitely outnumber the misses. + +First of all, the building and atmosphere is awesome. I think it used to be a Bank of America? They really outdid themselves with the renovations and decor. + +The drinks, while pricey, are really good. I had the basil-gin-strawberry drink and it was deeeelishhhh. My husband had a tasty IPA he has never had before. + +Service was good. Our server seemed to have a zillion tables and still was attentive and pleasant. + +When it comes to food, my husband and I had different experiences. He had the Vigazz burger which he thought was outstanding. It is now tied with 2 other burgers for his favorite burgers of all time. + +Vegetarian entrees are limited to a couple salads and a veggie sandwich. I had the veggie sandwich which was decent but I wasn't impressed. Although the grilled veggies were tasty the sandwich was dry overall. The foccacia was a little too doughy. And the caramelized onions were more raw than caramelized. The french fries were good but the barbeque seasoning on them annoyed me slightly. I think next time I will ask if I can order a grilled cheese off the kids menu. With a side of their yummy spicy mayo. + +Talking about kids menu, that was another miss. Having a stepson myself, I appreciate hip establishments that are still kid friendly. However there was a very obnoxious group of kids and parents that looked like they just came from the kids soccer game. The kids dominated the bocce court and were loud, rude, and obnoxious. The parents were enjoying their cocktails and ignored their kids behavior. It kind of ruined the mood for us. I wish they would have just gone to Peter Piper like most kids teams do after a game... + +We do really want to return. Maybe for happy hour or brunch. I want to try their bloody marys and the Amber Scramble. We might even take our kid. But don't worry- he will be well supervised! :)",review,Hi7VohxSS5OBt98w4j8t4A,0,0,0 +8ZwO9VuLDWJOXmtAdc7LXQ,2010-08-04,Gs13sUvDWIfavz77wb4vQw,3,"my husband and i stayed on a monday night just as a 'stay-cation' and it was busier than i had expected. HUGE bed and very comfy. the AC buzzed off and on all night and we didn't have the bathrobes that were advertized online. BUT the rooftop deck had a nice view and the breeze was welcomed. we got a drink from the bar and took it up to the roof with us. the pool looked very inviting but there were too many kids splashing around for us to want to venture in. +overall it was a good experience and not bad for the discount rate that we found. we were definitely impressed by the huge bed.",review,8_nmcrZX28dC654priVVMA,0,0,0 +whAFYa0ZyTIRe7GamYAmsw,2010-04-03,qm7XZ40KNqh2cJTlnXy91g,4,"Went for the free ""Movies in the Park Free Family Movie Series"" last night and really enjoyed myself. The park has a giant inflatable movie screen where they show family movies every Friday night at 7 in the early spring months. + +Get there early to get a spot closer to the screen and bring a picnic blanket to relax on. It got a little chilly later in the evening, I would bring a blanket to snuggle under too.",review,hq0WUfau1Mh3GyHn8oVdNQ,5,4,0 +oJpmYvLibGrYPDvcaUeMOw,2011-09-05,IlbIDkPNO-kxgHSOqxRqaQ,5,"LOVE THIS PLACE! We eat here every Saturday as long as we are in town. My husband eats here during the week too! Weekday lunches are a great deal and quick! The veggie soup is delicious. The golden wings - Delicious... chicken satay is good too. For an entree... we always get Pad Prik King chicken or sometimes shrimp but its always always delicious! Have been trying to find a thai place with this dish closer to home (east valley) but haven't found one yet! Service is terrific! FYI for those of you who just order Pad Thai... it is very sweet here so if you don't like it sweet... order something else. Other things we've tried that were good... pepper steak - very good - just dont eat a lot of red meat, massamum curry with chicken good... also we order everything medium to thai hot... like very spicy!",review,7pBBfBnUwItMi-11d1_JOw,0,1,0 +fYP6ug4T80HpWbVJmkDP1w,2012-01-24,VYNmgvN61pjoOyUKU9ztKg,4,I heart Harkins. Have for years. Love the loyalty cups & t's.,review,z1tNqF5qJRpibGj-9_r9Ew,1,0,0 +Zu93JuSKbponnD3Mx5zpEg,2010-02-23,hie8AIcS7Ex-gkXxFnfqZQ,4,"This place was never attractive to me, until it was the only place showing a good documentary I wanted to watch. Nice surprise! I only expect to see other good alternative movies here more often.",review,LqgGgWi3FLHBViX9tmZ9sw,1,2,0 +2e3v5rl80j4pI3L2135xYg,2011-09-18,BcGrfDqefEA4s-TLHVhYTQ,5,Prices are good nobody is down your throat when you enter and its the best place for produce in town literally would suggest this place over trader joe's for sure,review,u-IdKmC7u9AFlypEPi_16g,0,1,0 +sDozh6iTylTJD26d7xcgGw,2007-03-31,xDqnQ7gc5gjDko6AZqmgxw,2,"Your typical Tempe boozatorium. + +It has a generic and unmemorable name likely because the name describes everything about this place. + +If you wander into it, you won't remember much more than that.",review,FPWwCD73C0PlRdDfJ6Tuqw,0,0,0 +c1yGkETheht_1vjda7G5sA,2007-10-17,ybnwGGyEXmIAthlqZQqmdA,5,"I found this place via Google while in town for business. It's tucked away in a non-descript strip mall next to a Salvation Army. + +I've had dinner and lunch here, both times were good. For dinner, I had the special turkey sandwich with fries (fries weren't pipping hot when they were served, but still good); for the lunch visit, I had the original ""g"" spicy po-boy and chose the curry pasta salad as a side - tasty! + +Service was friendly and efficient. +_______________ + +Update: +12/10/07 - What's the first thing I do when I arrive in Phoenix? Punch in 2240 N. Scottsdale Road in my GPS and head to Green! This time around I had Thee Argentine Po-Boy with fried - Mock steak fried with onions and peppers, vegan mayo and a spicy sauce. I couldn't get enough! Very delicious + +12/11/07 - After having a veggie burger and fries for lunch at a Hard Rock Cafe, I thought I'd balance it out by having something healthy for dinner - I ordered the Diablo Rice bowl with chicken and brown rice. The description looked good: veggies in a spicy sauce - but it was a little too salty for my taste and didn't finish it. Oh well, can't win them all. + +12/12/07 - I was working close by, so decided to run in for lunch. I ordered the No Harm Chicken Parm sandwich with a side of tahini coleslaw. It was a little bit messy to eat by hand, with the tomato sauce and soy mozzarella oozing everywhere - still good nonetheless. The coleslaw was a nice compliment to the sandwich. + +12/14/07 - I'll miss you Green!",review,zt7Yfeld6yR_bD4EKaOMjQ,1,2,0 +1OA1jo0GlK9sf68f00w8ZQ,2009-09-01,vGvxWzW7fXMPPaad36OvrA,5,"No need for a long review. + +Every In-N-Out I have ever been too has been amazing. + +Great Food +Great Customer Service + +Love this place",review,KAlrXgWYcNrwoQOvnGtgtg,0,1,0 +-h-q6zTIdPlkz9BDP11sBg,2011-02-24,Ag8qFw1LbvmAu_wv6ElSaw,4,Great flatbreads and atmosphere,review,5oPwG66useXJo9opoFokgQ,0,0,0 +8Lf_SZFuVhOe9rrAgC_pAQ,2012-10-30,asABAhRieJgASD2EsOpK5Q,5,I love Petco! The only place I go to get dog food. I feel like the employees generally know what they are talking about and are always willing to help!,review,OSDR_W4vE3e2-kFvrlrknw,0,0,0 +upzSExkcvYMX9dJMgNARXg,2010-09-21,mN_EemgH6uMD9QwDUEXPzg,4,"While we were finishing up at Forefathers, I checked my mobile Yelp app to see what else was in the area. Zoyo popped up and the reviews were good so I asked my daughter if she wanted dessert. Silly me, of course she said yes! It was a short drive to Zoyo. I passed it the first time cause my GPS said it was on my right but nooooo it was on the left. We made a quick u-turn and there we were. + +It was clean and well lit and nicely laid out. If I remember correctly there were either 10 or 12 different flavors. I had Red Velvet and Banana. YUM! The Red Velvet was delish! My daughter had RV and Cake Batter. They had all the standard toppings and the topping area as well as the yougurt area was very clean. The young people (oh god I sound old!) that were tending to the counter were pretty efficient and friendly. There was pleanty of seating too. Some nice larger, round tables and then what looked like a hallway had some smaller tables for two. There were also tables outside. It was a Saturday night and there seemed to be a steady stream of people coming in while we were there. Some stayed, some got theirs to go. They also had two flat screen tvs on the wall . One was playing The Bee Movie and the other had Soccer. Overall our experience here was a good one and we will be back. I may even bump it up to 5 stars after I try more flavors. Although if they always have Red Velvet......but then again it's good to try new things. Thank you Zoyo!",review,ZmIgP4U4Ht9CYmNX0_zP6w,4,4,4 +jQST5lkLGX9L52-A10TGTQ,2009-11-25,nfYAVLPJjhwaOW6tF5HUTQ,5,"Wow, is this some fantastic food! It was the first non chain restaurant we ate at during our vacation and I couldn't be more pleased. Not only was the staff friendly and attentive, the food was phenomenal. Presentation and taste were top notch. The Tai fried rice was the best fried rice I've ever had. I will definitely be back the next time I'm in town. + +Visit Date: 11/18/09",review,Jegks7c-o66A9LaxWYQLsQ,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2010-08-20,gpglwWWqnxkrF32vubJ3bg,3,"I like this place because of how original it is and the menu has something for everyone. + +Unfortunately it is tucked away in a hard to spot location and therefore continues to be a great secret. + +I would recommend to anyone in Arizona to make a trip over and see what this place is all about. I think everyone will be happy with it.",review,_N-DeS909pOyryxC0mMAjw,0,0,0 +ImVx220_Pcp2iB5uworODw,2010-11-01,eqAVn_2A-x8mbNNxIkrIww,5,"LOVE this place. Great food, high quality ingredients (which is why i was told the prices are a bit more than your typical pizza hut), and fun service. + +I love this place, and always leave happy and full. Authentic italian food is my weak spot! :)",review,vJZtiMtXJL0GHl8AzsKAFg,0,1,0 +BT2Vls7h6sWrCKa5gGXbKg,2011-04-08,Fuw98dnuakyLKQLlGZjKSA,3,Really good prices but I would stray from the wings. It is very greasy so beware!,review,Hac8HebtWiR0H2WmPg9AOg,0,1,0 +Ddsln32r-uA7hq_0ksaNZA,2011-04-14,7BbBFpBImt877RXkgxMcvw,2,They have great specials and if you like dive mexican take out......its ok.....there are much better places that are not a chain.,review,YPk47NcyWSkk-541OxyzMQ,0,2,0 +OkO7zRnvV2NQR5aPmbRZeA,2011-10-02,YatPH-LLGvJRCEsDjSEnHg,2,"We just stopped here as Slices no longer exits at TMP :( + +For JUST cold meat sandwiches...they are over priced. Short variety and more than $3 for some salame, cheese in average white bread.....no thank you.",review,LqgGgWi3FLHBViX9tmZ9sw,0,1,0 +1Duul3qCnLrNak1Np-iHfw,2008-05-10,dBt9em8zuiBmi0afyDGPbw,4,"I really love Pita Jungle. My first experience was at the one downtown, and now, I have to get my fix. I found this location since it is close to my home, and wanted to check it out. + +Upon entering, I was pleased with the location. Well decorated, clean, good lighting, ample seating. I was greated by the hostess, and sat at the bar. The place was pretty busy, and I was by myself. I was greeted in a quick manner by a nice server from behind the bar. I took a moment to review my menu, and decided to skip a full meal and go for some lentil soup. + +Now, here is where things get dicey. I won't hold it against Pita Jungle, but I have to put this in the review. First, after being seated, I noticed that it was a little toasty in there. I think they could have turned up the A/C. I am sure if I had been drinking, I probably would have broken a slight sweat, as it was warm in here. + +Secondly, after I ordered my lentil soup, it took what seemed like forever to get it. I did not time it with a stop watch, but it took a long time for just a bowl of soup. Secondly, when I did get the lentil soup, I didn't care for it. It looked kinda gross and didn't taste all that great. And, in case you were wondering, NO, I didn't send it back or complain. I was to tired and didn't feel like being a sourpuss. + +The other problem that I experienced, was the server girl brought out my check WAY before I was ever served my food. I hate that! At least bring my bill with my food, not before! + +Aside from that, I dig this place.",review,JffajLV-Dnn-eGYgdXDxFg,3,3,3 +fJ5raoVcN-nD8vFswMFXzQ,2011-12-24,_Kx3qkda_bcgTJNAUPxgjQ,4,Excellent food! I always get the 3tacos! Best bang for your buck!,review,1LGGCsEF3jYXMKcgRObZJA,0,0,0 +LMjCZH50S4xjKBuFVl2xEQ,2011-04-08,Vz6K-_m6CBcpkQVCuVeDug,1,"Have been an Ulta customer for a long time, but had never tried the salon until recently. Was a HORRIBLE experience. My stylist, Delia, ran 45 minutes late to start me, and on several occasions during the hair cut, stopped and kept looking around. She made various odd faces as if to say my hair was a mess. She not only didn't listen to what I wanted, but shot down the only thing I did ask for. She said I wouldn't look good. At the end of the painful ordeal, she then charged me for a conditioning service I didn't ask for. At that point she directed me to the line at the front of the store, after which I waited in, they then sent me back to the salon to make the price correction. (happened twice, then I asked for a manager) Was very unprofessional all around and would NEVER go back!!!",review,bZmcUH_zMK9h8c2hbfSywQ,0,1,0 +noLH_u4MJzfXYYHqcByjnA,2010-03-22,f031RjkwqbRG4_kxYmxrMg,4,"I'm 31 yrs old and I've come to the Dub since I was an 18 yr old with a good fake ID. I actually havent lived in Az in over 10 yrs, but when ever I come back to visit friends and family this is our spot. My buddies have been the local crew at this bar for over a decade. The bartenders have all worked here for years as well, and even tho i may only come in a few times a year, the bartenders always remember my face. A fun atmoshphere, plenty of room, a non-stuffy, non-scottsdale type crowd. When I'm in Az, I always visit the Dub...",review,mFuo-10DMYljWZcAXj9XHg,0,0,0 +Yhfp_vgnh_GirZGeVhj7Gg,2012-01-28,c9IRlU9vSmKU4m3ioQ4csA,4,"I still really like the Studio Movie Grill, but sat in the ""General Admission"" seats last night for the first time, and found that they were not nearly as comfortable as the ""Reserved"" seats with their own little tables. Unfortunately. + +The GA seats are also quite tightly shoved together, so if it is a full house you are bumping up against your neighbor, and it is distracting. + +Best bet: Go to a un-crowded movie and sit in one of the reserved seats that is not pre-reserved (not pre-sold, and doesn't have the little ""reserved"" sign on it) to enjoy the reserved seats at the GA price.",review,o6hksardqzx7jZwiNxoRDg,0,0,0 +GHYOl_cnERMOhkCK_mGAlA,2011-03-30,4nmQWtOENRFPteGAqXeLKQ,1,"Sadly, I have to join the crowd on this one. I was hoping that Kitchen 56 would make my memories of Vatra go away, but instead just reminded me all over again. Food was WAY overpriced and just OK. Kudos to Eddie the Server who brought with him the only charm available the second time we tried K56; I'd give him 4 stars if the review were based solely on his service & personality. I will say the interior is much better than the previous incarnation, but the spots (lights) at the counter-height 4 top shone in my eyes and made me feel like it was last call...and I don't drink.",review,W4fBHIRoNh_qAJwORXKPpg,0,4,1 +VbXy3tH5RAu7HjT7VeMMgA,2012-06-05,JVh7fgEnkkEnqBZOtZZraQ,2,I've been here twice for lunch. It's okay but I won't be coming back. The portions are small. I had one of the curries and it was good. But I had the pad thai which the menu said contains chicken and shrimp. Not a single shrimp on the plate. Cheap bastards. One of the lower quality Thai restaurants I've been to in Phoenix next to Thai Hut.,review,re__adaHUa4jKA17v7dmDw,0,1,0 +3jqOv6re-xPYOg7srmi7tg,2012-01-19,FqJdIkHSHx63Mt8BXOkUHQ,4,I came to this location in Tempe after visiting the Picazzo's in Sedona. I ordered the Puttanesca Pizza (no olives) with Garlic Butter Crust again because it really is THAT good!! I think the crust was even better this go 'round! The Chocolate Chip Skillet with Coconut Vanilla Ice Cream is great and big enough to share! We enjoyed sitting outside on the beautiful outdoor patio on such a beautiful day!,review,K0euQLFAcKhQPZ6JxGAryg,0,0,0 +LfvQnSv2MbIplgAfpXkUQw,2011-05-06,RR8Tz9pS8k08ugC1U8jlPA,5,We loved this place.,review,X0rIm60JC6ek2FrJ8fUtbQ,0,0,0 +ky3kuTeqTUOU4CsZ_2_LzQ,2009-08-21,KvpOzSomyCurq7qJFQVy1A,4,My wife and I have stayed in many hotels both domestic and international. From cheap hotels to very expensive resorts. For the price this hotel was a great deal. Very clean and friendly staff. Very close to the airport and provides FREE shuttle to/from airport.,review,K_ZAORjuL80YUhV1HC4PGQ,0,1,0 +V0WyXBZqOI_Rpq0m7drylQ,2010-06-30,pIbeU9-t9ZWHw3TJCChe0Q,2,"I wasn't that impressed. The machines look old and rusted, there didn't seem to be any air-conditioning and it had to be in the 90's inside since it was about 110 outside. They did have overhead fans. The price was cheap--45 cents per load to wash in a top loader but we only found one top-loader available that actually worked. Half of them were Out Of Order. Instead we dumped everything into two front loaders that claimed to do double loads and were out of there in pretty short order. We took the clothes back to my daughter's apartment building to dry in the laundry room there so she didn't have to stay with them.",review,TQ5eVGOFr_qB5_BbEd3Sow,3,4,1 +CqhsIZ7TzCfJTrZqg5-gqQ,2010-05-19,bZ8oV8K8DJFaQSl5xe9ALg,5,One of favorite happy hour places in town. If you get the wings here it shouldn't matter if you get anything else. Great location and nothing else needs to be said. Maybe a renovation on the parking lot.,review,vUn91MER1jV-jT4crd3pOg,0,0,0 +Gw8DsQQCO5m1hggXqwynFg,2007-06-18,0zReLtQj_Nf2-bwIOPTmrw,4,"This is a really cute Greek restaurant located in an obscure building. You'd never know from the exterior that a great Greek restaurant is hiding inside. The place has a family owned restaurant feeling to it, and you'll find all the Greek classics on the menu. + +The menu is pretty extensive, and a lot bigger than many of the other Greek restaurants I've been to. They have gyros, sandwiches, pitas, plates, appetizers- but my favorite is the hummus appetizer and the falafel plate. They're both soooo good. They also make a pretty mean spanakopita. + +For dessert, get the home-made baklava- you'll be very glad you did.",review,0CMz8YaO3f8xu4KqQgKb9Q,3,2,0 +zmFc8M-hS4uuyY0hklIpoQ,2012-06-21,yoD-T4N7qi1YI3PR3wJRDQ,3,"I visited Carly's for a weekday lunch when I was downtown for work. Here is the rundown: +1) parking is horrid - common downtown, so take the lightrail (the stop is on Central and Roosevelt) or bring a fist full of quarters for the meter +2) it is crowded! well it was when I was there +3) the service was pretty good considering how swamped it was and I told the nice server I was in a hurry and she was able to take my order from soup to nuts in maybe 10 minutes even though their credit card machine was down +4) I ordered a gyro and their orzo pasta salad, the gyro was mediocre and bland but the pasta was wonderful + +I will definitely try Carly's again when I am not rushed, the interior is hipster, funky, low key and the staff was very friendly.",review,tiyg_cQaPdUuSG95Xpi_sA,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2011-02-13,q2rOTgUwwh4mcZ-ItqIzyQ,4,"I've been meaning to Yelp for a looong time now, and after having brunch at Scramble today, I thought it only fitting that I give them my Yelp virginity. + +My boyfriend and I arrived around 1pm and it was pretty quiet. There was a young lady at the counter, taking orders, and another stocking juices nearby. Both were very friendly. + +I requested a vegan menu (the vegan options didn't seem to be listed on the large menu near the door), which was quickly furnished to me. There were 2 tofu scrambles, a soy chorizo breakfast burrito and french toast as possible choices. I couldn't decide between the veggie scramble or the french toast, so... I ordered both! My boyfriend went with the bacon and mushroom omelet (off the regular menu). We were offered bread options of white, wheat, rye, or an english muffin. The side dishes were fruit or sweet potato hash... and I think a lot of the menu items come with rosemary potatoes, but we both opted for the hash. The cashier gave us our number. It was a beautiful day, so we found a table outside. + +In a matter of very few minutes, our food had arrived. I noticed that the vegan items were on red plates to differentiate them. My scramble was yummy, with a good enough amount of veggies in it, and a bit more wet than most other scrambles I've had. I did find myself wishing the portion was a bit larger. + +The order of french toast came with 3 good-sized pieces and was super duper good. + +The highlight for me, was the amazing sweet potato hash! It's served in a patty and is chock full of onions, zucchini, carrots (I think) and seasoned with rosemary. I've never had anything like it. I highly recommend it. + +My boyfriend did seem to enjoy his omelet and definitely agreed with me on the hash. + +Scramble is a great place, especially considering their vegan breakfast options, which are far too few-and-far-between in the valley. We will absolutely be back!",review,smuPvImE3OoRYD6hL-if6w,0,0,0 +0dORc6ckZw5HezR3BuSsqw,2011-12-01,Zq2xs91QNmR3ApnJa_1bKg,5,Love the wings!,review,f01B5tRtqf3k6ak1pPSAWw,0,0,0 +5yT-0wF-QK_xAnFkymam6g,2010-12-10,aZ_69NXdogm7Q9FLVPRLpQ,4,"Grab a cup, grab an outdoor chair, enjoy the show!",review,nFnMOEJPy98wdEKAVzFs3w,0,0,0 +e8Eke5v8pXw-PuRCu2uPjg,2012-02-25,sEpffpL6SPsu4vUlI9la1g,5,"Simple but really great cajun food prepared in steamers right in front of you. Selections include gumbo, pan roasts (a tomato-based broth with chunks of seafood), or seafood creole all with your choice of shrimp, crab, chicken, crawfish, oysters, or all five, with rice. They also have fresh oysters, jumbo shrimp cocktails, salads, and tasty seafood chowder, as well as the occasional lobster special. I've been probably 20 times and still never had a bad dish. The staff is friendly and helpful, and will adjust the spiciness of the dishes to your taste. By far the best option at the Talking Stick resort. + +As another reviewer noted, this restaurant is really just a bar with a couple of tables, stuck right off the casino floor. This is definitely not a fine dining spot, with the clanging of slot machines and dead-eyed gamblers shuffling around fifteen feet away. Still, it's definitely worth a visit to Talking Stick. At $10-12 for lunch portions and $17-19 for huge dinner servings, and $25 for a massive platter of oysters, shrimp, crab, mussels, and clams, it's a fantastic value for the quality and tastiness of the food. Good, reasonably priced seafood can be hard to come by in the valley, but this spot is a gem.",review,ZmCfwDMuYkhpyr-hWKgiaw,0,3,0 +lVkDZZ8sTafPlq7f1i5row,2012-04-28,kaGay5W1MuM6dXoHMWU94Q,5,"Sometimes it's difficult to really feel satisfied with a raw vegan diet , but every time I go to Pomegranate's I leave more than satisfied. The atmosphere is welcoming and delightful, although very busy during the lunch rush. I did have to share a table with a stranger last time I was there but the stranger turned out to be a great lunch companion. This is a must for anyone who is considering (or already is) a raw and/or vegan diet. Everything is so yummy you won't know it is good for you!",review,sG3_fRCEROn0-9TzlawdlA,0,0,0 +41j3GB7M-Lwq284Pfb9zgw,2012-09-10,lIMcJl51NcGSQvLZ5d9JHg,5,"Simply awesome! Great beer and great staff! Will try the food next time! Only complaint is a bartender named Adrianne she is crazy! Ha! G + +The food was excellent from the great hard boiled egg dish to the peanut butter and jelly with banana and marshmallow fluff oh and add bacon. Elvis just did a sommersault in his grave. The sandwiches are not huge but they are all made like the beer served and the people hosting, of finest quality! + +Really enjoyed and will spread the word!",review,GFfBMrKu2puUTJaW4gVs_g,0,0,3 +wNm84v3I4ZONS9H8Vs-wkQ,2012-11-15,tMHh3ATehmHppSvHkxzk3g,4,"I saw their ad in the College Times and decided to check it out. Had a coupon for free earrings (little stud dice ones) and I lost it; they still gave them to me anyways since they knew I was legit :) Stormy the co-owner is really nice. Lots of cool bargains to choose from; some really nice stuff I had to pass up since I am on a budget :) I did in-store trading too and got around $24 worth of store credit, which I used all at once. Overall a fun hunt. It's also a small little place so not too hard to get lost. :)",review,4D-8OaHKOJmNZzgXSqXjJQ,0,0,0 +oSDf6BHiMlKGZdFFmIo6NQ,2012-10-16,Pviwc4jGf2dia6zKYc9CAA,5,Best breakfast in west Chandler! I love their crepe eggs and calorie/nutritional info printed on the menu.,review,jMyy4KU2SuJ6FhWtgLqRwQ,0,1,0 +MhH1kl9faN3RvIO4ptumTg,2008-12-28,880ToOAcX6JgCdHnyLNnIw,3,"Not that good, not that bad. So-so, more or less. + +Stopped by here for lunch the other day, I had the BBQ chicken lunch. Overall a pretty bland taste, but maybe that is just the style. If I ever end up here again I may try something else, but I won't be going out of my way to do so.",review,5E193w76Qlhoi1gkyakW2A,0,1,0 +oCA2OZcd_Jo_ggVmUx3WVw,2012-03-29,zJf8tEBQrQ1Bl9HSKyjrbg,4,Awesome place! I like the memorabilia on the walls.,review,ApFSkeGhx4zZJSfxy9C6SA,1,0,0 +E6DnUFy3GoN4DxTqturtug,2012-05-23,nZPZ8WRGQN0ZTOLxSxTi-A,5,While we were in Mesa AZ for a holiday we found Alessia's on Yelp and we are so glad we did. The food was delicious and the host was terrific as were the servers. We are not big wine drinkers but they have a very good selection of wines and the host knows his stuff and can make good recommendations. Nicely appointed little restaurant with a great menu.,review,cQWuuzv2NLGrScs6m-xrpg,0,0,0 +wOvAbdVYDaguotpdSALsfg,2011-06-17,eVZKDT7EJIazL90bTtitfg,5,"I used to go here about once a week when I still lived and worked in Arizona. My office at the time was within walking distance. + +This is a very good Hooters location...located smack dab in the middle of Mill Avenue right next to ASU. Plenty of stores all around. + +I used to go mainly for lunches during the week with co-workers. It usually was quieter than evenings or weekends. The serving staff were great and many of the ladies would stand and chat for quite a while...as it was pretty slow.",review,BXRWIUONLsTvpG-ESWLEBQ,0,1,0 +IoFggnoj1P4EcmNEP2K6Ng,2006-06-24,68xRQp0YEMfKgwXI6WqRgA,3,"Despite it's name (which gave me moment for pause when deciding if I wanted to check it out), Xtreme Bean is a hip coffee house with a college feel (they even have a ""study room"" with quasi-cubicles that is ironically placed in what used to be a bank vault). Further, for those of you that spend hours on end in coffeehouses, THEY HAVE FREE WI-FI :-D + +The ""coffee flavored coffee"" and tropical ice tea are good (I personally tend not to stray into more interesting coffee drinks, so you'd have to check those out yourself) and the entire selection of both food and drinks is very reasonably priced (compared to corporate coffee). + +As of this post, there is ragtime piano on Monday nights as well as performers on the weekends. + +They have a drive-through window. + +Oh yeah, they don't appear to have updated their website in quite some time... most importantly, their hours of operation. The website says they are open 24-hours on the weekend... but I *think* they are closing at 1am in the summer. + +EDIT: Go for the pumpkin muffins... they are most excellent. + +EDIT 2: Due to the recent rise in popularity of this coffeehouse, I can no longer get my beloved muffins as they all sell out long before I arrive at night. *tear* Oh yeah... and all the employees probably think I'm that crazy muffin guy. *shrugs* + +EDIT 3: I'm officially downgrading my review from a 4 to a 3 as it's now difficult to get a table indoors and I have no interest in sitting in the smoker's lounge which is their patio area. *sigh*",review,1RzVTIr6nxAwPV7RB7-U0Q,0,2,0 +oJpmYvLibGrYPDvcaUeMOw,2011-05-26,dXtNl37cJPApWjquAABDyw,4,"This place is gem behind the Central Phoenix library and next to Walgreens. They have great lunch specials that are worth a visit. My favorite dish so far is the spicy noodles. The noodles were flavorful and pretty darn spicy, just how they should be. If you're in the mood for some authentic Thai food, you gotta give this place a try.",review,qwr3X7DIOlviqhJ-1Gt1_Q,0,0,0 +WFDxa8r0sT2ZnehYTyT1LQ,2009-04-30,xY5EfOYdXcF8XFeL5Dn5Vw,5,"After visiting family in Scottsdale last weekend, hubby and I spent 3 wonderful days at the Boulders Resort in Carefree. We arrived a little tired and stressed; we left tan, relaxed, and rejuvenated. + +The resort sprawls beneath the boulder formations, but you can walk all over on the paths that are well marked. Our room was spacious and clean, with his and hers sinks in the bathroom, shower, tub, king sized bed, and walk-in closet. We were located near the main lodge, and a brisk walk from El Pedregal and the Golden Door Spa. We made great use of the wonderful fitness center and took a few classes as well- yoga, bosu, and water fitness. + +We tried both pools during our stay, the spa pool and the main pool. We preferred the tranquility of the spa pool; food and drinks at both locations were exceptional. If you meet Madonna at either pool, ask her to make the ""Madonna Special"" for you. A very refreshing smoothie. + +During our stay we ate dinner twice at the Spotted Donkey Cantina at El Pedregal- fabulous margaritas shrimp tacos. Our last night we dined at Rusty's Chop House at the golf club. It was a lovely meal on the terrace with a view of the golf course. + +Every person we ran into was exceptionally friendly and genuine, making the trip even more enjoyable. I hope we return someday!",review,r_5slEuf2V8ab3SZMHVfgA,4,5,0 +5nrEG6lFlKfr-OluekbsTw,2010-11-30,pWP9WnRagQw7SccNG7DpiQ,5,"They have the BEST Pad Thai! I've had many other dishes of theirs which are all delicious, but that Pad Thai haunts my dreams at night. (In a good way) I've recently had Touch of Thai which is a highly rated Thai Food restaurant. Of course, I had to try their pad thai. Honestly, It was just as good, but they used the thin, stringy noodles and Dara uses the wide, flat noodles. You wouldn't think that would make much of a difference, but that's what makes me drive 20 miles more to go to Dara Thai to get their Pad Thai than driving 5 miles to go to Touch of Thai. + +If your not watching your calorie intake I highly suggest getting the cream cheese wontons and Thai Tea with your Pad Thai! Now that's what I call delicious!",review,jGsPOCaHCiBUJhBdFOe9-A,1,1,0 +cp39VURFby4A6u9m2It8jg,2012-09-09,Sov2blOTUTUgqjrOhflxQQ,5,"Baffled by the unfavorable reviews here. Easily one of the best burgers I've ever had is the Zinburger. Truffle fries are also delicious. Always have good service here and leave very satisfied. Atmosphere is slightly upscale I suppose, but not snobby as some complain. You can wear shorts and a T-shirt and feel right at home here.",review,tjWy0c2Q0BrcBmWihorDTw,0,0,0 +W4lcMQudkcx7sTabnWaOqw,2010-02-01,jFeo-mVwa1-MHQauk4k1ow,5,"This place is what Desert Ridge wishes it was! Its great for groceries (Wal-Mart), bargain hunting (TJ Maxx), fast food or dining in (tons of places!), catching a movie (Harkins), stocking up the wine shelf (BevMo), new panties (Vicky's Secret) and a zillion other things. I love that this is close to my house! The only thing that would make it better is a Costco or Sam's Club.",review,wC1CPV5bf--bDLtlhNSPLg,0,0,0 +bOB11LVavtN9PWTNwR52Tw,2013-01-05,DccfWDQOIKe4Cp8uuDwtjw,4,"It appears that the service kinks have been worked out as our server was very attentive and the food came out quickly. Guacamole was tasty and fun and tacos were innovative and delicious. I don't want to argue the point of whether Barrio Queen aspires to be authentic street food or Mexican fusion, consensus at our table was that it's a bit of both and the experience was so pleasant that honestly we don't care and we will return soon. Of note, automatic chips and salsa at the beginning of the meal would be a nice touch and more opportunities to add serious heat (habanero, serrano, jalapeno) would have been a wonderful adjunct.",review,UQUXdHJx2XmRMdXtMR6dtQ,1,1,0 +VVeogjZya58oiTxK7qUjAQ,2012-05-22,ME2NNq2m9igLFN9962HIkw,3,"We got the Wiseguy with Wood Roasted Onion, House Smoked Mozzarella, and Fennel Sausage. I was very underwhelmed. The pizza was really greasy and just not all that great-tasting. Also the crust was burnt in several places, making it taste even worse.",review,rUYz1AFeKlhdQyw4JOi5Iw,0,0,0 +tAmevVP8B7PiWxcJ0PlYVA,2012-06-08,nVBewvCuv-YWRTkDwMay_A,4,"This place is super darling. That's right, super. + +I've only been once and it was to quickly grab some cookies to curb a serious pastry craving. I had never heard of Churn and found them via good old Yelp. I snagged a Chocolate Chocolate Chip cookie and another fabulous cookie that sadly enough I can't remember exactly. It had cranberries and it was heavenly. + +I love how they have old school candy displayed through out the store! Good to know for when I'm buying goodies for events or holidays. Their ice cream selection is killer and I will be making a special trip out there one of these smoking hot days to enjoy some!",review,7aQvAhgpdXqkTQEp8b8Szw,2,1,0 +d7V3ykQHqChv0KtXEanKLw,2007-07-31,rGgNyp-tqFrrpbK-AWHiww,3,"When I'm on vacation, I try to go to restaurants I try to avoid chains because what's the point? I want to eat local eats. As I walked in, I realized I've been to the one in Long Beach, CA though the menu was completely different. Or perhaps it was the late night menu but it was decidely more ""Southwestern."" Ah well, it had been several years and it was quite late at night so it didn't matter at this point. + +I ordered the green pork tostada which the waiter assured me was very small and the hot wings. The tostada was huge. What a liar (yes, I called him that to his face). + +I ate a couple of bites and finished the wings. I would have the tostada cold and congeal-y in the morning before flying out. Surprisingly, the flavors were locked in this way and acceptable as a 5-minute scarf fest. + +Oh, and my vodka tonic was very good. Not bad and I kind of dug our picnic style bench high top table.",review,qGFt3x-OK4rbMT6B_Y6cPA,1,2,0 +CqKiF2X0_4erH02-CUiweQ,2012-04-27,PfPV7R1DoWKe-ufucipKzw,3,"I eat here often because it is close to where I live. Good clean Chines food but it is all starting to taste the same like they use the same sauce on many of their dishes. It didn't used to be like that. I will keep going because it is still good and the best in the area IMHO, but it is time for a menu change to get some new flavors for those who eat there often.",review,J_Wqa5tUZ6pen_OD1ikCEw,0,1,0 +nZ0mUQEdez-CHrykD2nNLA,2012-01-02,S4cNP1aE0CN_uefIRrMvSQ,4,"We eat dinner here often, usually with exemplary service and delicious food. If you get seated in Tanya's section, ask to be moved immediately! She was nice, but a terrible waitress.",review,a2KLTknquBFq3HFHMJBEaQ,0,0,0 +3i_8kdBQ4ex1o25BGQ9OvA,2012-02-07,8XUAC_AxKKxewCl0fT48zQ,4,"This surgery center was quite nice and my girlfriend's septoplasty/turbanoplasty/sinus surgery went off without a hitch and the doctors all seemed amazing, anyway, I didn't get a surgery, but my girlfriend couldn't be happier with her results.",review,O_gd75OCbEbBhZrAJZ5ebQ,0,1,0 +PwxvN0SnAGPdqXdNEYVT3g,2011-02-07,I_1CgHj93GhRcOsWTwsm5A,1,"Can I tell you how much I despised Fate with all its pretentious, snooty bullshit? I should have known the second I realized that Bliss/reBar was in the same building that it was probably tainted from all the leftover evil. + +And so it is. We showed up and the restaurant was practically empty. There is no hostess or even a hint of one. We stood there for many minutes on end before even being acknowledged by one of the many servers who were rushing around (perhaps serving to invisible people? The place was dead.). We were told there was a 15 minute wait, or we could eat on the patio. Um, it's 40 degrees... AND THE PLACE WAS DEAD. I guess we'll wait. We go back outside because there is zero point zero extra room to stand. The server comes back out and says they have two large parties coming in an hour, but we can sit inside now if we can be done in 45 minutes. That's sure inviting, isn't it. + +So we hustle on inside and make some hasty selections. $9 faux comfort food shit like gourmet mac and cheese just offends me, so I go with the veggie sandwich. That sounds innocuous enough, right? The food came out straightaway - too fast for a burger to be cooked medium well, like my companion ordered. Sure as shit, she cut into it, and it was bleeding and mooing all over the place. My ""veggie"" sandwich arrives and it looks like a Filet-o-Fish from hell, some huge block of something unidentifiable due to extreme deep-frying. I couldn't help it - I asked the server what the hell it was. + +Eggplant. + +Ohhhhkay then. + +It was like trying to eat a deep fried brick between two pillows. Impossible. The pretzel bread, while yummy, is totally unyielding. Only Jenna Jameson can fit that thing into her mouth. My companion was suffering a similar fate with her bleeding burger. There was mayonnaise and shredded cabbage and boiling hot eggplant juice going everywhere and it was goddamn ridiculous. Neither of us got through even a half of our sandwiches. I wolfed down the side salad just to get something remotely healthy in there after the onslaught of grease, although I almost choked on the buckets of sugar syrup they call salad dressing. + +So, while we are attempting to recover from this mess, the server goes MIA. You'd think if they were trying to hustle us out of there, we'd get a damn check. Nope. No. Nada. Had to chase someone down and ask for it. When it finally came, there wasn't even an itemized receipt, so even though the total seemed a little low I couldn't check it out. I was so over the whole experience at the point I didn't even care. I left a shitty tip and we escaped to the bar next door, where the cute bartenders gave us some free drinks and we sucked down innumerable $3 vodka specials for the next four hours. + +Just UGH in every way.",review,UoBfwbXaixelZBghbJ2cSg,1,6,8 +qwmHm3s8p7J12AIY6Co8HQ,2012-06-17,6P-j7u82hGHgN87OAcCwhA,5,Had the mahi and it was great. Very reasonably priced also. Definitely a repeat.,review,GksCsVyXSABI9DNpJbFpTw,0,0,0 +GaeokhqmZYuPr7i1EZtnHA,2012-03-22,5aFfl9_fkLUw_T9DZYwBEw,4,"This place has been around forever. I started coming here when I was 5 or 6, especially when my grandpa came to town from Cincinnati. He loved it. + +The whole ""wild west"" theme prevails, and it is fun to think about cowboys and times gone by. I liked the sasparilla when I was a kid, I don't think I've ever had it anywhere else. + +Last time I was in Phoenix we went again, and while the quality of the food has maybe slid a bit since I was 5 ( um, I'm kinda a LOT older now), it is still cool. I like the good mood of all the visitors, it's a place that inspires laughter and happy shared experience. + +If you do wear a tie, wear one you don't care about, ok. Trust me on this.",review,BuwjlU6D4kcs1aGo7wSM4Q,0,0,0 +kEyCMHBnohaWc81omLDfYg,2011-12-06,gK-blxjfcUVrPNlKNTbJ0w,5,"I have been living in Arizona for 4 years and have yet to find a decent Italian Beef Sandwich, until now. I even gave the same statement to the owner. I had ordered an Italian Beef for carry out, and while I was waiting, I let him know my frustrations. He gave me his card and told me to call him after I ate the sandwich because he wanted to know what I thought. Well, it was FANTASTIC! Of course, I called him back to let him know. + +The service, and the time and effort put into the food cannot be beat. This is what you get for a mom and pops type place. + +There are plenty of other sandwiches and foods there too. I can't wait to go back and try some more!",review,2Mm0BC0bN7BJiOUWf9GW3A,0,0,0 +jF7R5nxyGiwPM5Q7xLfD5g,2009-12-31,ZicqVp7QzEQGHcxWBIXXig,5,"This place is just so so rad. It was about time that AZ has a high end sneaker boutique. + +The selection of sneakers as well as clothes is above all. No kidding. I bought a pair of limited edition Jordans as a gift here. All of the sneakers here a so unique and fun, and it really puts the fun in sneaker shopping again. + +Sure, you can go to finish line and get a pair of sneakers there. And you will see various other people wearing the same ones. If you really want to find funky stuff to express yourself with, this is the place. AND to make it even better...they sell for retail! So markups? Not an issue. + +Do yourself a favor and check this place out...",review,G_6pOq1gA4jyJ3j8mjOyJw,0,1,0 +1ggcLvWPBDWnp5MVTRnoRg,2010-12-23,6JyCek_n05_IpMgZGOA_EQ,3,"3.5 stars. Needed a place to avoid the rain before going to see Tron with my mom at the movie theater next door. We didn't order food, just drinks. There's an OSF in Seattle, and having gone a couple times, while not super familiar with the menu, I know what they serve. Our waitress was actually really awesome- she got us our drinks quickly and was super friendly with our touristy butts. Yeah... it's a chain. I know the food isn't the best and the service can be hit or miss. But the stars are all for our waitress, whose name I (of course) can't remember. I got the OSF version of a Jack and Coke, which had a cherry infused whiskey (it was dangerous, and at 7 dollars, doubly so), and my mom got a virgin Daquiri- our waitress put extra whip on it. A little touch, but one my mom really appreciated.",review,JvyJa5TFSNK3VAeEPElRMQ,1,1,0 +wct7rZKyZqZftzmAU-vhWQ,2010-05-08,3ubU0rv1beJTbfSy9zalsQ,4,"Things I loved: +The Thom Kha Ta-lay (med) was creamy, spicy, and FULL of seafood and fresh kaffir leaves. The chicken satay had a nice char but was still juicy (so rare!). The cucumber and onion relish was surprisingly sweet and a great counter to the heat. + +Things I only liked: +The Pork Kwediaw Kraphrao (mint and pepper stir fry with egg noodles) was not as mediumly spiced and could have used a touch more mintyness. They were out of Pumpkin Custard, which made me very sad as it sounded awesome. + +Verdict: +I would go back to try a curry or rice dish, for sure!",review,bpgpImWo7JBvZGJCN33mSQ,0,0,0 +zLhfnbcnGg01_lltvrHVBQ,2012-04-13,1IwsfCWj32Q_rHtghr_EEA,5,"Dr. Jason Kanarish is absolutely amazing. I am a Physician Assistant in surgery, and appreciated his ""bedside"" manner as well as medical knowledge, which was phenomenal. He spent AMPLE TIME with me and answered EVERY QUESTION I had. Not to mention, he was fantastic with my scared min pin. I cannot recommend him enough. The staff is also extremely friendly and helpful!",review,7E7QOpXnt5s51Pfj0TWejw,0,0,0 +nFBse3YXN8CP1cDieyLz6A,2011-05-22,18eds-Q5M-UZAk9UF4bUsw,4,"I have been to this Mojo fro yo location several times now and really enjoy their yogurts! The yogurt tastes great, is light and refreshing and somewhat healthy if you avoid all of the chocolately/candy toppings yet they offer tons of fruit options. Priced by weight, a great stop after retail therapy at Saks or dessert after Stingray Sushi or True Food at the Biltmore. A must try, plus they have punch cards for free fro yo after a couple of visits! :)",review,6hRKotVFPYL7Ci0hipN9Eg,1,1,0 +5yRChLjoF31e46CttFK9fQ,2011-10-04,T6042sKoernzO80kb6_mgA,1,"Nice selection of stuff, but they have so little help available you will wait for darn near forever to get fabric cut, THEN wait in line forever to pay. For such a giant store, it appears there are 3 employees. That's it. I miss Hancock Fabrics, THEY knew how to treat customers.",review,r9xKvhIFjW8Nopvjm15y6A,0,1,0 +4-qDkltBuJ_Lbj3nyxvUlQ,2011-04-29,ogQyq7ve4Yqi4OI3G89ixQ,4,"I think this is the best frozen yogurt I've ever had. Even better than Golden Spoon, which is saying a lot cuz I love that place. I tried the peanut butter, triple chocolate (not my personal fav but my coworker loved it), cake batter (to die for), strawberry (tastes like a strawberry malt), snickerdoodle, and prailine. They have the best toppings of any yogurt shops I've visited. Favorites include choc chip cookie dough, mini gummi bears, mochi, yogurt chips, cheesecake, and boba... not to overlook the fresh fruit....",review,bcnAYXA0axwRwxo5wt287Q,1,0,1 +Bm2PBs_AZEtx93zdtwqUJA,2011-05-07,yejqmMXQQaSvvBTEx7DY-w,5,"Just open. I had the roast beef sandwich and my wife had the turkey and stuffing sandwich. Both were excellent, modern interpretations on classic lunches. I highly reccommend this place. + +P.S.: iPad driven POS system is way cool.",review,mYq8-BrNA6OVTXkFClH9yQ,0,1,0 +gWQlTK3o29rZGlw2YLUnhA,2010-01-30,N8i_-UP7gDa6VHBCO6giHA,5,"I don't frequent Tempe too often, but when I do, I try to get a Tea Infusion run in... everytime I succeed, I literally have a grin on my face after every sip. + +It's the least strip mall-esque dining option in the whole of Tempe Market place and that is a BIG PLUS in my book. Add to that that they make Boba Smoothies the way I like them... how could I resist? + +Case in point: The Pumpkin Chai. Based off the rattlings of fellow yelpers, I decided to try the chai and asked if it could be boba-fied (which makes me want to say Boba Fet) and they said ""SURE!"" It was delish, but that was summer and now it's winter and so warm sounded yummy but I had never had a hot boba drink before. So I asked them if I could have it with boba and hot and what did they say? ""SURE! But be careful it's hot."" And oh so YUM! + +I think they deserve the taglines ""Have it your way"" and ""Any way you want it"" more than Burger King! Because out of all the Boba places in Metro Phoenix they are the only ones that have never said ""No"" to me before with Boba Juice coming in a close second.... but only because their range of options is less. + +Add to that that they have a Boba Smoothie called Carribbean Colada and it is a pretty comparable alternative to my favorite Pineapple Lychee flavor that only the now defunct AZN of Mesa could prepare for me... so with just 2 of their drink options I am in Boba heaven... wonder what else they have in store for me if I ever tire of my usual options and try something different... don't know if I can... I might have to do a gluttonous double order or sip-taste from a friends selection. + +But wait... Boba's not all they've got, they've got a tea list comparable to that of Cheesecake Factories menu... it is a long one... I've had a blueberry tea, strawberry and a coconut one and they were all pretty tasty. I've also had a panini there and it was quite tasty and filling--I took leftovers home. + +My only wish is that the space Tea Infusion is housed in was more spacious with lounge seating in addition to table options so one can really settle in and work or chat with friends, but heck, I'm just happy they're here and serving the valley some tea-tastiness. + +I'll tea back REAL SOON!",review,AivhZeFM9EivrtQTc0iz_A,0,0,0 +Pr9rQKypHgC_J1AfufxzIw,2012-11-22,GD6730TWOxLJYOPEXGRS6g,4,Yummy breakfast! Enjoyed the pancakes.,review,hTwheafW_kAvf-33U2Tr8Q,0,0,0 +dzncF6n6MHJLXUo4_J6eig,2012-08-18,uLHy84c3g1FADkIOpxMtxA,5,We purchased a Groupon deal and went and tried this restaurant . The food is excellent and the service is very good . If you are wanting real Texas BBQ then this is the place to go!,review,vlsQs-8TNsNJnrL-7Rj2YQ,2,2,0 +k6Si433-EJrY4J7SZxsnjA,2012-10-29,Zr50sINJKYnWhnqLShzI8Q,3,"Hmm, a bit disappointed. I had been here several times when I used to live in Scottsdale, but that was 3+ years ago, and I must say that I think things have gone downhill here. The bruschetta toppings on the combination platter were odd for the most part, with the exception of the traditional fresh tomatoes and basil, which was delicious and worth mentioning. The provolone on the sausage bruschetta was excessive and the overall combination of flavors just didn't work. The pesto bruschetta was SUPER garlic-heavy, even for someone like me who loves garlic. I couldn't finish either of the latter types of bruschetta. + +Onto the main course - pizza. Had the Toscana, which has mozzarella, tomato sauce, mushrooms, and sausage. The crust was burnt and flavorless and the toppings just seemed kind of bland and strangely old-tasting. I mean, not fresh. Weird, I know. + +I sort of liked the red sangria, but it was a somewhat odd twist on sangria, as it was pretty sweet and not very strong. + +I am sorry, Grazie. I am spoiled by having had the best pizza on earth in Chicago and am too excited to try the other acclaimed pizza joints in Phoenix/Scottsdale to return to your restaurant.",review,9zx6afVX3NYLuVYzJz-XKw,0,1,0 +0K634ehk41ZRc4kj3NTAEQ,2009-07-08,TVZlTtdql6DmtPtSsdytgQ,5,"As close to a real, east coast deli as you'll find west of the Appalachians. Delicious sandwiches, egg creams, etc. Pricy, but kids apparently eat free in summer, so we kept it at 5 stars.",review,NAfU5nspEdZW1CBge0rxKw,0,0,0 +W1Fop9T-u4RGuF36DtZ6ng,2011-05-23,BHudENKdbPmHnT0M3jT94w,4,"Good food, friendly people. We like the Gold Strike Burger -- we get it almost every time. Also try the shrimp appetizer and the bread pudding dessert. Appetizer and dessert, plus a Kiltlifter Beer or two, is sometimes all you need. +The only sad thing is, because they are a bit off the beaten track, they will have to close for the summer, until November. We will miss them until then.",review,na9NcTh3l12ZlsXXyJc6Lw,0,0,0 +Cp6JGY5YIRncTV_My9nf9g,2012-04-28,rWuwYNwnOkhk6INuOd6KDg,5,"We searched our phones for a place to go to have some Ceviche. This restaurant received some good reviews so we drove down from NE Phoenix and were a little skeptical on the location... but our concerns were immediately set at ease once we stepped inside. What a great little place with very friendly staff! We really appreciated the cleanliness too. We ordered the shrimp ceviche, shrimp in green sauce and shrimp and broccoli in cream sauce. Everything was outstanding! Even the simple rice and beans were absolutely delicious! And the tortillas, uh-mazin!! Danielle was wonderful and we truly enjoyed her service. We will definitely come back and bring friends next time! Between the two of us, we already texted half our friends about this place and we haven't even finished eating yet! RECOMMENDED FOR SURE!!",review,fEvspU2v4_c8Hy7hRIlIFw,0,1,0 +wN_wAXWg8W94v04eqijy6g,2011-11-05,ngmjKL06ypxUkDqpFCPedQ,5,"!!!!!!! *** O M G ......So GOOD *** !!!!!!! + +My family & I keep coming back to this place. We drive over 10 miles to get our fix. I think it's safe to say that we are officially hooked, and when we are jonesin for Tacos Atoyac there better not be anyone or anything standing between us and our Food! + +Today we all came aways lickin our chops and yummy in our Tummy. I might not brush my teeth tonight! + +Here's what we had: + +~ I had scrambled eggs with chorizo (dry), cheese, onions, potatoes, and Jalapenos. Served with side of refried black beans and spicy rice, and a little plate of grilled onions (sweet & tastey) and jalapenos. + +~ The little woman had a Spicy burrito:al pastor, cheese, onions, jalapenos, mayo, avocado, + +~ The kid had 5 mini carne asada tacos with cheese.",review,obTixVBziFCH0e-EUnAvtg,1,2,1 +1mhywrdsgdqJM3OGZIpVtA,2007-03-26,nI5Cc73DTLDjPNJ4Z-1VVA,2,Divorced? Desperate? Have a new corvette? You've qualified for a trip to the lovely Martini Ranch where your next future trophy ex-wife is waiting for you!,review,FPWwCD73C0PlRdDfJ6Tuqw,3,2,6 +TVJT7Xknd-ikf4vskcjKQw,2012-02-03,ieumu7u7duQBUy5IT66WbQ,5,"I love the owners. Very friendly and accomodating. One night we had called after they had closed, and were pleasantly surprised when someone answered. Turns out they were hosting a private party. They agreed to take our order, which made us pretty happy. + +I adore their Greek fries. Olive oil, lemon, and the perfect amount of fetta. Been here several times for lunch, and always leave happy. Looking forward to meeting friends here for happy hour.",review,pIm17SVRo8IdhGoBD4qbnA,1,0,0 +WJ5mq4EiWYAA4Vif0xDfdg,2009-07-08,FnhRPqDQheoKHcPqzlELJg,3,"I stopped in here at 6:45am one morning and was told I was a bit early. I'm used to coffee shops opening earlier I guess, but they were nice about it and invited me in to sit and wait. + +I liked their stacks of Latin American Vogue, and the artwork on the walls was nice. They also had ice water out for you to serve yourself. + +I ordered my usual americano, and was pleased. They have raw sugar you can serve yourself by the heaping spoonful out of a pretty candy dish. That was lovely. + +Also, they are now the only place to carry Sweet Peas Bakery items. My favorite thing to do was walk down to Danielle's shop downtown and pick up some coffee at Royal and some of her Rosemary Shortbread cookies. It doesn't sound yummy, but believe me they are! Be sure to ask for some. + +At the time I went, the place was obviously not crowded and I received attentive service...",review,8wTya9Ijcf775vSofnfdGw,2,2,1 +O_ZNZDr6c5CsK6GgsKdDeQ,2010-04-03,oZLdCAwPUiX-xS7zbixZiw,5,"Awesome resort. I was able to stay there to celebrate a birthday in July, and fortunately it wasn't as hot as it usually is. I am a wimp when it comes to heat, but the resort was wonderful, even with many things being closed. The summer is off season for this spot. We had a great time at the spa, and lying by the pool. Be sure to have your food and drinks served there. It feels so luxurious.",review,VD5XVYIA2644upO0z9-ZSw,0,1,0 +juzATNnxyBWEdQoDoKrEuw,2008-02-27,OSCOZBMl_miGbRd4h-6azw,1,"Goddess got it right. This place is pretty, and it looks so promising. Big disappointment. There was nothing for vegetarians. The food was mediocre at best. I'd choose Pho Nhat over this pretty restaurant any day. Don't judge a book by its cover. No good.",review,jKeaOrPyJ-dI9SNeVqrbww,0,1,0 +jCUOqEK8Lln0PK3GeUl6IQ,2011-06-04,bM80ahZ8nPM-ClAu1FdDbQ,4,"When I'm looking for the more mature, laid back version of Lux, I come to Copper Star. Coffee is not as good but service is great and place is inviting. Great neighborhood favorite.",review,0ST1KniOKB9Evq-IuUyMIA,0,0,0 +XaSV2CimMDKOuNrfP8F6CQ,2012-08-14,A0q4UfDmv-PJi9gU_FfSTg,1,"This is a sad excuse for a gay resort. Sort of like a worn out version of Palm Springs. We found the Zen Yard up on Maryland Avenue a much more agreeable experience in a better neighborhood as well. Zen Yard is a far better value, with full breakfasts included and warm, helpful hosts as well, not to mention particularly reasonable off-season rates and hosts who are actually there for their guests.",review,9Xt-8aPXCRBJetIoVWQT7w,0,1,0 +I2_yeLfTzXHGwi8an0tL4w,2011-03-05,xWshnS43YZzfMMRSHXEEtQ,5,"In times of big corporations it was nice to find such a warm and friendly coffeehouse in the valley. It is just a great place to hang out, set-up your laptop or read a book. I thoroughly enjoyed my Joltachinno, a much better version of the Starbucks frappacino which is just too sweet. +We came back another day for lunch and all I can say is yum! I have never had food like this at a coffeehouse. +Amazingly, for our second time there, they recongnized us! WOW! I am glad that I have found my new hangout when I come to the valley!",review,9QnSv_ORlutCyOORsJC8qA,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2011-04-25,9fRpuRDigQEQCKyukeMNTg,4,"Went Saturday and got there just after opened at 11:00am as suggested by other yelpers. Glad we did as filled up quickly. Rate 4.5 stars as I'm a big fan of pub grub and atmosphere that goes with it. Would have been awesome if had a more brit/euro style feel by adding sports tele/bar music but that's being awfully picky, especially for such a small venue. Food was great, huge selection but could have been a tad warmer (my choice). Beer choices good, unfortunately out of my first pick but can't knock 'em too bad for that, and a bit warmer as well (again, my choice). Wait staff very friendly and efficient. Didn't have any unusual wait for service considering crowd. Prices I thought were reasonable, and we left full and satisfied. Definitely will be back again.",review,tMR534A8JM8lc2GWRQ1hcw,0,1,0 +EMGkbiCMfMTflQux-_JY7Q,2011-08-13,Yh8V1ZVt3vCssaoT6PAm6Q,5,"Great food and service. Normally a wait on the weekend, but what would you expect.",review,GJ_Uj-QZcQbEm5mKAj7eUw,1,1,1 +ho4Te6bO2tGs56h9PF2vuA,2011-04-07,n320KwKZsuBn9IKem77FtQ,4,"I first saw this place while I was on light rail going to basket ball game. The stop is nearby and it makes it easy to get to. The food here is very good! Everything I get here tastes home made and offers just the right amount of spice. Their salsas are very delicious! I always get the enchiladas or the bean burritos served enchilada style. Both the red and green sauce are very tasty. The service is always very fast and helpful. We came here late one night and were one of the only people left, but the waitress never hurried us and was very courteous.",review,7jWmd57QoJnq2q4QyvVS2Q,0,1,0 +2FudHUhV9U54dm0S1ePuCw,2009-10-18,aULZki22oNRlfUMyxzJxsg,5,"best coffee in phoenix (so far). experienced and friendly baristas, a large sitting area inside, nice decorations, community conscious, promotes local art and artists, outdoor sitting area, easily accessible location from the light rail and from the portland park neighborhood. + +i had a short vanilla cappuccino and the thing that made it the best insofar to my search for phoenix's best espresso was definitely the milk. it was properly steamed microfoam. the shots were right on, too. + +the milk i've had elsewhere in phoenix doesn't compare. thumbs up to fair trade.",review,0rRTTYnjOtMDD32RvlxPow,0,1,0 +9mQj65SmYj2pcehH339aEw,2010-12-22,WrMiCe97wEFgkJlb0OfYwQ,5,"this place rules, plain and simple + +just wish they had a cheaper jukebox",review,DR16G5ON682bdXrcFUjVOw,0,0,0 +0x0voDMo5yMQI2601ovjOQ,2011-05-11,TjRguiiYR-pZZJ_F_SAE7A,1,"If you have to be some place on time, don't use them. I called at 2pm for a 4:15 taxi to arrive. At 4:25 they were calling me saying he was right around the corner, and gave me his location. Estrella called a couple more times to ""verify my address"". At 4:35 I called them and cancelled the cab and got a ride from my neighbor. As we pulled out of my neighborhood, we PASSED the cab. He had taken a street that he thought was going to be a through street and got himself lost. This is a TAXI service, they should know how to get around the valley!! Don't these people use GPS, or MAPS at least?!?!?!? End of story, I was still late for my class that I paid 250.00 bucks for. I was not allowed in, and the money is non refundable. So thanks Estrella wasting my time and costing me money. WORST TAXI SERVICE EVER.",review,FX9273MUWSM_LxtmFVriaw,0,0,0 +muCl5p-9ut1sY0aKeUeRhw,2009-01-04,dSa-IKXBjz0YInXDBXx5kQ,4,"When Sen. Ken Cheuvront opened this restaurant, I was living in Midtown phoenix and it was at a time when a lot of restaurants in the area didn't exist. I was beyond excited of it's creation. + +It's a very trendy urban feel, with a nice patio on Central Avenue. Located at the bottom of Artisan condos, it's not a terribly easy place to see if you're driving by. They feature an incredible selection of wines and cheeses, of which you can purchase and take home as well as nosh in the restaurant. They also feature smaller sized entrees for those who are not looking to get stuffed on greasy messes and feel sick all night. + +A particular favorite of mine are the ancho pork empanadas which are fluffy and crispy with a little orange in the pork. They are definitely delicious. Also great is their white pizza featuring sea scallops. + +There is nothing here that is oddly unique, but everything is interesting, and it is a nice spot to hang out with friends and have a nice night out. Especially during a first friday.",review,JgDkCER12uiv4lbpmkZ9VA,0,0,0 +tenKOmTRi2rjZAWwNCDv6w,2012-09-10,VNUPyOCkKH-pVKLty3qTPw,5,"There are certain people in your life that you should have & trust. A good mechanic is high on that list. + +I found out about Whitey's Auto through twitter. Many of my friends were communicating with Scott, the GM, and I started following him too. His tweets were funny, authentic and relevant- and not always about auto repair. The most important aspect of his tweets? They're immediate. + +At the time, I had a warranty through the dealership on my car so I didn't need to go to Whitey's for service. However, when I got into a car accident and tweeted about it, Scott responded for me to call him and he'd help me out. + +Although Whitey's doesn't do body work, their neighbor 1st Class Auto Body does. Scott personally walked me over there and made sure they treated me right. He had made me a lifelong customer at that point. + +When my boyfriend's truck kept leaking oil and he wasn't getting results at the shop he was taking it to, I took him to Whitey's and introduced him to Scott. With one check, Scott could tell that the previous shop had NOT done what they had charged my boyfriend for. Scott told him if he didn't mind the leak, he could put off the service work as it wasn't something imperative. And he didn't charge him for the assessment. + +Recently the belts on my car fell off, causing my a/c to go out & lights to come on my dash. My warranty was over, but I didn't even hesitate. I just turned right around and took my car to Whitey's. Replacement belts and labor (plus they checked my battery and charged it for me) cost $80 less than it would have at the dealership. + +The inexpensive cost, along with piece of mind that comes with dealing with a mechanic and shop you can trust, make Whitey's irreplaceable. Don't hesitate to take your vehicle there first when you need service!",review,BDQjq30H2gFncFvaapvm6A,1,2,1 +MeC8jb8n-9VR5wgBj_7PEw,2010-12-08,C1kdmZkPlIsRcrSxiL69CQ,5,"I would never have picked a museum cafe for lunch, even though it is practically in my own backyard, but with my friend's endless ravings about their Dreamcatcher Salad, I relented. And I'm glad I did! It's now become a staple for lunch meetings! + +The dining area is bright and cheerful, but the outdoor patio is truly a delight on a beautiful day! It is serene and is surrounded by a plethora of desert plants and a lovely water feature. + +The menu is rather short on items, but long on freshness and flavor. Many of the offerings lean towards Southwestern style. I have found my favorites on the menu, in particular, the Hummus Veggie Wrap which is filled to the brim in a healthy spinach tortilla with Tepary bean hummus, tomatoes, roasted red bell pepper, grilled red onions, pepitas, smoked gouda, and romaine. (I've tried to duplicate this wrap at home with underwhelming success!) Each sandwich comes with the choice of salad or chips. The portions are hearty. + +The service is attentive, but not intrusive. + +An absolutely divine dine!",review,8n--xRBQ9eLDi0vpQ5fGFQ,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2012-01-16,GlFyloK36QBo7Qwn1DVarQ,2,"After stopping by Gallo Blanco for breakfast our second and last time, I have to wonder when the last time was that Doug Robson set foot in his establishment? We have been going to Gallo Blanco since it opened on a regular basis and finally decided to try breakfast a couple of weeks ago. We showed up about an hour after they opened, requested coffee and OJ, and were told that they had no OJ because ""no one worked last night, so no one made it."" Uh, okay, what have you slackers been doing for the hour that you've been open this morning? Fast forward to yesterday, when we decided to give it another go. We showed up about 45 minutes after they opened, desperately wanting a Bloody Mary. Guess what? The bartender hadn't showed up yet...we were walking out to go elsewhere (we REALLY wanted a Bloody Mary--don't judge) when she did arrive and we popped over and ask if she could make them--then we would have sat back down and had breakfast. Nope, she said, she needed 15 minutes to get set up. It wasn't the 15 minute wait that made us leave--we had to drive somewhere else, after all--but her response sent us to the door. F you, Gallo Blanco, for hiring a parade of unsupervised, couldn't-care-less-hipsters that are slowly ruining the excellent reputation Robson worked so hard to earn.",review,GJ81EquQfQKvS-eLRdr6aQ,1,4,2 +lk-6NXfpSgvNw7zm0xtUVw,2012-04-21,wLH_lWJ9og4uJuPciEiJLQ,4,Huge burritos for $7. Enough for 2 people. Fresh and tasty! Plus very friendly service. I prefer going here vs the Taco Bell in front of them :),review,Df9kAosCVSIzl06qwhmBmA,0,1,0 +_lanRtzQGRkbhd2b6pQleQ,2008-04-02,KFa70lcfuDBF0nL3Cvvb6g,4,"LOVE LOVE LOVE riding my bike through here. Especially on our way back, with all the down hills!!!! It's like a roller coaster but better!!!! + +I also drive through here every morning to get to work, so that is a nice, relaxing, pretty way to start my day.",review,Wy7f9DOuBEOenhnA7KIKoQ,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2010-04-21,8zw-XQNUZMRWMSDXA1nMXg,5,"Pizzeria Bianco: Before and After +Cited as ""the best pizza in America"" in numerous on-line reviews as well as on Good Morning America and as published in, Slice of Heaven, to most pizza lovers the three to four hour wait for a table is so daunting that they push on to a more open table atmosphere for their pizza experience. But to the true pizza enthusiast, Pizzeria Bianco is as much about the experience as it is the food. This place is best known for the owner Chris Bianco, hand tossing each and every pizza pie served every Tuesday through Saturday, from 5-10 pm for nearly 15 years, of which I was one of those fortunate customers. However, early 2010 Chris was forced to retire due to illness and turn over the pizza paddle and oven duties to his protégé of 15 years, Horatio Hernandez. +My decision to try Pizzeria Bianco for the first time came from a challenge I put upon myself: Find the best food in metropolitan Phoenix. After hearing about Pizzeria Bianco from a friend, I made gourmet pizza my first battle in 2009. I knew about the long lines forming an hour or more before the restaurant opened, and this beautiful fall day was no exception. I arrived 60 minutes before opening and my date went to Bar Bianco to start us off with a couple of pale ale microbrews while I held our place in line. Seeing that there were only about 20 people ahead of us, we assumed we would make the 5:00 seating with no trouble. However, just as we were holding a place for the rest of our party, so were the 20 or so people ahead of us, and when the door opened promptly at 5:00, there were now over 50 people ahead of us. Needless to say we were left waiting another hour since the restaurant seats only about 40 at a time. +When we were seated at 6:00, the four of us started with the homemade mozzarella, local tomato and sweet basil starter with extra virgin olive oil drizzled all over as well as homemade crusty bread with a dish of EVOO with a touch of balsamic added. We ordered three pizzas, the Sonny Boy providing salami, marinara sauce and gaeta olives, the Wiseguy a sausage and mozzarella taste explosion and the Marinara with Prosciutto di Parma. All three pizzas were piping hot when they arrived, just crisp enough around the edges and loaded with the most amazing flavors your mouth has ever experienced. We left the restaurant without remembering the nearly 3 hour wait and were fully satisfied, eager for the next opportunity to drive to 623 Adams in Phoenix for another ""slice of heaven"". +And so, after hearing of the departure of Chris from the kitchen, curiosity got the best of me. I had to challenge this place and find out if the changing of the guard made any difference in the wait time, the food quality or the overall experience I had truly fallen for. April 6, 2010 again I ventured down to 623 Adams in Phoenix to see if a Tuesday night or a new head chef had made any difference at all. My date and I arrived at approximately 4:00 pm, one hour before the doors would open. We found a line of about 25 people and looked at each other and said, almost in unison, ""Well, the wait hasn't changed"". +Bob trotted off to Bar Bianco to find our pale ale, Four Peaks to help pass the time. We caught a glimpse of owner Chris Bianco and I told Bob how I would love to chat with him seeing as I was writing a comparison review, I also wanted to find out who was cooking tonight. Bob stalked Chris into Bar Bianco and asked him if he had any time, would he be willing to take a picture with me and answer a couple of questions. When Bob returned with another beer and Chris Bianco in tow, I was star struck and could barely speak. All I could muster up was, ""Are you cooking tonight?"" To which he replied, ""No, I have Horatio at the oven. I can't cook anymore."" I explained my evaluative writing topic and he assured me the experience would be the same. We took a picture and off he went, back to the bar. +At 6:15pm, after 2.25 hours of complete social enjoyment we were called to our seats at the bar. We ordered the same items we had enjoyed last fall with the exception of the Marinara. The overall experience was better for me as I got to enjoy personal time with Chris. As for the meal, it was just as amazing as I remembered it from 6 months prior with Chris tossing the pie for every customer. The flavors were exactly as I remembered and the service from the staff was top notch, just like the first time. From the wait to the taste, it didn't appear that anything had changed! +So what makes for the ""best pizza in America"" and how did Pizzeria Bianco get the tag line? Well, my opinion is flavorful ingredients, a phenomenal social experience, and an owner who lives by what he serves. To Chris Bianco and the Pizzeria Bianco staff, you haven't skipped a beat!",review,Y0aovX_kbraKpdLYCzVHKA,4,5,2 +apCfJVnRyaw6oVUBKujpUQ,2010-08-03,AYc9uXZLg_x9IH40RS7oHg,5,"OK ok ok. I'll have to agree with some of the below reviewers that this place isn't dead-on authentic Mexican food. That being said, I love it! The place is huge, sporting a bakery (said many times before) with unbelievably dirt cheap pastries (not said as many times before), a little carniceria (not as good as Carniceria Sonora) and a huge dining area. + +The dining area with all its painted mural glory is so goddamn cool that I find myself wanting to just hang out there for hours watching La Primera Division de Mexico on TV and enjoying a nice $2 Dos Equis. + +The food - that's probably the only tougher part. Keep in mind it's still pretty good, but there are better places in the area for getting your Mexican on food wise. The potato taco is worth getting because it's fairly unique, but it came out so soggy that I had to eat it with a fork. I grabbed a couple of the Yelp-Advertised taquitos as well - keep in mind these are not the Circle K, rolling taquitos. They are literally just smaller tacos, but they were damn good. + +I guess when it comes down to it, I'm an atmosphere buff. There were so many cool things to check out in this multi-plex, and the atmosphere was so warm that I'd love to head back again soon.",review,mQba83gB018LlGt51r80ZQ,0,0,0 +RS6V9TGTLQmBRuXsmWCOTg,2011-10-26,pyx9sSmkoISU6kWWXC-7gw,5,"Being my first review, there is only one place I've always had a 5-star experience. Hoodlum's is the ultimate music/cd/vinyl/DVD/used music store in the Valley. ZIA and Stinkweeds are a distant second in terms of selection, price and overall experience. + +Steve and Kristian are two of the nicest local business owners I've ever met. They know a ton about music and the local scene. They'll help you find anything you need. + +Tucked in the SW corner of Guadalupe and McClintock (next to Traders Joe's), this is a special place to find that CD/DVD you've been waiting to purchase. + +They also have a wide selection of used CD's and DVD's to are at bargin prices, be sure to check that out too!",review,obZR7Hn_XTXPOtnynW4H5w,0,0,0 +-r0wNFCnAkK8DjMnv3L6Zg,2012-12-26,7UGJemr1kgLqxF9IqbHF6A,3,"Truly a neighborhood bar. Didn't know anyone here, and didn't leave without catching everyone's name. Maybe not as wide of a beverage selection as the pizzeria-turned-bar in the same lot, but definitely lots more fun. Will return.",review,jdeNI5TTTuM6mj3HTgstRA,1,1,0 +yeLq-452CkaKw1ynn0nRNw,2012-09-14,DAHiLsxKFch-pt9K47D2Gw,4,I would give them a 5 if the service was better. The food is always great. I've tried 6 or 7 different versions of the calzone and the stromboli is awesome. My boys love the pizza. The price is great for the portion. Great family spot and the delivery is on time.,review,vNx7F5bTO_rnh2ZlBUJ1Bw,0,0,0 +wzP2yNpV5p04nh0injjymA,2010-05-05,XhyaLLIA-T8xR1-DfZPGlQ,4,"Its pretty expensive.. Everything's about 4 dollars minimum but the food is quality. The flavors aren't very new and exciting, but you can tell the ingredients are quality and they don't skimp. The texture is good quality. Love the whole almonds in the rocky road! :D",review,d0wJVf7Gv7v1B-HHYhxZtQ,1,1,0 +_oBxfuBd2qDEWaYsdvP_dg,2008-06-22,CboKiJv0GmNBNcVPrsTmeQ,2,"I went to Gordon Biersch for a birthday party at the beginning of the month. I had fun, but it had little to do with the establishment. We had a special ""deal"" of $17 because we were such a big party. There were soft drinks included in the price, but alcohol was more. I have no issue with this, but the food was not very good. I had a pasta dish and it was fine, but I am not dying to eat it again. Then, we get our bills. The price was not $17, there was additional tax and tip added on (which again is fine, but deceptive when we were told it would be $17 per person). Then, my pregnant friend had a cranberry juice and sparkling water. This apparently was not on the included menu and she was charged a $2 alcohol fee for her non-alcoholic beverage. It just seemed a bit fishy to me. Had it been an excellent meal, I wouldn't care about a few bucks, but it was just ok.",review,7Pyi-M7MfO3R2PHTuVY0TA,0,0,0 +ZJxs1L4oMhX9GW00ty0aAg,2009-11-16,E3mDKGf2YqORQEbkBlXrnw,2,"For a chain or restaurant in general with ""wing"" in the name, this place really doesn't impress. + +If all you're looking for is standard draft beers, mediocre wings and sports, sure it'll fit that bill but it won't stand in any discernable way. + +Wings are just average sized. Selection of sauces is good, the hottest is pretty hot but not extremely flavorful. I suppose it's just there to burn you twice, you know what I'm talking about. + +I won't go on promoting a bunch of local bars or chains locally that do the same thing with wings, beer and sports. Oh okay, I will; Hazelwoods, Native New Yorker, Zipps and Tweakwoods all do some/everything better than Wild Wings.",review,hW2XQMGHy5_TW7dnijZR6Q,1,1,0 +ZhMlXLXuZf5z7lxunHk2ww,2012-03-26,jycfGaeb7QPZfDg-YScNUA,5,"Great groceries and fantastic service, keep it up.",review,yDiCXOYJbbi5k1clMwo9Tw,0,1,0 +OkxO2FoKMxVCFzskLeI37Q,2011-01-19,VCVLFApxJL4_MRv1nVhdJQ,4,"I stayed here with a group of friends for a 1/2 marathon that we were all registered in. The room that I had faced the In and Out burger but I didn't hear anything. The pool area is small but if you want a bit of sun I think the best place is in the small grassy area behind the HUGE wicker chair. Grab a lawnchair or toss a towel down and enjoy. +The biggest complaint I had was that the Bar didn't open until 5 p.m. Early, I know but it was my weekend! +The room itself was modern and clean. +The bathroom was nice, and so were the complimentary magazines.",review,gw2sxzQrSTo6NpMSp_gVNQ,0,0,0 +HhJbJjdw8vuxYT4QpLIW6Q,2012-08-31,rBmMnP_H0tiSiL_galXD5w,5,"If you really care about your health and want a sincere doctor who honestly cares about his patients and believes in his practice, then this is the doctor for you. I am a 40-year-old woman who couldn't be happier with the care I have received and how I feel after seeing Dr. E for the past year. I recommend Dr. E to all my friends and family and the ones who actually listen have been very happy with their care as well. + +In response to Lisa N., it is possible that you are one of the few people who is immune to Botox and similar products, which is to no fault of the doctor. I too was extremely unhappy with subsequent treatments given by another doctor only to find out that no amount of the toxin would ever be effective for me because my immune system works too well. Ironic, isn't it? + +You should always do your homework when looking for a new doctor, especially when you know exactly what type of treatment you are seeking. For example, if you are simply interested in the HCG diet program instead of overall health and you had been elsewhere for less money then likely that place is a better match for you. + +We don't live forever, but we can live better while we are here. Take control of your medical care, it's your body and therefore your decision. Dr. E at Carefree Health Path is a great place to start your empowering journey to health.",review,mmZk-DnajPfiCDu67CWrKg,0,0,0 +cfy-C6XNFt-F-dCQfK7EDQ,2011-05-15,LHZpeTeAHibycnPbQr3exA,5,"When we first moved to Ocotillo the first thing we did was peruse yelp for the best local eateries. Mikado was one of the first things to splash onto our radar and we had to check it out. Luckily for us Mikado is literally a 2 minute drive from our house. :) + +The restaurant is low-key and I like how the lighting is a little dimmer than usual to create a more mellow ambience. The servers are all very attentive and kind which makes the eating experience so much more enjoyable. + +So anyway, on to the sushi! I adore sushi rolls with some kind of crunch in them which is why I love anything tempura. The Big Shrimp Tempura Roll is my favorite and it could stand alone as a meal because it's so ginormous. They stuff 3 large tempura shrimp in there with avocado and cucumber then drizzle it with eel sauce. LOVE! And while I'm on the subject, Mikado has mastered the art of frying up a perfect tempura. Their tempura shrimp is super crispy, isn't greasy and always fresh out of the fryer. The Crunch Roll is superb, the salad dressing is addictive and the chicken noodle udon soup is delicious. Their prices are great and you still get so much food. How can you go wrong? If you're within a 20 mile radius of Mikado you need to stop by. + +Also, I can't say this enough: Please support your local businesses! They depend on your patronage!",review,au98D2-Op6Dq0ShyYAgjBQ,0,0,1 +shCdCHRbnY5FTMJbWl-myQ,2012-10-20,OWzyKHPnTuE7PAGFvlbv9A,2,"One word: bleh. I know my Thai food and this place was about 1 star, an extra star for the nice service. I came here with my mom, uncle, and aunt and being my first time, I opted to order my usual pad see ew. We also ordered coconut fried shrimps, the mango papaya salad, tom yum soup, and fried rice. Honestly, the best thing about our order was the coconut fried shrimps. It came out hot a crispy and flavorful. Everything else needed help. + +The fried rice was too overwhelming, it tasted like too much fish sauce and was very salty. The Tom yum soup was a little bland and we had to add fish sauce to it, and the pad see ew was way too darn spicy for being a ""mild/medium"". It was full of this unpleasant pepper flavor that I definitely wasn't use to in my pad see ew as well. My aunt and uncle think that the place hired a new head chef or something, because since they're regulars, the food this time around was definitely not worth the bill. We ended up to-going 60% of the food untouched so that we can tweak it ourselves at home to our liking. + +All in all, there are other places around town with better food - 1 star. 1star for the friendly staff.",review,2bGMR2P9ZWR-mJn5aEE1EA,0,0,1 +WNy1uzcmm_UHmTyR--o5IA,2010-07-20,clAGZ3XaBhvZ6cJFO3aTEQ,4,"Ok so there are plenty of great reviews of this place already but I'm going to throw mine into the mix as well. + +The food here is fantastic, but if you've ever walked in there around lunch time you could probably figure that out from the crowd. Everytime I come in I try a new one and I'm always happy with it, I've yet to come across a pasty I didn't like here. + +When it comes out you might not think it's that much - but portions are deceiving because the food's pretty heavy. My main tip to you is only eat half and then pause to let it sink in - take a break to drink your beer or something. I always force myself to save the second half and it makes me much less sleepy when I head back to work after lunch :) Plus it makes great leftovers.",review,3xVwlgww4Pw5wc_twrfOwA,0,1,0 +YxLiLBNTm4cOg7OlKKLmVw,2011-04-23,V_FNJIEmKCvkq4n4om1NJw,1,"Went with three others. My first & last visit. The menu did not properly describe the item and instead of a bell pepper dish, I got a port dish. It was dreadful. The other three I went with were not very happy with their meals either. The restaurant was extremely noisy. Not pleasant at all & terrible food. Will never go back. A big disappointment. They can't even describe their items properly so you never know what you are going to end up with. They called it a pepper dish and it was a pork dish. The sauce apparently contained pulverized peppers. Are they stupid? I should have trusted my instincts & not the commercial. It's a third world country. They can barely afford to feed themselves. They have no history of cuisine. I wouldn't waste my time and money on this place again.",review,5XZ9gYbA-L4GXWQlMtftjQ,0,0,0 +zff_uz9k60UwNi3etN39uQ,2008-07-08,_i9Z-qlRbg9sOnwRKGtKFg,4,"The quintissential downtown scottsdale club. As snobby as it gets, but in an endearing way. I talked to Ice T and Coco at this club one time. For some reason I felt like I always was on the verge of punching somebody when I was in there. This place reminds me of the club in the beginning of American Psycho, reserved tables, the whole deal.",review,uEG5uD9wMJixGWxaq34IEw,0,2,0 +iWlaj4R-2BTsWR7PwL90BQ,2008-01-12,YiSRd6J0XkY7oAcFPNPLAQ,4,"Thanks to Fry's, I felt like I was on vacation today as I traipsed around in the rainforest with the Aztec computer geeks. There's something just cool about walking into a snake's maw to listen to stereo equipment. The outside is just as lovely to look at. + +Now as far as the store itself... + +...the cafe was a joke - out of cream cheese for their bagels. Who runs out of cream cheese by 10am on a Saturday? Coffee machine broken...don't they sell those things? Couldn't they just 'demo' one from off the shelf? + +...it felt like at least half of the workers knew what they were talking about - which is actually (maybe even sadly) better than some electronics stores I've been to. They didn't try to talk down to me because I was young or a girl. + +...prices were cheaper for some of the items I looked at + +...no restocking fee for returned electronics. + +So in the end, the unique look of the store boosted it up to a four, silly enough as that sounds. It was refreshing to be in there, and my bullsh*t radar didn't go off as loudly as it did when I was in the Baseline location. Good thing I wasn't rating just the cafe, they would've gotten a two.",review,1S7XdhbZWR17Wy4TBsIzaw,0,0,1 +9Mg5BoR-u0zPfcInLUcpaA,2012-11-11,MJAPmVi4w5kqPoTDbHv4gA,4,"I was blown away at the sheer NUMBER of books and magazines. Then when I looked at the prices- that was even better. There were books I found that were brand new and had no markings or tears, and they were still at half-price! Not to mention, if you're nerdy like me it has the 'old book' smell throughout the store. Reminds me of a rainy day in the library. My only complaint is the grumpy employees.. I get it- your job might be boring, but at least smile and return the ""hello"". As for their product knowledge, where everything is located, etc... I cannot complain. I will be back again and again. Let's just say books are an addiction of mine, and I don't want help quitting.",review,BFi1UUUHJwnu0EJIWHhNRg,0,0,0 +u0NbikWwP7TVkMkCily-4g,2010-07-13,-ymlEhTIjPx3Bdf7-mmP-w,5,"Loves the recent Cezanne show. In fact I've seen it twice in the last week. I need to find out more about who curated the exhibit as it is very fine. The Oriental collection is very nice and soothing. +The Downtown Chamber Group gave a wonderful concert in the great hall on Sunday. I wonderful and unusual program of saxophone and harp. I think it is great to have music in the galleries. I liked the musicians being on a platform. since the room isn't banked one can see the performers. +A few things I'm not so crazy about: +The great room is this awesome space for large art. Sunday I sat and looked at it for several hours. You know, not such great art. I find the Terrill boring and the other pieces uninteresting. +The cafe never quite lives up to its promise. My lunch companion barley touched her lunch and the waiter never asked why or offered a box. +Enough grousing I love the place and go often.",review,uM-Vc-yM0Gr3MJRfZPeIwA,2,4,0 +hHE4OHAc8dONTV8QsGLbWg,2011-03-24,WF-a95N2wBbqtaKpeCLS5Q,4,"Great organic fruits and veggies....very clean store...great customer service....fantastic deli dept....fresh fruits and veggies (non-organic)....and outstanding deals every week. I know some people say it is overpriced a bit and that is true to an extent....but the sales ad that comes every week is a must see and you will always find plenty of affordable items. Eat, Drink, and be Merry my Friends!!!",review,ky9pQ8AKufvZ63IxR41jGg,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2009-09-07,Rz-ge0_MhJAVarqOBGAIlA,4,"If you are a beer snob, stay at home trying to make it yourself. If you enjoy a decent local beer in an old chandler building with a nice atmosphere give this place a shot. The owner used to be a brew-master at Four Peaks Brewery which is a local favorite in Tempe. + +I am not a fan of the over-the-top Hops that a lot of folks enjoy. A few of the offerings here have a bit too much bite for me. The red ale was my favorite until they changed the recipe and over did the bitterness. Right now I get a Sun Devil Ale when I go in and it is pretty good. They will bring you a taster if you ask and will explain the offerings to help you choose. + +The food is always good. It is a bar so don't expect 5 star cuisine. The fries are great and the sandwiches and salads are good as well. I haven't been disappointed with a meal yet. Even when busy service is decent. Enjoy the beer, watch the game and let it all unfold.",review,OMC3DRyGrDbq-oMtdRAH8Q,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2010-06-29,V0bPYyqjQ0-PZpl2vxU2VA,3,"Decided to check this place out for lunch yesterday. The decorations were very modern and I really liked the outdoor atrium you can eat in. I ordered a burger and wifey had the Hot chick sandwich. My burger was good, nothing to write home about but good. The wife enjoyed her sandwich, all though she overlooked the fact that the guacamole was spicy. I think this could be a great place to come and get some wine and appetizers, looking forward to coming back on the weekend! Late open kitchen is a bonus!",review,gcyEUr4DXcbjnGRAWFtfAQ,0,1,0 +GDmue1oJaem9ilywDtA4_A,2012-12-09,Aocud5UUS8z_S-Dh3EMZbw,1,Not only was the music the worst I have ever heard the wait staff was as annoying as ever! Like a wanna be swanky place in a strip mall that smells like fish and plays horrible music. Food was so so but over priced for what it was.,review,TX6A15C9djhFfHpAUAOLmA,0,0,0 +_kL4evOcRHHEquKnndUTkg,2007-10-26,T-PlEklG_M3ZQ1l4WKqm_A,4,"My boyfriend and I ended up spending a long weekend here because his grandmother had a week expiring on her timeshare with no one to use it. So here we were! + +We aren't golfers. We came to see AZ. We were in an interesting spot to do it ... we spent most of our time in the Superstition Mountains and Phoenix and then did one day trip into Sedona. So from a proximity perspective, if you are interested in seeing more than just the Grand Canyon, it's a good spot. + +Regarding accomodations, we really liked our little condo. Although the furniture selection was a little random (like why have a love seat but no sofa), it was definitely adequate. The beds were comfortable. And we LOVED having our own private hot tub. We discussed several times that we should maybe install one at the house!! It was just great to get in a soak after a long day of touring. + +We also really liked the restaurant on site. There's not much to choose from in terms of eats in Apache Junction but the Kokopelli's was really nice. I had a delicious salad with strawberries, blue cheese, and grilled chicken one night and fish over pasta the next. Both were fabulous. There was live music and the service was really good. We met some super interesting people and so the conversation was flowing. It was just a really enjoyable place to spend a night under the AZ sky! + +One kind of crazy thing that happened was there was a huge mud slide that wiped out part of the golf course and filled the parking lot. We couldn't drive into the resort for a couple of hours one evening as a result. Luckily, they reopened the kitchen to serve us since we were late arriving. I'm just glad we got locked out, not it!",review,7eahxWN26Zfcv7Ta3DkH7g,0,0,0 +VNJMoQAzJFWBYclBOSDPOA,2010-01-02,Q8B7GQTmz68kPKqvU73HHg,4,"As the mom of 2 kids (a 3 year old and a 8 month old) it seems to be very difficult to find a nice place to eat that is very comfortable and casual- and somewhere that people don't give you evil looks and comments for bringing kids (Carraba's). We have been here a few times for lunch and the food has always been good. Not great, but pretty good and inexpensive. I will say though that their french fries are some of the best I've had! I would much rather come here than IHOP",review,-B8fZ8mrYkP6jt4SqSNivw,0,1,0 +K13dEvg4uimGQ1OcE5vGZA,2011-04-06,BKtc3zuVpiRwuSt6E0j5mA,5,"I've always been partial to Harkins Theaters because they have the best seats. I used to say, ""You know what would be the best theater? AMC experience, with Harkins seats.."" + +Guess what.. AMC Westgate is the birth of the spawn of just that. I love this place. It's frigging massive to start with and has everything inside it. Not to mention an IMAX. The experience is great and the chairs are super comfortable. + +Nothing really more to say that it's a theater. I do like the new Stubs card that they put out. Yeah it sucks that you have to pay for it, but it's only $12 a year. Not bad for all the free stuff you get. + +Another cool thing about this theater is the location. If you are going to grab dinner/lunch before hand, ther eis a ton of places to choose from. + +Nice work AMC on making a great theater!! + +Ohhh big big big heads up. Be sure to see a movie before Noon or ya get to pay nice big money. that's probably the draw back. I'll still give you 5 stars.",review,_4lqpCYCqOQzbB6xQGGhrQ,0,1,1 +fK7ujDbjhRFEe2D7eIwK4w,2010-11-08,_qpRLiuEEXY8DB9tiC9DSQ,4,"I did not expect to enjoy a meal inside a mall. +I stopped here to fuel with fish and sake as shopping is such very hard work (sarcasm!). I sat at the bar and the sushi chefs' company absolutely made the experience. +I have certainly had better sushi, but the experience as a whole was great and I recommend stopping here if you happen to be shopping at the Fashion Square and need to recharge.",review,_ZXThWhgLL94mAXOntLDXA,0,0,0 +wH9WtaTlrRawH_IpK90RPg,2012-04-01,7u3iR9MelrWy6QWBaqaDYg,3,"This place is fun for drinks. Although, I wouldn't suggest eating here... My friend and I had the grilled cheese and tomato soup. I love tomato soup - even cheap stuff in a can... but what they served us didn't even resemble soup at all! Without any exaggeration, it was literally pizza sauce. I hope it was some sort of mistake... but who does that? Puts straight pizza sauce in a bowl with a spoon? I had been drinking all night and was starving and still couldn't eat it. That being said, the staff here was great and the service was really fast.",review,ayHh6jD9Fpb-PDDp51gTwg,0,2,1 +3N__CAwM5VZOhRKmxMtImw,2012-01-16,FWGwWnjBrrQroO3RWRC7gQ,3,"Once again craving sushi/Japanese food but since Iron Chef didn't met my expectations I decided to go elsewhere. Eastwind was farther away from me but I decided to try it out.There was no old fried food smell, already a plus. I can't eat raw fish yet so I usually ordered eel rolls. Also got the shrimp and veggie tempura. The Caterpillar roll was not my favorite. I hate when they fill the rolls with fake crab, plus it didn't tasted freshly prepared. The tempura on the other hand was delicious! Light batter, not oily, with 5 pieces of shrimp and several vegetables. Gyoza was pretty good too. I'll definitely drive a little farther for Eastwind.",review,h9d3VW5RTJymoFoLnN60_w,0,0,0 +zOCdVUKUN3b-obT67Qjyww,2009-10-11,BUYweJ7ca-HZRv95Ged5iw,5,"I attended a UYE (Unofficial Yelp Event) here and I have to say that Haus Murphy's pretty much wowed all 20 or so of us! + +It has taken me over a week to get to the review. I was still reflecting on the German meatloaf, red cabbage and Weihenstephaner Hefeweizen. + +How do you say, ""Damn that was good!"" in German? I have new found respect for German cuisine thanks to Chef Hoffman (not sure about the spelling there). + +The fubar of Yelpers (I am pretty sure that is the correct term for a large gathering of Yelpers) dined on the patio which is a great space. Service was very good throughout the meal. + +There was quite a bit of sharing going on and although I don't remember everything I tried, it was all really good. + +It was great to see so many friends and meet some new Yelpers like Norm!",review,P2kVk4cIWyK4e4h14RhK-Q,14,15,10 +0Llpzg85OhJF2CqJPU08Ew,2012-11-26,_Jb-l7CZH6qcDUjzk_CEdg,4,"Cevapi and Burek oh my!! Plus I got to hang with my fabulous friend Amra! Score! We wanted something extra good to eat after finishing our Mud Factor race on Saturday and lord knows I have been craving some Cevapi so off we went to Euro Bakery. It was already bookmarked as a place I wanted to try so this was a win, win in my book. + +Everything is made fresh to order and once you walk in, you can smell the fresh baked bread that they have made throughout the day. There is also a mini grocery store for you to buy items as well. My Cevapi (little beef sausages with fresh bread, onions and a sour cream like dip) came out piping hot and piled high. My friends Burek was huge (hmm not sure hot to explain so you will have to look that one up) and we both dived in like it was the last meals we would ever have. + +Will I come back? Hmm heck yes, but alas this treat can only be saved for when I burn off and absurd amount of calories so that I can indulge and not feel guilty at all. Hmm Cevapi and Burek = one VERY happy woman!",review,4E_nPWw89FLFHdNsEgMH-g,0,0,0 +G27f2NAq05CkMaoiXBPY_A,2009-06-28,w-n_6zj3FQ-pvh7hc9gcaA,1,"Avoid this einstein's at all cost. I have been laying in bed puking for over 12 hours because I ate at this garbage dump. The reason I know it was them? My girl is laying next to me puking as well. And the only place we both ate together less than 24 hours ago was there. + +The incompetent staff that happens to grace this poorly operating business cannot tell the difference between a large drink and a medium and take over 10 minutes to make two identical sandwiches. + +After we got home and ate them, fast forward 6 hours and we are both puking our brains out. + +The most common reason for this to happen is when an employee does not wash their hands after getting feces on them. Then they touch my food and I get sick. Based on the staff that day, it does not surprise me one bit. + +I would recommend starving over going here. Never again. Now I will go speak to Ralph on the big white telephone some more.",review,d9t-5lNTjoqFoevQ1sk5jQ,1,1,2 +YQvg0JCGRFUkb6reMMf3Iw,2008-11-28,K3I63jIcqoAc8425XClp_A,4,"La Bocca was on my radar since it opened earlier this year... I cannot believe how long it took me to finally get there, but it was worth the wait. I went with a group of four on a Monday night. (1/2 Price Bottles of Wine from 5pm - close on Mondays; needless to say, we took advantage of that special!) + +We let my friend Anthony do the ordering since he'd been many times before and he also has a vested interest of sorts... We started with two salads: the prosciutto, zucchini, and artichoke (my favorite) and the goat cheese and pear... also quite tasty. You can't go wrong with either one. We then had the truffled harvest mushroom and the spiced pepperoni pizzas. Yum! The thin crust and the combination of fresh ingredients on both of them were perfect! + +Along the way, owner Julian Wright sat down with us to share some wine and conversation - he's fantastic! While he was completely engaged in talking to our group, I could tell he was also constantly surveying the restaurant to make sure all was running smoothly. Every patron that walked in the door received immediate attention including our group. Our waitress was sweet and I liked that she gave some attitude back to Jared when he was joking around with her. + +We had a blast on top of a great meal and ended up staying for hours enjoying two bottles of wine (maybe more than that as I lost track) during that time. One of them was a La Crema Pinot Noir, but I think we had a merlot as well and maybe another Italian Red. I guess I'll have to go back and take notes next time. Another reason to return will be to try the brusschetta - it sounds amazing. + +I have a feeling it won't take me as long to return to La Bocca as it took for me to get there in the first place. You can't go wrong at La Bocca if you're looking for pizza, salad, wine, and all in a warm, welcoming atmosphere. Check out their other daily pecials too - I know I will!",review,fczQCSmaWF78toLEmb0Zsw,10,12,8 +BdSY-BHmH0BCCv47mOOS0g,2010-10-14,JlYyxi5NDlX911vCt5iojw,5,"I LOVE love LOVE Coffee Bean. I have been in love with Coffee Bean for years. I am so bummed out that they are not all over the place like the ""S"" coffee store. + +One of my favie drinks are the Pure Cholocate Ice Blended with whip cream and Green Tea Latte. The service is always friendly, perky, and fully of sunshine.",review,_PzSNcfrCjeBxSLXRoMmgQ,0,1,0 +HKr_xfeyrv2Bh7urZsQEVA,2010-05-19,jX2VkpXLdidPJ0cFTMVnJQ,3,"Really like this place, wound up there one night by accident, as my friend and I got disgusted with the lousy service at the ""other"" bar in the same shopping center as Tony's. +The place had a good vibe, jukebox playing, people shooting darts, we felt totally comfortable, and found a table, to sit and catch up. + Service was really good, The bartender, while waiting on another customer, made eye contact, to acknowledge me, and said she'd be right with me. I like that in a place, ---nothing worse than standing at a bar waiting to order drinks and feeling invisiable. + +My beer was good and cold, my friend ordered a vodka and orange juice, and commented that it was a nice ""stiff drink"" - + +We both said we were glad we stumbled upon Tony's and will be back.",review,mJYDA1COTEzU6LI-sZIgsw,0,0,0 +7XfT2w9Eb2Xbu-iP4xulPQ,2011-10-18,nOXl-dm2KwapAistQ_2gjA,4,Way over priced but great food,review,tpOgdsqWcrlFyQSrRIua-g,0,0,0 +vjhOjeoKL_TGPXON6XDEsQ,2011-11-23,xepfl0ovCnIcMN9OATS8PA,5,"Very good place to eat.. I go here atleast 3 times a week and the owners are very good people, they always interact with their customers. I pretty much know the owners and everytime I go there they already know what I want. I highly recommend this place.",review,RzpxUogiBp00GtyeMAQ8GA,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-10-09,M02b5MTdhiOneijWtSOFdA,5,"Taste buds went CRRRAAZZYYY!! + +Finally made it to the much raved about Pizzeria Bianco and happy I did. It was absolutely delicious. Thankfully we made it at a good time where we didn't have to wait at all for a table (YES!). I ordered the Margherita and was deliciously pleased. However, my sister opted for the Biacoverde and boooy was I jealous. It was awesome and my favorite by far.",review,Xz1w0h7wDI22IZKi-CnrHA,0,0,0 +DLFsfN6SWtjZnE2ZbV9S_Q,2011-11-14,7nkaTMfgRf5_Ug_FA9rTzw,5,"Dr. Ford is great. She came highly recommended and I can see why. Very focused and caring assessment of my Dog. Bring your animals here, they will be taken care of properly.",review,Mj_Y09zsj3hmOKCfYpM1uQ,0,0,0 +45Vj6a0LX4B2a7loTJyb4g,2009-03-26,bWn6P7aSu9lipoVOe8VkUw,4,"Mosaic is a gorgeous restaurant in North Scottsdale, near Pinnacle Peak. I imagine that they have magnificent views of the desert and mountains when it's still light out. The dining room is pretty small, so I'd recommend reservations. If you can't get reservations, I'd caution against dining in the lounge. Although they serve the full menu there, the lounge is actually in its own room and usually pretty empty, so it would detract from the whole experience. The service here is pretty close to perfect - these are professionals, the kind of staff that's trained to stop and step aside as you walk past them, even if they're not in your way at all. The gourmet cuisine here is great - not as inventive as Binkley's, but just as well executed. The menu changes often, so I can't really recommend any particular dishes, other than the amazing Thai shrimp and coconut soup, the one dish that's always on the menu. I would not recommend ordering their foie gras, if it's on the menu. It was the only dish that really missed the mark. I've only had foie gras one other time before, at Picasso in Vegas, so I don't have that much of a basis of comparison, but the foie gras at Mosaic was way inferior to Picasso's phenomenal foie gras (my understanding is that the best foie gras should be firm, smooth, a little buttery - there's here was watery and blubbery). However, that was the only ""miss"" of the night, out of our many courses. For a special occasion or a splurge night out, you won't be disappointed by Mosaic's beautiful restaurant and surroundings, excellent staff, and wonderful food.",review,OQMOgqS1NFIyAW4i66iDYA,1,1,1 +bc-lE-wGVAsUrX-kJhtY-Q,2009-05-01,4QdAw2rjR5JHMKPmnYH_yg,4,"Shame on me for not writing a review sooner. Dined here with three other friends during our Spring Training trip at the end of March. We had to make reservations about 2 months prior as well. We arrived for our 6:30pm reservations and the place was packed! The bar was flowing, both dining areas were filled with people and the entry area was bustling. + +As we waited for our table, Muhammed Ali walked in with his wife and family members. That was a huge highlight. This place is rich with sports memorbillia and players often eat here after a game. Only odd thing was our waitress told us after that the Brewers Manager was also dining in the next room and that we could walk over there if wanted to. I am a super fan of baseball, but even I know the limits of someone's personal space. + +We each ordered a few appetizers, bottle of wine and some salads before our entrees. I ordered the 10 oz ribeye and it was delicous. We ordered a side of mac and cheese and it had lots of flavor. This place is fun because of the sporting atmosphere, fans, players, coaches, etc. and it's walkable from Downtown Scottsdale. + +I'd definitely go back here again next year. For all the ladies, this place is a must visit for some great eye candy.",review,GAhcw5tBlDxuXAclqz6GVg,2,3,1 +1HqmlbLCoFBEF_V77oJTnw,2012-02-26,_OR2oO7bjDtTQ_b1H3Dnmw,5,"Everyone point and laugh at the nerd reviewing a convenience store. + +Oh yeah? Stuff it. Like donuts? Check this out. + +Get in your car and drive here around 3AM and try their donuts. Had every single donut place in the area, and nothing can hold a candle to the QT donuts. + +My guy begrudgingly takes me here every couple of weeks for the donut stake out. It's so worth it. + +They get hard during the day, so seriously - 3AM or bust.",review,_2oYcAukTIaexAnsjUo9tg,0,2,3 +3Srfy_VeCgwDbo4iyUFOtw,2006-08-23,K8tXedC2NMBEZ8p77zg23Q,1,"My co-workers and I refer to this place as ""Pizza n' Ants"". The staff will be happy to serve you with bare hands, right after using the till. Also, as the nickname suggests, there has been a noticable insect problem. + + + +As if that could all be overlooked, the pizza isn't even good. If you are in this part of town, go to Z Pizza or Slices for great pizza instead!",review,rPGZttaVjRoVi3GYbs62cg,0,1,0 +xWlCgISVtozxCztPA4nGaQ,2010-06-28,oFKT8GB3NxkhDiEx4Xy49Q,3,"First of all, I have to give Dos at least three stars just because it's Dos. I mean did going to Dos make me feel old, yes, were there some interesting people there and not in a good way, yes, did I spend more money than I wanted to, yes, but all in all you always have a great time. Nothin' but laughs. The giant jenga didn't suck either. + +Dos Gringos is a staple among the youngins, as I like to call 'em. In college, one will totally fit in, however, now'a days it's a place meant solely for people watching. And boy do you get an eye full. + +Drink's are cheap, tacos are good, and the bathrooms aren't as scary as you would think. Go! Have fun, get drunk.... but don't expect anything classy.",review,_uL7OiQSfNsCd60DrAf7qQ,0,0,1 +eP0zC_-MxPkM3ft8XbQeag,2013-01-05,2uryep6-TL9KdAuvSq0ieg,5,"My daughter and I really love it here. I always walk in without an appointment and I never have to wait more than a few minutes. The staff is very friendly, talented and professional. Highly recommended!",review,cX8yJPjbJFrmSGsEUpSwtw,0,0,0 +QxEUzbLfCTXF6gHWJegWgw,2009-03-26,wQUNcLxr-0wVQZzVMJYnKw,5,"I am giving Ajo Al's on Shae five stars because I've been there regularly for about two years and it's always good. Now let me point out two issues: I'm not a huge fan of Mexican food, and I only get the Tacos Del Mar or Ono Fajitas which are versions of the same thing. The chips are fresh made and great as are the salsa and hot salsa (more peppery and hot). For appetizers the Chili Con Queso Dip and Nachos are good sized and tasty. For a friend and I this location is somewhat out of the way but we still go regularly. Try it. + +Detail: + +Like I said I'm not exactly a fan of Mexican food. I like the Americanized fast-ish food chains: Qdoba, Chipotle even Baja Fresh. I've eaten at actual Mexican restaurants in Mexico and had home cooked Mexican fish tacos and tamales. It's growing on me but these are not tastes I grew up with. + +I have a friend who loves Ajo Al's, she lived next to it or something. So I pretty much got dragged there about two years ago and I liked it right away. Like I said, I've only really eaten the fish tacos but they're the best I've had. The fish is good, the sides are good, idk what chipotle cream is but it's good, good service, the chip lady is nice, all the wait staff have been good. + +It's typically not crowded but sometimes your go there and the place is close to full. I've never waited to be seated though. I've never tried the bar area. The water seams better than tap water...a dumb observation but I usually drink water rather than soda so I mention that. They give you a pitcher of water on seating and refill if needed. The chips and salsa are endless and excellent. Service is always good. + +Two friends typically get the Pollo Con Queso and swear it's the best ever. I've had it as left-overs and it's good but not really my thing. + +This is the only Ajo Al's I've been to...no comment on the rest of this chain.",review,rWhikEEkC8iuc5DFlTHXVA,0,1,0 +mQ6_slsCd8-c8WFNtESnqw,2010-06-05,6DaBsuW5csc00HOZRHxH_w,1,"No no no...do not go here, now I'm not talking about the fact that the place looks crappy, or the bathroom is suspect but the fact that the food is nasty. It was completely empty when we were there and that should have been some indication on what to expect but no I am a glutten for punishment. I ordered some tacos and didn't even finish the meal I ended up just tossing the food and still got a tummy ache from what little I did eat. This place is definitely not a good look",review,SfDerUF2N2Hx9D84VrXpug,0,0,0 +tV97OH1LK00kUcX0Jig-sQ,2009-07-12,zPaFcO7Z34dXbxNoLhtWZg,5,"Wow, Chill rocks. Frank and his lovely wife, the proprietors, are fantastic. The prices are super low and the gelato/sorbet is awesome. While we were there, a little kid dropped the top part of his cone on the ground. Frank replaced it for free. + +Then he gave us a sample of the fat-free, sugar-free chocolate sorbet, which made me want to buy a pint of it... after I had already eaten a baby sized Mango/Pomegranate mix. Yum. + +How about this: Go have dinner/lunch/breakfast/whatever at Pita Jungle, then walk across the parking lot to Chill for dessert. That sounds like the perfect evening.",review,fhV21-QB6n402-J9vR-7cQ,1,2,0 +vlKuU9Jvo88EuaYQodElQw,2007-02-23,d1Z1i2nIW8hI7wl3XLFxzA,5,"Ok, technically this is not Mexican food, it's spanish and puerto rican food, but has a lot of the same kinds of spices and is WAY, WAY, WAY good. + +first off, they have plaintains, which look like bananas, but taste like potatoes. if you've never had them, try them here, yum! this is definitely the place to go with a big group of peole and share a few different dishes. good luck, because the menu is HUGE. the dessert menu alone has two dozen items! + +seafood like ceviche and paella (supposed to be to die for), tapas, tamales, soup, salads, egg dishes (not breakfast),...the list goes on and on and that's just lunch! +plates top off around $12 for the most expensive for lunch, but you can easily make a meal out of two apps. +the mojito is their specialty, and they have i think a dozen rums to choose from, along with sangria. on the last monday of the month, every bottle of spanish wine is half off- you cork it if you don't finish it. i can't give this rest. a more glowing recommendation!",review,7GC9fVWKa4a1ZmBGLH6Uww,2,3,1 +cN6aBxe2mQvrQlzk26LyRQ,2008-06-16,qAp8dZmAMV-AjKj3wQazaA,5,"Durants ROCKS. + +I love the red velvet walls. +I love walking through the kitchen to get to the restaurant. +I love the garlicky cheesy bread that probably has a million calories in it. +I love the steaks. +I love the decor. +I love the bar. + +We all ordered different items when we went here for dinner one night, and all raved about what we had. I don't think you can go wrong, no matter what you order. It's amazing, delicious, and very very unique.",review,fn1TYXMG0_sE28xzMTHsAQ,2,2,1 +AkOruz5CrCxUmXe1p_WoRg,2011-06-22,qb3S29JP8CxHo8ubyRB0HQ,2,I don't get what people like about this place. It's generally crowded with rushed service and the food has yet to impress. I've tried at least twice -- maybe I'm ordering wrong but I really just don't get it...,review,vsXP832M0kOxKpfduD7dWw,4,4,3 +YhBFM3xy2G6DQC2VKXVkTA,2011-08-22,L5tu22TsPaI6pgVkg9fSpQ,4,"They came to my house the same day that I called which was a pleasant surprise. I'm glad that I didn't have to wait a week for them to fix our fuse box. + +With labor at $65 per hour it's pretty affordable depending on what you want them to do. Be aware that there might be two guys coming out to you though- so it'll be $65 per hour x2.",review,dUDzN6zl3j12zhByOrnF9Q,0,0,0 +uI4YqMarUpchI4I3ZWgOGA,2010-09-28,YESh1HscrQFt5wNJIvJHGw,4,"What can I say...the food and drinks were delicious and the atmosphere is sexy yet comfortable. But the real stars of the show where the staff! Everyone was exceptional, funny and charming: a dashing maitre'd, a handsome and truly helpful waiter, the chef was warm and happy to explain their signature Chinese oven even though I'm sure he has to do that a thousand times a night and the support staff...wonderful. The water ninja is not to be missed...this guy sneaks in and fills your glass with such speed and accuracy that water tension alone keeps the glass just slightly more than 100% full. This guy amazed us with his serving mastery again and again while his plate clearing partner in crime delighted us with a quick coin trick. Wonderful!",review,wY2VLg5yidDK2VIbDamcuA,0,1,0 +e8FMAuTswDueAlLsNyLhcA,2010-03-19,MS1fSscL6tfKdRAK3ngBuA,4,"Perfect location for breakfast before SF Giants spring training game. Also, Perfect location for drinks and snacks after the game. Enjoyed 3 meals in two days and will recommend to all my friends.",review,n75WJuU8ygsDzEGdE7SvIw,1,1,0 +9VYZA4vEKtT_SXHj-ZK_1Q,2008-05-22,lVdmJGrvqQeioCREdEMOyw,4,"The first thing that sticks out in my mind was the service. Our waitress was all smiles and incredibly adorable! + + +Edamame was perfectly steamed + +Sushi was tasty + +Salmon Teriyaki was delicious + +sake and kirin washed it all down + +prices are reasonable and the atmosphere is calming.",review,bZFRqP7s0Vszxeu8_IwYow,3,4,0 +qgVS6sBe7JNEI8otg0Y3dg,2009-01-10,QP_NUNRJyydZBabTsvYDQQ,4,"I'm rating this place as a Music Venue and Bar, not as a restaurant. + +UB's seems to be hosting a slew of Metal shows over the next 3 months, which is good to see a place open it's arms and bar to the metal community. + +As far a heavy metal venue goes, its run of the mill. It has enough room to either mosh or sit in the booths along the back wall. + +As far as the bar, the prices seemed slightly on the high side, especially for the ""dive-ness"" this place exhibits. +Their beer menu had 4 or 5 typos on it, just something to chuckle at, such as Rolling Rook beer, O'Dools, and listed Fat Tire as an import. (Cuz Colorado is SO FAR way). + +Luckily, beer and metal go together, so people tend to pay. +The old man in the Bolo tie checking ID's was definitely a good sport.",review,-VAF4FC-WKd39_t_RV8XdA,2,2,1 +Tk2dSL0TwQeI_zNJmb442A,2010-01-18,i2efFNVtrViQA2HOMijt5g,4,I love this place.Their italian beef with hot peppers is a must. I have also tried their sausage and pep sandwich which is just as good.Their prices are as good as you can get. So if you're hungry stop in & get full!!,review,A9qIKLrClq0vxVElqMZf_Q,0,0,0 +G6suEhxjMV8cdwSI-oQIZA,2013-01-02,gr_HGDcjPeJEHHKk87Pt1g,1,"I had the misfortune of stopping by this establishment today with two things, a skirt and a cloth handbag. I asked the woman at the counter if I could have some very minor stitching done on a cloth purse. She looked it over for about 3 seconds and said 'Oh no I don't see how this could be repaired'. (what I wanted sewn were two little pom poms attached to the cloth strap that were loose and I wanted them to be stitched on there tighter). Not a difficult task. She then told me that she could maybe 'send it out' and have it stitched but it would take a week or more to get it back. WHAT??! +I then asked her about the skirt which I wanted cleaned and/or pressed with the tags attached (because I'm selling it). She said no that the tags would be destroyed in the process. +So I went to another dry cleaners and asked the same things for both the skirt and the bag. I was informed that what I wanted done would be no problem and that I could pick it up the next day.",review,Mp8QDJwRlZE8xxyFRVGoKA,0,0,0 +PlcCjELzSI3SqX7mPF5cCw,2011-07-16,9t24cezR92wSo-i0R3Eq4Q,5,"I love this place. The Las Vegas roll is amazing however the crispy California roll isn't that crispy. Their sake is in fact bomb and the restaurant it always a good time. Their prices are reasonable for sushi places in Tempe and the service has always been awesome. If you've got a party bigger than 4 though, call ahead.",review,ZWgo8S-QugczbH2BN2GL6w,0,0,0 +CD6LrK1fb-imps49u_cD8w,2011-09-11,pX6ZLIZcRbLreYMRfLL_qw,4,Not a bad theater. The staff is friendly and the sound is ok.,review,og8YUfd6U1eaZO2wrrBjeg,0,0,0 +aDHziRAigxuE6RIdH5csnA,2011-05-25,Ch0mWyWE724wyQYumh4IRg,4,"If you are in need of any kind of battery Batteries Plus is the place to go. They'll test your current battery for free, upon request, and I haven't found a battery that they didn't carry. They'll even replace the batteries for you in watches for free. I take all my watches to them rather than to a jeweler who is not only going to charge me for a battery, but will charge me for their labor as well. I even buy my regular batteries here because often times they are way less than at the grocery store.",review,GNCh2HzSVYsS12o76qtUiQ,0,0,0 +wl51t6lT7leiX64SlkOx6g,2010-11-15,0r-3lTahS8BjNvVlCnzn7Q,4,Have been to Pita Jungle twice before. Feel the wait staff do a good job. Always friendly and good service. Best hummus in town. For s dollar more get the bigger plate of hummus but ask for extra pitas (39 cents each) and some extra cucumbers and tomatoes (99 cents). Not a fancy place but certainly someplace you want to try out.,review,9-HYfV6NlnYgGk8s0wywJg,0,1,0 +4eFIVmbeCvJGCrhzmd-VYA,2011-12-27,sLmWtcpY0CtBlbBhyLsiAQ,5,Some of the best coffee I've ever had -- and I lived in Portland. Insanely good selection & product. Tanzanian peaberry off the charts. Owner gets beans from multiple sources to ensure that his selection is the best.,review,oUGmoziFCwNi2oUHB54SGg,0,0,0 +bSFuJDDTj6BeKypgBNFBGg,2012-11-10,3jviFxMFlJtC-thrvzH-Dg,5,"One of my most favorite coffee shops! Location for sure. Soooo cute here. Inside and out. The patio is beautiful and you feel like you're in a diff city for a moment. Coffee is pretty darn good. Not the best, but good. And the menu is great. I am a vegetarian and they have many options for us. The treats are amazing. The staff is amazing. And they always seem to play great music too. Love this place. Wish it were not so far away in Mesa...",review,uvQ40rims7sY3O5yl70caw,1,1,0 +R1kKjAO5kZO6d0gQGqrvGA,2011-08-28,oikMvKmReasmH57Ckc7Yww,3,"I had heard they were spiced just right but for me it was too salty of a burger. It was also expensive considering a I had a burger, hot dog, fries and a shake. Not a favorite but wouldn't mind coming again.",review,chECojA5tp0NzBxMgQIfgQ,0,0,0 +S8R5c7-plWe3NtmijYAJvg,2007-11-07,IjiVIKST3c4L1Kd3Jj19qA,3,"Meh..not particularly memorable. +I've eaten at this location and the one by ASU, though I like this location better. I would probably only eat here if I was walking by and I was starving. +The cookies ROCK though, I like that you get one with your sandwich. And they have my favorite flavor of Jones Soda (Sugar-free Black Cherry) which kicked ass. + +Warning: The roast beef sandwich (Overture?) comes with horseradish sauce and it is hot as a mother. I like the spice but it was almost unbearable. My nose pretty much turned into a snotty waterfall. + +Go to Opa Grill next door instead.",review,_LEQt7oTVjiaXyVHK_MM7g,2,1,0 +t30Ua_mSiClnpBqud84ygw,2009-03-31,oi5KXTTdCrryJS8OetlORg,3,"Now that this place is under new management it's gotten better. i went once before and it was kind of nasty, now it's cleaner and has a better selection. + +Its hard to find edible chinese food in Phoenix, this one is one of the better ones now. I think it's renamed Fuji Buffet. It even had a sushi bar (not a sushi eater, but it had one) and everything was as fresh as can be expected. Large shrimp and chicken selection, and pizza and things for the kiddos. + +Stay away from the desserts tho', not so great.",review,eEo1W07PkjR0jLRkMF5m1g,0,0,0 +qgJZUKNVY-LbGKk6XEP3JA,2011-04-08,iej6KUhOh7PPyJm7O5Whbw,5,"I love this restaurant. Very cheap, very clean, the food is sooo good. My mom and I eat there once every couple of weeks, sometimes twice once a week. The staff is very friendly and attentive. The environment is very comforting. I recommend this place to anyone who loves cheap but tasty Mexican food.",review,yYiz0euR3HriuBlGhan46A,0,0,0 +vNqZefvRyaqfa_QJEd4wXw,2010-03-03,knulGcZvJ3vdJ3cpXK68RQ,4,"Lam's Seafood Market is a rare Asian gem in the Westside.. sort of like me ;-) haha just kidding. + +I love this place! Great prices, fresh seafood :-) +They also have a wide assortment of Filipino products which is a MUST for my kitchen. + +The parking lot is a lil shady and could use some covering for the potholes.",review,X-EV080aSeC5V00YBwxR1Q,3,2,3 +JksZiHb_Vj1tYRTpuTg-uQ,2011-03-02,7LNMaPogQ66p50tOXTHw9g,5,"I'm giving this Office Max five stars for convenience, friendly service, competitively priced products a stocked shelves. + +This Office Max is a great in and out shop. On one side there is the detailed supply store and on the office side, there is a complete copy center. It's open until 9 on the weekdays and they don't make you feel rushed if you get there at oh let's say...8:50. In fact, they are helpful! They walked me around and helped me find the random items I needed. The copy center staff was also very friendly. + +This Office Max has your complete supply of office items but their prices are very reasonable! I purchased the same item at another shop that I did here and it was significantly less expensive here. + +So on that note, I end my review on Office Max but I will report back with any new findings.",review,4ozupHULqGyO42s3zNUzOQ,2,3,2 +UIfORCz28cEGMr_9p0eJ5g,2010-11-26,ZXenZaKVMZ8FVOLe1Sbbhg,4,"I'm a sucker for sweet potato fries! Any place serving this yummy delicious ingredient deserves my love. I think I can survive off this for 30 days....any reality TV show takers...huh..huh? Well, over food was really excellent. Gourmet burgers are to die for aren't they!? Sorry Carl's Jr...your $6 burger -- really? I had the number 3 here - yeah sounds like a secret Chinese sauce, but better! My burger was cooked just right - juicy and medium-well. The service was good and the atmosphere tries to re-enact modern hip fine dining. Though you probably wouldn't know the difference after a few bottles here :) - enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,0,2,0 +wyxsEFTGC1MuadT2SpTE3g,2012-10-22,EpIQBIBC_pSLHL5iPymguQ,5,Tasty Thai- is. But it could also be called Delicious Thai. And the service is always great!,review,JxytDdximBz9C1phOrd7pQ,0,0,0 +u0NbikWwP7TVkMkCily-4g,2010-07-22,M6f3hxIjgi8B4HQxm4stbg,4,"In 2006, I returned to the P A M after a long absence. I went to see a locally produced exhibit, (Judith Leiber,) which I thoroughly enjoyed and so I renewed My Membership. Now at the time I was spending a good deal of time with My new granddaughter, Jade and started to bring Her to the Events and Exhibits. Her first time was to the Cowboy Artist of America and at the time She did not speak much, Yet by the end of the event, She could say; ""Cowboys!"" (and the Artists always make an effort to, Draw Upon Her.) Since then I have seen Rembrandt, special guests; The Tudor Tailors, Diego Rivera (with Frida Kahlo), Author Michael Blake (with His Son) and much more. As far as being, Good for Kids?! My granddaughter, Jade's love of going to the P A M has made Me a bigger fan than ever. ~Please View Pictures~",review,UG0gkwl621U29BWpgSYRlg,2,3,1 +jgWAgT7LWPTf5wju9Q-kiw,2012-07-08,Mdz_bofx87BWzCZsbW2DkQ,4,"I am glad I found this place but it is a bit far from where I am staying at in Phoenix. Their dumplings are really good, spicy cold potato salad was super good and refreshing but their green onion cake was a bit thick and starchy for me. I prefer Taiwan's thin and crispy green onion cake. Really clean inside and it is fresh, full of Asians!",review,JGGXT447a5zVfanaIUb8uQ,0,1,0 +pa_Ft6pLLWo-w_iopBsu0g,2010-02-22,VHlEeajmQg6oVBHYmaoUvA,4,"3.5 stars + +Fast friendly service and the food was good. + +I ordered Hung Pao rice bowl, while it was not huge and loaded with things it was plenty for a lunch size. The food tasted good. + +We ordered it Sunday evening for dinner. Orange chicken, General Tso chicken and chicken fried rice. ALL with white meat. While I really like the fact you can get all white meat, it was a little dry. Perhaps the way it was sliced and not in small cubes? All the food was good but not the best I have had. + +I would order again.",review,C6IOtaaYdLIT5fWd7ZYIuA,4,5,3 +VKNl2-aF4n1x7lPVyU-Mag,2011-04-02,ovvWjSlkAt2lUeaFajvOvg,4,"Imagine this, a swanky new Scottsdale restaurant that has down to earth prices, fantastic food and attentive top-notch service? Sometimes it's hard to believe that this kind of place even exists, but its no mirage, the Spotted Donkey Cantina is everything that I had hoped and more. + +Starting with the service, there are details that just go to show how the owners and management are in tune with training of the staff. Everyone we encountered was pleasant, seemingly happy and genuine. + +I have to tell you though, when it comes to eating at SDC, you'll be in good hands, Chef Patrick Bolls hands to be exact. His background includes years working with local chef-lebrity Robert McGrath, which has paid off in chiles. The southwestern influenced menu is well balanced with just a little bit of something for everyone. I mean who doesn't love the addictive crunch of La Canasta Corn Chips ($6)? Along side are 3 different salsas including a smoky charred tomato, a deeply flavored red chile orange and finally a tomatillo green chile salsa. All were surprisingly mild though these seemed more about flavor rather than scorching your face, that'll come later. + +The ""Shooters"" ($8) seemed harmless enough. A chubby jalapeno pepper stuffed with cheddar cheese and bacon then encrusted with a coating of tortillas and deep fried. At fist bite your mouth is filled with a creamy spurt of hot cheese followed by the pork-tastic flavor of bacon. Then it hits you, the burn from the jalapeno is scorching but a quick dip into cilantro buttermilk sauce helped cool the flame. + +If you're still trying to cool the flavor induced fire one of SDC many salad choices will do the trick. The Spotted Donkey ""Chop"" Salad ($12) is prepared table side with you controlling the amounts of roasted corn, cucumber, queso fresco, cilantro, warm smoked bacon, and avocado. Then tossed in a luscious jalapeno buttermilk dressing and served with crispy flour tortilla chips on the side, it cools and satisfies. Composed into tidy rows of tortilla crusted chicken breast, avocado, bacon, chopped egg and manchego cheese and dressed in chipotle vinaigrette, the dinner sized Southwest Chicken Cobb Salad ($12.50) was almost big enough to share. + +The center of my universe, at least for a minute, was the char grilled Big Ol' Jack Ass Angus Burger ($11.50). This is a seriously tasty burger, topped with cheddar cheese, caramelized onions, avocado, jalapenos and horseradish mustard, fries on the side. Continuing with the meat parade, a sizzling iron skillet filled with Fajitas ($16) was placed in front of me. While you have your choice of chicken or shrimp, the idea of beef tenderloin mixed with sausage, sweet onions and tomatoes seemed like the hearty choice. Along side are the usual accompaniments like guacamole, salsa, crema and warm flour tortillas, what was unusual were how quickly I scarfed these down, delicious. + +While the space feels decidedly modern and upscale there wasn't one moment where I felt uncomfortable or out of place, even with burger juices running down my face.",review,lPaYMDmJbAnv_3pmZH_inw,4,5,2 +4sW8Z6NLXLRkruSKSKUEUw,2008-11-18,BArcyDITvBmLuE-v83SJLA,3,"I'm so glad this corner has been revived again--though I never got to try Willo House. The biggest plus for me is that this place is only like a 7-minute walk from my work. I met a friend here for lunch a couple weeks back. I had their walnut chicken salad. The portion was pretty good for the $8. But the chicken had a tuna-texture I wasn't expecting. But the greens tasted fresh and there was just enough dressing for my preference. I haven't tried anything else beyond a chai latte which was pretty standard. Some of their pastries look good but I wonder if the muffins are from Costco. + +I give this place one star for atmosphere. Each seating area is decorated a little differently. Love the stain glass and the blown-up photos of spots around Phoenix as table decorations. This place really does feel local and one of a kind.",review,ZrUZtLgLOn15v2NIZl-oKQ,2,4,1 +qcylQLL-fXdFHrdXC2jZFw,2009-08-19,FPRVeUVWhiUe-hvDOlHhgQ,2,Monday night attract a bros and hos crowd that thinks they are better than everyone else with a few cool people mixed in. The bar is small and there is nowhere to sit so prepare to stand all night. I will only come here on a Monday because there is nowhere else to go.,review,jopndPrv-H5KW2CfScnw9A,3,3,1 +VY_tvNUCCXGXQeSvJl757Q,2010-01-02,AlinOQjaTdEFrW6tun1Xhw,2,"This was just ok. I got the steakhouse salad, which came with four pieces of meat the size of quarters. I'm sorry, but that's no $13 salad. I had to send it back, because I asked for the meat to be cooked through and it was rare. + +My dining partner said her pizza was tasteless. + +It was very loud. + +In all, it was too much money for what we got. We won't go back.",review,POHQEtLi_u1MkysI7Hn0DQ,1,2,1 +Rfp9HX_RhdcMwiKA8Wfl4g,2009-09-09,QofDFNqDBV3fdVb8hhwDXA,2,What a lame store. The employees didn't say hi to me once and were totally unhelpful. Their dog food selection is decent but their dog toy selection is worse than PetSmart. Too bad too because good quality pet stores are hard to find. There has to be something else around here and I would go out of my way to find it.,review,fev0iI-XDrteD4SYRKjiUw,1,1,1 +zp713qNhx8d9KCJJnrw1xA,2010-03-10,SJWeFwy7y0d9oEoYNj2vAw,5,"If this place only served chips and their salsa bar, I would still give it 5 stars! As a salsa and hot sauce (they're different, people!) fanatic, I tend to judge Mexican food joints based on their quality of salsa - and La Condesa ranks high! Last time I was there, I counted 10 different salsas and 2 or 3 different condiments (limes, onions, etc.). They offer a wide range of salsas from their exotic strawberry salsa, to spicy chipotle, or creamy cilantro. It looks a little silly with 8 little cups on salsa at your table, but you have to try them all! + +The horchata here is also 5-star material. Don't be a cheapskate - shell out the $4 for it! Its giant, it will make you happy. And, when you're done with it you can eat the fruit and nuts - the drink keeps on giving! + +I have been here twice and have only eaten the veggie tacos, 2 of them are enough to fill me up and they are very delicious! I must say I am not a huge fan of their rice and beans, which seem a bit bland to me. But, the tacos, salsa and drinks all make up for some plain 'ol rice! + +I was very happy to see a decent sized crowd here on my most recent visit and that La Condesa is applying for a liquor license. This place needs to stick around for awhile!",review,B4K5ruafil9RSDiTIL-1Bw,0,0,0 +9Woei-yx8GFIOeZ3eo_ElQ,2008-02-24,yUk0l8oOpN5UpzSKswNslA,4,"Sports Chalet is the most complete sporting goods and outdoor store I have ever seen. They have a vast selection of sports equipment and exercise gear. Their Mountain Shop has a very good selection of climbing and camping gear. Although the gear section is not as extensive as REI, the prices are slightly better. And they do SCUBA. + +I took my PADI course through a dive shop before I found out about Sport's Chalet's prices. They are FAR less expensive than any dive shop in the valley when it comes to the PADI open water certification courses and dives. The dive instructor at the Tempe store, Dan, leads the dive classes and is highly competent. (I give the dive program five stars).",review,cTQOEKBVSqrsyVl2Ssyolg,0,3,0 +Xq1FtLSV54Spf-HfONc1aA,2012-04-16,XsFCbidWcFmpcHrJFSolWg,4,These guys have some yummy donuts and the prices are great. Their donuts seems to be more authentic... they feel more hand made than machine made. I'll be back.,review,_GVAV2LjUWEs9fGjslex_A,0,0,0 +zG_wv69bsllw_PWhOmoAKQ,2011-03-26,12bupTNyycNPXhf9JXXyzw,5,"Tarbell's is top notch in all areas! Food quality, service, ambience, amazing! I recently took ten business associates there for a meeting, and I got nothing but compliments the next day on such an excellent choice of restaurant! + +Definitely try the Spaghetti & Meatballs as well as the Mac N Cheese, and even the Pizzas are to die for. And the burger too! You really cant go wrong here. Warning the deserts here are HUGE (yet amazing). One desert is enough for 2-3 people!",review,X_m9AySkNyZCsnxCuYZ2qg,1,2,0 +STv-ED3M2xmRFMSvQbWGaw,2009-03-05,EGehz7FYTyT1LVpkIxfBvg,5,"Amazing cheesesteak. + +One mile from my home is Corleone's. About 15-20 minutes from my home is Capriotti's. I never go to Corleone's. I go to Capriotti's all the time. + +The workers here are nice and the cheesesteak is terrific. The large is 20"" I believe, so if you're ordering for yourself and in no mood to eat until you have a stroke, get the medium. Also, try it with the hot peppers. It adds the slightest bit of spice without becoming too overwhelming. + +That's really all I can say about this place. Wonderful cheesesteak. I haven't tried anything else because the cheesesteak is too good to pass up when I make the drive down there. The patrons rave about the other sandwiches, though, so I absolutely would not be afraid to try something else. There's maybe 5 or 6 tables inside and 2 outside? so be prepared to order to go if you arrive at prime dine-in lunch/dinner hours. + +Do yourself a favor and go to Capriotti's. Help this place attain the reviews and ratings it deserves. The fact that there's only 8 reviews is criminal. I understand it is in the heart of the suburbs, but it's worth the drive.",review,X6GycoLMzQaocXBANVnB4Q,0,0,0 +IuAPYzf3NSyfyXYgT46YVA,2011-11-18,TMgkOvM1iBpkiZADCZdT2g,2,"Two stars for bad service and, damn, I have to the tell the truth, a lousy appetizer. Had the braised leeks to start, which appeared to have been made less of leeks and more of a white cheese that I can only assume had been allowed to congeal into a rubbery mat beneath a heat lamp. It was literally impossible to cut into bite-sized pieces, and was tasteless besides. + +Then, after at least a half an hour wait, pasta with chanterelles. The shrooms were great, and I have to say I enjoyed fennel for the first time in my life, but the pasta was enormous in size and there was an awful lot of it. + +But one of my friends had the fried green tomatoes, which were wonderful, and another had the brussell sprouts, also wonderful, and the butterscotch pudding dessert with the nutmeg whipped cream was simply divine. + +They were very busy (our reserved table was 20 minutes late and the seats were still warm when we sat down), so I'm thinking they were just run off their feet. I'd give them another chance. + +Oh, and a delightful Arizona sauvignon blanc. I'm told they serve only Arizona wines, which is kinda cool..",review,-UyNlq8TwNTY0faXlAgJOQ,0,1,0 +PoRYjYUSjmeWM1WLsx_45w,2011-01-10,0Z8DEk7NkirK1k88GMaerQ,5,"I have been exploring more of the park recently. I want to add that the National Trail (which is almost 15 miles long and goes from one end to the other) is a real gem. The views on this trail are outstanding, and on the western half, you will find far fewer people than on the eastern half. Highly recommended.",review,d1zJj49Q5ikgvqQX0534RQ,1,1,0 +TfTlOE6h9E9o34dEkw9L_w,2009-04-08,d8_hIfyaU8ldWWBPr5yQKw,4,"We popped in here for a brew while walking around heritage square. +The waitstaff is very friendly and attentive. +Note: if you just want a brew - you can order it inside! +We went with a local Hefe and it was great! +The options for noshing look great, but we were headed for dinner so we didn't get a chance to try them out! +See you there soon!",review,B7McDYDrf4R814OT3xwInQ,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2009-05-11,w3HePDmt2PJEinnJiB50fg,4,"Went with a party of 10 this past weekend for my best friend's birthday extravaganza. We had teppanyaki and our chef was terrific. He was very funny, inviting, and did a great job with everyone's food. We had a range of dishes from seafood to chicken to very well done steak and our chef handled it all with his silly little giggle. + +The happy hour prices can't be beat, but man once you get out of happy hour, the drink prices are STEEP! We had drinks, appetizers, sushi, and then teppanyaki. The calamari was chewy, but the bbq chicken egg rolls are great. The drinks were yummy. I have no idea what kind of sushi we had, but it was pretty darn tasty too. + +The only reason this isn't a five star review is that our server had the personality of a rock. If he cracked a smile, it might have killed him. We spent collectively close to $500 and I don't think he could have cared any less about us. Too bad too because it reflected in his tip and generally we are pretty generous tippers. + +We'll go back to Sapporo in a heartbeat though. The people watching is tremendous!",review,kG8jkVFgOAOq6Ht6RvAjEQ,0,1,0 +4meJyPOhuAKzywUJTmu2hw,2008-11-29,qSLByPSKUzX4iDZ0X9GA7Q,3,Decent food at not unreasonable prices. The service is good. What is up with the hyper aggressive pigeons on the patio? The waitresses actually pass out squirt guns to the the customers to fend off the ever persistent waves of the foul fowl. At the end of your patio experience there is a certain sense of camaraderie shared with the other patrons.,review,QwO4LVCiPZZdg5URrQfYpw,1,1,1 +yYbd9P1KmlPSKmQxo68n_g,2011-08-08,Sa8YTz2qAVH9FZHuWTVxuw,4,"Went on a recommendation from my brother...I owe him a beer or something! Great, great food. The bbq is the best I've had anywhere, hands down. The prices are great. + +We tried all of their sides while there (Group of 5, and you get 2 sides with each meal, so we did it on purpose). The potato salad was pretty disappointing, and is the only thing holding me back from 5 stars. The rest were delicious. DO not miss out on the BBQ beans or the mac & cheese (I know, ""mac and cheese--really?"") YES. Little bits of their smoked bacon mixed in makes it so, so good. Sweet potato fries were really, really good as well. I did not try the waffle fries, but my husband liked them & he is a waffle fry snob. + +Had the pulled pork, spicy sausage, beef brisket, ribs...all of it delicious. They have a wide variety of sauces you get to pick out & add yourself, or just eat the meat straight up. + +My 12 year old daughter said that ""the food tastes like the air smells when you go camping"" (she was referring to that delicious smokey flavor...it was cute to me). + +The place is small, but I don't blame them for that--you have to be able to establish yourself in this economy or you'll go under. Hopefully they will be able to expand someday. Driving out from Mesa won't be easy!!",review,lfx2ppICJdX-rjT8Z8anXw,0,1,0 +24OmQWFTnbfGv-e8GyEMAw,2010-07-07,25bhK5sNDc2SheiNknIWKw,4,Chambord margaritas are killer!,review,ykTUd9nIYDkQYhpntgcTVw,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2010-02-26,A7-GTixssxJw_WCwx0jNQQ,3,"Been going to Pita since they were a take out only in Tempe. Fast forward 15 + years. They are getting too big for their britches. They started franchising, hired some corporate goons and that is where it started to fall off. +The chicken has always been great but is faltering. There was never any better hummus on on the planet until they added all the red oil? Be very careful of seafood. I love the seafood dishes here, absolutely fantastic, but they have made me ill on more than one occasion. I was even hospitalized once from the shell fish. + I have some good friends that are still managers so I go back occasionally to see them. They are not as thrilled either. Too bad. All good things come to an end. This was the best unknown gem in Arizona for years. + +UPDATE. No more red oil! Pretty solid but not what it used to be. Lentil salad still kicks butt.",review,W_h8ZrIS6mpO4bCqdmbCZg,0,0,0 +5TqcNDDrx2MKBBG_1cm2Jg,2012-02-08,EH1uGYFPiksUOCMc_MtvIQ,5,"I have been going to Physical Therapy for several weeks working on Plantar Faciatis (ripped tendons in the foot), I was not getting enough massage to make much progress, I switched to Massage N You and they focused on my calves and now we are making good progress on healing. They had the right touch, pressure and listened to what I needed. Going back for more...",review,vAbAUUNnbl236hKAFPk25g,0,1,1 +EWMwV5V9BxNs_U6nNVMeqw,2009-06-14,mRtpQtc1CDnFvNaQf7D_Jg,3,"FEZ... The two times that I went it was in the afternoon on the weekend. Both times, I was able to enjoy a great lunch with my sister and cousin and then again with my sister. The two dishes I liked were the FEZ burger and the Casa Blanca Chicken. The berry shortcake was good, however the water from the strawberries sort of killed the whipped cream and the shortcake (biscuit) was very good. + +Overall the environment during those times were peaceful and quiet. The staff offered advice on the menus. The price a little high for my wallet but I would definitely come back to splurge with great company in tow.",review,RHX2qpUTOv2usuckZIil8Q,3,5,1 +R8VwdLyvsp9iybNqRvm94g,2012-12-19,2qjP7DdoQaH92LIArCJ8Kg,4,"A bit pricey, yet one of the best breakfast sandwiches you will find. Parking is slim.",review,Z0_C4HRVvkLkyEsVGGMnkg,1,1,1 +YhBFM3xy2G6DQC2VKXVkTA,2010-12-06,RORa5kdk2IqCvaut7hCueQ,5,"Recently bought a house and had issues with the speed and interference with the very many wifi networks around me. +I decided to go wired so after I did a lot of research on how to get a wire from my second floor to first floor for the entertainment center. I bought a lot of tools from Fry's electronics and then after I started actually looking at what I had to do, I realized it would not be something I can do myself. + +I called good guys electric and they came over and ran a couple of wires using CAT6 instead of the CAT5 I would have used through the (nail-ridden) attic and through walls without any wires sticking out while they kept away from the electrical wires to prevent interference. + +I returned the tools and wire I got from Fry's electronics and that made the install very affordable. + +I'm very happy with the quality of my network speed now, being able to stream HD content from my server upstairs to the TV 200 feet away. + +After completing the network-wiring job, I had them install a new chandelier on a remote-controlled dimmer switch which was done quickly and works great",review,Pl4fs0QWR8FbnVNCzqF9lg,1,1,1 +9mx6uFh_lSj6SOSW4fMWWg,2009-12-04,oumDKass1inZmpqJhFAgiA,4,"Nice bowling alley. I liked it alot and the staff was very helpful when we could not figure stuff out! The flatscreens with the score were nice and the animation of Pros were a nice upgrade. We came when their was a deal which was nice. Thursday- 5 buck cover and free shoes,dollar games, popcorn, beer, and hot dogs all night.... all I gotta say it\s that I did my damage! The set up for finding a v\ball was far nicer than any other alley I have been to! Very out of thew way and easy to find what you need! +Very well lit alley with a fun atmosphere!",review,TqkBwRmoEgECElxeY0OgKA,2,2,0 +quzkSK2uZEl-j_24vZmdMg,2012-10-14,d5BGT5xkJcJO1H8QzOh-Zg,5,"Been here twice. First time to fix a broken window regulator and the second time to get a checkup. All the techs have been extremely honest and I've never felt taken advantage of. I spent over a grand on updates to my car there and I could've spent more but again, they're honest and didn't pressure me to do everything that they said. It's family owned & run (they're originally from the bay area so of course I've got a soft spot!) If you have car problems, need a check up, or need a second opinion, they won't steer you wrong (pun intended).",review,s7_1a2QHEQIoSffJvyPb8g,0,0,1 +WImuwx-hNX3_bbIAAFh7zQ,2011-01-28,ZKB3gAS1nkx4PdcuQMbpxg,3,"So following the previously reviewed experience I received a phone call from the Dr. who was very intent on making the situation right. He did all the right things to make sure that we were certain that he appreciated our business and was very apologetic about the unacceptable wait the day before. This is precisely how any business should react to a bad customer experience. The subsequent visit to complete the wisdom teeth extraction consult was very expedient as was our visit on the day of the surgery. + +In short, the office resolved our very unsatisfactory experience in a very impressive manner.",review,WOvk1xbVe-F_FrZK5fEKQA,0,0,0 +Y293fHh5SZ0_9BZm4M6BCg,2010-08-07,IuGDOM0RoT5mewUia4jGCQ,3,"The food was good - nothing extra special. I like that you get guacamole with your meal and that they have lingua on the menu. I will have to go back and try it. + +The things I did not like were they sat our group of 10 right by the server station. It's awkward to overhear their conversations. + +The service seemed a bit lackluster. It was almost as if they were not intrested in a big group coming in. Our server was pretty good, but not overly friendly. I will definately try this place again and update.",review,IhcTLLWKS6ZiNyIX9oQQPQ,1,1,0 +d52zg-S0o940WUCK-nNiKw,2009-05-23,OVMAPAqvIsSEpqenBXwS8w,4,"This place would have gotten 5 stars for the food, but I deducted for the decor. In my humble opinion you have as close to authentic as your going to get. The place is close to being considered a ""DIVE"" but hey, you don't eat the building and furnishings. I like the fact they give generous portions and you can buy their home made tortillas and other items in quantities to take home and prepare it to fool your guests....did I say that out loud? LOL.... when I was in Nursing school (not far from there) I ate there a lot...gain a ton, but enjoyed every delicious minute of it!",review,q904xpWOBDPkHqxZm9YulQ,0,0,1 +YWu5xMCsAkC9saRWAZAk1Q,2011-12-30,Q_GsLJ8_my78QyD2mZkv-g,5,This is like a little sanctuary on the West Side with a few amazing therapists. The LMTs are pretty different from each other so ask some questions before you book. It is so awesome to walk in and be addressed by name and with a smile. The owner is seriously the nicest lady I've seen running a business in a long time.,review,paVPYjJfqMXEOkXwhpRDKg,0,0,0 +DxUn-ukNL27GOuwjnFGFKA,2008-06-03,FxvbsDJFS4zJ7M36SqBITw,5,"Japanese chefs, top notch sashimi, affordable neighborhood sushi place! 5/5 + +I'd lived in Japan before and this place can beat those in Tokyo! If you go to Hiro, you have to order their sashimi. We always order scallops sashimi, yellow tail, salmon, toro sashimi and uni (sea urchin)! Their rolls are amazing too. All sashimi comes in a big-fat-lap portion! Very fresh! The service is great too.",review,vC-9ROCPBhWuXtMcBNeDiQ,0,3,0 +7QSYBp2-AOdyUJXEaLnbgA,2011-01-08,RK0roqYbTA-phbBM0EHUWA,5,"I couldn't wait to get home and yelp this place. Five stars, too! +After a (raw chicken) bad experience some 13 years ago, I hadn't been to Bandera until tonight. WOW! It was a GREAT experience!!! +We started off with a grilled artichoke which was fabulous! +Both of us had the Texas Hill Country Ribs which came with cole slaw (not your ordinary cole slaw) and the most delish matchstick fries. +Unfortunately, I don't eat seeds and nuts (peanuts in the cole slaw...my husband loved it) but the very polite and wonderful server, Sarah, offered some other sides and I picked the braised red cabbage, which came with a little goat cheese on the top which was to die-for delish!! Home made wonderful braised red cabbage! +The entire meal was SUPERB! The service was phenomenal, and we were lucky enough to sit by the kitchen and see all of the dishes come out...they all looked YUMMY! +I am so happy that my neighbor suggested Bandera's ribs, and will go back frequently as you can tell this place is run as a tight ship. Everyone is polished, polite and efficient! The food is an experience in perfection, and the service tip top! +Next time, I'll take some pictures (if I'm not too hungry)... +I don't think it's a shorts and jeans type of place but a dressy/casual type of place, if you know what I mean... +REALLY EXCELLENT FOOD!",review,DfJ8B8T1fgNA6_ZT-aeUlQ,0,1,0 +c4y8FA6XmGxxPhv0PNtU5g,2011-07-19,vrC4G-RulTSwLkKr6Pq9Wg,5,"Located in the space formerly occupied by LGO's short lived Radio Milano, the north side of Campbell has been reincarnated as the Arcadia Room, a private dining facility operated by the aforementioned restaurant group. + +I dined here recently for the hubby's work dinner. Unlike so many private facilites that feel like a corporate conference room, the Arcadia Room is a cool, casual, restaurant - all to your self. + +We had about 60 in our group, and had plenty of room to mingle at the sleek bar lining one side of the room, or gather by the open kitchen.The weather was blazing hot when we were there, but there is even a lovely little patio outdoors for guests. + +I think this would be an ideal location for any work or social occasion where you want an intimate atmosphere combined with reputable fare.",review,gJEJg1fPVDPnkdcVFbVlBQ,0,3,0 +RmA5zN-Bs89lsTuY6v8W3Q,2008-09-21,WuclF2kuNH_5OBIXEhKkNg,2,"This is not that great of a place. It's very upscale but the folks behind the sushi bar don't really seem to know what they are doing. It took forever to get a beer and a sake here. The worst part was the sashimi yellowtail. It looked like it was purple on the edges. If you want to play it safe and get a tuna roll, it will be safeway quality but nothing too special. This place is more about atmosphere and where to eat if you have a glittery scottsdale shirt you need to show off.",review,7zJeiY6YGosO7jakhlK91A,2,2,2 +8kunNClZ1AD0Rj5bDiFdrQ,2011-12-28,vttwuoRKX_LJ1FOW0qCyEg,4,"Love their salad bar, so much to eat, not as much as sweet tomatoes but good nevertheless! Only suggestion would b if they can get the labels on foods, bcs for people like me who don't eat meat its very difficult to figure out that there's tuna in one of their salads without a label! I almost ate it, so I hope they take this into account! My best is the whole boiled eggs though :)",review,HnlVxMJUFt0senwi9mYzuA,0,0,0 +YKOvlBNkF4KpUP9q7x862w,2009-09-11,N2q3TaeGPf-u4hbQOSZ13g,4,"Since The Mission is getting ready to celebrate their one year anniversary, I figure it's time for an update. I went in for my first visit last November, shortly after they opened, and I've been in countless times since. The atmosphere is amazing, the staff welcoming, the food unique and tasty... oh, and the drinks go down easy too! + +The Mission has become Jared's second home - he's there much more than I am! I go for an occasional drink or dinner. My favorite menu item is the tableside prepared guacamole. It's fantastic! I am also a huge fan of the white bean puree, the street corn, and the salmon. I wish they had some lighter options on the menu though - just a suggestion on behalf of those of us that are health-conscious! + +If you enjoy Latin-inspired fare, for sure go check out The Mission... Or at the very least, go in for a drink and some guacamole. Look for Jared at the bar when you're there! + +I""ll for sure be excited to celebrate The Mission's one year anniversary in late October. I'm sure it will be one helluva party! It always is at The Mission!",review,fczQCSmaWF78toLEmb0Zsw,9,9,4 +lk-6NXfpSgvNw7zm0xtUVw,2012-05-21,jIDokYgWG1ZlkdUrWIsq0A,4,"So we have passed by this place many times. I've been into the Ace Hardware right next to it several times. Don't know how we have never seen this place. Fortunately we searched yelp for something new and gave it a shot. The street tacos are awesome. Looks like I'll have to go back for a carne asada burrito, but based on the size I saw (and what I've read), it's gonna have to be a one item meal! They're huge! I tried the street tacos to sample a few things...carnitas, pollo and pescado. All excellent. I would have to lean to the carnitas though. Definately going back! + +Only reason it didn't get 5 stars is there was a kid sweeping and mopping the floor and we were having to get out of his was several times. Just kinda rubbed me wrong. And while I loved the music, it was a bit loud and I don't know how much it was there for the ambience, the customers, or the staff. Everything else about the staff was great. Friendly and positive. Mabe my next trip will kick it up to 5.....",review,gvLzuWRhEyFcfF-RymhhFg,0,2,0 +Az69nueCy94SVKkWaNNR0Q,2011-06-07,XHhgUe4mnwTU8hqZHk9ZMw,4,"Mostly rave reviews on Yelp led me to Le Chalet, a unique little indie restaurant amid the strip malls and Super Targets of the West Valley. + +Despite the fifty-some-odd write-ups, I wasn't sure what to expect. I read something about an ice cave, live comedy, hanging man meat, and surveillance cameras, but despite these oddities what drew me in was the promise of expertly crafted crepes and the opportunity to see the chefs do their stuff on a closed circuit TV. + +Le Chalet did not disappoint. Sit in the front dining area to view the chefs at work in the open kitchen, or take a seat in the dining area by the bar where two flat screens showcase the action at the crepe griddles. The Bretonne crepe with ham, mushrooms, Swiss cheese, and a sunny-side up egg was superb, and I can't wait to go back and try the La Landaise, blinis topped with seared fois gras, apple, and balsamic glaze. + +I also tried La Potence (the ""hanging man""), filet medallions served on a medieval looking mace, seared tableside with bourbon and served with a pineapple slice, rice, and some mayo-based dipping sauces. Thoroughly enjoyable, but next time I would opt instead for a cheese fondue or the melted Raclette plate with cured meats, which looked delicious. + +The ambiance seemed a bit strange to me, but homey and comfortable. And yes, there is a sculpted ice cave for performances, The night I attended was slated for ""clean comedy"" and I made it a point to get out of there despite some morbid curiosity (I'm not an amateur comedy fan, and the idea of family-friendly comedy made me even more anxious). + +The handsome server was very attentive and knowledgeable, and I loved the half-carafe option when ordering wine. I wouldn't classify Le Chalet as a ""fondue place"", where the experience often outshines the food; it's more of a casual cozy spot that serves up thoughtfully prepared comfort cuisine - all the ingredients for a lovely dinner out.",review,gJEJg1fPVDPnkdcVFbVlBQ,1,4,2 +6ie9xvy2WW1pn7RuBvGNhg,2012-04-26,6eiIToYaP7GXb4KZU8-ESQ,5,"I love Tasty Kabob! Their food is always excellent, and I try to make it back there whenever I return to the Valley. I always order their chicken shish kabob entree, which comes in a generous portion that includes rice and grilled vegetables. The chicken is always tender, well-marinated, and equally well-seasoned. Their beef shish kabob entree is also very good. Try shaking a little sumac spice onto the rice and meat for some extra flavor, or just enjoy it as is. It's difficult to choose from their list of appetizers and side dishes, but their hummus is always creamy and smooth, and I love their shirazi salad. Their spicy beans dish, however, is, by far, my personal favorite, and I always make sure to order it. Just as important as the food is the friendly service I encounter whenever I visit. The couple who own the restaurant always make you feel welcome. Good food and service that makes you feel at home, what more can you ask for? Simply put, Tasty Kabob is one of the best.",review,p4SNP70HYUpK_wXhRpIcFQ,0,1,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-08-03,vhzntcVEkAer_AYzkLs4Gw,4,"Throwing the picture of Sheriff Arpaio on the wall aside, I really did enjoy the burger from here. After reading reviews, I decided to go with the sweet and spicy burger. It was just as good as the other reviews say it is. The burger was juicy and every topping on it melted together in my mouth perfectly. The fries were good, but they were just fries, nothing too special. The sweet potato fritters, on the other hand, were super tasty. They had a sound consistency and were loaded with rich flavor. It you like sweet potato fries at all you must try those fritters! All in all I had a pretty good experience here, and it's worth checking out if you're in the Arcadia neighborhood.",review,--65q1FpAL_UQtVZ2PTGew,2,2,0 +sMO71vGV8wkKujOle3-v7g,2010-03-10,qGT5H6MpoKn5_LlDlpCwPA,3,"Dave's has a good BBQ sauce and reminds me very much of KC style BBQ and side's. I have eaten here a few times and found that the portion sizes are immense! + +Service has always been efficient and no reason to complain about anything. I think this BBQ place would be the best option for a large group. + +Is this the best BBQ in the world? No, but I sure wouldn't turn it down! + +Enjoy!",review,XgIhw-aWaq_Fx3ZVQGjnuA,0,1,0 +hh2lP4_2N-tk_OxmaTf_qA,2009-07-22,NMz3gC5nOSbKZJG_UjpASg,3,"I have been wanting to eat here since it opened and finally got the opportunity. The ambiance and service is excellent, however that was not the reason why I was there. I was there for the food that a lot of people have been raving about. + +I read somewhere that the hanger steak was their specialty and I don't disagree. I had a taste and it was indeed very tasty. And if I go back I will definitely get it. And at under $20 it is a steal. However, I ordered the 8oz filet for myself. It was cooked properly and tasted good but not memorable. The individual sauces that you can order on the side were also nothing special. And yes, the fries were just as everyone on Yelp said they were; good but just like In-n-Out's, but cooked a bit longer. The sides dishes were ok at best and were a bit on the smaller side. However, the potato gratin was amazing and better than I have had at any steak place thus far. + +While it is less expensive than Mastros/City Hall, I think that for a few extra dollars it is worth going to a better place. In my opinion, Mastros/City Hall have much better steaks and better/bigger side dishes. However, J & G does have a better ambiance.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-05-14,SYeNPJ-4E8X0Kuu1lxrQfA,5,"Dim lighting. Fleet Foxes. Beautiful upstairs seating that almost seems secret. Band of Horses. Benches that are less cushy than you anticipate them to be. The Shins. Black board specials, just because they look cool. Beirut. $13 vegetable dishes. + +Intimidated yet? Fight through the angst. Once you take your first bite of food, all the hullabaloo will be well worth it. + +Order the forbidden rice bowl. Tell them to make it vegan (the vegetables are usually cooked in a bit of butter)... after all, you're a pseudo-hipster for the evening, and it's fantastic. If you're depressed by the idea of black rice as your main carbohydrate, the flat breads are taste-gasmic. That crust... the things I'd do for unlimited amounts of that flat bread crust. Top it off with figs and ricotta, and there's no way I'm passing up a square or two... or seven. If you're still not sold on the idea of carb-loading, the salmon ""superfood"" is delicious and nutritious, and who's not into a little super(food)iority now and then? + +But on to the main event... the chocolate stout cake + spiced ice cream + espresso ganache was the best chocolate cake I've ever had. It was just so damn... moist. There, I said it. Moist. Moist. Moist. Ew. But really, yum. If caffeine, chocolate and alcohol don't suit your fancy (wimp), the cheesecake in a jar was equally delightful. Cookie crust + strawberry compote + cream + cheesecake. Layered. In a jar. Who thought of that? Someone with adorable thoughts, that's who. + +And let's be honest, you've earned dessert. I mean... you ordered a healthy, vegan entree over the french onion cheeseburger, right? Right. Of course you did.",review,BjwXX-sChcjx2E55B_7rXg,3,4,4 +X7r9ogduV4JAaO_20nkZgg,2008-02-16,n4rbpFifo6e6xOPr2TgLNw,3,"Went here to meet up with LA friends during Superbowl weekend. The decor is pretty unique here and the bathrooms are quite the trip. Bartenders are ace, cocktail waitresses are good looking, and the music is a healthy mix of bangers and decent indie hits. Tip for the door guys there don't let in 6 dudes at a time, even if they are Persian dudes with tons of cash who want to buy bottles. Boo!",review,Is4eAXtc2oaUMZ57_QXP8A,0,0,0 +4pC4jMoanLySaOgGRwyXLQ,2012-11-17,WmUCpGxZc0gU1XqQce8jfQ,5,"Yes, it is a biker bar. And it is packed with them at certain times, especially weekends. I don't ride. But if you roll in on a weekday around noon you might not see any, and if everyone seems to know everyone it's because they are all friendly local folks. So if you're visiting Cave Creek don't assume the Hells Angels are there looking to kick ass Most of the ""bikers"" probably drive BMWs during the week. I stop in at least once a week for a bite. The food is the best bar food in Cave Creek and the service is awesome. I've been to every bar in town. Harold's , The Chip, Toad, etc. all are good, but The Hideaway is the best.",review,VV3UzNU2D5OkDpwgxtoj7w,0,0,0 +iqLVYrsX25XUZqjRjvbYfg,2011-08-28,H1oJiN5CU3nRAbt1FtawrA,1,"Tried a couple Tammie Coe cupcakes and a mini muffin two weeks ago... Unfortunately for them, I also sampled Ollie Cakes... No wonder Ollie Cakes, aka Urban Cookie, won Cupcake Wars and Tammie Coe sits in high rent selling pretty sugar disguised as a cupcake. + +Drive a few miles north, get whatever the special cupcake of the day is along with a Brown Velvet and Lemon, and save saying you enjoyed Tammie Coe for impressing snooty folk who wouldn't know yummy if it bit them on the butt! + +Really, the TC cakes were just cakes... No flavor, no texture, dry... And I can't say how impressed I was that the clerk shoved all my selections into one, tiny, flat bag meant for cookies or sandwiches! Apparently presentation and flavor preservation mean nothing... As their products now do, at least to me.",review,nTCt6CV-qx3lHsHIMJqizg,1,3,1 +KIgkwPEOxbfdeCk0ltycOQ,2010-03-29,9lvCdbf3fKr5O5bhvz90AQ,1,"Just because this place is called ""Maria Maria"" doesn't mean they sell Mexican food. Their menu actually says ""Mexican inspired cuisine"" which should have been my clue to leave. The food is border line Nasty! + +The restaurant is cute and sort of romantic but it's so loud in there that it ruins the ""romantic"" mood. I was excited to see they had live music until they started playing some weird pop music. Why would they do that in a ""Mexican"" restaurant? I wanted to leave but our waitress was no where to be found 20minutes after we finished our meal. + +I don't recommend this place for any meal! + +I have only been living in Scottsdale for two months but it seem that Arizona is ""Cougar"" town. The bar was full of them. I'm beyond annoyed with all this ladies acting like they are 21 wherever I go. I'm embarrassed for them. They dress and act young but with that face and hands who are they kidding besides themselves? gee.",review,aCktH-ZuS2KwaScos8xNSA,0,1,1 +GHYOl_cnERMOhkCK_mGAlA,2012-07-18,sPH0GRqMNOhp7IIxhK1M3A,4,"Had the super burger and fries tonight... excellent! + +I like that while they do have some tv's on with sports on them... the house +music takes front stage. Might be different on big playoff nights. + +Also... the tequila thyme drink... delicious and actually had some +alchyhol in it! Fantastic!",review,M9cZwNoSKQDUVwO0R8UwIA,0,1,0 +1_43FZHx3P5D7X-CpIR9WA,2011-03-14,_jQYXSdXmVs1IWrld0jpLg,1,I work right across the street and a few of us went here for lunch one afternoon. I ordered a salad to go. As soon as I saw the guy grab shredded sandwich lettuce to make my salad I almost told him to stop but I didn't. I regreted it when I started to dig in and realized the lettuce was brown and yellow. Very disappointed. $6+ bucks for nasty lettuce tomatoes and green peppers. I ordered a salad thinking I was getting something like the picture on their website. I won't be returning here. I'll be passing on lunch next time the co-workers opt for this place.,review,YeK95nGGvYsssVHzcWpmkA,0,3,0 +zp713qNhx8d9KCJJnrw1xA,2012-08-13,ydC7lfTH9PsDBxfPHo8ZEw,4,"Things Evolve over time, so has La Condesa, There now is a big fancy bar and a somewhat different menu. + +What really matters is that the flavor, ans salsas are still here. + +I had a burrito with Mahi Mahi in it, it came loaded with spinach, mushrooms, cheese and rice. The cheese was a bit much but was still great at 10.59 with tax it should be. + +What really mad it great was the salsas. Everything from a peanut salsa, to a strawberry to many of the classic favorites. I really enjoyed the roasted peepers and onions salsa. + +Yes the inside is small and the parking is suicidal when you leave, but if you need a flavor shot give this place a try.",review,M6oU3OBf_E6gqlfkLGlStQ,0,3,0 +CFaRVxsnN4Zjf28cbORKIA,2011-11-14,9JIIMd4KvnjBaHSOL8wsOA,4,Great food and friendly staff. The chips and salsa were very good. So were the chicken chimichangas. Great prices too!,review,KJ46NF0zN0lMDg6fhWrPdA,0,1,0 +TwMfahsPHFnkLiqqvyalAQ,2009-04-11,qJJi0hlub1z7RuPooLYGkg,5,"R.T. O'Sullivan's really hit the spot! The service and the atmosphere were outstanding. We were put into the back room which was perfect for our large group of 45 plus. The server kept track of everything even as people moved around and socialized. The food was wonderful. + +We will be going back!",review,2NpYVMsQeyg7rIOkSHvP6Q,2,3,0 +drqCrnSqtGffJ1z60aWkxg,2010-02-16,KTSW37UG6hvABl3-lLpWEA,3,"Tilted Kilt is alright. I have been here a few times and what stands out in my mind is nice decor with many tvs, good beer selection, but crappy service and food. I am really big on service, coming from the industry for over 7 years, so when I get bad service, I get in a bad mood. The girls are pretty lucky they are hot because I don't think it would fly otherwise. The fish n chips I had were not good, obviously just poured from a bag, which is disappointing. I felt the server was really flaky and inattentive, she was sitting with a group of guys pretty much the whole time, while I was waiting for my napkins, then my malt vinegar, ugh. Then she came to tell us she was going on a smoke break and I don't think I saw her after that. All in all, I can appreciate a cute girl in sexy kilts (I was actually hired to work here when they first opened) and I love me some good beers and flat screens, but I will pass on the whole dining experience.",review,TWf1hVrosPKBgFHkoujoXQ,0,0,1 +ggBkO170QkYZAezFGMKYjQ,2009-12-10,1K8lpoRO5UCXwPOoezpWtg,3,"Bizarre location with good food. Don't expect an ""environment"". It's poorly decorated but looks as if there is a rockin karaoke setup there. Still, I liked it.",review,h8WBkAyR6fXKBChqmsXbkg,1,1,1 +tcxNX3YiHNbaobEpPFyOtA,2010-09-12,0hA3HG4cGDjEP4IFzIKVWw,3,Good fish fry place. I've also had there Monster Burger- delish.,review,J9u2d1P-nr937LGlZ3wmHQ,0,0,0 +s1c4bXeV08ml2_iH4XLzhw,2012-03-17,9bJQt6514h9cg3xmxVDjLg,5,"I have been going to Nails 101 for a long time, and I love them! I had a manicure done there about a month ago, and it lasted for 8 days without chipping! Love Nails 101!!!!!!!!",review,LuYDMWuZ51mMl32PVmsnpQ,0,0,0 +0m0KmAYGvC34MfwJIEgCEA,2012-08-22,Ne_bcSSfG1hFPhw-ZnaYMw,5,"I love Fuddruckers because I can put my own toppings on including gooey, melty fake cheese! Also, they have frings (a combo of fries and onion rings). Very tasty.",review,qABKRj1ggJmtvrL9FMFtuA,0,0,0 +vA9dAPd9fQt_3HqZylKfVA,2012-06-13,yLuHYUPAmoAWyXUw7hmQXw,4,If you like a juicy sub and you don't mind onions... Ask for your sub to be made Mike's way! It's excellent.,review,8ZepxUnCcLRZ0NAE-YVy7g,0,1,0 +5tey93wPQOb7z6jOLJZ30w,2012-04-14,HLzVLxTmp0DUb_Dg8D42vA,4,"Kudos to the manager for reaching out to make our next visit here better!! The wings still rank high in my book, alongside the buffalo chicken dip!!! Our waitress was super helpful & gave terrific service! Thanks for making our 2nd visit to Half Moon one which makes us want to return again in the future!",review,kBlISlM0QgdkS_a15aRMkA,0,0,0 +flUKBy7WHqYdfOrwU1A2SA,2009-05-02,AJ8SBbwlIAY05Ka2e2nshg,5,"The food is fantastic, the staff is helpful and the atmosphere is comfortable. + +The food at El Bravo just tastes better than the food at any other Mexican restaurant I have been to in Phoenix, regardless of price. The cheese is amazing! + +I love their flour tortilla flautas , crispy beef tacos, cheese crisps, enchiladas (I could go on and on). + +I really can see no reason to go anywhere else in Phoenix for Mexican food. + +I highly recommend El Bravo.",review,2FiNCj5rM3nF0qgaWf86Gg,1,1,1 +Nq7eB1wB2EArUICtiNePvQ,2012-12-02,uuJ5SQQs3WQBFtMU8GVbRQ,5,"EXCELLENT CUSTOMER SERVICE! + +Even with Happy Hour in full swing and the place full of parched Winkies, the service at our large table was spot on. We barely had time to settle our bums and push the silver out to claim our table territory before iced H20 was before us, our drink orders were taken . . . and one quick blink of the eye and the ""peacemakers"" were before us! + +Now that's what I call HAPPY HOUR! + +Bravo Thirsty Lion!",review,rjsx6_pSqwl0zuiwa_tI2g,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2009-03-31,zXsomljbtmS2Wd4pRlhI0Q,4,"holy crap. try the side order of garlic mushrooms. they are little pieces of heaven that are such a delight to pop in your mouth. + +also, on the special menu right now there's a salad called the mediteranian chicken salad, which really truly may be the most incredible salad i've ever eaten in my life. i wish i could drink the dressing that topped the impressive mix of greens, corn, roasted red peppers, cilantro, raisins, pine nuts, red onions, parsley, well-seasoned chicken, and i can't remember the rest. omg. beautiful. + +service was fine, not exceptional, but the staff was friendly enough. +i'm so HAPPY i found this place. go there.",review,QfdqvcKtLBr15pMggtAjHg,0,0,0 +Dka36Pw7ibbHV6xIimQAOg,2011-04-14,EC_QTFsffVObxBTN2Cu-Jg,4,Stopped in for a business breakfast. I had the Chilaquiles with scrambled eggs. It was great. It's not really on my side of town but I'd really like to go back and try some other dishes. Hefty portions at great prices. All four of us ate well for under $40 including drinks.,review,v721TYO7DMiU5Dfd8tOnmQ,0,1,0 +LzSF8rvlsxqF-0qcHU7ikA,2009-09-21,w42rGXoCgnuRdAiNqgQY6Q,1,"What. The. Heck. ?? Be prepared for sticker shock! I walked in, through the store, and made a hasty straight line back to exit. And over and across the road to Crate & Barrel - Ahhhhhh - much better! Whew!",review,h7v_M_0-YVpSVZ2WD7FpAA,2,3,2 +JxVGJ9Nly2FFIs_WpJvkug,2012-07-23,J810oYDsd7pnavQ4X03Trg,4,"They built a Sauce in Minneapolis & it only lasted three months. I'll never understand why, but I'm excited they are in Arizona & plenty of them. + +The Turkey & Feta salad is almost identical to my favorite at True Food Kitchen, which is a great thing. The paninis I've tried have always been good & come with a side of seasoned chips. I've never tried any of the pastas, but they all look wonderful as well. + +Great place for a quick, affordable, good meal.",review,CtuoM6_Im-xBZMAqPKMQ8A,0,0,0 +cOUS79i4vltKIc_hy4OZBg,2010-09-29,hvvV_dMgmH8dj3JlhdEc4w,5,"This review has been waiting and waiting for me to get it out there, so here goes... + +Baiz market reminds me of Chicago. There are so many great Middle Eastern markets back there that I felt spoiled when I came to Phoenix and didn't know of many. If you think of Lee Lee as the goto spot for all of your Asian cooking needs, then Baiz is the place to go to for all of your Middle Eastern cooking needs. And, with Al Hana (check out my review for that too) right inside to satiate your hunger, Baiz is numero uno in my book! + +This place is fantastic, the food is fantastic, the prices are fantastic and being able to grab all the ingredients I need to make homemade baba ganoush while snacking on an amazing kufta sandwich, is pretty okay too! =)",review,--65q1FpAL_UQtVZ2PTGew,1,2,1 +-lOSaCuBRAvX5JBifx-EMw,2010-10-10,d1CvzllHCEC0GoZohwgD3w,2,"I started a new job and the bosses brought us here for lunch. It was ok. I got a lunch combo meal, but I didn't pay. +The service was really great but the food was not. Just kind of plain. +It's convenient to work, so I will probably be back, I just won't have very high expectations.",review,6kmu0mYbdpMIOZ6Y0eVsxg,3,6,2 +FeI75xIG8PF_XZ6P80gLBQ,2009-08-16,6rN-B5QvWjlGOXMCpjCfxQ,4,"This may be fiction. I don't know for sure. Here's what I pretty much think happened. + +The other night I was at a bar. two days later I heard that it was Turf. So I'm gonna go with it. In body I was there, however my mind was suffering under an oppressive weight called alcohol that blurred pretty much every little thing that happened. + +For example: did I really find myself screaming piano man at the top of my lungs, to rapturous applause from the rest of the bar? every time I tried to stop, I was goaded forth into the next verse? (did the piano indeed sound like a carnival?) + +Was I really and truly told assuredly that I was gay? Did I really have an argument for what felt like hours with a fair-eyed girl who has severe trust issues and one fucked up gaydar? despite the wedding ring and total pudgy married-guy look did I still come across as gay? (my wife tells me that it can only be the broadway rendition of a billy joel song. I begrudgingly concede) + +Did I really hear someone who claimed to be a teacher misrepresent the very definition of a parallelogram? Did she really say that a parallelogram could not have right angles? Did I really scoff right at her and throw down the argument-crushing example of the square (QED biatch!)? Evidently I did, because I do remember her backing me into a corner and beating my ass with a relentless barrage of haymakers, both rights and lefts, that left me bruised like a second-rate (albeit mathematically-savvy) prizefighter the next day. Her-110 lbs at the very most, me twice that and then some on the most gravitationally-forgiving day, and I had no response but to cower in my own fucked-up rendition of the rope-a-dope. + +Her: ""flex your stomach so I can hit you."" +Me: ""Are you joking? that's me, flexing."" (#fat) + +so I can tell you little to nothing about turf--I genuinely can't say for sure if that was the place we were at. But since I asked right when I got there if I was allowed to yell, and the bartender said yes, yell to your heart's delight! I have to say four stars. I would have said 5 but that looks really out of line with the rest of these reviews...",review,vhAn390OgR1H4DwacJdc7w,8,7,9 +FgyBmc-XS_ViFAf8Wy25yA,2010-11-17,mqGVLqaIVln0_-f5F1aVPQ,5,I recently stayed at the Sheraton for two nights while attending a conference in Phoenix. I was blown away by the services. This is by far the best service I have received while staying at a hotel in recent years. I received a room on the 15 floor. Room was what you expect from Sheraton. The view from the room really sucked!! I got the room with a view of the hotel satellite and communications towers. TV quality was good and room had Starbucks coffee. Room also came with a refrigerator. I would like to see Sheraton move to Nespresso machines. After a long day attending a conference was great to relax at the hotel lobby bar. The desserts are yummy. I didn't get a chance to try the restaurants in the hotel. Hooters and Starbucks are directly across the street. My work colleague used the gym. He said the pool was really nice and gym had everything you need. Next time!!! I would definitely stay here again!!,review,El-nrOv6QtsmsOnkXQDknQ,0,1,0 +fb9eLHJ4S--TyXsarJJo-g,2012-08-07,wiOFzFx_gL9yF7Qn_TAG8Q,5,"This place is still open, but the name has been changed to Juba, and it is under new ownership. Same spot though, and the food has pretty much stayed the same besides a few changes in the menu. + +Anyway, I absolutely love coming here. My friend, Molly, is one of the servers, and I love her for introducing me to Ethiopian cuisine. It's definitely a very interesting blend of flavors, but now I come here about once or twice a week and stuff my face. I recommend trying both the vegan combo and the pita sandwich with chicken or falafel. The coffee drinks are delicious too and since they're made with Ethiopian coffee, the taste is very unique. + +If you've been hesitant about trying Ethiopian food, just get over it and go try the food at Juba. You won't be disappointed!",review,qYOtHoVCMkdmh73wvUohIA,0,1,0 +J3VvIU1ZDqg9a9e7zK-QSQ,2010-02-09,Dp9NBDSc7sydckMeAM_H5w,2,"I was in Mesa for a workshop over the weekend, and this was a convenient place to eat. I wasn't overly impressed. The food was ok, and there was nothing wrong with it, but I expected more from Mexican food in AZ.",review,a821uPZmO8R2w9R6BlrDRw,0,3,0 +6oRAC4uyJCsJl1X0WZpVSA,2010-05-17,XABPPSphqJ4PVrZbZ_AjtA,4,"Haji-Baba is unique by being both a restaurant and a store! As such, the restaurant is fairly small- so if you're up for some delicious middle-eastern food on a Friday afternoon, make sure you arrive early! + +The prices are good, the selection is better and the food is great! I ordered the falafel plate which came with 4 falafels, a side of hummus, and I subbed the tabooli out for a salad. The portion size was pretty big, so I left quite full, and it was all delicous! I'll definitely be going back soon!",review,kq5Pdsy8Znyh9KEkxWT_QA,0,0,0 +BINYfrtGp3A4w0d5E7kbYw,2011-02-17,ZpHwEE5ohvRJhE9-BwMS7Q,5,"I want to preface this review by saying that I'm close friends with one of the sushi chef's in training, so we got a seat right at the sushi bar and really had a great opportunity to chat. That being said, I will review this strictly on the quality of food, since we received some deep discounts due to being VIP guests. (C'mon now, you know you all get discounts too when you personally know the staff/chefs, so quit your whinin'!) + +The quality of the fish was excellent... some of the best sushi I've had in my existence. The key to getting good sushi is to trust in the chef, and ask them what is fresh, and what they would suggest (omakase style). + +We had a sashimi appetizer platter to start which featured blue fin, yellow tail, o-toro (yes, the good stuff!), and a few other pieces. Served with fresh wasabi root (not the hydrated green powdery stuff), this appetizer really woke our stomachs and senses. + +We had a few different rolls per the chef's suggestion, and all were spectacular (including some off the menu rolls). The kim bap roll was highly recommended, and the quality was definitely memorable, better than most Korean-mom kim bop rolls I've had in my life. + +We asked for ama-ebi (sweet shrimp), which was soft, tender, and sweet, with perfectly fried shrimp head to back. This was the first time I've had such perfectly made ama-ebi, and it's made me want to continue my search in Chicago. + +Some tasty mochi desserts, a few bottle of sake, and all in all, it was a very enjoyable night for my compadres and I. + +I'm sorry for those that have found a bad experience at Otaku, as it sounds like most of it is waitstaff issues... but as a sushi fanatic, my advice to you is this: + +1. Don't ask for a table if you're party is smaller than 4... ask for a spot at the sushi counter, because that's how sushi is meant to be served. Getting to know your chef, the chef getting to know you, having drinks together, etc. + +2. Ask the chef what he/she recommends. Not all fish are equally fresh, and the chef will know what's best for the day. And if you can provide them with your own past experience of what you liked/didn't like, they'll likely craft a sushi experience for you that you'll love. + +Verdict: If only Otaku were in Chicago... I might go broke. Delicious sushi, and worth a visit!",review,obNXmSNJ-DjzJC3nzfVkDg,3,4,0 +MYj5f-QxtGeKlhVVx1RD4g,2011-09-28,z7rZQ68udUddHny084Yh0g,4,"We came here using a groupon or living social or one of the thousands of deals now available. I can't keep track. + +We were there the day the deal expired, and I think everyone else was too! The place was packed, which was really nice. We sat at the bar and had a beer before the movie, then grabbed another to drink during the show. + +The movie was SUPER interesting. Not anything I'd seek out on my own, but definitely worthwhile. I think a lot of the films here are like that. + +We didn't even see the big loungy area until after the show. Bummer! I'd definitely come back and hang there before or after a movie, very neat looking. + +FilmBar is definitely recommended for a fun, unique night out!",review,MHqOB1BNjO2VhvbsMQCaHA,0,1,0 +iXT19WQLq_5ua6uFNuVKpQ,2010-04-25,AfyUX0Vqmrpbi3I3Zi_f2w,4,"My eyebrows definitely needed some love...I've ignored them so long that they're starting to resemble 2 fat caterpillars and I'll soon risk a uni-brow if something isn't done stat. + +Did you say FREE waxing? I'm a sucker for free stuff. + +The center is very sterile - not only in a clean and sanitary way, but also void of any personality. It's a chain though and they're trying to go for the 'European' vibe so I'll let them off the hook. + +The gal who did my wax was really nice, wore surgeons gloves, and carefully applied this purple gooey wax to my face, waited for it to dry, then pulled it off. It hurt a lot less than regular wax, and the fact that it was purple made it just seem cooler all around. I walked out 15 minutes later with clean brows and an appointment for my next wax. Definitely a good find.",review,hq0WUfau1Mh3GyHn8oVdNQ,11,12,7 +bzDs0u8I-z231QVdIQWkrA,2012-01-29,8Ehxz8wqmg6Ypw36X19edA,4,Went there today for lunch for the first time and had the del Reyes torta. I was full after one half of this monster. But was very good.,review,LN_Y01b4W9hgtDade_XM4w,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-08-09,nLelxbl1xv_3Xc32rBrkHQ,1,"Rental car review. + +118 degrees. Standing outside in the heat waiting for a bus. 10 minutes go by and I have seen 3 busses leave with out of service signs. Another 10 minutes pass and no active duty busses. Finally, a bus! We have a packed bus and the driver is just standing outside. 5 minutes later he comes back on the bus and we drive 10 miles an hour the whole way to the terminal. + +PHX...pay attention. Business travelers do not appreciate being left in the heat for 20 minutes watching out of service busses pass by.",review,0EtZMnRQF2YsXvWBQ7FauQ,1,1,1 +wH9WtaTlrRawH_IpK90RPg,2012-09-27,DMCubsRz36lGnz3QM8WKLA,3,"Okay.....so....I have this thing about going out in Scottsdale in the first place because I'm always like ""that one natural haired black girl"" in a sea of blonde, tan, slim chicas! But that's neither here nor there. + +The Lodge was OKAY in my opinion. For it to be in Scottsdale where everything is super expensive for no reason the drinks are pretty cheap. I had a couple of shots and a drink and spent under $20. The bartender was SUPER sweet and she knew my name by the time I came back for my 3rd drink. + +They have AH-MAZING food deals. Like, get a burger and a beer for $6. Of course it's not a top notch beer but.....who doesn't love burgers and beers?? + +There is music...coming from somewhere and it's always pretty legit, a good mix. + +There is like an intimate, cabin sort of corner with flickering romance lights when you first walk in if you want privacy but we usually go outside to the deck and people watch and/or play cornhole....Either way, I wouldn't say this is my favorite place ever...but I dont hate it either. + +Plus there is always a line of cabs outside waiting if you are too schwasted to get home :)!",review,bITqkdi9OIsQXUpowk_saQ,0,0,0 +BtX9mA5dYDzULGVPC4-I-A,2012-03-15,aPkgxX7cBTD3JdGpmPIXjg,1,"Every time I've been there they have messed up my order in some way. The first time I ordered a sonic blast w Carmel. They charged me for Carmel but there was none in it plus the bottom of the cup was busted and my ice cream was leaking out. The next I went I ordered a reese sonic blast and a snickers, they were both snickers. Very upset I haven't been back and I love that place.",review,e6iM8wQzEv7bb8jXVOQjQA,0,1,1 +e5kc0CQ4R-PCCDgb274gSg,2010-05-03,rVqYA41K85_Y-ZpsvT09dw,4,"Lots of awesome packed in a cute little restaurant. Visited here on numerous occasions and never had to wait for a table. Service is excellent; friendly, and witty waitresses are a breath of fresh air. As is the patio, which is a perfect venue to enjoy a meal next to the fountains. The view of the gardens at lunch time is also a nice tidbit. + +Loved the chips too. Chimichanga is A-okay!",review,0KXxuKxlspsO6CrDLgQJ-w,1,1,0 +41j3GB7M-Lwq284Pfb9zgw,2012-08-26,OGliW0Iolmdz8B-uJrDbDw,4,"I cannot speak for the food, (though the menu looked unique and tantalizing), but the beer selection was great, as was service. We arrived on Saturday night, the first weekend Angels Trumpet was open, around 10 p.m. for drinks. There was a large group of us, 9 people... though there weren't any tables to accomodate our party we were able to stand/be seated comfortably around one of the high-tops. + +This place is great for smaller parties who enjoy a good beer. The selection cannot be beat in downtown Phoenix -- 31 craft brews on tap of every taste and style... and they're always rotating. I had the Biere Blonde & White... 4.5% alcohol, light, sunny taste. Reminded me of Four Peak's SunBrew. + +The selection ranges from hoppy IPAs at 10% alcohol/volume to the lighter, summer brews and everything in between. There is literally something for everyone, even a few wines on tap for the non-beer drinkers. + +Our server was very nice and accommodating.. and though the place was packed she got us our drinks pretty quickly. + +A couple reasons I didn't give Angels Trumpet the perfect '5' star rating: + +Disorganization-- Seating was sort of a nightmare... and we kind of waited around for one of the high-tops to open up and just snagged it. +Ambience-- I enjoyed the nice, open floor plan but the restaurant-style and dozens of tables/chairs was a bit puzzling considering the kitchen was closed when we arrived. I couldn't hear any music above the conversations in the room and the huge, 60"" TV screens weren't turned on. It'd be nice for weekend nights to boast something a little more special. If you're going to close the kitchen, allow people to walk around and mingle more. + +Overall, if you're looking for a nice place to kick back with a small group of friends and try some awesome, unique beers on tap, Angels Trumpet is it. Their prices are reasonable for the quality offered. Haven't tried the food, but the menu is pretty diverse offering a spin on traditional bar food like flatbread pizzas and sandwiches.",review,xV59HB14hq4XTecr3dFibw,0,0,0 +mpdl2_v3MDJVzTaxvlEGTA,2012-07-22,7e5jVB1D6nmONQgM6loaeQ,4,"My GF says Take me out for a rum drink, I says your wish is my command. + +Beautiful little restaurant opens at 5 downtown. A very kind sir welcomes us in. I see the rum punch and I order up. Now this rum punch is delicious but I would have liked it to be stronger, ya know 'Punch' $5. I decided to add a shot to our drinks with a Haitian five star rum.$8. + +We also had an app of Cuban style pork tenderloin sandwiches using fried plantains. My Gf enjoyed them I just am not crazy for plantains. Anyway cozy seating and we had a good time.",review,gN03qFYysM5DbgjuV6N0QQ,1,2,0 +giyl3pyGo6sbvsnn94f4Hg,2012-10-21,pQTYqf5JwTqDDoU6oeA4WQ,4,"We really enjoyed lunch today. Very good service and many choices. Coming early in the day - when the buffet is at its freshest is usually our m.o. ... especially ones with so many choices and slower turnover. That said, we came late afternoon, and were not disappointed. The stew-ish type dishes were flavorful, all the spices bold. I would like to try their fresh dishes from the menu some day - like the Tandoori chicken. I agree about the noodle dish. I got a little bit on my plate, but it just didn't feel right. Everything else was pretty authentic, based on my experiences. Our first time with the Chaat bar... I really don't get it. But, we will definitely be back for the lentils, masalas, curry, rices, paneers. It was worth the $30 for a Sunday Brunch for two with coupon. tax and tip. And a free glass of champagne!",review,Sq2Ggj2UgbPH1wLS3tNZEg,0,0,0 +TVJT7Xknd-ikf4vskcjKQw,2012-11-17,6Jhav65PlxHavnAPmZdZVA,4,Our first visit. A bit quiet on a Monday night. Service was fast and friendly. Wife and I shared a hommus appetizer and Greek fries. We like our hommus with more zest i.e. garlic. Main courses were the gyro dinner and chicken souvlaki meal. Both were tasty with generous portions. We'll go back.,review,RKo6f-phN2wcmjYjZQC9cg,0,0,0 +6Kon3cR5ZEm5rmYKlpcfcw,2011-10-26,t4a_bUuC9r0MokdXveEKTQ,5,"Stayed here one night while traveling to Phoenix for business. What a cool hotel! I've never stayed anywhere like this. + +I didn't experience the 50's personally, but this place has really kept and captured that essence. (And yes, it's been renovated. This place was built in the 50's but it's not run down or anything like that.) + +The room was nice, the pool looked great (never got to go...), the service was impeccable, the food at Zuzu was very good. Old town Scottsdale is right around the corner, with great restaurants and bars. What's not to like?",review,JJnS30Cjv5CBa1JXyZU5yw,2,1,1 +_GS1R0LTwr6h8rMWY_8U9Q,2007-07-20,V0EsJ8gw-NUFoiJcjcHb2Q,3,"Pomeroy's and I have a really ass backwards relationship. + +Typically, the purpose a bar serves me is to quench a thirst brought on by numerous factors, the most typical one being the uncanny excitement I have for making poor (but fun) decisions. Because of this, the purpose I serve bars is not only the obviously fiscal nature of the relationship, but I often serve as the harbinger of good times. + +So here's the problem with P-roy's. + +I never want to come here. Ever. This is the place I END UP at and it's typically the result of somebody else's negative circumstance that I don't really want to deal with (friend meltdown, death, crashed vehicles), and I almost always have to leave a place I like to come here. I know, weird, right? But I've been here more times than I can shake a stick at, and while I am usually the omen of good times to come, I always know that if I am on my way to Pomeroy's, not only will I be saving copious amounts of cashola, I also always end up having a blast and not doing something stupid. + +So the role reversal always sends me for a loop, and the bathroom always smells like fresh poop, but I can't help kinda liking it.",review,gq_G5VCDziyEV2-bzGuqzw,1,3,3 +YKOvlBNkF4KpUP9q7x862w,2009-03-04,ES4-S0n_LN5PmtJHmiwf8g,4,"I was toying with the idea of going on the wagon for a few weeks when I met my friend at The Mission, but the Sophia Loren cocktail caught my eye. My friend was intrigued by the Mexican Painkiller, and I couldn't let her drink alone. And oh, I'm so glad I'm such a good friend. + +The Sophia instantly made my list as one of the best cocktails I have ever had - fresh strawberries and mint muddled in rum and another liqueur I can't remember. Just sweet enough to be refreshing. And plenty strong enough to make any hour happy. This drink defines the word elixir. It is as intoxicatingly unforgettable as its namesake.",review,gvXV0RHOxI_WhT91LMPNNQ,3,2,2 +TwMfahsPHFnkLiqqvyalAQ,2010-03-21,YE6RDG_LjkmYfJ8qvDPiAg,3,"Some family were in town and are Blackhawks fanatics desperate to watch the game. This was the only place in the east valley that we could find had the NHL Center Ice package (though the girl who answered the phone had to ask somebody else (""What's NHL?"")). Not only were they kind enough to put the game on, they put it on a flat screen in the corner of the patio and we were able to have the sound on. He shoots, he scores! + +The shepherds pie was good, the beer was cold, and the waitress was very attentive. + +I'll stick with CK's or the Baseline Pub for the NFL games though. While RT's had plenty of TV's, most of them were small old tube TV's. My uncle asked why they weren't showing the score of a basketball game, and I told him it's just being cut off by the old TV's screen",review,VcN9i7sPrGSOn4BnpOJ9tQ,1,1,1 +IAA95OWwU-MRnhFQD8t3JA,2012-10-31,nGGMwf0mWvUMccsIOmA3gw,3,"I took my family here using a groupon and it was just ok. We tried to go on Monday however we arrived at 4:30 and the employee working the counter informed us that league play was going to begin at 5:30 so our hour would be cut short. I was a little irritated with her ""um, yeah sorrry"" but whatever. We opted to come back the next day to get our full hour. When we arrived we were greeted by a very friendly gentlemen who provided us our shows and assigned our lane. We were one of 3 groups in the alley and they placed us side by side instead of giving us a little space. My wife asked for a glass of water that never came. So the bowling was fun. The service was marginal at best. The lane assignment was awful. Since we only paid $15 for 4 people for the hour including shoe rental I will go back again for the same deal. I would never go there paying full price which is outrageous.",review,7x6qY_vu6PQ4yvOoFurbMQ,0,0,0 +EMGkbiCMfMTflQux-_JY7Q,2011-12-16,Ik8YH1kSuT6yzuvlsfgtbA,3,"I have been to Butters on numerous occasions - the latest being with three senior golfing friends from out of town. Over the last few years, we have tried numerous breakfast places on their trips, searching for a breakfast that would satisfy all of their different tastes. After trying six or seven different places, I brought them to Butters, since it was on our way to the golf course. + +We all ordered something different, including a skillet, bacon and eggs, pancakes, and an omelette. The service was fast, and friendly. In fact, we have one picky eater, who always sends his bacon back, because it isn't as crisp as he demands. The waitress handled his grumbling very nicely, and even had him laughing about it. + +The atmosphere is somewhat trendier than Butterfields, which was a very big plus for my senior friends. They also commented on the friendly service, and the reasonable prices. It didn't surprise me that when it came time for breakfast on the final three days they were here, they all voted to come to Butters for breakfast. + +It should be noted that we came on the weekdays when it isn't as busy on the weekends. I have been in the area on weekends, and it always appears that there is a waiting line. + +The only thing keeping it from more stars, are the hash browns. They are obviously prepackaged (or at least taste that way) - and a real breakfast place should have signature hash browns. But all in all, a nice addition to the area.",review,w_hcSjqLeSZQL9Rx1UP-Tw,0,1,0 +VwONNCUI93Qb4SgxvuBd-g,2010-04-20,P_5y1Vb4NHLqbe7EWczxQg,3,Fast and a drive thru. What more is there?,review,wY1vTvfdwAL1CgDcn2GhdQ,0,0,0 +gR6kAJiEfIf3MMELxFX1gQ,2011-01-23,rjtqtwPHnhekeaz2_JBftQ,5,This place is so great! I am a nanny and had to bring in a dance outfit to get the straps shorten for the girl I care for. The woman did this for no charge! It was only the second time I went there. She said it would only take her two minutes so no charge. She was super sweet!,review,khPlizt3ava1xkbtAxHQnw,0,0,0 +n4kQBw7XX1tSJMPhM5SyAQ,2012-12-23,2byDePm0U244ESYBbjY-qg,1,Waste of time. I could not even get in there today because there was a football game. The wanted me to pay $10 just to park. How stupid is that! 2 days before Christmas. I noticed all the prices were the same and somtimes more than any other mall. Goobye and good riddens. I have better things to do with my time and money.,review,Kum4rrB2ZBGWXmlOXTTq9w,1,1,2 +towWd9z7YuGHdAezQtrkTQ,2008-06-13,3nlkj_AG2g33nyQerIX6Rw,5,"How can you go wrong with tortillas and pastries in one location? I honestly don't understand how this little Mexican bakery stays in business given everything is practically free. My hubby and I bought two empanadas for me (like a little pie or turnover), flan for him, a dozen tortillas, and 2 red burritos. I guess you need to get there early because they were out of red tamales at 2 pm on a Friday. + +The empanadas were baked just to golden brown and the crust was so flaky and delicious words cannot describe it. I had lemon and cherry, but I wanted to try one of everything. The red chili in the burritos was mild but very flavorful. Luckily they are wrapped in foil because I couldn't wait to get home to devour mine. They could double their prices and I would still come back! + +I forgot to mention the bakery is spotless, so clean I would eat off the floor if I had to.",review,wHg1YkCzdZq9WBJOTRgxHQ,4,7,3 +QkyN2vqQidQhotvOtPIrkw,2011-08-05,3BK8kCE1JwH_537_2t4gSQ,2,"Yelpers giving this place four or five stars are either seriously misguided, don't have refined pallets, or simply haven't tried Bianco or Cibo. This place was over priced, had fairly poor service, and the pizza just wasn't that good. + +I ordered the sausage pizza. The sausage was pretty bland. They also screwed up my order by adding onions when I didn't ask for them. I've had my order messed up on pizzas before by having toppings left off, but never added on that I simply didn't order. Found that strange. I would have sent it back, but the waiter didn't check to see how everything was until about fifteen minutes after the food was brought to the table. + +I'd give Humbe Pie 1.5 stars if I could, but rounded up since it is better than Dominos and Pizza Hut. I went after buying the GroupOn coupon, but won't be returning.",review,34gJ_KlP3RM6jotNT6TcDQ,4,4,4 +D0tHnskAgaRjCBdoXVev_g,2010-03-11,FyZfuAb5dcou0g6f_S9pQQ,4,"Popeyes yes that's right Popeyes, after recently relocating from Chicago to Phoenix I wanted some fried chicken and Popeye's is what I like. Now Fried chicken competition is pretty stiff in the Chi you have Harold's, Uncle Remus, and Mac Arthur's but here in Phoenix I am not so sure of the local spots. There are not many Popeyes locations near my current residences but ahhh.... one is near my work location. Score and this one has the ""Tuesday Special"" 2 pieces - leg and thigh for only .99 cents. Talk about an awesome deal, especially if you like dark meat which I do. I did the drive thru cause I wanted to get home on the 51 before the traffic got bad and the window person was very nice and efficient. This is now my chicken spot here in AZ unless you know of another one that can get me tasty and spicy chicken I can't be persuade differently.",review,jXp0eFDh_LNO8JfcGlV3pw,1,1,0 +yVQiGdxmnrkJDyQXv2maNA,2012-11-18,fwdbRIFrGS0jQT4GbiDTjA,5,"Exactly what a hole in the wall Pho place should be like! Totally reminds me of LA, SF or any authentic Pho place in any multi-cultural city. Congrats Phoenix for not being completely white bred and redneck- must give thanks to center city. + +Anyhow, portions are large, ingredients taste fresh and prices are inexpensive. If you're one of the sheltered folk out here that gets freaked out by rude bums or the lack of decor- stay in the shelter of your HOA tract home or go to the mall.",review,LSf-IajkL99JQBZ3PzXnjQ,2,4,2 +GeHwru6TVDyVErFc92Nn2w,2010-03-20,Bi1EnyIyy5RrNZcbK5ajSQ,3,"I have never written a negative review but unfortunately I think this place needs to get it together. It is in a location that never seems to be successful. I drug my husband over excited to try it and hoping to see an improvement. No such luck. No vegetarian entree, not really kid friendsly, small portions, pricey. Not what we were looking for in an evening. Love to support new restaurants but wont be back. Hope they figure it out and make it work.",review,LwbCh2rhnfaFOhzw7gE1TA,0,1,0 +co8rv2zfOhMXc_TlEI9VrA,2010-04-30,bPNpGEqz6d90zkIw3in3cw,4,"i've been a mojo fan since... well, since mojo first became mojo. when yogurtology opened right up the street from my house, i arched a skeptical brow and decided to give the mojo-wannabe a try. + +*long sigh* + +my newfound love of yogurtology has me feeling a little guilty, as if i've replaced an old love with a new one. such is life, i suppose. + +the facts: + +yogurtology has a wide range of excellent flavors of frozen yogurt that seem to rotate daily. i've seen chocolate mint, oreo, cupcake batter, red velvet, chocolate peanut butter, mango, blackberry, oatmeal cookie and vanilla bean, to name a few. each and every one delish. they also seem to always have at least one non-dairy option available... + +the toppings are plentiful and varied. choose from fresh fruit, chopped candy bars, m&ms, nuts, baklava, brownies, truffles, cheesecake, sprinkles galore, ginormous marshmallows and gummy candy... i've never seen so many topping options in one place. + +staff are very friendly and attentive. a little TOO attentive for my taste, but hey, i'm the kind of person who likes to be left alone unless i ask for help...overall, they rock! + +loyalty punch-card? you betcha. so eat and eat and eat and score yourself some free yogurtology before starting the tasty process all over again. + +lick a spoon and feed your grin. + +lola",review,j57HR3gaS5X1DrfalZ3W-g,0,1,0 +eTbtfgUtfewdncgVf2CbWw,2011-08-09,aCTQnVsRUt9JBQkzJxAKMQ,5,"Love, love, LOVE this place! Eugenia is a genius! Macarons = amazing. Croissants = soft, buttery, flaky, delicious goodness. Iced mocha is one of the best I have ever had. My only complaint is that this place is not closer to my house or work, but that's probably a good thing because I would weigh 1000 lbs if it was.",review,mSGCYGJB3TIjE92zVDmo0g,0,0,0 +WfYQE-MZCQb_BOyW7lWh9Q,2010-01-18,zAbuVOUpQhQ1KafDFoVhlg,4,I loved the concept of this yougurt place. It is much better than Pinkberry in California. You can serve yourself a variety of flavors of yogurt. I got white boy vanilla and acai along with Mango. You pay for your yogurt by weight. This was a great place!,review,lViWWAZLMGz_TMKfrLon-w,0,0,0 +W7xb2iS4cYL14Yi5LOGSkA,2009-03-08,jxiX6oOomJXJBzK82Wpusg,2,"It's not that I don't like this place, it's just that it's very run of the mill. Bison Witches does the standard sports bar cum college drinking hole thing. That's all that can really be said about this place. You can't really hate this place for that because it is what it is. A milquetoast spot at its most average..",review,FxxYCRPcpd__yhRRmmtyMQ,0,0,0 +DTFy9-NuZBjBEd9Zcoo94g,2009-01-31,fBh8nGMOjsZ1DOYQKNxfCQ,1,"F724 + +She didn't even look at me, didn't bother asking why I was entering her place of business, didn't reply when I spoke and in no way acknowledged that I was even in her presence. Just handed me a ticket and was done with me. If this happened anywhere else, I would make an effort to never return, tell all my friends how horrible this experience was, and write a scathing review about the deplorable customer service of this business. Sadly, this was my Saturday morning at the DMV, a place I think is modeled after the agonizing depths of Hell. With the same musac score playing...and the same voracious stench in the air..and the same spastic children running around (only in my version of Hell, it's politicians campaigning around me). + +So, I was already running late because I had to complete my emissions test early. Those nice people there not only told me there were only three DMVs open on Saturdays, they gave me a map. How precious. I was fortunate enough to be near one of the only DMVs open on Saturday (Seriously? Three DMVs open on Saturday for the entire Valley?) After receiving such a magnificent welcome, I knew this was quickly going to be among the most painful experiences of my life. To simplify what was so bad, let me make a list of what I feel constitutes acceptable behavior in public: + +1) Bathe. The combination of water and soap, along with massaging the skin, creates an outcome that is most pleasing. Be sure to scrub behind your ears and reference this website about another notorious spot : http://www.craigslist.org/about/best/htf/755891987.html + +2) Sit still. Yes, I know we're all waiting here for about an hour. But tapping your foot, rocking back and forth in your chair or bouncing your leg aren't going to make time go any faster. Trust me, I was watching the clock. If you feel anxious, get up and walk around. + +3) Leash your children. If they cannot sit quietly, leave them in the car. It's winter, they'll be fine. It's not cute when your little monster is running up and down the aisles with his honey bun squeezing out between his fingers. It's even more not cute when he fake-falls five times in a row right in front of me. + +4) Maintain quiet tones and ensure appropriate conversations when taking/making calls. To the lady behind me, I'm sorry you're not that experienced in stripping. The first thought that popped into my mind was you had a failed audition for Le Girl. Thanks to your continued conversation, I was able to figure out you were a woodworker. + +5) Acknowledge the humans around you. Yeah, I get it. I'm not that big. In fact, if I turn sideways I disappear. But, I'm still right in front of you so pay attention, quit bumping in to me and hitting my leg. Unless that was flirting, in which case you really need to find someone more your level. + +Oh, the DMV: You have a brilliant recipe for dashing dreams and gutting humanity. And you manage to do it in a painfully lit room that reeks of a combination of my brother's old gym shoes and my dad's dirty underwear. There has to be an award for that, but I don't have the motivation to research it. + +Oh, and F724 was my number upon entering. I spent and hour and 15 minutes looking at that slip of paper. Just so you know, that one star is for the website (which should probably get 3-4 stars but anchors like this oft sink the ship). + +Le sigh... + +Open T-Sa 8:00am - 5:00pm; information only after 4:30pm",review,nc3cqVN0UuB3m50-CcMftw,8,9,12 +oFW8Fjszgsmy39a5hUnoBQ,2008-04-11,CQEOzdAPHNEbnxdgUzT32w,3,"I am a bonafide book junkie. Libraries are my mecca. But, I'm picky. + +Getting a SPL card was a cinch. I only needed one proof of residence, although I brought the recommended three, including a Netflix envelope. + +Once I had my card, I was ready to explore. I headed first to the public computers that help you locate books... yes! With scraps of papers and mini-pencils handy, I was good to go, once I had selected a couple books to hunt down. + +So far, so good. + +But then the library got tricky. Running out of the alphabet before I had found my book. Turning into another section - from Fiction to Large Print. WTF? I decided to turn this hunt into more of a tour, so I wandered the aisles, studied the names of sections and eventually re-acquainted myself with the library system. + +Don't get me wrong. This isn't rocket science. It's also not pop rocks. + +Having found my books and a couple DVDs, I proceeded to check out. Super easy, too. I can renew online? Bonus! + +My first trip to the library was GREAT. + +Then the second one came. The library had NONE of the books I came looking for, and I was prepared to find AT LEAST ONE of the books on my list of 5. Nope. So I put some ""on hold"" for me and wandered about, very disappointed. That's when I began to dislike this library. None of my books? Really? + +This library isn't browsing-friendly like others I have seen. Even the ol' library in Stillwater, Oklahoma was more comfortable than this one. In fact, I miss that ol' library, with its shelves of poetry, psychology, magazines and literature... so easy to find, so easy to browse, so easy to sit for hours and read. + +I couldn't leave SPL fast enough. On my way out, a man working (volunteering?) there showed me how to use the self-service check-out system. Nice! He was a friendly ol' man, who assumed I knew NOTHING about self-service machines... and probably doubted my ability to read, for he explained step-by-step what I needed to do in order to check out my books. At least the lesson was in-depth enough for me to fully comprehend - and then some. + +So, the next time I went to SPL - to pick up the books I had put on hold (score!) - I used the self-service check-out. I was in and out in like 7.46 minutes. + +So, let's recap: +*SLP has books! +*SLP doesn't always have the books you want. (Sad face) +*You can renew online, create a profile and share reviews. +*You can place books on-hold from any computer, if you're logged into your account. +*People working there are friendly. +*It's easy to get a card. Just bring in your SRP bill, like I did. +*It's not an easy place to browse. +*SPL doesn't make you feel like you want to spend hours there. +*There are private rooms; just not sure how you reserve them. +*There are monthly activities at the library - but mostly about old-fart diets and how to use Microsoft Word. +*There's FREE parking in THE SHADE! +*You can check your items out yourself, with their self-service check-out machine. +*It's pretty ugly inside - brown, biege, dull and lifeless.",review,APLIPfq1Rf8QyhHHk2uAyA,1,1,2 +MGTBiJ8upecnlG2rftHn9g,2012-09-19,WSnjO7TD2Qe9EDwGsmG-VQ,5,"They are the best! 99% of my pain in my back is gone, thanks to Patrick O'Brien and assistant Joshua. + +Bonnie Wills",review,M168taumyl7t35jWGT4brg,0,0,0 +o3TruOSgOwNgx08QosuWTw,2012-04-16,k1dwoqavwJUgFTsj1ujH4A,2,"I have to admit the quality of food here is better than your average berto's restaurant, However the girl who works the drive-through during the late shift makes some of the strangest mistakes with the food. Warning if your ordering 2 items don't be surprised to find them in one box combined into some strange hybrid. I honestly don't think she understands the word ""And"". This has happened to me several times int the last month. Always make sure to check your order here.",review,kmx0MxQDVWizT9HvBvearw,0,0,0 +iwN90973uPSLsx5w1_GQog,2011-06-30,jDmTrmhSeqDJ-vwEGIQ-Uw,1,"Lazy Q CLOSED in 2010. New Owners cleaned up the place and its called JESTERS BILLIARDS. Tons of beer, AC smoking patio with pool tables. Re-did tables and got new cues. Its rockin now.",review,6K6GvIJZ_G_luOrVZDwrZw,0,1,0 +qkX9CmImtW97GHmt9NXKog,2012-09-02,H_KNjqgSSupaxKEyIL686Q,4,Great place to go for a walk or bike ride.,review,epqjmEm2SOuNmQi15XrOYw,0,0,0 +q_7Rs640owOOrAo6CV-jYw,2011-01-22,FY2MLRyEV-9Rqcdxuc3WEg,4,"Bought a great pair of their 'eddie' ballet flats here on sale...deal. This store gives good...customer service that is. They noticed my sunglass case was a little too old and gave me a new one of theirs...lovely. I returned a few weeks later during their friends and family night and purchase a different color of the same shoe...perfect for traveling and the lovely shaded purples ones will be a great pop of color with my comfy and neutral travel clothes! + +Hey if you see that girl walking by the Seine in Paris with the purple shoes...it's me!",review,5LU-21bimh4DgdEthvf8iQ,2,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-06-03,7VsG6-m3wNhuoMUeHQ8Vcw,5,"It's called America's friendliest airport for a reason- it truly embodies world class service to all. I love it here it's clean, great places to eat and smiling faces to great you esp at TSA!",review,-vRFUY8ixuNniCCNVvmkRQ,1,2,1 +s7BZ4tD3q62-OTSYp7Djdw,2009-06-30,txznAo63BtHBLAjFEYHKEA,5,"What a great surprise stumbling across this bank! Open 7 days a week with lobby service + +I have banked with the Mega Uber Banks and have been nickeled and dimed (literally) with service fees. + +I opened both a savings and checking account here. Since my company does not offer direct deposit the associate told me I would have to have a traditional checking account with service fees. I'm thinking - here we go again. But it was one of those think on your feet moments. Off they went (I'll assume to get approval). They let me open up a type of checking account that only charges you for check printing - No other fees and pays interest. In fact, if you use a non-MidFirst Bank ATM, they will refund you the service fees. How refreshing with the current state of banking.",review,4WyOI4x62W2EsvZO-RV-MQ,0,2,0 +jUQpIF_bhhF_XQqScrt5yg,2010-12-06,qywwnkQMHDZ29sefIffeoQ,4,"Let's start by making it clear that my dogs are my life. Completely obsessed pet parent here! I went here for a second opinion about one of my dogs after being fed up with my regular vet. I was really impressed with the premises and doctor. She was incredibly caring and helpful, and they did not try to get me to pay for anything additional. I really appreciated the authenticity and the follow up. I am now a regular customer (patient?) and definitely recommend this place for your furbabies :-)",review,lCVLT95VUnlZfboVoZJCZA,1,1,0 +A5jJS6lNQbJXjPzBkTnjNQ,2012-05-10,uOVl50PKs9Y0G2VDnyQw5Q,3,"Lavelle's just opened the end of April. So far I've been twice once for lunch and once for ice cream. Both times I waited about 15 minutes. Understandable considering their new. I wanted to make my own type of sandwich and the older women said they don't do that. Okay. So I wanted to get the arizona sandwich with a different bread, she says the bread change is 1.00. Really?! Sandwich also had no mayo/mustard. All in all it's good to have new restaurants out here, but this one is just okay. + +**Update: I have went in on 2 different dates to get ice cream. Only to find out the 2 flavors I want are gone. Should get back-ups of their items.",review,XvRFOE5-d32wLTrleI9Utg,0,0,0 +X-dpycbo5fy8AyoHCUCryA,2011-06-19,4kqwCLbvCBpeTv7fUdxTBA,4,"Stop by today for California Burger and I also their chocolate brownie delight sundae. It is probably one of the best sundaes I have ever had. If you are a chocolate fan, this place is definitely something that you will want to try. The help is friendly and helpful.",review,duTeTiNX__zYcznMX5CgMw,0,0,0 +xHI3saK0sAJEHeMK4IGVvg,2010-09-19,VOlzILk599dShFuG5gwVbQ,5,"short leash is awesome! we tried the sample platter and they delivered it to us inside the bar. we were also given an additional sample tray to try for free. everything was delicious and had a very unique take on a common american snack. + +I can't wait until they come back!",review,UpStsEqOOeV_2_4n5PZzjQ,1,1,1 +qHjUo2foq-IXF6Tk1Iz3WQ,2008-06-23,Tdi8gTd8dZBsIMSTZEgpOw,2,"Nothing great. The salsa was very soupy, like you'd get from a jar. The hot salsa was even more liquidy and just tasted like chili oil or chili paste. The tortilla soup was served like French onion soup, with a whole layer of melted cheese on top, and the broth underneath was really salty. My friend who normally loves tortilla soup sent it back. + +I went with the corn tamale. According to the menu, you can choose either red or green. I ordered the green, and the tamale was served in the middle of a sea of red sauce/salsa. So I asked the server, ""Is this the green tamale?"" and she said that normally just the beef tamale is served red or green but I could have some green salsa if I wanted. umm...okay. + +On the plus side, the service was very prompt-- our drink orders were taken immediately and chips and salsa were delivered 2 seconds later. And the lunch menu was very reasonably priced, including $2.50 margaritas. The food was just nothing special. I guess the name should have been a warning not to expect anything too authentic.",review,YL8SKv-pwx-Wj9cwGYrn3g,1,2,0 +YmhskhHArN4CHTG49kC_hQ,2011-10-11,EzYzG14T2GUKHKcktfWUyg,1,"So I had this important event to attend in California and I've already spent a lot of money preparing for my trip. Earlier in the month I had received a coupon for $40 off any service at Epic salon. Wow, that is a lot of savings and I could sure use to save some money. Epic uses Goldwell products which is my product of choice. I just needed a tint touch-up (about 1"") so I went to this salon... I had already had an awesome experience at another salon in town, but I couldn't pass up the savings by using the $40 coupon) I was second-guessing the idea of trying a new salon since I had already found one I absolutly loved. .Again though, the coupon lured me in. Anyway, I walked away with the worst experience ever. Not only was my color wrong ( I am a golden blonde and she colored my 1' outgrowth to a 3"" ash) when I went back in to explain what was so wrong with it (5min later), the front desk lady was rude and cut me off as I was speaking to her. Not the best way to handle a pissed of lady expecially about her hair! I gave them a chance to fix it and the only thing they did was put a gold glaze on my hair, which did not help at all. The style sucked too. I just left. I did not have time to see if they could fix it again. I will not be going back to this place for any services. Noy only because the hair experience was bad, but because the front desk gal made a bad impession of the place even worse with her nastiness. UGH! I will give this place 1 star only because on the coupon was also a savings of 30% off products.",review,qbLkttEOyztRMYRtSLBo4w,0,2,0 +Dj4glvoFwKypLjUr9F01Sg,2012-08-02,QVvfpA4CZg2eGOk9BgA-gw,4,"I love this place! Great quality food, great service, large portions and fare prices. In the Fry's parking lot. Try the bbq pork egg foo young, mongolian beef and get the lo mein instead of rice. Good stuff.",review,avzVuoEUSiaB6t7a1cf5HA,1,1,0 +zoHCkEiIKfXiLTKUqKEojQ,2012-05-06,ExZbcPE9I3j4gYkXFjHU5w,4,"Came in for my birthday burger, and decided on the garden-burger. I hadn't tried it before, but I'll be trying it again, many more times. I may even go vegetarian now that this baby is in my dietetic arsenal. Love it!",review,pIm17SVRo8IdhGoBD4qbnA,0,1,0 +oyzxIqrtzu-8sWlPhJVsLw,2012-08-18,Gc7fvwgilDyfTYDv0cNLDg,5,"Visiting a friend who insisted we come to Carolina's on my first morning in town to get a breakfast burrito To Die For. + +She was totally spot-on. + +These delicious hand-made tortillas are fantastic! I wish I could take a bunch back to Seattle with me, but since they're freshly-made, I'm guessing the lack of preservatives will make that a better idea than reality. + +I enjoyed the chorizo, egg, and potato burrito with plenty of salsa. I loved the spicy/smooth combo with the sour cream in the burrito. + +I hope I get a chance to eat here again before leaving town!",review,d9NiFsAxY-ktixPKHiFo1g,0,0,0 +v4vMWnv-oQWVBe7MkRQDrA,2011-01-13,iVymYsNYzjNxKwcV1rvUxA,5,"I've passed by prestige nails in walmart 100s of times but never really thought of having a pedicure there (even though they are always busy!) As I stared at my feet, long overdue for a pedicure, I thought it was about time to try them...since walmart rarely let's me down why should the nail salon inside? + +To my surprise I got a wonderful pedicure or $23 not too bad this day in age...my to mention it was just as good as going to the more upscale salon just across the street! + +I'm glad to be the first to review them they deserve it! Now if only they did facials at walmart and hair I'd be set!",review,eQP0jA1qHQ7dnsvah_gEuw,0,2,0 +V-mvhyX6lxu5l2euYatlrQ,2009-11-02,-K4Sq6SPrYwN7cNzq3wDeA,3,"Stadium was REALLY nice... the MORONS in control of the parking...not so much. I understand that you're not going to get doctors/lawyers/rocket scientists to control parking and move traffic in and out of the game. HOWEVER, it would be nice if Glendale would pull their heads out of their butts and build a new on/off ramp for the stadium. It took over 30mins to get out of the parking lot!! To make it worse..the Cards lost :(",review,_jjIaczpcVDpHlH6l334rQ,0,1,1 +XeoeF0twXRV4mUZJgIjc8A,2010-08-16,am3CSEfTmUxi-vMZ4MSXlg,4,"VOODOO Chicken was fantastic! Most of the entree selections were available over rice or pasta. They had many gluten free options and they use brown rice and brown pasta. I stumbled upon Jaspers Peak Bistro on accident and I am glad I did. Cajun inspired food cooked well. Very satisfying and delicious. + +The server was a bit neglectful, but we were loving our food so much and the company of friends that we didn't mind so much. The neglectful server did recommend the food we ordered and we were very happy with it.",review,XBHJCDzNh--mBhJkzyM_iA,1,1,0 +WaO_hAunQrZ--vI308rHQA,2012-06-28,5JVIkHaT8zb3AB9UzdcAuA,2,"Last summer when I was in AZ I ate here a few times and it was always great! I love the pulled pork sandwich. I ate here while I had family in town a few weeks ago and it was nothing like it used to be. The sandwich was lacking in flavor, they didn't have the same sides they used to. We got these fried potatoes which had way to much seasoning on them, none of us ate them. This place has gone way down hill, I won't be going here anymore.",review,Hj8GsWV3454SmqhhK-LCAg,1,1,0 +3oLy0rlzRI_xiqfQHqC4_g,2012-11-19,6uNrrkI9KSI2CXU7LGY62g,4,"Went back for a 2nd go-round. This time I got the B&G also. It really was fantastic. The gravy was about as perfect as can be with one exception - there weren't any sausage chunks. + +I opted for the country potatoes which I did not like at all - they were WAY too onion-y. The hash browns are great. + +This place gets high marks for the service - the owners are very friendly and welcoming.",review,5dVErm0rBACCdS1p4eXGBg,0,0,0 +-8IvK1VBMRqYY6CQzD6arg,2009-03-11,4HbEsB78iOfNfVitZhVT6w,5,First hole in one on #3. I'll always love you Vistal.,review,pkxjf3sDPOXO5U8qSBoHgQ,0,1,0 +5yT-0wF-QK_xAnFkymam6g,2012-02-13,PIYswsMSN8jKNfwNWO93kw,5,"I would typically never write a review for strbucks because it is all the same. I mean that in the best possible way as i have come to expct a certain level of service and quality. Starbucks is amazing for kids as my dzughter oly drinks warm milk and so anywhere i see a starbucks i can ge a kids milk. I have had great serive at this location. Since i could not find the starbucks at the asu bookstore location, i am using this review too but really the five stars is for this location. I wanted to give the asu location one star. My barista NOEl today was exceptionaaly rude. She did not know how to make nor ring up a kids drink and when it came up wrong instead of offering to fix it told me that is how it is done. If my other experiences weren t so good with starbucks i would have switched over to petes. If you happen to be the starbucks manager at the asu bookstore location too, NOEL definitely could use some more training in both drink preparation and customer service. + +Sorry for the spelling areas but i am typing on my iphone and havent found the pellchck option yet.",review,AFo7Qm-C4qspc5uDUUKkdQ,0,0,0 +5zrVZnla81bH9eh76d5GVw,2010-12-22,wR7BvZACd4WPpL2NpKhM_w,4,"So if you like to (seriously) cook or bake then this is the place to go. They have all sorts of professional cooking/baking goods that places like BBB will not have... Like the professional Bosch cooking tools (mixers, grinders, etc). + +I can't say much for the place as I've only been there once to buy my mixer... however one of my friends is seriously into cooking loves the place. They also have cooking classes all the time and I think a lot of them are free but are subject to availibility.",review,y7sq26EXGz7XG7DSo8TOuQ,0,2,0 +BvbByaAkIfSYfcX9P5zPgw,2011-04-23,FAyTHykiq2BPP_f4v5hKdA,5,"The place was just your typical stable, but my wife and I had a wonderful experience here. It was our first time riding, so the staff took great care to show us how to mount and maneuver the horses. We then followed a guide through an orchard for an hour's ride (just the right length of time for us as beginners). The horses were very tame, and were easy to ride. The best part of the experience, however, was our interaction with the staff. They couldn't have been more friendly and more helpful. We're excited to go back.",review,QH06_d6pEJHljM4vzJ-Dxg,0,0,0 +Zy2vca7i9QFGRKa4m0C__A,2009-06-03,9yD4TOWlbdk6F1LJYAYkSQ,5,"As a sissy vegetarian, I feel compelled to mention the soup that no one has yet mentioned at Da Vang - THE TAMARIND BASED SOUP HOT POT IS AMAZING! + +I don't know if they use any other animal broth in it, because I am willfully ignorant of such matters. Regardless, if you are a meat eater or a vegetarian, try the tamarind soup, and bring friends. It is super yummy. + +They also have a rice-based soup. And, if you talk to your server, they can likely recommend some vegetarian/tofu based dishes that will be wonderful. + +Everything else is as good as everyone says it is. Wouldn't be surprised if people got an occasional bowl of sub-par pho; every family restaurant makes mistakes. I'd recommend everyone try it again.",review,d2RAl63RTdfZF7kcuKcj-g,0,1,1 +Eq3gzgiRIGYtubbZw1mDlQ,2008-09-14,JvsnVPQaFU8YVkOE-XO0og,2,"The only reason this place isn't getting one star is because the last time I went the chips and bean dip really satisfied the fact that I hadn't eaten all day. Too bad the enchiladas sucked (thick, soggy tortillas???? and beef with too much black pepper???????), the rice sucked, and even the cheese on top of my refried beans sucked.",review,q5nFaw9isjD_01PpVAR7hg,1,1,0 +Zg-C1aYcoR2L5OIrA01MkQ,2009-02-12,BozQJOS97qEXy-3dp4e9ww,1,"One of the WORST experiences of my life. My friends and I decided to go and check this place out as the local radio kept talking about it. So the day we decide to go, the guy from the Colbert report was there mocking the restaurant also. We go in and we thought, ""hey wow, this is kinda cool"" as they talked about monster proportions of burgers and fries fried in lard. However, once the food arrived we sat down and although the wait staff was scantily clad, all of them had ""cottage cheese"" legs and thighs. We sat down, and my friend decides to take their super burger challenge, she said if he finished his 2 lbs burger, his meal would be on the house. He kills it, and when we ask why his burger wasn't free, we could no longer find out waitress and the owner says to us ""you either pay or i come over the counter"" he threatened us with violence, which is stupid as all we were doing was asking what about what the waitress had told us. We will never ever go there again. Being Asian, he also spewed racial slurs at us, calling us to go back to where we came from. ALL of us were born and raised in Arizona so I don't know where we would go. Anyways, don't go here. + +Also, all of the patrons, ALL of them were middle aged men, who instead of paying attention to their wives and kids were hiding away at a nasty restaurant who's burgers aren't even really grilled. the frozen patties from costco are placed on a machine that rolls the burgers through, so you can't even want a medium burger, they are all torched. The fries although fried in lard, are crap. All in all, if you're a lonely loser, this is the place for you. If you're a classy kinda guy that wants REAL food, go to any other generic burger place and you will be more satisfied.",review,DPsmPEPp-TfNDaHiz7czSQ,4,15,6 +XfQelffgasSjLr8DeyGqHw,2007-01-12,cF_Bgtp3mO_TrzJn10unyA,5,"I totally agree with L.C.'s review. Going to XCP made college seem like a breeze. Yes, there were the typical high school dramatics, but I feel like the teachers were able to take a harder line on discipline, since they weren't in fear of getting in hot water with the public school district. I had an overall great experience here, and I love meeting people all over the country that have gone to Xavier. My last flight home, the person in the seat next to me went there, and we had tons of people/things to chat about. It's fun to see where everyone has ended up, and it is fun to get together with fellow alums for drinks here in Chicago, and when I am back home in AZ. I think it is so sad that the girls don't get to do freshman swimming, sophomore dances, or go to dockers anymore - those were some defining moments of my XCP career. I don't know much about other private schools cropping up in the growing valley, but if I had kids, they would be headed to Xavier and Brophy!",review,JoeU6upNzo-GCEFM4Nn1PQ,3,2,0 +M6fjHpkL9IRI-nI0BattRw,2010-07-25,rmpp1NYLbZEDIwiZ5WPbEw,4,"I'm probably at TMI too often. Everybody is so nice, though, and the beer is so good. I have to admit, I really don't eat anything here but the appetizers. And I rarely stray from drinking a pint (or two) of Humboldt Brown. So, yes, I am predictable and limited. Despite my limitations, however, I love this place. It's my ""Cheers."" I am its Norm. + +What rocks: Best happy hour around. Seriously. $2.50 for some of the best brews in town? Although the hemp-seed infused Humboldt is my go-to brew, I've tried the raspberry ale (refreshing without being cloying), and the yummy ""Inebriator"" Stout (which, believe me, will knock your socks off). + +Good vibes, hip decor, comfortable without being pretentious. How can I not return on a regular basis?",review,TCHjDUFtXR8s-UJyfdl1XA,0,0,0 +swR70ahUv5Mp5i6jirJ2IQ,2010-08-06,LIcRAM4tN6hhY39ON6cOLg,5,"I've been going here for 10 years. My relationship began when I needed a bunch of clothes tailored for my first trip to Europe. I needed everything quickly and was very specific. She got everything done in time for my trip. + +Over the years I've brought dozens of clothes. She's done everything from changing a dress into a top to adding bra pads to a cocktail dress. She's hemmed and taken in. She's shortened straps and helped me change out fabric in clothing to create a completely different look. I can communicate anything I want and she'll have it done exactly the way I envisioned it. We've been able to change things so much we sometimes recreate new looks. + +Her prices are a little high but well worth the quality. Every single person I've recommended has been extremely pleased with her work.",review,jlXbohgL1d8Yg4uPY9KOvw,2,0,0 +4F9cOLQUpVB_7H8IksKcNA,2010-10-25,MbiJ_voD5DrIqUlNyCF_EQ,1,"I wish I could give this location a big fat ZERO. + +But you can't. But I can let everyone know how horrible it is. + +For starters, their automatic doors do not even work. I just find that appalling. How can your doors not work on your store? How are people supposed to get in there to shop. + +The manager of this location is nothing more than a jerk. I asked for help and all I received was attitude. + +For a struggling supermarket that filed for bankruptcy, I would think service would be one thing you could promote at no cost. But, not here. + +I don't think it will be long before this location closes. RIP!",review,jAVKFq7iAE_IQYdRT--hiA,1,1,2 +vwZ15OkVO6PemAe87k0M-Q,2011-08-09,fcmL8bEGB9TXyXrZdP8EfQ,3,"A group of us were there for drinks late Saturday night, the bar is really cool, well thought out and decorated. Drink menu, cocktails and draft beers are all exceptional. Only challenge was it was almost impossible to get the attention of the bar staff, I am not sure that since we were a large group and had a tab running that only one batman could serve us but it was really frustrating having bar staff just ignore us! Other wise the place is great........",review,bhETvq4n4oo6aa6w_dSMLg,0,0,0 +_RBUU1y4yJrK0SPAd8z0-w,2012-09-26,_ElIIVS6FSE051k9qKD8vQ,4,came here last Saturday night with a friend. the food is very good and you get a large portion - I had leftovers for lunch the next day. my only gripe is that the naan was a little more burnt/crispy than I like. I will be back to try their weekend buffet though.,review,wUEp87FqOB9ew27Iz6zk_w,0,0,0 +JUlwoai_WikznIEQ7XCENA,2009-02-09,tuCLwDvEJu1Op_tZUKVpeQ,1,"YUUKK!!! + +That pretty much describes this place. We went there on Sunday afternoon for lunch. Only 1 person in line in front of us. I ordered the 2 meat combo, rib tips and hot links...sides of mac & cheese and potato salad. + +...it took about 40 mins to get my food. But I told myself if it was good...then it's worth the wait. But by God it wasn't good at all. The mac & cheese had no flavor at all...i mean none. The potato salad was very flavorless as well. The rib tips would have been good if they weren't covered in 5 gallons of bbq sauce, nasty bbq sauce at that. Their sauce is like a sweet and sour sauce...was not good at all. The hot links were mixed in with the rib tips and covered in the same sauce. So couldn't tell if they were any good, cause there was so much of that damn sauce. + +The funny part was that the couple that ordered right after me, got their food and took it right back to the counter and straight out said that the food was just disgusting. I wish I would have done the same instead of spending $15+ on nasty bbq. + +In short. I will not be going back here.",review,79LOudEmAcxSYVA1SF5Ayg,1,1,2 +AAGO39io2Ko0fgr6BhH-yQ,2012-02-18,6UhpdZkuYcrVwkKpxHtL3g,2,"Maybe the bagels are good, but i made the mistake of getting a chicken sandwich.. Yuck!",review,h3MWqj3CCZdt9yTBKHkOZg,0,0,0 +chFzObJSoxAbVlFfgk5JRg,2012-10-24,HEMXe5SMT-dFmd2-IZPW6Q,4,"First time at YC's, had been to other Mongolian BBQ style places, none as ""upscale"" as this. Most of the Mongo places I've been are in the mall fast food court, or in a small strip mall. This place made us go WOW as to how big it was and all the food you get for about $11 a person for dinner. + +To go boxes are 50 cents, super reasonable considering you can really cram a lot of food into your bowl to get cooked. I was actually shocked that they suggested you pack the food into your bowl to get more space! Staff was friendly and even helped us out with mixing the sauces. + +This place is super close to our house and we will definitely be back frequently.",review,LRJV4PJ1l3B7BdZo1tWruw,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2007-03-08,ERGur9ORKj-ES7neGnQ-fg,4,"Camelback Mountain is a well-known landmark and popular hiking spot. And for good reason. The mountain boasts spectacular views from the highest point in Phoenix. Even though the mountain is easily accessible from almost anywhere in the Valley, it can feel like a million miles away from the city's teeming malls and freeways. + +The 1.16 mile Summit Trail is one of the most popular hikes in the area. It therefore may surprise you just how steep it gets or how winded you may become when hiking it. Just bring plenty of water and don't overdo, unless your path to 15-minutes of fame includes a sheriff's department rescue on the evening news...",review,lC4X2crUuxT9Ac9BlOX4Uw,1,1,3 +xm8F51qKjx0cfdOSukTDng,2009-08-09,14gFAk_31T1zn3Z8g9ZW-w,5,Can't say enough about this place. We were amazed by the room and it's stylings and even more amazed with the pool and the view from it. We were on a mission to chill and found the perfect place. Views of Camelback Mountain and a staff that knew what they were doing. Try the brie quesadillas and the Sanctuary lemonade.,review,h8WBkAyR6fXKBChqmsXbkg,1,1,1 +sYZt3f1YFlg0ycDMyO-vJw,2010-03-25,uUr6meezb22Ig40LtvfYyA,2,"What kind of sports bar doesn't serve SLIDERS??? Nachos, quesadillas, and celery/carrots options but NO SLIDERS??? Guess that just goes hand-in-hand with the NO MALIBU RUM option!! At least the bartender asked me if their fake option was okay first. Hello... no!!!! + +Wait service was crap after a spring training game as they did not have nearly enough staff to serve people. Had to wait 15 minutes in a booth before anyone acknowledged us. BUZZ KILL!! + +On the plus side, patio is pretty cool and the pool tables when it's not a busy time!",review,OksbhhgC71Ary3zNHMypeQ,0,0,0 +jbKVbSz51F8IcewsiRQu4A,2008-11-14,tcboKNNDWS3lVmJehQ0pBA,3,"Do you want to eat Chinese Food in an elegant environment on a Friday night in Phoenix? + +Be entertained by classic, quiet standards being played live on a piano while you dine? + +Are you 50 years old and Caucasian? + +Then the Golden Buddha is the place for you! + +Its in the Chinese Cultural Center Mall on 44th, and a popular weekend spot for Dim Sum. For a DIm Sum starved Valley of the Sun, Golden Buddha's is decent. + +For dinner, though, it is awfully Americanized and not very authentic Chinese. But with a bunch of American customers coming for dinner, what do you expect? They probably think they are getting ""real Chinese"" food by going to the Chinese Mall, but then again, they are used to PF Chang's or Stix normally in their neighborhood, so this is a step up. + +The best thing about this place is the decor, which is clean and nice, with a Hong Kong Junk boat design covering the ceiling from the bar into the dining room. The next best thing is the Piano interludes on weekend nights. The service is next, which is a little overly eager to remove your plate, and the last thing is the food. + +They do give decent portions. I ordered Guo Teh (potstickers) and got 6 fat ones. But they weren't served with the usual soy, chili oil and vinegar, but a soy and green onions mixture. The Mapo Tofu was ok, as they used a nice silky tofu, which was nice, but no green onions, and sliced black mushrooms instead, which I like, but not in this dish. + +Come here for the ambiance and music in the evenings, or on the weekend days for Dim Sum.",review,2rlBbFPHyZjXSFSE8r551w,3,8,6 +_tkAI5Q5XQSfgbqJzDKSDQ,2012-12-29,RVwRifohk5iAh2vNYgmudA,3,"My experience at Old Town Tortilla Factory is probably very different than that of the average patron. I dined here with a semi-private party with 40 other guests and we were served buffet-style. + +Our group was seated in their outdoor dining area, which I absolutely loved. I thought the atmosphere was great and brought an authentic Southwest feel and vibe to the restaurant. The food was as decent as you would expect sharing buffet-style with 40 other people lined up outdoors: nothing mind-blowingly memorable, but nothing too bad, either. + +My one complaint would be the servers. Especially at our single table of 8, it did not seem the server we were assigned was equipped to take care of a large group. There was much unnecessary confusion at the end of the night when it came down to settling some bar tabs. Overall, it did not ruin our experience, but definitely took away from the overall positivity. + +Regardless, I would love to come back here with a smaller group and enjoy a fresh plate of food! The outdoor dining is definitely something you can't pass up...",review,fbxlboEmXOv6TiznpXgdyg,0,1,0 +5kuZhkdpKKu9d_dTflOh4A,2011-12-21,5_uAbm6t-5-k3viakl_TuA,3,"I'll check this place out, despite the whinings of a few.",review,vMR4rbIcpQ3d_inCmlLJlQ,0,0,0 +oJpmYvLibGrYPDvcaUeMOw,2011-02-07,dZiUjwZrAEen4CgNhYvLWg,4,"I finally tired another dish. The Panag Curry with tofu. It was great too. Rich thick curry crisp veggies and tons of flavor. + +One thing I am upset with its the new $1 fee to use a credit card for bills that are less than $10. So get a drink or bring cash...",review,M6oU3OBf_E6gqlfkLGlStQ,0,0,0 +_FXql6eVhbM923RdCi94SA,2009-10-01,3xMVX19Mhxb_JM60gUf_sQ,4,"I didn't really ""get it"". +I was expecting more Island style food, or more adventurous treats. + +* Bar was great. +* Tuna Poke thing was fantastic. +* Cajun burger was terrific, but the bun was too dense and troublesome. +* Chicken CocoaJoe was a bust. Chicken a little dry and under-seasoned, rice and beans were bland (needs a giant ham-hock and about 3 more days). The Plaintain was overflavored, but underseasoned (they don't neem much more than salt and time). + +Awesome location. +Menu will expand I am sure. +Repaint the bathroom please.",review,CWYHXKPXqP4KgY3TyI54lg,0,2,0 +nDHyino_t7O94ZzRHGUApw,2011-03-13,Ie3mRf8R25KMrg3AZGIfYQ,4,"I don't usually shop at AJ's unless I am looking for something very specific that I cannot find anywhere else. The item in the past has been canoli shells. I like to make home made canolis occassionally but I am never daring enough to make the shells. I can never find them anywhere other than AJ's. I would say that if you are looking for something special that the average grocery store doesnt have, try AJ's. They are a bit expensive though so I would go here as a last resort. Now normally, I would give this place only 3 stars, however, yesterday, I discovered their dessert counter. OMG, I was in heaven! I knew they had cakes and fruit tarts (which btw are outstanding although 30.00 apiece), however, they also have a vast array of mini gourmet desserts for when you have a major sweet craving and want something special to satisfy it. Im talking mini carrot cakes, mini fruit tarts (yes!!! I dont have to pay 30.00 whenever I want a tart from them), mini tiramisu's rounds, brownies, canoli's (WTF?) and even mini creme brulees! Additionally, they have home made chocolates which looked equally delicious. I opted for the tiramisu which was not only tantalizing but light, creamy, and honestly, one of the best Tiramisu's Ive had in awhile probably since the wine train in Napa. My best friend said that her praline chocolates were very good as well. I got a brownie for the hubby which is enormous and I will post an update once he tries it. What's even better is that the mini desserts are really reasonably priced so if you are looking for a dessert for someone to celebrate a birthday, anniversary, whatever, this is a great place to go.",review,mlBC3pN9GXlUUfQi1qBBZA,0,1,0 +-yxfBYGB6SEqszmxJxd97A,2010-04-14,6WX3nATO26tqd8NhQivvLQ,5,Always a marvelous experience. The patio area is simply lovely if the weather is permitting. The menus are always excellent and they have an excellent staff. The cheese plate is always great to start and the servers will help you pick a good selection of cheeses and suggest very good wines. The food is always very good and also unique -- rabbit is one of my favourite proteins they prepare here. I have been there for Valentine's Day and also for our wedding anniversary and the always make the evening special. It is pricey but worth every penny you pay.,review,RyKKn7lV7StxDngkGt_6_w,0,0,0 +vH_WlMNtzx7Dq6Li5ecWEQ,2010-03-02,YRLKAGlfuIULco4PTZnLqA,5,"I just stopped in tonight after the gym, I was a bit stinky and what better way to fix that than 16 bars of soap. + +It was late 8:15 when I walked in :15 before close. This is a great time to shop when you are in a rush. It was empty, and the lines were short. + +Despite benign the end of a long day the low turnover staff was great and personally recognized me and greeted me.",review,M6oU3OBf_E6gqlfkLGlStQ,0,0,1 +47A3pWsdYNhFFy9gUEVcYQ,2011-02-07,MtQM34pRalH-Uk5-vPC8QQ,5,This place is so good! I have eaten almost everything on the menu. It is not the fanciest of places but it is great to go with friends and buy a ton of delicious food for very little money. I would recommend this place I go often.,review,mliMzOBpJEWYZ7Sn_pBPjw,0,1,0 +qiFTZ7aJz-FXt1wz8YigAA,2011-05-02,17LymRTNTAyGS9mFKFJncA,2,"We got an online coupon to try this place and went on a Sunday around 7pm for dinner. The decor is very cool-neat floral booths with plastic overlay, beer taps at the booths, amazing mural on the far right wall. +We both enjoyed our margaritas, which for the size were fair on the $8 price tag. +The food was tasty, but not original. We ordered the ceviche app (which we liked the best), the mushroom tacos and the house salad with shrimp. Although our waitress came back and informed us that they were out of shrimp so we opted to try it without as there aren't too many non-meat or fish options on the menu. The smashed plantains and pumpkin seeds were a nice touch in the salad, but it was lacking something special. +I can see coming here for happy hour or for a fri/sat night drink. They had a DJ booth which was cool, but (and I may sound old for saying this) it was just too loud for a Sunday night dinner.",review,y5_vrqIylhXMrejM_-x_vA,3,4,2 +_BO7_ulfZdLbknZBc1Tj0Q,2012-04-25,lVCshRbtkBRY0vdYY4yyWA,1,"I'll start with the positive. They have some friendly members of staff. That's it. You might catch a staff infection here, so watch out. It's like a shack that somehow got a bar licence. I have a friend who drags me here on occasion as it's his favourite dive. It's one wrong glance away from a fight, every time. If you like the danger and excitement of drinking a beer in a building that may collapse on you, go for it. If not, avoid the dregs of society and go somewhere else.",review,LtAXYqKkZS7IEzOXqS6j3g,1,0,1 +90AXjqb4O-wrTHDKDoDUzg,2008-09-01,eyeX5HXBXZAmfJfuC2l7sg,5,"The new location is big, open, and a bit more like a dinner spot rather than a mish-mosh diner. But that's just aesthetics, I realize. + +The food is great. I had the pad thai and tried one of the duck dishes. I'm not a huge fan of duck, but this was nice and tender and the sauce was amazing. Whatever sauce it had on it was composed of peppers, mushrooms and ground pork, if that helps you find it on the menu. The drunken dragon is also fabulous, and at $7 for lunch and $10 for dinner, Yupha's a steal. I just finished the other half of my pad thai a minute ago. Yum. + +I think it's my favorite Thai in the greater campus area, but then I thought about it and, isn't most of the good food in the Phoenix area in the Tempe area? I think so. + +Anyway, Yupha is one cool lady and you can tell they're trying hard with this grand opening. A little ass-kissing is nice, but then again, places like these are for regulars, so I guess they don't have to be overly nice to me. I'm just here to grub. + +EAT HERE. And ask for twice the spicy you would normally. The medium is not spicy and the thai hot is medium.",review,dWwaTl_Fmvl8djX0bVVTMQ,2,2,1 +BLgkoO4MKq00V2o9jOf5zw,2012-10-29,OjIQzKRtaGMX3DFArLSmBw,5,"This place is too freaking cute!!! The OJ is literally one of the best glasses I've ever had. I had the typical eggs, bacon, and toast and it was amazing. The bacon was crispy without being burnt, the toast had just the right level of buttery goodness and the eggs were folded such as a crepe and fluffy goodness. I also tried a bite of the pulled pork burger which was amazing, and the touch of apple put it over the top. Another plus was the garden patio area that feels homey like someones backyard. I will definitely be back to this cozy establishment!",review,YK2rodQfBU2Oe9H6jmlTFg,0,0,0 +GaeokhqmZYuPr7i1EZtnHA,2012-07-10,BRNy8KTrMa-MzYDotZuSbg,3,"Great tourist fare. When we have family in town that appreciate a 32oz porterhouse more than a delicate sashimi, this is where we head. It is quite the drive from Phoenix, but portions are large and service is always prompt and friendly.",review,qeVLQCePbacAwFL9mBaRbQ,0,0,0 +trAvQPp7gps0Btk-2AmLpw,2008-12-23,ts_AFOdE6cMr9I8DnzqrxA,2,I don't know how this place stays in business. The menu is so limited. Would you like chicken or chicken? Chicken in a pita? Chicken on some lettuce? Chicken rolled in a tortilla? And the pita chips are bland! Yuck! And the potato salad has something in it that is way too tangy. I've only been twice and tried different dishes both times but I just don't get anything greek about this place.,review,5mnhUiRWi-q6nX7TkicE2A,2,5,5 +V6BYjHM9SnXscfkln3hCdA,2010-10-29,ddPclyIcWY_zT9H3zX80kA,5,This is a great relaxing spot to stop for breakfast. The food is always amazing and the atmosphere is something that will send you into the right mood to enjoy the rest of your day. I wish there where more spots like this on the civic center park it's such a great location.,review,I9gjrh4nnrlp78nxEfIntQ,0,0,0 +YKOvlBNkF4KpUP9q7x862w,2012-04-03,iHIY4wvrRJ6bBkUXs-2C1A,4,"The food and cocktails at this place are amazing - beyond comparison. I have not eaten one bad thing off of their menu. I am not a margarita person AT ALL but my friend insisted I try their primarita (essentially a skinny margarita) and it was amazing. Probably what all margaritas are supposed to taste like. I crave them. + +Their guacamole is phenomenal - fresh and made right in front of you to your taste. You really can't get any better without going to Mexico and eating at at a mom and pop restaurant. The pork shoulder is great and the skirt steak is to die for. This is also a great brunch spot - the green chile chilaquiles are outstanding. + +They are on the pricey end but their entrees are shareable. I love the dark, candlelit ambience. Perfect for pretty much any occasion: date night or bachelorette party. + +Cautions: it seems next to impossible to get a weekend dinner reservation between 6pm and 9:30pm. I don't know if these are blocked out by default on Open Table. Your best bet is to make your reservation well in advance and call them directly. I have never been to this place as a walk-in for dinner. Service has also been hit or miss. I seem to get an excellent server or a really bad one.",review,dvu9jhoAg88OIKRxuaTKpA,0,2,0 +jkULHBAZBM3s5DQJkM-6RA,2011-10-27,_dJQfEtgn9A1OOHEgDNmvg,5,I found this restaurant when they were located in Buckeye. I have tried everything on the menu probably more than once and have never been disappointed. My favorite is the Red-Chili Frybread with cheese added. The service is excellent there. You always get treated friendly and with a smile!,review,wvSoHwvcMaZop922gaxwrw,0,1,0 +cc9KFNrcY9gA7t9D1a3FpA,2009-07-27,OyeCwTBytSU4f6-j7GI2yA,3,Not a bad place. Pizza was good but stay away from the wraps as the flatbread wasn't meant for that.,review,DN5GgGgpr4Fy7TFe41QLrw,0,1,0 +EQxR8CKkKSmHW0fgtqVosg,2011-05-29,HLJqO3AVz_7xJkS0KkpA1w,1,Like watching a train wreck in slow motion will definitely be going somewhere else for bagels from now on disappointing have been going there for years. The eight day old cream cheese was a nice touch (yuck!),review,Ok25QJsvVz04sK2dw5Mksg,0,0,0 +bU4ZRr07Y6DFayPK3kKFsw,2012-07-25,8snYIT32wPSq2b6n8NH4nA,2,This place has not gotten any better over the past 10 years. The service is still bad and they are always running out of food and the food isn't that great either. Will have to say that I will not be going back to this location or the one off of Glendale and 19th ave.,review,11WMiRoB2sQxo61aJdSg6Q,0,0,0 +mkOgGgniAgOng1s7tjhMrA,2012-02-02,VOnAZMeKz15AYQxaJSu8dQ,4,"Really great finds. Helped me stock a vintage 60's bar. Ron is very helpful and knows where everything is in the store. Great at finding knick nacks such as distressed wood, door knobs, irons, kitchen wares, etc. Something for everyone.",review,vDpNMIiwVIBmO8kbucC7oQ,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2008-05-11,UOv5FwBa7h4zUoJLL7927Q,5,"Unfortunately, my birthday always falls right around Mother's Day. Which means that every time I want to go out to eat for my birthday it is packed. We thought we'd celebrate early by going on Saturday, but it was still packed. We called ahead and the earliest reservation was 9 PM, but the person on the phone said that if we just came down, they would fit us in. + +So we sat at the bar for maybe 20 minutes (IN YOUR FACE CHAIN RESTAURANTS!!!) and our beers came with a small appetizer of cheese and salami. These people think of everything. And the wait staff is pretty damn attentive. The hostess heard me say something about my birthday, which was passed on to the waitress so my super huge and yummy meal ended with a delicious dessert of my choosing. + +The bread and relish tray would have been more than enough of an appetizer for me, but my partners in crime also wanted the spinach artichoke dip, which was soooo tasty. My steak was SOFT but cooked exactly how I like it. These are true professionals. Asparagus was cooked perfectly. The chicken pot pie soup was exactly what I expected and so yummy. And the dessert? Triple creme brulee - kahlua which tasted like a caucasian, chocolate which managed to be super chocolately but not too rich, and a mixed berry that would have been fabulous if I was a normal rasberry eating human. + +Yes, it's a little pricey, but you easily get 2 meals if not more out of one dish. Especially with the yummy bread and relish tray that is also presented before the meal. The atmosphere is cozy and a little crowded. If you are wierd about personal space, this is probably not the place to go. + +Overall: I love this place and go every time I get the opportunity.",review,SBbftLzfYYKItOMFwOTIJg,5,5,1 +9x0rvR9SSX5mO1vUqx_hnQ,2013-01-04,BB_obI2gx8zUQQrGxhKsFQ,4,"It has been quite the challenge to find good Chinese food in AZ. But I love this place. From the customer service to the quality of food, we are never disappointed. I am a huge fan of their fried rice and wonton soup. My 5 year old loves the sesame chicken, and their beef skewers are good. We find that the best value is either the dinner for about 19.99 or getting the food to go. For some reason, we get more to-go than eating there. But either way the quality is good. The servers remember your names and family. They are genuine provide great reasons to return. We eat there about every other week. If you want to try them, go lunch. You cannot beat their prices.",review,9EVx_OlZwFmen6KmHHIGpQ,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2012-03-03,EVAddATvNqUFEZBaCMHukw,4,"We went to downtown chandler to walk around and we took our dog Buddha with us since its a great outdoor area. Well we decided to grab lunch and saw that Santan Brewing had a great patio that was dog friendly! The server was very nice he even brought water for Buddha which we greatly appreciated. I ordered the Cochinita Pork Pibil served with rice and black beans, it was super tasty the pork was moist and tender and the rice and black beans had great flavor. John had the Fredo Shrimp N'awlins and wow it had such great flavor, it was a new orleans style pasta that had a cheese based sauce with a kick! The portions were very generous and we didn't have to wait long at all. Overall we will definitely be coming back!",review,ghoBw5923PH-03Rly2hRJg,0,1,0 +90EMYSgCnZvW2wOH2M8j2w,2010-02-26,HNqonQQQGi9u8YgvvKdTdQ,2,"So even after staying here, I still don't know the real name of the hotel! It's something like Hotel Tempe/ Airport Inn-- InnSuites... with the word Boutique thrown in there somewhere. But, the hotel is NOT boutique... at all. + +The price was great--as was its proximity to places of interest--and this is why we stayed here. But the free internet and breakfast was not worth the inexpensive price. I would definitely pay more to stay at a nicer place that feels a lot safer. The hotel is neighboring a strip club and the acoustics are terrible. We experienced this fully when our neighbors next door got into a huge verbal altercation at 5:00 AM, where the police were called :( not fun. + +The staff are friendly, but the hotel feels like it is under new management or still opening as everything is very unorganized and unfinished. The lady would not give me a printed receipt for our stay. Another example: they have microwaves in the rooms, but not microwaves safe plates to use. A little strange? There is a Residence Inn down the street with similar amenities that I would be willing to try if I am in the area again.",review,lTyX2QAWiGda3HQLZkS9xw,0,0,0 +Sqr_te9U9Y6RpnmBx0iYNg,2011-07-24,c4bT9tmkLK4KaBR8OxInzg,2,"This is a top sushi joint? Really? I had kinda forgotten what less than medicocre sushi tastes like. Most conveyor belt places serve more flavorful sushi. + +First of all, what's with the mayo on everything? Rule of thumb: if it has mayonnaise or tomatoes, or if it's cooked and lacks an exotic name like ankimo, it's probably not real sushi. My tekkamaki had a funny color and sour taste to it and for goodness sake, why can't they call it tekkamaki?. The scallop sushi was not very sweet. The softshell crab roll was greasy and without texture, not to mention the white mayo-laden crab salad that accompanied it...shudder! This place averages 4+ stars on Yelp. You're kidding, right? You people must not get our that much. Whats the criteria for a 3? It stays in your stomach?",review,R75rQfzSeXzO9LVh0MFjJg,0,0,0 +JhupPnWfNlMJivnWB5druA,2011-10-21,NUBVYfBsSPshgpcWtOnFhQ,3,"I always said that my last meal on earth would consist of the AZ88 Chicken Sandwich and a dirty martini. That was until I went there again the other night after a couple year hiatus. The magic, was gone. I was so disappointed and sad that it wasn't as memorable as I previously remember. I will go back and try something else because I didn't have a bad experience and never have. + +I recently sat at the bar and had 2 different bartenders. Both were great and entertaining. And, it doesn't help that they poured a strong and delicious drink. Get a martini!!",review,8B5pqCDFglMvfW7qj5W8TQ,0,0,0 +pONHXroA2O7grj5iZ7dksQ,2011-12-27,Nc2N_IHswh70gTIGeSu6Qw,5,"We were here on Wednesday, 12/21/11. We had been at a Rubios in CA recently and was extremely disappointed. Not this time! + +Jacob was our order taker and was VERY courteous and professional. + +My husband got two fish tacos that were a good size and yummie. I went with the grilled veggie burrito and man, it was huge and tasty! + +This is what Rubios is about!",review,wWTPOKaUgcB0z6uWZOqpLw,0,0,0 +0vzZ_Bcb02rJljeMU9XkBw,2009-05-30,F1OpDFuXYiK5LIS1Ghhnmg,5,"This place is the best place I've found so far for sushi in the Phoenix area. The wait staff is always attentive, the sushi isn't overpriced and their specialty sushis are actually good. They stick to the basics, and don't veer too much into the west for their ideas. The plates and silverware are clean, which is more than I was able to say at a different place I'd tried. The sushi prices are similar to other places I've seen - except you get 3 pieces, not 2. They don't stick too much rice in the rolls. The pieces can sometimes push the limit, but most are manageable. All in all, this is a great place that I will come back to time and again.",review,d0wJVf7Gv7v1B-HHYhxZtQ,1,3,1 +2fAbmJQxsV-DBHLRQ75O6Q,2012-12-13,rXUWPTbFMA5_W4fGsRhT_A,5,"This company is Awesome!!! I was recommended to go here by a friend and was hesitant since it was my first time going to a salon. I was extremely impressed with how welcoming they are and how dedicated they are to making your experience unforgettable. They gave me a facial massage treatment thing that was out of this world. The entire day I walked around with my face forward and could not stop talking about how great I felt. I will be visiting quite often. Thank you so much! +John Paul D.",review,hfgzp4Gb0ssUHZD-6pjMHA,1,2,1 +NYIyTj2AZJpAo7XIM-Z7lw,2011-09-08,Z4LDLAScw3lissrx9DQxXQ,4,"There's different kinds of Mexican places around. + +Type A: Pseudo-Mexican fast food (Taco Bell, El Pollo Loco, Del Taco, etc.) + +Type B: REAL Mexican fast food (whateveri-berto's, Baja Fresh, Rubio's etc.) + +Type C: Various traditional taquerias (Los Favoritos, Rivas' Mexican Food, etc.) + +Type D: ""Mexican Denny's"" or chain-type sit down Mexican Restaurants--traditional-style or not (Chevy's, El Torito, Macayo's, etc.) + +Type E: REAL formal or semi-formal Mexican restaurants (I don't know any in the Valley yet, but in the Bay Area there is the now closed La Michoacana in San Mateo, CA, etc.) + +Valle Luna is a Type D, and a pretty good one as well. Delicious traditional-style Mexican food. The interior looks like what you usually see in a Chevy's or Macayo's. It's visually pleasing, and service is friendly and helpful. They have all the beers, margaritas, and tequila that you usually find at places like this (you know what I mean). It's the kind of Mexican place you take someone for their birthday--exactly. + +Do you check in to places on Yelp using your iPhone? Come to Valle Luna! Show them the check-in on your phone and you get $5 off of a meal costing $20 or more. Perfect for lunch with your co-worker. + +Valle Luna means good Mexifood. If you're in the mood for a Type D, bypass the ""Fresh Mex"" and come here.",review,IGkoathSlJmIOBDGo9vUZg,5,7,5 +h762dZ33uhSKtLZ-21u6Jg,2010-08-12,U8kEzlPZ0yvMdO0HrZ6QCw,3,"A very nice pizza. I haven't made up my mind which is more authentic, NYPD or Ray's. Both, have the thin NY style crust, but NYPD makes me feel like I'm waiting for an E train to Queens; whereas Ray's feels more upper east side-ish.",review,1BW2HC851fJKPfJeQxjkTA,0,1,1 +svFHdh6ahq52dWxGqOMMsg,2009-06-17,sUE2sWcJ6fBz4_vvCT7wKA,4,"I'm going to keep this one general and not too detailed; we all have to keep something private from the rest of the Yelp world, right?! + +I will say that last night after the Ignite event and post Ignite event, Jared and I stopped by this Fascinations store... we were pleasantly greeted by the staff but since we were not looking for anything specific, they let us wander and be 'fascinated' by all of the sex toys, party favors, under garments, games, videos, and more... (they do have a decent selection!) + +Not that I go into these types of stores often, but when I do, I like having the comfort of being with someone I am close to and/or not being harassed by the salespeople. (Yes, I'm shy, what can i say?!) Luckily, I had both of these things during my visit last night. We did make a few purchases, and I even tried to sneak in a package of 'nippies' since J was paying. He caught it though, and decided to take those off of the bill (they were $14). I thought they would be perfect for getting a nice tan line - I may have to return to make that purchase on my own! + +If you're in the market for anything that you think Fascinations may carry (and believe me, if you think they do, they probably do), go pay them a visit! Enjoy and remember to practice safe sex!",review,fczQCSmaWF78toLEmb0Zsw,21,18,19 +EWMwV5V9BxNs_U6nNVMeqw,2012-07-27,lsUBxzQ0UtIVozMCwfK3Pg,4,Great food! The FEZ burger is a real winner. The staff and clientele are friendly. Great place to meet people for drinks and hang out.,review,ACAXB8aI4DxKD8tUYCc3gw,2,2,1 +QKGZajo_Xm6AW3lHkU9Mmg,2012-11-13,L2NIFHpkykMg21g-a7lOpA,5,"This place does it right, but hold on to your walet! U have to try the Yellow butter cake, its over the top.",review,4df7r89VQLe2U4FWPvOeiw,0,0,0 +Oif-dEqMVS3ee_p5ZhYyqA,2012-02-19,MMlK0ve7rGjZ8nXFSNM4Zg,4,"Very good battered dipped fish, cole slaw bland, fries came barely warm. Service is fast for crowd, very nice and friendly staff. I'll go back for the fried cod. Did have to exchange coffee cup. It had some funk dried and stuck to the inside wall.",review,ogarUFxySoD9nF5aPx2XWQ,1,2,0 +WiAY7lyT-DC7Zk3StMMp0g,2011-09-10,SaSnGdY60ibecazmK31NNA,4,"Not a bad visit. I regularly visit the Location in Columbus, OH. I have developed a certain expectation as to the type of service that should be implemented in this concept. Compared to Hooters, this place will eventually put Hooters out of business. The food is consistent and delicious. I am a huge fan of the shepherds pie and Quinlans 5 cheese pizza. The service at this particular Location was a few notches below the service provided at the Scottsdale and Columbus Locations. The servers seemed under trained in how to communicate with the guests. That preferred to fraternize amongst themselves which was the only fault that was noticed. The place was clean, restrooms well maintained, and the food was expeditiously served. Prices are a little high but who are we kidding, commodities are up everywhere. I will always stop by when passing this concept. Compared to it's competition of sports bars it is among the top of the list.",review,Rwj_uBFy66Uxzq9GHA_Ayg,0,0,0 +h762dZ33uhSKtLZ-21u6Jg,2009-03-16,1bnJhTIy1DAPQXsVJ353aw,4,"Had the thick crust Sicilian pepperoni 3/14/2009, took it to the drive in movies, and while it was expensive (23 bucks), it was worth it! This baby could feed 6 people, and it was pretty good as well. I wouldn't get this on a regular basis because of the price and the calories, but I think its the best pizza they have.",review,iBO2m9xXivsIbvFnZHsNvg,1,1,1 +5Feaj6aixO_QxKFnkHf3xg,2012-03-28,ExR82nFB6qg5xvc9kU0bnw,4,"Stayed here with my girlfriend for a Radiohead show and a get away weekend from work. Got the hotel for the amenities which were great, we played tennis, enjoyed the fantastic people watching at the pool, great cocktails to include the Tequila Sunrise, and some light putt putt outside our cottage. The room was not ready when we got there so we got a cottage which was supposed to be an upgrade with a semi private patio. The room was actually very nice and had a great tv which we might have watched for a grand total of 30 minutes in 4 days. Our room was made up between 4-5 each day that we planned to stay there and then on the day we plan to check out, they came by at 8:30....not sure what the problem was there. We also had to call about our A/C after we sweated the first night but it was fixed and no problems after that so maybe it was just a glitch which happens. You are probably wondering what if anything was wrong, the only issue we had was the concierge.....nightmare, no help whatsoever. Called several times, both girlfriend and I and got the reply on two separate occasions to just check google. I have stayed at less nice hotels and had much better service with concierge, this hotel should realize what their clients might be interested in and do some research. + +All in all, great trip and a nice and above par stay. I would certainly stay here again if I can get my girl to go with me!",review,vt0y5E2LUFeG0_PZ1b3d_Q,0,0,0 +RZS7pdeB3xOyHwYgT7VYGw,2012-08-12,gdqdr3ZcL_oMxSYuPLl4Zw,5,Amazing selection of beers with great tabs educating you on them and often ratings. Wine and booze selections are great too. Killer store like candyland for adults. Prices are excellent and so is service if you need help finding something. Great place!,review,omoEjYFKVV7e-DtnezeUOw,0,0,0 +CxeEW32ufIL3k4fMW1Zg3Q,2012-01-28,_2irBRNM0-wg3ss8UDtciQ,5,"Just have to rave about Becca and Todd's Zoo tour on a Segway. It was the highlight of our trip to Scottsdale. I had never been on a Segway before but it was so easy and Becca taught me all the tricks. We never would have visited the Phoenix Zoo if it was not for the Segway tour. It was fun, easy and worth every penny.",review,EG1CvRUKbP3Gh82sztMKyQ,0,0,0 +fP-BPL6iRu2tbcvlnjRshw,2012-12-28,dkcWEpXAeiqvus3yyAzLAw,4,"Live music, plenty of beer on tap, and a very happening place. This place was packed with people however with a group of 6 we still found tables and chairs. + +I enjoyed some beers on tap, but wanted to try some food so we ordered the Copper Blues Burger. Very good burger, fresh tasting and the bacon and cheddar hit the spot. The fries are good, which I normally do not eat at all. + +Nothing like enjoying a nite out with friends. Live music, great food, and plenty of drinks and beers on tap to enjoy. We all had a great time out. Service was great and everyone seemed pretty friendly there. Great atmosphere here.",review,SEDFpR4oMPKqXMjbJiMGog,4,5,1 +q-qjZDKcBdDRuIUxj7b97g,2010-12-23,7zQIbZPUPfHBcRazUV-pjQ,4,"Great Thanksgiving meal. I had a similar meal at Busters on the Lake for cheaper last year but that doesn't take away from the good spinach and sweet potatoes. Good service, good bread, good view...",review,o4CAGmcD-voehPNOb5tLPg,0,0,0 +QkyN2vqQidQhotvOtPIrkw,2012-08-09,v2HYxvgDqne6iq2SAKyLuw,4,I love the Humble Pie on 7th Street. Great staff who always remember us and are very nice and attentive. The food is always good. One of my favorites is the burger. I know the is strange since you wouldn't think of Humble Pie for their burgers but they are fantastic! Also love the tempura green beans and the veggie salad! Drinks are great too. My favorite is the Pomegranite Martini which I have to limit to one per visit! They have a great happy hour and a super relaxed atmosphere!,review,yZEz7ZHDt9MU7ehH9ecCQA,0,2,0 +WowrRUKvjiLX4zT12xU_yw,2011-07-20,5Ytbypu4GBiZEG_lf-G0CQ,4,"Smaller than the Chandler location, but definitely a great place to find bargains. Come here prepared to do a bit of digging (especially in the shoe section) and expect to wait in line.",review,9zp_JEmUScBI1lx9RuxGiA,0,0,0 +GVg4GHHRblwY1MFlV1ubAw,2012-09-24,LI1em8rbUaQvCc2vj7Sp-A,4,"My daughter has been attending Gold Medal Swim School since February. + +The instructors are great! They always take the time to say hello outside of class and they are very caring. + +The class ratio is fantastic - with a max of 3:1 in each beginner (Starfish) class. + +Currently the price is $72/month, which includes 1 class per week during the Spring and Summer and the ability to schedule unlimited classes per week from October-February. The school also routinely sends emails for a free class when there is same day availability (usually with newer instructors). + +The only reason I am leaving this at 4 stars is that my daughter has struggled with swim lessons in the indoor pool because some of the sky lights are not covered/filtered. She is very sensitive to light and I am concerned she may not be able to progress with the way the skylights are currently. Only time will tell! + +The management at Gold Medal is top notch, which is probably why they retain such happy employees! + +Overall, I am very pleased with Gold Medal. And, yes, the owners were Gold Medal Olympians!",review,64YY0h0ZAR2nbzxbx0IwJg,2,3,2 +zWl6V8-L6m9Xfmpq_MqkKw,2009-08-30,lvwxXZKlIxK_AGpWHFlwLQ,1,"Absolutely disgusting. I had enchiladas and a taco, just to give them a chance. This was the worst mexican food I've ever had. Waaaaaay too much government tasting cheese on the food, and hardly any meat. I do have really high standards because I grew up on Tex-Mex but this was just pathetic......",review,uZ-vivMs1ShNceIqsfhBPw,1,0,1 +AW1uq13zFslTBoD6vL99Bw,2011-11-07,Kj7RbTknAWYtEoDWxrg7ew,4,"We'd heard that this place was really tasty, but learned that the original location had shut down recently. We found their second location and gave it a try. + +It ended up being so good that we went twice in one week while visiting the area. We had a chicken quesadilla both times and on one trip added a large nachos with chicken. Great flavor, good-sized portions, good value. + +Would have been a 5-star rating had our server not forgotten our drinks and had the restaurant been cleaner during our first visit. We were directed to sit anywhere we liked, but it took us a while to find a clean table even though there were only two other tables occupied.",review,hLU5Od-sff-BXigMYm2rlg,0,0,0 +2dJ_UPPCpcjo5JeYPnjaYw,2008-08-26,75NhZ5Wf1UN7o7v1UsnfdA,4,"I really love their sourdough bread. I get the veggie on sourdough and really love the taste. + +Drive through line is a little long and sometimes the bread hurts the top of my mouth, but this is my favorite fast food place. + +OH.. the pizza is great too! I always get cheese with jalapenos. The bread they use for the crust rules. + +Indoor and outdoor seating. Staff does not speak English very well, but I have never had an issue with my order. Been there at least ten times.",review,MWt24-6bfv_OHLKhwMQ0Tw,0,1,0 +hfl62LX14YqNpG0g0Tj6_Q,2012-05-31,r7p_sGv5K1tRPA3lfgIlng,5,"Fabulous! This was my son- in -laws Restaurant Week choice and an excellent one. Lots of menu choices, a drink included and excellent service from the moment we arrived until we left. We will return soon and often.",review,rL-OqUZbMwKUKuUHasBU3Q,0,0,0 +wNsmt1hF1uv3YvbwXZMAoQ,2012-05-03,52bR56y1BntpDh-AQEqkiw,4,Great addition to the Indian School corridor. I love the location along the canal and the patio has great views of Camelback Mountain. There is an extensive beer list and the drafts are reasonably priced. The vibe is very cool and the bartender was extremely friendly and helpful.,review,pEVf8GRshP9HUkSpizc9LA,0,1,0 +Bjt3rB73dvSDe1XEPEWc6w,2009-08-07,2_dHopH9x1zi8X9axgwWHg,4,"Confession of a landlocked seafood lover: I'm a fan of Sakana. I know, I know, it's not the Most Perfect Sushi Ever but all things considered, the prices, variety, specials and service are far above average. I'll take it! There's a great ""Customer Appreciation"" sushi menu offered Thurs.-Sun. and though there's often a wait, it's a quick one. Don't be afraid to order an Ichiban in the lobby. They'll happily deliver.",review,7i14F52gOUBqlRudUCwPsA,0,0,0 +IWwt0vm8lYbVoyGSPd2Z9A,2012-05-07,chgNRxKwSmSnbLHbXN7B3Q,3,"Just OK. But like pizza and sex, there really is no bad BBQ. +I think there is something lost in translation from its Texas roots to AZ. Gone is the appeal of the gas station dive. Atmosphere feels a little phony in a pretty, new building. The biggest problems I have with the food is the overpowering mesquite flavor and mediocre sauces. The Texas roots explains the loyalty to mesquite, which is understandable and you cant fault them for staying true... but a little hickory or less creosote-tasting smoke would be nice for a non-Texas palette. The sauces seem a little amateur. I know Rudy's is no amateur in the business, but I think they settled too soon on their signature sauces - they taste like the first ones I made in my backyard. If a true amateur (me) can evolve into better sauces, so can Rudys. Now I need to stop at the new BBQ joint next door to see which one will get my BBQ dollars... stay tuned.",review,QPYhhRExQX4f1fhoNsTw6Q,0,4,0 +JZJqJadk9pSoCGT7VTwBvg,2008-04-02,hQ1SdNcpf5okNhco2MyWQw,5,"Oh Rhythm Room, how I adore thee! + +I have seen some of the greatest Blues legends play here and have never been disappointed. Whenever The Rhythm Room All-stars play, I definitely try to make it. They are rockin'. + +I dig the dancing, the bbq (mmmmmm) and I enjoy when the f*ck the police guy is roller skating on the dance floor! + +I do recommend getting there early if you want a table and a chair. For bands I really want to see I get there before they open, get in line, get a table, then someone in my party goes to grab us some bbq and we start drinking and eating and waiting for the music to start! + +I always have a great time here! And now that you can't smoke it's even better!",review,Wy7f9DOuBEOenhnA7KIKoQ,0,1,0 +AgJbkqR-wre409if4fTbWQ,2012-05-09,lyVcqcmA23jqSxMXod_Vuw,3,I was here for a business dinner recently and loved their new hummus plate. They put grilled zucchini on it and had some fresh jicama which was awesome. I wasn't in the mood for BBQ at the time but so I ordered a turkey burger which came on a whole wheat bun and some steamed broccoli. I love the healthy options. Thanks to Red Robin for helping to fight the battle of the bulge. Just make sure you bring lots of will power when come here because it's easy to blow it...especially with the desert menu!!,review,lAngRi4lwBIHmjCBVLd-8Q,0,2,0 +UxvOXcoCRFRAVhRB0D9imw,2008-02-24,FbAGK5T8Ks-YHP2YaOCIHw,5,"Very good place for breakfast & lunch tucked away in the crowded shops at 44th & Camelback. I kinda found this place on accident. I meant to just run into AJs and grab a salad to go, but was forced to park basically across the driveway from Taylor's, and, being closer, I opted to go there instead. + +Taylor's is open 6-4ish (I couldn't really tell, they probably just changed the hours and scratched off the hour number on the door), and they serve breakfast all day- well, all day they're actually open- which is always good with me. + +I was in the mood for corned beef, and , bingo, there it was. Nice mound of lean tasty beef with melty cheese (no saurkraut or thousand island, please.). And the bread- oh the bread- grilled to be crispy on the edges but still soft inside. How in the hell do they do it? I don't know, but I'm in love.",review,4zinPJ38-WxjPPomn7CPAQ,3,3,2 +peA3F-PnIfijYr8HuG-A-Q,2010-12-30,hG5zbjZZ3YYG5dTz0_S2AA,4,"Considering how douche-y it could be, it's really not that douche-y. + +Drinks are expensive but prepared right. Service is good. The seating is comfortable and the atmosphere relaxing. + +Note to the single guys wearing chin-strap beards and Affliction t-shirts while looking nervous and sitting at tables alone and not approaching women: Try ""Hello"" or ""Nice outfit"" or ""Those martinis are great, aren't they?"" or something. I'm old and fat and dress like I'm teaching a fishing class, but I'm not afraid of girls. Just talk to them like they are people.",review,nDBly08j5URmrHQ2JCbyiw,2,2,4 +Gw8DsQQCO5m1hggXqwynFg,2009-08-29,ZAl_aYiWtewOAUZxOGMSCA,4,"I'm apparently not as big into Greek as some of the others have posted, but I can honestly say anyone who's given this place less than three stars probably just expected too much. I had the best Greek salad that I've ever had, and I will agree with one review that it was definitely too light on the feta. + +The service was great, food was excellent, and while it may have been a bit on the pricey side I felt as though it was a great value. Not one of the places I would take out-of-towners and rave about, but a great little spot to hit for lunch.",review,iEuLOmNVXgwrn1fkqRedsA,0,0,0 +ufKmcpK6OTaWzeBGWNOa8A,2011-02-09,D6UH98Mc7S5IyY0NbnlDMw,4,"Outback is a chain resturant ~ so they have their formula perfected. Each time we hav eaten at OUTBACK we have had a great dinner and good service. + +Lately each time we try to eat at OUTBACK there has been a 20 to 30 minute wait ~ we don't always wait . . .but it's wonderful to know that things are picking up and that there are quality resturants that have waiting line ~ to me this is a blessings. + +: )KC",review,QfRmDp4obVNSfFneMfFMNQ,0,1,0 +YJoph5UiUZ3BEb49vyFAuQ,2011-06-26,Gdjz1GexBlMvf2_Flaflmg,4,"This place is so cute. To begin, it is trendy but comfortable. The service is fantastic and the food is really good. We were a party of six, and ordered a few appetizers (the deviled eggs were good) and for lunch, many of us did half flatbread/half salad..for a reasonable $10. Mine was delicious. I had a blueberry salad which was really tasty, and my margherita pizza was great. The sun-dried tomatoes were perfect. I will be back for sure when I'm up for drinks....a wee bit early for drinks today as we ate at 11:15.",review,Bc2UjSePEGvqSdHvz2HKGA,1,1,1 +9Qt1pt0pk2VWz0chdGk-jw,2012-02-10,hRGIrrFnfHGnjAUjvmrvXQ,5,"Man oh Man! Since leaving New York six and a half years ago I have been in search of good Chinese Food. I had gotten to the point where I would have even settled for ""decent"". A work colleague suggested that we dine here on the way to a corporate meeting. While I realized that he was a native to the Phoenix Metro Area and had probably never even had the real thing, I trusted his palate and restaurant sense. I was so pleased when we walked in and saw that the diners were predominately Asian. I knew that a great Asian market was next door as well and these things were the first things that signaled to me that I was probably going to get good food. I was thrilled to see familiar Dim Sum carts rolling through. We were a party of 7 and shared around. The food was fantastic! Dim sum was fresh and succulent. Our orders from the menu were equally delicious. The veggies were fresh and brightly colored. The tastes distinctive and delicious. The Hot and Sour Soup was perfect filled with all kinds of Chinese mushrooms etc. I was delighted and reminisced about the many fantastic dinners in Chinatown NY. This food was comparable. I do not live close by, but I will be a regular there. Chandler is clear on the other side of the World from me but I figure if Marco Polo could do it, so can I! Phoenix Palace is the REAL Thing!!! Friendly prompt service rounded out the experience. Hooray for Phoenix Palace!",review,1XVucFSI-0gvE-V7RBVOSA,0,0,0 +AkOruz5CrCxUmXe1p_WoRg,2011-09-09,CbLUWvNkepZKqsPnJCwtMQ,3,"More than the food, the place is cute. What it looks like from the outside does no justice for the inside. +Very Americanized Asian food so if you're looking for authentic... don't come here.",review,IXpLR3rC4TKeYyvQTHlLjA,0,0,0 +Nq7eB1wB2EArUICtiNePvQ,2012-08-21,O63iVcL62BuSoqwtB8Qnmg,4,"Shopping around TMP made me thirsty for a cocktail. There is some type of Cantina I passed by that did not look relaxing so I went to my Yelp app to see what else was around when I saw the Thirsty Lion. I was expecting an English pub-like atmosphere and I was pleasantly surprised when I walked in and saw the clean and modern decor. I sat at the bar, a great thing about this place is that it has HH on the weekends! The bartender wasn't that great. He just threw down a drink coaster and walked off.... uh... really? When he came back around I ordered a specialty drink - mint and cucumber cooler or something like that - I was hoping for more cucumber than mint but the mint was overwhelming, it tasted more like a mint julep. They did have a great selection of beers on tap but I really wanted a cocktail so the next round was a jack and coke. + +I wasn't planning to eat but I noticed some hard-boiled eggs wrapped in sausage on the HH menu, I had to try those, it's not often that I see something unique on a menu. They were pretty good actually. + +I can't wait to come back.",review,wFweIWhv2fREZV_dYkz_1g,10,9,10 +9r5YLKGTdQz_Q29cBifePQ,2008-11-18,DcMPVUltzJd9Py9BK7VrvQ,1,"We use to visit this Pub 10 years ago because they had a nice English waitress and excellent fish and chips for the price. However, we went back a few weeks ago and boy were we disappointed. The price of the fish and chip dinner went up and they cut the portion in half. No one assisted us in putting two tables together, we had to do it ourselves. Two guests wanted a good English hot tea and they didn't brew it in advance, it was just thrown into a small metal tea pot and we had to ask for cream and sugar. So we've decided there are newer and better places to eat fish and chips, especially up in north Phoenix.",review,pfwmCVwb1Lhsq4pbxh30Ww,1,1,0 +7LbqRnM6DPbLuBV4DGi5iA,2010-11-14,AHbVHXUZwDGYa5GV2_NmeA,4,"I am not only new to the area, but to the southwest. I'm so excited to try food from as many taquerias as possible to find my favorite. Taqueria Los Angeles is yummy and super inexpensive. $5 for ""your choice of two"" with rice and beans. I will certainly return.",review,U9yEiMEK72iROMPdWzqOfA,0,0,0 +cQZcWeIDKEF-7nWU3gJMUw,2012-09-08,3Nn-d5CGzV2scaxDRHhAFA,1,"My rating is based on the fact that as a vegetarian, they charge $8 for a small mediocre bean burrito. Maybe if this bean burrito were exceptionally good or large in size, but it was neither. I'm not saying that if your idea of Mexican food is Chipolte, you will not find what you are looking for and be happy here. But if what you offer your vegetarian customers is deleting the meat and not adding anything else and charging full price, I can get MUCH BETTER elsewhere and pay way less. + +GRINGOS: Take off the Chipolte blindfolds! Go to a real Mexican restaurant and see what real food is supposed to taste like!",review,mge-pOpNNuO4IL2o-mXB-g,0,0,0 +G9LwkTSdKOyOGqd5BbuIkA,2012-10-23,RUUg3ZEjPzYKN97VG2fBSA,1,"This place has gone so downhill. If I hadnt gotten my chips, salsa & water immediately, I wouldve walked out. Margaritas are always awesome. But the service and food is straight up AWFUL. Microwaved enchiladas, no rice, rude, cold, unfriendly, uninviting service...If you're looking for a fabulous, neighborhood mexican restaurant, try Las Glorias Grill. The location isnt as great, but the food, service and drinks, blows this place outta the water. After years of going to aunt chiladas, Im NEVER going back again. They dont deserve your money either....",review,Vibtr-_DiDbwZqaxKK8SYw,1,1,0 +MdwoM1Qf87nmdA6Ma6tnMQ,2011-01-14,k79glb4ggVAYj9pE_WKraQ,4,Fairly typical Walgreens. Sell beer and wine now. Photo and pharmacy. Redbox movies.,review,H8Iol3uAHtbycO9MJ4i3lA,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2011-04-16,lzABdhPeBbBEYaFrf7ynqA,5,"First time here, new favorite. You can create your own antipasti plate, and the pretzels and fondue are AMAZING. Also the ricotta gnocchi is the best I have ever had. Service was good, Liz was our waitress and she was very friendly and helpful. Monkey bread is also stellar. I cannot wait to go back.",review,rgMMUa7c4fbgsP8YFCWZBw,1,1,1 +YKOvlBNkF4KpUP9q7x862w,2011-01-11,8iRQBqpE455Zlj7gR2mFOg,5,"This little spot in the art district of Scottsdale is as good a lunch restaurant as I've been to. I had the mahi mahi tacos, and was blown away by the attention to detail in the flavors bringing the dish together, as well as the wonderfully tasteful presentation. + +Of particular note was the attractiveness level of the waitresses, about which I don't have sufficient words to do justice. Both my father and I were hard pressed not to buy a condo in Scottsdale just to stay and have all our meals for the rest of our life there solely to appreciate the view. They were dressed tastefully, not in the slightest bit 'slutty', but holy god.",review,fGMaltkx1S55k3GpeLpTyQ,0,0,1 +nfyqtEoufkhjv97IueK7Ow,2011-07-17,Ql2ocTbNwTlRiaBFuxj2kQ,2,"I went to Arriba last night with my wife and another couple. I have been to this location a handful of times and always had the same result. The food was okay but the main problem here is the super slow service. + +It took us nearly two hours to eat dinner here. It took forever to get our chips and salsa. It took us nearly as long to get our drinks. Forget about refills. When our food finally arrived we asked for an additional plate but never got it. I asked for a water when our food came out and got it after I was 3/4 done with my meal...and I do not eat fast. Our waiter was friendly but hardly ever checked in with us. When we asked for the check he said he would bring it in five minutes. His five minute deadline was not met. + +I don't think I will be eating here again. I have given them too many chances.",review,WHi6um_c1RaFecYZ-TlRfQ,0,0,0 +-x_jL2OCWPdObGTOwIpN4w,2011-01-06,A7z1x4xUaVSSgJXIHk49hg,5,"I have been frequenting this spot since they opened and have always said they were better than Starbucks but Iam in a special kind of heaven after the change in menu and addition of pressed tea lattes!!! Yum, yum, yum!!! Far better than Starbucks powdered green tea latte and roughly a dollar cheaper than the high priced cup there as well. The early morning staff is great and free WiFi is an added bonus. I can honestly say for the New Year, I'm quitting you Starbucks......and mean it.",review,7DerHvOIX_t9xLFyXFEbCA,0,0,0 +-fIGHIUdHX-T_ZGh2IQz4Q,2010-11-06,ZpFH0PzAqZbh-wAtSUmF1g,1,"I'm never shopping here, I don't wanna shop somewhere where associates think if u can afford it in just goona purchase the bag online then looked at if I could afford it",review,h_sy6uDQ3F3peMVccSThsg,1,4,2 +fF6m3qsD5blnwuZRuYhzWg,2011-04-09,D-SmuWWgk03wVWaErvLE8Q,3,Food was good. Slow service. First time that I've had to walk outside through a parking lot to get to the bathroom.,review,ydXHK-xdFzo0T_tNNCwijw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2011-04-27,88HOcrO0GLBNLUteN5h0DA,5,"I have totally fallen in love at Tuck Shop. Everything here is fantastic. My friend and I come here about twice a month and enjoy some snacks and wine. The beer battered Cheese Curds may just change your life for the better... we are seriously tempted to each get our own order. + +(I am not very good at sharing and i always get what I want! ...No i'm not an only child... well, maybe I was until i was 11, how did you know. WAH!) + +Oh, and Laura is fantastic. She always takes great care of us as we enjoy a glass of wine on the couch in the reading room. + +Thursday's special is meat loaf... don't deny yourself, just indulge. :)",review,Q43j4rd_K0YEjGAb7qB8MA,0,1,1 +89yv89wcF_-ehN7_pUnl6w,2009-05-11,UOUayuNj1fsk5Wiw4mKqVw,1,"Your reviews are hilarious!! (shoot--who was this referring to??) + +I try to avoid WM. I'm always warned about the possibility of TB or now, pig flu. I think the hub just doesn't want to go shopping--not that I LIKE shopping. + +I know someone who worked WM in WA and she says the conditions are just horrible for employees. I've spoken to at least one cashier that is actually FRIENDLY and LOVES his job benefits and bonuses. He's a minority I guess bc as you all said, YOU CAN'T FIND ANYTHING and CAN'T GET HELP without attitude, usually. + +I'm standing there staring at 2 mgrs, and they just ignore me for a few minutes? I didn't want to interrupt the conversation, so I waited. FINALLY, one asks if I need help??? NAAAAAH, I was just admiring your huge body and wondered how long it might take me to look that way. FOOLS! + +On my last visit, a customer said ""excuse me"" to the 3 employees behind me in the aisle. I glanced at her and she sighed, rolled her eyes and shook her head as they all ignored her. I chuckled and acknowledged her frustration. Then one employee pipes up with ""OH, I'm sorry ma'am, can we help you?"" She asks to find an item, the customer thanks them, they say ""You're welcome"", the customer leaves and they sarcastically continue to each other: ""THAT'S WHAT WE'RE HERE FOR. NO, THAT'S NOT WHY WE'RE HERE. We're not here to find stuff for stupid people, we have better things to do."" That's why, when I walk by an employee working, if they lay eyes on me, they immediately look away and pretend to be engrossed in their job, to avoid stopping to help. WT? What's wrong w/this management??? + +I agree, you can find some deals and save some money, but the attitude is over the top. There are a FEW employees that actually smile and appear friendly, at least when I see them, and I can point them out. If not for the more often than not occurences as mentioned above, I stay OUT of WM as much as possible, which is a lot. I've drastically reduced my trips there, but more importantly, I've cut out a huge chunk of purchasing from WM.",review,4muLyMlTP1ijRLACBBRcaQ,0,1,2 +IBrQEBb6_MFtCEiulodXeg,2009-03-21,lnibY6BckqyirtIWSzPSJw,4,"I love this Starbucks. We all know every Starbucks is expensive, so forget that. But these people have our drinks memorized, if you go there alot anyways, they're on top. Good Starbucks.",review,VXUIEbW9_xbCqs12EYD8QA,1,0,1 +iDYzGVIF1TDWdjHNgNjCVw,2011-12-01,kOgY3bcATt9haPKxbVyWWw,2,"I used to be a Los Sombrero's local. Started going (1998) before they were in their current location. The past few years Los Sombreros has gone hill. Increasing prices and food not as good. Marg's are subpar now. Los Sombrero's is no longer living up to what it used to be. Food is still good, just no longer great. All great things change and I am sad to see Los Sombreros change for the worse. + +The original chef/owner Jeff Smedstad has left and started Elote in Sedona - I must try there as I here it's what Los Sombreros used to be.",review,ZIiZ0-bwrus3wIfPNDYevg,0,0,0 +AzNRSPu8LcsedsfZ694uCw,2007-11-05,U6s0evfxbYhqVX_sOVfFdA,2,"Being a Phoenix native, I almost felt embarassed that I only ate at Pete's for the first time seven years ago. +I had gotten back from England and was trying to recreate the orgasmic fish and chips experience I had there. Pete's was around the corner from my complex and after all, I DID see so many of those ""I'm Addicted to Pete's Fish & Chips"" bumper stickers all around Tempe. I had to try it. + +I ordered the two fish combo, and my reaction was...what the..?..are they serious? + +1.) The ""chips"" suuuuck. No salt, overcooked and stiff. I couldn't even eat them. +2) The two squares of fish I got were alright, but I may as well have gone to Safeway and bought a box of Gorton's fish sticks. +3.) The red ""special sauce"". Wtf? And you have to pay extra if you want tarter? Lame. +4.) No malt vinegar. Enough said. + +Why there is such a collective hard-on for this place is beyond me. It's a laughably bad example of Fish and Chips.",review,_LEQt7oTVjiaXyVHK_MM7g,1,4,4 +QbqJEXdngh_9fwqVTI0CJQ,2011-05-21,xXAiifY_2jgs9xlAmvjwfg,5,"I am one step closer to completing my goal. I want to visit every Grimaldis in the US before I die. After tonights visit to this one, I have most of AZ taken care of. + +We decided to come here because we had never been to this one. We arrived and were seated right away. Surprisingly this one wasn't crowded at all and that was fine by us. + +We got a small caesar salad, a small pepperoni and garlic, and a personal white pizza with roasted red peppers. A few minutes later we got our salad. It was really good. Just enough dressing, lots of cheese and croutons. It was a good starter. A few minutes after that, our pizza came out. If you have read my other reviews, you will know that I think Grimaldis is the best.....this pizza was no different. I really liked the white with roasted red peppers. Everything was delicious and even though there was some doubt we could finish off 2 pizzas, I turned on my inner fat boy, and finished off all the pizza. It was tough, but someone had to do it....little kids are starving in Africa somewhere....lll be damned if I'm going to waste some slices of this amazing pizza. Down the hatch it went....my stomach doesn't like me right now because its so full, but he will forgive me once he doesn't get any of this delicatessen back in San Diego LOL.",review,F5NvOP5YeKetvkYo1W4t3A,4,6,4 +lQpdn4RvgG9vT5CHv3qj9w,2012-12-07,mk2DDzC295Y7NuW1dP-RcA,4,This is a great dog park to have in the area. It has a ton of room for the big dogs to run around and there are baggies and trash cans scattered all around it so you don't have to go far to pick up after your dog. I also love that there are a couple water stations in case you don't bring your own water bowl. The area for the small dogs looked to be a pretty decent size as well. The only downside to this dog park is that the ground is pretty muddy so I'd recommend wearing shoes you don't care about and bringing extra towels to clean up your pup after they're done.,review,q3Fa0PhTGzRl-05fXHIi4g,0,0,0 +NlxvN9wUw14qIS6ledk15Q,2008-09-13,R6E8_VsNpIpwTNDxs-ltoA,4,"Good food and really good beer. In fact, on certain days their own micro-brews are a dollar a pint. That's right, one dollar a pint for liquid sunshine. The pizza is ok, but the beer is why I go. Try it for yourself, I'm pretty sure that you'll agree.",review,_LGc_12v8LaaOdz0mdYkXQ,0,0,0 +jvvh4Q00Hq2XyIcfmAAT2A,2012-03-13,MTog75VPgARPOVDGVFAgUA,5,"As good as I always remember it to be. +Their fries are way better than In-n-Out (I am a fries connoisseur) + +Their burgers may be getting smaller? Still delicious as ever. + +I pass on the drink though, an extra $2+ makes the meal quite expensive.. + +Price: $9+ for the cheeseburger (double) and Regular fries +(in-n-out: $6+ for double-double and fries - half the size) + +I would eat here every day if I had the option.",review,9-6uPVp5Lr9HBJtCJGAukw,0,0,0 +TMZP6Kzkc-FytzgbgIC9JA,2011-10-01,E2fr0LyYRX344sFJIy_baA,3,"Went here on Wednesday to take advantage of the $30 certificate. It was quite busy, which probably shouldn't of been a shock, location and all, so had to wait awhile but that is the risk of not getting reservations right? =P. + +Anyways, spent time in the bar which was nice, the bartenders were willing to answer questions, though not always the most chatty, but I think that was due more to how busy it was then not being friendly. The happy hour prices looked pretty good, $2 hot sake, $3 beer, $4-5 cocktails. Sushi was also on the cheap, Nigiri was from about 1.25-2 dollars I believe, and the other rolls ran from 3-5 dollars at the worst. They also have some non-sushi appetizers on there. + +Once we got a table, we were paired with another group, which was actually a nice experience as I do like the communal type seating stuff. Granted if you have a small group and not a fan of eating with strangers, might not like it much. + +Since it is a place I always consider more about a show then the food, going to start with that first. The show was eh, they do some of the knife play stuff, and a few things here and there, but honestly it wasn't all that exciting compared to the other place I've been (Sakura). The chef was friendly though, and the server was personable so that is a plus. Otherwise was a bit disappointed with the show portion of the meal. + +As for the food, I had the Filet Mignon and lobster tail. The filet was supposed to be medium, but came out more medium well in my opinion. It was lightly seasoned, leaving mostly a beef flavor then anything else. Now it had a good beef flavor, so by no means complaining just like a bit more seasoning personally. The lobster tail was good, buttery from the butter, but more importantly nice and sweet. How it is to other lobster tails? can't really tell you as I don't eat it that much (college students don't exactly have that sort of cash you know? =P). But again thought it was good, wasn't fishy and nice and sweet. + +At the end it came with a choice of ice cream, I tried the green tea ice cream which about the same as any other green tea ice cream I've had. Basically its sweet, with a hint of green tea taste, and that is about it. + +They have to sing to you of course, and they take a picture which they give you with a code you can access for up to 60 days (I believe) to download it, which is a nice touch. + +For the money, I really wouldn't go unless I had the certificate, however I would go back for the happy hour, probably my favorite thing of the whole night.",review,vQtiYv_KYj4ucNKv5iRfQA,0,0,0 +jQST5lkLGX9L52-A10TGTQ,2011-08-07,_Dx1-0gLz_-9FElMBr605Q,1,This was the second time I placed an order over the phone that was delayed over an hour. I was told over the phone that it was going to be only 15-20 min for me to pick it up. I showed up 30 min later and my order was still delayed. I ended waiting for another half of hour to receive my order. The pick up service was the worse I have ever experienced.,review,IEzFV69twVlvXhhOsUGYmg,0,0,2 +F-ZOeAK1v7e5Rt2Mv5rVMw,2011-05-11,eANvQ0h7HnfLn5wKwFD_qA,4,Best latte ever!!! I missed my local coffee shop in Phoenix and I stumbled upon Echo. I am so happy I found this place. Free Wi-fi and AMAZING lattes have won me over! I recommend the Turkey & Brie sandwich. The pear made the sandwich. They have a great music selection and they don't crank up the volume. Check this place out!,review,2h0A-NirfNl2p2SquFWYHQ,0,1,0 +a8yzGF79KcfyRye2R6wt3Q,2012-04-09,YV6DpBlgJqt7S5xucCdsjg,1,"Great in its day, now leaves a lot to be desired. Deserves credit as a Phoenix landmark Chinese restaurant. + +This restaurant has been here for 38 years. I've been going here off and on for 35 years. I go here more for sentimental reasons, and not so much for the food. + +The interior still retains some of the original decoration style from the original restaurant established nearly 40 years ago. The rest of the decorations have been torn out. I believe the decor is modeled after the Forbidden Palace in Beijing - see the vault-of-the-heavens style crenelations in the ceiling. + +I have this restaurant - in its former self - to thank for this: Back in its day, this restaurant was really great, and the entire atmosphere lent to an ambiance that actually inspired me to study Chinese and then later go live over there for some years. + +Sadly, the food here is not all that good. The fryer oil they use here is pretty old. The fried rice arrives looking almost black (from the fryer oil? too much soy sauce?) instead of a rich golden brown, and tastes overcooked somehow. The eggrolls are just OK. Definitely not fresh. + +A lot of the menu items from the original owners are no longer on the menu; for example the special ""Chinese cakes"" served on a plate topped with a delicious gravy-like brown sauce and shallots - probably some form of Cantonese food. All of this is gone, and replaced by very plain fare, and not very good at that. + +If you like salty, greasy, plain-tasting yet somehow edible Chinese food not far from the $1-per-scoop variety, then go here. Golden Phoenix's heyday as a great restaurant is long-gone. Let us bow our heads in sadness to a place that once was very good - now passed on...",review,5W6WBEosZH2-atKjYDTVFw,3,2,2 +d52zg-S0o940WUCK-nNiKw,2009-11-05,g7_wDRTTHFJsVI6WQave6Q,4,Machaca Burro is ridiculous and the butter tortilla will take you to the promised land,review,AYRv5k9H2w7VNI1X-9fM3A,0,0,2 +CRvVvR6aE1eWVRtzQ0UC6g,2009-05-30,N8kwZfU1LJoeh2BlRrFw2Q,2,"Food was decent, not too sure how this place is getting such rave reviews though... + +Probably the most expensive Mexican place of it's style. $25 for a burro, two tostadas, and two mini-tacos. Seriously?! Also, no free refills or chips/salsa. + +Are we going back? No.",review,5j7qmDZTAetaH0yXFnAFyw,2,1,0 +2mcmuAvpNIJuV3gV0v9v2A,2012-05-27,5dX8hhkcgFfVZaSaWkV80Q,5,"Love this place, it's on our dinner rotation. The owners and wait staff always greet us since we are regulars. Great place and cheap too. Try the #100 its the best ever.",review,dkKLIozpkfUm6f_8RwsEvQ,0,1,0 +8rMSbtMFVtEien-2EfFu6w,2012-03-06,YHAcbIm2CCRDiLIFSfH_lA,3,"Took my daughter to Mendy's Place 4 times. Treatments, doctors, nurses and other staff were great. + +My complaint is that the ER physicians are not in-network (participating) with most insurance companies. Even though the hospital is participating, the physicians are not , thus resulting in larger physician bills. + +Us consumers pay dearly for our health insurance. I don't like being overcharged by greedy physicians.",review,4SL9WftOYkbA2V0xmN2YuQ,0,3,0 +9PrgqakLyqlxTTqvvfYNyA,2013-01-05,BedRV23Sb9fE03Y9eH7Jzw,4,I was a little bit scared to eat at this place but I was pleasantly surprised. I got the chicken egg foo yung and boyfriend got spicy shrimp. The portions were humongous and it was very delicious. The Buffett didn't look very appetizing. I would definitely only order from the dinner menu. Can't wait to go back. Food is dirt cheap and so delicious.,review,jk_P-yYspg7uz-8xSCRdGA,0,0,0 +He9Dar4bk2vyeiPC7TkUgA,2012-11-20,1MOAO0KIm38LNFg3FSgCMg,1,"I don't know what's up with Eddie??? I always found him to be pleasant, and really taking care of the customers. However on the 17th of November we had a birthday party of 19 people, and they gave us one waitress. We sat down at 7:00 pm and our main course came at 9:15. No real big deal but one person can't handle a table of 19, and we were having fun. So one of the guest's had ordered the $12.00 burger along with a salad and told the waitress no Mayo because he can't stand it at all. The burger comes out and it has Mayo on it, and he tells the waitress. She was not at fault, and had written it down clearly. He asked for a new one, and she comes back and say's Eddie cooked the hamburger and refused to cook a new one but would make him a new bun. He didn't want that because he hates Mayo that much, so there was no problem taking it off the tab, but Eddie would not make a new one. LOL. What's up Eddie??? I don't understand at all, you take it off the bill because you screwed up, but refuse to make another burger that you would have been paid for. Then you end up looking like a fool in front of the other eighteen people. My daughter has even taken one of your classes, and said what a great guy you are. Really, Really bad PR that night and the next birthday party wont be at Eddie's House. Great time that night, but the ending leaves a very bad taste in 19 people's mouth.",review,8leoUQELdWao6zLgRlAt3A,1,2,1 +eTbtfgUtfewdncgVf2CbWw,2012-09-16,UIUfEDc62fpMxWCW3Lc5PQ,5,"Owned and operated by Eugenia Theodosopoulos (an Ohio native, fyi) and considered by many to be the best patisserie/bakery in the state I approached Essence with a note of skepticism largely assuming much of the hype was derived from Tempe's plethoric college crowd but arriving at the doors of the small shop on a particularly lovely 80 degree morning I gathered quite quickly that my original conceptions were misplaced; not only does Essence not look like a college haunt, neither do its prices or products - a vast selection of at least twenty items aside from the posted menu sitting beneath and atop a glass case forcing me to make more than one tough decision that was not helped by my server's accurate assessment that everything was really good. + +Now bearing in mind that the original impetus to visit Tempe on this particular morning was to visit Caffe Boa and that Essence was more of 'pre-meal' activity what follows may seem slightly gluttonous, but to be fair once I took my first bite of Theodosopoulos's École Lenôtre trained almond croissant I knew I was in good hands and everything else just sort of followed. Without a doubt my favorite breakfast pastry and perhaps my favorite French pastry overall, Essence's $3 twice baked option arrives slightly smaller than the average but with a shell that crackles to the tooth and an interior that is at once yawning pockets of air and nearly overloaded with butter and light frangipane there is no doubt that this is a case of ""big things in small packages,"" and particularly in its still-warm morning state the flavors and textures rivaled those at Dominique Ansel and Payard Las Vegas for best I've had stateside. + +Moving next from the baked goods to one prepared from the menu my second taste of the morning aside from the slightly earthy and lightly leather accented coffee was Essence's ""Signature"" French Toast, a $7.25 selection featuring three griddled slices of eggy brioche and a sidecar of what I can best describe as banana infused caramel. Rich but thinly sliced and therefore nicely saturated each piece of the French Toast was exactly as it should be - the exterior crisp and the interior custard-while the sauce provided a pleasant balance of fruity notes and intrinsic sweetness that complimented rather than overwhelming the bread. + +At this point submitting to the fact that I was going to eat even the items I'd bought 'for later,' my next two tastes were a pair of $2.95 macarons that, much like the croissant, rivaled those both here and abroad in terms of taste and texture while opting for a much more rustic approach terms of size and presentation. Beginning first with Pumpkin Spice and then proceeding to Vanilla with Dark Rum each palm-sized cookie was exactly what one would expect from a well trained pastry chef as the exterior shell provided a slight crackle on bite subsequently giving way to a soft meringue followed by dense cream that slowly dissipated on the tongue - the cinnamon and nutmeg notes of the former particularly notable while the rum in the second was appropriately understated thus serving to highlight the vanilla of the shell. + +If there were any 'misstep' on the morning, it *might* have been the ""Summer Berry Croissant Bread Pudding,"" though when I say misstep I must temper the comment with the fact that my quibble is only that I prefer the French/English take on the dish while this one was more based on the French Custard style, a rich vanilla bean pudding without a lot of crunch or textural variance but instead laden with blackberries, raspberries, and strawberries plus a sidecar of lightly sugared strawberries. Focusing more of the natural sweetness of the fruits and aromatics of the vanilla than the typical overly sweet versions served stateside it was more panna cotta than bread pudding to me, but chalking that up to personal tastes it was still delicious. + +Moving last to the one dish that gave me trepidation, the ""French Napoleon"" gave caused pause not only because the name clearly skewed towards a subset unfamiliar with a proper Mille-Feuille but also because so many pre-made versions of this layered pastry have failed to wow in the past...thankfully this was not the case at Essence. Featuring light and crunchy layers of choux easily withstanding the tines of a fork without turning into a smooshy mess (see ""Mille Feuille New York"") intertwined with rich pastry cream speckled with dots of vanilla bean and ripe raspberries what truly made this version stand out was the manner in which Theodosopoulos caramelized each layer of choux, a technique reminiscent of Pierre Herme and as good as the French icon's version was I'd be hard pressed to say Essence's was any less impressive. It would be awesome to see what they could do a la minut like Savoy, L'Arpege, or Genin and given the names I've dropped in the paragraphs above plus Essence's proximity I've no doubt I'll be returning to see what else the small shop is capable of soon.",review,5lq4LkrviYgQ4LJNsBYHcA,2,3,3 +mQde7KRomOQoUyPGTqeXhA,2009-10-30,n9JTbyHVsl_awFDig-1Abw,5,"I'm on a community social action committee and have spent the last year planning a community-wide service day. We were each responsible to lead a team of volunteers in a different community service project and per my passion I chose the Humane Society. We arrived on Sunday afternoon with a group of 12 people at the Campus for Compassion on Dobbins Rd. Kathy - the head of volunteer services - met with us and gave us a thorough introduction. She included the history of the AZ humane society and the process and procedures by which they take-in and shelter animals. She really focused on promoting spaying and neutering pets and cited some very impressive statistics. Did you know that over 7 years un-neutered cats can breed to reach 420,000 in numbers??!!!! and dogs 67,000??!!! thats CRAZY and so compelling. + +Kathy proceeded by giving us a very educational tour of the facilities... we saw dogs, horses, cats and bunnies. It was very eye-opening. First off it shattered any stigma you have about a shelter. The animal accommodations are so impressive!! The dogs have BIG size kennels with indoor and outdoor spaces that are really spacious. I was nervous to go in and see the dogs in kennels but I really wasn't as heartbroken as I thought I'd be bc they really had nice size spaces. + +There are sprawling lawns in the back where animals can run and play which even include a public dog park! There are also private puppy rooms. The cats have big crates as well and even private bedrooms where they can hang out in groups and the facilities were squeaky clean w/o any odors. + +The volunteers were so nice, kind and devoted to the animals. We got to feed horses, play with cats and bunnies and put together leashes for dogs. The most encouraging thing though was that the place was busy on a sunday! buzzing with people wanting to adopt pets and several cats were actually adopted during the 2 hours we were there. + +It was a wonderful and meaningful experience and I encourage anyone who is looking for a pet to adopt from the Humane Society and to look into volunteering with them",review,LhSKiNsXSItau9tgmRfzyw,1,3,1 +ke3RFq3mHEAoJE_kkRNhiQ,2012-05-29,wxg_JFaOExsvE2UJQSI4Jg,5,"Every time I go in this place it's always a great experience. My wife and I have been going to Lucille's pretty much every other Sunday for the last couple months. Her favorite is the pulled pork mine is the Kansas City ribs, but we always have to start our meal off with the fried pickles. If you're on a tight budget even buying one meal and sharing it is a definite option. Sometimes I get full on the biscuits and spread the provide in the beginning. + +The bar area is a great place to have a meal and watch a game. I would highly recommend this establishment to any of my friends. But make sure you get the fried pickles... you will not be disappointed. + +Oh yeah.....please please please order the Mac 'N Cheese as your side. You will thank me later. + +Q",review,UqRsXvlnI3ioAY6DxJsRcA,3,3,0 +eRb0wjIVlj0bbfmePKZLng,2010-04-10,DJ2epxidXnFdLtFmjQBgwA,1,"How very disappointing! Nello's had a delightful menu with an array of salads, pizzas and sandwiches. Not Jac's. If the new restaurant wants to be a ""pub"", it should have a wider variety of selections. The menu was sad. + +Due to dietary restrictions, I asked for a plain garden salad. Lettuce, tomatoes and onions. And it wasn't very fresh either. Sad. + +Guess we'll be driving up north to Pima Crossing to visit Nello's.",review,k6xDCakturvYo1afdPMP6g,0,0,0 +rncjoVoEFUJGCUoC1JgnUA,2012-02-12,EnAdKZ_u_wj9ifTRwkfVwg,5,I highly reccomend this place. They helped my girlfriend and I figure out our taxes and deductions so that we could get the max refund. We both had been doing our taxes online and missing out on hundreds in deductions. Ill never use another online service to do my taxes again as long as these guys are here.,review,HK35ai8frY75iMYBVdD_Pg,0,1,0 +RSOppDX3TPNbBtrWuIMElA,2011-07-13,QDhIuFU2ADUo27CHfM2_jQ,3,"Food is just ok, but the problem is it's way overpriced! I mean $9 for loco moco? Outrageous!",review,XuVeswVBiG7bye8-k731ag,0,0,1 +-hWSt4JO2zT7zd7QzLZY9Q,2008-10-18,VcOep9CYExczLxDzxweWmA,5,"My absolute favorite coffee shop - I'm a regular! +Friendly atmosphere & staff, buttery fluffy muffins, ooey gooey danishes, tasty coffee, and support for local businesses and entrepreneurs. The only negative for me is the mysterious disappearance of the corn tortilla bagel (much yummier than it sounds)!",review,a2KLTknquBFq3HFHMJBEaQ,1,1,0 +8yxuxxKHRtyIzwE4cIVRiA,2009-03-07,V9vUMqEgMx_nQwOBQozj9g,4,"This place made me feel comfortable about moving to Arizona. I just moved from L.A. and was totally worried about not having access to Asian stuff. Of course it is not comparable to L.A. but this place has all the essentials. + +*Vegetables = fresh +*Meat = frozen +*Fish = frozen +*Dried food = plenty +*Bread = they bring in baked goods from Olive Bakery in L.A. +*Cooking supplies = half of the store is full of them",review,cH1lLTHReO6uDTif9bfOBA,0,1,0 +Vy3GlkRt1svQ-mkZ6r8W4g,2011-03-20,CQ83yS0S2xxnvdT6CCPQ5g,5,"There's no business like show business. As any of my friends will tell you I am a theater junkie. I could sit in a theater all day, all week, all year long and do nothing but gaze at live performances of theatrical talent. lol! Well in actuality, hmmmmmmm I really could. I am not even joking on that. I probably would if someone brought me water every now and again. LOL! Ok, seriously now, Childsplay is my favorite organization in Az for a host of reasons. + My dear friends of Childsplay know who they are. This is children's theater at it's best! The Q and A sessions after each show is a plus. The kids love it. I have to admit I do too since I get to go say hi to my friends after each stage-show. I also learn more techniques that I can steal when I teach drama to my inner city students. Teehee! ( Yes I am a teacher and yes I would die to have some of their costumes and sets) + I have seen so many wonderful plays, literature remakes, and original scripts performed At TCPA and by Childsplay. Fernidad, BFG and New Kid were only some of the most amazing masterpieces I have had the distinct pleasure of viewing from these talented actors. Debbie, Scott, Katie, Jodi; well all of them! LOVE YOU! + Childsplay also has an artist in Residence program for schools. We have had an artist at our school for several years. It is wonderful to note that the teaching techniques classroom teachers are learning are helping tomorrows future. Time after time I have seen struggling kids blossom under their tutelage. + Of importance to note, TCPA is a beautiful facility. You can enjoy a nice venue along with the superstar talent. What more can you ask for? + The only negative I can possibly imagine is that in today's hard times the cost may be inhibiting to some families. But if you like them on Facebook they sometimes have discounted tickets and contests to win free tickets. A great way to start viewing them and get involved. + I do hope everyone continues to support the arts here in Az. As I have stated in my other ""ARTS"" reviews, I do worry about cultural program survival in Az with recent state budget cuts. Soooooooo, as a famous circus/rodeo person once said, ""Go, On With The Show"".",review,tBvrnSCLSpUdCDm5w5GPkg,0,0,0 +cKxXBvOithS-Ic5KnhEKrg,2012-01-26,rxrJEIqrcB6RTpihDfTMcw,4,"I do not typically go to chain restaurants & then yelp 4 stars but I was genuinely impressed with our server (Cliff) and Carrabas kitchen. I have been doing a food detox as of the first of the year and the waiter AND the kitchen were so accomodating, even going as far as asking if it was OK with me if they could add certain vegetables to my salad I had ordered (they wanted it to look nice and taste good) to make it more filling.. who does that!? They do! Went with my bro, his gf, and my hubby and they had a great old-vine Zin (bottles of wine are on special on Wednesdays) and they seemed to enjoy their meal (though my bro thought his veal marsala was a bit smaller than it should be). We were seated promptly, the staff (Cliff & kitchen guys) was very attentive and I have to give them 4 stars for going above and beyond what chain restaurants usually serve.",review,A99dyhEqcd_yXKPfBWeZHA,2,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2012-09-21,WmqJq8o116G97hcpgS-SnA,4,"Came in mostly based on the name, as it is a great one. The decor and feel were really cool, and our server was very friendly and accommodating. I had a burger with bacon and cheese. The burger was very good and the fries were as well. They had some happy hour deals, and I got a beer on tap. I came in around 4, so it wasn't too busy, but I look forward to coming in again at night time and checking out some of their other drinks and food.",review,ZYBhxMZk32e6DF77jjprhw,0,0,0 +Trar_9cFAj6wXiXfKfEqZA,2012-05-10,Sl0t9JZTz_WWtgDaikcdEw,1,"Great donuts but horrible service... Didn't get anything we wanted due to a language barrier between us and the limited English speaking employee. She claimed, in broken English, to only speak Spanish. She understood ONLY the word ""dozen"" and we got a dozen of what ever she felt like giving us, then proceeded to ignore us while using her cell phone! +Donut shops are a dime a dozen and we will never again return to Bosa.",review,VD4rjZ7FhQ18k_qAxwaPXA,0,3,0 +i2gLXa-MSAS-9oU8K_rnYQ,2007-12-19,bWC9_aTNgBc6U1wgxxRdvw,4,LOVE IT! Food & Service always great!,review,KdIVljQs1D1A8-pyfS4teg,0,0,0 +MuIXnv7Oq7X3-4aEsp9dDA,2012-04-30,XI7cL6UlNRdxZtQH7BCpCA,4,"Stark white, steel bar, dark wood beams....modern and chic. The chopped salad is wonderful...i've never seen anything like it. It was rows of different ingredients and tossed together in front of me. Apparently, it has been imitated by a lot of other places, which I saw later in my trip. This version was the best though...smoked salmon, sunflower seeds, large couscous, sweet corn, arugula, tomato, and the creamy basil dressing is better than everyone else's...i'm guessing the ingredients may vary depending on what is fresh and available. The bar staff was friendly and made me feel comfortable dining by myself. The drinks are phenomenal...I got the Citi-zen, which came with rock candy that I can stir until my desired sweetness is infused in my pear ginger martini. I had a great weekend visiting wonderful places while in Arizona, and this is one of them!",review,XoAyhKIQsCDwwDFzC900Fg,0,1,0 +JhupPnWfNlMJivnWB5druA,2010-08-09,vQFKXr1VZUfmej4UBU3OrQ,5,Great great food. Best meal I had all week in Scottsdale.,review,THlXIiMQZksyqhFhg4SP7g,1,1,0 +VRxelK__tuQD0KBxx2LzeQ,2012-07-17,MZZdewXdPGIu9MQAXRvLWw,3,The felt that the food at Organ Stop was just So-So! Nothing special! The Music there is great! You defiantly go to Organ Stop for the Organ! Not the Pizza!,review,sR_mlVzYpvpunzwjRGJknQ,0,0,0 +hfl62LX14YqNpG0g0Tj6_Q,2008-10-08,V0gkEPBrngn76QV1lXx3Ag,4,"This place is a gem. It's a bit tucked away. It kinda felt like I was going on a bit of adventure. The restaurant was very small and oh so cozy. Just they way I likem. We had the Rock Shrimp breaded in coconut accompanied by a Thai Chili Dipping Sauce it was delicious. My main course was the Chicken breast stuffed with goat cheese, apricot, basil, spinach, shrimp and crimini mushrooms finished in a balsamic reduction glaze it was yummy. Service was on Point. I would so go again.",review,t_UypW8fx5e8_GB6Hu3Shw,2,2,0 +V1nEpIRmEa1768oj_tuxeQ,2012-03-27,3jS8EBYtnOc_nOYXTWkvzw,5,"I would suggest that anyone who lives here and has not been come, and if you're in town and looking for a great local non-chain restaurant that has quality food prepared the way it should, then try Cibo! + +I took my man here for ""mystery date night"" as a surprise since he had never been. No wait at 8:45 on a Friday night (yes! take that Pizzeria B) and the atmosphere of this house is super intimate and cool. I love the atmosphere of the patio also, lit with those great off-white lights, and fire pits. We shared the burrata which was gynormus, easily enough for 4 people or a hungry us. The wine was tasty and reasonable. I was drinking a pinot grigio, and my guy had the house chianti which I never usually order anywhere since it almost always reminds of grandmas table wine - until I tried Cibo's house version. It was very good, definitely not from grandmas! Now for the pizza - it is just perfection. It has that amazing combination of char on the crust, crispy on the outside, chewy on the inside with the right balance of sauce and toppings. It almost melts in your mouth, it's not heavy at all. It's nice to go out for a pizza dinner with and app and dessert and not feel like you have to roll yourself out of the joint! So we finished our romantic mystery date night with a crepe filled with nutella, ricotta, AND a scoop of ice cream on top. I don't typically die over dessert, it's my boyfriends thing. I'm an app girl - but this, it wasn't too sweet, it was so gooey and delicious and the ice cream added just the right amount of sweetness. I would never eat here without dessert again! + +I have been for lunch and they can get you in and out in a little less than an hour, but they don't fire up the pizza oven till supper which is why I prefer that here. You will feel at home at this spot in a group or on a date - hell, maybe even a mystery one :)",review,qkbiaiS8t8YHWx3J04NjSw,0,0,0 +-EctXOb3B7T177jGYUhjVA,2012-05-16,_cmlPi0Q2IXmel_7SuEbJw,4,"This place might have one of the best beer selections at a reasonable price in all of Tempe. Possibly in the East Valley. Their food is great too, service is decent, and the daily specials they offer are just plain awesome!",review,w-7lJmMib10WNuMpnrmKUA,0,1,0 +5weJ3DRKwvQ9claomkYq9w,2011-12-20,-csSSJh8hTSsx5__K62xyQ,2,"K.. I don't get it. I go there every now and then. I have only had the pizza. It is a step up from supermarket frozen pie. I like it because I like frozen pizzas... but I think the ratings given are a bit misleading. + +It is ""cost effective"" and if I think this place might be amazing for stoners.. But if you are looking for high quality pizza this is not it. I would however get it over the chain stuff.",review,OsYh3jArm6fgozczE85ZeQ,0,0,1 +0nGjXTpUtpIJl10PL0eBGg,2012-10-02,5RGS1U1Q07nm0GRON3W7Gg,1,"So far my restaurant experience in Phoenix has been subpar when it comes to service and this one took the cake. Everytime the server came to our table it was just to do one thing and we would be left in the lurch with our mouths silenced in the middle of asking for something. Finally the food came and it was actually quite delicious, I ordered the turkey eggs benedict with potatoes and fresh fruit. However once again the food was dropped off with no silverware, no condiments and no refills on the coffee. I truly hope the restaurant re-trains the staff or hires a whole new batch, because I am afraid food alone can not keep a business afloat.",review,OPACptBR7tu608O10JY2hA,0,0,0 +pzPbg_B2uSVJ72LIa2G3sA,2008-09-01,fgSYR0bdfR6Z1Hm0PkYorw,3,"I went to Genghis Grill one evening while the Beijing Olympics were being aired. My experience eating here was probably a lot like Shawn Johnson's experience at the games -- not quite the showing I expected, but GG still managed to eek out a medal or two. + +My favorite Mongolian places include soup and salad bars in addition to the ingredients to be grilled; Genghis Grill does not. I missed being able to snack on a salad while waiting on my first bowl. + +The ingredients were all fine; most seemed fresh, but I had to avoid a couple of the less popular offereings (for the life of me, I don't understand why bok choy hasn't captured the hearts of the American public). The sauces were generally tasty...think Trader Joe's bottled dressings and you'll get the idea. + +The highlight of the night was when I realized the shredded cheese that given to me by request came free and clear. Of course, this made me wish I would have asked for sour cream, too. + +You won't see a picture of my experience at the Genghis Grill on a Wheaties box any time soon, but the meal was pleasant enough for a solid three stars.",review,z1c8uQv7tfgrP4-sVggbTA,4,2,3 +s1dex3Z3QoqiK7V-zXUgAw,2011-02-11,DHoMwRFxU7ff2cvwDBcRrA,3,"I've been visiting, and thinking, and visiting again, and thinking, and finally, after a long deliberation, I am ready to issue a verdict. + +Ruling: It's OK and a worthy stop in Scottsdale for a pre-dinner beverage. + +Sure, I could front load my review with spicy adjectives, overinflated superlatives, some forced humor, and throw on an added star and hope for a ROTD (come on, don't pretend that you don't know the formula), but I am not selling my stars for a day on the big screen. + +If it's been said once, twice, and even thrice, need I repeat it? Yes, because it is true -- this is not Postino, and for that matter, this is not Kaz. It is a good, local spot to grab a glass of wine, maybe even with your mom, who may not be hip enough to chill at Postino on Central (which really requires little hipness, I mean they let me in), or your dad, who may not be able to read in the dark at Kaz, or maybe for that friend from Gilbert, who you know, wants to walk the wide straight path of predictability. + +Predictability isn't bad...in this case, that means a good wine selection (could rotate more), full bar, usually one good draft or two out of 5, decent cocktails, and decent food. The food is not really what you come for. The bruschetta is sub par, but the salads are above par. And, I have to add, hummus with no flat bread or pita?? No. No pita for you! + +Service runs from friendly (read, management) to disillusioned and inattentive. The latter tends to happen if you sit outside. The last time I was in, I think grapes were crushed, olives were pressed, and chickpeas were ground...at least they could have been. + +Often they have live music too, which runs from the somewhat awkward jazz guy who keeps talking to you to the Motown wedding singer -- which on at least one occasion brought out near Elaine Benes-style dancing -- now that was worth the visit and waiting for the grape crushing.",review,0NckJhx0qXykvvhsm-p7MA,2,3,2 +ADJIoHN3uLx-JalYl3r3Dw,2012-07-24,kZsO87tYXkjCGZlrmwN-jw,4,"Talk about options! It's almost unfair to have so many items on a menu. Especially when the food is so good. I have gone to the Cheesecake Factory several times and have not been able to even put a dent in the menu. + +So, I wasn't too hungry this time, so I decided to order from the small plates menu. We started with the corn fritters. Then I ordered the shrimp and grits and my husband ordered the hibachi steak. + +The only reason I didn't give them five stars is because we didn't get our appetizer until the our food was ready. And by that time, we had already stuffed our faces with bread and butter (which is delicious)! The server apologized for delay in bringing our app and the manager came by and didn't charge us for the corn fritters. That was much appreciated! We only had one of the fritters since our other dishes were in front of us and we didn't want those to get cold. + +I really like the shrimp and grits. I think the dish came with a little too much sauce...but that's just me....I just really liked the taste of the cheddar grits. My husbands steak was really really good! The hibachi steak is what I normally ordered. + +I will go back again!",review,kNO6w6EIKo8u6GSykOHBLA,1,2,1 +rRe2eLIQ4MQ7d6vFL26Qdg,2011-06-07,U_Rg2MYraPbMPmX6LRKjdQ,4,"I have to say they are better than Subway, that's for sure. At least they put meat and cheese and the fixing's on your Sub not like subway where they measure everything and you get home and you pretty much just taste the bread. The staff is young but very polite and helpful. Maybe a little suggestion...if you can make homemade salads like Macaroni, potato salad it would be alot better.",review,UfPzhC27R744fh2GWvdkkQ,0,1,0 +DIYHTgM-YGKWOWLzQ4XVhA,2012-03-01,lQNfrHME2aPQWKPTTI_kqQ,5,"I am always comfortable in Michelina's, the service is excellent and they are not rushing you to ""turn the table"". Michelina's cooking is fantastic! Her daily specials are so inviting that I rarely order from the menu. The drinks are excellent, bread just right, and the after dinner complimentary cordial is a nice finish. One of the best kept secrets in Phoenix!",review,7vQnlpDaZaUshuhUG8pzpw,0,1,0 +FGePlnlKXHxBrxYMNGtdAw,2012-05-21,I7XAjsgpq6eTB-IZD7UIng,3,"Mark-Keyed My Car +By The Rue + +It's Friday night with nothing to do, +How about a show, maybe The Who, +Got in the Jeep, +Hit the street, +Drove out to Tempe, +And went to the Marquee. + +Psychostick was the band I went to see, +They sing a funny song about boobies, +Tacos and Beer, +Both songs I did hear, +Watch out for the Narc, +Five dollars to park. + +Fully stocked bar is good to know, +Go with friends, take home a ho, +Steal toed boots, +Dyed hair with roots, +Get into the pit, +Deck the guy who hits. + +Snoogen!!",review,9JpnM-xebt0343KkGR_HKQ,1,0,2 +5-X03Zc0nN7U5eoe8uFUdw,2012-07-23,prxVVaazcKTVoV2t0wMJkg,4,"Everything about Coronado Cafe is charming and scrumptious. It's my go-to place when I want to have a nice, but not fussy, lunch with a friend. The menu has a lot of variety but not so much that it's overwhelming. I've never been disappointed by the food. The raspberry iced tea is delicious too! I like that they don't have any fried food, though my male friends don't so much appreciate that as they prefer fries with their burgers. + +Conversations can be challenging when dining inside-- the acoustics in an old house aren't the best to begin with, and then you cram it full of people and it gets a little noisy. If you can't tune it out, the patio is a really lovely alternative. + +All in all, you really can't go wrong here!",review,jli9G-mRzOGuN18DpZGw1A,0,0,0 +jFfrM1y-L1icUZXjBpxmeg,2009-05-27,33215ggRaESx7Mc8mSOtmA,5,"I am a hot dog lover. + +For the past five years I've found no greater joy in Phoenix than hitting up Nogales Dogs for the best meal on the planet. Each evening when the Keyboard City on 20th St. and Indian School closes, the parking lot is converted into a quaint little dining atmosphere. I most enjoy going around six, the sun is setting and the buzz of traffic makes Phoenix seem more alive. This is my own preference and I know many people who hate going at this time because of the loud traffic. The bacon wrapped dogs are made to perfection with your choice of mayo, beans, tomatoes, onions, jalapenos, cheese, mushrooms, and lettuce. And to top it all off you can wash it down with a Mexican Coca Cola, mmm so sugar filled. Don't forget to bring cash and your appetite.",review,5-Gs3DpLZk6FjviyeXvR-A,2,3,2 +53YGfwmbW73JhFiemNeyzQ,2011-12-10,OAlf6-j4AS4add4-ZGs4wA,4,"nice and trendy restaurant with great food! +will definitely come back again!",review,AIvZS_tQ7y-ADNji1KM9Bg,0,0,0 +BojnLUPz5IzZKyQocGc7uw,2011-07-03,3SOFMqIxZMFuVhvF6mF_7Q,4,"I'm very excited about their authentic and inexpensive menu. We just had appetizers today, but can't wait to come back for dinner. The mofongo and alcapurrias were beautiful.",review,h-4y7lXX2vbu0S4IJ7OSiA,1,1,0 +t54zAs7IftAVb9SKcCRotw,2009-10-18,kW99ou1rgbj2FnzMGYh7NA,5,"Best Greek food I had in Arizona and excellent entertainment. + +The dolma's were the best I've had, their version of Babaganoush was very good and they had many lamb-based dishes. + +The entertainment was great. Live music, belly dancing, greek-style fun, broken plates, and dancing. + +Since I had the sampler plate I can tell you that if you're vegan, vegetarian or any other wacko thing like that, you might not enjoy the food here (Greek Lasagna?....really?) Also, the chicken was no good but I don't really like chicken anyway.",review,Pl4fs0QWR8FbnVNCzqF9lg,3,3,1 +BZbW0vha5fg4qTfwHMnYjw,2008-07-06,z97QQcbKhUsgO8XowYhR6A,2,"What has happened to the Coffee Plantation? I've been out of the Valley for 8 yrs. and the Coffee Plantation was always such a good place for food, bakery items, and of course coffee. On my last visit the store was dirty, the full menu of food was gone, and the coffee was burnt. I went to the Biltmore and alas that location was gone. Where did my old Coffee Plantation go?",review,HHqdz6xvmz3c_XQV6MPLkA,0,2,1 +EFFIduf9WaUNbDy_O7yQjA,2012-07-18,fQvwelk-AnTMcmkcfEkc2A,4,Great fast service! Friendly girls that carried on fun conversations. Beautiful salon with nice pedicure chairs. Great prices too!,review,pGaRAiCRfGs715VbgXf-yg,0,0,0 +km3g-wDO2KfhfnTvJrLJig,2011-02-24,v1EPSrG6zRUhd41Jt2ZTHA,3,"Last night after developing a huge craving for Panang Chicken and browsing Yelp for a good place nearby, I decided to call Papaya. The guy who answered the phone said that due to a downed gas line in the area they couldn't operate, but their Mesa store would deliver to me for no extra charge since I couldn't come pick it up like I wanted to. I said this would be fine, placed my order, and the guy said it would be about 45 minutes. An hour and 15 minutes later the food still hadn't arrived, but I figured it was just because it was coming from Mesa. + +When it finally arrived, I was starving, so I opened the food immediately, only to find out that my Panang CHICKEN was nothing but sauce and a few carrots and bell peppers. On top of this, I had been charged a delivery fee when they said I wouldn't, and I was charged for chicken when I got none. I called back immediately to tell them my food did not have any chicken in it, but was only sauce and a couple vegetables. They informed me that they were very busy and would not be able to bring me another order that night, but I could call back the next day (today) and they would bring me another order. I was upset and hoped that for all the trouble the food was at least good. Well, it was. The panang sauce was very delicious and perfectly spicy. Although it was not made the way I ordered it, I could still tell that it was very good and I would definitely order it again. + +Today, I called back and they brought me a new order, this time of Spicy Eggplant with chicken since I had already had to eat the panang I ended up with last night and didn't want that again at this point. They were very nice about making it right, and they delivered it to me again at no charge and credited back the charge they made last night. Delivery took about an hour and 15 minutes again even though he had said 45 and this location is about a mile from where I live, so if you order delivery expect a bit of a wait. As for the Spicy Eggplant with chicken, it was REALLY delicious. The eggplant tasted like some of the best I've ever had, not mushy but not firm, and I finally got my chicken and yes, it was very good. SO in conclusion, the food is great but I hope that they are more organized when they aren't having technical difficulties. Probably won't have them deliver again but I would definitely order from here again. If there hadn't been all the problems I would give them 4 stars but the fact that I couldn't even get my order corrected that night was upsetting.",review,1uwqR1r9nMDgI6RZT_bL2w,0,0,0 +iDYzGVIF1TDWdjHNgNjCVw,2012-01-03,gIPQQHC-L3okQJVY9fuJtA,4,"Mole sauce was amazing! Chicken was a little dry, but searously the mole sauce was good enough to eat with a spoon. +Skip the fundido. The waiter could not explain some of the items on the menu, which was funny. The hicima tostado was great! so was the mango crab salad.",review,1sLwaXtQpwg4sMWHnh4IuA,0,0,0 +Kur7YGwuw6CqnqEypNrOvQ,2008-11-11,m6UYld-4pFluBlpHV-FgcQ,5,"Clean, organized, and well-stocked (for the most part), Fujiya's carries my favorite car freshener, chips, bread, and iced coffee (in a can) among many other good things. Reasonably priced and extremely courteous customer service, I am always happy to shop there. The bentos, I wish, are kept in warmers like Suruki in San Mateo, CA, but Fujiya has an area adjacent to the register which includes a microwave to heat your purchased bento, so you can sit and eat and relax after shopping. What I love so much about their service is that I can place my order ahead of time and they'll have it available and ready. I think this is the only Japanese store that has just about everything I need to stock my pantry. It's no wonder I've been coming here year after year.",review,q9BKnyqR9roAsWnxAIaWVA,1,4,1 +Y-PnvV-q4HYLIy19ubVmXQ,2010-10-02,4Y2-0uelB_2L3UQQVj4h0w,4,"I go here for the free wifi and the bleu cheese crumble salad. That's it. Bleu cheese, craisins, sunflower seeds all on a bed of romaine. LOVE IT. I don't think I've ever had anything else on the menu, now that I think about it. Free wifi will get me in every time, that's for sure! I chose this location because I was in Phoenix in-between activities, and didn't want to drive back to Gilbert. This was at the Biltmore, and yeah, you knew you were in a Paradise Bakery at the Biltmore. Kind of funny actually. What can I say? I like to people-watch. :-)",review,DOJM58OkGSsIdk2qCUZnLQ,0,0,0 +0udEgNqy5rLR5pZ4kD19Og,2010-01-27,P0pSbTN4PE2Qk1Krdfb3nw,4,"It is always nice to find a place that can make just about any dish with tofu as the main protein. This means a vegetarian like me can choose from any dish on the menu. Despite this flexibility I tend towards the red curry. I get this as hot as they will make it with out an argument ensuing, which is usually pretty decent on the heat scale. It is a great medley of crisp vegetables in a creamy coconut milk base red curry. The tofu is the fried style which adds an interesting textural variety to the standard tofu. + +The lunch specials come with a small salad, a small soring roll and a little slice of watermelon all in the $7 range. + +Service is decent, my water received frequent refills as i tend to drink quite a bit with spicy food. + +Parking here can be a bit tight at high times, and there also may be s small wait. If there is a wait go to the liquor next store to find an amazing beer selection.",review,M6oU3OBf_E6gqlfkLGlStQ,1,1,0 +LGAmOIbwXPgC5z87vI5fcw,2009-06-14,2GD6pVlCaEk1_oOgLSyGQQ,1,"Sorry Banana Leaf... I'm usually not picky at all but the Thai Curry Tofu and Vegetable dish I picked up last night was awful. Really... it was almost not edible. The packaging was not great, so it kind of spilled a bit in the bag - not a good start. + +Perhaps the curry is the 'yellow curry' that Jenny R refers to in her review - maybe the chef should taste it before serving it - it was nasty! + +Seriously, I've had better Asian food from the food court at the mall before! + +I will say, you did listen to my request to add eggplant to the dish - thank you... but if someone requests eggplant, perhaps you should make sure it's cooked fully next time. I had a bite that was barely cooked - it was crunchy. + +So, needless to say - I don't think I'll be giving you another shot. First impressions sometimes last a lifetime. Sorry Banana Leaf!",review,fczQCSmaWF78toLEmb0Zsw,7,14,5 +CpRO_EC8sbn93UE8Jx7zDw,2010-06-08,tHj4BbPn9wqmnKu28C41AQ,1,"I would absolutely not recommend living here. I lived at these apartments for a year, and wow was the management staff a MESS. When I moved in, my mailbox was broken so I couldn't get mail for a week. They didn't give me a pool key, they gave me the wrong apartment keys, they would mix up all my information, and they just weren't very nice. I can't remember how many times they lost my work orders so I'd have to call and call to make sure things got fixed in my apartment! The neighbors were loud--I had to call the police maybe four times because they wouldn't turn down their music and I had to study for school and finals, and random people came banging on the door looking for some girl who had obviously p'd them off. The police came to my house in the middle of the night looking for her, too. One time, they gave my garage to somebody else even though I was still paying for it and when my husband came home in the evening with his pick-up full of expensive equipment, we had to wait for the cops to come and figure out whose car it was who was parked in our garage! it was a total nightmare. Shortly before I moved out new staff came in and they seemed somewhat better organized. But---I wouldn't take the chance. For the same price, you can definitely find somewhere better to live.",review,YrYxEQmacf0KN6pUuACCFw,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-02-26,j-sgX6lA1nIsh7iFZ-R6Sg,4,"You my new found friend are uber popular! And, I can see why. Your restaurant is ridiculously friendly to families, girls day out and boys at the bar. I rolled in for a late day brunch with a girlfriend and was immediately seated and got to ordering right away. The menu is pretty straight forward and not real complicated. + +I was in the mood for booze, really when am I not in the mood for booze, and Francis, you saint you, you delivered this fantastic gin cooler. It was excellent and I made me think I should have a pool party and serve them to all my friends, or just sit at your bar and order another! With my booze, I needed some food and I went with the eggs benedict. Hollandaise sauce is the true test of a good eggs benny. Your hollandaise is really good. Fabulous in fact. The eggs were nicely poached and I have no idea what you do with the english muffins but there was something spectular about them....All around tasty. + +All and all, I can definitely see myself coming back the only draw back is the parking....more parking please!",review,IzMeF5f2043jgDjhzNeDbg,2,1,2 +2bdKR3l4o-S1CscLqqnvVw,2010-12-15,4t8qdFnxaDy2TuivniAyVg,5,"What a great find! Located off of Yelp after a business meeting in the area & we were hungry before we hit the road. Very comfortable space, lighting is good so you can see each other & your food which is not always the case. The decor is not overwhelming but extremely comfortable, some TV's, Thai decor & more pop music on the overhead. The staff was extremely attentive from the moment we walked in through out the meal. My Jasmin iced tea never got to the bottom. The menu has great variety. The pad Thai was excellent as were the vegetarian rolls. The Tom Ka soup was excellent. Every member of our group got something different and they were all extremely happy. We will be back. Pricing was very reasonable. There is patio seating available. Check it out.",review,lCq45LZbHpZXD72GJ7YOXQ,0,0,0 +Lnohr9bpCbHNsomazXDg-w,2011-08-28,mJgy2lgZsZTtWv5kjG-Alw,5,"Today was the fist time I have been to Chino Bandito. My friend has been there several times and loves this place. After having a few beers, we were pretty hungry and decited to go here. This place is mixed in a sort of industrial corner behind a Walgreens and a transmission shop. Walking in you will notice how big this place is inside. Customer service was excellent. The counter person was great in explaining the different options on the menu which is a mix of Mexican food and Chinese food. Great concept for something different. For ten dollars I had the Carnitas burrito and a Jerk chicken burrito with Jerk fried rice and black beans and a large iced tea (all you can drink). It also comes with a Snikerdoodle cookie. Wait time was minimal and the food was brought very quickly to our table. I really enjoyed the items that I had order and I found the carnitas had the right flavor and tenderness in a burrito (you can also get it in a bowl). The Jerk chicken burrito had some zing to it. Enough to make me sweat a little. One thing that I noticed was that the employee's were really good about keeping the place clean. Sweeping, cleaning the tables, wiping up around the drink dispensers. I also noticed that they wrap all of the highchair trays in plastic to keep the clean and dust free. +One last thing, they have free wifi!",review,SRlh4J85Js9ozC1eco6DQQ,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2010-11-08,WQSp8voaezCeBhpl-hMoYg,5,"Too long.......it took me way too long to make it to Sens. Sens is what we need more of in Phoenix! + +Seated promptly on a Friday night by Johnny Chu himself, Johnny Chu really has put together a winner here, Johnny Chu.....alright, I admit it...I like saying his name! + +The Asian tapas idea is new to me, having dined at some great Tapas places from Chicago to Vegas, but alas never an Asian tapas joint. I must say no Spanish tapas place ever made me feel like Sens did (except the time I drank a pitcher of Sangria)! + +The Tofu dishes are amazing. How do you learn to love Okra? Get it at Sens. The Hong Kong rice noodles were not what I was expecting so I was a little taken back by them looking like a plateful of water chestnuts. One taste was all that was needed to cure my trepidations about the flavor - fantastic! + +I will be back to Sens Tapas & Sake Bar soon - do you think you could invent an ""Asian Sangria""? C'mon Johnny, I know you can do it!",review,0VptqMr6enVCnqRjVYs4NQ,2,3,1 +MFlkmsxlDloSiEd8SLjnAQ,2012-03-27,CRXQ6kZve81A0QF4BHwEUw,4,"My mom and I stopped by for a late lunch yesterday. The menu and the food were the same as other Paradise locations. This location wasn't nearly as busy as the others which provided a nice and quiet meal for my mom and I. The onlt downfall was that I have experienced friendlier staff at the other locations. But overall, it was a decent dining experience. + +The thing I love about Paradise is their consistency. The food always tastes the same each and every time. And I have yet to find anything I don't like.",review,uYecHRyGu6zbLP5NRnNFyA,0,1,0 +7LGjM8HKJTwqfYU3C7N_0w,2010-12-12,pfLmiemhstIIdX8WjnUIOQ,3,"Being the B, L, and D (breakfast, lunch and dinner) restaurant of a major valley resort takes allot of versatility. From scrambling eggs to grilling a piece of meat the new Rico's American Grill at the Point Hilton Squaw Peak Resort shows that all this can be done and more on a daily basis. + +With two massive patios, a large bar and lounge area coupled with a fantastic selection of locally made beers on tap, just beckons you to try them all out. This is easily done by ordering up a Beer Flight ($7) which gets you 4 5oz glasses of their best brews, though this will be tough to chose, they're all good. Then you can order a capped 64oz growler ($20) to go! A growler is simply a large glass jug filled with your favorite beer, your choice. These are all the rage in other cities so I was excited to see Rico's making this offer. Id fill it with my latest favorite, Left Hand Milk Stout Sweet Stout. Think rich flavors of chocolate and coffee blended with milk sugars to give a sweet and creamy taste. + +In the large dining room you'll notice a wood fired oven. Unfortunately Rico's doesn't take full advantage of this, only offering a handful of menu items cooked in it including the BBQ Chicken Flatbread ($12). Covered with pulled chicken, red onions, Rico's BBQ sauce and mozzarella, this paired well with our beers though could have used a bit more salt, easily remedied. Another glimmer of what could be was the Wood Oven Baked Penne ($13). Several large meatballs, roasted tomato sauce, fresh mozzarella and pesto ricotta cheese and al dente pasta made for a hearty satisfying meal. + +A bit lighter but bold with flavor, the Chopped Salad ($10, add grilled chicken $3) made with grilled corn, black beans, bacon, tomatoes, cucumber, avocado, and BBQ-ranch dressing was shaken, not stirred, literally. The salad is brought out in a large martini shaker, dressing added on the spot then shaken well. Kind of a neat twist on table-side salad service, what's old is new again. + +The Wicked Meatloaf ($15) could have used some of Rico's BBQ sauce for a sweet contrast instead of the semi-boring-more-like-brown-gravy cracked pepper demi. The meaty slabs were paired up with roasted garlic mashed potatoes that were well seasoned and comforting. + +Perfectly cooked and perfectly tender, the New York Strip Steak ($21) had a warm poblano and bacon relish that I could have eaten by the spoonful. The smoky sweet relish made the need for any sort of steak sauce not necessary. Along side was a heaping helping of green chile mac 'n' cheese, so creamy and so gone, delish. + +Apple Skillet For 2 ($7) takes apple slices simmered in a brown sugar and cinnamon, thanks to the wood-burning oven, then topped with cake crumbles and served with cinnamon vanilla gelato. If the skillet weren't so hot I would have licked it clean. + +While Rico's may not have yet achieved culinary greatness, what you do get is solid Southwestern influenced American grub.",review,lPaYMDmJbAnv_3pmZH_inw,2,4,0 +0ylC0tsPUY3yaoXRaCDL3Q,2012-09-27,Hc2DVjBd07gNVEH3fp-90w,5,Great home made taste on the meatballs. Also they have diet coke. Shop was nice and clean. Friendly and fast service,review,l2zoX2M4OBuAE_q2A5qW8A,0,0,0 +JJDaF4yFPLgQ3u678qyL2w,2012-01-23,yvM7ClgYNMYWipu5fTA4qw,1,"I had received an email from a student retention telling me that I still owe money for the time that I had taken classes (two weeks) although these fools canceled my financial aid. I will sue this school if they even attempt to collect money from me and I have withdrawn from the classes on the right time, but this rep. told me that the withdrawal period was Jan. 11.",review,PvhTkEHEGTwB65KN_IUkPQ,0,0,0 +cWnISQaO33CwpQRPcq6nIg,2012-06-07,80E33s58TisNvlyjDUUfwg,5,"What can I say except that Jodi is incredible. I had purchased an online deal because I've always wanted to do something like this and thought it to be a great gift for my other half. I sent her a message and she quickly responded. Almost everything I needed to know for the shoot was emailed to me. You have the opportunity to do your own hair and makeup or have someone she works with do it at a reasonable rate. I highly recommend that you get it done by her ladies. That day I saw Erica. She was really fun and got me into the mood (the glass of wine helped too :-) ) and she did an incredible job with the makeup and hair. For those who feel a little nervous I do recommend bringing some wine along with you. It really loosens you up a bit and allows you to be more comfortable. It was perfect since my first photos were the nude shots. Note: wear loose fitting clothing, nothing elastic and be sure that you do not have a sunburn on your body. Let your hair air dry and it is OK to put on your own serums and moisturizers prior to the shoot. Make sure nothing with sunscreen gets on your face and while it's not necessary, I made sure to use a primer. I thought it really helped out with how my makeup set. Be prepared to pose in positions that may be a bit awkward and also note that you will likely be sore the next day from the different twisting that you have to do. Jodi really knows how to make you feel comfortable and at ease. I don't make a habit of being in the buff in front of complete strangers and for me to drop my robe without feeling shy was a big deal for me. It helped that I had my own music mix on my iPod throughout the entire shoot as well. The overall whole experience was incredible. I felt sexy and confident. I went back with my honey to look at the photos. He really really liked them and had a hard time choosing which he wanted to go into the album. I can't wait to see everything finished. I can't wait to do it again :) Thank you Jodi for making it such a memorable experience. I highly recommend her and her ladies!!!",review,GnfhkMo0Y5qDsEOGSpvD7A,0,1,0 +DpVZRn15Trc4oBU6MIxr3g,2009-12-06,N-eGD9Zs9zb5tkrifBfa-g,4,"Good clean Chili's. Friendly staff, although that can be a bad thing... since I have to tip them extra because they refill my cup every 5 minutes. I have been going a little bit more than usual because of the ""2 for $20"" deal. Never had a bad experience here, just wish there was more on the 2-20 deal.",review,aU4fCjkwP6Z8aR5azt9pSQ,0,0,0 +lvpXyfTDF5WZnjzc36r5Wg,2009-02-02,CdnEXfmpUTxkTVmZJTeUIw,5,"The best burgers in Phoenix. The owners are great and am on a first name basis. Forget about fast food and support this local business. + +Go double. +Add bacon. +Park at Circle K if in a hurry. +Plan on holding it until you get home. +Stick to the burger and fries, genius.",review,bDPFpoB-Uaf_nPBS5tF6Jg,2,1,1 +tfVKzEDu8XYyP8KO1dsNvQ,2012-12-07,5PTxfrfT3QM72BBgDeb_cA,1,"I'm sorry to be what seems to be the lone one star review. Either I got there on the worst day in their history, or everyone drank the Koolaid, or I just have different expectations and taste buds. +It seems like a great idea. It's a build your own burger joint, $7.00 gets you a cooked to order burger with one cheese, up to 4 toppings, and 2 sauces with fries or onion rings-or some other choices. They also claim that the beef is local, hormone free, etcetera.... + +I chose a rare burger with American, grilled onions, sauteed mushrooms. tomato and lettuce, with mayo and mustard on a potato bun. I added bacon for a dollar. + +First, let me point out that if you are in a hurry, DON'T GO HERE TO EAT. I waited exactly 39 minutes for my food. This would not be a big deal if: +1. I had been warned before they ran my credit card--what if I only had 30 minutes for lunch?? +2. They had places to sit but it's tiny and full. +3. They had magazines, a jukebox, ANYTHING to entertain you for 39 minutes. You can't even get your drink early to sip on that. + +At the 30 minute mark, I'm ready to eat cardboard with a little ketchup on it, so maybe they make you wait so everything tastes even better? +Anyway, before my burger comes up, I notice that the lady behind the counter is saying that the orders overwhelmed the kitchen. I look in the kitchen---they have ONE GUY TRYING TO DO ALL THIS?????? He'd better be getting a share of the profits!!!!! Now I'm jsut feeling really bad for this guy back there. + +I finally get my burger! YAY!! I'm SO excited! All those 4 and 5 star reviews! I take a bite and....the patty shoots out the other side of the bun like it had been shot out of a cannon. +WTH? I look at the patty. It's clean as a whistle. I mean there is no mayo or mustard or cheese smeared on the patty. I turn it over and it slides out of my fingers back into the basket. The other side is clean too. The freakin' burger was so greasy, it slid all over the place! Then a greasy glop of what must have been the mushrooms and onions slid out. Still not seeing any cheese, mayo, or mustard anywhere. Just oil. Tons and tons of oil. I open the bun, On one side is a heavily oiled slick of lettuce glued to the bun by (I am guessing) a slice of cheese. The other side of the bun has some mayo and mustard residue--and more oil. I'm grossed out, but hungry. I take a bite. It's not rare, It's well done and oddly, tastes very faintly of liver. BTW, remember the bacon I paid a dollar for? Not there. I'm really puzzled that instead of cheese. or beef, or SOMETHING, I just taste that faint livery taste. So I take another bite.There isn't even any salt or pepper, or anything on the burger patty. This is perhaps, the worst grade of meat available for human consumption. I take a third bite because that second bite brought back a memory of when I worked for a meat company here in town. Now I recognize the flavor. I'm not saying that what I ate that day at Two Hippies was old dairy cow, but that's EXACTLY what it tasted like. + +At this point, I turn to the fries. The are shriveled and DARK and taste like they've been fried and then microwaved. + +I couldn't get out of there fast enough! Forget my danged dollar! just get me in the car! + +Exactly one hour and 20 minutes later, I had vicious diarrhea + +I haven't had that trouble even with eating junk food at the fair! + +No. NO. A thousand times NO! + +Red Robin is my next burger stop. Period",review,XpSZrY_Ym8GGx7SNEd0q9g,0,0,1 +BIYvJTxDQQdwMEBh4Ltw4A,2008-04-10,K__Nk3SBWWCZ072dBzmmog,5,"So, for my date tonight to the Compass Room, I needed to get my nails done. I removed my acrylics myself last week. +I read the reviews here and decided to try DV. +You know, sometimes when you walk into a nail shop for the first time, it's almost like the Soup Nazi. Not this place! +There were two girls ahead of me, so I waited a bit, but only about ten minutes. +It's bigger than the place I had been going to! Really clean and I heard ENGLISH being spoken by the nail techs! That was nice. Yeah, there were still speaking Vietnamese (or so I think) to each other, yes, probably about us gringas, but it was refreshing to hear actualy conversations. +I had Le. She was so sweet! I told her all about my date, too. +She was quick, and made some suggestions about what to get. Usually I like clear tips that they have to paint. I was kinda short on time, so I went with her suggestion of white tips. Plus, it was about $5 cheaper. +She was quick but *really* methodical. +I think this may be the nicest set of acrylics I've gotten out here in the PHX! +She even called me by name throughout the conversation. +$25 for a new full set. Not bad at all",review,6kmu0mYbdpMIOZ6Y0eVsxg,2,5,1 +XbVqzUHS3c9FhG4lI13c3Q,2009-09-05,I8uia6nqcsPirdHKSPs7Hg,5,"Feeling yucky one day and wanting nothing but some reminders of my bay area asian food... My search began with my iPhone for Pho.. AND I wanted good Pho.. (Im skeptical of some dishes in the desert, just sayin'!).. I drove a good 20min from my loft to find this place.. worth it. Usual toppings you will find with real Vietnamese Pho.. but awesome! I asked for a variety of tofu and seafood.. I couldnt finish it all.. but never can with Pho.. its a big bowl, and filling! +Extras on tables to get your Pho on.. +Ordered the Vietnamese Shrimp Rolls too.. left feeling not so stuffy! AND full.. OH yeah, and I still had money for a bit of shoe shopping the next day... :-)",review,sALB8-F04S9VcZMF_GkGUA,3,3,2 +pwpl-rxwNRQdgqFz_-qMPg,2012-12-09,WUw1InpA-ZoN306hrLyEjQ,5,"My wife's work had their Christmas party here last night. Although the customer service was slow and average at best, the food was outstanding. I had a burger and my wife the steak salad. I was the DD, but my wife said the margaritas were excellent. Dessert was tiramisu and sweet potato cheesecake. Great little place with a nice vibrant ambiance.",review,pQ6ij6cOBRB3yJGHbVZHUQ,1,1,1 +m5i2s4k994c8QumJPRNjGw,2007-11-29,SYK_LgV8wDoezdu9acfz2w,1,"Ok, so I have to share my morning experience. But first I must start off by saying this: I'm no moron. Honest. + +So, this morning I stopped for gas. My tank was getting dangerously low and there was no way I'd make it to work. That's okay, for I allotted time this morning for re-filling my tank. From my casa, I turned East on Indian School, vaguely remembering there's a Quick Trip nearby. Perfect. I had stopped there before. + +But it wasn't a Quick Trip I saw at the corner of Central and Indian School. Not wanting to risk running out of gas, I opted to stop here, at this ampm station. + +I pulled up to the closest gas tank, got out of my car, took off my gas cap and reached for the gas nozzle. Only then I discovered there was no pay-at-the-pump option. The short notice on the pump said to select my grade and start filling. ""Wow,"" I thought, ""It's so odd for a station to trust people - especially in this area - to not drive off without paying."" + +So, I followed the instructions, but nothing happened. I kept hitting the grade button. It kept beeping back at me. Still nothing. To top it off (no pun intended), the nozzle was wrapped in this huge rubber tube thing that compressed when I applied pressure to the handle. I had never seen anything like it. + +Thinking my particular pump was fuct up, I pulled my car up to the next one. That's when I saw it - this strange machine, like an Amtrack ticket dispenser. I approached with curiously. That's when I realized. You swipe your card at this central machine (or deposit cash, if that's your preference) and then go back to your pump. Ah-ha. This is how this station works. So, I did just that. I punched in my gas pump number (4) and went back to my car to re-fill the tank. Already annoyed at this point, I figured I'd pump enough gas to get me through the next couple of days. + +Only, it wasn't pumping. The long rubber thingy was hindering my ability to hook the nozzle up to my gas tank. UGH. So, that's when I flexed my muscles and applied enough pressure to squeeze out $12 worth of gas. Then I re-hooked the nozzle on its perch and walked back to the strange machine for my receipt - it told me to do so when I swiped my card. Only, no receipt came out. I punched the keypad with defiance and walked off. + +Stupid ampm station. Since when does any gas station benefit from being different? I'm so used to pay-at-the-pump; you just swipe your card, select your grade, pump your gas, grab your receipt and go. Quick Trip doesn't torment me like this. There is no rubber nozzle thingy in my way. Grr. Screw this. I'm never going back there again. + + +(Disclaimer: Said writer of review graduated high school with a 3.98 G.P.A and attended a well accredited college of her choice, where you went on to graduate with honors, having made the Dean's and President's Honor roll more than once. Said writer of review also has street smarts and is able to saddle and ride a horse, do unimaginable cool things with a twisty tie and throw some mean Muay Thai elbows.)",review,APLIPfq1Rf8QyhHHk2uAyA,0,1,3 +mWG80MfKn-uRv-RCA_UJDQ,2008-07-14,GnTHZqUcie_2EbR9I7O9RA,4,"This place is a little pricey- but you get what you pay for. Johanna's flow class is great. The only con I have is that classes can be packed, they don't offer tons of early morning classes- but this is the best place in the valley, by far, for yoga.",review,YoBgKOdfpGH48LpIDSfoQQ,1,1,0 +A7A97vyr5t7e8zrkGCKndw,2011-07-11,2_EhDKYWR5Pq0fg1fbcDQQ,2,"They close earlier than most large book retailers, 10pm ... Major bummer for those who like to hit up a bookstore late at night instead if the club! Lol. It seems I usually can't find what I want at this particular location. It's in my area or I'd probably pass on it altogether. This review is location specific. I do love bookstores in general...",review,8fTTvS499XCz4oP49kxq8A,0,0,0 +qb4PzVr19bXXLBf71dd5kQ,2010-08-16,bgu-8nC_yGtxyOeKmiFOMg,4,"Duke's is the top place in Scottsdale that my friends and I like to hit up to watch a game, or just grab a drink and bite to eat. The place is huge, the food is priced well for a bar, and there's almost always a decent beer special. + +In addition to several TVs placed around the bar, there's plenty of pool tables, dart tables, and shuffleboards to keep everyone entertained. + +The menu is big for a bar. The odd, also very good, part about that menu is the salad selection. Duke's has two pages of its menu dedicated to salads. While not something you'd expect from a sports bar, it's nice to know that there still is a healthy selection I can choose from while watching a game. + +Another cool feature is Duke's ""No DUI Car."" It'll take you to your next destination. How can you not like that?!",review,thdVzCfKx-DV0zYWqId3pw,0,0,0 +ncuj9qx4WjprfJfYJGdmtQ,2011-01-26,cp20maH9XtsB-9776xPBmw,3,"This place is great to go in and have a look at the plethora of neat toys and candy they have... but that's about it. The prices are way too high and a lot of the items aren't things you can't get anywhere else. They also have a real lack of imported candies/chocolate which is something I would drop more money for. Be prepared to buy more than you wanted if you only have plastic - they have a minimum of $6 to use your card so I had to buy two sodas I didn't want in order to get my handful of candy. +With all that said, this is a really nice, unique local business and I love the idea behind it, but I don't have a lot of free cash to spend on a bag of gummy bears I can buy at Circle K for $2 less. This is definitely a place for gifting only and not just when you want something sweet to eat.",review,o8J-ergbGYjrUy85I_rxzw,0,0,0 +AryNioF9fxl8RYGiIE7fSA,2007-09-05,I7Jdf9LNuDfjun9bQG0J1g,5,"Sauce is my kind of place. Great, inexpensive food, casual yet trendy atmosphere, perfect location. + +Located right by Urban Outfitters and Olive and Ivy at the Scottsdale Waterfront, I like Sauce as a pre or post shopping bonanza meal. I always have the same thing: the mozzarella and tomato salad (which you should know is mostly greens with chucks of each, drizzled in balsamic), and the artichoke and portabella pizza. This is a huge meal so I always have leftovers which make for the perfect 2am after-bar treat. + +If youre feeling particularly saucey, you can have yourself a glass of wine as well.",review,E0WWNXVze_sfDCbM0oMYvw,1,2,0 +SDwYQ6eSu1htn8vHWv128g,2011-07-23,Fq0hEKLCu_vkKRGWX5oJiQ,4,"Great early bird specials on wine and mini-pitchers of beer before 5pm, only $5. The food is very good and taylored to a wine menu. A very nice place for a date with your wife or significant other.",review,eebh5dSAeB3KQz6mraPGng,0,0,0 +Oc-F6O91vOe3T8iOsCBB8Q,2012-06-11,vCzrQ5MIs-SBnCU5opxSzA,1,Wow. Worst food poisoning of my life. Ate here Saturday night for my birthday. Started to just not feel right about 20 minutes afterward. Sunday I never left the bed except to go be sick. I lost a full FIVE pounds in one day. Stay away from the salmon. I for one will never go back. I'm really sad too because I decided on it from the reviews. Another reviewer said they were disappointed in the recent quality. I should have listened!!,review,A8e50wVP7xcz1sWOE6gEbQ,0,3,0 +tZXPhvufHhfejGrRp554Lg,2011-03-17,IuBsG-8VvN8ksUflnrNRQw,5,Loved it! Best French toast ever!,review,yrjYaNwH2lA3-xOAtwvKDw,0,0,0 +Rga1ZkAyy-mFQmICQ2akVw,2012-05-14,A5IvvLYkcSeYd7-qGawsIw,5,"I used Harvil's Auto Body after a fender bender. They were one of the auto body places that was included in State Farm's program. They were efficient, friendly, proactive, highly-responsive, and helpful. I especially appreciated that they kept me updated on the progress of my automobile and advocated for me/my vehicle when needed. This level of high-quality customer services is hard to come by. If you have a choice, choose Harvil's. You won't be disappointed.",review,g3maenY9AgoZ6koLJZibpw,0,1,1 +CEswyP-9SsXRNLR9fFGKKw,2012-06-06,lgNrXPBDKbyTQxE-w7Fvcg,5,"Came for the beer, stayed for the scenery.",review,8Y5ETV2Xf91biKj_sajB2A,0,0,1 +mVqw4ktkXhmpbTichSzuIg,2011-04-15,t6DQoyEm5tRkKQLQhv6lkw,3,Two stars because there isnt a drive thru.. and Im a lazy American who forgot that when you live abroad you walk for coffee and your needs.. Three stars because the peeps working are as friendly as it gets.. but the sugar/condiment bar is dirty.. clean it up Starbucks!,review,sALB8-F04S9VcZMF_GkGUA,0,1,0 +-4A5xmN21zi_TXnUESauUQ,2012-12-22,4dyAnJ4EW-4DOUmkFilOSA,4,"Great breakfast and lunch food in Scottsdale. Very cool that you can do drive-thru and come in for a quick, delicious meal.",review,rotKO3R8h23YbiLFaZ-BLg,0,0,0 +CQDxI8giIc6Kg9hQFLC6Uw,2012-04-04,jTihSlg34X_9hwZJf6DUTw,5,"Great subs, the Club Supreme mike's style was really good",review,vys5F5J7LyQ9pt1fiJCRCA,0,0,0 +Tgk_OouuTX4UreQcHbem4A,2011-01-13,K_owB_2fPQtaWQNMPJAQNQ,2,"The only thing that this Krispy Kreme location has going for it is convenient location and a drive through. You will not see any dough-nuts being made here which is sort of part of what the Krispy Kreme experience should be. Seeing them being made; ordering them as they come out so they are still warm for your first bite. + +Now then let's consider this review then as if this was a regular dough-nut shop and it also does not stand up. The mom-and-pop shop I have closer to me makes better tasting ones, but it is probably because they make them right then and there. + +I am assuming that they are hauling the ones they do sell here from a different location or a centralized place where they make them, which completely explains why the glazes, etc. taste as if they have been sitting for a while. They are still ok dough-nuts. + +The other thing that this place lacks is in the coffee. I ordered a coffee and the person had one of those Super-sized Shamrock farms half-and-half containers and asked us if I'd like some in my coffee and to tell her when to stop. I am sorry but, who puts anything on their coffee without even tasting it first. Not me that's for sure. Worst experience getting coffee here. + +Bottom line: The dough-nuts here will not be what you would expect from Krispy Kreme and forget about ordering coffee that will be to your liking.",review,V3ITtKg7jkHNWOU0aod7eA,0,1,0 +ZeHShnkhjkBvGi5BbYTJOw,2012-06-22,F-RmBa4oOdKV6OT5bjT9-Q,4,"Awesome pizza, great cocktails, and salads. Friendly staff. A favorite!",review,Hqgx3IdJAAaoQjvrUnbNvw,0,2,0 +3n9mSKySEv3G03YjcU-YOQ,2011-02-02,MTksC2ZIaypyLRzE5fIcdQ,4,"Great girls night out place. Wine selection was extensive and we DEVOURED the Bruschetta! Try to get there for the Happy Hour prices or you will be paying a minimum of $9 per glass of wine. +One of my new fave places :)",review,N-0qJ-03xPg2t5lYu0z6BQ,0,1,0 +VVeogjZya58oiTxK7qUjAQ,2011-05-24,q_tLyg64QtRtAI4lRGhz3g,4,"The hyperbole around this restaurant is unreal. ""Oprah flies in specifically to eat there."" ""New York Times and Bon Apetite rate it as the best Pizza in all of the U.S."" ""Jimmy Kimmel hired Chris to build a personal brick oven in his own home"" ""I ate their once and my eyesite was restored.......praise jesus!"" + +There is no denying this is great pizza, All of the ingredients are delicately chosen and prepared by the man himself, and he manages to pull flavors out of each that should not be humanly possible. + +If you live in AZ you owe it to yourself to try it at least once. Steel yourself for a long wait, however, 3 hours isnt much if you've got friends and wine with you, just dont get too drunk to taste your meal when its finally time to eat.",review,9v-aHckN0L0r_7pC2Azvrg,0,1,0 +2qbajPD8M7PJlWWaHSRR5Q,2012-09-22,AFOyom3A0V44-QNPA4zdOg,4,Great hh prices. Like to go and unwind. Definetly give it a try,review,IwZkZmCpc2D7DslEogiBYg,0,1,0 +V2ZVpEceFXxeyurZudgUyQ,2011-03-01,fv882z_mNmkejPzFczNUJA,4,"Friendly staff. +Fast check-out. +Great selection.",review,8z2mKSqTW-4pLobAUNvrsQ,0,1,0 +QdbZyl-LWFS54u93Vjd5SA,2011-06-08,jK5z012Yvl-8hM10SkgR6g,3,"Not bad, but not my first choice for the area. The staff are friendly and the food is good, but it just feels too much like a man's club. +That being said, it is a great place for guys to go for dinner who are really looking for dinner. I think I need more... of something.",review,CcdJ_VhU_zqe2fL7G3eXug,0,0,1 +0dIChGWBs9ueUXl0hhkw2w,2009-06-18,0S58fs0VizdsvomrbgtkJw,4,"Mmmmmmmm Saganaki! + +This place is a very good value, delicious really! +Kind of a cute little dive with AMAZING food. + +This place makes me think of a few close friends who brought me there. +Good times! Good place!",review,0JC7aBkxhV8by4iVGCU5Wg,0,1,0 +1zDCfNgtfyh-Uw8j3JxhHA,2011-06-12,S1FBiIPZ8qsGVhV3LCCzkg,4,"Tasty Mexican food with reasonable prices. Their breakfast burritos are quite large and filling. I had the chorizo burrito, which also comes with potatoes and eggs. It was pretty good, although I wish there were more chorizo in the burrito for the flavor of the meat to fully manifest itself. I also tried some chimichanga, which was equally large and filling. They also have very refreshing horchata. The other nice detail about this restaurant is that they are open until midnight every day except Sunday, which is open until 10 P.M.",review,uZbTb-u-GVjTa2gtQfry5g,0,0,0 +4WcxnNv_lzCIG2eb8O5Mlg,2007-09-14,p7eoASLgX8BZROQGhCpKhA,4,This is a cool venue to catch a show. I actually played a show here and it was good times. They have a large dance floor or an area where people can gather to watch performers. They also have a nice sized Bar which can handle a good sized crowd. We all know that is a must when it comes getting a drink in a crowed venue. I really enjoyed this spot and had a fun time rocking peoples face off!,review,o_LCYay4uo5N4eq3U5pbrQ,1,0,0 +xfk9eY8gmwn8qsbyd-W6lQ,2011-10-04,D1GP4Mr250jmOpq0205qYw,4,"Their sandwiches are excellent! I like to get the slider trio with bbq chicken, brisket, and pulled pork. Their potato salad is pretty decent but not as good as grandma's ;). Also, their coleslaw is quite nice but just a touch of too much mayo. Now comes the bad part: the ribs. I absolutely love bbq ribs and unfortunately their's were dry with very little meat on the bone. I would not recommend the ribs here to anyone. Stick with the sammy's and you'll be all good.",review,ShQZSh_0Be48sy-JQOb5dg,0,0,0 +7SO_rX1F6rQEl-5s3wZxgQ,2011-08-22,u86A4P5mPKIQNir48-TUlQ,4,"Oooooh, I liked it, very much so! Just sad that I didn't get to try more of its myriad offerings, especially the pizza. We enjoyed a lovely brunch here on a Friday. Cute little place, lots of ambiance, good people watching (quite the hopping place on this midsummer day), tasty food. We had a round of Bloody Marys, and those were nicely done, as well. A great spot to just hang and nosh and chitchat with friends.",review,Lmgv46LyI1PlLs0KNIfYFQ,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2011-05-06,amQEh_9FAG-7aogTBHnTpw,4,"Chill coffee bar. That is the best way to describe it. Very unique. All the plates are different. Comfy chairs. Desks. Fresh flowers on the tables. I sipped on hibiscus green ice tea and munched on the best coconut macaroon on my life. Yes, I am willing to go there. Must try. Stop going to Starbucks and start supporting coffee shops with personality, unless your a boring dud.",review,5gmnzvjYprzK21Q5awYF_Q,0,0,0 +Cz0McL5lUaihqOIw0_Yo7w,2012-10-22,li8_bnaT7C0yUaAvYTKmrQ,2,"Finally tried this place after passing it weekly for the last year or so. Atmosphere is pretty cool, but food lacked any special quality. Large glass of orange juice was nearly $6.00...WITHOUT the vodka (lol)! Hash browns were kind of burned, and small portion to boot. Probably won't go back, as there are so many other breakfast places nearby that are much better.",review,iBO2m9xXivsIbvFnZHsNvg,1,1,1 +Xq9tkiHhyN_aBFswFeGLvA,2011-05-01,610bQ6gopW_nd0Q0RNo0BA,3,"Great atmosphere, friendly staff, and good food. Dined with a large group so we had a set menu. I requested no butter with my crab stuffed chicken breast but they served it on the side just in case I felt the chicken was too dry. It was de-lish!",review,l_6XDatGLHfkGxl8BjI2Ag,0,1,0 +OllL0G9Kh_k1lx-2vrFDXQ,2012-10-10,vGQveIADS7CzFTEqWZAXAg,4,"LOVE it here. Small, homey, and yummy food. Great patio! I love their veggie quesadilla and the beans are great. It's nice to know they are lard free...which means you can eat vegetarian or vegan here easily! The kid loves it...especially the beans. They have jamaica, horchata and tamarindo fresh made to drink too. YUM!",review,raMSkwLdZ-kFea1fTY_-Ew,0,0,0 +4nco5mjBAix4kp_7mZuc2w,2012-05-06,9j6iM7rqNweZfotNMLr9fA,5,"This is a car wash that I would highly recommend. They do a great job, and pay attention to the details. It costs a little more at Hot Shots, but it's worth it. It takes a bit more time, too- but worth it. The main reason I would recommend this place- they do an outstanding job and are consistent every time.",review,fSLyFeOWXc1Th_yY1BMYfw,0,3,0 +CEWLmBrkM_a214RaGqUbRw,2010-09-28,d-PhxOevXjJdzs5RUMB5uw,5,"Nadya is one of the nicest people you will ever meet. Part of her personality is what kept me coming back. + +Recently she altered a bridesmaids dress for my girlfriend and did a terrific job. Flawless. In years past, she has altered all of my ""work attire."" I have since moved, but whenever I return home, if I ever need any work done I will bring it with. + +Nadya, you are a wonderful person, and any recommendation I can send your way I will!",review,RHrIZMRw_5tq2l69Phr55Q,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2010-12-20,JnvruYg_pQgzHdqBchOyug,4,"I knew when I was heading to Papago Brewing that I was going to get some good beer. What I didn't expect was some pretty decent bar-style thin crust pizza as well. + +My table ordered the T-Rex, which is basically loaded with every pizza topping made from a pig. My friend was in from out of town, so I said F it, and ate plenty without worrying about it. The pizza was thin, crisp, greasy and delicious. It was everything bar-style pizza should be. As for the beer, I got to try a few of Papago's own brews that I hadn't tried before. Their beers are either very flowery or have a bold coffee bean kind of aftertaste. Good stuff all around, but go with some of the other beers on tap if you're looking for a classic tasting brew. + +Although the food and beer were good, the service kind of sucked. The server was helpful for sure, but he was all over the place and the food took a very long time to be served. I'm not sure if they were short-staffed the night I went, but if the service was more consistent, my experience would have been better. + +That being said, Papago is still a pretty great little spot. I'd definitely head over there again the next time I'm in the mood for some pizza and their beer.",review,--65q1FpAL_UQtVZ2PTGew,4,4,1 +wH9WtaTlrRawH_IpK90RPg,2010-08-10,nBRFJ9s-IAB0d9KhpR9KIA,4,"Fun atmosphere, great H/Hour prices. We took my 89 year old padre there and he had a ball looking at all of the stuffed animals. Had the fried shrimp, curds (what are curds really?) and the burger/brats and beer for only $6. Asked for med. rare on the burger, but it came out medium, no pink. I will try rare next time. 3 Blind Moose house wine for 3 bucks. 3-7pm everyday, life is good in Scottsdale. +Stay thirsty my friends!",review,01pI8lIEwSAzzfPxUby-yw,0,1,0 +FUI-hWH_bpis7AKZTWenUQ,2009-01-04,9JJJ9QYx_5GP9TZB3v28ng,4,"Ticoz is not a bad place. The menu is eclectic-american and the service has always been friendly, consistent, and attentive. All the food I've had there has been decent and the prices aren't bad either. This is a gay friendly restaurant so it's a good place to consider for a same-sex date. It's also a good place for large groups.",review,1RJORk4w9jxxWBKzOvOptw,0,1,0 +UxvOXcoCRFRAVhRB0D9imw,2008-05-26,LqqxEGLPbpwd2Hr0fRF9fw,5,"Taylor's has such a refreshing cafe menu. I've been for breakfast far more often than lunch. I hope to try dinner soon b/c I think they feature live jazz on Wednesday nights. + +I've never ever had a bad meal. In fact, I always have a hard time deciding. Some highlights in my opinion are the huevos rancheros, eggs Benedict (with a choice of meat), waffles & the Mexican omelet. + +I never liked Bloody Marys until I had one at Taylor's! I tried a friend's once and have been hooked ever since! But if you want a less intoxicating beverage, try the iced chai latte. Careful, its so good you'll be ordering another before you know it! + +Bon Appetite!",review,4IxLt4QvCsJEdaNvH9QApw,2,2,2 +qb1o61d_qrwEpxAm16dZCA,2009-12-17,Mq8zmdocaX6tp5kIf_88dw,3,"It was ok, there was a large group of us and we all enjoyed the appitizers, including the table side guac. Biggest complaint was how poorly their bar was stocked. No Chivas, no Sambuca, weak margaritas, etc. So while the service was good, the food was just ok and the bar needs to be stocked better. There is room for improvement.",review,uTyIIbOvXH_XZw7OEiTiNg,0,1,0 +9gdQm_wucTIr57ffeT7aYA,2010-09-17,JLrQJPs0S5aWhToqmsc9Gg,5,"LOVED THE SWITCH WITH JENNIFER ANISTON what is wrong with film +critics today????",review,mavwphmn_T_u_J4Pcmocbg,0,0,1 +x737irkRUs8ABGRc2ILLAA,2012-06-23,OA0hYmnnu-Bj_LbCafdOtQ,2,"Service was great, food was ok, restaurant was clean, but the price was more than it's worth.",review,DIhY93zwQZy_RUg64t77SQ,0,1,0 +h7hr0v3E1ulU2sXNItD5UQ,2011-09-18,JgS1qrkODVhBkWA2j_pdIQ,3,"In the office, Fiesta Burrito is aptly known as ""across the street."" Kind of like, ""How about across the street?"" ""Yeah, I could do across the street, today."" If I ever said, ""How about Fiesta Burrito?"" I would get, ""Where's that?"" Then I would have to say, ""You know, across the street."" And the response would be, ""Well, why didn't you say so in the first place."" + +The primary reason we eat at ""across the street"" is because it is convenient - it's across the street. And in the immortal words of my most quotable co-worker, ""It is fast, cheap, and good -- no questions asked."" The part about it being good is debatable. I could do with a little less greasy. Fast, no question. And despite that fact that ""across the street"" charges 60 cents for spicy carrots now, the prices are low. I like the chorizo plate with a side of sour cream, although I might start branching out as we eat at ""across the street"" way too much, and I'm getting tired of always having the same thing. + +At just above a dive, I would call it a hole in the wall, but really, it is just a generic Mexican joint that hides in plain sight. Even the name is rather plain as no one can seem to remember it. There is a smallish, generic inside dining area, which is accompanied by a small, generic patio for outside dining. Some high school students seem to come by for lunch leave. The staff is polite. Until they move or I no longer work across the street, I'll be a regular.",review,U_fAIe7CUaGMejwSdNvMgw,1,1,3 +uVMKdpleBePeFKjixU6AMQ,2012-07-15,uu2Uffx5eTd_7UJ9Jo-uqQ,5,"For so many reasons, Costco is top notch but I'm going to review their Opto department. They are equally as stellar! Dr. Tieu is super friendly, knowledgeable and very approachable. The retail part has the best pricing on contacts, frames and lenses compared to any competitor. Lucky me they take my insurance and my yearly supply of contacts came to a big fat $0 after rebates. Always ask about rebates for contacts, both the Dr office and the retail desk will usually have some that you can combine!",review,ANTrWPSoOqbXkvLvxes-aA,0,1,0 +d_PxwGvQz9dQ3kHrLK-zAA,2012-09-02,w-zJeaQ9_plROuy3ufj_Ig,1,"Horrible experience. We had a home emergency which forced us to move out for 15 days. We referred to them by a friend. We explained to them we're Seniors on limited income but assured them they'd be paid in full. We paid the medical and our insurance co verbally told them that once the bill was submitted they would be paid. But, No, No, NO!!!! ""Not our policy"" They were holding our two kids for ransom!!! + +Horrible, uncaring staff to deal with.",review,cwEl6BD63N_3ICW_hRqkrQ,0,0,0 +VZG8spL8Tqffg9KYbBrDvg,2009-11-19,VTgyv4Gx8LZVSIRpEmSC5Q,4,"I read the reviews on Charleston's and decided to take the plunge even though there were a few negative reviews. I am a visitor to AZ for business and have grown so tired of restaurant food. + +I love salad and find most places don't know how to make a decent salad, the one at Charleston's was so good with fresh tomato and egg and the creamy garlic dressing!! Yummy. + +The filet was medium well and I not being a steak fan usually need some type of sauce (except for Ruth/Chris), but this steak was really good. I took my meal to go and couldn't wait to get the hotel because it smelled so good. + +Last but not least was the baked potato. The salt on the outside, I quote someone else, ""genius"". + +I used curbside to go - AWESOME. + +If you haven't tried this place, go - despite the few bad reviews. I am now a fan and will do something I rarely do - eat the same meal two days in a row (I am not kidding, it was good!!)",review,B931mipLDJYQvYuH0gnJHg,0,0,0 +4l3eeM1sOACwdJAz4UyIPQ,2009-08-21,zDDQl3sy4uOClk7a7zYGxQ,3,"The place isn't have bad. I got a sweet and sour lunch combo, and it came out fine. Their menus pretty thurough, and prices are really fair. Its chinese food, and if your in the area, it should get you where you need to go. + +Place is clean, staff is friendly. Would return for lunch here again soon.",review,JffajLV-Dnn-eGYgdXDxFg,2,2,1 +UdXn5e3o_biQoUNv0L-RYQ,2012-10-04,tSePYTPN6D_krV-luDQzYw,1,"This place is the classic bait and switch joint. I ordered through the drive-thru and told the person I was ordering that I had a coupon for a ""buy one-get one free"" Chicken Tender Sandwich, The bun was hard and not at all like the picture on the coupon. The two small tenders were extremely rubbery and looked like they had been retrieved from the trash can after they had been tossed for being under a heat lamp too long. The lettuce was the part that most people toss when cleaning and the tomatoes were thin and pale and looked like they had been genetically mutated . . .uhh, I mean grown. This wasn't the first time the server manager did this to me. I should have known better. I used a coupon a while back there for a buy one, get one free breakfast burrito and asked that they prepare it to look like the picture that appeared on the coupon. My bad! When I got down the road and reached into the bag to take a bite, the cook had apparently taken an onion and diced it up super fine and threw that in with it. If you want a decent hamburger or chicken sandwich without attitude and that looks as advertised or better, go to smash burger. As for this place, never, never again. The only good Carl's Jr. I have found in the valley so far is off the Superstition (Hwy 60) and Tomahawk. From the Manager down, they strive to live up to their advertising.",review,bll2HbgcSl2eXWE7E2uXaw,0,0,0 +ncuj9qx4WjprfJfYJGdmtQ,2011-03-13,uGSPFnhoSqJri_czHfVH_w,4,"I visited Smeeks this weekend as part of Carmelpalooza. Amazing! It's a fun little store with darling treats and trinkets to drop your cash upon. +Bacon belt? Yep. +Women's mustaches? Of course! +Butterscotch Peanut butter cups? Yes! +Very fun. A bit pricey, but I couldn't resist buying some monster finger puppet key toppers. +Yay Yay Yay!",review,F5Gri8cauLK3uOaZtQV2VQ,0,0,0 +E6HzAdx2vyZVyuNoa4-Xaw,2012-02-18,8h2SKY5IM9qCdKlKZxbv-w,5,Great posole - and the kids love their bean and cheese burritos. That's all we have eaten no need to venture further on the menu. Great hangover food. The staff is always very friendly!,review,t2YBANsJYySOXvHyOjcZkQ,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-06-05,ZoQ062IDTg5QpjXyoNsQ8w,1,"I have heard so many good reviews for this place, so who wouldn't try it? I should have taken the hints before I got my meal, that this wasn't a good choice. + +Hint 1: Location - It's right next to a smoke shop and a gas station across the street from a mobile park. + +Hint 2: Food test - It was nice that I got to sample the food even if the first sample wasn't up to par, the guy wouldn't leave me alone about sampling. + +Hint 3: Decor - I know this should never have anything to do with the food, but it felt like I was eating at a cousins house on the bad side of town, wobbly chairs, wobbly table. + +I ordered the teriyaki chicken (didn't think it would be bad, I mean who can mess up teriyaki?) With chicken fried rice (once again, how on earth can you mess up fried rice?) + +The chicken tasted like it was frozen and thawed out all day. Such a horrible taste. The fried rice tasted like it too was thawed out, kind of had a gross tangy after taste. There also wasn't any spices or egg in the fried rice, just a bunch of green onion,which technically isn't a fried rice. This meal can be related to something you get in the frozen section at a grocery store. + +They also give you a snickerdoodle cookie, that looked like it could be the best thing on the menu, until I noticed it wasn't cooked all the way through. + +But the icing on the cake was the gross pube like grey hair I found floating in my teriyaki sauce. + +So the expensive $8 meal was so not worth it, and I 'm sure when Diners Drive Ins and Dives visited, the food was great, but today it was the grossest thing I've ever had.",review,6-cOlCHG9gTu1iwLVm0C8w,1,1,3 +Uov4o_7gRqQKQyjVhWOpVA,2009-03-31,fuhhZQljBfcNBM0g0NhQLw,1,"Not good. And it's not been for a couple of years. There are advantages: good location, rarely busy, good for larger groups. But last few times we've been there have experienced average food and lousy service. When joining my already seated group on Saturday (3/28) the high-school hostess wagged her finger in my face like an East German border guard, the waffle house waitress poked me in the shoulder to get my attention and the wife's chicken dish had to be sent back as there were only 2 measly pieces of chicken in it. Only 2 beers on tap. Garbage.",review,i5YFwxft6L08woEmDnBzFA,0,0,0 +B54ozdLlH5ozkwnweskhYg,2011-09-30,wt2yshWscqnboVKX8SfYtw,4,"The workers here are SO friendly. The minute you walk in the door you'll here a ""Hello, welcome to paradise!"" +and if you stay to eat/study/chat you'll probably hear it every few seconds. + +I love coming here to study. They have lots of chairs and booths that welcome it and the staff, of course, does not care how long you sit. + +Food is decent. There are better bakeries in general but I can say that their cookies and salads are worth trying.",review,K9dSPbFhxbLPNZBTp7uOMg,0,0,0 +MLcXtnpzygZvQ9BtseLLlw,2010-04-25,DfCfuy_hvcN2PRE7VmFfYA,5,"Put it this way: Every guest I have in Phoenix, I force to get the Monte Cristo at Morning Glory. It is just that good.",review,Yn7u-2stfeJNCP06ssw3Rw,0,0,0 +zMa6YoEekpABg1HZnnTZdg,2009-01-25,9a-OeCBGvMuog2Xs9T_QMQ,4,"All of the restaurants are excellent: Houston's, Bandera, Rutherford Grill (Napa), and Los Altos Grill. Service has been excellent every time. All the food is excellent, however make sure you get the Tortilla Soup if available. The ribs, french dip, and hot fudge sundae are great too.",review,O2sVDiZ4q3vIikQEF7Gfbg,0,0,0 +3UMcsN9IjoeV8JZvC4apag,2010-07-24,oQ5fkmS176ASF2Uu0U9pnA,4,"Sun Up is my favorite craft brewery in AZ. Brewmaster Uwe is German and brews creative - quality American ales with a euro twist. While there are regular beers, the cask conditioned and strong ales change regularly. Recently they had 4 different kinds of IPA. Central Phoenix highlight - must visit. Order off of the chalk board - seasonal ales are the highlight here.",review,M6mXcFQa3ELYdOqVR2ffdg,0,0,0 +-_0Dx-cEvnQ0w2mauUpyXA,2010-12-17,tPbdG5o477dzOcjRDQr55Q,5,"My fear and avoidance of the dentist has been building for years. However, I simply couldn't put it off any longer. With trepidation I scheduled an appointment at Downtown Dental and promptly received an email back with available times. I went in not knowing what to expect. Not only had the staff already found my insurance information they made a point to call me by the name I go by rather than my formal name and that put me at ease. I sat down with Heather, the hygienist and she was so warm and friendly that I instantly felt fine confessing to her my fear of the dentist. She allayed my concerns and told me not to worry. There was no guilt trip for not flossing or drinking too much soda, which is always annoying. Then the scary part... the dental work. It was uncomfortable and I hated it, but soon it was over, it wasn't that bad and I felt a thousand times better. Dr. Berschler came over and examined me and pointed out a few cavities we needed to take care of. Then the even scarier part (or so I anticipated)...the price! But I was pleasantly pleased and relieved that the total cost after insurance was literally thousands less than I'd been quoted by a dentist a year ago to take care of my problems. In fact the total cost is very reasonable; this isn't a dentist looking to take advantage of you. I couldn't have been more pleased and delighted at the friendliness and helpfulness of everyone in the office. The convenient downtown location only makes it better. I will never go to another dentist again and I'm actually looking forward to my next appointment. I can't recommend this office enough.",review,BzU_wtN6tOVY7PR39Ob_iQ,1,1,0 +8t80-omyflkywRfu9LPh6g,2012-06-30,V1Ksr1hq2_ilYnh8vQ-X-w,5,This review if for their happy hour because that's all that I've experienced. Love that they have happy hour all night on Sundays and Mondays. I live close by and used to frequent Wildfish often for happy hour. I usually get the crab cake and lobster bisque.,review,oovShYF-Qz0twrwngcGqHg,0,2,0 +WYj43z0qmlKklhcvV75mwQ,2013-01-02,5kmDKV6A3CZjLYvpYY7L6Q,5,Good food,review,_QrW0F17JNDfgao-bpz9Ng,0,0,0 +St3jS0PnF1lulH1ggA4Jgw,2012-02-02,4E1EXHAPrRsYCK_gUC2OtQ,3,"4 star service 2 star food = 3 stars. + +The bfast potatoes were undercooked and obviously microwaved, not grilled. + +The bacon was just OK. + +The prices are HIGH, both for the menu & the grocery. + +Wi-fi is unreliable. When it goes out, it takes them 15-20 min to reset it. + +Great friendly service. Nice, sunny outdoor seating.",review,exefpuK6O1ctUUqTxq5XLg,0,0,0 +EFJAVVBQQqftuqY5Wb3WtQ,2012-05-29,-k_WwJwBXcZg4gFl8a0gfw,4,"After living oceanfront in Mancora, on the northern coast of Peru, for 4 months I became very accustomed to eating very fresh, excellent ceviche on a very regular basis. I had no idea I would miss it so much when I returned to the states. Luckily, with one internet search I came upon Villa Peru. It was EXCELLENT. I did not expect ceviche in AZ to be so fresh and delicious! And not only that, but they also served it with proper cancha and Inca Kola is a beverage option (which of course I had to order). +Unfortunately, I have to give my experience 4 stars instead of 5 because they were out of Aji de Gallina, which is what my brother had his heart set on for dinner that night. And also because it took a little longer to get the check than it should have due to an apparent disagreement between the owner or manger & server. +But all in all, I highly recommend Villa Peru to anyone who wants to enjoy delicious, traditional Peruvian food.",review,JOG-4G4e8ae3lx_szHtR8g,0,0,0 +zonV2F6YNVn2_sI5dK82eg,2010-03-05,AxYFUB2yD6uPH5shecXK4w,3,"Sometimes you just want to give an A for effort... + +Or maybe more than three lame stars. As the two other previous reviewers have pointed out succinctly, the man who I assume to be the owner was extremely nice. I made the 1.5 hour drive from Tucson to watch Avatar at Arizona Mills, and my friends and I decided to grab a bite before heading back. We randomly drove down Baseline and pretty much stumbled upon this place. Traffic going westbound towards the 10 was insane. I mean it was bumper to bumper past Rural. Anyway, I ask the guy who I assume is the owner why the traffic was so bad. At first he didn't know, but then realized that the 60 was closed. He politely recommended that we head south then cut across to get back to the 10. + +I ordered the Jerusalem Falafel sandwich. It was pretty good. Though, in all honesty, falafel is not one those kind of dishes that one can gush over. In my opinion, it's pretty hard to mess up deep frying ground chickpeas. I ought to point out that the ingredients were very fresh. This also applied to the side salad that comes with the combo meal. My two friends opted for the gyros, and it looked good. The meat was thinly sliced, which is somewhat different than others I've had. They seemed to enjoy the meal, but I don't think they were quite overwhelmed by it either. In fact, we didn't mention anything about the food during the hour and a half trip back home. + +The food is by no means bad at Pita Shack. It's adequate to serviceable in terms of Mediterranean food. The positives regarding the food have to be its freshness and price. In fact, I spent no more than $8 for a sandwich, salad, and drink. The service, as noted previously, is undoubtedly the most shining spot of the place. As we were finishing up our meal, the guy who I assume is the owner offered us lentil soup on the house. We declined after being quite filled and satisfied from our respective sandwiches. I believe another reviewer had the same thing happen to him, and he had positive comments about it. Now, for me it's was the food that really matters. Accordingly, I gave three stars, as opposed to the four that I was close to giving. Should I ever return to the Tempe area hankering for food in a pita, I would most definitely give Pita Shack another shot; if only to support a genuinely nice guy's business.",review,5Ht4W7Vu2j6E31UN6Y2zww,1,0,0 +YgqexscIgNoMBAO__J97zA,2010-10-06,4gZStn31t8tz2Qva_oa3Zg,5,"Let me tell you about my first crush in Phoenix. It happened to me when I least expected. I was sitting at my small cubicle during my first job. Birthday cake graced the break room practically everyday but today was different. When I walked inside to sing an out of key version of the birthday song to my coworker, I noticed a masterpiece in front of my eyes. A white cake topped with the freshest of fruit and the creamiest of white chocolate morphed into a piece of artwork. One bite into the white cake filled with fresh strawberries and I was in lust. It later turned into love and I've been happy every since. + +I silently thank the coworker who introduced me to Honey Moon Sweets because I can't imagine life without knowing about this sweet Phoenix treat. Over the years, Honey Moon Sweets has been my go-to bakery for a special occasion. I've purchased the ""basic"" cake for birthday parties. Let me just note here that a basic cake from Honey Moon Sweets is practically a masterpiece in any other bakery's mind. When planning my sister's baby shower, I knew exactly where to go. I wanted the perfect cake and a work of art to grace the baby shower table. And behold the Honey Moon Sweets baby cake. It was three tiers, blue with rattles, pacifier, building blocks, a crib, a teddy bear...you name it filling the top. Some of the pieces were frosting creations and some were real toys. It was almost too gorgeous to eat, but we couldn't resist it so enjoyed every bite. It was just as good as it looked if not better. Honey Moon Sweets does a fabulous job of using the freshest of ingredients and you can tell upon the first bite. The scariest part of this cake adventure was the travel time from the bakery to the Biltmore for the baby shower. One wrong move and the cake would have been toast so be prepared to move lightly with this cake in hand. As you can imagine, cakes from Honey Moon Sweets are not budget-friendly, but for what you get from the cake, it's reasonably priced. Just save your coins for a special occasion because it's worth it. I promise.",review,4ozupHULqGyO42s3zNUzOQ,10,13,6 +qPfX87VuYeBMgM2B0Zr1hQ,2008-04-27,Jubdf4YjHmVvi2GSmR_iIQ,3,"It's unfair to review this mall on what it was - since it no longer is (and what it is isn't as good as what it was). It's also unfair to review this on what it will be - since it isn't that yet. + +Today, it's a mall I rarely visit. Apart from a few stores I would visit out of convenience or necessity, there's not much to offer compared to what it used to have. The fantastic movie theater, Jutenhoops, Alpine Ski Keller, Bear Cover, and even Ed Debevics are all long gone... oops, there I go bringing up the past. Seriously though, these were painful to lose - one by one. + +So today, there's a Linens 'n' Things which is hardly unique, and a Trader Joe's which is nice to have in the area, and also a Sister's Attic and Closet upscale thrift stores which add a bit of much-needed flavor. The Chili's, the Bookstar, and Black Angus are still around. So is the jewelry store that has never really offered a compelling reason to enter. They've wedged an LA Fitness here and they've also added a Blimpie and an Arby's... all very healthy choices. + +Besides all of the generic shops and eateries and standard offerings, there's still a few unique experiences - though nothing like it used to... shit, there I go again. Anyway, so there's a few places that aren't screaming ""standard mall"" such as Pita Grill, a pipe and tobacco shoppe (you have to spell it that way in this case), a place to get eyewear, and some other small and uninteresting businesses. + +In that sense, I suppose this is has become a decent and convenient neighborhood strip mall. This is a shame really since it's lacking most of the key elements that made it really special. It's still a beautiful outdoor mall and the architecture alone makes it a unique alternative to the cookie-cutter malls that strategically litter the landscape of America. + +I'm worried about what they'll do to the architecture when they renovate this place someday, but I think the fact that this mall isn't terribly interesting anymore in general means it won't be so terribly missed when they lose that last remaining bit of ""special.""",review,Cp-PV8rsypbO-xBrQ6KmQg,3,3,2 +y2JQM4ptGJmAhPhafclUsw,2012-02-29,olTE1QJ6rReeE83bT4ON1w,4,"My guy and i decided to try this new salon that just opened a couple months ago. The man and woman working there are so friendly! We were chatting the whole time. As soon as we sat down they offered l us water. The chairs are great and the water color changes as you sit there, kinda cool. The pedicure includes a hot lotion and rock message that is awesome! +Great place, we will be back!",review,0o0VMEJeQY0pAAZ9nxErBA,1,2,1 +wepFVY82q_tuDzG6lQjHWw,2010-01-27,UF-i9hn6vlIgxQgBFfS9zw,4,"Ahhh.... Whole Foods, John Mackey's little baby he has turned into a behemoth within the industry. I am so torn by Whole Foods, of course most everything is more expensive. This could stem from when Mackey started the business as a democratic socialist and was not making any money, yet people were complaining about pay and high prices so he then turned into a free market libertarian - you can blame your high prices on that if it makes you feel better. Mackey is also a Vegan, but has said if he didn't sell animal products it would be bad for business(if the business even existed), yeah I get it, but I don't like it. Does anyone even care about the innard workings of the company CEO of the store they love/hate? Ok I'll cut this short. + +This Whole Foods is an older store, not the real old school hippy-esque store, but it's nothing like the newer flagship stores around the country(like the one on Mayo). This obviously means they have to cut back on their selections to a degree but they still do a good job of cramming everything into this much smaller, albeit more ""quaint"" store. If I go to the Mayo store I am gone for 2 hours but only come back with a bagful of stuff because I was lost in a trance ""browsing""; this makes my girlfriend very angry. + +I don't buy all my groceries here because I don't think some things are worth what they charge but in all honesty you can only find certain things at Whole Foods that you can't find anywhere else(Trader Joe's, Sprouts, Sunflower, etc). The Vegan/Vegetarian selection is massive compared to those other stores, they simply carry all the latest and greatest - it may not be the cheapest, but they carry it. + +One last item, and this is for pizza loving vegan fools - Whole Foods was one of the first places to carry Daiya cheese. They actually sell shredded containers of it in the refrigerator section, but they also have it available at the deli. The usual counter worker isn't that friendly which is a shame and always seems put out but that doesn't make the pizza any less tasty. You can get one of their ""surfboard"" pizzas which will feed 2 for 2-3 days with a couple of toppings with Daiya cheese for $15.99. This may be the best deal going at Whole Foods and make up for that $8 bar of dark chocolate you just bought.",review,0VptqMr6enVCnqRjVYs4NQ,0,0,1 +AqbgC7Gul5Es1rRzGNLDFA,2012-05-22,t4EZ_AK9UH1t51BjSLC6dA,4,"Sprinkles has amazing cupcakes! The cake is always moist and the frosting delicious. I have had cupcakes from other bakeries where they pipe the frosting on using a pastry bag, and there is wayyyyyy too much frosting. Sprinkles does it by hand, so the frosting amount is always perfect for the cake size. I love the simple decorations they use as well. + +The only downside I have noticed is that they use a lot of oil, and if the cupcake is touching the box the oil will actually seep through the cardboard. But I guess it's the price you pay for extremely moist cupcakes! Also, the frosting is super sweet and it sometimes makes my teeth hurt. It's so worth it though! + +My favorite flavor ever is Chai Latte! They only have them on Fridays though, and they often run out before dinner, so get there early if you want one! + +They also have amazing seasonal flavors: salty caramel, dark chocolate raspberry, eggnog spice, chocolate peppermint, and the best: brown sugar praline! That one is an Easter flavor and I love the crunch of the praline combined with the brown sugar! YUM! + +Yes, it is a bit pricey, but if you like the ""Sprinkles Cupcakes"" and ""Sprinkles Cupcakes Scottsdale"" Facebook pages they each do a daily whisper word that will get the first 50 people a free cupcake! I always try to buy another cupcake when I use them, so it's about $2 a cupcake then. Many times the whisper word will get you an off-the-menu cupcake, either a seasonal offering from a different part of the year or a cupcake creation. I had a lemon cake with strawberry frosting once, and it tasted like strawberry lemonade...delicious!",review,_ki8TQWep4CJTfF4kzyMtw,0,0,1 +To5CjntVFawXM_hpAhvVdQ,2010-11-13,fpSkzjWTXCSTg3FNVZBhOQ,4,"I have lived by Wally's for years and I finally hit it up the other day ravenous for some yummy food. I expect great things from a restaurant near AJ's and the Arcadia crowd was definitely representing but I was still a tad skeptical. +We started with the calamari which was lightly battered and not like chewing on a tire. So far - I was pleased. +I then ordered the pesto caprese pasta which was soooo good. I'm not big on Italian food but I've always raved about it to like five people since I went two days ago. I'll go back and order the same thing - I'm so boring. +Lots of other yummy dishes are served at Wally's such as burgers, other pasta dishes, salads that looked so good, soups, and they have daily specials like pork chops which that night came with a salad, some sides and dessert. +They also have a good happy hour. I believe she said all apps were $6 and beers were $4. +Wally - I'm not keen on your restaurant name but I dig your food so I will be back! +The staff is really attentive (not in a 5 sec filling up water way either) and really nice like we've all been pub buddies once upon a time. +Perhaps we were... cheers!",review,qaAmAU9T_t84UDGiBI98sw,0,0,0 +I4bSn5gXsHuSPu7L-d_8nQ,2012-06-24,mnV2lNnDUYQGQ_2lXMM4cA,5,Food is outstanding! Rebecca rocks!!!!!!,review,w9r2bDWydh3HSwZBTlHOFQ,0,0,0 +IWwt0vm8lYbVoyGSPd2Z9A,2012-06-12,aRpiL6tqMxiI1ORhEYpBPw,3,Came here for lunch for the 1st time...and the line was long. Was briefed by the server...p/u your sides...pick your meat...tell them how much weight of meat you want...also get unlimited slices of bread (white/wheat). Boom you got your meal. So I figured...instead of getting the sandwich...I can just make my own with the bread they gave me. Liked how they weighed all the meat before you. 1/2lb of brisket didn't seem like a lot in my basket...but seemed liked what everybody was getting in around me. So figured that was enough and if you eat it with their bread it'll fill you up. Lean Brisket taste good...sauce was good...nothing that wowed me. Wouldn't drive out of my way to get here. Average BBQ joint.,review,_uWc9mBsSXz1gQw3rf-1fg,0,0,0 +wqIB7hUTQnCswJV4UyYyEQ,2012-10-17,6D44Kh87e_bVh8u2hglwzg,5,"I'm sure most people don't go to a fancy steak restaurant for the Mac 'n cheese, but as a mac aficionado, it's practically my duty. And the mac here, well it's high quality. I like to order the lobster mac sans lobster (not a big fan of seafood), which without the seafood, is actually quite inexpensive. Now be warned, this is real heavy mac 'n cheese. It's so cheesy, and thick, and delicious; don't plan on being able to wiggle out of your booth any time soon after eating it.",review,AF1FkKODDmXFbVhlNIp4vA,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2008-09-16,8vCQgSfd1R9CFHpGqukt4Q,5,"FEZ should stand for Fabulous Exotic ZExperience. I was planning on making it here for ages but couldnt until I found out the new metro rail is ride outside!! I needed a quiet place to read and was much obliged when they turned off all music by my request. I was able to read my Nancy Bartholomew novles with great intensity. The staff left me alone for hours and the intoxicating rosemary smell really opened my buds. The atmosphere is definatly trendy, After I finnaly soaked it all in, I would def give this place 5 stars although I didnt try the food or bar.",review,pQbyx3VDl52eGR2mKd7Qag,1,1,1 +EXmWz2eaKTGNIf3FJUlVZA,2011-05-29,UUAAh-BTXIMgDlSfsfqpCg,5,"Better than Starbucks anyday! +The staff encourage their customers to get creative and provide new drink suggests to add to their list such as ""The Annihilator"".. +My personal Favorite: ""The Cookie with a little raspberry""",review,j4Bk_hLCc6jpOD-Mb4F48g,0,0,0 +OE5nAmaSVaopeRS1Cs9Kuw,2010-12-23,BiG7e5vi2US6fzbxxj_YIw,5,"Get ready to get meat drunk, then fall into a meat coma!! Although this is not a nationwide chain, this is what a chain restaurant can and should be, it's great. You begin with an immaculate salad bar. Definitely the best one I have ever seen or tasted for that matter. Hell you have to love a salad bar that has a whole wheel of Parmesan cheese for you to enjoy. Enough with the salad lets talk about the star of the show, the meat!! Transcendental might be too strong of a word, but it is pretty damn close. +It is endless amounts of meat prepared 15 different ways, all seasoned perfectly. You have to love something that is seasoned so well that if adding salt or pepper to it at the table would over season it. This place is pretty much a buffet that comes to you and after trying several meats its great because you don't want to move, lol. And the best part is, is that you tell them when to come to you!! I could go on and on but if you have about 60 bucks to spend and want to enjoy a great meal just go here and leave in physical pain from over eating like I do!!",review,yp90PduP1gD7kgCLWuQg4w,2,1,1 +k76odRRsXPErPzB0gjn-3g,2011-12-10,iQiY4iRdVjYH9ktqpzddjg,5,"Yum! I was a fan of Grimaldi's...but this place surpasses them! We had half chicken tuscana (garlic cream sauce) and half chicken artichoke (pesto sauce). Amazing! Great flavors! Usually, I'm a fan of ranch on pizza fan (don't hate)--not needed here! +Comes with the traditional crust, which was really enjoyable, but also available w/thin crust or wheat crust ($2 extra for wheat). +Server (Zach) was nice, offered suggestions, and was on top of things. Kind of soft spoken, given the tv's and other restaurant noise. Hostess seemed like she was pretty excited to be there and everyone was polite. +Prices weren't too bad--$18 for a large pizza, $8 for an individual. Variety of toppings, salads, appetizers, calzones, and drinks. Beers ranged from $3.75-$5 for the 16 oz. +Excited to go back and try some more pizza!",review,5j7qmDZTAetaH0yXFnAFyw,2,2,0 +01cEFI5Pq_RyEwM3GSTopQ,2011-12-31,xWAvESbLyNmdpdvK32zz5g,4,"Good food and able to manage a large group easily. Our party had 11 and there wasn't a long wait at all. Highlights: spinach and artichoke dip, onion rings, and tortilla soup. Total tab was only $160 for the whole group.",review,4Nc0DPLqeSZuqvr1gBTy3Q,0,0,0 +oYLfNKc6Q_XKG9ixiMiumQ,2010-02-17,lT7Js0hLn6axOv0B2bnmlg,4,"Right down the street from Four Peaks, this liquor store rests in an unassuming strip mall. Nothing notable or special about the outside. You would have no idea that there is such a wonderful beer selection inside. + +The inside has about 1/3 of the store devoted to individual (mostly) bomber bottles of beer first organized by country and in the case of the US by state. A wide variety of several hundred varieties. The staff was helpful and knowledgable about their inventory and quizzed me about the beers I was buying at the register. OK I was a little annoyed about the quiz but at least they knew what they were talking about. The place has several beers in coolers along the walls as well. + +The prices were reasonable and probably a little cheaper than other regional stores. I would recommend this little diamond in the rough for people in Tempe looking to bulk up their drinking resumes.",review,9wdAOSpQU2Kmll1V5uAgSg,0,0,0 +BVo6wBuFwPH3QVqs8-JEDQ,2009-01-20,3NepghaRKgIIU_E5KV_nFg,5,"I cannot recommend Phoenix Knife House enough. + +There are very few places where you can go and physically put your hands on so many different Japanese knives, which is obviously key in any knife purchase. If you've ever spent hours in the kitchen doing prep and chopping, blisters are a very real possibility if the knife doesn't fit. I've discovered over the last several years of cooking at home that I prefer a lighter and bolster-less knife for high speed chopping, which ultimately led me back to PKH for a purchase. Last year I purchased a Fujiwara 150mm petty for less than $60, and it's been a great knife; my girlfriend also likes it because it's light and maneuverable. She bought me a Misono UX10 for my birthday, which will ultimately replace my Henckels for most uses. Bottom line, go in, tap into Eytan's knowledge of the knives (and care and maintenance), and get better tools for the job. It's well worth it. + +I bring all my kitchen knives here to get sharpened, either by hand or on the grinding wheel. Today I had four knives sharpened, three on the wheel, one by hand, and two with tip damage. Total cost = $13. + +Bonus: purchases are tax free. Highly recommended.",review,dQO0tQISZyb9L4d5ASnXyQ,3,3,0 +bc-lE-wGVAsUrX-kJhtY-Q,2012-03-07,Fz9aX8NFZV9V6qrNxsvpSw,5,"WOW what can I say... our friends have eaten here for years and we finally got to eat at Don and Charlie's for the first time in all the years that we have been coming to Spring Training. + +We had an excellent dinner i was in the mood for fish and had the Macademia crusted Halibut.... WONDERFUL!!!!! My hubby had the prime rib and finished off every last juicy bite... the scalloped potatoes were the BEST I have ever had at any restaurant. + +Must make this one of our usual stops during our yearly visit to Az.",review,lcoH6YO-cG3wT003bEvvOw,0,0,1 +a29C6sg39V2HP_tq3m8nEw,2010-03-20,N4kD09LGHR6UquOSuhbyFA,2,"I've heard when better waitresses are there, service is better, but if you go on the night she isn't there, service sucks.",review,tMcsJoxQuJGBsQNI3p_UdQ,0,0,0 +sN1D1gv_m-KflQ-PlCUbRQ,2011-11-09,GIYbf-N9Wn1IQORBzCnOrg,2,"If Einstein Bros is the benchmark at 3 stars, then Bruegger's barely earns 2 stars. + +Customer service is mediocre. Only one gal (who I've seen a few times) actually smiles, makes eye contact, and seems pleased to be working here. Everyone else acts inconvenienced that I am there. + +If you order a simple bagel w/cream cheese, you will be O.K. They are not bad, but nothing special. If you order a bagel sandwich, be sure to bring a towel as they leak a lot and turn soggy after a few minutes. + +Coffee is O.K., but nothing special. + +Store cleanliness? It could be better. The beverage counter (with the lids and coffee creamers etc.) is often messy and sticky. + +I noticed that there is a duplicate entry for this location, so I'm pasting this review on the other as well.",review,TODYSp4aWM5pP3J1R3-HcA,0,1,0 +duHUQFn7K-Ybs1rPI4AOEQ,2012-07-15,AUwzWXSonX_ZR-mLvb_cEg,4,Great place to meet friends for a bite and some drinks. Very social atmosphere and the food is really great. Service did not disappoint and the prices are really fair.,review,ZIzRvYhfrMgMVmVILaT-yQ,0,0,0 +VRxelK__tuQD0KBxx2LzeQ,2011-04-27,g4byLEBKR_gI-nXlO6hOxw,4,"You don't come for the run-of-the-mill pizza. Nor do you show up for the cheap pitchers of beer. No, you make it here for the show. A massive organ fills the entire building, incorporating dozens of intruments, and the virtuosos playing it take center stage. Sit back and watch then perform your favorite songs, from Star Wars to The Little Mermaid. Don't let the average food dissuade you from a one-of-a-kind experience.",review,atGMs2cdm5kzM2dFmSHtrg,0,0,0 +lK35BgpjOMXwchPzqYWomg,2012-07-12,YsgjOe5_0j9Jjt5fhv-1RQ,4,"I have to laugh at the person that stated the service was bad. I have now been three times (can you blame a gal for craving a burger?) and each time everyone is almost too overfriendly. They ask if you have been in before and if you state no, they offer to go over the menu. Now this might stop after this location has been open longer, but it's helpful since there are only a few locations in the valley. When your order is ready, you are paged and you go up to grab your meal, and they always find it necessary to read back your order, when right in your hand is a tray with a juicy burger begging you to take a bite... so I am always a little feisty for them to read it off, since I want to chow down! They also seem to want to check in on you while you are eating, which is nice... but can be overwhelming if you are on your lunch break and trying to catch up with a friend... but I won't complain about good ol' polite customer service. + +I order their original char burger without cheese and without the onions (I did try them with the onions and honestly, I liked the taste of the burger better without) + +I like their crispy onion rings, they seem healthy if that is even possible for an onion ring... but they are crispy and not greasy. Try them, you'll understand what I am saying better :) + +The fun item I always get ""to go""??? Their coffee flavored milk shake. It's light, it has nice flavor and is a little bit of heaven. + +PS: Parking is not like it was with ""My Florist"" there are many more available spaces now, which is totally awesome.",review,x5O9o6yikw8tO4bB7ziOgw,1,3,0 +NtmLlKfCFfM0K5j6WWKxQA,2012-08-06,k1ZBs68QktWpk7dBL5IM7g,1,Will never eat here again. Sandwich was meteocre and overpriced. On top Of that I was charged more than I was told the total was. Horrible first time experience!,review,0wudtUcAW7jpufwV2xB3kw,0,0,0 +EuNV8_SReV_3KeET2Ums6A,2011-02-24,qz0NSRCNkL-zFbu2NmdtkA,2,"This place is not that great. Shogun express has way better chicken teriyaki rice bowls and beyond. +The chicken is what really bothered me here. It was really tough and extremely chewy. And that was the white meat. They're bowls are around 5 bucks which I like, but they're not even filled to the top. +All in all I came here because Shogun was closed and there aren't any other rice bowl places in Scottsdale that I know of. Eh.",review,CjL3FtpiDzhNXTQPw0-RBw,0,0,0 +6vKgpermKi8PNDYD5mkpKQ,2011-12-30,7lRJMM8zL3aKthsNIGgRmg,4,"Zia always has a great selection of both cd's and dvd/blu-ray. And the great thing with zia, is you can trade in your old media - cd, dvd, video games etc, for credit toward buying new stuff. I usually go thru my cd's and dvds, then head down to zia - trade it in and come home with something new. If they do not have it, they order it and call you when it arrives. The staff are always knowledgable and helpfull. I have been going to zia in tempe for many years - and the chandler location is just a good if not better.",review,TESe3g-BJSdZ5H4KC7yr9g,0,0,0 +Cr2JNnewX53TYd9w6qw6Jw,2011-07-28,5FUQ9wO_oKjhmbGoQmHa4g,5,"Saw this place in the Yelp email. Needed to take my son to Toys R Us to use a gift card and it occurred to me that Habit Burger was right there, so I suggested we have lunch there rather than the usual McD's. I temped him with the offer of a chocolate shake. + +I was amazed with the cleanliness and brightness of this place. There was a line when we got there, but it moved quickly. The tables were packed but we managed to snag a 2-top pretty soon after getting in line. My son had the kids grilled cheese meal (something you don't find at your standard fast food place) and I had a charburger. We shared his fries and the shake. + +OMG - the burger was heavenly! The roll gets a little grill to it so it has a little crunch on the inside. It was not greasy at all, just tasty and soooo good! The fries were equally ungreasy and good - crunchy too. The chocolate shake - my son only had about 3 sips which left me to drink the rest of it (dang it) - was absolutely delish. And the prices were outstanding! + +Its a good thing there isn't a Habit Burger closer to my house. I'd eat there all the time! Five Guys? Forget em!!!",review,pJK1iS2seiKKNpigBHw8tA,1,3,0 +-IEBe1UpCz8-dTAp8_fClw,2011-02-27,fpBxt3O6Lf1UeLJNKUI7Ag,2,"Great margaritas, but kinda pricy for what they have. Their food isn't all that special :(",review,n5PtmHO-PSHiyseG56XZtA,0,0,0 +xL7H-eMQDE-y23VL7MpLsA,2008-07-02,zygQKLaNi9X1iBOQyg7QfA,2,"Let me start by saying I have never had BBQ I didn't like. I've had BBQ I could do without, but never that I didn't like. Went in for lunch today and I was the only customer, so I figured cool I will get good service no matter what. The girl sat me and was very pleasant and indicated my waitress would be right over. About ten minutes later, watching the waitress talk on a personal phone call at the bar the whole time, the girl who sat me came over to take the order. She walked up, didn't say a word, and just stared at me. Ok I can live with that it was only a minor inconviencence. + +Got the #4 lunch chopped pork sandwich with beans and a lemonade and it came out very quickly. Possibly because the beans were Bush's or the like? They tasted like canned baked beans heated up in a microwave. Not cool. The sandwich was ok at best. Thinking back on Stacy's, Honey Bear's, and other great BBQ spots, this one was not even in the same arena. I'll have to go back though and try a sandwich with the correct sauce on it. There was one sauce on the table which after reading reviews here I had assumed was the BBQ sauce. It looked a little watery but I thought whatever its NC style, and it may have been because it was a bit vinegary. On the way out I noticed every other table had a red sauce labeled BBQ, so I guess they have two different ones. I would have preferred the red one I assume. + +There was no atmosphere, the place was run down (doesn't appear to have been remodeled after Shish Kabob House vacated) and was generally a dirty feeling place. Seeing as they didn't have any customers at lunch time, I'm assuming the place is going to lose money today. Don't know about other days, but they better get their act together quick or it is going to fail.",review,JgDkCER12uiv4lbpmkZ9VA,1,2,1 +AqbgC7Gul5Es1rRzGNLDFA,2011-06-20,fRfafaJw6pJpApH7bJepZg,1,"Went last week, and ordered a dozen variety. I didn't care for any of them, very dry, the frosting wasn't very good,even my 9 yr old daughter spit her cupcake out!",review,CYKz4de61gfOfZEB7MbaDg,0,0,1 +4ic-c1LquBiT0IuvKXuEyw,2012-04-26,r8XAVBZfl2IxrDmGEEgEOA,4,"drove past and saw the sign, and after having spent several years in Texas, had to try this place -- and was extremely impressed. I had the moist brisket, and even without sauce, it was awesome. Nice pink smoke ring, moist and tasty. They even had the sides of dill pickles, jalapenos, and onions -- yum! + +I also had the cole slaw, and it was very good as well. + +I definitely want to go back and try the hot links and the turkey -- but both my friend and I really enjoyed our first (of many to come) visits.",review,65GC-tdQLtOEaFieHKaG-g,1,1,0 +jEWfxxA_kjeJE_Z_ku3zLA,2009-01-27,nrkXHqkzu7Afg6yaAGfraw,2,"So I've been back to Ra a few times now, and while the food is always acceptable, the service has gotten progressively worse each time. Today my co-worker and I actually waited an unbelievable 50 minutes for our food, which - if your waitress stops by, checks in with you, apologizes, lets you know she knows you've been waiting - wouldn't have been nearly so bad. Still extremely annoying, sure, but forgiveable. Not this waitress - we had to call her over for every thing we needed. Serioulsy, not once did she just stop by to check on us. We had to call her over to place our drink order, ask for sugar for our tea, to place our food order, to get the check, everything. So by the time the food came, I had to scarf down my grilled apple teriyaki salmon brick in 5 minutes to make it back to work on time. That's it, Ra - you've lost another customer.",review,zHH2Iz49wCZYYDLBTv0YOg,6,7,5 +9mfec4ySQpW8doGs3FUP2Q,2012-10-06,gd4z7EXE8Wcs1fJHbW4suA,5,"We recently had a pleasure trip to AZ and I booked at the Fairmont Princess and I must say I made an AWESOME choice! +- Room was I guess a standard King but it was so large and spacious with a couch and seating area as well as a very comfortably appointed bath and patio. The decor looked fresh and new as well. Very contemporary. Lovely. We were in building C and overlooked the rose/aroma garden which was quite quiet and pretty. Might have been a little better to overlook the lagoon with the firey fountain but we were pleased none the less. +- Pools were the best. We swam in the main south pool, the east pool and used the slides the kids area as well. Did a lot of night swimming as it was hot and gotta tell you...night swimming rules! We rarely get to do where I live. +- Restaurants and bars were very good...if a bit pricey...as well. We had dinner at Bourdon Steak by Michael Mina which was very tasty and nice ambiance. Ate at Hacienda Restaurant and also at the bar at an outside table. Kinda liked eating at the bar better. Yum of the drinks. +- Great trip....great place...we will be back!",review,ggWX3saEBUwrsitDlV0Qrg,0,0,0 +Dka36Pw7ibbHV6xIimQAOg,2011-11-26,yGwurUrumf-00Pw7PPeagQ,5,My husband called the chicken fajita burrito one bad ass burrito. The carne asada burrito and quesadilla were equally yummy. Nice stop for a quick bite.,review,0b_ehtfJXDNSBJMW1hSQ_A,0,0,0 +Tt6DYs0TyERWHWW5xiRL_A,2012-09-02,M3XDIFh75hHNQ_Q-LkPT2A,4,Pretty delicious -- very tasty sashimi platter. Loved the ambiance too -- a nice respite from the very toasty desert outside. :),review,XW-KGmN0Rdg5kw1SSSFkew,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2006-06-12,RGjPRM5VcsY7yb98nih9mg,3,"Eh, lukewarm feelings about this one. I had lunch here and the service was exceedingly slow even though the restaurant was not at all busy. The server looked at me like a martian when I asked a question about the salad. It may have been an off-day... The food was good. Inventive salads... it didn't exceed my expectations, though. Hip mid-century modern decor... I'm not sure that I would go back on my own nickle.",review,e4TQFVfepzHf--hnBsjntg,1,1,1 +3HciJAVduCRoPDdzgh7cAA,2010-02-27,savQkEzV0BKpAOhA9KNR0A,2,"Can i just say, i hate everything about this store. If youre too lazy to go to goodwill and dig it out yourself for a third of the price, then i guess this is the place for you. + +If you are trying to sell anything, good luck. Their askew sense of fashion will make most of your goods obsolete unless its tacky 80's regurgitation. The chick actually told me that the band t-shirts i was trying to pawn were too outdated while i had a bay city rollers and rockos modern life shirt in my hand off their rack. + +They are incredibly overpriced, the staff has an elitist air for some reason (which you think would be hard to pull off in a tutu, leggings, and cowboy boots). + +Saving grace, they have some killer old punk and skateboarding t-shirts on the cheap for guys and gals. But the only time i even go here is when the boyfriend decides to go thru eastside records vinyl catalog in its entirity. + +its like a plato's closet for lady gaga.",review,eEo1W07PkjR0jLRkMF5m1g,3,4,5 +QnAzW6KMSciUcuJ20oI3Bw,2009-01-03,1BYPdZDFh-8ud_mdLz9Gyg,4,"Unlike Cassandra, I love kids and brought 4 of my own to Joe's. We all loved it. Fresh tasty food, great outdoor seating and lost of room for the kids to play with all of those dogs etc. The ahi tuna was cooked right and the slaw on it was amazing. The french fries might be the best I have ever had. The Chocolate shake was good but a little too rich for my taste. My wife said that the Buffalo chicken sandwich she ate was the best chicken sandwich ever. Her ice tea was amazing. My eldest daughter had the grilled peanut butter and banana split which had chocolate chips, pineapple, strawberries and of course peanut butter that was very different but great! The only drawbacks were the sweet potato fires ( not bad but I have had much better) there was only one condiment and drink area and that was clear on the other side of the fairly large area of land and the lone garbage can was also quite far. The pluses obviously are the tasty fresh food and of course plenty of room for kids to play and bother Cassandra.",review,_qIE1IZwp5L9MIi0Yf3YeA,4,4,4 +BJfjd8oEMW_zq8KTkixyig,2008-10-01,gpNC9L-UNqlmtGxXtOgHTA,3,"Typical unpretentious dive bar where you can meet a friend after work, play pool, watch sports, whatever... There's a pretty big food menu too. I had the nachos once and they were quite filling and tasty. Nice happy hour specials also. I heard it was a place to watch Ohio State sports but it was pretty dead when I went there to watch a football game. However, it was kind of nice getting a prime spot in front of a huge tv and the service was really good.",review,YL8SKv-pwx-Wj9cwGYrn3g,1,1,0 +Trar_9cFAj6wXiXfKfEqZA,2010-08-25,yMboDemlUcUz8EwxCuBw0g,5,"I'm a girl who knows her way around a donut. The boyfriend and I would usually venture out to Chandler to get our Bosa Donut fix so I was super excited to discover they had opened a location closer to home. I was also super scared for my waistband. + +Bosa is hands down the best donut shop in the Valley. Not that there is a ton of competition but still. They're really good. They offer a wide variety from your classic cake to puffy glazed, filled to fritters. My favorite is the glazed twist. So chock full of sugary sweetness my teeth kinda hurt just thinking about it. Their donuts are always fresh and they keep a good stock available so you're not stuck with only the coconut donuts. + +I brought in a bunch to work the other day and my co-workers gobbled them up. Who doesn't love being handed a frosted piece of donut heaven? + +I'm sure I will become a regular of the Tempe Bosa in no time.",review,Pv7DGHzZ-uqIUdOsqPpsVg,1,2,1 +lNlVwSKqaxE7agiGKfCaAQ,2012-07-23,RIWcAFp201eWn0fCKd-Jew,3,"This is great if you are in a hurry, they have slices and salads ready to go. Above average quality and a nice open space too. Perfect stop before or after catching a movie next door.",review,90a6z--_CUrl84aCzZyPsg,0,0,0 +fy4tLkVZd4Nhqqrs4ojXnw,2011-04-21,QVDJ42NMJHgwkeHqYB2_Ow,5,Next Door Realty is fantastic! Daradee Murray handled the short sale of my home recently and the entire transaction went unbelievably smooth. From start to finish she was an excellent communicator. She took all of our concerns into account and made the process a breeze for us. I would highly recommend Next Door to anyone looking to buy or sell a home. The personal attention you receive is unparalleled!,review,DFM3LAHhn9O-9Eu8cnqG6A,0,1,0 +1F-pelV0fTduYV_vCrvjLA,2012-01-28,dLQ9fi3iR05j6mLQvMW4_A,3,"I went here this morning for breakfast with the BF to use our living social deal. We had been to black bear before about 6 years ago in glendale and then again maybe 4 years ago up in Washington state. The last time we went, we were not terribly thrilled with the place. Anyway, we decided to give them another shot and it was pretty decent. I had the shasta scramble, which has avocado, onion, bell pepper, and spinach. This was good, it was not the most flavorful scramble I have ever had, but the veggies were fresh and I liked that this was an option on their menu because most places only have one veggie scramble and it has tons of veggies thrown in with no reason for those veg to go together...anyway, the breakfast came with a ton of country potatoes which I liked more than the typical hash brown. The BF got the one biscuit and gravy breakfast and he said it was alright, not the best ever, but not bad. I thought breakfast here was better than Denny's or Ihop, but clearly not as good as the Farmhouse or Liberty Market and the like of local breakfast places. The service was also good, but I thought it was so weird because our waitress kept calling us 'kids' and calling me sweetie, princess, and honey. I find this somewhat condescending, not that I think that was her intention, but I think that is unnecessary. I know this is kind of a diner thing, but I have never really cared for us, but maybe that's just me. The waitress was good at her job and attentive though, so that is what's important. Also, the portions are huge and I wish they had more options for half meals because I don't like to waste food, but I know people like the giant portion thing.... I would probably come back here for breakfast again sometime, however, because it is decently priced and has decent flavor.",review,3gIfcQq5KxAegwCPXc83cQ,1,1,0 +CdOb17NMdQpagyHSxv5mHA,2012-07-23,8qrEtyJXwzK9CqKWpSeoRg,4,"My husband and I were in the Staples parking lot, looking for somewhere to eat. I popped up my trusty Yelp app and found this place, about 30 feet from where I was parked. It's pretty unassuming from outside, but what an amazing dining experience. Not only is the food amazing (well, of course--you make it exactly how you like it!) but the portions are such that you should be able to get two meals out of it. In general, this is a healthy alternative to fast food and an eating experience that your whole family will enjoy. We plan to take our out of town guests here when they come to visit.",review,PXlvgzU25CBGA0JHzzpmOQ,0,2,0 +cp39VURFby4A6u9m2It8jg,2010-07-14,-OOIrs-TfIRG1HF-fdiWNQ,5,"We happened upon this place on Sunday. We had our 2 1/2 year old with us and she was yelling about being hungry. We quickly ducked into Zinburger. All three of us had burgers. The kid's burger was huge and it came with fries. We also ordered the sweet potato fries. The people around us had milkshakes and they looked delicious. I also noticed fried zucchini and figure next time I'll order those instead of fries. + +We were in a rush and had something at 6 pm. We told the waiter we were in a hurry. He was great, friendly and accommodating. We were seated next to the hostess stand and my daughter kept trying to engage the folks standing there. Everyone was so nice. + +My constructive feedback would be that I ordered my burger medium well and I received it medium rare. It still tasted yummy and I ate it. Had it been served that way to my hubby - he would not have been able to stomach the red juice flowing from the burger.",review,QT-7jpsEuCR-pFro59KBtQ,0,1,0 +QbqJEXdngh_9fwqVTI0CJQ,2010-04-22,oUw363cdW8aSYQUG5vmPMw,4,Came here for lunch and had the calzone and salad combo and it was very good. The portion sizes are just right and the food is tasty!,review,kszQavQ4dPVYzx0lfIlWJQ,0,1,0 +SNpVV5viJ2aPylP6bkAx8Q,2012-05-02,W14paJGcOv-PhHd3GkPnbw,4,I only go to ihop for pancakes because I don't really like anything else on the menu. Ordered chocolate chip pancakes and a hot chocolate. Everything was great and I left full and satisfied!!,review,FB5y4CbqJzX3r7zELc7SqA,0,1,0 +m9Wqqma30o-hH2fAX7dnug,2011-01-31,pGHp2ORQZZkb2_Q3HCAIHw,4,Thanks to all of you Yelpers for recommending this place! It was just what I have been looking for in my neighborhood- fresh and tasty Chinese food for a decent price unspoiled by trendiness. Thanks! I will definitely add Deserg Jade to my regular rotation.,review,uCfdp7AH45qanhjzWhYZsw,0,0,0 +4gxZ5tPEqm0QnRkILa9cNQ,2011-02-17,yu9h3obZb712CCNoSc62oQ,5,"Addicted to duck fat fries! Curry mayo is a perfect complement to duck fat fries. Did I mention how awesomely delicious duck fat fries are? You know what, forget that I said anything about duck fat fries. They only make a limited amount and I don't want you to go. Nope. Don't go. + +I guess I should mention the rest of the menu. Everything is awesome. Nutella rules! Seriously.",review,0I5bCtHHGZsMvE8QqrtlgA,1,2,2 +vujjKuD4Vls4xKLe5MJ63Q,2010-02-16,2fBIkj0y15lcd5z4eNVgGQ,5,"This is another work lunch takeout place for me and it always does me right. I always get the Jerk Chicken bowl with rumbi rice and have never been disappointed by it. Good flavor, lots of chicken and veggies and rumbi rice is simply delicious. I personally like to add hot sauce and also sometimes splurge on a cup of tortilla soup -which is pretty freakin great. There's alot of cheese on top of the soup so lactose intolerants beware!",review,wC1CPV5bf--bDLtlhNSPLg,1,1,1 +bOB11LVavtN9PWTNwR52Tw,2012-05-01,RKyAbz7d5g6IvUdmvBLoiQ,2,"Strange layout that makes you think you got the worst table in the house no matter what table you're at. Wait staff and the General Manager (WTF?) standing around doing nothing in a mostly empty restaurant while customers wait and wait. It all comes off as the biggest tourist trap on Stetson Ave, even though the original Barrio Cafe is a local institution, and the prices are actually very reasonable. Food and margaritas were all amazing, but when the front of the house doesn't seem to care if I'm there I won't be back.",review,FktbKOzznpoKTNXMVtc8EA,0,2,0 +I1rvqU2k5UQGo2lGdY6hyw,2012-01-29,5E7zYtYb4ieE3AskNSraQQ,5,I seriously can't get enough of this spicy goodness! All I ever wanna go is SIAM and nowhere else. I've been to so many Thai restaurants in AZ the past month and NOTHING compares to Siam! BEEF MA SA MAN curry is so addictingly amazing and the pad thai is always cooked to perfection. I'm actually craving it as I type this.,review,infC_5J8sA4NiL_QBJpWag,0,0,0 +-73hx2hut_2KPcGpCTO5YA,2011-09-07,TfbLkWdYyE6De6rRNFPSCA,5,"For some reason these self serve frozen yogurt places have popped up all over the valley and they are all very similar. What I like about this place are the choices. I usually don't have any issues, I'm a mint chocolate chip man, and that's typically what I order. My girlfriend on the other hand likes to mix it up and try new flavors and toppings. This place has the largest selection of flavors and toppings of any of the self served frozen yogurt places we've been too. For those of you who are calorie conscience, as I am, they post the nutrition facts right buy the flavor so you know exactly what you're getting.",review,GNCh2HzSVYsS12o76qtUiQ,0,0,0 +679pJn1KyKr2X8NcQNyMzA,2010-03-12,EFA0oWhDAyjHkK0pF0rwBw,3,"OH T.T. + +at first you were intimidating...all these crazy people fumbling out of your doors....the odd screaming coming from the patio. Not to mention your lack of elbow room that causes your patrons to drunkenly shoulder check each other all night...but now i've grown to accept you. I don't love you yet...i'm still seeing other people...but i feel that we may have a future. see you soon T.T. like in a couple hours....",review,UXlI002lWvHNK4Q35W1EEQ,3,2,1 +9qFaZ7N4MFB0AjdBffiEzw,2011-07-21,_qvTmOLg6av2OgHwcD5rDA,5,John did a fantastic job on figuring out my overheating issue on my Infiniti after Grelichs failed to fix my car properly. John is more than fair with there pricing and are extremely knowledgeable. He has a customer for life from me.,review,AangeOfIV7Mtviy__ht6xA,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2010-01-27,WqIQtj1A2eJJkqsgZDhufQ,4,"This place is a good go to when you're looking for a mexican infused panda express. Haha. Yum! I got the combo meal with the Jade Red chicken made into a quesadilla and the diablo chicken. Really good! I also got jerk fried rice. The beans were also very good. Yummy in my tummy. I really enjoyed Chino Bandido's, but don't think I could go more than once during a trip to Phoenix (I'd get very large from eating like this!). :D Oh yeah, if you want something more than a snack, don't just get a quesadilla by itself. My poor brother thought the quesadilla would be huge and good enough for his dinner (thinking taqueria size), but it was pretty sad and small. Luckily, my combo wasn't that small and I had extra food to share.",review,NGFk3rOFXXii9glKLoZQHg,2,2,0 +RqbSeoeqXTwts5pfhw7nJg,2012-07-03,tVIvAjz2nGPt7_cDr3vOJg,4,"Outstanding service and food , drinks are not bad. Service can't be beat.",review,8iKbL_CSXD1mRGYXRk2Syg,0,0,0 +eJpr6Ks8pr4bmvDVPTN-Xg,2009-03-23,B00KZRrechVCzEVdvhYlqw,5,"The obsession started about 2 yrs ago and I haven't looked back since... +Started with getting them catered for lunch, then a trip here or there to the restaurant. SO. GOOD. The bread is amazing, but the love, sweat, tears and what ever else they pop in there is addicting. Hmmm, now I am wondering what it is they put in there?? Anyway, I won't think too long and hard about that one. But tomorrow I'm definitely heading back for the Vermonter, gotta feed the addiction.",review,FnV57D-raoRHJ10OKNT7wg,6,5,5 +hWhVP-28LYP3llaMlAJ_JA,2010-07-29,XIhLk79RWIb1pp1mQf4uoQ,1,"We've been going here for 25 years and I had my first BAD meal recently. A rotten chicken tamale, the corn meal might have had rancid fat in it or the chicken was rotten, either way it was stinky. The wait staff didn't seem outraged and shrugged it off as though this has happened before. I may go back here in another year, but Rosita's Place is off limits for me now.",review,lND1_sIXaA1GYDxVduyMsA,1,0,0 +dJvUc4ViWEJ0NJfQtYo7xg,2012-05-28,9gqBCVCZqOMQPlQT5durWg,4,I booked this resort through Priceline like so many other reviewers. I had seen this resort from Scottsdale road many times and always thought I would like to stay there sometime. Now I am so glad I finally got the chance. We stayed for 2 nights over memorial day weekend. Upon check in I was asked if I would like to up grade to a king suite for $20 more a night. I said sounds good to me. I figured it couldn't hurt for as cheep as I got the room through Priceline. I cant say enough about how well we were treated at this resort. Some of the other reviews said that this resort didn't have a resort feel. In my experience nothing could be further from the truth. I was treated better here than I have been at many 5 star resorts that I have stayed at in the past. Our suite was part of a 4 plex of suites and while the decor was a little dated it was very plush and comfortable in every way from the couches to the king size bed. The bathroom was very clean as was the entire room. The ground around the entire resort were impeccable. There are either 4 or 5 pools through out the resort and the main pool has a small waterfall. The jacuzzi tubs were all very warm and in working order. We didn't order room service but I did browse through the menu and the prices were really reasonable. Everyone we met that worked at the resort was extremely friendly with the exception of one bartender at the poolside cabana bar. Overall I would have rated the entire experience with 5 stars the reason I gave it only 4 stars is because of our experience at the poolside cabana. On Saturday afternoon we walked down to the poolside bar area to have a drink and we sat at a table near the bar. We were ignored by the bartender for over 15 minutes while he talked to some young girl in a bikini who was already done getting her drinks. When we were finally acknowledged we asked him if he knew how to make a certain drink he quickly replied no what else do you want in a very rude manner. We each ordered some Orange drink that was on special and it was terrible. So I am taking a half star for that experience and a half star for the extremely high price of wi-fi. It would have cost nearly $13.00 a day so we decided to pass. Thank God for our smart phones. Overall we really loved our weekend at this resort and would definitely return especially for the great price we got through Priceline although I never did get a chance to see a regular room and I wonder if our experience would have been as good if we hadn't upgraded to the suite.,review,QGHqcWMrAQg7d1rwY1Xyuw,0,1,0 +ntN85eu27C04nwyPa8IHtw,2012-04-02,W6tV_9XYTDMS3bqKp9H2Ng,5,"If you're at all a ""Foodie"" you can't come to Phoenix, or anywhere within 50 miles and not visit Matt's Big Breakfast. The wait outside is just part of the ambiance and culture of this tiny little place. I hope they don't very enlarge this place....it would so spoil it. + +Food....have anything. Its all cooked to perfection with love and kindness from a kitchen staff that really cares about freshness. My personal fav's are the Waffle and Bacon and the multi grain toast with the fresh jam typically made locally....changes frequently. + +This was on Diner, Drive-ins and Dives a few years ago and its still the same bustling place as when Guy was there. + +Side note...this was way cool. On our last visit there were 4 of us, and if you've been here you know there are only a couple of tables that seat 4. So we're waiting outside when the server comes out hands us menus, takes our orders. When we're seated about 15 min. later our food was delivered within minutes of being seated. Helped us get in and out and helped them move a table. Much appreciated service.",review,kNjopydrBFBTXPN_6aYA8g,0,0,0 +jbKVbSz51F8IcewsiRQu4A,2011-08-08,Bm7APgv4PApljYRTUoSOcQ,2,Went to this place with family for a birthday party and tried various items from the menu. Wasn't impressed with the food and the quality of the items. I've had better and will not be back since there are better places to dine at in the valley. Sorry for being kind of harsh but I am only being real.,review,9bP3urjM__IP5csFh9ZsuQ,0,0,0 +qAORECtABjr_FsvSzy1apw,2012-07-04,qT-_Zyx1JQrpY1YYJPBkUg,4,"So much better that 5 Dorks, I mean guys. They have salads and great chicken selections!",review,x4thcv_eJg2FBsb_E8P4sA,0,0,1 +fWPg3tjv0hZ_yKR670UtSQ,2012-03-01,Bnl_5_Bkg62EJXlOqoT4Cw,5,"What can I say... we eat here once a week for lunch cuz we can walk here. We come here for happy hour twice a week cuz we can walk here. + +So, yeah it's pretty convenient... but we STAY here after hours to play poker because the servers know us by name and the food is priced right and the poker crowd is really cool and it's a great place to eat-n-learn. + +And we LOVE Tony because that guy says hello to EVERY CUSTOMER EVERY TIME. + +Trust me on this one... jump off the freeway for happy hour... you'll know what I mean when Tony says hello to you, too. + +PS get the three meat calzone. You look great and can afford the calories...",review,R50WCEHhvycn6OzoEkA2Zg,1,1,0 +qFPJ_bHbS13PoEEKNexnBQ,2012-03-26,jhEB8w-A8_nGSJ7DnR_TwQ,5,"What an awesome business! Friendly, knowledgable people that make you feel like family when you come in. I can't to tell you how refreshing it is to walk into an audition and feel welcomed! Auditioning is a scary enough experience without feeling intimidated by your environment and the people auditioning you. Here you'll find great people who love what they do and have an extensive amount of knowledge and experience. Oh, and I also recommend taking one of Faith's workshops... I took one recently and I learned some very valuable tools that will definitely help me in future auditions :D",review,u-hjbWO4-kvfF0c03q8JOA,2,2,2 +LzpR_jE6VIutJ08s2cdRrw,2012-06-25,o54n8xoxJ15KNsLHXVuiwQ,5,"Delicious food and excellent staff make this small French restaurant worthy of five stars. We began with a glass of fabulous wine that we brought (it is byob) and ordered the onion tart as an appetizer. The taste of the leeks coupled with the cheese, buttery and flaky pastry made this one of the most tasty ways to start a meal. I ordered the marinated chicken. This dish came with a juicy chicken breast with a light pesto sauce, mashed potatoes and sauteed spinach. The flavors intermingled to create a sensuous bite, time and time again. My girlfriend got the filet, which was juicy and flavorful and came with perfectly roasted potatoes and tomatoes. For dessert we ordered the tart of the day, which was fruit and coconut cream on top of a shortbread-tasting tart. Just delicious. The service was wonderful, very efficient and friendly. It is not cheap, it was $99 for the appetizer, two entrees and dessert...but for the experience and the exquisite flavors, I will go back for any special occasion... guaranteed.",review,WNCNmynlYmIkz2VeTlfVRw,0,0,0 +nKrK1aK2uWtL57Q3ShH6Hg,2011-10-09,TYBDtiPcJ5YBRpzyJcFLpQ,4,Nice little find for casual sushi,review,PfuPTOzx5u0vucw4fLllKw,1,1,1 +ttLtsY1S2Angj6hvEdzwDQ,2010-05-25,lQ2SU7-n12S2tQT8HaKaNQ,4,"Blue Martini hosts ""Take The Stage And Be The Lead Singer Of The Band"" on Monday Nights. Usually there is a band that sings top 40 but on Monday nights anyone can go up there and sing. My friend loves karaoke and was dying to get up on stage and have her moment so I went for moral support. BTW she rocked! Most bars are dead on a Monday so I was surprised that there was a decent crowd here. No cougars in sight the whole night! The drinks specials aren't that great but you can get $7 specialty martini's or if you go with a group of people you can split a bottle of vodka for $100.",review,jopndPrv-H5KW2CfScnw9A,3,3,2 +WyTiZGv0edFH-J6cDwTp9g,2012-02-29,eME05gkT5_MGrerhnEgwdQ,5,Everything you need to feel like you opened a time capsule! Place makes me want to have 5 houses to slather in vintage odds and ends. The place is very well organized and themed which makes it easy to find items while you're on the hunt.,review,vDpNMIiwVIBmO8kbucC7oQ,0,0,0 +-UT6IHfVW_2yzz1bf8WI5g,2012-09-19,1DmZ5gHhff5CgZ_lqaPyHQ,1,"Love the idea - vegan Mexican. Have tried to eat there twice. Both times checked their FB page for hours, both times they were closed. Called their phone number, no one answered. No sign, no explanation on FB. Pathetic.",review,_caYjV_hptPhQTYCxUaqzA,1,7,1 +hfl62LX14YqNpG0g0Tj6_Q,2011-02-26,AXMWYfXONosWnIEgjrpqgw,4,"The food here was great! Wish there was more indoor seating, but the seating both indoor and outside is nice, live music sometimes, nice decor. I've tried a few of the specialty drinks, some are good some are so/so but isn't it always that way? Just preferences. The prices are a bit high, but the portions are worth it, we can split a meal typically. The Deserts are awesome too!",review,vktGo1HGeFVoIvZ1K34a_Q,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-09-03,0KriGr38Pcu1EqHolt1wjQ,3,Decent airport with a limited variety of food choices and a strange layout. It feels a little outdated but I was only at the airport for a quick layover.,review,5RJ2Zycslp8cLyAJl4pUNQ,2,2,2 +mxrXVZWc6PWk81gvOVNOUw,2009-02-04,e0JP4LgxMad5c1kmEYAGOQ,4,"Happy hour was hopping today, unlike last week. Bartender Ryan wasn't there, but no worries, as Stefan was just as able and gracious. I selected the cab to go with the RF ""Big Ass Burger,"" even though I wanted to try the zin. Did I choose wrong? I'll try the zin next time. + +Since I enjoyed the chile-pistachio bread last week, I asked if I could have the commercially-made burger bun swapped out with the new-recipe chile-pecan bread. No problem. Ordered it medium, no pickles. By the time I had thought to take photos of the burger (I was starving so I dug right in!), the scene was a mess! From the very first slice, the longhorn cheddar-topped patty crumbled into many pieces- I kept wishing I had a spoon to scoop them up! No matter, as it was still a wonderful meal- loved the smoked bacon, and the chipotle mayo worked well both as a burger condiment and as a dip for the wonderfully crisp and seasoned fries (see photos). + +If only there are more happy hour meal selections (only two, excluding the salads) for me to enjoy. Guess I'll be forced to try the Huckleberry bread pudding with creme anglaise and vanilla bean ice cream next time... woe is me ;)",review,0bNXP9quoJEgyVZu9ipGgQ,14,15,9 +E7nk0lC317pGxMX56gvaVQ,2011-10-03,TFE69NF8XEhhK8iHo90k8A,2,"I'm giving this place 2 stars because it just doesn't have it. +First off, the energy in this place is lacking.....the food isn't anything to write home about and seriously, I could of made better in my own kitchen. The SPINACH CON QUESO DIP was ok, but the chips that came with it were stale and the CHICKEN AVOCADO SANDWICH was dry and came out like a burger not a sandwich......The Skinny Margarita's are horrible and lack tequila and the bartender doesn't know how to make a good martini to save his life! +As for the staff? Well our first waitress was a little too friendly and just about sat in my husbands lap....oh, I know that a little flirting comes with the job and is what you do to get a better tip, but come on honey, how did you know that I was not paying for that dinner? If I was, the only tip you would of gotten would of been a 'back off a little on the whole, I have daddy issues in flirting'! I have to admit though, once we changed seats after our dinner and went into the lounge area of the Bungalow, our waitress knew exactly what she was doing when it came to her job and her flirting was exceptional.....she knew how to work it while still being a classy lady, and I respect that! +As for the clientele of this place, it's a younger crowd full of loud drunk guys at the bar watching the football game. What you expect in a sports bar.....Outside the crowds quieter and more tolerable. +All in all, I won't be back and I won't be recommending this place to any of my family or friends!",review,4fJQVV3r8dTCIaXAVbBEbw,0,2,0 +IoFggnoj1P4EcmNEP2K6Ng,2008-08-22,AouuOZiVWTySQAD6FIgUDA,5,"bank building turn to a coffee beanery is way cool. + +plenty of seats to settle yourself in and crack open your books and do your homework. the free wi-fi is helpful too, but the connection lags sometimes when their a bunch of people hopping online to check their myspace. + +it gets chilly at time, i suggest bring a sweater if you're the unlucky one seated underneath the A/C vent. + +the vault room is great when trying to escape the loud chatter in the main room, just don't forget to turn off your cell phone when you're in there, it's kind of rude... + +if you wanna be shaking out of your pants, i suggest the Iced Toddy. it's strong and it should keep you up all night if you have a big project the following day. + +customer service is very nice and helpful.",review,mUUy72UfqmFj_krWclKELw,1,1,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-07-06,88PBEqEtElumaEXXEXb5AQ,5,"I think its about time I wrote a formal review for this establishment, considering I have recently bestowed it as ""My Favorite Restaurant"" - that's a big title to carry. + +I often judge Mexican restaurants based solely on their chips and salsa and Gallo Blanco passes that test. They have a delicious green tomatillo and smoky chipotle - as well as the typical hot sauce and fresh pico. Their chunky guac is delish and summery, as they put orange slices in it. + +Although the chiccharon gets a lot of buzz (I think it taste like Cheez-Its), their best appetizer is the Elote - grilled corn-on-the-cob with cheese on it. It literally melts in your mouth! Oh, and it doesn't get stuck in your teeth like most corn-on-the-cobs tend to. + +The orange cake is AMAZING and reminds me of my beloved red velvet - except, you know, orange. + +I love everything about this restaurant - salsas, food, drinks, atmosphere, prices, entertainment (on Wednesday!) - they just need to get rid of that damn giant, ugly, silver air conditioning thing they have running through the bar.",review,B4K5ruafil9RSDiTIL-1Bw,2,4,0 +7WGBi29_vj_7RcPVxpLNHA,2009-04-25,ok-4zBAxaoHwpiSZSjorNg,4,"A very tasty place for breakfast. I strenuously object to any place that doesn't serve hash browns, but really that's my only complaint. They have a ton of different omelets/scrambles (you choose) and you can make your own. Example: spinach tomato sausage bacon with american cheese. As a scramble. With salsa. The coffee is good (I hear from my wife) and the cinnamon roll is a real treat. Not the best cinnamon roll ever in a million years but a good 8.5/10. + +It is true that there can be a very long wait so plan ahead for sure. You'll be waiting outside. + +They grill their wheat toast-solid.",review,vhAn390OgR1H4DwacJdc7w,3,3,2 +oXKPSI-RUqOvmuSCh_DEQQ,2012-02-20,Rcq_vWK_dAidSNi8Psdi0w,4,"Superb service and food. Better than average wine list. Steaks and seafood were cooked expertly, sides were just right. Seafood tower was put together appropriately for our 6 person group. I gave 4, not 4 1/2 or 5, stars because it was just tood darned dark and noisy. But still an excellent experience. Pricey as expected, but not overpriced.",review,khVKfwUxmqz0L_d3Cm1yOg,0,0,0 +jgWAgT7LWPTf5wju9Q-kiw,2011-07-19,5OAeIMIb52Bz6nCp8u2WVw,4,"I am excited about this place, even though I have not had many opps to try northern style Chinese food. Think dough, and don't mistakenly believe it's the same dough steam/cooked/fried/stuffed in different ways. +The kind owner lady proudly told me each of our 3 dishes was made w/ a unique dough recipe... + +At first I was worried all the dough would overpower my tastebuds, until I asked for some dipping sauce... they kindly made me a black vinegar, ginger, and scallion sauce... that just upleveled everything. Who knows if it's traditional or not, but I implored the owner to start dishing this out when Americans like me (smiley face) come over and eat. + +The off-menu items are written on a small whiteboard sitting atop the freezer stuffed w/ to-go dumplings... luckily the folks there speak English, so I'll be working my way thru this secret menu and who knows.. this might go 5 stars! + +SW corner of Ray and Alma School, next to the JCC.",review,xdWsnbaTEfBMVHttqZDHxg,4,7,3 +OdD1GuGNQ64ssJmMJ_D9RQ,2011-11-20,DeOc5jG7hJxEmv02zegICw,4,"What The Duce!? + +For starters, where the heck is this place? At first, I wasn't sure if I should be walking in simply because the factory workshop look threw me off! Um ... hello? No worries, once we walked into the store area that's when the fun started. This place really got my interest. Seems to me you can purchase some vintage items and clothes. They had stadium-seating area with a projector screen, an ice cream shake area, boxing ring, and a small gym -- where the heck am I! + +We finally found the restaurant area shortly. The kitchen is an old school food truck, then again everything about this place is old school; chairs, tables, etc. I ordered the sliders because it was a recommendation - meatball, chicken sausage, and bbq brisket. A bottle of coke -- yep it figures. Meatball sliders were the best of the 3, the sausage was definitely and acquired taste. My sis, had the eggs and avocado one and it was okay. + +I enjoy my visit to the Duce simply because of it's odd ball nature. It's definitely an experience wortha visit. - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,2,1,0 +TfTlOE6h9E9o34dEkw9L_w,2009-04-16,hXWYiRqo4iiw21NAkc6srA,4,"Been to the Rose and Crown a couple of times now and have sampled some food. They have an extensive beer selection, including Sessions. It's an American lager. Very tasty! They also have Carlsberg, which I am told is the Bud Light of Europe. I still love it! The french fries are the TITS! They are so good I was unashamedly eating them off of someone else's plate without asking. I have had the Reuben and was uninspired. The corned beef was good, but overall just lacking. I guess that is what I get for getting a Jew sandwich at an Irish pub. + +The decor is cool! There are futbol kits and scarves along the walls. Ya know soccer? Wonder if they show games there on the weekends? Do they have TVs? Oh well. The place is a little small, but quaint. They do have a nice patio that has ample space. Cool place to hang out on a spring night. I think they had live music too.",review,1ylYrKcGNA8MDkhNBTjHMA,1,3,1 +O02Z6r9mO3tORhD5ynWPeg,2012-08-29,o_Onywa5PRrXHwmrdBZ1PA,4,"Very good coffee! I get my iced Americano here with room for cream. The coffee is so much better than the Starbucks down the street, but not as convenient...shamefully to say, there's no drive-through. When you have a vehicle full of kids which one would you pick? So, I come here solo right before I wander around the little shops. A must try!",review,c3yJNjz_K--z4CIpR7yhvQ,2,2,2 +Zx8_4zKdDBSO3qGrkukBIA,2011-04-12,Zcd6w1ThPZgPNDcT26QApQ,2,Atmosphere is like I'm at a Mexican/Chinese/Jamaican restaurant..... cuisine could be better.,review,Gzh93lma7vWTK2WiENHd4w,0,1,0 +rZbHg4ACfN3iShdsT47WKQ,2012-08-05,2oymozYB2jGQhbOiLTjM8g,5,"Bobby Q is GREAT! We enjoyed EVERYTHING: brisket sandwich, baby back ribs, brisket with spicy sauce - yum!!! Blooming onion - just right! Baked potato crunchy on the outside and fluffy on the inside withe barbeque pork and the fixings......mmmmmmmm! Our waitress perfect - Go - now!",review,vnCCj16sP7BjdyRue7QcdA,0,1,0 +LTG4CxnXElBi7R7vZUbeHw,2010-07-13,AtAqiWzU_ifXyMvTQhjy9Q,5,"This store made me feel like I had died and went to fabric heaven. There is just so much beautiful, wonderful, amazing fabric. I dropped a pretty penny- but I've already used some of my perfect fabric for great projects. + +The place is clean, the staff is super friendly and patient- especially with newbies like me. When I brought 10 different reams of fabric up and had to stop and really think about how much I needed- patience came with a smile. It seems like everything (even the high end designers) are around $10/yard. + +If you get bogged down with all the fabric that you are falling in love with, they have a cute little table set up with these funny little signs that say ""get your paws off my fabric"" which made me chuckle. Maybe I'm turning into an old lady who loves silly stuff like that. + +Despite the somewhat sketchy location, 35th Ave. Sew and Vac is my new go-to for fabric!",review,0lxf4v5NuJ1U6Bk7SGAJ5w,2,4,2 +nBrD6TxddhHx4FhMk32JvQ,2012-11-02,jbFnxorx2UoV1CfIGOcmfA,3,"Niro's is a staple. Quick, easy lunch that hits the spot when you're feelin like gyros. I'm not saying it's the best gyro I've ever had, nor am I saying it's the cheapest (around $9 total), but it gets the job done. + +I usually get the single gyro meal when I go. The fries are the thick cut super crispy kind, and the gyros are cooked well, with plenty of sauce (not sure what people are saying about it being dry, my hand's are always a mess after eating one of these), and onions and tomatoes to boot. Great in-and-out spot if you didn't bring lunch to work on any given day. Plus, the owner is always really nice and friendly.",review,Yoa2y89jR7tAnWRLSDca7Q,0,0,0 +tdcjXyFLMKAsvRhURNOkCg,2010-07-12,CCw0OX1RwsyxFYUwzMxS8g,1,"Bad music, slow service, disgusting overpriced drinks, and annoying patrons. Definitely wouldn't come back if someone paid me to. I can't even drink this margarita.",review,OMqlb9paqHOSOPGiVeL6Qg,0,2,4 +YfHIg4GabWy-IysbzeocTQ,2012-12-11,tf2OEJPkTFBXSdx_rXjTEw,4,www.tiltondevelopment.com supports our local community newspapers!,review,CsNfHqlc5ppb9qk6XUDdFw,0,0,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-05-01,DY2CnXnnlOV2IZM3jwm_qw,5,Anyone who tells you this place isn't amazing is cu cu for coco puffs. The owners are equally amazing. They will remember you and tell you amazing stories and the cocktails are always amazing. My favorite is the lychejito made from lychee infused vodka made in house. The spring roll bar is amazing and they always change it up for me if I ask for substitutions. There really isn't anything on the menu that isn't good they offer everything from Vietnamese sammies to amazing clay pots. I always go for the soup but that hasn't stopped me from trying everything else. Everything is always fresh and delicious. Their happy hour is awesome as well.,review,RIFHoJhOqVlhIfUoykg89Q,0,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2009-10-19,4jzZIXcXOub2k1cvrlFemQ,3,"So I'm apparently oblivious to the fact that anything with the name Joe is owned by the same person. Luckily for me, I wasn't stupid enough to order bbq pork again. Joe's Farm Grill is a pretty cool concept and probably the only decent place to eat on this side of the 202 (since Mobsters INC closed, at least). There are enough review here that clearly he is doing something right. Suburbanites love to feel like they don't live in a city and, I'm sure, love the idea of a restaurant with picnic tables and trees. They must because the place was a freaking day care when we went, with snotty brats running all around and climbing on everything. + +Anyways, back to the food. I ordered a BBQ Bacon Burger. I didn't bother to specify how I wanted it cooked and it was, surprisingly, cooked to a decent medium-well. I subbed some sweet potato fries with it and they were pretty good. Little more pepper would have made them great but oh well. The wife had wanted to sub the veggie fries with hers but they made us order a side of them. That side was literally 3 pounds of fried veggies and was way too much for any human to consume. They weren't really my thing but the wife enjoyed. + +This place does a lot of things well but they suffer from a lot of the logistical problems that Joe's BBQ does. The line is better and it keeps people from getting backed up but they seem to run out of menus quickly. People grab them, carry them in line, and leave them at the window. As a result, there are no menus left when people walk in. I refilled the thing twice while I was standing in line. Also, the condiment/drink counter is outside and all in a row right by the door into the restaurant. These weird clusters of people trying to get a drink or some sauce develop and creates an obstacle course for people going in and out of the restaurant. This leads me to my final problem - the indoor pickup window. While the summer is long and hot (and I'm sure leads to a lot of people usually sitting inside), the day we went had tons of people sitting outside. When their buzzers went off, they had to go inside to pickup the food. The single door seemed to be all sorts of hazardous for people going in to get food and people coming out with food. Finally, and I know this sounds stupid, but the trash can outside has the smallest opening ever. You cannot actually stick your plastic basket inside the trash can and turn it over to dump your food out. You have to pick the stuff up out of the basket and throw it away with your hands. I just finished my meal, cleaned my hands, and now I have to wash them again because I had to handle a greasy, sauce-covered piece of paper to throw it away. + +I know this sounds nitpicky but it turned what would normally be a 4-star peaceful lunchtime experience into a logistically stressful nightmare for me. When you make it hard for me to get in and out with my food, it makes me feel like you don't want me there. I know they are going to read this and I know they are going to dismiss it just like my gripes about Joe's BBQ but do me a favor, when you build your next restaurant, hire someone with a degree in urban planning to help with the layout instead of just cramming things wherever you think they will fit.",review,fev0iI-XDrteD4SYRKjiUw,1,3,2 +cfy-C6XNFt-F-dCQfK7EDQ,2011-03-15,RageAhURc94P-u6HXDwAVg,4,"Pretty good. Excellent deals for happy hour. The vegetable tempura, miso soup, salad, beef teriyaki, chicken teriyaki, california rolls, and crunch rolls were very good. The spicy tuna was a little bland. Our children even enjoyed the food.",review,MWII9qY_SqMPvFE3sV9zGw,0,0,1 +oAxR0TJhPHMrN_hjQWBWMA,2011-08-12,R3JKmqYQxqCv5cWH9vMnbg,4,"As far as Peter Piper Pizza's go, this one is pretty awesome! Yes, you have the kids running around everywhere. Yes, you lack gourmet pizza. But, uh, HELLO. It's Peter Piper Pizza. I happen to like (not love) the pizza here, maybe it stems from it being rooted in me as a child. + +Anytime we go dining with children under 13 in tow, this is always a great choice. The kids eat, they play, they tire themselves out and they come home with a bunch of cheap crap they bought with their tickets that cost me triple what it would of cost at the dollar store with regular grown-up money versus tokens and tickets. Anyhow..... + +I'm a fan of this particular location because: + +1) The place is spacious enough that you are not run down by little people on your way to pick up your order. +2) They keep tables, play areas and restrooms very clean. +3) Service is satisfactory. +4) Play area, arcade games, carousel are all in great condition - nothing torn, falling apart or borderline condemned like other Peter Piper restaurants. +5) They have several 32 inch TV's hanging in case you want to catch a particular game while the kids are playing. +6) And, again, the pizza is really not that bad.",review,Rl2ODhGKQ4VCueH6rzqBIA,0,2,0 +sM7kdQ7lL7-oe3DNaJvGrQ,2009-01-08,MbC5AQEsbY54Pg-GIuf5Ow,5,"I originally came here because I heard they have a gluten free menu--i expected one or two pizzas, probably cheese and one other choice. But they have a FULL menu of pizzas, salads, and appetizers that are gluten free. and they are DELICIOUS! + +Pizza was my absolute favorite food in my past, gluten-filled life. Anything from Slices to Pizzaria Bianco. I have tried gluten free pizzas almost everywhere you can find them, and they are always too dry, too thin, too soggy, or completely different flavor than what pizza crust should taste like. + + Picazzo's gluten free pizza is delicious, the crust is pretty thick and has a good texture, not like a big saltine cracker as most places tend to be. the flavor is true to pizza crust! my friends even like it so much they will split a gluten free pizza with me instead of ordering 'regular' crust. + +There is also a range of appetizers that are delicious, caprese salad with gluten free bread and the spinach dip are my faves. + +The employees are all very nice and aware of gluten intolerance--they check with you before they bring you additional food items or before putting GF and non-GF foods together in your to go box. + +I love it. If you are gluten or wheat intolerant and you like pizza, this will be your new favorite place. Totally worth the drive, and the money. But the prices are very reasonable for GF food!",review,kNzDEbEdnbdFgnaYD8r6nw,0,1,0 +QKGZajo_Xm6AW3lHkU9Mmg,2006-01-14,3AZHdOPpk7TUAtDjKbex6g,5,Mastro's serves up the best steak in Scottsdale. They also offer delicious seafood and excellent side dishes. Prices are steep. After 10pm this place becomes a pick up joint for gold digging women seeking sugar daddy's.,review,7Ztf1LMEz5Zm0njxc46jLw,2,1,0 +7cP7WFmWiTVh-raIL3N_Vw,2010-12-30,Hvp74O477vJYmlL45614SQ,4,"This is a great place for grilled cheese and tomato soup. They also have a great selection of beers on tap. Parking is hit or miss, but you can't miss a cute house that has been converted to a great gastropub. Always a friendly face and you will always run into good folks.",review,vhxFLqRok6r-D_aQz0s-JQ,0,3,0 +M6fjHpkL9IRI-nI0BattRw,2012-09-17,EDUz1xofgr13M85fxJ0lXg,5,"I will start this review off by saying that I would normally have given this place 4 stars, but for a large dog-friendly patio, and immediate water bowls the minute your dogs butt hits the ground, they get the extra star. + +We went today, a Sunday, and sat down next to people that had the exact same dog that we have (a female harlequin Great Dane) and knew that it was fate. We sat by them, because they seemed awesome and in great company, the food flourished in my eyes. + +They have a pretty decent beer selection, they had my favorite Sonoran White Chocolate ale and my boyfriend had something he loved on tap called the Bell's Two Hearted Ale (but apparently it's an amazing IPA). I knew I'd love mine, he LOVED his. + +We had the Mac and Cheese, which was awesome, but not as amazing as others I've had. So order it if your a Mac person, but don't if you're not. + +We had two sandwiches for dinner, I had the Acapulco Cheesesteak (UNBELIEVABLE!!!!!!!!!!!) and Seann had the RB&C (an equally impressive Roast Beef concoction). Those were both devoured with great beer and great conversation with others. + +Lastly we had the Triple Chocolate Brownie, per a recommendation from our fellow dog owner and it was delish. VERY VERY chocolatey and too much food after an app, a sandwich and two beers, but it was definitely worth trying. + +Overall the food would have gotten a four, but the experience with cool people around us, and a great waitress really sealed the 5 star deal. Now being added into the rotation. Thank you Main Ingredient! : )",review,dj-vs4rukH6dXWVpPOq0_g,1,2,0 +akCEmlqxFOTpn2oxSPDLkA,2009-03-19,F_yx0V5rG5H-cLQYnYjQyw,2,"I used to go all the time when I was in HS and last trip I noticed some change over of the stores from what I remember. The food court has okay variety, but not a whole lot. I think that the management company neglected this place for too long, it definitely needs its facelift. It's great for its convenience if you need to pick something up real quick but I wouldn't be spending all day there.",review,7jOAowWbwD-ER1hJE_GAeQ,1,2,1 +MuIXnv7Oq7X3-4aEsp9dDA,2012-12-04,-Thtk_OBDRvDPBpLFq_ZsQ,3,Ok. Not great for what is supposedly a good steak joint. Not much ambiance and food was good not great.,review,fBUX2UDQQDrrYNq9Bxft4A,0,0,0 +Lfm0zMACRFYpUZR_xGMYAQ,2011-12-10,Wk8ta6FpCUduQ21bMzFZRA,5,"Yummy yummy yummy! Absolutely loved it - kick back, quiet, people nice, not crowded and breakfast was crazy yummy!",review,F6B-A5coQW7gGhi4sd_mkg,0,0,0 +FOfhEC6rN23RQaUlsR2byw,2012-09-10,rtc78teedDhKsolGw65sGg,5,"My boyfrind and I attended here this past weekend on Serptember 8,2012 to celebrate our one year anniversary. Every employee went out o their way to tell us Happy Anniversary. We were seated quickly after entering the restaraunt. Our waiter was knowledgeable, friendly and very professional. We were given our own privacy to celebrate intimately. The food was amazing and we both enjoyed our selves so much!! Thank you Meling Pot. We are going to make you our annual celebration spot!!!",review,ILxnPlGmSetxekgmEi15Rg,0,0,0 +h6jfMpTZpNduLG0wE2tbaw,2010-07-31,BFN9bmI9H0LIYaKt1fU4mA,5,"Cute busy place in Central Phoenix. Not hiding behind gimmicks to make themselves authentic. Simple and sweet. Staff is well versed in Japanese food, if you haven't had it in years ask. Great staff, great food, great times.",review,acOfAooftS7jdWlhyI0CQw,1,1,1 +8ZQc4awuK6_yvcERvczR5g,2010-04-01,jGxgko-vayEnO4axbRatdA,1,"I think they need to hire a better chief; the food doesn't taste right. + +My mom said she can teach them how to cook for free.",review,H2jcFGSS1n60jcKPBb-IoA,0,0,1 +KIgkwPEOxbfdeCk0ltycOQ,2010-01-04,pUElvYJztnBdefNiXs7OIg,4,"I'm shocked to see there aren't many great reviews for Maria Maria. My wife and I have been there several times, including a breakfast stop and always come away very happy. + +The steak fajitas are so good my mouth is watering as I type this. They give you several salsas with your meal and my favorite is the chipotle style creamy sauce that comes with the fajita. This is the stuff that dreams are made of. + +Also their guacamole is so good and fresh. Love the salsas as well! Everything else on the menu, though is a little off. Don't bother with the mole, it was just gross. + +Very cool decor and sometimes they have live guitar. Very classy Mexican restaurant. Go for the steak fajita, guacamole and salsa.",review,FL1xj5qKFZkU5GXVBj5TUA,0,1,0 +42Ai9wcFPE2HZ_aADGXI9Q,2010-07-12,eKxfvd2BbCWTRSSlZu_Wcg,1,"Never Again, +I brought my Mountain Bike in (which I bought 1 week earlier from Walmart) to have them replace my flat inner tubes with puncture resistant tubes.) I came back 20 minutes later when they said it would be done and as I rode away, the back tire rhythmically rubbed against the back brake. When I returned and told them about it, I was told the back wheel was not true. It was true for the whole short week since I purchased it from Walmart. I plan to take it to their competitor (Landis) and pay the extra $15-$25) to have the wheel put back to the straight condition it was in when I brought it to Slippery Pig in the first place. I would never give a shop another penny for an extra service I should never have needed on a brand new bike which coasted perfectly when I brought it in.",review,EAvzjtPx7kBk83GCWiaSDA,0,3,0 +w2PHq5wfGuqWmHAruLtZ0A,2011-12-16,5B6ZAITvJV1D5L9rUhtEIA,1,"Went in for acrylics on Friday and it was horrible! I've been getting acrylics for years and it has never been a problem to have them filed down...until this time. The tip of one finger was filed down so bad that it's blistered. (At least the nail tech put some antiseptic on it so it's not infected.) Also, when I put some lotion on my hands Tuesday a lot of my nails started getting sticky and filmy like they were going to disintegrate. NOT NORMAL! I removed mine today and found that my nails were finely filed, so it looks like they would have fallen off soon anyway. I'm not going back there again.",review,XqVGNGqI7m0KIkFrYDr9Eg,0,0,0 +G-_YjR1YrlkgIo2iavJoew,2012-11-25,mbt2MgcB9Ue2paJ6Kf7TYQ,4,"Angelina's Pho and grill was very good! excellent appetisers; which were very fresh and brought to us in a very timely manor. The service was very good! restaurant was very clean, as was bathroom! the pho was good, not the best best in the valley but very good! the broth was a little bit too salty for me. we will defintely go to this pho restaurant again!",review,DeEl8Wv1AF8oFTBKazp5Mg,0,0,1 +CO8UjN6WXsDJqo5qJx8nFA,2009-10-22,Q4wTVVEnkN-tPuspO0FQTw,3,"I have visited Tokyo Stop twice now for an a-ok lunch. There's nothing really bad about Tokyo Stop, but it just hasn't blown my socks off. On my first visit I had the bulgogi plate. It was HUGE. Full of hot marinated beef and a large serving of white rice. I've had bulgogi several times before and this bulgogi is a-ok. Again, not the best I have had, but not bad! I poured Sriracha all over it and I was a happy girl! The second time I visited, I ordered the teriyaki chicken combo. Again, another a-ok dish. Nothing fancy! The prices for each dishs is VERY reasonable. I don't think I've paid over $7 for anything. + +I would most certainly visit Tokyo Stop again. They offer a solid lunch at reasonable prices.",review,4UUIpbOTPmu43wuC2aSGkg,5,5,1 +rE2InW2Jmjy6hzH3p4Iyjw,2011-05-26,60iylZdBq3RunFH9p7-C_g,2,"I soooo wanted to love this place after reading the great reviews. I must admit the decor is far better than the typical nail joint; I too don't understand the point of pictures of really long red nails holding $100 bills...super cheesy. This place does not disappoint with decor; it is like visiting a spa as opposed to a nail salon. Also, I live nearby so this location is really terrific for me. Unfortunately, I have been twice now...really, really wanted to make it work...and it just doesn't. The first time, I paid extra for all kinds of services like a hot stone massage for my feet and extra callous remover,etc. I left spending $90. No big deal if the product is good. However, I had to go home and clean up the polish left gooped around my cuticles, file the hard edges of my nails down to something that wouldn't injure my husband, and the massage was like being tickled and then rubbed with a rock....basically no massage at all. Today, I just tried the manicure to see if a different person would be better. The standard massage was better, however, the gel polish application was no good...again gooped around my cuticles, and each nail of mine is filed into a different shape. I now have to redo the whole thing myself. Perhaps it is because I have not requested a particular nail person? Possibly...the reviews I am reading that are 5 star seem to reference a particular person. Maybe I will try one more time and request Kevin who seems to get good reviews. If so, I will post again...hopefully with a better rating next time. Right now this place is truly not worth more than two stars and those stars are only for good location, reasonable prices, and nice atmosphere. I'd give zero stars for quality of manicure (gel polish) and pedicure.",review,2N6lSx6em9TI7Y4Krysj2g,0,1,0 +ujLZmyy11g1JHCQTxRA3Dw,2011-01-23,0Xyt9XGeImU7AjiwVOp3ug,3,"i visited on jan 19 and ordered the thai basil (their signature dish) with calamari, which had a very unique flavor that was a bit masked by the spiciness. i'm a wimp when it comes to spices, and i was overwhelmed by the medium i ordered. though the dish was very good, it was, for a dish dish consisting mostly of vegetables, on the scant side for 11.95. + +my friend ordered a curry, and it was a sizable portion, presented in a clay pot. i sneaked a bite, and it was very good too. + +the place is comfortable and intimate, with booths and tables, and the wait staff is very friendly.",review,-CyBQG3dc4UnpluY7UdMOA,0,0,0 +DBoebGeuz91QAP3tSFYs6w,2012-06-19,qw9o9KNudG_aWcujmc5qMg,4,Not your typical deli meat-this is the real deal with the shredded turkey. Very good.,review,5c4p-A1sLBlpS1cPaMpdBg,0,1,0 +5-X03Zc0nN7U5eoe8uFUdw,2008-06-19,zQWAQlRIQmN-nJmBPrbB5w,4,Love this place. Quaint. Nice owners. The meatloaf is fantastic. Reminds me a little of home in Mn. .. . old house.,review,m-p9ILrmc-g2YN_vfT9WXQ,3,3,0 +PmPOuRvuN3CoNOi1nBj_TQ,2011-09-29,oWLh_cqC97TUvRq_JjRUzw,5,"In town for business, and came to Pappadeaux's for dinner...what a great experience. Hostess, wait staff, and servers were all outstanding. The food was amazing. Perfectly cooked vegetables to accompany the Costa Rican Mahi. Ice cold beer on a hot, 102 degree day was a welcome addition! + +Although we later found out our waiter was in training (it was his first day), he was attentive, professional, and available to answer any questions we had. + +Highly recommended.",review,sgb91Hc4rVeLqehNy7Pvnw,0,1,0 +k6Si433-EJrY4J7SZxsnjA,2012-02-24,kEBSBvCgJ70qjZTTwzBYKQ,4,"Strolled in with a posse of 14 people for a birthday party. The staff was accommodating in getting everyone seated and served with drinks, especially as people funneled on in throughout the night. The place isn't huge, it can really only accommodate one large party at a time. + +First off, if you are a vegetarian or Muslim, be aware that you are going to an authentic italian restaurant - meaning that 75% of their menu items will have sausage/ham/salami/etc. Being cognizant of that, it was a smart idea to peak at the menu before arriving. We got the Vegetariana Pizza ($14), which came with Mozzarella, Provolone, Caramelized Onions, Roasted Peppers, and Parmigiano Reggiano. I thought it tasted great, it was crispy, thin-crust and had plenty of cheesy to it. I thought it was an above average pizza, but nothing that would have impressed Emeril. + +In addition to the pizza, we split the Spiedini al Forno ($16), which was Marinated Beef Tenderloin in a Shish Kabob style with Onions, Bell Peppers & Tomato. The waitress advised us in ordering the beef ""medium"" and no higher because it may get too dry or overcooked. I don't usually do medium, but she advised us correctly. It came out with only a little bit of redness and packed a good flavor. The onions, bell peppers and tomato are Kim Kardashian, meaning that they are all show and no substance. I didn't think they added anything to the entree and in fact, I didn't even eat them - which is rare for me to pass up on food. It wasn't like I was full, they just tasted bland. + +For dessert, they brought the birthday boy a Dolce Della Casa ($12), which is a slightly charred sweet calzone filled with chocolate hazelnut sauce and topped with bananas and vanilla ice cream. Everyone shared and It hit the spot. However, once the ice cream runs out, you're outta luck. The dessert is really complemented with the sweetness and coldness of the vanilla ice cream. + +The environment was kinda noisy (probably because we were a group of 14), and the wait staff was kinda slow (once again, because there were 14 of us), but they had a TV playing the knicks game so I was happy being able to watch LINSANITY, and the woodfire oven was blazing away for some good ambience. Overall, this place would be much better for a date or small group gatherings, otherwise you may be waiting for your food too long or feel a little crowded. Oh and just beware, the bill can become a little pricey if you aren't splitting entrees....",review,bL5rii_pSxU3jfqesmxMaw,4,8,6 +dcd3C1gWv-vVdQ9XYV8Ubw,2006-11-29,tGDivFYsOuK8zL8N0zlMxQ,4,"not a bad place for pizza... it is very infomral and the pizza is good... they have a nice beer selection... if you want to get a pie, beer and salad in Old Town and that is all you really want this is the place... the menu is baiscally pizza, beer and salad... but all good...",review,llkm_iXQszkN5DZvmqjNqA,0,0,0 +dipzJ5BExpm6BtJ91mXd4Q,2009-11-19,_MWsMpQQ-OLlswTR9b67tQ,5,"I've been to a ton of Pho places here in the valley, and this is the best one I've been to, by far. The prices are reasonable and the Pho was fantastic. The rolls were pretty good, but not the best I've had around here (that honor belongs to Saigon Pho, not too far from this place. BBQ beef rolls there are fantastic, but I digress). I haven't tried anything else at Pho Van, but it all looked pretty good too. + +The place is super clean and the service was ridiculously fast (I don't know if it was just my luck or if that's a regular thing). + +I want to come back, but it's not close to my house. However, it's worth the drive if you ever get that Pho craving.",review,WK2Jh-uBmeqH7oI9IxfSHA,0,0,0 +qP1qB2BZRmrdsh3ZScttiA,2009-09-05,fTNYFogBZnYsiEe7CFC_Fw,4,"We came here because we figured it wouldn't be busy; we were right. + +But, to our amazement, the food was really good. I had an extremely flavorful cheeseburger that was as good as any burger I have had in Phoenix. + +Thankfully, herd instinct will keep the masses flocking to lesser establishments like Lenny's, In-N-Out and Lucky Boyz so we can have Village Inn practically to ourselves.",review,2FiNCj5rM3nF0qgaWf86Gg,1,1,1 +oyzxIqrtzu-8sWlPhJVsLw,2008-08-10,HrYFhIcSH9WyhAKPLilnGw,5,"Count us in for a #5 Combo, a Oaxaca Special & two hard tacos....maybe some chips and salsa to go! + +Best Mexican fast food around..and cheap! + +Always busy at lunch, but they get through the orders in a timely manner. Seating can be tricky, so have one order and another stalk tables! :) + +You can park behind the place and walk through the back door....little FYI.",review,AuQ28IMcqAloDmlFI7CKoA,1,1,0 +8lTdJA9GK59-NzJwleSJBQ,2012-04-25,XZdGeOwA88zd7iL21EO2QA,5,"My boss asked me to find someone to clean the office windows (about 50 large panes) inside and out, so I got in touch with Brad. He was very professional throughout the experience, and his mastery of this craft is phenomenal. The windows were crystal clear within a few hours; he did a very thorough job. Punctual, efficient, and easy to work with--his rate was very competitive, and his work is worth every penny! The office looks brand new.",review,UNIPxnKpzAbL4iSIXSQ31g,1,3,0 +vxlYflN5Uuy83wufcw1BEw,2012-07-25,L9_xjQS761v69XRrywlwdQ,5,"Ladies in the flooring section are very knowledgeable and helpful. Though I do think they are a bit understaffed, they were gracious and friendly. Fairly large in stock flooring section compared to other stores.",review,Dc3nvTY7eWjOFWM3lvAztg,0,0,0 +2OY8xs4aqOt8eTnYokdrww,2010-11-02,-ND5YhB3B8bAgcl-xSU_2Q,4,"Had an outstanding lunch here. The view is amazing, their cheese fondue dip was delicious, and they serve up a tasty burger. + +I definitely recommend it and would come back in a heartbeat on my next visit to Phoenix.",review,6u_JYePyYlIKOCZ4hVXfRg,0,0,0 +AkOruz5CrCxUmXe1p_WoRg,2012-04-22,f5uUoW5O6sGoZiSMewPxJA,4,"This place was AWESOME!!! My wife and I have been driving by this location for a couple years and finally decided to go in, I had a yearning for Ramen. It did not disappoint. We got there just before happy hour, which is always a bonus, but would still go outside of happy hour. The menu is quite extensive, the bonus is they have Italian noodle dishes as well. We have been told that this is authentic to Japan so I was impressed to see this in the valley, having been to many ""Japanese"" restaurants. + +We decided to try many different dishes, and were equally impressed with all. I had the TanTan-Men, a spicy Ramen with pork, delicious. We shared some tuna sashimi, which was fresh and tasty (looked like real pink, no added color). We also shared the Seafood Delight roll, which has tuna, 'krab' and is topped with a scallop, fantastic. The last thing we ordered were the Spicy Korean Ribs, this was my least favorite, but still good. Of course the Kirin (on draft) was flowing as well as the house Saki. + +Overall the CherryBlossom Noodle Cafe impressed us to say the least. We will be back to try more. Thank you CherryBlossom, keep up the Great Work.",review,Gh1EXuS42DY3rV_MzFpJpg,1,2,0 +KpFRiwFhgdVM3eOzwIKCXw,2012-02-15,89P7AvbG1OWeu1x-ucHfzQ,5,Just moved to AZ and this is my local Petco. Everyone's really helpful and friendly. We just took our dogs here to get groomed and they came back smelling fresh and looking clean.,review,IWFh0VOLDKOQbhW357eiYg,0,0,0 +UiHx6YjnD9swZrUreuCu5w,2010-08-07,fHCJqMjvtxuGdRT8UC3vsw,5,"Enterprise Pools keeps my pool looking PERFECT for swimming! Not only do they preform top-notch weekly service, sweeping, clearing the baskets and making sure the chemicals are right, but they are great at communicating. + +One of the tough things about owning a pool and not being a pool expert is knowing what's going on. They always take the time to explain what's happening in a way I can understand. + +Broken pump or filter? No problem! They do repairs too. They'll even fill you in on what you need to do as the seasons change, or how to handle those pesky, pool destroying, monsoon storms!",review,66tWp8ThwPATFUxYNPyYLw,0,1,0 +lktu5JPDlQUG-7cV7gOzDQ,2010-12-13,Lg-OgHLpderrDxUxh2uRhg,4,"I walked here from Tempe Center for the Arts for a coffee during a break in the dress reharsal for Breaking Ground this weekend. + +Very comfortable vibe, engaging barristas. + +Truly excellent coffee. + +I wish there were a place to sit outside though. + +Instead, I drank mine while walking back to TCA. + +Don't get to do that often enough in this Valley. + +I'll be back to Cartel whenever I want sit-in coffee.",review,GhCA6N7sRYZHBr5QKAcCWg,0,0,0 +iRg16D8dWjmv70NF68kgRA,2010-08-07,lbIfQVEb9Ljl4eyRwuhr7A,5,"Two words for you. Mouth. Orgasm + +Wifey and I decided to eat here for our 5 year wedding anniversary. I have to say this is one of the best meals I've ever eaten, hands down. We bought a Restaurant.com gift certificate that cost $10.00 for a $50.00 Gift Certificate. They also have half priced bottles of wine on Friday nights as well. + +I went with the 5 course menu. I chose 2 of the dishes, and let the chef pick the other three. We started out with the Crudo Cheese plate that was phenomenal! It had goat cheese, goat feta, goat mozarella (sooo good), cherry compote, roasted dates, tomatoes, cured lamb jerky, smoked olives and truffles with toast. If that doesn't give you a food stiffy, your not human. The first dish I had, which was one I picked, was the butterfish crudo. It was served with oven roasted tomatoes and lardo with some sort of escebeche type sauce, hands down my favorite plate in Phoenix right now. Holey cow! Next, I had the albacore crudo with truffles, apples, black garlic and pepper. Another amazing dish. My next dish was one the chef selected as well, it was their Japanese Fish Market Special. I don't recall the type of fish, but it was good. I felt bad for this plate though, it had to follow some illlll dishes. The 4th course I had was the mushroom gratin. It had hen of the woods, crimini, potato and was topped with an egg. I felt it was just too much, a little clunky. That's probably just my taste though, there was nothing wrong with the execution of the dish. I finished with the roasted veal served with parmesan creamy polenta. Friggin amazing, I wanted to whisper sweet nothing into it's ear and smack it on the boohiney. + +We went with a great bottle of Nebbiolo, that was exceptional. The service was excellent. At first I was kind of weirded out with the restaurant being inside a retail shop, but we moved to one of the high top tables and it felt more like a quaint little cafe. What a great meal, fargin amazing!! Pics to come",review,gcyEUr4DXcbjnGRAWFtfAQ,3,4,2 +Cv4kZH9zN0wpN2Drn0qkLg,2010-02-03,ByWalHNPMpcsxH36NjH-dQ,4,"I never used to like Chipotle - pretty much the same way I never used to like gyro's, but now I can't get enough! + +I don't go for the overstuffed burritos - the cleaner and easier to eat burrito bowl is the way to go. I always get double steak, rice, pinto beans, and the medium tomatillo salsa - best...combo...ever! I guess I should branch out and try new things on the menu, but I ALWAYS order the same thing from every place I frequent. Ok - next time I'll try something other than the chicken - since it's super bland. + +The staff are always super helpful - even got a little tip from the cashier once. If the line is long (as it always is), just step outside, place a phone order, then hop around the line to go pick up your called in order, because she said they make it nearly immediately. ahahah I've made an order with my iPhone twice now, and it couldn't be easier. + +The only reason this place got 4 stars was because even though the steak is awesome most of the time, from time to time it's kinda tough - it could be that much better if the meat was a little bit better quality. Also - the chicken is always dry and lacks flavor.",review,H4ewd_HH1DE0Y8RbC_7HbA,0,2,0 +bfDQai9X59uWK-XgP0t6rA,2009-03-30,5fDeOuiTHTLnOFWao74zlw,4,"This review is for the Chandler location. + +The food here is pretty good. We came here twice during my last visit to AZ. We tried the nachos, the 7 layer dip, the guac and chips. The nachos were really good (make sure to add steak or chicken, both are great), and they give you a lotta guac too. The 7 layer dip was kinda dull, like they scooped out the filling of a microwaved bean and cheese burrito. Either way, all their food is pretty cheap, and during happy hour, drinks are a great deal. Also, I like the way the place is set up; most of it is outdoors/patio, so it makes for a different experience. There's also a lot of games and things to do. We saw a group of guys playing beer pong on one of the tables, and by the women's restroom there's a lobster catching game. We'd spent like 12 bucks on that game and didn't win ourselves a lobster but we got close one time, and it was pretty damn fun.",review,dgX04RZOxtoipH9Dwf3MXQ,1,1,1 +e5kc0CQ4R-PCCDgb274gSg,2012-01-14,uljrlJicLaQJOn4KmqYpLw,5,"Best TexMex in the valley! The chips and salsa are home made and probably the best I have ever eaten. I had shrimp tacos which were delicious, staff was very friendly and down to earth.....if you ate downtown give them a try.",review,RvZks2VBHdym25_d6I8YGw,0,0,0 +3UMcsN9IjoeV8JZvC4apag,2010-06-28,3L2DRtOEJo4Mxn928JYrLA,4,"This was stop numero uno on our group's light rail bar crawl. None of us had ever been there before so we were excited to see what this place was all about. + +Situated about a 10ish minute walk from the light rail station, it is a nice walk through a part of town where I wouldn't normally be. You wouldn't think this place is a brewery because of its small size but it is. The inside is very quaint and taverny. It has a very relaxed vibe going on. + +I ordered the sampler and all their beers are pretty decent. I decided on the Amber for my pint, but they were all good so it was a difficult decision. Not bad for a little local brewery at all. For a quick bite before we moved on we ordered the calamari and the bratwurst splitter. The calamari was pretty standard and the aioli had a nice kick to it. The bratwurst was excellent and unique. Each was perfect to split among 4 people. The rest of their menu looked good but is pretty much typical bar food. Well probably a bit better than average bar food. Anyway, it is perfect food for the place and looking back we should have probably eaten dinner there instead of only an appetizer. + +Pro Tip: Cross over to the north side of the street at the light as soon as you exit the light rail station. Otherwise you will be dodging traffic as you try to cross because the place is located on the other side of the street far from another crosswalk. + +Anyway, I would like to come back for a few beers and food. I would also like to do the brewery tour.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,4,0 +mhLN_oiJd7zq6eaOS1Nw1A,2012-06-23,BijeD2f2YIowWPsmQmyZpw,5,"Tried Roy's for the first time last night when we met some friends who rave about their Aloha Hour (Happy Hour). Always avoided going because we tend to not like restaurant chains, but this place is a gem and exceeded our expectations. + +The bar area is relatively small, but very classy. We were able to have few drinks at the bar ($5 for beer, wine, and their signature cocktails) before we were able to get a table in the bar area for 5 people...thanks to Leah and the hostess staff (you guys are great). Didn't have a bad drink -- loved the The Original Hawaiian martini was delish, as was the mojito, jalapeno margarita, mai tai, and wine. A friend was sad the cucumber drink she liked was missing from the menu, but sounds like the menu changes often so diners/drinkers get a chance to try new concoctions throughout the year. + +For food, we tried most of the HH specials. Everything was spot on -- excellent flavors and beautifully presented. The tuna roll and tempura shrimp rolls were my favorites (sushi rolls), with the lobster pot-stickers being a close second. Some friends ordered dinner...and were able to speak with Chef Bray about his recommendations for fish. She ended up getting the Crab Dynamite Baked Barramundi, which was so yummy! The happy rice on the side was great too. My hubby got the Yellow Fin Ahi Poke -- something we have looked for since trying some fresh poke in Kona, HI last year. I couldn't believe the flavors...eating poke in the AZ desert! Its preparation with the Wasabi Crème Fraîche made it a meal we will seek out again in the near future. Ended our meal by sharing the chocolate souffle, which was a perfect ending to a great Friday night gathering. + +Definitely recommend Roy's for seafood that is excellently prepared. Aloha Hour is a must. Extra props to Matt, our waiter, and Leah on the hostess team for their accommodations and service. We had a great night.",review,m2uaBX3VmZZSc3NyD1qyoQ,1,1,0 +0ROrgaauL7hmivzyd34iKA,2011-05-22,1nzHCM13zYPBQMDwFfc1Eg,5,"Troy, the owner, is a brilliant businessman! Being a pharmacist myself, I am familiar with the quality of his products and his facility. Trust me when I say his sterile compounding areas are more advanced than many hospitals in the Valley. + +After spending a day at his old facility when I was still training, I felt comfortable enough to send my mother to Troy so that he could help her with hormone replacement therapy. The docs around town trust him enough to let him dictate what a patient needs; they simply sign off on his recommendations. My mom has had a huge increase in her quality of life since seeing Troy, and I feel the compounded HRT is safer than the Prempro she used to take. + +Do not hesitate to consult a compounding pharmacist if you're having health issues that aren't being adequately addressed. Troy is one of the best in the Valley. It's worth the drive to consult with him, and further prescriptions can be mailed to your home.",review,o2CGc1kQHEFkYOECM3NFdg,1,2,0 +28ycqW56i70yM_C0ejNv9w,2011-08-14,mGvXy9ieIOwG6LNaiA7RXw,5,"I love this restaurant concept. It makes for a fun dinner between friends and family. I wish there were ones like it in Central Phoenix so I don't have to drive a half hour for good food and a good dining experience. +The veggie options offered are plentiful and fresh, which is important to me. The broth is so flavorful. But be warned weak tongued restaurant-goers, the spicy broth has a kick that will stick! + +Some are saying it's too expensive? I think it's worth it.",review,KNKcc5vF5k-vbAVIaZ-mGg,0,0,0 +cOUS79i4vltKIc_hy4OZBg,2011-02-22,Ysisum90f6Bg_CtkTOwDuQ,5,"Don't let the slightly sketchy neighborhood put you off. Baiz market has some of the best food in town. The small deli (cafe? Not sure what to call it) located in the market has all of the staples such as shwarma and falafel. the prices are cheap, The service is snappy and friendly, and the food is exceptional, especially considering the price. Wash down your meal with any one of many exotic drinks (or, just choose a diet coke) in the beverage cooler. Even if you've stuffed yourself silly, wander on back to the bakery. The assortment of traditional Middle Eastern sweets can't be matched anywhere in town. Come early and wander around in the market to pick up your selection of hard to find ingredients.",review,Df_GDATOdDbdS9Z0aEHK_w,0,0,0 +XBm9ffI2pK-A_HcoHXAbcQ,2012-07-06,igKKRD1Zl4k_8DSmXB47Gg,1,This used to be one of my favorite restaurants but the service went way down hill. The new owners hire lots of college students with tattoos everywhere as well as lots of piercings. Seems like tattoos and too many piercings are a job requirement along with disrespect and a lack of desire. The staff is what made this place the worst restaurant ever and doesnt seem to matter how often you let management know I just dont think they care. Also in the past few years there is a growing number of homeless that sit out front begging for money. They sit so close to the outside patio that you have them dining with you or at least it feels that way making you incredibly uncomfortable. Our last visit we sat on the patio which was next to a bench just outside the restaurant where a few homeless were stationed. One girl had a huge rat on her shoulder and it was beyond disgusting. Management obviously doesnt care and does nothing to improve anything so we go way out of our way now to eat at the other Greek in Chandler at Chandler Mall.,review,ioTLeBk0Kw7H95g-rtzXrQ,0,0,0 +3n9mSKySEv3G03YjcU-YOQ,2012-12-30,rZgzXT5oirl2jBYEpr_isQ,2,"I have two thoughts on what to write for a review so here are both and you can take your pick. + +Dear Mr. and Mrs. Postinto, +We regret to inform you that we would like our menu back. +Sincerely, +2007 + +or + +Stale bread - YES Please!",review,zJurvQwVqI5ripRGQaTIlA,1,1,1 +WNy1uzcmm_UHmTyR--o5IA,2011-05-30,NCuT3jrIqXy7sH3T9qc4AQ,4,"I ain't from around here. Where I come from, restaurants located in strip malls are not to be trusted. ""Feed me but be careful."" Speaketh my hangover and we rolled back the stone to the pasty-cave. + +So the hangover and I find ourselves inside the pit as The Soledad Brothers play and smoke rises from the narrow kitchen. Ten pounds of onion simmer on a grill. A beautiful woman hands me a menu. Oh god, they are everywhere! That man making the food has an immaculate beard!!! Am I in Chicago?! What's happening hangover?! + +No. I'm In Tempe, where there is a kickass restaurant that serves kickasser beer, and great comfort food to cure what ails you. Bangers and Mash. Mmmm. Mash.",review,JkHLxF7VYgfLRQ6DTUSewQ,2,1,1 +TQhP4vCMjvX527YMxPfuUA,2010-12-06,yeUaGFvw-3gJ0N8abwN4wg,3,"Went to this place for lunch. I've spent a lot of time in Greektown in downtown Detroit, so I'm very familiar with good Greek food. The atmosphere is fun (like most Greek spots), and servers were a young, attentive, and attractive group. The food is pretty good and there was a large enough crowd to justify the 18 minute wait for my meal. All in all a pretty good lunch spot...heard that the expanded happy hour really packs 'em in, so naturally I HAVE to go back to get my OPA on!",review,Dox74ekWFkcBJmkHkJxeEQ,1,1,2 +3oZcTGb_oDHGwZFiP-7kxQ,2010-09-11,OfMrI_HAd5ble9nzpFZ2Bg,5,"The service has always been really good. + +I love LOTS of things on the menu. The dixie pan fried chicken is great. There's a great little sticky bun that comes with it. The Del mar salad is great. I've had great experiences going to chelsea's kitchen. + +Overall it's in my heavy rotation on places I always say YES, let's go there!",review,S4jPvmZU45O5bDaCzSrfxw,0,0,0 +65ujBUIwQ3iGBjymj268IA,2009-04-30,wO-nCN0jVTT_UEZ6om6BEQ,5,"A very reliable local garage. Bill is all about great customer service, and goes the extra mile. He deflated my fears about ""being taken"" by other mechanics playing on my automotive ignorance. He's a truly good guy, knows his stuff, and will work to save me money if he can find it. I trust Bill, and 25th Street Automotive. Thanks, and we'll continue to bring our wheels into your shop.",review,eJGh4UF0zHIPPLZG1NkpgA,1,5,0 +DQY3RlqV7LlD3w4UJXiPeg,2012-04-03,n3_MeL2wxId_5OdZEX48Dw,3,"I, like another reviewer, was not willing to fight for lunch at McDonald's... and so I travelled up the road to Burger King. I haven't been to a BK in years and have heard several quips about their ""new and updated menu."" + +I got a Whopper Jr. meal (no update there). Their fries are good, more satisfying than other fast food restaurants-- ""now with sea salt""-- as if that makes them more appealing. + +The Whopper Jr. itself is just... meh.. I'm sorry, I don't do mayo. I do appreciate the fresh (?) veggies on top though. + +Soda seems syrupy here to me. + +If McDonald's is busy, head here. They DO have a nice outdoor patio, though. And Iike their workers' uniforms better. Does that count??",review,s0FsZIfO-aqQnecLv3Q88A,0,1,2 +uI4YqMarUpchI4I3ZWgOGA,2010-10-31,qdkjDNuSUVLekIXwxya4eQ,4,"This review is specifically for my experience at Trader Vic's last night (a Saturday night) for Happy Hour (4pm - 7pm). + +My wife and I and two friends had a great time! We spent the Happy Hour in their outdoor bar area - so cool - which is slightly shaded and very calming. The apps were tasty, especially for their low, low prices, and my wife really liked her vodka cocktail on special. They didn't have any beers on special, but I had a draft Stella anyway. + +Neither of us cared much for the fried calamari, but it wasn't bad, just not our style. Everything else - the edamame, mini-burger, and sweet potato fries - was awesome. Oh, and speaking of awesome, so was the service. The waitress was friendly and helpful, and the bussers were very attentive! + +We will be back for Saturday's Happy Hour again soon.",review,3TGup17SCV6uHsifmTKirg,1,2,0 +K2_Hmmo5crTYWiT_1sWnfQ,2011-11-27,ZTPy5A93V7Ydx6pk1_G3ww,5,"Of all the Chipotle's I really like this one. The staff is exceptionally friendly and I don't think I've ever been in the place, and I've""ve been a lot, where they weren't meticulously cleaning the restaurant with soapy suds.",review,ryjqXdp68i2I9JPOpX9URw,0,0,0 +g--Qvh7JzgsX6B1gdEJ1SA,2008-07-23,-7nluosclwW3csCCh8PKQw,2,"Q: How many people and how many minutes does it take to make a ""toasty"" sub? +A: At Quiznos? A LOT. + +The food is decent, especially the tuna melt, and $5 for a large is a great deal. But this place is SO incredibly slow, every time I go there I swear it's the last time. Alas, living across the street from it I have caved and gone back a few times... But seriously, don't come here if you've got groceries in the trunk, kids waiting in the car, or anywhere you need to be in the next hour. + +Also: I can't stand the oregano powder crap they dump on every sub. Come on, Quiznos, there's gotta be a better-tasting distinctive touch. I always tell them to leave this stuff off, and half the time they put it on anyway. + +FYI - once the sandwich is out of the toasting machine, toppings are available by request only. No one's gonna ask what you want on it like at Subway. You really have to speak up if you want onions, olives, or whatever else they've got hiding back there. + +Please God grant me the willpower to stop coming back to this Quiznos!!!!!!",review,YL8SKv-pwx-Wj9cwGYrn3g,3,3,4 +vARjqeIkSNsazHltujiq4Q,2011-07-20,lSF7ILNpdHLdJBrvIHvjzw,5,"Dig it! Good beers on tap. Tasty food. Friendly servers. Cool place to hang out and relax. My fav pasty is the cajun chicken with the spicy sauce. Don't forget to check out the desserts. Towards the back is an iPad where you can pick a few tunes to be played..kinda neat if you're in the mood for something in particular. If you haven't checked it out, you should. I like this location better than the Tempe location because it has more seating and a better scene for visiting with friends.",review,6TnX7mzI-jfgK6teWqIS9Q,0,0,0 +R2FuwuSjmyvzNWNfqzKUvw,2012-06-10,Lja31nq6KERYwYUi9f8a0A,4,"If you got a craving for pizza and don't want to feel too guilty about eating it, this always seems to satiate that fix. The pizzas here are ultra thin and there are many varieties available. Bryan and I always get 2 pizzas because we would still be hungry if we just order one without an appetizer and we can always take the extra home. Today we ate the pepperoni and mushroom pizza and the potato and feta cheese pizza with olive tempanade. Both were yummy in their own way! We ate the tomato, mozzarella, and pesto bruschetta as an appetizer which came out unbelievably quick while waiting for our pizzas. Sauce's pizzas are unique in their own right that I crave when I want something lighter than regular hand tossed pizzas yet don't want to spend as much for gourmet pizzas. It's a comfortable yet yummy in-between compromise!",review,HR_Lxh2ycv0t745Ohiziew,0,2,0 +TbaAnzOTX2-boTbAp3e8Qw,2008-08-26,-e3z8TMTub7v9pVxzEHO-A,5,"How can anyone not give these guys a 5 star? Cafe Rio invented the sweet pork burrito and nobody...and I mean NOBODY can do it better. I moved here a year ago from Utah where Cafe Rios are as abundant as Micky Dees .... and I was so happy to see the Cafe Rio sign. + +I eat there to much. Its a 30 min drive to get there from where I live, but I love that I don't ever have to wait in line as long as I did when eating at the Utah ones... + +Let me help you with what to order: No serious if you are reading this...go there TODAY and order this - + +Sweet pork burrito with black beans, hot sauce, enchilada style with pico and guac ... no lettuce (unless you like lettuce ... I don't)",review,UPtysDF6cUDUxq2KY-6Dcg,1,3,2 +hiXt1iC9nJh3--kz80zRtA,2012-12-20,Y983pjmasC5VTRsz-ChKEw,4,"Love this place, sushi is good and great customer service!",review,lSB6eL4Tf1ot7S2dy9sKEA,1,1,1 +-sC66z4SO3tR7nFCjfQwuQ,2012-10-01,BvXTRXYZtbTunoi59CexUg,4,"My roommate and I went here for drinks before going to see a show in Phoenix. Pleased to see their happy hour menu still counted on Saturdays, we took advantage of their amazing margaritas. + +I suggest ordering on the rocks with salt. + +Gall Blanco is at the base of the Clarenton Hotel in downtown Phoenix, and is in the most perfect spot for admiring the building from a far. We choose to sit outside which wasn't the best idea because the hostes couldn't figure out how to work the fans and the misters were creating small great lakes on the edge tables, but we weren't uncomfortable.",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,0,0 +VY_tvNUCCXGXQeSvJl757Q,2011-04-16,ild-FcbbQ1rgqk4LIzoWPg,4,"Loved the spinach salad. I'll have to find out what kind of dressing that was in it. Yumm The beer selection is the first thing that I would come back for. We ordered the Gourmet White pizza which has: +Olive Oil and Garlic base pizza with Sun-Dried Tomatoes, Provolone, Mozzarella, Feta, Roma Tomatoes and Onions. +Yummy. Especially the crust, which is a wheat crust that compliments the pizza very well. Nothing left on my plate! Hope to try the meatier, yes, I made up that word, pizzas next time!",review,Tz5ZshU7NC7VTXWvLm_kJw,0,1,0 +8H1DwdAAgSBtwDeb2R-hmA,2009-03-03,f7I-Gm8md45qtJYP3ARi0g,4,"I've heard way good stuff about this place for a while and finally had the pleasure of sitting down and having some lunch there. + +Thoughts: Staff was friendly and quick, nice place, very clean and some hi-tops and lots of tables and outdoor seating as well. + +Chicken salad bagel sandwich wasn't too bad at all, except for the nuts in it - I'd probably eat it again however. Had a tomato basil bagel toasted with it... yum! I'm wanting to go back to try different menu items now :)",review,8CNEh7fSbLwDuAKhLjDPKQ,3,4,0 +Pt667RuH8g5tue8KcCShtQ,2011-03-22,LJAjbiOtbtjEsubQmQF-Cg,4,I have attended several performances at the MCA and enjoyed them all. The physical facilities are top notch and the outdoor areas (when the weather is accommodating) is lovely.,review,fU8x-3qi65tX19KAyvT4vw,0,0,0 +GRFunGSUZxXqNCZJrN8Oow,2011-10-19,axDHHOtVjvznMl1OnKLUng,5,"Mill Ave has been missing a good breakfast nook, and it has made me very sad. Until now! The atmosphere is very modern. The color scheme is gray, orange, and black and boy do they stick to it, down to the orange frosted cupcakes. Impressive. I had the best french toast I have ever had in my life right here at NCounter. I have only eaten here once, and usually I don't give five stars out after the first visit, but this place is THAT good. So happy to have such a fabulous breakfast restaurant so close to home.",review,PDRWbCZa92irf8mK5X_Kig,0,0,0 +GzWiVvE6JDdBNowNVshItA,2012-10-21,xIPXFIDUtmMUXSToOkV7GA,4,"As best as I can figure out, there are 3 German restaurants in the Phx metro area. Two of them are in the same parking lot in Mesa. How does that happen? + +So anyway, what about Zur Kate. Good food but an oddly small menu with no appetizers listed. + +As for the restaurant itself its a pretty small place. Not sure how the busy they get, but if they ever do you could be in for a wait. + +Back to the food for a moment. While it was good, and somewhat German in composition I'm just not sure of German food it was. That being said, I could say the same for the other German restaurants here in Phx. So, not so much of a knock as an observation.",review,8T0evnkvRaTomru7ghPGeg,0,0,0 +ST0fLT0ZDqKNUxeY0unV8A,2012-05-10,DbExg3pHbi59h-vJCHmj8w,1,"1 star for service and attitude.The food was delicious , but the staff was very hateful. I am writing this review. I don't remember the waitresses name but I do remember that she was short , hispanic , and she was pregnant at the time. She was incredibly hateful.So hateful and rude to me and my parents. I do know why she did this is because I am transgendered. I was wearing leggings and I was carrying a black polo purse. + +So I thought that this happened because of how I was dressed and how I looked , but that really wasn't the case.I went back 2 weeks later and I dressed differently. More ""manly"" (ha). Different waitresses , same great food , same hateful attitudes. I will stress to everyone reading this to save your time and money and go to a different pizza hut or a different pizza joint to get better service.",review,oihlMiEtvAnUru5_BC1KwQ,0,0,0 +g9jX2oXQr8zrOQgynYnYjQ,2009-08-16,ozgYLhjZFCfPHxXJ4qUTww,4,I do not eat fast food. i do eat at in-n-out. mmmm double double animal style,review,jPl_fIm16CLiV7M6yYigSQ,1,0,0 +cOUS79i4vltKIc_hy4OZBg,2012-10-05,j2HrC274fTmGHeIwD0U6rw,4,"In a town with arguably dozens of grocery options, Baiz is a unpolished gem. It's on an unassuming sidestreet and the exterior is a typical desert drab, but inside you will find high quality and very reasonably priced international groceries. Greek, Middle Eastern, Ethiopian, Indian and more. Most of the brands aren't immediately recognizable by Americans but that shouldn't be a deal-breaker. We're talking 99 cent hummus, 99 cent fresh baked pita, condiments of every type and price, and great options for coffee and tea drinkers. This store is very awesome, and I would actually prefer to give this small business my bucks over national chain grocers. + +They also sell hookahs. Just saying.",review,DG_0Y_cp5x0PB7yhZDZyYw,0,0,0 +AIaEFC65T7BKVl03INm1eg,2010-12-20,747-H8tvuxXOEMMviYBXiA,5,Great Job!,review,wtn-JNypbM7IupJm9t40Hw,0,0,0 +KO9CpaSPOoqm0iCWm5scmg,2011-03-22,WuPgnh6V9icOYUzcSRdeRA,4,"I needed to grab a bite on a day in the office, so I thought I'd take a little trek over to Sandwich Club. Lots of my former co-workers would tell me that they loved the food here. + +As soon as I walked in, I was greeted by the owner. A super cool dude. He promptly asked if it was my first time there, and he asked where I was from. I like a little small talk before a sandwich. + +In any case, I ended up going with a no-mayo tuna salad sandwich. + +Do you remember that time in junior high when you saw a pretty girl and you never had the guts to go talk to her? But your friends dared you to do it? The no-mayo tuna salad is the pretty girl. I dare you to try it. It's amazing. The capers and lemon juice make this so flavorful. You'll be holding hands with this, and it will grace your lips in no time....unlike that girl from Jr. High who secretly despised you because you were fat. Oh wait. + +The menu seems quite diverse, with many sandwich options, and they also make crepes. + +The food tasted great, the service was great. I'd definitely come back for more and try something else. + +Afterall....who doesn't love a good sandwich!",review,8JC-Yb3UDUv2FUl5ym1nVg,1,1,2 +BjznUPL2h5-vOkPHsnF40w,2008-07-06,7dqQJWr3W-CdREv0-BDuoQ,4,"Oz is a great local bar and a nice change from the bumping Charlie's (which, don't get me wrong, is still a good bar). Booker, the bartender, is the coolest and will bring you any of the toys on the back counter, so long as he has time. The cheap prices, awesome juke box (sorry Korina, we were probably the ones playing all the Madonna) and a chance of spotting Stephanie Ann--the most fabulous drag queen around who really knows her vodka--are but a few of the reasons why I love this place. It's also walking distance from my BFF's house.",review,nc3cqVN0UuB3m50-CcMftw,6,5,4 +7SO_rX1F6rQEl-5s3wZxgQ,2012-09-03,vkFZfxjmbFfOgbVToyWsBw,5,"Wait a second...I have not written a review! This is nuts!!!!! + +Anyways...I adore this place. LGO and the pizzeria are my favorite places in the world...lol...I am here at least 4-6 times per week. It is nuts! Anyways..the reason I am here all the time is because it is FABULOUS!!!! This place can never go wrong! The orange and fennel salad it amazing! It is the perfect mix and each bite and a delight in your mouth and to your taste buds! I often get this salad through out the week. I love the kale and quinoa salad too! It is my go to salad. I am obsessed with the avocado pizza with prosciutto and goat cheese and the roasted corn pizza with prosciutto. I wish I could get enough but I cannot! The ambiance is awesome! Mr.Lynn is a genius and made this place so welcoming and open. I love how its so laid back and romantic at the same time. The parking is difficult, but you expect that since it is so popular! Now the Peanut Butter Pie!!! OMG OMG OMG!! There are no words...it is DELICIOUS!! I try to refuse every time but I cannot. I really enjoy the sangria. The wine selection is great! I just love this place!!!!",review,X_kPh3nt0AJPNPHye2rTlA,3,4,1 +bc-lE-wGVAsUrX-kJhtY-Q,2012-04-17,AN7wQPa5ZHx-I7SgcJy6fw,5,"The place to go during spring training after a game and see a baseball player (will be crowded for sure). the experience is just really neat though, the place is covered head to toe with sports memorabilia, definitely the place to go if you're a visiting sports fan in scottsdale",review,YwjabNYLHBFOS2AABYQFsA,0,1,1 +-gefwOTDqW9HWGDvWBPSMQ,2012-09-30,f-DWOMaffPReV-Yb7Wg28A,5,"Came here on a Friday night after a bike ride. As an Irish bar, there is a lot of whiskey on the wall, but they can make whatever you need. The food was a hell of a lot better than I thought it was going to be. +On the encouragement of the bouncer, I ordered the wings which were meaty but I've had better. What I should have gotten was the shepards pie. 2 of my friends got it, and it was VERY good. I'm going to go back, just get it on my own. +Lastly, this place dishes out cheap, strong drinks. Good place to get sauced before hitting a club.",review,Bq4o8L-bmu58H42WM3iCqw,0,0,0 +8c2ZwD42Q30eUjxG2SgYNg,2012-03-11,yZryHhZq8tyq8pv7aPfDQw,5,"We attended this event today and loved it! The grounds are beautiful and spread out so it didn't seem like it was overly crowded. + +This is a well thought out event with food trucks located throughout so if you get hungry, there will be food near by. + +The admission price was $7 and we felt it was a bargain. + +There are a variety of artists so there is something for everyone to look at and/or buy.",review,kASDrzMXITaZdYoLRekVFw,0,0,0 +7wo9ZA7adxw1_8v4wmRCjA,2011-05-17,pricAMxsyx3ohBt2LrA85Q,5,"I should have done this so long ago, but we forget our Doctor's need reviews too! I've sent my boyfriend, my family and my friend's to her. You should know about her too! I've been going to Dr. Bradley for 10 years! She is my all time favorite doctor because she is always bright, smiling, genuine and just overall warm! You want to thank her and hug her at the same time. Her staff is professional and friendly. Mandy at the front desk is wonderful at her job. I've followed Dr. Bradley to 2 locations and would never think of going anywhere else. She's helped me with everything from migraines to pnuemonia to well woman check ups to getting my gall bladder removed! What a versatile and knowledgeable woman she is! I take my son to her now and he isn't afraid to go in. Peace of mind knowing we will be treated well, and taken care of is all I could really ask for in a general doctor!",review,dVJ_y1NGSA_g6rc-NDDWHQ,1,1,0 +xHI3saK0sAJEHeMK4IGVvg,2010-08-25,cDnoAoysSDEiSwyswOAbDA,5,"Just had my first hot dog at Short Leash Dogs and quite honestly, I can't call it a ""hot dog"" because that just conjures up images of, well... a hot dog. And Short Leash Dogs are so much more and better than ""a hot dog"" the way most people know hot dogs. Know what I mean? No? Well, go have a Short Leash Dog. + +Really unique combinations, various dog options (all local meats and produce) - bratwurst, beer hot, veggie... + +My friend and I shared an Aiko (we chose the brat as our dog), with mango chutney, red onions, cilantro, mayo and jalapeño on a naan (you might have read that in other reviews, no traditional buns here!). + +You can find the Short Leash Dogs truck at the Phoenix Public Market on Wednesday evenings and Saturday mornings, and if you follow them on Twitter (@shortleashdogs) you can find out when/where else they make regular stops... scottsdale, central phoenix... Track 'em down and eat their food. And talk to them - Brad and Kat are smart enthusiastic folks with a great sense of humor and offer superb food and service! What's not to love?",review,KICFDhBX25ruK_iW6gLgTA,1,1,1 +GIGI8bJfN6HyPzmEW-QqjA,2012-06-19,SOqL6tKlFOpoUVqQGJY3-w,1,"Normally have had great service & food here, but on Father's Day, Nicole H was simply horrible. Rude, slow, non-helpful, etc. Just a total fail. + +A different food-deliverer brought out food and ""auctioned it off"" (didn't know who got what), and I asked for a refill on my empty water glass, but he didn't bring it after 15 minutes, and Nicole didn't notice, so I had to bring it up to her. + +Their bloody Mary's taste just like tomato juice with tobasco. Nothing special at all. And for $12???!?!?!??!?! SHAME. + +The coq au vin was great. + +WHY IS THERE NO ""CONTACT US""/e-mail address ON THEIR WEBSITE?????",review,exefpuK6O1ctUUqTxq5XLg,1,1,3 +dpbY5XypBdeFmo8DsZ-DNQ,2010-10-06,AMAWmuGqhvfEX-JT8o46tA,5,"Southwest blows its competitors so far out of the water I actually feel bad for the other airlines. +1. Of the countless times I've flown with them, my flight has been delayed only twice and both times less than one hour. +2. NO BAG FEES. +3. Nine times out of ten the lowest price. +4. Killer customer service, laced with sarcasm, veiled cynicism, and high efficiency. I love it. +5. They never give me an inquisitive look when I order a cocktail on the super early morning flights. Thank you for not judging me, SW Flight Attendants.",review,0CRk-70pIHwk16iKGVCpxw,6,9,10 +AaKlegu7gmOCD4rEESF76Q,2010-08-18,qnz40iZiloR4Yadx0CoIzw,4,"Our dinner club ended up at Maizie's this month after the other pick was closed.... we lucked out! We were unknowingly there on $3 burger Monday, so pretty much everyone ordered the burger. They had told us the wait would be short, 15-20 minutes. It ended up being about 45 min, which was a little frustrating. But our waiter was awsome and fast and we received our food very quickly. I think us ravenous girls had a turnaround of about 30 minutes once seated. + +First I have to give homage to their fries... Both the regular and sweet potato are excellent. Well seasoned, with potato skins, and a nice balance of crispy and soft. Their chipotle dipping sauce is reminiscent of the yummy sauce at Delux. I got a basic burger with cheddar cheese - it was cooked perfectly to order and tasted great. Total bill: $5.00 ($3 burger + $1 cheese +$1 fries= amazing deal!) + +My friend's salad was huge and delicious looking with all kinds of good stuff on it. I want to go back and try a salad, and maybe pizza and sangria night (Tues & Wed) or, ooh, one of their stuffed burgers. I think I'll be back a few times...",review,oy6fdscGSXY2gzRqF9pZxg,4,3,1 +fjAQGf-iJlVjD2vizzuORQ,2010-01-18,lZs33WvY-jdJgXDebwCOBA,4,"I have not liked one bar at all in Scottsdale, AZ. This was the first one! A semblance of a normal crowd. We ended up talking with some weirdo local chick, thought they were trying to do some kind of bizarre swinger plot, and they kicked rocks. Some friendly people in there though, all enjoying a good time singing and dancing. Maybe it was because I was inebriated, but the Karaoke was outstanding. These two chicks really belted it out last night. I had a really good time drinking here with my friend. They sell Heineken 22 oz bottles here. I thought that was pretty cool. My friend said ""Headband is the best"" about this place, I have no idea what the means though.",review,ACCUr3Ydw5XyPCmoIEdnpw,0,0,0 +ghzksdgNztTZA49PqMvPkA,2008-05-20,7sJ6XV4KEz6Q5FKEe19Z6A,4,"Pei Wei is a family favorite, especially for take out. I can call Pei Wei while I leave the house, order my food as I drive, and when I arrive 9 times out of 10 the food is hot and ready to roll. The food is always tasty and at a fair price. We love it.",review,fVJnUOJT9qvUJLU3iHUNvw,2,2,1 +S7f-B7KNSTU_akRQGeft6Q,2007-05-18,IXSD2vCFI-RlMidmGRuMCg,4,"C'mon, it's deep dish Chicago-style pizza in Arizona. I'm not about to complain. Forgo the appetizers, unless you can eat alot of food. + +My friend and I came here after our 5K run. I packed away three mouth-watering slices of their signature pizza. It was so worth it. If I could have eaten more, I would have. + +Forget thin crust or flat bread. Thick crust pales in comparison. There's nothing else like deep dish, and I'm glad there's an easily accessible joint in my 'hood that I can go to when I need my fix.",review,APLIPfq1Rf8QyhHHk2uAyA,0,0,0 +4meJyPOhuAKzywUJTmu2hw,2007-01-19,jQeGf8gee0-Jq_b3wxzsdA,4,"The Good Egg is a breakfast spot I frequent on a regular basis. During the week it's hopping with folks on their lunch breaks and the weekend crowd seems to be most predominant during brunch hours. + +The menu offers a wide variety of items to choose from. They are only open for breakfast and lunch, but you can order any of them at any time during business hours. Pancakes of a mammoth proportion are often seen zooming by on the arm of a server. Instead of hashbrowns, homestyle fried potatoes are served on the side of most dishes. + +The serving staff have always been very friendly and accommodating and it makes the experience a very pleasant one every time I am there. The patio is very large and can seat many. This is especially nice during sunny days, but not so much on a cold January morning even with the large heaters operating. + +If you go on a weekend morning, prepare for a bit of a wait. You can sip complimentary coffee outside while waiting for your party to be called. It's always fun to give a fake name for your party as it is eventually announced over a very loud loudspeaker for the world to hear. When you hear Captain Caveman's party being called to go take their seats, keep an eye out for me giggling somewhere nearby.",review,DJIwm4UCnM-SOxXbARjPsQ,0,0,1 +F-ZOeAK1v7e5Rt2Mv5rVMw,2011-01-01,Ez_JC0CJlOF7jpt2KJIH9Q,3,"I've swung into Echo a few times and haven't ever had a bad cup of coffee. The cappuccino is pretty solid and the zucchini bread I had for breakfast one day was a win. If I recall correctly it came in a cute little box too. + +For some reason I've never been able to feel relaxed and at home enough to chill and enjoy an afternoon or evening there. Not sure why, but just haven't.",review,7zDqr2I0-xpw9HF5Ha54cA,0,1,0 +VNJMoQAzJFWBYclBOSDPOA,2011-02-28,H0AqAh6DBmMsZD5F87nYeA,4,"Southern hospitality? Yes ma'am (or Mister) :) + +The first thing that struck me was that my server had a lovely accent. +My daughter looked at me & asked me if it was part of her job to fake an accent,,,, I went with no. I'm not sure where it's from, but it's a 'honey & y'all' accent :D She had a very friendly disposition & made our lunch experience a pleasure. She made her mama proud. + +The food was decent AND you can have breakfast all day. I love having breakfast for dinner, so that's a big selling point to me :) + +The building is fairly new, not too brightly lit & clean. + +In all honesty I would have given them an A OK rating, 3 stars, but our server pushed them to a 'yay! I'm a fan', 4 star rating. +Good people make the difference!",review,BV8c4QZEzvPWA00ZqJp-jQ,2,5,1 +Shl6PtJERnowSJSC4IHbYQ,2008-07-22,dSl1uFP6jmN1bNsQ-Wg-PQ,5,"i hate going to places that i can goto near home, in Phx for the Cubs games.. but my daughter wanted pizza and we saw Z and had to go becuz we know how good it is. I like this one alot better then ours.",review,3w-JiPus8k-BR5PQ7egDvQ,2,1,0 +H010pkpCls0M-mjIzSCVlQ,2010-07-10,Vki4HM-R9t7xK0g8iFIuUw,5,"BACON, people! Spicy Italian sausages, brats, even heirloom veggies by the pound? Locally raised hogs and none of the extra chemicals the corporations and grocery stores use? I have found my personal piggy promised land and it is The Meat Shop. + +I headed over here with some buddies after hearing that some local restaurants and patrons have been taking notice of the flavor and quality they offer. We were quite pleased. The staff were helpful and knowledgeable about the meats, cuts, and preparation. We grilled up everything that night - the sausages, the brats, the veggies... even the bacon... because, why not? I think we spent a grand total of $20 and we still had enough leftovers to throw in with some sunny side up eggs and toast the next morning for breakfast. This place is fantastic and surprisingly the same cost as most of the stuff you'll find in the grocery store. I can't wait to head back over for round 2!",review,N6q91wGo-JY1yo-fMycjGQ,0,0,0 +PUrKfTrHofG7dO55jZaPfg,2012-10-27,DA2oraXl6n40J5N-yAiKFA,4,Awesome place. Staff is very helpfull!,review,u56KJdva4Fu0_7GoVEJ1-g,0,0,0 +hNVcBhJSD5HyLKMf_Z7TaA,2011-10-19,8J_nS3TAVVCLFINX29wi3g,4,"Good food, nothing super delicious that makes me have cravings. I haven't been here in a long time, as in when the fries didn't come with the burgers (you had to order them as a side item). However, now they do come with them and are still endless, but I did notice the burger prices went up to allow for the burgers to now come with fries...something that is always expected at any burger joint. They do have sweet potato fries that you can order, big plus. + +Service has always been great, they are really quick with getting drink orders in and served to you. I've ordered a bunch of items from salads to fish tacos, and of course, their burgers. Everything has tasted decent and I'm not really sure what qualifies as having ""Fine Burgers"" in a restaurant title, but I don't think Islands has it. The restaurant itself is very clean and the bathrooms are well kept. The only downside is the acoustics in this place. It can get very loud when its busy and almost annoyingly loud when there are a few kids in the joint.",review,fl6oI21uXoxVMwfR6lFanQ,0,2,0 +nDHyino_t7O94ZzRHGUApw,2012-03-09,a9D98PtV4qRUk2i5FC8crQ,4,"There are so many good things to say about AJ's, it's hard to know where to start. Amazing meats and seafood. Great deli items. Great sushi bar. Knowledgeable staff. Fantastic produce. Gorgeous flowers. And the pastries... the list just goes on and on. + +There is usually a somalier on staff to help with wine selections to go with whatever cut of meat or seafood choice you've gone with. A good mix of everyday grocery items as well as specialty items. If you can find the marinated garlic, try it! It's so so good. Try the butternut lasagna if the deli has it. And the pastries... The pastries. Cheesecakes, mini red velvet cakes, Boston Cream Pies, cupcakes, croissants, bagels... All of the highest quality. You will never have a problem finding something sweet to curb that craving, except that you may have a problem narrowing the field. + +Note: not every AJ's has a sushi bar, so keep that in mind if you head to a different location with a hankering for fresh sushi. + +No matter what you're going in for, the friendly, helpful staff will help ensure you get exactly what you need.",review,uWr21MBjmfojZ4MFaVlong,0,0,0 +yKbXWo_6VlS3mD_RcPquog,2010-11-10,hk7c8MKNSXQKbre7zyAFcg,5,"Love this place! Their slices are delicious (and HUGE) and a great deal. Service is always fast and good. Their loyalty programs (frequent visits and VIP card) are also great. The fact that they're locally owned and support the local community doesn't hurt either. :) + +It's basically the only place I go to for pizza nowadays. 1 slice is more than enough, and I love that I can get it just the way that I want. If you're a member of their VIP program (free to join) you can also get the slices for dinner too.",review,YK-g0g4HbI6uVegt2ac8xA,0,0,0 +G1_uulnhkAUBsaMAlJFc_g,2010-11-09,sj3YyLFa2tFbv3NvwLyvvA,2,"I read the two good reviews here on Yelp, so I was looking forward to a good Italian dinner. Unfortunately, it must have been an off night. The waitress didn't want to be bothered and the meatballs and the tomato sauce on the spaghetti didn't have much flavor. That's the test of a good Italian restaurant for me. If the sauce is good, they usually get thumbs up. This sauce wasn't ""bad,"" but it was bland and watery. Even the bowl of spaghetti wasn't drained properly so there was a dripping, runny mess at the bottom of the paltry bowl of pasta. This place is right around the corner from my house and Dominic is my brother's name! So I was really disappointed.",review,9yYmdZw5ehjBAVQ187kxXA,1,2,0 +A7Soqlerr3L8mNq3YuIqAA,2010-12-28,fMUVnCuQKwPHChzN_DY5FA,3,"As far as basic burgers go this is an OK option. The flavor is ok and basic toppings give everyone enough choice. Better than McDonald's yeah and similar to In-n-Out but nothing really special. Price is not cheap for a burger so I would expect a little more, but not more fries because they give you a bucket full and more.",review,U7fjG9u4iFAg0RaR3j0zNA,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2009-08-15,tRE_MmGyDQBCp6GsX7xUkQ,4,"I think for my sesquicentennial review, I've gotten to a point where I'm letting the food direct the show of stars. Sure, we have the servers and cooks as producers, the location as our stage, lighting, sound and supporting staff. But the meal, ah, that is our celebrated lead actor. Without it, all other pieces may paint a pretty picture, but what good is a painting when it medium is missing? + +The Mission really delivers its lines well. Almost too well. Like Dakota Fanning well. Each plate has a spectrum of flavors--bold and smoky with subtle and delicate undertones of fresh herbs. Each dish is skillfully plated and ready for its closeup. My steak tacos were so intensely flavored, I didn't really dwell on the fact there were but three petite tortilla shells mounded with strips of magnificently grilled flank steak and slices of fresh avocado. And the papas y chorizo, which I ordered as an accompaniment, helped balance the palate yet was still a strong item on its own. Robert M's pozole was as unique as it was flavorful, delicious, satisfying and, ironically, humble. The bread pudding he ordered at the end of meal was, according to him, a premature ejaculation. Apparently, that means it was good, so I'll take his word for that. Those who joined us for this meal seemed to share some of the enthusiasm over the dessert, but I don't eat sweets so will have to believe their accolades worthy. + +What, pray tell, denies The Mission of the much clamored five-star rating? Primarily, it's the associated fees. On one hand, I was blown away by the sensuous flavors apparent in every edible item. On the other hand, I was blown away upon seeing the bill (especially since I had nothing but water to drink). Does one negate the other? Perhaps. Am I at a place in my life where such a statement rings true? Not necessarily. While my initial response was, I wouldn't likely return to The Mission if it was my decision, I confess that I would, willingly, give myself back to The Mission if only for the sublime sins of doting on sustenance.",review,nc3cqVN0UuB3m50-CcMftw,7,8,8 +BojnLUPz5IzZKyQocGc7uw,2010-06-02,p9GNq76C05Vvudj0C_HsKw,4,"We were on our way to the Heard Museum...but diverted to Sabor Cubano. I was in the car with my mom-in-law (married a Cuban), sister-in-law (1/2 Cuban), and aunties. And we kept talkin' about Cuban food. Mom mentioned a Cuban restaurant nearby, but couldn't remember the name. Thanks to yelp and my droid, we found it! + +I had the signature Cuban sandwich. This might have the been the best one I have ever had in my life. The bread, the pork, the ham, pickles, cheese was delicious. I finished my sandwich and felt really guilty that I brought none back for my hubbie. To top it off, I had a cortadito and thick creamy flan. Bad wife - hee hee. (We will come back here, definitely before heading back to the OC.) + +The only drawback...service was slow. But it was well worth the wait.",review,geyb5IUTkwWBwpXPx5maZw,1,1,0 +MJBkq0blIF7qbbxn4AJTzA,2009-09-24,xzDqK4ejkJHItZxETcFzzQ,5,"I love the Tempe Library. The Culture Pass is a great program, the audiobook selection is good, and the seemingly unlimited resources are wonderful.",review,SVw1pW_7t0YmnvyAEOovoA,0,0,0 +KS2w8ychyieJbUqRa6kCHw,2008-12-09,r-aZWGZDwHbDYWTlv1cTHQ,5,"Really good food, fun atmosphere, great experience and totally unique and fun. +I would way rather spend my money at a one of a kind, family owned shop than a cheaper- dime a dozen corporate mcdonalds.",review,3_RjaHskXCu83x1tDhoUBA,1,1,1 +BPi1Q5wX0_o5VlO_XRyYuQ,2012-07-10,mRZKb0JsomMi_pbX5KoLQQ,3,This place is too loud. It would have been nice to have a meal without some lady yelling 'meatlog' across the room. Also the waitstaff was somewhat incompetent and snobby. The food was delicious but it's not something anyone can make themselves at home. They are stingy with their bread even though it is now free. Lots of annoying things that will probably persuade me not to come back.,review,37UFAkFO0kyHSr363EdKWA,0,2,1 +FV0BkoGOd3Yu_eJnXY15ZA,2009-03-07,0xbZFcKtf7DiQlex9f0Nag,5,"I am in love. This restaurant does everything a good restaurant should. Ambiance, service and product were good. The only disappointment I had was with the hour wait on the Monday we went without a reservation. + +My party of four had an excellent time celebrating a birthday. Two had the short ribs. Tender to a fault, served with delicious Bar-B-Que sauce and pecan grits. One had the fillet with a spicy aioli and delicious potatoes. +My meal was a huge pork chop, stuffed with Maytag bleu on a ancho bread pudding. + +For an app I split the chop salad. It deserves special mention and I do recommend it, but it is not a sustaining salad, more of a amuse-bouche. For dessert we split the peanut-butter cheese cake, delicious. + +The beverages deserve some mention. The wine list is this restaurants' only fault, it is tooooo long. There is a smaller, delicious by-the-glass selection. The beer selection is well crafted. I had two of my favorite beers, Dogfishhead Chicory Stout, something I had only had by bottle, wonderful. + +I normally don't like high-priced eateries b/c there is often a lack of creativity, Cowboy Ciao doesn't disappoint. Recommended over any Capital Griller or Flemmingsery for creativity and value for dollar.",review,N1Q6HiZvnZHjNU712Gymqw,3,4,2 +NB6o73F05lw23zpC79qoUg,2008-06-11,CdAkiPi_KKLjHo5l2cK4Og,5,"OK, I went based on Tim C.'s Yelp review of this place, and I am so glad I did. I rode my bike up there around 1PM Wednesday afternoon, and I have to say I was not disappointed. + +Even though it was hot out, the outdoor table was surprisingly cool and comfortable. I got an iced soy latte and it was so good. I don't know how to explain it, but there is great tasting espresso and there is bland espresso. This place just has great tasting espresso. I found out while I was there that Ted (the guy who made it) had roasted the beans himself. You can buy the beans from them if you are one of those industrious people who grind and brew your own espresso drinks...I am not. I prefer to leave that to the professionals. He actually ground the espresso when I ordered my drink. If you get the chance please go see what I am talking about. You will notice how much better the espresso is. + +The place itself is so beautiful and relaxing. If you sit outside like I did, you are basically sitting in a big outdoor garden. It is kept cool by the overhead canopy and the swamp cooler air blowing out from inside the coffee shop. Ted was really friendly, I felt comfortable just hanging out for a while reading my book. Unfortunately, the coffee shop closes at 2 PM, otherwise I bet it would be beautiful at night. This place definitely looks like something that would be in a cool little town somewhere, and not off of a busy street like Hayden Rd. + +Ted also told me he makes the lemonade himself fresh squeezed, something I love and will definitely try. When I go back, I think I will go a bit earlier. I may do a bit of plant shopping as well while I am there... + +Bottom line: Great atmosphere, drinks, and service!",review,AdEy5KAIlMAy8xHyuMQCFg,1,5,1 +EWnSPExh_T5zTv6oMJOC5g,2010-09-23,qOurY6U8v9-5Ec_vh0Bncw,3,"Good, fresh chinese food, a little pricey. + +There are two types of chinese food. Cheap, greasy, satisfying chinese food in a questionable joint. And upscale atmospheric chinese food that aspires to captivate the same audiences that enjoy places like P.F Chengs. This would be the latter: an awhatukee hole in the wall version of P.F chengs. Very clean restaurant, nice atmosphere, and good service. You can tell their motif is such that they cater to the tukee types with a little more coin in hand :/. This is the kind of place you'll find a lot of older families, or much older groups of friends dining together in. + +Both the orange chicken, and the almond chicken were good, and were made barring on the side of caution when it comes to grease. They were big portions (for $8), with big fresh peices of white meat, fresh vegetables, and no MSG. There is no chance of this meal offending a pickier type with grease, textures, or flavors (which makes it less interesting in my opinion). + +Both dishes were good, but nothing amazing from the 2 dishes I tried. + +The green tea ice cream was good, but I've had better green tea ice cream :/ . their version was a little too heavy with cream, and could have used some fruit, or something creative to go with the ice cream. + +The only other dessert option was another flavor of ice cream. + +The service was great, very polite and friendly waiters.",review,Gf8NVQxc4Q9dzwgSzGvAWw,1,2,1 +6ZjiNJ8-MIaEDY5bm_5upw,2011-08-21,e0tUH64EzCBgHCf44jXmww,5,"These guys are great. I had an old Craftsman mower, probably 8yo, that even sat unused in a basement for a couple years. It coughed and wheezed, barely even turning over. I brought it to them and now it works (and even looks) brand new!",review,8OzpagCTdZJgdwudKPPtyA,0,0,0 +YCCDMLcb7UW8G-o_HsWiiA,2010-10-20,81sTvcZ05tgMhZaGICnAEw,3,"Love the atmosphere and how trendy rhus place is, reminds me of Nip/tuck kinda, the way they have it set up. I had thd NY strip steak and i don not think it was worth the price. The steak did not come with a side. Sides are ordered seperately. Great customer service, however I don't think I will be eating here again.",review,ykTUd9nIYDkQYhpntgcTVw,0,2,0 +wN_wAXWg8W94v04eqijy6g,2011-12-27,bMIMClZHCc93eAHSbiKCRg,3,"Was visiting Phoenix and wanted to try some of the best place. Tacos Atoyac kept coming up so I decided to give it a try without reading all the reviews (was recovering from the cold a week before so did not want to do much reading) . It should not be bad if the reviews are all 4 and 5 stars. + +Came here on 12/23 evening close to 7pm. Parked the car right in front and seemed no one was in there. It turned out they were closing early that night. The menu was small and don't offer much explanation (I guess they figure everyone knows what's taco and burro) + +Place was clean but smelled like smoke when we walked in. + +Looking at the price, I figure the taco was small and confirmed with the big, tall white tattoo guy behind the cashier, so I know how many to order. My parents wanted fish tacos (they only know Rubio's fish tacos and burritos *roll eyes*) and I ordered some al pastor and asada tacos. Since I am from LA, I am spoiled with cheap, good tacos. The ones from Tacos Atoyas was only a okay compare to the ones in LA. Usually the tacos I have are overflow with meat, but these are only half way filled. Taste was a okay too. + +They also ran out of beef tamale that night which my dad wanted to try. + +Anyway... 4 1/2 stars? I don't think so.",review,FKF0vsPI8PYmOmTF48RE8w,0,0,1 +ASNxwg9dD4-_F4H1uNN2KQ,2011-02-15,VU8LHv59saLWummncIWxug,2,"It's ok, quality . Service was below par, although they were really busy. Fries were good and endless I guess that's good.. But, I was looking for a good burger, too bad I didn't find it here.",review,Ay1eY5gVFFBUhuhl036vVA,0,1,0 +nqD620A6r3hcysgkQ6w30g,2012-07-12,2pMxoxw9ZGb1W1aOiAnQ7w,3,"The people who are either stocking the shelves, cleaning the floors, or behind the counter have all been polite so far. I have nothing really bad to say, but nothing really great either. Keep perservering...maybe I'll write another review when something outrageous happens :)",review,mRAPMBM3dbw8KXNit1aDCw,0,2,0 +rRXGdtqUTBtczey1DGenEQ,2012-08-20,0zfkrAdu1SE3ZbTO3_bN_A,5,Super!,review,clWfsHVPgeSEusg-W6ybVg,0,0,0 +NmtZuT8p4vNk259dvozbvg,2012-07-07,lPIZKu-HCjnWhjoOpWN-hQ,5,"Best value for your money, Clean, comfy beds. Quite. Great breakfast that is included.",review,vmilZ7O_00r7rja-3bbxPg,0,0,0 +XLqnjlLYt0_q_NG7l_BpMA,2011-04-17,gBwZ-D70fD3N1HofAky2Fg,3,"I have a love/hate relationship with Costco. I love to support local businesses, but this is one of a couple of exceptions I make. It seems they treat their employees fairly as most of the employees at this store seem to have been there for years if not a decade. One thing that gives me comfort in my purchasing is they have a terrific return policy and take about anything back.",review,e5YZvlSRknGmROE209SF3Q,1,1,0 +EYRqt6hDb2Y9gl0si0NdXA,2011-02-09,-lEGHZa8ak_c-kYCvN-30A,3,"If you have to travel to Phoenix (Yay!) then chances are you have to travel through Sky Harbor (Boo!). There's also a decent chance you'll consider traveling on Southwest (Boo!) but as airlines (Boo!) in Sky Harbor (Boo!) go, you can do worse than Southwest. + +I'm not a huge fan of Southwest, although I'll give credit where credit is due, and that bags fly free thing is genius. Combine one of my least favorite carriers with what is probably my least favorite airport and you've got a recipe for disaster, but somehow it works out in Southwest's benefit. The gates are just as hard to reach for SWest as other carriers, and you're not banished to the edge of the universe for check-in or for baggage claim. They've got a decent presence here, so you may actually find a human who can help should you have a problem. + +Yes, they may leave you stranded on the runway for a while in 100 degree plus weather (check) or force you to dash across the airport with late arriving flights (check) but every once in a while it's a painless operation.",review,mEMun-MSV-Rke3oB8qD_Cw,2,5,2 +TfTlOE6h9E9o34dEkw9L_w,2012-01-03,7RqVVhpubP77UsUE4AT49Q,3,"British pubs aren't my favorite places to eat, since I am a vegetarian (who eats fish occasionally), but this place was pretty good. The building was cool and full of character and the service was very friendly. Kim was a great server, even though she was doing it all alone on New Year's day! She was very nice and efficient. + +The food was pretty good. I got fish and chips, but I don't prefer eating fried stuff often. I do have to say, they were good though. The outdoor seating is nice, but man....those birds are lethal! We got pooped on over and over and even our water was tainted! Not The Rose and Crown's fault, but it kinda ruined our experience. + +This looks like a great place to drink, hang out and even watch the game. I am sure it's a fun place, but just not my favorite.",review,fqpgzgVVnxlkSoAY2aS4Dw,1,0,2 +IfqYtKTV6_smGY8gbuYKkg,2012-01-17,JbFwn1v8at7nxiBl43KeHg,3,"After our fav Mongolian place closed I was set on having Mongolian the night we came across AJ's. + +It was decent. + +It seemed a bit over priced. + +The soft serve was kinda gross and the chocolate was out of order. + +The all you can eat soup looked like it had been sitting there for a good 8 hours. + +Will I go back? Maybe. + +Was I impressed? Not really. + +Did I leave full? Yes.",review,6ts41fCsDKHbFZaKOMNmVQ,0,1,0 +E7nk0lC317pGxMX56gvaVQ,2012-08-16,v3XjLWzWCNr4hXfjzqbQyg,4,"3.5 stars + +Came here for HH on a Tuesday. Loved the ambience, sort of a beachy type feel. We ordered all the appetizers listed for HH, including the sliders, grilled cheese sandwich, wings (buffalo), and bruschetta. Food was decent, my favorite being the grilled cheese sandwich. A nice place to wind down with good company.",review,YrBun_Gx0wt3bTRCUNEH4A,0,1,0 +fF6m3qsD5blnwuZRuYhzWg,2009-12-10,CrkKhtPW4_b7uNJ-yvXuAA,4,"There have to be some considerations made when attending Frank and Lupe's: First off, you have to understand that it's not GREAT Mexican food. That is to say, it's not real high quality, but more of what you would get at your buddies grandma's house. The second is that the service is somewhat spotty at times. You give your order to the ""waiter"", who then disappears as you are serviced throughout the nite by the ""bus boys"". Getting the check is the hardest thing there is. + +Having said all that, this place is TAST-TEE! I can't get enough of their enchilada's. If you're lucky enough to be there when they are doing their Poblano Chile enchiladas, get them! They are amazing. The chicken mole enchilada plate is also incredibly delicious. And sopapilla's??? WHERE THE HELL HAVE THESE THINGS BEEN ALL MY LIFE?!?!?! Drizzle some honey on these bad boys and enjoy throughout the meal. + +Like I said, you have to understand what you're getting into with Frank and Lupe's and if you can look past a few of their shortcomings, the food, atmosphere, and prices here are some of the best in town!",review,V9Uqt00HXwXT6mzsVCjMAw,0,0,0 +_FXql6eVhbM923RdCi94SA,2010-08-16,hA-x-cWjVYL26TohzzPjyA,4,"Went for drinks and appetizers to help benefit Friends of Animal Control and Care and was not disappointed! I am not a big fan of alcoholic beverages but this place made them fantastically. Got the Dr. Funk while my companions got Zombie and Hurricane. All were very tasty especially the Dr. Funk. MmmMMm. + +The appetizers were well portioned, I got the sweet potato fries and the others got calamri and other fishy foods that I don't eat. No complaints from them so definitely a good sign. + +Service was great, even though we were doing the special we still received plenty of attention. + +I will be back but this time to try some food!",review,0j9BH_ymVlCqm3qqFWwoFg,1,0,0 +WM8sy8FjrU3PpxN_NI02ZA,2012-01-08,m7Mj9f6ncn0lfZ43yfCLgQ,2,"To even admit to serving tex-mex is the first clue about how bad the food is there. And whoever that nit wit was that said Arizona has bad Mexican obviously knows nothing about Good Mex food. Ill admit right from the start that I don't want authentic Mex. food. Go on down to Nogales and get some authentic Mex. food Ha! What I want is authentic valley of the sun sonoran style Mex. food the way its evolved for a hundred years from the early Mexican Legal Immigrants. Ihave been all over the USA and true you can get some decent mex food in cal, new mex., west texas. But to get the best Beans, enchiladas, red, green, chile, tamales tortillas you have to get it right here in AZ. Here are a few great places. Don Joses, Matador, Carolinas. Manuels, Some Burro, Juans, Ajo Als, Macayos. The two best are Ricardos and Papagayos, oops, They closed because the new management wrecked the food and drove away the faithful. And thats THE TRUTH, from ""The Truth"" Ciau!",review,KD2t6YxMPCdwtCpHt-HT8w,0,0,0 +vwOLtv-8syrddAstFmnwCg,2010-12-26,kRp4Xwa8AlhH96Bnsnbc8A,4,"I had a lot of fun playing this course today with my 12-year old son (who hits in the low 100s.) We also played this course back in November when we were here in town and had an equally enjoyable time. + +The course is in great shape and we were able to finish our round in around 4-5 hours. The staff here are very friendly and accommodating and the beverage cart came by around 5 times during our round. The price they gave us (as return out-of-towners) for a Sunday morning tee-time was incredible - 2 adults at $89 each + $40 rental + FREE junior fees + $15 junior rental. Other similar quality local courses wanted to charge full fees for juniors for the same tee time, so I really appreciated the gesture. If they keep this policy in tact, this will be my regular course when my son and I come back in town. + +As for the course, the early holes are typical resort style holes followed by 5 or so residential public course-style holes. The beauty of this course is the back-9 desert-style holes that wrap around into the south mountain before returning back into the resort with the final par-3 that provides a breath taking semi-panoramic view of the valley from downtown Phoenix to the Superstition Mountains. I found the back-9 to be short, but very technical, constantly testing my course management abilities - i.e, thought I could hit onto the green (from the whites) on every par-4, but came up short every time. + +Would definitely recommend this course for other out-of-towners like me who want to get in a quick round on a nice course. The pro shop is small but well-stocked. The restaurant has patio seating overlooking the first tee and serves some decent food. However, they need to get better beers on tap (IPAs and microbrews would be nice!.)",review,AYSDnMdm1-LDyhUtMq6_dw,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2011-04-05,YGGumXo-X9w0dIwgt6x7rQ,5,"They don't serve food, they serve sex on a plate. At first glance the place looks like a hallway but it's really a flavor factory hidden away between two buildings no one cares about because those places don't have Pasty's. The service is fast , friendly, and the music is off the chain. The food is not to be forgotten though, there are so many selections of Pasty variations that anyone with any craving will loose all control of there facial expressions. I only wish the place was bigger, there have been times when I've had to wait for a space to open up but that's not necessarily a bad thing. That time allowed me to prepare myself for the nirvana inducing flavorgasm that is The Cornish Pasty Company.",review,e8ZXaLh79xm9h5OKLavILQ,2,2,2 +jqbrMBRsByyVBm8OoQ9dWA,2012-08-27,xL6QBZjegVkzlp3KaC7whg,5,"This is a great breakfast stop! Gotta love the homemade biscuits... are you kidding me! Awesome! CB is a huge chain but they do some great things. + +The only thing is the way they have designed the space the servers are in the back a lot... too much. They need to be on the floor more to make sure the cups stay filled up!",review,mP1tArLg-SrDmsW0ch8NPw,0,0,0 +EeqCebn8ulIywYIvtnH0Lw,2012-09-09,DxytTlXMmp71oKhWanBFKA,5,"Kindred Spirits has closed their doors. It is a sad thing that we on the west side of Phoenix cannot support such a friendly and community oriented business, AND one that gave you the option to drop by for a quick coffee or for a more complete dining experience. The live music on the weekends was also something a bit rare for our side of town, and will be missed. Richard and Debra did a marvelous job updating the space, and making it a warm and welcoming place. I am sorry that Youngtown has lost this business.",review,IO7stvN7CLfqPrQSXW6wFA,0,0,0 +211DetkFdxd8sQ54CMU35A,2012-03-11,oLJM3G13k13xdzZB2i_CTw,5,"Wife and I had the large burgers. Many options as to toppings, whole grain bun is also an option. Store is spotless and staff is young and cheerful. I had sw style w/guacamole and jalapeno, spouse chose classic american cheeseburger. We ordered sweet potato fries to split. They are awesome and the single portion was large enough for 2 1/2 people. We were advised (in advance) that burgers would be pink inside, which we prefer. If you want yours well done, ask. You order at counter, and the food is brought to your booth. This was our second visit, and we would return. Store is nnear movies in food are of Tempe marketplace, so expect to spend some time looking for a spot.",review,PmDHdnS-EkD4mOIsHD-dVQ,0,0,0 +OfNQed4MVoSyY31YJkJWqA,2009-01-08,8k0A0YzQci40Q0hCEz9WTA,4,"It's called ""Babeway"" for a reason people... + + +But I go here for the Deli, they have the best panini. I like to stop in for the 3 cheese panini with mustard and tomato. It's also a good choice to pair up with the Italian wedding soup.",review,yGs16xQiN3dLo03OQyto8A,0,0,0 +HGOsJ1-GXCk5_8RmwKxomA,2012-01-09,1SM3zDv_jraWiRuKEn-35Q,1,"The service at this location is absolutely atrocious. I went to the Starbucks to get a Frappuccino, as I've done many times at this location without issue. The employee working the counter had an absolutely revolting tattoo near her collar bone and a scowl on her face. She asked me if I had a membership AFTER I had swiped my card, then said ""Too late,"" when I told her I had one. + +Then, the idiot with the spiky blonde hair made me a Frappuccino that was basically brown water. I told her to make it again. She made it again, then informed me that she put extra shots of chocolate in it, and I should ask for extra chocolate if I don't want it to taste like water. I have never had a problem with the way my drink tasted until that day, but apparently the problem lies with me. + +I'm not the one who chose a career in customer service. If the coffee slingers at this branch can't pretend to enjoy their jobs, they should be put out on the street.",review,ddr63wQ7CdByADPnHNr4-w,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-08-02,wK1bQxCNs6U3VGj-j5rb7w,4,"There really isn't a better time to go to Sapporo than RIGHT NOW to enjoy their every day summer happy hour for cheap, good quality food & drinks. There are great discounts on beer, wine, and cocktails including the awesome mango martini, and several very popular appetizers, rolls, and sushi. I adore the chicken skewers and sliders, but my favorite are the diver scallops. I don't think they are on the happy hour menu but they rock! + +Teppanyaki here is also very fun for a group and the N Scottsdale crowd is great for people watching. Whether for a date or girls/guys night out, Sapporo's energetic vibe has a lot of fun to offer.",review,fiyOnIEKBOgj00NJLwDBVg,1,1,1 +c4FLMLP7hMnAbSiW2o_o3A,2010-09-16,F2V_g-0jcmTfG6DL_SoeuA,2,"I was actually really excited to eat at the Saguaro Grille the first (and last) time I went there. Finally, a reasonably priced casual restaurant not owned by a corporation. Or mad persons + +First of all, the waiter had no idea what the soup was or what kind of bread they had available since apparently their actual bread inventory bore no resemblance to the one printed on the menu. The waitress berated him for not knowing, and then went on to make it obvious she hadn't a clue herself. She tried to talk us into getting croissants. Neither of us were ordering things that belonged on croissants. My dining companion got a portabella burger that's a burger with a giant mushroom cap instead of meat for people sans veggie friends -and I got a chicken sandwich and Italian wedding soup. We had to repeat the order two or three times before the waiter got it. + +The waiter subsequently returned my dining companion how she wanted her burger done. She gently pointed out that portabella burgers have only two possible states- done and note done. Such is the dichotomy of mushroom burger kind. ""Wait, you wanted a what?"" slurred the waiter. He had put in for a regular beef burger. Turned out, they didn't actually have a portabella in the place. + +We waited. The soup showed up in one of those skinny coffee mugs and the waiter tried to pawn it off on the wrong person. It was pretty good soup, but there was simply no way to adjust the seasonings without making a sloshy mess. + +My sandwich, well, it was OK. Nothing to write home about. I was very hungry and it didn't strike me until I was almost done the promised buttermilk ranch dressing was regular ranch with buttermilk. My dining companion's fruit was on the old side, and her tuna melt not particularly tuna-tastic. + +We are masochists. We decided to have some dessert. The one thing on the menu we wanted was, of course, not actually available, so we decided to just go with coffee. Mum ordered cold coffee. She specifically said, ""I'll have a small iced coffee."" I ordered a double shot of espresso. Not too complex. + +The waiter came back a moment to make sure I really wanted a double shot of espresso in my iced coffee. + +Absolutely not worth the price or the obligatory trip to the twilight zone.",review,ggEHaGGCiUVmE2N5iZy6DA,0,0,1 +Pfb6VOIiroqDWOebfgWGPQ,2010-09-26,euIHPaEcb2ZMq55PBesytA,5,"This is the best restaurant in Phoenix. My wife and I have been eating out here for years, Their servers are great and the food is always delicious. The entire menu is very good and the specials are always unique. + +Check out their website at http://www.phoenixcitygrille.com",review,4nl3_uBJlJy0PUyyoRSxxw,0,0,0 +MRgTo4MA3f1MB_VL3IVh5g,2009-06-15,oDPyYEVguTnZlh9ZvDq5IQ,4,"Let me qualify my review by stating that I have not been to Butter & Me. I have had their yummy mini cupcakes at a Yelp event. + +I tried the red velvet mini cupcake. It was really good. Moist and flavorful with a rich creamy frosting. Yum. I chased it with few sips of Cruz tequila. Hey, it was in my other hand. + +I also tried a chocolate mini cupcake. Yummy. Again, moist and delicious. I don't know how they keep the mini ones from drying out. When I make mini muffins at home they dry out easily (that is if any survive the first half hour...the survival rate for any kind of pastry in my vicinity is exceedingly low). + +I also garnered a few extra cupcakes to take back to my wife and a friend and score points. Mini cupcakes=brownie points.",review,P2kVk4cIWyK4e4h14RhK-Q,8,11,11 +i6b8U1rKrH_3DE_AoODoeA,2012-12-08,YgUkgAGIcQaWRESHQ__3RA,3,"My hubby&I were in for lunch-approx 1:30PM. Was just us and 1 other customer. Ordered tuna salad sandwich&potato salad. Hubby ordered the cheeseburger&fries. Refills on my tea were not fast enough for me,I had to find someone. Hubby loved his burger,Angus I think. My homemade potato salad was not seasoned-loved the texture, but had to add salt&pepper for any flavor. A few ""quotes"" written on the walls was part of the decor. One from the class of the local high school has a misspelled word!!!! ""anticipate"" They put it up last Sept and its still wrong. Everything we ordered came as we asked for;server got it right. We might be back another time.",review,aqRUK2zHaExwwhwMpPDvgg,0,0,1 +FqzgT9Y-Yu7jiWdHnGW-kQ,2009-02-18,7ZfnlDkDfZ8P3ltsKz9-Xw,4,"I dig the Vig. Good food and a great atmosphere/patio. If you like Bocce Ball, then you should definitely check it out, but go soon before it starts to warm up again and be sure to take the Vig Rig home if you're blasted.",review,3am2PwtajoR3LIlP7XZtbA,1,1,1 +yZ-qb1oJzlTXG_b1EPX4TA,2012-09-24,wdxakKwu82ehONvNMdairw,3,"The facility is very clean and I got in and out quick. However, the staff lacks personality and friendliness.",review,eO-je5q1YejxFnOKSAUQUg,0,0,0 +vARjqeIkSNsazHltujiq4Q,2013-01-05,5gPbyQHu-szhyRNtkt7s3Q,3,"Food is great, but service is horrible. The servers are rude and it took a 30 minutes to get our drinks and another 30 for our food. I really liked this place when it first opened. We live in the area and had hoped for this to be a regular place for us to come to eat, drink and meet friends. I hope the management fixes the problem with the service. If you are going to try this place, I suggest you sit at the bar for better service.",review,96W42CrBaDxpyHKYit9CtQ,0,0,0 +SAEr_2rJLNFr3aPv0DlSWg,2012-04-24,-TNKAnYJRBqVgNMz-nPVXQ,4,"The pizza was crisp and delicious. The place is super casual and very comfortable. The staff is down-to-earth and friendly. + +I loved the live music from Tom Mein on the patio. It felt great to be able to sit on the patio and enjoy a downtown Phoenix sunset in the spring. + +Having beer and wine for sale was nice as well. I will be back to try more of the menu.",review,c_XZwsOmiy4tc0Mmk_F2xw,0,1,0 +3oZcTGb_oDHGwZFiP-7kxQ,2009-06-25,z8UtDMNUoazx1b69dxx2OA,4,"I consistently enjoy Chelsea's Kitchen, even in uncomfortable circumstances (long story). This last time was no exception. + +We started with ""white"" sangria, which none of us had heard of before, despite prior visits. The ""white"" is a pinot grigio so it was an easy decision to order the pitcher. The sangria was delightful - we didn't quite finish the wine, but the pitcher-ful of fruit was polished off. + +My swordfish tacos were delicious and filling. My friend's fried chicken (a special) was good but a bit dry. I suggested gelato after dinner; no one had room. + +Service was a bit inattentive. The table seated after us received menus, waters and had their order taken before we had a server approach the table. After the first server, another seemed to take over and things got better. + +The atmosphere at Chelsea's is good, as others have pointed out. It's a great place to hang out. The setting is beautiful. I will return.",review,PVIJ0S6sVxGYstpyWAUciw,0,3,0 +YEQkTCmphjr6XKPh4m93AQ,2011-12-04,7uoQEHDj2pLxov60OkiOaQ,5,"I stopped in with a friend on a Saturday night after a friend had recommended it to me and was totally thrilled we did. We sat at a table for sushi and waited no longer than 10 minutes for a table - amazing for 8 pm on a Saturday in old towne. + +Unfortunately, they had sold out of the oysters, but the other dishes we'd ordered were fabulous - starting with a seared tuna dish, then softshell crab roll, rainbow roll, and the green mussels. The seared tuna was cooked and cut perfectly - just the right temperature with a peppery ""rub,"" the rolls were a decent size with thick cuts of fish and plenty of flavorful crab, and the mussels were a tad overcooked for my preference but the creamy texture and buttery flavor still made it a winner. + +The thing I appreciated most was actually the service - we weren't rushed or hassled, and the food came out a dish at a time, giving us a chance to eat and enjoy before getting our next dish. At other sushi joints, I am constantly feeling rushed while trying to fit all of the dishes on the table (and I'm not what you'd call a slow eater!). This was a happy medium for me. The server confirmed that we were ready for the bill instead of just dropping it off without asking - it's the little details that make a big difference to me. + +My only other con was creepy old men leering at us from the bar...but that's what you get in Scottsdale.",review,myqNiZDq6XzJerk8uXkw1A,0,0,0 +ewZlgc22xN5NNQ1H7U6Y7g,2012-07-22,fU9-1p_bZIBrpD_6FKlj3A,2,"First time experience. Tried turkey burger from the skinyalicous menu. Burger was ok but greasy. They served me a salad that has gone bad. You donot serve a salad with rotting vegetables. Also Shepard pie we ordered had extra ingredients such as zuccini, so they should have warned us about not being a proper Shepard pie. Gordon Ramsay would have been mad. +Service was good. Only saving grace.",review,dTvhBR0ObL3SAIUZYoKfOQ,0,1,2 +qcylQLL-fXdFHrdXC2jZFw,2011-04-15,ujtHr8BSjWAn-itkm_CfcQ,3,"I loved the old menu, but the changes gave me a change of heart. They had the best sandwiches & it was always quiet from 5 until 8 so you could sit & eat. The new menu is okay & we liked what we got, but we would've left if it wasn't happy hour. Even though the servings are big(maybe too big) the prices are retarded now. The buffalo chicken tenders were pretty good, but perhaps too spicy in the wrong way. I used to go & send people all the time, but without those yummy sandwiches & with the higher prices, we prolly won't make it back again. The servers usually are slow & fairly unattentive, but the menu was bringing us back. :( sad to see it change that way.",review,LoSifdxmrOj-a8xcDrRJDw,0,1,0 +MYj5f-QxtGeKlhVVx1RD4g,2012-09-01,UL_p-UCP11u-ePcMGi5oBQ,5,"My boyfriend and I went to Film Bar last night to see Iron Sky. Neither of us had been there before, and the decision was made quickly, so we had no idea what to expect. The bartender was incredibly nice, friendly, informative, and genuine. The prices for the bar were very reasonable, and I thought that $7 for tickets was MORE than reasonable. We were there more than an hour early, and it was so nice to just sit back on the low booths and chat. + +I gotta admit, I totally fell in love with this little place, and I can't wait to go back! + +My ONLY concern is that by the time our movie was done, there was a DJ playing music so loudly that you could hear it in the theater and you couldn't talk without shouting in the bar, so we had to go outside to converse with our friends. I would bet that the place doesn't have a DJ all the time, though.",review,RGnODSWkk6lYIlAzlP0EBQ,0,2,0 +xcOncADGPr9eki8OU5Ln7g,2010-08-18,6DOPdFlis83p8FRx64QIiQ,1,"Treachery! Seek it out: + +Let me begin this review by saying that mine is not an indictment on this particular location but on every single P.F. Chang's I've had the misfortune of being dragged to. + +P.F. Chang's is effectively the Cheesecake Factory of bad Chinese food, with the disadvantage of not being as capable of delivering passable food. They bill themselves as a ""gourmet"" Asian experience, which is a bit of a laugh when they turn around and sell you their equally horrible frozen entrées right from the convenience of your local Wal-Mart. Everything is bland, overcooked, and ridiculously priced. + +Once you've paid nearly $14 for their ""orange peel chicken"", you may privately hope to yourself that they might have the audacity to include some fried rice. This is your second mistake. Sadly, the bistro calls you on your bullshit. You get white or brown--fried rice is several dollars extra and not at all worth it. + +Everything seems to be cooked just wrong--things that shouldn't be are too crispy, things that should be sauced are too dry, things that should taste good make you question the will of the gods, all the while you find there's no way to escape the treachery. + +Things get more and more frustrating as you dig deeper: P.F. Changs, while sounding vaguely Asian, is a wholly American creation. It was founded by Paul Fleming (in Scottsdale, actually) with SOMEone with some Asian influence to spice it up a bit, named Philip Chiang. (They literally cut out the poor bastard's ""i"" so that it would ""fit on the signs better,"" or, as I like to believe, not scare away the flyover-states-white-folk so.) It's highly Americanized (and yes, I've had Chinese food in China, but I've also enjoyed great ""American Chinese"" food here) to the point of regrettable blandness and it is SO VERY EXPENSIVE you may find your credit score taking a ding after eating a plate of ""wok charred beef"", listed as one of the saltiest foods in America. + +The decoration is clumsy and their famous inclusion of terra cotta warriors are literally symbols of death. From Jennifer 8 Lee's Fortune Cookie Chronicles: + +'But not everyone finds the terra-cotta warriors charming. ""Chinese people would never put that in a restuarant,"" Jim told me, pointing at the statues. ""It's not lucky. It's something you put at a burial site! But in America, they think it's a Chinese thing."" From a Chinese perspective, P.F. Changs is decorated with death.' + +Which is just fine, because everything there tastes like death anyway.",review,8-2W5CmkDl9vrkxRpkiPRg,3,5,5 +WSHQ9qpL39g5xA3E5iBCmw,2012-03-18,FrUT9VYLb7WvaVdCwT86ew,5,"As a frequent traveler into Scottsdale, I was looking for something new and different to celebrate with a young up and coming professional baseball player---who happens to be my nephew. We were forewarned this place had no prices on their online menu and appeared to be owned by Mastro's which consistently has excellent food. + +Michael Dominick opened Dominick's Lincoln Avenue Prime Steakhouse last fall after baseball season in the small, but excellent Scottsdale Quarter. (I'll admit to frequenting this Nike store in travels to Phoenix.) The ambiance is that of an elegant steakhouse. The rooms are dark with huge crystal chandeliers. Very opulent without being ostentatious!. + +We both ordered the bone-in filet which is an excellent aged prime cut. Supposedly, according to our very professional server, this cut is about 16 oz with a bone yielding about a 14 oz serving. My limit on steak is typical 6-8 ounces and I ate my entire meal, making me think (1) This place really is THAT GOOD, and (2) I doubt this is more than a 10 oz serving. + +We started with a warm assortment of breads and in deference to my guest, we minimized the veggie's ordered. (I'll go back during baseball season :-) ) + +After ordering a glass of of the extensive, but reasonably priced wine list, we looked at dinner entree. The steaks come with a choice of rubs and sauces. The house rub was described as ""cajun-style, but not overwhelming"". My theory is sauces on steaks are useful for poor cuts of meat, but take away from great cuts; hence, I went no sauce. + +The result was an incredibly great dinner of Bone-in filets ordered medium rare, no sauce and a loaded mashed potato side. (This side comes pre-prepared or you can ask for ramikans of cheese, chives, bacon and sour cream and build as you like at the table. We finished with a scoop of ice cream and a cappuccino for desert. + +Excellent steak spot and a welcome high-end addition to the Scottsdale food scene. + +One comment: The ""Branding"" of the restaurant is confusing. Either call it ""Dominick's"" or ""Lincoln Avenue"", but not both. This actually caused confusion in trying to locate this spot and diminishes the feng shui and brand loyalty you'd want to keep and associate. (Qualifier: I'm not a branding expert and this is strictly my opinion.) + + I would love to see Mastro's try a southwest cuisine spot!",review,VqSCQCva71Q-ZVcMsYfQuw,1,2,0 +0Gu2cpJ5x9ZZfDDHohBY_A,2008-08-08,0bC_8ixSQJaqRl9wChUfPQ,4,"I worked here when I was 20 and I couldnt fully appreciate what they have to offer. + +Its unfortunate I didnt take advantage of my 30% employee discount, but I was poor since I worked there. + +I really enjoy this place now, the dining room tables are the best buy ever! I was shopping fore like 5 months for a table with bench seats instead of chairs. + +Then I remembered how many Cost Plus had. + +I went in and they have 4 different kinds for 199.00 + +I dont know if you have been bench shopping lately but I find them ion the price range of 700-1200. + +I liked a lot of the tables but they didnt match my style so got a table somewhere else and bought the benches here. + +They also have walkers shortbread cookies on sale all the time. Ok the ingredients on that: Butter, sugar, flour, salt + +Sooo Goood + +But yeah great buys on tables, but they have midget couches. + +They are for like a childrens playroom.",review,ZZ43etAB2n_T53YBYtf8Dw,5,6,5 +lem7XGgKM5a4pAgop2mQqw,2009-10-30,8PMmN9gi7sLs0Z9U86Pq3g,4,Tacos and enchilada today. Good flavor & fresh salsa. Fast service and very friendly staff today (even though they were understaffed). You will enjoy Rudys lf you have never been. Authentic AZ mexican food.,review,UPtysDF6cUDUxq2KY-6Dcg,1,2,1 +AI16w9Hsiq9xFyUnX8x9qw,2010-12-30,x_EfKdGvBYJuE3xwzSeNZQ,5,"Great theatre! Super clean and nice sound in all theatres. Only caveat: I can read the prices on the beverage and popcorn menu sign thing, so when I order a medium, I want a medium, I can see that for 50 cents more I can get the large. I just don't want to pee myself when I get caught up in a good flick. But thanks anyway.",review,bPWCuFEaVL5F6dT3JgivLw,0,0,0 +15JZ0ME6eOtShdLctzfR6w,2012-08-12,NC1faskKJbf11rZ1lIau1A,4,"Went on a Saturday night using our Entertainment coupon (which listed old address, had to call for new, they gave a nice apology). There was a party going on behind screens, all Pakistanis, women & girls in traditional wear, balloons, lots of children that were literally running though the restaurant, squealing with delight. Very glad we were not expecting a romantic dinner... We approached it as cultural diversity, chose to enjoy the loud, festive atmosphere. OK... A little annoyed when one of the little girls did a few particularly high-pitched repeated squeals, & one kid bumped my chair as they chased each other across the restaurant... + +It was less than an hour of closing, so we asked if the buffet was not such a good idea (been out a while, no fresh coming). The kid waiter went to ask, and we appreciate that he returned reporting that the menu would be a better choice to insure quality. + + Ordered lentil soup & sesame naan (new & listed on back pages). Lentil soup was soft yellow color, not darker lentils I'm used to. It was creamy with very small pieces of lentils. The flavor was more mild than I'm used to, but a subtle spicy. It was nice, no complaints. The sesame naan was fresh, crisp bottom, soft top layer, added a bit of salt and WOW delicious!! Lots of sesames on top, yum. + +Then ordered chicken tikka masala, as I'm working my husband into such foods, and he for sure likes this dish. Nice white breast meat which he prefers, simmered in that divine red creamy sauce. I'd call it mild heat at best. I'd prefer a bit spicier, but perfect for my husband. + +We brought our beverage with us, after calling to make sure it was okay. Nothing is mentioned on the website one way or the other. They were very accommodating for this, brought us glasses, and offered an opener to use. I am under the impression there's a seating size limit to such places & not sure they don't exceed it, so I'm going to stay vague so they/we don't lose this option! It was GREAT - kept our bill nice and low. + +If it wasn't for the Entertainment coupon, we wouldn't have known to try them... Now we will be back! + +4 stars not five because it was really good but not mind-blowing... It would take a big wow to have me give 5. Children thing doesn't affect score, as I know that was a celebration exception, and again chose to see it as a cultural experience. Omar works part-time, very nice, friendly, good customer service. He apologized for the chaotic environment, which was nice. + +Saw grumpy uncle at counter, no smile, but we didn't have any interaction with him. We were waited on mainly by a nice kid with puffy black hair, seemed a bit timid but did fine with everything. Omar came to us and chatted at the end of the evening.",review,ZzXsskFHBYlHigIC0mX9lg,0,1,0 +YtxYtZNgz2CilYWx0ycaBg,2012-02-03,C3OBBfVMOK2O5L5cpcWMsg,5,"Aaron Has Been My Tattoo Artist for a long time and the quality of Aaron and all the artists in this shop are amazing very clean,sterile and safe. + +Be Back soon need some work done",review,XXASa63lj7XotC4e2HZeFQ,0,1,0 +dxNWxLzBAoFV4MdtztCUFg,2010-07-25,917tdP8KxwU_HO8Neaqbwg,4,"Sometimes, a girls wants to splurge on going to the hair salon and sometimes, there is not enough time or money to do that. That is what I love about Great Clips. For the most part, I can stop in and be seen within 5 minutes like today and get a $13 haircut. You can't beat it. Most of the time, I just need the end of my layers cleaned up and why would I want to spend $60 on a haircut to do that? I have never had any problems with not getting what I wanted. Sometimes, I'll also spend the extra $20-$25 and have them shampoo and blow-dry my hair straight. My hair always looks great when I do that, too. Today, I spent $38 on the cut, shampoo and blow-dry. The blow-dry took alot longer than I wanted today, but Keeyla (sp?) also took the flat-iron to it. Clearly the girl takes pride in her work and my hair looks really great for someone with very coarse, wavy hair. Every once in awhile you can get coupons for an $8 haircut in the mailers. They also give you a free haircut after 11 or 12. I haven't hit that milestone yet but I'll get there. The employees also seem really happy and the girl who did my hair today said alot of them have been there for at least 3 years. She said they love working there and I think it shows with the amount of regulars they get and their positive attitudes.",review,RxfFQxUtSIGYwTKU_rvAeg,1,2,1 +SMpL3z4FLF07bRA6-y22JQ,2010-04-17,GYz9O3nJuGt70IBlUlXZiw,4,"we to the amazing Thai bistro on a Friday night. the food was great. i had gluten free seafood curry. very spicy. we had a large party and they were very accommodating. we sat at the bar waiting for our friends and some how they handed out free shots! bonus for my friends that drink. +i will be going back and enjoying this great place! they do have a gluten free!!!!",review,u1KWcbPMvXFEEYkZZ0Yktg,1,1,1 +uR2aNW75R4oYs9w7aw-_kQ,2010-04-03,uBarwj3YP-ebRwTMeC2-xw,5,"I am a huge fan of this place. I haven't ventured outside of the teppen tables, so my viewpoint may be limited. The atmosphere is quite loud and lively, but definitely fun. It is great for a nice dinner with a group. The food is simply outstanding. The soup, salad, and chicken are all excellent, but the fried rice is the absolute best. I have never had better fried rice anywhere. After you have enjoyed the main course, get the green tea ice cream. I hate green tea, but for some reason, this ice cream is amazing. + +If you like teppen yaki and don't want to deal with the bland food they serve at Benihana, definitely give this place a shot. You won't be disappointed.",review,HZWylxuUvP9DZ5U2nFyffQ,0,0,0 +24V8QQWO6VaVggHdxjQQ_A,2011-10-08,UQIbBk5GVgSZwjWl6vwyFw,4,Pleasant restaurant with a variety of rooms. Farm fresh food is always better than frozen. Great place to relax and talk with your table mate.,review,BJUyckLaDyb1SZ1PD1GIZg,0,0,0 +waOHPeROjKPz-KXqlSsoWA,2011-03-02,jfuuHrlKJlF8rElLYsGgxg,4,"Today was our first time eating here, so armed with great reviews from other Yelpers, we sampled a bevy of appetizers from the happy hour menu (daily from 4:30-7p) and shared a pasta entree. Of the apps, we had toasted ravioli, a platter of antipasti, and by recommendation from our lovely server, Amber, the stuffed eggplant. The toasted ravioli was delicious-crispy and battered with a crust of parmigiana, melty cheese on the inside. A dip in the flavorful and slightly spicy marinara sauce finished it off. + +The antipasti platter serves about 2 light eaters, but for me and my spouse, it was a nice compliment to the two other shared appetizers. + +The stuffed eggplant was covered inside and out with gooey, cheesy goodness and marinara sauce. This was to be the main portion of my meal while my husband had gorged on the appetizers, but after a taste, he started sneaking bites while I wasn't looking! I added some chili flakes for a little heat, but It was very flavorful. I'm not a huge melted cheese lover and would've preferred a little less cheese, but it was perfect for my husband. + +The restaurant wasn't super busy when we arrived at 6pm, but by the time we left around 8pm, the main dining room and the adjoining small rooms were about 85% filled. The prices were higher than what we normally spend, but we had been given gift cards by my brother and happened to come during happy hour, so it wasn't that bad at all. Our bill came out to about $17 without tip and we didn't order drinks. + +You do have to sit in the bar area to receive the happy hour specials, but we didn't mind. We'll be back!",review,a9J2ezUfTEBp9LEFDhgiRg,0,0,0 +9OPheVf5o8sRcRHxJDl4-A,2012-07-29,ppxreefKiNED_eY_fRAo1A,3,"I like the idea of Sidebar, but I don't really love the place. The drinks are decent, so I would go there for that- though I just have never found it to be very fun. Once I went in and had an amazing bartender from Sanfrancisco- I really enjoyed that visit, but then the next time I had this bartender guy and he was really uptight and condescending whenever anyone asked him a question. It really bugged me, and it made it a less fun experience. I have never gone back.",review,LSf-IajkL99JQBZ3PzXnjQ,0,0,0 +TQNDCD50mkXwySB_qXmrXA,2012-10-30,YXQwYMCJvoLccRDqz6FZPA,3,"Wow, what a blast from the past! I hadn't eaten at a Sizzler since it was popular in '80s, so when we saw that they opened up again where Taco Tote used to be, we had to go and check it out! + +When we walked in, it was like reliving my childhood, when we went to Sizzler as a special dinner, to gorge on the salad buffet and the unlimited fried shrimp. Seeing that the salad bar itself was $8.99, and that for only a dollar more I could get a half dozen of fried shrimp, I figured I might as well! The shrimp comes with your choice of side: either some incarnation of potato (fries, baked, etc.) or veggie (Such as steamed broccoli). The shrimp looked just how they did in the '80s, pounded then battered and fried. They were decent, nothing too special, but not bad. + +The salad bar has various salad greens, toppings, and dressings to choose from. There's also an area with cold shrimp and halved avocados. I was excited to see that they had such high quality items, but unfortunately the execution was something left to be desired. The shrimp was deheaded, but whole, so if you wanted de-veined shrimp you had to de-vein them on your own. The shrimp was also overcooked, and a bit tough as a result. The avocado was a nice touch, but unfortunately many of them were slightly under ripe, so they tasted a little sponge-like rather than creamy. + +The hot foods section along the corner area of the buffet has items such as buffalo wings, meatballs in marinara sauce, and a taco bar. There are also desserts here, like brownies, bread pudding, and soft serve ice cream with various toppings to choose from. The taco bar was probably the best part of the hot bar. There are various outer shells to choose from (Tostada, hard taco shell, soft tortilla, taco salad bowls), 2 meats (Ground beef and carnitas), and veggies (Such as pico de gallo, jalapenos, guacamole, cheese, lettuce). There's also gooey nacho cheese and refried beans at the counter. The carnitas was probably the best out of all the taco toppings. It was slow cooked, and had a rich, deep smoky flavor. + +Service was good, drinks were refilled and dirty plates were removed as needed. One thing to note is that you cannot add tip to your receipt since you pay for your meal first, and then sit down, so cash will help for tipping your waiter!",review,uZbTb-u-GVjTa2gtQfry5g,2,3,2 +cIAd1K3INw6se9MX7Usi7A,2012-11-03,tMCpkH6WAINsWfqZwb8Tlg,4,I tried out Corleone's today for lunch and I could not believe the size of the lunch. For the money it was a great value. I thought the bread was a little soggy but it was good. The place was crowed but the guy working was working hard. I would definitely go again.,review,qcXpyzzkQmfn5MPXXe9wWA,0,1,0 +5AsVHsqADuurv7NqG-RFLA,2011-12-15,opouR8VhMDWofic-RCTsMw,5,"I got to stay here for work and had the best time! They have so many pools. I would spend my afternoons in the smaller pools and have the pool all to myself. It was great! They let me send free postcards which was fun, too. My room was beautiful. It was large and had great amenities. + +Food was disgusting though. I didn't have access to a car so I was pretty limited to eating hotel food for a week. Everything I ordered was gross and I tried it ALL! + +I thought customer service was fine--not great, just adequate.",review,aNUT2kJqD0h38WbXuGMpKQ,1,2,0 +huxYC5ZvUwJdJE3tfhnpIQ,2012-03-03,7LAiM2OEC3Hl3DbEXDgKrw,2,"Took almost 45 mins for a oil change (they told me 20 mins when I got there) and it cost something like that as well... Slow and expensive, not 2 things I like associated with my lube jobs.",review,mEgD2AGWGKD_gs-Jf3Ypew,0,2,0 +8-OxtKNGZAy9UBiSnNcubw,2009-12-28,4fUpRGenwMO_vmu0sY_35A,4,"Brand spankin' new...customer service with a smile. + +Good selection, good prices, friendly customer service. Bought some stuff to make the house better - garage door opener, some hooks to finally hang that darn 65 x 78 painting up... + +Nothing at all like Home Depot, either. I found the fixtures for kitchen improvements here to be of higher quality as well. + +Thumbs up from me...plus, it's so close to the house - not sure if that's a good or a bad thing. Time will tell.",review,EoTooNBcxu0Hy0-XeZI8aw,4,4,4 +rRaiIoDbmPt1NzFxL_1vsA,2011-11-06,pJvIn--GYx2WT5JIRflksw,4,"The food is really good. I can recommend like 5 dishes that anyone would like. If not, try the soup and salad bar. My favorite dish is the Chesapeake Catch, but their Ultimate Chicken Sandwich and California Club Quesadilla are amazing also. The staff works well together and the managers know the value of loyal customers. The GM was GM of the Year before and he wants to make sure every customer who leaves is happy. The kitchen staff is also great. Keep up the good work!",review,H_JsAwjiGEOr_RlZmwfNsA,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2010-05-06,liVW_Bg-7v0vp6j3B1JxCw,4,"Take the whole family and get a nice table outside. The burgers are good, the fried zucchini is better and the the barbecue chicken is amazing...",review,Pwil2kkb1mNO6jVsAI84wA,0,0,0 +enbTOcl7WNgsjsAtmhvDRA,2012-12-13,vJStEy9x9YOwI9oeCxzT0Q,4,"Let me preface this review by saying that for the past 2 years I have lived in Boston, which has some decent Chinese restaurants, great food, but rude/curt/abrupt service. I had learned to keep my head down, not make eye contact and not ask any questions. Eat as fast as possible and get the hell out before someone starts yelling at you! + +So understandably my guard was up when I entered Mu Shu Asian Grill. However, complete opposite here. Mr Mu Shu welcomed me to his establishment, asked me if I had ever been here before and took the time to explain the stir fry/salad bar station. + +I was in the mood for Mu Shu, and a place named Mu Shu must have great Mu Shu, right? Mr MS described to me his version of MS, I heard him say something about a burrito, but I really wasn't paying too much attention as I smugly thought I knew everything there was to know about Mu Shu! Boy was I wrong! When I get it, it's bigger than my forearm. It's packed full of shrimp, veggies and fried rice. Wow, what a great flavour! + +You've heard of Asian fusion? This is Mexasian!",review,THr8peJ3dxCXVgPlKjagHA,3,3,3 +0K634ehk41ZRc4kj3NTAEQ,2012-10-04,w6sh4vqLOUKB74wCFaQKCQ,5,"We went there yesterday a I enjoyed it. The atmosphere was fantastic, because they had a tv, plus they have a lot of pictures of Man V. Food, when Adam Richman came here. The service is good, because they waited for us to order, and were very patient. I ordered the Jewish Slider like Adam did, but I didn't take the challenge. 1 order of Jewish SIiders are 3 sliders. The sliders were awesome. The meat was tender and really juicy. The cheese didn't really make a difference, it just added a little flavor, but the bun soft and chewy, and buttery which tasted like pancakes without syrup, and it was fresh. The potato pancakes put the lid on the jar. The potato pancakes aren't just a creative idea, it was very crunchy on the outside and soft on the inside. There are 3 reasons why this isn't a normal slider. Reason number one is the Potato Pancakes, reason number two is the meat isn't a patty, and grinded beef that made that slider interesting. Reason number three is that the cheese is melted. REALLY melted. I will go again, because the sliders are amazing.",review,CKqEh7wAUOBw07LXYCQrfw,0,0,0 +fDZzCjlxaA4OOmnFO-i0vw,2012-05-10,1dQKhJho86iAK4Ows1vWPg,4,"This is a new neighborhood breakfast joint in a building many think is ""cursed"". The turnover for businesses at this location is high. But I think Oink is going to make it! They were very busy when we were there so it took a little bit to get refills on coffee (need bigger cups) and the food took a couple minutes longer, but no worries. Who I think is the owner was not just standing by and watching everyone else run around like chickens with their heads cut off, they were serving, clearing plates, filling coffee. Love to see that! + +The menu is decent. I'm not a huge breakfast person but there were quite a few items on the menu I was interested in. The funny thing is my hubby and I ended up not ordering any bacon and didn't realize this until after we finished eating! So we definitely will be going back to try the bacon they are known for....jalapeno bacon anyone!",review,GJl1qIvyQEs501rfw0hDBg,0,2,0 +yypKLRJxSjR2uNaTS_O6pw,2012-02-20,rwy4l81PGlO0t5QU7L2RzA,4,"This place is great. The Pizzas are single serving or post salad and some of the best Pizza Ive ever had. Salads are good and and service is excellent. + +Keep it Simple Stupid +KISS",review,hOXXu0S4G4wJWv3cE1Tceg,0,0,0 +W7xb2iS4cYL14Yi5LOGSkA,2011-01-17,TmoJw79_wE9KtxV5dpx_uQ,5,"Bison Witches is a bit religious for me. The hearth is in Tucson, but they did a good job of transplanting the same food experience to Tempe. Their filling sandwiches offer a sort of primitive bliss with the roughly-cut thick slices of bread - best tip is to go with the half sandwich/half soup (their half is really a whole) - Their chili is the best thing going...",review,i_GGKzPs5t31yJE_HTCp-Q,0,1,0 +jqbrMBRsByyVBm8OoQ9dWA,2010-06-30,zknUr3i_3-okPe16ewXtJA,5,Great iced tea. Terrific Roast Beef and mashed potatoes. Love the biscuits. You can't go wrong at Cracker Barrel.,review,TfaTfDdqmc6cf_MAUBJUQQ,0,1,0 +7NKBHVMIjnsO2OmcAfsC_w,2012-07-30,R_wTpXKH3zkHzrleYGtUUg,2,"My boyfriend and I were so excited to hear that there was a yogurt place going in. We were even more thrilled to hear that they stay open until 10 in the summer! We are definite night owls so we were more than ready to appreciate the later hours. Unfortunately we've driven by around 9:15 - 9:30 several times now and every time we do they already have the stools and chairs picked up and the couple times we ignored the signs and went in anyway we've felt less than welcome. If you want to close at nine then close at nine! + +Also really frustrated with the lack of water availability. Can't believe they don't offer free cups to quench your thirst. Not worth it. Definitely not somewhere we feel like we can go to detox and chill at the end if the day like we hoped it would be.",review,c3JbRoLoYj5wi_r-yZdmdA,0,0,0 +sSJeLgg3bQTR3vHkkJd9rQ,2011-07-23,bRQQZvDBEBFaLzmQonjCtQ,4,"If you work in an office and have to dress business casual, NY & Co is your place to shop. Some of their stuff can be a bit plain but more often then not, they have modest, cute, stylish, business casual clothes at an affordable price. I don't think I have ever been bugged by a salesperson when coming to this store which is actually kinda nice. I can't stand salespeople following me around chiming in about how cute something is (see my review on Coach in LV). Lastly, they have a great display of accent jewelry which is my weakness. Everything is always really different and fun so I can't resist and usually walk out with several pieces. The next time you are trying to find a place to shop, try NY & Co. There is something for everybody :)",review,mlBC3pN9GXlUUfQi1qBBZA,0,0,0 +9YUe5J_cPCBo_mL7-z9HCQ,2011-07-28,Wy83ICVrJnvH_PlqA0TCfQ,2,"Margaritas were good, tacos were fair (small), guacamole was wonderful. after ten it gets really loud here. They need to have tequila flights.",review,lKAr9jH7rfpN8YuOOZyHDw,1,1,1 +YQvg0JCGRFUkb6reMMf3Iw,2009-01-06,aODCfMLUBcm6ROzybl-9vw,4,"I went to La Boca two night in a row, Sunday/Monday, when I had to be in Tempe. The first night our party of six were enjoying our pizzas when I casually mentioned that we'd ordered one pizza without mushrooms and some had found their way unto it. Within a a couple of minutes the manager was at our table with an apology and an offer to comp a couple of deserts. Geez, it was just an errant mushroom! In fact, the pizza here is very good and they clearly go the extra mile in trying to accommodate their customers. +I was please enough to return the next night with my wife and share a Margarita pizza (which is very good). Wanting something sweet to finish off our meal, we opted for the chocolate mousse. While it may not have been the ultimate dessert it was quite good and we enjoyed several bites before deciding we'd had enough to satisfy without adding unnecessarily to our growing waistlines. Seeing we'd only eaten a bit, the waitress comped the dessert. We explained we'd been happy with the mousse and were just full but she took it off the bill just the same. +Now, there are a lot of choices where to eat and a whole lot of pizza joints, but for my money a little extra courtesy goes a long way. Couple that with good food and reasonable prices and La Bocca is sure to see more of me.",review,mLfjeWUJnNiqHEye3I6qug,0,0,0 +DVYTS0ZLO-3ClAhMd99VYA,2010-12-23,l9TvJWbvlSXgTychPzX7Yw,4,"Is it worth the trip for a Chirico and Egg sandwich from Chaka Chaka, heck yes!!!!",review,XyaIK2hN3SNMohT5AbKxbg,1,1,1 +Bc4DoKgrKCtCuN-0O5He3A,2009-09-21,U73hI3TqgLEzZ_h0NJKI0A,4,"being a rather simpleton, i like my salads with lettuce, tomato, and oil and vinegar...my fish simply baked...my veggies raw.... + +the ice cream here was very tasty. full of fancy flavors and bits-o-ingredients. but i guess if you want plain ice cream, you go to the supermarket and buy a gallon of store brand. we were cruising the greenbelt at night and saw their sign for ""voted best ice cream"" by the new times, so we decided to hit this place up. it's super cute and modern, but what's so great about this place is the staff. +our ""server"" was completely into the concept of ""artisan"" ice cream (only in scottsdale can a word like artisan be applied to ice cream...it's not simply ""homemade""). she was super passionate and lively and gregarious, which i really like...because i know she's serving a product she enjoys herself and also wants others to enjoy. + +i had the peach cobbler one and my girl had the basil sorbet. both were very delicious, but at over 6 bucks for 2 small cups, we'll probably have to save our dollars for the supermarket next time. if you have the cash to spare for a snack/dessert, check this place out.",review,ST8Yzlk2MqKlcaLqL2djBg,1,1,1 +LrJlLdQYdSvdqr25gX4ZjA,2011-06-04,LK5iJrGc_ahJizoMCiOH1Q,5,"Wow! This place completely rocks! Very professional, courteous, and very good at what they do - make cars clean again. The price was very reasonable and I will be back again many times over! Thank you, Stewart Detailing! Job well done.",review,TIZvHaRMMph2udRx3yJ5dw,0,0,0 +Dim6R6ki5Z_05bk_V1htbQ,2011-04-05,7jjswzK5bVu19AjlxTx4bQ,1,"I got on the internet and looked at the menu and called in the order. I informed Brother's that I had a $3 coupon also and would pick up the perpperoni pizza and sampler and they said it would be 20 minutes. At the register I was charged $12.95 for the $8.95 sampler. I told the cashier that the internet menu had it listed for $8.95. She just smiled and said ""Oh, we get that a lot but we don't have a menu."" I said, ""but it's on the internet with your address/web page"" and she said, ""yeh, I know we get that a lot but here's our menu"" and she handed me their copy-machine menu which did not even have the sampler listed. I politely told her that they should take the menu off the internet if it's not right. The sampler was 4 pieces each of wings, mushrooms, cheese sticks, zuchinni. The sampler was just like frozen generic small pieces ""out-of-the-freezer-bag"" deep fried. + + I live near and our family had hoped to make this our weekly outing for pizza; however, I'll go elsewhere for better food and prices. I also don't like false advertising. + +A customer's frustration should be a business owner's learning opportunity to make their business better. They can learn a lot from their customers.",review,tGZPH2vrrxp20oA3fESE1g,0,1,0 +yJMLD-6AggZNdC-GonVBsA,2011-11-07,dnZElD-j2kg6U6vNlJLzPA,5,"Awesome awesome awesome!!! Our table all ordered a 5 course tasting and it was amazing!! The flavors pop in your mouth!! Very creative chef. I don't think there was one course we were disappointed in. By the end of the 3 hour dinner we had a total of 21 courses. Each one full of flavor making you want more. The staff was excellent, always there when you need them but not hovering. I would definitely go again. Pricey but so worth it!!",review,2bBBL7obIuO5Aiz5gSuVJg,0,0,0 +EGiGWZp_zSqdeftiFQ7MbA,2007-07-09,zQ7t9tYGRJJbEIj8jdU7Vw,5,"If there was a Cantina Laredo in my home (Los Angeles) I would dine here regularly despite the multitude and variety of Mexican dining options. Needless to say, when I'm in Scottsdale, I often find myself drawn to Cantina Laredo. + +From the moment you're in, to the moment you're out, Cantina Laredo takes excellent care of your tastebuds. The chips are salsa aren't filler but a real treat. Their homemade salsas are worthy of bringing in your own jars to export back home -- some of my favorite salsa anywhere. I believe they have three different kinds. Their tequila options are wonderful allowing for creative margaritas or a fine neat glass of 100% pure agave goodness. (I promise to never use that phrase again, sorry Readers.) + +The entrees aren't just your common taco/burrito fare. Using juicy meats, creative homemade sauces, and interesting pairings, Cantina Laredo professes its love for Mexican food and culture -- reminding diners how lovable these things are. + +The decor and various areas are all quite nice as well. An excellent complement to what always proves to be an excellent meal. + +_C$",review,tDqvTbunSbk5pmpd2Ot_Jw,4,2,1 +5WdUZlkiDYLgPL1OertCUw,2012-08-30,-1sIFaleJ_Z-DGBp4jSBXg,5,"It is a 110 mile round trip for me, passing who knows how many salons along the way, and it is well worth the drive even during rush hour. Ask for Ray if you want an amazing hair experience. You will go home feeling beautiful/handsome.",review,mmZk-DnajPfiCDu67CWrKg,0,0,0 +E28ht8IEiO6FZbKktSo0Xw,2011-09-23,BeP1fTHC5MYKbULtJSMpug,1,"I can't even believe I actually went to this restaurant. My feeling was that if the Tommy Bahama clothing and its wearers were any indication of the dining experience, it was going to be unoriginal and in poor taste. Alas my friend wanted to go there was his birthday lunch so.... Let me be clear that I'm not a food snob at all. Just last week I enjoyed a lunch of Nachos Bell Grande and a bean and cheese burrito at Taco Bell very, very much. That was far superior to this lunch at Tommy Bahama. + +The decor was comfortable and breezy. Everything else - not so much. 1st it's nice that they bring you bread and butter, but a sweetly flavored butter? Why mess with the pure goodness of butter? The glass of lemonade I ordered was sickeningly sweet, and I am a notorious for my sweet tooth. It was undrinkable until I cut it with water. The coconut shrimp also had an overly sweet sauce. So much so that we could each only eat 1 of 6 shrimp. I got the crab bisque which was crazy salty, and in my opinion, contained previously frozen hence rubbery crab meat. + +As it was my friend's birthday, they brought him a complimentary dessert. Very nice. He got the newest one which was some sort of chocolate/caramel-filled cake with oreo crust, chocolate mousse topping, sprinkled with crushed Heath bar. Sounds good, right? Vile, absolutely vile. Overly sweet except for the oreo crust that was saturated in butter. On an update note - it was not the nasty sweet butter they serve with the bread though. + +My final issue was with our young, highly attentive server. He was very sweet and well-intentioned. However I feel that every server in the world needs to stop speaking to customers in the collective. Don't say ""are we enjoying our coconut shrimp?"" or ""are we ready for dessert?"" Unless I've badly misinterpreted our relationship, ""we"" aren't doing anything together. Just a pet peeve - I still tipped him 22% and kept my mouth shut about this odd little quirk. + +oh and the bill for coconut shrimp appy, quesadilla, cup of crab bisque, lemonade and glass of white wine? $52. for lunch. + +Tommy Bahama and I just didn't work out at all.",review,ky5-mOk8-9M-NlLr8Jh8rA,0,1,2 +cgNIBHS2mLdbTRiodAT6EQ,2009-07-29,Cobm9lynyhhFIo3ACeXdrw,4,"Good food, good service, good price, shitty location. + +I had the carne asada plate which came with guac, beans, and corn tortillas. The tortillas were amazing, the carne asada was above average, as were the beans. Unfortunately, as good as it was, it's still Mexican food. Not that I have anything against Mexican food, it just, for the most part, all tastes similar. Nothing really stood out as AMAZING. If I'm in the area (god forbid), I'll def. eat there again, but I'm not going to drive from the E. Valley to go here. Bonus points for having 7-Up in a bottle, made with sugar.",review,waD2euOMPTnTzQ0thq3H6Q,5,6,4 +1M4oczf2lmkdgbrJ3J7OqA,2010-09-12,y4rwrjev_v-8KNPWE1enUQ,4,"My husband and i went here for our 2nd wedding anniversary..We wanted to goto some place that was romantic, quiet and served gr8 food & drinks...We were so glad we came to Chritophers..The food & drinks are expenesive but you get what you pay for...The food was gr8..We ordered escagort ( snails ) , seafood and a duck dish...Tasted really good and so did the wine..I will recommend this place for special occassions..You will not be disappointed !!",review,bEJMn_jbXWHTmDPzPOflRw,0,0,0 +-73hx2hut_2KPcGpCTO5YA,2011-04-28,IimIwg0yzMr1LqygsxJ8nw,4,"Flavor was good and it was very clean. Only complaint is that it melted very fast, but if you eat it there (as I did twice), it's not a problem.",review,33F7fHr65M-JUAOLxeCMtw,0,0,0 +zSzE4rW9FE3fGqiEzZ91Vw,2010-11-06,oO6nC6WCwKkIgqyCKt7Maw,3,"The food is as good as the Coronado location but the ambiance is seriously lacking. The inside had a funky smell so we opted for 100 degree heat and ate outside instead. +The main reason for three instead of four stars is that they screwed up our order. Not a huge offense, you say? Well they put their uber spicy jalepenos on my toddler's quesadilla instead of on my burrito. They replaced it but still... +Bottom line: their food is good- love the carne and pork. We'll eat here again but I'll be double checking to make sure the order is right.",review,2TX0Gv0k6ZtEfVyImcvnNQ,0,1,0 +sb4wU69LkCtC6Axqcd34WQ,2009-10-07,_DMaf7C5vIT0xXCGKsLRDg,3,"Came to Blanco Tacos during Restaurant Week 2009. The guacamole they served with the chips was so yummy! The flan was also delicious. I will come back just to eat the flan! + +The scene was pretty cool. Fun people watching environment.",review,pWTUeXZKI6oJ78WTET5y2A,2,1,0 +gXkv89nyNlFyrEdblB3MKw,2012-08-28,txzDzmWMNe7gNK_gIEZkCg,3,"I love Harkins Theaters in general, but this one simply doesn't seem to be kept up as well as most. It's a little dingy, the bathrooms aren't typically in great shape, the screens themselves are good sizes and the chairs really are comfy, but the concession stand dosen't seem as clean as it should be and it typically has the movie theater sticky floor going on. Harkins AZ Mills really is A-OK, but there are enough other theater choices that I typically make this one my la",review,qa05pUVNapADHZXpHMPMeA,0,0,0 +wKXHOkQropo-YG60OvN6Uw,2010-07-28,gVf9VqVVK7BM5HNTcDbakg,4,Got a pretty decent HAND car wash for $15.00. They asked about extras but weren't pushy about it. After I paid I noticed their gas prices. They were about $0.20 less than the going rate in the area. The frosting on the cake was that I got a $2.00 senior discount.,review,lzFLY7LhrwWEonCRdrYdVg,0,0,0 +LBCu6fZIcsv5PDFXOOEodw,2012-08-18,2JvmyrkXq9kPMTZUT1M2lw,5,"Steve is one of the few shops that can still do a decent flat top. He is in my neighborhood, so it is great for me - convenient. Steve is personable and the shop is inviting. I love the hot towel and back-vibrator massage. I have been going to Steve for years, great service product!",review,vUPDYpf-7N_Shy5EZrKv_g,0,1,0 +n4mfUCDXHsg0GH50HzJpug,2010-11-13,fBkhISo4CsyCuHOswKjpZg,2,"waitress wasn't good with service. +mongolian beef dish sucks. +fish is just ok. +rock bottom is usually pretty good, but this one in scottsdale is not that great.",review,gdzmrSqphtyaOuSVVJzZEA,0,0,1 +VXIkI9_EbDbYHeO9IzKjJg,2010-02-12,5gvYyhnZfXGV4sG6v0B98w,5,"I love the Ranch Market! The atmosphere is great, the produce prices are very reasonable, and the civiche is excellent! I never go down the center isles, as they appear to be filled with typical grocery store packaged foods What makes Ranch Market special are the fantastic offerings all around the center isles. + +Here is my advice: First, make your way to the fresca bar to get a fresh fruit drink, it's just past the bakery at the front door. After you pick up your favorite fruit drink head over to the grill for some carne asada street tacos, but only order two because you'll want to save room for the seafood bar where you will find a deliciouso shrimp ceviche at a very reasonably price. I usually order a half pound of the regular shrimp civiche and a half pound of the civiche ensalda; eat a little at the bar on a tostada and take the rest home for lunch the next day. Yummy! After you have filled your belly with the tasty carne asada and civiche, stop by the tortilla factory to get some fresh tortillas to go and don't forget to hit up the bakery for hot cream filled churro for desert.",review,UMq89piQvpAVFVfiGc6ndA,0,0,0 +kIO1aDo0-80SW18CsdTJ9g,2012-03-13,1x9J3i-p-bxko2L6AVbOew,5,Since the Gilbert location has closed. The Tempe location has had more things to offer. The staff has really stepped it up on customer service. They do there best on helping you find whatever it is your looking for.,review,64thrreKpvpjTVLszJd_qA,1,1,0 +f_leeIRar8uNCkk5sAmHRQ,2011-05-18,sz5Y8ChwPI7jJRaHc-1cJA,3,"This club has great bands. I saw 68 Guns and Metal Elvis here. Also at the Metal Elvis show was a Van Halen tribute band called VH Too. The music is top notch and it is usually not too crowded so you can go right up to the stage. However, there are only a few tables, which is annoying if you need a place to put your drink or coat or something. I also wish the ceilings were a bit higher. Would be better if they could combine an indoor/outdoor area with the stage. Overall the building seems cramped, small and old. The prices are reasonable though. The location is kind of strange however. We took a cab there but when we wanted to leave we couldn't get one to come pick us up despite the staff saying they called one. Finally we walked to a gas station and called from there. This reminds me too much of Club Red. Great bands, crappy club. I hope that someone opens a brand new club for bands of this caliber. Or else I will need to open one myself.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +tpJjVxyor9OOQfYgvAtdRA,2010-09-19,ml4fHYRxcHH9Ul_93lEA9w,4,"Wow! This newly opened little food shop in the Mekong Plaza is fantastic. Very authentic Hue Food. Although I'm not a Vietnamese, I have been to Hue in Vietnam and had their famous Bun Bo Hue. Must say that this store was very close to the authentic Bun Bo Hue. The pork hock and the other meat used was very tender, the noodle was perfect. The broth is lightly flavored so that you can use the Shrimp Paste for those who like it a bit more salty. The veggie was very generous. + +The Banh Beo was another neat Hue snack. It's a very thin rice cake snack which is steamed. You dip it in Fish Sauce. It was very nice and moist. + +Their menu is pretty limited as they only have about 6-7 items, but they are definitely featuring the best of hue to serve. Very impressed to see. +There was a good crowd too, so lot's of people have been dying for some nice Hue food. + +Only thing to note is they were a bit disorganized the opening weekend as their register was not even working, and the service was a bit slow. I'm sure after a few weeks, this place will be running smoothly.",review,e9HWnHUYlt9758oileaISw,1,3,0 +HhNY3X0kyrN5682La6N6Cg,2010-10-08,4VIFaT_UzgvQ1CICcHBxWA,3,"Not a big fan of the Boba Tea House by Lee Lee. I like their decor, very hip. However, their milk tea mix was not that great. It felt like basic sugared water. I've had better ones over in Lollicup or Quickly in LA. It's a pretty busy location as it is next to Lee Lee's, but unfortunately they definitely aren't quite there yet with the competition.",review,e9HWnHUYlt9758oileaISw,1,1,1 +6oRAC4uyJCsJl1X0WZpVSA,2011-02-12,UcnkWyPd2MmLSjtmk-W0Kw,4,"Go for the food and you won't be disappointed, great middle eastern dishes served up nice and generously whether you get it to go or for dining in. I went here and ate in and there was initially no one in the restaurant but me and then it quickly filled up with people. So I know that this is a neighborhood spot. The gyros and tzatziki sauce are very good but so is the hummus, falafel, kibbi and shwarma.",review,jXp0eFDh_LNO8JfcGlV3pw,2,2,0 +iBYvoQ4lj35DYL24fYcmGQ,2011-05-07,jK5mzt25I1NKnjyK_fJeJQ,2,"Meh. + +My standards for quality froyo are high since I frequent Yogurtology (Shea and Scottsdale), Yogurtland (I'm the Duke in Scottsdale), and sometimes I go to Mojo in Tempe. + +This place has ""ok"" flavors. I had the original tart, that was quite a bit tart. The toppings are ok. My friend really liked the fact that they have banana chips, but that's because we usually eat our froyo at home and we were far away from home, and she didn't have to use her personal stash. + +Since it made her happy, I gave this place an extra star. I'm cool like that. + +Hmm...let's see. They have a snow machine. Not really sure what this is for. It seems out of place. + +It's far from my house, and not really worth my drive. I guess if it was by my house, and I had no other options, I'd frequent this business. + +This is the one time, and one time only that I will say this.....Thank God, I live in Old Town Scottsdale.",review,8JC-Yb3UDUv2FUl5ym1nVg,1,1,1 +WNy1uzcmm_UHmTyR--o5IA,2010-01-05,Yk1qYlKFKyNFZaPDZ2ov3A,5,"Wow... i don't think I've ever been in a more narrow place.. ever! + +but it was just perfect in ever way!!! + +They have tables along one side and a bar with tall stools along the other side... you can watch them make your food.... +its like the food network... but live and you can smell it :) + +my coworker and i sat right in front of the oven... every time they would open the oven i would only get hungrier!! :) we could see all the fresh and yummy ingredients!! + +i had the Reuben (Pastrami, corned beef, homemade sauerkraut and Swiss with a side of 1000 island dressing) + +WOW... it was amazing... for their sauerkraut they use red cabbage... it was more sweet than bitter... and the crust of the pasty was flaky and buttery... so delicious!! and i honestly forgot how much i love corned beef! over all it was very rich... but great to share.... + +My Coworker had the Italian.. (pepperoni, salami, ham, mozzarella, basil, tomatoes and marinara sauce) it looked great... he loved it... you could see the fresh basil and tomatoes... it smelled divine + +we didn't speak for a full 20 minutes... just barley loud enough mmmmmmmms and o-m-g this is amazing... said quietly to ourselves.... + +all of the employees were so outgoing and laid back at the same time... just really cool guys... i loved the atmosphere and the attitudes that filled this place... + +i cannot wait to come back!",review,uTc1puvwUpFYryEHo4DNaA,9,10,5 +dGp5V3aG5qw2RJI8tC3tBQ,2012-05-05,BrHSmKn7ErcpI2F_EvD6Vg,4,"Always fresh and friendly. + +Food is priced just a skosh above the actual value but, the place is clean, people are nice. + +Worth trying? Yes! + +Lunchtime sushi is great. Teriyaki bowl is good. + +Brown rice extra...booo. Overall worth the very close the the $9.00 you will spend on lunch at Yogis",review,E-ZCs-ZmPoann2QEA-Y9vw,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-12-31,4HGEigB9foiXvaC5ggUsYg,4,"I was in phoenix on business and im allways looking for some good eats , I found this place with the help of yelp and food network app on my i phone . +I originally planned on getting the waffle that everyone raved about , but ended up getting the Special Andouille sausage scramble ( spicy!) but very good . Hash Browns were good and i also liked the sour dough toast . +When i go back im definatly gonna try the waffle +Be ready to wait for a seat , it doesnt seem very big . +Singles get seated faster because they have counter style seating",review,otQccYbeW2y35AHjsX2k4A,0,0,0 +LzvmdiJFMGM1Z25S4Sm3bw,2009-09-23,98jEdLrIdiWm6LlPrN8gKQ,5,"Of the 3 sites - this is the Kindergarten. + +My daughter is attending here and I simply love it. She's five and is repeating kindergarten. She attended kindergarten last year early at the encouragement of her preschool teachers who thought she was bored in their classes. We are having her repeat because she's a little young for first grade, but this isn't an issue because the curriculum rolls every two years for that very reason. + +In her first year - she learned to read, write, do simple math, know all her sign language letters, and has more Spanish knowledge than I do. this year they will build upon all of that and take her further. + +The staff is great and care a lot about the kids. And when issues arise they work with the parents to get them solved both at school and at home. + +It's pricey. But so very worth it.",review,Kxq8CUBtcaTvJL3xdCuPwQ,2,2,1 +oxsCvEkQNNIbOPDt_QK_0A,2006-08-23,uQGpCZ7D5NgFbYDzWXzYaw,3,"If you're heading to a show at the Scottsdale Center For The Performing Arts, this is your best convenient bet for dinner (if you like Indian food). It's average but can probably satisfy your curry craving.",review,y4JCKsEm0KlwtmHpZhbA4A,1,2,0 +dbh72sNyNeHUgJqQye9Vbg,2010-11-02,mAdp_FFkbW4tWifttdT5kQ,4,"Ah, good 'ol standby Village Inn, where else could I, a quasi-nut case get great food at such a late hour? + +The manager misses us when we are not there to envelope the place with our gloominess. The service is really great and the food is always good. This is a much better choice over Denny's because they are cheap and the food portions are better than Denny's. Good place to wander over to after coming out of Shirt's 'n' Things. + +I recommend the pie. It's free on Wednesdays",review,7C-jyTrOX-iJ-MrSJuh-8A,0,0,0 +DDnmNTvIIQu2t3WZ2EQx-w,2010-02-10,5ey8y2ozI-0JepcPgq59PA,5,LOVE LOVE LOVE this place! Had the buttermilk fried chicken with the mashed sweet potatoes and asparagus and it is to die for. Comfort food for sure. Not too crazy about their brunch menu because you must order off of that and not the regular menu. Their guacamole and warm chips are also a yummy must! This is a great place to take out of town guests because there is nothing like it anywhere else.,review,KLekdmo4FdNnP0huUhzZNw,1,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-05-16,Np4PFQm2vpE-YmJwS25jcg,4,"My wife and I had visited this restaurant a few days ago with my father in law. He is in from Chicago and watched a show on this place. At his insistance we traveled there and ate lunch. + +I have to say I was pleasantly surprised. The food was amazing as was the staff. The location left a little to be desired but hey, some of the best places are in the most odd locations. + +One thing that separated them from the rest was the ability to try the food before you buy it. Let them know you are new and they will gladly let you try samples of there main dishes. + +Overall a great time and great food!",review,kEmpzMZZ424ToaT9fBf2Zg,0,1,0 +-O7H5LhBkE13VQZB0QZI0Q,2008-03-12,kpKc8UFI4dHjsVzPKarx2A,3,"Just returned from the Phoenix area and so my friend insisted we check this place out. Well basically the place serves an alcoholic versions of ""Slurpees"" in a variety of flavors. If you've been to Las Vegas it's the same as those slushy alcoholic drinks but made in a small Arizona-sized portions. + +I was ok hanging out on the patio but I don't think I would trek here as my destination. The prices were ok as well as the scene. In fact we saw a table of 8 people apparently just walk out without paying their bill so we watched half of the staff burst out the door running in different directions trying to apprehend the suspects. Weird huh?",review,_L2cdicSee0N72-uilgHyg,3,1,0 +rbeBreN9KOWipTUQsmiQ9g,2012-05-26,hAMC__CBKQ_hEBwCHM3yxA,5,Absolutely sensational food. We had the evening buffett. I will be driving 40min one way to eat here again. Wow I just really enjoyed my meal.,review,7GPWvigPED4hwy0tJqN64Q,0,1,0 +T35GMi7R4XtJ84W0Y_nDAg,2011-05-03,7Ps9NObKdJpnTQXL9JqvGQ,4,"How can I not show yelp love for the original fro yo shop that kept my addiction fulfilled in the early days of the fro yo phenomenon? Yes, that is what Golden Spoon is to me. + +When I first moved to Phoenix from college, I was coming from an area that was overloaded with frozen yogurt shops for the college girls who shared my love of the frozen treat. Unfortunately, Phoenix hadn't quite yet jumped on the bandwagon and so the only choice was Golden Spoon. To make matters worse, the only locations were north on Shea or South in Awatukee. So, since I was living in Old Town, the Shea location was typically my choice. + +I can say that I added several miles on my car very willingly to treat my taste buds to Golden Spoon. Yes, it was the closest shop to me but it's also creamy and completely delicious. The frozen yogurt is served by staff and comes in different sizes. You can choose from multiple toppings and it's just your ""old fashioned"" frozen yogurt shop. I'm using old fashioned very loosely in this sense, since frozen yogurt is anything but old fashioned, but with the self-serf trend, Golden Spoon is ""old fashioned"" compared to that. + +I don't visit Golden Spoon as often as I'd like anymore because it is still a bit of a drive, but anytime I'm in the area, I know just exactly where to stop for a sweet frozen treat!",review,4ozupHULqGyO42s3zNUzOQ,6,6,4 +7LGjM8HKJTwqfYU3C7N_0w,2011-09-11,RZz-6NxFntEwlbNlg5OD2w,5,"I eat here frequently as I stay at the adjoining Hilton when I'm in town, and the breakfast vouchers are generous. The steak and eggs ($15) features a good cut of meat (I think it's a flank steak), 2 eggs anyway you want them, with corn salsa and toast and potatoes. The servers are always amenable to allowing me to change out the sides for lots of fruit. I love the mustard available at the table, the fact that they have Chilulah hot sauce on hand, and will bring out some salsa at no extra cost. The staff are pretty attentive. I call ahead to avoid having to wait in the breakfast rush. I have also had an omelet which was substantial in size and quite tasty, with unlimited ingredients for about $12.",review,DowPyTFtqen32BuOmzuBXg,0,0,0 +eHcQzL5eebqvKrLW5q283w,2012-10-03,ycya-AuFZ9iLozjCvEIwWA,1,"My office moved to the area so I was driving around and saw the sign "" Best Sandwich...."" Um, no. If you want, I can come in there and show you how to cook a Chicken Cheese steak. First, don't wrap it up and let the sandwich sweat and make the bun soft and chewy. Second, put some meat on there. It was 50% bun. It should be toasted and crunchy. And price, a 12"" chicken cheese chips and drink was $13..are you kidding me. For that price, I was hoping for the best I ever had. Change it up Capriottis or the word will get out and it will all be over in this very tough market.",review,WRxE6GQbYSNJqLNaZ46Hsg,0,0,0 +f9xITzdfPbqQUoBxmSNymQ,2011-11-04,WVzANE3yU6Nna-K7kpvw0w,5,"I'm a big fan of Silver Mine. I have been for a long time. In fact, I would venture to say that this is my favorite sub place. Ever. I can't quite pinpoint what is so appealing about it to me. I do know that it was a dangerous decision to decide to live within a mile of this shop. The employees are super friendly, the restaurant itself is clean, the food is cheap and oh-so-good. + +Personally, I recommend the Pikes Peak or Bust which is a veggie cheese sandwich. I love it and have turned into the type of person that gets the same thing every single time...yikes! + +P.S...They also deliver until the wee hours of the morning and it doesn't get much better than a tasty sub when you have been out and about in Scottsdale on a Saturday night :)",review,sPEFql7fLp0oouFxnooGpQ,0,0,0 +07UqHgBkJ4Kach2sVT2FdQ,2012-09-06,9lk-5ImZZz6Q8EIcmRvzig,1,"Cummings took over the company that we originally used, and since they have taken over we have had nothing but problems. + +I haven't seen a single bug in years in my house and as soon as we started using Cummings we've found a bug almost every single day and not just 'bugs' but cockroaches. I called Cummings to ask them about why this was happening and the receptionist was extremely rude saying they didn't do anything wrong. I would NEVER recommend this company to anyone. + +Needless to say I will be finding a new pest control company today.",review,mxViYcGg-RerE7_qr8aKuw,0,0,0 +CbqO2LA7PWp4kbuZBPEa_w,2010-01-03,BYB87k4Xz_uU09JA7bq97w,5,"Andrea is absolutely wonderful. She's pet-sit for me several times over the past several years and I've never had a single issue. On her first visit she stopped by to meet the animals and go over details with me. Now I just call her to let her know the days I'll be away and she arrives without any problems. + +She's very responsible and trustworthy - her copy of my house key broke off in the lock and she called me right away and we figured out a solution. She even came by on a day she didn't have to in order to get it fixed - all of this while I was gone. On another occasion my travel plans changed suddenly and she was able to continue watching my animals. + +I highly recommend Andrea as a professional house-sitter. She can't be beat.",review,oS5RnCDQxNS85NbnqvPXzw,1,2,0 +MLAnvEcvDfOWELHUN_0xEw,2012-05-26,iAMyylgz85tvjOjYQXPa6w,4,"Beer is almost a 4, food is a 3, service was a 4.5. + Check in deal makes it a 5. Add that up and divide by the hungry fellow and you get a 4. + +I got a pretzel and an oatmeal stout pulled pork burger. Forget the pretzel, it's a essentially a utensil to enjoy their amazing sauces. Even if you don't like pretzels or the sauce, it makes for a great palate cleanser between beers. The burger was nothing spectacular. I don't know where the oatmeal stout in the sauce, but it might have been in there. + +Best part of the trip was getting a got a complete education beer mixology. WHAT PEOPLE MIX BEERS! I learned about the Stumbler and the Snake bite; ask and you shall receive. + +Sampler note: Make sure to bring another mouth to finish a sampler, unless you plan to taxi and walk home. +Beer Recommendations: +Lady friend who hates beer: Snake Bite +Hop Head: Pale +Complex Beer Drinker: Stumbler or MonkeyShine + +Pilsner. light and amazing wheat finish, I can drink this all day +Blonde ok little citrus, Pilsner was better +Pale. Light with dry bitter finish, not for average drinker +Red. Simple hoppy red +Brown. a bit darker crispy red +Oatmeal. Not smooth enough for a dark oatmeal, surprisingly a bit hoppy +Old Monkeyshines. Simply intriguing + + If you are looking for a clean cut safe beer place with decent food and some beer geeks, Nimbus is your place.",review,k5Qp3va9jlWVOuXY_pJDLQ,1,2,1 +gWQlTK3o29rZGlw2YLUnhA,2012-01-07,xVJYZX0aZki4gp5zWd5VIw,5,"If you are a tea drinker, you have to stop by! The variety seems endless as you read over the menu so it really comes down to which tea fits your particular mood at that moment (mine right now is the ""cookie monster"" which is awesome!)",review,koTB0T-WJWKmu9YS56GxVA,0,0,0 +gXkv89nyNlFyrEdblB3MKw,2012-05-24,JsDEng5uMkoUwwVYvD15oQ,4,"I like harkins. This isn't as good as some of their newer ones, but it's still good. Seats were comfortable, sound system was OK, screen was a tad small (but maybe I'm getting spoiled). Staff seemed friendly. It was a good experience. + +Last time we were here we did the IMAX, and it is a great IMAX.",review,Mb0psF4WQF7gZSuZafVr-g,0,0,0 +8x9Mzb7gX6SEHQIlSDpU8w,2012-11-27,8Lut0gtgnap27ShxDO3mbw,1,"For the past three months I've been receiving unsolicited spam text messages from these clowns, so regardless of how nice a place this might be, I'll never stay with them or any other affiliated property for that reason alone. I've complained to the hotel (I was blown off), blocked them from my cell phone account, and filed a complaint with the feds. So...since the hotel continues to find it appropriate to light up my cell phone at 3 am with spam texts, I hereby award them a generous one-star rating.",review,TiXFnVfDWM1N8w6TMtE_pQ,0,0,1 +Zy2vca7i9QFGRKa4m0C__A,2012-05-22,sYr1di9nrjJ516O3AMz9LQ,5,"I love this PHO and spring rolls, and for the friendly and fast service plus it's cheap! Oh it's truly a must try place.",review,4HA7OCSUWYHgFBsyQXkYOw,0,0,0 +OFBJtqWGSx6n6CchtVmoRw,2009-08-06,QJ0KJ1pIieCdeyMPdKWbww,3,"My wife raved about Delux. She said this was the best burger she's had in the area. I finally went with her and by no means was overwhelmed. The burger was fine, but not the BEST I've ever had. +The burger was not much better than something you might get at Chilis, Red Robin Cheeburger, Cheeburger etc (my opinion). I think I actually would prefer a burger from these places over Delux. + +Maybe my expectations for this place and burger were set too high and I was disappointed with the final product. + +Pros: +The sweet potato fries and dipping sauce was very good. The service was excellent. + +Cons: +Limited seating and basically rubbing shoulders with the person next to you because you are packed in so tight. T the lighting in the bathroom is very dark. I'm shocked techno wasn't being played when I walked in. I didn't like the trendy nightclub feel of this place.",review,9qCPmT6ovJjxL4tJB4ANCg,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2011-09-10,sekntwm3twVFifAPNBbJPQ,2,"Had dinner there the other day. Again - I love the design and atmosphere. Service was good but the food... not worth the $$$ they are asking for. Starting with the kids option - I ordered the pasta with marinara sauce which the server told me will have short noodles for easy pick up by a small toddler, it was made of long wide noddle, even after cutting it was not fit for a child. I ordered the grilled cheese which was okay, really not tasty as it should be. +My friend and I shared the rock shrimp which was awful, tasteless and the shrimp was not cleaned through so we had some crunchy sand like experience. Then we shared the corn flat bread which looked and tasted like airport food. +We decided to leave and got our check - for what we got paying that much was a big disappointment. They didn't even take the kid pasta dish off... $5 people... really? +I will not go back unless it is for drinks only. The two stars rating is for design, location and an okay service. Food deserve ONE.",review,bKKVpwp1ERdWUl4lqc8ChA,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2012-03-12,lzSjJafXh1eGE0yaYJQkuw,5,"The waiter got the drink wrong: ""up"" means served strained without ice, not on the rocks, but I was happy about the mistake, The Salmon melted in my mouth and the bread pudding made me fat for hours, but was so worth it. Great atmosphere and none of our plates were empty when taken away. I would definitely go back. Good service, great food, fun atmosphere. Great flexible hours on a Sunday. GO !",review,1_zj7B1bRgE7dC6tywUcTQ,0,3,0 +NM2j6Y5NEyAseOi2sKzwGg,2012-09-19,yyWWvQcm1xi3HjMFtlM7HQ,3,"If you go prepared and early, you can be in and out within an hour. If your not 100% sure what you need, go online and check BEFORE you go. Save yourself the time and hassle of making that second trip. Not bad overall.",review,pQ6ij6cOBRB3yJGHbVZHUQ,0,0,0 +QKGZajo_Xm6AW3lHkU9Mmg,2012-02-18,02DZtjEKdg9BcDePaDpYLw,5,"We tried the caviar before our appetizers this time, a choice between two types - we picked the Osetra. Caviar is served with mini toasts, minced shallot, minced hard boiled egg white, minced hard boiled egg yolk, capers, creme fraiche, and I'm sure I'm forgetting other items served with it. What a treat. + +As usual, we enjoyed chopped salad, fillets, scalloped potatoes, asparagus, espresso, butter cake, and a fantastic Cabernet. + +Another A++ experience at Mastro's!!!!!",review,3uR5YTXgW4hatuFnaNxSGg,1,2,0 +L_MtTn4IUBTmQtqqM2iFqA,2009-07-22,VSvsXXdJZkyQ8pbUJtrUbw,4,"Possibly the best Pho soup I have ever had! I can't believe I ate the whole thing! Well...yes I can, actually. + +What clinched it for me was that I ordered it To Go, which is almost never a good idea when it comes to the pho (do not attempt to assemble at your desk! I repeat! Do NOT assemble at your desk!). But everything was securely packaged and well-presented. Plenty of everything (noodles, meat, herbs, sauce, jalapenos, etc) and oh so tasty. + +I've got my sights set on the BBQ Pork & Rice noodle bowls for my next visit, which will be soon. + +Go get your pho on!",review,318bjHL6yRQIo4hy4DzRPw,1,1,1 +pa6K7DGByxBXxcVJ59nWMw,2011-02-25,-Be0UUGYuiDJVAM_YqeQuA,4,"Since Im big into breakfast foods, Im always on the look out for a new place.. and whadda ya know. .I found ""The Place"" How convieeeeent.. + +I read the reviews and when asking a few people on Facebook about it, I heard nothing good good responses, so why not give it a shot. I heard that you have to be early or it gets insane. We showed up about 9AM and waited for maybe 5min. Not too bad. + +The menu looked incredible and as I watched the servers take food to the tables, I could see that the amounts of food give were enormous. I couldn't wait. Checking the reviews on Yelp, I ordered a chorizo omelet with avocado, and all the fixens. I thought I'd love it, but I think I was more overwhelmed with spice than anything. and I love spicy food.. what gives? + +The second time we all went, we got there at 8AM and sat right away.. this time I was told to order biscuits and gravy.. Damn were they good. I got an order of those along with a huge pancake. Here's what I loved about their pancakes.. they tasted home cooked. Like when your mom takes out the old griddle that still has last weeks charred food on it, yet still cooks on it, and it has that home yummy taste? Yep.. that's their pancakes. Downed that with some iced tea and it was one awesome breakfast. + +Ive been here three times now in two months... I think Im hooked.",review,_4lqpCYCqOQzbB6xQGGhrQ,0,2,2 +nDHyino_t7O94ZzRHGUApw,2011-06-13,LBXlcAhRuEQOUzKczTWxRQ,4,"If I had a higher salary, I would shop here. I love this store, however the only reason I come here is if I am looking for something you can't get at a large grocery chain like a Fry's Marketplace. + +They have a great wine selection, fine imported cheeses and the pastry counter makes your mouth water. When they are having a sale on steak I always buy it here.",review,gjigz7a2hA5_XJeIxiwzTQ,0,2,0 +UCjtaUCtJPbTUouHtQURvQ,2011-03-04,kU396jnL_0P7bT9vxIjU3A,3,"I created a monster when I brought my family to Chipotle for the first time many years ago. I am constantly taking one for ""the team"" when I am dragged here by my wife and one of my sons. + +I usually get the carnitas tacos with the salsa that has the little tomatoes, onions and cilantro. I even pony up an extra $1.80 for the guacamole. I just wish there was the option of adding tomatoes to your taco without the onions and cilantro. How can you eat a taco without tomatoes and guacamole?",review,NvDR3SPVPXrDB_dbKuGoWA,0,0,1 +UexMw8s7B1J-RtFOQtCCsQ,2010-11-29,QjsNRYFSkHnrdcXaE3pjeQ,3,"After a movie at AMC, my mom, dad, aunt & I decided to have an early dinner here. I have been here a few times in the past but it's been a good 3-4 years since my last visit. I forgot that they have paper on the table so you can doodle on it. That's always fun. Our server was Dan & he was really friendly. + +For starters we ordered the calamari, by we I mean my mom because she orders calamari whenever we go out. It was good & so was the dipping sauce. Their rosemary bread is tasty too, especially with a lil olive oil. My dad ordered red wine (not sure which 1) & I ordered the ultimate leaning bellini. Dad enjoyed his wine, had 3 glasses & I loved my cocktail, so yummy! For our entrees: my aunt-shrimp portifino, dad-aged beef tenderloin spiedini, mom-originally wanted lasagna but they were out for the next hour, ugh, so she settled for chicken scaloppine & myself-lobster ravioli. My aunt loved hers, dad liked his, mom didn't care for hers & kept eating off of our plates & I liked mine as well. + +Not sure how authentic their Italian is, but hey we overall enjoyed our dinner & would definitely return!",review,33vUIil_GCaT92aUaZhRXA,0,1,0 +a9Wk44qJLWoJQT-_H8MB-w,2008-03-22,OF4cqiyDIFR0HQ9W6JFHDA,4,"yes I agree! Fellow NY-er here says this restaurant has some of the best NY pizza in town! They also catered my brother's rehearsal dinner and all the food was great. ( sausage and peppers- yummy!) + +Update-6/25/11 - Walked in last night to catch Steve Benson spinning the CD's and drawing caricatures-hello? Not missing that gig. Me- ""Wow you remodeled the place"" LIz- the wonderful, superstar waitress- ""Yeah, nine years ago"" -hahahaahahah! PWEEWWT!!!! I guess I have been eating mostly take out or catering from them over the last few years. LOL! The place looks beautiful and the food is outstanding. The owner is from Smithtown, NY and I love her and this place. Manga! + +PS- Hello did I mention Steve Benson was there?- Again did I mention Steve Benson does first Friday's there? You can get a caricature done by none other than Steve Benson. Oops, I'm sorry did I mention Steve Benson is there once a month on Fridays Dj'-ing and drawing -(D and D-lol) Being politically motivated/involved and an executive member of AEA I was in heaven! I love my teacher caricature! Check it out. Fun times!",review,tBvrnSCLSpUdCDm5w5GPkg,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2012-04-18,q2_Zxpd7g8Hv10E3j9Os2Q,5,"Lolo's is one of my favorite places to eat in the valley. Their dining room is very small and sometimes there's a long wait at the door but their staff is always super friendly and there for you if you need anything. + +Things I've tried there: + +LoLo's special which is 3 piece of chicken with 2 waffles, Stupid fries, side of potatoes smothered, Chyna's honey hots (which are their hotwings), Ivan's chorizo and eggs, and their banana cream pudding. + +Their chicken is perfectly cooked. Nice, crunchy, juicy, and very flavorful. Their waffles are fantastic as well, but my all time favorite has got to be their Stupid Fries. It's a basket of freshly cooked french fries smothered in gravy with bits of bell peppers, onions, and chunks of their fried chicken. I have no idea how they do it but even though their fries are smothered, it stays extra crispy under all that sauce. That's what makes it so darn delicious. It's definitely a meal in itself. Their banana cream pudding is so large you guys can share it. Banana cream anything is one of my favorites so of course I would say that it was amazing!! + +Their koolaide are awesome as well. You can't come here and not have their koolaide. I love their blue but I sometime switch it up to red. My fiance and I have tried their Scottsdale location as well but I feel that the cook at the Phoenix location (which is the original) has got it down packed. My food always arrive and taste just as good as the last time as to their Scottsdale location, the food doesn't taste the same to me. Maybe I'm just trippin' but that's how I feel. + +Overall, this place is pretty awesome. I can't wait for them to finish their expansion.",review,C8MhrBVAHN_zeQpZLmgBag,0,1,0 +y_GScq9tMmspo0UA4RPjPA,2011-12-01,Tpe6SQ8KxpwL5wjAQJ0QQA,4,"The rumors are true, this place was an awesome continental breakfast. It's not the usual Costco Danish + some small cereal boxes. They had 4 hot buffet trays with eggs, sausages, potatoes, several coffee flavors and a waffle maker with all the condiments and more! + +The service was quite good and the rooms were clean and not cheap looking. My family booked it the night before and we got a surprisingly fair price. Its right next to the Glendale Stadium stores, so be wary when the Cardinals are playing at home. The location is ideal for Glendale and downtown trips. + +Stop by for an superb breakfast on a budget to start a fun day in Phoenix.",review,k5Qp3va9jlWVOuXY_pJDLQ,1,1,1 +CKjcewWeWvdJ7TzOQbZOIw,2012-04-08,c_PmezFGd_VxXwM6978q4g,5,"That's Amore is awesome! I'm glad to see that a nice, clean and friendly local place is being supported and recognized. It deserves the five star ratings- the gelato tastes fresh and you really experience all of the flavor. It's a nice place to ride your bike to and get a refreshing treat when it gets hot.",review,pMM6od8ZfgtyRfvEkOfgNQ,0,0,0 +l6EcX0blOzMqHWSdTHXLLg,2012-04-21,niOH6LV3MNRAnr-mJqLldw,2,"Not impressed. Tried them for the first time ordering takeout. Quick delivery, but the pizza and garlic knots were not cooked completely. Raw dough was not very appetizing. I called the manager to let them know, he offered to give me credit, but a better solution would have been to cook another pizza and deliver it again. Not sure if we'll order from them again.",review,SrbrETd68iNaYscH6jjgRg,0,1,0 +1F-pelV0fTduYV_vCrvjLA,2012-01-02,lWYFNLeYniWi9XxrBVPTjg,5,"When I met some friends for dinner at this restaurant at the end of October, I liked it so much that I made a mental note to write something later. I've just signed onto Yelp, and this is my first review. + +Our group of friends hadn't seen each other for a while. Busy catching up, we didn't open our menus for quite a while. I was impressed that our waitress (her name might be Mel) kept coming back in the nicest way to check on us, but didn't interrupt our conversation. She kept letting us know that she was ready when we were. + +When we were finally ready to order, she asked: ""Separate checks?"" Terrific. That was exactly what we needed. + +I hadn't expected to like the food, because I had heard and read that it was all the high-calorie ""comfort"" variety. It was a nice surprise that I was able to get low-calorie substitutions for the sides that went with my entree. + +Overall, it was a very nice experience.",review,ODyaekriMPJ4Pk8TcX5g2g,0,0,0 +YK-QsFBiLRy-dt2o-x_SRw,2011-02-21,QnJkfL8GchAapP0Uv-0Gpg,3,"Although they didn't have what I was looking for, the help was friendly and the store was very nicely kept. And they had a decent selection of course everything is a dollar. So I said "" you guys are okay in my book (A-OK) one of the good ones"" so I won't rule them out when I'm looking for dollar deals.",review,xopO03gWwnEe0JNkHBV8Kw,1,1,1 +yA9gOueRPoQ4-Y8Xdu8k3Q,2011-11-28,tsjCK9HICs11H11L-tLqVg,3,No bad for a chain.,review,mm1-8hxSTbQH9iUAIkML4w,0,1,0 +vUmCtldBjn_AuHW4tg2LZQ,2010-12-16,225481-Ln-fp8XpQ4Rrbmg,3,"It is a total dive bar...If you need a drink go get one. There are pool tables, shuffle board, video game or two, and a jukebox. The bartenders know their stuff. Enough said!",review,K6MrbZeqKG35ZiucFfucvw,1,0,0 +uVbt9dOe6qJgBBI4_XsXRA,2012-06-18,_8ZzhuKAe4_qS8VbrfZYXg,5,"Great food and service. It will only be for special occasion for us because its pricey, but it is worth it. They made us feel special.",review,fMBKxKHsZ2Vmw04Np8GEPQ,0,1,0 +LfKPiwth-lGmCKTxlDoV9g,2011-09-01,aCwCu9dHcYDjnuddrIRTbw,4,"Fantabulous! That's the best way I can describe the food here. + +I really wanted to get a photo of my dish, because it was a work of art, despite just being pasta et al piled onto a plate. Unfortunately, between my hunger and the amazing aroma wafting off the plate, the camera never made it out. This dish, by the way, was the strozzapreti. I could go on about how wonderful it was, but I'll spare the reader. Oh, there were also the Zucca chips. I nearly bit the waiter's hand off when he tried to remove the scraps. + +In truth, I would love to give this place 5 stars. The food, without a doubt, warrants that rating. However, the place was pretentious to the point that it was palpable. The acoustics of the restaurant made for a very loud experience. Oh and the server was actually a bit too attentive. She was great, very nice, on top of everything... but just a little too much. + +Overall I'd like to go again and try out some more of what they have to offer! (And of course, have more zucca chips...)",review,sQwgFhirdCt6h_g1rbjHHA,0,2,0 +O_ZNZDr6c5CsK6GgsKdDeQ,2011-12-19,ZgvLkQDSQCmM8rw5qbbfYw,4,"Had a great time staying here for a few days. Golf course was amazing (payed twilight for $75 on the desert course starting at 1pm). Was able to do a nice long 3 hour hike Camelback mountain. + +Service is excellent here and accomodations are lovely. 24 hour pools and hot tubs are nice. As are the fire pits... But nothing is cheap here for sure! $22-27 scotches by the firepits. $10 bagel sandwiches at the ice cream parlor by the lobby. Don't come here if you don't like to spend money! Also, i would avoid eating the meals here. Food is not the best and it costs an arm and a leg. Would love to come back for some more golf and hiking. + +You def. get more perks staying at Canyon Suites (free wifi, free access to business center, nicer and more private pool and hot tub area, better free wine tasting, and nice amenities like free cider, arnold palmer, fruit, and cookies throughout the day.",review,Hfhu0ZYnoMOVa9WWr6y3Iw,1,0,0 +DRuE7KNz8vGR1_X1h9fiSA,2010-02-14,nQR1nzL_kjk5wrREOC_X4w,3,"I like frozen stuff. Ice cream, frozen bananas, mountaintop snow, icebergs, glaciers, frozen caveman lawyers - all good. + +A friend introduced me to Golden Spoon this afternoon. What a great treat! They have convenient little portions for the sensible and great big portions for the more gluttonous. It tastes great, costs little, and really hits the spot.",review,doMDzniAOl1AaS34G63daA,0,0,1 +hGQsnkndreW7b26XC2HVRA,2010-10-31,-8UWqon-jBdys6wMRsh8vA,4,"In my opinion, Zipps is the king of the local sports bars. They've got decent bar food, great beer specials on Sundays, and I've always had attentive, friendly service. What more do you want?",review,3TGup17SCV6uHsifmTKirg,0,1,0 +NN2qs5B713vM6BDcMyrg4A,2012-08-28,IuO1HnfccQDzJ7upwOaE5g,5,Friendly group. Great specials....Try THE BASIC breakfast. It's more than enough.,review,vynHUkNRnqlWyuaCM9NZcQ,0,1,0 +8dEJ_o0UgGrNX1ejHcuZjA,2008-05-27,2d0Cyzu3Ol36mgNXQGyTKw,2,"Not bad food, combined with so so service. I tried the firebird chicken pasta and i have had better at chilies. I also don't drink soda so i ordered a lemonaid and since it was made at the bar (non-alcoholic) they were 4 bucks each. it sounds like im cheap but 4 dollars for some sugar, water, and lemon? then 4 dollars for a second one? ok. the place was nice and huge on the inside, if i was taking a client out i would go there for the appearance but for my son, wife, and myself i think next time ill pass.",review,nIQV_n9EVzOO6yd2vqrqvg,1,1,0 +dC6rDLGRoch_DOZk5kLkWw,2011-07-23,fdvuKm4JIKrcn5nWxqpX1A,4,"Great all natural selection, if you are looking for some fruit or veggie that is hard to find, try here, they will probably have it. I also love that they have organic roasted chickens (yummy). The stores often have wine tastings and demos going on, check their website for listings of events.",review,o2J22OK7xXL-sDPzANxy5g,0,0,0 +oQ5jjVF-LtRnGNC5SGZQ9g,2011-06-02,ag_CtK-W76RfwV7bVVFo-A,3,"with airlines, always hit or miss. delta by far my worst experience on one flight, excellent on the next. american airlines....for our most recent vacation, just run of the mill. + +we were boarded quickly and efficiently. in the turks and caicos, our flight was cancelled due to a mechanical issue, but then we got to spend an extra night at the Beaches resort (free food and alcohol anyone). although it did take them 5 hours in the crappy providenciales airport to let us know the flight was cancelled, but 30 minutes later, i was happy as a pig in slop with 2 mixed drinks in my hand and 3rd on the way, with 4 or 5 more to go. + +airlines...unless you're in first class, you're nobody.",review,ST8Yzlk2MqKlcaLqL2djBg,0,2,1 +7Jmri1RCl9Ksmpi5EoIOZQ,2007-03-08,dUQ1uMNmLt2vwpx8gLWWcw,3,"The food is good, but I think the prices are too high for what you get. Considering there are plenty of other places to go for good subs, salads and fruit platters that would be much cheaper, it's hard to choose Duck and Decanter over them. + +However, I will go here when I don't have to pay. Why not, right?",review,0CMz8YaO3f8xu4KqQgKb9Q,0,0,0 +UiHx6YjnD9swZrUreuCu5w,2010-12-09,5AOvCoxBZSs4DK0YV7LfVg,5,I'm very happy that I called Enterprise Pools. They have friendly service and worked with my schedule when I asked for an estimate. Mike was knowledgeable and quickly determined what the problem was and even told me how I could fix it. He offered service at a reasonable price and never tried to sell me something for the sake of sales. It was definitely a relief to find an honest business man after dealing with sub par service from Leslie's for such a long time!,review,uDLMclVv5a7MKT62I5ow8A,0,0,0 +6Tt0mGKbMoAz1GsjkVhbMQ,2008-06-03,dmOrlvoG6VG1zWsYSIwaMw,3,"the food is decent and fairly cheap. The only complaints I have about it is the place is pretty small and can get crowded, they don't serve liquor (eh, but there is a liquor store next door, so I can eat and then get a beer, but sometimes it's nice to have a margarita with your burro) and not always, but sometimes one particular lady that works there can be kind of rude and can mess up your order. +Though I do enjoy their food and it's within walking distance of my residence.",review,HP_xZYNC5XK-VyNrnHbtRQ,0,1,0 +a8yzGF79KcfyRye2R6wt3Q,2012-03-05,Zb6qK9ORkoIJslTVC1kEVQ,1,"I really wanted to like this place. For starters, I paid cash for my take out. I was owed back five dollars and was told "" we don't have enough change"". So I had to settle for $2.50. What kind of restaurant doesn't have proper change? Especially on a Saturday night. + The food: Chicken lettuce wraps had a strange fishy taste. Gave up on them after a few bites. Vegetable chow mein: In my opinion, a broun sauce is thick and flavorful. This one was very liquidy and flavorless. Dumplings were edible at best. + Do yourself a favor and stick with China Chili.",review,cAmALWTTej6W5Rr5xcg4DQ,0,2,0 +XHr5mXFgobOHoxbPJxmYdg,2010-10-04,KETr5UiBNvFX9xSxX5aHqw,5,I read about Scramble on line so I thought I would go there for brunch and I loved it!! The Santa Fe eggs Benedict are amazing! The staff is friendly and the ambiance is incredible. I would highly recommend this place to anyone!!!,review,XrD_RUiFeKsQ63WL3l_crQ,1,2,0 +wH9WtaTlrRawH_IpK90RPg,2012-07-26,QPQrw4Z3RuD36yFMibywzw,4,"I almost don't even want to write a review for this place. It's so near and dear to my heart and I basically live here that I just don't know how to NOT write a novel of a review for this place. So I'll attempt to bullet point my feelings on the joint: + +A. Friday Happy Hour - need I say more? Pretty sure all the homies would agree that we've spent thousands of dollars here over the years. You're welcome Lodge. +B. Cheese Curds - FRIED cheese balls and ranch. nuff said. +C. Best server ever, my homeboy Michael (you guys need to give him a raise. I haven't seen him around much lately and I'm pretty sure that's why I've been at Kelly's more recently) +D. Black-outs +D+. I have a scar on my left knee where I ate shit playing cornhole. How do you eat shit playing cornhole? No clue. Probably because of the above point listed above. +E. Lodge stimulus package - $6 for a can of PBR, a shot of nasty ass whisky, and a cigarette. BEST DEAL IN TOWN. Pretty sure the ex got nice and hammered a few times off this lil package - great deal ladies. Get your man sloshed and then take advantage of him. Always a good idea. + +The only reason why there's not 5 stars is sometimes when you sit on the patio, it takes about a year for a server to come around. Best bet it to hunt one of them down and start a tab that way. + +Oh The Lodge. Such great memories here...and most of them are just hazy bits and pieces.",review,Q4c-HD4iycZGrAnNK6d0tw,0,0,0 +VmRmj-IspfzXZdVYCaOOMA,2011-10-20,ZU5v2t_hwBktzOI_A-nDVA,4,"Great hotel- though it's more of a condo. Got a room for my mom this past weekend and she liked it so much she didn't want to leave the resort. Our room was very large. Had s dining room, living room, fully stocked kitchen, 2 patios, and a large bedroom and bathroom. There's like 3 or 4 pools in the resort, a nice restaurant and bar with live music. It's Close to Desert Ridge, and the Quarter so good location for out of own visitors. Got an amazing price through hotwire. Service was also outstanding. Nice job Xona!",review,lmiDCrmas8TxRsbIGZX9Pg,2,2,1 +yc5AH9H71xJidA_J2mChLA,2011-07-03,TD0AUwaxILhgrK37MduxQg,2,"We planned a happy hour here this past Fri night. I had heard good things so I was really looking forward to some fun with good friends and good beer. Unfortunately, I was drastically disappointed. The service was absolutely terrible. +The question of ""What do you have on tap?"" should not be a difficult one to answer. Our server didnt feel like answering and instead pointed to the menus with attitude as if we were making her night miserable. +Strike One. + +Our group quickly turned from 4 to 8. When we turned to our server to assist us in relocating to a larger table, she told us we could look around if we wanted to, but she didnt think it was possible to accomodate a party of 8. We asked about the upstairs and she told us there was a private party and no room. A friend of mine went up anyways, to see a perfectly open table with 8 lovely chairs. He asked the private party, which was paying the check and getting ready to leave, if they minded we sit at the other table. Of course, they didnt care at all and we moved ourselves. +Strike Two. + +Despite the bad attitude and completely unaccomodating service, we managed to rack up quite a bill between all of us. I waited tables for four years and consider it a given with such a large party and hefty bill to offer separate checks. Before we could even ask, the SINGLE check was dropped with 18% Gratuity added to it. +Stike Three. + +The food was average at best. I've had better Potato Skins at TGI Fridays. Its a shame, because this place is a $5 cab ride from my home and I really wanted to like it. + +I will make the drive to Rula Bula over this place any day.",review,9J2qULE0Fn56Wy1yK--frA,0,3,0 +LoFX3XAun814ZHwfKj7xYg,2011-08-25,P5ohmZhj5qvNM284nLndOw,4,"If you're looking for a board game, card game or, well, ANY game you can't find at GameStop, try here! Their selection is huge, from games to figurines to key chains and novelty candy. Better yet, they're friendly and really seem to know what they're talking about. + +They also offer in-store tournaments and competitions. So much fun!",review,turPLVMfH1YH-2kMtM9LLw,0,0,0 +P5uC-zfGG6yqoQDUyqyAvg,2011-12-28,T5DdmVBSCqenlU2i85B8UA,3,"I use to LOVE Kazimierz so I am trying to be fair in giving it 3 stars. Most of my experiences have been 4 stars but the last two visits here have been a 1 or 2 star so... + +Kazimierz is a hidden, fantastic wine bar in Scottsdale, which use to be very intimate and was a great spot to cozy up to a date. Lately though they have been packing people in to this awesome bar which has so much potential. It's elbow to elbow now, with pretty bad service but still a great wine selection. + +I'll still come here whenever I'm visiting the area because I have a soft spot for it, and I am hoping it returns back to the awesome, secret cozy wine get away it use to be, and I know in the area, there isn't really any other spot, no matter how bad the service, that compares to it.",review,JF05ffi0qdheB9Ti1kACOg,0,0,0 +PwtYeGu-19v9bU4nbP9UbA,2011-12-05,8yfOlQGxQlCgQL9TnnzQkw,5,Unfortunately Out of Business.,review,0fOPM1H03gF5EJooYvkL1Q,0,2,0 +vIDQO_9Ytf10vEndDOih8Q,2009-11-29,dxXCzzobAXTS3XAazirJcQ,2,"had the bulkogi mini plate. very cheap at $5, but it's not really bulkogi - more like a thin steak with very sweet barbecue sauce - and the rice was too sticky. the lone bright spot of the meal was probably the potato-mac salad.",review,LJPvRgTZWHlwpaYBauOOkw,0,0,0 +rua7dvP6-SUXL4N8RTY--A,2010-08-24,8AK1DvZXMz9ZyxKnJNcRFQ,3,"The coffee at this location is awful- please go get lessons from the lady at the Thunderbird and 40th street location. + +However, the primary morning guy, Shawn, is awesome. He is friendly and chipper, but not so much so that he's annoying as your first human contact of the day. He is generous with the toppings and speedy.",review,N-D-d1Z4UybdlkK1HxlNPA,0,2,1 +gc4Rd41QgWQia_J6gWpTtA,2011-05-15,-p-8BsPj43Z3MpCu-fZazA,1,"This place has NO clue when it comes to pricing men's items, and I would not recommend them at all. I consigned a leather briefcase worth close to $600, and they priced it for $90, giving me a whopping take-home of $40. I understand the need to move merchandise quickly (and naturally, this sold in a matter of days), but cannot fathom why they would not attempt to get more money for the item. I can only assume they did not do their research before setting the price. Consigner beware!",review,QdJW9eSWxlmydFVBS9ibZQ,1,2,0 +YkFBelUWinftlweJzuiIAw,2012-04-22,UBbKOItU5xQPv3GCR1om1g,5,"Tried a little if everything. The bars are worth the drive across town unbelievably good. The bars have a moist short bread crust, it is absolutely addictive. The strawberry cupcake was perfection. Cookies were very good but the bars and cup cakes stole the show. Thank heavens it is not closer to home :)",review,rq46hVxWltv4OmgWN4_2hg,1,0,0 +zOCdVUKUN3b-obT67Qjyww,2012-09-03,X4cEQgYfVUF96fheEgzSDQ,5,"This place makes me want to learn German every time i go. + +I would get my Polka clothes out any day of the week. + +Great food, great prices, great atmosphere. + +The fall months are great to sit outside and enjoy the weather to a Brat sampler. LOVE IT!",review,N4h_3ZR-7slX_BeaokL7kg,0,1,0 +9CqxDNPWlkJW1ZCM8Gu_nA,2011-10-12,3DAW1fjSnMCU_srXyeYcXQ,5,"I love this place!!! OK. where do I start.. Great place to stop in for a quick lunch. AMAZING outside grill, everything is good. Best cheeseburger I've ever had. I don't even like Salmon and theirs is good. Good salad bar and salads ( pasta, tuna etc..) The pizza and sushi.. again amazing!! And........ they have about 10 different iced teas to choose from. Also, they have a great breakfast. Omelet station and all. I suggest the chorizo and egg burritos. GREAT outside patio",review,_xt9upq-UIMNFFFbklranw,0,0,0 +0NKRV1kMtzHNpNbl8TYPDA,2011-08-01,mvOvePiaWhfJINDspYoHmA,1,"Currently having a liquidation sale, but it's not really worth the trip. I found that most books were cheaper at Amazon then the sale price. A few were even cheaper at Barnes and Noble then the liquidation sale price! Which just made me say to myself well that's probably why you're going out of business try some competitive pricing! The place is an absolute disaster they've moved a lot so the sales staff doesn't even know where everything is. Also the place just smells dirty and old, it's very unwelcoming. It's really no surprise to me they couldn't get customers before.",review,PuTmcfPDLNUAKo68LmdZOA,0,0,0 +WJ5mq4EiWYAA4Vif0xDfdg,2009-08-30,KSCvWJ6HWuOkxubMh4G1aw,4,"Great city atmosphere with lots of bright open windows looking out at Central Avenue. Nice place to relax as the world rushes by outside. Comfortable seating areas and great beverage assortment. Danielle Librera's baked goods are the stars here as far as i'm concerned, i went in at 7 am one morning and was delighted to see the entire front counter filled with her creations (scones, muffins, fruit tarts, quiche, cookies and still warm from the oven coffeecake). It was like a bakery buffet, danielle is right there baking away behind a corner of the counter on most mornings. I often go to Lola in the evenings (they close at 7 most nights, so sad) and by that time of day there are only a few cookies left, so obviously the regulars are tuned into the best time of day to get the baked goodies. A guy in front of me on my 7 am visit scooped up half a warm coffeecake to deliver home to some lucky partner/roommate. + +The morning we visited, the 7-8 am hour was peaceful and calm, a great waking up time. It was nice to see an assortment of dads and their young 5-7 year old sons come thru the door and spend time hanging out together at the start of the day. At 8 am the business commuter crowd started arriving in full force and the place got a whole lot more buzz from all of the conversations going on. + +Great location approx 1/2 block south of the Central/Camelback light rail stop. Definitely worth a visit!",review,0Nzq2vv8FoGEGosfZDP4Vg,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2010-12-25,U93-ihU3kKeQzJLy75TpGQ,5,"Unfortunately I don't get enough chances to come here but, I'd say I have been here about a dozen times and each time I have never been let down. The beer is great, the food is great, especially their french fries and the crowd is OK. Yes it is in Tempe and you're stuck with all the ASU kids but I like to come here in the summer time or when ASU is on break because it is the locals that are here. It is not the nicest brewery that I have ever been to, but what they lack in aesthetics they make up for in beer. A must go to place if you're in the Tempe area!",review,yp90PduP1gD7kgCLWuQg4w,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2011-03-09,DYZOrnz2jIWISdM13TMRfg,5,"Love this place. Bring some patience because the wait is sometimes long and there is little seating. The outside patio is excellent in the fall and early spring! + +But I gave it 5 stars for a reason - and that is because the awesomeness of the food absolutely outweighs the wait time. I acknowledge that this is a personal choice - but if you go and try any of the sandwiches, you'll likely agree.",review,pKk6NoBezFylhIz9JM0zdA,0,0,0 +7O2an_4z_AHg3oczNf7oig,2011-12-01,Nkqaix6Rw9xQN6EBqvsfaA,5,"Absolutely incredible. It appears the young lad who works here seems to be the go-to front-desk man everyday for this shop. He was very helpful and told me exactly what my shoes needed and didn't suggest pricier repair options that my shoes really weren't in need of! I brought in two pairs of dress shoes; one of which I had the heels replaced ($22, free shining included) and another just for shining ($8) and they made them look near-brand new again! I will certainly be bringing all of my shoes in for repairs/cleaning within the near future to this fantastic little shop! + + +Keep singing, + +-Jerron",review,zLZZpwBNB8hWson5dKXEtg,0,1,0 +aRkYtXfmEKYG-eTDf_qUsw,2007-09-22,Xh30S1PXth2UZjiNOTwQ3g,5,"I'm a regular at Lux. Haven't reviewed it out of sheer laziness. And it's usually laziness that brings me here: when I have a major thingie to get done by Day B but I spent all of Day A at the office surfing the Internet instead of working on it, I pay the price with an all-nighter, which I like to start at Lux. (Damn them for not being open past 10). This is usually the story when anyone spots me here. + +I'll grab a small table for myself, plug in my laptop (free wifi), spread out my papers everywhere, then go up to the counter for a large and extremely delicious Velvet Latte. When it's done right, there's a perfect swirl of white cream that forms the shape of a leaf on the surface of the caramel-colored coffee. Mmm. + +Since I am ADD I take frequent breaks of course. Like every 3 minutes. Whenever I hear a strange piece of music I really like that I've never heard before (this happens often), I strain to catch part of the lyrics, stick it into Google, find the name of the band, stick it into iTunes and download it. I'm not making that up. Like half my music collection was created through this method. The last few bands I downloaded tracks from are... let me open up my iTunes... Kasabian, Feist, and the Detroit Cobras. I'm not even remotely hip enough to have heard of those before on my own.",review,17PPxx8RxjOUD_nQZ1aHEw,6,3,9 +7U3DYmZLYN-pbQi1GIJXUA,2009-08-07,B_3FCW7AKYciwHh78WAXWQ,3,"Sam's Club is having a ground beef recall. Call the store for details. I am just all about the FYI today! ;-) + +They said they sent paper and electronic mailers - but I did not get one. I just got lucky and happen to be returning the brown ground meat that I just bought. + +I am rarely able to find fresh ground meat or chicken here, but their roasts have always been fresh and very reasonable. I can get double the size here for the price I would pay (for a smaller one) at Fry's. + +And, if it is not quality meat, just return it for a 200% refund = one of the only reasons that I will try to get meat here. Although, for the hassle, it is really not worth it. + +Also, if for any reason you don't like the club itself, they will refund your membership. Look it up; it's on their website. + + +They are trying - but be wary of the ground meat and chicken there. It is often not very fresh. But.... I can sometime find fresh ORGANIC produce here - nothing much really - last time it was spinach. It was really cheap however, and getting organics at wholesale prices is rare.",review,nZ9XFVETN4hxdK4qPb-T3Q,3,5,4 +n_wZriiakBT7sVn87dpcEA,2011-07-08,FSPxRJlPTzNOocARaC8QdQ,1,"I give this place NO stars. They have karaoke which would be good except for the co-host is NASTY! The rest of the bar is typical with darts, pool and poker. The food SUCKS! don't bother to go here unless you like being whined at by a wussy faggot at night long. I know that is harsh but the co-host really is nasty.",review,-uPDXzRPWVbSk1eyXup75Q,0,1,2 +xMK01ZbVUYLLoyqoeWAIVw,2011-07-13,YZrcLUxlEBeuU5Mb6ofV8w,4,"had a wonderful experience here from first drink to last bite. Atmosphere has a nice chic upscale feel to it and the lighting is nice and cozy. We waited in the nice bar while we waited for our table. The orange martini they have is just heaven. After a few of those down the hatch i tried a ""keg"" size glass of wine and was great as well. + +This is def a steak joint, so about 90% is all about steaks but there are some salads, fish and crab options. (they are also having a lobster special right now). Lover had the prime rib and crab combo and loved it( they are apparently really known for their prime rib) i went with the crab off course and did not disappoint. + +The staff was very nice and very patient and i noticed that just about everyone that works here is good looking also. just a pretty place filled with pretty people and good food!",review,AeucYo8J-rZjcq09Wuqsjw,2,0,0 +8t80-omyflkywRfu9LPh6g,2011-04-19,mEFozJbPZHUm6YQo-uGG2g,5,"This is my favorite seafood place in Phoenix!!!! I have loved this place since it opened when I worked at Nordstrom years ago! They have a great happy hour. There are not many places that you can get a $5 cosmo, appletini, and lemon drop martinis...not many!! They are not Grey Goose martini but they are delicious all the same! They offer greta choices from their menu on their happy hour menu as well...of course they have a fabulous happy hour its because its the same owner as Roaring Fork and their happy hour is to die for... +Anyways...their menu... +The potstickers are just something different that you would not expect...and they are delicious! I love the crab cake too! A guilty pleasure is the bacon wrapped shrimp with goat cheese and the onion rings!! OMG!! I cannot get enough of the lobster tacos too!! I could just have the appetizers for dinner! I do often! Also, I love the Fuji Apple Salad because the candied walnuts just make you want more and more and more...the dressing just tops it all off... +Now the entrees that I love are the Crab stuffed shrimp with the vinaigrette...It is FABULOUS!! Of course...if you love lobster tail this is the place to get it! You get two of them! Now make sure that it is the right season because they are not cheap, but they are so worth it! +The sides to get are the twice baked potatoes, truffled mac and cheese, and sauteed spinach! They are fantastic!",review,X_kPh3nt0AJPNPHye2rTlA,2,3,0 +uR2aNW75R4oYs9w7aw-_kQ,2012-07-02,Rb3i9xejEgBT77nVutnqoA,5,I am for out of town and came here to celebrate my Birthday and it was a blast. The food was delicious and our Tepenyaki chef Robert was hilarious and very on point. This place is definitely a must when going to Scottsdale. I do go to Arizona a lot and will definitely be back soon.,review,3mestfetw_JLoxjm-kApqQ,0,1,0 +6qDTvUzoy-O-7TWQjwzqcQ,2012-08-29,mbBSGmsZ4SSca1fQwPqYtw,5,"I had several mothers tell me about Eduprize and how great it was. I was a little nervous when I was told there is a waiting list and you have to agree to put time in the classroom. Now that I am in the classroom volunteering, I realize why it is so great. I can see first hand why my daughter struggles in some areas and does great in others. I can see how the others are struggling too and I can be apart of helping them, even if it is just for a day. This school's requirement to have parents volunteer is something ALL SCHOOLS SHOULD DO!",review,OFXscP6sh-6YlDvFH2DgJA,0,1,0 +maB4VHseFUY2TmPtAQnB9Q,2012-02-19,Ex_aRk89hnrPF5lsMt-SiA,3,"This is your run-of-the-mill sports bar that caters to the not-so-blue-collar 30something crowd of Chandler. The ambiance is nice, darker, big screen TVs everywhere... the waitresses are attractive (a staple at these types of places) and they are friendly and attentive... ours was on this very day. + +It's Beer Week in AZ this week and they had just hosted a SanTan event (pub crawl) today as part of Beer Week, so they were understandably out of SanTan Devil's Ale and the place was quite quiet when we arrived at 5pm. We got seated at the patio where the have a nice little Bocce ball area and it was nice to enjoy the great Phx February weather. + +Alright, so we ordered burgers as we were both in the mood for a sizable piece of beef, hopefully topped with bacon and other yummies. They did a pretty good job for being a sports bar, but not impressive. They claim their meat is fresh ground, though when that's the case, the patty has a different type of form and is less flat and compacted.. okay, maybe they grind it in the AM and then stockpile patties for the day.. that's fine. The bacon (I ordered the #9 All Star - cheddar, bacon, beef) was lame... thin, a bit stale-tasting, and not crispy. The cheese was fine. I did like that the meat was char-broiled and so it has a good taste to it. Also, the inside wasn't over cooked and the bread they served it on was kinda sweet and giant... tasty, actually. + +The sides were blaaaah.. cole slaw was really boring and had literally 3 ingredients (white cabbage, carrots, sugary mayo) something I would expect from Chili's or Denny's. + +Well, the burger hit the spot but the rest was plain and boring. The Stella was not as cold as I prefer. Our staff was very good. So far, an OK place to visit, but a 4 star place is somewhere I will likely go out of my way to visit.. this didn't make the cut.",review,A99dyhEqcd_yXKPfBWeZHA,2,3,1 +nMHhuYan8e3cONo3PornJA,2012-03-10,cN561PehOTfZnNc5Ksl4jQ,5,"I'm married to a Japanese and work for Japanese company. I've been to Japan I don't know how many times and have eaten well there. This is simply top class, I'd even say special. The style is a kind of fusion ranging from basically pure Japanese to Japanese with some very tasteful western inflections. I'm not in Phoenix often. But this will be on my list every time I go if I have anything to say about it.",review,Xafv2eDKqe_iSx3QhJv3KQ,0,1,2 +9pGs5hcA-13x5o97XcMt_g,2008-08-29,kAg3gEwre_q8KB4xJH4CRw,5,I love their menu! The garlic mashed potatoes-amazing! Steak-melts in your mouth! Service - great! Big fan of Applebee's!,review,C36PV6x0gNdSdy_rV32vbA,1,1,0 +Cp5_NSJFNgylD5SUdmT8nQ,2007-10-19,gsB9PLtJ2QFDKiuiBvKZUg,4,"There's something deliciously seventeen about drinking in ""The Alley."" Of course, real seventeen year olds can't get in. This place is legit, but the vibe is very Lloyd Dobler in a gas station parking lot asking a bunch of punk kids why he just can't win with women. (Don't worry Lloyd none of us really have that figured out and most of us who seem to be doing it successfully are really just faking it.) + +The crowd here varies but I have always felt welcome. Drinks are ok. Sometimes they're great but it depends on who's tending bar. The good thing is they're fairly cheap. As a music venue I give it high five. It's dirty and dark with a one foot high stage that's obviously meant for performance but not so far removed as to make you feel like you're not connected to what's going on. The sound is ok. It depends on the show really but I've always had a good time and that counts for a lot. + +I like the pictures on the ceiling. They're fun to try to decipher when you're setting yourself on spin cycle. The pool tables are usually full so I can't really vouch for them other than to say that they're popular. All in all, it's a decent place to pummel yourself in the face with your beverage of choice.",review,hvgYD6Pmyaa6hS39ymIQBQ,2,2,1 +HMUvbAHRnbAczNrYy8e5MA,2010-02-20,vJ6Y-zvhpYgQU_F5DxPbcA,5,"Yes, it is probably as good as it gets for a SANDWICH place. Very tasty. All 3 of us liked our different sandwiches. I also ordered pasta salad but it really was not any good, but it does not matter as i did not come there for a pasta salad. Real good besides that.",review,vWCksqJJfYjGGdD-yb9qGA,0,0,0 +GRFunGSUZxXqNCZJrN8Oow,2012-04-16,M-0GTZ6TtO5ejNiX44me2g,4,"Very fun atmosphere and really good tasting food. Portions were large but not overwhelming so. Banana walnut pancakes were fragrant, tasty, light, and just the right balance between salty and sweet. Eggs Benedict was also very very good. Definitely a place to frequent often as long as you don't mind a line, counter ordering, and finding a place to sit without a hostess.",review,j0Nw9lLD8c_jLcY6uSmN_w,0,0,0 +3398Ccw-mUHbzYcIToDi6g,2007-09-07,mQRd9mdpBCEjzIPe_c4k-w,5,"I am proud to say that I sent Kristin S. here for her awesome hair transformation (8 inches is a lot, girl!) I just had my second hair cut here today, and I was just as happy this time as I was the first time around. First of all, the service is top notch - they take care of you quickly, kindly and enthusiastically. They are not snobby, which is a welcome relief when living in Scottsdale. I have always felt welcome and comfortable here. + +Moreover, the prices are amazing! I have very easy and basic hair, and they charge me $45 for a hair cut - if you want to spend more, you certainly can, but I am fine with the ""stylist"" level (who charges $45). In Tampa I paid more like $65, but I much prefer Par Exsalonce. This place is a well oiled machine, and they know how to run a salon. They carry B&B products, which are fun every once in a while. + +I really love this place and will not look for another hair place in the Valley. This place knows how to treat customers, style hair and create a pleasant experience. The Market Street location is a bonus, too, because you can even do some damage shopping when you bounce out with your new 'do.",review,9FbgqZ5u9WTLAs28nNafIQ,0,0,0 +R8VwdLyvsp9iybNqRvm94g,2012-06-25,XuXVGu-vAt3SUcbYxiEWiA,3,"I still really love coming to LGO...especially to relax on their patio with some good food and good drink. I love that LGO sells Framboise and I love the hectic and busy atmosphere. + +HOWEVER, the time has come for me to drop a star. I am a regular fixture at LGO and lately have noticed that they seem to be running out of some of my favorite items on a regular basis. For example, the MJ Cookie...it is one of the few items that makes my mouth water at just the thought of it. It's like a brownie and cookie rolled into one. So heavenly. Unfortunately, LGO has been out of the MJ Cookie 4 out of my last 5 visits. And these visits are at all different times of the day/week. I know they get busy and I know a restaurant can run out, but it seems to happen so frequently and every time it's a big, BIG let down. And sadly, the cookie is not the only item that they run out of regularly. Lately, I've had a hard time finding the pre-made salads that I like too. + +My other issue just occurred and I cannot seem to pull myself out of the depression that it has caused. They no longer serve the green chile mac and cheese! Seriously. When I stopped in recently for lunch, I was so disappointed that this has been removed from the menu that I thought about walking out. I know that seems like a silly reaction to macaroni and cheese, but their green chile mac and cheese was by far one of the best items I found on their menu. + +Their sandwiches are tasty, but almost impossible to hold together. Their pizzas have great fresh ingredients, but always seem to be lacking something. And now this...no more mac and cheese. And they're always out of MJ cookies! It is a sad sad day at LGO. =(",review,TA6CcCUag4lftPJDuhhFuw,2,3,2 +d3MxUXS1b6U2P_gGuCO1-A,2010-12-20,mV5EJAOJENL7SBOkFm_HJg,3,"Sure the place has atmosphere and a good drink menu, but I prioritize the eats. + +We went on a Monday night for a friend's birthday with a semi-large group and they did a prixe-fix menu. I left hungry after paying more than the meal deserved. + +The bad: Shumai was just ok, duck mint salad had an unharmonious flavor and I refused to eat it, chicken with wasabi sauce was dried out, lychee wrapped bacon was soggy and a strange proportion, cream and goat cheese dessert with peach was not fun. + +The good: the Hong Kong rice noodles and fried tofu with pinapple sauce were the highlights and only things I would eat again. They were really tasty. But I won't be eating them again, because I don't plan to go back. + +I'm sure there's some gems here, as we found a few, but I need a better batting average and, oh, I dunno, to leave full with a few bucks left in my wallet?",review,-L0i4tIcOIbAq_gPvykkLA,0,0,0 +EeQlS9VLlfWT25-MeYsJTg,2011-05-15,eKgzpZGRMGVHVD1FdB18jw,4,"My family was on the west side of town yesterday and since we don't know that area quite as well we wanted to try a restaurant that had a track record, as we didn't want to take a chance on a local-owned shop. + +I certainly wasn't disappointed. The restaurant is clean, as were the restrooms, and I loved the island theme - it give the place a coastal feel, which is nice if you live in Arizona! + +I had some kind of combo burrito that was good sized and gulped down every bite. I was in the restroom when my wife ordered for me, so couldn't comment on the friendliness of the staff.",review,-wwNJ0zd82_q8Gh5XXqAEw,0,0,0 +R8VwdLyvsp9iybNqRvm94g,2010-05-18,kOwWyHcSZeq6ndRB1CGoiQ,5,"How could you not love this place? Not only is the food fantastic and consistent, it has a great atmosphere and an adorable ""grocery"" shop next door. It's a great place to people watch! (Don't forget to check out the wine section--not only is the wine random, it's affordable and a great conversation starter with all the cute names and labels) + +After moving here from San Diego, I've been so unimpressed by all the breakfast spots in Phoenix. This is the one place that I LOVE! I think it offers something for everyone, however my go to is the Venice Beach Burrito. It's such a casual spot--you order from the counter, find a table, and wait for them to call you to let you know your food is ready to be devoured. There's tables both inside and out, and you can peruse the store while your stomach rumbles! + + +The only thing I've ever been disappointed by is the sangria, but then again I'm not a huge fan of white sangria. I will not be ordering it again but I have girlfriends that love it. + +I had never been here for lunch until this past weekend--it was always my late morning brunch spot. Technically, I believe its a pizza place, but I've never had a pizza. Although, they look quite good! I ordered their tuna sandwich this past weekend, which came with a side of fruit and pickles. The bread was thin and grilled panini style, and the tuna salad definitely did not disappoint!",review,Q-kw41pmxwNCBQ63Y-FIpA,1,1,0 +wH9WtaTlrRawH_IpK90RPg,2011-02-07,3La41DKKqkiKi9D5AQc81A,1,"I will never go back to this establishment because all of the bouncers and wait staff are unfriendly, unprofessional and disrespectful.",review,P6EBeMvWH6R66FptYfxEvA,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-04-15,N7VgHM5HuwPS3aIOF4yuMA,4,"It's an airport, and what exactly does one look for/expect from such an establishment? Currently I want free wi-fi most. Free wi-fi at Sky Harbor... Check. Secondly, convenient economy parking is a must. Convenient economy parking at Sky Harbor... Check. Not to mention the shuttle drivers are always friendly and small talk-ready. + +The TSA folks here also seem to smile and playfully banter with travelers more readily than at other airports. Perhaps this is due in part to Sky Harbor's ""America's Friendliest Airport"" marketing ploy, but in any case it's certainly something to remark about. + +I doubt Phoenix will turn into any sort of true travel hub in the near future, but more non-stop international flights would certainly be welcomed. But until the demand is clearly defined we'll have to be content with a few flights to Europe, Canada, Mexico, and the lone wolf to Costa Rica. + +I am very excited to see the Sky Train completed and operational with Stage One scheduled to be up and running in 2013. This will allow connections from the light rail and offer a new mode of transportation from the east economy lot to terminal 4. + +I've seen previous reviews complaining about having to go back through security when changing terminals, which is actually the case in many airports throughout the world. The terminal is the secure area so whenever you leave it you naturally have to be screened again. There are a few exceptions, but the easiest way to circumvent this is to fly the same airline from point A all the way to point B. If you're connecting at Sky Harbor you should only be flying US Airways/United or Southwest so as to avoid a terminal change. If you're not flying these carriers then you're over-complicating things for yourself and you should look for different routing. + +The central location of Sky Harbor makes it extremely accessible for people living in most parts of the valley, which is a huge plus considering the location of other airports outside of their corresponding metropolitan areas. All in all, there's really nothing significant to complain about Sky Harbor. + +P.S. The Fox Sports Grill at Sky Harbor is a true embarrassment, not that one should expect a great deal from airport restaurants, but if Kraft Mac-N-Cheese (this is probably a poor example as KMNC provides a perfect vehicle for some truly delicious creations) is far superior to what you're serving, then you should just end it all. Fact.",review,WavzQE_0yoy05hF-637EoA,0,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2010-09-15,9gziD5EgGr_kaVpjaJSgCA,5,"I think my fellow Oreganymphos would agree; this is single handedly one of the greatest places on earth to gorge yourself with some of the most delicious pizza, pastas and desserts AZ has to offer. + +If you wanna take my word for it, dont even look at the menu and order my usual orgasmic order: + +Appetizer: Calimari +Dinner: Big Rig Pasta w/ Chicken +Dessert: White Chocolate Chip Macadamian Nut Pazookie + +FYI: Whenever your taste buds feel like going on a culinary roadtrip, make sure you hit up any of the various Oregano's locations located around the state; my personal favs are the Flagstaff and Tucson locations.",review,xd0fvWA4yAed6MclXzxBdA,0,0,0 +fON48rwmABedlUu0DWVEiA,2012-08-04,BKAV9e4amTl7t2kd5vENSg,4,"This by far has to be the best Filiberto's location. I have been to the Phoenix, Tempe, Chandler, Prescott, Mesa, Gilbert, Tucson and Casa Grande locations. + +-Clean salsa bar with chunky and smooth salsa options. +-Free chips, most places will charge you for a small order. +-Gold Peak green tea! +-Smoothies and juices +-Video games, tv's and free wifi +-Fruit filled churros + +The tortillas are fresh and the place was actually clean, shocking. For what it is, this is a good location to stop by at if you are in the mood for this type of mexican food.",review,7C-jyTrOX-iJ-MrSJuh-8A,1,2,0 +azBHKHqif0NXO3xcALo5VQ,2010-07-28,vOUAEFEgHsCrMoilDU5X7A,3,"I finally tried Spicy Pickle last week. I like the name and was intrigued about their menu. Paninis, soups, salads, pizzetas, nothing out of the ordinary. I had a half sandwich ( Sausalito Bandido?), half salad combo +( Spinach salad). Food was fresh and good. The sandwich could have stand a little more meat, it was truly flat. The salad was crisp and dressing was on the side, which I appreciated. +On my way out I got a chocolate chip cookie that was OK. I love cookies and they have to be pretty bad for me not to like them. This one, I kid you not, must have had maybe 3-4 chocolate chips? So if you're craving chocolate, this is not the cookie for you.",review,h9d3VW5RTJymoFoLnN60_w,0,3,0 +yFmBMNsuOIe2u5kh7NtA0g,2012-08-05,12WTzFGli-YX9zvoTXs0ow,3,"On an evening walk through Roosevelt row during the monthly First Friday event, I overheard what could only be Jazz funk pouring out from the door just up the way. I walked by and someone sitting out front invited us in for a listen to their free music event. Once inside, the wife and I were greeted by the snack bar ladies asking us if we would like one of their cookies, candies or sodas in the bottle; we got a diet coke for a $1. + +The Nash a decent sized venue with about 12 or so four seat tables to sit at, none of which are particularly better than another, with the tables in front being the only exception. The music was good, if you like Jazz music as I do, but I think the band playing this night put together an oddly slow paced set with more of a blues and 'experimental' Jazz than I would have liked to hear. From the amount of people walking out during their set, seemed like others also harbored the same opinion. I usually like my jazz with a little side of funk; a thick base line, Jazz guitar, and complimentary piano and horn of some type. We stuck around for about 5 songs and decided to move on. It was First Friday after all. + +This place could really use some Kool, and maybe even the Gang. I imagine the music is subjective and changes on an event by event basis. I feel they really could step up the quality of foods, snacks, and drinks. The venue seemed more like it catered towards a teenaged crowd, especially considering their food choices were chips, candies, etc, and no adult beverages in sight. Although I can't see many teenagers running out to listen to a night of Jazz, I could be wrong though. + +If I find that someone worth listening to is playing at The Nash, I will likely head out again; but I don't think I would plan on just dropping in randomly for an evening of Jazz. + +Happy Yelping Phoenix. I can't get enough of that funky stuff!",review,cRyNICH0mhjxagvSyVr60Q,10,10,7 +Nq7eB1wB2EArUICtiNePvQ,2012-08-31,pK6oTa9CMVEFd0qJ4foNYg,3,"I hate being disappointed by bars bragging about their ""huge"" number of taps... while I can't dispute that they have 52 beers on tap, I can tell you that very few of them are worth drinking.. and that the prices here are on the ok to high side... I would never come back if it's not happy hour or late night pricing. I asked general questions about not discounted pricing, nine dollars for a Manhattan made with Jack Daniels and beers ranging from five to seven dollars... if I'm paying seven bucks for a pint at a sports bar in Tempe it had better be something from Russian River or a Stone anniversary brew... and a nine dollar Manhattan seems out of place... this isn't Scottsdale or a hotel bar. + Well the good news, Thirsty Lion is quite lovely inside, plenty of seating and dim lights, really not a bad place to relax and mellow out. Plus, the food was great, everything we've had has been very tasty, now it's all been off of the happy hour menu, but that's the only time I'll probably be here, the scotch eggs are delicious and my main recommendation. I'm hoping that in time prices will drop a bit and more craft breweries will get represented, but aside from the nice interior and spot on happy hour menu, Thirsty Lion just doesn't stand out enough to steal me away from Boulders or Taste of Tops...",review,qa05pUVNapADHZXpHMPMeA,0,1,0 +I2tzm9Xex2Aa8wBuRsqskg,2008-10-31,3aJa3Pm7G9W3noE7tHHoIQ,5,"Best chocolate ever! I tried Leonidas for the first time in Europe and have been looking for it ever since in AZ. I'm so surprised they opened a store here, would recommend it in a heartbeat. Also, staff was very friendly, a great place to get gifts! I just got an assortment of chocolates and was very happy with my choices. The banana creme was surprisingly good and so was the champagne flavored...",review,HQsxUh2gNKVJpm3qMBIkMg,2,2,1 +UPm6y8qsD6l-cX_fxl0SPQ,2009-01-27,TULOIrshtok9WcZpnCvXXw,4,"we thtumbled into thiths playth a few monthths ago and it waths aMAYYYYZthing!!! totally gay but the decor waths awethsome and retro, like for therial. they had tonths of gaymths and it waths thso good! + +if you voted yeth on prop 8, you're stho thupid.",review,YxRKHhhuWxX96_quP9Tgyg,1,1,2 +asebFFgabg_lfoNpGJHZlQ,2010-08-05,aDzPkWD2l5g_OlrWxUb65g,2,"Best in Phoenix??? I hope not. Now, don't get me wrong. What I had was pretty good but that's about it,...""pretty good"". Here's what I tasted and thought: + +Pulled Pork : Tasty. Sauce was OK (not fab.), Meat was of good quality and was cooked appropriately. + +Pulled (sliced) Beef : Meh., Meat had been a good cut but was dried out and a bit tough, Again the sauce was just OK. + +Beef Ribs : Tasty , Large & Meaty, Sauce was again... OK. + +Mac. & Cheese : Most disappointing item of the meal!, Tasted like Kraft out 'o the box. + +Greens : This was the best part of my meal, Cooked appropriately and spiced very well. + +Banana Pudding - Ick!!, It was partially frozen and watery, The cookies were a soggy & watery mush. + +First refill on the sweet tea was .80 cents and then you have to buy a new cup if you want more!! What the.....?!?!?!? We're already paying a premium for everything and you're going to gouge us on drink refills?? + +Honestly..... there's absolutely no reason for me to go back. I don't know if this place USED to have outstanding Q, and is now just serving this mediocre stuff and rakin' in the dough, or what. + +Pretty disappointing and I wasn't even the one paying!!!",review,vYmM4KTsC8ZfQBg-j5MWkw,0,2,0 +6lcay-E_ssmzpGanKbColg,2011-10-12,09Pf-RkN8Xh0dc7vLly2pw,4,"There is nothing quite like Persian food; it is complex, delicious and sometimes like nothing you've ever tasted. Apart from dad's kitchen and sit-down places in Tempe and Scottsdale, there are limited places to find it in the Valley. Do yourself a favor and don't order a gyro; you can find one anywhere. Order one of the daily specials at their crazy cheap prices for Persian food and enjoy! I've had nearly all of them and they rock! These dishes take all day to make; believe me I know and you can taste why. And do not miss the saffron ice cream with rose water and pistachios.",review,cUxq5nIUp7S_t4Tlaz46YA,0,0,0 +oY8cUWaYUsGjkapcKADLRw,2010-12-18,K69kzo4APea9EPsHllby_w,4,"Yucca is a great neighborhood library, if I may say so. It's not huge, but you can place holds on anything from any Phoenix library, get on the internet, read the paper, and any number of other things.",review,1PWFPOmqvLx3sGKuuKQr9Q,0,0,0 +QQ-lSbz4ARm1MQA5z8-nAw,2008-06-13,xVt7R-T_317Xi8WUCbgUsQ,4,"Dear Weather & Coffee, + +I'm really sorry you had to close. We had a lot of good times together. Every time I came in, you always seemed really happy to see me... even though you knew me by the wrong name. + +I may be Kelly to everyone else, but I'll always be Aubrey to you.",review,rPGZttaVjRoVi3GYbs62cg,4,5,5 +corPOxxIBRJ7DSpryYvorw,2011-03-03,JCNfra6DrpT9-tAsyo2uXQ,5,"We have been here several times and each time has been excellent. Our first time was in Hawaii and we were happy to see one in phoenix. + Me and my Fiancee had a four course Valentine's day dinner here. Dinner was great. Food was timed right and our server was on top of it. Our server sent us a personal handwritten post card thanking us. Dinner came to be a little over $200 with drinks, so yes its pricey, but my fiancee and I loved it so it was worth it.",review,-kIvLyWpY17aRa0vPp-RmA,0,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2012-04-30,_yXQDvpgEdn6wheL09yfOA,3,"This place was just 'eh' to me! I was just whelmed, not over or under! The service at the bar leaves little to be desired! I am not sure what it is about Scottsdale restaurants thinking they have to be snobby to people. We ordered drinks from an un-friendly bartender and then waited another 20 minutes to even be acknowledged again! + +The food was ok! The bf had the berrimundi which he liked but wasn't wild about the side it came with. I had the meatloaf, which was good. The gravy and mashed potatoes had a great creamy flavor. My sister had the lamb burger with fries that were cold and not very tasteful. There is not much on the wine list either. + +I probably would not come back here because I dont think it was worth the hour wait for the crappy service at the bar. I would rather venture down the road to Olive and Ivy.",review,100Df1wcVrl9rJgB7EG6xw,1,3,1 +ML1RJdeZ7bbfMrHvJ7m99A,2012-10-29,4i4kjVnODPRRFacN5wNqHg,5,"Back when I lived in Phoenix this was one of the only places I bothered with eating at. Started by a Chicagoan who moved to Phoenix, they get deep dish right and make just about everything else in the style of delicious. I was in town last week to hike the Grand Canyon and stopped in. Man, I miss their food. Thank God I live in Chicago and can get something similar! Be warned though. Their food is BIG.",review,3iuZFgxUFKLxOplkDrFmyg,1,1,0 +FY_OXEVcewAQFZuu6fynLA,2012-09-04,_tKYcXeHxRCkKk-9WSxwSw,4,"Based off of these great reviews i decided to give Z's Greek Restaurant a try. From my experience I give this restaurant an overall four stars derived by their Greek styled atmosphere, great food selection, and customer satisfaction! Z's is a family friendly zone which is good for all ages from kids to adults. There is barely any waiting line plus, the food is dished out quick. Best of all, there is a drive through window which allows easier pickup especially on the go. I would recommend this restaurant to anyone who has never experienced Greek food and is willing to taste a different styled recipe from their original comfort zone. Everything is prepared tenderly, juicy, and well seasoned! Give Z's Greek a try!",review,674VW1R9LJb_jJIfX2tcRA,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2012-08-17,-hqEQUxefQSjHMcMpqIHHg,4,"I finally went here, after reading the reviews and pouting about how busy I was with work and how it is hard to find someone to be my Designated Driver, since Arizona is way more strict than NJ when it comes to people drinking and driving. + +So, I finally arrived at Casey Moore's last night and was impressed. This is an upgraded Irish pub/bar with a great beer selection, yummy yummy yummy crab cakes, and a cozy atmosphere. + +It was Thursday night in which they have a special on Kiltlifter (sp?) and I was pretty excited. The music was not that good. I wish that they would have a DJ there on busy THursday nights. That would really enhance the atmosphere and probably their people traffic as well. + +I vote for a DJ on Thursday nights, heck, I have amazing music, I could just be the DJ. + +I will be back very soon to try their oysters and some of the other seafood dishes and of course more beer on tap. + +Seriously, you need a DJ on Thursday nights.",review,b2XPhXPQ41qWysIK6RTsFw,0,1,0 +RLjA7TBXJfyqDfPuVCcrtQ,2011-06-26,smEx1ifslt1J2TTO4NauVg,4,"We had a group dinner in one of their private rooms... the wine room, which as decent, obviously wines all around us, but a nice room for a group of 10. Anyways, the food we had was amazing... be sure to try the the appetizer - DRUNKEN BREAD (Cabrales fonduta', White Wine, Garlic, Herbs). For my entree I had the RIGATONCINI w/ Sweet & Spicy 'Schreiner's' Lamb Sausage, Heirloom Legumes, Local Greens, +Charred Tomatoes, Chili, Pecorino. It was perfect with a nice kick to it. Definitely recommend it. And for dessert...PRADO SUNDAE +House Made Vanilla Gelato | Apple Wood Bacon | Caramelized Bananas Amarone Cherries | Warm Chocolate Sauce | Roasted Almonds | + Whip Cream | Biscotti Crumble... amazing... my first bacon dessert and it was worth it. Also, try the 'DULCE DE LECHE' BREAD PUDDING +Bourbon Caramel Sauce | Vanilla Anglaise | Chantilly Cream. And get yourself a mojito while you are there, surprisingly good. Of course this is the main restaurant at the Montelucia Resort, so expect ""hotel pricing."" The menus are also seasonal, so my recommendations now might be completely different when you go there.",review,6wkKxBVwQmB2DnjllZvk0A,0,0,0 +OE5nAmaSVaopeRS1Cs9Kuw,2011-06-13,nXYrr7wiLpm7_C5ySBjoTw,5,"Consistent offerings of service, food, atmosphere and drinks is what makes this franchise successful. + +No matter whether I've been to Fogo in DC, Baltimore or here in Scottsdale, I get the same gut-busting food and well-made drinks in a place where I could either wear a suit and tie or jeans and a t-shirt. + +A specific note on this particular location- there were a lot of families with small children on this particular Friday night. No judging, but I've never seen that at any other Fogo. Fogo back east is really ""date night"" or the kind of place to pre-game for a bachelor party or a business dinner, but not to bring infants and toddlers. Possibly a by-product of its location on Scottsdale Road in a strip mall near a few hotels. IMHO, this is not the place to bring kids, but I respect the rights of anyone to do so. If I was traveling w/ kids in tow and I didn't have a Fogo in my city, it'd be hard to pass up. In any regard, it did not bother me in the least. I was too wrapped up in my company and the food and those drinks. + +You will easily spend over $75 per person here including tip, so prepare to camp out, eat slowly, enjoy your meal and be treated like royalty. + +The house special sirloin will make you rethink how to prepare sirloin at home, it's that good. Don't fill up on salad at the salad bar- you can do that at Olive Garden- but do enjoy the cheeses, mushrooms, vegetables and cold cuts which raise the salad bar. Did you see what I just did there? + +Nice wine selections here. Ask for a Brazilian red to enjoy with your meal if you have the coin.",review,wttePGxhTumTTUinL5tlTg,2,1,1 +od49_DFUJY9louGx80My-A,2012-12-27,ZZSVxJ6N-_e4kayRgXxaKA,1,"Let me first say if I could have given 0 stars I would have. + +My wife and I went to this place and were EXTREMELY disappointed. We had gone to a different Pancho's many years ago and were hoping it would be like that. The choices were very very limited and basic. There are so many amazing Mexican dishes yet my only choices were a tamale,taco and some horrible tasting enchiladas. How does a Mexican food place not offer burritos...have you guys heard of a bean burrito? Its pretty popular and would be a good choice to offer. + +The only food here that is worth eating is the baby churros and the Sopapillas, which actually were good. Unfortunately I didn't go to this place to pay $20 so my wife and I can eat Sopapillas. + +Please listen to my advice when I tell you to avoid this place. Take your money to taco bell and get a lot better Mexican food at a fraction of the cost.",review,0s__8hD0Y_JUp6obKz5hxg,0,0,0 +EdPa3d82Dq_za2Wf7Dtysw,2008-02-24,Gf-Vm7zIjC63hmHSCEN4vQ,5,"Their frozen drinks carried me through last summer. They have free air (for your tires) and water (for the radiator) at every location I've ever been to. Their hot sandwiches, though greasy, aren't TOO greasy and actually taste like food. The coffee is pretty good, and they have more ways to tart it up than Starbucks does. QT frickin' rocks. + +And BTW, the QT stands for Quick Trip.",review,cTQOEKBVSqrsyVl2Ssyolg,0,1,0 +hZyl8ShUo-D0ahqJXTYWAg,2011-06-14,CuwRm6GZsUkX89QwWlg4sw,5,North Glendale's cool new hangout. Formerly Cactus Willy's. Completely remodelled! Follow us on facebook at Justin Willys!,review,2bnbXgguLNwvqsfVFaO0Ow,0,0,0 +nBrD6TxddhHx4FhMk32JvQ,2011-08-06,lwtZkNLdOKmCtJOYNui0QQ,3,"Chicago style hot dog?! Sign me up! I just moved here from Chicago, and I've been dreaming of Portillo's since I left. Where am I going to find something even close to that in AZ?! I was hoping this would be it. The hot dog wasn't that bad. The fries on the other hand, weren't so good. My husband ordered a beef with hot peppers (giardiniera), and they were far from hot...almost tasted pickled. And the sandwich? TINY!!! It was like a 4"" beef sandwich! I didn't taste it, but he said that it just tasted like a roast beef sammy...not the Chicago beef that we are used to. One of these days we'll find a decent ""Chicago-style"" restaurant out here in AZ.",review,MfZszvOQNY_xdbA9ruz_zQ,0,0,1 +vSWEXsXmJw5ozuF4zqE9ng,2010-09-16,BVaxlHHbj9T6Y9ES-IZkhg,4,"My awesome musician lovergirl wanted to bring me here specifically to see Nicole so we could have some kind of pianist bonding session. Unfortunately, she wasn't playing when we went, but I am thoroughly convinced that she is extraordinary. + +I ordered the sirloin steak salad and mushroom-brie soup. Our server was exceedingly friendly and helpful, and service was prompt. And the food! The soup was worth the visit in itself. It was creamy and mushroomy, and oh so delicious. The steak on my salad came out a little rarer than I would have preferred, but I still enjoyed it, and it was a huge portion at that. I love that my salad wasn't over-dressed, and I was definitely a fan of the candied walnut-blue cheese thing going on up in that sucker. So good. + +Besides the fact that they serve great bougey food, have incredibly witty and awesome wait staff, and sometimes have half-off bottles of wine, I totally fell for My Florist Cafe's atmosphere. We had a late dinner here, and the whole place was lit in cool blue. It felt very accessibly hip. This is a place I'd definitely come back to. You know... the next time I'm in Arizona. I'm actually very much inclined to visit the Ventura location, which is only about one hour from my home plate--as opposed to five.",review,l6ipqaprwapROa8sG6IfdA,0,0,0 +amIKbXtk8TCoySw_xBjFKg,2012-11-26,-lpKpakzDQ0ecnkx0X9R4A,2,"Concept is great. Stores are cool, but expensive. Lunch was a bummer! Ordered chicken salad sandwich and the tiny sandwich on a great roll with the tiniest amount of chicken salad was disappointing. For that money I expected at least a regular sized sandwich. Glad we tried it, but won't eat there again.",review,TRl5jiNFI2m0wfH6CqO3_A,0,3,0 +IM-9thHqQbBK5tX5MfTzBQ,2012-05-29,KFDHF6MHippK_SP9TI0bxQ,4,"We moved here from Northern NJ where a NY style deli is worshiped right along with any big religion yet in our last few years there, all the great NY style delis by us were closing in rapid succession. Going into NYC just wasn't an option each time I wanted some half sours and a knish. It took moving to Scottsdale, AZ to find a solution - go figure. + +The gigantic menu you'd expect, pretty good bagels, great breads, not to mention the grilled cheese/Jewish sliders/patty melt/kosher dog with kraut/knish/fresh chips/potato salad/macaroni salad - all are awesome. I did not care for the Reuben I tried, however, I am crazy picky about corned beef and I realize that a true NY deli serves the meat a little fatty so that's my hangup. Husband had an omelet today that could have fed 4 people - he loved it. + +If you are going to Chompies with someone and it is their first time, force them to look at the menu online first or you will be filling up on half sours for some time as they decide. + +Great service, efficient but not pushy.",review,3uR5YTXgW4hatuFnaNxSGg,0,1,1 +VX2Jw-AxnE87KS385HDuWQ,2011-12-29,U3TIW2d5KIsyGi5SknNpiA,5,"Very good place for breakfast and their pies are to die for. We've been here about five times and they never seem to be crowded, which is a shame. Their staff is always friendly and the food is always good. It's like a Dennys-type place, but I think the food tastes better. I've honestly never had a lunch or dinner item but I don't think that's what you go here for :) The prices are very reasonable. Once again, pies are TO DIE FOR! We've had their strawberry pie (x2), pumpkin pie, peanut butter chocolate pie and most recently, their mixed berry pie. We're going to be moving across the valley and I'm actually a little upset this location won't be coming with us.",review,E4HbTIHd9PVjUnEKpysaLw,0,1,0 +7_7fxuG9ESAFmx-AiMsJHg,2009-02-23,5lVXHeAoMhQqpqq9gQxFWg,2,"I've been back a few times since the last review but the most notable was to see DJ Z-Trip. He was awesome, no complaints there. + +Bar Smith though? They failed on so many levels. + +I got there sometime between 10:30 and 11:00 and there was about a 20 minute wait out front. Not the end of the world or anything but after finally getting in, there was a sea of bodies and another very long wait. About 50 people were lined up by the stair case waiting to get upstairs. There was a bouncer not allowing anyone up there until people would slowly trickle out. Why they put Z-Trip on the patio, I don't know. It's the size of a shoe box and was clearly to capacity before 11 PM. FAIL FAIL FAIL FAIL FAIL!! + +I was in various lines roughly 50 minutes and still hadn't made it upstairs. Forget about stepping out of line to get a drink because you'd lose your place. The short of it is I paid for pre sale tickets, managed to get there at a decent time, and still had to wait close to an hour just to get in the same room as the guy. It was a total let down. + +At that point I was so ready to just walk out and ask for my money back. They clearly oversold the event and didn't give much thought about their patrons who paid money to see this DJ. They were going to fit every last body into that place if it killed them...and everyone else in there. + +After finally getting upstairs there were so many bodies, no one could move at all. It was a total clusterfuck. I finally made it to the back bar and stood in line for 10 minutes just to find out their card reader broke earlier in the night. Fantastic. No signs saying it was a cash bar, that would have been a nice gesture. + +Also, the bathrooms were downstairs, so forget about having to pee AT ALL during the 2+ hours you're there. If you had to go, you better hold it, otherwise you'd be waiting in line for another 30 minutes just to get back up. + +By the time Z-Trip came on, the sound was bass heavy and mildly distorted. I inched my way to various parts of the patio but the sound didn't get any better, so my partner and I said fuck it and went downstairs for the rest of the night. Thankfully they were playing his set downstairs and upstairs. At least people could move more easily downstairs. Plus the sound was better. And the bathrooms were actually accessible. + +Even at the end of the night, there were people standing in line waiting to get upstairs. Bar Smith gets a huge ""F"" as far as I'm concerned. I won't be back to this place for any headlining DJ. They obviously don't know how to run an event.",review,FHJUj7EHB9nB2czVOzQX3Q,3,7,3 +nvaAUTTl7oqiJDhuimNG6A,2010-08-14,2jBIqSC4ylNihVdn2b7PaA,5,"The best breakfast place, bar none! I love that it is a local, non-chain place and they do everything delicious!! The french toast is to die for and the plain and simple (eggs, bacon, potatoes) is perfect! My husband and I split these two dishes and it is plenty. We always leave stuffed!! Be sure to make reservations for a Sat or Sun morning breakfast, otherwise you'll be waiting at least an hour!!",review,VeycloT_I8xSjUdHP-EHyA,0,0,0 +-vHWAsiX0iHWJw-pkqv32Q,2008-08-30,_51nwhuYZBM5HQI0DazosQ,4,"Seriously, their happy hour prices can't be beat. A beer, a spicy tuna roll, calamari and avocado egg roll for under $20 including tip. Service was attentive and friendly. We had to lurk around the bar area for awhile to get a table, but that only speaks to how popular this place is. If you are looking for an inexpensive dinner out that doesn't involve Denny's or Olive Garden this is a great choice.",review,xFdK5lgUdeT3bWC7_MvcyQ,3,2,1 +XTIIAZspxssIF7WenlXmrA,2011-11-15,Ovzfaz-aDGIJRTUg5uNMBQ,4,I stayed at the Montelucia for a long weekend and went to Joya Spa for a massage and for the nightly blow out special. I wish I would have taken advantage of the spa each day since we were staying at the resort. It is a beautiful spa. Although it is pricey compared to other spas I've been to they pay attention to every detail and the staff is great. My massage was unbelievable. I should have requested the longer massage. I also got a deal on the massage through a separate website since they did not offer any discounts on services. The reason I did not give them 5 stars is because they automatically add a 30% gratuity to your service. The prices were extremely high to begin with.,review,3uEbewOQqdsvIoswNgdQ9Q,0,0,0 +r7Ge8_c5Y2TXthb4CSjzaA,2011-08-03,ptPHGqr1MmmF6Dd6vlYkEg,2,"Not impressed and probably won't be back. I came for lunch and was immediately turned off by the lighting and décor. I sat down and began to peruse the menu when I saw ""Ask server for bento box selection"". I asked the server and he looked at me as though I had grown a third eye. He told me they didn't have bento boxes.. I showed him the menu to which he said ""hmff that's weird"". + +None of the lunch items on the menu struck my fancy so I ordered the lunch special. I got the chicken katsu, it was over fried, hard and dry. The accompanying mammas roll had an overwhelming mayo flavor. And guess what? It came in a bento box. + +There are a ton of great sushi spots in this area so Shogun really needs to step it up to be in line with their competition. (Thank God for Yasu's!)",review,q9XgOylNsSbqZqF_SO3-OQ,2,5,1 +JokKtdXU7zXHcr20Lrk29A,2011-10-18,2TVbs6123FVz0HCi-iLc7w,2,"I may make a few enemies in writing this review, and I may even get kicked out of Tempe completely, but seriously, Four Peaks is not the love of my life. Granted, I don't care for beer, so this is more or less a review of the food, atmosphere, and non-beer-like drinks. I have been here a few times with the husband (he loves it here) and I just don't get the hype. The food is bar food. Straight up bar food. I like the outdoor seating much better than indoor. Inside the place feels a little dreary, much like many bars I have encountered. The servers are friendly enough, although sometimes the service is a little slow. I get something different to eat every time, which if you know me, is not a good thing. When I like something, I get it every visit, but here, I am just searching for something - anything - that I like enough to order next time. Sigh. I know I'll be back, and I can't say I dread coming here - I usually have fun. I just feel like there are many places I'd rather spend my money on.",review,PDRWbCZa92irf8mK5X_Kig,1,0,0 +NXsw4z0AtaILgS4-UxSWUg,2011-05-17,BOpuA5b14L5O2IoYkYO2-A,4,"This was my first time ""hiking"" and we did it in flip flops. We were here on a Saturday afternoon after going to the zoo. There weren't really any signs telling us where to go and some of the parking was blocked off. There also wasn't a trail head (which I thought was normal) so we just parked randomly in some ramada and walked up. + +The view is amazing and probably only took us10 min to walk up there. Definitely recommend going for a ""hike"" up here if you are in the area.",review,1fFt8FJ8rMQC4loPztBHkg,0,0,0 +jGldmslgIegQNM5kvb851Q,2011-06-24,eUm7AAXNuBtYqGIqvEGBpQ,5,"My husband and I eat out a lot and we had the best dining experience ever the other night! We sat at the bar with the bartender AJ and he was such a delight! We had happy hour which was probably the best deal in town! 5 dollar glasses of wine and half priced appetizers!?! My favorite was the steamed mussels. We loved it so much we also had dinner. The classic pasta deal was the best. Getting to take one home gives you at least two more meals, the next day. It's hard in this economy to get more bang for your buck but Maggianos they are doing it right! We will defiantly be back for more!",review,OWeLkbeU0Gq3zamP-SjtfA,1,1,0 +g8DDgeadYPdtGfkszQ60iQ,2012-02-28,Bu5Gn5x5XDfy_ClrtKwaDA,2,"As far as the sandwiches go, the place is fine but just thought I'd mention that if you are trying the broccoli-cheddar soup late in the day you may find it ""overcooked tasting"" bordering on acrid and burnt like we did. + +I guess they assume everyone is going to order a $5 footlong because pricing for six-inchers is not quickly established by looking at the overhead menu.",review,7RZ0mJJ00IiT56sloLBd1w,0,1,0 +u0NbikWwP7TVkMkCily-4g,2011-10-23,xmaPWd66NNDzZTUa1seCVg,5,"My dear love and I went to the museum on a romantic date, and had such a lovely time. I hadnt been to the museum in years and it was a lot of fun to see some paintings I remembered from my childhood like the Frida Kahlo. They firefly room is utterly transporting as well. Frankly, I dont know if it was the art or my dear love that made the evening so wonderful, but we will go again soon. I strongly recommend a strolling date here. Wednesdays and maybe one other night are free. Oh and here's a tip-if you cant find a space, park across the street at the Viad Tower. Its free if you exit from the north side.",review,ng3hl9D1EzsmSDHnXXfGBg,1,1,1 +qiFTZ7aJz-FXt1wz8YigAA,2012-04-01,pHQxVgno8JnzsjTY_us-Fw,2,"The only plus to this place was that the bartenders are on their game, otherwise leave it for the Jersey Shore wannabes and slooters that get turned on by extra extra medium Tap Out t-shirts.",review,lk2kaOszLpP7tnVtCJclww,1,2,2 +wNsmt1hF1uv3YvbwXZMAoQ,2012-04-29,htyDdBpf7jQds5NU6veOMA,4,"My wife and I went here and sat on the patio near the canal. The temperature was perfect for being outside and the view of Camelback was sublime. My only complaint about the seating was it was difficult to read our menus when we were there in the evening. +Our waiter was friendly and helpful. +The chicken salad sandwich I had was very good and my wife loved the burger she ordered. +All in all a very nice and relaxing Sunday evening dinner.",review,rg5pRVVh-mtBjNqKB1N2Tg,1,1,0 +_1QQZuf4zZOyFCvXc0o6Vg,2010-01-09,CNuixieP6B-BRKGZyWpcGQ,5,"This is a great dog park. Plenty of grass to run around on, and there is always a good crowd to play with. And drinking fountains and places to sit. The majority of the dogs are nice, but there are a few Scottsdale poodles who think they are the shit and their owners just ignore their bad behavior. I just stick my gum in their curly hair and go on with my day. + +The best part of the park is when I get home and the dog takes a nice long nap, and I can do chores in peace.",review,4vSGcZyNfIuKYUP6z9Cbyg,0,1,1 +7K3xiP-5sj_x3QWHlIFFxQ,2012-04-08,v-fRwuECMwW4BI2ppTnEcA,2,"We've been here several times with our kids and grandkids. It's a good family spot, but the service is just okay. We love the fresh chips, and the wings are good. Salads are 'meh'. We'll come again because it's a good spot for the kids, but we'll come expecting not great service.",review,6W8g1cFTauSG7GsZGNhIjw,1,3,0 +pqkwR2me0LhEZulRcQpOuw,2011-03-31,C3F0kLSSEteBvx97qtUrfw,3,"Good food, but very expensive for a simple breakfast joint ($8-10 for most breakfast items). Also, the menu has very few healthy options...which isn't a problem for me, but is for my wife! How about putting an egg white omelet on the menu? + +Seems to be family owned and does have a good atmosphere. But at these prices, I wonder how long it will be around. There were lots of empty tables on a Sunday morning, which has to be the bread and butter of a place like this.",review,jYQTTrMMRTBJvrNNSPIAfg,0,0,0 +1NZLxU5WvB5roPFzneAlLw,2008-01-31,vvBCur_XASLeCeNZesI5sw,4,"The two things that jettison my brain into a Barrio Cafe daydream are: + +1) The Sangrita +2) The Churro dessert + +In fact, if this place was called ""Barrio Sangrita and Churro Shop"", i would still want to run up to the building and give it a big hug. + +Really, enough has been said here about the food, or atmosphere, or whatevs ... but if they're hoping to leave a legacy in Phoenix, its with these two items. + +I prefer going to BC for brunch on Sunday. I enjoy that menu the best. Oh, and the table side Guac is a nice touch.",review,-F32Vl8Rk4dwsmk0f2wRIw,1,0,0 +6FECmOLQSICW1ykyBbEHng,2012-10-22,bIN2sPTvZ17dSzrfkzx7pA,5,"I was told to see Greg after a local shop diagnosed my exhaust problem. He took a few minutes to look at my car, told me what I needed and what it would cost. I went back a week later, he did the work in the time he told me it would take and there was no surprises and my car is doing well. I would recommend this place over ANY muffler shop. Plus you support local business and not a chain.",review,xCY9C6KN9xTDzKrow9iivQ,0,0,0 +1zdwPAgiJFJhPeS3YIY09Q,2009-01-19,Uzk3NU0zmL8Q7d5iHWIQhg,5,"My experience here was awesome from start to finish. I was greeted by an extremely friendly, smiling man (I believe to be the owner) who helped me with my order decision, took my order, then asked me to ""please, sit down, be at home"". Awesome. + +I inquired about the salad and asked if they put any feta on the salad (they don't), he followed up informing me the sauce they serve has dairy, but that he would substitute garlic sauce instead.... now this might not seem like much, but to someone who has food allergies like myself, having someone with intimate knowledge of the ingredients and the care to make sure they don't serve you anything that might not agree with you is really a blessing and gives you assurance when you eat there. Huge bonus. + +I had a half chicken shawarma and half gyros plate which came with hummous, salad, rice, cucumber (substituted instead of pita since I don't eat wheat... nice touch) and a side of garlic sauce. I do not normally enjoy chicken shawarma, but he insisted I try. Well, he was right, I will say now I love chicken shawarma, Aladdin's chicken shawarma. Their gyros was awesome too.. homemade, not the typical Kronos Meat Cone variety. + +I paid after my meal and was welcomed back with a handshake. Service was awesome, food was awesome, and they were able to easily cater to my picky food needs. A+!",review,waD2euOMPTnTzQ0thq3H6Q,4,7,4 +-sC66z4SO3tR7nFCjfQwuQ,2012-03-07,rMjOGresCVz2dvJXJl5-MA,4,"I love the feel of this cute restaurant! It was a beautiful day and we decided to sit outside. Their service was very fast and the staff was very attentive. It was lunch time so I expected them to be kind of slow but it was the total opposite. We had the ceviche for an appetizer and it was quite tasty. Also the chips and salsas are so good! I love how spicy their red salsa was! I had the chilaquiles with over medium eggs. Apparently it had pieces of shredded chicken and cheese. It wasnt your traditional chilaquiles but their own spin on the dish witch totally worked! My friend got the narco torta and he said that the egg was too over powering so he just simply took it off his next half lol Overall, I had a good experience and will definitely come again.",review,l5upkLok78p-NQN_3uurrA,1,1,1 +uR2aNW75R4oYs9w7aw-_kQ,2008-11-13,TpyFIYraap3rnZj18NbHkw,5,"I am disgruntled by the reviews I have read about Sapporo. I have a few things to say. + +1. I am tired of people complaining about the prices at Sapporo. When you compare price vs. quality you will always be in a favorable position. If you cannot afford Sapporo perhaps you shouldn't eat there. I am not trying to sound arrogant, but you truly get what you pay for. Sapporo consistently prepares the best sushi I have had in Arizona. + +2. I understand wait time may be an issue. I suggest that you arrive early and anticipate a wait. Honestly, is thirty minutes on a Friday night going to bother you? The food is well worth the wait. + +3. Please stop wearing flip-flops and bathing suits. Perhaps this is the reason you are experiencing ""rude"" service. A pair of jeans and a polo is fine. + +Sapporo is a Phenomenal restaurant. In my opinion, Sapporo serves the best Sushi in Arizona.",review,4oBViNYcsWpPexC405Gh2w,2,1,2 +XBm9ffI2pK-A_HcoHXAbcQ,2012-01-10,X6epQQ8ehvvHoQfbBDcVlA,3,"I love Greek food, but I need to stop letting my friends drag me to this restaurant. The staff is extremely friendly and the place is comfortable, but for me the food is always a disappointment. I know I know, it's a chain... and maybe I just have high expectations, being that I'm from back east where we have small family-run Greek restaurants on every corner.",review,vQayPl7cix0BFaSiL_t5XQ,1,1,1 +dewq6aevfoNFvJBqM7PG5A,2011-09-16,_37x0HOMHnlKUdhkrrCcTw,4,"I'm not a coffee snob, but I love a good Americano. + +This place has the charm you'd expect from a locally owned coffee shop complete with eclectic decor, artwork on the walls, odds-and-ends of gaudy lamps and stained-glass windows. The coffee is pretty good from what I have experienced. The air-conditioning is right where it needs to be as well. + +Most important factor for this business: very nice staff. That alone makes me want to come by more often.",review,LFFcpdIUCSRpOlII8hWK_A,1,2,0 +doEZAj-NSnoEMOJl5yXcNw,2011-08-08,C4lduID0NZMqzjQuIWlnbw,5,"Falafel is outstanding here, dark exterior with green interior, and a nice spicy peppery taste that is satisfying. Cooked just right too for texture. Fries are a nice side. Prices reasonable here, plenty of parking, and a few atypical sodas available in the fridge. Note that there's just a few seats inside, since this is also a grocery place. To-go will probably be my main strategy for this great Falafel destination.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +1M4oczf2lmkdgbrJ3J7OqA,2012-07-14,Vz5_KiTQtoZO9xU7NqQzvA,5,"When I'm casual but want to feel NYC I go to Christopher's. We go here for a special occasion dinner or on the fly happy hour...which is the best HH food in town! Let me repeat that - best in town!!! + +Hamburger with truffle fries, brick oven pizza or a perfect salmon salad plus a beer or glass of wine for about $10/person. Can't beat it! Sitting at the open kitchen makes me appreciate the setup and organization required to run a restaurant as well as the chef's tatts!? If you dont want the blaring heat of the brick oven, don't sit at the corner next to it...Phoenix is HOT enough in the summer, so cool off and let someone else do the cooking!",review,m21EE2_CqPzpXdKsYsbVIA,0,1,0 +IRE33Q9XQMgWy92akbVCoQ,2011-11-24,h_S9WcGCYJm1U961sZEkqg,5,I love this store! They have an amazing staff and the most modern clothes! I set my appointments with a few of the employees and I always get compliments on my outfits when I go out!! Hats off to the Ted Baker team in Scottsdale Fashion Square!,review,QjDrAX6vHqewbWDAGj7upA,0,1,0 +IVc23uY-36WUNYoIbz42Fg,2010-10-13,czxg5GD9WsnzdLB4Pgrykg,5,"This is our neighborhood restaurant. + +Whenever I want Margarita Sunrise and desserts, I went to Switch. I never disappoint.",review,2uz3B-11DieFlELzqUCAlw,0,0,0 +uVbt9dOe6qJgBBI4_XsXRA,2011-06-20,n86fus8Fhe-PTold5cQDVA,4,"When dining out, I am a big fan of steak, and great service...Fleming's offers plenty of both. + +Having dined at Fleming's on more than one occasion, I can confidently say that they know how to cook a steak to your requested temperature. At these prices, this should go without saying, but plenty of chophouses still don't meet this criteria. + +All side dishes are a la carte, and on the large side, so I'd recommend sharing. The potatoes and vegetables are always great dishes. + +Mixed drinks are poured well, and not priced too crazy, relative to the entrees. My staple, a Jack & Coke, was $7.50...I've paid more. The wine list is extensive if you so choose. + +Service was excellent, if a bit methodical...could be a bit more personal. + +Four stars instead of five, because everything is just done well...nothing stands out as above and beyond, especially at this price point.",review,LX23Z1Qnjaif9NBjhmXeVA,0,2,0 +AeoJkr_dlNshB078OepP8w,2010-03-02,FubrebQ3LpIG9UFBC7DtFg,3,"The best example North Scottsdale has of traditional Phoenix sonoran mexican food. Los Olivos restaurants have been around forever - at least since the '60's. The food is great if not fancy, and the place is pretty free of gimmicks. You can get your fix of cheese crisps (aka quesadillas for you CA transplants), deep fried tacos, chimichangas, combination plates with so much sauce and cheese you can't tell what's underneath but it all works together to taste so good. Los Olivos still plops down the free chips and salsa right when you sit down so you're good an full when that combo plate comes and glad for it. The atmosphere is more like a nice mexican diner than mexican cantina and service is solid. They often have mariachis playing on weekend nights. Margaritas aren't great, but the beer is cold. Don't bother with dessert. Cheap eats for all the food, especially since you won't be hungry for another 24 hours. If you're in North Scottsdale and in the mood for traditional Phoenix style mexican food, Los Olivos is a great choice.",review,FktbKOzznpoKTNXMVtc8EA,1,1,0 +TbaAnzOTX2-boTbAp3e8Qw,2011-10-24,mdu-pasxgPiT2m5ZqcEk9A,3,"I'd read about this place before (on blogs written by people from Utah) so when I was driving down Baseline and hungry and saw it I decided to try it out. + +It is set up a lot like Chipotle, however the process of ordering is somehow not quite as clear. Additionally I wasn't sure what went with my meal and what cost extra. + +That aside the salmon tacos I got were really tasty. I don't think I've had salmon as the fish in fish tacos at a restaurant before and I enjoyed the change. + +The price seemed a little high, but not so high that I won't visit again if I'm in Gilbert and looking for a quick meal.",review,fR6Vch-D0L6OBnLMl8f9Sg,0,2,0 +VQtMFcgkRz7MCIo9sPDaeg,2012-10-04,62RkOn0aW7EG5TGFb1rK4g,2,"I went here a couple weeks ago and got the sesame chicken. I was disappointed when I saw that it wasn't chunks of chicken, but a boneless piece of chicken that was breaded, fried, and then sliced into strips. The sauce wasn't that good anyway. I won't be back.",review,gdNJzMx9duSZCBdiU1QKFg,0,0,0 +j-_jKQ-5IE4hqQzA-hsApw,2010-08-21,9xeE1dlGPjgWaZn0yijfLg,4,"This place has good fast food, it's always clean, and the staff is super nice. SUPER nice. + +My kids love the play area and it's a lot cleaner than any other fast food play area for sure. We love this place.",review,IAZt6MmGAkybHg7hu8OEhg,1,0,0 +u0NbikWwP7TVkMkCily-4g,2011-09-05,YYXQzmY1XqN52M_K0CPtmg,5,"The Phoenix Art Museum was a day well spent. The atmosphere was inviting and it was like around every corner was a surprise waiting to be discovered. Admission was free for me. How you may ask? Our local library has cultural passes for various museums, try checking out your library next time you go. The museum was inexpensive adventure that took me across the world. + All the different exhibits kept me intrigued and interested. There were paintings, drawings, photography, and sculptures galore. There were even some animated pieces. I even stumbled upon a piece you could actually walk through. The layout of the museum is very easy to follow, as they give you a map and everything is labeled. You can go from the Asian culture, to English within a matter of feet. It is mind blowing. The whole world seems so much smaller, and it's brought together so beautifully. + They offer guided tours, or you can walk around by yourself. There is also a children's section to the museum. I have nothing bad to say about the museum itself. I am extremely happy that I went, and would recommend that anyone go. It would be a great date, or family day, or even a day by yourself. The Phoenix Art Museum is a place that I think everyone should visit while in Phoenix. It will really open up your eyes and make you think.",review,9BiiY4Ga2PR7y35BQg0VCQ,0,0,0 +Pv1H9KIGZTDgSaCDuTUjdQ,2010-10-01,P2iv1UOJTvg5zuzbxzgH-Q,4,"This hole in the wall quite possible has the best Chinese food in Phoenix. +Deffinitely the best Wor Won Ton soup and pork Egg Foo Young. +Great for carry out and they have a large delivery area!",review,WVvu15Qem7gpNOzCpYc0Pw,0,4,0 +wzQAmzQopWcfoCG8lfiE_w,2009-11-27,V4LSqpWQyiTrJ4nJX4LJpg,2,I stopped in for a quick lunch and I wasn't impressed at all. I heard that the food was good but I've had better subs almost anywhere. They have very limited toppings. I wish I had gone to Mr. Goodcents down the street much better quality subs.,review,Iycf9KNRhxvR187Qu2zZHg,0,0,0 +gAwoeSYoyVjp5rcwnaTz2w,2012-12-17,0QXFyiXyCFUdD0wm7ingtg,5,"As much of a sweet tooth that i have (dark decadent chocolate is my weakness)..Toffee was never my thing ,never on my mind .. + +And then i sampled Goodytwo's toffee ..wowzer ! +Sweet and salty toffee is regoddamndiculously good ..seriously good ! +They have a toffee topped popcorn ..these gals are killing me ..oh ,oh the twozels sinfully delish magical pretzel mix with kettle corn ,nuts and chocolate . + +Listen ,you can't put a price on happiness ,ha ha +Everyone i love is getting their stockings stuffed with a box of salty-sweet love from Goodytwo's. + +Nothing more delicious or sexy ,ya sexy then a salty sweet combo ..it is a heavenly pairing ..Goodytwo's has perfected this,worth every penny ! + +Rock on ladies !",review,vtC_cpesIJZ3--W9J-UIXA,4,5,3 +u9MKnG0PqI8N7ixSfrrTiw,2012-12-24,Ai6qY5AvVBqQm_PoCT4Ccg,5,"Doesn't get better than this, the guys at the Chandler Mall location do it right, every time!",review,o1_XGLgDbNqUUO7OSszShw,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2009-09-04,ObLY-BzVMtLv5ZdlWE2mIw,5,"Whenever I start leaning toward being a vegetarian like my daughter is, I remember the smell and taste of that scrumptious, melt-in-your-mouth filet mignon at Durant's. And the hot fudge sundae for dessert? Dang, just can't beat it. The bartenders are old school--not too aloof, not fawning, just professional and classy. The best.",review,zlprnJhxUBgAYorZ_ZGyqg,1,1,1 +fbQMfbq2edOFxPFHwnH3zQ,2010-07-12,aCiVSjDFAOvrM34TwNb8TQ,4,"I have been a member here for a little less than a year. We go about 2-3x a week & love it! We bought the year pass because it was cheaper that way & we wanted to be more committed than the daily or monthly pass. I have been a member at other gyms but not as impressed as I am with the atmosphere here at Tumbleweed. It has an indoor track to get out of the AZ heat. The gym also offers racquetball which is a fun alternative to workout. They offer an array of classes (Zumba, Yoga, Pilates, Core Conditioning, etc) which are included in your membership!!!!. You can't find those options for the same rate anywhere else that I know of. The people are professional & friendly - there is no haggling over membership price, commitment, or being approached by personal trainers. On that note, they do not have any personal trainers, which if you are someone who needs motivation or accountability, this probably wouldn't be the place for you. But for the price & option of the daily pass - you could bring a workout buddy anytime!!! The other side to joining a Rec Center is that you are supporting your city & giving back to the community - not supporting some big money hungry corporation! Check it out!!!",review,-zzhFGw6I9wA5EtivKn89Q,4,4,0 +kJ2aJFIJIK_Hnr8aj043kw,2011-12-19,FeqOzQnZqa9t7zQOi0nJCA,4,"I'm on a Outback kick. I can't help it. We ended up here one evening by chance and I love their steak and loaded mashed potato. The service is good, the food is good, it's not too crowded. Like I say, I'm on a kick.",review,uTyIIbOvXH_XZw7OEiTiNg,0,0,0 +x5zpnLM73TCnsRcII7uzAQ,2011-11-01,hfqeCxt_VukpqfOymZgs8Q,5,"Got to love the concept, coffee, art and a co-work space friendly for start-ups. OSP has that feel of old college dorm meets painters loft. The coffee is good, the WiFi is fast and the staff is friendly and they don't harass you, I couldn't ask for more to get work done!",review,-rutaYKpWZoWcupIJ2OkHQ,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2008-05-05,mPfQyadgoANUGLjtfwT9YA,5,"I came here on the opening night when someone from Gin Blossoms played on a makeshift stage, the beers were 25 cents and there was no food (but you know me, we ordered a pizza from a neighborhood pizza place.) Since then, they have added a full kitchen and the food is amazing (chicken strips that were designed for diners who appreciate tempura-like batter and are over the age of four), the beer is astounding (one word: Kolsch...makes me swoon) and the people are great. It's worth the walk wherever you end up finding a space to park--even better, ride your bike over like we do! The Sunday brunch is great. All of my friends sit and wish they had a student loan that would enable them to spend at least half of the day drinking here daily. I don't blame them.",review,OYpsdMcpdCdlkknpgpFMLA,1,1,1 +FX5mDx1QR31IoCZznjJJ5w,2012-04-18,6V69RcsiXe5dkq82y6oeXA,3,The classic example of why we need half stars. Doesn't merit a four star endorsement but slightly better than the three star Meh. The hot dogs are decent but you'd expect more due to the pedigree of the owners. The place also doesn't feel well put together and like it's been neglected in recent times.,review,GrSixRnGIxNUJ1Cn5DNX9A,1,3,0 +coXomDOValXzks6BwMHG1A,2011-01-20,YyV0513rpYMXETvciIXfkQ,3,"I think the Living Room is fine! Like another reviewer said, it's nothing particularly exciting or mind blowing, but it is a nice neighborhood restaurant that has solid food. I like some of their bruschetta options more than Postinos. + +I do agree that the music is too loud! The atmosphere is more ambient and I wish the music was commensurate with that. I always forget my server's name but he is very nice and helpful - no complaints there!",review,0LuN0DGTCkzpjAD3NyNN8w,0,1,0 +ybXlbfOjrKDdz5NoC-G9Gw,2008-07-19,XegKJ8EfOWOCYqZ7WzAvbw,4,"This is one the best venues in Phoenix in my opinion for live music. Wonderfully low-lit, divey atmopshere, Great drink prices and down-to-earth crowd with no pretense or attitude. The bouncer/doorman was ALL pimped out and welcomed me with a handshake. This is really a great alternative from hitting a bar or a club. A true gem in The Valley. Only downside is parking. The neighbors don't like it if you park in front of their house-my friend was yelled at by one of them. And they ""punished"" me by positioning their trash cans in front of and in back of my car. If said neighbor is reading this review, know this: Next time, I'm going to take out your stupid trash cans. I understand it sucks to have people park in front of your house, but I was not loud, nor did I puke or urinate or your lawn, so chill!",review,wNqwKWaRjClmcKsoJJRFow,3,3,6 +B8ujMtvvpHyEQ2r_QlAT2w,2007-12-14,0UwHyz54cumPuLtoNDAD3A,4,"When I think of Richardson's, I feel warm and cozy inside. I've been on several occasions and I love the atmosphere... I always have a good time at this hidden little gem of the city. + +The 'Cuisine of New Mexico' is unique... they are known for their green chile potato as well as several other pork dishes. I usually go for the fish or seafood specials... they have a standard menu and then specials posted on chalk boards around the restaurant. + +Most recently I enjoyed the blackened scallop appetizer as my entree along with a huge house salad. The scallops were a little bit salty but cooked just right. They were served on a tortilla with rice, beans, and a yummy spicy sauce. Their salads are really tasty, and many of the entree specials come with a starter salad. I went with a group of 4 and we had a couple of bottles of wine and a plain pizza as an appetizer to share. Needless to say, none of us had room for dessert! + +Be prepared for a crowd whenever you go, but enjoy your company and the people around you. Call ahead and make a reservation if you can... if you do have to wait, sit at the bar or by the fireplace; you can't complain once you have a drink in hand and the scent of the fire mixed with hot food and good energy. I'll be back again soon, Richardson's!",review,fczQCSmaWF78toLEmb0Zsw,7,4,0 +hW0Ne_HTHEAgGF1rAdmR-g,2008-12-07,kKDcRJQzj58WgRE-8zEReg,3,"It is absolutely no fun to have a connection at this airport! It was definitely not designed to be ""post-911"" friendly. Let me give you an example so that you will know what I mean: + +We fly in from San Francisco and are told that we will have to go to another building via a bus. We get off the plane and walk...and walk...and then walk some more, looking around trying to find where to go to in order to catch this bus. Finally, we found someone who told us where to go. We walked and walked, and then walked some more until we finally caught the bus. We then had to find the correct gate and go through security again... + +Flash forward 8 days. We fly in and go through customs. (This, BTW, was a great experience because we were the only international flight going through customs.) We rechecked our luggage and are told that we have to go to another building. Yep, you know what I am about to say...we floundered around, having to ask where to go several times. Finally, we found the right place and got on the bus. It then proceeded to go to various parking lots, dropping off and picking up other passengers. My husband and I looked at each other, worried that we were on the wrong bus. Since it was already 4 p.m. and we had not had lunch, we were getting very worried that we would not have time to grab lunch. + +Finally, my husband asked the driver and he indicated that we were indeed on the right bus. We continued going around parking lots until we came upon another bus. The driver told everyone on our bus that we could sit around and wait for 10-15 minutes, or we could get on the next bus and get there quicker. Of course, we all grabbed our suitcases and boarded the next bus, which proceeded to take us to the correct stop (after picking up additional passengers along the way.) + +Next ,we entered the terminal and jumped on an elevator to take us to the security line. There were only 2 lines and of course, we got in the line with the family who had to go back 6 or 7 times because they kept trying to go through the security line with belts on, shoes on, liquids in their suitcases...you get the picture! + +Anyway, we finally got to our gate and were able to grab a slice of pizza before boarding our plane (not before enduring the antics of a 70-year-old United Airlines power-hungry granny who couldn't seem to get her act together, but was determined to show everyone who was boss...)",review,NlvWKd0eF3QEpgd9mlcOaw,1,1,3 +8t80-omyflkywRfu9LPh6g,2011-04-07,K4HmpijSXCZL5QGIoomYzA,4,"Great food, great service, very nice ambiance!",review,Z63UkzjGh91ERnOgamVarw,0,1,0 +KTF-E3NfkJy2wiwcgOPyVQ,2012-12-26,j2G9iV9c8uBC0Y5I6ykhvw,4,"Great place for all your favorite kinds of Asian food. Wonderful service...it's a big place and they were busy, but since someone in our group was in a hurry to get to a flight they still managed to hurry things along. Overall good food and huge portions. The Happy Hour specials are great, too, so be sure to come during that time.",review,rotKO3R8h23YbiLFaZ-BLg,0,0,0 +dGcVT0WGenhh8Np76ta6AA,2011-08-24,he0KPDdijxinW5Rk6DXp8A,4,This location is clean and efficient. Our waitress was awesome and had our order in and food out VERY quickly. The food is all fantastic and of good quality.,review,HXBsqnlIBO61cg2yT5qafQ,0,1,0 +Cz0McL5lUaihqOIw0_Yo7w,2011-09-14,FnkNSPLmrj2aqdEXqX-Cqg,1,"One word to describe Over Easy: disappointing. + +It would've been an OK breakfast place if it wasn't for all the hype. I've been trying to visit this place since I found out it was on Diners, Drive-ins and Dives, so when I saw the deal on Doozy of a Deal, I purchased it right away. I made my own omelette with chicken, garlic, and spinach. The chicken was overcooked and the omelette and my hash browns were terribly greasy. My cousin ordered The Wolfpack and was also disappointed with her meal. It just didn't seem up to par with a place that was on Food Network. + +The icing on the cake was the Over Easy Ice, their iced coffee. They could've given me a cup of water and cardamom and it wouldn't have tasted any different. We couldn't wait to get to the car to get some gum, to get the taste out of our mouths and even that didn't help. After reading other people's reviews, it looks like they hardly had any caradmom; so looks like Over Easy needs to figure out a way to uniformly make their coffee. + +Sorry Over Easy, you were quite disappointing.",review,NVZ_DCjzJhflzwsMtcF9PA,0,1,1 +FWvEeULc-ItQTENPlIyfuw,2011-07-30,SNdIpkhGN7qKCPbBcnQgLw,4,"I took my 6-year-old son here for his first taste of frozen yogurt. There is only one size of cup to choose from, and that is a little inconvenient. You have to make sure you don't fill it to the top. I had chocolate, and my son had a mix of cake batter, red velvet cake batter, and oreo. They were all good. In addition to those flavors, they had vanilla, tart, butterfinger, pomegranate, and a couple others I can't quite remember. There were a lot of toppings to choose from. Chocolate chip cookies, cut up moon pie, dark chocolate, white chocolate, and milk chocolate chips, karob chips, sugar free chocolate pieces, mochi, colored mochi, every crushed up candy bar you can imagine, lots of fruits, 4-5 different syrups, gummy bears, gummy worms, sour gummy twizzlers, gigantic marshmallows, and whipped cream. There were many more things, but I can't quite remember them all. It was the largest selection I've seen, but I'm pretty new to AZ and haven't had experience with that many frozen yogurt shops. The employees were really helpful. Everything was spotlessly clean, and the yogurt was really great. We will be back.",review,IGWmrl24TF2qDbuZE8JWcg,0,0,0 +WowrRUKvjiLX4zT12xU_yw,2009-12-08,X9TPgFqs_ME-Vyp00IW_4g,5,"As a regular shopper of Last Chance, I must equally love The Rack. I am a cheap shopper, so Last Chance has the lower prices, but like I have said before, the product can be a bit beaten up. + +At The Rack it is a much more relaxed environment, way more organized, and the staff is so much more help full. I usually like to shop for shirts, dresses and jackets here. They also have a great selection of shoes, underwear, and pants, all a bit out of my price range though. Last week I found the greatest find! I found the best pea coat ever! It is black with double buttons and a belt, not too long and it has pockets in the perfect place. The best part, it was originally $160, their price was $59.95 AND all their wool coats we 25% off. Score! Now I will be warm in this Arizona winter. Haha + +Check them out. The parking lot can be crazy this time of year, but what parking lot isn't. There is a rumor that Santa is stationed right outside the store as well. :-)",review,_uL7OiQSfNsCd60DrAf7qQ,2,3,2 +sDXINrHrs8phlkzkwQNiBQ,2012-01-06,vXmlEVvfdxTdIFmmQ5cCPQ,3,A bit slow for an airport setting and the staff were blaming each other for an order gone wrong for the customer in front of me...tacky.,review,d1HQAouAzU27WCcSJLHYBA,0,0,0 +ZAd2hniecnqH00t01ODQ3w,2010-12-31,tE--Ghpkni8cVY7mgKFVvQ,4,"Who doesn't like Costco? I can only see two drawbacks. One - do NOT go on a weekend. It is crazy unless you go when it opens and get outta there quick. Two - you only have two people in your household so you don't really need a 20 lb bag of broccoli or a whole box of strawberries or tangerines. Other than that it's a great place to stock up. They have great deals on most frozen foods (try the all natural fish sticks). Great deals on bottled water and cases of soda too. If you buy a giant pack of Q-tips you won't run out for years!! I love the ""Wipe and Clean"" individually wrapped cleaners for your glasses. They come in a giant box of either 200 or 300 and last for at least six months. They have good deals on books, DVDs, CDs, boxes and bags of snack foods like Doritos and Sun Chips, pretzels and microwave popcorn. The bakery has some good stuff too. I don't typically buy meat here because I do not have a large family nor do I have occasion to feed many people. I hear the meat department is quite good though. And Costco usually has the cheapest gas around too. It's usually almost 10 cents cheaper then the closest gas station to me and I can stop by Costco on my way home from work. Now if you're shopping and you require a snack, hit the snack bar. Pizza by the slice, hot dogs, and these yummy things they call chicken bakes are pretty inexpensive. So where else can you stock up, get cheap gas and get a snack for cheap? Costco! It's worth the membership and that membership gets you other perks too. They send coupons in the mail every month. If you don't have a card, you should get one and check it out. I believe they only accept Amex cards but they do accept debit cards and cash of course.",review,ZmIgP4U4Ht9CYmNX0_zP6w,2,3,3 +JhupPnWfNlMJivnWB5druA,2011-04-01,bKumNMH_bvUt0PGq098dcw,2,"Maybe it was an off night - it happens to the best of us. I've hung out at AZ88 before several times, but on the night I plan to review the place they were so off. AZ88 Buffalo CK Sandwich -- I'll eat one or two buffalo CK wing, but to make it a sandwich, I can't recommend. Too much sauce! Also, make sure you chew fast because after a while the buns begin to go soggy - umm mushy bread with CK cover in buffalo sauce.... (Toast the CK it'll dry some of sauce and give a crispier texture) Service was off too! I had 1 beer and 2 waters -- that's all. If you know me I like a few bottles and at least a jug of water with my meal :) - I know I can't get enough H2O! I understand the place is popping, but after being seated, there was almost no direction for the wait staff. Ambience is always cool and love the layout and the feel of the place. Better luck next time! - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,0,0,0 +wl51t6lT7leiX64SlkOx6g,2009-10-28,pivgUkTYRnQsadoomaatcw,4,"This is the go-to place for me and and a few of my co-workers. Why? Because it's somewhat healthy (one of my co-workers is vegetarian and they have a lot of vegan offerings) and we all love the food here. Not everything is perfect, but the meat is always very well cooked and lean, they sometimes use too much garlic (but I like garlic) but the portions are healthy sized, and you don't have regret later for eating badly. + +The gyros here are great btw.",review,15cUUq1KnmjYOPoEbbydqA,1,1,0 +Y5waQA6SfhtHfwkahI4ytQ,2012-01-20,weQGB0li8vCZKHX_YbOaNw,4,"I don't know if I should say I love this place or really dislike them. They are dangerous. It's like they know my number. I was supposed to just passed by and head to another store, but I couldn't help it. I saw the shoe sale, they have it every few months now. Tons of shoes for 65% off. I guess a girl cannot have enough shoes. Hey, my pretty shoes don't care if I gain or loose a few pounds. Today, I got 3 more pairs. Danny helped me out, he has been in the shoe department forever. I remember him helping me since 2006 at least, wow, that is 6 years now. +I love some of the Gianni Binni Dresses, too (that is the house brand). They are very well made and if you are lucky enough to catch them on one of the big sales you can score a great dress for under $80.00",review,8p4at4zdzCpueAmSBaorZA,3,1,2 +ObnZiF99lqggVasgyGBtVA,2009-01-29,1H8fvMopPcKmNihI2QnjvQ,1,"I've been here 3 times. The first was fair, so I gave it another shot, second time fair again, third time (kyoto was closed soooo....) let me start by saying, I've been in the service industry for awhile. I know the difference between good and bad service. If they had been busy this would be one thing, but there was us and a few people at the bar. NEVER HAVE I WANTED TO THROW MY BURGER AT SOMEONE AS MUCH AS OUR SERVER. The server was an idiot and the food was ALL burnt... medium burgers are not CHARRED on the outside and RAW on the inside. Steamed veggies are not CHARBROILED asparagus... everything was so horrible. We didn't complain, but we did ask about the charcoal that was our veggies.... Which we were given a crappy attitude in response. We weren't even looking for it to be taken off our bill, just a recognition that the food was TOTALLY burned and half our orders were wrong. BTW there was no offer made either to fix anything... in times like these SERVICE SERVICE SERVICE AND QUALITY / CONSISTENCY will get you through. if you don't know what a good meal is and you want to think you're cool cause you hang out in a place that looks like it was furnished by IKEA, you should try it. There are better places to spend hard earned money.",review,S4jPvmZU45O5bDaCzSrfxw,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2012-06-21,x7_j5hVUCh_g3o9M5Q8-1A,2,"This 2 stars is extremely generous. Wanna know why? Read on. + +My party of 7 and a baby got to Pappadeux's around 6:30. We were told that it would be a 30-minute wait. It ended up being more than an hour. We were standing right in front of the hostess station, yet no one ever came to give us updates on how long it would be for our table. We would go check about every 20 or so minutes. One time we were told that our table was ready. When we went to check on it after about 20 minutes we were told that they were waiting on a busboy to clean it. A few minutes later they were still waiting on a busboy. In what universe does it take a restaurant 30 minutes to find a busboy to clean a table? We watched group after group after group get seated. A group of 7 that came after us was seated before us. We ended up being sat next to them; by the time we were getting our menus, they were finishing up their meals. + +Once we were finally seated, we waited almost 10 minutes before someone came to our table to introduce himself as our waiter. When he asked how we were doing, we kindly told him that we were a little frustrated because it had taken more than twice as long as we were told, and we had been told twice that they were waiting on a busboy to clean the table. The waiter said that it was a busy night and said that he didn't get paid to deal with unhappy customers. He asked, ""So are you gonna do this or what?"" WHAT?! It was so rude - I don't know how he meant it, but it came across as sounding extremely annoyed. We were appalled and my boyfriend asked to speak to a manager. + +The manager came over and spoke with my boyfriend. Not sure what was said, but after that things got much better. The manager brought us an appetizer plate on the house. Our food ended up being really good - including the alligator. I got shrimp etoufee, and it was great. The gumbo wasn't so fabulous. Overall, everyone was satisfied with their meal. We got three different drinks, and they basically tasted the same: like cherry Nyquil. + +The food was good, but it's not always about the food. The service was horrible. Don't think I'd ever go there again. There are too many other places with great food and equally great service.",review,k7lKu0DYaMngcn9XW7yibA,0,2,0 +Hd6Kh_BcorPhCWVn6pMu4Q,2009-11-11,fbL2z1wk-_fChGy2T35zNg,3,"I think Zipps is alright. I fully remember this being the only decent restaurant near where I lived in North Scottsdale, so it was this or nothing. + +Food here is good, though they messed up my order and put sour cream on it...ew. But that's a common error, whatever. + +I'm not really a fan of sports, and it was loud in here, (which is to be expected), so that's not particularly my taste. However, I found it to be staffed with friendly people, which brings it from 2 to 3 stars in my book.",review,0KXxuKxlspsO6CrDLgQJ-w,0,1,0 +WVwnnx8Cut5Wih2KYtXKcQ,2012-08-18,Drqi2rzZVtQZVSMYC7rTtg,4,"Beautiful church!! We started attending mass here after they brought Jay Soto on as their music director. He has beautiful voice and also plays piano. We like Fr. Robinson the best - we've heard all of priests except for Fr. Sullivan. This is not a cookie cutter church - it feels like a real church with the stained glass and the stations. My husband is of the faith - not me and I'm not given a hard time for not taking communion like the other church we used to attend. + +I attend to hear the music and companionship for my husband.",review,xQyx6TU1r8lVeCspzYdrAQ,0,0,0 +iDga4CEpgHTaS4VEQ0fQTw,2012-03-18,rWkM4DYhNIQJAhfabD7_qQ,4,Pretty good. Oxtail was awesome. Plantains were just like I remembered them in the Carribbeans. The jerk chicken was okay... Needs a little more heat. Beef patty good (I'd eat it again). The workers were outstandingly nice.,review,bUv99Lua3zgkSXEJ2-KjzA,1,0,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2011-04-10,eST39HnrZsFukdXIOreGww,4,"I'm a huge fan of Grimaldi's Pizza. The Better Half and I stopped in here for dinner and we had a huge appetite.....which is dangerous in a Pizza joint for me. + +I ordered: +Caprese Salad - $7 +Personal Sized Pizza ($9) with: +Sundried Tomatoes - $4 +Red Peppers - $4 +Ricotta Cheese - $2 +Mushrooms - $2 +Jalapenos - $2 +http://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=DZ7xu0LF2IIg2_dI1c_CrA + +The Better Half ordered a personal sized Pizza ($9) with: +Pepperoni - $2 +Mushrooms - $2 +Feta Cheese - $2 +Basil - $2 +http://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=1PaOTe8Ys9uJUP3u4DjHiQ + +Yeah, all toppings are al la carte here....so it's not cheap. The Pizza was awesome! I enjoyed every bite. The combination of the sweet taste of Sun Dried Tomatoes combined with the spicy kick of Jalapenos mixed in with Ricotta, Mushrooms, and Red Peppers hit the spot! +http://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=l4mZAt7mXpslp4LqexFy5g + +The Better Half enjoyed her Pizza too. Since I'm on my no Meat diet, I took her word for it....as much as I was tempted to give it a try, I resisted....maybe next time. + +To wash it down, she had 2 glasses of Brazin Zinfandel $8 ea, I had 2 O'douls $4 ea. All in, the dinner was $72 before tip. + +Overall, it was a nice dinner. I finished my food, she took home 1/2 of her Pizza. + +Return Factor - 100%",review,kGgAARL2UmvCcTRfiscjug,11,15,8 +k76odRRsXPErPzB0gjn-3g,2012-01-13,wOKT8hx_C9nmXrYgABYVnw,5,"I thought this place was outstanding! The staff was awesome, the food was excellent, overall appearance of restaurant was nice!",review,Ok473RVQpmfPzTSoije-5w,0,0,0 +6Y-6Y6sy6qOQHrWI37zR1Q,2011-03-02,eXG-j8bL7Qi7JsKtwndilw,2,"I went for lunch on a weekend recently. +Kimchi pancakes, spicy pork bbq lunch special. + +The seasoning on the pork bbq wasn't what it used to be. +It seems like the texture is dried out and the flavor is bland. +The sauce is probably watered down. +It lost the yummy sauce/ flavor/ seasoning it used to have. + +The kimchi pancakes weren't that great either. + +I used to be so loyal to this place but after being let down the past couple times, +I think I might as well just cook at home (and deal with the dishes later)",review,I-P1v7sRjDLEfVOndp01kA,1,2,1 +BD74uSwDe175zEqfppDRvg,2012-01-24,85470uspsJ5u6Qq5rHMytA,4,"I finally tried out Valle Luna on Sunday. I must say that the food is authentic and one of the better Mexican restaurants in the Valley. The salsa and chips are homemade and simply tasty. I had the fish tacos that were fried and came with cabbage and soft shells - delicious. + +The waitress that served me was attentive. I must say that the seating did take a while and I was one of two people in line, hence no five star here. The portions were decent, the tacos could have had more fish in them. + +Overall I am pleased with the restaurant and you will be too.",review,7brf9WC0Gr_7bUBXEHs9FA,2,3,1 +EreqxAEKm62XtDMRYXglDw,2011-03-28,GbLFo44D1DIiEs37pHO05w,5,We have been back several times since my initial review and the service and food have been consistently excellent for both lunch and dinner. Love their green chiles!!!,review,1KfR6yCS4aRbR8CKCNOJNA,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2009-03-04,aYjwrhDseptZ6lF0KmNVvg,5,"Great beer, Good atmosphere, Non annoying music and great wait staff make this my favorite place to spend an evening.",review,JDVbRaxrjJaLX75UQ8Q3Ng,0,0,0 +vtbGnxCCj2I9M9QoHXpoEw,2010-07-21,Rpzq0qslMQzu0mm-brqwJQ,4,"It's hard for me to rate this place because its a little run down.. but the groomers are amazing, so for Groomers- 5 Star, for actual facility-3 Star. + +I've used Janice for awhile now when she was at Fido's on Bell Road and followed her to this location. The location is right next to Subway and is a hole in the wall by all means! They have two groomers from what I can tell, Jennifer is the other one and my bf's dog has been groomed by her and she did a great job too. + +Why did I follow my groomer to this new place? Well 1. Fidos Closed and 2. So many places just shave the dogs down, but Janice really takes the time to get to know what you want and takes good notes so when you come back she knows exactally what to do. + +If you are in the market for a new groomer I highly recommend making an appt with them just dont be shocked by the location!",review,WPnoGr_ukB5BubC3bITkjQ,0,2,0 +F0ZXhPJD8yNS3xzTxsichg,2008-10-10,x9Wgd0eZFmnT29_RVARA6w,4,"This is a great venue other than it being in the middle of nowhere. + +Went to see Rockband Live (The Cab, Plain white T's, Dashboard Confessional, and Panic at the Disco). A good lineup for what was pretty much a promotional event. + +The concert was great, the sound system and acoustics are pretty much perfect. I highly recommend seeing your favorite band play at Jobing.com arena!",review,90a6z--_CUrl84aCzZyPsg,2,3,1 +eFK2QePKvAowH-uX-0V4hQ,2008-05-13,wd68gPA7zFNXqOmxOzEg7A,3,"First, I'm a regular here. Sunday afternoons at Charlie's are something like church for me in the Arizona springtime. Cold beer, good friends, warm sun and boys playing volleyball in the back court (although it troubles me to see so many of them playing barefoot in what amounts to an oversized ashtray. PLEASE keep your shoes on, boys! It reminds me of playing volleyball in an enormous cat litter box.) + +Charlie's is NOT for the gays who like to put on their tightest T-shirt, gel their hair up and pretend like they just saw someone they know so they can do anything but make eye contact with another human being. + +It IS for the gays that are comfortable with themselves and enjoy talking to other gays that sometimes are cowboys, sometimes are drag queens, but are almost ALWAYS friendly (even if they're a bit tanked). + +The small pitchers on Sundays have kind of become a tradition. And it's fun to watch people two-step on the weekend nights. + +Downsides? Sometimes the crowd looks like the crowd at the rescue mission. The Arizona anti-smoking law somehow doesn't apply to the COVERED patio in the back, therefore making it uncomfortable to breathe back there. + +And, PLEASE take a cab if you've had too much to drink. Cops hang out waiting to nab ya later on at night. + +Overall, it's a fun, if somewhat tired, staple of the gay nightlife in Phoenix. Also have ""branches"" in Chicago, Denver and Las Vegas. + +And, it's always a sure-fire hit with straight sisters, brothers, kids and moms (yes, I said moms) that are in from out of town. + +Especially if they two-step.",review,MfBHBiSNol6fsNU46AlhgQ,4,3,2 +pfTwzep_4hRTX_jXoi38cw,2008-06-16,g1vOR0-ys2f_csvkk7evgA,4,"Me and my sis were greeted with a pleasant smile and I like the whole $5 part with the coke and fries. I dont really enjoy drinking soda but I'll take it anyway especially if its fruity, they have all the old school pop in cans Shasta and RC I should learn to take more pics but this place is cramped inside and I may be claustrophobic. I had the portabello mushroom burger see pic it had rice and all this other stuff that just kinda fell out all over the place it was super messy but pretty tasty. The fries are soggy which ordinarily we wouldnt eat but they were really good we couldnt stop eating them. We sat on the back patio and got checked on by I am assuming was the owner she asked how we liked it, was way nice I love the friendliness of the place we left hekka full and happy! Next time we go we will probably just share an order of fries though.",review,V0y4fqp-4pSRfsz0FmsjPA,3,6,1 +FkHhy6kWeoJf0xJTqzRWmg,2012-11-01,5cjsStpbdxdvFF47A9gOfw,3,I really just come to the fair if there is a concert I want to see. It is fun to walk around and see all the sights. I did like that if you got in before 6pm it was half price. More money to spend on goodies. The piggly wiggly currly cheese fries are good. Loved the kettle corn and fry bread. But you can't beat the really cheap concerts and usually every year there is one person that you are like eh 20 bucks is worth it to see them!,review,7Wr91hSKfgkKnkyhLOlwww,0,0,0 +yc5AH9H71xJidA_J2mChLA,2010-01-30,NmSjR-oql5BKxoB1dZQWLw,4,"I went on a Friday night after work with 3 of my girlfriends. It was raining, cold, and we were HUNGRY! Got a good spot right across from the front door, very surprised. The parking lot was parked with cars. Must be our lucky night! Found a table on the other side of the bar, where the music was blasting. It was still all good! + +We ordered: Rosie's Chili Con Quezo Dip, Patrick's Irish Potato Skins, Jimky's Famous Chicken Wings Mild, Quigley's Quesadilla, Rosie's ""World Famous"" Pulled Pork Sandwich, Corned Beef & Cabbage, & Sweet Potato Fries. And of course drinks!!! Yes, our eyes are bigger than our stomaches. The waitress warn us that it is ALOT of food. + +The girls said the drinks were weak, but I only had ice tea. All the food was great! The service was wonderful. She was very nice! + +Loved the central location and the pub atmosphere!",review,_PzSNcfrCjeBxSLXRoMmgQ,1,0,0 +yVQiGdxmnrkJDyQXv2maNA,2010-02-28,qqsrGLV53Ccib6l0sp6XOw,4,"I've been a Da Vang devotee for years and wanted to try a new Vietnamese place tonight and Pho Thanh didn't fall short. In fact, I think I might like this place a little better than Da Vang, but I'll rotate between the two since they're both so good. + +First off, the portions are gigantic! The Bun bowl could easily serve two and I had tons of leftovers for lunch tomorrow. They use the fat rice noodles instead of the vermicelli, but I think it made the dish a little heartier and certainly easier to eat with chopsticks. + +Hubby had the Pho and the broth was amazing! Savory, a little salty, and the spices were perfect. Perfect to warm your bones on a rainy day. + +The restaurant was more of a cafe style than family sit down, but exceptionally clean and the service was great. There was quite a diverse crowd in there for a Sunday night and everyone's dishes looked fantastic.",review,hq0WUfau1Mh3GyHn8oVdNQ,5,7,3 +8H1DwdAAgSBtwDeb2R-hmA,2011-05-09,WEAnCtYW4DN4rdh_yiQm1g,4,"there is one problem with bagel nosh: it's not close enough to tempe! went there on a sunday a little before closing-the bagel selection was sparse but they offered to get us any kind of bagel we wanted. the garlic,feta, and dill cream cheese was amazing and the breakfast sandwich looked hella yummy! went to get a refill on our way out and the owner offered a free large glass of iced tea since they were about to close. the service was great andi might have to make the trip out there very soon!",review,x0r-IamYgKMgF3v7tJ_PTg,0,0,0 +fK7ujDbjhRFEe2D7eIwK4w,2010-11-30,Zq97qvYd_CSchS_ixk25pA,4,"I'm not generally a fan of restaurants located within a mall, especially if it's a chain restaurant. I just don't care for the mall dining atmosphere. However, Kona Grill really surprised me! Especially the seafood. For a restaurant located in a mall... in Arizona... the seafood was awesome. + +There are 3 important things you need to know about Kona Grill: + +1. The Sea Bass is melt in your mouth, oh my god, foodgasm, amazing. Our waiter recommended it to us and I was highly skeptical. I thought that he was pushing this dish just because it's the most expensive one on the menu. Well, aside from the fact that it's the priciest item at a chain restaurant, it tastes more like a 5 star dish that would cost double the amount somewhere else. I'm telling you, YOU MUST TRY IT! It has this pan seared taste that is to die for. (I also can't forget to mention that the Salmon is super tasty as well). + +2. The Cool Cucumber Mojito is not only refreshing and delicious, but it is also less than 100 calories! It's pretty strong too. This drink is pure heaven for a mojito lover like me, and it gets extra bonus points since its low calorie! + +3. Happy hour!!! It's the best and it's always packed. Kona Grill has great deals with always changing specials (I suggest checking their website before heading over). + +Just try at least one of these 3 things and you'll see why I'm such a fan of this place. Overall, when it comes to dining at Fashion Square Mall, Kona Grill is pretty impressive.",review,w4suxL1zlxsihVlugZZDAQ,2,1,0 +Y-9dJvw-J2d9QKfuL7mKgA,2012-07-03,8w_Rje56c4KaCPL2HgHkBQ,1,"Can someone please tell me why people go here??? + +Went to breakfast with Deb L, and she had a Living Social deal or one of those deal thingies. The place was packed, probably because it's a holiday week. + +That doesn't excuse the EXTREMELY poor service. We sat down and waited. And waited. Servers walked by every few moments, nobody stopped to fill our water glasses or take our order. Finally, we both said something to a girl who walked by. She seems mystified that there was a job to do. With that many people working, getting a cup of coffee shouldn't take 15 minutes. Yes. 15 freaking minutes. + +Food? Mediocre at best. I got the traditional eggs benedict with home fries. The only saving grace with the amount of ham on it. The English muffin didn't seem to be toasted. The eggs were *ok* but nothing great. The home fries? My 9-year old niece could do a better job. My burps right now aren't even good enough to brag about. + +I'm sure if the service had been better, I wouldn't be so miserable right now. My food coma isn't satisfying. I will *never* go here again. Ever. I felt stupid leaving a tip, it was THAT bad. + +Total. Fail. Blech.",review,6kmu0mYbdpMIOZ6Y0eVsxg,4,8,5 +jQST5lkLGX9L52-A10TGTQ,2010-09-20,FfxBgCZw7ZaBrBxrV3Sh4g,4,"Tum Nak has so many good reviews and they deserve every one! Far east Mesa can't be the best location for a place like this, but they seem to keep customers coming back (I definitely do anyway!). + +The Yellow Curry (hot) is my favorite, but I've tried just about everything on their menu and I've never been disappointed. + +The only negative is that the place is super small, so as the popularity gains, the more I find myself ordering to go :)",review,6lik3VpQTL273Cy0iS8n0w,0,0,0 +kS0EzDlPx_Mdm_qNHU2gdQ,2008-07-28,os80wX-Dms7AYlnyGsY4vg,5,"Holy crap is this place good. With the gazillion milkshake flavors to choose from, I had vanilla....... kinda anti-climatic I know. Next time though. The burgers were huge with 20 some odd topings to choose from. I had onions and pickles...... I know, another let down. Next time I sware. Also the onion rings are tops here. Fries looked good too. + +The decore is a nice 50's diner type with very friendly staff. Outdoor seating is nice when it's not hot out and it's very close to the theatre which makes it the perfect stop before seeing Mama Mia........ J/K on that one. Saw Batman.",review,HMMm7LFFEOoMMonk32mEhg,1,1,2 +urBWfXQjyyWIO5B7FvnOpg,2011-04-11,MDV50jR62a1CnLL_TBgzXg,4,"Was in Phoenix for a softball tournament this past weekend and stayed here cause it was one of the host hotels for the tournament. + +Front desk staff were friendly and fast so check in was a breeze. The room was great. Had 2 double beds in a separate room and a queen size pull out. Beds were comfortable and linens were above normal hotel quality. Bathroom was big...though it contained the closet which was kinda weird. Towels were over sized and very soft. Small balcony was nice. Parking was in a structure next to the hotel and we never had a problem. Loved the atrium like interior of the hotel. + +The only cons I can think of were +...the elevators were kinda slow. +...the toilet didn't flush right away and you had to hold the handle down a few seconds. +...and the hash browns at the breakfast buffet were extremely dry hahaha + +Over all this hotel is a very nice one to stay at and I would definitely stay here again if I am ever in Phoenix again.",review,W7Wyu4Fau5w6TKHQpmPM2A,0,1,0 +BQZXVris6SgxAvwuxw1ASw,2010-07-25,A1gxmVcXY3IopTYe4AGNHw,4,"Let's make it very clear that this is not a country club, but if you are a golfer like me and play ""slightly"" over par, this is a good course to play. + +Here are the pro's: +-Cheap green fees (summertime, it is only 10 bucks for all you can play, I believe after 3 p.m.. I've shown up earlier than that and they still gave me the same price, with a cart. Awesome) +-The staff is pretty cool +-You almost never need a tee time, you can show up and they will usually fit you in no problem +-No dress code (a huge plus while playing in the summer) +-A pretty forgiving course, wider fairways +-Cheap hotdogs in the snack area and they pump the AC pretty cold in the lounge +-No doglegs on the course (I fucking hate those) +-They don't seem to give a shit when you smuggle your own beer on the course +-No punk kid cleaning your clubs 2 seconds after you are done playing so you feel obligated to give him a tip + +The Con's: +-A good portion of the grass is fucked up. I've dinged the piss out of my clubs having to hit from the dirt on this course +-The greens are in bad shape. You throw away a lot of shots putting from the ""mud"" or ""dirt"" I played there once where some asshole carved a pentagram in the green next to the cup. It always makes me feel better knowing Satan is watching how shitty I am playing +-No bathroom on the course except for the port-o-shitter half way through the course. It usually has so much urine on the floor and walls you are better off pissing in the bushes or out of the cart when you are driving it. I was there one time where someone actually shit on the floor of the fiberglass shit house +-There seem to be a lot of homeless people between holes 7 and 8 asking for change and/or beers set up by the dumpster next to the golf course +-There are a bunch of cats that run out of the brush in the wash. I almost hit one with a chip shot the last time I played there. + +All things considered, this is a good course to play and have fun at. Plus you can't beat the price. Just don't expect Judge Smails at Bushwood Estates.",review,KgnQz4WFT892AXmimnP4jg,0,2,5 +52QtjHlHoa7V611bOvv1aw,2012-10-21,yYKZ2NwTLLTLtKAIkmzdUA,4,"Located in the W Hotel in Old Town Scottsdale, this hipster hangout is always busy. I recommend a reservation if you're planning to dine here. The Better Half and I drop in here from time to time. Since I don't eat Sushi, I order: + +Ji-Dori Chicken Skewers withTeriyaki Sauce - $10 +http://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=x_60nAIMvJX9k_s9HAPiOA + +Filet Mignon wrapped Asparagus with Soy Mirin Sauce - $15 +http://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=19cHPtx8ahwZTPC5xIARFQ +http://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=_4XhXTuYKQnypHmylm-mQg + +And for Dessert, a warm Chocolate Cake...yum! +http://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=KoyBtoSTBrhM2dLD8zs_PA +http://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=iKBiwthdGtENIqWfGK1V1A + +The Chicken Skewers are very tasty. The Teriyaki Sauce they are glazed are sweet and have the right amount of ""sour"" kick to it to balance the flavor. The Filet Mignon wrapped Asparagus is awesome...the Filet is tender and juicy and the Asparagus compliments it well. Of course, the Chocolate Cake dessert is a nice ending for the meal. + +The service can be a bit slow at times, depends on the server. Generally speaking, it's pretty good considering how busy they are. + +The people watching here is pretty good...watching all of the hipsters is hilarious. + +Return Factor - 93%",review,kGgAARL2UmvCcTRfiscjug,10,7,3 +mjoxSQR7bFQtlIIjfNfaSQ,2012-03-02,ZlqtUST4KfrOTrH0jcKbQQ,5,"I love this place. Food is ALWAYS fresh, cook correct and service is great. Not to mention their lunch specials!!! My husband and I always spend less than 20 bucks and get full and satisfied EVERYTIME!!!!",review,Zi9UXJ81qMtzXRZ8mp7PxQ,0,0,0 +CLJ0Bb2AEAOSlQeBk-yqyQ,2012-04-21,A0gAq2VLnsniqzhM9Kcylw,3,"The Jury is still out on this cleaners. Took in 6 pieces, I expected to pick up six pieces the next day. They did a nice job of 5 out of the six garments, ranging from mens slacks to sports coats to dresses; but destroyed one dress. Shouldn't have run it through the dryer - who knew - I expected Catalina to know. Still don't have the problem resolved. So - this is a mixed review. Very happy on 5/6ths of the job - never have had a sports coat done for $2.50 before - but still looking for closure on the last item. Who knows - they may delight me.",review,xAVu2pZ6nIvkdHh8vGs84Q,0,2,0 +bgTB6MgdVQssXhkNJ7qIfw,2011-07-27,ZzfRdoxVm9d5iH1bpmtzgQ,2,"Well, let me start off with a look of confusion at the exceedingly rave reviews of this dining establishment. (Raised left eyebrow, and a smirk, but you already knew that) + +So, initial impressions: Seemed like a confused ambience. Kind of clubish, with a little hubristic haze. The music was the only positive part, reminding me of HGTV's 'Selling New York.' + +The waitstaff seemed somewhat confused, as we had 2 waiters at one point, but the bussers were top notch! + +We were also sad to hear that the ""Happy hour"" menu was only in the bar. + +Now to the food: The menu and the prices associated gave me a bad feeling right quick. I am too used to excellent sushi, at fair prices, as well as happy hour menus with all the favorites. (Especially dragon rolls! YUMZOID!) + +We proceeded to order a couple appetizers, and a handful of rolls. None of which were memorable in any positive light: + + The avocado roll was insipid with a strange clash of textures and flavors. (Soft avocado, and carrot sticks likeyourmompackedinyourbrownbaglunch and a strange dusting of what tasted like bread crumbs...) The spicy tuna had to be the only one that was acceptable, and it was interesting to have chunked tuna vs. the usual frappe. The softshell crab was weak, and the spicy yellow-tail was spicy, but pretty one-note, and not satisfying. + + ***Bottom line: We decided to pay our bill, and then go straight to one of our favorite sushi spots to satisfy the sushi craving that we definitely missed out on: HIRO sushi. Man, let me tell you, I threw down a D-backs roll and a Crazy roll, and Hiro sushi was indeed the sushi Hero of the day ;)",review,hTau-iNZFwoNsPCaiIUTEA,0,2,2 +_wrA7CMbMqcWEDCNghi5cg,2010-11-10,4M_KDwTdcQ8Ju-kPKMYu3A,2,"I am only reviewing it with 2 stars because my waiter was too busy and I don't think that was his fault. We showed up and was able to sit right down which is great because when we left there was tons of people waiting. We had a coupon for joining their mailing list that gave us a free meal with the purchase of another...which is awesome because who eats alone? They also recently remodeled the interior and it looks pretty good. My wife ordered the usual broccoli quiche and it was only a little warm. I usually order the bacon and eggs which is awesome but today I ordered the Florentine Benedict and it was very good. The food is always great here....when its warm and the service is usually awesome except today, but I wont blame Kevin since he was obviously over-sat. I hope they get their stuff together because I WILL go back and I know that I WILL be able to write a better review afterward since I have been here 100 times and this was the only poor experience I've ever had.",review,EP3cGJvYiuOwumerwADplg,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2011-01-19,ejs2WFrw9-lBWAGlpvKP3w,5,"I've eaten here twice, and both times enjoyed myself immensely. + + First, note that this is the smaller location; the one in Mesa has more tables and space. This one is closer to me, so this is the one I go to, but if you are looking to have a large group, you may wish to go to the Mesa location. + + That said, I really like this one. The mood is very raw, because of the small size, even at a table you can see the cooks behind the bar, hear the clatter and clang of the kitchen. That said, you can still have conversations here without issue; you just have a bit of background noise. + + The food, though...the food is spectacular. Seriously, look at that menu, look at those pictures. The first time I was there I had the chicken tikka masala pasty. Not as good chicken tikka as a straight up Indian restaurant, of course, but still phenomenal, and the pasty just made it that much better. I also snagged the bananoffee pie. It could easily provide dessert for two people; I ate the whole thing. It was just that good. Not too sweet, very banana-y... + + Eat here. It's really that simple. + + Also, as a tip, there's a parking lot 'round the back that is usually not full, unlike the one on the front. And, though the address is off of University Drive, the front is really facing Hardy. Threw me a bit the first time I was looking for it.",review,mB7533hZM30GIULkWFBfhQ,0,2,0 +jGldmslgIegQNM5kvb851Q,2007-05-24,HPDJ0zoxkN01Mf4tn2Irkw,5,"Great Italian food with portions designed to share. + +And it was a good thing our waiter brought that to our attention (he must have heard our comments on the prices). We ordered 2 half portions and one full (lobster ravioli, a brick of lasagna, and something else I couldn't pronounce) and it was just enough for the 4 of us. After the alcohol we even kept the bill under $100. I would definately recommend this place, just be sure to bring a few friends and an appetite!",review,5E193w76Qlhoi1gkyakW2A,1,4,0 +Aq6lSh0dfAYMsLoJf17BJQ,2010-12-30,ei37AD0SWCF85kNH3eOGUA,5,"Sometimes things happen, and when they do this is the place where you want them taken care of. The orthopedics department and trauma department have some of the best, and nicest Doctors you'll find in the state.",review,Qw9bEL0ylJ2UVvQpCxFv0Q,0,0,0 +XbVqzUHS3c9FhG4lI13c3Q,2009-06-08,9sGe3ZfCoTk9DsohmADuAg,5,"i absolutely LOVE maxim and i have eaten there approximately 2 times a week since i learned about the restaurant a year ago. the atmosphere is pretty awful, but the food is amazing. i get a #86, which is a noodle, tofu, and vegetable soup (the broth is meat based). it is comforting and cheap and always improves a bad day. everyone i have taken there has enjoyed the food as well (though they tend to enjoy the vietnamese dishes more than the chinese ones). highly, highly recommended.",review,nFCa6DPO60ZGns67Z74BVQ,0,1,1 +znmvCpcwxYk_kYCqtUFt5Q,2012-07-22,5FUcAzlliTBz5FKLoeyaUA,4,"Delicious kosher food in Scottsdale? Vegetarian? Awesome! + +We go to this restaurant regularly. The food is always great. The service, as many other yelpers have mentioned, can be excruciatingly slow some times. I will say that in the last month or so, they have hired some more waiters and those boys are hustlin'. It's an improvement, but I agree with others who have said this might not be a good choice if you are short on time. + +I like the Ginger Soy Beef, Veggie Hot Pot, Kung Pao Chicken and so on and so on. The food is very good, but not super spicy how I like it. I would recommend this spot for the great food and the improvements in service.",review,gJ3neu7zF9a8wi-fUV0zIw,0,0,0 +rXokveEDu3PEtmd_-_4IIQ,2012-04-16,szs-SDBYTva7Gq2AjTE3UA,5,Pet smart did a better job at grooming my dog than my last mobile groomers. They cut and wash my dogs hair just how i like them. Service was nice the young ladies were always helpful since two dogs on a leash can be difficult. I shall return to get my dogs groomed here. Would recommend.,review,-UFyjmPUAnSLG6qGzAfMXw,1,0,0 +fYv4xwoPt3a8QKBNhEJfDg,2011-11-04,Ni9SgtkVtZkwkLrUGy6wDg,5,"If you are looking for a great location for bulk specialty flours and grains, beans, Freeze Dried fruits, vegetables, meats and dairy...they have a wonderful selection. They also have water storage and emergency supplies like solar ovens. I'm a big fan!",review,O9HXzHNjieCQM9ne3A6TQQ,0,0,0 +igvATKdi31Ve7Jd2B6-g9g,2007-10-27,Q9Nm34SRrTJDieiG40bTCA,5,"I was looking for a place close to where I live for eyebrow waxing and I was referred by About Face Salon here. (According to AZSpaGirls, About Face are the eyebrow experts but they no longer offer the service....) They were great about squeezing me in the day I called. Angela was fantastic, she worked very quickly and with a very light hand. She is so good with the wax that she doesn't need to tweeze at all, which for me is always the worst part. (Granted I don't have very um, complicated, eyebrows). She was very sweet and for $15 I will be returning to her.",review,qASPib1Z8ft8e96dtbh66w,2,4,0 +jB1fFl1eIEPYe5FLpCZ5Jg,2012-02-17,f8RaRBVeiM0dMYLI200SPQ,5,Now open on Saturdays!!!! Yes!!!!!,review,04xW5mhSBaCzpjbcf2VSZg,1,3,1 +V9i9LnTg9H2XvzqCVBSOXg,2011-08-25,3-SyHzfbwbVYh77QQ6FLBw,2,"This was my first time visiting Tandoori Times. After seeing it advertised on Groupon, I thought I'd give it a try. My friend and I decided to go for lunch to celebrate her birthday. It was very busy, which was promising. The waitress was on her second day working there and was unfamiliar with the menu, but she was friendly. + +The house salad was mediocre, the entree (Algoo Gobi) was delicious, but the desserts were AWFUL. The ""mango"" ice cream was a neon orange and tasted nothing like mango, or any flavor of ice cream Id ever tasted actually (kinda vanilla, kinda puke). YUCK. The rice pudding was not worth eating either. + +The worst part of the experience was being followed out into the parking lot, after leaving the Groupon and cash tip, to be told that we needed to come speak with management about not ordering at least $40 worth of food! Really? I told the waiter that we had spent just over $30, and we obviously didn't expect any cash back from the $40 Groupon. He said his manager was ""fussy"" and wouldn't like it. I basically told him that was too damn bad, and that I wasn't ordering $10 more in food; I was actually kinda saving them $10! + +He finally figured out what I was saying and left us alone. I did end up calling the manager though, who was not pleased to hear about our experience with the dumb waiter. + +I don't foresee returning there.",review,k0-S9vOCLquje8TMKmjVDQ,0,3,1 +TwMfahsPHFnkLiqqvyalAQ,2009-09-28,F6aqWYlqmMed3WJEJqqgtA,3,"Decent sports bar. Don't get me wrong, they have tons of beer choices, decent to good service, and plenty of pub fare... Few things that bugged me last time.. + +No waitress for about 5 minutes after I sat down + +Southwest egg rolls, while good, were tiny compared to other places + +Too many tv's had the volume on.. the football game was impossible to hear.. + +I'll be back though..",review,QhuESGhOQWnKqwlSrISm8A,1,1,1 +DrG1ShT9meH9wpJ26aUj_Q,2012-05-29,UoqPzTb-vSsbZRZg3G_qKg,5,"I've been using mineral makeup for a couple years now and Bare Escentuals is the best in my experience. You can order their stuff online as well and it's free shipping after a certain amount, but I like being able to ask questions and compare things side by side before I buy, and the salesgirls are always really helpful with that. Once I find a product I'm loyal to, then I do the online thing. This stuff just feels much better on your skin and doesn't clog your pores. It seems like an initially pricey investment when you're first getting started, but mineral make-up keeps much better and I can use less of it to achieve the effects I want.",review,h3TnHCqFga0VgPO390PjKA,0,1,0 +Bc4DoKgrKCtCuN-0O5He3A,2010-12-07,MExqiQcg4Yfg7HRyjnxskw,5,"When I say a certain food contains ingredients such as blue cheese and bacon, what comes to mind? +No, I'm not talking about a salad, I'm talking about an ice cream sundae! + +Sweet Republic is an awesome little ice cream parlor located in a strip mall in Scottsdale, Arizona. This amazing place makes all their ice creams and sorbets in house. Sweet Republic makes some pretty creative flavors. These are just a few examples of what we sampled: + +Basil Lime Sorbet +Salted Butter Caramel +Apple Pie +Dessert Honey +Maple Pecan +Almond Buttercrunch +Cashew Turtle + +All of these flavors were wonderful but there was one more that really got me all hot and bothered, and that was their Honey Blue Cheese. That's right, Blue Cheese ice cream. When I first saw it, I did not know what to think but after my first lick I was hooked. It tasted just like a sweet vanilla / honey ice cream with blue cheese crumbles mixed into it. I know it sounds weird but this ice cream is phenomenal. It was sweet, tangy and somewhat salty, all at the same time. Instead of just enjoying this ice cream alone I decided to make my own blue cheese sundae. They have many toppings to choose from, including bacon brittle. When all was said and done my creation contained two scoops of their Honey Blue Cheese ice cream topped with a salted caramel sauce, bacon brittle and a homemade marshmallow that was toasted with a blow torch. This sundae was exploding with flavor. Every bite was crunchy, salty, sweet, tangy and delicious. +My fiancé had a waffle cone sundae that contained Salted Butter Caramel ice cream, Almond Buttercrunch ice cream, salted caramel sauce, brownie bites and a homemade marshmallow. Hers was also amazing. + +The service and prices here were both great. The girl working the night we visited allowed us to sample as many flavors as we wanted and was really friendly and patient with us. The prices here are similar to Coldstone's. + +I'm absolutely in love with Sweet Republic and would seriously make a special trip to Scottsdale just to have their ice cream. I shouldn't be telling you all this, for fear that you all would think I'm a pig but I liked their Honey Blue Cheese ice cream so much that after I finished my sundae I ordered a Honey Blue Cheese milkshake to go. It was so yummy!",review,u5bvcT_3Go0O3Xk4Am8CWQ,16,15,14 +_-9pMxBWtG_x8l4rHWBasg,2012-05-31,TWP5yC2ukn3IBZW_l6B3Wg,4,Great happy hour deals here! I loved the Cotija grilled corn and BBQ pork cheese crisp and was extremely jealous of my friend's order of the shrimp and corn cheese crisp that she enjoyed. Drinks were yummy and reasonable. I can't wait to come back to order that shrimp and corn cheese crisp and maybe some fresh guacamole.,review,GPchh5Jw7Go8nhI7WqF-ug,3,3,2 +xs1LHeJy78u-7taSEnQ2Yw,2011-02-13,0nPmsfz7kK24oNEW8GI_Pg,4,"After moving here a few months ago the search has been on to find a decent sushi place in Phoenix, after all, it's Phoenix. I don't set my expectation too high because I know how difficult it can be to get fresh sushi here. +I enjoyed Moira because their creations are simple and they don't drown the sushi in sauce like some other American sushi joints. Sushi is about the rice and the fish. Both were pretty good here. The salmon and the white tuna nigiri were fresh tasting and soft and the rice was great as well. The kamikaze roll was also delicious, but maybe could have used a little more spice. +They have the best miso soup I have had since living in Japan. Very tasty, not watered down or flavorless like most other places. +The drinks creations are fun and tasty, I went for the favorite karma. I like my drinks like a like my women, spicy, sweet, and filled with booze. Our waitress said she would even be open for a new creation if we gave her some ideas. +The service was great and friendly. We were there on a Friday, but surprised it wasn't loud and bustling. I can see how it could be at times as it is a little small. Fun and modern decor, clean place!",review,FqxQhk-JyEQjvYp_nK1DNA,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-05-31,IDtzyrrXyIFp-4gERJQElw,3,"This airport is the most confusing airport I've ever been to. Obviously it was meant to be small and was originally probably very efficient, but since they have added terminals it makes no sense and you will see the sign you need as you are passing it, instead of having a sign a mile or so ahead telling you were to go.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +rDvz5jX65gpfONFu7er9Tw,2010-08-03,3VY7iN1LIqFX_CsM4gHMTg,4,"I am not a fan of american mexican food, good thing they don't serve that fare here. The taquitos take me back to the streets of tijuana without the risk of ""after effects"" :)",review,ixgYqRHucl21_3-qtPcVoA,0,0,1 +lciZhyp_xwKNBOVyzxqhbg,2012-01-10,zW0VZdS0Lkg7vm63grzjFA,4,"Burritos and Bodybuilders + +There's not usually much decor in Chiptole. They keep their decorations and their food simple and to the point. But if you're in the age range of 15-40, there's plenty of male eye candy. I think I saw 3 men who's muscles were 5 times the size of mine. In fact, most of the people in the restaurant were men. I'm not sure why or how, but it made my tacos a little tastier. ;) + +Enjoy! + +No five starts because I watched them put sugar in the rice. There's already so much sugar in everything, we don't need more in the rice please.",review,1prjit4TbpBBN9y2qlS_8g,0,1,3 +XkNQVTkCEzBrq7OlRHI11Q,2012-01-23,isxuG_ZeYiYszaEZJxEMmQ,1,Soggy flavorless pizza served on unwarmed ceramic plate. Carbonara was watery and made with cream instead of eggs. Gnocchi was tough as opposed to light and airy.,review,hdaZx2uwc7Vy9M8VG1N0aQ,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2012-10-26,zJnv1OuJGvLUSok-XS3rfA,4,"My best friend and I found this place via yelp after a horrendous experience at Mimi's Cafe... so happy we did! Food is great and everyone is so friendly. You can eat out on the patio with shaded tables, or you can eat inside while they play great music (we were dancing to James Brown while ordering our food). It'll be our new breakfast spot from now on!",review,3FRzcb41y7LYr5yRMQSoqw,2,2,2 +UmhTiNOKareQDP7D9aAnKw,2012-03-17,kbZaFBKI7GxW1ft1aJS1nA,4,"Like the other reviewers have said the service is really not that great. Luckily they're saved the really good food that they have. We ordered so much food that our little two top table couldn't possibly handle it all. The mussels might have been the best I've ever had. We also shared a Frito misto, which is really good except they're pretty chintzy with the shrimp they only gave us too. The pastas were clearly handmade which appreciate and they're quite good. The owner came over to check on us a couple times which I appreciated. I'm definitely coming back soon.",review,wfvmwhhadHfpM9UoTV0OMA,0,0,0 +24V8QQWO6VaVggHdxjQQ_A,2009-06-28,1XkRFWAtNIMphRIyco_dqw,5,"Special. Not on menu. Chicken strawberry raspberry blackberry blueberry goat cheese salad with raspberry vinagerette. This was THE best salad I've ever had, and probably top 5 best meals in my life.",review,mRTY_S2IQyAweG0pLNOgLQ,0,1,1 +A5jJS6lNQbJXjPzBkTnjNQ,2012-07-22,lewi0wJfkpdXkrQWdEY8Vg,5,Good food at a good price.,review,s1uMhsAjfU_IwOMUEaOuSg,0,0,0 +WVwnnx8Cut5Wih2KYtXKcQ,2008-09-29,1Mee6UeaNePlpuhdPHOk1g,3,"Beautiful church. My husband and I were registered members and regularly attended mass here. Fr. John Auther gives excellent homilies. The Marian gift shop has beautiful religious gifts. + +We got married at this church, but unfortunately had a bad experience. Communication with church staff was poor and we got little support during the stressful planning time. + +We have since moved to Gilbert, so now we are attending St. Anne's.",review,MqKtiMUnd1CdvNKUIlNspA,0,0,0 +BFNxp4o6gJEO5PjD13PFKw,2011-02-03,dSK7-vZtHO35lfoY3L-bFw,4,"I have been here a couple times now, so I thought I should review it. The ticket prices are a bit higher than other theaters, but the drinks are cheaper....a wash I guess. I saw the Mechanic there this week and had an overall pleasant experience. Usually I hate going to the movies because of all the sick people coughing on my head but this time the theater was relatively empty and I had a blast. The sound system in the theater we were in was great. Clear and crisp. The movie quality was also good. The concession stand was quick, in and out with my food and drinks. Yep, definitely one of the better theaters in the valley.",review,0beZngJ03EmIQfVcnlVK4w,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2009-03-29,Ybfbv1XZA9hLffm8PrbcPg,2,"Best beer selection in Arizona but the good features end there. It's the only reason I return and put up with the following. Service is often horrible, even during the day when there are few patrons. Often you have to go up to the bar to order even when there is a server in your section. It makes no sense that a mug of beer should be empty for more than 10 minutes before it is noticed. + +Food is subpar and wouldn't get such a pass from most people if this place didn't have the beer. Prices are reasonable. Website is often inaccurate re: what is actually on tap.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +3QtWG5sN3HJNBVKn_wHQEw,2012-07-03,7NToyNVtRIgJOBz5iggR4A,4,"I am really surprised by the previous reviews here. This has been at the airport for many years now. There is a lot of other places for food, and this is one of the BEST! +They have a huge menu, i think and you can even get breakfast. +The prices have even gone down. You can get a full meal for under $6.00. +That is a screaming deal at Sky Harbor airport. Hard to choose a favorite, but Chicken Delight is really good!! With red or green sause. +Their Salsa is excellent as well. We sometimes get it to go, when through with a trip for our journey home. Hey then you don't have to cook!",review,kffxYQVQsEpF1DVlQlcGCg,2,4,2 +YNHPzgdHVpAsvHcvCBQzow,2009-04-18,6U2SXBvjOuk4SCYZ_cJDbA,3,"I didn't go back again. The haircut turned out to be worse than I thought, being quite unmanageable. I ended up going back to the local Mexican barber, who charged 12 bucks for a pretty decent haircut. + +I think they gave better massages than they did haircuts. Still, it wasn't a bad place, and one could do worse.",review,8uFr-CYB9C5lldTGaJg7SQ,0,0,0 +sMO71vGV8wkKujOle3-v7g,2011-04-17,5VTL17RelaRxdkjx2wcDaw,5,"I went with my sister 2 days ago. It was my first time eating Famous Dave's. I got a hamburger and got some mac & cheese. They were both okay, I tasted better. Now the hot wings & onion rings were better. the place was packed we sat outside.",review,TR2YFVnIM5UM38RuMy6dcw,0,2,0 +81SLnb1zdCzRs2dj_PobOQ,2011-08-13,Jqo6v2xy6ZbOUTVZHMoNFQ,1,"Water park is OK. However, the parking lot has ZERO security. No security patrols, no cameras. My catalytic converters were stolen off my truck in the parking lot at Big Surf Tempe today. Sawed right off in broad daylight. According to the cops, car break ins and catalytic converter thefts happen frequently here. BEWARE! The water park management doesn't give a shit. Even the cop laughs because they always say the same thing: ""Our camera is broken but it's getting fixed next week"". What a joke. If you go, have someone drop you off. You've been warned!",review,z6Bk_H0uHpPbNqymdPAHpw,0,1,0 +J3VvIU1ZDqg9a9e7zK-QSQ,2012-04-18,BeIBk8REbghmEp2qk2VJ9A,4,"I have been going to Top Shelf for almost 30 years. I grew up eating their shredded beef burritos at the Scottsdale and Shea location which has since closed. I don't live in Mesa, but any time I have a chance and am in the neighborhood, I stop by the Southern and Dobson location. The shredded beef has not changed and is probably some of the best shredded beef you will find in AZ. Their margaritas are tasty and their chips and salsa are amazing. This is a great place for a tasty Mexican food dinner.",review,gxpYTCTO-EqDfzn9RyX7XA,0,1,0 +zp5k6funVelIOVuqdY0mDA,2011-12-16,zEnDoQkZcpulTYiDiUqbeA,4,"This is my parent's favorite froyo place, and with a pretty convenient location, we tend to automatically go to Kokomo when we want frozen yogurt. The atmosphere is fun, with a modern vibe and the frozen yogurt is pretty good. While I usually have to taste all the flavors they have (gotta weigh my options!), I tend to only find a few that are above average and worth making it into my cup. They also have the typical toppings you'd expect. Prices are consistent with other local frozen yogurt places.",review,1E13KtzbFzo2mXB0hZm1EQ,0,0,0 +K4Oo7A5Kp5eSgBV7MgOu8Q,2011-04-03,XMQX3MqiRV1g4ArCojS6aA,4,Great chai lattes and friendly service!,review,1MGIoKLw1oq8HR15DsIUXg,0,0,0 +ib-y5nsfn3unE0lLY1vfAw,2011-08-07,9f0wDo7wy_F5wZQMIV4yag,4,"For my first time it was pretty decent. Just as everyone said it is pretty pricey. I had the taco plate which consists of two tacos, seasoned rice & refried beans. My bill was 11.57 for that. Pretty steep considering that usually runs $7 most places. But I can say 3 hours later I am still full as if I just left the table. The chips, salsa, & refried beans appetizer was a great start to meal as well. My friends have already planned the next visit in which I will try the swirled strawberry/mango margarita which is 24 oz for 6.99. Sounds like a steal. I hope the flavor is above the price.",review,KdeUy-TKeRNznRtQ8e2YPQ,0,0,0 +2rMf09C5uXzF2qIlD5F5BA,2012-01-28,6-SRiZwaTTgh5MfiOvVHxQ,4,"Secreto is under a new owner, but the food hasn't suffered from what I can see in other reviews. We stopped in the grab a late lunch and order the Tortilla Soup and the Roasted Elephant Garlic starters. Both were out of this world. The Tortilla soup was far richer than any I've had before and extremely flavorful. Don't know how to described the Roasted Elephant Garlic platter, damn good though ... a must have when you eat there. + +The menu is very tight without a lot of fluff. The beer selection is strictly premium (although the manager said she does stock the ever present BUD LIGHT in bottles if someone is really hankering for one). + +The service is great - unrushed for sure. The place has high backed booths that offer a bit of privacy. Nice intimate restaurant. Definitely a repeat",review,xAVu2pZ6nIvkdHh8vGs84Q,0,1,0 +w19cemjVR8u02PgjFpJ7Mw,2008-04-15,gS_cpr4aTV5nE-3iyKtnVQ,5,"So, I have to admit that I once threw up in the Pita Jungle bathroom, but it was not Pita Jungle's fault - it was definitely something I ate the night before. It certainly made for a memorable first date experience with my now husband, and we have been back many many times. + +Oh, how I love Pita Jungle. I haven't tried anything that I wouldn't have again in a heartbeat - currently I am hooked on the Potato Pizza. yummy! + +Their breakfast options are wonderful - definitely try it on a lazy Sunday morning. There is usually no wait. + +The ambiance is fantastic, casual and arty, with a little bit of crunchy granola thrown in. + +A++ for vegetarians and meat-eaters alike. + +Eat hummus and pita. Try falafel. Try anything on the menu, because it is all good.",review,fhV21-QB6n402-J9vR-7cQ,2,3,1 +3Gsex5Dyhnoul9l_914MGQ,2009-12-14,ktS-4TF6S5mLLYOyTwDGQg,4,This is good pizza every time I get it. I've never eaten in so can't comment on the service but when I go to pick it up it's always ready and the cashiers seem friendly enough.,review,9z4sGAL1hu9rLJhcFZR8ng,0,0,0 +wH_kpDuTE6ChDAp5AlMfJA,2012-10-23,1Lr-eEJEm2MK2LeBHC2Ksw,5,"I absolutely love their personal hotpot room! +I tried it for the first time Sunday...and went back Monday again! +Their item portion is big and fresh! +Only downside is that there isn't any sauce that is pre-made... +Other than that, this place is AMAZING",review,SgnKnkhRnPy_duzAZ7QKdA,0,0,0 +eGevCRobYnA_HSj60sEWvQ,2010-05-06,LSL6FAB_G2lnCHN-POckxg,4,"Garlic roasted potatoes *check* +Amazing hummus and baba ganoush *check* +Cute waitresses, some of which are babes *check* +Inexpensive menu with quality ingredients *check* + +There are many Mediterranean restaurants around Tempe that vary in quality and service. Pita Jungle seems to break the mold. There's something for everyone on their menu, be it the Mediterranean Chicken Salad or the Glazed Chicken Lavosh Pizza (both are awesome). + +Pita Jungle is located off of Apache Blvd very close to the campus of Arizona State University. While this location is a favorite along the student body, a good mix of locals and students come here. The waitresses are very friendly and especially professional for a restaurant that serve so many college students. Like I mentioned above, many of the waitresses are super cute. + +Here is a meal of champions that I personally recommend + +1. Start off with the baba ganoush with chicken. This is not on the menu, but hummus with chicken is, so just as for this. You get a large portion of freshly made baba ganoush covered with chopped roasted chicken. This is DELICIOUS. + +2. For your main course, order the Lavosh Shawarma Wrap. This is chicken breast with grilled tomatoes and onions with garlic sauce in a crispy pita wrap (lavosh). This comes with a Greek Salad, but they'll be happy to sub the salad for the garlic roasted potatoes for no charge. + +3. Finish your meal with the Baklava coupe. This comes with 3 types of ice cream (I remember it comes with pistachio ice cream!), and it comes with pieces of baklava. So delicious. Even if you feel full, once you see this, your stomach will magically make room. + +Pita Jungle gets a solid 4 stars from me. For a Tempe restaurant, I would give it an easy 5 stars, but with all things considered equal around Phoenix, I'll give it a solid 4.",review,br7jwXG7TaWC1-vrZxResg,0,1,2 +E3RjJH45EX6rHYDs0TYSRA,2011-04-27,6I__khh3OKxpuhM7w-PrRw,3,"You've seen the storyline play out many times - great athlete in his prime signs a multi-year mega-contract, but eventually his body betrays him and he's parked on the bench, getting paid more than the starters. + +Valle Luna, I'm looking at you. + +My family used to frequent this place - you could get a nice meal for $8 or $9 per person, and their food was fantastic. + +But Valle Luna has lost a step. You see it here and there - the chimi sauce isn't quite the same, the beans are inconsistent, and the fundido just isn't as fun. And to make matters worse, Valle Luna now demands superstar prices, asking for around $20 for a chimichanga dinner. I hate to break this to you, guys, but I can get that - and done better - for much cheaper. And don't even get me started on the rise of Rito's, Chipotle, and Juan's, all of which provide superior food for less than half the price. + +Their prices have become ridiculous - and I think Valle Luna knows it, because this is one of the only restaurants I can think of that creates a version of their menu WITH NO PRICES for their website. I'm serious: http://www.valleluna.com/VL_Menu3.html It looks exactly like the regular menu, just without any idea of how crazy expensive their food has become. I suppose they figure that you can't (or won't) leave after you've sat down, ordered drinks, and eaten some chips? + +But much like that past-his-prime athlete, Valle Luna still has one move that reminds you of those glory days, like Jordan's fade-away jumper. It was his best shot late in his career because it was the only shot he could cleanly get off. Valle Luna's fried ice cream is so delicious, and since it's dessert, they can't charge $18 for it. I wish I could tell you the exact price but that's censored on the online menu, too. + +So go for dessert sometime soon and reminisce about the glory days, because I suspect it won't be long before the game passes Valle Luna by and they're forced to hang up the aprons.",review,pQlQ5B6rkPjPdinD1BjuIg,0,0,2 +U605aUo9MJn5vgLfP3yYKg,2010-08-12,RueAtv9IGLLPoOtTyB4odA,5,"I've gone back a few times since my last review. Every single experience has been fantastic! The burgers are pretty good, BUT do yourself a favor and get the pork tenderloin OMFG!!! Sooooo freaken amazing! + +Also their onion rings are pretty much perfect! + +And the fried cheese curd...just get it! I was a little creeped out eating something called cheese curd, but holy deliciousness!",review,6ts41fCsDKHbFZaKOMNmVQ,1,3,0 +9ziO3NpoNTKHvIKCBFB_fQ,2011-09-25,oRug2W6dzB8CbXyz-7HsRg,3,"We went on a Saturday night and the place was completely dead. There was only one other couple in the entire restaurant section. Very nice decor, but the food was mediocre at best. The only reason this place gets 3 stars is because the service was outstanding.",review,mn6F-eP5WU37b-iLTop2mQ,0,1,0 +YKDyaK3TKoZRCEgwnhczkA,2007-11-29,0Zc1K2z5pVyMM9IZO7s5BA,4,"The time was 4:30am. It was dark and a little chilly with the sun not yet up. Perhaps that's why they call it Black Friday, but my money was on the delicate hint of malice in the air as I stood shoulder to shoulder with veteran soccer moms with steel and fire glinting from their eyes, Scowling teenagers and college students bubbling with nervous energy and the occasional hen-pecked dad who got talked into dealing with shopping insanity as some sort of a special treat before trudging off to the salt mines for the day. + +There were at least five hundred infantry ahead of me and five hundred behind me and our numbers kept growing. There were scattered bits of conversation but most of us were silent, contemplating the chaos we were about to charge into for the sake of our families, our friends, our lovers. But mostly for the sake of savings. We glanced ahead and behind, sizing up the competition, mentally calculating our strategies for navigating the battlefield. We were at least a battalion strong. Perhaps a regiment by the time the doors would open. And it would be every man woman and child for themselves. + +Occasionally, someone would open a wallet or a purse, checking and rechecking their ammunition, occasionally running a finger along the edge of a bank card or bill to make sure they maintained their razor edge. Slowly, we began to march forward and the slow but steady trudge was a stark contrast to the sense of frantic urgency that crackled in the morning air. Not all of us could walk away victors, but all of us were determined to try. + +Then something happened. Something I would have never expected. As we approached the double glass doors, we were greeted by another army. With their bright blue uniforms, they could have been UN peacekeepers. They handed us each a large plastic bag and ushered us into the store with bleary eyed smiles. The fear and tension started to lift. I have been at Toys R Us on Christmas eve. I have seen the very worst of Holiday spirits and I was ready to face them again all for the sake of an (CENSORED) that (CENSORED) just had to have. + +Yes the store was crowded. But there were so many helpful, indeed cheerful sales attendants on hand that most of us shoppers just melted into a gentle wave of requests which were quickly and cheerfully met before anyone could get bent out of shape or stressed out. A sales clerk simply asked me to wait for a moment while she located a reserve ticket for the doorbuster item I had stood in line for. One minute and fifteen seconds later she returned with a document which guaranteed me my desired item at the desired price to be delivered to me as I left the store. Another clerk helped me locate the other items I needed and I was done with my shopping within ten minutes. + +Of course it took another hour or so to work through the serpentine line at the checkout but all of us were so relieved at how painless and indeed bloodless the shopping experience had been. We were more than happy to stand in line waiting for the opportunity to plunk down our hard earned cash on the latest objects of technolust that had caught the eyes of our loved ones. We left tired. And we left poor. But I dare say most of us left happy and for that Best Buy and the entire Best Buy army have my eternal gratitude. Thanks for taking the ass out of Christm.",review,hvgYD6Pmyaa6hS39ymIQBQ,1,0,3 +zDfaNgSYLn-TwquB5A6AaA,2010-11-20,A0S67C98VAl6ZMXbjBBhDQ,4,"Update: They now have Coors and Miller Lite on draft. Yay! They're a real bar again. I don't know the drama, but apparently the management has been ""let go"" and the owner is now managing the place.",review,DU0F18NBXFZ-hsPOmGhzQA,0,0,0 +N_6bV3c3JagKW7sD3X9ldA,2008-06-13,f7lw_jAAsKQ9aTHbiN1ntA,4,"I love this place. I sit in the bar and as one other reviewer noted, there is always someone interesting there to start up a conversation. The burgers are top dawg, the condiment bar allows me to fulfill my jalepeno quota, the wings are perfection, and the drinks are reasonable. + +When the weather is nice, grab a table outside. The service is a smidge slower, but the courtyard more than makes up for it. If the weather is warm settle in and enjoy whatever game they have playing (if you aren't seeing your team, just ask and they will happily turn at least one set for you).",review,iwWBF3nKoRMoy1sbkLJwvg,0,5,1 +A4pL6j3e6JAtblmCUF2GZA,2009-03-12,rWhk6bFrAG2hBOmjUzd13g,4,"Yes, I'm a fan this place but it definitely does not deserve a 5 star rating. First off lets start with the decor. While it was very nice when it first opened it's now getting a little raggedy looking and could use some updating. Food wise this buffet is above average and definitely worth a visit. If I could give them some advice it would be to get rid of the HUGE salad buffet section or at least scale it way down and put that money into even more entree selections. I've been coming here ever since they opened and hardly ever see anyone eating off the salad section. So why spend so much money to have such a huge selection??? Put that money into the entree selection and make this place an even better value. And for Gods sake bring back the Mayonnaise Shrimp !! You made one of the best versions I've ever tasted.",review,C6BYesCiITaw_STVT1GI6g,0,1,1 +0L3qEjF0jkFQkDIT4linUA,2011-07-24,Rd1-zDT8gg2zAJzA3incYw,1,Absolutely awful... these guys have NO idea what they are doing!,review,RYrDLpVArGRTgZ_xDtccHA,0,0,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-07-10,6pERjdHqg1s8xeVH-1NZQw,2,"I came into this charming little establishment with a friend. We were sat pretty promptly and had drink orders taken. I had the iced green tea and she had water which was garnished with a slice of cucumber. I thought that was a nice touch. + +We both started with spring rolls - she had the salmon, I had the barbecue pork. Both looked good and mine was tasty. Then we had both had a bowl of chicken pho. It was really tasty, however expensive for pho at $10/bowl. + +That said, the food was good. Not the best Vietnamese food I've ever had, but yummy just the same. + +My only gripes were the little things. I've worked in the back of the house for a long time. So I know how much it costs to put this food together. I just felt like everything was expensive for what it was. This is not a high end restaurant. Its a teensy little hipsterish Vietnamese place with minimal decor. Its a lunch spot essentially. My menu was printed on paper which is pretty commonplace these days so no big whoop. Unfortunately the menu looked like it had been used about 50 times. I understand re-using menus. Its totally common. To NOT do so would be environmentally irresponsible. It just looked really, really used and abused. Also, my dipping sauce ramekin had a huge chip in it. To be fair, I am hyper critical of EVERYTHING when it comes to service just because I come from a restaurant background. + +Rice Paper gets 3 stars from me. It was eh... Luckily I had good company. I probably won't come here again though.",review,KiD3w2SvwCSRjhEpI0Q2ZA,0,1,0 +JhupPnWfNlMJivnWB5druA,2009-01-12,k8xCOodVYwingwv5CmUL5w,4,"Although a bit pricey (hence the 4 stars), the martinis are GREAT, as is the food (the cobb salad is the best I've ever had). Good service, cool crowd... can't wait until I can go back, which sadly is not soon enough now that I live in San Diego.",review,weYT-xJwz8o7mLNWIhD6HA,3,2,1 +L_MtTn4IUBTmQtqqM2iFqA,2011-08-25,GEvx4rx6BGfB-zUbzIOBLQ,3,"It is my favorite vietnamese restaurant. +It's small but clean. Their soups are great. They serve fresh and tasty foods. +Portion is not big enough for me though. +I wish they serve bigger size meals.",review,3zKT-gMYsUmoOT7ffc76dQ,0,1,0 +GRFunGSUZxXqNCZJrN8Oow,2012-09-08,zV0WLn11pgrrHhvLuDDg5g,5,"Great pecan apple pancakes! Superb decaf coffee. Servers and counter staff are bright and smiling. Restaurant was clean. I have already recommended it to another foodie. + +IF you park in the public lot, just west of the restaurant on 3rd street and eat within 60 minutes, it is free of charge to park.",review,EXZrHtmzdtDHtH9MPNEhkw,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-04-18,k1lyATqADD4kDqBYLS794A,4,"Very friendly, warm atmosphere. We went for breakfast after hiking Camelback. We figured we'd earned some fried chicken after making it to the top in 85 degree weather. The food was really good. Everything looked great! We got one of the breakfast specials - biscuits with gravy, 2 eggs and potatoes and I got 2 pieces of chicken with one waffle. For once we didn't need any take home containers! We ate every single bite which is very unusual for us. I have to go back to get some more chicken and waffles but need to be sure I try the mac and cheese which I saw so many people enjoying and I need to try an order of their grits.",review,vzAvkSRois2VMqj_AT7xVA,0,1,0 +5VMajxduxfLPSyQkVFKESg,2012-04-18,fPst3k2avkYI_fge7_AP_Q,5,"I LOVE LOVE me some Joe's real bbq!! They have the best ribs in town and their bake beans are amazing! There's little pieces of meat mixed in with the beans and it's sooo good. Their mac and cheese is great as well as their corn. Pretty much everything is great here. + +The first time I went here was when I first moved out to AZ back in 2006. My fiance took me here because he knows I'm a bbq fanatic, and I swear I though to myself, ""What is this place? A cafeteria?"". I did not expect the food to be any good at all. Well, was I took quick to judge! Taught me never to judge a book by it's covers again! Even though you get in line, pick up a tray and order your food like you would to the lunch lady in HS, the food is the best. They even have an outdoor seating area with trees and lights. It makes you feel like you're at a nice park having a nice bbq. + +Joe's is hands down my favorite bbq joint in the valley. Nothing tops this. Anything you order is amazing. + +Oh, and try their chocolate chip cookie. Soft and melty and so so good!",review,C8MhrBVAHN_zeQpZLmgBag,0,1,0 +LDJhwZN14AZOJyHjg2lkRw,2009-11-15,TNxmy86nSpl3lyAvyW-H3g,4,Went to see Under the Sea in 3D......awesome on the big screen and the 3D was fantastic. The staff were helpful and friendly only missing a star because it could use a little upgrade......this however does not effect your viewing.....and there were no annoying advertisments before the show....so refreshing! There are two other nature shows playing at the moment.....African Adventure in 3D and Dinosaurs Alive in 3D. Great for the kids too as it is only 40 minutes long.,review,0ouMuScWJ3GuNtWEmmsziw,2,1,0 +wNsmt1hF1uv3YvbwXZMAoQ,2011-12-21,XhRn7EuKmK9zF_tfcn12ZQ,4,"I recently tried OHSO. Nice layout and design... modern and casual. Their menu features cheese and charcuterie plates, flatbreads, burgers, and other comfort-style dishes. I had the grilled cheese with a cup of tomato soup. The tomato soup reminded me of pepperoni pizza, which was strange at first but actually pretty good. It was the perfect order for a chilly, rainy day. The 48th Street Fizz (orange vodka, pineapple, lemon, st. germaine, and beer) was sweet, but tasty (love cocktails with carbonation). They have an extensive list of local and regional beers. Overall, it's a nice little neighborhood spot.",review,oy6fdscGSXY2gzRqF9pZxg,1,1,0 +wEsor9I2DcyYoR3brlqIMw,2012-06-16,DQEdAMmwCXEPy_yZLC-8qg,4,"It's a pretty standard Panda Express- cheap pre-made Chinese food with a few different choices. This one has always had good service, been prompt and never had a problem finding a place to sit. They are also clean inside. Good Panda.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +PNQ7JyMNfC0jDA0-a4ypnA,2012-01-09,npe364bdV_b7kRfYkgkRLw,4,"I walked int0 Arizona Art Supply and fell in love. I moved downtown 2 years ago, and I've never quite gotten my craft room up and running. But I had a particular project in mind, and stopped by the shop on a weekend for some spray adhesive. + +I struggled to find a place to lock up my bike. They lose a star for this, as everyone does in my world. Ended up locking to a sign in the middle of the parking lot. + +Once inside, I was dazzled by the available materials. I hadn't been in an art store for a year. To make matters even better, they were playing the soundtrack from Amelie, and the cashier was a handsome tattooed young man. + +I will regularly visit for inspiration and supplies. This place is a treasure.",review,2LCrT_BOJvGV4xi_lmoRcA,0,1,2 +G9LwkTSdKOyOGqd5BbuIkA,2008-08-31,9HTnUaoKN2ve0IJ1kbHpeQ,2,"Not good. The patio is top notch for relaxing if the weather's good but I couldn't shake that chain feeling when inside. Table and chairs had a slightly sticky feeling to them (nice, eh?). Food was typical pre-cooked, oven heated dollop of too much grease and cheese. Not impressed. It's a shame cause the garden and even the nachos & salsa had me expecting big things.",review,3sJ62Mkavx69FBec71agYg,0,3,0 +XMQQXhJWOGihXETq2HqNJA,2011-05-29,62BFRSsUUCxsUBTHQy_ALg,1,"Do not go to this car wash. I dropped my kids off at choir and thought I'd run in for a quick car wash. Oh no! They locked my keys in the car. I couldn't get On-Star to unlock my Suburban because it was under a huge canopy and couldn't get a signal. Instead of calling a locksmith, the car washers tried and tried to get in through the window. Thankfully my husband was able to leave work early, go retrieve the kids from choir practice, and then come rescue me at the car wash with a spare set of keys. I was trapped there over an hour! The manager then had the audacity to get mad at me because I was upset at their incompetence. They didn't even comp the car wash! If you go here, don't pay for your car wash until your car is done!",review,NPoOEAPspruMOik-9sKQtQ,0,0,1 +UVBPF4oYrb0QfgW_DMbLPg,2011-04-26,3zzn02xUj5BTDXXzKYakkg,4,"Some colleagues invited me for lunch the other day and decided to pick this place. It was my first visit. After browsing the menu for a few minutes, I decided to order the California Wrap (Spinach, Tomatoes, Avocado, Feta Cheese, Sun-Dried Tomato Vinaigrette Dressing, Tomato Basil Tortilla, $8.95) with a side of Cole Slaw & Iced Tea. + +I took one bite out of the California Wrap and was in Heaven!!! The sweet flavor of Sun-Dried Tomato Vinaigrette Dressing was a perfect compliment to the Feta Cheese & Avocado....the Cole Slaw was amazing too! What a great combo! + +The only knock on this experience is that the service was kind of slow. We had to constantly look for our waiter....to order.....to ask for extra napkins.....to get refills....to get our check. Maybe we caught him on a bad day? Because I enjoyed my meal so much, I'll give him the benefit of the doubt. + +Return Factor - 92%",review,kGgAARL2UmvCcTRfiscjug,11,15,11 +iJo2rZOjhWevF-OXP-FQgQ,2012-12-31,lgg_dZFZuvV7zcHyw-GT5Q,2,"$8.17 poorer after getting two dry cupcakes with hard frosting. Not sure if this is because I had refrigerated them for a short while until I finished my dinner, but I don't think frosting should make an audible, snapping sound when I sink my teeth into a cupcake. The quality of my cupcakes was comparable to baked goods purchased at regular grocery stores. Very disappointed. I wish the cupcakes reflected the charm and appeal of the storefront and its employees - the young lady behind the counter was very nice and helpful.",review,0O8zLqElJsR9yOmvcMsInA,0,0,0 +noLH_u4MJzfXYYHqcByjnA,2011-08-31,Ip9XDe8g2SkJlNpkEVTXbg,4,"It has been awhile since I have visited the Dubliner. The only reason I haven't frequented the place lately is because I don't live near them anymore so I can't just either walk home or call a cab for 5 min ride. However there drinks are strong and cheap! Either that or the bartender was being very friendly on the few times I have visited :) The food is not to shabby either. I mean you can't possibly mess up fish and chips. Hmm fish and chips. So go, check it out, but remember if you have too many, call a cab. Did I mention that their drinks are strong and cheap! #winwin!",review,4E_nPWw89FLFHdNsEgMH-g,1,3,2 +BpSLpzq_NRYghGSsb10G3A,2012-10-21,40AO8elVU2Pj9d-SmVt-ig,4,"My favorite place for fish fry. They perfectly pour pints of Guinness, too. + +The ginormous chunks of cod with a crispy, light-to-medium batter is very tasty. I prefer it with the scalloped potatoes but you don't get a choice during Friday all-you-can-eat. + +It's a small-to-medium sized pub with a nice scotch and whiskey menu. I had my first Tullamore Dew here and it didn't disappoint. It's a bit dark and some of the tables are wine barrels - makes comfortable sitting a bit of a challenge. The live bands I've heard were great and can be pretty loud. A couple of TVs dot the bar with all things football (soccer) and American football (if you're a Jets fan). + +Service is friendly and only a couple of times it wasn't very prompt. + +It definitely has a bit of character to it and I wish I had more time to stop by there.",review,Rr1SwkDviA2vFE_755SWkA,0,0,0 +eIxSLxzIlfExI6vgAbn2JA,2010-11-25,-YGJ39pz3szAEAdl6k63qg,4,"Boyfriend and I went to try Lobby's after seeing the phenomenal reviews. He got the famous Italian beef sandwich hot with cheese and I got the little veggie sandwich and an order of the chili cheese fries. He got his in a combo that came with a side of fries and a drink. The owner was there and took our order and he was suuuuuuuper nice. He was really excited for new people to try his food. + +We went and grabbed a table and just as we sat down, a rush of people came in. There must be a lot of regulars because he was greeting some by name. There must be something to this food for that many loyal customers. + +Not too long after we got our drinks, the food was ready. I decided to immediately dive into the chili cheese fries. The cheese was like the melty nacho kind (not spicy though) and the chili was actually kind of sweet. I wasn't the biggest fan of the chili. My boyfriend did like it and he doesn't usually like chili. I'd probably just get cheese or plain fries next time. The little veggie sandwich was so tasty! It was lettuce, tomato and pickles (I didn't want onions) with their house sauce on a sesame seed bun. I'd love to try a burger next time. + +The boyfriend did like his sandwich except he didn't know it was going to be ""dipped"". He doesn't like his sandwiches dipped, so if he were to get that again, he would request it dry. The sandwich was hearty (I added a pic) and very filling. He kept stealing my chili cheese fries so I take it he liked those too. + +It was really bright and clean in there and the owner and the guy making the food were really cool. I'd definitely come back. We both want to try the burgers next time. Although....the hot dog with all the stuff does look damn tasty too....",review,gkpMjWWEDKbiWSWzgubq3w,1,2,1 +Y2Lfzulh_D9nNcuH49UT4w,2012-04-14,vv8F2l1nctRKC4qXNFFtiQ,4,The place is good- the sushi is fresh and they have pretty awesome fish tanks (love me some puffers) in there. My only complaint is that the miso soup is a whopping $4! Is it just me? Or is that too expensive? Most sushi places that I frequent have it for about half the price... or it is included in the meal. Other than that- I'm a fan :),review,dUDzN6zl3j12zhByOrnF9Q,0,1,0 +Qd0fyF-wB_1bQwSB34ggkw,2012-05-31,4KSZBxowbs8digMxaVA0BA,5,"What an awesome sushi place! I highly recommend How do You roll, if you want some sushi done quickly and freshly and without wait. what a novel idea. I want to thank the manager Amanda for taking good care of me, can't wait to come back again!",review,XuVeswVBiG7bye8-k731ag,1,5,0 +sbsFamEj5wDxNAjUKrMcSw,2010-04-13,egbaIr84Iwn2m2aTh4gt_A,5,"Love the atmosphere, the patios, drinks and especially the chicken lollipops. If you haven't tried them, they are buffalo wings with a handy bone to hold on to while you eat. The sauce with blue cheese dressy is one for the record books! + +I am also a fan that they serve breakfast 7 days a week and have free wifi. This is a great place to meet for work or meet after a game. Not too stuffy, but nice enough that it isn't just labeled a bar.",review,7o7vuRkJtnnipRWw3kft8Q,1,2,1 +kr3EFhoSwbJPrL_e_RD39g,2013-01-04,ao5T4ltc0wvABji5xQsq1A,4,"Before a Suns game recently, my Family and I stopped into Blue Hound for some drinks and appetizers. We attempted to go to Arrogant Butcher (been there many times), but it was packed. Having heard good things from another family member, we decided to give Blue Hound a try, and I'm glad we did. The inside decor is trendy and simple. We sat at the couch by the door (since that was what was available) and were quite comfortable - except for the occasional draft from the door. Our waitress was ok, she wasn't entirely too friendly, but she took care of our needs. + +As for the food, we ordered pretty much all the appetizers. The biggest highlight was the scones with bacon jam. In fact, it was so good, it's inspired me to make these two things at home to see if I can replicate it. We also had the popcorn, which was good and the sliders, which were alright. The pizza with duck was great (could have been crisper) as was the other items we had. + +Based on the previous reviews it seems this place, being new, might be hit or miss. I'd say give it a try if you're in the area... why not? Trust me, it's worth a visit for the cheddar scallion scones with bacon jam!",review,f1-pIw_p0ifzu03TXjPRiw,0,0,0 +ybrXM8JeI2x0brAFoEawuQ,2012-11-06,uaxOnMEBB1wcLfRsSsVY8g,1,"i called them and they wanted to charge $30 for fingerprints!!!!! What a joke. I found a place on the other side of the air park who did it for $10. Caveat Emptor! If if could give them a zero rating, I would have. + +On the other side of the airpark off of Greenway-Hayden loop is Global Pi Security. $10 for prints. Their address is 7807 East Greenway road, suite 9, Scottsdale, Az. globalpi-security (dot) com. Good luck.",review,3ZnCGqeaJP5VDXnx_roIXQ,0,0,0 +Ew6YfU0XcFGM-S4zncZ5Dg,2011-04-20,kxaG8Z1V9hfgGSwXG4JitA,4,"I was definitely expressed with their buffet! I had been craving Indian food for quite a while, but since it can be a bit expensive having to order all the dishes separately I was determined to find a place with a lunch buffet nearby to give it a try. I was lucky enough to find this place, which I noticed had fairly good reviews on Yelp. This place is definitely nicer and bigger compared to other Indian buffets I'd been to. It has a wide seating area and nicely arranged tables. The buffet had a great selection and I was able to try new dishes that I'd never tried before. Everything was delicious. Tandoori chicken was dry, but then again I've yet to experience it moist and juicy at a buffet. The garlic Naan bread was soft and warm, SO good! Service was excellent! Server was attentive and polite - my glass of water was never empty. Will definitely be coming back!",review,hDANOMKLeEqwzytjxAuZWg,1,1,0 +XNSito__Fne14TXU0vz1Qw,2010-03-09,BE6IHqolebzmGA4dbKvoyQ,5,"So, my husband and I went to to Bombero's for happy hour. Neither of us consider ourselves wine afficianados, but we know what we like. I told the server, Tim, that I wanted a heavy red, and he delivered. It was a wonderful malbec that had deep fruity flavor and a nice hint of vanilla. It went very well with the chocolate dessert that my husband and I shared. +In the reviews, I see that many people complain about the bread and the bruscetta. I have to say that it was wonderful to have a bread with bruschetta that did not destroy my gums after eating it. The bread was flavorful, soft and didn't feel like it just came out of a toaster oven. The toppings were very tasty, especially the Tapenade, the Chimmichurri and the Brie with fig. +Overall, I thoroughly enjoyed the ambiance, the food and not having to valet the car on Central Avenue.",review,asDONZzs6AdiY2asqk8Awg,0,1,0 +IPsG_71MD8pwB9i3TKOJYg,2009-04-16,8wUBpLGYJesL0ipr6Ye-5Q,4,"I'm being on the generous side in giving MEBAD (as I've seen others refer to this place) 4 stars... + +It's kind of a unique gem that you don't see anymore with the owner at the register and a slamming lunch business in addition to the grocery items for sale that are rare foods, snacks, and ingredients from the Middle East. +I suggested this place for lunch with Amy D today after reading about it on Yelp awhile back... so happy I finally made it there myself! + +As Amy said in her review, we shared the baba ganoush and hummus plate and we each ordered a Greek Salad. The salad was decent but nothing special, but the baba and hummus with the whole wheat pita was so damn tasty that we didn't even leave a bite. + +The free cup of homemade daily lemonade was a perk and the owner was really sweet... and I really did like the flavor of it. I happen to love lemonade! + +I'll for sure return to MEBAD when I'm in the area to try more from their menu... this is the kind of place you want people to know about since you can tell how much work the owner and staff put into it each day. If you haven't been, stop by... maybe I'll see you there - but please don't ask me to share my baba ganoush and hummus with you - I'm ordering my own next time!",review,fczQCSmaWF78toLEmb0Zsw,10,9,5 +hDHYbekIzW-M5tljy1IP1Q,2012-07-15,FfMZa-5j7YE-cPWwFAYqmQ,3,Average sushi but lots of fun. I love just taking things off the conveyer belt. Alcohol is also a bit pricey.,review,3MSa_fdxgsaY9yF9vqmeUg,0,0,0 +fF6m3qsD5blnwuZRuYhzWg,2011-12-26,nyJBJ5nFK9uaYw6EG1DZBA,1,Just called at 9:45 to ask when they were open until. Woman said they were already closed but website says open until 10 pm. Really?? Obviously don't care about patronage...mexican is a dime a dozen in the new NEW Mexico...no thanks. Next!,review,auHGQcvYjB_-Ds8xC7mYmw,0,0,0 +9YUe5J_cPCBo_mL7-z9HCQ,2010-10-22,oieOEQv7z7r8Y95e9yY8nQ,5,"I've been a fan of La Bocca for a long time because it served the needs of an underserved demographic on Mill Avenue. Canteen offers many things that La Bocca does...and more. What is that demographic exactly? ...Late twenties, looking for something chic and classy without paying a ridiculous premium for those qualities. Mill has plenty to offer for the ASU kids and the older adults, but for those of us who lie somewhere in between, places like La Bocca and Canteen are just right. +Canteen one ups La Bocca, in fact, because there are menu items included in happy hour (50% off most drinks and select food items). Here are the highlights: +The margarita. It's a real margarita! (It's not a lime daiquiri masquerading as margarita. Loads of sour mix does not a margarita make.) +The chips and salsa. Both fresh and delicious. The pico de gallo is particularly fresh and delicious. + The ribs. Sweet and spicy...the level of heat from the habenero is perfect and the meat literally falls right off the bones. +The ambiance. It's chic but not pretentious. My friends and I really enjoyed the Latin music. Our suggestion would be to emphasize that music and minimize the clubby stuff (it verges on Scottsdale). +To contextualize some of the other yelper's comments. I was glad to hear that one yelper didn't find Canteen suited to his beer and Jaeger shot needs. There's a bar (or ten) down the street for that. For the yelpers that found the portions to be too small, I suspect they didn't understand the Mexican take on tapas that the taco menu is going for (in fact, the whole valley suffers from a lack of tapas locations). Finally, the service complains...my service has been cordial and attentive, even when super-busy. Folks, this place is new, let's let it go through it's growing pains before issuing such harsh judgments that might jeopardize the success of a really wonderful place.",review,gu-us9D4ONg3ZROy4U25AQ,0,1,0 +bF7KQ6AQK5rBS7aOFKtlWg,2011-03-11,ueSoHWVSPXUr2o3yEa9v9g,4,Chicken noodle in a bread bowl. Sandwiches are good too :),review,8URuhYN9feJbzqxm_oVTdQ,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2012-03-18,tGHMqFm_Po4FIWC1unfvMQ,5,"Beer is awesome (first timers must do the beer flight sampler) and I have never had a meal that wasn't excellent! A quick note, there isn't a/c in the building so keep that in mind during the summer months - although that doesn't stop anyone from going, the place is always jumping!",review,W9ZG5q-QIblXYeHgaPS5Uw,0,0,0 +6Y-6Y6sy6qOQHrWI37zR1Q,2012-03-25,NON-KIh7ta4ujaiZwC_x6w,3,"Was in the area for a grad school interview and the BF was craving some red meat. Came here based on yelp reviews, left pretty full, content about the food. + +Service was friendly enough, but we had some trouble communicating what we wanted. We settled on the kalbi, bulgogi and the ribeye? steak meats, with an order of the tofu soup. Everything was a-okay but I think the only thing that stood out was the ribeye. Normally we like to cook the meat ourselves but since we didnt want to stink on our plane ride back to cali, we decided to let them do it for us. Side dishes were standard with the different pickled veggies, kimchi, potato salad, etc. Waiters were pretty prompt in bringing out replacement side dishes for us. + +Since we don't know the area very well, the stars are good service, being open at odd hours (I think we got there at 4pm?) clean restaurant, decent food. -2 stars for small portions and no real wow factor.",review,WESBNCIvswTWh-Ak2uGf4g,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-12-16,h_vf3ggssAtLyYYV-2n_Bw,4,"Decided to roll the dice on a Saturday night and try this place everyone's been raving about. Despite showing up at prime time to a packed house we got a table relatively quickly. + +The food was delicious and came out promptly. I didn't any problems with the wait staff like others have expressed. The presentation was a little more than expected without feeling pretentious or like I had to keep my elbows off the table; not that I'm a slob. + +Didn't get a chance to make it upstairs but the main dining and bar areas were well-lit but still cozy and had a simple, modern feel. + +Good place for a date or toss back a few cold ones with your crew. St. Francis is definitely on my list now.",review,nvHd5k9EZmKQG8Owq3pZlQ,1,1,1 +iCEBW0cHK3jDUFXGni6n-Q,2011-06-05,59HAZ3DjM06AtblqoC9WTg,4,Best basic $12 in/exterior wash i got in a while. Didnt even have to tell them to wipe down anything.,review,ZHmI4LNm4WegnNr7Jo4C8w,0,0,0 +un3KC2gyMrSG6yqjVRctXg,2012-07-13,mWHdv5Y4Fc51kl7gwoidzg,5,"Loooove this place! Yes it's pricey, but good sushi usually is. The guys making the rolls were friendly. The atmosphere is nice. Hubby absolutely loved the quail eggs and I couldn't get enough of the spicy shrimp roll. Seriously, try it. You won't be disappointed!",review,Zz-lHlp5gJdPg3LgFRRrRQ,0,2,0 +GavgziItjOIkqqf7zm5w3g,2012-09-10,AEFlT82TpGqrO4VYjpXr2Q,4,"Second chance at bolero's. +After receiving a phone call from one of the managers regarding our visit in April, we decided to try again. We were told they would make things right and they were very apologetic for the horrible evening we had. (We were so irritated with the place, we waited 4 months to take him up on the offer) +As an aside, we were told we would be comped dinner due to the previous disaster. + +I called ahead and spoke to Jason, who does not work at Bolero's any longer, but stated that since he was the manager at the time the incident occurred, he would make sure the new manager was aware that they needed to adhere to his promise to make things right. Was told to call manager Desi, but no one answered. Proceeded to the restaurant and hoped for the best. + +When we got there, as before, we stood at the front desk for between 5 and 10 minutes before anyone came to seat us. Not a promising start. Luckily though, that's where the lame service ended. + +We had Gage as a server and he did a terrific job. He was attentive, stopped by to fill our drinks often, checked to make sure our food was good, brought things out all at the same time, and was pleasant to deal with. + +We started with the cheese plate and it was, as before, good although probably could use some more bread with it as there are a ton of meats and cheeses and 4 small pieces of bread. As far as the food goes, she had the spinach salad, and I had the reuben with onion rings. Both dishes were well prepared and tasty. We asked for a basket of bread, which was brought out with dinner. The bread was great, but they maybe ought to consider bringing it out early, maybe just asking people if they'd like bread with their meal. Just a suggestion. + +Our only other concern as far as the menu goes is that there are not a lot of vegetarian offerings that aren't salad. + +Overall, it was a much better experience. As we said before, Gage did a great job, and even though Jason is no longer the manager there, Dave (who was standing in for Desi, from what we were told) took care of everything. They put effort into making this experience much better and they did a good job. We both appreciated it and we'd go back. + +There it is, an updated review. Bolero's is in a beautiful location and now we can say the service & food are worth a visit.",review,gX3_58gfnFbkwt30rUta7Q,0,0,0 +XRkv1rz9BJmOFRSgjGHBSg,2012-12-25,Kb6Fi3IuDVza8ei6KPNvNg,5,"No rake, no annual membership or fees. Just a fun ""home"" game in a strip mall minutes from my parents' house. They have 1-2 and 2-3 NL games and the min buy is $40, max is $500. Everyone is friendly and they offered us snacks and drinks while we played. Since there isn't a rake or fee, don't be cheap (like one guy there) and tip the dealer generously.",review,saiZmxzBIowJbMgPBW1Now,14,18,9 +nreEQ3b-cSZgT0S5oxj7yw,2010-08-16,FkiIrset0wUWcmW-HM7gtQ,5,"Talk about an amazing experience...First off the office is well decorated and clean...the staff pleasant and helpful...Rene the hygenist is caring and gentle. Dr. Keith is really personable and excellent at what he does. They don't do extra work that doesn't need to be done, they are very honest. The office takes many kinds of insurance and they are great with kids too!",review,PYtryNSk30ytqOc_36sLPw,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2008-08-18,cRa8f9QYJ0GyHxNrDzECmA,4,"4 stars based on the sangria alone. + +Order this motherfucker by the PITCHER, without apology. + +If you can sit out on the patio, so much the better. if not, grab a comfortable booth near the bar.",review,HZeFzs42f0iGaA-sP_hUnA,4,2,2 +Vpfkn8rj6s8FoS2qsMRWSw,2012-05-03,TbYplh9exegRgGUS55VBfQ,5,"This has got to be the best barber shop I've ever been to in my 38 years on this planet. I was always getting terrible haircuts at places like Great Clips and Hair Cuttery (when I lived in Virginia Beach), and I just assumed it was because I naturally had jacked-up hair. After getting my first haircut from Israel (the barber, not the country), I know I'd have a hard time looking elsewhere. I don't know if these dudes were ever in the military, but their attention to detail is top notch.",review,_KVtRkDSo-tdZ2JQ6iFmtQ,1,1,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-10-28,A9PF5V9rW3BLdR8-l_aB0g,5,"There are so many good things for me to say about this place that I have no idea where to begin. + +The ambiance is so amazing no matter what time of day you go. The small, intimate bar area (with quite a few pretty men!) is lovely on a sunny day out, while the tables inside are the perfect place for a romantic date. The menu is so great, carrying lots of new age food items (quinoa, black forbidden rice bowl, kale,and lots of dishes carrying local food items). It does make me very sad that they do not have a lot of vegetarian/vegan menu items. One time I tried to order the wood-fired vegetables and the waiter *swore* it was vegan. As soon as I tasted it I knew it had butter on it, and the waiter subsequently learned he had no idea what ""vegan"" meant. We ended up having to call a manager over. + +The cocktail menu is so interesting it's hard to decide what to get. My favorite is the Dark and Stormy, which has ginger beer. *the BEST* cocktail around IMO. Do not pass up dessert. The bananas foster is amazing! Not traditional but good in and of its own.",review,TKUWlu6fruJ_jEUEXY6n5g,1,3,2 +4juYmq_YpvdV8HZ1r0AWBw,2010-02-28,vOSncRbPwCrMJvmNrXMCqw,5,"We had a great time. Had bottle service with Katie. who was super friendly. Our drinks were never empty, and that was nice because we were celebrating a birthday. The music and atmosphere were great.",review,sFwYHxRMBuI29e989vEJkg,0,1,0 +cqIHyZ3Q0D4vBi-vb4mi-g,2008-06-23,1u8ROSDRkuZzqZEPCitoqQ,2,"Things that might happen at Bikini Lounge: + +You might watch your friends dance with a bum in front of the juke box. + +You might drink far too many pitchers of PBR. + +You might throw a fit when you realize it is cash only. + +The Bikini Lounge is quite possibly the crappiest place known to man. I mean it's in a shitty neighborhood where you might die, doesn't take credit cards, and has only bags of chips for food. So why do I keep going back? because eventful things happen here. Don't go if you want to have a quiet night with a couple of friends and go home and go to bed. Go here if you want to show up to a bar full of low lifes, order pitchers of PBR until you and your friends are all sick, then go outside and forget where you are and turn left down Grand Avenue only to find out you are nowhere near home when you get to the burned down church on 5th ave and monroe and a bum asks you for money. After that, you'll get in a bike taxi/rikshaw and tell the guy you can only pay him in cigarettes and then when he agrees, have him take you to another bar, instead of home, and then you will be further than you were to begin with. When you finally do get home thanks to a caring homeless guy that actually does have money (you find this out because he has a car) and gives you a ride home. You wake up the next morning wondering why all of your cash is gone, how much you drank, and where your friends are. + +If THAT is the kind of night you are looking for, Bikini Lounge is IT!",review,JgDkCER12uiv4lbpmkZ9VA,2,2,5 +zp5k6funVelIOVuqdY0mDA,2011-06-10,y_GcU023D-9OXFXlsA-mcg,5,So yummy! I got the low calorie yogurt with all kinds of yummy fruit in it & didn't even feel guilty. Such a fun place to go with friends or as a nice dessert after dinner. I can't wait to go again!,review,Qt6BOpwL1eTQgCzuZzwlxw,1,1,1 +P2hdIBaOhbDwYfFcyokpyg,2010-08-09,HK2av9X141RxnrmGG4XnJA,4,"I've been to many, if not all of the major ""Savers"" and ""Goodwill"" stores in the entire city of Phoenix, and none of them have compared to this Saver's store. I'm new to the area, and recently took a walk across the street to check this place out. + +One of the very first things I noticed after walking through the door, was that everything in the store was neatly aligned, stacked, organized, and nothing was really amiss. Even shirts were color-coded on the racks. All of the wires and cables for electronics were sorted, nothing seemed to really be out of place. + +As far as the staff, everyone in this store seemed genuinely happy to be there and seemed to be content with their work. Staff was very nice. + +I have no real complaints with anything EXCEPT that a lot of things are marked up a bit higher than they are actually worth. There was a desk in fair condition, some scratches here and there, that was marked to $90; The same desk is sold at Staples for $79.99. Another instance of this was with a love seat with some tears on the arms (cat scratches) that was marked to $115, but I was looking at the same love seat in Sears for $89.99. I had noticed this with a few other items here and there. + +Some things could be re-evaluated as far as price, but that's more about the people in the back or maybe corporate, I suppose.",review,DhrV7cw-5cJeIqRZDxD0Pw,0,3,0 +Dka36Pw7ibbHV6xIimQAOg,2011-03-15,6wz6dfsRPfQ1EZl2_Gz8Sw,4,"Fun Saturday night music venue with good food & beer for only a few $. The music is fun and tunes everyone knows. The 1$ carne asada tacos are straightforward; meat, cilantro, onion, grilled jalepeño - delicious! Saw some lucious burgers being served. Will have to try one next time. Will definitely be back! + +As with any outside venue, as a non-smoking asthmatic I appreciate adherence to the 50ft from door rule. I'm sure other non-poluters would appreciate as well. As seems to be the norm, smokers only care about smoking. I can appreciate that its an addiction, but think of others occasionally please.",review,3ch-JeRygCmrXf4mwZ9JTg,0,0,0 +ilJiRYZgxjrEu2iexKu-pQ,2012-12-12,jB9lYNGbGUMGwB1O7NLfWQ,3,"Asi-Asi ,Menza-Menza,Comme ci Comme ca...you get the jist . + +So -so ..(a solid so-so ). + +He liked the taco's ,i liked the steak salad ( it had a nice little kick to it) Service was good.The atmosphere just wasn't my cup of tea ,that said ,i can see why some people like it here .Drinks were solid,menu was decent . + +Good place to get hammered ,I suppose. + +I had a Pinneapple mind eraser that was ......",review,vtC_cpesIJZ3--W9J-UIXA,3,4,4 +sbjb1qNUcqQomJvcgPuJCg,2008-10-08,M5w8FYcnYDRRnWQriUe1Wg,4,"Huh. I guess it's a love it or hate kind of place. Me? I love it. But put butter on a shoe and I might just kiss you. Oh butter, is there anything you can't do? Is there? + +This is one of the high roller places in Scottsdale. I saw a guy take a wad of Benjis out of his pocket that seriously made me consider rolling him. But my boss might have objected. Damn boss. + +It's all about service and steak here. And I'm down with that. We had crab legs for an appetizer. Quite nice for a land-locked state. Fresh and tasty. A tomato salad with sharp onion that I enjoyed. And shared a porterhouse the size of my... yes. My ass. If one could give a nice slap to a porterhouse, this would be quite a spankable piece of meat. I love the way you can hear your steak coming to your table in all it's sizzling glory. The first thing to hit your nose is the lovely perfume of the butter. Chanel # Yum. Then that aroma of the meat. + +I know we had a couple of sides. But I honestly can't remember because the steak was so freaking perfect. To a corn-fed born and bred midwestern girl this is perfection. + +The service is near perfect too. Our waitress gave us a wine selection for the steak that was spot on. Not too tanic. Not too tame. Held up nicely against the butter and the porterhouse. At the end of the meal I was I nearly unable to move. And that says a whole lot. I've been known to out eat grown men without batting an eye. + +Oh, and if you don't like butter on your steak? Three words. ""Hold the butter."" May save you some pain.",review,GLMX8Is_Ur6aIVV86Ok0Lw,15,15,17 +4DhqZ0tyi2V2Mp8IqTREAA,2011-01-17,imky-vWinKwIovIKOLy4Pg,4,"Had the Jalapeno burger. Great stuff. + +If you have not eaten here yet, I highly recommend it. + +I've Had their Tri Tip, Beef & Pork Ribs, Pork, Brisket & Burgers along with most of their sides. All were excellent. + +Their Drink specials were great as well.",review,2RjxUP1CM0aL9yIzanAK1w,0,0,0 +jRfdz5voj40P6WS9L54caw,2011-09-16,2gfW7UgSeSAkxTXT60Ye_w,5,"I've been meaning to try this place for months and I'm so glad that the temperature has finally dropped to less than 100 degrees so I could take advantage of the outdoor patio for lunch! + +The service was kind of slow..not sure if it was on purpose so I won't knock any stars off for that cause the food was delicious! Got the chicken, goat cheese, bacon, apple, pesto foccacia and would def recommend it. Everything tasted really fresh! A perfect lunch spot :)",review,Ygda3eaZvqGTguTJLTZp5A,0,0,0 +RqmE46axGgrS9lrbge0CKA,2011-11-28,iOABod6-D0_5jcy0U1-7KQ,1,"I am leaving this store angry and can't resist writing a review! + +The staff is incredibly useless....if you can actually find someone to help you. The store is huge with very little signs to guide you. Therefore I always wander aimlessly looking for the one simple thing I stopped in for (even though I tell myself I will never go back) with no one to help me. + +Today they were out of an item I bought last week and need more of to finish my project. I asked the only 100 year old lady I could find to check the back and she told me they have nothing in back and to ask customer service. The lady at customer service was actually a reasonable age and when I asked her to call the Indian Bend store she handed me their number and said ""well you can call them"". I stormed out soooo mad and this time I promise to never go back. Hobby Lobby or Michaels is worth the drive!!!",review,HgngoaGyf2wr9OC4Gc-TNw,0,0,0 +5VMajxduxfLPSyQkVFKESg,2012-02-26,uo2JYMyLjiDFI2A-W09P5w,5,"My sister was leaving back to Texas and I decided to find a BBQ place that may have a similar taste and feel. I found this place through a Mesa newspaper ad. + +Anywho, as we pulled in I was like I hope this place is good. We parked in the back and walked along the side where you can order your food to go. As we waited we decided to head inside and as we walked through the dining area to the line, I was already eyeballing other peoples plates. I could see the ribs and at that point I couldn't decided on a plate, but went ahead with the plate that had everything. + +I ordered Ribs, Pork, and chicken and as I was ordering I seen some sausage come out of their bbq oven. So I didn't even hesitate because every since I've moved here from Texas, I have yet to find a place to have the yummy peppery tasting sausage we have back home. I asked for a piece of it for tasting and was granted a taste. Needless, to say I ordered a quarter lb with everything else I ordered. + +The chicken was without a doubt great smoked bbq chicken I have always wanted. Great flavor with not an overbearing smoke flavor. Also the ribs were tender and packed with flavor and smoke taste. The smoked pork was smoke tasty but a little on the sweeter side, but that was nothing the Habenero BBQ couldn't accommodate. Which is offered on the side. Oh and the bread tasted like some homemade goodness bread. As if it was fresh out of the oven with a little garlic butter. Superb! The Mac and cheese was super duper great. + +In Texas, we have bbq joints in every corner. I have tried it all and I will have to say this is one place I would have on my top list if we had it there. + +BIG bbq sauce thumbs up for this joint!!",review,iid3odH5o9YBDWIzcA0Ngg,0,0,0 +ObnZiF99lqggVasgyGBtVA,2011-05-27,bGn4WdIjbAD8k8BW8ywTDQ,4,"Huge fan of this bistro. Everyday or two there is a new exotic meat that you must try. + +The staff is super awesome and Brant is my go to guy. + +I highly recommend sangria sundays, the wagyu and veggie burger are my absolute favorites. Not to mention, the sweet potato fries and Purple Haze beer. + +If you like sliders, this is the best place to go in scottsdale.",review,SuM-5uuReJJY30J4widx1A,0,0,0 +sb4wU69LkCtC6Axqcd34WQ,2010-03-29,23KaDK5hl3kgJahxvZSkww,4,"Maybe closer to 3.5 but I am rounding up because I'm not opposed to being won over by ""smart"" bartenders -- when I ordered drinks she asked to see my ID and then followed it with, ""you look so young, you must get that often."" Granted, she looked younger than me, but I am not opposed to having my reviews swayed by cute bartenders who know the right buttons to push. In addition, the house margarita was good, and I have been known to throw bad margaritas all over the bar in a fit of rage when I don't get carded...fortunately my vanity was satisfied. + +The space is very nice and open, and despite the decent size crowd, it didn't feel crowded. Our wait was less than 20 minutes and there is ample place to sit and have a drink while you wait. Now, I must say, I don't know that the required staff uniform is unattractive, but it does seem like an impromptu tennis match could break out any moment. + +The braised short rib enchiladas were good and the fish tacos were even better. The tacos were slightly overstuffed and rather difficult to eat as a result, but the taste was good (3 shells, as opposed to 2, with the same amount of taco insides would be better). + +While the waitress didn't attempt to win me over with flattery, the service was prompt and attentive.",review,0NckJhx0qXykvvhsm-p7MA,1,2,1 +6imLt53br7SJ3av07jjH7w,2009-03-03,qX7PnzPkPt7Zg8be_sq-hA,2,"I don't know of a single Phoenician who wasn't absolutely ecstatic about Hanny's opening. We were all excited for this cool new ""destination."" The husband and I were the second pair of people to walk through their doors. There were literally hoards of employees working at the time. There were about 15 upstairs staring at us, about 5 at the bar, and 15 or so more servers just chillin around the restaurant. Somehow, with all these people, they managed to completely ignore us for most of our meal. Making a typical 45 minute to 1 hour dinner experience turn into a 2 hour ordeal. + +The decor of this place is beautiful. Cool, clean, and modern. The music fluctuates from being too loud and inappropriate for the setting to being perfect with an eclectic but well blended mix. + +The pizza is decent, but very appetizer-ish. It is cracker thin, which turns a lot of people off, but I actually like it. The onion strings are to die for when they aren't completely grease laden. That's an off and on thing, not really consistent. I don't like their sandwiches. They are unimaginative and bland. There really isn't a lot to choose from on the menu. + +Unfortunately both times we brought friends along with us, the place was a buzz kill, and I am not really sure why. Maybe we will try the place again now that it has been open for a while. Hopefully Hanny's has figured out what he wants to be when he grows up.",review,W_QXYA7A0IhMrvbckz7eVg,2,4,2 +1mhywrdsgdqJM3OGZIpVtA,2011-12-22,YxAY4OGkICTeVpy6o4wFLw,3,"Saw a show here last night. Stage is raised to a proper height, acoustics are pretty decent and the sound system is adequate for live acts. Three trapezoidal speakers flown above the stage provide good coverage and nice clarity. There's a couple of subs tucked beneath the stage. They have some moving lights(mirrors move not heads), and some LED par cans. Monitors are on the stage floor, and are JBLs so they seem decent. If it were up to me, I'd toss about 12 more cans on the front wash and add some side wash. They have the trussing to do it . + +Staff is attractive, and friendly. Knowledgeable about the area and eateries too. There's a patio where you can smoke outside, and they have heaters so you don't freeze your *** off. Drinks are reasonably priced for Scottsdale - and they had some good specials last night which ranged from beer to cinnamon whiskey to vodka - so your bases should be covered. + +I'd go back. Go early, or good luck parking. Also - note that last night was Christmas week, so even though it was Wednesday tons of cops were out and about, pulling over all kinds of people as they left Old Town Scottsdale. So word to the wise - Don't Drink and Drive.",review,7RZ0mJJ00IiT56sloLBd1w,0,0,0 +ky3kuTeqTUOU4CsZ_2_LzQ,2012-01-07,qN1CK8eTejVE0D7rqtC5aQ,3,"It is what it is. No frills. Fine front desk staff and general cleanliness. I felt safe and the bed was comfortable. I'll tell ya - my favorite thing about this place is the bar Baer's Den at the end of the parking lot! + +The breakfast should not be $10, it should be included! I did however have a fantastic breakfast sandwich at the Safeway right down the street!",review,fTo1Nf5hXSZqPC_qkvXlrg,0,0,0 +j7XuypdW_w935NhjbvKPQw,2012-12-02,YD6Rk-7f6ERnYxaRHJ5LJw,3,"This is a fun place. It is a great place for a fast, cheap meal. Is it truly authentic? It is probably closer to being authentic to many places around the country. Wagamama-like? Perhaps. If you know how to order you will do okay here. A great addition to restaurants in Tempe!",review,eDB9tT3eaKJHHjoa2YRJEg,0,1,0 +SDwYQ6eSu1htn8vHWv128g,2012-11-19,gNS2bQwE1LMmKQmwfK4hFw,4,"The main advice I would give anyone interested in dining at Postino Arcadia would be: ""Prepare to Fight."" Prepare to fight for a parking space and prepare to fight for the bruschetta which is to die for. My favorites would have to be the Smoked Salmon and Pesto, Apple and Brie, Prosciutto and Fig and Warm Artichoke. Plus, you cannot beat a bottle of vino and 4 types of bruschetta for $20 every Monday and Tuesday after 8pm! + +I am also a huge fan of their Pretzel Pub Board and NYC Grilled Cheese that is companied by a Sierra Nevada Mustard, Pesto and Ketchup dipping sauces, washed down with a cold Stella Artois Lager Belgium. These menu items have sparked inspiration for me to make similar dishes in my own kitchen more than a time or two. So grab some good company, a bottle of vino paired with bruschetta and prepare for a relaxing-enjoyable night out. + +Don't forget the Affogato (vanilla bean ice cream topped with espresso) to give ya a jolt for your car ride home.",review,eqQUrSb55s2Lp-I4WCAxDg,0,2,0 +cp39VURFby4A6u9m2It8jg,2011-11-19,ThPwlYBLLSics3bvRuNgJw,4,"When you specialize in something, then you should know it and do it well. This is the Zinburger approach to burgers. Our server, besides being very attentive and friendly, was also extremely knowledgeable about the preparation and ingredients. It showed me that Zinburger really knows their burgers and takes the time to educate their staff. It also served to heighten my expectations...which weren't let down. + +The quality of my burger was very apparent. The bun was fresh, the meat was high grade, and the other ingredients were also well thought out. I love when restaurants are meticulous with their creations. This is a superb burger, expertly prepared from the creation of the patty (not too compressed) to the cooking of it (a perfectly pink in the middle ""medium"" is what I ordered and received). Simply great. + +The milkshakes are over-the-top rich and delicious--like eating whole pint of Haagen Dazs. We all shared one, and it was still overkill. Great tasting though. + +The fries were a little ""meh"" to me. Not sure why. They were hot & fresh, but a little bland. I tried the Truffle Fries as well, and they were also a little boring. Maybe they should try a different kind of oil or potato...or both. They were decent fries, just not as ""top notch"" good as the burgers. + +Lastly, for a ""burger joint,"" the service was excellent...to the point of fine dining type pampering. Very nice. Overall, I'm a fan. I'm looking forward to returning.",review,UuwjD6MZf6Z6QlNphiXRjA,2,1,1 +nBrD6TxddhHx4FhMk32JvQ,2012-04-09,cIlGYMW2yASdTIbKkyloEw,5,Always good food and good service. Best gyros around. I know I always get speedy service so I can eat my food and not be there for hours.,review,VTy78_cwc6stR_3fP5BnjA,0,1,0 +E4b5OC_6mZ0V7B6Nyjncsg,2012-03-13,b9ZiLzPSqc6vJcNgUft9Vg,5,Excellent food! Agree the sizzling rice soup is a must try. I had chicken pad thai 5 of 7 spicy level because I like spicy food. Great you can request spiciness level on each entree.,review,hRv1EcyXnVWAo--BikySTw,0,0,0 +9ziO3NpoNTKHvIKCBFB_fQ,2012-03-11,4gDaN2HcH5dLwZt8WuWGNw,4,"Tasty, large portion, culinary delight appetizers. + +More of a bar than a restaurant, but the food was good & trending artisanal.",review,Stpy2uWvI0k9rZkIrnWbtg,0,0,1 +24V8QQWO6VaVggHdxjQQ_A,2012-05-03,LS4YZU6E_rOi4b1nO9j_3g,5,"I have been here 3 times, and find it unique to Phoenix with a country French ambience without being ""cute-sy."" The patio is one of the loveliest we have here in Scottsdale. My daughter and I celebrated an early Mother's Day here recently. We were seated in just the right spot on the patio to tuck my grandson and his stroller in a corner next to the table. We splurged on some white sangria for lunch.....so pretty it had it's photo posted on Facebook. The Brie and Carmelized apples also came with grapes and strawberries and it was a very large serving of cheese. It could easily be a meal or feed 4 as an appetizer. We actually ran out of bread, because the Brie wheel was a nice large serving. The smoked ham sandwiches on crusty baguette are so good that I am craving them a few days later ....we used the still-warm gooey Brie on them, too. This place is just special! Plan an event, take a guest. It is a spot that will make it memorable. This was my first lunch as a new Grandmother with my daughter. My daughter is from the beach area in SCal, and she was wow'd. Thanks for the memories.......beautiful day.",review,-uYfeJs1HNUBRDEBYdv7zQ,0,1,0 +52QtjHlHoa7V611bOvv1aw,2011-07-07,MvejZPX5LiPvy9nP_nKgWw,4,Located in the W Hotel in Scottsdale. Great sushi dishes and a great atmosphere. I've only been there once but the service was great and the food was very taste and fresh.,review,9bP3urjM__IP5csFh9ZsuQ,0,1,0 +r8CwFUEQtL8gAT9KHnNhuw,2012-03-21,pH-guc8jRiGJjphkXW_jbQ,4,"Teakwoods is the place to go if you are a ""wings"" fan! They grill wings for crisp perfection and the flavor is so good that I don't even need ranch to dip the wing in. I know - How can you not need ranch? I didn't believe it until I tried it. + +Everytime I go to a restaurant that offers wings, I will be comparing it to Teakwoods.",review,eTIs9usl24L8HOyt32cq8A,0,0,0 +PgcuQvFl76bx42xIFyhzVg,2011-02-14,3y0Qfsc-de5lF8RYlw9DBA,5,"Just got back from lunch here, and I must say it was delicious! We sat outside on the patio which was very nice on such a pretty sunny day. I had the beef gyro which was huge and so so yummy! It came with a fresh greek salad and a yogurt sauce and I couldn't have asked for anything more. + +Definitely recommend coming here!",review,cGB8QwXbA87QndyeqotxrA,0,1,0 +H9wnP4BIctmRxMq43NPgAA,2011-07-30,j2WBSko-r3c2ciW7NtLBvg,5,"We went here for my wife's birthday, and it's a rare 5-star review for me. They scored on food, presentation, service and atmosphere. We sat indoors - it's a bit hot out still - and loved the decor, including the fun pillows on our large booth seat. Service was prompt, friendly, and attentive - but we never felt rushed. They make a killer mango mojito that perfectly balances the mango, lime and rum flavors. The kurobuta pork was perfectly prepared. And after having some disappointing lobster (in Maine of all places) the Maine lobster here was done just right - firm but not tough. They serve it ""lazy style"" and did a great job with both claw and tail meat coming out perfectly. A special birthday souffle topped the evening off. Expensive but absolutely worth it for a special occasion.",review,U0jr6zPZM-EZRN5EFej6HA,0,0,0 +ks-hzHZApm0jvsi9M7s9lg,2010-06-02,hCV6JuILuCEDJAFos3nTXQ,4,"Great place to shop for suits, ties, and dress clothes at reasonable prices.",review,GfW3R5sQpRqZLw-V7TIbVg,0,0,0 +9zJbULB6K3nbo-2N5cKy9Q,2011-11-19,snK_lEarSuDHlWwKfwSeFw,4,"If you need any office supplies, furniture, printers, computers, or one of them fancy electronic book readers, then you should check this place out. Not being a teacher or office manager/employee, I only come to these stores for printer ink. I was greeted with a friendly ""Hello, can I help you find something"" by one of the employees. My friend was looking for a stapler which the employee quickly guided us down the aisle to find an extensive collection, although I didn't see a red Swingline stapler ;) + +There is a huge print service station in the back and plenty of employees to help out with anything. Check out was super quick as there were three cashiers open and ready for a customer. Oh and I found out, thanks to my teacher friend, that you get a discount if you are a teacher. Pretty rad.",review,fl6oI21uXoxVMwfR6lFanQ,0,1,1 +cUaaIk_3UdeSJ54CLvrW8A,2008-08-25,9tzcfztV8Ab3w3VDe7ZNrg,2,"What is with the guy working there? He is seriously pissed-off every-time I go in. Actually last time I was there I walked out because he was yelling at one of the workers and it made me want to cry. I wish she would have walked out too. The time before that he was rude, not just rude, but a complete jerk to the people in front of me, what an a-hole. + +2 stars because it is downstairs from my work, and it's cheap and if one of my co-workers goes to get a slice they always have my hawaiian pie.",review,9VPNlcKsL99FvKtz1r9qJg,2,2,1 +i1zU7n6vtDZfHBumPsHLFw,2011-03-24,oGlJr_FFBA4zBiVNSxAEBg,5,"I agree with the other reviewers.. Ink bomb is definitely a shop that has a family vibe. All the tattooers are down to earth and have you, their customer in mind. There are usually 3 or 4 tattooers there, giving you a wide variety on technique, style, and experience.. all of which are important when picking your tattooer. I suggest always going in and having a consultation and looking at each persons portfolio to choose someone who fits your style whether it be ""New school"" or ""Traditional"" This shop has on open layout and a friendly vibe which allows your to let your guard down a bit.. because we all know tattoo shops can be intimidating.... +I will definitely be recommending this to all my friends and family.",review,FXbDtMtmR3zF50ljxeQueA,0,2,0 +5pgzTBgt-HR_0s7TDXSL2g,2012-08-29,LT0IUJB2QFYLNLJq5dK-2g,2,I was not happy with the service department. Service writer had a poor attitude towards helping me. Repair work was done well and on budget but it is sad how a greeter can sour you on the whole place.,review,vcfA6QjKXq898QLz7wf_bA,0,1,0 +SsL60j4ut59-v-gjmM5PKQ,2012-12-20,FGVsHCT8DgeSAHd5va8FjQ,1,"New N. Scottsdale location, Baaaaaaad! The were 10 staff members milling around and there was no manager on sight. $10.00 for a mediocre burger, with an uncooked, tasteless bun not large enough to encompass all the arugula. They forgot the sauce, which apparently is the main ingredient. The upgrades are ridiculous. $1.00 here for cheese on an already ""well priced"" burger (btw Flemings blue cheese/bacon burger $6, best in town), $5,00 here for fries. C'mon. And, it's the same two hispanic guys, who don't have any idea about chef inspired food, cooking in the kitchen as every other restaurant, there is no chef For the price, you want to see the chef/owner representing, especially at a new location, and, you want competent staff who treats you as #1, and not their conversing with the other staff members as #1, and you want to enjoy what is supposed to be one of the best burgers in town! What a disappointment. The lack of top down management care and supervision carries through in all elements of the poor experience. Take a pass.",review,Tw5glDzhfWs54emzY05JYQ,0,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2010-06-13,eig_QEv_BZcBlijoOnCCqw,4,"I lived in Phx for 7 years and never heard about this place, but having to come back for a friend's baby shower, I needed to find a good hotel. This place was surprisingly awesome, considering it's right next to Old Town. + +Walking up to the rooms part from the outside/back is not very impressive, they kind of look kind of like converted apartments. But inside is contemporary looking, little older, but still nice. The landscaping is awesome. +Beds are really comfy, the kind you sink into. Which is a huge plus for me, since i'm expecting and my stomach is pretty uncomfortable at the moment. +No dated tube TV's, yay! We had an LG LCD, and the channel selection was decent, they were all in analog though. +I was worried about noise since this is right next to obnoxious Old Town, but it was really quiet. The only noise we had was a neighbor's dog deciding to bark at like midnight... (They are pet friendly and provide beds, bowls and walks for dogs) +All the rooms have patios so, if it's not bloody hot it's nice to sit outside in the morning, listen to the birds, and people watch. + +Our room came with a bucket'o'beer deal as well that we didn't use, esp since I can't drink. It was all crappy domestics of the bartender's choice. + +The only complaint I have about it was that the pool was packed most of the day.. We went back to the pool around 10:30pm to relax and there was still 5-6 children playing in the pool and the spa. What little kids are doing awake and at the pool at like 11pm, I don't know. Those are some responsible parents... + +But for $92 a night and all the stuff they include with it, it's definitely worth it.",review,Z2G3xprEHqOgTSYto1tpfg,0,2,0 +jQST5lkLGX9L52-A10TGTQ,2011-09-13,a1P9XCKr5zw6ezfHsdWZqg,5,"My go-to restaurant for very tasty, genuine Thai food. Great lunch specials. Favorites from the dinner menu: fish cake, tom kha soup, pad thai, hot basil, Thai iced tea",review,QYgcusG-G0bwUOt0b5rT6w,0,0,0 +Inw6wqV6Jisv_k6Nr-M0VA,2012-09-02,DTjcfZMid-26UmUd-_J5RQ,5,"HELLLLLLLLO GOLFERS! What a sexy course this is. This ranks up there with some of the best courses I've ever played, and THE BEST desert course I have ever played! Yes it's desert links style golf, but you're in the desert so what do you expect? It's kind of a trek, but it'll be worth it. From the moment you arrive to the moment you leave you'll enjoy the service and scenery. A real private club feel. + +As mentioned earlier this is DESERT LINKS GOLF! No adjoining fairways, and all the crap plays as PGA desert (lateral). The fairways are pretty wide for the most part, so you can spray the ball a bit, but there is definitely some carry involved on some of the tee boxes. Hole 18 is a very hard core par 4. Long carry on the approach to the green with a TON of water along the right side of the fairway and green. This is the kind of hole that can ruin a good day on the course real quick. Don't be afraid to lay up. :) Oh, and there are mens ratings for ALL the tee boxes, I'd recommend higher handicappers play from the forward tees, because this course could be really hard if you're a mediocre golfer... + +Maintenance was perfect, even in September after baking in the Arizona heat all summer. The fairways were well manicured, and not too hard. Nice rough, but not too tall. A slightly errant shot will be caught, but you won't have to worry about searching for your ball for 5 minutes either. The greens were also perfect. Nice and fast, and TRUE! + +Ok, I'm done gushing about this course... Give it a shot, you won't regret it.",review,fFnaNnsBfStQKXQ6ymYy4A,0,0,0 +BJfjd8oEMW_zq8KTkixyig,2011-11-19,aKOTtEvWwPcSimUPgRKvyg,4,"I've gone here three times and each time with a different group. I have never ate here so I'm reviewing on games and booze. + +First off, I think every time I've walked in the door I was greeted with two things - a bouncer checking IDs and a nice strong whiff of beer. Hello, if you didn't already know it... you're in a bar. + +The place is kind of broken in to 3 parts - a bar, a restaurant, and a game room (billiards, ping-pong, darts, video games, air hockey, shuffleboard, etc.). I've played them all and I've enjoyed all the games. This is a pretty good place to just mess around with friends and BS and quite honestly this kind of reminds me of bars in Ohio where I'm from, albeit a bit more upscale since there is more. There is a lot of pool tables, so I would say that if you did have to wait, you wouldn't have to wait long. There is at least 4 tables. + +I don't remember my bill total, but generally I get here and just play games or only have one drink. So I can't really even comment on the pricing.",review,y7sq26EXGz7XG7DSo8TOuQ,0,0,0 +97Z7j4vH0kfzL10AONi4uA,2011-02-24,cRSvUjo78f34_WAVWzPN1A,5,"very laid back, very clean. This was my first piercing since I was a little kid. I had my tongue piercing it was very professional and they answered all of my questions. I went to this place specifically because of the good ratings they had online. My friend also had a tragus piercing here that went seamlessly also. I felt very safe and comfortable.",review,-ShGtYhJlQH_XQNjUcsU2A,0,0,0 +Az69nueCy94SVKkWaNNR0Q,2012-06-08,5qEbk0g7kLMab7b0JD4k1Q,5,"We tried this last night for our date night. We were impressed. The waitress was amazing in explaining the menu and making suggestions. This is a great place to relax and talk. The food was great. I had the Tartiflette...WOW it was so good. My husband had the La Potence, which is their speciality. He thought it was great...We will be back...",review,B4JqOYmQHnffRn5JUVpCNQ,0,1,0 +wzIPW_XyKc2DBWdOUM5hlQ,2011-05-21,9tsvEP4o6y3hZmzAvJBt3g,3,"Wanted some mexican that wasn't taco bell. The hotel recommend this place. The restaurant smelled like the inside of a tomato sauce can. I was turned off almost immediately. I decided to sit on the patio and try it out anyway. + +I ordered the Chipotle BBQ Chicken Chopped Salad with a light cilantro lime dressing. It was okay. The chips and salsa were okay too, nothing to brag about. The salsa tasted like it came from a can. I'm happy I ordered a salad. The redeeming factors were the Arizona Sunset Margarita and the good service. I think once restaurants turn into chains, they seem to lose their original character.",review,gg6KTSmKgevUB-IpGRub_Q,1,2,0 +sbsFamEj5wDxNAjUKrMcSw,2011-09-25,4O6rzNFfHuESYX9jAWGu_A,3,"The food isn't all that. I order an Ahi Salad, which was barely touched. On the other hand, the chicken Popsicle my friends ordered were quite delightful. all in all, that atmosphere was surely enjoyable.",review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,0 +-WZIxGXJHMGidZXRhKxP3w,2012-12-05,PzDtSkdatf6pJYKjL3WxAA,5,"Best breakfast in the valley. Dinner sucks. Well, let's clarify a bit here. We've ordered blueberry pancakes, stuffed french toast, muffins, and a few other b-fast items. They were all stupidly good. For dinner, we've tried a couple dishes such as the recommended jumbalaya - SUCKS! Stay away from that canned garbage. Back to breakfast...dang, that's incredible!",review,yEzlmDFbVrTI9R4cZTaUrw,0,1,0 +e9nN4XxjdHj4qtKCOPq_vg,2011-05-16,DtPIv-MSLEtjI9caKnQ1YQ,4,"I've only had a baguette once but never again, it almost made my gums bleed! + +However, ever since they opened I've been a fan of their most delectable croissant sandwiches. Great prices and awesome drinks. Suckks they don't take card but still worth it.",review,gnnJMMc5ZAkoJ8v4phFPQg,0,0,0 +kpzzEpXcHo9yzhUcz14chg,2011-07-31,YOxdPCAFcIQeeKgCNUcshA,4,"Great place to see a show. Prices are the best around, and it's never too crowded.",review,QhuESGhOQWnKqwlSrISm8A,0,2,0 +U4IipLI4RsuBLmxTFEV2MQ,2008-01-22,J_anYGV2NXZ3jsWkrSs2kA,5,"I heart Sky Harbor Airport Parking... + +Of course, it's always nice to find a ride to or from the airport but when you're all out of favors and you have only yourself to rely on, it comes down to driving yourself or getting a taxi. Sky Harbor Parking to the rescue. + +For $8 a day or cheaper if you print the coupons from their website, the folks at Sky Harbor Parking make it easy to drop your car and get to your gate in no time... and I've used them a handful of times solo and with the BF so I know it's door-to-door consistent service. + +If you are interested in covered parking, call ahead, but otherwise, just drive over to Washington and 40th and they will take care of you from there. Also, I recommend calling from the airport once you have your bags and they are always good about picking you up within minutes to take you back to your car. + +I hope you'll find Sky Harbor Airport Parking as useful and convenient as I do... safe travels!",review,fczQCSmaWF78toLEmb0Zsw,5,7,1 +fK7ujDbjhRFEe2D7eIwK4w,2012-06-27,Q6wHoDSBTujEHw11tFG6UQ,5,"I LOVE Kona's happy hour. Amazing deals on great sushi rolls, and the diner can always count on fast and friendly service. I am always happy with my experience at Kona, and find myself comparing it to other sushi restaurants. None can compare to Kona. Kona is the only place that offers my cherished Skinny Cucumber Mojito, and I come here often for it. I ask for this drink at other places and am always shocked that most don't even offer a skinny option, let alone the cucumber mojito. I have dined in the Scottsdale location as well as the Cherry Creek location in Denver, and both have equivalent high marks in service and food quality.",review,S84E-NLNx2s2zyyJHjDD5g,0,0,0 +9mpVVHcUfM3Ax1t08H79ng,2012-09-25,LnYQOFof6h0araZXPolJxQ,5,"Wanna try it? Now is your chance! One more day of this LivingSocial deal: 12 days for $49 + +http://t.livingsocial.com/deals/453990?ref=email-jp&rpi=85154658",review,kemtiwLut4qMqSZNXax_Gw,0,0,0 +SvZXOhA_hIuQgR34VfVqnQ,2011-06-26,TwYCoiVHcdv8eHFl35UO4w,3,"If you want a dog and are in the area, this is a pretty good call. Having said that, it is probably not worth a special trip. You can find a better hot dog or brat at a ballpark or in the supermarket.",review,Fjs6c1PwzY1YbTcuAyubCQ,0,0,0 +JhupPnWfNlMJivnWB5druA,2011-11-04,dN8JtaKaWAzBmfRKgaLHGw,5,Love love love this place. Great appetizers and cocktail menu. Must visit in Old Town Scottsadale,review,t3T5iCEXzcrayjclyklNDA,1,1,0 +-bd26a1QEEpqUZjBmtBUiQ,2011-07-01,-DIdBhvnQRAbHzdTB5001g,5,"I love this place. I just tried the other Ethiopian restaurant in the Valley, and was disappointed, and my gratitude for Cafe Lalibela multiplied. The food here is fresh and authentic, and the staff are really nice. I'm so lucky to live down the street! Tons of vegan options, too.",review,VJZJ0_EHtqi46pWxr7XPbQ,0,1,0 +ke3RFq3mHEAoJE_kkRNhiQ,2011-07-05,ODtau4AxqBoGeEW5JGlZPw,1,"I wrote a less than stellar review about this place some time ago and decided that my prior awful experience might have been a fluke and as I love great BBQ, decided to give them another go ..... I was right the first time! + +As before, the food was ho-hum at best, the prices too high vs the product quality but the death blow to me was once again, their customer service or shall I say lack of customer service? + +We had to ask the bartender if we could get a drink (That's odd) and all the wait staff acted like they were doing us a favor by waiting on us. + +To top it all off, they had little to no air conditioning so it was brutal to sit through a combination of bad food, crummy service and high heat!!! + +For me, this place is officially off the books and we sure won't be back. Lesson # 1: ""Your in the service industry, try and acy like it"" + +As a BBQ fan, I'll try elsewhere ...............",review,MGVbnW9-eYx_DDXmWIpGRw,0,0,0 +0UZ31UTcOLRKuqPqPe-VBA,2010-06-12,wql0DLMG1B4JdfyNJSgj5Q,5,"I been to many stadiums and this is one of my favorites. I attended a game against the Atlanta Braves and it was a great experience. + +Food prices are typical for any MLB stadium but get the combo meals and it seems cheaper. The bigger the beer the cheaper it seems. There really isn't a bad seat inside the entire place. Get there early enough and you can go down tot he bleachers during batting practice to catch a homerun hit. The staff is very friendly and talkative. + +If I lived in Arizona I would get season tickets. The merchandise pricing is pretty cheap too compared to most stadiums. $23 for a hat compared to $41 at Dodgers Stadium.",review,PTTACvsRCsdawDqRDlW3EA,0,0,0 +nBrD6TxddhHx4FhMk32JvQ,2010-01-09,U7qNgkU50urGYS-ylHdVzQ,4,I like their chicago dog. It is delicious. I've had good service here because mostly the owners are almost always working and they are real nice. It's only when they are gone that you get the crummy service.,review,aaLAojJwjxV7NvaOvXzsbA,0,0,0 +kk85ivM6MQUtH8u642p1Ew,2008-05-22,NjRNpMO_bLIa0vW0_RCiAA,5,"I enrolled my 2 year old son and 4 year old daughter into Hubbard. They've completed 2 swim lessons each and the results are dramatic. They have made huge strives in their water skills. Plus, it seems to enable them with confidence and self esteem after each lesson.",review,lgAgkEspbjBm5fyq8aeRVw,4,4,0 +UxvOXcoCRFRAVhRB0D9imw,2011-08-27,_AnWAf4wNZ1Rysla68ZRew,4,"My husband got back today from New Jersey (what a relief he isn't stuck in Hurricane Irene's path anymore!) and since we were in the neighborhood we figured we'd go to Over Easy. Read my most recent review on how that went (ie, a bust.) + +We stopped at Starbucks at the Safeway next to Over Easy and got our kids a pastry each while we figured out what we'd do. I turned to trusty yelp on my droid and they said that not only was Taylor's Cafe open, they do breakfast, and they were only about a mile from where we were. We decided to give breakfast one more try, called Taylor's and put our names on the list. + +When we arrived it was a little hard to find, but we called and they told us where it is. The decor is cozy and inviting. We waited at the bar for a few minutes while a table was readied, the manager was very attentive. I told him what happened at Over Easy and he was horrified. We live in Avondale, we're willing to drive for a good breakfast and also pay a bit more for good food and good service. Let me tell you, Taylor's Cafe really turned the morning around for us! + +My kids each ordered an apple juice, and one got chocolate chip pancakes, the other got strawberry waffles. Their kids menu is $8 each, but the portions are huge, it's easily something an adult would put away. I stole a bite from each, they were very tasty and there was enough for doggie bags. + +My husband got a build your own omelet with 3 different cheeses and chicken sausage. With his omelet he got 2 choices for sides, so he chose hash browns and cottage cheese (he almost went with a bagel but was pleased to hear about the cottage cheese.) The chicken sausage was an interesting option that we had not expected. He also ordered a mocha, which at $4 was about the size of what you'd get at Starbucks, and my husband said that it was on par with their quality. + +I ordered the Joe's special, intrigued by the list of ingredients. It was flavorful and delicious. The country potatoes were very tasty. I ordered the homemade raspberry lemonade, it was tangy and sweet, really tasty on a hot summer day. + +We came to the decision on 4 stars because the food was good, but not out of this world. They have fantastic options for the health conscious, and it seems to be popular with the patrons of a local gym because there were tons of people coming in work out gear. There is plenty of space (you don't feel like sardines in a can), the staff is polite, competent, and professional, and the ambiance is nice. We will definitely be coming back.",review,gMcMvfkLvU7klifm-hFjHQ,0,0,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2011-03-08,Fg7nWFakcZUq6b_7SLUCTg,2,"My favorite thing about this place is the decor. It is crazy beautiful. + +I also like that you can get better than average bar food until late and there are so many places to sit, you'll never have an issue with waiting. + +Their food is okay, but nothing spectacular. + +I used to live in Arcadia, and I miss it every day. If I were to move back to Phoenix/Scottsdale- I would never even consider a different neighborhood. Across the board, it is the friendliest and most beautiful neighborhood in Maricopa County. + +That being said- The Vig represents the lame element of the neighborhood. People with too much money and bad taste. I think someone else called it ""schmoozy"" and that's exactly it! + +As a neighbor, we usually rode our bikes- so I can't speak to parking. Do they not still have the shuttle? + +Give me The Great Escape, JTs or Postinos any day.",review,nlUIgx4bf0Apgl6aD1xO2w,0,3,0 +PwxvN0SnAGPdqXdNEYVT3g,2011-09-14,tyoq7zCRI2qYZSm1WYre1w,4,Nice location. Good outdoor dining. Moms Pot roast good and so are sausage ravioli. Interesting drinks an some local beers. I need to check out The Bliss Burger soon.,review,PJY1J0xMPzMVvzC4R5b0HA,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2012-03-22,OfDa57LfmI6piS6mNiiYSQ,5,You want to go to Four Peaks. Trust me.,review,RHV73wO2I9djxHJ6g3zbXg,1,1,0 +eHcQzL5eebqvKrLW5q283w,2012-02-26,OLpNsrgsTSKjSgV0LLORdA,3,"If it was possible I would give 3.5 stars. I rounded down because the first time I ordered from here they screwed up my sandwich (I ordered a cheese hero and they gave me a ham and cheese hero - ham-stink is permanent and since I detest ham, it was a whole sandwich killer). + +Meatball hero was pretty good though I would not rush back to get another. When I finally did get a cheese hero, it was delicious - this I would rush back to get. Husband loves the Bobby. + +The service is a little slow so I'm going to try ordering through their website the next time. Capriottis has definitely earned a spot in my sandwich place rotation.",review,3uR5YTXgW4hatuFnaNxSGg,0,0,0 +erBoatMp1TFi_NPxTigp6w,2008-08-04,kl9krJzcMmzwpcgU1K6dZQ,2,"I personally will never eat there again. + +The chips are actually amazing though, I would eat those a lot if it didnt require me stpping foot in the ultimate bro/slut restaurant. + + +The food is gross, the tortillas are ok, I like the decor actually, but the employees are slutty (and by slutty I saw skirts soo short if they picked something off the floor you for sure would see vagina) + +Apparently the uniform is jean skirts and heels. + +This is the male glittery shirt wearing capitol of Scottsdale. The food sucks, dont eat here!",review,ZZ43etAB2n_T53YBYtf8Dw,5,7,6 +2bdKR3l4o-S1CscLqqnvVw,2012-07-11,sc51MxV56u9AZs4vUr4poQ,2,"I like spicy. I mean I like to sweat from the bridge of my nose when I eat. When they asked how hot I wanted my green curry chicken, I did a double take. ""Isn't green curry spicy by definition?"" They told me they make it in varying degrees of spiciness for the ASU crowd. While I disagree with diluting the authenticity of the traditional preparation, I get it - they have a business to run. What I really don't like is how they do it. They make a mild green curry...er, no, green sauce. Then, upon ordering, they add a certain amount of red chili flakes depending on how spicy you want it. This is not only upsetting philosophically, but chili flakes need time to cook in a curry - you don't just drop in, stir and serve. I get the sense that this problem is rampant in Arizona; hope to find a solution soon.",review,oVWlHAwQBOqP0TuK6cifIg,1,2,1 +UE4h9OXNzNInmxseAkUihw,2011-01-14,ZCOOaurp2P9HX_9aZ71mrg,5,"We went here once a week for the year my husband was in grad school. The food is a 4, but the waitresses are a 5. It was a half mile from our apartment and so we would walk there and walk back to work off the huge portions. This is the only restaurant in my life where I could consider myself a regular. We never really talked with the waitresses or knew their names, but they always knew what I wanted; I didn't have to order. They always gave me water with no ice no lemon, my husband's with ice and lemon, gave me my panang curry with chicken medium and waited for my husband to choose what he wanted. He probably ordered most of the items on the menu. They refilled my rice if I ran out without asking. Our bill always came to $19.53 for dinner more times than I can remember. We went maybe twice for lunch, but almost always for dinner. My husband graduated last month and we moved from Tempe but we miss this place dearly.",review,cLYVXtfPdWGYf51hY9O3ow,0,0,0 +FKHv7FkblONv9qqBndJUrg,2012-05-09,8r534MSRuysYm-5nzXwpwQ,3,"Service was great, and always an interesting time on a late Saturday night.",review,JkMOQaMjlBHMqp6gj-hL3w,1,3,1 +nH4CEJwrRXPxhfdL2pz3MA,2009-12-09,dWvYdwpbgF0l__Lnavfy7A,3,"The restaurant has 6 tables which make it possible for you to eat-in, but this place is definitely more suited towards take out or delivery. Just don't expect service if you eat-in. You order at a counter and if you choose to eat-in, you will get your soup in a take out container, eat on paper plates and styrofoam cups, but get your entrees served on platters. + +The house special won ton soup was pretty tasty and was loaded with a variety of fresh veggies, as well as chicken, pork, and shrimp pieces. However, one key ingredient was missing - won tons! + +General Tso's chicken was fried and served with broccoli and sufficient sauce. The Mongolian beef was more Mongolian and less beef. + +Overall the food was OK, except for the disappointment of the missing wontons, and I would probably consider this place again for delivery.",review,qFZkU_iO6KjU-_5BptIu9A,0,1,0 +MLAnvEcvDfOWELHUN_0xEw,2012-11-16,pm53JoxSbYnVPfbbEn5cqg,3,"Preface: I'm being nice +3 stars is an OK rating and I don't want my opinions to skew the rating scale but a 2.5 star option if available would be welcome, again I'm being nice. + +This place is terrible. (I might be exaggerating) I have heard horrible stories about the brewery in Tucson, how the beer is fine but the food is absolute crap. I figured hey they are moving to Scottsdale in an area with an insane amount of delicious dining establishments, they have to of retooled that menu ... they didn't. The beer honestly is good not great 4peaks IMO is at least 2x better (again being nice) but I respect a local presence and craft beer so I cant knock them for trying and building a successful brand. + +That being said the food is really nothing special at all, they offer pairings like mac and cheese pizza (too gross to try) to things like salmon and steak (too fancy for here). I tried a burger, usually safe with a mix of sweet potato and regular fries. I also had the monkey shine which has the highest alcohol content (something I am supportive of) and even after that beer the food disappointed (how can that be?!). It wasn't that the burger was horrible but it just wasn't anything special, it was bland and I got the western that had tons of stuff on it. The biggest problem was the fries which ironically seemed to come out of the frozen food section of a local Frys Food and Drug (not even a signature, Kroger brand - house brand aka the worst). A friend joining me had the wings, the wings were actually pretty good but they were wings and wings are gonna be good in a place like this especially after some beer so I feel that we should take that for what its worth. + +With mediocre food at best and OK beer I don't see any reason to go here over 4 peaks. + +Improve your menu and I'll give you another shot. :)",review,FAxy_JuEOhhZl3C10LMY1A,1,1,1 +WNy1uzcmm_UHmTyR--o5IA,2009-02-01,31jBo2afBbzqvGePhchbTQ,2,"I want to give the Cornish Pasty Company another star, but I can't quite do it... + +The pasties I order are REALLY good... They have a fine beer selection (including Mickey's Big-Mouths) and a few cocktail options... Most of the sides and desserts are pretty solid. + +I tend to stick with and very much enjoy the more traditional pasties like The Oggie, and the Cottage Pie (OK, OK... I love the Royale with Cheese, too). However, some of the ""premium"" pasties like the Pesto Chicken and the Salmon pasty are a bit funky to me. + +Even that, I can write off to personal preference. + +What really keeps the CPC from getting another star or two is the restaurant itself. + +It's a long, narrow space, 75% of which is divided by a bar. Seating is along the wall or at the bar, with a few larger tables in the back. + +On the other side of the bar from the customers is where ALL of the restaurant operations take place; cooking, cleaning, prep, and bar. If one is sitting at the bar, this intersection of consumption with infrastructure is often a bit too much like watching sausage being made. + +I don't really expect a fine dining experience at a place like the Cornish Pasty, but I really don't need to hear the dishes crashing into the sink and i don't need to see all the potential for cross-contamination (food preparation right next to the dirty dishes and raw meat right next to the beer glasses). + +My worst experience was arriving late and sitting at the bar while they were cleaning the ""kitchen"" area and still serving food. It was really noisy, the refrigerator light kept blinding me, and the smell of cleaning chemicals was so strong that it made it impossible for me to even think about enjoying the pasty. I walked out after about 4 bites... + +I've wanted to go back several times, because I do enjoy the food and beer options, and finally went back last Friday. The food was as good as it's ever been but the environment will still make me think 2 or 3 times before heading back. + +Maybe I'll just have to take advantage of their take-out and stop at Tops liquor on my way home for the Hoegaarden...",review,QQUlKfw-MZGuOrf-B62wbg,2,2,1 +4_xxWpQKhBWhAOvfVPmFXQ,2012-12-20,gh5sIOtS5Mnx5JVkAfkkCg,4,"Yummy, fast, fairly priced, and great service! I'll be back!!",review,kq6xd1YK_FDIwDCSknmNzg,1,1,1 +Pfb6VOIiroqDWOebfgWGPQ,2011-01-19,2TjsAVEcQCTpX1rKQRq2HA,4,"I would echo many of the positive things others have mentioned about Phoenix City Grille. Everything I had here was just downright good. Ribs were mouthwatering, fall off the bone, marinated fresh each morning and not overcoated, perfect. Really didn't even need the sauce they had such flavor already. + +Black bean soup was nice and the chopped salad was real good too with a nice peanut dressing. Nice wine list with plenty of affordable by-the-glass options. And the server we had was nice too, my companion and I stumbled in after a hike to Piestewa Peak and were definitely underdressed, but everyone was nice about it and they clearly wanted out business and valued us as customers. + +If I lived in this area of Phoenix, this would be in my rotation for sure.",review,mODRlE6YB-qdmJPoJ-WcWA,0,0,0 +lEUsYkm-IHF8_hJTAJDjHw,2012-10-16,R-A_xfOHueyQ7D29-X5uVA,4,"Surprisingly good! I tried the strawberry lemonade and the caramel french toast. Each had flavor through the cake and frosting, shockingly unusual to find in cupcakes, and plenty of frosting. I will bring my sweet pea back for a treat.",review,qABKRj1ggJmtvrL9FMFtuA,2,1,0 +mQUC-ATrFuMQSaDQb93Pug,2012-12-30,5EbtfmMzlbJ61R_UiobVKg,4,"Well, if you want California fancy cuisine, this ain't your place. If you are seeking down-home country cookin, this is your spot. Anyway, there are no Cracker Barrels in California. + +The lunches for the two of us were great. Very good service on a busy day. Our meals were exactly as ordered (many choices at Cracker Barrel) and the food was hot. The prices are unbelievably reasonable, as inexpensive as a fast food restaurant. + +The servers are super and extremely courteous and well trained.",review,sjXubsgIJvL9tFIctrK5uw,0,0,0 +2UfTG6BpFgeMREXQdAd_TQ,2012-05-07,xf0yOi1tdEFVKNeoJDBVXQ,3,"Live very close to this theater so I go there whenever I can. Went to one of the grand opening movies ""Avengers"". The movie was great but when using the restrooms they are very small for the amount of people going there (5 stalls) there was no toilet paper, one was out of order, long waiting lines and one soap dispenser didn't work . Went to get popcorn and watched one of the wait staff take one cup, pour something into another cup then replace the used cup back with the unused ones. The seats in the theater do make you sore after about a hour. They don't rock back and the seats are starting to bow in from constant use so you feel like you are arching forward.",review,Snr-iImWYYD_a_7Iar3E0w,0,2,0 +vvA3fbps4F9nGlAEYKk_sA,2011-11-27,S5klRJ_7SMjyKaOiXpMNhA,1,"Groupon rip-off. Small salad, three extremely small plates of mediocre pasta desserts that cloyed the palate. All for an advertised value of $90. Will NEVER return.",review,g5QxNUDDU3iATH1H-vE8Og,0,2,1 +sb4wU69LkCtC6Axqcd34WQ,2010-12-18,JLWMqGRXyhFWCBgpW4i6nQ,3,"The fish tacos were good and the trendy atmosphere was nice. But, the whole thing was a bit too formula...like ""restaurant in a box"" concept. No outlyers, not much spice, fairly bland, middle of the road.....but wait, its in Arizona! Ok, no political jokes re Arizona. I was so-so with Blanco and will continue to explore on the next visit.",review,VqSCQCva71Q-ZVcMsYfQuw,0,0,0 +zLhfnbcnGg01_lltvrHVBQ,2012-03-13,EGivUqw8wLXW0uXw_JVFlg,5,"Dr. Kanarish was exactly how I expected he would be by the other reviews I read on Yelp and Google. His staff was very friendly and the facility is extremely clean. I have an 8 year old Boxer that needed a large tumor type growth removed from his paw and was given very high estimates from different hospitals. Phoenix Mountain Animal gave me a very reasonable price on the initial exam and the actual removal, stitches, etc... ended up being much more affordable than any place I had called. I was originally offered care credit( a payment plan) but I ended up not needing it because the bill was within reason. I just picked up my dog and he was a little sleepy from the local anesthetic, so we will see how the next few days go. A great first experience and am planning on transferring all our future visits to see Dr. Karanish. It's great to see there are honest and compassionate Doctors around. I hope anyone looking for an exceptional Dr. will consider Dr. Karanish.",review,fRexc9P14_3Rq7113synAQ,0,0,0 +IP_1LeKBGA5HYzNQrGqJGQ,2012-11-07,xmq-rtHaUW0Z0apdzKEfqQ,5,"I first saw them Saturday morning at the Phoenix Public Market and told myself that I would have to try them soon. I was too full from all the sampling with the different vendors. My coworkers and I went to check out the food trucks that gather on Thursday outside of Whole Foods by Raintree and the 101. I saw that Mojo Bowl was there and made my mind up right away to get their food. + +I decided to get the Red, White, and Kale salad. I love quinoa and kale so it was the obvious choice for me. I also wanted to try one of their smoothies out. I went with the Coco Coca. The description mentioned that it was like a drinkable Almond Joy and I was sold right there. The total came to $13, not too shabby considering the portions. I didn't even touch my salad because the smoothie was so fulling, definitely a meal in itself. Towards the end of the work day I was getting hungry and decided to try some of the salad. I was asked if I wanted a balsamic or raspberry vinaigrette to go with the salad. I told the guy whatever tastes better and he told me that would be the raspberry vinaigrette. The salad was delicious. The kale was chopped up so finely that it really didn't have a taste so if you're not a huge fan of kale you might still like the salad. The portion was huge, it was good for 2 meals. + +I try to eat healthy and like to support local businesses. Mojo Bowl definitely brings those two together for me. I can't wait to try more of their smoothies and food out soon!",review,oe_QopcqJ8RJMrW-DJLodA,0,1,0 +fOup98Vso87ERYQ_6eYmeQ,2010-03-05,IBE1v0VGkiOa6U1vsOkuQQ,4,"I had a date in January here with Jen. We got the meat pizza, which was great. I thought our date was pretty good, but wasn't quite up to the hype of our texting and online chatting. She was very talkative and definitely an adventurous extrovert. She lived in New York (Appropriate NYPD PIzza topic) for a few years to be close to theater, but moved back to Arizona because of lack of money. It was another unsuccessful first date, not leading to a second date. Overall, I recommend the pizza and the service was excellent.",review,hHimxg0RrR4--yOwj0mOGg,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2009-10-29,DWNmN4B5gU1flemlxdKH7g,2,"You would think with the economy being what it is today, it would be easy for any establishment to hire semi-intelligent people to run the register. +I went into sprinkles to taste some of their fall specials and I walked into a scene that was beyond depressing. My first experience with Sprinkles is when I lived in LA. You couldn't get a cupcake without waiting in line at least 30 minutes. Scottsdale, you have 4 perky girls greeting you, with their cupcake themed baby tees the minute you walk through the door. +The trays were empty and the selection was bare at best. I ordered 4 cupcakes. NOT rocket science. 1-2-3-4 +There was one other woman waiting for a large order, a couple dozen at least. The dingbat ringing us up tried to charge me over $80 for 4 cupcakes!! Whoa! ""Are you sure those are mine?"" +Her response was ""is your name Susan?"" No it is not. She gives me a blank look like she saw a ghost. So this is uncomfortable. I kindly nudged her by saying ""I think my total should be in the $13 range, I only got 4 cupcakes. "" +""The tag says you got 4 dozen."" (i can't remember the exact qty) +Now Red Velvet (remember the themed shirts?) is testing my patience. Is that still Susan's order? +Oh duh! Now we get it! +After all that I get the cupcakes home, and they are dryer than a popcorn fart. Disappointing.",review,GHHJi9AuaEPCZ8vvtQG3sA,1,1,1 +o1GIYYZJjM6nM03fQs_uEQ,2012-06-16,ekGeAHD2C_tkQFvZj45YRQ,5,"Went here and we had a groupon. The ambiance was awesome. Two stories down, you enter a cozy space. We were a few minutes early for our reservations and we hung out in the bar. Table was ready and I ordered the lobster dinner. It was delicious and they cracked it table side. We definitely will be back again.",review,meBgdnN_Jw9MOwz3ZzqQEA,0,1,0 +WrMPN5glZGrbI3rvVtxJFw,2010-04-05,ODZIBk9fCzDz7Qlhjp96VA,5,"First off, I am not a Cubs fan. But I came here to watch them play the A's during spring training and thought this park rocked. Its cozy enough get within heckling distance of the players, but it has a lot of the amenities of Wrigley Field...including Old Style beer and florescent green hot dog relish. All this and sunshine too! What's not to like?",review,x8d65djxDZ_O3iJ7prpVDw,0,0,0 +AaYHMYoeOt-5nN32vTA_Dg,2007-05-08,De1m82c-hFBb6MNJVEgheg,4,"I enjoyed our night at Suede. My husband I got there early and grabbed a few drinks ($4 Trump Vodka drinks- sa-weet!) and headed out to the patio. I really liked the design of the place, especially the huge outdoor area. Since we got there early in the night there wasn't a DJ playing yet and the only other patrons were two other young men. As the night went on the crowd grew ever more interesting- from the undergrads that shared a table with us to the large group of 30/40 something men at the next table to what I would call here in Boston ""fashionably challenged"" girls and meathead boys. The DJ started around 10 and man, it brought me right back to my sophomore year in college. (Circa 2000-2001) He was spinning all the hits from 7 years ago! Not that I didn't enjoy my sophomore year, it was awesome, it was just not expected. Once again, it was another place in Scottsdale where we only spent about $50 or so on drinks for the night. + +All in all though I did enjoy Suede and my husband and I will definitely be returning.",review,qASPib1Z8ft8e96dtbh66w,4,3,2 +3wLLf8wRqD1ZQowi9aZSoA,2012-04-08,_HxVPw7sjeKO8mdd8Z-7TA,5,"we rode our bikes here today in search of a new place to try. the online menu looked like it had a few options for non-meat eaters (although it is very much a meat heavy menu). + +for an easter sunday lunch, it was very empty, not a good sign. but we had no wait and they easily passed the water glass test. our server was very attentive and checked on us throughout the meal without being overbearing. + +the decor is ""country"" but not like cracker barrel....more like neo farm dining. + +i had the blackened fish sandwich, which was cooked really well, nice and seared but juicy, topped with onion, pickles, tomatoes and butter lettuce. i had the jalpeno and cheese grits on the side and they were rich and creamy with just a slight hint of heat...nothing to burn your mouth. +my wife had the tuna sandwich, which was also tasty and seared just right. she did have to navigate a big piece of fascia which is not that delectable, but it was her dish, not mine. her side of gigantic asparagus tasted wonderful. + +i would love to come back here and hope they are able to make it here. well worth the bike ride.",review,ST8Yzlk2MqKlcaLqL2djBg,2,1,1 +-5rFC4EVrT-v8g1PSEf6Xg,2012-05-09,ssrgeWnGY_bb-TyrShidmw,4,"The decor and ambience was very pleasant. The staff was very friendly and attentive. Granted, it was a Monday night and my wife and I were only one of three parties in the restaurant. + + We ordered the hot and sour soup, the puu puu platter (sp?), chicken chow mein, and the curry chicken. Everything was terrific. The hot and sour soup surprised me - I'm not normally a very big soup fan but I thoroughly enjoyed it both at the restaurant and as left-overs the next day. The portions of all of the orders were very big. We had left-overs for three additional meals.",review,Qiy7yvDJEmbGuFjvtW62-w,0,1,0 +XYhVyCbzJCrYclR6J4LYSw,2011-07-17,OFb6qgUQryqZqrEZRXzs1Q,5,"I'd leave my Scottsdale bubble for a few reasons (and yes there are additional exceptions) + +1. Nobuo at Teeter House. +2. Fez. +3. My friends in various parts of the valley + +and + +4. Mekong Supermarket. + +I consider myself to be a huge fan of Asian cuisine. Chinese, Japanese, Filipino, Korean, Indian. You name it, I'll eat it. I have my healthy moments, but I am a seasoned eater and I am not afraid of exploring the world through my palate. + +Mekong is the perfect place for me to massage my senses. The aroma and sensations from the exotic product. The stunning visual of a catfish being bopped on the head, and then cut up and packaged. The cheesy elevator music on the loudspeaker. The delicious taste of a spring roll from the hot food bar. + +This place has it all. + +I usually come here for my Asian condiments and live seafood. Want a live crab? Boom. Done. Want spicy mustard or sriracha in a large bottle for cheap? It's yours. + +To me, there is nothing like taking the 10 mile drive in traffic to Mekong because I know I am going to get everything I want. + +Make the trek. You won't regret it.",review,8JC-Yb3UDUv2FUl5ym1nVg,3,2,2 +MPziC5MO2QQiYVAMM3fdSw,2012-09-16,jyVAxH_cInITZQ_Xvb5Biw,5,"Okay, I will start out by saying that I just picked this place out because it was near a bar we were going to afterward. Boy Howdy, am I glad I found this little gem! Upon entering I was overwhelmed with the idea that we were in an Italian friend's grandma's circa 1980's dining room. It was quaint. It was old school. It kinda made me a little nervous! + +The general feel of the waiter we had was extremely laid back. Traditional Italian dude who was a little tardy in checking back, etc. Our water glass was NEVER refilled. Got a little more nervous. + +They brought out really good looking bread and poured some herbed olive oil out for me (I declined because I have celiac disease and can't have regular bread.). My husband said the bread and the olive oil was amazing. I had called ahead and they said they had many gluten free options. + +I ordered the Chicken al Berto. My husband ordered veal and a side of spaghetti with meat sauce. We started with a Tomato Caprese appetizer. The tomato was slightly under ripe but the mozza and basil made up for it...and in the center was a bunch of roasted red peppers which totally made the dish! Nom nom nom. The balsamic was excellent as well. I must now do peppers with my Caprese! + +Then our entrees came out. My chicken had fontina cheese, pancetta and spinach. There was a little line of mushrooms in a marsala sauce which I'm not sure if it was supposed to be there or not. I'm super happy it was! This is close to if not the BEST chicken dish I've eaten. The chicken was moist which is usually questionable in Italian restaurants I've found. The quality of the Fontina cheese was impeccable. The pancetta was crisp and plentiful. Then I tasted the mushrooms!!!! OMG!! Freaking amazing! I may have to try the Chicken Marsala sometime just to have more mushrooms! Divine. + +It took a while to eat, mainly due to the waiter's ""chill"" attitude but we shall go back again and again and again. I don't care if you don't get anything included with your main entree. The portion of entrees were HUGE. My husband loved both his veal dish and said the meat sauce was one of the best he's had. Fresh, fresh, fresh. + +It's on my new list of first priority restaurants. And I think the prices were pretty good. Less than $15 for my chicken, $20 for the veal and $10 for the Caprese. I'm so there next week! + +Oh, and put your phone on vibrate. They kind of insist! And that's okay too!",review,9uuPzUWC1m_TnMUV9kXu9g,0,1,0 +R6aazv8FB-6BeanY3ag8kw,2008-10-07,CxRq8G9OSbWuFMzHWkYdcw,3,"I'm sad to say that I wasn't in love with MacAlpine's. The fact that the building has never been restored is cool, in a dirty kind of way. The floors will never be clean enough, because they are so old. That may seem ridiculous, but cleanliness is important to me when I'm eating somewhere. + +Our server was odd, but helpful and attentive. We spent a good amount of time oogling the random items displayed throughout and were entertained with our surroundings. + +The food is where I saw the problem- my Mac Cheeseburger was bland and tasteless. My broccoli and cheese soup was below average. I wasn't impressed one bit. + +We ended up having dessert. I opted for a single scoop of Chocolate Malt Krunch, which I'd never had before and didn't love (total personal preference as my friend loved it). MacAlpine's is cool, but I think purely as a place to get something sweet.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,4,8,1 +TCqkBVN84Ek0oLmZGAX5xA,2009-07-21,vrj-vMPiu9IuGOdggYAmMQ,1,"I found Lisa G's while driving through phoenix with a friend. The exterior looked promising and we prepared ourselves for a treat. We were in for a a shock! We ordered the antipasto plate and while there were serious issues with it, it turned out to be the best thing we were served. I ordered the chicken rolatini (the special of the day) and it was just plain bad! The chicken was dry and under seasoned, the Rosemary potatoes were soggy and the veggie medley (squash, corn, green beans, etc.) was over cooked and the juices spilled over into the potatoes. It was one of the worst $17 meals that I have ever had! My friend ordered the veggie salad and it was one literal hot mess. Just horrible food! I see that others had the mini burgers and bowl of balls and found them to be tasty. I wish I had ordered those. As it is this is one place I would never revisit or recommend to a friend!",review,76rbZBcgBt92PI6a2-9iGw,0,4,0 +pfTwzep_4hRTX_jXoi38cw,2011-01-28,x1CLCNsuyTjeqifmc6cOeA,2,"Burger was great, but the service wasn't so great. When thumbing through my wallet for cash, the owner rudely interrupted me and told me they don't accept cards, only cash payment. + +When my friend asked what he would recommend, he shoved a menu in his face and said ""I'd recommend looking at a menu"". + +I fought back the urge to just leave and go somewhere else and ordered the Good Ass burger, which was avocado and bacon, so you can't really go wrong with that. The fries were good and the burger was pretty good. + +Service: 1 star +Food: 4 stars + +Average: 2 stars + +http://dietstartstomorrow.com/post/2983024079/two-hippies-magic-mushroom-burgers-phoenix",review,AZNp2qEdKRkqO7DT2ggaAw,0,2,0 +wepFVY82q_tuDzG6lQjHWw,2007-02-15,s7whfk-Dg9sXP5NTig1OLA,4,"Whole Foods is awesome. They have a huge selection of organic and vegetarian items and a deli/bakery area with tables for a quick lunch or dinner. + +If you eat any of the Morningstar Farms products, this is a good place to get them. Although you won't find them as cheap here as other places, they do have a really big selection. + +This is also a good place to get vitamins or any alternative health products.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,1 +KQzpjBmnAMXPqipeWTKG0w,2009-10-02,bJAJyoT04GwOatS4UVX90Q,3,"I found myself in Phoenix for a week. I prefer Marriott, but a co-worker insisted on Hilton....and then didn't go on the trip. Nice. + +Anyway, the stay was a hodgepodge of experiences. + +Downsides: The room was nondescript on the whole, but the neck of the shower was pulled partly out of the wall and the shower curtain was partly torn and had red (?!?) mold on it. I didn't have a car, so the parking lot didn't bother me, but the area on one side of the hotel was sketchy and had a fair amount of undesirable foot traffic. The nearest station to get on the light rail was 3 blocks either way from the hotel. + +Upsides: The staff was friendly and super-helpful in recommending EXCELLENT restaurants, including hole-in-wall, genuine Mexican joints. The hotel has a shuttle van that will, if you reserve it or can snag a ridealong, take you anywhere within five miles of the hotel for free, and then pick you up again. Naturally you should tip the driver (also a great guy), but it still beats taking a cab. The driver gets bonus points for letting us jump out and grab a coffee on the way to our destination! It also is only 1.5 blocks from Fez, a fantastic restaurant. + +I was not knocked out by the facility, but the people were great. I'll still probably stay a Marriott user when I return, but I'll sure consider the Garden Inn again.",review,UFPdthvTipX6E7KEf-Stvw,2,3,0 +STv-ED3M2xmRFMSvQbWGaw,2009-10-24,Fl0_VBXznLgmegwbNYU5wQ,4,"My girlfriend has been craving a mushroom steak and cheese sub for the past couple of weeks, and while that's easy to find in New England where we're both from, it's not so easy to find in the Phoenix area. + +But, now we know where to look. + +Great sandwiches and a great looking menu that we'll be exploring for quite a while. And they also stock a variety of Wise potato chips products which aren't widely available here. + +For a taste of home, we know where to go, and we'll be back.",review,qGl1xfS0okKRbSH8vvucGA,1,0,0 +IYYaa562PybzXf8tQnT17w,2009-03-16,jH1IzSAl0CeiQ9_T5ha_zw,3,"Went here Sunday for the Rockies vs Dodgers game. We got some great free seats just to the left of home plate. Love the awning that provides lots of shade to people who just want to watch the game from the top of the seat section. + +I heard that the game was sold out, but it looked maybe 75% full. Parking wasn't too bad for us. We actually parked maybe 4 lanes away from the stadium. The food was ok. This place just didn't have the spring training feel l've come to love. + +This really is too far of a drive for me and I truly love the vibe and energy I get from the crowds at older stadiums like Phoenix Muni and Tempe Diablo and even Hohokam and Scottsdale. This just didn't seem to compare.",review,EKwGhgLrM18ErVKKeYE2UA,1,2,2 +s_cKw6m0Fw9jZbobRH0YSg,2008-08-03,c2YWVS2htxj3oEQkemZaUQ,3,"So Weekends are usually hubbys choice and he decided on Rock Bottom. + +I don't mind coming here, I really like their Mac and Cheese. +You can get it with or without chicken.........years ago the chicken was this really thin shaved peppered chicken and I thought it was awful so I have since always ordered without chicken. + +However today Hubby chose the mac and chicken and I was surprised that now they use real chunks of shredded chicken breast!! YAY! +What and improvement!! It was really good! (see pics) +. + +I got the Turkey Bacon Cobb sandwich minus bacon =Layers of juicy oven-roasted turkey breast on grilled sourdough bread with sweet peppered bacon, sliced avocado, roasted tomatoes, sprouts and mixed greens. Topped with rosemary dressing and Bleu cheese crumbles (see pics) + +It was better than I expected, they forgot to put avocado on it though and +the bread was really really good and for being grilled it wasnt over saturated with grease. + +The onion rings could have been crispier but were OK. + +Lame waitress today she was new but whatever...she sucked!!",review,UsULgP4bKA8RMzs8dQzcsA,1,2,2 +hW0Ne_HTHEAgGF1rAdmR-g,2011-10-16,O67YJygNyzYQGUqATIG_ew,4,"Nice clean airport with lots of places to shop and lots of food options. Terminal 4 is nice. + +Two things: + +1. The marathon walk from the Southwest ticket counter to the D gates...good God, they need a tram or moving walkway. + +2. The Security bag screening machines are old and tiny; my bag got stuck; it's NEVER been a problem at any other airport I've been through (SMF, LAS, SNA, ONT, SAN, BUR, SEA, LAX...) + +Oh, and if you rent a car, be sure to allow extra time because the shuttle ride to/from the airport itself is at least 10 minutes. But it's a nice rental car area...",review,z7PkDGuW38Evhw3uVEfT0w,0,0,0 +V6BYjHM9SnXscfkln3hCdA,2008-10-25,yC7V2o2I78CRqHtYS1o-Ig,3,"A buddy of mine takes me to this place for dinner, usually, and once for breakfast. It's an interesting place. As others have noted, be prepared to wait a while for service and don't be afraid to go get your waiter if you're feeling abandoned. Also, there may be a wait for a table, and the environment is loud, so be prepared to shout a bit if it's busy. + +They have beer-tasting on certain nights. I did not partake, but my Dad (who was visiting AZ) did. The food varies in quality (or perhaps just varies in quality of recipe?). My Orange Table friend and I shared a 'special' pork chop dish, and that was pretty blah. However, I highly recommend their grilled cheese sandwich on some sort of yummy bread (the lower end cheese sandwich ~ I have yet to try the fancy one). + +As for breakfast, I don't recall it being particularly spectacular, but I think it was better than your average diner breakfast. I may have to go back to try again... The flavored iced coffee seems very evil and full of calories, but it is really quite good. That did stand out! + +Orange Table is recommended if you want a place to chill and chat with your friends. Just try to find out what others are eating so that you pick something good from the menu. : )",review,Qa2arVXyiHhxRM6HqUfEVw,1,1,2 +LMG0zsAkUSscIvmV9vvm3A,2010-09-21,QyHVsAOYH-vIdiIqpYS8dg,5,"I just celebrated my birthday at Oregano's. I had the best server I have had the pleasure of meeting in a lonnnnng time. ASK FOR ALEXANDRA. Knowledgable, adorable!, attentive, funny, and charming to boot! Amazing pizza and salad, fab cocktails we'd never heard of, and to-die-for dessert. All per her recommendations. Can't wait to come here again.",review,OjPYJxpkm_xDIiZAquMEIA,0,0,0 +P5uC-zfGG6yqoQDUyqyAvg,2009-01-27,kS_arxl7MATDHQ8FhuooGw,3,"There's just something about this place I don't like. + +I love the wine list + +I love dim lighting, caves, couches, sausage and cheese platters.... + +Just can't put my finger on it, but I would rather sit at the bar at Cowboy Ciao then have to hang out here. *Shrug* + +The bartenders were a bit snotty last time I was there... maybe that's it. Hmph.",review,PShy2RYNadDUhJf4ErOJ7w,0,2,1 +FS7aGG1AOLbrVIGXTuA5EA,2012-10-24,YU9-0d4OeOEZuqFYs1xvPw,2,"Beatiful setting and good service. However, that doesn't make up for the $14 burger which was average at best and all three of ours were over cooked.",review,PimB4yUetjP2ylJGMpK21g,0,0,0 +vxPPpj5jJKO8DtapF5S-NQ,2011-04-01,gxAsOY4jM85H_Tn6Jl3OJw,4,"I went here the other day, as I had a Deal Chicken for this place. I used to go to a really good Salvadorian restaurant in Seattle, and was excited to see there was one right near where I live now. So the BF and I got here at around 8 at night on a Sunday and it was actually pretty busy. This place is in a tiny strip mall that does not look like it gets much business, and I would have never seen it from the road, so it must be good to still be in business. So I ordered a pollo pupusa, a carne asada pupusa, and a polla tamale, and the BF ordered two bean and cheese pupusas and a carne asada pupusa and we split the pastelitos con papas y queso. Well, the pastelitos were pretty tasty, like fried mashed potatoes, and they came with a spicier cabbage slaw which I liked a lot better than the regular cabbage slaw for the pupusas. All of the pupusas were really good, my real problem was with the sauce. The red sauce that came with them was just kind of flavorless. The place I used to go to had some really good red and green sauces for the pupusas... it was kind of disappointing. Also, about 5 minutes after we got the pupusas, the waitress came by and said 'oh I forgot to tell you we don't have any tamales.' Well, that kind of sucks, why did it take til we were already in the middle of eating to tell us? Also, it screwed up the amount I was trying to spend (since I had 20$ to spend on the deal chicken) which I guess shows that this place is cheap, which is good, but for this particular trip that wasn't good. So we decided to order a dessert to replace the tamale. We got the empanadas de platano with sweet cream. So this was a big deal for the waitress, she had already totaled out the bill and for some reason it was a huge deal to add a dessert at the end (which I thought was weird, but felt guilty about giving her extra work). Anyway, the empanadas were ok, but I've had better. The sweet cream is in the middle of the plantain and it isn't all that sweet. Oh well, I would definitely come back here for some yummy pupusas and maybe try a different dessert next time, the central american quesadilla looked pretty tasty....",review,3gIfcQq5KxAegwCPXc83cQ,0,0,0 +h8rqIokh6EkM4flR9CjxbA,2012-07-21,7euWn51Q9A7-Nq2x8cSqtw,4,"Neiman Marcus is a great addition to my shopping go-to locations like Nordstrom, and well, Nordstrom. I usually only shop at Nordstrom and Neiman Marcus, sometimes Saks. + +Anyway. Neiman Marcus has impecable customer service but know that you kind of need to ""dress up"" to shop here. At least I feel uncomfortable if I come in in yoga gear. The selection is a nice compliment to Nordstrom -- much more tailored and designer specific. My boyfriend loves their men's section. + +I love their selection of Chanel handbags and other great purses. Plus, the layout of the store is just luxurious and calming. They don't carry MAC here but I love the Chanel, Christian Dior, and Laura Mercier counters. + +My ONLY complaint is their hours. Ugh. They close at 7 Monday through Saturday and 5 on Sunday. It's an hour earlier than the rest Scottsdale Fashion Square so there have been many times where I've trekked from Nordstrom to Neimans only to find they are closed. + +If you don't want to go through the mall there is complimentary valet at Neimans. You can park in their private lot but it's on a hill and narrow so if I'm feeling rushed I just valet....but I'm also not the best at parking. + +NOTE: the only credit card they accept is AMEX. Otherwise it's cash or check. That's right, no Visa, no Mastercard",review,cSAACR699NuLMqBPuKL8nw,0,0,0 +l5vzFaqSjvxZiRn0MJeKkg,2009-02-18,jYFVCkKTTQ4yKqvHtUAoJA,4,"I had not planned on being a Mac owner. My family - oh so very sick of me constantly complaining of Vista - on first an HP, then a Dell, packed me off to the Apple store a month ago and well, now I have a MacBook. The sales associate helping me pick out the perfect Mac was good enough, even with two perfectly good (except for the Vista) PCs at home, to convince me I needed this computer. + +Do I love it? Not yet. I like it, like it a lot. I'm especially loving not having Vista issues that I had been having. + +I'm enjoying taking the one on one classes to teach me how to use my Mac. Each time I take a class - I've had 4 now, I have a different teacher and each one bringing a different spin to my classes. They are nice, friendly, patient, highly knowledgeable. They are teaching me so many cool features and applications that I can do on my Mac. My fave so far is the translator. I do some business in Mexico - my Spanish is limited - so in just one short month the translator has just been a god send. + +The store here at the Biltmore is consistently packed with people, visiting the genius bar, taking group classes or the one on one class and making expensive purchases. I am amazed in this economy just how very busy the store is. + +I'm not totally convinced a Mac is the only way to go (almost though) but this store has some of the best customer service I've ever experienced.",review,GudUwh6EapiOn4umgKdJiQ,3,4,3 +H010pkpCls0M-mjIzSCVlQ,2012-03-24,DaaXKRspyY7-35Ix1RxoOA,3,"The meat shop has 100% grass fed beef, which means that they also finish their beef with grass (alfafa) which cant be said for every place that claims to have grass fed beef. This is great if you are trying to eat food the way its supposed to be, none of that factory farming... + +However the same can't be said for the pork. The pork (or at least the bacon) contains nitrates which keeps me from eating it. The farm that provides the pork also feeds the pigs grain. + +This place would be perfect if they were able to get pigs and chickens that are pastured centered and not fed grain as part of their diets. Until then I'll stick to their great prices on the grass fed beef and obtain my chickens and pork from somewhere else.",review,QtnzOrQeMFiwiXevf34hyQ,0,1,0 +kqGbGsG2p6Y3vkplCKyE9g,2010-05-05,VLzod0cVgMuY4eR1NdRC5Q,5,"OMG try their breakfast burritos!!!! Habanero's has good, cheap, fast Mexican food.",review,rC11FhTVhZsC4KXHvXelQg,1,1,0 +GAPqG0WNBBidKeZTMpEZ-w,2010-04-20,kUzEnfV7gbnxz9VyP6bjHg,4,"Great outdoor patio, couches, big bar, tables, great burgers, huge side of crunchy fries and they carry sweet tea vodka. + +Do not order the sangria, unless you like it super sweet. I don't, I'm sweet enough already.",review,q9XgOylNsSbqZqF_SO3-OQ,4,4,5 +ABC57h7Dh1Vy9q3cztAm5A,2011-04-06,zi2VEl-63LSuJhXQF8UV0w,4,"So I've been at Solo Cafe for about 2 and a half hours now writing a paper and so far so good! + +When I first arrived here I was greeted by a very friendly barista who was happy to discuss the drink options with a first-timer. I settled on a mocha and it was delicious! I like that it wasn't scorching hot - so I could enjoy it right away instead of having to sit and stare at it for 5 minutes. + +Also I really like the atmosphere here. The place is pretty small (I like this in a coffee shop - at least until I get here and there's no where to sit). It's also pretty quiet, which makes it a good place to sit and study. My favorite part is that I have been here for a while now and don't feel obligated to leave like some places. + +The -1 star is because the chair I'm sitting isn't very comfortable (hahah) but they do have couches, which is probably a better alternative. Also, they don't have a very wide selection of pastries/food. This is always a bummer when I go to a place to study. I'm generally pretty lazy, so I don't like having to stop working to go somewhere else to get food. Despite this I will definitely be returning soon! + +(Anyway, my Yelp break is over... back to the paper) :(",review,QqAL6vvUE_lJbAFSucWysA,0,1,0 +Pg8OPh1D2ws0xO-I-8ppoA,2012-06-21,loESPTJLynNlqcLCwwysYg,3,Awesome pizza! Wednesday half off bottles of wine is great for a ladies or date night. Nice bar and patio area.,review,Hqgx3IdJAAaoQjvrUnbNvw,1,0,0 +He9Dar4bk2vyeiPC7TkUgA,2010-11-25,_1QxCOEAyONf_tUReOvChg,5,"Went there last night with no expectations. From the beginning to the end, including the ""bread basket"" with blue cheese butter and pesto on top, the lamb chop appetizer, the sea bass entree, and the creme brulee in a flaky phillo cup lightly burnt on top, it was probably one of the best overall meals I've had in years. Thanks Eddie for stopping by our table and checking on us and chatting a bit. Very friendly wait staff and no attitude whatsoever from anybody and very comfortable. This place is a model for how it should be done.",review,PMz0ts-eI3QjZfKwkqvJqg,0,1,0 +3-zvo4Y_Bagw6Yifvh1TPg,2011-06-08,WOaNJV0LuxkKzr92cz6g2Q,1,"I purchased the Enotria groupon when it was released last year and had a horrible experience at the restaurant. + +1) I ordered a cheese platter. The platter was very much overpriced at over $18.00. The most problematic thing is that Enotria ordered the food from another restaurant on Mayo Blvd and had it delivered to them. The same is true with Pizza. If you order pizza there, it will be delivered from another restaurant in the Mayo shopping plaza. Enotria is taking a significant markup on the food because they are paying another vendor for it. AVOID THIS!! + +2) Another disturbing aspect of the visit was that we were served disproportionately small portion because we were using a groupon. We ordered two glasses of red wine. The waiter (who also happened to be the owner) served us a glass that was 1/3 of what is typically served. + +The only positive aspect of Enotria is that they have a good selection of wines. To be sincere, you are much better off going to a more reputable establishment in the area like White Chocolate Grill. + +Oh, also keep in mind that the current owner bought the restaurant over a year ago. It has changed ownership several times and the overall quality is suffering because of this. + +AVOID.",review,LeCbbDMAO2MS40MWWikLqw,0,0,0 +MY0_6BAzQCu4sqXqwNEFfg,2011-05-19,N0dBqIL2NnORl8bZ_GUP6A,4,Best pizza ever! The crust is amazing. I recommend the magical mystery tour with chicken and a frosty local draft beer. Will be back.,review,NhbkTLXX2srey5kPtVOAcw,0,0,0 +ObnZiF99lqggVasgyGBtVA,2009-05-25,JwyQp0Qvn2cQoE5c4eEfrQ,4,"My wife and I were having a lousy day and we needed somewhere to eat. We happened to drive past Stax and decided to give it a try. Once we sat down, our moods immediately improved. Our waiter was friendly, funny and attentive, without being overbearing or annoying. I was happy to see a decent selection of beers with a healthy dose of local brews. I immediately ordered an Oak Creek Nut Brown. + +Our waiter quickly brought our drinks and glasses of water with cucumber slices. The cucumber added a nice cooling touch on a hot summer day. + +We ordered the sweet potato fries and I ordered a seafood burger, which on that particular day was shrimp. The sweet potato fries were excellent, fried just right and lightly seasoned with kosher salt. Even without the homemade ketchup, the fries were a delight. + +My burger was tasty, with the shrimp lightly breaded and seasoned with a kicky teriyaki sauce and served on the bun with lettuce and thin strips of carrots. Also, the bun was very soft and tasty. + +The only issue with Stax is the price. The burgers are more like tapas, in that they're small (3 oz). But, each burger ranges from $4 to $7, depending on the type of meat. A hungry person could easily eat three burgers, so plan to spend a decent amount of money if you want a large meal here. + +Overall, a fun place to grab a lighter bite to eat.",review,WxQysGZlxxfVXy73ldm5EA,1,1,1 +9jBTMRNxvYyyHAlCGVO91Q,2011-07-12,f7iTklrfO8nW-MkVEDG8oA,3,"Well, apparently Netflix just wasn't down with the whole ""Extraordinarily Happy Customers"" and ""Providing Tremendous Value For The Money"" business model that I raved about in my previous review. + +They're now changing their pricing structure so the One DVD At A Time ""unlimited"" package is $7.99 and the Watch Instantly unlimited package is also $7.99. So $15.98 together. They used to be $9.99 together. + +I'm keeping the ""Watch Instantly"" package for now, but the $7.99 for ""One DVD At A Time"" is just ridiculous. Yeah, they have a quick turnaround, but it's still the mail. You'd have to be a pretty hardcore movie watcher to get a better value out of an $8/month ""unlimited"" Netflix plan than just renting 8 $.99 movies at Blockbuster or Redbox. + +So yeah, I guess they're okay. The Watch Instantly service is still a decent deal. But ""One DVD at a Time"" is a total rip-off, and I never thought I'd use the word ""rip-off"" to describe Netflix.",review,YzNZNgpOy9tthDnczS_ajg,3,12,3 +OFBJtqWGSx6n6CchtVmoRw,2007-10-13,RdR_yIzUJZWLNkJRgVlxcQ,4,"ok, so really. how can you go wrong with burgers? i guess it's a just little absurd to me that people dress up to eat a burger. or that people choose to drink a glass of pricey wine instead of say, a root beer float with their burger. speaking of which, their rootbeer float is too pricey for what you get.... + +at any rate, i took my brother to eat here once upon a time, for kicks and giggles. see what all the hype is about. we were actually seated really quickly on a busy night, and quickly ordered our burgers. they were good. that goes without saying. and i really enjoyed the decor and the fries in the mini shopping cart! yes, something so ridiculous it is adorable. i don't really like having to order fries separate, because i think they should just come with your burger, but i digress. the burgers were juicy, came out fast and piping hot, cooked to our specifications, and surprisingly, not too much more expensive than my childhood fave, red robbins. ok fine, at least their fries had yummalicious dipping sauces. + +i'd go again, just not on a busy night. and maybe i'd dress up a little more. but then i'd feel crazy - like, why am i wearing a dress to eat a burger? but i do like those fancy-schmancy burgers... i guess i can suck it up.",review,jqs0xPGhZwlyijqWLEgRyg,2,0,1 +pS7XA-h0QnjButYIlU-cdQ,2007-02-05,e_hp4eDtMAj-cvIG_vMuSA,4,"What Whattt! Hip hop videos blaring as I get my strike on? Bowling specials after 9pm? Friendly staff? Cheap drink specials from the bar in plastic cups? ASU and working class stiffs co-existing one sweaty bowling shoe at a time? Teenagers making out at the arcarde section? + +Loooveeee you, Brunswick!",review,mfvezpz6ohS0NQk3DZdvqQ,4,3,4 +x_mxrJALBi5No9CxRswEaQ,2011-05-29,wdrz6UI1rfm-3sknDpWPbg,4,"Very nice place with extremely friendly staff. The food was similar quality to other Mexican food places in the NW Valley....good but not spectacular. Very good portions for the price. + +I don't live close by but will certainly go back when I am in the area.",review,IFOFRBrl4Cm08xGQjrA7OQ,0,2,0 +YkFBelUWinftlweJzuiIAw,2010-10-02,G3u-H_tzh-RJ1IDyvxoDCA,5,"Husband and I have been trying to go to Urban Cookies for a while now. For one reason or another we kept missing its store hours. We finally made it today, and boy, were we glad. + +I had a vanilla cupcake and he had the urban cookie, which has chocolate chips and walnuts. The cookie was the perfect balance of moist and crispy. + +The guy behind the counter told us that the vanilla cupcakes was a special, but when they rotated it out people yelled at them. After taking one bite, I totally understood why. The cupcake is the best I've ever had. The vanilla frosting is not too sweet, perfectly creamy and melts in your mouth. + +I just hope they get more business so they can expand their hours!",review,TEs7S-ICJHD_aU7DQdsoIA,0,0,0 +T8zl1TQ-QuoATtcWSjnxeg,2011-11-10,3mIplkFA9zixeB-PcnNZlQ,4,"Wow. Reading all these reviews makes UofP sound like a terrible, degree mill. +I am shocked! I have learned SO much which getting my MBA. The vast majority of my professors have been knowledgeable, available, and thorough. My peers have been inspiring and helpful. +When I graduate in June I know I will be leaving with much more than when I began.",review,m3dRCU88YU9_GawEqX4gBw,0,1,2 +_P4wKLL6cyXWY1EQV2k8WQ,2012-04-26,XlXg9NvtEcg_hGA-n8hJ0A,4,"Well, I live down the street from this park at 44 Monroe so it's just a block away from me. And it's a refreshing place given the surroundings of a semi urban jungle, that being in lieu of the handful of bums that live there shouting profanities at every passerby as if you've had a life long vendetta with them. + +For the longest while I'd referred to the jellyfish but after the curiosity got the best of me I'd researched that it emulates the desert winds which cost about 2 million dollars to make. WTH is up with AZ and spending their taxpayers money on giant jellyfish at parks and teacups on freeways. However, the park is a refreshing patch of green color in such a monochromatic city. Plus they host cute little musical shows and food trucks, & who can pass up chilling in the grass listening to some jams while chowing down on some delicious, greasy truck food.",review,usqkiMaReCzDY5LTjEIKBQ,0,2,0 +-zcZNlO0JwZHppan8rGkBQ,2011-03-19,R-19mpFYuNoqBpJJxh-_vg,5,"3 stars on any given day, my server PAT made this a fun experience and was the extra 2 stars. Pat is one of the few people in this world who really enjoys being good at what he does. I asked him, ""how long"" and with much joy he replied, ""I can get your food in 10-15 minutes"". Sure enough it took 9 minutes. I value time and in my business my word is everything. Pat understands this and when I eat here again I will insist on his table. I recommend you do the same. ASK FOR PAT!!! + +Top notch Pat. Don't ever change.",review,PyXxP7T70j_jACcUKWDczQ,0,1,0 +ufKmcpK6OTaWzeBGWNOa8A,2011-10-25,Q64yM6VbjvwLhXfhDYaLJw,4,"Outback is a great restaurant. You can count on the tasty food and good service. They are reasonably priced and consistently deliver a quality product. This location gets busy during dinner time, but I've always had a good experience.",review,H_JsAwjiGEOr_RlZmwfNsA,0,0,0 +KBG28p3lGX17hOPoHhq5PQ,2012-06-15,S10xVi2N6A7CkA29F7774w,5,"Five stars is truly deserved For Yasu. This is truly the best sushi in town and some of the best I ever had! I am a big seafood lover and there a lot of ""chain sushi"" places in Arizona that are decent and good for rolls, but if you want quality and authentic Japanese style fish and incredible Sashimi, you need to go to Yasu. There is really no way to describe it till you go, but once you do, you will become an instatnt fan! +Best thing to do is sit at the sushi bar and ask Yasu to make whatever he wants! You won't be disappointed. +The area and building are misleading... However, if you are the kind of person that thinks RA is the best thing since sliced bread and nothing can beat it, this is probably not for you. This is real sushi... +Go try and enjoy!",review,eBFXojgTo2SWLtzv7jJlxQ,0,1,0 +TtdQtqjvN_K4449boXaU1A,2012-03-24,r_iFXTOtS2fSibuM6z0DEw,1,"please please please do not stay here! +i never do these reviews but i feel obligated to save someone the time and money and self respect by writing this review! the customer service is soooo soooo poor!! after having almost 500.00 held on my charge card after i checked out, i called to find out why this charge was on my account. i was hung up on and after calling back was repeatedly hung up on and refused to provide his name to me or his managers name! i told him i work at a four star hotel and casino in las vegas (which i do). he called me a liar! .. and as of right now still out 500.00! what establishment hangs up on their guests? this guy should sit through some of the forbes training i have received! what if i was a shopper? +do not stay here! save your money! they only received one star because you have to provide a rating. +aside from the horrible customer service, they stuck me with a 50 penalty fee when i had to change locations. that wasnt great, but whatever, the pictures do not resemble the motel. the ""game room"" is not a game room. its a room with an atari in it. the pool was small and dirty and if you like noise all night while you are trying to sleep, you can count on it here. all these things, i could get over. however, the customer service the man (i cant even say gentleman) on the phone was horrible and penalty should follow. he is an embarrassment to all of us who work in guest services. +do not stay here! you would have a better stay in a box outside on a corner. +i should have known better for such an inexpensive place, but i was hoping if we cut back on the hotel we could spend extra money with the kids doing activities and going places... wrong! you get what you pay for... and worse!",review,jOnE59WV2_CMZiuSPcZfTw,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2010-11-27,2vhvRIZzjrpipX3lC3mvpA,4,"Pretty damn expensive, but I don't think I could ever get sick of the teppenyaki!",review,kXT3pVtElactR8nFmeLbbg,0,0,0 +pqkwR2me0LhEZulRcQpOuw,2012-06-13,d4MnKrqf0jnSuIPAjL4ITA,4,"Excellent breakfast. Portions were more than ample, service was attentive. You could tell the place draws it's regulars, but it's a good option for visitors as well. I had an egg sandwich on ciabatta bread, and my partner had pancakes. We were both pleased.",review,CCMCDyaTNy5nksVGKwARIQ,0,1,0 +14K90G-hbfk795NY7cKxMA,2010-12-16,VkQ8eg6bdxAANJxQYUyRXA,4,"Blue 32 has a really great atmosphere and terrific menu. The menu has everything from soup and salads to sandwiches to pasta. There is a great beer selection, and happy hour/reverse happy hour in the bar. They even serve a late night menu in the bar when many places are closed during the week. +For late night last night we had nachos, spinach dip (soooo good), veggie platter and wings. The beer was cold and the food was hot. +The server was nice and the bathrooms were clean.",review,qcBEh_PFohFIJFcK9J23Sg,0,0,0 +e8bElXSntEcwQdq9ZG-rQQ,2011-08-16,vjd07gFKxWtmBhQ-Q0Blcw,3,"I have always enjoyed the quesdillas at Chili's. Try their happy hour where they offer bottled and draft beers. There chicken tenders are okay but they are breaded and I do not care for breaded chicken tenders but rather the grilled ones which they do not offer. The salsa here is not very good, I have tasted store bought salsa that tastes much better. The best thing Chili's has to offer is the happy hour.",review,Hb49IsEZltm85wLz3uMrmw,0,1,0 +ZLVX6bQt8HJH5d4pq5EJGQ,2010-08-01,PSgVwQKsHFILnly7yaegYw,2,"Steakhouses are competitive today and the typical Yelper probably has his or her favorite. My good friend and I were eager to see the type of energy that the new investors have injected into a local legend, the Wigwam in Litchfield Park. + +As time was flying by, in the last 10 years, the AZ Kitchen (also in the Wigwam Resort) closed for dinner. This southwestern gem was also affectionately called the 'Snake Pit' by a friend but the service was top notch and it was one of the earlier restaurants that provided full view of the kitchen by diners. The Wigwam's ballroom dining has now been converted to Red's Steakhouse. + +Service started out well with a nice touch of a choice of fruit for your water. The waiter had recommendations but also allowed us time to ponder the menu. We opted for the couple's dinner, essentially a prix fixe with a salad, choice of sea bass or steak, and the shared dessert. We also decided to try the crab cake appetizer - just to adventure through the menu a bit; this resulted in a stern warning from the waiter that the steaks were 14 ounces. + +The crab cake was a nice presentation with fresh crab and a toasted crunchy top and colorful spinach bottom. The side avocado dressing was a bit heavy for the crab and appeared similar to the faux guacamole at cheaper eateries. However the crab was dry and the waiter brought more of this dressing out for us. + +The service with the Caesar salad presentation began to falter. The salad is the craze of serving entire stalks of the romaine and a toasted slice of bread. Reminding the waiter for salt and pepper, he promptly provided a set and advised us the salt was also in a grinder. My friend determined that the pepper grinder was broken and did not provide a coarse grind and the waiter asked if we would like another pepper grinder. Actually, for the prix fixe price of $45, I really wanted the waiter to politely grind the salt and pepper over our salads. The crouton had no flavor. + +Our steaks were done as ordered but the NY Strip did not have a lot of flavor. The menu indicates the meat is grilled at 1600 degrees. However, my medium rare steak really appeared to be grilled on my a standard grill with no caramelizing or searing to hold in the rare juices. The steaks were true to size of waiter's tip. + +The steaks were served with two asparagus stalks which appeared to be white asparagus with green tips, a unique veggie for the plate. +An au gratin potato patty also accompanied the steak and was quite yummy. + +As the server boxed up our plates, they brought out a raspberry mouse. Its flavor did not impress either of us but my girlfriend did find the mascarpone center and it was addictive. + +Service was not astute nor attentive and sometimes baffling. We were just into the meal when the waiter dramatically closed the drapes of the window near us. One of the other diner's called out in sadness to lose the evening sun but the waiter shushed her and said they would be opened intermittently to avoid blinding other diners. Could Red's should consider awnings or subtle window shades to preserve our dining views? + +The Wigwam may not be hoppin' just yet; but as we left the restaurant, the three restaurants on Old Litchfield Road - outside the gates of the resort - were busy as locals may have enjoyed more reasonable fare and better service. These restaurants are our next adventure!",review,KK_2vxqNug1wQhVo22soQw,0,0,0 +nLLs9fIiWw6WDku3_2NVVA,2011-03-10,bQ4ibBlds7BcfypULsfUQw,5,"Chicken wings and cheeseburger meal... Yummmayyyy + +ever since i've moved away from arizona, i can honestly say that china grill is what i miss most.. their chicken fried rice is really good and so is their cheeseburger.. their general tso's chicken extra spicy is my bf's favorite.. almost everything is good here!!",review,I0DkvjOPosQJboR34P3AyQ,0,0,0 +IanyHrzHB6VHemc5C2Rv6g,2011-12-13,mX_Y_ObM6RWOh8jVhSilmg,4,"Got a great deal from Home run.com and used it to find some good cigars. +Staff is friendly and very knowledgeable.",review,hZ2RPn9VcfBHv8_cHG53nw,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2010-01-20,DiwXHl9QnIeNghmD5LdGAQ,5,"I can't really say enough about Liberty Market. The place is beautiful, comfortable, friendly and the service is awesome. I haven't had anything that I didn't like. From the wood fired pizza to the delectable salads, everything on the menu is worth every penny. For me though, it's all about the Cortadito (espresso drink) and the pastries. These are completely off the chart awesome! You simply MUST try them! + +Another great plus to this place is that on just about any given day, you can visit and see Joe (the owner), hanging out, chatting with customers and all around having a great time. Joe is truly one of the nicest and most sincere people I have ever met. Makes Liberty Market all the more worth visiting. + +Oh! As weird as it sounds, you have to check out the bathrooms, they are the best I have ever seen. (seriously)",review,085TP4qzSt6sr2COT4lVCg,1,2,1 +0dORc6ckZw5HezR3BuSsqw,2012-02-09,Zi7GvQgIExuBTGtC6O-Kvg,4,"I am not a vegan, far far from it. I couldn't be a vegan if I wanted to cause I hate most veggies. My partner is a vegan however and I am always willing to try anyhting once. The meat-less meat actually has the texture of meat not mush. +I get the original ""G"". It is a buffalo meat-less chicken between two pieces of bread with tomato, lettuce, buffalo sauce, and some mayo like something as well. I get the french fries with this. I actaully crave this damn sandwich now. It is spicy so if you are not a spicy eater I would not suggest to get it. If you like spicy this might be the perfect thing for you. The fries are awesome as well. Shoe sting cut, crispy on the outside and soft on the inside. Mmmmmm. Just writing this make me want it. I also get the egg-less eagrolls. These are yammy as well.",review,AmCgnISliebEOoJuebWAqA,0,1,0 +NAkRjPhS4yCD5trp0dY-bQ,2008-03-20,8EYY48G3kfRQBiHkePActw,3,"Eh. + +It's alright. + +If you want to have a couple of drinks and watch chicks make complete fools of themselves on the mechanical bull, be my guest. For food and other, don't bother. + +I suppose the crowd is a nice change of pace amongst Old Town's usual suspects but if you go expecting a bunch of cowboys (and cowgirls), best to turn around and go up north. Somewhere. Far. + +The food's crap, the service (at least the server we had) was nice but a little slow (or deaf? or on something?). + +I will give it 3 stars, 1 for crowd, 1 for entertainment, and 1 for just being different. + +Word of advice, skip the nachos my friends. + +*** Edit: My boyfriend would probably give this place 5 stars for the music they play. Lot's of rock, some heavy metal, old hair bands, and some new stuff mixed in there. No Rap. + +I give it that much. It was definitely good music.",review,zSQps4R-_w8YkjDtgIsfiw,1,3,3 +2mcmuAvpNIJuV3gV0v9v2A,2011-04-04,bs1gmyVKiByVfcjsOVczYg,4,"Okay, judging a Vietnamese restaurant on the decor is a little jaded IMHO. Ambience is certainly a factor when dining, and if that's your most pressing criteria you're probably not fit to go into most Vietnamese places. +Pholicious does a great job with their food-went their for lunch over the weekend and tried their oxtail pho which was very good. My buddy had chicken & vegetable chow fun which was also delicious. Sizable portions and the most unique serving of Thai iced coffee I think I've ever had. Almost like a half old time Italian espresso pot on top of a coffee cup that holds the coffee and condensed milk. You're supposed to stir this then add the contents to the accompanying glass of ice. Unlike dummy me who just dumped it in the ice :)",review,szbTVEtATfn8f9GxbGGO5w,0,1,0 +A0-0oO2I-L4QF9BMi9duuw,2011-06-15,TrPBR853KTey53b9fXRz9g,5,"Michael came out today and he was great! Our patio door was a bear to open and he put new hardware on and voila! It seriously opens with 1 finger. He was quick, affordable, knowledgeable and very nice. Scheduling was easy and the office staff was kind. A+!",review,TXJ8YldcRE_8RnjnwVUhXA,0,0,0 +68euKezXqyvsE49cIGdL2A,2010-06-11,ucpgqQEHq6EidRgqNjDPiw,3,"I think the lady behind the counter didn't like me. Could've just been me. I don't know. It's just how I felt. + +When my boss first told me about this place, I thought he said ""Al Molina"" and I was like, ""You mean the guy who played Doc Ock in Spider-Man II?"" + +I've been here a few times, today was the first time I'd been to El Molino in about 8 months. I happened to be in the area, popping in to buy a backpack at Staples an decided to get a burrito to go to munch on when I got back to my office. + +One thing I really didn't like was that you had to ask for the key to use the bathroom. That's something very typical of, like, a gas station that bums use to shit on the floor. I went to the bathroom and it said I had to ask for the key. I went back to the counter and the woman disappeared in the back so I kinda just did a little pee-pee dance until she came back. + +It was a little too expensive for what it was. A thing of chips was like $4.50. That's crazy. Granted, the chips are really good and you get a lot of em, but... don't you have a thing of chips I can buy for a buck that comes with a much more reasonable portion? I got all these chips in the fridge at work that won't be edible on Monday, probably. + +The burrito I got was very tasty. The salsa they gave me was also super good. Nice and smokey and spicy. Seriously. Man, that shit was spicy. I kind of have a soar throat today so that spiciness felt super good to me. + +I had to laugh when I opened up my to-go back once I got back to work because I actually thought maybe I didn't get ANY salsa, but when I took a look they gave me soooo much. I made a small tower beside my meal, like a Stonehenge of heat. + +Three stars: Good. Not great. Weird bathroom. Unfriendly lady. Good food. Too expensive.",review,mym5tXZoZCbuPCYQzI5Ysg,2,1,2 +_CG5zJAoNN6gszjhSyUcww,2012-10-27,Q0iDQpaHOY2BvAr-JN3Qag,1,"I had such high expectaions after reading reviews but I was so disappointed. The food was not good, the service was awful. They got all of our orders mixed upo. Will never go back and cannot recommend this place. PS one dish was good and some enjoyed the soup. There are 100 places I will visit before returning to this place.",review,4UmzR0mTv3_8JunST1kh-w,0,0,0 +5KG0A3WlC7K3DAXtrIFFjg,2012-02-29,HPJHQKDVttoNjsnlCNLn0g,5,"Where else can you go in Chandler the will transport you to another country for free in a flash!! + +I like to shop here and explore the foods of other countries. This is not just an Oriental Supermarket, they are a World Market. Each aisle jets you to a different culture or country. + +I wish most of all their sake selection was better but oh well, they are bound by the limitations of their distributors. + +I will be there again soon for a mini-staycation!!!!",review,ZRQdOIIhzrzE6sc3emgM-Q,1,1,0 +c7VgGP8xT25OSReok6fwcQ,2008-12-22,EVuIuqNBEkVZP3SWKPlQnA,5,"This review is pretty much for the bra department at Nordstrom. They are amazing at their jobs. I finally found out that Victoria's Secret is that their bras suck! + +So I bought a bra online to pick up at the store, but when I went in and tried it on, it didn't fit. I thought that sizes for that brand ran a little differently. I told the sales girl, and she asked me if I minded if she measured me. I said sure and she followed me into the dressing room. + +When we got in there she told me to take off my top! I'll be honest here, I thought she was going to measure me over my shirt, and I almost peed a little. I decided to pretend like it was no big deal to take my top off in front of a total stranger, and just took it off. Not sure if she noticed my slight hesitation, but she probably did, oh well. I generally like to go on a couple of dates before I take my top off if you know what I am saying. + +Well guess what? That is the best way to get a good measurement it turns out! The salesgirl told me to wait a few moments and she would be back with some bras. She came back with two of the most wonderful, comfortable, and supportive bras I have ever owned! So instead of getting one bra that day, I got two. + +I have to say, my hat (or my top) is off to Nordstrom for training their staff to be great at their jobs, and for having fabulous bras. + +Ladies, please don't bother buying another bra at Victoria's Secret! Run to Nordstrom next time you need a quality bra to support your girls. :)",review,AdEy5KAIlMAy8xHyuMQCFg,17,19,18 +uKSX1n1RoAzGq4bV8GPHVg,2011-04-19,Th_G0VZLJuqrOa9VUj0meg,4,"I've been a baseball fan my whole life, and I have to say that this place hit one out of the park! We had lunch at St Francis today and were thrilled. + +There were only two of us so we had a limited sample of the menu, but everything was topnotch. We tried the baked goat cheese appetizer and were wowed by the creaminess of the melted cheese, the piquant flavor of the tomato salsa, and the crunchy toasted baguette to spread all the goodness on. This is a winner... just go ahead and order it and you'll thank me later! + +Dining partner got the Red Wine Braised Beef sandwich, with the Red Quinoa side salad. Now I must tell you, I was all over quinoa ten or fifteen years ago, before it got real trendy, and cooked it often... but always had it hot, sort of as a substitute for rice in dishes where you'd use rice. Never ran across a recipe for it to be used cold, in a salad... REVELATION! the dressing and other ingredients in this dish are very cleverly combined, look very nice on the plate, and provide the double whammy of (light and flavorful) with (savory and satisfying)... you could make a lunch out of it and go home happy! The sandwich was good... grilled bread tasty... horseradish sauce brings zing and flavor... but all in all nothing to write home about. + +I ordered the Pork Chile Verde... gosh I seem to order that all over town don't I? this one is not a home run, it's more like a Grand Slam In The Bottom Of The Ninth! OMG so smoky good, with a healthy heat index (comes with a roasted jalapeno in the stew, eat at your own risk) A side of homemade corn bread is delicious, crumbly and just goes perfectly with the stew. Don't be shy, just dip it in there and get it all over your upper lip... no one will blame you. + +I definitely will return to this restaurant, perhaps at dinnertime... but whatever time you go, I am sure you'll enjoy it!",review,di9IJXTJmCa4mO3bZVINDw,0,1,0 +L-uPZxooP_ziXCtRrWi8Pw,2010-12-10,Sqb1ojztVIpKnUFypeWuLw,4,"Shortly after I wrote my 3 star review, Christopher contacted me. He was very apologetic about our experience and wished that we had enjoyed our meal more. He immediately offered to refund us the cost of the meal because we weren't 100% satisfied. + +After discussing his offer with my friends, we decided to take a 50% refund. Let me just say that I was personally a little uncomfortable with this because while I have received refund/free meal offers from other businesses in the past, I've never taken them up on it. I don't think it's about the money and I certainly don't write reviews to elicit free meals. However, since the 3 of us split the cost of the meal evenly, I felt that it would only be fair if I took my friends' suggestions into account. + +Anyway, the refund check arrived in the mail yesterday. I decided to upgrade my review to 4 stars given the overall experience. It's rare to find business owners who value their customers as much as Christopher.",review,yy9fTfze8azIJsvWKvHefQ,2,8,1 +5x3aA0DSo8nqU13IZyH79A,2008-07-31,EeHx0TDXVPSv048y0LLjzg,4,"This place is cleaner than Lee Lee. In addition, there is an authentic Chinese cafe, Chinese BBQ and Chinese bakery inside the supermarket and their quality is okay. The BBQ session is better than the one in Lee Lee. +You can get discount by paying $100 upfront for $110 shopping coupons, that is equivalent to about 10% discount. +In addition, this place does sell some luxury food that Lee Lee does not offer.",review,lcgUBCrznwC0FohI4jgMyg,1,2,0 +XLqnjlLYt0_q_NG7l_BpMA,2009-05-03,ndlfmgS0TNEhrUlPpbHiXQ,4,"I am a fan. But I would like to be more of a fan, and so I am here harping on the two problems I have with CC. One is the parking mentioned by other reviewers and the other is the bad service at the food court. I don't mean the samples handed out on almost every aisle and the hassle of the lines as stereotypical fat people line up like hippos at a rotten carcass to 'just try a sample'. I mean the little restaurant inside the store where the hippos line up to drown their peptides in sugar and grease. The food at any CC is outstanding fast food at an unbelievably good price. The pizza is fresh and really tasty and only 9.99 for a whole pie, the soft-serve yogurt is a huge portion in a plastic cup for 1.49. The hotdogs are terrific. Everything else is good and cheap too. There are no problems with the food quality and price. It's the service. The service is indifferent and inconsistent. Somedays it's ok to order pizza to be picked up later for a party, and somedays it is not ok and the workers will claim that it is not a service and never has been. Liars. Fat liars. I actually typed lairs by accident which works too. I'm done with this review due to boredom. I just can't stand it when a great business carelessly regresses to the mean. Brave the parking and the neutral service because when you need a good hotdog/pizza/frozen yogurt, it's a great spot.",review,7GAjxEA-OscXgPt7YFgkBw,1,2,2 +JJDaF4yFPLgQ3u678qyL2w,2012-08-27,qlES1y-e4DlxMJdKuS3rrQ,1,"If you want a school that cares more about your financial aid money than you, this is the school for you. Education is horrible. If you are a democrat, don't speak your mind; you will be considered a reject from day one. I got 100% on my graduate papers and think I did not contribute anything to the fields. This institution is a joke.",review,o0PtCbKjXYaGZ6xQcw6m_g,0,1,0 +WHd8fLeMeWKUK6sPyeB-UA,2012-04-27,ewDKc4O7L0kKFWTPjpHCxA,5,"I was there last week with my sisters and while we ordered our steaks cooked medium, all of them came out well done. Kind of disappointed, but oh well. + +So last night my fiance and I had a buy-one-get-one-free coupon, so we headed over. When I ordered my steak cooked medium, I asked her to make a point of it when she put the order in because of the issue last week. + +When our food came out, she asked me to cut into my steak and make sure it was cooked the way I wanted. I did and, while it was a bit more medium-well than medium, I was hungry and it looked good, so I gave it the go ahead and we started our meal. It really was a good steak. + +When our waitress came out again, she double checked that my steak was cooked correctly. I assured her it was fine. A few minutes later a manager came out and apologized for my steak being over done and offered to replace it. I assured him it was maybe a little overdone, but it was good and I was happy with my meal. They were being very nice and showing some great customer service, though a little overzealous. :) + +When the bill came, they had made my steak the free one for the coupon, even though mine was the more expensive of the two meals we ordered. + +Great customer service, and very good food.",review,cvPZhN3vKRAXDg8Mhapouw,1,2,0 +-6Roo-EHgSdUa4rP3tWyRw,2011-05-21,YTa73nikmAV5ibPViRxo1g,3,They serve alot of food.,review,Ep2bE0lPEJMcJfts8r8NHw,0,1,1 +tLRNfwNm789XHWLNFvJcWw,2011-10-02,gFpZacglRHhKUVvUXmIVtg,4,"Anytime I locate a Subway with BOOTHS, I put it on my list to go! Yeah booths! Ok, so today after my haircut at (4 Star) Great Clips here in the center, I hopped on in here. + +The ""SUButopian"": + +* Staff a little drifty. There was no soup on the menu sign, so I asked Mr. Drifty I, the cashier, what kinds they had today, & the price. He said, ""We don't have soup here"". Ok, so I asked him what was in the two kettles three feet behind him. ""Oh. I guess we DO have soup, but I don't know what it is, or how much."" + +Miss Nondrifty appears out of nowhere, & I ask her about it. She agrees with me that it's not on the menu, & says they have Vegetable Soup & Broccoli Cheese Soup. Fine, but I'm a meatie! (Ok, the Broccoli Cheese is good, but I at least wanted Chicken Noodle which almost all Subways have every day.) + +After receiving my sandwich (& skipping the soup), I put my cup under the ice dispenser & it was empty! I gripe & in a few minutes Mr. Drifty III appears & pours a bag of ice into the soda dispenser. We're at 2 Stars right now, including a boost for the clean, comfortable cafe atmosphere & nice booth to sit in. + +Ok, the good: + +Backtracking to just after the no soup/soup/no soup minute, & placing my order... The place is a little busy, but it's not too long a wait for Mr. Drifty II to go to work on my sandwich. I order a ""Subway Melt"" which comes with ham, turkey, bacon, your choice of cheese, & whatever veggies you want on it. + +I get it on their Honey Oat bread, & have him not toast it, but just nuke the four long slices of raw bacon. The bread gets a thin coating of mustard on one side & mayonnaise on the other. For cheese, it gets Pepper Jack (of several good choices), then a little lettuce, lots of tomato, some onion, Greek Pepper slices, & a squirt of Ranch Dressing. + +OMG, it was terrific!! ...and the October Special is ANY foot long sub (except 2) for only $5! + +SO, while this Subway doesn't come up to the 5 Star one down the street at 5130 W. Baseline, the great sandwich & value propelled this one up to 4 Stars (& I didn't need the soup anyway)! :-))",review,ikm0UCahtK34LbLCEw4YTw,2,1,3 +hnw-5xX7i4C1po5X9i686Q,2008-02-28,Wpyem39YZE4AhTQ_r0k4Yw,4,"This place is very cool and laid back. Apparently Unlce Bear was someone's dog b/c there are dog pics plastered all over this place. If you are a dog or even a pet lover in general you would appreciate the decor/vibe of this grill/bar. It is literally a ""throw your peanut shells on the floor"" joint (they come served in a dog dish) with very cold beer on tap and an eclectic mix of people that dine here. The Gilbert location is a bit more conservative versus the East Mesa spot. People in Gilbert seem to think it's ok to bring their small children to bars! + +I am a huge fan of the BBQ chicken quesadilla (or you can get it served as a pizza). I really haven't tried much else on the menu b/c I can't seem to stray from my BBQ chicken; It is yummy and when I lived in the east Valley I would dine there about once a week.",review,bZFRqP7s0Vszxeu8_IwYow,3,2,0 +AqbgC7Gul5Es1rRzGNLDFA,2012-05-19,0R2ykdiB0VEEYcN2Ut70gg,5,"I love sprinkles cupcakes. I have also managed to go to every location except the 3 in so cal. Like every location, the taste and quality is consistent and delicious. I got the salt caramel, banana, and carrot this time around. Like always, it's delicious and lasts for as long as they say it does. My pup loves the pupcakes too. I would wait for these cupcakes any time.",review,ddttP5OfCJTEl2VEtMfRag,0,1,0 +eGevCRobYnA_HSj60sEWvQ,2006-04-23,uPcQ_NkDwP5HmgyjvyVAAg,4,"the food is excellent but the waiters and waittresses need to get fired. some standouts on the menu are the hummus app, the greek platter (hummus, pita, and all that other stuff everyone knows but can't pronounce), the chicken wrap thing and the gigantor fruit salad. make sure you don't go on a friday night with a group of 8, otherwise you'll have to wait 45 minutes only to be sqozen into a table for 4.",review,YoBu4TVcP5YHKOC35NPXQQ,0,3,0 +luCSjoNQ9q_0QIjKKOy2pQ,2010-12-26,f5nmGyjAgziQjUfP6D1bJw,4,"I'm glad I made a second trip to Papago before writing a review, because they have redeemed themselves from my original visit. The problem with my first visit was two-fold: 1) The beers that were most interesting to me had run dry; 2) The food I ordered was pretty hard to grunt down. And although I sat at the bar with my compadre and tried to make conversation with the bartender about the different beers offered, it was fairly one-sided. I did not get a dose of craft beer expertise from what is arguably a brewpub that showcases a true love for beer. + +So regardless of the less-than-stellar first visit, I still was impressed with the selection of draft beer especially the regional offerings. The built-in beer coolers are also a testament to a great place to sample different labels. The one thing I must caution others against is the food. The steak sandwich I ordered (with special gardiniera) was pretty lousy. The beef had a precooked-then frozen-then reheated quality. The gardiniera was essentially all jalapeños and too fiery to eat... I had to scrape a fair amount of them off to make it edible. I had a good time drinking some decent beers with my friend, but we both regretted our food choice. + +My return visit restored my faith. The beer list was current and updated. There was a large variety of new draft beers to choose from, and my group ordered two pizzas. This place has delicious pizza! Our waiter was especially knowledgeable about the beers being offered and was able to help us choose especially interesting ones. I like the atmosphere and crowd at Papago and intend to return. But I will definitely stick to the pizza.",review,0Ke0iSAPYi8hUVxLocAlYQ,2,3,2 +SDwYQ6eSu1htn8vHWv128g,2011-12-09,wFRmUnUPsDuRQ5986G_-nQ,5,"My favorite place by far and well worth the drive from Gilbert. Love the atmosphere, bruschetta, and of course the wine. Great place to catch up with friends. I can't wait for the location in Gilbert to open up.",review,4rIgZlwv3WQifoXwcFGcfg,0,1,0 +0VLZj0f3llL9IkL5GOT3lg,2011-10-26,tuNdSzBSNmcwUXHLY0re0A,1,"My husband and I went there for our first time today. What a mistake. First of all, the ladies bathroom had no soap or paper towels to wash/dry your hands. My husband had the steak sandwich and I had the chicken ranch. There was so little meat on the sandwiches that we were perplexed when we were finished. The inside trash was overflowing. I have been sick to my stomach the last hour....never again.",review,E8FSWBUXArSJU7cWpBXF7Q,0,0,0 +fzHlul2mHy_jwJc-WBRvlg,2009-10-17,OY2NgNAM6TsKaPEu7JxO3Q,5,"This place was the answer to my German grocery shopping dreams! I thank the Yelp community for leading me to Old Heidelberg. I was picking up a number of items for an Oktoberfest party I was cooking for and hosting at my house, and was able to fulfill most of my exotic German needs at this one stop. I picked up pumpernickel rye bread, authentic concentrated Maggi Würze seasoning (not the soy sauce-tasting stuff you find in most American grocery stores) and Knorr zwiebel-kräuter salat krönung. They also had lots of Knorr sauce mixes that you just can't find over here (for instance, sauerbraten gravy). + +I stuck around for a few minutes to talk to the two women who ran the place (Andrea and Chris). I volunteered that I had lived in Germany for years, including Berlin and Bavaria. They were totally friendly and even suggested some other places nearby that I could check out for German grub or rarer German beer selections. I promised I would be back... especially since I spotted that they had frozen leberknödel (liver dumplings). I made these once from scratch years ago but that was a lot of work. Knowing that they carry such delicacies has snagged me hook, line and sinker, as I am now destined to return and once again indulge my German food fantasies.",review,0Ke0iSAPYi8hUVxLocAlYQ,5,8,1 +3UMcsN9IjoeV8JZvC4apag,2011-04-05,ezDjHM0L32qsWcTpbPipAg,3,"Oh Porter, how do I love thee? Let me count the ways... + +I had a, ah, as in just one, porter and was feelin' fine. And I was extremely glad to have the sweet potato fries instead of the regular ones with my sammie. Our waitress was pleasant, prompt and next time I'm going to ask to be seated outside or at a high top table. Our booth was great for chatting with my friend, but I like a little people watching at the pub! + +Now, if you are avoiding SunUp because you remember that there used to be something called the Sonora Brewhouse in that same space.... You're in luck!! The brewmaster, Uva, is still there, still brewing his witches draught. But now, you won't get them confused with the Sonoran Brewing Co. in north Scottsdale. Hooray!",review,e6jqQ_YXlGiLPi1z2HO0Pg,0,3,0 +1NZLxU5WvB5roPFzneAlLw,2008-07-22,Rq0F5xyOkboPrXa36iC7oQ,5,"Barrio Cafe is a favorite of mine, the margarita's before you get seated are a must. When in season the pomegranate guacamole is second to none. A refreshing escape from the cookie cutter chain restaurants. When you go go with friends and don't have a schedule as the wait can be long, but worth it.",review,6uNeagh9ljbwV8XRUn_cYA,3,4,3 +xY1sPHTA2RGVFlh5tZhs9g,2010-04-06,Te0MEKdoGufnxK4DcoUwNA,4,"In a sentence: Culinary Dropout is a foodie mecca with its plush and lux furnishings, amazing location in the heart of Scottsdale but away from the duche-ery of Old Town, on point entrees that range from classic to what I call contemporary chef-y food, and its trendy lil touches like dishtowels for nanpkins and placemat menus. + +After a short afternoon of shopping, I and the other Musketeers ventured into CD in search of yummy goodness... we weren't disappointed. We scarfed down the Pretzel and cheese fondue. Sorry, I can't remember the exact cheese used, but it tasted like cheez whiz without the nasty chemical aftertaste. + +Musketeer #1 had the Shrimp Po' Boy sammy and was overwhelmingly awesome! With its fresh baguette, crispy shrimp and cole slaw topping, this po boy claimed to have died several times. The fries were good, I'm sure they are awesome with the steak. Musketeer #2 had the truffle egg scramble. She said that it was good... not bad... but not terrific. We love the truffle, and this did deliver however... it just missed something... je ne sai quai... just something. I stole a bite and concurred... the low point in a overall great meal. + +and me, Miss Musketeer #3 had the coq a vin... a MUST! If that or braised short ribs are on the menu... they MUST be ordered! That's the rule my friends. My braised chicken was good, kind of on the sweet side, but over all very good, although the chicken did have an odd texture, it seemed to me that it could have used a few more hours in the oven. I think this is a dish best served before closing when all the flavors had their chance to really marry. We arrived at the top of dinner service and so the chicken was done... but barely. + +Musketeer #2 and I both NEEDED bread and butter, our cooler-than-thou waiter was happy to oblige, even though it took a VERY long time t find him to ask for it in the first place. We capped off the meal with their ""famous"" Monkey Bread, it was definatly worth going bananas over! Warm, gooey, delicious and crazy sweet with its pull-apart goodness it didn't need the ice cream it was served with, but we certainly weren't about to send it back! The three of us died over that one! + +To my yelpers I say: if you have the cash to spend (three of us cost a lil over a hundred clams), a few hours spend on dinner (we were there a while) and a NEED to reach foodie nirvana in order to keep from jumping off a cliff into the chain resturant valley... then this is the spot for you! Bring your most expensive IT bag, a pair of oversized shades, maybe a sweater (the outdoor heaters really didn't work) and your most predestroyed designer deconstructed jeans and get ready!! It's gonna be a blast!!",review,vF4B6eFdoDmyV_l7MLHMzw,2,3,3 +ahKN6wh6z2vZsd8C7AyG5A,2011-05-06,fMOpGwXRZwbU6DosBTTsqg,1,"I will make this real easy for you. + +Just go to in-and-out Burger if you don't want to feel gross and poor.",review,Ooj3PxeY6HY_vS_vYEwP1Q,2,2,2 +eZXAQxBXReD78AWWf0_4ZA,2012-09-12,eabKaVJlR3YrPdJ4LeFcPw,5,I'm usually one to prefer chicken - but when the only option for tacos is steak you go with it. I ordered the taco and was rewarded with tender steak with lots of flavor. Our lunch crew has gone back several times and the service is always fast and friendly. For the size and price - order multiples. Love the salsa bar. Adding cucumbers is now my favorite treat.,review,RIVRgEWlDZ7KnfkOrnabtw,0,0,0 +zw2iJahOnSxlzmRlF4al6g,2010-07-30,WWpp_Unu5IccxJU5Th2DVw,3,"I have have given it 3 stars, but my partner gave it 4, just keep that in mind. + +I had wanted to check this place out from the first time I saw it, and when it came up on Groupon, it was fate. My partner is a sandwich lover, so it was perfect. + +Firstly, they didn't have a lot of vegetarian options, which I found disppointing. I'm so sick of my only sandwich choices being either tomato/basil/mozz or lettuce/tomato/cheese...and that's pretty much what they had here. I went with the caprese option. + +Warning; when they say fire roasted tomatoes, they mean WHOLE tomatoes on bread. Now, I'm ok with a few tomato slices here or there, but giant squishy tomatoes looming over a few spare pieces of (fresh) basil and (fresh) mozzerella? So not appetizing. I ate what I could, but was not impressed. + +My partner, however, made her own sandwich with Turkey, cheese, and some veggies, and she loved it. I agree that the bread was good, and I enjoyed the popcorn chips (rather than potato). The staff was incredibly nice, although the service was a bit slow, and the seating options were a bit odd (and not very accessible for those with disabilities). + +I wouldn't PLAN on coming here, but if we were in the neighborhood, I'd stop by.",review,rR5W8Bj-IGu6sw1_1v4m7g,1,0,0 +w8D3DAby1nVgU8a4s3z88w,2012-10-11,e9pc1PuidNPZzf25nxj7oQ,3,"OH this shop makes me want to lose a hip or something just to fit into their clothing!! I found not one thing in larger sizes, but my friend, who's a size 8, found LOTS of awesome vintage clothes...including, yes ladies and gentlemen, a 70s JUMPSUIT! I am drooling and green with envy, but alas, I couldn't find anything. Go here if you're thin (or just want to torture yourself by staring at all the awesome clothes that won't fit you unless you chop off some body part you probably need).",review,raMSkwLdZ-kFea1fTY_-Ew,0,0,0 +5o5MLNPmAeakGgdqeGyMvw,2012-06-29,39ICyKwEw4TYd9ZuQaAgAA,5,"I had lunch today at CASK 63 with a banker to discuss our collective power to create business in the Phoenix Market. I HAD THE ABSOLUTE BEST CRAB SALAD, I've had since leaving the Gulf Coast of Mississippi. Red Crab Salad....fresh, clean, sweet, crisp..light...in a very well appointed setting. Very good iced teas as well....hard to find in Phoenix.....Go there...Eat there...you will like it..and we might see one another...who knows...be like nike..just do it...:)",review,CGa9zqexmIINVYzviXYq2A,0,0,0 +LYyGQgL60VKdV-p_9OxmWQ,2008-12-01,AX3sLTFCOJRoJuCMho7L5Q,3,"I woke up late on a Saturday, and I was craving Indian food! To my relief, it was almost lunch time! I remembered that there was an Indian restaurant close to me that I had been meaning to try. I headed to Flavors of India to try their lunch buffet. I walked in and I was immediately greeted. I noted the Bollywood videos playing in the background, I love those dang videos. The host was also my waiter. He invited me to help myself to the buffet. I'm not one of those people that knows the names of each and every dish. As I write this I'm kicking myself for not taking notes. As a whole, the buffet was a-ok. Nothing in particular knocked my socks off. I did notice that nothing was powerfully flavorful. It was kind of a ""safe"" seasoning restaurant. I would visit Flavors of India again. There was plenty of food, the buffet had a lot of variety, and the service was good!",review,4UUIpbOTPmu43wuC2aSGkg,6,5,2 +Dsvx2LEC8jk9nuGsg1Kqhg,2012-04-19,HoEbCttQ_69B6xIp85qkcw,4,"Nice, clean store, well-laid out, has all the traditional TJ stuff - lots of organics - although the fruits and veggies could be a bit better stocked. + + Those little chocolate chip cookies are death to my diet - I cannot resist them.",review,J3I2NClEbD1Xr8lOdjxlqQ,0,2,1 +3l72FflaaeI0tWEAWN3-gQ,2010-09-28,rbSKI8wJuzBYNxOaB74log,3,"I really wasn't impressed. Came here with some friends to grab some takeout, and nothing really made me smile. The al pastor was 'meh', at best. The carne asada wasn't particularly noteworthy, and though the vampiro was tasty, there wasn't anything hugely redeeming about it. Nothing to write home about. +Sucks, because my friends in Arizona swear by this place. I'm giving it three stars more out of courtesy to them, but my own personal experience here wasn't anything over two. The people who worked here were very friendly... I've heard that the ceviche is the bomb diggity... I wish I could come back here and give it a better review, because I'm sure that next time would be better, but as it stands right now, I'm just not a huge fan. +Sorry guys!",review,U5JyHRVayfHRHipogAq84A,0,2,0 +-1N0Z3uM8xbxKS8XiAnaog,2009-04-20,IvTP2fHcGOG_GkwLOhqh1g,1,"""The office space, layout, presentation gets 5 stars, the customer service you receive from the employees at Corporate Office Center is a negative 10. They will scare your clients off, scare your own staff and make your life a living hell. Their office locations and space is beautiful but if a say, a client shows up at a time other than their scheduled time, they will be told to leave. They will be told you don't provide any services at the locations and if anyone could single handedly ruining your professional image, Corporate Office Centers can do this for you! BE AFRAID!!!! They are dedicated to working against, not with you.""",review,IzMeF5f2043jgDjhzNeDbg,3,3,3 +jzPMl-NoB5F2fwoHX3hN8A,2012-09-01,mYiFLzqd_cMB9B-HJ90K9A,5,been coming here since birth,review,a09ENYogqRn0sQ8J2D_rng,0,0,0 +R8VwdLyvsp9iybNqRvm94g,2012-09-17,qW5C8PGzKVMjLpWlkgYO4Q,3,"This place is great but not if you have kids. It mentioned on yelp that it is kids friendly, but they don't even have a table changer in their bathrooms. I was there with my 2 year nephew and had to take him to the car to change his dirty diaper. If you call a place kids friendly, you might think about accomodating and have a table changer in your bathrooms both in Potino and LGO.",review,3rp6DjEK0FC-zdDeoij1ew,0,0,0 +ewZlgc22xN5NNQ1H7U6Y7g,2011-03-23,eO1wIenYYlCg1xRU_A0CdA,3,"This place is pretty good for a chain, and it's very easy to find something for everyone here. The staff has always been friendly, and the menu is huge! The food is just okay though. Would return with friends or for convenience, but we would not go on our own.",review,xFG4Ca2HHmbxDTkMlmHnjQ,0,0,0 +vnRwp-LUrxMdJC9je4q9Fw,2012-08-22,jN-O8-qaVLIslx-dc_s-CA,4,"Skip the reviews that reference anything about bad service. Da Beau and I ate lunch, here, today and we had a very pleasant experience. Yep, a solid four-stars. + +It was our first visit. I was familiar with Mia Francesca (""MF"") as a friend of mine, who lives in Chicago, has, since God invented dirt, rated her local MF as an out-n-out favorite. And her word is the ever lovin' gospel when it comes to food. I mean, I don't even collect $200 -- I just go. KnowhatI'msayin? + +Onward, with the review! + +Kyle was our server (and he might be the bartender, too) was very friendly, informative and attentive. Then we find out he's a fellow Texas boy...which classifies his attributes as hardwired. What's more, he treats his job like it was his own business; e.g., at the end of the meal he gave us a business card and added he would enjoy serving us the next time. And there will be a next time and a next time and a next time. + +Semi-quick facts, anyone? (It's rare a Texan has a short story.). + +-- Good, warm bread; accompanying olive oil was herbaceous and handily decanted from a table-set bottle +-- Da Beau ordered a starter of (peeled!) asparagus with tomatoes and gorgonzola that was lightly dressed with a tangy vinaigrette. The leftover tomatoes and 'zola were a treat atop the warm, oil-dipped bread +-- We both ordered -- and consumed to the point of making a happy plate -- the barrumunda atop lentils and sauteed spinach. This was our first tasting of barrumunda. A moderately white fish, it is native to the rivers of Australia and reminded me of good ol' Texas catfish. (Note to self: fry-up a batch of panko-crusted barrumunda at home.). The three fillets of fish, lentils and spinach were perfectly seasoned (read: a smidgen of salt). + +Again, pay no attention to the reviews, here, about bad service. Yet, let's say those reviews make an impression. Ok, if you have any reservations about dining here, go anyway and ask to be seated in Kyle's station.",review,wSSlEV1KRoKgxVNTz3A-oA,0,0,0 +OfwnPy6F_pSoKDJHsKPx0A,2012-11-18,L0nll0014emLg66DqoTLGA,2,A circus. Too many staff + distractions. I dont want staff (in training..) telling or working on my teeth. Dentist briefly dropped in but seemd focused on age & his opinion on past orthod wrk. A quick veneers consult but only have 2 pics of cosmetic work (flag). * No one talked TO me about a CRITICAL crown needed (crown options?) Had to TELL them about a cavity I KNOW I have. Not a real checkup. They briefly look at the XRays then let hygienist do the rest. Dentist? She was fine but wld be good if she informed on what she is doing & hve mouthwsh after. Flossing aftr a cleaning is a waste (what is that?) -put time into cleaning/ polishing. Never saw the full Xrays done--plusCANT get a copy if you move or need it. 1-2 days/wk the dentist is in..so if issus on major work..will DRAG on.... (nightmare-been thru that). Something is off here. It is all numbers.,review,Jw3ocYlfPw3T7g0OknI-lQ,0,0,0 +cjFDprdEXbDDdraONMy5Pg,2010-07-21,T1fqlEsOS9SGkGSj20SW5w,4,Because sometimes you just want to flip the bird at calorie counting and healthy living. This valley landmark is the place for satisfying that once in awhile sinful urge to screw up your carefully laid out dietary plans.,review,GrSixRnGIxNUJ1Cn5DNX9A,2,5,3 +-4A5xmN21zi_TXnUESauUQ,2009-01-24,Hv17NrzadO5oqmNHyIowEQ,3,"Cute place! Nice drive-thru window. Adorable, really. Nice patio-dining/lounging. Noise-level inside was a little loud, but there were eight people, six of w/c were talkative yelpers (ha!), plus Kyle and Chad, owners of D'lish (who were, btw, easy on the eyes... a great asset for any business!). + +One special request- please offer Maya Chai! While Oregon Chai tastes OK, I'm allergic (I suspect there are ""natural flavors"" involved), and organic Maya Chai is multiple-times better (and, most importantly, I don't recall feeling negative effects after)! + +Great spot to unwind and rejuvenate. Will come back soon to try the food!",review,0bNXP9quoJEgyVZu9ipGgQ,6,5,3 +tJplzQDIfCXFFO5wG50rpg,2012-05-22,baPkhhI-DmC8vSXg9jpPww,3,"I've never had any real problems with this store. It is your typical lower income neighborhood grocer. +What really bugs me about ALL the Fry's stores is their waste with receipts. Call me a hippy, but more than half of the receipt paper has nothing to do with my purchase. I buy 1 item and they hand me a receipt 12 inches long! With all the stores doing that it equates to many thousands of pounds of paper wasted every year unnecessarily! Hundreds of trees are dying because these guys just don't give a shit. +Ya, ya, I know, it's probably the least of this companies waste issues, but it's one that's handed to me every time I shop there, staring me in the face. I don't like it and I don't like supporting it.",review,F9Lvy5LfkeYMF1r_Al-Fxg,0,0,0 +PWG28q4JFOc8FiRBjnfCkA,2012-07-17,lZn__xfMMeyACZHmi5iOIw,5,"Well, what a pleasant surprise! I stopped by with my children to check it out - planning to eat elsewhere because my daughter eats gluten-free, etc., etc. Then I met Payton Curry and realized what he and the Brat Haüs are all about. Great food and a desire to serve! Payton delivered on fantastic organic salads that were gluten, egg, dairy, and soy-free and tasted great! And he threw in a few organic surprises. Now I have a place to eat phenomenal Moroccan lamb hot dogs while my daughter can enjoy healthy food. On our second trip, Payton remembered us and came out to let us know he had made some falafel (in the shape of a sausage, of course) and offered my daughter one in a salad or a lettuce wrap. She chose the wrap (more fun) and loved it. I have NEVER had personalized service like this! Cool place, cool patio, great beer selection, great-tasting unique food selections, and, best of all, great people! Congrats Dave and Payton!",review,X9wXPtXASKbqP28CcpM4Ig,1,1,0 +eZyqa81qS0LuH0Bv8vfvrw,2012-11-20,JYesIP4Uupgy-LOwkKupAQ,5,"It doesn't matter which location you go to, it's all the same and GREAT!!!",review,tFyQbNbBQEyEc9oCr1pJUg,0,0,1 +LYLGCIqNQQrpMwOxJ1hlrg,2012-05-10,ba02iPp9hBhoD9bVymsaPg,5,"There's the sweetest (and cutest) guy who works there and one time, my total came to 5.45, i had a 5 in my hand as I was scraping for change in my dance bag but he was like ""its on me."" and took it from his tips! I know its just 45 cents and i could probably find that under the seats in my car but he truly made my day with something so little like that! I LOVE this place!! :D",review,-_ilQMnX9m3hthIioMGNwg,0,1,0 +rIonUa02zMz_ki8eF-Adug,2009-12-31,RVJLmdXEBnbIr3SQZIqt2A,3,"Five Guys offers a decent burger, but it's definitely overcooked--they brag about serving them well done and there's no argument here: that's what they are. But I much prefer the flavor of Smashburger's meat. Five Guys seemed rather devoid of meaningful seasoning, or if it was there, it was killed in the well-doneing. + +I also didn't really like that it comes out as two carelessly charred mini-patties, instead of one, nicely cooked and seasoned burger. + +As far as Mill-area burgers are concerned, I'm at the following: +1.Smashburger 2. Chuckbox 3. In N Out 4. Five Guys 5. Fatburger + +And Chuckbox and Smashburger are awfully close. I've been a HUGE fan of Chuckbox for forever, so many I like the newness of Smashburger, but damn is it tasty. I also prefer the Smashfries to Chuckbox's fries, but I think I prefer 5 Guys' fries to both of them. + +Finally, the price is obnoxious. You're not getting that much in the way of a burger for $11 (drink + fries + cheeseburger). You get a MOUNTAIN of fries, but I don't NEED that many fries. You also get to top it with just about anything, but I don't want to subsidize other people's toppings. Let me pay $2 less to get mine with lettuce, ketchup, and mayo. + +Overall a meh burger. Not great, but better than Fatburger, if I don't want to walk to College for great burgerness. + +Oh, as for atmosphere, it was like a club in there. I really don't need to be bombarded with music at lunch when I'm going to talk to someone. I hate shouting and the few times when the song would switch and the grill would quiet was like the eye of the storm. Turn that shit down.",review,8-2W5CmkDl9vrkxRpkiPRg,0,0,0 +Xth3AXjbQVpvsUBNSFcxtA,2012-05-08,L1JdX3abRGXypXZs8VhEKQ,1,Door clearly says drive-thru open 24 hours and lobby till midnight. Drove up at 10:30 and was told the lobby was closed...lame...,review,w-7lJmMib10WNuMpnrmKUA,0,1,0 +3vKhV2ELR2hmwlnoNqYWaA,2012-05-14,GBzaJM_yoEWHTiNTbJlb6g,5,"Oooh, this is my favorite lunch place by my office. Super nice staff, delicious bagels. Go for the lox special thing, it's amazing.",review,CJOjw2P9zkPxOnnmrY6KjA,0,1,0 +06kfoeRs9Acj82Yl3i9p_w,2011-08-25,1yYqKCaM4pQSyVyK6NMAdQ,4,"Wildflower really is a fantastic place and I feel a bit bad giving them only 4 stars. + +Let me say up front that this is a place that I go frequently and I love. However, they have some great food and some...not so great food. + +If you like soup, try the Potato Cream Cheese.....even my husband, who's definitely not a soup fan, loved it. It's even better when you get it with the sourdough bread....it's comfort food, what can I say? Their sandwiches are mostly good. There's a few duds in there that I can't stand. I'm not a huge fan of the vegetarian one, it just tasted off to me and was a bit of a different combination of ingredients. Also, their Brie and Ham Frittata? I ended up searching around in it for the bits of ham and egg...I love brie, I just figured out I don't love it in a frittata. + +All in all, it really is a great place to go. My husband lives for the braised beef sandwich when they have it and their desserts are fantastic - you can't go wrong with anything in the magic glass case up front! + +Plus, the Tempe location is right beside Changing Hands - it's like a two for one deal! :-)",review,wB7YiVcqEWyL7arlVLsa-g,0,1,0 +CdOb17NMdQpagyHSxv5mHA,2009-08-30,PhmRVJ1w4QTSAZATYToH6w,3,"I came here with me sister Cher, who really likes this place. I'm so used to food being prepared by cooks and brought to me. So, I'm not used to having to prepare my own food via restaurant. I love to cook from recipes, so why should this be any different, right? + +As we arrived there wasn't that many people, I was relieved and allowed me to ask my sister 101 questions about what to do. I ended up making a concoction of beef, carrots, broccoli, rice noodles, sprouts with chef's favorite sauce. It turned out good but I know that I was missing something. I tried some of my sisters bowl and that was really good. + +So, this place is a build-your-own bowl, piled high if necessary, and watch it cook right in front of you. + +It was a little overwhelming at first, but if I continue to go there, I will get accustomed to the process.",review,RHX2qpUTOv2usuckZIil8Q,1,1,1 +8H1DwdAAgSBtwDeb2R-hmA,2011-11-21,W-5Mgk4Nxy5cKDvzs8si1A,5,"BEST PANCAKES!!! We want the recipe. They're newly remodeled and better than ever. Always great bagels but now they have added more menu items, more choices. Great food, great people!",review,LpUm2WFJDahp5ShRJ2F4Ag,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-09-03,txNFKQGKG1XDBa7h1u4hYg,4,Good Date Night Spot!!! Went here the other night for dinner and it was really good. I had the steak and my wife had the casa dilla of the day. Both were cooked to perfection. Sometimes nicer places have really small portions and seem to pay more attention to how pretty the dish is instead of how good it is but this place was spot on with both presentation and taste. We did not have a reservation so we sat at the bar which has full menu service. The bar wraps around and near the men's restroom there is some additional bar seats that nobody sits at. I thought this area might have been a little more private than some of the two person tables. I also thought it was cool to be able to see into the kitchen but that might only be appealing to me. The bartender was very knowledgeable and checked on us several times during our meal. This place has a good vibe for couples doing the date night thing but there was also a table of 6 near us who were also having a good time. Cowboy Ciao is a win win. The desert donuts are ridiculously good as well.,review,kWq7Imvce6pLqHaccV1zbw,0,0,0 +fDST54IsKOGBVtaVN4V8ag,2009-10-04,Cp34L8G3vxXDXHrDqr_OHw,5,"I have been trying to get into a consistent workout routine for years... I've tried it all! gym memberships, pilates, training for a marathon but was never able to stick with anything... until Karve that is! My husband found it for me on here actually and thought I should try it (not sure what he was trying to hint at with that... but i love my improved Karve body too much now to care :) + +Anyway, I went and am now hooked! it is the greatest work out ever - its hard but the results happen so quickly that its motivating... and its really the only workout routine that I've ever been able to stick with ever! and with going multiple times a week I found that it even changed my appetite - I no longer feel annoying cravings so eating healthier is easier for me (a former carb/chocolate fiend) + +It really helped me finally get into a more active/healthy lifestyle - I know that sounds so cliche but I'm still shocked everyday that a lazyass/sweets-eating like me is actually working out on a regular basis - and its all bc of the great method of Karve.... plus the instructors are SO sweet and nice/friendly and supportive I'm honestly making friends there... all in all a stellar review for Karve Studio!! i'm a believer :)",review,LhSKiNsXSItau9tgmRfzyw,0,0,0 +6Kon3cR5ZEm5rmYKlpcfcw,2012-09-05,JruCzyEJTaY30BGbtVgCkg,5,"Whenever my brother is in town he always stays here so when the hubby & I were looking for a place to get away for a night we stayed here. We are the not the party crowd which is why we chose to stay here on a Tuesday after a holiday weekend. Here is my take on Hotel Valley Ho: The Good, The Bad and The Ugly. + +Good: +1) Gigantic, comfy bed. I slept like a queen. +2) Private balcony with large chaise lounge and sitting area. +3) Outstanding bathroom. The tub is separate from the shower which is and the toliet has a room all to itself. +4) Cool decor both interior and exterior. + +Bad: +1) Bed pillows were too squishy. +2) Toliet paper/bath tissue was surprisingly rough. I would expect a hotel of this caliber to have a softer tissue. +3) The mini bar and console are fully stocked with an assortment of spirits, but no coffee or tea. Not everyone that stays here drinks his/herself into a stupor. + +Ugly: +1) Parking is $15 per day, but you have the option to self park which doesn't cost a thing so I guess that's not really ""ugly"". + +Overall, we had a lovely stay at Hotel Valley Ho and look forward to our next visit.",review,fIvDzLhs-cXbTKWp8P3eIA,0,0,0 +V5QdxePG-pGPXVPHSLLM9A,2011-08-12,bKaoIxHPrCUXlH-VRFqj9Q,1,"Coffee-meh. Not great, not horrible. +Scone-dry. +Service-ridiculously slow. +The night we were there (8/11), the owner came and asked a group of people (who were clearly having some sort of meeting) to stop talking because they were ""disturbing the guitar player."" Chased 8 paying customers (at least I assume they were paying customers; they all had drinks) out the door. Weird!! Don't think I'll be going back.",review,jdfiORh60zOH7ERQ44WgFA,0,1,0 +Cr2JNnewX53TYd9w6qw6Jw,2011-10-08,jSd8zPDOQuQyktne9kP0tg,3,"Took my family here for dinner. The hamburgers were really good. I had the regular charburger, and i liked it quite a bit. It was better than most of the fast food chains, but I'd rank it below the higher end burgers from places like Fuddruckers or Red Robin. For the price though, I was very satisfied. My 8 year old really liked her charburger with cheese, but my other daughters did not like the grilled cheese at all. I was not impressed by either the regular or sweet potato fries, but the onion rings were good. We did not get any dessert, although the sundaes and milk shakes looked really appealing. We'll try those next time.",review,hrM6sLyqz9b6yLHS2JV5MQ,0,0,0 +irVjrnurmB03bTaj9BXofg,2011-02-08,GudVZKdNtGic2R6yGvrJgg,1,"I would've gone 2 stars if I were more forgiving. I could reason that it was the end of the day, that a big crowd of wayward children had just come through, or that a hurricane had blown out the back of the restaurant. But then, I tasted it. + +It looks as if Yogurtini is pretty well-loved around these parts, and I'm sorry to report otherwise. It's was like a bomb had gone off. The tables were filthy, the machine handles were all gunked up, there was assorted debris on the floor. The two teenagers working were too busy gossiping about who knows what to do their jobs. When we walked in there were a few customers sampling flavors among the ruins, with no employees in sight. We grabbed some sample cups from the register and dodged napkins and froyo puddles (and other customers) to try some different flavors. The levers are the type that if you pull just a bit too far you make a mess all over your hand, especially when trying to squirt a tiny bit in a sample cup. This mess is then added to the greater mess of everyone else attempting this same operation, and no-one attempting to clean it up. + +The stuff was real overpowering, to where instead of tasting like what it was supposed to taste like, it was bordering on medicine or like a bad imitation of what it was supposed to be. Like, cheesecake doesn't taste like that, good cheesecake anyway... And neither does cake batter, or banana. Where did the yogurt part go? And how do you screw up cookies and cream, exactly? The two that were the best (and most edible) were the Irish mint and the red velvet, and that's what we mostly ended up with. + +The decor didn't add to our experience. Everything is a mint green, but it doesn't come off as retro or even minty, but more like dated and hospital-like. Some people really like it but I found it unappetizing. + +A surly teenager magically appeared as we approached the register, only to disappear again soon after we paid. We sat down at a dirty table and dealt with our choices while the two teens again made an appearance, half-mopping-half-attempting-to-clean while chattering back and forth about their dating woes. We finished our yogurt but both strongly considered abandoning the whole affair. + +I very well could have walked into Yogurtini at the worst possible time on the worst possible day, with all the factors stacked against them, but I won't be returning to find out if this was the case.",review,fKYP2YKR5yp_cNHPzBxxKw,0,1,1 +e34tIpveepWkpvOuv_boqw,2010-08-05,bVau6oHuidnqTgXJU2p-Xg,5,"I had the Gnocchi in Shitake Dijon Cream Sauce, and it was unreal. Cute little place. I didn't sit to eat so I can't comment on the service, but they were extremely amicable when I ordered my take out.",review,8UN5ojieloDD4WvohQo77g,0,0,0 +-EctXOb3B7T177jGYUhjVA,2012-07-14,6WCg2xx-BKwq1y3WCs2_SA,4,"Fun trivia! Food is mediocre. Crowd was cool and there is plenty to do there (video games, darts etc..) When I'm back in Tempe visiting friends I know we'll be back. Bonus for having the misters and a great seating area outside. We met some very nice locals who were up for a good chat.",review,x1PxZJvRo4tu-ruOXa5MqA,0,1,0 +4t-W81Tpt1OER_p3mIgMDg,2012-02-03,4vdb34Xee5jwHwuuViMT9w,1,"The 3 employees were so busy talking to each other they couldn't remember what we ordered, kept having to ask, and still didn't get it right. In the midst of the three employees continuing in their personal chaos, my husband finally said, ""ok, time out! I'm the customer. Make our sandwiches and then take care of your issues."". They stopped for a split second, all three looked at us, then they actually IGNORED us, finished their conversation, then finished our sandwiches. We were the only ones in there and we really were shocked! Good thing I like avacado, because it ended up on my sandwich & I didn't order it, and after telling the girl, she said, ""I thought you said..."". Still had the order wrong! Whew!",review,UcdsKXNPHmVzi5qPQSCutg,0,0,0 +1_WD7kvNQAbscw1c7CFH3A,2012-10-31,QmFjYvkpHAjSXzSRHCi5lQ,5,"One of my fondest memories as a child is traveling to Alameda to visit my great-grandparents, one of which was Filipino. The food! Yum!!! + +It had been years since either my mom or I had Filipino food. We both moved to Arkansas 20+ years ago but I recently moved to the valley. The first time I came across Hey Joe was last Spring when my mom was in town and we visited the Old Town Scottsdale Farmer's Market. Pancit? Lumpia? I was beyond excited when I saw the truck. Yes, I get excited about good food. + +Everything was fabulous. I have since tried the breakfast dish which was absolutely delicious. + +Service is great, prices are wonderful. I will definitely be back.",review,0SweAOS_ChLQVv7pb51J4Q,0,0,0 +TJ_wLPY8iScgJc641aQHxw,2012-02-02,o5WnqGiPo97Qf00eLGmU2Q,1,"This place was the worst place to EVER live! I lived here from Aug 2010 to may 2011, i was always in the office see when the grates would be fixed?? the office always gave me the run around very rude. You would think after the gun shoots, assaults, and car break ins that they would fix the gates but nope and to this day they still aren't fixed. When we moved in they said they would be fixed in a week and they lied. Also the gym is huge but NONE of the equipment works! living here was SO gross! nothing worked our neighbors are Mexican thugs doing drug cat calling at anything that walks it was gross. I hated living here! + + But the worst part was a few weeks ago we get a call from collections saying we owe Scottsdale Springs $300 bucks over 10 months after moving out! I called them up like wtf, and they were SO rude said too bad pay it or your credit score will hurt, we even gave a fowarding address and we NEVER got a letter in the mail about any damages. They claim we never gave them a forwarding address which is bull. + +I really hope people read these reviews i would hate to see anyone else scammed by this god awful company!",review,gIhEoQQLLUHbKbn2_TS1hg,1,1,1 +NCbHGtOP5yJBJsPPaE3X5g,2010-08-14,nfk2VvEua2c4qRdaimybrw,5,Thank you so much for the good reviews. I went here for a business meeting 8-13-2010. I ate soo much I hurt myself. Everything was great I especially loved the lamb and chicken curry. The staff was excellent and very kind. I will recommend my new favorite Indian food restaurant to everyone. ;),review,V3tKShhytJ7CflF3vqureQ,1,1,0 +DDnmNTvIIQu2t3WZ2EQx-w,2011-09-06,RGWidgmFW5CtAA-Vfet2pA,5,"This is seriously one of my favorite restaurants of all time. I've been many times and it's always fabulous. I LOVE their Mahi Mahi Tacos - they are so good! I also highly recommend the Pork Osco Bucco, Smoked Red Chile Pork Roast, and the Cowboy Beef Stew. The nightly specials are often very creative and delicious. This place is also good for Sunday brunch. Good bartender too - drinks are never too weak.",review,SlRP0wlWohWkMgnVF2D2hA,0,0,0 +b_i5IvnPAv8Supc3p_e2Cw,2008-05-24,nc1hZ4u65uRKG2aGOANKeg,5,"This awesome park and recreation center makes me wish we lived in Peoria. We were here today for a FRAG (reef tank geeks) picnic and the whole area is new and beautiful with lots of different amenities. We saw sand volleyball courts, a spashground (with critters spouting water) for the little kids, a skate park packed with older kids, picnic ramadas, fishing areas, baseball fields, batting cages, and a duck pond. There is even a Starbuck's. + +We were at the group ramada BBQ pavilion, the likes of which I have never seen before. It was a huge covered circle of about a dozen BBQ grills with ventilation hoods hanging above and a cement ""bar"" from which to serve on the outside circle and smaller cement ""tables"" behind on which to do prep work. There were also sinks in the center to wash up. Surrounding this circle of grills were corresponding ramadas with picnic tables numbered for your group. What a fantastic set up! + +Great job, Peoria!",review,N-D-d1Z4UybdlkK1HxlNPA,2,4,0 +winRNt7prallDbpaDMS9Ig,2010-04-01,FO8x2vxQeSzBbSS9zpatrQ,4,"Tonight was great. I had a calzone, pepperoni and olive, Coppola Zinfandel, the wife had a pizza with nice and hot jalapenos. The staff was nice, so much that we made comments to each other about the quality.",review,XWGCBxSa_ZlDErwj6969Bw,0,0,0 +9Vu9KhK2-kBSM-FXvxXGNg,2011-06-30,UVHO6sHyC9jFO_YD10hX9Q,5,"If you like P.F. Changs, you will love Pei Wei! It's essentially the same thing in a less formal dining setting, & Take-Out! I can't tell a difference between their Orange Chicken, or the lettuce wraps minus the price tag!!! +My favorite dish here is the Dan-Dan Noodles! (It's Hot. Spicy, & Pure Indulgence Pleasure for under $10!!!) + +If you have not heard; ""Pei Wei is not authentic Asian food!"" Well neither is Panda Express, but I'll tell you Pei Wei is better than Panda Express & most Authentic Asian restaurants in the US! +Yes I said most Authentic Asian restaurants! (NO MSG!) + +""Can you believe the balls on this guy!?"" + +We'll I have had Chinese food in China Towns in San Francisco, LA, NY, Vancouver & Dallas! I've even had Peking Duck in Hong Kong; don't be impressed it was not that good! I love Chinese food, but I really love Asian Fusion! Roy's, PF Changs, & Pei Wei really wet my noodle! + +The other nice thing about Pei Wei is their take out! +I have them on speed dial... +So when I'm on my way home from work I'll call, & as I pull in I pay, pick up, and go! It's freshly cooked & No Wait!!!",review,PZ9FB1czAYXuxLH7eegBvQ,0,2,1 +dBMd0f09nJCHURtmGHQPIQ,2008-12-27,8-kxb-aC1BLteINrTrxrNw,4,"The name says it all. This family owned restaurant (3 to be exact) specializes in tortas but they also carry your staple Mexican fast-food affair you would find in AZ. Everything I or anyone else has had has been solid. Just in case you don't know what a torta is, the best way I can explain what one is that it is essentially a toasted sandwich with a fusion of Mexican and American ingredients. When it comes to TEG's tortas, there are a few standouts. One would be the cochinita. + +Cochinita which is marinated pork is absolutely delicious by itself, but in a torta, it is absolutely scrumptious!!! My best description of what cochinita is to think of pulled pork that is braised in a slightly sweet, salty, and spicy redish/orangeish sauce. In addition, it has American sandwich staples such as mayo, shredded lettuce. What makes it a ""torta"" are the slices of sweet and sour pickled jalapenos and carrots and slices of avocado (and they do not skimp). What completes the sandwich, I mean torta, is the bread. It's always warm and fluffy in the inside and the outside always has a nice crisp texture from the grill. + +The other torta I would strongly recommend is the carne asada. The combination of the carne asada steak with mayo, fresh pico de gallo, and lettuce along with the warm bread makes this torta an absolute winner (my mouth is actually watering just thinking about it!). + +The Cubana, which has your typical ingredients that come with any spin on the classic Cuban, is also good. If you are a big fan of Cubans, then this one may be for you. But in my humble opinion, this does not anywhere near come close to the yummy goodness of the cochinita and carne asada. + +The Hawiiana (Hawaiian) is also a relative good choice. With the combination of Ham and fresh grilled pineapple along with other condiments, it also is descent selection. + +As I stated before, they do have staple Arizona style Mexican fast-food here and there are a few I would recommend. One would be the flautas (large deep fried rolled tacos). + +The pollo is the one I would suggest. If you envision your typical fried rolled tacos with guacamole and cheese, well this is not that, this is even better! The flautas at TEG are larger with much more stuffing then your typical rolled tacos. In addition, they make them with yummy flour tortillas, not your typical corn. The shredded chicken is well seasoned and moist. The tortilla is always fried perfectly, light crisp on the outside with the inside of the tortilla still soft. + +The burritos here are good, actually better than average, but because the tortas here are the showcase, everything else takes a backseat. The rice and beans are hit and miss, especially at the Chandler location. + +I used to give TEG four and a half stars, but with the mistake of expanding too quickly, combined with quality and consistency falling a bit, I would have to give them three and half stars; four stars would be stretching. I'm anal so three and three quarter seems to fit. + +For example, the Phoenix location, which the Son runs and where he started the chain has a few issues. For example, the Cochinita at the Phoenix location is always drier and saltier than the other two locations. In addition, they have certain items only at that location that the other two do not. One would be their Sonoran style hotdogs, which are excellent and an item I would highly recommend. When I have gone to both the Mesa and Chandler location and asked for them, and unfortunately they said they don't carry them. I was disappointed to say the least. + +Another example of inconsistency is the last time I went to the Chandler location. I brought a couple of out of town guests, and I was a little disappointed because the bread was a little too bready (dense) and not light and fluffy as usual. When all the ingredients are in perfect symphony, you have one amazing torta, but when one ingredient is off such as something like the bread being too dense throws off that harmonious balance of flavors and textures. In this case, it made a difference from a four and half star sandwich to a 3 star sandwich (which is still good in my book, but not great). + +The best and most consistent is their Mesa location. I think that it is because Mom and Pops run that particular location (well they used to anyways). Everything has always been consistently delici-oh-so-good. + +Overall, would I still recommend Tortas El Guero, and do I still go? Yes, but I wouldn't rave about the place like I once did especially with the inconsistencies I've experienced as of late. + +FYI. Chandler is the only one with a drive-thru.",review,CJWaJ8MfppMDGCiMXyl0pg,0,1,0 +liXaSXrIXjikvdSEI2inxA,2012-05-09,Szd_Mqm_3Oa1mv-3mC9GLw,5,"They finally just opened a Rita's location in Surprise!! I think it just opened yesterday or today, but it's just as good as the one on Union Hills and 83rd Avenue. I told my co-workers about it and we basically have been driving by during our lunch break just waiting for it to open over the past few months. +It's hard to explain the texture of the ice. It's thicker than the ice in a frozen margarita, yet it's not crunchy or unrefined like an Icee drink. Sonic has similar ice, but I feel like it's just not as good as Rita's. I guess that's why it's Italian ice. It's in its own category! + +There are 3 main types: Gelati's (custard-ice-custard), Blendini's (custard-ice-custard with mix ins like Oreos, M&Ms, etc), and Mistos (ice-custard drink). You can also get just regular custard alone or flavored ice alone. One of their most famous ice flavors is Swedish Fish. There's also a sugar substitute version of their ice and today's sugar free ice flavor was Pineapple. I tried a Red Velvet Cake Gelati today with vanilla custard and it was nothing less than amazing! +The menu is a little confusing since there are so many choices. There are mainly only 2 types of custards though, vanilla and chocolate, that can be mixed with the 12 flavors of ice that consistently change. +Before, I was solely a fan of ice cream and yogurt. Now, I am grateful that my sister-in-law dragged me here, because there is nothing quite like it yet! Now I will always compare Italian ices to this place.",review,HR_Lxh2ycv0t745Ohiziew,0,1,0 +pkAxiGlb5VIYtlSj2PM5Eg,2011-02-13,-6kOZZNnfdESbsfdSxNgTA,1,"After several hundred professional massages over the past 20 years, I encountered today a first -- a massage therapist who explained that she could not do a massage involving any but mild pressure using her hands. It was an issue of ""protecting the thumbs."" When I told her I didn't like forearms and elbows, she explained that she'd never worked without using her forearms (and, I assume, her elbows, too). After just five minutes, when I asked for more pressure, she suggested we stop the massage -- that she wasn't the ""therapist for [me]."" She was right. What are they teaching these people these days, and why doesn't an excellent outfit like LifeTime Fitness insist on better skills among its massage staff? I won't offer her name, but, if considering a massage at this establishment, I suggest Casie as the only therapist here worth the money.",review,K5owfRSgd1e7ds7-Oj3GVg,0,1,0 +oOehX_l0odQc-tu81VUkIg,2009-06-22,hZd27oTxuwk1UGagz5YqqQ,4,"It had been a few years since I last gave this place a try. It hadn't blown me away as I had remembered, but I was still up to giving it another shot. I must say that this place is much better than I had remembered. I stopped in for lunch and there were several people eating in there at the time. I ordered the Luncheon Special #3 (Cashew Chicken served with an egg roll, fried wonton, fried rice, and a fortune cookie) for myself and a #1 special (Qwik special chicken which also came with all the additional stuff mentioned above) for a friend to go. Each dish was only $6.25 a piece and were both ready in about 7 minutes. I guess the Qwik part wasn't just a clever name, they actually do cook stuff up pretty fast there. I brought the food back to the office and tried my lunch. Yes, I also made sure to give my friend his lunch as well. It was a dark meat chicken, white meat can be substituted, in your typical brown sauce with veggies and cashews. However it was done well. No one ingredient dominated the dish and there wasn't a ton of sauce. The egg roll was crispy and flaky and filled with veggie goodness as well. I like the fact that they will deliver as far south as Camelback, north to Cactus, east to 60th street, and west to 96th. They are open until 9:30 pm seven days a week which is nice as well. I went back to try some of the soups and the dumplings and I have to say that while the soup was good, the dumplings may just be in the top 3 that I have had in Arizona. They don't have that ""just unfrozen"" taste that many restaurants have. I think I would have given them that fifth star had they had both scallion pancakes and noodles w/ sesame sauce on their menu, but alas they do not. I look forward to going back and trying many of their other dishes.",review,3v992z7jD9ao-HHherEcVg,1,1,0 +zp713qNhx8d9KCJJnrw1xA,2011-05-16,cAmBkhhWS3Mwq7HGUIH4GQ,5,"This place has to get all five stars. Ok, the area is a little suspect I will admit; that can be countered with the excellent food and excellent prices. This is the kind of food that goes for $12 - $15/plate if it were located in an upscale area. They have done a great job with the interior and the food is really wonderful. + +5 Top reasons I love La Condesa: + ~ Beautiful food. Unique flavors. + ~ Great salsa bar: aver a dozen lovely hand made salsas; I liked them all + ~ Price: you can spend under $7 and have a really good meal + ~ Convelient: It is only a 2 minute drive from 24th & Camelback. + ~ Atmosphere: the interior and the service create a great place to dine. + +***We eat out several times a week, and this place is now at the top of the list for my wife and I both.***",review,obTixVBziFCH0e-EUnAvtg,2,3,0 +xWlCgISVtozxCztPA4nGaQ,2010-11-29,v_2tGk5Zv-WpthdCxPwfQA,3,"Don't go to Dos for authentic Mexican food or stellar service, you'll be disappointed. Go to Dos for a fun atmosphere, good Happy hour and cheap ""bar"" food... then you'll be pleased! Dos usually hits the spot after a hot day at the baseball game or for a first stop before a night out on the town. It has all the essentials, food, ATM, toilets and a huge selection of booze!",review,Zwtx7FLZcK5F2P0-Tz8mHg,0,1,0 +qwmHm3s8p7J12AIY6Co8HQ,2008-07-20,m1wH46ROB2_P90sp0S1FDw,5,"LOVE it and so close to home! Since Pita Jungle open in Glendale I have been at least once a week (Yes, really!) The hummus and garlic dip are to die for and on my last trip I tried a Greek Pita-Oh my! The fruit on the Caribbean salad and the fruit and cheese plate are amazing and the chicken combo plate is so large it's two meals! + +The ambiance is slightly different than the other locations but I think that is mostly due to the fact that two sides of the restaurant are glass. Pita Jungle Glendale still features a revolving collection of art work and you can see the funky style of the other locations in the hand painted chairs and the cool artwork painted in the bathrooms. The staff is also extremely friendly.",review,ai2W745a8wrLHJr7TY0FCA,1,2,0 +oB-vwbo10DIjK01Zakp39A,2012-11-20,8BB5C8WvDPn2DaqwEzSzVQ,2,"The mojitos are good and $13. Nice atmosphere. Still not the best service for a ""5 diamond"" property. The group we were with ordered about 6 servings of nice 15 yr old scotch (straight up) which they didn't have. They replaced it with 20 yr old at twice the price totaling $270. They really should have been made aware of the price first, they WEREN'T happy.",review,DqekGNe2lrLV4UI0V5-gcA,0,0,0 +fv2WqPvS4YfxCm6YWqrvLg,2011-02-21,cXucNZJJxfJIzIcoPkQrgw,4,"Never busy when I go there at night. Very nice staff, good solid food, you got to love Filiberto's. I just wish they had a Drive-Thru! 2 Thumbs up for being very clean and friendly.",review,DwU7KVfebA70AlVtX0iOWw,0,0,0 +Zh_y9AmSfWZpR2JB9wye-A,2011-05-15,fMCj4wzgPb9zbJCY0UnM2g,1,"While the menu looked promising, have no idea if the food is any good since the hostess failed to even acknowledge our presence when we walked in the door. We patiently stood there for several minutes while she walked around us to greet and seat two other parties. Since we were still unable to get her attention, we left and went to Tommy Bahama across the street.",review,z15pgm-EX7AThy9DR0BpKg,0,0,1 +I4bSn5gXsHuSPu7L-d_8nQ,2012-05-15,MEdGp-pkf6DAxAsgUXpbqg,5,Awesome food and service!,review,JfezQ-BqHOE7pnW2DkhxIg,0,0,0 +v1vi2ph9YLAXGqV2WTuN7Q,2008-10-26,Bo4BReIExS-IRgeO3vcCMA,5,"How did I not know this is right across the street from my house?? + +I woudn't describe myself as a crafter or DIYer, but man this place has all kinds of fancy papers, from traditional to fun and contemporary! I bought these vintage anatomical papers that I plan to make posters from. The best part is that they were only $3.50! + +They even sell Japanese Copic markers, take that Az art supply!",review,9bfryXyHC9-hZyuibVWQlw,0,0,0 +SgTjnyElc26gPUghVuCuSQ,2012-02-21,7pmzWcmgKwl-XVyPERBWoQ,3,"It was a little expensive. $65.80 for two apps, one drink, two sodas, two entrees, and one shared dessert. + +Highlights: + +The Grilled Wings were very good. Nice and crisp, charred but not burned, and not too fatty. I could have eaten two dozen of them. +The Cheddar Potatoes were a hit at the table, liked by all. +The Creme Brulee was excellent, and about twice the size that Torched Goodness offers, for 5 cents less than TG charges. + +Lowlights: + +The hummus was just plain, and there was something else they put on top of it, something a little bitter - ?? Not sure what it was, but it was not impressive. +The ""half rack"" of ribs were pretty tiny for $14.95. Not a lot of meat. +The Flatiron Steak was also tiny, and overcooked. Not very tasty at all. +Mashed potatoes and Mac-N-Cheese were very pedestrian. + +All in all, I might go back, have 2 orders of the wings app, and finish with Creme Brulee. But I won't go with the kids again, not for $75 with tip. We could have eaten 3 times at Los Taquitos for that price.",review,iwZ_7QuZ1tzT6pIZmOlDQg,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2009-12-19,-qqrl4101KbQKIdar1lMRw,5,"Cashew brittle, almond brittle, bacon brittle! Go now, before it's too late!",review,wHg1YkCzdZq9WBJOTRgxHQ,9,8,6 +vaabk6CYXX1dYVQ1xkyPUg,2012-07-11,GAaNXk8R3Yhb8pSPz_eTEw,5,"Delicious gourmet crepes. Friendly staff. Awesome environment. Price is right. Eat here, it's good.",review,i4wvVOpvemDoCVs_4UbQlQ,1,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-08-03,7mIvGqsIvQo_IIzeJa-YUg,4,"One of the best lunches I've had in Phoenix. + +I'm still thinking about the fried egg sandwich and fries. A fried egg- yolk just barely runny. Barely. Two thick-ass slabs of good-ass, smoky-ass bacon. Arugula and aioli on a really tasty ass bun. Damn, son. Good as hell. The french fries were so damn good, too, and you have to dip those in the remoulade to really enjoy them all the way. + +I would come back for this sammich every day if I lived next door. Don't be afraid of it being called a fried egg sammich, because it's a whole nother level.",review,wttePGxhTumTTUinL5tlTg,0,0,0 +RmA5zN-Bs89lsTuY6v8W3Q,2011-02-01,gFtgPCsTAfwjt89ilwPkJw,5,"Upon first look Pearl does not look like my type of place. Trendy location/atmosphere often equals mediocre food. Pearl is an exception to the rule. The sushi is creative and tasty and the drink specials rock. I love that they have different flavors for edamame, cheap bombers and did I mention the fish sticks are way to good. All of that would equal four stars in my book, fifth star is given to the staff. Steve is the type of bartender that others should aspire to be like. Knowledgeable and observant without being intrusive. Always goes the extra mile, I really appreciate how he makes my husband and I feel so comfortable. Overall great value and relaxed attitude.",review,4YzRc68mopn4s6s8KZx7Ew,0,0,0 +GRFunGSUZxXqNCZJrN8Oow,2012-10-29,hRMY71CxeLRz2zEzX8uk-A,4,"Come here if you are + +1. a sun devil +2. too young or too old to go to be at the breakfast club +3. want to go to the breakfast club but are too drunk to drive, walk please. + +its located downtown, its crowded, its youthful, its noisy, its got decent food, creativity is decent, food taste pretty good. + +u go up and order and pay, they bring the food to you. the crew is energetic and would do their best to fight thru the crowd to bring your food to you, bring your sauces to you :) U get your own drink, just be careful not to run over anyone thats hungover. + +for old farts like me, this is quite a nice place because it captures some of the ASU campus spirit when you are here. it kind of reminds U of the MU at lunch time (I am sure its still busy as hell now) + +come here, order some coffee, eat an omelette, oh but bring a friend, so someone can watch the seats while the other go order. its very crowded and mostly first come first serve. try to limit your party to like 4 or 8 people or 12, u get the idea, the tables seat 4, so if worse come to worse, you can split up to 2-3 tables but still fit everyone in.",review,UrJSPcSii2LyKViKotQ_Kw,2,1,2 +-4A5xmN21zi_TXnUESauUQ,2012-02-21,TZC6MpBIRYUIwpZNsuZiTw,5,Excellent. Fresh and yummy!,review,TVE5WWrjDfvKLU7bl3zdcw,0,0,0 +c_Hgu6zirKI2l71TAhrTRQ,2008-07-27,uNDtuggIRGIpjhstv6y9Rw,1,"When I was growing up we called this the canal. In other parts of town it is still called the canal. In some places people actually fish from it. I think they die right after they eat their catch, which is why you don't see them very often. Over the years you periodically hear about dead bodies being found in the canal as well. Google it. + +What is so annoying about this is that Scottsdale, is trying to make it seem like this isn't the same heinous canal that's always been there. When I heard about the development around the Scottsdale Waterfront, I couldn't figure out what they were talking about. What water? Then I started cracking up when I found out it was the canal. + +Come on Scottsdale, you can put a dress and lipstick on a pig, but it is still a pig. You are not fooling anyone.",review,AdEy5KAIlMAy8xHyuMQCFg,6,5,11 +sbsFamEj5wDxNAjUKrMcSw,2011-03-21,_X7TbFAly-QwuZUtatQ3oQ,1,"Service was slow and horrible. Got the steak and eggs. Steak was half fat. Waiters response was ""Oh! We have a new supplier"". He didnt take it back and charged us any way. Eggs were cold. Stay away from this place for eating. Bar looked happening.",review,zYacR6Qq9gHuOXhIyLEPiA,0,0,0 +CqhsIZ7TzCfJTrZqg5-gqQ,2012-01-17,NjH_pEZ3nrByZ2oBq98kEA,5,"This is one of my favorite bars in the area. The bar has a good vibe, the food is good, and the bartenders are attentive. The prices are reasonable so you can have a good time without digging too deeply into your pockets.",review,rKiKokChTSYQaoZAkU9kEQ,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2010-06-06,gkfxkY7FjFymM7U_hA9zag,4,"This deli style restaurant has everything you want. Good service, inviting atmosphere, super clean appearance and most of all freshly prepared food that is attractive and delicious! + +I had the Salmon BLT. I did not even have to ask the friendly order taker to make the bacon crisp or the salmon to be slightly charred. Everything about this wonderful sandwhich was perfect. To be honest, I would switch out the the shredded iceberg lettuce for spinach leaves. Still the sandwhich was terrific with it's nice proportion and the aioli sauce to bring it all together. + +My dining comanion had the spinach and sirloin salad which was also completely finished at the end of the meal. By the looks of the empty bowl it came in- it must have been really good! + +There are some other items on the menu I look forward to trying out next time, like the wood fired pizzas and the burgers. +Great location in the heart of old town Gilbert. Galleries and other small businesses are in the same area. + +A great find. I will definitely go back!",review,VA5zvXwaaj81_tjiQCH2mg,1,1,1 +wQXqj3GTHsF3AcWB3LTxMQ,2010-10-02,by5iKTRD77HaeH4z6Ltl-A,3,"We really wanted to like Honey Bears. As far as BBQ goes, this was a perfectly average meal. My side salad was ok, corn was very good, pulled chicken was very dry and the roll it was on (got sliders) was store bought. No amount of sauce made the chicken juicier. Unfortunately the sauce had no character-was just sauce. While we are on that, flies were all around the sauce. My husbands ribs were ok but not very meaty. We are hitting all the BBQ joints in the area as we just moved here. We won't be going back here unfortunately.",review,4q4GBS0Uj04ZKAwHGAJzug,0,1,0 +kaIue7GRCmkPzDeHDBTttQ,2011-06-22,Ca8HxfewMlsvQ2lRcM-2Rg,1,"Wow! I can't believe this place gets so many good reviews. +I was hauled here once by co-workers looking for a cheap meal. But, how much value does your lunch dollar have when you don't even want to eat the food? Dry and sticky rice; ""white meat chicken"" unidientifiable as such, and a sweet glaze that provided the only flavor. Quite frankly, it was disgusting, and none of the dishes my co-workers had looked any better (though they seemed to be fine with them). I should know to stay away from restaurants that have pictures of their menu items on the wall. The one star is only for the fast and friendly service.",review,Laas9Ip1BoMGMlli1K4XcQ,0,0,0 +o4DsvwwD2kIbF-EM4r9G8A,2010-05-18,MSjF-293AP0XeoybtLHd9w,3,"I liked the tiki theme and torch lights in the patio area. During the past few times that I came here, it was normally packed inside and I always ended up finding a seat outside. Since it was packed the last time I came, getting drinks took a while, but it wasn't too bad. Drinks were cheap and not stingy compared to CA. Music was not the typical main stream songs that you hear on the radio, which wasn't my favorite and the crowd consisted of older professionals. Definitely not a dress up type of lounge, everyone was dressed casually.",review,mWFC0NDzJh27ku3G_ILNwg,8,7,5 +LHzVPddSPzMECho55zCf0Q,2011-10-15,txQd0uc0WuSh3lcpxKTF8A,4,"Right after I wrote my first review of this place, a groupon deal popped up that would let me try the pizza. I jumped right on it and used it today for lunch. + +We came in about 3pm and it was pretty crowded. The pizza oven was going, and there were lots of people sitting around eating gelato. A lot more crowded than the last time we came in, that's for sure. We ordered lunch, I got the marinara pizza and my husband ordered the chopped salad. The wait time for our lunch was pretty minimal. A little over five minutes. My pizza came out first and it was pretty delicious. The crust was thin, with just the right amount of fluffy in the edges, and with a nice char on the bottom from the pizza oven. The sauce was tangy and had a nice array of spices in it. It was also covered in garlic and fresh basil leaves. I really enjoyed this pizza. My husbands salad was lettuce, chopped carrots, cucumbers, roasted corn, cherry tomatoes, parm, all in a very tasty vinaigrette on top of a piece of flat bread. His salad was also very delicious. Our coupon covered our whole meal plus two small scoops of gelato, but the prices of our lunches was pretty reasonable. I would come back here to eat the food again. + +The gelato on the other hand, is still not my favorite. I had strawberry today and didn't finish it again. I don't know what it is about the gelato here, but I am just not crazy about it. Hence the four stars. The pizza and salads are great though. Come try those.",review,2nXFEyQ06RfcdAXIPbxuwA,0,1,0 +MMMHmbfq3nxUQREU4hKOKg,2011-11-22,GKLDF2kKMaIUXIUCV_bn3Q,1,"This was a terrible experience. You can not reach anyone via phone, you have to book online, which I did and also requested a phone call. I rcvd no call and had an email in my email confirming a time for cleaning. I requested a call then and got a reply stating someone would call me in 15 mins. Still no call. The cleaners arrived & I had someone let them in. When I returned they were to clean the bathrooms & they were TERRIBLE TERRIBLE! The sinks were dirty, with tooth paste splatters on sink, the inside of the shower had brown marks from some sort of un rinsed product. I am so unhappy about this. I have tried to reach them every day since & have not recieved a call back from a voice mail or email. DO NOT USE THIS COMPANY THEY ARE AWEFUL!",review,T8HM9hiSVvmBy3tJYIqBuA,0,0,0 +z0xEfgr1-lDqVatrX-rf-A,2012-11-16,dkHPrjxQ5ZADWvVH3AhBbw,4,this place will kind of throw you off when you first step with the wall nic nacs and the display that sells body wash and toothpaste next to chop sticks and such but the food is surprisingly delicious.. my husband order the chicken curry friee rice with orange chicken and he loved it. i had the chicken and beef chop suey and was not disappointed. kudos to this joint could do with some spring cleaning and a little sprucing up but good all the same,review,Q8ejru0KDzS1qcAVAD9dVQ,0,0,0 +fJ46ok6poCuLGT1O2M3xBA,2011-03-08,18uXgzZnJRCfBeP3V3tKqQ,5,"I had an amazing facial here! +The space is clean, inviting and relaxing. Park in the lot south of the building, it is less crowded. +After an hour of pampering my skin was glowing! +They offer many of different services including laser treatments. I will be back for some more aggressive treatments to fix up my flaws (not that I have any)! +Anyway, the staff is very professional. +Before or after your treatment go next door for some great Thai food!",review,0o0VMEJeQY0pAAZ9nxErBA,3,2,2 +d3MxUXS1b6U2P_gGuCO1-A,2009-01-28,eAZtg2Q2EJbpURx4yUqZOw,5,"Bliss, Delight, Contentment... words to describe our evening Monday night at Sens. I could go into a very fluffy review, but, with a nod to the simple zen-like restaurant, I will only address and highlight. + +~Spa Like atmosphere - welcomed and enjoyed. +~Attentive, but not aggressive server...great attitude! +~The Bar Menu I expect to see if I go to heaven. +~Homemade infused alcohol.. finally in Phoenix! +~Open kitchen, I was able to watch the chef CRAFT my meal. + +All items served ""tapas"" style... great opportunity to try many items! + +Food is prepared and served to allow the diner to choose the experience... either enjoy the food natural, or enhance with dipping sauces. These are not the heavy, sticky sauces of Pei Wei fame. + +~Mango Spring roll.. light, fresh items in rice paper 2 rolls sliced + +~Soup Gyoza, 4 little light dumplings filled with pork and a delicate broth..divine! + +~Volcano Beef sear your own tender beef strips (5) on the hot stone, then wrap it up in a lettuce leaf with herbs and peanuts,... try a dip of the accompanying sauce...ecstasy, prepare to order 2 they're so good! + +~Panko Shrimp - liken to little shrimp ""hushpuppys"".. very good, but not the highlight of the evening.. Mr Chu could improve upon these in my opinion. + +~ Red Thai Curry - 4 unique, yummy curry / coconut milk dipped wings perched on a Asian ""slaw"" + +~Spicy Wontons - Americans will love these.. familiar flavors, with wonderful dipping sauces. + +No-one in our party was disappointed... everyone was very pleased and anxious to return. + +** Personal Suggestion *** +Have a food allergy ?? .. Use common sense when dining. Take personal responsibility and ask questions of your server BEFORE ordering.",review,Ap5atWJUGnJ6B-XCzbZjWA,3,3,2 +G6EKYSP1RMbaBDlU8F72ww,2012-07-12,NgYwRhl39AsTi4FExDJMHg,4,"They do small engine repair here, so I took my lawn mower in. It needed some attention -- a new carburetor, spark plug, bulb, and gasket. Dropped it off in the morning and picked it up in the evening, very reasonable price.",review,d1zJj49Q5ikgvqQX0534RQ,0,0,0 +3jqOv6re-xPYOg7srmi7tg,2011-03-28,osl1TFnmplk4bxFS8AdVOw,3,"Picazzos is not very big and was filling up fast by the time we left. There is indoor seating, outdoor seating and a bar area. No exciting decor. Looks just like your standard Italian eatery. + +This place prides itself on it's organic and local ingredients. Which is great, but the price definitely reflects this. + +According to our server, both the regular crust and marinara sauce are 100% dairy free, so I did a create-your-own pizzza with veggies and non-dairy cheese (I believe they use Daiya). + +The pizza was good, but not amazing. I like a lot of Daiya on my pizza, so when I go again I'll definitely ask for extra. Also, I ordered spinach on my pizza and I felt that the spinach wasn't fully cooked, just a little wilted. I like my spinach fully cooked because I feel that adds more flavor, but that's a personal preference. + +Our drinks took a while to come out, and for what we ended up paying we didn't get a heck of a lot. I'll definitely be coming back soon and see if I can't get them to veganize one of their specialty pizzas.",review,Wn47EMhtvJQZTsfvvcnkJg,1,1,1 +4vz9I9b6bGEEuRGr3Ry5bA,2007-06-28,JAlqyPZ7z92RLQrYfHSFqQ,3,"Why review a fast food chain? For me, this particular Sonic is close to where I work. Because there aren't many options when pressed for time I'm able to walk or drive here and grab a quick bite to eat. Like most fast food chains it's about consistency, knowing what you're going to get and getting it quickly. That's what this Sonic location does well. Plus, who can pass up hot and crispy Tater Tots?? + +3 stars because, on principle, I think that's the most any fast food place can reasonably expect.",review,n1h87EmG_HBlp33v3X_QuA,2,1,1 +_FgyuDnyDCXmWBy03Tq8TQ,2009-10-24,Q72dd5Ej9PSRntnc7WfBig,4,"This is our new post-hockey game hangout. It helps that it is in the rink and that our usual server Rachel is prompt. It helps that she is cute also. We came the first time on one of it's first nights and it wasn't very busy. The manager let us play the virtual sports game. It has hockey, football, soccer, baseball, and golf. We played for free, but it is rather pricey to use. It was fun, but I don't think it would be worth using your dollars on. The bar is owned by the same people who own Overeasy in Phoenix. + +I have only had the Black Bean Burger so far, but I tell you what. It is f-ing good! It has tomato, lettuce, red onion, and avocado. I don't normally like avocado, but it's creaminess adds to it. It has just a little bit of spice too. It comes with fries that are good enough. + +The bar itself has cool interior and has lots of TVs around the place. The booths even have their own televisions. There is a large monitor at the front with a Wii hooked up. I strained my shoulder after last weeks game bowling and playing ping pong. + +So if you find yourself cheering on the Rubber Mallets, enjoying an ice skating session, or watching someone at a figure skating competition at the Alltel Ice Den, be sure to stop into 18 Degrees for a brew and a bite.",review,1ylYrKcGNA8MDkhNBTjHMA,5,4,2 +LzNJLEIo4gh-X_rmDkNkNg,2007-07-22,aYUKalPdxhJsa3FQJLUrNg,3,"This is a great place to have a casual meal. It's obviously a pub atmosphere but it's large enough to accommodate a lot of people without it getting crowded. They also have many well placed flat screen tvs. (I just wish they would turn on the closed captioning! Its one thing if you're watching a sporting event but when they have on an analysis show I want to hear the analysis!) My husband had the beer sampler and enjoyed most of the varieties, the Raj IPA was his favorite (the 8th Street Ale and Kiltlifter are the more popular ones). We had the soft pretzel appetizer which was ok, but I'm spoiled when it comes to pretzels having lived in Philly and lived on them for my entire college career. I wish it came with a honey mustard to dip in and not just regular spicy mustard. I had the French Dip which was solid - not the best I've had but still pretty good. My husband had the Tap Room Tenderloin sandwich that he enjoyed - the onion straws and bleu cheese were a nice touch. + +Now this is just stupid. (Saturday, 4/13) + +Ring ring ring. . . +""Hello, Four Peaks"" +""Hi, will you be showing the Red Sox/Yankees game?"" +""Yes, definitely."" +""Even though it's being blacked out?"" +""Blacked out?"" +""Yeah, Fox won't be showing the game because the Diamondbacks game is on at the same time. You're getting an east coast feed? From NY or Boston?"" +""Feed?"" +""Yeah, you know, you're getting the broadcast from the Fox affiliate in NY or Boston?"" +"". . .Um. . .we'll definitely be showing the game. . ."" +""Ok. . ."" + +Drive to Four Peaks +""Hello! Welcome to Four Peaks! Table for 2?"" +""Yeah, somewhere we can see the Sox/Yankees game."" +""Oh sorry, it's being blacked out"" +""What?! But I called 15 minutes ago and you said you were showing it!"" +""No sorry, that Diamondbacks game is on at the same time so we're not getting the Sox/Yankees game"" +""THAT'S WHAT I SAID ON THE PHONE AND YOU SAID YOU WERE SHOWING IT!"" +""Oh, well do you know who you talked to?"" +""It wasn't you?! I don't know! Some moron who said you'd be showing the game!"" + +You're not getting my business if you blatantly lie to me just to get me in the door.",review,qASPib1Z8ft8e96dtbh66w,3,3,1 +AvaV8EHR0m06uiNxikJabg,2010-01-14,4yHWOKXlunpH8u77WZRAQQ,1,"So the food at this place is good. Well the sliced turkey sud. But when it came to delivery and internet ordering. Oh my god the incompetence of these people. After and hour, 15 mins after the food was suppose to be delivered (the order was 2 turkey subs and garlic cheese bread.) I called and was told that there was no delivery guy and if i can come pick it up that they would knock off 25%. But the foods not ready yet, how long does it take to make 2 subs. So i pick up the goods and damned if i didn't check the bag they didn't give me the 2nd sub. Ugh they never checked the order. If you have online ordering you need to follow though. So with a second phone call and a second trip to the place and 2 hrs after the original order i FINALLY get home and eat. The only good thing i got was a free lunch. For that I give them a 1",review,qVxY6p2mvAqoCjAGQMyszQ,0,0,0 +2e4LeI46Mo9YF24RnnJadQ,2011-03-07,I61D8y6ae0rJdnAhK5RBhw,4,"This place is so damn tasty. I love a good burger and I recommend this place highly. I don't know why I didn't give it 5 stars.. 4.5? Ok, there we go. + +I ordered a mushroom Swiss burger and the thing literally melted in my mouth. You have to be careful cause you could literally inhale these things in a matter of seconds. They are that good! + +A big plus that his place has is that they sell fried pickles. I don't know of another small place like this that does. Veddddy goood. + +Thankfully this place is two blocks from my house, so easy access.. lol.",review,_4lqpCYCqOQzbB6xQGGhrQ,0,3,0 +V1nEpIRmEa1768oj_tuxeQ,2008-11-08,BW4EXlUnFF21xbDCgb_REQ,3,"Cibo is a really adorable place, but I can't say that I think it is extraordinary. The atmosphere and ambiance is totally five star, but too much goes wrong after that to give it an overall five star. + +Food stuff: I've been twice and both times I liked it, but it wasn't love. We got the bruscetta plate and I wasn't really thrilled. The traditional tomato one was the most solid choice, the bean one was strange and soggy and I don't eat pig so I can't comment on the third one (though everyone else seemed to enjoy it). The pizzas are pretty decent except that they lay out the toppings in a weird way, for example, if you order the vegetarian rosa pizza, if you like zucchini, it is all chopped up on two slices and so on. It doesn't really make sense to top a pizza in such a way, to me. I prefer draft beer over bottled beer, and all they offer is bottled. I did enjoy a couple glasses of the Rossi Cabernet Sauvignon which was a solid wine choice. + +Service: The host/ess was a pleasant person, and the time quoted was less than we actually had to wait so that rocked. While waiting, we attempted to get a drink. The bartender was cool about getting our drinks in a timely manner despite the fact that it was busy. Our actual server was super attentive at first and then lost for a good chunk of time as well. Too hit or miss. + +Cibo is an adorable spot with awesome ambiance but it isn't quite that awesome when it comes to food and service.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,5,7,2 +OXwKBaV74IM_VduC5OWV1g,2012-04-15,DBGg_mzoTi89VSqKE4MhiA,5,I love their beef sandwiches and thin crust pizza. It is just like being back in Chicago. Love it!,review,55RWJtlz_5NBl69UbT5U-A,0,0,0 +PlcCjELzSI3SqX7mPF5cCw,2011-03-08,j9c_Jcq6fY7kYK_x-bm5ow,4,In from out of town ..... Really glad we stopped here.... Excellent food nice atmosphere if I was planning to be in AZ more often I would bookmark this place.,review,YMsY5ZZQ5bmTp-c6fkPjmA,0,0,0 +GlfwqH2dY3MKxrRirKeueg,2007-02-06,lX4JnDlOi2bWWWhQVD_Stw,4,"I think Macaroni Grill is a great place to take the fam, little ones included. It's not so much a romantic date spot, but it's still a fun, lively place to have some good Italian food. + +For apps, they have a really good spinach and artichoke dip as well as some tasty mushroom raviolis. + +For lunch and dinner, they have tons of pasta, pizza, sandwiches and soups to choose from as well as a pretty good wine and beverage list. + +The kiddie menu isn't bad either and if I remember right, they give kids placemats to color on or something along those lines. + +If you go, promise me you will try the dessert ravioli! Yum yum yum!",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,0 +cTirJGp4NdxpbjzBovs8Fg,2011-08-19,z5DWuWiYaZYmzI0T-bi0eg,2,"This is tough, because I REALLY wanted to like this place! What killed it for me? The lack of professionalism that was presented when my fiance and I came to look at this venue. I will admit that we were 10 minutes late to our appointment, however I do not think this warrants being treated like a herd of cattle. + +First when I called the venue to make an appointment whoever picked up the line sounded as if they were in a rush and not even interested in making the appointment which was the first turn off. Upon arrival, we walked into another entrance thinking it was the main entrance, then we were re-directed by an employee to the adjacent door. As we walked out there was (I don't even remember her name), the wedding coordinator waiting. She quickly greeted us then had us sit down as she began to talk about the venue. + +Usually when you want to sell the venue you run, you'd think you would see someone with a little enthusiasm and fire explaining why their venue is so amazing. Well, we didn't get that from this individual. What did we get? A quick 10 minute spiel about what they do and the services provided and 3 wedding books shoved in our faces as examples then a quick 10 minute tour of the place. That's it, no effort, no emotion, no interest in wanting to get to 'know us' and get a feel for what kind of wedding we would like to have, just a quick, here is the place, goodbye. She was very snooty and acted as if she was not in the mood to showcase the venue. + +So why two stars instead of zero? One star is for the venue itself. It is very chic, modern, yet elegant. The reception area is beautifully decorated and where the ceremony is held is beautiful as well! There are many ways one can decorate this place! The other star is the PRICE. This venue offers all inclusive packages at unbeatable prices. I mean an all inclusive package where they provide virtually everything for roughly 100 guests is $9495.00 taxes and gratuity included!!! That's a steal, trust me, I've looked into a TON of venues, you will not find an all inclusive price as cheap as this. + +Honestly, if my fiance and I were the only individuals funding our wedding, then we probably would have considered this place (more than likely, VEGAS). However, given the type of customer service that was displayed, we took our business elsewhere.",review,zJlzNkIngaIV_crtUKdykQ,1,4,0 +JhupPnWfNlMJivnWB5druA,2008-04-26,N2sImKomBF0sMzqJkzS2TA,3,"The food is moderately priced and good, but the drinks are outrageously Scottsdale expensive. I'll admit that they key lime martini was very delicious. The Hell's Fire chips and Asian shrimp were perfect, and I would definitely recommend the food. The lighting, more like a glow than a light, was quite awesome. Service was pretty slow but professional. The dj was great! No one was wearing jeans, but there was a mixed crowd of some people in their 40's and many in their late 20's or early 30's.",review,jKeaOrPyJ-dI9SNeVqrbww,0,0,0 +cp39VURFby4A6u9m2It8jg,2010-05-27,dBMYtMMYNLbD8ZYO61P6VQ,5,"Zin, zin, zin - Yes, yes, yes! +Several weeks ago five of us had a wonderful Monday evening at Zinburger with our delightful server, Candace. I arrived early, inquiring about the Left handed Polestar Pilsner, Candace offered a sample, very tasty - with three of my party eventually having it with dinner. +We had a great booth - giving us a vantage point, watching the parade of customers & employees. I really like the airy, roomy, high energy vibe. +With our drinks we had the delicious zucchini fires with two sauces an +a subtle breading on the zucchini. +We all tried different burgers, with some of us tasting each others, Candace made the split arrangements prior to serving us - nice touch. The meat is flavorful, melting in your mouth with a freshly baked bun. +Fun, cool atmosphere & great food - made for a great get away, early in the week. +My hats off to the Sam Fox team, another winner at ZinBurger.",review,ToIcMshsBV7T63EAq59Sog,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2012-05-08,kDnLIrb1EFeX8txcDFDT3Q,5,"Visited the restaurant tonight and was very pleased. I found the decor charming and elegant. The atmosphere is amazing sans the hustle and bustle of most of the local chain like restaurants. The place was devoid of the stereotypical Scottsdale element we prefer to avoid. I found the prices easily justifiable in fact I though them quite reasonable. We had the three onion tart appetizer, which was spectacular. For entrees we had salmon, filet, and a pair of lamb shanks. Everything was wonderful. The presentation was clean and the freshness and quality of the proteins, produce and accoutrement's was immediately evident. Everything was cooked skillfully. Had three of the four desserts on the menu. The chocolate raspberry tart definitely stood out followed closely by the berry tart. Delicately prepared and presented these were really an unexpected treat. The environment is wonderful for Dining and chatting with people you actually like. The interior is intimate and it lends itself well to the cuisine. I found the staff courteous, knowledgeable and professional. We will be frequenting often and I encourage others to visit.",review,4-HMi76m6TpJrZ0G-xL1CA,0,1,0 +gfhO1Q1c7QCigu7waVpeSg,2012-07-23,PbGQFM-Y4kSbu5l2qllUTA,3,"This place is a hoot! A friend wanted to go to a movie that had been out for a while and it turned out that it was only still playing at this theater and one other. + +This is typically a $3 theater, we happened to go on a Tuesday and it turns out they have $2 Tuesday so it was even cheaper. You definitely get what you pay for...this theater has been around for a while but it's a great deal compared to the average movie gong cost. The concessions are also reasonable cost. Not the most comfortable seats in the world but you get what you pay for. + +The reason this place is a hoot? There are crazy decorations, life size figurines, games, etc, everywhere. I am sure I only really saw about a third of the decorations because it is just sensory overload. I hear they really deck it out at Christmas. + +So if you are looking for an affordable movie night and don't mind the seats from 20+ years ago this is a good option.",review,ZUx-B52hGRhmeUDVukmjrg,1,1,0 +r_0k2yqAo1Z4tg_IgXr7Jg,2009-06-09,J_IZEMQ-ZCxelJcL-8fVTQ,4,"I ate so many samples, I downsized my order! Some selections are a little too sweet for me, but others--giarduia, vanilla, pistachio, that dark chocolate stuff--are really good! We rode our bikes there at night. Made up for the calories. You've gotta have a little wholesome, yummy sweetness in life now and then. OK, it's not Anderson's Frozen Custard, but it's fine for Chandler.",review,zlprnJhxUBgAYorZ_ZGyqg,1,1,0 +PZv6SPORD9ivj4jwKvGgjQ,2011-01-06,eVct1WGgYVRPPewEsOir3A,5,"This place has amazing pizza and great service. I've been 3 times and have not been disappointed. We've come for mostly group events such as bdays and going away parties, and you can do family style and share or get individual portions. Bruschetta and breadsticks are great starters, and I love the signature spinach pizza. Our waitress suggested getting it crispy to avoid getting soggy spinach and I'm glad I took the suggestion! Coworkers got Chicago style calzone with au jus and raved about it. Since there was a bday they comped a canoli and gave us an extra one for being cool :) pitchers are also half off on Thursday's so 7 bucks for 4+ glasses worth of fat tire made us all extremely happy!",review,cHoC_bpAfmsgdRhe04A3lw,0,0,0 +3HciJAVduCRoPDdzgh7cAA,2010-06-18,L8hufI699HT9ZgbbLR1sYA,1,"The staff of this ""establishment"" are some of the rudest, most condescending individuals I have ever met in my life. They will not give you ANY money, and you will have much better luck at Sunset Clothing Exchange, which is right up the street (Plus they actually have friendly staff). The people who are buying the clothes should not be buyers; judging from the way that they style themselves, they know nothing about fashion whatsoever. Everyone who has stated that you will not get any money from them for designer items is right... they would much rather have trite, ""trendy"" studded vests from Target than a pair of Miu Miu sunglasses. + +I was there about a year ago, and one of their young female employees was laughing, snarking and making faces at me. I had no idea who she was. It got to the point where my friend actually pulled her aside and said something. Today, their manager called me something that I can't even print on here. I had never seen him in my life, either. I have never done anything to these people except for sell my clothes to them. + +Avoid this place at all cost, they should change the name to Juggalo Exchange.",review,QK1UbfpA1VSjnxNSgyWb0g,3,3,3 +-bd26a1QEEpqUZjBmtBUiQ,2008-07-11,45GHPeibqVByT74CGH560Q,5,"Simply the best Ethiopian I've ever had. Grew up in VA with DC as my stompin grounds (home of a large Ethiopian population) and even had a good amount of Ethiopian home-cooked meals by friends and none was as good as this place. + +I go to AZ once a year for work and each time I am sure to stop in. I usually get the veggie or meat-lovers meals since they tend to be such a good bargain, but have also ordered separate items as well. + +The vibe is casual and the service is excellent. The staff have always been very friendly --- another reason I keep going back.",review,iBn8GUVgKHPQ42lIkSk5Aw,3,2,0 +TfTlOE6h9E9o34dEkw9L_w,2008-01-06,tjqfVRjQ9kE1p_JykZXlqA,3,"I'm somewhere in between three and four stars. And, I know there are Yelp ""Talk"" events taking place right this very second as I sit to type my review, and it is for this reason I appreciate what anonymity I have so I won't be egged as I walk out my door in the morning. And, it is possible that I expected something earth shattering within the vicinity of so much greatness (read: Pizzeria Bianco) + +First of all - I had to approach the bar for service, refills and a check. Granted there was one guy running the place at 3:30 in the afternoon, but my friends and I were three of five people at the entire property. They weren't busy. + +We sat out on the patio and watched all the folks across the walkway start to congregate outside Pizzeria Bianco in the rain. It was an unbelievable an hour and a half prior to opening, they have at least two seatings of Guests waiting in the rain - I swear there's got to be something addictive in that crust. I love Bianco, I do, but I am also (sometimes) very logical. Show up at 5 p.m., go find a great patio table at the Rose and Crown, or Bar Bianco and have some wine for a couple of hours prior to dinner - don't stand in the rain for an hour and a half! + +But, I digress...we're discussing the Rose and the Crown. Okay. Cute, compartmentalized rooms, yes. Homey feel, yes. Good selection of beer, yes. Good wine, no. Well made cocktails, yes. Menu, eh, okay. Service, eh, poor to okay. Patio seats, rocking good! The trees changing colors, yellow leaves everywhere, perfect. People watching, phenomenal. Fish and Chips, pretty good. The friends I shared the experience with, too good to be true!",review,CJkY0WOCNfCuv0HAbB2cjw,2,1,1 +2JZv-P1lDKOPKvefQlYDEQ,2011-10-09,cYY46r2RQfXaVilTb57QwQ,3,"Very run-of-the-mill, solid, nothing-exciting-or-surprising type of place. It's the kind of restaurant that's not your first choice, but when all your other options are closed, or too far, or too crowded, you come to Village Tavern and you end up not being disappointed. + +I was there today and had the $3 mimosas with the crab-cakes benedict. The potatoes that accompany the eggs are way too mealy, but the eggs themselves and the sauce are spot-on. Wished the crab-cake had a bit more flavor. + +Bread service is by request only, which I really like. + +Our hostess and our server were polite and efficient. + +Overall, a good place to bring mom and dad to on a lazy Sunday afternoon.",review,phcbQqoiRrjld9hoFUzU9Q,1,0,0 +3n9mSKySEv3G03YjcU-YOQ,2012-06-15,DQqvAXdREMvT9ghVXwSobg,5,"Very impressed! $5 pitcher until 5pm, and excellent healthy food at a good value. Free valet parking. I look forward to coming back.",review,uvx_mL5S4MlOf2Oq5owltg,0,1,0 +nY2QBNMEfT3j68j-DHOGyg,2011-01-31,pAKqvizzCjpfj8OXOL64UQ,5,"This is what I've come to expect from Waffle House. Great food with excellent customer service. My new home store since the one two blocks from my house is run by a cranky, sarcastic non-clean district manager (Kyle I was told is his name)",review,w1R5lmPnximZas0T2DBH1A,0,1,0 +pwpl-rxwNRQdgqFz_-qMPg,2011-03-01,Ss_xpXlEBJCfJvcVAQXGvw,4,"I've been twice now. When it first opened and then went a long time before going back. I was impressed both times. +They're busy but not too busy that you can't get a table. +This las time was for lunch. We sat outside by the fireplace. That made for nice ambiance cause it was a bit nippy outside. +The server was pleasant and attentive. The food was so, so good. We had 2 cheeses for an appetizer and split a large salad. It was plenty of food for 2 and only spen $20.00. +The salad was not just ""a salad"". It was special :) Roasted sweetened pecans, chicken, PEARS!!! It was delish.",review,l_gYq9wGIHzihot_AmqeIQ,0,1,0 +WPSM_oTPceoSnwqQWfAsdg,2010-09-22,SGJwQVGj3oKvVZuEjWmMww,3,"The ever evolving menu changes again, But a coupon made it a decent buy. + +I will admit my co workers 2 for 1 coupon is why we went in. This means ~3.25 per burrito vs the usual $6 range. + +What I didn't like was that my vegetarian burrito did not have vegetables in it, it was just a bean and rice burrito with guacamole. I don't know how one gets the grilled veggies in their burrito but it is not by ordering a vegetarian burrito. + +The drink and napkin station here has always been a bottleneck, getting a refill or more napkins is nearly impossible. + +I do like the fact there there is Choula sauce in addition to the red and green tobascos. And I also like that the chairs are not nearly as bad as those at chipotle. + +The best tip this time is get in before 12, otherwise be prepared for a long long line.",review,M6oU3OBf_E6gqlfkLGlStQ,1,2,1 +no_FXjscklz1SEzM_XnVgw,2009-09-08,x7azs1q-sKDK1oneUgc30Q,5,"This place is absolute perfection. From the setting to the service to the food, I loved every moment of it. The only way I found out about this place was through Yelp. You seriously are my trusty sidekick. From the previous reviews I was a little worried that it might be packed, but then I remembered it was a Monday night so no worries. +Walking in the restaurant, it is quite small, but just absolutely adorable. It really does feel like an upscale country home. Wood lines the whole restaurant and they have mini chandeliers hanging over every table. Even the touches of place setting are just perfect. +Our server was Gina and she was a complete sweetheart. We started off with the Bohemian Sidecar and the Cucumber Vesper. Both were absolutely delightful! Then we moved on to appetizers, because while getting drunk is fun, I was really excited for the food. We had the steak tartare and mussels in the saffron and white wine sauce. I loved the steak tartare with the potato chips and fried egg on top. Put fried egg on top of anything and I'm sold. Put fried egg on top of raw steak and I'm in love! The mussels came out just as we were finishing up the steak tartare, perfect timing! The mussels were equally amazing if not more, and I am so sad that they only give one piece of bread! Well that, along with the bread and butter. But that still wasn't enough for me! I wanted to soak up all of that saffron sauce goodness! +After Gina cleared that out of our way, she brought out the glass of Bordeaux and Rhone blend. I hate when I don't have a drink in front of me, and she made sure that never happened. Then the entrees came. The pork shoulder with the bacon for my bf, and the stuffed chicken with the pome puree and mushrooms for me. Again, absolute perfection on both accounts! I loved the mushrooms that were slightly charred and crispy, with the sauce and the puree and the chicken with goat cheese. I'm getting hungry again just writing about it. My bf loved his, but I still maintain that mine was better. And both of these entrees were incredibly reasonably priced at $15 and $17. Could life get any better? +Well apparently it could! After we polished off our entrees, then came dessert and after dinner drinks! We had the souffle which was amazing with the creme anglaise. And the berries with the creme fraiche. Heaven in my mouth! We finished that off with the chocolate martini and the pear tini. +This review cannot do this place justice. This is truly a unique experience that is far above any of the restaurants in Scottsdale. Please go in and experience this for yourself, you will not be disappointed!",review,Lp_Ykqfbv5Q-oyGYlMGJRg,3,4,3 +3M_I_L68pt68TgZ7k7RXjg,2012-08-14,et-pH8B6AF7Suj1PDwbt3Q,5,"Amazing work! + +My dentist referred me to this place just down the street from her. I was super scared, as I always am at the dentist, but the staff made me feel very comfortable. They treated me like a patient at the hospital. They were my angel nurses. + +When Dr Amin came in, the ""nurse"" was holding my hand and telling me when to breathe. I was, of course, shaking like a leaf. The Dr ""popped"" me three times in the cheek, and I was all numb. When I say ""popped"", I mean it was an electric shock wave pop flowing through my face to my freaking eyeball that made me tear up a little. (this was done by the needle of course going into my cheek) It was the craziest feeling, but relieving at the same time. I just breathed through it, and it helped. After about a min, the Dr was working his magic. In about 45 mins, he was all done, and I had like 4 canals. And I didn't feel a thing!! :) + +I was very pleased with the staff, Dr Amin, and the work they did. I highly recommend this place if you need a root canal done. Plus if you're a scardy cat like me, this place makes you feel comfortable.",review,S-07w5CJfDmEBTNZ9V-ycw,4,4,4 +X5QTGpPfqXFtmtizsGAksw,2010-03-05,lkM2gpP8VBl10wmpPeE7pQ,5,"Just off University, but manages to feel like a little hide-away, and pulls off an enticing mellow atmosphere, suitable for intimate conversation. + +Fish Tacos and a Margarita again please! How many times before I can force myself to experiment?",review,baqx7ZJ3GHt47I6dnLmPrA,0,0,0 +KJr8lTqqStOpFzT8XD97gQ,2010-05-19,se1d6FOlldXb1LpZw15GTg,4,"-Biggest Joann's store + +-Great fabric selection + +-Clean store, good layout (different from other Joann stores) + +-Convenient location (parking is not too bad). + +-Employees are friendly. + +-Restrooms are blah and smell.",review,CCHwJoIWLRhxqIcwRJW6ag,0,1,1 +7xbTnoyaai4JTkZ8rFPQTA,2010-07-05,pDJ8M2pM3F5OgjAZSkD8Dw,4,"One of my fave spots when I'm hitting up the late night in Scottsdale. And yes, the Old Town location is SO much better than the one in North Scottsdale. + +Get there early for 2-for-1 martinis - they have a ton to choose from, if you're a frilly martini drinker - but also make a mean dirty martini with olives, which is my own personal indulgence. + +Multiple rooms for multiple scenes - a dance floor, a more chill bar room and an outdoor loungey space - so whatever you're looking for you can find it here. Just make sure you've got cab cash to get home - three of these martinis can definitely get the best of you!",review,npkwGaYHQIFj_pl_qjnX6w,0,1,0 +3N__CAwM5VZOhRKmxMtImw,2011-07-25,HqlAA6nGo6dVrlNpLC9Vng,3,"This place is cute, affordable, clean, and tasty. I would recommend this place for a quick lunch since the service is fairly quick and has a simple menu. Or you can bring your date here for a cute dinner date. The place is a fairly quiet place, and the lighting is very nice.",review,iLQzLLo9q_Zx6FpgmVgA-w,0,0,0 +sNuyncpQdcvfEpfZS-3Yew,2008-07-05,KgaUQGbIB6kJWmY8YXHCYQ,4,"This is a nice asian take-out style restaurant (you can order and sit down too). The portions are pretty big, and they have a good selection. WAAAAAAY better than Pei Wei which is in the same shopping center. + +The only downside is their breading is a little heavy, but other than that I have enjoyed everything I have tried there.",review,08fQ03TquEkERny-5YcYCg,0,3,0 +boxO5rTwArJqyjOQyBYxcg,2012-03-16,17uNXHilhHcuHlYIpLIBaA,4,"My sister in law and her fiance took us to Jimmy Johns after discovering it. The location is really convenient to us, which is great. + +I enjoyed my sandwich. The branding is a little intense. EVERYTHING, right down to the chips, is branded with the Jimmy John's logo. It's all good but it's a little crazy. + +The sandwiches are big and the cookies they sell by the register are huge! Prices don't seem too bad either. A nice sandwich stop.",review,Qz_WQ6blpBBSaEwsofbB_w,0,0,0 +wNUea3IXZWD63bbOQaOH-g,2010-03-23,3r2JNzbUylH8-LTfaQe_bw,4,"Finally Biltmore gets a sushi place after the departure of Ayako! Well if you have been to Stingray in Old Town Scottsdale, this is same menu, etc. But I happened to like the atmosphere at this location better! +Came here for a happy hour, had a drink called the Tokyo Tease(delish!) and since I love sashimi sushi (which isn`t on the happy hour menu, no big deal), ordered my sashimi combo, which didn`t disappoint!! Included tuna, salmon and yellowtail. Did enjoy the bevy of assorted rolls that went by. I like the outside/inside seating bar- great on beautiful weather days! I will be back for more!!",review,EAJjMgKIjiaVb_2Q9ROeCQ,1,1,0 +zsApK-QhjBm2mTqq4VWYPQ,2008-07-26,QVnQR2FQ26qUpd2EBKKeww,5,"This place is great! Just opened up on central just south of camelback on the west side of the road. +...AMAZING gelato and the coffee is just what I need! Family owned, really friendly staff, free wifi, flat screen tvs,....also just saw a flier for a monday movie night...I guess they are gonna have double features on mondays...even made a specialty drink for the night....sounds like fun! + +...cool little spot, dont hesitate to check this place out!",review,UClt23BswTNFAfs-_yq0BQ,1,1,0 +WNy1uzcmm_UHmTyR--o5IA,2008-12-26,AU1oha0Z1rAYNZzF8RtLeQ,5,"Really? Because it doesn't get any better than this. For what it is and for what it's worth this place is truly unique. A slight step up from a hole in the wall type of place, this quaint spot serves up good, tasty, and satisfying food hot from the kitchen. + +What is a pasty? + +A pasty's history can be associated with the tin miners in England. The story goes that these miners were covered head to toe in dust and other nasty stuff and would eat these calzone like dishes as a means to have nourishment without the need to return to the surface. Supposedly, the miners were able to eat the pastry like food by holding onto the ""handles"" and when done, discard the tainted remains into the mine thereby appeasing the spirits that haunted the mines. + +At the Cornish Pasty Co. I can first hand recommend the Chicken Pesto. Very good flavoring and filling. Or you can go with the more traditional route with beef, potatoes, and swede. The sauces that come with your pasty are there to accent the flavors and are highly recommend to try as well. + +Pros +* Good food +* Originality +* Portions +* Customer service +* Coat hooks at the bar + +Cons +* Small interior",review,7WO1DSyx-0FP0cBkaCISAA,2,2,1 +eXSkr4GNwFkKJF0gNnqO7Q,2007-07-13,pVotArwt147sjzy8hww66A,5,"Coming from a French family on my mom's side it is ingrained in my genes to love cooking, food, and shops like Sur La Table...oh and also wine and cheese...what a tough life I live! + +Sur La Table is a classy cooking shop which offers high end cooking ware, appliances, and also dishes. Somethings in the store can be pricey, but you can also find good deals as well. They offer many cooking things you wouldn't find at your average Crate and Barrel for more complicated cooking endeavors. I have also found some cute cookie cutters here for my mom's collection. The staff was all very helpful and knowledgeable. and many Sur La Table's now offer cooking classes!",review,PS0lCxjGNeUrKxYSdpW-Aw,1,1,0 +6yuY73ycyyPiIG3zWkXqPQ,2009-10-25,d1AMVlPkP3iMIgRS0l0dMQ,4,"Most of my excitement and ""love"" of this place has more to do with what it represents -- not what it is right at this second, but I fully expect that to get better. TFM representing a place in Central Tempe to get basic groceries (all the better that they're local and organic!) without needing access to a car. +When I looked up the location, I felt heartsick at the thought that this is right across the street from where the Co-Op used to be. What's there now? An empty dirt lot. The Co-Op was driven out by an over zealous real estate company that, in the boom of condo building, bought the location, driving Co-Op to another spot where it eventually failed. Know what else failed? That condo endeavor. Now, a few years later, we have this budding marketplace with a lot to live up to. +My first trip in, I didn't have anything particular I needed, I just wanted to check things out (though I was making enchiladas later that day, so had a few items I was on the look-out for). +It's pretty small right now, and in the former building of Jake's Shop, which is also another Tempe staple now gone. But it had the basics such as milk, peanut butter, a small selection of produce -- local, of course -- cheese and even some gift-type items for sale in the back. +I picked up some green onions (99 cents for a bunch) and red peppers ($1.29/ea), and thought those prices were exact with a chain grocery. And bread - this is my favorite part of the store! A big selection of sliced wheats and grains, and rolls and longer Ciabatta styles too. And the favorite of my favorite? Fresh ""Made this morning!"" tortillas! They looked delicious, and were HUGE. The size of a large pizza, they came in flavored varieties for making yummy wraps. +When I checked out ($5 minimum for credit card purchases, and a sign said ""EBT coming soon""), I was offered another red pepper from a basket by the register because this small batch was about to go bad. So instead of letting them and then throwing them away, they *give* them away with each purchase - wonderful! +Oh, and I was surprised and pleased to see a small corner of the store set up with a couple small tables and a couch, all within view of a large flat screen playing Alice in Wonderland. Sure enough, a kid sat there, out of the way and quiet, while is parents shopped. Both parents and the childless thank the owners for THAT kid haven, I'm sure. +I really look forward to coming in again and again and watching this place grow and thrive. + +p.s. I highly recommend becoming a fan of their FB page, so you can get daily info about what they just got in, specials, new additions, etc.",review,7GC9fVWKa4a1ZmBGLH6Uww,2,3,0 +ix0DXMpqXzT1JBDfeYuvEA,2010-01-31,t1uMbzK-n1Pm7vvoRH_3Zg,3,"Why do people love this place? MommaKat insisted on snacking here after a hard day of shopping, and I am not impressed. AT ALL. + +I had to coerce the boy behind the counter to make a salad my way, not the normal recipe. It was like pulling teeth.. no seriously, no cheese. and I want this dressing not that dressing. + +We stood in line for over 20 minutes at 4pm on a Saturday. There were 2 couples in front of us. LAME. + +There were no forks, and the cashier forgot to give me my brownie, and i thought he was going to have a conniption when I asked twice. + +Bathrooms were very nice and clean though. Outdoor seating is very limited. + +Lame excuse for a panera-",review,s9P8JRH74CzfFSjJkEfNtg,1,1,1 +jbKVbSz51F8IcewsiRQu4A,2008-07-21,ddQXjoXAb7k1aQ6RmC5A2g,4,"For those who gave this place low marks, forgive me. I really like this place. Now I haven't tried various dim sum places so I'm reserving the right to downgrade the place as needed. The variety of food is plentiful, and the carts just keep on coming. I love the steamed pork buns, and the shiu mai (not sure if I spelled that correctly). Yesterday, my favorite pick was the deep fried rolls of taro and shrimp. YUM! I have never ordered from their menu so I can only talk about their dim sum. My friends and I try to go eat dim sum almost every Sunday. It's a cheap way to try new foods, and if you don't like it, well.. you can get away with pushing it aside with minimal guilt. Give it a try! You might be surprised.",review,4UUIpbOTPmu43wuC2aSGkg,3,4,2 +v6zRA0WqOODJjmpvstrpGQ,2011-06-16,PINoAXjJQpl3yobdDzy0Vg,3,Today I went in for lunch and it seems the quality actually has gone down a bit it is still good pizza but the salad was a bit smaller and pizza just didn't have the same flavor. You don't get that wood fired smoke taste which you would crave at a wood fired place. I'll go back maybe today was a bad day as usually I like this place a lot.,review,Iycf9KNRhxvR187Qu2zZHg,0,0,0 +qiFTZ7aJz-FXt1wz8YigAA,2011-07-06,rXKpkODuqrS6h9fUBseezQ,5,"These guys have the tacos and nachos thing figured out. Great decor and hot, hot waitresses. + +We had lunch and it was pretty quiet. Good service. I'm sure things get crazy at night, though!",review,a4LJJU26cSE7k12-0sEw0Q,0,1,0 +GbEOmf5k73r_UJWjchrHOg,2012-09-06,PZ2PuMGQaJl8bGA_IAGPsA,4,Grilled tofu sandwich was pretty good. Quiant little cafe with a lot of vegetarian options. :),review,rKMJaCa-hUjeZDXEa6rKMg,1,1,0 +bEQjf7c-9qkNWgXvriSGZw,2011-02-06,y1953NJN-bDDbfTA9HYdIw,5,"Truly a hiden gem in Chandler. Located south of Chandler Boulevard, just off of Roosevelt (next to Archery HeadQuarters). Wanda's is a small yet quaint, twelve tables inside and 5 outside. Outside is for sure seasonal, as summers are too hot and dead of winter can be too cold. Wait times on a Sunday or Saturday can be 10-15 minutes during the ""rush times"", which is a quarter the wait time you would experiece at the near-by chains. The menu offers a variety to satisfy and hunger (except if you want lunch on weekends, it's breakfast all day, lunch from 11-2 during the week). The burritos are awesome. Ladies, I guarantee you will take half home! My husband likes the Biscuits and Gravy. The bacon is amazing and addicting often I have to smack my families hands away from grooping a piece. French toast, cinnamon raisin french toast and pancakes if you brought your sweet tooth =) Build your omeltes are good too (tip, add a side of salsa, you won't be sorry, it is made fresh daily and goes perfect with a ham and cheese omelete). Service is exceptionally friendly, a lot of regulars and the servers know what you usually drink and sometimes can have your order written unless you throw a curve ball and veer from your usual. +A+ Wanda!",review,FcRfAHSQkWZNcc6tpuhoFg,0,0,0 +sZAzeccYUVPjlkrlMooV-g,2010-01-09,UKYgzyt7npM2N0M15580Jg,5,"I have been coming here since discovering them after their opening week last year and I haven't stopped coming back. The food is predominantly Filipino; the Filipino-Mexican fusion comes in the burritos, flautas and quesadillas filled with Filipino meat dishes. A great starter would be the Chicken Adobo burrito. Karey's does it right by not dumping rice and fillings inside the burrito; they're served on the side. + +For those more interested in rice plates and combinations, Karey's serves daily prepared dishes such as Pork Adobo and Chicken Adobo (pork or chicken simmered in garlic and soy vinaigrette) and Beef Mechado (a type of stew with beef chunks, potatoes, and onions in a light tomato gravy) with either white rice or Garlic Fried Rice (yummy). There are also specials that rotate each day, which can be checked out on their Twitter account. This is a great idea as one can find out when they are serving Lechon (roasted pig)! Yum! + +There are dishes that can be prepared fresh but are not part of the combination specials. The ones I've tried that I highly recommend are their Lumpia (fried eggrolls in chicken, beef, or vegetable) and Pancit Canton (stir-fried noodles with vegetables). The pork lumpia was great when they used to serve it, and I preferred it to the beef lumpia that they serve now...but it's still good ;) + +Not only is the food delicious but the warmth of the staff is something to always look forward to. Karen and Rey make you feel truly at home. The best thing about Karey's Kitchen is having a Filipino restaurant in Phoenix and not having to drive all the way to the East or West Valley!",review,rkgPZ6z27v0DxYMZo5haKg,5,5,3 +qwhBg6QpRgL6GgdMB8wpjQ,2012-12-18,I_MAX3SfLIGoMF4__-mMKw,4,Check engine light came on in Wikieup late on Friday night. One of my family members has had work done here before and recommended them. They got me in on short notice and stayed late to finish the job. Was reasonably priced too.,review,p1FB2z28hWKYU5dCJJQpIQ,0,0,1 +ZoQAOnEFnyHjSpomtfqesA,2008-11-10,SFh6DmbyGGCbHrsVTd-kLA,3,"I love supporting such local businesses in my neighborhood- and you should too! If I worked in the area, it would be in my lunch rotation. + +The customer service here rocks- it appears as if they actually care if you enjoy the food you have ordered. I appreciate this and think they deserve a huge kudos on that one. The hours are pretty ridiculous- they close at 5 on weekdays and are open from 10:30-3:30 on Saturday's. + +I've had the Route 66 (Buffalo chicken) and the Ringo Starr and have enjoyed them, but it wasn't true love. Don't get me wrong, fair choices but no real excitement. The Sirachi chili sauce helps out- but I love that stuff. + +A solid choice, although not mind blowing in any stretch of imagination.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,3,3,2 +0dORc6ckZw5HezR3BuSsqw,2011-10-08,HUWF0S8zxEG9L4ilr3snwg,4,"Feels a lot like That's a Wrap (which used to be in this location). I love the overhead door; I love fresh air. Lots of seating and a bike rack (that doesn't really properly serve a lot of bikes, honestly). + +Food was very, very fresh. I expected (per norm in most places) corners to be cut where not noticeable (see: frying something often masks it's lack of freshness) - corners were not cut. The three things ordered were all well prepared, fresh and delicious. The things I oversaw on other tables were also looking mighty tasty. + +I'd love to see a few bottles of craft beer here - that's my personal opinion. Part of the issue is local laws, the other part is those running the show. + +Will return, for sure.",review,hVkQbDk61hmIi5iVm3IkZw,1,1,1 +DmkTDze8ruJr6o2f5GAvJA,2010-10-13,W5AZ0Tl2nzZda34ZufD9ag,5,"Sundae for Sunday. + +Pink spot helps me go through the summer heat.",review,2uz3B-11DieFlELzqUCAlw,0,0,0 +Tt6DYs0TyERWHWW5xiRL_A,2012-05-07,HBOsKHMxqvJwWc_ITHmObw,5,"This place has a top notch tuna tataki app! Great rolls out quick regardless of how busy they are. Excellent service all the way around and very reasonable on price. Green tea ice cream for after dinner treat, I think so!!!! I forgot to mention I was in and out during lunch time spending 20 dollars.",review,J6ak2UPmjxpt3RFR1NT2TA,0,1,0 +asebFFgabg_lfoNpGJHZlQ,2009-06-07,WDPzijEd9mctEVIW55DyMw,4,"Went to a party where they had Stacy's cater it. So good-- it was the BBQ beef, BBQ pork and BBQ chicken. All of them were fantastic but I enjoyed the pork best, which is odd b/c I am not typically a fan of pork. + +Anyhow, it was all perfectly moist, well seasoned and was a big hit at the party. + +I would order from them for catering and I need to stop into the actual restaurant sometime to try the other items on the menu.",review,XBHJCDzNh--mBhJkzyM_iA,2,2,0 +mxrXVZWc6PWk81gvOVNOUw,2012-11-27,mxRy3Hf9xpNxgwMqHWHJUg,2,"i think reviews for this place are based on happy hour experiences. the food was SHOCKINGLY hot and fast out the kitchen. methinks there's some heavy microwave usage going on. the interior of the restaurant is and dark and fancy, but the food is mediocre and overpriced. in fact, the roaring fork became both a barometer and a joke for the remainder of our visit in scottsdale. + +if you want an equally priced meal with amazing food, yelp something else closer to oldtown (might i suggest something from the Baratin/FnB empire)?",review,d9DsbPMNod0rScSQQxwJIQ,0,0,0 +8kunNClZ1AD0Rj5bDiFdrQ,2011-03-29,GJMOXc16S9Yxo8VVHycqaw,4,"As a mom of two, Jason's Deli is awesome. +The ingredients are fresh and healthy, and the kid's meals are huge and priced right. For my young kids (4 and 2), one meal is enough for them to share. For bigger kids, it seems they could be eating off the kid's meal longer than at some places. +Add speedy delivery of food and free self-serve ice cream at the end, and this is one happy mom!",review,0gMAvqyMl5b4oWqq1HokaA,1,1,1 +4xofmDvGh2aD8Lgd0PH8GQ,2008-05-25,pgSa_swO38T9xbV70BbWrQ,3,"Earl's is Earl's - not great - not bad. If you're in the neighborhood and don't have anywhere else to go, go to Earl's. By far there are better choices, but Earl's will do when you're in a pinch. + +Typical bar food with no particular edge to make it memorable. + +The staff is very friendly and the service is very good. + +Just average, not memorable.",review,Sa64rQmghfE9i17_dRIDyw,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-12-13,4VOh5eguD9aLB-BoX16OWw,5,"Half the fun is the wait.....If you are going to go, you may as well get into it. We get into it, at their Italian place next door and drink tons of wine. L and I later that night had a hot kiss and she lost her precious earrings. I even drove back the next day to look for them somewhere against the wall. Just kissing, but hot, if you lose earrings. + +We went twice once alone, and the 2nd time with her sons and friends. We ordered every pizza imaginable. It seems almost every high end pizza now, is brick oven and more about the crust. I like everyone else will mention, I am from the East Coast and know pizza. Best in the United States, we have several that are at that level. You can flip a coin on which one is better.",review,qaKzkFaZtqWIXCGQ-GStQw,0,0,1 +znmvCpcwxYk_kYCqtUFt5Q,2012-02-02,6GA9ufLKgGSFqU6MsQaqlA,4,"Consistent. Fresh Mint offers a very consistent product. + +This is a vegetarian restaurant with a Kosher designationl. The menu is Asian, with traditional dishes served with tofu or just veggies. The tofu is flavored/shaped as with it's more traditional dish (i.e. Kung Poa has chicken-flavored tofu, Beef dishes taste more like beef). Personally, I prefer plain tofu over flavored and they will substitute to your taste. Also, for GF'ers, they do have some dishes that are GF (no soy sauce--such as curries). No upcharges for any subs or even brown rice... + +At lunch, hardly a seat is available. It's nice to see that this is more crowded than the fast food joint that is closer to the street. A slight tention can be felt for the business of the staff; however, this restaurant is consistant every time...it's worth trying folks.",review,hduuRwJpz8gukqbFC26rcA,0,0,0 +tyETqrYijm3cY4noCwl9Ww,2010-02-18,N0C8-h1iVfooA855Y71ZWQ,4,"Fantastic, order anything off the menu and you will be pleasantly surprised. Best gyro I've ever had hands down and the falafel is equally amazing. Owner paid special attention to my boyfriend and I and made sure we were happy with everything. Only downside is that they close for a couple hours during the day before dinner time (I believe its 2:30 to 5:30 or something like that) so I can't eat their delicious food whenever I want, haha, keep on doing what you're doing Sahara.",review,-2XA34d6OGYEUuzqC7yhBg,0,1,0 +YJoph5UiUZ3BEb49vyFAuQ,2011-01-04,AzdMdNssldGFjALwpojcyg,2,"Bleh. + +I have been anxiously awaiting the opening of this spot, since I frequent the other spots on the same corner. I had some pretty high hopes that this might end up rivaling Postino's or Bomberos... or well... something other than a drive-thru. + +I ordered the daily flatbread pizza. It was a Chicken Teriyaki with prosciutto, pineapple and red jalapenos. The ingredients didn't seem to be of the best quality. The chicken was a little gristly (sliced breast meat would have been nice), and the cheese was unspeakable. It was straight-from-a-bag mozzarella... which was congealed into a huge mass of grease. The pizza was so wet with sauce and grease and heavy from too many toppings, that I couldn't even identify the crust... it was disintegrating before my eyes. The prosciutto was all in one large clump, instead of being sprinkled throughout. So disappointing. My friend's caprese salad was mainly a plate of tomatoes with a garnish of cheese and a sprig of basil. I love a good caprese - and especially enjoy when there is a fairly equal amount of all ingredients. Helps balance out each bite, you know? No such luck with this one! + +Our service was fine. Helpful enough in the beginning, but I think once she sensed we weren't thrilled with our food, she just tried to get away with a minimal amount of interaction. The waitress never asked me how my meal was... even though I was clearly picking at it, and only ate half of it. She offered to clear it away - not box it - so, she must have realized I didn't enjoy it. + +I will definitely wait a while for a return visit. Since it is close and has a great layout/atmosphere, I am hoping that they work out these rather large kinks and become the kind of place that I would like to revisit.",review,0dgQa81w5it1PMpGpC_L0A,0,5,0 +ihMUU9D2mcgrp7fi8lmqJg,2011-10-18,Wj-W5pTJkjJ8udx7y4zZeA,5,Love chickafila :) they're pretty pricey for fast food though,review,tpOgdsqWcrlFyQSrRIua-g,0,0,0 +qecLHHzAwgkkeA1bG81vmw,2011-02-09,z8AbzHsI6EabHdH3T4QHMQ,3,"Marcella's does have its downside, but today I'm in a good mood and I am recommending you stop in for the following three reasons: + +1.) They bring absolutely delicious bread (including olive oil) to your table almost immediately. I love this and I love their bread. + +2.) You can sit on a ""patio"" inside the mall and have the most amazing people-watching experience. Fashion Square shoppers can be quite entertaining. + +3.) The Amalfi Spritzer might just be my favorite cocktail of all time. Vodka + passion fruit + basil = HEAVEN. Plus, they use those cute little cylinder-shaped ice cubes that somehow make the drink even better.",review,TA6CcCUag4lftPJDuhhFuw,1,0,1 +-5rFC4EVrT-v8g1PSEf6Xg,2011-04-10,qm8uwRl8xZZS8rS0EgGxjQ,4,"Food was delicious, portions were great, and price was very reasonable! Highly recommend",review,tIuXIDONwCTp01qAsJWPWQ,0,1,0 +4WcxnNv_lzCIG2eb8O5Mlg,2007-07-26,aR-UGCJCHqF3kB_DjWKrWQ,4,"this is my favorite music venue in phoenix. it is a smaller venue best for local or indie bands, but every show i've been to their has been far more memorable then any show i've been to in phoenix. + +the place itself isn't too stunning, it is just a rectangular brick building with a bar area on the right when you walk in, booths on the left side of the wall, some high tables in the middle, a stage and standing area at the back, and an eclectic mix of art on the walls. however, the place has a really good feel to it and excellent sound that leads to really wild and memorable concerts. + +the two that i remember the most were the presets/the rapture and spinto band/art brut/we are scientists. i thought the presets were pretty lousy until i saw them play there and the rapture played an absolutely amazing set that lasted almost 2 hours and inspired an epic, comfortably out-of control dance party. the other show was equally long and boisterous, highlighted by eddie argos coming out into the crowd to sing 3 songs. + +the bad things about the place are that last time i went there was still no alcohol because they lost their liquor license. however, i heard that they have got it back now, but i'm not sure. the shows i went to i had to go down the street between sets and drink at alice cooperstown which isn't cheap. + +it also doesn't have a patio at all where you can hang out and hear the music or what is going on inside and drink or smoke. the venue reminds me alot of the lounge in the back of Plush in tucson except for the lack of a patio which is really important in a state like AZ where the weather is so good at night most of the year. + +of course the worst thing is just the lack of bands that go there. most bands come to either marquee (heaven help us poor phoenicians) or even worse, the clubhouse. if you happen to be a tour manager reading reviews on yelp, please book your band at the brickhouse. + +Update - 8/31 - Had to downgrade to 4 stars after my most recent visit. Its hard to believe that I'm downgrading them now that they have liquor available, but it's happening. + +They normally have local draft brews at this place for 2 dollars, but apparently when they have a show they don't sell it at all. Only bottles for 3 or 4 dollars. What's worse is that every bottle I ordered wasn't cold, tasted like they just threw it in the ice bin 30 minutes before. AND they kept running out of beers. What's even worse is that the mixed drinks run 6 DOLLARS for a really tiny glass. This place needs to get its act together. I'll be drinking beforehand and elsewhere in between sets from now on. I don't get why the music venues in Phoenix don't understand how much more money they can make at a show with drink specials. + +They also apparently haven't invested in air conditioning which makes summer shows not even worth it. Okkervil River still put on a great show to my surprise, which is the only thing (along with the other great shows i've seen there) that kept me downgrading this place to 3 stars or lower. + +They are also in the middle of remodeling so the place looks kindof like crap right now.",review,eBFm-lABQiKpaUcPDfYOgA,0,3,1 +-vBrVSZBtqbDgPAbGQ4ZYQ,2012-06-05,MHphXJLzm1_yZx0PEQklMQ,5,"Let's face it, junk is the antithesis of glamorous. When you've got a big pile of crap you need hauled away, any guy with a truck will do, right? + +WRONG. You want someone that will be on time, is willing to clean up the area where the junk is after they've picked everything up, is polite and fluent in English, thinks of value-added services like emptying your trash bin, and represents a local business that you can patronize. + +Junk Guys ticked all these boxes for me. THe guys were great and helped me out when I needed some items hauled away from a house that I had sold. I'd highly recommend them over an unknown entity or a big corporate junk removal company. So go get your crap hauled away by the Junk Guys - you'll thank me!",review,OQPPH3MMG7paqfw1THYGsQ,0,1,0 +RYZ08XAToBaN-bS5HHVEhQ,2013-01-02,GMmp0qSqEYot420vx_iIrw,5,"Nello's is the best! Great local feel, great food, love this place. + +You have to have: (Gluten Free) Pizza, Garden Salad with Turkey and House Dressing. It will soon be your go to feel good order.",review,9vU6HUPSRg2p5dO4YZdS_A,1,1,2 +WS1z1OAR0tRl4FsjdTGUFQ,2011-04-14,5QgVJ6enX5r0jQcf5wNnNw,4,"Back again. Still thinking about the flatbread pizza w/ tandoori chicken. I told my friend not to order it as an appetizer b/c I felt it would be too much food intake. One of the best things I've eaten in a while. I can't wait to order that as my MAIN dish next time. Soooooo good. You gotta try it! +The chutney and all the flavor combinations were perfect. It didn't sound so special on the menu, but it is!",review,LUGzqMjU1p8we9ldBnzVPA,0,1,1 +yeLq-452CkaKw1ynn0nRNw,2009-06-07,3uqeEpLC0uLIxO8hFimkmQ,4,"Being from NJ I am always on the prowl for my hometown pizza and Italian food. They have absolutely the best cannolis like my grandmothers! The pizza droops like Ray's Pizza in NY. I'm not a big fan of sauce that has any sugar in it which most do so to many their sauce is awesome. I prefer unsweetened everything. + +The service is great and they are from New Jersey! It's a great place to grab their special 2 slices and a coke for $4! YUM!",review,hV225B_UgT368FKzOk2daw,1,3,1 +kEyCMHBnohaWc81omLDfYg,2011-04-21,T3kWEIgAz9c98uTelDSO2Q,4,"I met fellow Yelpers Brian S and Shannon M here and learned that it's all about the sandwich. And feeling like you have walked on to a set for ""That 60's show"" or ""That 70's Show"". It's pretty clear the owners of Casella's are focused on the sandwiches, not updating the decor. + +I had an Italian beef sandwich. It was great. And I sat and soaked up the 70's decor as the bread from my sandwich was soaking up the juice. + +This place is old school all the way - old school awesome. F#%*ing A. Now where's my Trans Am?",review,P2kVk4cIWyK4e4h14RhK-Q,7,8,10 +m9Wqqma30o-hH2fAX7dnug,2012-01-28,6f9pb2-bUdxlsQqJs8-cSQ,4,"I'm on the constant hunt for good Chinese food in Phoenix. After many disappointing meals, I found Desert Jade and haven't looked back. The restaurant is super clean and quaint inside (even a big fireplace) and the service is great. Each of our servers have been super friendly and attentive. The food is really good. It's not going to blow you away, but it's fresh, portions are just right and I've never left unsatisfied. + +I really like the Kung Pao Chicken, the Mu Shu Pork, Spicy Chicken with Vegetables (lots of them), and my husband loooves the glazed walnut shrimp. + +If you're looking for an easy, casual Chinese meal in Phoenix - I promise you this is one of your best bets.",review,PNS9z4aFDbfhpIsHCfNvNg,0,2,0 +9ggd0DySEZNw990JGaFSQQ,2007-06-12,u4SUSUr_QNv6qwOgXkoMxQ,3,"Wow, it must be a first-time mall experience for the reviewer before me. Five stars for Arrowhead? Are you kidding? + +I find this mall to be average and boring with many middle of the road stores (Dillards, Sears, Gap, Tilly's, Forever 21) you can find elsewhere at other Westcor malls in the Valley. + +Nothing really strikes me as distinctive at this mall - other than the fact that it's the nicer of two indoor shopping malls on the Westside. So for 500,000 people this is the only game in town unless they're willing to drive east. + +The store mix and food court are pretty typical. In fact, I rarely go here unless I am in the area, need socks or undershirts and/or I'm trying to avoid the lines of the other Arrowhead Paradise Bakery.",review,4_YfcfHkCem1onJFkItxjA,2,5,2 +JnKJa7e6dd4G7wAKhg8e2Q,2013-01-01,gvhOoOdgQydEctRJFDxY_g,5,"When I was recovering from surgery, I received of one of their arrangements. It was marvelous. The quality was unbeatable, with gorgeous blooms and fantastic presentation. They lasted for weeks. I am really pleased with this company and wouldn't hesitate to use them again!",review,j2_4VhaUsH9Agv1soMbtYw,1,1,1 +LMG0zsAkUSscIvmV9vvm3A,2011-11-26,Vok1GHE3K514z6PBehJRTA,4,"Yummm. Love The Lady is A Scampi.. it's all I ever seem to order from this place. Can't get myself to stray. HUGE shrimp, pasta i perfect and full of flavor. As for everything else.. service was spot on, wait was only 30 minutes on a Friday night which is unheard of. One complaint.. ordered a dirty martini and there was no olive garnish :( But if that's the only problem..we're in pretty good shape.",review,g6rlp5No6GjEDXkrjvg1kQ,0,0,0 +Lbue8gqRiBPEnA7g7H1qdw,2011-12-23,PI0QBRy4Bj9DggN5mDLCEg,3,"I remember when this place first opened. I was very excited since it seemed so ""humbling"". + +I came here for lunch and thought this place actually looks ""okay"" at best. Chicken Sandwich was excellent. The bread was toasty and crunchy, while the Chicken and toppings were warm and buttery! However, the soup can improve. They only gave to you 2 options so I guess I had a 50/50 chance of getting the good one! + +The place was loud and popping! Not sure what to make of it since they had wine racks and wine, but then teeny hot pink tank tops hanging from the wines. Is this supposed to make me want to drink more wine or should I buy a shirt for my GF? Though I don't think anyone would appreciate a shirt that says PIE. + +Service was good, I guess. Our waiter was very nice and helpful, but he seemed flustered with a smile. He didn't do anything wrong by any means except he was going about 100 more miles than I was. - Enjoy",review,XqMkm-DD9VsdcKx2YVGhSA,1,0,1 +GqtMJxq5-7Xp1ZXXmahLaA,2012-11-07,_QPvVf1oT_3xMloxLrBYAQ,5,"I would just like to start off by saying that I love egg salad sandwiches. I have probably tried an egg salad sandwich anywhere that serves egg salad. Sacks is BY FAR, the BEST egg salad sandwich (entitled ""The Dali"") I have ever had in my life. I live in North Phoenix and I will literally drive many miles just to eat at Sacks. On top of the wonderful menu, whenever you order a sandwich from them, the meal comes with a little chocolate chip cookie, which is amazing all in itself. If you like their cookies, you can purchase the cookie dough. They also make other delicious dessert bars and salads that are for sale as well. I have been eating here for at least 14 years, and I hope they NEVER go away!",review,RYno4pKPnFpHwLs1EoPVjQ,0,0,0 +h6jfMpTZpNduLG0wE2tbaw,2011-06-06,YxGBDfR4BWP7cF7kib_hAg,5,"I have found my new favorite sushi spot. + +I wish it was closer to Tempe, but it's worth the drive. + +You can tell by their menu that Hana strives to be an authentic Japanese restaurant, as opposed to the sake bomber joint that only has food so they can call themselves a restaurant. You know the kind; the Phoenix area is plagued with them. Hana is BYOB, and there are only a few ridiculous fusion rolls on their sushi menu: most of it is authentic, real sushi. + +On my first visit I started with my usual appetizers, and was immediately struck by how unusually fresh and tasty they were. The seaweed salad had just the right amount of sesame oil, giving it incredible flavor. The veggie gyoza were indescribably delicious. They made me realize I'd never had a fresh gyoza before; every one I'd eaten previously in my life was a pale imitation of these little bits of Heaven. + +The sushi came out fast, even though it was fairly busy this particular Thursday. The first thing I noticed, naturally, was that someone put a burning sugar cube on the tray. ""Hey, fire!"" I thought. It was a nice touch. + +Then I saw, nestled between the flaming sugar and the wad of wasabe, a small pile of what looked like pickle relish. I guessed what it was, and our waitress confirmed it: it was FRESH wasabe. + +Real, fresh-grated wasabe is something most people never experience. Most people don't even know the pasty green stuff that's standard in every sushi restaurant is just normal horseradish dyed green. The real stuff is just too expensive, and too difficult to keep on hand. But there it was, no extra charge. It adds a little spice and a wonderful, fruity complexity to the sushi. + +The sushi was great. They also have a large menu with all the other Japanese dishes you'd expect, but I didn't try any of them. Next time.",review,BncUtrl2bphVTu12y5fTlQ,0,1,0 +37TCTrXk2kFZ07hSSd5PHQ,2011-04-08,tuG5kN4ZpLyBv3n2FGbEmQ,1,"Well...no worries for the continued bad service...awful prices...average inventory....and just overall bad experience....because the store closes forever this weekend. I have never cared for the place....so I definitely won't miss it. However if your looking for some decent electronic gear at 60-80% off....then this is your weekend to go. Eat, Drink, and be Merry my Friends",review,ky9pQ8AKufvZ63IxR41jGg,0,0,0 +wN_wAXWg8W94v04eqijy6g,2011-09-28,sqYOnOGlKDe5f0QVm5u3xA,5,"This little taco shop gets 5+ stars! + +The fish tacos were out of this world, breaded and fried to perfection. I also tried the al pastor taco that was marinated well and you can taste the marinade in every bite. I also tried molotes for the first time. The cilantro salsa and red salsa was homemade and oh so good and spicy. The quesadillas are like cheese crisps. I am so disappointed that I did not find this place earlier since it's so close to home. + +I have to try the other items in their menu soon. Price is very reasonable as their tacos range from $1-$1.50.",review,ZK_WcbPcxO7ZgHAbIoqFpw,0,4,0 +R1kKjAO5kZO6d0gQGqrvGA,2010-10-14,G6ptV9LUiPR5y9p3zo3afA,3,"I love a greasy burger joint so I wanted to try Smashburger. I took my order to go. The layout of the store is different than most burger place...a rather minimalist front counter. The service was quick, and I received my food in a reasonble amount of time. It was hot and fresh. I ordered the 1/3 Smashburger with everything and Smashfries. The burger was ok. It was spiced in the same way that Hamburger Works or the Chuckhouse does their burgers. The veggies on the burger were fresh. The bun started to fall apart about the time I finished the burger. overall...it was just ok. It ain't no Lenny Burger. I'd rather go to Fatburger then Smashburger. The fries were crispy and flavored. They were good. When I first saw them I thought the portion was rather small, but when I took it out of the box in which they came, it appeared to be a normal portion. + +I won't avoid the place if people want to go there...but I won't make a special trip.",review,DU0F18NBXFZ-hsPOmGhzQA,0,0,0 +OzrOuMIig4Zvq1qyFutH2Q,2009-01-06,0CjTvBKt7-_dgnm-YQWbBg,5,"I like to think of Trader Joe's as a ""specialty food/health market."" It is simply in a league of its own when compared to large commercial grocery chains. Honestly, there is no comparison! + +With that being said, this is the BEST Trader Joe's I have been too! (and I have shopped quite a few in my travels across the US) The sheer size of this store, in TJ standards, is IMPRESSIVE! The isles are plenty large enough for TWO people (with carts) to maneuver through. And more importantly EVERYTHING looks fresh and delectable! + +Some of my fav's are: + +$3.99 Trader Joe's Coastal Cab...FABULOUS for the price! (Quite honestly though, I haven't EVER had a bad wine at Traders...they have an amazing selection that isn't overwhelming but isn't sparse either.) I also LOVE that they CLEARLY label each of the wines and/or regions so they are quick and easy to find! + +The Haircot Verts (French Green Beans) are simply delicious! Their Brussel Sprouts are the perfect size and quantity; just enough for two people at two different meals. They even have Nulaid ""Ready Egg"" (i.e. egg beaters) for $3.69! At the grocery store the SAME stuff will cost you TWICE that!! + +Their cheese selection is delightful with almost ANY kind of cheese imaginable! Their artesian breads are so yummy...although not a ""low fat/fat free"" food, so that is a once every few months splurge. (and even then we only get the small loaf (which I want to say is called a ""little bastard."" That name CRACKS me up!) + +And although I am not a ""sweet"" eater, my hubs is...so he has a dozen or so goodies that he constantly gets here. The one I can think of off the top of my head are their Chocolate Covered Joe Joe's with Peppermint Crumble (or something like that.) I'd go look at the box but we are fresh out because the hubs thinks that eating one box over a two-three day period is acceptable! + +It also fun to be rewarded for bringing your own reusable bags; as any good eco-friendly shopper would do! There is a weekly drawing for a TJ's gift card (I think the value is $25) and you get a ticket when you bring your own bags. (not one for each bag...just one ticket for bringing them to put your goodies in) Then they draw a name out of all the tickets (which you drop in a box on your way out of the store) once a week. + +If you shop more than once a week, you can ""earn"" a ticket for each time you shop there in a week therefore increasing your chances of winning. (although I am PRETTY sure the majority of Surprise/Sun City Grand shop there so maybe the odds aren't THAT great! ) + +Regardless, this is just a great little ""market"" through and through. I used to get excited to shop at TJ's...now I am always looking for an excuse to buy something just so I can go there! (and it's not just to try and win the gift card either..that's an added bonus!)",review,TPj2H2OD4mEyxIjRTbFagw,2,3,0 +DHk8is9rvfnATsW1AudWQg,2011-06-05,BrivsV-4VPzB6XOvUHNbqw,4,"This is just overall a great place! It's tough to do this review, as I can probably only remember 1/2 of my times being here, and that is being generous. +There's something about the atmosphere here that just makes you want to tie one on and knock back giant beers and spend money playing songs, darts, and Golden Tee. They also have pool and other games. +It's a BIG bar. There is a more ""game side"" and a more ""table/eating side"". They have a ton of TV's that are large and high quality. I have never seen it ""slow"" here. It seems no matter what the day or time it's pretty happening! +The food is really good. I love the diverse menu, happy hour specials, and quality ingredients. I also have never once had bad service. The staff is fast, friendly, and has never seemed irritated or overwhelmed. +There is a large patio out front that you can drink on that has misters and heat lamps (depends on the season). +This is the absolute perfect place to go have a blast with friends, or even come alone when you feel the need for a night out. Always friendly, attentive, and..... oops I forgot the rest because I always end up giggly and drunk. Sigh.",review,0N0ngSQ8Njxfuvdxm1RpFA,0,1,2 +4ic-c1LquBiT0IuvKXuEyw,2012-06-13,wHVD494Wy1HXc_L-ElU7ig,5,Great Brisket. There has not been good BBQ in south Scottsdale for a long time. There is now!. The food is wonderful and priced well. Stop in and grab a bite.,review,grXqYN-Wh7plSsivDEfgEA,1,0,0 +EC9WB-iVjd28B6R6KIZ8TA,2011-08-14,J89x8F6oHM8uE6SoH574jQ,4,"Is this great sushi? No. Does this food reinvent the sushi wheel? Not even close. Will I have a foodgasm? Not a chance. When I am craving an amazing sushi meal, I'll go to Yasu. + +Why I really, REALLY like Teharu: +The food is fresh. While it's not amazing fish, there's nothing wrong with it - nothing here to get sick from. +All the standards are readily available and if you want something not already on the belt, they'll gladly make it for you. +The conveyor really feeds into my lack of patience. I sat down, ordered an iced green tea, and started pulling plates off the belt. Yes, I was eating sushi within 90 seconds of sitting down! +The price is a HUGE plus! I met a friend for lunch - we each had iced tea, several plates with 3 or 4 roll slices, seaweed salad, sunumono salad and a couple nigiri and I was out of there for less than $20, including tip. +The place is kept incredibly clean, staff is friendly and Teharu fills a nice niche for a super casual, quick sushi place. When it comes down to it, I can't always afford to spend what that quantity of food would cost me at Yasu or any of the other great places in town - I like that I am not committing to a whole roll - I can sample from 5 or 6 different ones. + +Fills the need for the sushi craving on a buget and/or when strapped for time.",review,45V7-1r79DEG0HbuaKYIlg,3,3,3 +9em_vfSjwcPqQgU8Zj-hzA,2011-08-15,ZXRSnxeLFXYV88KUEZC7Sg,4,"Best gyros I've had in the East Valley so far. The place is nice, but the service was very slow when I went there with a group of people for lunch. It was my first time there, and maybe I caught them on a bad day? I'll definitely be back again...",review,uLtmw0t-GvXUuIVRIVhotA,0,0,0 +hZRLGfRrZTo9up2P-0aAHg,2010-09-19,ra1cu1_ilRpKWe5m7-Apqg,4,A hidden gem in downtown Phoenix. I loved the design of the restaurant and was so excited to try the food. The menu isn't large at all but there is great substance in their offerings. I had the chili lime chicken which was really delicious. I don't think I managed to eat even half of my order but it made for great leftovers. :) I noticed they had a very reasonable take out menu too!,review,UgttlReSB8g9YF3URK8BPw,0,0,0 +7AHd-F65U_ikSsHxhIaBQA,2010-08-19,KppFIU4j8U-8p90FqUm2-Q,4,"""6 inch tuna on white bread, with everything including spinach, but NO pickles"". + +Not even joking, this THE only subway that ever gets my sandwich right. Thank you for the $5 meal deal, it beats the other chains in this shopping plaza as far as price for lunch.",review,uNbB1uR4EBhmygUc3IfPAw,0,1,0 +cInzGnaFZ3EIItvFXl1MvQ,2011-03-24,0K2VKSSnXc6p2suu58WtWQ,4,"My return trip to SaBai was excellent. + +I stopped in due to an irresistable craving for something with shrimp. I was in a take out sort of mood, so as I sat at the bar the friendly owner gave me a glass of water with a cucumber slice in it. I was pretty floored at how refreshing something so simple could be! + +I quickly got my order of Garlic Shrimp (extra spicy) and headed home. The shrimp was perfectly cooked. So perfect that I can't think of any other shrimp to compare it to. + +I was happy to see a decent crowd in the restaurant. I know I'll be coming back again.",review,ND95DgvN7ba8MabfXE3lsw,0,3,0 +mQfT3JYu18HN22DVylcE7A,2012-01-02,hQXhKJcQ7-bwSOEPGix3Wg,5,"I had initially checked this place out a couple of months ago. Once again we found ourselves needing some quick, delicious breakfast and decided to try this place out again. As before it was absolutely delicious. The one thing that surprised me this time around however was the little play area toward the back of the restaurant. This is very impressive to me as it gave us some much needed peace prior to getting our food. Thank you Bertha's Cafe for not only being so accommodating, but also for having such wonderful food.",review,twZoTvWG92ntMVfEvbCnIg,0,0,0 +tqDwpyCB53TiEIv915Tuww,2008-05-05,vRYLelechgRU4VNlB4MKcA,5,"Feeling a bit weary from a steady stream of travel, we decided to head over here for my favorite Rx, Pho. + +A couple of summer rolls filled with shrimp, pork and vermicelli, dipped in the sweet peanutty sauce, a dash of their house hot sauce(a tad more fire than the ""cock"" sauce) and we were off to a fine start. I was feeling better already. + +The Pho arrived, and the aromas were simply intoxicating. After a short interlude of vaporized euphoria, we dug in, adding the usual lime, cilantro, basil, sprouts and aforementioned hot sauce. Commence slurping. + +The broth was simple yet complex in layered flavors. Noodles were perfect in abundance and texture. My companion chose beef and shrimp and declared they were cooked perfectly. I selected the special beef which included shank, brisket, tendon, tripe and meatball. Outstanding. + +Service was with a smile, prompt and attentive. I honestly felt like I was sitting in someone's home enjoying what they might eat on a daily basis. I do not think that Cyclo can compare, while good, this just seemed more authentic.",review,bcZd4ohK6CIT_BOQ0_O53w,4,6,4 +91n02N35x38nvR1XH-jOAw,2011-08-13,jltxtw_jD8dzhqR4zK_ttQ,4,"This was our third visit and I have to say the service is impeccable. They are attentive, friendly and helpful. + +I can't remember what we had our first visit, it was right after they opened and during the awkward stage. The second visit we had pizza it was good, we were looking for deep dish which they don't make but it was good and great service. + +Tonight we all had different things: Mostaccioli for my older son he was very happy, cheesy and flavorful sauce. Spaghetti and meatball off the kid's menu for the younger boy, sweet sauce and a big meatball another happy boy. Husband had the Chicago Grinder hot and it was gone in a flash and he said it was really good. It looked great on the toasted bread. He also got a salad instead of fries, lots of fresh veggies. I had the Italian Beef with peppers and onions, it comes with Giardiniera and au jus and french fries. The bread was yummy soft yet substantial enough to withstand au jus. The bread was stuffed, stuffed with meat, the peppers and onions were good but the giadiniera made it. It was a really good sandwich. San Tan Brewery on tap - yum. + +I could give them 5 stars but I've had better Italian Beef though I will admit I'm not an expert. + +A great dinner and I hope to return soon.",review,t2YBANsJYySOXvHyOjcZkQ,0,0,0 +IpqgfODLFPww-6TxCk-LJQ,2008-04-13,bRhF_oqWpycPjb5acrIKIw,5,"Owner Daniel M. is one of my most favorite restaurateurs in Phoenix. His stamina and passion for the business of serving fine cuisine is a rare find. Daniel is from South America but you wouldn't know it; his knowledge of the secret kitchens of Tuscany, Umbria and Amalfi is uncanny. I know this because I traveled with him and his chef one year on their odyssey through Italy. + +Daniel takes special pride in personally choosing a very select few bottles of wine to fit any budget. OK, it's not Etienne's Different Point of View's list of 4000, but know that any choice you make is going to be a good one. If you're not sure, just ask for Daniel and tell him what you have in mind -- likely he has (with a wink) a special bottle in the back. + +When we traveled through the Italian countryside I was constantly astonished by the warm greetings and special invitations we had from local proprietors who shared with us exquisite homemade wines and dishes made with pride from the finest vegetables and livestock. We frequently stayed long past closing with the owners and into the night sampling rare port and grappa. At one restaurant in Orvieto the owner took us deep into the dank recesses of the wine cellar for a special sampling of cheese and wine. Talk about knowing people? One afternoon while drinking our 5th bottle of wine, who walks by but Jan D'Atri! Wow. (That's another review.) And speaking of reviewers, I also ran into Phoenix Magazine's Nikki Buchanan (also extremely nice). + +When Daniel first opened in this location with that little stone oven in the corner, it was a pizzeria and guests could belly up to long tables in a casual environment that was made easy by his banter with the heavy Italian accented waitress (name?) who made a comeback some years later. For quite some time the restaurant was Il Forno; that is until corporate giant Il Fornaio entered the fray and sued him to change the name. After much rigmarole he changed to aqua e sale -- and notice Il Fornaio has since closed its doors? LOL. Again after much hoopla, he made it Daniel's. The current wood-paneled decor makes me think of a city club in San Fran or London. Very posh, yet understated. Selections of sculpture and art from his travels dot the restaurant's three small dining rooms. + +The menu is a very difficult one. I say that because it has all of your favorites and it is difficult to make your final selection. Great for steak, ravioli, the best carpaccio in the city, best buffala mozzarella, mmm.... I could go on and on. So does the menu, page after page. + +Some might call the preparations simplistic. This is the Tuscan way. Simple ingredients and simple preparation. Let the ingredients make their own magic. Grilled rack of lamb is not drowned in some Smucker's lime jelly, but gently brushed with rosemary and garlic, tickled with salt and pepper and finished with a squeeze spray of lemon. + +Unfortunately the artful one-of-a-kind plates and bowls handmade in Vietri chipped at the edges over the years and the health department made him throw them away -- UGH!! -- they were a beautiful motivation to make you lick your plate clean to see the painted pictures beneath your scrumptious dinner. Not that you needed an excuse to dab every last bit of sauce with the wonderful mini loaves of bread cooked right there in the hearth that started it all. + +Daniel himself is a wonderful host. He loves to give his guests a wonderful experience. There are many choices for Italian food in Phoenix. Most of it is just American Italian. Daniel's is a unique touch of the simple yet elegant. Enjoy. + +P.S. [post edit] OMG. How could I forget the Tiramisu? It's a generous portion, so you can share with your guest, but after your first bite you may not want to. Light and airy, yet fantastically flavorful, the quality of the coffee really makes this dish a reason to go back again and again. I'm not going to tell you the secret ingredient. You'll have to ask Daniel.",review,hDlSSyDreM9xY4yQWPm54w,2,3,1 +odhXwWaYZvD_icIN6f_DbA,2011-11-13,cgzsnrOmW2zX4hTB6FFJQw,3,"This place it hit or miss for me. I have always ordered the feta gyro and either fries or a small Greek salad. Why is the soda machine always broken? Makes me wonder what else is broken and not fixed in the kitchen. I ate here for the 5th or 6th time on Thursday. The gyro is excellent, but the fries were overcooked and the oil didn't seem very fresh, as the fries had a brownish, oil soaked feel. I will return for the gyro, but I may skip the fries and stick to the salad.",review,7W4egS-WyR0hRHMfQtPEOQ,0,2,0 +GwSdGrvaXi4BdXNSWKn-EA,2009-02-09,eeZLCm4v-dtSH0x3KoFUBw,5,"Changing Hands is the perfect bookstore. These types of places just don't seem to exist, but Changing Hands has managed to survive. + +Allow me to begin by saying that this bookstore does not have anywhere near the selection of a Barnes and Noble (or probably a Borders, but I don't go into that garbage store and cannot be sure). With that said, there are a few reasons to shop here. + +First, and most importantly, they have well priced used books. I believe most of their used books are $7.50. They are also all in pristine condition. Now, $7.50 used isn't always that great for a paperback. You can do better online quite often. What's notable, however, is that their hardcovers are typically $7.50 as well. This is a fantastic price and is hard to beat. + +Second, the location of CH is perfect. This is one of the best plazas out there. Wildflower, Trader Joe's, Mac's, Jamba Juice--you can't go wrong. + +Third, and finally, Changing Hands is a local store, and many good things come with that. The staff is extremely friendly. From what I can tell, they are all hardcore book nerds and you have to love that. The store also has a very welcoming feel to it. Once you're in, you will realize how extremely friendly everyone is. No, not just the staff--the customers. Everyone is talkative, friendly, and just seems to be happy. They are all indulging in one of their hobbies in one of the most inviting stores I have ever seen. Someone will ask the staff ""who wrote such and such?"". The staff will almost assuredly spot a regular and ask him or her ""who wrote such and such"". If he doesn't know, someone else will probably pipe up. It's this type of thing that makes it a great store. Overall, it just has a great atmosphere. + +The only negative comment I can make about Changing Hands is how hippy it is. There's a ton of books on spiritual techniques, new age methods, buddhism, and whatever the hell else hippies/hipsters think makes them look more cultured. Of course, this just goes along with the Tempe, Trader Joe's, and book reading demographic, so I can't blame them for meeting the inherent demand.",review,X6GycoLMzQaocXBANVnB4Q,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2012-07-16,Q35fzO1VUcU5pxB_5INOrw,3,"So, if I rated The Grind based solely on the Sweet and Spicy Burger, I would give it a Woohoo, five star rating, but, I'm not , just thought you should know, you need to get that burger if you come here. + +I was a little surprised to see how small this restaurant is when my mom and I decided to come here for lunch (she was wanting burgers). This place reminds me of a narrow cave that happens to have a long bar with about 18 stools, six larger booths that can fit five patrons comfortably, four table tops, and three double occupancy booths. The bar is pretty cool, its lined with red lights and has eight rather large flat screen TVs you can see from the stools and the larger booths that we were seated at. I opted for the Sweet and Spicy burger ($12), thanks to Yelp, and my mom went with a plain ole cheeseburger ($11). Knowing that the burgers do not come with anything, we decided to order the sweet potato fries ($5) and both got iced teas ($2.5 each). My burger was delicious and was everything the title said it would be...sweet and spicy thanks to the sweet glazed jalapenos. I also enjoyed the crunchy, deep fried ratatouille, yum. My mom wasn't impressed with her simple cheeseburger and said she would order mine if she were to come back and we both enjoyed sharing the sweet potato fries. + +Brent, our server, did a great job with suggestions and service. As lunch time got more busy and he got more tables he was always checking in with us and even put our iced teas in to-go cups. This place was, as the default Yelp display states, a-ok. I'm glad I tried The Grind, but probably wouldn't suggest this place for lunch, but wouldn't hesitate to come back here if it is suggested by friends. + +Breakdown: + +one star for being a narrow cave +one star for the Sweet and Spicy Burger -and- +one star for Brent, our awesome waiter.",review,fl6oI21uXoxVMwfR6lFanQ,2,2,1 +d4GSh1BalxvQCU7zLe6Lzw,2012-09-13,e3YCq3wHU9vuhXiYs28YcA,5,"I used to work here so it had to be good;) Honestly, I would say it is the most friendly place I had been to. Cashiers are willing to except all coupons and work with their customers. The prices are great and the gas rewards system is very useful. I just wish it was a Marketplace instead.",review,vCvtdiwIR52fnByQH7ciZA,0,0,0 +L-bpJXpA5875dLb7A4wh6A,2011-05-25,OZeuTjKy_8HA4p_TiJ_kCw,1,"I have been to a buffet like this before, but I will never go to this particular one again. + +The food all looked fresh as we went through the food line selecting our favorites and stacking our bowl to the sky. We selected our sauces and turned it over to the grill. + +The cook doused our dishes with water, quickly cooked the ingredients, and returned them in a new bowl. + +There is a selection of crispy wonton bits, rice and soups for you to add to your tray at no cost. I selected no rice as they were all old and burnt to the pan. I chose the hot and sour soup because it is ma favorite. + +Free-range and refills on beverages. + +Sat down to eat, was not impressed. I could not muster to try a second spoon of the soup as it was absolutely disgusting. The bowl of ingredients were all bland, perhaps from the overuse of water at grilling, and I am almost certain the tofu had gone bad, The slivers of meat that my husband had selected tasted fowl as well. We obviously did not get to far into our meal before leaving. Had we not already paid there would have been several complaints from me, and changes in selections. + +We could have taken the left overs home, but opted to leave them instead. + +Suffice to say, I do NOT recommend.",review,Ib8kGCGfUqubl0u2NNLiuQ,1,3,3 +-sC66z4SO3tR7nFCjfQwuQ,2012-06-30,CAiTtv7-SI8C-Kz8jSw1hg,4,"This place needs no more great reviews really but damn was it good. + +Recent Sat night: first time. Busy, hour wait, unless you sit by bar which was zero wait. We sat by the bar. + +Very cool, hip place. I remember the Clarendon but had no idea it got all cool and modernized, when did that happen? + +Anyways, ordered 2 house margaritas (excellent, very fresh, perfect), then ordered 2 more..... buzzed alert*** + +Elote, teeth sunk in, amazing alert*** + +Spit shrimp cocktail, oh yeah.....its on. + +Tacos carne asada, so fresh, so good. Great chips and salsa, the thick kind of chips, authentic type, like in Mexico. + +For some reason I ordered a burger? Huh? It was a hasty decision and the burger was just OK. Next time, no burgers, just tacos etc for me. + +Even as busy as it was, the service up at the bar was perfect. + +I will certainly go back at some point. Maybe not rush back just because of the busy factor, but hey what isn't busy at these hip trendy little places in town, right?",review,78Ed1ndOak2kmzljulPfBg,15,12,10 +PO2JBrCFcxd5ne-7ewDwdw,2011-03-18,vVab30K-86rOik7DaAY6NQ,2,"New and big yes... but not my favorite spring training park. + +5 stars for being big and roomy and also lots of grass in the outfield + +2 stars for being almost like a major league park. Feels like you are attending a MLB regular season game. They lost out on the small spring training feel and intimacy. + +0 stars for being the only cactus league park I visited this spring not allowing you to bring in food like candy or peanuts or sunflower seeds. You realize why when you see the pricey beer and food vendors inside.",review,AGUzvg1XorMJpcVG-N0ZOw,0,3,0 +7tPe20uDErh-iSkfNEWzVQ,2011-04-11,u4bg1tw6IPFxjNKMSTrUTQ,5,"Walking in was like seeing a rainbow for the first time. UH-mazing! Every type of candy ever created and more candies that you've never even heard of. Best part about it was that it was super affordable. It was like a mini-costco of just candy. + +I ended up going twice on Saturday. Love it!",review,P1XofswxyEb90r2bVN4LJw,1,2,3 +8dEJ_o0UgGrNX1ejHcuZjA,2011-01-30,MV3HbtZTE2DpxMdv9tdqWQ,2,"Returned here after a year's absense. I understand they have had a change in management. some for the better, some for the worse. new general manager and now the service seems much friendlyer and efficient. New chef and now food is slow to arrive and not as good as it used to be. steak was charred, mashed potatos were lukewarm. Took over 30 minutes for our food to arrive. hopefully it was just an off night for the kitchen. but the general feel was that they lost the attention to the little details",review,cFoiVWF42HSXQEtqxDvdWQ,0,1,0 +loj-LzdcfSlCWUXRQEN7iA,2011-07-05,F5OyWS5O4S3gmNeMc8mz2w,3,"We were going to movies when the skies opened up. + +That is when we first noticed we needed new windshield wiper blades. + +Kinda dumb, right? But, the only time we use them here in the Valley is after a car wash? Think about it. + +So we stopped at this location on Northsight, next to former site of ""Al's Beef"" which is now closed. The folks who work there stopped me as I walked in and asked for the make and model of my car. Within ten seconds we were over to the aisle and had the correct blades for our car. WOW! What a great group! + +A funny aside. As we left, I started taking out one of the blades and began throwing away the plastic and cardboard in the outside trash bin. Another shocker. It was filled to capacity with old blades. Great minds, Eh?",review,1BW2HC851fJKPfJeQxjkTA,2,1,1 +dC6rDLGRoch_DOZk5kLkWw,2012-10-29,p9lSvv1xlKNzUb4_rtq5rQ,1,"Seriously?! With grocery stores like Fresh & Easy, Trader Joe's, and even Safeway around here, I wouldn't go to Whole Foods regularly, for ANYTHING, unless I was a bajillionaire. 1. It's wayyyy overpriced. I'm not sure if there's a Central Market around here as haven't seen one yet, but even that is better than this in terms of price! + +We got a few items here, specialty items in bulk foods, for example. The wine and beer bar is cool, but unlike the Whole Foods in Austin, Tx, which was the epitome of awesome, (2) one can't walk around with beverage in hand here. Too bad the rules are so stringent about that, because if I were shopping with a glass of wine, maybe I wouldn't notice the horrendous prices quite so much. + +My 3rd complaint is that when we ordered coffees from the coffee stand there, my mocha and my boyfriend's latte tasted like motor oil, after taking forever to be made, and the girl saw me swipe my card but THEN told me she ""didn't have a register person"" and I wasn't able to cancel the transaction....so then we had to go back through the main grocery line again. Grrr. I left unsatisfied, uncaffeinated, and feeling like I had just wasted ten bucks on coffee that we ended up pouring out. + +They get one star for having a wine/beer bar at all, but then I have to take that star away because the bar tender said they sold the most beer and wine of any Whole Foods in existence (I call bs - the one in Austin is twelve times busier and people can shop with their beverage of choice, and they have a bunch of restaurants there too so it's truly an experience - it dazzles). This leaves one star for the supply of bulk and specialty items they carry. We went to Trader Joe's after, got twice as much stuff, and spent half as much money. Sayin'.",review,3LmlnHoIFMx0M5j97cJFGQ,0,1,1 +qzGYgpNThpVDuwYDYbU5pA,2007-07-20,ufCWA2XlR7fS4rC-Y6y4uw,5,"I love Coach. +Stylish and trendy without spending an obscene amount of money on a bag. Sure they are still a bit more pricey than a purse at Target, but you are paying for name. The sales associates are really nice and won't hesitate talking to you. I only have a few things from Coach because usually I can't justify spending to much money to accessories, but anything you buy here you can use forever. A coach bag will probably never go out of style.",review,PS0lCxjGNeUrKxYSdpW-Aw,0,0,0 +c2WLZLpvNG2VLOfjjqKrkw,2012-05-08,ep_K1iMFgQHVk_ZzWdDwFA,5,"Amazing place for exceptionally good beer and time with friends! Minimal menu but great collaboration with other local vendors and ordering for delivery at their location is encouraged! Their beer recently passed Four Peaks as my favorite too, not an easy feat! If you're on the fence at all about checking this place out, do yourself a favor and just get yourself there!",review,w-7lJmMib10WNuMpnrmKUA,0,2,0 +bF7KQ6AQK5rBS7aOFKtlWg,2012-08-30,ap_Xq0JA7MIkLhf0CnojeQ,5,"Humdinger! +What more is there to say. It's the best sandwich ever. It tastes even better on the weekends when Kids Eat FREE! If you have a larger family ( more than 2 kids ), this is the best deli in town.",review,r8nJMwYV5rxutGgm1_QtpA,0,0,0 +LjqY98zL96sem_PxC6ZG3g,2007-09-23,J60wdy1q0L9dFGg9YUXscQ,2,"Based on the reviews from some of the people, I would have to disagree. The gelato is not that great. I'm a little perplexed by the near unanimous 5 stars. I seriously don't think these people in Phoenix haven't ventured past AZ state border. I've had gelato here, and I thought I was eating Coldstone.",review,Db5IKqE1M2iP5EnZNDroRQ,2,1,1 +2OY8xs4aqOt8eTnYokdrww,2012-07-13,ceJDF9JUVMcC409tkStYMA,4,"Sorry for my lateness but I wanted to update everyone that after my review I was contacted by management, apologized to, and asked back for another chance. I WILL be back just as soon as it cools down and update my review then. + +Everyone deserves a second chance to make things right. + +I appreciate the professionalism and attention to customer service. I'm looking forward to it.",review,3dno9Y7mtvi2tq6IfMpDeA,1,2,0 +jCOTob1avPH52RNuniylkg,2011-06-28,JMByv-CJjPsZwy3jVxVsaQ,3,"mid-afternoon is definitely different than dinner. still tasted good. + +we usually get the layered dip, it's totally messy and not as good as i think it should be, but i like it anyhow. + +i get the durango burro and matt gets some combo monstrosity. + +service is...meh, average. queso is tasty.",review,V9vStLuNc4aqZO_GK2VTuA,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2007-07-02,WaFiEBO5YcbwhthmYplNGQ,4,"This would typically be a 3 star review, but it gets another star for the following: + +* Great air conditioning +* Arizona's only Neiman Marcus +* Hilarious people watching +* Great happy hour haunts in the basement +* Everyone here has a better tan than I do + +Scottsdale Fashion Square is large and in charge and is definitely a sprawling spectacle to see at least once. There's no denying that it's a local institution -- even if the store mix is a bit too pricey and exclusive for some.",review,4_YfcfHkCem1onJFkItxjA,4,4,2 +ahKN6wh6z2vZsd8C7AyG5A,2009-11-16,JpW0P8SMMDpMiKXNVwOVrg,2,"Its was just OK! +Liked the fresh jalapenos option, fries hardly had seasoning, was a bit pricey, but filling. Free peanuts, but wasn't sure if it was ok to throw on the floor. They use the same color scheme as In N Out which I thought was humerous. I'll still give it another try in a few months.",review,zqfNAOCE1s_z-21Qs1wdeQ,0,1,0 +vSEFzop2GDXsIWTLxIGMiw,2008-02-27,8YWzrY18uC2yx3sM-cPqWg,5,"I was initially going to give Riva's 3-stars, as they're really just like any other Filiberto's/Umberto's/Roberto's/Ernie and Berto's out there, except for a couple of small differences. + +For one, everything seems to be just a little bit more fresh there. It's probably not, but it tastes like it. And secondly, their little salsa bar is killer because their green salsa has plenty of flavor and they always have fresh pico de gallo out there, a must for any burrito. + +The California Burrito, with carne asada, potatoes, pico de gallo and cheese, is a must, as is the standard Carne Asada Burrito. But the real winner here is the Carne Asada Fries. A metric ton of carne asada piled on top of freshly fried french fries, sour cream, cheese and guacamole for only $5? Can't be beat, especially if you're hammered and it's 3 A.M. + +Not a classy joint, not a place you go if you're wary of stupid crap like ""health code violations"" (the best places never are), but definitely a late-night hot-spot for the Mill crowd. Lovely. + +And it's not for sissies that don't like ham in their beans either, damnit.",review,clTYUJCL-rHnVIS2WePRwA,3,1,1 +IVc23uY-36WUNYoIbz42Fg,2008-04-15,PALOuX3DpRD7VjbXnclzKg,4,"We stopped by Switch the other night after getting raped by the IRS and while we were still feeling quite sad and pathetic. We wanted something casual, inexpensive, and fast, and that is what we got! + +Service was great! We were one of maybe 3 inside tables and a full patio, and our waitress was fantastic. She was very attentive and kept our drinks full. + +We had the wedge fries, a weakness of mine, and they were pretty good. Not great, but definitely good. + +They had several vegetarian options, and I chose the Chop salad, which was SO yummy. So yummy in fact, that I have been trying to duplicate it at home for days now. + +My husband had the turkey berry sandwich, which I didn't try (no meat for me), but he said it was good. + +We would definitely go there again. Try it!",review,fhV21-QB6n402-J9vR-7cQ,4,3,3 +vFOdpkM03mQdoQ7zP7FqpQ,2010-07-15,9tarrykdGGshFz6hpRfrFw,5,"He's been the top vote-getting General Dentist in Phoenix Magazine for three years in a row for a REASON, folks. He has an office in Chandler and in Mesa but even if you live in Minnesota, he's worth the drive.",review,FU9C7AyE3ddFQEUUxgnGvQ,1,0,0 +UWc8_M-ecCNLfrkIzwwRQA,2011-11-27,7yzwfbO6Pwd3ViD9rKbRIA,5,"I have long been a fan of AJ's and lucky for me, they didn't open a location on the West Side of town until after I moved back to California. If they had, I would have been more broke then I was as a single working mother. + +The daughter and I stopped in before her hair appointment for some coffee and pastries and then I came back in once her hair was getting done. The first thing I did was order some iced tea from their coffee counter. It was absolutely delicious iced tea and very reasonably priced. I want that tea now, I think it was pineapple or something yummy. + +I perused around the store, picking up some Goldwater Salsa and a stuffed Cornish game hen to cook later in the day for my Grandma from the butcher counter. I was thrilled that they still had the stuffed fresh hens for the same price I used to pay $4.99. Something inflation hadn't touched.I also picked up some huge honey crisp apples (something again Grandma can afford but won't buy for herself) and a small bunch of flowers for her. + +Next time I am in town, I am going to hit up AJ's right away for some iced tea!",review,fYuX1PTENpzA7uMyFQzOsA,9,8,7 +lBRCMN7wNn-BKUsaOXJRow,2008-08-12,qmkpZSuY2zvAQwn4fQqfIw,1,"I went in once looking for Canidae. Which according to their website bold print they carry, but not the fine print. They don't carry it in all of their stores. My dog has food allergies so I'm cautious about changing her food quickly but since it was about 7 pm and I was pretty much out of food on this day, I figured some food would be better than no food. + +During my visit I learned many things. Apparently Canidae is a inferior brand and ripped off its ingredients and packaging from Innova. Innova is a far, far superior dog food. Innova is awesome, Canidae is for chumps. Innova is also more expensive and a smaller bag. Nothing I couldn't afford but annoying none the less. Not wanting to create dog food controversy I bought a bag of the morally superior Innova. + +But when I checked out I was asked about four times whether I realized I was buying nibbles instead of bits. ""You know you have the nibbles. Are you sure you want nibbles? We have bits if your dog prefers bits"". + +She's a 70-lb lab that will eat anything except for vegetables. I mentioned that the nibbles were fine. + +""Are you sure you want nibbles? We have bits if you want bits""? + +Dude, just ring up the freaking food and get me the hell out of here. As expected, my dog ate the nibbles. She felt superior for the month supply of Innova that she ate. Then she went back to the ghetto and ate her inferior Canidae.",review,WpOXBiNf7vmRxZf1oTDncg,0,0,4 +VXIkI9_EbDbYHeO9IzKjJg,2008-08-22,9gA595Ij6IUdecVwBMgI6A,5,"I love this place! it's a cultural experience! I think even if you are Mexican, this place delights all the senses! + +I love the tortilla department! 36 freshly made yellow corn tortillas for $2.50!!! + +the ladies at the meat dept were fantastic! + +The wall of spices, herbs, and chilis was incredible. + +I did not have enough time to sit and eat there but that's the plan for the next trip. + +I came home and made shredded beef tacos with all the fixings. + +My rec is come and linger and enjoy the sights and then have a great lunch either at the food court or at the restaurant next door.",review,3CcA1joMyDwWw3en9H6ecg,1,1,0 +Zw5fzZhYmrLgdM0CVmGTeA,2008-03-09,3NzDi8_xfY9BxKWMbeudPg,4,"the things I liked: + +the cart. + it was much smaller than a regular shopping cart, but somehow our baby carrier fit in it with-wise. * Update ( they got rid of the small carts.) +You can fill it up and not spend $300. This has happened to me before at Fry's, and its a bummer. +Since they are new, they are the cleanest they will ever be. I have a huge dirty cart handle issue. F&E like most grocery stores have the disinfectant wipes but that grosses me out more for some reason. +the steering on the carts was easy like ikea's carts with out the crazy hydroplane maneuver. + +The food. +Everything F&E brand had very minimal marketing on the packaging which made me feel like i was purchasing it for the quality of food, not how nice the fake prepared image on the front looked. +I have yet to taste it though, ill update when I do. * Update (Prepared food is kinda hit or miss) +They have only 1 or maybe 2 brands of the same exact item which makes decisions easy, either you want it or don't, no comparing labels and whatnot. which makes you end up buying less stuff. +It also makes for a shorter trip to the grocery store. No more putting off going to the market. Even though I have managed to make myself only shop the outside of the gigantic grocery stores (Produce, meat, dairy bakery) it still takes a long time to trek through the store. + +Last grabs. +If you needed they have a small pharmacy aisle grocery brand pet food, and baby care/household aisle. shampoo.... whatever. + +One of these things is not like the other... +so the chip aisle has F&E brand chips and cookies and all nicely packaged and then at the end were flaming hot Cheeto's? maybe thats the part where they sell local goods. frito-lay is the best we have? + +They do not take American express and watch out for the fine print on the coupons. * Update ( They now accept AMEX) + +$. +Somethings cost much less than at normal markets, and some were the exact same. +they also discount Items that are close to their expiration, so you can go ahead and grab that milk instead of pulling 3 out looking for the latest expiration. same thing with baked goods, meat products and produce. + +you will definitely see me there again.",review,nifQuBZYwHNnGLUU105EZQ,3,2,1 +b1rF_Y3xbdPwP_z9NHFMjQ,2012-08-15,MCx5Huqvz4riDCz6NVB-lg,3,"Not super impressed. The food was just ok. My friends said the French toast was good, but my Goat cheese, tomato and mushroom omelette had maybe had an oz. of goat cheese. At 9$ it was a rip off. The potatoes were good,but nothing special. The mimosa was excellent, but made from Andre, so after consuming it I had a headache. The service was slow, but they were good about refilling my coffee and water. Just an ok experience.",review,vYSCKlHb-hBhI2EClhX41A,0,1,0 +d52zg-S0o940WUCK-nNiKw,2008-07-10,t7riYnvm8v4LjawQ14YaeA,5,"*** I gave this 5 stars based on the best Mexican food I've had in AZ, not based on white linen and waiter service, just an fyi*** +I won't write too much as it seems that everyone already has. Both locations are GREAT. Some of the best ""homestyle"" Mexican I've ever had. I usually get the double wrapped enchilada combo that is pure saucy heaven! A great place to call ahead on a friday night when you're exhausted from work and not doing jack, pick up your food, pick up a six pack of Pacifico and head on home. Happiness is a sure bet!",review,4UUIpbOTPmu43wuC2aSGkg,2,1,1 +5llLE472tXsK620Hw14bqQ,2012-08-27,7FGx9bmNvfUzm4Aqv2kpag,1,"I was very disappointed in my encounter with them today. I have been going there for years and thought they have done a good job. Today I picked up my Tori Burch purse that I brought in to have a shoulder strap repaired. The thread they used for the repair was a light cream color. The purse and the stitching is a mustard yellow color. It looks terrible!!! They tried putting some cream colored shoe polish on the tread, no improvement. Now the thread just looked dirty. I told them that I was not at all happy with the repair. They just kept saying in thick accent. ""It's good, I fixed it good"". They would not refund the amount I prepaid, (prepay only store), or redo it with the correct color thread. Just kept saying. ""I fixed it good"". Looks like I'll be finding a new shoe repair place.",review,pzlW6_R3eloYVQKnDAP1Ow,0,0,0 +XU5Fb3TosXDUJcNRWQM5cA,2012-06-18,rDFViMA2UzKNCAJP40JqOg,4,"This place is always a hit. Even when you don't know what you want, they will help you decide. The baristas always have great recommendations. Often times I tell them what I am in the mood for, often times I let them know I love Nutella, and they give me suggestions. They also will make just about anything on the menu and mix it up for ya! This past time they mixed up a mocha freezeacino with nutella. Pretty darn good, tasted less watered down than sbux. + +I have gotten a S'mores coffee (not that great) but you know what? Its the thought that counts, what other coffee shop has a drive thru, local bakery items, friendly and helpful baristas that dont rush you in ordering, and unique drink ideas? HMM 32 Shea does. + +Come here, check out the variety, and the local flavors. You wont be upset that you did. + +Located over on the Northwest Plaza on Shea and 32nd just past the 51 freeway. Go there. Tomorrow morning..",review,7jWmd57QoJnq2q4QyvVS2Q,0,0,1 +gMMAz-WbNpl_825lWbMnkw,2010-09-03,HxINioRtsV4FsMCmubjiig,1,"pretentious and bad service - attendants are totally clueless (though I feel for them if management makes them wear the costumes they wear). overpriced fashion brands. if you want to spend $200 on a flannel, there are MUCH better options out there. run in and glance at the sale rack, otherwise avoid this place like the plague.",review,ezxgXFeFA15ooTd1d_rdeQ,0,0,0 +ht17atGW3tP8dFeiJkXI_g,2009-09-12,_UdpFKVDGxie0oAMHajvEA,1,"I play squash racquet's, a sport favored by the east coast ""elites"" from them Ivy League schools, those snooty Britishers and the Pakistani leisure class:) + +Why they let me play, I'll never know:) + +Last evening, we had a little tourney in which a group of us from the Village traveled to the outer reaches of Tempe to play a group from Lifetime Fitness:) + +It was a jolly good, show, ever so much fun and our Village group gave the Lifetime group a bit of a ""Rodgering"":) + +So it was with happy hearts and high spirits that we headed down the street to the post tourney repast at Skip & Jan's...let me start by saying that the Lifetime group picked this place, and it's almost like they knew they were going to lose and wanted to select a venue that would be the grimiest, greasiest, grubbiest, grossest spot to try to eat...they succeeded:) + +Where to start...I know...the parking lot:) + +When we arrived, the total Kelly Blue Book value of the 50-60 cars in the parking lot was about $832...we raised that by several orders of magnitude, just by driving in...this parking lot hasn't seen a lot of traffic from the Mercedes/BMW/Lexus/Jaguar crowd (and may never again:) + +After I safely parked a block or 2 away, I went inside and took in the look and feel of S&J...crappy old wood paneling...tables and chairs from a circa 1955 high school cafeteria...an intriguing mix of flat panel TV's, regular TV's and OTB results screens (yeah, you can bet the ponies here...the sport of Kings, in a slightly less than ""regal"" atmosphere:) + +They must have 20-25 pool tables...faded felt...and a whole bunch of people playing pool (and frankly looking like they weren't enjoying themselves...extremely tight and serious expressions on the faces of the people playing and watching...aren't games supposed to be fun? :-)...I suspect there was gambling going on:) + +The smell in S&J can only be described as ""extreme humanity""...the place smelled like it has seen a century's worth of spilled beer, cigarette smoke, BO, vomit, urine, spoiled food and every other aroma that humans create for themselves...remarkable, given the fact that this place can't have been here for more than a few years...how did they do that so quickly? :-) + +S&J has menus, they have some sort of kitchen, they have Jagermeister on ""tap"", they have a bunch of beers on tap and they had a buffet (or ""boofay"" for my friend Ryan C) set up for our group. + +It was supposed to be a Taco Bar:) + +S&J provided a table full of taco ""fixin's""...the centerpiece of which was the taco meat hot tray...Holy Crap, was that disgusting! :-( + +They told us it was ground beef, but I know my beef, and I don't think this was it...this was ground ""creature""...possibly some sort of unfortunate non-distinct animal which happened to be near the kitchen when duty called. + +I kid, of course...as far as I know, this was indeed, ""beef""...just not very good ""beef"":( + +The hot tray holding the ""meat"" looked like a relief map of the Hawaiian Islands...small mountains of ""meat"" rising out of the ocean of brown/orange grease that was the real body of the dish:( + +But, I was starving (a banana for breakfast and nothing else) so I tried to make a taco. + +I decided to forgo the slotted spoon that everyone was trying to use to fish some meat out of the soupy brine, and use some tongs instead...my idea was to try to squeeze as much grease out of the concoction as possible...I was sort of successful, but in doing so, I probably squeezed any flavor out as well:( + +I got back to the table and tried a bite...not good...I added several shakes of Cholla and tried another bite...and that was that:( + +One of my buddies had decided to forgo the mystery meat tacos and ordered wings from the menu and offered me one...I'm not sure what the deal with the wings was, but the wing I tried seemed to be boiled (no, not ""broiled""...boiled) and then dipped in buffalo sauce...not crispy, just wet...all the way through:) + +Then they announced that Karaoke was going to start soon...and that was enough for me:( + +Adding amateur singing to this tableau would have just been too much:) + +Still, it's not all bad news...the tires and wheels were still on my car when I was ready to leave...I didn't become immediately ill (although I had kind of a rough morning, this morning). + +They say shared adversity can make teams grow together, so I think I should thank S&J for making the Village Squash group nearly invincible:)",review,du6KeE54IFbPiXpU3LOd1g,12,10,17 +lwaLY3V7FyG_e9QUTP_N_g,2011-01-11,YWJJ14UU6t1DYPnZwtVJmQ,1,Pop the Soda Shop has closed its doors last month.,review,RvaQ6i9CdTpF_1MzKlUUaA,0,0,0 +Pfb6VOIiroqDWOebfgWGPQ,2012-04-18,hsnYdZvp03XaUq3LS5D_Pg,5,"The ""Cheers"" of central Phoenix.",review,4HFgiEBxnR4jh1diIvszDQ,0,1,0 +WbcGeIwJ3wq0tb1-3z9pig,2012-10-19,lu3ehH0xw46KwwtsErX8vw,3,"I think I went the wrong way, but I ended up doing a very isolated trail that wasn't too scenic, but at least it was quiet. It sort of just ""ended"" though and didn't wrap around. So then I walked the same way back which was kind of boring. I like trails that are on loops.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +cY4R1DvFA5iuM07D11p-WQ,2012-06-22,8sQrB4IBmIWnh6pLDArtOQ,5,"We just sold the car we bought at Carmax that spawned the original review here almost three years ago. + +As with the purchase, the sale was ridiculously simple. The appraisal took about 20 minutes, and came in ABOVE Kelley Blue Book ""excellent condition"" trade in value -- and the car was in good - very good condition, but certainly not excellent. + +A fair price, and no hassle. At a car dealership. Who'd have thunk it?",review,Tyi5MvquA5Hbf4t2WLoDcQ,0,4,0 +ZlvVCqFKTMK4rBkTQzVBpA,2012-01-31,8FwqFcl2Ez1NoovZr1XoHA,5,"Welcome to Downtown! Finally a little area with a few great chains. They also have PARKING! The parking is located on the east or south side of the building. We grabbed Jersey Mike's on a Sunday afternoon and took it home to eat. They are the best subs we have had. They are packed with meat and cheese. Might be little pricier then blimpie, but with it due to the over load of meat! + Check out a Jersey Mike's near you!",review,Br9mpMhkVunsp8Un5GpYWA,0,0,0 +a12JKFiqBVyaUfTWNaAzQQ,2012-03-05,S31ug5pvWwQpG7WpN8Cnyw,2,Ok so wanted to try this place out since I heard they were really good so I did and man I should have gotten the whole scoop on how long there wings take. After 45 minutes I asked what was wrong with our order especially cause there was only three other customers in there the employee went ahead and told me they threw my wings away cause the other ones were too small. I was like really I would have taken it by the end of the hour we finally got our wings and compensated by giving me one wing extra. Needless to say we ended up going to another restaurant and getting served fast. Call ahead an hour and you'll be ok there wings are good but an hour for ten wings maybe not...,review,bz-Ju0oa06-var9NnVl1vg,0,0,0 +YgqexscIgNoMBAO__J97zA,2011-08-13,YQDaR2OU0lDOOLAyaWWJrg,5,"Ok, these guys get five stars from me for many reasons. Before my visit today my other experience with them was for my wedding cake. They were very courteous and helpful, although I ended up going with a cheaper option. Today, however, they definitely earned five stars. + +I was there for a meetup event. We got a tour of their facilities. The owner personally did the tour, and did a great job considering I brought my toddler, who screamed through about 75% of the tour. At the end, he gave us a cookie and thanked us for coming. + +I know that some people think toddlers should be locked away so as not to annoy the general populous, but it's nice to know not everyone feels that way :)",review,Ar7DM2UX6e7LPsNfZlhJfA,0,0,0 +V5QdxePG-pGPXVPHSLLM9A,2011-03-10,ujJQzYdRFiD4gOiaG_WLMw,2,"I've been here four or five times and never been too impressed. The atmosphere, art installations and eclectic seating gave me high hopes. The location is also unbeatable, walking distance from my place. But the service has always been sub-par, like it's a bother to take my order and converse with me. Everyone here, including most of the clientele, seem way too cool for school. The iced tea, my usual, is good; the iced coffee is great-tons of flavor and plenty of body. Espresso drinks are pretty standard for your indie coffee shop. I've asked for their vegan pastry (which changes daily) three times only to be told that they ran out for the day. I know that this happens, and I love that they freshly bake their goodies everyday and have a rotating menu, but I would also like to try the vegan scone sometime please. + +Today, I ordered a strawberry-raspberry-cranberry smoothie ($5 for a small!) and confirmed with the boy behind the counter that the smoothies are vegan/non-dairy. He said yes then informed me that they use Naked juices for the base then just add fruit and ice. (Naked juice! So that's where the $5 price tag comes from!) Three minutes later, I was handed a delicious looking smoothie topped with...whipped cream...? + +Really?!",review,N8espxAsXtnQwrV1N6bTEg,0,2,1 +tyHtzC4k-MvsTZOBZ8YaWw,2010-12-01,or8IcCkFhvwb7nZJYkuB5w,3,"Decent Chinese food. I go often for take out. It is easy and convenient for those in central phoenix. I have had times where some of the food is great and other times it was bad. Support local restaurants, this beats panda express!",review,acOfAooftS7jdWlhyI0CQw,0,0,0 +FOfhEC6rN23RQaUlsR2byw,2009-05-20,K7MZYm_yL65WzvjKaWaoOA,5,"Pure Bliss - I haven't had a quality meal experience like this in a very very long time. + +The full 4 course dinner was stupendous and well worth every cent. + +You MUST try the Yin & Yang Martini! It was a very creative and well presented drink that had me all smiles. + + +I had the Smores & Chocolate desert and it was hands down my favorite (I've tried at least 5 others).",review,CwNFSTYMitNBkw0k2tHWtg,1,3,1 +thlCF7B2DIhkOuyQXj6liw,2009-02-05,Jlscuo6QCLcntzxKYU-6IQ,4,"I hate food shopping. Okay that is probably an understatement. When I go to a big market I am so overwhelmed and usually end up with a million things I don't need, while forgetting the things I do need. Fresh & Easy is small, but it has most things I need. I like that they have meats and chicken that already have seasoning on it and are ready to cook. This makes shopping extremely easy. I also really like their brand of food, especially the pasta. I think it's some of the best tasting store bought pasta I have had. Don't go here if you need to buy kitchen supplies like cake pans or cookie sheets. They simply have food, drinks, wine and beer here.",review,nGuemQk8wCFyohPz3Z-big,0,0,0 +c_Hgu6zirKI2l71TAhrTRQ,2008-05-27,kzDJ496oQJupxnwxSpBL2w,1,"Come on now, let's call a turd a turd on this one.. Waterfront is a stretch, its a canal, a stinking fucking canal.. leave it to the Scottsdale developers and planners to put a Scottsdalian slant on the turd.. kudo's to them! However, with its chain stores and restaurants on one side and pretty lame so far on the other (Southbridge) this has become quite a giant and over priced turd. + +Those skinny Scottsdale bitches that hang out at Pink Taco, words of advice.. Fucking eat something!",review,lPaYMDmJbAnv_3pmZH_inw,3,3,12 +7-4FxYXhNUS2lhpUb_q5-w,2013-01-04,jjikxZjxt-7cyXJ_wG92PQ,2,"I rather go to Native or Zipps... We have had bad expierence after bad expierence here. If you are craving wings, this isn't the spot for you.",review,qTkUpkvALOBP4HEmnNFy4A,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-11-28,hh-QPFiZVCMgRA4mdQ50eA,4,"Always good beer and good food. Well let me say the food is not super fantastic but it's better than a lot of brewery food out there. Spinach dip is good, nachos are always a staple, burgers could use a re-do. Salads are pretty good, pizza is mediocre. Wings are not half bad!! Sauce is pretty fiery! Nice!! Not a wussy sauce here! But I do love this place and the patio. Beers you can't go wrong with. Very flavorful good beers. All I ask is just a bit more quality in the food. Thats all thats wrong IMO or not really wrong but something they could improve on.",review,ePduC-tSwrMQRjKI4Suh7Q,0,0,0 +JEreQgso7MH_Io3DXGsEOw,2009-01-11,MS0zCVCzwz1Bl2rzSI-15w,5,"This is the best Seafood restaurant I have ever eaten in. I have to say it is not my kind of place. Very Scottsdale. But Man they know how to cook. I had a Special Shrimp dish of the night that was much better than expected and a very nice portion. The Calamari was 1000 times better than any other I have had. I am not a big fan usually, but this was different. It was not fried but pan cooked and even people that didn't like Seafood tried it and loved it. The Wedge Salad was good. We shared the Mac & Cheese, Mashed Potatoes and Peas. I felt the sides were the only things that could stand some improvement. I had one of the tasty Mojitos and some Yummy Creme Brulee for desert. I am super glad this place is far away because I would want to go all the time. It is a bit pricy, but I felt it was worth it. The servers were really cool. Not uptight at all. The only thing I hated was they have rest room attendants. Maybe it is just me, but come on. I should not have to feel guilty for not tipping someone just for handing me a towel that I could have easily gotten for my self. I have little respect for businesses that do that.",review,RAWy3YCE-jwfyuGvwzUaqQ,2,1,0 +_1QQZuf4zZOyFCvXc0o6Vg,2010-04-10,29gIHgYHr5qrHDgvohnqew,4,"This park is always a pleasant experience. Honey and I like to drop by the dog park and then take a walk and make a big loop around the lake. It isn't the greenest park in Phoenix by any stretch of the imagination, but it does offer a pretty nice view and lots of space to enjoy the outdoors.",review,gGNAr-cmCQUgA9B0QjVqAg,0,2,0 +G12nLnHLETf2E2pPW6grxQ,2009-08-10,2UK3nY_-cBhcsNIG0j3dMA,2,"i am so disappointed with this place. they consistently do a half a--ed job. after many disappointing visits i decided no more wasting money on crappy car washes from there. alas, i ended up with a free car wash (fill up your gas tank 9 times, get a free wash!) so i gave them another chance. upgraded it to the vip (the ""best"") wash for $8 more. also had the floor mats shampooed at $1 each. the floor mats were filthy when the car went in and spotless when they were replaced in the car - what a bargain! if only the rest of the car turned out the same. + +when returned to me a good 40-45 minutes later, the inside of my little car was still quite dirty, a good amount of dog hair remained, and the center area where the cupholders, change tray and gear shifter are weren't wiped down. let me tell you, there was definitely reason to clean those areas. danny's started the job, but never finished, and lucky me! i got to spend more time on sunday to complete cleaning my car. i paid $12, but should have paid $22. at either price this remains a very poor value.",review,GyFmGA5UQZ4pXdx1lUH86g,0,6,2 +nlFlIeziD-4nNUF2B337Yw,2011-09-28,j9NJMtwT6XfjjGTq7VmIuA,4,Foodie from Cali here on business. Nicely done dishes with authentic flavor. Ling Shrimp to die for - at ridiculous bargain prices. 5 stars if they expand menu. Very nice family setting.,review,EMc72I5KbhP76GI365zLaA,0,0,0 +zOCdVUKUN3b-obT67Qjyww,2012-06-12,DhCil3hVnLpP19AyhFYEFQ,4,"Given the dearth of German restaurants in the greater Phx area, this is about as good as it gets. + +Had the sausage sampler. The krakauer wurst was pretty unique. The bratwurst was good too, but brats usually have a pretty low bar to clear to be good. + +Had the Schweizer Schnitzel as a main course. Very good. + +The meal came with a cup of soup of the day, which in this case was mushroom. Very good. + +You can't eat ambiance/decor so I generally don't care about things like that but if the owners have a spare dollar or two they may want to paint the place and replace the drop ceiling. Neither of those things will keep me away but they may want to look into those things.",review,8T0evnkvRaTomru7ghPGeg,1,4,0 +Mng1FUcW-xRSdsDkowQm2Q,2011-03-26,rdYrEv2q__-rikfS54m36A,4,"Only 4 stars because I have seen better. Nevertheless, AJ's is a great runner up to my personal favorite which is the thriving local business of Portland, OR called New Seasons. If you have been to a new seasons you know that AJ's is the close primo of find food grocers. + +I will one day visit the the other AJ's in town. + +This place is a nice bike ride to from my house and has really nice employees...AND THE ONLY place near me that sells kombucha + +Relax and pleasant atmosphere. [like]! + +R\_",review,uOdEsOgPW48Ky4j8U8CEcw,2,1,1 +ZoyAoSEuihp9XDJrFrSgfg,2012-05-21,A4b-_Ja4o8AZu3ODZWrXwg,4,"Like this location, fairly close to my house and open late. Whenever I'm in the mood for some fresh dogs, I jet over here. Highly recommend their ALL BEEF mustard and chili dogs. Check out the fries too, super salty, always fresh and leave you wanting more! Not a big fan of their pretzel or corn dogs- expect a little bit of wait, perfect hot dogs don't take minutes to make!",review,9UK28WYQvS7aXyNfa_hLCQ,0,1,0 +er20L6Wzviiin8OS9FqFmg,2012-11-26,mqCgkT6BlvxFxoPrwqVsaQ,1,"Hands down, the single worst public mass transit system I have seen ANY PLACE I have ever lived or traveled to (and I am an avid world traveler). +I've been riding this system on and off (I vaccilate between non-Phoenix-metro cities and here a lot) for roughly 10 years, and yeah, for a few of those years I would also drive a car here and there, so I have a sound basis of comparison. + +This is a joke compared to other cities in the USA (and abroad) that have equivalent populations. Hell, in NYC and LA, it's SOOO much easier to get around even though those places are larger and more densely populated. Phoenix is easily 30 years behind every other city-size comparable mass transit system that's out there. Get with the times! + +We need: busses that run MORE than once per 1/2 hour (and that's at it's current fastest), busses that are ON TIME (DAILY, they are never on time. Always way too early without waiting, or way too late without apology), more stops, stops that have actual BENCHES or SHADE or POSTED INFORMATION of any kind. I cannot even imagine how travelers get around on this thing, nothing is ever posted with any relevant info or signage. + +Etc, etc, etc. +But seriously, just god awful and a complete joke to anyone who has ever experienced public transport anywhere else.",review,eMmo2Fsn-CdGSd7pn-UeSQ,0,1,0 +o0snahBUg0DYC5PIM0bz3Q,2009-05-10,Ue1JRuKUbAIgEjxNa_Eimw,4,"This is one of my favorites stores to head to when I need the motivation that comes from new triathlon clothing and accessories. The staff is knowledgeable and helpful, without being intimidating. + +They have a decent selection of women's items that are high quality and come with a high price - so I normally head there when I'm looking for race wear/accessories and go elsewhere for regular workout clothes. They do have some sale items, and recently I found some great Pearl Izumi tri shorts for half off - woo hoo! + + +It's great to have stores like this geared towards triathlons!",review,lwppVF0Yqkuwt-xaEuugqw,2,3,2 +s-jfTJnAIdyvIw2Fh2QcGg,2012-09-03,kyiRmJfVvZWBfwXq1NRm9w,5,Had a great experience. DId not feel gouged or pressured and our dog got the proper treatment for dehydration. Friendly staff. Prompt service. Special attention from Dr. Heinritz appreciated. Very professional.,review,kk05snSafuIFK0lsxoMNzA,0,0,0 +DlCtdbceo4YNSI53cCL2lg,2012-04-25,odTTd7Ym2kuHDSHxeMMOYQ,2,"I heard nothing but praise about the food and atmosphere of this chain restaurant. + +I loved the look of this place inside and out. Great rustic barrels and old barber chairs in the bar area gave a unique look. + +Service was friendly and fast. + +Food was less than desirable. Salad was nothing but iceberg lettuce (and I got a stump) with some shredded red cabbage. My pasta dish was spaghetti with a white clam sauce. It was too salty and there was a sprinkling of microscopic clam bits. + +I always take leftovers home, this time I didn't. While the prices are good it's not worth a less than average meal. Husband was equally disappointed with his chicken marsala. Chances of going back are slim to none.",review,sdeN4Dj0GI4uXoxrFqxs2g,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2011-12-01,ZH9ZTGk56ZLkGtx2hM8GGg,5,"awesome iconic eatery! whenever i visit az i make it a point to stop off at this ultra friendly, fantastic tasting joint. + +yeah, it takes a while to figure out the ordering process, but the staff is super helpful, and after the first or second time, one can figure out the system. it's just that everything is abbreviated which requires some thought. + +i usually mix 2 entrees to get different flavors. love the jerk chicken and fiery pollo diablo. + +although they are known for their snicker doodles, my dessert is usually ordering another entree to take home for later! + +hands down one of my favorite eateries. i wish we had one in minneapolis, mn...i would probably eat there daily for lunch, ha!",review,cTeWfsM-BLjmOHjhq3CoaQ,0,3,0 +9ziO3NpoNTKHvIKCBFB_fQ,2009-09-27,yi_jGkfR9r3ebTNrGyNHyQ,4,"Well, our initial plan was to go to Tuck Shop as I've been wanting to try it out. Unfortunately two ladies got there 1 sec before us and got the last table, the waiting area was packed with a group just hangin' and they had a 16 ppl reservation for later. There had sitting available right away at the bar but I'm pregnant and my back is killing me so bar stools were out of the question. They were very apologetic, which I thought was nice considering if wasn't their fault. I'm glad they're doing well. So I asked my husband if he wanted to try District and off we went. Actually, I made a reservation in case something happened and well, we ended up there. + +Nice and spacious, not crowded at all. They were part of AZ restaurant week and we ordered from that menu. + +Shrimp sliders- I loved them! They should have a big version of it! +Duck quesadilla- Very good as well, but I'm partial to anything with goat cheese. + +We both got the country chicken steak and it was really good. Mine came 1 med, 1 small pieces instead of a big one. The med piece was a bit dry and the breading was slightly burnt. The smaller one was perfect, juicy and crispy. The breading flavor was really good, slightly spicy. The biscuits were awesome!! More of a cake-bread texture, light and fluffy and kind of sweet. Green beans were tasty as well. + +Strawberry shortcake whoopie pies with lime basil sorbet ( I think it was a sorbet)- It was good, but not something I'll order again. The pie filling was too sweet, even the tartness of the sorbet couldn't help it. + +Service was prompt, no hovering or having to wait for too long and our food came at a perfect pace. + +Great dining experience and it made me forget about Tuck Shop. I still want to try it though.",review,h9d3VW5RTJymoFoLnN60_w,0,0,0 +hCS5eV0SCAY9LeeL36lz8g,2007-09-12,8BBl5FFZIacaNYjqFmvFww,2,"Are you stalking me? Heres a hint: I'm not at Myst. Ever. + +The crowd is too young (think ASU's entire Greek scene), too wasted (think puke-your-face-off drunk) and too retarded (think OHMYGOD we SO just got into a club and were only NINTEEN!!). + +I freaking hate this clucterfuck. + +House music is not my thing, watching underage girls snort coke in the bathroom is not my thing, and fighting through people who are under the false impression that they are cooler than me is not my thing. + +They have world-renowned DJs in there every once in a while and a pretty decent chance of celebrity sightings which brings Myst to a whopping 2 stars.",review,E0WWNXVze_sfDCbM0oMYvw,2,5,9 +7MgPdPftHcoxeZlmPTewTg,2011-11-14,wTSwC4Ay7f2eEHBQ0tL9yQ,3,"So.... our teenage daughter ran out of toilet paper. +No problem, right? I'll just use paper towels... for 2 days. + +Yeah, it was a mess and Roto Rooter fixed it. +For only $400.00. + +so then... they come back the next day to snake a camera thru the pipes. + +I think maybe they were looking for problems because well, they found them. + +Price quote.... between five to eight thousand dollars to repair some pipes. + +Errrrrrrrrrrr..... I don't think so. + +Did they do a good job with the problem at hand? Yep. + +Were they expensive? Yeah.... I guess + +Do I think they're now looking for an extra paycheck? + +What do you think?",review,xgqxRjWRQvGPr8h3IA8OwQ,0,0,0 +y0weNFCIJF9bTgBbFST86A,2009-12-31,XUcbXq5_eScUH3sRiVM6Qw,3,"I have been here for breakfast twice. Both times the food was very good (love the biscuits and gravy!). It is a bit of an older building and everything looks a bit run down. Service has not been phenomenal. Last time we arrived the host person had just left to seat the couple that walked in before us. The manager and FOUR additional servers were standing at the cash register chatting. As the entry way is small..I could hear their conversation. It was just chit chat...not a meeting, nothing important....but apparently not one of them could see fit to either acknowledge our existence or walk us to one of the many open tables. After a few minutes the host came back and took us to our table. I assumed the manager just felt that taking a group to their table (or asking one of the wait staff to do it) was beneath her. But then as soon as we were taken away, she promptly seated the family that walked in behind us. Grrrrr... + +I enjoy the food, the portions are large. The food is very heavy comfort food. Service is so-so and the manager does not seem to care about her customers. If not for the service I would give them a 4.",review,Vr6mx8xKm_FyBUkmLweRIw,0,0,0 +He9Dar4bk2vyeiPC7TkUgA,2011-05-21,x0x4lsz_9BT-Hjr7TrzMKA,2,"I went to Eddie's House last night with the BF and two friends for restaurant week and it was a terrible experience. First of all, I had made a reservation for 7:30 more that a week in advanced and we waited until 7:50 to be seated. This was a bad omen, because, as it turns out, the whole night was made up of waiting. Our waiter (who did not share his name, unfortunately because I would tell anyone to avoid him at all costs) was terrible. TERRIBLE. He came by 4 times before taking our order when we were ready after 5 minutes. Each time was a weird excuse. First time he came by I asked for a restaurant week menu, he said 'a restroom menu?' Why would I say that, then I ordered a glass of moscato and he's like the XXXX (whatever brand it was) and i looked down and it was the ONLY moscato.... I was like ya... WTF? So I screamed what I wanted and he's like oh.... sorry.... I can't hear. Then he said 'Oh hey, I'll be back to explain things.' Explain what? we're clearly ready! 'Oh hey, are you ready to order? Well let me go take the order of that big table back there and I'll be back to take yours' (real quote) WHAT? Seriously? We waited over 40 minutes to order. What's worse, is that we looked over like where the ef is this guy, and he was chatting at the bar!!! What, were we not wearing the right clothes? Were we not hip enough to be served? Or was it that we were ordering off the restaurant week menu, are we not ordering enough to get service? Come on. + + So he finally took our order, and we each ordered all three courses at once, because who knew when he would decide to come back. We got drinks, everyone got beer, except me who ordered the moscato. This was good, but was served in basically a thimble, it was the smallest glass of wine I have ever seen. Then we waited... and waited... and waited. We ate the whole basket of bread (which was great, but overshadowed by our terrible service). We got our appetizers, we had at least one of each available (a peach soup, a salmon flat bread, and a fetoush salad). The soup was really weird, not bad, just different. The salad was overpoweringly oniony, but still tasted good, although it was supposed to have toasted pita and had one tiny piece... and supposedly the flat bread was good, but I don't like salmon, so I didn't try it. Then the waiter came by and said 'oh we're really busy tonight, that's why it's taking a long time for the food) Notice there was no apology or accommodation of any kind. He also asked if we wanted bread with dinner, we said yes, but no bread ever came... weird. + +We waited and waited and finally out food came. I ordered the chili chicken, the two boys ordered the meatloaf, and my other friend ordered the shrimp. I thought the chicken had a good flavor, but was really dry. The meatloaf was fantastic! It was really quite delicious, with onion strings, mushroom jus, and mashed potatoes... yum. Supposedly the shrimp were really spicy, but again, I didn't try it. We ate everything, so again, the food was good, the service was awful. + +So then the waiter comes by (about 10-15 min after we had finished) and says, oh do you still want dessert? um.... yes, we ordered it and it comes with our meal.... he says 'oh, cuz I think we just ran out of the pot de creme, but I'll look' Well two people had ordered the pot de creme TWO HOURS AGO!!!! Why weren't they left aside? 'Oh we had 200 more people show up tonight that expected' Well, We had a reservation, so it is not our fault that you cannot staff your restaurant appropriately or turn away customers when you are too busy to handle new diners. It does not make sense. What kind of greedy restaurant is this that they can't refuse a table when people who told them they came to eat there can't even get anything off the dessert menu. It turned out they had one left, then the other person who ordered it said, oh ok, i'll have the peach crisp then....'oh, well we're out of that too cuz like it's made fresh from peaches and we didn't buy enough for all of the extra people....' + +Maybe if we had been served in a TIMELY manner instead of over two and a half hours, they wouldn't have run out. Oh, and maybe if the jerk who was our server had put aside the desserts for us when we ordered it over TWO HOURS before the time when we actually got dessert, that would have been nice too. The desserts were good, the pot de creme was the best, the rest of us got a 'tiramisu' which tasted like cookie dough ice cream.... not exactly what I want in a tiramisu, but fine, I guess. + +Finally, we get the check (around 200$, so clearly we didn't spend enough money to warrant any service) and we right out how we want the bill split between the two couples, The waiter comes by, and the BF starts saying, oh we wrote down the amounts we want on each card. The snarky jerk waiter says 'Oh, you mean follow the directions, ok.' So much attitude! So rude. I wish we left no tip, cuz that's what was deserved. NEVER AGAIN.",review,3gIfcQq5KxAegwCPXc83cQ,2,2,1 +X8tfJzFU-pNxWnZk1la03Q,2012-12-14,LcM1Fv1KH8HObAF3S9wc9w,5,Love Sam's Club! Especially those little red velvet cupcakes and Chocolate wine ... the best! We always do most of our grocery shopping here. Always a treat.,review,Vm3gOJgj0vm7LcPbCy81jg,0,0,0 +qgJZUKNVY-LbGKk6XEP3JA,2011-05-13,lui8As2bSMnGyfylWuWymA,4,Excellent cheap Mexican food that tastes as good as any Mexican restaurant.,review,ho8wr8j_v1eUIR7ql-IZqw,0,0,0 +oRqBAYtcBYZHXA7G8FlPaA,2010-10-28,71vU5dwqlNFw1BgBIdHpug,4,"Breakfast. The best crispy chicken fried steak and eggs this side of Texas. Served with country gravy, hash browns and garnished with a slice of cantaloupe and honey dew melon for under $7. The green chili cheese burger is also one of my favorites, served any time of day or night. Only down side is getting past all the unwashed morons gambling and chain smoking cigarettes.",review,oSeZjRZ4fW1jRBqCLbXw8A,1,2,2 +dpbY5XypBdeFmo8DsZ-DNQ,2009-06-23,HevVsp4bXL6mK0WL9HTciA,2,"I liked them a lot until I had to call them to get the discount fare for the toddler but since I was booking our tickets together (because a two year old legally can't fly alone so I HAD to) on the phone, I wasn't getting the lower internet rate. That's extortion! I'd much rather do the entire thing on the internet. Then he tells me that the child's fare goes off of the regular rate which is only one dollar less than the internet rate. What the hell? Why would I ever want to sit on hold for 25 minutes to book a flight to get this crap? Then they tried to get me to pay $15 more for the next class up (I know, upper class on Southwest - strange). I asked what I got: 1.25 times the miles (yeah, you heard right 25% more - that's going to get me far), first boarding and a free drink. I clarified that with a child I get to board first anyway (they confirmed this). Then I asked how much a drink costs. $5. So essentially they are asking me to pay $15 instead of $5 for a drink I may or may not want (then again, I'm traveling with a child so who am I kidding, I'm going to need a drink). And to top it all off, they tell me we can't do on-line check in because Beckham doesn't have a picture ID. I tell them but he does have a picture ID. He has a passport, in fact he has two. The Southwest person tells me no one has two passports so I tell him that no, it's true. The toddler and I both have two as we have dual citizenship. (Not that we would need them to fly to California so the whole conversation is entirely pointless now.) The Southwest man being the all-knowing scholar he is tells me that's impossible and illegal. I take a deep breathe, tell him he's right, I'm wrong, how stupid I am. I must be thinking of my library card. Why are things so difficult sometimes?",review,qABKRj1ggJmtvrL9FMFtuA,2,2,6 +eONS7DP6U9BV3lkqGAUbOg,2011-04-10,-RZOjwTx2zuzDScS6PAJ6A,5,I have been eating at this Waffle house since I was a teenager and it has never failed to provide good food. The employees are courteous and the service is fast. The portions are good for the price and the small dinner feel is great to eat in. I have gone here many times with my disabled brother and have never had any problems with the staff or employees. I also like the fact that they are one of the few 24 hr restaurants available to eat at and this has come in handy many times.,review,LycBOkA2piDMQTdpkY5YoQ,0,2,0 +Xk41spRMMo2C7Nn8YQIL0g,2012-11-15,TBiRPB5omVfLnxdLH0OrKg,1,"Don't do business at this unethical business. My $25 savings account from 2009 was recently stolen from $5 a month for ""account inactivity"" fees. They are a bunch of crooks. + +It appears you now need to nickle and dime your customers with BS fees in order to stay in business. + +Account closed.",review,yDlBXvcE-QDrvwz1GkkGWg,0,2,0 +mwiNm868yAo8Xh8hO7Ke_Q,2010-06-11,knrnhQgymzmGa7PdA20hqQ,5,"Can't wait to go here again. Had the shrimp po-boy and some homemade banana pudding. I'll write more as I try different things on the menu, but what I did have was delicious.",review,z-JC1S58qaW8WNiOzUh_TA,0,1,0 +2nzUx_M8Szyzsf4CszHasw,2012-07-02,gcCqSFBKlWVMYZvpo6jiiw,4,Reviews are dead on good food good service in a little bit of a strange out of the way location.,review,ptZHJS6B2bQBGadUbPpZVA,0,1,0 +yIRwXAtC3zLGy0_FaBecpQ,2011-02-21,y2z2ITDv-VbeUcjeKWYqeg,5,"I love the urban feel of this place, and the swanky Apple Store is a big enough draw for me! The place is brand new, so not too many things are going on yet, but more stores are opening all the time! There's now a really high-end iPic movie theater, a frozen yogurt place, a great Nike store, and much more to come in addition to H&M, West Elm, and the delicious Oakville Grocery Co. +Parking is fine and it's easy to navigate. When you're done here you can walk to Kierland across the street, too! :) +Can't wait to see what they do here in a few years!",review,MgCaRW7WA3qcEnKqFLzJpQ,0,0,0 +WFDxa8r0sT2ZnehYTyT1LQ,2008-07-03,H2hDhhaxkqbQ3R2vnLfnEQ,5,"The hubby and I stayed here on our wedding night. We didn't arrive until midnight or so (we partied late :)) and the service was still impeccable. After our car was valeted and we were golf-carted down to our casita, we were left to enjoy our night of solitude. The room itself was beautiful; king sized bed, fireplace, patio overlooking the golf course, vanity, ipod dock, jetted tub, separate shower, and plush robes and slippers. + +We ordered room service probably close to 1 am and it arrived promptly. The boy ordered the veggie wrap (he said it was delish) and I ordered the tossed greens salad with balsamic. For $13 the salad was a total miss. Just a few mediocre lettuce leaves, tomatoes, onions, and cucumbers thrown on a plate. I was hungry though, so it worked. + +The next morning we slept in as late as we could. I woke up with the worst heartburn (thanks, balsamic!) so I called the front desk for some Tums. No problem, they arrived pronto. We packed up and called for a ride, and although they said they were busy, they arrived shortly after. + +I would love to come back here and stay a little longer. The service was great, the place was beautiful, and for the one night we were there it was damn perfect.",review,4dnDsoHuxUtzhaumxbpR5w,2,3,0 +LWtoosGlzTOp8A73Jh7cQw,2010-11-06,MIsgATnbThCXCW4rkeusFw,1,"If you're looking for a dining experience at Fry's deli area you're better off going to an actual sit down restaurant. Fry's ""dining style"" food in the deli area is very substandard at the best.",review,NqcLDh324mINcicHKspQaA,0,0,1 +byhwHi0lhYdyY5kSpuqoaQ,2012-07-02,wOZFAHNrN5n_eKMpq_tBSA,3,"Meh. As my fellow Yelper said to me a few days after we ate here: ""No Brio review, I'm shocked!"" + +I didn't jump on writing this review because I was pretty underwhelmed by the experience. The ambience sucks, the service wasn't very good and the food was totally average. + +My cursor is blinking at me and I still don't know what else to say about my time spent here. + +Ambience- looks like an Italian cheesecake factory. Why are the collumns so huge?! + +Service- the bartender kept interrupting us to take our order when we STILL weren't ready. Jeez, does it look like I've moved my menu in the 53 seconds it's been since the last time you checked? And then disappeared when we were finally ready. + +Food- +-carpaccio, not bad but does it seriously need to be that huge? The two of us didn't even come close to finishing it. +-Mediterranean pasta, pretty much the only one without a cream sauce on the whole menu. They split it for us which was nice and it tasted all right with mushrooms and chicken and stuff. +-tiramisu came out frozen. They were super apologetic and didn't charge us for the replacement, but it was still awkward. They obviously just heated up a piece which made it melty and just not that great. + +So yeah, that's that.",review,palND-kF1qpMLhkcgAnSxA,1,6,4 +PEOP7kZ1E4BJx3YzLMrmpA,2009-06-22,kaPlVg8eKyQRaiIBvKn8bw,3,"RIP + +I drive by here every day but looked over and saw the place dark inside and the signage ripped down. They never did quite recover from the roof collapse thing. Was the only Vietnamese place by my work, now sadly, there are none. They should have offered Banh Mi for lunch. Woulda-coulda-shoulda.",review,lPaYMDmJbAnv_3pmZH_inw,4,4,3 +fPExBO1aXA5c4uwlHFyx2Q,2012-05-26,u7z8eIS1XIS6evTZCI5y_Q,2,"A very inadequate meal and expensive for the low quality food you get. Ordered the veal sorrentino and it was not enjoyable to eat. Very dry, tough...just gross. Caesar salad was also disgusting and unpleasant, saturated in dressing. I did like the atmosphere, laid back and comfortable. Knowing that Pasta Brioni is down the street, I won't go back.",review,Kt9NwDONle_mc0QHTud9jw,1,3,0 +KS2w8ychyieJbUqRa6kCHw,2011-03-07,hWlg-33v0VuSgHPYw20sBg,5,"The first couple of times I ate here I wasn't sure why people were always so crazy for this place. It's been about two years since my last visit and in the past couple of months I've already been here like three times and wanted to go back more. I've decided that it's all about what you order; for example the first time I went I probably felt overwhelmed with all the choices and decided to go for something really plain like turkey with hardly any toppings, have fun! Their menu has a wide variety of yummy sandwiches and lots of new tastes to try. Also, don't be afraid to speak up. I was a little disappointed by the lack of lettuce and veggies on one of my veggie sandwiches but I also didn't pay attention. Now I ask for lots of lettuce and they're happy to make it the way I like. They make their breads fresh and they have garlic-herb bread that has lots of flavor. I won't order a sandwich from there without a side of ranch dressing. I am a picky ranch eater...I hate mayonnaise so I am always super careful that ranch doesn't taste or resemble mayo. I usually like restaurant mayo that is a little more runny in consistency with lots of flavor. They have the best home made ranch dressing here! Pair it with the garlic-herb bread and your sandwich is going to be booming in flavor. OMG! Wipe...sorry I just started to drool a bit. Service is good...everyone runs at the same chill pace which seems to go well with the theme of this restaurant. My current favorite is the Humboldt sandwich...I get the Pinner (8"") but I swear some days I am so hungry I think I'm going to order the Blunt (12"")...maybe someday soon. All sandwiches get toasted. Okay so toppings: Guacamole, sprouts, lettuce/spring mix, onions, mushrooms, tomatoes, black olives (I get mine w/o), cucumbers, pickles, your choice of cheese (I get Swiss), with their house goodies (EVOO, vinegar, herb mixture on top). Now that I found my sandwich, I crave it all the time and can't wait for my next visit. Oh, be sure to check their daily specials too! If you're lucky enough to be in their delivery area...well, darn you then! :-)",review,PnEAXZ7WyJMYBr9IIulh5Q,0,0,1 +PdWe3jF9YEu5fWBiQXZIgg,2011-09-18,v2pJ8c_jHYNOs975wrzXLA,4,"Having been to Dave & Buster's in California, I was pleased to see one nearby in Phoenix. Our family enjoys the games and food offered at D&B's. It's not the best bar food you ever had, but it's alright. + +Some of our favorite dishes... + +Chicken Sandwich & Fries +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=pL9gMcMhSu66djzRs0EE0g + +Sliders, Wings, & Fries +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=duqkD08yPYfZzK2BdwXSOw +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=gmI2y1_o4YxyNsuhu4-PGA +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=-SYnpluFm_tcBObKnYpR1w + +Chicken Sandwich w/Bacon & Sweet Potato Fries +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=EkZL6PdNv4kkgopmT6IK8g + +Besides the video games, my Son and I enjoy shooting pool on their championship size (9 ft) pool tables. +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=_L7O1ZhQ9EDnO1LHv9b10g +http://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=6IveT3g9EW-lLEjwbrblZQ + +Overall, it's one of our favorite places to go where the entire family can enjoy a night out. They serve alcohol at the bar and restaurant, so the adults can enjoy themselves while the kiddos play games, bowl, shoot pool. + +Return Factor - 100%",review,kGgAARL2UmvCcTRfiscjug,6,10,1 +lPAHpSIc2MvY06bWxrFRiw,2011-01-16,9CliOMtR7Os75O8gQpd2NA,2,"I used to frequent this place when it was Long Wong's. The food wasn't good back then but it was open 24/7 and always available. + +Since the change in ownership, I have been repeatedly disappointed. The size of the menu has gone down drastically (which is understandable, Long Wong's menu was way too big). They only serve slices of pizza at certain times of the day now (noonish until 3pm supposedly I think? and again some time in the evening) and you never know if they will actually have slices. I understand that maybe they don't sell that many slices in the off hours, but I would gladly take a slice of pizza that was an hour or two old over none at all. Not to mention even at 3pm it is not uncommon to get a pretty old slice anyways. + +The burgers are so-so. Better than McDonald's, but just really not that good. + +I've only had the cheesesteak once, and boy was it a disaster. I bit into it and what must have been a full cup of liquid poured out of it. I'm not sure how this was possible, but it was almost like it was sabotaged. I'm sure this was a one-off problem and that they are not normally like that, but I was horrified and have not tried another. + +The owner is eager and you can tell he is really trying to make the business work. However, the staff he hires can be very rude sometimes. I've heard some snotty tones of voice saying they had no slices when I've tried to order a slice of pizza during the off hours and have been refused a simple refill of my soda when my order took far longer than expected. That said, I have not been there in a few months so this may have changed.",review,lyESkeFLTfHNwTCH5H5jnw,0,5,2 +9U9wBfux57bQm1wUSuviWg,2012-07-03,0t2VuH_Dc9US_jMxg-B-dw,1,"Staff is nice, and that's it. +They use very cheap tires that only last for a year.",review,H2jcFGSS1n60jcKPBb-IoA,0,1,0 +Vm9GQUptdZmBM9R7tZ9_Tg,2011-09-24,YzF--NlN0I1D73ZF-kZ3lQ,5,"The customer service at this Macy's was seriously out of this world. Both my mom and I (who were visiting from out of town; me, San Diego and her, Baltimore) have never ever experienced such friendly and helpful customer service at any department store, anywhere, EVER! We were there late at night- probably for the 2 hours right before closing on a one day sale day. In every single dept. We went (ladies dresses, ladies shoes, men's etc) EVERYONE was soooo nice and helpful. Most of our visit was in ladies dresses. Those reps did everything possible to help us find dresses in different sizes (which can definitely be challenging at the end of a season and at the end of a one day sale when things are haphazardly placed everywhere) and to call other Macy's stores when we were unsuccessful in finding a dress at that location in a particular size. Sure, they wanted a sale, but to be so helpful so late at night, right before closing, after a long one day sale was shocking. We must have encountered at least 10 different sales associates while wondering through the store and each and every one was soooo nice and helpful. The selection (at least in women's) was better than most other Macy's I've been to, to boot. + +I wish this was my local Macy's! Go here- hopefully your experience is just as good as mine :)",review,IX0FwVlVJCofw066Gm3OPw,0,0,0 +Pfb6VOIiroqDWOebfgWGPQ,2012-06-23,yE_xCqhT1F338Y7G2ZfGbg,4,"We keep coming back! I love this place. The food is always so good and even when I ask the kitchen for the naked cheeseburger, they make it pretty. And its delish and I love me a cheeseburger. This last time I ordered a vodka tonic and asked the bartender to surprise me - either Belvedere or Ketel. Back came the most frosty delicious Belvedere vodka tonic. Perf. The lovely, as prefers, mans up to the filet. And is always happy, sipping his pinot alongside.. + +I just wanted to say, yum. And we'll keep coming back. Thanks PCG.",review,9vxUUOoasnu8gtoXRwAhYw,0,1,0 +N84LyJdpPLoGc6Pg2Y46iQ,2011-04-18,--DazeDpOApabZnIOIPSrQ,5,"I don't know why I waited so long to visit Yogurtology; it's located conveniently next to my Safeway. Why did i wait so long?! + +Yogurtology has perfected self-serve froyo. The flavors are spot-on...lemon meringue, birthday cake, NSA coffee, peach mango tart, cheesecake, mango, rootbeer...the list goes on...I always end up getting oatmeal cookie. It's made in-house with real oatmeal cookies. We're talking oatmeal cookie literally IN the froyo, none of that artificial flavor crap. It is incredible. + +Instead of having little placards for the flavors, there are digital Sony TV screens that describe each flavor and a brief nutritional run-down. Very high-tech! + +The selection of toppings is unparalleled--baklava, three different kinds of twix and milky way, brownie, chocolate chip cookie bar, chocolate covered waffle cone, premium fruit and nuts...anything you can imagine, Yogurtology has it. + +Not only that, but the shop is impeccably clean, and the staff are consistently cheerful. This place blows Yogurtland and Yogurtopia AND all other Yogurtology locations out of the water!!! + +This is where you want to go.",review,qZrArI2ohkYkQlELl13BKQ,0,2,0 +NtRs2Xd64mRLe6jGUTXziw,2008-04-06,kQeE0069xdN0OSPi-OWqGg,5,"I grew up at this library. And now I am old and married and hope to someday take my very own kids to this library. They have a great selection of audio books. I am a major audio book fan and this is the place to be! + +Clean, safe, you are not bothered by stranger dangers. I dig this library.",review,XBHJCDzNh--mBhJkzyM_iA,0,3,0 +wNUea3IXZWD63bbOQaOH-g,2012-08-20,AdHAs38Gc8yRragQootP1A,1,"Terrible rolls. The Dragon was so so. The California was bland and the Spicy Tuna was cat food. Seriously, it looked like canned cat food and tasted horrible.",review,bcAxFAPQrsLAQV0w4GpFBg,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-11-14,y2mMYEcV2hWCNMdq8BYx8g,5,"Having just moved to Scottsdale, I had seen Four Peaks brews at local restaurants and couldn't wait to try it. My bf and I visited the brewery after a long day at the Phoenix Zoo. The location was easy to find with plenty of street parking (although it could be difficult during peak hours). We found a nice table on the half-indoor seating area. The ambiance was very cool, with a converted loft warehouse sort of feel. + +The bf had the beer sampler, which I helped myself to some sips of. I ordered a pint of the Kilt Lifter, which was a great deal during happy hour. Next, I tried the Pumpkin Porter (full price, even during happy hour). Foodwise, I had the pub fish and chips, which are battered in Kilt Lifter, and the bf had the french dip. Both items were on par with good quality pub fare. + +Kilt Lifter: great medium brew, very smooth. The type of beer you could drink every day and never tire of. Pumpkin Porter: we loved it so much, we purchased a growler so we could take some home! Note: there is an extra charge for filling up a growler with a seasonal brew. $4 for the growler itself, $10 for beer, and $5 seasonal charge. Normal refills of growlers are $10. + +I am a beer lover. I have spent time living in Munich and drinking some of the best beers in the world. You can't go wrong with Four Peaks brews. Next stop, North Scottsdale location. Closer to home and hopefully just as great!",review,9eeqmxfVfAT4oyA4y2WcNg,0,0,0 +KV-yJLmlODfUG1Mkds6kYw,2008-10-19,ybdnA5ohyA1lj3C0FRYK7w,2,"Oy ve iz mir! + +Not to be a kvetch....but I consider myself to be an expert on Jewish delis. As a New Yorker from a predominantly Jewish area and married to a Jew, I've had more than my fair share of experiences at them. My husband and I woke up this morning with a burning desire for a good bagel, corned beef on rye, and a knish. So I schlepped all the way up to the PV Mall to get it. + +Ok, first of all, the decor is terribly schlocky. Its kind of like the tourist trap Jewish deli you find in Times Square. Its like a Disney version of a NY deli. + +I take my number and head over to the cold case to get some drinks....of course they didn't have regular lemon Snapple (and why should they? Its not like every deli, pizza place, and convenience store in NY carries it....) but they did have Dr. Brown's Cel-Ray which is always a welcome sight. Another thing they had in the cold case which I found to be odd were jars of Nathan's pickles. Nathan's, like the hot dog place. I would imagine a Jewish deli would have Ba Tampte pickles....I didn't even know Nathan's made pickles! It was a little lame to be honest. + +Anyways, I go up to the counter where there doesn't seem to be anyone working. There was no organization to it. So I waited. And waited. In New York, the deli is a finely tuned machine designed to move people quickly. Chompie's? Eh, not so much. When I finally did place my order, the guy who took it had a hard time punching it into the computer and asked me to repeat it several times. Despite saying I wanted my bagel toasted several times I was given a cold, untoasted bagel. I waited a little longer for my order to come up and went on my merry way. + +Here is the breakdown of the food we ordered- + +Matzoh ball soup- Surprisingly good. I have never had matzoh ball soup with carrots and celery...so much chazerei! Just give me the matzoh ball! Although, I will admit, it was solid. I wouldn't go all the way to Chompie's for it because I know that I can make it better in my own kitchen. + +Plain bagel ""toasted"" with cream cheese- Terrible. The bottom of the bagel was entirely too thick and was very hard. They didn't even cut it all the way through, probably because the crust is too thick! + +Corned beef on rye- Meh. The corned beef wasn't very good, it wasn't corned enough. If they make their own they didn't use a piece of brisket that was fatty enough. The rye (which was not marble rye...) was lackluster. It couldn't handle the corned beef, became soggy, and eventually fell apart. The pickle it came with was the grossest thing I've ever seen. And it was definitely a kosher dill, even though I asked for a half sour. The potato salad was actually really good though. + +Knish- Terrible. The knishes in my elementary school cafeteria were better than this. First of all, the outer crust was way too flimsy. It should have been much, much, thicker, especially considering the gargantuan size of the knish. We essentially ate a large plate of mashed potatoes. The potato inside itself was unremarkable. Not only do I have this Jewish thing going on but I'm also Irish....I've never met a potato dish I didn't like. Until today. I didn't even finish my half of the knish. + +Now for the prices. What's with this meshugas? $2.29 for a bagel with cream cheese is a tad much. In NY they run you about $1.35. The corned beef sandwich was $12.50! Now, I've paid that much for sandwiches in NY before but you get 2 lbs of meat and several layers of sandwich! This was not a $12.50 sandwich. I was also going to get us some whitefish salad to sample but at $15.99/lbs it wasn't happening. + +Why anyone should schlep all this way, in this heat, schvitzing all over, for this dreck? I don't know!",review,qASPib1Z8ft8e96dtbh66w,12,9,13 +0ONypOKIhttBz9IJzBE8jg,2011-11-11,uDqM0NuqhYu1UnzChVNW6g,5,"Love this place! Just went here and ordered the petite filet and lobster tail, everything is so good here. I also love the pork chop! My favorite dessert is the lava cake hot and yummy.",review,Y7Jxglm9zeHipx8zrhULiA,0,1,0 +bEQjf7c-9qkNWgXvriSGZw,2008-02-24,JD5B2a9nDCdp8vjV2q-Kog,3,"Ok, so, I finally ate at Wanda's. It is located right near the Chandler Harley Davidson, and its alright. The seating is really intimate, and rather small. The largest table in this place is for seating of 4. I didnt care for how small it was, in regards to limited seating. They do have outdoor seating, but again, they lost points with me for only having tables for either 2 or 4. What I DO like about it, is that the service was quick, and its not the usual chain resturants like IHOP or Waffle house. Limited menu, only open a few hours a day (like 7-3) and primarily have a breakfast and lunch menu.",review,JffajLV-Dnn-eGYgdXDxFg,2,5,1 +ntN85eu27C04nwyPa8IHtw,2011-05-31,D5ZJQkX64e87RJrHG7PENw,2,"I think Matt's has had its '5 minutes of fame'. Note to owners: Your food is good enough, your staff is great, so please save your money and move to a better location. Right now, you're next to a rundown hotel with police baracade tape all over the place.The local residents(?) pan-handling all the waiting customers outside your place. Seriously? Just sad. Won't go again, won't recommend it either. Good luck this summer, the heat will melt all your 'waiting area' customers out .",review,nooJP5h3eeNyT8tcKaeHhw,0,3,0 +1ggcLvWPBDWnp5MVTRnoRg,2011-03-14,xNWo90CDMVG4ZPo4zty20Q,1,"The cheesy breadsticks were delicious. Everything else, not so much.",review,VPXgY9lGJF3XC4ZpusxNuA,0,1,1 +fdhydw4SV3rSjq06IL9LVA,2010-09-21,6jZO73k130ncwGjsdH_Xxw,2,"I have been a long time customer at this car wash with this location. I have been going there since it Changed from Weiss Guys to Diamond Car wash and now its known as Francis and Sons. It seems the service has declined for each change of ownership. + +Today was the tip of the iceberg and I will not be going there again. The past 2 visits have proven to me that their customer service has rapidly declined. + +I understand that every business needs to ""Upsell"", but it becomes an annoyance when they keep bugging me 5,6,7,8 times after I have said no. Don't even get me started on their glass repair salesmen.... + +I always get the Premium auto wash, a few weeks ago I went and when I got home I noticed they had not cleaned my dash or center console (which is included in premium). I also noticed they had not wiped down my tires after applying Armor All and it all splattered up to the sides of my vehicle after driving away, I wrote these off as a simple mistake and that it probably would not happen again. + +Today's experience was worse. I took my truck in for a wash and I told the guy I did not have time for a hand wax (upsell) I was then pressured into buying it in advance so I could come back another day and get it waxed. No was not an answer to this guy, I had to actually walk away to leave this Pressured UPSELL. + +Again, I purchased the premium wash. They called for the vehicle and I noticed that there were little black spots (mud?) all over the side of the truck. I told the guy about this and he said ""its ready."" I explained that it wasnt and started using my finger to poke at what was probably 20-30 little black spots all over the side, he gave me a disgusted look and told me he had to go get a clean rag. I asked for a manager. + +The manager came and had the guy wipe the spots off, but did not seem to care at all and walked away before the guy wiped down half of the spots. I had already given a tip to the first guy and this guy stood there expecting a tip, I am generous with tips, but will not tip more because I had to ask them to fix their mistake. + +Upon entry of my vehicle I noticed there was still some dirt on the floor and my center console armrest was not cleaned. I only took the truck in due to my dog leaving paw prints on the center armrest and hair all over the place... + +I got an oil change at Danny's Car Wash at Tempe Marketplace a few weeks ago, and was so Impressed by their service and car wash service that I will make the 20 minute trip to go up there for my car wash from now on.",review,w_e0D3ON-y5-gd5UTNyQFg,0,1,0 +FFHzFdyWgM-OdMghuXMPEQ,2012-09-30,F3EtWCgS6YDBnnXK3dl33A,5,"My favorite restaurant in AZ, No Contest!!! Awesome staff, delicious food and the best salsa!!!!",review,xkrHJJFvgmlOozo61gISWQ,0,0,0 +KqPY02NlTaM8YALIhsswGw,2011-05-09,ISm8JIelDBN_O7L1QVRYAA,3,"This is a huge improvement over the last bar that occupied this spot. They obviously put a few bucks into the renovation and added pool tables. The rub is that when a band is playing here it totally dominates the conversation, and if the band sucks... + +Please put in a smoking-friendly patio, right now customers have to stand by the parking lot sans drink! They have another less-noisy bar in the front, which I was pleased to discover was offering $1 well drinks from 9-10pm for guys - we took full advantage.",review,90a6z--_CUrl84aCzZyPsg,3,4,1 +9ziO3NpoNTKHvIKCBFB_fQ,2010-03-28,u-yTiUI58ojOjmkMifMCTA,4,"I have been dying to go here since a coworker's spouse is one of the chefs. We finally went last night before the Symphony and it was a very good dining experience. The food came impossibly fast. The shrimp and Sausage Po Boy sliders were heavenly. The bread is this roll type of joy like break back east. Yum. You know the type of bread you can't find in AZ or west of the Rockies as Al Pacino would say-lol!They also served the bread basket with a veggie type of garnish if mixed with butter and put on the bread it had a very pleasing taste to it. Innovative menu- Lobster Potpie and Duck Quesadillas. HMMMMMM! Interesting. I had a side of Mac and cheese which is what I had heard about for so long and a Caprese Salad. My friend had divine Salmon. I am not a Salmon fan but i tasted it and it was yummers. My Ice tea was tasty and my friend had a Basil Mojito that was mixed well. I don't like them usually because they are so strong mouthwashy tasting, but this had a nice blend to it. The restaurant decor is beautiful.We did not get desert but I want to go back and try those Seasalt sticks. All in all I loved going here. DT was packed last night due to Wrestle-Mania but we were in and out in an hour at 5ish, so try that time to avoid crowds. Service was great despite other reviews. I know great service and I had it.",review,tBvrnSCLSpUdCDm5w5GPkg,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2009-10-06,yhxayqEQsU4M0DNxtLtrzw,5,"This isn't your typical Mexican restaurant that puts cheese and sour cream on everything. The food here is light, simple, and fresh. We started out with the guacamole which was amazing. My sister doesn't even like mandarin oranges but it tasted so good in the guacamole she was eating it like it was going out of style. The salsa that came with it was the bomb. One was a spicy red salsa and the other one was a tomatillo salsa. The green one was so good I wanted to drink it. I ordered the chorizo and eggs and my sister ordered a couple of tacos with rice and beans. Everything tasted great and I even had room for dessert after my meal. We had some kind of carmel, banana, crepe thing. It doesn't look like much but it was one of the best desserts I've ever had. Gallo Blanco is my new obsession.",review,jopndPrv-H5KW2CfScnw9A,4,5,3 +TCi5dyUUVHvFctgkstc1Kg,2012-02-05,4j06pkKJRrZMNmodbddQsw,3,"I agree with Rachel C. & Luciana L. on the parking situation and the logistics of the whole place. Although I will probably go again because my kids do enjoy it and I was able to get the last paid parking spot (at 11am). I have been to this event and others in downtown Glendale and they can't handle the volume of people that go to these things. Downtown Glendale is similar to downtown Scottsdale but 1/10th the size and capacity. There are tons of little shops in a historic district with ONE parking garage and whats worse is you will pass many empty lots that they pay cops to stand around just to make sure you dont park there. I finally ask a police officer where CAN we actually park. Anyway, the event was cool with lots for the kids, it is a farmers market that sells food you would find at the fair thrown in with some chocolate vendors, jumpers and carnival type rides for the kids in separate areas that require separate tickets for each area (this was way annoying too). Glendale could do better by putting up directories everywhere for people to know where they are, where bathrooms are, and they could spread things out and offer more space per human being (I am sure this place is stupid in the evening). Plus they need to do something about parking, even if they build a HUGE garage and charge $20 a car at least there would be options for people who dont want to walk a mile before they walk around for miles.... + +All that said, we will probably go next year because we still do not know the definition of insanity.",review,EP3cGJvYiuOwumerwADplg,1,2,3 +dnfSnHElLXntC6lWjomWPw,2008-02-25,4K03F_FYndOXottOgnbrkw,4,"This place is very off-the-beaten-track, I'm sure most people overlook it....I only came across it whilst searching online for somewhere 'different' to eat...and when I came across the review on the Phoenix New Times website(http://www.phoenixnewtimes.com/2005-02-10/dining/sultans-of-shish/), I knew this was it... + +I only docked a star for the (extremely) sparse decor and atmosphere...this place could have been any other type of business with just a change of sign and omission of tables... + +anyway, the food was great! my fiance ordered skewers of beef and lamb(I'm not too keen on lamb, but the beef was tender and succulent...very well spiced!)...I had a cucumber salad(diced, along with onions and parsley, and soaked in vinegar-lemon juice), which enchanted me so much that I created my own version at home and make it every time I feel like doing a bit of dicing(msg me for the recipe--it's a bit death-breathy and labor-intensive but delicious!)... + +and, during dessert, I could see why Samarkand was voted 'Best Tea in Phoenix'...the black tea was easily the best I've ever had(besides a special brand of blue ginger tea I make a point to keep my cabinet stocked with)...it was strong and rich...absolutely incredible! + +definitely make it a point to search this place out--it's worth the effort!",review,xdhu_CZVomaGPD2qB0IQXw,3,3,1 +7KB3eQJASverUUah-I_0ZA,2011-11-02,m5Q6NkcyibtTHpCrS3DvGw,1,"When owners/staff changed we kept hoping for the best. (The friendly owners/cooks of the previous restaurant were top notch, hence the good reviews). But now, alas. . . Lemon chicken that turned out to be pork (and bad at that), wontons in soup that fall apart, greasy greasy lo mein and eggrolls, it's just not worth it. Prefer to give locals the business, but this is truly awful, even after many hopeful tries. Panda Express it is until someone else does a better job.",review,r9xKvhIFjW8Nopvjm15y6A,0,1,0 +EVR7ss3gCgRmXZT7TvZgzA,2012-07-11,T7Qbj7s5Jxp3vq_sak_piw,5,"We have been taking our dogs to All-Star since they opened. The staff has always been great and remembers our girls by name, and the Vets are fantastic! Any Dr who will get down on the ground and love on my doggies is ok in my book. They have squeezed us in for emergency visits many times. We have also boarded our dogs here and they take awesome care of them. Just wish they were opened on the weekends",review,YzUAzn4NkLxk8FbwXa1rNA,0,1,0 +vSWEXsXmJw5ozuF4zqE9ng,2010-03-22,ojN4uLh7VofqqhLbVDla2w,2,"I almost moved up to three stars because Nicole, the pianist, makes dining here such an amazing experience, but the food just never is up to par, so 2 stars it is. + +I was here with the Downtown Friday Nights (aka #dtfn) crew, and started out with a glass of AZ Stronghold Mangus, which was a delight. + +We were noshing along, so I ordered the spinach dip, which was so salty that I couldn't even eat it. Yuck. I asked the waiter to take it back , and he said ""yeah, we've been hearing that a lot tonight"" + +News flash, if you are getting a lot of complaints, maybe you should stop serving it for the night. + +I'm glad I had a friend's cheese plate to snack on...it is hard to mess up brought-in bread and cheeses. + +My Florist is all atmosphere and no substance. The space is great, the piano is awesome (she will even take requests by text message, while she's playing) + +**Correction....the GM sent me a message pointing out that all of their bread is not, in fact, brought in, but is baked fresh daily. Duly noted**",review,_JUAxvr5DSEcHTvvXnUsxg,0,1,0 +EWMwV5V9BxNs_U6nNVMeqw,2011-06-11,PJK8YQ3zsyRkKx33l5wc9A,4,"Tonight I finally tried this place. I went during happy hour (unknowingly) so I was VERY happy to see that drinks were 2-4-1. WOOT! What a great deal. I ordered a half and half order of their spicy and cinnamon fries. My God they were tasty! I LOVED the decor here too. Only 4 stars because I didn't really get to try the food, but it definitely had me intrigued. I will be back, Fez!",review,eOVVMnFC5jeAInwiG3uNEw,1,0,0 +2bdKR3l4o-S1CscLqqnvVw,2011-08-01,s1RecwNZLn-haImfWMhSPA,4,Coconut and carrey heaven,review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,2 +u3_amLppmBrfBYUfaI0nVw,2012-11-14,qq6nxekcC8GwkDEAA7w4Lw,3,"I enjoyed my nights here. The facilities are clean and very well maintained. Housekeeping staff is fantastic also. They were not intrusive and they were hospitable. + +However, the ONE thing that bothered me was the reception staff. I was mistreated. I say this because I asked the reception staff a question about the pool hours and the response I received was ""Are you a guest here?"" Followed by ""because we get a lot of people around here..."" While that response is completely understandable, I must point out that I checked in an hour earlier with the SAME staff at the desk. This may be me sounding like a self-centered, remember me-type of person, but no. I felt that the receptionist was categorizing me because of my age and because of my look. I guess I just look like the type that would crash into a hotel pool? Mind you, this Residence Inn is adjacent to the Mayo Clinic and desert land. Yes, the only two things around walking distance are this hotel and the hospital. So apparently, this hotel pool must be the hot spot for pool crashers. Must be all the sickly patients that want to take a dip in the pool. + +Then on the same occasion, the same reception staff told me that they did not have a bottle opener at the desk. There is a small convenient store next to the reception desk that sells wine, beer, water, soda, snacks, etc. I purchased a beer and asked them if they had a bottle opener so I could drink my beer by the fire pits and they said no. It had been misplaced. Some time later, the nice gentleman that helped me open my beer got beers at the reception desk and somehow, they magically had a bottle opener. Strange how they had one for him, but not for me. + +Regardless, I was a bit bummed that the reception staff was childish and rude to me. I felt like I was individually singled out to be discriminated against. It's a shame too because I love my Marriott Rewards card. + +The rooms are large here. The elevator takes forever! I suggest that the hotel adopt elevator music to distract the sluggish speed of that elevator.",review,rxUbJlVLtcmi0RHGmVKJpg,1,1,2 +-N6XWiSuFKv-AXT7C3n6Yw,2011-12-11,rJG8b8F1-1V_gBMKdDwdRw,4,Good boutique hotel with nice amenities. Clean and contemporary I'd definitely stay here again!,review,G_EF7WnaLjMduDasUlm4hw,0,1,0 +dLBqf9QayF9eSUzz6BvmSQ,2008-04-27,VTw4hfSEfSEYG2uBPd3Wnw,4,"Consignment... fantastic. It's a step up from a used furniture store. It's two steps up from a thrift store or a pawn shop. It's three steps up from a garage sale. The prices reflect all of this, but it's still pretty reasonable. + +Sellers - as long as you didn't buy the ugliest couch in the world and you didn't let your dogs hump on it, then it'll probably sell here. They will look at your furniture first before allowing you to bring it in so you aren't wasting anyone's time. You can even bring in a picture and a pillow if that's easier. In fact, you can even email a photo to them that they will go by. + +If it sells, they will give you anywhere from 45 to 55 percent of the money collected. To find out if it has sold, you can call. For security reasons, they won't give out much information over the phone, so you must bring in your paperwork to even ask how much it sold for. This is pretty annoying and inconvenient - they should do email notifications at least - but you can go into any location to get this information at least. + +I got the impression that they will let you set your own price, but typically they will price your items for you. Good. Compared to what you would probably get for them if you sold them yourself on your driveway, you're going to be happy (even when you realize you're only getting half the amount they set). They will also sometimes come pick up your items if you need help. + +Buyers - the store is laid out pretty well and they seem to only take quality items that would sell, so you won't find a bunch of ugly donated junk. Some of the items are out of date, but still in good shape. You're probably not going to find some grossly under priced antique that you could flip at an auction, but if you need to fill up a room in your house - it's a good place to shop. + +Weekends seem to be busy for them, so I imagine their stock changes constantly. You're going to be paying higher prices than you would at garage sales or thrift stores, but the prices here are flexible and you're definitely saving money over buying new.",review,Cp-PV8rsypbO-xBrQ6KmQg,3,5,1 +3oZcTGb_oDHGwZFiP-7kxQ,2008-05-05,tBbZ4lu-NqTud6ZrO4ZR8g,4,"I can't stop talking about the fried chicken at Chelsea's. It is sooooo good. + +We went here on Saturday night with a group of friends, and we had a great time. We sat at one of the large tables on the front porch, which was perfect, although our friend was disappointed that we weren't on the back porch. Supposedly that's the place to be. Since I had never been, I didn't know the difference. + +I always feel that tables of 8 are a good test for a restaurant's service. I felt like our waitress did a good job, and I was actually shocked at how quickly some of the food came (I am sure they are popular dishes that the kitchen makes in high volume, but still - she did a good job of getting them to our table). + +I started with a caesar salad, which I didn't think was that great. It was fine, but it wasn't as good as I expected. I then enjoyed the fish tacos for dinner, which were really tasty. The dish was plentiful, and it was more than enough food. My husband ordered the fried chicken, which was absolutely divine. The chicken was so moist and tender, and the chicken was fried without being greasy. Yummmm. + +I tried the red velvet cake for dessert, and it was quite good. How can anything with cheesecake frosting be wrong? + +This is a great casual upscale restaurant. I was disappointed that I hadn't been sooner. The atmosphere is great, and the location is good. Plus, there's plenty of parking (and valet), so it's just convenient. I sort of feel like that's what this restaurant is - a convenient staple when you want a solid meal. The prices are slightly high for what it is ($18 for fish tacos and rice?), but I am desensitized to the high restaurant prices here unfortunately.",review,9FbgqZ5u9WTLAs28nNafIQ,3,4,1 +c-qtFVPutboIiJASZYrwuA,2009-11-04,RjzcXGuhGFq4rl9OTG2GoA,3,"Unique place that you wouldn't stop at unless you were recommended. Seriously, this isn't the type of place you drive by and say 'oh, let's stop there' -- word of mouth is what I'm guessing drives this business. + +We were recommended to visit this place by the entertainer for the evening, a belly dancer. Efes isn't your typical sit-down restaurant -- in fact, you may have to kneel down. The environment is to set a casual Turkish dinner setting. If you have a big party, some of you may be sitting on the floor...don't worry, there are plenty of pillows. + +The entertainment was good (if you like belly dancing) and the music was interesting. Our party of 4 opted for the super sampler to start and the Efes mix to share. + +I personally like this type of food. Exotic, full of spices, not your typical meats. My wife didn't necessarily find it great, but ate some and didn't complain :-). I think the Doner Kabob was the best. If you go with a group, the Efes mix was a great way to try a little of everything and was plenty of food for our party of 4.",review,kom_byw9fPdVzw7Mw_C4HQ,0,0,0 +Z_KjmNp3sMwodUBTSgFZGw,2010-08-11,oF1096o79dFRhsra4J2t0A,5,"My first box of NGD arrived a few weeks and tears nearly came to my eyes as I removed the produce from the box. I haven't seen such beautiful, fresh, well packaged produce since I was a kid (and I'm no spring chicken). The carrots tasted like the sweet carrots I remember and the lettuce (with the dirt from the farm still fresh on the leaves) so full of flavor. The amazing thing is that I had come to expect most organic vegetables and fruits to be less visually appealing than the chemical type but such is not the case with NGD. + +The medium size box has been perfect for our little family of four. It is delivered on our day like clockwork around 2am. The unseen elf that drops off the goodies is nice enough to open the carton and place all the contents in our cooler so everything stays nice in this boiling cauldron we call Phoenix. Furthermore, I live way out in Carefree/Cave Creek where we always expect to be on the list of places too far away for delivery. Not with NGD. It appears from the labeling they have optimized their routes so they can include many outlying areas. + +Finally, there is a gentleman named Ben that works for NGD. He has been very helpful in making sure everything is going smoothly and that we are using the service properly. + +We think NGD is a great value for organic produce delivered to your door and HIGHLY recommend NGD!",review,8o5esZFIReNEBBH2nfOeGg,2,2,0 +GCs6-N-8CalT4L2_nNas7A,2012-04-01,3GKAAWUML-ixD-K7TArzYA,5,"Went here for the first time today. Loved it. Becca was fun/professional and did a great job. + +I have been looking for a place to get a ""big boy haircut"" since I moved in the area a few months ago, so far Canyon Falls has impressed me. Normally I just settle for whats cheap and quick from an $11 haircut place. Yes, I paid more for my cut at Canyon Falls... but it was worth it. + +The place is clean, the employees are clean, I was greeted right away when I came in and I left FEELING like I got a good cut. I was only in for a cut/shampoo so I cant comment on any of the other services they offer but, I think I might have found a my new place to get my hair cut...at last. Thanks Becca.",review,gSBvJ5FqFeSKRJaPiamttw,1,1,1 +eW-hTjKrt91NnQ9xzMYtDQ,2012-12-16,3Lo5pPoCZTX2lDwl2UhO1A,4,"burnt. +china china caught fire :(",review,nbofxFWHORebBHh10OgYLA,1,3,1 +ckZVnb6gF3PPVWkoVhAiEw,2012-01-15,5BcZ1d6g7q8pfQbjO4QjMQ,2,"OK, so I haven't been to a buffet in a long time. When I reflect on the idea of buffets -- Sweet Tomatoes excluded, since lots of salad means lots of Good-For-You-ness, right?... -- I feel like I used up my lifetime maximum instances of buffet-eating in college, where the dining halls were all-you-can eat. Anyway, this place just opened and is within walking distance of where I live, so my neighbors and I decided to check it out. + +Overall I wasn't very impressed with the food, even in comparison to other Chinese food buffets I've been to in the past. In addition to a standard selection of Chinese buffet items (beef with broccoli, fried rice, sweet and sour chicken) they have sushi, pizza (for kids, I'm assuming), and a hibachi grill section where you can pick vegetables and meats and they'll stir fry it for you (included in the buffet price). The hibachi stir fry I made up was OK, but the sauce added to it was too salty for me. The sushi was bland and what you would expect from a grocery store. They only had regular high-sodium soy sauce, as far as I could tell. (I tried asking one of the wait staff for low-sodium soy sauce and there was a language barrier; he brought back another staff member to our table, who also didn't understand what I was asking.) The egg roll I tried was really salty (even without sauce) and nothing to write home about. Usually sweet & sour sauce can make even mediocre egg rolls worth eating, but the S&S sauce on the buffet was a downright-scary Kool-Aid-red color. However, the fresh pineapple and melon was a nice touch, as were the 8 different ice cream flavors on the far end of the line. + +I will say it was pretty cheap at $10 per adult, so if you're looking for a lot of food on a budget, it might be a decent option for you. Personally though, I just think I am past the days of eating foods with scary salt levels, artificial colors, etc., so I won't plan on going back (though if I had to return for some reason, there are enough edible options so that I wouldn't starve).",review,anr3YEUMnFxGSwo7Ej4OeQ,0,1,2 +SYqTY48DJa1cYhglvmgvsQ,2007-02-22,c0mwvQ68LadoOkf5NDQmhQ,2,"Eh. + +I wouldn't spend my money to stay here ever again. The hotel itself looks nice. It's large, spacious and the bar by the lobby is impressive. + +But the rooms...Well I feel as if they're nothing special and the heavenly beds were not as heavenly as I had imagined. + +The pool service was awful as well. The managers don't know what they're doing and the pool is always overstaffed with lazy high school kids or severely understaffed with one or two servers for the entire pool area. + +For the price, I'd go stay at the Four Seasons, where they actually know what good customer service is.",review,0CMz8YaO3f8xu4KqQgKb9Q,2,3,1 +nXKwzVKJCtIGd4HxXgjdnQ,2012-03-16,lG0DbJb6m9DCXMQnKJpwCg,3,I go here a lot. Well...used to. Service gets worse and worse. Food isn't as good as it once was. Happy hour is amazing though!,review,xvZE0Mak4SGXqFeT59qctA,0,0,0 +Xq9tkiHhyN_aBFswFeGLvA,2012-11-06,_ztWOr-oQMzVtvDyswUQOA,5,"Great, fun atomosphere! Service was great! My wife and I had a wonderful date night here. The fillet was nicely cooked and the sides were just as good. Average prices but great value! Highly recommend this place for date night!",review,bAWxcnQ9qCQQcOMn58nPtw,0,0,0 +lVXDmY6UQ2cCimhPXpnYZA,2009-05-18,zAIMYeEWNlL-jYzlWOxeuw,3,"Manager got a little whiney when I insisted that he check his shelf before I drive out to pick up a rare item. Their stock has been in error before, and sure enough... it was wrong this time. But no apology of course, and no acknowledgment that I was right to have him check his stock. + +Otherwise, selection is good on the whole, but customer service can be a little ""iffy"" at times. Easy access right off Lake Pleasant Pkwy on SW corner.",review,joIzw_aUiNvBTuGoytrH7g,2,3,2 +CV4DDFG6tII-ehzaWPXK4g,2012-03-03,n1o13WF-KclmF7ceeT0_Hg,5,"Family friendly and we love the soups and salads. Mushroom soup is our favorite!!!! We also enjoy their veggie sandwich but all of them that we have tried are delicious. Sunday brunch is great too. We do frittatas or banana pancakes, yum. Or a simple Wildflower capaccino and scone does the trick. We'be been going for years and will continue to go. Oh, did I mention the free WiFi? Great for some business lunches.",review,gKL6lu1vN1wB2L0w9XMW4w,1,2,0 +jsvIv9NRRBXdmCe8b88b4A,2012-12-17,kqoyJTXju-MtZGqsuNLkxQ,5,"I've played well over 40 of the Golf Magazine Top 100 courses in the US. We're lucky to have many of them here right in our backyard. This course stands out! Exemplary service, and the driving range is the best I've ever seen. + +The course is tough. No country club rolls here. Hit it right or left and you're undoubtedly taking a drop, and a stroke. + +Can't wait to get back for my next round!",review,kFTTt5Ny21viUUsjc-uFPw,0,0,0 +UI5ghIUeHYxzwSfaDVUXOA,2012-01-14,aYNCL7GpM59NF9uJyeeTkQ,2,"we had the back door pizza for a village and in a word...yuck. i think the spinach was frozen and not fresh, the prosciutto had an unusual bitterness or was it the sauce? we also paid 8 bucks for two tins of lettuce with either bland dressing on one or little to no dressing on the other and maybe a few shavings of cheese. soooo not worth the money.",review,DfxzHI4TjGTUuFELonH5wA,0,0,0 +PN3aQAH-RONnK-ahkNm0xg,2012-09-06,3G-S4u-1_LKq0GdFIj5ERw,3,Ordered the Philly Egg Rolls. They came out still frozen in the middle. It's hit or miss if the waitress will be decent or not.,review,JC7nd7_Vf3QL9-PAnEpU7Q,0,0,0 +1Duul3qCnLrNak1Np-iHfw,2011-04-24,SOSvQkisnm_wDu9H9k6SyQ,1,"My love affair with Pita Jungle is a long one.....perhaps longer than any other restaurant, certainly longer than I can remember, and at least for the adult portion of my life, which is why it pains me to write this review. + +For the last 6 months, I have ordered takeout one day a week from this location, typically on a Friday or Saturday. The ridiculousness that has become my adult life has necessitated a heavy reliance on takeout for my main source of nourishment. Although the food is always spot on at Pita, my takeout experience has been anything but. + +The prior 3 out of 4 times I went to pick up my food, I ended up waiting past the promised time. Now I'm not unreasonable, waiting 5 or 10 minutes is not a big deal, but each time has been a wait of 25 to 30+ minutes past the pick up time, with no apologies or explanations. I was beginning to wonder if they had ever started cooking my food before I got there. The last time I must've looked really irritated, because I was offered an obligatory baklava for my wait. + +Used to the wait, I started showing up 5 to 10 minutes past the promised time, just as preventative maintenance. Imagine my surprise when my order was ready as promised thie time. I left with my bag of food and a smile on my face. I get back to my friend's house, open the bag, and begin to realize just how badly the order has been screwed up. We ordered 4 items, 3 of which were wrong. I load one item up and head back to Pita. Making me wait a ridiculous amount of time for my food is one thing, but blatantly screwing up my order is too much. As I explain my situation to the takeout girl, she goes to get the Manager who proceeds to inform me that I ordered it wrong. As I struggle to keep my cool, I inform them that they must be mistaken. One item was ordered with chicken, my item was turkey, and the other two were salads. Everything came with chicken. The salads were for my vegetarian friends, and I'm allergic to chicken. There's no way you're going to convince me I ordered chicken for myself and two vegetarians. Sorry, try again. Without too much ado, the correct dishes were provided, and yet another obligatory baklava was offered. I declined. There is only so much wrong that baklava can right. Don't get me wrong, their baklava is amazing, but it's not going to make up for them screwing up my order, then trying to blame it on me. Oh, and did I mention that they gave me a coupon for a free appetizer? Too bad the coupon expires in a few days. + +I'm afraid I will be taking my weekly Friday takeout business elsewhere, until enough time has passed that maybe, just maybe, I can find it in my heart to forgive Pita Jungle. In the meantime, I suggest you try to get it together down there. In case you missed the count, that's 4 out of the last 5 takeouts you missed the mark on, including 1 you tried to blame on me. That's shameful.",review,w52yAz_L3CTPsEzyUsDmDQ,0,0,0 +q1nDSpmV-FdTBNj6UuZvTg,2011-01-19,zu4RtnUaVU0oKdc1SNiMOQ,2,"I just cannot understand why this place is so highly rated. Could it be that people have never experienced barbeque outside of Arizona, so they have no basis of comparison? But even that cannot be true. We have Joe's in Gilbert, and even Famous Dave's is pretty darn good. + +I work a block from this location, so I have been there at least a dozen times. While not great, it is something different once in awhile, so I put in an appearance now and then. The food is not bad, per se, it is just not that good. The prices, on the other hand, are far too high for what you get. $11 gets you a ""large sandwich"" which is not very large, an order of fries, and a soda--RC brands. For a couple of bucks more I could get a combo platter at Famous Daves. + +Service is all business. I don't think I have ever seen a smile in the place. But it is fast. The place is usually dirty, but I am usually there right around lunch, so it might be better other times. + +Just not impressed at all. But...it beats the Burger King down the street which is the worst BK in Christendom. But that is another review.",review,1wMGLaMIH7CcmJ2htS1rmw,1,5,1 +oXKPSI-RUqOvmuSCh_DEQQ,2008-10-22,I-cEw05vJIc6_SfiYUsGcA,5,"I went there last night with bf to celebrate our anniversary. After pre-yelp, we knew what to expect as to prices, so it wasn't so much of a shocker. + +To the food, we concur with almost everyone here. It was impeccable! We ordered the ice tower for 2 and thought that it was very well presented. Ours came with 3 appetizers (raw oysters, crab claws and dungeness crab) so it wasn't too high. They are all fresh. Growing up I used to go to the beach quite often just to have fresh crabs, so I know what those taste like. And for 6 years living in the desert, Mastro's is the first and only one in AZ to deliver that. + +For main course, I got Ivory Salmon ""Oreganata"", bf got Swordfish blackened. I am quite picky when it comes to fish, and bf isn't exactly a fish person, but both of our dishes ""surpassed expectation."" I couldn't say much about swordfish except it was fresh. We had the same dish 2 weeks before at somewhere else, it was nowhere near as sweet and fresh as the one at Mastro's. It was my first having Ivory Salmon, it was sweeter, and white (hence the name) than normal salmon we get around here. Mine was good size portion, firm to the touch, but melted in the mouth. The flavor was subtle enough to enjoy by itself, or you can add one of the sauces provided. One of my favorite sauces of the night I think was made of minced tomatoes and olives, came with the main course. + +Sides were Lobster Mash and Snap peas. I didn't really care for snap peas as I can make them at home. But lobster mash is a MUST for those who go there. I'm not sure how they prepared it, but it felt like mash potatoes made with lobster bisque (instead of water and milk) and added lobster chunks. It was much more flavorful and creamy than a normal mash potatoes. It was big enough to share and take home. One thing though, it hardened up after sitting out for awhile, so I'm not sure if microwave could make it all fluffy again after 1 night in the fridge. + +Drinks there are amazing, from the presentation, to the taste, and definitely the amount of alcohol in each drink. We decided to go with cocktail drinks rather than wines because of other yelpers' reviews. Total worth it!!! + +The service was amazing. We had Robert. We pretty much asked him for recommendations for everything, yet he was nice about it and very knowledgeable. Next time we go back, I would definitely ask for him again. + +We didn't order dessert since they gave us a dark-chocolate ""Happy Anniversary"" cake with the letters written, also, in chocolate. The overall experience was 4 3/4, just because it was a bit difficult talking to each other. The acoustic of the room wasn't very good and it got loud. Didn't see much of cougar/manther scene as we were in the dining room. And maybe it was during weekdays, we saw lots of ""expense account"" people though",review,WCBz-xTApNh4u1VA_HKNLQ,0,2,0 +V1nEpIRmEa1768oj_tuxeQ,2008-06-10,WizhcCsow_6T8JZ9D354EQ,4,"Cibo is positively adorable. I love the atmosphere. I love the little house, and the yard. I love the excessively busy yet amazingly friendly servers. I love the iced tea. I love the bread. I love the Antipasto plate. I love making ad-hoc bruchetta out of said bread and Antipasto. I love the margherita pizza. + +Just on a Thursday afternoon alone, I don't think I'd ever come with a large group of people. It just doesn't seem like a wise life decision. + +Really? It's love overall. Love, love, love, love. When I can, I'm dragging my family here.",review,YMB29SPB8Z_a2be4O5gxOg,3,3,2 +KT0VXcl8J7Jes9xheZTqbw,2012-04-26,Il4ucX55JzITknDYn0nFVQ,4,"I didn't think my experience staying there was as bad as previous yelp reviewers...my stay was short, but, quiet and nice...service was good, and I had a restful night, the only thing I probably will suggest is,turn off the A/C before you go to sleep, that helps a lot (not summer season I mean)...",review,MtwKgPbXr71HumNRtZ7YEQ,0,0,0 +xIdyiVoX5woL8iKHYKoiWw,2011-09-18,e4W65iJ--wLbhBfS-uSpZg,4,"Chakra has a very cute little cafe which I really enjoyed my first time there. The day before, I had a steak for dinner..shhhh..however, really wanted a veggie filled meal for lunch. I ordered the Pesto Basil Focaccia (tomatos, olives, peppers, feta) with a mixed green salad with a zesty lemon dressing. I loved it. Lots of flavor and the bread itself was moist and light with a crispy bottom. Cost was somewhat high I thought ($15) when ordering, yet it was really good and what I wanted so I was ok with the price . It did take awhile for it to come out, however, I wasn't in a hurry though. The tea of the day was a strawberry green tea. Very good, light on the strawberry so it didn't taste like a juice. I did purchase some Vanilla rooibos tea and a cherry black tea. Only complaint and being a Tea Snob with over 3 years working in the Tea industry and 80 hours of training, the teas should be in air tight light tight containers; keeping the air out keeps the teas fresh (green teas will go badly quickly!) Chakra staff was very helpful and friendly. I will go back to purchase herbs and teas in the future.",review,Aaafbip-U2aeTXbvinBLiA,3,1,1 +O_ZNZDr6c5CsK6GgsKdDeQ,2008-04-04,IfUe9426omy2ACJPpFRBNw,4,"I don't know if it's in Phoenix or Scottsdale (referencing previous posts), but all the Phoenician's literature has their address as Scottsdale. + Anyway, it's easy to nitpick, but when they charge the prices they do, excellence should prevail. The setting is lovely, rooms are sumptuous (one year we did get one that was pretty rickety and needed a do-over,however), staff is very friendly and generally accomodating. BUT, we usually arrive about noon and I end up sitting in the lobby until the room is available. This time it was available at 3:35 PM. I'm glad we called the day before and asked for it to be expedited since we're Starwood members and have stayed there several times before and would be arriving early. I know they have a noon checkout, but, cmon, three and a half hours to clean a room?! They guarantee the room will be ready at 4 so I guess I should count my blessings that I got in 25 min. early. Food in the restaurants is always good, as it should be, again, for the prices they charge. I cringe at a fruit cup with yogurt for $9.00. The Center for Well-Being, their spa/exercise area is very nice. Friends and I took advantage of some of the classes such as water exercise in the pool, belly dancing, pilates, etc. Instructors all knew their stuff and were fun and friendly. + I am always amused by the fact that you can stay at a cheap motel off any superhighway and get free wifi, coffee in the room and often free breakfast. At The Phoenician there's no coffee pot in the room ($4. a cup downstairs), extra charge for internet access, etc. + It's a lovely place but could, and should, be so much more.",review,M1kFiEqVrC7Qa029ZBiwfg,1,3,0 +tqDwpyCB53TiEIv915Tuww,2010-08-02,f5ZLrsT5VBhBNCLDEypttA,2,The price is a little high for me. They don't give enough bean sprouts without asking for more. The pho broth is a little too sweet for me also,review,vkH1XXs1GMwIKG4W-xD6lA,1,3,0 +K8pM6qQdYu5h6buRE1-_sw,2009-09-22,OW2Pj5-ExHxuFoCQtRfIsw,5,"I have had chicken. I have had waffles. And now, I've had chicken AND waffles. + +Prior to today, I didn't realize the distinction. Prior to today, I never had cause to consider the combination. Prior to today, I didn't realize what I was missing. + +Now let's be clear: this isn't the place for dieters. It's not a place for any pretentious behavior. The place has ""Chicken & Waffles"" in the name, OK? And that's what you're going to get. In abundance. + +Cheap as hell. I had the #1, also known as KK's. Three huge-ass pieces of chicken -- breas, thigh and mutant leg. All battered and fried to perfection. Two waffles the size of Vermont. A bucket of grits with some egg/cheese/onion concoction on the side. OK, I could have done without the last part. But hey, when in a chicken & waffle place... + +I'm still full. I won't eat dinner tonight. I crashed out for an hour in post-prandial bliss. And I'd have typed this review faster if I could have stopped sucking my fingers like a four-year-old. + +Damn.",review,yNVGe_z9hHxbvpa2Ns2JIg,19,17,23 +VsrvWdZL2993olnW3z8R3A,2011-05-23,-zWN0m-ZAKWmNnzohrz5Gg,4,"The best burgers in town at a fast food restaurant. Cajun fries are tasty too. They have the coolest soda dispenser at this location. Hey, I never knew they had Orange and Rasberry Diet Coke.",review,tBvrnSCLSpUdCDm5w5GPkg,0,0,0 +R8VwdLyvsp9iybNqRvm94g,2012-06-12,QDtoaAn8i6imz8YRKEfEWg,1,"Have been going to LGO since 2003 and have always enjoyed the cuisine. Several times - either when ordering in the grocery or dining at the Pizzeria - the music has been so headsplitting as to wipe out any ambience or semblance of a welcoming neighborhood restaurant. Last night the demographic in the Pizzeria during the course of our meal ranged from 30-80 years of age. Several pleas to turn the music down just enough to be able to hear the waiter standing next to me were greeted with ""it's just how we do things"" and ""there's no point in asking because they won't turn it down even a little"". The waiter, David, said many servers consistently relay complaints but that the owner ""really doesn't care"". Hubris is so unappetizing. I think the food is great but, because I have no desire to support a business that really doesn't give a crap about its clientele, I'll spend my money lavishly elsewhere.",review,DueHdFSnn75LVHQmXM0x0A,2,1,0 +vH_WlMNtzx7Dq6Li5ecWEQ,2010-03-18,FPSRJaAp3PtsziUpTsXmxw,2,"I decided to go to this location because its closer than the Scottsdale one where I originally got my contact lens prescription. Next time I will drive to Scottsdale to avoid the terrible service. Ended up waiting nearly 30 minutes just to get my new contacts. There was only one guy working the optical department and a massive amount of people and phone calls coming in. Obviously they need to staff better because you could tell he was getting flustered and was blatantly rude to a couple of the customers ahead of me. For my new (disposable) contacts it was $50. $50 for a two-week prescription! Are you freaking kidding me? Needless to say I went in with a headache and left with a migraine. + +Oh and on top of that I thought getting a slice of delicious Costco pizza would help after such a crap experience but alas I was wrong. The lady at the food court (again there was only ONE person working) was rude and I felt I was in a drill line. She literally threw my receipt at me. Well, geeze thanks. Oh and the pizza definitely didn't taste like the Costco pizza I'm used to. + +Furthermore, what the hell is wrong with people who live over here? Not only were the employees rude but so were the customers. + +Three strikes and I'm out of there.",review,IO3AsR6cdMto7VCwfPzf2w,1,4,3 +eovEq5kDSdf0WF_P_bD2Uw,2010-10-22,dHjY9BmSMBcUHZL_2yNY6w,5,"LOVE LOVE LOVE this office! During my high-risk pregnancy I spent a lot of time at this office and in the hospital. Both Dr. Hahn and Dr. Spieker were fantastic, very knowledgable and easy to talk to. I trust them completly as they did everything to ensure both myself and my baby were well taken care of. I have since seen Dr. Cyr for a quick appointment whom is very sweet.",review,DVnxcsSdUC_6BcCKL48LrA,0,0,0 +qVoWe3nVVkg5KSOmQpntIw,2009-11-29,RKljCKqZkJhau8xDJwoLng,4,"Oooh! A shiny new pizza spot! I have been told time and time again to try Barro's, so the opening of this location was the perfect opportunity to put it to my pepperoni and mushroom test. All I can say is What Took Me So Long!? This pizza is GOOD! Zesty sauce, ample topping coverage and a puffy pillow-like outer crust. It looks like it would be chewy, but it is not. How do they do that? Some sort of pizza alchemy, I am sure. + +This location is brand new. The dark wood floors and high-backed booths (that don't yet have butt-indentations from previous guests) are not the typical plastic red/green/white decor what you would expect from a casual pizza restaurant. The staff is friendly, both on the phone and in person, which is nice. + +In addition to fantastic whole pies, they also have inexpensive lunch specials (2 slices and a soda for $4 is my favorite!) until 4pm every day. + +My only small sadness is that this location does not deliver to my house (even though it is closer than the Barro's that does cover my delivery area). Oh well, I like this one and will probably visit more than is good for me!",review,n9Zg0jlOGtxfIrvoPm6Hhw,6,6,4 +4meJyPOhuAKzywUJTmu2hw,2009-07-21,7JIG75mLro1rXueMHNucbg,4,"I LOVE the Bacado. There is nothing better for nursing a hangover than the Good Egg. + +We try to visit every few weeks. Yes, the wait for a table can be long, but it's totally worth it!",review,PhiZFPxJbWBSHJ_z5EKCpQ,0,1,0 +M9t5569pgvJYurC8hX0E1w,2011-06-08,ZbX2MPUMhrOhPI_KS5vCTw,3,"I hate walking in here because it always stinks. They really need to ventilate this place. My daughter loves it, always had a great time, whether she is skating or attending Club 54. Great place for birthday parties, she loved her party. She also got a butt-load of tokens with the party package.",review,Nz6Qv5ZCkFsSWW0OMNhAMQ,0,0,0 +ABrSt3fsirLrUYNVrD3fbQ,2011-12-18,0TOeLCKCMT_JkxyauDBn0Q,4,"went for an early dinner with my honey on saturday. we normally don't order apps but we we didn't have lunch so we needed something to get us through. we went with the hummus and pita bread and it was so fresh and yummy! server said that it's homemade in house. For my entree I ordered the salmon with mixed veggies and the hubster ordered the crispy chicken and subbed the creamed corn with mashed potatoes, he loved his side of asparagus... smokey flavor. our server did provide us a lit sample of the creamed corn because he raved how delicious it is. yes the creamed corn was very rich and in my opinion not worth the calories unless you've been good all day. we both ordered red cabs and we skipped dessert since we were nice and full. enjoyed our meals and the friendly service.",review,fNfLXX_ce2TQPrdHCqPzZQ,2,2,1 +Dka36Pw7ibbHV6xIimQAOg,2011-08-08,lzWmjb5zIX2R1mWn0Y9b2A,3,"Mixteca was OK. Kind of a cross between Baja Fresh and Robertos. The quesadilla was decent and the beef tacos were good also, just nothing spectacular. I would go up the street to ""Carumbas"" for something better. +Doesn't accept AMEX:(",review,h9FvuiV-YcvrAYBQhdSoEQ,0,0,0 +U_CvxSM9epIi8u5A0jOUVw,2012-03-13,I4fXljiSAnumkG2tUsjFuA,3,"This is a great alternative to national chains. +Great pizza at a great price and usually a coupon is readily available. +This location is no frills and the salad bar is basically extra pizza toppings. Yet its always clean and the staff is normally friendly even when phone swamped. +Barros won't knock your socks off but it always has great, wallet friendly pizza pie.",review,VZmjh4DrycVfTw3WigMQaA,0,0,0 +3pFyhcGd4YykGI6tf07hmQ,2009-02-01,jmRxrVZ7YJ2hXr6fGxwsBg,4,"Cin Cin pronounced CHIN CHIN which means cheers in Italian! This is a great little bistro type lounge. It is a posh little lounge with unique little decorations and a small patio great for small groups. + +The food here is excellent the service is good and this place is never real busy so it is a nice place to enjoy a quick bite before you do the club scene so you don't get extremely wasted on an empty stomach, a great little starter place for you and some friends. + +The location is great too, right across from the W and and down the street from Axis N Radius, Suede, and PCL. This is definitely a good spot to meet at for before binge drinking in old town. + +I got a bottle of Pelgrino water and the stuff portabello mushroom, with the vinaigrette spinach. This was excellent probably one of the better portabello mushroom meals I have eaten around the valley.",review,Ofxlhi_HKp7myFDpwg9aIA,3,2,2 +IFKTsVSSguMjLBA9mo0x0Q,2010-05-08,xaK8EuMeNwN__dLLJVAu3g,4,"This place has some EXCELLENT, LARGE, and MEATY burritos. They also have some pretty good horchata, and nice tortas (sandwiches). If you're looking for a drive-through, or are willing to eat outside, then Filiberto's is a great place to get some food.",review,XdhfTOCIUkfIua4icmQ8OA,0,0,0 +IWwt0vm8lYbVoyGSPd2Z9A,2012-05-22,QGzJEV4IpIW-jsb49FyLpA,4,"We decided to try out Rudy's last night, hoping the lines wouldn't be too long since it was still 107F outside. We lucked out! There were only about ten people in front of us, so we felt we scored! + +I am a big fan of Texas BBQ, namely beef ribs and brisket. I usually go for the lean brisket and light to no sauce (in true TX form). + +Last night we ordered the moist brisket ($12.98/lb), coleslaw and a turkey sandwich ($4.99) for DD. + +With three fountain drinks, the price was about $21. DH also went back and got the banana pudding and the chocolate pudding for DD and himself. I think he spent about $6 on that. + +THE FOOD: The brisket was DELICIOUS. It was perfectly smoked and not too fatty for my tastes. It had a good amount of char on the outer edges, which is my favorite. The meat stood alone on its own. Very good sign! I did try both the Sissy Sauce and the BBQ Sauce. The BBQ sauce was quite good. + +The turkey was smoked, which is not my favorite, but it was pretty good. DD ate it after making me remove the ""black edges"" off and getting her two slices of bread instead of the bun it came on. That was fine with me because I put my brisket on the bun with some BBQ sauce and I was a happy camper. + +The coleslaw was good. It was sweet, but not too sweet. It was crunchy and a little reminiscent of the KFC coleslaw, tbh. + +We were disappointed that they did not have any mac n cheese. Mac n Cheese goes great with brisket!!! + +DESSERTS: The chocolate pudding was yummy and had an oreo cookie crust at the bottom. + +The banana pudding was just okay. A friend of mine gave me a recipe for banana pudding years ago that is really simple and appears to use the same ingredients, but is far superior. I wonder if I should share it with Rudy's?! + +Overall, we will definitely get Rudy's again. However, we will probably just order the brisket to go. We can make the sides for a lot less and I am sure DD would prefer something other than the turkey for dinner. + +Yes, that's right, will be back.",review,64YY0h0ZAR2nbzxbx0IwJg,3,5,3 +u-nMW__EKMYH_PVqacYc3Q,2009-12-21,rcIRJ7iVc0gm-NlkZeAKZA,3,"I ate here after eating at the one in San Diego a couple times. I was a little disappointed. The place was kind of depressing and slow moving, but I was there at 8:15 on a Tuesday. Overall, the food wasn't that good. I had one of the soups and it was just okay. + +I would definitely be willing to give this place another shot, though. I really liked some of the stuff at the SD location and I would like to try it here. + +If you have never been to a Loving Hut, it is worth a visit to see the crazy TV channel and some of the inventive dishes. + +I strongly recommend the things that look like breaded chicken legs but are really filled with mushrooms. That thing is tasty.",review,RvyTTpBLqd8yHomBTW_Kpg,1,1,1 +yJr24Yy1K6bt2G9fX3_zPA,2008-08-18,Yp6cg1O5DzBVFDcBkI6y1Q,5,"First, I'd like to send a shout-out to Irma, our server who has given me hope that there are caring hospitable people in the food industry. Irma receives 5 stars for taking good care of me and my sweetheart during our recent date at the Havana Cafe. Way to go Irma! + +We step into a well packed restaurant on a Friday night with plans to try the Sailor's Paella Special and a few cocktails. We wait for just a few seconds until we are greeted by Irma and her warm smile and are led to our table. Our cocktail orders are taken immediately, 1 Mojito and 1 White Sangria. Both exceeded our expectations and were just thing to get our date started. + +The ambiance is whimsical and charming - Reminded me of the movie ""The Bird Cage"" without the drag queens and dramatic dialogue. Bummer! + +Now on to the Paella. It was the perfect dish for the evening offering plenty of shrimp, calamari, crab, scallops, muscles, tuna and a healthy serving of saffron rice. This meal also requires a little handy work to get to the crab and muscles but you are given the proper instruments to do so. This may not be the best choice for those who do not enjoy this kind of food activity but we had a lot of fun with it. We will be back soon to try another interactive meal and partake of a round or two of Mojitos. + +So if you are in the mood for something different, fun, and oh so delicioso, I recommend you try a night out at the Havana Cafe. I also hope you have the pleasure of meeting a groovy gal who goes by the name Irma.",review,4lkTIhTuMhLprQprGlTRlA,8,10,6 +zxqvU415r_RtZRKDtdbIKQ,2010-11-28,k6fuC6MOeYkh6QdMqXDD_Q,5,"REAL NY STYLE CHINESE FOOD HERE IN ARIZONA!!! +FREE HOT TEA AND FRIED WON-TON SKINS LIKE BACK HOME! (BY REQUEST) + +I am from New Jersey and so are the owners. They opened up shop here 1 year after I moved here (1998) and I was delighted i could get a real NY egg-roll and spare ribs in Arizona. Their best dish i feel is the Szechuan Garlic Chicken (or shrimp). Try it once and you may never try anything else on the menu it's that good!! Taste's the same as the best of NYC. + +Their lunch specials are amazing. Comes with soup, spring roll, crab puff, fried rice, hot tea (by request) all for a very low price. Sunday is Dim Sum if you like dumplings. This place NEVER disappoints and I bring work clients here from New York all the time. + +they all agree, REAL NY CHINESE FOOD!!!!",review,t5qFxYP2t6ltRbvhqJsZAQ,0,0,0 +gWQlTK3o29rZGlw2YLUnhA,2011-10-16,KqC1_aa0jDh71L-Ofwlkcw,3,"Bit over priced, but they're tea is to die for!",review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,0 +4gIV5MYpCDbNI-bL3g_tSw,2011-11-23,EEZAYKBxRPzEfCorbRkI8w,4,"Our hotel was awesome enough to have beach cruisers you could borrow to ride around downtown. This is the only reason why my friend and I got all the way to Old Town on our one and a half hour break until dinner. It is such a cute little area. I loved all the little shops they had. It felt like we were walking around in an old cowboy town and I couldn't help but yell ""YEE HAW!"" I just had to get it off my chest.",review,hFoCstZ8DatlVmmkO_e4Ug,1,1,1 +QAWdgDgWaFJYzJ2pGDjmdw,2012-04-12,UzlYykDGOzKcmfEMZSEyhw,5,"This is a great place to shop, grab a bite, eat dessert, relax, or just hang around. + +Eat at one of the many excellent restaurants like Christopher's, Seasons 52, Black Chili Mexican, and Capitol Grill. Swing by Royal for a cappuccino, iced latte, or your favorite coffee of the day. Savor frozen delight from Haagen Dazs or Mojo Yogurt -- ahhh my sweet Mojo, you and I have been in an on and off relationship for the past year now... by off I mean the 3 or 4 days a week I'm NOT there :) . + +Movies in the park nights are fun to go to; gasping, laughing, and crying with 200 of your closest (people you probably just met). Get there early for good seats, (about 30 min or more), otherwise you'll be stuck behind a tree or some tall guy you can't see around. Be sure to bring a lawn chair along or a blanket to throw down if you'll be attending one of these events. + +The shopping is top notch - but be sure to bring your wallet. Most shops here will cost you at least your first born child, or an equivalent value. + +Happy shopping to all my yelping buddies!",review,cRyNICH0mhjxagvSyVr60Q,6,8,6 +Hlg5GDrdDtjeD8XGwH1eFw,2012-04-12,AcmvLHTZVUn52lgq60vEtg,4,"***** The service was fantastic, There was a nice warm lady attending the shop and the Gelato was awesome as always!!! +** Yummy Chocolate Caramel Fudge Brownie!! :)",review,eshIqohS-9FMLdKOhTr2Ng,1,5,1 +no_FXjscklz1SEzM_XnVgw,2011-04-04,6_ENksWBrtHnsx3NikmSYQ,4,"Went for lunch with my family - my wife and I both ordered salad nicoise and tasted the food ordered by our kids - croque monsieur, the burger, and french fries (pomme frites). We both agreed that the salad was the best. We ordered it with salmon filet (chicken is also an option) and it was cooked perfectly - crusty on the outside while moist on the inside. The other salad ingridients complemented the salmon very well. For desert we ordered beignets which were served with a kind of chocolate sauce which the kids loved. Overall it was a nice lunch.",review,nNdUiAj3sD_oLHHyPp2N3Q,0,1,0 +sMO71vGV8wkKujOle3-v7g,2012-02-04,nBuatV28cakFItwNMVOh4g,5,Best ribs in Arizona (besides my own)!!,review,NQGjnYaRodGqqVicG7cjAQ,0,0,0 +-mz0Zr0Dw6ZASg7_ah1R8A,2011-11-04,36lbjQM7j_pPKA8x7QISOA,5,We've been going here for years. Love the food (Happy Family is a favorite dish) and appreciate the community service outreach. Great to support locals who support the community ... and dish up great food along the way.,review,Ooc298cJRTvQBTglxwIF1w,0,1,0 +obYD-4HxZ3gqhS5hPJKG_Q,2011-07-25,Lp5zZSvzcJx3H-NswlthSA,4,"mmmmm - wine +mmmmmm - beer +mmmmmm - well yes, I am a lush and this is lush heaven! Thanks Bevmo. + +Only one not great experience here and it was customer service orientated, let's just say there is a lot to know about wine and just because someone is in flip-flops doesn't mean they want a $5 bottle...",review,o2J22OK7xXL-sDPzANxy5g,0,0,0 +DAOoaurZxekzu5ZrYAT8gA,2010-12-11,mbhiMU4J8w2QHU0AKtWPEA,4,"Dangerous place to shop! Lots of neat imported goodies, many in sample sizes so you can try them out before buying the bigger size. I got about 6 different flavors of hot cocoa, a maple sugar candy in a maple leaf shape for me (Michigan thing), and filed away a lot of ideas for gift-buying when I get home. I might even ask Santa for a gift card to World Market for myself!",review,TQ5eVGOFr_qB5_BbEd3Sow,1,2,0 +wNsmt1hF1uv3YvbwXZMAoQ,2012-01-02,P53JqzZo2mtV8UXo9oR7HA,4,"My boyfriend and I came here this past Friday night for dinner as we had both drive by the place quite often and have been wanting to try it out. + +The service was great and I liked the wide open space. We tried two different beer samples for a $1 each and settled on splitting a pitcher of Levitation which we both enjoyed. + +We ordered the green chile dip appetizer. I ordered the shrimp tacos and my boyfriend ordered the brisket. He LOVED the brisket and after taking a bite of it, I could see why. It was quite good. My shrimp tacos however, were so bland that I barely ate half of my meal. And it was a ""small plate."" I wasn't the biggest fan of our appetizer but after tasting my dinner, I decided I liked the dip a lot more and finished it off. Definitely do not recommend the shrimp tacos. + +One annoying thing was our meals came out right after our appetizer. A little time in between would have been good - but I'll take that over slow service any day. + +I'm giving this place four stars because of how great the brisket was and despite not liking my dish, I had a great time and think this place has lots of potential. I'll be back to try something else!",review,fJGWSgGsvb6leJzOuE2O3Q,2,1,0 +8lMQrVQU-5iG9UA4KvcnsQ,2012-07-29,zvB3mOXVnby0i5iRiQaItQ,4,"We had my husband's birthday party here. The staff could not have been more accommodating. They made everything easy! Our friends loved the place and the band (ReGroove) and had a wonderful time. Drinks are well-priced and very generous. The owners and staff truly want customers to be happy, comfortable, stress-free and to have a good time!!",review,SAaJZJBuoAghlT_pFw8EIw,0,0,0 +1f0g466Geu4nDdJhYQ_Vhg,2011-09-30,rFG0owQOcg-5snzvaiZVmg,5,"Loved it. Pulled pork & pulled chicken, bbq sauce & the cole slaw were ALL outstanding. ONLY caveat is that GPS tries to send you to thhe wrong side of the highway. It is in the shopping center with CVS & Circle K.",review,du5qsKi8mf4Y8V_toLCGQQ,1,1,1 +LDJhwZN14AZOJyHjg2lkRw,2012-07-31,rmiwxR153IJHr9MTgsT-BA,3,"it's an Imax theater, so unless you haven't been to one then it you know it is an oversized screen with wider shots and better sound. The location itself looks dated and in need of some repair, perhaps just some paint. The viewing experience was great and I will go back if there is another flick being shown that I must see in IMAX, but the fact remains the Mall, the Theater and much of the area looks dated.",review,qT17WVkJi0RvQ4nNPN6NDw,1,1,1 +G9LwkTSdKOyOGqd5BbuIkA,2011-06-09,w0gLpjMGW3OmVHEwm_gL_w,3,"Service here sucks. Our ""waitress"" took forever to get our food, and then didn't bring utensils, plates or napkins. I had to keep going up to the bar to get a drink. Several times I waited too long. One time I went up there and there was no one working there. I should have just put on an apron and walked behind the bar myself and made my own drink. Still, they have an awesome set up outside for enjoying the warm Phoenix nights. I dont' understand why the band has to play inside. I guess people who live nearby complained about the noise. Then don't live next to a f*cking bar!!! Idiots.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +MuIXnv7Oq7X3-4aEsp9dDA,2011-01-23,xlrUsFsobQXN-Z4zrIexsw,5,"Great new addition to the Old Town neighborhood. Citizen is versatile -- the perfect place for a romantic date, a small gathering, or for just meeting a buddy for a drink. A place with a great vibe. + +My first impression was that they are intently focused on service quality. Lots of smiling staff to greet you as you enter. Every employee is attentive to every table. Our server was gregarious, accommodating, gracious, and highly proactive. We definitely felt the 'warm and fuzzy' atmosphere. + +They pay attention to the little things -- such as house-made ketchup for your french fries. + +The food: about as good as upscale bar food is going to get. For apps we started with the calamari and the crabcakes. Portions weren't large, but very high quality. The calamari was flash-fried and not greasy, and seemed very fresh. For my entree I had the wagyu burger, which was prepared perfectly and served on a fresh challah bun. + +Overall impression: Citizen will have staying power, unlike many establishments that open in Old Town. The formula is really pretty simple -- offer high quality stuff, equip the place with great staff, and don't go overboard with prices. I'm looking forward to returning!",review,izOUjRwXReNSYtIl_AUR9w,1,4,1 +MwmXm48K2g2oTRe7XmssFw,2011-11-16,hUZgkyZGyIfNC7FdTpxtmg,4,"First off, I am not a science person. Unless social sciences counts, in which case, I have a bachelors degree. My boyfriend on the other hand was raised by two Phd holding physicists and studied electrical engineering in college. He has weird accelerometer-type machines in his garage and has conversations that would make the cast of the Big Bang Theory proud. Kudos to the Arizona Science Center for offering exhibits that appealed to the both of us. + +We started on the 4th floor at the Solarville exhibit which focused on energy, the environment, and conservation. It talked about individual household energy usage, and ways to reduce environmental impact. The 3rd floor had the Forces of Nature and Technology exhibits, which both offered interactive and informative displays. The 2nd floor was all about electricity, so naturally my electrical engineer bf showed off his knowledge. The coolest part of the museum for me was the first floor at the ""All About Me"" exhibit. It covers the systems of the human body and even has a stomach you can walk through and a giant nose that blows out objects. The neuroscience portion was very interesting, and I enjoyed taking the interactive memory tests. + +Admission was $14, not including special exhibits or films. We had a limited amount of time and didn't get to check out any of the extras (IMAX film, planetarium, pirate exhibit). We saw almost all of the museum in 2 and half hours. We were there in the early afternoon on a weekday, and it seemed like most of the school groups had cleared out by then. + +Will definitely be back, perhaps for the Adults Night Out. Nothing against kids, but I can only handle so many middle schoolers at time before I want to scream.",review,9eeqmxfVfAT4oyA4y2WcNg,0,1,0 +PwtYeGu-19v9bU4nbP9UbA,2010-07-13,xIxcJEIdZzUQdD52Bt2MqQ,5,While Calabria Italian Kitchen & Deli is at this location the Grocery portion has been CLOSED.,review,N6q91wGo-JY1yo-fMycjGQ,0,0,0 +bzDs0u8I-z231QVdIQWkrA,2011-04-04,_UeF6NX6eBLdV4gGKDmzYQ,5,Went here while on vacation in Phoneix based on seeing it on Man vs Food. Could not have been more impressed. Food was amazing. Far above expectations. The torta was huge and delicious. Would highly recommend it to anyone looking for a fantastic authentic meal at a good price!,review,3ix18AwLgVCEBMRoc_cMxg,0,2,0 +O4GznwWobGqx01DUlijgZA,2010-12-22,vpOkcK08T4Nvc0xHT4lE0g,3,"Totally agree with the rest of the reviewers about this being the usual greasy, meat-heavy Mexican restaurant with no frills, but soul-satisfying stomach-filling food. If you're on a diet or if you're the lettuce-eating, fat-free-everything types, you'd do best to steer clear of Poliberto's--everything is unabashedly huge and dripping in lard here. I wanted to get the three tacos combo, but since I'm a recent beef-eater, I couldn't stomach the description of tongue and beef head being included in the tacos. Though I figure it must be tasty :P + +Anyway, I got the chicken taco and the carne asada taco and got plenty of lemon wedges and salsa. The tacos were huge. The asada was more delicious than the chicken. The chicken came topped with lettuce and shredded cheese and had a hard shell, which I was definitely not expecting, and didn't like. Other than that...Ok to eat at when you're hungry and want to save a buck.",review,M-j04kcOanazSntBzoD3ng,1,1,1 +5ambRqdTJt9vGwFzVI9HBw,2012-01-07,vGuotZXQZw0ztpTxcVmAVg,3,"I thought it was ok, hubby thought it was spectacular. I tried to order my standard soy vanilla latte but they were out of vanilla - to me that's like a hamburger joint being out of ketchup. So I got a mocha instead - nice coffee flavor, but the chocolate didn't taste so special. Hubby had a cappuccino and would definitely get it again.",review,MBLcbQ_miC1c11cfXQRKoQ,0,0,0 +uPDTnuR-sOi47blHH943lg,2012-12-03,TLMZDcoS2Ex4b9dC5orLVg,5,"My mother and I were actually getting out of the car to go to Streets of New York next door when she smelled the Mexican food and suggested we try Roberto's instead. That should tell you what you need to know right there. + +It's a hole in the wall place for sure, and leaves much to be desired visually, but the staff was exceptionally pleasant and the tables were clean. If you're looking for fine dining, this isn't your place. At $7-$10 for an entree, though, it was delicious. + +Beans, rice, and chips were pretty standard, but the salsa, fish taco, and shredded beef tostada were very flavorful. The food tastes homemade, and in this case, that's a good thing. + +This place was also featured on TLC's Diners and Drive-ins show back in the day. One of Anthem's best kept secrets. I'll be back!",review,ywaCFgUztQtnuZktOrbSaQ,0,0,0 +57YV3wsiNBp-aK25qjUeww,2010-01-11,rXAGGokaD3Z0D4Zg_mhMrw,4,"I love an Irish pub, and I love me some Fibber Magee's. My trips are fewer now that I live out in East Hell (Queen Creek), but when I lived in Chandler @ Dobson & Warner, I visited much more often. I still love the feel of this place - the dark wood, the high round tables. I feel like I am back in Dublin. + +I used to get the bangers & mash every time I visited, but the past few times my most recent time I went with fish & chips - one of my favorites. I didn't see the bangers on the menu this time, so it may have been changed. The full Irish Breakfast is exactly like I had back at the Tyrrellspass Castle Restaurant on my way to Galway, Ireland. Wash it down with a Guinness or a Black & Tan. Sláinte!",review,zCC6huLkNBEr3JUgQyxJbg,1,2,0 +BM0-dgPJMBMmcmO9PVCJfQ,2009-01-29,4sK6WsKvJEI7jnnSOE9QRA,5,"I have been eating here since high school, so i can safley say bout 35 years. The food is still as good as it was when 15 of us would jump into Smitty's vw van and drive down for our 30 minuet lunch break. (West high of course) It has been owned by the same family since it opened in the early 1800's!!! Yes the cheese crisp are awesome but the tacos not the shredded beef but the regular tacos are the best in town. Order a couple they are sooo good. Love you Los.",review,argi5hRyyKKE3wu_vODCjw,1,2,2 +1eBJyYf3JEccqXUFxG1VWQ,2011-11-17,H_-LLz_613jdSCaqbEQ2IA,5,"I LOVE DIlly's! I always get the Dilly Club and Chicken Noodle Soup, which comes with a bread bowl that is oh so yummy!",review,Gt0tpFILcaTKZ27-pafRzw,0,0,0 +u8KvEPDGbX4v8mC2kHD5WA,2012-10-27,_G_rFpfBDISUIlSLKDUOtA,5,"Creative Healing Solutions is a fantastic naturopathic doctors office. I'm so grateful that I found this place and met Dr. Roxie Strand and her wonderful assistant, Melissa. My life has changed so much for the better since April 2012 when I walked into her office super frustrated with many previously unsuccessful weight loss attempts. Dr. Roxie was attentive and thorough, and suggested I consider HCG. I had never heard of it before then, so I went home and did my research. I was a little nervous, but never felt any pressure and when I decided to give it a try, I felt very at ease being under her supervision. Now, I'm 85 lbs lighter and feel better than I have in years. I could go on and on and speak to how wonderful the program, office and Dr. Strand are, but I simply suggest that you consider visiting Dr. Roxie yourself if you are seeking to address medical issues that you haven't been able to solve before. She does a free consultation and is genuinely interested in helping find a holistic health solution for you. I never thought I could totally change my lifestyle, but Dr. Roxie definitely helped me find a way to do it and has been a major supporter in my journey, which I appreciate so much! Whether you are in need of a weight loss solution or need someone to help with other medical matters, I fully recommend Dr. Strand.",review,M6Wi9pKDx-W6rGgmf9GVMw,0,1,0 +Qa6Gmw6OcNKrqVDh80I_9w,2007-11-24,k97DYNM0OXUxtu4LEwi6CQ,5,"After spending a combined seven years as a graduate student at ASU, imagine my dissapointment when I came to discover that there was finally decent Asian food walking distance from campus... two months after my departure for internship in San Diego. + +Dragonfly combines what I like about Vietnamese food (variety, flavor, price) with what I like about a modern, trendy restaurant (good decor, modern music, attentive servers). + +Though everything on the menu is above average, one item really stands out; cha gio cream cheese. I believe at this location it's called tiger rolls. Completely inauthentic, and I couldn't care less. DAMN they're good. When I drive in from San Diego, I often head there on my first night in town, occasionally as soon as I hit the Phoenix area, before stopping off to drop off my bags. Honestly one of the best things I've tasted anywhere. Highly highly recommend.",review,TLj3XaclA7V4ldJ5yNP-9Q,0,0,0 +mhQCxOiqp03qnhGRTtPduw,2012-11-28,FbW4ckzkuKf_OjzEhC61MA,5,I had lunch here today with co workers and it was absolutely delicious! Cannot wait to go back gain.,review,61FMUKz0Z0bCConUAOAIqQ,1,1,1 +-hQ8iZygzi0iiTFUkHgiEA,2009-01-02,uatdmmiDdIl7RqIauygFGA,4,"It's difficult to find good bagels in Scottsdale, so my roommate and I ventured to Tempe to satiate our cravings. + +We both got the open-faced bagel, cream cheese and lox. It was excellent and fresh. The bagel was chewy without being too bread-like. The lox was fresh and high quality. I will definitely be back.",review,xAFD6qLYBDxr8qwx68W7QQ,0,1,0 +3z4gm9x-CUpn6apB5GDmdw,2011-12-12,gm4m_n41DcA-ww5a-EEy7g,4,"The Sport Chalet is a little bit of a playground for me because they have an assortment of gear and clothing for many sports and outdoor activities. Among the areas within the store that I've visited in the past are boxing, basketball, hiking, shoes, workout clothing, swimming, & kayaking. They carry high-quality equipment from well-known brands. + +The store associates are helpful too without being too pushy. Specifically, they acknowledge your presense; ask you if they can be of assistance and then move along their way. The Sport Chalet also has a free membership rewards plan as well, which is nice to have, but not necessarily the selling point for shopping here. That is, you'd have to purchase a lot to accumulate a certificate for a few bucks off. Although, I probably receive a $10 off certificate at least twice a year just for being a member. + +Finally, the one aspect about this store and other Sport Chalet locations that sets them apart from other large sports stores such as Sports Authority and Dick's Sporting Goods is the scuba gear and onsite scuba training they offer. You are even offered the opportunity to try it out in their back pool, which I've experienced myself. You just have to fill out a waiver releasing the Sport Chalet from liabilities and acknowledging that you are in good health. Then, you change in your swimming gear and head out to the back to meet the PADI-certified scuba instructor. You don't have to put on much gear. It's just a pair of fins, a buoyancy compensator over your back, oxygen regulator into your mouth, and a mask. You're guided by the instructor as you first swim near the surface and then head deeper into the pool. I did feel really awkward at first, but that's to be expected. As I left the pool and was guided to the front door of the Sport Chalet, the other scuba instructor provided some recommendations on some equipment and indicated they do not receive any commission for the sale of certain products. I totally enjoyed my first scuba experience and recommend at least trying it out at the Sport Chalet. They offer these ""try-outs"" around the spring and summer.",review,ZkMwOom9fRaZvJxgjZOVXA,0,0,0 +_9h-jH3YOkAU9-2A-dy6YQ,2012-05-08,fzZZKnVttkOYZRIx6iYxCg,4,"You Say Potato, I Say Chicago +By The Rue + +Old Chicago is where I ate, +I would probably by lying, +If I said it was great. + +Lunch special calzone for $7.99, +By the time I left there, +My big hairy belly was doing fine. + +You're probably thinking ""eww that's nasty"", +Like Magnum P.I. it rules, +The waitress wasn't sweet or sassy. + +Inside that finely browned bread pouch, +I had it stuffed with pineapple and jalapeno, +Unfortunately my mouth didn't say ""ouch"". + +If you're reading this and rolling your eyes, +It's okay, I'm not here to entertain you, +I'm just here to eat pies. + +End",review,9JpnM-xebt0343KkGR_HKQ,0,0,2 +Cvs4FOqtYH1R4Qhiq4PgpQ,2012-06-06,F6B9EGeunz_tt8hQ5YYGCQ,3,"Food was decent, smaller portions which is GOOD, friendly service. Not the cleanest but a decent meal with good prices. It would get 4 stars if the food had just a little more flavor.",review,2qRPm3wpyAapzHLpQQm48Q,0,1,0 +ut-kla-EA23nJOij_dcL0Q,2012-09-27,DLHl_b298gR_Dj_m0pj7xw,2,"The thing about CPK I've noticed over the years, if you want adequate service, show up when it's not busy, because when it IS busy, plan on paying full price for drinks and meals that are completely and utterly lackluster. CPK, do me a solid, if you run out of garnish for your $7.50 sangria's, let me know. I really look forward to that soaked pineapple and cherry, thank you very much! And please, don't think of it as audacious for me to request a dollar off for your mistake. Bottom line, won't return, and won't recommend this to anyone I love or even just moderately like.",review,S103dsmqYSMlDR2SxVm5cQ,0,0,0 +NN2qs5B713vM6BDcMyrg4A,2012-07-09,wuaTVdgCiq9SFKzi6gpclg,3,"Some highlights +- Loved the special of the day: red velvet pancakes breakfast with cream cheese topping. YUM YUM YUM +- Corned beef hash is canned and not homemade :( sad face +- Fried Chicken breakfast is a huge portion- tasted really well but definitely sad that they only have sausage gravy. Would love it if they could offer a non pork gravy for the non oink eaters. + +Overall, it was delicious, simple menu, great service (Thanks to Waitress Kelly she was really nice) and would much rather support local eateries than Ihop or Denny's anyday.",review,X-EV080aSeC5V00YBwxR1Q,0,0,1 +HTpBzBg3OLU-lQUqRIqoiw,2006-06-22,95ns-bXUmMN7O1FfVHModQ,4,"This Chili's isn't a lot different than the one on Mill. However, not being on Mill does have its advantages with not being full of college kids all the time. The service is pretty good and it's crowded all that often. You can have a quiet dinner here more than at the one on Mill. Pretty good Chili's here.",review,57a1sTcwVkNVsxGO_h_3Yw,0,0,0 +a12JKFiqBVyaUfTWNaAzQQ,2012-06-04,TzFNfe5WaVX9Oobtp0TbBw,5,"OOOOOWWWEEEE!! Have yall tried ATL Wings yet!!! If not what are you waiting for! They are the BOMB Diggity! + +I don't know why I haven't updated my review either, so here I go! + + +The honey habanero are still my #1 but I also love the Cajun Hot! Holy Crap!! Get some of the Cajun Hot wings and some ranch and their hot sauce on the side, dip your wing in the ranch and then the hot sauce and watch out!! The only time you really feel the burn is when you're no longer eating, gums & tongue just be blaze hot and mouth just be water for more, yes my friends that's the heat I love!! + + +Luv me some wings from ATL!",review,8dbRf1UsWp2ktXHZ6Zv06w,5,1,2 +_OYlq2UoKPQO_ElqhC3a8w,2010-10-30,_lyM92EDcAUjmBp1U5kHJA,5,"Wow this place is great. The whole atmosphere is unique. Bowling, bars, dj - it's an awesome idea. Only thing is on a Friday, it's super busy and takes along time to get a bowling lane.",review,kyXK79FRxnFgNfZP3GUrGw,0,0,0 +FgyBmc-XS_ViFAf8Wy25yA,2011-11-12,UGv0o5DTUKjzQr_mKxPpjA,5,"Perfect hotel for my conference travel needs. Clean, new, great bars, close to other food options across the street, super friendly staff. Great business traveler property. The bed was SOOO comfortable. Sometimes, Starwood beds can be too soft, but this was just right. + +Access to the convention center is so convenient. Just out the door and down a block and a half. Can't beat that in the heat!",review,yk3kUEPdNDuIcwdUF2yaNA,1,2,1 +vDYERdCM8Aj-MMJB9yW3-w,2012-07-06,ZrYOTkDk0kAwtyNnrkhJjQ,5,"Duane is amazing! Reliable, Responsive, Reasonably Priced, i simply can't reccomend him enough! I've used him four separate times now and have been more than happy with each visit. I won't call anyone else!",review,TJzZTQ9Wex5hbHFXFgiM_Q,0,0,0 +38G8LPiqECn_P6LQfUnfZA,2008-09-08,HxUZeH6L-RB6nbBdy7-WYQ,4,"I have a long history with this place, which is where I worked my first job at 16. + +It's run by two Sicilian immigrants and there 2 sons. Originally the owners had a joint in NY, but moved to the valley and opened this place. + +They run a military style kitchen where cleanliness is enforced to a maximum. Almost everything is personally overseen by one of the two owners. + +They offer a regular Italian menu... +the regular pasta choices, nothing too fancy and no Alfredo entree. +They have some meat entrees with veal and chicken. + +The pizza is NY style and really good and rich. +They offer a Garlic and Olive Oil pizza that is so good. I get it with pepperonchinis on it. + +The crust on the Sicilian pizza is the best I've had. + +Sometimes I just crave a small cheese pizza from this joint. + +The Eggplant Parmesan is in the house here, but everything holds it's own. + +It's priced ridiculously well, so much so, that the senior citizens roll out from Sun City all the time. + +They have a few beers on tap, all domestic, and some decent wine, but nothing fancy at all. + +The bottom line is that the food is good and cheap and the place is real.",review,l81ILmOhky5bG7o4r3rkhQ,1,3,0 +Sq8wUe-kWZLkoM9vphwXpA,2012-05-23,Kq2s_cnQbhNCRf3cK2Whmw,4,Good food and great service. Staff is very friendly and attentive without hovering. I would definitely go back,review,3ZlmRMwWaoyYBGqy3IoMRg,0,0,0 +yc5AH9H71xJidA_J2mChLA,2009-08-03,Y151z4JLAGIM_I3IVNRC4Q,5,"This place seems to get better every time I visit. The first time was a Friday night out with the guys. We met up for dinner and I had (and loved) the pulled pork and sweet potato fries. After dinne we got our drink on with a live band. The waitress was helpful in getting us drunk off a variety of liquors. And the shots kept on coming! It was a blast. The second time was more laid back, just grabbing a beer with a girlfriend. It was a Tuesday and the place was pretty busy. The next time me and the girlfriend showed up completely wasted and they had an Irish band playing. It was a perfect way to end our night after clubbing at the gay bar! We had a baileys nightcap and everything went dark from there. Awesome night!",review,Lp_Ykqfbv5Q-oyGYlMGJRg,2,2,2 +Cr2JNnewX53TYd9w6qw6Jw,2011-07-17,_m5wKppyZ3IJEDzlHEYN7Q,4,"The burgers here are pretty average. Thin, flat, kind-of greasy patties with lettuce and tomato. But what sets this place apart is their other offerings. My husband got the tri-tip steak sandwich and he said that it was delicious. The meat was very tender and cooked perfectly. I loved the fact that they serve sweet potatoes fries. Those have become very popular lately but this is the only fast food place I know of that has them. The ones I tried were cooked perfectly and very lightly salted. The onion rings were also cooked just right with no soggy pieces. I thought that the batter to onion ratio was slighly scewed toward the former but my hubby thought they were perfect. Their regular fries are also very good. I tried the chocolate shake and it was really yummy too. I think its great that you can get a veggie burger here as well as a tuna steak sandwich. The extra toppings they offer such as sauteed mushrooms, avacado, and teriyaki and BBQ sauce are all a big plus as well. + +The decor is simple since it is a fast food joint. The booths were big and comfy and the faux leather looked slightly more upscale than you would expect. We went on opening day so the service was phenominal. We didn't have to wait long for our order and everything was to our specifications. Servers came by serveral times to pick up trash and offer to refill our drinks. The restroom was very small but clean. I try not to eat fast food too often but I will consider coming back next time I am craving a burger. Or maybe I'll give one of their salads a try. They earned a repeat visit from me and an extra star since they donated 100% of their opening day profits to Phoenix Children's Hospital. A big thanks to Sarah S for posting that on Yelp events page so that we could contribute... and fill our bellies!",review,VPXgY9lGJF3XC4ZpusxNuA,1,4,1 +EfmR4e1tmjC5_ZQOgfnYrg,2011-04-03,PidSprgbp6iFCpsRUxpgOg,5,Amazing place. I had the swordfish with pasta and fresh veggies. Delicious great service! Although the check was a little late the waiter brough amaretto on the rocks to apologize!,review,ysZSP646Ikjb9pPKxuBurw,0,1,0 +bZivzFTkkjNtUBSuMhoCtg,2009-04-06,1PB20yqX74DsxLp7kFUVJw,5,"Last time I went it was lunchtime on a weekday. Our server was very quick and attentive. The sushi lunch deal was *amazing.* Piping hot miso, delicate seaweed salad, crisp cucumber salad, flavorful sauteed veggies, fresh orange slices and the main attraction - tuna, yellowtail and salmon all absolutely fresh and perfectly prepared. I left totally stuffed and happy. One caveat - they should turn down the music a little during lunch; happy hour should be one level of noise and lunch should be several octaves below that.",review,lw_Lj1XjPjOYrDIkDEcDzg,0,0,0 +MMMHmbfq3nxUQREU4hKOKg,2011-12-27,78DPfcFjDI1E1AblkJDE8w,5,"My house is clean using pet-friendly products. They arrive on time. I know that some of the reviews talk about having trouble reaching them by phone, but I have never had a problem reaching them by email (which I prefer). The ladies show up, work quickly and efficiently, and are on their way. I couldn't be happier.",review,rs_SGdqbZ6uYCJyYaaGbnA,0,0,0 +9mQj65SmYj2pcehH339aEw,2009-02-05,iu8NI-lkXHNNVahvaQnerg,3,"Hidden House has some things you expect in a neighborhood bar: lots of pool tables, giant circular bar, tagged restroom, friendly locals (somehow curious or maybe protective), cheap cocktails and specials on pitchers of beer. Then there's a few things different about this place: an usual mix of suits and sweat pant, old and young, some talented pool players and a really smooth bartender. Located in the ""new"" downtown and within walking distance from my hotel. The walk there and back was actually as much fun as sitting in the lounge, some parts of downtown are stunning especially at night when the lights are on and nobody's ""home"".",review,vyFYFsQMkHkN3vw5jPuCZw,0,0,0 +6bjKi4wtIJWD24bFtPV4Ow,2008-10-02,ATAc9orpgu7VGWp6LcAjHw,2,"I am changing my review - lately because of bad economy, they are not getting enough customers, their food quality has gone down. I won't waste my time or money on this.",review,9YlXXAy6YpADI7v42UwWCg,0,2,0 +JokKtdXU7zXHcr20Lrk29A,2012-07-14,Y7clMC7cgKDpH1tHY3mgLA,5,"Thanks fellow yelpers for brining us to Four Peaks! My husband and I were stuck in Phoenix for the night and needed a place for dinner. Ironically we ended up at Four Peaks (a Vikings bar) on our way back home to Minnesota. + +My husband loves beer (brews a ton of his own) and especially enjoyed the beer sampler. Trying 10 beers for around $9, yes please! I don't really love beer so I had a cider and it was exactly what I needed. For dinner I had the turkey burger with fries. The turkey burger was standard but the fries were awesome. I think it was the beer batter. My husband go the carne adovada and he raved. I think he may try to convince me to fly back to Phoenix just for that dish! + +The atmosphere was also great. It was very laid back and fun to be able to sit amongst the beer being made. + +I highly recommend Four Peaks whether you are a Phoenix native or otherwise!",review,Mc25_FATV3pNrELPIL5GOw,0,2,0 +2rMf09C5uXzF2qIlD5F5BA,2012-05-17,qrhd-RHgqCa3xIoGE6mvCw,3,"It was consistently the best carne adobada, now consistency is the one thing they don't have. Beer selection, menu, wait staff and most importantly quality seem to change every time I'm in. Please figure it out soon...",review,wAFApQOeUZ_tEGnxro9XdA,0,1,0 +lciZhyp_xwKNBOVyzxqhbg,2010-09-17,f5GQHjsvNcog0NFnVBPU9w,5,"Ever since I was diagnosed with a Gluten intolerance, Chipotle's yummy burrito bowl has been my constant companion. The barbacoa is seasoned well and works even better with a kick of the Chipote Tabassco sauce!",review,6ZihDtzHna8KhFzCRE8rHA,0,1,0 +-sAoGZTnFtDZUY9JYWHqlg,2011-07-23,fFthHw2J55FRdI45khguDw,3,"I stayed here for a night over Memorial weekend and had a pretty decent time. It's difficult to give a star rating here because some things were awesome and some things sucked, so I ended up with middle of the road... + +Awesome +1. My first server of the day, a cute brunette, was all smiles & friendly. She wasn't hovering but just seemed to appear when I was ready to order another drink. Her recommended mojito was very good. +2. Location, Location, Location +3. There was a really cool bellman who helped me with my bags when I arrived and again when I checked out. He retrieved an item I had left at the pool from lost & found and was just all-around nice to chat with. + +SUCK +1. My 2nd server lost my ID. LOST MY ID on Memorial Weekend. Can you imagine the fun? +2. I had a lovely view of a rooftop full of trash. +3. The pool was gross. WTF is with selling tickets to lounge at your pool when you already have a full hotel of paying guests? Thanks for screwing me out of a lounge chair, good service, some measure of exclusivity by letting every d-bag with $20 squeeze in your tiny pool. + +Frankly, I think 3 stars is being pretty generous for this experience.",review,fiyOnIEKBOgj00NJLwDBVg,3,6,4 +0db71MbrvcJnyk71COCJBg,2012-01-23,tK-Mqf42lE1cX72RHoJnDQ,3,"Great food, bad service. Does anyone speak english in here?",review,KuPscbI0KPxudSMPZIcrCA,0,0,1 +9OPheVf5o8sRcRHxJDl4-A,2011-02-16,xVuA-212xLIwLCpASEo2Zg,4,"Met Josh, the owner, last night and have to commend him on this sleek lounge. Great beer selection. Listed included a number of IPAs which gets high marks from me, including the revered DFH 90 minute. Atmosphere was sophisticated and dark. The decor had a polished charm to it, think swanky NY loft. Great service and good music for mingling with other folks looking for libations. I will be going back to this little gem.",review,LHumHJvQGETuVdAS3jnyeg,0,1,0 +tdeHd2AVYlEnz9F1UGb84Q,2008-09-30,M_y5AXTHKfuOT68ZJpUWYg,4,"Daahhling, I'll have a gin and tonic. If you don't feel fabulous here, then you don't have any imagination. + +I love the decor, it's fun to hang out here and have drinks at night. I've also had breakfast here before too, it was pretty good and certainly a different feel from the saucy evening there before, but it still had the same effect on me, that I was ab-fab. + +Hanging out by the pool is fun too, smaller than I thought it would be though. (that's what she said)",review,9VPNlcKsL99FvKtz1r9qJg,4,2,5 +c0RSs2KYK5Y-ZlSrNq9LyA,2012-01-13,-Mq3rKCHzz288lpDfpBxUg,3,"The lemon grass pork is 2 stars on a generous day. Disappointing, since they tout their Vietnamese selections as being specialties. The pork was tough and the noodles were more like lo mein than the vermicelli type rice noodles I was expecting. Portions are certainly generous enough... I like that you can make your own rice bowl. That's the direction I recommend if you come here.",review,vsXP832M0kOxKpfduD7dWw,1,3,1 +ABC57h7Dh1Vy9q3cztAm5A,2012-07-26,TpCT7nTM2QEcqWYvDQESgA,3,"Coffee is pretty good, but, well, I wasn't thrilled with the ambiance, or the barista. The first time I went, they were having a shift change and forgot to make our drinks. The second, the Batista was kinda brusque. Also, I agree with H C's comments... I walked in and everyone stopped and stared...not great ambiance,but good coffee.",review,4TA4x0bgELIZ-MCj7PaEVQ,0,0,0 +RmA5zN-Bs89lsTuY6v8W3Q,2010-06-30,e4T32rxCb_ZHoXP2uxMkHw,3,"Went here for happy hour with the missus after work today and it was good enough that I'd go back but not the best that I've had. We ordered the tuna sashimi, spicy tuna roll, soft shell crap roll and at the recommendation of the waiter, the fake and bake roll. + +sashimi - Good, not great. Could of been a bit colder. +spicy tuna roll - better than the sashimi but not epic. +soft shell crab roll - this was actually my favourite tonite. It had the right amount of texture and flavour. +fake and bake - they must of used some sort of torch to brown the top, probably powered by lighter fluid as all I could taste was the burnt part on top. Would of been fabulous if they didn't try to set the food on fire. + +Close to work, I'll be back again. Prices and the all day happy hour are both great.",review,a2yYBmJxshUSJyDOqio5cg,0,1,0 +Lh9nz0KYyzE-YRbKuCYeUw,2010-12-16,-7yxrdY13ay15rGB7WibMA,5,"I have been going to Arizona Auto Care since about 2002 when I worked in the same complex. I have since worked all around the valley and moved out of state and back and I have always only taken my vehicles there for service! They are honest and professional and always take excellent care of my vehicles. Jeff is one of the owners and a Subaru master tech and has worked on countless Subaru's for me, friends and family! Jeff and team will give you honest and sound advice when fixing your car and not try to oversell you just to make up sales and quotas like the stealerships. Thanks again Jeff, Chris & guys at AZ Auto Care for years of great service and to many more!",review,ayKW9eWwGFcrtJaHcwZUCw,0,0,0 +ObYf1kZVWfL8NocxUwGJKg,2010-06-03,Didhu6CE5kZnmty4kRDTtQ,5,"MARGARITA time....I love their ritas on the rocks!!! + +Their shrimp tacos are my favorite in town. I love the salsa bar. The wait staff has always been nice. The prices of food and drink are great. This is a great place to go with friends to eat good mexican food & kick back a few drinks. + The patio area is nice all year round.",review,47VCrr83Tvtkp1FvDa0ftQ,1,0,0 +V1nEpIRmEa1768oj_tuxeQ,2011-10-29,Gkd5aVkqiMLeg35tTZdD_Q,3,"I will preface this by saying that I went here a couple years ago for lunch and thought it was very good, which gave it an extra star over my true opinion of my dinner there last night. + +The BF and I went here before seeing Louis CK for our anniversary. We were seated right away, so that was nice, but it was like 5:45 so that isn't too shocking. We sat outside, which was nice and had pretty christmas lights on all of the trees. The waiter comes by after about 5 minutes and asks us for drinks or apps and we ordered the burrata as an app. The menu said it was topped with a balsamic glaze, which sounded wonderful. We were also ready to order our pizza but the waiter disappeared immediately after taking our app order. So we wait. and wait. and wait. And I swear it felt like it was a half hour, but it was probably more like 10-15 minutes later (we were super hungry) the waiter came back to take our pizza order. We ordered the La Noce and he left. Well.... we waited some more. Finally got our burrata and it was a mess. Two giant globs of cheese with the lightest drizzle of balsamic dressing (not vinegar, because there is no way this weak stuff was straight up vinegar) surrounded by bread and prosciutto. It was large, so I'll give them that.... but too large in my opinion, because there isn't enough bread for the toppings. The burrata was good, creamy.... but it didn't taste like balsamic at all, which was the most appealing part of the app. The prosciutto was alright... it didn't have a ton of flavor, but it was fine. The bread had a burnt flavor... not my fave. Then we wait about 20 minutes.... waiter did not check on us.... Finally get the pizza. The pizza was good. That was the redeeming item of the night. It had arugula, walnut, ricotta, and mozz. It was a tasty combination. + + Now, the whole time we were there, there was a table of about 6-8 extremely loud, drunk, possibly old sorority girls sitting near us. All we could hear is their conversation, so much so, that we knew one girl was named rochelle and one was Tina and one had been divorced for 4 years and they had a friend named Lori who was just sooo crazy among many other details that we should not have gathered from sitting in their proximity, which obviously puts a damper on the experience. The waiter was so occupied with them, that we felt forgotten about all night. He was not attentive, he did not ask how things were, and he disappeared for long periods of time to go do who knows what for this other table (they had a bunch of ridiculous requests like splitting the bill 6-8 ways when the menu says they don't do that... hmmm). We sat down at 5:45 and barely got out of there around 7 to make it to our show (we were walking). So the experience wasn't a good one, BUT I would be willing to try it again, as I did have a very nice lunch there a few years ago.",review,3gIfcQq5KxAegwCPXc83cQ,1,1,2 +qjmCVYkwP-HDa35jwYucbQ,2009-01-10,5HLUbZHJpWvz9DndacoWTw,3,"Ok first off, with the demise of Soma and the fact that Green is in Tempe.....this place is a welcome sight, and I know I'll be back. The food is excellent. However I feel that Dr Weil has has has the wool pulled over his eyes by Mr. Fox. Come one ""Anazazi Beans"" and a drink called the ""Medicine Man""? Really- as an American Indian rights advocate you'd think we'd be past this. Actually, you'd think educated white men with lots of money would be past this --but ya know. Just because Anazazi really refers to Ancestral Pueblo people who lived mainly in NM and N. AZ and means ""ancient enemy"" in Navajo so that term isn't used by nearly ANYONE anymore...means that you probaby shouldn't call your dish by that name. Other than that- I give em props for trying. + +I recently had another experience there where EVERYTHING was going wrong that night, and the staff recovered....kinda. My advice, shape up if ya wanna last.",review,YoBgKOdfpGH48LpIDSfoQQ,4,5,3 +ABrSt3fsirLrUYNVrD3fbQ,2011-08-14,N2643ul6bM5vJ8anXng-rQ,5,"Went back, they appeared to have remodeled and noise level was greatly reduced. Food, atmosphere, everything still wonderful. In my first review, I stated ""the only reason I'm giving it less than 5-stars is because of the noise level."" As the noise level issue appears to have been rectified, my review is subsequently being modified to reflect this. + +Last time I was there I had a salmon salad, which was good though in all honesty the salmon was the star of the dish. I asked the server to please ask the chef how the salmon was cooked so such perfection. I honestly did not expect for any type of response. Lo and behold, a gentleman came out and explained the procedure utilized to get that sear and texture without overcooking or under-cooking the salmon. + +Re: Another reviewer's issue with ""soggy fried calamari"" +It is tempura calamari, which is different from other ways to fry the calamari. I have never had any issues with sogginess unless I leave it to sit for too long. Hmm... Clearly, they prefer Zinc Bistro. Honestly, I haven't been to Zinc Bistro so I cannot draw a comparison at this time between the two. + +I will definitely go back as soon as I can to The Greene House -- Oh, loved the recent press on the Chef's high praise, it *is* well deserved!",review,gbskKkumPmsjW0jGPtUgfw,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2009-09-22,1yKxcFZSM-wh3vyIy7GSNw,5,I can't believe no one has talked about Pasta Tuesday. Definitely the best time to go but make sure you get there early because the pasta literally runs out. It is that good. They have this guy (Guido) come every Tuesday and he starts making hand made pasta early in the morning. He picks 2 unique dishes. It was one of the best pasta I have EVER tasted. I crave it all the time. I had a fettucini noodle in a alfredo creme sauce with herbs and pine nuts on top. I can't even describe the taste (wow what a good food critic i am). You just have to go check it out. I am going TONIGHT!,review,McMS1Xw6qouR8M4pygTNDg,2,2,2 +MLAnvEcvDfOWELHUN_0xEw,2012-11-27,x7QF3Olbf3UAkaMTNYyw2w,3,"Closed? Really? It seems this place just randomly shut down, after much less than a year of being open. Only went there once - we enjoyed the food, the ambiance, and the beer. We recommended it to others as well. Showed up on a Tuesday night for dinner and everything was packed up....? A little searching on the web (Facebook, specifically) shows that they're done. What a shame.",review,2SCViG5YGt-VKkX2jsVphw,2,1,1 +-92fePI5W6MwOaxMxphFjA,2012-01-06,gMLI7DXAcr-jTheFH7IfHg,3,"For mall food this place is great. Love the pitas, rice, and yummy potatoes.",review,0tYlK-FieQXAdmTQ9DWTbA,0,0,0 +zE0bU4QMftkKzhZL7pZmJg,2011-01-31,kO4k4WDbaU0YmUW0YceTXA,5,"I've brought my dogs here and met with both Dr. Holmes and Dr. Edwards and they were both extremely knowledgeable and helpful. Over the last 15 years of living in Phoenix we brought all 6 dogs that we have had in that time to come see them and I wouldn't go anywhere else. This past summer I moved to Boston and regrettably haven't found a quality veterinary hospital like Pecan Grove. Ashamedly, even after talking to my current vet and be unsatisfied with their answers, we called Pecan Grove and Dr. Holmes was very helpful and was even able to reference cases and articles to us over the phone. While the answer we got from our Boston vet sounded more like they were guessing than actually knowing the answer. + +Pecan Grove and everyone there is amazing and I wouldn't go anywhere else (had I not moved across the country)",review,kSmSz26adbfasuzOx6Beyw,0,1,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-10-10,W8OgtYmRGkwh55Pb4xLFqA,5,One of the few legit brewpubs around.,review,--rlgfAvvi0BtfRDA1p-VQ,0,0,0 +FMIHdl8QE0-gkaHvnAkEhw,2011-08-09,1ZUaYX9vi4UyGF0M6I7fVA,4,"On a mission to find some University of Michigan apparel that fit my pregnant body, I started my search with a phone call to Sports Authority. I struck out there within minutes as I was told that they only carry AZ team apparel. Shucks! + +Luckily for me, Lindsey F overheard my conversation and suggested I call Bischoff's Shades of the West. She remembered seeing a ton of college apparel during her last visit to this touristy store with all kinds of inventory including Western wear, food products, jewelry, etc... I skeptically called and sure enough, Bischoff's carries UofM apparel as well as all kinds of sports paraphernalia including hats, t-shirts, shorts, keychains, and more from the NCAA, NFL, NBA, NHL, and more! + +I headed over that afternoon and found what I was looking for... and now I know where to go when on the hunt for all kinds of random items from AZ novelty gifts to college football attire. Thanks Bischoff's, and ""go blue!""",review,fczQCSmaWF78toLEmb0Zsw,4,7,2 +a1aFceRgC03yy3ENdynDnA,2012-08-20,_mYI51Rm2ExYIrroaSVMpQ,4,Great service and delicious breakfasts!,review,vlxXm83oGWun_aQT73c8mA,0,1,0 +gUt-pPUpOVVhaCFC8-E4yQ,2012-12-27,65fLXeyBK-0AEaoSXyLmIg,1,"Wow... After eating sushi from across the nation i have to say Scottsdale's Geisha A Go Go has surprised me for an ultimate low. Andrew, the manager, reassured us that we had something wrong with our taste buds for not tasting how fresh the fish was here. Insulting to assume. Not recommended!!!!",review,rZ8TvWAHA-avF8fwjrEmGA,0,1,0 +W34RE9avBNLfkmiiZwPKiA,2009-06-24,K7N-DrWgKiYySwHfP3sf8A,5,"Agree with the previous review. Something nice about this super target. Leaving a review to back up the other!! + +My only gripe is I spend to much at Targer. Or my wife does anyway!!!",review,UPtysDF6cUDUxq2KY-6Dcg,1,0,1 +R3sbDS0YcJDedSmUjwE48Q,2012-02-04,9vSczdKtFuifQNbw-vtsMQ,5,"burger heaven! I had THE PIG Burger... it. was. delicious. and it was served on a pretzel roll. mmmmmm + +Good vibe feeling in Circle H, I like the pictures on the walls, the bar look, the entire environment was relaxed and easy going. I came the day of the official ribbon cutting, so I got to see that happen (i had no idea those giant gold scissors were real scissors by the way. i guess, that is a dumb though b/c what else would they be??) and it was nice to see everyone gathered for this moment. + +The french fires were piping hot and delicious, they have all sorts of sides like slaw, beans, mac n cheese etc. + +I also had a bite of the brisket sandwich. It was so very very good, I am ordering that next time I go back. + +Local beers on tap, good price too. + +Great start for a new restaurant, there were of course the new hickups, but those kins get worked out with more time. Nothing to worry about. That's how you learn!!",review,XBHJCDzNh--mBhJkzyM_iA,1,2,0 +lAGDe38li38fyf971CslFg,2010-08-07,vQgvRiWUmzYP44pYeqPKuQ,4,Hubby and I have lived less than 5 miles from this place for over 20 years and never stopped in. Looking for good Chinese so yelped the area and Dragon Palace popped up with good reviews. Comments about the outside are right - little corner spot in dated strip mall but who cares if the food is good....and it was! We ordered three lunches to try out different dishes. Both of us loved the egg rolls along with the sweet n sour chicken and the house chicken. Not as thrilled with the beef and brocolli - nothing special on that dish so will stick with the chicken next time....and there will be a next time! Don't be fooled by the outside - step in and try the food - you'll be back.,review,DT_5ucHfprLoh78wgzY7zw,0,0,0 +Uj59qeEbO1cls-M5EkvLxw,2011-07-27,8EAh9Yey12cNl8nV3AxnhA,5,"We only come here for the water and in that regard there are no complaints about this place. + +There is no chlorine smell, faucets are all fast and the guys find your water card fast.",review,LmCkhilB78gPm8uIU5nCWQ,0,0,0 +x0NOgX6P4x-82cC0kcO1hg,2011-02-15,b70tym0Ow8OaPcExpcGo0Q,4,"My wife and I love to visit Sushi places to celebrate our anniversaries and hallmark holidays. + +Originally, we dined at Akai-Hana a couple years back, and didn't have that great of an experience. We felt the food, service, and price just didn't add up. We then started to visit the Ah-So place right up the street because of their happy hour specials. We decided to give the Akai-Hana grill another chance after a terrible dining experience one night at Ah-So. + +It's the only place we've been to lately. We've discovered their happy hour and reverse happy hour menus and they are great. The service has greatly improved and they have 2 sushi chef's behind the bar finally. + +If you haven't been there in a year because of a bad experience, give it a try again. The staff has improved as has the quality of food.",review,qrYoXi7nj9PqXFFy9p_XPw,0,1,0 +3HciJAVduCRoPDdzgh7cAA,2007-06-14,YpyP7Oq8LMyognfgiJFTiQ,4,"Buffalo Exchange aims to be a cool thrift store with only stuff people would actually want to buy. Although they succeeded, the prices aren't really at all close to thrift store prices. They have some unique things but I wouldn't go in there expecting to get a great deal. If you are feeling thrifty stick to Savers or Goodwill, and treat Buffalo Exchange as a regular shopping experience.",review,PS0lCxjGNeUrKxYSdpW-Aw,0,0,0 +cdwHgELA2puX2DNfwSt5EA,2010-04-18,xsPo8uNVK20myJvPrzuPLA,5,"My picks: +Derby Smash +Green Chili Risotto +Pan Seared Escolar +Sticky Buns + +If you are looking for Arizona charm, this is the place. Every Arizona resident needs to experience this hidden gem. + +Thanks Jacquie, Kristy & Tim for continuing to believe in this historic restaurant and landmark!",review,4g0BSDfFUUPuDpJcdeqmAw,2,3,0 +5tey93wPQOb7z6jOLJZ30w,2012-05-18,BRsKUq1qQLrj0pLvzl3jxw,3,"The Good: +-Virtually any sport you want to watch, they'll have it on one of their many TVs for you. +-Strong drinks, made correctly. Their bartenders are great. +-The staff is very friendly and usually quite attentive. +-Patio seating is plentiful, along with a firepit for the winter and misters for the summer. +-Bouncers at the door know their stuff and will take out a crazy drunk before you even have to ask. + +The Bad: +-The food really isn't very good. Most of it is run-of-the-mill bar food that came out of a package and tastes like crayons (bland and boring). Their garlic fries and cheese sticks are delicious though. +-It can get very crowded on big game nights, and as such service can get very slow or the servers may even not be told you've been seated (the hostesses aren't great). +-Sometimes at night they play the music ridiculously loud - it's a bar, not a dance club. No one goes there to sit and not hear their company. + +Go There For: A sports game with your friends to drink. +Don't Go There For: A hearty meal with grandma after church on Sunday.",review,6DoJl-yhjpDzrCFpwdq_Aw,0,0,2 +Zruvunhqw7cuyuoe7g09Gw,2012-01-08,2OWrJo12SomPvra4SKfV_A,4,The margarita pizza is awesome. They use a delicious red sauce that I would be happy to eat on noodles- much different than a lot of pizza places that just use a tasteless red goo. Good crust too! The organic root beer is pretty gross though.,review,uVjawOYO0GajgEMYlAvq8Q,0,0,0 +-nWigG5EhFLjdSgGZthS3Q,2011-12-05,BrSCykqUpcCGhUGq0jVlwA,4,"I was put up here after not making a flight (the woman I talked to at the gate blamed Orbitz for not scheduling enough time to make a connection). True. But then a really nice man hooked me up with a voucher for this hotel accomodation! + +I didn't realize that ALL the Embassy suites do the Manager's happy hour in the evenings; this one was 5:30 - 7:30...But let me back it up a bit. My whole experience here was wonderful. + +A nice man, Terry, drove the shuttle from the airport and was very helpful giving me some ""things to do ideas"" around the area - movie theatre, shopping mall...etc. When we pulled up to the front he even pointed out a restaurant next door, 7-11 and CVS. I was super tired from my flight so it was nice that he took the time to point things out since I was not paying attention. + +I went inside and checked in- very fast and smooth. The FD clerk even offered me a beverage- hot coffee/tea/cocoa. She even told me how to access the internet free of charge. I found my room quite quick and going inside was so refreshing! + +I had an immense amount of space for just me, as these acommodations are suites. The little kitchenette was stocked with tea and coffee and ice machine was just around the corner, not too far of a walk. It was extremely chilly in the room so after I found the thermostat, I turned it to be warmer- I ended up turning it off I was so cold. I did a quick flip through of TV channels but didn't find anything I wanted to watch. And then I tried to connect to internet- fast and easy. I called to see about getting a bathrobe and some toothpaste and it was brought up in less than 10 minutes! + +I thought about going sightseeing and ended up taking a nap. I didn't realize how tired I was! The bed was great! Comfy and warm! I didn't want to get up! But I ended up getting up so I could go to CVS across the street for a few needed items. + +Next morning when I left, there was nothing I needed to do to check out and the shuttle service back to the airport was very prompt. + +I wouldn't mind staying here again should I be stopping through town or stuck overnight on an unforseen layover! + + +#Yelp 365 Challenge - 124/365",review,ffetR-BMd0ehpf7aKYO5gw,1,3,1 +hGQsnkndreW7b26XC2HVRA,2010-03-17,ScnMz8HfacbcMtZ7lFbo-Q,4,"My husband & I have been going to one Zipp's or another around town for the last 7 years...we currently live near the Old Town location...always our 'go to' place to eat during the week when we don't feel like fixing dinner at home. It's your typical sports bar with a bit better food selection. You can't find a big 32oz beer for $4 ($3.50 @ happy hour) anywhere around town & their onion rings are outstanding, you can order 1/2 & 1/2 ...fries & onion rings with your burger or sandwich. We have never had an issue with the wait staff at any of the 3 different locations we have visited. The new boneless buffalo chicken skewers are fabulous & on special when regular wings are. +Happy Hour M-F 3-7pm +$5 Wings & other stuff +Plus nightly specials 8pm-close & +Weekend specials 11a-4p +We love Zipp's!!",review,RJX1E5_xwd5x15TYFOYv1g,0,1,0 +xEg0-xrQywU5K-WQO7cy0w,2012-04-06,32ermwbl-qvbMWcdUkcRAA,3,"Buffet is great, Good Selection of food even for me the picky Vegetarian. Naan tastes great, choice of plain or Garlic Naan. Food generally tastes good. Rating on Buffet alone, I would have given 4 stars. + +However I might not return there for Dinner or Take-out. + +Dinner Entries are priced well above $10, and generally use frozen vegetables (Crinkle cut carrots anyone, god I hate those) + +The last time I ordered take out, the quantity of my dishes was about half of what I got the previous time. (Fine, Can I pay you a little less than the bill?) and the food tasted sub-par and my naan was burnt. For this they get only 1 star. + +Good place for the lunch buffet.",review,SxUdGXJbxMGR07nD_YIQcA,1,0,0 +FeI75xIG8PF_XZ6P80gLBQ,2009-03-05,r8-11K8NPQ3_0BFK1KiAMQ,3,"3.5 if I could, but just a 3 for now. + +I really like the location and I hope more businesses open up downtown. Their fish and chips are really really good. A good portion too, enough to finish without getting painfully stuffed. The beer list is decent as well, but pretty pricey for what they offer. $5.50 for a pint of guiness? I can get a six-pack for that. Hopefully they start a good happy hour price - if so - I'll be back often. + +I went during the grand opening and the live music was pretty good. They ran out of guinness at about 8pm, but got another keg within the hour so it was all good. The beer however is extremely slow. The waitress warned us that we'll get our food before our first beer, and she was right. My friends and I all ordered irish carbombs and the waitress had no idea what we were talking about... whaaa? So I explained what they were and she returned 15min later. 1/2 glass of guiness in water glasses, not the pint glasses. Was probably 1/4 pint of beer and the shots were in tall shot glasses. So tall, that if dropped in, wouldn't pass the beer level. So we had to pour them in. meh... + +So all in all 3 stars for now. I'll give them another shot though.",review,k1ACFw3wmqkNGoiGeNLc0w,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2011-11-06,4mcta1E1LWpvTgbOKN89Og,5,We went today after lunch. I got my usual of lime basil and real mint chip (which I love for the real mint leaves) and my hubby got chocolate guiness and four peaks hop knot. Best ice cream in Phoenix! The staff is always super nice. They give us ice bags to take our ice cream home :-) Love this place,review,zqwR5M2gZGKUeRwIx_axpA,0,0,0 +Zw4CvOwXJj1QA85SvB99Hw,2011-01-17,lQLprkBt4W4XbgCHGe3HqQ,5,Awesome!!!,review,T7QG8ge2ukcfvEosSkg8yA,0,0,0 +NcNcgrtEjwLJh_a2WgdT8A,2011-06-27,myFWn2GNkwqwe_BY9mUXyw,5,"Last week, I had my first appointment at Pure Dental. Dr. Kang and the office staff were all really nice and helpful. Dr. Kang even did my cleaning and it was very thorough. I've never had the actual dentist give me my cleaning. I was wowed by their modern equipment to view x-rays and the doctor even took pictures of my teeth to show me. I will be going back to get some filings next week and was told I could watch a movie while I was getting them done.",review,aehtRFZ3zhj0M3meJoG8vQ,0,0,0 +2nzUx_M8Szyzsf4CszHasw,2012-08-24,cA8uw6bA-hXuaKGDNy-EOw,4,"Great food at reasonable prices in a good atmosphere. + +Our family has been regulars for over seven years at the W. Iron location. The food is fantastic, you can't beat it for breakfast and the lunch sandwiches are great. We've noticed a big difference in the staff since managment changed. Many of the new servers are not as attentive as they should be but the long time servers never disappoint. + +If you go on the weekend prepare to wait, sometimes up to an hour. On Sunday if you arrive before 9:30 the wait isn't that long.",review,V8W4ixzX0GCTQEK-xJbA2w,0,0,0 +Hgbxen9iKGL4AH6kKgC8YQ,2012-02-18,x3h3JziyT5SLgYalApzqRA,4,"I am a huge fan of local coffee shops with free wifi. I am also a huge fan of iced lattes. I know, how trendy of me, don't judge, I have some weird phobia about drinking hot lattes...I can't explain it...getting off track...anyway! Cartel! + +I really like getting my work done here. This is a short walk away from J's place so whenever I'm in town and need to get work done, I head here. +I like the decor, I like the music they play (I don't even need to tune out with my headphones and spotify like I normally do when at coffee shops), and the coffee is pretty good. The ambience is chill and very oddly conducive to me getting things done. The staff here is really nice and friendly too. + +Note: They also always have tempting pastries that one day I am sure I will break down and try. I'm nearly positive they'll be delicious. + +Like the 4 stars say... + +Yay! I'm a fan!",review,P0oMcxect43NE7QPw_AyKA,0,0,1 +Bjt3rB73dvSDe1XEPEWc6w,2011-07-11,DhfKl8Hl9t_YisbOC7KAjA,4,"After eating here I was actually pissed off that I didn't know about it before. The portions of sashimi are amazingly large. That doesn't mean crap if the quality is not there, but fortunately for Sakana, it's there. They even have house specials (like salmon smoked on the premises). AWESOME! My only complaint is the lack of fresh wasabi (they have pickled or the powdered stuff). + +For the area, this should be 5 stars. I just can't compare it to Kiji in SF or Blue Ribbon in NYC, which are my 5 star benchmarks.",review,hGyKkRaJkOpl6jagEZAWcg,0,0,0 +VZG8spL8Tqffg9KYbBrDvg,2009-04-15,i9v8_SyYMIkX5JwyTgI5Ww,4,"charlestons is one of the few chains i actually enjoy. I love their croissants and their staff is always awesome. their chicken strips are awesome. i love their grilled chicken and veggies, too. + +They have an awesome blackened grilled chicken, they don't use oil to cook either which is a plus! they no longer have it on the menu but have never given me a problem ordering it! + +yay for charlestons!",review,hFtlFksrcLaWHGPNa6SmeA,2,2,2 +i0W4TZcoRbOYeRfDfQEX8g,2011-01-05,Jp8u3QJzqvc7-DBSmbOhOg,3,"Rinaldi's Italian Deli is a very good place for lunch if your in this area and looking for something a little lighter than a burger and fries. They are conveniently located near the corner on Deer Valley and 19th ave, next to Dunkin Donuts. They are open for breakfast, lunch and an early dinner. + +I recommend going during breakfast or lunch if your interested in their ""Specials of the Day"" that are on their hot plates. These items don't look too appetizing if you go by in the late afternoon or evening. + +They offer homemade soups and fresh cut salads loaded with just about anything you could imagine. They have a small selection of homemade pasta salads as well. + +I had their pastrami on rye with their spicey, nazzle opening, and horse radishy dressing. The pastrami was very good but had to be heated in a micro-wave. My sandwich was assembled very well so props to the girl behind the counter! Their Italian pasta salad was excellent. Their Cob salad was also very good, nothing fancy but a good balance of veggies, bacon, egg, tomato, blue cheese, avocado with grilled chicken. + +Not one of the better deli's in Phoenix but loads better than any chain deli! It's a nice alternative to burgers and fries.",review,YLE6GoJ61fb0QBF7JTkaJg,3,4,3 +VVeogjZya58oiTxK7qUjAQ,2012-08-10,NEbTwDe739m-92O6DuYdXA,3,"I know everyone has raved about this place. So naturally, I was was super excited to try it. I don't know if it was just so hyped up or what, but it just seemed like a normal pizza to me... with a really long wait. + +I was meeting some girlfriends there for lunch, we got there a few minutes early and asked to be seated, but they won't seat you until the whole party is there, unfortunately (although understandable!). So we stood outside, in the 108 degree heat until everyone got there. After waiting over an hour, they finally were able to seat us. We had three kiddos with us, and they told us they only had two high chairs. (Not a huge issue, but definitely not convenient either.) + +I thought their menu was extremely limited, only have 6 pizzas: 3 with red sauce and 3 with white sauce and then just a few toppings you could add. + +While the food was alright, I didn't find it over-the-top or spectacular as I had expected. Needless to say, I'd have no problem going back but I probably wouldn't seek it out.",review,iy-lnju3UY_eap5oztdkhg,0,0,0 +KBG28p3lGX17hOPoHhq5PQ,2009-04-07,5HC-1puFa5K17sexADkjAQ,5,"This is my first review on Yelp so here you go... + +I love Yasu!! This is by far the best sushi and authentic japanese restaurant in Phoenix. I have been there numerous times and it never disappoints. + +You have to try their Sumibiyaki which are items cooked over Japanese charcoal, last time I was there I had the beef tongue..sounds weird but its so good + +Nigiri/sashimi are a must. They always have the best selection and daily special, most important...its always fresh...this is definately important!! The sweet shrimp is my personal favorite and anything else you order, you will find the fish is sliced with great execution. + +Request fresh chopped wasabi, you will never eat sushi with out it again! + +Love this place!!",review,xs_fnNe0hofd7ZOupCjesQ,11,16,7 +Tt6DYs0TyERWHWW5xiRL_A,2012-03-04,VobMHl_MnP1TkHOfc-qLqg,2,"Yet another disappointing sushi restaurant in the desert. My date and I went here for their late happy hour on a Friday night. I noticed it was hard for larger parties to get a table. There isn't much space between tables. I played it safe and ordered a plate of salmon nigiri. I noticed there wasn't a large selection of raw fish. We ordered the peach soju and the spicy tuna tempura off the happy hour menu. I thought I would be getting a peach soju that's of a thicker substance, but it ended up being soju mixed with some peach sweetener that killed the alcohol. Maybe it was my mistake of ordering soju at a sushi joint. The spicy tuna tempura was a spicy tempura roll deep fried in tempura batter and then sauces drizzled all over each piece that was cut. I couldn't taste any kind of kick from the roll. STAY AWAY from the happy hour rolls. + +What i think might be helpful is describing what's in each roll, rather than listing all the rolls on a sheet of paper for you to choose and its quantity. I'm so used to going to sushi restaurants that give you free miso soup, salad, and gyoza. These tend to be the cheapest items on the menu to prepare. Giving these out might keep customers coming back. + +I won't be back.",review,qis3040X__uozHkiy8eT7g,0,2,1 +BJfjd8oEMW_zq8KTkixyig,2010-10-20,h7nbCkVnY4JfenUqzWjLhA,2,"Try as I might I cannot give this place a thumbs-up. I've likely been in D&E 30 times over the last 10 years, always wanting to 'give them another chance'. They are close-by and the food is above average. But the service ALWAYS sucks. I seriously wonder if the servers are TRAINED to ignore customers. I'm not referring to when it is BUSY, I'm talking weeknights with a very light crowd. They all must be independently wealthy, is the only thing I can guess.",review,CdgjX-SsYJZq7u162hCM1w,0,0,0 +PO2JBrCFcxd5ne-7ewDwdw,2011-03-29,0jCDe4gCIhn8HblKELXF3g,5,"Went here earlier this spring and WOW - What a way to watch spring training +I LOVE the Giants stadium, and this is much better. It has twice as much lawn seating, the seats are wide and comfortable AND - aimed towards home plate, which didn't used to seem like a big deal but sitting in Scottsdale down the line, IT IS. +The food there is top notch, with an amazing pizza slice +Plus, the ability to walk around to diff fields and watch other players work out is amazing - it sucks that the Giants keep fields separate, I think every team should do such a joint complex.",review,k-VWeodvIzQsWCqa-3Ymog,0,1,0 +ZNXfCzzi-jkfTyb4WewOYA,2009-08-05,AxSFGP5k725Vn9Kz6BFFhA,4,"What's better than some refreshing, authentic Italian ice on a 115 degree day? Not much. Good variety of flavors, friendly owners, and a nice space. Enough said.",review,OQMOgqS1NFIyAW4i66iDYA,0,0,0 +wepFVY82q_tuDzG6lQjHWw,2011-03-11,pVE8tXPTsOLwe0-WL9yCGA,5,"They have the friendliest staff at this Whole Foods. They know me by name and always have samples ready for the little boy I nanny before we even walk up to the Deli counter. Maureen the checker, Kathy in vitamins, and Daniel & Paula in the Deli are all exceptional- go see them if you need anything they will be happy to help.",review,iPBdvOGcVmuSuiCEKrQoPQ,1,0,0 +yMUVflS-2SnOGafXmdHy6w,2011-08-10,xgp_wJy777RhwFGnsjWUDg,5,"I absolutely love the food here! the service is good, the food is excellent and as far as the price goes..I can't complain. this is one of favorite places to eat.",review,IBgAJmUpRFt7oxz0A7l80A,0,0,0 +wifoRjVr__Fj56jfe1_RSw,2011-11-07,6Azoyp1EK3E8Mg6OSIGrgQ,5,"My husband and I drove from LA to Scottsdale and almost to Scottsdale, one of our tires was going flat. We went to Discount Tire on Shea and they checked it and found it was a cracked wheel (the tires are new). They helped us get a new tire shipped from the east coast and put it on first thing the next morning. They were nice, helpful, honest and affordable. Absolutely great service! I highly recommend them.",review,WJYJ4GHhDsnke86uOwRAvA,0,0,0 +NA3tQYxR6Fq5O8nV6u41Tw,2012-01-28,EVJdHRuh8AVrRY0F_yoDSw,2,"We have mostly had good experiences here but last night was so awful so here's my review. + +Two $7 margaritas and I walked out completely sober. (Tried two different ones even!) + +The waitress, Amber, tried to explain to me some frat bullshit she was told about having a drink that was cold, sweet, and sour and how you therefore don't taste the alcohol. I am usually toast after a half of one of the Top Shelf margaritas...and no joke, I could have passed any field sobriety test. + +She was an awful waitress to begin with - although not intentionally - she just seemed to be way over her head and have some sort of short term memory problem. + +She did however do what she could to make sure we left barely happy - but still charging me for $7 margaritas that I disliked was crap. + +We are done with that place and that will be absolutely the last time we go back.",review,TEGWADXt1VA1832jbVtSqA,1,2,1 +M0Pch3_-Gvj45RN1U4I35Q,2009-04-27,-JfdM95n9YbOj0kW0PP5ig,3,"We decided to meet friends here Saturday night. Cant vouch for the drinks because I wasn't feeling well that day and decided that drinking wouldnt help things. My wife got pretty happy with some Red Bull and vodka's, yuck, but whatever floats your boat. + +Wendy... well lets just say she's not going to be drinking Long Island Iced Teas for a while! But I'm thinking they were pretty good, cuz 4 drinks pretty much says ""i like these"" or ""i cant taste anything anymore"". + +Music was good, dancing was hilarious and fun - as is always the case with K and C. I would go back, I enjoyed the atmosphere... Um... minus a few wanna be porn stars LOL.... but hey, like I said, whatever floats your boat! Good for a laugh at least!",review,VBKbZD9X4zruXYORIhJhhg,0,1,1 +xDC-INBKuwl8PowsJ-02Qg,2011-12-14,zmHdyOBXX_vLjSIoko5XSQ,4,"Wife loved the ribs, BBQ chicken was ok. Service was awesome! We were served by trainee Dawn being trained by Samantha. They were very fun!",review,X9wCpesGid6SD3nLF8O-8w,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-08-20,n05Zn_7DQa_SCn54sGF8-g,3,"I moved to Phx about 6 months and since the beginning I have been hearing about Pizzeria Bianco. I also heard how freakin long you need to wait to get in. I tried it once at night and after an hour and 15 minutes I gave up. I couldn't help but wonder + +1. why don't they serve food outside? +2. why don't they make the restaurant bigger? +3. does the owner want to keep it small despite the negative experience for MANY people who have to wait for forever or just don't go because they don't want the hassle? + +Well, they they started serving lunch. Usually it's too far for me to run to during the work week but I happened to have a random day off and luckily I put this on my list. + +I was so happy to show up and see plenty of seats for me to choose from at the bar. Hallelujah, let's see what the fuss is all about. I had a tasty coke from a bottle (I'm rarely a caffeine drinker) and ordered the Margherita after debating whether to go red or white. 5 minutes after I ordered the friendly waitress told another customer at the bar that you could split the pizza and do half and half for yourself. Wish I woulda known! + +It took awhile to get my pizza but it was damn tasty. Maybe a 20-30 min wait tasty, but not a 4 hour wait tasty. Still good, still glad I went, still want to go again, definitely not at night, but lunch is my saving grace.",review,YuuzQtcqBpuOzi8ZJqfzTg,0,1,0 +9Ep4sguv3HH_8lWyzSogjw,2012-06-03,PRuShP2G6mbAraXf0fxSwA,4,"Indulge Burgers got a few things right and a few things wrong, but overall, I was very pleased with my experience. We had a Living Social deal, and got the sweet potato and regular fries combo, as well as a side salad to start. The fries were good, but nothing special. The salad made me want to cry. I know you don't go to a burger joint to get a salad, but couldn't you at least try to make it a decent salad? It was all white lettuce and a few sprigs of sliced carrots. My husband wanted me to give the place 3 stars for the lettuce alone. But, the burgers themselves were good, and the Build-Your-Own was a really good deal. There is good variety on the toppings, cheese, sauces and buns to choose from. My turkey patty was huge - it was overflowing out of the English muffin. + +Some plusses: the service was really, really excellent. One of the best servers I've ever had. Also, while we were waiting for our table, the owner/manager came around and offered everyone samples of margarita. Since I'm pregnant and couldn't try the sample, he said I got a free milkshake. After we were seated and he was walking around, he made sure our server knew that he had offered a free milkshake and made good on the promise! That was so cool. I left totally stuffed and very satisfied.",review,vHoKL-4FCgGSfDrPr43Opw,2,2,0 +scr5gHaPC_36GtaCxmJEHA,2012-07-27,sjQJ2jRjH5vVWprJq7N4XQ,5,"This is by far the best and most authentic Mexican food I've had in this area of town. I try and get different dishes each time I visit and have yet to be disappointed. + +If you're looking for an amazing location/view/atmosphere, this probably isn't the place for you. If you're looking for amazing food, then you've come to the right place. + +The prices are great for what you get. The quesadillas are served on a pizza tray so bring your appetite!",review,7-32G6o785YHrI9VtRBliQ,0,2,0 +4r9-iKOagzn5oUvPE9Bz4Q,2011-12-07,ny6Jlfysm6VTYgqmm6l3PA,5,"Fantastic venue! Province really adds a touch of class and elegance in a way that isn't pushy or over the top. Located in the Westin Hotel, the restaurant feels very modern! You can choose to sit inside in a beautifully decorated and spacious dining area or enjoy their fabulous patio with fireplaces and a great water feature. + +The food was unbelievable! I sampled their tuna and watermelon appetizer and fell in love - what an amazing combination that I'd never have thought of. + +If the food isn't enough, the service is superb. Every interaction with the staff was excellent - you can tell they enjoy their restaurant and are happy to be there. + +I cannot wait to come back to Province as soon as possible.",review,nSLrExcVVphiNzvSf5H7vA,1,1,1 +JzoFgoeHRShw6BcMZVBA4w,2010-12-16,SxHl3pYOxO_N61AFj8Oh-Q,3,"I was up for a cold sugary drink before getting onto my flight so I walked over to the Wendy's next to this place. The guy at this place looked bored so I walked over to his counter to buy the drink. He was quite friendly and very prompt to charge me for the drink, which was quite a bit cheaper than the same drink at Wendy's. He also said I could either use the Coke machine or the iced tea dispensers. He had two kinds of iced tea, regular and a green blackberry. I took a little bit of the green blackberry which was very refreshing and tasted pretty good. I then went over to the Coke machine to get that. The sign on the Coke machine basically said once you buy a cup, you can refill it again and again the same day of purchase. I'll remember this if I ever have a layover in Phoenix. The prices at the Starbucks in this airport would drain my wallet fast if I had to be in the airport for any amount of time.",review,2JkQ9vGL1tZjVHRZGMuAGg,0,0,0 +y_GScq9tMmspo0UA4RPjPA,2011-01-24,OJ54xoZSHg6ZRHWYxH5nMw,5,"I took a road trip with the fellas to watch the LA Kings beat the Phoenix Coyotes @ the Jobing.com Arena and I must say our experience at this hotel far exceeded expectations! + +Not only was the hotel suite very affordable when split between 4 guys (3 queen beds and 1 roll away all in 1 suite at no extra charge!), but the room was very nice, included a small refrigerator and microwave and was very comfortable! Very new and modern and all we had to do was walk across the street to the whole Westgate Center/bars/restaurants/arena which was a HUGE plus! At the end of a drunken debauchery filled night we stumbled back (a 5 minute walk) to our hotel safely! + +We were going to stay a few miles away to save money but read some reviews about the hotels having ""bed bugs"" and being dirty. You won't have that problem staying here! The room was immaculate and the staff were beyond friendly and accommodating! That was probably the best part: Friendly staff! The staff literally gave off a small town feel, the only time I've ever been treated better was at a bed and breakfast! And the morning breakfast was another thing that made this hotel worth it. After drinking all night and being hung over, all we needed to do was stumble down to the lobby to get some eggs, sausage, ham, toast, bagels, waffles, apple and orange juice and we were re-fueled up for some more debauchery! They had something for everyone, including a variety of cereals and whatever you can think of for breakfast free of charge! + +So if you're planning on staying anywhere near the Westgate center/Phoenix stadium/Jobing.com arena this is the place to stay! We will definitely be staying here again the next time I'm out in AZ for a game!",review,49W0lI7hQgYihoIApZLhZA,0,1,0 +L9UYbtAUOcfTgZFimehlXw,2010-05-10,d4xvZqNV6UpeXx8IwQkIhQ,5,"Finally, a great place to get breakfast that isn't Denny's or iHop in Gilbert. Came here with my family and we just made it before the change in menus. + +The griddle bread pudding was AMAZING! Probably the highlight of the meal. We also ordered the veggie sandwich, All-American breakfast (?), a slice of red velvet cake. + +We have definitely found our go-to Breakfast joint when my sister and I, both come back to Gilbert to visit the 'Rents.",review,_y4Pa5ZFpz4ycpqevBr-gw,0,0,0 +kiB6ByG9PYQLHmGpg5SGZw,2010-07-23,689S24YwupSbJztkgNbE6w,2,"5/19/10 + +2.5 stars. + +Didn't really care for the interior, and the tables outside weren't beckoning, either. It was very antiseptic and cold indoors, with only the menu handwritten on the chalkboard, the plain-looking pastry display case (devoid of any ornamentation or even a sign of any effort in making everything inside presentable), and, what looked to me, an antique-looking espresso machine on the counter to lend decoration to the all-white interior. It was also very noisy indoors, despite the fact that there were only a handful of people! + +Ordered the Mascarpone and fig jam on marble rye ($4) and the Lox w/ cream cheese and tomato ($8 or $9), as well as a latte, no sugar. The coffee came in a paper cup... why? Made me feel like she wanted me to leave. Loved the mascarpone and fig! (So much so, I soon acquired a jar of organic fig jam from Whole Foods, but I need to find good marble rye toast...) The lox, however, was disappointing. While I found the flavors palatable, I thought the lox strips were too thin (I had lox at True Foods Kitchen that were wild-caught and larger for only a couple of dollars more), and the cream cheese rectangles looked strange with its right angles (after seeing such a lovely presentation done w/ the Mascarpone and fig jam). Made me wish I'd had two sets of the toast! + +It was nice to see that they still roasted the coffee beans on-site. I wish nothing but success to Toast, but I won't be going back-- at least not for a good long while...",review,0bNXP9quoJEgyVZu9ipGgQ,3,7,1 +BdSY-BHmH0BCCv47mOOS0g,2012-08-31,-2NDrcy9WM6KR05oN0xtzw,4,"Pleasantly surprised about the cleaniness of the location, the friendliness of the baristas and just the overall atmosphere. Reminds me of a small town cafe with the general coffee condiments centered for easy access. Drinks were made to order and have never failed to keep satisfied! + +Just need to get a drive through and all will be perfecto!",review,K9dSPbFhxbLPNZBTp7uOMg,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2011-08-01,pV4NjhOq2Z7HQt0rZ8aKBw,4,"Location is key to this place. Sitting on the street side patio offers great people watching opportunities. An extensive menu provides lots of options for breakfast. The food was good, bacon had some spice! Potatoes were slightly undercooked, but the flavored coating masked it. + +The granola was a honey crunch granola which was enjoyable.",review,dc7qjNrtDoCBxZEPXmEuVA,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-07-01,haaVtb7DSBXxjnagja8x-A,5,"This place has negra modelo on tap. I would almost give them 4 stars alone for that. The food here is incredible, very reasonably priced, and is mostly locally grown and raised. Add in there musical taste, a mixture of latin and indie rock, and you have a place about to explode from too much hipster cred. I mean that in a good way. We live in the east valley, so this is a haul for us, but this is THE place we take our out of town guests. Everyone loves it.",review,fSRMo1gMhj89V_Av3KcCLQ,0,1,0 +ZoQAOnEFnyHjSpomtfqesA,2008-10-23,vc1jIREOCAcWYiQgUGhoGg,5,"I took advantage of That's A Wrap for their catering services yesterday and once again, was totally impressed! I called around 10am for a 5pm delivery... I wanted to make sure that those of us who were working at the Phoenix Art Museum all day preparing for the pARTy had some fuel to get us through the evening. Sure enough, That's A Wrap delivered - literally and figuratively. + +I ordered a platter of assorted sandwiches, fruit, chips, cookies, and bottled water - it was perfect! Everything was delicious! It arrived right on time and it was all labeled so it was easy to figure out what you were eating. I had the ""Godfather"" wrap (Salami, ham, and provolone wrapped in a honey wheat tortilla with lettuce, tomato, red onion, sun- +dried tomato mayo and a drizzle of olive oil). I don't usually choose salami and ham but for whatever reason, this is the one that sounded best to me yesterday - and it was! + +Thanks That's A Wrap for fueling me and all of the yelper helpers for the pARTy... I'll be back to visit soon!",review,fczQCSmaWF78toLEmb0Zsw,10,7,3 +Szc6Wvt1i8VqSAOb2-7BAQ,2010-09-30,AS_FxW-l6f_UW2IDHqnBkQ,2,"I have driven past this place a million times and never stopped, so today I did. +I basically was in an overpriced Subaway called Port of subs. The sub was ok, nothing special. They do not have a good variety of bread choices and none of their subs really sounded that good. I was SUPer starving, if I wasn't I probally would have left and ate somewhere else. + +The staff was very nice and the place was clean. I do think I will eat there again.",review,47VCrr83Tvtkp1FvDa0ftQ,0,1,0 +3I8kUGzDOIKz95llTBhIjA,2011-03-26,TSNYg0TTPZWVOcycZliKlQ,5,"I personally like this Fry's. I think most of the people that work there are extremely friendly. I go there once or twice a week and I'm always greeted with a smile. A few of them even ask me where I've been if I haven't been in for awhile and ask me how I'm doing. Complaing about a grocery store being crowded doesn't make sense to me since that means people like shopping there. They have no control of it being crowded. If you don't like it crowded, go across the street to Safeway where there is no one shopping there. Then you will see a difference of why Fry's is better. Why is it so busy? Because it has better deals and everyone wants to shop there. It's a positive thing. You can either deal with it being crowded once in awhile and save money or go to Safeway across the street where you will be the only shopper and get ripped off. You have options.",review,Aj5a_ik5B7sgaoJ6Jlj--Q,0,0,0 +E5dqlvxPw9Q4XFqOMw_lqw,2011-08-03,qT8arKbR7ioofdeh6wJ3SA,4,"Decided to stop by for breakfast by myself one Sunday morning. The reviews on Yelp were enticing, so I gave it a shot. I ordered the Sonora Potato and Sausage Hash (Eggs, Potatoes, Hot Links, Chipotle, Garlic, Onions, Peppers) w/side of Sourdough Toast, $8. +http://www.yelp.com/biz_photos/nEyREad5GZd3RiEZA-Irpw?select=TKoW6UY1opAaH4wFxLkFpg + +I couldn't wait to take a bite of my dish as I love Hot Links and have never seen it in a Breakfast item before....it didn't disappoint, it was very good. The Hot Link was actually spicy, which is often not the case. The Potatoes were very tasty as well. My only complaint was that it was kind of a small portion...I was left wanting more. + +My server was very friendly and welcoming. She asked how I found the joint and addressed me by name when I left....very cool. + +Return Factor - 98%",review,kGgAARL2UmvCcTRfiscjug,4,10,4 +L8STRioAgDx-_FRFuuUU2Q,2012-02-26,FaxcMoLlZ1pevKy_WaQLRQ,4,"The Valley of the Sun has it's prevalance of *Bertos taco joints--Filebertos, Humbertos, Rolibertos, etc. Way out in FH, the open late (til 3 am on weekends) and thought it's slipped over the years, there is no better deal in FH. Generally good to go with the Shrimp Burrito (even better enchilada style if you can handle that). Most of the rest of the menu is good, thought I was disappointed to find ham rather than chorizo on a breakfast burrito.",review,BlW0gNjR75Qmg6ArVlECww,0,0,0 +Mb46iSlA4qmTwXf-WrqtQA,2007-08-29,eaEvTcZA9nvfKi4mfY0uZA,5,love love love this place for a second i don't feel like i'm in fakville anymore. Live music and a diverse crowd. They make a great infused berry tea smoothie no dairy just juice and ice! Parking is great and the selection of food is appropriate and divine for a cafe. Very comfortable and not to image conscious inside! Love that it's independent and staff is so lovely. I would pay $10 for a latte just to support them! Punch card too!,review,3cvyIzsgYgU1VgalhPbT8A,3,3,1 +Rg3INE2p4zQYvfMvJduEOQ,2009-08-22,prsJzXoAEfesTFmSBD8BhA,4,"had lunch here today outside with the girlfriend and my mother. I have to say we were pretty blown away with the size of the hummus plate, 3 pieces of pita with a good 3/4 to full cup of hummus, for under 4 bucks. + I had the chicken pita, tasted great had onion, tomato, cucumber, and tzataiki, freakin awsome! my girlfriend had the gyro pita and loved it. My mom had the lamb pita and says it was awsome... unfortunantly we were all being greedy and didn't want to share our pitas. I also ordered two falafel, best i've found, crunchy outside with a crazy mixture of being dense and light, you could taste all the flavor on the front of your tongue and the spice at the back of your tongue. We'll be heading back pretty soon I hope. + +Also Lisa I think we spotted you there sitting outside. not sure it was you since you where sitting behind me and next to some folks with their dog.",review,B7mOEA-S2acoo1S4t8wZ-Q,2,1,0 +Bjt3rB73dvSDe1XEPEWc6w,2012-02-17,11Gl-auPHoFE6KfcXitsfA,4,This place is for purists! Be prepared for a great deal of questionable textured items if you order the tasting...Great sushi and sashimi however I would go to sakana sushi & grill for a true sashimi / sushi experience.,review,zf1f0Ir_zy7flsJVkXD-hA,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2012-09-05,XKyQ8rn3nLgVFmtXsBXeAw,5,"I absolutely love this place! I've had my birthday here twice in the last 5 years, and they have been able to accommodate large groups (up to 20s). Their patio is super cute and great in the fall and spring time. My favorite pizza is the Di Notte. Cute atmosphere combined with good food = one of my favorite restaurants in Phoenix. Worth the drive to downtown!",review,KlBaLaF320i15g3tNUBvmg,0,0,0 +JhupPnWfNlMJivnWB5druA,2007-02-27,ByCPAgXbYaJzID7CrOMKvg,5,"A hipster shindig- for day and night- make your meal with THE Burger au Poivre, Cobb Salad and best made cocktails around... One of the best places for brunch!",review,iR1pShxMP5Aiwo1DZzGJlg,0,1,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-12-30,gNmlilLp1wiwY5M32i3eLQ,5,"I had been wanting to come back for a while. I love this restaurant. Last night we had a magnificent meal. I started with the St. Francis Lemonade, a perfect cocktail to start your meal. There are so many wonderful choices. They are featuring a special menu for New Years, however you can order from it ""a la carte"", so we decided to start with the Arizona Citrus Salad. It was delicious. I love the combination of dates, goat cheese and orange slices. I also chose from the special menu the sea scallops. WOW, they were so sweet and tender. They were served over a bed of black lentils, so amazing. The portion was generous, 5 scallops, I am glad I didn't order the side of sweet corn polenta. I ended up ordering dessert (yes my hubby twisted my arm, NOT). I had the usual, Sticky Toffee Pudding and my hubby had the Chocolate Stout Cake. I had a bite of his and it was great. I cannot guarantee I won't stick to my usual dessert, but it was a closed one. I wish this restaurant was closer to where I live. It is such a great place.",review,8p4at4zdzCpueAmSBaorZA,1,2,1 +vvWx1pJvr3QuFb7IW4-KGw,2010-07-14,Nr7abBBN4um7PRkNjKAI3A,4,"The crew at this location is very good. They're quick, thorough and will address redos without out any hesitation. I usually go with the Ultimate Package during the gentlemen's day special for $15 bucks. This package is the best deal (Wednesdays for the guys) with a full wash, super coat, extra hand dry, interior/trunk vacuum, interior/exterior windows, full interior and tire dressing plus air freshener of choice. I've only experienced top notch service here and I've been pleased with the job these guys do.",review,4lkTIhTuMhLprQprGlTRlA,5,4,1 +YTOU3COVuBdABXb3Wci_IA,2012-09-08,Vv9TCcaes1xBO6tnm4NUrw,2,"When I saw this place pop up along the everyday path home, I had such great hopes. I was counting the days until I was able to hit this place for a nice weekday lunch. + +With an such and ostentatious name as ""The Scottsdale Salad Company"", I was oh so stoked about a genuine alternative... I envisioned crazy vegan vigilance, staunch environmental activism and a ridiculous gargantuan AYCE salad buffet teaming with fresh usuals and exotic fare. I would stuff myself into lunch coma with all manner of crazy nosh all while maintaining some personal self-image of ""health"" under the guise of a ""salad bar"". Glorious. + +Alas, I was so, so disappointed. + +It's basically a shell of a quick-serve Chinese restaurant very slightly skinned to be a basic eatery. The place was virtually empty at high-noon on a Tuesday. I ordered the large Parisian Salad and a soda. I was expecting a freshly tossed salad piled high on a plate with a flourish deserving of the name ""The Scottsdale Salad Co.""!! Rather, I got a pre-packed romaine lettuce and cabbage bomb in a plastic clamshell. Oh, my soda was a nice styrofoam cup I filled on the fountain machine. All for about $10. Food cost couldn't have been more than $2 even if purchased from Costco next door. I certainly wasn't paying for the ambiance. Lame. + +A couple people there got a wrap, which appeared to be emaciated and a general poor excuse for a wrap which I'd like to pay money for at a restaurant. I could make the same lame roll at home for about $1. + +As is, this place is simply another ticking timebomb of another indy resturant failure. If the owners take a risk and venture to be more than service station food, they might have a prayer...",review,AQg9sUF1kMfrOn9FucpCPQ,0,2,0 +jCOTob1avPH52RNuniylkg,2012-10-31,7mvhMWVfySqwfpgQBKg-Mw,5,"Today our travels took us to the Chandler Mall on 10/31/2012. Therefore we were near to Abuelo's for lunch. Nothing like returning to a Restaurant that you found to be very good! We arrived after 1PM, so we were seated ASAP. + +We ordered drinks first along with a serving of Guacamole. Nice way to start off lunch! My wife ordered the Dilla Lunch while I ordered the Grande Burrito Lunch special. Both item arrived on a very hot plate-wonderful! Whenever we are dining at another Restaurant, a hot plate is always expected but all too often the hot plate fails to appear. + +Our lunch stay hot until the last bite due to the hot plate service. Everything was great with the meal and no requested drink refills-always a sign of great service! + +Both restrooms were very clean and serviced many times during the day. We highly recommend Abuelo's for a great lunch or dinner!",review,gbSrqR-OLj6HbleayfAU0g,0,0,0 +Bm2PBs_AZEtx93zdtwqUJA,2012-01-14,cIZ9ki0uiyZXfhqP9UcyqA,5,"Have you ever eaten somewhere and just can't get the craving out of your head and you have to go back! This is the place that does it to me. I've decided I need to try everything on their menu! + +You have to try the Roasted Turkey and Stuffing it is to DIE for! And the mac 'n cheese so yummy. I've also had the Prosciutto and Fig Jam sandwich and I thought I had died and gone to heaven. I had that with fruit which was good. + +Guess where I'm going for lunch... yeah there because I need it after doing this review. :-) + +Oh and before I forget... When the weather is nice sit out side! You will love it.",review,5Td84D4oDkkgxsMeqcrTRw,0,0,0 +oCA2OZcd_Jo_ggVmUx3WVw,2010-03-29,l2vSWL_uMYbGL3g3RHmbsA,3,"Decent bar food with all the servers dressed in Alice Cooper attire. +I am being open-minded and starting this thing off with 5 stars. + +Minus one star for being a bit overpriced on the appetizer end. I ordered onion rings at $8 per order. Seriously, are 15 onion rings worth $8? + +Minus one star for not having any parking. You have to park a couple of blocks away in the ghetto area to find a spot. You will have 2-3 beggars asking you for change to and from your car. There was a dude who wanted to wash my windows for money. + +Minus half a star for putting the gratuity on the bill and charging for it. I hate that crap. + +Plus half a star for the waitresses who are dressed heavy metal-like wearing mid-riffs with the tramp stamp. I always wanted to date chicks like that, but was ummm...to busy with umm....other chicks chasing me down. Yeah, yeah, yeah, and I just umm...you know, didnt have time for them at that point in my life. + +I better stop my review now.",review,louB3kZJk_PKdNazm9iw_Q,1,2,1 +EgjFg_apjNerroqYiokcag,2012-03-24,RDuTwR_jXpnw_3q-Z4yN4g,3,"You can get a 3 course meal here for lunch for under $20. Most entrees are in the mid teens and include appetizer/salad or soup, entree, and dessert. A selection of bread and butter is available for you to snack on as well. + +Comparing the other culinary restaurants I've eaten at, I'd say this one serves OK food, but the others are better in preparation and taste. I had the salmon and ravioli appetizer, which tasted OK, albeit too salty due to the salt crust on the salmon, and the ravioli innards leaked out of the pasta into the bowl it was served in, making it look less appetizing. The entree itself was (poisson rouge) tasted good and was well prepared, but the dessert (black forest cake) mousse was too runny. + +Service from our main waitress was good. Our water server was probably the most awkward server I've encountered, and he forgot to bring out some items I requested but hey, I give him points for trying. One thing that was weird was that one of the instructors came over and made a snide remark on how I wanted bread for my dessert because I was trying to finish the last piece of bread on the table (I hate wasting food).",review,uZbTb-u-GVjTa2gtQfry5g,0,0,0 +0QTn4pMzKv1mnQifcP9YoQ,2008-12-25,J8kgvlNKC0qLVqX61dc5_w,3,"So, going on Christmas, always a risk. There was a wait and 2 parties in front of my group left. There we people waiting for their pick up order for over 20 minutes. But when we asked how long it would be until we got sat and would have our food we were told 15 minutes. He was true to his word on that. + +The food was good. The egg rolls were awesome. We didn't really have a waiter tending to us, but that was ok. the bus person got us more water when we asked. I would probably go here again if I was in the area, but I would just as soon have the Panda.",review,HRIT60jByaApDP-mndG0jg,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-05-22,TABd1JFLNWXBNotTV6ll2w,5,"The best tacos in the city, amazing veggies, and indescribably great salsas. The tacos are like tapas, so you need to order two or three, but they are reasonably priced. Nice atmosphere and friendly staff with great art to view while waiting for your order.",review,S27F_1lgY5tkuzNZW7AkPA,0,1,0 +-8aZ0v511M1zpoZAC3N3VA,2011-11-16,9rATH7YgVdnKSlBxJv0FKQ,5,"I love this place! Great place to grab a quick smoothie or stay to hang out! (just let them know if you're in a hurry) + +P.S. The phone number is area code 480 not 490 :)",review,-UxHWAdU1sjA1n4u0ToOGg,0,1,0 +ytpmoIty7loFB8kRYRtJHw,2011-12-16,Fv1JBR9l3nRMzfinKoCrcg,4,"Just spent two years in Austin eating BBQ from all over the state. + +This place is legit.....for Phoenix. + +WORLD CLASS sausage and excellent brisket! + +Sides were average. Nothing much exciting there. + +The bread was killing both me and the quality of the meat. + +The sauce is too sweet. It would be great for St. Louis style ribs, but this is Texas...put some spice in there.",review,Sl9-42mecdhUYkF6KTtsmw,1,2,0 +CdOb17NMdQpagyHSxv5mHA,2011-03-07,O_2dMVSDuSlDk8Obqh5fqg,5,"The first time I went to YC's was in scottsdale. I loved how you choose what you like in your bowl and sauces. they cook it up right in front of you. you can stuff your bowl as much as you can. don't worry about getting alot because all you pay for a take out box is 50 cents. it is great for leftovers, the food tastes fresh still. The one in tempe was awesome as well. I love this place. I had one larg bowl, a bowl of rice, chicken soup, and a soda for $10.25 how can you go wrong with that???",review,sRPhEvUKjtP8V5YRFjkY_A,0,0,0 +xczdDnDIUoVZ2ILT9nEvPA,2011-12-20,N2sauZfbLwxnbUviLo43Jw,4,"3 kids and myself.. 14 bucks.. gotta love a Tuesday kids eat free. While I still had to buy two adults to get two kids free... totally worth it. + +The place was clean, service excellent. + +The pizza was looking pretty bad when we goth there but after eating some ok salad, the fresh ones rolled out and were great. + +Garlic cheese bread type +Pep, ham and jalapeno +Chicken wing + +They were all great. + +Cinnamon Roll for dessert...yummy! + +Really if you have not been here for a few years come back with an open attitude and a hunger to pack in some pizza, chicken, mashed taters, spaghetti, salad, dessert and of course pizza...any kind you want, they will try to make it.",review,C6IOtaaYdLIT5fWd7ZYIuA,3,3,2 +K845ZDttFfx99zQ-0aE2tA,2009-08-13,RnHrwhbYViQ2Q6uZ_aCdMQ,2,"When Tempe Market place was being put together...I though WOW a swanky place where college kids and laid back adults could get together and enjoy themselves. Cadillac Ranch was being built...and the hype was hot enough to make you buy a meal ahead of time. Read the reviews but thought...what they hey lets try it out. And now I see why it has two stars...should have listened to the other yelpers -_-... went there is Good ole' Rada, thought it would be nice to enjoy the day outside. Nearly Drowned by the ample amount of misters. Thought to self...hmm well at least the food should be good. Ordered the sliders meal... maybe they were scarce on meat, but the slider patties were the size of silver dollars, tasty but small. Yes the service was slow; my glass was getting refilled faster by the misters than the actual waiter. It gets two stars in my book for the service and the overall experience (for lunch that is). you get what you pay for..and for 11 bucks, a couple barbie sized patties in human size buns, a not so 'AHH' diet coke, and 5 oz of wine (and that's on the 2.00 happy hour deal) ... kind of seems appropriate. + I recommend this if you are stuck hanging around Tempe Market place and you have just a few bucks and feel like getting close to full... +and now I think that Tempe Market place took Mill Ave's charm...and they need to step up to compensate killing a once adorned chill out spot for ASU and Tempe. Shopping is good...we could deff replace CR for perhaps Sakana? Who knows... +Bye for now!",review,eCtkMHrbM8j0R5yabfrRzg,3,4,4 +V5QdxePG-pGPXVPHSLLM9A,2010-09-15,nPb1o62xrm9w03ONLd9BaQ,4,Worked around the corner for about a year anticipating this place opening. Finally got to stop in for coffee this morning (a year later) and had a piping hot Americano and a mango-poppyseed muffin. Big fan so far! Looking forward to having coffee on the patio when it's a bit cooler.,review,UAEMfCfl_4PevtibdXpzmg,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2011-06-04,DtCEt8a-fNgfE1fk-o8BHQ,5,"Just go eat here. Get the cheese curds, I think they may be developing CCA (cheese curd anonymous) soon, but until it becomes a diagnosable disease I will continue to indulge. + +Oh yah, the Pine Steak, is also fantastic and will probably also cause addictive like tendencies. + +Oh, oh, oh... the chicken and waffles are also a pleasant surprise in the other wise repetitive and ordinary dining scene that is so often found in Phoenix. + +Just do yourself a favor and go check this place out. And try the home made ginger ale, tonic or lemonade by them selves... or mix it up with one of their top shelve spirits.",review,R0J0Nm1H8zAfSSJzgekWPg,0,1,0 +UexMw8s7B1J-RtFOQtCCsQ,2010-08-23,FN4XYGJ1-HTXgWXUmw5Kuw,2,"I cook better pasta than them, and I am not much of a cook. + +The pasta I had (I believe it was a marinara dish with penne pasta) was awfully bland. +Sauce didn't mix well with the pasta either. +The texture of the pasta was funky, hanging out on its own. +If I wanted bland pasta I would buy a can of Presto and penne pasta, boil them together and add some water :p + +The server was attentive enough to notice and brought me more sauce. + +I did like the service and how they had the giant white piece of paper and crayons on the table so I could doodle while I waited. + +The waitress was very attentive and friendly. + +Appetizer: calamari was yummy. + +I just wish they could kick it up a notch on the pasta with richer sauces, seasoning, texture, more tomato/meat/cheese and really blending it with their pasta. + +But I guess that would raise costs/prices huh. :/",review,I-P1v7sRjDLEfVOndp01kA,1,1,1 +U2C1t0sqK_3hMFEs67MBLQ,2008-10-21,weGzVqe9iPRVeayqI6vShA,2,"Being the only gay bar in Scottsdale aside from BS West, I've found myself at Forbidden a few times. Forbidden is an ambitious concept--a gay club with two rooms and two deejays in a city not known for its gay nightlife. Sadly Forbidden does not deliver. + +The club is usually pretty busy on a Saturday night, but the crowd leaves a bit to be desired. The patrons are mostly unattractive, kind of trashy in fact, and not very friendly. + +I believe deejay in the main room does not change on the weekends, where he spins top 40 dance/pop to a drunk college-aged crowd. In the OZ room (the smaller room) they have different local deejays, who, from what I've seen, spin a variety of different types of music--sometimes it's circuity music, sometimes it's eighties music, it all depends on the deejay for that night. The OZ room has been pretty empty the few times I've been there. The sound system in both rooms leaves quite a bit to be desired from a place that calls itself a club. + +The drinks are reasonably priced for a bar in Scottsdale. The décor is okay, but not very interesting. Forbidden isn't terrible. It is, however, just plain boring (bad music on a bad sound system, uninteresting décor, and an unimpressive and unfriendly crowd)!",review,xQA8YYQ8wX_LzYaAdqqhfg,1,3,3 +z3yFuLVrmH-3RJruPEMYKw,2010-04-24,7iUIThqzcZwOi7Xtu0C1jg,5,"When I moved to the Valley, our first place was a rental in Old Town. The previous tenant/owner generously left a bunch of take-out menus for nearby restaurants. Defalco's was one of them. But not being a fan of the sandwich, it took me four years and a move to actually go in. What a fool I was. This place is fantastic! + +First off, it's not just a deli, it's an Italian market. Had I actually read the full name of the place, I might have known that. It's also got a somewhat extensive selection of wine available for purchase. So now we've moved from a deli, to a grocer, to a wine shop. Don't forget the pasta dishes and the pastry, too. + +My fave sandwich is the tomato, mozz, and basil on a sub roll with olive oil and balsamic. Simple, yet perfection. I'm a huge fan of those sub rolls by the way. Crusty on the outside, but not so crusty that it makes a big mess every time you take a bite, yet soft and chewy on the inside. It's always about the bread for me. Great selection of prepared salads in the deli as well. One of the best red potato salads I've had in a long time. + +It certainly won't take me another four years to go back. I think I've been there just about every week in the last month!",review,wHg1YkCzdZq9WBJOTRgxHQ,6,7,5 +DGtOkc0KNTyK8rDkmsPNYw,2009-11-05,hCHpAD1tLDs_-XYe472Ujg,3,"Yes, I'm a vegetarian reviewing a steakhouse, though I have eaten their steaks pre-veg. Their spinach salad is very good and filled with goodies such as goat cheese, dried cranberries, pecans, and mandarin oranges and is only a measly $6. I ordered the trio of sides which included some mushrooms, steamed asparagus and sweet potato fries. Our service was great, which typically it always is at The Keg. Big beers, nice sides, and for the meat eaters great steaks. Steakhouses should just offer a big ass portobello mushroom for vegs.",review,oCFQmDotqcyIYAY1JyKUPg,1,2,1 +YF6Z8PhNWN0ZR33hfvZRjg,2012-07-19,lm7A7OcxFyojcWa2JlrIfQ,4,"Kids eat free on Wed and now also Sundays with specific adult purchase! + +The white pizzas are fantastic!! mmmmmm. The kids get slices (as a kids meal) and the cheese ones are good, too. The seasonal salads have been wonderful--current one I think is called Strawberry Fields? it has nice greens, almond slices, strawberries, apples, cheese, and 2 different dressings. + +Got the calzone last night--not recommended. The large (I ordered a small and she made a mistake) was HUGE---large enough for about 5 or 6 people, unless everyone has a huge appetite for a lotta carbs. The dough was uncooked on the inside, and the broccoli and chicken were cold :(. I guess that process needs some work. + +At this particular location, there's always a gal that greets us and keeps calling us ""guys"" in every sentence. It's just a little weird, but the rest of the staff is great. Again with this place, like at China King, never sure why there doesn't seem to be many people eating in. They do deliver, so maybe lots of ppl have delivery? + +They do have patio seating with misters, but right now, kinda hot to eat outside. Probably lovely in the cooler weather. + +Kids meals come with a small sundae, so that makes them happy. + +The fountain drinks are Pepsi. The diet pepsi tastes bad, and the diet dr pepper doesn't taste much better. They do, however, have filtered water. Your choice of filtered NYC water (tastes great!) or filtered Chandler water. + +BTW this location is in the same plaza where Outback, Nordstrom Rack, Famous Footwear, SAS, etc are, so the parking is a little cramped. Not much NYPD can do about that, but it's annoying.",review,YOZ6xwXXpxD0vxJiA6WC-A,0,0,0 +CgHcO651uEE3aalrkm4boQ,2008-10-13,vj_eJ-Ty5GyTU85jgRAgwg,5,"Yo, this is my favorite AJ's here. If you gots a beef with the prices then go somewhere else. Actually, the prices aren't any higher than Safeway, they just carry better, and more expensive for them to buy, products. + +They have been great to me as far as ordering Rambutans when I have a whim or a craving. The sandwich counter is awesome, and I love the slices of pizza that are as big as my head. The drink counter is stellar and they brew China Mist iced teas. Every once in a while the Prickly Pear flavor comes up and I'm so so so happy. + +This store is much larger than the Scottsdale/Lincoln location, and the service here is friendlier than that location as well. Shot out to Gerri at the floral counter, she is teriffic, as well as the produce manager who takes care of me every time. You guys rock!",review,JgDkCER12uiv4lbpmkZ9VA,0,0,0 +wTVgDIHonZITOqrFfVZ0gg,2011-10-22,vLSGKaUrpUivkunIWvkACw,4,"Had a great time, very family friendly!",review,cORx_hDvsVKcRY85SLCfyQ,0,0,0 +mreFUEBcePvF0ovORu2qng,2011-08-21,qktabrtWf_M6KYDgoQx4EA,3,"Stopped by to see what's new after the summer reopen. New merchandising is really cool with the mixed textures with the textiles, Some really great stuff and pretty good prices. I've been in this store numerous times and though I like to be left alone to wander, when I do make - or try to make a purchase the owner and her staff are borderline rude. There are many other great places where the staff is welcoming and anxious to help. I've decided not to include this store on my regular rounds.",review,U5sTifscxQs8O5cifSMKLQ,0,0,0 +clUb7fXNVPmFVET-hH7JiQ,2010-01-31,w2rmBDeVcD_dUxYdvuSwgQ,4,"Place is clean, staff is friendly...I love that it's kind of a one stop shop and the self serve yogurt shop connects to the water and ice next door. You can get what ever cold confection you are craving from Thrifty's ice cream, shaved ice, yogurt or smoothies...an added bonus is they stay open late 7 days a week!",review,S_KBUw3Qqj88MbGtE-hcEA,0,0,0 +WO8I1ab_MLQ-4M1wIEzTag,2007-07-05,nCK0bGdFMj8hVHC1uwbWVw,5,"Camus is a cute little trendy bar/restaurant located in the Clarendon hotel. I came here for a business lunch awhile ago and really enjoyed it. We were one of two tables though, so service was top notch. Our waiter was extremely knowledgeable about the menu and was able to answer any and all questions we had. + +The chef even came out to say a hello, which I found to be impressive. The calamari app was excellent and my dish of mushroom gnocchi was amazing. I definitely recommend this place!",review,0CMz8YaO3f8xu4KqQgKb9Q,3,3,0 +I4bSn5gXsHuSPu7L-d_8nQ,2011-05-02,iRYfy67KxSYUO3471kV_vw,4,"My husband and I loved it. The food was delicious. The ambiance very comfortable and child friendly. I needed to dip my fries in something other than ketchup so they came over and asked what they could whip up for me. Who does that? She brought out a yummy, very hot :) honey mustard. They should offer it on the menu. +You can also make reservations here on opentable.com",review,l_gYq9wGIHzihot_AmqeIQ,0,1,0 +kkBMTNET2xgHCW-cnNwKxA,2012-12-21,M_GC_TG9TpSzMAUQ_TAimw,5,Great service,review,9VmTOyq01oIUk5zuxOj1GA,0,0,0 +RowLTh09IOdyeZP-7BlMFw,2009-06-07,0CbilnyXmdtPc3-HdjrxsA,5,"Looking a cutting edge, wanting the best for everyone type of pet boutique you must go to Oliver and Annie's. + +Chris, the owner is amazing! He knows his stuff and has the best of the best. There is no pet boutique like his. Urban chic and healthy top draw. He is an amazing supporter of local artists and designers and an absolute delight to know and do business with. His loving nature is endearing! + +It's no surprise he just received the ""Best of Phoenix"" award.",review,hV225B_UgT368FKzOk2daw,2,2,1 +LaHyoyMfcyPJmdeHmGo9lw,2012-01-07,-As7S3ePBxFHu0-EJLyCQA,4,"wow! what an upgrade from LA Fitness.. with that being said, you can already tell this review will be positive. + +I recently re-joined 24 hour fitness, after breaking off my membership back in early 2010 after moving away from home. I join LA fitness last January, and was less than satisfied with the broken equipment and that meatheads that seemed to frequent the south Scottsdale location. + +Man what a nice ass gym, It's free weights and machines are all located next to each other and not scattered around everywhere. The cardio machines are in great condition and It was not super crowded where you felt the need to shorten up your workout. + +Staff was friendly and not pushy like LA Fitness.. and Lockerrooms are clean. + +Basically, this is a nice new facility that anybody would be comfortable working out at and its close to my school so thats also a MAJOR plus! + +4 STARS",review,LSf-AF1UzGV4viB9LgoNjA,0,0,0 +UI5ghIUeHYxzwSfaDVUXOA,2010-09-09,PkTfRlSeUpkRp_GfLokenQ,4,"Went here on a Sunday night to celebrate a friends birthday. Glad we made reservations as even on a Sunday night, it was a packed house. + +Here is what I liked: +*The food, appetizers, pasta dishes and warm bread (and the tomato/bruschetta like topping they give you with it). +*The fact the owner/chef is present and wants to ensure you enjoy your meal. +*Good location, plenty of parking. +*Value, prices are in line with what I would expect to pay for the quality and type of food you get. + +Here is what was just OK: +*Service, our server was nice enough but he got distracted chatting with other employees and customers and often forgot to check back with us to refill waters, remove dirty dishes, etc. On the plus side, he knew the menu and made excellent recommendations. +*Atmosphere, I know they are doing the best with the building they have to work with but I felt a bit like I was in a remodeled pancake house trying to be an Italian restaurant. The one exception would be the bar area which was more elegant/traditional. +*The deserts, we had several and I would say mediocre on all maybe even bland. That being said, however, every other part of the meal was delicious.",review,TObZs5bPfIw5u02e9XCPkQ,0,0,0 +_qTzOkbin2giDOrFsaxm8A,2009-03-20,3MOoCVffqpGjxzTjXPtJXg,5,"Have you ever tried the chicken rotisserie here? They go fast so you have to be lucky to get one unless you call ahead. Its not so much about the rotisserie chicken as it is about the amazing and creamy and smooth and exceptionally well balanced Garlic Sauce/spread they give you that goes along with the chicken. + +Have I told you how amazing this spread is. If only I knew the recipe...I would eat it by the tub...okay maybe by the spoonfuls. Anyway...try the chicken rotisserie or the chicken taook. Heck if you don't want to eat either of those things...just ask for some garlic sauce on the side with whatever you are eating. You will not be disappointed.",review,zhVOlwBuEgdGlHjwgVf3Jg,3,2,2 +K845ZDttFfx99zQ-0aE2tA,2012-01-01,grFAzzt3JfdXmgW-CL8rCA,4,"Best burger I've ever had, and a great view from the patio. Enjoyed a wonderful date with my husband there.",review,S-07w5CJfDmEBTNZ9V-ycw,1,1,1 +JokKtdXU7zXHcr20Lrk29A,2009-09-25,MUUGLCGGAk4P_4GLB4nAsQ,4,"I have come more and more to appreciate some of there beers that I use to not be a fan of. I tend to like some of there seasonal's more then there regulars. I'm a big fan of there oatmeal stout and there bourbon barreled porter and pumpkin porter. + + I spent most of my college career randomly showing up here for family dinners, reverse happy hours, 21st Birthdays and everything else in between. There happy hour is pretty good with discounts on pints and pitchers, but I really wish they would add food to it. There food is good, I have yet to find something I didn't like on the menu. Overall, great place for dinner or even to hang out on the patio and have a few beers after a long day.",review,NzYEA8AZo1KnNjjklUVFzQ,0,0,0 +cp39VURFby4A6u9m2It8jg,2011-02-12,5ZTOtdVpUaQygPGq-tR_ig,4,"Fabulous. + +Holy Kobe Beef Burger with Avocado, Bacon, and Cheese - It was the special of the day. I didnt care what it cost, I knew I had to have it. + +Come to think of it, that was the FIRST time in my life I've never ordered off the menu and actually went for the ""of the day"". I did it with my wine too! + +I wasnt a HUGE fan of the parmesan fries, but I could be alone here. + +All in all, great place for some burger lovin! The milkshakes at the other table looked unreal!",review,tKuu-Rbr-F9gb3qOhNuntQ,1,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2011-09-13,OvW8whGKj4bypw70HmIeeA,4,"I have been here twice. + +The fist time I went with my husband for dinner. It was the first place we dined after moving here from Chicago. As always we started with the oysters which were good quality and delicious. He loved his French Onion Soup as well. I had a special, the Halibut which had a lovely and inventive presentation. The only issue was the seasoning. I do not think it was seasoned at all. My husband had the same issue with the Short Ribs. Maybe the kitchen just missed a step. I do not like things over seasoned but this was bland. The Zinc Valrona Chocolate Souffle was simply amazing. I am not a chocolate lover, except for souffle. It was the perfect exclamation point to our dinner. + +I went for lunch with my mother who only eats plain burgers, plain chicken and pasta with marinara. I don't know how she manages to stay thin. We settled on Zinc. I had a grilled chicken sandwich with a lovely arugula and tomato and a light sauce. She of course had a plain burger which she raved about. We split an order of frites, that were crisp and full of flavor. I loved the spicy sauce! + +I love the bistro decor and the service was good on both trips. Glad I live close!",review,Bwhn1EVWzGNIQZTTgqeXNA,0,0,0 +U-tiHSh0P38H-6-yDUHrZA,2011-12-01,bMhf5_GhbKCN7u7Ga8Kehg,5,"I was thrilled to find my room huge, sheets crisp and clean, and the staff super friendly.",review,_-oKt8pfqoQXbRZUi49cSg,0,1,0 +DcrM4hwDcU2G6vuh2cnaYQ,2009-03-16,LGw5H-uG-jys4CBr9y4jLw,2,"I went to NOCA about a month after is opened and was wowed. I told all my fellow foodies about my wonderful experience, the innovative menu and all the little extras that made the meal a really special dining experience in Phoenix. +I went back with friends twice after in the coming months and was pleased each time. +I just went back this past Saturday though, and would have to say I would no longer suggest it for a special night out. It was as if the magic was gone and that the place was showing its age and loosing its ""specialness"". It was really just ok. The chef's talent shows, but too many other let downs. +When we arrived for our 8:30 reservation the place was crowded. The host was friendly and told us that our table would be ready soon and it was. We sat down at our table and that's when things started turning out not as well as expected. Seated in a back corner--which I did not mind---I noticed the walls were filthy---scratched and beat up and dirty. That was my view, so of course its all I could focus on. The waiter did not show up for 5 min. to take our drink order, and when he did it took 20 min. to get them to us. He apologized, but at 8:45 on a Saturday night that waiting for a first drink is not fun. +When then settled down with our menus and picked our choices. It was then we were told that they were out of the veal --which of course 2 of us had chosen by then, and that there was only one Skate dish--which of course the other 2 of us had decided on. They were also out of 3 other items. I felt I was back in the old Eleve (located in this same spot)--the food was great there as well---when they did not run out of many items on the menu. They may be ok when you have a larger menu, but with a small menu to begin with this is a real disappointment. +Gone were the pop rocks that I thought was so fun as an intermezzo, instead a spoon of something that was not described was set down in front of us. A simple salad--good--was $15---and most starters are at least that much. Good, but not worth the price. Otherwise, entrees were good--not special, but tasty and served with good presentation. The cotton candy is still there--and still an attention getter. And I still love the desert selections---especially the malt that I had with mini doughnuts in with dipping sauces. +I think I am able to overlook the fact that its really not an attractive room--the energy from the kitchen and the close tables add noise and excitement to the room, but the art and lighting is ugly and now that its starting to look run down as well--there are too many new, beautiful places in the city with equally good food and equally as pricey that are not in strip mall. And they usually still have most menu selections on a Saturday night.",review,1Ofs7rMHcd6UrbyF-QWk2w,0,1,0 +nFo_63pTr-4ZhakuaRFOCA,2012-10-10,_aGwS0SSPwj9eOLTSCJJIw,5,"I dined in Sol this past week and was amazed. I am in the industry and have absolutely fell in love with this place. The food is not only original but good an healthy. I will say this though if you are looking for refried beans and mush on your plate this is not the mexican food for you. It reminded me of time i have spent down the coast of mexico, very wonderful. I can see them still working out a few errors but they are very quick to fix any mistake. the service i had was absolutely amazing, it was nice to see someone like the tall good looking gentlemen i had wait on me. he was funny and kept my table laughing and very informative overall, i really had a sense during my meal he wanted nothing but the best for my table. definitely somewhere i will be back too for sure, especially since im craving that taco vampiro again.",review,0MP5D8x7K_CpJXSYgyfSWw,0,0,0 +hCS5eV0SCAY9LeeL36lz8g,2011-03-24,gFTx52dbotsmHF0cfJsLvA,3,"Came here last Saturday to see what it was all about but I really wish I had come on Friday instead.. The crowd was a little strange and consisted of mostly older people.. They played a mix of top 40s and hip hop whereas on Friday nights it's mainly hip hop.. The drinks run about $7-10 a piece and the bartender that helped me was very friendly! She even offered my friend and I a free shot.. The music wasn't very consistent so there weren't too many people on the dancefloor unless it was a hip hop song playing, so I spent most of my time sitting in their outdoor patio.. I love the decor and the ambiance but I really wasn't feelin the scene on Saturday.. I'm gonna have to return sometime on a Friday night to see how that goes..",review,q7Zn9s5wXAjhhSJMf7GiVg,1,2,0 +cjjZt2oOkk0F152RkQMfQw,2008-04-13,7hYh_HXrvZLACWudwY6UZg,3,"There is nothing special about this place to speak of, hardly a place I'd seek out to go to again. It's in the heart of Old Town, but doesn't feel Scottsdalian at all. + + I guess it's an OK place to hang out, they have a patio and a cozy interior, (like TT Roadhouse's decor but bigger, and not as cool) I thought the choice of beer was lacking, the service slow and obnoxious. I fell like I was bothering the bartender by ordering drinks. I really haven't had that experience too often in Phoenix, in Boston every bartender is annoyed to serve you, so I am used to it, but this is Phoenix damn it! One guy in particular just stood behind the bar with his arms folded, I am not sure of his ""role"" in the whole bar tending process. He didn't even pick up a glass, just stood in defiance of the customers. + +Overall, this place is decent, but I wouldn't choose to go again, I met some friends here and we proceeded to go elsewhere after.It seems as if the Coach House is meant to be a place you meet up have a drink, then bounce to someplace else. I kept wondering, where are all the fine leather couches, and handbags...LOL! ;)",review,HfwO9GnaP-9VdI0afwgmrA,1,1,0 +35uDzLpJlbSztgkJLtg1kw,2010-11-19,hlyHIH1bx6u1_B3Bgd91ZA,4,"Simple, well prepared food. Not the cheapest sandwich shop, but it is consistently high quality. The best part is the bread. It's all good, but I especially like the ciabatta. And being next to changing hands and trader joe's doesn't hurt! + +Some favorites: + +Chicken continental, sweet potato sandwich for something different, roast beef and gorgonzola.",review,F5OGEH2jk5sA_R4xBp2TPg,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-02-27,bXzhNFGZ4ekD_NC_AZJi1w,5,"Here's how to do Pizzeria Bianco the right way: + +1. Show up at 3:30 or earlier to get a good place in line. Make sure you bring some friends to enjoy the time together and the great food. +2. At 4:00, the bar opens. Get yourself a bottle of wine and make the best of the 90 minutes you'll spend just waiting to get on the seating list. +3. Order a few appetizers from the bar; they're light and fresh and yummy. +4. When you finally get seated for dinner, don't hold back. Order salads, share different pizzas, and have a coffee after. + +The quality of the food is ABSOLUTELY worth the wait. We tried eating here a few times over the past couple of years, but realized it takes commitment and two bottles of wine to make it through the line. Best pizza I've had since Italy. Bravo Bianco!",review,-la6YVHqiwf2fR8o617mBQ,2,2,0 +3NqERLqdtQSe0w9540rZrQ,2011-10-29,-1pSzIm-NgFzlJwiWn7nIw,5,"Now that I have tried all the main bubble tea/boba places in the Valley, I can say that this place is the best and most consistent. It therefore deserves five stars!",review,JTFAjb21Y5sbOHLyO_tyrQ,1,1,1 +OE5nAmaSVaopeRS1Cs9Kuw,2012-04-12,zwuGU0JwlG81ewuKZzfn_Q,1,"We were so disappointed! We were on vacation in Scottsdale and wanted to try a Brazilian restaurant. It was nothing like the one we have had home. Actually it was completely worse than all three Brazilian steakhouses we have close to home. I tried about 12 different meats and I think there were only 2 out of the 12 that were tender. The rest were over cooked or hard as a rock. We really wanted to love this place as I kept trying more and more of the meats as they came around hoping the next one would be better. Besides being hard, the meats didn't have much flavor. The salad bar was okay and I don't know that I would even pay the cheaper price to just eat from their salad bar. This is sad that I have to say the highlight or our meal was the fresh bread and salami slice you get at the salad bar. :(",review,BMsToNr5jAzE_t1rk-0dMg,0,1,0 +3oZcTGb_oDHGwZFiP-7kxQ,2008-10-20,tLmW0Tk4Fzi6tDeDWdaDtg,4,This place is great. I met up with a friend there for drinks after work. I love the bar which has a garage type door that opens up so you can sit outside or inside. Great intimate vibe outside under a big tree with lights. Great warm vibe inside. Great mix of basics and mexi-cali items like ceviche and tacos and burgers and mac and cheese.,review,UgCV-BHmf2VTGNXTQe97xQ,0,0,0 +Eq6HUYlnhF__d1ie-I2RMg,2010-10-27,GdWzRI8uzwO7W6qDtTVjmg,3,"Changs has a good menu but this location still needs to work on their service. Each time I have been unimpressed by the consistency of service. Also, when refilling water, please do not slosh it everywhere. I know you are in a hurry, but points for style are awarded for not slopping water on the table, floor, and customers...(aka my guests). + +Gets pretty noisy so I recommend getting there before the dinner crowd for a conversational meal.",review,XgIhw-aWaq_Fx3ZVQGjnuA,0,1,0 +xm8F51qKjx0cfdOSukTDng,2007-09-04,iUZCQLczwaujAkJN2tlBlA,5,"If its good enough for Britney, its good enough for me. Which I guess isnt saying much these days... But trashy ole Brit knew what she was doing when she booked a room at Sanctuary. + +This resort truely is a Sanctuary--the pool, complete with negative edge, in-water matching rafts for guests, and a top notch waitstaff was my favorite spot. Had a gotten a chance to experience the spa, which I've heard is one of the best in town, I may have taken up residence there. + +I stayed here as a reward for work with a bunch of girls--we had a suite--a sweet suit eactually, complete with 3 bedrooms, kitchen living room, etc. We even had a cute bellboy who watched parts of the NBA finals with us. Now thats service. + +Plush robes, a balcony with a perfect mountain view, and egyptian cotton sheets. Loveitloveit. + +At night we went to Elements which is the very up-scale restaurant and bar at the resort. It deserves its own review so I'll write a seperate one, but know that its exceptional and the view is amazing. A great date spot for even those who aren't spending the night at the hotel.",review,E0WWNXVze_sfDCbM0oMYvw,1,1,0 +mqQwChPNN4o4DhAzaGntIA,2009-03-31,oQOQmufJsZsQposGQEvvXw,4,"I had the pleasure of visiting FBH with my fave Foodie Bear and Robert a while back. (Yeah I'm behind on reviews). All I can say is WOW. I have become a fan of FBH. We walked in to a small, clean space. You order your yummy meal at the counter and you have to be quick to grab a table! My advice, grab a table then go order. For my yummy meal I had the fry bread with beans and green chile. I was delighted to see that I could wash my guilt-ridden meal down with Big Red Cream soda...mmm.. When I bit into my fry bread it was crispy and light on the outside and nice and chewy in the middle. It was so good. I wished for a little more spice or flavor from the green chile sauce, but it still did the job. We also tried the chocolate and butter fry bread. It was so-so in my opinion, but I'm not much of a sweets person so definitely not a knock on FBH! + +I will certainly visit FBH again maybe after I do a giant work out or have been fasting for 5 days... it's just too good to eat on a regular basis!",review,4UUIpbOTPmu43wuC2aSGkg,10,9,2 +qr5MMPq-DliAgaSvG47tdg,2010-12-16,RKppcEKaf9zCZYf-ppCF8A,5,"gotta be honest, i'm not a wine drinker, but came here to meet up with friends for a tasting. the space is sleek, yet cozy. the staff is friendly and very earnest and knowledgable in their wine presentation.",review,-CyBQG3dc4UnpluY7UdMOA,0,0,0 +nvaAUTTl7oqiJDhuimNG6A,2010-07-07,AfDVtSpM6GvkqS1wJYAm8w,5,This is one of my favorite breakfast restaurants! They carry the best bran muffin I've ever had....it has a delicious brown sugar topping on it. I love coming here on special occasions!,review,LvAr6xG-A40PGk1quMKxlw,0,0,0 +lVHtVCyFJOqAH0ltn7pLuw,2007-11-27,C5fmQYMOzCLOeHIKM5t0Ug,4,"I'm staying at a hotel in Tempe so I decided to let Yelp direct me to a sushi joint for dinner. After reading several reviews, decided to try Sushi Eye since it was less than 5 miles from my hotel. + +I orered the following: Sashimi Plate (tuna, salmon, yellowtail), Hamachi Kama (grilled yellowtail collar), and Uni (sea urchin). + +POSITIVES: +-- Price was very reasonable. Total cost was $40 including tip. +-- The food was fresh and the portion sizes were great. Even the Uni was extremely fresh and the amount was more than reasonable. +-- The Sashimi Plate came with soup and salad. The dressing on the salad was excellent. + +NEGATIVES: +-- The green tea was lukewarm and the waiter/waitress did not do a good job of ensuring my tea cup was always full. +-- It takes a very long time for the food to come out. There were only 3 or 4 tables besides me so it wasn't a busy night. +-- This is an odd one but I actually wished the Hamachi Kama didn't have so much meat on it. Due to the large/thick amount of flesh, it didn't not have the crisp chargrilled taste to it. Probably another reason why it took so long for it to be prepared. + +Overall, I give it 4 stars. I would definately go back and may tomrrow night.",review,8N6y30aGVwtIYFraswbJeA,0,2,0 +9Qt1pt0pk2VWz0chdGk-jw,2011-02-27,6sNvmvr6zFTqzQipj6aeVQ,1,"beware of the hidden 65 cent surcharge per person for tea even if you don't drink tea? really. + +The crazy thing is, i'm sure no one even notices the extra cost because who checks the bill? + +When I mentioned it to the cashier, she was stuttering and stammering and started to back pedal and said ""oh, is this your 1st time? we can remove it from the bill"" + +I said forget it, keep it. + +i usually tip 20-30% but i'll just let them keep their meager 65 per charge. + + yeah, really worth losing a customer for? + +my 4 year old daughter even gets the gratuitus tea party charge and she only drinks water. + +gone are the $2.15 per item flat rate (can you say bait and switch?) + +$2.35 PER so now they're no different from the rest of the dim sum places. + +as sneaky as C-FOO trying to strong arm the 15% gratuity (which failed miserably and lost us and about 100 of our friends as customers) + +so in a down economy, you're supposed to raise your prices and sneak in stealthy surcharges? + +it's the chinese way i guess + +back to china king for us. sorry china king for being disloyal with having a brief and sordid affair with the palace. + +will you forgive us? haha",review,xW5ajZ7ke4IeRmJylPKagg,1,2,2 +El_0LAdJ1R0-nL_lHzBT-g,2011-02-20,xfWeQpvrchWH3G5Kcwbdfg,4,We have tried this spot a few times and each visit we find just enough we like to keep coming back. The whitefish on bialy is a favorite and the selection of bagels is extensive. Try an oversized sandwich with a vanilla phosphate... All wonderful. The only downside is that most items are $10+ and that adds up for a family of 5.,review,GjNyOTcibcI_XKCzeMgO2g,0,0,0 +Jt1tVmCN1jwnXc3sSULqTQ,2012-11-07,cOpDQF5WBk9OAyqaR6hWcg,5,"Updating my review after several weeks. Appears maybe the managers read these reviews. In the last few weeks this store has improved 2 stars. The eggs in my BBs have been cooked perfectly, Diet Coke tastes better and they have not forgotten anything in all my visits. Added two stars because they have been consistently 5 stars since my last review...but I am still watching.",review,xfX5LfEnBUWb8iL3B4VqHg,0,0,0 +0AkoILvIy27Ss3UYxUGiHg,2012-11-06,VyVIb5N-5SOuLbZNhpG2Hg,4,"Pretty yummy! I just went here for lunch and thought the pricing was the best feature. $6.95 for all entrees, which includes a bowl of spicy chicken soup (not sure of name). I ordered the Panang with pork and loved it. It had great flavor and the serving size was appropriate for lunch. Don't let the restaurant's outside appearance scare you - the inside is not too bad. The servers were very nice and efficient. I'll be back, guaranteed, because they serve quickly and it works for my lunch hour.",review,u5WxYdg6CIv_3UJTwS1C3w,0,0,0 +PwxvN0SnAGPdqXdNEYVT3g,2010-09-21,jclv3W73jLmVvYohqE7alA,4,Cool place in downtown! I've been to all of the iterations of the restaurant and all of them have been pretty cool. The happy hour is a great deal and the bartenders are really nice.,review,pEVf8GRshP9HUkSpizc9LA,1,2,0 +vANCNdPMrB4niP_48_YP1A,2012-11-21,soy_zcmzHJJ95bX5BhtCuw,2,Now they are using a hand held drill to buff toenails during their pedi instead of just a quick file. I can definitely see grow out difference on my nail bed. Not good.,review,tmTxuDadTVc-KFyhvPuseQ,0,1,0 +XlrLoXFcKfw8CFoMLdKacw,2011-08-25,EOMiwiG5bO21UB8VA5T0nw,2,"I've been to Jade spirit a few times and Kim really does a great job and he has helped me a great deal but, the problem is the receptionist. It's Kim's wife and she is very forceful with sharing her sexist and crazy views and boy can she talk and talk and talk. It makes the whole experience stressful and not worth going. +During the first visit she gave me this booklet asking for the patients to be quiet and to respect the peaceful place that it is supposed to be but, when I'm in the middle of my treatment I can hear her go on and on and it encourages the patients to go ahead and talk as loud as they want so it's not restful like it should be. It's not an appropriate place for her to do her socializing especially if she's going to try and force her views on the customers that are there to see her husband. +Kim is amazing but, not mazing enough for me to be willing to deal with his wife",review,ZNVaAWwEq5n3eSSFLKUigQ,0,0,0 +OOOcDnF68bPvzWltI4Y0lg,2012-12-05,G1Ba4_IlrL8uZEYujuRKJQ,5,"This is a true gem! I took my dog there after bouncing around trying to find the right groomer for him. I read the reviews and gave this place a try. I was really happy with the customer service, the service performed on my dog, the fact I got a same day appt, and most importantly....my dog did not seem to be anxious or uncomfortable. He normally leaves a groomer stressed and not himself, but he seemed to be at complete ease here!",review,1awRe9ivcwXxu_ajluUmnQ,1,1,1 +WwTK9w1qu4h28a63gFz25A,2010-12-25,Cuq4w6MoidhEkSFzmghEPg,4,"After finishing a round of golf at Wildfire, we came in for lunch since the restaurant had been closed for dinner since December 17th and was reopening on the 25th. I dined here several years ago for dinner and really enjoyed the dinning experience. + +My order - the 8oz sirloin steak with garlic fries and an ice cold beer. My steak was cooked perfectly and the dipping sauce and garlic fries were yummy too! + +I love the decor of the place, it's part golf theme in the bar area but the dinning area is definitely Western elegance decorated. + +I'll surely return here in the future but next time it will be for dinner!",review,FbdB9KXyuvT8rC_zmqRSuQ,0,0,1 +yle6HnTE7Ah9Omglor22bA,2009-10-28,xUejoCLtOE7I4C7Bz_Y_Ig,1,"We had looked to buy a unit here & looked at several units, then decided to rent for a while first. We've been here almost a year & loved it at first, but have had horrible noise problems for about 8 months & management won't do a thing about it. The walls here are paper-thin & we our neighbor plays her music loudly at 3am almost every night. It's so loud that we had to move our bed to the other side of the room and run a humidifier all night just to try to block the noise, but that doesn't work. We've called security several times, but it never seems to help. The ceilings are also very thin & you can easiy hear any walking above you. Aesthetically this place looks great. The gym is great too, but the construction is horrible.",review,laz_ok-lFKoTzQylQtwk3Q,1,2,1 +tbt86pwZAn_7lz0VrES9ZQ,2012-09-01,8_Lg0Fau4JBuoVjm691A0w,5,"Both of my girls have been enrolled in Marilyn's studio and it has been a wonderful experience for our family. The teachers are engaging and creative and as a result both of my girls love to dance and my eldest daughter who is now 11 has been dancing with them since the age of 3. No stage moms here, but rather a warm, friendly environment where girls can develop their dance abilities free from the high pressure nature of some studios. Our family looks forward to many more recitals to come. Thanks Marilyn Bostic Ballet Centre for helping develop our daughters' confidence and love for dance!",review,UMrusiywQ548OhlovQXyNA,0,1,0 +2ceeU8e3nZjaPfGmLwh4kg,2012-02-23,rX2wc4svZ8JW9Iqc-ZoE6A,1,"I live down the street from Casey Moore's. I have been here a total of three times. The first time a group of us just ordered drinks, and the margaritas my friend and I ordered were so terrible that we sent them back. The second time I went with my husband and ordered a crab salad sandwich. Again, it was so awful I had to send it back. I am not a picky eater, nor have I been known to complain about food or service when dining out. There has only been one other restaurant I have ever been to where I sent food back. So, this place was already two for two. Alas, my husband begged me to go back once more. He was craving oysters and since this is an oyster house, I figured it wouldn't hurt to give them one more shot. It was last Thursday evening, and the place was hoppin'. This time, the food was decent. Not good, but decent enough where I may have given Casey Moore's a fourth chance had I been impressed with the service. But the service was HORRIBLE. Our waitress got us our drinks and didn't come back to take our orders for another 20 minutes. We sat there awkwardly waiting for her to stop by, and though she passed us quickly several times, she never even acknowledged us with a simple ""I'll be back with your orders."" When she did arrive 20 minutes later, she asked if we were ready to order without even an apology. I am not kidding you when I say she acted like she wanted nothing to do with us. She was very monotone and never smiled with us. I would like to pass this off as her having a bad night, but when she went to her other tables (all full of men with drinks) she suddenly lit up, laughed, and had a blast with them. It was so awkward to the point that my husband asked if maybe we knew her and had upset her in some way in the past. But no. This was our first time meeting her. We were pleasant customers who didn't complain about the mediocre food or slow service. We were polite and left a good tip. We pride ourselves on being fun, engaging, and polite with our servers since we go out often. But let me tell you right now what makes me the most angry. We live so damn close to this place and would have loved to be regulars... It is such a shame that Casey Moore's has now given us three good reasons to never come back. And I can't find any information on their website of how to contact the manager about this, so I am left to rant here on Yelp, completely unsatisfied. Sigh...",review,PDRWbCZa92irf8mK5X_Kig,1,1,2 +Kqn4J9NTgZdMAnV4HuYh5A,2009-01-09,xqNBoDpFP7wEiftunn6HvQ,5,"Chai is alive and well, and living at City Center at City North. + +I had been dating a gal name Starbucks for the past few years. She was a plain gal, generic if you will. She was dependable and available. I was feeling as if i needed more out of my relationship, as you can imagine. +So, at times, I would cheat on my gal with another gal named Coffee Bean. Coffee Bean was Kosher and a bit edgier, yet had a leaner list of qualities. + +I needed more out of my relationships. They say that when you're not looking for someone new, they appear. Well, that was the case with my new crush named Press. + +I had been to High Street for dinner Kona Grill, yet most of the other shops and restaurants were closed or not yet open for business at the time. + +I ventured back during daytime hours to give them another opportunity. I had heard about Press, so I was more than excited to give it a go. At this point I was still making caffeine a part of my diet, so i ordered something called a ""Dirty Chai."" This was a Chai with espresso shots. Press uses a powdered Chai which, in my opinion, works better than the liquid or tea bag forms. I was also given the option to have my frothy delight in a ceramic cup. I opted for that. I felt like i was having the type of coffee house experience I had only just imagined. + +Press occupies a well appointed space, too. From the wood and granite, to the stained concrete floors, I felt as if i were in a European city, not a Phoenix strip mall. The free wi-fi is a major plus, in my opinion. +Press goes as far as to have a ""dog friendly"" cart outside, in its ample outdoor seating area. + +I spoke with Steve, the owner of Press, at length. In talking, I asked how Press came to be, and he said that his wife had wanted to open a coffee shop one day. Well Steve, you have certainly exceeded her expectations, as well as the residents of the Greater Phoenix area. + +By the way, Press serves sandwiches and soups, as well as an extensive list of wines. + +Check it out, the staff will make you feel at home, or like you're on vacation in the cozy European city of your choice.",review,QcLcoQQgq0bEgx-lkh96qg,4,3,6 +c2WLZLpvNG2VLOfjjqKrkw,2012-12-19,fsv5cwqolkj4zneoJJPYhQ,4,"I was excited to check out Sleepy Dog after seeing all of it's 4 and 5-star reviews, and finally made it in. I must say...both beers I enjoyed were delicious. Establishment itself is small but unique and modern, and their whole theme around dogs rocks. The only drawback, is they do not serve food....well, the whole reason I went here was to meet up with a friend for dinner and a beer or two. I was shocked at this. We ended up having a pizza delivered from a pizza place down the street, which went well with our beers. One great thing, was they have a ton of flat screens all around. One had a corny late 80's action movie playing which was very entertaining, and something you don't experience everyday. All in all, I did like Sleeping Dog, and would like to go back. I saw the popcorn maker as we left! Beer was just as good/better than the other breweries in the area.",review,DQURv5CKj7iRdiXyS_Eikw,0,0,0 +wlftPhCaYn2j2LbcP8j3vg,2012-08-01,ONHPn93dc5FoqxXAriRy9w,1,"I am a huge tea drinker, so when I found out about Teavana I was excited. I entered the store and an employee asked if I cared to try some tea. After sampling several different blends, I chose three to purchase. The employee asked if I wanted to get a large canister for a dollar more than the one I had picked. Not realizing this store sells tea by the ounce rather than per canister, I said ""sure."" He chatted as he filled the containers, never mentioning the price, and once done took my debit card and rang me up. I didn't pay attention to the cost and when I looked at the receipt when I got home my heart nearly stopped. I spent $350 on tea. I returned it and they didn't give me too much trouble. Now I always check the total before handing my card over, and I won't go back. I feel like they totally swindled me.",review,B8w77rtCY8UWv-BKcOzCPQ,0,0,1 +MhH1kl9faN3RvIO4ptumTg,2008-07-16,mzefl5Hj5lwBTNJicvLmVQ,4,"This place, to me, is just like Aloha Eats in Chicago. The menu offers pretty much the same options as Aloha Eats and is also about the same price. My brother recommended this place because my mom was craving some Hawaiian BBQ, and L &L hit the spot. L & L is located in a row of fast food places - think mall food court within a shopping center. What -- you can't decide what to eat and are in the area? Uh, no problem. + +My mom and I shared the BBQ mix plate. I wasn't too crazy about the chicken, the beef was pretty tender and tasty. I was a little disappointed to see that the mix plate only offers one slice (?) of the short rib, which my mom loved. My dad enjoyed his Atkins version of the BBQ beef, but he loved the mahi mahi mini plate he had on our second visit to L & L. Yeah, I said second visit .... second visit in 4 days. It's pretty much on our ""to-eat"" places the next time we are Phoenix.",review,OAES6IjJsW06P0rZdx3omA,0,0,0 +vDYERdCM8Aj-MMJB9yW3-w,2012-06-07,FVs5XkP7kbmL22l6S03l2Q,5,"Umm is it possible to give MORE than 5 stars!??! My girlfriend believes, Duane is AMAZING, and hands DOWN the best handyman ever. We stumbled upon him and had him come to the house to fix a ceiling fan that had fallen out of the ceiling completely. Yikes... His charge was reasonable for coming by about $40ish and he really goes above and beyond especially with quality and letting you know the facts. + +This was a house full of girls and often times when they are clueless they try to pull a fast one, NOPE, not Duane. He is honest, and very caring. When he was leaving he noticed the door had a stick to it and brought back something from his vehicle and fixed it for free! + +Most recently, my girlfriend called him at nearly 9pm to tell him her disposal stopped working. He immediately remembered her as the house with the three dental students and exactly where she lived (even though he had last been there a year ago) and walked her through how to fix it over the phone, for free. + +This guy really is the epitome of what everyone wants and needs in a handyman! Call him for ANY home issue you may need help with!",review,7jWmd57QoJnq2q4QyvVS2Q,0,1,1 +edcGkJ6qPs3lUnSz9pqoGQ,2011-10-22,09lyA2ZEz2QH8R1ygE3TaA,5,"I walked here in the heat and was immediately greeted with an ice cold beer. For free! It was a delicious IPA and the staff couldn't have been friendlier. There were even snacks. I also had another sample of their Camelback ale. Both were heaping samples, almost a full cup. The tour was fun and informative. The co owner George even gave me and my boyfriend a ride to the lightrail stop!! We didn't bring our bikes. So awesome. Definitely recommend. Lovely way to spend a Saturday afternoon.",review,mX3qMBnEhOJ6R80vfjQMYg,6,8,4 +FCJHirFzEtj4M1VcuaKieg,2012-06-04,-0fImqvIf7zAVacU1BOg8g,5,One of my favorite places to take my 3 and 4 year old. Only drawback is it gets really crowded- especially with the school groups so we call early to see how many school groups there are and then we decide if its worth it or not. They sometimes host 500 kids at this museum and thats just not fun. Other than that this place is amazing.,review,Y7Jxglm9zeHipx8zrhULiA,0,0,0 +jCUOqEK8Lln0PK3GeUl6IQ,2010-09-26,3oeXOq5ul7_jE-cdZl4Cjw,5,"I have stopped into Copper Star on previous occasions, during street festivals, but today was the first time I came to sit and study. Man, am I a fan of this place. I am lucky that I live in a location where I have a multitude of options (Lux, Lola, Hob Nobs, SBUX, etc) but I have to say I really liked the vibe here. The music wasn't loud, the people relatively quiet and chill, and I could actually focus on what I was doing without getting too distracted by everything around me. I liked that while on a busy street (7th Ave), the entrance and windows actually face the side street it is on. That added to the peace and quiet of it. Employees were nice, free wi-fi (internet key is needed but on a sign in the shop), and I enjoyed my small, mint mocha with a chocolate chip cookie (both just under $7). I was definitely eyeing the cupcakes in the bakery window but my tummy only had enough room for a cookie (which was soooo good if I might say). They are open until 9pm on Sundays which is pretty cool. I have yet to use their drive through for coffee, but they are open pretty early which is nice competition to SBUX. There is also outdoor seating which will be so nice when it starts to cool off....you can give your dog a bath at Wag-n-Wash next door and then sit outside with them while you enjoy some local coffee.",review,RxfFQxUtSIGYwTKU_rvAeg,1,1,1 +1U__JyhW9eiZ2z4djki1WA,2011-08-31,dnzPwTR7iaGvgQ114tJvvg,5,"Makes the job of shipping packages a lot less miserable. +I can purchase any supplies needed, heck--they will even fill out the forms! +I come bring all my packages here, ship them whatever method I want and get it all done without stressing. + +While I hate dealing with shipping things... this place makes it even a bit fun with their service with a smile and fun conversation added in.",review,T5mD6ggC7fh48QgXR0LevA,0,0,0 +f0y7I6oNPKdKNW4eQyZb3w,2009-05-18,xszBdzAT78I9g22A4hivMA,4,"I love this quiet location right of I-10. Their selection is exactly as reported online, and the online orders I placed are always ready for pickup when they are supposed to be. Parking is wide open, service is good, and the area isn't overpopulated yet so it's always relatively quiet here.",review,joIzw_aUiNvBTuGoytrH7g,2,2,2 +53YGfwmbW73JhFiemNeyzQ,2011-12-14,eViJ6w3rPo6SYfxnl3oy0g,4,"Met for a business meeting, good happy hour menu, we had the flatbread which was great to share over our meeting with some of their house bread, which was excellent with the pesto. + +The well whiskey was poured nicely and our server was nice. + +Great for happy hour biz meetings on the waterfront, but only 3 tables in the bar, so you better get there early.",review,GnTGApuhE3TBn8Lt05RfIQ,0,0,0 +xmtKVO7C7KYVqMBe2eQq3A,2011-12-22,Us61PFnfQTMrX-xR3dd2jw,1,"We came here for dinner for me and reverse happy hour for my wife, we ordered our appetizers and after finishing them and looking over the menu for a few minutes we were ready to jump into the overpriced entrees. We were then informed that we couldn't order dinner. Maybe when they see someone coming in and telling them they are...here for dinner...they might give them a heads up that the kitchen Is closing so we can order our meals and not be told five minutes after it did close..fourth time we've given this place a and got crappy service. Bartender got a buck tip and we had to go find another restaurant for dinner, Needless to say we won't be giving them another chance. Not good Gordon B. Not good.",review,X1TKtLkA02fVqKjyptwa4A,0,1,0 +ELteSrWsLsF0S24gE3VDvw,2012-10-16,KAMI42qFm1LJE404gO2Exg,5,"I came in for a gift for my boyfriend's pleasure. The lady working there answered my questions thoroughly and professionally. Any shyness or awkwardness I might have felt disappeared. I was prepared to spend more for a different product but was steered to a better choice by this lady. Turns out, my boyfriend was very happy with his gift. This was around Halloween so there were a lot more items than usual like costumes, pasties... fun things. I can wholeheartedly recommend this Fascinations!",review,7CkkiLWuqmeVWQE-pLaxIQ,0,0,0 +pQAIM21Yw4eNdbha2Rxkcg,2010-07-14,kc9RPU_MYMVKK8r_rbfuoQ,5,"Yes, this place can be a bit pricey, however if you catch them at happy hour or on ""girls night out"" it can be very affordable. The atmosphere and the ""specialness"" of the melting pot is unbeatable. I have been there for intimate occasions, and family birthdays. Food is wonder, especially the cheese! The menu has changed a bit over the years, and there are some oldies I would love to see return (the mushroom salad), but there is nothing that beats this place for any special occasion",review,glRhDPETR9sI7-lvGzjPPA,0,0,0 +9Y3aQAVITkEJYe5vLZr13w,2011-02-28,QoM1UkjYKq9U8c_4lCUKaA,4,"By FAR one of my favorite places to have breakfast. The intimate setting gives off the ""mom and pop"" breakfast joint feel you might find in a beach town. The menu accomodates for the health-conscious but breakfast-loving eater. The only reason why I knocked it down a point is the wait. Unless you go during the weekdays or early morning on the weekends, expect to wait upwards to 45 minutes. My suggestions... their egg white omelets and for those coffee lovers, you HAVE to try the BC coffee!",review,vM58jCpkDnjZ_Kn5zAkMhQ,0,1,0 +5VMajxduxfLPSyQkVFKESg,2012-10-15,E7Xh3l0VZmyajWDZdBW6MQ,4,"Great BBQ, although not a huge fan of the cafeteria style ordering. I have been twice, I got the brisket sandwich one time and ribs the next. Both were delicious. I added bbq sauce to the ribs because I thought they needed it. Try the homemade root beer at least once, too. YUM. We got there just in time ( a bit before 6 on a Friday night) as we were leaving the line was 3x as long...out the door and around the corner. Oh FYI...for sides I got the beans (loved them) and my kids said the macaroni and cheese was good. Dad wasn't impressed with the coleslaw.",review,_mXOwLl-ZntFB875PMHnsg,0,0,0 +mLH4DEWVcYVFHwsVNyb-uw,2009-12-30,QDEQysAG9cn2B_jOKho_zg,3,"I ordered the gyro. + +THE GOOD: +1. Well spiced gyro meats, but a tad too greasy for my tastes. You also get a reasonable portion, which is always appreciated. +2. The pita bread was rather tasty as well. Slightly chewy, though. +3. Not too expensive. +4. Friendly owners. + +THE BAD: +1. A little piece of tomato and a few paper-thin pieces of onions. If you love onions in your gyro, ask for some extra onions on the side. +2. Again, it's a bit greasy. Even for a gyro. + +THE SO-SO: +1. The tzatziki isn't that flavorful, but I enjoy a definite garlicky presence to my tzatzik'. It was decent, but afterwards I wasn't lapping up every last bit from the little plastic container like a hungry dog. + +All in all, I'll probably return if I'm in the area and crave a gyro.",review,Gcq-9mRx7lWkoHD4eo7sXg,0,1,0 +MY0_6BAzQCu4sqXqwNEFfg,2012-11-08,Q1V7rSNBY9WWZq0F_xIj-Q,2,Over priced. Mediocre food. Service so so. We won't be returning.,review,L0t8ESj83JaYTtvq5Si2ew,0,2,0 +hGQsnkndreW7b26XC2HVRA,2012-04-13,NErfGicLetxP66ygY-38Ag,5,"A must for us when we visit Scottsdale. Whole family finds what they like and the burgers are fantastic. Very well priced and easy to bring the family, have some wings, burgers a few beers and not break the piggy bank.",review,5cA75LSHU3YH8qx1wK8T9Q,0,0,0 +-Ogv7rpcgUHkFaSy3vD8Sw,2011-06-15,9cDLzeuwYnreu03PE8rKsA,5,Love this place! I think this is probably the best Chinese buffet out here! They serve quality gourmet food. And they have a full bar too. Place is clean and service is great. Would go back anytime!,review,ykTUd9nIYDkQYhpntgcTVw,0,0,0 +YJoph5UiUZ3BEb49vyFAuQ,2011-03-02,mp4ADT1cYc9y6MGDdMR7-A,5,"Great service, good beer, AMAZING burger and yummy sweet potato fries. This place is an awesome bar food venue with a cool interior design, not too pricey or pretentious.",review,AV3qn49AJVn90B8I72ThDQ,0,3,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-08-14,Wt5kA0qywDF3H3dOlCyznQ,2,"Heed the negative reviews. + +This restaurant can be summed up in two words: mediocre & overpriced. I wish I had gone with my instinct and given more weight to the negative reviews. The positive reviews of the spring rolls lured me in, however, much to my disappointment. One spring roll is $4.50, although we fortunately went for the happy hour and only paid $3.50, which was still too much, in my opinion. They were stuffed mostly with lettuce and had little to no flavor., and we tried 3 different kinds. The peanut sauce was overly thick and cloyingly sweet and added nothing positive to the rolls. + +I had the Lemon Grass Chicken for dinner. The chicken was overcooked and dry and absolutely flavorless and the noodles were overly sweet. I couldn't detect even a hint of the lemon grass. The presentation was unappetizing, with the overcooked chicken just slapped on to the side of the noodles. + +I'm not going to speak for my companions as they were there at my invitation and probably didn't want to be negative, but neither of them made any positive comments about their food. + +As I said, pay attention to the negative reviews. If you like bland, overpriced food, you may like this place, but otherwise I can't see anyone going back for more.",review,hfxk47CObzTfaAXJ-4lMig,0,0,0 +cdr4GB7ygDahg009p2nn5w,2010-01-21,YqUmUYgQ7_L4f8aUpTc3Eg,4,"I am in town visiting and stopped at Shea for lunch. I actually had a breakfast sandwich/bagel even though it was 1pm (they said you can have breakfast anytime!). +The service was great and it was very cute inside. There are tables and they have free wi-fi so it would be a great place to meet clients for a casual meeting. +They also have a drive-thru if you want to grab a quick cup of coffee.",review,N8Ts_GPpK3lHsTHBnsEdHA,0,1,0 +lktu5JPDlQUG-7cV7gOzDQ,2010-08-03,Dmr1b9eAYoRO2_qxFse12Q,5,"I can't believe I haven't yelped about the place yet. Several months (maybe over a year?) ago my husband read a newspaper article about the Clover coffee maker and the one place in town that had managed to procure one. I was skeptical (as is my nature). It can't be that much better right? You're just saying it's amazing because you want to talk about the new hot coffee shop you discovered, right? Well, maybe. But I love this place. And I don't think it has a whole lot to do with the Clover. They roast their own beans and they roast them way differently than that other ginormous coffee chain - all a light or medium roast. Never bitter, never oily, never yucky. The coffee they make there is, obviously, the best. But I send my husband in every week now to buy a pound of beans so that I can approximate the same coffee at home. Add an edgy (though sometimes intimidating) seating area, great local art (which we bought off the wall), and smiley service...I'm sold. Can't wait to try out the downtown location.",review,Xfv8_MeZi8Dev5hx5-ISwQ,0,0,0 +iJPG0GPcIirjOMlmzZWxBQ,2012-02-07,W2ni9HfUWDDELNjp0UPrGw,5,Heard about this restaurant from a friend and I was amaze by the food and their friendly service. I tried the chicken adobo and it was amazing! The chicken came apart with no effort and it had a great honey glazed taste. The portions were a good amount for their low prices. I couldn't get enough of their amazing dessert!,review,DPVfcERMYkzf10rd_ySr9Q,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-12-08,Zgk-UaN0x1_iVDUGaEMESQ,5,"Had to update because we've now tried the pizza! For all the times we have visited we've never tried a pizza (too many other really good options to choose I guess...) + +We ordered the Italian Classic (veggies & meat). We ordered it a little well done/crispy and were not disappointed! It was hot, fresh and cooked perfectly! + +Service was great as usual even though they were completely SLAMMED with customers the day before Thanksgiving filing numerous growlers of their pumpkin beer which sold out in less than record time! + +We were there again last weekend for the football games and made it in time to order our favorite breakfast items - eggs benedict and the braised pork dish with beans, potatoes, two eggs and fresh warm tortillas. It was fantastic! This dish, just like many others (possibly ALL others) is plenty for 2 to share. + +Service was exceptional and the crowd fun and rowdy rooting for their teams and AZ won - so there were a lot of happy customers that day!",review,vzAvkSRois2VMqj_AT7xVA,0,0,1 +8m08a9xJKmANwmeuR-0bPA,2010-08-06,3YQTmzhSAJqynPthcA3WNA,5,"A big shout out to Mike, the stupendously stellar bar manager. I will be back to discuss the history of Vodka. + +Thank you to restaurant GM, Anibal, who stopped by to see us not once, but twice. Enjoyed the education regarding the secretive life of truffles. + +Aaron, the fantastically knowledgeable Sommelier, had me paired with excellent wine suggestions with only a few hints of my picky palette. + +Appreciated the Manger of Stone Rose, Sam, coming all the way over from the other side to dropped in and sat with us to chat about upcoming events. + +Can't wait to go back to try out there new bar bite menu in 2 weeks, and take advantage of the locals' secret 1/2 off bottle night on Tuesdays from there amazingly huge book of wines to choose from. + +Thanks again everyone: you made a potentially disastrous date night from visiting an establishment previous which (to say the least) did not go well, into a very enjoyable and fun evening.",review,h7v_M_0-YVpSVZ2WD7FpAA,0,2,0 +mPGgxatANSPw9KbMluhXkA,2012-09-22,Wyp7Ob0fZaCDgDVhWhlKQg,1,"Disclaimer: I am a Thai person and a Thai food connoisseur. + +This is supremely average Thai food and overpriced as heck to take advantage of White People. Sorry to be blunt but that's all it is. $18 dishes that are $8 at a real Thai restaurant. The spring rolls were very bland and came with only a tiny bit of sauce for dipping. They should also include on the table a selection of fish sauces and spices to add to your meals and appetizers. They dont have. + +If you like spicy, skip it for sure. Again this is what we would call Tourist Thai back in Thailand. + +Tiny servings. + +The good. Friendly wait staff. + +If authentic Thai is what you're looking for try any of these: Palees Crown, Tum Nak Thai or Royal Thai Grill.",review,OPStKHloEOVxcBtFgkzh2A,0,2,1 +wl51t6lT7leiX64SlkOx6g,2009-05-19,7DgPbW-s9aSBLqy73Ami-w,2,"It pains me to write a negative review of PJ, but I just have to ... +I was so excited for the new location to open because my husband and I go to the Indian School location any time we're down that way, and this is way closer to home. We were impressed by all the room up there! Not cramped like the other locations. Unfortunately, the food was not nearly as good! Both of our meals were not nearly as good as we've had before (at the other locations). +Also, our service was terrible. We asked another server if ours was new, but nope: She'd bee there since it opened a couple months ago. She forgot jalapeno our hummus appetizer (to their credit, they brought it out after our meal and gave it to us for free, but it was bland and not that good). She charged me for a side of tahini, even though it was supposed to come with my veggie burger, and she never refilled our drinks. +Overall, this was a very disappointing PJ experience. I'll try again one more time, but if it doesn't improve, I won't be going back to this North Valley location. :(",review,ka0Zl3em2LMYX48FvJp33A,2,5,0 +f_leeIRar8uNCkk5sAmHRQ,2010-07-02,K2O_4ArHi7oO5S4MpZJd7Q,5,"I'm very new to PHX. I ended up talking to a cop at the airport who told me about Thursday Rockabilly nights at the Blooze. I had to check it out. My friend and I walked in and were instantly comfortable, excited, and impressed. The AC was pumping, beer was cold, the music; rockin, and the crowd; refreshing. The bathroom was great! +They don't have food there but they will let you bring in whatever you want. We went there pretty early, around 7:30ish. Unfortunately, because of ridiculously early work on Fri AM, I had to leave once it was starting to get really packed and lively around 10:30/11. I am so glad that I finally checked the place out though. I will definitely frequent The Blooze as often as I can.",review,JOG-4G4e8ae3lx_szHtR8g,0,0,2 +TgxDGx7L_JICWbuBUCGVqw,2011-04-21,vY9uNDrKcTFKlFrQULrcCg,2,"The queso is ridiculously good... seriously. And the homemade tortillas are also outstanding. + +Aside from that, everything is average at best. As mentioned by others, this is Americanized Mexican cuisine. This is not autentica comida Mexicana, mi amigos! + +We had been once before and thoroughly enjoyed the food. Hence making it a point to visit again on our most recent trip to Arizona. + +We started with the chips and salsa set for the table - delicious. I ordered a bunch of queso for the table, and I started with a Tortilla Soup. It was hilariously underwhelming. I made the joke that it was kitchen scraps, and it looked the part. It was light tomato broth with a bunch of vegetables, a gob of cheese and a small corn on the cob on top. Yes, a small corn on the cob is on top. It was lousy and I wouldn't recommend it. + +We ordered a pound of chicken fajitas and a half pound of vegetable ones (thanks to the vegetarian fiancee). It went surprisingly far for five of us... but the veggies weren't grilled much, which is sad because they were otherwise delicious. Also, the chicken fajitas only had one piece of green pepper and one of red on top. It should be lush with peppers and onions that have been grilled or possibly even caramelized (the onions). + +Daniel E. wrote in his review the same concern, that there should be ""more than a pile of onions,"" that he expected at least some green, red or yellow peppers. The fajitas were good and quite filling. The accompaniments were decent - cheese, lettuce, sour cream and the like. Nothing fancy, certainly no frills. + +So much potential, but it fails on almost everything. It's a true shame. This place needs to be on Restaurant Impossible with Robert Irvine... badly... + +This time around... the service was really lousy. And my fiancee found a bug deep down in her water. Very disappointing. The waitress first replied confirming what size bug it was, and then explained it and claimed that ""we're not dirty, it's just the food smell."" Then she apologized and walked away. We think she deducted a soda from the final bill... but nothing else. A bug! + +And the entry foyer smelled like a high school locker room... it was foul on the way in and out. + +Sad to say that we may likely not return in the future. I'm not sure if our family and friends in the greater Phoenix area will either after the bug incident.",review,c0QRCVqGQdRVPCFNGV_YAQ,1,1,1 +yuLBsnvW2iMHPb8uit6TEQ,2008-03-22,Jc-Edm1A-bhgjmNTDzRVOQ,5,"Finally, well-qualified, well-established mechanics that don't talk to me like I'm a dumb, car-ignorant girl - even if I am. I was sitting at a desk establishing an estimate for my Honda within 20 minutes of calling them. The receptionist was polite and efficient, but truly the best part was their interactive, transparent estimate process. I was able to view the screen as my estimator drag and dropped the parts he suspected I would need into a spreadsheet. Then, I saw him calculate the labor hours - something I had NEVER been privy to before. Tracy's Auto Body was affordable, very quick and went above and beyond - alerting me to other pieces that were loose and fixing them for free. I highly recommended their services. They have a perfect record since the mid-1980s with BBB and with good reason.",review,Z7sg07ZVZBzuKPZstlX0vg,1,4,0 +bzDs0u8I-z231QVdIQWkrA,2010-08-09,Yd0g9ZKGT1aESnCSku2CDA,5,"So I was like a lemming trying this after Man vs Food when recently visiting Phoenix. But...... the kid is right.... everything on the Del Rey torta works together. And it is HUGE. And it's great too. Wonderfully constructed, just enough of everything and not too much of anything. I also had the watermelon juice (interesting, huh)? One strange thing.... first Mexican restaurant I've ever been in that didn't have chips and salsa. Only real downside is that the service is a bit slow. But they're slammed and deservedly so.",review,SMmsPueqnfVcZICvqBPsaA,0,1,0 +45puCRQ6Vh_IIAy7kkfFDQ,2010-08-12,3IntE4NdRd4caAgtmwnKSQ,4,"Every sports town should have a bar like this (just outside the arena). It's the first stop for conventioneers wandering into town (for a drink, post show). This ain't the place if you're looking for a quiet spot.. However, if you're looking for a lively and well furnished sports-bar, with attractive waitstaff, this place is great. The back room has huge leather booths. The outdoor seating is nice too--it can get a little wild after the events let loose.",review,Oh6Dd5mQ9A9vBKVvgbl1xQ,0,1,0 +DE8UVNCCpOE0vTAbGaMoeQ,2008-01-21,42czvmiCtceWfSJ_G87RYQ,5,"are you joking? Where else can you get the best salami, ham, any cold cuts anywhere? I just moved here 6 months ago and have been searching for a place like this. Their meats are fantastic. I discovered this place after driving by it so many times. thought I'd take a chance. Location is awful. but worth the trip.",review,PR1RjMIy5ramcfn--tvLCQ,1,3,1 +xY1sPHTA2RGVFlh5tZhs9g,2010-05-13,4q_LkgQ2lev1sLsUoxAnwg,4,"Two trends that need to end. ASAP. Really, ahorita: + +1. Bacon mixed with everything under the sun. Bacon doesn't need an accompaniment, it's amazing all on its own. No more bacon donuts. Please, for the love. + +2. Overuse of truffle oil. Dumping truffle oil on a dish does not make it gourmet. Please stop. For real. + +Culinary Dropout is guilty of succumbing to these two trends. That being said, the service and atmosphere make it forgivable. Our server and the manager were hyper aware of how long we'd been waiting. Even though it was not that big of a deal to us, it was nice to know they cared. + +They mean well when it comes to cocktails, but they were a little lightweight for me, relying heavily on simple syrup and mixers to dumb down the alcohol. Their beer list made up for it, though. I've never had a stout in a can, but they managed to find the brewery that pulled it off. + +Yeah, my ricotta gnocchi was drenched in truffle oil, but the sausage and mushrooms made it actually a pretty good dish. And the beets were fresh and delicious. + +I liked it, I'm not gonna lie, but I wish they'd stop falling prey to the trends and branch out a bit. Culinary Dropout, you're better than that.",review,LdJzVbO6bYViUTamrvjkwQ,2,1,2 +0vzZ_Bcb02rJljeMU9XkBw,2007-03-23,joyFEisyRn_pldQ4T09E9w,5,"Excellent place. I have eaten here several times and the place is always busy. The sushi is good and you can order things that are not on the menu if you know what you want. I have a friend who works for Intel with a lot of Asians and they frequent this place a lot, which is how I came to discover this place. + +The prices are good and are much cheaper than the RA or Kona when you take into account how big the portions are.",review,X01EFxZ1-nNAXh5W5puMww,0,1,0 +7U8TYNW4Mvx6m3zexsO0sg,2011-08-03,thXcPe-DmVV-eUO-seEa5g,4,"At the recommendation of a friend, I met a client here for lunch. My client was arriving from out of town and this joint is very conveniently located near the airport. I guess once upon a time, it was an actual stockyard. Now, it's an old school restaurant that has a lot of character. + +After browsing the menu, I opted for a BBQ Pulled Pork Sandwich & Fries, $10. To wash it down, I ordered Iced Tea. + +The Pork Sandwich was awesome, very tasty and a large portion. You will get full. The Fries were tasty as well. + +My client was impressed with the restaurant and put it on his ""best place near the airport to have a lunch meeting"" list....+++ + +The service was great and we were able to have a good lunch meeting that left us both satisfied. + +Return Factor - 100%",review,kGgAARL2UmvCcTRfiscjug,6,7,4 +mxrXVZWc6PWk81gvOVNOUw,2009-02-13,nuy79SC7bynr-dyGwXTopQ,2,"I think I would have liked the food if I actually ate it. Was seated quickly, which was nice, given a great table (booked on open table so was surprised). The salads came quickly, but immediately noticed my lettuce wasn't washed, but no waiter to be found to send back. + +A while later, after I noticed other tables getting served that were seated after us, the waiter popped bye and said that our food should be coming up shortly. A while later, the food arrived, and it looked good, but it was way cold, had been sitting for a while, which was a shame. All the food was sent back and we were given our bill for our drinks. Whaaaatttttt??? They wasted an hour of my time to serve me cold food only to drop a check for my drinks? I wouldn't have had the second glass of wine if the food had come in a reasonable amount of time. + +I would go to Houston's, better food and a quality wait staff / management.",review,Bhg8lIhB2PvsuXbjXK0vYA,0,1,0 +YRJKTPc7Tkz1cbjGHmOHuw,2009-01-16,ilJkWNsfa5IeY68_YXcC0A,4,"modified is a great place to see a show. it almost reminds me of basement shows back home- intimate, smelly, people utterly engrossed in the music, all ages. it's good stuff.",review,guT5ZW60rtlnsU15-DYoXw,1,1,1 +yYbd9P1KmlPSKmQxo68n_g,2011-03-08,6EK_J2U8SoE9xT8NZ67Exg,4,"Still love their product, but their online ordering process just doesn't work. First time, my order was sent to the wrong market. Second time, I was shorted a package of chops. I checked the bag before I left the market, so it was only a minor inconvenience. Third time I ordered bacon, which was listed as available on the web site, and then contacted and advised it was not and may not be available for a few weeks. Since I paid upon ordering, I had to go through the hassle of waiting for a refund. + +I've also noticed inconsistency in portion size which is a problem considering you pay by product, rather than pound. Boneless chops should be roughly 6-oz each, yet I've received 4-oz chops at times, resulting in 50% less product for the same price. Not a deal breaker for me, but something to consider. + +I continue to purchase from these guys regularly, but no longer try to order ahead. And I do wish they would have bacon available more often!",review,wHg1YkCzdZq9WBJOTRgxHQ,4,4,3 +Y_TtMiH_nx33FH4C48XhsA,2011-04-26,FcIL0kPumNkm-ks908FX8A,5,"TJ was there for me when my water heater broke and started flooding my garage. He walked me through fixing it over the phone until he was able to send some help to my house. Very grateful, and I will continue referring!",review,lMS9mDMkdKZQ79NBot8srQ,0,0,0 +FCJHirFzEtj4M1VcuaKieg,2009-10-03,G5I9rLAwWb5cneIgY_Vo9w,3,"We had fun but it is definately more for kids 5 and younger . +The pretend store was fun and we all had a blast playing in the noodles.",review,GCOTDDAIrRIatqjxr642rQ,0,0,0 +Snp5LyDO9NeQiuFPOlkavw,2012-08-18,GPh4MiT3be_G6YnKN5wW7Q,5,"""Gosh-Awful-Gooey Banana Split: fresh banana split lengthwise, Turkish coffee ice cream blanketed with caramel sauce, red raspberry sorbet smothered in marshmallow sauce with delicious whip and a juicy maraschino cherry atop."" Heaven!!",review,KS5F2qrNoAdVrzpAU59RrQ,0,0,0 +NYIyTj2AZJpAo7XIM-Z7lw,2010-06-28,uhusdFKIr0WetwXpgWaoow,4,"Valle is all about the ritas happy hour, chips and bean dip and an awesome patio, if you are looking to eat awesome pollo funditos well they have that too...",review,5AuHVpG7hxl1-OqDInP6fw,0,2,0 +v1vi2ph9YLAXGqV2WTuN7Q,2010-05-10,dz1HrU8KNaPb4BfCDO3BLg,4,"This is one of the only places in Phoenix that carries legitimate book binding supplies like book cloth and all sorts of decorative binding papers (unlike the decorative kind for scrapbooking). I love that I can order online, and then they will call me when my order is ready and I can just head on down to Tempe to pick my stuff up. + +While I haven't taken any of their classes, they look pretty awesome. I have had experiences with old letter press techniques, and this place offers classes in it. I think I'm going to have to sign up!",review,vipSiSxRH0fIo9qbfjsHpg,0,1,0 +HLQUH1VAw4KbSV-IhxOPEw,2008-08-26,gzeVndmm4XH3pUxKlVr7mA,4,"I've been fortunate enough to stay at several Ritz-Carlton hotels around the US... San Francisco, Amelia Island, Atlanta, Buckhead, and Lake Oconee are the ones that stand out. I've also been to events at many of these locations and more and I've always been blown away by how beautiful these hotels are and how incredible the service has been. I agree with some of the other reviewers that the Ritz sets a standard for other hotels, and they are known for luxury! + +When I recently spent the night at the Ritz-Carlton Phoenix, I was not as blown away... the room was just ok - nothing so special, and I don't have any major complaints but I guess with my past experience and the reputation of the Ritz in general, I expected more. (Don't hate me, Ritz-Carlton; I'm still a fan, but maybe not so much of the Phoenix location compared to the rest). + +I will say that we did get a discounted room rate because I was being honored as one of AZ's Finest and that's where the black-tie gala took place... and it was quite the event as well - we had a blast! + +I took advantage of the fitness room for a quick workout after we checked in, and it was one of the nicer hotel fitness rooms I've seen in awhile. Unfortunately, the pool was closed for renovation during our stay, so my BF could not swim on site, but luckily they shuttled him over to the Biltmore to swim instead. + +So, overall, it was a pleasant experience - I just can't bring myself to give 5 stars like I would at any of the other Ritz-Carltons I've been to... but stay tuned for my review of the Ritz-Carlton, Bachelor Gulch (which is where I'll be heading in December for a wedding) - that one looks like it may be the best one I've seen yet!",review,fczQCSmaWF78toLEmb0Zsw,5,5,4 +pQ3kRVmttsV1bHxuTf7TAg,2011-12-29,8f2V7SM-umCFT3klETGJ_Q,4,This place is kind of foreboding to enter... it just looks like a dimly lit house. But I had heard good things and went a few nights ago and it was adorable! It's like a bar in your living room. They have endless selections of beer and it's a fun environment. I definitely want to go back when there is a show going on as well. My only complaint is that there's no beer on tap!,review,hq6Imcpu0tNIyiQF1kZw4g,0,0,0 +soiGohHtWOltGeomkSxzEw,2012-01-19,2wdJKInKmwKgdyuzlhbxqQ,4,"How this place has less than four stars is a mystery to me. I have been 5 times and have taken out of towners here 2 out of the 5 and they all left saying it was yummy too. The El Presidential Especiale is a MUST - i order 86 the onions and add machaca/shredded beef. They are a simple yummy combination with their rice and beans. This is just straight up classic mexican food - not for the snobby. So if you want a more classy joint that's less authentic - hit up Z'Tejas cause this place is not for you. The hot salsa in the ketchup bottles is always a sign of a great mexican joint (and it's hot AND tastey - a combination not many get correct). I will say their chips can be a little on the less crunchy, more oily side but they are more than happy to replace that with some that are a little more to your liking. And their margs are delish as well. This place deserves a 4 because of consistency, friendly and accomodating atmosphere and just downright solid take on enchiladas - red sauce is spot on. Thanks Tee Pee for being our go-to for Mexican food in the Valley of the Sun!",review,bEd0_FyH-J1EtRpKefHSUg,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-05-13,z8Lce5iaLK7W4KyYVJRVWg,5,"""Wait, we're in Arizona?"" +"" No seriously, this is Arizona?"" +I had to keep blinking cause I could've sworn we were still in the East Bay last Friday night as we waited for our faux meat meals to arrive at our table. + +My hubster and I were visiting his mom for the first time since she had moved to Phoenix and admittedly, neither of us were too stoked on the visit. We totally wanted to see her but as for Phoenix?? Anyways... she knew what she was doing by taking us straight from the airport to Green. + +I LOVED EVERYTHING. From our appetizers (hummus + fries) to my entree- I had the chicken curry noodle bowl, to my beverage- a suicide mixture of their house green tea and house limeade (YUM) to my soy ice cream treat (I had the mint with paul newman oreos!) which I scarfed down after being totally stuffed. This place is ridiculously good. And reasonably priced. And fresh. And not stuffy or pretentious in anyway. Basically, this would be our new steady if we lived anywhere near... Tempe. Which fortunately we do not, but I have to say, you Arizonians sure are stoked to have a place like Green. +And now we have a reason to look forward to returning to AZ!! :D",review,7vcCMGQHuDmNw3qIjj10Dg,0,1,1 +R6aazv8FB-6BeanY3ag8kw,2012-03-31,Lz2431qwqC5VnkwsrkvKVg,4,"This is a super cute restaurant with a simple yet delicious menu. They stick to basics which I love. They also have a vintage items that you can admire and purchase. Its a great place if you want a quick, simple, cheap yet delicious meal. Their shakes are amazing as well as their potato salad. YUM! If you are in the area, check it our for sure!",review,pT5kaEJow8YG4G0avzLq5Q,0,0,0 +pQAIM21Yw4eNdbha2Rxkcg,2012-08-12,hfmMPkOq-c4j3S7Q2owuHg,5,"My six year old daughter and I enjoyed a fun and memorable date night at Melting Pot last night. It was her first exposure to fondue and we had a blast eating great food and talking about her first three days of first grade. We starteed with a fantastic spinach and artichoke fontina & butterkäse cheese fondue, then shared the ""Land & Sea"" (filet mignon, chicken and shrimp). Of course, when the dessert menu came out so did a bit more enthusiasm. She had never dreamed of seeing a pot of melted chocolate before. The looks on her face were priceless. She chose the ""Cookies 'n Cream Marshmallow Dream"" and it was crazy good. I'm looking forward to taking the whole family and to making this a more common stop on our date night calendar.",review,WJhAKYIAKyrdFnTnjuM44Q,1,1,0 +DcrM4hwDcU2G6vuh2cnaYQ,2012-04-05,rfU80jENO-izDExO_eBfaw,5,Have eaten here several times. Always amazing.,review,Ch6CdTR2IVaVANr-RglMOg,0,1,0 +d_8bMNQd0mesbEUeq1U2kQ,2012-09-24,pZcV3LEKEftdFpfRzDFgsg,5,"Love the buffet, the folks that work there are great, we usually hit this at least once a weekend and our table is always ready and he knows what sort of naan we want. Small but worth it.",review,uQeOiwIoIn7sypJJm27ZjQ,0,0,0 +aGaoRZay5PRieFvTK6VkmQ,2009-10-02,sHViya3zxFHH6lH1rOAl7g,5,"Great selection of gelato! Friendly welcoming staff. Reasonably priced, deliciously rich gelato!",review,VCZ42oA9yRKB93DQI5cHuA,1,1,0 +bQ1s5pqX_UVWVQ-k4e9rAg,2012-05-14,nZ4sS2jTY9JUWtneA-CoCg,2,"After reading all the raves about the green chili mac & cheese it was a must have - and then immediate regret. The green chilies were chewy and not peeled properly and the cheese in the mac was grainy and gritty. Yuck. Mac & cheese is by definition...cheesy and smooth. Not this. Horrible. The good side was the pulled pork sandwich and the hot BBQ was pretty darn good. All in all when I want good BBQ my choice would be Honey Bears first. But if I'm hard up and just gotta have some BBQ, I would consider Andrew's again.",review,bEd0_FyH-J1EtRpKefHSUg,0,2,0 +JokKtdXU7zXHcr20Lrk29A,2010-04-03,m_kR9bNVGxvQOfM9ARlH9w,5,"The BEST brewery I've ever been to. Amazing beer and awesome food (I didn't think that combo was actually possible)! I daydream about this place all the time since I spent so much time here while going to school at ASU. Whenever I go back to Phoenix, this is always a must on my list!",review,pR6kbWnxhJXQ-pGPcWM-SQ,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2009-05-26,B_2PVRyDRLMVf_nyMcvXpA,3,"Bonkers staff at this small breakfast joints ... One totally overbearing and the other over the top nice but both in a frantic, hyped up on caffine kind of way. Still there was a huge line at the Breakfast Club so we gave The Dose a try. + +The eggs over easy were broken and our server was confused at the request to have eggs on top of my toast. Turkey sausages were ok and the breakfast potatoes were excellent. So for a regular breakfast it was meh but then I ordered one single buttermilk pancake ... WOW! Perhaps the best pancake I have had in the valley! + +For a regular b'fast show me to the 5&Diner but for pancakes only I would certainly go back.",review,mjP_3XwUXdptvOpQd0OjBw,0,1,0 +rQ4z0EStSZE4acgkne6Hmg,2009-10-04,chPf9aP8iy_iGIGtGrLpmg,5,"I have been here countless times since my last review and found myself here for a quick drink and some appetizers last night. I took a huge hiatus as I was in Michigan for a month and then have been crazy busy since arriving back in Phoenix and transitioning into a new job- I was sad because I thought they would've forgotten me. I was pleasantly surprised to see that they did not forget me at all. I love that! + +We grabbed some brews and shared the patatas bravas (a personal favorite) and the mushroom appetizer. The mushroom appetizer was heavy on the cheese but still a tasty bite. The patatas bravas really never fail- they remind me of my Mom's version of french fries. + +I'd highly recommend this place for a date- it seems to pay off in more ways than one. Always great service and interesting eats- still lovin' Tuck Shop for being in my neighborhood!",review,0lxf4v5NuJ1U6Bk7SGAJ5w,6,7,2 +Xo9Im4LmIhQrzJcO4R3ZbA,2008-10-30,QQyjteVJ5BUVfcVLlAeZZA,4,"I am a harsh critic when it comes to Mexican Food. My good buddy Paul talked me into coming to this place. When I asked him what to expect, he was correct in saying: ""Don't worry dude, just get the green on green with a taco on the side and watch the hood life unfold."" He was CORRECT! This place is in the hood and they open at 10:30am for lunch. The lines get long at about 11am. They have a video game from the 80s while you wait. They serve drinks in THE CAN so I would suggest getting a 32oz thirstbuster beforehand. If you go in the summer, you will be HOT in the summer heat as the only place to sit are at the picnic tables located OUTSIDE of course. If you try to alter your order, you will be SCOWLED AT by the cashier. However, if you treat her with respect, she will say something in spanish to the old heavy hispanic lady in the kitchen who stirs the chili and the fat lady will either NOD or shake her head. All in all - a great place to eat!!",review,7zJeiY6YGosO7jakhlK91A,0,0,0 +dipzJ5BExpm6BtJ91mXd4Q,2012-09-19,M6r2_YZ8qpFb5FYBJoKRQg,4,"I have been searching for a good Pho restaurant ever since Saigon Pho in Chandler went down hill. Pho Van is a very clean, well organized, and well staffed restaurant in the Asian Center that shares space with Lee Lee's and other shops. + +I had the traditional Pho Ga (chicken soup in beef broth) and Goi Cuon (Spring rolls). Both were very good. The noodles in the broth were perfectly cooked and had great texture and the chicken was all white meat and very tender. The veggies that accompany the pho were fresh and crisp. The Spring Rolls were perfect as well stuff full of healthy green veggies. + +The prices were a little higher than I am used to in a pho place but it was not bad. They also do not accept AMEX so beware if that is all you use. + +Overall a great place and this is my new Go-To-Pho in the valley.",review,omoEjYFKVV7e-DtnezeUOw,1,2,0 +peA3F-PnIfijYr8HuG-A-Q,2010-12-09,8sMAwOrtAywYEwiD7L0lQw,4,"I haven't been here in quite a while, but when I was coming here, they had a jazz band doing rock and alternative covers (their name is The Latest, though I don't think they play here anymore). The place is totally trendy, but I really see that as a good thing here.",review,kXT3pVtElactR8nFmeLbbg,0,0,0 +qecLHHzAwgkkeA1bG81vmw,2010-06-19,pNhYfD8rHExoPXLvWj-LdQ,5,"Was not expecting such a wonderful meal in a shopping center! After some shopping my husband and I were starving.....this was the first place we stumbled upon that was still serving their lunch menu at 3:30pm. For starters we tried the calamari....delicious....lovely deep fried lemon and zucchini pieces amongst the calamari pieces. + +For mains we both tried the tomato and basil soup....very tasty. The veal meatball that my husband had and that I had to sample was also very good....smothered in a nice tangy, rich sauce. My vegetarian pizza was the best one I have had in years....super fresh ingredients on a very tasty base. + +For dessert the gelato profiteroles smothered in chocolate sauce were simply devine! + +Needless to say we loved this place not just due to the amazing food but also the atmosphere (may be in a shopping area but still nice and cozy) and the great staff who were very friendly. + +Will probably dine here every shopping trip : )",review,0ouMuScWJ3GuNtWEmmsziw,1,1,0 +eIxSLxzIlfExI6vgAbn2JA,2011-04-21,TeOHcNOhqCK31DXa5do3ew,2,burgers were terribly unoriginal. french fries came strait out of the safeway freezer section. the guy working was so hungover it was kind of sad to watch.,review,5bs9-7Fwjuv4HiQNFVZTEw,0,1,1 +bzDs0u8I-z231QVdIQWkrA,2010-06-05,L8bosh7KwL8TwWNB-qos_w,5,"Went back with some veggie friends of mine and wasn't disappointed. One of them ordered the regular flour quesadilla, and they loved it. It had veggie stuff on the inside and I tasted a bite which was delicious. I will probably order this next time I go. Also, the grilled onion which came on the side was a big hit. The other friend ordered the mushroom corn quesadilla. She liked it but didn't love it. I had the shrimp tacos and, wow, were they good. + +I don't know why, with all the tortas on the menu, but I just seem to prefer the other menu items. As always, the service was great, and it was very, very busy. We had to wait to be seated. + +Love this place!",review,5-2JHDnSsoSaoRKDHPeTtQ,0,0,0 +RmA5zN-Bs89lsTuY6v8W3Q,2012-09-25,xtbPGc8USrczIjVlz7CuRg,3,"Okay.. I loved this place so much when I visited last year that I planned my Besties' birthday bash here in August this year. I flew in specifically for this event. There were 10 of us at 8pm. Called to put our name on the list a few hours before as instructed. They were so unorganized it was horrible. We didnt get seated until about 10 pm and by then 2 people had left because they were starving.. By the time we were seated our service finally came together and I have to say we LOVED the unique shots and had almost every one on the menu. As for the food. The Hamachi Popper was by far my favorite. The HUGE disappointment other than the horrible service in the first 2 hours, was the elimination of the PB & Jelly roll. It was the ENTIRE reason I chose this place and they no longer have it! WTF? Had I not had 10 shots I would have been furious. Management was gracious enough to take off a couple shots from our bill for the chaos we had endured. It was appreciated. All in all we had a good time even though it took forever to get to that point.",review,g6rlp5No6GjEDXkrjvg1kQ,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2011-03-22,nLkR_YYtbtEFqKZwKAif8A,5,"How have I not reviewed this place on Yelp? + +I reviewed them for Check Please, Arizona!, a PBS review show. http://www.azpbs.org/checkplease/. I could at least do a written review. + +I've eaten at FEZ so many times, I can't count anymore. I think their burgers are some of the best I've ever had in the valley. Always juicy, I think the square patties are adorable. + +The FEZ burger, with it's molasses bbq, cinnamon pears, feta, providing fireworks for the tounge. Their Douxelle burger, with sauteed mushrooms, provolone cheese & mustard, resulting in a subdued but delicious burger. + + Their fries, which include normal, sweet potato, harissa, & garlic are also great, but I love the salad that comes default, including their lemon dressing. + +If burgers & fries aren't your thing, they have Kisras( think like pizza, minus the cheese), and their daily specials are amazing. + +One time, I was lucky enough to score the mushroom risotto, and it was perfect. Sugar snap peas, + +Drinks are fantastic too. A margarita that doesn't taste like chemicals, perfect martini's, and a G-Spot(grapefruit, pom, and vodka), make FEZ a perfect place for lunch or dinner.",review,67QGJdqABqaSEsQR4esrsA,1,1,0 +V1nEpIRmEa1768oj_tuxeQ,2011-11-18,nceYGnBrvfsze5jvShv_Ww,4,"Cibo doesn't appear to need my review, since they have a lot of fans here and other places. This is a good lunch spot if you can get there early enough to avoid a wait. The patio is particularly nice when the weather permits. I work about five blocks from here and I've only been there for lunch. I've wanted to try dinner but something about coming all the way back downtown after I've driven home to Gilbert just doesn't appeal. Maybe on a day off sometime. The food is great. I like the speck sandwich. Speck, for the uninitiated, is just another kind of cured ham like prosciutto. The bread is always perfectly toasted. Currently they offer as sides a salad, fruit, or chips. An orzo salad, a la Carly's, would be a nice addition.",review,3FvZLg19icrnprA_PzSr9Q,0,0,0 +UQq4E0TD2CWRLYOB1iGMig,2012-09-02,yu32TrnceRwbGysd3_fHVQ,4,"Hey hotel room snobs, I am totally with you that swank hotel rooms are the best. But when that's not in your budget & you just need a decent place to crash in Old Town, this is your place. I think my room was like $48 a night. That's cheaper than a cab ride home for some people. + +Plus they have free, albeit somewhat dodgy breakfast in the morning. I stayed for a few days, did some shopping & drinking. I could walk to Fashion Square, & cabs were cheap to anywhere in Old Town. Sure these places haven't been remodeled since the eighties, but who cares when there's free wifi!",review,AdEy5KAIlMAy8xHyuMQCFg,1,2,1 +ydhh9IME2xHQNVIRBbVBog,2007-10-22,VCCF4MSxZZGftkQo4gpKog,3,"Enter your credit card information..chose your wash type....enter wash.....ahh clean. + +The automatic wash at this place is great and touch-less! I used to have to get out of my car and remove the antenna, so it wouldn't be sucked into those heavy foam sheets that touch car washes use. I never understood the point of those, but as a kid, was frightened by them. It was like your car was being engulfed and swallowed, I felt like Captain Ahab, in the belly of the white wale. With this touch-less wash, no need to worry about antennas, mirrors, or anything else protruding from your car, or feeling like a character from classic literature. + +The prices are meh for what you get, just spend the extra 2 $ and get the 8$ wash. It gets your car super clean, and has a full dry at the end. 6$ bucks gets you no dry, and 7$ gets you a mediocre wash, that will make you say ""did I get my car washed at all?"" With the 8$ you get this special Green Foam spray stuff, and extra rinse and polish deal. This place would be 4 stars if they wash options were better, but overall it's not a bad place to get your car clean. They have vacuums and vending machines that disperse air fresheners, towels, and small bottles of armor-all...in case you are too lazy to go to AutoZone (which I am sometimes) + +My favorite car wash moment: + +An unexpecting patron approaches ""change"" machine, in his attempt to get change for his 10 dollar bill, in which he plans to purchase the aforementioned green ever-green tree air freshener. He proceeds to insert said 10 bill into machine. Clang...Clang.... like a slot machine in Vegas the change drops from the machine, as he reaches down he realized he just bought 10$ worth of wash tokens! DOH!!!! + +He proceed to swear in Spanish..as his girlfriend laughs at him. Little did he know that this Car Wash has it's own currency, and is a sovereign nation of the United States.....",review,HfwO9GnaP-9VdI0afwgmrA,2,2,2 +ZhMlXLXuZf5z7lxunHk2ww,2011-05-05,lwLBZqTLw4nVgejDkcKVrg,4,"Good, but not as good as Ocean Club. The new location is fantastic, and there is nothing to complain about here, but I'd rather dine at Mastro's.",review,_boBQx1hhICx8y4GWnivLA,0,1,0 +51qNc8sg9kCD5GEJ3TUrrw,2009-05-25,0O_rz4j9E4ZEf1ZVv5KvIw,5,Great food! Good prices.,review,vwOlYL0OFnAOIZukgldHWg,0,0,0 +DDnmNTvIIQu2t3WZ2EQx-w,2012-02-25,WPPd0Xm28qPQKY72hRUGVA,1,"Look it upsets me that you have to give even one star. + +I can read the other reviews and I have been here more than a few times but tonight it was just beyond a bad dinner. + +Yes, we were the table of 7 people at about 8pm, yes we were group at the high top tables that were pushed together. You would have to remember us because we were the table that had 1/2 of a waiter. It was so nice of you to take the time to take our order and then let the waiter go home because he had been there since lunch. + +You know what sucks more than working 2 shifts? How about being the last table for the guy who worked 2 shifts, it was so nice of the manager to let him leave, but hey how about taking the time to have someone FINISH the open orders? + +Simply the food was not good and you are over priced. + +But the worst part is that your staff is just not good at their job, THEY DONT CARE and that is a result of MANAGEMENT not caring.",review,c6sX9OeQS1OnLJsbZ-3T5A,1,3,0 +R3sbDS0YcJDedSmUjwE48Q,2011-12-14,XoPCekp4ZeBl0jlz7K_mlA,1,"One star would be giving it a holiday gift! + +For me Copper Star Coffee Shop has been a place where consistency and pride is taken in their food and presentation. Unfortunately, Circle H BBQ is nothing like the prior statement. + +My first visit to Circle H BBQ centered on ordering a half slap of ribs. They were extremely over-cooked. There was more charcoal on the top, back and ends that was just not editable. Once you scraped away the charcoal, on the tops, ends and the center ribs, there was one that was eatable. + +The company offered me a second chance to try their food, by giving me a complementary full slap. Nothing had improved. +They say they smoke the ribs, but there was no odor to that effect. In face the ribs I ordered the second time spend over 20 minutes on the grill after the order was placed. +Btw...the waitress at the front counter couldn't even tell be the type of rub on the ribs and the type of cut they were. When I asked if they were smoked (cooked) daily, she said some are if you get here early - others were from the refrigerator from last night. The so called ""dry-rub"" seasoning was tasteless. The BBQ sauce is major strange! + +The bottom line is the ribs were not worth the cost they were charging. ($14/Half for 6 bones and $26/Whole 12-13 bones both with sides) I have high hopes for the brisket, but it might be a while untill I try that endeavor. + +Overall if they don't change the way they 'burn"" the ribs, run, run or drive real fast to another place. The charcoal is not good for you and there is lots of it! + +Honey Bears, My Mothers or even driving to Famous Dave's is well worth the trip. +Sorry to burst your bubble, I too, had high hops for a centrally located rib place. + +I'm still waiting.",review,4C5wYoVdJL1tbQWbGAhJvA,0,4,1 +LcAamvosJu0bcPgEVF-9sQ,2012-11-18,Ooe_tO2xpCvjw6w7VoZeNA,4,"So happy that DryBar opened a Central Phoenix location! Fun atmosphere, great customer service and high quality blowouts...pretty much an exact replica of the North Scottsdale location but at a much more convenient location for me. + +Took my sister-in-law here for a birthday treat. We were greeted by a friendly hostess and they accommodated our request to sit next to each other as we enjoyed our blowouts and mimosas. Great idea and great brand. Will definitely be back again for a special occasion 'do.",review,YiuCu8bWN3moIhhhfvp0CA,1,1,0 +iJPG0GPcIirjOMlmzZWxBQ,2009-03-14,o22kERld_m3G7OkuglvtJg,3,"I hate having to give out three star reviews. For me, 1-star isn't the worst possible rating you can an establishment, a 3 is. Because 3 stars means it invoked no reaction to you, neither joy or disgust, no pleasure or pain. + +I'd rather eat at a really shitty place that I'll remember than a so-so eatery that I'll forget the moment I get back into my truck. + +If I want mediocre ""take it or leave it"" food I'll just cook for myself, kthxbye. + +As BFeF's (Best Frienemies Forever), Clarice W and I frequently have lunch together in the Peoria area. The decision on what to eat is usually made using the following criteria: Where haven't we been that we can yelp about? + +Our last lunch involved us going to Hope Kee and getting all wrapped up in their cutesy snack section and coming in late to work. So we needed somewhere relatively closer with no Hello Kitty gummi lips to distract us from our voyage back. + +Clarice suggested Casa Filipina, a Filipino place by the Lenny's Burger somewhere near but not necessarily 35th Avenue. + +We were welcomed in by the staff and taken immediately to a nice cozy table by the window. We were given our menus by the excited and talkative waiter I would come later to know as ""that fucking guy"". + +At first I was a little troubled reading the menu. I was once in a relationship with a Filipino girl that was so tumultuous and unloving that when I seriously thought of breaking up with her that my first thought ""but man, I love her mother's cooking..."". + +But aside from the adobo and lumpia, I saw nothing else on the menu that I could recall from all those awkward awkward family dinners. + +I can't tell if this means there's more to the cuisine than I'm aware of or that said ex's mother was, as well as a good cook, a fucking liar. + +Either way, I'm glad I left her in the end anyway. + +I ordered the Dinguan, which translates as ""chocolate pork"". + +Don't be fooled by the name, all you saucy foodies out there thinking of that Iron Chef America where they made savory dishes with chocolate. + +Chocolate pork is actually pork cooked in pig's blood. + +I'll repeat that. + +It's pig's blood. It's called ""chocolate pork"" because the blood takes on a brownish-black hue after it's been cooked. + +After hearing this from that fucking guy, Clarice changed her original order (we even order the same thing! aren't we just the cutest!) to the Bistek Tagalog, which she was familiar with and knew she would like. + +All the entries come with at CFB is a side of ride. I'm not sure if it's jasmine, white, or saffron, because I always opt for noodles when given the option. + +And if you get that fucking guy, that rice doesn't even come with soy sauce. After serving us, he disappeared into the bakery, talking it up with some of the other customers. Clarice didn't get her soy sauce until after we had finished our entrees and were on our second helping of rice. + +Thankfully my chocolate pork came with a lot of sauce and I was able to dribble it on my rice. + +That's right, muchachos. We trannies prefer blood on our rice. You think about that the next time you try to tell us what bathrooms we can use, amigo. + +I couldn't taste the pork. All I tasted was the blood. They could've just dumped a quart of blood on my rice and called it a day. The texture was nice though. + +Clarice wasn't as fortunate with her dish. While I've tried to stay away from beef (it's enough of a commitment to keep my vegetarian brother off my back but not interfere with my eating habits), I had some of the Bistek, and it was passable. It reminded me of beef jerky, with its dry spicy roughness. Good, but not sure if that's how it's meant to taste. + +Moral of the story: Clarice's entree did NOT make its own gravy, which made eating her rice a little inconvenient. + +And seriously, JUST rice (really good rice, but seriously, how hard is it to make good rice)? Even my neighborhood so-poor-it-steals-its-recipes-from-other-restaurants Chinese place gives you an eggroll or wonton with your meal. + +As the place is so fucking proud of its desserts, we ordered some. Clarice got the Creme Brulee and I got the mango tart. That fucking guy was in the middle of bringing Clarice her spoon when he caught the attention of another customer, so we sat for a good few minutes waiting to dig in. In the meantime, I managed to come up with a name for the color of the filling in my tart : burnt earwax. + +My tart was about as tasty and edible as that term would imply. + +Clarice's creme brulee was good, albeit a little cold by the time that fucking guy came with her spoon. + +On our way out I learned that the bill had to be over 10 dollars before they would accept debit. + +After I imagined beating every one of the staff near to death with a rolling pin, I got an eclair to go. + +What I got was a bunch of whipped cream between two pieces of rock-hard pastry that you'd get at Fry's. Essentially, a diabetes sandwich. + +Casa Filipina isn't good. But it's not bad. + +That's the proble",review,o1HQEND6cg-4SK0Z1ASBMQ,7,6,9 +7U8TYNW4Mvx6m3zexsO0sg,2009-05-24,6k10WTLws4YhK9h3evIJkQ,5,"""Fine dining"" is not just a setting. it isn't just good food. It is many things that add up to an attitude. I have had the opportunity to find it in different cities. I found it the other night at the Stockyards. + +We were seated by a host who took us to our table and when we were properly seated gave us menus. Our server came to the table and introduced herself and said she would return shortly. It was nice to have a moment to chat before we had to think about ordering. When she did return, our glasses were filled-not something we should have to wait for her to do when the service is right. She knew the selections on the menu and all available options and could make sensible comments concerning them. Our salads were served promptly by two additional people and were as fresh as I could ask for. When my friend was finished with hers they asked if they could take her plate. I was pleased when they didn't ask me if I was finished with my salad and could they take my plate. If I'd been finished I could have told them. We were able to continue our conversation uninterrupted as I finished my salad. The salad plate was removed when it was appropriate and we had a few minutes before the entrees were served. All was in keeping with a relaxed dining. At no time did I have to think about having drinks refilled, it just happened quietly. + +After a few minutes our dinners were served by the two gentlemen and our server appeared to make sure they were to our satisfaction before we started. There was no room for error there that couldn't be resolved before we started. + +My friend had ordered a small steak. My friend is quite elderly and Kathy, our server, discretely asked her if she'd like it cut for her. A potato also was served with her dish. I asked my friend which of the condiments she would like it prepared with. She look at me and said ""Prepared with?"" She didn't understand what I was getting at but Kathy did and was already reaching for the potato. She opened the potato and smiled while my friend said a bit of everything. One doesn't go to a restaurant like the stockyards to have to deal with opening a hot potato and preparing it. When serving is done properly, these things don't have to be discussed. Kudos to, Kathy!!!. That is part of the fine dining experience. + +I had a full rack of ribs which were so tender the meat fell of them. The sauce had spice to it but not so strong the flavor of the meat was concealed. I also can tell you that unless you are a big eater, half a rack would fill most people. My friend said, ""Yummy!"" and I agreed. I am used to getting a finger bowl for clean up after eating, but I can't complain about the two extra napkins and several ways of cleaning my fingers that accompanied my ribs. + +My friend let them know we were celebrating the 17th anniversary of my 39th birthday so they served me a free desert. I can assure you the pecan pie is a delight! Warm and laced with brandy, it was perfect way to finish our dinner. + +The stockyards, I might mention, is not inexpensive, but what an enjoyable way to spend your money. They do offer two dinner specials you won't find at most other places. They do have a luncheon menu that has lower prices. Don't expect chrome and music that is a bit to loud as many of the new places offer. Instead, just enjoy a time and place where they pamper you as you should be when you go to the Stockyards. + +I don't consider the stockyards to be a place you where shorts and Nike's, but of course there are always a few. I would say a nice shirt and slacks at least.",review,4sIK_74UwkKU9YQXIfgCdg,2,3,0 +vnffHkFJbmd-J3OaBbK2Eg,2011-03-07,YGqmScDIiEtlFtpqwnE-lw,4,"Found this place online and we checked it out on Saturday night. It was empty when we got there around 6pm so we were a bit nervous, but the hostess told us it was a late crowd usually and the place was pretty full by the time we left. + +The food was superb. One of the reasons we chose to dine here was because they offer grass fed organic meats and we split a burger that was very tasty (in fact, neither my wife or I had eaten beef in almost two years!). We also split a great salad with a well cooked Ahi steak and had the bruschetta as well. The whole menu was interesting and we'll definitely be back. + +The real surprise was the beer selection. Wow. I had a tough time choosing, and then the waitress told me about the special and it sounded so good I couldn't pass it up. It was an agave wheat beer from Breckenridge and it was very tasty. + +Great little neighborhood place and we'll definitely be back. Hope it sticks around as the spot has had poor luck with restaurants.",review,ctZ2rmNfCEUXSmwS90wrYg,0,1,0 +l0c2pmxGYvCfeaCRiYGAvQ,2009-05-01,ml2CpWn34S6JjWG0Kc7Tag,5,"i love this place. i can always spent all my money here on something. they have great sales racks, but also reasonable clothes not on sale too. the atmosphere is always chill and the people working are super friendly. Also if you get bored of shopping for clothes, they have random stuff like board games and books you can buy.",review,HFIuj45MwNx-cJkTamazSQ,0,1,0 +_RBUU1y4yJrK0SPAd8z0-w,2009-12-11,Ve2uqRzmNYoOwmYpb0tV_A,4,"Came here last night with the girlies to satisfy our craving for Indian food. We've talked about this place for a while, and I'll be damned if I was leaving AZ before stopping by this place! So luckily, I was able to convince one of the girls that finals are not as important as saying goodbye to me over a plate of curries. + +We got their around 8 and the place had a good crowd. We were the only white girls, so we know we were in for a good meal. Going over the menu took us a while, because one of the girls had no clue what she wanted, and the server was polite enough to let us take our time. + +Before we figured out what we wanted for dinner, of course we had to figure out drinks. So we all order and still continue to peruse the menu. Then our drinks came out...huge plus for this place right here, they were huge! My gin and tonic was in an oversized cocktail glass and my friend's Chardonnay was filled to the brim. No skimping on alcohol here! The waiter advised us the drinks were strong, which I was fine with but my girlfriend needed 3 more limes to take hers down. + +We finally end up decided on dinner, with the shahih paneer, chicken saag, and vegetable korma, and an order of garlic naan. I was a little unsure about the paneer, but my girlfriends swore by it. + +When the food arrived, we were excited! Everything smelled so flavorful and the naan was huge, good thing we only got one order. I loved every single bite I had at dinner, and the feeling was mutual across the table. All of us ate beyond the point of feeling full, but we couldn't help ourselves! This food was too good! + +Luckily, we were able to stop ourselves and save some food to take home. I got the chicken saag and I am so excited to have some for my own brunch. Mmmmm...I'm getting hungry thinking about it now. + +Overall, $20 a person including tip, with strong drinks, good food, and extras to take home we were satisfied.",review,Lp_Ykqfbv5Q-oyGYlMGJRg,4,5,5 +9OPheVf5o8sRcRHxJDl4-A,2010-12-15,LIsB9vw9uAzS0DKT10uWEQ,4,Great martini's and they even have Absynthe if you're looking to get crazy. Great looking modern style bar and lounge.,review,Ia9D08hVd-RlqN1-wBo_Lg,0,0,0 +VS6eeO_IxSW0pQOWPtXSEg,2008-12-05,GuVqHfZH_nwAibNEyYagig,3,"It's like a 50 inch LCD TV mounted in a crack den. + +Something nice located somewhere shady. + +I ran to Circle K across the street for a late night Diet Pepsi (yeah, I know how to party) and I felt like I was on an episode of ""The Wire"" about to do a hand to hand drug buy. + +Hotel is decent. Nothing special on the outside. + +Bed was damn comfortable so I guess that's all that matters. + +Free wifi throughout but good luck getting anything over 1200 baud modem speed. (my inner nerd coming out) + +Make sure you stay on a Wednesday, there are free drinks and appetizers in the courtyard. + +Bust out your flack jacket and sprint to the lobby and you'll be all good. + +Free shuttle to and from the airport. + +Hood.",review,Y7CLCx9zWb8UzZKaIb7QmA,4,3,5 +AydLCqa6veiY7-uYEczEGg,2012-08-22,_hc3vJz9Okknb75d7gVUfQ,5,"I spent almost 2 years searching for a good nail salon in the North Scottsdale area and I will never go anywhere else again. It is very clean, the girls are very nice, and they always do a really good job on my nails. They are upfront about their pedicure prices - they hand you a price sheet that tells you exactly what you get for each upgrade - instead of pressuring you into getting something better and then upcharging you. I think their prices are super reasonable as well. For the best pedicure and a french gel manicure I pay $70. I usually make appointments (Sunday mornings are nicely uncrowded), but I've also walked in and been taken fairly quickly. I love this place and will recommend it to anyone who asks!",review,aAdWc-4NhK0js0szR6ku9w,0,0,0 +lVkDZZ8sTafPlq7f1i5row,2011-05-01,smiy4CurSUDSGdaETNyY3w,5,I love vegetarian restaurants! I support them 200%. So glad this place exists in Phoenix. The quality of the food is beyond excellent. The meals are creative and super tasty. Never disappointed. The only qualm I have is the service. It...is...slow. Whether it's the time it takes for my meal to reach my table or the cashier taking my order to ring it up correctly. The length of time it takes should not be so long. Prices are a bit steep but most vegetarian/vegan restaurants are priced a bit higher than others. I don't mind paying more for quality. Overall this place is a favorite weekend visit. I can't wait for my next meal at Pomegranate Cafe.,review,D6f_3rWBlSGx1lvt1g49AA,0,3,0 +PmPOuRvuN3CoNOi1nBj_TQ,2012-07-24,DpzCyAUpygzGQxfkUROQdQ,4,"Thoroughly enjoyed my recent date night at Pappadeaux. The Hubs and I have been dying to try this place out thanks to all these amazing reviews on yelp and boy are they right. The place was packed on a Saturday night at 5pm, which is a good indication one is in for a treat. We made a reservation just in case, since we were going to see a show later that night. Our waiter greeted us quickly and was very friendly and upbeat. He told us the specials and took our drink order while we looked over the huge menu. + +In the end we got the lobster roll appetizer, halibut, and bread pudding for dessert. Everything was soooo... good and very filling. The lobster appetizer was full of flavor, especially the sauce it came with. The halibut was cooked perfectly and the grits on the side were amazing. We loved the bread pudding, which was HUGE for the price. I wish there weren't as many raisins, but all in all it was great. + +So glad to have found this place! I know it's a chain, which I usually don't love, but the old-school vibe and good quality/quantity of food made up for that. We'll be back for sure!",review,f1-pIw_p0ifzu03TXjPRiw,0,2,0 +iDoigI3605ixHl_qHly3Tg,2008-10-23,XJqJCxM5h_Dl-Kzk44pMoA,5,"Ruth's Chris, the only steak house I can fully endorse. 500 degree plates make the sizzle a memorable experience. The Ahi tuna appetizer is also a must have to start the meal off right. While every salad they have is a can't miss, I'll go there just to get the Chop Salad.",review,6uNeagh9ljbwV8XRUn_cYA,1,1,1 +WJ5mq4EiWYAA4Vif0xDfdg,2010-03-24,dKEvK8eAssyJ03qHrRjU_g,4,"This place is pretty fantastic. I actually felt like I was in a real life city when I was sitting here the other day on my laptop looking out the window. I sorely miss living in a real life city, specifically Boston, so places like this make me super happy. + +Staff are really cool and helpful. Its spacious and clean, and I don't feel like everyone in the place can see my screen, not that there is anything weird on there... okay there probably is, but bottom line is no one else is staring over my shoulder making me feel self conscious about shit I enjoy looking at on the internet. + +The coffee is delicious and strong. Nothing worse than a weak cup'o joe. I had a pot of their Orange Detox also, which wasn't terrible, but I could tell they used tap water.. I loathe tap water and can immediately tell a difference because I think the tap here tastes absolutely fucking disgusting. I still drank it though, because the chick promised me it would help me feel better.. Guess what, I sneezed all night. + +O'well. + +Another thing I liked about this place is that there aren't 500 hipsters or emo-assholes sitting around looking depressed.. maybe I was lucky that day because it wasn't very crowded at all. So yeah, I dug Lola, and the prices are CHEAP. Thankfully this is yet another groovy coffee shop in the valley that is there to help me avoid the Corporate Whore that is Starbucks.",review,v5k-__wHo2xPI25WO-dcQA,13,19,12 +MYj5f-QxtGeKlhVVx1RD4g,2011-02-14,_eoFiq0KTeF-o69nOR6uXQ,4,"This place is still really new, so they're still getting the kinks worked out, but it looks great and the film selection is awesome! + +I went there the Sunday of their opening weekend to see Metropolis. It might be a little confusing the first time you go, but you pay for your movie tickets at the bar. They don't have paper tickets yet, they just gave me and my date little stickers. + +The theater has 4 or 5 rows of comfy seats and a few tables in the back for people with drinks. Metropolis was in Blu-Ray and looked amazing. The showing went off without a hitch. They even gave us a free bowl of tasty snack mix to eat during the movie. I'm not a drinker so I can't comment on the bar offerings, but I think it's great to have a theatre showing rad independent and classic movies downtown. I really hope this place takes off, I can see myself visiting it often.",review,1PWFPOmqvLx3sGKuuKQr9Q,1,1,1 +r4AG1WXCRWkZKQctrcy9FA,2010-12-13,AGzmaG1ho9HtdRNS5MIvDg,5,"Place is always friend, and I LOVE THE PIZZA. It's by far my favorite pizza place. Sign up on their VIP newsletter or eclub and you get a free pizza on your birthday, get it for free and try it. Sounds good to me.",review,F1_EKp5Qc5u-m1o6NItJPw,0,0,0 +9Ep4sguv3HH_8lWyzSogjw,2012-11-29,8b6tha9AeIn7yLk7sqMOhw,4,"If you like a good burger then check this place out. They have so many options that you can choose from to make your own burger. I am usually not a fan of sweet potato fries, but these ones come with a dipping sauce that is amazing.",review,NDkStqTVh-sTDKtKIZkDxQ,1,1,1 +vARjqeIkSNsazHltujiq4Q,2012-04-03,db_iZdCzoJqISXpaa_Gx1Q,5,"Quite possibly the best place to eat in Mesa. Let me tell you what you are in for if you go. + +The CPC has taken these pilgrim pockets to the next level. Personally I would recommend The Royale With Cheese or the Shepard's Pie. The pies take a while to make so now would be a good time to order drinks as well. If you are the beer drinking type I would suggest the Hoegaarden it's the best I've ever had. If you are looking for something more stimulating you may want to try their Irish Car Bombs. Or if you are you are up to it go with both. + +When your pasty arrives don't touch the plate! It could be scorching bloody hot. Your pasty is probably going to take a few minutes to become edible as well, just stay clam it will cool soon enough. + +When you have finished eating get the apple stuffed pasty for desert. By now you will feel very full, I know, I do it every time and the only thing I can say is that it was worth it. + +Cheers!",review,EMkfNkrj5fXB_mGlkB416g,1,1,1 +ImVx220_Pcp2iB5uworODw,2011-11-15,NTyaLCYWUdBRmj0zm6MMgA,4,"So great to see the occasional NY style pizzeria pop up amid all these chi-town ""pizza"" impersonators... Sorry, but if you think pizza is cut in squares, or it's crust should taste like a stale saltine cracker, perhaps this isn't for you. + +A great street style joint with friendly staff and always a great selection ready to go, and conveniently located right next to AMC 24. Bring a messenger bag or purse and get some Vincents to go, and avoid the concession stand. Just sayin...",review,ClptG3R38wR_xM9XVR-bEA,0,1,0 +N1xMSUfv1GmfHGa9a3VuJw,2011-06-04,BXafEB9o2gHxFZxxXDW3TQ,4,"If you are looking for a serious pool experience, look no further than this hotel. You stay at this hotel for the pool and maybe the surrounding restaurants like Rico's, but especially for the pool. This pool includes: a lazy river, super slide, pool volleyball, miniature golf (yes, mini golf), a western village, at least three pools and plenty of hours of family-fun in the sun. Oh and adult kids are more than welcome too! + +This hotel provides the ultimate poolside experience, so if that's what you are looking for, this is your spot. You won't find ""so Scottsdale"" peeps with their stilettos and muscles popping out of their Ed Hardy. You will find down-to-earth people and families wanting to have a good time without worrying about what they look like in a bathing suit. + +The Squaw Peak property itself is pretty awesome too. I really think you could stay here and have a weekend's worth of activities without leaving the property. Squaw Peak Mtn is just a hop away and perfect for a morning hike, I've already professed my love to the pool above, they have plenty of restaurants on property including Rico's American Grill which is delicious and Hole-in-the-Wall which is fun old-western fun. They have a gift shop full of fun memorable items, they have a creamery, a general store with breakfast and snack essentials and let's not forget about the multiple tennis courts! As I said, this is a resort. This is an old school AZ resort. It's not frilly but it's fun and I think I'd take fun or frilly when it includes a pool like this! + +PS - summer rates are incredible and start at only $89 a night. It's worth it for a staycation or if you're in town for the weekend.",review,4ozupHULqGyO42s3zNUzOQ,6,6,3 +ZaS6zYn_Pb3QrGRZJfNyzA,2007-07-05,w20oGO8zTZIq9Zi_JXsxUw,4,"Before all of you band together to burn me at the stake, let me explain. I have a reason for wanting to review a chain such as Del Taco! + +I went here the other day and was shocked. The staff is nice. And I'm not just talking fake friendly. They were genuinely kind and seemed happy to be at work. In fact, the guy at the counter asked me how my weekend was, so in return, I asked about his. You know what he said? ""Perfect."" He said his weekend was perfect. I can't remember the last time I had a perfect weekend. Lucky him. + +The food is pretty good too and I especially enjoy their spicy jack quesadilla. My nachos did not come with any cheese though- not sure if that was a mistake or not. Just chips. False advertising. + +Anyways, everyone who works there was exceptionally nice. Why? This has never happened to me before. Was I their first customer of the day or are they really just nice people happy with their jobs? They must pay well there... Is the secret to being happy in life working at Del Taco??",review,0CMz8YaO3f8xu4KqQgKb9Q,2,2,3 +0K634ehk41ZRc4kj3NTAEQ,2012-03-28,tbCAL4A4TfnDJ37OfLMOtw,2,"I had eaten breakfast twice at the Chandler Chompies and loved it so I wanted my husband to try them. However, we went to the Tempe location instead. Much older restaurant (pretty worn) and it took some time for me not to be grossed out by the nasty overall smell of the place. My breakfast wasn't half as good this time and my husband didn't like his either - just boring and not repeatable. Hoping he'll give me another shot and we'll make the drive out to Chandler next time.",review,hV2mUNpH3K5BvOyEwP5a7Q,0,1,0 +F6BedoYgbAQHqwKX9F0zDQ,2008-11-29,c4WMKfH4gjj3hg5mcroe1w,3,"Just kind of there with nothing special about this convention center. And the Phoenix downtown area is pretty boring and sparse except for the baseball stadium right next to it with some cool bars and restaurants. When there isn't a game, this area seems pretty dead. + +Bottom line: Ho hum. Baseball stadium nearby is great entertainment option but can be a pain with all the traffic if you are trying to get out of the convention center area in the evening.",review,wZMqQMYM9GKyjK1oP0C6TA,3,5,0 +ilJiRYZgxjrEu2iexKu-pQ,2010-01-08,-LQKU7GKFbbboiwmx6buZA,3,"I decided to give this place another shot. This time around I was sober, and thus have actual memories. + +After grabbing a drink my friend and I decided to head out to the patio. A group of 3 guys graciously let us share their table since the place was packed. A short period later one of the guys pours his drink into the candle holder and storms off. I made a comment about it being his time of the month and I'm not so sure they appreciated it because they all left. Although, the most sober of the bunch seemed embarrassed. Whatever, free table, woohoo! + +Next table starts having a beer fight. I'm not kidding. + +I then started feeling really old. + +And overdressed. + +An employee comes by to clean up the empty bottles from my table and notices the candle holder full of liquid. I told him about the guy with PMDD. He made a little joke about the the guy being upset over my rejection of him. + +Final analysis- Patron has some cool employees and some not so cool customers.",review,rjlb-7-JcmM6fR64ZpyTug,5,5,8 +QnAzW6KMSciUcuJ20oI3Bw,2011-05-23,hkfR8InqFd5AaHx8wwmwHw,4,"I have been to this place a couple of times and so far each time has been a great experience for the most part. The food is awesome, and the atmosphere is fun and friendly (definitely family oriented, with a lot of outdoor seating). + +Out of the two times that I have been here, I have tried their fontina burger, the pesto chicken sandwich, the sweet potato fries, and the garlic fries. The burger was delicious, the chicken in the pesto chicken sandwich was cooked to perfection, and the fries were awesome (although, the garlic fries had too much garlic for my taste). + +The only downside is that this place is always packed (or at least the two times that I have been here). It was featured on the Food Network, so I kind of knew that it was a popular place. But the funny thing is that I thought if going at a later time for lunch and on a weekday that it wouldn't be bad, but I was wrong and the line was still out the door. Also, I kind of wanted to try their milkshakes, but the line was way too long to get back into (sort of wish they had an express line for desserts). + +Oh, and check out their restroom for a weird/funny surprise.",review,T511TDQxa_BpnKT6O4XtVQ,0,0,0 +CdWrHBOvTZ6i0Z37iFaV3g,2010-07-22,LaE4wNi81TIDtqFjSeBUFA,3,"This place has a lot of potential; I really want it to do well. I went there on Saturday night with my husband around 7 pm and it was jam packed. Good for them! We felt a little out of place since it was a much much older crowd, (in bad capris, shorts and flip flops...doesn't anybody make an effort anymore? This part of town, I guess.) Anyway, we had a nice booth, but it was directly across from the pizza oven, so we were quite warm. Pleasant server, good busser/foodrunner keeping our waters filled. We decide to try the Bruschetta for a starter and the Rib-eye dinner for two for $28...an unbelievable price. The Bruschetta was quite good (and at $6 also a good value) and with a nice mozzerella and balsamic drizzle...it was tasty. The Rib-eye's on the other had, were not so nice. But, I must stress, these meals were $14 each...what did I expect? The steaks were large and tough; my husband said his tasted old. Yikes. Mine wasn't that bad, and the potatoes and veggies were flavorful. Our thoughts, under the premise of ""if we were running this restaurant"", are: we would have offered a much smaller but higher quality piece of steak. Food for thought, Javino's. In our opinion, quality over quantity every time. As we were eating we were able to keep an eye on the drama with the staff...and watch how hard those boys in the kitchen were working! It was really busy, and they all did seem to work well as a team, manager included. At one point, a sweet, young server comes back with a couple of plates to the manager (I guess someone sent back there food) and burst into tears. Ah, we felt so bad! I hate it when customers make the server cry and if the food was no good how on earth is that her fault?! Well, major points to the manager who gave her a big hug and went to deal with the table. I was impressed. Also, live music going on... a very nice touch. We left feeling like it was an okay place, I liked better than my husband, but something was just kind of ""off"". Maybe they have an identity crisis? Are they a wine bar or are they trying to be fine dining? Either way, I definitely want to go back again soon to try something else on the menu. If for no other reason than how kind that manager was to the server. I have worked in the industry and have been treated like garbage in the same situation. So, kudos. Your staff looks happy.",review,Wd79xttTkXmaBLSOkwwDIQ,0,1,0 +AB7uOYIMVc_TbIcYR8np2Q,2010-06-21,6Xj0WxMEc581c-UaczZhkQ,4,"This is the only music store on my side of town and since I never can buy online early enough, is where I usually buy my reeds. The customer service is great and they appear to have a huge selection of almost everything a music student should need.",review,6OWHDbEq23f24Vki_veHBA,0,1,0 +xhwp_bACX0017Qxu8_AVbw,2012-11-18,wegf6OwzpKtA__H8_QiI1g,4,"Clean, clean, clean! Everything about this place was spotless. The food itself was perfectly adapted to suburban American tastes. Somehow even the Sweet & Sour chicken seemed.. extra clean. ::)",review,nbofxFWHORebBHh10OgYLA,1,1,1 +YJoph5UiUZ3BEb49vyFAuQ,2011-07-07,mwoOdGi6RoZYnbXMxKToyg,2,"Went there for lunch. Split a chopped salad and a deviled eggs. + +Large portions. Salad was a bit heavy on sauce, but I liked it. Deviled eggs had some truffle oil which made them pretty good. + +Burger was gigantic. Ordered onion rings that were just not good at all... must be frozen pre-bought, which sucks. Burger kind of tasted oily bland. Tried to add mustard, and it wasn't terrible, but for an upscale burger at $12 expected just a bit better. Companion had sweet potato fries which were much better. + +Service even though the place was dead was very slow. Not unfriendly, but they need to realize people that go for a mid-week lunch usually don't have 1.5-2 hours to eat. + +All in all, it wasn't a terrible experience. I really like the ambience... love the modern look of brick and blackened steel. + +But I'd probably be more interested in coming here for beers and drinks with a couple appetizers, than a sit-down meal. For a meal, there are just much better central Phoenix locations.",review,jvwnIG5wEjdOsqkYJgN29A,0,0,0 +jvvh4Q00Hq2XyIcfmAAT2A,2012-11-25,Zy46nPR8fom_iwaMTNduXg,3,"was super duper busy when i ordered. but then again, they were a fast food place, and i waited for my To Go order for 25 minutes. They have 5 or 6 people inside their kitchen. And a lot were waiting for their food cos there were some mixed up. Will go back though cos I know those things happen when it's a busy day. The food was bomb specially the hotdog!",review,06g-gOtLHg-WG2-5i4aT_g,0,0,0 +DHk8is9rvfnATsW1AudWQg,2011-03-18,oQ9_M-7-EUDVU8E5aRoOfw,5,"We've been going to Santisi for close to 10 years since they are just around the corner from my house. We've never had a bad item here. It's a fun place to go and the food is great. We always order pizza which is consistently good. Their salads are excellent - all their ingredients are very fresh and there's enough for two meals if you're a lighter eater. And the wings are always excellent. + +We've always had good service and the staff keeps the beverages coming. It's a great place to watch a game - if you can get in! Friday and Saturday nights are so crowded we often grab a beer while we wait for our take-out pizza. The parking can be a challenge since the stripes are laid out weird and there's a dollar theater next door. You can park in back (the side toward the freeway) if there's no room in the front. + +We moved away in 2006 and came back in 2010 and Santisi was still there, and as good as ever.",review,lRDGPTaQVLKe4NcGom-0Pw,0,1,0 +R2IWbpUgJQ3NRRjKQy6O_Q,2010-11-09,80SKZ7vdPks9KzT2wKTg5Q,5,"Oh Chipotle, I love you. Healthy options even when craving Mexican! My favorite is the chicken burrito bowl with fajita veggies. Served on a bed of rice with black beans and pico de gallo, with some spicy corn thrown in....ahh my mouth is watering already. I've been to many locations, and all are clean, food quality is excellent, service is friendly and professional, and I always leave satisfied. 5 stars to you, my friend.",review,zqnAdayPsak5dbLF2gEvNw,0,0,0 +Mng1FUcW-xRSdsDkowQm2Q,2010-01-31,hXp0JsuwJHJlnT-340Gvtw,4,"I love this place, that is, the selection and randomness of the food. However, the prices I'm not so keen on. + +My sugar snap peas were the same as Safeway and were fresh, so I'm sold on that. + +It's also the only place I can find my Kettle brand chips in the flavor I crave, so I'm sold on that too. + +Now if only the prices could reach my income level, that'd be stellar.",review,T5mD6ggC7fh48QgXR0LevA,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-01-31,tVqlvc3klRmKMdCFfzYjtQ,4,"My review is based on Terminal 3, Delta! Getting checked in at Delta was quick, security line was quick, and returning picking up my bags was quick too! The signs are easy to read and easy to understand. I was in Nassau, Bahamas' airport, the signs pointed everywhere! Crazy!!",review,_PzSNcfrCjeBxSLXRoMmgQ,2,2,2 +rlQCMHmaMjPzEh3BeaDkIg,2011-06-28,cy1lA0PTgjblLq9oFrdfvA,2,"i'd rather go to amado's! + +the only thing that's good here is the bean dip, and i'm only saying that so that i have something nice to say.",review,V9vStLuNc4aqZO_GK2VTuA,0,1,0 +-AAig9FG0s8gYE4f8GfowQ,2008-06-19,lmqKpp9FDFo5EJr3XeEiBw,5,"These are simply the BEST sandwiches and salads. If you like your food (a) locally grown; (b) freshly made; (c) organic/all natural; and (d) yummy - and who doesn't? - this is the place for you. + +Now, admittedly they have something of a soup-nazi routine set up and if you walk in and don't know the drill, it can be confusing. So pay attention: +1. Look at menu. +2. Decide what you want. +3. Wait your turn to order. +4. Order (give your name). +5. Wait your turn to be called to pay the other girl for the order you placed. +6. Pay her. +7. Wait until your food is ready. +8. Leave with your food. + +Note that there is no place to sit inside - so you can either sit outside, or, (if it is 157 degrees out that day), see if you can find a place to sit over at LUX, they are very welcoming of Pane Bianco diners. + +It's all good.",review,pk4y8PJdccJysYBpBA-gcg,5,5,5 +8nbmu9fPdyNH0eRByCjRBg,2008-08-03,5r9GzwJrM6bpdpXsTu6y_g,4,"This is a huge store and love that the clothes were sized. There is a separate room for housewares and a bit messy. Some of the housewares stuff was dirty but great deals. They were running a 50% sale on all items in the store, blue, red or white. Own parking lot.",review,Ouus3lC3Xk3YRGx4ptd_4A,2,1,0 +VY_tvNUCCXGXQeSvJl757Q,2010-10-04,mxS9VkpjPJy8lZBz66aByw,3,"After a couple recent visits I can't help but notice that Mellow Mushroom just isn't the place it was when it first opened. I remember enjoying full pints of St.Berardus Christmas Ale at happy hour prices as well as other ""high gravity"" options that were served in normal glasses. Now they're in smaller glasses that look like a highball or rocks glass, but the price isn't smaller. When I go in prime dining hours somehow 3 of us can rack up a tab exceeding $100 and it just seems a bit extreme for pizza 'n beers. This isn't the Biltmore or Kierland. It's a very middle class area and I'm not sure how the prices are a good match for folks who live nearby and dine here. + +But it's not just the prices I guess. It seems like a lot of the servers are not happy and give attitude, and I'm a very polite person in public so I know it wasn't me. + +At the bar last winter I've chatted with a guy who knows a lot about beer but lately it seems the bartenders are just attractive females who don't really know craft beer, and the overall demographic in the bar isn't the same. Call me an old fart, but I'd rather talk about West Coast beers than have all the eye candy. Also they have all these wonderful beers but it seems like everyone around me was ordering Coors' Blue Moon. Why can't those people just hang out at TGI Friday's?",review,joIzw_aUiNvBTuGoytrH7g,2,4,0 +SDwYQ6eSu1htn8vHWv128g,2011-02-07,mKaYsddLjeY8GKlqP9Gczw,4,"I'm embarrassed at the number of times I've eaten here since it opened. i used to live half a mile from here and was one of the first people in the door. The bruschetta is the best in town--period, end of discussion. The salads sometimes aren't my favorite, but there are plenty that are delicious. I'll admit that the cheese plates also sometimes leave me wanting, but that is a rare occasion. It has been interesting to see the wine selections evolve over the past several years. When it first opened, Postino seemed to have nothing above $35/bottle, and that selection was good. It stepped up its game in the past two or three years and now boasts a more diverse and more expensive selection (e.g., Sea Smoke pinot noir). I appreciate the addition of even better wine, and am happy to say that the glass list remains reasonably priced.",review,Mn9YYbeY_ydJ7NABALyYIQ,0,1,0 +U7jOpLoLXYphWFqS6JO8mQ,2012-07-05,aZhqHg0l2_FlyTvilCySBA,4,"Always packed on wing night, which can sometimes make for slow service, but that is to be expected. I love their wings, even if they are kind of small, but who can complain for $0.39? Pizza is good too. And the pizza cookie dessert, omg, druelz.",review,mECTORoeUYDA5ryP-vy5cw,0,0,0 +jfDBaBgwINrGYAo8p2MJ4g,2011-08-02,3-lKMNbXFrfLf82zfbXJLA,3,The noodles are delicious here. I had the vegetarian spicy noodle. It doesn't come with anything but noodles and the sauce. It would be great if they could add some veggies in there though. So you chose the type of noodle you want and then the flavor. The prices are super cheap and the service is fast. The portions are huge and I could have eaten the whole plate if I didn't stop myself. I am curious to know if they use MSG because it was that hard to stop eating.,review,5gmnzvjYprzK21Q5awYF_Q,0,0,0 +C7UF87fLEJBA4Hkrk24k6A,2012-02-09,Jzzy_q55Eq65MFzFSsOMTA,4,Grocery store was within walking distance for my hotel stay. Picked up my food stash for my visit.,review,0viQKqum79DOfIARWm77Yg,0,0,0 +R3sbDS0YcJDedSmUjwE48Q,2012-10-24,bVfW81IYD6lUWV2cMqfOOA,5,"Delicious, clean, great service! 3 hours later and we are still talking about how delightful this place was. We had the pulled pork and chicken sandwich - both were moist and fresh. Dinner for 2 for 20.00!",review,POvdnaJ4O4mQo6Y0NzgESw,0,0,0 +jgbEZzERVI4yvAAtXWW93A,2012-03-26,2uPnzLVwj3k0lABKzjfOcQ,2,"Just o.k. We had the Italian Stallion, it tasted very good, but between 2 adults left us pretty hungry. For 14 dollars, it seemed to be more of an appetizer.",review,dHl8uHC2_NN-DiUr_QuOwQ,0,0,0 +OllL0G9Kh_k1lx-2vrFDXQ,2010-07-30,STRQ2YwE5rgg6K-Ws4f1Ng,4,"I was out shopping with my 16 year old son, and we decided to stop in and try America's. The delightful young lady behind the counter highly suggested that we try at least one thing with the pastor filling so we ordered the meal for two for $20. That comes with chips and salsa, two burritos, two tacos and two drinks The carne asada was very good...but OMG...the pastor was amazing! We just wished we had ordered the burrito with the pastor and the taco with the carne asada instead of the other way around. The sweet young thing kept checking in on us...we were there at 3 in the afternoon so it was quiet...but gosh, the young girls had just been fawning over us all day! On the way home, I looked at my kiddo and realized he's pretty darn good looking...so maybe that explains all the delightful customer service that day! Anyway, I can understand some of the complaints about it being a little pricey, but I think you are really getting a quality product and that is worth it to me. Plus, I thought the burrito was especially meaty. And as a carnivore I totally appreciate getting my meat on! Cute place, yummy food, fun day out with the teenager. Really, you can't ask for more than that.",review,Wd79xttTkXmaBLSOkwwDIQ,1,1,1 +6nH0DLfofTytTeZJSkprgw,2012-07-21,7PxXWoR2pGqz9lb0g2XxYA,5,"I love this second location in the Royal coffee series as much as the one at the market! + +Since it's summer - I thought I should mention that the iced coffee is so smooth and amazing that you don't even have to add anything to it!! Don't believe me? Ask for a sample next time you are here and I guarantee you will be astounded! + +A quiet and chill atmosphere if you want to work/study/read as well as a great place for delicious grab n' go coffee in the Biltmore area!",review,wIi2J1UGRB2G_3vu5eNK3g,0,1,0 +ZD8xAsXsj8FRunJOP4fSrQ,2008-08-02,3JnlzxUVmAz0qt7_9jjV_g,3,"Restaurants that are open 24 hours play an important role for certain kinds of people - ones that work odd hours, people who like to eat at non-standard times of day, and, of course, people who are out late partying and want to put something in their stomach at 3 am. Taco Felix is a godsend for anyone who falls into one or more of the above categories. It provides decent and affordably-priced Mexican food 24 hours a day and best of all, it has a drive-through. + +My husband and I tried this place for the first time for lunch today. We went at a standard time of day because this place is just a few blocks from us and we wanted to see if it was decent before we tried it out one night after midnight after karaoking it up at Silver Pony (just a block or so away). We ordered 4-5 different items - rolled tacos, bean tostada, carne asada taco, quesadilla supreme, and a chile relleno - and a large soda, and it only came out to $12! As a side note, the credit card receipt didn't provide a space to leave a tip, so you should bring a few bucks to thank the employee working for their efforts. + +The only major downside was that it took quite a while for our food to come, since the drive-through was hopping (lots of people getting menudo after a crazy Friday night, I'm assuming) and there were only 2 chefs and one server (who had to take and serve both drive-through and eat-in orders). However, the food was definitely decent and the portions really sizable, and we felt that it was a great value for our money. Now that we know Taco Felix serves good food for good prices, we won't hesitate to come back during one of those unusual times - to get a chorizo/egg burrito on the way to an early morning flight, to grab a mid-afternoon snack when most other places are closed, or to fill our stomachs late one night after a few drinks.",review,HOleI3jz1MLNUJ6cc1x0Pw,2,3,2 +1f_DXcxpAKfILKK6cDPLxQ,2010-03-01,URTKHZUVN7-KZltLQ2XfMA,4,"It takes a lot to impress me. I hate most everything unless a place is so awesome it blows my friggin' head off. Sign of the whale accomplished this task. Allow me to elaborate... + +The first time I went here, I received awesome service. Did not have a bad thing to say about the place. Was waiting for my party to arrive and sat by myself. The bartender was awesome, started bullshitting with me and making me feel more than welcome. The owner is always walking around the place, making sure things are cool with ALL of his customers. Seriously, all of them. The guy kind of reminded me of Eugene Levy from the original vacation movie. I almost expected him to try and sell me a Metallic P. Anyway, the guy was cool as hell. Making sure everything was good with our food and drinks. + +Now the drinks... Wow. They don't cheap out on the pour with these bastards, and they are not overpriced for what you get. I have no complaints about the strength of these things, and that is always my first test if a bar is worth a shit. if you own a bar and I have talked shit about the strength of your drinks, I invite you to go to sign of the whale. I practically challenge you, like we should meet at the flag pole after school challenge you. Let them show you what having a dick is like and how a drink should poured. I hooked the bartender up on the tip, he deserved it. I would go as far to say that I would almost take a bullet for that guy. If I had a vagina, I would probably offer to father his children. Well, that isn't true. If I had a vagina, I would spend all day looking at it in the mirrior, but you understand what I am getting at. You are as sexy as a Ferrari, good sir. + +The food... Damn. Goddamn. Who the hell is the cook there, Emeril?Only had appetizers because they were on the cheap but between three of us we had 4 orders of appetizers and left full. And I am fat. Not quite Paul Blart Mall cop, but more of a Corey Haim 2007 era. + +Regardless, want a great place without giving you any shit and keeping you drunk for less, hit this place up. It is like a high priced hooker for half off, you can't go wrong. The only gripe I have about this place is they seem to be a Green Bay Fudgepackers bar, but I guess no one is perfect! + +Hit this bitch up.",review,KgnQz4WFT892AXmimnP4jg,0,0,1 +7UAAkWZJnnHIpGdG0JfXqg,2010-01-22,TWHcWgTz_2f_U1_FXV-OJA,4,"4 stars because they don't take credit cards. Really? In this day and age? Yogurt and shakes were good, but not the best I've ever had, but a solid 4 stars.",review,UPtysDF6cUDUxq2KY-6Dcg,2,2,0 +_jbeTDw6XSuvLaR1V_z8jw,2012-12-04,UM1pkMuqEB8sRFYbrbWjQw,5,"TIP #1 to Mesa-Gateway fliers: This is the ONLY bar at the airport, so live it-love it. +Food is great. The burgers can be made low-carb - especially great this gurl! +TIP #2: Food can be ordered to go...",review,ZXCIIPlnGZtnjPacI1Nz2g,1,1,1 +IKDPP8onhaxbM12drBWCKQ,2007-05-24,A-drtNIHmzknlD825OhCdQ,4,"While doing a bicycle ride to the Orange Table, I pointed to a friend that LuLus Cupcakes was accessbile from our bike path. She immediately exclaimed- ""we are SO there tomorrow!"" + +Today, I get a phone call at 4pm, saying she is picking me up to go get those damn cupcakes. She was serious! Since I had off and she got off early, we were able to visit the holy mecca of cupcake land. She picked me up in what may be one of the most ridiculous blue convertables known to man and we zoomed up to Scottsdale, blasting bad hip hop, psyched about individual iced cakes! + +Upon arrival, the space was sparse and very IKEA-ish. Pinks and lime greens dominate the palate. To the right of the counter was t-shirts, rubber duckies and other merch. They do have a brown with orange stripes guy shirt...in XL. I guess big men love cupcakes! + +But the real star are the cupcakes themselves...lovingly displayed under glass domes. Carrot cakes, german chocolate cake, mocha chocolate cake, blonde (vanilla on vanilla), chocolate on vanilla, and the special of the day key lime....oh man. MERCY. I kept dodging between the carrot and the mocha and went for the Mocha. All natural ingrediants and VEGAN sprinkles! (But very much all dairy icings, btw). Our lady, I think Melissa, was super helpful and even offered samplings of cupcakes to help us decide. She put each individual cupcake in a plastic bubble and in a cute lime green/pink dotted bag. She noted they do have mini cupcakes for events (OMG) and I would totally splurge for those suckers. + +The only real negative (besides times..I mean if this place was open late, it would be HEAVEN) was the lack of drink choices. Coffee, milk or water. Um..I mean, I dont knew a bazillion options, but even tea would have been nice. I chose hot coffee which was fine. But iced coffee as an option would have been kick ass...or lime rickeys! OMG! + +As an FYI, you can leave the strip mall complex and head down to the park and eat your delectables under a shaded tree on a park bench over looking a ""pond"" like we did. I savoured my 2.95 cupcake, and the icing and cake was perfect. I cant even describe how yummy it was. It was worth every cent. And they arent gigantic, so you feel perfectly satisfied with your cupcake. + +100% Natural, 100% Naughty is their logo...LOVE IT!",review,mfvezpz6ohS0NQk3DZdvqQ,11,9,2 +OVGz4ljvfIslSFwgDEpw-Q,2012-06-05,csY87g-hqeBxwWhYsUMX1w,5,"Truly a great owner who cares about his customers! I highly recommend a visit if you like one of a kind, quality pieces....young, yet classic, tasteful, yet funky. + + + + + +""",review,W-W3uyV66alw5FJWFytqKw,0,0,0 +ElqD819zpmOryvsLuzv-Mw,2009-07-01,RNW4dm1ORvpp1i1akmwjlA,4,"This is my second time in Chandler for work, and I've been here about four times. I've basically come here every day during my visits. It's a great place to have a casual meal and get some more work done. I like the food and the friendly service, and also refuse to pay for the wireless in my hotel room (even though my employer would reimburse me for it). Plus, I like the relaxed, community-esque feel of this place. + +As for the food, I'd recommend the Tuscan Chicken sandwich - the Ciabatta bread it comes on is really quite delicious, but make sure it's fresh. salads are simple, but pretty good, and everything tastes fresh. The chocolate chip cookies are to-die-for. + +The people who work here are very friendly. One guy was particularly helpful and helped me as I contemplated for about five minutes what I should get. He then came to check how my food was, even though this is a self-service type of place. + +I would not recommend the half-sandwich half-salad combo if you're really hungry. Somehow a whole sandwich seemed more filling to me. + +Even though I avoid chain restaurants, I really like this one! Maybe it's because we don't have one in Northern California, so it still makes me feel like this is ""something different"".",review,7jWH31u9tWQUeNAWnwakkg,0,0,0 +pwpl-rxwNRQdgqFz_-qMPg,2009-07-22,wtoqflE7K4XIx5njgt73EQ,5,"I'm so in love with this place :) I tried the pepperoni pizza and I was AMAZED. i love that they have a fresh herb/vegetable garden in the front. It's all about the FRESH ingredients these days. I can't wait to go back and try different dishes. I'd like to try the cheese platters :) mouth watering as we speak. going again to day so I'll keep adding to this review. STAY TUNED! BTW, the decor reminds me of the VIG but definitely more spacious dining area.",review,2qKgObPOV1kDl6U08Mjxyg,5,5,5 +Qxeh_4jjc9GfY5kSA8qwQA,2010-10-08,KdZs2KdlfU8nEUa6GHdKEQ,1,"This place was just... okay. First I'd like to say that my bridal consultant (don't remember her name - sorry) was really nice and helpful. But to me most of the other saleswomen had ""desperation"" all over their faces (don't know if they work off of commission, or if the higher ups are just slave laborers, or what, but I'm sure some of them would've killed for a sale). I found a few dresses I liked, but they were way too high pressure for me to be able to make a solid decision on the spot, so I decided to wait on it. I ended up finding a dress I liked better for about 1/3 of the price somewhere else. I notified David's Bridal ""thanks but no thanks"" about 6 months ago. To this day I still get calls to my cell phone asking me to ""come back in and try on the dress""... they're like the telemarketers of the bridal world! So annoying. Plus their accessories are so expensive, and very cookie cutter. I'd go somewhere else, unless you're new to this and need some ideas.",review,sMIOqXFpm6XuBlaokNdpAA,0,1,0 +7YYD_agS3Kb2sAx9JPkQEw,2012-03-20,fAk-2RT5xat9MobuV-t_Aw,4,"took mom here for a visit on friday. overall I like queen creek olive mill. I like that you can enjoy a meal or snack outside. I like the stuffed olives and even though i didn't do the tour this time, i think that it is a great idea. so, i have to say in general I'm a fan. + +with that said.... mom and I had lunch already but the food I did see did not look promising but we did enjoy two small gelatos ( $5.00). I wish they offered some complimentary bread to sample the olive oils with. Its a little difficult to find but very cute place to take your mom or friend or anyone who likes olive oil!",review,fNfLXX_ce2TQPrdHCqPzZQ,2,3,1 +IM-9thHqQbBK5tX5MfTzBQ,2007-09-02,ku6t_n29OWH87mddUeTLzA,4,"Food? Awesome. Service? Sufficient. Layout? Not the best. + +We stopped into Chompie's this past Friday morning on our way out of town for the long weekend. My husband and I have this obsession with breakfast bagels - in particular, breakfast bagels from one amazing joint that makes the absolute best breakfast bagel EVER in our college's hometown. We are always searching for a place as good as Bodo's...well, even 3/4 as good as Bodo's would do...and we never find it. Bodo's is about the most efficient bagel store on Earth (literally the line of 40-50 people is serviced in 10 minutes) and cheap, too! + +So, we decided to give Chompie's a whirl. I don't love the location - like everything else in Arizona, it is tucked into a strip mall. However, there was enough parking and we found it just fine. When you walk in, you're a bit confused as to where to go. Then you realize if you want to eat a full service sit down meal, head to the left - we didn't want to do this, but the food that I was eyeing from afar looked good. To the right is their bakery, which has some pretty appetizing cakes, cookies and desserts. Then there is this counter where you deduce that you order ""to go"" meals. We were overwhelmed by the menu but managed to pull ourselves together in time to order. We both had that initial panic attack of ""oh crap, I have never been here and the menu is longer than a 5 year old's Christmas list and I don't even know where to start because suddenly I feel like I can't even read English."" Deep breath. It's not actually that overwhelming, just a tad unorganized. After ordering, we were instructed to walk all the way across the bakery to a random counter to pay. It was so random the way they had it set up, but we did as we were told and then we waited. + +My husband's sandwich took a while to make....again, I don't know how Bodo's does it, but Chompie's is probably 4 times slower. Or is it more appropriate to say that Bodo's is 4 times as fast? Whatever. Either way, Bodo's has the breakfast bagel process down perfectly. Waiting was fine, though...we weren't in a rush. When my husband's warm sandwich was finally ready, we got our stuff and then headed outside (there is nowhere to eat inside if you don't want to have a full service meal, which is one complaint I would make about this place). Who wants to eat their bagel outside when it's pushing 110 degrees? Not me. Even if I am under a strip mall canopy that provides some shade. + +Anyway, his sandwich was actually really tasty - warm and fresh and really yummy. My bagel was not toasted, which I had requested, which was slightly annoying. However, the bagel itself was very good. We will definitely be back for the food, and I totally recommend this place for grabbing some freshly baked bagels or desserts or whatever. They do have a deli counter as well (meats, cheese, etc). Our breakfast was less than $8 without drinks - fair enough. + +I just wish that the layout were a little better and that it was more efficient. I also wish I could have eaten inside. Next time we will likely just do the full service thing. + +In the end, it seems that nothing will ever compare to our beloved Bodo's in Charlottesville, Virginia.",review,9FbgqZ5u9WTLAs28nNafIQ,2,2,0 +vxPPpj5jJKO8DtapF5S-NQ,2011-04-18,xrhUrlpNKIaAAOYcjHm2Eg,5,"Tried this restaurant with a groupon. Probably would not have, if I didn't have the coupon. Don't let the storefront and decor stop you from going in. The restaurant is super clean and the wait staff is very friendly. And the food, WOW! We split the Shrimp Ceviche and the combination pupusa plate. The portions were very generous. I ordered the fruit drink. Everything was absolutely delicious. One of my new favorite restaurants . Will definitely be back.",review,cGnaft9JhI10HUQdtHGvRQ,0,1,0 +sbsFamEj5wDxNAjUKrMcSw,2011-03-17,Gsft6Er8iVtf-3Ihnf1J0A,3,"Needed to kill some time before catching our flight home and decided to check out Old Town Scottsdale. After walking around the tourist trap shops we decided to stop at RnR for lunch. It was pretty busy for a Thursday afternoon, but then again it was St. Pats day, and spring training was nearby. + +Inside and outside the restaurant there were plenty of TVs going with the latest March Madness games. It did take a little longer than expected to be helped once we were seated, but after that everything else was fine, the staff was very friendly and welcoming. + +I had the seared ahi tacos. The portions were a little small (although I guess it was under the small platter section), but they were still very tasty. + +If yelp offered it, I would give RnR 3.5 stars. It's not somewhere I would go out of my way to visit, but I would suggest it to a friend, and if the opportunity presented itself, I would go again.",review,mfo2amL38pGTX2jnFjddNQ,0,0,0 +e1TRaM2GZq8qBFogZaNklw,2008-05-01,jI5LBKOabmKVqnOhkF_1iw,4,I really like this store. The customer service is great. I wish it weren't so expensive but I guess you get what you pay for.,review,T7J9ae0wTskrI_Bgwp-4cA,1,0,1 +saiTvSpVRktGqgt1f4dQIw,2012-11-02,8u2AsQlHNgNqNICRjbSqkg,5,Intense!,review,bIZiqk9KkgrnVizFB5feLA,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2012-01-03,Q3rDTDjzP5U9mrAMFiIVXQ,4,"Very much my kind of a place, it reminded me of the places in Europe/Berlin that I loved so much. Its like a house setting & on the days that we went they had a live band playing great fusion stuff in the back rooms. Their Beer collection is amazing of course, one of the few places in Phoenix with such a huge beer collection.",review,HnlVxMJUFt0senwi9mYzuA,0,0,0 +xCryT3Vzk_RLIkhiuUJwjQ,2011-02-08,mVfMb5E3B9HyMvNVFra3jQ,4,"We stopped in for a snack between lunch and dinner and luckily caught some great HH specials! The restaurant was virtually empty on a Friday around 3pm, but I didn't mind much as we were in a hurry. We sat at the sushi bar and enjoyed the company of the chef. + +The service was a little bit rock to start off as I think 3 different people tried to take our order, but once it got rolling- we were good to go. + +I had some Sea Bass Nigiri ($3 for 2 pieces), Spicy Tuna Roll ($3-4), Edamame ($1.50), and a wonderful house salad topped with sliced pears and a delicious house dressing ($3). The fish was all very fresh and clean tasting, but the salad was honestly my favorite!",review,-jHdb0efMa4_1HQ7uapeDQ,1,2,1 +mTjHcl-pkNO4iOKY8rVHPw,2012-08-16,tP5Wacl3_ar3qUH6a2UlDw,1,"I really wish I had a dagger to stab myself in the face for trying to eating here. Absolutely the WORST PLACE in the entire valley. I would turn around and go ask for my money back but I am to embarrassed to even be seen in the drive through again. + +Was on my way home, thought I would give it a shot. I ordered random items; chicken taco and onion rings. The taco was like eating out of a horse trough.. It fell apart immediately and I found myself trying to shovel it into my mouth. After about two bites I realized the meat was questionably chicken. The onion rings were so blah I didn't even touch them. + +Please do your self a favor.. Dig in the nearest dumpster for lunch, then go home and pound a bottle of vegetable oil. It sure beats the hell out of this joint. No joke.",review,TMVr4sJ1yAQoaR4h_C_C7g,0,0,0 +KBG28p3lGX17hOPoHhq5PQ,2012-12-17,0sW_a6lWGUe1QrzRaWCFDQ,5,"A great little spot to find! Fresh, Fresh, Fresh Sushi and great eats! Be sure to try the green bean appetizer!",review,lPrPvEaQYEzS30Fzgra37A,1,1,1 +Y-9dJvw-J2d9QKfuL7mKgA,2012-01-30,TpHS4UoCZJKZp5OUd45xuA,1,"We had read good things about Over Easy, and were excited to try it out. We went a few days after Christmas, and were horribly disappointed. + +When we walked in, we were seated by one server. Then, a few minutes later, another host came up to us and asked why we stole a table and did we not understand how seating works? We were quite confused and offended, as we were seated properly and had done nothing wrong. + +Then, once we ordered, we waited over 45 minutes for our food. Finally, we asked about it, and then it was out within a few minutes. They had completely lost our order. + +When our food arrived, one dish (the Over Easy -- toasted brioche with spinach & an egg) was absolutely inedible. The brioche was so burnt that we could barely cut it, as was the bacon. The fried egg was very undercooked, even though we requested it completely cooked through. I was honestly shocked the server brought us the dish without saying anything, since it was clearly burnt. + +The other 2 dishes (banana & pecan french toast, and the Loretta sandwich) were just alright -- certainly nothing to rave about. And, the 3 of us ended up splitting these 2 dishes, since the other dish was awful. We ended up leaving early because we were all so disappointed. At which point, our server asked if we'd like a box for our uneaten burnt brioche. It would have been much more appropriate for her to ask if there was something wrong with it, since it was obviously not eaten. + +Anyway, I'm not sure if we just caught them on a bad day, but I would never go back again or recommend Over Easy to anyone else.",review,Pm6FSpKiZ_kFk4c3ZFpufw,2,3,0 +60j3t0ptHJBTW9RXVl1Dhg,2010-02-15,ilhtlvEAm_RMiToARqaXmw,4,"I like this Sam's. I get my eye exams/contacts/glasses here and some groceries. It's almost always pretty dead and therefore easy to get in and out quickly and easily. They don't have nearly the selection that most Costco do, but I've never waited in line here.",review,wC1CPV5bf--bDLtlhNSPLg,0,1,0 +8cL7aJVKTYmLguzXEAS3Lw,2012-08-09,_MPtSZu8Y-YuuPRSsd-AkQ,5,"This is place IS Beer Heaven! Over 100+ taps of amazing beers! This is the ONLY place I will purchase [several] beers at full price, not on happy hour. +Amazing thing #2 ~ (for the girls) they have a ""shorty"" glass which is a 9oz glass instead of 12oz, it is a beautiful thing! Now I can order two different kinds of beer without getting overly full (er bloated), instead of the two big 12oz glasses! +Amazing thing #3 ~ The food is delish!!! My boyfriend and I split a burger. Bad idea. It was so good we really didnt want to share it afterall ;) +Amazing thing #4 ~ The staff are awesome! There are several staff behind the bar and ALL are happy and willing to help you if your initial server is MIA. They are very attentive, friendly and helpful if you can't decide :) +Amazing thing #5 ~ The atmosphere is awesome and the music they play is great!",review,oguZELseKCGWBFUjjH4CqQ,1,2,1 +FURgKkRFtMK5yKbjYZVVwA,2011-11-29,QVe4g612ZZWvPTIkcOHYaQ,4,"So we decided to come back and give this place another try and it was a lot better than our first experience! We had the fondue first, which was more than enough for 2 people to share. I had the chicago dog, again and my bf had a hamburger. The service was awesome and our waitress made sure we had more than enough wine! Looks like Windsor has been ironing out their kinks and really making it into a cool, fun space to hang out and eat!",review,100Df1wcVrl9rJgB7EG6xw,1,1,1 +wSNe7xnQ0OvJ1UTLjikJeQ,2009-12-12,Sg7qt8FX_QrtqoC9guw5Ew,2,"Roads are good +Service not so good + +This place is a tourist trap in every sense of the word. The restaurant and gift shop are overpriced for what you get and the ice cream isn't anything special. Service from the staff needs to be a lot better and treat the customers like you want them there. Always understaffed always waiting on food. Been there a half dozen time no improvement. + +Do come to the area for the beautiful views, not for the food or souvenirs. Great road for motorcycles ride. + +During the summer outdoor cooking.",review,duTeTiNX__zYcznMX5CgMw,0,0,0 +AkOruz5CrCxUmXe1p_WoRg,2009-08-25,375FZOmt26F1U2CS1bz93Q,5,"As far as fast Japanese food at lunch this is as good as it gets. They have a different Bento Box lunch special everyday. The box comes with plenty to eat, including Miso Soup which arrives shortly after ordering. The meal includes sushi, salad, rice, chicken (teriyaki or such), gyoza, some type of fried fish and an orange. For about $8-$10 it's hard to find a better deal. I would highly recommend CherryBlossom for those looking for a Japanese meal. It is small, quiet and a little hard to see from the street, which makes it a unique place with low traffic, but high quality.",review,RHWm_duEdCgWwtN1fBUkHA,0,1,0 +Jd5sLVzE_p_LfJMBmbOhSA,2009-08-07,tvBJH2ZKlHxdF4JWe0f3FA,3,"I've eaten here one time, and I enjoyed a very decent meal. I'm not really sure if I'll go back though, and I'll tell you why. The place kind of gave me a strange vibe: + +-It didn't *feel* like a restaurant, it almost felt like a business that had turned into a restaurant. + +-The take-out menu/brochure was worded pretty peculiarly in places. + +-This one's hard to explain, but I sort of sensed some very subtle yet unsettling religious undertones throughout the whole experience. + +Had the China wrap. It was kinda good, even if it did taste like homemade American teriyaki. In a spinach tortilla. With a side of yogurt. --*sigh* Do you see what I mean? A funny vibe. I can't quite shake it. Maybe I'll give it one more chance.",review,XHgeUEDhZeGyMepUB4ANLQ,1,1,0 +sbsFamEj5wDxNAjUKrMcSw,2011-04-28,vORvL230ao0qnbL390tH_w,5,"I frequent RnR quite a bit for happy hour. I've been here tons of times since I moved to AZ. Definetly one of the best happy hours in old town. Happy hour from 4-7 LOVE IT (I get mad when places are 3-6- who gets off work that early??). And pretty every drink is on special during happy hour. Really cheap wine, beer, and liquor. +Ya their food isn't orgasm AMAZING but it's pretty good. I've havn't disliked anything I've tried there. +I love the atmosphere and outdoor patio on both levels. +I've been for breakfast too and the bottomless mimosas are wonderful. They keep em coming. The food is good breakfast food. +I take family/friends from out of town here for happy hours. +I love this place I don't get what the hate is about!",review,NWEKM2JBpPCtvGtIsRAgMw,0,1,0 +Hgl5RjvLS_Yc8cqdw9uaOA,2011-05-03,A3qBpfL5pjkYUYAzSePddQ,5,"Nice casita that can sleep 6 for $99, plus free breakfast. What a deal. Service was excellent but the catered food was TERRIBLE!",review,uEWCVUTKLQ1ee444lCJ6ew,0,0,0 +6imLt53br7SJ3av07jjH7w,2008-12-16,Y7UIAoAOd8BSLIO08jjJZA,3,"I had a hard time even giving this place the third star. I had high hopes as I watched this place go through renovations during the past 3 years. We were there on opening night and fell in love with the decor. The place was stylish and cool. Concrete, leather, glass...very retro-modern. The people who refurbished and redesigned this place deserve five stars. + +The people who work there, however, deserve one. + +On opening night, I forgave the delay in service. I forgave the nasty arugula on my panino. I forgave the store-bought peperoni. Mostly, I forgave them because the onion straws were so good. + +We went back a few nights later after being fleeced for $40 in return for table scraps at Sens. It took almost twenty minutes to order two pizzas and onion straws. Then, the pizzas came out before the onion straws. How do you cook pizza faster than deep frying an onion? The waiter lingered around the female members of our party and were just incompetent. + +We finally went again after a night of drinking at the Clarendon. What a buzz kill. Not only was it too dark and the music was too loud but, again, the service was slow and dull. Then, the waitress got into an argument about the ingredients of the pizza with our group. Big no-no. + +I've had multiple people tell me that service is fine as long as you order from the bar. They say, just get up and go tell the bar tender what you want. Why should I have to do all of the work? How is it that they have ASU students at their disposal in a terrible economy and can't hire any decent waiters? + +From now on, I'm only going after a game when I want some onions and a Moretti.",review,fev0iI-XDrteD4SYRKjiUw,4,4,3 +ZwGYcfEZFUIHGti_7zpJPw,2012-08-24,clNBE8mJlv6VwhG9r7j8Lw,5,"I have had a couple of peels at A-Peeling Faces and they were the best I've ever had! They are not only very reasonable priced, but Darla Salem really knows her stuff. My skin has never looked better! I am very pleased.",review,8Fsd4yro0ymNLkkX0QyUOw,0,0,0 +zOCdVUKUN3b-obT67Qjyww,2011-08-22,5_WgMt1kinTHGHhIpyerDA,4,"Wow. What a difference. I came here last year and was disgusted. Being German and moving to the USA as an adult I know how German food should taste like and this was an embarrassed. +Since this place was still better than the other German place (Black Forest) we decided to try it again. What a pleasant surprise. The food was very tasty. +So I realized why the change...they now actually have a German chef instead of a non German chef which they had for years. Also, the staff was very friendly and attentive and prices were great. The only reason I gave 4 instead of five stars is b/c they did not offer a choice between soup or salad and just served Egg Drop Soup which was ok; however, on a hot summer evening I would have preferred a choice. What an improvement! We will be back.",review,j1kH6G4kj-8NRG4AiktFfg,1,0,0 +MagW3D2UDQaP6KHzhauUHw,2008-10-19,Ym0IMHvfOBJ3ZqmziTiNYA,4,"Here is a place that we love to go with the family...We tend to remortgage the house ever time we visit but hey with the current economic crisis who doesn't??? + +It was a place we went all the time but lately not as often, not because the food isn't excellent but because it is quite pricey. + +The service is great, Hudson the manager is great, very friendly and always comes to say hello. He knows us by name and enjoys our friendly banter. + +The pizza is VERY fresh, the place is always immaculate and I've never had a problem with the food. If you are looking for great pizza this is the place, if you are looking for cheap well I'm afraid it isn't. + +They do have a frequent stamp program and using that will save you a few bucks in the long run.",review,lkV_WCqCbpA5gUIHD6wtOw,2,1,1 +rwQIBAM_kHtVl1Ks8Flexw,2012-05-19,rgcAxnDTJpitZal3Zifc_g,2,"""Meh. I've experienced better"" pretty much sums up my experience here tonight. + +I have a sneaking suspicion that this is the go-to sushi place for people who either + A) don't know anything about good sushi or + B) have no taste buds and money burning a hole in their pocket + +I didn't really know what to expect from this place before we arrived. I'd never heard of it before and the only reason we agreed to go was because it was close to my boyfriends house and our friend said it was pretty reasonable in price and quality of food. +My boyfriend and I arrived before our friends and we walked to in an almost completely deserted restaurant. There was some really bad techno remixes of popular songs playing in the background and an episode of Dr. Phil on the television. I sat down in one of their ridiculously tall bar chairs while my boyfriend went to grab us a menu we could look over while waiting for our friends to arrive. +Most. Uncomfortable. Chairs. Ever! +I couldn't have been sitting in it longer than a couple of mins before I had to get up out of it. The seat had an aluminum bar or something all the way around it that dug into my leg after sitting down. It's hard to describe how or why they were so uncomfortable, but if you've been here before you know what I mean. They clearly chose these chairs based on aesthetics alone. +Anyway, our friends arrived and we all ordered our food. I decided on getting the ultimate salmon roll and I believe it was called the sun roll. I could be wrong on the name of that second one but it was something close to that. My boyfriend got a couple rolls and we decided to share a plate of tuna sashimi. For the 2 rolls I ordered and the plate of sashimi it was almost $40. My boyfriend got the sunshine roll and a las vegas roll. Those two rolls plus a drink was more than $20. So all together we spent more than $60. I love sushi. I would be more than happy to pay those prices for a plate of delicious fish. But what came out was not what I was expecting for the price we paid. +My rolls were pretty, but they were almost inedible. I pretty much choked down the ultimate sushi roll. 2 or 3 pieces into eating it I debated wether or not it was worth finishing. The little tiny bit of smoked salmon that was inside was dry and I could barely taste the fresh salmon that was conservatively layered on top. I moved onto the whatever-sun roll and that was a little bit better but it was still lacking in flavor and texture. The sashimi was just awful. It didn't taste like fish, it almost didn't taste like anything, and the texture of it was really weird. It was almost chewy. My boyfriend and I have been known to just down entire plates of sashimi in less than a min or two, but after one piece he called it quits and it took me the entire rest of our time in the restaurant to finish the plate. +The staff was pretty nice, I mean they weren't going out of their way to be pleasant with us but they weren't rude either. +All together I'd say this visit and the food was a total failure. I feel like this place's only saving grace is that it's clean and it's in a pretty convenient location. I would have liked to give this place another shot and try another couple of rolls before writing my review, but I was REALLY disappointed with the ""food"" (I am having a hard time even using that word because it was barely edible) I ordered. It wasn't the worst sushi in the world, but it wasn't anywhere near the best. And with the prices they're charging for these lack-luster rolls, I really don't see myself ever coming back here again.",review,ESrdXpT1yF7KZX52bPpnJg,0,1,0 +S8O3BoCDEK-te8U-0IvZog,2012-10-22,nsnGyJSRUFAx0crXgc3Yag,5,"Had a fantastic experience! Hernan, our server was excellent. Knowledgable and charming. The food was fantastic. The chefs selection meat and cheese tray was insane. Crazy flavor. Well done!",review,aveRNR45cX_9CdIc0XtLUA,1,1,0 +le1VmOg0-REuXCFr_FeG0g,2010-06-05,zmePdIzufdaq_Gt1G_GBLw,4,"We eat at My Thai about twice a month. Sometimes we do carry out and other times we eat at the restaurant. There is usually the same couple of waitstaff there. And we are always treated very, very well. We usually have a lot of food modifications as well....like no sugar, completely vegetarian with no oyster sauce, fish sauce, etc, and VERY spicy. They always accommodate us and always get it right. While this restaurant doesn't have anything specific for kids, they have a nice attitude towards kids and are friendly. My 4 year old likes coming here and will often ask to go to My Thai. + +The only reason I don't give this restaurant a 5 star rating is because I wish they could do some local sourcing for the food and/or organic.",review,ftA5q-OQotBkm8cyKvKtBA,0,0,0 +wHUXiN4lnhRReWy2905UZA,2012-10-20,JPgmUy5n7lV8d0L18ULZ3w,5,"Oh my goodness, Hank is awesome! We've had nothing but problems with landscapers and we finally found someone we'll be sticking with. Hank is very professional, knowledgeable, responsive, prompt, communicates thoroughly and is very reasonable. And by the way...he's actually there doing the work! Trust me, we've gone through them all and I had almost given up hope. Hank has been better than expected - we almost don't want to tell anyone so he doesn't get too busy for us! :)",review,lk9OBp3_I00LaSU_JXktTA,0,0,0 +ybXlbfOjrKDdz5NoC-G9Gw,2011-03-22,SnNSgYttb-4_iwxleiWwHA,4,"My friends and I were in Arizona for Dodgers' spring training a few weeks ago and were at the mercy of Yelp for finding things to keep us busy at night. After talking to a few of the bartenders at Bobby C's Lounge (LOVE THIS PLACE), which we found on Yelp, they told us about Char's. On a Sunday night, Char's had live music and a packed dance floor. With an awesome mix of Old School Funk, Reggae, Classic Rock, and even a little Santana action, the live band was ON POINT! We were singing and dancing to every song! The crowd was fairly diverse and everyone was friendly. I could definitely see this as a relaxing place to go after a long day, where you don't necessarily have to wear ""club attire"" to fit in. The vibe was very chill and the drinks were great. I'll definitely be coming to Char's the next time I'm in town. + +GO DODGERS! :)",review,cDQvCXmEVd311heTrERtaQ,1,1,1 +5ErKAS0rHOfU33CYjDh2Aw,2009-09-03,ivYOWSI8f47UgibT0NQC8Q,5,"Some of the best pizza I've had in Phoenix. I prefer to get takeout since the inside is a little...eh... but who cares if the food's good! I love the crust, crispy and slightly chewy. The pizza can be a little greasy sometimes (but hey, it's pizza), but as long as it doesn't soak through and make the crust all flimsy (which has never happened with the pizzas I get here!) it's nothing that a paper towel or two can't fix! I'm not a big wing person but my dad has had them and he says they're pretty good. + +The staff has always been super-friendly, and they actually remember me, even though I only come in once every couple months!",review,qKlJD43nB9fKaZEkMqiJQQ,2,3,1 +Exx5ffvnmk4MrTyCkPRuug,2012-05-23,lmaLHsoFbmSZLr45VEMjPQ,5,"Los Olivos is a Scottsdale institution and I won't hear a word against them. Especially not when I have a few margaritas in me. They take good care of regulars, especially at Happy Hour. The chips and salsa are delicious and they keep them coming. I recommend the mini menu, they are a great way to sample stuff if you like to try a lot of different things, but my favorite meal is definitely the Chicken Poblano. Mmm, so good! The shrimp chimi is also fantastic. I never leave without feeling totally stuffed.",review,h3TnHCqFga0VgPO390PjKA,0,0,0 +9PrgqakLyqlxTTqvvfYNyA,2011-05-26,a4F9muXMSVqwyhGbdH6pZg,4,"I really like this place! I was surprised to see the other rating with one star. I have been 3 times in the last 2 months- always for lunch and ordered off the menu. The restaurant itself is clean and neat, and our food has always been fresh, hot and yes, ""simple""- but really good. You don't feel overly full (take the rest to go) and it's not greasy or heavy. Good stuff.",review,5BpuzOKArniNYV3kpK4eiQ,0,0,0 +sNuyncpQdcvfEpfZS-3Yew,2011-10-15,zRTaR2DDRZSLVCj6cxjwoA,4,"Great menu selection, food is hot and fresh and you can't beat the prices!",review,Asoc6yhjA6ijlLJjcI5ZCQ,0,0,0 +Edj0quZE5k1WcAtf883j6w,2009-03-22,Nr2U5gW1yLEK1qD_58b5UA,2,"Would normally give this place 4 stars as I have been a regular here for about a year. Cheap drinks, great crowd and great music. Except I had my first bad experience here the other sunday. Granted, me and all the other people from my work were pretty loud after a sunday afternoon spring training game. Maybe it was the girls being a little too giggly or us just having too much fun for a dive bar...but I think none of that warrants the bartender calling us cheap and rude. Come on now, we are all servers and we all tipped you well. Whats with the attitude? Will still continue to come to this place once I stave off the embarrassment of telling people from work I know about this cool bar only to be so rudely treated by a way too snobby for a sunday afternoon bartender.",review,TFI0Ew5F_9x6LKN8Xp5Igg,0,4,1 +rQ4z0EStSZE4acgkne6Hmg,2009-10-04,yr3lgTX7MTJD2krxL5UXMg,2,"Meh is right. This place was a big yawn for me... + +I went with a group of 5 (well, 4 adults, one kiddo). This is another one of those places that tries to be fancy and pretty much sucks -- for the price and portion size anyway. We ordered beef stew, chorizo stuffed dates, halibut, cheeze sticks, chicken and white cheddar waffles, and some beers. + +First on the beers... They have Four Peaks 8th Street on tap (privately labeled as Tucks Ale or something like that) and I was happy to see this -- I love this beer. However, halfway into my meal my glass was dry and it sat that way for a good 10 minutes. If you've read any of my other yelps, you know I expect a refill promptly, especially if you expect me for forget your marginal service and mediocre food... + +When the waitress came around, she asked if I wanted another beer, I said yes. Another 10 minutes went by, me parched, growing annoyed... When she came around again it was clear she forgot all about me, then asked one of my friends if they wanted another beer -- I assertively said YES. She looked at me and proclaimed her sorrow, said it would be right up. Another 10 minutes go by, she swings by and apologizes that they had to change the keg. I understand that -- but between the FIRST and second time I asked, I watched the bartender pour another 4 or 5 8th Streets. But I didn't get one. + +As for the food? Super duper BLAND. Come on Tuck's! Fancy (read expensive) food should be an explosion of complex flavor in my mouth. If I have to put table salt and pepper on it just to taste something, you pretty much suck. If we pay $30+ per person and I leave hungry, you pretty much suck. The fried chicken was pretty good, but I've had the same quality stuff from the deli at Safeway. + +Overall, not impressed and see no reason to return. If you're taking a girl out on a first date who is more into atmosphere than food -- she'll probably think you are the man. But really, do you want a girl like that?",review,w2-LYY74W16RXCUYJa86MQ,4,5,3 +y2CMEHwaKWz5RMUC_pcT0g,2011-02-01,yaAp8IkVV0O8ixggea6TRw,5,"I finally found a reasonably priced salon and a stylist who understands what I want. Very happy with the service. Also, the waxing lady is very nice...I think her name is Maria, does good eyebrows. Only downside is that sometimes it is hard to get an appointment on short notice...but that's my fault for waiting until I can't stand it anymore to get my hair cut.",review,aAQYtxiPJsmfKtqw8m56Lw,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2011-11-17,6t93tUbHAeidQZIuh1RR6w,5,"One of a kind place to experience all senses!! Food was great, service was great, AND they have a Moroccan Healer on staff. Ask to taste the Moroccan Black Stone (not on normal menu). I won't spoil how it makes you feel, but trust me when I say you will enjoy yourself! ;)",review,ORXwvQ6F-sKggNz0PShkdA,0,1,0 +PJEJS5rNMRrIBVQDuU9qoA,2013-01-02,exQCBMA4c83PtQAiGS0-sA,4,"Little Chicago Pizza is the best thin-crust pizza I think I've ever had. The restaurant is small, as they probably do most of their business carry-out or delivery. We did eat in one time, and someone came right out from the kitchen to serve us, even filling our water cups from the soda fountain that was perfectly accessible for us to do ourselves. Anywhere else I'd have expected a snotty ""the water is right there"" rather than real service. Everybody is very friendly, even when on the phone taking orders. Price is comparable to any other pizza spot around, but the pizza itself, if you like thin-crust, is just awesome. Add in the great service and you have a solid pizza place for the south Scottsdale area.",review,N4BnjZFAuuAUTjxs93SYlg,2,2,1 +L9N4loWpY2bmQumLUv8r3A,2012-01-10,RA0syYhq9A0YV88NtnvjvQ,3,"I've been to Bookman's a few times and have mixed feelings about it. If you're going just to look around, it's fun to see all the stuff they have in there. Between the movie selection, CD's, books and trinkets, it was fun to shop around. But, as someone interested in selling to them, I would never do that again. I brought in a huge selection of books I was interested in selling and they only took 4 of the books and offered me a few measely dollars. I was shocked. I understand they need to make a profit but I wasn't even getting $1 for each book they wanted. A total rip off if you ask me and a waste of time waiting for them to look through my stuff. I'm not sure if I will be returning anytime soon.",review,cBJqlNzyoJFak3_XRe2bvw,0,0,0 +AsSCv0q_BWqIe3mX2JqsOQ,2011-09-16,hiB6Plk6AN9S1j0YlFWZXg,5,"This place is absolutely amazing. If you are looking for a quick sweet treat this is the place to go. It a little hole-in-the-wall looking place, but once you take a bite into one of their homemade ice cream sandwiches, your mind will change. I usually go for the mint ice cream with chocolate chip cookie, but when it's fall, I can't pass up the pumpkin ice cream with snicker doodle cookie. I've never found anything like it since.",review,B257Qcn1gRmsAOr4eM7w_Q,0,1,0 +shCdCHRbnY5FTMJbWl-myQ,2012-02-27,E1IK4cryThJ7o10kYVZOKg,3,"Party of 7 please. Do you have a happy hour? Yes, handing me a placard with 6 appetizers that are 1-2 dollars off.. Ok, give me one of everything, please. I'm used to saving more than a dollar at happy hour but, the apps ARE good. + +Our waitress CJ then explains in Thai to my wife and daughter a couple of the dishes. We order 7 entrees and they arrive in a timely fashion and were all quite tasty. + +Problem 1 The sticky rice which came with the pork dish was about the size of two of my fingers, should have been at least 4x -10x as much. + +Problem 2. The rice which came with 2 of our entress was fine but, we ordered EXTRA rice and, that didn't show up until most of the main dishes were gone. Even after asking a second and third time, it took 4-5 minutes for them to scoop it out of the rice cooker and bring it, Not cool, guys. + +This is my third time here and it is ok but, 5 stars?--not.",review,zZxr7X10CDThXZbnkLmNVA,1,2,2 +d3MxUXS1b6U2P_gGuCO1-A,2010-05-12,fZWxxKzRNqiFPRvWmD0LmQ,4,"ME: Of course I want to go to an Asian Topless bar. Are you feeling ok Ash...I thought you hated topless bars? AND ASIAN NONETHELESS....I never expected that from you! + +ASH: Shut up...I said Asian TAPAS Bar! Not TOPLESS. + +ME: Damn! + +Darn my luck...a guy never gets to have any fun!!! + +It wasn't what I expected...but I was not disappointed. It was great. + +The place was hip. The staff was friendly. The food was incredible. The bill...well the bill was a bit high. But overall it was a great experience. + +We started snapping pics through dinner. This motivated the Exec Chef and Owner lady to come sit next to us at the bar. I felt kind of bad for drawing attention because the owner lady became very controlling with the staff and I was a bit uncomfortable for them. + +But overall...I would say this place is aw aw awesome. Try it. Have a cocktail. Eat some Tapas. Have some fun. Don't expect anyone to be topless though :-(",review,nGYaT5sAuqKkd48dqX_2Kw,0,0,1 +K845ZDttFfx99zQ-0aE2tA,2011-06-25,96211mgJaStI46bRH8c1sQ,2,"This place bothers me. I already everything about country so going to these kind of places freaks me out. I was forced to go here because the boyfriends parents were in town and they choose Cadillac Ranch due to their type of ""cuisine"". I have to say the foo d wasn't bad. Server messed up my order but when they got it right it was ok. I will not go here again however. Sorry.",review,NWEKM2JBpPCtvGtIsRAgMw,0,0,0 +Ch_2Ye0w4Q9l3VeVW7VNHA,2010-08-22,mtBSnfC6XPeKhfEw3p8-9Q,3,"The food is good, atmosphere a little strange, and the prices a tad high for what you get. Got a sandwich and a salad. The sandwich was good, but it was just that, a sandwich. No accessories. The salad was also good, but it could have really used a meat on top. You had the option, but the salad was already a bit pricey to begin with and adding meat would have made it over a $10 salad...for lunch.",review,2MPGdIbaaEdKuW9IpPxHfw,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2011-02-22,OKUmo2kiG5KgiZrTBE33Kg,5,"Oh, where to begin.. + +I stopped by Pappadeaux last week to grab a bite when on a Wed, they told me it was a 45min wait for two.. wow. The place was packed. The hostess recommended we make a reservation for the weekend, so we made one for Friday at 7PM. + +The smells coming from the place when you first pull in automatically keep you wondering what delicious things are waiting inside. + +I'm so glad we did. + +We showed up and they gave us a card with a number and once our number showed up on the screen, it was seating time. I think we waited maybe ten minutes. + +After gazing over the menu for a quick minute, we decided to try the fried alligator with creole sauce. Being one to enjoy new things, I was pretty excited. The waiter took our drink orders and and put in the appetizer. The place at this point was insanely packed, but it was nice to see a place like this. Made ya feel that something good was to come. Heck, a place cant' suck if it's this packed, right? So we order our food, I decided on the stuffed shrimp and the rest of my friends all ordered different things. It would be a share-a-meal night.. + +About 10min into drinks and conversation, they bring out the fried alligator.. Ok, if you've never eaten anything weird before. Please please.. you've got to try this. It sorta reminded me of a cross between soft pork or chicken. The taste literally melted in my mouth. To top it off, the creole sauce that went with it, only complimented it. I could easily have eaten the entire plate alone. Sadly, I had to share.. + +After quickly destroying the fried alligator, we got our entrees. I took one bite and had to pause a moment.. the taste of the stuff shrimp with the crab, Alfredo, spices inside just floored me. There were only six pieces, but after sharing a piece or two and eating the amazing green beans, this was plenty of food. + +I can't wait for my next trip here.. fantastic food.",review,_4lqpCYCqOQzbB6xQGGhrQ,1,1,0 +L9UYbtAUOcfTgZFimehlXw,2011-02-03,JeyALAmmeyLrvf3oUIas_g,4,"What can I say? Like the rest of joes restaurants, this place is great! Keep them coming Joe!",review,nURs-n-ucizNeoo280nmTQ,0,1,0 +EWMwV5V9BxNs_U6nNVMeqw,2010-02-11,rMDFqIjS5C2TkG7ARTOiWg,4,"I feel like such a noob. We consider ourselves foodies to a certain degree, but before joining Yelp we had never heard of this magical mysterious place called Fez. So after seeing the sheer volume of good reviews on the place, it was pretty much destiny that a trip to Fez was in order. + +Upon first arriving there the first thing that'll catch your eye is how trendy it is. The place is drenched with a hipster vibe that's hard to shake. You'll also quickly notice a very skewed gay:straight ratio. I would usually never bring this up, but it was quite obvious the night we went that we were possibly one of the only straight couples there. This extends to the waiters too... don't get me wrong, I have no problem with it... in fact it made for a more fun and interesting dining experience; just be forewarned if you aren't comfortable with things like being offered a drink called ""The G-Spot"" by a feminine male waiter, this may not be the type of place for you. + +So now... onto the food. The food was superb... starting off with those heavenly Cinnamon-dusted Sweet Potato Fries. Damn they're good... basically they're some of the best fries I've ever had, period. I bow down the God of Cinnamon and Sweet Potatoes... because the combination is heavenly. For our main dish we got a Fez Kisra followed by the Apricot glazed Salmon. Both were quite yummy. The Kisra is basically a healthier version of a pizza with some more adventurous types of toppings... the one we got had pears on it. It was good, but would be hard to eat one alone because the flavor is quite distinct and a little rich... so it's perfect to split. The salmon was well cooked and flavorful, no complaints there. + +Overall we had a great meal at Fez, we'll more than likely be back... if anything to try 'Fez Foodies' which we've heard so much about. What a cool place!",review,eeEj90eJiwYMLJfPW9kdxg,6,8,6 +TzImzfIWkZTnetKl2a4-SQ,2008-03-17,lmQtoi8oz0p0yYRwG6drLA,4,I go to GB for the balcony and the hefeweisen. One a warm sunny day there aren't many places I would rather relax. Watching the people on Mill Ave as well as the planes flying into Phx can kill a few hours if you are bored. The food is ok. The hummus appetizer is usually a safe choice as is the pizza.,review,bZFRqP7s0Vszxeu8_IwYow,1,2,0 +7a8nSGq152yAkKVKmsqpng,2010-09-13,NHBWvw5LNkBlqK7DNIE3_g,4,Roast beef sandwich at lunch is literally the best I've had. Cooked to order. Had mine rare.,review,yoDfjwyLi8jfyghj-Z7IWw,1,2,0 +doEZAj-NSnoEMOJl5yXcNw,2011-06-02,BX_iL7m8Y6_J3nNFCbp_dw,4,"Stopped in last night for a take out dinner. I wanted to bring home something different than burgers or a pizza or fried chicken. So I used my Yelp app.... And showed Yusefs nearby with good reviews. + +The owner was a very personable person....and very helpful. Everything smelled wonderful, and it was pretty busy....all good signs. + +I order 2 of the falafel dinner plates, and the stuffed grape leaves plate. The only ""side"" for a dinner plate was the split pea soup. It was a generous portion....and VERY GOOD! + +The falafel and grape leave were both generous portions....and delicious! + +I want to go back a do a little grocery shopping for some of the unique items that I think you could find only in Phoenix here. + +Good job Yusef! I liked it!",review,TTP7l5g4QUVCpQZ9NTAWqw,1,5,0 +pmIJn8K3offcYUsrFCWAaQ,2012-08-24,QJ5CFg-9p8zvSeWD34ebcQ,4,"It smells yum. Just your basic Italian deli/sandwich decor. + +They offer sandwich, pasta, pizza, salads, buffalo wings, beer, wine, tea, pop.. + +They have cold cuts to take home, pre made pasta salad, mozzarella etc. + +I ordered ham and cheese sandwich. The dressing is very good, meats an cheese was good and so was the veggie. It doesn't beat my favorite sandwich from olean NY at tops grocery. But it's def going to be a spot I'll be at.",review,ZIcb9cCwcV4My87A-tPM7Q,0,1,0 +BIYvJTxDQQdwMEBh4Ltw4A,2011-01-18,HUZIEDKu2KrstsO9cOU_IQ,5,"DV Nail, may I help you? YES! You can - and always well. I've been going to DV Nails for years and they're great. I've ""cheated"" on them a few times when I hear of similar nail shops in the area offering specials and mini hot stone massages with a manicure but I always end up back at DV Nail. + +Their massage chairs are wonderful - strong massagers. You actually feel like you're getting worked on. They're clean, friendly and always do a great job for the price. It's not fancy by any means and I wish they'd turn on the radio instead of the fuzzy TV but they're consistently good. They carry every Essie & OPI color and my manicures always last a long time. A manicure & pedicure is $28 total + tip. I think that's great. + +I typically request Tina or Julie - they both take their time and do great. Don't be fooled by this place... there's often a long wait. I'd recommend an appointment.",review,PNS9z4aFDbfhpIsHCfNvNg,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2011-02-11,dWM6iaL4Sq-HBy4hlOrJ3Q,5,"I will give this place a 5th star even though i wait for 30+ mins every time i go. that can only mean it's good right? Well, it's that friendly AND that good that i dont mind waiting. i hope it doesnt lose that customer service aspect that makes it so approachable. + +best sausage gravy in town with a nice spice to it. i'm not fond of their potato has thingys... but their bfast nachos are fab and their white out omelette is also very tasty. my favorite item - turkey sausage eggs benedict... DD style (trade sausage gravy for hollandaise) - very filling as you can imagine. + +breakfast club will still be the old town brunch location for when visitors come visit me but for week in and week out sunday morning brunch, this is my spot.",review,B_leEp0XWSNi5_HQ_BLAAg,1,1,0 +kP_NxoI4DyQ1y60i5xsTCQ,2011-11-01,kwseo734U9LSQDCEqSNN2g,1,"It's a supermarket. I just go in buy what I need and get out. It's convenient that there's a wells fargo in there, but there's one across the street as well. + +To the negative experience..... +My sister was speaking to my niece, but not in english. Some caucasian lady walks by and rudely says, ""Can't you speak english?"" WTF?!? Is this taking SB 1070 in your own hands? It's like you're trying to make every race hate you even more. I will run into this arrogance wherever I go. + +I'm not done yet. Keep on reading.... +My niece had a dollar in her hand and was pointing at the lottery scratcher machine. We know you have to be of a certain age to play it. One of the employees there rushes over and in a loud voice tells me niece she can't play it. Calm down. Kids are just innocent and don't need this extra verbal abuse in their lives. Don't you have something better to do like restock the shelves? Swear... Racial profiling.",review,qis3040X__uozHkiy8eT7g,0,0,0 +-gefwOTDqW9HWGDvWBPSMQ,2010-02-26,iHt-yac8yo0uWZpAnotBWA,3,"Stopped in, had a couple of drinks, paid and left. Nothing to get excited over, but a decent stop if you like Irish whiskey and need a fix.",review,OeF4ktJqY5Qf_gf494uE_g,0,0,1 +JRzrqJmsQ5AZ4bMQLUfyHg,2012-02-15,QvDNFZ0pUlwT-X5XqXQk3g,5,"We came here Sunday morning for a wonderful breakfast. Our server was Colleen. She was very attentive and we had a great meal. The menu is so extensive with many ,many options. I got Florentine Eggs Benedict and my boyfriend had a fabulous omelet with potatoes and toast. They were both delish! Their Potatoes are fab!! The Decor was very nice, and even though they were so busy,we did not wait long at all for our table. Big parking lot and a nice waiting area as well. We will defiantly come back here soon.",review,F6QsMoJdvtohlbnST-fDyQ,4,5,3 +yeuy070bBkc4CD71M1VZIA,2012-12-10,y1N8np6nrguHEGsH7oIRrg,5,"I love Christmas-time and I especially love it because I know that Luminarias is back and this year it's better than ever! The staff and volunteers at the DBG do an excellent job of directing guests through the garden. Between the well-lit paths (with Luminarias of course), helpful staff and amazing acts, this is an event not to be missed! I consider this to be the ultimate activity for adults. It's romantic if you're on a date, it's festive if you're with your family and it's just pure fun if you're with friends. + +You enter the park to be immediately greeted by hundreds of meowganificant Luminarias lighting up the entire garden. Cocktail stations lie in every knook and cranny and they serve delicious festive drinks like my favorite, hot cocoa and raspberry vodka! If you're hungry, they sell food throughout the garden at two locations. Then there are the performers. The DBG does an amazing job of bringing in musicians of every shape and size. Whether it's a trio of Christmas carolers, a mariachi band or a lively Jazz band, they have bands in every corner lighting up the night! I am also continuously impressed with the acoustics of the garden. With so many live acts in one area, you can barely hear a specific act until you are in that area. Their event planners did an amazing job! + +Luminarias is my favorite Arizona activity during the holidays and I can't wait to go back next year!!",review,4ozupHULqGyO42s3zNUzOQ,14,13,9 +AW1uq13zFslTBoD6vL99Bw,2012-05-20,NH7Vg6Q1jQ4U-DK4RQ61og,4,"We recently tried this place, during lunch. The crunchy tacos are really good. The rice and beans are so so. Haven't tried the Ritas yet.",review,ezJJB5XvFbWTsRh5BZrtjQ,0,0,0 +9BJ5h9X1krpXFjKj0a6wbg,2011-02-27,dB-vUKZDSXsX6bKwpeEekw,5,"One word can describe the food here: perfection. + +All the meals I've had here has been absolutely delicious served by the most charming waitstaff. + +Someone recently told me their Chilean Sea Bass was the best he's ever had and I believe him . . . I can't wait to taste that dish!",review,ru8p3RTlk8f9LB_3zLXURQ,0,1,0 +UtW7T4VKA3E602Q0tNNycQ,2011-08-31,-GJc7vv2RTBEo3k8hxjNYw,3,My wife stayed here while transitioning to Arizona and enjoyed her stay. The hotel seems modern and they are currently renovating the place; so far so good with the improvements.,review,NvDR3SPVPXrDB_dbKuGoWA,0,0,0 +8dEJ_o0UgGrNX1ejHcuZjA,2012-04-16,w-wzwT3qsSDdaEif2uKifw,3,"Mediocre food, mine was really really salty. Kind of an interesting place though, looks like a Colorado lodge but what's that decor doing in Arizona?? Looks like a good place to go after work for happy hour and hangin with friends, so-so for a nice dinner.",review,MM2oeJE5c3SNpVIfD5T5-A,0,0,0 +B_Ea839qdvPWa07YnpeIrg,2008-03-24,QMu74GhlDjHDmEOgU2l0XA,4,"White tank is still an excellent place to hike. I hadn't been here in about 8 years. I was really shocked to see all the new construction near the entrance. A shame really. + +The flowers were in bloom, so that was a bonus for sure.",review,Sgv9qFkfyVtp72aad7ulXw,0,0,0 +ntN85eu27C04nwyPa8IHtw,2011-07-24,JRogEWoOLRXXnthCukcOrw,4,"Very good traditional breakfast spot. I stopped in just as they opened during the week to make sure and grab a spot. I was treated with a really tasty plate of eggs and peppered bacon. One of the biggest pluses, Matt's actually knows how to cook hash browns, I didn't need to order them well done, they come nice and crispy as is. The real show stealer is the toast and home made jam. Nicely done breakfast at Matt's, go grab some!",review,-jgGsPzZ4W2TyGh7KOwl9Q,0,0,0 +ykfTh6HI219NoMsWBxulxw,2012-01-29,a2w8ZqnZmgOoxVY8HbT2LQ,4,"If you can look past the giant Meth billboard right outside and the general uncleanliness of the entire establishment, it's pretty wonderful... especially if your intentions involve eating a whole lobster, like myself. + +Gourmet House of Hong Kong has the cheapest whole lobster dishes I've ever found, anywhere. I don't mean a measly, mid-western, tourist trap restaurant kind of lobster, I mean a damn good, meaty, savory, juicy morsel of deliciousness. + +It's served a number of ways, but I usually go for the black bean sauce style. Then, I eat like nobody's watching, vow to never let my boyfriend see me like this, and usually end up getting sauce on my face, clothing, table, neighbors, etc. Go messy, or go home.",review,BjwXX-sChcjx2E55B_7rXg,1,1,4 +wyxsEFTGC1MuadT2SpTE3g,2011-03-08,Uj-qZf2weBwg2KWLf93hIQ,5,"All I have to say is WOW! This place is EXCELLENT! All the dishes we had were extremely fresh, authentic, and DELICIOUS! + +My favorite pot stickers EVER. The skin is super thin, tender, not greasy, mostly steamed encased around a very light, delicate dumpling that makes me want to order 2 next time. 6 is just not enough, they are tiny, but oh so delectable! The sauce is perfectly balanced of sweet, spicy, and tangy and does not overpower the pot sticker. It also comes with a thin airy, crispy (rice chip?) underneath the pot stickers that give it an extra texture with scallions scattered about. MMMMMMmmmmm. + +The green curry is more brothy than others than other's that I have had, but no matter...It is delicious with bits of vegetable, and whatever meat you prefer..we got chicken. I love sopping it up with rice and trying to eat it with chopsticks. You may need a spoon :) + +The eggplant and chicken stir fry is also fabulous. The asian eggplants are cooked to perfection. Their sauces are spot on. + +BEST Coconut ice cream! It is light, fluffy, icy, dreamy, pea-nutty, coconut cloud confection that makes my mouth water! It is not sickly sweet sticky artificial coconut tasting at all...Predominant coconut flavor is not my favorite and I LOVE THIS! + +Even if you don't like curries, there is plenty of food here that will make you a fan! This is a mom and pop kind of place, they are really nice. It's a trek for us, but definitely worth the drive!",review,d95On_QNeQPr01pRNzHa5w,1,2,1 +P5uC-zfGG6yqoQDUyqyAvg,2008-09-27,fzo5Lb_t9xaMRBHFagzItA,4,"My friend refers to this place as ""Hitler's Bunker"" but I choose to see the romantic side of Kazimierz. I love the dark, cool interior with the large comfy sofas and chairs. + +It can be daunting to find a bottle of wine since the list is incredibly vast. I usually settle for a wine flight like the French Kiss or I open up the book to a random page and swirl my finger around until I land on a bottle in my price range. The flat bread pizzas and fruit and cheese trays have been nothing but impressive. Some of the waitstaff can be a bit surly but most of the interactions have been quite positive. + +All in all I think this is a superb place to take a date after a nice dinner so you can unwind.",review,bZFRqP7s0Vszxeu8_IwYow,2,2,1 +UL3OMN_c-NXHlyb97pDifA,2012-07-03,Fi5SFwFG_62j5ou95vVLTw,2,Glorified Applebee's. I think they want the yard of beer to cover the lack luster food & services.,review,Ub1Nk-78ELccEIgGV6VGcg,0,0,0 +wH9WtaTlrRawH_IpK90RPg,2012-07-30,jnufTi_ZCIgI8U9zvgc5PA,4,"Went to this place on the recommendation of a friend and definitely wasn't disappointed. The burgers were GREAT and the music was perfect for the time of day. There was a good crowd and the staff was very friendly. + +I would deinitely hit up this place the next time I am in AZ.",review,4nk4dFA8pbIfBjdIFpP-fA,0,0,0 +Nq7eB1wB2EArUICtiNePvQ,2012-10-21,sGg9KJyDx0zWzDPjVmQUNA,5,"I really like this bar & restaurant. I usually come here to meet up with a friend and sit at the main bar. It is modern and clean. There are a couple bars to sit at and they even open a big door to a bar for the outside too. They have some good brews on tap and have flat screen tv's as well. + +I have only had a burger and fries here. They burger was really good, the fries were really greasy and were just okay. + +The staff here is friendly & speedy. I would recommend this place for a good place for someone looking for a nice place to grab a drink and converse.",review,_bHzW18Vg1gxTMoR1fFZhA,0,0,0 +teL2fc-Syit_0x89H4fCkQ,2010-08-29,5LVkkPScwEpgywAIFmcD_Q,5,"Really nice! I'm new to the area and I stumbled upon them. They are fast and not very expensive. I was a little turned off by the number of really old men working there, but they had their regular client list. It was like one side was ""old men"" hair stylists and the other side was the ""young girl"" stylists. The two sides didn't really associate, which I found rather weird. But, none the less, a great hair style at a great price!!!",review,4vECjx1eQSWCHfM3ZSbrNA,0,1,0 +tAmevVP8B7PiWxcJ0PlYVA,2012-04-07,d-V16MvLmyPG6UyHmKtTPg,3,"All I'm saying is they need to do a better job at hiring their staff. The girl that helped us out last time was on something pretty heavy. It was a school night, and we had just finished up dinner next door at Windsor. We all wanted to get something sweet, but the girl working there was so blitzed out of her mind on something. She was barely able to interact with us. Within the first 2 minutes she must have asked us 5 times how we were doing. She never once made eye contact. I'm not exaggerating by saying she looked pretty filthy, and was really rude to boot. Maybe that's just how the poor girl is, but damn, you think they could do a better job hiring people to compliment the charm of a family oriented cutesy sweet spot. + +She turned us off so bad, that no one in the party decided to order anything. + +I give it 3 stars because I've been before, and thought their stuff was good, not great. Churn is pretty damn adorable & local, so they get extra love for that. So, for now, until something better comes along it will just have to do.",review,jt8jtEY1K6TD1FBzYa7HGw,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-01-10,BDNBEPe9U7p8p1DlqXpTdA,4,"We stopped in for lunch since we found a parking spot on Stetson Drive. + +I enjoyed my seared ahi tuna sandwich immensely. The bread had lots of sunflower seed on the crust. The tuna was perfect and the extras inside were perfect. The rest of the gang had short ribs, bacon sandwich, sliders filled with pork belly, and hamburger plate. Everyone was happy with their meal. + +Service was quick and friendly. + +On the way out, I had to buy a few bags of caramel popcorn with chocolate and bacon ($7 per bag). Wish I had grabbed a few more since the bags were on the small size.",review,OUdHM_gKTfTQ-hHZHqczsA,0,0,0 +XNSito__Fne14TXU0vz1Qw,2010-11-08,Z5brzCueAO3k6FiPMboS9A,4,"we ate there this past saturday evening. arrived in time to take advantage of the 50% off wine price, which was great. they have an extensive offering of wines, with emphasis on chilean and argentinian. delicious. ordered the fig/prosciutto salad that was wonderful. my companion ordered the salami/proscuitto/olive plate that came with bread and crackers. he ordered sangria. everything was very tasty. we sat outside. the atmosphere is so welcoming. had a great waiter. really enjoyed ourselves. we will absolutely go back.",review,bLiqSbQIxaRZvfn2TfkWOw,0,0,0 +nfyqtEoufkhjv97IueK7Ow,2009-04-29,0DHeh9w3d5A2CYWhOdyweg,1,"This may be my worst dining experience ever. + +The scenery was beautiful, we can't complain about that. The menu was decent, there was a good number of selections to choose from. However the prices were definitely high, we're just talking tacos & burritos here... + +I ordered a taco salad with steak. It was $11.99, for lunch...which I thought was crazy. When I got the salad, it was the cheap iceberg lettuce, with a couple tomatoes & a few onions. The steak was DISCUSTING. I wouldn't feed a dog that steak meat. I asked the waiter for some salad dressing, he gave me this funny look and said ""most people just use salsa, but I guess I can get you some ranch or something"". Great service, huh? I asked the waiter about the margarittas, and he willingfully told me that the 3 cheapest ones are no good and are too watered down. Nice...so I then asked about the Patron Margaritta (my fav tequilla). The Patron rita was $16!!! + +The waiter was extremely unprofessional, and even gave us this pitch about how he's only working there until he finds a new ""gig"". The prices were ridiculous! I would NEVER go there again and hope to share my story with many people before they waste their money!!",review,TmBNGT7IWhADHUAiJc7lxg,0,2,0 +8FNO4D3eozpIjj0k3q5Zbg,2011-09-11,oQGOD6AqurJtRb4tn0J9wQ,2,"If not for the aircraft landing and taking off, you'd be crazy to eat here. + +Prices are about the same as Denney's. +Cleanliness, really needs to be improved. +Wait Staff, isn't very efficient. + +Apart from the menu, they do offer a Sunday Breakfast Brunch.",review,3nUQ4xbLlySDbkE03nyp-Q,0,3,0 +8ZwO9VuLDWJOXmtAdc7LXQ,2012-11-27,ExQvtydkR_hoxiT8yI801Q,5,Stayed at the hotel from 11/18 till 11/23/12. Excellent hotel and the stuff was great. Originally was supposed to come during Hurricane Sandy and couldn't fly out as I was affected by the storm.. The hotel staff had no problem changing my reservation and didn't even change the price. Everything was great. The room was clean. The pool was excellent.,review,T7rrpUo71wlNCmq-_vai2Q,1,1,1 +wdQyKSXd5biYmDUmlywbqw,2012-06-27,1xER43Aj36jn2Bt7KDXl4g,1,Completely shady. Towed our U-haul as we were moving in to our new Apartment Complex. Completely unethical and total crooks. AVOID AT ALL COSTS!,review,woc9HK2NYBclfzcsN7Ld7Q,0,0,0 +EoUWD6wATa-j_PagZSjYFw,2009-10-27,qrJiRfMeLGCAW1ZsSWOPkg,2,i decided to give this place a second try i went to one of there stores right after they opened and was not impressed.finding good seafood in az is always a chalenge so i thought that f&e might be worth a try again but i was saddley mistaken on the shelf sat a few lonley packs of sea scallops and some shrimp alot of hamburger and a few highly overpriced packs of lamb and a sh&^%t load of chicken. they seam to have alot of prepared food for people on the go or dont cook i think sprouts is a much better option,review,kJyR4gT1pfCcNjEY9-YMoQ,0,0,0 +UWrB5H3G-hhiHMy3iKV2ew,2009-01-12,vxUUysiz14tenl9HWwUU9w,5,"I just re-visited Cheese 'N Stuff this weekend after a while. I guess just eat during their limited hours very often. They close very early (4pm). + +I love their liverwurst sandwiches and the Bismark but this time I decided to try the Doughboy people speak of minus mayo as I do not enjoy warm sandwich lubrication. As ever the place is tiny, homey and spotlessly clean. I had some of the hot German Potato salad as a side and a ginger ale. All were yummy, delicious and satisfying! + + As I was eating I had a yen for a Celery Soda to go with this classic sandwich but I've only been able to get them at Chompie's in the valley. There are loads of interesting European cookies to get packages of as dessert so grab a couple of friends when you go but carpool as the lot is smallish. I guess they stopped giving pickles with sandwiches, bummer.",review,W10N7lgoG9YshvHUC7wSdQ,2,3,2 +AxyWLgtC_MR8Y8i8YqtWHg,2007-12-25,ekMu36caVVn6w8UlA8DRfA,4,"This is only a Review of there men's restroom.... + +It was like 2:30am X-mass eve...well really X-mass.....and + +since I knew someone that once got busted for peeing on Scottsdale Galleria (I'm sure they weren't the first ones.)....I asked a bouncer if I could still use there restroom....and I was able too......PLUS one star + +oh of course there was no ""attendant"" at this time to stare at your ass wile you piss.....so that's a Plus....still not sure why you tip them for that.... + +If your going to pay someone to watch you pee wouldn't you rather it be a girl? + +and how do you get the job to be the ""Attendant"" in the women's restroom? + +oh cool Orange ""floating Sinks"" Black paint every where....lots of urinals...pretty thin between them....... + +cool little table things......wait wheres the trash?.... + +alright well I definitely recommend the Bathroom....I wouldn't drive out of the way for it.....But I'm certainly going back.......",review,1cR5-LZcSYcACxhGe3DEVA,2,0,2 +Zy2vca7i9QFGRKa4m0C__A,2009-07-20,WYyYNtrjLOHT2aMXr9wVnw,1,OMG! what is the rave about? this place is disgusting! it's dirty and the food is not worth it! i came here with my family and we each order a little bit of everything that is suppose to be good and popular there. unfortunately everything is bad. i walked by the waiters and they were all cursing really loud in vietnamese to each other. the table is icky and it smell like my cooked up oil . ick! go to Pho ao sen instead at least it's clean.,review,wh5mqCxN7d1jlTQ4eIGmXQ,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2011-01-16,SHY0nnyzIMm6HtfCb4-IDA,4,"This is the closest Pita Jungle to my office. I love the food and often call ahead and just pick up because this parking lot is a damn nightmare during the lunch rush. If you are dining in though, things do move very quickly. I appreciate the staff at this location not being the usual apathetic hipster PJ is known for. The manager guy here, don't know his name, really knows what he is doing. My favorite to-go dish is the chicken shwarma wrap. It has PICKLES like all wraps with chicken should :) I also love the glazed chicken pizza...omg caramelized onion-y goodness with chunky feta, how can you go wrong. And it's huge so you get two meals. Other faves: hummus with chicken, black bean burger, cilantro jalapeno hummus with pita chips, tzatziki, broiled chicken salad for when I want something really light.",review,XoEwIVPoUNCM11D60o3lCA,0,1,0 +jXmmmsGlhKhe0d0Z3LcIgw,2010-03-07,TtiBQxsUem-VnKNkfSl8cw,2,"I finally saved up the amount I am willing to spend to make my backyard not look like tent city. mind you, i have never been to tent city but i have a feeling they look similar. minus the pool. + +my backard is set up where the pool takes up the entire yard and then a maximum of 5 feet surrounding rock space around the entire pool. welcome to my backyard. + +this makes planting difficult. my original dream was to plant oleanders along every wall, let them grow super tall to block all of my neighbors and give me the privacy i've always wanted to skinny dip all summer long. don't judge. + +I wanted oleanders because they sounded like a match made in heaven for my lack of green thumb. they're cheap, they flower, they grow fast and they're impossible to kill. well, i found out oleanders roots are too aggressive to be that close to my pool so sadly, no go. (i only have 5 ft, they need 10-15ft) + +I called moon valley to get some ideas so I could do research root systems. the guy on the phone just wanted to get me there. i told him i was looking for suggestions before heading there on this rainy day and he just kept saying in the cheesiest voice known to man 'oh ya, come on down, we have hundreds'. + +you have hundreds of plants that are identical to oleanders minus the roots and resemble in price? really??? please list them so i can find out if you're a big fat liar. nope, not listing them. only wanted to get me there. i decided not to go because 1. it's raining, 2. he lied and said oleanders are ok. i just have to have the drip system on 24/7. thanks for your freakin help. 3. he's a liar so even if i went they would lie to me. 4. i hate liars 5. i went in before in the past and told them what i wanted, they gave me a free backyard design and they completely didn't listen to me and created a backyard that cost 2k. who do they think i am? i live in mesa for crying out loud. not paradise valley. i wasn't going to let them waste my time like that again. + +if you're wondering why i could give them a 2nd chance after that- it's bc this time *I* was going to wear the pants in the relationship. + +you could have had my entire (low) budget moon valley, but the unwillingness to help or be honest means i will be going elsewhere. someplace that will straight up say 'i can fulfill your skinny dipping in privacy dreams, while making your backyard look pretty as cheaply as possible and i won't destroy your pool while i'm at it'",review,hFtlFksrcLaWHGPNa6SmeA,5,5,7 +18TUn9oiW0k0yB6lheiOvw,2006-01-30,yxKzkYk32FVD6PxJc9QKHQ,4,"Have to agree with Timmy... located just off the 51, it does have a Roadhouse feel to it... Haven't been there for dinner, but the combination Texas/Arizona (hence the name) cuisine is pretty good fare...",review,Sjp6EYsqzdlTvymER6wBfg,0,0,0 +PH-KVHAPZBk8pTF4hsuVdQ,2011-01-21,kgTY9VmlyWizINaBajFnPg,2,"I travel a lot for business and usually stay in Hampton Inns. This one less than impressed me. First and foremost, it is a 'motel'. The door to the rooms open to the outside, which is not typical of a Hampton Inn. I was concerned to stay in such a hotel at first since I am a woman traveling alone. The area is ok, and the hotel area seems to be pretty safe and well lit. The lobby and pool area are very pretty, but again...the doors open to the outside so when I was positioned right near the pool, I could hear everything that went on. The bed was standard Hampton Inn bed (comfy) but the room was small. My biggest complaint, by far, is how bad the noise carries. I'm still sitting in the room and I can hear the entire conversation going on next door...I can make out every single word. Additionally, I can hear the person upstairs. Their sound insulation is terrible. There is a gap around my door (and remember, it opens to the outside) so can hear everything that goes on outside, too. They've done a nice job of spiffying it up, but I did not find it to be appropriate for a business traveler.",review,seIFb7p-2Mz67imAhou7NA,0,0,0 +Xbxve72Hp5cWWj96ThGNtg,2010-12-21,N4TdLQU-iFuwX644zc-ygQ,3,"Just great! The gluten free pizza crust is really good. Be sure to order it crispy otherwise it can be kinda chewy (unless you like chewy, then order it however you want). I really dig the BBQ Chicken pizza but I think that they might have recently changed the sauce or something. It's tasted different to me the last time I went. If they haven't changed the sauce, then I *COULD* be loosing my mind. Either way, it didn't taste as good this time around. Just saying",review,085TP4qzSt6sr2COT4lVCg,0,0,0 +N_n2jyCfpon3NzKERYT02Q,2011-11-12,2ujDDXw5C120WX3mKi1akQ,5,"Food Truck Fav right here! + +I've been wanting to try Pizza People's Pizza for a while now. I found out they were setting up at 180 Degree's Automotive and I figured if Bogi was hosting them then I needed to check them out! I finally caught up with them at Local Fest. + +Bogi was actually there helping them out and she told me that they were only sampling the regular pizza and the gluten free pizza was $8 but she assured me it was yummy! First of all $8 for a 2 item gf crust pizza is a deal! Secondly, Bogi said they were her some of her best friends in the world...and I trust her implicitly....so I ponied up my dollars and waited about six minutes. I ordered my pie with pepperoni and fresh tomato. I took it back to my table to share with my Mama (who is also gluten free) and we both said at about the same time: "" Oh, my gosh this is really good!"" Something I've only said about twice since eating gf pizza! + +The sauce is fresh, the dough was the best gf dough I've had to date and the toppings were just divine. I need to put a GPS tracking unit on this truck so I can track it daily! (Oh, wait.........I can just check their facebook page!) Yeah, I'd eat it daily! It's that good!",review,9uuPzUWC1m_TnMUV9kXu9g,3,4,4 +4bhJ2kl1WVnNQeH3xJgz6A,2011-11-12,0TnqwIAzRVCdVrHcwgMXNw,1,Horrible service. Twice now I've gone there and they keep messing up my drink. I work for Starbucks!! It's not hard to get a drink right! Believe me. Horrible service. The people that work there All have bad attitude. One lady doesn't even look at you when your ordering your drink. I think that someone needs to go In there and fix it and make it a welcoming Starbucks that it's known for. Ya a few of the employees that work there are absolutely wonderful but when you get that one that is just rude it just makes you not want to go there anymore. I stopped going. They still get my drink wrong when my mom goes to get coffee. Horrible.,review,HsU9Z1oblJ_ANCdE6Nmvcw,0,0,0 +EcHuaHD9IcoPEWNsU8vDTw,2009-03-31,nZgI0S2KaaPMfCnQnHNpAw,5,"I'm currently staying at Camelback Inn for 3 days. A pleasant treat after a molar extraction last Friday afternoon. Although I've sworn not to be seen in public with a swollen face, I am truly enjoying this trip. There's a trail just behind this resort and a completely awesome view of the hills. Awesome and I mean it. +My hubby is out on his meetings and I'm juggling my work (the luxury of running your own biz, take it anywhere you want do it anytime you want, well not most of the time.. ). +Just had lunch at Hoppins Jack. Excellent service, friendly staff (especially the handsome young german ;)). Anyway, ordered chicken sandwich with cashews and mandarin orange, delish. My lil' girl was pacified with a vanilla sundae with fruity swirl (raspberry or is it strawberries?) with peaches and berries.. I had a few spoonful, yummy. +Kids menu was dirt cheap, fries and 3 pieces of chicken strips or rather crispy chunks was actully tasty. +I still have until tomorrow. Maybe if I have time, I'll head down to the spa for a desert rain loofah. Oh, as for the room, great decor, quite spacious and an outdoor porch with umbrella and seat to lounge around in the sun. +Simply love the view. It takes me away from everything. I'm in heavenly desert.Highly recommended.",review,mtRDbvRoS3NhuQbBQwixYA,0,1,0 +OSL98Keoc2FSNx4a3ge5Uw,2011-08-30,VljvTmRjzaRypzBTc7yzXA,5,"This is the location I frequent most (it helps it is less than a mile from my home). + +I have been to a U.S. Egg (this and other locations) more than a dozen times (or two) since moving to AZ in 2010. I love breakfast food and the ""specialty"" won me over instantly; PROTEIN PANCAKES! As the timeless Tina Turner once said, ""Simply the Best!"". That describes these pancakes perfectly. + +Before I go on and on about the pancakes (because I have been known to do so) some background information about atmosphere, staff etc. + +This location is in a nondescript one story building in front of the offices at Mill Towne Center (or is it Mill Town Centre?). Nothing fancy, but I don't need a ""Jacket Required"" sort of feel to a place to enjoy my breakfast. + +The staff is fantastic; hosts/hostesses, waitresses, busboys. I have never had anyone employed here be anything but 100% professional and attentive. To speak to something others have mentioned about getting the check early (while they are still eating); as long as you continue to be my waitress (i.e. refills, requests for jelly, etc.) I don't care if you bring the bill with the food. If I decide I want something else, I doubt any of the folks here would have a problem reprinting a corrected bill. Now on to the food!! + +The protein pancakes are filled with blueberries, granola, cinnamon and silvered almonds. The ingredients aren't something exotic, but they are perfectly balanced in the mix (not too much or too little of any of them). The thing about any food item you like at a restaurant, it becomes a favorite because they are able to duplicate it time after time. I have had this item many times (more than any other item), and they are always spot on (knock on wood) :). + +All the other dishes I have had (always breakfast, haven't tried lunch yet) were some combination of eggs and protein, and the eggs are always perfectly cooked to my specification (over medium), and the meat always juicy. + +I promise to write another review as soon as I don't get the protein pancakes (which will be when they decide to remove them from the menu - NEVER). :) Oh, or if I actually go in later than normal and feel like lunch over breakfast (not good odds :O).",review,puY1mdD4w4AwIYPrIyEhWw,2,2,2 +lEGq4UveDPxikXcpwjtFow,2008-06-20,9JU-23ho6xlXc0CfjRjiqg,5,"Mesa Amphitheatre is easily my favorite concert venue in the Phoenix area. You can see and hear from anywhere in the place, and the grassy risers were such a good idea. The sound was excellent for the two shows I've been to there. Really just an overall nice, peaceful place to see a show and enjoy the Arizona weather. Parking isn't too bad and neither are the lines to get in where they check your bags. To top it all of, getting out of there was a breeze both times I was there.",review,YL8SKv-pwx-Wj9cwGYrn3g,0,2,0 +NmtZuT8p4vNk259dvozbvg,2012-10-09,H8W9aUhwqWi__d4BuaDkyA,5,"Kaley helped me get the best room in Mesa AZ, my view was awesome. The beds were clean, and the service was awesome, with a great cafe style restaurant. I am recommending to all my friends to call Kaley for a hook up!",review,jdPaIEMrUpzR4-dC-o5zSw,0,0,0 +q1D8gjMMV4RZU0kFnB5VwA,2011-09-01,-XDVIXOrCYnUtjDiCpHRXA,4,"Fancy ladies with a few gays sprinkled in. This is NM Cafe! + +Popovers. Prawn and avocado salad. Glass of Sauvignon Blanc. + +Make your reservation under Candy Spelling's name. You will get the BEST table. + +Works every time.",review,C8ZTiwa7qWoPSMIivTeSfw,11,16,20 +sh1-BzB29lIOA2qQ_PxN-A,2009-09-01,DNJG4CuYg2M3OzsK4Wsl8A,5,"Waffle Houses are bomb but this one is my favorite. Not only is it 24 hours but it is super clean and well lit. There are totally some seedy people who go here but their conversations just make for very interesting background noise. + +As far as the food, the prices are cheap, the menu is semi-a-la-carte and the the waffles are amazingly crisp and perfect. This is THE Waffle House to visit. Go now, do it. How good does a waffle sound right now anyways? That's right, Pretty Damn Good.",review,fev0iI-XDrteD4SYRKjiUw,3,3,5 +SDwYQ6eSu1htn8vHWv128g,2012-11-14,-A6TRm8otbL55DaywYGpTQ,5,Brie and Apple with Fig bruschetta....I dont need to say anything else!!!! (except $5 glasses of wine til 5 all week and $5 mimosas til 5 on the weekends) Best place to spend a Sunday afternoon,review,UC3zsORq9TmlMCO0COD2pA,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2008-07-28,MNZyzIVY9mhTXH7w3D8gTA,5,"Now worthy of 5 stars for replacing their toilet with one that actually flushes. It's always nice when a place that sells diuretic beverages has a working toilet. + +--- + +The baked goods are baked right there in the coffee house, by their employees. The coffee is roasted right there, on site. Iced tea refills are free, bitches. The baristas are hep cats who ride fixie bikes. Now, I like to coast, but shit... Gotta give them cred. If you go often enough, the other regulars will be friendly. If you hate Mac laptops, you probably should stay away. The new tables are great. There are power outlets everywhere. It's next to Pane Bianco. I run into my homies there on the regular. When it comes to coffee shops in CenPho, there is no competitor. Jeff, the owner, is a cool dude. The seating outside is nice. I have been known to spend all day there, and use it as my office away from home and my real office. I seriously probably spend about 16 hours a week there or so, maybe more some weeks, working on my laptop and occasionally people watching. Did I mention that I kind of like this place?",review,HZeFzs42f0iGaA-sP_hUnA,4,4,7 +S7f-B7KNSTU_akRQGeft6Q,2009-03-10,pJZVbLrLzhhRF0LxpA-DbA,2,"Sorely disappointed. + +I used to be a fan, but this barely half-full(at high noon on a Monday!) restaurant just doesn't cut it anymore. + +Wait staff was sub-par, food was average, and the prices still conveyed the idea that the management thought they were awesome. + +Parking is a royal pain in the butt -- and has clearly had an effect on other nearby businesses. (This part is no fault of Uno's as far as I know). + +If given a choice for a tasty business lunch, look elsewhere.",review,VKiWDL608wBRQtk05ts59g,0,0,0 +-vHWAsiX0iHWJw-pkqv32Q,2012-05-02,1Vi5jE5a3JnEcl-Aydruhw,4,Outside atmosphere was really nice. This was my first time there and I enjoyed it. Our food was great. I had a salad and my friend had the filet which looked excellent. It was more pricey than I expected though.,review,vzTqQHtC0lHzBYsl2Jbs8Q,0,0,0 +V-mvhyX6lxu5l2euYatlrQ,2011-01-05,SnsmDXKX7F-pSHuppoP0eA,5,"This is such a beautiful stadium to go to and relax at, everything is so close that it only take 10-15 mins to get where you want to be, and on top of that, there is westgate shopping center that is right there with all the bars and night clubs to go to after the games. I recommend UOPX Stadium over any other in the valley because its clean and any seat in the house is a great one.!!!!Plus the weather is always great!!",review,4eraKSgRK92ryGuAOBnLgQ,0,1,0 +1TJItj9VfrCeh4TM_SKQZg,2012-05-29,shjvGJh29IGZirdm6TLHBA,1,"This address is for the one next to Panda Express, not the one in Walmart. + +This place sucks and it doesnt even come close to any other McDonalds. How in the world can you have so many employees working and have a line of people waiting for their food? It's like there is retarded people working there and they all have special needs. This one guys was just waiting for a happy meal and had been waiting for 10 minutes before I even got there. It them about 15 minutes for them to give me my food. One mexican kid that was working was to busy flirting with this girl in front of everyone, while her father was asking why the food was taking so long to make. + +The dining area was dirty after I got my food and sat down. They should fire the manager and everyone that works there. They take no pride in working there and its sad to see this. It shouldnt matter what they are being paid to be there, its still a job and they ARE being paid to be there. + +I will NOT be returning to this place.......",review,PeWTVqaIBsMYGOUGFH9yww,1,1,2 +6md4A90THda31wTg1bB3hg,2012-09-01,AQxXhSfS8srBJezx7aCT7Q,3,"I ordered a thin crust for carry-out one evening. The place was somewhat hidden in an industrial area close to Tempe Marketplace. The staff was very friendly and it seemed like a laid-back, cozy place to eat a meal. + +I enjoyed my pizza. The sauce tasted very sweet so be prepared for that.",review,_bHzW18Vg1gxTMoR1fFZhA,0,0,0 +wNsmt1hF1uv3YvbwXZMAoQ,2011-11-21,HFJJuXBzbcIxWVEP0BojdQ,3,"First off, let me congratulate OHSO on being open for business! I was thrilled to see another local watering hole open in the neighborhood. I frequent Arcadia Tavern and JT's often and will most likely add O.H.S.O to the rotation. Upon entering OHSO, I remember my first impression being ""Is this place really ready to be open for business"". I noticed a few unfinished details on the building (maybe intentionally) that left me wondering if this place decided to open overnight. + +Simple said, I appreciate good service. There was a lack of this at O.H.S.O. We were not greeted when we walked in. There was a group of employees talking at the host stand and I had to approach them before they recognized our group. They quickly said it was open seating and got back to their converstaion. We grabbed seats in a booth in the bar area. We probably sat there for about 5 mins trying to make sense of the various colored menus strewn across the table. As we were all very thirsty for a cold beer, we decided to finally order at the bar. Someone eventually came by. + +After some of our party left, 2 of us moved up to the bar and asked the bartender a few questions. No one seemed to know what was going on. Everyone appeared to be extremely busy with ""busy work"" instead of helping the patrons. Seemed like a lack of training with the staff. Overall, I think this place has the potential to be a cool spot and truly hope it does well. If I could offer a few suggestions, they would be: + +1. Have a dedicated host(s) greet people at the front door. Take a hint from Arcadia Tavern. I have never walked in there and not been greeted by a friendly smile. +2. Get the music in order. If you want to a progressive/hip local brewery, you are going to have to do better than a ""killers"" album that was popular 4 years ago. +3. You have something that people want...BEER! It's great service and attention to detail that will keep patrons coming back. + +I look forward to my next visit and I hope some of these kinks are worked out.",review,COfMgkFjxBwKD_RAmQ1BCA,0,5,0 +onwUqByAIhtkyJsEITV5lQ,2011-04-08,r2nRxbxjh8uCWyVA9daF_A,3,"On a recent Sunday night I was kickin it at the Vine, sharing a well-priced pitcher of imported beer with a friend, and taking in the scene. The place looked as though it was in the midst of some sort of remodeling project, but now upon sober reflection, my guess is that it just always looks like that. + +Night went like this: An order of spudskins from the bar-food menu? Sure! Hmmm- they're kinda dry and cardboardy, but looky there! They've smothered them in baco bits, so I'll bite...Hey- check it out! A guy's setting up karaoke! This might be fun. Oh oh- it's not karaoke, he's got a guitar. OK he's ready to sing. He looks like his name is ""Eric"". He's standing at the mic with his guitar waiting for the bartender to turn down the jukebox. People are pleading with the bartender to leave the jukebox on because ""I still haven't heard my Modest Mouse!"" and ""I still have 2 more songs coming!"" The bartender relents and leaves the jukebox on. Eric goes outside for a smoke. Maybe a drink at the bar. Modest Mouse plays. He gets back on stage and waits. And waits. Finally the jukebox is lowered and Eric starts to play and sing his original songs from the heart. I miss Modest Mouse. Eric sucks. Nowonder the bartender was so slow to turn off the jukebox. We're out of here! Bye!!",review,P828sX-WbKmwehgh4xqwYw,0,0,2 +yMbHZ9Sok3wAtPy-ShSQHA,2011-04-28,Kt7zu9XhNzFGVYTwifPWRw,5,"I took the pole dance aerobics class last night, and man am i feeling it today! everyone there was really welcoming and had great advice for me, as ive never tried this kind of thing before. it's tucked away, and at first i had no clue where it was, but its worth the search! had a blast, got a great work out, and felt great afterwards, im definitely going back for more!!!",review,FopAKid3OBQQ-jVmY8HCPA,0,1,0 +qfFSS0A5OXUkCbTeC1fYLw,2011-12-09,Qr7sipX6AZdBYOa0Pd8VHA,5,"Hands down the best spa I have visited in the state and perhaps the nation. + +Massages were amazing. + +Drinks and brunch were amazing. + +Staff went out of their way to take care of our every need. + +Went at 11 am to relax for the day and stayed until 5pm which is unheard of for me at a spa once the initial massage has taken place, but this place kept me going all afternoon with the plunge pool, sauna and steam. Also, the pool and spa hot tube outside were amazing. I honestly cannot say enough about AJi and its wonderful staff. + +I will return",review,qT17WVkJi0RvQ4nNPN6NDw,2,1,1 +vak5DKpHttVwT0WDhD5Pxw,2012-09-08,gY_mcCxRXRKNYzTpFhYjFQ,5,"Good food, great atmosphere, great service and great prices! We will definitely be back! Can't wait to try the Sunday Brunch!",review,cnJr93p5lm7tppJvNXhQXQ,0,0,0 +wH9WtaTlrRawH_IpK90RPg,2013-01-02,iUOb28Ddl5t_wSxTJzGRrA,5,"I really (REALLY) like The Lodge so I was gonna give it 4 stars. To be honest though, I really can't think of any good reason NOT to give it that 5th star. + +I've mostly been here for Happy Hour when visiting AZ, but I've also stopped in a few late nights, and have always had a good time. + +The Lodge has one of the best Happy Hours (deal wise) in Old Town. All apps (except the mac & cheese and fried pickles) are half off along w/$2 cheap drafts, $3 Lodge signature drafts (which is a tasty beer) & $3 wells (stuck to beer on this last trip, but if I recall in the past they actually use a heavy pour during happy hour). + +I've tried quite a few of the apps, and they're all good. The pretzels & cheese are particularly tasty. I always get pretzels & cheese no matter where I am w/the friend I came here w/for happy hour the last time I was here so I can say I've tried quite a few in my day & the Lodge's ranks right up there! + +I admit I'm a sucker for cheesy theme bars, so I kind of of dig the ski lodge theme here. the dining room area isn't huge, but is clean w/comfy seats. The bar area is pretty big & the patio is nice, weather permitting. + +I've never had an issue w/the service here & both bartenders & bouncers are always nice.",review,gv6GLZ3-bgSs44PtPJR1Bg,0,1,1 +8Hn5X1AqgmSLHRG2KgBJBg,2012-09-01,QxXZTYE3fDSOZwl0QPcuMQ,3,I ordered a thin crust pizza for carry out from this location. The staff was very friendly and the pizza was pretty good. I look forward to trying their pasta in the near future.,review,_bHzW18Vg1gxTMoR1fFZhA,0,0,0 +r2S4arkHyRcUroRhggMIoA,2009-10-12,wyfqutBB1d6dl6Y8D2H2Zg,2,"After waiting for over a month for this place to open, constantly annoyed by the sign on the door stating, ""Training in Progress"" I was expecting something spectacular. The name itself ""Revo Burrito, Revolutionary Mex"" set me up thinking I was walking into...a revolutionary burrito joint! My husband and I were disappointed to say the least. He had the Chicken Machaca Burrito, which the counter girl said was her favorite. And it was, well, just a chicken burrito, at best. There was so much liquid oozing out the bottom from the wet lettuce and wet pico that he had to move his chips to another plate because they were swimming. I had the Black Bean Burrito. The menu had stated the beans were slow simmered in garlic, onions & seasonings...sounded delish! However it tasted like they walked next door to Safeway and bought a can of black beans, heated them up and rolled them into a tortilla. It was also supposed to include their ""special cheese blend"" AND there was only a SLIGHT SPRINKLE of cheese...literally! I actually opened up the tortilla to make sure they didn't forget it. Call me crazy, but when I order a bean & CHEESE burrito, I'd like to have at least a small amount of cheese. I guess their idea of special cheese is magical, disappearing cheese. + +The rice with corn & a drizzle of cream was especially delicious & the fresh-squeezed lemonade was tart & perfectly sweetened. We also liked the decor & the windowed kitchen. + +For the price you pay for a very, simple burrito, that offers nothing revolutionary about it, their menu is over priced. I would rather go to Baja Fresh or any other neighborhood Mexican restaurant.",review,2ddSTl9d-YYPRNoVRAEerQ,2,3,1 +ArjchfGWpXf3R8Ly9s52Fg,2011-11-12,9kfqX0jlaCvU2rTeTMw7CA,5,"So going on vacation in a week and wanted to get a brazilian for the first time. I gotta say the technician, Christine, was great! She tells you what to expect and tosses in a little humor to keep you comfortable. It was very clean, the wax isn't to hot, and the technician never double dipped. I found the place very clean and comfortable. Pricing is just right too. I like that there are options to buy it for a year and go anywhere they have a shop. + +I did get told about product as others reviewed. However, I didn't feel pushed because Christine explained how it can be used and why. In addition, she told me of other uses for the product. + +It was an all around good experience that I would recommend to any friend wanting to get waxed.",review,7_UYmMZqxM0kvCiPv4x80g,0,2,0 +un3KC2gyMrSG6yqjVRctXg,2011-01-23,WBy54v6qkx8lsq7Zuo-5yw,5,"My dentist recommended this place to me five years ago and every since then, I keep a keen ear to any of her recommendations as Shimagamo is the best sushi I've had anywhere. I've had sushi in CA, NY, TX and HI. + +The fish tastes fresh and the portions are generous. One piece of advice is to eat at the sushi bar rather than one of the booths, assuming you are having sushi. In my experience, sushi tastes better served as soon as each sushi piece prep is done rather than waiting for the entire sushi order to be completed. This place has the best Unagi and an awesome Escolar (which I haven't found anywhere else.) The Suprise Crazy Roll, served with a sweet wasabi sauce, is always on our Sushi order. + +The only con is that this place is pricey, but they do have a daily 5-7 happy hour that contains some great options. However, the best stuff is usually not on the happy hour menu. Also, this isn't a place to have Sake bombs. It's a very low key atmosphere for those just looking for an excellent meal. You'll likely notice early on how many folks are regulars. I was told this was the spot where many Japanese baseball players come to have their Sushi. + +The restaurant is very non-descript. It sits in a corner of a shopping mall and is easily overshadowed by it's neighbor C-Fu Gourmet.",review,h5TNT3-_yBa0IyvvHj39ag,0,1,0 +lktu5JPDlQUG-7cV7gOzDQ,2012-09-05,eCN47RxL4BpOU03Gk-olkg,5,"This hidden gem is located just outside of Mill Ave and is apparently the hipster home base of Tempe. If somehow you are allowed in without suspenders or nonprescription clear glasses, you will see exactly what goes on. to the left at least four people playing chess, to the right someone reading a book, but sitting next to someone writing a book, and did someone just walk in with a puppy? Yes. As you walk up to the counter you are already disoriented so you may be confused about what to order. Well, they are known for their cappuccinos, which I can personally vouch for but on a hot summer day in Arizona, I recommend their ""Dirty Horchata"" or ""Espresso Excellente"" a rice milk horchata with shots of espresso. It was good for the minute it lasted. See you there next time.",review,MMeNMCy0RWW4cM04IKZO4Q,0,0,0 +3GAPcBG8SowgrpS6UHlDeQ,2008-07-17,lUA9sw7laDEHcFOY1HafiA,5,"Mmm! Delicious Indian food and a great selection of vegetarian dishes. + +I LOVE the fact that each dish is mildly spiced, and left up to the individual to customize the flavor depending on which sauces they choose. I'm a spicy lightweight so it was great that I didn't have to worry about getting something too hot to enjoy. + +I had a bowl of brown rice, cumin potatoes and tofu masala with a cool yogurt-cucumber-mint sauce on the side. It was fantastic! I can't wait to go back. + +...also, I thought it was adorable that we were given a golden dollar coin with our check for ""making the drive to their location and to compensate for high-gas prices"". A memorable gesture!",review,rPGZttaVjRoVi3GYbs62cg,4,5,1 +e34tIpveepWkpvOuv_boqw,2012-07-29,C9zlaIrZqfxLIDfxKzOBKg,5,"Many have started out with this and it should be stressed , this wonderful place is TINY! + +Suggest you make a reservation so you get he chance to enjoy the wonderful food that is in store. We started with the stuffed mushrooms , like many others raved about, and the Portuguese style mussels. Both were fantastic and left us wanting to come back to try the other mussel offerings and appys as well. The endless bread was the perfect tool for soaking up the rich juices the mussels were bathed in. + +We're we're pretty full, but thought we would take a run at the Espana pizza. Hands down the best pizza we have ever had. The flavor could not be any better and the perfectly created thin crust let you enjoy the toppings as both a compliment and as a way to get it easily into your mouth! + +Feels more like you have been invited to a friend's house for an awesome meal as opposed to a restaurant. Great people and they went to all lengths to make ours and the other patrons meal fantastic (even the entirely needy, hard to please, and somewhat obnoxious woman seated near us) + +While I am sure they would make your super comfortable if you had to wait, suggest you make a reservation so you can enjoy this great little place",review,AuQ28IMcqAloDmlFI7CKoA,1,1,1 +L9UYbtAUOcfTgZFimehlXw,2010-02-13,zMlXtuxTHTxKBh2f-HdFHA,5,"This place never ceases to amaze. One of the best breakfast places in Phoenix. The Sicilian scramble is a favorite--though the smashed meatball was great. We finally went back for dinner the other night and for the first time I had a burger. It should not be surprising that is was fantastic. Atmosphere is great, service is great, and the food is great--just go!",review,JPAF4YSek6iDPuUEAgAJDw,0,0,0 +s685YHkO3lcId41bjp5KOw,2011-11-21,NgmAKDnHh7sAzOGXUy1edA,4,"service was quite friendly and attentive, and the food was great. + +the fig/goat cheese/mint bruschetta doused lightly with fig sambuca was delicious, though its relative heaviness and sweetness reminded me more of dessert rather than appetizer. + +roasted vegetable salad could be a meal by itself....very satisfying because it is not by any means a small serving and includes rich goat cheese and is served with wood fired bread on the side. + +nothing better than wood-fired pizza (and bread)! the pizza with artichoke, red peppers, and mushrooms was phenomenal. the rappini pizza i sampled was good, but missing something....more garlic and onion perhaps? + +the bread here was heavenly (as good or better than bianco), as was the pizza dough on both pizzas i tried. crispy on the outside without being fossilized or burnt, and chewy on the inside. lamp definitely has a handle on the bread/dough aspect. + +i didn't try dessert, but the ones listed on the menu read highly tasty and unique in print....",review,qaogVXIa3uEG8gnUZ4b2Mg,0,1,0 +ZT4yweuACGHR9KtlqPJpiA,2009-12-18,4O8PIxA76i_zPpX-1R8YjQ,1,"Just a quick update - this KFC shut down just a few weeks ago. + +There still might be someone in line tho...",review,yGs16xQiN3dLo03OQyto8A,0,1,1 +KCpBGuUFnOKEAS8gLAhyaA,2010-08-19,3vCkW5w6WrRms9Lon8jzHg,2,"This gas station is like the bermuda triangle of gas stations! +I came here w/ a friend on a first friday, she was DD'ing and i was her passenger ""and i ride and i ride i ride through the city's backside.."" until we eventually reached E and desperatly needed petrol. Like a suspicious siren this little green long necked demon sang to us, luring us in w/ his dino siren song. As we pulled in a car was broken down near the entrance and several dudes were milling around the engine, hood propped open, pondering their next move. I grimaced at their misfortune. We filled up, i strolled inside to pay for my friend Kathy's gas and get some munchies. I walk back out to her car and pump her gas, we chat and make jokes. All the while i notice Kathy is so sketched out, ( a case of white girl from the burbs out of her comfort zone late at night down town). +Gas pumped check. We climb back in, she turns the key in the ignition, and dead silence. A mere clicking and then nothing. SSSHHHIIIIIIITTTT. +she starts panicking, i can only help but laugh at our misfortune. Two cars in the same gas station broken down. +Our situation only seemed more dire as time passed, and each car that came to Sinclair refused to help us, or just shirked us off w/ some lame excuse. +It was only until two young mexican teenagers came to our rescue that we were able to move. the other car had managed to start up, and the boys asked the men in spanish if they could give us a jump, reluctantly they agreed. The Mexican men swung their beater over towards Kathy's engine and we hooked up the cables and...LIFE! +we said our thank yous and shook hands, and then brought the teens back to their homes, much to the protest of my scared white girl associate. +Had it not been for those wonderful people we'd have been stranded at the Bermuda Sinclair possibly till day break.",review,pv82zTlB5Txsu2Pusu__FA,0,2,1 +UU-kkvyX6pyrl_4fK6Qpvg,2008-08-14,vWzw8ZmK75BjKyz4FMPF-w,5,"I don't actually hunt or fish, but after visiting this place, I'd like to take up those activities. This place is like a giant outdoors amusement park. Everything you could possibly want for outdoor activities is included in this store. I could spend hours in this store just looking at everything they have available. Plus, now I know where to buy the furniture if I ever get a hunting lodge.",review,uBp2Jmip2qXQ0iWHUDY9sQ,1,1,0 +PwxvN0SnAGPdqXdNEYVT3g,2010-10-14,YCsc27ojakWvydasLcYAGw,5,Had lunch at Bliss again ... still yummy as always! This time I had the ceasar salad and their shoe string parmesan cheese fries. I still recommend this place for lunch or dinner.,review,B63qAIvH3jVUlA6ssqVSnA,1,1,1 +LbLVO7yqAJGEQ1nK6rEvHA,2012-02-20,RElQ8_VGc41OamvxOLvbyg,4,"Prolly one of the best and definetly one of the better Chinese places in town. they deliver pretty late which is always convienent and have the best house fried rice, wonton soup, beef lo mein, and their honey walnut shrimp is average. The white rice tends to be a bit dry, but overall they have always been pretty nice, and always throw in free crab puffs for free when you order over a certain amount. Definetly the go to place for fair priced, yummy Chinese food!",review,usqkiMaReCzDY5LTjEIKBQ,0,0,0 +EfOU_RyGYqVY1VYc7xsq9w,2012-12-29,Zq_veoPxDNazGHcRQZ8OxQ,4,I think they do a pretty good job here. I appreciate the doc's frankness.,review,iq46mlqoLmNQzTR1z8oqUA,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-08-01,C-wX_YQwuNu4OwPsFTbzNQ,2,such a confusing airport,review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,0 +YQKZafMWvIVXfLrM_QjQ1Q,2009-10-09,uZj6wfqE16tMySFaYt-5bQ,5,"I admit it I eat donuts almost everyday and twice on Sundays. Today a I found a new addiction, french crullers, uhhh they are soo good. Melt in your mouth.",review,m9zDNvpl_9Cy3hEoYdyCzw,1,2,0 +uFwC7N9APy8oTjhda3p9lw,2011-01-03,5H9t3bNfW3dNMSkqkVFZiQ,5,"This is a great little hidden gem! From the outside, it looks like just a dive but the inside is surprisingly nice. + +The food here is great and they are willing to make things to your taste when it comes to ingredients and spice level. + +The waitstaff are also very friendly. They came by while we were eating just to make sure we were happy with everything even though this is an ""order at the counter"" place. + +Another little bonus is that they have a drink station where guests can help themselves to free refills which definitely comes in handy in Phoenix!",review,CE9WVIc83P-F1S0ZRF-Tfw,0,0,0 +Bjt3rB73dvSDe1XEPEWc6w,2010-04-11,jMnOIh4R9nxKIbl5rPXC2w,5,"This neighborhood sushi bar is one of the best in AZ! Fresh fish, good portions, and great service. A place where not every single roll is filled with imitation crab and drenched in sauce! Majority of their sushi menu is pretty traditional...but the sushi chefs takes special requests if you give them an idea of what you like. I especially like the Cucumber Fiesta, which is a salmon/yellowtail/tuna roll wrapped in cucumber instead rice. + +The staff is also very attentive. They check on your need often and clear out empty plates promptly. The thing that stood out most was the number of customers who are regulars. As I wait for a table, I always see people greeted by name and received with hugs. There must be a reason why people constantly come back, right? Check this place out and judge for yourself!",review,Ce2iRvcUWljeWZpiLbcizw,1,1,1 +7_zL7NX_rDFwhbLp98PwZg,2010-05-25,l4_gnulGIl1YiSRQU40P9Q,4,"There are other places in town that are less expensive with better sushi choices, and not as loud, but I had an experience today that inspired me to write here this evening. + +I go to Ra (Scottsdale Rd) somewhat frequently for their lunch special which is a good deal: miso soup, yummy salad with addictive ginger dressing, a california roll and four pieces of nigiri. Good stuff. I usually upgrade to a rainbow roll and just pay the difference. + +A few months ago I went to a different sushi place in Tempe. I paid with cash and when my change was returned, the server had ""rounded up"" and treated himself to a presumptuous tip (he didn't return my coins). I called the manager over, went home and wrote a bad review on Yelp, tell people not to go to that restaurant and won't return to eat there again. + +This afternoon I sat at the sushi bar, had excellent service, good happy hour eats, and good discussion with the young sushi chef. I paid with cash and my Ra server gave me back my change ... minus coins. I immediately got tense and thought ""great, here we go again."" I called her over to explain. She said that she had rounded-up - in my favor. I counted my bills and saw that she had indeed given me back my change plus a little extra. She said that she didn't have coins, so she just gave me the difference. + +I thought that was very cool. I thanked her, and left a big tip. +Now I'm writing about my good experience at Ra Sushi on Scottsdale Road and will definitely keep going there. + +It's amazing how one little gesture will have such ripples.",review,dqbHEBseCXC8__D6WM2b9g,2,0,0 +I20sRbcEK8Ib1YFQFMoERg,2012-05-31,vbKpJRLOfbqT7ORmWn3W7g,4,"Relatively inexpensive, good solid mexican food place. I wouldn't drive 5 miles for it, but its a lifesaver if you live nearby. Better than the 'bertos.",review,irSUI5G3vKYd_1EQ865-Tw,0,1,0 +udmb-UuD3xoueQ55INQFRw,2010-08-03,KZM5Im7N8F8BVOXfMZDjSQ,4,"Good food, decent selection, open late (for you partiers), decent delivery time.",review,WO6bMumFr4oZJwh_ZNXACA,0,0,0 +sQnIwxSmu3toihB-BCYjqA,2010-01-19,xE393FuR19kQFU50yQHeZQ,3,"I'm not really a fan of Jo-Ann. They don't really do much to help you find what you need. There are never any helpful people, nothing is labeled properly, and the fabric counter is always a nightmare. This one is tolerable because no one is ever here. The people that they hire at this one are just people who need jobs, not people who love crafts. You better know what you need and where to find it when you go here because it is easy to get lost and there are no Jo-Ann Sherpas to get you back.",review,fev0iI-XDrteD4SYRKjiUw,1,2,2 +2VU7F1oqCxpVPVlvpwvacw,2011-05-12,8MO9f0lyCc5RJGQ0Lx5IVQ,4,"A trendy looking bar...in the airport, hmmm. Wait, in the Phoenix airport?!? No way, impossible, not a chance. These were all the things I assumed before I actually arrived at Barfly before my flight to Mexico a few weeks ago, and I could not have been more wrong. + +I wish I was there longer and actually had a chance to sample some of their offered dishes, which honest to god sounded pretty decent. It's still the airport so plan on paying the awesome prices of $10 a beer etc but at least you can spend your pre-flight time drinking on a cozy leather couch watching tube rather than the alternative Fox Sports bar in every other terminal.",review,1kED3-g-gqnc4JgHe89Xqw,3,2,3 +Oc-F6O91vOe3T8iOsCBB8Q,2011-05-31,lS8yhfnUiR_kiaW_ZPoY3w,5,"Amazing sushi. Fast, clean, fresh. Friendly staff. Favorites are Arizona, Beauty, Alaska, and Spicy Ninja, although everything here is some of the best around hands down!",review,vmZh2hlUeC-18cbg544nyw,1,1,1 +MagW3D2UDQaP6KHzhauUHw,2008-12-08,FwFptcCNvQKTnJ5RzSfEXQ,4,"Finally, a pizza place that delivers to the Grayhawk area. Seriously, when I moved here over the summer and was unpacking I was shocked to learn that no one except Domino's delivers to Grayhawk. At all. Now, on my honeymoon in October I was in Giza, Egypt and saw that, if you stand with the Sphinx facing your back, you can see a Pizza Hut. Yes, that is correct, you can get pizza delivered to the Great Pyramids and Sphinx, but not to Grayhawk. + +But, now we have Zpizza, and it is good. The pizzas range from the usual to more inventive things, such as the Casablanca, which has artichokes. They also feature organic and healthy selections, such as soy or low fat cheese and wheat or gluten free crust. They salads are also fresh and tasty and, while I have not tried them, they also serve sandwiches. + +Overall, a good pie, wide selection and it delivers!",review,cEIeuU0-4fX0Y4qCUW3PwQ,2,1,1 +N0xJodW788eT7Dx0O-N-OA,2012-02-01,cdlWXipuSxO31Z-dslXm4g,2,"Ok... lets review this Walgreen. They sell drugs, and cigarettes. All they need to add is sex and rock 'n roll and they would have it all! :) + +I never really understood how a ""drug store"" (aka a place that one would think is interested in your well being) (they even have a health clinic in this particular location) could sell so much stuff that is really bad for you. + +Time to get off my soap box. + +I am not a overly big Walgreen's fan. I hate that they do not do the $4 generic prescriptions like many other large pharmacies do. + +There also ALWAYS seems to be a long line at this particular location when picking up medication. Nothing like standing in line in front of the ""health clinic' full of sick people waiting to be seen by a ""health care provider"" (aka nurse), waiting to pick up my 3 month supply of Viagra... and a six pack of Walgreen's Brand Beer for $1.99. What can I say... I am a cheap drunk!",review,TTP7l5g4QUVCpQZ9NTAWqw,0,0,2 +5VMajxduxfLPSyQkVFKESg,2009-05-25,Ara0sTkxzal4mYe-ZE50fA,3,"A little disappointed... We have been waiting for the right moment to visit this place and today turned out to be that day. First of all, the location is in the middle of what looks to be a ghost town. The interior had a lot of character with items like the family owned John Deer tractor ;) Anyway, we had the full slab with 2 sides, a bottle of ginger beer and a drink. Honestly, I expected more from this place. The meat was dry, bland and over done. My bf and I both agreed that our fav in Arizona is still Famous Dave's where pay pretty much the same price, get to sit and relax while they serve you, and the food is better. + +*Location = kinda out there +*Price = for a cafeteria style bbq....I think it's a little much +*Food = it's not all that...at least to us +*Decor = very classic and full of character + +*** I just received a really nice message from the owner, Joe. I think it's wonderful that Joe cares about each customer's comments and reviews. Even though my review was not a very positive one, Joe was polite and very kind. Thank you Joe and I think I'm definitely gonna persuade my bf to try your restaurant again :)***",review,cH1lLTHReO6uDTif9bfOBA,0,0,0 +YPBD9sZX8YSd3Al_5jnoIw,2011-08-03,Kvk3tN7_GYP0JbcGoCNs9Q,4,"This Gamestop is nicely stocked and it is very clean. When I checked in here, I was picking up a copy of 007: Blood Stone. It is currently on sale NEW for $9.99. A fantastic price! + +Here's the catch. I tried their ""Pick-Up In Store"" service, in which you pick out the game online, you enter either your Rewards Card Number (which I have), or you enter your Credit Card number, just to make sure that you aren't making a bogus claim. Then you can go ahead and pick it up right away in store. + +BUT. They gave me a USED copy of the game, and wanted to charge me $22.95! Are you kidding?! I just saw the ad online, and I reserved a NEW copy for $9.99. The last thing I want is a colossal mix-up... I don't know how they could have messed this up. + +This place would have gotten a 5 star rating, but with the colossal mess up with the pickup, I will only give them 4.",review,OAhO2G3tOfMpO40UlMqbiA,0,0,0 +LO3uvzhh3fUtEQD3AJUxWw,2011-10-14,WbQy4R8MWCQSD__jHTLfFg,2,Fine for an overnight at the airport. Not a vacation destination. Needs a full restoration. Breakfast included.,review,kBLRAhPq2H2duJQNtRqHTA,0,0,0 +xC3s402bu9HBJwvH0RUUZg,2012-04-01,JKewmprAMD-uIp2mjOO9zQ,5,"WOW!!! A real European bakery! This was awesome, after having lunch next door at La Buona Pasta we took home some kalachi's and walnut roll home for later. The cakes are varied and everything looks buttery good and sweet. Having grown up near a Swedish bakery it kind of remind me of that--donuts, cakes, cheesecakes, breads and other European specialties. The shop is also set up with a small section of Polish-centric groceries. mmmm maybe I will have to learn to cook some Polish dishes. Next special occasion my cake is coming from there. :-) + +The one we visited is +13331 W. Indian School Rd. +Litchfield Park, AZ 85340 USA +623-547-4655",review,HjeIsXfc6ZBq2qczSmuZIA,0,0,0 +Xh7lpLo9TxodWgV5VdWeiA,2012-02-13,ywin5PbLRvELRyg_hKjPpw,4,Great egg drop soup. Kung pao chicken - meh. Beef broccoli - yum.,review,HHlIOuuImgBq7Gbn5smaRA,0,0,0 +bMqkyZZzfJ3CnmrgGBjJGg,2011-12-30,aggZ7uyuMeaYdel30NHQiQ,3,"I think if you go to Wendy's you know what you are getting into and compared to some of the other Wendy's it's pretty good. I've gotten food poisoning at Wendy's in my home town, so when i tried this place in Phoenix it was pretty good and didn't make me sick. Granted, it's never going to be perfect, this is fast good not fine dining. In my personal experiences, I've never had a problem, but i think it varies from person to person.",review,GKzWSBv2Dpx3ziMFQ4S0gA,0,0,0 +pwpl-rxwNRQdgqFz_-qMPg,2009-07-09,KPnIH4jRMIFXbhjd40iQ3w,5,"this place is awesome. GO. & soon - already decent wait times. + +OH, pitches of pbr for 7 bucks. yeah, yeah. shut up. + +GO GO GO.",review,pU2lBD_W3VNvpzKZsRzi2A,3,2,3 +vA9dAPd9fQt_3HqZylKfVA,2009-06-22,RwcmJv5jfloYM3T2druBRw,5,"I was so happy when I saw this chain appear in AZ. I used to frequent it in CA and have never found another sub that comes close. + +I think the secret to their success lies in the freshness and quality of their meats and cheeses - always sliced to order. If you are looking for a veggie sandwich - you will be limited here. But, if you like a hearty cheesesteak or italian sub you are in for a treat. They also take a bit of a different approach in that they really douse their sandwiches in oil & vinegar. It is a different approach but seriously good! The ""Mike's Way"" option (lettuce, onions & tomatoes) is a bit bland, I love to add the mustard, mayo & pepperocini. + +Their signature sandwich is the #13. It has several flavorful italian meats plus freshly sliced cheese. Don't judge this place until you have tried that sandwich! It is unlike any other chain's offering & really amazing. + +Their sandwich sizes are a bit different from the regular foot-long, but if you order the largest size you are getting quite a bit for your money. I've visited the one that just opened in Chandler and was completely pleased. And, I'm happy to hear they are now opening one in Ahwatukee. + +They also seem to have a high focus on customer service - I've always been met by very cheerful, helpful people. Not a necessity for a sandwich, but certainly a lot better than the opposite.",review,lXxoslno8L2b9klBsdThhg,1,1,0 +lQ22GkzG0tIJRbzkpMbJxw,2012-04-10,0YWNnu19OM7nAn0q0hZKcg,1,I have literally never seen this place open and I live two blocks away.,review,E679YrWlyTpvkOBDhAssIg,0,0,1 +tdcjXyFLMKAsvRhURNOkCg,2009-03-25,KFKl7CzK-HnFy45miuvjQA,5,"This place was once known as J Chew and Company. I loved that place and this new version is still great. + +So comfy, so casual, so welcoming and so non-scottsdaley it's just the best.",review,sEWeeq41k4ohBz4jS_iGRw,5,6,2 +YvQKDmSQqs-R7vPEWV2EiA,2010-03-29,KxNP1IschSc1nwhtPy19Zg,5,"I'm not a fan of chains. I far prefer to find, and give my business to, new and interesting local fare. That said, there are a couple of chains I like and one is Texas Roadhouse. + +Texas Roadhouse does two things really well: steak and portions. I can go to a Texas Roadhouse anywhere and get a well-made ribeye at a very reasonable price. It made not be ""fork tender"" or the same quality as a $50 ribeye, but it'll only cost me $18 and I know it will be far superior to any other, more expensive, chain steakhouse. But before I get that steak, I'll get peanuts, bread, salad, and sides. So I'll likely have half a steak for lunch the next day. + +Like I said, well made steak and portions. I'm good with that.",review,LTX9pmF-zXPYB4wE8b9RZg,1,2,0 +jCUOqEK8Lln0PK3GeUl6IQ,2010-09-23,G93HpFhjWBhZys2vkhZCyA,4,"Friendly atmosphere, cool decor, good iced tea and iced chai, great bagels and tasty cupcakes! I had some trouble logging onto their WiFi, but my computer tends to be petulant.",review,s2JTkU5BbXg7-aHeLDIWLA,0,1,0 +ky3kuTeqTUOU4CsZ_2_LzQ,2010-10-18,yumgsa9m02CACzq0dHZP7Q,3,"I made it home for two nights, and I would do it again. It is extremely close to ASU's campus. It was clean, people were friendly and I got a free ride to the airport. It was a great price; normal mid-range hotel with no amazing views. It has the amenities you need for a quick visit-including a pool and gym. The free continental breakfast is ok, especially if you just want cereal. I would not order bacon-not worth $2 extra.",review,cQfnnQhGCFzd0P1MsJu21g,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2013-01-01,-Cs7wUUU2SKve37cb5-_wA,4,"Great work lunch. Valet parking, only. Waitress was helpful in narrowing down my selection (salmon salad) and listened to my criteria. 4 stars since wait staff seemed otherwise aloof.",review,fs3dWymMSrrNCB8X2HlWXg,0,0,0 +3ZzLRa20P219UWXIxMTXrg,2006-02-03,2vgAy9AE1XNkF0wPMyQ1kA,2,"Terrible coffee. So bitter I would have to dump a quarter cup of cream and several heaping tablespoons of sugar into this cup-a-joe to overpower the flavor... but at that point, why wouldn't I go all out and find myself a milkshake or some other creamy sugary treat? + + + +The muffins are the size of your head. Lots of calorie-laden treats. I had some carrot cake once and it had that stale refrigerator flavor in the icing. What a waste. + + + +My advice, walk across the street to Starbucks. At least you'll get a mediocre cup of coffee instead of a bad one.",review,e4TQFVfepzHf--hnBsjntg,0,0,0 +_HTE4pOKeJC7kcxiCF9vTA,2008-01-26,WzKupgCvkwcwEUBY7p0msg,4,"Nearly half a decade ago, a man's fantasy became reality in a form never seen before: Scottsdale, Arizona. The motivation for overhauling the city's master plan was to create the greatest feast for the senses in the American Southwest. Everyday, reputations are on the line as master chefs pit their artistic creations against each other. + +If my memory serves me correctly, and I think it does, the French first colonized Indochine in hopes of seeking access to rubber. And the greatest beneficiary of this decision would be the brothers Andre and Edouard Michelin, inventors of the world's first removable pneumatic tire. To encourage automobile sales, and by extension, their tires, the Michelin Company begin to print free travel guides at the turn of the century with recommendations and ratings systems for restaurants, hotels, and attractions throughout France. These ratings are still the most influential culinary grades in the Western world. It should come as no surprise that as controversy about the Michelin system has grown, Vietnamese cuisine has finally seen the rubber hit the road. + +A recent addition to Scottsdale's culinary universe is Andre Nguyen. Having migrated to America near the end of Republican Vietnam. Arriving in Seattle, Nguyen attended culinary school and met his wife, Noel. But despite the lure of of other cuisines, the chef stayed true to his roots and opened Andre's Eurasian Bistro in the suburb of Bellevue. His success was almost derailed by a fire that gutted the place. Ngyuen however used the time as a sabbatical, improving his craft, and re-opened his restaurant. Local journalists likened it to the Greek mythological creature of rebirth , the phoenix. + +But as luck would have it, he and his wife sought out to leave soggy Seattle for arid Arizona for a different Phoenix. At the end of 2005, they took over a hole-in-the-wall called Pho AZ and named it ""Noodles Ranch"". Here today, Chef Andre rules the roost with impressive skill. + +The interior decor flatters the otherwise mundane feel of the strip mall in which it sits. Andre has been careful to use color and light to accent various pictures, newspaper clippings and other decorations. But what will surprise the visitor is the degree in which Andre takes this so seriously as to neglect not even the bathroom from this regime. + +His menu is a mix of predictable, authentic Vietnamese dishes and his own creations borrowed from other cuisines or his own imagination. Chef Andre is not a reckless auteur, but his more audacious dishes may have fewer fans than his bread and butter. + +As the Chef takes many of the orders personally, guests often might assume the service to be poor, undercut by Andre's own seemingly curt personality. But this ignores the fact that in authentic Asian restaurants, servers often seem more distant and unpleasant than Denny's. Do not let Andre's intent become lost in translation. + +Finally, in standing with his other bretheren, the Chef achieves this all with low prices. Now Chef Andre, ""the Giant"", after years of success in the land of gray skies face your greatest challenge yet. Hold your own against the city's most eminent gourmands, not just for you but for the good of all Scottsdale.",review,IMsUuPGFQoNMeZzbhqtiCw,4,3,2 +s9XNBJAZ3ZcNW5u8BRZXuw,2012-02-08,9pnDtSDFsll9uCU7GKqPFQ,5,"I picked up a jar of fresh-made salsa and chips for the Superbowl party I was attending last Sunday because they are that outstanding! They were a big hit! + +If you are dining at the Blue Adobe, definitely try the chips and salsa. I am not a big fan of chipotle seasoning... it is definitely one of the key ingredients, but regardless I think it tastes great. If you like it, you can buy a jar of the fresh salsa and take it home with you for about $9 (it is a good sized jar).",review,K6MrbZeqKG35ZiucFfucvw,2,2,1 +f0EBgORnWfcabOUhodvCGw,2011-08-22,o0Ge7nSnZ4l99O-Y06mZQQ,4,"From reading previous reviews, times have changed. The jockstrap has evolved since previous reviews. This sports authority is #1 source of sporting goods. Check out the Under Armour athletic apparel in the mens section, as they have mens trunk underwear that will keep the jingle in your jangle and is as described. I've purchased a couple and its evolutionary. Like any retail store, when it comes to pricing you have to be proactive. To get a break, I check out the Wednesday flier that's in with the junk mail or sunday inserts. Usually you can find some good incentives. Also if you take a couple of minutes to do their invitation online survey you get $10 off of $50. That's 20% and if you are willing to succumb your online privacy and give them your email, they will notify you of employee friends and family promotions at 25% off. I used it to purchase a $399 Diamondback that I ended up getting for $200 after a sale. Staff are friendly if you ask and if they don't have a size will do a check to see if another location carries what you are looking for. I'm wondering where their Puma selection is as I would consider that to be just as popular as addidas. Due to the location it's my first sports stop, and even though I remember Albertsons, the last thing I'll be thinking about when I'm there is cottage cheese.",review,THYIqfnLV54VZ_v2hCfq2Q,0,0,0 +YnWb8fRudnNkXc-VjrmKGg,2012-10-20,pObvsF-jJruiT6ZmFhN2dA,4,"Been to the Saigon Kitchen 3 times now. Once with a friend, another with my teenage daughter and other on a lunch date with my husband. Will have to say have been absolutely pleased each time. I ordered the Shaken beef (diced Filet Mignon) each time. Husband ordered the Chicken Curry (which he liked) and we enjoyed egg rolls. + +The food has been hot, tastes fresh, excellent presentation and absolutely delicious. Portions, in my opinion, are definitely a good portion---just right. Entree is served with white rice, soup/broth, and a tasty shredded side salad with a great Asian dressing. + +Staff was polite and attentive, food came out in a timely manner. Have thoroughly enjoyed my experience each time. They play nice ""Global Ambient"" music, the restaurant is somewhat small yet cozy. It has a nice ""grown up"" simple Asian feel. Definitely a great place to meet a significant other or good friend to lunch. + +NOT a place I would recommend for children; tables are somewhat close together and it has a relaxing feel. Menu seemingly NOT designed with kids meals etc. Also a bit expensive if considering price. Hubby and I each had the Shaken Beef lunch with egg roll appetizer and drinks, it came out to $39. Worth the money, but if you are watching budget on a lunch date, just something to consider. + +We definitely have listed this as a favorite place for us to dine sans kids!",review,kU7iQDW70gcCVBX9uQVFHA,0,0,0 +eJpr6Ks8pr4bmvDVPTN-Xg,2010-01-22,WYjVHHtFYDX0PWucZ_AiZw,3,"The owner of Vermont Sandwich Co. just contacted me and offered to make right what happened to me during my last visit. Nice gesture but I had to decline. I didn't write what I did for a handout but I'm giving this place one more star for the offer. + +Vermont Sandwich Co is very highly rated. For the owner to try to make right by one negative commenter among a multitude of positive, says something about the owner's integrity. + +I think a return visit to Vermont Sandwich Co. may be in order...",review,vCqiNuf7iEK71ytGBzwkKg,7,7,5 +qz4ZOcv-840UjfCEYI4qZg,2010-06-28,_krbgG8nZW4ipJLfZ83Z0Q,4,"I'm a fan of J.T.'s. Reasonable drinks and REALLY good wings. It's small, so it can get pretty crowded, but the people are friendly, service is good, too. J.T. 's is a great neighborhood bar, nearly free of any douchebaggery.",review,2eVF68QkqhjPBFYI_4ErLA,0,2,1 +Kt0DIPfjR5WPVpEqyIGdBQ,2011-03-18,jr3tV_oCvt8mHq9VgyLORA,4,"Step back into the 1990s and enjoy a workout! Nice clean facility. Equipment sort of jammed in at odd angles (in the large weight/cardio room) but its good stuff. Not sure the purpose of two weight rooms. I think the club is more tennis based yet they have do have group exercise classes, racquetball courts and a pool. + +I think the spinning room may have been a children's nursery at one time based on the wall graphics, the black light effect is unique. If this were my club I'd place the emphasis on spinning classes and convert the smaller weight room into a spinning studio. + +Dropped a star because the women's locker room doesn't have a sauna. + +Very friendly employees! I am so glad to be greeted with a smile when walking in the door. Everyone on the staff is friendly. Quaint club. . . in a good way.",review,B84_jVH5SYE9NZn25IjbdQ,1,1,0 +d_8bMNQd0mesbEUeq1U2kQ,2012-01-16,5jqJpDe8P22HtS4GH4kZ_A,5,"This is by far my favorite Indian restaurant in the Phoenix area and the best! + +The food is very delicious and the owner, Preet, is very hospitable. + +Too bad I no longer live in Ahwatukee. All I could think of when I was at a restaurant down the street from my place earlier, is how mouth-watering Star of India's chicken tikka masala is.... Yumm! + +A must visit!",review,U1VhMJAKHaTqCSIp9RoRcg,1,0,0 +V6BYjHM9SnXscfkln3hCdA,2010-08-02,NZ_DqNIqYTMLhVoCfkD2vg,4,"love their food, great for lunch and breakfast.... + +the service is a little hit or miss but they always keep your coffee cup full-you will almost always have to ask for extra milk-but whatever. + +Love having the breakfast sandwich or their pancakes-my favorite ones are no longer on the menu though :( they had apples, sour cream and honey over them SO GOOD! + +Not a place for breakfast cocktails though, so don't anticipate a good bloody mary. their sandwiches are amazing, I've had several and have never been disappointed. + +Despite the shoty service it's a great spot for breakfast or lunch so definitely give it a try.",review,Jc4riSibQf4xfxTQqX65Cw,0,0,0 +opikDGSxDcfZwYWbk7dKtw,2008-08-25,hYP_AplDFDy2qfZ0vi7TyA,3,"meh...... I'm torn. +I found this store to be a little bit of a walking contradiction.(okay, not ""walking"" but you dig what I'm saying) +Reminds me of myself in alot of ways....not all of which are good. + + You see, I recycle EVERYTHING at work because the cute little receptacles are provided for me by waste management thus leading me to not actually think about what I'm doing. Plus, I co-manage a 26 story high rise mid-town and with the whole ""green"" movement, we'd be setting ourselves up for some major problems if we didn't comply with demand and of course, it does just ""make sense"". At home, not so much and to be blunt I don't really think twice about it. (go on.....hate) + +This is how I feel about Fresh & Easy. Hybrid parking (fkn ridiculous) but no bike rack?? WTF??..... Tons of bullshit organic produce and no preservatives but then everything has been super sealed in some weird plastic containers. The F&E brand crapola that I tried was mediocre at best, also, it seemed like everything I picked up was within a day of expiration. + +I don't know about you F&E. We could be kindred sprits.... but two wrongs don't always make a right.",review,y9IKf7VckFc-fesWuDwgxg,5,5,5 +7QSYBp2-AOdyUJXEaLnbgA,2012-09-18,lM4HseCRr108Fe1vmTsp6Q,5,"Great quality food, atmosphere, and location. This is a place to take a date to or just to have an enjoyable evening with great food. The meatloaf (When they have it) is amazing. Steak is also top ofthe line.. Definitely recommend..",review,tFyQbNbBQEyEc9oCr1pJUg,0,0,0 +ntN85eu27C04nwyPa8IHtw,2006-05-12,UWvzV6C2kNFgwvkQSo2Pgg,4,"best breakfeast downtown ... bar none ... it's far more ""healthy"" than I traditionally prefer but the place is beatiful, very cool and has an ADORABLE waitress ;) !!!!",review,A_O8wZOsMTPwyeYA4-Rsow,1,1,1 +rIonUa02zMz_ki8eF-Adug,2011-03-14,JG-HkjNDalM4L6wOkmJ_1A,2,"I wasn't aware the hamburgers came with two patties until I bit into the large fatty food eating competition mess of a burger. It was good but my arteries screamed at me for the rest of the day. The fries were ok. I opted for the cajun fries which were a bit soggy. +The place it diner-esque. Music bumpin' and the coke machines are all high tech and fun to use. +I don't plan on putting this place in my rotation of burger joints but I'm glad I tried it to see what all the hype was. Hype is usually just hype!",review,qaAmAU9T_t84UDGiBI98sw,0,1,0 +gFGldPLVQdqbHQodU5TeUw,2011-12-06,9mQ72z_pidjXkSGc-gHI4w,5,"What's all the fuss? I'm not sure what folks compare this chain too? The Dead Duck Inn? Joe's local Chinese Gag house? Are those places that great? Sooo fresh and delicious!? Not in my days? Pre-made sitting around and HEAVY oil is what I see from most other establishments. Even those touted by friends. Maybe it's because they know George from behind the counter. It's not Pei Wei! Pei Wei is a quick, fresh and inexpensive gift from heaven. Even the hard to please Yelper has to admit, the multiple options you have to modify your meal should give you no excuse not to love what you order. The food is fresh and prepared to order. Even fried rice is made to order. The sauces are made from scratch and are a combination of quality Chinese ingredients. (Chili paste, fresh garlic, scallions, bean curd, and a bounty of fresh Chinese vegetables). Go Yon China will serve you pre-made sauces with no punch and lots of giggle. The atmosphere at Pei Wei is great! Black and dark red with glossy graphics and all sorts of Chinese! Even with the ""stand in line"" style of dining. Makes me hungry just thinkin' about the joint. However, to me it's a take out Ferrari! Call in, swipe my card and off I go. Sure, it's not Chang's. Still, it's better than the local Dead Duck Inn's ""food"" stained art, with a Chinese New Year paper place mat. + +Of course! I'm looking at the healthier options a Chinese food place may have to offer, and Pei Wei lifts the bar in multiple sets! Get your chicken steamed, go brown rice, add extra vegetables or go vegetarian. Still you may complain...""Oh, is it too salty? Or too sweet?"" Give me a break. This is CHINESE FOOD! And, you won't find MSG. So, if you don't want spicy, salty or sweet; have a meal from Bland of the Rising Sun. But, if you want a highly under rated treat...I ask you to open your mind to this familiar spot for clean, fresh, made to order and ""if you like"" healthy Chinese food!",review,DnEn4DrIdhLqm9y6frQmvQ,1,1,0 +Nj6ITW0Zhl7LpovGIH6SAg,2010-08-16,X-ZT6XrnXW0c1sbb6oTavQ,4,"The biggest tip for Last Chance is to go in with an open mind about what to buy. Inevitably, if you're looking for rainboots and remember seeing a ton the last time you were there, there won't be a single pair to be found when you return. This happened to me recently -- but, instead of the boots, I found an unopened package of Spanx (marked down from $36 to $7.97), olive-colored DKNY tights for $.97, and a pair of Hunter knee-high boot socks for $4.97 (for when I eventually do find the rain boots). I wasn't really looking for any of these finds, but couldn't resist. You just never know what will be there -- I saw one woman toting around three life-sized cardboard stand-ups of Twilight characters. Go with the flow, and don't get too focused on one particular brand or item.",review,wha2RtvuIpEzekV4tmTFpQ,1,0,0 +ZNi59SPFF2GXSmRrk-f5Rw,2011-09-02,D4PT0jk6d_Wsszh2mZsddA,1,"AMC Theaters has the distinct disadvantage in Phoenix at operating in a town with a high-quality, local provider of entertainment (Harkins) and they really pale in comparison. Tonight we went to the AMC 24 at Arizona Center, which is literally right near our house, but we've been there only two or three times in as many years. Why? Because AMC doesn't offer a senior discount any longer. + +For AMC Management -- Did you know that there is a huge population of older people living in condos in the downtown Phoenix location who go to moves three and four times a week? I think it is absolutely ridiculous that I could go to a Harkins and see a movie for $12-13 for two but when it's an AMC Theater, it's $20. Do they think they are so special that they warrant this extra ""tax""? + +The theater is generally clean and nice, but the prices on sodas and popcorn are too high, combined with the fact that they don't offer the discount to seniors. AMC, please just fold up your tent and go away. We don't need you here.",review,1-A_PLT-60EZ9MsfbkV9sw,0,2,0 +rhxBsu0k_BddgjOP9MYdeA,2009-03-25,dGuQDhH6NZnNCMuSwHx2jw,4,"Customer service is always top notch - returns always easy, greeters always helpful. + +I have never had a problem using 2,3, 4 or even 5 coupons for 20% off or their $5 off discounts either. + +Great clearnace, good end of season sales, amazing selection of colors for bedroom or bathoom. Excellent space savers & container suggestions for clutter. + +Love their glassware like Ridel & Elisch & Mikasa stemware.",review,h7v_M_0-YVpSVZ2WD7FpAA,2,3,1 +oc0Wl6ktfMLb5VZ2Uz6M2A,2012-02-05,m1xX6vf7XHJY7qWx29n5kg,2,"I really like the ambiance here for breakfast but the service is TERRIBLE and they are always out of staple items, like English Breakfast tea. + +I had a morning business meeting breakfast here, paid the bill and tipped 20%. I asked for more tea and got charged again, okay, fair enough. I paid the additional bill but did not tip again on the $2.50, the waiter followed me outside and confronted me about why I didn't tip again on the second bill as I was standing with my client. Tacky. Also, they need to step up the menu. The menu is limited and not prepared very well, which is a shame, because it has a great Euro Cafe type of environment.",review,KFMmXJUCuIx-FnJu2wAh4g,0,2,1 +i41M_To0DAxuzZIGvU1wyg,2008-01-24,r7KI7dCOCdeQA8D2yKuwCA,1,"Bitzee Mama's isn't my mama! My mama wouldn't have kept her hungry son waiting forever for his lunch. She wouldn't have let my go thirsty with no refills. She does make a good bowl of salsa so that makes it alright, right? + +Took my real mama there for lunch.. I ordered the taco salad and ma ordered the cheese enchilada plate.. also a bowl or red chile. Taco salad was alright except the taco shell was so mushy from water it literally fell apart when I picked it up.. glad I wasn't eating the shell. She's old school.. makes a darn good cheese enchilada and refried beans. Struck out again with the red chile.. I swear, can no one except La Canasta make red chile? While the meat was tender and the sauce was smooth it had a weird orange color to it and the meat tasted, well wasn't any beef Ive ever had. + +On the way to the counter to pay my bill I noticed that almost everyone was eating chimichanga's.. well then, looks like I ordered the wrong thing! Place is also uber cheap. + +Be careful what you order and mama will be just fine.",review,lPaYMDmJbAnv_3pmZH_inw,3,5,4 +I5ypI3aYbbTL8dAjnI3PDw,2010-04-15,ynagltjAr25JZ2Y8PNLYiw,4,"The staff here made the place awesome. They were friendly, on top of things (including when I lost my cell phone), and didn't really blink an eye at the crazy antics of the adult webmasters. + +I loved how close they are to food, bars, and even adult romance store on Mill -- I could just walk through the court yard and hit Rula Bula and RA. + +However, I had two things I didn't like as much. A) there wasn't enough non-outdoor, non-sunny space to hang out in. Yes, it's Phoenix and people come here to get tan...but I live here, and burn ridiculously easily. Yet everything was in the sun, because there was no large, sun-free area. Also, b) while the lobby, courtyard and seminar rooms were nice, the hallways and actual hotel rooms seemed a bit outdated. Also, trying to find the pool with no signs? Not so much fun. + +All in all, a nice hotel and the perfect place to hold a pervert conference. I'm sure I'll be back at some point!",review,rR5W8Bj-IGu6sw1_1v4m7g,5,5,3 +J7ZNnzbCoyMqd-y608wl6A,2009-11-13,0Cl45wu_h16i2uNwMsDnpQ,2,"With regard to AMber W.'s points + +1. I'm rating the food not the containers or the owners +2. If it makes you feel better eating subpar food because of the American Spirit so be it. Others of us are more concerned with the food itself. +3. I'm not downgrading it because it's not a sit down restaurant. Even among non-sit down restaurants or ""fast food"" style Indian themed eateries, this place is subpar. I've eaten at quick Indian eateries and they are much better than this. +4. My review is for people who understand and can appreciate good Indian food. It's not for people who value text service, nice containers and chatty owners. +5. I want to support mom and pop and locally owned restaurants but I also want to support good ones and not encourage bad ones to emerge simply because there is no competition for Indian themed restaurants here.",review,GkWuTgewni9bzPM4HUCO-g,0,0,0 +r8CwFUEQtL8gAT9KHnNhuw,2011-11-21,yn1NLnSEkQO2FDO2vcCG7A,4,"oh these wings were freaking amaaizizznzng, + +el heffe i believe they were... the bartender seemed very cool and concerened on what i was getting.. great suggestions.",review,AncVDK7eNz6c0pxLxAl42w,0,0,0 +4DhqZ0tyi2V2Mp8IqTREAA,2010-06-03,Dv1rz-5vdATqmlPFIGJ8Fw,4,"I have been wanting to try Big Daddy's since it opened and finally today was the day for some lunch there! + +I was expecting cold mac and cheese based on some of the reviews, so imagine my surprise when it burned six layers of flesh off my tongue. + +The mac was HOT, the sweet potato fries were HOT and my pulled pork was HOT, so I do not see what the fuss is about. The fries are a little on the heavy, sweet side so I could only eat a few but they are pretty good. The mac was dreamy and thank you for including some of the browned/burnt crusty stuff from the top... mmm I am a simple man and easily pleased, I guess. + +Overall I can't give it 5 stars because I think it's a tad overpriced, but I still think the value is good. I'll be back to work my way through some ribs and wings and wash down with beer next time...",review,R50WCEHhvycn6OzoEkA2Zg,0,0,0 +E3RjJH45EX6rHYDs0TYSRA,2010-12-17,iUZCOWobnyGQIuk9olHyrQ,4,"This place just has a really good happy hour. I usually just stick to appetizers when I go but with free chips and salsa all night, I don't need much more. Their happy hour goes from 3:00 to 7:30, fantastic considering happy hours seem to be ending earlier and earlier now a days. + +There are plenty of HDTV's around to keep me entertained, so I'm gonna guess it gets really busy on Sundays during football. + +This is just a good place for pretty cheap drinks and decent Mexican food.",review,Mex8qXT7nR89uTKX_qtgSA,0,0,0 +91n02N35x38nvR1XH-jOAw,2010-04-23,jyUPscTxt0RxY2whqyPg7g,3,"Is Jimmy single? Cause if he is, I'd like to introduce myself. + +Nice local Italian spot. + +Decent prices. + +Friendly service. + +Antipasta salad was great, lots of goodies for the money. Meatballs and Italian sausage were okay bu the spicy sauce was great. + +I will be back to try the pizza, get another salad and ask if Jimmy is around.",review,PVbcpvrSKv2GTBK9QiQgiA,0,0,1 +D1T1jtCfTfXD-cQE3QViow,2010-10-21,MVhLlljYhksJJ-V2hbfLRg,3,"Went to try it out yesterday morning. The service was so-so. It wasn't crowded, and it took awhile for me to be noticed (and I'm 6'2"", 275!)The Arbuckle's coffee was great. Ordered the #2.....2 eggs, 2 pancakes, 2 sausage patties and 2 strips of bacon for $5.99. Everything was fine except the sausage which had a peculiar flavor....the bacon strips were thick and tasty, the eggs okay, and the cakes were very good with an interesting touch....instead of the normal one glob of butter on top of the two cakes, there was one on top and one between the two cakes (made for easy buttering of the bottom cake). All in all worth another try (might have been just an off day for the sausage). Wish it were closer to home!",review,TWtSLPNSif6AdhXTiFKNPA,0,0,0 +qHjUo2foq-IXF6Tk1Iz3WQ,2010-06-19,EZMUOLfNkyO1Hc83g1Ipqg,4,"Why have I lived in the Valley for eight years and not been here until yesterday? Seriously was missing out. (And being such a Mexican food junkie that even my friends and family can't stand me warrants the trip alone). + +Chimi = Good. Not as good as some other places I've been to. But good. +Everything else = Really good. + +Food is filling, and its easy to indulge in... + +Service bothered me. Don't get me wrong. Our waiters were very friendly. But its like... + +Dude...this drink has been empty for 15 minutes...why is it not full?! Had to ask for things, refills on water, more chips and salsa (Which are fabulous, by the way), etc, etc. Maybe I'm overly expectant and believe that water glasses should be full at times. Either way, its not a big deal. + +Carlos O'Briens - you should expect my business in the future. I promise I'll be good and go the gym soon thereafter.",review,0KXxuKxlspsO6CrDLgQJ-w,0,1,0 +6HAwTnhNJoR5VNdfUrRoEw,2007-06-13,JajBITnpkrsojj-Hpq-0Yg,3,"Other than at grocery stores, it's becoming more and more difficult to find a simple, decent donut shop. And for some strange reason, there aren't any Dunkin Donuts in Chandler or Gilbert (can someone explain this phenomena to me?). I know, for donut purists out there, Dunkin Donuts is just another corporate chain. But I happen to think their donuts and coffee are pretty tasty! That said, Bosa Donuts is nice alternative. It's a small shop with a good variety of freshly made donuts. I especially liked the chocolate frosted cake donuts. They were really good. The coffee was ok, let's say... better than ""breakroom"" coffee. Located just north of the Downtown Chandler area, Bosa Donuts has both walk-in and drive-thru service 24 hours a day, 7 days a week.",review,n1h87EmG_HBlp33v3X_QuA,2,2,1 +nts2OALwvyvfNh9focRZ3w,2011-05-23,ADziQkUoHwIvM-qdFcHTvg,4,Good food and good service in a convenient location to South Mountain. Great place for a weekend breakfast!,review,pEVf8GRshP9HUkSpizc9LA,1,2,0 +69c7z9ySnlqV87tITDGENA,2012-05-25,A97bcBk3chRQFLMlwiN4Ig,5,"If you desire true Chicago deep dish pizza, then Nello's should be at the top of your list! This is a staple pizza location in the Valley- and my family has been going for years. Nello's offers a great menu, drink list, and atmosphere. They offer an excellent Mon-Fri lunch special - a large drink, salad and 2-topping personal pizza for $8.99- what a steal! Don't pass this place up, it's worth it.",review,-7LfdqX286W8zJ01ljY_SQ,0,0,0 +MMMHmbfq3nxUQREU4hKOKg,2011-12-06,Aycn-UqYXiNZR8q6hovHNA,5,"My house has never been this clean EVER!!! I am thrilled with the level of service and professionalism expressed by the women who cleaned my house today! I bought a Living Social coupon, and I am so glad I found this company. 5 women arrived and fully cleaned my house in 45 minutes. The women were friendly to me and especially my dog, which is the sign of a wonderful company, if you ask me. I am hoping I am able to use this service on a monthly basis. Angela scheduled my appointment immediately when I let her know I had company coming in town, and the cleaners arrived during the scheduled time. I am thrilled with the results!",review,7W4egS-WyR0hRHMfQtPEOQ,0,2,0 +bLPTtVgxxlDMUDp5AKPINA,2011-06-11,XUlXz5ovpIOgOuAcYIcFuw,4,"I was looking for a place where I could get new tires and an oil change that was near home. Luckily there is an Advanced Auto Service and Tire Center south of Old Town Scottsdale on Thomas Rd. I initially went in for two new tires, but ended up getting four new tires since all tires were the original ones from when I bought the car. Fortunately, I am getting a $80 rebate on the tires which is a good thing considering the cost of the Goodyear tires. + +It took about 90 minutes to get the four new tires installed in addition to an oil change. I worked with Jason and he provided excellent customer service from inspecting my tires to recommending the best tires.",review,bwSkOcVrS9kXbS7UKBanRA,1,2,0 +kjPNxaueXm5nm97aMxbg6A,2010-11-08,vPBiVDeB2b6bca5Lthgl2g,5,"The Flower Studio far exceeded my expectations at my wedding! Christine is an amazing artist, businesswoman and person. She made time to meet with me outside her regular hours and really understood my vision for my wedding. Her arrangements for my wedding were absolutely stunning and really took the event to the next level. I am more than thrilled with this company and would recommend them to anyone. Thank you Flower Studio for making my wedding so beautiful.",review,e3i2J-cBKJoP9Mth5uolhw,0,0,0 +TuCAYZ89lP_s6D7Y78xNhQ,2010-03-31,_W3jGFQVTosdaSUelaQArQ,4,"The Good: +Really good burger. +Good fries. +The Bad: +Terrible paint and lighting. Can't even hang out for long. (Maybe that is the idea.) Don't like high booth stalls much. +JMHO of course. +Also a note to the sewage smell that others noted. That little area on that side of the mall has smelled like hell for years for some odd reason. It sucks for the businesses, but I assure you it has nothing to do with Smashburger alone nor should it cause any health concerns. Just luck of the draw on a bad sewer vent problem. + +Update: 4/18/10 +Went again. Really very good. Decor is still not my fav but the food is solid. Like I said, it is the juiciest burger I have had in a while. Shoestring fries are kill. Upped from 3 stars to four.",review,W_h8ZrIS6mpO4bCqdmbCZg,0,0,0 +vz2zQQSjy-NnnKLZzjjoxA,2011-12-18,OIXjpCqDmB_Ma3gryRhFlA,5,"I dig the breakfast been to 7th and 38th and had Nan's breakfast, Plus have had tamales too so really is something to come back. In 13-years (I live in Cali) been here 26 times and not fancy (although 7th is the one with great pottery and colors inside. I ate 1 time for lunch of dinner and 25 times for brekafast",review,V1TF9IrcxyZiebGigNCPWQ,0,0,0 +i3ycWEmmDivp5TEnx20wVA,2011-11-09,-skX1HIaPx4K5EvXl-VABg,5,Hybrid class!! Did it a few years back and to this day it's the best workout I've ever had. Will be going back FOR SURE,review,LraJWu39nHCBlquYr6SsuA,1,1,0 +Zh_y9AmSfWZpR2JB9wye-A,2012-04-12,YoipuVfIKBuzcsTsSfKZSg,4,"This is a place that you want to go to if you're looking for fresh clean food- not if you want a large meal. I left satisfied but not full. The prices are a bit steeper for the amount of food that you get- but you are paying for quality, not quantity. I opted for a salad which hit the spot- but could have been a tad bigger.... as a result we definitely had room for dessert. I recommend the apple crisp :)",review,dUDzN6zl3j12zhByOrnF9Q,1,2,0 +slpV71Ne8HC0uAzwKLMxVg,2010-05-18,Gdf8vpVrqNWjo02SUpT2rA,4,"Located next to T-Mobile on the Southeast corner, the parking is terrible because of the ""always busy"" Paradise Bakery. + +Good prices (about $1-2 less than most other places), quick service, good manicure and decent arm/hand massage, clean place. + +I plan to come back try out their pedicure soon.",review,CP-IE-zyc2Mv3jlaceElVQ,0,3,0 +MpohnCC0uQNj7DZWaBFSgQ,2012-10-23,hF8W89cfKYZXnsxuwgBOMw,3,"I am not the biggest fan of fast food ever. But I really like Five Guys and this location is superb! + +They have really yummy fries and they give you so many! Like your bag overflows with the greasy buggers. Say what? Yeah they are really greasy. But good! + +The burgers are really quite the bang for your buck too! Not the best burgers in the world but it is fast food not gourmet burgers. Be considerate for what you are eating and enjoy it for what it is. + +The pop machines are radical. You can pretty much have flavoured any beverage you like. + +The staff here is really friendly and that is a plus anywhere you go!",review,k2u1F6spBGhgk2JtAe97QA,1,2,0 +-h-q6zTIdPlkz9BDP11sBg,2011-07-22,nlJ0UziX1OoRRrdl4DAufg,2,"Boring. Uninspired. Generally sauce-less, which means the meat courses are plain and dry. The salmon tastes like styrofoam. The filet is flavorful but they use low quality cuts. The veggies are simply steamed. No doubt the options are healthy, but at the sacrifice of flavor. When I pay this much to eat out, I want to taste it and enjoy it.",review,oDnAAifb_2zj3Cekc5Kbeg,1,2,1 +sF3k_ZSndah1OwduVlb8_w,2011-11-14,pTymuP6MJiTtAFm6yGz4YQ,5,Super cool coffee bar with a great outdoor patio for little ones to run around!,review,dX3MARllgeotUaoHAFFHRA,0,0,0 +yYbd9P1KmlPSKmQxo68n_g,2012-06-23,jEOJX7yamUXjir-Sdr1fJA,5,"I've been here three times and have had terrific food each time. The meat is incredible and their sauces are amazing. Portion sizes are generous and the mac & cheese is delicious! This is what BBQ is all about, definitely one of the best in Phoenix and we're lucky to have it here in the NW valley!",review,ewnwxqKtpDv8erOIZkCpjA,2,1,0 +rDvz5jX65gpfONFu7er9Tw,2009-08-11,UQ3AnY78I-9gVwWNcuR5lQ,3,"As so many others, I found this place because of Guy on triple d. The room mate and I made the drive down one afternoon for some lunch hoping that the experience would make the 30 minute drive worth it. I was kind of surprised when we pulled up. From the outside it wasn't quite what I was expecting. The place is located in a strip mall and nothing really makes it stand out from the road...but figured maybe all the awesome was on the inside. + +We get inside and there are quite a few people. There aren't too many tables and almost all of them were taken. I grabbed the only one available that someone had been recently sitting at and just cleared some of the mess left on the table away. I stepped up to the counter and placed my order for a chicken chimi. It ended up taking a bit longer than I would have expected, but when the food came out it was pretty good. Let me say this now, I'm comparing this place to the Filabertos and Rudolphos and etc. With that in mind, this place is great. The flavor of the chicken is unlike any you would find at those other locations I mentioned. If you compare it to that of items found at other diamonds in the rough, I think it falls short. It is for that reason I give this place 3 stars. If I lived closer to this place I'd eat here on a regular basis I'm sure since the food is not at all bad and the prices are worth it, however I'm not sure why this place ended up getting a spot on triple d.",review,shAplOMYNkG5JnjZ05NQMQ,1,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2010-04-19,2r_sO24zElz1w-VouGKZaQ,4,"I have been to FEZ twice now, when passing through Phoenix. First, the decor is amazing, an oasis of urbanity amid the heat and sprawl of Phoenix. Excellent lighting and decoration. And I love the food, a mix of Mediterranean and American fare. This last time, I had a grilled-chicken sandwich with pomegranate vinaigrette, goat cheese, sliced pears, dried cherries, and field greens on ciabatta. My dinner companions had different sandwiches, and all were good, but one of my companions said he thought his sandwich was just a tad over-sauced. The sweet-potato fries were a real treat. I plan to make FEZ a regular stop when I travel through Phoenix again.",review,kGkvgGnGMV7CpN6BtRaOlQ,1,2,0 +8WPCqC0Y-yszJi7eqfSllA,2011-09-14,D4s4MtRWo_AfQHtPbjwH8A,1,"Closed... GONE UNDER, OUTTA HERE.. See ya later, bye bye..",review,cXnWZPcrtHjKXbcNzulg2A,0,0,0 +tqDwpyCB53TiEIv915Tuww,2011-01-01,vVle8sHunAnYT79YKbn1mA,3,"I'd recommend this place highly for two situations: 1.) You are on the west side of town and you want some reasonably priced grub, 2.) You've never had Vietnamese food and you want to try it out in a non-intimidating environment. For those two things, PA is awesome! + +Nice people, decent food, and a very friendly environment. But their food doesn't stack up to the central Phoenix standard bearers. + +I suppose that their score is artificially low because of the category they are competing in. Were they the only game in town, I suspect I would have rated them much higher - just to get my hands on a Bahn Mi every now and again.",review,e0Rls_7QxkVcFJtUXDaA0A,1,2,1 +ll-z6OsHZnIYZqUJXC4Yug,2010-08-19,zBM347XcsxjIPco78IbZIg,5,"I have been going to Vatoci hair salon for over a year now. I've had the same stylist from day one and I highly recommend her. I've never had so many compliments on my hair! Ask for Marsha (Mirushe) and I guarantee she'll take amazing care of you. + +I love that she always remembers what we talk about and asks me about my job and my kids too. I am sure that Spiro and Vera also do a great job because the people who are in there when I am are regulars and everyone is always happy to be there. + +My daughter loved going in to be pampered as well, and they are amazingly flexible on scheduling appointments even though they always seem to have plenty of customers. They know what they are doing. Highly recommend!",review,RSBpPixPILehXxTyuGgEyg,0,1,0 +-sC66z4SO3tR7nFCjfQwuQ,2011-08-17,cudUGNz0uh8NS9622mZGeg,4,"The pancakes would be a 5, but the breakfast burrio would be a 3 and the breakfast torta a 4 so I averaged it out to a 4 star. A very cute little place and you have to try the pancakes for breakfast. You can order just 1 if you want, perfect for those of you with something else in mind but still have to try the 5 star highly recommended pancakes!!!!",review,5c4p-A1sLBlpS1cPaMpdBg,0,2,0 +cp39VURFby4A6u9m2It8jg,2010-11-06,tWKRNEPCyxvMs8LZ3sZK8A,4,"I ate here last week and I really enjoyed the burger, fries and decor in this place. I've always thought there is only so much you can do to gussy up a burger and fries. The Zinburger and double truffle fries with aioli had some unique ingredients and tasted great (love the onions caramelized in Zinfandel.) The meat used in the burger is fresh and high quality and they cook it to your specification. Ya you're going to pay more but for $15-20 you're getting a much nicer product than the typical $10 bar burger with fries.",review,aIjx92U6ig4pQtHqPIHGsg,0,0,0 +nfyqtEoufkhjv97IueK7Ow,2010-12-02,U95yCrNQRWRGJk_63c18hA,1,"It was family day (the ex and I like to see our son smile) and we were starving... after driving around for a while we pulled up to Arriba's and said ""what the hell..."" + +That's also what we said when some of the food came, as in ""what the hell is this??"" + +So positive first. The server was pretty quick and he gave refills without being asked. Chips and salsa were good. Chips were warm and salsa had a nice (suprising) kick. Kick... do I sound like an old lady? + +Morgan and I ordered fish tacos and beef tacos, respectively, so we could swap one for one. Fish was ok... nothing spectacular... but honestly I would rather pay for one at freakin Del Taco or Rubios. Not worth it here. Rice was ok, some flavor, probably converted rice though. Beans were... blended? I dunno about you but I like to see some actual BEANS in my beans! This stuff was like brown goo... YUMMMMMMMM... :P + +The beef taco was just weird. I swear to God is tasted like gyro meat! WTF? I couldn't eat much of it. + +Last but not least, Dom ordered the White Sands Chimichanga. That sh*t looked nasty to be honest. Covered with some gooey white sauce, filled with pork. LOL, he said it tasted like hot dog. Um, yikes! He took about 2 bites and was ""full"". A.K.A., he didn't like it. + +I also had a margarita... it was HUGE and didn't taste very good. I'd rather have one 1/4 that size that tasted nice. Oh well. + +One star for the chips and salsa. Like I said, the fish taco was okay, but every thing was just way over-priced! + +Final verdict? We decided to NEVER go there again.",review,VBKbZD9X4zruXYORIhJhhg,0,3,1 +leg0kbfxBVksdt7qf5gXPg,2010-02-19,WcanVZ59nGwCLwIHObWSug,4,"Jamba is definitely as good as it gets when it comes to chain smoothie places. We are big fans of the Acai antioxidant smoothie, which is unlike the other smoothies that we've tried there. It is super healthy and has a distinct flavor to it which we like because it's not as sweet as their traditional smoothies are. I like going to Jamba because they are always reliable, fast and friendly when we have visited, even if the smoothies are a tad pricey. But, you get what you pay for, and I would much rather pay a little extra for a consistently good smoothie that I know will be delicious than take my chances on an unknown place that most likely won't deliver the goods.",review,eeEj90eJiwYMLJfPW9kdxg,4,4,1 +Q_jHqufNoxdlgCtLbqrpsA,2011-01-26,R4il0jtjeC4QXVHBQgtXiA,3,"Meh. + +I went to Big Bang a lot during the peak of my ASU bar hopping days, but never fell in love with the place. It was (still is?) one of the only bars on Mill that charges cover. I don't recall any decent drink specials; domestic beers only. + +Of course, everyone's in love with the dueling pianos. Sure it's fun when you're inebriated, but gets old fast. I hear the exact same songs every time I go. I personally guarantee you'll hear 'What I Got' and 'Sweeeeeeet Caroline' at least once. + +Overall, a solid veteran of the Mill Ave scene.",review,ahXmdKsanBCT6ImDa6dFhA,0,0,0 +oIkwj10HmUiognO68j7jOg,2011-10-31,DE_WqNEFBzU1xhU1Kdi-7w,5,"Kona grill is never a disappointment. Sushi, the regular menu, the atmosphere..... The staff is very friendly and the food is very good! We like to create our own sushi dishes and the chef is always ready and willing! I highly recommend Kona Grill for consistently good food!",review,Bs-v1fTmq8dqJFQwo-JMWw,1,0,0 +werWnE_3k8GYVaMuUcWw4g,2012-10-12,hsz4sKpkq79AbrlpYy8lMQ,4,"Always clean and accommodating to any workout schedule. I work near by so it is very convenient to go at lunch. + +Great amenities, even a pool, and classes. Wish there were a few more yoga classes or classes geared to those of us that are out of shape/beginners, but I'll get there.",review,E5qFR0RBQBoXx8FbrOkdbw,0,0,0 +TsmBNiwMMeb8aRrZs00JBA,2009-05-18,u3DH77aZIp5sM2el_211VA,5,"I love this place, I want to go to Arizona just to eat here! The greek fries were really good and different. It was just really really good. + +We're going next time I'm in town Fervor!",review,rSk9gydHUIp32_7emi2VJw,1,0,0 +ptH216EFNFLvF32EN-9tmA,2010-05-27,cSM_tejSi_TBQkwUFIrtog,4,"I mostly buy mountian house and other camping foods from REI, they have a huge selection to choose from, including biscuits and gravy. don't expect 5 star restraunt food, but on those long days at a Military range Mountain house beats the pants off MRE's not to mention you could eat 3 mountain house meals and be about where a MRE is. I've been drooling over several other items at the store, I'd like to go backpacking sometime and they have tons of little things that could make things a little more tolerable for either Military operations, or camping/ backpacking.",review,B7mOEA-S2acoo1S4t8wZ-Q,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-01-17,u56OrC8Gas8Nr-0Gsm-Ftg,4,"I flew out of (and into) this airport for the holidays. The process was painless once inside the airport, but their setup with the roads, ramps, and terminals is so absolutely convoluted. I've never been to a more confusing airport with regards to traffic. + +That being said, once inside, it was quick to check-in and get my bags checked. I also was traveling with my puppy who was so warmly welcomed by everyone, staff and otherwise. They had no issue with him being out, unlike other airports. + +A huge perk is a dog park they have outside Terminal 4 to walk dogs before/after flying. Made me feel a lot less nervous about the 5+ hour trip across the country, and I'm sure it made my dachshund a lot happier too!",review,ast7yCfvhIwaD53OFSXoag,1,2,1 +EljtR0HL1PSNjm2CebisoA,2011-06-15,sQqvn2jozXIXJxrRkWICMQ,5,"""If you buy half a duck, you don't get to pick which duck."" + +I lived in China, mainly Guangdong, for three years, and all it really took was a look at this sign, along of course with all the wonderful roasted ducks and pork, to know I had come across a place with bona fides. + +Hope Kee has some of the very best Chinese food in town, in my opinion, and is worth the trip from wherever it is in the valley that you live. + +I don't know anywhere else in town you can get such good congee, which is actually called ""zhou"" or ""jook,"" and which is a soupy, delicious rice porridge. + +They're also one of the only places you can get dried scallop soup, which they do an excellent job of. + +Dried scallops, a specialty of HK/Guangdong, are one of the most delicious things in the world. + +Everything that they make is delicious, and sitting in there listening to the customers and staff talk in Chinese and Cantonese can really take you back to China, if you've had the pleasure of spending time there. Otherwise it's just about as close as you can get. + +If you want to eat some real Chinese food that is both delicious and approachable, and very reasonably priced, you can't beat Hope Kee. + +Get some soup or some congee, some clams with black bean sauce, some greens and some BBQ, and you'll see why China and Hope Kee are such hard places to stay away from. + +If you do decide to try your hand at duck-picking and buy a whole duck, fear not for wasted leftovers, because roasted duck makes for a very tasty soup.",review,D1Q1me4EqtcK8g1pPG_OsQ,0,0,0 +BL3SqCfSJuDTNDR9_b9NdQ,2011-03-13,sR81a-njwFCTj11j2y1xDg,4,"Super cheap and good! I loved how large the portions were, the squid salad came in a large bowl and was delicious. We will definitely be returning.",review,AOC3bEkZ7pTiXRdz0Tgp9A,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-05-10,BAi0eV3p2zJNgVSYM5do1Q,3,"We ate here last weekend and it was nice. The wait was long but if you've never eaten there it's worth waiting for. Once you get in there you'll see it's a fun place to be; a combination of hip/50's dinner with real all American food (especially breakfast). I had the salami and eggs breakfast which was ok. I thought the salami was way too salty. The hash browns on the other hand are amazing. They were made from real potatoes, cooked just right with plenty of grease and I loved every bite! I also had a cup of coffee that was average at best. My wife, on the other hand, had a glass of lemonade that was made from scratch and was sweetened with honey which we both thought was awesome. If you're going to come here bring a small snack you can munch on outside because the wait could be up to an hour and a half. Best thing is to call before you come and ask how long the wait is.",review,lAngRi4lwBIHmjCBVLd-8Q,0,0,0 +mqQwChPNN4o4DhAzaGntIA,2010-10-13,TQOetmHOc9HjqCUAum-q9Q,5,"How can something so simple taste sooo good? I wish there were one more on the west side. I hate going to the fair to get my fix of fry bread. There needs to be one of these on every corner of the compass in Phoenix! As Rachel Ray would say, ""Yummy!""",review,Dq0Qa-ahnaQh7n9UYP6B5Q,0,0,0 +PUaNORt_B7Uim4JyClvPMg,2011-04-28,QllJeui2mmf03VltICAdjA,2,"I have been here about 3 times, twice for the weekend breakfast buffet and once for lunch. The food is similar to Denny's, so nothing special here. Everything here feels dingy and dirty, there was hair in one of the dishes in the buffet. Service is average, but employees are just as dirty looking as the restaurant..will not be coming here anymore.",review,JkMOQaMjlBHMqp6gj-hL3w,3,3,2 +g-CiH6Pa-rClhDYlHGA-Mg,2010-08-04,2nw-jvmele1gkJMuiMMRFQ,4,"If you haven't shopped at a Fresh and Easy, the simple way to describe the store is it's like Trader Joe's. Only Fresh and Easy has a modern feel to it instead of the hippie co-op atmosphere. For being a relatively small store, it carries a very good selection at very reasonable prices. The thing they're best known for is the prepared meals that are relatively healthy, and only take minutes to heat up. + +One of their best features is their reduced priced on perishable foods. Almost everyday you can get a great deal on steak, beef, chicken or fish that's a day away from its pull date. As long as you're not picky, it's well worth it. + +The biggest problem I have is with their produce. For a place with ""Fresh"" in its title. I've notice that fruits and vegetables I buy from Fresh and Easy tend to expire pretty fast.",review,thdVzCfKx-DV0zYWqId3pw,0,2,1 +PsuvqWNmLBU8ABkch2d9vA,2008-12-15,OYQKs3W86kQ1Osmxe8XiSA,4,"My husband was born and raised as a British Expat in Hong Kong and loves the Chinese Cultural Center for its authenticity. There are some great, inexpensive and authentic restaurants there serving a wide variety of Chinese foods. There is a place called the Seafood Buffet on the west end of the plaza and the food there is fantastic and lunch during the week is around $7. Golden Buddha (next to the amazing wedding shop) has an inexpensive lunch menu and I've heard the Dim Sum is incredible. + +The grocery store in that plaza has tons of authentic Asian foods that you won't be able to find anywhere else. Just the smell of the different foods and spices takes me back to my last trip to Hong Kong and really adds to the experience. I don't know what half the stuff there is, but if you wander through the candy aisle you should pick up a few random pieces and just try something different. + +The Center has a festival around the Chinese New Year where they have street vendors selling all kinds of goodies including a huge selection of decorative Koi fish and various cultural performances. It's really a unique place, especially here in Phoenix, and is worth an afternoon visit if you're looking for something different.",review,hq0WUfau1Mh3GyHn8oVdNQ,2,5,3 +xLgPskx22Qj7kaq3KK_fxA,2011-09-09,E_41DHXXwawTlhgNspNx9A,2,"I think this Savers is getting their layout confused with Goodwill, which is like Target getting confused with Walmart; both in the same category, just one is more classier than the other. I used to live by this Savers and would frequent it every day yes, literally every day back when they used to have great items. Just pop in real quick. Over time they changed the layout and experimented with things. + +After visiting today I saw that now everything is so crowded based on the way they structured everything using the same space with the same amount of stuff. The shoes are racked above the clothes racks now. This is extremely, extremely annoying. There is no emoticon to express how annoyed I am by this move. I understand they are trying to make the shoes central to the clothes so they are in the same spot, the shoes are racked by size of course snaking down each aisle. Sooo to look at shoes you have to go down a couple of aisles waiting for people to get out of your way, rather than have them in one spot like they used to be. Of course people are not going to magically put back shoes where they belong so you might find shoes in the right place, or you might end of having to walk down each and every aisle looking at the shoe size stickers making sure they are not cute and your shoe size respectively. Savers, please correct this annoying inconvenience. + +Also if you genuinely find an item with a tag missing they won't sell the item to you. Listen I get it, this is such a high traffic thrift store that there is a good reason for this but you must wait until the next day for them to price the item and put it back, they won't hold it for you. They don't call a manager over to simply price the item out for you, so how is this good customer service for the innocent ones? Why punish everyone? Why not do like some other stores do and mark the clothing label with a washable marker so that way if the price tag comes off, based on the color they have a pricing system set up? Either way, end up taking the time to re-price and re-stock it again. + +They should also implement some type of buzzer at the jewelry counter, I don't know how many times I have gone there, not just this location, only to wait and wait finally having to ask a cashier to send someone over to help me because there is never anyone there. The service is always impatient at the counter too, I don't know about you but I like to make up my mind about a purchase! This place is just too picked over, it is nothing like it used to be in its heyday. Way crowded on weekends and busy in the evening. If you bring donations you get a coupon for $3-5 off your min $10 purchase with a tax deductible tag. I will say housewares are your best bet here, good condition and best prices. If you are looking for generic clothing fine, but diamond in the rough stuff like I am accustomed to? no, you won't find that here.",review,7C-jyTrOX-iJ-MrSJuh-8A,2,2,2 +5VMajxduxfLPSyQkVFKESg,2011-07-02,ooyoTxBjzThPPZA0Z3XehA,4,"My boyfriend and I looked up this place on yelp and decided to try it out. When we arrived, we walked inside and the line was to the door. Instead of waiting, we went to the take-out window outside, which we thought was very convienent. They were very fast and friendly. The ribs were tender and very good. The pulled pork and hot sausage had great flavor! Their bbq sauce is sweet with a bit of tang. The mac and cheese was EXCELLENT! The only thing that I was not pleased with was the cornbread. I feel that they could make it much better. We will definately be going back to eat bbq. Overall experience was very good.",review,oYxo29sYpY87pFUpi3lh_g,0,0,0 +0VyvlA1mZsDoYd3kkRjevA,2010-10-13,PkSC__fIePPGpHnvvZWLEg,4,"I have not been to the Outback in years as past visits have, well, sucked. I am not one to complain, I just never go back if I have a bad experience or two. Seriously, there are too many good places to go out to eat to return to business who don't focus on their food. + +So my boss loves this place and she wanted to go and of course as she is the boss I agreed to return to the Outback with her. + +I have to admit this place has changed. Our server, Bree, was excellent! A server can make or break your meal and Bree was on her game. + +The food was really good, OK, I am super picky and was ready to hate it as I have in the past but tonight was different. I ordered the teriaki marinated sirloin. It came perfectly cooked at medium with sweet potato, salad and bread all for $12.95. + +Maybe I got lucky and came here on a good night but I am glad I did and will definitely return.",review,j-kShDJgp5acGhqJAkJHnA,1,0,0 +wZwZcte4lcbu51NOzCjWbQ,2009-12-27,muMWQgGzTS3f8GidUyaS7Q,4,"Went to the Rooste for a Christmas Eve dinner among a small group (9) friends. I had never been. Had heard the name many times over the years when I had previously lived in Tempe. + +Been intimidated that by where it set that it was expensive and swanky. That's all a lie! It sets up high and has a wonderful view. It's not located where you are just strolling down the street and decided to pop in that is true. You wind through these grounds to the back of the property pass beautiful fountains and buildings until you come to the lite up restaurant. You can self park but why bother go for the valet. + +You pass a smelly ranch steer at the entry that is probably wondering why the hell its there as much as I was. Inside the door the smell escapes you immediately, thank goodness. You see some young sap making cotton candy and wonder what the heck have I arrived at. A few more steps and you see you are in a western theme establishment, by the overwhelming amount of raw wood beams and flooring. +First stop the bar. It's a limited full bar and for this it losses a star. +From the bar the view outside is great and you can look down and see the country music band playing (it was a band but I wouldn't book 'em) but hey they gave the place a little extra pulse. You see the staff in casual western gear also and you instantly know you're welcome in your jeans. + +Moments later our table was ready and half of us choose to take the slide down to the dining floor and the others took the steps. Hey I went for the slide! It was short and fast and another reason to come casually dressed. + +Our waitperson was a delightful and articulate young woman. We skipped the appetizers to leave room for dessert (next time I'll reverse that decision). The menu was very good. Several steak cuts, enchiladas, fried chicken, BBQ beef & pork ribs, Seafood, a burger, pork chops, most plates $15 - $20. + +While waiting for the salad course a magician name Flash comes up and asks if we'd like some magic that night (he works for tips). He went about his tricks and blew our minds! THIS GUY I WOULD HIGHER for an event. Never figured out how he did what he did but would love to see him doing it again and again. So if he comes by your table take him up on his offer of magic. + +The food arrives, the salad is good and fresh the main courses come and all are cooked to perfection. My medium rare T-Bone was actually medium rare for once! My steak was tender and taste fabulous. The food didn't hold it's heat well and they serve sweet potatoes or rice with the dishes rather than standard baked/mashed or fried Idaho's (extra charge for a standard potato - why? - Minus another 1/2 star). But over all it was a good meal. We barely had room for the dessert so we split a 9 layer chocolate fudge cake and another dessert among us. And we still had four or so layers of cake left to go home! It was so rich and such a huge slice no 3 people could have eaten the entire thing following a meal if they tried... 4 of us dug into this slice. + +All in all it its a great steakhouse. Prices lower than Lonestar and Steak portions (ounces) bigger for your money, plus a better all over food and appetizer menu by far. Oh yeah I'm a fan and will be returning again and again when I want a steakhouse to fill my steak cravings and a bit of entertaining to accompany the meal. + +I highly recommend Rustlers Rooste.",review,-9mljS0O9mwdOnGv-Oea3Q,1,3,0 +MhkZLdUFaHt5SDcQcqOWQg,2010-02-21,Vt5hnc6TM9jUOrL3MI7EOA,4,"Went there for the first time a couple weeks ago. When I go for sushi, it pretty much consists of Nigiri Tuna and California rolls, I'm not a hardcore sushi eater by any sorts. + +Service was good, was seated right away, took my drink order, came out.. My drink never got empty before a replacement came out (big plus for me). I ordered one of their sushi meal things and requested it all be tuna (you get to pick), GF orders something, I think it was Teryaki beef.. + +Couple minutes goes by, another lady comes out and tells me I cant have all Tuna cause its too expensive. Hey.. I'm an easy going guy, I shrug my shoulders and say, ""cant you chuck another $5 on my bill to make up for it?"". I'm not sure what she said, but apparently that was ok :) + +Food comes out, I had a bite of my GF's meal and the beef was cooked very nicely and the sauce was great! My sushi was good, you cant really expect too much out of Tuna and California Rolls other then they just be fresh. + +I noticed they have some nice Happy Hour stuff. There was a flier floating around inside that said it was 2:30-4:30pm, looked like some good deals. When I was leaving, the window said a different time for the Happy Hour special, no biggie.. I might go back and check it out",review,6Jb6ho3Zsu8EX4W7LdaPPg,0,0,0 +6_fEp3GQ7X3fMfyZ18ZzrA,2012-10-01,NsiB8vUNVa95sOWr-wDQmg,1,"This was the most HORRIBLE floor cleaning I have ever seen!!!!! We took before and after pictures and cannot tell the difference at all! The guy was not friendly and just wanted our money even though he did not do his job! I would NEVER recommend this company to anyone. We paid $1000 and got $20 worth of service. I mopped the floor the day after the cleaning guy was here and got a lot of the ""staining as he would say"" off easily. I have included a picture that we wrote in the floor with a paper towel after the cleaning....can you read the saying? That is exctaly how we felt after the service. REALLY?!?!?",review,jtT3RFcI8isonLupfH7RwA,0,1,0 +4Pf9DQBcR23A6Lg2pDsrBQ,2010-08-24,Mip5sNSzUbmG1rnjzbYO-Q,4,"This is one of my favorite theaters. + +It's a little known fact that the first showing of the day for any film is only $5. This keeps my wife and I coming back. One of our favorite things is to see a movie at 9am and hit a great spot for brunch afterwards. And yes, they don't mind when you show up in pajamas with Starbucks. + +A great time!",review,eRtuJOuHBXoJ3GRlAe_eTw,2,4,1 +ISkukkcFdHgjy_Wnma9ZxA,2012-10-04,fsZ0aXmDKjUabrdnJ4KsnQ,5,This is my first time trying this place and I had a wonderful experience. The place was packed and yet they got me in right away. A young man gave me a pedicure and did a spectacular job. They even put on a timer for 15 mins to ensure I got a full massage during it. They offered the other services but did not force any on me. I will definitely use them again and recommend the place to others.,review,mTx0GhWWV6NOAd_crYJw8w,0,0,0 +MWoM_zf75KD0VcOm8Yb58A,2009-11-01,DgtXTp5dXqij9SQ9hI5Vdg,3,"I'm in agreement with Anandita: If you've got to shop at a Whole Foods, this is the one. The only attitude I got was from a couple cougaresque velour-tracksuited shoppers, not from the staff (who were all refreshingly down-to-earth and friendly). + +If you're straying from mainstream essentials, they are surprisingly price competitive (or even cheaper than) mass-market grocers. For ""normal"" food it's still Whole Foods and still often inordinately expensive. Their meat department usually makes me laugh. + +But if you're looking for something weird enough even Sprouts doesn't carry it, chances are Whole Food not only has it but has an employee who can tell you all about it.",review,HWi8ntFMy81BVjAsgAwbrQ,1,1,1 +tm-lmBXzrBeKUDj_eQVZYQ,2012-01-08,SDsJ_HXaMOCUD5nid-kMww,5,"The best staff around! Very friendly and always make sure you are satisfied with your food. The food is great as well. From breakfast to lunch, and healthy shakes like Fast Fuel, you can get it here. Very clean too!",review,BRNVGPDi58XPDyxfxX39sg,0,0,0 +5VMajxduxfLPSyQkVFKESg,2010-05-23,vdxxUwuP9zROlGLQM5kDFw,4,"*3.5 stars* + +In the interest of supporting local AZ businesses, my husband and I had dinner here on my b-day (5/13). The first thing I observed is that they have a couple walk-up windows on the southside of the building so you can place your order and get food without having to go inside. Thought that was pretty clever! We arrived close to 8 pm and it was still pretty busy inside, but the line moved quickly. + +The restaurant is set up cafeteria style with a kitschy country look. There is a huge mural on one wall dedicated to farm living and a John Deere tractor with accompanying bric-a-brac on the other side. Once we got through the line, I choose the meat plate with 2 sides...beef brisket and pulled pork for my meats, mac 'n' cheese and beans for my sides. I really wanted to get chicken instead of the pork, but they had unfortunately run out of chicken :( . My hubby got the full slab of pork ribs with sweet cut corn and mac 'n' cheese for his sides. We shared a piece of cornbread and for dessert, split the root beer cake. Happily I received a discount on my meal because it was my birthday (they advertise a ""free"" meal, though it's basically $10 off). + +The beef brisket and pulled pork were so good! Tender, juicy, and delicious! Those meats really are the best reason to go Joe's. The beans and mac 'n' cheese were just ok...so far Fleming's beats everyone hands down when it comes to mac 'n' cheese! The cornbread was so-so, tasted like it came from a box, but the honey butter that comes with it made it pretty tasty. Regrettably, my husband's pork ribs were pretty fatty as compared to Lucille's (Tempe Marketplace). The root beer cake was good, but not as delectable as we thought it would be. Maybe we were expecting too much after reading how much fellow Yelpers enjoyed it? Another thing worth mentioning (some others have commented on it too) is how strange the beverage station is. It's smack dab at the front of the line where you get your food so you have to fight your way through the crowd (if there is one) to get a refill. Weird. + +To conclude, Lucille's is still our #1 favorite place for BBQ, but we would still go to Joe's again.",review,_qQJEA45k_E6EGE7vuzUDA,0,0,0 +vlEsxOtkCrStCb52gJhG5w,2010-03-03,TDqE8xeg_fx2BqDO0jU3FQ,5,"Im a sucker for great libations and the stores that can carry the works.. Zinfandel for me.. Magners for my boy.. ( a great Irish cider we fell in love with in SF).. +great tequilas.. all types of wines.. you get my sniffster...",review,sALB8-F04S9VcZMF_GkGUA,0,0,0 +JiLK9QPjd53pOBEAaY83lw,2012-01-05,a9a2jQ1-hTK5c1sgZc7Thg,5,Wow! The Penang Curry (chicken) was absolutely incredible!! The portion was huge...had enough left over for another meal and tasted just as good the 2nd day. I will definitely be back! The Thai Tea was very good also. I just wish it was closer to Gilbert!,review,xa6MsSFkXmWp23Aq-zz-uQ,0,0,0 +XfgU_1_X8eVX8_CqofAeIQ,2011-03-12,pd0ekrEgnCwU0L1imreJpw,1,"Donuts are really good, if they have any when you get there!!! Went in on a Tuesday morning at 1030, and they only had a total of 10 donuts. Drove out of my way to go there and still ended up at Dunkin Donuts. Very disappointed!!",review,i-eCe-byLImKmbtv41PbnQ,1,1,1 +Pg8OPh1D2ws0xO-I-8ppoA,2012-08-03,hfpYR7L3LsG9yDpEVyQ4KQ,4,"1 more star awarded: Upper Crust, you've grown on me. Reading through my previous review, I still have all the same criticisms about the ambiance, but three return trips and I keep finding more and more reasons to like you. + +* Excellent and attentive service, busy or slow +* Michael David Petite Petit by the glass +* Wine Wednesday: 1/2 off bottles +* Great deals through social media +* To-die-for yummy crust",review,gJEJg1fPVDPnkdcVFbVlBQ,0,1,0 +PO2JBrCFcxd5ne-7ewDwdw,2011-03-30,oo71jAdnEKfYvlE6tSTZzA,4,"I went to 2 Spring Training games at his stadium this year, and had 2 different experiences. The first game we parked ourselves and passed several incompetent lot attendants just standing there. As there were no barricades and they made no indication otherwise, we assumed it was ok to pull in. It was only at this time that they waved their arms and said we had to park at the back of the lot. This happened 3 times. + +The second trip we opted for the free shuttle from Zipps, This took the pain out of their incompetence out of the equation. Once we got in the park we had a great time both trips. There is ample shade covering a good portion of the seated area for afternoon games. Beer prices were a little steep, but we were happy to pay $8 for a pitcher or 2 of Blue Moon at Zipps beforehand to take the sting out of the $8 cups at the field. + +Of all the stadiums I've visited in Phoenix, this one has been the best (aside from parking annoyances). It will be a challenge to top this facility.",review,5E193w76Qlhoi1gkyakW2A,0,1,0 +9VZ_imQjvgtpt3k6W6AQ_A,2009-02-10,15qQvYITFlzCtUkMaRf4Og,2,"My least favorite sushi experience in a long time . . .I've had better from the grocery store in those plastic boxes. Took an employee on their recommendation. I guess it's quite different at happy hour and the evening. Very nice surroundings down to the fish swimming in the floor. That day it must have been a ""two-fer"" Sushi and attitude all for the price of the sushi. + +Rachel T. sums it up well!",review,cNU3hw0Gvm2iNGOOvrhWMg,0,1,0 +6nseTZb6WrGWcithRThfag,2011-07-03,woK2jGvYufSM0pU-ODAbiA,5,"I'm a huge fan of Padre's! What food I've tried (I mainly just order tacos or their pork sliders usually) is delicious, the bartenders are awesome, and the owners are always friendly! + +One of my favorite things to do: Order two tacos and half a bowl of guacamole with chips and salsa.",review,9PmD9FdQ0bWflFMTr9DAMQ,0,0,0 +ar90fbRbQtiyZLtwjwwXUg,2010-03-04,8O5u-FtvID966OsQkKYZ3w,5,"This place is absolutely wonderful. My boyfriend and I have been here for a few special occasions and have never been dissappointed, the food is amazing and the service is just as good, our waiter was so unbelievably nice. Their steak could possibly be the best steak I have ever eaten, and their creme brulee is to die for. This place even does complimentary filet mignon sandwiches for happy hour...guarantee you will love this place just as much as we do!",review,bvYk98zUE61KoWifshskpw,0,0,0 +bZivzFTkkjNtUBSuMhoCtg,2011-03-28,LQQHKedqBpd4JRyZgR_qQQ,4,"We were at the AT&T store next door and had time to kill. I really didn't want to go to sushi brokers but she insisted that we go for edamame and one sake bomber. Couldn't hurt right? + +I am very glad I listened to her. We sat at the bar and placed our order for edamame and bombers... And I might as well throw in some yellowtail because it was good last time. After the gentleman takes my order another man walks up and introduces himself to me. He stated he was one of the owners and he read my review on yelp and would like to make my prior experience up to me. Boy did he ever. + +Service was amazing my entire stay. He brought us one of their signature creations called ""sushi pizza"" which was absolutely delicious. Just enough spice and plenty of fish. He also brought his favorite bottle of sake for us to try which was good as well. At the end of the stay he had taken care of us with the bill to make up for last time as well. + +We received the VIP service the entire time but all the handouts aside.. The fact that Chris not only read my review.. But also took it to heart enough to remember my ugly face and make right by me. To me, this shows the management cares about their customers. I didn't deal with the service I did in the past this time, but you better believe I will willingly be back within his establishment again soon.",review,ntQC5p8YSfnH9z4rIi11Xg,1,1,2 +OE5nAmaSVaopeRS1Cs9Kuw,2008-12-20,GSlL2bjH3HCoaRnyfrdbAw,4,"Hubby and I were here tonight for a grand and glorious breaking of his diet. He had been before to the one in Houston, and had been looking forward to the new Scottsdale location. For being open only 3 nights, the service went quite smoothly and the staff and management we met were all great. We started out with drinks- a gin and tonic ($10) and a caipirinha ($8.25)- both were strong and very good. The wine list is extensive, for those who prefer the vino. Delicious little popovers arrived at the table, and we headed off to the salad bar. Far better and fresher than Fogo E Brasa's, it had a variety of cheeses (including chunks of parm and fresh mozzarella), smoked salmon, prosciutto, salami, sun dried tomatoes, olives, marinated bell peppers, asparagus spears, mushroom caps, and seafood and chicken salads, just to name about a third of the offerings. + +Then came a veritable torrent of meat. The beef was the best, and came in a variety of cuts and preparations. We liked the Ancho (rib eye), the Picanha (the classic sirloin cut in the half moon shape), and the garlic beef best. The pork ribs were really well done and juicy, and the sausage was quite flavorful. The chicken was a tad dry, and the lamb was too gamey for our liking (and we usually like lamb). + +Side dishes were brought to our table, in appropriately modest portions. There were squares of polenta, which I really liked but Hubby did not care for, and mildly garlic mashed potatoes, and yummy fried plantains. + +Dessert choices were pretty typical: a creme brulee, a flan, 2 types of cheesecake, and 2 types of chocolate cake. Hubby wanted what he had enjoyed at the Houston Fogo before: the papaya cream topped with creme de cassis liqueur ($8.25). It was more runny than mousse-y, and the papaya taste was pretty subtle, with the liqueur being the top note. + +There is a rather unnecessary valet parking service for $3, when the parking lot surrounding the place is huge. Not so huge, however, that the many douche-bags who double parked went unnoticed. The bathrooms are nice. The dinner, which is all you care to eat, is $42.50 per person. I'm sure we'll be back for special occasions.",review,N-D-d1Z4UybdlkK1HxlNPA,4,4,0 +eqdEOyNbEvl-Gne_w3_0jw,2010-07-19,h_WVAz5qg63BGNnv6OOzrw,4,"Good place to have a beer, duck fart, or whatever you may fancy. I am absolutely in love with their fried pickles. They are so far my favorite in the valley. Long sandwich style slices with a crispy light beer-esque batter. + +They also have some wonderful perogies on the menu. If you order a burger... you must try the red cabbage slaw as a side. + +I like going here to just have a low key night. Good place to watch sports too- that's just not really my scene.",review,KuSP1Mb3xq2Qbmk1n_-ZjA,1,0,0 +4bi6m2WWnSUnQzR4xLF5BQ,2012-05-25,U02XSuAbEJYNzF0vObHv6g,5,"I am a Regus member and could get wait here since I could use my membership card. +Its a great place situated on 3rd floor with awesome city view. +Complimentary menu is refreshing. Cordial staff. Quiet and relaxed environment. +Many TV screens and seatings to get comfortable with.",review,_UHTCaa2p8U37B0u9vHzYA,0,0,0 +MJ6_uOT55dq5ALphFqMVkw,2012-11-12,Ivq_JgGvV5M7JoLEYsyo9g,4,"NEEDS A CUSTOMER FACING DISPLAY FOR THEIR POINT OF SALE SYSTEM. The staff here is WONDERFUL, and the OWNER IS ALWAYS HERE, yes that's right, if you come here often, you have the pleasure of meeting Lenny himself. + +But one major flaw is that they need a display on their point of sale system showing you what you have ordered before you pay (just like their Glendale location), because I have had my order messed up more than quite a few times here, usually they forget my extra french fries, or place everything in the world on my cheese burger, when I only wanted the cheese, meat, and bun. + +Other than that, I don't really have anything negative to say about this place. I love the staff, and if the right person is at the register, they remember my order and the negative points I have made above is negated.",review,KnsWpD1e_hMoAVcN0ftiGw,0,0,0 +kvxrjOmicwb2njvXOJsZRw,2012-11-07,tyUFvpCXXeORj2OghUgeOQ,4,"Bar & restaurant. In that order. + +Danielle Ammaccapane was an LPGA player, graduated from Thunderbird HS just a few miles away...as did her LPGA-player sister, Dina. I went to THS and graduated same year as Danielle (1983), just sayin... + +I love this place. It's a great ""Cheers"" style bar, as much as one loathes hearing that type of characterization. Italian food here is solid, and the cocktails have a punch. Nice place to watch football at the bar when by oneself, too.",review,kA2OQAdbwOaGd3Q5ZnNIQw,0,1,0 +91bPfWMwLMDg08KDcRdV-Q,2012-07-01,2yx1q-80miLjR_wMvpxK8w,5,"its HOTin the valley in the summer time and QT lives up to its name- +ONE STOP DRINK SHOP! +HEAVEN in the summer time and the price is unbeatable!",review,-vRFUY8ixuNniCCNVvmkRQ,0,1,0 +P5a2hK5G64J7DcNwLAPhuA,2012-06-18,DK-c2Q_oq-fU9mOv0drzZg,4,"I came here by myself because non of my fellow conference peeps wanted to walk 10 minutes to dinner. I'm glad I made that short walk to here because I enjoyed eating their prime rib. It was cooked just right and it was rested correctly. Needless to say, I was so stuffed that my 10 minute walk became a 15 walk back to the hotel.",review,5nbObhKPvaQDPdybkKE2jw,0,1,0 +9B_rnGpDieUnMr7szjuaQg,2012-07-26,af2sR_4I_KMr58ug71WIPg,3,"I went to this place on a friend's recommendation, but have only eaten the custard. The lemon is quite refreshing and fluffy although I wish is was a little less sweet. This is a great place to visit after a light meal in downtown Mesa if you are looking to satisfy your sweet tooth, but not go overboard. The service is fantastic and the parking is ample as they have a private lot. The inside of the restaurant is quite charming and diner like. If you are really looking for the full experience of frozen custard, eat it outside in the never-ending, relentless Arizona sun...you will truly feel the refreshment!",review,YDXk0IqpwzfKwVf8E_4Z8g,0,0,0 +-yxfBYGB6SEqszmxJxd97A,2011-01-01,Ypm0YDTek0ad_vBb_rqVhQ,4,"Go for the 5 star food and setting, but be warned about the 3 star service. + +The menu lived up to all the high reviews posted by others. Every dish was inventive and well done. The salads were particularly noteworthy with the interesting and tasty use of local ingredients. + +The service was odd. They were attentive, but amateurish. It started with a request for a wine recommendation. The wine menu is heavy on Arizona wines, which we don't know anything about. I don't think our waiter knew much more than us, and the wine he recommended was barely drinkable. Next we asked a question about the tasting menu. The answer took some time because, we were told, the waiter wasn't allowed to ask the chef directly and had to relay the question through an ""expeditor."" There were a lot of people helping us, but it was actually too much - it was distracting to have so many different people - and none of them seemed very well trained. For example, we got our entree and asked about the purée on one plate. Our waiter first guessed celery, and then said it might be cauliflower, and then someone else overheard the discussion and clarified that it was actually potato.",review,69O0iY3YOE_xs9WQt1Kw-w,0,0,0 +HwizZ6pGOfjHM8ypWfPXVg,2009-09-08,EXvJHqxPiq-BPhUTYLjEfg,5,"As a frequent antiques consumer, I can honestly say that Lizabel's Treasures is my favorite antique store in Phoenix. I've been a customer for several years, and Lizabel's is my first (and often only) stop. + +Why Lizabel's is such a treasure is because of these things: price, desirable antiques, and great customer service. John and Bette know what people want, and they go to great lengths to get the antiques that people want and to make their customers happy. I'm a believer. + +They consistently have one-of-a-kind quality furniture and pieces that you would not normally find elsewhere in town. Pieces are priced very agreeably, so you can afford to stock up or furnish a whole room without busting the bank. + +John and Bette have created the kind of family business that is to be admired. They have a legion of supportive customers, and I'm one of them. I can always find them to be helpful and interested in getting me what I want, even if I don't always know what I want. + +Lisabel's Treasures is the place to build a relationship with, because as one's life's needs changes, so does the need for different pieces and furniture. I can always count on finding something I really love at their store, and you will, too.",review,eJGh4UF0zHIPPLZG1NkpgA,1,1,0 +oqQvCiG9FDbIdr6M4yen5A,2008-09-03,5wzQERH5ZOe6woSx6Le66A,2,As a NY'er...I can tell you this pizza isn't THAT good...and it's inconsistent. I like Ray's far better.,review,g70-T0pdyb0pfyHcwDAhWg,1,0,1 +Obz3WGtDmcdgWN-r6mWc2w,2011-08-09,TwKSFBMGrbht3BuHD18-5A,3,Very typical mexican food. nothing special.,review,VccH0vPIn0ZgkseoRm5r5A,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2010-05-31,5cL5OWLIRg8WvtT5kAFy8A,5,"In a sentance: Four Peaks is DEFINATLY something to write Yelp about! From the moment I realized that there were more reviews about this place than I'd care to read in one sitting, I knew this was going to be good!! I realized it was going to be fantastic when i pulled up with my friend Darius and we had a hard time finding a parking spot at 3pm. We met a friend for lunch and the place was laid back, chill, clean, cozy and yet modern - perfect. + +I had the French Dip, thinly sliced roast beef on a nice hogie bun. Everything was good not too salty not too greasy, loved it! Darius got the Fish N Chips and it was incredible!! Crispy batter dipped big pieces of fish, iot was crispy and crunchy but soft and delightful on the inside. The chips were also batter dipped and had great flavor. I was in love! this is my best recommendation for a meal at Four Peaks! + +To my yelpers i say: there is limited parking, so when you pull up and see nothing but cars lining the street, do NOT be alarmed! there will be a table available! Another thing, get the fish n chips! It's duh-vine!",review,vF4B6eFdoDmyV_l7MLHMzw,2,2,1 +PG0itWTUdxdy39P9CTgAzg,2012-10-05,GDZm6iE0jYGcBZtU4X5SMQ,4,"Over the last 3 years we've lived in the area, this place has changed 4 times. First Uncle Bear's, then Tio Oso's, then Thirsty Cactus (or Thirsty Cantina, whatever, it sucked), and now it's TC's Pub & Grub. The menu is typical bar food, including burgers, sandwiches, pizza, wings as well as some taco and quesadilla selections (which I always appreciate a good quesadilla so I will have to try it next time). + +The restaurant section (which was always dead before) has now been opened up and TVs added so the whole place is more of a bar feel (thumbs up). The place was packed for Thursday night football (Cardinal's game!), but still got a good table close to a TV. + +Server (who admitted multiple times he was brand new) was very friendly but had to keep asking other servers for clarification on menu, etc. Still, nice enough and very attentive. + +We ordered wings (""medium"" but they were spicy!) and their ""ugly"" crust pizza with mushrooms and olives. The wings, very good, I would get them again. Pizza, I wouldn't order it again if someone paid me. The ""ugly"" crust basically is a thick hand tossed crust - too much crust (and half of it was burned) and very skimpy on the toppings. It was pretty horrible honestly. The actual toppings (although sparse) were very tasty... good cheese and fresh mushrooms and olives, so I would order pizza here again IF they have a thinner crust option. Otherwise, if you are coming here to carb load and really need your bread fix, by all means, order the pizza. I personally prefer a thinner NY style crust. + +All in all I would come here again based on the good wings and service, and I'm looking forward to trying their other menu options. + +p.s. text TCSPUB to 411247 and they'll send you a text coupon for a 50 cent draft. Score! (I'm a sucker for a deal) Cheers!",review,weYT-xJwz8o7mLNWIhD6HA,1,4,2 +nts2OALwvyvfNh9focRZ3w,2010-11-20,Svxdqr8rUAAhWcTs5HKjrg,1,"I was so looking forward to breakfast here. What a disappointment. + +The food is the only thing that rates any stars at all. Good ingredients cannot be completely ruined by incompetent service. + +The space is nice, but crowded and loud. The counter staff were indifferent. After being waved over to an open register, the fellow behind the counter took one order, then wandered off, leaving the rest of us to get back in line at the other register to order. + +You are given a number (or not) and left to find your own table, scrounge up your own silverware, and wait for your food to be delivered. Except that the napkins are at a completely different station than the silver, they were out of forks, and most of the tables were completely filthy. I watched a busboy randomly swipe the top of a table, sweeping crumbs onto the benches and chairs, then leave an empty drink bottle on the table before wandering listlessly off. + +Beverages are (apparently) serve yourself, although they didn't bother to say that when I ordered. I stood at the counter, waiting for iced tea, only to turn around and see that I was expected to get it myself. + +If they happen to ""run out of numbers"", then they input your name with your order. Nothing irritates me more than to have my name shouted across a restaurant. Better yet, the waiters wander from table to table looking for their customers.... ""Lisa? Is there a Lisa here?"" while your food cools. Inexcusable. + +The only bright point: the croque madame was tasty. Delicious bread, ham, and a perfectly fried egg. But the meager smear of bechamel and a thin slice of cheese were underwhelming. However, the ""side of fruit"" made me angry: a tiny metal creamer with 1 blackberry, a few slices of strawberry, and 2 chunks of green apple. Insulting. + +Fast casual, order at the counter works well when tables are clean and set, and the food delivery is speedy and efficient. Unfortunately this place needs some work in order to make it worth your time.",review,3yc5JeWwQVhjx22Lx6OQ0Q,1,1,1 +I2_yeLfTzXHGwi8an0tL4w,2012-07-28,8Bcu9kgNAQqrWKhI8mCVtA,1,"May have great food but I'll never know. Ordered delivery and the chef who doesn't speak English couldn't find my apartment complex even when I walked out to the street right next to the 101 far away. He said he was there but couldn't tell me where he was. Talked to him on the phone for ten minutes then hung up on me when I guess he got frustrated and wouldn't answer my calls back. Called to order food for my visiting family and was glad to find this place but that chef is awful. The owner apologized to me profusely and that was a nice gesture but waiting an hour for a guy who hangs up on you and can't find a place looking at the 101 exit is ridiculous. Don't use them for delivery ever, call the Breakfast Joynt. Their owner is awesome and delivers to you himself. Plus, he actually knows the area. Cannot express my frustration with this restaurant's service. Do not use EVER",review,lRAAwerR8ATxR9oppZ4I3w,0,1,0 +9tSHBEoAhKu-tkU8n6SKjA,2012-01-31,mh-YrAj1N5jWXHKfZke3gQ,4,"Great down and dirty Mexican. Chips 1st quality: substantial. Salsas tasty and spicy. Chicken Victoria tender. Didn't have, but the Sopapillas look awesome. Fun colorful atmosphere, good mex music.",review,bEEOlaSQrlPBZVQw4bjdUA,0,0,0 +1oFvqm7eSpJbVpxpPxueaA,2012-10-27,dOTJWugStX0GDQA-6UpjVg,5,"This is my kind of restaurant. I love everything about Buca di Beppo! + +I am fascinated by how this place was decorated. All the walls and various trinkets make this a fun dining experience. + +One thing to note is that it can be kind of expensive to eat here, although I am always finding coupons for this restaurant so that helps! + +Beyond that the food is awesome! I go with my fiance and we love the calamari and the garlic bread, which we always get as appetizers. We switch up the main course when we go, but each time has had great results. We had dessert here once too and that was also good! We usually end up with leftovers, because they give huge portions, which we love. I can't wait to come again!",review,-a7d79eTKvmkpHZT7ePYDQ,0,0,0 +05znNZZrJXlp64r-R3S7Ug,2009-02-11,gtI9wjwKso24yZXtNU2kpg,4,"Hey, art is very personal so I won't pretend to be objective about jordre studio. What I can tell you is that anyone who has the cajones to open their own studio and, more importantly, the staying power to be an ongoing entity is deserving of praise. I have a friend who owns several of Kyle's pieces and they look spectacular. +If, like me, you look for a personal connection with your art, you'll be hard pressed to do better than JS. Kyle is outgoing and personal and, if you're especially nice, he'll share a Schwann's ice cream sandwich with you. How about that for an artistic connection?!",review,mLfjeWUJnNiqHEye3I6qug,0,1,0 +8t80-omyflkywRfu9LPh6g,2010-01-18,-GTEewT8L025ssHbvAK_mA,2,"I have been eating at Wildfish since it opened and after my most recent Saturday evening dining experience, I must say, the quality of both the food and service have gone way downhill. + +I know....a busy Saturday night and so, perhaps I should give both the servers and chef a break? Sorry. The menu has changed and so has the quality of food - and not in a good way. Let me just give you a brief sample of our experience - the Ahi Tuna Tartare appetizer has been changed to a lackluster combination of flavors. The idea of tuna with mango seems lovely however there is a total and complete blandness to the way this dish is now served. The former tuna appetizer was far more tempting. Moving onto the Goat Cheese Medallion Arugula salad. My salad was served sans medallion and literally laden with a huge glob of cold goat cheese and some terribly prepared mushrooms. What happened to the warm, crusted goat cheese? Next, we both ordered the Parmesan Crusted Sole. While the sole was prepared well, I do not recall this dish having a cream based sauce in the past. If memory serves me well, the dish should have had a lemon sauce delicately balancing the flavor of the fish. Cream and sole do not make a happy pair! I am not sure if this was an error or part of the new menu. Okay, and for the piece de resistance we ordered a side of the Sugar Snap Peas which were actually drowning in a bath of some kind of soy and oil sauce. It actually made me ill to eat it - and my companion, as well. + +Our service was slow and unattentive - although I do realize service can be a very personal experience. + +I was sick with food poisoning all day Sunday - as if the poorly prepared food were not enough to bring down my joy. + +So, I caution those of you who may have once enjoyed this restaurant like me - think twice before dropping a pretty penny at Wildfish.",review,IibG_Dl9P24zExWisTEvMg,0,1,0 +OuGcrCgeTBrJnEGvLZ3JvQ,2012-04-13,DdkI8jaWEsdbXHhtW7cSxw,4,"Oh....my 2am delivery staple. + +Their ""til 3am delivery"" feature is one of the beauties of Silver Mine. Their sandwiches are always fresh and these people are fast. The Dodge City w/ a side of chili is my go to. So, so good.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +7Z-1mLIoxCHUxCp54W1CGQ,2012-02-21,g4Dsi099wFSUCAo-bVYNQg,4,"Excellent lunch specials here; $4 buys you two slices of pizza and a drink! The readymade pizzas are usually cheese, sausage and pepperoni (they have feature pizza's that rotate throughout the week). For a little more money you can even add wings or a salad. The service can be hit or miss (don't expect a clean table during lunch rush hours). The sauce is more on the savory/acidic side than sweet which I like and they're never stingy with the toppings. Warning- it may be a little greasy so don't be afraid to dab off the access grease with a napkin; your heart will thank you years from now.",review,rL3dPeKDTybG_ct9OCXGAA,0,0,0 +23sB_DG-bQO3luNlZ-vi4g,2012-01-04,gZvDCapnQEo6Qe1UJS8q6Q,5,"I hate ordering flowers sight unseen, but needed a local florist for a sympathy arrangement. Rachel immediately alleviated any concern when we discussed what I wanted in detail, and she even emailed me a photo of the final arrangement. +Gorgeous flowers, same day delivery and reasonable pricing - can't beat that.",review,PC7p9SsL0GLe1KXt1q06YQ,0,1,0 +7WGBi29_vj_7RcPVxpLNHA,2010-10-01,hufoM03Um3_AS6l29Zk3Wg,4,"Been wanting to try this place out for some time and finally had the opportunity today. I didn't expect much of a crowd on a Friday morning, however when we pulled in I was shocked to see about 10 people waiting outside. Typical for a weekend morning breakfast joint.....but a weekday? This place must be good. Suprisingly, the wait was short...they obviously know how to handle a crowd at this place. Once inside, I was impressed. Pretty small, but we had plenty of room in our booth. I ordered the eggs and sausage, which came with toast and potatoes. The food came out quick. The thing that really set it apart was the meat.... this was no Jimmy Dean. It was worthy of Abe Frohman, Sausage King of Chicago. Needless to say, I'm looking forward to going back and trying some more items on the menu.",review,IVb9YMopuGyt5jJ7rjwoqg,0,0,0 +9ziO3NpoNTKHvIKCBFB_fQ,2011-03-14,nW3SB8d1mpcrYB7Xy3zpAQ,4,"I actually really liked this place. The yelp reviews seemed kind of mixed, so I went to check it out myself for Happy hour. First of all, they have Oak Creek Hefeweizen there, which is one of my favorite beers. Its kind of hard to find here in the valley, for me at least! Anyway, the beers on tap for HH were $3!! Thats a great deal in itself. We were with a group so we tried quite a bit of the food off the menu. Let me first just say the two best things are the Mac and Cheese (phenomenal and addicting), and the Buffalo Sloppy Joe sliders. The pork sliders were also good as well as the sweet potato fries. The fries came with this yogurt/tzatziki type dipping sauce which was really great too. After about 9 beers, and a bunch of food, the total bill was only $54! + +Parking downtown is hard to come by, another plus about this place is that, because it is at the Sheraton downton, you can valet your car for free for 3 hours and just get it validated by the restaurant. I just gave them a few bucks for a tip. + +The service is also pretty great here, the servers are attentive. It could also be because there weren't many people there. Oh well, I wasn't there for the crowd as much as I was the food/drinks. + +If you are looking for a great value for HH, this is the place to go. Parking is not hard, prices are great, and food is awesome!",review,7jWmd57QoJnq2q4QyvVS2Q,1,2,0 +1Duul3qCnLrNak1Np-iHfw,2010-01-05,9NBBrLN4lcFXdTXQ-jkKww,4,"Let's cut the witty intro and get right down to the awesome food recommendations: + +Cilantro Jalapeno Hummus ... AWESOME! +Hummus with Chicken ... AWESOME and filling! +Spinach and 4 Cheese Quesadilla ... TASTY! + +Just go there. Go for lunch with a bunch of people on a sunny day and sit outside near the lake/pond. Go for dinner on a first date with a cute girl. Just go there.",review,VF1zGpB1h5e3aoRIPE4llg,0,0,1 +O6fdmeu4Z_oei9MrgKuo2A,2011-09-02,HushK5En0Fah7tXcpzHjOA,5,"Well, I cannot believe I have waited this long to give an update on Morgan!! Especially since she is FANTASTIC!! Yes, I have been back to her for the 5th time now and I love what she suggested I do to the color on my hair (much better than what I was doing) and her haircuts are the best. She also has done some other treatments on my hair that have made it hold up under this hard, dry AZ weather. And, she is so sweet and caring. Oh, she has also gone out of her way to make an introduction to another of her clients (also from the South) who was new here and had not met many people and we really hit it off. Morgan knew we would. I mean what more can you ask for.........go for it...YOU WILL NOT BE SORRY. This from a HAPPY, HAPPY Client, Christine",review,e6mJ9slQCvvQDyiZYkwhOg,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2011-12-03,KNbOyHyPAcirLDDywvO4Aw,4,Waitress/ bartenders are cute. We didnt eat. We just got a drink and left. Only like 5 beers on tap but no worries. They even gave one of my friends a band-aid lol. Their mix drink prices are a bit outrageous tho.. 3 beers for 10 or so.. 15 alone for a double of jack and coke.,review,AncVDK7eNz6c0pxLxAl42w,0,0,0 +ITcg0ABneVKWREfzx7v7Og,2012-10-02,LYsbiZbN6rwdEyJAoUGrnQ,5,"Beautiful parish, also home to the amazing Legacy Ballroom that is available for wedding receptions and events. The annual Middle East food festival is a wonderful family event with fantastic food, pastry, and entertainment!",review,2MTfcxdJpoKn8xmBn-6ulA,0,0,1 +AbS4rMXc19XJJcXVZDhy7w,2011-12-31,225K-pjlBV3kkJxpE2EseQ,5,Pancit palabok here is best outside of the Philippines. Anyone can enjoy a quiet peaceful dinner on a Friday night,review,XuVeswVBiG7bye8-k731ag,0,0,1 +sDXINrHrs8phlkzkwQNiBQ,2012-05-16,tB4Kq-Jcp_zt8B-PCE226A,4,Great help!,review,zASARWgR6xyOt2cfRtM43w,0,1,0 +JokKtdXU7zXHcr20Lrk29A,2012-03-04,MLFEjC8jgnrhIAFGR0tg4w,4,"Prices are reasonable and the food is always good. It may be a typical bar food type menu but the food itself is far superior to what you will find in most bar restaurants. I even like the food here better than the stuff they serve at some of the competition (chain places like TGI Fridays or Applebees). In addition to good food Four Peaks has great beer and drinks. I can't recommend this place enough. + +Don't worry about the line or the bouncer checking ID at the door. The service is always fast and friendly even when the place is full to the brim. There is always a big, big crowd. If you worry about the noise just sit outside under the misters...",review,Syc4pbEkL3bbzjO4X4HhQw,0,0,0 +1621ir5mjVgbHwxCbMAEjg,2012-10-23,TaQ2cz-a5cNzcdkg0-rT_w,5,My food was delicious and the waitress were nice! They didn't bother me every 5 minutes and I was able to enjoy my meal. Spicy does mean spicy here though!,review,tB-m5XIYxirohhvvaoQw1A,0,0,0 +Dcs_jLOlNXd96LarVInFgg,2010-03-06,3e2H-bmoGb7JLknpawAZCg,2,"I won't be back here. + +Most cheap drive through fast food Mexican places are alike. Of course there are slight differences. In this case it wasn't for the better. + +We had to drive up to the window to order. The speaker box wasn't working? What was going on there? + +I ordered a chicken chimichanga with sour cream & guacamole on the side. The chimi was big, just like I expected it to be. There wasn't much guacamole. I would have liked more. They also put tomatoes in it. That's ok, I'm just mentioning it. All in all this chimi just didn't sit as well as others I've had. Maybe it was the spices they used that were different, I'm not sure. + +I also ordered a large horchata. I have definitely had better. It wasn't the worst I've ever had but it needed more cinnamon flavor, that's for sure. + +It's cheap, it's easy, it's fast, it's literally right down the street from me. I'd still rather make the drive over to 7th St to my fave 'bertos though. See: http://www.yelp.com/biz/rolbertos-phoenix",review,ZubK3U5PlTWy4VIQG_Wpzg,0,0,0 +PoRYjYUSjmeWM1WLsx_45w,2010-12-06,J7GYNwMLHPBff2WT6szLlg,4,"My favorite trail in South Mountain starts at the trail head just south of 24th st and Baseline. It's the start of the Mormon Loop and when you connect up to the Mormon Trail/National Trail it extends the hike to about 4 or so miles. Or at least that's what I have been telling myself. First part is stair master-esque, then descends very gradually (perfect place to add a run into your hike), then ascends again (catch your breathe) and then gets a bit boulder-y and you can either straight up hike this or run. If you want, you can take the offshoot to Hidden Valley and Fat Man's Pass. I wasn't too impressed with either, but it is definitely worth a view and will spit you back out onto the National Trail.",review,-OMlS6yWkYjVldNhC31wYg,1,0,0 +nZBAnK1rOmV7bLVVDPJs0A,2012-07-12,PX8n_yicDyEhbCCTNEy_aw,3,"I think this is the second time I've ever been to a Chili's...actually I'm not even sure if it's the second....it could be the first time I've been to a Chili - I think the other time it was Apple Bee's or something like that...anyways yeah well yesterday night my bf and his friend and I finally went to this place called JumpStreet - to jump our fat away - but after that we got really hungry and it was around 9ish and after in Arizona closes pretty early but luckily Chili's closes at 10 so we were able to get a table and eat a fatty meal. + +They had a $20 dollar for 2 meal deal - in which for two people you pick a appetizer and 2 entree from their list - super good deal! We decided for the Tostada Chips and Fire-Grilled Corn Guacamole for the appetizer - it's good, however I didn't like the chips because it was very thin and was a bit oily - the guacamole was good and had a hint of spiciness to it. + +For the entree I had the Quesdilla Explosion Salad - interesting name and very tasty too except that I forgot to tell them to put the dressing on the side cause they put a little more dressing than I would like. The salad consisted of grilled chicken, cheese, tomato, corn-relish, cilantro, and tortilla strips tossed with a citrus-balsamic dressing and on the side four triangular cheese quesdilla! mMmm super delish! My bf ordered the margarita grilled chicken served with rice and black beans, tortilla strips and pico de gallo - doesn't look really good but it tastes okay. + +Despite being a chain restaurant, the food is not bad and the prices are definitely a bit cheaper than other big chain American family restaurants.",review,Ek_t82OUnerdlO0D-GVcxA,0,0,0 +6G8FMxuYzz1ye4a386Rc_w,2010-12-30,9_rjfVvQdZNTw7mqmUiS5Q,5,"Amazing facility. Scottsdale healthcare has done a great job, the people are happy to work here unlike some hospitals. They are very receptive and the ER operates like clockwork.",review,Qw9bEL0ylJ2UVvQpCxFv0Q,0,1,0 +FeI75xIG8PF_XZ6P80gLBQ,2009-03-09,kpIyspui9fFLCzDccAxXaw,4,"We tried The Turf for breakfast this weekend. We were definitely not in the mood to wait a lifetime for Matt's after perusing the market, so we decided to head over to the Turf. As expected, the place was empty except for one guy at the bar... considering it was like 9 am I am really hoping this guy was just drinking apple juice. Our server was very nice, and I am pretty sure we had her on our first night here. After explaining to us what black and white pudding was, ewww, and then running away, she came back for our breakfast order. I got the Bacon and Cheese Omelet and the husband got Biscuits and Gravy. My breakfast was served with hashbrowns and toast. The hashbrowns were thin and crispy, just the way I like it. My omelet was stuffed to the max with bacon and oozing melty cheese. It wasn't a big fluffy omelet like at IHOP but it was a dense solid little guy. I much prefer my omelets to be like this. The husband was a little less than pleased with his meal. We both agreed the gravy was pretty good and we really liked that there was actually sausage in it, the way it should be. The disappointment was definitely in the biscuits though. They were certainly not fresh and definitely not homemade. Considering how easy and quick biscuits are to make, this bummed me out. To the owner of Turf: If you want me to, I will be more than happy to come over and show you how to make a good biscuit. If there are good, fresh biscuits, this could be a great dish. Not the best for breakfast, but a good alternative for when we don't feel like waiting for hours in the hot morning sun.",review,W_QXYA7A0IhMrvbckz7eVg,1,1,1 +K8pM6qQdYu5h6buRE1-_sw,2008-10-09,i6h0ZCNGd7EHOSHwquhmWw,3,"My street cred is that I'm from the South. You know, home of fried things. I think I know a thing or two about fried chicken and sweet tea. + +Understand the whole concept of being quaint and family-run, but seriously didn't think it lived up to all the hype. + +I ordered some sweet tea. I was mondo thirtsy and couldn't wait to wrap my hands around that mason jar. Holy guacamole! The sweet tea tasted like a cavity waiting to happen. I was tempted to order a lemonade to make an Arnold Palmer, but feared that it would be overly sweet versus tart. Instead, I requested a glass of water and some lemons to help with the sugar ratio. I still couldn't get it to taste ""normal"" and sort of just abandoned it. + +I had the Lo-Lo entree which consisted of 3 small pieces of dark chicken and 2 waffles. I also ordered a side of mac & cheese - cause I'm dirty like that. I thought for sure the food would be the saving grace...hells nah! Chicken was aight, but hardly any meat. The mac-and-cheese was just okay. Kind of reminded me of stuff you can get from Luby's. If it weren't for the waffles, I'd be hungry. I pretty much ate my waffles and stole my friend's fried okra - which WAS good. I dunked some of my chicken into her side of gravy and SHAZAAM it was like licking a salt mine! + +Needless to say, we had a rather lengthy wait before our food arrived and while I do appreciate the hole-in-the-wall appeal - I was disappointed nonetheless. Sometimes you just can't believe the hype!",review,_266IoyNQPtof2akV9G4jw,5,11,8 +Hdi7jkB7pHiM1nyPHcqSdw,2012-11-16,qTtW0j_nQETUAbpdFmbFBg,5,"Amazing. + +This is often called the largest mall in Arizona, and it shows. Each time I've done the usual ""mall walk"" I've easily lost a few hours trying to see it all. It's true that this isn't a place for anyone that doesn't care about fashion - but this is a mall that's true to its name. ""Fashion Center"" is no joke here. Lots of high-end designer stores, lots of mid-range affordable fashion stores, and a few random familiar stops like Hallmark and Pottery Barn-esque stores scattered through there. A decent food court, with a theater also conveniently down there. (But after spending so many hours at the mall, who has time for a movie?) + +You can easily drop a few thousand here, so be forewarned if you're on a budget. Also, I almost wish I had a map in my pocket, because it can get confusing to remember which hallways you've already explored. And wear some comfortable walking shoes, because it's not easy to get in and get out of this one. But there's a good number of parking to use in a garage or few - when you remember where you parked the car. + +I'd take any out-of-towner here, unless they had a grudge against fashion, classy stores, or walking.",review,cq2Vu3g1auTQ4nlNOVjegA,1,1,1 +zff_uz9k60UwNi3etN39uQ,2007-12-16,6v2FC_CqcjqobxzsNgsfMQ,2,"All the 47-year old men in the joint wearin' sportcoats hangin' out with your beers waiting to catch some hot young tail which won't even happen but you're still lingering around anyway in an awkward looking sausagefest - raise your hands up in the air and say ""What! What!"" + +To the endless video loop of the Tempe 12 Girls trying to figure out how to best flaunt their mamms for their calendar photo shoots like ohmygawdtheresnowaythatIwillnotbechosenforKipWingerscomebackvideo - raise your hands up in the air and say ""What! What!"" + +To the dumbfuck DJ who thinks spinning 15 seconds of every song from the 80's and 90's into some megamix is like cool but it's actually more akin to the sonic equivalent of Sybil, raise your hands up in the air and say ""What! What!"" + +All our servers who were kind of friendly but more like passengers on that UFO named USS Space Cadet that you see on top of the Space Age Lodge restaurant while driving through Casa Grande because you couldn't get ANYTHING right nor understand what we were saying as if we were of a different species altogether, like as if we were human and you were the green hoochie that Captain Kirk got together with in Star Trek - raise your hands up in the air and say ""What! What!"" (if you can) + +All those single bathroom stalls where the door doesn't become opaque unless you lock it all the way but I'm sure the ploy here is that as the night goes on and people get more and more drunk, girls will come in and maybe haphazardly lock the door but not all the way but they don't care because they have to pee so hard so they're sitting on the throne and watching people walk by and think that ""Ohmygodit'slikeaonewaymirrorthat'ssocool!"" but then they notice that guys are now just standing there and converging on the other side of the door looking right at them and all of a sudden the drunk girls realize that the door is not a one-way-mirror at all but.... - raise your hands up in the air and say ""What! What!"" + +To my Yelp companions who made all that was Six completely tolerable and proved the point that whatever the case may be with a semi-retarded-but-really-cool-looking Scottsdale venue, if you're in good company, you'll still have a great time - raise your hands up in the air and say ""What! What!"" + +And scene.",review,htC49ZwXiKNka5cp0GKBfQ,9,5,12 +Xr2Qe7Se0WyH68nOxSn5aw,2011-08-23,4Iyqy_59Q8Gtmbkl6f779Q,4,The food was good and all prepared as I waited. Looks like a long list of wide ranging bad foods that make you feel so good!,review,3Lj4_96xu38YZHlS7k5xNQ,0,0,0 +VXg0O0vuuOgNTqTGp9j7gg,2010-11-15,ReVkmGmCWR6Lpx7DPuGVrA,5,"This go around I opted for the bacon egg and cheese breakfast burrito (served all day!) and lengua (tongue), cabeza (head, and cheek meat), and carnitas (roasted pork) tacos. + +The breakfast burrito was the tastiest, bacon filled treat I have ever had! I love bacon, and if you don't love it as much as I do, the bacon overload may be too much, I swear there might be more bacon than egg in this bacon bomb! + +I should have figured that with a price of $2.50 per taco they would be slightly bigger than the average taqueria taco. The size of these things are gAstronomical, and the flavor of each are equally proportional, the lengua, however, would've probably been better if it hadn't been sitting in the cold whilst I ate the other three items! + +I will no longer be eating carne asada at this place when I have the option of carnitas, cabeza, lengua, or bacon. I advise you to do the same!",review,g2D5QttnvZTX9yVzWWXYxw,2,2,0 +yVQiGdxmnrkJDyQXv2maNA,2012-07-05,ZywLH03W9qCbRJSP2qkWbg,3,"First of all, I have to say you cant beat the price here. $6 Pho, come on now!! + +However, I wasn't too fond of the food itself. I mean, it was OK but not ""I have to drive 45 minutes just so I can come here to eat lunch"" good. We happen to be in the area and Yelp showed us the way. + +The spring roll was meh ... not super fresh but it wasn't unfresh either. Hard to explain but I definitely wouldn't get it again here and the peanut sauce was actually not good at all. I was really disappointed with the sauce. + +I ordered their meat pho and the flavor was good. I definitely think the place is good enough to try but when we are in the area - which is not often - we'll prob find another pho joint to try out. For the price and ""ok"" food, you will enjoy.",review,dn9DSDp9CYCRffmL1voq6g,0,2,0 +Dz7swOgFook-L89Y_M-aQA,2012-05-18,d37voH8FNsdb4ewmSrLNWg,1,"I eat a lot of Asian food (of different sorts). Asian is actually my go-to cuisine since I have a lot of food allergies. This place deserves a thumbs-down, unless you love Americanized Asian. The food was bland, breaded and just not worth any money. Next time I'm in Phoenix, I definitely won't eat here.",review,KkuCskeWo-Du_VQPciJO4g,0,1,0 +iXQQtpxSlzFyQoE9u3w-vw,2010-09-22,v8wYJo_RkYawDLQnIp63kA,4,"Both of the previous reviewers are correct, actually. Yes, there can be a line to the door at times, and not everyone working there is 100% nice 100% of the time. But who is? And, once you get to know them -- and are courageous enough to give them the benefit of the doubt -- everyone working there is very cool to deal with. + +Because this Post Office is tucked way back in the Foothills, it's not staffed as heavily as I've seen some others. But the remoteness of the location also means you get to breeze in and out on rare occasions too (seeing as this is too far out of the way for any non-Foothills residents). So, do like me: never go here in a hurry; be polite; be patient (it's not all about you). And you'll see this is really no worse than any other Post Office...and maybe even a little bit better.",review,UuwjD6MZf6Z6QlNphiXRjA,2,2,0 +5vbBmHljaHVcQS4k6VxGVA,2010-04-27,dKrYrHocKNUuZsf32_zq4g,5,"Followed a Dr. that I respect to this practice and I have to say I'm pretty impressed. As a long time multi-four-footed caregiver, I have seen more than my share of veterinary clinics and animal hospitals. I know the drill and have seen more than one vacation be sucked in to the great black hole of ""well of course I want to have the best care"". + +The first thing I noticed is that there is NO odor. It doesn't smell like there have been decades of animals paraded through the doors that feel the need to pee as soon as they enter the room... just in case this is their one last shot at leaving something behind. + +Then there is the overall feel of the place. The office I used to frequent always had a frenetic sort of feel to it. Files were lost, techs were running, the waiting room was packed with stressed out clients, etc. This office was peaceful. Whether is natural or contrived, I could care less. My dog picked up on it immediately and her normal ""OMG what are we doing HERE?!!"" behavior was replaced with something I've never witnessed in a vet office before. She was calm! + +It's clean! Except for the area around me that was covered in the undercoat that Zoe was stress releasing, there were no traces of other animals. + +The staff was incredibly friendly and helpful. I had a HUGE file that I was bringing in and they patiently sorted through the entire thing. While I was there for one of my pets, the receptionist offered to set all of them in my household up for me with ""Client Files"" so that I wouldn't have to be bothered in the future. I thought that was a wonderful, time-saving offer and in the event that I ever have to go with an emergency and am not able to focus on paperwork. + +Finally, I was in an examination room at the time of my appointment and waited less than 3 minutes for both the tech and the Dr. I was in an out under 1 hour and that my friends is superior service IMHO. + +I look forward to a long relationship with Palm Glen and will happily drive the 5 mile difference from my old vet, in order to ensure both my pets and I are treated well!",review,iwWBF3nKoRMoy1sbkLJwvg,4,6,2 +-4A5xmN21zi_TXnUESauUQ,2012-06-05,JECP6qR_PYJPWfG6S8KP1w,5,"This place is pretty incredible. The california club and the breakfast buzz are probably the best items on the menu IMO... but seriously, you can't go wrong. The only thing I've had that I didn't really care for is the Breakfast Burrito, but that was because it was just a little boring compared to the other choices on their menu. It's a long wait in the drive thru 99% of the time, but it is absolutley MORE than worth it.",review,SLvZfeCztX7QaNbJs_7ikQ,1,1,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2011-06-25,Zn5VfOeHVux42rEZzyxD-Q,3,"even after 1.5 hours wait i loved the atmosphere and did not mind the wait at all. the service was good. not too friendly but everything we needed was on table. +Disappointment was domestic Kobe burger. it was served overdone (just little pink in center after i ordered it medium - rare) it is served with Asian slaw ( peanut dressing) which is served on top of the burger. It was way too strong and it took away from the burger itself. it was hard to taste the meat with so much peanut sauce in the slaw. If i was to order this dish again, i would ask for slaw on the side. the fries were fantastic and fried cheese was very good. +i will definitely be back for more for my friends loved their burgers. +the 3 stars is for the fact that burger was way overdone and i could not taste the major component to that dish - Meat!",review,D27LJyqNKSFogWjmtGRZsA,0,0,0 +soiGohHtWOltGeomkSxzEw,2011-10-26,PBP5Q5zxoGB08oPnHaqcfA,4,"Man of man this place is gooodd - I hurt when I leave from eating their awesome beef tacos, these are from god. They deep fry them and the beans are cheesy perfection. So if your trying to lose weight or looking for healthy, not this place, this is the place where you sin. Red cheese enchiladas hit the spot! + +The service is great and the prices are low, of course the building could be better. Great for pick up also.",review,CEBxztFRW3wjLbEf-2rZEw,0,1,0 +RKOS92ptLgEU3BUNMtDHrw,2011-02-17,iLgse98wFDqC1X4NVh0i_w,4,". Angel, daughter of the Lounge's owner Joy is a HOOT!! I love her personality. It's not a fancy place, little hole in the wall type place. They have been open for 8 years and have had a pretty steady following. There is art on the walls (LOVE the Dizzie Gillespie painting... thinking of buying it) painted by a local artist. Live music on Wednesdays/Fridays. Wednesdays step classes (the Al B. look alike) and they have another separate dining-type area. Wednesday nights they hold something called a conversation party. Random 5 topics are chosen (we had a peek at last night's conversations) EX: Are momma's boys a good or bad thing? What makes a partner in a relationship think they need to start playing games? What is most important to you in your professional career? + +Apparently some of these discussions, as you can imagine - adding the alcohol ingredient - can get pretty heated. It seemed to be a big group last night... 15-20 people. + +So after dinner, catfish, PORK CHOPS TO DIE FOR!! So tender, fried hot wings, mac 'n cheese, mashed potatoes, LOTS AND LOTS of hot sauce, we heard the band start warming up. YES!! GREAT music. People walked in wearing their Sunday best and others walked in wearing jeans. It's an everyone knows everyone's name type of place. Older people and the younger started trickling in around 8PM. + +Definitely a fun experience. Good times.",review,YwsP21V2ATnquSHJqQj00Q,1,3,1 +gWP6ofoyTbK0SZj1i_XqNQ,2012-10-16,EXaVbv6kTqHXDy1Ji0fFSg,2,"No credit, weird layout, not much fresh food",review,ZVBvgWyq0ZP-Td2SXMeDAA,0,0,0 +xYEKBSjs--YSN02SUQ__Tg,2011-07-26,_MHCkD3REwlrVU3PVyxFrA,4,"I'll preface this review by saying that I've never been a fan of hospitals. My experience with hospitals growing up was always to visit friends or relatives that were sick or recovering from accidents, and I've never felt 100% comfortable at the site of blood, dealing with disease, or ""scary"" situations. For these reasons, I really respect doctors, nurses, and all of the staff that work at hospitals to help those in need on a daily basis. + +All of that being said, I've seen my fair share of emergency rooms in the last few years, and for the most part, I've had decent experiences, even as the patient. I've actually been to this Scottsdale Healthcare location three times already in the past eight months: twice for scares with the pregnancy and once for a breastfeeding class. This is the hospital where my OB/GYN delivers, so naturally, this is where I'll be heading when Baby Mess is ready to enter the world... and I'm confident that I'll be in good hands when the time comes! + +I've heard great things about the facility itself, especially the labor/delivery area, from other friends that have delivered here. And from my experience to date, the staff has always been great as well. Parking can be tricky, but they do offer complimentary parking during the week... and the breastfeeding class I took was very informative. + +Bottom line: I don't think any hospital will ever be at the top of my list of ""fun places to hang-out,"" but if you or someone you know is in a situation where medical help / a hospital is needed, you can't go wrong with Scottsdale Healthcare. Fingers crossed, I'll still feel this same way after I deliver this baby!",review,fczQCSmaWF78toLEmb0Zsw,6,6,2 +Edj0quZE5k1WcAtf883j6w,2011-08-19,FVtrmb-ieOkDM03_sKq2NQ,4,"if a hipster bar met a dive bar, this would be their offspring! + +good music and lots of kinds of friendly people!",review,xZvRLPJ1ixhFVomkXSfXAw,5,6,4 +jvvh4Q00Hq2XyIcfmAAT2A,2012-06-16,ivGRamFF3KurE9bjkl6uMw,2,"This review is for the chain in general. The location we went to is new so it isn't in Yelp yet. Once it is I will put this review there as well. We were there on Friday at 5 PM. + +The reason I gave it 2 stars is because the burger was very good and it was made the way I asked for it. My husbands burger was not. + +But, the server and the fries left a lot to be desired. Let me preface by saying that we had been to several other locations. I like my fries crispy. I ask for them well done, extra crispy, scorched, tortured hollow tubes. Whatever their buzz word is for well done. The location will comply. EVERY OTHER 5 GUYS HAS COMPLIED. But not the one at TATUM AND SHEA. She said that corporate said they are not to cook the fries that way. So if we were to put up with soggy fries - yes soggy, then we did not want them. + +She also interrupted us several times which is rude. THEN she went and called corporate just to double check for us and she came to the table and said they said no they were not to cook them that way. Seriously? We did not ask for her to do this. She actually accused us of being undercover shoppers. We started to say something and then again- she interupted. + +Listen, if you explain that our choice is not how the company wishes to present their product and we still choose to have them a different way, you should comply. It is after all our money and our decision. I was raised with the rules that #1 the customer is always right. And #2 if the customer is wrong REFER TO RULE NUMBER 1!! + +We will not return. They have lost our business and I hope she loses her job. +If you want to try a really good burger AND FRIES place- go to Paradise Valley Burger Company at 40th Street and Bell. You will not be disappointed.",review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +O36iUta8mR3XsbACp4nS3Q,2011-08-26,Vtj5M3zeo-TaFF4VZo8gOA,3,"It's a freeway. + +Traffic sucks near downtown but the views are nice through Dreamy Draw. + +I think I just saw Kurdy passing by!",review,Kqvfep2mxS10S50FbVDi4Q,0,0,1 +K845ZDttFfx99zQ-0aE2tA,2010-10-04,AP4xUdvCnIFhGh0ixJv4LQ,1,"Cadillac Ranch looked really awesome from the outside, this nice red cadillac out front, nice patio outside, and an enclosed bar and grill patio on the side. Upon entering it was pretty dead, well, it was a Monday afternoon after all. + +I ordered the Southwestern Country Fried Steak, huge plate of food that came with your choice of House Salad or Ceaser Salad. I dove into the mashed potatos, which upon their many options of how you want your potatos to taste (garlic, cheese, horshradish, etc), I picked garlic - always go safe at a first time resturaunt! The gravy was very bland, I ended up putting more salt on it. The potatos were the only thing salty and flavored on my plate. They had also put diced garlic in the mix, not roasted, but raw garlic. I love garlic, but I can't eat whole cloves (horrible headaches) like some of those awesome people can out there, so it was kinda a downer there. The two pieces of country fried steak was actually steak, but the very fatty piece of steak that you should never buy, cook, and serve. + +Since I came with friends and family, it seemed the only thing they could put flavor in was the deep fried dishes. My mother ordered the Fish and Chips, they were slightly on the dark side, the fish wasn't fishy but slightly bland, the cocktail sauce was the only thing that saved the fish from being totally neglected lol. The fries were really good though! My friend had ordered the same thing, I think she wasn't complaining was because she had ordered mamosa's lol. + +Service-wise, it was slow, but don't expect to be waited on asap on a dead Monday. + +I think the only thing that tasted good was the Ice Cream Fudge Brownie, but that single dish alone won't help this review get to two stars. + +All in all, eat at the other different eateries at Tempe Marketplace, I think Cadillac Ranch would be the last resort place if you can't get in to another popular resturaunt at the time.",review,Zg_M3iwTqOgp-2i6Usyftg,0,1,0 +AjE4uM-VaGP3QPCjSjIEaw,2011-09-21,qFMmUME0hUc2H2MPGj70gQ,4,"Very good Rubio's, very accommodating for my diet needs and the kids love their taquitos. It is in a convenient location when you are shopping and don't have time to go home. The management seems to be on top of things and keep the place very clean.",review,8p4at4zdzCpueAmSBaorZA,2,4,2 +F1-TX9MIXnhaNzUtg-yDNA,2012-07-03,M1-RvIf3axA7mU1-csV_tA,3,"Well look at that. We went to this Dunkin on Sunday and they didn't mess up our order terribly. I was greeted by the afternoon staff, and they were quite nice. Yeah, they couldn't get the order right the first time, but they worked with me to make sure they got it right at the window. That's all I ask for. Is that too much to ask? Apparently it is for morning crew. Not afternoon. Solid, not terrible experience.",review,1fZrSKqNbXdwyvtAlcbtTQ,0,0,0 +p8yg26BbovkfL2iw7Pcg0Q,2012-04-14,QPndBpV85CanakJbtFjg5w,5,"Love this place! Went for a stay-cation with the girls for a spa day and stayed the night. I can't wait to go back! You are in the city but feels miles away! The spa is amazing! Wonderful adults only pool with great refreshing food and drinks. Then our rooms were clean and comfortable. Dinner at Kai was nothing short of superb, and breakfast the next morning on the patio over looking the golf course and pool area was also very good. Overall a wonderful night away.",review,D2NKLp8yrK-49RKslrOnpw,0,0,0 +FG_GRMLSj68ximzfrr9eWw,2010-07-26,B7O4D5rxNxER7-mN7q-jkA,3,"Had a decent lunch here the other day with my co-workers. We go here often for happy hour after work. + +The food was pretty decent. The lunch menu is oddly full of mostly non-mexican style food. That was odd. + +Service was ok until it got a little busy. Then my cup was more half empty than half full.",review,QhuESGhOQWnKqwlSrISm8A,0,0,0 +CD-2yHTSObgvAhW-pYHfMw,2011-11-27,81U29zaz1aQNfaR7JL_hYw,4,"We got in late and had an early departure the next day. The staff was very friendly and helpful. Our room was spacious and the bed was very comfy. The amenities were decent, however there was no shower cap or q-tips. +There was Wi-Fi, but it wasn't the best. +The outside was beautiful, being surrounded by green always makes the desert better.I didn't get the chance to use the swimming pool. I would definitely recommend this hotel. Next time, I will make time to be able to use the swimming pool.",review,FW4C9Hc-CR9tj112CCBCLQ,1,2,1 +89yv89wcF_-ehN7_pUnl6w,2012-07-24,QQC3oFZ8bf_gkVGs-p0iSg,3,just another big store with everything everywhere.,review,bbo-MGJYQPOXPUDuI-gV-w,0,1,0 +XGK7mKZJQtJa77Izhx6xyQ,2009-06-16,jStvwAVYJz0j62km6FTlmQ,5,"This is my favorite place to go for Greek food. The owners are from Greece and frequently several family members are present. + +The food is delicious, large portions, friendly service. I wish they were located in Surprise, but they are worth the drive.",review,__FXEOrWIjXMOElz2pGlBQ,1,3,1 +fYv4xwoPt3a8QKBNhEJfDg,2012-02-20,pjIOtls3IonMGtupQ05aEQ,5,I have been here multiple times and each time the staff has been superb. Their selection is also awesome. I would highly recommend.,review,tu21UQUb1uYaEZkYsIXPnA,1,1,1 +TnKMo7BnsbqFaeNL1GY3og,2005-12-16,lPGD4Ys57SpbC44_IqXwPg,3,"decent. the potstickers were kind of good. I didn't really know what to expect. it met my expectation. the lychee pork was good and deserved the second helping. the selection was impressive. and the stuffed mushrooms had an interesting stuffing. spam, was it? some sort of sausage or other processed meat that made it quite a delightful surprise.",review,trGepkam5MTXDn4HBucdxw,1,2,1 +SMpL3z4FLF07bRA6-y22JQ,2011-10-15,bVA2FD78rGQd5Mv7fo2kYA,2,"Thai??? Really?? I love Thai food and couldn't be happier to try a new restaurant. Wow! It was a slap in the face on so many levels. The 2 hostesses were the rudest I have had the displeasure of having to interact with. We ordered take out and as we waited for out food from the kitchen the hostesses made us uncomfortable... As if we were imposing on there entry. +The food was not spectacular. We ordered pad Thai , was very dry but not horrible. The sweet or sour beef was watery and seemed more like fajita with way too many peppers. No sticky rice, green papaya salad, Larb...",review,IyQKx13mN0TcVhWhqwHirw,0,0,0 +qKBdXH1kZNU-c9BHQaTUag,2012-07-31,iv7tfabvD7GijCt_4SBAgg,4,"Had a terrific Breakfast Sunday morning with my niece from Los Angles. Great Breakfast Burrito, Outstanding Blueberry Whiskey Cake. Staff was so friendly, Service was great. Will bring all my friends and guest there. Enjoy!",review,pOgrEdAaMBAJviSgqTCXiQ,0,0,0 +9YUe5J_cPCBo_mL7-z9HCQ,2011-10-25,Ic-t_oLRMEEpmo0MfIvOwA,3,"Okay, so I like Canteen and all, but dear Lord, let's turn that music down a notch! These guys have a great happy hour, but I realistically wouldn't come here if it weren't for that. I quite enjoy the small bites' baby back ribs - the portions are so small, but since they are half price during happy hour, I get two orders! I'm not a big fan of Tequila, but I know they have a big selection (obviously). I really like the atmosphere here, and the service has always been good. I may or may not come back, but we'll see. Three solid stars from me.",review,PDRWbCZa92irf8mK5X_Kig,0,0,0 +m3EKlucZuwnOazLrRfnWaQ,2012-06-30,B-sZnWmKM4nrkVZHHFtU9g,4,"Bottom line: the new owners bring you better beef than Al's in Chicago. Yes-they really do. + +Italian food tastes better in Italy (usually). That meal on a dock in Sausalito is not the same even if you copy it exactly when you get home. Food is an experience that is altered by the location, mood, companions and results. So, being at Al's in Scottsdale is not the same as being in Chicago...that's obvious, so get over the fact that you're stuck in North Scottsdale, and not in the Windy City. But the new owner's seem to have this place clicking. The sandwich is awesome, and they work the floor to check on your experience. They care. I read a bad review about a hambuger here...are ya nuts? Al's...ditch the burger...who cares? and customer...what the heck brought you here for a burger? Sheeesh. I digress...again. + +I have always enjoyed a trip to Al's in Chicago. Portillo's, Johnny's, and don't even get me going on the Portillo's vs Al's debates, but even though Al's beef wasn't always the best quality, the combination of beef, grease, jardiniere, gravy (jus), spices, and peppers at Al's has always nailed it flavor-wise for my palate. +When I worked in Phoenix, a trip to Luke's on Indian School every few months would deliver an OK time, but it didn't really satisfy my craving for great Italian beef. +The first franchise for Al's at this location, brought those flavors I was craving, but messed up everything else about running a restaurant, and I still went back, and was sad to see them not make a go of it. + +Unfortunately, that left a flavor void, and I kept waiting for new Management to get open...and just before they did, I went on a very serious training and diet regime. My latest race results and training schedule gave me a little room for coming off the regime a little, and I decided today was my perfect cheat day...I mean Al's day. + +They really nailed it. +My fries were wonderful (I was eating them while they were bringing me hot sauce)....crisp, slightly browned, gooey in the middle, loaded with flavor, without being over-salted. + +The beef was absolutely great, better meat than original Al's in Chicago, as good as Portillo's in meat quality, but with all those insanely fantastic flavors I remember from my best sandwiches at Al's. Definitely one of my best sandwiches so far in 2012...and I highly suggest the ""Wet, with a side of gravy"" method. + +Many may object, (oh, ye lazy masses) but, I think Al's tradition of fully-dipped sandwiches leaves you with a sodden mess, that takes the bread out of the sandwich equation. If you are indeed- lazy, well then the dipped style gives you more wet bread that has soaked up that insanely good flavor combination. So if you are lazy, and also-messy, get it dipped. But there is a better way- it just takes a little work and technique...so simple it's easily mastered by a hungry 7 year-old, but they can also fix a frozen iPhone, so.... + +The perfect compromise is to order the sandwich Wet, with a big side of gravy (no charge for that- thank god). You can pour large amounts of the jus into the end as you go (obviously held upright), pinching the sandwich down below your planned bite, so the jus doesn't just run through, but soaks the meat and that portion of the bread from the inside out. Lot's of the jus is what Al's beef needs to soak the meat and release that delicious flavor combination, absolutely soaking the bread too, but maintaining the sandwich integrity, while adding in a tiny little bread crunch on the outside. + +(As a caution: you can order the beef ""Dry"". My advice if that would be your choice: don't go here. This is not a sandwich that is designed to be eaten dry- the beef will be flavorless and without charm. A Roast Beef from a good deli will be awesome if that is what you are in the mood for) + +""Wet, gravy on the side, sweet and hot peppers, cup of hot sauce."". Spice the gravy up with hot sauce to your taste, pinch that sandwich, and pour as you go. + +Freaking awesome sandwich, that blows away the local alternatives. And I'm perfectly happy with a spotless, new interior in North Scottsdale. I don't need Chicago memorabilia or grungy atmosphere to enhance my sandwich experience when the beef is this good. Bring a few good friends, order up a few beef, try a combo with sausages, share and compare, and start your own great dining tradition. Very cool to think that I won't be jamming a daily Italian beef into every Chicago trip just because I couldn't get them anywhere else. + +Gotta step up the training another notch so this can be a weekly lunch choice, because I am stuffed right now, and I still want more of that flavor!!",review,aEU-EIGl_do9y6-j1MEMNQ,1,2,1 +FBz4APP7xyIaUfwEHUBBYg,2010-03-11,S_V5GqMBkuVBOzLT4T4XJA,5,"Huge store, friendly staff",review,zLgkT2QxH8aauHzeLb44-g,0,0,0 +L-GfuOmn9mv55571uXvf2A,2010-06-28,-9QqRlAKuR2oERQNp8iQVg,4,"Good stuff! Reminds me of a small pho place in San Jose I used to go to almost everyday for a while. + +The pho is very good. Not the absolute best, but very good. Their fresh spring rolls are excellent as well. Cool, crisp and tasty. I also like their sandwiches as well, but could do without the tomato in them. Kind of strange.",review,o2-JGW-3pru6IK9o33oRJQ,0,1,0 +vvWx1pJvr3QuFb7IW4-KGw,2012-11-01,DqSgx-4kP_3xHFJyyZcbBA,5,My car looks better than it did the day I bought it!,review,vNx7F5bTO_rnh2ZlBUJ1Bw,0,0,0 +eIxSLxzIlfExI6vgAbn2JA,2011-03-11,6fcnPIcE3WjOVd6hiwULzg,5,OMG this place is good. Great Italian beef. Great burgers. FRY SAUCE. I don't know how they're pulling off such good food with what they have but it's awesome and I will be eating here if I'm in the area and hungry.,review,GeGDZ02UfARKBRl7LqKZuA,0,2,0 +itpHJcXW0PXNsdTbbKMfpA,2012-09-30,RFcu-xmzE52r93kIO4CeEg,5,"I love my eye doctor! Platonically, of course. The entire staff is relaxed, friendly, easy going, and personable. No one ever makes you feel rushed but instead take time to make sure that everything is okay, that you've thought of everything, gotten all of your questions answered, and had plenty of time to make decisions and think. The doctor takes time to get to know you and to talk about how you use your eyes (staring at the computer, sports, etc). The assistants try to think of things from your point of view so they can volunteer useful information and ask a lot of specific questions while doing so. This place treats you like family. There's a broad range of styles, but mostly, they're fashionable frames. When I go in, I see a lot of kids, young adults, and 20 and 30-somethings as well as the older patients who so often come to need glasses. Horwitz costs a little more than the mall chains, but my prescriptions have been consistently better thanks to the doctor taking time, the lenses are much higher quality, and the frames are worlds better in terms of availability of things that aren't ugly and durability.",review,lKze8Z4vzqgN5R8Bq8F_vA,0,0,0 +TcB2FSAwS5jeumxy99EvHQ,2012-08-23,xjy1Ww9gasHb848U6OUUOw,1,"Treated with complete disrespect. Worst service I have ever experienced. After waiting to see the manager I was directed to an employee who committed slander towards me very loudly in front of everyone in the store. Then the manager stepped in, spoke robotically without listening and then was incredibly harsh in tone and told me to leave. He said, ""leave, get out, now"" +****************Don't go to this store/don't use verizon******************",review,RUmnmK0e6gtk79psET9uQQ,0,0,0 +_tkAI5Q5XQSfgbqJzDKSDQ,2011-11-07,xzKwO0qKZ1rF7j5PDRR4MQ,4,"I am not sure what the deal is with all the two star reviews. + +For a casual dinner this place is doing a great job. The atmosphere is fun and friendly, the outdoor patio sparkles with all the little lights and the water feature is very cool to look at. + +My husband had dinner here and found everything much to our liking. The server was friendly and knowledgable. Our drinks were never dry and the food was just was just as described. + +It was a little cool the night we ate here but the dozen or so heat lamps did their job well. + +The layout of the courtyard is such no matter the size of your group everyone can have a great private meal.",review,lesPm96KavoFJORoUOuWbQ,0,0,0 +iGb3sQ4wCofUJOycrn0wQg,2011-09-12,08nAk1WzdtHyAIKEN2cO9g,5,"Always treat me well, very honest!!",review,xZE9fvrehWUGUmrZnZs5MA,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2011-02-18,n2AFOc65UHcO5mgkiI7NaQ,5,"One of my top choices for downtown Phoenix. Always an upscale, posh vibe, but with very generous prices on entrees. Good looking people throughout this bar. + +The Kisras are VERY tasty and a good spin off the typical flatbreads at many restaurants now. + +Brunch here on Saturdays or Sundays-- great drink specials too.",review,3eit3w0zDbb-z57c9P60vg,0,1,0 +7YYD_agS3Kb2sAx9JPkQEw,2011-05-25,BOW7rFb17ehroxtE-2FDuA,5,Great atmosphere and food. We keep coming back!,review,y-wRMqFtawAekwYQMoJ4HA,0,0,0 +jtzhY-P4H6WSYpv5rWhxtw,2011-09-13,zvY8ftT2XoXQ2Gr26BkK2A,5,Most amazing service! The food is common pho and buns but the main attraction is what drew me in it's not your typical Vietnamese restaurant it's a SPRING ROLL BAR!! Fantastic drinks! Great addition,review,HEjEYwYkWLJK12oi19N9uw,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2009-07-16,QeTK_DS1i5lg4CHDCX4nKA,5,"Ahhh, Four Peaks. By far my favorite restaurant in Phoenix. This place is fantastic as far as brew pubs go - great beer and great food to go with it. I can't believe I haven't taken the time to review it yet... + +The Beer: pretty consistently awesome. All the beers are at least ""good,"" my favorites being 8th Street Ale and their IPAs (Hop Knot and Raj). I have to say the Kiltlifter is a tad overrated, but still pretty solid, and worth a try. I've been meaning to try one of their cask conditioned ales, but they always seem to be out, probably indicative of the quality of those selections. + +The Food: fantastic! I can't say that I've ever had a bad meal at Four Peaks. The Italian Beef Beer Bread is the best thing on the menu, but you can't go wrong with the Chicken Fingers, Chicken Salad Pita, or really any of their sandwiches. The fries are also great here - there's a little crispy coating on the outside that is quite tasty. Oh, and the Spicy Thai Hummus is also a really good appetizer. A little more liquidy than your average hummus, but really good. It has a nice little kick to it that will have you reaching for your beer. + +Bottom line, if you live in Phoenix, like beer, and enjoy eating a good meal, then you should be shot if you don't like Four Peaks. If you haven't been yet, do yourself a favor and try it. You'll come away happy, I promise.",review,noekNAqLa2L3az5_bnb3zA,1,1,1 +vfLog2bLJGl6hAFtGtr0GQ,2012-01-02,_eunk4VtGkufHgtTksXwwQ,3,"Popped in for a quick meal before a show. Fun decor, brand new and sparkling clean, with a nice sized menu. We chose this restaurant because it advertised gluten free pasta. Unfortunately, no one on staff seemed to know what ""gluten free"" meant. When we asked which sauces might be GF to go with the GF pasta, we were met with blank stares. It took several questions to determine that the marinara sauce ""might"" be GF -not very confidence inspiring. When we did get our meals, everything tasted fine, not fabulous, about on par with a Pei Wei type experience. I had a small side house salad, which was not on the menu, but was offered by the girl at the register. The greens were nice, but not chilled, which was kind of yucky. The balsamic vineagrette was not able to be GF certified, so I had it on the side. It was just OK. My GF pasta was cooked properly, and the portion was large but not too large. I had the primavera with marinara sauce, and while the veggies seemed fresh, they were a tad overcooked. My husband had a pizza, seemed to be pretty good. My daughter had a kids meal of chicken tenders and fries--the tenders were a chicken breast cut into slices, which worked, and the fries were a tad bit reminiscent of Burger King's, with some parmesan thrown on top. The kid's meal also came with mini donuts, which we had to ask for 3 times, but there were fresh out of the fryer and covered in cinammon sugar--yummy. We ordered ice cream with a GF chocolate chip cookie--and what arrived was definitely not a ""cookie""--more like a gluey, gooey chocolate chip amoeba at the bottom of a dish with 2 scoops of ice cream on top. Eh. + +I tried to order an espresso machiato at the coffee bar in back of the restauant--the coffee girl didn't know the correct way to make the drink, so I opted for a soy cappucino--this was tasty and well done. + + +This is clearly a new business still working out the kinks. I think it's a good option if you're in downtown PHX and need a quick, decent meal.",review,wqR5v69DZy_qmaAfK8nZTQ,0,0,0 +0db71MbrvcJnyk71COCJBg,2010-09-28,FDPT0_apVVMKkmpK0T7jpw,4,"Got there at 11am on a Sunday, it was packed to the gills. WOW! I should have listened to Michele M. We ordered shrimp dumplings, roasted pork, bbq steamed buns, turnip cakes, shrimp egg rolls, chicken feet, spare ribs, steam sticky rice with meats, fried tofu, egg tarts, etc... Everything was good. This is the best dim sum you can get in Phoenix.",review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,0 +CNvPqN9pa5aJRn-Npcqgdg,2012-01-02,qoymRFBljPuZamIpC9sYVQ,4,"People that are rating this place low are nuts. + +It's a greasy spoon sure, and yes, sometimes as you'd expect from such the service leaves something to be desired. That being said this is a super tasty burger. Very moist and delicious. The beer is also cheap and they have a great selection of local brews on tap and in bottle. The beer on tap comes in one size, FISHBOWL! + +Also, get a fried egg on your burger, trust me, you owe it to yourself.",review,4gIi4L7e870qFbnRemaoBA,0,0,0 +2nzUx_M8Szyzsf4CszHasw,2010-02-14,gVkEHGYJ9d6FiohApDoqBg,5,"I've been going here many years. + +The food is always very, very good. Soups are fantastic, sandwiches are hearty and flavorful, and the service is excellent. Prices are reasonable and the food quality and quantity is probably the best bang for the $ you'll get in a place like this, anywhere I've been - and I travel a lot. + +I really cannot think of a single thing I can fault this place for.",review,KucBnMrhalzxnD9AWrxwYQ,0,0,0 +chFzObJSoxAbVlFfgk5JRg,2010-04-20,N1ua3GlOkCratCdduSh4UQ,4,"Well it's about time that I yelped about something already, it's been forever since I have! + +Got here on my lunch break, and find it surprisingly similar to the mongolian grills that I've tried back in CA.. piling on the meats, veggies, sauces and such. I'm a little surprised to hear people review on this place that placing the ingredients in the bowl grosses them out, that's what a mongolian grill is, right? Oh well.. + +If you like to customize your food, this is the right place for you, but if you don't like getting messy with your hands, this is definitely not the place for you. Definitely liked the amount of choices in ingredients and sauces, the soup and drink that's included in the meal.. but the 50 cent charge per to-go box is pretty stupid. Staff is really friendly, bathrooms are clean, pretty spacious.... + +Overall it's decent, but will only come here if I am in the mood for lots of leftovers or willing to fork over $9 for lunch..",review,uNbB1uR4EBhmygUc3IfPAw,0,0,0 +mHZXq1c6j1b5bKXTxKJ-pA,2011-08-23,XGbfw3oUgoJPtrZY4IeM5g,4,"Surprisingly I had a blast at this place last night! For a club it is a bit on the small side, but other than that it is pretty nice. It was a Monday night(watching a DJ spin) so it was not jam packed; i am sure the weekends can be a bit ridiculous in here. I am not sure what I think about the voyeuristic bedroom that overlooks the dancefloor...meaning from the dancefloor you can look up at a staged bedroom (looks like a VS fitting room), where a chic pretends to put on make-up, write in her diary, lay around in bed, etc. while wearing lingerie. It is definitely entertaining for sure! I wonder how much those ladies get paid to 'do what they do' up there!!?? Anyway, they also have body painted 'topless' cocktail waitresses, which I'm sure the men love. If you are a bit of a prude this is probably not the joint for you. I am sure this place pulls in lots of Scottsdale's finest douchebagery and fembots, but I cannot deny I had a pretty rad time there on an 'off' night! I danced till the lights came on (along with many others) and I haven't done that in a while! The service was great and the drinks were well poured...did I mention the bartender wasn't too shabby to look at either ;) Whether male or female, it is not too hard to find something tantalizing at the PCL!",review,K6MrbZeqKG35ZiucFfucvw,1,1,1 +SDwYQ6eSu1htn8vHWv128g,2010-12-19,GCrxp8a9tnbTe8T-knOW8A,4,"If you want bruschetta, you cannot go wrong here! You get to pick four. Request to have them cut in fours, much easier to eat! + +FAVES +Prosciutto with Figs & Mascarpone +Brie & Apples with Fig Spread +Fresh Mozzarella with Tomato & Basil +Ricotta with Dates & Pistachios +Salami with Pesto + +The green picholine olives ARE SO GOOD! + +Raspberry Chicken Salad is good. It's a little sweet, but I always ask for the dressing on the side and just use a very small amount. We usually share this as well. + +The Brie and Prosciutto panini + +The pieces of paper with 'your gum here' So cute! + +Mon/Tue after 8pm $20 bottle of wine AND bruschetta! Awesome! + + +Cons-Loud. Really loud. Acoustics in this place are terrible when it's busy, and it usually is. It's a little better when the doors are open. I guess they can't really do anything about it since it used to be a post office. Hence the name 'Postino' +Desserts are mediocre + +Crazy busy parking lot + +If you don't want to valet, you will have to park down the street on campbell near the residential streets.",review,d95On_QNeQPr01pRNzHa5w,2,2,0 +ePdWC_PsCuPVboQIje38Rg,2011-03-19,JtpK-snl9zuOu6MTlNNRXg,2,"The new Fry's in the burbs are awesome, but this old relic is pretty bad. Ugly with a with a smaller selection, plus staff who pass you in the aisles (when you're obviously looking for something) without asking if they can help. If you're in this neighborhood, head over to the nearby Safeway.",review,XLHDwNRYynxd8oiyIvk7DQ,0,0,0 +pzPbg_B2uSVJ72LIa2G3sA,2010-03-03,y0CuP0jacqkdRFPMDiwmaw,5,"omg... I love this place the food is great, the selection is great, the staff is very helpful. This is a great place to go have a few drinks and great stir fry.",review,_8eGLKjVpGK_mxwM8mlOgA,0,0,0 +BojnLUPz5IzZKyQocGc7uw,2012-06-12,0q_G6NKetlDEWxzoKDOYaA,5,I love this place. The family is very sweet and the food is real deal homecooked Cuban food ... as good as I remember eating in Havana. I love the Fricase de Pollo and my hubby loves the oxtail. The fruit juices/smoothies are delish too!,review,aI8UXirXvGbWGmMuQEai9g,0,0,0 +St3jS0PnF1lulH1ggA4Jgw,2012-06-27,10X6Nop4i1nTxm972opTag,4,"Luci's is a great little neighborhood store nestled on the corner of 16th St and Bethany Home. They offer a full breakfast/lunch menu (order @ counter, then delivered to table), plus a unique variety of items that you would find in a boutique-esque grocery store. I've only eaten here once, but I have stopped numerous times for their coffee or a six pack of cold ones. The strawberry waffles were very enjoyable, and the Mrs said the hash browns (mixed with sweet potato hash browns..mmmh!) and the yogurt parfait were also very good. +They have garage style glass doors that are raised during non summer months that allow for a great breeze and view of this busy little intersection. +The parking is a bit of a disappointment but I guess you cant win them all. After breakfast or lunch swing by Dick's next door for a drink or wander over to Poor Little Rich Girl for some boutique shopping, great neighborhood spots, wish there were more of them.",review,qHCEXMPiIuT8gyPCVce5AQ,1,0,0 +OSsueRKTxM0MEbgIRsUebA,2012-11-13,8KMknGjoSO_hvnzb0da-ww,2,"My wife and I almost always head in the direction of Bell Road for lunch or dinner. Today I decided to head west and south. Saw Taps they were new to this shopping center. +Taps looks like a sports bar when you enter. Only thing there appears to be only 2 TVs or at least where we were sitting I could only see two both above the bar. The decor is appealing, fresh, lots of light coming in from outside. +We were seated and very soon offered drinks. When the drinks came to the table we had both decided on their special. Soup and Salad. With this you get a tomato soup, as much as you want and a choice of several salads again as much as you want. +Not sure why but lately I have had a hard time getting soup that is hot. The soup came out at somewhere well below the state required 130 degrees. We sent it back asking to warm it up. We got it back it was warmer but still not hot. My wife's salad came out with her soup my salad came out a little later. I got the wedge. My soup and salad was very good. My wife also liked her meal. So the food gets a 4. +The service was very slow. It took over 15 min to get the first of our meal to the table. I did order a second different salad as well as did my wife. This also took about 15 min to bring to the table. For what was going to be a quick lunch we were there about an hour. There was only 5 other tables in the place with people at them so the reason for being slow was not that it was crowded. +The plates bowles they used to serve the food in is extremely small. By the time you had eaten you salad it was all over the table. It is impossible to keep in the small bowel it is served in. If you put the same amount of feed in a larger bowel it would be much better. + +The food was good, the service was not so good. Soup needs to be hot not warm. + +Enjoy",review,Y_nk4KhoHlkd1WRKCfIhuA,0,0,0 +hh2lP4_2N-tk_OxmaTf_qA,2012-10-17,QjeWpXhukMX6pYmxr48sNQ,3,"In short... great view, really expensive food.",review,AZ8NDHmLWdZGzvMtZXzjkA,0,1,0 +-sC66z4SO3tR7nFCjfQwuQ,2012-01-09,oZNFdkJUo9fHLzSpt8bP3g,5,"What to choose, what to choose. Such difficult decisions! Seriously, this normally isn't a problem. Dispite the fact that I'm a libra, I'm very decisive. Friends usually look to me to make all sorts of decisions ::diabolical laugh:: Still, this place consistently stumps me. + +Is it Tuesday? If yes, then I'm definately getting the Pork Belly Tacos. + +Otherwise, I'll start with an order of Ceviche and Asado Salad. + +To drink I'll have Agua Fresca de Sabor. + +Yes, I'm going to have an entre too, I mean I've already broken my diet, might as well :D + +I'll have the Huevos Rancheros or 3 Carne Asada Tacos or the Verduras de Temporada or the Chilaquiles Verdes or the Carne Asada Torta. OMG, so many great options! Seriously, this normally isn't a problem. Oh well, I guess I'll just have to try everything. + +Next up, a euphoric food coma! Life is good.",review,xg4AdOGHFxJyWByFbG8stA,4,3,4 +9Qt1pt0pk2VWz0chdGk-jw,2009-05-17,Xyu5ZtKC4zhDk9HVl6viiw,4,"I was a dim sum virgin until yesterday! My wonderful wife Audrey W was there to share my experience with me as were Dottsy Z, Donald S, Marian and Kevin H. And Dottsy has pictures too! And wow did I get off cheap! + +The best dim sum I have ever had! Honestly, the only dim sum I have ever had! I'm so glad I had other yelpers that were experienced to share it with and help me enjoy the first time! + +Seriously, Phoenix Palace has really good dim sum. I enjoyed nearly everything I tried, there was tremendous variety and high quality through and through. I was not quite as adventurous as some of the more experienced folks at the table. I did pass on a dish that featured tripe. Sorry. Maybe I wasn't ready to go all the way. + +The review trend has risen over the last few months. I think I heard there was a change in ownership or management or possibly a new chef. Or all of the above. I don't know but it was good. + +For 6 people and loads of food the total was just under $70. Unreal. + +Great lunch spot for dim sumderful variety and a total bargain. Phoenix Palace is in the same parking lot as Lee Lee Oriental Supermarket so you can fill up on dim sum before you do your shopping. Then you'll spend less when you go shopping. Never go shopping hungry.",review,P2kVk4cIWyK4e4h14RhK-Q,20,19,16 +ZXvxDxhNz8XSe59oj2QlZg,2012-08-23,nGOyrBkFs6fF7NRm0XlDWw,4,"I love Rubios. I can't really help it. The fish tacos with some lime and a Corona just hits the spot sometimes. I'd recommend it over any of the other restaurants on this particular strip in Surprise. + +Edit: Now closed.",review,kRbQXbWCjn3lwWyIQD9cXw,0,0,0 +y09589YKY953yYzK4JxcRg,2011-10-26,0CePh0RhDyOAdS7aZLnEsQ,4,"I've got mixed feelings about at&t... just as I'm sure that most people have mixed feelings about their mobile carrier. But this review isn't for at&t as a company, it's just for the Scottsdale store where I stopped in recently to return a phone. + +Long story, but I had a temporary android phone and hated it. After hours (literally hours) on the phone with at&t customer service, I worked it out so that I could return my android phone at this store and then head over to the apple store with my upgrade eligible status to get the new iPhone. That part is another story, and took longer than expected, but luckily, I did have a decent experience at this store thanks to the help I received from Hasen, the retail sales consultant that helped me out. + +I hope there isn't really ever a need to return to this store, but if you must go, ask for Hasen... he was friendly, answered my questions, and provided the service I was seeking in a speedy yet attentive manner.",review,fczQCSmaWF78toLEmb0Zsw,2,4,2 +FqzgT9Y-Yu7jiWdHnGW-kQ,2010-04-01,HrKXwRLwt40uOlB42Z2KIA,3,"I can say that I used to love the place. Not so much any longer. + +Went over there this past Sunday at 7pm. Crowded, but still room to sit 6 of us. Here are a few simple notes to sum up the evening. + +Waitress was on something. She was walking, but out of it. Forgot our order twice, and both times could not remember even taking them. Very bizarre. +Girl next table fell over and out of her chair. No one really even seemed to notice, maybe that happens often here now. +Place looks tired, worn out, especially the fabric on the chairs and booths outside. If you squint, you can see the old Vig, when it seemed spotless, and shiny. Now a bit tattered, along with the staff. + +If you are over 28, then I would have to say you might feel old in here. Reminds me of a spring break crowd being filmed by an MTV crew in Cabo. Very young, very drunk.",review,PV5Lv_xl3DDAcAchFJCbXQ,0,0,0 +1Duul3qCnLrNak1Np-iHfw,2010-06-13,HTxbu6RbkoA-WjIvxnITcg,4,"Ok seriously I don't miss Arizona but I sure in the hell miss this place. I daydream about this place....I miss everything on the menu because trust me I tried it...I was a hungry pregnant women on the prawl....besides I loved the live music and the hummus was out of this WORLD!!! + +If you haven't gone....go you won't regret it...It's one of the few things about Arizona I miss.....",review,wxzGhHrqKrGYGN72vFyTAA,1,1,0 +wyxsEFTGC1MuadT2SpTE3g,2012-05-24,rZncl8tzjVStQuRnSPYMzQ,1,"After reading all the good reviews, we were looking forward to eating here, but we were a bit apprehensive due to the couple of bad reviews because of the smell. Bummer...the smell just killed it for us right from the get go. Immediately, upon walking in the door, the pungent smell of backed up sewer hit us like a ton-of-bricks. We did a 180 and walked right out. No way I could sit through a meal here while breathing that funk. + +Get the smell worked out and we will give you another shot, Tasty Thai.",review,DvrsD8rySf7fmJl2PVn6oQ,0,0,0 +v76uEBa0jkRl8AH28piX4w,2011-08-20,kMsAdkzO4RI-y1f5vbXNvQ,2,"If you're into smoke that reeks all over...this is the casino for you. It sure ain't Vegas where you don't smell any smoke. Peeee---uuuuu! Stinky. +And if that wasn't bad enough: I went with a group of friends and we all ate at the buffet. Now, in all honesty, some of the food there was pretty good: the shrimp, the prime rib beef, the stuffed cheese lasagna, etc. +Some was pretty bad like the ceviche and the desserts--OMG--how bad they are. +My cheesecake was, obviously, a day or two old and had that refrigerator slightly hard crusting over it--plus, ever so slight smell from the fridge. +Not yummy. The pies were alot of filling and few pieces of fruit. Just cheap desserts, so stick with the meat and fish. +Here is the coup de gras, tho. I was given a $4 comp on my player's card. I went to 3 different machines and they were all BROKEN! +Finally I find one that lit up green so I knew the players card was working. +And guess what? The $4 comp money never showed up on the card. +If this Casino thinks I would actually spend money to sit in their stinking cigarette smoke loaded casino, they have another think coming. Hell no! +I also had a ticket to see their Showstoppers ""show"" which, if it sucked as much as their slots and crappy old desserts, I figured it wasn't worth it. +On my way out to go home, I pitched both their non-working player's card and their ticket to the ""show."" I knew I would have more fun watching reruns of Sex and the City at home than boring myself even more. +Goodbye, Casino Arizona. You have alot of people in that casino so you're making money off some sucker...just not this sucker. +Never again. +(2 stars because their fish and meats were really good)",review,XfDBDEm2-HEcvYO_nso1Kg,1,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2008-10-27,6jIkly-coKd7ReOQcvRidw,2,"Over-priced, over-crowded and every time I have been there...it has confirmed that they pour the worst martini! +But if you are looking to 'people watch' this is the place - the interior permits a great open ambiance with an open area overlooking the bar. I think the exhaust-system isnt strong enough for the Teppan tables because I smell like heavy fried food when I leave!!",review,JVeCUlDmcwJ3pteEdmzeHg,1,1,0 +O510Re68mOy9dU490JTKCg,2010-04-28,_pNTs7YYxM_zHqi_4F5zTw,5,"my husband and i LOVE this place! + +no, we cannot afford to get our weekly groceries here (although it would be terrific if we could), but we view oakville as an excellent alternative to dining out on the weekend. + +the food is delicious (think deli, simplicity, quality ingredients), and the atmosphere is comfortable and relaxing! we found that if it's too crowded inside, then it's easy enough go outside to the awesome patio area to enjoy our beer and goodies :)",review,0_Owni6-HjMGBUlt-i19Vw,0,0,0 +RRGRruNX4o6689EB48z3-A,2009-05-11,535byEwl2ysLSYX_ZfLG6A,4,"My husband and I ventured up to BLT Steak at Camelback Inn on Friday evening to celebrate our third wedding anniversary, which was two days earlier. We sat inside and our corner table gave us a perfect view of Camelback Mountain at night. + +Our waiter was super nice and did a great job of suggesting items and answering questions when we had them. There was a seperate server who kept our water glasses full all night - we couldn't take more than two sips without having them refilled it seemed like. My only negative about our waiter was that when it was time for a new glass of wine for me, he didn't check with me first to see if I wanted another glass of the same wine. I think we all know the common saying about assuming things... + +On to the food...here's what we sampled: + +Popovers - delicious. I was a bit skeptical about the butter and sea salt, especially since I don't like butter very much, but it was great! + +Caesar salad - good size and it was one of the best caesar salads I have had in awhile. + +Crabcake - my least favorite part of the meal. While it wasn't horrible, there was a bit too much celery for my taste and not enough crab meat. + +Cowboy Ribeye - since it was 22 oz, I graciously told my husband that I would have some of it so he could order it. Now those that know me know that I don't eat red meat because I don't like the taste. But I sucked it up and had some...holy crap, I had a few bites and said, ""Wow, this is really good"". So that should say something about how good it was. However, my husband did think the outside was a tad too well done, although the meat itself was cooked perfectly. While he liked the ribeye, he did think his steak at SW Steakhouse in Las Vegas was better. + +Mashed potatoes - is it possible to get divorced over mashed potatoes? I thought we were going to throw it down because one side of the potatoes was just not enough!! They were sooo creamy and delicious. + +Chocolate peanut butter mousse - we got our dessert for free since when I made the reservation I indicated we were celebrating our anniversary. The dessert was a nice way to end the meal, although the chocolate on top was just a touch too rich for my taste. + +With tip, our bill came to $162 which we did not think was bad at all for as much as we ordered. Unfortunately we didn't get to sit on the patio or enjoy the view at sunset, but I guess that means we'll have to go back which isn't a bad thing at all!",review,jqVeTSin5GeRm0ceSg-PBA,11,13,11 +k8JnZBspVOI8kLcQek-Chw,2012-08-31,zfikxd-gcucaz2-l5Kz0Sw,1,"HORRIBLE---no, NON-EXISTENT customer service! Which is a shame considering they have good pizza. I ordered 2 pizzas, wings, a 2 liter and extra ranch; an hour later, the delivery guy showed up with 1 pizza and wings. When I told him that the order was not complete, he just rolled his eyes and rudely informed me their online ordering was ""messed up"". Then shoved the pizza and wings at me without apologizing or offering to correct the mistake. Problem was, I had already been charged for the whole order so I was not about to take less than half of what I paid for. I told him to cancel the order and he turned and stomped away without another word. I immediately called the store to make sure I would be credited for my screwed up order that the delivery guy made no attempt to correct. I asked for the manager when they answered. The girl who answered said to someone in the background (without putting me on hold so I heard every word): ""Someone wants a manager. I guess that is you."" The ""manager"" told her he didn't have time to talk to customers and proceeded to yell at her about all the work he had to do....uh- FYI buddy, customers are THE REASON YOU ARE IN BUSINESS so it would be a good idea to make time for them!!!! The poor girl came back to the phone after being totally berated by the manager, and I told her what had happened with my order. She offered to credit my card for the order. Only problem is, it takes 48 hours to process. So now I am out $40 for the next few days, I have waited over an hour and still have no dinner, and I was treated horribly by not one (delivery driver) but two (manager) Mama Mia employees. I told the girl on the phone that the delivery guy and manager should not treat customers so rudely, she apologetically agreed. I asked for the contact information of the owner; if this were my business, I would want someone to let me know if my employees were treating customers like dirt. She could not provide the contact information but offered to call someone named Frank and have him call me back to resolve the situation. I never received a call. Apparently, the ""customers are not important"" tone is set at the top in this business. There are lots of good pizza places in Phoenix, save yourself the hassle and the headache, order from somewhere that actually knows the meaning of customer service.",review,aFGLKBULCq-niW6xY17YrA,0,0,1 +jvvh4Q00Hq2XyIcfmAAT2A,2011-05-23,8EhYz0Ko2PR3sDzaCJWRzg,5,"I just ordered the 'hamburger' then added my favorite toppings. + +Another excellent burger, I have to say! Plenty of meat, freshly made - and hot off the grill! + +Top notch fries as well, overflowing from the cup they put it in. It takes about 5 - 10 minutes to get a great, fresh burger like this - but is very much worth the wait!",review,z_CkxSW81mOfphqk_20mcA,0,0,0 +R2Z-eHb0POFFVlFXlouLKA,2010-11-05,iUVEVlJltJg-o-f0Dr0nnA,1,"A friend was visiting from out of town and we decided we wanted a pampering experience. So, rather than go to my neighborhood mani/pedi place, we went over to old town scottsdale for lunch and a (we hoped) luxurious pedicure. This place looked very promising, and the lady at the front really talked them up, so we took the plunge. + +Everything seemed promising . . . we waited in a lovely outdoor area until they were ready for us. Then . . . disappointment. The pedicure was nothing I couldn't get for half the price, the massage chairs just vibrated, my feet were still a little rough afterward, and the paint job wasn't even that good. + +Basically, this was VERY overpriced for what was an incredibly unexceptional pedicure. We still enjoyed ourselves, but agreed we would never go back there.",review,w1xiu0diVkPEyTH0ebmN6Q,0,3,0 +KbN836a966ec6tEI0-wh7A,2011-11-06,vUJMpMHjcwffl4tM4x2ITg,2,"This pizza always tasted great but lately I feel like they have cheapened their ingredients. I realize its $5 pizza but it just tastes different to me now. If it weren't for the flavored crust I would not come back. +But the main reason I have not returned to Hungry Howie's is because the last time I wanted to place a pick up order I was turned down. I asked for a reason and was told that they received a very large company order and they were not taking regular orders at that moment. +You'd think they would be able to accommodate everyone even if a large order was placed.",review,6uiCxbxpNSt1bWYT2xwAsA,0,1,0 +FlZ5dTvuoPls8OuXfUAwqg,2009-03-27,WiHBPGBL8eGSlSWArLgu9Q,4,"Johnnie's Garbage dog is the work of the God's. You can't go wrong with any of the dog's here so when you can't make up your mind and everything looks so good - why not just have it all! Seriously try this one. + +Be forewarned it can be messy, so get a good grip because once you pick it up you won't be able to put it down.",review,XM6M-WWbCAeLy83jrABkcA,0,0,0 +FFHzFdyWgM-OdMghuXMPEQ,2012-09-04,-ifi33JyW-GEX4lhGwdQQQ,4,"Food- Amazing nachos! Best i've ever had. Plenty of toppings, well worth the 9 dollars + +Service-The guy behind the counter is very nice and makes excellent suggestions and remembers me every time I come in and asks how his suggestion panned out! + +Ambiance-Nice little spot, nothing fancy",review,TU6stUlyKnf7z2RwdDGuzA,0,1,0 +vF4d_jh3shJx8jU39AZdqg,2007-12-02,QGQKkZ3nHKjskPQUy_-LBg,3,"Approaching the front of the building, I was instantly impressed with the theatrical lighting on the outside of the building, the foyer is large, ruby red and created a grand mood when I walked in. They even had large crystal chandeliers. + +The theater itself is a nice size, not large, but sits on the medium scale. My seat for the Christmas production of the Nutcracker was on the third row, center and the view was nice. There didn't seem to be any room for live band or orchestra, but the sound system was full.",review,_mo4LtybzPjvg-i6meN-tw,3,3,0 +R8VwdLyvsp9iybNqRvm94g,2012-11-25,MssRanddUGkONS-WDywFtA,5,"I went for both breakfast & dinner two days in a row. I got the commuter sandwich which was fabulous - didn't think such simple ingredients could blow my mind. I came back for dinner and got the kale & quiona salad - again - very simple, but amazing. + +I need to come back and get the pizza!",review,CtuoM6_Im-xBZMAqPKMQ8A,1,1,1 +9BH18avE46LlHMvJn67MaA,2008-03-02,c8-n8xuUnmmTguKIvR7RfA,4,"All around great. Great food, great atmosphere and great location if you work in the downtown area.",review,uj79HTtyOdAdd_TaPcdxjA,1,1,0 +SsNGCAsXJpeUY3sS99XQpQ,2010-08-19,LoM4aVHd8zLjXdLuPuquag,3,"Kimchi - 5 stars. +Other side dishes - OK. there is no date on it so I really don't know how fresh they are. I went there couple times to get side dishes other than Kimchi. it was not as good as Paldo. I only go to Seoul Market for Kimchi now.",review,9YlXXAy6YpADI7v42UwWCg,1,2,1 +65ujBUIwQ3iGBjymj268IA,2007-04-19,8iBXk0QN83RDTshK--hXsg,5,"Simply the best automotive repair place I've yet found in Phoenix. Honest, fair, and competent. I've taken three vehicles there for service over several years now and never been dissatisfied.",review,yy8vNTtESId44OcGyaVnbw,2,4,0 +6qC2ATU4rVRRTKI-SScQOQ,2010-05-21,pyPccIqqotuaraLAPAMcsQ,4,"Perfect place for b-day dinner with the family. Happy hour out on the patio, margaritas, sushi roll's, won ton's, pad thai. All very tasty, great prices, good service. Overall, I think this is one of my favorite local restaurants. Not a big fan of chains, however I don't really feel like it's in that category.",review,IVb9YMopuGyt5jJ7rjwoqg,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-01-25,36cqwYCD-JzwhoqCtI-dHA,3,"On atmosphere alone I'd give Sapporo five stars. The restaurant offers a trendy, modern decor and its spacious enough to accommodate the vibe you're seeking, whether it's an intimate date, the bar scene, the sushi bar, a group hibachi table or a large party on the patio. And the servers are all gorgeous. Yes, this is the place ""to be seen"" in Scottsdale. + +Food was pretty good, although we just stuck with the happy hour menu. With half price wine and cheap rolls it was a reasonably priced meal. We had the tuna nigri, caterpillar roll, spicy salmon roll, veggie roll and the Kobe beef sliders. Tuna was decent, nothing amazing. The rolls were really small too. There was so much eel sauce on the caterpillar roll that when I went to pick up a piece it fell a part in a soggy mess into my soy sauce (which splashed onto my freshly dry-cleaned cream-colored silk blouse. Lovely.) Spicy salmon was standard--nothing special. I enjoyed the veggie roll the most; the biggest of what we ordered, it was crunchy and flavorful. Kobe beef sliders were delicious but, seriously, who messes up Kobe beef? + +There is one thing that bothers me while dining at a sushi place: requesting more ginger & emphasizing A LOT more ginger and not receiving it (or receiving a puny pinch). I put in requests to two servers and, after waiting 10 minutes, was brought literally three pieces. Call me picky, but seriously, ginger is a freakin Japanese condiment. Show me the money! (or ginger, in this case). + +I do wish to return to try some hibachi. The aromas wafting around the place from the hot tables was intoxicating. Maybe they'll redeem themselves with more ginger.",review,qZrArI2ohkYkQlELl13BKQ,0,0,1 +k6Si433-EJrY4J7SZxsnjA,2009-06-30,DHw2RtwCwOa_1aNRElu8oA,5,"2nd time I went to Grazie and both times it was excellent. The service is fast and attentive and the food great. The portions are huge so there is no problem to share the starter or the thin crust, wood-fired pizza ... So far I had the Dame Edna and the Roma pizza and both were very tasty. The wine collection is great and has some very interesting stuff which includes also less expensive wines. Haven't made it to the desert menu yet as both times there was no space left ...",review,lDUiT63wNEYbG39ijdQ7QA,0,1,0 +U6oNWTxVTnuuCL0BPRZCSg,2011-05-26,vrjFUZ7II8Nnh-nHoLrqDQ,5,"Review #800 + +I had to wait for a great place to feature for #800. +Enter: Parent morning movies... in a theater that offers changing tables and dim lights in addition to their ultra nice seating, VIP rooms, 21+ beverages, good food service, incredibly friendly staff, and caramel popcorn. I'm in!! Oh, and did I mention it's a beautiful, clean theater, too? + +WHO: All mommies, daddies, and other care-givers + +WHAT: Go see a movie with your lil one! + +WHEN: Wednesday mornings and occasional featured nights. + +WHERE: Listings for participating Ultra Star theaters are here... http://www.ultrastarmovies.com/parent_movie_morning.asp + +HOW: Because Ultra Star theater is AWESOME. + +WHY: Because you deserve to get out and enjoy a movie... bonus that it's a movie with Early-Bird prices of $5.75! + +I wanna give a shout-out to the management, staff and... whoever thought of parent movie mornings to begin with. It was nice to get out of the house with my lil one, to do something that I used to take for granted when I wasn't a parent. haha And then to get there and have the theater so nicely set-up, complete with changing tables and dim lights... well that was amazing. All of the care-givers there were relaxed, happy and able to enjoy a movie without worrying about missing a part if their lil one fussed. We all had nothing but praises for your kid-friendly attitude and made plans to meet often. + +Thank-you Ultra Star Cinema for a new, great experience. It's been a while since a place surprised me so much (in a good way)! + +See ya there!",review,fPHLPrymsyb6WSFFKoMrTQ,5,6,2 +ntN85eu27C04nwyPa8IHtw,2010-03-27,_B2cGsY_V3GzWxVTjCTmEg,3,"After all the raving I have heard about Matt's Big Breakfast and the long wait I was so excited to enjoy my food. The quality of the ingredients were high; however, the service was not so great. I felt that the waitresses were attempting to rush us out of the restaurant. I realize that it is a busy place, but their overt pushiness was not warranted. + +Overall I would not go back again. The food was made with great ingrediants, but it just didn't ""do it "" for me.",review,uA18GuF_ezOH6tXkrrykbw,0,2,0 +w-8M-VOHICthOgwpQL8UnA,2011-10-19,uKlyjwZL324nMSKX3pXYqQ,4,"I've tried 4-5 different reflexology places in the East Valley as well as numerous professional massage places (like Massage Envy which is much pricier and kind of hit and miss) and Relax Station is the place I'm sticking with. (See ya later Massage Envy!) + +It looks unimpressive from the outside, but I like that it is very clean and unsketchy, and they have private rooms (some reflexology places I've been to put you in a huge room with like 10 other people which feels a little strange). + +They've always done a great job, and the price is reasonable (30$/hour) compared to other places in the area (cheapest I've found is 28$ at other places with a coupon). They also give you a full bottle of water when you finish. + +They also take walk-ins or reservations, and I've never had trouble getting in when I want to. + +Relax Station has definitely become MY massage place, I usually end up going every 3 or 4 weeks.",review,NOT62UqxXd_Y9xTfmKZl0g,0,0,0 +YQz2fnfnL5eAWn1zOmKYnQ,2012-11-05,sqtAlz4qop6JeQ42SHWLxQ,1,Went there first thing thing this morning. Ordered 2 simple sandwiches. Took over 35 minutes to make. 6 workers lounging around. Completely ignored. Totally disgusted with their service. Overpriced. Food okay and felt worthless when I left,review,bTxF_dSqxvSO93nibrJJTg,1,1,1 +-vHWAsiX0iHWJw-pkqv32Q,2007-03-01,Gfv7fINVK_6_uLgR6z6gOQ,3,"Food is ok. Pad Thai is sub-par. The happy hour is very cool baby suburban around this joint. +It's attached to Chandler Fashion Center, so it's busy pretty much all of the time. happy hour specials are just ok, specialty drinks are pretty expensive with little taste and even less alcohol. +plus, i loathe happy hours that you can only enjoy in the ""bar"" area. the patio is the spot for HH, and it's LOUD. not just with vapid chatter, but with the constant scraping of meatl chairs on the concrete. it sounds like i'm being picky, but it's one of those sounds that makes your skin crawl and just kills your mood instantly - over and over and over. +anyway, if you're a big time up-and-comer and want everyone to know, this is the place for you.",review,7GC9fVWKa4a1ZmBGLH6Uww,0,0,0 +ykfTh6HI219NoMsWBxulxw,2012-11-25,ohdh6e92lPDtIxXV6gaS1Q,5,"I have been going here for years. I love the ""Hong Kong"" style pan fried crispy noodles!",review,zS4tNnZaHqZZamzo0mPExg,0,0,0 +FURgKkRFtMK5yKbjYZVVwA,2012-06-28,0qrQDlMuDX2Np93p7s0pEw,4,"This is hip and trendy eating establishment fills up quickly around lunch time. I did not like the fact that the hostess attempted to seat my companion and I all the way in the back of the restaurant, passing up several unserved tables. Nope, not on my watch. We split the fish sandwich and a chicken sandwich. I really really liked the fish sandwich. The flavors were layered and intense. The chopped kale salad was a nice alternative to a traditional garden salad. The chicken sandwich was a little bland. Our waitress was on top of it, I think her name was Lisa. I was not loving the flies buzzing around while we ate, but what can ya do.",review,PmnXHiOiRqgjzEtYu4_46w,0,0,0 +NcF7tZHe3p5wgQCKfHzhSw,2011-07-13,1FIHZBjCyjkj5YU5FFeglQ,5,"I've been a patient of Dr Lienau's since I was six years old! I usually don't care who my primary care physician is, but when it comes to my dentist, there's no way in heck I would switch. I even referred a co-worker to him recently! + +He's very honest, upfront, and has such a great support staff. Colleen is the NICEST receptionist! One of the hygienists has been there for years (I forgot her name!!) and is also a very friendly woman. + +I definitely recommend Dr Lienau!",review,r4mNCiXIfuMdrzwQcIKUJA,0,0,0 +uWAmlaH9xJbE3xyv3P8DWQ,2010-08-16,DM_u9sH85Dr1pm2aJ9yBjg,5,"dr. matsumoto and her team are the best! she came recommended to me by a friend who also goes there. they truly care about the WHOLE child and not just their medical care. we have seen 3 of the pediatricians in the office and they have all been great. we developed a special bond with Dr. Miller during a very lengthy health issue with my son. it's a 45 minute drive for us now that we've moved, but we still make the drive to see dr. miller because we trust her to make the right decisions and offer the best advice for my child's health.",review,kA7gZoPRQ33rD2T6_Uoh3A,1,1,0 +qNoNkF1yJctEs3t40VkX4w,2011-05-21,Gtj1O8LDMztsP15kViUnIg,3,"It is important to point out that Blue Adobe Grill is not a Mexican restaurant, it is a New Mexican restaurant. While that may seem to be an unnecessary clarification, it is actually fairly important to keep in mind as you visit. + +For a New Mexican joint, it is pretty dang good and true to the region, but food a sit-down Mexican joint it would be disappointing. In order to maintain full disclosure, it has been a couple of years since I went here last, but it has been around for years so I can't imagine much has changed. Overall I would recommend it to people who don't have expectations of a certain type of food. It's good but nothing memorable.",review,tNpfNLjxS34wmsroFemoNg,0,3,0 +q1nDSpmV-FdTBNj6UuZvTg,2009-06-15,Dcc0hxwbfn2svzsUXTNZpw,4,"Totally fantastic. + +I love to stop by here whenever I am in Phoenix for their pork sandwich -- which is great. I especially like the barbecue sauce that they use. + +I hear on good authority that many other menu items are good, but I can't tear myself away from the the pulled pork sandwich. They also do a really tasty potato salad, sweet potato pie, and cobbler.",review,xeNYMmYXZSAXNJE_axDyBw,0,2,0 +14K90G-hbfk795NY7cKxMA,2013-01-03,YLmFXPEWXvC3XBHCtwjDUQ,5,my first time here at blue 32 was great. i came for happy hour I had the chicken wings and a chambord margarita both are fantastic! service was friendly and fast.,review,jTwlhytPSEN76gmiF8tgfw,1,2,1 +3Q7vtF_cdHGyp2JOlKcu-Q,2011-02-19,pa-ZaltPxL6OYf6UDSwwqQ,4,Like I said with a double double you never go wrong,review,XmaKkzFR9E1UqH35IhP9Dw,0,0,0 +7m93HSBV1UrdHZBJwdUVJA,2009-04-10,6xx-aJ58nc7s876ztYPvOw,2,"If you like Houston's, this is like Houston's creepy cousin that isn't quite right. It's Bizzaro Houstons. The food is just gross. I didn't like anything about it. You do get a TON of food...but none of it is good. I got the pork tenderloin...it was gross. I ended up sending the meat back and just ate the mashed potatoes with the sauce...that's all I could stomach. (The prices are about the same as Houston's, however.) I couldn't believe how packed this place was...no one at our table liked their food. A few of my coworkers went there as well and there were no good comments about it.",review,XmpqbfSu9X7mjwJGUXTrAQ,1,2,3 +JGaszk_Jm-iyxiIVPYdobg,2012-10-21,7vmVBMt4Z02pJx_9WhLAQw,5,"Best selection of raw and dehydrated food around. Very helpful personnel, friendly. Will shop here each time I vacation here with my dog.",review,c7cRAAGVOovZIijQK7lwwg,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2012-02-10,99NlDtaGOnbEy8_lFOO8ZA,4,"I wish there was a half star, because truly I would give it 3.5. The food is good. The ambiance is good, but the service...meh. + +The reason I go...The beet salad. THE BEST in the Valley I have tasted. The pistachios and arugula with goat cheese? Diiiiiiivine. But, truth be told, if they took it off the menu, I would never come back. Still. xoxo",review,gh2OwESXrgVyufGz_NPHxw,0,0,0 +ng4_UnnYPqesby9C0WVz2Q,2011-06-21,VP1JJW8VFbPVTLD5NXSxDA,5,"We'll take this over Godiva any day! The staff is always so friendly and they're always nice enough to give my kids (all 4) a sample, too. Nothing compares to their chocolates, especially the the vanilla milk chocolate, Brown Sugar Milk Chocolate and Coconut Milk Chocolate! Don't forget the lollipops that last FOREVER for the kids!! Just make sure you have a few wipes on hand!",review,0CIP-nma5yM9HY1OOBS2yA,0,0,0 +uPDTnuR-sOi47blHH943lg,2008-03-18,CaOCxourQtrV33gm1cXoqQ,5,"It's a restaurant in a gas station, but it merits five stars b/c it has glass bottles of soda, just like you find in Mexico. Good food too. It's actually not nearly as bad inside as you'd think, it's pretty well set apart from the gas station sales, so I wouldn't mind eating there. They have a few tables set up inside. I usually get takeout though (they also deliver). + +MANZANA LIFT ROCKS!!! I'm also going to be drinking the Sprite in the bottle, (cane sugar ftw) and the horchata. I don't care about Chipotle opening near work anymore, I've found a new Mexican fix for lunch. What a happy day.",review,MUHoBFzwRoXpCpgYSN8KRA,0,3,0 +kpzzEpXcHo9yzhUcz14chg,2012-11-13,gL2lRXFWSI34OAPM05n2rQ,5,"I used to work here back when it was a Harkins. It's way better now. Comfortable, friendly, laid-back. Kind of decorated in a golden age of hollywood style. I dig it.",review,lG6Q5OvamVHUSk9MPE6Q4A,0,1,0 +jgbEZzERVI4yvAAtXWW93A,2011-04-29,cF4akO-bQ7lbM_H_1KzJKg,5,"I stumbled across this restaurant several years ago after becoming frustrated with the generally 2 hour wait, (no matter what day) at a DIFFERENT pizza restaurant in Heritage square, downtown Phoenix. Although the pizza was terrific at that ""other"" restaurant in Heritage square, I had a pretty UNBELIEVABLE experience....I was with a date, we waited the 2+ hours, had a really good dinner, salad, an appetizer and pizza. We decided we wanted another pizza and when we asked our server for another, we were told that we could not because there was a line of people waiting to get in. I was amazed. We left knowing we would NEVER go back. I heard about La Piazza al Forno not long after that experience.....I truly believe things happen for a reason. The pizza was even better and has been consistant ever since. The service was very warm and friendly, literally like a family welcoming me into their home. I learned that night, that it was one big family run business. Oh and by the way, the best...did I say BEST pizza that I not only have had in AZ, but NY has nothing over them! Icing on the cake, the prices are VERY reasonable! I GOTTA have a fix every 10 days! For the longest time I didn't want to tell anyone about my secret, however, they DESERVE to be known! AWESOME!!!",review,Q_LkJOgIvNHq4v6lEHh_tw,0,2,0 +FCcFT610nQBVcRdY-devQA,2011-12-08,i_a8Q5taAq2_s2bXmv4qFg,5,"Wow! This place is amazing. So amazing I went there twice in a week. I will start with my dinner. + +The ambiance was great. The place has a nice warm feeling to it and since it was cold outside it was really nice. They had a large fireplace inside and after dinner we stayed for the great crowd that showed up and went outside. It was pretty chilly but I didn't even notice as the fire pit was big enough to warm everyone around it. They also had ample heat lamps. + +The food was fantastic. I had the tomato soup with the grilled cheese crouton in it and it warmed me up and prepped me for my main meal. I had the burger and tender belly bacon. This was an amazing treat for my taste buds. The bacon was not like any bacon I have had on a burger. It was a perfect complement for each other. I wanted another one when I was done but couldn't possibly eat anymore. + +The drinks were great. They have an amazing wine selection. The wines we were drinking were affordable and it looks like they really spent some time picking the right wines to carry. They have some really nice wines that rival the selection of some of the really nice wine bars in Scottsdale as well. My friends said that the mixed drinks were really well made and they were very happy with how they turned out. They have just about everything you could want for mixed drinks. + +Service was amazing as well. They were really attentive and the owner stopped by to talk to our table. + +Lunch + +The lunch was just as good as the dinner. I had a shrimp BLT that rivals anything in AZ. I was glad to see that had a variety of Dr. Pepper/Mr. Pibb on tap. It was really relaxing to sit there at lunch and enjoy the crowd. The service was excellent. + +Overall I highly recommend Vintage 95 for lunch or dinner. It is a great place for a date at night and you can enjoy the great crowd afterwards with great conversation and ambiance to fit.",review,SiFloh5xminiR6GopZINRA,0,2,0 +YQvg0JCGRFUkb6reMMf3Iw,2009-12-21,pwMtFMyZRYAoA5mC70U5NQ,4,"My take on Mill street is that it's your classic college-town main strip area with a couple bars with big TV's, a burrito place, a burger place, the quintessential late night grease-craving joint and a couple ""edgy"" ""boutiques"" selling overpriced Asian imports to tourists that will bite (guilty), and college students trying to reinvent themselves with ""hippie-chic,"" whatever the f that is. (Um, also guilty...) + +But I way digress! Streets like this also always have a couple more decorous dining establishments for when the parental units are in town -- which is exactly what I happen to have stumbled upon in this place, and perfect because if there's anything I love as much as edgy ""hippie chic,"" it's decorum. + +I treated myself to my one sit-down meal during a week of travel/ being late for everything/ conference bagged lunches, and can't think of much more to have asked for than sitting outside on their little street-side patio with my glass of rosé and my truffle oil pizza. Granted I've had better rosé and more perceptive service, but man, truffle oil. Self indulgent afternoon success.",review,RoOwAUD8CNZ2uFnR8qC2-A,0,0,1 +h7hr0v3E1ulU2sXNItD5UQ,2012-09-27,gWprFxdQ1JvnmkIIxSn-JA,5,"Mexican places like this need to be judged based on consistency - here's what I mean: + +42% of the time I've been hungover +30% of the time I've been drunk +22% of the time I've been sober +6% of the time (other) + +Food tastes great no matter what, and it's right down the street.",review,iz0C-p-48pqBfgA407WnKw,1,0,2 +azBHKHqif0NXO3xcALo5VQ,2008-03-07,PCRfipf_sm_cRAMb8LlqfA,4,"Lame name. Not so lame sandwiches. + +I like it spicy. Interpret that as you wish, but when it comes down to it -- it takes a lot more than spicy pickles to impress me - say gigantic and decadent choco chip cookies. Don't let the gimmicky name fool you, however, these are some serious sandwiches at Spicy Pickle, a franchise with only one location in the Valley in Chandler. I found the quality of food and scope of sandwiches offered to be comparable to Dilly's Deli. + +I had a lunch earlier this week catered from this place, and since they catered half-sized portions I was able to try two: the Santa Cruz sub and wiseguy sub. + +I found the wiseguy (with italian meats and cheeses) sub to be pretty tasty, but I prefer my subs to not swim in oil and vinegar. The Santa Cruz sub was pretty good though (and my favorite of the two) - with its ingredients of Mesquite turkey, lettuce, tomatoes, avocado, corn relish, cheddar and chipotle mayo. + +The highlight of the lunch were these large thick discs that looked and tasted like chocolate chip cookies. Crispy on the edges and moist and soft in the middle. Seriously, one of the better cookies I have had in a long time. + +BTW, the pickles are sprinkled with some kind of chili powder and are ok, perhaps they're awesome -- I don't know, I'm not a big pickle fan.",review,4_YfcfHkCem1onJFkItxjA,9,6,8 +bzDs0u8I-z231QVdIQWkrA,2012-03-27,Pj03zKvP-Exrlox89s_QcA,5,"Along with pretty much everyone else who has left a review for this place, I LOVE THIS PLACE. I grew up in the area and one night my dad and brother wanted to check it out (my brother is a Yelp addict and saw it had amazing reviews). I was skeptical since, driving past, it is your typical ""hole in the wall"" kind of place, but I was not disappointed at ALL. The carne asada burrito is amazing, even the salad it comes with is great. I think my favorite thing aside from that would have to be the aguas frescas, particularly the orange one...SO good. You probably will not regret ordering a single thing from this menu. I've gone back countless times, one time bringing one of my friends who was convinced that anywhere a blonde gringa tried to take her for Mexican food would be craptastic, but she loved it too.",review,iWh7h24DpKWFtKZGl81kxg,0,1,0 +R7SVavAsjzN3wy825PiOEg,2011-04-18,qcf2bIRTGrkCOxeud5xMaw,1,"I wouldn't write a review on a franchise unless it pissed me off. I prefer Papa John's pizza to Dominos or Pizza Hut (by far), but there are some major service issues that have made my five ordering experiences pretty irritating. + +They can't find my house. It's not hard to find, I swear. It's a piece of cake, and a stone's throw from a major crossroad. They had once taken two hours to deliver a pizza, saying they tried to call me (they didn't), only to return to the store and bring it back once I called. Naturally, I was delivered a lukewarm pizza, but in the nicest way possible was told that it was *my* mistake. Unacceptable, in the age of online ordering and GPS systems in our phones, there is no excuse for getting lost in what is essentially a three mile drive in a straight line. + +Without complaining, I had received a coupon for a free large pizza. Apology accepted. Upon visiting the store, I got to keep the card *after* ordering because they gave me the wrong toppings. Suckers. + +Also, they always take longer than the ETA, even in the middle of a weekday. Even now, I am waiting 70 minutes for a 30-40 minute order, and when I had called 15 minutes ago, was told it was on its way, but that construction was holding it up. Yes, there is construction, but you have taken this long in the past without it. Also, construction would not explain why it takes nearly an hour to produce one large pizza. I even tip nicely. + +I enjoy Papa John's pizza, but unless my complaints are addressed, I will never order from this location again. I will encourage my friends to follow suit. RAWR.",review,jdeNI5TTTuM6mj3HTgstRA,3,10,4 +G7Q0Tm2XBI5rqd5wyUc0jg,2012-05-27,RvYjVXNy8N7HFpUDysZVww,2,"Was dragged back here for the first time in a few years. It still sucks. On a Friday night, it's like 5:1 dude to girl ratio. + +Mill Cue Club is probably fine during the day if you actually want to shoot pool. But if you want to see America's future losers, stop in here after sundown.",review,ZW6J3hLaTgy7ygZ6V0ZXug,0,0,2 +K8pM6qQdYu5h6buRE1-_sw,2008-01-07,gX0gfevySyXnndvGY3Trnw,4,"Every once in a while, you just need to enjoy good southern cooking. + +I was taken to Lo-lo's while visiting Phoenix. + +The Sweet Tea is served in a mason jar and comes with a diabetic attack. I had the Betty Bop - fried chicken breast and waffle. The waffle was really the stand out portion of the meal, but the two did work together. + +You don't have to get the chicken and waffle combo. But come on, don't be like that. + +We went Friday before lunch, and we were sitting and eating in 10 minutes, but from the looks of the other reviews, that isn't normal.",review,k_WgOAhe6QWolkI2NLdnmg,3,2,0 +T9iBSa4pxYXP129pHlt5Sg,2012-09-12,2nbE44fzQoLhcdLbYNc2RA,4,"Take someone that matters here and you won't be sorry. The service is some of the best in the world, and the food is stunning. The menu changes once or twice a year, and if you can't wrangle this place on an expense account, it is THE place to impress a client. Destined for a Michelin star....",review,-cms2ELbzY2rSyGCVcioUQ,0,1,0 +bc-lE-wGVAsUrX-kJhtY-Q,2009-01-17,HceVI06uhbsxK8FbQkp8iA,5,"By now you've heard the adventures at the Rustler's Roost ( http://www.yelp.com/biz/rustlers-rooste-phoenix#hrid:_gYib8eA4hDfylSs17Zc_g ). But my adventures in Phoenix didn't end there. + +My BGF had been hounding me for days to find some great ""Q."" He was convinced that AZ would have great ""Q"" on every corner. Now referring back to the link above, I admit that I had a wee hangover at the time. Anyway, I'll press on. We chose this place because BGF thought that this would be the spot. + +I ordered the roast garlic chicken and realized with my first bite that I had died (most likely alcohol poisoning from the night before) and was now in heaven. This was the best freakin chicken that I ever tasted. Of course I'm in heaven and BGF is grousing about the ""Q"" not being any good. + +Now I've listened to this all week from him. + +- This Q is too Spicy +- This Q is too wet +- This Q won't fall off the bone +- This Q doesn't have the right flavor. + +I'll admit it, I snapped. (And I didn't forgive him for about 2 weeks). I went up one side and down the other. If you don't like the gosh darn (loosely translated) Q in AZ, the quit ordering the Blankity Blank (translation again) stuff. Needless to say, I got quite the look from BGF and boss. Boss was actually laughing at us. + +Anyway, I took pity on my BGF and shared some of my chicken, and he fell in love (I don't know why, it wasn't a rooster - oops, I digress). Anyway, it was decided then and there, this is the best chicken around, hands down.",review,frLdxQKCtofva9b0dA8Eqg,3,3,2 +JokKtdXU7zXHcr20Lrk29A,2008-11-20,qRmaL_bsTKWMYyPMpyly8Q,4,"I gave an extra star just because it is so fun to hang out here. The waitresses are always cute and friendly and not afraid to pour your drink. Alot of my friends are in love with the food here, I have to disagree. I think good but not great. Still this place gets the nod from me just because it is so fun to hang out. Chances are you will meet some new friends there too.",review,OsYh3jArm6fgozczE85ZeQ,1,1,0 +FY_OXEVcewAQFZuu6fynLA,2012-04-23,F-50XrxDrnADFJaBisp9TA,4,"We got the Gyro with fries and Spanikopita platter. Decent non greasy gyro and the fries were lightly seasoned. First time having spanikopita, but was pretty good. We'll be back to try some other options.",review,nUyME-PXSm8O9CBQSYOSPw,0,0,0 +-vHWAsiX0iHWJw-pkqv32Q,2008-07-10,iuEQTk_iJTQ37Wq_TDOHhA,5,"I love this restaurant. I really enjoy the reverse happy hour from 10pm-12am after I see a movie. The appetizers are 1/2 price and they have some really good drink specials- better if you are a lady. l like sitting out of the patio and relaxing. + +The sushi rolls are good. So are the avocado eggrolls. + +Before I was a vegetarian the only thing I would order was the macademia crusted chicken with mashed potatoes and a creamy soy sauce.",review,T7J9ae0wTskrI_Bgwp-4cA,2,3,0 +FGePlnlKXHxBrxYMNGtdAw,2007-08-02,UbfZINSTQyg_pbqwhkbAEQ,3,"The venue, which is close to campus, usually gets all the big shows from Hot Hot Heat to Incubus to Mickey Avalon to Brand New. The great thing about the venue is that you can stand almost anywhere and still be able to see the band. There's a big bar inside with friendly bartenders, although the well drinks can be a little pricey. There's usually a hot dog vendor outside and most of the bands performing can be found walking around before and/or after their sets, making it easy to mingle. The downside about the Marquee is that parking sucks. There's not a ton of parking in the club's lot and the nearby lots usually fill up fast so be prepared to trek down Mill to get to and from your car if you don't arrive early.",review,nWouNfZD3Pw08RYizxkqcA,3,3,0 +6imLt53br7SJ3av07jjH7w,2010-04-21,6W3KPPnYkYEcIb27CNq-yA,3,"First time here, it's late night and I wanted something lite and healthy.. + +The place is open very late, they had lots of options and the food was perfect. + +What a beautiful place inside, simple yet elegant. Oh, the service was great too...... + +Go for a late night drink with a date and they'll be impressed.",review,cg4em4uXe5ab5qH7pB01gg,0,1,0 +Zg-C1aYcoR2L5OIrA01MkQ,2011-03-13,2QMr5vXCJbjfJ8Hk2AqPtQ,1,"It is what you would expect from any themed place called ""Heart Attack Grill"". Mirrors on the bottom part of the bar so you can see up the skimpy outfits the ""nurses"" wear at the bar. Van in the drive through section is painted to look like an Ambulance. Hamburgers are named after cardiac events. + +The food was bad, greasy unlimited fries and a giant hamburger that tasted as if they mixed in filler of some kind we had never experienced before. + +If you plan on going, enjoy the experience cause the food will not be something you would head back for again.",review,7fxHyk4gcfFePv4z7YvgZw,1,4,2 +eFK2QePKvAowH-uX-0V4hQ,2009-08-01,93I975BBPMLfrvngMr6fPg,4,"Was there last night and had a good time. I learned several things: 1. Charlie's has a cover charge of $3 if you get there after a certain time, I believe this starts at midnight or 1 am. I got there after 1 am and the place was packed, absolutely packed. +2. Yes, in Phoenix, some bars can stay open until 4 am (gasp!). Yes, I know, it blew me away as well. +3. The little Mexican food place attached to Charlie's serves really good food late night, but now I understand why they can't sell water or soda through the inside window to Charlie's customers. That's because Charlie's wants to charge patrons $2.50 for a bottle of water than the Mexican restaurant sells for $1 outside. +Other than that, I had a good time.",review,sZp_7b83BDTWYeu5Qx0wFg,1,1,1 +5Feaj6aixO_QxKFnkHf3xg,2007-11-27,GJDmG3DzExVEv5Q23iEECA,3,"My wife and i stayed there for our anniversary and had a great time. little dissappointed in the cottage we stayed in. i know the place is old but you have to update and remodel every once in awhile (century). I want to give 4 stars but i also think that the price was a little steep for a summer rate. Now, i know that i should expect to pay alot for the biltmore but i am not the ritzy type of person. I am sure my wife would give it 5 stars.",review,GAW_mbLDbIoZQ0V0ZhWK8Q,0,0,0 +A4pL6j3e6JAtblmCUF2GZA,2012-05-29,BUUiVcfjIQUTC3lA34D78g,5,Great variety. Great price! Beats other buffets in the East Valley.,review,qJh9SHpaO8H7ltyuJGoldw,0,1,0 +iBYvoQ4lj35DYL24fYcmGQ,2010-05-02,4_AXblDHrDLpt4WEwpkaeg,5,"We just tried this out this afternoon following lunch at Pita Jungle next door. It's a self-service yogurt shop where you pay by the ounce once you've finished your creation. + +The offerings included the standard vanilla and chocolate, but also less traditional offerings like Irish Mint and Red Velvet were also available. They offer a taste of any of the products, and you can mix multiple types of yogurts in your container. They also offer a variety of standard yogurt shop toppings for your creation. + +I had a combination of the Irish Mint and Latte yogurts, with a couple of toppings. The yogurt itself was smooth, creamy and well flavored. + +We'll likely be dropping by here in the future.",review,_TfzMPtfO1LZRHHedDsoVw,0,2,0 +W7UtoDde1ekOmsEeMl8XCw,2012-05-25,1bCCHIy_JlbeTpexKElkTg,4,Such good sandwiches! The meat is cut fresh just as your Sammy is made. Desserts to die for. Plus the family that runs this joint is cute! Yummm!,review,TnJkGewuDhD0Dr6e5f58lQ,0,0,0 +Our6bzte5W1wlIeOu9luug,2012-10-17,p-CVW-y62dvnocZU3FEdrw,5,"Great place! I love that they feature wines from ""the little guys."" You won't find most of what they feature at any Total Wine or Bevmo. Small business supporting small business... totally awesome in my eyes! The staff is knowledgeable and ooooh Chef Sarah - your food pairings with the wine in the wine 101 course were AMAZING! Katie, the sommelier, is fun and she knows her stuff, plus it is clear that she loves to share her knowledge of wine with everyone. I'll be back for sure!",review,1EThs7Vakny7bGBRQk6x2w,2,1,0 +EqZl_lQdB3GVFHCoD7sOyg,2012-07-23,aWTMImGTPRqllqIJlCwWUw,5,"I'd give it about a 4.5, but I like rounding up for local businesses! The owner has been in there every time I've shown up, and the food comes out hot. The prices are spot on what you'd expect to pay, and so is the quality. I'm not from Chicago, and have only been there a couple times, so I wouldn't be able to speak to its authenticity - but I can speak to its taste and the great customer service the crew provides every time. If you're in the neighborhood and thinking about a hot dog, burger, fried zuccini, italian beef sandwich, or chicken burger, skip Sonic and DQ - they can't touch this place with a 15-yard drive-thru window.",review,rzDxO-luZGAT9Qx8Dq_3ug,0,0,0 +noLH_u4MJzfXYYHqcByjnA,2010-07-01,ja8Up9t41UlbF2eXNSuabA,4,"We just moved to town and were looking for a place exactly like this. This bar is not posh, it is not shiny or pretty, it doesn't have a huge menu... and that is all fine by me. + +What it does have is a friendly wait staff, plenty of seating, good/ok live music, and a great bar selection. + +The mix of people that was there the night we stopped in was entertaining... I can't really comment on that, as I still think everyone here in Phoenix is crazy... lol. + +Either way, it seems to have that good old suburban bar feel to it, which is nice and cozy when you don't feel like dolling yourself up and having a fancy night out.",review,SgjR6pUm_mpmX0f-XH1Ztw,1,2,0 +6nH0DLfofTytTeZJSkprgw,2011-01-12,0RzEWVxtgqbgV_yhLJPcSw,4,"So excited to have another Royal back in my life! I worked in downtown Phoenix before, and I was sad to see Royal leave back in the day. I never made it to Royal at the Market - sadly I reverted back to corporate America coffee after Royal left downtown. + +Luckily, Biltmore Fashion Park has been really pushing the opening of this coffee bar at the Red Door spa. After waiting for it to open, I finally went down there today. Sure, they are just opening, so there's some kinks. Today they didn't have a ton of syrup selections, including my favorite almond rocca. However, they're getting them all in very soon! AND they offer almond milk - how awesome! They've got three benches inside too. Although it's pretty small, and awkwardly has an elevator leading up to the Red Door spa, I think it's a pretty cool space. Can't wait till they get up and running and bring some decent coffee to the Biltmore. Great hours too - open early! + +***If you've never had Royal before, please go try it.*** I think their lattes have a very unique flavor, something I haven't found in any other coffee joint. I can't believe I didn't drive to the Market location before this - but now I have something closer! + +Some tips - park by the Capital Grill and the big red door (duh). Luckily they have a Royal at the Biltmore sign on the window, or else I might have missed it. It'd be awesome to nab a 20 minute spot outside Mojo Yogurt too. They have a token validation machine, so don't be afraid to park in the token lot!",review,qLCpuCWCyPb4G2vN-WZz-Q,2,2,0 +WowrRUKvjiLX4zT12xU_yw,2008-06-22,nfyKH18jt9UHkmuwBfkI5w,4,"Me and my husband love to shop Nordstrom Rack on the weekends! While we usually go back during the week to make our purchases when the lines aren't so long the eye candy is great on the weekends. + +If you look hard enough you can find some great bargains on shoes and men's clothing. The hunt is half the fun of it.",review,Sa64rQmghfE9i17_dRIDyw,0,1,0 +6FECmOLQSICW1ykyBbEHng,2009-01-29,Nxq4fCkFYcFQ67P-5pqSvA,5,"Best muffler shop in town. There are VERY few shops that I trust, and Mighty Muffler is one of them. Greg has worked on multiple cars and has always done a great job. If there is ever any issues he takes care of the problem, no questions asked.",review,fCDsJINnhFsnJNHGp0nSsA,0,0,0 +UI5ghIUeHYxzwSfaDVUXOA,2012-01-18,-xQPFjNELr0qMj6JD9ZYmA,5,"Aiello's is my favorite Italian spot in the Valley. In fact, I day dream about the Mushroom Ravioli Special - you can taste the love in this dish. Great ambiance and a wonderful experience. The staff are always attentive and professional. The Owner makes a stop or two to make sure you're having a good time and they even let chance decide who pays for dinner, you or the house! + +Helpful hint: Try no to get stuffed on the tasty bread and hot peppers served before the entree, you're going to want to finish it!",review,xrPrQDtiZ4rTJq_EFYqumg,0,0,0 +e_ePFIA4oX2K723YOLtZFw,2012-09-23,6TFbTd5hSr5rgoDx8C2GhA,2,"Good price for the location;however it's definitely outdated and appliances are extremely old.. Maintenance people fix things quick but some fixes are sub par.. My neighbor and good friend continue to have water intrusion in there home when it rains hard. They have to have their carpet padding replaced multiple times because of water coming in from under the building. I work for a property management company myself and this half fixed issue is something that I'm not impressed with. + +Also, every year they increase rent, they don't work with you on price and don't seem to care about good paying tenants (Like myself). They are too corporate and only care about the money and not the longevity of good on time paying tenancy.. The only reasons I stay is because the location and price is good, but also because I hate moving around. I anticipate that rent will continue to go up and well over what other nearing apartments properties have to offer. This would mean that I probably have only another year or two left before rents over $1000 for a two bedroom... + +One good thing is that the staff is nice and friendly but supposedly Equity Residential (managing/owning company) doesn't give their property managers enough power to work with their tenants. It's unfortunate really because I would imagine that companies would rather have long term on time paying tenants and negotiate on rental amounts and try to weed out the consistent late or non paying tenants. + +Keep in mind that no utilities are included.. + +Hope to see some change in Equity Residential but because of how corporate they are, I highly don't think that this will happen..",review,tFyQbNbBQEyEc9oCr1pJUg,0,1,0 +OVFcGSh4Wu-ss8Iq_fIC-Q,2011-06-13,4MBBnqQRWLrkthjfsvHH2w,3,Ok..seriously just ok. Green salsa was horribly sweet and gel like. It had no taste of tomatillo in it. The tacos were stuffed to the gills but average. The chimis tasted reheated in the microwave and oddly like sopapillas. Over all ok food but a bit pricy for ok food.,review,F9P--h4g6gA-C_nO7OPUnQ,0,0,0 +eHcQzL5eebqvKrLW5q283w,2011-11-18,UC9eZI67PzxRiUwODAxOEw,2,"Nothing like Capriotti's in other cities. They don't have the same menu offerings as east coast locations, and even though I ate here when not busy it took a very long time for the food to arrive. Parking is frustrating too because of the adjacent Starbucks patrons occupying so many spots. Very poor chips selection as well - only two choices. Really? 2 chips?",review,joIzw_aUiNvBTuGoytrH7g,2,3,2 +tZXPhvufHhfejGrRp554Lg,2012-08-21,SePrR75B2rFzKG7qW4ooaQ,4,"One of the best croissants in town, if not #1. I base my rating solely on this and the consistently friendly service.",review,ihzvFU9XCEZ7B2CQoTaORw,0,1,0 +zmFc8M-hS4uuyY0hklIpoQ,2010-07-17,Jy-ufT32E7p_Utvr7Q72YA,5,"I've been here a couple of times. The first time was on first fridays. I expected it to be packed, but I was able to walk right in and be seated. They had a table reserved and they must not have shown, so we lucked out. I got the Sante Fe, a roast beef panini, and it was great. They had some good beers on tap too. Its a cool little funky place to grab a good sandwhich. The second time I came here it was after a concert. There was some horrible band playing that I wish would have shut up so I could hear the people in front of me without having to feel sharp pains in my ear, but the meal was still good and I liked it. Any place that is open late close to downtown is perfect, especially since the kitchen doesn't close until 12:30",review,XqU1PB0XWjcr3sUyZZGaWQ,0,0,0 +9SKdOoDHcFoxK5ZtsgHJoA,2012-10-20,vkoWyRfcj7OsXEYbovXTMw,4,Great dive bar and great bartenders. Jester room is a must.,review,BxLlwLX9iT1A59F9axrjSw,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-09-12,xDqo8BsdQGuELV1jAe4LFg,5,"I still want to live here. It's quite possibly the only vegan restaurant I could see myself flying here to eat at then going home. + +I've tried a number of things, and have come to the conclusion that this is the combination that will satisfy me each time: + +Green Burger with thyme fries and the Cookies n Cream Tsoynami. + +Their Green Burger trumps The Plant Cafe and Roam in SF--the only two places I've been to that somewhat mimic it (at least in color).",review,EhKX4TIsVSpx7U5-iOQh7g,3,2,0 +XWpkTxBLgRXxl7g2Hw62Qg,2008-04-15,4JFWu2jASp-rsTVCNZD-Sg,4,"I love love love Angel Sweet, I just wish it was not in Chandler! It's a little bit pricier than most gelato shops I have been to in Phoenix, but not a big deal. They have a nice variety of choices, but my favorite by far is brownie batter, but they only have it every once in a while.",review,5wN78N4K0a39C-uPzPmxDw,3,3,1 +fHrchaRB07DN0Dm-4Bk9dA,2010-11-03,tSAtMYT5E4Ya5_v7qp92hg,5,"This place is a dream. Designer blouses for $17.00. Seven jeans and Hudson jeans for $20. Steve Madden shoes for $25. I could go on... the store is beautiful, well-organized and full of things that are in perfect or near-perfect condition. Some items are still quite pricey, but most of the store is extremely reasonably priced. + +If you need something new very quickly for a date or an interview or a special occasion, you will probably find it here. The employees are nice, friendly, helpful and the dressing rooms are good as well. Love it!",review,6N1qmSdYxhUsp2ouZDZlGA,0,0,0 +s26P-jeVUH9TjnTPQttPag,2011-09-13,hwzNoffAUmGX2pkdlPHoow,4,Great place to have sushi and there other great menu items. I go here at least once a month. A litte pricey but the qualify and preparation of the food more than offsets the price. Great place to meet friends and enjoy the atmosphere. The waite staff is very good. Highly recommend you try RA. I believe you will enjoy the experience.,review,D4-0xGve18qMPnWQgMTbyQ,1,1,0 +b5cEoKR8iQliq-yT2_O0LQ,2009-01-18,YdyoB_CIok-yPmyAIVchLQ,4,I was very happy with the food and service. The service was wonderful and quick too.,review,zZmMSNkmFubw94Ob-DEnbw,0,1,0 +4sW8Z6NLXLRkruSKSKUEUw,2008-11-04,_TiNhzf2OAmLMKSipt1Qaw,3,"Hob Nob's Coffee House and Gourmet Deli is what has emerged from the dust and smoke that once was the Willo House (one ""w"", not two). Willo House was a Phoenix landmark beloved by many for its tremendous coffee, well-worn couches, and memories of Mary McCann's Poetry Slams--and loathed by others for its unmistakable smoke stench and vocally hung-over clientele. So, like many CenPhos, I felt saddened when I saw the ""closed"" sign hung on Willo's door earlier this year, and I've been watching for this coffee interloper to open its doors. I've been hopeful that we'd find a new funky midtown establishment to add to Phoenix's growing reputation for goodness. + +Feeling emboldened and optimistic after voting on November 4th, Baby Oli and I stopped into Hob Nob's for a morning caffeine treat. +Let me begin by saying, holy moley, they got the smell of smoke out! I thought for sure that the odor of cloves and American Spirit would have permanently saturated the building's core. In fact, there was not much at all inside to remind me of the Willo-that-was. They've knocked down walls to widen the space inside and painted in warm hues . The place now has what you might call ""a décor."" They said good-bye to funky and eclectic, and hello...hmm... Pottery Barn? + +I ordered an iced chai tea and a chocolate pastry. The chai was a chai, and the pastry was yummy, but not OMG-eat-here-this-instant yummy. The sandwich and salad menu looks awesome with sandwiches boasting of roast sirloin and ""the finest long line caught Albacore tuna center cut all white meat."" They also have some pretty impressive looking hand-made chocolates. + +I'm not going to lie, I do miss the old, lovingly run-down, Willo style. Hob Nob's felt a little too Scottsdale to me. I may be 100% wrong on this, but I don't think the owners of Hob Nob's are Phoenicians. The man who made my Chai had clearly never been to--or maybe even heard of--the original Willo, and wasn't interested in any jovial chit chat about the old locale, they spelled ""Willo House"" incorrectly on their take-away menu, and the place simply doesn't have that Phoenix feel. + +Regardless of the Scottsdale vibe, I will go back to try those sandwiches, or maybe to test out their springy couches and fire place while grading essays. I'd love to toss them one more star! Fingers crossed that they'll relax a bit and make the most of their great location!",review,bpFyZ1yq6KCbQpFssFFRgg,1,2,2 +DcrM4hwDcU2G6vuh2cnaYQ,2010-08-14,G07phujE2YilP35GM_Ch-Q,4,"Last week was my third visit to NOCA. + +Since it was a Thursday, I had the wagyu pastrami sliders. They were very good. Thick pieces of meat on nicely toasted bread. House made chips were great on the side. + +Good service. Top-quality restaurant all around.",review,Kqvfep2mxS10S50FbVDi4Q,0,0,0 +vk7U4WeUKJWteORW5hba0g,2011-04-26,xI76FGhfAKMEdlygC6BRTA,1,"I got a BBQ chicken sandwich and all the bones came complementary! SICK! I almost broke my teeth when I bit into it. The service was even worse, the manager (I think) stood in the way of me ordering while he was talking on the phone about football for about 10 min.GROSS!",review,RCjuKSuPezW6qI3ZKgkncA,1,2,1 +EFFIduf9WaUNbDy_O7yQjA,2012-05-27,gKUsZQEEz9iqMpSQZNik_w,1,"AWFUL!!! HORRIBLE!!!!! +IT was just HORRIBLE experience! + +I made an appointment for mani and pedi and came in Friday morning at 10 am. There was only one lady working there (no bage with her name) She said she could take me earlier than 10. I said it's fine, she asked me to pay cash right away! only cash she said!! And ask me to go to ATM to get cash! I was surprised, but didn;t think anything bad. Later I realized that I didnt get any reciept so she just put my cash in her pocket because there were noone else there at that time. + +She started with manicure and it took her less than 10 min!! everything was done in 10 min! She didnt even the nails, didnt remove the cuticule -she just polished the nailes with an old file. Her work was so nigligent in everything! Nail polish was all around the nails and my finger tips. I suggested her to correct it and remove an extra polish around and she did it only on few nails, repeating all the time :""Pretty? Yes?"" It was so far from looking pretty! + +I'm a polite person by nature and never argue, but here it was just awful! And I payed her first together with the tips so she took 45 bucks from me + +Her pedi was not better at all!! She was always in a hurry! She didnt let my nails dry and started putting my shoes on me! I warned her that it must have been not done yet, but she didnt listen, she wanted to get rid of me as soon as possible, so all the nails went messy!!! She reapplied the polish but the whole procedure was just so frustrating!! I left the place more than just upset-I was really mad! + +The next day the nail polish started to chip off on every other finger! OMG! I wanted to cry! It's the worse mani and pedi I've ever gotten in my entire life, and I do it every month!! + + +I wish I had a reciept and could get back to talk to the manager -but this lady just took my 45 bucks and left me with ugly! really ugly work!!!",review,zNq2Xyg399kiAbTg5jBuyw,0,0,0 +7Z-1mLIoxCHUxCp54W1CGQ,2010-04-02,TtKQt4fUF-KrCkPUyyun4Q,4,"$4.00 for a lunch special in Tempe is pretty good, if you ask me. If you're eating two slices of pepperoni pizza for lunch, I don't think you can complain that your pizza is ""greasy."" (That's what they invented napkins and dabbing for. Actually, napkins were probably invented for wiping your face, but they can be used for soaking up grease from pizza too.) + +I don't know that I'll go out of my way for this one, but I won't complain about it either. If I could give 3 and a half stars I would, so I'll be generous and round up (Barro's, if you're reading this and see my generosity, feel free to return in kind with free lunches for life. I think that's a fair trade.)",review,rYZeLgKIoyAxhMdL12-wRw,0,0,0 +lktu5JPDlQUG-7cV7gOzDQ,2009-12-29,XSRU6jL_XJyvLzvUU-hHng,1,"Warning: Douche Bag level CODE RED! + +Here's how my experience went ... + +Me: ""May I have a Carmel Latte?"" +Employee: ""No"" +.... dead air ... +Me: ""Ummm why not?"" +Employee: ""We don't have carmel"" +Me: ""Ummm I guess I'll just have a Cappuccino then"" +Employee: ""Just so you know it's a REAL Cappuccino"" +Me: ""Okay"" (in my head I'm trying to figure out if I can legally punch this dickhead in the face or not). + +So I sat down mulling over this experience in the dank dark atmosphere while listening to this ass wipe talk to his friend about living on other peoples couches for the past few months and about how he'll be moving to downtown Phoenix soon. To which I just chuckled to myself as this person was FAR from cool enough to blend into CenPho. What a complete and utter douche bag. Stay in Tempe poser (and keep your employer there to!). + +This experience was months ago, and now they have opened up a shop downtown. Guess what? I'm not going to check them out. Fuck you Cartel. You'll never be Lux, so just stay in Tempe where you can be a complete poser with an attitude that you haven't earned. + +Complete FAIL. + +For my two cents, skip this place and go to Lux in CenPho/Mid Town right off the Light Rail. Authentically cool with ZERO attitude, great coffee and no douche bag employees. + +And as for great coffee ... try Conspire WAY better coffee and authenticly cool. + +---- +please read ""owners comment"" below ... here's my response ... +---- +Wow so the coffee snobbery continues with the owner ... I guess my new job should be to ""promote good coffee in Arizona"" ... and I don't appreciate good coffee because I enjoy the combination of caramel AND coffee ... + +By that definition I guess I don't know good ice cream because I like hot fudge on it or good pizza because I enjoy pepperoni AND cheese or good music if it's not acoustic or a good voice unless it's A cappella ... thanks for proving my point. I wouldn't go here unless you are a total coffee snob ... (I guess) they don't need your business you poser!",review,A_O8wZOsMTPwyeYA4-Rsow,12,19,21 +z3yFuLVrmH-3RJruPEMYKw,2009-12-31,TxuGsmj5E_kQ4mtca7DXoQ,5,"This is the second time I've eaten here and it was as good if not better than the first. + +The first time I had the meat lasagna and the second time I had the cheesesteak. Lemme tell you this is one of the best Italian places I've been to in Phx. + +It's very Back East feel to it and I love all of the authentic Italian foods they have there, especially the meat, cheese and pasta counters. + +Check 'em out you won't be disappointed!",review,I342qODY_aOLCTczmHqxXg,1,2,1 +7m93HSBV1UrdHZBJwdUVJA,2012-07-08,ab-Xw7vyU3zTiUtr4fcODA,2,"The latest Consumer Report magazine gave this restuarant a higher point value that Houstons. We disagree. They tried to be but couldn't even come close. We were very disappointed in the lack of service, timing of food, and food. Hostesses were seen drinking from Gatorade bottles from there hostess stand, Sara our server spent more time chatting with her tables that serving and taking care of her guest. The manager on duty was checking his telephone and did not check our table. My chicken was very dry. Salad and soup were good. Will not return.",review,zInU9Lr0IoWWVwfxy2Meeg,0,1,1 +-I3Cu9rLQXtL5us5wdy8tA,2010-03-28,lsnqa7xgPsdDXfbIoS0vLQ,5,"Open Range offers some damn-good home cooking. My family eats here often and has never had a bad meal. Not to mention that the portions are huge. + +I usually order the cobb salad. From a typical deli, I'd normally expect iceberg lettuce, a handful of shaved carrots, some egg, and a little bit of bacon. But if that were the case, I wouldn't be ordering the salad again and again. The field greens and romaine lettuce are served with avocado (I'm pretty sure they use at least 1/2 an avocado for each salad), artichoke hearts, tomatoes, bacon (no bacon bits here!), radishes, blue cheese, egg, cucumbers and I'm sure i'm forgetting something else, but it is GOOD. Sometimes, if I'm really hungry, I order it with a side of their twice baked casserole (twice baked potato in a cup, basically. It's unbelievable.) I'd also recommend the Arizona caviar (black bean salad) or southwest coleslaw. + +My dad loves their BBQ sandwiches (with choice of homemade barbecue sauce - each one better than the last), my mom usually orders one of their other great salads with a side of potato pancakes (better than grandma's), and grandpa loves whatever is on special. Even my picky-eater brother loves food at Open Range - and that's saying something! + +Bethany and Tom are the owners; Bethany does most of the kitchen cooking and Tom says that he's in charge of most of the barbecuein'. (He once gave my family a taste of some of their freshly smoked pecans and WHOA, they were GOOD.) The restaurant (as the name suggests) has a full service deli too, in case you need a pound of freshly sliced ham as well as a meal. + +In the past, the service has been slow, but it has improved dramatically over the past year. The restaurant has a killer view of the Superstition Mountains, and is within 10 - 20 minutes of countless hiking trails. + +To make this long review short: if you're looking for a tastes-like-home (or tastes-better-than-home) cooked meal and you're in the far east valley, make sure to stop in for lunch or dinner. You'll probably see my family and me chowing down too.",review,kMiQnYFmAYbjHyyIPGSwoA,1,3,0 +JAfPOKUAYK2_lSRnyKBgpw,2011-06-26,EKR_maR6r561jYvXlJSVWg,5,"One of the perks to being an only child, is ""me"" time. There is something special about having time to yourself, when the only obligation you have is to check in on Yelp, leave a quick tip, and grab a lemonade from the mall because it is 109 degrees outside. + +Yesterday was that day. I had stumbled across The Art of Shaving. I've been in their stores in other cities before. Of course I have...because if you look at any of my pictures, you will realize a couple things: 1. I'm vain. 2. I'm hairless. + +As soon as you step foot into this store, you are in a true gentleman's club. Not the kind that will take all your dollar bills. You won't make it rain here. + +This is the ultimate shaving store. Soaps, creams, blades, razors, balms, brushes, and mugs. You name it, they have it. + +The staff knows what they are talking about. I explained to them that I have a very old safety razor and a brush. Both were passed down by my Grandfather who passed away when I was a teenager. + +They didn't pressure me into buying ANYTHING, although I did end up leaving with some shaving cream. They even gave me a proper demo on how to use it properly with my brush. I've been used to shaving soaps and the usual aerosol creams....so the little tutorial was nice. + +Also, there is a master barber in the back of the house that does straight razor shaves, haircuts, and men's facials. + +Remember earlier when I said that ""me"" time is a perk? This is the best place to spend it if you are a dude. + +If you are a woman, buy your man, or your man-friend a gift from here. This place is simply amazing. + +One last warning. The store is pricey. but worth every single penny.",review,8JC-Yb3UDUv2FUl5ym1nVg,4,3,4 +i1GWM0MKxF3V5jveyCks7A,2011-09-28,Od31Ea2shNz0ejB--dE22A,5,This location has closed. Went by today and found an empty restaurant.,review,j-kShDJgp5acGhqJAkJHnA,0,0,0 +VSPuvNSDUvlTl670lVAkkw,2012-12-13,eOEzsqOxaNXziP86S5ip-Q,5,Just left. I wanted to eat another pizza it was that good. The Biagga was fantastic. Probably the best prosciutto style pizza I've ever had. Owner and staff were very friendly. I will be back again.,review,LvgCTnLlwEsSI0XrZtR05Q,1,1,1 +WNy1uzcmm_UHmTyR--o5IA,2009-01-03,5tQcsWgK3qCuq3gTGiCLew,5,"If I were ever to be executed, I'd want a Meat & Cheese pasty for my last meal. With two red wine gravy. + +It's *that* good.",review,Wuk-ajsN4e7n1zBLIedQ-A,4,4,4 +Y-9dJvw-J2d9QKfuL7mKgA,2012-07-01,2zxjhZvjYoMMzmlPjPLL-w,4,"Well my first review of Over Easy; have gone here a few times; only reason I don't go more often probably because of the wait. The food is definately makes me want to return. The Hopple Popple, the Wolf Pack, and what I had today, the Loco Moko (only criticism is the rice); great lemonade (when I used to drink lemonade) and the hash browns & they have tater tots!!! I'll be back; when I can get up early...",review,wcOqMTV92kxOornA42KyoA,0,1,0 +3l72FflaaeI0tWEAWN3-gQ,2008-12-15,xqgcXVbpObLdBrb0q0B1ug,3,"Overall I liked this place and glad it is in the neighborhood. The carne asada burrito was good and the ceviche was pretty tasty. However, it seems that this is about all there is to the menu. + +I was not a fan of the set-up of the restaurant. It was way too crowded - yes it was lunch, but the flow could have been a lot better. Overall, I will return when in the mood for carne asada. Hopefully the kinks will get worked out over time and until then I look forward to supporting a local restaurant.",review,9VaPHxvohl917I7bJU9InQ,1,2,1 +oe45XbxddG4EKhpWAHIk2w,2012-08-23,b-llXU-mlKlF13TtzHvTFg,4,"I discovered Taka Grill and Cafe while driving north from work on Central in search of somewhere different to have lunch. No line, no waiting. We ordered, sat down and our food was served with 5 minutes. We were out of there in 40 minutes, which is perfect when you only have an hour for lunch.. + +I wanted sushi so I ordered the Shrimp tempura roll with deep fried shrimp, imitation crab meat, avocado and cucumber for $6.95. Of course I would have preferred fresh crab meat, but was ok with the imitation. I liked the meal presentation. Food is served on large rectangular plates. + +My coworkers also enjoyed their meals, except one said the salmon was frozen and thawed. We work within a mile of Taka and will be back again to try something different. (A mango smoothie sounds delicious right about now!)",review,Q6FaSZpCtVv7PXECwDL1bg,0,1,0 +R8VwdLyvsp9iybNqRvm94g,2007-10-10,YofsCwcSAuXs0FcE8T4dig,3,"the food here is deeee-licious. i like the decor, the ambiance, the menu, the waitstaff. however, i hate the feeling that i'm being some trendy little scottsdale frou-frou by eating here. + +the salads are totally inventive and yummy, but a little on the sweet side. i loooooooooooove that you can add an egg (genius!!!) and fresh garlic to your pizza. i adore the fresh and homemade ingredients, and i really like the cute little neighborhood-eatery feel. eating here makes me feel as if i'm in a bigger city than phx. + +LGO is on the pricey side, and definitely caters to those who want to eat gourmet/designer pizza. however, taste wins out with all the fantastic and fresh toppings. and if you ever get sick of franchise restaurants a la CPK, LGO is a great alternative.",review,jqs0xPGhZwlyijqWLEgRyg,1,1,0 +KHdadnkfYm0OgyIF_fvL8g,2011-07-15,2WdBcv_4lpmEusrZOAN8eg,4,"This Starbucks is located on a busy street, on a busy corner in Tempe. There are plenty of places to sit outside but who wants to in AZ in the summer right? + +The weekend we were there, the women's restroom had plugged up in a an ugly way but no worries, I tend ot use either one if I have to go so I popped into the men's. + +The place was clean (besides the toilet) very cool and even better, the staff was very cool. It's nice to get your regular drink at a Starbucks and it tastes as good as it does at your fave Starbucks in San Diego...thanks ladies!",review,CmVxtdhFW707wSEPwAZVRw,0,0,0 +-4A5xmN21zi_TXnUESauUQ,2009-12-27,DHH8AsaIlcs4tpD1ZnSPHg,5,"we keep driving by this place thinking it was just a coffee house. but after reading some of yelps reviews, learned it was much more. it's so cute and trendy inside. they have so many yummy and healthy options, we didn't know what to pick. so we decided to go with the veggie breakfast burrito. + +it was light and filling, much to our surprise. and superbly tasty. and best of all, not gigantic. more places should do that....offer reasonably priced food, that tastes great, in manageable portions. that way, you don't stuff your face with a giant food plate and then feel like an obese slob the rest of the morning. +we'll hit this place up again for sure. awesome staff too!!!!",review,ST8Yzlk2MqKlcaLqL2djBg,1,2,0 +1QxI2IP3XfndDAY8nyZVPg,2011-10-16,ie9dzIMGLHKaeq2ByLfrTA,4,"Well, this is where I got my iPad, and I am hooked of all Apple products. Yes, they are expensive, but they are so cool. I am amazed to see little kids playing with the iPads and computers, I am sure they are a lot more tech savvy than me.",review,8p4at4zdzCpueAmSBaorZA,1,0,0 +90AXjqb4O-wrTHDKDoDUzg,2011-03-01,gFOmFa71CVAznWIiqxP7NA,4,I have been to many Thai restaurants in the Valley and this is the one that I aways go back to. Their roasted duck is consistently good. Get the Ped gang daeng (801).,review,H0nYlvGjMA9szTaqIwTwpg,0,1,0 +mU33XNKLV_W01wJO8PoZBQ,2009-06-01,1bKkX8OpDcm74n_zCBVeCw,4,"You have no idea how happy I was when this place opened - and turned out to be good! I was really tired of driving into Scottsdale to get my hair cut. I lucked out when I booked an appointment and by luck of the draw wound up being styled by Maira. She's great at what she does, sweet as can be, and always remembers little details of my life that even I forgot I told her! + +I really like that they don't even try to push product on you, unlike many other salons, and they give you a mini-massage before your shampoo. + +I took a star away because of a bad experience I had with one of their aestheticians about 2 years ago. She put Retinol on my eyelids, which is a no-no. Lots of itching and pain for a few days afterwards. She also made like she was giving me a product for free, but wound up charging me for it. Like I said, that was 2 years ago and I don't think that aesthetician is still working there, but I haven't gone in for anything other than a haircut since. If you want a facial, Blu-Sol is just a couple of doors down. + +A shampoo, cut and style runs me $32 plus tip. Much better than driving to Scottsdale and paying twice as much for the same service!",review,Um8eFxZBCxCR4FNGO0DeEA,1,3,0 +K04Sot5bwUk-BkOotkurmA,2008-06-22,dZ2hksnxNjKgkez1Ydg4Cw,5,"Perhaps you've heard of the Library of Congress. Nice Library. + +Burton Barr Central Library has a bigger reading room. + +Wil Bruder was the Architect. You either love his work, or you hate his work. I love his work! And, this library is as good as it gets. + +Arrive in the sixth floor reading room a little before Noon *on* the Summer Solstice. Ask a librarian: They'll tell you why. [ah, the mystery....]",review,2KyJLMY3jmASmwtnmlBuvw,3,3,0 +6eax0w8j0tudDOkvWgmQ7A,2009-06-30,DQb7W3I2rOLR1bsIybakRA,5,"I've got two names for you: TYLER & MARCO - - superstar instructors at the Y!!! + +I've been an avid gym member at various gyms for years and I have to say, the YMCA downtown can't be beat for the 8-5 p.m. work schedule person who likes to attend the gym during lunch or right after work. I'm all about the group exercise classes and this Y offers an array of classes such as spin, kickboxing, Zumba, Yogalates, Boot camp, water aerobics, Hatha Yoga, etc., etc. + +Back to my fav instructors: Tyler and Marco. Boy, do these boys kick my ass every time I take their classes! Tyler teaches spin and offers not only strong knowledge and great tips on making your spin experience the best that it can be, he has a kick-ass playlist of music to motivate his class. Marco is a very intense and interactive kickboxing instructor who keeps pushing you with great music mixes to keep his class sweating the weight and stress away. + +Thank you Tyler and Marco for making my workouts intense and fun! After years of going to different aerobic classes, I'm FINALLY seeing the results!! + +P.S. You can't beat the staff that works there. Erica who manages all the group exercise instructor welcomes any suggestions or comments with a smile. Freddie at the front desk is also very helpful and sweet.",review,re0DJDticmhO6240NfuwEA,2,4,1 +U8VA-RW6LYOhxR-Ygi6eDw,2011-01-17,vhWHdemMvsqVNv5zi2OMiA,5,"Love this place! Was in phoenix 3 weeks for work. Ate here 3 times. The squid salad is amazing! They also have sushi, bibimbap, and tons of other items. Must try!",review,Y2R_tlSk4lTHiLXTDsn1rg,0,1,0 +OFBJtqWGSx6n6CchtVmoRw,2010-10-06,7Y4BEfpFxFvaY3i3RugQGw,5,"I don't think there is anything else to be said about Delux, it's been around and they offer nothing but great food; the Classic Burger and the Delux burger are both very delicious. I like Delux better and I do recommend medium rare; the quality of the meat is unbelievable. Love the sweet fries; I do prefer the mixture of both sweet and regular fries.",review,82vsbM8ggZV4BVrtLB9s3A,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-02-05,iV9wn9PHZSziPC0XJ22UJg,3,"Who would have ever thought, chicken and waffles combination? It is crazy, but it sure does. The location of hidden inside a big plaza of Albertsons, Aces Hardware, Gas Station, and much more. It is really hard to find unless you have been inside the shopping center. People here in AZ like to say something is located on the northwest corner of the street. This would make it impossible to describe. + +Once you get there, the restaurant is pretty small. Typically there is a pretty long wait, but I was lucky the day I went. One good thing is they offer white breast chicken meat, which is always a bonus. The chicken was tasty, even though I am normally not a fan of fried chicken. I love waffles, but it seemed like the waffles came out cold, as though they were reheated or Eggo Waffles. I loved Eggo Waffles growing up, but I don't expect frozen waffles at an establishment. I would stick to the chicken and call this place Lo Lo Chicken House.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,1,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-10-02,SP5f_grHktau5MTy4MGweg,4,"A very unique restaurant in the old town section of Scottsdale. Very interesting menu and unbelievably the largest wine list I have ever encountered. A nice combination. + +Ordered several of the small dishes. All were cooked to perfection. and tasted very good. + +Especially liked the chopped salad and scallops were especially good. + +Nice setting. Friendly greeter and server. + +The atmosphere is very casual with a touch of elegance. + +Recommended for sure.",review,2Qo8EXnxxfTtUWIqPPih6g,2,3,1 +Qn8vxCWqe8FL_5MNcc4tpg,2010-07-14,g-PgzDvYbs9JDcOyZ5s9gg,4,"It looked like shrimp and it taste like shrimp but it wasn't shrimp. It looked like chicken and it taste like chicken but it wasn't chicken. It was all tofu and 100% vegan AND it was all amazingly great. Even Amy's mock pork was surprisingly very pork like and I love pork. You see, I love meat and it's very seldom that I go a day without meat in any given deal. However, this full ""mock"" meat experience was pretty cool and enlightening. Not only was the lil establishment very clean but the owner was super cool and informative. Although I don't see myself converting to full veganism anytime soon, I'll definitely be back to try a few more vegan-mock meat dishes. +Boba Juice is also my new go to place for a much needed icy cold smoothie with boba of course. I've tried a few variations and my favorite is the taro/coconut smoothie, add boba. I swung by Boba three days in a row for a smoothie and that's a pretty solid indicator that I like the place. Yay, I am a fan!",review,4lkTIhTuMhLprQprGlTRlA,13,13,10 +kyWbn54rsIlS3vbpDo0qPQ,2009-12-22,neUgSkrWVs-YsCzDRd2sow,4,"There's a lot to love about this quick but hearty Mex Grill. I love walking in seeing that the guys standing in the open kitchen are roasting peppers and chopping tomatoes for their salsa bar. A lost art most would say in a place that seems like could be your typical chain, quick fix, ""Fresh Mexican Food""... + +The two owners are buddies as the name proclaims and they are a friendly bunch. The food though is why this place is a small gem in the NW Valley. The Burritoes are huge and would challenge Chipotle's size, but also put to shame the cold taste you get from Chipotle's burritoes, from ingredients sitting out cold like a Subway line... + +The Burrito Especial is really good which has big pieces of shrimp and some nice chunks of zucchini. The steak served in their burritoes is also very impressive, nice grilled taste and definately not chewy. +The sides are generous when you get a combo and the salsa is nice and fragrant. + +Overall this is a great place to eat, period. The three flat screens hung up high always have football games on, on weekends. Awesome food that cooked right next to dining area has never seemed to dissapoint us.",review,y5TsYk1VTXgbNoYCWw-IPw,0,0,0 +p-174arohcsitYIq19SsGA,2012-04-21,gDRbGhpTW3wO0a5OAH-EWQ,4,The pharmacist at this CVS really cares about her customers. Always surprised that she remembers me. Their new Minute Clinic is a bonus. I believe it is the future as more and more of us move away from company supported health care.,review,xAVu2pZ6nIvkdHh8vGs84Q,0,1,0 +vaabk6CYXX1dYVQ1xkyPUg,2012-07-25,FY9nJO7BnhG3yeXicDgEjw,4,"Very nice place with a great concept in Tempe, AZ. All I want to know is.......Where are the duck fat fries?",review,IDHrwv_RCildFvmfWTkj5Q,0,1,0 +QAWdgDgWaFJYzJ2pGDjmdw,2007-02-27,3WfIzCGWLYnc5kpDP3opbw,5,Outdoor shopping at its best... probably not the best if its hot outside- but great outdoor dining and misters... :-),review,iR1pShxMP5Aiwo1DZzGJlg,0,2,0 +qkX9CmImtW97GHmt9NXKog,2008-05-28,5fmJiJqeMUIKF-pMNAZ9NQ,2,"This is a lake. + +It has water in it. It's not very clean water. + +The lake police will yell at you if you let your dog swim in the water. + +That sucks. + +I think it's semi-retarded to review a lake.",review,A_O8wZOsMTPwyeYA4-Rsow,1,2,8 +i9LWPgDrCRaHfXpSk4TjUQ,2010-11-01,EMVlI73VZmiYfvxqlYQmmg,2,"The doctors are great, especially Dr Mouaikel but the set up to communicate is not patient oriented at all . When the office is closed for lunch 12-2PM you cannot even leave a message . You need to call back again and listen to the lenghtly preamble about directions , office hours, emergency numbers etc. You still have to press the correct number and leave a phone number for a return call. The return call is late that day or even the next day. +The recording suggests yiu use the website yet you have to be signed up for the website and I cannot find out on the website how you get signed up. +I would rather go to the DMV rather than have to call the AIA office for other than an appointment..",review,IgN8zsAGe4_7uXDls3gM5w,0,1,1 +MY0_6BAzQCu4sqXqwNEFfg,2011-12-30,2vHszEHv6OS_g9zJxF703g,3,"I waited months before finally getting around to coming here, and it wasn't all I had hoped for. Went for my birthday, and got the garlic bread appetizer, wasn't very good and got crumbs all over the table. It had an odd burnt taste. Got the mushroom and steak calzone, which was huge and filling, but very greasy and took a long time to actually get to the table. They claimed it was the Hoagie that one of my friends had that took so long, but it shouldn't take so long to cook a sandwich. Either way, delicious, but nothing too special for the price. I won't likely return here, since some of my friends don't like this place.",review,GKzWSBv2Dpx3ziMFQ4S0gA,0,0,0 +W5_1OOIebSkPXAVeHJXf5A,2011-12-29,uHuDxwKlw91tpwGQk4xGSw,5,"You know the story about the cobbler who created all those adorable shoes for the elves in the village? Ok, so maybe that story doesn't go exactly like that. Regardless, I found Old Town Scottsdale's version of the magical cobbler who can do wonders with shoes and I found it at Tony's Shoe Repair! Here, Tony keeps shoes in spic and span condition and if you bring them in looking anything but shiny and new, you can be sure they will be returned as good as new. Tony's Shoe Repair also handles purses and belts. They do everything for a shoe including simple repairs such as widening and adding those little tricky bottom parts of heels that never seem to last, to giving your worn our shoes an entire face lift. The prices here are reasonable and he does the work for you in a speedy time frame. I dropped off my sad looking boots off and he freshened them up and added new heel bottoms to them in a day's time. The fairytales can keep their magical cobblers, here in the real world we've got something even better -- Tony's Shoe Repair!",review,4ozupHULqGyO42s3zNUzOQ,6,7,3 +lhRUPA28pRIN1MnllN-o9g,2010-11-05,4POriD21PaZcq6LyrVWCqg,2,"I found this place on Yelp, and went there for the lunch buffet. Having read the reviews, I had really high expectations of the place, but was sorely disappointed. Watery sambar and rasam, hard idlis, dosas with a miserly amount of potato stuffing, gulab jamuns that tasted nothing like gulab jamuns, inattentive and too few waiters, and disgustingly dirty bathrooms---in my opinion, Udupi Cafe missed the mark completely. Their a la carte menu items might be better, but I am not going back to find out!",review,M-j04kcOanazSntBzoD3ng,1,2,2 +Dk6BcoqQjdWJqhbXM8KzXw,2012-09-30,UaLLqDaBJN-xIB_q7MjyPg,3,"Great concept my nephews requested I take them there when I was visiting from out of town. We really had a wonderful time, I just wish the staff was a tad bit more friendly for the amount of money we paid for being there. I get it, its annoying explaining how the process works for each person that walks through the door but, I never done this before so I was asking questions.. seemed the employee was a little frustrated which was annoying. But, I stuck it through because that's what my nephews wanted. Other then that this place was fun for adults and the kids. Very therapeutic, quiet and allowed your inner creative side to shine through. Great amount of colors to work with and supply. I would do it again with them but, hopefully the person at the front desk could smile more often!",review,zICF617F_kWyU2Z7WLRh1A,0,0,0 +OSL98Keoc2FSNx4a3ge5Uw,2009-09-02,99PdZYD3wGhZRT0aP1koGw,4,"So good. Oh so good. So good for a hangover, or, so good for brunch with mom. Quaint little establishment with cute little waitresses bouncing around in tiny little shorts. My coffee cup was never empty, and even as I was leaving, my waitress was filling up my to-go coffee cup.. she gets my vote for the most wonderful person of the day. Their breakfast menu was pretty excellent, I got the Western scramble with mushrooms and it was cheesy delicious excellence. Very clean, and lots of seating.. I had read about the lines, but we got right in and right out. This place is exactly like The Good Egg.. but not as many senior citizens or bonnet wearing geese used as the decor.. I am a fan.",review,v5k-__wHo2xPI25WO-dcQA,9,8,7 +r9sGMJ084n4IS9eGmlCKjg,2012-05-04,Hh6hlyYT8Of_-mwiL7WhdA,4,"This place was old school when it old school was in session. I can't spot any changes since it was one of the original Cork N' Cleavers - maybe new carpet, but that may be it. + +The salad bar is so old school, it still has jello - not jello shots - jello. And since, I'm old school, I'm a fan of the salad bar. + +Monday 4 buck burgers with 2.50 salad bar is the only food you'll require for the whole day. Decent burger too. + +Good barkeeps - they remember your name or call you hon (old school). + +The food is pretty basic, but they start with decent ingredients and prepare them well. Had the prime rib a couple of weeks ago and my view is that the only way to eat prime rib is to have it breath it's last on the way from the kitchen to the table. It was early enough in the evening that they were able to deliver a tasty hunk of meat that was as requested. + +If you're into modern, contempo kinds of joints, Feeney's won't be for you - but if you're in the mood for dark, old school, slightly seedy (in a good way) - then Feeney's might just fit the bill.",review,OFaAdHEBwPHel6ZdrKgc6w,0,0,0 +O7fXh4ODsi--5LmJKTHn2g,2010-11-02,UrsK3pGDLRC2uu4L8k0rsA,5,"How many great things can one say about the Cartel? Does Infinity work! Yes, that was a statement, not a question. I am in love with the CC, hands down. I have traded my gold Starbucks card in for this amazingly Delicious start to my day. The iced coffee ( actually, its Toddy, which is better) is amazing. They roast their own beans, and allow the iced coffee to sit over night, creating an extremely potent concoction. The hot drinks, A+++ as well. And, the food? A+++++ (5, yup its that legit). Grab the cheddar bacon muffin... its literally heaven. No joke. Heaven. Little clouds may form above your head; white clouds of course! Not those nasty rain clouds. OK, maybe not clouds. But defiantly your day will be sunny because you stopped into Coffee Cartel. And not because you live in AZ. Duh. + +Only complaint I have is the hours. I live right next door, and their only open M-F (like so many places in DT-Pho). + +PLLLEEEEAAAASSSEEEEEE open up for the weekends!!! I'll work for free! Well...wait... I'll come visit.",review,9ellV9VrEOPA3vX2pZptSA,4,4,3 +7vz3HGtHzvz1JjiphH9uOQ,2012-10-11,M8mRgKOvNDU9AmVooK11Zw,5,"Cute, cozy, pleasant and very friendly service. That is really all I have to say about them. The food was oh so delicious! Little bite sized tacos. Service was fast and just perfect! They even use the square card reader on their iPad to charge cards. Which truly shows its a small and quaint restaurant.",review,5y0N0fTEg_ZGEGDGzzRTdg,0,0,0 +PmZ3Ft4aOGpzhpPnF21loA,2011-06-10,ehQl6pGhoHErv8pgR1Syfg,3,"Needed to get some keys made, so I dropped by here. The key machine is located at the front of the store at the customer service/returns desk. I popped in and they made my keys within minutes. The girl working the machine was really efficient and got me out of there fast......which is great because I hate waiting. + +Will have to drop by here for other home stuff another time. + +Return Factor - 84%",review,kGgAARL2UmvCcTRfiscjug,3,5,3 +3l72FflaaeI0tWEAWN3-gQ,2011-04-18,tm64Vczr7rNwT91pYXT3Fg,4,"Walk up to the counter to order... be prepared to want everything on the menu... we got the Carne Asada taco (extra spicey for a nominal cost), the softest corn tortilla , guac, chopped lettuce, carmamelized onions, and fire-roasted tomoto salsa, and the Al Pastor, (marinated pork), chopped cabbage, etc, JUST go there.. you can eat outside (weather permitting) or stay chilled inside. Not many tables. who cares. get take out. will go again..yummmm.",review,LXWAXIeYFIdgd2JVPF-9qA,0,1,0 +duHUQFn7K-Ybs1rPI4AOEQ,2009-06-19,dmeHFvlF4PvEQfTqqbFgYQ,4,"Okay before I get into the drinks, I'll start with the food. My fave is the peppered turkey avocado sandwich, with these delicious fries. + +Or, (Amber: note the paragraph change) you could get the chili verde appetizer, or the grilled shrimp and guac tostada bites, or the tejas trio with guac, queso, and salsa and chips. + +Bottom line is the food is solid, all the way up to the fruit cobbler for dessert. Settle for nothing less. + +For drinks, Z caps you at 3 margaritas so make it count with the chambord rita before you switch to beers. It's good, you'll be flavored, life is perfect.",review,vhAn390OgR1H4DwacJdc7w,2,1,2 +DlCtdbceo4YNSI53cCL2lg,2011-12-23,wgJMS9ihQGPmciZFguF4hg,4,"I come here about 4 or 5 times a year. It's consistently good. There is ample seating, so I've never waited long. It's off Central, so the parking is horrid. Their lot holds a good number, but it can be tricky to get in and out when crowded - I don't drive my van here. + I am always pleased with the food. I find the salads ok - I really like their Balsalmic Vinigarette dressing - I'll mop the leftover with bread. + I typically get spaghetti with meat sauce and sausage. The sauce has a good flavor. + The Brown Butter with Mizithra Cheese is incredible - but very rich. + The staff is always courteous, and I rarely have to wait for anything.",review,fwIXyM_7HFRfkVQMne79AA,0,0,0 +y0_Yc9NS-nro-pDGKhiFjw,2012-07-05,TGQhowYcikYwERv2nWrVTw,5,"I have used Todd on at least a dozen occasions. I am a property investor and I buy multiple homes. I need Todd for EVERY house I do and he is ALWAYS there for me. He even got me into my own car once. At the drop of a hat, he is there for me. His knowledge is excellent, his demeanor is fantastic and his service and workmanship is excellent. I would NEVER use another locksmith unless he was dead or out of town. In which case I would probably ask him to come home. :) Use this guy. Hes great.",review,YLcgm9PknLBAuWgo-d7MGw,0,0,2 +zpKmFI47BWUT-dUlTDSVug,2011-02-10,wYEZOP4jXWcL5DSDW87qxA,4,"I love this store! very underwhelming, which i love being able to get in/ get out... their produce prices, and chili prices are amazing! The staff is funny and awesome. the music makes me dance in the isles LOL. literally. +they also give you free marinade with any meat purchase which is way cool. +I don't like their prices on bread, cake mixes, and things like that, but their produce more than makes up for that, prices are awesome, and its absolutely fabulous and fresh. +Ronney",review,-Hv0mbeVlO2nB-6cYcfFMg,0,0,0 +yVQiGdxmnrkJDyQXv2maNA,2012-08-23,XS84w1vawB9q3RdLn1Dd9A,5,"My pants get tight when I think about Pho Thanh. +There is little else that I can say that would more accurately convey my love for this restaurant.",review,pv82zTlB5Txsu2Pusu__FA,16,13,22 +-bd26a1QEEpqUZjBmtBUiQ,2009-01-15,AHnOaIGSFIrbx7qfT69WWg,2,"This was real dissapointment because I really trusted the reviews but I realize there are couple of important factors. 1. this is college town 2. Az (no offense) isn't the capital of great food. 3. a 20 yr palate is different from a 40+ yr old palate. +Sorry to be such a snob but truly this food was just okay. If you're a foodie and really know great Ethiopian I would suggest you don't eat here. while the wait staff are really wonderful the food was just okay, presentation is nothing like usual Ethiopian fare (family style). The Dobo Wat was ordinary and my favorite (Gomen) was tasteless. they didn't include that grumbly cheese and my Doro didn't have the typical egg. The sauce lacked flavor.",review,bRPCxyEgxa6shqb_VTJ9Cw,0,1,0 +WwTK9w1qu4h28a63gFz25A,2012-03-26,S9fMjBCwW0XCDfhnRRIjLw,4,Good steakhouse. My steak was great and the sauces and salts you add on made it mire interesting than a usual steakhouse. Almost all members of the party were satisfied and happy.,review,O-ZSaBcNyYGY7UXp-4T7FQ,0,1,0 +R5TyRxY46mrSKU3-42-Orw,2010-02-09,plI5asUbXJwfrpcrVc_pWQ,5,This place is great. The first time I went in I didn't have change for the parking meter and they easily helped me out. Adrian cut my hair and did a great job. Everyone was friendly and made you feel welcome.,review,RYw9XJfFfl176jpxBMDgdA,0,0,0 +hvg4NfkaV-aVqbMzKOEgVg,2008-01-01,kX8e5NsQu7fHf221kqbYUg,5,"Indiana University went to a bowl game for the first time in a crazy number of years. + +And my big little cousin is one of their defensive ends. So it was my pleasure to end 2007 watching the Hoosiers play the Cowboys of Oklahoma State University. I can't think of any better way to finish off what's been a crazy year...though it was improved by being joined in the stands by Nadia C. (soon-to-be G.) and her adorable fiance Ben. + +I don't understand football, so the game was kinda secondary for me, but being amongst all those screaming fans, and the cheerleaders and the band was great. I'd forgotten that energy since leaving my sports loving home town. + +But the game was pretty good. Would have been better if Kellen Lewis would have completed 60% or more of his passes. Or if the Hoosiers had won (hey coach....DEFENSE!). But football is pretty awesome from only 5 rows up. Add some people watching (guy in red pants and wig), constructive advice to the IU dance team (buy new uniforms...something along the lines of the sparkly orange dresses of the OSU girls), and the awesome Marching Hundred (who knew that mainstream marching bands play riding dirty). And we had a blast./ + +The only downer was not being able to visit with my cousin after the game. For ""security"" reasons, they wouldnt let family and friends see the players at the stadium. Since I wasn't staying at the hotel, and didn't know what hotel that was, I wasn't able to see him. I was terribly disappointed to come all that way and not be able to give him a hug and give him a hard time about growing up to be a big burly football player. In my head, he's still 12 and gangly, and trying to grow into his feet and his ears. But it's great to see that hes a ""grown man"", in college, playing football and playing for a team that's getting better every season. + +So GO BIG RED! And hopefully there will be another bowl visit to kick off 2009.",review,mOirLg2h76o-dPn97XxzoA,13,4,6 +QKGZajo_Xm6AW3lHkU9Mmg,2008-03-24,jogb0sawSgmfv7MuIp2b5g,4,"I don't quite get it. Am I naive, not part of the ""in"" crowd or not tipping the right people? Our experience at Masto's started off a little rocky, but wound up being okay. + +We arrived 15 minutes early for our 6:00 PM reservation Sunday evening, no problem because the place is dead, right? Not so fast! We get taken to the worst table in the farthest corner of the restaurant while passing by 80% of the tables that are empty. Luckily we noticed right away the table would be a good fit for 12 people not a party of two which we were. They graciously reseated us at a small table for two which was much better. + +Now, after that you may think, why'd this guy give them four stars. Well they redeemed themselves a little later. My partner ordered an ice tea which they were temporarily out of. How does that happen by the way? Out of Ice Tea? But I digress, they wound up bringing him a complimentary Ice Tea once they had brewed a new batch. + +I guess you probably want to know about the food. I started with the Beefsteak Tomato and Onion appetizer which was excellent, my partner loved his loved his French Onion Soup. We both had the Bone-In Kansas City Strip his was a little undercooked and mine was just perfect. We shared the Au Gratin Potatoes and Creamed Spinach...both were excellent. + +We'll give it another try sometime when we're in the mood for steak so hopefully we can have a Five-Star experience.",review,Sa64rQmghfE9i17_dRIDyw,1,2,0 +GNZuoHxehd_3Kej7eXj8iQ,2012-07-03,iWcEOvtExQD6jkFRtBUbww,4,Thank you fellow yelper's for this recommendation! Probably the best chinese food in the west valley!,review,CiMlibhkS4uezVaHuU5Khw,0,1,0 +wH9WtaTlrRawH_IpK90RPg,2012-05-04,vF1RHDSW9ZufMclFyDgdWQ,4,"This place is great to go to for a chill and low key atmosphere. + +You can play billiards, cornhole, or video blackjack. + +One thing I didn't like: one of the bartenders told me there is a $10 minimum to use my credit card and I think he was trying to hustle me because when I went back to close my tab (without buying another drink), the other bartender took my credit card. + +Otherwise, a nice chill place to go.",review,QYgcusG-G0bwUOt0b5rT6w,2,3,3 +u0NbikWwP7TVkMkCily-4g,2010-07-22,AdijOXS_pDyUgZZab-iZKw,3,"I enjoyed seeing the Cezanne collection. It's just like pictured in the book. I spent time reading about his works and his influence on composition and form. As in other museum I've visited, one really can't take pictures of their best display. It's really a place to walk around for a couple of hours when one doesn't feel rush. + +I wanted to be surprise to see Classical sculptures and hand made works of art and I didn't see any here as, I'm very particular about the historical eras and movement of interest . Leave that to the big city museums. The fact that they have high end borrowed art and a place like this in Phoenix makes it a must for resident to see once in a while what the civic offering provides. This place is half a block off the light rail makes it convenient.",review,Ux7a5tbceLU6anNycjwt_Q,0,1,0 +uWAmlaH9xJbE3xyv3P8DWQ,2011-12-02,7H_WgekAbtgGvpyRuFKGsg,5,"We've take our daughter to Dr. Ramirez at TLC since we were released from the hospital. I've seen all but one of the four doctors, and have been extremely pleased with all of them. They offer both a sick and well child waiting room. Our daughter loves the themed rooms. With small children, you will have the inevitable emergencies that require a doctors visit. My child is two now, and we have never been unable to get an emergency/sick appointment. Our phone calls have always been promptly returned on the same day. Anything they told us they were doing, was done as promised. I cannot recommend them highly enough!",review,fLjjtm4beQfqPxLfeuqboA,0,1,0 +XHr5mXFgobOHoxbPJxmYdg,2011-04-14,lBXNKmr29rT3Mf0hqoOKhA,1,"I ate at Scramble last Friday and I have to say that it was a horrible experience. What attracted me to this place was the separate vegan menu in addition to their regular menu - this makes things easier when dining with vegan and non-vegan friends. So I happily ordered a tofu wrap and added fried potatoes as a side and awaited my food. We started eating and my friend found a hair in his food...not good! He threw it on the floor and tried to drop it. Well moments later I found a hair in my food... I couldn't believe there was hair on both of our plates! I was so disgusted I could no longer eat my food (and I was ravenous). I told the girl working the register about the whole ordeal, she walked back to the kitchen then back to the register and completely ignored me (she said she'd come back to my table). Before we left I spoke with someone else and showed them the hair, clearly not one of mine. All I got was ""Oh, I'll check the guys in the back."" Check the guys in the back??? What? How about, sorry may I refund you your money? Additionally, the few bites I had of my burrito were pretty bland, it needed seasoning or hot sauce. Overall, I wouldn't go back...unless I somehow develop a taste for hair, although I'm sure that won't happen. I did take a picture of my food before I attempted eating it and if you zoom in enough you can see part of the hair sticking out of my food - I'll be posting them.",review,_5DehTLyFIH5kQv18Iv_qA,1,2,0 +GwxCl1eT1lrC-PqtHTSObg,2012-02-28,hlwHFGzh8jI_iXT2Ie5wKw,4,"I always enjoyed coming here after a long night of work. The staff is amazingly friendly and always made my time here great. + +The sliders are yummy and their appetizer platter they offer is great. You can choose between a variety of different munchies. + +Over all I recommend this place to anyone who is looking for a low key, bar atmosphere.",review,2s8IB1FGuu4oyO8p2XLTOw,1,1,0 +GV5kqyrnOTdVr1VEd-Ji5Q,2008-04-28,ME2ziJGfKh5eEUfShuryDA,4,"The Goelet A.C. Beuf Community Center is located on 35th Ave. & Pinnacle Peak Road. This is an awesome community center with several ammenities including: classrooms, a gym/weightroom, indoor track, and dance/exercise room. + +The indoor track is free to walk and is air conditioned - bonus for those walkers who dread the summer heat. Use of the gym is at a cost - I think around $60 for the year, so it's pretty inexpensive but the gym is pretty small. + +They offer a variety of fitness/dance classes, at a cost, including: aerobics, ballet, belly dance, kickboxing, pilates and yoga + many more. They also offer specialty education classes including: oil painting, computers and spanish. I have taken a few of the classes and they are pretty inexpensive and last for a few months at a time - either once or twice weekly. It seems that they offer a lot of classes and activities for kids and seniors as well. + +Other amenities include indoor basketball court, softball fields, soccer field, basketball and volleyball courts, playgrounds, and picnic areas. + +The center is always clean and the staff is incredibly helpful. If in or close to the neighborhood this is a great community center to have access to.",review,MmPOU8kbuwkE4NedXe-qZw,3,7,1 +UWc8_M-ecCNLfrkIzwwRQA,2012-01-04,_3Bkr7242QwEsBzz6Q_Wqg,5,"Oh AJ's... How do I love thee... Let me count the ways (BEERS)... 1...2...3...200! + +They have so many different beers to choose from here. If you ever need an ingredient that is out of the norm they will have it. If you ever need an ingredient for a special dinner that MUST be fresh and ripe, this is the place. + +From 10 differnt types of flower, 15 different brands of pasta, to 20 different types of EVOO, if you're making a really great dinner, spend the extra couple of bucks and get your stuff here. + +One day I'll be able to afford the prime steaks.",review,3dno9Y7mtvi2tq6IfMpDeA,0,0,0 +DGtOkc0KNTyK8rDkmsPNYw,2011-06-23,A25YcZo0OwgYvWzElQqq1A,4,"A non-red meat eater walked into The Keg....that's how my story starts! I am not known for making trips to a steakhouses but I have to say I like this place. The staff are super friendly and are eager in helping you make a selection of drinks or food. I highly recommend the Strawberry Lemonade! Supposedly there's Gin in this drink but I did not taste a drop! I tried the Teriyaki Chicken with a yummy pineapple cilantro salsa! I chose the Twice Bake Potato as my side....omg there's bacon it! This was amazing and I need the recipe! They don't have a bad happy hour menu. I won't change my non-red meat eating ways but I will continue to visit the Keg. + + +*Side note: Yes I eat bacon. I don't eat Red Meat by choice and not for a cause.",review,2h0A-NirfNl2p2SquFWYHQ,1,0,1 +_HTE4pOKeJC7kcxiCF9vTA,2009-08-28,rmEX8SzYICMjCi8wdbx_hw,5,This little joint is right down the street from my crib and I've had the chance to dine here on several occasions (take out and dine in). Each and every time its been great! Extremely fresh ingredients and even better prices!! Great local place to get some great grub on a small budget. Highly recommended!,review,bFVetbys5Z74h1fcihmvOw,0,0,0 +Z3Ebz6iK7yLEMeTe-iSXlQ,2010-09-08,rw7Fo0nrEObyNpVKF0z6Cg,1,"despite it's billing as the 'largest thrift store in north america,' i'm pretty sure this is the island of misfit goodwill items. the place is huge, but i've never, ever found anything good in this store. i'm not sure how that's possible. but i would never go out of my way to shop here. + +i have no bathroom report for this location because i've never been in there long enough to actually go.",review,f6q_pSwkHMNbRusrX5Pkfg,0,0,1 +HDvCnqIf5twbMb5-eG1EJw,2008-07-18,zl0ZBtj3Vuj2ZZ8BI13g4g,2,"After hearing for years that this is Theeee Best Breakfast in town I finally checked it out. Now I've been twice, and I just don't get it. I just found NOTHING special about this place at all. It's a cute breakfast dinner and the pancakes and waffles are ... well, pancakes and waffles. + +Both times I've been we had to wait to be seated, and both times I didn't feel it was worth it. + +In my opinion Palette, Over Easy and Matt's Big Breakfast are so much better. Of course your mileage may vary.",review,A_O8wZOsMTPwyeYA4-Rsow,1,2,1 +BM0-dgPJMBMmcmO9PVCJfQ,2012-05-08,P2jSIUphnPr11RyiEqT6xg,5,My wife turned me on to this gem. Her family has been eating here since the 70's it never disappoints. The machaca is moist not wet like many others. The Pepsi from the fountain is the best fountain soda anywhere.,review,0N3g3U02PR8iCyY7BdP0dw,0,0,0 +oOehX_l0odQc-tu81VUkIg,2011-10-02,OwPyykQcZeHpaVq9fqmGbw,5,I love this place! The owner is always there and you can tell he takes great pride in what he does. Great food and great customer service!,review,YO7evzJc9HcoTJVE3FA4eg,0,0,0 +kN8792XEJfCtpD5GJLmI6g,2012-04-05,rePYrDbIeRxlvwj3uIFUaA,5,"The best fried calamari in Surprise! Delish pizza! Consistent quality and service, never have been disappointed since we moved here in June!",review,YmwVEGMrVxelz8IB9b-84A,0,1,0 +L-uPZxooP_ziXCtRrWi8Pw,2010-10-14,_wGgKx5ijEXlU7q_Mp11fA,4,"I don't know what else to say that hasn't already been said! I went here for my birthday and it was such a nice and special occasion. Having Christopher cook for you and talk to you is such a unique dining experience and I wasn't disappointed. + +However! I would have appreciated being told to have cash up front. Also, it got really smokey in the restaurant (it is so small) and everyone's eyes were tearing up towards the end of the meal. + +I would recommend this place to anyone!",review,0LuN0DGTCkzpjAD3NyNN8w,0,0,0 +HDvCnqIf5twbMb5-eG1EJw,2012-01-13,LULc2P8h_Zapr3kr0pkNkw,4,Efficient friendly service and good fresh-squeezed juice. I rarely eat breakfast food but I enjoyed their New Mexico skillet.,review,7H4P71XuPBDVhriA4RIluA,0,1,0 +ntN85eu27C04nwyPa8IHtw,2010-12-17,KIdwAIKdN6psIKBP2OWAfQ,4,"Eh? How have I not written a review for Matt's? I went there a while back, but thankfully it won't be hard for me to recall the experience! + +Place - Small. +Food - Fantastic. +Wait - Usually. +Bathroom - An adventure. + +We didn't have too long of a wait when we went, but that was entirely luck. I've seen crazy waits here, which is just par for the course when the food is good. Most of it is local and very, very good. Service was fast, and spot on. + +The bathrooms are next door in an old motel. Apparently a separate room set aside just for Matt's. Just one more stand out feature for a very stand-out sort of place!",review,Znu5KKqytHfmjbXfQo3f4Q,1,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2008-05-16,q1QBWh2l2OTz84e5bxDtGA,5,"I loved Joe's Farm Grill...you haven't lived until you have tried the Blue Cheese Burger..(not sure what it is named on the menu)...I fancy steak encrusted with blue cheese, this burger is the next best thing. Their garlic fries are to die for...heck, everything they cook is incredible...worth the drive...",review,EWWiBuidTJtHGSYM21i9iQ,1,1,0 +B_fVPPUxw0TA9TfT5NB5AQ,2011-07-23,GMQQaPqxjsjq5FlPiyfi_w,5,"Best pizza in the valley that I've had (I've yet to do Pizzaria Banco). Great service, always made fast, and GREAT pricing...doens't travel well, so if you're gonna have it in your car for a while I wouldn't recommend it...I think that's why there's a lot of ""soggy crust"" comments etc...",review,ZUERBXNzvZMGyu02wlIKZg,0,0,0 +78IaYCf9ktUep4UhhjXbTg,2012-04-27,vR5o8fz6l9matgMcL5gqwA,4,"The food here is consistently good. We tend to come here annually at Christmastime while shopping at the mall. Went last week with the ladies and had the ultimate food envy watching my cohort eat a chicken salad sandwich. Came back this week to test it out and it is the BEST chicken salad sandwich I have ever eaten. May have to add this to my rotation of dining spots. +My other dining mates had the Shepards Pie, which was delicious and the grilled fish tacos which were also exceptional. I always have a sense of trepidation when I pore over the such an extensive menu. But 3 out of 3 dishes were a winner. Yet another chain with multiple locations in the valley.",review,7lYUPgVDzJeJM7r5cyvumw,1,2,1 +o1GIYYZJjM6nM03fQs_uEQ,2011-08-01,lZMTuKJ8RzL6FHv_cOInjQ,3,"You have to know what you're looking for to find this place. I've passed this location several dozen times and never realized that a restaurant & bar was located underground. A friend of mine invited me to have a few drinks and some dinner and I was intrigued, so I decided to go for it. + +We sat at the bar and ordered glasses of Wine and some Oysters. The bar was packed, but we were able to comfortably enjoy our food and have a conversation. The food was OK. The Wine was the house Zinfandel, which was *eh*....but I didn't like the call options, so whatever.....now I know not to order Wine here. + +Overall, it wasn't too bad of an experience. Next time, I'll go with a Beer instead of Wine and try sitting in the dining room. + +Return Factor - 80%",review,kGgAARL2UmvCcTRfiscjug,10,9,3 +cVejKU_SrdbvzIbQ4oPV0A,2008-07-26,eawak5Zr_tyWWJSK_LvDWg,4,"I will tell you exactly why this place is so great. + +This place will blow your mind. Not only is the service good, but the food is amazing. + +Here is the rub, your friends are drunk and they start babbling on about wanting to go to some Mexican food restaurant that inevitably ends in the letters ____berto's. It does not matter which, they all are basically the same. You go and get your gut injected with evil and then are forced to deal with that for 10-12 hours. Talk about regret. Don't do it. Like a child of abuse, you have the power to stop the cycle. + +Say ""Nah"" Like the famous sunglasses kid, ""Let's go to Mi Patio and have some fantastic food, amazing service, and keep drinking to boot."" You will be a hero. You will make Ironman look like AquaMan (He's a Chump. ""You sir, command that fish into this taco.""). + +Short list of amazing things to be had here: +1. Margaritas. +2. Mi Patio Taco. Not a taco and not a burrito. What is it? +3. The Chips and Salsa +4. Chicken Tacos. +5. Ice Tea. +6. Pacifico",review,K2TQ1HBU51Y8i6MCDI7gLQ,6,7,10 +zXg2O_QnpHQVD7e1azAu_w,2011-09-01,S3eT0vq2Cd8PDld7_bcxMQ,4,"At least one a week. Can't go wrong. + +My family's favorite chips & hot sauce anywhere. + +Wife loves the veggie burro.",review,rbJ-qICYEbuuizlzAt29yA,0,0,0 +-Ogv7rpcgUHkFaSy3vD8Sw,2011-01-14,nDtHTuCxgTdsBzYc-wb8Lw,4,"Alot of the items is presented neat and fresh. I like how they have fresh spinach and beef cube. Didn't care for the sushi or the mongolian BBQ though. But for $7.95 weekday lunch buffet I think the value, variety and quality is there.",review,3gcWln_pMrg_Qt89BlfEUg,0,0,0 +GvwDppcJLm9lso9iS2hSIw,2012-11-13,mrzSMQKi4mYqvtvaV-L-pw,5,"Best pizza in AZ, hands down.",review,lG6Q5OvamVHUSk9MPE6Q4A,0,0,0 +E3RjJH45EX6rHYDs0TYSRA,2008-01-02,Le5HqwNVMGTXmELMxHRhRA,2,"So normally I'm not that tough on places, but I think when you're serving Mexican food in Phoenix, there is a certain level of expectation. + +They get one star for having decent service and another star for having quite good portions. + +On the other hand, the food was crap, especially for the price I was paying. I had steak fajitas, not normally the cheapest thing, but for something between $12-$15 I expected something tastier. If they had been the most delicious thing ever, I wouldn't have cared but I didn't even take the half of the food I had left home. The steak had a funny after taste and a lot of my onions were burnt. The beans were mediocre and tortillas were average. + +On the whole, it was a decent dining experience but not what I would have wanted for the price. You can get a lot better Mexican food in Phoenix (and for a lot cheaper). I'd recommend coming here only if it's the most convenient place.",review,9m2wQ0vU_nijlh09v4jgNQ,1,1,1 +qkbloHdDZuHf_0wTqUGPjQ,2012-11-26,UYScJVVc45vo6Cfg5ZuQjQ,4,"Ate here twice while staying at the Biltmore. Ordered the breakfast buffet and Bloody Mary the first day, which would warrant 3 stars. Basic buffet with sausages, bacon, eggs, potatoes, french toast, omelet station, and desserts. Omelet station was one of the better ones I've had, but everything else was average. Bloody Mary had cheese, shrimp, and some other things on it and was quite tasty. + +On the second visit, we had the lunch special which was chicken salad served in a tomato bowl and a pizza. The chicken salad sounds very simple, but was extremely delicious. The pizza was one of the best I've had in a LONG time. I'd definitely order the pizza again.",review,OLtpWG394b4VVQhYht2cIg,0,0,0 +sF3k_ZSndah1OwduVlb8_w,2011-02-27,FkgS1ApqSOt2rT0b5YmDSg,4,"Met my friend Jackie to grab a cup of coffee and ended up staying for hours! It is a great place to relax with comfy seats and a great vibe. We plan to go there one night after a movie to sit and relax while listening to the live music. Very cool. They have delicious sandwiches and their baked goods looked amazing! + +The baristas are so nice and helpful and very friendly. The place is modern and inviting. They offer so many organic healthy choices. It is located in Norterra close to the Harkins Theater. + +Glad she suggested this place ~ we will definitely be back.",review,WVO0fhZlCZ2k05nnxnnyZw,0,0,0 +ht17atGW3tP8dFeiJkXI_g,2012-10-20,xDBJ3ydTHFIjZ0M8E84Z6Q,3,"The food and drinks are blah, but the service is always great! Happy hour and trivia are always fun at Skip & Jan's.",review,kE2Dw1sKMeaDOpyZNVQKJQ,0,0,0 +dD2xiLM1_5Vg0pMvMIPZww,2012-10-30,-7qEdFzHUZqwn_g25tjReg,1,"I was really disappointed with my local Baja Fresh tonight. The lobby, salsa bar and even drink station were very dirty and unkept. To top that off my salad had old dark colored guacamole and limp lettuce. + +I hope they read this and will do a better job at cleaning up!",review,ZC49A1K-if7KP8VJXoqELQ,0,2,1 +7SO_rX1F6rQEl-5s3wZxgQ,2011-11-14,3R2Vfs6v84HIKzvYPKxZ_w,5,"I don't think I've ever been to this place when it's not been crazy busy. It's just a small little eatery, but it's always busy. They have some great food and the peanut butter pie is delicious. Just a place to hang out and enjoy some breakfast, lunch, dinner or snacks at. Parking isn't the best and that is a problem, but if you live close and can walk, its ideal.",review,XLah_ynCwwYshCY9jc13tw,0,0,0 +zEvJiYlqnRaIk77Kn4-_Uw,2010-06-22,ClTWi--5a2esHKDVDVmJmA,5,"They have the nicest staff and the Dr. is always open when examining our dog! We have boarded her there as well and the staff is so kind, and when our dog gets there she cant wait to run up and play with the staff!",review,AjWGxRkg3Yl_q18Y7J-kjw,1,1,0 +Ydc74ermKp1L4fYOrPvzXw,2010-01-26,rFCyIolhH-ts2RSAcFx1lg,2,"I went here on a pub crawl after being turned away from an overcrowed Majerles during one of the Cardinal's game. I was surprised to find the place nearly empty when just down the road Majerles had people falling out the door, but after ordering a few round of drinks I soon found out why the place was empty. The bar tender and manager were annoyed by the size of our group. When most empty bars would probably embrace 25 people walking in the door wanting to order drinks, the Stoudemire's staff seemed overwhelmed and annoyed. The restaurant is nice and clean, and the drinks were good yet overpriced. I would defnitely not reccomend it for large groups. For people looking for a good sports bar downtown head to Majerles because the patrons there seemed to be enjoying themselves and the staff seemed to enjoy having business.",review,lBMCBwbAhfgb5oKqilA7CA,1,1,1 +w7SrsFV4FL04bhQr-B6-4w,2012-12-18,BAkdOMnqQFrRP3ZC137sgA,5,"Tried this place for the first time tonight, and was impressed with absolutely everything. Well-lit building in a decent location in the Arcadia area. I drove here from the Garfield neighborhood and it was well worth it. Juicy chicken and awesome cafeteria throwback crinkle fries, along with one of the best slices of toast I've ever had. All three of these foods were still crispy when I got home, which almost never happens with fast food. I wish I had gotten the girl's name who took care of me. She was cute as a button- very enthusiastic and happy to answer my questions. I'll be back here soon!",review,JzcOAtuVYtP8Phih3v1CaA,1,1,1 +UtUXhKh7vOVvWJF48IzJvQ,2010-08-18,FHsULLIn4bCvvV9DIdEx4w,4,"Pf changs is pretty good, there changs spicy chicken is a really good dish, the service is great! I go there almost every two weeks.",review,X3URnrCzt9PLfTb2JbZqCA,0,0,0 +fMqEPInEm9Fl5h8oJWPEjA,2012-02-08,s9QLmuvRSmBZ_xKLl-Y55g,4,"Great selection, and great prices! Get a customer card and rack up points... at the end of the year, they send you a coupon to use on your next visit. I spent $50 last year and got a $5 off coupon. + +Staff is knowledgeable and are always available if you need help. They have a self-production line of products that are great and cost much less. + +Go check it out!",review,qwu5B9anH4AlEtau0K-6aQ,2,2,2 +P5a2hK5G64J7DcNwLAPhuA,2009-11-27,fneClVcJoxStK4l6RXUU-w,4,"The customer sevice and ambiance here are always great. The managers have always taken care of any issue we've ever had. + +The prime rib is really, really good! So is the Steak Au Poivre! + +That said, I have to admit that the rest of the food can be pretty hit and miss. I've never had awful food here, but several disappointments. The managers and staff are so polite and work so hard to make things right that we keep coming back. + +The pricing is a bit high for the inconsistent quality, but well worth the early bird and happy hour pricing.",review,FPljkW6R0DXXbMFfKtTCXQ,0,0,0 +AtoMSHZ-lO7kxHRBdioMtA,2010-01-25,LP7_iFHFplJJ5IIofPM1rQ,5,"Great spa... If you don't mind spending a few bucks, this is the place for you. Neat water fall room, roof top pool, and eucalyptus room! I've had multiple massages here & they were exceptional. Outstanding customer service too.",review,93CVZEe3_HTk_GdDZOHy6A,1,1,0 +R8VwdLyvsp9iybNqRvm94g,2010-08-07,YgiclUnPI2T68-sPy46NRw,5,"I cannot get enough of LGO. + +My favorite time to come is very early in the morning to enjoy the sun coming up over Camelback Mountain while having some organic coffee and a blackberry bran muffin. + +The breakfast at LGO has something for everybody, IMO. Try the Croque M'Dame if you want something really bold. + +The lunch and dinner options are great too. This is the only restaurant I have ever been that I could eat all three meals and feel like I was being served from a different kitchen each time. + +The only draw back I can think of for LGO is the tendency for it to become very crowded. That's the best problem a restaurant can have, so they're probably not too worried about it. The parking situation can become an issue too, but for my time and money, it's worth it. + +LGO is top notch in my book and you can find me there pretty regularly.",review,jB_tZ641WMpp1Hve7Jblaw,2,2,1 +L9UYbtAUOcfTgZFimehlXw,2011-01-04,m4mnk72il6rzdfkJqdQ_zA,5,"4.5 stars! + +I've eaten at Liberty Market a few times already, but this morning marked my first breakfast- and what a fantastic meal it was!- of pancakes (3 in a stack; $6.5) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=Xg8U6Fz2E8hu0xQ3Hf7CZg#Xg8U6Fz2E8hu0xQ3Hf7CZg w/ added topping of ""market-made granola"" ($1), a side of Grilled Flattened Meatballs ($3.5) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=MMwKpMltbKCWNNlraI-tGw#MMwKpMltbKCWNNlraI-tGw, and a double-shot of espresso ($2) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=M1WrCuX3oouHHrynL8KJQg#M1WrCuX3oouHHrynL8KJQg. Service was in fine form-- I couldn't have the market-made maple syrup blend, nor any of the house-whipped cream, blueberry compote, raspberry and apricot jams, or any of the flavored syrups used at the coffee counter (my server patiently checked for those items we were unsure about), and when I asked for chocolate chips, I was, instead, offered a chocolate syrup made from scratch composed of chocolate, sugar, and coco oil... good stuff! This syrup would be excellent on ice cream sundaes, too. (FYI, I didn't really need anything extra to add to the pancakes and meatballs... the two paired well!) + +I've mentioned this once before, but I think it's such a great thing to yelp about again-- buy an espresso (or any of their specialty coffees), and you can have unlimited cups of regular coffee during your meal! Not like I needed more caffeine after the double-shot, but I did have some of the house-blend coffee. After 1.5 pancakes, the meatballs (watch out, they're very greasy!), and caffeine, I'll be good to go for a few hours, despite only having four hours of sleep! (I'm hoping, anyway!) + +p.s. Despite tipping more than 20% at the cashier upon ordering, I thought Bruce, the server who took care of me at my table, deserved a couple more bananas for not displaying annoyance at my staying here so long. One more reason why I love Liberty Market so much! + +Addendum: After getting directions from Bruce as to the quickest way to 101 N, he asked me if I wanted a cup of coffee to go, gratis! Have I told you how much I love Liberty Market?? + +Helpful hint: Free wifi can be accessed by entering the code printed at the bottom of your receipt.",review,0bNXP9quoJEgyVZu9ipGgQ,11,12,7 +XbVqzUHS3c9FhG4lI13c3Q,2011-10-09,S96nb5pz707U-VNGJOjPdQ,5,"Delish!!!!!! x 100!! + +Love, love, love this place. This is the place that made me a Vietnamese fan for sure. My friend brought me here and I was blown away but the tastiness of their food. Their spring rolls are so yummy! The chicken noodle soup flavor is a winner in my book! Everything on the menu is delicious, though I haven't tried is all, I'm sure it is!",review,Xz1w0h7wDI22IZKi-CnrHA,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2010-04-20,YYwSsNq89pf7cX0BpetAWA,5,"Went here tonight with the padres and husband. This place is the whole Joes BBQ/Joes Farm Grill owners. We saw that it was the highest rated here on Yelp for restaurants in Gilbert. + +Paper menus are available near the counter where you order your meal. We started with the Hummus + olives appetizer. Mom and I shared the Apricot Chicken with mashed sweet potatoes, Dad had some steak sandwich with horseradish that was very tasty, husband had the Salmon BLT with avacado. I tasted everything and ALL the food was delicious!! + +There were also very interesting and unique beer and wine offerings. There is an espresso bar that sells various coffees, as well as some sweet stuff. There is still a little market in the back selling local olive oil from Queen Creek Olive Oil Mill, as well as pasta, pure vanilla extract and other items. + +I highly recommend a trip to Liberty Market for a fresh, home-cooked meal.",review,qcBEh_PFohFIJFcK9J23Sg,1,1,0 +GHYOl_cnERMOhkCK_mGAlA,2012-11-09,-aQ5TwcD79345syt7LJg3A,1,"I have been here once for lunch and sat outside only to get eaten alive by flies, nothing worse than eating outside on a nice patio and being pestered the entire time. + +I decided to give it another chance for happy hour, well guess what? flies followed me inside too. + +I don't know if it was the time of year (early spring) or what, but they really need an exterminator!",review,fdoaD2Ed572jhZDl_xDbWw,0,0,0 +7Z-1mLIoxCHUxCp54W1CGQ,2010-07-27,9ipDNTQDEetRIs5x0f1v4A,5,Enjoyed date night here with the hubby. Try the gluten free pizza. A-M-A-Z-I-N-G! Mmmmmmm,review,yOSz69afsE04ilUfAckLaA,0,0,0 +fb9eLHJ4S--TyXsarJJo-g,2011-06-30,VmsPyFQoy_2vQ3VkSCumUQ,5,"As a vegetarian with a fairly adventurous palate, I love Ethiopian food. And now that I work in northern Tempe, I'm here all the time. It's filling, flavorful and inexpensive. I can have a pretty big dinner for less than $10. If you, like me, think spiced (though not particularly spicy) vegetables are the greatest things on Earth, definitely pay a visit to Blue Nile.",review,l6eB_WbjS_0y2C1MArUiOA,0,0,0 +YQ19y3LYgmAHfgNFa01vyA,2012-05-20,9fEyxyu_NV_sHtkVF7tjOg,2,"The service was very slow. People at several tables were waiting, far to long for, drinks checks food. The table had no bread plate , no salt and pepper. No napkins. We had to ask for everything. The busser did not seem to understand how to set a table. We ordered the beet salad, it had no flavor and huge -hard as a rock beets, no cheese. Tiny orange wedges. No good. +I ordered, for a main dish the Covina, white fish. It was so salty I had to send it back. The waitress then informed me that I ordered it wrong! Last time I checked you made sure your food tasted good and wasn't toxic with salt. She informed me that it was served blackened, blackened does not mean coated in disgusting salt. My hubby ordered capellini. The shrimp were undercooked and not fresh. There was very little tomato sauce. It was bland greasy and void of any redeeming qualities. Again , like the beet salad, the veggies were not prepared correctly ...... +huge lumps of tomatoes, , mix yourself? How do you serve pasta with no sauce ? Overall I would say the chef is not talented. No one bothers to prep properly, no one is tasting the plates as they are so bad it is impossible to believe the menu is being checked and corrected. In the meantime to go back for a glass of wine and an appetizer may happen as there is some potential , just a glimmer ....and , in a few months, if enough people review, and finally .....if the owner is smart enough to stop this unfortunate cascade . The patio is pleasant, I hope someone cares enough.",review,tb4bpDnZQuDJI_2OP37iog,0,0,0 +adPVJMkRrS8_3VHQKw5-qw,2009-10-05,edwU6zh_H4PGuRc0N9N19w,5,"This is an amazing taco truck just minutes from the airport. I ordered the amazing ceviche and a barbacoa burrito, while my girlfriend ordered three tacos. I've said it before and I'll say it again here: this truck is an excellent example of the inverse correlation between price and taste in Mexican food. Eat here before your next flight!",review,K4UmjxSpiHZohl2MnkBuKw,1,2,0 +ML1RJdeZ7bbfMrHvJ7m99A,2009-10-17,VfbFSDYPgxJctTcIFmXAxg,2,"What is the big deal about this place?! + +It's not great, but pretty good. Not bad, but ok. Just is what it is. We had some wings and a stuffed pizza, and the wings were undersized yet pretty flavorful. The pizza, I just don't understand the hype. Maybe I've had Giordano's, Gino's, and Lou Malnati's too much in Chicago but this place just wasn't it. The pizza is okay, and just okay... if nothing else, WAY too salty. After a while, I felt like I was consuming a salt lick. + +Service was weird, and I'm pretty sure our server was on coke. the restaurant was PACKED and the place was buzzing and he came and sat at our table and started shooting the shit. It was very bizzare. We got someone elses order of wings, and didn't know they weren't ours until the server told us (after we had eaten them all) so we felt kind of bad. + +I'd go back here again but I wouldn't really be too eager to.",review,JgDkCER12uiv4lbpmkZ9VA,1,1,1 +UCbxctETCwDkyljuvC-9VQ,2012-12-09,4U4609zQhL2LPnzb-_D08w,4,"Just dropped off a pre-paid label package. A young lady was on duty. Very cheerful. This was a dead-easy transaction. Drop off package, get receipt. Other than having to wait in line (there was one person ahead of me), it was quick and easy.",review,Mb0psF4WQF7gZSuZafVr-g,0,0,0 +sbjb1qNUcqQomJvcgPuJCg,2011-07-09,UQIF-LcaZvaichyXhasrgw,3,"Update: Unfortunately... the last two times we've come back, the food was just ok. Definitely not $140.00 great. We even went for their three plate combo for $40.00 / person, and the cupcake it came with, I only took 1 bite. I didn't even see the chocolate explosion on the menu... very disappointing. It would be good, if it was cheaper - but at $140.00, you really want to be wowed... and that hasn't happened.",review,zSQps4R-_w8YkjDtgIsfiw,0,0,0 +97Z7j4vH0kfzL10AONi4uA,2011-12-12,6pIVCpXej2sSods1vsM3Iw,5,"I was truly impressed by the quality of service and the knowledge of the employees. I have had my ears pierced at Claire's when I was 4 (way to go, Dad!) and an industrial piercing performed at Club Tattoo. I went in to adjust my bar bell for my industrial piercing and they explained a lot of things I had no clue about, like the difference in threading. The place is clean and every one is friendly. I will ONLY ever go to HTC when I need to handle my current piercings or want to get another. Thank you!",review,TtSaKKJ9obIgGTxwr4UK8Q,0,0,0 +YxLiLBNTm4cOg7OlKKLmVw,2012-07-07,4wJTvlHg0XWKLKRV7VHrlA,2,I went there for happy hour. The chips and salsa were good. I was a little disappointed in the service. We had to ask for everything. I sat there with an empty glass for quite some time. The bartender could have been having an off night so I will give them a try again.,review,q-CFs-eE3mu6aCOUohvALg,0,1,1 +ptHERlqZTrluKh1DJUTz1w,2010-09-11,TGB0aeOg8K4GjcwyVTXsUQ,5,"Check this out...I JUST HAD A RUBEN FOR BREAKFAST!!!!! +I saw the article about this place in the Tempe newspaper. We were already heading to the Healing Field at Tempe Town Lake9/11/10 and wanted to stop for breakfast. We had the dogs with us so choices were limited. My boyfriend went into Stan's and they let us sit on the patio with the pups. +They serve their entire menu all day. I'm not a huge eggs and bacon kind of person so I love having something a little different in the morning. +I ordered the Ruben and allowed Kelly the waitress (who was fabulous) to choose the side. +The food took a little while to arrive. +When it did...Holy Cow!!! +My sandwich was huge and she brought all three sides so we could taste them all. That is great customer service! My favorite was the slaw, then potato salad. +The food was fabulous and the staff was more than accommodating. The owner stopped by our table and chatted awhile. + +I will no doubt be back. Thank you so much Stan's for the wonderful start to my day!",review,0o0VMEJeQY0pAAZ9nxErBA,1,1,1 +jJhNOhuGpIsJX5SEUFFWYQ,2008-08-26,-4ZKS14yOcFjFI8ejPhCXg,3,Pretty tasty dogs. Pretty long wait for a hot dog.,review,q5nFaw9isjD_01PpVAR7hg,0,0,0 +m3EKlucZuwnOazLrRfnWaQ,2010-04-11,cw840e7aVNpAzB1d0eegrg,4,"I am a huge fan of the Italian beef and of course everyone is going to have their favorite places and tastes. But this seemed like a place to satisfy a lot of different tastes. There are several sizes, extra meat is available and if you are getting it to go, I'd say go for it! Only order it regular if you are a fan of super dry sandwiches. I'd say go for wet if you are like lightly moist but if you are a big au ju fan like I am, definitely hook it up with the dipped!! They have american, cheddar and provolone cheese (pretty sad they didn't have the mozzarella). They giardiniera was pretty good as were the sweet peppers. It wasn't too greasy or hard to eat while driving. +They did have a variety of other things to eat so definitely check those out if you aren't up for a beef...but thats what they are known for!!",review,3hPmlMAP3PfHMiwNW_RUZg,1,0,0 +uTW9SVXqxgjbnCTlEf9ONw,2010-02-19,ZZoCg2QSFA2iPDdJyplCnQ,3,"Today was my coworker's birthday and this was his choice for lunch. All in all it was pretty good, some place I would go back to. + +The chips and salsa - the chips were nothing special, but the salsa was very good - both a green and a red one were served. + +I ordered the enchiladas suizas, beef, with green chile. They were pretty darn tasty. The beef was a little dry, this was the only drawback. They had great flavor. I even finished the rice and beans - which I rarely do. + +I get very disappointed when I order enchiladas and I get a plate that is swimming in grease and/or enchilada sauce and/or drowning in cheese. None of that happened here, which was fantastic!",review,MBLcbQ_miC1c11cfXQRKoQ,0,0,0 +bgTB6MgdVQssXhkNJ7qIfw,2012-08-04,Csv1m80-VUEYVsdDsmuh0A,5,"We have been here now several times. This Is one of the best restaurants we have ever been to. The food and service is absolutely the best. Most everything is cooked in their exposed kitchen. Everything off the grill is awesome. + +The servers will patiently answer all your questions and appear as though they really enjoy seeing you pleased with your experience. + +Since we have been here several times here is a list of some items we have had: + +For one, if you don't mind spending the money the toro ""tour"" is great. They have something like 5 different kinds of toro. From real fatty to a little less. Melts in your mouth. The presentation is very impressive. It is served on ice with different kinds of salt and (to us) a very unique way of presenting the wasabi. + +All there other sushis are served perfectly prepared + +The steak is excellent. The flavor is spectacular, grilled in view over an open flame and quite literally cooked, always and without fail, exactly to you specification. + +All tempura dishes are great + +Grilled zucchini.... Very good and juicy. + +Seabass with miso. Cooked perfectly. + +I suggest you order to share and sit at the counter. It makes for a very good experience. This is the place where you should go in without worrying about cost. Just go for it, tske your time and experience it all. It will make for a very good experience. + +Try their very unique drinks, they are very refreshing. + +Or, if you are real daring, the tasting menu is literally a 4 hour experience. +Did it once. It's a bit long for us and wont do it again.",review,fIL-xbhuBoUc1FaMvyb5iA,1,2,1 +Ez2MFsVT5lJZ05yvK_0AXQ,2009-03-26,wv0kt4QNleL3Ia2SfJRx5w,5,Love the pita jungle!!! My fave is the chicken and hummus appetizer. Definitely enough for a meal and super cheap too. Also love the chicken swarma sandwich and the chicken pizza. You can't go wrong here.,review,8RNm-Oft6BsUWsXIdiLAUg,0,2,0 +tUWLVIY6sbwLRheFJPYmPQ,2010-10-26,FnVV0gaycJrOYxVgiGiA3Q,5,"A must when you visit the Heard. The staff is very professional. James, Lora and Allison are excellent. The shop is first class. Great place for a collector. Some of the finest Native American art available. Highly recommend a visit. You will be amazed.",review,D4-0xGve18qMPnWQgMTbyQ,0,0,0 +Agz-gMJfjCsK5tdKC6FBYQ,2012-01-03,7qbR49rGZawb-wZ1bDqmzA,3,Pretty decent food. Friendliness of staff is hit or miss.,review,TEGWADXt1VA1832jbVtSqA,0,0,0 +MLkcik_rEYW_CtyrL3yhUg,2012-04-20,on6nBRNfAS-Yw4z0M1Zfiw,5,Great flavors even though there aren't many to choose from! Fresh fruit is such an awesome feature as most places are def not and limited to the healthy choices of topping! I visit as often as I can!!,review,3hPmlMAP3PfHMiwNW_RUZg,0,1,0 +XWvht_1ZLdK7EHJ3jo4q0g,2010-07-25,HflRI4pPtjqOlNGVw6IR0w,4,"The service here is wonderful. Let me start by saying that, our waitress (I'm mad I didn't remember her name) waited on us on the patio. She was so nice and our friend can be a little overwhelming and has a strange sense of humor. She made sure everything we wanted we got. Even modified the desert special so we could have a hybrid of the white chocolate chip ice cream and a brownie dessert. My filet was wonderful and at a great price of 24 bucks... Me living in san francisco where filet's cost 40 bucks a piece this was up to par. The corn salad is also worth mentioning, wonderful flavors. Anyway, I could have been happy with many items on their menu... Also, get the dragonberry lemonade it is on their specialty drinklist and is great on a hot day!!!",review,_dSomu2s3PuVar57Zrpu6A,0,0,0 +qvi4WPA5e37J8xgKqjXerQ,2012-03-05,H8H5o-lJZ8X_Zhp964ygHg,5,"Great facial great customer service + +One Love Boutique Spa consists of the waiting room/reception area and the services room. Its small, cozy but super cute and inviting. I love the way it's decorated which is what drew me to buy a Groupon for a signature facial after looking at the website. The decor is white, clean, girly and classic. + +I was disappointed at first when my initial appointment was cancelled two hours before I was scheduled due to Amanda coming down with something that was contagious, I guess I was thankful too. + +When I came in for my facial I explained that I was one of the appointments that was rescheduled due to her illness and she upgraded me to the anti aging facial for free! She also includes eyebrow waxing with every facial which is awesome! The facial was AMAZING and Amanda is very knowledgeable about what she is doing and the products she is using. + +Before my facial started I had asked her to mess up my hair as little as possible since I was going somewhere right after, she kindly obliged and when I left my hair looked exactly how it looked when I came in. + +Amanda is great and I will definitely be back!",review,3BvvoNFdTkzb8cqmxA6W3g,0,1,0 +rDvz5jX65gpfONFu7er9Tw,2011-02-18,RfSxm7Zylz80V2NwdFBAmA,5,"The best street taco's i've had. As authentic and cheap as it gets... + +If you do take out, pick up a bombaros burrito for lunch for the next day as well, its really hot, but tasty. + +Don't tell me ATF or any other spot is better, they dont come close unless you like your ""street tacos"" with sour cream, cheese and lettuce LOL.",review,2kZQi3pGOXFNewK0AI83Dg,1,0,1 +5kRug3bEienrpovtPRVVwg,2011-09-22,cfOrdnJ9zvnc7azAXHiXJA,4,"Very good food. Our service was great--thank you, Heather. She guided us to some good wines and food recommendations. We'll be back",review,ut3yURTCq7V5alsWUksEjg,0,3,0 +ufKmcpK6OTaWzeBGWNOa8A,2012-02-22,rql2bB8VdgjNh5kejRytvA,3,"My niece want to go here for her birthday, on a Friday night. The wait was about 30 min. + +The onion blossom was not as crispy as I remember but still pretty good. Its horseradish sauce was stronger than I expected. I had to ask for a side of ketchup. + +My steak was cooked as ordered (medium rare) but lacked taste somehow; the lobster tail was grilled right. The steak of my niece was on the dry side (overcooked). My daughter's steak was as she liked it (medium rare). + +For dessert, we shared a gigantic scoop of ice cream and whipped cream and an Oreo waffle with more ice cream and whipped cream. We couldn't finish. + +The service was good. Our waitress was very friendly.",review,mu2h8COMhAdnoQQ42TUTSg,0,0,0 +ksKCstSjAqxjpEj1dBZ3vw,2011-04-01,6lhAC_tkrYqVc7-CzLvRBg,3,"Another ""do-it-yourself"" bridal shop with rows of dresses tightly packed on racks in big plastic bags. The woman was super quick swapping out the dresses in the room. As soon as I walked out in a new dress, she had the old one out and the new one ready to go and waiting for me in my room. I might have rated this store a bit higher, but I didn't seem to have any luck here. Dresses were either way too big or way too small and I just didn't find any that I liked. I have heard of many people having success here and the prices are reasonable, just didn't work for me. The dress shopping continues. . .",review,AirVzN1BVQBmq5zY0YMNYQ,1,0,0 +z2YTaHtGod3i3BBbKiMNwQ,2011-07-07,TWjlo5NkFSGNwkx464NQnA,4,"Cute coffee place located right near work, so I stop by for an iced chai and a muffin before my morning shift. The staff is super friendly and knows my order by heart, which I love. Pretty good chai, too! Not the best but much better than some other places, and when it's made like soy, it still tastes spicy and delicious (unlike a chai I had at Cartel which tasted purely like soy, super disappointing). I haven't tried their Avalanches yet, but I really want to, they look really good. Prices are decent too, about $5 for a medium chai and a delicious muffin. + +I think the decor is cute too, looks like it belongs up north in Flagstaff or Sedona. + +All in all, if you're in the area, definitely stop by, but I wouldn't necessarily go far out of my way for it.",review,wgyE92HRuM-Suxtwk2HONQ,0,1,0 +_yfprBETaYgySkKyl8ZWMQ,2011-10-18,uYDaI1vKEL-VcxbhvW3emQ,2,"Blah...Very disappointing. I ended up at the San Carlos when it was the only hotel downtown that wasn't sold out. I don't think it was worth the $200 a night, but I didn't have a choice. + +The shower was amazingly tiny. I felt like I was being frisked up against a wall just to wash my hair. + +The walls are super thin. I could hear snoring from one room, coughing from across the hall and the TV on the other side....just awful. + +The staff wasn't very helpful---forgot to program a wake up call, refused to assist when an alarm had been going off in another room for over an hour in the middle of the afternoon, etc. + +The ghost lounge was very cute...I went down and it was a swing night which seemed to be fun. + +I'd be willing to come back to the lounge, but not the hotel for sure.",review,bHFVi9iJ_sH6IiyQazdhQQ,0,2,0 +5Feaj6aixO_QxKFnkHf3xg,2011-03-15,NuU3hi3Bsm3sUcSzmE13rQ,4,"We were exceptionally sun deprived by the time March came around, so that may have swayed my review to be exceptionally sunny. I was pleasantly surprised by the FLW inspired architecture (I didn't do any research on the hotel-my husband picked it) and by the beautiful grounds. Our room was very comfortable but we spent the majority of our time at the pool or on the patio relaxing. It is definitely not 5 star service across the board, but no one was rude. Our room wasn't cleaned the entire 3 days we were there, even after we asked the front desk to send housekeeping. That didn't get us down--after all, we didn't come there to hang out in our room. At Frank and Alberts, the staff gladly switched the TV to the game we wanted to watch and the food was great.",review,XrrTxbKVGIuPwaM4lAt_Gg,1,1,0 +xKXahNKbBUZtOPWibwq94w,2012-10-11,zwKPh_Wjv-_6lHs3bkrV5g,4,"A comfortable little wine shop situated just south of Old Town Scottsdale. Every Thursday they bring in a distributor or vintner to showcase a set of wines at their bar and collection of tables set off to the side. For $15 you usually taste five or six wines of decent quality, the best part to the price is that $10 of each tasting goes into purchasing a bottle of one of the wines tasted. The atmosphere is quite an eclectic mix of high-brow, with food and clientele from Atlas Bistro migrating in, and casual. The people running the place couldn't be more nice or more knowledgable in the wines they sell either. The prices may be a touch above somewhere like BevMo, but if you're looking for the perfect wine to go with gnocchi in a basil cream sauce, these are the guys to ask!",review,U5TnaAf__Bn1wbe44T4c_g,0,0,0 +Vak7jP7fu6LUxQDZmSZE3g,2011-09-19,2F2A1yoc4C36o4haEiwwUA,4,Great place to grab some quick mexifood. Service at this location has been great. Fast and efficent. Try the pick two for a healthier smaller portions!,review,bd17-disjLNGxvnxdatsaw,0,0,0 +dzncF6n6MHJLXUo4_J6eig,2011-12-07,eofH2KzzXNe7wzNINgDwoQ,3,"Found this place by accident. Not the greatest location. + +The pulled pork rates about an 8 on my scale. Didn't need sauce, but the sauce (sweet) was good. The Ranch beans are a tad spicy but still good. The slaw needs a little help. + +I will definitely go back and sample the rest of the menu.",review,hoUUGRG0Lr8QgI4CrNeGRQ,0,0,0 +boxO5rTwArJqyjOQyBYxcg,2012-02-04,nPJtMwgjhsw6aYu8qW9b9Q,5,I love Jimmy Johns!,review,8FvfywrS0X1QDn9wH8xCvQ,0,0,1 +2bdKR3l4o-S1CscLqqnvVw,2010-02-05,QepAp9sN5TIzfefBKAoRiw,4,"The naming of Asian themed restaurants is in need of a serious makeover. I think this is the next frontier for marketing gurus; a potential fortune could be made here. Most restaurants fall into the category of being painfully bland (""China Food""), vaguely insulting ethnic caricatures (""Mr. Yings' Happy China Meal"") or horrific puns (""Pho Sure""). Names like these don't inspire a lot of confidence in the quality of their food, even though that's not always the case (for example, ""China Food"" was actually pretty good). + +So when I saw Thai Elephant, my mind immediately reversed the name which sounds suspiciously close to a parasitic disease (elephantiasis). Plus the fact that it's located in a strip mall is a bit of a red flag. But a growling stomach can overcome these biases and so I pulled into the lot...... + +......And was pleasantly surprised. This is actually pretty good Thai food. The inside is a little more ornate than you would have expected; there's the whitewashed walls that fits the strip mall theme, but the furniture is darker wood with slightly dimmed background lighting. A large screen TV was playing the Suns game in the back room and a small bar is present in the front part of the restaurant. There are a few tables as well as some seats with a mix of wooden booths and chairs. + +Still wary, I ordered the hot tea, Thai sweet potatoes and chicken Pad Thai. All of these were above average: the Thai sweet potatoes were perfectly fried and mixed well with the slightly tangy sauce. I may have eaten more than ten times my body weight in Chicken Pad Thai over the years, and this was definitely above average. + +Although I was just here for dinner, I did see that they have a Happy Hour which runs from 5-7 pm. + +All in all, it's a pleasant place that belies its' strip mall exterior and is worth a visit for respectable Thai food.",review,mxwQi0rr25dIvHUaCs7EFQ,2,3,2 +o0Sm7tDF8wx6w9F2ZbdG2w,2011-03-07,-aP_4AMgkUzoWiK2WNom0w,4,They have Veggie Dogs! The veggie dog will run you about 40 calories fewer than the regular turkey dog. Happy eating :),review,DYC9uqPYAwI_q9J9RknWvg,0,0,0 +1Ap6ZNCvyLLKHP0wvCk9yA,2012-11-08,foLjJgYPM1ZySY0keP0DxA,3,"NOTE TO SELF/OTHERS: Check zoo hours before going. Apparently they close at 4. On a Saturday. When it's beautiful weather. Maybe that's an obvious close time to everyone else but we sure were disappointed. + +I guess there is a whole slew of stuff we missed seeing, and some other exhibits we passed were closed for a wedding. I guess it's cool to get married in the orangutan exhibit. Or else the orangutans were getting married. (Maybe those anti-gay marriage folks were right in that it would lead to animal marriages??!) + +Anyways, we all know it's not the greatest of zoos because it's freaking hot half the year and it's not super nice to subject a lot of animals to 115 degrees. But it's a decent enough selection, they have friendly staff, it's clean, and they have free parking. GD I love me some free parking. + +Lots of the ""learn more by pressing this button"" things didn't work. At least one water fountain didn't work (but hey- it was conveniently next to an overpriced soda machine!). Like most other zoos they make you exit through the gift shop, so your wee ones can spend the car ride home crying about how they didn't get x overpriced toy/stuffed animal. + +I do think if your kids are young enough, you could probably just take them past the ticket counter and check out the animals you can see below the bridge/in the water. Those ducks, fish and turtles are FREE to see, and what 1 or 2-year old needs the whole menagerie anyways?",review,XTFE2ERq7YvaqGUgQYzVNA,2,2,3 +e0wJd1deF4Wl-etBC7nBgQ,2011-06-12,dJ41ojtcx-folN8pqV6jnA,1,"I used to always go here for tires until my mechanic noticed my tires were the incorrect size. Back to Discount I go to correct the problem, and they blamed me. I was told that I must have chosen the smaller tires to save 20 bucks a tire. I ended up having to spend a lot of money on five new tires (my spare is a full size as well) three weeks before Christmas. I wrote the company a letter to tell them how wrong I felt the entire experience was, and I never heard anything back. I will not be going here for future tire needs.",review,ClwvJsIns4ESympKrDaqGQ,0,1,0 +eRhl0bBMEeCRaOJ8gbSw9Q,2010-03-24,QT0oe040EXtdyd-WqgDKiA,4,"Almost as good as the original Boomers. Wasn't quite there for me but maybe because I was there on a Sunday and the help clearly wasn't into working that day. Can't say I blame them though. + +Anyways, same good menu selections, good prices. Sliders were tasty but not as good as at the original Boomers. + +Needless to say, I'll be back and try them again. These guys have awesome Chicago dogs and it would be a shame not to try them here!",review,XgIhw-aWaq_Fx3ZVQGjnuA,0,0,0 +dH3E5EBlXU5s2Ev86iv3Cg,2012-01-31,K5NWVLyOtsQNSSORx13z9g,1,"The music is pounding... + +It reeks of ridiculously strong cologne masking young adult male insecurity... + +Some guy younger than my kid brother is walking around without a shirt... + +Everything is super overpriced for what you get... + +In the grand tradition of overcompensation and brand whoring there is a name plastered all over everything... + +No one is genuine either in their efforts to help or able to make real eye contact and stop texting... + +Is it a bar in Belltown in the late 90s? Is it a frat party? Is it a spring break trip? + +No, it's Pimpercrombie & Bitch! Now I remember why it had been at least ten years since the last time I walked in one of these cesspools of humanity and child labor sweatshops. Maybe next time I will wait 20 years...if they make it that long.",review,NqeD28GGg1Wdj9BfaHqr4g,6,7,9 +EWMwV5V9BxNs_U6nNVMeqw,2009-05-24,hOKYjPMOc5QoLgyy6g1mpw,5,"Torn between review Fez Foodies, the periodic event that allows patrons to participate in sampling yet-to-be-added menu item and tweak them based on responses and the actual restaurant that hosts said event and providing a CenPho restaurant that combines innovative cuisine with ambiance and amazing service, I settled on the latter. Because without the brick-and-mortar there would be no former. + +So, tonight for the first time Robert M and I joined the Fez Foodies for a sneak peak at a few items that will be coming to a plate near you. The raspberry spinach salad was wonderful. The steak with mushrooms and smashed red potatoes might need another consideration but was still a pleasant entree. Honestly, I look forward to returning and getting these items, because Fez actually takes customer input/suggestions and applies them. + +Fez is one of those locations where I've never gotten anything but terrific service and a great meal. I'm fond of the garlic and rosemary fries but my coworkers and friends and strangers on the light rail think I should limit myself on these as some people don't appreciate the proven medical benefits of bucket-loads of garlic and shovelfuls of rosemary. Tools. + +Not surprisingly, Thomas was a peach of a host. Forgive me if I seemed disinterested in conversation: we just returned from Rim Country and that experience killed my ass.",review,nc3cqVN0UuB3m50-CcMftw,11,10,12 +hfl62LX14YqNpG0g0Tj6_Q,2010-11-01,qgaQ4_kZgku_QXEaiS4PKw,4,Very tasty. Had the pork which it typically dry but here it was really good. The only thing is that I got bored with the flavor. Quality of ingredients are very high.,review,ix2q3b4FcbeV7L52Lxj33g,0,0,0 +IceZ4BtTz76eppjNWm-c6A,2009-01-03,xQtvW7xq5NGJoqwDxVwWMA,2,"Atmosphere good. Food...not so much. I recently ate here for the first time and, unfortunately, I can't say anything good about the food. I ordered a chicken shwarma sandwich and expected a hot middle eastern sandwich filled with flavorful chicken sauteed with onions and spices and accompanied with crisp fresh veggies. What I got was FAR from what I expected. The pita bread was your typical crappy faux Wendy's style doughy flat bread 'pita', not a regular pita pocket. Inside was some flavorless, cold, unseasoned chicken (and when I say flavorless I mean indistinguisable from a mouthful of cardboard). They didn't even bother to put basic salt and pepper on this sorry meat. The remainder of the sandwich consisted of raw zuchinni (WTF?!), chopped tomatoes, 3 leaves of romaine lettuce, and some bits of red onion. None of the veggies had been dressed or seasoned. Oh, there was also some hummus/tahini 'sauce' mixed in there (presumably for flavor), but I have never tasted anything so flavorless. I imagine that wall spackle has more flavor and pizazz than this 'sauce'. Come on Paisley, does your cook even TASTE what comes out of the kitchen? Add some flavor to your food. You could start with salt, fresh lemon juice, garlic, pepper, and high quality olive oil. It's really not that hard.",review,1RJORk4w9jxxWBKzOvOptw,1,2,1 +Edj0quZE5k1WcAtf883j6w,2010-03-29,MQ7qgrkKb98K8GI7UWPjbg,5,"Ahhh Shady's...I am a little embarrassed to admit how often I frequent this gem of a place, but definitely not ashamed of how much I love it. Cool atmosphere, just the right lighting (very important to me), great bartenders, good prices on a really nice selection (Who else has Old Raj gin or Agwa De Bolivia?). This is definitely not a dive bar (not that there's anything wrong with that), but it's not an icey, blase Snobbsdale-ish joint either, and I've never felt ridiculed or snubbed here either by patron or bartender. I've seen all walks of life come through this place, but never felt that it was too 'hip' or pretentious in any way. Great jukebox, obscure, forgotten movies playing on the telly, bartenders that are nice to look at (male and female), have personality and actually remember your name (and drink). Does it get any better than this?",review,7Jj3K9V8cTwnRHAjfxfaqw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2009-01-28,PWvLDC7tQWRoajYKcAqrxQ,5,"I really enjoy this place. It's beautifully designed. It's hidden in a historic neighborhood, (zoning issues so no patio), and they make they own tonic! ---What else does one need? + +But now the food. Rich, full flavored, comfort food. I don't think there is a cuisine style here as far as I could tell, just some of the best food around. + +Had the fontina crusted with pinko and walnuts, awesome. A potato side dish, damn good I tell you. For the main course the skirt steak, which was some of the best red meat I'm had in a very, very long time. + +This is my vote for best new restaurant in Phoenix. Seriously.",review,sEWeeq41k4ohBz4jS_iGRw,23,24,11 +-h1WpfgqAmJcJDqyXXJ2og,2012-04-04,mNe2HH4iU7elpsYYGi-XDA,5,Excellent! I love this place!,review,pqnYZy25nEwGAAjShOpJGg,0,1,0 +3Zsjlum5kl5N5KV712aTMQ,2012-09-23,rgRw6--eiFEB_esfpO6U3A,4,"I have been to this restaurant a couple of times and I always leave happy and satisfied. I love coming here for the view as it reminds me of home. + +We came here once again for a special occasion which was a farewell dinner for my mom who was visiting from South Africa. I had made a reservation using Opentable and asked for a nice view as a treat to my mom on her final night. + +The hostess reserved us a table with a splendid an unrestricted view. We had a very attentive waiter - Luis - who treated us with colorful and informative descriptions of the menu. He also took care of us with an exquisite after dinner treat seeing as how mom was leaving. + +The dinner was exceptional - as always, so was the atmosphere, the company and the wine. Do go here! + +I suggest arriving a little before the dinner reservation to enjoy drinks on the patio while watching the sunset...always a treat! Call ahead of time to find out whether the patio will be open - it has happened to me twice that it was reserved for private functions. (Which was totally my bad - but maybe someone else can benefit from it.)",review,uZG-IiG2fE7LSoEtlWp2Sw,0,0,1 +YEOnspVAXguZEJp0iKLq8w,2012-05-13,BvFYrSSJRDqJwSbVyQhPVw,1,"Staff was very rude, bowling prices weren't displayed to the best of their ability, extreme bowling itself was over priced almost $20 per person. The only thing about their extreme bowling was that it was extremely hot, temperature wise. they had many ceiling fans and not one of them turned on. And the bowling equipment malfunctioned three times during our games. It was not a pleasant experience and I don't believe we'll be going to this facility again.",review,fQ6h0-OZX2deMTwTHfHthQ,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-01-03,aEVQJQK3Zpu9wAMnuHKw5w,5,"Okay ya wanna know a little secret? I LONG for Green. Ever since moving back to New Orleans I'm surrounded by an embarrassment of culinary riches but our one vegetarian restaurant can never hold its own against Green. I passed through Scottsdale a few weeks ago to visit the Grand Canyon and the second I stepped off the plane at the Phoenix airport and secured the rental car we drove straight to the restaurant. Everything was just like I remembered it and slightly better. The staff was warmer and the food just as good. I'm still thinking about the ""crab"" puffs and the eggless rolls.",review,7oMqFG6Su53dtbkVnF80Gg,4,4,3 +KPoTixdjoJxSqRSEApSAGg,2012-09-07,7CHo8pEvUu-I7Tmu10oqdA,5,"As someone who LOVES Thai food, I can really appreciate a good Pad Thai, and Wild Thaiger's is my favorite hands down! + +Just like the menu says, their Pad Thai has a plethora of intense flavors, to the point where every bite is unique. If you love Pad Thai and haven't tried Wild Thaiger's, you need to. If you don't love Pad Thai, it's probably because you haven't tried Wild Thaiger's. :) Seriously, this is one of the best dishes I've found in Phoenix. + +Their other dishes are consistently good as well. I love Chicken Satay, but most places only offer it as an appetizer, with a few skimpy chicken strips. Wild Thaiger, on the other hand, has a filling Peanut Chicken lunch, as well as a Peanut Passion dinner, both drenched in their delicious peanut sauce. Their curries are very flavorful and make for a superb and hearty dinner, but if you're going for lunch, you may want to consider Thai Basil up the road as their curry lunch combo includes a salad and other extras. + +Their Thai Tea is strong yet creamy, just like it should be, and you can even add boba to it. A must if you're eating anything spicy. + +The service is very professional and timely. The atmosphere is pretty classy, in fact, it's probably the nicest-looking Thai restaurant I've been to. It's also the only Thai restaurant I can think of with a patio. All in all, it has a very welcoming atmosphere. I would feel just as comfortable here in a suit as I would a T-shirt and jeans. It's a great place for dates, business lunches, or just some great take-out. You might spend a tad bit more here than at some other nearby joints, but the quality more than makes up for it, I would say the prices are spot-on. + +One day I'll learn how to write a review that's short and sweet, but I kept thinking of good things to say about this place. Highly recommended!",review,oijTMVRAYB6DrSkhLlaHjA,0,0,0 +eCZg35WoccS66WTl7W5TUg,2012-03-09,8Ayrg5pY4bQ1TXr3dycFug,1,"ok so here's what they teach: if you are a good person it is right and good for you to take from others and give it to yourself, because you deserve it and everyone else is a bad person. Stealing is okay, lying is okay, as long as it is done by you, but for the others, they have no place in society, so pillage and destroy them, it is your right and you will be rewarded for that. Wow.",review,4hrVQL0nc9JHfzW1OZV48w,0,0,0 +o0W63qXx172aCiGf-CCWyA,2012-02-21,PxOdJU4mMM8IBcgwzday7Q,4,"This is a great family resort if you need a villa with a kitchen, washer/dryer and space. We have stayed at Marriott Vacation Clubs all over the U.S. and we really love it here. It's not too big but is in a perfect location for us. You can use the pool at the JW Marriott across the way, but my kids loved the pool here and it's easier to use. The pool was heated to a perfect temperature! Across the way is the Desert Ridge Marketplace with an Albertson's, 24 hour CVS, Einstein bagels, many other fun restaurants, AMC movies, big box shopping like Marshall's, Ross, etc. It's very convenient for shopping and dining as well as getting to the 101 highway for all of the fun places to go nearby. + +I also found a great nail place across from Desert Ridge called ""All About Nails"". Very nice and very clean - plus reasonably priced. + +We will return when we need a Scottsdale base for vacation. Our only complaint was check in was 2.5 hours late (6:30 PM instead of 4:00 PM), and the lack of pool towels on 2 days. Otherwise a well-run vacation club.",review,MCMKCdq8V32mK7qP_MTZqw,0,1,0 +ZYnvMVHDGqYJtX_Ikiq4hA,2011-12-08,oboTO9C19L7ZG_Z5fByiBg,2,"When I bought my house, my realtor recommended these guys for the termite inspection. They found a couple shelter tubes (old & inactive), so I paid them to treat the house and bought a 2 year ""warranty"". Included in the ""warranty"" is a free annual inspection and any follow-up treatments necessary. Sounded good. + +First, the good part: the treatment appears to have worked just fine as I have not seen any new evidence of creepy crawlies munching mi casa. That's good for three stars, I suppose. + +But here's where I have a gripe. Last fall (1 yr in to the new house), it occurred to me in passing that I'd been here a year and that I should be expecting some sort of contact from the termite people to schedule the annual inspection. A call. A letter. Something saying 'Hey, you're due.' + +(I don't think this is unreasonable to expect from a service-oriented company. Shoot, it's been well over a decade since I bought my car, and the original dealership still sends me letters saying 'Hey, you're due for your 150k service!') + +I hear... nothing. And pretty much forget about it. Until... + +Another year goes by. I receive a letter from them, ""Hey! Your warranty is up for renewal!"" I don't recall if the first letter contains (paraphrased) ""By the way, we'd love to schedule your free annual inspection!"" or if that came in the 2nd letter... or the 1st or 2nd call. Or maybe it was the 3rd letter and the 3rd call... + +It certainly was in the 'Hey, your warranty lapsed but if you respond right away we'll re-instate it for you AND schedule your free annual inspection' letter, though. + +Which, frankly, irritates me. A lot. + +I will not be renewing my ""warranty"" with this company as my experience has shown that I'd be paying for nothing. + +Summary: + +Treatment? Fine. It was effective. I have no more signs of bugs. +Service? Awful. They'll ignore you unless they want money from you. +""Warranty""? I'm not saying it's a scam, but... um.... I certainly did not receive ANY value for the money I paid them.",review,WhLEj4nXKeX3UBkj35WJwA,0,1,0 +z1weSx46iBHAqU6Srlfocg,2010-01-21,mgmIdP2b7r1NE2XNnbMrCQ,5,"Wow, I am very impressed. The store is very big, and they seem to have it all - even the hard to find, odd items. It looks like everyone can shop here. + +The store is mapped out and sectioned nicely too. Finding things is easy, and if you can't (or don't want to) the very friendly staff are there to help. It looks like they employ people who know a thing or two about the supplements also... so whether you are looking for: digestive health, immune support, weight loss, muscle building, herbs, beauty or whatever; they have it, and they can tell you about it! Pretty Good! + +You can even get a customer rewards card and build up bonus points to get discounts and stuff. And they can track your purchases with it should you ever (like me) loose your receipt! + +What I am really impressed with though is their customer service and return policy. I did not expect them to accept a return and refund my money on 2 items that I purchased there because I lost the receipt. Especially, since I did not purchase it on a member card so they could not track my purchase either. I thought I would try my luck with it anyway and was hoping for an exchange. Well, the clerk was so nice to me. She said that it was no problem and would gladly refund my money (I didn't even ask for a refund)... and I had opened one product. I was speechless and felt a little guilty about it too - since it was almost a month that had passed (I really didn't think they'd take them back). Anyway, I told her that an exchange would be more than appreciated, and she said, ""No problem:-)"" again! So I very guiltily walked over to get some of the items I needed. They had them and they had them on sale - cheaper than I have ever seen and in more of a selection too. + +Needless to say, I walked out of there very happy (but feeling a bit undeserving). But that is what good - EXCELLENT - customer service is all about - exceeding the customer's expectations! + +This I my new store for all of my supplements and health & wellness needs. I recommend checking them out. They seem to have everything one could ever need. Plus, they have an entire wall (and more) dedicated to muscle, weight and fitness - if that is your thing! Also be sure to check out their website; they even have customer reviews & ratings! and product information/facts and ingredients. Really Cool!",review,nZ9XFVETN4hxdK4qPb-T3Q,4,4,2 +eIxSLxzIlfExI6vgAbn2JA,2011-04-19,tl7TszxB8L_l-gK0ohzhDA,5,"I love this place!!! The first time I went I fell in love with their fries and their secret sauce. They have those great crinkle fries and they are made to order so they come out super crispy and hot. They alone can stand on their own but I have to have the sauce. It has to be a mixture of ketchup, mayo probably some chili powder and some other stuff that I can't figure out. No matter how many times I try to do it at home I never get it. Once before I got the Italian Beef but being my first time I didn't know that you could get it wet... Duh... and ended up eating a warm roast beef sandwich that was a bit on the dry side. After reading the Yelp reviews I realized that you can add all kinds of stuff to it. I think that the girl at the register should've at least informed me that I had options. The staff (girls at the register) weren't all too friendly which makes for a less than pleasant experience right from the start. Hopefully they aren't there anymore. Forward to today I decided to give it another shot and I am so glad I did. The owner is a really cool guy and is always super nice when I come in. He asked me all the questions about how I wanted the sandwich and put the dip in a to go cup for me so I wouldn't have a mush sandwich when I got home. I added provolone and hot giardiniera which absolutely made the sandwich. I didn't get to finish it because my other half smelled it and swooped in and polished it off and loved it too. Good thing I got the fries! I would highly recommend this place. If you do have the Italian Beef you should try to eat it there instead of taking it home. If you get embarrassed easily or worry about food all over your hands and face then don't eat this infront of other people. I think it once you eat it you won't even care if it gets in your hair. So I say get over it and get your butt down to Lobbys and eat til you explode!",review,GnfhkMo0Y5qDsEOGSpvD7A,0,2,0 +RwlkbvZXQTpCRAR9PGJ1eQ,2012-01-08,j5LVGF3dT8Zv0RFH08uGSw,5,Love it. Wish it was in my neighborhood.,review,xaRsP-31LYKYuelTo7UHEQ,0,0,0 +eIxSLxzIlfExI6vgAbn2JA,2011-05-12,z4G1g3VcdfigCUtVDFRL1w,4,"I had lunch here the other day. It was a bit before the noon lunch rush so it wasn't too crowded. You could tell they were gearing up for it so I can tell they get pretty busy. So come early to avoid waiting with throngs of school kids that undoubtedly come from the high school next door. + +I like that their menu isn't huge with zillions of burger combos and other options. It was pretty straight forward. I had the standard burger, fries and a drink. Everything looks like it is pretty much cooked to order so it took a few minutes to get my food which was ok. The cashier guy who looked suspiciously like Ray Liotta was very friendly and working like crazy so I'm pretty sure he was the manager if not the owner. + +The burger was thick, juicy and cooked perfectly. It was a tad bit greasy but that made it that much more delicious. The fries were also pretty good. They are crinkle cut with just the right amount of crispiness on the outside and fluffiness on the inside. I wasn't exactly sure what to do with the little cup of sauce they give you so I used it for my fries and my burger. I think it was some chipotle mayo stuff. It was pretty good but an odd thing to put on burgers and/or fries. + +This place isn't exactly cheap but it is worth it. I can't think of a better fast food burger/fries in the area. I would return to get the burger but I really want to try their Italian beef as well.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,5,1 +kfscAJnLVf6J2uEte7g-5A,2012-09-28,FnB0wRvAAbhmRMSULZ0_sA,5,"I'm giving Yoli's 5 stars for the winning combination of great food for a great price at a quaint location. + +Went there on a Saturday late in the morning and we were seated right away. Great little hideaway in downtown Chandler. I ordered the Morning Monte. It was delicious. My family ordered various other items and we all sampled a bit off each others' plates and everything was excellent. My favorite item was the chorizo burro. Excellent chorizo with the correct combination of meats and spices. The waitress was friendly and we chatted with the owner and she was very nice also. + +Another really great thing about this place is the prices. I don't think there are any items above $8 and most meals here are in the $6-$7 range. Very reasonable for the good quality food you get. + +After breakfast we took a walk around the courtyard and had a nice time looking around at the plants and exotic birds they have on site. We also got a chance to meet the owner of the property and she was super nice also. I will definitely be back to try out some other menu items.",review,ux1nBPRbH_h9jl_wg04ROw,0,0,0 +bfDQai9X59uWK-XgP0t6rA,2011-11-17,NzMayD5frvx7wDa5dVtnrQ,4,"During my five-day stay in Tempe/Phoenix, I honestly did not have a single bad meal. Every restaurant and coffee joint I stopped at gave me great experiences. I wanted to end my trip out to Arizona with a good dinner, and I found myself at Dos Gringos to hopefully find that last meal out west. + +Honestly, the name sold me pretty quickly. Obviously, I'm not going to expect fine cuisine and classy dining at a place called Dos Gringos, but being a fan of dives and being one with my fellow man, it sounded like a good place to experience. + +Despite it being chilly at night now this time of year, it was still an experience upon arrival. It's like the tacky, somewhat tasteless, lampooned Mexican version of TGI Fridays, with a whole bunch of crap all over the walls, and a whole lot of hand-painted placards with sayings that make all of our inner-14-year-olds chuckle and appreciate. The parking was free and plentiful, and I'm always a fan of the grungy, Christmas lights hanging all over the place kind of decor; my kind of style for relaxation and no-nonsense. + +There were TVs everywhere, which was nice to watch some Sunday Night Football in the process, and I sat wherever I pleased. Service was from a cute petite blond waitress who was quick to take my order, deliver my beer, and bring my food when it was ready. I ordered an enchilada, and two ""street"" tacos, which were corn tortilla apparently. Don't take my word for it, being an uneducated in Mexican food, east coaster, but I thought it was great. Definitely different than the kind of ""Mexican"" food I can get in Atlanta. + +Overall, I can't say that I had a bad experience. The food was filling, not really expensive, and tasty to my tastebuds. Beer, football on a mild evening in a place full of 56 pieces of tacky Mexican flair and a waitress with a great smile, and I can't complain. Solid, adequate way to end my dining binging throughout the Phoenix/Tempe area.",review,PDpWGp4PVts0rxK_h_2ntg,0,0,0 +86rvPGDd0Vq2O1UNOtF9dg,2010-08-13,T6oH3f5iDHcRxEyjW2yXGQ,5,"This place has amazing frozen yogurt! I had the strawberry with small pieces of fresh strawberries! It was a wonderful treat in this heat, since it's yogurt and not ice cream, it's a little bit healthier.",review,7HDDL2FWibF3rGOZBH2IHA,1,2,0 +_Ne4sL68IW6lEXYvrnkt-w,2012-10-10,XnrlecBihrsDGGnh4hnaOA,4,"This place has apparently been open for about 2-3 weeks. I headed here with some co-workers for a late Friday ""meeting"". Otherwise known as happy hour! +They have a good selection of beer on draft and bottle. I had a New Belgium Super IPA that they had on draft and one of their sausages(Chicken and Apple) topped with some sauerkraut and mustard. It was quite a good combination and was recommended by our server. + +If you're looking for food, then you may be disappointed in the small amount of options, however, when you realize that their kitchen is the size of a small closet, it kind of makes sense. + +With the cooler weather right on the horizon here in the valley, their very large patio area should come in quite handy. + +I will definitely try them out again.",review,bAuKPiWTMtCoNNcPBGWssA,1,2,1 +-Rj4yXguyZ06ZMPMmoR9tg,2010-12-30,DlaWFT9VEcWMgJTFgB8g_Q,4,"Chance encounter on this little (well, maybe not soo little) gem of a place. Yelped it the moment I passed by it because of all the cars present in their parking lot. Although there are only 8 reviews for the place, what people had to say about it really made me want to visit. + +Was well greeted on a spontaneous adventure to the restaurant for dinner. The bar was packed so my party decided to get seated in the main dining area. Got seated right away and was introduced to our server in no time. Think she had to swallow a chill pill or something because it took some time for her to be nice (most likely the main reason im not giving this place 5 stars) + +The menu was pretty reasonable. Starters dont exceed $10 and entrees range anywhere from $5-$15 (If Im correct, there is only one item on the menu costing $15) + +We started off with three appetizers, thinking it would be the only dishes ordered (little did we know): + +- Grilled Spicy Chicken Wings: Some a little burnt but it tasted great. The portions are large and seasoning just right (or too bland depending on what you prefer). I liked that it was grilled, less of that greasy hell overwhelming the taste of the actual meat. + +- Homemade lemon garlic Hummus with pita : sooo delicious. It was only about $6, it comes with a bunch of pita. My party of 4 shared it and still had left overs =] definitely recommended. + +- Cheeseburger Sliders x3 on Egg Bun: The bun is delicious! and the meat is perfectly cooked (medium) and seasoned. The perfect balance of meat, bun, and cheese. Comes with diced pickles. + +We were having a jolly time when all of a sudden someone notices a dish being served to the the table next to us. It looked so good, she decided to order it herself. We ended up sharing the Half Chicken entree and I was extremely impressed with how it came out. + +The chicken is juicy and tender the entire way through. No parts of the chicken dry, every bite was well savored and just...mmm mmm mm +Came with two sides (we chose the green beans/onions and mashed potatoes): green beans weren't my favorite, they were overcooked but the mashed potatoes. Perfectly cooked, tasted so fresh. They don't use a ton of butter or sour cream which was favorable to my taste buds. + +Would definitely come again + +FYI: +happy hour 3-6:30 pm. From what I could make out on the menu written in chalk: Half off appetizers and three 5.5 oz of draft beer for $5 (normally $6 for 3 - 5 oz beer sampler) oh and something about $5 wine",review,K9dSPbFhxbLPNZBTp7uOMg,1,3,1 +oN8fAdw2monO8DTwntZKkw,2010-01-18,oAYJ0ChS24wF9wfXd221TA,3,"I was on my way into Sweet Republic just before Christmas when I spotted Painted Pretzel a few doors down. Since I love pretzels, I was imagining all sorts of delights. Hard pretzels in knots, twists, and rods covered with the finest chocolate. Freshly baked soft pretzels salted, or rolled in cinnamon and sugar, or butter and garlic. You name it. They were going to sell it. + +Well I was sorely disappointed. Upon entering, I realized this is probably more of a mail order type business. No soft pretzels, either. They specialize in pretzels dipped in chocolate and topped with nuts, candy pieces, etc. There were some boxes of pretzels already made up, and we purchased a few. The honey wheat pretzel rods were actually pretty good, the small bite-sized pretzels were nothing special. The chocolate was a nice quality, but not the best. + +Although they hand dip all the pretzels, they do not make the actual pretzels. So if you're on a local foods kick, which I'm not, this isn't the place for you. Not bad to have around the house and for gifts to pretzel lovers or corporate gifts as they are better than the products you would find in most grocery stores. I was just hoping for a little more.",review,wHg1YkCzdZq9WBJOTRgxHQ,7,11,4 +8HmSt7fRFe-uH6i4yCmJQQ,2008-09-04,T3dnb2VW9IEE-aAYccG-rA,1,"I do not like this KFC ...or any really for that matter. Every time I have been here the place is filthy. I know they remolded the place and I have not been since then, so I am not sure if the conditions are the same. + +The food is just not good in any way anymore. Not that it was ever great, but you could get some decent chicken and some sides and be content. What the hell have they done to the mac & cheese? It is so gross..the color is just not appealing and the taste is worse. Food at this place has been served under temperature enough times to keep me from returning.",review,JkMOQaMjlBHMqp6gj-hL3w,1,2,0 +22s5idshuEIPlEcf1ObbMg,2010-05-28,VHtSyQf8l3aNjBMhSQOBPA,4,I love this place. The service is absolutely amazing. They are always really friendly and never screw up my order - - things that are very important when it comes to fast food. Their Apple Walnut Chicken salad is amazing! I also crave their fried zucchini on a steady basis. Carl's Jr has some of the best fast food burgers out there... if you want something fast and GOOD then I think you should stop here.,review,SSXLiQkrdPLd2YJhNyojhw,0,1,0 +pOurc7UleAr_LxLhrx7iSw,2012-04-27,KFVnfSjq0xp-Yfq-6nd4Xg,2,"Long ago, Salvation Army used to be the place to go when you thought of ""thrift stores"". Sadly, this place is WAY overpriced for being a thrift store. I have chatted with other random people who thought the same thing about this one - way too expensive! :( + +I don't know who is pricing this stuff, but they are out of their mind, probably watching too much ""Storage/Auction Wars"" or ""Pawn Stars"" thinking that everything is worth a ton of money. + +Goodwill is just up the street on Grand and has better prices.",review,CP-IE-zyc2Mv3jlaceElVQ,1,3,4 +lAGDe38li38fyf971CslFg,2010-06-04,RBjDDI6DExxtqqRznhL4IQ,3,"So I'm not a big Chinese food fan, but my husband is. Truth be told, it usually makes me sick. But if I were to go to Chinese food, Dragon Palace would be one of the places that I would go. The food is decent and there's a lot of it. I really felt I was getting my value's worth. + +The waitstaff was attentive (always there asking if I wanted a refill) and the food came out quickly. It looks like every other Chinese food restaurant in the world (lots of red and gold, lanterns, paper Chinese Horoscope place mat -- save for the deep teal walls). I'm not sure I would make a long drive to Dragon Palace because chances are you have a comparable Chinese food restaurant nearby, but if you live in the 32nd St. and T-Bird vicinity, this is certainly a Chinese food place worth trying. + +As for the food, we ordered the Peking dinner for 2 which came with won ton soup, a pu pu platter (consisting of won tons - yum -, eggroll, a small fried shrimp, a skewer of glazed beef and honey chicken), Peking fried rice (fried rice with shrimp, chicken, pork and beef), Mongolian beef and the house chicken. (as an aside and a disclaimer, I am preggers right now and I have developed a severe dislike for chicken which means I, of course, hated the chicken dishes). My husband thought it all was ok. I really liked the won ton soup and the Peking fried rice. After dinner, we got the requisite fortune cookie (""Express yourself now."" WHAT?) and a really yummy banana wrapped in a won ton and fried with a sugar glaze thing. + +All in all, it was a good time at a pretty good Chinese Food Restaurant.",review,ulwPQBaloxUSClqrNSiCiw,0,0,0 +lwaLY3V7FyG_e9QUTP_N_g,2010-03-02,GBq7TY4zn2o9H9oL5DKp6w,5,"Just a quick review to reiterate how truly great this place is. + +They've got soda, lots of soda. That's right, I said soda! They've got root beer, sarsaparilla, freaky foreign sodas, teas, waters and other things. + +I love this place, I have no complaints. The only thing that would make this place better would be the addition of beer. Man, if these guys hooked up with the dudes that run the beer section of Topps Liquors it would be unstopable!",review,GMCchZHZT-5HXGu8kJJDoQ,0,0,0 +xWlCgISVtozxCztPA4nGaQ,2009-05-11,SscGVHJx2Yl1cpEpHKTG-w,3,"Dammit - I have been here a dozen times and it's been so ""mixed""... The best of times, and the worst of times... though the last two times (for late night drinking with friends) have been pretty fun... Drinks are cheap and the crowd is ""lively"". + +So, for now, I will suggest Dos Gringos to the college drunkard and/or professional drinker after 9pm. Bring some friends!",review,90a6z--_CUrl84aCzZyPsg,1,2,0 +Q2FaJ3zB6ZuGgvqUqhdc_w,2012-10-21,p2HqDU45InDqSqD8hd98mQ,4,"We went to Milagro Grill for the 2nd time and it was delicious again. The ambiance and patio are very nice. The service is fast and friendly. And the food is fantastic. This time we had the chips and guac and pb&j appetizer. Wow, both are wonderful. We also had the chicken and chorizo mac n cheese-fantastic and filling! Last time we had tacos with pineapple which was also wonderful. Can't believe the place isn't packed every night We live in the area and will go back soon! You should too.",review,MMhm7-5i5jZ554z-cUkAdQ,0,0,0 +no_FXjscklz1SEzM_XnVgw,2010-02-28,xB8hV6UIwJxEPuzyvHFLPQ,5,"All I can say is DELICIOUS!!! Service was great, food was great ,and the restaurant looks beautiful.",review,-il5mwq7l0kcPHfCSLUVHA,1,1,1 +xxyuGOeAWnKVwIfoKnfUNA,2010-12-11,TblVN9pY-rhgGyDbrEuiDg,3,"So, Jimmy Woo's. One thing that can't be argued is that they had a great interior decorator, right when I walked in, I loved the vibe. We were seated immediately, and promptly served. The service is excellent and efficient :) We started with the egg rolls as an appetizer which were dee-lish-ous! And I ordered off their fancy drink menu and got a Jimmy Palmer, yum! For entrees, which they serve family style, we got the Shanghai Delight (broccoli, snow peas, and shrimp in a sauce) and the Chinese Braised Short Ribs. It was pretty good food, a little less sauce though on both dishes would have been preferred. The shrimp was cooked alright, and the ribs were very tender with a somewhat smoky taste. Again, if there had been less sauce, I think I would have enjoyed it even more. + +Like a lot of other posh Chinese food places, as my mother said after we'd left, ""Jimmy Woo's is simply glorified American-Chinese take-out."" It's true, but it makes for a pretty good dinner in Old Town.",review,bX66Hej4j7Ej_5LtSwku9w,0,0,0 +IuAPYzf3NSyfyXYgT46YVA,2011-08-05,G_WnFnEd6H5grE3Dr9zb2g,5,"Fried Squash blossoms! How do they come up with this stuff? FnB gets 5 stars for creativity and service... oh, and the food is pretty amazing too! The menu changes with the season, so I apologize in advance for making your mouth water by mentioning food you'll probably never taste. We started off with the appetizer special, Fried Squash blossoms stuffed with burrata served with fresh tomato sauce, and an order of naan with eggplant puree. The Naan plate was nothing special, but the blossoms were fantastic. For dinner Hottie had the lab chops with couscous and I had the pasta with butternut squash and pesto. The pasta was amazing, I watched the chef make my pesto to order... mmmm basil! Hottie devoured every bite, so I would say he enjoyed his chops too. For desert we shared the panna cotta with cherries, it was the perfect ending to a great meal. This place gets 5 starts all the way, from the moment we walked in, the service was impeccable and the food was superb. Thank you FnB",review,Zwtx7FLZcK5F2P0-Tz8mHg,2,3,1 +QkyN2vqQidQhotvOtPIrkw,2012-07-15,uh50pSuHlazjcNIn1qLc8Q,4,"I was not in a hurry to visit Humble Pie due to the mediocre reviews here. The hubs and I eventually decided to stop in for dinner after a friend recommended it and I'm so glad we did. + +The vibe at Humble Pie on 7th is definitely good, perhaps due to its proximity to the alterna/artsy Coronado hood. Relaxed, cool people, good atmosphere and tasty food. We decided on drinks (a beer for the hubs and some tasty tempranillo for me) and ordered a large salad and a pizza to split. Our server was great, always making sure our glasses were full and we were happy. The salad was tasty and our arugula pizza was so good. Who knew arugula on pizza would be so yummy? While I was a tad disappointed when I didn't find something super chocolatey on the menu for dessert, the apple crisp topped with vanilla ice cream was delicious. + +We've since been back for drinks and pizza at the bar. The bar tender was very attentive and friendly and the brick oven pizza was delish. + +Humble Pie a nice place to relax and unwind with good drinks and food.",review,6fboUxwhAsUMx1F9yCzlMQ,2,2,0 +9NT8Ne1DICkv0ebX-gVK5g,2011-04-01,KeKYdgf1gZmF1etC43-Tqg,5,best in the valley,review,jIHaXo4-KR9kvh2J7eMkIA,0,3,2 +MY0_6BAzQCu4sqXqwNEFfg,2012-10-05,DvZIA-xzyABMfGZiHp5vlg,4,"As promised, here's my ""make-up visit"" update. + +Things improved dramatically since the last time I went. Firstly, our server wasn't an upsell machine. In fact, she was very polite and concerned about our order (Mine was particularly attentive with replacing and putting on the side of some ingredients, and she and the staff double-checked with me before and afterward to make sure everything was hunky-dory). The food was great, as always; had my first MM calzone, and I actually liked it better than the delicious pizza they have. + +No mention of this in my first reviews, as I don't recall going to the bathroom, but their bathroom is great! Ha, maybe TMI for a food review; however, really impressed with the privacy of the stalls. + +Back to more relevant things, I was confused (though I suppose not off-put) about the happy hour rules (we went after 10, which is advertised as HH); apparently it isn't half-price appetizers on some nights and instead is a slice of pepperoni or something for $3? Not sure I call that a deal, but I guess beers being half-off makes up for it. + +I was kind of disappointed they didn't have Fall Woodchuck as I went during their fall-themed beers time, but I guess it's kinda a pussy beer anyway (I'll qualify myself by saying I'm more of a straight liquor guy, but Woodchuck is my guilty pleasure). The waitress had a nifty hand-written updated list she kept with her, and while I'm not a beer man I can appreciate the effort in something like that. + +Anyway, like I said, they seem to have really improved here and I definitely recommend them; for the food if not the service. BON APPETIT!",review,F9hl4Dn1Ube3A6NShgfXmw,0,0,0 +iNvY0zAlaD_ye7Z6rHu-Ug,2011-01-01,nvguqMUVGh1t3yE7SK3k0w,4,"Sliders, cheese firies, burgers and dogs are great! Makes us feel like we are back in Chicago without all the snow!",review,TRl5jiNFI2m0wfH6CqO3_A,0,0,0 +bmtANWh8OrAB-QflXwI0xA,2012-07-23,8we4gbPkq4ORpUgH1UQhWg,1,"So a friend of mine went here last Friday, and they were double charged. The bartender took advantage of the situation and threw out the receipt to avoid cancelling the $60 amount. Which she claims and assumes was her tip (on a $60 bill). ""I get a 100% tips!"" umm..yeah.. I think I will skip this place for sure!",review,Aaafbip-U2aeTXbvinBLiA,0,3,0 +QCxXYA13PtkD3wec47_r8Q,2011-03-30,Lw09WYlKjSw1-fa-sG1zSA,2,"Wow, servers were a bunch of stuck up b's in corset's... that's original. Didn't eat, but wanted to check out the crowd on a Friday night. Bleh... typical NoSco crowd of gym jockeys in Affliction shirts two sizes too small... late 40's women with enough botox to look early 40's and a few lost 20 somethings stretching to pay $12 for a drink. The cover band made it an easy decision to bail and salvage the night at Eddy V's with some great oysters and live jazz from actual musicians.",review,hGyKkRaJkOpl6jagEZAWcg,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-06-26,lwUfijUTxGzT1XijZAaDWw,4,"Carnivores and junk-foodies, don't be put off when your crunchy granola friends want to drag you to Green. This fare may be vegan, but it doesn't look it, taste it, or is healthy for you at all. Don't get me wrong: it is completely, totally, and utterly delicious. Their fries were far superior to many traditional burger joints'. But... they're still FRENCH FRIES, people. The jerk tofu salad was impressively spicy, but laden in too-many FRIED won ton strips and chunks of FRIED tofu. Do you see the theme? No wonder my SO nodded enthusiastically throughout the whole meal and offered to come back any time. + +I had the G po-boy, buffalo ""chicken"" on a big spongy roll, dripping and oozing in spicy sauce and vegan mayo. The fake meat they use is really, really, really authentic. Like, so authentic, I'm not going to get it next time because I really don't like meat in the first place, hence my vegetarianism. Stringy fibers in my fake chicken grosses me out as much as the stringy fibers in real chicken. The sandwich was tasty -- the bread surprisingly excellent -- but greasy. + +So yeah. Two hesitant thumbs up. I'll definitely go again, although I'll have to dig a little deeper on the menu to find something not quite so artery hardening.",review,UoBfwbXaixelZBghbJ2cSg,1,2,2 +VGYaXB8kJjqBBIg6bsx1Sg,2012-01-26,5tCzkpglJGJ4ByR4ZcoVog,1,"Terrible food, terrible service. + +I ordered chicken fried rice. The waiter brings me a bowl and says, ""chicken fried rice, right?"" I look into the bowl and it's a bowl of brown rice. This must be a joke. I tell him that's wrong, and next me brings me a bowl of rice, seemingly fried?, with vegetables and no chicken. I bring that back to the counter and say my order had chicken in it, bringing my receipt along. So finally, they bring me a bowl of chicken fried rice. + +Or at least their version of it. + +I didn't think it was possible to actually screw up something as simple as chicken fried rice. The rice itself was cheap long grain rice. It was inedible due to the how stale/hard it was. Like absolutely no water absorption. And the rice was all covered in something that made it very wet and practically slimy. Disgusting. I have no idea how people can eat this. + +Oh, and that server who brought me the brown rice and claimed it was fried rice tried to bring lettuce wraps to the table next to me saying it was their salad. There's a nice picture on the wall which shows you what the salad is supposed to look like, and it's not lettuce wraps. + +The best thing about my meal was the fountain drink, which cost $1.85. The Circle K in the same plaza has bigger cups for 99 cents.",review,FBeskxMa7mBMEKZGJ4Rl3g,2,2,1 +Rus-ewyqLj2D1RlqK-je4w,2008-07-07,J9WKlQcv3nM-5u42IA4FfQ,3,"When you walk in, it's dark and relaxing. The atmosphere is nice, quiet, with alot of dark wood highliting the place. The food is good, but be careful because the price can add up quickly. This will always be a restaurant I go to, with burgers and steaks and spinach dip. The best way to think of this place, is a lower grade of Houstons. It's almost there, but not quite.",review,sAt_1qUHwhcJe3lSMArzeQ,1,0,0 +lleBpckOoHmbQSmO7MWr4A,2012-05-02,Xj6pS87BJ4B91-sFtoJstg,4,"I love their wheat bread, and I love that I can get sprouts and avocado on a sub. + +Four different iced teas (unsugared, sugared, sugared green, and raspberry i think) is nice too. + +The staff at this location always seems like they're having fun, which may not necessarily make the sandwich taste better but makes the overall experience of buying lunch a bit more pleasant. + +Of the locally available chain sub shops (Subway, Blimpie, Port of Subs, Goodcents, Cousins, and I'm probably forgetting some..), Silver Mine is easily my favorite.",review,iq46mlqoLmNQzTR1z8oqUA,0,1,0 +kOwq4cv3aFE4w8iihEWmEw,2011-08-10,Nf6y0Qe6d9DMTPh7X1Xgvw,5,Dr. Koch and his staff are wonderful! I know that I am in great hands and being given the best care possible. They do a great job at working you in to the schedule if you have a last minute pain that needs some extra attention. I would highly reccomend Arizona Chiropractic to anyone!?,review,rbq7lwE58hXlFWNJE03WAA,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-04-24,ZbMf1v4WfNLzTXQlsteVOg,5,"My wife and I found Four Peaks by chance. We got lucky. The food was great, service was great, and all thr beers rocked. My wife's fav was the Heff and the Arizona Peach. We got a beer glass to remember the occasion and plan to swing by on the way out and grab a growler.",review,NcqFZT7ngEDHSJqRgpV8pg,1,0,0 +81lmOzUBOrDE0kxvALxGRA,2010-06-23,xHtr0HgHKKoe4HuQ7Dq7qQ,4,"Ahh what a nice place to let your four legged friend run free! This park is huge, spacious, lots of trees, benches (for the two legged friends) and trash cans. One of the best bark parks in the Valley. Not too many complaints other than the jerks who refuse to pick up after the doggies. People please, they have pooper scoopers, baggies, and trash cans, it couldn't be easier. Oh, and if you have an aggressive dog, maybe take him for a walk outside instead of letting killer on the loose in the park. My Golden is notorious for being over friendly and ran up to a huuuuge bull mastiff (I shall not name names, but it rhymes with bing!) grabbed my golden by the neck and pinned him down till we removed the mastiff off. Anyway, point it... it's a dog friendly park... let's keep it that way. Oh and another reason to keep the kiddies out, I think there's even a sign posted up there. I see kids running up to dogs over petting, grabbing tails, etc... not a good idea. Read the signs parents, it's for your own benefit. So bring your dogs here, they'll have a blast playing, running, smelling this and that, good times.",review,BVx7_5ox_erPCm2Id3Ncmw,0,1,0 +AkOruz5CrCxUmXe1p_WoRg,2010-11-10,h4If295CzxOlGgNajNcfhQ,5,"I have been to Cherryblossom countless times for lunch over the past few years. I have to say the location kinda sucks, but that's because of all the traffic. Are they ever going to finish construction on Camelback?! + +Any way, I decided to get a to go lunch order today. Since it was actually chilly out, I ordered the cha-shu ramen noodles with a couple of their yummy bread rolls & also picked up a slice of their amazing blueberry bread. The rolls were yummy as usual & I ate half of the cha-shu, so good & a big enough portion for me to have it again for lunch tomorrow. + +Service can be slow there sometimes, it's best to go at 11am or after 1pm, to beat the lunch crowd. Other tasty items I have enjoyed here are: cali crunchy roll, double shrimp crunchy roll, grilled chicken salad (w/ginger dressing instead), calamari, edamame & I have tried a couple different pasta dishes which were surprisingly good!",review,33vUIil_GCaT92aUaZhRXA,3,2,0 +Snp5LyDO9NeQiuFPOlkavw,2011-02-14,br18IgS6eK1cUFz22yZXAw,4,"Okay, you know what's cute? A group of wholesome-looking teens dressed in soda counter garb and serving all-American treats to overheated tourists and locals alike.....that's cute! This place has a bit of that ""throw-back"" feel with the soda fountain options that you just don't see very much anymore. I had the Gold Rush, which consisted of orange sherbet, vanilla ice cream, and Sprite all blended into a 50/50 bar-esque sippable yumminess. My son really enjoyed his chocolate shake but wished there was 3 times more of it (teens...can't live with 'em, can't ever fill 'em up!) The establishment was clean and quirky and, frankly, over-staffed for that time of day...but, hey! better than the alternative, which happens all too often in this tourist town! +If you're so inclined, the PHX Big Entertainment Book has a BOGO coupon for any menu item at the Sugar Bowl :)",review,onCVo3jNuKsSk8HcpDE1sQ,0,0,0 +LnNQdWEbcYIbC6rjdFBpqw,2008-03-30,KWB9EDNG24BEJqeweMPWQQ,4,"What a nice surprise! My car was actually washed at a car wash! + +So I drove up , a nice man help me choose which wash to get on the drive up teller like screen. +I drive around the corner and am stopped just before entry to the drive through wash, where a guy sprays my windshield with some pretty potent bug dissolver and pre-soaks the rest of the car and tires as well, I then drive through the tunnel of wash and when I exit, I get hand dried and armour-all jet sprayed on my tires. + +Very Fast and Very Clean! .........Very Impressed! + +Minus one star because they don't do inside, but that's OK I keep it pretty clean!",review,UsULgP4bKA8RMzs8dQzcsA,2,2,2 +P8YUA2bXP-wD3VOzWqKVyw,2012-08-23,P1L2kvhlNoGRQkkluXWeNg,5,"Navajo Food at it's best !!!!!! I loved everything there ! I guess I love ""BLAND"" food . :-) everything was terrific ... + +I ordered the bowl (12 oz) of Mutton Hominy Stew I got it with the Tortilla bread which was AMAZING ! I also ordered a side of Blue Corn Mush to dip into my stew ( which is an awesome combination) ... And I also ordered a Grape Shasta Soda :-D ... My Husband ordered the Vegetable Mutton Stew with fry bread and ordered Strawberry Shasta Soda. He loved everything ! + +Everything was well worth the wait and the food was extra hot and tasted very FRESH !!! I LOVED IT !",review,C92dmVXrzul_R3ydjOeT2A,0,2,0 +oiLe3lqMFaZtsSpRuIUChw,2011-08-07,Ot0gabeYmmHUvlbtFqP_ww,2,"I have been to Las Glorias twice with people from work. Both times I was underwhelmed. The first time I went the service was good. They were great about bringing out chips with salsa and bean dip and refilling drinks. The second time I came the service was horrible. We were there for over 1.5 hours because we had to wait for EVERYTHING and it was not very busy. I was not impressed with the food. They seem to put raw onions in everything, including the cheese enchiladas. I really dislike raw onions and am a pro at finding dishes without them, but you cannot escape them here. The rice and beans were good, but I cannot say much else for a positive about this place. I will not be back!",review,bbOwzXS4WMBSHOSmnWkudw,0,0,0 +24qSrF_XOrvaHDBy-gLIQg,2012-01-22,0mvthYPKb2ZmKhCADiKSmQ,5,Brought a friend from Louisiana here. She says that the crawfish etouffee here is the best she's had outside of Louisiana!,review,9lJAj_2zCvP2jcEiRjF9oA,0,0,0 +NCbHGtOP5yJBJsPPaE3X5g,2011-05-11,6SetJYf9DurnDijaSxzX2A,4,"Had a very nice meal in there on 5/10. Bengan bartha was tasty and the only poor part of the meal were the nan breads, they were not at all fresh. Good prices though and good service and Fullers ESB to boot!!",review,F55sgaqHq2KE1LsixSKxAw,0,0,0 +S-QjTijhGYvEKvDznUTqeg,2011-06-04,Cc78ptiQqofJ8bg_mdWiIQ,1,UPDATE: This location is closed. Boo!,review,5j7qmDZTAetaH0yXFnAFyw,0,0,0 +fESObRt-YtkgeNS_TUBhlw,2011-09-24,jAcgxixaiSa5bqxAk9cy1g,4,"Being a native Californian-I never knew these existed till I drove from Los Angeles to Charlotte, NC in 2005 and realized they are everywhere!!! I kept seeing these bill boards every few miles and finally decided that I had to try one. Fearing it was something like a ""Waffle House"" which I'd had the misfortune to visit once at 3am, I was prepared to turn and walk out if it was disgusting. My first experience was a pleasant surprise and this location is pretty much the same, in fact, every location is the same, which is a good thing when +you are on a road trip and looking for a clean bathroom and somewhere to grab a bite, maybe get some entertainment for the road. + +The front entrance is lined with rocking chairs and this location has water misters out there, which is good because the only place I have been that is hotter than Buckeye is Needles, Ca and i think Needles, Ca is right underneath a hole in the Ozone! + +Anyway, inside they have a little country store with every kind of candy you can imagine and seasonal cute stuff along with books, toys, gifts and such. The bathrooms are usually way cleaner than you'd find at a truck stop, rest stop or gas station and they have a full service restaurant with a ""down home"" menu. + +Best thing is breakfast all day long and they make great breakfast! + +If you are on the road and looking for a clean, pleasant pit stop. This is a great place to spend some time and re-charge for the road.",review,ZcEstCa4fDhNXrkZ8_Gh0Q,1,3,0 +V6BYjHM9SnXscfkln3hCdA,2011-05-04,8t1fPOrywYxw_fWgJo56Sw,5,Wow. Best breakfast I had on my recent trip to Scottsdale. Ordered the eggs benedict with a side of corned beef hash. Waitress sweet talked the cook into making a side order since they typically don't do side dishes. That sweet little angel of a waitress made my day! Best corned beef hash EVER! Have I mentioned how awesome the waitresses were? And damn pretty as well. Double score.,review,PvltIJdE3e0iyrEubJ8Rtw,0,2,0 +lJe-zPM4U572nVI0eAN4Fw,2012-05-06,GwCbwuMj_2s1Ml4gt2PM2Q,5,"The name says it all. This is one hot bagel shop! This could be one of the best bagel shops I've found in Phoenix and I would have never expected to find it way up in North Scottsdale. This bagel shop is delicious. The bagels are large, hot, soft and extremely delicious. This local eatery has a line out the door on weekends and it's for a reason. The breakfast bagel sandwiches are to-die-for. The cheese, egg and bacon combo sandwiched between a hefty bagel makes it worth waking up early on a Sunday morning! I will be visiting again soon for the deli because I hear that it's a must to stop by and experience their lunch.",review,4ozupHULqGyO42s3zNUzOQ,6,8,3 +giZS_d2r7hMyYXCjCpkZTg,2012-01-01,Tta9_ANEswGauqVvFjh97w,5,"A great restaurant staff! They go above and beyond for their customer. +Try the buffet you will not be disappointed. +Bacon is cooked to perfection. Fruit is fresh and the seating is perfect for large groups.",review,WQyk2CwF6Uotflrl4ZEfyg,0,0,0 +BnVJmCTNrO8ZtbC1vkv9Zg,2009-03-09,j_sy22GXfzyTYZHHq5KenA,4,"I really love this place. The girls that work there crack me up and they can get you in and out quicker than anywhere else in the Marketplace. Their prices are decent and their food is great. The orange chicken is some of my favorite. This place is very much like Panda Express but thankfully doesn't have that terrible Panda flavor (eww, panda flavor). Bri sums up this place pretty well.",review,fev0iI-XDrteD4SYRKjiUw,1,1,1 +xY1sPHTA2RGVFlh5tZhs9g,2010-03-15,yCWg0koUiT4A21uX_aYMMA,4,"Stopped by for a beer and a snack. Temp was around 70 so we sat outside. + +My amber ale from Breckenridge was good, and my wife ordered the cheaper of their Pinot Noir's and it was also good. Waiter was friendly and genuine. + +I like their anti pasti menu. You can pick and choose what you want. We tried the 12-hour roasted tomatoes, olives, some almonds, manchego cheese, and sopresseta. It was all good. + +We are eager to go back and eat dinner - the menu looked appetizing.",review,4vSGcZyNfIuKYUP6z9Cbyg,0,0,0 +hWhVP-28LYP3llaMlAJ_JA,2012-06-20,hUXfJpShCgMru3ggO75zMQ,4,"I'm in town for business and the guy at the front desk of the hotel recommended this place and it was a definite winner! + +Drove up, and frankly it's not in the best neighborhood but the guy in the parking lot keeping watch over the cars in the lot with a ""Security"" t shirt on put me at ease. + +Sat down and was welcomed immediately and offered the fresh chips and incredibly hot red and green salsa. Although, I'm kind of a pansy when it comes to hot and spicy. I Just ate the chips plain and they were wonderful. + +Had the Chicken Mole Enchiladas which were undeniably the best I've had. The mole sauce was perfectly made with just the right amount of chocolate. I have the stains all over my shirt to prove it! The beans and rice were nice accompaniments. + +Everyone knows the traditional ""Mexican"" restaurants where you go in and order the # 13 and they're all the same right? Rosita's Place is NOT this type of eatery. The food is authentic as authentic comes and should not be missed.",review,_d7JPhUHOhEYXwBVvifpHQ,0,1,0 +RZS7pdeB3xOyHwYgT7VYGw,2009-09-17,qCLKgVsWaQiSqhfNg9-iuQ,4,"I had the pleasure of going to the grand opening of Total wine and more! +They had penny wine tasting, they card you at the door and you put your penny into the hurricane jug. The place is Disneyland for adults, they have every imaginable wine, liquor, or beer that you would be searching for. +Since I recently went to Sonoma, California in August, I was looking for a few of my fave wines that I liked, but they did not have some of the smaller wineries and plus they are limited releases. I did find one from Ferrari-Carano, Fumé Blanc, for $10.97. Ferrari told me that you can find some of their wines in a grocery stores, but not the Fume Blanc, so they lied. I also purchased a Kokopelli Cab for $13.99 and Kokopelli is local to Arizona made in Wilcox. This place has excellent deals and glad to see this kind of store in San Tan Village Mall.",review,fNfLXX_ce2TQPrdHCqPzZQ,6,7,1 +V6BYjHM9SnXscfkln3hCdA,2011-02-23,CgI-GEs5nh7l76XznJC3Ig,4,Usually stop here for breakfast and mimosas. Agreed the service is not always the greatest but who expects 5star service at a breakfast/lunch cafe. I say have a mimosa and chill out. They also have a fun drink/beer list. Or fresh squeezed OJ that is worth the trip. The food is bought locally and prepared fresh so the wait is worth the quality. I usually do the omelettes... mushroom garlic. I can't refuse that mushroom sauce!! I have had their huge a#$ burgers and a couple of their sandwiches. The Loki and the vegetarian stand out. What ever you try I don't think you will be disappointed.,review,WiYbxN-JFksnFlv4kLhHOg,0,1,0 +znk1y9lL5zbR1s3EpeojZw,2012-03-15,UuEv-7ZUO9KbSqxXrpz9zg,4,The part worth going to this event is definitely the ostrich race event. Imagine men sitting on plumpy ostriches and then falling off. It is hillarious. These brids are actually dangerous so props for them for sitting on them in the first place. The event was highly entertaining and they get participation from the audience. There is a petting zoo portion that has all sorts of animals from an ox to baby goats. You can even feed the animals for a small price. The rest of the festival was pretty usual. Over priced food and lots of crowds. I would recommend going the $10 paid was worth the hilarious entertainment.,review,5gmnzvjYprzK21Q5awYF_Q,0,1,0 +9Ep4sguv3HH_8lWyzSogjw,2011-03-21,mS9SiUCCK2ggA-KxPkpb5A,5,"Found Indulge on a whim, based on their huge ""Gluten-Free Menu"" outside - I was not disappointed when we decided to try it! + +Indulge has a separate gluten-free menu and the server was very knowledgable walking me through their kitchen processes to reassure me. + +I ordered my burger on a gluten-free bun (!!!) the first time I was ever able to do this in a restaurant. That was EXCITING! + +I think Indulge is as good as you make it - you are given a menu to check off ingredients for your burger. They have SOOO many choices, that it's likely that if you don't like your burger, YOU made the wrong choice. + +I had no such problem - I loved my custom burger! It was cooked to the correct temperature, was delicious & best of all, was delivered on a tasty gluten-free bun. + +PLUS, though I was full (it was a LOT of food!) I was able to take a gluten-free cupcake to go - wow, was that ever heaven later! Thanks Indulge!",review,taqNNj59JWgmU_tEfwrd7g,0,1,0 +T2xiF9kMc_WRH0GeKAXC-g,2011-05-02,FxMfn3wBppFkSLmFnCCPEA,4,"We had a good experience there unlike the others. Service was very attentive and the food came in a reasonable amount of time. Husband had the WESTERN BACON CHEESEBURGER and said it was good. I had the TUNA MELT and thought it was very good. The fries were the frozen kind, so they got cold fast. Some restaurants you just can't expect a whole lot. I give them a 4 as the service was good, food was good and we were out of there on $21 with tip.",review,YezFOG7KeGgZBF5HzU7wbA,0,0,0 +MY0_6BAzQCu4sqXqwNEFfg,2011-05-02,hBA4eGWv-sIO_womp_shbQ,5,"Mellow Mushroom - WOW + +As you may tell from recent reviews, I have been on a Pizza crusade. Well, I took a friend to Mellow Mushroom today and the pizza rocked. + +We shared the Thai Die Pizza which had curry chicken and tasted awesome. The crust was think and delicious the pizza burst with taste when I bit into it. I am a traditional pizza guy but this diversion worked. + +Great service and a nice patio to eat topped it off. + +I'll be heading back...soon",review,Lp2G664ePG-JFxwXZQtm8Q,0,1,0 +K845ZDttFfx99zQ-0aE2tA,2009-10-28,I5zmmwLqhQ-_mWVijRNxsQ,3,"Been here 2 times. Had I reviewed after my first visit, I would've given the place 4 stars. The server was nice and attentive and the food and drinks were delicious. Had I reviewed after my second visit, I would've given the place 2 stars. The server was quiet and not as attentive and the food was cold and bland. Since I'm just now getting around to reviewing, I guess I'll give it 3 stars. Really a bummer when you enjoy a place once only to go back and have a no-so-great experience.",review,qFZkU_iO6KjU-_5BptIu9A,0,0,0 +Lnohr9bpCbHNsomazXDg-w,2012-09-04,-ntBhp2eyD5NXDADH13BGA,5,"Pauli from ATL checking in here.... just for a bit of nostalgia... + +I used to live in Phoenix a few years back, and of all the places I miss eating at, this is #1 on my list. I remember how I first heard of the place.... I was over at a friend's house in Scottsdale having a few beers after work, and remember asking him what his favorite Mexican restaurant in Phoenix was. My friend, who had more than just a few beers in him, stared at me all glassy-eyed, got right in my face and said... ""Cheeeeno Banddddeeedo!!"" As I backed up a bit, thinking my friend had too much to drink (he had, for sure), I wondered... hmmm...the Chinese Bandit? What the hell is that place about?!? Or is he just f***ing with me? So, I asked him what kind of food they serve there... And, as he did his best to focus on me, when his eyes hit mine, there was this long pause.... and he had this expression on his face that I can't forget... I wasn't sure if he was having trouble putting it into words or if he was sh***ing in his pants. And then he put his hands together, like a nutjob working a Rubik's cube.... and said, ""They... dooo... things... like.... egg-foooo youngggg burrritos and jaaaade red chicken tacossssss....""..... as he gave me another crazy-ass look (the kind that tells you it's time to say goodnight and get outta there - which I did).... + +So, a few days later, I remembered his drunken explanation of Chino Bandido and thought I would go check the place out.... And from that point on, I was hooked. Egg foo young burritos indeed! And jerk fried rice! And those refried black beans with fire-in-the-bungholio sauce mixed in.... Yep, those will burn you twice... All served in a giant disposable aluminum baking dish... And you got that combo, along with a soda and tip for about $10!!! WOW!! + +At that time, I had never seen anything like it before, and I still miss eating there more than any of my favorite old haunts in Phoenix.... I wish somebody would franchise one out to Atlanta - I would be the first customer in the door on opening day, guaranteed....",review,UKrOgGGcP3Wz2nmZnOwuOQ,0,0,1 +MJ6_uOT55dq5ALphFqMVkw,2009-04-09,Z4IB35kF4-F0bPGWafItkg,2,"After reading a lot of the reviews, my expectations were pretty high. I'm a pretty big burger lover, will even order one in a fancy restaurant if I think it'll be good in that particular place. + +The burger was ""ok,"" a disappointment compared to what I thought I'd be getting. In fact, it tasted EXACTLY like Burger King. It even looked like a Burger King hamburger (which in my opinion is not good at all). The fries were delicious, plentiful and seasoned very nicely. They did their job quite well. + +The interior of the restaurant is fun, light-hearted 50's retro diner for sure. It's a good time to look at the pics on the wall. They put a lot into the look of the place and it shows. Also, the staff was fast and helpful and my order was ready in no time at all (and I was there during lunch rush!). + +So, in all - a good lunch place for cheap and a fun dining experience. But don't drive all the way down here for the burgers if you live far away. They are average at best. Frankly, if you're up for driving and want a good burger, you're better off at FatBurger (Mill ave) or try the burger at Jilly's up in Scottsdale (very good).",review,7uNgGKRiljXLa_HokUrLjg,1,1,1 +z3yFuLVrmH-3RJruPEMYKw,2010-09-04,KLQxhuxdW5pm205LVa2m3A,5,"Off the chainco's! lol + +Today my friends and I pondered what to eat.. a good sandwich was was we decided on but where? Looked right here on yelp and it came up.. most the reviews were good so we went for it. WOW. + +I like to ask for a knock my socks off never been here suggestion and he offered up the cheese steak, with peppers and mushroom. I went for it but was on the fence for my pasta side dish.. he handed me a sample of the tortalini and I was in heaven. + +Service was polite, the place was busy but not crowded, it was clean, and very appealing to look around while waiting for our order. Took about 10 minutes to arrive, not bad. + +I thought the price was fair and i could have went with just a half sandwich as it was very filling. + + +While eating my buddy joked the place was off the chain.. and should rename itself to ""off the chainco's"" lol + +Highly recommended and cant wait to take others here. + + +-Shawn",review,QnIm5uXIvBQ8k4FGVSu3CQ,0,0,0 +UI8iKvzhGn2qZCGIqtQqrQ,2009-12-30,AG7sLwy8lchVkUNgEI_Fmw,2,"This review is based strictly on their burgers. Why? + +I had just downloaded the Yelp mobile app and Harlow's was among the top burger search results for Tempe. + +I know it's a great breakfast/sandwich/diner type place, but had never thought of it as a burger destination, until the Yelp mobile results. So I headed on over. Here's what I found: + +It's not a burger destination. + +They offer 5 or so, starting with a basic burger, then different variations based on toppings... green chile, texas chile, bacon focused, etc. I kept with the basic, plus cheese. For $8 you get the basic burger with fries, and the variations bump it another dollar or two. Drinks are extra. + +The menu said theirs were char grilled, but I think they are steam table cooked - no char or smokey taste on mine. Likewise, I appreciate the regular menu featuring a lot of local product sources, but I'd guess these are from a frozen patty national vendor. It wasn't bad, but it reminded me of many tailgates where we bought the big pack of frozen patties and simply reheated and cooked them on a grill. + +The service was good and fast. The fries were decent, though nothing unique (also from a frozen bag?). The bun was ok, and it came with pickle, onion and lettuce. But it's still unclear if they made them there or used an external source for the patty. + +Bottom line: After tip, I paid $12 for a burger, fires and coke. There was no ""wow moment."" If they produced something unique it might be worth it. As it stands, I'd definitely recommend the place for other things, but not burgers. It's not their forte.",review,p4IrODgI_QmO5M9Q7gdURw,0,1,0 +UHh2br86pxndWXELC6B8Cw,2010-02-28,rnrqpgo7JNMnuyW7nin7QQ,5,"A chain, yes. But par for the course, no. + +First of all, they have an extensive wine list, which includes a rare type of sparkling wine, called Brachetto. In this area, DUI's are more common than a cold, and it's a light and tasty wine, with a low alcohol content. So it's option is great for me. It also goes great with everything they serve, because of it's unique flavor profile. + +Lizzie was our waitress, and offered options and suggestions, which actually saved us quite a bit of money on the whole. Not that, by any stretch of the imagination, is this a place to go when you are not intending a big splurge. This is a place to take it slow and spend slightly over a decent amount. + +The food, however, is absolutely worth it. We tried the Cheddar fondue, which could have used a bit more mustard powder and worstershire sauce, but on the whole was delicious. It was well prepped, and Lizzie explained what she was adding and why the whole time. The veggie selection is a bit mundane, and that's really my only complaint. We ate the ""big night out"" prix fix menu and chose the ""Fusion"" option which had lobster tail, shrimp, brats, ravioli, new york strip, sirloin steak, and a marinated chicken. We cooked it in the Boullion method which is just a flavored broth. Because it's not oil, you do need to add 30 sec to a min to the suggested cook times, but it was a lot lighter than using the oil and we didn't come home smelling like oil. The california salad was incredible. It had mixed greens, sliced roma tomatoes, chopped pecans, and blue cheese crumbles with a rasberry black walnut dressing. It's been a long time since I was able to truly enjoy a salad, and this was amazing. The chocolate we chose was the Smore. It was milk chocolate, marshmallow creme flambeed with grahm cracker bits added after the fire goes out. It's served with 2 types of coated marshmallows, pound cake, a slice of cheese cake, and a bowl of sliced strawberries and bananas. Just enough to fill us up, but we didn't overstuff ourselves. Our dinner was leisurely paced and took us about 2 to 2 1/2 hrs to get through. This is pretty normal for fondue. You do have the option of sitting at the bar and having just a cheese or chocolate, if you are on a time constraint though. +It's located in a great little shopping and dining area that wasn't too crowed last night, but I think that was more due to the weather, than the actual popularity of the place.",review,5sTIqfZr45ZGEjanTXGZCg,0,1,0 +oCA2OZcd_Jo_ggVmUx3WVw,2011-11-16,8hHJ5yKjAMa4Nwvkxu1kTA,4,"ROCK OUT WITH YOUR COCK OUT!!! + +As a big heavy metal and hard rock fan I just had to make sure to hit up Alice Cooperstown on my recent visit to Phoenix. As I walked into this warehouse sized rock & sports mecca I was surely not disappointed. + +This place is huge. There is an outdoor beer garden seating area on the side of the building and when you walk indoors you realize that this place is airplane hanger big. Rock and roll memorabilia is plastered everywhere here with a terriic amount of Alice Cooper posters, gold and platinum records, photos, paintings, guitars, and other stuff representing his Hall of Fame career plastered throughout. Even all the tables are covered in rock photos and images. Along side all of that is a mix of sports memorabilia spread throughout with flat screen tv's and large projection screens everywhere! Yeah, as you can imagine, they play some great rock music here, classic to current. This is the type of place that Hard Rock Cafe wishes it could be. + +The menu here is pretty big with a mix of classic bar food, comfort food, and BBQ. Nice selection of beers on tap and in bottles. We ordered a mixed BBQ platter and it was actually some pretty decent BBQ! Great ribs and tasty brisket. Alas, what caught my eye was The Big Unit. Not just a regular hot dog, but 22 inches of Vienna Beef destruction loaded with chili, onions, jalapenos, sauerkraut, relish, tomatoes, cheese sauce, shredded cheddar, and bacon, along with a bunch of crispy fries. Oh Yeah! This is the dog that Adam Richman devoured on Man vs Food! They ring a big bell whenever this is ordered. I saw a few people give up on it and take half home in a box. Not me. Now I was going to join that fat ass and do some damage here myself! + +Yup, I ate that whole damn thing! Honesty, it was pretty tasty and was not too hard to finish. Just had to pace myself. Drinking a huge cup of diet Coke while doing this was not too smart as my gut felt like it was going to explode! Still, I got the whole thing down my throat bit by bit and swallowed it whole. Heh-heh-heh! I sat there in euphoric bliss of my accomplishment. Boy, did I feel like a fat slob. + +On the way out we had to look around the souvenier area and picked up a few things. Had a great time here and the food was pretty good. Nice waitress and all of them here wear Alice Cooper-like eye makeup while working which adds to the fun. Menu items are fairly priced too. This part of town is empty unless a game is going on and there is a parking garage across the street, along with metered spots on the streets but after 8PM they are free. Lots of available parking. + +MAN vs FOOD AIN'T GOT NOTHING ON ME!!!",review,qhooXf7Uh8NP3mX6YG3Drw,11,10,11 +WNy1uzcmm_UHmTyR--o5IA,2010-07-17,BNiUp5E4Sug_tLLYhH39Hg,4,"I love both locations. It is a rare menu that has so many things I would actually eat without subtractions. I have only been 4 times (and tried something different each time) but I want to keep coming back. I am working my way through a long list of pasties that I want to try. Keep in mind, I dont drink alcohol so I am not eating this stuff just to accompany a Guinness or Strong Bow. I really like it. All of it. + +My only complaint is that the Tempe location does not allow for groups larger than 2. OK, they have a couple of tables for 6 but thats really it. If you dont get there before the dinner rush, you dont get to sit with your group.",review,EmloVy5Bgbnv_VFm_oftKw,0,0,0 +Hgbxen9iKGL4AH6kKgC8YQ,2011-10-29,qJKuI71SPUSXQrAnKQmQFQ,5,"Jason Silberschlag pulls off a pretty amazing thing here in the metro-PHX area. Three shops with their own quirky details, passion and identity. Each tailors specifically to the demographic at hand, which I can totally get behind. The fact that each shop has its own deal going on is awesome - I really dislike chains and the chain feel/look. I hadn't seen Jason in a while at the other shops, the times I'd frequented, and was happy to see him behind the bar when I came here for the first time. + +Just the same way the other Cartel shops have a selection of brewing methods, this one does as well. Pour-over, aeropress, Chemex and traditional espresso (La Marz GS/3). + +As expected from him, our drinks were flawless. He transfers this knowledge and passion to the baristas, which is obvious even when one leaves his establishment to go somewhere else - they stand out in the crowd of many coffee-pullers. The beans, who can complain? Jason made his name with the roasting. + +I got a prepared sandwich here, and my was it tasty. Bread was fresh. Sauce, ingredients and overall creation was good. Big Ben: you stole my tastebuds' heart that morning. + +Casual lounge area (see: couches), outdoor covered seating (see: hallway - shaded and cool!) and plenty of seating inside. As normal, his handiwork shines throughout the shop. Somehow I've never reviewed a Cartel shop before, despite my years of patronage. My latest experience changes that.",review,hVkQbDk61hmIi5iVm3IkZw,1,1,0 +T_Kcz_bkhE9T6YejqFqPxQ,2011-02-15,zbyyQ7Z1Ts52vdePEmVJ4g,5,"I'm happy to say that I've incorporated Guedo's into my weekly routine. The food is excellent and the atmosphere is spot-on. I've read several reviews where people complained about the food being overpriced but I really don't mind paying a little extra when it comes supporting local businesses; especially a staple of the community like Guedo's. If you're looking for a place with awesome food and an owner who cares to learn your name, come to Guedo's.",review,gJl64qD4_DfxXtJv6UeQlg,1,1,0 +eTbtfgUtfewdncgVf2CbWw,2010-11-18,YgT-tUToprw7q_ocMDgJ3w,4,"In my opinion, there is nothing better than a delicious salad chock-full of a combination of fruit, nut and cheese. The Organic Spinach and Cranberry salad with chicken is pretty much the stuff dreams are made of (well, delicious salad dreams at least). The salad is so flavorful that you hardly even need to use the dressing. I could eat this salad every day, but, alas, its quite pricey at nearly $12.00",review,ajEWtu_h76FDdEDxwdTWmg,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2006-11-27,GZ_rT-m462lOR9Wy1pAcyA,5,"Overall I am a big fan of this place... first how can you beat a place that is BYO???!!! You never have to worry about a bad wine list or paying too much because it is your own stuff... I find the food excellent... they menu is not large and changes often... but I have never had anything that I have no liked... the chef is defiantly 5 star and since you bring in your own wine the prices don't seem that bad... but it is not exactly cheap... + +The only down fall of the place is that it is real small and has funky hours... I think it is only open Wednesday to Saturday. I know that they take reservations and I would venture to say that is the only way to actually eat there... This is a nice place for special occasions or a date...",review,llkm_iXQszkN5DZvmqjNqA,0,2,0 +m9_BUX-WkIi62jy3qa3tvg,2009-08-05,1is-TkkED3KANgVKKrj9Rw,4,"What can I say, this place is an Albertsons... + +Definitely not high-end like Whole Foods, but not bottom of the barrel either. It is always clean, bright, and organized. The selection is vast, and since I've seen things behind the scenes, I know they work hard to keep only fresh and undamaged food on the shelves. + + +disclosure: I used to work here",review,2dRFso4q51RFKhxntL9vFA,0,0,0 +OkXpdUozVS3vjSRtCoSIvw,2011-06-01,0Wzdh7QgN888j6weY_Sc_A,5,Pizza has been delicious and fresh every time I've been there. The Chipotle pasta is absolutely the best though.,review,a9BNjvoWpFSL9yQa-eJlLw,0,0,0 +vvMR0jgDoBA-g1XgZy8sEg,2012-08-10,EYSjwj4_gVNgjLwoFfzd0Q,5,I love this place. They are so accommodating and the food is delicious. They made a special meal for my daughter and were happy to do it. Our server was helpful and friendly. I had the roasted beet salad and the ingredients were very fresh and tasty. I can't wait to go back.,review,Z0ZFt2xLqar_t4taR1R2YQ,1,1,0 +ut-kla-EA23nJOij_dcL0Q,2009-05-12,sg-cRsj2ySCemz4HuvgqbQ,3,"Much better than the frozen variety. Sort of better than the quick serve shop in the Fashion Mall in Vegas- from what I remember. This place was just as I was expecting: way crowded at lunch time, over-priced pizza and drinks, and so-so service. + +The pizza I had with wheat crust that included eggplant, roasted red peppers, and goat cheese was pretty tasty. I guess if you consider that I had a second meal out of the pizza, the price wasn't too bad.",review,Q96IRvil6RNgdLmGKuh81A,3,5,2 +O2Fq4v8QW1EeULVvrnrnBQ,2012-03-12,td62enu0kVGyulQ6krjiaA,1,The Management Group at this location need to make a better effort to control the number of people jumping theaters. My experience at this theater was one of the worst that I have ever had. I will never go back to that theater again. I felt that it was nothing but a complete money grab.,review,1isUdyg7SFk3_VHpZwLxpg,0,1,0 +puFrm8eNizztqaWr_e32pQ,2010-02-14,s-qpnhtNefm1_Y4V5uoTLw,4,"After a bad experience at a Thai restaurant, I swore off eating Thai food. I don't like spicy food and I was thoroughly convinced that all Thai food is spicy (even if you tell them you want it mild). + +After talking to a colleague, he told me to try Lemongrass. He spoke so highly of it that I had to give Thai food a another try. So I did and to my dismay, I loved it. I checked Yelp before going and everyone recommended the Thai Basil. That's what I ordered and I loved it. I also got the Thai Iced Tea and that was yummy in my tummy sweetness. + +Lemongrass rocks and I will be back.",review,eA7hkwrrknhxhqs-dOhDYg,1,1,1 +7SO_rX1F6rQEl-5s3wZxgQ,2011-02-11,FsgySMO30fkfB589C2M7iA,5,"i cant review restaurants in phx and leave out LGO. breakfast, coffee ambiance, service, pizza - 5 stars. happy hour 3 stars. Not very many places beat this place out for saturday or sunday morning coffee and or breakfast after a nice wrkout, run, hike or... anything else at home in bed with your better half. must see for my visitors",review,B_leEp0XWSNi5_HQ_BLAAg,0,0,0 +0K634ehk41ZRc4kj3NTAEQ,2012-03-07,nIyLABhs3r7iD1R-2dZAVw,2,"""We wanted to take you out for your last dinner...so we got to thinking 'what place has specials on a Tuesday?'..and I remembered Chompie's has a special..AND A FOOD CHALLENGE."" + +And THAT is how I ended up at Chompie's on a Tuesday. They were featured on TV (I think it's Man Vs. Food, but I'm not sure) bc of this food challenge of theirs. On Tuesdays, they have a special - AYCE Jewish sliders & fries with the purchase of a beverage for $11.95. (Keep in mind, a plate of 3 Jewish sliders + fries is $11.95.) + +I was told the specialties here are sliders. The sliders themselves are a decent size (I'd say maybe it's the same size as the tiny McD's burgers, but taller?). Jewish sliders have potato cakes in them; Western sliders don't; breakfast sliders are something completely different. + +Everything we ordered was ehhhh (befitting of a ""meh, I've experienced better"" rating). Two things that did impress me, however, were: + +1. They place pickles on the table right when you sit down! I'm not a pickle girl myself, but it's a nice gesture. +2. Everyone here is so FRIENDLY (I mean genuinely friendly!!). Idk, I think most Arizonians in general are friendlier than the Californians I encounter on a daily basis hahahhaa. And our waitress went out of her way to split 5 checks for our party of 7...that was pretty cool of her. + +I'm glad I went here for the experience, but I wouldn't come back again. Lesson learned: Don't trust a bunch of post-gym, hungry, non-Yelping boys to pick a dinner spot ;)",review,ANs4YACIYYoyAY6D7Xp4Pw,1,3,1 +PoRYjYUSjmeWM1WLsx_45w,2009-06-22,Nlx4nFo54AI9uPVGd3gm8w,4,"The drive to the top is really fun, and the view is worth it. + +I really enjoyed it here, but there's too much freakin broken glass on any of the trails down near the main shade/view structure that you should realy avoid it if you have your dogs with you and stick to the more wilderness areas. + +30 other reviews = TLDR (i just learned that one, see how I'm applying) so I'd rather be brief and useful than wordy and redundant. + +I did read Chuck R's review, and I have to say, I wish I knew more of the nooks and crannys that you do, but I can tell you that if you want to explore the Western reaches of the park, do so by starting in the center or east, and not to bother with approaching from the West side of the mountain range itself. All you'll find out there is a bunch of paranoid, possesive property owners who didn't stop to think that if they chose to own a home on a ribbon of private land that surrounds public land and restricts the public from getting to their public land, then they'll have to endure a little bit of traffic from said public. Here's a clue for any of those property owners, whether you're on South Mountain, Piestewa, wherever....the guy sneaking around is the one you call the cops on for being a suspicious trespasser, not the guy driving a family suv with 2 dogs in the back, who calls you from the street as he sees you in your driveway so he can ask directions on how to get to the park entrance so he doesn't have to bother you nice people in the residential neighborhood anymore driving around here. ah, duh.",review,n_lAaNGeWgspbbCJc0DqRg,3,3,2 +Oj79-vTnjQk_jLr6oNbT0Q,2010-10-26,0Ywd8qCzJWEkegAgX6oU0Q,5,"I love the always smiling crew and food is delicious. +50cents coffee in the morning outside tables with sun exposure and friendly clientele, all this in the beautiful kierland commons +Good morning America",review,PmL8qk1tFoOUluBdOLPxFA,0,0,0 +lXhrVkDUsSHebKa2Aa0EYg,2011-05-25,nZRVg26CBq8iu5S4m1mJAg,4,"The Camelback Barber Shop has very good service with a hot towel, shoulder massage, straight razor trim and, at least if you ask for Albert, get your hair cut with scissors. All for under $20 (plus tip). My Dad says it is one of the best barber shops that he has used--and they are very nice to us service dogs too! It can be a little hard to find, but it is in the breezeway between the two buildings, walk down through there and you will find it about halfway down.",review,fMU6VEqB-vj4ouIZA_W6HA,0,1,0 +oJpmYvLibGrYPDvcaUeMOw,2008-09-23,5fM9hKq8Rz-t73PAfjWUbQ,4,"I've only been once to the Thai Hut, and it was after the Museum visit, as it's right across the street. Combine two cranky parents and two tired kids and it could have been an unpleasant dinner. But Thai Hut servers were very accomodating, the food was delicious and they were friendly about my kids checking out the fish and stuff... I'd go back again, for sure.",review,zRHQTrKF7eeAOfQxamq6mA,2,2,2 +_tkAI5Q5XQSfgbqJzDKSDQ,2011-06-01,t6gMx6mHPgq-OzdHIaRIRQ,4,Great service got there when they opened and hardly anyone was there. Our server mike was really nice. Tried the margarita chicken and I loved it. Tequila lime sauce was to die for. And the quesadillia was huuuuuge! Its a little pricey but hello your in scottsdale!,review,7rhn21J5rBfmjgUZanogIg,0,1,0 +jbKVbSz51F8IcewsiRQu4A,2012-09-03,PDYzRjjA3SfJK3CxdYIOFQ,4,"NO! The only good dim sum in town, however, yesterday we went and there was a sign on the door that the landlord had shut them down and changed the locks for failure to pay rent.",review,g45j6zxyjTmEy6nhf42o0g,0,0,0 +1_siFXaQbxck3tiKRwnq7Q,2011-05-22,lVpNzYWhyvopVJztVsapVQ,4,"So I finally got a chance to go here for the first time, and YUMMY is the word to describe this joint. My advice get the challah French toast. My Wife got an omelet it was really delicious too. I need to come back and try the Amanda Burrito.",review,LA5SlWyJxM76zN7RbL6I0Q,0,0,0 +lD5Xn79OBBuDf0zyv_3cWw,2012-03-27,wfTzCyVuUbZ9PNFuUsdAXg,4,"Great, challenging course. Well maintained. Friendly staff, marshalls, etc. + +""Club House"" is still a pretty-fied construction trailer, but they now have supplies, clubs, balls etc. available. + +The view alone is worth the round. Unfortunately, porta-potties are only at the practise tees, holes 5 and 13, so it isn't so lady-friendly. + +The bar cart does make its way around, however and you are given bottled water in your cart.",review,8JyI7UXoXW_7XzbXwfpAUA,0,0,0 +wQXqj3GTHsF3AcWB3LTxMQ,2008-11-30,7ehgG9LKT0xSTenQptmLww,3,Honey Bear's is no Joe's BBQ in Gilbert but I actually enjoy it. I usually get the pork sandwich and potato salad and I find myself going here. I like the BBQ sauce and the quality of the meat is good. If I'm in Tempe and want BBQ I usually go here.,review,RknsoxpICgtuuv46uaTpyw,0,0,0 +hfl62LX14YqNpG0g0Tj6_Q,2011-04-18,GaoPGcUDZsKVWyh6F1KCRw,5,"Alas...I've given up the idea of writing a review for a place if it isn't at least 4 stars. Sue me; I'm in the industry. + +Fuego Bistro is by far one of the best places I've been to recently. I was introduced to it this last weekend on a date. Ironically, it's super close to my house yet I've never heard of it. When we were arriving, I was a little curious to see where the hell he was taking me since there aren't any signs really and it's pretty hidden. Once we were inside, though, it was like finding a little treasure. + +The patio is welcoming & even though we didn't have a reservation (aka we couldn't sit outside) we snagged a table close enough to enjoy the beautiful weather. + +We started off with a round of mojitos and even though it's been a few years since they've won best mojito...I can say the Prickly Pear was the best I've had in a while. The Ahi Tostadas followed & they were awesome...the sauce added a kick to it & it was a perfect start to the meal. + +After, we shared the Fuego Pasta with chorizo, chicken, mushrooms, peppers, & a chipotle cream sauce...huge! What I did eat of it was delicious. My favorite (and my date's I'm fairly certain) was the special...an herb crusted Mahi Mahi with a pineapple sauce, home-made cornbread, & chipotle cheddar mashed potatoes. Amazing. Even though the Mahi Mahi might be hard to come by if you visit, the two sides aren't & are so good, I'm droolin' just thinking about it. :) + +Dessert? Try the banana burrito. Heaven on the tongue! + +Kevin was an excellent server which just highlights the night. It's hard to have a great meal without great service but he provided just that. + +If you're in the area...check it out. If you aren't...check it out. I'm pretty sure you won't be disappointed.",review,S6NrF2WuiJXp9BbWEDpcHQ,0,2,0 +vZBYSQtTbY9MaYu5qNuU8Q,2012-03-03,4fMdyzCS7iwYaNhF5YJLcw,4,"Very nice views of Phoenix. + +Not a very challenging hike but very enjoyable. Gets steep at the very top but a couple of hard steps will get you to a nice view",review,KuPscbI0KPxudSMPZIcrCA,0,2,0 +aRkYtXfmEKYG-eTDf_qUsw,2012-08-02,yWIqxHTOfszPjBoy0q4-pw,4,Great stop for a fast breakfast - the hubs had the puffed pancake with fruit on top (I LOVED how much fruit they loaded on it - and I got to eat it all because hubs doesn't like fruit so much). I got the oatmeal and a pastry - so good! The price was reasonable and I loved that it was all fresh and the flea market vibe the decor and seating offered. Free wi-fi is a bonus too!,review,KTMqiNYmGBzenePbCVLa-g,0,1,0 +bjUH-01t834CVg0Yl0CLWQ,2009-07-18,LUPEqsBJ_1Dr3LqPbZe1bA,2,"After hearing a lot about all of the MBFGR's that are around the valley, I finally got a chance to go recently as part of a family gathering (which was a planning fiasco and logistical nightmare, but I digress). This location was, well, let's just say, it wasn't crowded. And it showed in the service, very nice and attentive. They were very patient when our party was supposed to be 8 people, then ballooned to 12 people, then 13. Unfortunately, one of the solutions to accommodate us was to put a couple of square tables 'attached' to our eight person round table. I *hate* this. It's just awkward for at least half the people, and then the people that get stuck at the 'junction'...sucks... + +We ordered some apps, though the only one I tried was the saganaki. It was definitely good and the pita bread that it came with was nice and warm. For a meal, I ordered a gyro pita. Now, I understand that this is a 'full' greek restaurant, and maybe I shouldn't have gone with a gyro, BUT, that's what I was in the mood for, and being a basic greek food, shouldn't be hard to make a good one right? Well, apparently not. I've probably gotten gyros at ten places around town, and this was definitely the worst one I've had. The pita wasn't particularly warm and the meat was kind of tough. The tzatziki was fine, but thought it was a little weird to be on the side. + +The service was good and patient, but the lame decision to combine two different kind of tables (when we suggested moving and pushing several squares together) knocks them down a little bit. Though not as much as the not good gyro. Probably closed to a 2.5, but rounded down to 2.",review,XpejQYZqVcYGX7fYuYHzSw,0,0,0 +1M4oczf2lmkdgbrJ3J7OqA,2010-10-05,BxRUTEdKhHEmbyM7EECH-w,5,"Wow! +Being a Phoenix native, we have enjoyed many a meals at the hands of Chef Gross. But this past weekend I was blown away. + +I was planning a large garden party for my friends bridal shower. The record temperatures left my garden ravaged by the heat and I did not want to have sweltering ladies unable to enjoy themselves. After a small response to attendance, I decided to see what some of my favorite dining spots could offer me. + +I had a small budget but wanted to keep it classy. Christopher's truly rose to the occasion. Alex, was my special event contact and this lady was ""on it"". Emails and phone calls were returned at lightning speed. She presented a delightful menu with plenty of choices (some even for the vegetarians attending) all with in my price range. + +We had a wonderful time. We had a party of 18 in the beautiful private room that fit our festivities perfectly. Sundays can be quiet at The Biltmore Fashion Park so it lend-ed us to a bit of intimacy that was nice. Ben was our go to guy. He was right there for every thing we needed and his helpers were polite and attentive. +As for the food, well, it's Chris, come on! I had the vegetable risotto ans it was cooked to perfection. All of the plates came out of the kitchen quickly and all together but no one ever made us feel rushed. Wine flowed, desserts were gobbled up and the ladies oohed and awed over everything. the staff even offered to take gifts to the car for the bride. + +Thanks for saving me Chef Chris and your team. You were all fabulous and I will be telling all of my friends what a great job you did. The holidays are coming and Ben reminded us that they also do catering! Hmmm, can you say ""Christmas Party""?",review,RWtDRHpLnPBDjDVdKWh6uQ,1,1,1 +L1ymPhPjisiSD6RI1NtnQg,2012-11-14,6TVW7jAeQUfZzahMQzxBxg,5,"The food on its own is very good, probably worthy of a four star rating by itself, especially considering how difficult it is to find even passable Italian food in the West Valley. I bumped Grazie up from four-stars to five-stars because the service is very, very good, ownership is attentive and the atmosphere is very pleasant. As for the pizza in particular: for a NY native, finding decent pizza in Phoenix is close to impossible. Good thin-crust (Italian-style, as opposed to NY- or Chicago-style), like what they have at Grazie, does happen to be a bit easier to execute, and Grazie does it well. Would I have loved to find a great NY- or Chicago-style slice instead? Sure, but good pizza is good pizza nonetheless.",review,R40oaWEavEF4FoBx70oDhw,0,0,0 +uvEnqpFIAGIA-Absj8Sz7A,2011-08-18,kqPEQZStB4NY98dYxlHDrA,3,"The 3rd star is because they have EVERYTHING. And you can't beat the prices. And as far as crowded, budget conscious mega stores, this is definitely on the cleaner side, even with their current renovation project going on. + +The dark side... it IS a very crowded mega store, especially at the later hours. And as crowded as it gets from 9pm-1am, there's usually only 2 checkers, which makes for LONG lines. + +If you can hit this place during a quieter time, earlier mornings or early evenings, then you can get what you need without breaking the bank.",review,9UMZAdORkBx8u9e6wyEggA,0,0,0 +GZNEPuEPqs7JIswUhOttnw,2007-11-02,Ir3ntynddTH_3HYSqgEh7A,4,"I'm giving the trainers 5 stars, the store itself would get 3 so an overall of 4. + +5 stars to the trainers because they truly know their stuff. Our trainer was Holly. Holly was very knowledgeable about dogs in general and has a wonderful way with them. Our pup, and while I'm biased, got the basics in about 2 classes and Holly helped worked with us to make sure she understood completely. + +Now, 3 stars to Petsmart overall because while they have a great selection I've found their staff to be less than helpful at times and generally dumb about the products. The food they sell there is crap as well.",review,m7j9e53ycZxjWYBD7rZVng,1,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2011-05-26,JE4qCKrv0447TJ6JN5wzOw,5,WOW! Carmel sundae was amazing!,review,ADMub7n217L0nKnUm_liUQ,3,0,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-01-13,_8TiBVGCsIptJ9gPy3ZP_A,3,"Me and three girlfriends headed to La Bocca for Happy Hour after reading all the wonderful Yelp reviews. I was really excited on my way there, but left feeling underwhelemd. + +For me, it felt a little big, commercial, the decor was kinda cheesy - think red leather chairs, Pier1 Important wall sconces, even a ""VIP"" looking lounge in red velour. Hardly, original or intimiate enough to be considered an authentic ""wine bar"" in my opinion. If you're a regular at chain restaurants you'll probably think this is a cute place (call me a snob, whatever). Let's talk about the wine list at this ""wine bar"" --- it was okay but they were out of our first two choices of red - not ideal for a wine bar. Then, we ordered our bruchetta for our table of four and were annoyed when it came out cut in halves. Knowing we were sharing the plate, maybe the waitress should have clued us in? We ended up ordering a second board for the table so we could each try the variety. I do have to say, the bruchetta was good. + +We were clearly there for happy hour on a Wednesday night (which I do love goes until 6:30pm) but found it a little rude that the waitress came by six minutes after the mark to ask if we wanted a second round. There was no grace period so we paid full price. We did notice, that our full price glasses of wine were filled to the brim - so maybe 1/2 price = have the wine? + +Don't get me wrong... the place is cute enough, would def seem like a ""fancy date night place"" if I were still in college. I'd go again with girlfriends but won't be racing back with my husband. + +I wish we would have tried more food because that seems to be the key to this place. Ambiance and service are good - not great. Oh, and the music could use some updating. The playlist was... eh... interesting + +Maybe it's my love of Postino or maybe its because I was on Mill Avenue I was instantly judging the place.",review,PNS9z4aFDbfhpIsHCfNvNg,0,0,1 +YEQkTCmphjr6XKPh4m93AQ,2010-09-15,GNSpccxIQExXa_pkkM_e8w,3,I have been to Kyoto about 3-4 times in the past 7 years. I still hasn't changed a bit since the first time I went there when I was fifteen! I always eat at the grills. I love places with the tepanaki (I dont know how to spell it) grills. I have been to many many places like this and Kyoto is just ok. This place needs some serious redecorating. It looks like the place is stuck in the 1970's. The food is good though. Last time our grill cook was really bad and was droping things all over the place but hey everyone has an off day sometimes. I may go here again just because its so close to my home but otherwise I've had better.,review,NWEKM2JBpPCtvGtIsRAgMw,1,1,0 +trG1k-K6Nq4YKcexa1AGOA,2009-12-22,RmvN6q8--gQtXAdC7Eoozw,4,"It's a chain, but eating with my fingers, what's not to like. I'm a wimp in the spicy department so, I don't often eat buffalo hot wings because everyone I'm with orders the ""hot"" ones. I like the sauce options at Wild Wings and the and the wings are meaty. I had the Parmesan Garlic and the Asian Zing. It's also cool that small portions are available so I was able to order 2 versions. I was able to tolerate the Asian Zing, so maybe I'll try the mild or even medium classic versions next time. +My hubby ordered the Jerk Chicken Sandwich and he really liked it. The onion rings were pretty darn good, too. +The only thing negative on this visit was the sucky Berry Lemonade made with Minute Maid Lemonade, I thought for the price it would have been fresh squeezed, but alas I did not read the small type.",review,35_ZCjAbIHr_YyvVipmkLw,0,0,0 +FpnLEpRLtDvcJvmz2N1UdA,2008-08-16,89tDmdrHEF5s7u9dBc6rjg,4,"Three stellar write-ups pushed me over the edge and I decided that it was time to take my self for a much needed pedi. When I arrived, the place was packed, but thankfully they gladly take walk-ins and I had only a brief wait before I was whisked away to my massaging, bubbling chair of goodness. + +I have to echo the other reviewer's comments on cleanliness and down-right bargain for the service provided. Not once did I have that ""eww, you aren't actually going to touch me with that"" reaction. I didn't swoon from toxic vapors as soon as opening the door. And my attendant was super friendly and completely cool with the fact that I had clearly neglected my heals for the last two months (something that was hugely apparent after she started filing away - how mortifying... skin flying everywhere!!!) + +And for those of you that might fear the Elaine experience (Seinfeld reference), fret not. You can actually understand everyone one that works here and shouldn't find yourself sitting and wondering ""what in the hell are they saying about me now?"" + +Take your twenty-bucks (plus a little extra for tip - unless you get flowers you will need thirty) and go get some much deserved pampering. + +Dear Paulene - my toes and heals thank you for the love! -- see pic ; )",review,iwWBF3nKoRMoy1sbkLJwvg,4,3,0 +RBiiGw8c7j-0a8nk35JO3w,2010-12-22,z6y3GRpYDqTznVe-0dn--Q,1,"My husband and I were really, really disappointed with our experience at Coulter Infiniti. We brought our 2006 G37 with barely 34,000 miles (and out of warranty) to have the moon roof looked at. The moon roof wouldn't open or close, but you could hear the motor working. + +After leaving the car there all day we get a call that the car needs a whole new moon roof track - which would cost over $3000. We contacted their corporate office to attempt to get some or all of the cost covered, due to the fact that it's a big repair and the car is barely out of warranty. We were flat out denied. Twice. + +We were dreading the big repair, and decided to bring the car to a different auto shop (which will get a big, fat 5 star review) for a second opinion. Turns out the track just had a BUILD UP OF DIRT AND DEBRIS and needed to be cleaned out. Seriously?!?! Just over $100 later we were on our way! + +I find it VERY hard to believe that Coulter didn't know this was the problem. We are now searching for a new SUV, and will not be choosing Infiniti. How disappointing.",review,lwppVF0Yqkuwt-xaEuugqw,2,2,2 +Trar_9cFAj6wXiXfKfEqZA,2012-10-19,RsPe68HgQ0HkF5wY9mJ4Hg,1,"I have have been going to Bosa off and on since they opened. Have a bad experience and stop for a while. Then I tell myself "" It's right down the street why not "" then disappointment again. + +1. Went in on a Fri at 630AM for their special curler donuts, that they ONLY do on Fri. Sure enough nothing was prepared. Was informed it would take another 30 min to finish the donuts. Noticeable very, very, very irritated I ordered 2 other donuts instead. Was planning on a dozen, but had to settle for what they had. Well staff made sure to charge me a credit card fee due to my purchase being under $ 5.00. When you don't have what you advertise, you might want to waive the .50 fee. Or you will really piss off that customer. Common sense. + +2. Customer service is horrible. See #1. + +3. When I get home I have never received the correct dozen donuts I ordered. I don't understand it ???? I'm perplexed ??? I don't think it's anything personal. I just never get the correct dozen. They close the box, I pay and go home. Surprise. + +The donuts are OK nothing great and not bad they are donuts. They are convenient and close, but I must remember to pass on Bosa Donuts.",review,ExN_cTg4mmbSTcSX2B4aeA,0,2,1 +I6lkxbQq0sSskDlt0jCs9g,2012-12-07,F48k0rnwl5uB9aZ2pKdmsQ,5,"Nobody likes going to the auto body shop..period! + +These guys took a negative situation and absolutely turned it around. They immediately made me feel at home from the moment I approached the front desk; all the way up to the ownership of the shop. It was a professional experience with a family friendly approach. The work they completed on the rear bumper of my car was excellent. I HIGHLY recommend Impact AB for your AB repair needs. + +Tom Butka was a pleasure to work with. Thanks Impact AB for everything!",review,DEG-E8qzmZb9dKafebiEfQ,0,0,0 +0kZ4aYmqf5fzTt9Yvz8Kvw,2012-02-08,uMiXItSUJPOUjQ-kIl8FQA,5,"Good service. Excellent value. I went for the ""All You Can Eat"" deal they have from 2-9 PM and was there for a few hours. I'm not fat or anything, I just felt like finding a good place to study and eat for a bit. The server was pretty attentive and the kitchen staff was pretty fast. I was kind of disappointed that the menu for the all you can eat deal was missing many of my favorites from the regular menu, but there were still quite a few good choices.",review,Mac3De6NAHvrkRY7FwKcxg,0,0,0 +6xDQaprsX-GMl6umXeILPw,2008-04-29,ZuHLD_mgi8Gf_yfEjq2fEg,3,"Must have eaten here a dozen times (used to work next door a few years ago). Nothing to amazing on the menu, the food is good overall but nothing I can remember really stood out. The best thing about the place is the location. + +I have noticed it has gotten considerably busier here as of late, maybe things are improving. + +They do offer Free Wifi which gets them some extra credit. + +*I have just been informed that new management has taken drastic steps to improve the place - I will visit and update this review ASAP",review,90a6z--_CUrl84aCzZyPsg,3,1,0 +tLvaZcQ1BvgSyA8KU2qgxw,2009-11-10,KUvoaiERjw4fqnDuSMzo4w,3,"My sis recommend this place for our weekly dinner. We shared on of the large appetizer platters (hummus, baba ganoush, tabouli and dolmades and two pitas). Very good and perfect for a light dinner. I would have to say the best thing was the fresh lemonade...wow! If you like tart you'll love this. + +I thought overall the service was great. Not only was our waitress extremely attentive but the manager stopped by to make sure we were enjoying our food + +I give The Flaming Kabob 3 stars!",review,UgttlReSB8g9YF3URK8BPw,1,2,1 +M6fjHpkL9IRI-nI0BattRw,2011-10-10,vkXeyfT27SgsnAkNpTW7Gg,5,"This is one of my favorite go-to places in Phoenix, and I feel fortunate to live just a mile away. + +The atmosphere is excellent - low-lighting, wooden floors, modern decor in a vintage-looking house-turned-restaurant. + +The food is even better. I have never ordered anything I didn't love (with the exception of the cheesecake, which isn't made in-house - it was just okay). I crave their tuna salad on a regular basis - it's good both in the tuna salad salad and in the tuna salad sandwich. The grilled cheese is the bomb, and so is the cashew butter banana sandwich. The mac and cheese is superb, as well. Seriously, everything rocks. I highly recommend ordering the mixed greens as your side if you get a sandwich - the dressing is light and citrusy and smacks of homemade excellence. + +Oh, and it won't empty your wallet, either. The prices are excellent for the quality of food you get!",review,kI1MoLcExqwmK7wcT5Vy1w,2,2,0 +QPheu9dnwdlaPwXofP8ijw,2009-03-09,pc6IVFqe9T5fX-7yhWCSBQ,4,"This charming little cafe made my day- the atmosphere is charming, clean, bright and warm....and the wait staff and cook were friendly and welcoming.... but the food? the food was the best part. + +eclectic, delicious AND reasonably priced. + +I got an eggplant panini--called espaniclata or something- which came with a side salad. The quesadilla I split with my coworker was surprising and sweet- good for a snack or dessert. I wasn't a big fan of the chai (I stole a sip from a friend)---it was Indian, just not what I am used to- not as sweet +Anyways, I went on Friday for lunch, and liked it so much I had to go back Sunday. Again, fantastic. I think I found a new love.",review,vggE8kitLHHhWeM7ZPdzpg,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2006-01-25,vuCa1VxgnyC3KP_oQ3jk5w,5,"I hate to admit it (because I usually avoid ultra trendy places like an ex boyfriend) but I love Postino. It used to be an old post office, thus the name. It is now a wine bar that serves ""light fare."" There are not too many places with this kind of atmosphere in the Valley -- very California. One of the walls is a giant garage door that they roll up so the whole place is open. Little couches and coffee tables are mixed in with tables and high tops for a variety of seating choices. The bathrooms are lovely, clean, and lit by candles. The salads are my favorite in Phoenix and the bruschetta is out of this world. Come early, get your table and enjoy!",review,e4TQFVfepzHf--hnBsjntg,1,1,0 +1sNa5oW9ZYX8MbMFkx9LzQ,2012-11-03,ljl417Wggbrh4M2ImQOHTw,5,"I'm usually not a big buffet fan, but this place changed my mind! It's very clean, good service, lots and lots of amazing dishes, AND really good sushi! Weekend lunch was $14.99, but during the week it's $11.99. Well worth every penny. One more comment, this isn't the kind of buffet where ""shifty people"" go. The kind where you need to Purell your hands and arms when you get back to the table : )",review,_4GKfTktcFobMsJwQ6YxHQ,0,0,0 +0Gu2cpJ5x9ZZfDDHohBY_A,2012-08-18,cA7DFsKSgT6z3GtHA8bShA,5,"This review is directly for Joe that works at this specific location. From the first time I entered the store with my boyfriend, I can't explain how much of a help Joe has been. Not only is he knowledgeable about every product in the store, his warm character makes it an absolute pleasure to shop there. If it were up to me.... Joe would be a regional manager!",review,xKlCLPx09olhZsogLU-wJQ,1,0,0 +JBCBlVaHfZUZrq-lQfryDA,2012-09-10,EhnAIAz-fEuFCkne3ADfsw,4,I never tire of a deliciously hot bowl of Pho from this place. This service is efficient and the food tastes so very fresh. The veggie pho is my favorite along with the soft appetizer spring rolls. My son usually gets the beef pho or one of the fried rice dishes and we have never been disappointed. Good lunch crowd every single day of the week. Yummy.,review,mDS8rlDOcgRT3PMHGz3tug,0,0,0 +kq7esIwZpYXLKPJhHMIZgg,2011-11-29,oNwDrHblUgBYY8KcB9FiJg,3,"The selection at this store is fantastic! But I've come to expect the worst from the sales staff, the only hello you get are from the girls standing at the counter when you walk in and even that seems forced. When I actually need help I feel as though I don't want to disrupt the employees in the middle of their very intense conversations. I've learned to do my own research on what ever it is I'm looking for before I go into this particular store.",review,m5KX9g1npFPfn72Y3dzGEQ,0,0,0 +gc5gNHC8VJQ8px7bJJRiQA,2012-10-24,obzCOJ40VrzwumqRZisXvA,4,Don't miss the carne asada! I love the carne asada mini quesadillas.,review,ma-7afsMYNnQkIGxRwPxdg,0,0,0 +tAmevVP8B7PiWxcJ0PlYVA,2012-03-15,FIjJC9GlS8B6gbwn64YNtA,5,"I am not religious, but I will be the first person to admit I thank God for this place--and the neighboring Windsor. Seriously... a latte, ice cream on a waffle cone and a cocktail all within feet of each other. Dear Lord, I have reached bliss. I can die happy now. + +Some people gripe that the flavors are not strong enough. +I prefer to gripe that they aren't open 24/7 because this is my bliss and damn it... I need it at all hours. + +Always friendly. +Always clean. +Always awesome. + +Yes, there is heaven.",review,T5mD6ggC7fh48QgXR0LevA,2,0,0 +mWjlJ0Mvde4nBvM9nXlU-w,2008-07-27,YpGJGJEZ2-O91z-SgSnsdA,5,"""One, two Feddys coming for you!"" ""Three, four better lock your door!"" ""Five, six pick up a crucifix!"" ""Seven, eight better stay up late!"" ""Nine, ten if Freddy Kruger went to Lush he'd have had great skin!"" + +Dude, this place is AMAZING! All of their products are all natural, freshly made without preservatives, and are just incredible. My best friend and went here after a four martini lunch plus shopping, and we had a had treatment done with their Ocean Salt Cleaner and exfoliator. It is made with sea salt and smells just like a margarita! his was followed by using their dream cream, and now I am hooked! And it's not just the martinis! I have very sensitive skin, and I have never had a reaction. They also have a great men's line as well. I have been using the Ambrosia Shaving Cream for men as well on my face, and I have no razor burn. It is like a light cream that moisturizes while I shave. Wow! I have never felt good after a shave! + +Anyway, I could gush all day about this place, but the bottom line is it has incredible products that are all natural, and many are vegan, the staff is amazingly helpful and not at all phony, and even though it may seem expensive the products last for a long time, so the cost is really not that high. Get thee to Lush!",review,d8geeKYzPeGp8uSP8C6PTw,4,3,4 +I941jBn1KURuN-2wygJ_5A,2011-07-09,75e8OBS3l9MuNcMR7klrzw,2,"I went here for a business conference. Granted, I just came back from a REALLY nice place in NYC, but I still expected something amazing since it was called the GRAND RESORT. I must agree with fellow yelpers that it seemed a bit outdated. I did not like the rooms. There was a baby sink and mirror area. A bazaar bar in the living room that just didn't seem to fit. The beds were mediocre. I did enjoy the kid free pool! I found it very hard to find my way around this damn place! I got lost several times :) I did appreciate their concierge service - very helpful. I needed a sewing kit to fix a button that came off - $7 later, I had one small thing of thread, baby scissors and a needle. Drinks and food were sky high. We ended up walking down to a little mexican food restaurant nearby. I don't think I would go back...",review,U79smK_l4yT2lLXUPVa3TA,0,0,0 +3r5V8n1sabGkueQFsqoC6Q,2012-07-10,XN4C9E4Gj79bhbWwLshc_w,4,standard Target.,review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +oYLfNKc6Q_XKG9ixiMiumQ,2010-02-06,jGZOasdgtQ3dtuKtgpTKuA,5,"I did not expect such a great find in a such a nondescript location. I went there looking for a very odd beer. Not only did they have it, they had tons of it. The guy behind the counter was helpful as soon as I walked in, and showed me exactly what I needed. + +They know what they sell very well, and can give excellent recommendations on whatever you might be looking for. It was great to talk shop with someone who obviously knew his stuff.",review,nUGV1dVjO84ZI3nplRbwFQ,1,0,0 +JRzrqJmsQ5AZ4bMQLUfyHg,2009-01-31,lu5L6oQVRoCFqdqc6LX7Mg,5,"I crave breakfast food all the time, but I want something more than an Ihop or Dennys. Not only is Crackers & Co way better than a mainstream breakfast place, it's actually cheaper too! + +I ordered the breakfast burrito without meat and it was amazing. It had just the right amount of spice and the portions were way bigger than I imagined. Their country potatoes are awesome and have nice, brown, crunchy edges. I went with a group of 5 people who all ordered different breakfast items and not a single person was disappointed with their food. + +This place was not only really cute but also great for the price and taste. Plus, they serve breakfast all day on Fridays, Saturdays, and Sundays. +I can't wait to go back.",review,z2aIK__6KMpQBx1czvv8BA,1,3,0 +nvaAUTTl7oqiJDhuimNG6A,2012-02-08,zVEfrp_uFWdcVLjOjpnjDw,3,Food is good. Coffee is too week and tastes like a lot of water added to it. They charge you if they add a shot to make it taste like regular coffee.,review,fRuflKntKfMY62EyScXLhw,0,0,0 +t4aP7ksa716XY6S4EsWFqw,2011-05-04,Dep1_xpMUYkoTXR8FB4dXg,5,"Nearly 3 years after a Waikiki vacation, my longing for a Puka dog has been satisfied. Maui Dog is not exactly the same, nor should it be, but it has the same awesome concept, plus more! I've been here twice, once had a beef dog, the other a turkey dog. Both with mild garlic mayo & pineapple. These suckers are huge! And messy! And delicious! The dog has good flavor, mixed with the slightly sweet bun, spicy mayo and sweet pineapple...perfect! I think it would have been a better eating experience if my order was not to-go. The mess these things make all wrapped up is not pretty, but that absolutely does not deter from the taste. I can't wait till I have the time to eat-in and try the rest of their tasty-sounding menu!",review,A7B8l4bO15tVkpD-5TD2zQ,0,1,0 +t4pkeGscooStLjy-Js5Byw,2011-01-27,ok8vVPewenffLBxNoD9KkQ,2,"I really wanted to like this place. I'm Greek and my family cooks a lot of Greek food. Their tzatziki sauce was runny and not flavorful. Everything was just real commercialized, nothing tasted right or even close to homemade.",review,yjUhXi-YP4a6G48sK5kEpw,0,0,0 +Nk-3m_BxXvqFq54r10mHlA,2012-07-19,jDnsD-Q4kMRZKnl8Jgx4wA,1,"I will be moving to Phoenix in the Winter and I thought I'd scout out some LFS while I was visiting, which led me to Reef Culture. At first I was positive seeing some nice looking displays and LED use, however this soon changed. + + On closer inspection, lots of the tanks were infested with aiptasia and bubble algae, and prices of coral were hugely inflated compared to other prices in the area and back home. The people were very unprofessional and unfriendly and first ignored me entirely despite trying to flag someone down. When I did manage to get their attention, I was belittled and treated like a child who knew nothing about the hobby (I have had marine tanks for over a decade ranging from large 55 gallon+ to tiny DIY LED picos). + +After this rude and demeaning experience, I continued to peruse the last few tanks and came across an angler fish. I watched him and he followed me as I walked down the isle as far as his tank would go and I backtracked a couple steps, amused that he was slowly walking along the tank with me. There was a loud crack as the man behind the counter slammed the phone down, snapped his fingers at me, and told me to ""stop harassing the fish."" Keep in mind, I was not tapping on glass or prodding anything as I am quite short and I could barely reach to the high up tank where the angler fish was, much less reach to ""harass"" any fish. After this rude treatment I promptly left. This kind of unprofessional treatment of the customers is shocking and unacceptable, not to mention the bubble algae infested tanks (one spore of that on the water that you get your coral in and your tank is infected too). + +I won't be doing business here when I move.",review,oa4zVQlqjG_3INGOp0HItg,1,3,0 +Ih1TGSZyu2Q8htn2JA4tIA,2012-09-08,3G45nTBR9hBZjga2L8p7ag,1,Very bad food!,review,sBLRl_6gQ5HkUVQpmjE05g,0,1,0 +7Z-1mLIoxCHUxCp54W1CGQ,2010-02-04,BlyKgXSxcrGOCf0oznphdA,4,The pizza's very good! Unusual in that you have to order and pay first but they different combo pizzas are good. My favorite so far is the spicy chicken.,review,LUGSw8o04ghJe_-4-X5fbA,0,0,0 +euSK0uPFinytVDR_UROMTA,2012-09-21,yrpSLgjUZstd_GKf_N0beg,5,"I love this place. I'm mostly here at dinner time to pick up my favorite roasted turkey artichoke panini and sometimes salad and soup as well! The staff is super friendly and recognize when my boyfriend and I show up, maybe because he can never leave without getting a dozen of their amazing cookies! The manager Kaylee is fabulous, she makes us feel right at home and is never unsatisfactory. They may have a smaller parking lot but I guess I have always had good luck with finding a spot! I know I will continue to come back for more.",review,tvYEFLAA5n0AaTAnPrCftA,0,0,0 +l-Xv5Kmg2gilJI3-DGVCqw,2012-06-18,P5dOTCCzbAgZeTzDcIdVAg,5,"i dont know why i didn't fall in love with pita jungle sooner. + +i work right next to the mall so the food court is super convenient for us. let me tell you a story of how i ate here everyday for lunch for a week. + +i ordered a standard gyro with no pickles (they put pickles on their gyros and i find that disgusting) +my coworker, jen, ordered the pasta salad with chicken on top. + +mine was delicious and i tasted hers. hers was so good! i was like, that's what i'm ordering tomorrow. + +the next day we went again and i ordered the chicken pasta. while waiting for the food to come out someone in front of me picked up their order of a hummus trio with chicken on top and a side of pita. + +the next day jen asked where i wanted to go to lunch. i said pita jungle and i got my hummus trio. + +and the trend continued. their food is so good!!!! and its like $8!! and since i work nearby i get a discount! + +today i had a side of chicken breast with super fresh mushrooms. i watched them steam them, then put them in a pan with w tons of garlic, red wine, and seasoning. some of the best mushrooms i've ever had and it was a HUGE order of mushrooms. + + +i love this place!",review,hFtlFksrcLaWHGPNa6SmeA,12,10,7 +d3MxUXS1b6U2P_gGuCO1-A,2011-09-09,J8-ZDnjuafLMMDkALnnE6A,3,"Love the DJ here! Good music & vibe. The servers are excellent! I love the decor and the lighting of the restaurant. However, food was... presentable but taste wise nothing special. + +Love their twist with cucumber water instead of lemon water! Two thumbs up for this!",review,IXpLR3rC4TKeYyvQTHlLjA,0,0,0 +bF7KQ6AQK5rBS7aOFKtlWg,2009-12-31,WOLZSOYprSeS7CBMznKxng,4,This place is so good. I love the big sandwhiches and the soups are so delicious. The only complaint I have is that I went twice and I unfortunately got hair and a fingernail clipping in my soup in two different times I went.,review,ws6BQnim4x2dqDeW5qyD3Q,0,0,0 +YEQkTCmphjr6XKPh4m93AQ,2012-06-23,CKNCzJsi0UIKjEZn3zd-6A,4,"Great find! The boyfriend and I were aiming to check out Geisha A Go Go's happy hour but no seats and loud music drew us to find a more intimate spot. Kyoto hit the spot! The sushi was great at a reasonable price off the regular menu. The staff was friendly and laid back yet still attentive which was refreshing. I loved all the rolls we tried: (in order of favorites) caterpillar, Philadelphia, Salmon volcano (warning it is salt that they light on fire), tuna maki, and another I can't remember. Although the boyfriend is still partial to Roka Akor, I think this is my new favorite location! I definitely cannot wait to come back and please open a location in Glendale!",review,nYfpquFWxQC342RenTI3rA,0,1,0 +v_aTapvcfKRL6O5au6Ru5Q,2008-07-13,ImZMYorfcOTJirQHQcN9Aw,5,"MEOW! This place is great - super clean, loaded with an amazing assortment of natural foods for both pooches and kitties, and two fridges jammed full with raw diet selections! My four-footed kids were in heaven going through the bags! + +Not wanting to offend anyone in my bunch (it's impossible to travel anywhere with three dogs and two cats, while simultaneously maintaining any level of decorum), I went solo this weekend to support the latest AzRESCUE effort being sponsored by the store. In addition to them sending me home with a complimentary Yoghund for each of the kids, I got some great insight to private training that my youngest is in desperate need of if he ever hopes to be socially acceptable, and some great toys for the felines. The staff was unbelievably nice, they have some truly unique items, and the prices range from ""wow that's pretty cheap"" to OMG do I dare?!!! + +This is a great option to the chains and big box stores, so grab your leash, wag that tail, and pad your way on down to the Noble Beast!!!",review,iwWBF3nKoRMoy1sbkLJwvg,5,4,3 +BM0-dgPJMBMmcmO9PVCJfQ,2008-12-21,PNzO2GTKhnBn1FiO5A6J4A,2,"Hire a busboy! I had to say it. I had to take these pictures. This is my _third_ visit since my May update with the same result and I can't keep it to myself any longer. The staff neglects the dining room. Period. Dot. Patrons often have to move dirty plates, stacking them up on top of trays at another table, just to sit down. + +My recommendation to the owners is to put up some garbage bins like all other self-busing fast-food places and make _us_ do it if you're not going to. + +I have to wonder what happens to all those half-filled salsa squirt bottles left on the tables unrefrigerated for so long. Do they top off and return them to service, or are they emptied and washed before refilling? + +It is my sincere hope that very soon I will be able to update this review again and say that things are back to normal. Until then, I have to advise driving a bit further south to Mi Patio, or north to Sylvia's La Canasta.",review,hDlSSyDreM9xY4yQWPm54w,3,3,0 +rZbHg4ACfN3iShdsT47WKQ,2012-05-01,xRYmB5vWMo7s7-Qc8vXAPg,4,"Oh my mouth-watering BBQ goodness. Ignore the sketchy neighborhood and 30 minute wait, because the meal is worth it! +My boyfriend's favorite food is BBQ-anything so I left the ordering up to him (and the choice was easy): Whole Hog Heaven - 4 meat choices plus 3 sides. Settling on St. Louis and Baby Back Ribs, BBQ Chicken, and Brisket, with sides of mac & cheese, coleslaw, and beans - he was as giddy as a kid on Christmas. I was pretty hungry too - and I had to admit the smell of BBQ wafting through the back kitchen door had my taste buds excited. The meal did not disappoint to say the least. The ribs were literally falling off the bone, the chicken was cooked perfectly, and the brisket was melt-in-your-mouth tender. All 3 sides were the perfect addition, however I do have to say that the coleslaw was my favorite, especially paired with the brisket. +What sent us over the edge of BBQ heaven were the extra special additions before and after the meal. To start us off - homemade, warm cornbread with whipped butter. To finish us off - complimentary mini donuts (yes, you heard me right). +Erg I would give 5 stars, but there was a hoard of drunken girls taking over the bathroom (there is a club attached to the restaurant?) that I found fairly annoying. Oh well. +Highly recommended and we will be going back!",review,pEEEoOUp4OKZS41oIkRyxQ,0,1,0 +r3FHkf6lbmMUh3oPSrlIvw,2011-08-16,S3gUawCKKr0i-vPj43ChuQ,2,"Found hair in my burger. While that is not completely horrible, I was put off by another thing I saw in the restaurant. They had red buckets of Sanitizer sitting on the food preparation counter. While I like to see a clean restaurant, I don't think keeping a bucket full of cleaners within a couple inches of the food preparation area is wise. Also the staff was spraying window cleaner on fixtures they were removed for cleaning. This again is a nice thing to see, but not when the overspray was going straight into the food. + +Maybe a one time bad experience, but it just looked like some serious lack of supervision of the staff.",review,3Lj4_96xu38YZHlS7k5xNQ,0,1,0 +IC8no-tIdDWgkYzb5d-Nvw,2012-06-04,Rf8o9rtxmExVzfS_O6lXDA,4,"What a find during my ongoing Vietnamese food trip - a Vietnamese restaurant which, unlike the others I've been to, is located in a charming converted little home rather than in a run down strip mall. But the food is just as good or better, and with run-down-strip-mall-eatery prices. Their banh xeo (crispy rice crepes stuffed with beansprouts and shrimp) is awesome, and the generous seafood soup with white asparagus is something I'd order even on a hot day. One of my favorite Vietnamese dishes is rice vermicelli with shrimp and pork or beef, and while their version is not as bold in flavor as Dong A's, it is definitely quite tasty. The courteous service complements the brevity of the wait between placing your order and receiving your food.",review,m7vtKWpZ9wdEQ95wJxrMrg,6,7,4 +tqp42quHT1S_tgXQRXBx5w,2011-02-25,towZn_ivLDIccp4Ej21YlA,4,"I've been eagerly awaiting the opening of this place, since it's on the way home from work. + +I finally got the chance to stop by yesterday. They've been open about a week now. They are located on the north west corner of Guadalupe & McClintock, between the pet food store and Panda Express. + +Super cute place, has a roll up/fold up door so the whole front of the building can be open, right onto their little patio. You can sit inside or outside! + +Tons of different flavors! I tried the Peanut Butter & Jelly & a mint/chocolate one. Both were very tasty. I ended up going with their chocolate yogurt with some peanut butter sauce, a Giradelli chocolate sauce and peanut butter cups. SO GOOD. A decent sized cup cost about $3.30. + +The girl who rang me up was super nice, and offered me up little sample cups. + +The only suggestion I have is to label the toppings. Yes, most all of them are self-explantory, but a lot of those candy bars look the same all chopped up! + +I will be back for sure!",review,fGi3Kg1FRFurq_2JBfw_Gw,1,2,1 +LaRo1F0bOEZo4p11bfkshA,2011-02-21,h_oEhJF4Rx-ugn_DyecF-w,2,Not impressed. I'd rather have a Big Mac and fries at McDonald's. Can't understand why some rave about it.,review,yqgUYpLefDUUacbZWmnGpA,0,0,0 +VprXrZ01I5RxhJIyBl3YmQ,2008-07-10,LNv5ydDujcmF3Hlk6AvIJw,5,"I really Love this place! +I stopped in for lunch and tried a couple new things. + +The Ravioli di Zucca Appetizer (see pics) which is: +roasted butternut squash ravioli with parmesan, brown butter, +sage and crumbled amaretti...OMG it was just delicious but a perfect appetizer to share , it's available in two sizes I got the small one. +The sweetness from the crumbled amaretti is a very nice touch. + +I ordered the Healthy Fish again (see pics) and once again it was perfect! + +My guest ordered the Penne Salsiccia (see pics) which had Italian sausage, caramelized onions and pecorino cheese! The sausage was really good and for just $5 you can't beat that!",review,UsULgP4bKA8RMzs8dQzcsA,5,4,3 +2MM1zXQotfBkW4YRMPY-ZA,2010-04-25,X8sOlD8trk6LeOCIJcMwgw,1,"I dont understand how a second restaurant was opened on Tatum . My husband and gave these place too many chances and wach time the food was not impressive. The margaritas come from a stolen recipe from La Pinata Nueva , but too bad they didnt bring the recipes with them. I hope they get it "" that maybe if you put alittle quality in the food people will come back"".",review,u1fxUYcCZsiazNmczJh0hQ,0,1,0 +Cp6JGY5YIRncTV_My9nf9g,2012-04-18,uFt5bFpWpYFY9LZzRrZ97w,3,"This place was good, just not as good as I had hoped based on the reviews. I would have given the place 3 1/2. Since I can't, I decided to balance out another reviewer who gave the place 4 stars but also thought it deserved 3 1/2. + +Positive notes: Hot sauce had some bite to it, chips were good, Camarones culichi had a wonderful sauce. Lots of fresh limes served with the meal. Full bar. + +Not-so-positive notes: Shrimp in the Camarones culichi was overcooked (cardinal sin for a seafood place). The shrimp coctail was just ok - good sized boiled shrimp, but not too much flavor. + +If driving by and hungry I would stop in again, but not if I have to drive too far out of the way.",review,EGlqOFCbnrAEIvd86BS2_A,0,0,0 +qB-qsaSnhbHCt18_AN4Quw,2012-01-16,axyzXt5JJNXi9BCQlosC5g,5,"Lee's is the best privately owned ice cream parlor in Scottsdale! Located in Old Town Scottsdale in the heart of some prime dining locations, Lee's is a great night cap in the form of ice cream, a superb place to bring a date or all in all just a wonderful atmosphere to enjoy some ice cream con alcohol. + +Let's start with the aesthetics; Lee's offers a very clean, small, cozy environment. A few table and chair sets dot the inside and a couple more to match on the outside. Lee has some awesome glass vases on the wall that add a modern touch. She has a few large clocks with different time zones so you know what time it is on the east coast while you eat? I dunno the clocks were kind of a head scratcher. + +The Service is spectacular! Lee is the only help I've ever received there, so I am not sure if she works alone or has help. She is always timely and prompt to greet and serve you and automatically starts you off with TWO samples of which ever flavors you would like. All the young ones like myself be prepared to show ID, although you would have to eat a lot of ice cream to get loaded, Lee doesn't skimp on the booze either. Lee is usually a bit on the quiet side so you gotta listen up and be as patient with her as she is with you. The lady is running the joint by herself! + +The Product is what makes Lee's so good! Her ice cream flavors are inventive and wonderful. There is usually new options as well a few solid customer favorites too choose from. As pre-mentioned Lee does pack a fair amount of liquor in her ice cream so some of the flavors have a stronger alcohol flavor than others. The Jack Daniel's chocolate swirl is my personal favorite and has the perfect amount of bourbon to chocolate ratio to make a unique, delectable treat. Lee does offer non-alcoholic flavors (at a discounted price, too!) for those opt to take there alcohol and ice cream separate. The cookie dough flavor may be the best ice cream I have tried with or without booze.",review,T4SQzeJ_Xd22ynw_Kru7xQ,0,0,0 +ObYf1kZVWfL8NocxUwGJKg,2007-10-31,L55Iw7v_0QaeLcr0v1Du8Q,5,"Juan Jaime's is where the simple taste of Mexico are served with delectable results. The kitchen produces vibrant fiesta flavors that left me wanting more. The simple menu offers approachable, exciting, delicious food that satisfies any appetite. The Margarita's flavor should be praised. And the staff is top notch. This is just what Chandler needed. If you go ask for the Grilled Mahi Mahi. You'll thank me later. I can't wait to go back.",review,envV6gVZ5UlNmkSrYhEFog,2,1,0 +SDwYQ6eSu1htn8vHWv128g,2008-11-24,QmxxmJTsBTF8sH_Y1kAIgA,4,"Have you ever been to Postino for lunch? I think of it as an after work spot, but the lunch is really good. It's peaceful and pretty at Postino at lunchtime, the bruschetta is just as tasty during the day as it is in the evening, and the panini are good, too.",review,YhAxmxx9_-K5TPlIaacQQA,3,4,3 +xl22YMFWovBrvf4I0Cod2A,2008-10-20,7X9LXx1pBTKOD8zXJa4_hg,5,"Coffee talk is a nice surprise nestled in the hum drum downtown of Mesa. I have been enjoying their coffee and live talent since I was fifteen. When I was in High School it was a ritual to hit the local dollar movie and then end the night with some coffee at coffee talk. I think the best part was hitting on boys and trying to pass as being at least eighteen years old. My reasons for going to Coffee Talk have changed over the past decade, but the atmosphere and quality drinks and pastries have not changed. There is nothing better than sitting on their back patio and enjoying the cool breeze of the fall. There is something about that place that brings me a sense of relaxation. If you enjoy artistic ambiance, coffee, and live performance's then I would recommend Coffee Talk.",review,XbR2Fx-waSWhLNPE5TK8Dg,0,1,0 +xrs15F6cWdIXdLHyCUDjBg,2012-07-22,vSlBvgb3e7HujjhXdlVdpg,3,"My husband and I both rate this a 3. Food was good, but not great. Fresh veggies and nice flavors. Dont know if bread is made in house. The bread on my sandwich was falling apart, which made it difficult to enjoy. I think the owner or manager was there, and I expected him to be introducing himself or welcoming us in some way, but he seemed to be hard at work. I think as a new business, it would be a good idea to be more welcoming to people who are willing to try something new. Also, there was a girl working there with a really dirty apron and she cussed while we were ordering. Very unprofessional and unsanitary, especially if the owner was there. Also, wish they had a soup without a cream based broth. Maybe we'd try again for b reakfast?",review,GCjitbgKJGcyuEQ4brZptQ,0,0,0 +sZAzeccYUVPjlkrlMooV-g,2009-10-17,rjc0JQQ7GfI_rOLcYDsOWw,3,"i was very disappointed in this place. i had driven far out to get here. i live in gilbert. i got the pinkbet, beef mechado and pork adobo. their portions are very measly. they are overpriced and their food wasnt very good or authentic tasting at all. the only thing i liked was the pork adobo.",review,jk_P-yYspg7uz-8xSCRdGA,0,0,0 +UkbiF2Y3FUDGPK5YdCGgIQ,2010-05-02,kTq7YLSYENe1iFe54im7FA,4,"The shopping center this Rack is located in is absolute poison to my pocketbook. TJ Maxx, Ross and Nordstrom Rack all in a tidy row? Rock on! + +There are great deals to be found here with patient and selective hunting like any other discount retailer, and that these great deals are on brands which Nordstrom's carries makes any awesome deal so very much sweeter. + +Don't go expecting to strike gold at every visit, or expecting Ross prices on Guess shoes, and you will fall in love with the store.",review,W9h1ufjEzDp7THyAqRw65g,1,1,0 +_wSjXbRK5TffUEkwpbD9GQ,2012-11-20,0e2F5HiTwsZpsxl-xeiZUw,1,"Horrible! I had a gel manicure. The tech didn't let my old gel soak off long enough so she scraped, clipped and filed so hard to get it off that it left my natural nail extremely thin and flimsy. The new polish that was put on was thick in some areas and thinner in others. I didn't realize it until I got home. I grabbed my purse and almost broke my naturally long nails because they were so frail. I get the gel manicure because it has a thicker finish and makes my nails firmer. I called and told them about what happened. The gentleman who answered the phone told me that I was wrong and that they would not refund my money. I will never go back and I am sure sorry I ever did in the first place.",review,SW1qky1cct3B_gDcJUIY1Q,0,1,0 +NQhPkGeHiljeg7tXPTHJeA,2011-05-14,3Sfk4NWP0hKyifotM_uO7Q,4,Love Sweet Tomatoes! My favorite is their Won Ton Chicken Happiness salad! Although it can be expensive it is a great alternative for fast food!,review,100Df1wcVrl9rJgB7EG6xw,1,1,1 +ChmqODwuYP1ewjmWXtxtsg,2011-10-29,kqbF62mRA0VEe1a7QPxwfw,2,"After reading many decent reviews and seeing how close the restaurant was to home, I decided to give it a try. + +The young lady at the counter was impatient and had no interpersonal skills. The food was just not good; this place is 'Chinese take-out' at best.",review,JTFAjb21Y5sbOHLyO_tyrQ,2,2,0 +o-OV2LkJxpcCHmI_d4TZiQ,2010-08-03,ge4uEJpcMU1jtjA5ajzvsw,4,"yum yum yum. I love Oregano's Pizza! I've always loved Oregano's... but especially the last time I went. There was a long line outside and the wait for us was 30-45mins, which I thought I was going to dread...but the servers were really nice. We were able to order drinks in the waiting area and they even came by us several times to give out pizza samples.",review,HUIvjNdwRHthxFhLyadb0A,0,0,0 +n4bc44OGI6_IVd1apeifUw,2011-11-01,iT_tWNsbyihzwEYZtPleDQ,4,Hate coffee. But love this environment. Best public wifi I've experienced. Staff are friendly. They even had a 3 star meal for this picky eater. Thorough enjoyed the comfort of my study session here.,review,lAV4kZLB6RWd8GOWaQ3mgg,0,0,0 +Dka36Pw7ibbHV6xIimQAOg,2009-06-04,KRtDSoy6ZReYNFqU1T9KOg,4,"I always find it reassuring when I pull up to a Mexican restaurant that there's a bunch of landscaping trucks parked and the guys are inside eating lunch :) I thought Mixteca did a pretty good job with my carne asada tacos, rice and beans were not a complete afterthought, decent chips and salsa bar. The staff was friendly (they actually SMILED). +I was about to get a little p.o.'d when my taco platter and small Diet Coke was more than nine dollars but rest assured the portions are by no means skimpy. The decor was typical fresh-Mex beach type, I could certainly see myself enjoying a cerveza on the large patio when the sub-100 degree days resume!",review,szbTVEtATfn8f9GxbGGO5w,0,1,0 +Q5ZD7ZAs96NAVblFDV476g,2012-11-02,-cYf_p6uzVmo5hcWrw1oJg,1,"We were excited to check out this new restaurant! We were left extremely underwhelmed. We sat in the bar to watch MNF. It would have been nice to be able to hear the game over the discordant pop rock music at a mexican establishment but I understand that you are not a ""sports bar"". It was Monday night and with the exception of a large group of blue hairs celebrating secretary's day the place was empty. The bar area managed to fill up, because the Cardinals were on tv and it seemed as thought the high tops and patio were busy as well. + +Our bartender Amanda was very polite and eager to up sell us their flavored tequilas and specialty cocktails. You can tell she was a little wet behind the ears but she was doing her best nothing a little training and experience can't fix. The wait time to receive a cocktail was excruciatingly long though being a former bartender I understand the complexity that new bars go though to develop new and unique cocktails. We ordered the pumpkin margarita. I applaud the attempt but personally it tasted like puréed baby food. + +I was feeling very open minded and wanted to experience as much as I could that TQLA had to offer so we ordered the salsa trio and chicken tortilla soup. + +Queso dip: cold +Habanero dip: sweet with a swift kick afterwards: not bad +Guacamole: good: but was gone after 2 bites. I guess they feel if they place the guacamole on a bed of green shredded lettuce it will look like there is more than delivered. Fail + +Chicken tortilla soup: Thick tomato soup with dry dark meat chicken chunks. Maybe it is just me but I prefer a more broth based ck tort soup and juicy white/dark meat chicken. Bleh: Amanda offered to remove it off our bill but I insisted on finishing mine because I was hungry. My GF pushed hers to the side; DNF. + +Meanwhile; whilst experience our starters we managed without any silverware or napkins and at this point Amanda being the only bartender on managed to become flooded with specialty cocktails in the well; thus not being able to properly oversee her patrons at the bar. Needles to say our drinks were empty, our plates, monkey dishes, empty bowl of chips, 2 cups of bland tortilla soup, saucers and wrinkled up black beverage napkins (used in the place of the real ones) were all tattering on the edge of the bar eagerly anticipating a bus boy to remove them. + +Onto the Entrees: + +I ordered the carne Asada steak. My girlfriend tried the habanero chicken platter. They were delivered by TQLA manager ""Joe"". Whom decidedly pulled himself from enjoying the football game to expedite some food. He crept up behind us and shuffled the entree platters in front of our faces after we spread our dirty dishes closer to the edge of the bar and politely stacked them for our ficticious busboy/girl to remove them properly. Now in my history with management; a decent manager would offer to remove the collection of dishes but instead he decided to ask us if we needed anything else since the look on our faces was disgust. Instead we opted to inform Joe that we would enjoy our meal a little better with silverware and napkins. He acknowledged that was a novel concept and proceeded to fetch us a pair. Joe wasn't six steps away before he was interrupted by a member of the waitstaff who informed him that what she needed was more important than delivering two setups to some first time customers so they could enjoy their ever increasingly cold food. At this point my girlfriends temper got the best of her and she jumped up and retrieved her own silverware off of a table in front of Joe and eager waitress to salvage any heat that might have been left in our entrees. + +We dig in: + +Carne Asada: was tender but lacking the Wow factor. + +Habanero Chicken: Tasted like a chicken breast smothered in their warm fire roasted salsa... What happened to the habaneros? Where is the heat...? Bland + +I hope they get better: but until then Nandos all the way. Never saw Joe touch any tables, never offered to help out a bartender who was swimming laps in an Olympic size pool. Occasionally the wait staff would come behind the bar and help out. This is about the time that our appetizers, chips, soups, and entrees were all removed from the bartop. FYI Joe, the hostess stand can hold itself up on its own. You don't have to stand there and hold it up. Keep an eye on your staff and customers and offer help where they need it so people will be happy to come back and give you a second shot.",review,SCFgPrGbxQWglgljsVLNzg,1,5,0 +Zg-C1aYcoR2L5OIrA01MkQ,2009-02-24,Q5tzwCvyTZBn6_5N1Rpy3A,3,"The novelty of this place garners it some brownie points, and you definitely don't come here for the food. + +Yes, scantily clad nurses will serve you your food, cheerfully chat you up, and be agreeable to a photo shoot at the end of your meal. You'll also appreciate the little things Heart Attack Grill does (i.e. conveniently placed mirrors at ass-level behind all the counters for any patron's ogling pleasure), and there's no shortage of little quirks that definitely give the place character (i.e. their refusal to serve any diet sodas). + +The food kinda sucks, though. I'll admit I liked the huge and considerately chilled Coke bottle, but that's about it. The fries were quite...flaccid and stale, the burger didn't seem so fresh or special, and it was relatively pricey for the amount of sustenance you get. Even so, you don't need more than a single bypass burger, unless you're itching to be useless for the next few hours, or if you are a gorilla. + +Yet the clever presentation of what might sound like a practical joke with poor taste makes this place worth visiting with some friends. You'll have fun, and you'll be plenty full by the end of it!",review,DPMUGzrjTwX5uJtrmWCfTA,4,4,4 +dcd3C1gWv-vVdQ9XYV8Ubw,2010-03-24,-Y4RTBiNDcWxQmweVzEN9g,3,"I have only had their pizza once, to go. It was ok but nothing to write home about.;... would try again but will be more skepitcal....",review,bXJ9U9e_zn8K1xKwqTArzw,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2011-03-11,2F_SeDJk1HBkUNd7utIQfQ,5,"Amazing!, I crave see on a daily basis! They are absolutely delicious, it's weird, they are like cupcakes from heaven! Sure 3.50 is a little pricey, but they truly are the best cupcakes I've ever had. Everyone there is always so nice and friendly, my only complaint is I wish they had one closer to my house! Get the red velvet...you won't be sorry. The lemon, cinnamon sugar, and peanut butter chocolate chip are also very good. Yum!!",review,bvYk98zUE61KoWifshskpw,1,1,0 +gpyWGG0U-yqnVKru6y8fNQ,2012-06-03,yJ9tBzPf_5glRDzWvwcliw,5,"I cannot say enough about how much I LOVE We Care Family Wellness Center! I refer everyone I know to them. Dr. Ross, Cheryl, and everyone on staff are truly wonderful. They genuinely care about you as a person and always make you feel like you are the only patient on the planet whenever they are with you. They are never rushed and will take all the time in the world to listen to you and figure out what's going on with you. After having seen more doctors than I care to remember, I feel so blessed that I have found such amazing healthcare providers!",review,IeUtPivGy-S9PX0EFKjqEQ,0,1,0 +HC5ibF-Q5RRtUfPneZFQ6Q,2008-12-08,DLewTOVzdTOnnWyhJd5PCQ,5,I have been going to Elite Nails for two years and they have always been wonderful! People see my nails and always ask where I go. I highly recommend.,review,3J9C11LIMawC46gJsGv1Sg,0,0,0 +HkSyssTd5_QNNeGI0-ltTg,2011-09-17,JwwZHnpfcDcamQcboLYYhA,4,"Pretty good food. Place is funky, weren't many people in there for a Saturday lunch (especially considering the proximity to ASU) but the service was decent and the food was good. Very inexpensive, 2 lunches and drinks for $15. I'll stop by again when I'm out that way.",review,2MPGdIbaaEdKuW9IpPxHfw,0,0,0 +UsRKrw09d5Opu9afPCtVXw,2011-05-23,IUda6Ka9cfh8p8MOe0a0wA,5,"I had such a great experience with Love Carpet Care and Repair. They were friendly and courteous and enthusiastic every time I spoke to them on the phone, and their work was incredible. + +I hired them to clean a carpet in an apartment. The leasing office at the apt complex told me the carpet was in such bad shape they would have to trash it. (Quick aside: I did not live in the apartment, but I was responsible for the damage...) Love Carpet Care did such a good job cleaning the carpet it looked nearly new again. Truly outstanding. + +And, most importantly, the price they quoted me beforehand - when I gave them an honest account of the condition and size - was the final price. Love it! And it was cheap. I was desperate and upset enough that they really could have charged me anything, but they were wonderful. Honest, hardworking, helpful. + +I could never say enough good things about this company.",review,OL-OR_j5QE_7tpo6Yh053g,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2012-05-20,_UPchOt2beVTxwUXq1-WMg,4,"I've seen this place come up on Yelp a lot, especially since it's near where I work, and finally had a chance to take Jon S. out for a sort of going away dinner the other night. I thought to make reservations, which was a good idea because it was very packed on a Friday night. We started with the taste of thai, which is their version of a pupu platter. My favorites were the thai toast and chicken satay. It was a little weird that the fried items were hot, but the pot stickers and siamese kisses were a little warm, but still good. I had the crispy basil chicken (level 3 hot) and Jon had the shrimp stirfry (level 1 hot). When our dishes were brought out, we both loved the flavors, but agreed we needed some more heat, and our server gladly brought out some chili paste for us which did the job. + +It's a very cute restaurant and I'll definitely be back to try some other things on the menu.",review,6OWHDbEq23f24Vki_veHBA,0,3,0 +PEHJjxdw11TGFma9Zhz3ng,2009-01-07,VBP9ceHTaV8yFkUm7s5cLg,4,"So, for more than a year, I drove by this place on my way to work but never checked it out. I wasn't sure what to make of a place with a walk-up takeout window. Last night, I followed a group of friends there for a late dinner. Didn't try any appetizers. I just split a 14' Italian special pizza--sausage, green olives and fresh garlic. The pizza was pretty good, not spectacular but definitely a couple steps above a place like Mamma Mia's whose pizza has a fast-food quality at times. Red Devil is very generous when it comes to toppings, at least on this one. I am an olive lover but haven't had green olives on pizza before. I enjoyed olives in every bite. But if you think olives are just okay, you might have found it a bit much. The pizza was kind of big for two people and with tax, it was about $18. So, I'd say it's fairly priced. + +I have to say that the service, more than the pizza, would draw me back. Servers who think of the little things before you even ask are much appreciated. We had a party of nine and our waiter was super patient. We also brought a birthday cake on the premises, which they allow. Our waiter started clearing all our plates and silverware and before I could ask, he said not to worry, he'd bring us clean plates and forks for the cake. He also saw someone with a camera and asked to take a picture. He just gave off a genuine vibe of being helpful. I would definitely consider it if in the mood for something casual but not carbon-copy fast food.",review,ZrUZtLgLOn15v2NIZl-oKQ,6,4,0 +cBpJIOrVXotDI0XAZH_k0g,2010-01-04,Wqy2lrF4DQmF_S8H2qJb2A,4,"I think ordinarily I would give this place 3 stars, but this review is based on my experience here on New Year's Eve. After attending a Coyotes game, we came over to the Yard House for a late dinner. Not surprisingly, the place was packed but we were able to find a couch to sit on outside during our 1.5 hour wait for a table. Yeah, that's a long time to wait for this place, but like I said it was NYE and we didn't have any later plans, so we didn't mind hanging out. Coincidentally, you can get full bar and menu service on the couches outside and we enjoyed some drinks while happily waiting for a proper table and chairs for dinner. + +The food was OK; nothing really to write home about. My favorite part of the meal was probably dessert - the warm brownie with ice cream was a treat! When we finished our meal, it was about 11:15 p.m. - definitely too late to go somewhere else to countdown to the new year. So, we hung out. Our waitress, Jaime, was very friendly and surprisingly attentive for how busy the restaurant was. She gave us festive top hats, tiaras, and beads to wear to celebrate. We were also provided with champagne for a midnight toast. All of this was free, and there had been no cover charge to get in. I thought that was a really nice touch. At ten minutes to the hour, the music turned off and the volume on the TVs, which had all been switched to the big ball drop in NYC, was turned up. Everybody in the restaurant excitedly awaited the arrival of the new year and when the clock struck 12 there was toasting and cheering. Yeah, this may all sound very mellow, but it was a fun, relatively cheap (given that every other place had a cover charge and/or price fixe menu), safe place to bring in the new year.",review,qFZkU_iO6KjU-_5BptIu9A,0,0,0 +qG3eRlKLXbnWc1unu-0Yjg,2012-11-30,rCQIGlVvL_aTQDlBKS-VVQ,3,"Stacy's is so cute! I pulled up and its a little shack with some limited seating outside. Seems like most people take their food to go, but your more then welcome to eat at their tables if you like. + +When you pull up, you order at the window and they make the food for you while you wait. There were a few of us hanging out in the parking lot at the time, which was kinda fun! I got the BBQ Brisket to go, and it was a okay. I loved the fact that it was smoked, and the BBQ sauce was on the side, so I could put on as much as I'd like. + +Menu's kinda limited but good, and pricing is fair. So, I was checking out their make shift dining area, and I had to laugh because there was a spray painted sign above that said ""man cave."" LOL. + +Place is cute, I recommend carrying out, and parking is kinda tight. Definitely a cute spot, and not a half bad place!",review,JffajLV-Dnn-eGYgdXDxFg,5,5,3 +63oKTPacLDyd9D5XwmAlUA,2011-05-15,dGRk6DQFekFbDd2tNB0AfQ,2,"We were very disappointed with this place. We drove over to Tempe, to a blasted out, deserted shopping center that looked like it closed due to a depression, and there it was in the corner, still open while everything around it was closed. It's a nice little spot inside, comfortable enough. + +This is another one of those places that thrives on the Groupon phenomenon. Prices are jacked up to accommodate a discount. I bought a $6.50 bottle of beer (as one example). My pizza, a sausage pie, came out burned. I know that a good pizza has a ""flame kissed"" look to it, even at top places like Bianco's. But this pie was flame-licked, and there's a difference. I tasted charcoal more than I did sausage. + +The folded and stuffed Calzone was not burned, but neither was it stuffed so full that it's busting its seams which is the way we like it. Lots of air inside this Calzone. I'lll take the dramatically less expensive Calzone at Mama Mia's on Indian School any day over this hot-air filled version. + +The service was good, with a very friendly waitress helping us out. She should have noticed the burnt pie, however. If they reduce the inflated Groupon prices, I'd go back when they bring in some reasonable draft beer and start putting more care into their preparation of the food.",review,1-A_PLT-60EZ9MsfbkV9sw,1,2,1 +kUvJiI7teJ--m5i1ReG58w,2011-09-22,KESqUu5mz96ZqDzjM0_mmw,3,Great to see a Total Wine closer to where I live. Large selection and decent prices. Used the $10 off coupon from the newspaper to buy a nice Napa Cab this afternoon.,review,Kqvfep2mxS10S50FbVDi4Q,2,2,0 +cUaaIk_3UdeSJ54CLvrW8A,2010-05-28,VI0NtsVXkl27FlgrIbe9XQ,5,"Let me start off by saying that there are several Slices restaurants in the Valley. The one on Mill is by far the best. They have the most amazing and original selection of pizza. No matter what you pick, it will be good. If your favorite isn't available when you walk in, no problem! They will make it for you! If you are looking for a slice of heaven, you MUST try the salad pizza. No, its not lettuce on crust! It is simply the most unbelievable creation that includes artichokes, red pepper, and spinach. It is great by itself, but ask for them to put balsamic dressing on top. The balsamic takes it from being amazing to last meal quality :-)",review,PBxgmhVs6eW67xgL5sL85A,0,0,0 +AsX-6ECbV83zGJLUVMre9w,2009-09-03,_H9NL49qkawLAnYUXNnnGw,5,"Very authentic, excellent Thai food and soothing ambience. And they have delivery! My favorites are the Fried Shrimp Rolls, Egg Rolls, Clear Noodle Soup, Pad Thai Chicken, Phad-See-Ew Beef, Papaya Salad, etc.. I love the Sweet Rice with Thai Custard. It tastes exactly like the Filipino custard I grew up with.",review,Tz9vaxf98pQqjVP6z4uSzQ,0,1,0 +H-99nG_KfynWPXh84TKj8A,2009-09-11,-P3SH7R2npSRYaeoMq8ZJQ,2,"The food is fairly good. That's why it's such a shame that the service sucks! Every time I have gone there, they take forever to bring you water, take your order, bring out food, everything - even when you are the only people in the entire place. They are always unfriendly. Out order has been incorrect on a couple occasions. I really wish they had better service. I just won't go there anymore because of that.",review,hw-9I3-vVeiGHQAOo0jWFA,1,1,0 +tZXPhvufHhfejGrRp554Lg,2008-06-24,LXY9EjFKr0qWfmPgI1Qgiw,3,"This place wasn't quite up to scratch for me. + +I had the foie gras sandwich. It was pretty good, but I was still ravenous $10 later, so I top it off with a chocolate croissant ($2.75) which was also good. + +Definitely a cute space with above average dishes. But in the end there just wasn't enough bangs for my bucks.",review,hFG1Lira7tL_PElq6bdAAw,1,4,0 +On_3zLdujQdvDbBYUirNWw,2010-09-11,f7m769p8mVGK8HRKxvelBQ,4,Surprisingly good food and reasonably priced,review,yb1kBNixPOHQc1jNWmgVNQ,0,0,0 +JuBygU4XDjqSeW9okyvbsQ,2011-07-18,pI9Jl20-izVcBRFzKfm3Cg,4,"This is where I get my gourmet cupcake fix! Love the cupcakes, lots of unique, delicious flavors! The edible glitter just speaks to my inner girlie-girl and makes me happy! + +The coffees are great- I calorie splurged and had a Spanish Latte on my last visit. It was the perfect sweet-bitter combination! + +I've only eaten breakfast here, but the menu looks great. + +I love the atmosphere-very industrial meets antique meets country. It can get a little loud, but I blame that on the rude people who don't watch their children and scream into their cell phones more than the business. + +Staff has always been friendly and efficient!",review,GCXvlHhmRepW38gW6053WA,0,0,2 +CEs_oJMtLsll3xBM9slBQQ,2006-09-14,8cF97Xxh2U25wzrwVvWgjQ,4,I second Sarah's review. Try the 49er flapjacks and Ron's Special Southwest Eggs (they come with nearly diaphanous potato pancakes). Don't forget to hit the ATM -- there's a Wells Fargo at 68th and Camelback.,review,9Z05mtXrXJ-22PElwp1ahA,0,0,0 +DUDr1kuGv6eh1_s2GWJVgw,2012-09-26,k0vnMakkga6iv2NJCHKw1Q,5,"Delicious sandwiches!! its so worth the drive i just wish it was closer to home so we could eat there more. My hubby brought me a sandwich home a couple weeks ago and it wasn't the same, it was too soggy so id prefer to eat there. The regular ham with added bacon is the best!!",review,gyT87T0OC8nbrxnhP1KCpg,0,0,0 +EYFZcfsrhdRlxoZVlgMIFw,2012-09-28,V8WAgTIzDweAPaPU9MsjpA,5,"I just purchased a new Sorento here and my experience was amazing. Mike Bergesson was super easy to work with and got me a great deal. I live 50 miles away and there are 4 closer Kia dealerships, but I would do business with Salazar Kia over the others any day. Thanks!",review,f_4u-Vk0NB_qknV3q8bUUA,0,0,1 +rkGPf4cbyUJqHgKZPvaTnw,2010-09-06,-Seq69RSaEX7Iu02laCqjg,4,"I was looking for a comforter for my new bed when I realized that this B,B, and B was close by so I stopped in to look around. This is a nice store, It was organized well and the sales people were nice, not pushy. I did not find a comforter but I did find several other things. They have a nice selection of quality products and those 20% off coupons I get in the mail aren't bad either. Prices can be a little high on some things but with that coupon they are about right. I spent about an hour browsing through the store. They have a great knife section, coffee pots, food processor and all manor of kitchen gadgets too. Just the kinds of things I love to look at. I'm sure I will be back since it's in my ""hood"". Thanks B,B, and B!",review,ZmIgP4U4Ht9CYmNX0_zP6w,1,1,0 +7_XCRrN2C71AHAj53offwA,2010-06-30,s5VzXC1r2qYpP37xa8xZkw,3,"well everyone there is pretty nice i got gel tips from them and i do beat them up pretty bad at work and they are holding up as they should. they were reasonably priced. There is one Asian lady i like a lot i forgot her name though my fault. I also got a pedicure from them as well they did good. + +PROS: +* inexpensive +* good color selection +* nice people +*television available + +CONS: +*Some of my tips are longer than others +*When i got a pedicure the water was so hot it burned me feet and they came out of the water looking like cherry tomatoes +*whenever i seem to give them the tip off my visa they seem almost disappointed since its not cash (i dont carry cash and im not starting anytime soon) +*the language barrier but its no one's fault +*the massaging pedi chairs are made for people taller than me *sigh* + +Since the cons outweigh the pros it gets 3 stars but you are still getting really good service considering how much you pay for it and i will continue to give them my business because the lady who gave me the pedicure was really nice and she did a really good job getting rid of my callouses and didnt torture me too bad (im extremely ticklish).",review,cUudtsHl6XFGyekzjZCUqQ,0,1,0 +-O7H5LhBkE13VQZB0QZI0Q,2008-07-08,qEAHEPexCsFu0b5BLsSiIg,1,"Their alcohol slushies are undrinkable and are sure case of gut rot. As far as the place, its pretty small you'll probably want to leave after 10 minutes.",review,uEG5uD9wMJixGWxaq34IEw,1,2,1 +3fNGtIfuHwt0-DD9SSjO6Q,2011-03-01,4t1PoFnjZqt17irZRSGCew,5,"I have been coming to this place for atleast 5 years. This is a favorite of my friend's whole family. + +This place is so very consistent. They always have the same good things. If you're looking for buffet variety this is not the place. + +Everyone is so very nice. This place has been open for 30 years for good reason. I have never ordered from their menu because their buffet is so good. + +Go and try not to get hooked. + +Enjoy!",review,StYN5bcQ5tpX81JudhcKZw,1,1,0 +WSIr2hliGiJKaYQdODBbDQ,2009-08-26,AUANnGJuuNBDlvoqx1uRyA,5,"i stopped by here on a lunch break because the sign said appraisals by appointment. the owner (?) indra was there and willing to do the appraisal on my engagement ring while i waited (without an appointment ... yay!). he cleaned my ring at no charge, inspected it and provided the retail value at no charge. indra told me a written appraisal for insurance purposes is only $45 ... a bargain compared to what others in the valley are charging. the stock of jewelry was lovely ... a nice mix of new and used pieces. some very unique, one of a kind finds as well. i found a few things i would prefer not to live without! + +they do all their own importing, and buy, sell and trade jewelry. i felt he was very honest about my ring, the cash value he stated was in line with numbers i heard from other jewelers and he was charming and helpful, answering questions and educating me while i ogled over diamonds and pearls. i will return to have my watch batteries replaced, a pair of earrings changed from yellow to white gold, and pretty much anything else i can think of. i trusted him immediately, which, when dealing with diamonds, is of paramount importance to me.",review,GyFmGA5UQZ4pXdx1lUH86g,1,2,1 +hfl62LX14YqNpG0g0Tj6_Q,2010-08-19,ZR6WfRL2CrXewN1Y12HE6Q,5,"Heaven. Fuego is just heaven. This super small, yet charming place is our favorite!! The menu is unique, and delish!! The creamed corn is to die for, I am talking unbelievable!! +Thirsty? Their mojito selection is insane and they have an even better happy hour. +Only negative is, that because of its small size, it fills up fast. reservations are a must!",review,GHHJi9AuaEPCZ8vvtQG3sA,0,0,0 +MAFjNfDWJRgWCw8IOC7mew,2012-12-11,2vxPe652QNAcAcNqdyeKiw,4,"I'm giving this 4 stars for the grande margarita. OMG, it was tasty. It is not cheap at $8.50 but it is soo good. One of the better margs I have had in a long time. It ranks up there in the top 5. + +Wasn't real busy when we went here and I haven't been to this particular location. I decided on the taco plate. My only complaint was that the machaca was a little salty IMO and I like salt. The beans and rice were just ok nothing special.",review,UM6ARMpyqvM2aJ3Wnzwcog,0,0,0 +dC6rDLGRoch_DOZk5kLkWw,2009-11-23,qxeEFyVlNYgID-l97Hj11A,1,"whole foods whole paycheck wholly sh$t i am sorry there prices are rediculous the only reason i went there is because since moving here from a very foody town certain products are nearly impossible to find and they do have them but you will pay, my search today was mushroms not button but chantrel/oyster/ect i was going to get every thing on my list but when i saw shallots at 4.95 a lb i bought my shrooms and split the i hit frys, shallots 2.49 a lb and of course theres always trader joes",review,kJyR4gT1pfCcNjEY9-YMoQ,0,0,0 +c1yGkETheht_1vjda7G5sA,2008-06-29,m-MWYcdOwY_yZJTpQMLh1Q,4,"Creative menu, yummy and affordable vegetarian food! 4/5 + +J and I are not vegetarians but we were up for a new restaurant and adventure on Friday night. We met up with P and R (vegetarian) at Green around 8pm for dinner. The food was amazingly delicious and cheap! We all shared some non-meat 'chicken wings'... it was so GOOD! our food came out tasty too. J's 'chicken' sandwich was great with its yummy BBQ sauce... Would definitely go back again for other dishes.",review,vC-9ROCPBhWuXtMcBNeDiQ,1,2,1 +dJ962_NkSc1bcvnBnFrd_w,2010-11-30,t1mdvpsSIcHu8ZdtLsPicg,5,"I have been going to Mesha's Salon and Spa for the past 5 years and absolutley love it. I see Michelle (the owner) and she comes up with some great new looks for me. +I have gone from short hair, funky styles and colors and long and sexy hair. She is awesome and I love her recommendations. There have been times I have gone in and not knowing what to do... and she always comes up with something that makes me feel fabulous !! +I will never go anywhere else.",review,Mk8MMdquU5S_5EOWVA6k4g,0,0,0 +9ziO3NpoNTKHvIKCBFB_fQ,2008-10-30,WG12ZAP1dSPVHw45TMiukg,3,"This was really 3.5 stars and I'm rounding down to 3 for a few reasons...on which I will now elaborate. + +District could be in any Sheraton, anywhere. In fact, it is strikingly similar to Rum Fire, the trendy restaurant in the Sheraton Waikiki where I stayed for a few days this summer before my family arrived and we stayed moved to the family place. The flooring, the red circular lounge area, the live music on Thursday nights...it was all the same. Heck, even the menu was the same. The difference was that in Waikiki there was a ""Hawaiian"" slant to everything and the live music was much, much better. (And of course the beach front setting). I get the impression that they are trying to market themselves as a ""downtown restaurant"" more than the ""place in the Sheraton""...but to be honest, it is your quintessential trendy hotel restaurant. + +The bartenders were really friendly. The wine list for a ""wine bar"" is incredibly lacking. Nothing interesting, nothing fun. The pricing is on par with what I would expect from a hotel. The space is modern and trendy, something that there isn't that much of in downtown. I love the charm of a historic home, but I also love sleek and modern lines. + +We selected a few small plates, or appetizers, depending on which of their menus you are looking at. The crab cakes were good, if nothing short of predictable, and the chips and dip were surprisingly unique. A dill dip and a French onion dip provided a nice departure from the regular spinach artichoke. I'm not sure this is a place that I would come to for dinner, and it is definitely not a place I would come to for brunch. (The brunch menu is a typical hotel menu, with typical hotel pricing). I think that for me District will just remain a place for drinks and small bites. + +I'm not going to lose my mind over this place. It's not that great, I'd say it's fairly generic. But the staff was friendly and it's within walking distance of my place. I'm sure I will be back for drinks.",review,qASPib1Z8ft8e96dtbh66w,8,12,4 +-fsCfTYEnJ4s6yStgBnQig,2011-06-17,NyGk1TmEc803qfmKWyV62w,3,"Went there with my date on Thursday night; it was quite empty. + +I don't think the decoration is as nice as it said in other reviews; it's about alright. + +The issue I found is waiter walks pass in front of you during the movie. The color of the screen is yellowish that makes movie look old. + +It's more like watching a DVD at home. When watching movies, I don't like to be interrupted, so the waiter service during the movie really bothers me. + +The good thing is it's very close to my house, I can go there on foot.",review,H2jcFGSS1n60jcKPBb-IoA,0,1,0 +LfKPiwth-lGmCKTxlDoV9g,2007-05-21,HpPCa94vxHf6xjmhxXZZYw,5,"had a great time here the other day! the food was delicious and the staff was just as wonderful. + +i can't wait to come back here and try out more of their dishes!",review,eXoGHusNWaL47Dd_Xbq2nA,2,1,0 +IuAPYzf3NSyfyXYgT46YVA,2011-07-01,-24M16FmVkS0N163hr7Qhg,5,"I do not understand less than four stars. We had six different plates. Beet Salad, Rabit, Butter,Scallops,Strawberry desert, and Peach desert. All were brilliant. Our favorite (both agreed) was the Beet Salad. It was so fresh and had a perfect combo of flavors and textures. + +Service was way more than perfect. One note they are now BYOB with a corkage fee for Beer and Wine. No fee if the Beer or Wine is from Arizona. + +One note for FnB we were preplexed with the lack of pork on the menu :-)",review,F9P--h4g6gA-C_nO7OPUnQ,1,2,1 +TzImzfIWkZTnetKl2a4-SQ,2012-02-07,p-hQTpFmdhny-QOIUFsIZQ,5,Good micro brew made right there. Food is good as well.,review,CaP2S-hF9F_25nz4F36MmQ,0,0,1 +i_PkfGnX3J4Zsipp0chvwA,2012-12-29,R0-weuY9gNYpiCoEipP2ig,3,"If they werent located around the corner, I would never use this store. I have taken back produce MULTIPLE times due to expiration so watch the dates when buying!!",review,_KUclCeH47THrV8FiKSzdg,0,0,0 +byhwHi0lhYdyY5kSpuqoaQ,2011-11-06,HOIx-sPvPvLpSGgjrbMNaA,3,"Well it was off to Brio last night for ""date"" night!!! + +The last time we were at Brio was in September to celebrate our 16th Anniversary...yes consecutive years, and it was a great evening! Last night, no so much. In all the years we've been going to Brio, we have NEVER had such HORRIBLE service....ever! +The food was as amazing as it always is, but the terrible service completely overshadowed the tasty treats from the kitchen. Our server stood and waited for us to finish sitting and before we could even open our napkins was asking for our drink order, not a good sign of things to come. So I opted for water to come while we contemplated our cocktails. So the water came, then nothing....nothing....no one....nada. After about 10 minutes the server returned for our cocktail order. The longest 10 minutes in history I'll admit. So off to get the drinks....15 minutes later they arrived with the bread for the table...now mind you we'd been sitting alone at the table with no attention for 25 minutes now. That is a lifetime for a restaurant that makes their money by turning tables. When the drinks and bread arrived we opted to put in our dinner order, thinking we'd be in for a long bumpy night. So we ordered, I ordered the Campanelle Carbonara, but with the Spicy Pepper Sauce from the Spicy Shrimp and Eggplant Appetizer, as opposed to the traditional sauce. The server said no problem, you want the Angel Hair Pasta with the Spicy Sauce, do you want to add Shrimp or Chicken??? Well the Campanelle Carbonara comes with Chicken, Spinach, Bacon, and Parmesan Cheese. So I explained it is NOT Angel hair Pasta as the Campanelle is a 'trumpet' shaped pasta with curled edges. He said ""Oh you want the Lasagna Noodles"".....! Of course I just said ask the chef to prepare the entree as he usually would, BUT, substitute the sauces. Glenn ordered the same, but with the traditional sauce. We both opted for the wedge salad, and asked that our entrees not be fired until we were completed with our salad. After all, we all know all the ingredients are pre-made, and just needed to be assembled and heated.. Whew...I felt...that was exhausting! Then the salads arrived. Ice cold, yummy...! Now we are back on track. Boy that salad does hit all the notes that take you back to your childhood. Nothing is better than Ice Cold Iceberg Lettuce w/blue cheese dressing, bacon crumbles, and fresh shaved Parmesan cheese!!! +Then it happened.....yes just as we thought, in order to speed up the process that started so slowly............our entrees arrive BEFORE we were even 1/2 way through our salads. So there they sit...all beautiful, completed just as ordered...and no Lasagna Noodles, no Angel Hair Pasta...just the wonderfulness awaiting our forks. But...yes...But, we'd not finished our salads. By the time we did, our pasta was sad, cold, and looked like it had let us down. It didn't, OUR SERVER DID....oh by the way were we EVER asked if we wanted anything else to drink??? You guessed it NO....were we EVER asked how our dinner was??? You guessed it NO... Now you're probably saying, 'why didn't you do something about it'? We'd have loved to, but there was no one around...not even someone to fill our water glasses. Only after we were finished with our sad, cold, entrees and had stacked all the dirty dishes in a pile on the edge of the table, did our server make an appearance to ask how our dinner is going??? Are you kidding me??? We just asked for the check. Upon his return we presented him with the discount that Brio had sent us for being frequent diners, he took that and never returned. After sitting there at an empty table, empty water glasses and nothing to look at but the crumbs left behind from the wonderful flat bread. We placed cash on the table and left to try to reclaim our evening. On the way out, Glenn finally spotted a manager and explained our evening and that it would be a VERY LONG time before we tried Brio again. He, the manager, just stumbled over his words and said he wished he's known about our evening so he could have done something about it. Well maybe if he'd been circulating on the floor as opposed to hanging out with the ever so cute hostess' he'd have known. Do we still like Brio...YES...are we extremely disappointed with our service last night...YES.....",review,wSWDShwN69X58ydFJkIeDQ,0,0,1 +9VZ_imQjvgtpt3k6W6AQ_A,2010-09-15,s0dRHCNMgMjDdlvG6XZ66Q,1,"So i thought with all the controversy surrounding this place, I would support the first amendment with my wallet. Unfortunately our experience here was subpar to say the least. We came in on a 3pm on Saturday and there was only one other couple inside. We were literally outnumbered by the people working there. I say this because somehow, despite this fact, the service was HORRENDOUS. I mean we got our order out fine, but our waitress dissappeared after that. At one point I had to almost get refills for us myself. The sushi itself was so overpriced for what it was. The Philadelphia roll was decent, but the California roll was really bad. When it came to paying, I put my credit card in the sleeve and waited for awhile. Despite there being no one else in the restaurant at this point except one other table, the waitress didn't return. If it wasn't for the cash I had on me I'd be waisting away there at this moment because she had no intention of returning and I have no intention of ingesting there food ever again!",review,yQgnaOeVmIXU0ZLS81SPkQ,0,0,0 +9VZ_imQjvgtpt3k6W6AQ_A,2012-04-24,bGYakgpE9C1KAELoPDns9Q,3,"This tiny sushi joint is in a prime location. That's the real draw. +The sushi is just okay (and you can get the same sushi at Geisha-a-go-go which is more fun). The hamachi kama is just okay. The steak is just okay. Overall, this place is average. + +I wish I had better things to say about it, but the service was not great (it was not bad, just average) and the bill was high considering the quality of everything we ordered. + +Would I come here again? Nah.",review,64YY0h0ZAR2nbzxbx0IwJg,1,2,2 +Nj6ITW0Zhl7LpovGIH6SAg,2010-02-25,g4SqLnSbxN6faOLi4heYMw,5,"Let me start off by saying that if there were 6 stars, I'd give this place 6 stars! + +""Last Chance"" is simply amazing, but only to those true bargain shopaholics. There are days when the store will be flourishing with dreamlike items fluttering all over the place, waiting to be picked up and finding a new home in your closet. Other times, you must dig deep, and then come out with a diamond in the rut. + +I visited ""Last Chance"" today and fell in love all over again. I got a BCBG dress, three name brand tees, two casual dresses, eight hair bands, a adorable pair of earrings, FIVE purses and a pair of lace leggings for $39.00. And they all still had the Nordstrom tag on it!!!! + +They had so many things on sale (in addition to their already low prices). To truely love ""Last Chance"", you must have an open mind and realize that this is not your typical department store, therefore it will not operate like one, so get over the kids, crowds and messes, it's Nordstrom stuff at below yardsale prices!! You must also be fashion and brand savvy. + +""Uhh.. Darn diggity goodness mother of Betunia McGrittles, these scary looking boots with a devil pointy edge are $29.99, and they look like they have been tried on oh fooey pooey, that is just too garsh darn expensive Gurtude, And someone wrote their name, ""Jimmy Choo"" on it. Uhh, why are there so many people ALL over the place, and grabbing shoes like crazy making a mess.. Oh goodness heaven no, this store is horrible.. Just like that ""Juicy Couture"" jumpsuit for $9.99 a piece up front, oh no another child making a mess, let's get out of here and go to Sears or JC Penny, they have such great elastic pants grandma jeans and they never have a mess there! I do not see why people like this place darn diggity.."" -Random ""Last Chance"" non-enthusiast. + +Key point, if you're not into brands and fashion, and are not creative and a bargain shopper lover, then you will not appreciate this beautiful place we are so lucky to have in Phoenix!! :) + +""Last Chance"" tips.. +(All ""Last Chancers"" will put a hit on me after this, but I love my fellow yelpers oh so much lol) + +*Arrive EARLY. Anytime after noon all the goods will most likey be gone and all the damaged/ugly stuff will be left. + +*WATCH YOUR CART! People will take you 25.00 pair of Coach wedges lol + +*Don't make eye contact with anyone! Don't trust anyone! If you see a pair of Seven jeans for 14.99 DESCRETELY grab them and move on.. Any sense of alert will beckon a herd of jean hungry woman and you will get mobbed! + +*Move QUICKLY, if you have to RUN! Especially if you are there right when they open, set your mind to what you want and RUN to that department. This will assure first dibs on the that section's finest. + +*Don't start crap with ANYONE! It can get really ugly.. and there is a wall of pictures of ""banned"" people from ""Last Chance"" and that is no where you want to end up in for ANYONE! + +The rest of the tips are too super insider to say aloud, sorry huns! but I will spill one super ""Last Chancer"" tip..Happy shopping! muaaah :) + +*Look in the size 10-11 in woman shoes, that's where all the BEST shoes are ""hidden"" or ""stashed"" by other people who will be back later that day or had to go to the bathroom upstairs and didn't have anyone to hold their shoes. No woman really wears those sizes so they figure to just stash them there for a few minutes.. I cannot begin to describe the designer glories I have discovered stuffed behind a size 11 pair of Pumas.. + + +NOTE TO EVERYONE: OVERALL, PLEASE BE NICE AND SHARE. THERE ARE A LOT OF PEOPLE THAT GO THERE JUST TO FIND DEALS AND RESELL THEM ON EBAY AND THEY CAN BE JUST PLAIN MEAN. REMEMBER, WE ARE ALL HUMAN AND MUST BE KIND TO ONE ANOTHER, NO CURSING, SHOVING, ECT. LET'S MAKE LAST CHANCE A NICE PLACE TO SHOP, AND END THE VIOLENCE AND ANGER OVER CLOTHES/PURSES/SHOES ECT. WE CANNOT SELL OUR SOULS TO THEM. TAKE CARE EVERYONE :)",review,Mmew2rqnwj8FW3qD9wsaQQ,7,15,16 +bc-lE-wGVAsUrX-kJhtY-Q,2012-07-10,odRs5g6bEmHacVc9jLZymg,1,"Great food can be found anywhere. Great service is one in a million these days. This place gets an A+ in the most awful service I have ever received and if you have/had a Groupon for this place like I did, don't even bother going. You'll be treated worse than a bothersome fly on a hot and humid day. + +It's simple. Businesses put their name out by working with daily coupon sites like Groupon, LivingSocial, etc., to garner new and potential repeat customers. Instead, after going there with my handy coupon, I can't help but drive by this place on the way home and think nothing but the horrible experience I received. + +I went with my boyfriend and bought the Groupon because I was impressed due to online reviews and decided to splurge on a good ole' prime rib. We sit down, am impressed with the old school decor, and then the server from Azkaban appears. We tell her that we'd like to order off the special evening menu where it's a little cheaper and tell her joyfully that we found this place through Groupon and that it's our first time. Wrong thing to do. I don't know if it's because past Groupon-ers don't tip well or something, but I could swear her smile immediately turned 180 degrees in an instant. + +It took our food (the chicken and prime rib) almost 33 minutes to come out. All we did was nom ... and nom ... and nom on the watery coleslaw and gritty liver (which isn't to blame since I was never a liver fan). Not once did our server come by our table. We watched her run into the kitchen and either not come back out for a while or attend to other tables. It was another server that came out and gave us our food so we let our frustration go since it wasn't her fault and there's no use in calling her out for nothing. We asked if she knew where our server was, and she said she would look for her. 10 minutes later, nothing, yet it was the new server who kept coming back, asking if everything was alright like a normal server should. + +Then it was time for the check and we just wanted to get out of there since we were basically ignored. 17 minutes pass, no check came even though our table had been cleared. Our server was still MIA so we asked a random server to give us our check. He said he would tell our server to bring it back and we told him straight up that we didn't even want to see her face so another random server brought it back. + +We had a table of 4 sitting next to us who even leaned over and asked us why we were being so calm when our non-existent server was treating us like crap. We didn't even want to bother waiting another 20 minutes just to talk to a manager since apparently the only way the servers here communicate is by playing Telephone so we just left after paying. The table beside us told us that they were going to complain for us since we wanted to leave, but whether they did or not I didn't even care at that point. + +To be honest, I can't even remember what the food tasted like, which isn't quite fair in a review. I went here a couple of months ago, but I have never had an experience where service overrode the taste of food. I'm pretty sure prisoners in a cafeteria get more attention than I did. + +Maybe it wasn't even the Groupon. Who knows. All I know is that we ran out of there like Usain Bolt and tell anyone who asks about our worst dining experience that this is the place to experience it.",review,5S9qsoHWUcMeahMtBwuX3g,1,6,1 +WJ5mq4EiWYAA4Vif0xDfdg,2010-10-07,i6lfw_cE40RlS1os6KpcQw,4,"I returned to this place a couple of times, most recently was this week. Somehow the coffee hasn't tasted as good as the first time. What I really like about this place is that when I'm near downtown Phoenix on a week night, and need a spot with good coffee, a very clean restroom, not too crowded, decent current magazines to read, and definitely good funky yet nondistracting music that is turn on at a decent lounging volume provides an overall comfortable experience.",review,Ux7a5tbceLU6anNycjwt_Q,0,0,0 +v-hvWEgA1M_A87IubGExOA,2009-10-14,b-YMLGkWaNq7vL5uVj3Ezw,5,I've been really impressed with John Skiba and his professionalism. He is always up to date on everything in bankruptcy law and I've enjoyed reading his blog posts. It really shows his expertise and passion for what he does. Hopefully I will never need his services but if I ever were to need an Arizona bankruptcy attorney I would go to him first for sure.,review,RxX5_RP3hSGpMhGY6y6OiQ,0,0,0 +DIYHTgM-YGKWOWLzQ4XVhA,2011-11-20,eDr6SJxEe3dKRpJ7iclahw,1,"My fiance and I tried the place because of a Groupon. We live in the same neighborhood and see the place all the time but the look of the place was never enough to draw us in. There is nothing eye catching about the business front at all. It's in a strip mall and looks old. At night, they turn on strands of tacky Christmas lights that only attract attention to the fact that the lights are so poorly hung. + +When we arrived for dinner we were greeted by an empty corridor, no host station and no host. We could see what looked to be a bar but it wasn't a bar that I'd want to eat, drink and socialize at. To pass the time until we were finally greeted we browsed the many framed publications touting how incredible the place was. I'm already here...I don't need any more persuasion. It's time for the Chef/owner to take down the ""look how good I was"" trophy wall and go with a more inviting modern look. + +We were greeted by friendly gentleman who seated us on the main lower floor. He handed us our menus and asked if he could get us something to drink. There is no drink menu on the menu. No beer list, no soda list, no liquid period. We asked to see the wine list, which had only bottle prices and doesn't even hint that they sell wine by the glass. Once I asked if they had beer and sold wine by the glass it was like we made a breakthrough. The menu seems a bit outdated so I went with the Lasagna, the basics. While we sat waiting for our meal, the salads came. Weird...the menu didn't mention anything about a salad nor did the waiter. More lack of information from the menu. + +Now on to the decor. It is terribly outdated. Tacky, bland, pale paint scheme, brass fixtures, mirrors and cliche wine bottles. There were beautiful fresh flowers throughout which we really enjoyed. I was unfortunately seated directly in front of two paintings both with a woman and a little girl drinking what appears to be wine. I'm guessing they are personal family paintings but they are horribly out of place and bordering on creepy. I couldn't take my eyes off of them and that distracted me throughout the night. This place needs a makeover, new modern paint scheme and some updating on the artwork. + +The lasagna came. It was OK at best. I tried my fiance's chicken genevese at it was horrible. The chicken tasted like it was boiled which is an instant dish killer for me. We did not take our leftovers. We asked for the check and it came with a after dinner cordial which was a nice surprise and tasted delicious. + +We won't be back. To be honest Oregano's lasagna is better by far.",review,9Nh6ae0UgBAMTwvfkuVqVA,0,0,1 +kzZJjm56gG0aSpyA-dS3eA,2009-08-02,stt3BbsaJa7GHX1jEA-Vxw,1,"Total bait and switch sales department! Will tell you one price over the phone, then quote you another when you arrive! Happened to me personally 3 times. I bought from Scottsdale BMW. One quote, one price, done deal. Buyer beware...",review,NrRS56Dv52m2BND-9v1qWw,2,5,1 +Y5clwKIHw8qTpy3pCH1BHQ,2010-01-20,e_ztX2LK4zBMpNSIkMyzTQ,4,"I continue to give Golden Egg Roll 4 stars. I love the house chicken and schezwan chicken (I'm sure I misspelled that). I did not like the Hunan chicken; however, I despise bell peppers and didn't realize they were in this meal until after I got it. Golden Egg Roll became a regular place for me to go to because it was cheap and better than decent. Now that I've moved, I'm going to miss this place.",review,VocJ2eKCB88wgnM5sw-LNg,0,1,0 +eTbtfgUtfewdncgVf2CbWw,2009-09-29,F6V61TngJ1P6DqmW4yQEOQ,3,"Very good food but a little overpriced for the amount of food you get so the price is the only reason I am giving it a 3 star instead of a 4 star. Cost about $11.50 for a small sandwich side salad and an ice tea. All the food seems to be of the organic nature so definitely taste is higher quality. + +I have been there 3 times and each time left still hungry; however, did feel that I had a healthier lunch than other options in the area. + +If you are in the mood for a high quality / healthy light lunch and okay with paying $10-12 per person definitely give Essence Bakery a shot.",review,WEuIqh8ygm-bH81s8lwD0g,0,0,0 +8m08a9xJKmANwmeuR-0bPA,2011-12-22,AV3-FlfTZE-x6hRnnGVpzg,5,"I dined here last week with my wife and in-laws and, I gotta say, it doesn't get much better. Ambiance was dark but classy. Loved the music (no dated Rat Pack stuff here). Started the evening with their amazing Trio of Duck Fat Fries. The truffle emulsion may have been the best sauce I've ever had in my life! Only got better from there: Shellfish tower was loaded with goodies and all tasted straight from the ocean! For entrees, my wife got the Trio of Kobe Beef and I had the Fried Chicken for two. One of the top meals I've ever had in my life. The chicken was so moist an came with a truffle mac & cheese and onion jus. I did say it was for two but it was so good that i refused to share. My wife couldn't stop talking about the Kobe Trio. + +But, I gotta say, the best part of the experience was the staff. Knowledgeable just isn't enough to describe the service here. They care about every single detail, never missing one. The Sommelier made excellent wine recommendations (and each one well within my price range) and never skipped a beat when it came to pouring for the table. The server was as professional as professional gets and the Manager seemed to always be there to pull out a chair or provide a fresh napkin. Flawless. + +Well done Bourbon Steak!",review,e_F7A1KkgjPDqWDDw1cfpg,0,1,0 +ZoQAOnEFnyHjSpomtfqesA,2010-08-03,8tz7kuFdES02yksLIOGgAw,5,"Love love love this place! Seriously, a place in Phoenix that is locally owned, has great prices, great food and buys local is pretty hard to find. My favorite wrap is the Gardin'n salad as a wrap. My only complaints about this place are the hours and the parking! But still well worth it.",review,0LuN0DGTCkzpjAD3NyNN8w,0,0,0 +Xq9tkiHhyN_aBFswFeGLvA,2011-05-07,7G6vKDbCrYGMZLnwk3RKYw,4,"Another great Fox concept! So glad he opened something in downtown Phoenix! + +I hosted a large group dinner in the back room and we had an amazing experience. The service was phenomenal - they even took multiple photos of our group on 2 different occasions. + +The set menu was fantastic. I really felt like we got a taste of what the restaurant had to offer. I highly recommend the beet and apple salad, the crab stuffed chicken and the salted caramel pudding or blueberry cheesecake - absolutely delicious! + +I went back a few days later for lunch and wasn't disappointed. I enjoyed the sweet potato tortelli - it was melt in your mouth good!",review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +1M4oczf2lmkdgbrJ3J7OqA,2008-08-23,Qk5lp15fIkZoWVPnY4e0eA,5,"I rarely give 5 stars, as I believe it is very difficult to obtain a perfect score through food, beverage, service, ambiance, etc. Christopher's new venture is perfectly Christopher, 5 stars. + +First off a little background, Christopher is a native. That's right; he's a graduate of Central High School. He studied in France where he honed his craft and to this day draws his technique from. He has owned now three ventures in Phoenix, first his fine dining and bistro location on the northwest corner of 24st and Camelback (later became Eddie's by Eddie Matney, former hair dresser turned chef at Cous-Cous then Eddie's Grill) then after closing he moved to the restaurant row in The Biltmore Fashion Park, 2rd level to open Christopher's Fermier Brasserie & Paola's Wine Bar. Which in reading many reviews here on Yelp was unfortunately misunderstood. It makes me wonder if people understand what French is, it's not their fault though, there aren't many French restaurants in town, most have be closed, including Mary Elaine's at the Phoenician and John Claude's Petite Cafe. There are a few that still survive Sophie's and Vincent's, but in this town of chains few people venture for French. Now with Christopher's Restaurant/Crush Lounge he has passed on the wine bar and opened a lounge instead. Christopher does enjoy lounges as he is a regular at Merc Bar, but then so is his smoked salmon which is offered on the Merc Bar menu. So a lounge makes sense, I'm a believer in a chef should open what they are passionate about. + +The new location has a different feel from his previous; his last venture echoed a French Countryside feel, as did the food. I think that was why many didn't understand it; yes it was French, but ALL FRENCH IS NOT FINE DINNING. I wish more understood that concept, but this is primarily a beer drinking state, not wine or rather more Mc D's not Mary E's! Hence there's a difference between filling your stomach and filling your soul and leaving a restaurant inspired with the feeling that life is wonderful. Christopher's is the latter. + +The design is contemporary with long lines of brushed stainless, white linen and exposed wooden beams. Kudos to whoever designed it, great job! The tables are dressed with white linen, elegant silver and polished stemware. You can't help but feel that it's 'time to dine' when seated. The walls in the main dining room have many vases of fresh flowers that seem to be replaced whenever necessary, nice touch. + +The food at Christopher's is exactly what you'd expect, French, without the super-high-end prices. He's still one of the only chefs in town serving Foie Grass and Duck Confite, both wonderful and worth the trip if a glass of juice (wine) is added! I've been there now on 4 occasions and everything is fantastic, flavorful and prepared professionally. Christopher offers daily specials and I recommend them including; Veal Chop on Wednesdays, Roasted Duck on Thursday, Lamb Shank on Friday and Rabbit on Saturday. But don't stop at your entree, get the cheese course for dessert or for something sweet, the Chocolate Tower is one of the best desserts in town, hands down, no question. + +Service is another point were Christopher sets himself apart. It doesn't get any better than this. Again it's NOT fine dining, so you can't compare it to fine dining restaurants (but then again there's only one left in the valley - Different Point Of View). The servers know the food; they can describe anything on the menu and recite the specials as if their job depends on it (if you know Christopher it probably is). Food is coursed correctly with a few minutes in between, as well as wine service is as professional as it gets. The bread service is as always, French breads with a super rich, euro butter, perfect for lapping up to sauce or vinaigrette remains on your plate. + +Needless to say, Christopher does it right, in my opinion, or is it just my opinion? Many of the valley's most celebrated chefs eat at Christopher's, he's know in many circles as the ""chef's chef"". But don't take my word for it, ask the chef at your favorite restaurant, who their favorite chefs are in town, and favorite restaurants, most likely Christopher will make the list! + +Here's the web address: http://www.christophersaz.com/ + +The website is limited; menu, wine list, press release and pictures of the restaurant...",review,3f_-pGlAZi6a6ZySrsspVQ,5,7,2 +D_VXbq6sCuqXuBbdPo9zpA,2009-02-24,_B69K4eaxoR5Y_1wx16QmA,5,"Hands down, best slices in Scottsdale....",review,Na2Rb9qdAuB_RU-3RE9Hyw,1,2,1 +kYkuqU9wJS01L8q4d2nTTg,2010-09-08,RNow4E11pxrE3Davw9Gynw,1,Just don't.,review,f3LA83yEEBMj9q92H28O7w,0,0,0 +EfmR4e1tmjC5_ZQOgfnYrg,2013-01-04,2dUmtqe6mOtTZLgdWJNOeA,4,"Excellent family owned business that knows how to make real Italian dishes! Their prices are a little on the high side but you get plenty and it's good. We had enough left over for next day's lunch. + +The waiter was nice and attentive even though it started to get packed at around 7ish. They even gave us free Amaretto drinks after dinner! :) Going back for another romantic dinner soon.",review,KJjwhXg7ZjeeHTo1oKIBhQ,0,0,0 +b5cEoKR8iQliq-yT2_O0LQ,2010-01-09,JqOdSfdpjVfvjOY5LT8VvQ,4,Just got back from Carlsbad Tavern. It was good. Great service. Fun atmosphere. Kid friendly. Loved their black beans. My husband loved his fish taco salad. I liked my meal. I wasn't excited about my food like my husband was. My only suggestion to them would be to add more vegetarian options without relying on cheese.,review,XNGgfUDUg0g6oE9s5XbxfA,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-12-01,qWtULN5Td0AlBcME7825iw,5,"My wife and I ate here last night and were extremly happy. We started with drinks at the bar, which started the night out perfectlly, then we had an appetizaer, which was a tower of cheese ( a sculpture of grilled cheese, like the hard grilled cheese on the sides of a grilled cheese sandwich). I had the tacos, they may be small, but they were packed by taste. My wife had the fish of the day, and that day it was halibut, my wife said it was the best fish she ever had. The service was great, overall a great smalll place to eat.",review,yyKWtBoYjeZjq9OS0YgGQg,0,0,0 +RRWRvdziNs9S5zl4G39Fyw,2009-03-16,9ybeeijTkLhy4Zc6GbR_lQ,3,Pricey!! Not my fave place to shop for vintage wares but decent to peak through.,review,qaAmAU9T_t84UDGiBI98sw,0,0,0 +8T8B_xK10FuO6MBOFcVQ3w,2010-09-22,NCMFtOCsU_oBGvHJg3zINg,5,"Culver's is a must if you have not had the chance to try them out. I believe they have several stores now here in the valley. The Root Beer is a must as well as the Butter Burgers, Cheese curds, Frys, Frozen custurd....lol ...the list goes on... I have not found anything as of yet that I did not enjoy.",review,PHKe2H1tKwECKNSX4iTTMQ,0,0,0 +l3yL2rQ6PoFBQ06RLczn9w,2008-09-14,JcSCs1prr4TD466FF72uSg,3,"Even though I am officially in my 30s, I look like I'm still in college, which made me feel slightly less uncomfortable when I walked into The Clubhouse. Yes, it is near ASU, and yes, it is an all-age venue, so I should have expected that the club would be filled with 18-20 somethings. But just because I look 21, doesn't mean that my internal reality made me feel a little out-of-place. But, I was like, whateva! + +It is somewhat of a dive bar trying to be a club but failing miserably. Like a nerd trying to be punk or a cheerleader trying to be emo -- it somehow didn't work for me. It felt like I was in someone's basement turned rocker's haven. Black walls, haphazard decor, and one sole stinky quasi-couch that looked like it had been salvaged from some dump. + +The stage was at the front of the club, and the bar in the middle dissected the under-21 crowd from the over-21 boozers. Unfortunately, if you wanted to drink, you had to stay on the over-21 side of the bar. That sucked because you barely had a view of the stage. WTF?! Shouldn't the paying lushes get a better view than the youngsters who only paid to get in the club? Stupid. I have to say, though, the sound system was a helluva lot better than some of the other small music venues I've been to. That's a plus. + +Finally, this last annoyance will definitely show my age, but having to stand the entire time I was there was horrible. My feet hurt, dammit! And, I just wanted to sit down! But, I'll suck it up the next time because there are some great bands that play here, and for me, great music can make any situation better.",review,oIVsVM8H273aoT1JUmsDIg,2,2,2 +Hgl5RjvLS_Yc8cqdw9uaOA,2012-05-15,jKPlvenibd6oMO4pqulaLQ,5,"The scenery was amazing!! Wooooooooo!! - Well thats my biggest impression of this place. If you're looking for a great place to golf, i suggest you swing by this place. They give you 5 stars customer service and making sure that you're having the best time of your life.",review,59pVYStY0yKpRmODFIfDww,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2010-04-24,A2fpiFbT8HtwwsENElhXDg,5,"AAAAMAZING. +They have the best hot dogs and corn dogs i have ever had. It is definitely a place to try if you love hot dogs. +They have good fries, excellent onion rings.... and very very reasonable prices! I have never met a single person who has said anything but incredible things about Ted's..... definitely a must try!",review,XY_bQqhZfyyEi_W5n4kQNg,2,3,1 +AX8lx9wHNYT45lyd7pxaYw,2009-12-05,6gMWlmIT8VK-2VN6d9lc1Q,4,"My husband and one year old son dined here on a Saturday night. Service was great, food was delicious, and the BYOB was much appreciated! Staff was very accomodating with our baby. :)",review,VnmZ7nBK0dqDVAgkmFsMxw,1,2,1 +uKSX1n1RoAzGq4bV8GPHVg,2011-01-30,HD4zqA0r3ybBM0sWFY1ZTw,4,"Fantastic atmosphere. Very Very friendly staff. Food presentation was spot on. + +We had drinks and a Brick Oven Flatbread (cheese) and it was delicious. I can't wait to go back and try a full entree. They had a Salmon dish on the menu I am going to try when I return. I was staring at other dishes and they looked mouth watering.",review,OxPJqrIpixmPlxyEyOwKzg,0,2,0 +7Y7p1NHDj0iGQN7IbBp5jw,2012-06-20,Y60Ls8NWuHDiWOsu0Pyhbg,2,"Okay, I have been to DryBar on multiple occassions and have been pleased once, maybe twice, but it wasn't horrible. Unfortunately, the day of my wedding was horrible. My fault that I didn't go in for a practice run, BUT I was assured by their ANSWERING SERVICE that I would get ""one of their best,"" because that's who they send out. The lady that came to our hotel room to do our (my mom and me) hair was rude and not talented. She barely spoke and when she did it was defensive and not from a place of yes. When a bridesmaid (who went to DryBar to get her hair done and wasn't satisfied) agreed with me that my hair style should be fixed, the stylist looked at her phone and said,""well, what time is it?"" as she argued with us that she couldn't do anything else with my hair because it's fine. We were like ""we don't care what time it is, it's my wedding, and I will pay you whatever it takes to get my hair looking the way I want it."" My mom hated her hair, took pictures to send to DryBar and then fixed it herself. The problem with getting a quick solution is that they have an answering service which makes problem solving an issue, especially when you have limited time and makes scheduling a large group complicated. Again, I've been happy once or twice, they have a few good stylists and a lot of very mediocre ones. I think I'll try some of the other blowdry bars in town.",review,XJAtcMnQ1O7jTuFz3Kbpsg,0,5,0 +5tey93wPQOb7z6jOLJZ30w,2012-09-08,GiCWjlJBuJvgRCMCNphhOw,2,"I mean it's a bar they have drinks. If that is what you are going for cool. You can catch a game there, its not bumpn like it used to. Its a little on the quiet side. + + +The crowd looks like its about a 40+ group. and a good handful of random creepers checking out the serve staff there. + +I wouldn't say i wont come back. But its definitely not first on my list for the kinda of bar scene i'd normally be looking for. + +Service was good. but thats because there wasnt many other people to serve the day when i went.",review,IjafRfMSAQpInLlw-Vi0Cg,0,1,0 +bts6jVczHJuWzpT8Y26UsQ,2010-05-08,3dIUxjMa5wAeRmaVAl7fkA,4,"I'm still a big fan of the light rail! Sure, I can't use it every day, but it's about the only thing that will get me to head to downtown for a night out. + +It's perfect for pub crawls, you can gather a huge group, keep everyone more or less together, and make frequent stops. The extended hours mean more time for drinking! + +The trains have stayed clean, they run when they are supposed to, and I've never had a problem. The people watching is awesome as well. Each stop is a mystery grab bag of the teeming masses of people here in town. + +I just wish it had a wider range, I'd use it every day if I could.",review,66tWp8ThwPATFUxYNPyYLw,0,1,0 +90FMI917WPqmn_CIT31pyw,2012-11-04,WTwRsZcGWd12VjAk4dirWg,2,"...for selling broccoli at a good price I gave them a chance. +...for selling celery that was already rotting I won't do so again.",review,5lq4LkrviYgQ4LJNsBYHcA,0,1,0 +G9LwkTSdKOyOGqd5BbuIkA,2012-12-21,n07mexjyE2-pb9oz77kXYg,2,Friendly service but food was just ok. Maybe an off night.,review,_E8bCGlloqFYa-FDVmTMMw,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2012-01-20,s-y30gCF8x6ffV8-Z37aGw,2,"The night was dark and hazy, a midwinter's eve that started with promise. A quick trip to the Yelp site quickly revealed the #1 restaurant in Tempe to be, in fact, a brewery. This delighted my boyfriend, a beer connoisseur, and me too, being a fan of highly rated restaurants and anything that makes my man happy. So we headed to the Four Peaks with high expectations and high spirits. Alas, our hopes were dashed almost from the beginning. +The hostesses greeted us from the curb. They were extremely young and scantily clad in low, low, LOW slung jeans that did not cover their clearly illegal behinds. The place was crowded so we took a beacon and hit the bar for our first round. The bartender, despite a packed house, noticed us almost immediately and took our orders... the only quick service we received all night. The beers, well, the Kilt Lifter was a fine example of a 80 shilling Scottish ale... but the Raj IPA was heavy in diacetyls and but otherwise a reasonable attempt at an English IPA. Hopknot IPA was above average IPA with pleasing grapefruit aroma. +By the time we were seated we were happily woozy from the beers. Unfortunately, it took the bitch waitress nearly 20 minutes to take our orders and another 20 before our meals arrived. Food was decent, although side orders were botched... we DID notice the very nice disposable napkins, which were durable yet soft. Some of the nicest napkins I've ever seen of a disposable nature. +Overall, a good people watching experience, very loud and crowded, with terrible service, adequate beer, and generic yet palatable cuisine. Would we go back? Not unless invited by good friends. Overrated.",review,q0IW1-twB0WY8UDtvt_zFQ,0,2,1 +a1hQlsTan_m8K3eTW7BNSw,2011-06-12,-Va8sBiGpah_Zd0Qdw6gUQ,5,"WOW! From service to food, 5 stars! Went here last night for our 10th anniversary. They never cease to amaze us. Husband had a Caesar salad, Rib Eye with crab legs and I had a salad with Balsamic Vinagrette, Salmon with Asian glaze with a carrott and swiss chard medley. Amazing!! Perfection. Kyle served us, we were impressed by his knowledge of the menu and attention to detail. Everyone we came in contact with was pleasant. If only more restaurants treated their patrons this way! If you have their VIP card you also earn 'points' which convert into $ you can use towards a future visit. Thanks Kyle and McCormick and Schmicks!!",review,0CIP-nma5yM9HY1OOBS2yA,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2009-11-08,rlb2_5zjhTtuvHefTgFggg,5,"Just as good a Pizzeria Bianco! But with the added bonus of not having to wait for hours and hours. Granted there may still be a wait here but you aren't fighting tourist for tables at this joint. It's more of a local fav! + +Fresh gourmet toppings and very good crust! Personally a big fan of the garden seating! There was a longer than normal wait for the food however, the server was very attentive and I thoroughly enjoyed the ambiance as we had drinks in garden. I would not recommend this place for a quick meal but it's perfect if you bring friends and want to have time to relax and enjoy conversation!",review,DcfmUIBBfClOte8dTekVbA,1,1,0 +UI8iKvzhGn2qZCGIqtQqrQ,2011-02-26,LqPSYnqdXZSXBNbSV0pz_A,3,"The BF and I went here this morning for breakfast after finding it on yelp. I thought it sounded good and I love trying new places, so we went. The place was busy, we almost left because there were no parking spaces left... luckily we made one more pass and someone was just walking to his car to leave. There was a little bit of a wait, but not bad. So the inside of this place is really cute, with the wood paneling and all. We got a cute little booth. We both ordered coffee, which was very meh. Really watered down coffee and cost 2.25 a cup. For breakfast, I ordered the spanish omelet and the BF got biscuits and gravy. The omelet was really good. It had a kind of spicy sauce on it that was tasty and I added cheddar which really went well with the sauce. The potatoes that it came with were nothing special, no real flavor. It also came with toast which was what it was. That cost 9$. The BF liked his B&G but thought it was a bit salty. It cost around 8$ with bacon. Overall, I'd say the place was good, but not great. For the 27$ I spent after tip, I could have gone to Liberty Market which is much much better, so I probably wouldn't come back here.",review,3gIfcQq5KxAegwCPXc83cQ,2,1,1 +KTF-E3NfkJy2wiwcgOPyVQ,2012-11-28,vzOZ8t6I2bVE9jP-ZFxp4w,5,"Try the Larb, it is on happy hour and it even comes in tofu as a veggie option. This one dish alone ($5) at happy hour would make me love this place but there were many more delights that made my visit so great. + +I don't drink with dinner but here it was happy hour all day sat, and they had a unique drink the Curry Gimlet, IT comes in a martini glass has a orange hue, it is fruity but has a curry finish from cardamom I assume, truly unique. + +Our dishes of Pad See ewe and Dragon noodles were great, and huge portions. Rich flavors, well textured tofu and crisp veggies. + +When I made my reservation I let them know about the birthday of the person I was with. We were surprised with fried banana and ice cream along with a candle and signing it was great!",review,M6oU3OBf_E6gqlfkLGlStQ,2,1,1 +xs1LHeJy78u-7taSEnQ2Yw,2009-11-01,aTO_jhvagWnlU1-thJ1gTQ,4,"My fiancee and I found this place on-line when we were looking fot sushi in the Central Phoenix area. Neither of us had heard of it but we decided to give it a go. We got there around 8:30 and the place was kindof empty so we were a little nervous. We walked in and were seated at a table by the window. We were seated with dinner menus but not a sushi menu. Ther server said they only give those out at the sushi bar. I thought that was a little wierd but the server was nice and the decor was hip and modern (it was metrosexual according to my fiancee) so we went with it. + +We ordered lots and lots of sushi - ika salad, hamachi sashimi ($9), spicy tuna roll ($7), shrimp tempura roll ($7), and the sunshine roll ($11) (spicy salmon with lemon on top). We could not complain about anything! It was all very very good. It tasted fresh, yummy, and hit the spot. The total bill was $47.00 which sounded about right considering how much food we ordered! + +We liked the decor, the service, and the food. I noticed they had a lunch menu so I will be taking my co-workers back with me next time!",review,1VcKKccWPLsNOhyYGMkWuA,1,0,0 +vWnlScr9y2F6_ctDJZ6XLg,2011-02-23,eVh2y5ABf-MB7163bmx77g,5,"Um. YAY! Picture a girl hanging with her lovely on a Monday afternoon after what could be politely described as a terrible week before, looking to soothe her spirit with some lovely food and atmosphere [the company was already delightful...]. I saw a piece in the local rag about C4 and since we're already in Moon Valley I say 'how 'bout it'. Jeff agrees and we're off - + +We arrived just before 4 - closing time and the bartender/waitperson was reeeeally nice. She told us we had only a few minutes to order because the kitchen would be closing and that the pizza oven was already off. No worries, we remain unfazed. We sat at a high top next to the bar, there were a few other people at tables nearby, some drinking coffee and one couple enjoying the bruschetta and some wine on a leather sofa by the large fireplace. The room hits just the right notes for me, warm and inviting, nice art but not overpowering - its a place I could hang out in. We both had a nice glass [generous pour] of a Voga Pinot Gris and a sandwich. I had smoked salmon, Jeff had roast beef. The smoked salmon was a generous portion with capers, cuke and tomato and a what seemed to be a seasoned mayo [not goat cheese as the online menu suggests but a nice and savory compliment just the same] on a toasted baguette. Roast beef was similar in scale, lots of meat with melted cheddar, greens also on a toasted baguette. Each was served with a side of chips and a pickle. + +It may have been me or just the mood I was in but I really felt relaxed there and in spite of the fact that we closed the place for the afternoon, we didn't feel rushed or in the way. It was just a nice, shoulder dropping, ahhhh experience. Not the spa, but just what the doctor ordered. + +Serious yay, total digdom. We wanted to plant a place just like it of our own on the beach in Maui...its nice to dream...Totally worth the trip; we will be back",review,9vxUUOoasnu8gtoXRwAhYw,0,0,0 +1UXockAOf9jZnHuMjYiA-g,2007-12-16,U0afD_agmRIocRWnAtaBkQ,5,"Best and most helpful hardware store I have visited. Thank God I live almost across the street! + +After many, many home projects and recently rebuilding my kitchen, I have frequented this Ace almost more times than I should. But I am always pleased at how quickly and smoothly my searches at this Ace are. + +Try it, you'll like it!",review,UE1UIi95jSk5tAzOdtnjIA,1,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-06-13,T23qqFD_poy31igG0o_HgA,2,"The service at this location was great, until one of the servers managed to incorporate throwing up in into a conversation while I was nursing a hangover. Never a good idea to talk throwing up to a customer that is eating.duh!! This conversation led to more inappropriate words from the employee until he finally left....grrrrr!!! + +Had the biscuits& gravy special ( $10.95 ), no bueno. I like my gravy simple...just some gravy with a little sausage running through,thats it. Can't stand it when there is onions, peppers, celery, carrot...yuck!! And they served those generic potatoes that are big flavorless cubes that they put in the deep fryer. Should have just had the chicken and waffle, lesson learned.",review,JkMOQaMjlBHMqp6gj-hL3w,3,6,6 +yeLq-452CkaKw1ynn0nRNw,2011-01-30,lRWXkCwzACWEc_0I-x4d0g,4,I love this place. Its cute its cheapish and has really good pizza and subs its also got a nice patio. Phoenix should have more places like this,review,891_RDdfwKQYulBkEY_CcA,0,0,0 +JwkYf9wctZI0dSJsjHeVeA,2012-09-19,zaYzDL7A_-htgo2DzccZlQ,3,"Not a bad sub which I find to be something I can eat almost daily. Prices are a little higher than a Subway but their meat is freshly sliced to order and they do a much better job with their bread. They are still lacking the hard crust french/Italian bread that I crave since leaving the East Coast but this is something I have learned not to expect out here in AZ. + +The girls that work behind the counter are excellent and a few have been there for years. They know service and are fast and great at keeping the lines at bay.",review,omoEjYFKVV7e-DtnezeUOw,2,3,0 +KIgkwPEOxbfdeCk0ltycOQ,2009-10-19,Ya1QU03ysxWG1zKaBXI0iQ,1,"What ever you do don't waste your money here. I am not the person who likes to send food back, in fact I hate to do it. I had no choice here, this was by far the worst mexican food I have eaten. The food has such a horrible after taste. I not only hated my meal but tried my boyfriends as well and it was still terrible. The service compares to the food, we waited forvever just for a server to come over and greet us. I wouldn't even recommend this place to my enemies.",review,tVUVDWC-RDaf8GN4-7-iXg,0,1,0 +jN2NAKO5Rn5IT8udZ0imdg,2012-03-16,APFDrleBB2BwIXwjTBVZ4A,3,"Fat fries are good, but that's probably it. I had a turkey burger that didn't taste much better than something I could make in my microwave. I had ""everything"" but still could barely taste anything. 3 stars is because my brother had an L and it was really L. His also looked much better than mine did. All in all, it is better than most fast food, but really isn't worth it for the price you pay. Your wallet would thank you for hopping across the street to In 'n' Out, and your tastebuds would thank you for driving several miles east to 5 guys.",review,rl_o0q8z-Rv9bneDafM0KA,0,1,0 +rQ4z0EStSZE4acgkne6Hmg,2009-03-03,KY71Xi-INm78gGwYrJGJXQ,4,"Super cool space, friendly host (owner?) making all feel welcome and at home. Went with a large group on a Saturday night prime dinner hour and it was a no hassle wait, perhaps due to the company, it was painless. The Four Peaks beer choices, games of skill and comfy waiting area eased it as well. Service was attentive as sometimes large parties are tough to handle, but I observed no glitch here. + +I do plan to return when excessive day drinking has not blurred my perspective, but I remember having some pretty solid food. I sampled the Fontina cheese appetizer, perhaps my expectations were askew but I was surprised to see cheese sticks. I suppose I envisioned a wedge of cheese, either way it tasted fine and the pair of dipping sauces were unique. Sharing the same dish a savory romesco balanced with a sweeter pear sauce, I enjoyed them both with the cheese. Skirt steak is spiced nicely with garlic, chile and cumin ,charred and sliced, smothered with tasty mushrooms comforted by a hearty scoop of Yukon mashers. Not my optimum presentation as I like to cut it myself. I think the beef, which tasted great, went beyond the medium rare request which seemed to just be ignored. Not enough resting time from grilling to cutting and plating I would guess, however the meat was still juicy .I also had the chance to sample the maple glazed pork with pear crisps. Yum. Well cooked ,juicy and chock full of smoky sweet goodness. The side of Gorgonzola grits was a bit loose, but the flavor was very nice. Portions were very generous. + +Looking forward to checking this spot out again without the world of beer fest goggles head start.",review,bcZd4ohK6CIT_BOQ0_O53w,4,6,5 +jQST5lkLGX9L52-A10TGTQ,2008-11-18,kdkpApwUU_fIBIMaAghWEw,4,"Excellent Excellent Excellent... My wife and I try to eat here at least 3 -4 times a month. Owners are very nice to chat with. We planned a trip to Thailand this fall, and the owners help tell us where to go and what to see.",review,1W6iemOzi3iR44jrlhWhyw,0,0,1 +FqzgT9Y-Yu7jiWdHnGW-kQ,2012-11-07,R_O_mLd3PDh9hFTKqUhwwg,3,"I've been to this location several times but I'd rather be more positive than nit-picky. The service has always been a bit slow and less informative. I've come in and on several occasions lost out on the specials till the very end when the server mentions ""next time you should do the...."" well I wish I would've known that earlier because I could've enjoyed more awesomeness! Otherwise I love the atmosphere and the seating. The space is really good, outdoor seating during this time of the year is jam and ambience are spot on for a group or a more datish type situation. I've tried a few of the dishes and the food is pretty good but nothing yet that I've built up a craving for. I'll be back soon for the Tuesday special of an app with a bottle of wine for $22 buckaroos!",review,G4IR4Mqsg7kFLaruUpAP2A,0,0,0 +LRxH8V5JaPt9mvav6F_1tg,2012-04-01,BkV7dWkvlIZpOdxDXY3p4w,5,"I woke up this morning craving a breakfast burrito. Fortunately just 3 days ago, a menu was left on our door for Cisco's Grill (with some great marketing I might add). Conveniently located right up the street from my house, I've been curious about this place since they opened! I strapped on my shoes and walked on over... upon entering I was greeted cordially and placed my order for a chorizo and egg burrito with cheese... The cook went to work and 5 minutes later I was holding a fresh hot burrito and a complimentary pineapple water! Cisco came out and introduced himself while I was waiting and chatted with me for a few minutes. Its clear to me that he's very passionate about his restaurant! The service is top notch! + +The menu itself is fairly generic, typical burger and fries, tacos and burritos, but everything is so fresh and prepared well! I'd recommend this joint to anyone looking for a quick, inexpensive bite to eat!",review,vuUddBhwlrVijAAFvK5UTg,1,1,1 +W7xb2iS4cYL14Yi5LOGSkA,2009-04-04,S2yWibED33rqEHkgH91T9Q,4,"not only do they have great sandwiches, they have one of the greatest sandwiches ever to appear on a menu: grilled peanut butter and jelly. + +bison witches (which, if you say it right, it sounds like buy sandwiches) is a great spot to meet friends for a casual lunch. its right in the heart of downtown tempe off mill and is also a great spot to watch ASU football home games. + +i believe the owners also own quinton's in iowa city, iowa. +http://www.yelp.com/biz/quintons-bar-and-deli-iowa-city",review,T46gxPbJMWmlLyr7GxQLyQ,1,1,0 +5BXNeSwzOy1nhU9PtCHvIw,2006-09-02,G2HIOsIDyY9C3wjq_V5rQA,5,"I walked in and uttered, ""I think I found my new home"". + +1) Miller High Life on draught and bottle. +2) Buckhunt (the lil orange gun has even been taped together-double buck bonus!) +3) Bowling videogame...god, I love these things +4) Indoor smoking lounge!!! With a large screen TV, two tables and a lot of pleather seating, the large fan won't mean much but WOW-exciting! There is a french style door separating the lounge from the bar area where the stage is so you can still peak at the band while sucking tar. +5) Well...even the womens' bathroom is pretty gnarly...which would normally subtract a star-but I was so happy to pee in the unmarked restroom I won't touch it! + +Other notes: all bartender, barbacks, security were extremely sweet and friendly; all other patrons were either pretty chill, excited to see the band that was playing or willing to strike up conversation; tons of televisions everywhere; they had a lot of beers on tap-cheap too; this place is HUGE. In fact I would consider it a liability since there are a lot of steps connecting each section-at times I found myself balancing precariously-and that is b/c I am a klutz-wasn't even drunk...ok, not that drunk. Most everyone had tats, black hair, laid back. This is def. not a scene-and I love that!",review,mfvezpz6ohS0NQk3DZdvqQ,3,4,1 +jBSx81vaJsakhNDnyv0Wpw,2011-07-26,9nMfYnM7WFbtWKBYEmhqYw,4,"This is my go-to pizza joint. I've been here numerous times and the pizza is always delicious. My favorite is the Barro's Special (Pepperoni, ham, onions, green pepper and mushrooms). It's a nice thick and hearty style pizza with a great tasting crust. They have a play area with a little kitchen, legos and TV playing Nickelodean for the kids which is great. They also have ESPN on so I can chill and watch some sports while the kids play.",review,EQZjeyvQRe0xnEYcV_eK0A,0,0,0 +C7utE_DN2kgE-68_VF8ftw,2013-01-03,-xh0KjR02VnvWbWt4in03g,5,I stayed at the hotel and I tried Tuscany and it was really good. Delicious Scallops and pasta. Also the pizza was excellent. The server was great and I would return to this restaurant when I visit the hotel again.,review,19z2sZCwjNveJf6koqlplQ,0,0,0 +Vm9GQUptdZmBM9R7tZ9_Tg,2008-10-13,roJ1hq2LQukluUaZZrcgFg,3,"For some reason or another this macy's has a better selection of shoes than the one at Scottsdale mall. In the past year I found a pair of Calvin Klein sandals for half off, and they carry the higher end, younger brands- which is great Nordstrom's selection tends to be for an older crowd.",review,YoBgKOdfpGH48LpIDSfoQQ,1,2,1 +R6aazv8FB-6BeanY3ag8kw,2011-12-12,YH3J2COG_TonRxxRKfDN2w,5,"OK: call me 'weird' here: but; I liked the funky (very) Old School ambiance of MacAlpines when my fiance and I went there this past Sunday for the Studebaker and friends car show. + +Admittedly; I was there once before ca. 1999 and was NOT impressed but things have def improved IMHO. + +I had a Club sandwich and it was one of the best ones I've ever had, at least in recent years. Would eat one again. The chocolate milk shake was OK but could have used a tad more syrup but, I'd have one again.",review,1m8rFe-BCr6qHSMoV5KkUw,0,0,0 +X6PFtUdbCIOrr0r5suKlRg,2013-01-02,1I1Xxs1u9OjvkfwdIR921g,5,"My husband and I have eaten Chinese food all over Phoenix, and hands down, Big Wa has been the best. The BBQ pork with fresh spicy mustard is A-Mazing!! We have ordered about 6 different dishes from here, sometimes totally blind and the food is always great!",review,PWa942b3WoOsr_T1PrZeVQ,0,0,0 +_yfprBETaYgySkKyl8ZWMQ,2009-05-07,90M7tzesfXLK5q7HC48-Ig,4,"I was able to get an excellent rate through hotels.com. $58 a night. Yes the room is small. But there were no bed bugs! A woman that was going to the same convention stayed at an upscale hotel near by and had bite marks all over her arm. :P + +I didn't get a chance to swim in the pool, but I checked it out and it was nice up there. + +The staff was very friendly and helpful. + +The bathrooms are small. For some reason I had to keep the hot water turned all the way off. Otherwise the water would be scorching HOT! + +The cable needs to be upgraded to digital. + +Didn't run into any ghosts. Thank goodness!",review,z6OGpPPnGNDTOsLhf4KVzA,0,0,0 +w5XcgWwGAN21Ly2HeU48IQ,2009-01-10,Fq_RleJA6yvaTkb6xuoW2g,4,"Well Sauce hits the ""spot"" for me. I was amazed how quick the service is and how fast we get our pizza (well their pizza does follow the laws of physics, THIN PIES COOK QUICK!). So if your're looking for deep dish....this is not spot. But if you like it thin, it's great. I tend to order the same item time and time again and it's the sausage with carmelized onions. Sandra K likes their salads, so it's a pizza and salad and we share. She likes a glass of red wine with her dinner. We share the pizza and salad (she won't let me drink her wine though) and I gotta tell you, it's plenty of food and I feel like I got real value for my money. Kudo's to Sauce! + +This guy, Sam Fox, has a magic touch with most of his restaurantsl He is truly gifted by bringing his concepts to the greater Phoenix area.",review,swJ6rmmGx4DCxosDfKTElw,1,1,0 +Ynh4G_R0QAuzjY85TSXsVA,2011-02-06,os-DcWvjGEFIZVBWaQ3r2A,2,"I've been a CVS guy for about 15 years, spanning three cities across the country. Some branches are better than others, some regions are better than others - they're no better or worse than other national chains which also have some good branches and some bad branches. I picked them because they have a great ""rewards program"" and because they have heavy presences in places where I travel often. + +So this is a bad branch. There's a couple decent check-out kids, but in general their employees are among the worst trained I've ever seen, in terms of providing polite, timely, friendly customer service. They avoid your eyes when they see you looking for something in an aisle, lest you bother them with a question. They never EVER greet you with a smile and a ""good morning"" or a ""did you find everything you need?"" while you check out. They have inconsistent policies about whether or not coupons can be scanned from iPhone or paper copies needed (the manager basically called me a liar when I said checkout people have scanned my iPhone coupons many times in the past). + +I guess if you sell very profitable liquor and meds, you make money no matter how bad your attitude is. It's not like Walgreens and Rite Aid are setting the world on fire with their customer service either.... + +If you don't travel a lot like I do, pick a nice local independent pharmacist...",review,XLHDwNRYynxd8oiyIvk7DQ,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2012-01-26,kO_wxDM35PUy6ukVEP_m-Q,4,"Been a few times at various times for various reasons. + +Food - 4/5 +Love the bruschetta, sandwiches are good really no complaints, good alcohol selection. + +Service - 4/5 +I always receive good service. +Valet is always youthful. + +Atmosphere - 3/5 +Casual, great place for meeting friends. can be a little too busy for my liking. + +Price - 3/5 +Average I can't really complain. + +Overall - I don't go out of my way to go here, but I certainly recommend it.",review,rn-S3h35NiiAvKvEMDbtZg,0,2,0 +AaKlegu7gmOCD4rEESF76Q,2011-10-09,qvCZFBvb7tJHE0OM8-_wBw,3,"Brunch Review: + +DYNaMITE BLOODYMARYS. Something special. + +Expensive. Tasty. Friendly staff. GREAT tomato relish on the side. + +I like to go to brunch here on Sundays. I sit at the bar, and there is usually a sports game on, a good looking bartender pouring me coffee, and a guy with a hangover wearing sunglasses wishing he'd ordered the breakfast burrito sitting next me. Most of the dishes have some southwest/mexican food influencing the cuisine. + +The BIG 'ol Bistro Breakfast is delicious. I think it might be one egg too many, but the Cappicola and potatoes are delish. + +The Rojo Chili de La Casa is my go to, unless they have a special like Machaca Tostada's or Country Benedict (with sausage patties in place of Canadian Ham) + +They are really good about keeping the drinks topped off.",review,-VtylxgCHrVrsSCn55e9QA,0,1,1 +rDvz5jX65gpfONFu7er9Tw,2010-10-11,-H-R2jvepiZ1AVWtRfrGJA,5,"One bite and I was transported back to the crowded streets of Monterrey. I could almost smell the exhaust of the vochos and hear the distant conversation of the local policia extorting their prescribed mordida. Quite simply, this is the taco as the way it was intended by its creators. The pure and unadulterated classic enjoyed by the Mexican working class. + +What Pomo is to pizza, this place is to tacos. Authentic...absolutely authentic.",review,GrSixRnGIxNUJ1Cn5DNX9A,2,7,2 +5VMajxduxfLPSyQkVFKESg,2010-02-21,fUp8-jD6ePylcGbScqFtpg,5,"Joe's has long been one of our favorite restaurants in Gilbert. The pulled pork is excellent, the sides are even better, and the service is always friendly. + +Don't be intimidated by a long line, even out the door, as it moves fast. The cheesy potatoes and corn are great. The lemon cake is very moist and a nice finish to a meal. + +Be sure to stop by on your birthday and pick up a free meal. + +The kids love running around outside in the grassy area, and always enjoy going to Joe's.",review,NFbAuokBjozSOoa2HseeHg,0,0,0 +DuaoskPAVBV55px_cwxIVw,2012-06-30,4A6rNNWf6dBqfkPwi5wdvw,3,"The food and service was excellent!, however, several noisy undisciplined children running around in the restaurant and yelling loudly made the dining experience less than pleasurable. Apparently, these children were either members of the owners family or one of the employees. Our requests to a server and another employee did little to rectify the situation. I hope on our next visit, we will have a more peaceful meal",review,5GVrtAbskHLJg7_Tni4I8w,0,1,0 +106JT5p8e8Chtd0CZpcARw,2009-09-12,vY9lKtIJViXFpbw3P9h_xg,5,I'm sorry to say that they closed their doors for good just a few weeks ago!,review,38mFXGlsWdVGtWKNjpSSHQ,0,2,0 +lk-6NXfpSgvNw7zm0xtUVw,2012-01-18,ItXu8gCSnvF4zsTC3_yB8w,4,"Oh dang! This place is GOOD. I am in love with the carnitas burrito, and the employees are so nice and make some damn good food. If you're in the area and don't want Taco Bell then GO HERE! They also give you chips, and the chips and salsa are pretty legit. Try not to stuff yourself with the chips though, cause the foods the real winner here. I will be back, and have been back many many times since my first experience. Why only 4 stars you ask? The breakfast burrito was just a-okay, I would much rather get a breakfast burrito elsewhere but the regular burritos are the bomb diggity! ;)",review,0piFSvCKD4DygzQzewzdoA,0,0,0 +d7V3ykQHqChv0KtXEanKLw,2012-11-04,oZlQN_u6-F78748pUvdigw,2,"Decent IPA, I prefer Four Peaks. Slow service. Food is overpriced.",review,F2GEqt_mV95OQEiYPTQ4VQ,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2011-09-05,ptZOOyN6dcZPcBdWCI0TfA,5,"I hardly ever give five star reviews. My experience at Culinary Dropout today prompted me to do so. The reason we checked this place out was because I had a 25% coupon from Fox RC for Labor Day. First things first: The employees are extremely good looking. There is lots of tattoos and bare skin. Our bartender was awesome. He answered all our dumb questions with a smile and made some killer drinks. I had the Bacon Infused Bloody Mary and my friend had the Acai Mojito. I will be going back again to have that Bloody Mary. It was SO good. We started out with the homemade chips and onion dip and it was delicious. We pretty much filled up on those before we got our meals. I ordered the Havarti Burger, my roommate got the chef salad, and my other friend got the canneloni. Everything was super good, but it was too much food! My burger melted in my mouth and I kept stealing bites of my friend's salad. So, in a nutshell: + +- Great vibe. +- Great food. +- Great drinks. +- Hot employees. +- Clever menu titles/ +- Great experience!",review,IO3AsR6cdMto7VCwfPzf2w,1,1,0 +Kqn4J9NTgZdMAnV4HuYh5A,2009-06-28,hYGWhzZtfwR8Ygt0l-2iNg,4,"This is a really nice coffee shop and restaurant tucked away in a corner toward the east end of City North. They have great food, wine and, well of course, coffee. We were there last Saturday and they had live music as well as an artist. April Howland from Howland Studios was there painting and giving a live demonstration. I am not certain how often they have music and an artist but if you managed to catch them one of these nights, you won't be disappointed. Also, make sure you try one of their fruit smoothies. They are simply amazing.",review,Wse8fzq2b0rCgO6s-ZtWJw,1,1,0 +9x0rvR9SSX5mO1vUqx_hnQ,2011-08-08,Rck9pUHqUIxIxDkJ1Ang0Q,4,"Good food, good service! We go here a lot!",review,u-yh_ENUSE3Ap4rAmYRw_w,0,0,0 +WUZxVr_CaRqEQgzvyeK5tw,2008-02-29,a-5c6Co8swgwUu4joh9t4w,4,"I LOVE IKEA + +I really don't understand how or why some people just hate this place, but for me it's the only nice way to interiorly design on the cheap.",review,A_O8wZOsMTPwyeYA4-Rsow,1,0,1 +qMkIbQFrROSnPaQ7at85-w,2010-03-03,J0TY52OsoEV0gKNQzECopA,5,I love this place: look for the specials and the different events they always have going on. It's a great spot in the Valley.,review,7MJJ4dacV5wzslKT3izK8Q,0,0,0 +h6jfMpTZpNduLG0wE2tbaw,2011-07-01,Rp49hhNDWHpd2r7HxgpTnA,2,"One of these days I will learn NOT to take out of town guests to places I haven't tried first. + +I was pretty excited for one of my favorite people to come and visit. Her only request? Sushi! While I have my list of absolute AZ favorites (Tokyo Lobby, Toyama, Sakana, Hiro, Dozo) foolishly I decided we should try somewhere new. Having read many good things about Hana, the choice was made. + +Walking into the BYOB place with our Kirin Ichiban in hand, we were ready for a great evening. Too bad that isn't what we experienced. After being ignored for a few minutes by everyone who passed by and even the person behind the counter, I found someone to tell that there were two of us and we would like to sit at the sushi bar. Although there were spots open, we were left standing there for quite a while. Do you want to stand around holding a 6-pack and not even be offered a bottle opener? Me neither. Once we were finally seated, we weren't told about any specials, offered water or even glasses for our beer. + +Deciding to make the best of it, we ordered: +Yellowtail sashimi (good, the best item we had) +Spicy scallop nigiri (good) +Albacore sashimi (dry, not sliced through, leaving us top pick off overcooked bits and pieces) +Freshwater eel nigiri (dry and crumbly rice, falling apart at the touch) +Scallop dynamite ($15+ for 'krab'? Really?) + +The female sushi chef was nice but our waitress was nonexistent. Other tables and customers at the sushi bar seemed to be getting decent service (water, getting their beer/wine/whatever from the refrigerator) but we were left without water refills (once we finally got any at all) and don't even think about getting another of those BYOB beers we brought. It even took a while to get the unused bottles back when we were trying to leave. + +Lackluster food and nonexistent service at a premium price. No thanks.",review,n9Zg0jlOGtxfIrvoPm6Hhw,2,4,5 +-sAoGZTnFtDZUY9JYWHqlg,2011-03-21,idFgvz9xzEtefAP8m_vynQ,3,"Loved the room and its functionality but this same room made me want to punch myself in the face. I'm a young professional in his mid 30's who likes to party and understands what the W brand provides (especially on the weekends during moneymaker time) but when their DJ on Saturday night sounds like he's spinning from your bathroom, it makes for a tough stay. Got home at 12:30 a little buzzed and had a rave in my head until 2am. Finally got to sleep and loved the room and hotel otherwise, but this will leave you with a bad taste in your mouth. Maybe it's just a few rooms but 205 is a bad number here.",review,qO_DIl7_a_MrzmYp7JtmYQ,0,0,1 +NOq_vpCfCfYdMRPbaUG53w,2010-09-05,aLcjuPveeRgdbOv0H6608A,5,"Always great, fast and consistent! The service is excellent, the staff has worked there for years and is speedy to run around and refill drinks and clear dishes. It's nice to have the counter service so you don't have to wait to be waited on...because if I am at the mall I am there for serious business:) If you like a home grown grilled cheese and some tomato soup or a salmon Cesar salad or even a gourmet pizza this is the place. The brownie and the red velvet cake are hard to resist ...get both!",review,180tLY4YhUAuckejm5v53A,0,0,0 +MLVKDbuI2xaOJQ4-NZj2MQ,2012-11-26,oR8V6mERkrejkcJMMnNFWw,3,"I think Marcellino's will get a second chance for a special occasion. I visited the restaurant based on seeing it on Check Please Arizona. The food is obviously made fresh and was excellent but I felt a little overpriced based on other excellent restaurants in the area. Although the atmosphere was romantic, I had a hard time reading the menu and the bill using just the votive candle on the table. There has to be a better way!",review,QskaYxlEeRuZdBXtwV8KBg,1,1,1 +OOCLVeqqMFfSnKa7liv0Kw,2012-01-04,KEAM0GdTr7XyKZYBk-S7KQ,5,"I have long liked Tempe Maretplace since it has opened. It is a good location, lots of parking all around. Since when live in the extreme heat it is a bit nice that it is outdoors. There is a major selection or stores ,restaurants and services here. My girlfriend likes it as well. So it is a win win set up. They are decorated really well and they have a multitude of events here. Even a Barnes and Noble,which bookstores are not that easy to come accross now days.",review,kffxYQVQsEpF1DVlQlcGCg,1,1,1 +53YGfwmbW73JhFiemNeyzQ,2010-02-22,28r6XQ-nPvGSkQ7-9t3hIQ,4,"Walked into this place on a Saturday night (i am from out of town) with my 4 girl friends...this place is HUGE! Very packed and loud but in a fun way. Love the decor and ambiance. +Huge bar in the middle with a nice wine list and a variety of drink options. +The wait was a little annoying, as we had reservations and still had to wait about 40 minutes. +The menu had some vegetarian options, not a whole lot, but what i ate was really good. The vegetable Crostini appetizer was amazing and the Hummus was not that bad either. +I had the margarita pizza which was good, my friends had a pasta with chicken and they loved it as well. +The sangria we had was ok, I've had better in Chicago. The crowd was upbeat and lively, seemed to have quite a few out of towners as well, and the age ranged anywhere from college to seniors...price wise it wasn't the cheapest place but it won't rip a hole in your pocket either.",review,ayXTZqaRdXE9lTYKEgOKmQ,0,1,0 +FUI-hWH_bpis7AKZTWenUQ,2011-03-28,42rccUvqoRY9CLpo7_x2gA,5,yummy.. you will love this place. I love to sit on the patio on a nice day and enjoy! the sangria is amazing.. and lettuce wraps soooo great!! give it a try!,review,jhHmx7VoIM-MU9WZ8uGlyw,0,1,0 +_oQN89kF_d97-cWW0iO8_g,2012-04-27,aR3TyPBDWw0tGlReONIrhQ,4,"yummy food, friendly old guy-slow, but funny. + +cant go wrong with fried goodness of empanadas here. get the flight of empanadas if you cant decide...the one with cheese and vege is good! +tamales are yums too! again, get the tamales sampler for a taste of each. + +everything else on menu is delicious...and huge portions! love the plaintains!!! yuca fries...eat them while they hot! + +yes, they take a loooong time, just because if you peak behind in the kitchen, theres only 2 workers! the old man is trying his best to entertain in the front, while the two in the back are trying to cook as fast as they can.",review,Zyd78OiKPAqaMSC6OWLb6w,0,1,0 +mhQCxOiqp03qnhGRTtPduw,2011-01-10,PWr7_iQ-WcZI3yN9U21oqA,1,"After bad experience, I will never return. It is terrible since they didn't meet my expectation and the price is outrageous. The most difficult part of the Pho is the broth (req 16 hours of preparation) and it tasted like water. I had to add all kind of condiments to rescue it but can't even eat it. The restaurant is very slow now and it confirmed what I meant with Asian restaurant. If your fellow Asians don't patronize the place, it is because your food did not meet our expectation. Try across the street to the Rice plate Kim Thanh for their rice dish. It is night and day.",review,njEydjx43XGUVptxzviN4Q,0,1,0 +oiLe3lqMFaZtsSpRuIUChw,2011-02-19,Z25kEjnNtqwLum5LbFH6Ug,2,"I've been here a few times with my mom because she really likes it, but overall I wasn't impressed. The food was tasty, but the service was atrocious. + +It was busy the last time we went, but we stood around inside the door for probably 10 minutes before an employee even noticed us. There were other parties waiting, too. You just had to stand around and wait for someone to bother seating you in one of the open booths. + +Everyone was satisfied with their meal. I've had the spinach tacos, which were very tasty, and I appreciate having a veggie option that wasn't a run-of-the-mill bean and cheese or chile relleno. (I've had their chile relleno and wasn't impressed by it.) But no one refilled our drinks the whole time or checked on us. Not even once. + +Maybe this is better when you go at a less busy time, but the food isn't mindblowing enough to make it worth the lousy service on a Friday night.",review,1PWFPOmqvLx3sGKuuKQr9Q,0,0,0 +gi0bK6z2CC-hXgO5MKrnPg,2011-11-13,jJRQGEuTR262h9yVObrx0w,5,"Bike cabs beware! You've got nothing on this rig! + +Tour de Tavern is a tribute to tipsy teamwork and a perfect way to host a unique group event. As ""pedalers"" on their inaugural tour, we enjoyed the celebrity treatment of cruising down the winding streets of Old Town Scottsdale as onlookers snapped photos and cheered us on! + +We rocked out to top 40 hits and, by special request, our Lonely Island favorites on their awesome sound system. Our guides were flexible and let our party run the show. If we needed more time for let's say...... an impromptu horseback ride in front of Shotgun Betty's, they were more than happy to wait. + +As an added bonus everyone gets to burn off some of those unwanted cocktail calories in between your favorite watering holes. If you are concerned that after a few stops (and a few shots) your legs might lose some of that forward momentum, there are a few coveted ""non pedaling"" seats in the back of the bike. We all compromised with a friendly and fair rotation system. + +Our tour guides were helpful, accommodating, and entertaining. They even proved to be exceedingly patient upon discovering that we did in facts have ""that guy"" in our group. + +If you're saying to yourself, ""Such a marvelous experience could only cost an arm and least the majority of a leg"" then you would be wrong! With the cost of gas being substituted for sheer earth friendly man power, our group of fifteen people spent less than $30 bucks each for the experience. + +But wait, there's more! Included in this price are all the amazing special deals that Tour de Tavern exclusively brings you at select bars along the route. On our tour we were offered drinks specials ranging from $3 to ONE PENNY! I say this in all caps because it's ONE PENNY! + +So next time you are planning an event, I recommend Tour de Tavern 100%! + +""Look Ma! No hands!""",review,EiJ_9SMGu0JeHwZAWzVxcw,4,4,3 +dAJC97pUsxa1SucwFQE07A,2012-04-04,7f_Izm-keJEK8tVDgTqyow,1,"Was in town for a business meeting and tried to catch a movie with a friend. First impression of the place was that it needed a total make over. I mean TOTAL MAKEOVER. Walked up to buy my ticket, and the lady was a total jerk! She had no idea when the movie times were, and she clearly thought we were stupid. She messed up our change, and didn't believe us when we told her. When we walked in they ripped the tickets out of our hands. When it came time to order our food, the butter on the popcorn tasted like cough syrup. The theater was extremely dirty, and kids were screaming throughout the movie. After the movie I politely told the manager about our horrible experience. He was not understanding at all and even threatened to kick us out. I was appaled by this whole endeavor and that is why I am writing this review. It was a complete waste of time and money and I recommend everyone to stay away.",review,MJI4PpvkzHhcxNOyAK0GxA,0,1,0 +OFBJtqWGSx6n6CchtVmoRw,2010-08-09,eKCyt4_80v4E_Bkdl0M__Q,4,"I remember my first visit to Delux,it was before heading over to shop in the craziness that is Last Chance. Anyway my friend suggested this spot because of their sweet potato fries...that's all she had to say, I was down!! It's a trendy little spot inside of a strip mall, it kinda looked outta place but it stood out in a good way. + +I ordered the sweet potato fries they were yummy (I like mine a little crispier, but they were still delish) and the CHINESE CHICKEN SALAD...Mmmmmm the flavors were amazing, the red peppers, cilantro, romaine and that peanuty vinaigrette is too die for! I was a little worried that I wasn't going to get full but this salad was easily large enough for 2.I'm ashamed to say that the 3 times that I have been to Delux I have had this salad, I'm hooked. Next time I promise I will venture out and try one of these burgers everyone keeps raving about...maybe.",review,UBIeuiLY9PobybSgo0qhWw,0,0,1 +ZAd2hniecnqH00t01ODQ3w,2012-10-15,EABMAdFptkWwSv1mOkYZGw,5,"Costco Travel - My husband and I recently returned from a trip to the Big Island, HI that we arranged throught Costco Travel. After shopping around I found that their prices were the best and after one phone call I was able to make all arrangements for airfair, condo and car. They didn't have arrangements with any B&Bs on Hilo but were able to adjust our travel dates. Everything went according to plan with all arrangements being accurate. Condo was outstanding and a great value. We got gas and did some souvenier shopping at the Costco in Kona and again saved $$. I've shopped at Costco for years - now becoming a groupie!",review,CUIX6FcoHYQvsijPNTAwrw,0,0,0 +FdAi2yvDJC1LPZOLhaoo6w,2011-09-16,pa5aGV_Fc6KW99Lac265QA,3,"I got the chicken burger today, it is pretty good. Grilled, juicy, and cooked just right. The fries are always hot and crispy. The wait for the food took a little longer than normal, but I know they are very busy. + +Bummer our service this time was a totally miss. At first she was great, check came took our drink order and food at the same time (we were ready). She checked on us after our food arrived and we ever saw her again until the bill. We both were so thirsty, NO REFILLS. She offered us later that she can bring our refills in a to go cup. That is great, but I would have liked a drink with my food instead of choking it down.",review,_PzSNcfrCjeBxSLXRoMmgQ,2,3,1 +TqHTtjPANCBKGsjGBjDoQQ,2011-11-07,uYqdRTb0wzzmo4lOYPjOZw,4,"It was so hot on the day I went to this place, they were baking the pizzas on the roof! hehe! I was pleasantly surprised with the quality of the pizza, pretty damm good. I have 2 slices and one of Sicilian; all were just like NYC. The service was good too, unlike in NYC. :)",review,n1jU9uP2QuL0JaPlZFInMQ,1,1,0 +DGtOkc0KNTyK8rDkmsPNYw,2009-01-04,1NnBWHGaNinvJEeGWBCu9w,4,"I visited the Keg in Tempe on a Satuday evening to reconnect with an old buddy from high school that I have not seen in years. Overall, the meal was good. Service was prompt, and they had my reservation. The Keg has gone out of their way to have hostesses who could double as the models on the Howie Mandel Deal or No Deal gameshow, so initially I figured confusion would ensue. It didn't. : ) + +Beer was served cold and quickly when ordered, so no delays on the service. + +Their appetizer choices were mostly seafood which doesn't help me out. We got some kind of bowl of cheese and ""stuff"" and a plate of chips to dip with. It was ok, but not exceptional. I hope they turn up the appetizer department to take care of non-seafood eaters. + +Anyways, the Wedge salad I got was very good. Drenched in a bit more Blue Cheese than I would have expected even for a Wedge salad, so if you are adverse to too much dressing, you may want to get the dressing on the side. + +The steak I ordered was supposedly bacon wrapped, but I could not taste it if it was. It was a good filet though, and they did cook to my ordered temp on the first order. Always nice to get it right the first time! + +The loaded potato and vegetable sides were good, served fresh and hot, again, no complaints. + +Water refills were well timed and the service did not rush the meal or annoy. + +This restaurant would only hit a 3 for me, but the manager called next evening following up on my experiences. (They had my phone number from when I made the reservation.) I think that puts these guys in a good class since they are clearly working on the most important element of any restaurant, the customer service. And oh yeah, the steak was good!",review,XgIhw-aWaq_Fx3ZVQGjnuA,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2011-05-15,NDnDR9GdBwQh6NPrVDzUDw,4,"They say its bar food done right - I'd have to say I agree. Got the burger and wings - both very solid. Love the beer choices. The prices are very reasonable for specialty beer and good bar food. All in all, I am definitely going back regularly!",review,d0wJVf7Gv7v1B-HHYhxZtQ,0,0,0 +eBslbGvlDI92ppOi6CnTDw,2012-06-26,-WDXYJ5BL60JK-cS9oMV7g,3,"Okay so lets clear one thing up.. this place is a dump. + +But for under $20 a night it is a-okay for me. With all the money we saved I've got some extra cash to hit the strip club that sits directly in front. + +All kidding aside this place has impeccable location and is pretty much only a couple miles away from anything you can think to do. Of course the rooms are a little outdated and boring but its only a place to rest your head. And you can do that in peace. This has to be one of the quietest hotels I've been too. Almost seems like everyone is scared away from Christie's out front..",review,7i8MGa7zyWmaQli6o2-29g,1,2,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-04-10,KzpUj8PrwEWeT4EIHh31BA,3,"I don't drink, so my review will not be intoxicated by anything except the building. I gave it two stars for the building. They did a beautiful job with the remodel (I'm a mid-century and Haver fan.) The food wasn't anything to write home about. I have to admit that I'm particularly tough on restaurants filled with...I don't know what to call them...scenesters, I guess. Service was ok. Its not BAD, mind you, its just that I don't get it. I guess if you're paying with credit cards all the time, you don't care how much mediocre food costs, as long as it makes you feel cool about eating there.",review,XmpqbfSu9X7mjwJGUXTrAQ,0,2,0 +T4ox3wUzFjWvyrjaTRoBbA,2012-03-27,yUeXJqYayK6LVFHMP2NXoA,4,"There is a huge menu for this restaurant. Only tried sushi and noodle soup combo dinner so far. + +Lots of options on noodle soup dishes. Each noodle soup has a different soup base. The combo dish adds another small side dish option. Lots of food for your money. + +Sushi is decent and reasonable price. Great Japanese family-style restaurant.",review,QKCyMJB9hH-HbiQvAgBfiQ,0,1,0 +XkNQVTkCEzBrq7OlRHI11Q,2008-09-05,CMkgRY8pylURlTIcazJwAg,4,"The food's been covered before so all this review will be is further social proof that this place does indeed rock. + + I've missed good veal cannelloni for a while now , looks like I wont need to anymore:) For once it's not the processed grey stuffing that has one texture throughout surrounded by an inner tube ( Cough famous chain) Erin's Pollo Piccata was excellent and the accompanying pasta was perfect. + +Sadly they fed me too well since I was dying to try the tiramisu but the afternoons plans didn't involve refrigeration. Lastly thanks to all that saw the excellent reviews and kept piling them on it really makes a big difference on how likely we've been to try new places.",review,N3L6SDymSRkYQtTiSDmXSg,4,4,4 +5ILGSRh_dKKCl-sRgQBsUw,2012-07-19,a_IP7XU48mvAjUJw3ndqJQ,5,"I joined a friend for a two hour evening ride at CCO. We were the only two riders, may be because it was a Sunday eve and all the tourists were drinking their mimosas by their hotel pools. +The horses looked very well taken care of. Mine was 17 year old Sundance, a beautiful brown male. I've never ridden before, and he was easy to control. Our guide Ed was patient, funny and awesome company. He showed me the basics and was always there with a word of encouragement and a tip or two. +Tip for the guys, if you plan to trot, wear tight jeans, you will be thankful at the end of the day. The city slicker that I am, +I left my phone in my shirt pocket, ended up dropping it while on the ride and Ed helped us go look for it. The desert, sun set over the mountains and the sandstorm about 30 miles away all made this a very memorable evening. +I highly recommend CCO.",review,yKwixep2z46EoUVRU0oSPg,0,1,0 +hCS5eV0SCAY9LeeL36lz8g,2010-03-27,rDx51E3lGkco_J_YXSFcXQ,3,"Last night (Friday night) was the first time I had been back to Myst in years. The club is nice, but the promoter for Friday nights is urban... and not classy urban... like kinda hood urban.... BUT I must say that it's a fairly mixed crowd. Black... White... Hispanic... I was surprised to see all different types of hood folks out. Now, this usually wouldn't have been my crowd of choice, but my girlfriend and I were feeling adventurous. + +Long story short, the bartender was awesome and the wait for drinks wasn't too bad. They averaged about $10/cocktail. The cover was $15 and $35 for VIP (which allows you access to upstairs... not worth it. It's a recession and the dance floor is downstairs...) I'm not sure who the DJ was but he was really good. It was like all the best of Gucci Mane and all that Southern type club music... very good stuff. + +I gave a rating of 3 stars b/c while this isn't a place many of my friends would want to go to in the future on this particular night, it was a decent night IF this is the crowd you're looking for. Hey folks... I don't judge lol...",review,SSXLiQkrdPLd2YJhNyojhw,0,2,0 +MPziC5MO2QQiYVAMM3fdSw,2011-09-06,9PSk0p0cUOllZYlLFCcQsw,4,"I went here with a party of 6 on Saturday night. Our table was ready and waiting when we got there which was nice. It is an older place with tons of charm. The place was pretty busy and you could tell that the waiters/servers/busers were clearly over worked. + +After sitting for about 10 minutes we had to flag someone down to get bread and place our appetizer order. After that we only saw our waiter every 20 minutes or so so it was difficult to order additional items or to get soda refills. + +The service was pretty blah but the food was excellent. Everything I tried was top notch. Everything was freshly made and delicious Probably some of the best Italian cuisine around. Definitely some of the best gnocchi I've ever had. + +I would definitely return but hope the service is better.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,2,2 +-EctXOb3B7T177jGYUhjVA,2012-10-22,emya0c2njgYClVsUqxE2Jg,4,"I was just thinking how long it's been since I've been to trivia on Tuesday nights and it made me sad. I definitely need to get back into my trivia groove! + +Other than missing trivia, I'm seriously craving some Jamaican Jerk Wings. YUM!! Not to mention the delicious guac that they'll make at your table if it's not too busy. + +Great bar, one of my faves. Great servers/bartenders and fun, come-as-you-are atmosphere. Not a typical Tempe bar which is quite refreshing.",review,qAZUqkoRybZ_mS0ORO_0Tw,0,0,0 +EC9WB-iVjd28B6R6KIZ8TA,2009-04-27,1tIvinjuCskAJfoF6Zlunw,5,"SIMPLY AMAZING! WE LOVE IT! + +My hubby and I stopped in one day after deciding NOT to go to NYPD. +They were next door, and we thought lets try something new. We have been there 3 times since. You sit, and the food comes by and you just grab what you want off the rotating bar. ITS GREAT! Especially if you can not decide what you want until seeing it. We ate like King and Queen for $20.00. + +They have simple pricing, and it is affordable for a date or family.",review,Yw45IPdSZtICxMY0Tnu8sg,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2010-02-11,4vvdwQyS5uCSo74iw81irw,1,"I'd have to disagree with the person who said this restaurant is dog friendly. I was told off by the owner because I had a little dog outside table and that was right after I finished paying for an overpriced breakfast dish and coffee. I went here before that on several occasions and many times my order was forgotten, after paying....and the staff is real unprofessional blasting music at nightclub volume at early breakfast and lunch times. I'm a neighbor, but will never go here again!!!!",review,W5Pd_GmMem2LdHZkoxQCtw,0,0,0 +xmjv8g356v8Qo55ICjG8rg,2012-12-09,-E230CTjTphOKzr0P2BDxg,4,"I love their boneless wings! They also have a good burger, but I wouldnt recommend their chimichanga. Good beer and good service.",review,q1i41qr-zNBDj42dhB16Ww,0,0,0 +d7_jkx0VPx3uHsUl18iHMQ,2012-11-19,L7tMXkVoYKILEv3d7fftVw,5,"I have been going to Tish's studio for years now! When it comes to choosing a studio to practice at, the environment and the instructors are crucially important. Hegel Yoga provides an incredible atmosphere to practice yoga, and the variety of classes available leaves little to be desired! + +Great energy, great instructors, great studio.",review,EQ2pm01gowMVsFzjXtWOGQ,0,0,0 +BK51tV_XtCm3UHwRVyCuqQ,2010-04-11,KLke3fXGe0lWgBvgWEHygw,4,"Time flies when you're having fun... +It's been almost a full year since my initial review of Bacon, and I've been back probably ten times or more. + +I've seen a lot of transition with the employees but I can say that their service has gotten much better since the beginning. The casual atmosphere is right up my alley for a weekend breakfast, and my yogi omelette / protein pancake orders have stayed consistent too. + +I was there earlier today and while the service was spot-on, I did find a piece of ham in my otherwise veggie omelette - but I overlooked it and enjoyed my meal nonetheless... + +My husband has been to Bacon even more than i have, and he told me he recently sampled what's to come on their new lunch menu (think pastrami sandwich). So, go for breakfast, go for lunch, go for a Bloody Mary or a Mimosa... just kick back and enjoy your meal!",review,fczQCSmaWF78toLEmb0Zsw,5,5,2 +y9cQ0DBC0qFNgkpTXHzokA,2009-06-09,EHpwtXCYq8uIlxGjdcRfuw,5,DUDE..where is the manga....where are the card tables. .....What the heck is this place doing selling comics! This is outrageous! And why are you talking to me and trying to help me comic clerk! Your job is to give me a huge sigh and exasperated look as if I asked you to perform surgery. This being helpful and friendly is really bothering me. You guys are just too weird. I need to go back to Atomic.,review,jQxxHLXLbFsNYNWNdSjRKQ,1,2,4 +i6FVePCt5MHmXswAL2c2sw,2012-11-15,qEacLxi02hb_ZJf4Xb-JVw,3,"Good food, clean, with a friendly helpful staff. Price seems a little high for the caliber of food. Would give it 3.5 stars.",review,xYck-XrZR_FUSbVHAEiQVg,0,0,0 +byhwHi0lhYdyY5kSpuqoaQ,2012-10-16,f_Tcz7mZ6dELW_qNWCrLeQ,5,Best happy hour in north Scottsdale! Get there early to beat the crowd. Amazing cuisine and atmosphere.,review,370JyOQfFcPSB9_jk641gA,0,0,0 +a9Wk44qJLWoJQT-_H8MB-w,2007-05-03,Kco2SmvnlFN5OgdQ2LwCoQ,4,"I have gone here several times and have tried the pizza, subs and the calzones. I have not had anything there that I did not like and the only reason I don't give this five stars is because everytime I am in there it seems a large group with lots of young kids has just sat down (or come to run around me while I try to eat) at the same time as my date and I. I admit, I wish restaurants had sections for families so that those who do not like watching kids run around or spitting food out of their mouths on to the table could eat in peace, but that is just me and that is why I have dogs and not children. + +Anyway, this place has awesome food, good service and if you can handle large groups of families then I highly recommend you take the drive out here to give it a try.",review,kos4MkM2h0UAdupVDuTziQ,0,3,1 +sv8tYgFzIRKHHERURumyVQ,2012-08-07,tJ40zwu59uXmTh_PmWg7-g,5,Love this lake. Went paddle boarding a few weeks back here and had the best time. Lake water is so clean you can almost see the bottom. Highly recommend this lake if you love water sports and fishing :),review,89H9-Ius_EWMhAQ4zZuvOw,0,0,0 +LaHyoyMfcyPJmdeHmGo9lw,2010-04-12,qhri1v7dF3tHHbPLLUbxIQ,5,"This gym is great... I joined because it opened only about 3 minutes away from my house. I keep going back because every person who works there is so nice and greets you with a smile and a friendly hello. It is not intimidating at all, which is a big step up from the LA Fitness that I used to go to. The staff gets to know you by name and most of the other members are quite friendly as well. The gym is open enough that you can do free weights on your own without bumping into anyone and there are always plenty of cardio machines available. I've been going there for over a year and plan to continue doing so!",review,6o_ztIbYH6H8hY76pH0L7w,0,0,0 +7Z7IkR_-94AjUuDw0fbI7g,2008-07-24,_Vgu_sOtO34R6YyVtkn_HA,2,"Oh god.. I use to love this place its the closest store to me, and I have my safeway card so I'm good to go.. place is a mess. + +First the parking lot.. too small for the amount of things going on at this complex, I am shocked that there isn't a daily accident in the parking lot. People are impatient, driving down the middle of the rows instead of one sides.. I just got back from there and I was making my exit and three cars tried to go for my parking spot created a jumble mess, so much so I had to pull back in the spot so they could move.. ugh. + +Inside the story, they seem to always always be stocking and never seem to be stocked.. When I go I can never fully complete my shopping list, there is always something not stocked so I have to come back or just go with out it.. But today took the cake.. Its just after one in the afternoon, every single row there was at least one person stock, blocking half of the row.. its 1pm! Usually by 1, stores are stocked up, maybe one or two things to go.. + +There was also a cockroach.. and not to sound snobby but the type of people that tend to go to this on, I feel I need to carry mace or have a buddy.. + +So I may go back for quick in and out shopping, but for big shopping trips I'll drive out of my to somewhere else.. even with the gas prices..",review,fkZ_t7co7VxO2jPI9bD5bg,2,4,2 +Lfn_7TNBPNu9c2v_d2nE4w,2011-03-14,LaxqD3cR2nIJAQoqVS_j4g,4,"Okay so the only reason I'm giving Rigoberto's 4 out of 5 stars is because I'm currently on a diet and it's not diet friendly. So I'll write the rest of the review based on my pre-diet dining. + +This place is some serious mexican food. Not the fancy stuff, the good, mexican-at-home style. It's good at 6am, lunch, dinner, midnight, and even the 2am drunk-I'm-hungry meal. I have three favorites here. + +1. Bean and cheese burrito w/sour cream - the beans are refried with good ol' grease. It's delicious and the cheese is legit cheddar. + +2. Super Nachos - I don't understand how you can not finish this one. They give you a ridiculous amount of chips with a mexican buffet on top, but once you get the hot sauce on it, you can't stop. + +3. Carne Asada burrito, no pico, with sour cream and Guacamole - Cooked fresh on the grill and wrapped in the biggest tastiest flour tortilla. They even will sell you the tortillas by themselves if you ask. + +Enjoy!",review,P1XofswxyEb90r2bVN4LJw,0,0,0 +-4A5xmN21zi_TXnUESauUQ,2012-01-04,hPnOsZw09pvp7NuQ1reN5Q,5,"All I have to say is get the California Club. I live in the East Coast and I still crave for the sandwich. I wish I had the chance to try other things on the menu. The drive-thru concept is pretty neat, but there was a bit of a wait. Guess you can't rush perfection.",review,7t7DjEMt8w1xltTqpDtuNg,1,0,0 +jJhNOhuGpIsJX5SEUFFWYQ,2009-05-05,uMQ4juin9OVWjvOnLn--NA,4,"Someone asked the question in the Yelp talk threads where the best place was for fried things, like french fries and onion rings. Several people said Ted's had great onion rings......so off I went! + +I expected a smaller place but I was pleasantly suprised when I pulled up to a medium sized store. I was greated with a smile and asked what I would like. It was a Sunday afternoon so they were not very busy. I liked the fact that you tell them what you want and they toss it on the grill right in front of you. Everything is freshly cooked. They did the same with the onion rings and french fries too. Everything was fresh and hot. My daughter had her favorite....a hot dog, which she loved, and fries which were fresh and crisp. I had a burger and onion rings. Yes, the onion rings were delicious! The batter was great and the onions were a little on the sweet side. My burger was cooked to perfection. + +This is another great little place we will go back to. It's also sort of near my work so maybe I'll get out one day and go here for lunch. Thanks Ted's and Yelpers!",review,ZmIgP4U4Ht9CYmNX0_zP6w,10,12,5 +nMm5NomMHQgWHAtmvVCHlw,2012-06-02,Zb3bRkJp4JzN1E7fL26xjg,2,"Way over priced. They replaced the valve below my toilet, the float in the tank and the small water line going from the toilet to the new valve. It took them less than 30 minutes and my bill was just over $400. I priced all the parts at a plumbing shop and it came out to $35, and thats my retail price!! They also charged me $69 just to show up at my house. The plumber was knowledgeable I will give them that and if you really want to use these guys try and get a quote over the phone first.",review,YIiQx-XtRVKWVQ4LCaEuLA,0,2,0 +AyvyWENKpPBOFnFFkZuAyQ,2007-07-06,PuLN4Y3O8L3OazUDu7Iu4g,4,"I'm a little bit country. I'm a little bit rock n roll...thank you Donny and Marie. Pinnacle Peak General Store is all country baby. 100% U.S. grade countrilicous! Well, ok, it's in North Scottsdale so it's got a pretty yuppified clientele. Part gas station, convienence store, cafe and post office....this is the cutest place ever. Was kinda my morning hang when I lived at DCRanch. Cup o joe, and the #1 Breakfast with 1 pancake, 2 eggs and bacon. I'm tellin' ya...it's good. Hard to screw up bacon and eggs so I'll rave about my pcake...a bit crispy around the edges and full of buttermilk flavor. Syrup is heated just right and comes in a squeeze bottle the waitress pulls out of her apron pocket. Is that a squeeze bottle of syrup in your apron or are you just happy to see me? Coffee is sturdy and aromatic...like my lesbian cousin Rita. I haven't eaten off the lunch menu...to me it's all about breakfast. My friends have ordered and enjoyed canteloupe with cottage cheese and some kind of omelette which escapes me now, cuz, frankly, I'm not a big fan of the omelette. Childhood trauma and I can't go into it now. The funniest thing about this place are the copper pots and other bric a brac hanging from the rafters that are all for sale. Some of the pots are like $100! OMG....They also have a gas pump that's like $5,000...I guess that's where North Scottsdale meets the country general store. So hitch up the wagon and skeedaddle on up to the Pinnacle Peak General Store. Tell 'em Thomas sent ya",review,C8ZTiwa7qWoPSMIivTeSfw,10,11,9 +yLJeaZrH826Udsh_G8ZP2w,2012-03-15,LZ5kntM1-goTrwBSs9U7-g,5,"This is the BEST hit or miss bargain spot for everything. I frequently find great deals on quality body care products (be sure you know how to read the labels, there's a lot of low quality products in the mix), designer sun glasses, shoes, clothing, housewares, baby shower gifts, pet gifts, and guy gifts. It seems I go at peak hours, where lines are incredibly long. I see it as a small price for Macy's quality at a Walmart price.",review,fy64dq8l5iHNZ3cpYShjng,0,2,0 +Bjt3rB73dvSDe1XEPEWc6w,2009-08-19,QvfMLI7O9FVg5GbcoJormA,5,"A prospective customer at Sakana must check out the Customer Appreciation Sushi Roll menu before ordering from the ""main"" menu. Customer Appreciation rolls are the full size rolls at most Japanese restaurants in California and tastes just as good if not better. + +$7 for 5 large cuts of Hamachi sashimi. Add $2 for a bowl of sushi rice and you will be in sashimi heaven. The Ikura at this restaurant are the best I have ever tasted anywhere. + +Beers for as afforadable as $3.25. Sodas with free refills for $1.95. + +Can you find this quality at these prices in Scottsdale? I didn't think so!",review,aCEIROtbwx0Tdl3LPqSwUg,1,1,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2010-05-18,DoZ5B3tIhv_kCUXavlvGGg,4,"Recommended by the hotel I was staying at, this place rocks! Open seating and fantastic food... perfect set up! I had the Hot Chick, which was a perfect grilled chicken sandwich with arugula, roasted tomato and smoked mozzarella served with spicy avocado spread on ciabatta bread. Topped that off with their sweet potato fries and you will be in heaven!",review,cZbpUFLE2A6DOEglucSMWw,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2008-03-25,EQu1fQG8Qd9QJ5Jw4-u90A,5,"Ted's rules. Great char-grilled hot dogs, killer onion rings, and a great atmosphere all add up to a good old dog-eatin' experience.",review,clTYUJCL-rHnVIS2WePRwA,0,0,0 +BeFfCEwVRn9tDlqsiD6jvg,2012-03-13,ej_e4nAPqFtbUfHPoXjoBQ,2,"I just moved to the area so use Yelp but was very sad that the experience here was not worth making a return visit. The only reason I am posting is because it has not been reviewed in so long. + +I did not like how the spa pedicure was one price and then things you would expect in a spa pedicure was ""upgrades"". I want to ask for a pedicure and then lay back enjoy the chair and some reading. + +After the pedicure, the woman left me in the chair for my nails to dry and think she completely forgot about me! I would have left if she had put my flip flops on before painting my nails. + +Their child was cute, but I do not go to get a pedicure to play games with other peoples children. + +Then to top it off, when I paid she asked for my pin as she was walking away (again)....no pin, it was a credit card....usually this would not bother me but I was already frustrated at this point.",review,xDB5RW_smkOT39BY2SEchg,0,1,0 +7KCLeDNdFDkdoA6MUavxwQ,2012-08-31,M6Y_nw3iEluIzTTbMzCeWw,2,"2 stars all because the hot sauce sucks now. 2 stars: 1 for a Buckeye Icon and 1 for most of the food is not bad. +Service is bad and slow. Servers are not trained in good service skills. Dirt parking lot sucks, be carefull not fall into one of the holes. +Hope you are not handicapted and have to use the bathroom.....it's outside and to the left, suprised the Building department OK'd this place.",review,qgisS_mAaeipEH5kxL2qGQ,0,1,0 +WUZxVr_CaRqEQgzvyeK5tw,2007-03-02,o-d96DiKIKvMjLOAGe_UJQ,1,"I'll be charitable - this place sucks! + +I went there because a friend had *exactly* the piece of furniture I needed and he got his from Ikea. After wandering around the store forever, I finally found the right department. + +The people working there were cold. uncaring. not helpful. no concept of customer service. I left in disgust! + +Couple of days later, I was in Cost Plus World Market @ 18th St. & Camelback. Voila! I fould what I wanted - for close to the same price. the BIG difference: Warm smiles, friendly people, volunteered to go out of their way to help me. Felt like I was among long-time friends! They even delivered when they said they would. + +And, no need to drive half way to tucson and back! + +Ikea? Don't be foolish. Cost Plus? Now, there's a place that earned my repeat business!",review,2KyJLMY3jmASmwtnmlBuvw,0,2,0 +gqLWBFxOKag8dXwVxEvTrg,2011-10-03,1kc50TqtMsIHDGR8yQgF8g,5,Love this place! Amazing Happy Hour Specials!!,review,73eZuIuXVD5sif7GrIMfuQ,77,76,0 +BL3SqCfSJuDTNDR9_b9NdQ,2011-03-24,g2aCQ84DUNbhZjk1CCMCWA,4,"Pretty yum! Some friends and i decided to bike here last Saturday afternoon and this was one of the places we ventured! I only had the drunken geisha during happy hour and it was delicious! Others grabbed some food and i didn't hear any complaints. Our server was awesome and even put our last round of drinks on ""hold"" for Happy hour pricing, which was extremely kind of her! Nice patio, and great happy hour prices. + +P.S. i would not come here during regular pricing hours.",review,4mr5Ys9VKe87c_kgpRbQ0Q,0,0,0 +vSEFzop2GDXsIWTLxIGMiw,2009-04-20,ehB-hp-aOwcpk_9d9M4RTw,4,"I give Riva's 4 stars because of the secret top burrito in town which is the California burrito and have them put a chilli relleno in the burrito which is the best of all worlds. So basically this burrito consists of carne asada, potatoes, pico de gallo, cheese and a chilli relleno all wrapped up in a delicious tortilla. Once you add some hot sauce to that it equals one of the best burritos in town. I learned of this only because of one of the employees telling me to get it this way because all the people that work there eat it this way. You have to try it!",review,V1k7XMUX4qHVUi-3IUYzhA,1,1,0 +49RRQ0nE8XugVuvowiVv2g,2010-11-14,trszp57AKwKd3LnSidU3aQ,4,"Nice people, great food. A really nice white linen place. Loved the chicken karachi, naan, samosas, chicken pakora. Wife had a lovely red, I had a nice premium margarita.",review,1diI7PX0AxbbtiUB7nPbuQ,0,0,0 +9BJ5h9X1krpXFjKj0a6wbg,2007-11-12,gC2iatP_SR0iclkCRXTLjw,4,"What an incredible little hidden gem! I have lived here for 10 years and been to Richardson's a number of times, but I never even knew that Dick's Hideaway was around the corner hidden away behind those beautiful bougainvillea's. The dcor was warm and woody with a very nice rustic feel. This little place has the all the charm of the guys working inside. As cozy as it was, I immediately felt like I just walked into that place 'where everybody knows your name'. My friend's and I met for breakfast. High top wooden rustic table or belly up to the bar? Very comfortable, either way. I was expecting the typical two egg breakfast, but to my delightful surprise, they have their own spin on breakfast. Not sure if any of you had been to Richardson's (same owner AND same owner as Rokerij), but I swear they have the best red sauce on the planet. I had 2 eggs, over medium, next to some rancho beans topped with a little bit of cheese, and some breakfast potatoes, ALL on top of a fresh flour tortilla. The best part? My eggs and beans were topped with their famous red sauce. OH YEAH. We were in heaven. I think we have been there once a week ever since. Highly recommended! A +++",review,3WyS2BN2QWzUi-VuPk8kFA,2,3,0 +_TekkyyFeX_8MBepPIxuTg,2012-08-09,IwujucKW_I4Hd-D47N3jWQ,5,Perfect place for a hot summer day. Amazing paletas! Friendly staff and fresh ingredients. Welcoming environment in downtown Chandler.,review,ngU1vdwjT2lGOsdTq1JK5A,0,1,0 +gMMAz-WbNpl_825lWbMnkw,2010-08-16,tMI1PZPk6WzZjhUmY3RCMw,5,"This is by far my favourite department store, hands down. I have had nothing but perfect experiences in this store, without exception, no matter what department I'm in. The shoe SA's will bend over backwards to help you find a specific shoe, and the staff will even go so far as to send out hand-written thank you cards to your home address after you make a purchase - big or small. Tim & Anthony in the shoe salon are fabulous beyond words! + +I am not completely sure that I understand why people complain about the amount of merchandise on the floor or the lack of crowds in this store. Frankly, I would rather not be bombarded with merchandise and other people. One of the things I love the most about Barney's is not only the prompt attention of SA's, but the fact that they aren't rushing around trying to help 35 people at once. The SA's at Barney's are incredibly friendly and will stop to have an actual conversation, regardless or whether you are purchasing something or not. I have also never experienced a ""high pressure"" sale situation here. + +All in all, Barneys is pricey, and there is no getting around it. But, um, so is Neiman's and that place is a crock. Anywhere that ONLY accepts American Express or their charge card and then treats you like scum if you aren't carrying neither is no place that I want to spend my hard earned dollars. Yay Barneys!",review,g2ihR0ZFKCEnKB7YPviuJQ,1,2,1 +3l72FflaaeI0tWEAWN3-gQ,2010-06-30,3CtI_7Pset9_IqD49kkYog,4,"Eaten here a few times (7th street-Coronado district). I can say the place is small but has a cozy feel to it. It's an old converted house to restaurant. + +The food is a little pricey considering the portions are not huge (like Filiberto's or Carolina's (Extra Yummy). But the food was decent. + +I've eaten the Vampiro, Carne Asada Burrito, Chips n Guac/Salsa, and America's corn (yummy!!). My eyes are always bigger than my stomach :). I will say that the last time I did get the corn, it was a little under-cooked. So it was a little harder to chew...but regardless, it was still good. Smothered with mayo, butter, and cojita cheese I think...how can you go wrong with all of that yummy-ness!! + +I would visit this place again, if I am down in that area. They also allow you to order online which I think is cool because that line gets very long very quick.",review,51-53fVvMVBTwQQaUZSozg,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2012-02-10,EDw6iljkLMSePlIPYo_D0A,5,Guacamole was best I've had!,review,2-xLV_tit_LV75rYOPdtYw,0,0,0 +jUQpIF_bhhF_XQqScrt5yg,2008-07-02,V3_anXw_FidnGWa1hqQV2g,4,"So I e-mailed East Maryland the same afternoon as my visit, explaining that I was disappointed that the coupon I had given them was not honored, and they e-mailed me back before the end of the day, apologizing and letting me know that my Visa would be credited the amount of the coupon. + +Then they called today to see how the boys were all doing after their shots, and acknowledged the bill issue again, and hoped that everything had been settled to my satisfaction. + +This kind of immediate and friendly follow-up redeemed them and gained them another star.",review,N-D-d1Z4UybdlkK1HxlNPA,1,3,0 +7p0OI2Ld46-EzJkRHGQEJQ,2011-09-04,TDgU176i8wejwZ-tBQLrxA,5,Love Bakers. I live in Glendale an it is worth the drive to go see them. They know their stuff and am always pleased with my purchases.,review,ITBs8txD0Zu-YuxXCGqokA,0,1,0 +iV7D7fHKb-bF9fCL_bEMtA,2012-11-25,lfP-h9GlmgqqAlqcPgvXhQ,5,Excellent.,review,e-89w7FUWyUKgAELA75E3w,0,0,0 +nBfusVbqwul0BU0Rcrlelw,2012-10-20,gGc-oCOCbqn1qiP5lCmtvw,2,"Food is always great! Tootsy Maki is always awesome. The music is always great. But the service... The service could be so much better. I came here with my daugther, sister, and some co-workers. I had surgery that restricted me to a certain type of drink. The waiter said I had to throw my drink away do to health code. I was fine with that so I put my bottle in my purse. I asked for water so I could add my protein powder in the water provided. I was mid way finished with my drink and instead of her asking could she refill she reached across the table and refilled my protein powdered water with lemon water. WTF? Also the booth we were in smelled funky, like dish water... eeek! I will still come for the Tootsy Makie and Tempura Shrimp but I will make sure I always sit outside.",review,kE2Dw1sKMeaDOpyZNVQKJQ,0,0,0 +wNsmt1hF1uv3YvbwXZMAoQ,2012-01-12,HW7FkQO5C-Ln3koaN9adDQ,4,"Truly don't appreciate the pathetic TEASE they have by naming this place with initials, yet refusing to tell us what they actually mean. If there isn't a clear meaning, then you're lame for having a name like this. Please, drop the act. + +They don't brew their own beers as of now. They're contracted out by someone else (Grand Canyon I think, which doesn't have a good reputation for award winning beers). + +Large tap selection, but sadly it is heavily skewed heavily towards Arizona beers which are not exactly highly rated, nor sought after by those really into great craft beer. Luckily they still have some of the better regional beers from California & Colorado (among others) on tap as well. + +Food is extremely high in price, excluding happy hour. Maybe they'll do better than the failed German places in this location before it.",review,joIzw_aUiNvBTuGoytrH7g,1,3,1 +UVEnZjATEGkKLFdzV_dTvA,2010-02-27,oJ3ABX0TfGrWnG_QMowz4Q,3,"3 stars is being generous. + +Went to Tesoro tonight with my husband and two teenagers based on the glowing yelp reviews. It is a very small restaurant, 9 - 10 tables with a small waiting area out in front, facing the strip mall parking lot. We had a reservation for 7:30. Arrived on time and were apologetically told that our table was not yet ready. Had to wait out front for 20 minutes shivering. + +After we were seated, drink, wine, and appetizer orders taken, we relaxed and began to settle in. Problem was, it is a very loud room. Conversation was a challenge. Looking around, we realized that we were the youngest table in the room. Average age appeared to be 60+ years old. Oh, well, young and hip it is not. Hopefully the food is good. Bruschetta and antipasto were tasty. For entrees, we ordered the homemade Fettuccine Bolognese, Spaghetti al Pomodoro, the Chicken Saltimbocca and a special, Farfalle with shrimp and asparagus. Flavors were good, not great, but none of the pasta was homemade. Very much a disappointment. + +On the upside, service was very attentive and friendly. Unfortunately, food is only mediocre, and the strip mall location is a definite detraction in size and ambiance. Would I return again? No.",review,HDu0xxgrcsU8acetpFXwzA,0,3,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-11-17,Kw3g_nAZEW3bsKxW_bC1aA,5,Terrific food and service. Happy hour from 3-6 is totally worth it for the free children's meals and half price drinks. The french onion burger is delicious!,review,Hm8mxRyPSQqTPq0JVWNSpw,0,0,0 +FCcFT610nQBVcRdY-devQA,2012-01-29,11ynKWMTn639vhilKeNfEw,4,"It seems to be a constant challenge to find a bar and restaurant in the east valley that is not only NOT a chain but that also has a great atmosphere, an attentive wait staff, a fabulous wine list, and a unique food selection (without being too out of the ordinary). Vintage 95 has all of these! Not to mention how refreshing it was to deal with a hostess, Jocelyn, that wasn't 16 years old and actually knew what she was doing! When we were seated our waitress, Emily was friendly, knowledgeable, attentive, and never rushed us. The wine list is extensive, however, I think they should add more low range wines in the $25-$35 range to their list. The warm and cozy decor of the place makes you want to stay and eat and drink for hours. The outdoor patio in the back has a great fire pit and romantic lighting. I HIGHLY suggest making a reservation or you could be waiting a long time for a table. There was a problem with one of our entrees and the manager took care of it immediately. I look forward to my next visit to Vintage 95.",review,dc3XOXCmEwhdjKwVSiEaPw,1,1,1 +qNoNkF1yJctEs3t40VkX4w,2012-01-14,60Tt5o4gk9FxKzB4yacVbQ,2,"I rarely disagree with the average yelp ratings... I tried Blue Adobe based on great reviews but was greatly disappointed. + +I really can't find a redeeming quality about the night... I had their ""killer margarita"" which is a cheaper house margarita, it was lousy, i was a bartender for some time myself, there is no reason to make a margarita that bad, you can do better, especially here in AZ we are a mecca of citrus! + +The bean and cheese dip appetizer was uninspired, nothing special... I saw lobster tamales on the menu and couldn't get past them, i could not think of a way that someone could make a tamale with lobster and make it well, so i was really excited to see how they do it... poorly was how they did it, lobster was over cooked there was very little of it in the tamale and the biggest issue was exactly what i thought it would be, the corn masa just overpowered the little lobster that was in the tamale... they could have put imitation crab in there and saved them self a bunch of money and it would taste the same... it just doesn't work! There was a raspberry chipotle sauce on the side that was very good, but again this too took away from the whole point of the dish: the lobster. + +tried a chimmichunga, whatever, not special. + +service was no good, our waitress was very frantic, I felt like i was a burden or a bother to her (and no, I'm not. I've spent years in food service, makes you very kind to your server) + +It seems like snow birds keep this place in business, the restaurant was full of them... they must forget what their experience was like over the summers...",review,rK9w3-3GJqnerxejMCbLLg,0,1,0 +vNQn_2P3lJh_-uBhRuSc3Q,2009-03-16,pvMePbPNRThg5-yb-GvLyQ,2,"Years ago when I lived in Berkeley, California, this was THE place to buy camp gear and outdoors stuff. Now, there's competition, and I don't shop here any more. Why... Prices. Yes, they have a lot of stuff here, and their employees are very knowledgeable. But, I can get the same stuff cheaper elsewhere, and its also a lot more fun to check out gear at Bass Pro or Cabelas! I don't buy into the whole co-op thing either- Prices are still too high for me.",review,iBO2m9xXivsIbvFnZHsNvg,1,1,1 +QbqJEXdngh_9fwqVTI0CJQ,2012-01-28,3-gf8Z8qZ-qzok4fEwq_Hw,5,"Some of the best pizza I've ever had. The sauce is amazing. Every time I'm in town I get the sausage and pepperoni with extra sauce. + +There's nothing else to say, really. Go here for good pizza.",review,gBTEAlR4UdxiVOF_3oui0A,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2012-01-18,KDx1RJ_SaK75KF4mIvHc5w,4,"I love love love St. Francis!!! The food is very delicious and the staff very attentive! Our party was never dry on drinks, we had bread brought to us. + +My only nag is the seating...very cool the way the set up is of the restaurant...but i really didn't like have my back being brushed up against by a complete stranger...i got a little claustraphobic. But other than that, i love it! I'd prefer the patio seating next time i go:)",review,KA-GVrDP0huPS7zs5tmS1Q,0,0,0 +ZRJwVLyzEJq1VAihDhYiow,2011-05-18,3EefslA0RHT9gVyePIZ3Ow,5,"Great Pizza. Great Service. + +We've been here a few times since it opened. And always look forward to going. We have never had a bad experience. Each time has been great. Our waiter Dave was perfect, always on the ball.",review,VO_L_lbT7v6ni0El2Tp1ng,0,1,0 +W7xb2iS4cYL14Yi5LOGSkA,2011-11-04,yxRrRKfcfHkZll32Ts-BCw,1,"I just had a pretty unfortunate experience at Bison Witches in Tempe. I remember liking this place when I went to ASU but not anymore! It literally (no exaggeration) took 1.5 hours for our lunch, which was 3 people eating soups and sandwiches. Our order took 45 minutes to arrive at our table (again, soup and sandwiches!), and several tables around us that had come in AFTER us, got food before us. I normally am pretty easy going about stuff like this, but the server and a guy that appeared to be a manager/owner didn't even acknowledge the long wait time, no apology, nothing. They weren't even that busy! Our server barely even spoke to us when she came to the table, and acted like we were inconveniencing her. I also saw her roll her eyes at another one of her tables as they got up to leave. What kind of service is that!? I wish I could say the food was any saving grace, but it wasn't. Mediocre soup in a bread bowl, less than mediocre turkey on a bland sandwich. I will NOT be going back, there's no point! Save your time and money and hit up another one of the tasty places on Mill Ave. Trust me, you'll be better off!",review,TVL1e0NHhxAE6PpeXGfTOA,0,0,0 +dhk7wnnmWP3Fr9rj9p39dw,2012-12-06,V1Fln_9ExGbglhYfn3isPw,5,"DECEMBER 2012:They still have the ANGRY WHOPPER!!!!! +Best whopper EVER. +Mine goes no lettuce, heavy onion, heavy tomato, and BBQ sauce on the bottom bun. +It's THICK. + +55 year anniversary --- second whopper 55 cents! +DEAL!!! + +Really, have you ever had a BAD whopper? :)",review,zGz5NI4sscO4_6YYH-qVtA,0,0,0 +Li5LOL873Ep8HoPRML18sw,2012-10-26,bhGUG6-Of6O-1ONfUuvcvQ,3,"I've been coming here for a little over a year and I can't say that I've ever been really all that impressed. + +Yes, they ""hand wash"" your car but I feel like that's the only pro on the actual cleaning of my car. I've never really been happy with the vacuuming, not sure that they really do anything other than the mats. When I get in my car all the old fuzz and hair is still on the seats. The last 2 times I've been there they've missed cleaning parts of my car and I have to say something. The last time they cleaned 3 out of 4 of my tires, even a stranger commented to me about how he found it odd they missed it. Also, asked for air freshener and when I got in my car it still smelled like ummm, well it didn't smell fresh and clean. I just left there and again I had to ask them clean the inside door. It was covered in dirt and dead grass, how do you miss that?!? When I called someone over to clean it he then noticed that the wind shield was still dirty. I mean, really?? And again, no air freshener even though I asked for it. + +I gave 3 stars instead of 2 because I do appreciate the fact that this is not a chain. I'd rather give my money to a family owned spot instead of some corporate junk. The tall, blonde woman who greats you is always very nice and helpful. I like that I'm not hounded about getting my windshield or cracks fixed a million times and sometimes they offer deals on LivingSocial which is great. + +Overall I feel like this is a good place to come and just have the surface of your car washed unless you want to pay big bucks to actually see a difference in the inside of your car. Make sure you check your car before leaving to ensure they have actually cleaned everything.",review,gM0sIR19KRNp7Rl5KK1mZg,0,0,0 +zruUQvFySeXyEd7_rQixBg,2009-09-06,lWJt5OVDUqqfX4gRXwVUug,5,"this was our first breakfast hit-up since we moved back, and gotta say it again....the protein pancakes are still da bomb. so lucious, cruchy yet soft, sweet yet salty, healthy but so much syrup...mmmm! go at an off time or you'll be knocking elbows with the elderly.",review,ST8Yzlk2MqKlcaLqL2djBg,0,0,0 +MAfc2V_EVtyR9rMxxEAPLg,2008-09-15,1liuCe8NFn4G1pQCoXe-fA,5,"AWESOME!!! + +I love this place! I am from Seattle and I've been struggling to find a good pho restaurant since moving out here. Khai Hoan reminds me of some of the restaurants I used to go to back home. I love hole-in-the-wall family restaurants like this one. No fuss, no frills. Just good food and fast service.We were greeted, seated, ordered and got our appetizer in 10 minutes. Food was delicious!!! Definitely go here!",review,MqKtiMUnd1CdvNKUIlNspA,3,3,0 +Mb46iSlA4qmTwXf-WrqtQA,2010-11-18,Z6A9dBAZG1aBm2OCCphJLg,2,"It's cute. It's homey. However... + +You close at 6pm on a Wednesday night ++ +You were going to charge me 50 cents to process my debit card += +I left with one drink and won't be back + + + +Too bad too since my best friend lives around the corner. We would have lived here ...",review,T5mD6ggC7fh48QgXR0LevA,1,5,2 +JokKtdXU7zXHcr20Lrk29A,2008-01-14,6EDCixSnNJCoKqhjp1p8lw,4,"This place has great food - some of the best ""bar"" food around. But you really go for the beer. It's a brewery, right? + +I haven't tried a beer I didn't like here. There should be one that fits your taste, even if you're not a big beer drinker. The prices are reasonable and even better during happy hour which has two convenient times during the day (regular and reverse). If you're unfamiliar with the beer choices try a sampler and then grab a pint of your favorite!",review,7kRN8IkOWlLblEltNlnfRQ,1,0,0 +m34siNIv_F15LIzkmxP7-g,2012-07-17,eRCQPBqtEDRcMCi6ZKtcFg,4,"Just had a couple beers and some appetizers since it was late. + +The rock bottom ipa is a fairly decent ipa compared to the numerous I have tasted. Just had the one beer though so can't speak to the rest of there drafts. + +The chicken quesadilla and the ahi appetizers were very good. The ahi was a sushi type appetizer with a soy based sauce, garnish, and chop sticks. The quesadilla was good and I had no complaints about it. Service was good for a Sunday night and they are open late. Kitchen closes about 11 though. + +I will be coming back.",review,CrOoT6cjYJfIAVaxCUEaXg,0,0,0 +da4sxvGynhpDOGiBtbMYxA,2012-06-23,HWpeQV8xJ-WBrSUQfDKfog,3,"They have on campus night classes for MBA students, which works out well for people looking to continue their education. Some teachers care, others just use it for the pay check. The accounting classes have been great, some of the others have been terrible. There is a ton of counselor turnover, but they put too much stress on those people for the amount of work they do. If your employer will pay for it, an MBA on the resume can help a bit. At least they are quick to provide information on their programs and admissions process, unlike ASU who just want you to pay the application fee.",review,Iq_2tq-f_NyhcAa6Yim-fA,0,1,0 +QGFdc1xfKIX0BOZO1mKTuw,2009-02-25,cxoH2luKdFD76UCkjdKlJQ,5,I had a facial with Jennifer and it was fantastic! She used all proper techniques and overall it was a very relaxing and wonderful experience. Would definitely recommend this spa for anyone living or vacationing in the area.,review,q-g75q4Xl-_ODWSuyugwAQ,0,1,0 +iwzHQ7aBPrxKybarW5q5TA,2010-02-06,bK2A0OKfyDtrOzk_cdESew,3,Pretty good coffee. Nothing special but better than starbucks by far.,review,KucBnMrhalzxnD9AWrxwYQ,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-06-18,vLYR6S8agEOkOfE0L4xVXg,3,"Perhaps if I waited outside in the heat for an hour plus to the point that I became starved and dehydrated, I too would have thought Matt's was worthy of 5 stars. Or maybe the 5 star reviews come from people too ashamed to admit that they wasted most of their morning on a very average breakfast. + +In my case, we came here before 7am on a Friday and got the last available seats by the window. Service was great; I didn't detect any attitudes from the waitstaff that has been mentioned in some reviews. They got our meal out quickly and made sure our coffee mugs never got empty. + +With the exception of the toast and jam, the food never rose above ""good."" Isn't that pretty sad that the best offering from a breakfast diner is the bread? I liked my waffle since it was a bit crisper than what I can do at home with my geriatric waffle iron, but there was nothing noteworthy about the flavor. My husband said his eggs were cooked perfectly with his chop and chick dish, but the pork chop was under-seasoned. He found the hashbrowns way too greasy to be enjoyable, and the bacon suffered from being overcooked. + +Maybe we're spoiled since we have two great breakfast places within walking distance (Joe's Farm Grill and the Coffee Shop). Matt's just isn't worth the drive or wait.",review,o2CGc1kQHEFkYOECM3NFdg,0,2,0 +S8O3BoCDEK-te8U-0IvZog,2012-05-20,0myOXJI9m2gKPkxF7A7JTg,3,"First time there the other night. Friday night, not very crowded for 7:30pm. We were shown to a table in what looked like a back room - the table was not set, there was just a tablecloth and that was it. The room is to the right as you walk in. There were only 2 other tables in there and the windows were covered (no view) - it was weird so I immediately asked to be seated in the main part of the restaurant. Decor seemed 'cheap' - just my initial impression. Food was pretty good. Pancetta wrapped shrimp app was good; Service was good. Entrees were pretty good - Chicken Parm, Fettucine Bolognese all tasty, but not sure I would go back. Caesar salad was a bit disappointing...asked for anchovies on the side - never delivered.",review,7u3eL3IodZLq4a1ORGJmrQ,0,1,0 +L9UYbtAUOcfTgZFimehlXw,2012-03-26,M55Sei3wMVobnGQESnpTVw,5,"Yum, yum, yum. + +I have put this in my regular rotation for every time I'm in Gilbert. They have great sandwiches, sides, and burgers and for the most part we have had some fantastic service (my friend has had one or two iffy experiences but mine have all been great)... this past weekend I had one of their burgers of the week which had some white wine grilled onions with Gruyere cheese and it was KILLER, probably my fave burger I've had there. I've also tried their soups which have been great and their grilled cheese. The Caprese Pasta Salad is so refreshing and a fave side of mine!",review,zpFyNx7UId-nFl-FUAlOGQ,0,0,0 +jnzROxEjNkgeo5Ju3F8qzQ,2008-12-02,xRW_1aHFX_8NZ1Zo5CLAwA,4,"Neat!!!!!!!!!!!!!!!! + +This place is like a trip to a non-petting zoo and aquarium and aviary while you dine on fairly decent Mexican food. I was here for a late brunch and didn't wait at all. I was near a window that right on the pond, and just about every turtle in the pond crawled out to come on over and see what the Rock was cooking and how I was enjoying it... no joke, see pic! + +The ducks and geese were very active in the lagoon, showing off for all the diners, and it thrilled the kids to pieces. The guacamole is decent and the 3 types of salsa you're given were all good in their own ways. + +If anything, swing in here for the atmosphere. I bet its awesome at night.",review,I66DLxK1Nk_JthEShOWKUA,4,4,3 +xymCilKjW4I64hMIt2TouA,2012-06-29,0i8V6-ze_yQ2JlIRev0JUA,4,"Looking for something refreshing to escape this crazy AZ heat? Rita's may be your answer! I stopped by yesterday with Lindsey F, and was pleasantly surprised by all of the unique flavors of ice and custard to choose from: Swedish Fish? Check! (and it tastes exactly like the candy). Lemonade, Cherry, Mango? Check, Check, Check! I ended up taking home a quart of half lemonade and half cherry. My husband and I dug into it last night. + +Next time I'll have to try the custard... or perhaps the Sour Patch Kid flavor that is coming out this week! Mmmm!",review,fczQCSmaWF78toLEmb0Zsw,4,4,2 +QxEUzbLfCTXF6gHWJegWgw,2009-12-30,JXsiOjFZ-keOuFLTDEHnAg,1,Filthy place. Bad tasteless food. Rude waitress. Yuck!!!!,review,dwEYcR1Lu9TCcL_QuM5tNQ,0,0,1 +yYbd9P1KmlPSKmQxo68n_g,2012-05-12,-EtZp6H9Mee44tQ0ijjFxA,5,"I love this place! + +We weren't sure what to expect since the restaurant is in an office building plaza. Kinda weird, but the employees in the other businesses are lucky! + +We went in here on a whim after reading all the awesome Yelp reviews. Our first impression was a girl at the front and she was super nice and didn't rush us while we were checking out the menu options. + +I ordered the pulled pork sandwich with macaroni & cheese and my husband ordered the brisket sandwich with a side of baked beans. He also ordered a side of ribs to sample. The wait wasn't too bad -- it took about 10 or 15 minutes and it was ready to go. They are cool with their sauce and let you fill up the small plastic cups and take as much as you want of it (which is awesome, because the sauce tastes SO good!). It's a nice, thick sauce and they have several flavors to choose from. + +We go to a nearby area to have a little picnic by ourselves and notice that they forgot to include the side of ribs. We pack everything up and go back to get those. The employees were really nice about it and apologized and gave my husband the side of ribs. We repeat the same process and realize that they also messed up my husband's order and gave him a pulled pork sandwich instead of the brisket sandwich. We decide to let it go and eat our food. + +The pulled pork has great flavor. The meat actually tastes like it has been smoked for several hours and is good enough to eat on its own without any sauce. However, we weren't going that route, because the sauce is too damn good not to eat. The baked beans and macaroni & cheese were not anything special, but they were good. The ribs were our favorite part! We absolutely loved them. Very tender and the sauce they chose to slather them in was delicious. + +This place is pretty far from where we live, but we would definitely go out of our way (again) to eat here more.",review,4wrWwXn81EKt7ODuq6D1Uw,2,1,0 +N13sN1m2zZNJDgRBlP8RYA,2011-01-13,e_IJkG0zdh-bbKkiwHeXog,5,"I love the fish tacos from Rubios, I always order them. Well sometimes I get the shrimp or Salmon tacos and I also love that black salsa chipotle sauce and the chips are delish here.",review,nM3vfxr6fcnN_nXdzwbVCw,1,1,1 +MuIXnv7Oq7X3-4aEsp9dDA,2011-02-11,mwzFakEUj14_kD32WRAylQ,4,"Great bar, great atmosphere, great service! + +Citizen crafts classic old-school cocktails courtesy of Thomas and Rich. ON top of that they have a few beers on draught, by the bottle and a pleasantly surprising wine selection. + +Food-wise the menu is kinda geared towards comfort and southern style offerings including mac-n-cheese, scallops with bacon and corn grits, dungeness crab cakes with complementary slaw, pork-belly, etc + +Again, overall good place to go for a casual and relaxing drink or two. Will be back for more...",review,r-t7IiTSD0QZdt8lOUCqeQ,1,2,0 +xxyuGOeAWnKVwIfoKnfUNA,2011-07-06,T4ShrEom-NqrSAilhCJh1Q,3,"Tried this for dinner one night. Had the hot and sour soup, which was good. Partner had the won ton soup, but had to ask for crispy won tons to add to the soup. I had a diet coke to drink, but I swear there was alcohol in the glass - I sent it back and the same happened again. i tasted my partners and her's was fine - not sure what was going on there. + +I had kung pao beef - it was a little too crispy. My partner had the shrimp version (she wanted scallops but they were out !) - she said it was excellent. + +Liked the decor, but a bit pricey for what you got.",review,pOim-Tccfc6Aw0ynGdPmYw,1,1,1 +Q-dsvMlhEr9TgvX8FxW4uQ,2011-01-05,PwpPR5T-lAslnWZw0eNJlA,5,Every time I visit Arizona I love to eat here to food is vary good and I have my wife to thank for turning me on too this restaurant I wish they would have some in Georgia,review,XOyeZ9-OIgyDHxybKv__dA,0,0,1 +gUt-pPUpOVVhaCFC8-E4yQ,2012-02-17,CrSAVT3jxqdJT9iQW2Kq9g,3,"I've been to happy hour here on a few occasions now and I have to say that I'm becoming more and more fond of Geisha. The prices are pretty decent, but what really makes this a great happy hour place is the ambience - it's lively and fun! + +Happy hour is 4p - 7p every day and is half off sake bombs, appetizers, house sushi rolls...and I just realized specialty drinks as well! I need to go back so I can try the Hello Kitty and Harajuku Lover specialty drinks! Both look delicious. + +Not the most amazing sushi and appetizers, but definitely not bad considering the price. And for me during happy hour anyway, it's really more about the company and drinks than the food. + +Happy Happy Hour Hopping!",review,P0oMcxect43NE7QPw_AyKA,0,1,0 +Zw1tNtyXA1kLABiZU0pa_g,2011-09-21,ypgVd9A6WNXyxDMmQB9NEw,5,"i always forget about this place when we do a party. they carry costumes and party gear year round...even halloween stuff. + +stopped in today to look for a flintstones costume but they had no Fred's and the wilma they had for 50 bucks, we bought on-line for 30 bucks. i had an online coupon for 15 bucks so i only bought house decor for halloween. but if you need any kind of prop for a costume/theme party, bike pub ride, or just feel like dressing up, this place is perfect!",review,ST8Yzlk2MqKlcaLqL2djBg,1,3,1 +mQfT3JYu18HN22DVylcE7A,2008-10-29,NzqSfv9KdF-8N57xrn1Pmw,5,"If you're looking for a lunch salad/Sandwich, this place is great. Not too busy, but that's good because it's very quaint. The roost beef and bluecheese sandwich will fill your stomach and the cookie side is a nice treat.",review,6uNeagh9ljbwV8XRUn_cYA,1,2,1 +Xbxve72Hp5cWWj96ThGNtg,2009-06-11,qEv89ekppAn80QVtmNhxHg,4,"I've been to this place three times and have enjoyed it every time. The service has been good. No complaints. + +We really like the thin crust pizza's. And the salads have been big and tasty. Spliting one small pizza and a salad with my wife if plenty for us. + +We've also had the lunch special of a large slice of pizza and a salad. Just the right amount of food and tasty. + +My wife and I think the prices seem fair for the good quality of the food. + +This is now our first choice for Pizza, since we aren't going to drive all the way downtown and wait two hours at Chris Biancos every time we want pizza.",review,5jakJiTLvnUWRin5GK9q1Q,1,1,0 +sI-2c9HZ0RjZX1OU-5DW0A,2011-01-10,aLoHo_2P6f-CxCR_bfd-Rw,2,"Well...I wouldn't get the dragon lady roll again but the shumai were good, and the rainbow roll was good. Too many mayo/cream cheese rolls on that menu. Not even busy on a Sunday night with the BCS game in town. Nice atmosphere.",review,32yCk5GTLAjcxUxvUOhWyA,1,2,1 +0QTn4pMzKv1mnQifcP9YoQ,2011-07-27,ZNmkRj78d7B6M_802GsGaA,3,"Not really memorable but, good dependable Chinese food. I like the space too.",review,X1nTlg9in3_Ch8QR8Hx4lg,0,0,0 +KTF-E3NfkJy2wiwcgOPyVQ,2011-03-20,6WaU71YvB_sU_Adt2K6Z-Q,5,"Don't judge a book by it's cover. The outside doesn't look so great, but you go inside and it's gorgeous. The food is some of the best food I've ever eaten. Their sugar cane chicken appetizer is fantastic!! The pad thai, chiang mai noodles, pad kra po, pad lard na, etc. This place is so flavorful with fresh veggies and fresh herbs. And don't get me started on their fried honey banana dessert. The best dessert I've ever had! Check this place out you will not be disappointed.",review,1vIg1iRDdx8RokPAFNkFEw,0,0,0 +towWd9z7YuGHdAezQtrkTQ,2010-07-29,RmOyqOn1cM1f0neN-b3lHQ,4,"I stopped by early this morning to satisfy my crave for something new. The place is very clean and a man came out to greet me and was ready to serve. He clearly explained every item I was curious about since the labels were in Spanish. I asked if his name was Miguel and he said yes. I told him I read about his bakery on Yelp. Then he said that he loves Yelp and that's how word is going around now for him and he also uses to find reviews on other places. He was very friendly and had lots of patience. I was the only customer at the time and he actually doesn't mind having a conversation unlike open ended talks with others. I ended up buying 10 pastries and it cost $6.80. What a great deal! + + +They also sell other items such as tamales, burritos, and menudo. I inquired about the burritos cuz I like mine with a little kick,but unfortunately they weren't ready yet. He showed me the homemade tortillas and he says he used them on the burritos. He said they don't look big, but he assured that the burritos are filled with red (mild) or green (with a kick) chili, shredded pork, and some potatoes. He said that one burrito is good to fill up a person. So...I must come back and try it. + + +So far I've had the flaky pastry with the shredded coconut and Bavarian cream...the Bavarian wasn't as creamy than I'm used to. I almost thought it would have been better off to not have it, but it's a nice added flavor when you eat it all together rather than just tasting the Bavarian on its on. + + +I had that curvy, pretty looking pastry which is topped with crystal sugars and with all the sugar on top, I thought it might be too sweet, but nope. It was just fine with the pineapple filling (excuse me as I wipe my drool). + + +Then it was off to have the caramel flautas dusted with powdered sugar. The first bite was eh. The second bite was...um. Third bite, WOW! I finally reached the part that had more caramel in it and I LOVE IT!!! Did I mention that I'm not a big fan of caramel? This caramel is sweet and creamy. It's just so good! A definitely must have for next time. + +That's about as much my tummy let me eat for today. I'm sure the rest will be just as good and I can't wait till tomorrow morning to try to rest of my goodies.",review,DrJnC62-eMRnFai6immsbQ,1,1,1 +iELA6eREUgDVQrtLgYmS6Q,2012-03-21,-u-feZVf96IbwR64QyjBjg,5,"I WISH I LIVED IN SCOTTSDALE. I stopped by Yogurtland because I went to Spring Training, and I wish I could have stayed forever. The quality of the frozen yogurt is impeccable. So many flavors! I mixed Raspberry Cheesecake with Vanilla Bean, also tried the PB&J flavor (um, YES!?), Tangerine Tango, and my usual go-to, Tart. Very extensive toppings bar. Good price as well, I just love froyo. Next time I'm in Scottsdale, this will be one of the first places I go to!",review,wcfbLVebMejZo6UfYjRcCw,0,0,0 +oiLe3lqMFaZtsSpRuIUChw,2009-07-07,LzkmeIC1ZIMS_CBRuBEZ6Q,4,"I went here with my husband last Sunday afternoon. We had a 2 for 1 coupon out of the Entertainment guide. We are from San Diego and have been trying to find Mexican food places similar to the food out in San Diego. We pulled up to the location and were debating if we should go in or not. The area wasn't the best, and it was in a tiny strip mall. Kind of looked like a taco shop. We decide to go in, because we were starving. Inside it looked completely different. It was a little dark and dated. But the atmosphere was very causal and the hosts were super nice. We sat down and right away got some nice warm chips, salsa and beans served to us. I was feeling like a margarita and was going to get the house one, when the waitress said they had 99 cent margaritas available. We ordered our food and didn't have to wait very long to get it. Super good food and really cheap 99 cent margaritas. The margaritas were served in pretty nice size glasses but a bit strong. FYI, I think you're getting really cheap alcohol in there, seemed pretty stiff. I started buzzing after my second glass. My husband even loved the Chile reino that he tried from my plate. He usually doesn't like it at all. The carne asada was seasoned very well, it was a great change from some of the bland Mexican food I've had out here in phoenix. My husband had the beef chimichanga and it was seasoned really well also. For the price you can't beat it. From the outside the restaurant seems a little ghetto looking, but once you get inside it's pretty nice in there. I would defiantly try it again.",review,IajbWwj6l-KHrfSEwZBLgw,1,1,1 +DcrM4hwDcU2G6vuh2cnaYQ,2010-12-24,cw56ezAwEhMzQBtI2fdxLQ,1,Poor service-small portions-pricey,review,6E-Nf7ctLC8N95KxFschoA,0,0,0 +6TuM3UyFP9O9uzTP0dVZMw,2012-01-19,AsPAeLZqyo72GKo1rJTS3Q,5,"Excellent neighborhood spot with outstanding food, large portions and reasonable price. The staff make you feel special and I have not made a bad menu choice. Try the wings with sauce on the side or the Monday night fried chicken. Lunch or dinner, Wallys receives 5 stars from me.",review,JxizK08K88qgrxL6dGb6yw,0,0,0 +N80E9zoWEpHhi4kH2eKAsw,2010-08-22,KH1QxaALC-vm1LvKPd95UQ,5,"Those of us ""foodies"" know that if the company is not good, the food is not good...regardless...which is why I am happy to give Bar North such a great review. I was there with a terrific group of people [STAR 1]. We were able to relax on the patio (with clean furniture, I might add) overlooking the fountains, in an intimate setting where we could hear one another [STAR 2]. The wine list was good, at a fair (i.e., expected) price [STAR 3]. The appetizers and salads were awesome [STAR 4]. And the waitstaff (Damn, I wish I could remember her name!) was incredible [STAR 5]. 'nough said.",review,NLDDaat42UQXQCOpU4e2TA,3,3,2 +FG_GRMLSj68ximzfrr9eWw,2012-03-02,sm_KqyD7-wBdJ6rmjslcJA,5,"I prefer going to this location of Macayo's over the others because of the ambience. It's way different than the others and it doesn't ""feel"" like the other Macayo's. This one is much more festive. It has a ton of patio seating and lots of shade. The antique train outside makes it much more interesting. The parking lot, however, is right next to the light rail tracks and it's small, so parking is a little dicey. They sacrificed parking for patio seating. The prices are extremely affordable. Their food is very good. Service is always consistent. Cheap margaritas. I've never been here on a weekend. I always stop in on a weekday around noon and then it has some business people on lunch.",review,-o3uGadqen-bc1HjMx_8Bw,0,1,0 +liXaSXrIXjikvdSEI2inxA,2012-06-28,E4K_vUUIq-gSn_UocbAlEQ,5,"This ice has the abilty to make you feel COLD on a 100+ degree day - I am hooked on the Key Lime, Alex's Lemonade, and Florida Orange. Very nice staff, friendly and free samples ....",review,BH3nDDQU6OgWrCBjPRcjzg,1,1,0 +GjvIDOEhdQB1oPrFeSpxBw,2008-10-28,IbxnDOAHlAV9PYiolbQ4hQ,3,Each time I eat here...I always look at the menu and end up having the same thing - the ceasar salad with salmon. Nothing else really interests me on the menu. The service is good - no complaints there. But its nothing special. But I will tel you this - there is nothing like a cold beer on a hot day!,review,JVeCUlDmcwJ3pteEdmzeHg,0,0,0 +-AAig9FG0s8gYE4f8GfowQ,2008-01-04,lmV0msaMwTArTYaBP1WS9g,4,Need your Bianco fix but don't want to wait in line for three hours or get in a fight because of a shortcutter? Eat here instead. Take out only and very limited menu but who cares there food is great! Lucky for me I live close by so I can bring it home. There sandwiches are made with all fresh ingredients and their bread is wonderful. Next door is a place called Lux Coffee House. Erick is a hoot. They are very good to their customers and I had the best Vanilla Latte every here. You can sit here with your Bianco sandwich and surf the net with your laptop. A small piece of paradise!!!!!!Be forewarned Bianco's is not cheap!,review,tBvrnSCLSpUdCDm5w5GPkg,0,0,0 +1Q_H3BLhKBymF6Se8FfZNw,2011-03-09,cmjDoAwYuGG1-hEPmrvDnw,2,"So, this will not be my best review, especially when I expected so much more from this place. + +Lets get this out of the way and on the table first, this ws not a bad place to go, but, it wasnt my favorite by any means. I went in expecting to pay a lot for the meal, and rightfully expected the best food I have ever had, and that was just NOT the case. From the high prices to the limited menu, I would expect this place to specialize in the particular menu items, and would hope to have my taste buds dancing while I shout for more. I didnt. + +We started the meal with burratta forno cotto mozzarella. it consists of oven baked burrata mozzarella served with grilled ciabatta, fried eggplant, lemon-truffle vinaigrette and parsley. There were only two tiny ciabatta slices which was not the first complaint. the second complaint would be that the fried eggplant could have used a bit more flavor. (perhaps a little lemon pepper in the batter would have done some good) Lastly, the dish could have satisfied by just having a bit more cheese. This dish was not bad by any means, just expected a bit more with the $12 price of two miniature slices of ciabatta and two thinly sliced pieces of eggplant. + +on to the salad. I dont know about you, but, when I order a salad, I expect a salad. this was a salad, just not with any lettuce or salad look. we ordered the caprese di pomodoro. this dish is made with heirloom tomatoes, preserved lemon, herbs, fresh burrata mozzarella and extra virgin olive oil. from the description, i assumed, dont ever assume, that this was going to have some spring mix as a salad base, then have the tomatoes witih cheese and basil, and then the lemon with olive oil as a dressing. WRONG. it was nothing more than what the description said. it was two tomatoes cut in half, with a small amount of cheese and a few basil leaves and then the lemon preserve mixed with the olive oil on top. dont get me wrong, this ws absolutely AMAZING, and I would love to have it again. It is just not what I expected, so, it would have been nice to know what exactly I was ordering for $10. + +To make matters worse, our so called salad took about 30 minutes to make its way to the table after putting in the order. it took so long that the chef actually apologized and told management that he was going to send out a soup for us for the wait. we were fine and in no rush, but, when we were already having our food take forever and told we were going to get soup, we expected it. the soup never came. + +finally, after waiting for and hour and a half for our main entree, we got our food. it was good, but, nothing to write home about. my pollo portofino was bland to say the least, and was actually a little dry. the potatoes were decent, but again, a bit bland. + +my date got the ravioli di mozzarella con salsa all'arrabbiata. the ravioli pasta was so thick that you really couldnt taste the filling, and the sauce was to sweet in my and my date's opinion. + +we however did order a side of the risotto parmigiano, and this was just amazing. I am very happy that the recipe was on a poast card that came with the bill. I will be making this at home in the coming week. + +for dessert, we ordered pistachio gelato. it was the best gelato I have ever had. + +when it comes to a decision of returning to Alto, it will not be high on my list due to being over priced for what you get and all around, just not the best first experience. I will however think of stopping in to get some risotto or gelato to go. + +when it comes to good Italian, I think I will be sticking with Italian Gratto or Pane e Vino.",review,g8up_FWF-A5JQjuUJ_VsWw,0,1,0 +qw93CjlAZ6a4ff11Z-hF3Q,2011-10-04,hfJl7JpIuq_8m8nQhHiSqg,5,"This is the new mecca of Phoenix music. + +Charlie Levy who booked for the now legendary Nita's Hideaway and also the owner of Stateside Presents is the man behind it all! He is a music fan first and ... well ... that's just what he is ... a music fan not a natural businessman. + +The place is just beautiful (for now, soon to be broken with the wear and tear of rock and roll no doubt). The room is small ... stage big (for the size) ... no doubt this is going to be the best place in the city to see any band for a long time to come! + +Thank you Charlie! + +Music fans unite! This place MUST thrive! + +btw ... they have live music every single night of the week ... and they open at 4pm every day (the lounge will have musicians and DJs for your entertainment).",review,A_O8wZOsMTPwyeYA4-Rsow,11,11,3 +b5cEoKR8iQliq-yT2_O0LQ,2009-11-22,YzxOS8y47Ow1v4Jtztpl9Q,3,"Went here for brunch this morning (Sunday) and there were a few things that diminished the experience for me: +* You claim New Mexican grub and then you charge for chips and salsa or sopapillas which are standard complements to any New Mexican restaurant meal. +* At $3, the coffee is a rip off! Seriously? We're not talking cappuccino, people and you're selling build-your-own Bloody Marys for the same price! +* The carne adovada was tender but not very spicy. + +That said: +* The green salsa was really good. +* I'm so desperate for carne adovada, I'll settle. (besides, $9 is more than a fair price for 3 eggs, black beans and carne adovada in a bowl on a flour tortilla - even if it was more beans than pork.) +* There are several options for $5; and, if they are all like the eggs benedict, they are generous portions. +* The patio is nice and the bar area feels like a neighborhood pub (not a cave, but that's not got to be a bad thing!)",review,vsXP832M0kOxKpfduD7dWw,6,6,5 +XK5FFbrKWMjRqc6ZbSTknw,2011-10-07,-1x0lVxVV7Te2WEM78ciww,5,"LOVE IT LOVE IT LOVE IT!!! Best Mexican food we have had in Arizona yet. We are partial as we just bought in Fountain Hills and its close, but its also small and although lively, never crowded or noisy. The service is friendly and fast and the Mexican style music is great but not too loud. You can easily talk and relax. Loved the guacomole dip and shrimp cocktail and the fried ice cream is fab and big enough for four people!!!",review,kGADeTtZutSef9nlS66Npw,0,0,0 +tz7FNOyd0QY6f1vudq8Wlg,2012-08-07,dwvVKVL26kw5cx2ByZ2Clg,5,"I think that most of the negative reviews I've read about this Gold's gym really stem from people's own insecurities. I have been going here almost 2 months now and have never had a single issue with the gym or ANY of its staff or members! I find the staff to be extremely friendly and helpful, and I was even offered a free personal training session when I signed up to help me get on the right track to meeting my fitness goals! + +I read one review about some poor girl stepping onto a treadmill that was going full speed and falling off... who does that?? Did she not see the treadmill going FULL SPEED? Don't blame lack of common sense on the gym or its staff... + +Another review complained that there are too many gay men hanging out in the locker room. REALLY? As a straight male, I can say that I've never felt uncomfortable, and have never been solicited for sex in the locker room. Get over yourself and your homophobia dude. Some yelpers truly disgust me.... + +Great location in a beautiful new area, convenient hours, tons of parking, a BEAUTIFUL state of the art facility.... what is there to complain about?? Show up, work out hard, and go home feeling better about yourself... that's what gyms are for!!",review,vuUddBhwlrVijAAFvK5UTg,1,4,0 +pPsS-ZcPwRNRw2Pdbc4-7A,2012-08-13,ZLwo6pBTdqFrs5c278Qb3g,1,"This place is a dump. I'm a widow, and I have a long-term chronic condition, still, they allowed their tenant to pick on me, throw a bottle at me, then their maintenance person told me the lock was never changed, They did not paint, but lied and said they did. It's totally drug-infested, They don't keep their word. I would skip it.",review,yoeoml76V4wyWPVZrLW-QA,0,0,0 +26DWDgTLuo4qhDbLDJHIdg,2009-03-09,FMRy5bd1jeSNp_dkDHHhSA,3,"OMG - whenever I get around to composing a ""Worst Bathrooms"" list, this place will be near the top for sure. I spend a decent amount of time at this Barnes & Noble and have 'used the facilities' a number of times as well. At the very minimum, there's always toilet paper all over the floor and at least one or two un-flushed toilets - with 'number two.' Really, people... + +Last night, in addition to the usual messiness, I kid you not - there was an enormous cucumber sitting on the toilet paper holder in one of the stalls, and a padlock with two keys on the floor. As I sat 'doing my business' I couldn't help but contemplate whether these objects were some sort of weird clues for a scavenger hunt, a murder mystery, or something equally disturbing. (Needless to say, I got out of there as quickly as I could rather than looking around for more ""clues."") + +Other than that, it's a typical Barnes & Noble complete with a Starbucks Cafe. The book and media selection is solid; no complaints. Upstairs they have large comfortable chairs that are just perfect when you want to plop down with a stack of materials that you want to read cover to cover without actually purchasing them. Just don't stay too long or you might have to visit the scary bathrooms.",review,YL8SKv-pwx-Wj9cwGYrn3g,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2012-11-25,Hjf_sb1aIo9f5xgWEuBdBg,5,Still flying solo. My friends took me for dinner here and it was excellent. Humus appetizer was great. For main course did broiled chicken pita wrap and it was perfect. Recommend!,review,BHWnl3JztynNABGfmAryPQ,0,0,0 +9HwUkbKAv7dO3MGlkkJJSg,2009-02-14,qVKdXYJFnDFl3Is5UzGKyQ,5,"one of my favorite places ! the place has great atmosphere and character. the bar is a great place to unwind with friends (or meet new ones) or have dinner. Michael or Jan will take great care of you at the bar! The full menu is offered here. + +the dining area is warm, elegant, & comfortable, but you are fine to wear your favorite blue jeans.....it is cave creek. you know! + +i have never ordered anything from the menu that did not impress. regardless of where i dine, if there is a rib eye on the menu, i have to try it. Cartwrights rib eye (cooked over mesquite) is consistently my favorite!!! + +from the fish dept, the sea bass is succulent! my second favorite is the scallops. they too are cooked over wood and have great flavor/texture and are seared perfectly. + +you have to save room for desert......the apple fritters pair well with their local fresh roasted coffee. + +you can not go wrong at Cartwrights!",review,ZeQZQY7CrpyxviVBhwveaw,1,2,0 +irVjrnurmB03bTaj9BXofg,2012-09-16,aw3lJKaOQy7ayEQ3zL7YpA,3,"Just like the other yogurt places for selection. + +Good news they had a vegan type for those of you who care. To be honest i ended up getting that one. I am not vegan by any means, but i do love a more icy texture and less/no creaminess when i have a cold dessert. + +one negative is they are poorly staffed. Busy sunday afternoon and only one kid working there. felt bad for the poor guy. But i didn't feel bad for too long after as i mentioned to him that the mochi was bad and didn't really taste like it. He said ""yeah it's not the normal rainbow kind, but this is what i call the albino mochi""... i tried not to laugh at that comment, but yeah, normal is his ""albino"" mochi...anyways don't get the mochi here...something is soo off about it. I can't put my finger on it. It's like an oopsie child between a marshmallow and ""albino"" mochi. LOL",review,IjafRfMSAQpInLlw-Vi0Cg,0,0,0 +wP5849J1DKB2KS3M6UwOAg,2012-07-02,RW6u3rP5c_2Xcdgu4GsZzg,4,"Their happy hour is crazy cheap!!! + +The scene though is like a poor mans Rehab/Wet Republic, but I'm not mad! It gets really crackin there especially on the weekends (suffice to say, I was only there for a weekend hahaha). This is definitely a spot to checkout while in Scottsdale!",review,YLkuqcXf35hCgWScC0CLlw,0,2,1 +O-ylVyHn6e6kaoJO-jHj-w,2012-08-06,NT66iMMEEYNs2teHNha_Cw,3,"This was the perfect place for the family after a day at the resort. The food was good, especially the barbeque chicken. The kids menu was wonderful. My only complaint was that the server really could not answer questions about the menu.",review,ZHTUQk1PDuw5QSrF6af5ew,0,1,0 +C51OyHyQUZfGom7Rb5FV8A,2011-05-30,lYUYFZMAho7JuoJHMptl6A,3,"Yes, I can agree it is not perfect, but at least they are trying to do something different. I didn't eat there and since I was a designated driver I only had soda. I really enjoyed the stand up. It is a great place to see some local performers start their career.",review,8p4at4zdzCpueAmSBaorZA,1,3,0 +PWiU2RQx7Fi86iYJMf381Q,2011-04-01,X71sFlDrJvyDZnXtazLNMw,2,"Be forewarned, this is quite possibly the worst mexican food spot I have ever eaten at! If you enjoy authentic mexican food, don't go here! + +The only reason why I'm giving their rating 2 stars versus only 1 star was because our waitress was very polite and serviced us well. The food however was terrible! + +My husband ordered the two cheese enchilada plate, and the enchilada sauce tasted nothing like enchilada sauce! The rice looked like orange pasty mush and the beans tasted like canned beans. I ordered the chicken taco salad and this is the first time I've had cold chicken in my taco salad. I couldn't eat it! The only thing good was the appetizer sampler that we ordered. + +We were the only people there on a Friday afternoon and now I know why! Overall we overpaid for crappy food!",review,EaPbAu2q7Om6cXF9bqUG5Q,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2006-02-20,Y8pMuvsTNhIL1lTIeePvjw,5,"I love this mall. You need a giant mall like this when it is 120 degrees outside! It is one of the only indoor malls that I like. I feel so calm when I am here. You can find just about anything in this mall. The food court is pretty good. I like Paradise Cafe for sandwiches. There are sit down restaurants and a movie theater inside as well. Plenty of parking or you can just valet. My favorite Nordstroms is here. I find the Nordies in SF to be too big and overwhelming. The one at the Fashion Square is minimalist, well organized, and edited to suit my tastes.",review,e4TQFVfepzHf--hnBsjntg,0,1,0 +GAPqG0WNBBidKeZTMpEZ-w,2009-08-28,ahKbfgh-9t96eDRUMWag8Q,5,"great service, great food, and great outdoor seating made for a wonderful first time experience at this charming little restaurant. + +you would think that sitting outside eating in the middle of august summertime in phoenix would be practically unbearable. local breeze made it tolerable and i don't think my overly-sweaty ass ever felt uncomfortable once during the whole dining experience. they had fans, a swamp cooler, and misters going and it made for a comfortable and charming outdoor dining venture. + +we started off with the greek lavosh which was to die for. the cheese they melted on top of it will make any cheese lover weak in the knees. their mojiot lemonade was crisp and refreshing. ok selection of beers, certainly not the greatest but i picked out a favorite, kiltlifter, to go with my coca-cola ham sandwich. my girlfirned (Rachel O.) went with the atomic burger as we are both fans of spicy food and this burger comes topped with horseradish. it even made her face scrunch up and me quiver in my seat the moment it hit my tongue and you better believe i enjoyed every second of it. the coca cola ham was HUGE and both of us only managed to eat half of it. leftovers are always good. + +service was spot on, and i enjoyed the decor and atmosphere despite what many people have complained about before. get over it, it's no longer pallete, move on, and enjoy the local breeze.",review,HY9qpAamqLXFoa7xMwNntg,0,0,0 +8G4_ESDS6BOTVCAlNt6O8Q,2011-08-21,Ca1oxekkh-vRjPAldhZVlA,3,"This is not my first time eating at a Picazzo's, but the first time I've been to the one in Casa Grande. Previously, I had been to one in Sedona that had a large, modern feel to it--kinda medium upscale. I was expecting that again, but didn't quite get it. + +This location is TINY. My entire family was meeting here as a halfway between Tucson and Phoenix, and our party of 12 pretty much took up the whole restaurant. Luckily, we were the only ones there, as we had a few small children in our group who were very interested in exploring and walking around to everyone at the table. + +The ambiance is more of a classic italian restaurant in this location, and definitely not upscale. Its not tablecloths, its paper that the kids could draw on with crayons. I'm not poo pooing on that, as it worked out well for our group, but its just not what I was expecting. + +The service was pretty good, maybe a little on the slow side, but not overly so. The pizzas are delicious, and the menu is pretty extensive. I had a pesto and goat cheese pizza, and also tried the bbq chicken. I think between the two, I liked the bbq chicken better, but they were both seriously good. The prices are a little steep, but manageable. + +For dessert, some people tried the pizza cookie with ice cream, and someone else tried a brownie with ice cream. There was very little ice cream on either one and it was mostly melted by the time it came to the table. The cookie was overdone and the brownie was dry and not particularly delicious. Wont be ordering either again should I return.",review,0mwGMnMvgvKd11do4u5J3Q,0,0,0 +qVN-P0aov4z5oknS12Cq1g,2011-08-08,RLTaxJsjdiohIdMHrR6E6g,4,Awesome burger and fries.,review,x1Yagv0rOlPd_NRu5t0SIA,0,0,0 +8UC_BhTIcTDcP8OI7EtpLA,2008-10-21,FtSuQi80VFyjXdsvVpAf2w,3,"So I ventured in here today for a quick nosy hoping to see what was on sale. I figured nothing in these economic times could be TOO expensive...They had a lot of their items FULL PRICE much to my disdain, but I was pleasantly surprised to find a large bin on throw pillows for 75% I personally was in need for some and bought some super cute ones for $6.00 each originally $35.00 yeah great deal!!! So I was a happy camper...I even found two that matched that weren't damaged SCORE... + +They were setting up for Christmas so it was a little jumbled, but they had some cute Halloween stuff out but it was weird half the stuff was marked down and half wasn't, it was so confusing I just passed. I don't like the guessing game, either mark down the season or don't KWIM? + +All in all though a typical Pier One except for how disjointed everything was it was hard to find things, and they just don't have the cute sets of furniture like they used to :(",review,lkV_WCqCbpA5gUIHD6wtOw,0,0,0 +r4AG1WXCRWkZKQctrcy9FA,2011-05-09,dn1CcLISn1HQt6tsX18S1A,1,My brother also posted about our Mother's Day experience. These must be franchises because the Scottsdale and Chandler locations are like eating at a different restaurant entirely. This is the second and last time we will frequent this location. The pizza and calzones were awful.,review,NksiUEnf7cP77zTnz-7lGg,0,1,0 +sbjb1qNUcqQomJvcgPuJCg,2012-04-09,IkET1y3Dpk1DPQk38ulRCQ,5,"I took a friend from Europe here this past week. I cannot express how much the attention to detail is welcomed and so wonderfully presented. By this I mean, the service, the presentation, the food, the atmosphere. The staff knows that when you walk in, you will be spending good money and they expect to take care of your whim and cater to your palette. +The steaks are buttery, delicious and worth every bite. The sommelier made a wonderful suggestion to go with our order and he was spot on in his selection. This may not be the place to dine on a regular basis for some, but if you plan to make a special night of an occasion, I recommend highly Ruth's Chris. I have not been to the one in Phoenix, only the Scottsdale location, but I would be hard pressed to say that it would be any less tasty. +My buddy was treated so kindly and his comment (paraphrased) was as follows: It's too bad that so much of the world hates Americans. They think that Americans are so loud and bossy. They can be so kind and so willing to to be helpful when they want. In Europe, no one cares if you are from France or Italy or Dernmark because we are like states next to each other. In America, everyone wants to know about where you are from and want to hear you talk about it and the places you have been. + +Thank you to the staff for being a part of my friend's visit.",review,Leb_qEICS1GrUXfN_XauYg,0,0,0 +90AXjqb4O-wrTHDKDoDUzg,2007-02-20,gEU612EjfKLokGPD5VMjiA,4,"Ok, I'm new to the whole Thai food thing, and I'm a wuss when it comes to spicy food, so take this review for what it is.... + +I was told by plenty of uber-Thai food fans that this place was the bee's knees, but I wasn't too impressed. i kept it pretty standard ordering just pad thai noodles with tofu and iced tea. the iced tea was killer (i find that at most thai places, what is it with the iced thai tea phenomenon??) + +the flavor was pretty bland, i have to say. it was the right amount of spicy, but just still bland, no bueno. plus, for a thai place, they did not cook the tofu well, it was totally bland, too. + +i was disappointed, but i will probably go one more time because you never know if you just catch a restaurant on an off day. it was super busy on a tuesday lunch hour, too, but we got in and out pretty quickly, so it's good for a work lunch. + +***update 1/08 +I'm glad I made that disclaimer in my original review, because I've been back three times (only for p/u) and it's now one of my top thai places. Maybe I was bitter because my editor took me there for my year review to tell me the paper couldn't afford more than 3 percent raise (on a reporter's salary, that's about 35 cents - you can imagine my bitterness). Hahahaha. I'm still not 100 percent a fan of their tofu, but the other entrees I've tried are not as bland as my OG visit. + +It's a great spot to pick up even if I just walk in and order because, what I assume is the owner (a middle-aged Asian women who dresses professional), is SOOO nice and helpful* with the menu and there is a small bar (really small, like 4-5 seats) where I can order a draft and hang out for the 10-15 minutes it takes to make my order. + +*definition of ""soooo nice and helpful"": She answered all our questions regarding level of spiciness and confusion over which entrees included noodles or rice patiently and with a smile; suggested one of the most delicious fried banana/ice cream desserts I've ever had; and, one time she realized we weren't finished with our beers when our tightly packaged food was place on the bar, so she spent five minutes undoing the tie to poke holes in the to-go boxes so the steam could escape and not make our food ""sweaty"". RIGHT ON! + +that definitely earned them an extra star for service! so... more like 3 and half + + +*************************** +i'm bumping up another half star because their stellar customer service is dead-ion consistent every single time i come here. i highly recommend the Yupha's House fried rice with tofu - flavorful and not too greasy. and big points for being able to order every single item on the menu as spicy as you want it.",review,7GC9fVWKa4a1ZmBGLH6Uww,2,1,0 +eJpr6Ks8pr4bmvDVPTN-Xg,2012-06-11,rBcVXryltiRkhbD7Sxk8kw,2,"According to the reviews I have read for this spot, I must have ordered from them on an off day. Today for delivery, I ordered a cup of soup (something tomato based with potatoes and beef in it), 1/2 Vermonter sandwich, lemonade and a cookie. + +The soup was ok (bland, but ok), the sandwich was...well, kind of sad looking. A big dark green piece of wilted lettuce, barely any of the 'cranberry mayo' or whatever was supposed to be the mayo on there, the turkey and ham tasted great...there just wasn't very much of it, and they completely forgot my request for a side of mayo, mustard and a knife/fork on a triangle cut piece of wheat bread. I wasn't able to choose my chips, so ended up with some plain ones and my cookie was undercooked by about 10 minutes. The outer circle was baked, but the rest was cookie moosh. (Which is fine when you are in a cookie dough mood, but alas...I was not.) The lemonade was FANTASTIC though. I don't believe I'll be trying this one again unless I'm in a pinch, but I'm happy I tried them today instead of just jumping into a catering order with them. This may be the only time I have been mislead by previous Yelps. *sigh*",review,2KNPtV5E44vAiEr5BvMkUA,0,1,0 +ipMMVBGEWABP4PIfudvRVw,2011-09-30,4z2AXCRr0OrkphvPxSnjXQ,5,"I had heard many great things about Penzey's, but it wasn't until recently that I actually went to the store. After shopping around and smelling various spices, I wanted to buy everything in the store! Great for gifts as well!",review,FbExpUiiAP6NiebgsN8zzw,0,0,0 +9BJ5h9X1krpXFjKj0a6wbg,2008-01-20,vgjSeoz6mHX5wVh6MH09sQ,5,"Love it! +The food is VERY spicy though. Luckily, I have burned off all of my taste buds so far from all my mexican food endeavors, however, the wussies out there should take note :) + +Just realize that this place is VERY small and can get VERY crowded. + +I was there once and George W Bush came in to eat there. Evidently he loves the food.",review,PShy2RYNadDUhJf4ErOJ7w,1,0,0 +qIhBNeE64skjowRs6TTwJA,2012-07-02,UVBiYn9GVKh1ttOQ--refA,5,"It was a very lovely place. I had read the reviews before arriving and had read that the place looked dated, but it looked very nice to me. I've been to several hilton family hotels since my hubby is a diamond member and this is one of the better places we've been to. + +The only thing that was sorta a deal breaker was that it wasn't near downtown.",review,ktyoP7G8zSyMXwGur_QudA,0,1,0 +RQWliUrWic_b5FZEj3JThQ,2012-12-23,6RnacODau3-6ZO9DekFUMQ,5,"One of my fave restaurants! The unlimited salad is a winner. It's delicious! They also have a gluten-free selection that my brother loves! + +For Christmas, they also have some gift card deals.",review,A-D1tG2sx5lP0KIRhvO1kw,0,0,0 +E4Q-78EG6f2aRv7zGQLuAg,2008-05-27,g8HTHavL-ovkkJ05XJaf0A,3,"Michael C is right. This place is very charming. I love the inside decor, with brick walls. I love the ""No Sniveling"" sign hanging behind the bar. + +It's a small place, but that's part of the appeal. There's a small upstairs patio, with a fireplace (wasn't on when I went) that could be a great spot to hang. It's not much of a view, but there's something cool about being at a higher elevation. + +Finding J. Chew was a little bit of a challenge. We ended up stopping at AZ88 to ask for directions. LOL! When we arrived, my friend and I sashayed up to the bar. Immediately we had a drink menu in front of us. I was more intrigued by the huge crystal ball-esque 20 Questions game. I wanted to play! + +When I asked about beer, the 'tender motioned to the shelf above his head. Ahh... Not a great selection, but it'll do. I went with the Honey Brown. $4.50. Great price. Okay beer. I'll order something else next time, if I can make up my mind. Stella? Fat Tire? Hmm... + +The whole reason for venturing to J. Chew was for a celebration. My friend was getting married, and this was her final Saturday night as a ""single."" So, the group of women sat outside on the small patio area. It was a cold, chilly May evening and they had the fireplace going. They also had a couple heat lamps working, but most of them were out of propane. Bummer. We Phoenix Dwellers were shivering our coconuts off, if you know what I mean. (Praise Allah for fingerless gloves, which were a big hit that night.) But, the bartender did try and keep them going, so we appreciated his efforts! + +Overall, I like J Chew. Yet I can't rate it higher than 3.5 for a few reasons. Yes, one is the beer selection. While it's small, it's also doable. Yet, their mixed martini list looked disgusting. Then again, I don't do martinis. Nor do I throw down $11 on a mixed drink. + +But the real annoyance came from other patrons. From one guy in a hockey jersey throwing himself against the glass door (even hitting his head on the glass, when prompted) to a crazy D'Backs fan yelling in the face of a calm Braves supporter, those couple of guys just totally zapped the cool, calm and collected from J. Chew & Co. There's something defeating and sad about seeing another man yell ""Lock it up!"" at another man, during what could be a calm, mature discussion about two sports teams they individually love and follow. There's something even sadder about watching an aging man with a cigar hit on a married woman. He just wouldn't leave our group alone. Oh well...Maybe they won't be there when I go back... because I think if they are, I'm gonna have to say something. How obnoxious. + +If you're in Old Town and looking for a chill spot to hang, this is your place. Plus, I liked the music they had on rotation... From Modest Mouse and Postal Service to 90's grunge and alternative rock, I was diggin' the tunes, along with the laid back atmosphere, the great service and the knowledge that there was a chill place in Snottsdale to hang. Who knew?! I just don't think there's a strong enough draw to hang at this place all night. This is more of your ""before dinner"" or ""before another bar"" type of estabilshment. Only problem is there's not many other cool places in the area I'd be interested in going, especially on a Saturday night when Snottsdale is out in full force.",review,APLIPfq1Rf8QyhHHk2uAyA,1,4,0 +WixkMVXXFCx-lYsr6JoF6Q,2011-04-28,_D9JaIWktycueAwKFnbHzA,5,"Great selection, TONS of flavor, always hot and fresh, nice staff, great prices. In my top 3 quick restaurants.",review,P7tY6x4uDIRMgA1v_xsWmg,0,0,0 +6Kon3cR5ZEm5rmYKlpcfcw,2012-11-25,CpySSNVLdMNU9Gfg7Xp6hg,5,"What a great property. Only had been to the bar years ago after the renovation, finally had a chance to stay in a Studio room this weekend. I was over the moon after this stay. + +I was looking for a nice weekend treat for me an my girlfriend. Vegas was tempting, but the drive eats up time I just don't have, and I don't gamble. For about the same as a discounted room at the Mirage and fuel expenses, I was able to get a gorgeous suite at the Valley Ho. + +Very fast, friendly check in. No lines, no bullshit resort fees and a personable guy behind the counter. Never get that in Vegas... + +Decor is startlingly unique. In a sea of cookie cutter mega resorts, a nice spin on hip, 1960's American style is a welcome change of pace. The details are like no other hotel I've stayed in, and the grounds are well landscaped and immaculate. It's quite humbling to think this place has seen patrons for 55 years. + +Studio Suite is super cool. Clean, good sized and hip. Tub in the center of the room was very, very cool, and was very useful. Good bed, good linens, great shower. Dug the little patio and the large sliding glass doors were awesome on a cool fall morning. Good colors, too. Only a few gripes; the bed side lamps are unusable with their super bright, nasty color temperature CFLs. Thankfully, there's lots of other mood lighting available. Also, the ceiling was starting to look a bit worse for wear, with some sagging at the joints and some water stains. Flat roofs always leak, though. In room music system ala Hard Rock would be a great addition, since TV is for the birds. + +Location is unbeatable. A short walk to anything in Old Town, Fashion Square, nightclub block, etc. But far enough away from the bars that it's quiet at night. Found a great new restaurant (The House) on Main St. that I would have never stumbled across otherwise. Probably the only worthwhile, walkable district in Phoenix that never disappoints, and this hotel takes advantage of it. + +I will absolutely be back. Makes a great in town escape. Just wish I would have tried it out sooner!",review,tU9Zo_mm1iAtrHjU3yhs3Q,0,0,0 +eHcQzL5eebqvKrLW5q283w,2012-01-03,8aMyNXNHrl83-A7YeyUbfg,3,"We have some friend who were RAVING about this place, so we popped in for a sandwich before a movie recently. I gotta say, I had a great reuben sandwich that I was VERY pleased with. I'm not sure if I will be venturing to the area just to have this sandwich again, but it was super tasty. Everyone seemed to like what they had and the menu has something for everyone. If I'm in the area again, I might venture here, but I am partial to Jimmy John's (next door) so it might be hard to choose.",review,f1-pIw_p0ifzu03TXjPRiw,0,0,0 +uflQ_lKBfS6WknNlm_HK8g,2011-02-17,jxla5QHTa552BQ3adbxvhw,4,"this was my first visit to a Sizzler and I thought it was pretty good. The shrimp dinner I ordered was not that great but the salad and dessert bar made up for that. The place is no Golden Corral by any means but what they got is pretty good , you will leave with a full belly . the service was good and I was able to make a strawberry shortcake from the dessert bar. So I will say YAY I am a fan!",review,ohRev2g3tvXpV3gBnhC-og,2,2,1 +ib-y5nsfn3unE0lLY1vfAw,2009-05-22,vSjJrRCpXUwvBHAoQrRaqg,4,"Well i seen some 1 and 2 stars, don't know what the hell they talking about, but this place rocks. I gave them a 4 star cuz too many people take their kids and cant control them there. LOL. + +But the food is the SHIZZNIT!!!! + +The Chips they bring out are nice crunchy and salt to taste. the salsas and the Lil bean dip uffffff, love it. + +The food is nice and spicy, since I'm Mexican i can handle the heat. +I always get the Pollo con Queso, can you say DELISIOSO!!! +My favorite. + +Waiter/es all are kind and helping on ordering. +If your into Mexican food, its a need to try.",review,rnUsWuzJndMoSy28RbPMMQ,0,0,0 +l0S5b8YYyDbjttTWtKc-gg,2012-11-13,SgrzYyD-zyrNIcncg8iwSQ,4,"Beep Beep! Who's got the keys to my jeep? Vroooom! (Missy ""Misdemeanor "" Elliott) + +Food Truck Friday happens, well, every Friday in downtown Phoenix. Located off Pierce and Central the the food truck phenomenum has arrived in Phoenix. Thank you Great Food Truck Race on Food Network! Actually Food Truck Friday was started by the Phoenix Street Food Coalition. If you didn't know, Phoenix lags behind in the food truck scene like Los Angeles, New York, Portland, etc. Who knew huh? Yeah, like you didn't know! + +The area where this event happens is not very big. Seating is a B-I-T-C (shut your mouth!) I'm not even going to bring up the Shaft! However, come early enough and maybe you'll get lucky. Some people to do the ""I'm saving these seats for a friend"", thing, which really really is annoying! + +Needless to say the scene is awesome! Hot dogs, burgers, pizza, rice bowls, and cajun burritos! I guarantee you'll come back for more and to explore the different flavors! You definitely won't have all Friday to do so, but check out their daily weekly schedule - http://www.downtownphoenix.com/blog/tag/food-truck-fridays/ - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,1,2,1 +jrZ4CdPKcXtFv_xhV8ThaA,2012-10-29,1VYvIdcIRAotBlYVjw97wA,5,"If you are writing poor reviews you obviously have not eaten Susie's Chile Verde con Carne. I dream about it. And I grew up in New Mexico! The best bowl of green chili stew or even better the green enchiladas with melt-in-your-mouth beef anywhere in town. #13...don't forget the sour cream. + +So you with the 2 & 3 stars go back and try the green chili and watch your stars become shooting stars! I've never tried anything else there. Why would you when you've found green chili heaven? Man, just talking about it makes me drool. I'm headed out the door.....Susie's here I come!",review,Z0P7xigz7h6lPqwO0cn2NA,0,0,0 +SG_gEmEXL4ID6RAEinC5Bg,2010-03-17,ti06-kxL_5IHy9hR9TFizg,4,"I have been to this Museum twice so far. And both times I enjoyed myself. But this place is huge. There is so much to see if you are into Native American art or just art and lifestyles, history of Native Americans. I love it. I was recently there to see the Indian Market and seen the Boarding School exhibit and Kachina exhibit. I love seeing all the Kachina dolls. When ever I am in town I know I will always go there to check out the new exhibits.",review,nw4l-kfBDwQSjf-gEZII2w,1,0,0 +e0Or6HYHL03y7IHl0itIOw,2011-02-24,ZAU_99yxKqM_EEPjcDCqIg,5,"All I have to say is wow. The auto picks and portrait pick that MelonFishPhoto did for me blew my mind. I felt pretty confident after seeing some of the photos he had done, but my expectations were far exceeded. He has a creative eye that caught much more than just the personality of the car. The picture brought tons of people to my sites asking who shot the pics. The portraits were truly great and fun to do. I actually saw myself in a new light that I never saw before. I loved it. Anyone can take a picture, but very few people can take pictures that draw people in and seem to almost have an active emotion behind them. I strongly recommend MelonFishPhoto to anyone for any photography need.",review,wUCRCqCcRFAvX0e17_6odA,1,1,0 +Lgqk00bglDyZfe5KbLhw6Q,2010-08-26,Hdvkhl1Jzhci6PM2cQaaZg,4,"I absolutely HATE chain restaurants! + +Although in this case, I have to make an exception. I'm really into the food at Buca. + +I used to live in the SF Bay Area, and I had to wait damn near 2 hours to eat at the Buca located at downtown SF. I now live in Chandler, AZ and the first time I visited a Buca here, I didn't have to wait any longer than 30 seconds. + +I usually have a standard list of items that I order for the entire table when my family goes to Buca: + +Bruschetta +Linguine Frutti DiMare +Margherita Pizza +Pepperoni Pizza +Chicken Marsala + +I also frequent other independently owned Italian restaurants, but Buca holds a special place in my heart, and my stomach. They have a signature flavor to their dishes. + +The best waiter in the world, Lee works at this particular one. Request to be seated at his station and give him a big tip!",review,WcnFWEVx9HO4eplGqvvr1w,0,0,0 +OFBJtqWGSx6n6CchtVmoRw,2012-04-15,W569Kk54Xpj6PNmPUKILMQ,5,"Possibly the best burger I've ever had--definitely the best I've had in Phoenix. + +I get the classic, which comes on brioche with a choice of cheese. It's the only thing I've ever ordered there, because it's so damn good I can't pass it up. + +AND they get their beef from humanely raised, grass-fed cows. And beer selection, and the fries with aioli... Well, others here have told you how good they are. + +Pro tip? Throw a little of that aioli on your burger, too. Oh, and come hungry--it's a generously sized burger. + +It's a little pricey, but Delux is a really delicious treat.",review,FrQ6yJ3ZQet28UsnxfHgmA,0,0,0 +6yuY73ycyyPiIG3zWkXqPQ,2009-11-04,p6Z7P9jSFXKKLJsbe7PEWw,3,"I'm a supporter of this store. At present, it leaves something to be desired, but we're starved for a place to shop on this side of town that has local and/or natural foods, so something is better than nothing! Also, I have faith that they will expand the available goods as time goes on. I'm excited to see how it develops. + +The good: Great bread! This is the best part of this place thus far. The breads are fresh daily, baked locally, CHEAP ($1.79 per loaf for white, wheat, rye, marble ryle, onion, etc...), and all natural. And most importantly, they taste really good. Picking up a loaf of the onion rye has already become a weekly ritual for me. They also have specialty pastries, tortillas, etc. Though I haven't tried those yet, they look good, and the prices are also very reasonable. + +The produce is also good. It's not a huge selection, but the prices are fair and the quality seems good. It's great to have locally grown items available nearby. + +Everyone who works there is super friendly, which is great, and they seem to be open long hours, which is really convenient. + +The down-side: As I said, very limited selection. The dry goods vary between local (mostly) and mass-produced (some random items). Some of the local artisan products look great, but they're very expensive. I think they'd be a little cheaper at an actual farmers' market (ie, where we're buying direct from the producer)--but I do plan to save up so I can try the pasta, etc. + +Weirdly, this place rounds out its selection of local/natural stuff with mass-produced crappy candy, ice cream bars, toilet paper, etc. I can't help but wish they'd found some greener alternatives. (Also-- Fiji Water? Come on, guys... That company is TERRIBLE. And the opposite of local. I don't get why they carry it.) + +SUMMARY: Overall, a great effort that I think will get better. In the meantime, get over there for your bread and veggies, stat.",review,FrQ6yJ3ZQet28UsnxfHgmA,1,2,1 +c1yGkETheht_1vjda7G5sA,2011-12-23,olMmtRvLTOSvn8E8gIYcGQ,5,"Amazing. Just stopped for snacks, had the fake crab rangoons and samosas. Very good. Will mos def come back to dine, hopefully several times, when in town. + +Love that they sell Diaya in the cooler and other lovely products, books and junk foods!",review,ddL_dN4PcqDo_ShTnepIKw,0,0,0 +MPziC5MO2QQiYVAMM3fdSw,2011-11-29,46uSYRP_VgcsmxBd8YPqbg,5,"this is perhaps the best italian food in Az. We have been going there for about 10 yrs and always recommend this place to all our clients. Best food, which is all homemade best service. This place never disappoints us. We recommend this place to our clients and the feedback is thank you for the best food experience we have had.",review,A8eQi7p8gWvSvc3SuZjXEw,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2011-06-10,q2S1fpp0deJhG9gWzo9ZyA,3,"3.5 stars for me. My first thought upon walking in was ""wow, it's small."" Not a bad thing necessarily. Could be a good thing in fact. + +I ordered a ""Blushing Lady"" cocktail (gin, Citronage, lemon juice, simple syrup, and a splash of sloe gin). I'm pretty sure it was served in a dribble glass because I seemed to have difficulty actually consuming it. But what I did have was perfect for me, and I would like another. + +I also opted for the special that evening which was a tenderloin sandwich with poblano, swiss, watercress, and charred onion. While the poblano and onion sold me on it, I didn't quite get the swiss and watercress. It was good, but could have been better with another cheese IMHO. Also tried the herbed fries (delicious) and the mac 'n cheese (not as delicious). The mac 'n cheese was good, but lacked the gooey cheesiness I crave. We finished with warm doughnuts and salted butterscotch. Doughnuts were fantastic, and it's hard not to like the butterscotch, but the ""salted"" part was missing. A touch more please. + +I had kinda forgotten about The Grind, but now that I'm reminded of it, it's worth a second visit.",review,wHg1YkCzdZq9WBJOTRgxHQ,3,5,2 +Y3nETidvklwdqNeGRzdGNw,2007-08-29,Va6ifR3JU9ZTaRx9BX5JLg,4,"I had the chicken teriyaki bowl (with extra veggies and easy on the brown rice) and it was a nice lunch. Nice alternative to fast food, although those sauces don't exactly make it healthy.",review,3sntAdhOgc2k-5w1g4urrQ,0,1,0 +6SMQl2vR37HvjYWwSl1V3w,2009-03-05,K1UKuB4b1N9ILP7B5OLuwA,5,"I have been dining at this Indian restaurant for a few years now. It was introduced to me by a close friend. I have taken my co-workers, members of my ward, my mother and brothers and finally I get a chance to review it online. + +I don't mind going in for dinner, but the buffet is to die for. Their consistency has never failed. This place is great!",review,D6j51VNGUdS6sLCTLfzxTQ,0,1,0 +08Z_Zzp8PyEmWWpYurIO-Q,2012-06-02,0BZ5PJiVyQS2nUcTw8dahw,3,"While I like the food here, it seems like the service is just really hit and miss. Just went a few nights ago, and after waiting 20 minutes for my food, I was informed they were out of what I ordered. Then, they were out of forks and fortune cookies. + +That being said, when they do have my order, the food is always fresh and flavorful. The management seems to realize when there are issues, as they have provided free appetizers and such when we were unhappy. + +Overall, a decent place, but might have to start trying other locations.",review,bNdlR6bzOkOftBW7zDwxXQ,0,0,0 +t0NencbvVVlH6mcRlNTPcg,2012-06-28,xpZXE_lM7EOluobBARg9mg,5,"lululemon is the best clothing store to hit Scottsdale since Ross. + +Even though exercise shorts there cost more than an evening in Tijuana they are worth every penny. So what if the pants there cost $160? They are awesome. Would Batman ever question Alfred about how much he paid for the Batmobile? No. Because the Batmobile is awesome and Batman would have paid any price for it. + +The men's side of the store doesn't carry a wide collection but what I did find was more magical than the sorting hat at Hogwarts. Everything is so comfortable and if you're overweight most of the pants and shorts have elastic so you don't look like a muffin when you put them on. + +I also like the workers there too. They are friendly and helpful and helped me understand that even if I liked some of the women's shirts there it would not be a good idea for me to purchase one and wear it. But I love teal I cried! + +If you haven't been to lululemon that probably means you hate small animals.",review,2guK2q2sKsmHk8tX5Itgew,0,0,2 +ho4Te6bO2tGs56h9PF2vuA,2008-05-21,p0I-j3Ja76ftLyQbie4fFQ,2,"Where do I begin? + +Let's start with the server who literally yelled everything he asked or said to us. Oh, and then he rammed a chair into my leg and was just not very concerned about our experience overall. + +Let's move on to the cheese crisp, which had plenty of grease cascading off the pieces, and virtually no ""crisp."" Did you put some cheese on a tortilla and microwave it? 'Cause I could have done that at home. + +Both drinks were quite tasty- my tea was strong like I like it, but not bitter. Hubby's lemonade was very good, but he drank it so fast I didn't get a chance to steal many sips. + +Let's discuss the entrees, shall we? Hubby's carne adovada chimi was decent, better than my carnitas. In fact, MY carnitas is better. (I keep aiming for Chef Hector's at Sam's...) Yes, the pork was very tender, but the salt was -shall I put it nicely?- aggressive. Sam Kinneson aggressive. The ""tortilla"" was an inedible science experiment. Thick and doughy, and made even more appetizing by the charred side, it reminded me of the salt play dough we all made as kids, formed into a pancake. Truly nasty. + +As for the legendary salsas, Hubby found the green to be tasty, but he did not care for the flavor of the red. Neither was especially fiery to him either. + +Riding on reputation, are we?",review,N-D-d1Z4UybdlkK1HxlNPA,3,4,2 +H-99nG_KfynWPXh84TKj8A,2006-09-03,0knqb8FyRcveyRck5mIBBA,4,"I've been here for dinner and the food was pretty tasty. The mixed grill platter is a definite recommendation, and the chicken biryani was full of flavor. The only downside was that the naan was just ok. Not straight out of a tandoor like naans should be. + +Their weekend brunch was decent but kind of disappointing. The chicken tikkas were kind of bland and there were no fresh puris to go along with the channa and halwa. + +But all in all, a good tasty experience and definitely one of the better IndoPak restaurants in the Valley.",review,htC49ZwXiKNka5cp0GKBfQ,5,5,3 +LSElCCmJQNJDpIEf77NVpA,2012-09-29,aZ8Yz0jl_Jm3e2Q4HeCtMg,5,"OMG I love this place!!! Im from Canada and this is ""continentally"" good",review,jfL9EqM4nSTMV7mt_i2nuQ,0,1,0 +hpx8xdRVb_bjgc9h2xY5Pw,2009-01-19,wQ_R-39R188IdXsMHzMIaQ,4,"The Paseo Trail travels through Chandler along the Consolidated Canal. It runs mostly N-S, connecting to other trails along the canal in Mesa and Gilbert, totaling around 18 miles. + +The trail is mostly paved on the east side of the canal and pea gravel hard pack on the west side. It runs along subdivisions, golf courses and even a couple farms. The grade is very gentle throughout. I would consider the trail primarily for use by joggers, bicyclists and equestrians. + +There is parking at the address listed for the trail and nearby parking at Tumbleweed Recreation Center at McQueen and Germann. There is also easy to find street parking near many of the junctions with major streets. A good southern starting point is off of Riggs Rd. between Arizona and McQueen. There is plenty of street parking. From here the ride north is mostly a slight uphill ride, making the return trip a nice relaxing roll. + +One issue with the trail is crossings with major streets. Most are not marked for motorists as trail crossings and there is no crosswalk so you may be faced with a relatively long wait to get a break in traffic or forcing the issue and forging ahead with care.",review,P2kVk4cIWyK4e4h14RhK-Q,4,10,1 +L4qaRHqoy8tzY9Z-v17rxg,2011-04-18,GwyDawdnOh2kcEo-EA75FQ,4,"Fast. +Friendly. +Cheap. +If you get the ultimate package you get a free basic car wash in a week. Just keep the receipt.",review,8z2mKSqTW-4pLobAUNvrsQ,0,0,0 +oKPRY3pQ-G6gmcbfE0splw,2011-01-14,-OiuMu0PKpmKFNXpJoxv8A,3,"We (my husband, 2 friends and I) visited Tavola last night because of a Yelp review. We weren't as enthusiastic. The service was great! We ordered 2 pizza's and 2 salads. The salads were fresh, that was a nice surprise, not bagged. The pizza was good. Crust was a thicker than we like. Not a bad experience at all just not quite what we expected after the 5 stars.",review,Rc2aLv4y07HNSJ1Ce0myLA,0,2,0 +sbsFamEj5wDxNAjUKrMcSw,2010-03-17,t7iNuAtVXk62OlD7LGxjTQ,4,"RnR strikes me as a casual, urban place to meet up for drinks and a bite to eat. It's not what comes to mind when I think old town Scottsdale, but places like this popping up are helping to change my mind about the area. Unfortunately after I was finished I was reminded that it's still old town when I walked by a pan flute band on Main St. + +The old town parking corral is directly behind RnR, you can get to it from the alley next to RnR or off of 2nd Street. + +The space has a refreshing, industrial feel. I was impressed by the thought put into the seating options. Inside mostly features traditional high top tables for four, but I noticed they had a table near the bar that could seat at least 12. The downstairs patio features another bar, and both table and lounge chair seating. The upstairs patio has the best date seating, lots of tables for two. + +There was a lot of staff working during my visit. The host was friendly, and my waiter was attentive. My water was never empty and I got my sandwich in under 10 minutes. If anything they were a little too eager to please. I was both impressed and bemused when my waiter refilled my water glass, apparently noticed my ice had mostly melted, then returned with a scoop of ice to add to my cup. + +I just got a grilled cheese (which includes tomato and bacon) on my visit, I had dinner plans later but I was interested in feeling this place out. I really enjoyed it. The bread is cut pretty thick, which made me a little nervous. But it had a wonderful texture, and after a few bites I decided it worked for me and didn't overpower the delicious sharp cheddar and bacon like I expected. + +I look forward to returning to try other meals, and to sample what the bar has to offer. I understand RnR will have both late night hours and breakfast service. This is a great place to visit any time of day, but I'm excited about having a new, good place I can frequent after (or during) a night out.",review,opjBZ0ImnKv5eRNQZ-98DQ,8,11,8 +cIPzndsbagQGj9U1sLqLtA,2012-04-22,VWTXwJfDX-m11Vrmjjus8w,5,"Why everyone in the valley doesn't use this service is beyond me. They carry every quality pet food manufactured, their prices are competitive, they deliver...FREE... no matter how small the order...right to your door....what a deal. + + I've used Goober for a couple of years they have never missed a delivery, never been late. Great customer service, and the ladies that answer the phone really know their stuff! Have a pet with allergies... This is your place for quality pet food, they will aldo have lots a good suggestions on your pets diet.",review,rq46hVxWltv4OmgWN4_2hg,0,1,0 +YKOvlBNkF4KpUP9q7x862w,2009-03-11,z0oUqFrS8x2Dt7NPXpb2QQ,3,"Had a friend invite/take me to lunch here at The Mission. The physical place was great! I had the arepas which were good, not great. My friend had the tacos, which immediately upon being served them he realized he'd have to order something else (small portion). + +My portion for the arepas was plenty as the venezuelan sandwich itself is filling, but also came with a mix of regular and sweet potato fries, which were good. Actually the ketchup/dipping sauce was awesome now that I think of it. + +Price -- hmm, a bit overpriced for lunch in my opinion, but I suppose that is Scottsdale. That's really what was the difference between a 3 and 4 star for me here.",review,kom_byw9fPdVzw7Mw_C4HQ,1,2,2 +hqVbmZNLTdR2y7G7oJu9vg,2011-12-12,Cll6IAD9RbWdJaypnLmvew,4,"What a great find! We purchased a deal chicken for this restaurant as we had never tried before. We had an absolutely fabulous dinner start to finish. We started with Caprese salad and stuffed mushrooms both were very good, then for entrees, we had Chicken florentina and Pasta romantico. Both sauces were the best we have had! The atmosphere is like you are in Italy. I would have never figured from the location but we will be regulars.",review,h4ksd-CZ-TOePt0DTgMggw,0,0,0 +01cEFI5Pq_RyEwM3GSTopQ,2010-11-04,cPoLz2KNAgIZ1Y7n6ebI5Q,5,"Blue 32 wins my MVP award. I practically lived at this place during the Giants World Series run, and loved every moment of it! + +Despite the fact that I am still stuck in an orange and black-out World Series Championship daze (that will probably continue for at least another month or so), I must up the rating of this place to 5 stars because Blue 32 is now my favorite sports bar in all of Scottsdale. The service is top notch and the atmosphere is excellent for game watching. + +Here are the main two reasons why I will keep coming back here: 1. Food - This is the best bar food ever! You must try their onion rings, they are crazy delicious. Also if you aren't in the mood for fried food they have tons of healthy options as well. 2. TVs - Sports fans, it doesn't get much better than this when it comes to TVs. Outstanding visibility from every angle of the restaurant. No sports bar in Scottsdale can compete with Blue 32's TVs. + +Go here for a game and you won't be disappointed. I decked myself out in orange and black, screamed, jumped around with excitement and just all around enjoyed myself while hanging out in the bar area during the games. Overall, Blue 32 is a high quality sports bar and you've got to check this place out! + +P.S. GO GIANTS! =)",review,w4suxL1zlxsihVlugZZDAQ,3,4,2 +lVkDZZ8sTafPlq7f1i5row,2012-11-02,CAAyuzX3Sln--N_9UkFUEw,5,"Harvest hash is incredible - ask for their house made BBQ sauce on the side. +Vegan raspberry banana bread French toast!!! Sooooo good! +It's a busy place on a Saturday morning but they work fast and everything runs smoothly. +A gem!!!",review,d0j-icp2cCAn27r3ovR7Pw,0,0,0 +9VZ_imQjvgtpt3k6W6AQ_A,2008-11-09,TGHLCjCkzee94TTh1CN6nA,3,"Ok, Stingray has it's high points. It's trendy, hip, and might just explode with young, beautiful people. The atmosphere and decor are nice, but that doesn't completely make up for the fact that the sushi simply falls around the mean. It's average. The menu has a nice selection of rolls and other dishes, and they're good, just not...great. We had a couple different specialty rolls, a tofu dish, soft shell crab, and tempura. Overall it was fresh and well-presented and halfway between actually authentic Japanese and some American Asian fusion food. The bar is crowded if you grab drinks while waiting and the bartenders weren't really fabulous in any way. Same goes for the servers who lack attentiveness and decorum in general. For a place with such a wait, huge crowds, and pretentious hostesses, I'd expect a little more. The curved booths along the sides are nice, though. Oh and, beware, in regards to the well-earned and deserved ""scene"": you might just see/run into every person you want (and don't want) to on a Saturday night.",review,0-TxcfXJmLuK4sbVhCF-MQ,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2012-02-29,nw16hNLJxk3w_L8s6lgpTA,2,"I was so excited to try these cupcakes, but I've got to say I was pretty disappointed, especially after waiting in quite a long line. I am a cupcake fiend, but they were not nearly as good as I thought they would be. I got 7 different flavors and I didn't think they were very sweet and, cake wise, they all kind of tasted the same. The frosting wasn't all that great either. My mother and kids tried them too, and didn't think they were all that great. Don't get me wrong, they weren't awful, but I'd never go back. I tried them and now I'm done. I'd rather save my money (and my time) and bake my own cupcakes.",review,NJ4kbLCgdHI9i_D3uSmE_A,2,3,1 +6S5EHLFQXnaw_Q0dk2OxtA,2011-11-01,PQmwqtLi9eYZXQmrl3gTsg,1,"Banfield is okay for routine check ups for maintenance and preventive care. That is why they offer a ""wellness plan"". When it comes to your animal getting sick, I would go elsewhere. It should not be called a Hopital. The doctors are there for profit only and do not show any care for your pet. The vet techs care, but the doctors don't listen to them. This place is lacking ethics when it comes down to making important decisions when it comes to your pets health.",review,q0ojWfF55h5Zl_dUSPK2Rw,0,0,0 +QB1dMlATwesPf6rrJGLQww,2010-08-15,tVah6UCN4p-jOCqh1jMDgw,3,"For a pretty yuppie place, Desert Ridge has a decent enough assortment of shops, assuming of course you can find them. Sure, you can theoretically pick up some new accents for your living room, a new pair of shoes, some books and the materials to make new candle rings in one go after which you involve yourself with movies and a beer, but you may give up in frustration before you ever find a place to park. + +I dearly hope whoever laid this place out is no longer in charge of such projects. There is no logic whatsoever to the layout. Trying to drive between the lots can verge on nightmarish. Needlessly huge islands in the parking lot put leaves in the way of ever finding what's across the way, so navigating the place on foot is often out of the question without even taking the Phoenix summer heat and wretched drivers into consideration. + +Desert Ridge probably isn't going anywhere. I've never been there that it wasn't busy. It's almost impossible to avoid if you have any significant shopping to do. But, the restaurants here don't tend to last long. They come and go before Yelp can ever get to them, leaving an endless strand of big box outlets and bastions of poor fashion sense.",review,ggEHaGGCiUVmE2N5iZy6DA,0,1,1 +j7XuypdW_w935NhjbvKPQw,2012-04-03,CXw5W8StPoZ-Zfz3fHIp9A,3,"First I will admit to not being a very impartial critic here-I absolutely adore a good bowl of ramen. Although I've not been to Japan I've been fortunate enough to visit some outstanding ramen houses in Seattle, Honolulu, Los Angeles, Chicago, and San Jose. +While I think this is probably some of the better ramen I've had in Arizona, unfortunately that's not really saying much. It was okay, not great. +I ordered the miso ramen with chashu hoping against hope that I'd have a reasonable facsimilie to Santouka's spicy miso available in the Mitsuwa stores around the country-drool..... The noodles were decent, though I wish there was more of them. The broth was not very miso-y and lacked the depth that really makes the ramen bowl. The chashu was really the weak point, sliced thin pork with no real discernable chashu quality. The accompanying vegetables were fine although I wouldn't say it's what I'm used to/looking for. +In short I'd say this is Americanized ramen-and no, not the cheap junk from the package but suited more for an American palate instead of leaning toward authenticity. No fish cake or bamboo shoots, none of the cloudy unctuous broth, no pork belly chashu. +The place looks great and the staff is great, I wouldn't dismiss it but Republic doesn't get a fervent recommendation either.",review,szbTVEtATfn8f9GxbGGO5w,0,0,0 +o1GIYYZJjM6nM03fQs_uEQ,2011-08-16,l1pDIB6AwotEH_N35sN57w,2,"Waited for Mad Men characters to walk in! Seriously? Went here last night for the first time, ordered 3lb stuffed lobster, stuffed with crab & scallops, lobster was tougher than nails, scallops were tasteless, crab was ok, charged an additional $15 for this stuffing but neglected to tell us until after I questioned the bill. Hubby had a 3 lb. not stuff lobster, but were tough, questioned it and was told ""they are sometimes tough"", Server was great! They have absolutely no idea how to make a dirty martini! The ONLY good I can say is that the bread was great. Not going back here, seemed to me that the crowd in the bar was well over 70 and the crowd in the restaurant was mixed! Reservations? Not needed at all, the place was empty.",review,DvznMRQl0tQoMkenXIX1eA,0,0,1 +JokKtdXU7zXHcr20Lrk29A,2008-03-25,1ZMeRTsPVkhBBch0UnFiUA,5,"Every time I go into this place its with good times and cheery mates and I leave the wiser with a pint of fresh brew and some of the best food. + +To make a great date, go to the Phoenix Rock Gym first and then climb the ladder on the back wall and walk in around the back...Great times for every one!",review,oSIYpve7KBefY63Dc-jGag,0,1,1 +-ftQeUsqwDkExRg6IYrubQ,2010-06-07,fEVIIMjwaFJmjuC4BboVzg,5,I am from Chicago - and the italian beef here really is perfection. Add to that the friendliest people ever and the amazing hotziki with fries- and they've got me forever. Their falafel wrap is insanely good and the patty melt is to die for. I could eat here every day - and I practically do!,review,MGYI7Ip_hs6TIt4goS_mbA,0,0,0 +D1T1jtCfTfXD-cQE3QViow,2011-09-10,_7IJAWxTgGA6ir8mkV7f7Q,5,"Super friendly. Joe was there greeting everyone, refilling coffee, and sharing how we uses local Arizona suppliers. Great diner food and decor. Loved the biscuits and chorizo gravy. Will definitely be back.",review,8DqQNOVzZZqSCHdXI945eA,0,1,0 +P7meKfzM0rC8L54A0fkroQ,2012-05-29,nXJttm45CqOifiBnZca75Q,4,"Dr. Plotnik was great, took a great deal of time answering all my questions and explaining everything I was unclear about. I will say some of the office staff weren't the friendliest, customer service oriented people and it did take 1 hour to get from the waiting room to the exam room. Overall the most important aspect is quality experienced care for something as critically important as your child's vision.",review,lk9OBp3_I00LaSU_JXktTA,0,0,0 +wzQAmzQopWcfoCG8lfiE_w,2011-04-29,UOXgbciGKe1ZYMN6F6zt9g,3,"1st off I just want to say that i do actually think the food here is pretty good tasting, regardless of how brown the guac looks. My problem is the service, everyone who works here is either lazy, dumb or a combo of both. At Subway they at least pretend to be helpful, here they ask you the same questions over and over (ex. I have been asked what toppings 4 times and I only had 3 things added so really...) and still mess up. One particular time my friend got a roast beef sandwich and half was roast beef half was pastrami, how is that even possible!? Either way if they dont shape up they should change their name to Port Hole because its run by a bunch of As*holes.",review,FAxy_JuEOhhZl3C10LMY1A,0,0,1 +TzImzfIWkZTnetKl2a4-SQ,2010-06-13,WF-MyenfDFfgO2OvvM3f_Q,3,"Stopped in here for lunch the other day. I ordered the Marzen barbecue chicken sandwich with garlic fries. The sauce on the sandwich was good but the chicken breast was pretty tasteless. The garlic fries were a winner! + +Service at the bar was fast and friendly. It was nice to have a TV to watch as I ate lunch.",review,Kqvfep2mxS10S50FbVDi4Q,0,0,0 +vvMR0jgDoBA-g1XgZy8sEg,2011-06-17,shWaAaaUyKnlPde9rVg0Vw,4,"If only they had a place like Tryst Cafe back in California! The first and only problem I had with the place was the fact that I wanted nearly everything on the menu. They have amazing specials, and while the Monte Cristo breakfast sandwich and glazed-walnut French toast looked amazing, I was hungry and opted for the Hawaiian breakfast. + +The food came pretty quickly and was warm. We didn't order any drinks because the fresh-squeezed one's are so expensive it's actually cheaper to buy one of their smoothies. The hawaain special- composed of 2 fried eggs, shredded Kalua Pork, cabbage and rice- was tasty, but a little bland. They gave my brother and I (we ordered the same thing) some soy sauce, but I would have preferred a nice dollop of ketchup instead of the sodium infested kikkoman. Other than that, the dish was delicious. They fried the eggs perfectly, the runny yolk making the rice and pork taste even better! I usually only like my eggs over-hard, so it was a pleasant surprise. + +My mom opted for the healthy option, getting the yogurt parfait. In my opinion, this was the disappointment of the table. My mom claimed that she loved it and that it tasted like Beijing's yogurt. My mom must have some really refined tastebuds because all I tastes was some store bought low-fat vanilla. The granola was good and the berries fresh and few. What can you expect for $5? In my opinion, a little better than that. My dad, opting for the unhealthy option got the huevos rancheros. He ate it so quickly I didn't get a taste, so I can only assume it was tasty. + +Overall? Great choices, great venue, and good food.",review,RLT6kLx8dZc1BMP_25UYKQ,1,4,0 +lvpXyfTDF5WZnjzc36r5Wg,2010-04-07,q10iRWpkiI8mr1MO6v9Alw,4,"I've been here quite a few times, and always love their food. Pretty good servings for the amount of money. Burger yesterday was a bit over-cooked, but the fries were great as always. I love how small it is - friendly staff and it always seems like the whole family is back there cooking and serving. Would definitely recommend. + +So all in all, great for the money, and convenient because it's close to my work, but I wouldn't drive across town for it.",review,x3snNDhyewv4q9fM6NxgAA,0,2,0 +q9WaFYhlOZCrfXJQTG5t_Q,2011-07-02,XyY4o5Qr90cLXUfbB83gKg,2,"As much as I wanted to like this place, I just can't I've it 3 stars. Honestly I HAD to compare it to Postino's since 1. In my eyes they have the BEST bruachetta and atmosphere and 2. I heard the living room copied their style, and unfortunately it's a bad copy. They did get the atmosphere/ambience right. However the bruchetta not so much. + +We tried the steak, tomato and apple fig. The apple fig was delisous, but u can't really go wrong with that receipe. Been there done that. The tomato was a disappointment. Seems like they tried to do their own unique take on the original and for me it just didn't work. The steak was ok, unique yes. But I could live without it.",review,HcRkWWnGJ_7iYJs30zXrxg,1,1,1 +rwQIBAM_kHtVl1Ks8Flexw,2010-11-17,j_SinrUQp8TC_9ItSe1frQ,1,"marginal sushi meets uncomfotable seating. we used restaurant.com coupon and got stuck wtih an 18% tip...with no service, seriously??? felt scammed...think we actually spent more based on that tip than had we just paid full price. avoid this one, just not worth it.",review,jlr3OBS1_Y3Lqa-H3-FR1g,0,0,0 +oyzxIqrtzu-8sWlPhJVsLw,2011-01-02,oEXUlIimWWJJavY-Un93cQ,5,"My favorite Mexican food. THE BEST BEAN BURRO ENCHILADA STYLE IN THE WORLD (yes I've tried them all) Get the red enchilada sauce, and a tortilla on the side.",review,_Q86NbrhbBGYcH1yqqvnuw,0,1,0 +hfl62LX14YqNpG0g0Tj6_Q,2011-01-09,hT5m9n1Yzgegd6BeJiwmmA,5,"Fuego Bistro has quickly become one of my wife and I's favorite restaurants! We went with a large group the first time and they were great about us having 7, including two smaller children. Last night my wife and I went back for a date night and had the most wonderful time! Jeff, the owner, is fantastic and always wants to make sure you have a great time. The sommelier was also great. He talked to us about the wine, gave us some tips for pairings, and even had us take a sip of wine while chewing our food. It totally changed the character of both the wine and food. + +Speaking of the food, the short ribs are amazing! The best sides we've had are the creamed corn and the chipotle mashed potatoes, but the maple chili carrots and the cornbread green chili casserole are also very good! + +The cocktails are great and the happy hour menu is pretty reasonable. + +We will definitely be going to Fuego on a regular basis!!",review,vJw_UJQpR7eUI1fLqoZg9A,1,1,0 +hh2lP4_2N-tk_OxmaTf_qA,2011-06-02,uUm1XeSUWsnbVaZSid4lCA,4,"This place is nice. Great view, excellent service, top notch meal. The only thing I can really complain about is the portion size. I would have liked them to be a bit bigger, but I was the only one that felt this way, maybe I eat too much?? I had the bone in porterhouse steak and it was pretty darn tasty. They serve the steaks with a variety of sauces to dip into, some of them were amazing, others were not. I would for sure recommend this place to someone looking for a 5 star dining experience. Make sure you bring your wallet cause this place is not cheap! Our meal was about $450 out the door for a table of 4. We ordered 3 apps, and 3 sides also and a bottle of wine. This restaurant is operated by Chef Jean George, I have no idea who he is, but the waiter and hostess both swear that he is someone to know. Judging by his cooking, I think I would get along just fine with him. J&G is inside the Phoenician Resort in Scottsdale, I was staying there so I figured I could add this place to my list of great American Steakhouses. My final opinion of this place, it is exactly what it says it is. They meet the B-Stew standard for a fine dining steakhouse. Also, there are great views of Camelback mountain. One last thing, the hostess at this place sold me on coming when I called for information. Very well trained and passionate about her job",review,hgRNpDq9_l_g36i46017fw,0,1,1 +D_VXbq6sCuqXuBbdPo9zpA,2008-11-11,xsCpYN_4gmRi7ZcnW_hHfQ,4,"This place is usually packed late after coming back from Dos Gringos or whatever since it's right around the corner. There's a reason for this, their pizza is good. Big, wide slices... in fact their slices are double what you'd normally get anywhere else. Thin crust, chewey crust, great sauce flavor. If you do get pizza here, order it by the whole pie. You won't be disappointed. I only will order a meat slice if I know it just came out of the oven. Personal preference and this is for any pizza by the slice joint. + +When I was there Monday night, the owner was singing softly. It reminded me of my mom when I was a little kid and how she used to sing to me............ i told him to sing more. I'm kidding, it was a woman singing.....so I'm not knocking this place, just pizza by the slice places in general.",review,PWjdlug88aWpFEfPMJbSVg,4,4,2 +wUPHVWGmoBU_gykHl1Kzxg,2009-04-25,N5WJGU_bGR2PeKSbtDBvRA,4,"From the get-go we liked this place. The fried dumplings were wonderful and crispy on one side and lovely and soft on the other and the dumpling sauce was amazing and just spicy enough. My husband refused to let it go and finished it over the course of our meal! + +On this, our first trip, we had Tangerine Beef and the Crispy duck. The tangerine beef sauce was sweet and a bit tangy with a touch of spice and the beef was crispy and very tasty. The duck was amazing. The tastes were multilayered and well balanced and the crispy coating was salty and peppery and almost buttery under it all. Together it created a very complex savory and sweet dish with a kick of spice at the tail end. The flavors in the duck were very reminiscent of Cantonese food in Shanghai...this is the first time I can say this about a restaurant in the states that isn't located in a Chinatown. + +The wait staff was friendly and very helpful, welcoming us back and giving information on some local Asian markets as we left. I highly recommend this place!",review,TZ_k-BbXS6sEMiWQXlPnMA,1,3,1 +g9jX2oXQr8zrOQgynYnYjQ,2011-06-13,jKWqnOJTtGoNRiZlh2xIuA,4,"I got to give In-N-Out Burger some love. I've been wrestling with a rating on this place for a long time. It's definitely a WIN when you can feed two hungry college aged boys and yours truly for under $15 bucks with some delicious food. They always get your orders right, keep the place clean and are UBER Friendly with fresh delicious burgers. No wonder this place is always mobbed well past the traditional lunch hours with families. Keep up the good work IN-N Out Burger!",review,NvDR3SPVPXrDB_dbKuGoWA,1,1,0 +VVeogjZya58oiTxK7qUjAQ,2010-04-10,53Sog6eGWgS5Jt9wuxe07w,5,"So I knew ahead of time about the wait. So we got there at 3:30 and waited for an hour and a half until they opened. But we were able to be seated as soon as they opened. + +Let me just say that I've never had anything even close to the kind of pizza that we got. It's outstanding! + +I highly recommend the caprese salad, antipasto and the rosa pizza. Though I'm pretty sure that it's all amazing, no matter what you get.",review,r70p5MYt2O549iFAxw6RdA,1,1,0 +VGOwmoYnmhH41IOQlB_Ecw,2012-08-24,ALcK_eqiFaln62tWAkvnZA,3,"Haven't been to a Chili's in FOREVER but those darn gift cards get me every time. Stopped by today for dinner and we ordered the 2 for 20 special (an app and 2 entrees). + +The food was alright-we ordered the Spicy Chicken Fajitas, the Bacon Chicken Quesadilla and started off with the Onion and Jalapeno Stack. The jalapenos were lame but everything else tasted great after a long day at work. + +What was not so great was the service. Two waiters introduced themselves (I figured one was training) but neither bothered to stop by and fill up our drinks or really check in. The girl who served us seemed to spend most of her time on the other side of the dining room and the teen host actually ended up being the one to refill my Strawberry Lemonade. So thanks to the young dude manning the desk and NOT my slow waiterS.",review,gsyguOgT2Dnjw-OYw14XDw,0,0,0 +fRa4l3Rkh_yPq9WrKD82AQ,2012-08-05,C9lHc7zQxyHMshDALzm1bw,2,Even though this is my home gym where I train for my shows...I really starting to not like the people here no more! The GM was very cool with me and since he got transfer to a new LA Fitness nothing isnt the same no more! Everyone here is a meat head witch I dislike!,review,qbzVVyk9w84pG5mfYU6fng,0,0,1 +ihMUU9D2mcgrp7fi8lmqJg,2013-01-04,OneJTqHJ74WDz2f7qDH_PQ,5,"Love my Chick-fil-a! Wow, they have a system and it is super fast in the drive thur. Amazed and they are always super friendly! They always get the order right!!! ++++",review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,0 +yOVydU0J5-hKODrKGhH4yg,2012-01-10,V_fuMPwTXi2bUxND--zReA,4,"I'm giving 4 stars because I just love to find this many artifacts of the basket and clay varieties when I visit a museum. It really amazes me, the craftmanship of our ancient peoples! This small museum is not part of the Science Museum circuit, so I wasn't able to use my discount or member card, but for $6 I felt it was worth the trip to check it out. Some exhibits in the kids' room have been duplicated and enhanced in the main museum hall, which was fun to compare. The outdoor area is actually a preserved portion of a reservation belonging to the Hohokum Indians and there are examples of the water distribution canals and housing styles from 300 years ago along the Salt River, AZ. Great, informative afternoon!",review,onCVo3jNuKsSk8HcpDE1sQ,0,0,0 +vfLog2bLJGl6hAFtGtr0GQ,2011-12-31,1escFm4Zg_7YU1AE0C_mUA,1,"DO NOT GO HERE. One of the worst restaurant experiences I have ever had. The setup is a little like ""Pei Wei"" where they take your order, give you a number, and bring the food to your table. Placed our order, and had to stalk other tables and hover over people eating trying to wait to get a table. Waited a long time, all the while others who ordered after us found seats and got their food before us. Servers kept bringing my food to me since it was ready, but I still didn't have a table, so they kept saying they would ""put it under the heat lamp"" for me. Finally eventually found a table, and then kept waiting and waiting for our food, which the manager claimed ""he had them remake"" since it was getting cold. My food came, and it was cold and disgusting. We had to get going since we were going to a show, and my mom's food still wasn't there. The staff asked to see her receipt, since they couldn't find her order. She went up to the manager and said she just wanted her money back since we had to go (it had been 45 minutes since we placed our order). He said her food would not be ready for a while, and gave her some cash, and we left. My mom never even ate, and my food was horrible. I would NOT recommend this place, it's awful.",review,iS2TK7YwTPCBM1q_xprgVg,0,2,0 +TpQMR-JFE5V0UPzTjjuwFQ,2012-10-28,OzLuYcpWmm-5cq8RrCqReQ,5,Excellent,review,3p_muaP7a652QYtHUZNsFQ,0,0,0 +M9t5569pgvJYurC8hX0E1w,2012-09-11,bUxKAy-DNk8yuOxZto4bdQ,4,"Back in August we went on a Sat night ..we got our 'skate on' good ! + 8 bucks total ( But i have my own skates) 2 dollar skate rental ( i think) + +Great Dj was spinning classics ..i love roller -disco .totally took me back to my disco days ..also played a great mix of music in general . + +it was super fun. +place needs some sprucing up ...but it wouldn't stop me from returning ,especially for some old school fun.",review,vtC_cpesIJZ3--W9J-UIXA,4,4,4 +BVo6wBuFwPH3QVqs8-JEDQ,2011-11-14,QBnTKSPdVQRSF-jwQaovbg,5,"Seriously, if you're looking for a place to get your knives sharpened or buy some cool professional kitchen gear, look no further.",review,YiqS9_jvHXSS0wDcv4uDNg,1,2,0 +UWc3-FI59SjoikVw5ombVw,2010-12-16,sqwiqP_dqCVIG-dFXL6P7A,5,"Of course it gets hot in the summer. You're going to be watching bands in a basement with a bunch of people and depending on when / what's going on there might be some idiots 'mawshing'. + +Sound quality is great for the size. Glad they reopened one of my favorite venues. and YES everybody has gotten lost the first time they tried to find the Nile. The main & front room have shows as well.",review,UuYVbqDgndlqJvX2yjdS6A,0,1,0 +P36EyL9xJ72-Ti004epZvw,2012-05-05,VcnHKNRZy2gWD8fJ_KIg1Q,3,"Sports Authority is like the Walmart of sporting goods stores. No, wait, that would be Big 5. I guess they are more like Target. Reasonable prices, and products that don't completely fall apart the first time you use them (but they are still made in China) and no service whatsoever. And Dick's is more like a Dillard's or Macy's because they have the higher end brands and employees that are older than 16 or 17 years old. So then I guess Bass and Cabela's would be more like Nordstrom's? That's where the really nice stuff is but you usually walk out without purchasing anything unless they are having a sale. Except Cabela's is sort of specialized so I think that would be more analogous to something like an Ann Taylor. + +Ok, I know I have gone way off topic here but I think I have made it abundantly clear that I am not a regular customer. But I do occasionally come in to buy gifts for family and friends. On my most recent visit, I came in, wandered around for about 20 minutes and then found what I needed (with no help whatsoever from staff), paid and left. A two star experience for sure but I have to give them an extra one since they offer a discount when you check in thru the Yelp app on your smart phone and so that saved me 10 bucks.",review,VPXgY9lGJF3XC4ZpusxNuA,1,2,1 +bc-lE-wGVAsUrX-kJhtY-Q,2010-10-05,4g5rtUHokBnCPW-_0x3WrA,4,"Really good barbeque and steaks in an old school setting decorated with baseball memorabilia. The service was tight also which is always a big plus. The food is definitely artery clogging, so i'd reccomend it only once-in-awhile. + +They have some great price points in here modest wine list. Oaky cabernet sauvignon for beef and go for a zinfandel for the barbeque. For the prices, you can't go wrong!",review,mjnZcvOY0xPGTIBzHIlUWA,0,0,0 +T9iBSa4pxYXP129pHlt5Sg,2010-05-23,E8GN8LKaN7nL4jn_GaVblw,5,"5 BIG STARS + +For service and quality of meal, restaurants really don't get any better than this. Multiple servers, dressed in NY black are constantly there for you. + +This restaurant prides itself in using local products & blending them into traditional meals, ala Alice Waters, and they do an excellent job. + +For starters, we had (are you ready?): +-""Macerated Local Vine Ripened Heirloom Tomatoes, Fossil Creek Goat Cheese & Mascarpone Tart,"" including Buckwheat & Saguaro Seed Tart, Basil foamed from the garden, Black Ice, and Gila River Olive Oil; and +-""Pan Flashed White & Green Asparagus with Chanterelles & Cholla Buds,"" including Chanterelle Mushroom Fondue, Desert Quail Egg (sunny side up), Red Currents and Aged Sherry. + +And that was just the beginning! For dinner we had: +-""Veal Ribeye Rubbed with Sandalwood, Dry Mole & Green Chile Sand,"" including Mesquite Cooked Desert Fruit Chutney, Truffle Frites, and Rutabaga Cobbler; and +-""Local Pecan Crusted Colorado Lamb with Native Seeds SEARCH Mole,"" including Pastry Tapenade of Fennel, QC Olives, Eggplant, Wild Mushrooms, Heirloom Tomatoes & Iitoi Onions. + +Everything was exquisite! + +This meal was to die for! + +Any complaints at all? Well, yes, but very minor. This place is actually in a Sheraton, but I guess that insures a good stream of patrons that can afford such meals. + +And the decor? Not very good. It needs a serious MAKEOVER. Wall-hangings, window treatments & carpeting aren't much. + +So there you are...",review,kbJNDcsBE-U_GiOY43hwwQ,0,4,0 +ie3Z-b4O7109XG_PidosKQ,2012-09-13,51A_Hrg05SSVIN1mUvLw0Q,5,"Gymboree, many years ago I brought my first son to Gymboree quite often and really enjoyed. Never thought I would be back, but now we have another gymboree tike and he loves it. + +I am very happy to have been reintroduced to Gymboree and have already made plans to go again with my son next week. The instructor made it look easy and really communicated very well with both parents and children. + +Thinking about Gymboree now, my only regret is that I know someday my boy is going to outgrow it, and I want these times to last forever.",review,XgIhw-aWaq_Fx3ZVQGjnuA,1,1,1 +MRgTo4MA3f1MB_VL3IVh5g,2012-01-03,qj2Bu0koY7Cc6oHpTkwSZw,5,"Honestly, I can't remember how I found out about Butter & Me, but I'm glad it happened. + +My fiancee (now wife!) and I are addicted to cupcakes and we decided to swap the traditional wedding cake for some delicious cupcakes. Kelly at Butter & Me did not disappoint. She was absolutely fantastic to work with and has *the best* cupcakes in the valley! Believe me, we taste-tested a number of other vendors and everyone else's cupcakes tasted like small, dry, cakes. + +The cupcakes from Butter & Me were exactly what we were looking for. They were perfectly moist, beautifully decorated, and there are a ton of delicious flavors to choose from!!! + +I cannot recommend Butter & Me highly enough! The Yelp review sums it up: ""Woohoo! As good as it gets!""",review,kS-zOetVeNWpm7f0Cie4-g,0,1,0 +xLCbkTYQaP-nij6mEfaw7A,2011-04-14,ivXMJ8ObEqsjHY8SyYQGZA,5,"Bookmans is Great! They probably don't need another positive review but so what. I use Bookmans for recycling books I've read and for buying used books for myself. All I can say is that I like everything about the way they do business. They have great people working there. The store vibe is very positive. Their prices are very fair and what they pay for your used books is incredibly fair, plus you know that you've made a positive contribution to our society by recycling books that others can enjoy. Do yourself a favor and stop in. Enjoy!",review,CftynqF7mHEpHHWQsUr5nw,0,1,0 +L-GfuOmn9mv55571uXvf2A,2009-04-11,5EDn6VZBYNeCGS2ufh39_A,4,"I am definitely quite shocked at some of these reviews. I disagree with the lack of flavor, and the tasteless dishes some reviewers experienced while eating here. + + I recently moved over to the N. Phoenix area, and while craving some Vietnamese food a few months back, I decided to browse ""Yelp"" to find it. I came across these reviews, and decided to check it out regardless of the poor comments of this establishment. I phoned in my order without looking at a menu, ( Chicken Pho, Egg Rolls,& Spring Rolls) nor knowing where they were even located, I eventually found it in the little nook of the Fry's shopping center. I walked in to a very tiny little restaurant with a cute little man standing at the cash register holding my wonderfully smelling food in hand. + + When I got home, I realized that he had forgotten to add the Noodles (which obviously is the biggest part of this dish) I was a little miffed but eventually got over it, once I tried the appetizers we ordered,and the wonderful flavor of our pho. I knew it was such a harmless mistake so I didn't hold it against them. After consuming our wonderful and inexpensive meal I came to the realization that THIS is my new Fav Vietnamese spot in the N Phoenix area.. I've eaten their at least 5 times since I found this place in Jan. That says something in my mind!! + +In my opinion they beat Pho Bang, and Avina HANDS DOWN!! It's clean, inexpensive, flavorful, and definitely NOT tasteless.. A definite treat if you ask me. Speaking of which I think I'll order some now :o)",review,mQekDIvOCHR8bPLH7Rpbpg,2,3,1 +GJ7gPJGl0r-1jPhp2Qz8BA,2012-10-21,V8ZrnbiYZ4kwEZucG3LhVQ,5,"Outstanding customer service!!! Great camping firewood bags!!! HUGE bags of high quality, long burning wood for $10!! Cannot be beat!!! + +Cash, check or use the ATM they have in the office ($2 fee). + +http://www.bbfw.com/",review,mA-7ol53a2RrfsS0oM5mEQ,0,0,0 +MpohnCC0uQNj7DZWaBFSgQ,2011-01-28,kK2qeR7RH_gc8ONbrEwCVQ,2,"I've had Five Guys before while in Pennsylvania and thought it was good. Not any better or worse then In-Out or Fatburger. Tried this location the other night though and was disappointed. Lettuce was slimey,buns soggy and the doneness of the patties, inconsistent. I'm not completely writing them off but will be in no huge rush to return.",review,DYPvo7JQhl2-qT2OpshyTA,0,0,0 +nFo_63pTr-4ZhakuaRFOCA,2012-03-24,oIooKl1DNBBEml4k6KwODg,3,"Sol Mexican Cocina just opened this week, so I'll take that into Consideration. Beautiful place, but give this place time to get there Act together. Checked in with the Hostess and was told 55 Minute Wait. Ok, found 2 Seats at the Bar and that was a very Positive Experience. Stacey our Bartender. was Terrific, she did everything perfect & the Drinks were Great. We ordered Guacamole and it was the Best I Have ever had in a Restaurant. Was followed by a Carne Burritto which came Cold & Was Comped.After sitting at the Bar for over an Hour we were never Told a Table was ready. The Hostesses are very Weak and need Much More training. My Suggestion is hire Older More Skilled, Expereinced Girls. who Know how to Manage the Crowd.The Place was Extremely Busy and Should do well and will Definitely give it another Try.",review,OGF6wKSu7qe2EzK9p-01kw,0,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2008-03-13,XUOcAWHyHQIEe4p7tE_QoA,4,"I have stayed at the Firesky on a few different occasions. I love the place. Granted, there are nicer, more luxurious places to stay in the area, but for the price, you can't beat it. The pool area and bar are fantastic, the staff is super friendly (which seems to be the case all over AZ), and the lobby is very cool with its ostrich skin couches.",review,8gNfSs8AlwxOd4m2lQigXw,2,2,0 +MAfc2V_EVtyR9rMxxEAPLg,2011-11-17,GJGUHAAONtBSBj53cnhxXg,5,"I LOVE THIS PLACE! It's so nice to be able to eat here whenever it's chilly outside. Actually, allow me to be honest, I probably would eat here everyday but I settle for 1-2 times a week. + +I get my Pho with extra meatballs and no onions and they make it perfect for me each time!!! The folks are awesome and no matter how busy it is everything come out SUPER fast! You know a girl loves to eat in a timely manner with my hectic schedule! + +The Springrolls, the crab puffs the chicken fried rice all amazing too! For a good time time and warm feeling after a FANTASTIC meal this is the best come winter or AZ summer time:)",review,Z3c7xGRfeV-uMkSbAzxV9g,0,0,0 +TQhP4vCMjvX527YMxPfuUA,2011-12-24,nQH2KAvAeOJOYKX99TO3Cg,1,"Just isn't very good. + +I don't understand why people give this place even three stars. It's rare for me to give a place a low rating, but, My Big Fat Greek restaurant is nothing but gimmick anymore and has gone from bad to worse. The food is not even close to any representation of what good Greek food tastes like. + +I've been to this place several times over the years. This location and others. It used to be just on the lower end of OK... it's never been as good as you can get from a 'Ma and 'Pa place. However, we went for lunch the other day and it's just gotten to the point I wouldn't even go back for a quick bite. + +We ordered the garlic hummus, and it was overly full of garlic and not home made. It seemed to be loaded with garlic powder, as opposed to fresh hummus that just had roasted garlic in it. The olives we ordered were rough at best. UGH even thinking about them. Overly seasoned and not very fresh. The rice was over cooked and was so soft it lacked any sort of texture. + +The first rule of good let, alone great food, is FRESH. This place needs a rescue. + +Less critical, but, I think an overall representation of what has happened to the place, the menu's were totally trashed. As in ratty, tattered, and dirty. The lamination was coming off them and they were dirty. + +Do yourself a favor and go elsewhere.",review,ryjqXdp68i2I9JPOpX9URw,0,2,0 +bAkVxrXzYO3772VF6o0_cA,2010-12-15,-yKcbjWSlmKC1zTMTfMR0w,4,"Sometimes I think my love for Mongolian BBQ is TOO much. I could eat at places like Genghis Grill or YC's multiple times a week and never get sick of it. Hell, I won't go to chinese buffets if they don't offer Mongolian BBQ. It has to be one of my favorite foods. That is why when I moved to North Phoenix, it was a hard adjustment with there being none of the marquee Mongolian BBQ chains being up here. Then I found Stir Fry Paradise via Yelp. + +My girlfriend and I went to Stir Fry Paradise on a Saturday after lunch hour. When we went in the manager(or owner, not sure) greeted us and made sure we had been to a Mongolian BBQ place before so we would know what to do. While we were selecting our food, she even made sure to help us with a sauce selection and let us know what combos work best. After that, she ended up cooking our food as well. She was really outgoing and helpful. + +The food selection was pretty standard for a Mongolian BBQ place. Chicken, pork, beef, and turkey. You could pay extra for shrimp. They had a decent variety of veggies, but all I ever go for is pineapple. They offer three kinds of noodles for your meal and nine sauce varieties. In addition to the stir fry choices, they have a small sidebar of regular chinese buffet items. Normally when a place like this has this side offer, they are pretty bad and not edible. At Stir Fry Paradise, this is the opposite. My girlfriend and I both enjoyed a few items from the side bar. + +Overall, I would say check our Stir Fry Paradise if you're in the neighborhood and want some Mongolian BBQ. Good prices and great service make this a great local eatery.",review,5W-ruHmpkwLyI6LlanHstw,1,0,0 +oxsCvEkQNNIbOPDt_QK_0A,2011-05-07,20aES_-g5Vyqfzojn1ax9g,3,"Good Indian food not great. Came in on a Saturday night, was craving Indian. Not busy at all. (Never a great sign). The samosas were the best in town, piping hot with a great filling that was redolent of spicies and not super mild like some other restaurants. The lamb korma and chicken tikka masala were okay. For some reason it didn't pop for me. It had nothing to do with the spiciness level, it was just missing that extra pop you get from a truly great curry. I don't know if the spices hadn't been freshly toasted, or if it was lacking a crucial pinch of love that day, but I wasn't feeling it. I left full but not quite satiated of my Indian food fix. And the quest for the best chicken tikka masala in town continues....(oh I should mention the interior of the restaurant is beautiful, the service good, but the prices a little steep for my taste)",review,vhxFLqRok6r-D_aQz0s-JQ,0,0,0 +cHURjSYCPpFiYQP639ZubQ,2012-12-04,W_d9w7yr3koSUXHcoft_dw,5,"I was visiting Tempe for Ironman Arizona and came down with pretty acute foot injury three days prior to the race. The friendly receptionist at Dr. Natcher's office understood the predicament I was in and managed to fit me into Dr. Natcher's schedule within a couple hours of my call. Dr. Natcher's is clearly both a great doctor and a great person; she is extremely competent, friendly, and sympathetic. As an runner and cyclist, she is also in tune with sports injuries and the mentality of an athlete. She quickly diagnosed the injury and prescribed an aggressive treatment protocol. I was in good shape on race day (due to her treatment protocol) and am so very thankful to Dr. Natcher for putting me in the position to complete the race in fine fashion. I was paying out-of-pocket, and was very pleasantly surprised by the cost of the office visit. I can't speak highly enough of my experience with Dr. Natcher.",review,aBnKTxZzdhabTXfztH7WqQ,0,1,0 +Bc4DoKgrKCtCuN-0O5He3A,2011-06-05,rYzOP5_LWimUy15531PYSg,5,"My first visit to Sweet Republic and when I was done my first thought was, ""why did I take so long to come here!?"" + +I sampled a few of their ice creams and let me tell you. All delicious. In particular the mint chip ice cream was delicious. It tastes like fresh mint because get this... it is! + +Service was quick and friendly. We got in right before a rush and let me tell you, the staff were able to handle it like pros. + +Each of their ice creams are homemade and you can just taste the love mixed into each one. You can tell how proud they are of their creations. I wont go into the kinds of ice cream they have but can tell you that whatever you choose, you will love. + +Stop on down, took me 30 minutes to get there from Gilbert, and enjoy a cone or cup. Do yourself a favor and don't delay for 3 years like I did!",review,OwCEsC0-oRxsSpTHZ0rrvA,2,2,2 +TgxDGx7L_JICWbuBUCGVqw,2012-09-24,8-4WSnjzZ7FpOGTYGiQ22Q,4,"I have past this place a million times and always wanted to stop and I finally did. It was good. The only thing that was fabulous was the cheese crisp. It was actually crispy must places its just a soft tortilla with cheese, I can do that in my own microwave. I didn't have the refried beans but they looked watery and not so good. I enjoyed this place and will come back but besides the cheeses crisp it was average but good.",review,rPScjzbwBSkOjvhZyLgbFQ,0,0,0 +I4bSn5gXsHuSPu7L-d_8nQ,2011-01-24,q6__xfDZyi2N1h7AgXVjaA,4,"Last night I made it in to Beckett's Table after hearing so much about it and everyone was spot on. The space is terrifically laid out very open and well decorated. We were greeted by the hostess and shown to our table. Our server came over right away with fresh water and menu's. So far so good. + +Laura ordered the Salmon which was excellent I am very picky with my fish being from Seattle and I would've ate that whole dish. The Cous Cous was great and a nice salad on the side to tie it all together. + +I ordered the Pork Osso Buco Confit which my server said was his favorite. I see why because this pork was fork tender and just falling apart. I really enjoyed the dish and the roasted veggies were great. I didn't even know what half of them were and I was still enjoying them all. + +I wish I had room for dessert because they had one I really wanted to try so I will be back for the Chocolate dipped bacon s'mores. + +Overall a great dinning experience and it's close to home so that's even better.",review,Iycf9KNRhxvR187Qu2zZHg,1,1,0 +KGX7O-_WqOIy9o7u9NOa9A,2012-05-04,EephTNpMOikw8nkbsWcU5g,5,"We were craving Mexican food and since we were in the area I decided to check on my trusty yelp app on my phone to find a perfect food joint to check out. Sure enough, it came through for us and told us about this little gem tucked away in an area I had been several times but had never noticed it before. I am so very glad I tried it as it will now be my go-to place for Mexican food. The food is delicious and fresh and reasonably priced. The guacamole is a must try and the carne asada is so good. If you're in the mood for Mexican and in the area, I would definitely recommend this place.",review,twZoTvWG92ntMVfEvbCnIg,0,2,0 +cp39VURFby4A6u9m2It8jg,2010-10-06,mZZ3qNSJoeSazB5gyu1aYA,5,"This place is one of my favorite burger joints. If you really appreciate a good burger, I don't think you'll be disappointed. Kobe burger, Double truffle fries, Creme Brulee Shake and just pure joy. First time, the burger was slightly over cooked for medium rare; but ever since I have been back multiple times and it's been prepared perfectly to my expectations. I do believe in second chances and they won me over. I don't get the mushroom on the Kobe; Meat is very tasty and flavorful, no need to add any toppings. The Samburger and Zinburger are very tasty as well. Last time I added bacon to the Zinburger, very good, and I do recommend that. The staff are very attentive to diners needs. I have tried a few of the Fox-RC and every time has been an excellent experience so far. (I hope it won't change). SF definitely has a unique and entrepreneurial vision in food industry which has, and will make him very successful.",review,82vsbM8ggZV4BVrtLB9s3A,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2010-01-15,3RyBNwY49LQD9_KQXeEf1g,5,"Seriously soo good! Drove 60miles to come here about 5 times in the 3 months that I lived in AZ. + +I came here because of the triple D episode and it was soo worth it! Burgers, fries, onion rings, sweet potatoe fries and pizza are ALL GOOD! +and check out their bathrooms.. its pretty cool too. + +Tried Joe's Real BBQ, which is their first restaurant but it was just OK. +Joe's Farm grill is def. one of my fav places..",review,ZLPueep-BYurjm9V-feHrQ,0,0,0 +Zg-C1aYcoR2L5OIrA01MkQ,2010-10-03,-uhyMmKcxYMKhofrT6Ug_w,3,"Not the best burger I've ever had, but a fun place to try with the coworkers on a Friday afternoon. I had the quadruple bypass and a few helpings from the all-you-can-eat fry station. Better than BK/McD's, but nothing to write home about. The waitresses were hot and they happily wheeled me out to my car in a wheelchair! But it's more of an attraction than anything else.",review,99MEJTe8aVcbRax9wrpWpQ,0,0,0 +c1yGkETheht_1vjda7G5sA,2007-05-02,8KCnY3Y_n0Yiz2E4Zy8Jzw,4,"Green is pretty tasty with high marks for the strawberry soy shake. I do agree with the poster below that some items are hit/miss. My ""Artichoke dip"" was way WAY too spicy (I could not eat it). My 'eggless eggrolss"" were tasty but ..fluffy. They came with a sauce that i enjoyed. +This is one of the essential places for Veg food in the Phoenix area.",review,51-ZrwQODnpIX0dQEshZNw,0,2,0 +5nahZe5bBYUbFWgEfwoNOA,2011-03-09,lgNmIQHXa_GffJ0JR7ZX3w,5,"This place is awesome and it replaced Trader Joes as my new grocery store. The produce is plentiful and fresh, they have Boars Head at the deli, and they have organic options. The meat is way more reasonably priced than AJs. It reminds me of a small Whole Foods without the ridiculous prices.",review,a_raVbErFAEx848zV-pgkQ,0,0,0 +zp713qNhx8d9KCJJnrw1xA,2011-08-07,CgChEdEM0NYLA8M-oDzaCw,4,"I love the artwork. Its a tiny little restaurant crammed with a bunch of little tables and chairs. You go up to order at the counter, there's a salsa bar in the corner with a LOT of different salsas (most are not that great). They do bring you the food and you do get a basket of chips on the house. The tacos are pretty heft - about 3 bucks each. They are ""Gourmet tacos"" after all.. + +All in all, its kind of uncomfortable service/restaurant wise (self serve) but the tacos are very good and you do get chips and a variety of salsas. Not the most friendly staff and the cost is kind of high for a place like this but its pretty dang good. Get it to go if you don't mind packing a bunch of salsa cups.",review,d0wJVf7Gv7v1B-HHYhxZtQ,1,1,0 +vtQOervVVTXjhvSZQiZ6PA,2009-03-08,heT-s5zCGQDzB9nxH07aLw,3,"This was the first and only Thai place I've been to in AZ. Overall, it is pretty good. I think we will probably try a new place next time but if we can't find anything better, I think we won't have any problem going back to Swaddee. + +*Price = on the high-end +*Pad Thai = pretty good volume +*Green Curry = very good. +*Garlic delight = The portion is way too small to charge $11",review,cH1lLTHReO6uDTif9bfOBA,0,0,0 +2nzUx_M8Szyzsf4CszHasw,2009-03-13,F0DGyl572Fa3L9FDV21tEw,5,"This is Mesa's best breakfast, hands down! This is one of my family's favorite Saturday/Sunday brunch places in the valley. + +Crackers & Co. is great food at great prices and we always take out-of-town guests there when visiting! + +I was never a fan of eggs unless they were scrambled or in an omelette, but Crackers showed me the way to delicious fried and poached eggs! The Eggs Benny is great, both Traditional and California-style. Their omelettes are huge and never overcooked (my fave: Spinach Mushroom) . The skillets are mighty tasty and really satisfying (my fave: The Vatican with eggs over easy). Try their French toast... it's got great flavor and is delightfully crispy. + +If you get a chance, try lunch there! Their soups are so scrumptious and the sandwiches are to die for! The Cream of Spinach and Artichoke soup tastes just like a bowl of spinach and artichoke dip, and they don't skimp on the artichokes at all! The Chicken Dumpling soup is seriously the best I've ever had (I'm not even a fan of dumplings!)! The Roma Tomato Chicken Melt is my favorite sandwich on the menu (such good flavor!), followed closely by the Drunken Chicken sandwich. Their burgers are quite good and along with their salads, they serve up a hefty portion! + +Beware though of 30 to 45 minute wait times on the weekends in the winter due to snowbirds flocking for breakfast. The wait times let up about 12:30P though, so it's great for those who can't decide between breakfast or lunch!",review,HUsAVJOGZgsiJA265R7JFA,1,1,0 +O-SE2b4SncLzk6jnPd8g6Q,2012-02-26,lH1vnmD7B5dpCTju01Y2hQ,3,"The festival seemed a little smaller than what I expected, and I didn't find a lot to peruse when not looking at various food booths. They had a lot of local Japanese restaurants selling food, such as Nagasaki Grill, Paradise bbq, and Arai Pastry, which was nice but I am close enough to all those restaurants that I could just buy their selections any time at their restaurants. I think I've been too spoiled by the Japanese festivals in San Francisco, since the food selection here was more limited and there wasn't as many booths to buy things from. I did like the cultural shows, such as the taiko and the martial arts demonstrations, and the shaded area with the bonsai and akitas was nice. I think in general though, if you don't live close to Japanese restaurants or haven't had a lot of immersion into Japanese culture, this is a good way to introduce yourself to it here in Arizona.",review,uZbTb-u-GVjTa2gtQfry5g,0,1,0 +EWMwV5V9BxNs_U6nNVMeqw,2010-09-20,FdX2TIkJZHdrTCNedksg_A,5,"FEZ for brunch on Saturday with a bunch of girlfriends was one of the highlights of my weekend. Several of us ordered the FEZ Fritatta and it was perfectly cooked with tasty toppings and the best bacon on the side. I also sampled the sweet potato fries and they were even better than anticipated--a standout. + +Plates looked pretty. C'mon, that's important! Presentation, people. Service was superb. + +Hadn't been to FEZ in a while and forgot how delicious it is! Let's go to FEZ more often, girls!",review,hGitwL2Ixiq3C6mJyQrlPw,3,3,0 +6G8FMxuYzz1ye4a386Rc_w,2010-06-25,88vXXnolVjnNF3Y04XxUEg,4,"Sadly, my mom fell down a wet grassy hill walking her dog on Monday night and broke her ankle in two places. Ouch! She was rushed to Scottsdale Healthcare North in an ambulance and texted me on the way to alert me of her injury. Let's just say I hopped in the car without blinking and drove up to Scottsdale from Tucson as quickly and safely as possible. + +When I first arrived at the hospital she was in a very small room, directly off of the ER waiting room. Seriously, I thought this was a closet, no joke! Jay, the RN, came in several times to check her blood pressure, take her to get x-rays, etc. You know....the typical hospital drill when you break your ankle! Anyhoo, he was so kind, gentle and had my mom in stitches (no pun intended - HA!) with his witty jokes. I could tell my mom thoroughly enjoyed his company and care. He was so wonderful and really helped take the pressure off of what was going to happen next....surgery! + +Shout out to Jay...You are awesome and thank you so much for going above and beyond to take such great care of my mom! + +After five LONG hours of being in the ER, my mom was moved to her own room on the Orthopedic floor...FINALLY! (Side note, all rooms at Scottsdale Healthcare North are single room occupancy. This is such a fabulous accommodation!!! That means no fighting over the remote or loud snores coming from the other patient.....YAY for mom!) + +At this point I knew this was going to be a long night and an extensive journey. We arrived at her room (on the 5h Floor) and were pleasantly surprised by the immediate welcoming of the evening nurses. They quickly got her settled into her room and made sure she was comfy. The room was small but super clean so no complaints there. + +A little while later we were told that my mom was going to have surgery sometime in the early morning but didn't have a confirmed time. Let's just say we both too tired to care because by now it was going on 2AM! + +I left the hospital and headed to my mom's house for a few hours of sleep before I returned in the morning for her pending surgery. Got there around 8ish and still no surgery time. Ok, at this point my only complaint was the waiting and the unidentified time of her surgery. This seriously went on all day until finally at 6pm she was wheeled down to pre-op. Again, more waiting as the anesthesiologist had a crisis situation with another patient. At this time I was fortunate enough to meet Dr. Nelson who was performing the surgery on her ankle. My impression of Dr. Nelson was that he was very warm, compassionate and informative. He asked for my phone number and said he would call me directly after mom's surgery with an update.....and he did! + +An hour or so later my mom arrived back at her room from recovery. All went well and it was time for sleep. I returned the following day (Wednesday) and waited her release. Ugh, more waiting. My mom was finally released Wednesday evening around 8pm with no problems or issues. YAY, we are going home. + +Overall, the experience at Scottsdale Healthcare North was pleasant and satisfying and I'm so thankful for their excellent and professional care with my mom! The doctors, nurses, physical therapists and aids were amazing, caring and extremely helpful. You can really tell these people are passionate about their job. Fabulous job Scottsdale Healthcare North!!! + +Oh, one more thing..... +Note to mom - no more slipping down wet grassy hills!",review,1IPIiUKzagDI5DzRtrt8Sg,0,3,0 +UJBSI5HydQgUhlTkC8ODDw,2012-05-01,_GvHt8v82Rv1-GpyBK7BbA,4,"I love their strawberry drink, its not really agua fresca because it's a little on the thicker side, but still tasty.. I've tried their sonoran dog & it wasn't that great. It was too soggy. (Get your ass to Tucson to experience a good sonoran dog). (FYI: El Guero Canelo is amazing!) +I've also tried their menudo & carne asada torta. But my favorite is the California Burrito. If your in the area & want Mexican food it's a great place to go.",review,utvgWVQlAgxaOuc8SRhGtQ,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2010-05-26,8AyRQ78ctCPenSjmzUeHHA,4,"Fun place for happy hour. Good prices, good food and great staff.",review,pprq_7lgBT-WDFGPQe1a_w,0,0,0 +kwq3bK7BzPKLwXKqVRztHg,2011-02-23,6jV77Bs_Vu_rHkdUxu9JLQ,3,"This review is for the JCPenny portrait studio responsible for the ""Christmas Blessings"" Christmas card that graced my family's and co-worker's mailboxes this past holiday season. + + My girlfriend and I were going for a ""Step Brothers"" pose so we had to look the part. I guess the look won't be in any Vogue or GQ magazine this year. No, you'll have to go back to the time when Circus Magazine was popular and when mom and dad went to key parties. + + Our photographer was wonderful. She seemed to enjoy her job and have fun with client's ideas. However the person who helped us pick out which cards to choose was not having any of it. If you looked up awkward in the dictionary and smacked them upside the head that's what it felt like. Her sheer agony of working there oozed out from her forced smile. + + Anyways, I'll just say that I am damn happy I had a coupon for a $30 package which included two 8x10s of different poses and a whompin' helping of greeting cards. A package that retails at about $170. + + And no, even if you pay that price, a happy ending is not included.",review,RwVaQNP1Ag-Seu3U9quGAg,1,2,1 +ss5gVggeSmAgMUeL65UvYw,2012-10-03,2jVLJSBUtfTSQtl2-TMVTQ,4,I was so excited to visit The new Postino in Gilbert!!! I love and frequent the original but this new location is much closer to my house. Bruschetta is amazing!!! Love the atmosphere and staff too. Wine selection rocks!!! Great Happy hour prices!!! Highly recommend a visit!,review,JL2tx1fRWWp_QMU_ddZdlQ,0,0,0 +m2hNiVSnMvXVRLMtsWUG_Q,2011-02-22,HGlj7Jkc10DVQhfUuN7lkA,5,I love this theater!! it's 100 % digital and very clean and the staff is friendly. I believe that the have child care if you have any. also lot's of great restaurants and shopping all within walking distance in the shops @ Norterra.,review,pw-k3TMjt1ZNB2-iRVTDlQ,0,0,0 +jsvIv9NRRBXdmCe8b88b4A,2011-12-30,p8f5SRmv17OZeQiXowTzmA,5,"We-Ko-Pa has been prominently listed as one of the places to play if you are in Arizona. I first played it several years ago, and it has become one of my favorite desert courses in Arizona. There are two courses - Cholla, and Saguaro, and although they are both desert courses, they are somewhat different. The cholla course is an older, more mature course and doesn't have the same feel as the Saguaro course. The Saguaro course can be walked, but has a wild side to it and to me, seems to have more elevation changes. That said, both courses are immaculate, wonderful condition, and a joy to play. + +Over the years, I have played the Saguaro course more, but lately the Cholla course has grown on me. Now when my golfing buddies come down, I always make it a point to play both courses with them. This has led to some interesting memories. + +The first time we played, despite my warnings, one of the players wandered off the Saguaro course and found a Jumping Cholla. He liked it so much, he brought it back to us - stuck all down one side of his body. It took us quite a while to get them off of him - and then he wanted us to give him extra strokes. Not a chance. + +Another time, one of my friends teed off on a par 3 on the Cholla course, and hit it into a dry creek bed. He seemed to lose his composure, and hit five provisionals, which also went into the desert. Then he found his first ball, and ended up with a par!! Of course, we haven't let him forget the five provisionals... + +I have read some comments about the marshals on the course, and in the past would agree. However, the last two times we played, the marshals have been very good - very courteous and very helpful. The last time, while we were playing cart path only, one of the players was very slow (as usual) and the female marshal most diplomatically asked us to speed up. She was one of the nicest, most courteous marshals I have had experience with, and consequently, one of the most effective. + +The courses have a nice driving range, chipping and sand area, and putting greens. Unfortunately, they no longer allow you to use them, unless you are playing one of the courses (you used to be able to pay a daily fee to use them). + +Finally, the service is friendly and courteous - from the drop off, to the restaurant, to the desk personnel, I have had nothing but pleasant experiences with the employees. + +I think any golfer should experience these courses at least once - a visit would be well worth it.",review,w_hcSjqLeSZQL9Rx1UP-Tw,0,0,0 +yPJFfglhMHAKciUpjTmgBg,2012-06-07,zs9J2_eS1TWbPP21vpAHMg,4,"Love Oregano's :) + +The 45 minute wait for deep dish pizza does not bother me much because I know I am going to get it just the way I like it. Lots of pepperoni and easy sauce. The BBQ wings are so good. They are crispy, hot, and bathed in sauce. Service at Oregano's has never failed me. In Tucson, AZ and in Phoenix, AZ service is great :)",review,WxO2x4xGbHfeWfU_MbuzTQ,0,0,0 +bgTB6MgdVQssXhkNJ7qIfw,2009-05-31,ZptBybhYSnc7IXJRxqc5Ng,4,"Great place for dinner! We had an early seating (5:30 on a Saturday night) so the restaurant was pretty empty when we got there. As a result, service was very attentive. We ordered a little bit of everything off their different headings. We got the mushroom rice pot, the pork belly, chef's sashami, sweet corn skewers, chicken yakitori, one of the grilled entrees and dessert. Everything was fantastic with the exception of the grilled corn. It was SOOOO salty that it was inedible. I mentioned it to our server and he just brushed it off - didn't offer to not charge me for it or bring me something else. But because the rest of the meal was pretty good, I'm still giving it 4 stars.",review,UL3oXAjeMDm4oxeHs803hA,0,0,0 +zOCdVUKUN3b-obT67Qjyww,2010-12-23,kBFbfujGIFMOABxDAlXrbg,5,"Haus Murphy's is fabulous in so many ways that I can really only hit the highlights here. Even if German food isn't your favorite (I dislike saurkraut and cabbage), the service and food is great. + +The service was wonderful. I was almost 2 hours earlier than my friends, so I used a table in the bier garden to do some work on my computer (with my own mobile hotspot. . . Haus Murphy's does not have wi-fi). The entire staff made me feel welcome as a sipped a wonderful German beer and did some work. + +My friends showed up, we had great dinners, and then we continued on to Glendale Glitters. If I'm able to make it over to Glendale from my home in Mesa for Glendale Glows in January, I will certainly stop in Haus Murphy's. + +Authentic German or not (I've never been to Germany, my friends of mine who have seemed to really enjoy the food too), this place is worth the visit. + +Enjoy!",review,xQJY0AAY4yRaUqWUjD_nLQ,0,0,0 +vtQOervVVTXjhvSZQiZ6PA,2011-09-23,VC3y59RLD30paihciSybLw,5,"This has to be the best Thai food around. I have tried a few other places, but none are as authentic and delicious as Swaddee. We are now regulars and have never been disappointed.",review,PWTyPP6APJTmzV1pGAxnkg,0,1,0 +-3WVw1TNQbPBzaKCaQQ1AQ,2012-03-25,60idNT8l0RwAFTPHhnMq2w,4,"Wow! what a great meal last night. Kinda nervous to go back after being there a cpl of years ago for lunch and not loving it. BUTTTTT 2 words: Boiled Wontons. Order these and u will prob crave them for days. Spicy broth with boiled wontons in a light peanut sauce. I also ordered my fave, Peking duck. Very impressed with the quality and will be going back more. They do bring the food out superman fast so you kinda feel rushed but other than that, i see why they are sooo packed.",review,9ebaAGLVIgGKpDLFwmvaiQ,1,1,0 +LYyGQgL60VKdV-p_9OxmWQ,2010-12-13,ore0onHBza2syU1jhfQK8w,4,This was my first time here. It was a nice experience.. And I found that I really like Indian food ! Good stuff !,review,1ggf9iT4TNT09e15Zoj73g,0,0,0 +P1DyzJfy3RCOdT9s9zgNiA,2008-06-17,jIA81IRiDADoEolIqdr6CQ,4,"I'm a little late to the party....I finally got around to checking out the new and improved Chez Nous last weekend. This is sad because the new location is within walking distance of my humble abode. + +Anyway, the place looks fantastic. I love that it has the same vibe, the same house band, the same goofy rock sculpture (WTF is that?) and the wallpaper. LOVE the wallpaper. + +I also love that the bathrooms are nice and clean, but really- no one goes to a bar for the bathroom. + +The bartenders make a mean dirty martini and they don't get pissy with you when you order more than one. (Take note, Bikini Lounge!)",review,N7lSh49zQ13sG3Jpa9E6cw,1,3,0 +YCCDMLcb7UW8G-o_HsWiiA,2011-07-31,X6enPAcMgbxSD9Yt4KiO8g,2,"The salmon was great. They overcooked my husbands steak, which was just a so-so steak. City hall is much preferred!",review,IsDEpSZZDc89rvSsID-7Vg,0,0,0 +13VZKXF7bBuLsLDh_r3g0w,2012-04-03,wNlzdkVspcPoIPxYdH8K8g,1,"Slow, unorganized and filled to the brim with crazy people. I prefer to do everything through the service arizona website but recently got a letter that I needed to get a new license because my picture was going to expire. It makes total sense that my license is valid until I'm 65 but the picture expires after 11 years. Of course, the state charges a nominal fee of $12 to replace it. If the state of AZ was in need of my money I'd gladly just give it to them if it means avoiding this nightmare. Oh, and the camera is set to fat...",review,g6e53q-wNxtbz5KI9B3pnw,0,3,3 +oXKPSI-RUqOvmuSCh_DEQQ,2010-11-29,F4C66MWnGCeziEpbWFKrkQ,5,"SAKE *Japanese alcoholic beverage made from fermented rice; usually served hot . + +( Full disclosure : I don't like sake) + +Parents in Scottsdale for a first look at the new house / neighborhood. We were on the horns of a dilemma : ? Would a mid week , early season dinner at the club be too quiet? Should we descend south of the Frank Loyd Wright into south - north Scottsdale....?? + +We opted for the safe bet - booked a car and headed south to the Ocean Club. + +** A) never drink and drive in Scottsdale ( or anywhere else for that matter) + +**B) if you're a foreigner - never- ever drink and drive in Scottsdale + +**C) A + B refer to you Nikolai Khabibulin + + +(( A nod of support to the YELP community . After perusing the Ocean Club reviews retrospectively I believe the correlation existing between the posted notes and reality to be around 0.90 Well Done!! +( I would go as high as a correlation of 0.95 if high and low marks were thrown out ( similar to olympic skating or gymnastics))) + + +We arrived at the club---- a good bar crowd ( not quite as Mountain lioness(y) as i had expected (? hoped?) -- ? mid week perhaps...?, +a good blend of hipsters , hobos and Mrs Lovey Howell III's + +( score +1 for the Ocean Club) + + +We were promptly seated - at a good table - well positioned , near the back and partially curtained - nice. + +( score + 1 for the Ocean Club) + +The waiter then promptly arrived to take our drink orders: + +Now - I don't like Sake ( see note above) - but on occasion - I like to fancy myself as the kind of guy who may indeed like Sake- hence , I order a Grey Goose Sake Martini - + +"" I have no Sake"" the waiter announces sadly. +Now - this is tricky - can I in good conscience penalize the establishment for not having a beverage that I really don't like or want in the first place? + +Too bad for you Ocean Club 'cause yes I can. + +( score -1 for the Ocean Club) + +The drinks arrive - I have opted for Grey Goose sans Sake +and yes -sweet Jesus they are huge ( see prior posts). + +( score + 1 for the Ocean Club) + +The waiter then arrives to review the menu and describe the specials- +This he does without note , blackboard , evening card or inked cheat note on his wrist- + +He recites for what seems to be forever... +It is like a reading from the old testament - but instead of a mere chapter of the book of Leviticus - he recites the entire book.... +I am captivated ....( or is it the Grey Goose) + +?? does he really know the name of the Italian girl who dug this evenings truffles up in Piedmont...?? + +?? does he really know the glove size of the Japanese ranch worker who massaged the Wagyu beef and from which prefecture he hailed...?? +( if so - why didn't he have him send me some Sake....??) + +at any rate - I am entertained + +( score + 1 for the Ocean Club) + + +The food arrives - the portions are huge and the flavors sublime. + +( at this point in the evening my memory fades into Grey Goose and Châteauneuf-du-Pape...... is that Joan Rivers - across the bar making eyes at me....?? ) + +( score + 1 for the Ocean Club) + +dessert arrives, sated , - we cannot really eat any more but I remember thinking that the desserts may be the best I have tried outside Europe- + +( score + 1 for the Ocean Club) + + * * * * * + +Adding it all up five stars and a promise to find a way to post six stars next time I am there if they find me some gosh darn Sake!!",review,Kq4cVcc_g8amBkHe5dJ01A,2,3,5 +CMvCbtkcHH9Gp0S3w1_aQA,2011-07-15,2SA2NztY3RaA-jGppeoO6A,5,Best in south chandler. Glad they are out here,review,KrqafLanxNm4iDxbC74R1g,0,0,0 +AX8lx9wHNYT45lyd7pxaYw,2007-02-19,-jXeFS4A7btHNX1THYHRbg,5,"What a find. In a strip mall nestled between a bank, clothing stores and overnight shipping is Giuseppe's. A family owned and run establishment where byob is the way to go. This reminds me of countless small mom and pop's back in The City. The staff is friendly, the portions sizable and the check small to medium. In fact, I can't believe I haven't reviewed this restaurant before. Whether on a date, or with the family, I've never had a bad experience in the dozens of times I've been there. From the veal parmagian (sp?) to the eggplant, from the fettucine to the spaghetti and meatbeals... mama mia. It is a small venue, with very limited outdoors seating during good weather. And the locals know about it, so it gets pretty packed Thursday through Sunday. The salads and appetizers are delicious as well... If this restaurant had been in Spinal Tap, it would get ""an eleven""...",review,Sjp6EYsqzdlTvymER6wBfg,3,5,3 +xY1sPHTA2RGVFlh5tZhs9g,2010-02-17,s-jeeE4_vIzL_HTQF2oq4Q,4,"My family and I decided to try CD last Saturday night and it was great! We started with the homemade potato chips and Smoked Salmon which were both EXCELLENT and moved on to the pork ribs, salmon, gnocchi and a burger. My family and I have a tradition to share the first bite with each other and wow... they have a winner here. I am not a huge fan of some of the other Fox restaurants, but this is a winning combo. Great price/value and the service was spot on. Can't wait to go back this weekend!",review,eaRMRfSM8TSbw2CVxUmYIw,0,0,0 +2BSF6wu1V3KfyFJf1DQ3DQ,2012-02-17,iJL759RhKzfllR1mmazIgg,4,"Don't let the ol' door-in-the wall/lack of window effect scare you! The Tally Ho does a fine, fine job of balancing that delicate mix of neighborhood watering hole/hipster hangout. The drinks are strong, the bar staff are friendly and everyone's in a good mood at this little dive bar. The music (stocked with a multitude of genre) is always on but not so loud that it interferes with conversation. There are a couple of pool tables, beer in a bottle and the drinks are served up just as ya ask for 'em. Can't go wrong with this place if you're looking for a quiet, entertaining hangout to throw a few back. Between the red vinyl and HUGE bar, I heart for Tally ho.",review,7i14F52gOUBqlRudUCwPsA,1,2,1 +qSLdUiI2edATC3KBT2zf4Q,2011-03-10,MdmS22AlIgG1lN6wZ2ZFMQ,4,"I tried Narai when my family was in town; everyone enjoyed their meal. They have a wide variety of Thai food and sushi and a full bar. Our servers were very attentive. + +I had the tofu pad thai with medium spice (which is still pretty spicy). It had a nice flavor to it. and enough of a portion to take leftovers home for lunch. My sister really enjoyed her papaya salad and thai soup and my parents liked the cashew chicken - the sauce had a great flavor. + +There aren't a ton of Thai restaurants in North Scottsdale... I'd say this one is a very solid pick.",review,oy6fdscGSXY2gzRqF9pZxg,1,2,0 +doEZAj-NSnoEMOJl5yXcNw,2010-10-06,IbZa5ZqgjP-iRPm2Xo2h3Q,5,"I've been coming to Yusefs now for awhile to get gyro meat to go, along with their fresh feta, pitas and cucumber yogurt. BEST I'VE HAD! Finally I was able to eat there as they have a kitchen and OMG, it was delis and the prices are fabulous. I ordered the lentil soup and holy cow, it was UNREAL! I got the gyro plate with gyro meat and fresh rice (basmati?) and it was fabulous. Gyro Greek salad was amazing too. I love coming here because the owner is nice and very sweet!!!!! + +I recommend you try this little gem!! It's worth the drive!",review,3vML-LnH0dIyHCrqF5xEYw,1,1,1 +JxgoluY8hnC34cys_f80xA,2010-08-26,-yxBoeSJaPrzTZXoh9dYjw,2,"I met some friends here for lunch, the menu is a weird mosh of Italian, Mexican and American food....it is almost like they can't figure out what kind of restaurant they want to be. + +I ordered the cheese enchiladas which was probably the wrong choice at a non-Mexican restaurant, but I just wasn't feeling anything else. The two people who were with me got their food, and I was still waiting, and waiting and waiting. Finally the waitress came over and asked if anyone had been here to talk to me...isn't that her job? She said that they gave my dish to someone else by accident, so they are making me a ""fresh"" plate. + +My enchiladas finally arrive, and look like they were just slopped on the plate. i take a bite and guess what? They were barely warm! You would think that a ""fresh"" plate would be served piping hot! I took a few bites, but by now I was over them and late for a meeting. + +A waitress that was different than ours brought over our check, which included my enchiladas. I told her what the problem was, but she didn't seem to speak English very well and said she would go ask someone. They did take them off the bill, but that really should have been done automatically since the other people at my table were done with their food before I even got mine! + +The decor is odd too, it is like they are trying to be a sports bar, but maybe aren't sure, evidenced by the 6 plasma TVs sitting in the corner still in their boxes! + +If I have a say in the matter....I won't be returning to Deemos.",review,fAiVqZv7P_oc5CzGMX_G9w,0,0,0 +k_aOcqWOHWprjs7ykdzlAQ,2012-08-12,rhiF6_3ZZr_vfYLqckVz8g,3,Maybe I expected too much. The silverware was plastic. The plates were plastic. I felt like I was at a cookout.,review,AyEiHIMRZmgda_seZy1PZQ,0,1,0 +rVUEZpHQfWI_3kt0lBwaxQ,2012-05-02,d4jnrJHJWS5Zkp27-JFuaw,3,Met up with a group of friends here on a Monday night... a big group. Although Keegan's had no notice of our mob arrival they did well with service etc. Beers were poured fast; food took a little extra time but with a group our size that is to be expected. The outside patio space was great on a warm AZ night... a friend got the sliders and said they were quite tasty when they finally arrived. The happy hour prices are okay with a nice choice of beers and mixed cocktails.,review,jRtdO03kWbReasB_vBlTsQ,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2008-07-17,1HwtNOm11v0I3QTfSUO8FA,5,"Not many places that you can go and get a natural casing charred white hot dog outside of western NY. +Folks I know from Western NY love this place, and I have to agree (even though I'll still take a good Chicago dog any day). +I know where I'll be going if I ever have an itch for a white hot. :)",review,P2vHl_ZzSzeu07W29KsKgg,2,2,1 +9SKdOoDHcFoxK5ZtsgHJoA,2010-04-07,MNYHCmQW9aAvHel3i05NJw,4,"I love that there is a locals place right within walking distance of my apartment. I've been drinking there for a couple weeks now and I love the good beer and cheap prices. I just ate there for the first time last night and the chicken sandwich and curly fries are delicious. The service is reasonable, the atmosphere is friendly, and the patio makes for a great hang out.",review,F9Lvy5LfkeYMF1r_Al-Fxg,1,1,0 +V2isTBBfO0NgLzXO9oq1Mg,2009-08-06,X-R8keLwN3KJZ74qsRAhNw,4,"Great place for tapas! I really enjoy this restaurant for a couple reasons. 1 being that they change the menu constantly and 2 being that each item on the menu is always good. Some are better than others, but the worst thing on their menu is good. + +I love going with 2 or 3 other people so we can order a variety of things and I can try new and different kinds of food. Sol Y Sombra is always a nice change of pace from other Scottsdale eateries. + +Nice cocktail and wine list also.",review,OpjFNuQiyqh9Sms5Ex8Wxg,2,3,0 +ioGIaoswvbbeY8P965IYRA,2010-06-02,IkrGeXEOTro18PZmMk7Qrg,5,"I love everything about Oregano's! My first experience was in Flagstaff with a location being right off NAU's campus, and I was thrilled more started to open up in the valley. There is one in Mesa, now, very close to me, and the ambiance remains the same. I love the vintage decoration, the music, usually Ella Fitzgerald and other jazz icons, and the FOOD! All the appetizers are amazing, especially the Boom Dip. My favorite pizza is the O-Riva. And passing up the Pizzookie (pizza cookie) is out of the question, get your friends to dive into this amazing desert. Also the bellinis are outstanding! Enjoy your experience here, you will fall in love! Have patience at the smaller locations, usually there will be a wait.",review,KbCDV2hjwgh2rQT2aMwjAA,0,2,0 +EWMwV5V9BxNs_U6nNVMeqw,2009-08-06,Tw5a1a49KNUI3yB_vk0YXA,2,"DH & I went to Fez last night for happy hour and than back again for reverse happy hour. We had the poppers, the turkey burger special, orange margarita, pomegranate margarita, 2 beers, chicken phyllo pastry, and the walnut brownie. Both of the margaritas were good, but the food, with exception of the dessert were all terrible. We've been coming to Fez for awhile now we normally order just the entrees, we were surprised at how terrible the appetizers were. Majority of the food was left uneaten.",review,yJihBbisa05Yz6FUQtzE1w,1,2,1 +pa6K7DGByxBXxcVJ59nWMw,2012-03-18,V72TF1WH7YW9gQAJDd5qWA,1,"The service level and attitude of the staff was diabolical, they demonstrated absolutely no interest in our business. Ever since moving to the new premises, things have sucked. I shall not be wasting any more of my time or money here.",review,xm47wfTVHLq8-72HR5nPmw,0,1,0 +dipzJ5BExpm6BtJ91mXd4Q,2012-10-26,801ruVlnZZ1b8L52eiJhWw,3,"Good food, but I don't care for the SUPER FAST waitstaff. Fast is one thing, but walking away while I am still trying to order is RUDE.",review,pQ6ij6cOBRB3yJGHbVZHUQ,0,0,0 +_CG5zJAoNN6gszjhSyUcww,2012-07-25,PhpatD5E8aPr-epv-bByug,4,"If you love Korean food, you will not be disappointed! The hot tofu soups are so good and served piping hot with your choice of spiciness. Their galbi ribs and bulgogi are authentic and as good as it gets. My son loves their pork katsu, which is served with rice, salad, and potato salad; and the servings are huge! + +We are regulars and bring visiting family and friends frequently. Great place!",review,HFTmwmRYMmNnwpJ6c7077g,0,1,0 +6Kon3cR5ZEm5rmYKlpcfcw,2009-09-21,IYqWD2Q76-6i9uTVq5tejQ,4,"Price to performance is pretty stellar. For $110/night I enjoyed a large room with a luxurious bathroom, balcony, and cool retro furnishings. Service was decent, but the W Scottsdale is better on this front. Breakfast at their restaurant was basic but worked. Stylings from the lobby to the furniture in your room is really well done, the hotel has a great boutique-y vibe but without the pretentiousness. The location is good, only minutes from downtown Scottsdale. One snafu while I was there... I sent out some dry cleaning that was supposed to be back by 5:30pm, didn't happen. It was a stressful half hour before they found my stuff (all cleaned, phew!).",review,rpOyqD_893cqmDAtJLbdog,10,12,10 +U-0hMfagGtjYZCYB1i0WNw,2010-04-08,ogXY4GLmUJIdPrFk_eKYZQ,5,"best place in scottsdale to watch a game. Great food (greasy, but what bar food isn't?), great drink specials, and an even better atmosphere. The owner came by and greeted us and made us feel very welcome. I will definitely return in the future.",review,Lg6IT7xzGYtshQbzE21jBw,0,0,0 +Epw24kOK4s9kvnf9I6XoCA,2012-11-25,tiYxg4D8j9voFm6741owcg,1,"I've been to Milano's Music several times and each experience is worse than the first time. I look at the reviews of people I actually know and realize that each experience is different. On the biggest day of the year for Small Business owners who should be reaching out to the customers and gladly sell them the smallest items Milano misses that point, by miles. My husband is re-learning to play the drums and needed a drummer's throne and since it was November 24th and ""Small Business Saturday"" I thought ""why not give them another try"", guess what we walked out with Nothing they lost potential set of drum customer ( those can cost anywhere from a few $100 to $1k ). I won't go back in there. The guy that is in charge of the drum section is rude and pompous and walked away from us TWICE. The second time was enough to make my blood boil. We found a throne in another section that my husband liked and I said let's get it. The guy came over and said ""Oh, I have another one in the box"" and grabbed the one in my husband hands and walked off never to be seen again. We waited and waited at the checkout counter for him to show up, he never did because he had decided to help another couple. I looked at the cashier and my husband and said ""NOT cool at all"" and my husband set all the other items he was going to purchase down and said we won't be purchasing anything. + +I felt bad for the guy at the register because it wasn't his fault and he apologized but that doesn't give the guy running a section the right to decide what customer is more important and that is what he did. New customers should never be treated any differently and to basically make a statement of you are not important enough was the final straw. + +I grew up around Milano's music stores they were the first to give me guitar lessons and it is sad to see this happy. Besides this Yelp review , I plan to write their the store personally. When small businesses are struggling and this kind of thing happens a person begins to understand why more people shop with a big box store and less and less from Mom and pop stores.",review,5Td84D4oDkkgxsMeqcrTRw,0,2,0 +Y6CrVJ60m8vJvpPsHwUT9Q,2012-05-26,_eMicN4vqkoH560wzrv0pg,1,"I have been a ""regular"" customer at this salon ever since it opened. At first it was great! Clean, relaxing, and welcoming. After a few months without a manicure or pedicure I decide to treat myself to a manicure this past week. I went in and a lady did a beautiful job on my gel manicure. She paid attention to detail and didn't rush through the whole process. I didn't have time to get a pedicure so I decided to come back the next day. I only wish that I had her do my pedicure yesterday ... + +The guy who did my pedicure had some sort of infection on his thumb. I didn't notice it at first because he was using gloves but when it was time for the foot massage he took his gloves off, revealing it. Tracy was doing someone else's nails right in front of me and clearly saw that he had some sort of sore or fungus on his nail. It was completely black and it looked like something was growing out of it. I was shocked that she didn't tell him to at least put his gloves back on. The ""massage"" that he gave me was hardly any massage at all. He did the same motion over and over while concentrating on the tv. Definitely not worth the $25. The worst part is that he gave me an ingrown toe nail. The whole right side of my nail is swollen and I just hope that I don't get an infection. This was by far the worst pedicure that I have ever received. Even though I had a great gel manicure here, my last experience was so horrible that I will not be back.",review,eZZwcrpbf9M8AlEQT3DsCA,0,1,1 +t4aP7ksa716XY6S4EsWFqw,2011-01-03,Nf7mBRLJpjysPbEFQlOaoQ,5,I'm addicted! Everyone there is so freakin nice. And Maui dogs are delicious.,review,GwTb7Kiacz0jxqtiK8y09g,0,0,0 +WIHl_M10eMYdbgX1yU5Kaw,2010-10-11,Uh7AOQdP5pPvkKh8qdDAbg,4,"I am so glad I found this nursery! Not only is it a beautiful place but the employees are unbelievable, so helpful and knowledgeable. + +Needed to get my garden ready for planting and they helped with everything. The plants they have look great, not all wilted like some other places. + +Think this has become one of my weekend stops.",review,qH2HOcOtZpLwW4kjgZUXEg,0,0,0 +N_6bV3c3JagKW7sD3X9ldA,2012-01-24,dwCJiP7za-BCTf38vL6e2g,3,"Anything with the word ""Original"" in that name always makes me wonder, for real? + +This place is for real. It is very close to the new house and I met the 'rents there for a burger the other night and to watch the Giants beat the '9ers. I immediately felt a sense of familiarity when I walked in the door, I hadn't remembered being there before until I walked in. But it all came back to me very quickly. I remember stopping by here years ago with friend before heading to the Fair one year. It was just as good as I remember it. + +It is an old fashioned burger join. You can either walk up and order then take your food to your table, or if you are on the bar side you can order from the bartender, who is very attentive, even with a full bar and restaurant. Once you get your burger or sandwich, you go to the fixin's bar, load up on toppings and veggies then sit back down to enjoy! They also have some great sides and aps, fried mushrooms, onion rings, zucchini and fries. They fries are OK, a little over done for my taste but everything else was great. + +This is a great place to make a regular stop on your weekly happy hour agenda, to watch a sports game (tons of TVs on the bar side) or to fix your burger cravings.",review,_uL7OiQSfNsCd60DrAf7qQ,0,1,0 +e9JhcYEgNbRL8i8CTdQO2w,2008-05-27,zjOc-1i4CIjHzl5ybGDLow,3,"While the idea is not new - an updated outdoor shopping center that mimics a European outdoor shopping and residential district, Kierland Commons is similar to West Village in Dallas, TX or Santana Row in Santa Clara, CA, however, in the Scottsdale version, it is completely stripped of any personality and design, perhaps to better blend in with the desert environment. + +The usual suburban chain stores can be found at this shopping center, ranging from Smith and Hawken, Banana Republic, Barnes & Noble and the like, though there are a select few independent retailers which make a trip to this center a little more interesting. Parking can be difficult, however, there are lots that line the backside of the center as well as valet parking across from the center park. People watching is quite entertaining, from the kiddies that frolick in the fountains, to Barbie's desert siblings. + +The independent dining options are a little more interesting, such as The Green House and Zinc Bistro, though again, the usual unimaginative chains are represented here, including PF Chang's and The Cheesecake Factory. + +While I don't find most of the retail offerings at Kierland Commons to be particularly compelling to make multiple repeat visits, I will return for the more independent dining options.",review,Syn0IvWg-M7I4G2t_XyHoA,1,2,1 +GpK9MeUjEd7rwhejG2ykww,2011-06-15,JAZx1ZTdTFUYQpbZkqt7QQ,2,"Maybe I'm ordering the wrong stuff, but I've *always* been disappointed in the grub at 5&Diner... The service was STELLAR and I really do like the ability to dine Al-Fresco at 3am, but does everything need to be soaked in butter flavored crisco??? ughghg.",review,nbofxFWHORebBHh10OgYLA,1,2,1 +29hR24tcAM3JZaXfA5xCxQ,2012-04-09,t9S5cXGw82U1r19OQaR9qA,5,"We attended this restaurant for an early seating at 5 p.m. and were immediately impressed with the atmosphere and professional staff. Both were first class. + +We decided to sit at the counter overlooking the chefs preparing the food and we were glad we did. One young fellow was more than happy to answer any questions we had regarding the preparation as well as the presentation of the food. It really was fun to watch the whole process. + +We decided to go straight to the entree instead of filling up on an appetizer beforehand and we were glad we chose to do that. We each ordered the Kobe Vaca Encebollada, which was a grilled Kobe skirt steak nestled on a bed of caramelized onions. Alongside the steak were three slices of potato about a half inch thick and these were topped with a guacamole type mixture as well as other toppings. They were absolutely delicious and I was so sad to reach the end of those. The steak was cooked to absolute perfection and I was determined to clean my plate because it, too, was just so scrumptious! It was a very ample portion and we did clean our plates and definitely had no room for dessert, unfortunately. As our cocktail, we followed another reviewers lead and ordered virgin mojitos, which were $9.50/ea and they were delicious and also sufficed as a dessert stand-in so the tab wasn't too crazy at all. Well worth it for that delicious steak. + +We did dress up for the occasion and were glad we did as everyone was dressed casually but nice. It's fun to have the whole experience for a special night out. + +We look forward to returning soon.",review,io5b3aooPSgC0gFpSSrqNg,0,1,0 +PdWe3jF9YEu5fWBiQXZIgg,2012-10-04,HOD8qF2OW0AnlPrsscUyxA,2,"Why Meh? + +The state of repair on the games made this a voyage of discovery, e.g, with a 2 hour unlimited card I could work out which machines actually worked:) + +.I'd rather have a downed machine than something that is unplayable but maybe I'm just unlucky that I hit the 4/5 games with issues in my first plays. + +End Ghost Recon.. gun on left won't hold steady target jumps all over. +Opposite of it : Need for speed Carbon has a intermittent brake pedal which won't let the car go too fast) +Mechwarrior 4/ Beach-head 2000 unit.. Hideously slow , jumping frames, jerking hydraulics, broke after playing. +Can't get 8 way direction on left side of tekken 5 + +Gave up and played Galaga after that:) Yeah left / right fire that works:/ +Variety is lacklustre, Shoot, Drive , and oh shoot AND drive is about all you get with rare fighting games, not a single vertical / horizontal scroller",review,N3L6SDymSRkYQtTiSDmXSg,0,0,0 +VLRmecRseHP8ZLljlp7CFw,2011-12-10,iH2JVic0jgKPRSJE6-6XuA,3,"Yes, this is an awesome toy store. Huge selection and a friendly knowledgeable staff. But the prices... Yikes! I really can appreciate the fact that these are wholesome, well-made toys with a focus on learning rather than supporting the corporate brands and Hollywood characters. But it is just not practical for your everyday shopping needs. I recommend it when you want a special or unusual gift or if you have one of those rare children that wants intellectual stimulation more than to impress their friends with the latest electronic gadget or action figure.",review,VPXgY9lGJF3XC4ZpusxNuA,2,3,2 +rr13jM6SUmfPPPGHHMHCgQ,2010-11-07,R1Oj0OC4d0-i9QIC60rekg,1,"We were driving around Chandler area to find a decent place to eat and Mido Sushi caught our attention. ""Oh, Okay!"" - I thought and walked right in. We were greeted right away with a good waitress, but somehow I found her voice was really annoying! +The food came out after 10minutes and I was disappointed with the sashimi! It wasn't as fresh as I expected. The soy sauce tasted very weird and too salty. By far this is not the most decent sushi restaurant I've experienced. +Kabuki and Masa sushi are still my best choice so far.",review,M9mayv89c7zxgUS-EKWtHw,0,0,0 +7cP7WFmWiTVh-raIL3N_Vw,2007-06-09,9ijwAOakURqTfxvDGFd2mA,4,"I had a great time at The Roosevelt. The lovely duo of Megan and Gretel took care of me with good food and drink and everybody I met there was really quite friendly. I liked the almost too many choices of beers on tap, including the current rotating pick: Summer Solstice from Anderson Valley. (I'm told that brew isn't widely available on tap in the phoenix area.) + +everybody say it together now: get the pretzel. but be careful it is piping hot, you may want to ask for a knife and fork if you want to eat it immediately. + +my entire life I've never had a tomato soup I liked until I had their grilled cheese and tomato soup. the soup was great! but the cheese sandwich could have been better. + +one thing to be aware of is they serve mostly beer and wine, with a ginger ale and a root beer. oh, and water. so don't ask for a martini, cola, or other bar favorite.",review,EEWsFy0gqs8Osp1IPnfLTA,0,3,0 +SG_gEmEXL4ID6RAEinC5Bg,2011-12-02,7BPN3rBKuCvMDvkbScKI2w,4,"I had expected this place to be a rather small museum, but it is actually quite large and is packed with artifacts and pieces from Native American tribes. During our visit, we took a tour given by a Navajo student. He was very knowledgeable and definitely kept everyone's attention with the information that he provided. With the amount of exhibits on display in this museum, you can easily spend two or three hours just taking in everything that is offered. There is a wide range of items on display from dolls to paintings to glass work to clothing and jewelry. Another cool thing is that this museum allows you to photograph anything that you want.",review,IqdFvfcjqZXuuomsyGyTsw,0,0,0 +LzNJLEIo4gh-X_rmDkNkNg,2012-06-20,HuDMrUWIOuT1XIz9jWvFQg,3,"A OK. I have been here atleast a dozen times. Beer is always great. Food is pretty good, although the salmon BLT was super dry last visit. Going there with a large party, 9, with out of town family proved to be very bad. Told us 20 minutes to wait and ended up being over an hour. Some of the party went home because it took so long which was embarassing to me as I wanted them to have a good dinner. Next time I will come with a small party. If there is a next time. Bummer.",review,A9x6WO4DJuHzT2U_fT9Jhw,0,1,0 +qgNlUte2tSI7OufuuvR8DA,2012-06-24,jTyYY61Csv-XqEgC7dG0UA,5,"This place is as good as it gets for shooting. I became a full member today after also researching Shooter's World, Phoenix Rod & Gun, and Scottsdale Gun Club (where I will also become a member). The cost is VERY reasonable at $85/year ($110 after adding the initial administrative fee). + +The club is huge (140 acres). There is a main range for members and the public. Then, there are multiple other shooting areas for members only. You can shoot out to 500 yards at this facility AND you can shoot any weapon. The only restrictions appear to be on the allowable ammo. + +I'm really looking forward to shooting at this club next weekend.",review,Zof_qo5X5tRQXvkuuR1RzA,0,1,0 +d3MxUXS1b6U2P_gGuCO1-A,2012-03-06,KlkFFdVK8i3UFAtX7tt83w,2,"Service was s l o w. Toook a l o n g time for someone to greet us and when they did only dropped off menus. Wait. Wait. We ordered beverages and food at same time. Things showed up one by one... + +I ordered the Spicy Basil which was very flavorful and I thought was the best tasting of the 3 entrees.",review,3ch-JeRygCmrXf4mwZ9JTg,1,1,0 +1M4oczf2lmkdgbrJ3J7OqA,2011-07-30,G71cXnHdBcVfLzia8xmPdw,3,"07/25/11 + +I have a new crush... and it's Christopher's Restaurant's pizza! + +I've been holding onto a restaurant.com gift certificate I'd purchased to use at Crush Lounge for a long time now and decided it was time to use it. I arrived w/ high expectations, of both the ambience and the food, and I wasn't disappointed... much. The service was a bit spotty at times- we were immediately greeted when we entered and were seated quickly, but the wait that came after water delivery was a bit long at a time when there were no other guests seated around us. (Perhaps there were other guests seated elsewhere, but they weren't seated at the lounge, at the food bar, nor outside... Indeed, it seemed like were were the only ones in the room, besides the cooks at the open kitchen area, the servers, and the bartenders.) Bread was delivered, but we were each given only one one-inch slice of a baguette. How strange, especially when the butter cup held enough butter to spread over a whole loaf! Whatever... Two of the three dinner specials were relayed to us, w/ the promise of coming back to tell me about the scallop dish, but when our server finally came back ten or so minutes later, he asked if we were ready to order, so I had to remind him about the scallop entree... What was in it, and how was it prepared, and how much? Hmmm, maybe he was ready to go home... + +Came in w/ Mom, so we had to try the calamari. I also chose the Duck confit, goat cheese, and fig pizza. For dessert, we had the profiteroles. I really liked the calamari's coating-- lightly battered and fried golden-brown. My fave pieces of the squid are also my Mom's fave, the tentacles, so these were soon finished. At least half of the remaining pieces, the sliced bodies, were undercooked-- poor value for the $12 menu price tag (and I was charged $13 on the ticket). The pizza* was TERRIFIC! Loved the semolina thin crust, and the duck confit gave the entree a great smoky flavor-- I thought perhaps there were lardons included in this dish too, but all the smokiness came from the duck. Mmmm.... The goat cheese was very creamy, and there were lovely chopped figs all over the place-- I'd order this pizza again in a heartbeat! The profiteroles were fantastic, as well. Three sliced choux pastry rounds, filled w/ dark chocolate sorbet, vanilla, and chocolate ice cream, sat on a pretty display made of chocolate ganache and creme anglaise, whole blackberries and blueberries, and a sliced strawberry. More ganache was poured over the top of one profiterole upon presentation. I asked if I could have more ganache, and our server quickly obliged-- thank you!! We loved the crisped flakiness of the pastry (so perfect!), and out of the three flavors, we liked the fudgy dark chocolate sorbet the most. I tell you, if I could've licked the plate clean, I would have. :) Excellent dessert-- I totally recommend! + +(*Pizza reheats well! Still lovely in flavor and just as crispy as it was when it was first delivered. Can't wait to go back and try the other varieties! Happy hour UYE, anyone?)",review,0bNXP9quoJEgyVZu9ipGgQ,4,5,2 +cNGI_5GbfNFbZBMQZ-s-UQ,2010-12-31,awzLL9kAxA6ErPhspP6OAg,4,"There are a lot of things I miss about SoCal and one of those things is the rich and ever present multicultural food experiences. So I've been on a mission lately and I am quite the happy camper now that we've found legit pupusas here in Phoenix. + +Salvadoreno is a neat hole in the wall joint that just screams authenticity with a family run affair and kitschy decor on the wall. We arrived early for the dinner hour on a weekday so there wasn't any other customers in there at the time. A little disconcerting at first had I not read the other Yelp reviews. The service was pleasant but the food out a little slow. Not a big deal since everything came out so freshly hot and just prepared. + +With the four of us in our party we managed to try the pupusas in carne asada, revueltas (pork, beans and cheese) and the loroco flower (a squash/okra like veggie) with cheese. The pupusa dough was perfect and perfectly fried as well. The accompanying rice was buttery and delicious. The homemade tortilla chips were sinfully satisfying and the fried plantains (a separate order) added a fabulous twist to each bite of pupusa. + +All in all we were pleased with our meal and I was even more pleased that Salvadoreno is fairly close to home. We will surely be headed back. + +Note to self: the horchata here is not the typical rice and cinnamon drink you're used to from the Mexican joints like Albertos. Here, The menu described it as a morrow seed drink. Since it was not what I was expecting I had a hard time drinking it but it WAS good...just in a different way that's going to take some getting used to.",review,hcctCQy3bdZMezrUKkZLtA,1,2,0 +UUssRgBCO_riWg3chbv9Zg,2011-04-12,vDbF8XhI68tj55i_pU-S9A,5,"Not exactly what I expected ..................I liked it. + +I was thinking some sprawling ranch house with wood floors and saw dust everywhere, maybe some old west artifacts on the walls and grumpy old waitresses. + +What I got was a cool little funky building, with cool interior and neat things on the walls. More of a sports bar atmosphere with a good sized dining area. Killer staff and great food. + +I had a burger, I believe flat grilled, cooked medium rare and I could tell it was good beef. They said they grind it themselves. The fries were great as they are a fresh cut type. The beans were different. They were a lighter vinegary type of bean with onion and bacon. I liked them but could not eat the whole pot that came out. + +It ended up being a little expensive. 9 for the burger and Fries, 2.50 for the drink and 1.50 for the beans. Tax and tip it was an 18 dollar lunch.",review,C6IOtaaYdLIT5fWd7ZYIuA,12,18,5 +Nj6ITW0Zhl7LpovGIH6SAg,2009-10-27,b0DyzZtNsOg_huGwHKhp0g,3,"Worth the trip but be willing to deal with some craziness. There was a mob waiting outside before the doors even opened. + +1 pair of dressy sandals +2 pairs of ankle boots +1 pair of pumps +2 dresses +3 pairs of name brand nylons + +=$215 + +So I got a deal. Was is the best deal ever? Probably not, but it was definitely worth the trip. + +Pros: Unlike other thrift/bargain stores everything is stored by size and type of item. + +Cons: The psycho shopper club that meets 30 mins prior to store opening!",review,DcfmUIBBfClOte8dTekVbA,0,0,1 +FXLttunbk-KW--bUK5CRXg,2011-02-01,QCxvQHGixoTRrBTOSsGQtQ,1,My daughter and I went in for pedicures and gel sets... was incredibly surprised to hear the total was $120. even with a coupon!!! When I got home I noticed that my pedicure wasn't the best... I really don't mind paying top dollar for top dollar services but even with a 'coupon' it wasn't worth it. Won't be back...,review,eapbAr6Zi5G8rK62gaWT9Q,0,1,0 +qd1ajiZRCwqEQJqCgoN1wg,2008-10-29,o6XthGhcUosK9LAFopu4gw,3,I thought the place had a lot to offer with the atmosphere and the ingredients used in the all of the dishes. I only thought that the menu spoke louder than the dish.,review,5KF1Tdo0ZTwyvzpv6LLWUQ,1,1,0 +cdwHgELA2puX2DNfwSt5EA,2012-05-22,bRKCnSEkRzqTE3kiEe7J3Q,2,"I had such high hopes for this restaurant as I was coming in from out of town and a friend who grew up in Scottsdale recommended. It was a disappointment. The food was just ok - nothing special. The sticky buns everyone raved up - did not come out as an appetizer or even after meal treat - oddly came out with our dinner so it was basically over looked. The restaurant was not crowded yet we were sat at one of the few tables without a view. My biggest problem was the flies. They were everywhere and we were seated INSIDE the restaurant not on the patio. When you go to an up-scale restaurant to celebrate a special occassion, who wants to be shooing flies away from their food. It was really disgusting and distracting. For the money we spent to eat here I felt ripped off. We ate at the Roaring Fork the next night and it was superb so if you are going to be in the area - you should consider alternatives who have better food, better service and a more pleasing environment - don't waste your money on this place.",review,-5M2EEPopiUv2Q87zfAo8Q,0,1,0 +WnmNF1mNOcbcheVpTv7ucA,2011-08-25,_T8aTW1y8cy05omDYPUDLA,5,"Being a former band nerd in high school, so much nostalgia kicked in upon entering the museum. I saw all the instruments I was familiar with in high school, and many others that I wasn't familiar with (and learned much about). + +They supply you with headphones and a wireless receiver that plays the audio/video of the different sections you walk into. Each plays a sample of what the instruments sound like and some give detailed history on the instrument. Very enlightening experience. + +Best Part IMO: They have a room where you get to test random instruments to your heart's content! I really wanted to go ham on the gong but there was a sign that said something along the lines of ""do not hit the gong repeatedly"". I was disappoint... but otherwise many other instruments in there kept me occupied for awhile (xylophone, conga, harp, etc) + +It's not an arm and a leg to get inside, and this place has something for everybody. You're sure to spend a few hours enjoying yourself here. + +If you're going to do anything in Phoenix, this is one of the spots you should definitely check out.",review,1LgHhWbHvU8sfWbuDubitg,1,0,0 +9OPheVf5o8sRcRHxJDl4-A,2011-07-28,rI43OIZCvcXSBVBJ8AnGXA,3,"Perfect for a nightcap. Dim, moody lighting and totally intimate. Drinks are pretty pricy and didn't eat any food, but the service was great! I loved the 'feel' of the place so much I'd go back sometime.",review,Yy0xc7pWnQkktBI8-zTYfw,1,1,0 +Bjt3rB73dvSDe1XEPEWc6w,2008-08-01,uQ1vFTPqtEwX3YxYht9sOw,4,"realized I rank this a 3, what am I insane??",review,HfwO9GnaP-9VdI0afwgmrA,1,0,2 +9AbyBqGWHYZC73GlyAuTrQ,2012-07-23,rflJEdUJokN2p1s7K1zE6Q,5,"Went here for our anniversary. Pretty much what you would expect from an upper end steak house. Yes, it's pricey. Steaks were good and service was attentive. A good place to celebrate.",review,b2DKC4kC8-QeSeGZ_MF3XQ,0,1,0 +j7XuypdW_w935NhjbvKPQw,2012-03-01,DFBb_9IR5sc0sCsi7Hhn5w,4,Awesome if you like ramen...even awesomer if you like boba tea!!!,review,MTu3hVSZkK8nkPhqT2FIDQ,0,1,1 +aLZoFhOmDtonrWJzUzh8TA,2011-01-23,jAO9HKUUXyAOCj07bF_GvQ,2,"Good food, tiny portions, pricey for the amount you get.",review,-_GtJEB9B4Ckm7Cd8RIq1A,0,0,0 +j_KoJeo4mEyayKsyAsY7xg,2011-05-04,PTqtBSVtnxTsbgIhfls1NA,4,"Hours of my time have been spent at J Crew. The sales associates are very helpful, reserving fitting rooms, checking in the back for sizes, even running around the store as you stand unclothed in the dressing room. + +Clothes at J Crew are more expensive than your typical store but you are paying for quality clothing. Many dresses and skirts purchased elsewhere have hit the dust as my J Crew pencil skirts and blouses stand unscathed. Need shoes to complete the outfit? Maybe a sparkling accessory? J Crew has you covered. + +Plus, everything can be mixed and matched. The clothes here fit me like a glove; not only are they stylish and work appropriate. I feel confident, feminine and professional in these clothes. + +Ask for the teacher discount if you're in education!",review,qZrArI2ohkYkQlELl13BKQ,2,2,1 +kr3EFhoSwbJPrL_e_RD39g,2012-06-06,hQu7FMhTBxYl3TxPsDxf-A,5,"Dinner for four at the soft opening. +The food kept us talking about the tastes and combinations far into the night. + +Small/shared plates will fill you up quickly. The Hamachi Crudo was a fresh, light starter with peppers, fennel and sea beans to fire up your appetite! Grilled asparagus and a delicate, cheesy risotto were great sides but the smoked beef rib was a taste sensation. Sweet and savory, smoky and succulent, sticky and sumptuous! Bleu cheese grits and grilled peaches were the perfect pairing. ahhhh, sigh. I think I'd pass up the tater tots and save room for something else. + +This restaurant is just what Phoenix needs. Close to the ball parks or walk off your dinner in an invigorated downtown, Blue Hound Kitchen is a great addition to the energy.",review,m21EE2_CqPzpXdKsYsbVIA,2,5,2 +Tt6DYs0TyERWHWW5xiRL_A,2010-05-17,z3BqLVP9v5hCjf1mCManTw,5,"Good God, where has this been hiding? My bf and I just made our periodic trip to Phoenix and discovered this little gem. From his kids, no less. + +We went during the 8pm-10pm Happy Hour...on a Friday night. We got a table in about 20 minutes for 6 of us. Our server was super friendly and took our drink order right away. The cosmos and appletinis were $4 and the sake bombs (with Kirin or Sapporo) were $5 and numerous rolls were $5 each; how do you beat that? + +The food was spectacular. We ordered off of the regular menu (2 orders or tuna tataki, 2 orders of heart attacks, and a dragon roll) and the happy hour menu (crispy spicy tuna, philadelphia roll, calamari roll, shrimp tempura roll and a couple of others that I can't seem to remember). OMG, one slice of that tuna tataki and I was SOLD. This was some seriously great sushi...Bravo Yen Sushi! + +Our bill for 6 peeps was $96, that's with the tip included, no less...YAY! I will definitely be back.",review,YhkpGX0LPsmxR0aycm1pFg,1,2,1 +rDvz5jX65gpfONFu7er9Tw,2010-05-05,PXaTNHXlCRgX2SU8kvZhBg,4,"I met my cousin here for lunch, and we were really happy with the meal. The place is a less than impressive on the interior, dingy booths, long and narrow. It's terribly crowded up by the counter, not a lot of room to order and pick up your food. + +I do question how a place can call itself ""Los Taquitos"" and then not have taquitos on the menu, but I went for the flautas instead. They were good, but what set the meal apart were the beans. The most flavorful beans I have ever had. If you told me these were magical beans, I would have believed it, but I wouldn't have stopped eating them to plant one and see. + +Service was quick and friendly and there was plenty of seating, even during the lunch rush. Looked like a lot of people get orders to go. I'd like to go back and try a few other items on their menu, if they come with beans of course.",review,66tWp8ThwPATFUxYNPyYLw,2,3,1 +vHgodZBJytT2r7K9c7SLMw,2010-05-25,nW7Ff6L-5peq5io7xBztcw,4,"The coffee is excellent. The vegan peanut butter cookies are to die for and I generally loath all things vegan. I just tend to believe some things are meant to have milk and eggs in them...oh, and DO NOT get between me and a good steak, you may lose a hand! Anyways, luv all the independent art & designers. Right now I am coveting those adorable litttle robot sculptures. Oh no, I sense another collection/obsession coming on.....do robots get along with owls?",review,MkLv8wA2AoGFnT4UOZWonw,0,1,0 +MpohnCC0uQNj7DZWaBFSgQ,2011-06-07,Zy_blxSYvvBdGCgVf2sKLA,4,"In 'n' Out, I don't know how to tell you this, but . . . I've found someone else. No, no, it's not like that, it was nothing you did! Your burgers with their fresh toppings are delicious... but sometimes I just need a little change of pace, maybe something with grilled onions, grilled mushrooms, and bacon... mmm... bacon. Oh, sorry. You want to know the name? I don't see why that... You insist? Okay... it's Five Guys. + +Oh! You're upset! YOU'RE upset! Well let me tell you what - Five Guys' fries are delicious, whether they come in Cajun OR regular! And I NEVER liked your fries, In 'n' Out! I just pretended to like them, but they're skinny, kind of limp, never flavorful, and you don't get very many. Five Guys cuts 'em thick, salts them up, and pours an extra scoop into the bag, how do you like that! And they give you FREE peanuts to munch on while you wait. You never give me anything! + +What? No... you're right, Five Guys is a more expensive taste. That's true, it is over $10 for a burger, fries, and drink, as opposed to your $5. And I do have to park in a garage that loosely resembles a labyrinth designed by Escher. But if you eventually make it up to the restaurant, they VALIDATE. You have NEVER validated me! Oh, that's right, you have surface parking, but don't try to pretend that's a feature with the temperature hitting 100! You're ridiculous. + +What's that? Does Five Guys have milkshakes? Uh... hm. Milkshakes. I never thought about that. They don't. Would you mind if I got my burger and fries from there and then came to you for the shake? No? Fine. You're so overprotective and hyper-traditional sometimes. Live a little. + +I hope we can still be friends, In 'n' Out, but I just think I need to see other burgers. Please don't pelt me with limp fries when I turn my back.",review,pQlQ5B6rkPjPdinD1BjuIg,1,2,5 +VVeogjZya58oiTxK7qUjAQ,2011-10-03,m3gwH2G0YpYUQG25D5yM7g,5,"This place was great. When one of my coworkers sent an email to our group who was visiting Phoenix saying he had gotten us a reservation at ""The BEST pizza in the country"" i Was skeptical. Best pizza in Phoenix? Well, I wasn't disappointed! + +We had a group of 8., and we ordered almost one of everything on the menu: +Apps: +Antipasto - Wood Roasted Vegetables, Sopressata, Bite of Cheese +Spiedini - Italian Fontina wrapped in Prosciutto di Parma, served warm +Pizza: +MARGHERITA - Tomato Sauce, Fresh Mozzarella, Basil +MARINARA - Tomato Sauce, Oregano, Garlic (No Cheese) +ROSA - Red Onion, Parmigiano Reggiano, Rosemary, AZ Pistachios +SONNY BOY - Tomato Sauce, Fresh Mozzarella, Salami, Gaeta Olives +BIANCOVERDE - Fresh Mozzarella, Parmigiano Reggiano, Ricotta, Arugula +WISEGUY - Wood Roasted Onion, House Smoked Mozzarella, Fennel Sausage + +Of all of them, the Biancoverde was my absolute favorite! I don't eat pork, so I couldn't sample them all, but I'd happily order this one again. In fact, my team is returning next week for another team dinner for the coming Phoenix trip, and I will for sure be ordering this. + +Their house draft beer is also quite tasty! + +Tip - if you are a party of 6-10, get a reservation! They don't take reservations for smaller groups and I've heard the wait time can be a few hours at the busiest times! But worth it!",review,_RN13rQ1c77hAi9LU7nwnA,2,0,0 +mxrXVZWc6PWk81gvOVNOUw,2012-08-10,ELnUjti9CMoN95_LkV0p1g,5,"Ok this place was great...so great I decided to sign up on yelp and contribute to the rave reviews that encouraged me to try it out in the first place. I had the fish tacos happy hour appetizer for dinner and they we cooked and seasoned well. They were really good and I would definitely order again. I was told it is off season in August, but the place was filled with locals; all very welcoming. Everyone knew everyone and if they didn't (like me) it didn't take long to feel like one of the locals. Great service, too. Will definitely go back!",review,8EidG5WAMoccozDZ_D6shg,0,0,0 +Xsl-i1otDd3GXJEkkKJCaw,2011-03-26,2wjxy5G63qqI08haqHPTUg,5,"While my visit, to pick up take out was kind of drunken blur, the amazing food I ate from Diamond's after a few hours of harder than intended drinking were JUST what the doctor ordered. My buddy did all the ordering, so all of it was a surprise, when I sat down to eat. Quite possibly the best Hot-and-Sour soup I've had IN MY LIFE, and all of the everything else that was ordered, was smack yo' mama good. The fried rice, and lo-mein were divine (especially cuz it was a big diet cheat for me) and the EGG FOO YUNG = EGG FOO YUM. I've had much more bad Egg Foo Yung than I have had good Egg Foo Yung.. to the point that I never think to order it, cuz it usually SUCKS, but SO NOT THE CASE at Diamond's! The lady at the register = super cute, and I kinda like the ""stab joint"" classic chinese restaurant looks of this place.. no windows! YES! :D Five stars... the food seriously speaks for itself.",review,nbofxFWHORebBHh10OgYLA,0,0,0 +57gnA8qjuFDtUvKMLmtR8A,2012-08-10,AOnJdxkTYhw5QEFHSSvJow,1,Ok food. Super slow!! 3 employees and 2 customers and I could not believe how long it took for a quesadlla which was cold when I got it...the tacos were decent though....Give it a try and you decide though..,review,qjb4c1sjS7GBSCo1RyHVTQ,0,0,0 +6md4A90THda31wTg1bB3hg,2012-09-11,vUZ-CbO99AWzQ4UKID4cug,5,"I absolutely LOVE this place. Their pizza is in my top 3 as far as the selection in Arizona, and the ONLY downside is that the Tempe location (to my knowledge) still doesn't have any of the pasta dishes that some of the other locations have. The crust is always perfect, the sauce is sweet but with just the right amount of spice to it, and the cheese and toppings are flawless. On top of having some of the best pizza in town, their customer service is top-notch. If you haven't tried Spinato's yet, put it on your to-do list!",review,8gX8VpBo0dnSlKkWIdhIrA,0,1,1 +YgRCJtt7pGvwlb9Ktumeeg,2011-06-12,3oQL8DhBUzAvNZWMPY0t5Q,4,"I agree with Ebony that sometimes Red Lobster does get a bad rap....but this location is a very good one......as long as you get here early (LOL). This locale is always busy.....but the food.....customer service....and the overall ambience of the place really shines. Molly was our server when the wife and I visited this locale for dinner this past Friday night. Right now they have a 15 dollar 4 course meal promotion.....and I am telling you it was the best 15 bucks I have ever spent. I started with the New England Clam chowder.....this is my favorite soup in the whole world BAR NONE. Then I had the Caesar Salad with the Cheddar Bay biscuits which I always have two baskets of ....because those Biscuits will really make you hurt someone they are so good......(LOL). I had the Shrimp and Grilled Chicken in a great garlic and butter sauce with garlic mashed potatoes.....OMG.....the chicken was so juicy and the potatoes just melted in my mouth. + +Dessert was a very rich and delicious Key Lime Pie......ALL THIS FOR 15 BUCKS......WOW. I felt like I was stealing in a way (LOL) but again if there is a better deal in the valley for a dinner this good.....please let me know. So run don't walk to you nearest neighborhood Red Lobster and try this deal before it's gone. Eat, Drink, and be Merry my Friends!!!!",review,ky9pQ8AKufvZ63IxR41jGg,1,2,0 +pwpl-rxwNRQdgqFz_-qMPg,2011-09-08,nYSFIsS_ZwDoHPTyeWkK_g,4,"Not too shabby. Decent drinks, cheese/meat plate was standard but good. The beet salad didn't have many beets on it.. more lettuce. I think we were wanting it to be all beets. The highlight of the whole dinner was the squishy bread that came with the cheese plate. Pizza was also good. Big negative was that all 4 pizzas were soggy in the center. Other than that, no complaints. The one with fruit on it was the best. The sausage was typical, but good, the margarita didn't seem to be a winner with the table, I thought it was good. I like that rubbery cheese thing though.. The one with seafood on it was my least favorite.The tiramisu with pine nut brittle was tasty, the chocolate cake was fine.",review,FRPfzzoSL4KKjLcy0Dm0OQ,0,1,0 +1_WD7kvNQAbscw1c7CFH3A,2012-10-05,fMP_2lihTFA0fB7JUUAWKQ,3,"I had yet to have tried this truck on Food Truck Friday and the line was short so I stepped on up. + +It's Philipino food which I had never had before and I wasn't sure what to order so I just said a word that I hoped was right. Turns out I got the pork egg rolls. I overheard another patron say they were good for Philipino food beginners. Perfect! + +The lady in the truck was very sweet. I paid $8 for 3 pork egg rolls, scoop of rice, some stringy things, and a bottled Coke. Average price for Food Truck Friday. I enjoyed the rolls though. They were steaming hot but the pork inside was delicious. The outside was very crunchy and flakey. I adored it!",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,1,0 +rIonUa02zMz_ki8eF-Adug,2011-12-29,PwgTnu18LYP7HqWFJRGguQ,2,"I don't see what the big deal is. When I went the soda machine was broken, and the food was bland. Didn't really think the fries were anything to care about. Very sub-par, and more over, just because they give you all you can eat, free peanuts, doesn't mean you should pay so much for a burger or hot dog. Not worth the money, not worth the trip in my opinion. Wouldn't return, wouldn't recommend.",review,GKzWSBv2Dpx3ziMFQ4S0gA,0,0,0 +rOEWuLpnYJVvm4REIgXt7A,2012-04-26,CyIHFGdIFFl1TNuH75oHGg,4,"You have to come here for the pho. Hands down! + +My boyfriend lives right down the street, so whenever we're hungover, feeling sick, or need our pho fix, we always come here. Sure, we've been to the Noodles Ranch up the way, but we love going to the Saigon Bowl, it's so 'Mom&Pop.' + +There's almost always no one else there and it looks super out dated. But we don't mind. We understand that Noodles Ranch is pricier than here mainly due to the atmosphere. But it's absolutely perfect if you just want to come in, sit down, guzzle down your pho and drench the meats in sauces and leave on a happy, full stomach while knowing you paid less than $9 bucks. + +The portions are large, the veggie plate served with herbs, bean sprouts, jalapenos, and limes is pretty standard and of good quality and size. The timing was just fine (although I've ordered one of their chicken entrees before and waited just a few more minutes longer than ordering the pho) and well worth the satisfaction to follow. + +I've ordered just about every type of bowl of pho and have never been unhappy. Broth alone isn't anything too strong. It's light enough to have you finish the whole bowl. The meats are perfectly portioned for dipping in the sauces that are at each table and of course, the ending gulps are the most flavorful. + +I'll always be coming to this place so long as it's in business.",review,9QkUkAoL5l2TsqtpEUx1MA,0,2,1 +xY1sPHTA2RGVFlh5tZhs9g,2010-01-31,1onRumcKpm9CqxUAQJVZnw,4,"First time impressions are the most important and Culinary Dropout made an ever lasting one. Everything from the service to the food was spot on perfect. The whole experience was so good that it's hard to believe it will be the same when I go back. + +I hope it is............",review,jLBh-z3JrJkqJfn5VN9OJA,1,1,0 +lEGq4UveDPxikXcpwjtFow,2010-11-03,t_O1cTzXj8SGrLBl77dEKA,3,The acoustics are pretty good for an amphitheatre. The process required to acquire booze is a tad ridiculous but you have to remember that you are in Mesa. This place would certainly rate higher if it was located in a city that allowed concerts to go past 10pm.,review,f3LA83yEEBMj9q92H28O7w,0,0,0 +drqCrnSqtGffJ1z60aWkxg,2011-10-14,4hMVElkuYErVgCHgVL1Ptg,2,"This place has potential but I didn't care for the layout. Long bar is neat but instead of all the small tv's they should have put in bigger one's and spread them out. The large screens are neat, but sitting in the uncomfortable chairs sitting to close to them was bad planning. I believe the owner is a Sooners fan so that game rules over others, even Devils games. The volume wasn't on for the Devils game, wth. Waitress was lazy, didn't come by the table often. Chicken Tenders were good, with sweet and sour sauce. Sweet Potato Fries are gross, doesn't taste anything like 'em. I'd go to hang out and not expect much in the future.",review,Kt9NwDONle_mc0QHTud9jw,0,0,0 +Zmf_0A0QNLBCiag0Q-b9bQ,2012-11-08,q56yg9aBihDourCdBMtqPw,5,"Brought my car here b/c of the reviews I read on yelp. My fan was running excessively. The mechanic came and looked at my car. The coolant was low. He grabbed a can and filled it up. No charge. I then told him I needed new struts. He quoted me a price that was cheaper than the one quoted to me in CO a few months ago. I honestly didn't shop around for a cheaper price here in Phoenix, which is unlike me. The reviews here, and fixing my fan problem at no charge had me sold. It seems so rare to find an honest mechanic now-a-days, especially in this economy. Made an appt. Car was finished super quick, in the time frame that was promised. The mechanic went out of his way to show me the damage struts he replaced, then told me my new struts came with a lifetime warranty. Dang, did I time warp back into the 50s? Hopefully I won't have a need to go back, but if I do, I'd gladly drive out of my way one hour round trip for their honesty again.",review,aHTeZXwpX67uUh_YaLYYdw,0,0,0 +Vzq74f0YrT0IbWBPkbUp_g,2010-01-29,BNv6gBYw4rPSMXeoH7aOjA,3,"Went here for lunch today (Wasn't feeling the hot pocket I had in the freezer here at work) + +What can I say. Its Subway. Its consistently mediocre. Its not overly fantastic, but its not knock me on my ass terrible. + +Subway is kinda like Olive Garden for me...some times you just need mediocre food. I don't know why it is...and maybe I am the only weirdo... But one thing is for certain, it always tastes the same every time I go there. Maybe it has that high school nostalgia for me. I dunno. I also like stail Necco waffers, so maybe dont pay attention to any of my reviews. + +I get the Spicy Italian, on cheese bread (duh), provolone cheese, light mayo, mustard, lettuce, cucumbers, olives, onions, peppers and LOTS of banana peppers, S&P. That's how I roll.",review,6ts41fCsDKHbFZaKOMNmVQ,0,0,0 +Yiw1ml0XVBDIQBTLXHNGmQ,2010-06-03,eSkNW469JWtJw8wYTqN0UQ,1,"I went for family birthday on a Friday night. Only a few people in dining room eating. (1st clue to leave.) Ordered a margarita. It's extra to have it shaken... But I ordered that way. It was mostly sour mix. An it was awful (How do you mess up a margarita?(2nd clue to leave) Server is surprised we wanted to order dinner! (3rd clue to run!) Very disappointing. I got the chicken fajitas, they had sauce all over them. Shrimp appetizer consists of 3 shrimp $8. Salsa was good. I will never go back. Good luck Salty. I love your decor. Why don't you care you could be so cool!",review,PA3ztLFGwZgbV_q1FqwcAA,0,0,0 +Vm9GQUptdZmBM9R7tZ9_Tg,2011-09-07,QlKIfqRhca5dKIk60MWxqQ,4,This store is 2 miles from my house so I am there all the time. I find their customer service has been consistently good. Even on Black Friday at 7am the sales help has been very pleasant and very helpful.,review,F21azNBoXB8c6zorMz0jaw,0,0,0 +xCXSaqlKvclhWBczA4fqkA,2008-06-06,EDaq0gMX_74Rm70wO-6uYg,3,"decently priced Korean food. they offer more soups and korean style casseroles - no dolsot bibimbap, BUT their kalbi tang is reallllly good! Huge bowl, lots of kalbi, yum yum yum! + +they're also open a lot later than many other restaurants, always a plus!",review,jqs0xPGhZwlyijqWLEgRyg,2,2,0 +RFeDe3fNr14kvUKlVx6_4w,2011-12-10,ZNYJfzdeBVGsYDeqUn8l5A,4,"I enjoy their Rama Chicken. Their peanut sauce is great. However, their service is slow. It is difficult to eat lunch their because it takes so long. If they improved their service my rating would be 5 stars.",review,BV1ir8D2fpek-yYs8MpNGQ,0,0,0 +SAS7V55TcgZSTJ21ZnXqmQ,2012-05-10,B_8PBsJ9iSCcf8UyDqUOYg,1,"I wish I could review the cold food stand attached to this restaurant separately because I want to tell any and all persons who think to stop by for quick sandwich to stay far, far, away from the tuna. + +I thought nothing was worse than slowly starving on my flight back home, but I found it in the form of this cold, barely-recognizable-as-food sandwich. I think I'd prefer eating tuna out of the can over this.",review,k2v-aDC2NC95Lm-9oCEW_A,0,1,0 +3n9mSKySEv3G03YjcU-YOQ,2012-02-04,6mWaqMbVM-CFcIQMmdwLzA,4,"$5 pitchers of Four Peaks brews? That's an awesome happy hour! Bruschetta is amazing... $13 is a bit much for it, but still super tasty! Great environment. Happy staff. Killer design and music. Great location. Love it!",review,GXgZEnuAKURhHwANOpHmtg,0,0,0 +podj1OWSL3oEJsOpGj8SUw,2010-11-08,plKTSHxyGcVYJtyztzDumQ,4,"I dig this place. I have only ever eaten here for lunch, but I have been here a kabillion times, and I love it. The only 2 negatives are the parking and the SEMI-cash-only situation. Meaning, this place DOES take credit cards if your order is over $25! + +A lot of other Yelpers have complained that the male owner is a little rude, and his wife (I think?) is the other owner, and she has always been okay. I guess I am from the east coast, so they seem totally fine to me, but I can see where AZ people think they're a little gruff. Whatever... I am not paying them to be nice-- I am paying them to cook me some awesome grub. + +The best sandwich, to me, is the Italiano because it's the best prosciutto I have ever had. The texture and quality makes it melt in your mouth. Also, you can have this sandwich on focaccia (my friends usually choose this option) or the homemade Italian bread, which is my choice. It's soft and that dusting of flour just makes me all Italo-happy. It's served with uber-fresh basil as well. There is a balsamic dressing that is usally served on top, but I ask for it on the side, as I don't like my bread to get mushy. Finally, the sandwich is pretty big, so it's worth the $10. (It's gotta be $10 worth of primo prosciutto alone!) + +The other key choice is the pizza. I departed from my beloved Italiano one day (but only because I had already eaten it 2 days before) and ventured toward the pizza. I am suprised to say that it's really great! The crust is perfect, and it's just the right amount of doughy. + +My advice is to try it. Get there at 11:30am or 1:00pm for lunch. Carpool. Bring cash. Smell the air when you walk in. Order the pizza. Make plans to go back and try the Italiano. ;)",review,W5sBWBiY7YUIvLq_IZmhOg,0,2,2 +8AYH_pFl8GpPKCR_k-QigA,2012-08-29,M6-JE-yn1LvPd6fnIlwR7A,4,"I frequent this location before work quite a bit since I start work right around the normal dinner time. Always clean, friendly, and good food. They have real silverware and ""real"" plastic plates! Lol.",review,8fTTvS499XCz4oP49kxq8A,1,3,1 +7p0OI2Ld46-EzJkRHGQEJQ,2011-06-08,9BC5jcSfhp2gkGNqWZTayw,5,"Love Love LOVE Baker's Nursery!! Been going there since I was a child thanks to my grandparents (my grandad and uncle used to do roofing work for the owners decades ago). + +Seriously...this place is FANTASTIC and the people who work there are AWESOME! + +Want to know what plants/trees you have in your yard? Bring in a leaf or bark sample and they'll tell you. Found out we have Chinaberry trees(messy!), Lantana (evil and will not die!), 2 Trumpet vines (attracts hummingbirds!) and a Texas Sage bush (beautiful purple flowering bush) in our yard. + +Want to know what type of tree would do well in your yard? Just ask! + +Need something transplanted? Buy the pots and they'll replant your plants for you. + +Buy a sad looking clearance plant from another local store, they'll tell you how to nurse it back to health. + +I could easily wander around Bakers for hours, except during the heat of the day in the summertime! :)",review,9SZBVZ-mxebOVa1BlWFtWw,1,2,0 +-O7H5LhBkE13VQZB0QZI0Q,2012-10-18,y_PCsLjC3Ov59CUKK93o4w,4,"Wooot for ""grown up slushies!"" + +This place is a staple of my Vegas adventures and was just as fun in AZ. +We hit Happy Hour for cheap drinks & apps after an expensive Octoberfest. Lord please forgive me for the extra shots of everclear on top...$1 floaters...they should be ashamed of themselves...sinful...I LOVEDDD it!",review,QynSKKOsNFt_-GxVoKx19A,0,0,0 +QwaoxP5Mgm3PJuZo_4bFsw,2012-09-14,LIzKWwdbo3vCKWvnhUgZ9A,5,"Over the top cheesesteaks. Best in Phoenix, perhaps the world. Amazing food and friendly service. Best ever.",review,XN6rkK5278-PBhw2vA4L9g,0,0,0 +1zDCfNgtfyh-Uw8j3JxhHA,2010-11-27,3rLNWqt0kXQI9SrAILhBeQ,4,"I've only ever had the carne asada quesadilla and churros, but they are damn good.",review,kXT3pVtElactR8nFmeLbbg,0,0,0 +VsO_rhXi5lgbaGxNwoEZsQ,2009-04-27,zsWcJTuoJjuGauGOofMwYQ,1,"My love affair with Fate ended when Johnny left. + +The service, quality and atmosphere took a total nose dive. + +Go to Sens instead.",review,MWt24-6bfv_OHLKhwMQ0Tw,1,1,0 +E_wJCQ9L_0w5tJyrvr0lJQ,2011-01-26,Q18HBGHezvlCKBlnNlQ3ww,5,"Bacado. Yes, you read that correctly.... The ""Bacado"". It is a glorious concoction consisting of an avocado and bacon omelette with cheese on top and served with an English muffin and country fried potatoes. Decent black coffee and good service. +Delicious.",review,Da4aw-NF9ond8U6XYRmT0g,1,0,0 +t1XhXY-Vt4K1OPLkuOcsfg,2011-12-11,eodhPZxeAD2SOwpHem8_4A,1,"Be VERY, VERY careful asking for a sandwich as a wrap. I ordered a ham and cheese make your own sandwich, ordered it as a wrap to go. I got home, there's lettuce and mayo and... what this? what's this I see in this sandwich? there's the cut-off fingertip of someone's glove lodged between the lettuce? (At least I hope it's the finger tip of a glove - I'm not even going to think of the other thing it could have been.) Ewwww.... gross.... I didn't finish the sandwich. Memo to self: Don't ever get wraps from Einstein's, particularly not the one on Shea. Disgusting. If it ever happens again, I'm calling a local news station to report it, then I'll call the state health department. Gross, gross, gross, gross, gross, gross... if you can't deliver sanitary wraps, THEN DON'T PUT THEM ON THE MENU. Not a place to go if you like wraps.",review,VDRYPEY-zSs3pbetLkGiiw,0,1,1 +c1yGkETheht_1vjda7G5sA,2010-03-04,pmBB_YgP1gKTaTwz7Yk0MQ,5,"Green....how I love thee. Green may be vegan/vegetarian, but I certainly wouldn't claim it to be 'health' food. Green is located in a small run down strip mall adjacent to Kore Bicycles on the NW corner of Scottsdale Road and McKellips. It doesn't look like much from the outside and without knowing of Green you probably wouldn't do a second take upon passing it, however the food here is no less than amazing! + +The decor is unique and fresh; 10-12 tables, a couch/lounge area, random artwork on the walls, painted quotes, lights hanging from the ceiling, and old painted car doors along one wall. I've tried a random assortment of items from the menu and nothing has disappointed me...but by far my favorite is the BBQ 'Chicken' sandwich along with an appetizer of the spicy buffalo wings. I believe the mock chicken Green uses is fungus based, Quorn perhaps (may not sound appetizing but it is freaking awesome). I am not personally vegan, or even vegetarian for that matter but Green has me hooked. I've 'forced' many of my meat eating friends to try Green and they have all become believers (if you could call sharing something so wonderful forcing). + +Great prices, great dishes, unique/fun atmosphere, and great service!!! + + (On one Saturday evening around 6:30 my boyfriend and I decided to pick up some Green to go, the place had a line out the door and it took about 30-45 min to get our food. We weren't even upset about the wait, just waited patiently for our delicous order and upon arrival the server gave us two free entree tickets for our next visit and apologized. THIS is how you keep your customers coming back for MORE!) Love this place so much!",review,E83jZ7j07Hx-RcRiTbA_kg,1,3,1 +eTbtfgUtfewdncgVf2CbWw,2012-09-23,pFHJZfvF4Et8NzdAxTbnLQ,5,Excellent macaroons! Great owners very conversant with their costumers.,review,hNk9YQNC9vJpEs5swUlbeQ,0,0,0 +7t9VbwL5orIV0-DzrjU7_A,2011-08-19,8TcHnUZb2WUS6ApgpadM1g,5,Best pizza place ever!!!!!!!!!!!!!!,review,wJlwbBKPiwDWsFmGmYH23g,0,0,0 +FGePlnlKXHxBrxYMNGtdAw,2008-05-16,aJQSMy5_Z_UMH9fKVbzx4g,2,"Why do you bring in the best bands and then torture me? + +Parking is freaking ridiculous, at least I have been enough times to know to leave my car on Mill and walk. +Your security people are a bunch of freaking jerks who take their power wayyyy to seriously - take off my shoes? What kind of weapon or drugs can I be hiding in my open toed 2 inch heels? +Your sound SUCKS - seriously sucks. For all the fees you charge on top of tickets - buy some new speakers already. +The bathrooms are gross +Drinks are reasonable so you get 2 stars +(Watch out for the glass walls leading to the patio if you have overindulged in booze.. I've heard they are easy to run in to).",review,q9XgOylNsSbqZqF_SO3-OQ,5,8,8 +XWpkTxBLgRXxl7g2Hw62Qg,2009-05-08,q06AEcfziNBi3o5lGjXipg,5,Angel sweet is without a doubt the best gelato I've had outside of Italy.,review,H4XCAov3KP3JjThhExpocg,2,1,1 +MKKihkKRtemuyCzAjEZyvg,2011-12-07,-8DRrwUePpDUw3hWbwxGVg,1,"I give this review a total 1 star If I was able to, I would have rated no stars at all!.... I would NEVER reccomend ANYONE to live here. The office staff is horrible and made me feel uncomfortable the whole year I lived there based on THEIR MISTAKES! I can not express how disappointed I am with the way that they have treated me.....",review,KXSpx3GxpcT5CtWcnHo1aw,0,2,1 +Mysd5IypHqTFkmHlbQeOyA,2011-07-01,kCY--CYrDAehv-Ed9ngRKw,3,A good place for bugers and fries.,review,1ykGYq1ERicaZWCl5-Vi0Q,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2012-04-15,qu2p1zYlSrt_TI6XROPK_w,3,"My husband and I tried this place out since it is fairly close to our house and gets decent reviews. I drank, my husband ate. The wine selection is ok and the staff seemed friendly. My husband's dinner was okay. I'd probably give this place better reviews had they not attempted to give themselves a $15 bump on their tip. I'd also probably give them better reviews if the manager would have called me back after leaving a message with a staff member about the charge especially when I left all the details necessary to fix the issue and was promised a call back that afternoon when the manager arrived. Now, I can only assume it was not an inadvertent mistake since they give me no reason to believe otherwise. I really would rather not have to keep calling back and chase my $$ down. + +Edited review - took them from 1 star to 3 stars since I received a phone call today from a manager and was advised it was a mistake and they credited me back the funds. Also will be sending me a gift card for the trouble. Overall, I appreciate the follow up and their efforts to fix the issue and bring me back in. I was routing for them since the patio seems like a pretty chill place to have some drinks and unwind.",review,cb_N2blI9xsF8vaFL5Cwcg,0,1,0 +5VMajxduxfLPSyQkVFKESg,2011-08-31,k9YdRmbDuxl_6JZFBvBD7Q,4,"If you love BBQ, this place is for you. + +Nostalgic feel with a farm tactor sitting in the dining room. Good selection of sides and the rootbeer is home made. + +Like Joe's Farm Grill, this place can draw a crowd and you'll be in for a long wait for service but timing is everything. + +Can be a bit pricey is you load up but the quality of the food is top notch! + +I'll definately be back.",review,8EaO99Q3E_SS8KzOR1rFrA,0,1,0 +k8JnZBspVOI8kLcQek-Chw,2009-07-11,Fm3LuNMTpVf5qgGV3D0y0w,2,"Not so good anymore. Plus the ""aura"" of the place has become a little snotty.",review,hGitwL2Ixiq3C6mJyQrlPw,0,0,0 +QjbiS4XFuW8BmXXRWprrRQ,2012-11-14,mmT_lmvBJnSnMEX3PsareQ,5,"We checked out the prices at The Dump, the sales person there just were too pushy. and their prices were not the lowest. We checked out the prices at Mattress Firm to see if they were any cheaper. We had a wonderful experience! The salesperson was friend and helpful NOT pushy at all. They had the i-select model bed that my friend was looking for. They were $200 cheaper, delivery was cheaper, and free tempur pedic pillows. SOLD!!! My friend is happy as a customer.",review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,0 +ptIRdaZlXxuVJTiJDFJCIw,2010-06-03,Oi7fgPUlbaLgw2tVwQ_Wpg,3,"I ate here over the weekend while attending Comicon. I was actually pretty hungover at the time and desperately needed to plug my gut. It was between this and a deli I saw a little bit down the way but pizza always, always sounds good so I made my decision. In my mind, in a fight between a pizza and a sandwich, the pizza would always win because it has the power of molten-hot cheese and pepperoni shields. + +Yay: It was like $6 bucks for a big slice of pizza and a salad and a drink. That's a really, really good deal. The salad that I got wasn't like an amazing salad but it had onions on it and croutons and had a strong flavor. It wasn't bad. If I were a teacher and my class assignment was, ""Throw a salad together super quick and cheap,"" and I got that salad, I'd give it a B. + +Nay: The pizza was not so good. But, you know, it was pizza and pizza is hard to fuck up so it was salvageable. The big problem was that it was so greasy. I mean the pizza sweat grease like a fat man's back. If I were a teacher and my class assignment was, ""Make me a cheap ass piece of pizza that tastes good,"" I'd give this slice of pizza like a C. I choked that shit down though and washed it down with salad and raspberry iced tea. + +So, you know, the pizza wasn't great, but after I got done eating I felt a lot better. I had the strength and energy to check out Comicon for the rest of the day. I geeked out good.",review,mym5tXZoZCbuPCYQzI5Ysg,1,1,3 +NH67MdKaFGNcP-dlu56pyw,2009-01-16,OUYW_ylJmTRZFRtTEMzAbQ,4,"Impressive dinner tonight! However, it was a packed house, and it took over an hour for my Panang Curry to arrive. While I was a part of a large group of about 14, our particular group had 6 people. One tablemate's entree (Ginger veggie stir-fry?) arrived at least 20 minutes before the second tablemate saw hers (Yellow Curry). It was at least another ten minutes before the third tablemate saw his, and so on... I was able to sample my neighbors' dishes of Spicy Catfish (battered and fried catfish topped w/ bell peppers, basil, and spicy red curry sauce) and Swimming Rama w/ pork (topped w/ peanut sauce over steamed veggies). All three were AMAZING! I'll definitely order the Rama and the catfish next time!!! + +Didi, our server, moved quickly, was efficient, and attentive, and was even helpful in suggesting alternate selections to those who had never had Thai food before. She even warned tablemate Ericka, who'd only recently discovered peanut butter as an entree ingredient, that she'd either love or hate the Rama. We were thankful that she rolled the dice and ordered it, anyway. + +I hope that the kitchen crew can work out the kinks as far as pacing goes-I hope that by next visit I can up the review back to five stars!! + +Ooh, do try the coconut ice cream w/ embedded grated coconut! Not as good as Yupha's homemade coconut ice cream, but still quite delightful :)",review,0bNXP9quoJEgyVZu9ipGgQ,5,6,0 +nk6_ipMkmUvUtq6Xvncf0A,2012-04-01,mPr37R_AIsFk5dIejg7-qw,2,"Place is avg. Sushi was good but the red sangria saki was bad. Service was sporadic and we had a one plate that they forgot to put the sauce on, and another couple plates they tried to give us which we did not order. I would try to find another place.",review,3aP_EyVhsjlCikyuVcPlbA,0,1,0 +44qg4vgcqJkjF8eqG4R4JA,2011-04-13,wrJiJRoPGMZBtkEzkKMz_g,2,"As a breakfast snob I really do not like Denny's. They don't really do anything especially well. Also, I've had inconsistent quality of food and helpfulness of staff on different occasions. I can't slam this place for one unpleasant waitress, but I can for those inconsistencies and that fact that there are just so many other places that do what they do better. + +In fact, this place was the very last Denny's I ever ate. The food took forever, it wasn't well done, came out all screwed up, and the waitress was unpleasant. After that experience I decided to never set foot in another Denny's.",review,m9Kl_CB5K5Zlmn1aNAFl3w,0,1,0 +gpyWGG0U-yqnVKru6y8fNQ,2012-02-28,6nYkZgGBjKpKNRb8a5eKTA,5,We Care Family Wellness Center is the most exceptional doctor's office and staff that I have ever found. Every employee here genuinely cares about you. I highly recommend.,review,lKhuI73GsTFvOrCe_tAJFw,1,1,1 +PxeX1M8WtyPxX1MuuGIh-g,2011-07-13,8mFHCHOT-9MkihwvaEs-Kw,4,"Bottom line: Scott's has a matzo ball soup so good I can't imagine how anyone could ever hate the Jews. Best bagels in Phoenix, hands down. Take your Einstein's and shove it. +Scott's has an expansive menu that ranges across breakfast, traditional deli offerings, and a strong but semi random assortment of 'home cooking' type meals that your mom makes but you never see in restaurants. I haven't spent a lot of time in delis in New York, but Scott's reminds me of the ""New York deli"" I used to live around the corner from in Houston, down the street from the JCC - tasty, simple, and unapologetic, about anything. I love their soups, although their pastrami is not the best I've ever had. They have every flavor of Dr Brown's imaginable. The portions are huge - too huge, actually. I'm minuscule, so the prospect of a sandwich that is 3x what I can eat in one sitting is daunting to the point that I only go if I know I can take a box home. The service runs hot and cold, but I've never not gotten what I wanted the way I wanted it, and if the waitress isn't looking at me with vague disapproval, I feel like it's not an authentic New York experience.",review,kDd9xHsUOg_HYOvxkQcnXA,0,0,1 +cXx-fHY11Se8rFHkkUeaUg,2009-10-27,2yHyr0N_XNZggmIfZ7JaHw,1,"Remember how I said that the Trivia was the best thing about this place? Well, they got rid of long time Triva host, Dave (who had been featured in the College Times and was the best thing about the trivia). Without Dave's personality, this place just doesn't cut it. Will never go here again. Bummer.",review,nx2PS25Qe3MCEFUdO_XOtw,2,4,0 +U_CvxSM9epIi8u5A0jOUVw,2011-11-15,daZn4dXDv4yg9jUslv67kA,4,"I am only reviewing this location as the other locations are hit and miss. The one on Tatum and Dynamite was bad both times we went there. So, I go out of my way for this Barro's Pizza. The decor is similar to all locations. Very drab and not very comfortable. But, we are talking about a pizza joint, so they will get a pass on the decor. + +I had a mini Hawaiian pizza on my last trip and was delicious! The crust was crunchy on the outside and soft on the inside. The sauce was tasty and the perfect amount. I ate every bit of it with no crust leftovers. That was how outstanding it was. + +I am surprised that the consistency between locations is such a wild swing from outstanding to mediocre at best. The owner should look into that.",review,cXnWZPcrtHjKXbcNzulg2A,0,0,0 +9yKzy9PApeiPPOUJEtnvkg,2011-04-20,4nvfVCoIDBhEiQdvXh1xoA,2,"Finally was able to make it here for breakfast. My opinion, I will NOT be back. As we were walking up to the place, I said ""O now this is the kind of place we should be taking our out of town visitors."". Well, on 2nd thought, NO. We went today, a weds, there was no wait and we were seated promptly. We were informed that the beverages was self serve as far as coffee, water, tea and lemonade goes. We started with tea-dislike, then lemonade-dislike. And did I mention we self served ourselves in a 12 oz cup with a price of $2.75, WOW! If it was to our liking, Id say that is still steep for a self serve drink in a 12oz cup. He had the monte cristo, which he liked but was not blown away for the price. I had the french toast and it was only ok. I also ordered a side of sausage that i DISLIKED and it was $4 for I think 2 links, WOW. And once our food came, the flys were EVERYHWERE. I kid you not when I say I couldnt wait to get outta there. I left very disappointed, and hungry. Will never return or recommend. But hey, try it for yourself, you may like it. I just think it was too high priced for what we got.",review,gXmtPKLWPZJeJX_KPw54HA,0,2,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-11-05,A-mQ90JzvEOkoWfsg10J8Q,3,"if you want a really filling, delicious ""please-make-my-head-stop-feeling-like-it's-about-to-explode"" hangover cure, there guys have got the remedy! the hangover helper is all of the above and get's even better when you add the hair of the dog bloody mary for an extra $3! (they also have live music on sundays during brunch!) + +the architecture and windows are stunning in this place - if you've never been in here, it's worth checking it out!",review,wIi2J1UGRB2G_3vu5eNK3g,0,1,0 +E2F25cRcYf_bWtvbCht0EQ,2011-12-25,pDoptH8gE2rAInbK9mMabA,5,Best damn Brownies on the planet (or close to it)! Words cannot explain how good they are. The only negative is that this palce is located across the street from my office! Way too much temptation.,review,SRlh4J85Js9ozC1eco6DQQ,1,1,1 +gWP6ofoyTbK0SZj1i_XqNQ,2012-04-17,0OWJdGZ-TV4S1_sRQjqImA,2,"Made the mistake of coming here on opening day. Not a good idea for someone with anxiety issues. They had a bunch of really good deals, but I fear it is probably going to be the same as going to Walmart. And I HATE going to walmart.",review,rMmsDx0VB2onSrAj3qnI5Q,0,1,1 +nMHhuYan8e3cONo3PornJA,2012-04-28,qQcvmt1tvMR3F5OolsIRPg,1,"Had some time to kill before the Ultimate pleY Date Yelp event, and I'd wanted to share my love of Nobuo's Dark chocolate mousse with green tea ice cream and sugared orange peels with my happy-go-lucky cousin, who has never been here before, so we stopped by at 5:17p to find that Nobuo wouldn't open till 5:30p, so we waited outside in the comfortable patio. + +After watching a couple of employees add lanterns to their outdoor umbrellaed tables, I noticed the ""OPEN"" sign on the front door, so we entered the resto, whereupon we were greeted warmly by a male host and shown to a two-top. I didn't like the energy in that room, so I asked if we could sit elsewhere, and he said to choose wherever we wanted to sit. We were the first customers, so we chose a four-top, knowing we wouldn't be taking up space for very long, anyway. Glasses of water were delivered, and soon we met our female server (whose name on the receipt reflected ""Butai""). When she laid down the menus, I told her we would only be having dessert and could we see the dessert menu? I wished we had a video of the look she gave us, a look of pure distaste, as she gathered up the dinner and beverage menus and said ""We don't have dessert menus, as we only have two..."" and proceeded to tell us of the mousse and the almond-orange fritters. She walked away, and as we loudly discussed about our losing our interest in dining there, she came back with napkins and utensils and asked if we decided what we were going to have. I decided to forgo our server's very cold treatment and asked for the mousse. After all, I'd already finished a glass of ice-cold water and cousin's phone needed recharging... + +When Butai placed our chocolate mousse http://www.yelp.com/biz_photos/0Buxoc0cRqjpvkezo3bqog?select=rK8m1rxl50PB69_c2YqQTg#rK8m1rxl50PB69_c2YqQTg on the table, I wanted to send it back. Where was the lovely bowl and presentation of the last dessert I had here? Was she serious in presenting us with this stale-looking mousse, with cracked edges and whose green tea ice cream had ice crystals on it? I don't know about you, but the only times I've seen crystals on ice cream is when it has slightly melted and placed back in the freezer to re-freeze. For me, seeing crystals on ice cream is a sign that it is old... I brought the receptacle and showed it to the male host, who assured me that all of the mousse is made daily at 4:00a and seeing cracks and bubbles in the mousse is normal, so I decided we would go ahead and try it, if for nothing else but to have something to report here. The dessert was definitely not up to par with the pretty bowl http://www.yelp.com/biz_photos/0Buxoc0cRqjpvkezo3bqog?select=o9jIksB-MObhCxoI_msekQ#o9jIksB-MObhCxoI_msekQ I had during our October OYE in taste and presentation, but it was OK. The mousse was still cold and stiff, and it had a mouth-feel more of like thick chocolate ganache filling/icing on a cake- certainly not the silky-smooth chocolate decadence I knew it could be. My cousin had to warm up to the dish, as the sound of chocolate and green tea together didn't seem like a great combo to her (I told her to trust me). She also never enjoyed orange and chocolate together, but she liked it in this dessert. + +I understand that the knowledge of having to serve only dessert instead of dinner AND dessert, which translates to a higher table bill, can be a bit of a disappointment, but why must you show your displeasure to your guests? Butai, you were lucky that my cousin even left you the change for a tip- she didn't want to give you anything, and you certainly didn't deserve it! When I told other Yelp friends about the sub-par service and dessert we just had, one replied she didn't enjoy the last time we had apps here (I think it was around Halloween and First Friday?) either. Cousin and I thought it very poor taste that our server gave us that awful, condescending look after finding out we were just going to have dessert; We didn't deserve that! I am never going to recommend Nobuo to anyone, anymore. I even promised my Japanese friend (who lives and works overseas) I'd treat her to a dining experience here when she comes to visit. Guess I'll have to find another place to take her... I don't want to risk getting the same treatment from Butai, or from another server should we come back here. + +Sorry, Nobuo, but I won't be returning.",review,0bNXP9quoJEgyVZu9ipGgQ,4,7,2 +7pxa5tueoEcmt6hztqsz2A,2010-11-24,q62km1p5M_3X1gLPEFqIGQ,5,"i tried the thai river noodles. they will not replace the love i have for a dan dan noodle bowl. but the thai noodles, they were good. + +i like this place because it has really opened hours compared to everything else around here. and the food in inconsistent. oh also, the new soda machines are very entertaining. just watch.... + +this is usually a last resort option (everything else in the area is closed). but it is a good one nonetheless.",review,pU2lBD_W3VNvpzKZsRzi2A,1,1,0 +rLAeltELaGdQKh_LYIllEA,2010-11-07,yl-z0rKr4PfwfEMBXNzIpg,5,"What an amazing place!! I had an incredibly enjoyable time staying at the Royal Palms Resort, and recommend it highly. So many excellent points: absolutely gorgeous accommodations, polite and helpful staff, excellent restaurant (breakfast/ brunch outside, with a delicious cup of coffee, is a must), a great spa, and a relaxing atmosphere. My boyfriend and I stayed here for a conference in late October, which is a great season in Arizona. Our stay was a pleasure from beginning to end. The resort is well-suited for special occasions (there was a wedding reception and an outdoor conference dinner during our stay). Our room was very comfortable, with excellent set-up and a great view of the mountains from the balcony. The resort includes a pool, a small gym, several lounge areas with firepits and fireplaces, and the wonderful Alvadora spa (with massages, facials, outdoor-facing showers, and shaded lounge areas to your heart's content). There are several mountain trails a short walk/ drive away from the resort, and downtown Scottsdale is 10-15 minutes away by car. In all, a beautiful place for a special occasion!",review,gQyOwXDSPGgZ_ngw89Dkug,0,0,0 +kK4AzZ0YWI-U2G-paAL7Fg,2009-04-14,d_PYNOSwWJvQfAe3kQqXWw,4,"the rustica looks like a penis. + +thankfully, it tastes like pizza. super thin, crunchy crust pizza. + +the husband and i went for lunch to the one in scottsdale, the other day. we shared a spinach salad and each had some pizza. the salad was very good and plenty for two people to share. + +i had the appropriately called ""meat"" rustica and it was really good. this is the only the second place in phx i've had pizza that doesn't make me feel like i splashed my face in grease after. (grazi is the other). + +the husband had two slices, which were more than plenty for a meal. they were completely different styles of pie and both were great. + +we'll definitely hit this one again.",review,B8t1hkG4EX7ar4r9PCEJMA,1,1,2 +Sqr_te9U9Y6RpnmBx0iYNg,2011-05-26,mSsXep_OZ9FJtLAV-qgF0Q,4,"Great service !!! +Food was good, not spectacular, but very good. +They had some crative rolls and a few really good appetizers. + +Cool little spot that kinda hides in a non descript spot , +I will certainly be back if I get a chance before leaving town",review,eW4wK3I_tdwROgYvTdidaw,0,0,0 +I2_yeLfTzXHGwi8an0tL4w,2010-11-11,1nxOPq22-Nxedzy4ySH44w,5,"This is my favorite coffee spot in AZ. They know how to make a fantastic Americano. They use very good coffee and a real European espresso machine. I hate those machines that Starbucks uses with the coffee storage on top and the preset grinders. YUCK. + +The cafe has a comfortable and welcoming Vice. Everyone will say hello to you when you walk in the door. + +They do have free wifi, but it is REAL SLOW!! That is my only complaint. They need to crank it up!",review,1gGXhRejYAZdFHfmmEwYSw,0,0,0 +AeoJkr_dlNshB078OepP8w,2011-08-18,byzY0lh3-U78C9TimskISg,2,"I've been here a few times now and I would say it is decent, slightly overpriced Mexican food. Their regular dishes are just OK. I have had their tacos and enchiladas and prefer Arriba's (right next door) or Carlos O'briens, just down the street. There is even some mom and pop place by my apartments that equates to the quality and taste. + +What I like about Los Olivos is their Nachos. OMG this thing is huge. Imagine a large pizza in your head and then replace that image with the same size plate of nachos. I am not even kidding. Four or more people could munch on this. They do it exactly how I like it too, lots of cheese, tomatoes, jalapenos, sour cream, and guacamole. YUM + +That is what has been keeping me coming back, but after the other night I feel I am sure to find somewhere whose nachos make me just as happy. + +Every time I have been here, it has been dead. And last time I came at prime dinner time. Then why is the service so awful? This kid kept coming up to our table and trying to take things. We weren't even half way done with our nachos when he asked while I'm in MID BITE ""are you finished with that"" not only asking but reaching his hand to grab the plate! And this happened repeatedly as we tried to finish our food. I don't know if they wanted us out of there or what. And then for someone who was so ""attentive"" I waited for 5-10 minutes for a drink refill (make the glasses clear and it won't be so hard to tell if I need more) + +My friend and I left full but irritated. If I thought the quality of service was a one time thing I wouldn't even put this review up...but the fact of the matter is when you are paying for overpriced Mexican food in North Scottsdale, it isn't as if your options are slim. + +My advice, go next door to Arriba's. Good food and GREAT service!",review,vp1LUMkedWATnFeVFteASg,2,4,3 +IX5FfZL4P7WGOG-xwdD4wA,2008-12-17,SZQQ4w5fwsVcdACg1Ktq-g,5,"Can I review some of the people who go here? Because I know one idiot who would get 1 star. (But the park still gets a 5) + +One dude let his dog pee on me! And the little bugger was fast! He'd prance toward you, and before you knew it, his leg was up and piss was streaming out of his winky cannon! + +My friend was tinkled on multiple times; she wasn't able to jump out of the way very quickly since she was pregnant. Did the man say anything? Only that his dog was only nervous. Are you kidding me? + +Alright, I got your number. In return, we very actively encouraged our Australian Shepherd to play with the little terrier. Why? Because the Aussie Shep becomes a drool monster at the dog park, and the little pissing terrier (who only likes to pee on people, not trees or anywhere else in the park) ended up DRIPPING the Aussie Shep's saliva. Sweet! (that was the only time we didn't feel guilty about her saliva marking other dogs).",review,HpQwQzcJyPrufcC-ub5IXA,3,3,6 +e8FMAuTswDueAlLsNyLhcA,2012-08-04,-yaZpsAhNXhb7HPmK7UV0w,4,"This place is a very chill wine bar. Came here after flying in for work and wanted something that would be light, have a good wine selection, and a nice outdoor patio/bar area. Daily Dose fulfills each of those items. + +You MUST get the bruchetta plate.",review,J6IOwRvM6UYtJIxKR1KW7w,0,0,0 +_fTwf7Oo5DqiCpgEhDZ9VA,2011-09-25,gvdxUyeULOzj8irBHwzhdA,3,Air Jordan! need I say more?,review,pw-k3TMjt1ZNB2-iRVTDlQ,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2012-05-07,OCO5LkYSvi8HW87YCkJ7mw,5,"Unique atmosphere in the city of Glibert with AMAZING food.... + +Beware some weekends the line is super long but its worth the wait... be prepared to eat outside in a nice shady area enjoying a farm like atmosphere... + +Good seafood is hard to find in Az & Farm grill does a great job.... also great burgers! + +If you don't mind driving out to Gilbert its 1 of the best places to eat in the Phx area..",review,8E1FnftNnCgvu2wuZADX6A,2,2,0 +lBRCMN7wNn-BKUsaOXJRow,2009-04-24,m9UTadZxTj9CEHjDJHAM0A,2,"I used to go to them, but stopped several months ago. They are more expense than other pet food stores. I only purchase Wellness brand dog food and thier supplements. +They were out the the supplements. When I asked one of the guys when they were goingto get some more, he also told me that Wellness stopped making the supplements and got a little nasty with me about how Wellness was now selling at Petco. He then steered me to another brand, which I didn't like & didn't work as well as Wellness. I contact Wellness & at the time they were still making the supplements. So the guy at WnW lied to me. The rest of the staff was always friendly +Wash my dogs there? I just heard them into the shower stall - its easier.",review,yMh0pZfHg0QvPI1LeUkBtQ,0,1,0 +dJvUc4ViWEJ0NJfQtYo7xg,2012-07-22,ybfnzFoVw-RY7W8rIW8b_Q,5,"my family and i hosted my sister's graduation sendoff here and it was a great event! + +debbie in the events office as well as the staff she sent us to be of service throughout the event were wonderful. + +food was delicious - we ordered buffet style (chicken milanese, sirloin steak, appetizers, and beverages) for about 150 people. + +the tech staff was very helpful in setting up our equipment for a slide show as well as providing equipment for us to play our own music at the event. + +servers were polite and accomodating to any of the guests' requests. +and the facility is beautiful. + +they even let me go super early in the morning being the type A personality i am to decorate myself and set things up. + +overall wonderful experience with this resort and its staff. would love to host another event here in the future. + +thanks, scottsdale plaza resort!",review,Ztobt8t-diOtjff32bno7g,0,0,0 +A3xyx-Y_-t3TwBD9E--Zzw,2012-11-18,xMry1S85Ll13vi4mrg3E5g,5,Went here last night for the first time in years. I used to hang out all the time here when I was younger. It was packed by 1030. Great music mostly top 40 and hip hop..no techno yay! Good looking crowd and not as pretentious and the rest of Scottsdale. Everyone had a blast..dancing everywhere. Friendly crowd. Reasonably priced drinks for Scottsdale. I cannot wait to come back. Patties still has it!,review,iIQbATX70Jsbosv4OE2tHQ,1,0,0 +Oj79-vTnjQk_jLr6oNbT0Q,2008-09-05,laIiWfFr-j-IhjQEY0eKrQ,4,"It's been awhile since this place was reviewed... and probably just as long since my last visit. In the last few months (or possibly more), this restaurant changed names (it was previously 'The Counter') and cleared out the retail boutique area to make room for more seating. + +Future yelper Nancie S suggested we meet for lunch here today, and I was impressed with the changes. By no means is Chloe's Corner a high end restaurant... it's more like a retro diner with a modern feel. It's the kind of place you order at the counter and pay for it, and then they bring your food to your table when it's ready. It's also great for those who want to pick up something quick on the go... + +We both ordered the chopped salad and a side of toasted cranberry walnut bread. It was really tasty! You can tell they use high quality ingredients... the salad is a unique combination of field greens, turkey, bleu cheese, walnuts, and grapes with poppyseed dressing. I would for sure order it again although the tuna melt looked pretty amazing too! There are several other 'classic' items on the menu such as grilled cheese, tomato soup, milkshakes, etc... + +Even more impressive than the lunch was the fact that I found a parking spot right away at Kierland and I left without going into one single store. I'm so proud of myself for that... any fellow shop-a-holics know how hard that can be! + +Although I did like this place when it was ""The Counter,"" it looks to me like the change that Fox Restaurant Concepts made to this restaurant was a good one!",review,fczQCSmaWF78toLEmb0Zsw,4,5,3 +pzPbg_B2uSVJ72LIa2G3sA,2008-03-15,64q8hQgi3Lw_cf41Rd7lmQ,4,"I struggled a lot on whether to give this a 3 or a 4. Honestly, I'm not happy with my decision and I'm thinking it may deserve a 3. This place is new to me, but I'm no stranger to ""Mongolian BBQ"" as I've been a long-time fan of YC's. Obviously I'm going to compare the two. + +I liked that they had fresh meat, but it was a little fatty and since they use thicker chunks as opposed to shaved and frozen, it takes longer to cook your food. They seem to stack up orders on the hot disc. It definitely lacks the flair you get when eating at YC's, but the novelty of that wears off after a few times anyway. Plus, I know it's wrong, but I prefer the frozen shaved meats to these chunks. It's just different though - I wouldn't say frozen is better, just that I prefer it. + +I would even go so far as to say I preferred a lot of their fixin's outside of the meat. They had a better selection of spicy powders and sauces than YC's, and this place definitely caters to the spicy food lover more. They also had better vegetables. I should also mention they have a better selection of meats including two types of beef and even shrimp and scallops. Even your choices of noodles and rice was more extensive. Come to think of it, they really beat the shit out of YC's hands down in the available food department. + +And taste? Well, it was delicious I must say. Of course, I assembled the dish, so if it wasn't any good I have to accept at least part of the blame if not all. If I had to compare, I'd say YC's is very reliable and good consistantly because I tend to always create roughly the same dish. GG's I could see having a much broader range of flavors and experiences. + +The ambiance was okay for a strip-mall restaurant. It was kinda kitschy, but charming enough and fairly comfy. They had attention to detail. I think YC's (depending on which one you go to) is a ""no frills"" sort of place compared to this. They were piping in some good contemporary alternative music as well... for a minute, I thought someone had lifted my ipod. + +Service was attentive, but odd since this is a ""get your own food"" kind of place... They also have menus which is strange considering you basically put your own dish together and since the server explains the process again to you in detail. I felt a bit like a child being explained something so simple and obvious, but my girlfriend had a confused look on her face, so maybe it's a good thing they do that. Regulars probably just get escorted over to the line. + +I think my main gripe with it was the tiny bowl they gave me for the fixin's... but then again, you aren't putting noodles or rice in there like you do at YC's - they add that as they cook it for you. So I suppose the portions are comparable. Then there's the price. A little high perhaps - maybe higher than YC's (I know they used to be 5 bucks for a lunch bowl). But you do get a lot for your money if you know how to pack the food in the bowl. + +So I guess I was right to give it a 4 instead of a 3... turns out I really liked it. I think this would be a real treat for someone who hasn't had Mongolian BBQ before. I consider this to be a great alternative to YC's... Impressive.",review,Cp-PV8rsypbO-xBrQ6KmQg,5,8,3 +fVgrpVyp-nPLTac9YIjTug,2008-03-17,_Qh76bynqHwOrASt5PotJQ,5,"One of the most impressive spots in town. + +Lunch here is a luxury experience - the grounds are amazingly beautiful, and the menu surprisingly affordable. Try this for an inexpensive way to really impress a business client. + +For dinner they will take your shorts, though it is certainly worth it if you desire a truly memorable, elegant evening. Life is too short - try this restaurant soon! + +I have yet to stay here (Royal Palms hotel) - but it is definitely on my list of 1001 things to do before I expire.",review,90a6z--_CUrl84aCzZyPsg,1,3,0 +byhwHi0lhYdyY5kSpuqoaQ,2012-10-15,4uwt-fSLpqTqBgE1vypM8Q,5,"A few days after the amazing Yelp event at Brio, I decided to go back to enjoy my FREE bruschetta! This visit was yet again, AMAZING! First off, Kimberly, our waitress, was the most personable, helpful, awesome waitress ever! She was very insightful and suggested some pretty tasty appetizers. I'm not a fan of eggplant, but she assured me it was to-die-for. She was not lying, it was delicious! + +They also had the same live music as the Yelp event had and he was just the perfect sound for a happy hour date on the patio. + +Then, to top it off, the manager that was hosting the Yelp event came over and introduced himself. Thanked me for going to the Yelp event and for coming back! So hospitable! I felt like I had a second royal treatment! + +Thanks Brio, you guys are awesome!! :)",review,iy-lnju3UY_eap5oztdkhg,0,0,0 +U4IipLI4RsuBLmxTFEV2MQ,2011-02-06,mosH3g7HtQxV8nQLZc772w,2,"I have been parking here loyally for several years but the last two times have prompted me to look elsewhere. The location is somewhat good but stinks if you get stuck behind the train since it is just south of the train tracks. The shuttle are fairly frequent and prices reasonable. What has really rubbed me the wrong way is the service. Okay, maybe just one particular driver. The second to last time we used this place, it just so happened that the driver that dropped us off at the airport wrote down the wrong place. When we were taken back to the parking lot, the driver kept arguing with me and saying my location was wrong. It was to the point, he was almost ridiculing me in front of the other passengers. When we finally located my car, I showed him the ticket where the location was written. His response was that the original driver was an idiot for writing down the wrong location. No apology to me for his behavior. We used Sky Harbor during Christmas and we got the SAME driver again after being picked up and taken back to the lot. Turns out his behavior was the same and this time I watched it exhibited towards other passengers in addition to myself. My husband thought it might have been his sense of humor but yelling at other drivers in the parking lot is unacceptable. Besides this idiot's behavior, during the holiday, Sky Harbor Parking had cars parked in front and behind vehicles in middle rows. There were three couples who were blocked in when dropped off. I couldn't believe it. Who wants to deal with that when traveling all day? Thankfully, it didn't happen to us, because I would have blown a fuse after dealing with the driver. I might try out Pre-Flight who has a frequent driver program. Hopefully, their customer service is better...",review,RxfFQxUtSIGYwTKU_rvAeg,2,3,2 +L6yYzUqVcX97uNXDGqS7-w,2008-05-28,wxlaY9CGArFFXzYLGBFv1w,4,"This was a nice casino experience. It wasn't as loud as Las Vegas. The food was really greasy and made me a bit sick. Admittedly, I chose to eat at the fast food place inside the casino, but ah well. I still had a great time. I don't really gamble, so I only came out $10 ahead, but it was still fun.",review,pzhiDEp8EFltFmdldP9Oow,1,1,0 +53YGfwmbW73JhFiemNeyzQ,2012-03-21,f2d2X33xegRtHUB4ozAb3g,4,Very nice place and delicious food!,review,V8hXZIVRVg4QN87m1LQABA,0,0,0 +KgTb63IZHFn_rhLG-cpm_A,2011-07-08,Jn5POCZM7k52bdVuxjdSPA,5,"Our 1st visit to Renegade Canteen last night. We made reservations and were a little late getting there, but they had our table waiting which was nice because the place was packed. Atmosphere is very nice. Beautiful building and a nice layout. Next time we plan to eat in the bar. We had to try Bob's Big Burger and what a big burger it was! Quality meat (bacon was to die for). Big onion, big tomato. What more could you ask for? Mr. McGrath was in the restaurant and he came by our table to say hello and ask if we were enjoying ourselves. Great guy! And our waiter was very attentive (not pushy) but always seemed to show up at the right time. + +We plan on going back for sure. Give it a try. You won't be disappointed. + +Catch Chef McGrath on Channel 8 PBS ""Check Please, Arizona"". He does a good job and watching the show makes you hungry. + +Thanks Renegade Canteen for having us.",review,Z02XdD0muEz2FFQKPERMYQ,0,2,0 +KHeM4cO2DWK1C09zWCFLFQ,2012-06-08,dGo4wlJ5ijCziTkmx_LHSQ,5,So many flavors and the ice is melt in your mouth soft. Add cream to make it a little better than a normal icey treat! Lots of sugar free flavors too! Mmm!,review,CjL3FtpiDzhNXTQPw0-RBw,0,0,0 +Hd6Kh_BcorPhCWVn6pMu4Q,2010-12-11,4XLehIAzLEN2XwDXQezcUA,3,"Zipps has good bar food, but the service is usually horrible. The waitresses rarely come to your table. BUT, what really rubs me the wrong way is this.... +On multiple occasions, when I pay the bill, the waiter doesn't bring me back the correct change. Even if my change is 1 cent, I'm entitled to receive my money back. +I'm sorry, but not giving me back my change because you deem it insignificant doesn't float well with me. They do have great food though.",review,72aM9jYYdiQrQF9uOQHAPg,1,2,1 +YQvg0JCGRFUkb6reMMf3Iw,2010-04-28,t34bw83EhFp4rTzo8O3yNw,5,"I was very impressed and surprised by the quality of this restaurant! This place is STYLISH - whether it's the plush lounge chairs on the patio, or the old school movies being projected on the walls - there's definitely an element of class that is rare for the Mill Avenue district. + +First impressions were extremely positive - the place was busy but not packed, candlelit tables, and dim lighting provides the perfect atmosphere for a date, but not too much so that it causes that uncomfortable, formal, anxiety feeling. La Bocca almost seems like an AZ88 in Tempe for those who are fans. + +I was pleasantly surprised at the prices on the menu. Most items were in the $10-15 range, and I was immediately intrigued by the various pizza selections. I focused my sights on the garden pizza, which took me by surprise because it was basically a chef-tossed salad on a really good pizza crust. My girlfriend went with the bruschetta planks and chose two homemade pesto, one mozarella basil, and one roasted artichoke - DELICIOUS! + +Top that off with a few glasses of really good sangria and you've got a really good meal for right around the $40-50 mark. Needless to say we will be returning!",review,mQba83gB018LlGt51r80ZQ,0,0,0 +2nGw5zkzvO5c2eH5P4C_kg,2007-01-25,RqRYc9Xe8KkNrXroa5dnbA,4,"This is about as good as it gets for Asian food in this price range. The chicken isn't chewy like many other inexpensive Asian restaurants. I've had several of their dishes and without a doubt the Yakisoba with chicken is my favorite. I love the white-meat chicken and broccoli (with Teriyaki sauce). The broccoli is quality, and never overcooked. And I love their Teriyaki sauce.",review,sJxsV2PBGQF2HkJygXTLug,0,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2012-04-23,_Bt4HMxZ2AHFmF3KnfFLvg,5,Stop here every time I'm in town!,review,eWkFFGHQimihdQpFsO_Ffg,0,0,0 +Bjt3rB73dvSDe1XEPEWc6w,2010-07-25,er5YgB8ak7ljI7tiXN9Jyg,4,"In town for our 5 year wedding anniversary. Sushi is one of our favs, so, after doing some reading on Yelp, off we went to Sakana. + +I must agree with many other Yelpers...the nigiri is fantastic! Huge, tasty pieces of super fresh fish. I'm craving it now as I'm writing this! I'm so glad I read the reviews and ordered several items from the nigiri menu...it was fantastic. + +The rolls, while well priced, were a little disappointing. Maybe it was just our selections, but nothing really jumped out at us...everything was pretty bland. We asked our server for recommendations and everything was a California roll plus this or that. Pretty blah. Even the Mexican Caliente Roll was rather uneventful. + +The service was awesome. Everyone was friendly, efficient, well organized. The atmosphere was rather mainstream, which was fine with me. I did have to laugh, as the first song we heard when we sat down was a Pitbull song, which another reviewer bemoaned. The volume wasn't offensive, so it really only served to make me laugh. + +The customer appreciation menu and Kirin beer special is genius. So many customer appreciation menus are pretty sparse, but theirs is well fleshed out and offers a lot of options. We each ordered Kirins while we waited for our table (we were told it would be 15-20 minutes, but it was maybe 5 minutes) and got 2 appetizers for 50 cents each. Pretty cool. (The scallop poppers were yummy. The edemame was, well, edamame. Not a huge serving, but what do you want for .50?) + +All in all, a good dinner. We know when we go for sushi that it's probably going to be a pricy night. Not at Sakana...it was probably the best meal we had in Scottsdale at the very best price. If we're back in town, we will definitely return. I'll just get more creative in my roll selection...or maybe just stick with the nigiri :) Yum!",review,aiG75Su3dCv6gsfrDSztoA,0,0,0 +JGTPb06Ix_v7uq3HADzq8w,2012-05-02,O8DYC5fTMgIb53dc0VZO9g,4,"This is my favorite Chipotle to go to because it's the closest one to my work. I call in orders all the time and the staff always has it ready to go. Even when I don't have a pick up order they always move quickly to get everyone through the line, which is great because when I'm hungry I want everyone out of my way!",review,3Zi1udoY2iT9s8Q3X6tgZQ,1,3,2 +wF2bVRLrXU6roqyIps7wDg,2012-10-25,Z-gLvruJ0A1r2u-Zq7A9iQ,5,"The spring on our garage door broke and we had no idea who to call. Lodi was recommended to us but they werne't specific as there are a few under this name. I choose Lodi Garage Doors & More and was stunned they sent someone out within 1.5 hours! They also quoted me on the phone and were so nice in setting up the appointment and calling back to confirm. + +Gene was our technician, he was efficient, friendly and did a fantastic job. + +I will be passing Lodi's name on for sure and if repairs are needed in the future I will not hesitate to call! Thank you for you quick, professional, friendly service!",review,GzOZ2iuyzT3cwYk49Vb8dA,0,0,0 +NCbHGtOP5yJBJsPPaE3X5g,2009-11-11,Bd0V0J99OxKZat7VsLuL2g,3,"I've only eaten the buffet here and it was good but nothing special. To be fair, most Indian buffets are pretty similar, it's only when you order from the menu that you see if the restaurant is really a stand-out. So, I will update this review when I've gone there for dinner",review,5-2JHDnSsoSaoRKDHPeTtQ,1,2,1 +o9nCXNC14VScabiy2bftgw,2012-06-04,-oIhgQTgpNoaqIRukEW5zQ,4,Well I liked this place it smokes it's main rival Hooters. The food is much better more screen TV's and the girls are much better looking. What else can you say.,review,81USOOslWjEpOZ4HfLLcfA,0,1,0 +ntN85eu27C04nwyPa8IHtw,2006-12-08,pdZ42ze_42jp0d4RsTHQFg,4,"The service sucks at Matt's. Unfortunately for those of us that like good food AND good service the food is crave worthy- better than any breakfast I have ever had, so simple and so, so, yummy. That being said, I have never been to a restaurant that ran out of cream for coffee. Not only that but they made it seem like no big deal, no apologies. I had one too many bad experiences and have not been back since. I have been tempted many a time to go back and see if they have changed their evil ways, but I just can't bring myself to do it. We'll see- life is too short to hold grudges, especially when good food is involved, right? + +UPDATE: Ok, we ventured back to Matt's to celebrate my birthday in April and I have to say that the service wasn't bad at all.... no more snotty waitresses, so I am adding 2 more stars. If they would make the effort to be really friendly they would get my 5th star... but I won't hold my breath, I think it is just not that kind of place. Now if you really are a thrill seeker I have a challenge for you... go to the bathroom at Matt's (go ahead and ask them where the bathroom is and you will see what I mean)... and if you want to have a good laugh imagine a nine months pregnant woman trying to go to the bathroom at Matt's... yeah, that was fun, luckily I escaped with little more than a pinch on the thigh from the toilet seat... but unless you have a death wish you should definitely empty your bladder BEFORE you go to Matt's...fair warning.",review,ZoNN4WeFrUXvlwaG5Ov_LQ,0,0,1 +OFBJtqWGSx6n6CchtVmoRw,2009-05-04,9yc5vhQCCPgHWPWcM72xJw,2,"This place is essentially a copy of the old Father's Office (www.fathersoffice.com) in Brentwood, CA. It took me a while to get over that fact and give it a decent try. Among the things Delux has copied from FO is the famous ""Office Burger,"" which Delux calls the ""Delux Burger."" They also bring out the fries in a shopping cart just like Father's Office. What Delux fails to copy, however, is the quality of the food and the high-end nature of the original. At FO, the wines changed weekly and are all incredibly rare selections. The beers at FO also tend towards the more obscure. Delux seems to concentrate almost exclusively on beers and does have a decent selection, but nothing you can't find elsewhere. Wines are available, but as an afterthought, and definitely not of the quality served at FO. For Phoenicians who never experienced the joys associated with the original Father's Office, you're missing out. It's like being an Eric Clapton fan but not even knowing who Muddy Waters is. But all the imitation aside, I have to say that Delux does a pretty good job with everything and they have taken the FO concept and adapted it to the PHX strip mall environment. + +Food wise, everything I have tried was ok. They did change their sweet potato fries a year or two ago because the other ones weren't ""crispy"" enough. The problem is that these new crispier ones have no flavor. When they were testing out the new fries, the manager asked me and a friend to opine and we told him the truth: We said the new ones are flavorless. I guess we were the only ones who thought so because they went ahead with that change. That lost them 1 star from this review. I would rather have the soggier more flavorful ones (who knows how they make these new ones so crispy anyways?). + +When I go here, it's almost always out of convenience and late at night. Not many places of this caliber stay open until 2 am, so it's about all there is when you are in need of a late night meal in this part of town. Their 2 star rating is based on: clearly knocking off one of my favorite places, Father's Office (minus 1 star) and for ignoring my feedback on the new crispy tasteless sweet potato fries (minus 1 star). They also lose a star for retaining the FO prices but substituting Phoenix strip mall quality.",review,5JSrHtH-aK69OjUxdt-k5A,2,3,1 +24qSrF_XOrvaHDBy-gLIQg,2011-04-14,5tnCI4jaMvl0NVmygUekLQ,4,"In Phoenix on Spring break vacation, we found Baby Kay's by using the entertainment coupon book we bought to use while out there. They were in the front for fine dining, and had a great coupon deal, along with a sample menu. Everything on the sample menu sounded delish, and we very much like the spice of Cajun cooking. It was a little hard to find, although we were not at all familiar with the area. We had the wings as an app. and used the Louisiana gold hot sauce, something new to us that we are having trouble finding in Ohio since we fell in love with it there. The gumbo was outstanding, and even the alfredo pasta had a spice sprinkled on top for a Cajun style kick... it was unexpected, and awesome! Huge portions - that we both had plenty to take with us for a whole other left over meal. ... the prices were great, especially with the coupon (or actually the entertainment card that they punch for fine dining restaurants). Excellent staff- close to closing for the night, and welcomed us in, and didn't rush us at all - made sure we were happy with everything we ordered, very friendly! Definitely would recommend it for any one who likes a little Cajun kick, and something different from chain restaurants...",review,Zw2HgpyTgJf-l2yOSWff5A,0,1,0 +w19cemjVR8u02PgjFpJ7Mw,2009-01-04,2fno2ou7xMqxo1IsJlMeiw,4,"I have tried the other one on shea, but this is close to home and work. I love the enviornment, the clientle, the healthy food, outstanding service and very reasonable prices. The waitstaff is great, the food always comes out quick and tastes amazing. Get anything with chicken as it is delicious and if you like hummus try it here. Also, they have great ice tea. This place is one of my favorites and well worth a try.",review,caELu3OqZm8LkdikpmEB4w,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2012-08-13,tfQ0Iu1cribS4ABr0THD3A,3,"Lovely shop, great cupcake selection, friendly service. But the real question is...how do the cupcakes taste??? Pretty good. I tried (4) flavors and they ranged from OK to YUMMMMMM! Vanilla with chocolate buttercream was ok, the Coconut was good (a bit dry, but decent flavor), the Carrot was very good, and the Mocha was YUMMMMMM! They were all super sweet though. My husband and I both had a quarter of each flavor and that was more than enough. + +From a flavor variety and taste perspective, Sprinkles is a 3.5 - 4. However, I really can't justify spending $14.00 for (4) cupcakes. They are expensive so they can pay their overhead and lease costs, not because of exotic ingredients or special decorating skills. Don't get me wrong, I'm sure they use good ingredients, but the wrappers are plain, there's no special piping or fondant work, and the flavors are standard. They are just plain good cupcakes...not fantastic, but good. Certainly not worth $3.50 a cupcake. I do a ton of baking and I get special order requests from friends and neighbors all the time. I always do nice decorating and use premium ingredients and the most I charge is $2.00 a cupcake...and that's only if I use fondant.",review,XeDbXueGKrfMLyIG45QIOg,0,1,0 +uYLbsoytUFMK-mJyQZ6GvQ,2008-01-06,Wlpd3M0WdtMfUsb3FFC8sw,4,"Wow. I forgot that libraries existed. +Until recently, when I wanted to get some travel guides for an upcoming European vacation. Then I thought, hmm... maybe a library would be a good idea. So I visited the Mesa library on my lunch hour and I was amazed at all the great books they have there. Seriously, there were all these brand-new, just-released hardcovers just sitting on tables, waiting for me to pick them up. +I remember being a teenager and having to wait MONTHS to get new books. Now, apparently, because either a) no one reads or b) no one uses libraries or c) both, new books are readily available at the library. Well, good news for me. +I also think the Mesa library may be a great place to pick up decent books because most of the patrons seem to be really, really old or homeless and possibly illiterate. I'm not trying to be snarky, it's just something that's quite clear from the moment you walk in. +Overall, however, this is a very nice, well-stocked library. And you can even keep renewing your books on-line. +Thanks to the Mesa library, I just may make it to the Yelp book club meeting this weekend... !",review,hnirQYfI4cjrzSMENyQTWw,2,2,1 +3Z88l4UO-FoNbYk_ZpTScA,2011-01-24,6h7oNIYKxcPDVcFARWdkhg,3,"We have been using Delia's Cleaners now for nearly three years and for the most part found the experience to be very good. + +Yes, like most cleaners they goof from time to time (like sometimes killing the button-downs on my dress shirts). But, here's the difference -- they'll fix them for no charge. Yep. Just ask, the staff is very helpful!",review,1BW2HC851fJKPfJeQxjkTA,0,0,0 +UexMw8s7B1J-RtFOQtCCsQ,2012-10-10,kc8DFIA1IojQEILuQpPOdA,1,"Living in this area I frequent Desert Ridge a lot, and have been to this Macaroni Grill several times... their food is actually pretty good which is why I let the horrible service slide a few times... My friend and I have had experiences such as standing at the host stand with no assistance for several minutes while several employees made eye contact. Of course, no one asked if we had been helped, until the hostess finally made her way back up to the stand and decided to ignore us for another couple of seconds before she even acknowledged us. + +Another visit we were seated right away however it took over 15 minutes for our server to come to our table, and that was only after I had to get out of my seat and find one of the employees to ask for our server. I know several people saw us just sitting there, the least they could have done was asked if we had been helped or not. + +This last experience, was about a year after the last. I thought maybe they would have changed. I most definitely thought wrong! We were seated promptly and the server was there right away this time. However, our food took FOREVER! Literally, it took over 30 minutes for a medium rare steak and a plate of pasta. I know for a fact they messed something up and ended up taking food out of a to go container and placing it on the plate that they then brought to me (you can see right into their kitchen from the dining room). The server never apologized nor did she come and tell us what the hold up was. + +Overall, I will never go to that restaurant again.",review,l4zlZVb2Re4hyh1O62w5bQ,0,1,0 +O7fXh4ODsi--5LmJKTHn2g,2011-02-25,P7uG0J1YqMhqTb1xijj1nw,4,"I still like Lux better. Cartel is very appealing, though, to those who know their coffee. The menu is not huge, but it does offer basic, good drinks. +They have plenty of syrups to flavor your drinks, if that's what you're into. +I like the atmosphere in there, and the bike wheel ""art"" is pretty interesting and unique. +This place is probably really great to study in, considering the fact that I see a sea of macbook apples every time I walk in here. +The employees are funny and nice. Anyway, it is definitely worth checking out.",review,eL2AbD_vXdP57eewFH21lQ,3,3,2 +08OcGan0xiT6I_oJ2loLMA,2011-07-05,_ST9YF6c-o1dyjRAhz8UkA,4,"Very excited to have a neighborhood grocery downtown! I've been in twice now and was surprised how many people were in there considering they just opened on Thursday. They have a really nice wine selection without the usual suspects, the cheese case has many nice, reasonably priced offerings and the pastry case looked delicious too! + +They still have a few bugs to work out, but that is to be expected from a new business. I definitely recommend enjoying a glass of wine at the bar with some cheese...yummy!",review,pEVf8GRshP9HUkSpizc9LA,1,1,0 +R8VwdLyvsp9iybNqRvm94g,2012-06-01,t45o2bR4PW-sEKIDKqe35g,4,"i love lgo and have to stop myself from going there more than i already do. while their pizza is delicious and the commuter sandwich is bomb.com, i really go in for the sweet treats like crack cake, brownies and salted chocolate chip cookies. on top of the food, the atmosphere is great and they have an assortment of treasures in the shop. only 4 stars since they keep the music too loud for me to want to stay too long and parking stinks if i want to go outside oft he hours of 9 - 11.",review,LUDHnXp0VxoHlAb10GpEvw,0,1,0 +3Zsjlum5kl5N5KV712aTMQ,2012-08-20,F2WXVPd_vb0RucFEWcZSUA,5,"Fabulous! Great views (obviously) of the city. Very romantic. Amazing wine list. Superb service. Delicious menu. + +Luis was our server - great guy full of very helpful information (especially wine pairings). LOVE the lobster bisque (I'm usually not a fan of lobster or bisque). Amazing flavor combinations in everything we tried. I also love ending my meal with a perfect vanilla bean creme brulee. + +Highly recommend if you're bringing a newbie to Phoenix or if you'd like a romantic night out.",review,0YnT3uyhdF5_1M7Hel1Klg,0,0,0 +9OPheVf5o8sRcRHxJDl4-A,2010-11-01,OEyUrGCD_5GRvSpjzrxMzQ,5,"If I could give it more than 5, I would. Sweet Pea and I live down the street, literally DOWN THE STREET, from this bar. We waited for it to open for what seemed like decades, praying that this was going to be the type of place that could become our local. It has exceeded our expectations. The atmosphere is amazing. The drinks are amazing- every last one of them- but the margaritas are the best I've ever had. They tasted like a fresh squeeze of sunshine that makes me happy inside. Margarita Mondays- $4 margs AND free food? Happy hours are amazing. New Year's Eve last year was amazing. The 1 year anniversary party was amazing. But most of all, the owner and staff are some of the coolest peeps that you'll ever meet. Go here. You will love it.",review,GVH_iuoPc0aP3ZNYlWuKag,0,0,0 +hECOlng2SZ97IbUcabRH2Q,2010-05-16,zepTOiPctPASewAQmV4X-w,4,"The cookies and breakfast pastries are to die for. Just for those two items they deserve four stars. Everything else, however, is just OK. The rest of their foods are good but not great. If you've ever been to Wildflower, I think their food is better there but dang, I can go to Paradise and just pig-out on their cookies!",review,dn9DSDp9CYCRffmL1voq6g,0,0,0 +yJr24Yy1K6bt2G9fX3_zPA,2012-03-01,pgCLr4exBMu_iBFFNiwT5A,4,"In spite of being on the corner of 44th and Camelback it does a good job of insulating you from the traffic and taking you some place else, in this case our dear Communist neighbors to the South. I like the sampler because it allows you to enjoy the finest island interpretations of pork, beef, and chicken. Also, no meal is complete without going bananas for the ....well, tostones. + +You gotta hand it to those Castro brothers. They forcefully preside over a country that has a pretty great national cuisine. Viva La Revolucion!",review,GrSixRnGIxNUJ1Cn5DNX9A,1,2,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-07-25,IRmSPWYYkp92q9AT_3S44g,4,"How to Have a Good Time at Cowboy Ciao: + +1) Order the Stetson chopped salad. + +2) Finish it. + +3) Order the Peanut Butter Brownie Upside Downy. +(Note: DO NOT question whether you're full or not. It doesn't matter). + +4) Finish it.",review,BjwXX-sChcjx2E55B_7rXg,1,0,1 +NAkRjPhS4yCD5trp0dY-bQ,2012-11-07,JfebNf9axeIvEnNgzpkJfg,2,I love the cornbread and butter but the rest can do without. The plates are so huge and super sloppy. The lettuce wraps are no good! I did like our waitress but the bar tender with blonde hair was supper bitchy to the other staff it was annoying.,review,SNc75-bLHhTBsl1AlH3fLA,0,0,0 +xtX2qS64zP2NRPV_7NNqHw,2012-02-06,3H-jBJDs3BP2sKHk80vp_g,5,"This review is for locals...the Hyatt isn't just a beautiful spot to stay it, it's also a perfect spot to just sit and enjoy the day! I've done this several times, many times for dinner and drinks afterward on the patio. Most recently, I decided to set up shop and do some work from one of the comfy chairs on the outdoor patio which allowed me to enjoy the gorgeous Arizona weather and still get some work done. They do an excellent job of making the hotel amenities comfortable and welcoming. + +For hotel guests, if you are planning to stay here, be sure to look into staying in one of the rooms that sit on the man made lake. They have great patios right on the water so when you wake up, you could have breakfast on the lake! It doesn't get much better than that.",review,4ozupHULqGyO42s3zNUzOQ,5,6,3 +zAoFrUwRVdSrvYWNB5e5Jw,2012-01-01,jF4RP3btoLN5bwsUiarfaA,1,"I love Mexican food. Today I ate half of a taco and simply had to stop; not in a good way either. The meat tasted like it had been frozen multiple times and lacked flavor. The tortilla tasted like it was store bought and made of paper. The beans were flavorless. The rice was hard and lacked any flavor. Moving to the vegetables: shredded plastic is not actually a vegtable. This is some of the worst tasting, most over priced Mexican food I had had. It would be one thing if it was reasonably priced, but $10 for taco is a absurd amount for a worst than fast-food taste. + +The margarita was good, but $10 for a margarita is a bit on the high side. + +The service was average, but I found it odd that my waitress didn't find it odd that only a bite of each item was missing and never asked how the food tasted.",review,TOlE6q1i3bNmM-PgIL3tBw,0,1,0 +pfTwzep_4hRTX_jXoi38cw,2011-06-02,OdzhxCxBxVkJjEJUDTI9oQ,1,"The food was not particularly good on our last visit there and the service was rude and not helpful at all. I even emailed them afterwards to give feedback, in hopes that they would redeem themselves by showing some good service that way. No luck. Didn't even get a response. + +They will not be getting any more of my business. Too bad because I'd actually had a decent mushroom burger there before and would have been a regular customer. But the service last time was so bad that I won't go back.",review,cxjTpWMPg7u5Bb9OPWqaFw,1,1,0 +RWkNYaST4pHM2ZrRFGFcKA,2010-07-12,ue78ILIn67tUliwpL6YG_Q,5,"I've been to this Dick's location a bunch of times and I've got to say that I've gotten more help from the employees in this one that I've ever gotten from any other location. + +I've spent some major time with the guys in the gun dept and they're always more that helpful regardless of how busy and how many people they have waiting for them. Major props to those guys for good knowledge and patience. + +Another time I was there I wanted some new shorts for softball and they didn't have and L's left but jokingly I checked the Under Armour manikin as he was wearing the same shorts, and what do ya know... L. It was near closing time and the associates were getting their stuff done so they could go home (I've worked retail and I know at closing time you just want everybody to bail so you can clean and go home). I asked a girl around the corner I was able to rob the manikin of his clothes and she laughed and had no problem taking him apart and yankin the shorts right off! I was so happy as I had a game the next day and didn't want to be running around looking for these shorts. + +Think I'm joking? lol - http://www.flickr.com/photos/ryno/4113416766/ + +Anyways - good store, always clean and everybody seems very nice and knowledgable in their area. Never had an issue there.",review,8CNEh7fSbLwDuAKhLjDPKQ,1,1,1 +c0zhbiffge6fGl_Nzgxbqw,2008-08-20,Qt0QQvOCLO35QSMS_wCNVg,5,"I found some great t-shirts for friends here, including one from a local PHX artist with a grinning skull. + +If you're a hipster or looking to buy gifts for one, then this is the place to go. + +Plus, the clerk was using a Mac (not that I would expect anything different, but bonus verisimilitude points for fitting in with your surroundings Mr. Clerk).",review,8eNEP7Yj7JwfOQPwgh4Prw,2,2,1 +a01JeGRdPYArzDgBLP9M5w,2012-05-27,0xfmWxcRNGxZtmEG_j-iwQ,3,"Hot Bagels. To a random passerby, it's like any bagel place really. To locals and Midwestern students, it's a holy temple. And to me, well it's a highly overrated bagel place. But hey, it's still delicious! Especially if you're in the mood for a bagel. + +But it's kinda pricey. I ultimately paid like $8 for a bagel with lox, cream cheese, and a bag of chips. Seriously?? I mean, yes, it was one of the best bagels I've ever had but I could've gone next door to Senor Taco and gotten a burrito for $3 less and have enough for a dry-cleaning job at the $2.25 cleaners adjacent! + +And that's what brings this place down. While bagels are delicious and it's hard to mess up bagels, it's still just a bagel. So if you're feeling like having a bagel, definitely check this place out. It's on par with or better than Einstein Bros. Just don't be overhyped by all the love the locals have for this place because in the end, you're just having a bagel. =)",review,frm67YsEcoZRU1gIqQQj2A,0,1,1 +V5QdxePG-pGPXVPHSLLM9A,2010-01-20,-dzxYCQVXDDUyiTKh1l7aQ,4,"I'm so glad I have a nice coffee shop within walking distance of my office! Though the location is a plus, the real reason I have become a regular is that they open earlier than Lux - 6 am - and have free WiFi. During a two month string of early morning test prep, the openers remembered me and asked about my progress on a daily basis. + +My favorite part about Urban Bean is that ALL of their products are compostable and they run a compost in the back. + +The only reason I didn't give five stars is because they have yet to add large tables (for two or three people to spread out books to study). Other than that - it's my fave!",review,5je-Jg8tq5BWxJtDBmTK2Q,1,1,1 +qcylQLL-fXdFHrdXC2jZFw,2011-09-03,xo1Gqd4eBeBz_acdR7yjZw,4,"I like Zuma and I don't think it warrants such a negative rating. I've been a fan of Zuma since I started school at ASU and I was only able to go for the food. I really enjoy their grilled cheese sandwich (plain, I know!) and also they have a great appetizer that is a tomato stuffed with either tuna or chicken salad. Definitely one my favorites. + +Mainly, I like zuma because the bartenders and staff are always very nice and accommodating. I never have to wait for a drink with them and very often they are pretty giving with generously poured drinks and occasionally a free shot or two for myself and my friends. They also have a fabulous ladies night on Wednesdays where they have free food and champagne for girls (yes, it's not fair boys complain complain complain but you guys get plenty of perks in other industries!). Favorite bartenders are Tommy Tau and Mike!",review,cwIZyUzEpsXzz_5VZT4LCQ,0,0,1 +mPGgxatANSPw9KbMluhXkA,2011-03-31,VlVRyPfTrtedZWTbg4KdBw,4,I had great service and the Red Curry Chicken was wonderful. I only wish the dish wad a little warmer serving temperature. The Thia iced tea was fantastic.,review,ziCKT5n58tcVfgksImx0VQ,0,0,0 +jnzROxEjNkgeo5Ju3F8qzQ,2007-11-26,iLbYXR38DgL7zItTFaoE3g,4,"We were taken here by our host in Phoenix. It's one of the prettiest Mexican restaurants I've been in, with a courtyard surrounding a duck pond (there is a sign requesting you not feed the ducks tortilla chips!). + +The margaritas were great and my chicken was excellent, as were my partner's tequila shrimp. Would definitely go back there if I were to visit Phoenix again.",review,XnoIg-UnpRjxXtuOB1Ev2A,2,1,0 +fowXs9zAM0TQhSfSkPeVuw,2011-05-02,UHZWXKbGQOTGLPxjWbWMtQ,2,"We went there for dinner in April 2011. The dishes are hit and miss, and all are over priced. My wife ordered pad thai, and it was horrible. Instead of the traditional, flavorful dish with peanut and bean sprout, this dish at Flo's is just a salty, chicken noodle. My wife and I both took a bite, we had to send it back. It was not edible. Too salty. Only chicken and rice noodle. There was no peanut, no bean sprout, no pepper, no egg, no ..... Basically, it was NOT a pad thai at all. + +On the upside, my son ordered a sweet&sour chicken, and it was better than most places. They used fresh pineapples. + +Based on food quality, ambience, and dinner prices, I say there are tons of other places that are better.",review,0pyzPI2z3KHNkPSVlB2Lqw,0,1,0 +pwV7OoVlCsQICqFsmRa-zQ,2010-11-28,1ardaspyAbC7etWK9nuOQg,3,"I'm giving the 3 stars solely for 1 reason: +The veggie sandwich! + +There's normally only 1 person waitressing/taking orders, so expect a slow turn around during breakfast & lunch time. To avoid the crowds I'd pick up a flier in the morning, call around 10 am & pre-order for pick up. If I had no time to wait to check out I would simply ask for delivery. A girls gotta eat! :)",review,BV8c4QZEzvPWA00ZqJp-jQ,0,0,0 +U7jOpLoLXYphWFqS6JO8mQ,2011-02-11,-4xDxjtMNDaKwSwkOyh_Iw,5,"Excellent wings. I realized how much I miss this place when I ate horrible chicken wings in San Jose. + +It gets crowded Tuesday and Thursday because of special deal on wings, but definetly worth it. + +They do not have any Native NewYorker in CA :(",review,tueZZgG49lLPMj1gRkM2Ag,0,0,0 +OdD1GuGNQ64ssJmMJ_D9RQ,2011-04-27,--8hpKO4bkweLyEucdxI_w,4,Great place and experience. Food and beer cocktails were great. The scene is laid back and fun. There is something for everyone here. Enjoy it for what it is a great retro bar serving old school beer you wont find anywhere else so don't be whining for the latest micro brew or looking for the Scottsdale scene here. Parking is easy in the back alley and side streets. On weekend nights I'd like to see a separate entrance if you want to go just for the food and not have to pay the cover for the band. A fun place for kids too.,review,A8KAUGlzA8gaCoe5GMMKVQ,0,0,0 +LfKPiwth-lGmCKTxlDoV9g,2012-01-13,FKyOyboICa3cty_NepBXWg,4,"We went there for a dinner today, very nice place, a little noisy for my baby thougt ;) +I had the italian wedding soup, it was very good but a little spicy. I also have a glass of wine, prosecco with passion fruit, very good... +My husband had a tagliatelle w/braised short ribs, which he said was delicious. +The service was very good as well. The patio looks great for when the weather wams up.",review,EFvoDZ_B47s7-akDMN7aQg,0,0,0 +rbiRLiFTG098z9JaK3Nshw,2009-04-12,GOdsERe2stZ34l9840VdUg,5,"The pupusas, yes, the pupusas are great. The loroco with cheese has become our favorite, But this past week, I strayed from our standard and tried the gallina soup with braised chicken and salad. All I can say is, ""What the hell? Where has this been my whole life?"" The soup is magical. Huge chunks of carrot, potato, and zucchini, with some thin noodles, and a savory broth with some mint leaves. I quickly abandoned the rest of my entree in favor of finishing the huge bowl of magic. It was the best soup I've had since coming to Phoenix 13 years ago. + +Good thing Hubby got sick this weekend- it gave me an excuse to go back and get some more. Being magical, you know it has serious healing properties. Here's where I learned that the Sopa de Gallina is chicken soup without the chicken meat and the Sopa de Pollo is the same thing but with the meat. Two huge Styrofoam cups to go with lemon wedges and 4 hot and fresh tortillas cost less than $6.00. I was stunned. The owner said it costs more with meat. Believe me, you won't miss it. Who knew that magic was so cheap? Hubby's fever is already down and he's feeling much better.",review,N-D-d1Z4UybdlkK1HxlNPA,10,11,7 +AB7uOYIMVc_TbIcYR8np2Q,2011-12-19,5YjglTYelvaG4klAAp_O3w,4,"I didn't realize that this store was very close to my home. I used to go to ""Musician's Discount on Southern and Alma School Road. However, I had went there Saturday and it was closed, so I decided to check out what other stores are around. The customer service was good, and they were also helpful regarding some questions that I had regarding electric guitars. I didn't really compare prices to other places, so I cannot honestly respond in price comparison. I had noticed that they had a lot of novelty- shaped guitars. they also seemed to have a large quantity of replacement strings for guitars. They also appear to have a large selection of sheet music. I recommend checking them out if you are looking for a music (instrument) store near Dobson and Baseline Road in Mesa, Arizona.",review,9hsjvBMXy-Wt5acctnoEUw,0,0,0 +RqmE46axGgrS9lrbge0CKA,2008-05-13,uJI_n-ubKLUC51_bZXbfOQ,2,"basically, i'm only reviewing this store because i really do not care for the employees here. there are a few nice ones, but overall, they are either cranky, stressed out, or missing. + +the redeeming points? a nice selection of crafting products. but then again, you can always just go to a DIFFERENT location. i'd opt for that.",review,jqs0xPGhZwlyijqWLEgRyg,1,1,1 +6P2DqisDHtmD4Lvs2sMP-A,2012-06-12,SPe3itl5lOyVpm-RD6i0ng,4,"I didn't stay here, but patronized their restaurant. The servers were very polite and accommodating. They frequently refilled our drinks and aimed to serve by making sure the fireplaces were working. It's a nice place to hang at if you have a reason to be here.",review,_ZJanTGDypTxfm1Ut7IqaQ,0,0,0 +yQONzVpX-DEpGSuKMIov6A,2010-04-12,R-7HmdOlIBrouioPaRiP_g,4,The food here was really good. I ordered the sesamie chicken and the sauce was very good. The service was marginal at best but it didn't annoy me. I'd go back,review,19zI6jBRV9JzKQ19M6tDiA,0,0,0 +-iJZ-PEnOw2oVUBFfg5wJw,2012-05-12,-B-DQ4e_qzSycKufq7gpAw,5,"I had a great experience. Nice people. My minnie poodle mix looked great and was happy when he came out! Total bill: $43 + tip including cut, blow dry, ears, toenails, anal glands and teeth. Located in the Goodwill parking lot. + +This is my first dog, and my first experience with a groomer. I called on a Saturday and had to make an appointment for the next Saturday, so they are busy. + +I asked the front desk guy where the price/package list was. He said they didn't really have a 'list' so I told him what I needed and I wanted to know how much it would be. He went in back and the groomer came out to take a look at him and talk to me. She quoted me $38 and I asked how much for teeth, she added on $5. They gave me a guide to determine how short I wanted him cut and asked me specifics on what type of cut (I said shave him, it's summer). they asked about ears, tail, etc. + +I brought him in at 9 and they had me pick him up at 1. I don't know a lot about grooming yet but they said depending on how he was under the blower he might need to be kennel dried. When I came back at 1 they were finishing up his head. I can imagine he might have been a tough client, given that he is still puppy-hyper and not yet accustomed to the spa treatment. He was blow dried for sure; His former curly hair was completely straight and soft. + +The shop is no frills. No pretty sign out front and no decorating inside. I think they could make more money with some product around or maybe charge more if there was a little more spa feeling when you walk in, but I will go back again for sure. + +My poodle mix is 6 months old and this was his second cut. (The first was done by a family member). My poor puppy went in looking like a mess and I didn't recognize him when he came out! He was soft, had a nice cut and smelled great, even his breath!",review,MrXo0YgpZ48G3i539jVEag,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2011-02-11,zfcpSVD1b2i2BMVa6eabUw,4,"This place isn't the best looking, but it's pretty tasty! I find myself craving the strange mix of foods they serve here. +I order the Emerald chicken burrito and the Jerk Chicken quesadillas. +The best part is if you've never been there before, they give you tons of samples and tell you all about the foods you can order. +I wish they had more locations :)",review,5jO2RMO-MYZDWTIYzr3dSA,0,0,0 +4eFIVmbeCvJGCrhzmd-VYA,2012-05-15,1r0co9DcLx54sn2EyogAog,3,Cute little coffee shop. Had some tea and sat outside with my boyfriend. Enjoyed the weather and played some cards. Very relaxing.,review,S3Mu8tTBib4KxrxGob5icQ,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2012-07-09,ltZP6rbQ3sjV7zuw7Xvrkw,4,"This place is a little more fancy than I expected....decor and atmosphere-wise...I thought it would be plain and simple like Red Lobster but actually the place has a very southern homey feeling to it.....although a seafood place they had like deer heads hanging and other sorts of weird decor. + +Came here for dinner yesterday night with my bf and his apartment-mate...we got a table right away but even for a weekday they were still half a full house. The first thing I saw on their menu was the Crispy Alligator appetizer. ALLIGATOR! ooooh but then I wanted to try their oyster appetizers cause they sound good too....ahhhhhh their menu is full of yummy choices! It was difficult deciding what I wanted to get...but after much debate....my bf and I decided to order the Oyster Duo appetizer and share the Pappadeaux Platter -- which is an amazing sample platter of all the fried variety they offer on the fried seafood section of their menu. + +So the Oysters Duo -- comes with 3 oysters on half shell baked with a parmesan romano cheese sauce and 3 oysters on half shell topped with crabmeat, spinach and drizzled with Hollandaise sauce. -- oooh they were both delicious however I recommend the later one more just cause it's very unique to this restaurant. I got to also try a few pieces of the Crispy Fried Alligator from our friend's Appetizer Trio Platter - It was pretty good actually tastes like chicken...but surprisingly more tender - I was thinking alligator meat would be tough and rough but not at all....I wouldn't have known it's alligator meat if you didn't tell me. But now I can say I have had alligator meat! + +The Pappadeaux Platter was pretty good - everything is well -- fried! However I like the blue crab cake the most, the mini fried crawfish (kind of like popcorn shrimp) is second best however I have to say that the fried Tilapia was a disappointment because it was sadly bland and really dry...it was the only thing I didn't like on the platter. but everything else was good. - - I even tried their watermelon lemonade and it was super refreshing! + +I was really excited for dessert cause I saw them carrying around a platter of sample of the desserts that they have...so when we were ready for dessert I was excited to see the dessert platter - unfortunately there was nothing on the dessert platter I wanted because they all looked really rich and sweet....such as their sweet potato pecan pie, key lime pie, praline cheesecake, praline bread pudding souffle or turtle fudge brownie was just too much even for the eyes..lol They were also massive in portions so I decided not to have any. + +The service was really good, our waitress was pretty quick and friendly. Overall I enjoyed the most of the food (except the fried tilapia) and the service is good so it earned it's four stars. :)",review,Ek_t82OUnerdlO0D-GVcxA,0,1,1 +YkFBelUWinftlweJzuiIAw,2009-09-11,QA92__P11LL4bkTUzp20vA,4,"i adore this place! cute little shop, sweet owners, delish cookies - what more could you want?!?!? + +the urban was made for me. dark chocolate, coconut, and some nuts. uhhhhhh, hello, did i just wake up in heaven? + +their ice cream sandwiches are good - but i really wish they would make them on the spot, so you could get whatever cookies you wanted - right now it's all just standard chocolate cookies. a bit toooo sweet sometimes. i also had a special chocolate mint cookie sandwich, which was pretty good, but i had some serious chocolate overdose afterwards. + +not a huuuge fan of the cupcakes; i tried the brown velvet (i think that's what they called it). doesn't taste like red velvet, even though it's supposed to. but i mean, the place IS called urban COOKIES. + +yes, they are pricey, but what organic thing isn't?",review,jqs0xPGhZwlyijqWLEgRyg,0,0,0 +ycBa5cnSa6hgdB7rb9rdiw,2011-05-04,MEaS-97GgiRXQQInLyNUvg,4,"I'm not a big drinker, but this place is pretty sweet if you are. Huge selection at excellent prices.",review,TCEqENMcnIjsBCjlI_Stzg,0,0,0 +o0Sm7tDF8wx6w9F2ZbdG2w,2011-05-07,2txTJvWEDHDzRzpJAH0qZQ,4,Back in high school I used to work in metrocenter and this place still has the best lemonade I have ever had. I have not eaten the food from here so I have no idea on the quality.,review,WZF-Vqg_g7zzPYTR-_xgQw,0,0,0 +rRe2eLIQ4MQ7d6vFL26Qdg,2012-06-30,e9xC2MLvt-8FfisFtybqzQ,5,"Why oh why can't there be one of these closer to my house?! I would take them any day over Subway. Their bread is fresh, their meat and cheese is sliced perfectly thin. This may sound strange too, but every Mr. Goodcents I've been too has the BEST soda fountain Coke. Okay...I said it. Judge me. + +I do prefer the Mr. Goodcents over in Tempe off of 48th Street, but this one is just as good.",review,vUM21g3cPEdSlI89oDttgw,0,1,0 +jSFS1OfZH0J9ePlzAdbltw,2011-11-05,PtJPJR__qfNk0piQOnfqEQ,2,"Walgreen's has the best nuts. However, they recently changed their prices and only give a cheaper, 2-for on the halves and pieces. And they upped the price (again) on the whole cashews. I will be shopping elsewhere.",review,YOZ6xwXXpxD0vxJiA6WC-A,0,0,0 +9tSHBEoAhKu-tkU8n6SKjA,2007-01-18,xTwSNNeBgzipKOaO4-Ws1w,4,"Better like it hot...these folks do not know the meaning of the word ""mild""! Plentiful, tasty Mexican fare at a good price...always a good bet.",review,BmrHQgNFdN2IaoI5_OBF7Q,0,0,0 +HMUvbAHRnbAczNrYy8e5MA,2008-10-28,FFVi7P_RLKzITbLj8jWo_w,4,Best toasted subs... EVER. I order the White Widdow and pretty much stick to that. It's awesome. The cheesy garlic bread... delish! Try it with pepper jack =) This place is a regular for us when we want a good sandwich. Hey... even my mom loves this place.,review,4JapGtmN58pZYo1ClbV8qw,0,0,0 +uPDTnuR-sOi47blHH943lg,2009-08-13,SnpxiakrKate_rH2qzcIBQ,4,"We were in Phoenix just yesterday and stopped by Roberto's for a third time. We've yet to be disappointed! My husband loves the breakfast burritos, which he gets with one of the soft sided (el pastor) tacos. Being no fool, I go straight for the el pastor chimi (solo, not the platter)! It's a good thing we don't live any closer, we'd be weekly regulars and I don't think I could swim that many laps to make up for it! On our first trip I had the chicken chimi, and could not believe how tender the meat was, absolutely delicious. Then I discovered the el pastor...au revoir chicken (as good as it was!). I don't know what kind of marinate they use, but we love the flavor and tenderness it brings to the pork. Yes it's in a gas station, but we've always found it to be clean and the food is always fresh. We arrived around 11:30 yesterday and got there just in time to beat a steady stream of regulars stopping in for lunch.",review,8SqSyWdU1det5INylsCAXw,1,1,1 +F6BedoYgbAQHqwKX9F0zDQ,2012-11-14,R2fFc6Yxsim8xk4wkNYmZA,4,"I can't believe I've never reviewed this place before. I've been here countless times before, and watched the place get upgraded and remodeled several years ago. + +I can't remember the first time I came here, but it was some time ago after I moved out here. The convention center has an older part thats smaller, and a new addition that's huge! Plenty of events are held here all year round, from sporting events like the NBA all star game, to the auto show, they had an NRA convention a couple years ago with a zillion people, along with other regular yearly events like the auto show and several others. + +The place is large, and has 3 levels (a basement area, main level and upper level) with a crosswalk to get to the other side which is pretty darn cool. It's huge, spacious, and modern looking with its updates. Escalators, stairs, etc. The place is sparsely decorated with Arizona stuff that makes it really cool looking. They also have a cool light feature outside that illuminates the walkway with different colors at night and is really pretty to look at as well. + +The cool thing about it is too is that its easily accessible via light rail, and you don't have to spend $$ on parking...and let me tell you, the parking here isn't cheap! $12 for the garage, $10 in lots around, and its not any cheaper the farther away you get. I don't know why anyone would want to park down here, since the light rail is $3.50 round trip, so save yourself a few bucks and take the rail. You'll thank me later! + +There's also food and dining in here as well, with a variety of different style resturants, but again, its outrageously expensive! They have a starbucks here too, which is their regular prices, but is like an extra $5 a person to eat here, so dine elsewhere before you come in here. (minus the coffee since Starbucks is the only reasonably priced place in here.) Plus, the convention center is a hop, skip and a jump from about a zillion other cool dining places that your better off eating at anyways, so do that instead. + +Aside from that, this place is pretty huge, and its worth checking out. Plenty of clean pretty bathrooms and tons to do in and outside of the center with variety of different sized spaces to hold any kind of event, large or small.",review,JffajLV-Dnn-eGYgdXDxFg,5,5,2 +mp9hMnOobCLNB_iR4sqm_w,2011-08-01,Xweq4Rg4yXIEtXPPGshmIQ,5,I'm a big fan of their strawberry water and if I'm looking for a better lunch than what I have at home I'll swing by and pick up a salad from here. They have a good selection- and it's constantly expanding.,review,dUDzN6zl3j12zhByOrnF9Q,0,0,0 +EfmR4e1tmjC5_ZQOgfnYrg,2012-02-29,vDDoTLBRdsi_2TF8eFQovw,1,I went there with a friend last year after reading so many good reviews. The service is good. We didn't have to wait but I didn't like the food I ordered. I had a salmon with caper butter sauce. The fish is not fresh at all and the food is too geasy for me.,review,qywVBBmOW9fbqWDi3XO8rQ,0,1,0 +k6Si433-EJrY4J7SZxsnjA,2010-07-12,18IX784TyeTGYJtAaU7rmQ,5,I think that they have the BEST pizza in town!!!! Way better than Pizzeria Bianco!!!!!,review,XrD_RUiFeKsQ63WL3l_crQ,0,0,0 +KoIRdcIfh3XWxiCeV1BDmA,2009-12-10,0IAWDXtCqzEonomVBnM4Aw,4,"So many great things to say about this place where do I begin.... + +WITH THE HOUSE MARGARITAS OF COURSE!! Hands down THE best house margarita I have EVER had. No syrups or mixes, this is straight tequila and lime juice baby, very refreshing and delicious! And for 4 bucks on a Monday evening, how can you go wrong? + +Their specials are all very good: Margarita Monday (as mentioned) with half price Apps, and Taco Tuesday with their dollar tacos and $2 tecate's...HELL YA. + +They have a great range of tacos here and all are pretty delicious. Try the nachos with Al Pastor on them too, delicioso! Their chips and salsas also kick ass. + +If youre looking for a low key place to hang out, snack, and drink then you'll enjoy this place and if you love margarita's then you'll REALLY enjoy this place",review,V9Uqt00HXwXT6mzsVCjMAw,1,1,0 +Kqn4J9NTgZdMAnV4HuYh5A,2009-05-09,xxEdqCgdMxbN61aa2tUFGQ,4,"Excellent doppio and drip coffee this morning at Press Coffee, though the naughty side of me wanted a pint of Tripel Karmeliet, Lindeman's Framboise Lambic, New Belgium Mothership Witbier, or Great Divide Pale Ale. Cafe light breakfasts were served to some patrons, and most observations I had were of little English muffin egg sandwiches with assorted toppings inside. + +Coffee is the main focus here, at least by decor and by what most people were drinking this morning, and you can't resist noticing the craft beer taps as you enter the place. + +Not terribly busy as this place hasn't fully been discovered, or really becacuse this area isn't fully developed yet. Enjoy it while you can.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +_Q9IEf-8XbQR2eutFVhh1w,2012-06-19,CgaejRI-yB2KFwTLwmqCnA,3,"Yelper Jane B's review is remarkably similar to what I intended to include in my review. + +We've stayed at close to a dozen different Homewood Suites over the years and this one left us wishing we could have stayed at any of the others instead. + +Furnishings were adequate but not terribly comfortable. The living room had a sleeper sofa and a side chair, a dining table with two chairs, an end table, a coffee table, and a TV stand with 3 drawers plus the kitchenette, all in a room roughly 9' x 14'. + +The bedroom contained a desk with 3 drawers (serving also as the dresser) and the bed and nightstands. The desk also served as the TV stand, allowing a small work area and taking up so much room the door couldn't swing all the way open. + +Our bedroom also contained the mystery deadbolted closet with unknown contents, which took up half the guest closet space. + +The bathroom was large but dingy and dimly lit. + +I considered renting an on-demand movie one evening, but everything offered by the hotel was $15+/each (!!) and since there wasn't a DVD player we didn't have the opportunity to rent somewhere more reasonable and bring it back to our room. Free wifi seemed stable although a bit slow, and the pool was small but the kids didn't seem to mind. + +The staff were very friendly and helpful, and the breakfast was well-prepared and always had enough variety to keep the kids and adults happy. + +We got a great rate but hey, it's Scottsdale in the summer so most rates are pretty darn good. Normally we enjoy staying away from home, but after 6 nights here even the kids were anxious to get home. + +We'll stay at Homewood Suites again in the future, but not this one.",review,I4bhsf1KE0ziCghYuyyLhQ,0,1,0 +IMGW6y8wHQCfr_6k-YXg_A,2011-04-08,nJOzLKUSwAf8nwHF1ll5mQ,5,"What can I say, this place has it all. Great service, a hugh variety of food to choose from. + +I really like their pesto chicken grilled pizza, but I could go on forever with all my favorites. Check out there craft beers too. + +Simply delicious.",review,bd17-disjLNGxvnxdatsaw,0,0,0 +_HTE4pOKeJC7kcxiCF9vTA,2010-11-13,ai-ZpBEuYJo76WGXrMo3ZQ,4,"I really dig this place! But I have to say, every 3rd or 4th visit to this restraunt is a miss. Not sure why- but it is most of the time spot on. I love the Pho- but the noodle dishes are what is off. + +Either way, the owners are super sweet and nice and it usually is never too busy. Service is good, carry out is great as well. Just be careful in the noodle dish category, becuase if your really hungry, (in my experience) it may miss the mark. Order pho to be safe!",review,KydTpdUtq6o-u3JLjZFrDQ,0,1,0 +mQfT3JYu18HN22DVylcE7A,2011-12-18,0z51aynkyDSQX-cPHhJxBQ,5,"Killer sandwiches and dill potato salad that set my world on end. + +I wish I had known of Bertha's while I was in town for a long period of time because I would have eaten here everyday. + +I went for the blue cheese roast beef sandwich which was a magical meal. Lightly toasted bread, slightly sweet mustard mayo, fresh veggies and the most beautiful sliced roast beef I have seen in a long time, this sandwich was nothing short of awesome, damn it was good. + +As a side I got the dill potato salad, this stuff is NOT your grandmothers potato salad, this is what your grandmother should have been giving you. Holy wow, creamy dill potato greatness. I am going to have to figure out how to get this out to me in LA. + +The deserts looked great and the little chocolate brownie cookie gave me an idea of how good the other offerings most likely are. + +Bertha's is awesome, fresh sando's, salads, wraps and potato salad that will redefine the potato. Bertha's please open a location in LA, I will keep you afloat!",review,-jgGsPzZ4W2TyGh7KOwl9Q,0,0,0 +winRNt7prallDbpaDMS9Ig,2011-05-13,S_ir6uvPKx4vd7wcLO8eKw,5,"Truly the best pizza I've had so far in AZ. Reminded me of NY pizza, thin crust... and crusty! I could eat this crust alone it's so good!.. +In fact I did!!! Ate it with a little olive oil and it was yuyuyummy! Also had the antipasti, so glad they actually give you REAL antipasti and not a mesh of crazy salad... you have to try this place if you haven't already. My husband and I got a small pizza and had enough to take home for leftovers... and we are BIG eaters! RICO!!!",review,1qw1NflQJvb0WhKn-_hwDQ,0,0,0 +AAkqVCuUGIP0gvY42_CRYA,2012-04-25,HIH-5V8S6lBwfroMSmE6uw,1,"Hot fudge Sunday was watered down so much. You would do much better by going to mcdonalds. This isn't the first time. I should quit giving this place chances. I'm disappointed every time. I once asked for hot fudge on the bottom of my sundae and was charged $2.60 more. The staff is rarely friendly. They should consider being friendly since it IS Dairy Queen, a place that takes many of us back to our childhoods. The array of desserts are so wonderful why not serve them wonderfully and with a smile, and not like you hate your job and just want to go home?",review,8ZHvgisJp6Eng07f7LY_-A,0,1,0 +mxrXVZWc6PWk81gvOVNOUw,2009-09-20,4rPHbuypxzE1QqX3D27kew,5,"This is a fancy fine dining restaurant with a casual feel. The food is definitely under priced. For most of the summer, drinks are cheap and food is half off for the all day happy hour to entice the locals. During the winter, you can't get into this place. It is packed, so reservation is recommend. The food is described as American Southwest. The best three choices to have for the first visit. Is the Famous ""BIG_ASS"" Burger, Green Chile Pork Stew, & Lamb Fondue. These choices will hit the spot and hit the wallet for 10 bucks with tip a person.",review,WQX1Hio90vjGkASKM0v5kA,0,1,0 +3l72FflaaeI0tWEAWN3-gQ,2009-01-07,EkwpfZu6HOXP_IitAZL4Rg,4,"Found this today while cruising down 7th on my way to Roosevelt Row for some belated Christmas shopping. Very cute interior. I got the Torta, which was huge and extremely tasty with moist, seasoned asada, guac, veggies, and jalapenos on a soft buttery bread. Mmm!",review,HvaVgP0S0dFaCbBDIQIkag,0,0,0 +viCUW2-IjjLLNcxyXbgExA,2011-02-24,i--SA1pUVsg9093X0RQsaA,4,Just the basics. Nothing fancy here but you can get a pedicure with hot stone massage for $18!,review,bkRfY8jHdFxf7k8vLX4buA,0,0,0 +u-nMW__EKMYH_PVqacYc3Q,2012-09-17,KiMfNA05aF5x_Zq2iu4H_A,4,"I have to admit: I am impressed. + +I have been to a few vegan-only-menu restaurants and I was... underwhelmed. Nothing against the raw food movement, but unless it is a raw-specific place, I expect more creativity. Show me what food can do, be, taste like. Don't just cut it up and toss it on a plate. + +Four of us came in to eat on a Saturday and the place was PACKED. A good sign, surely, AND it was a really great mix of demographics: young and old, many nationalities, singles, couples, families... we liked that it had a wide appeal. + +The place smelled fantastic, too, so we started perusing the menu long before we had a table to sit at. We waited about ten minutes for a table. It's a bit like a cafeteria in that you order and pay at the counter, and the food is brought to your table. + +While we waited we were given a bowl of the ""house soup"" which, basically, was warm carrot water with a piece of carrot or two and some tiny, tiny mushrooms. We all agreed that it needed more of a broth flavor (more types of veg? more mushrooms?), but it was tasty enough and definitely whet our appetites for more. + +The spring rolls were really good but needed more. As we removed the peanuts for my friend, I ""blame"" this on us... I will have to have them with the peanuts next time. + +The crispy rolls were spiced and savory and light and perfectly crispy. + +My favorite had to be the Pate Chaude. Flaky, savory with a bite from a wonderful combination of spices, and a meatiness from the mushrooms that made us think a die-hard carnivore in our lives may not miss the meat if he were to eat it. THE dish of the day, hands down. + +The curries were a bit bland (Save-Planet and Divine Curry Noodles). They were fine, OK, but nothing that made us think we'd come just for that. Much better elsewhere. + +The Gracious Spicy Noodle soup was really tasty but it needed a tad more spice. With spicy in the name, we expected more. + +Some stuff is pretty basic: the sushi rolls are basic veggie sushi rolls. The rainbow salad is a tasty but commonplace cabbage and carrot slaw. The fried rice was fried rice. All yummy, all fine to eat, but nothing spectacular, different, or altogether exciting. Basic isn't bad. + +Four stars for the surprising and amazing pate chaude and the rolls, for sure. Ideally, 3.5 stars this trip, but I rounded up for the good parts. + +Couldn't go five stars for two reasons: too many items were just basic and the service is slooooooooow. 20+ minutes for fried rice (that we had to ask about)? 25+ minutes for some soup? It was a crap shoot as to what was going to be delivered and when. While they were swamped when we came in, the crowd was thinning out for their afternoon down time (they close from 3p-5p). Overall, our lunch took over 2 hours, most of it waiting on dishes to come out. No bueno if you have other plans that day. + +So... tasty, some major standouts, some ""meh, I've had this before."" We *WILL* absolutely go back to give the menu more of a chance to wow us; the ones that knocked us off our feet are worth the return. (Hopefully it's delivered a little faster this time!).",review,imb8zI2mPdiXSXeRuVntag,1,3,1 +4CsZK1YOP8lCLH9ZSf0LMA,2008-07-09,LLqoetmzmYnGlQyAFY5o0Q,3,"My boyfriend and I were searching for a dive near our house in Old Town for when we just aren't feeling the typical Scottsdale vibe. I gotta tell you, I think we found it. + +We walked in around 7 on a Thursday night, just looking to have a few drinks and some time to talk. I immediately realized this was not an Old Town bar. I think I might have been the youngest person there and no one was pretentious at all. They have a dart board and pool table, and seating with walled mirrors all around. The patio was extremely well-misted, which was great since it was the day before 4th of July and everyone was pretty much sweltering. Drinks were stiff and not too expensive and the crowd grew younger as the night went on. I didn't meet tons of people, but the ones iI did either seemed drunk, super nice or both - not a bad combination. + +I would go back again, just not every night (what do you think I am, an alcoholic?) + +Also - for those of you with bladders of steel and small wallets, I saw a sign that says they do bladder buster deals on Tuesday night. Small cover and incredibly cheap drinks until someone ""breaks the seal"". I would suck at this, but I'm sure many a person has taken advantage of this interesting drink special.",review,bfuVbKov5Uwcha6-l4ikFg,4,2,2 +wn7GiuOQ_0VrPXNc1wVTDA,2010-06-19,0PJikehxBTmvgOve7sd8EQ,4,"Inspired by recent Talk, this rating simply must be updated. + +Fatburger has a QUALITY-quality that places it in a wierd limbo between other fast food burgers and places like Fuddruckers. + +If you are a fan of the king, either of the two clowns, or the red haired girl, then Fatburger is likely to feel too expensive and that it takes too long. + +However, 'you get what you pay for' and 'good things are worth waiting for'. + +Freshness, a multitude of assembly choices, and overall quality are big standouts at Fatburger. The employees at this location have always been friendly and courteous. + +Tuesdays: buy a combo, get another burger free!",review,n_lAaNGeWgspbbCJc0DqRg,6,8,4 +9ocGgALmbzTZWOS7f7SYcA,2012-11-22,FBF-a69Xuc978-_NJlCaPQ,2,"Got together with Mike C. to go out to a Thanksgiving Buffet today. We tried for Golden Corral down the street in Gilbert but the line was way outside, so we came up here where there was also a wait, but shorter. It was good, as always, but there were some negatives this time: + +* The soups: There was an ordinary Corn Chowder, a weak Cream of Broccoli, & ordinary Chicken Noodle. They should have done better than this for Thanksgiving. + +* There was no cottage cheese. (They don't always have it, but at these prices they should have some today.) + +* There was turkey, but breast meat only & no dressing! + +* Over at the dessert bar there was no hot fudge (& it looked not as if it had run out, but rather that they just didn't offer any today). + +* There were no sundae cups. I had to go over & get a soup bowl to make a sundae. + +* There was Hot Lava Cake (or ""Hot Fudge Cake"" I think they call it here), but it was sorely lacking in lava! + +Thus, it's down to 2 Stars for this restaurant that wasn't as good as it should have been for the money. + +Thanksgiving Buffet $12.99/$12.49 Sr.",review,ikm0UCahtK34LbLCEw4YTw,3,6,4 +_bsTEMjThKNd8CfiHBX6wg,2012-03-28,l3Cbrt6pUKMaEkbMtRJTpQ,5,"Simply put this place is AWESOME. If you're looking to start a business or already own a business but need some of the details on a particular area, this is the place to be. So far I've only attended a Brown bag lunch but I was thoroughly impressed by the people who were there. However, don't show up with out being ready to put in your two cents, its needed to keep the ball going, I thought it was really good. I can't wait to go back!",review,TTjO2JhQnEs44Mxp2WnDcw,0,1,0 +S3ccQHpkBQTBBfRB-Q4adg,2010-10-23,Iy4maDGK47zC3vkI6qNAEA,5,"I love Jimmy Johns. It is WAY better than Subway. The bread is what makes it. They bake their own bread right in the store and then right before they make your sandwich, they pluck out the middle of the bread to fill your sandwich with goodness. + +You choose your sandwiches by number, but you can customize any sandwich. I usually get the #4 which is a Tom Turkey. It has turkey, lettuce, tomato, lettuce and sprouts on it. I like their chips too. They call them Jimmy Chips. They are the kettle cooked type. I personally do not think this is your ordinary sandwich. The combination of bread and ingredients makes it a great sandwich and they are fast to prepare.",review,gHBS1sZU1wCrKEk-gHGR0w,1,2,1 +xdwPHc25l7_roZ9Kfea13w,2008-04-05,II7eMeFtPg9l_FMLQFLiwQ,2,"I finally got the chance to visit Lola on my way home from a poetry reading at the Phoenix Art Museum Last night..(Side note: If you get the chance to see Aaron Johnson read, do so.) + +I somehow feel the need to appologize for the lack of stars to all of you who seem to love this place. I would certainly be willing to give it another try but I was not impressed. + +First the music is loud, and therefore everyone talking in the place turns up the volume and as my girlfriend and I were seated across from each other at the communal table we could barely reach to share the food let alone hear each other. + +Why are the tables so big if the food is so small? Maybe I am a bit of a glutton, but for 8 dollars I essentially ate a mushroom for dinner...Don't get me wrong it was tasty, and I understand Tapas are appetizers, but 8 dollars? I was disapointed. I used to go to Firefly in Vegas and it was cheaper and tastier. + +We just wanted to try this place and move on someplace quieter, but I was really looking forward to it...We decided not to have drinks and simply share one thing so we could get to said quieter place before it got too late...I think because we ordered so little, the waitress considered us a waste as far as her tips were concerned and therefore seemed not so friendly...and those little bitty glasses of water they bring...I drank immediately and it was never refilled. + +I was overall not impressed by anything except a patron's sweet ass Salvador Dali Mustache. I can see the charm there and I probably will give it another shot but based on this trip 2 stars is fairer than fair.",review,6WrOT1dj6sigl_voiwQ7HA,1,3,2 +UeN-rChyVqfCq9jcNyY-5w,2012-08-14,3QNdbw4o69fTeW0wmRborQ,2,"Spoke with the office manger she confronted me on the Yelp review. I told her the truth I shouldnt of been schdled to see the general dentist there when the Oral surgeon wouldnt be in until Oct! and they knew that befre I came in on 8-10, I should of been called befre 8-10 so I can switch offices before coming in and wasting everyones time. I hope they keep their end of the bargin since I was told 3x I will not be charged for x-rays that I dont get a bill and actually get chrged. Im happy she told me that she will take it to her higher ups to work out their issues with scheduling as it will probably help them. But my experience so far was a waste of mine time and I feel the only way they will change is if they get reviews that really work on it. The office wasnt busy when I went..whats keeping people out??",review,NlRHV4mdiBQRsFMf6XAKxw,0,0,0 +YnWb8fRudnNkXc-VjrmKGg,2011-05-07,MCLciGKar2fhb3L2oEdMYA,4,"Surprise! A Vietnamese restaurant in Surprise. I ordered bun noodles with beef/lemongrass to go. I waited at the bar, and the service was great. The owner sat next to me and had a plate of spring rolls. I made a comment on how tasty they looked, and he asked if I wanted one. I think that's when I knew I loved this place. Anyhow, I got home and tasted my food. Awesome. The noodles were cooked perfectly (not soggy), and there were plenty of veggies and meat. The nuoc mam had a lot of flavor as well. (You can have really good food, but if you have crappy nuoc mam, your food won't taste right.) I think I'm gonna have to start ordering to-go weekly.",review,UhgUFf0U0If5KTpcRyF5Zg,0,2,0 +bv0eTmpT08aW7A2mHItK0Q,2012-05-10,_Isv_I1fux-qnFHMEAXd5w,5,"I had my brows done one month ago. Heather did an amazing job! I went back after 2 weeks for a ""no charge"" touch up. I haven't worn brow powder or pencil since, and most importantly my brows look TOTALLY natural. I give her 5 stars and would strongly recommend her. As a matter of fact I am going to go back and have my lips done!",review,Vwek1Fpg2IP29Lm7a8ZH4Q,0,1,0 +T4ox3wUzFjWvyrjaTRoBbA,2011-04-09,JaFoQeqtUy-nP4xNvqDyqQ,4,"Chunky Spicy Tuna Roll-5 stars + +I can tell you after living in Japan for five years that Sushi Ken is right up there with all my favorite sushi restaurants in Japan. Sushi ken is comparable to all the cozy ""mom and pop"" shops in Japan, who I consider to all be 4 and 5 star ratings. + + I've visited Sushi Ken numerous times, usually on Friday or Saturday nights and it's often busy, but if your patient enough to wait a few minutes or so; then you'll be glad you did, because the culinary experience you're about to encounter is out of this world. + +One particular item on the menu that fits my ""out of this world"" category is the ""chunky spicy tuna roll."" This is by far my most favorite roll in all of Phoenix. I've had spicy tuna roll at Sakana, Ra, Kona Grill, sakitini, Ichi Ban, Kabuki...I could go on and on, but no one else's spicy tuna roll even comes close to Sushi Ken's chunky spicy tuna roll. So if you don't want to go on and on and just want to find a great place for spicy tuna roll with: + +- Generous 8 piece portions + -Fresh tuna + -Soft rice + -Sushi Ken's own hot spice + -Tasty seaweed + -Masago (smelt row) + -Extra wasabi and ginger on the side + -Reasonable and affordable cost of $8.75 + +- then look no further, because Sushi Ken will provide you with all those criteria's. + Aside from Sushi Ken having great chunky spicy tuna roll, they also have friendly staff, nice atmosphere and many sushi and non-sushi items on the menu to choose from for those who are not into sushi, and all at an affordable price that won't break your wallet. Oh yeah, you'll also get complimentary miso soup and edamame. You can't beat that!",review,fytQ4lPYbvzbzy6M4TIQ-g,0,0,0 +puy0PzIcCgR3KWJI7llBFQ,2011-01-04,00TNDaDbTO7AXGCH-GhyDA,4,"We just go there for lunch and its always very good. I got a burger and a stella. Both hit the spot. Our bartender was spot on. Only complaint, please clean that crap up off the floor come on.",review,u2AxnSU7WsyBYCAtm_SYoQ,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-01-09,dmTDQIZeldEYn2iXf5oVsw,5,"I'm not one for hyperbole, but this may have been + +THE BEST MEAL OF MY LIFE!!!! + +I'd like to hold an awards show and give out lifetime achievement trophies to the following individuals: + +1. To the chef, who exceeded my expectations again and again. The Stetson salad, wild boar meatballs, and Korean-style BBQ short ribs (and that killer side of au-gratin brussel sprouts) and you, sir, have won my heart and my stomach. I want to fill a swimming pool with that BBQ sauce! + +2. To our server, Richard. Your genuine excitement for the food was a nice change from past servers reluctant to give a real recommendation. You were cordial and professional and made sure we enjoyed our time with you. I don't know, I may name my unborn child after you in tribute. + +3. To the pastry chef, Country. Your bread pudding was exceptional, but what a surprise, your ice creams were downright dreamy! The scoop of brown butter ice cream took my tastebuds on a field trip through chilled fields of chocolate truffles. + +Thank you thank you for a wonderful birthday dinner!",review,0pQp6mIGvVNykNflKuTIOg,1,2,2 +VVeogjZya58oiTxK7qUjAQ,2010-10-14,CNayVM6xYyI_yfUHjFBtxg,4,"Arrived at 4:30 and staked out our place in line for the 5pm opening. There were quite a few people ahead of us so it was clear we would be in the second round of people. Placed our name on the list and went next door for wine and apps. The goat cheese crostini was excellent. The wait staff was pleasant and kept us updated on the wait. After an hour fifteen we were seat. Waiter was extremely pleasant. + +We started with the antipasto (wood roasted vegetables, Sopressata, Bite of Cheese) and then ordered 4 pizzas + +Margherita - Tomato Sauce, Fresh Mozzarella, Basil topped with cremini mushrooms, +ROSA - Red Onion, Parmigiano Reggiano, Rosemary, AZ Pistachios +WISEGUY - Wood Roasted Onion, House Smoked Mozzarella, Fennel Sausage and salami +BIANCOVERDE - Fresh Mozzarella, Parmigiano Reggiano, Ricotta, Arugula and added Prosciutto di Parma (favorite) + +Service was great and the pizza well worth the wait",review,zBIBqj-pU3zaqTAdGou4pA,1,3,0 +Cv4kZH9zN0wpN2Drn0qkLg,2010-06-11,cX91vKrqbG5fbrF53KYzUg,5,"This Chipotle Rocks! +Today, I express my joy +In the haiku form! + +Perfect fast food joint; +Fresh, delicious, quick and kind. +The price is right, too! + +Burritos galore; +In a tortilla or bowl. +But wait, there is more! + +Three steak tacos, please! +Or grilled veggie fajitas? +Oh sweet perfection. + +A simple menu, +Yet so many decisions. +How can you go wrong? + +Answer: You cannot! +Order now, you won't regret, +This Chipotle Rocks!",review,AirVzN1BVQBmq5zY0YMNYQ,2,1,3 +cp39VURFby4A6u9m2It8jg,2010-08-27,cOBhsuS2f3IzwVDCMekA9A,5,"Last time I went to Zinburger I was wearing a black dress, and the hostess switched out the white napkin with a black one.... real classy.",review,itWDC1MoquLplv0uIn36xQ,0,0,0 +R1kKjAO5kZO6d0gQGqrvGA,2012-01-06,8peOlnFg5qaNqptoryHPhg,4,"Really great burgers...I would hope so with a name like Smashburger. This location is really good, so it gets busy at lunch time. Waiting is a bit of a pain, but it's typically not too long. The food takes a few minutes too, which is a positive in my book. The food here feels a lot fresher and better than fast food, though if you've seen their burgers, it's not a place that's super healthy. + +They also offer chicken sandwiches (crispy or grilled), and salads, so there are some healthier options, but the winners here are the burgers and fries. Definitely try the smash fries. Tossed in olive oil, garlic and rosemary, they are delicious. Burgers are really good and juicy, and the ingredients they use seem fresh. + +Cons are the long lines, and it's also not a place where you'll be in and out in 15 minutes. It's also not inexpensive. A burger, fries and a drink will run you $10-11, which seems high for ""fast food"", though I think it's worth it. What's nice though, is that you sit down with your number and they bring you your food, and they'll bus your table, so it feels like a combo of fast and full service...I suppose this is a perfect example of ""fast casual"". + +It's pretty close to my office, so I'll be back often. Definitely worth a try if you're in the area and craving a burger.",review,LdhwY7eudLlx1KFQQe9GwA,0,0,0 +XJv7dUb5fMRaZAWVZjhtvw,2011-12-18,Wy0CZN_PB2OFzkcXQxpjOw,5,"my son loves the splash pad! His dad or uncles stay with him at the playground while I can run in the store or two that I need to! There are quite a few empty retail spots, hopefully they can get some new stores in there as well,",review,CYKz4de61gfOfZEB7MbaDg,0,0,0 +KzZ5Zww9W0IBWm5S2loUmQ,2012-06-27,vuF1T2bgyQ4WUpVLEXxURQ,5,"We are picky about food because we try to eat healthy. Owner and server were very accommodating and courteous. They took time to understand what we want and delivered on it. One gripe, we had difficulty finding it because neon sign was not working. We had a great experience.",review,Q77PB7dBeVgRB7TshYFEOQ,0,0,0 +g6ygZTK9TTI3CsSTKUkPlw,2012-10-26,mycm5MKgpcIxeHMd9Y6y5g,3,"I have never actually been to a pawn shop for any reason. I can't honestly even tell you what they are used for. I have never seen Pawn Stars. I don't watch television. + +I really enjoy this signage. On an almost daily basis. Savy, that is all it is. Love of a little morning chuckle.",review,k2u1F6spBGhgk2JtAe97QA,2,2,4 +PEHJjxdw11TGFma9Zhz3ng,2008-02-18,KsuDoDgA-jGWVqLPOuLqow,4,"This review is for the take-out window at the original Red Devil restaurant. I grew up in this neighborhood and have come here since I was a wee lass. I remember begging my mom to get out of the car so I could stand in front of the pick-up window and ""help"" her carry the pizza to the car. + +I still come here because the pizza is amazing, they always have a large cheese & wings combo on special, they make their own super-chunkily-creamy-delicious bleu cheese dressing and the guys who work at the pick-up window are super-sweet (even when it's blazing hot outside, and inside, near the ovens). Sure, you have to remember a random number they give you at a moment where you'll never be able to find a pen or something to write with in order to pick up your order (like Carolina's), but it's still my favorite pizza complete with a chewy, delicious crust. Enjoy.",review,OYpsdMcpdCdlkknpgpFMLA,3,3,0 +ntN85eu27C04nwyPa8IHtw,2009-07-06,4-YEkM3zfYdw4V2gGQvsuw,2,"Had great expectations after highly recommended by others. The breakfast was good, nothing extraordinary though. The service was a disappointment, server was very forgetful and put off by some simple requests. It doesn't look like they need my business though, considering the line to get in. I probably wont be back.",review,ZsqSDOeYGb-DinY6x3-YgQ,1,1,1 +cjjZt2oOkk0F152RkQMfQw,2008-09-07,JL-jE0hQDeJNJKxhAc45-w,5,"I love this place! This was the 4th and final stop on our search for a great dive bar in Old Town. Coach House was just was the doctor ordered, that is if the doctor had ordered you to find a great dive bar. I'm still trying to find a doctor who will do that. + +Anyway, from the minute we walked up to the guy checking ID's it was a great experience. Everyone was friendly and chill. People actually talked to you and were having a good time. It was a great mix of people. + +We played pinball with some guy we met who I renamed the Pinball Wizard. I also found out that I am not as good at pinball after I have been drinking. Apparently if affects your hand eye coordination or something like that. Who knew? ;) + +We also had fun hanging out with some other dudes we met there, and my drinks were $4.25. What more could I ask for? Great bar, great night!",review,AdEy5KAIlMAy8xHyuMQCFg,9,7,5 +kgPjOtSeMd3CMdbnEmHbeQ,2012-07-12,gsLSHj2Pk-TA8Sajx6-0LA,5,"This is one of my absolute favorite bars in Old Town. It is casual with really good food but plays loud top 40 music with great drinks. What more could you ask for? + +Service is great and the bathrooms are clean. The restaurant has outdoor seating which is great for people watching and right in the heart of Old Town nightlife. + +You're within walking distance to The Mint, Dollhouse, Smashboxx, and the Pussycat Lounge. + +If I didn't live a $40 cab ride away (one-way) I'd come here way more often. + +Lots of huge flat panel tvs and plenty of seating. It gets packed on weekends but the place is pretty big so it never feels overwhelmingly crowded. + +This is not a good place to dance. There is actually no dance floor. But maybe that won't stop you or I after a few drinks...",review,cSAACR699NuLMqBPuKL8nw,0,2,0 +dYZ9YiA1JYlFoul-yorXSQ,2012-10-28,9YvG5bptgQSSeNVScubVBg,5,"Have you not tried Which Wich yet? Do it. + +Buffalo chicken= hands down, my favorite sandwich ever in the world. I can't wait to get pregnant so I have an excuse to eat them every day. + +I used to go to one in CO all the time and I really remembered loving it- when I found out one had opened by my work, it secured a regular spot on my lunch-break rotation until I realized maybe I shouldn't be eating sandwiches all week. I now prefer to hit up the AJ's next door for cheap tea and salad bar (healthier, obviously) but sometimes I wind up in the parking lot of AJ's only to instead go over to Which Wich... it's seriously delicious stuff. My husband love the Thanksgiving Turkey feast sandwich (probably has a cooler name than that) and my backup fave is the chicken pesto (be sure to add bacon.) Always- and I do mean ALWAYS- get your sandwich toasted. + +Trust me. I'm a fattie who loves her some good sandwiches.",review,YVoYGVIlQpsxmiAFBiltgA,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2011-03-16,Jwbgi9rMa_Em51nFRA-fDQ,4,"This little place is great, the service, the tacos, the guac, and the prices!",review,0G-j4rIHYRDV8gFWN2L8yw,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2011-06-30,mcQH6CoUTCxPuEDI5LAVOQ,5,"My gf and I just tried the Oggie bc we werent super hungry. Even with that, the food was super yummy. I wonder what would happen to us if we are actually starving. the sauce that came with the Oggie was excellent too, so I suggested that you shouldnt eat the pasty without the sauce. The decoration in the store is quite unique: church pews and wall and table deocrations. It's a must go if you are around the area.",review,rOpHWQXgXSnAT99-QE0QoA,0,0,0 +MfCS8VeJzf9QbxNImekuMA,2010-12-04,lGQ5ORiIki-g1C3FmONEyA,2,"Ordered a large cheese pizza. The crust was ok, not very flavorful. The pie had a pool of grease covering it. This pizza had a bland sauce and very little of it. It just seemed that minimal effort went into the pizza. This pizza is not worth a second visit.",review,iLn6mJUqvJka3NxGesRWrw,0,1,0 +3x3tJ8lGU1Y4wLqfHtqU1A,2006-02-02,BYkgux5hbgTINCVWAvo6-Q,5,"I've searched the world for the perfect pepperoni pizza. I've searched it over and over again. Damn it man! I've wasted my life searching and searching to the farthest corners of the earth to find that saucy cheesy meaty delite! Only to find that my favorite pepperoni pizza will always be Barro's, a restaurant just around the corner from where I grew up. + + + +I loathe you, you tasty cheesy bastards...oh, and can I have a large pepperoni to go?",review,0pQp6mIGvVNykNflKuTIOg,1,2,0 +mxrXVZWc6PWk81gvOVNOUw,2010-03-19,VhzdYHz3SWs-jjGnWQLYmQ,4,"Though a couple of hiccups could've ruined the night, Roaring Fork took great care of my boyfriend and me and the food was delicious to boot (ha, boot. Get it? cuz it's western? Never mind). + +We were surprised at how busy they were on a Tuesday night, but we were able to snag a table on their beautiful covered patio. The atmosphere was nice, and i was surprised at the range of patrons (a family of 5 with 3 fairly young children at one table, and a 10-top of blue hairs right next to us). Our server Charlie was very nice and helpful when it came to selections (from wine to food). We are trying out places in prep for a family visit, so we want to make sure we get a good sapling of the menu. + +We ordered a bottle of sauv blanc, and though the wine was delicious, it took about the half the meal for Charlie to bring out the marble chiller. Thankfully the wine started out pretty cold, so no harm no foul. I orderd a bowl of tortilla soup (one of my faves) and I was impressed witht he presentation and taste. The bring the bowl with the chicken and tortilla strips out then pour the broth from a pot right at your table. Helps keep the tortilla strips crisp and was a great presentation. The soup was delicious, though a little creamier than i normally like my tortilla soup. We also ordered the seared ahi with guac and THAT was amazing. The pepitas crackers were delicious and interesting and the ahi was perfect. Great app for sure. Plus, the bread and butter were super delicious too. Garlic biscuits, mini corn bread and pepper butter? so good! + +For entrees the boyfriend ordered the bacon wrapped pork loin over grits and I ordered the signature Dr. Pepper BBQ Baby Back Ribs. We subbed fries for asparagus and green beans and ordered an extra side of their green chile mac and cheese. I know, a lot of food, but we planned on taking most of it home. Here's where it got interesting. Or should I say, boring. + +So far everything (except the chiller) had been delivered timely and was tasty. But when we realized we'd been waiting 30 mintues or so for our entrees to come (after they'd taken away our apps), it started to get a little annoying. After about 40-45 mintues, the manager came over and leet us know our tray of food had been dropped and had to be re-made. No problem! I understand accidents happen. But i think it would've done a lot to smooth us over if they'd told us right away the spill had happened rather than waiting until we were about eat the burger off the table next to us. RF did recognize the inconvenience though and completely took care of us when the bill came. So props to them for that, and we didn't even complain or ask for any special treatment. + +When the food finally arrived, the ribs were OUTSTANDING. the sauce was perfect, not to sweet, not to flat. And the meat was literally falling off the bone. The veggies were all good, but the really show-stopper was the mac and cheese. The crumble top was delicious and the cheese was melted and runny but not stringy or clumpy. Spicy from the green chiles but perfectly reasonable. I want another kettle of them right now. So good. The boyfriends dinner was also good, but i think my ribs and the mac and cheese were really the best part. + +We boxed everything up and ordered the huckleberry bread pudding to go. I was disappointed they no longer do the pineapple upside down cake, which so many yelpers have recommended, but I loved the bread pudding as a substitute. the buttery sauce didn't reheat very well at home, but it was still very very good and the ice cream was a perfect complement. I would totally order it again. Like a muffin fresh from the oven, still a little gooey. + +Overall, i loved the food and the staff was really apologetic bout the ""incident"". The atmosphere is great and i would definitely come back. Next time, the burger!",review,rBeuXzsBkGxM5pJujH2zAQ,1,1,1 +WS1z1OAR0tRl4FsjdTGUFQ,2010-11-17,6JaGFDykeSauJCt6yqGF1w,4,"I am a big fan of both the Vig and the Uptown Vig, but I like the Uptown Vig only because there is never any wait for a table. Though I am sure the Uptown would prefer some wait because that would mean more people, more money, etc. + +Back to the Uptown: great trendy layout with a sweet indoor patio that gives the illusion of being outside without the sweltering heat or desert night cold. The menu is eclectic drawing inspiration from Thai, Indian, American and Mexican cuisines. My favorite are the Nachos. They are ginormous and packed with every ingredient you might ever want topping chips. The sweet potato fries are also delightful. + +They have a few specials, which elude me now, but I remember one involves 20 bucks for wine and an appetizer. Also they have Hoegaarden on tap which is a plus.",review,-OMlS6yWkYjVldNhC31wYg,0,0,0 +HExayA3clxiQZgikqvwnYw,2011-06-16,JdtXgbAoR7oTP0kV0hwl0g,4,"I've been frequenting the Dollar store for the past three weeks while shopping for a work project. I have bought just about every pair of safety scissors in Phoenix, playdough, and other small manipulatives for elementary reading and math kids. + +Anytime I need cleaning supplies for home I head straight to this Dollar Tree Store. They have the BEST carpet cleaner called LA's Totally Awesome Carpet Spot and Stain Remover. It really works!! + +The Dollar Tree is a great place to stock up on cheap party decorations. + +Shopping at the Dollar Tree is kinda like buying a Saturn. You know the price before you walk in and how much you're going to spend before you check out. I love that!",review,Q6FaSZpCtVv7PXECwDL1bg,1,3,0 +qrapwnls-3IMg-iaXhkQKw,2012-08-11,XWOOc_NUV6yOPFscg8Z3ew,3,"We didnt feel like going out and decided to order in. Compared to most delivery restaurants of this style, we were happy not to get a salt bomb for a meal. Only quibbles were ordering two larges and only getting one rice and their online menu not being accurate with regards to pricing. Good flavor on the Kung pao.",review,12jcAThukkGZ70Veli_FRQ,0,2,0 +sgBl3UDEcNYKwuUb92CYdA,2008-06-22,sLpq80yupnXeJI0L4VjrNA,3,"I made it to China King at 2:40 pm on a Sunday and I called ahead expressing a desire to have a late Dim Sum lunch. However, once we arrived they only had a five items to try. I was bummed, but I will make sure I go early next time so I can here what everyone raves about. My average Singapore vermicelli was a poor substitute, but I will arrive earlier next week so I don't interrupt staff meal. That seemed to be the focus when we there, as service was neglectful and quite indifferent. + +Also, I found a hair in my food, but why complain when they really don't care if you're there or not.",review,mEMZxvHpemSxn1gl7Lj1Zw,0,0,0 +azBHKHqif0NXO3xcALo5VQ,2009-10-04,xaJp1pIoy-Jt3VRCQDLT_g,5,"Absolutely LOVE spicy pickle! Sandwiches are great (always make sure to get them HOT!) Pickles are awesome too! + +Food is consistent and really good. Good variety, and you can easily make your own sandwich with a ton of choices. Good breads, meats, cheeses, toppings, sauces. Overall a really good sandwich!",review,98jhrpmyYcLLM0-9z-r2oA,0,0,0 +ohxd8La86GdC_3vgwBWLHA,2010-10-20,yoW9xkHSwBzDtZ1rhe0GhA,5,"Another 5 star review. I saw Beauty and the Beast with my little niece last night and she couldn't stop talking about it. +(It was her reward for having good grades) +I know I'm supposed to be the reviewing the theater, but I can't bring myself to rate them lower than 5. It was such a good show that even though there were a few minor issues at the theater, they still deserve 5 stars. The auditorium is starting to show its age and hopefully they get the funding to make improvements. (Also some lady with a big head sat in front of us and my little niece couldn't see, so I changed seats with her.) No big deal. +Other than that the staff were very professional and helpful as always. +Thank you again to yelp, Lindsey and to Gammage for giving us complimentary tickets. My little niece and I appreciates it and we enjoyed the show. :)",review,0oRtnPHtvZIE1UNxCDDTPw,2,2,2 +24qSrF_XOrvaHDBy-gLIQg,2012-07-19,lcHLsyekxeyt6QpuWT4dcw,4,"Great place, great food, great staff. +I just had a chicken salad but my husband had the Jambalaya, he said it was the best he had ever had.Had the bread pouding for dessert..fantastic! We wil certainly return.",review,nLXfL00a9nSjB7T_OqKscw,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2012-05-13,EJkXPUa0IVeDCdSyLdsbrQ,3,I love Defalco's. I hate Defalco's. The food is always fresh and I'm never disappointed. The big problem is that the service is so slow. It's great that they have a market for you to look around while you are waiting for your food. I know I can get quality tasting food but I have to here when I know I'm not in a rush to be somewhere.,review,2h0A-NirfNl2p2SquFWYHQ,0,3,1 +uR2aNW75R4oYs9w7aw-_kQ,2011-08-10,Z42extHuqdmAmz4oDZHLRw,5,This place is delicious. Great food and when they cook in front of you they do a lot of cool tricks and stuff. I would eat there everyday if I could afford it.,review,aTlHCohiT4ggRcMl3RQlXQ,0,0,0 +s1dex3Z3QoqiK7V-zXUgAw,2012-07-10,2YxrR_7qbybqihZB7hmBnQ,5,"We love 5th and Wine and recommend it to anyone that asks, the appetizers and wine specials for Happy Hour are some of the best in town. Let's start off with the fact that every glass of wine on the wine list, that's right every glass, is just $5 during Happy Hour from 3 - 6 pm. + +Did someone mention appetizers? Yep, 5th has you covered there too. Ever tried Fried Pickles? Love them! But I have to admit it took some convincing to win us over... thanks Scott! The fried pickles are thinly cut, fried to perfection and served with a creamy horseradish sauce for dipping. + +But what 5th and Wine is really known for at Happy Hour is their Bruchetta. They have 6 types to try but may we recommend this selection of our favorites: Apple and Brie; Tomato, Basil and Mozzarella; and the Steak and Horseradish. It's a great threesome! As someone mentioned last night, the bread is not too hard, very flavorful and toasted just right. + +Read the entire review here... http://schmoozeaz.com/blog/?p=680",review,m7LcZ5Zy4JDXFlAfh3MpVg,0,3,0 +MagW3D2UDQaP6KHzhauUHw,2012-08-12,13UqIbfFeVpu4MahABxbrA,3,"This was one of my favorite places to get take out pizza and salad from on a weekly basis. +Unfortunately, it looks like they have closed their doors. I have tried calling for the past week and no one answers the phone. I finally drove past the location and there is a note on the door stating they did not fulfill their rent payments. I am only giving this place a 3 star because of utter disappointment, otherwise the food earns 5 stars! +The Gluten Free cheese pizza was the best gluten free pizza I had ever tasted. They used a thin rice crust with organic tomato sauce and low fat mozzarella cheese. The place was small inside and lacked much ambiance, but made for a great delivery/ to-go restaurant. + +I will miss you Z Pizza!",review,XFLeKAsj3UKv5VPoIQjdIw,0,1,0 +Tsff0UUVgrnawjI_xd2cKg,2010-04-14,tTYPCGbGhqm5keMpAIGcFQ,4,"I drove by last night and noticed the sign and decided I needed to check it out. So I stopped by for a late lunch and was the only one in the place which made for some nice time to chat with the owner and her mother, who was the one whipping up the great food in the kitchen. + +They've only been open since February and had relied on fliers and the painted signs on the windows to attract customers. While I was there, supremely enjoying the chicken curry roti, a few other people came in because they drove by and saw the sign. + +I couldn't decide between the jerk chicken or the curry for my roti, so I was given samples of both. I thought the jerk chicken was a little too hot for me, but the curry still was able to clear out my sinuses. Wow - slow burn! I was told they could tone down the heat upon request. I'm not sure I'd want to ruin the experience, though. + +The menu looked interesting - goat curry, oxtail - along with the jerk and the curry options. I opted for the guava nectar to drink (so yummy!). + +This is in my neighborhood so I'll definitely be back to try some more. The atmosphere was comfortable and I was encouraged to linger longer, but I needed to get on with my day. The food and the music piped in made me feel like I took a mini-vacation. Nice.",review,XwBwRIFEaWjT25bQew911Q,1,3,1 +UHh2br86pxndWXELC6B8Cw,2011-01-08,CvBZufPp_CPUn4j1FLyhDw,5,very wonderful and romantic place to take your loved one :),review,CWQOBs0qw58tahumYRBREA,0,0,0 +39oUcXr-06fcfT_MZ94z-Q,2011-02-02,mP_gWmLRN2TL1s9eTy1Wrg,4,Just happened to be in the neighborhood when we saw this BBQ place. The pulled pork and beef did not disappoint. The sandwiches can be called 'hardy' portions on large buns. The sauce was excellent. The place is very clean. Very good service. Was not impressed with the coleslaw - seemed flat. Will return as the high ratings of this establishment are well deserved.,review,180RmODjWMOtR1p93pXZWQ,0,0,0 +z6vO1HR8L2iW4avr610XKw,2011-02-01,oZteRs30KjcjDhRTHKInag,3,"Had lunch here a couple of days ago. + +Place was dead. Only one other table had people at it. Service was quick. Reuben sandwich I ordered was delivered promptly. Meat was tasty but not exactly plentiful (I'm used to a New York style Reuben - with loads of meat). Potato salad that came with the sandwich was very good, a pleasant surprise. + +Outdoor seating was nice, though the birds did get tiresome. Place seemed clean. Plenty of seats. Upstairs deck area would be great in the evening. Seems like it would be a much more fun place with a group of people for happy hour or dinner than it was for lunch. + +Bottom line - it was okay. Not bad, not great. I'd give it another try but I wouldn't go out of my way to eat there again.",review,2OA7gcQBejOKVKYMkRiQxA,0,0,0 +3H0K9sqjyjx5TUremCh9sw,2011-05-23,omqQIRpS0sh6lMpvuqcT_g,3,"Yes, as the other reviewers have stated, there are always extremely long lines and surly attendants at this location. However, they have two automated machines where you can do almost everything you need to do without interacting with a human at all. The machines are super easy to use and you can pay by credit card and it just prints out your label. Not all post offices have these so it is a definite plus. + +Also, if you have pre-paid envelopes or just regular stamped letters, there is a drive thru when you pull into the parking lot where you can go and just drop them in the boxes without even getting out of the car. I know that you could take these items anywhere but I have found that they get where they are going at least a day faster by dropping them at this post office since it is the main sorting facility for our zip code. Very important when you are a Netflix addict.",review,VPXgY9lGJF3XC4ZpusxNuA,0,1,0 +Bc4DoKgrKCtCuN-0O5He3A,2010-09-04,Ce7p7Lr2YqbJ5sHohJ0vgw,5,"I dropped in to @SweetRepublic, finally, because they tweeted about their Chocolate Guinness, and a limited edition Jameson Irish Cream. + +I have had their ice cream in the past, both from the truck, and at other events, and was already a fan. + +Now, I'm fanatical. + +The Jameson was amazingly good! I couldn't believe how well the flavor was represented, without having the harshness of the alcohol bite. + +But the Chocolate Guinness won the day. It was so good, I ordered a pint to take home. (Unexplainably, it is still in the freezer. I will remedy that today!) + +The location is right by my work, so I anticipate returning, again and again. + +Jan and Helen are wonderful girls, and they have created something truly amazing. I congratulate them, and look forward to more of their creations. + +And their commitment to using local ingredients makes me happy to spend my money there, rather than a chain, who doesn't concern themselves with the area.",review,7cR92zkDv4W3kqzii6axvg,2,2,1 +oajNY_oTIMb7YZsor7Xonw,2010-03-03,4Ve2VD_MkSl1GrHU0i9QtA,4,"This review is slightly bias, seeing that I was in the press box. This park is very nice. Has ample parking and a ton of restaurants in the area for before or after the games. The food in the stadium is typical overpriced stadium food. I had the chicken teriyaki bowl for $7. The vendors are comical (you will hear the lemonade guy from across the stadium). I'd definitely see another game here in the future.",review,IO3AsR6cdMto7VCwfPzf2w,2,3,1 +cN6aBxe2mQvrQlzk26LyRQ,2009-04-13,nbPr6ai8cZA2zM1_HMplNg,4,"Tradition at it's most... er.... um.... traditional. Every time i eat here i feel like i have been transported to any number of old family owned steakhouses on the North Shore of Long Island, or Brooklyn. The plush red velvet, the dark wood and button tufted leather... The place just screams STUFFY BUSINESS LUNCH. My first experience here was with a bunch of lawyer friends who were dying for meatloaf or a steak with creamed spinach... + +The entrance is through the kitchen. That may seem a little odd, but I'd bet it sells dinners. Who can resist the wonderful aroma. By the time you reach your table, you crave rare beef, as red as the decor. + +It's the kind of place where you forgo the trendy drinks and have a Scotch with a splash,or a Rob Roy before dinner. The steaks are perfectly prepared, the garlic mashed potatoes are wonderful. I love the place. It isn't cheap, and admittedly, i have never paid for my own meal there. It has always been a treat from some friend who wears a suit to work, or some more traditional back easterner who wants to share their bit of meat and potato lovers heaven.",review,AnH84g9V10x41CXmCvcaFg,3,3,3 +bts6jVczHJuWzpT8Y26UsQ,2009-03-18,aDBncnQvoMB9jh7_kFpBEA,3,"I've got alot of nice and not-so-nice things to say about Phoenix's latest venture into building serious public transportation. + +Nice Thing #1: Mainly because it's new, the cars are really clean. After living in LA and using the metro subway there, anything seems cleaner than that. Let's just hope they keep up the cleanliness of the light rail in the years to come. + +Nice Thing #2: It gets me from A to B with little to no problems. It gets the job done. Also, it's one of Phoenix's more serious efforts at going green, so it's worth backing. + +Nice Thing #3: All of the current downtown stops are well thought out. Once you step off, something is always walking distance. + +Nice Thing #4: The price of the all-day pass is worth it. + +Nice Thing #5: Unlike public transportation in LA, the light rail is generally on time and makes for a reliable means of getting around. There don't seem to be any car companies that are trying to choke-hold the city by shutting any stations down like they did in the 30's in LA. + +The cons... + +Bad Thing #1: The only logic in taking the light rail is that it's essentially a car you don't have to park or fill up on gas. It's not that it's slow, but it really only goes slightly faster than the cars driving next to it in the street. Part of the sluggishness of the light rail stems from the fact that it has to stop at traffic lights like the cars you decided not to drive. I think the smarter idea would've been to build the light rail above or under ground so it could have gone faster and not have to stop at lights or risk the chance of some idiot gunning it and T-boning one of the passenger cars. + +Bad Thing #2: I know this experiment is still in its training wheels stage, but I really wish that they would build a line that would go to North Phoenix, Scottsdale, or Glendale. I've heard that they are planning a Glendale route, but that's probably going to take another ten years. Even though I live a few blocks from one of the stops, I really wish I wasn't limited to downtown, Tempe, or Mesa. + +Bad Thing #3: No airport stop? I mean, there is, but you have to take a shuttle to the actual airport. Why not just build a stop there? It would make more sense. + +Bad thing #4: Why does this thing shut off at 11? Is Phoenix trying to kill any chance of building a real nightlife downtown? We're not children. This city shouldn't set a curfew before midnight on this. + +In all, the Valley Metro Rail is more yay than nay. It's got its kinks that it still needs to work out and it's kinda tough to judge something that's in what I hope is a very nascent form of what it will eventually become.",review,FxxYCRPcpd__yhRRmmtyMQ,2,1,1 +sDozh6iTylTJD26d7xcgGw,2011-06-23,vLaaLlE6El0KX5Y6sX3e4A,3,"For some reason this reminds me a bit of Dukes in Waikiki. Food is OK, not bad, not good either. Service is OK, not bad, not good. The best part about this place is that they don't have a cover and its easy to get into. Its good for a beer on a pub crawl or to sober up for a couple of hours b4 2am. One of my coworkers literally drops $100's here per week and I don't think hes ever gotten a free beer. I think that says something about the place.",review,qQb4pg5uqvjMOfGPWbIkeQ,0,0,0 +CMTDZRDnv_O0rwAvRVbjvg,2012-02-25,-4-15pK-d5DDHPE-jrKDKQ,2,"dragged my husband here because the menu online lists a particular kind of spring roll that i love. and when we show up, the menu was TOTALLY different. + +this place is geared toward your typical Arizona-white crowd. it's pretty watered down Viet food, and was sorely disappointing. and expensive. boo. go across the street to Mekong if you prefer better tasting, more authentic Viet food.",review,jqs0xPGhZwlyijqWLEgRyg,1,3,0 +gQjTs4BDNYSu9oJhkEsssw,2011-03-10,V29jf17QMpsTCr2yBMxgZA,4,"Love this place! Been going to this location for years. The food is always great and the price isn't too bad either. The only thing I would say is a con is the service. You never know what kind of mood the server will be in or if they will be attentive or not. This place is delicious if you're looking for steak, or seafood, burgers, etc.",review,DY-U7c0451pUs25p_AhUgQ,0,1,0 +s9XNBJAZ3ZcNW5u8BRZXuw,2010-04-11,p4Y4XgdRE9dxGWx_xDJRxA,3,"A decent southwestern restaurant if you have a hankering for it. The margarita was good and the Taos combo was also good. The service was attentive and bumped this up to a three star review. Otherwise, the food is good not great.",review,X53WpXH8f6e7Y4W3LRogTw,0,0,0 +yHbDcduBtCi43JpfdScC6Q,2012-08-07,5T4UC5mZWTq8JS8UTTiBiw,5,"Tasty fair trade organic coffee and breakfast and lunch. +Even have almond milk! +Excellent choices. +Super nice people. +Comfortable space. +Let's help support these independent shops who exude caring, quality and individuality to thrive in our community!",review,y00oZaBgHET4IY0VfOw4SA,1,2,0 +UxvOXcoCRFRAVhRB0D9imw,2008-06-15,QI-IdMppjmKgfm_ZxUSv2Q,2,"We chose this place for breakfast this morning because of the wonderful reviews on yelp. I was certain it was going to be one of my new favorite places. + +We entered into a brightly painted orange restaurant and stood at the hostess stand for a few minutes waiting for the hostess to finish flirting with the server and notice us. She clearly didn't want to be there and could care less where we sat, so opted for the table in the window. + +We sat and waited and waited and waited. Tables that were sat after us already had their drinks and they were not busy. Finally I tried to get the attention of the hostess who was standing half asleep at the hostess stand, mouth open wide, eyes half closed. A few minutes later we finally had a server. + +Our server was not very friendly. I don't even think she said good morning. We ordered. Tables sat after us already got their food and we finally got our drinks. She bought out 2 cups of coffee, but I did not order coffee so I made her take that back. + +Our food finally arrived. We ordered french toast which came with strawberries, bananas and a cinnamon sauce, eggs benedict with crab cakes and two orders of country potatoes. + +Breakfast was pretty good. I enjoyed my crab cake and the cinnamon sauce on the french toast was a nice added touch. The potatoes were not good, they had WAY too much pepper on them, I couldn't even eat them. Gary ate a few of his after he drowned them in ketchup. + +We never saw our server again. We got a water refilled after we finished our meal. AND THE WAIT BEGAN. We waited and waited and waited for our check. Tables that were sat when we finished eating had already finished their food. We never saw our waitress. I guess we were her only table, if not I felt bad for her other tables as well. + +Finally some guy brought us our check and tried to drop it off and run, I said WAIT and gave him my card and said, ""If I don't give this to you now it may be 20 more minutes before we see someone again"" + +Because I didn't look at the bill first when he brought it back I didn't notice until after I paid that they charged me $12.05 for the eggs benedict when their menu actually said $10.50. I didn't say anything... I just left a sad tip. + +We were there for OVER an hour, they had lots of empty tables, and we only saw our server once. + +Gary and I always over tip, because he and his family owned restaurants in the Valley for 35 years. He has spent a lot of time being a chef and serving tables. We know that when food comes out wrong, it's probably not the servers fault, and things happen, so we still tip well. TODAY, I felt like we were invisible and I have no idea where our server disappeared to for the hour. + +We drove by Over Easy, La Grande Orange and IHOP to try this place. We probably will not be back... unless we decide to give it a second try on jazz night... I do love jazz.",review,Wy7f9DOuBEOenhnA7KIKoQ,1,6,0 +viQLBKFtCQkPykFUulVeuw,2008-06-21,cNtGNPsZiAYmqzSA5fDfJw,5,"The Great Indoors is a phenomenal place to get lost and dream about what you would like to have your home look like. WARNING!!! You will want to spend money! + +On average their prices are pretty run of the mill dept. store style, it is their selection that is amazing. They have far more selection than any other store I have ever been to. The store is also well organized and laid out and everything is easy to find. + +One final note, while not a place for extreme bargain hunters if you play your cards right you can get some great deals. I just purchased all of our appliances for our home at a 20% discount. Again, not the best discount I have seen but getting them all at once, not having to look around, and still getting $2 back for every $10 I spend is pretty darn nice! + +Oh and if you need appliances, ask for Andy/Andrew... He is a great help and honest as can be!",review,dH9FRHSZwlhLLamaZSFdGQ,2,3,1 +QnAzW6KMSciUcuJ20oI3Bw,2010-10-23,e_JFgj3gljVvzpI_3e4jeA,2,"7/07/10 + +Don't get me wrong, I still love JFG; I just didn't care for its BBQ pulled pork sandwich and fries. The coleslaw was good, but not so fantastic that it's worth the pain after. I thought that the pork had too much of the cloyingly-sweet sauce. Wasn't so sweet when paired w/ the garlic toast points. However, if you look at the included photo, you'll see that the two pieces of bread were under the pork, and therefore completely saturated w/ sauce. I like accompanying bread to be crispy/crusty (love that crunch!), so all I had to enjoy that afternoon w/ the pork was the part that stuck out from under all that sauced meat! What a waste (tsk, tsk)! The boat of fries was just a complete soggy mess. I should've asked them to sub sweet potato fries instead, but why must I pay extra to get a perfectly crisped product? Then again, one (wo)man's treasure is another (wo)man's trash, and vice-versa, eh? + +Today wasn't a great day for me w/ regards to Mr. Johnston's two restaurants (see my ""recent"" Coffee Shop review). I hope my next visit to a Johnston concept yields a happier adventure!",review,0bNXP9quoJEgyVZu9ipGgQ,3,7,2 +Hdi7jkB7pHiM1nyPHcqSdw,2012-01-21,AYHsbR_qBw2gYLhGFo0J3Q,5,Lots of awesome stores! Expensive and normal price...it is an indoor mall. Has Starbucks and a Tiffanys...my two favorites!,review,RT6sRtEXqk1_NHaQyo3n-Q,0,0,0 +E3RjJH45EX6rHYDs0TYSRA,2012-04-27,ViHcQIWk4G4U1aYe9_uEAA,4,"Your Mexican grammaw won't necessarily jump up and +down screaming ""¡Muy Auténtico!"" but this place still +delivers. Standard Mexican fare with pretty decent +service. If you check-in on Yelp, you get a 5 dollar +off your meal coupon. I really like the hot sauce that +comes with the chips and salsa. Spicy and very flavorful. +And the Mango Margaritas - nice and stiff. Their entrees +are good especially the enchiladas. And I usually get +a side of the calabacitas. They're open till 11pm on +Fridays and Saturdays which is usually when I actually +make it over here. A late dinner after some event. +Parking is always good since it's a mall.",review,sHeD1MXfvJsLSOd9vwQyBQ,0,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2011-11-14,TAPrmPQlPwurWIkNXW-yjQ,4,Great location and within walking distance to Scottsdale and old Scottsdale. Really well maintained and bed / pillow were the most comfy ever! We typically stayed at another resort but this was a great substitute. They allow pets in many rooms so request a non-pet room if you wish.,review,tVoCVBUg-ubBMLQlX5_SVQ,0,0,0 +m3EKlucZuwnOazLrRfnWaQ,2011-12-30,HmkQwFSrUADN-_uIYFc2vw,5,"New owners are awesome!!!!! Good people, earnest in providing a great product with great service. The restaurant is beautiful too. My mouth starts watering right when I walk in the door. Go check them out!!!!",review,PqYFEM5fDDJmlxuVFB87Kw,1,2,2 +ABrSt3fsirLrUYNVrD3fbQ,2011-08-05,clOq6ZQZ86cEVB8NehwEFA,5,Another excellent find in Scottsdale. The service is wonderful and the food is extremely flavorful with good size portions. The sea scallops and herb chicken are highly recommended.,review,pU-c4d5koLUBJuBFKPgNVA,0,0,0 +zMa6YoEekpABg1HZnnTZdg,2012-03-20,hWgdMLGlo-TrbZ8r0yBqrg,4,"Three words: THAI. TUNA. ROLL. +Get it. You won't be disappointed. + +In addition, the California and the Mango Salmon Rolls were quite good as well. While Arizona isn't a place known for stand-out sushi, I'd order it here again. And in fact I did...two nights in a row. + +Night #1 - The bartender was a superb professional. He replaced drink napkins when they were damp and even poured my martini into a fresh cold glass when I was half-way done. Class act. He was also the one who recommended the Thai Tuna Roll which adds even more points to his score, if possible. + +Night #2 - CRANKY bartender. While she recommended a nice glass of white wine, she poured me a totally different one the second time. While it was St Patrick's Day, it's not like this place was packed out with annoying patrons so I'm not sure what put her in such a bad place. It did leave me with a not-so-happy feeling when I left, despite the fact that the food was just as good as the first go-around. + +So, what could be the only gripes aside from the attitude? +* You will pay a chunk of change for your meal here (but it will likely be worth it) +* You will also likely order something that they're out of (mango salmon roll the first night, grilled artichoke the second night, and every night I've ever gone to a Hillstone, for that matter) +* It's a chain + +Bottom line is that Hillstone is probably one of the better options in this neck of the woods. Go for a cocktail and a Thai Tuna Roll, if nothing else.",review,HGE4YopYFGShFdri7KSMZw,0,2,0 +4juYmq_YpvdV8HZ1r0AWBw,2010-03-01,DAWL7CwwtDGD6gWYnN12gA,4,"I'll admit I almost fell outta my chair after hitting a triple-double on the Malibu. Quite generous pours plus delish menu. Can't wait to go back and try out the dance floor!!! Did I mention the Disco Ball?? Yeah, baby!",review,OksbhhgC71Ary3zNHMypeQ,0,0,1 +106JT5p8e8Chtd0CZpcARw,2009-04-18,ZRZVAFuQhcv3QehJbXonjg,5,"Absolutely fabulous espresso place! The owner and staff are gracious and friendly, but most importantly they get coffee! I didn't have to explain how to make an espresso macchiato -- they just made it perfectly! I'll be here every time I visit Chandler!",review,LRsjo7Heg4bFyMZvO9iQTg,1,1,0 +ykfTh6HI219NoMsWBxulxw,2006-02-09,fea33yfza5FNl-XSy0AC6Q,4,"This restaurant reminds more of Hong Kong (where I lived for a couple of years as a college exchange student many years ago) than any place in Arizona. The atmosphere is definitely not upscale (more like some of the Long Wongs in PHX), and may be a bit of a culture shock to some, which is why I don't recommend it for everyone (4 instead of 5 stars). The food, however, is very authentic, though they don't always have the exact ingredients that you would find in Hong Kong. The dry flat rice noodles (ho fun) is among my all-time favorite Hong Kong dishes, and this place does it right. The clay pot dishes are also worth a try - really good. (Among the Chinese restaurants that I have tried in Phoenix, the Gourmet House of Hong Kong is #2. Number 1 is the Great Wall, which I review elsewhere.)",review,cFC35FulkCpmFlVrhK8iHw,0,0,0 +nL2bJRBPzGCOacqMzQ83UQ,2010-04-07,1FgCza2RBq_XHfAipWOXiw,4,"I still have no idea what this place is. I only know that my dog needed some pills to treat his valley fever and for some reason the vet didn't carry them so I was sent here. + +The whole process is pretty painless and I think their drugs are priced reasonably. They will also hand deliver the medication the same day if you ask nicely. + +Pro Tip: When you call, don't hang up right away when you get the recorded message. When you stay on the line it will begin to ring again and someone may answer. I thought the recorded message was an answering machine and hung up prematurely a few times. Also, sometimes the line just rings and rings and rings. Be patient and someone will probably pick up.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,1,0 +h6jfMpTZpNduLG0wE2tbaw,2009-01-20,H54TDc1pXQIr4OydGRAmaQ,2,"Bizarre. My family of 5 came here for lunch one day, to see what all the hype is about - and boy did Hana fall FLAT! I personally had no expectations and Hana still missed them. + +Before seating us at a LARGE table (there's maybe 10 tables in this joint), this obviously inexperienced hostess first looked unsure of where she should seat us (the table for 2 or for 4?) She then proceeded to rearrange the table for 4, and moved ALL of the chairs around the table to add 1, instead of just adding it to the empty space on the end of the table.... odd. + +And then our waitress.... was really abrupt and ungracious about things. My sister's accompanying salad was half covered in lettuce rust - and when she showed the waitress, all she said was ""so do you want it?"" Uhm, no thank you, I like my food fresh, not rotten, but thanks. + +The sushi was pretty much the same thing covered in different sauces. Annnd they were pricey. it was kinda sorta really unbelievably ridiculous. RIDICULOUS, i tell you! Not worth it. No way. I'm quite sure that the ""crab"" was imitation. And the fish wasn't even that fresh. Granted, we're in the middle of a desert, but still. + +The one redeeming quality of this place? The ramen. Although there were about 10 noodles in it, the pork was perfectly cooked. And it would have been nice if the chef had been a little less stingy with the ramen noodles. + +Would I come back? Uhm.... only if I had no choice and was craving ramen. But for sushi? Save your money, go to Yen and get muuuuch better quality AND quantity.",review,jqs0xPGhZwlyijqWLEgRyg,3,5,0 +BNz5p488useb6HszpEUUVQ,2012-05-10,xcH0rhqObozrlZT0YoFHDQ,1,"What a crap airline! If I could give them zero stars I would. I flew from Phoenix to Denver to New Orleans. The check-in people, gate staff and flight attendants were rude and abrupt, the flights ALL left at least 45 minutes late, it was the worst flying experience I've had. I was fortunate thta my Denver back to Phoenix leg was US Airways...never thought I'd say ""Thank you US Airwarys"" for at least that part of the flight not being a nightmare! I will never fly United again!",review,I_Y47QFSdnZwZuN6IygWwQ,0,2,0 +QniH_NAABATeAx45mQ4ESQ,2010-09-04,jGXtsPnaEdJBZNw0-wo5oQ,4,"Love this place! Nestled in the side of the mountain, The Four Seasons is what you would expect from their properties. Smiling and friendly faces, exceptional service, a beautiful pool area and an atmosphere to help you relax. +While both the restaurant and banquet food was good, it was not 5 Star. For these prices, it should be. Don't get me wrong, it was very good. Just not great. The lobby bar, Onyx, is small but get's hopping and is a welcome retreat from relaxation when you need some fun strangers to talk with. +Having stayed here twice and visiting friends for cocktails on their patios, I can tell you the rooms varied greatly from huge to average in size. Some with lap pools and patios while others had private decks up against the hills. +The wonderful smell of chiminea burning along the paths add to a delightful get-a-way. I highly suggest this resort if you are in the mood to relax. It's not near much so you won't be tempted to do anything. And that's my idea of a vacation.",review,_Fxrn9P_nvvIY4JCvD5tOw,0,0,0 +dv5gSsbRtTatsBRcKLq4Kg,2007-08-02,Nh5yVahzm1onr3FdLhk6xg,5,"This is one of my favorite theaters. + +With that said, I suggest you prepare yourself for having to wade through an onslaught of pre-teen cliques if you plan on making your way to the ticket counter on a Friday or Saturday evening. + +If you're like me, safety is a concern. Not to worry here. I've always seen an officer on premises during the main drop-the-kids-off / pick-the-kids-up window. + +This location still has a new feeling to it, and it is clean and cool. Nice cushy seats with cup holders, and I have yet to hear the soles of my shoes stick to the floor as I walk down an aisle. + +My favorite seats are the ones with the railing in front. A place to perch my feet. + +-Swoop",review,pIm17SVRo8IdhGoBD4qbnA,2,3,1 +FV0BkoGOd3Yu_eJnXY15ZA,2009-02-17,gSc3pwGVSiCtGKDTuvNQCg,4,"Decided to go for Round 2 for a light dinner this time. I found the food and service to be superior to our last experience. + +The husband and I shared the mini mushroom pan fry, and I see why it is their signature dish. It was so good that I will not be sharing next time. We also had the dungeness crab stack. This is pricey ($20) for a small plate, but it was fabulous. We had the cuppa' red hot chocolate to finish. It was a to-die-for dessert. A chocolate pot de creme (custard) with chipotle crema and a chocolate chipotle cookie. Spicy, rich, decadent, all good things. + +Our server was excellent from start to finish. This time I am confident we will return, just maybe not at lunch.",review,wHg1YkCzdZq9WBJOTRgxHQ,4,3,3 +bZivzFTkkjNtUBSuMhoCtg,2012-05-29,iOCnbGtRTC2kIxPLUVA51w,3,"Oh, Sushi Brokers...what happened to you?! This used to be my go-to place for great ambience and delish sushi. We ate there Friday night for the first time in a long time and they have significantly raised their prices and the sushi was subpar at best! $90 for 3 rolls and 3 cocktails. Grrrr....frustrating!",review,xh2rvaC4efORz7CjroS_eg,0,1,0 +2FudHUhV9U54dm0S1ePuCw,2007-11-08,9yJIZzHXFjjDlFkrFeW-0w,5,"This place is a bit difficult to find granted but well worth the effort. If you're shopping down at the farmer's market, need a place to study, or just want to plop down with a good book, Fair Trade will caffeinate you as well as feed you such tasties as quiches, stuffed croissants, cookies, bagels, and sandwiches. + +The cafe was run by the church up until Julyish in answer to Mr. K's musing but they've been bought by a few of the regular customers and are enjoying a slow but steady revitalization along with a steady extension of hours. They're also hopefully expanding they're menus to include more food food items as volume picks up. + +Additionally, they offer only fair trade coffee and teas so you can do your part to help fair trade just by sipping at a cup of coffee.",review,72OdAJ2eQYecT91OdJXyfQ,2,2,0 +XfgU_1_X8eVX8_CqofAeIQ,2010-12-26,SN3RMkWl7zBdMTXzRqnTIA,5,"These are absolutely my favorite donuts in the whole wide world!!! No offense to those Krispy Kreme lovers out there but I think Lamar's has them beat! + +Their donuts are always so fresh and delicious! My absolute favorite is the chocolate iced cake donut with m&m's. Just thinking about them is making me salivate! ;-)!! + +I suggest getting there earlier rather than later because sometimes they sell out of certain varieties.",review,CE9WVIc83P-F1S0ZRF-Tfw,0,0,0 +8u4K8hAiSF9lBqN76LvOJg,2012-06-27,uQ75X7MyxiJsKye7jd9E1Q,5,"This is definitely not your typical run of the mill nightclub. + +First off, let me mention that the decor is gothic cathedral style complete with erotic art, bright lights, and a chandelier over the bar. There is a unisex bathroom that is very clean and surprisingly never awkward. The music on Saturday nights for Doom Disco is an amaazing mix of old and new (think Joy Division and She Wants Revenge). Plus, the bartenders can make a mean gin and tonic and they have a pretty well stocked bar for any other drinks you might fancy. + +Tip: Doom Disco also has a Facebook page where they post pictures and the playlist from the Saturday before. Check it out! + +Overall, it's 100% worth the drive and $5 cover",review,KmTWM15sTkK0HfzEzjbTUA,0,1,0 +ORLTCEgKfdxMuGPhIc1O9Q,2010-11-08,4mjNx2hgXRBw1dqD5Lv1ow,3,Very small selection. I am used to seeing a larger inventory of fine dresses and only found one that was nice! I also felt like I was maneuvering through an obstacle course with all the people in there and the poor arrangement; this is a messy and busy store.,review,_ZXThWhgLL94mAXOntLDXA,0,0,0 +KoJ4jNSmqYbmKqcoh-2dNA,2012-01-11,AOVQib06pMJF89eCLW3KIw,2,"Successfully blending the idea of bar food and airline food into one very disappointing meal. A poor choice for breakfast due to mealy/watery eggs, cold potatoes and bland salsa. Even the grapefruit juice lacked flavor.",review,DV7z89n3cl2KubYFmRmdCw,0,2,0 +bzDs0u8I-z231QVdIQWkrA,2010-04-01,Za-BEqNaFyFMYx4e_pAntw,4,"I was a little skeptical when a coworker followed our bosses recommendation of this place for lunch last week; what does a suit know about Mexican food? + +Our party of 3 arrived at 1145, a tricky time for Friday lunch. We were promptly seated to a clean table and I noticed the other tables were also getting cleaned quickly. Having worked in the industry for several years, I notice this sort of stuff and appreciate a quickly bussed dining room. + +Most of the staff are Spanish speaking but my gringo lunch pals had no problem getting by with their Spanglish and innocent, pleading looks. + +I scanned the menu and quickly spotted the ""home make corn tortillas"" for the quesadillas. I asked the server and she confirmed that this was only for the Estilo del Rey quesadillas. I'm a sucker for anything made in house- sign me up! She also guided me away from the pork and told me to get the chicken because it was better. I love having an interaction with someone who actually knows what they're talking about, so much better than a doe-eyed or aloof server saying ""everything is good"". + +When my plate arrived, I was really impressed with the presentation. The quesadilla took up half the plate, it was drizzled with crema, sprinkled with queso fresco, fresh cilantro and diced onion. It was served with a side of shredded iceberg and some lime wedges. I'm a firm believer in meaningful condiments, so if it comes with wedges dammit I'm using all of them. + +I juiced the limes and went to town. The steaming hot shredded chicken was perfectly cooked, sauteed with onions, spices and dressed with just the right amount of red chili. Slight warning- this is a little spicy but I would rate it close to a Valentino or Cholula-level. + +Coworker #1 got the Asada plate; the meat was bland and the beans were a little too creamy for my liking. I quickly apologized to my quesadilla for straying. Coworker #2 is a fellow foodie and had the shrimp tacos. She was protecting her plate like a mother bear over a cub so I knew better and thought, ""next time"". + +I've since been back and tried desperately to look at something else on the menu but the chicken quesadilla Estilo del Rey kept beckoning to me. Soon my love, we will reunite... + +oh- and the suit got mad street cred...",review,xjsIKyqLOqM8DyEhYh1IoA,3,3,4 +qb1o61d_qrwEpxAm16dZCA,2010-08-17,-WfSl2m3YB_M5yjHpmwbfg,3,"Okay, it's a nice place but I'm not sure I would drive out of my way to go here. I was in town on business staying nearby and thought I'd give them a try. The food was good, but not great. The shredded beef taco was typical and the shredded pork burrito tasted more like beef. The red chili sauce had an okay flavor but the heat level seemed to simply over power everything (and I like hot). The restaurant is very nice inside, very upscale. I guess if you wanted to spend alot for a Mexican dinner in a very nice setting this would be the place. Service was so so, maybe it was because I was a party of one. Whatever the reason, it wasn't a happening thing. Hey, at least the salsa was tasty.",review,5MbsgK5qo1BODknrDLN49g,0,0,0 +R3sbDS0YcJDedSmUjwE48Q,2012-02-06,rtRPHXhtXAz4cGooTShXNw,4,"Stopped by for a quick bite on a Saturday afternoon. Did not realize that the place had just opened (or at it appeared that way). Quite crowded with patrons, a bubble machine, and a DJ. + +It was bit loud with all the commotion, but still within reason. The menu is compact, but offered all the usual suspects. I went for the Pulled Pork sandwich with a side of cole slaw. I dumped the cole slaw on top of the pork and went to town on the sandwich. Meat was moist and smoky. The sauce had a hint of of kick. Very tasty. + +The service was a bit slow, but the place was pretty much full up so I expected it to take a bit of time. + +Good joint. Would return.",review,5_JuHOYNL3skhzxZzPESSQ,1,1,0 +y6uO4ydAwBHUujfiSktxZg,2010-07-01,0HpAY9IumG80OG5wMHv-Mg,2,"Was a bit dissapointed after reading reviews here! I had the fijitas, wife had tacos. Didnt think the inferno (green hatch chili)was all that hot!!! +The Taco meat was not spiced bland. Best part of the meal was the bean dip and chips even the salsa was nothing great!!! At least the beer was cold ut at 13.00 a pitcher it better be!!!",review,AdpQcQcRVNZdG_17p4V45Q,0,1,0 +SGwnJIFKGQcYzE2c3ebs8A,2011-05-03,qoZjFYmmKi_0u1ZvoAQ7bw,4,"Amazing quesadillas !!!! I had the steak, mushroom, and cheese as recommended by our server and man was I impressed! They are not the standard kind that I am used to. Fried and covered in lettuce and green sauce. The al pastor burrito was so hot and tasty as well. This is now my new favorite cheap delicious mexican joint! I wish the salsas were better and didnt all light my mouth on fire but hey, the food is awesome anyway and didnt need the salsas.",review,60zEQkNgV_JqbbtgWhDewQ,1,0,0 +FzruBSWLZnLK6QyDB6_jgA,2007-03-09,hCDZ1uedP9ij6ukbL2IgFg,4,"Don't dog Old Navy. + +Despite a sub par and semi-annoying marketing campaign, clothes here are aight with me. + +And where else can you get a perfectly good pair of cargos and boardshorts for less than thrity bucks a pop? I'm no fashion snob, but I like to think I can generally distinguish ""awful"" from ""not awful"" in most cases. + +For the ""not awful"" variety, Old Navy is dirt cheap and top notch.",review,Ovpa3S8xD96dLE5eDxcxJg,0,0,0 +vfLog2bLJGl6hAFtGtr0GQ,2012-05-22,6Tamm8LPovhcvF_rVpGp_g,3,"Contemporary atmosphere. Good range of Italian offerings. Attentive wait staff. Portions generous. Price reasonable. Food fine. +I'd go again.",review,A9PlVYW_PobkDF6ZskCpXQ,0,1,0 +UxvOXcoCRFRAVhRB0D9imw,2008-02-25,Mtgnj4dH9RE_zLGSTHyY2A,5,"Definitely one of my new favorite restaurants! + +A friend and I went to lunch there last week and it was even better than I expected after reading the other reviews. The menu is EXTREMELY extensive. The b-fast all day long is a plus, but I wasn't in the mood for that this time so I stuck to the lunch menu. I ended up ordering the half sandwich and soup of the day and my friend and I split a side order of sweet potato fries. The eggplant and roasted veggie sandwich was really good, but huge and messy! I ended up eating a lot of bread and then eating the insides that fell out with a fork after wards. Delicious nonetheless. The homemade chicken noodle soup was outstanding! It had lots of other bits of veggies that are not traditionally in the soup (red pepper, green pepper, corn, etc.) and it added to the soup quite nicely. Did I forget to mention it's a GIGANTIC bowl of soup? There's no little cup o' soup here - come hungry! The fries were delicious although we didn't even need them since our meals were ""Hungry Man"" sized. + +Some side notes: + +1. Parking is awful for lunch. If you don't mind creepily stalking folks in the parking lot and possibly engaging in an altercation with another patron attempting to park, go ahead and give it the good ol' college try. + +2. I ordered a water with lemon. I received a water with no lemon. When I asked for some lemons for my water, they brought me out a small plate with SIX (yes, I really did say six) overgrown lemon wedges. I tried to come up with a scenario where one person would possibly have a need for one entire lemon on steroids. I couldn't come up with one. There is no reason for one person to be in possession of that much lemon. Period. + +3. We walked in and staff #1 seated us. Staff #2 took our order. Staff #3 brought our drinks and later the pile of lemons. Staff #4 brought our meal. Staff #5 cleared our plates. Staff #6 brought our check. Staff #3 took our check and brought the receipts/change back. Did it really take 6 people to get us through a weekday lunch? I was mostly entertained by it - it almost became a game of ""who will show up next and what is their task?"" It was still a little ridiculous. + +4. Being a semi-health conscious diner, I loved that they had fat free dressings, made tuna salad with low fat mayo, and just had many, many more healthy options than the average restaurant. I appreciate places that can fix a good meal without drenching it in calories and fat. There are plenty of places to go for that sort of meal when you're in need. No shortage there. It's nice to have those options beyond the standard no dressing, burger wrapped in lettuce, or vegetable medley consisting of zucchini, carrots, and cauliflower. A big up for Taylor's. + +5. For a half sandwich with soup, half of the fries, tax, and tip I paid about $16. It's not the cheapest lunch in town, but it's worth what you pay for. Just remember that the portions are gargantuan so no need to order a lot of extras to fill you up. + +I will definitely be back again. Enjoy!",review,-Dof9NwAoQwRM-GVPZk5zw,3,5,2 +ZdQbDVZWDsO-d7q2qW8E3A,2010-04-26,xRtA2zv-T6mW8_C2cwZLQQ,4,"I'm from the East coast, so living in Arizona feels like living in the land that Chinese food forgot. George and Son's offers the closest thing to ""Chinese"" food that I have found in Arizona (yes I know this isn't real Chinese cuisine, just look at my picture). PF Changs is not Chinese food, and that is the best I have eaten before I came here. All the other Chinese food that I have found is full of MSG, and makes me sick. + +The restaurant is cozy and relaxing, and the staff is very attentive. The sesame chicken is very good. I recommend asking for firecracker chicken. It is not on the menu, just ask for the firecracker pork, but with chicken. It has the right kick to it. I would NOT recommend the orange peal chicken. After eating 1/2 of my plate, I wan't to swear off anything orange for a month. I guess I needed something less sweet with a more varying taste. + +Last time I went in, I had the three amigos, which was very good. This is shrimp, chicken, and beef in a brown sauce, poured over a hot skillet plate at your table. I would recommend any of the three I mentioned.",review,br7jwXG7TaWC1-vrZxResg,3,4,4 +mwX2blq0CKRNPlISf2TlHQ,2012-02-01,U2oZJ7_JH1x0RFTaKCSMWQ,5,I went to Kens Nails on Tatum a couple weeks ago and finally found my go-to nail place! The staff was friendly and helpful and it's a nicely decorated spa. I went in to get a mani/pedi and was pleasantly surprised by the quality of service. Mandy was my manicurist and she was wonderful. I got the gel nail manicure which was only $30 and the spa pedi which was only $32 and amazing! I am looking forward to going back.,review,a3TmhiT7QRmz9LKEr289dg,0,0,0 +E3RjJH45EX6rHYDs0TYSRA,2012-11-14,64jZGCvSlmdD1Nrcs1RMmQ,2,"Only reason for the 2 stars is for the service. +The food was not very good at all. My dinner was hardshell taco's or something that consist of hardshell taco's but when they came out the shells were soggy and you couldn't eat them. +The drink specials were good and we had a very nice server.",review,3-VtQSyS-if1_MTV7UZQSg,0,0,0 +-hQ8iZygzi0iiTFUkHgiEA,2011-10-03,rajKDrIU87znme57bhS6EA,4,Still love their bagels and apparently I am not the only one since they won Phoenix New Times for Best Bagel (2011).,review,VPXgY9lGJF3XC4ZpusxNuA,1,0,1 +Bui7TEFaPwuZtW5QQg2oFQ,2010-03-11,yguuDtXwCJuN78us8Krxzg,4,"Great little sushi spot with a heck of an all-u-can eat deal. I like it. The staff is great, the food is great quality and the prices are fair. My only complaint: Nearly every time I leave Sushi Q I get hit up by the pan handlers working the liquor store next door. 4 stars for price, quality, and staff.",review,nGYaT5sAuqKkd48dqX_2Kw,0,0,0 +w-ghJKIBJwKy0E--GPgB9A,2010-05-09,Pm0Ekxcqaat1xDJ7nCUa8w,1,"If I could give zero stars, I would. I have never spent more time looking for a bar than I have looking for this. And not like a cool underground dance club in L.A. When we finally found this sh*thole sandwiched between two vacant businesses, it was barely visible. The sign for it looked like it was written with a sharpie on a piece of cardboard and someone duct tapped a flashlight to it. Before we even entered the bar, as my friend and I were walking up two redneck bikers whispered, ""Fags"" as we walked by them. I don't think these were the kind of guys you argued with so I let it go. When we entered the bar I noticed several ""No firearms"" signs plastered on the walls. I'm assuming they've had a problem with this before. Remember that scene in the Blues Brothers where they go to the country bar and get the look of death from the patrons? That's how I felt. The decor of this bar was interesting. It looked as if they got the tables and chairs from an old 70s Vegas casino. The place is about the size of a small apartment's living room so getting a seat is pretty much impossible. We went to the bar to do some karaoke, but apparently they also sell crappy jewelry for some reason? Weird. I've also never heard so much cussing from karaoke singers. One of the drunken hicks actually got into a shouting match with one of the morbidly obese toothless tattooed bicker chicks where they argued who was the bitch and who was the pussy. Halfway through my beer, my friends showed up and they refused to go inside so I ran away and never looked back. TIP: If you go here wear a black leather jacket, bandana and Harley Davidson gear.",review,0mqHhdKEdak_A1FBhFNXqA,1,4,6 +qiFTZ7aJz-FXt1wz8YigAA,2011-06-25,RQk7bTm7CszRlbG4K6O0vQ,4,"This is one of Scottsdale's new hot spots. If you like the 'Scottsdale' scene, this place is a must. Sunday the music goes off as Thomas James spins sic house beats and the bar serves up $2 tacos. On the weekends, it is still the hot new local spot so it is always busy. Fun place to go and usually there is great eye candy.",review,CyQ0mP-q6cLWjgBBJt-J_g,0,0,0 +X2CvejXoxpIOr8j6O-gM7A,2011-12-22,3TuFCvdWZdw06IZ1JgLjiQ,3,"In my effort to live and love local, I try to show Bashas some love since they are a locally owned chain. Everything about this Bashas is just OK. The produce, inventory and service are all par but nothing stands out. I recently bought several baked goods from this Bashas for an event. I was on the hunt for sugar cookies that Santa's little elves could decorate during a shopping crawl. They didn't have any out, so I asked the lady behind the counter. She told me they had cookies in the back for a dollar a piece. This was too high for my budget so I politely declined. Then a couple minutes later, she came back and told me they were actually on sale and only $.50, so I decided to buy them. Coincidence that I said no to cookies for a $1 and then they became 50 cents, or just oversight by the employee? Who knows.... + +During my visit, I also purchased some donuts. I need two dozen donuts and unfortunately they don't have donuts by the dozen pre-made so I ended up making my own. While this is good because you can choose your own, I think it would also be helpful to have pre-made dozens for those in a huge hurry (like I was that day). + +In summary, this Bashas is just OK, but I love supporting local so I will continue to shop here!",review,4ozupHULqGyO42s3zNUzOQ,6,6,2 +duHUQFn7K-Ybs1rPI4AOEQ,2011-02-22,8_kApqXYlcHZ8tui7jY6pw,4,"I'm glad that living in the southwest has benefits other than excessive use of cacti in home decor. One of those benefits is the food served at Z'Tejas, and I will gladly put up with any number of hanging serapes to get my hands on Tex-Mex. + +This is what you need to order (no exceptions): + +1. Drinks: Chambord Margarita +2. Appetizer: Cornbread (so moist!) +3. Entree: Seafood Enchiladas +4. Dessert: Berry Cobbler. + +You will need to take a food coma after you have successfully finished all this food. But, and trust me on this one, you will finish it because everything they serve is addictive. I would have literally licked the cobbler pan if I was not in public. + +Your pants will be bursting to make up for the weight that your wallet loses over the course of this meal.",review,Zkn45PKSC3Lj-o_ZnK35yw,0,1,1 +xEg0-xrQywU5K-WQO7cy0w,2009-12-17,8L406qnMNTAYp-KG5facRQ,5,"Having worked in the Scottsdale Airpark area going on 9 years or so, I've eaten lunch just about everywhere. There are plenty of good places, but not many ethnic places... Indian Paradise has the distinction of being both great and ethnic. I've only ever eaten there for the lunch buffet, and it is AMAZING! + +I keep thinking that I'm gonna be disappointed, eventually... But every single time I have dined here I have come away extremely satisfied and in dire need of a nap. I keep asking myself, how can it be so good? Is it cocaine? Cocaine in the food?! Is it?! + +They have different buffet items on different days, but the the mainstay curry chicken remains a favorite of mine. On Friday there is a mushroom dish that I dream about... and on Thursday they have stuffed jalapenos that are a little hot but oh so gooooooood! + +Be sure to save some room for the rice pudding, 'cause it's delicious.",review,fKYP2YKR5yp_cNHPzBxxKw,0,2,1 +UAzZDOlg_Fp4-8YhHDpo2g,2010-03-09,_ajr6Nkx59331w7xNs2atQ,3,"Just so you are aware, phone calls are now 50 cents for 3 minutes. So proclaims the hand scrawled sign behind the bar next to the register. Even dive bars need a bit of order amongst the chaos. + +Ducked in here for a cold one after walking the fest in Melrose, I'm just a sucker for a dive bar. Once my eyes adjusted to the darkness, I saw an amazing mix of people. Some almost hipsters, Indians and traditional barflys. + +The Dos Equis was frosty and cheap, there was a back door for quick getaways or for smoking. Times truly are tough as I noticed on a trip to the men's room that three of the flys were passing around a hand made cigarette.",review,bcZd4ohK6CIT_BOQ0_O53w,4,4,4 +L_MtTn4IUBTmQtqqM2iFqA,2009-05-14,ZN6BQhy3-rw0-DVkTtwbDQ,2,"I'd characterize myself as a Pho Ho (I know that doesn't rhyme) so this rating is going to be lower than what other people may thing simply because my standards for Pho are snobbishly high. + +A very cute place, the decor and ambiance seems built very much upon the words ""serenity"" and ""harmony"", which is great, but as you might tell with the tone of this post, comes off a little corny. + +That said, the food here is not too bad. For lunch, it's a decently priced meal for a lot of grub. + +I got the Shrimp & Pork Spring Rolls and the Pho (which they call Beef Noodles I believe). + +My first impression unfortunately when the app came out was that the Spring Rolls used iceberg lettuce instead of basil or mint or a more dark green leafy green. The iceberg lettuce gave the Spring Rolls a cheaper feel that I didn't really enjoy. + +The Pho was better though they seemed quite stingy on the accoutrement, as I got two jalapeno slices and a sorry looking stem of basil. In addition, the thin slices of beef were definitely overcooked and tasted not unlike a sponge. But the noodles themselves were solid and the broth with a little Sriracha got my blood and tastebuds pumping. + +I don't know if I'll come back but I would say for lunch, this place is not a bad place to introduce somebody to Vietnamese food.",review,EQYhCVLmAQLGwYUYPPSaaw,0,1,0 +DcrM4hwDcU2G6vuh2cnaYQ,2009-03-09,BGM39lvi-bB_HQc_XR7DIg,5,"NOCA... wow. + +Have you seen the outer limits show where the chef owns a device that when placed in a small room with a single person drives the person completely insane with fear but creates a liquid extract that adds complete and utter bliss to food. That liquid is then added to the restaurant's soup which is revered as the best soup in the word. Limit 1 bowl per person...? + +NOCA must have gotten their hands on this relic. Honestly. This has probably been the best dining experience of my life. Everything was delicious on its own, all together, or when combining just a few of the items on the plate. + +Walked in and our server seated us. They brought us an amuse-bouche that had a small amount of blue cheese, chorizo, and chives. Was delicious. Then bread was served. After that, our Bacon and Egg was served. This was phenomenal. A crispy perfectly poached egg with oh so tender pork belly....mmmm + +My fiance ordered the butternut squash cannelloni and I ordered the duck. Both were amazing. The duck was so moist and tender but not greasy at all. We then were served cotton candy as we waiting on our 2 desserts to arrive. We had the donuts and the de-constructed cheesecake. I had an espresso and my fiance had the vanilla malted milk shake. + +All of this was amazing. My fiance wasn't in the mood for wine, so I delved into the beer list and low and behold, 90 minute IPA from dogfish head.... NOCA, I love you.",review,k1ACFw3wmqkNGoiGeNLc0w,2,4,2 +jPhmaY35qGP2qNc68viXPg,2009-10-27,M0cf_DYK_G3BsRssGFbueQ,4,"Pros: +1. Excellent service. Hell, it's damned right impeccable. +2. Superclean and comfortable rooms. +3. Excellent amenities and top notch spa. + +Cons. +1. J-Dubb's a little spendy on the cocktail side. +2. KEEP THE POOL BAR OPEN LATER! MY GOD!!! I'd like to watch the sun set with a cocktail, rather than have the sidewalk rolled up around 5.",review,3FMdOQ2g9ANQgV33FtxW8A,0,1,1 +YzHtlphJ-5LDtJdNzKs7Fg,2011-10-06,pqVP8OW7KZM8OWHZ7QQ7lA,5,"ALTERNATIVE!! + +That's what this place is and in the land of BIG chains, this only could add some spice. We were welcomed here to the free screening of Dale and Tucker Vs Evil as part of a Yelp event. The personnel is totally committed to their project. + +If you are looking some retro movies or the gender I don't enjoy (but others do - horror), this is a good alternative.",review,LqgGgWi3FLHBViX9tmZ9sw,1,3,1 +JobP0ghILdh8S8l-LhHHxQ,2011-05-23,8XP6XkyiTn921bGG3vPnyQ,3,This is just like Filiberto's. Fast-food mexican food. It's really good and taste pretty authentic to me. My hubby and I stopped in for a quick bite to eat and we went there because he heard it was good from his co-workers. I'm a huge critic of mexican rice and beans and this place has it down. I got the lunch special of the day which was 2 bean tostadas with beans and rice. It was sooo much food and I was so stuffed! Next time I will get something smaller. You can't beat all that food for $5! They have a good salsa bar with all the fixings!,review,yAeo2D5NdtGuGG2o1M1aGQ,0,1,0 +uGC6iRZ2f7WLAeaptZkQIQ,2010-05-10,N0OijRr_kkTo27mtErcSAQ,5,Dr. Lee does excellent work and he and the staff are very friendly and professional. The best dental care I have ever received and I have lived all over the country and grew up at the dentist with my bad teeth. They work very well with children also.,review,OlVMqrJbFsxLOrBzqtZYDw,0,0,0 +kaIue7GRCmkPzDeHDBTttQ,2010-11-19,e8WoxocDwAMCItY6wf624Q,3,"It's a Japanese fast food. I'm very impressed with the service, the owner spent some times to greet everyone. I ordered beef bowl teriyaki but the beef teriyaki is a lil bit over cooked and the smell of the burning beef just overwhelmed me. The Panko breaded fish plate is the one that I recommend to try. They also have the seaweed salad which I found good. And they also charged for the soda refill $.30",review,59pVYStY0yKpRmODFIfDww,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-05-06,kbCco06Ch_EznijXfp685Q,4,"I'm not going to lie, Pizzeria Bianco's food was great. But 5-star worthy? Maybe not. + +I didn't mind the wait, mostly due to the fact that I had been mentally preparing myself for a few days (and I also ate a snack around my normal dinner time.) The hostesses and waitstaff were kind and helpful. + +But when it comes down to it, I just didn't think the pizza was OH-MY-GOSH-WHAT-A-PIECE-OF-PIZZA good. I actually think my opinion might have been negatively tainted by the hype. It was built to such a crazy-high status; I don't think it would have been possible for any restaurant to live up to that. + +However, I do think that everyone in Phoenix should experience Pizzeria Bianco once. Plus, it is a great place to take out-of-towners or a date. It's just not somewhere that I would frequent regularly.",review,kMiQnYFmAYbjHyyIPGSwoA,1,2,0 +eGevCRobYnA_HSj60sEWvQ,2011-02-09,lptwPddfIUQQgijD482Lhg,2,"When I heard about this place I was really excited because it is hard to find really friendly vegetarian food in Tempe. The atmosphere here is great and very sunny. It is in a strip mall which takes away from it a bit, but the inside has a funky feel to it. I always want to like the food, but something is just off every time. The black bean burger is good, but it comes on an untoasted piece of wheat bread that gets all soggy and falls apart. Everything else is OK, but why do they do that. It makes it disgusting. Put it on a bun like normal people.",review,thlVIc8s6ZCP37UGMf3yDA,1,0,0 +hBHkHYOk_E-6EgObC6MTdQ,2012-09-24,8w-jvRxALs4E1zoZcYm4oQ,4,"Great sandwiches! the bread was superb. I had a BLTDA (Bacon, lett, Tomato, date, apple) w/chicken. Yummm. such a cute spot.",review,9ebaAGLVIgGKpDLFwmvaiQ,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2009-10-29,1aa1XE_NSEXAJAd9LxTBbA,5,"This place has it all. Fresh food. Vintage decor. Outdoor misting system for those uncomfortabley-sweaty summer days. Plenty of scooter parking. Beautiful shade trees (watch out for scorpions!). Oh and did I mention the food? + +My favorite item by far has to be the Buffalo Chicken Sandwich. Tender grilled chicken breast smothered in tangy wing sauce nestled between a toasty bun that has been smeared with blue cheese and crunchy celery. It's heaven in a bite. + +Coupled with a serving of Sweet Potato Fries, this is a party in your mouth and every taste bud is invited. (Even that anti-social one on the back of your tongue that doesn't know how to dance.)",review,522VUC6Fjuj6JAPo5tHSCw,1,3,0 +fv2WqPvS4YfxCm6YWqrvLg,2011-10-21,2he-xxrE_OavAsQ83UaXaQ,3,"Pretty good mexican grub in the 480. + +I had two carne asada tacos and a chile rellano plate. + +The meat in the tacos was tender, tasty and plentiful, accompanied by chilantro, onion and hot sauce - typical ingredients but done right. + +The chile rellano had a flavorful red sauce, the batter was not too soggy, the chile was cooked well (not crunchy/underdone, not squishy/overcooked) and the cheese oozed out when the chile was cut into. This dish came with the standard rice and beans, neither of which was remarkable in any way shape or form. + +Minus two big stars for what they consider guacamole. It wasn't thick, it had no taste and it seemed as though this vital mexican staple was merely there as a garnish. No bueno. If it ain't green, thick and tasty, you better hit the drawing board. + +Ya feel me?",review,MUmJBMsXhu7lTV2cd1HCNw,4,4,3 +-sC66z4SO3tR7nFCjfQwuQ,2009-06-30,DTs-kewkgvnlhXTxMGuCWg,4,"I dig this place, I really do, but the portions are small. They do make up for it by packing a straight kick to your man or woman pleaser with zesty flavors. I didn't dig the guacamole-too much salt, but loved, loved, loved the chips that came with it. The place is quite spacious and modern with featured art on the walls. I went for dinner so the lighting was minimal giving the place a sexy, urban feel to it. The kind of lighting that makes you wonder if the people are really this good looking? Or is the lighting really just this good??? + +The carne asada beef tacos were divine. Really moist and succulent with just enough spice to make your taste buds tingle. Two is hardly enough, so we also tried the fish tacos and well, I could smell the fishiness from across the table which makes me a little uncomfortable. I did try it, though and it was okay. Not too fond of anything that tastes or smells too fishy. Reminds me of unsanitized, dirty, dirty girls. (Haha, had to throw in a visual for you all!) + +My favorite plate was the ensalada cortada. I loved all the ingredients mixed in together, especially the corn nuts. Genius idea! + +For drinks, I had the la sangria. Fruity, refreshing, and light tasting. It was really good, but I passed it on to my date in hopes of taking advantage of him later on. Almost worked, but when we got to the normally secluded rooftop @ the Clarendon hotel, they were hosting a social gathering of some sort with lots of people. Damn. Should've drank my sangria. Oh well...another day since I will most definitely be back for some more Gallo Blanco. I can't wait to try their breakfast menu!",review,6qTA7oelKwpevf1lL_bIVA,5,6,4 +58oZQsz15GJEV7isQhwb7w,2012-08-20,YDksOTfQZh0wl-ZP2kD1LQ,5,"After reading about all the other Phoenix coffee establishments that had either come and gone, or were serving bad Costco coffee we were thrilled to find White Sage Espresso! The coffee was some of the best I've had in a long time! Our visit was such a pleasure on so many levels and we couldn't wait to go back the next day. + +First besides the fabulous coffee, we were amazed by the multidimensional flavors in the spinach cheese quiche, usually I'm not a big quiche fan but my husband is so we tried it and I think I could eat it all day long it was so good! + +Next, while we finished the quiche a batch of fresh blueberry muffins came out of the oven and the owner gave us a piece of one and again, amazing multidimensional flavors! We had one of our own and took one to our friends who raved about it also. + +After that as we chatted with Wes, the owner, we discovered that he and my husband had gone to the same high school in Southern California, another fun surprise to our visit to White Sage Espresso. + +And the last thing that really set White Sage apart from the average coffee shop is Wes is also a physic/medium. I had such a great feeling after chatting with Wes during our visit I decided to schedule an appointment with him. I have been to several other physics before but Wes brought something to my reading that I had never experienced before, I really enjoyed it, and I will definitely be in contact with Wes again in the future for another reading. + +I look forward our next visit to White Sage Espresso!",review,8E-XbiI-fHVMquzP3anLkQ,0,0,0 +F8q_9PUl-Lwjj9xIRPArcg,2011-06-01,LiXcfRQfpagK12QypffTFQ,4,"My niece and I were having that conversation...where do you want to eat...I don't know where do you want to eat when we drove past the Rocket Burger corner. I turned around to try it because of good Yelp reviews and my curiosity regarding the variety of Soda Pop. We both got a large hot pastrami sandwich and soda pop. The price was reasonable, the food was good and the soda pop made it a nostalgic experience. I brought home half of my sandwich. Just reheated it in the microwave and enjoyed it again. I'll return to try the french dip sandwich on the menu. P.S. The meat and secret sauce gave the sandwich a great bite. It blows away the 'roast beef' sandwich I had last week at Subway that looked like reconstituted meat.",review,VURvHke7yvGL673wgcp9nA,2,3,0 +K8pM6qQdYu5h6buRE1-_sw,2010-10-17,jTkRr6KHLoEugn36VN4ZTA,4,"I've been to the Scottsdale location and to this one a few times, but I guess I never reviewed this one :-\ + +Anyways, one of my hometown friends drove in from San Diego and displeased with his Roscoe's experience, was dying to go to LoLo's. Luckily we made it out of the Science Center in enough time to get lunch here before they closed for the day. We were quickly seated and taken care of. Our food came out quickly and we dove in. It was delish as usual and my friend said that LoLo's won that battle. + +That said, if you want some good fried chicken and waffles, head here.",review,6OWHDbEq23f24Vki_veHBA,0,2,0 +L9UYbtAUOcfTgZFimehlXw,2012-01-26,HHzs1EDHjbi8lUAv1hABUw,5,I was at Liberty Market this morning for breakfast. The grilled bread pudding is amazing. And the bathrooms are so adorable!,review,Z4xZrZi_AMtOR6I24dPrHQ,0,0,0 +wZwZcte4lcbu51NOzCjWbQ,2012-03-27,LZDAM65wgDt1I7XTtXY8HA,3,"Service was fast and friendly, the mixed drinks are great! We went on a busy Friday night and a lot of family's where there. They have a man walking around making balloon figures. The slide/ stairs is a great touch for kids. The food was OK, nothing outstanding. + +The view was amazing, it overlooks the entire city.",review,jA5LKrVjCN8x9kJcMH0NmA,0,0,0 +5y88Y-RbndE0QNwQMeScew,2009-05-11,exH9qQOCF6x4n-X4Jqr7eQ,1,"Everytime I have gone in this store I have left feeling like a big pile of poop. The staff is sooo horrible. I read the other reviews and it seems to be a common thing which really sucks because I would probably shop here a lot more if the staff wasn't a bunch of pricks. P.S. I found a skirt at Target for $10 that is EXACTLY like one they carry, except they want $40 dollars and your soul.",review,Q-e5Kriu18oFX5orJkoNhA,3,4,6 +r4ggW7POeNX0ta6spkT4Kg,2012-06-04,lCCr4wN6IJqCf0OiVAn1Gw,4,Wow! I am definitely impressed. I've been to a different Massage Envy years and years ago and vowed never to go back because it was the most mediocre massage I had ever had. My girlfriend was telling me about how great the therapists are at this location so I relented. I scheduled a 90minute deep tissue/trigger point massage with Joshua. It was probably one of the best massages I've had in a long time. My back neck and shoulder felt so much better afterwards! I was so happy after I even signed up for the monthly membership....Something very unlike me to do without thinking about it. I guess this location is the only corporate owned store and not a franchise. No wonder! :),review,d95On_QNeQPr01pRNzHa5w,1,1,0 +-yxfBYGB6SEqszmxJxd97A,2012-01-19,EBPnXky6r269b-yYN4KVIw,4,"Intimate ambiance with good farm to table fare. Good presentation and wine pairings. Outdoor area is nice, though as others have pointed out, there's basically no lighting back to the parking lot after dark.",review,m86FX_Y3hUFTyolH4lXiWg,0,0,0 +5kRug3bEienrpovtPRVVwg,2011-10-11,y_uJ7P9sUGy_5b8hRCdQHQ,5,"My fiancé took his pediatric boards yesterday and that calls for a no-more-studying-at-coffee-shops-during-dinner celebration! We are brand new to Phoenix and these last few months have been eating lots of Mexican and some more Mexican, which we are not complaining about in the least, but it was time for something different. Our neighbor recommended Richardson's/Rokerij as his favorite so I made a reservation for Monday night. + +We sat in their downstairs dining room tucked in a generous booth in the back corner. My fiancé ordered a Dark and Stormy and we split a bottle of Pinot Noir as our server informed us of their 1/2 price bottles of wine deal. Hurrah! We ordered 2 appetizers: the bacon-wrapped scallops and the crab-stuffed mushrooms. One bite of the scallops and we were in heaven. They were GIANT, perfectly cooked, and beautifully placed in a pool of amazingly different dipping sauces. You can never go wrong with wrapping bacon on a piece of, well, anything, but this appetizer was magical. + +My fiancé ordered the Rokerij Steak with roasted corn and mashed sweet potatoes in a chili pepper. I'm not a steak lover, but took one bite of his dish and it melted in my mouth. Fantastic. I ordered the Swordfish special with roasted eggplant and mashed sweet potatoes in the chili pepper as well, and I devoured every bite! + +What did it for me, however, was the dessert. We shared the truffle with vanilla gelato topped with berries. The truffles were like buttery brownies in a hard shell and perfectly portioned to satisfy. Very memorable. We will be back, even if it's just for the truffles!",review,cPrgGOlHmuK45qDh2VhveA,0,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2012-05-02,-c964RnjItVW5eDGA-mxnQ,4,"I stayed here for two nights the first week of April 2012. Woot. Arizona weather really is the best. + +Overall, it was a nice place to stay. Purdy too. I bought a deal on Hotwire and wasn't sure what hotel I was booking until I paid, and it turned out to be this resort. Overall, very satisfied for the price I paid. However, I do not think I would pay $200+ a night here. At that point, I would say it's not worth it. + +The entrance is gorgeous and nicely updated. Trendy, modern, yet warm. Love the lit deer heads. I want them. It feels like a high class resort when you first go through the entrance. Once you head to the rooms though, it does seem like an older resort. However, our room was nicely decorated and very clean so no complaints in that area. + +If you are missing your pets from home, be sure to ask for a pet fish during your stay! I asked for one, well, I had to ask twice because they forgot the first time... But soon I had a goldfish in my room which I named Basil. (Due to me becoming inebriated on one too many cucumber basil martini's... Don't judge) + +As for the room/parking, it's very easy to park extremely close to the entrance to the rooms which we liked. It was easy to navigate in and out as the resort is fairly small. The room itself, ours faced the parking area, which we didn't really care either way about. It was close to the pool so that was good enough for us. However, I will say the bed sucked. When my husband turned, I too turned and bounced along with him. They badly need to upgrade to better beds. While not uncomfortable per se, I don't enjoy feeling every teeny movement of my partners. + +They had nice toiletries- C.O Bigelow. I enjoyed those little aspects. + +For an hour every evening they had free wine happy hour, which we did check out one of the evenings. Hey, no one complains about Free Wine!!! Nothing special, but it did the trick. + +Hotel Bar: Had some kick ass cocktails. Plenty of strength and tasty concoctions. + +Biggest Bummer? The pool area. Don't get me wrong, it's pretty. First appearances are good. There is plenty of shade from large palms and such and there's an area for kiddies with sand. However, there is not enough chairs for the amount of guests. And the guests that are there put towels on all the chairs even if they aren't around, which is not cool. Suggestion to hotel: Perhaps walk around every hour and remove towels if no one's been sitting there for awhile? It's not fair for a select few to have a chair all day, while others are unable to lay by the pool at all. And while there is plenty of shade, for me that was another downfall. Almost too much shade. It was hard to find areas to sun in compared to those covered by shade. It made me majorly pissy. Sun is why I came to AZ. + +Overall, a great place close to downtown Scottsdale and a walk away from the mall. Perfect for those who want to spend time near the action. If you can get a good deal here, it's worth the stay. Plus, they have a free shuttle if you want to go somewhere a few miles from of the place. (so you can drink and have a driver)",review,LPizY_yWtRRJsoVF6Z_h6Q,0,0,0 +ToJ9eJ9pKZXhlVyUmCFnJw,2009-04-19,Bq9F2a-ydPcg8I09U-1dSQ,3,"About 1.6 miles roundtrip from the Maricopa Ramada. Pretty cool little climb, but then you end up on a road heading to the summit. Near the top, you get to go offroad for a bit to the very top. You can see 7th St go all the way downtown. + +Total time up and back was 50:12. Pretty easy hike. This was my third of four mountains, one Saturday in April.",review,pIm17SVRo8IdhGoBD4qbnA,2,2,0 +hCS5eV0SCAY9LeeL36lz8g,2007-09-14,YuMXpDWSpNgJMHJWHWAhgw,3,"This place is the least douche-filled club of the douche tour in downtown Scottsdale. It is a huge club and in some ways it's like an anchor store in a mall - like Dillards or JC Penny. You can get a little bit of everything you want in one place... It's got its share of plastics and douchebags, but also has a number of college kids venturing away from Tempe to go dancing. + +The place itself is kinda cool with various rooms of different themes and a good sized dance floor. The VIP area upstairs is pretty neat if you can swing the fee. They have the requisite go-go dancers with giant boots on some nights and they often feature good local dj talent. + +I haven't had to wait in line to go here in years because I'm always invited to go - I reckon if I had to wait in line, I'd just not go. Don't buy a girl a drink - apparently, this place attracts some pretty (when it's dark) homeless alcoholics. These girls need jobs (and not boob jobs - that's already been covered). + +Myst is large enought that you can go here and manage to find a good time... drinks are a bit pricey, but that's par for the course in the area. It's a one-stop-shop for all your drinking and dancing and scamming needs. You're also very close to a slew of other smaller clubs of the same sort if Myst isn't happening. + +One of the best parts is that it's across the way from a pizza by the slice place that stays open after hours just to feed the drunk idiots so they can ""sober up"" for the drive home. Sometimes I go here around 2am sober just to people watch... on any given night, you're likely to see either a fight break out, some drunk chick puke on her hair, or someone crying over something stupid. You also get to see everyone in the harsh fluorescent lights not looking their best - the shine and polish is gone from their outfit and the product in their hair has quit on them and the girls' makeup has given up long ago - plus, they are too drunk to suck in that gut or push out that chest. It's very amusing. + +Yes - Myst is a good place to go if you want to go clubbing in Scottsdale - send your out-of-town friends here... locals who aren't into the scene will loath it. I pretty much do.",review,Cp-PV8rsypbO-xBrQ6KmQg,3,4,8 +PWG28q4JFOc8FiRBjnfCkA,2012-10-31,I24YW1eO5guMJ-_5ABcAPA,4,"The Fries Need Work! I have been here several times now and the fries have been a disappointment . They are not the crispy fluffy potatoey goodness that Belgian fries are supposed to be. + +Having said that, everything else from the brats to the beer to the service is worth the trip. + +The outside patio is like being at a German Biergarten without all the kitch. + +Check it out!",review,1SLgU2qwQgU5fQLcQwpIDQ,0,1,0 +tZXPhvufHhfejGrRp554Lg,2012-05-18,TmYHptKPJIlvCaRHNr4n_Q,4,"I love this place, so cute and trendy, and great food! love the crepes but my fav is the BBQ pork sandwich. its so flavorful with avocado. +Pastries are great too. Great place for lunch or afternoon tea.",review,Zm2k6dJtqKDz3pZ70SwohA,1,2,1 +JBCBlVaHfZUZrq-lQfryDA,2011-12-24,TT5vCKoGm9ayeg0gt76uNg,3,"I work in the area and come here maybe once a month when I have a pho craving and need a place near work. The decor is relaxing, and the music is pleasant. I find service to be fast which is really important during lunch. + +On one side, the prices are a little on the high side, and the pho is somewhat bland. On the other side, a lot of my American coworkers won't go to a mom and pop pho house. Pho Dalat is somewhere they would be okay with. + +If you're on that side of town.. have a pho craving.. then Pho Dalat will definitely cure that.. but don't get expected to be wow'ed by the complex flavors of the broth",review,9VF522wucngr7m9wzXa5nw,1,2,0 +5GpvSL1tlAjpgdJKZ5eLpg,2012-08-29,mnVeOY8NmGCsg1GrfiAzUQ,4,"I went out last night in search of a restaurant with good soup, but instead decided to try Texas Roadhouse. As soon as you walk in, you feel welcomed and right at home. The staff are all smiling and welcoming you, and just the atmosphere of the place was great! Roasted peanuts await you at your table, along with some delicious bread! I had a bacon cheese burger, which I could only finish half, while my husband had a steak that he actually enjoyed! Our waitress kept up with the drinks and checked up on us enough, but not to much to where she was bothering. All in all the service and food was great! I will definitely recommend it to others, and be back myself!",review,6mi3ytiQyCXVNSNP1OzGHw,0,1,0 +O-Xa9GCFWI65YiBD5Jw_hA,2011-04-16,UFhDyg9xaZEh9qZaTQbSPw,5,"I am so loyal to Durant's that I feel like a heel...but City Hall was divine. Steaks, sides, drinks...the only thing we didn't have was dessert...but $1100 later, who could afford it?",review,sjdQ7sAT6G3ibRRkFKrDlw,0,0,0 +mjoxSQR7bFQtlIIjfNfaSQ,2012-10-29,-BGRfj70QmXCgSEI0rAPCA,5,Great fresh food and vegetarian options! I will definitely return!!,review,tI5iYnvKgfmAWn2dbozMTg,1,1,1 +fF6m3qsD5blnwuZRuYhzWg,2010-01-28,cN_1PcgBj-kMUFadI6qrmQ,4,"Reviews of this place are all over the board, but I always eat there when I do my yearly Scottsdale gallery crawl. The food and ambience, a series of indoor and outdoor patio rooms, are quaint and very satisfying, with good size portions, and a very friendly staff. At least to me they are. I was last there in late November and had the days special, enchiladas in a poblano sauce which was quite good. The salsa is spiced just right.",review,_hiTqu2Yh0VNlNFB_ZfJ0g,0,0,0 +8cL7aJVKTYmLguzXEAS3Lw,2010-03-18,PlnGSXnmZlyypv0COUWEig,4,I live in north Phoenix and believe me there needs to be a lot more quality dining out here. This is a gem. The atmosphere is tops. The food is consistent. The management actually cares. It's just a cool place all the way around! A lot of corporate establishments seem to yank popular things off the menu cause it's just not trendy anymore. Every single thing I have had at this place was delicious! Not one other restaurant has pulled that off. A place you can actually count on for a good evening. High five to the Yard house!,review,7eI3y-s25qWi3Y9zpHCUpQ,0,0,0 +YKOvlBNkF4KpUP9q7x862w,2011-05-11,s8E7eh8VX9dnegOH8t3ONA,3,"I've been wanting to try this place for awhile after hearing good things about it and reading the menu. I realize now why the website doesn't list prices-- the mission is hideously overpriced! + +We ended up on the patio since they weren't seating in the main area yet (at 6:30pm? For reals?) Our waitress was nice and attentive. She noticed my water had something floating in it and replaced it quickly. My husband's water glass was dirty too. She brought us out two sample size frozen peach and strawberry margaritas which were awesome. Much better than the rocks margarita. + +No complimentary chips and salsa which would be ok if they offered something else like Barrio. No happy hour either which was disappointing. + +The street corn was good, but I've had much better. The butternut squash tacos were out of this world. My husband liked them better than his mahi tacos. I just can't believe they have the gall to charge $12 for 3 tiny (3 inches in diameter) tacos. They also charge $12 for guac made from 2 avocados. I'm not sure how they have survived in this economy. They must be very slow when the tourists leave for the summer.",review,o2CGc1kQHEFkYOECM3NFdg,0,1,0 +8nM_BMADIhc628ZlThRsmw,2012-05-28,lEtOERQUONvHV4bjP0_x5g,2,"My regular nail place was closed today so I took a chance with this place. I called ahead and was told it would cost $25 for a gel manicure..Great! They were busy and I was asked to wait a bit...no problem! The lady that greeted me took a look at my nails, which was a dark red gel manicure, and told me she would start me in a soak. She asked what color did I want and I replied that I wanted white tips. 30 minutes later the lady that signed in after me was called first then 10 minutes later I was called and told to soak my nails in soapy water bath. I sat and soaked for 20 minutes while the workers worked on people that walked in with ""quicky"" needs. Finally, the lady that greeted me came over and said I should have been soaking in acetone and not water...she apologized and started the acetone soak. 30 minutes later, and after I scraped off most of the old polish myself, a man started my manicure and my greeter finished it so the man could start a lady's pedicure who had been soaking her feet for 30 minutes and visibly pissed. When she was done with me she told me that the next time I come in I need to tell them that I have old gel polish on so I can be started with the correct soak. Really? +I was relieved to finally get out of there and all ready to pay my $25 for the services. I was told it would be $25 for the gel manicure AND $5 for the white tips! Wow! Really? I know it was only $5 extra but after spending the whole afternoon there with bad customer service the extra 5 bucks seemed outrageous. +I'll wait for my regular nail place in the future!",review,fbI36KFLubq5adz8lzX3Rg,0,0,0 +zxjMiqlfUuIQRltSuj9FpQ,2011-08-05,HmfF4Bbrt757h2uXv8op2Q,1,"Sadly, I'm giving this place one star and an explanation why it is only getting one star. The Manger/operator guy. + +Sure, the food here isn't all that bad. Probably a half a notch or so higher than most of the hot slop fast food you can get for lunch. Most of the crew members are pretty attentive, don't seem to be meth addicted, and I see them cleaning the tables on a regular basis. Looks like the crew changes over quite often, and I know why. + +My beef is not with the crew members, oh no. Not with the food or cleanliness of the store. Nope. The Manager guy, the guy who looks like a real pussy version of John Leguizamo. This guy ruins about every trip I have to this joint. That is my problem with this joint. Elaboration will proceed now. + +This guy is without a doubt one of the biggest assholes I have ever encountered in the fast food industry. Actually, one of the biggest assholes period. What a douche bag. Seems like any time I have a coupon, this guy will literally butt in the middle of the order, give me a ration of shit and do about anything possible not to use it. Seriously, what is it, 30 cents? I had a store coupon that was on a tray liner a while ago and this nutsack got in the middle of the order, cancelled it and refused to let the coupon be used. I asked why and he said it was not legit (why was it on the tray liner then fuckhead?) I checked the menu, they would have lost 10 cents. Lady taking my order after P.J.L. (pussy John Leguizamo) walked away pretty embarassed said ""sorry"" Not her fault. Never saw her working there after then, was probably tired of that guys shit. I don't blame you. + +Last trip here, they have promos on their drink cups for free shit. Awesome. We all know this is the garbage that costs them nothing but I am a sucker for something free. On my trip before the last, I got one for a free corndog. SCORE! I cash it in on my last trip, and the guy ringing up the order said it would be on a different ticket. No sweat, I could give a shit less as long as I get my corndog. Go to get my order, ask where the corndog is. P.J.L. butts in the middle of the order, says ""This is your order, this is what you have"" and was a fucking prick about it. Me, the customer. Yanks the receipt out of my hand, gives me an attitude about it. Who the fuck talks to a customer like that, even at a low rent fast food joint? Fuck you. Seriously. The guy who took my order tried to explain the situation and dicknose literally looks at him, puts his hand in front of the guys face, and says ""ssssshhhhhh"" and snaps his fingers the same way I do to my dogs to keep them barking or eating drywall. Who degrades their employees like that? All he was trying to do was explain my free item was on another ticket. Instead of listening, he made a complete asshat out of himself. It was a corndog, what does that cost you anyway, about 12 cents in batter, a stick, and a combination of horse eyeballs and badger penis meat? + +Dude (cashier guy, tattoo on your arm), tell that guy to get fucked and get a better job. No one deserves that shit. I am actually ashamed I didn't say something for you, I truly am. + +What would have normally gotten a decent review is what it is. My rant speaks for itself. One shithead ruins it for the ones working for him. For the ones working there, I will pray for you. You need it. P.J.L., get out of there and become a pimp in Tijuana, they need midget controlling assholes over there. You would do great at that.",review,KgnQz4WFT892AXmimnP4jg,2,1,4 +imSAkSzL5X1rUc3Z1ZMYeA,2007-06-30,O7jeV2E4qoG0JW2jbTdOOw,3,"Located along the infamous, gutted for future LRT, Central Avenue is Community ( you know, like rainbow community) Florist. Serving the sistahs for years is a helpful, friendly and knowledgable staff. Prices are well below the chain florists here in Central Phoenix and I always like to help the small business owner, especially during this construction madness. I've purchased flowers here that last well over a week. They also have an eclectic collection of vases, things for the garden, cards, etc. So if you're trying to woo that special someone, or perhaps you messed up with the mister or you simply wanna say to yourself, ""I'm special. I like myself. I deserve tulips""....get on down to Community Florist. You know it's about time ya'll stop to smell the roses...",review,C8ZTiwa7qWoPSMIivTeSfw,10,12,12 +NZ4V7rl7nevZPOdySgg-iw,2012-11-30,zjof_JYxVbigFjyyjYUo5Q,1,"Tried to eat here Friday night for the seafood buffet. We waited in line for 90 minutes before finally giving up. Would have been much sooner but the drive down there from my house is almost an hour. + +They have three lines, tiered based on the level of player's club card. The diamond card holders waltzed right in and the hostesses would seat from that line until it was empty before anyone from the 'lesser' lines would be seated. At the end, we stood still... didn't move an inch... for 20 minutes. So no-one from our line was seated for 20 minutes while dozens of people waltzed right through in the diamond and platinum lines. + +What a fucking joke. Waster my whole evening trekking down there dreaming of crab legs just to be snubbed by them. + +Never, EVER again.",review,F0dO68TECqEJBhBJ4P0qVA,0,3,1 +GJIl37k1Kitq5r43eUZ1Kw,2012-12-12,poi9S1psDrfhVeUpYWcg-A,2,"This is the first time I've had a bad experience at an Oreck store. My 6 year old sweeper suddenly began spewing dirt out. The bag wasn't close to full yet and it didnt appear anything was stuck. The sales associate without opening it up began to insist I needed a new roller brush for $40. When I showed him it looked fine to me and wouldn't that be covered by warranty, he got upset with me and began stomping around. I also showed him a warranty sticker from 2010 on the machine which stated that there was a new roller brush installed and also asked him to look up my Oreck warranty. He found my name in their system and then began shoving my sweeper at me insisting I just take it and leave then, since I obviously didn't trust him. This man was totally weird and his behavior and attitude felt very unprofessional. I still like Oreck but do not recommend this store.",review,Kf5tnfXtIy-torOrHY3nIA,0,2,1 +P5a2hK5G64J7DcNwLAPhuA,2012-05-11,fFzKn4Mi5twA29c5emJXQA,4,"Loved my visit here. I was talked into the meatloaf for dinner. I have never ordered meatloaf at a restaurant, but tonight I did. The combination of meatloaf, and a bit of mashed potatoes and gravy on my fork......HEAVEN. I was sure to chew in every corner of my mouth....my taste buds were going crazy.......",review,gN4JuiRC2sIssc1qijg4Zw,0,0,0 +X5QTGpPfqXFtmtizsGAksw,2008-11-17,E2_iMgob9t9_vg8FazTJJg,4,"My new favorite Mexican place in Tempe. Love their tacos. Their menu only lists them individually, but feel free to mix and match. I usually go with one camarone and one pescado. The shrimp are small, but there are lots of 'em. And the chunks of fried fish are bigger than the taco itself. Portions are generous - I'd have to skip breakfast to be able to finish more than two. Service is friendly and efficient - easy to get in and out during your lunch hour. Also a great spot for happy hour.",review,zHH2Iz49wCZYYDLBTv0YOg,6,9,4 +roTWGaU-RcJ06l8cjFw7xQ,2012-12-30,9W0qZLmVwVJkSy0_kvI_YQ,2,"Meh. Service was friendly, and the atmosphere is bright and festive, but it's pretty Americanized Mexican food. I had a California burro ($9.49), which was a large size, and tasted OK, but for about 1/3 of the price and for about the same size, I can get a better tasting burro with the same type of ingredients at Los Favoritos. I've also had dishes with their Baja sauce, which tends to be too heavy tasting for me.",review,uZbTb-u-GVjTa2gtQfry5g,1,1,1 +NmYTwkqyaCtEg3wifBkxkw,2011-06-29,AN9C3kRIRMSdngWrjrJ4xw,3,"This place is kind of hidden and very quiet, but from the reviews it seems like they've got quite a few patrons! I thought the food was just okay... I've eaten here twice and I admit that the prices are excellent but unfortunately it's not enough to keep me coming back. Staff was pretty friendly, so I thought that was a plus.",review,3Zi1udoY2iT9s8Q3X6tgZQ,0,0,0 +5kuZhkdpKKu9d_dTflOh4A,2008-06-01,T2ccFelKcV0iD3KOKMpdnQ,4,"Totally a locals hangout. + +This very unpretentious wine bar is a favorite. The owner, Darlene, has a great selection of wines from smaller labels for you to try. If you're not sure what to get they'll help you find a bottle in your price range. They've got the cheap stuff all the way to the $80+ range (if you feel like spending some money). + +You can buy a bottle at retail, open it up at their bar and enjoy it with a nosh. Lots of smaller appetizers (cheese and crackers, etc). Or, order by the glass/flight from their bar. + +Checkout their website before you go. Or if you live in the area, subscribe to their email newsletter. There is something different going on every day (live music, tastings, specials, etc.)",review,v2rbY-d-yam7Qbfb9jkbQg,2,3,0 +Ft7BXN0D9x_XcVd-VZeLeA,2012-12-19,yctTSqpVcJqW1nA4SsVdpA,4,"Pretty good food. Super friendly service. Very clean. + +First time I have had duck at a buffet and it was pretty good, just not the crispy skin. Lot of seafood items. They kept things well stocked and didn't just dump the new stuff into the old (a health code violation) They pulled the old pan out and put the new one in. + +We will definitely be back.",review,nT8v1ljwuh_Mt5lBkO0gmw,0,0,0 +Y-5knOy4atrpy-TJU7gEfQ,2011-02-25,Erx-PelmwvIvoEqs4TUuKQ,1,Angry Bro Bar ! Please go here if you wear size smedium affliction shirts you will love it. The bar is lame. Kid you not there was not five minutes that went by where two people didn't try and fight each other.,review,0S3xCHTktjXx-1AVf_NQCg,0,3,2 +En4UyDiGgmQuWq__50RAgA,2010-02-22,V_bLJ6iJwBv6QX5a-AwffA,3,"I really didn't think this place was all that great. None of the food that I ate was particularly very good. I think the best thing I had were some sort of sweet and sour meatball things. Everything was just hard, overcooked, or flavorless. I wasn't really impressed with the options available either. + +The saving grace of this place is the BBQ station and the sushi bar. The bbq looked 1000 times better than YC's Mongolian freeze-dried junk. The sushi was decent too. This place is just middle of the road for me. I can't blame it for having over-cooked food...it's a buffet. But still, I've had better.",review,fev0iI-XDrteD4SYRKjiUw,2,2,2 +nts2OALwvyvfNh9focRZ3w,2010-01-26,WcdQAdv76EryJpLI_-eO4g,4,"Reasons to Heart: Breakfast All Day, Self-Serve Coffee, Modern Hip Decor, NYT, Cholula, Inter-generational Friendly + +Reasons You May Dislike: BUTTER PARTY, Small Menu, Awkward Market, Bizarre Combo of Self-Serve/Service that is NOT Apparent, Kid Friendly + +Reasons to Be Here: Your friends you lost to baby-making Suburbs, IKEA, You are Near the I-10 and Do Not Feel like Sushi, Ace Hardware, You want B-fest after 10:30am on a Weekday, Dad Wants Burger, you Want Organic Local yogurt/parfait + +First time here with my friend's parents, as we walked up, I noticed an antique wooden bench with multiple kinds of newspapers, including NYT, held down by an old iron and an Open sign with neon on a skateboard. Whoa. What a liberal hip person coding of an entrance if I ever saw one! Inside, a bright modern airy space with concrete floors, exposed ceiling beams, bright green walls and exposed stainless steel industrial kitchen, I was super impressed by the brightness the huge windows gave the place as well as the cutting edge furniture. The menus are charming chalkboard options that have breakfast all day, kid's menu and lunch served after 11am. All priced between $4-$11, alas there are vegetarian options but this is NOT a butter free place. In fact, it is a fucking BUTTER PARTY. So get your LacTaid if you can do it! + +The slightly hipster staff (the guys look like that dude who played Keats in Bright Star) are amiable at the counter but after ordering my garden veggie sammie I was dismayed to realize they had pastry cases hidden in the counter (you just basically look up the whole time then realize after swiping your debit card your other options). Also the drink menu is awkwardly displayed to the far right of the main menus (um, I would've wanted a soy latte instead of coffee...). After paying at the register, there is the bizarre scramble of figuring out what you have to get yourself. + +There is a large bevy cooler that has wine, beer, soda, juice, water, etc and was a very healthy selection (not a poor one at all). Awkwardly placed is the water, iced tea and coffee station where people are trying to read the menu before ordering. Most tables are four person tables with two people seating around the windows and large community tables towards the L-shaped back, along with bar/counter seating that views the cooks station. Each time I went I ended up at the same four-person table near the condiment table stocked w/catsup, Sriracha, Cholula hot sauce (oh shit). + +My first experience I got ginger beer and a veggie sandwich. Now, as a vegetarian for over 12 years, and a lactose-intolerant for over 5 years, my expectations were way low. Instead, I was fucking IMPRESSED. The bread ended up soggy due to the herbs mayonaisse cream dill sauce thing with incredible local roasted veggies with really good bread. OMFG. I mean seriously, I can't remember much of the meal cause my brain went somewhere spiritual. I also got the fresh fruit on the side, and a great deal with fresh berries, grapes, kiwi, etc. I managed to fit it all in my tummy (and felt def. overstuffed-I should've kept 1/2 of it). My companions had the pulled pork sandwich and killed it, the other had pancakes. + +Today, I woke up and I wanted breakfest. Not Essence, Gallo Blanco, Lux, Wildflower, def. NOT Harlows, I wanted fancy pants American style breakfast I hadn't had a billion times before. Located right off the I-10, it's a fast drive from Tempe, and I didn't know what to expect for a crowd around 10:30 on a Tuesday. Turns out, Tim and I were def. the median age here. Mostly older patrons, couples, families, business deals, co-workers, moms with toddlers (they have plenty of nice high-chairs, btw). I had to get the pancakes ($6) w/fruit ($1) and side of potatoes ($3) and coffee. Tim got the rotassarie chicken with grilled corn and hand cut french fries (I think under $10). Seating was easy, food came out together within 15 minutes. The pancakes were delicate, almost crepe like, with a buttermilk taste but not too cinnamony and a little dry and thin (in a good way-sops up the butter and syrup). The serving of fruit on top was a little small, but all good quality, the potatoes were home-made style with sauted onions, skins still on. His plate was huge with a grilled corn, the fries still had the skin on, and the chicken looked great and very greasy (which he killed). We had to remember to get our own utensils, napkins, and our own drinks but the staff checked in periodically and after finishing our plates, the dirty dishes sat around for 5 minutes, I believe due to the insane lunch rush that came in! Seriously, the place exploded! I was happy Tim had bought the cookies he eyed earlier so we skidaddled after using the nice, clean bathrooms. + +Now, eating yummers Blondie cookie and chocolate chip cookies that are greased through the paper bag, I think I will have to ride my bike here to justify the butter party celebration!",review,mfvezpz6ohS0NQk3DZdvqQ,6,10,10 +TfTlOE6h9E9o34dEkw9L_w,2008-01-06,IxgZR5v1SfzOUkOUucjFUg,4,"More like 3.67 stars, rounding up to 4, but not any more than that which would bump it up to 5. + +Yet. + +Let me explain. + +1) Rose & Crown - The Hours. If it is really meant to be a British pub and a new asset to downtown nightlife, it needs to strongly declare A) YES! WE ARE OPEN! and B) YES! WE ARE OPEN *LATE*! When you're turned away when you excitedly show up at midnight on a Saturday because they decided to close for whatever reason, you're not going to be too excited about trying to go back the next time. What's a British pub doing closing so early? I went out of my way to go here, to experience this new bar and enjoy its offerings, and was sent packing. Meh. So I was surprised when a bunch of Yelpers decided to make it a meetup spot a few weeks later. Well, maybe this time, at 10:30, we'd be more fortunate with it staying open. + +And we were. Rock on. + +2) Rose & Crown - The Setting. I gather that the business owners are extremely limited with how much they can change with the house since it's probably a landmark with stringent regulations on how much of the interior can be changed, but since I've eaten at Circa 1900 a number of times before it vacated the premises, walking in here felt exactly the same. Sitting at the EXACT same 4-top table I ate before. The room hadn't changed one iota when it came to layout or furniture. Even the angles the tables were placed at. That was a little odd. The only main changes in the front west room were the giant visages of the Queen and good ol' Winston glaring down at you. In any case, it was kind of hard for me to make the mental transition from ""this is a sit-down restaurant"" to a ""this is going to be your local English pub"" when it comes to the indoors. Was it nice? Definitely. It's really nice inside. But pubby? No. That said, the front balcony is a really great location to hang out on, and I can imagine how great it'll be around springtime. But the balcony's more an asset of the great old house itself. + +3) Rose & Crown - The offerings. Standard selection of beers, including good ol' English standbys like Newcastle and Boddingtons on tap. Food menu not too big, but I thought the fish & chips looked appetizing, so I ordered those. I was skeptical, but to my surprise, the fish was great, as was their spin on the tartar sauce. Fries were also tasty, but fries are fries, and I'm going to devour them anyway because I was crazy hungry. But all in all, thumbs up on the food. + +4) Rose & Crown - The service. Was kind of there but more present at the beginning and then invisible near the end when were ready to leave, thus having to go back inside, tell the bar manager what we ordered since he didn't have the bill, and then pay him instead of our server. Kind of odd. + +So all in all, as I said already, 3.67 stars. I'm definitely willing to go back there and be open to editing my review and increasing its star wattage, but for now, it hasn't completely won me over. Definitely has a lot of promise, with its abundance of Britpop playing and proximity to Bianco, the sporting venues, ASU, etc., but they need to work on being consistently open late before I think about making this one of my definite go-to institutions.",review,htC49ZwXiKNka5cp0GKBfQ,3,5,3 +iCEBW0cHK3jDUFXGni6n-Q,2009-04-07,oVPjOciWKB-qb7t5ITYTPg,5,"Whenever I get my car cleaned, this is the place that I'll always go to. They're nice, efficient, and they do a great job. My car is still shining a week later! + +The wait is very minimal. The staff works together fantastically, and you can watch them clean your car so you don't have to worry about anything getting stolen. Yeah it's a little small, and a bit shabby, but like the first reviewer said, you don't go there for the waiting experience! + +Definitely worth the money!",review,1IRyTTXa__KRxhxnz8fS5w,1,1,1 +GwSdGrvaXi4BdXNSWKn-EA,2012-03-05,9i13Ws7bRyIKhD3KADi4xg,5,"I could spend hours in this place. In fact, I know I have. There are so many things to look at and it's way more than just books. They have a ton of cards and stationary as well as fun trinkets. If you're into used books, this is the place to go. I've found nearly mint condition vintage books here and they've made the perfect gifts. The people who work here are great as well. They're more than willing to help and offer good recommendations. This is a go to if you're looking for a good read or just want to pop in and explore.",review,037gJ6fmcXCW1ajls5tr_Q,0,0,0 +gWP6ofoyTbK0SZj1i_XqNQ,2012-04-28,LlJZQHDsWAoIxdKLrPfHbA,2,"Winco Foods is all the rage now. Will this continue or will Winco lose it's luster once it's just another grocery store and the new kid in town? + +There's nothing special about Winco. It's your typical grocery. I'm not a savvy coupon clipper or price matcher so I cannot attest to the savings to be had at Winco. A thrifty shopper I know claims the savings are to be had. + +That said there are two negatives that shine brightly at Winco: credit cards not accepted and cheap bags. + +Do not come here if your earnings are running low. I just gathered my weekly groceries and expected to charge 'em. Not a surprise I was looking forward to after waiting in the long lines. + +On my first visit most of the bags were torn up the seam and the handles were split. For one reason or another the cashier actually helped bag my haul. How she could hand over bags so blatantly ripped is beyond me. + +On the plus side, Winco stocks Shasta Tiki Punch. + +Winco isn't a terrible place but I don't see any reason to jettison Fry's and Target (unless I'm in the mood for Tiki Punch). + +Take it or leave it.",review,gg_OKjOAl_vVmdh5ZETuiw,0,0,0 +PdWe3jF9YEu5fWBiQXZIgg,2012-08-18,T8MfB8D7h8_rWyybMFB07g,4,"Food is whatevers, drinks the same. However, this DnB compared to the one in Tempe is much better if your'e really just interested in getting some game time in. The on at Tempe Marketplace is crazy busy, like 11 people waiting in line to play basketball crazy. When I go to an arcade and am already dropping 20+ bucks to play games I want that gaming experience to be nonstop. However, the drive is really far for someone that lives in Gilbert... so that's really the only reason why it gets a 4 star.",review,vNzDyLy20GfV4T_0Nm_Wdg,0,0,0 +vk7U4WeUKJWteORW5hba0g,2011-07-03,z4U744CDNXd6JHtBN5EQ1w,5,"Food is great. Really good deal, lots of tasty food for a great price. My favorite combo is the Pulled Pork sandwich with side of Mac & Cheese & Coleslaw & Kool Aid. Founded by former NFL & ASU Football player they know how to barbecue I truly recommend everyone trying it out. The atmosphere is not that inviting yet the food is worth staying and will get you to come back I can guarantee,",review,Vh7CdxGFglD0Tgfm0wtCPw,0,0,0 +dn9sB0Kok8cnkDhpcl7YCg,2009-10-05,Tv-82JIlXHeRRzJ1_kLTNg,4,"today was my second visit to the gyro house. i was craving something mediterranean and remembered this place isn't too far from work. located in a nondescript ... no, that's not the right word ... rundown ... nope, that's still not quite right ... ok, completely ghetto, half empty strip mall that also houses a chinese restaurant and a second hand clothing store, the place does not look promising from the outside. inside, there are 15 or so tables, comfortable molded plastic chairs and an extensive menu to choose from. everything on the menu is fairly priced with the most expensive being ""dinner for 2"" at $21.95. fountain drinks are $1. sandwiches ($5.95 - $6.95) are served with fries. i had the homemade falafel on a pita with super secret spices, fresh lettuce and tomato (and onion, but i picked that out) and it was yummy! french fries were hot, crispy and unsalted. i prefer them that way ... this way i can salt to my heart's content. anyway, the place isn't fancy, but it is fresh and clean, family owned and serves up some really good food. if you dig fancy, look no further than the back of the restaurant where they sell some pretty fancy-schmancy hookahs, and prices look fair to boot! so there you have it ... homemade falafel, french fries and fancy hookahs. what could be better? to me, not much. gyro house has earned a solid 4 stars from me.",review,GyFmGA5UQZ4pXdx1lUH86g,3,2,1 +tZXPhvufHhfejGrRp554Lg,2008-06-20,fXc0_BpPJ1jY91g4wHRtgg,5,Yay!! This place is fantastic. Great pastries and atmosphere. I can't wait to go back.,review,PQrq5tz1DJ0V26taOqcSGA,0,2,0 +IIbdmP2RwBwttQf36cf44Q,2010-09-14,sUeefTrD4TV66qzd68DdkQ,4,"EVERYONE loves to harsh on Arizona for being such a hateful place (including me!) However, I've had nothing but great service at the DMV! Granted, my morning excursion today didn't get completed. However it wasn't particularly crowded and I got to talk to the woman at the information desk within a minute of entering. Rather than direct me to another line to wait, she troubleshot my issue quickly, and even APOLOGIZED when she said I would have to go talk to my bank to clear things up before getting my title. Compared to DMV service in California, Arizona DMV is HEAVEN!!!",review,FZXXSGOw4BBWmB7eyAGSnw,0,0,0 +YJoph5UiUZ3BEb49vyFAuQ,2011-10-16,RNKES7HZVym3OEusFQeVkQ,3,"Typically I give a place that falls in the middle of great and bad multiple chances. For whatever reason it's easier for me to 1, 4 or 5 star a place after the first visit, rather than 3. As far as yelp is concerned, 3 stars isn't a bad thing - ""A-OK.""! + +The scene is strange. It's a mix of typical Arcadia, Scottsdale and the like. This place is more of a sports bar than anything, in my eyes, with better food than your typical sports bar fare. Seriously. There's like 14 televisions in here. + +Service is quick-ish. Food is fresh. The servings are very large. Some things waver on decent-to-bland, while other things are pretty swell. The mac & cheese is a pass, in my opinion, and not worth the $5 (for the small cup you get - ah, contradictory to my large servings note!). Some dishes have an overpowering taste, while other leave you wondering if you're eating food or chewing crunchy water (that sounds gross now that I've typed it out!). + +Beer and liquor list is pretty typical; nothing to note really. A few changes here and there and I could see it as a really decent spot. The same could be said for the food, really. + +I'll be back, yet again, The Garage just hasn't blown me away yet. Also, on a funnier note: ""Garage"" reads easily as ""Garbage"" on the menu, which was kind of comical.",review,hVkQbDk61hmIi5iVm3IkZw,0,0,0 +5kRug3bEienrpovtPRVVwg,2010-07-26,f5EAD7AuglWUSV_iBVgKng,4,"I finally made it out to the Rokerij's infamous happy hour and it didn't disappoint. My girlfriend and I had a couple of the small plates, the mushroom toast and stuffed mushrooms (both amazing! but I REALLY loved the mushroom toast) and some wine. The inside is really unique to Arizona and completely relaxing. Our server Eric was super nice and chatted with us a lot about the restaurant and the menu. + +We will definitely be back for half priced bottles of wine and happy hour very soon!",review,0LuN0DGTCkzpjAD3NyNN8w,0,1,0 +AryNioF9fxl8RYGiIE7fSA,2012-10-04,gAwXPbAmmy73sbGPhrvXmw,3,"I think this place is hyped up a little more than it should be. I've tired their bruschetta, pizzas and salads. They were decent and I have no complaints but nothing to rave about. A decent place to pop in to for lunch since they have counter service that you order at.",review,Mgm6xZjahS3HD7qqOyGtbQ,0,0,0 +sDozh6iTylTJD26d7xcgGw,2010-04-07,W1zj3YwqoT2xEEsrblkSGA,4,"I could see myself giving the Tavern a single star or two, but let me explain. It has a front and back patio, complete with misters. There's a full bar with Blue Moon on tap. The large size costs $4 until 9, I think. + +The reason for 4 stars is that they're dog friendly; a bouncer explained to me how the owner loves canines so you'll see them around often. It gets a bit crazy on weekends. So usually if there's a long line, I'll keep walking.",review,ZW6J3hLaTgy7ygZ6V0ZXug,2,2,0 +cjFDprdEXbDDdraONMy5Pg,2011-01-16,fL5olFKel_lVvW3sZNdoDg,1,"Gross, repulsive, appauling, disgusting, overrated, dirty, should be shut down by the CDC. You get the jist?",review,yp90PduP1gD7kgCLWuQg4w,0,3,3 +E7nk0lC317pGxMX56gvaVQ,2009-05-27,UsVJv5dK7yqQyKSyvuY9hA,1,"The guy who worked the front door Sunday night deserves to be fired. + +Sound harsh? + +Not at all. Had a supervisor overheard how he treated my friend he would have agreed. + +We pull up in the car. It looks fine from the outside so we send in one of the five of us in to scope it out (check the menu, see if there's seating etc). Normal behavior. + + +So my friend K, approaches the guy at the door and asks ""what type of food is served here?"" expecting a simple response like ""American"" or ""here let me grab you a menu."" + +Ready for this...?? + +His response: ""human food"" + +HUMAN FOOD?!?!?! + +HUMAN FOOD!??!?! + +K is just an average potential customer, asking a fair easy to answer question. + +Okaaaaay. Being the sweetheart K is, she goes with it (it: him being a meeeeeanie) and asks if there is outdoor seating. + +He sarcastically, mockingly and and outright D-bagly points out how there is a seat yourself sign right nearby. + +How was this guy ever hired? + +Again a more appropriate responds (TOOL:) would have been ""yea, the patio seems like it has some space tonight, AND I'D BE HAPPY TO GO CHECK FOR YOU"" or ""at this fine establishment it's seat yourself but usually the outside turns over quickly."" Sunday night's fine joke machine at the front door: I could happily give you several other decent responses you could have said to an innocent patron. + +Everyone and their mom has had some turn at being a waiter/hostess/manager/bartender etc etc in the food and hospitality industry, be it in AZ, SF, WHEREVER and KNOWS the #1 101 rule is: + +BE KIND TO THE GUEST +(kiss@$$ , the customer is always right etc.) + + +Add to that list: answer straightforward questions from your guests with flat out, non-acrimonious answers! + +Granted this review can say nothing about this establishement beyond the front door because we never made it that far.",review,di7_JgzhA69z9Yv0JHXV_A,1,1,2 +SOHp2b8quJEitFeuO58Syw,2009-03-15,yTJg-gv3kFDVYpdS-CoIlg,4,"This place is all about the seafood. Don't roll up to the Fish Market expecting a cool place to hang or a hip crowd. No problem on the crowd...lots of folks in a pretty basic seafood restaurant, chowing on the best seafood I've had in the valley so far. The hip is not here. Not until I showed up with my wife Audrey W to meet Kevin H and Marian H. You could actually see the coolness spread around the restaurant when we walked in...a subtle ripple, sort of like a gentle wave at a spring training game. + +So I arrived in Phoenix from Boston and have high standards for seafood. I had been craving fish & chips for awhile and decided to give Fish Market a try. I got a combo-fish, scallops and prawns. The batter was light and not very oily...+1. The prawns were very tender and done to perfection..+1. The scallops were tender, sweet and juicy...+1. The fish was done just right as well although it was not the haddock or even cod I am accustomed to in Boston. + +Everyone else was pleased with their food as well. I will be trying other seafood places in the valley but I'll keep Fish Market in mind as a standby.",review,P2kVk4cIWyK4e4h14RhK-Q,9,9,5 +41j3GB7M-Lwq284Pfb9zgw,2012-12-05,O0vFS0XQ3xtHifVdyqT9xg,2,"This review is for food- + +On recommendation from the waitress my dinning partner ordered the nutter sandwich, I went for the grilled cheese and we started with the wings. The wings were not what I expected nor wanted, the sauce killed it for me. The grill cheese was just ""okay"" and the nutter sandwich that received raved ratings from our server was a huge let down. We added the marshmallow and bacon (as recommend) but the marshmallow was no where to be found and the bacon with the natural (non sweet) peanut butter with super sweet jam was just.........not good. + +But! i do enjoy the space and the selection of beer. I have had friends who have gone since and rather enjoyed their spam sliders.",review,ybex2-iQv1Cr05LG-FUY4Q,0,1,0 +jJlOPkv4Xl6vxNzr51fnYw,2009-01-12,bw92u6I9h2cEG2vPWrewcw,3,"The food is solid, but not awesome. The room is kind of ugly and occasionally not too fragrant. + +If you want Vietnamese, you want it dirt cheap and you want it now, this place gets it done. + +If you want a warm, memorable dining experience, this is not the place.",review,RvyTTpBLqd8yHomBTW_Kpg,0,0,0 +NBmkXVdZd7TTr4eTFXHGMA,2010-08-31,ldxmHx0jyaBCTkmZZSM6Wg,3,"Friendly reps, painfully high tire price quote. Found em for $100 less, per tire while waiting for my car to be pulled up.",review,8BDGztlkmj2R50AL_tqleg,0,1,0 +vHgodZBJytT2r7K9c7SLMw,2009-01-16,yXa0QeaooHsFdAC0OsLloA,4,"Conspire is independent, open late, and yummy. Everything I look for in a coffee shop. You'll be a fan if you miss Counter Culture or Willow House. + +The owner makes a wonderful latte. He steams the milk perfectly, better than most baristas in Phoenix! I just wish he had brewed coffee. Sure, the espresso is good, but it is not a replacement for a thoughtful, well mixed, drip. No, I do not want an americano instead. I want a cup of coffee!",review,UL5__ullYCgKAHmjyBFwtA,2,4,1 +r8CwFUEQtL8gAT9KHnNhuw,2011-12-18,WxUJPQfKzLIpx3hgEBAocg,5,"My husband and I went tonight to teakwoods for the first time. We had a groupon. The place was packed. Different football games going on tvs all over the place. I didn't mind, but my hubby was in heaven:) Hostess told us every table was full except outside. So went outside, turned right around because I forgot about smokers, lol. + We waited about 1 min and the hostess asked us if we would mind sharing a table with another couple. We said sure. There was 6 chairs and 4 of us total so 2 empties inbetween us. It was same as if we had our own table. Worked out great:) + + We started off with the jess Jess boneless wings- Delish!!!!! Not wet like other wings in fact I think they coat them and then throw them on the grill. We Loved them! +I ordered a southern thang burger - my hubby got a Teaks touch ém all. They were huge! We each ended up taking half home. Not just huge but tasty. I loved mine. We decided to pay and use the groupon another time to ensure we would remember to come back:) + +Great place- waitress nice and friendly, good food- we will eat there again!",review,lMPTQT0jf6-S7AxhMoOZzQ,0,0,0 +-ftQeUsqwDkExRg6IYrubQ,2012-06-28,f_R1D8bIrZUdQFCeV3v5fA,4,"After paying $10 for a footlong Tuna and a drink at Subway (read the review), I was obligated to find new lunchtime stomping grounds. And I've found one. + +How someone is going to take points for ""ambiance"" in a Chicago style gyro eatery is worth my lolz. But, you're not going to a Chicgo style gyro eatery for ""ambiance"". You're going for good grub, and a bottomless drink cup. This place rocks for what it is. + +The decor is cool. I spent the vast majority of my meal staring at the posterboard sized photos of downtown Chicaga. I was lost and mezmerized at the fine details of the photos. I would bite, and stare. Bite, and stare. + +And there was much to bite on. This pita came STUFFED with succulent, tasty meat. I'm not a tomato fan, so I left those for those who are. My gyro was oozing sauce. I would take a bite, and while enjoying the deliciousness that permeated my over-stuffed mouth, contemplated what to do about the sauce on my fingers. KNOWING that if I dared to open my mouth, I'd be looking at the food I had just started to chew, but understanding that if I did nothing with the sauce it would drip off of my fingers into the basket. Quite the dilemma, I tell you. Bite, and stare.... Ooooh! Look! Fries! Mmmmmmm.... + +I was there at 11:30 on a Thursday, and it was less than crowded. Parking was no issue. + +All of this for less than $7. Yep. I'll take my $3, and give it to the bum on the street. Better than spent at Subway.",review,b0a6nLH0c8p5WJy1w7aO6Q,0,1,0 +LmVcYycG_VI3S6RNgqiriw,2011-04-06,NsS1BXKprxXiiRcfe0tBmw,4,"Like Red Robin, Carraba's is my go-to Italian joint that I know I wont be disappointed in. + +I love their bread and the yummy oil/herbs that go with it. I do ask for butter as well, but they always seem to bring out this frozen ball of butter. I don't get that. + +The best dish they have is their Pollo Rosa Maria. It consists of two chicken breasts, stuff with fontina cheese and covered with a huge helping of sauteed mushrooms. Make sure to get it with fettuccine alfredo. It's a must!... if you don't like pasta, I dont know what to tel ya. The combo of the two is a match made in heaven. + +They have great salads and their own special house dressing. Heads up on your ranch lovers. they do not have ranch dressing. + +As for their deserts, Im not much of a fan until they have their quarterly creme brulet. + +Good food!",review,_4lqpCYCqOQzbB6xQGGhrQ,1,3,0 +YKOvlBNkF4KpUP9q7x862w,2009-09-08,KfNq8JfqfpwsB2yA7TGwDg,2,"The service was excellent and the location was great in Old Scottsdale. For the price, I was shocked at the small portions of food, although nicely presented. I'm not a big eater, but after we ate an over-priced dinner, appetizer portions, we had to go elsewhere to eat.",review,tVoCVBUg-ubBMLQlX5_SVQ,0,2,0 +3-zvo4Y_Bagw6Yifvh1TPg,2009-05-09,S9m5BH1JuCIYLtoDsbXvCA,4,"Wine tasting with light food, or just wine to go - both are good at this location, and they have numerous bottles that you don't see at the larger wine shops in the valley. + +Most employees know their fair share about wine unlike Total Wine & BevMo that only hires ignorant, inexpensive, unskilled labor. + +Wines are served in proper glassware, by the individual glass, or in a ""flight"" if you wish to taste several. Located near Borders in the shopping center on the north side of Mayo.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +ybXlbfOjrKDdz5NoC-G9Gw,2007-02-28,x2aFqHHsGif-KWeW9oI-5g,4,"I have seen this place for years and years but had never gone in until one night awhile ago. It turned out to be a really cool bar with live music and great drink specials. + +It's a small place, but what it lacks in size, it makes up in character. It has a vibe all its own and if you get there early, you can sit right up front and check out the band. + +Do something different and go to Char's, you'll be glad you did.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-10-22,AKibA8GNkQdMUX_o0w6iAg,3,"I've only flown in and out of Pheonix Airport through Southwest, so i've only been in one section of this airport- but it isn't that great. THe food choices are slim and none are fab- I mean, really what airport had fab food- wait DFW does! Anyway- the Sky Harbor does have is a great view and decently clean restrooms.",review,n4RPA0Cuem4ygQxPIdLBLQ,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2011-09-22,-aSyAxQ9oZEtqZ4Ut2DlHA,2,"The food was AMAZING... +The service was mediocre. +The hostess ruined our entire experience.",review,Di_8AmiLBwNRrE68bsaLMw,0,3,0 +Vm_P0F8OfpXlW1rw0eLoMQ,2011-08-03,hU4zFQVGWU2ia11WHMgCbg,3,Had lunch here with Robyn N. and Rand H. the food here was ok and I liked it better before they did the so called renovation.All they did was add a mongolian BBQ and wash the windows. Some of my favorite things on the buffet were gone so I am dropping them down to 3 stars but still it was a good lunch.,review,ohRev2g3tvXpV3gBnhC-og,0,0,0 +b9dv7Q0A8XcJ44zzTDJeYw,2007-01-11,QUy0VNWnADUfRFeOw-ywtQ,5,"I have been Chipotle faithful for about 2 years now, and it wasn't very difficult. Restaurants such as Rubio's and the Blue Burrito just didn't stack up to a Chipotle burrito. Then came Qdoba. + +This restaurant is pretty much a carbon copy of Chipotle (2 of the employees on duty actually worked at my former Chipotle of choice). I had a chicken burrito (my Chipotle norm) so I could make as direct of a comparison as possible. + +The food was great, and afterwards I didn't get that ""punched in the stomach"" feeling that Chipotle gives me for some time after I eat it (I am convinced their rice expands in your stomach, but it tastes good so I suffer through it). + +I also picked up their frequent customer swipe card (buy 10 burritos get one free + free chips and salsa after activation). This place is closer to my place than any Chipotle, so I will be coming very often! + +P.S. If anyone if privy to the correct pronunciation let me know! +(ku-doh-ba???)",review,5E193w76Qlhoi1gkyakW2A,0,1,0 +r8CwFUEQtL8gAT9KHnNhuw,2010-05-05,NJBA8_Zcb5zZ5lxjQMZDOg,3,"first time here and i wasnt all that impressed. lets just say i was afraid to ask my waitress when she was due.. but thats beside that point. bunch of tvs tho i had to squint to see whats going on. my eyes arent that great but whatever. + +it was a wednesday so they had margaritas and mexi beers on daily special, which varies. had 3 margaritas fairly fast. felt nearly nothing. weak as hell. i expected to half stumble out of the place but really i was fine. + +decent selection of wing flavors. which i might start seeing as a bad sign. tried the El Heffe wings. dry and dusty but a decent taste, with no real kick like it says, except maybe in the stomach itself. and the extra dollar for them? shouldve been a dollar less. + +cant screw up peanuts. the peanut shells on the floor novelty was probably the best part of the place, because you cant be that messy anywhere else but a baseball game. thats an extra star in itself. + +the rest of the menu looked good so i may be back on a day with better drink specials and try something new to eat. ill update this shit if i do so......",review,duOtHUgA7iXzXUuAEIbdwg,0,0,0 +E2F25cRcYf_bWtvbCht0EQ,2008-08-25,cE1d9sRmPhK0rEWycLvUqg,4,"I thought I disliked brownies, but these are damn good. In fact, every flavor is delicious. I was pleasantly surprised. Holla!",review,g84VjttN28PWiv_WtdhnSQ,4,4,4 +GVg4GHHRblwY1MFlV1ubAw,2009-07-16,hHMczM9-lhqv_sDF6Gdc-Q,5,"My review is only for the purchase of a non-disposable diaper at this swim school. As soon as I entered, I was promptly greeted and asked how they could help me. I explained that I was looking for a non-disposable diaper for my lil'un and they asked about weight etc and found the perfect one for her. + +The lady explained to me that the non-disposable diapers are so good that even if for some reason there is an accidental Code Brown, if you know what I mean, they will not charge their patrons. They really believe in the product that they sell. + +Their swimming pool looks nice and clean and this could really be a fun place for little kids. I know they do parent and child classes here also.",review,zhVOlwBuEgdGlHjwgVf3Jg,2,3,2 +HBzv6vjTkeM-s_UIFCg2gg,2011-10-30,20IIoXS-PWR9thHa9ZWoeQ,4,"A short an sweet report about lunch.... + +This was a quick lunch with my best friend Melissa and was well worth it!! + +We were greeted by the counter person with a warm welcome and when I advised I had never been here before, she took me through a quick tour of the menu and suggested what to order. Following her suggestions was a great choice! + +We both had the same thing, The Hawaiian BBQ Mix. This comes with BBQ Chicken, BBQ Beef and Kalbi Short Ribs. I also added Teriyaki sauce to the Chicken. The meals came with 2 scoops of rice, a single scoop of macaroni salad and veg. + +The flavors were wonderful, the beat tender and juicy. The ribs were a thin slide and you had to navigate around the bones but it was delicious! + +For months I have been threatening to stop by but never have, Now I am sad for all I have missed!! Definitely going back!! + +Overall: This place is a keeper! Good service, great food, served fairly quickly....We are already making plans for your next visit! Enjoy!",review,0BT613A1PBxuwxUzjEb6VQ,1,0,0 +oWq_NiPJq20svbRCJ1hLGQ,2012-01-29,bb_bsu_zjTSgOZzbS5gbVw,5,Good works,review,nzhUfCzDUW8VFLc40nAtsA,0,0,0 +4VzaYvZntWBRbr8VmwCiWg,2012-06-21,5h0EVAee-RDbbKfhd6FB0g,5,A great value for a far superior hair cut than are likely to get from a national chain. We have been going to Tara for 3 years and she has created a warm and friendly environment that kids love. There are plenty of TV's for kids to watch a show if they are not big fans of haircuts.,review,feQpvbp8jGBWMuG5uqbk3Q,2,1,0 +lUhjcttOVyH9uNa0v6NFfw,2010-09-29,_DiQOmvy1EbXuy8Wvm9MZg,1,"I went here while on vacation visiting my friend. Neither of us had been there before, but I know they have lots of locations on the west coast, so we gave it a try. + +The staff was totally rude. Before we went, we called to check the hours. The guy on the phone was patronizing and acted inconvenienced to have to give any information. + +The pizza was blah - totally generic and nothing special. If you're going to have mediocre food, you better have exceptional service. Double fail.",review,P9OhxvmNepsq5Fo2ZokzYg,0,0,0 +u9MKnG0PqI8N7ixSfrrTiw,2012-12-04,hOcRdR_nAjp_mcTB38G6iQ,5,Always love it!! so good and good price,review,fDyt7FyHlFaEpeb1iLEzWg,0,0,0 +kJFS_3WlP6TFdNUYt6V6FA,2011-09-26,mSB78PqDRD7jE5g4yZuaMQ,1,"This review is for the bar only. +I had a date last week and was looking for a local bar to grab drinks at. I called Cycle on Wednesday and was told they would be open until at least midnight on Friday, and the guy was very nice. Friday arrives, and I take my date there, and when we enter the bar, the bartender makes a gas face and says they are closed for the night. I told her that I called just two days earlier and she just stared at me. No attempt at fixing anything, nada. One drunken patron at the bar yelled to open the bar back up, but I was over it. Well done cycle.",review,AYGHNy8gPxl2Q-etTT3hZw,2,6,6 +t6EzCDJEqB0DVBq4XQv6Ow,2012-04-01,jyLHPsY3ORieCtI_4if0Wg,3,"This is a difficult review to write. My family started eating here when they first opened. We were a once a week customer. Very happy with the food and service, pizza is delicious. +Then one evening, we placed our order asking for the special we always get, a 2 pizza deal. +When we received our order, they placed 2 medium pizzas on our table. I immediately asked about the pizza size as we had always received 2 large pizzas as advertised. It turns out they have 2 specials, a 2 medium pizza deal and a 2 large pizza deal. +The employee never asked which deal and the fact that we were there with 5 people should have prompted them to ask me to specify which deal. +I spoke to the owner of this location he agreed to make us another medium pizza to make up the size difference to which I agreed to. +Nearly 10 minutes later, the owner came to our table and told us that if he made us another pizza, he was going to have to charge us for it. +I refused and now nearly 2 years later, we have chosen not to return to this establishment. +My money is important to me and it should be as important to any business, especially a small local business... +I now choose a place slightly further away, but one that appreciates its customers. +Pizza - delicious +Customer appreciation - needs improvement +Hope some changes have been made over the last couple of years",review,gvB1Ja5gT4ut9R0I9EA90g,1,2,0 +8t80-omyflkywRfu9LPh6g,2010-08-14,9US-sQ_45cjB4hG0Qcmqdg,4,"My absolute favorite thing about summer in Scottsdale is that restaurants and hotels get SUPER cheap and do every night happy hours. Literally, best Happy Hour in South Scottsdale, by far. I originally wanted to eat at Culinary Drop Out, but the line was long and I was STARVING. Went into Wildfish, because even though I had never eaten there, and was left without my Bible of Yelp, I took a chance since I had eaten at its North Scottsdale, Big Brother location, Eddie V's, dozens of times. The menu is very similar to Eddie V's, but I would say, a bit trendier. Me and my man had appetizers and I had a $5 Mojito, and it was delicious. I had ahi tuna tar tar, a green salad with shrimp, shrimp cocktail, and by far, the best calamari I had ever had. It was like, salty, sweet, crunchy, and had cashews on it. I couldn't tell if I was eating calamari, or a dessert! Go for Happy hour FOR SURE. Great atmosphere, too...",review,wxapwb1gulmqGVCNxVWjBQ,1,1,0 +0udEgNqy5rLR5pZ4kD19Og,2007-12-19,kA3BXi97Cx4_-W5lbV_FMg,2,"""Honey I Shrunk the Lunch Specials and the Restaurant, too!"" is more apropos of a name for Thai Basil. Now don't get me wrong, I like Thai Basil. The food is decent and the interior is nice, but the tables/diners seem to be squished elbow-to-elbow New York style. Spartan, but slightly upscale, this restaurant ALWAYS seems to have a wait. + +The yellow curry here is my favorite with a delicious balance of coconut, spice, carrots chicken and potatoes. I can't ever seem to get enough, and I really mean that. The portions here are small, and while lunch portions are expectedly small, portions elsewhere (at Chanpen Thai, for example) are larger and less expensive. Elsewhere the Thai BBQ chicken comes with 1/2 a chicken, but at Thai Basil they give you three lonely strips like cheapos! The massaman curry and pad thai are pretty good too, but I feel they're just OK. I've had better. + +Service is hit or miss here. One thing that's consistent: they always seem to be understaffed. Once when I was dining alone (at a 4-person table) they had the nerve to ask me to move while in the middle of eating, to a 2-person table. + +To me, Thai Basil is style over substance. Not impressed. Next.",review,4_YfcfHkCem1onJFkItxjA,1,5,2 +Y3a3RkR97J_ReiKgiMXeJg,2008-10-08,i-1Uh8jR_xtJk2kPOt4BGA,3,"While staying at The Pointe Hilton Tapatio, we decided to eat here for our anniversary dinner. To sum it up, I've had everything better somewhere else. Nothing blew my socks off. + +Hubby is eating mostly vegetarian right now (due to a health concern), and he did really like his ""wild mushroom"" rigatoni. We weren't sure what was so ""wild"" about criminis and portobellos, but the pasta was in a light sauce with plenty of other veggies. His French Onion Soup was better at Capital Grille, my antipasto plate was far better at Craftsteak, and my ribeye was far better at 1130. They did serve a neat wedge of au gratin potatoes- multiple paper thin cheesy slices cut into a triangle. The gins are standard, but Hubby had a nice Bonny Doon Riesling. The free anniversary creme brulee was on the runny side, the vanilla was indiscernible, and the sugar crust was too thick- Ruth's Chris still wins that one in my book. Did I feel dinner was worth $120? Not so much. + +The service at dinner was great, and it was fine at breakfast. Again, everything was decidedly mediocre and way overpriced. I've had a better Belgian waffle at IHOP, my bacon was limp, and the coffee not what I would expect from the Hilton. Hubby's BLT breakfast bagel was better. + +Come on, Hilton! Is this the best you can do?",review,N-D-d1Z4UybdlkK1HxlNPA,3,6,2 +ABrSt3fsirLrUYNVrD3fbQ,2009-09-10,tBBloQyqI_B0If7ShHt49A,3,"I've been to the Greene House many times. In general, I think it's pretty good. I go mostly for lunch, and I order from the sandwiches & salads typically.Tonight was no different - had a sandwich. + +I went with my brother as a belated bday celebration. Ordered the roast beef sandwich with a side salad instead of fries. Had the pineapple rum cake for dessert. + +The first few times I ate at the Greene House, I was really impressed. I thought the food and service was very good. Over time, I've become less impressed. Tonight, the service was great - loved my server. Everything worked like a well-oiled machine. Good coordination between the staff, and we were kept well supplied throughout dinner. + +The food is not consistent. That's a big issue I have with restaurants in general. Maybe I'm harsh, but I really believe being inconsistent knocks a place down a few notches. The problem with inconsistency is that you don't know what you're going to get. If a place is consistently mediocre, at least I know I'm going to get mediocre. + +Tonight the real downer to the whole meal was the salad. Don't get me wrong, the sandwich was not great either - bun too big compared to the amount of meat and other filling items on the sandwich, not enough meat - but the side salad was really awful. First, if I moved the salad on my plate, there was a big pool of dressing on my plate. There is such a thing as a properly dressed salad, and this was not it. Way too much dressing. I might have been ok with that had the dressing been very good... which it wasn't. The balsamic dressing was too sweet, and was under seasoned (definitely needed more salt). + +The dessert was good. It wasn't great... but it was good. The rum cake, in my opinion, was too dry. Maybe the ridiculously large scoop of gelato is supposed to compensate for that, but I'd prefer a more moist cake and less gelato. I'm also not a huge fan of places where the dessert is almost as big (if not bigger) than the entree. Give me a couple bites of something amazing rather than a huge plate of something mediocre. I felt that this dessert fell into the later category. + +I'm going to admit that this is only the second time I've ever had dessert at The Greene House, so I won't pass judgement on it's entire dessert menu, but I'll say the couple times I've been there, the dessert/entree ratio was way out of whack for my liking.",review,Oz0XuMILEjSFoQ8na4k0Wg,1,1,1 +r8CwFUEQtL8gAT9KHnNhuw,2011-10-06,evEWx9S5J9rSBk_h0fjs3Q,4,"Upon first glance this is appears to be a very usual strip mall type bar but behind the black glass lies a more unusual bar and grill. + +We went on a Sunday for the Jets-Ravens game and it was a fun time.. This is one of those places you likely have passed a hundred times on the way to work or going to Scottsdale using Indian School Rd. It is set back into the strip mall so you would not see it from the street. Why Teakwoods is special comes from its extremely quality food which you would not expect from a place that lets you throw peanut shells on the floor. Like most bars it has a bevy of TV's and a rowdy but pleasant crowd. + +The food was really good though I would never call this ""fine dining"". An extremely great place to go when you want to be stuffed with semi-greasy food..I had their famous wings and I can honestly say they were outrageous. I especially liked the cheese balls which are hard to find as WineBurger stopped carrying them. + +No particular reason this place wasn't 5 stars..it just didnt have that 5 star feel..maybe in the future when I go back.",review,Cw-PSJBNFtzWvUNeBsLxTQ,1,1,1 +7SO_rX1F6rQEl-5s3wZxgQ,2011-12-07,XMm1bZYrVdoBpjGOd3xMnQ,5,"This place has exceptional food and pretty great service for how busy it always is. +I like it because there are quite a few vegetarian options. Before I started my vegetarian kick the Baked wings were some of the best wings I have had anywhere. + +Try: +- Mushroom Party Pizza +- Roasted Corn Pizza +- Baked Wings +- Red Velvet Cake + +Only con is the parking is kinda crazy.",review,3ONPPazUH-Q3XblYJIaA1A,0,0,0 +ToJ9eJ9pKZXhlVyUmCFnJw,2007-09-30,iyRO2M14G2x4n-KAB70fiQ,4,"We started our hike from the Central/7th Ave. entrance. This is quite a hike initially. You will be out of breath if you're not a cardio master. I've been working out 5 days a week for the past 6 months and I was huffing and puffing a bit. I felt like a chump because I was having a rough time at first, but after the initial hill, it's not bad. + +The views of Phoenix are beautiful, but like Dan E.'s review said......""Don't let the beautiful desert deceive you"" it is toasty up there even on a beautiful 85 degree day like yesterday. Always bring water!",review,O5Ny7V84d8NkPCQCwrWfCg,1,0,0 +4CMY6DwWo41UdwzE-TUW9g,2011-01-21,0eukKit44uJwwOtSw_TCpA,4,"So now I've been to two Ski Pros in the Valley and I'm pleasantly please with both of them when it comes to their merchandise. I haven't rented from them yet, but if their selection of clothing has anything to say about what they offer then I approve! + +From Spyder, to North Face to Columbia, they have everything to choose from. The ski clothes are adorable and trendy. And the best part? The sales! They have a continuous sale going on it feels like, and the rumor on the street is that a huge sale is coming in February. Count me in!",review,4ozupHULqGyO42s3zNUzOQ,2,2,1 +Ydc74ermKp1L4fYOrPvzXw,2008-10-14,_vtmqxjl6xdRd52No5k3Cw,2,"I was working for a non-profit organization and Amare was actually there. He was gracious enough to take a few pictures with some of our children who are clients, which was nice of him. + +But, as far as the food goes - it's bland. I've been here on two separate occassions other than work, and while the atmosphere is beautiful (the seats and booths are roomy and comfy and there are even more seats that stretches out to the back, leading to a small ""VIP"" section), the food is just not that great.",review,-twH-2L0l6AOlTDdp01wuw,0,0,0 +wnd-rMzAULvXx2bqjKDihA,2008-10-20,l9uLYHhrcNqp6smm2ERc5g,5,"Okay... just let me say, these guys are the best! My family and I stayed in Scottsdale for 5 weeks this past summer and we frequented Baskin Robbins almost every single night. No kidding. And, yes, my butt thanks me not for such goings on. But at any rate, we have never met such a friendly ice cream staff. I am a PITA when it comes to ordering my ice cream -- I like jamoca ice cream with almonds mixed in, then I like my fudge on the side and I like extra fudge. This sort of ice cream order has raised a few brows, and furrowed some in the past, but not here, not these guys! And the couple of times, my rice-high (from the sushi place next door) son dropped his cone on the floor, they were so kind and understanding about it, they just scooped up the mess while they joked around with my little one about all the ice cream they've had to wipe off the floor in the past with other customers, and made him a fresh new cone, adding extra sprinkles, for good measure. Viola! No more tears and only big smiles from that moment on. They really are the best! I can't wait to visit them again! :)",review,0YEHnDV4Pc0Cu6lqBC7jyA,1,1,0 +ke3RFq3mHEAoJE_kkRNhiQ,2010-04-12,lW4G0t6AI3lZQ6QSmv8DGA,2,"BBQ has to be one of my favorite foods and when a co worker suggested this place I was all for it. Living on the west side it was quite the drive but being that I am a BBQ fanatic I had to see what this was all about. + +First off Lucille's has a good location. Its located by Dave and Buster in the Tempe Marketplace. The look of the place is gimmicky but in a Famous Dave's kinda way. They have old school signs, mason jars to drink out of, and all the little fake things to make you seem like you have gone to Memphis or where ever they are trying to transport you. + +The service was absolutely awful. It took way to long to get drinks and even longer to get refills. Attitude the whole time. Here is a tip if you want a good tip bust your butt. Then you will have more money to pay for your tuition (half the staff is college kids). And do not roll your eyes when I don't want to try your suggestions. They tell you they smoke all their meats in house im not impressed. + +Now onto the most important part the BBQ. We had the brisket,half chicken and rib tips with a side of greens and sweet potato fries. + +The chicken was good. It had a smoke on it and was tender not real complaints. The portion size was good. + +Brisket was dry and you couldn't cut it with a fork. That tough. Maybe over smoked? Portion size tiny. 4 strips maybe 3 or 4 inches long. + +Rib Tips were dry and covered in sauce. Hardly any meat on them. Most places in the valley load you up on Rib Tips when you order they are a cheap meat. But not this place. You get a scoop full. Boo. + +Collard greens were disgusting. Cooked in some weird pork parts and they were bitter. Greens are not supposed to be bitter if cooked right! + +Sweet Potato Fries. You can't really mess these up they probably came frozen. So I would recommend these over regular fries. + +The starter of a biscuit with sugar on top was just weird. WEIRD WEIRD WEIRD. And the biscuit wasn't even warm enough to melt the sugar I mean apple butter. + +One last thing the house and spicy BBQ sauce's main ingredients are CORN SYRUP thats how they thicken it! seriously that should tell you something. + +Overall two thumbs down. Stay away there are plenty of other great BBQ spots in the valley.",review,JnRT9i2d71pY8D8ngzCz9Q,0,1,0 +l0c2pmxGYvCfeaCRiYGAvQ,2008-03-06,irmdZNNl1DmyNX43bzZN8w,5,"I'm giving this Urban a perfect rating, for it never fails that when I walk through its doors, I always find something I want (or could) buy - even if it's a gift for somebody else, like my younger sister or best bud in Detroit. I even found one of my favorite sweaters here on clearance for $20. I think this Urban has a better selection for women than the one in Tempe, so if I had my choice, I'd come here to browse and buy. + +Plus, it's within walking distance of Scottsdale Fashion Park, Borders and Olive & Ivy (the perfect spot for brunch/lunch).",review,APLIPfq1Rf8QyhHHk2uAyA,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2008-05-24,85ldy3awOwcrXb_pyZRESQ,3,"Wanting to purge my guilt for constantly demanding one of my suburban friends to come downtown whenever we go out, I recently dragged another CenPho friend out to suburbia so we could pay him a visit in his homeland for once. San Tan Brewery was our chosen destination. + +Will I ever come out here again? No, unless guilt once again consumes me. Would I come back if I lived in Chandler? Sure. (What choice would I have?) + +The food (an Aegean Stuffed Burger with fries) was good. The beer was even better. The service was annoyingly slow due either to understaffing or inattentiveness. The crowd was large and the place was packed when we arrived around 9:30, but at 11:30 (on a Friday night) it completely cleared out.",review,17PPxx8RxjOUD_nQZ1aHEw,4,4,1 +7_dU_XeJsEN4scI64vwNkQ,2011-06-27,yZvEn57bPyle_NLVHhCIHg,1,"This place is a freaking joke. Expect an overcrowded waiting room and at minimum an hour wait. They see children but there is nothing in the waiting room to entertain them so they are all screaming and crying. There's not even room for a stroller. Horrible, horrible experience!",review,eS6V4zze6XuDxzdIWx64gg,0,1,0 +ntN85eu27C04nwyPa8IHtw,2011-10-27,NdP0xjQ3Cqr3iDTlAJAyKw,5,"Saw this place on Triple D so I decided to give her try. My expectations were high and when I arrived I was shocked that on a Thursday morning the line was extra extra long. Had to wait patiently which when it comes to food I don't like. + +But needless to say the wait was worth it because when I got in there I was served quickly. I ordered the pork chop, eggs, and hash browns. The pork chop there is fabulous and the toast and home made grape jelly was good. + +I would recommend this place for breakfast to anyone who is in the downtown area of Phoenix. Make sure to try the bacon too.",review,q9V3RboY327jGyFAdCt1Zw,2,1,1 +FV0BkoGOd3Yu_eJnXY15ZA,2009-08-04,vF2SFJC6-3U6qE8CheSr4Q,3,"Awesome location, cool place....the Chopped Salad is by far the most amazing salad I have ever had in my life (but way...and I mean way to small)...If it were double the portion for the price I would probably visit more. I had a flight when I was there...it took forever (as I know flights are supposed to)...but this was ridiculous...the buffalo meat is so gross...it reminds me of when a stray dog visits my lawn... + +The BBQ sauce is good....the staff is just OK. Nothing mind blowing. I think staff in a place with a pricey menu should spoil the guests a bit...Give away a free desert when you know the service and meal is just OK...this may bring your customer base back to visit just because you redeemed yourself at the end. + +Overall its a cool place. It fits with the downtown Scottsdale lifestyle. But stay away from the buffalo, because it will give doggy bag a whole new meaning....",review,02LanstxBzqF_foJ8kFTBA,1,1,1 +qsThMZ3lXWYLN4t08ScsNA,2009-04-26,bVi18QTIhM7qvF_fpHrriA,5,"I love the clothes and accessories, the staff is friendly and the prices accomodate everyone!",review,MQ96E0cw4L4e9ixXbq15Pg,0,0,0 +Yb2pNCxYR32XKmpirqJqeQ,2010-02-17,KsmZT0_IdiHdv0CbhYHmPA,4,"I was surprised at how good the food was at this tiny place. I normally avoid the ""hole-in-the-wall"" type places, but I decided to give this one a try and SO happy I did. The food was well priced and not too greasy. The ingredients taste fresh and it has that family owned feeling.",review,jRtdO03kWbReasB_vBlTsQ,1,1,0 +9Woei-yx8GFIOeZ3eo_ElQ,2011-01-14,GzfJuoajVBCGj7gb69uTdQ,4,"Nice , big, clean, and lots to chose from. This place has a very nice SCUBA section, and that is hard to find in the desert. I purchased a gift card for a friend and that is why I showed up. Lots of good stuff and a wonderful staff. I live by Dicks so that is where I usually go, but if in the neighborhood I would hit them up.",review,DwU7KVfebA70AlVtX0iOWw,0,0,0 +qugpY0TRuenI5fMFdegMUQ,2011-07-19,_bxWNNLV8T6WaPNb97SQqw,1,Huge line for incompetent employees who don't even know how to wash cars.,review,0mqHhdKEdak_A1FBhFNXqA,0,1,0 +E3UDblz_KgC6Gfftk6ZScA,2011-05-31,UMgXVjbJECk8Oh4tl6ZTcw,5,I`ve had work done by this shop a few times thruoghout the past few years. My latest experience was when my sons car broke its timing belt and needed substantial repairs. Bob informed us that he could move the car out of the way in his lot to be safely stored until we decided whether we wanted to fix it or not. This is just one of the reasons why I`ll always bring my business to him.,review,iqqMl8LR9KvZlSvxoZwScw,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2012-09-11,2FUsL9-YmO_bVk-OegqRiQ,4,"Best seafood place I have found in the Phoenix area. + +Everything from the crap dip to the crab legs and oysters is delicious. They have a wonderful fish selection as well and even their steaks are good. + +Service has always been excellent every time I have gone. + +Can get very busy on nights so try and go early if you can.",review,42D3biuVZiSeVPQv2XRwww,0,0,1 +9P9MqY3VVUc63qJR2iWg5A,2012-03-29,OJQawhAenseSeEFhkvLzfw,2,"I guess you really can't put lipstick on a pig. I will say this, it's nice inside all new building and equipment, but it's very much a westside gym. Many Raider hats and 0.0 eye candy. I would rather go to Moon Valley all the same new stuff but much better loking people. I will say this, it's good to see people in a gym that need to be there, and it also seems very gay friendly.",review,XrFaXhc3ggNOhlI2UABQ1w,0,0,0 +lKQ5hnkSQ-XP80jNCH46nQ,2012-03-27,CtqmcAJCB_58EaAFFPJy3w,4,A new breakfast option in old town Scottsdale. The decor is superb and the weekend crowd is minimal. Juevos Rancheros and the Skirt Steak & Eggs are both fabulous. Prices for breakfast are reasonable.,review,90a6z--_CUrl84aCzZyPsg,2,4,1 +9yKzy9PApeiPPOUJEtnvkg,2012-05-08,VQqwoz4s-xYwGoqJDASTfg,2,":( I really wanted to like this place. I thoroughly enjoyed the farm, but I will review it separately. We were greeted by a busy waiter who quickly pointed to self-serve drinks (coffee, tea, water and lemonade) and ran off. We helped ourselves to some coffee and lemonade before we received our menus which stated that each drink was $2.75. I ordered the white truffled scrambled egg skillet (white truffles are my fave). I did not detect one bit of truffle essence in this dish. My fiance ordered the Cowboy Breakfast. It was like watered down chili with and egg on top. No great. The concept is great, but the way in which the food is prepared is super disappointing.",review,BvjSQAFcROLp27QjaRcyoA,0,1,1 +Ch_2Ye0w4Q9l3VeVW7VNHA,2011-04-17,bLd715CpGVR07-X8mM8-yA,5,"This place has been here 7 years and we have never been. Are you kidding me? The food is excellent. The people who work here are friendly and seem to be happy to be there, which is most important. I tried the make your own half salad and half sandwich. YUMMY!!! There are many choices for salad toppings. There us nothing I like more than a huge, fresh salad. I chose to top my salad with avocado, tomato, bacon, edemame, feta cheese, and whipped balsamic vinaigrette. I really think this was the best salad I have ever had! They make the salad in front of you and mix in the perfect amount of dressing. I chose the chicken pesto sandwich. The combo of these items was a perfect portion for this hungry girl. The sandwich was excellent. My hubby ordered the Cuban pork sandwich. This is one huge sandwich! It was difficult to get his mouth around it, but once he did, it was awesome!! Typically, we don't like coleslaw, but it was really good, especially combined with the tender pork. We will return to the Market Bistro, again and again. +Loved it!!!!",review,7W4egS-WyR0hRHMfQtPEOQ,1,1,1 +bzDs0u8I-z231QVdIQWkrA,2011-01-06,RMkq-Sk1roD-7s9q79wb4A,5,"In being a bit of a burrito man, I was suspicious that a torta could ever marvel a tortilla filled with meat. However, all of the hype on yelp and man vs. food was appropriate, as the torta provided a massive yet tasty introduction to pork, turkey, guacamole, and a bunch of other hidden great tastes all in one sandwich. The carne asada quesadilla blew us away-- HUGE in portion, amazing meat, and super flavorful. I was also glad to be one of the few gringos in this place. People were friendly toward us in any case. Check out the horchata for some authentic aguas frescas...",review,3TXEOX7mWcvkdXPmAP3LYg,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-05-01,auXeRFEpvKoOM8fxPQfm0w,4,"Big craft beer selection, in bottles and on tap. Not for those who go to a bar looking for mixed drinks (don't think they even sell liquor) or people who want to drink bud light. You're likely to find something you like, even if you're a picky beer drinker, you just might have a hard time narrowing down from the huge selection. The coolest thing about his place is the liquor store style fridges, filled with individually and six pack priced beers. You can just walk up to the fridges, pull out what you want and either drink it there or take it home. Definitely a unique place. They also sell food, which we didn't have, but was available. Next to food poses outside, and other bars and clubs.",review,FRdQICEr7bcv2gbXDFyS_A,0,0,0 +YXp62JdXJDzX0EuRv_zgMQ,2011-09-01,iRfxCP-VxiBiMBb8j0fsYQ,5,"Fair and honest prices. Friends and I have been ripped off by other companies for the last several years wondering if there was anyone honest left. During the summer, you're at the mercy of the air conditioning techs and usually they take advantage of it. + +I'm very happy with their service. Very prompt and professional. Father and son make a great team. + +Great warranty service. An electronic part he installed died after 3 weeks. He came out immediately and replaced the item for no charge.",review,-KV5e7bFg8BipE2vnmWf8Q,0,1,0 +fK7ujDbjhRFEe2D7eIwK4w,2009-12-27,Qpt4qvO2PtVnzENgU9eIqA,3,"go to the reverse happy hour where reasonably edible sushi is served at reasonable prices amidst, in the instance of our visit, barely legal drinking aged crowd. in a mall. nuff said.",review,hCKkTKakQ0XRSspZaMauxw,1,1,0 +j7XuypdW_w935NhjbvKPQw,2011-08-30,KdxkWDRPYgDtpM6HHOs1nA,2,this place is no where close to anything you can get in la or oc. It taste liked it came out of the bag. plain and simple,review,WQX1Hio90vjGkASKM0v5kA,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2011-07-28,0E4CY0FSqaZyaRvmc0QEmA,4,"Couple things. First, I am reviewing a Delivery order that I placed. (If you didn't know that they delivered... Now you do!) + +You start by looking at their website, which is modest. It's a black background with White text. Pretty much all of their food is available for take-out, except for the alcohol. + +*TIP* Make sure to look at their PDF Menu. It has TONS of more choices than what is listed on their Website. I wasn't even aware of this fact until I had ordered my food. + +At this point, they do not have online ordering set up, so you call and place your order that way. + +Cornish Pasty's (pronounced Pastie, not Pastey) are amazingly delicious. They take whatever filling you choose (from the Chicken Alfredo to the Bangers and Mash), and they place it in a thin, crisp dough that surrounds it. Think of a Calzone, except the Irish version. + +Now, these are very, very filling. They are modestly priced (all of them are less than $10), and they are EXTREMELY DELICIOUS. + +Make sure you give them a try. I will sure be eating here again!",review,OAhO2G3tOfMpO40UlMqbiA,1,3,1 +qSLdUiI2edATC3KBT2zf4Q,2011-08-10,5OgfThyHYSxeh-HoR8N_Pg,5,So yummy! Strange combination but great place,review,8-Ujs-yekCPz_hsQr5rvaQ,0,0,0 +fa776KC8le1MHOOws_1PNA,2011-09-07,xPkxEhk1lHgep2NredCJUA,2,So sad closed. Oh well.,review,7C-jyTrOX-iJ-MrSJuh-8A,0,0,1 +Exx5ffvnmk4MrTyCkPRuug,2012-06-06,YQf00BwxJlv2Vz2zKG4nXg,2,"What more can I say except it is over priced, greasy Mexican food! I have had better in Texas, the only thing that saved them from being a one star is their great salsa!",review,JGGXT447a5zVfanaIUb8uQ,0,2,0 +vvMR0jgDoBA-g1XgZy8sEg,2012-03-10,IYPLbiHWGgfQxlBQm5w2Cw,4,Food was really good. You could tell it's good quality. Our service was not so good. Workers are friendly but were having bad day on service.,review,EZ_Qltx0iJyDN--HzLcXQg,0,1,0 +Rus-ewyqLj2D1RlqK-je4w,2011-08-22,3MU-MH2ZpZEkX0Bhtvgzmg,4,"They had amazingly quick service during lunch! The servers were VERY polite, almost to the point of being obnoxious. I ordered the daily special--bacon cheeseburger--which came out hot, fresh, and delicious, though the fries were heavily over-salted. Our drinks were also quickly refilled without us asking, which was nice but unfortunately their tea basically tasted like water. Overall, it was a good experience and I would come back again.",review,BfsjJKw0daRK64a4uARuNA,0,0,0 +3OF6i6LTzRXpwNgodv7aeQ,2012-09-10,wJ57XX9tJTeTKcfOW0kw-g,5,"I absoloutely love this place. Great Coffee, Americanos, and Lattes. Try the Chemex if you are looking for something unique. Very Tasty Breakfast Burritos and friendly staff. I wish the North Location was still open, but I'll take their brews anywhere I can get them. Skip Starbucks and hit up a real coffee shop...",review,U15ZA0OLczLHFglNnipZeg,0,0,0 +JEreQgso7MH_Io3DXGsEOw,2010-11-07,12w_M77Ow9_XTqFh_VW7ig,2,I contacted the owner based on his comment regarding my review and he never contacted me back. Hmmm...,review,pWTUeXZKI6oJ78WTET5y2A,0,2,3 +rE2InW2Jmjy6hzH3p4Iyjw,2009-07-28,1EQ4TSG1fYh-2D1cCWCBtg,5,"I'm a bit of a snob, I admit it. I generally prefer the full-service pamper me kind of salons that charge an arm and a leg. But times are tight - and I want my nails and my money. + +Enter Biagio. + +When you first walk into Biagio you would think you had walked into a fancy day spa. But when you read the prices, you wonder how they can stay in business. A ""spa"" pedicure, one of the most expensive treatments, is a whopping $49 (I say whopping with a sense of sarcasm). Not only do you get a great pedicure (best I've EVER received), but you get a leg and neck massage (yes the chairs are massage chairs, but real hands give you a real massage). + +A ""spa"" manicure, which also comes with a neck massage, is $25. + +The technicians are very nice, the store is immaculate, the tools are all sterilized, and the treatments are very high quality (even for a snob like me). Plus the atmosphere makes you feel like you are at a spa, not a strip-mall dive nail salon. + +I highly recommend Biagio. I have been there several times, and plan to go back often.",review,qbhWU6Wn0zvVVct1HkT_GQ,0,1,1 +qlrZzAktK8wODSHxhLEK7w,2010-01-23,q9-5bSlOE9e4MWkMNurh6Q,2,"This joins my long list of places that I really want to love, but ... + +I love the atmosphere. I love what they SAY they stand for. I love the concept of two hippies dropping out and dropping back in as restaurateurs. + +What I don't love is the food. The chicken and fish tacos I had were bland. No flavoriing. Thank god they had hot sauce (not homemade, store bought) on the table to spice things up a bit. + +On a positive note, the prives were good and the salsa they serve with store-bought chips wasn't bad. And the lemonade (they were out of most flavors both times I visited) was good. + +But overall, maybe it's time for the hippies to clean up their act. Worry about the food a little more than the message.",review,PVfj1GRD3l_YakchYoTyNw,0,0,1 +0vzZ_Bcb02rJljeMU9XkBw,2008-05-01,Md_CCdiDRfz9FWWRDK6XHg,5,"I actually love this place and I always get great service when I'm there. The tootsie roll is by far my favorite. + +I must say, however, that I recommend the Sakana on Power over the one on Elliot... for some reason, I like the sushi over there better...?",review,-twH-2L0l6AOlTDdp01wuw,1,2,0 +YL_EiYALmGUd1lm5HZgL3w,2012-08-06,a49zcNZ_EEieyGh73x_c_Q,2,"Honestly, not that exciting. I heard a lot of hype about it from ASU friends of mine but I wasn't impressed. It was just your run of the mill Mexican food. And I didn't like that you ordered at the counter and got your chips in a paper gravy boat. The whole concept of the resturant would flow so much easier if it was set up like a regular sit down Mexican resturant. +But appreantly it makes wonderful hangover food. I dunno.",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,1,0 +AqbgC7Gul5Es1rRzGNLDFA,2012-03-10,aAYvQsZCahLW8xs6oUXZ6A,5,"Best cupcakes ever. I can't get enough of the Strawberry and Red Velvet. They even have a gluten free Red Velvet! Order several to take home. They will give you a zip-loc bag that keeps them fresh and moist for days! I'm addicted. Not cheap, about $22 for 6 but when you taste them, who cares....",review,ofPkm7BTBJeaD0OkmZNdNQ,0,1,2 +-AAig9FG0s8gYE4f8GfowQ,2008-01-22,fhOMHh5NMiODyz96lroADQ,5,"Simply the best sandwiches I have ever tasted. + +The Mozarella, Tomato, Basil is perfect. The focaccia bread is perfectly crunchy and slightly salted to the consummate texture. + +I wish I still worked closer...",review,AJX3G9tGOvShz85EuDA_-A,4,3,0 +FUI-hWH_bpis7AKZTWenUQ,2010-03-28,EZ7bvP5HOzt-HWOYVRQcLQ,1,"Really as bad as it gets. +Crap food. +Over priced. +Ugly, tasteless interior +Bad music and music system +Tired staff +This place needs to either have a complete redo or it needs to close. +I would rather go down the street and eat at Applebee's, and I have never been to an Applebee's. Too many other choices now in the neighborhood for this place to go on in its present condition. Then again, there might be enough people around these parts with really bad taste to keep the place going.",review,PV5Lv_xl3DDAcAchFJCbXQ,0,0,0 +cLojUtqkFpVIHFEvA_5Atw,2011-07-02,XjZVIuxey7xxQBbHVJGbiw,4,"I recently went to my first First Friday (and my first trip to downtown Phoenix). After a few hours at the Phoenix Art Museum, friends and I hopped on the light rail and tried a new restaurant. Enter The Breadfruit. + +Easy to find (sign on the street corner) on a charming and quiet little street sits The Breadfruit with a hostess standing out front greeting guests. You can see the very intimate seating area from the street and it was packed (a good thing for 8:30pm on a Friday night). We sat and waited outside at the cute little tables (way too hot to eat a full meal outside). We were offered menus to peruse while we waited about 10 minutes for a table. + +Inside, we ordered two mixed drinks (a mojito vanilla for me). They were strong and very good. The mojito was very minty and refreshing and my mojito-loving friend said he should have ordered a mojito. (Read: Get a mojito.) + +The Food: We split a tilapia patty (very spicy!) for an appetizer. (Patties are Jamaican empanadas.) +I had the coconut curried tofu with rice and peas, ripe plantains, and veggies. This is the one of the best tofu dishes I have ever had. My only complaint is that Breadfruit needs to have more plantains per plate. They are so good! +One friend had the curried chicken and dumpling with a green banana, veggies, plantains, and a side order of rice and peas. Although he didn't like the whole wheat dumpling, he loved the curry sauce and the green banana. He called the sauce ""delectable."" + +Overall, this is a great place. Small, but great. The drinks are strong, the food is great, and the serve is prompt. Our only regrets are 1) not enough plantains and 2) we should have gotten dessert.",review,eAgcqq8MAe1ztS4gqDbpTA,0,1,0 +ib-y5nsfn3unE0lLY1vfAw,2008-05-07,3Qvh68IMP4TdFaDbAQcJpA,4,"When my mom suggested we eat at a simple casual Mexican restaurant for her birthday/my brother's grad school graduation celebration, I was a little surprised. She herself has only been in one other Mexican restaurant years ago and loved it...no wait, I take that back. She's been in one other one but did not enjoy it as much as the first time. Eh. Anyhoo...My brother suggested Arriba because it is one of his favorite restaurants. (Note: I keep encouraging him to yelp about his favorite places in Phoenix since he lives there.) + +It was not terribly crowded for a Saturday afternoon, which was nice. I was pleased to learn that they have brunch options which is served until 4 PM on the weekends, if I recall. Up until the restaurant, I had trouble deciding what I wanted to eat since I had gained some weight being around family....eh, that happens right? I opted for the make your own omelet, and it came with beans and some potatoes. The potatoes were bland and needed a little salt for flavor. My dad who has never stepped in a Mexican restaurant, only because he is not a huge fan or an expert in Mexican cuisine, enjoyed his carne asada and rice. His plate was CLEAN! He did say he would come back again, and for my dad to say that is a good thing. My mom and brother shared some a lot of food, but honestly I was not paying attention to what they ordered. Oh and for dessert? We had 3 orders of the flan. I still stand by that my mom makes the best leche flan ever, but the one at Arriba was just as tasty. I think the cinnamon sprinkles help. ;-) + +Overall, I would have to say that we as a family enjoyed this place. Sadly, our trip in Phoenix was too short otherwise we would have gone back for at least a second round. We were seated right away and had great service. + +PS: The little to-go menus at the front are slightly different than the big menus at the table. I only know because my dad wanted to order something else from the small menu, and apparently it is only served during the week.",review,OAES6IjJsW06P0rZdx3omA,0,0,0 +QwaoxP5Mgm3PJuZo_4bFsw,2012-11-27,eCxhed5UiBrf-et9XpwtOw,5,"These are some great cheesesteaks. I have come here multiplier times and have never left unhappy. The staff are nice and the food is delicious. +Also try the 'Cheesesteak Fries' they are freakin amazing! I am glad I work next to this place, always a great lunch.",review,55-K5KXdbrUGQCNF8z3hHQ,0,2,1 +CEWLmBrkM_a214RaGqUbRw,2010-09-10,tYc2jkQWeGGfPbFvzC9y0Q,5,"I work next door, and I love her ! She has done an excellent job of slim fitting my baggy shirts !! + +Well she did ask me if I was gay but then hey, given how animated I get about clothes I dont blame her for askin ! My SO found this rather amusing and laughed her head off... oh well getting back to my review. + +I love nadya cuz she does a wonderful job, each time. She knows when the darts will give the slimming effect and when the sides are to be taken in. Its never too tight and never too lose, and she always always delivers on time. + +I have been here atleast 10 times !! Trust me my metrosexuality wouldnt let me let me go back if it wasnt a five star service!!",review,jBCbHpRaE8ONFzSaXS05PQ,0,1,0 +vz2zQQSjy-NnnKLZzjjoxA,2006-11-27,rLtvqeuRKyKmrapvyM_uEA,4,This is one of my favorite dive mexican places in Phoenix.... the place it pretty clean for a mexican place despite the shady looking outside. Everytime that i have been there i always get the lunch specials... they are a ton of food and cheap (5 to 7 bucks for a large plate)... The staff is very friendly and they get you in and out in a hurry... i have never been here for dinner... and not sure if i want to... i like being in that area during daylight hours.,review,llkm_iXQszkN5DZvmqjNqA,0,0,0 +WyJRPTn2FCFdj2cYT9pqyw,2011-08-22,WphtWBE2tTkHCg2ilEtgFw,5,"Excellent food! I do say the service isn't always the best, but the outcome of the food exceeds my expectations. Definitely recommend ordering the Artichoke Salad! Not what you'd expect out of a typical boring salad! Not just stuffed with a large amount of dull, boring lettuce, but filled with spices and tons of flavor.",review,h3ZuEh28kwBd2iI5oAFWgg,0,0,0 +khe1MDgeWH6Es7yuTMeN7g,2011-04-29,OLZSciec2FP4Gji_v0i2ZA,5,"Jodi is fantastic! Extraordinary! After too many expensive yet less-than-average salon expereinces, my hair has been less beautiful than its potential. Jodi gave me a very thorough consultation after I did some research to find the best colorist for me. During my appointment, Jodi was professional, efficient and friendly. I left the salon with soft, gorgeous hair... lovely color, care of the INOA line, and I felt beautiful again. She did what at least half a dozen other highly recommended colorists did not accomplish. I'm ecstatic and relieved and I have finally found my colorist. What more can a girl ask? Thanks so much, Jodi.",review,7CkkiLWuqmeVWQE-pLaxIQ,0,0,0 +rSCQdj959petZ-vBGtq4xw,2012-03-23,emJl9kiTGRnNbAt0z04DAQ,5,"This location is quieter than the one at Arizona Mills Mall. No screaming kids in your way. The clothes are less disheveled, still attached to the hanger, but for the same low price. I get my husband's work shirts here for like $8. Ross understands that there are still skinny Americans out there and they carry size 4 pants. YESSSSS! + +I -3 the unusual house goods you can find at Ross. I redid my whole bathroom and made it into a nice Victorian style in light pink and a wood brown. They had this soft-green painted shelf that looked like a twisted vine. Where else can you find something like that? I found these two toothbrush cups that were painted with butterflies. Worth the $5 each. My bathroom is gorgeous. You'll want to take a crap in there.",review,-o3uGadqen-bc1HjMx_8Bw,0,1,1 +fP-BPL6iRu2tbcvlnjRshw,2012-10-21,9o9V6DK7LRHgwzYYA7vUfg,3,"Super cool place I've been to 3-4 times now and only drawback is the noise if you are with someone you want to have a conversation with. Service could be better, but location and above average food at decent prices cancel that out.",review,5mvaOdV7nyKCP2Xct7yDTw,0,0,0 +jEkaxdgLxUCf4jtUnCPVWg,2009-12-31,OYyRWmDTF0T4ywmGKMeqBA,3,"YogurtBuilderz provides a good sized dining area with many choices of yogurt and toppings. I did find it a little difficult to locate when I attempted to find the building - it is tucked away in the back corner of a strip mall parking lot. It was dark, late at night and took a few passes around the parking lot to zero in on the location. The staff was very friendly and the place was busy even for a Sunday night. For the staff and selection I give it a 3 star rating. It was good, but I didn't find it any different than the growing list of competition. + +I know this place is popular and self-serve frozen yogurt establishments are all the rage now. The economic model is great - you pay by the ounce and have your choice of any variety of yogurt and any topping available. Customers have the opportunity to build it as they wish, which allows those with specific tastes to have their wants fulfilled more so than a traditional store offering the generic selection of choices. + +All of that in mind, I don't like it (the industry). Too many choices creates an opportunity for indecision and slows down the lines as people stand around wondering what to put in it next. For those new to the game, you can create something that turns out to be rather nasty - for example, the white chocolate sauce is really very sweet and I find if mixed with other toppings makes it almost unbearable. The other reason I do not like these places is that I do not like to pay for food that I then have to make and serve myself. I go to restaurants and pay for a meal rather than cook it at home because a) I don't like doing it and b) I am horrific at it. While frozen yogurt does not require much preparation, there is still some assembly required. If I am paying, I prefer to have it built for me. But I realize I am in the minority. As popular as these chains are becoming I wouldn't be surprised to see ""FroYo"" overtake ""unfriend"" as word of the year in 2010.",review,zCC6huLkNBEr3JUgQyxJbg,0,0,1 +nFo_63pTr-4ZhakuaRFOCA,2012-08-26,dBDSiE4eIw3ePS1qDgmzXQ,2,"Food was tolerable, and tasteless. The chips were actually tostadas that were extremely hard (almost stale) when eating. The entrees we ordered were bland. The rice and beans had no flavor at all. Maybe that is Baja style of food, but couldn't find the flavor anywhere. +The service was great and the ambiance was wonderful, but I don't think we'll be going to this place again.",review,4L6KNUQe2pWYVXf9KkBdsw,0,0,0 +W8WyVVxinyRjzP8gJa7ILg,2010-12-28,ydzzk4tNnZ-5nSvvtI6yOA,4,"Walking into this place is just plain confusing. You could tell it used to be something different, but I've got no idea what. I guess it doesn't matter. It just sort of looks cheap. But that's ok. + +The food was right on, and I'll be back for more. Bento Box A? Yes please. Small salad with a great ginger-type dressing, some sort of spicy beef, teriyaki chicken, rice, egg roll, some edamame, a few carrots... am I missing anything? + +The service was great, the food even better, and it only set me back about 5 minutes and 8 bucks. It seems like a sure bet, and close enough to work for a good take out that it will rise toward the top of my list.",review,BiDA7uVJ5igMCsp4ZfpCpQ,0,2,0 +e8kRfAKXM_1qj9LMgp0s2w,2012-05-07,2nViOOisdT3Pc5pmjjI7Eg,4,"5/7/12... +I have to make a correction to my review as I received communication from someone with the club.. + +I was informed that they are not like other clubs as they have a ""Two Item"" minimum, not a two drink minimum. So you can order a food dish and a drink to meet that minimum. And I did confirm that one in our group ordered a bottled water which counted toward his minimum. + +So I stand corrected.",review,SimBqxBHYwkPE8X7f_RnVg,1,2,0 +i213sY5rhkfCO8cD-FPr1A,2012-08-21,4PcQSLi1w_4VzeUcTehuqA,5,"The Menu here is great. So much to choose from and its always good. No mater which location we visit our service is always good and we never have to wait long to be seated. The Jambalaya is a big favorite, and the pizza here is awesome. I've also noticed that they have improved the drink menu quite a bit",review,Syc4pbEkL3bbzjO4X4HhQw,0,0,0 +yc5AH9H71xJidA_J2mChLA,2007-07-20,PsBVBsjhNn7vWGE27NOSjw,5,"great beer selection +great live music +great atmosphere +I used to live across the street and nightcap it here everynight. +there is always something to be had at rosie's.",review,XUukBnu0NCocezQ3bGmeow,3,2,0 +v9htJ8R0Ctvykmqjz7eRlQ,2009-03-05,dID2PKHRNAvqM-pd3mJu1g,5,I LOVE this place. I have been craving their Baked Spaghetti Pie again for 5 years and I finally got it today since I'm back for a business trip! I remember pretty much everything on their menu is fresh and delicious. Their prices are great too! Very polite staff.,review,2LE_1IcSFlOUUM_lDKwE4A,1,2,1 +eTbtfgUtfewdncgVf2CbWw,2012-12-17,EZkuSN33yZ2mpbdbcEksyg,5,Best chocolate croissants EVER!!!!,review,8dAAMq8R9o4QlRTqob0E8A,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2010-11-25,jySZHhnxmHZGuEvwHwDypw,5,"This is my favorite place locally here in Phoenix, absolutely great coffee! Next to central highschool and light rail so there can be traffic when school let's out or rush hour.",review,5T0sGaGY67VVJuotO47Q_w,0,0,0 +C1tH3sEQra33EOTk56Eu1Q,2009-09-02,R9S1ij-IyrF1i11iuZn7og,2,"I had dinner there last night.. I had never been. Service is great, atmosphere hip. Complimentary valet..(you can't park anywhere in the neighborhood). I ordered the Blood Orange Bellini and it was not your typical bellini..not frozen and frothy. It was champagne in a flute with a sugarcube dropped in. Still good, but not what one would expect..just an FYI. I had the Caprese salad and the Mozz was not served ""classically"". Cold and sliced in rounds or in balls. It looked like marshmallow fluff and was kind of tangy. I was almost sure I was eating something that may have gone bad. I do not recommend to any Caprese lovers. However, the Organic Chicken with pan seared gnocchi was fantastic. Granted i asked them to add some spice for fear it might be bland.. Spiced it was perfect and Im glad because it probably would have been a bit too bland for me. My dinner date had their signature Pappardelle and that was excellent as well, although a bit soupy which made it messy. Olive oil cake we had to try and I can assure you it does NOT taste like Olive Oil in case you are wondering. Its like a lemony bread pudding but not quite as moist as bread pudding. Delicious. All in all great neighborhood spot but not too much of a variety to eat there repeatedly if you like to try different things, which is my style. Too many restaurants in Phoenix to return only to eat the same item over and over.",review,g6rlp5No6GjEDXkrjvg1kQ,0,0,0 +ptH216EFNFLvF32EN-9tmA,2012-03-02,qbq_LZjhfTP97FlBVnD-Mg,2,"Normally, love this store & have been a member for decades, but was very disappointed with the woman who ""helped"" us last Saturday in Women's Clothes. She has horrible customer service skills. Told us that, since there weren't any listed on the website, ALL REI's were sold out of a parka I'd tried on 2 days prior at their store. You mean to tell me that your location sold 10 North Face women's parkas in 48 hours when it's 80 degrees outside??? This was after she's told us they'd just shipped all their winter stuff to Denver the previous day. Never offered to call the other store & ask them to hold a jacket for me. Instead, she claimed all REI's were sold out of the black jackets b/c the website only showed blue & squid red. I explained that the website hadn't shown black inventory on the same day I'd tried on the coat at their store (according to her, it should have shown up on the website inventory) She still claimed all stores were sold out. Never mind, I bought it online from one of your competitors and it was cheaper too.",review,iWWzqd6Yo-gohXAAB9YWOg,1,1,0 +JiLK9QPjd53pOBEAaY83lw,2011-01-04,ZeIXbdNE4JXlCNuxrZA0uA,5,"Best Thai food for your dollar in the entire valley. I'm no Thai expert, but I have been to at least a dozen here in the valley. Keep in mind - this is NOT a fancy place - just a simple, inexpensive, casual dining experience. WOW!",review,90a6z--_CUrl84aCzZyPsg,2,4,1 +XhdMiSn0b3O929YpjVBMHw,2012-05-23,1XCS4C4msZvkQ-iZxUEYiQ,5,Love Love Love it. The Frozen Yogurt is only 8 calories per ounce. You can get your yogurt fix and still be healthy. Also they run specials if you sign up for the deals. Then they have a punch card program as well. My husband loves going there because he can still get regular Thrifty Ice Cream.,review,1fERJYlHjZx-dn7NMrOKvg,0,0,0 +OOCLVeqqMFfSnKa7liv0Kw,2012-11-29,bjcU4dROec3ihpbkyspL1A,5,"I love Tempe Marketplace and frequent it regularly. It has many dining, shopping, and entertainment options. It is an outdoor mall and in the summer there are misters and in the winter heat lamps and a large fire pit. It has stores that are usually only found in malls such as Tilly's, American Eagle, and Victoria's Secret, but also freestanding stores such as Target, Best Buy, and Ulta. There are a large variety of restaurants and a Harkin's Movie Theater as well. It is a great place to hang out with friends and see the local night life!",review,5S3qIi-EHG634Mx-_mpBQg,0,0,0 +werWnE_3k8GYVaMuUcWw4g,2010-10-21,w3VC85UesBVCoT-Xn5yqow,5,"Ok, I hesitated writing a review of this place because I like that it's not busy, but I want the place to survive because I enjoy it so much. + +I hate gyms...I mean LOATHE them. From rude staff to unpleasant odors or creepy guys giving you longing looks while you're just trying to figure out which one of your friends with an advanced degree in engineering you can text to help you figure out how to get on a machine without having it rip your arm out of its socket because the staff is not going help you without paying for a personal trainer or because you don't look like you were already born on a nautilus machine. + +This gym is everything but. I went in because of the great introductory special and a recommendation of a friend. We're both training to swim the SF Bay for the 2011 Sharkfest Alcatraz Swim, so we needed a pool. + +As soon you walk in, the guy at the front desk treats you like you're an old buddy and cracks jokes like he is your best bar buddy. Awesome attitude. The place has never been overly crowded (even at peak hours right after work. I've never gone during the early morning or lunch hours). + +No waits on the machines and they have plenty of them. No waiting in the pool and even when there is a water aerobics class, one lane is left open to due laps. Hot tub, sauna, and some inexplicable walk in dunking tub (see, I'm not a gym aficionado or else I would know what that thing is for). + +Towel service, locks, and even gym shorts available. (no more using that excuse that you can't work out today because you left your work out clothes at home...they have some to check out there.) + +Even the seemingly cranky old lady doing her water workout was nice and called me sweetie and asked if I was ok when I inadvertently let out a puppy like whimper as my shoulder blades decided they wanted to cede from the union of my body. Note to self....don't do a month of the P90X with a friend, think you're hot stuff and on your way to a gym bod and then jump in a pool to do a mile swim without stretching because you think you're all that now. Had it not been for Grandma Water Aerobics, I might still be at the far end of the pool trying to inch my way back to the stairs hoping that the water on my face hid the tears that were going start gushing any minute if I couldn't make it to the hot tub to get my back to stop seizing up. (Thank you, unknown Water Aerobics lady. You turned a moment of shame into motivation. Oh yeah, I will out swim grandma next time!) + +The place is in the basement of an office building next to the seemingly abandoned Chateaux on Central development. Central and....Encanto (?) +You can park on the street (careful of the meters) or use the garage. The gym validates. + +There is a downstairs weight room (I haven't check it out yet as I because there is a free gym at my job.) Yes, I like this place so much, I am paying for a gym membership even though I have access to work out facilities for free in my own building....including free personal trainer....but instead I get in my car come 5pm and drive to a gym I pay for because this athletic club is worth it. + +I saw no young kids running around. The clientele seems to be early 30s and up, young urban professionals and some retirees who are just trying to stay healthy. No creepy people ogling you (which you may be looking for) and no rude gym bunnies laughing at you in your leotard on the treadmill....but really....you shouldn't have the leotard and hot pink leg warmers on anyway...it is 2010. But hey, to each his own.",review,GLzK3PsBTGl-1ky3t4wFNQ,3,6,3 +4y9ZQV_IooSdJTAMNwG1sg,2010-09-22,WSpOHpboCtOisKNCFs7cOQ,5,"I started working with Second Chance FitCenter in the spring of this year. I went because I wanted to feel stronger, especially in my core. I run and am a generally active dude, but wanted something more out of my physical body. I had never done any type of ""personal training"" so I was a little apprehensive....and... + +I have REALLY enjoyed working with Heat - she is a great teacher, which if personal training is anything it is a psychologist/mentor/butt kicker/saint...so in my book that is a great teacher!! + +Case in point: +A few weeks ago I mentioned that I was not sure if I was improving - mostly just my own mind being negative. So Heat said, ""Next time we will try the very first workout we did. Cool?"" I was game. Dude! I blew through that sucker - to the point were I was like ""this is cake""...of course on the second and third time through the sets (and I think fourth on this day...) it got harder and harder...and I totally kept up. It was awesome. I loved it. + +My Checklist: +Sense of accomplishment (check) +Strength building (check) +Piece of mind, knowing I am taking care of myself (check) +Good teaching and patience (check) + +In short, I love my time at Second Chance.",review,tePGwo_ZH1Hu9bkCNhMJmw,0,1,0 +aRkYtXfmEKYG-eTDf_qUsw,2012-06-07,98QoCid1LWZ_XBhV08VTnQ,5,"I need to stop going here so much, but it's hard to stay away.",review,aqmtZa9o9K4casagyyfpyA,0,0,0 +GqtMJxq5-7Xp1ZXXmahLaA,2011-05-31,M4fs0_nz4BiU0kB4BfewnA,4,"Love this place, been coming for many years and recently stopped by for their italian sub. Still as good as ever, these guys have great quality produce and a simple but yet complex style in their sandwiches. Little details make me appreciate them, ohh yeah and they have good tea.",review,giwch_jkHmILclbawH3FSg,0,0,0 +Bm2PBs_AZEtx93zdtwqUJA,2012-09-05,fLa_c_82aDI1MKZDzWc3DQ,5,Great fresh sandwiches!! The pastrami and caprese are absolute perfection!! The orzo pasta salad is spot on for the summer. Definitely a must id in mesa..they need more central location for sure!,review,ho9cUMuOnH4yi-902zfC2A,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2011-12-27,0HU8porS6eaV0NI0oV9H0A,5,"Excuse me. How in the world have I lived walking distance from Cornish Pasty Company for over a month and have only barely heard of this gem?! Thats what I want to know. + +A friend introduced us to Cornish Pasty saying it is ""the best restaurant ever"". I best give it a try then right? The Tempe location is smaller than the Mesa location but I LOVE its vibe. A small narrow walking space between people sitting at a counter behind the kitchen and people sitting at teeny tiny tables, dim lit lighting and candles and for the most part, pretty good music. + +My man and I ordered the Mexican Pasty and the Rosemary Chicken Pasty. They were unbelievable! SO GOOD. The Mexican Pasty was definitely the better of the two but I'd order both of them again any day. A little heavy dinner action to make a girl feel full and happy. I respect restaurants that have a plethora of vegetarian options. What generation are you living in if you don't offer veggie options these days? Get with the program all you other restaurants. You know who you are! + +I loved the entire experience and can't wait for our next trip.",review,7aQvAhgpdXqkTQEp8b8Szw,0,0,1 +8H1DwdAAgSBtwDeb2R-hmA,2011-03-02,g2c2DT7vafkVyBN_6vJwig,5,"Love Bagel Nosh! The staff is so friendly and of course the food is delicious! I have to admit that the pumpkin latte was no Starbucks pumpkin latte, but the pumpkin cream cheese was amazing! ( I do realize it's no longer pumpkin season, I was just wishing I had some anyway) It can get busy on the weekend mornings, esp since the bike shop opened up next door, but I find it well worth the wait! (Oh, and fyi it closes at 2:30 - so get your coffee early!)",review,GSZebDbIf0h_2MFv8xBGrw,0,0,0 +Aalbsk2pFczUedpRWKUyPw,2010-02-27,Yd4_UbDlKAmUcN0Xg6ltiA,5,"We live in Chandler, so we get take out here probably once a month. My husband is from the east coast and in both his and my opinion, these are the best cheesesteaks around! We love their spicy peppers (they are hot!) and while I am not really a cheesesteak fan, their chicken cheesesteak sandwiches are fabulous! The owners are hard working and really appreciate all of their customers and let you know it! + +We have been eating here for three years now and have never had a bad experience.",review,ccJswjoJ8f9dn9qz0Zfhpw,0,0,0 +EKzMHI1tip8rC1-ZAy64yg,2011-03-30,IznCwmN6dWvVG3nXpuJPUg,5,"Impressive! I dined at House of Tricks last week based on the Yelp reviews and was not disappointed. The aromas from other's food while sitting around at bar let me know I was in for a good meal. I had trouble deciding what to eat, so I ordered 3 appetizers: Seafood Stuffed Poblano Pepper, Veal 2 ways, and Braized Oxtail. The bartender did a fantastic job of recommending the order in which i received my food - lightest to heaviest. + +The ""Veal 2 Ways"" and ""Braised Oxtail"" were phenomenal.... a great combination of flavors and texture. I think I'd put them both in my list of Top 10 dishes. + +I can't wait to travel back to Phoenix to eat there again. I'll also add the I really like the atmosphere. Very chill place, but elegant without being stuffy.",review,yvWUvG7Gb-_7JcgYQrbDVA,1,1,0 +yYbd9P1KmlPSKmQxo68n_g,2012-08-29,cNKCOarpvyKDbk84wg32lw,5,"Wow, that is some great BBQ. Probably the best I have had in Arizona. The pork was great as were the BBQ beans. I will be there again and again!",review,qGd-2pg0ABK-5brIva7tLg,0,1,0 +5kRug3bEienrpovtPRVVwg,2012-05-30,3_p8QBc-qgHnjzEqeKQe2A,4,"I've always wanted to go to Rokerij and when my date suggested it last night - I was all for it! I was NOT disappointed. + +We spent our evening downstairs in what I can only describe as ""speak-easy"" atmosphere reminiscent of my days spent in the DC area. I loved it. Decor was spot on with stone walls, a fire place with comfy leather chairs strategically placed in front. A big bar took up most of the room with some comfy look booths placed around the outskirts of the room. Lots of great details in decorations and design. Our bartender was friendly and efficient. His suggestions on wine (1/2 price bottle!) and the manhattan we had were spot on. He checked in with us and was attentive, but not overly so, letting us enjoy each other's company. + +We tried 3 of the small plates: the roasted pepper bruschetta, tenderloin skewers and the bacon wrapped shrimp. Honestly, I was expecting to be hungry afterwards and was ready to order something else in addition to that, but we held off until we received our food and I'm glad we did. The portions were pretty large and food rich. Everything tasted great...the bacon and tenderloin were served on long plates that had 3 different sauces...a creamy queso (I think), a spicy red sauce and a green tomatillo-like sauce. The red and green were really good - the white was a bit bland....but I'm also not a fan of cream sauces, so don't take my word for it. The bruschetta was more of an italian style bruschetta (bread, peppers layered on top with melted cheese). Tasted good, but my only complaint would be that it got a little mushy because there was so much topping on it. My date enjoyed it. + +Overall, a great experience. I can't wait to go back - especially when looking for a laid back, cool atmosphere. And I definitely want to try more of the food!",review,H2WgvziHv_KPlbQNY_uhog,1,3,0 +KjWCLH1GzxmhUJwaWB13MA,2007-08-14,HZuwhkiF3xxjujf-vHo-SA,2,"Standard Burger King fare served at a snail's pace. One cook, one sandwich maker, one cashier, plus 30 people in the queue. + +Please help the economy and the waiting customers by hiring some staff!",review,K8vdN2YU9kec8VmEReKhTg,0,0,0 +pLVZtesIhIopzK3IPWTXXg,2012-09-18,N6-JFjyn3GiGBLRxHej--w,4,Great store but lack of certain items,review,Z_8P1viBB-8B88oNEiBb7g,0,0,0 +w8D3DAby1nVgU8a4s3z88w,2012-03-16,JDCsNpynxb0www7M5RBhDA,5,"20% off with a Yelp check in? SCORE! + +They have very unique, colorful and patterned vintage clothing for sale. But what I liked most about this store is their vintage jewelry! There's a local jeweler who makes rings out of old school buttons and brooches. I snatched up two really cute vintage rings.",review,OZ4vmruH-9a_60I2qANtqA,1,2,1 +sjO66SM-zICJr5VyumMuqA,2011-08-02,TVTe-uB4AZg3ALgdFyw6MQ,5,"They have a new and improved menu and added more Korean dishes. Very good!!! I've been there 4 times since they added the new menu, and it's been good every time. Very authentic Korean food. This is my favorite spot now!! +The dishes I had so far: +Champong, Bulgogi, Sul-lung-tang, Neng-myun, Galbi, Yukgejang. All were very good. I can't wait to go back and try other food! Neng-myun (cold noodle) was especially good on muggy hot summer days.",review,yyVaDXsgGPw3vl2bv-1R3w,1,2,1 +Qd0fyF-wB_1bQwSB34ggkw,2012-05-11,CMKnAo1iYUtqpf75xwH6lg,4,"I really like this place! I've been wanting something like this to open for years, and now it's right around he corner! I'm a huge sushi fan, but I rarely have enough time during the week to stop and get any... Until now! This place is exactly what you'd hope for in a fast food sushi joint- helpful, friendly staff, good variety, good prices, and a clean dining space. I admit the whole make your own thing can be a little intimidating at first, just order one of their features rolls to get yourself started, then take off the training wheels on your next visit. You pick white or brown rice, meats, up to three veggies, and whatever sauces you want. The possibilities are endless! I've eaten enough sushi to know generally what works together, so I've been pretty happy with what I've come up with so far. The rolls are tasty and filling, and their traditional sides are great if you're super hungry. The only complaints I have are that the fish can be a little bland (even the so called 'spicy'), so you pretty much need to add a sauce of some kind. And some slices of fresh jalapeño! The parking lot is also a nightmare during weekday lunch hour, but I still think its worth it.",review,W-ef8QaX8OLJVCFLD_Q-8g,0,2,0 +01cEFI5Pq_RyEwM3GSTopQ,2011-11-03,Prb-DF36Fi3T4WE6a6VT8w,2,"This is an excellent place to watch a game. If I had only been there to watch a game I might give this place about 4 stars, but I'd had a long day, wanted to watch a game and unwind with a couple glasses of wine and some dinner. + +I stopped in recently with a friend when in the area and Roka seemed less than lively. Our guess that this place might be more lively was perhaps correct, in that it had 6 people at the bar rather than 4 and had about 30 flat screen TV's running baseball games and various other sporting events. We chose to sit at the bar, because I always think you get better service there and the restaurant itself was pretty slow at 730 on a weeknight. That thing about better service didn't really hold up here as it seemed out bartender was also handling issues around the restaurant and after I finished my first glass of wine the glass sat empty for quite some time before someone came by to see about a refill. I will tolerate just about anything as long as I have a cocktail in front of me, and as pouring drinks is the primary function of a bartender this was more than slightly annoying. + +We ordered the ahi appetizer for a starter (I know I should probably be slapped for even ordering something like this in a sports bar). I had a couple bites and they were okay, but parts of the fish were actually starting to grey, which can't be a good sign. For dinner we had the salmon and a flatbread. + +Both the bartenders on duty raved about the flatbreads. I believe they have never eaten a flatbread anywhere else or they probably would stop raving about these. It was a relatively flavorless bread, which was not at all crisp on the bottom or the edges, lightly topped with cheese, sauce and some bits of chicken. It was edible as a food dish, but the part I found off putting was that the bread seemed to be taking on the flavor of the wooden paddle it was served upon. Yes, I know you can cook bread over wood and it will take on the wood flavor, but I am 99% sure this was coming off the wooden serving board. I actually took most of it home and the taste went away by the next day and the whole thing was well served by about 5 minutes in the toaster oven. + +The salmon was also very very okay. The best thing I think we ate was the broccoli side that came out with the fish. They were sharp green, flavorful and cooked perfectly. The fish was kind of overdone and uninteresting. I feel like maybe this place should go to a smaller menu to be able to have more consistency with preparation.",review,mE2ll6yfwUvy-W7To3E0AQ,1,2,1 +bMzNhr8ikzwNZdpvRsZ-GQ,2012-06-05,8k2r1dR7g_iIr1C3rJ5BPg,2,"Dr Fish is an ok oral surgeon. However, his financial practices are shady. He gave us a high estimate for surgery, 6k; we had to pay 4k before the surgery. He then lowered the estimate after the surgery but refused to credit our card; we had insurance that paid 2k. Two months later, we received a check for a small amount of the overage. Their office person told me they dont do credit card credits. I then called our insurance company and learned Dr. Fish had received $1800 more from us than the insurance co allowed in Dr Fish's agreement with the co. Now we have to go fight him for the refund. His office person said, oh, insurance co's dont like to pay. Hmmm--why contract with them then? I would say, look elsewhere!",review,ph051iWFcTzyIjcVV3dAew,0,0,0 +bfrjf244fMcEA-duT2aZuQ,2010-08-01,YoGyHZGNr8O8ybyosEnWDA,4,I have been here twice so I know what's the best items for my taste. Would give another star if the Mongolian grill had more items and sauces. Trying the evening buffet tomorrow with 2 teenage son's one whose 18 and a football player. Should definitely get my moneys worth!,review,iK92_Kh2P70O7W7MYrCiYQ,0,0,0 +jVgtPnzXvZQOCCIUPEBktA,2011-01-28,h9ZAIgQoF-B14E1wn_6HcA,2,"Earlier this week, we used our handy Google mobile app to locate what we hoped was authentic Mexican food. We were craving flavorful salsa and well-spiced meat dishes after a long, warm day in the desert. What we found here was slightly different than we were expecting......The chips were made of corn AND flour tortillas, which was a nice surprise but way too filling while waiting for our food. The salsa was just fresh tomatoes with some cilantro (or maybe even parsley?) for color. +It was ""Taco Tuesday"", which here meant all-you-can-eat of crunchy or soft with 3 different filling choices.""Hamburger Helper-esque flavored shredded beef tacos"", according to my teen son. Ooops :( I ordered the ""award-winning green chili sweet tamale"". I fear they left the winners with the judges, for they didn't make it to my table. The tamales were dry and contained about a tablespoon of chopped chiles throughout. And, although they were sweet as promised, they lacked depth of flavour overall. +The service was fine and the refills on soft drinks was fair, but I really was hoping for more. We are in town for a couple of weeks and may try it one more time since it's close to our accommodations, but with all these Tex-Mex and MexiCali flavour houses to choose from, it will take a lot to win us over for a better review.",review,onCVo3jNuKsSk8HcpDE1sQ,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2012-04-10,1-iX1fzwbXoBWW1eqXG8cQ,5,I love their turkey and provolone cold sub! Delicious with pickles added.,review,yCH6WEUBkF9PfJEAaNBz5Q,0,1,0 +AaKlegu7gmOCD4rEESF76Q,2012-11-11,RSsoz4Z2G4lubzLTTDKPwQ,4,"Trusted as a consistent Friday HH or evening meal/get together spot for a long time. We have been a slave to the Wingless Buffalo Dip the whole time. We have been fortune enough have a great server (Mallory) most of our visits as well. She has never steered us wrong in food choices. I have had the pizzas, the sandwiches and even some special entrees. It has all been good. The Reuben sandwich is a favorite and so is the Sonoran burger. The sweet potatoes fries are always really good side. + +Now some friends have had some bad experiences with service. They have a hard time returning. It happens, esp. when it is first Friday or when the host staff is out of their minds, there is just an inconsistency there. But don't let that ruin the tone of the meal. + +Awesome Patio. Parking can be a pain, but sometimes you can park close around the corner. Great mix of people, so good people watching too. Seating is tight at times, because sometimes you are seated right next to another table where you can here each others convos. Can be fun at times. Def. take all of our out of town guests here. Great HH spot.",review,GOwr-GpWKBzf7vhcc2cH9g,0,1,0 +jtzhY-P4H6WSYpv5rWhxtw,2011-11-29,7MkFCDQtCDZF-b_ABKG3ZA,5,"Really good, healthy food. Owner is super friendly. Would definitely recommend. :)",review,f01B5tRtqf3k6ak1pPSAWw,0,0,0 +MwaFQkJxzqg8G5_hTip99A,2012-06-29,YX5VOXWPwKe5Zstuvj2Ylg,5,"I'm giving them a 5 star review for how they handled a poor experience we had. My family came here for my brother's birthday a few weeks back, and two of our four dishes came out undercooked. We brought it to the attention of our waitress, who brought the manager Adrienne over. They both apologized profusely and took the charges off of our bill, which is what I would expect. We were polite and appreciative of their apology and really didn't expect or ask for anything else. However, they also offered to give us a credit to come back another time so they could prove to us that it was just a one time mistake. + +We took them up on the offer, and sure enough the food was excellent the second time around. Our server was fantastic, Adrienne came by to make sure we were happy, and the chef even came out to make sure we were pleased with the meal. They really went above and beyond to make sure we left with a positive opinion of their restaurant. Everybody makes a mistake once and awhile, but not everyone has such excellent customer service to correct it! I will gladly return here as a result.",review,ZQTN4owdKLm69Ci88zoRUw,3,2,0 +-YtGU_1Sc1E57-gJfUcDTw,2011-09-04,_hm1ZU5LIXje2_yyC_Bnvw,5,"I cannot believe all these negative reviews. + +First I'd like to start with the prices. Don't get me wrong, I love a good deal, BUT, if you are going to complain about how jobs in America are moving to China and India and not shop at AA because of their prices, then you are a hypocrite. AA supports US jobs and their factory is here in the states where they actually care about ethics and their employees. And, they have sales too, I have been in this store more than a few times and seen 30% - 50% off sale signs. And, on their website you can shop the sale section and save up to 75% if not more. + +To the clothes - I understand some people may be weirded out and flash back into the 80's when they see the clothes here, as I have read from the reviews on here, BUT, these clothes are actually very stylish and a simple top with a simple pencil skirt from AA and with some accessories you have a fab outfit. If you are looking for something not so simple try a white strapless romper with their petticoat skirt, add some accessories, and your done. + +The sizes - I am size 4-6 with curves, and the clothes from here fit me fine. I can understand the frustration if you are a little bigger and have had a hard time fitting into the clothes from AA. But, the good thing is that AA is now coming with XL sizes in some of their clothing. + +The models - I love the fact that the models are real and barefaced. As someone who has struggled with a skin condition, I always hate walking around the mall only to see photoshopped perfect faces surrounding me. I always feel comfortable when I walk into AA. + +This store - I have never had a bad experience. Always a good one. i like the store, the employees have always been nice to me, I have no complains.",review,5jODkdonMV0HbIIPik1RuA,2,1,0 +opikDGSxDcfZwYWbk7dKtw,2012-01-22,Dl5_GHv7GDYOVHk3gfb0lQ,4,"I really like Fresh and Easy. I've actually come to dread any time I need to go into a Safeway, Basha's, or Fry's. They're too big! I live alone, I spend most evenings cooking my own meals, and I am on a budget. Fresh and Easy is just right for me. And on the plus side, over the past two years F&E has really grown in the right ways. + +They carry more varieties of fresh produce now. (I used to get upset that I couldn't buy leeks at F&E. I can now.) They have more specialty food items. (I cook a lot of vegan, Indian, Thai, and Mexican food. Used to need to make two grocery trips, but no longer.) Unlike some of the other reviewers, I really like their prepared foods. I mean, no prepared food will ever be as good as my own cooking, but if I'm in a hurry, it's good! + +They also have really great coupons. The weekly mailer has a $3 off $30 coupon at the least. I recently got a $5 off $25. And they now have the F&E Friends card which, on the simplest level, gives you money back for the money you spend. Sure, it's not a whole lot, but I'll take what I can get! + +The employees are always helpful, and have become much better baggers than in years past. (I'm picky about how my groceries are arranged inside of my reusable bags!) + +Needless to say, Fresh and Easy has won me over, and unless I learn that they use the tears of kittens to shine the floors (or something equally extreme), I'll continue to go back for my groceries.",review,kMiQnYFmAYbjHyyIPGSwoA,1,1,1 +jgbEZzERVI4yvAAtXWW93A,2009-12-10,cq6yROcgQteOA2n0R5C7XQ,3,"Food was good, I had the Frutti de Mare with red sauce and boy it is spicy, so be warned. Everyone else ordered the Spaghetti Pie, which was the special that night. It was OK, my mom's is better. The service was good, but the wait for a table was over an hour. Of course if was a Saturday night and they are having Glendale Glitters so it was really busy. The pizza is good, I have had it before, I am not the biggest wood fire pizza fan, because it is always burned on the bottom!",review,tfYiqaLU5swUfMO9JJp9Dg,0,0,0 +6Kon3cR5ZEm5rmYKlpcfcw,2011-01-29,Or_CAWhC84zaPnxKOtoJpA,4,"I recently stayed at the Valley Ho for a conference being held on-site. My experience was really nice, everything from the food to the retro style room to the poolside atmosphere. Cafe ZuZu has an assorted lunch selection and Trader Vic was only a short on-site walk where I enjoyed their happy hour. The front desk, catering and valet staff were helpful and provided outstanding service to all the guests. When scheduling future company events I will definitely keep the Valley Ho in mind.",review,LOZgMx3mJPzmCVtlJ1KpfA,0,1,0 +s9XNBJAZ3ZcNW5u8BRZXuw,2008-01-05,RVsB-pYlQOLgsL7_e8uupQ,2,"Nice atmosphere inside and out, with competent service. BUT: +The food is not great. It's very dull. It reminds me of the food they serve at Chevy's but significantly more expensive. I really have no desire to go back. Scottsdale and any attempt at Ethnic food just doesn't mix. +Edit: Thanks to Yelp, I've discovered just a few places in Scottsdale with good ethnic food. So now I really don't have any excuse to settle for Blue Adobe.",review,DoR_Zi-LJvWsTzZHvjE2KQ,0,0,0 +-h-q6zTIdPlkz9BDP11sBg,2011-07-22,XJyBAXnKYKu2PgDuUFkB7A,4,"Double-dog dare you to ask for a side of ranch. + +You won't find a fryer in the house either. But what you will find is that every dish is under 475 calories - & every dish, delish! Well, I'm generalizing because we DID only have two dishes, but if the chefs can make a salad taste THAT good, why, what will they be able to do with meat!? I'll find out sooner than later. + +We'd only stopped in for a mid-afternoon snack on a Wednesday - the decor reminds me a bit of ""Frank & Albert's"" - warm, clean lines and inviting. Our service was spot-on. Everyone was professional and friendly. Many yummy dishes on the menu - I wished I was hungrier! (The menu changes weekly, so I didn't get too attached to any one item!) Mini, adorable desserts were tempting-looking and only $2.50 each. Seasons 52 also has an extensive wine list and a roomy bar area. There's even a piano behind the bar; I did not see a tv in the house. + +Let's see: No tv, no ranch. no fryer. Tasty low calories at reasonable prices, with great service in an upscale cozy setting. The place even made me abandon my ""butter mantra"" for a couple of hours. The reinvention of dining out!?",review,rQ5pqYUrzZSK-uuQ_ZMEeg,0,0,0 +M2dsZugyf8KoGsQegIv-Gg,2011-12-29,X3rfdIZyIo-Z8XKy09UtYQ,5,"Mylissa has given my daughter and me the *best* cuts! If you can, see her. She will take great care of you!",review,SGE6GqKnPMCFqds7rHyZCw,0,0,0 +cRwNwAGQ8Pc_-orLefrwRw,2010-02-17,WTaHXfQ-T7kmJ2f_Sxcf1w,4,"It'd be nice to see this chain grow and get a little more traction in the Valley. The shoestring fries are pretty good, the burgers have a great seasoning. Maybe the burgers could be a little bigger, I guess, but I'm nitpicking. + +The real star for me is the custard, and my favorite is picking up a good chocolate shake. The stuff is very rich and a sugar coma waiting to happen. Shakes aren't the cheapest, but they're pretty unbeatable mood boosters. + +I'll have to change my review once I try more on the menu, but for now, I'm a fan, and I enjoy the place. Good fast food and doesn't disappoint.",review,YEp3lrsXDGDbLT3cFRHT7g,0,1,0 +AysJalmBcLa5zlNDByb3Ww,2009-05-06,N1-TA-k4-Fhh9wq9RB9D1A,5,"So I was introduced to this station about 6 months ago by a fellow yelper who goes by Amy D... She has a wicked 8-10 spot on Tuesdays and I thoroughly enjoy listening to it on a weekly basis. Well, I was happened upon an opportunity... Nay! A priviledge of being a guest on this FABULOUS show and, being the attention whore that I have been labeled, I accepted. I won't go into HOW I found myself being handed this prestigious title of KWSS Guest, but it involved a House of Clubs, Twitter, and a whole lot of begging (on my part)... + +There I was... in the presence of 100% pure, raw (Can't decide which word to use ""Talent"" or ""Creativity"") and in a pretty bad ass studio. The Fabulous Amy and I discussed all the important topics of the nation/world and stumbled on numerous great ideas. One being a cure for cancer! Okay, we didn't discover a cure per say... but we did briefly talk about it. + +The listeners were top notch and the atmosphere was professional, yet extremely comfortable. Plus, we actually got some free talent from a caller! He was awesome and sang me happy birthday. It was sexy. + +Thanks for a great time, Amy and KWSS! You rock, alternatively!",review,qwu5B9anH4AlEtau0K-6aQ,8,7,6 +dcd3C1gWv-vVdQ9XYV8Ubw,2009-10-04,qpeeBk9wrg9D2W7H94D_gg,5,"Good choice of ingredients, a bit out of a student budget, but it was WORTHY all the way. I was drooling with the flavors! Good environment and good service and good music (bistro style). I'm not much of a pizza eater, but this has a good place in my list! Forget about your papa dough or cheap Sunday pizzas...this is a real one!",review,LqgGgWi3FLHBViX9tmZ9sw,1,2,1 +WJ5mq4EiWYAA4Vif0xDfdg,2012-01-19,b0d_Ze0BYdxt7zbX4MM70g,4,"Love this place. the atmosphere was rather chill and calm. We played Uno, and drank pretty darn good coffee! we had a lemon cookie, which was...JUST RIGHT!",review,3Jw-rYwJEz6jSqPgVVmmhA,0,0,0 +fP-BPL6iRu2tbcvlnjRshw,2011-06-19,rv__rAMkqKW5W5qwILO6sw,5,"We stopped in to Copper Blues on Friday night after a Mercury game at the US Airways Center. Fantastic place! Unbelievable beer selection, great views of downtown and an excellent band the night that we were there made for a really great downtown experience. Will definitely be back again soon!",review,TIZvHaRMMph2udRx3yJ5dw,2,1,1 +Hxw3hG8Efg6WXSa5oRJhrA,2011-02-06,sT460xfA5FMgjVvUoAL_zA,5,The kids love panda express. My 9 year old actually complains that they give you too much food. This is pretty much the only non chicken nugget or spaghetti or pizza food that my 5 year old will eat. And to be honest- I don't mind it either.,review,Ys0ZU50fVW-BeDGjKto0mw,0,1,0 +mgllPJA6NQXlJurFWAkqQg,2010-01-25,ByTeAp2v-IgMBiqCsxXkjg,5,"Oooohhhh baby I loooove your way...everyday...yeeeaaaahhh. + +I wanna be with you night and day.... + +Went back to the swizzle last night and fell in love again. + +With pool. +With dives. +With football. +With beer. +With diversity. +With the random atrium. +With the jukebox. +With life. + +How can you beat pool and beer, combined with an awesome location, a diverse crowd, and a room full of people screaming at the TV because football is on? Then top that with the weird quirkiness that makes me warm and fuzzy on the inside...the atrium, a lovely bathroom and random bumper stickers at the bar. + +The End.",review,G_6pOq1gA4jyJ3j8mjOyJw,4,2,0 +Zh_y9AmSfWZpR2JB9wye-A,2012-03-29,RD0fMWQSR_ML5FaODjND_Q,5,"Fantastic find for delicious, healthy food and good service!! + +A local friend said that they'd heard good things but hadn't been yet. They asked us to check it out., so we went for a late lunch mid-week and it was still jam packed (30 minute wait) at 1:30 p.m.. We sat at the bar and received terrific service. The fish tacos, steak tacos, bison burger and desserts were all delicious. + +It is an open-air style restaurant where you can see into the kitchen. All ingredients are super fresh and the culinary quality is extremely high given that they can make even the healthiest things taste wonderful. I strongly recommend this to anyone looking for a healthy food alternative.",review,T9rTOwqkdtkliCv8LgWSjw,0,1,0 +LWtoosGlzTOp8A73Jh7cQw,2010-11-08,1FLzfSSQMNekqAaMC0jyOA,4,"There are many other reviews which extol the virtues of this location. I just wanted to add some of my experiences as well as a few observations. + +First off, at the time of this writing I've been in Phoenix for about a year. Learning about all the necessary places to go in a new town, I had the opportunity to rate businesses objectively (not like 'My mom always went there so I do too...') + +Fry's became a standard 'go to' place. Their hours are great (5 AM to 1 AM). There are many locations, and their prices are very competitive. They also have a convenient VIP card and electronic coupon program. + +Specifically to my needs, this location has a good pharmacy, an organic/health selection and a well stocked bakery and deli (for parties and special occasions). Their parking is reasonable and the lot is well kept/secure. There's also a Chase branch nearby as well as a Best Buy, Staples and Old Navy. On Wednesdays there's a Farmer's Market just across the street for everything else I can't find here. + +Not all Fry's carry the same things. For instance, I can only depend on this location to carry pita bread, garlic naan, large Fage yogurt as well as the Mexican version of creme fraiche. I appreciate this greatly. + +One word of caution, be firm with the staff at the deli. Take a number, insist on their attention, and don't let them gyp you with small wings or the bottom of the pasta selection. I know some of them don't care about their job, but don't let that ruin your experience. Remember: they're probably making minimum wage. + +Oh, and the other reviewer's comment about the parking is accurate, although I'm not sure what they can do about it as this is a mall complex.",review,mbgppRfYH0kC7p7X2VPcGg,0,0,0 +1sacSjgDNAj8SPvxLo4Efw,2011-04-12,LvJsRj5E7SvLNVZBK7Aabw,3,"Newly opened Mexican restaurant tucked away in the Dobson and Germann area. I would give the place 5 stars for decor, the owner has taken such great effort to make the restaurant look like old Mexico on the inside. + +The food was good but not great. I did relish on the tomatillo salsa brought with the red salsa and chips. The portions were pretty big, no room for dessert and had to request togo boxes. + +Ordered: +Seafood Tacos (great with excellent presentation) +Tia's Plato de Carne Asada: Tres Carnes - beef, pork and chicken (huge) +Tia Rosa Burro (huge) + +I will definitely return and review, but overall I did like this place.",review,ZRQdOIIhzrzE6sc3emgM-Q,0,3,0 +Pyu7o8W7I5l4h1-QhgGJBA,2010-05-31,XZZR2lwX9nxo1CaIHI3CiQ,3,"Cherry on Top is a rare example of design by market analysis committee, who couldn't decide on a unique concept so they decided to ""borrow"" from all of their competitors' styles, turning out at least as well as if not better than its individual inspirations. + +The result provides convenient answers to the following frozen yogurt questions: +- Can't decide between tart and traditional? Why not both? +- Can't decide between standard or high-end sweet? Mix vanilla, taro, green tea, cheesecake (but only at your own risk.) +- Feeling constrained by four fit all sizes? $0.39/oz., cup weight subtracted. +- Wavering on the topping healthiness spectrum? Fruit to sugar cereal to nuts to crushed big brand candy available. + +The quality is close enough to most of the relevant rivals (as long as one is not requiring the desert honey Sweet Republic tart variant) but, correctly and perhaps intentionally, the value proposition is that most patrons won't care about the slight dip, trading off for the flexibility of purchasing (only) as much yogurt and toppings as desired while satisfying Hershey's-acclimated children with a Frankenstein of saccharine flavors and junk toppings as well guests from the city pining for the nearest Pinkberry with original tart plus kiwi, strawberries, blackberries and pineapple.",review,g0QWJpYSfWKxQiel7gbFuw,3,4,4 +LHzVPddSPzMECho55zCf0Q,2011-07-31,Ft40qHyfMCejSTG5Xu-x3w,4,"Great gelato. It's actually very creamy so kinda taste more like an ice cream but still incredible. Lots of flavors probably 30+. Haven't had a bad one yet. Love the Roche, chocolate and pistachio. +Just had a pizza last visit- they have a new pizza oven. Good thin crust, tasty ingredients, soggy in the middle kind of like Pomo. +Give it a try!",review,ofPkm7BTBJeaD0OkmZNdNQ,0,0,0 +KNIFSqzQADOZWDO_7T-KzA,2011-11-18,keycSyfJ8R_MpMVn-v-RTg,5,"This review is based on an event I attended here. I did not stay at the hotel as a guest or experience the bar. I was a guest at the Etiquette Dinner put on by ASU and affiliates. From the moment I entered the hotel, I felt welcomed. Each employee I passed greeted me with a smile and professionality. I thought the hotel interior was really cool also. When I was leaving the event, I thought how strange that locals never frequent hotels in their cities. I should try it!",review,H_JsAwjiGEOr_RlZmwfNsA,0,0,0 +BLgkoO4MKq00V2o9jOf5zw,2011-09-01,4YEHc0Dt8yJwuFNxMIcA7A,4,"Adorable bungalow building: Check +Quirky, cute, mismatched thrift-store dishware: Check +Delicious, buttery, flaky croissant breakfast sandwich: Check +Super friendly staff: Check + +I went here for the first time yesterday and thought it was great. My friend and I both ordered the croissant breakfast sandwich which was super delicious and filling. Even though I knew that I'd be full from the sandwich, I couldn't resist snagging a brown butter scone when I saw it was the last one. Definitely made the right decision on that one, I'm a sucker for brown butter anything and the scone didn't disappoint. My friend ordered the Iced Toddy which was really good-- spiced but mellow. I ordered a latte and didn't like it quite as much. The owner was super friendly and remembered my name for the 1.5+ hrs. my friend and I lingered in the shop. He even gave me a (delicious) orange-zest filled strawberry muffin on the way out! If I didn't live so far away, I would be here all the time. As it is, I'll definitely be back soon.",review,Rr_-gavCIZXETevIFD29cA,2,3,0 +jsvIv9NRRBXdmCe8b88b4A,2009-07-02,2w-zUbAEjr6SbdTBNV76lQ,5,"Bad ass, just like the name. I've heard that this facility doesn't have any water restrictions so their course is lush & in tip top shape. It's definitely a challenging course. The staff is nice and the current off season rate is $35 for residents! You have to check it out, it's a great deal.",review,4qGR9kNFDYQ4mQREG0aRJA,0,0,0 +ypEtwQHobNJCZvPONO38WQ,2011-10-08,EQwasbNyl0Hg74rzrkajdA,5,"Fantastic experience from valet to dessert!! Boyfriend and I were both very impressed. We were graciously greeted the moment we walked in by a man in a suit who walked us to the restaurant. Our server was knowledgeable about all the items on the menu and suggested some things to try when we were waffling between a few different choices. Cheese trio platter was sooooo good. I'll be getting that every time we come here and it was the perfect size for the two of us to share. I had the beet salad which was very good. Love the candied walnuts in it. Boyfriend had the lamb which he said was perfect: Tender, juicy and delicious! The breads that came at the beginning of the meal were obviously homemade and fresh. Even the coffee was good. It's very rare for us to find a place that does it right so completely but I think we've found it. Service was fantastic! Our glasses were never empty and we were well attended without being pestered. Could it be possible I can't find anything to criticize?! I can't. Love this place.",review,-IQPD7ZO9n7iwUeHBhLJ9A,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2010-09-19,gPyYg-tiraAywQLxPxwksw,2,"Oh Man. This is not the place I imagined I would assign my first 2-star rating. I woke up as sad and disappointed as I felt last night, leaving the legendary, old school Durant's after an evening of less than mediocre food and terrible service. Sigh. + +Honey had a great lunch there a few months back and was excited to impress me with dinner. We saw Durant's listed on Restaurant week and were excited for the excuse to squeeze into one of their comfy booths amidst the bow-tie clad staff and velvet wallpaper. The instant time travel type setting usually makes for an incredible dining experience. Shall I fault the poor rating to their efforts at succumbing to a prix-fixe menu? Perhaps. + +Our time at the bar proved to be the best part of the night. Watching the bartender mix the martini's the way my Pops used to was nostalgia at its best. I LOVED that they serve bottles of beer with a toothpick of meat and cheese. That is brilliant. It could transform me into a beer drinker after all. We met up with friends and continued on to the dinner portion of the evening. + +Moving on to the booth, our waitress was definitely in the weeds. Having been in her shoes before, I always try and accommodate the situation. We ordered an appetizer and a few cocktails and waited to order dinner when she seemed able. Appetizer of artichoke dip was yummy. Tortillas and garlic bread and warm, cheesy dip delivered promise. + +The limited menu was just that. Okay first course salad/soup options. Main course offered Pot roast, a small steak or chicken fried steak. Stewed steak, grilled steak or fried steak. Really? Your menu is impressive...if you really don't want to participate in Restaurant week, then don't. + +Honey ordered the chicken fried steak as a continuation of the old school vibe. I ordered the trout off the regular menu after C pointed out the fish option. J ordered the cfs too. + +Food took a bit, but we had good conversation flowing, so it wasn't a problem. Salads and soup were fine. Main course arrived and we were all a bit surprised by the size of the fried steak. I guess when you think of this meal from the past, it encompasses half the plate and is oozing with country gravy. This steak was the size of a burger and had a dollop of thick gravy-esque goo on the top. Garlic mashers were appropriately placed. + +My trout was supposed to be topped with a lemon caper sauce but instead it was slathered with a gravy that hinted at lemon and was all wrong for a fish. The trout was pain-fried and should there have been a light sauce, it would have been good. But the fried fish with the gravy was just so not good. + +The fried steak too, so not good. Mashers achieved an appropriate level of goodness, but you really don't want mashed potatoes to lead your dinner. + +We were devastated. +The whole experience was so not what we came for or expected. I do want to give Durant's another chance and order a big, juicy steak and let them wow me like they do to so many, but it will be a while before our trek downtown includes a walk through their kitchen.",review,IQTk7FS2EF657T8wJqr-sw,1,3,0 +3tpve0HlkR8tKoS-82b9nw,2012-11-30,s6XugpGzhNgRpPXmCFZImQ,4,"I'm a great believer and loyal customer of Carried Away. + +They do carry LV, although they fly off the shelves fast! I've brought in 2 and both were gone by days end! If you'd like to be put on a ""call list"" when they come in, they'll do that for you! Although there are several others that are on it too. + +I'm going in today to drop off two more in fact! +Happy holiday!",review,HxqVJRFrrqi-FD_Xq3CXSg,0,0,0 +DDnmNTvIIQu2t3WZ2EQx-w,2008-05-12,l3-jVsU5mUqKrN6iTWfJkw,4,"I love osso bucco, they have really good mexi-style osso bucco, so I love them. I prefer to sit on the patio or in the bar. But keep in mind, parking sucks if you go on a busy night.",review,9VPNlcKsL99FvKtz1r9qJg,2,2,0 +s9XNBJAZ3ZcNW5u8BRZXuw,2012-12-18,uw6eyCTL2KY3u_ju7E69Aw,4,"Five of us enjoyed a casual and wonderful dinner at Blue Adobe. The fresh chips and dark salsa were very good - it took a lot of willpower to stop munching the chips and salsa before our meals arrived. I ordered the chicken chorizo which was accompanied by twice-baked potatoes served in a jalapeno pepper half - unique and zesty - as well as grilled vegetable strips. All five of us truly enjoyed our meals. The atmosphere was comfortable and casual. Our server, Ashley, was excellent. I would definitely recommend Blue Adobe if you are in the Scottsdale area.",review,RyIUiuOrai_upllxKqiQqw,0,1,1 +L-uPZxooP_ziXCtRrWi8Pw,2010-01-30,DOlLKwtj96-DKuhFoMFDow,5,"Wow! I was in town on a week long business trip and the one thing I look forward to most when I travel are the meals. Cafe Monarch was a highlight of my trip. As soon as I walked through the door I felt cozy and right at home. Chef Chris asked me what I preferred out of a few selections and I went with the lamb chops and spinach. Usually I'm pretty picky about lamb and always inquire about prep but I left myself in his hands. Chef Chris served me a perfectly cooked thyme rubbed lamb with a wonderful citrus sauce. Spinach was prepared with garlic and a hint of mint which complemented the lamb perfectly. Simple, fresh, delicious... + +Just remember to bring cash",review,gxyAXBHgDi428kx6_P3o1Q,0,1,0 +EMGkbiCMfMTflQux-_JY7Q,2012-11-29,qY4rWxTTeANd7EEzJ6kqAQ,5,"If I was on death row and had to choose a meal for my ""last supper"" I would include the New Mexico Skillet (hold the chorizo) from Butters. + +I have searched high and low for any other breakfast place that compares to Butters and I cannot find anything. I thought that I had found a close contender in Perk Eatery in North Scottsdale but a second visit proved that they were not consistent. + +Butters is consistently amazing. The service is strangely fast but you'd have to be crazy to complain about that. Their menu is creative and there is a really great variety of food. I always want to try the crepes or french toast but I just can't bring myself to get anything other than the New Mexico skillet. Maybe one day I'll branch out.",review,uPRz5JI11QQpwgNnSZZzaQ,0,1,2 +U_CvxSM9epIi8u5A0jOUVw,2009-08-28,WhXRO_DxrQERc8T1GnozNw,3,"this location is kinda dumpy and seems dirty. it really isn't dirty per-se, just outdated, run down, and therefore gives a dirty vibe. the pizza is always good, but generally the lunch pizza could be warmer. wings are good too. salad bar is low quality. the 3 stars i awarded are really for the pizza, because if you only order that you'll probably be satisfied. and $4 even for 2 slices and a drink (including tax!) should i really have a right to complain about the outdated facility? probably not.",review,GyFmGA5UQZ4pXdx1lUH86g,2,2,2 +QnAzW6KMSciUcuJ20oI3Bw,2010-05-02,VjEnvPiYVFVjzYuWR9g7oA,4,"Fresh and simple! Taste's great! Worth the drive! The burgers are like the ones you make at home! I had the sweet potato fries, highly recommended.",review,k4pme9GZTaHk242zwebMsA,1,1,0 +B_fVPPUxw0TA9TfT5NB5AQ,2010-09-12,3J-JkSLD2OSCzNuCmBPIqQ,2,Crust is chewy. Pizza is below-average. Nice owner though.,review,pWTUeXZKI6oJ78WTET5y2A,0,0,0 +4ieuLil-D58FBU1DVd_xGA,2011-02-14,_SpcHgAjroszOj_9DO0ENA,4,"OPEN for business!! It's located in the Canyon Trails Towne Center along the main entrance with the 2 banks. + +Casual, cheap, yet decent quality sushi and Japanese entrees. New and clean. Excellent service. Grand Opening special: one FREE appetizer if you spend more than $10. + +Decent spicy salmon and salmon avocado rolls. Very crunchy shrimp tempura. Excellent dressing with the included salad. Miso soup was a bit bland. They need to add a little more miso to the broth. Lunch specials include any bento boxe for $8.25 and pick 2 rolls for $7.45 that includes miso soup and salad. + +Hmmm, I'm not quite sure whether it's Ah-Kai Sushi & Grill or Ah-Hai Sushi & Grill. Public records show Ah-Kai but the menu says Ah-Hai.",review,s7Tm9oYWqRlBm5ex2OQ1nw,0,2,0 +bQ1s5pqX_UVWVQ-k4e9rAg,2011-08-25,GQmYawZmvQzfoT-YSvGPIA,4,We were trying to choose a new place for lunch at work and this was mentioned. We all LOVED it! (that is saying a lot!) We ordered off the online menu and I called it in (she was VERY friendly) it was ready in less than 10min and was hot and delicious!!! It also doesn't cost an arm and a leg and is close enough to go there fairly often. We will be back!,review,kYgPm0uUJo7cO94b84qBog,0,0,0 +RnUemTgfTTCU01Xn2Tc5qQ,2012-01-22,J_aaoRPLpqLRssDz9EjhYg,5,Beer heaven! What don't they have? The staff has a taste for heavy body beer so if that isn't your ONLY criteria for great beer. I would just go with your gut. Their staff does know their stuff.,review,6qSuo4M7twnv2ed7ydPSmA,0,0,0 +bjUH-01t834CVg0Yl0CLWQ,2009-04-10,_rIHwy1h3NiyCSy0UWDSQw,4,"I really like eating here. I have only been for lunch, and I have found that the service is competent and friendly, and the food comes out FAST. I've probably eaten at MBFGR five or seven times, and the only time I had a problem was on my last visit, where they served me a plate with cold fries. This was a mistake, as I had a slight hangover and really, really wanted my gyros pita and fries that day, so I asked for fresh fries. Well, whether it was to apologize or to be sassy I can't say, but either way, I ended up receiving the biggest fattest plate of fresh, hot fries I've ever seen. They definitely made up for their faux-pas. + +I'm a huge fan and will be back many, many times. Opa!",review,5q_h6Uir_bow-rDIjFfr6A,1,1,1 +uKSX1n1RoAzGq4bV8GPHVg,2012-01-29,_vfM-lPC-QPxE-S-QsdSng,2,"I don't often review places on Yelp because of the time commitment and because usually I am just looking for a good bite to eat. This time, though I feel I should if not to balance the ridiculous number of 4 and 5 stars bouncing around for this place. +The food was decent, and the atmosphere OK but seriously, how can this place cost as much as it does ($60+ for two people eating light)?? And how are people fawning all over it? I don't like to complain about a good meal, and indeed this meal was good but I can't seem to justify the cost as compared to most any other place I have tried in Phoenix that would be considered in St. Francis' class. + +I ordered a Hearts of Romaine Salad and a bowl of cauliflower soup. I shared a plate of the baked goat cheese with my guest. Not one of these dishes would have tasted much different had I made them myself from ingredients at the Public Market. Indeed, I have had cauliflower soup at the market that tasted just as good for a fraction of the price. + +The service was good, I will say, and for that I would offer a higher rating. But the general ambiance of pretension was more than I could justify, again for a meal I feel like I have had 100 times before. + +In the end I guess I would say if they would knock about $10 off of each plate, and cut some of the pretentious attitude, I would probably be offering a much better review. + +I am not planning a return anytime soon.",review,bWdkyh5Ax9Nl86qCuyjQng,0,2,0 +nvaAUTTl7oqiJDhuimNG6A,2010-09-20,FDaNq98yO31Z_4uFnkqhHA,2,"Oh, this was not good. Food not tasty. Overpriced not tasty food. If you're going to pay for a crab benedict, it should remotely taste like crab. And not be cold. Too busy, too long of a wait, too hungry to change. Other items tasted at our table did not receive much better feedback. I can't recall what others ate. In fact, there wasn't much worth remembering.",review,lFa_Rh34tK6hSPYAZZ8Jyg,0,0,0 +1eBJyYf3JEccqXUFxG1VWQ,2009-09-23,-M9Ek478gmatw8zr8lHwbQ,4,"yummy! that's all i have to say about my blazin' buffalo sandwich on foccacia . the foccacia was a perfect specimen: light, appropriately herbed and airy. the sandwich fillings (sliced roast chicken, tomatoes, ranch, lettuce, and buffalo sauce) were fresh and yummy. i had a coupon for a free drink which made my sandwich, chips and a drink $7.47. a pretty awesome lunch for less than $8 makes me happy. almost as happy as buffalo sauce makes me. i have a tendency to be obsessed with buffalo sauce. a word to the wise: my co-workers got pasta salad and it looked awesome. they said it was tasty too. i was jealous. there's no up-charge for pasta salad - i recommend you get that instead of stupid chips you can get at the grocery.",review,GyFmGA5UQZ4pXdx1lUH86g,1,1,1 +4waggbCK-MSE9dbIdSMfPA,2010-12-12,hlDDRPyMrbqbXo903h1iHA,3,"The view, services, and drinks were perfect, but the food was nah... not good. + +Went there twice, first time was for drinks and view, it was wonderful, so we went again for dinner, the dish was not good. + +If you want a wonderful meal for your date, try somewhere else and go there for the drinks and view. + +After having a dinner there, I won't bring my guests there except for the view and drinks.",review,H2jcFGSS1n60jcKPBb-IoA,0,0,0 +3Zsjlum5kl5N5KV712aTMQ,2012-09-08,OiW_SWstrvvP9J65aOr6gw,5,"Great ambiance (though a tad noisy), food, service and views. For our meals, we got the following: + +[Amuse bouche] +I forgot what it was exactly, but it consisted of tumeric wild rice and a piece of shrimp. Tasty and a nice introduction, although the rice was annoying to eat with our forks. + +[Appetizer] +Bread with 3 dips - The pepper pesto was hands down the winner, and the other two aren't worth mentioning. +Butter lettuce salad - Decent, but a little too sweet for me. +Lobster bisque - Very rich and creamy with a kick of smoky flavor. + +[Entree] +Halibut - Best dish in recent memory! Get this. Just do it. +Roasted cauliflower risotto - Came with very tender pieces of beef. The risotto was cooked well, but it was unfortunately too salty for me to properly enjoy. + +[Dessert] +Espresso cup - The ice cream was delicious. The rest of it was okay. + +After dinner, we took a trip outside to take in the view. We also explored the surroundings around the entrance, but it only led to an empty lot with the unflattering presence of a dumpster. Oh well! + +The service was great, from the host calling to confirm the rsvp an hour after it was booked on opentable, to the sommelier suggesting a great bottle of wine, to the server making sure there was a candle in the dessert. Two thumbs up! + +Totally coming back once it cools down to be able to dine/drink outside. Woohoo!",review,e5l5O_yypJOJP0k9-lDrbw,1,1,1 +ArJEYF1XE5QbuVQVUGjv9g,2010-10-16,ep7xxmmlqA1NmMMFuB3mtg,4,"This particular Budget Lodge is a hidden no-frills gem. We spent a single night here after a long day's travel. Two story motel with gated outer access stairway, balconies to second story rooms, two inner stairwells (carpeted). No elevator, which is a shame as we had rather a lot of bags to bring inside. Still, a very clean, comfortable room. + +Ladies, you will appreciate the bathrooms. While the towels are not spa-quality, the room had a pleasant palette (yellow, white, chrome and beige) and one of the best showerheads I've had the pleasure to use in a motel. High enough to adjust and not hit my head (I'm just shy of six feet). Excellent water pressure. + +Our balcony overlooked the alleyway and nearby buildings but the rate, the sleeping accomodations and the overall comfortable feeling surpassed any minor discomforts. + +I'd stay here again.",review,TISpYPWb1PXDmUYG2bsDzQ,0,0,0 +0gQrhOYWdO0XVZEKtOrvaA,2011-03-03,qAstxuzTbZ71zWnnkdTNSQ,4,"Ok here is the deal with Red Devil Pizza. The key to making pizza with crispy crust is to have ovens that great sufficiently hot. That is why I like places with brick over pizza's. They don't use Brick Ovens at Red Devil but I have been told that Red Devil has some really old pizza ovens that are not available any longer or hard to get. I can't verify that, I don't even remember who told me that, maybe I read it some where. Don't know if it is true or not. What I do know is that Red Devil is one of my favorite pizza place in the Valley. Their pizza is consistently good. Thin-Crisp and delicious. I have had pasta's and salads there as well. They are fine, nothing to get excited about. But the Pizza at Red Devil is something I will stake my reputation on. Actually I don't really have a reputation, but if I did I would lay it on the line for Red Devil Pizza. The long and short of it is, I am very passionate about their Pizza. Period.",review,TxOR39w0Mlbd4h1siXyb_w,1,1,0 +rkbe2bfskoPY-K_mcYjSYw,2012-02-02,Q6F0ZXSoDq_a6aMwENq6MA,5,"Lots of cool, cute and educational things here for my two kiddies. I stop in here for each birthday/Christmas to balance out the ""junk"" toys. I love the art project portfolio that is divided by school year and the school memory books. :)",review,GPPHDWEZGjiw777_iTOJ1w,0,0,0 +wl51t6lT7leiX64SlkOx6g,2011-06-05,Fxn-nDVt2YaPacjdrE1-MQ,3,"Dined here for the first time tonight. The food was..A-OK! Certainly not authentic Mediterranean food but I don't think it is trying to be. The first thing we noticed when we walked in was the loudness. Way. Too. Damn. Loud. From an acoustician's standpoint, all the hard surfaces and the cavernous dining room make for a very loud joint. This is a big minus in my book. + +On to the food! We ordered the beef gyro sandwich. Very average but tasty nonetheless. Checked out the lentils and rice salad served warm over a bed of lettuce and veggies with dressing. Sadly, this was a bit of a miss for me. The rice was quite mushy and just didn't stand up to the heft of the lentils. The taste itself was quite fine but I couldn't get past the texture. Also, if you order this dish, know that the grain/legume level far outweighs the veggies. A huge portion (which is great for the pocketbook) but beware if you're watching carbs. The salad below was actually refreshing but all in all, the dish just wasn't for me. + +Also had the dolmades which were quite nice served cold (albeit a little overstuffed for my liking). Our server was very good, very accommodating with special requests. Service was a bright spot for sure. + +Without a doubt, while I didn't LOVE the food here, it was tasty enough for me to come back again and give it another try!",review,Xdu24yBabw0uq4GzKBhWaA,1,1,0 +DGtOkc0KNTyK8rDkmsPNYw,2011-11-14,81GFhUb2nh9Bq_rBpyZhWQ,5,"Great service, I didn't get steak from here (yes, I know...a steakhouse), just got the Zesty Thai Salmon. The salmon was awesome with the chili mayo, baked potato, and asparagus. Can't wait to go back to try their other dishes. + +Thank you Kathy (owner) for taking the time to send me the name of the dish! Had to update this review and rating because of it :D",review,FgauKBp6w-_8hOY1CRYMoA,0,0,0 +uDoEofFBFyaVsAR7UCYMDQ,2010-06-12,YUrLPES0xPgnZ2l7Bv6mjA,3,"Very Clean store. But I guess when you're paying about 300% more than you would anywhere else, the place can afford it. The people in the front are pretty friendly. There is a lady in the deli, she is pretty friendly/talkative. There are people who mill around the store wearing name tags, they are not friendly or polite. + +I just cannot get over how expensive safeway is.",review,801mMnd8E2PGoRB9Nc0UhA,0,0,0 +AAkqVCuUGIP0gvY42_CRYA,2011-06-15,J5UxZzoekVD-HuahfpJzRw,2,Long waits and teenage workers with bad attitudes...nuff' said.,review,7C-jyTrOX-iJ-MrSJuh-8A,1,3,0 +MAfc2V_EVtyR9rMxxEAPLg,2009-08-07,rOlff5bjdNWYuANuN7b5Fw,4,"I moved to AZ a few months ago from NYC, where I lived in a neighborhood of great Vietnamese restaurants, and have eaten my way through the Vietnamese enclaves in Boston and in Hong Kong -- and this place ranks up there with the best of them. You can tell how authentic a Viet place is by the condiments when you order: the right kind of basil, mint leaves, and limes. This place has all that correct, and their fish sauce is perfectly seasoned: not too sweet like some faux-Viet places, and just the correct color/taste. I'm lucky that it's down the block from my new home, and I can run in whenever I want. The pho is right-on, with really tasty and rich broth, and I also love the noodle cakes with grilled beef. + +Only complaint is that I find the price to be slightly higher than what I'm used to in NYC (of all places!). But it's only about $1-3 off per entree, and I understand it may cost more to get their supplies to the desert.",review,2ARM6NFVciTzV21r7p8jiw,1,1,0 +saON8-nDZi5W64u1xGtmPA,2012-07-04,b0YTK99evLRag-WKyWbfvw,4,"We went out last night to the movies, and with an hour and a half to spare, we thought we had time to stop at this newish restaurant on the corner of Indian School and 24th St. It was a family owned place, baby in bassinet by the cashier, and absolutely no explanations of what the food is. Just strange names. We ordered and sat down. 35-40 minutes later, we realized the food still hadn't come and we'd never make it out to Scottsdale for our movie. So, disappointed, we took the food when it finally came and brought it home and ordered something up on Amazon. When I dove into the ""to go"" boxes, I stopped complaining. Man, that food was delicious. I ordered the Chicken Tikka, only because I pretty much knew what it would be, and it far beat my expectations. Our Chicken Kabab (ordered again because we knew what it would be) was delicious as well. To the owners, thank you for being here. We'll be back. Please develop something that describes the food, and make a non-egg version of the Naan bread please! Lots of vegans and allergies out there who don't expect food from your region to have heavy eggs included. Readers, as long as you set your expectations correctly about time for food preparation, you'll be very happy with Khyber Halal. Get in there and support this neighborhood gem!",review,1-A_PLT-60EZ9MsfbkV9sw,1,1,0 +gUt-pPUpOVVhaCFC8-E4yQ,2010-03-27,50DlJdkf0jtG-CQLDx8jGQ,2,"My friends and I got a 10-person karaoke room and ordered food while we sang. The room is SMALL --in other K places I've been to, that would have been a room for 5 people. With 10 people in there, we turned into a sweaty airless mess very quickly. Secondly, their song choices are not good. They're behind about 2 years. Had we known, we would not have gone there. The food was mediocre; I've had better sushi. A room rental comes with a complimentary sushi platter, which was one roll (no idea what it was, even though i ate a piece); some edamame; two ribs. I ate the edamame; they weren't cooked through because they were hard and had that slightly spicy raw taste. + +We went on a Friday and it was packed to the gills with Scottsdale d-bags. At least the servers were very sweet, even though they messed up drink orders once and the bill once.",review,2ARM6NFVciTzV21r7p8jiw,0,1,0 +Ioi8SAipW_eLRuwH4BV0_Q,2012-02-25,Le042ZmTK1pmcF7HiGEgvw,4,"One thing you will notice about Zia's, they really work to great everyone who comes into the store, and that is, I think, indicative of the overall spirit of service you can expect to find in this store filled with a surprising cast of beatnik, bearded, tattooed, and pierced staff that you will find at this emporium of music and cinema. Some items are a bit pricey but wonderfully fun to drift through the isles and see what you can find in the used section of the store. I'm more of a cinema person myself and just picked up a blue-ray and a DVD video last night (sort of a payday tradition for me). Even better, when I've compiled too many movies in my personal collection, I can take them down to recycle them into the used section and have more credit to spend on other new items in the store. + +Though I'm not remotely beatnik in appearance (firmly a member of the establishment in appearance) I've always been warmly greeted and welcomed by the delightful staff at Zia's and consider it to be an important and unique part of the downtown Mill experience. + +One thing I would like to see them do, and maybe I've overlooked it, is carry some actual vinyl albums, but there is only so much space, but that seems like it would fit with the overall ethos of this fine establishment.",review,aIAjAU-6NH583EkQ6E9KRw,0,0,0 +GRFunGSUZxXqNCZJrN8Oow,2012-05-27,AshRXkW0Nx2emWON3-tdyw,5,"I LOVE THIS PLACE I JUST CAN'T NOT GET ENOUGH OF NCOUNTER! +the vibe is young clean and fresh. +the good is so delish.. I keep telling all my friends to go here for brunch (:",review,-vRFUY8ixuNniCCNVvmkRQ,1,3,1 +mBDhy9j4qwKRnf4h8UQnrQ,2009-05-22,vu0il2M0s0ZD3s2QcmQEQw,5,"One of my favorites. The crispy chicken tacos are overstuffed with meat,lettuce,cheese and always filling. The prices are reasonable for what you get. Also like Julios g too next door for quick take out or ""no Tip"" casual meal. Self serve chips and mild chunky salsa are terrific.",review,31-ApcgVr4DiigSeksTmEg,0,1,0 +kk85ivM6MQUtH8u642p1Ew,2012-01-16,EJYcRFgh1_E9ggnhCscMsw,5,"Hubbard Family Swim School has become a staple for our family. You can feel the warmth and dedication on every visit. Our kids love it and are excited to come to every lesson. We even have birthday parties here! + +The instruction is top-notch and it's evident while watching through the huge glass wall. + +Most of all, my 5 year old is a much better swimmer than I am, his father. Thanks to Hubbard.",review,pyQsAolvBtbhyICbDEnBKA,0,0,0 +wT0L6ZyFjq3CQKYqENvC3g,2012-11-09,Q1_o2NdjgrKFwEESOXv7Lw,1,"I wish they had a ""0"" star option too! + +The service and food was awful. Just a bunch of kids running the place. The place closes at 10pm but when we went in there at 8pm all the workers were too busy cleaning to go home early to help us. The food was burnt on one side and raw on the other. The manager was too busy flirting with the other help. We couldn't get drinks because all the glasses where dirty, we were told by our waitress. We asked for the manager before we left at 8:45 and was told he already went home for the evening. What kind of manager leaves a bunch of teenager to run the place? + +NEVER GOING BACK!!!!",review,XHAY4WP-fh5XWUJCS-sC6g,0,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2010-09-09,oImxnyGf7frJneJY50SQkg,4,"Very good, fresh food, nice ambiance, reasonable prices & good service. We're from out of town & found this place with the help of Yelp! We'd definitely come back again! + +We had the Caprese Salad & the Sicily pizza. Both very good.",review,1ajv7CEuzebjrv7X-iwTmw,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2010-02-16,E7s0mC9akrUJnB8YthyStw,5,"This is not an Asian Topless Bar. It is an Asian ""Tapas"" bar. The guys I was traveling with spent the first ten minutes waiting for the show to start and were disappointed when I smacked them all for actually thinking I would take my coworkers to a topless bar. + +""Tapas"" are little appetizer plates, and Sens is all about getting a little taste of everything. The atmosphere is fantastic - eclectic, moody and very, very cozy (so I recommend reservations). + +The little dishes are about four single servings, so you'll want to order several plates! Highly recommend the volcano flamed beef and the sugar cane pork. The food is very flavorful -- but everything is a bit spicy (garlicky-spicy), even the dishes they call ""mild."" + +Plates run about $6-$9 each, and each person in our party ordered 3 or 4 plates...we were all full by the time we left! Definitely get a cocktail, their mixed drink menu is fab (White Sin is absolutely sinful...and absolutely worth the indulgence).",review,RMej4sGVkwDOKhqkmJ8EgA,0,1,3 +XK5FFbrKWMjRqc6ZbSTknw,2011-04-03,G59gfZmTbAYD02Yy0kKtmw,1,Good service but the food was horrific. The pollo fundido was dry & no flavor. Could not eat the tamale it was so bad. Will not go back. I had better Mexican off the neighborhood roach coach.,review,iW5hQ7GD6qc-Px2bamS1sg,0,1,0 +_sBRg5hmoBqkZPzFpcMBOQ,2008-04-29,GGx2gRAURedQWbgQ7Vvr0w,2,"The upstairs theater is nice enough. There are a few nice semi-upscale restaurants here. It's also got a really good swanky (and somewhat hidden) bar here. + +So why only 2 stars? Well, because it smells like this is where all the diarrhea in the world goes to die... especially the parking structure. If you can escape the smell though, this is a nice spot for a date. The problem with that is when you go walk her to her car, you have to try and figure out how to have a good night kiss while your nose is telling your brain that you are swimming in a septic tank. + +The new Waterfront mall corridor stinks like this as well. Maybe that's where the term ""filthy rich"" comes from. What do these people eat?",review,Cp-PV8rsypbO-xBrQ6KmQg,1,1,5 +EwHIy2ciDTtmlj7lpa9dng,2012-07-09,U6XI7YIrdG2BXmNj4GkbOA,5,"By far the best poker room in the state and I have played in every casino poker room in the valley. The action is always there-lots of dead money to be picked up if you know where to look. Good promotions, amazing food served table side and all the sports games you can watch. I wish they would bring back 6-12 limit but 8-16 will have to do =) such an improvement over the tents, though they will always hold a place in my heart. It sucks cause I work right next to the casino and every night after work I have a tough decision..go home to my family or go to my favorite card room and tear it up. If you havent been there-MUST GO.",review,KoUAWaVTn6Em7nsR7qZxBg,0,3,1 +rLAeltELaGdQKh_LYIllEA,2011-01-12,xCt-gSne_IoKyFG6JU6fRQ,5,"Staying at the Royal Palms has been on my bucket list for a while now, because I've stayed at just about every other resort in town that I've really wanted to check out. Oddly enough, this also happens to be the closest one to where I actually live, so it seems strange to drop a load of cash to stay in a hotel four miles away from home. + +No matter, last month was my golden birthday and this is where my lovely girlfriend decided we were going to stay. Score. We had my party (a surprise, nicely pulled off) and we invited a bunch of people back to our room afterwards to continue the festivities. It was a pretty standard room, a bed, fireplace, a couple of chairs, big bathroom, a table and chairs on the patio (I believe they call it a valencia suite). Life was grand. + +Until the morning. *bang bang* WTF is that noise? *bang bang* There was pounding and various noises coming from the room next to us, and it wasn't happening on the bed. Are they really doing construction at 8:15am? It continued. My girlfriend called down to the front desk. The noise stopped. Then it continued. *bang bang* We were about to lose it. They called our room, ""do you mind if they continue working?"". Actually, we had just fallen back asleep... + +So this is not how the Royal Palms treats their guests. No, any resort with a Director of Romance is serious about making their guests stay enjoyable, so I knew this was not normal. A conversation took place, and profanity and yelling wasn't even necessary. Essentially, they were going to comp our room, but they offered that we stay another night in the presidential villa for the same price...how could we say no? + +I hung out at the resort all day because I was feeling miserable. They comped lunch, and about 4pm, they moved us to our new room. Nice place, the presidential villa. It's actually only one bedroom, but has a huge living room, dining room, kitchen, two fireplaces, three patios with fireplaces and water feature, old-school tub, double-shower with outdoor shower, a bidet, you know...typical amenities. I was still feeling terrible (yay, the flu!) , so we opted to order room service from T. Cooks. Naturally, if they hadn't done enough, they comped dinner as well. + +We had an extremely atypical experience at the Royal Palms our first night, I have no question about that. But they more than made up for it. They were gracious, they smiled, they apologized, and they made it right immediately. I can't ask for anything more from that from a place that prides itself in its customer service. + +I would not hesitate to stay here again.",review,dQO0tQISZyb9L4d5ASnXyQ,10,12,4 +CFaRVxsnN4Zjf28cbORKIA,2009-07-22,0Xdu6erUtv2yEPfZngciDA,2,"Gross, tasteless food. Good margaritas.",review,N2rvehlxiGV9uN7BjF1ocw,1,2,2 +di2QHs2SrY0XFHcfAq_k2A,2011-11-11,jGo2ovJlMlDRfPvaCOgpaQ,4,"Excellent everything! The customer service was struggling a bit but well, they just opened so hopefully that'll improve. + +The cookies are great. The grilled cheese was so so. Took awhile to get to us but it was slammed (but also, I was on a time limit). + +The manager came over and offered us free dessert for our not 100% experience. She also shared with us what soups were vegetarian and were not. + +I'm excited to go back. It's a great option for Downtown Phoenix!",review,T5mD6ggC7fh48QgXR0LevA,1,2,1 +Uke8Pq1m918WW0n0_jEmWw,2009-03-22,45qjyMoGZGBAYKBis9s2vA,4,"I'm a fan of the bistro. Today, however, a seemingly 'customer' was going behind the kitchen area, flipping my pizza and even entering the kitchen door. What? If you are an owner and are enjoying the bistro, act like a customer! I was kind of disturbed by a casual guy eating in the restaurant with his family and then going to get cups, plates, and food from the serving area. Can I do that next time? I hope I go back. I have taken friends. As I said , I am a fan. You need my business.",review,D0ZTDnjsXdKDHd5UM9XZiA,1,1,1 +MU3i2uEyUBntebU6pEyMbw,2006-04-23,ShhaNxRrWd06hFAikSauNg,5,"note: the 5 stars i'm giving this place is for their happy hour menu, not the regular menu. if you order off the regular menu no amount of advice can help you. + + + +M&S has to have one of the best happy hours in the world, aside from Spearmint Rhino. $3 drafts and a rotating $2 bar food menu, such as 1/2 lb. burger with fries, hot wings, fish tacos, beef taquitos, etc. don't order the fish chilli though, it tastes like A1 sauce. they got a lot of winners on tap, like kiltlifter, guinness, bass, fat tire, pyramid hefe, etc. + + + +happy hour is from 3p-6p and then again from 9p-11p, which is pure genius. make sure you get your parking ticket balidated, because the Eritrean girl in the parking garage will make you go back in the restaurant and get that joint stamped if you forget. BUZZKILL.",review,YoBu4TVcP5YHKOC35NPXQQ,0,1,0 +lquFtAcCRSpNYAN1qlxWhA,2012-06-06,0IIVtk-LqO0M6bsTb2C9nw,5,"I love this place. + +You might ask ""why does the free roving large land mammal love a place that makes him sweat so hard that he's puked, twice?"" + +And here's why: if you can get me to yack during a workout from pushing me hard and coming up with exercises I've not done before (which is hard with 4 years in the Army, 17 years of Rugby, and 30 years of riding a bike) then you're doing something RIGHT! + +My special lady friend got me into the idea of this as a good way to dog stomp one another via a proxy named Jeff. Jeff is our trainer, and if you'll pardon my digression, allow me to share with you about Jeff. + +We have this song in Rugby called ""The S&M Man."" Its a less than politically correct song about a special person, usually someone who trains us or who is a hell of a rugger him/herself, who is so sick, so wrong, that he makes pain fun and delightful. + +And I use the word ""pain"" in the best way. Pain, after all, is just weakness, and in my case old pizzas, leaving the body. + +Jeff is amazing. He gets it done in 30 minutes to the point where I don't really want to do anything the next day. Its in and out, slam, bam, thank you ma'am with Jeff and Vitality. This is going to be a part of my training for the long term.",review,W7zmm1uzlyUkEqpSG7PlBw,0,0,0 +ttpZx2t4fMAApdU9MFG91w,2010-01-27,tgvnAXKyTydW_FC2vd-UCQ,1,I was accused of training my wife for compensation and was told to leave the gym or he (Page the trainer) was going to call the cops. I don't know how a trainer confuses me working WITH my wife with training my wife for compensation. Management handled this issue horribly. Their lack of attention to the matter showed exactly what a customer of 6 years was worth. You are treated only as a number. Do yourself a favor and stay away. I have since started going to a gym which is much more expensive but worth every penny to be treated with respect.,review,FTHuIbf-uuE8NjPF6PX7aA,0,2,2 +CsJReJjzMNtw7ZTPCuVZYQ,2012-07-24,JyyhjvKZ1vNCbNWP9OUNTw,3,"i too came because of a living social deal, as it turned out it really didn't save us any money. + +the buffet is odd. lots of different kinds of food. onion rings, fries, chicken nuggets with baked cheese eggplant, stuffed grape leaves, hummus. i sampled a bit of everything. + +i liked the soup, very nice, i couldn't identify the spice, i don't know anything about mediterranean food. but i know what i like. i like 3 different olive dominated dishes, i wish i could cook eggplant that kept it shape this well. i liked the hot pita bread. i loved salad with big chucks of feta cheese. there where several tasty chicken dishes that were excellently seasoned with big chucks of flavorful chicken. + +the american staples, probably for the kids and unadventuresome guests was bland and a bit dry, expected for a buffet, where the food sits out under lights. + +advice: +group the foods by origin, not by meat, vegies, salad. +make up a route down one side of the serving table, greek, turkish, Lebanese. +make it a learning experience, tell us which dishes use olives, what kinds of spices. + +if you want people to come back teach them a little bit about the food, share the culture, don't mix chickem mcnuggets with a tasty pulled chicken dish just because they both have chicken in them. tell me why this is good food, help me learn something the cook knows about his homeland. + +so i walk down one side and get a greek-turkish meal. the other side is another culture, then one side for the bland american food. as is everything was mixed up. + +now, i'm going back again. with my laptop and a notepad, and hungry. i'm going to taste each dish by label- if i don't know what it is, i'm going to sit down and google it. i'm going to learn where it's from and what spices are in it. i'm going to make my own learning experience. if the owners sit down with me and explain how their food expresses their culture, i'll rate it 5 stars next time. + +it's a family business, it's a huge building, it has a good talented cook(s) somewhere in the kitchen, it is good tasting food. it needs to be displayed and presented differently. it wasn't busy, a shame, industrialized food is always bland and busy. + +now, if you grew up with these dishes, you can leave a review about their tastiness and authenticity. that would help.",review,gDXgcGKsS4ZTneej8-ACqQ,1,3,0 +iWlaj4R-2BTsWR7PwL90BQ,2012-06-16,K2SzzkgyxOAjnB6R15hfPA,1,"OMG! I am so frustrated at this store, I have never met such an incompetent group of people in my entire shopping life. + +First, I called Fry's Electronics to check to see if they had a specific GPS model that worked in Europe. I called because I live at 115th Ave and Buckeye which is about 20miles from the nearest store. The call center informed me they did not carry that model but listed about 10 other GPS with maps of Europe. I asked again those models have maps of Europe? ""Yes and Australia too"". And you have those models in stock? ""Yes."" What is the price range? ""$100 to $300"". Thank you. FIRST MISINFORMATION! + +So I drove to 30th Ave and Thunderbird, talked with ""GPS Specialist"" (which apparently means nothing) and he (Jared) informed me they did not have any GPS units with European maps!! He said the call center ""is a bunch of retards"" and that those were all last years models. + +Then he called someone and looked at several GPS Units. When he did not know if the unit had European maps or not he GOOGLED them! (okay not confident in your product knowledge). Then he sold me a $260 unit with European maps. SECOND MISINFORMATION. + +I drove all the way home and the GPS did not have European maps! I had to buy them for another $100 which I could have done with a cheaper GPS. + +So I drive back to Fry's. Speak with a Supervisor, they return my first GPS. I speak with the same sales rep (ya thats great). He says he figured out 25min after I left that he sold me the wrong product and none of their GPS have european maps. + +So I then buy the cheapest model that was could download European maps, according the the sales rep Garmin NUVI 50Lm for $129. THIRD MISINFORMATION. Because according to the Garmin site the NUVI 40Lm is also compatible and cheaper. + +I then went home bought the $100 European map and couldn't download it to my GPS because there wasn't enough space available!!! + +Now I have to buy a miniSD Card and a miniSD reader for my Mac book. Awesome. Great to know that the electronic store knows nothing about electronics!",review,xPOtktd0y8Vie5EWcACxsA,0,0,0 +UETunq2HsmwW9pbsSGWZ6g,2012-09-03,wkGiNk7n8fvdvWY0wSdDtw,3,"Went to Deer Garden Signature last night with my wife for dinner. We had just returned from our Labor Day Week trip. + +I ordered a fish soup with dumpling, fish balls, and Korean crystal noodles. My wife ordered preserved pork in a clay pot. + +The preserved pork in clay pot did not seem to interest me. To me it looked like sausage with rice, and nothing particularly interesting. + +The soup was actually pretty good. My wife and I liked it much better. + +The only thing we think they could have done better is the following: + +My wife and I were not exactly familiar with the style of food. My wife is Vietnamese. Maybe as part of the banner for the restaurant they should put Guandong Style Cuisine under the name. + +Otherwise the food is pretty good. + +Rahul Iyer",review,7knTjXA1lNJw7AMIIJi4YQ,0,1,1 +crSme9ZoLQNMtRGxv0htTw,2011-08-02,hdB1k_IxlzKfpAB6VRKR_w,5,Great food!!! The French dip is to die for!! Great Service! Clean and fancy especially for the area it's located in! Def a hidden gem! My husband and I both love going here and can't wait until next time.,review,C0qH4_sIqAXWT59dxEgYKA,0,0,0 +km3g-wDO2KfhfnTvJrLJig,2012-08-12,Ea8EiMfgcOaJh5Cuh1XlOg,2,"After having been here a few times, I would say most of the reviews were dead on. The waiter was a fill in from another of the chain restaurants. The poor guy was serving everyone (which wasn't that busy) running around cool headed, apologetic and super fast paced. + +After ""gonging"" our announcement that we were there, a guy came to seat us about 10 or so minutes later. Sadly, we were told that he was the owner... Not too personable. To be fair, they really never had great service in the few times I have been there. What keeps me infrequently coming back is their drunken noodles. They rock. We went also for the referral of the pumpkin curry entree. Both more than made up for the extremely slow service and normally unfriendly staff. + +Summary of the rest of the reviews... Fish tank and others looked really clean, though I have seen them horrible before. Bathroom was atrocious... Filthy and gross. Waiter gave me some napkins and sent a guy out to buy more . Walk to the bathroom was down a dark hallway, thankfully again the waiter helped out with that... Poor guy! He deserves to manage the place and a raise! Lol",review,muJAX5QzQTZGb0te0M8JUQ,1,1,0 +Pju_pKfvEnUYV9wMVNsacg,2010-05-06,CSOlUOu89Xcvp7A3RFbOTA,4,"This place is great. The B.B.Q sauce has a nice little kick to it. I tend to get the brisket sandwich with a side of potato salad. Im not a big fan of the macaroni salad because it taste to picklelish, The seasoned fries are also good. My cousins usually get the pulled pork. They seem to love it. +Mind you, this place is a hole in the wall. Very small with minimal sitting area (2 small tables). The food is good but frankly it is a little expensive. But just a little.",review,0Teo0yeF4aMYow0d6Db-4w,1,1,1 +zG_wv69bsllw_PWhOmoAKQ,2012-12-02,oxtCscAbwQrfKLfHskf04A,5,Amazing! The Chicken sausage pasta definitely works!,review,W2Pem2fq1FW34E9I5deXcQ,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2009-03-25,Ue5__8OaDpWytVGMMKDQaA,4,"Been here a few times now so it's time for the review. Walked up to the hostess on a Saturday night and she asked if we had reservations, I said ""no"" because I didn't think this place was like that but then spending some time here it kinda makes sense, or Sens. Haha. + +So one time ended up getting 6 (maybe a few more but the beers were going down pretty easy that night) different items. Each one well thought out and fun to eat. Yes, I said fun. One was cooked by us on a hot rock, and the others made us investigate each tasty bite. + +Yup, the portions are small, but they're darn good vittles I tell ya. Oh yeah, and they have a DJ so they get a few extra hipster points.",review,sEWeeq41k4ohBz4jS_iGRw,11,12,15 +TqHTtjPANCBKGsjGBjDoQQ,2011-03-04,QKsk92azo-ckaIO292AY7A,1,"WOW! I have never been to a place with service this horrible. I may have caught them on a bad night, but I'm not giving them a second chance to find out! + +I came in with a group of 4. We stood up front for 5-10 minutes before waving someone down to be seated. That was a mistake.. + +As we're waiting for a server to take our drink order, we noticed that EVERY single table had empty cups waiting to be refilled, dirty plates that needed bussing, and people with impatient faces. There was only 1-2 dedicated servers, and they completely ignored us. + +We stuck around just to see how long it would take before someone took our drink order, it was like being in the Twilight Zone. After 30 minutes and flagging down 3 employees, we just walked out laughing, no one had even apologized for the wait, I'm not sure they even saw us leave! It was the strangest restaurant experience of my life. + +What a joke... + +**EDIT** To their credit, right after I posted this review, I received a message explaining that the Director of Operations would like to amend the situation, even going so far as to include their cell number. I admit that I feel strange posting such a negative statement amid all the 4 and 5 star reviews, I'm assuming I caught them on a really bad night. I'll edit this if I ever return to the restaurant, but the fact that someone actually reached out to try to rectify things says something",review,oijTMVRAYB6DrSkhLlaHjA,0,2,0 +RtwOc-n_RkiUuDGaNfCsNw,2012-01-07,_ZS1dbXHrS6BBN_Xrn8vIw,5,"YUMMMMMM!!!! I was brought to this place by a friend and was so glad to find it! Very clean and unique casual setting. Staff were very friendly, food was hot, fresh and amazingly gooy...definately a 4+ napkin kind of meal. So happy to see they serve Chicken philly -steak as well as the usual philly cheese steak and sweet potatoe fries! Find out where this place is because it could be easily over looked and you would be missing out on some deeee-licous food. This place is a must try!",review,CJt9v-cipmczq8zDemJNzw,0,1,0 +3EEVGDngt4DEhoOQZIUNUw,2010-06-22,Kr4tb3kJgfYviNFn22gVTg,3,"After hearing good things about the Scottsdale location, I was looking forward to lunch at Arcadia Farms when visiting the museum for the Ansel Adams showing. Unfortunately, it was a little disappointing. + +Service was painfully slow. I'm not sure if that was the kitchen or the server, but in either case, I was not impressed. + +We started with the baked goat cheese. For some reason, I envisioned the caramelized onions and roasted tomatoes atop the cheese, but everything was combined. While it was quite good, only the bottom portion was hot. The rest of it was only lukewarm. I wondered if perhaps the dish is prepared ahead and refrigerated, resulting in the uneven temperature. + +We also shared the smoked turkey and warm brie sandwich with white bean salad. They generously served each of us a full side of the salad with our half sandwich, which was more than enough. Although the sandwich had just been grilled, the inside was still somewhat cold. I also would have preferred just a little more apple, but overall, it was A-OK. + +The white bean salad with red peppers and possibly cucumber if I remember correctly was sorely lacking in flavor. Salt helped, but not enough to save the dish. If it was dressed with anything other than oil, I missed it. + +Arcadia is just fine if you're already at the museum and looking for a bite. Otherwise, I don't know that I would return.",review,wHg1YkCzdZq9WBJOTRgxHQ,3,3,2 +0yfN4bdKZfkFSXseB2kOBg,2012-06-30,bzKuSZLXsO9g5Fsro1OHRA,4,"I love that the food was freshly made and the place had a great ""down home"" feel. The owners are also very welcoming, made us feel like family. We ordered the Bean Enchiladas, Chicken Enchiladas & Chicken Gorditas. All came with Rice & Beans. We all enjoyed our meals. Good prices also.",review,K0euQLFAcKhQPZ6JxGAryg,0,0,0 +WYk91WPklqRWuk9z9DsPDw,2010-12-20,cWINg1kfp4UZKPhtCGkNNg,1,"I've decided to completely write this place off, and here is why you should too: + +THREE TIMES I have tried to go here and they have been closed, all the while their website and posted hours say they should be open. If one of you wants to drive all the way here from the suburbs, you'd better call first because this place cannot be trusted. I've wasted my time and spent hungry minutes walking here only to be disappointed. + +Vitamin T will fail, there I said it.",review,JgDkCER12uiv4lbpmkZ9VA,3,6,2 +u0NbikWwP7TVkMkCily-4g,2011-10-27,5AwmoFmnEWoojI7SGYrzmg,5,I am obsessed with this place! I cannot say enough amazing things...I love their exhibits...I love Arcadia Farms inside...I love the architecture and design of the building...I love the staff (they are so helpful)...the gift shop is fabulous (I got the cutest watch bangle)...I love the giant red t-rex out front...I love the kids area (or at least my son does)...I love the diversity of the art! I would recommend getting a membership because it allows you to be able go all year long with your loved ones and family! You can have weddings here and they are beautiful! They have events here all the time if you sign up for emails or become a member...at least just go once and you will fall in love!,review,X_kPh3nt0AJPNPHye2rTlA,3,2,2 +TgxDGx7L_JICWbuBUCGVqw,2007-03-29,OYvDDPx5bXoGFfzAS4nSbA,3,"Fajitas is one of those places where you may go for an occasional, unmemorable lunch. Nothing is gross. Nothing is exceptional. Everything is just, well, there. I've tried different variations of the fajitas theme over several lunches (chicken, steak, veggie, etc.) and they were all ok. Not a big fan of their tortillas, though. + +If you work anywhere near there, then I'd say go ahead. It's a safe bet for lunch. You won't puke or curse the world. But is it a joint where I'm saying, ""Dude, you GOTTA try this place out""? Nah. You've had better fajitas elsewhere... + +3 Stars.",review,htC49ZwXiKNka5cp0GKBfQ,2,3,1 +MXFcSmW3m-9IXQEA_7l62g,2011-07-19,ySD_gy1A19xVj7fYH_gC1A,2,"One word sums this place up. GHETTO! The other reviews were right on the money. I'm not gonna lie, I was scarred! So I suggest buying your tickets ahead of time to get the best rate. I also highly suggest paying the extra 5 bucks to get priority seating and sit up front. And watch your seat- if you leave it empty, you will get jacked. +Be forewarned- people stink! Apparently other passengers don't believe in showers or deodorant. A can of Lysol may help. +I'm giving 2 stars instead of 1 because the bus did arrive to destination on time both times I used the bus, and the second driver was very cool and funny.",review,lmiDCrmas8TxRsbIGZX9Pg,3,2,2 +e5gB2kDFaodtxMTa53C29g,2013-01-04,xp79w5Fj4buBacWo0efxtA,4,"I just moved to AZ from Honolulu with my bf and found this to be a great breakfast / brunch place. They do close at 2:30pm. + +On my last visit, I ordered the amazing ""2 for you""! You get the choice of a half sandwich & either soup or salad for $7.95...WHAT A DEAL!! I ordered the Monterey Club & the No. 5 Chinese salad. What an amazingly refreshing lunch! I highly recommend this day cafe, this may not be the best review, but if you stop by the line may sway you:)",review,XAOf1Qb3D-olwJi7mamQ7A,0,1,0 +On_3zLdujQdvDbBYUirNWw,2010-08-06,t0_JDELL2Pf42IcS6Umazg,5,"I'm not gonna lie, I possibly had the best sunny side up eggs ever. +A simple dish so rarely cooked perfectly.",review,-bf0ZBsvUH1Pr2aeq6ibig,0,0,0 +KwGQqUCpHHhOhVqyOL2QTA,2009-08-29,RkBg2BWpVSqWzU5NzmTXCQ,4,"Ok folks, I usually am not a scottsdale girl. I usually enjoy a dive bar at happy hour or my parents house (love you mom and dad!) But I have to say I had a blast here!! I was there to help with a Jon Ric Fashion Show and had the time of my life. + +Our server was so cute! she was always right there to make sure we had ice, our bottle, and mixers. Plus I don't remember seeing a dirty glass EVER at our table! I'm a server and that is not easy to do. So good job staff. + +The dancers were great and the music was so varied! there really was something for everyone. I would go back again in a heart beat!",review,f4Fq9Z8HaYsh6EJsAaCA2g,2,2,2 +pS7XA-h0QnjButYIlU-cdQ,2012-05-13,F__7penyYhE5X2dkUU1p2g,4,"The lanes and equipment are all new which is great, and half the alley have wonderful couch seating instead of the typical plastic chairs. The only problem is that it gets very crowded, despite having 44 lanes!! Also, their weekend rates are pretty pricey - I can't blame them since the market bears the price, but three games can cost almost $20 per person with shoes, which means a family of four will walk out spending almost $100 if you get some food and drinks. YIKES!",review,9ryWdjTHVqqAoETSazV3sQ,0,1,0 +6nseTZb6WrGWcithRThfag,2011-01-29,Fom1WhybEfX4BSOkhYyPzg,4,"I've been to Padre's several times with local friends and have always enjoyed the food and atmosphere. This time my table mates included my brother and sister-in-law who were visiting from the east coast. And who do they always count on for recommending awesome places to eat while in town? Yup...me. The pressure was on. From the opening appetizers of guacamole, salsa, chips, and margaritas to our main dishes, the food was great. The staff was extremely friendly, including our waiter Chico who kept us laughing. I am normally a Salmon Spinach Enchiladas guy but decided to go out of my comfort zone with the West Coast Burrito. Strange combination but it really works well together. And what did my out-of-town guests think about Padre's? Loved it.",review,NtAIAKikXTya6n27L9UENQ,0,0,0 +APgL23vh7f7H_wAGTl57xQ,2008-08-06,bdbAJvKYKKiAfYHKNPwSnw,3,"Clean, bright and quick. +I came here with my husband, and we both had a combo-platter that included one masala dhosa, an idli, and some sambar. It was all tasty -- and waaayyy too much food. +I guess it's a mixed bag because some of his friends (they all work nearby) come here multiple times a week for lunch, and others swear its awful. +As for me, I like the chutney bar - it's nice to be able to get as much as you want, and I recommend both the coconut chutney and the mint chutney -- or, blend them together, like my mother-in-law does with her homemade kind. Yummy. +I think this place is quite tasty, but I won't come here often, just due to the fact that it's a major carb overload, and I wish the dhosas weren't quite so expensive (I think they're about $7.50 for one?). +But, that being said, it's great for a once-in-awhile-treat.",review,hnirQYfI4cjrzSMENyQTWw,1,0,0 +RlE_p_2XcfwoJPMT3NOG8w,2010-11-15,w83V6fmPoldmbUj8OtLztA,5,SawTh[sic] Sense Christmas show for the second time last weekend. Great show - laughed my ass off. Thinking about going back for closing weekend... :),review,_j4PdUTEw7N3NXQM628ZKA,0,2,0 +cfRrO0P-L7o6UWL81pmxCA,2011-05-31,jLs8WzHayS9nDKhFsyzqSQ,4,"I am with some of the others in not understanding these poor reviews. I am from Rhode Island and Italian food is at our fingertips, and in Arizona, there are few and far between authentic non chain Italian restaurants. I feel that although ambiance is important, I didn't see anything wrong with Lo Cascio's. There were no cheesy paper protectors over a linen table cloth, and there were no paper place mats with several business names, so not sure what the issue was there. And as far as the music....I would be annoyed too if I had to work there every night, but again, it only added to the atmosphere. In my opinion, some of the best Italian food does not come with yuppie atmosphere. + For the appetizer we had the fried mozzarella which my husband and I enjoyed very much. The marinara poured over it was on the chunkier side and I loved it because it tasted just like a sauce an old Italian friend of mine made. It was perfect. I had eggplant parmesan for my entree, and it tasted just like NYC Italian. The eggplant didn't have the shit fried out of it, and it had the finest light coating just the way I love my favorite dish. And my husband had veal milanese which was out of this world. It was in a sauce of lemon and wine, mushrooms and artichokes. + I also want to mention, we had the most Attentive waitress that I have ever had. Her name is Katie, and she was very sweet always asking us after each course if we needed anything and how everything tasted. + We will definitely be back here, we live down the road now in our new home and I am very happy there is a great little Italian restaurant nearby. I am also happy I didn't let the negative reviews scare me.",review,DFQ95g3s1oi-VcDZEO2TOA,1,3,0 +cWBqZThx4RWNzPJbJ_oXOg,2012-01-13,R0EN0S6PGUcOd56AjlbwjQ,4,"Ok, yes I am writing a review for a fast food restaurant. I realize that seems a bit strange and quite possibly extremely unnecessary. I mean, fast food is fast food right? Everyone knows what their getting into and what kind of food to expect, right? While this is true I felt it was worth writing a little snippet for the always refreshing Chick-Fil-A. + +It's nice to have a fast food experience where the food tastes fresh and actually like real chicken. The nuggets are yummy, flavorful but not overbreaded. My parents enjoyed their chicken sandwiches and agreed that the food is fresh tasting and not too heavy. We also enjoyed the sweet tea which is a classic Chick-fil-A staple. + +One important thing to note was that this location was super busy when we walked in right at noon but soon after we ordered our food was ready in a flash. And for those of you who have never been to CFA before? The icing on the cake is the wonderful assortment of dipping sauces to suit whatever flavor mood you are in at the moment. Or you can do what I do and open one of each and dip to your hearts desire. Who doesn't love variety?!",review,hcctCQy3bdZMezrUKkZLtA,1,2,1 +Xq9tkiHhyN_aBFswFeGLvA,2011-05-19,yEMgAmlIiaepQmMBpvmh5Q,4,"I've been way to generous with my reviews and I've made up my mind not to give five stars unless everything was impeccable. + +I REALLY LOVED The Arrogant Butcher. +I picked up a menu that was on a side table at my gym, of all places. +I've looked at it for a week before finally giving in and going. I had a lot of carbs that night, but it was worth it! + +It's good when a restaurant takes you to another place, and AB did that for me. For a while, I forgot I was in Arizona and thought I was back in Spain with friends. The build your own appetizer concept is cool. Just like a sushi menu, you mark off what cheeses, charcuterie meats, cold veggies, raw bar items you want and they bring them out with sides of breads, spreads, and sauces. ALL SUBLIME! You can taste the freshness of the ingredients and their attention to quality. Hard to get good cured meats here and I'm already trying to plan my next outing to AB to get my plate of salumi and proscuitto on! We ordered those meats, grilled asparagus, grilled mushrooms, giant white shrimp, oysters, heavenly pretzel bites with provolone fondue, marcona almonds, and a type of sheep's milk cheese very similar to manchego. My date and I were in heaven! +Near the end we ended up making these little sandwiches by splitting the pretzel bite, spreading the fondue on one side, slice of cheese, cut up mushrooms and asparagus, and a pile of proscuitto or salumi... + +........ I couldn't stop smiling and we enjoyed ourselves so much because the food was so good! Great conversation while nibbling on this stuff... Awesome night! + +The only disappointment were the entreés... Maybe because we liked the appetizers so much we didn't feel the entreés? I had the bolognese and my date at the sweet potato tortellis... They were both good, but nothing to write home about.",review,pY6_ew_kvtlcUftSVtkRyg,0,1,0 +BicQSnGZnY_yuGEDkhVfnA,2011-01-10,LQXYeMf2IztWXQrQZGgfyA,2,"It was Christmas Eve, and we were hungry so we followed some other cars turning into their parking lot. We were the only Chinese people in there besides the staff. + +OMG, it was like a time warp back to when Chinese were cooking for Americans. The decor was so eclectic, I can't even tell you what style it was. Not real Chinese or pretend Chinese, not upscale or tattered. You've got to see it for yourself (if you really want to know). + +I had to order a pupu platter which came with a flame and some sweet, sticky chicken wings, fried wontons, fried shrimps, beef on sticks, and shrimp toast (I think). All the Chinese restaurants I go to in NY don't have it in their menu. What can I say...fun and not too bad. + +The fried duck was overcooked and dry. The other things thing sauteed string beans and shrimp with sizzling rice were alright. + +Let's just say it wasn't the best meal I ever had.",review,OUdHM_gKTfTQ-hHZHqczsA,1,1,1 +SjFl_V6BTGkmv4tbub-AVw,2008-02-05,4lCt_bkdMwjfbaBottTdDA,4,"Referring to Mickey's as a ""dive bar"" is like referring to Princeton as a ""secondary school"". Its a lazily, flaccid description for a bar with a fist-full of moxie. Their Bloody Marys alone feature a fucking brawny-assed, gigantic totem pole of man-meat. Well, not ""man meat"", but meat-fit-for-a-man. You get the point. + +Look, the main point is that no ""dive bar"" is gonna be serving yo ass peppers and salami in a $5 tomato Slurpee. + +People often mistake ""kitsch"" as ""obsolete"" and these these are the type of people who would use the word ""psych!"", and grease their side-hair back after swindling you into a fake low-five. + +And i would like to agree with their lowly opinions of Mickey's, but then, I wouldn't want to be wrong also. + +If you've ever been to Welcome to the Johnson's in the Lower East Side, and moreover, enjoyed yourself there, then Mickey's is your Arizona equivalent. Think of it as, Welcome to the Merriweather's. Scottsdale name, New York kitsch. + +So, their bar service is kinda tough, but once there, they have a kickass selection of brews both ironic and sincere. You want an Old Style followed by a Boddington's? Where else but Mickey's? + +Their kitchen is open late, which, for the love of all that is holy, is impossible to find in this three-bedroom-two-bath-house of a town. + +Even better, their food is goooood. I mean, heart palpitating good when you consider how delish bar food REALLY CAN be at 2 am. No, it ain't Capital Grille, get over it, but their wings, fries, chix tenders, et all hit the f'ing spot when you've had too many Jamisons (or Jager/Patron shots for the resident middle schoolers). + +They just recently seemed to have remodeled their patio, which looks really great, but lost most of its charm. Still, space to move and a decent spot to smoke outside beats a macrame couch, or whatever, every day of the week. + +Anyway. I like this place. They lose a star for making me pay $3 for a pretty tame DJ and for hosting Ohio State functions. Fuck em. Go Horns.",review,-F32Vl8Rk4dwsmk0f2wRIw,2,3,3 +AMwr-IwwaamJ2l3Z8yce6Q,2012-03-02,11waJ38XpCMjGHNbJmgLfA,4,Very relaxed atmosphere and employees are super nice. We typically go here late at night just in time to get in an order of chicken skewers(which are super yummy) and then have few drinks. They have 2 pool tables and a shuffle board which always makes for a fun night.,review,ghoBw5923PH-03Rly2hRJg,0,1,0 +ZnudPMieBotGPf5fWKxUpg,2011-10-23,t6R5J-EayCNGd4KLIpQ3JQ,5,"The greatest community that I've ever been a part of! Gilbert Crossfit isn't just a place where you can get in the best shape of your life... it is a community of friends that share the same outlook on life, support eachother in everything they do and truly care about one another. Getting in shape and doing things you never thought possible is just the added benefit of being part of this group. + +If you are looking to get in shape, live a long healthy life, and have fun with a great group of people... come by Gilbert Crossfit.. You'll never go back to a Globo Gym again!",review,ksvA6rxnSk5N3frrHSEzFQ,0,0,0 +9T7eOkHOjWfE21KxgPxo3Q,2010-12-07,ARLjebDoDC3heC015nIHtg,5,"Thank goodness for Sue at Mill Avenue Travel. We contacted Sue to book our honeymoon trip to St. Lucia at one of the Sandals resort. She was great with setting everything up, booking airfare etc. When our original airfare decided to cancel the flight, she made sure we had a comparable one booked. The best thing she did for us was encourage us to purchase travel insurance. + +When we arrived at our Miami hotel at 10:30pm the night prior to leaving for St. Lucia, we had discovered Sue had left us an urgent note to contact her. We found out a hurricane had hit St. Lucia and all of a sudden our honeymoon plans starting crumbling apart. Because of Sue and our travel insurance (thank goodness we listened to the expert on this one!), we were able to change our honeymoon to a Sandals resort in the Bahamas and didn't miss a beat. Sue was in constant contact with us, which calmed the craziness I was feeling (and I'm sure my new husband was relieved). The airlines even took care of our baggage fees on the way to the Bahamas. + +If we had booked this trip on our own, we would have been up a creek without a paddle. I most definitely would not have purchased travel insurance and our honeymoon would not have turned out to be the amazing trip it was. + +We will definitely be using Sue again.",review,lhbSR25Am5ZYnGA_vDafGQ,0,0,0 +yLo-xfoB8b4T_RjjIV4P0g,2011-11-16,NlO9QA3A33j_bCClisUYuA,3,I've been going here for the past 9+ years and it's pretty much the basic local circle-K. Not much to say past that. I do dig the walk-in beer cooler but also wonder who in the hell buys the bags of bananas?,review,EQZjeyvQRe0xnEYcV_eK0A,0,0,0 +8v1MWkAeU3nEuqGd27jZeQ,2012-01-25,-zqqrHR6GBWbtkxG_RZ_Ag,5,"All I needed to complete my delicious meal here was a good Cuban cigar and some brandy! + +We had the Papa Rellena for an appetizer... very very good. Its a beef filled potato cake with a cilantro lime sauce. + +For entrees my wife and I shared two dishes... the Ropa Viejas (shredded beef brisket in a tomato wine sauce) and the Gallina Frita (crispy fried shredded chicken, onions, in a mojo garlic lime sauce....amazing! + +Both dishes were large...with tons of meat. + +Great service and really good mojitos make for a nice evening out at the Havana Cafe. + +For dessert we indulged on the ""Best Of Phoenix"" (Phoenix New Times) Caramel Flan.... OMG!!!! And the coffee was yummy too! + +We also found a 15% coupon in DineInAz.com.... saved us almost $7! + +As the sign over the door says... ""Cha Cha Cha!""",review,TTP7l5g4QUVCpQZ9NTAWqw,4,4,3 +KEwv4l2RgiHjkjyYV0TuAg,2009-09-28,OGt3pt8vn79rz7Q9NqTVaA,1,"There were 3 cars in the parking lot and people walking to the door but the young lady closed the doors at 9:51pm + +The young lady spoke through the glass for atleast 4 minutes explaining she would not open the doors + +I live behind this location but I may not return. There is a Walgreens off of 7th Street...",review,w4dgIzMwwZvKsHaC47Ox3A,1,4,1 +uVMKdpleBePeFKjixU6AMQ,2011-12-04,tY-aFKrdW6A7vmD6v4Rcmw,1,"I am writing this review only for the optical department. I accidentally poked my eye with a branch yesterday and knew I had damaged it so I went to the Gilbert Costco optician and asked if I could be seeing on an emergency basis. The receptionist asked me if I could come back in 5 hours to which I stated it was an emergency and could asked the Dr if she could see me. She asked her and she said no she did not have time. +I find it very unbelievable that on an emergency basis they can turn someone away who has a Costco optics patient for years. I recognize that she had a patient at the time but I said I could wait until after so she could at least take 5 minutes to tell me if I should go to a hospital or not. Dont ever waste your time going here if you need immediate attention for an emergency because they will not make room for you.",review,chBwUUum9UHC9C2AVBOZfw,0,0,2 +LzNJLEIo4gh-X_rmDkNkNg,2011-07-09,c4wiS00iZNXpt2rvrKAXIg,4,"Happened upon Four Peaks when we drove up to the restaurant we wanted to go to and there wasn't a car in the parking lot! My hubs and I thought it was just the temps in Scottsdale, and everyone headed out of town for the weekend. However, when we walked into Four Peaks, it blew our assumption out of the water. The place was packed and the only seat left was in the bar, which was OK since we were only there for appetizers and beer. + +We ended up ordering 1 entree as an appetizer, the fish and chips. The were quite good! Nicely cooked, not overly greasy and very crunchy. Hubs got a dark and I got a light. We were very pleased with the beer and will be looking for a 6-pack in the stores. + +I'm looking forward to heading back to Scottsdale to hang out here a bit longer and try some of their great looking menu!",review,MYLBku4sRCoZmi4Z7yESGw,0,1,0 +X5QTGpPfqXFtmtizsGAksw,2011-09-09,oAH1svCcQNDk3-n8LYEgOA,1,"Oh boy.. I usually LOVE LOVE Mucho Gusto.. but NO ME GUSTA today! + +We got a to go order, perhaps that was mistake numero uno. I got the nachos.. really, you can't mess those up... Or so I thouhgt! I mean Filiberto's would have been a better choice! Can you say cold soggy mess.. maybe that was my fault. I will accept the blame. I really should have known better. + +Mistake numero dos... What do you call Shrimp Cocktail with out the shrimp?? Bad Service! Lack of quality control....Really.. Really? You forgot the shimp? How do you do that.... Better question WHO DOES THAT? + +Mistake numero tres...lemme just say burned tasting chips (as opposed to my soggy nacho chips) and left an acrid taste in ones mouth and the most offending guacamole that I have ever had. + +Let me just say that my co worker and I eat here frequently enough that we can order for each other. We also know to order our guacamole with out the Grand Marnier galze thingy on top. + +Mucho Gusto you mucho FAILED me today. I hate leaving a bad review without first compaining to management so expect a phone call from me shortly.",review,Nh1-RLlCU5i0MCH7so6_-g,2,3,4 +WowrRUKvjiLX4zT12xU_yw,2012-07-09,ofhF4RuqsymES6pQfO2KWw,4,"I seriously love this store. I wish I didn't live so close because I always find myself here without even realizing it. + +I can always find something here that is awesome. I pretty much never leave empty-handed. They have some really great deals and prices on clothes, shoes, accesories and purses. + +Their high end stuff is still kind of ridiculous though. But that could just be my broke-ass opinion.",review,palND-kF1qpMLhkcgAnSxA,2,3,3 +ojjtPlnSmCX1zCzWL7JoNQ,2009-10-03,1YC9jbCChkzH32gLEf_GeQ,4,"Bless these folks for letting us sit in a pleasant, non-crowded setting, with whole tables and use free wi-fi. With their wonderful and affordable 1/2 sandwich/soup deal and an iced tea I can sit and do homework for a few hours. (Their roast beef and gargonzola sandwich with roasted red peppers is a nice variation...) They have good lighting, decent music and lots of outlets to plug my laptop into. This is a much more tolerable way to study than that little crowded coffee place....",review,gUXfVNgnNF9WU73T-d-FKQ,0,0,0 +HVacSNXpcjce6TNTNUieAQ,2010-05-03,DuVL5_hGPLzdL2OLY9s5lA,5,"Big fan of this store - the owner tries very hard to create an inviting atmosphere for all levels of gamers. Further, the store provides for a host of niches, including euro-games, Ameritrash, role playing, and miniature wargaming. Good amount of supplies (both GW and P3, among others). Lots of tables for miniature gaming, board games, CCGs, and painting in the back (and a fridge with soda). They've started carrying MTG over the last few months, and that collection has grown. Always something going on here, but nothing intimidating. + +The owner is very, very helpful: willing to answer questions about painting, games, and to make special orders (even trips over to Gilbert at Battlefoam when necessary). Yep, big fan.",review,c_oAY5TDj8sLfUPvotwHjg,0,1,0 +tI600wWPFDc4bxEvrbBpRQ,2010-04-14,KaRrYn82Hm5K7-3XueNVyg,4,"How excited can you get about a car wash joint? Well, not very! Yet, this place does a good job for $8.99. They're pretty thorough, includes vacuuming, and it looked like they sprayed some waxey stuff on my Wifey's black, Honda CRV... Looks great! They have a lovely inventory of greeting cards as well.",review,iBO2m9xXivsIbvFnZHsNvg,1,2,2 +mHZXq1c6j1b5bKXTxKJ-pA,2010-05-23,wb5kfvDoyPBOjhIn5Z-KPg,4,"A couple of us came here Friday and had a good time. I liked the off-the beaten path location and the fact that there was no cover. They have 2-4-1 drinks 8-10pm, too. I thought the music was good and drinks weren't too expensive. The thing that almost ruined my time was constantly being bumped by people. It is hard to get into the groove when you are being shoved and pushed by people who think they have an entire dance floor to themselves. But isn't that every place, though?",review,RxfFQxUtSIGYwTKU_rvAeg,1,1,1 +T_d9GB_p0ajNTVEZ2CMmrw,2009-10-23,YQ9zXZITDrvIG-ssEgO3tg,4,"I really like Pick Up Stix and it's certainly superior to that steam table garbage they try to pass off as Chinese food at Panda Express. Of course, it helps that the food is made to order. I also like the variety of their menu which includes salads, noodle dishes, lunch combinations and regular dinner entrees. Having brown rice as an option is always a good thing. + +I had the Thai Spicey Chicken Dragon Meal ($4.99) which is an individual portion (although I ate it in three portions, it was huge), brown rice and a side salad. Delicious and not extremely spicey. If you visit their website, you can download coupons and order online. Service was fast and friendly, and I will definitely be back.",review,nMwgC0DuMsBR0V5v4-J8wg,0,0,0 +-kVXDEqGHOWKxQ3EhvFgVA,2010-08-11,m1mK4i-HJ85_QVYSHMMMRg,4,"First time in this restaurant. It is next to Golds Gym on the n/e of Northsite and Raintree Dr. + + It is similar to Chipotle but the pinto beans are better tasting, the chicken is all white meat. The employees are very friendly and will take the time to chat with you. They learn what you like if you are a regular and will just confirm that there aren't any changes. +Burritos, tacos and salads are the main items to choose from. +This is a very good spot to eat and enjoy the food. The soft drinks are not watered down like most other places are now a days. +Enjoy, I will. Oh, they have a card that you buy 10 and the next purchase is free.",review,pWdtEqtIb9YD_rdogPG-DQ,0,1,0 +sqmdFdEXk8DoCnjRvEh90Q,2012-08-26,bgJQEgvtce1eQKBeFCQz2Q,5,"Kids love Disney, and so do I. One of my favorite things at this location (as opposed to the AZ Mills location) is the magic princess mirror. Grab any of the princess items (shoes, tiara, wand, etc) off the rack, and wave the package with the UPC symbol facing the jewels and mirror, and after a few seconds, that particular princess will appear in the mirror with a little story for the kids.",review,pIm17SVRo8IdhGoBD4qbnA,0,1,1 +_1QQZuf4zZOyFCvXc0o6Vg,2009-11-05,GZex4c82GoPbwOHBBfnukw,5,"This is one of the top three Dog Parks in the Valley. Plenty of room, well lit in the evenings, plenty of water. I've seen the attendance shift slightly in the last year with less hipsters and more kooks coming in. Not a problem though because there are always multiple groups to mingle with. +For photos and a complete review of this park go to www.dogparkriot.com.",review,oCjrFKcvqVACBkVh3LTqwQ,0,1,0 +OE5nAmaSVaopeRS1Cs9Kuw,2012-01-02,eoyoEHqQhCHK2gh48YcO0g,5,"Ok, I'll say this up front, I don't like chains. There are just far too many awesome restaurants in Phoenix/Scottsdale to go to a chain. + +That being said, this place is amazing and the quality and consistency here is unreal. Yes, it ""seems"" expensive but once you've eaten here you'll realize that you are absolutely getting your moneys worth. + +So much awesome unlimited red meat. + +Don't let them trick you with the salad bar! It's killer but don't fill up! And don't be ashamed to leave your flipper thing on GREEN, the sign of meat greed. hahahahaha. + +Lastly, try the Tres Leches and the Key Lime Pie, out of this world.",review,4gIi4L7e870qFbnRemaoBA,1,1,1 +KBKDl08flVw1AqvM5ucVpA,2011-07-12,dfkdxvzlsehbwUVD8g7TgQ,4,"Great discovery for me! I popped in for lunch and was pleasantly surprised. I had the best veggie tacos ever! They were extremely flavorful and filling. I don't know the secret to the accompanying rice and beans but they were also on point...just delicious! + +The only drawback is the size of the place. Since I dined alone, I sat at the bar. It wasn't the most comfortable seating but I'd do it again in a heartbeat for those spicy veggie tacos. I will definitely return to Fuego Tacos.",review,v8prSSKtN8-avfAUO0ZYkQ,0,0,0 +AZq_SBJsqsleJkQCksYsjg,2012-01-10,0Zyiz98ko_FY4PVH1LpY1g,5,I love this place. It was so beautiful over the holidays with all the lights and garlands. I think the people who run this have a lot of pride in their business. The room was clean and the beds so comfortable. The decor is rustic but elegant at the same time. I liked how close we got to park to our room...super convenient. Lots of coupons given to us at checkin too. Great experience!,review,Mt1BrQzfs6-bjNIzHZtqnw,0,1,0 +roTWGaU-RcJ06l8cjFw7xQ,2010-12-02,htDMacjuBBZUUtdxpdYmlQ,3,"The service was great! We had a large group & had called prior to make a reservation. Our table was ready when we arrived & they had assigned 2 servers. They were both incredibly pleasant & attentive. Our food came out really quickly & no one had any complaints. I wouldn't say this was authentic Mexican food, but it doesn't have to be. A good time was had by all :)",review,BV8c4QZEzvPWA00ZqJp-jQ,1,2,1 +RXEsxL_fituMtbNACe5a3w,2011-07-15,OgNr2AoQm8VdIEYW8F785Q,3,Very nice and helpful staff. One guys always asks me too many questions but I figured he was just trying to be nice. They're on top of trying to sell you a new phone and service. But when you shoot them down they get off your ass about it.,review,-J06hZ3w7N2oV5QwaAjtwg,0,0,0 +zrO-RPR3fSdA7sI-IRGWIQ,2010-04-14,DZq1trmm9Nq9f-sPlQ1Lsw,3,"Discount Tire is our go to place for tires. Of course living way out here in Surprise, there aren't many other options. (if any) + +We recently got new wheels/ tires for our truck as well as the boat trailer. Quick, efficient, professional service is what we've come to expect at Discount. + +The only complaint is the lack of follow up. More often than not my husband has to call them to check the status of orders he has placed. They say they will call him when this or that comes in...yet he is always the one placing the calls. I'd like to see them actually follow up with their clients as promised when orders come in. That would make this already pretty great business even better!",review,TPj2H2OD4mEyxIjRTbFagw,0,1,0 +ke3RFq3mHEAoJE_kkRNhiQ,2009-09-27,n3RQW6tL5iwhgv_Nz12T5g,4,"I'm giving this one a 4 because I first ate at (and found out about) Lucilles at the Vegas location. Over there it was spectacular - here its just amazing. They give you so much food its unreal. You can try anything BBQ you want or ever dreamed of. You get these amazing biscuits with this butter stuff that is just like candy before the meal, and almost get full just with these. + +SO MUCH FOOD, go hungry and get ready to be amazed. Some of the better BBQ in the area. I look forward anytime I have the opportunity to visit a Lucilles. Just can't wait till I go visit the Vegas one again!",review,UPtysDF6cUDUxq2KY-6Dcg,2,3,1 +iV7D7fHKb-bF9fCL_bEMtA,2011-11-07,LDYR5dv0xdYzjvMnjuRysg,3,"went back to the cork and experienced the fall menu. i am afraid that my second experience was not sa good as my first. the service was great,the resturant beautiful,but the food did not make me say yum yum with each bite like my first visit. 3 of us had the rabitt risoto and none of us really liked it. the scollops were great the fig salad was ok but the duck was so over done it was like power and way too salty. the creme brule came it was about 3/4 a cup portion $6.00 that was rediculuslly too small of a desert for $6.00 get real CORK i am afraid this will be my last visit. there are too many choices . Like Roy's Hawian Fusion Cusiene , Roy's is more cosistent and flavorable and mor reasanablly priced sorry CORK",review,tQ6NDaItyiNR1JSnYLyzZg,0,0,0 +MLcXtnpzygZvQ9BtseLLlw,2008-03-18,QDNDXDz4yoOFblq1ffW1ig,5,love love love it! What a quaint little piece of heaven. Located south phoenix...I wasn't sure what this place would look like as we kept driving south but as we walked onto the property it felt as if you were no longer in the big overcrowded city. We went to the morning glory cafe for breakfast. The food was wonderful and the presentation was great! I highly recommend it. It would make a wonderful place for a baby or wedding shower!!,review,49lK33nuV1dVj3l2Jto8Bg,0,2,0 +VVeogjZya58oiTxK7qUjAQ,2012-06-07,QlYfacd_phP3JbaPpRWbMA,5,"Wow! Food was great! But the service was even better!!! We got there early so we didn't have to wait a long time. + +Their computer system was down, so instead of asking for cash or taking our card numbers, they comped out lunch. So impressed with this place! And such a cool vibe!",review,utAvq1-tCgfM4alrdPmtzQ,3,3,0 +jsblnIZnHUQGufwVb_yX6g,2008-09-20,sEldANfgLR4_SAwchsTENw,3,"Probably more worthy of 3.5 stars. Damn the Yelp constraints! Marketplace was pretty busy tonight now that you can actually go out in the evening without a gentle breeze feeling more like a blow torch in your face. In spite of that, our wait to be seated was fairly quick. But where was our server? Outside listening to the band? We need liquid refreshment! + +Finally our server arrived and apologized for the wait at the same time the manager arrived and also apologized and comped us an appetizer. Wow! We hadn't even complained. We had the hummus which was very tasty but a little thin and a mango tandoori chicken pizza. Nice combination of sweet mango, spicy curry sauce, and the grilled chicken. Service was excellent once we got over the initial bump. + +While I usually don't plan to go to CPK, it's nice to know this one is there.",review,wHg1YkCzdZq9WBJOTRgxHQ,3,4,3 +tpIU_ZvIfCfCp36IgghlHQ,2011-07-15,zbF-STEOJhOoSoTegNr_0w,5,"Whenever I'm looking for a quick healthy lunch, and am tired of salads from the grocery store, I swing by Zoe's Kitchen on Camelback. For a long time I used to get the spinach and chicken quesadillas, however last time I went in, I realized they didn't have them on the menu anymore. The manager that was on duty was super friendly and helpful, and explained it was now basically the spinach roll-ups (add chicken). I must say, they are even more delicious! + +Is it your cheapest lunch option? Probably not. I'm a frugal person by nature, but it definitely beats eating Fast Food. So it's worth the extra buck or two to know you're not loading yourself up with tons of grease and carbs. I've introduced a lot of my coworkers to Zoe's and they all love it too. Now if only they can open up in Gilbert or Chandler near where I live!",review,x3snNDhyewv4q9fM6NxgAA,2,2,2 +VtIU_HGrFSNHdUJ20V-73w,2010-10-11,XtXChVzvnFQKsErjddW98g,5,"Ok, so I know that this private shooting club has had it's share of problems with membership and maintenance issues but I have to say, in the last 6 months, under the direction of a semi-new board of directors, the range facilities have been greatly improved. +The members can enjoy shooting pistols or rifles pretty much all day every day uninterupted except when a scheduled match is on the club calendar located at www.phoenixrodandgun. This new fully updated calendar is really cutting down on the number of scheduling conflicts between match directors and members. Also, since aquiring new Range Staff, the number of complaints about other members or range employees has gone way down. I do have to say, the range which is located right in central phoenix is affordable, practical and overall a great shooting experience.",review,lNYmqV_CMapcbucxD19_tw,0,1,0 +twI1-9PZH1y8csXQ5VsrMw,2012-03-13,aWjnWW15jnulOclRzfrk3w,3,"Gracie's is a small thrift store with decent items. The prices are a little less than you would pay at Goodwill. You can get a pair of jeans for about $5. If you need a belt, this would be a good place to go, only $2. I didn't find anything to buy for myself, but we found a new pair of shorts for my son. Only $2.50. Just an FYI, it costs $0.75 to use your debit card.",review,kNO6w6EIKo8u6GSykOHBLA,0,1,0 +aRkYtXfmEKYG-eTDf_qUsw,2009-04-10,vZuZEGAKLDCCD_Wn7krPVQ,4,Update: they added a gorgeous new countertop (sans coffee wobbling mosiacs) and (ta-da!) a glass enclosed bakery display case! My friend Jefferson can now order his pastries with confidence.,review,OYpsdMcpdCdlkknpgpFMLA,2,3,2 +_tkAI5Q5XQSfgbqJzDKSDQ,2011-04-05,ZCr1L3-T7VReMyf106piXA,2,"We had a group reservation for The Old Town Tortilla Factory, that was great. The problem was that was about all that was great about the place. The credit card machine in the bar was down for the time we were waiting for our table, chips and salsa was $7 and the food was not really good at all. I had asked our waitress about two items and she suggested the restaurants signature dish Pollo Margarita, stuffed chicken breast with chiptole mashed potato cake and seasonal vegetables. The chicken was extremely dry the stuffing was bland and the mashed potato cake was the same bland and dry. The only thing good to eat was the freshly made tortillas.",review,w_oZKFqqNa6BCJ0U-QicwQ,0,1,0 +zG_wv69bsllw_PWhOmoAKQ,2012-12-27,dOm36DMhWpEMsii5EuWNlA,5,"Really great food and service, and it worked out just fine for my two kids, ages 7 and 10. (Meatball pizza was a hit for the younger one; the older one shared sausage pizza and mussels.) The food came very quickly. We had all small plates and pizza, not entrees: kale chips, fried chickpeas, peppers, mozzarella salad. Dessert was great. The mousse was first rate, and the parsnip creme brulée was delicious (though we couldn't taste any parsnip; it just tasted like excellent, flavorful creme brulée). One of the best meals we had in Arizona. And we also really liked the decor. Simple, elegant, and also fun/creative. Not sure why anyone would ding them for that. Also, the portion sizes were just fine. We all left full but not feeling gross. We're from MA, and were unaware of the chef's celebrity. I wonder if some of the griping here is just celebrity bashing, or a reaction against some sort of hype? I'm outside that loop, but it just struck us as an excellent and fun place with great food and no pretension. Just thorough competence. Note: It's a nice walk from the Arizona Biltmore Hotel. Under 2 miles.",review,826ux2MFl0fMGvT4DU5psg,0,0,0 +jRfdz5voj40P6WS9L54caw,2012-04-20,b4qLt_84asDy2n5ZaAxPQw,4,"Good little place in old town across from Cowboy Ciao. Had the turkey apple swiss wrap w/ dried cranberries,local greens, smoked bacon, and cashews. Very good and great size. The lady had the grilled chicken & sage pesto sandwich w/ goat cheese, gala apple, and smoked bacon. She liked it as well. The sweet potato chips were very good too. will be back for sure.",review,Vk-hJ1i5ZagPM87Kv9FOnA,1,2,1 +jgWAgT7LWPTf5wju9Q-kiw,2011-12-08,-zu4_xevfEWx8bm2V6vAXw,4,"This place is great. The food is Northern Chinese similar to Chinese Muslim food. They have a great variety for reasonable prices. Also, everything is freshly prepared and you can even see them make the dumplings and pork pie behind a glass window. +We got the stir fry spinach (bok choy) with garlic, sesame bread, pork and napa cabbage dumplings, pork pie and green onion pancakes. I know its a lot of food but we wanted to try a good variety and it cost about $27. Not to shabby! the spinach and garlic was really fresh and flavorful. The bread was decent, almost like a dense curried bread. The pork dumplings were similar to soup dumplings, one of my most favorite dumplings ever. The pork pie was almost like a pork patty covered in dumpling dough and pan-fried. It was crunchy, moist, juicy and delicious all at the same time. We were getting full so we ended up only eating half of the green onion pancakes which were well prepared. We will definitely be making another trip back here soon. + +Side note: They sell bags of frozen/take-home dumplings. About $10 for a bag of 40.",review,DDad5K6GNA0sXB7N1OB6wg,1,1,0 +ipMMVBGEWABP4PIfudvRVw,2013-01-03,roiC8or1Cq0SO9yKlp8dtw,2,"Way overpriced. Wide selection. Good to browse, not to buy. Check out your local mexican market.",review,5j0hoUVgYJTyNshMXgJ4rg,0,0,0 +uzQ3iC4snU6wXb2PF6kS7Q,2012-03-24,fQU4ymuNVNhKN-z1NwZbVg,5,"Polite friendly staff. Great, always clean place. The gym is great and never too crowded.",review,kk05snSafuIFK0lsxoMNzA,0,2,0 +IwhkOh4fPsiU7TThIsz6Og,2009-08-12,-Tcr5mX1cz9JWubf_012dw,5,"I LOVE this place.. This is my sushi bar. Danny, one of the two sushi chef's is awesome. I have always found their sushi to be very fresh. + +About a year ago they came out with a special sushi menu. With rolls like these: Dirty Harry, Mr. Miagi, Rio, you cannot go wrong. Especially if you like spicy (like me)! + +Even the non-sushi is great. This is one place my 6 year old loves that doesn't have a drive through window. + +Also, $4.50 sake bombs!!! $4.50! + +Go here. Try it. Don't be scared off by a couple of so-so (ok, 1 bad) reviews. I am looking to even have a UYE here in the near future! Should be getting a call tomorrow to get it scheduled. + +Almost forgot! They have some big screen TV's! Watch sports here! They are hugely popular for UFC fights and football.. + +Just go. Now.. Seriously. Review part is over.. You are wasting time reading the fodder I have written here. You could be finding your keys.. Putting on socks and shoes.. Hell, skip the socks.. Wear sandals. Save time.",review,QhuESGhOQWnKqwlSrISm8A,1,1,1 +FCJHirFzEtj4M1VcuaKieg,2011-08-19,2SjC7pmsh4BXED9rW4c6KA,4,"This place is a nice little change-up from the usual mall/Target/splash pad destinations that summer requires. We have an 18 month old son that loves the noodle forest and the tricycle area. The place has so much going on it is easy to focus on different things even if we go once per week. The price is high if you don't get a membership, it pays for itself just in summer visits and then the rest of the time is icing on top. I admit to enjoying climbing around in the big maze in the center of the museum, that made me feel like a kid again.",review,TZ_k-BbXS6sEMiWQXlPnMA,0,0,0 +mPGgxatANSPw9KbMluhXkA,2010-01-19,Rb0nsrH8NlyIXLYFqibvdQ,4,"I was in town early for a sales meeting at the Crowne Plaza Resort, just up the street. I walked over to Latitude Eight for dinner. + +It was a pleasant surprise! It's a quaint little place, quiet, clean, probably a great place for a date or a quiet conversation. The owner and his wife run the place, it seems, with some competent and friendly help. + +The decor is modern, subdued, and futuristic. It's comfortable. + +I sampled an excellent microbrew while savoring a salad with a nice asian dressing, bean sprouts, lettuce, carrot, cucumber, and some other goodies. + +Then came the Panang Curry Chicken with white rice. Whoa! Just the right amount of complex flavor and heat. It was so good, I ate every bite, and had no room left for dessert! + +This was among the top two or three best Thai meals I've eaten over the years, and I've probably had 50 or so. I wish I had been able to go back again during this trip. I suggested it to several people at our meeting, and heard several other good comments from people who wandered over to it.",review,93rkBOyASqzxtJ1FIAavIA,0,0,0 +7SO_rX1F6rQEl-5s3wZxgQ,2011-05-30,USt-wMQR-rKCpHNr7HOPZw,5,"My friend has raved about this place for months, so for her birthday the girls and I got together for a little pizza field trip to LGO. It was amazing! Just as good as Mozza Pizzeria in LA., but around 400 miles closer. I also love the little grocery store. Very cute things to buy.",review,NPoOEAPspruMOik-9sKQtQ,0,1,0 +atbvu3MxnDgpQfZgvPZz2Q,2010-04-01,whk41u1vbJ7IK3M3RPMCgg,4,"The newly branded Red Dragon Chinese & Mexican Food is a shiny new facade on an old favorite. (pics of new sign, and old sign by dumpster) +Formerly known as Daily Buffet, http://www.yelp.com/biz/daily-buffet-phoenix#hrid:3-lmRTZ9YDgPxf6I2WGfHA they offer an extensive menu. Whatever investment they're making in this new branding, their menu certainly looks impressive.(pic) + +Their buffet is quite well-stocked for it's small size. +Whether you prefer Chinese or Spanish fried rice, they have it. Have a few picky kids that can't decide between Honey Sesame chicken and Cheese Enchiladas? They've got you covered. + +The Mexican buffet table offers rice, beans, enchiladas, taquitos, and other rotating entrees such as marinated pork ribs or a scrumptious chicken mole, if you're lucky that day. +The Chinese area includes lots of chicken and pork options, noodles, egg foo young, etc -- standard americhino fare. The pork ribs were very good, if a little chewy, and the sweet & sour pork was done in the style I prefer: Instead of breaded, dry peices that you put your own sauce on, or soupy watery liquid with floating veggies and meat, this had mostly meat, maybe a few carrot and onion peices, with a crispy outside covered in thick, gooey, sticky sauce, that itself got a little crispy. (it almost starts to remind me of a candy apple when it gets like this, which I'm sure the taste buds love, but the teeth hate!) + +All is prepared well, hot, not too salty or greasy, and well replenished. +Discard Pile is usually present, but also usually small. +There were some hand-breaded onion rings that were super thick! This thing was the size of a small donut in my hand! (pic) They have a perfectly crisped outside, with an inside akin to a hushpuppy or donut. + +Mmmm, ""donionuts"".... + +The salad bar area left a little to be desired, and there wasn't really a salsa to dip my taquitos in. I made a nice little concoction of ketchup, pico de gallo, and sriracha sauce which suited the task way better than I could have ever thought. +Jello squares are the only real dessert option, but if you haven't stuffed yourself full of this yummy indulgent food by that point, you really don't belong in a boofay now, do you?",review,n_lAaNGeWgspbbCJc0DqRg,7,11,7 +5nahZe5bBYUbFWgEfwoNOA,2010-08-11,sOAIfa0bwmytl5oMIhDJJQ,5,"Sunflower market is WAY cheaper than Whole Foods and has a lot more than Sprouts. It's my first choice of healthy grocery stores! + +They have the freshest produce around without it being full of bugs like Trader Joes. Their selection is very wide and their employees are really nice. Seriously I can't stand the employees at Whole Foods or Sprouts. They're such pretentious jerks sometimes. + +Whether I need lamb or bison meat, coconut milk ice cream, or almonds...this is always my first choice. They're also the only place in town that has every kind of vegan sliced cheese. Whole and Sprouts have some of them but which flavors are sporadic and random. I will never stray from Sunflower again!",review,GZZs7288ZoIz2hx_vcAVUw,0,0,0 +bc-lE-wGVAsUrX-kJhtY-Q,2011-12-12,Xx28amCRQ0BJjwJoYtegpg,4,"Fun atmosphere and very good service. We liked all of the sports memorabilia. Our server was very attentive, friendly, and patient. The busboys were also very attentive and friendly. We especially were glad to have been given good service even though we did not order any beverages (you'd be surprised at how many servers are rude to us after they discover that we won't be ordering alcohol). + +Food was good! We enjoyed: the bread, sweet and sour cabbage soup, caesar salad, baby back ribs, salmon, mashed potatoes, and creme brulee. The chopped liver at the beginning of the meal was also a nice bonus! + +Only cons would be that the french fries were mundane. Also, we were a little confused about what was a part of the meal (sides, soups, etc), what was an upcharge, what we couldn't add, etc. It wasn't outlined on the menu, and our server had to explain a couple of times. + +The manager came by after to ask how everything was. Very nice!",review,xFG4Ca2HHmbxDTkMlmHnjQ,0,0,0 +PXmR1MgOAWB066XH20HjxQ,2009-10-04,G2te72TqN0W0jcG-A0Q_bg,2,"I had dinner at the Thai Rama two days ago. It wasn't an awful dining experience, but I'm not sure I would go here again. + +My friend and I ordered the egg rolls (sorry, I don't remember the Thai name), and they were okay. Two pieces, small (but the price was $2, so what did I expect?), and an average filling - something I would expect from frozen egg rolls. + +We're both vegetarians and were happy to see a vegetarian section in the menu, but were slightly disappointed with the options. Three of the items included oyster sauce, and the other three were either vegetarian fried rice or red/green curry vegetables. I ordered the green curry vegetables (medium hot), and my friend ordered the red curry vegetables (mild - and she stressed MILD). We waited 20 minutes for our dinner to arrive. I didn't mind my dish - it was waaaaay spicier than medium, but I don't mind a little heat. The sauce was very runny, and the vegetables were soggy and looked they had been sitting in the sauce for quite a while. My friend didn't like her dish at all, mostly because it was quite spicy for being a mild dish. We spent $25 total, and I'm not sure it was worth it. + +The service was slow, but the waitresses were very friendly. Overall, I would probably not recommend this restaurant to a friend.",review,kMiQnYFmAYbjHyyIPGSwoA,1,1,1 +8qrICL2tS2Rq7b5gxUdQwQ,2009-09-20,0wekFc0vMC9EfbRucSmnSA,5,"Just when I'm about to give up on my search for good Thai around Glendale, I stumble upon a true diamond in the rough. Don't be fooled by the shabby looks of the outside plaza; the inside is contrarily well orchestrated with subtle Thai ornaments and design. A huge desk in the lobby and bigger one inside the dining hall gives this establishment an odd but distinct hotel feel. Much like that feeling, the service is intriguingly exceptional from the time you walk into the front door. + +The food that I've tried here so far is... may I say it... divine. I started off with the squid salad with mint and lemongrass and it was packed with fish sauce and shrimp paste. Score. I also tried some papaya salad and once again, it was mounded in fish sauce and chili. Splendid. Then I had the minced beef phad kaprow (which is not on the menu) and lo and behold, I was tasting Phuket in a Bangkok sort of way. To be honest... the sauces from each of these entrees mingle quite well. You can drizzle some of each dripping over rice and literally have an orgy in your mouth of Mormonic proportions. You can also bolster it with some more heat with their chili fish sauce, again drizzled all over your concoction. Let your adventurous mind roam free and order something outside the pad thai genre. It will pay off handsomely.",review,PiIdsdEd8JrRaMv5aDzSZA,1,2,1 +oeR69T9Ow5bvTq9xbiutWg,2012-07-02,RVhNvjyIwboTTJyI3tcnxw,5,This charming little place not only has the BEST custom spray tan around - they can also whiten your teeth and have a rotating selection of adorable summer dresses on the cheap! If you are sick of being orange or baking under the harmful uv rays check this place out! First time clients get a discount! I will never go anywhere else!,review,Ad1yYRdQdhws5jOammVVMQ,1,2,0 +WFDxa8r0sT2ZnehYTyT1LQ,2008-12-16,0ALKLy1SjTsgCptBTiKvPg,5,"The Boulders was a first class experience all around. + +We stayed in a casita, which was one bedroom and had a sitting room w/fireplace (a letter on the table indicated they are no longer using the fireplaces for environmental concerns), a large bathroom and walk-in closet, and a patio with a table and four chairs. For the ladies, there is a vanity with lighted mirror just off the bathroom. My only small complaint about the casita was that the shower was a bit small. The mini-bar seems to be a thing of the past, but the Boulders still features a well-stocked version with a half bottle of Cali wine, kettle cooked chips, water, soda and various liquor. The villas were outrageous and would be great for a family reunion or that type of thing - multiple bedrooms, a large outdoor area for entertaining, with the garage (they're houses, really) converted to a bedroom. If you're staying in a casita, it's a hike across the property to the villas - they'll take you in a shuttle bus. + +The bar near the dining room was well-stocked with several single malts, and the standard cigar list. Walk out back through the seating area, and you'll find the pool, framed by a gorgeous backdrop of a large boulder and waterfall. A little cool for the pool in December, but it didn't seem to hamper others' enjoyment. + +Looking forward to returning and enjoying more on-site amenities besides golf. My girlfriend went to the spa for massage / pedicure and seemed pretty relaxed - what I gathered is that she enjoyed it. + +There are places with cushier accommodations, but the property it sits on is what makes the Boulder's unique.",review,dQO0tQISZyb9L4d5ASnXyQ,3,4,2 +aRkYtXfmEKYG-eTDf_qUsw,2012-01-22,chbGA44-iJhTlBJnjvI-3Q,4,"I love Lux. The new venue is great because there is a lot more room. The only problem is that it's still not enough. This place used to be a great place to just hang and spend the morning on a weekend or weekday. Now it's over crowded and doesn't have that neighborhood feel anymore. Some of the staff is super friendly while others have attitudes. + +The coffee is impeccable and the food is delicious. That first sip of my soy hazelnut latte is always the most delicious and compares to no other coffee. This is what keeps me coming back. + +If you want to sit for a while, make sure you arrive at the right time. And keep in mind the right time is never the same time. You pretty much have to get lucky to find a good spot. I've started getting my coffee to go. Also, they don't open until 7AM. This is when my shift starts, so I can no longer go before work. A great remedy for this was to buy Lux beans and to brew my coffee in a French press each morning. I'm definitely not complaining about the quality. It's still delicious. + +I try to make a visit to Lux at least once a week and will continue to do so....",review,VONfPEsY8qUO2LSYFI4yRQ,0,0,0 +k8JnZBspVOI8kLcQek-Chw,2011-06-29,5RJ5PmYGitWll8jEyQ9FDQ,4,"There's no doubt about it, both Mamma Mia locations deliver some great pizza on the cheap. This Mamma Mia is now the closer of the two to my house, and at first I was a little worried. I wasn't sure if both locations were going to be good, but I'm not worried anymore. + +Whenever I go there, I get slices. I also usually only spend about $6. To me, that's awesome when I'm craving some pizza pie. By the way, Mamma Mia serves good ol' fashoined NY-style pizza. Their toppings range from traditional (roni, sausage, veggies) to fancy (salmon, bleu cheese, capers). I have been known to order capers on my slices (and they were actually really good). Normally I ask for the slices well done, and I'd recommend you do the same if you like that extra bit of crispiness like me. The slices come out relatively quickly, and I've never been dissatisfied with what I've been given. + +I've yet to try their sandwiches or pastas, but in time I'm sure I'll get around to it. At $6 or less a pop, I feel like I've got a good thing going. If I'm in the mood for pizza and I don't feel like traveling far or spending much, Mamma Mia is towards the top of my list.",review,--65q1FpAL_UQtVZ2PTGew,3,5,2 +d52zg-S0o940WUCK-nNiKw,2011-03-16,Ok_LkFZ2GZqwCERA6Q8qYg,4,"Hole in the wall? Yes +Amazing food? Definitely +Clean? Questionable but I could care less + +The tortillas are really as good as everyone claims. Food was prepared pretty quickly. I had two machaca tacos and the beef was really tender and flavorful. A friend from Phoenix recommended this place and we stopped by on a trip from up north. Next time I'm in Phoenix I'll make sure to stop by!",review,U3DzyVKgyQk2YGDnZ8pFFQ,0,1,0 +X5QTGpPfqXFtmtizsGAksw,2011-09-17,5p6ojcHIsFWKkNntBzT8IQ,1,"I don't think I have ever been to a restaurant where I have treated so poorly by the wait staff. I'm actually rethinking my Green rating because I sincerely think this is my worst restaurant experience. + +The one good thing I can write is that this place is really cute and it has an inviting patio. Lots of string lights and cute bistro tables. I really thought I was in for a great evening. Oh how wrong I was. + +My friend and I walked in and the hostess immediately sat us at a four top right in front of the door. Unless the restaurant is packed and the drafty table in front of the door is the last spot available, I do not want to sit in a place where incoming guests will constantly bump into my chair. I pointed to a seat in the back and after trying to convince me I didn't want *that* table, the hostess led us to the back. It's not the worst thing that could ever happen and that instance did not ruin my evening, it was just weird. + +We sat and were greeted by our waitress, who initially seemed very nice. We both ordered water to start and I asked her for a drink menu. Apparently the drink menu is on the back of the regular menu. It's just so small that I missed it the first time. She told me that Friday night is the $4 frozen house margarita night, so I went with her suggestion. By the time I finish pulling out my ID, my dining partner was ready to order. We got a queso appetizer, the vegetarian tacos with a side salad, and the machaca plate. + +While we waited, a few more groups came in, were greeted, and received their adult beverages. It had been ten minutes since I ordered my drink, so I tried to look for our waitress. + +She finally popped up five minutes later, but avoided all eye contact with our table. When she did see me, she quickly ran outside. I understand she might have had a few tables outside, but why have an inside section to wait as well? The table right next to us had an amazing server who brought them two orders of drinks in the time it took to get my water glass refilled. (Margarita was still MIA at this point.) + +Then, the queso came out, brought by two hipsters. It looked like an over-microwaved styrofoam plate in a skillet and tasted just as bad. My friend tried to make the best out of the situation, but I was ready to call the manager. I really, really regret that I did not. + +Nasty queso juice dripped all over the table and there was no silverware or napkins to be found. AND no wait persons or a hostess to ask for said items. (Twenty minutes after I ordered my margarita, it was still MIA.) + +Our waitress finally popped up and asked how the appetizer was. My friend cut me off and said it was different, but okay. He took rare this opportunity to ask for silverware. The waitress made an excuse that it should have been on the table already and went to grab some. When she came back, I asked about my drink. + +With another lame excuse that could have been avoided if she ever check on us in the then-thirty minute absence, she finally brought me my drink. It was OKAY, not worth $4... more like $2-3. + +Two seconds later, the food came out. At least we had silverware? + +1) My veggie tacos and side salad were okay. Is it bad that the BEST part of meal was the white, iceberg lettuce salad? +2) My friend's machaca was bone dry. Isn't machaca supposed to be tender, rehydrated, and edible? + +All in all, the salsa was the best part of the meal. Yet, one cannot enjoy a dining experience on salsa alone. This was sincerely my worst experience at a restaurant and I will not go back to Mucho Gusto.",review,eAgcqq8MAe1ztS4gqDbpTA,0,3,2 +3Zsjlum5kl5N5KV712aTMQ,2011-08-06,sYyr_knBz9VArSgbtCUXHw,5,"We just moved from Florida and I was looking for a Restaurant with great food, service and a great view to celebrate my husbands 61st Birthday on Friday. It was suggested by a friend to try A Different Point of View... We are so glad we did... Let start by saying the drive up the cliffs to the restaurant was an adventure my Kia wasn't happy about but we made it.. AMAZING views... Greeted by a valet who had plenty of energy and was very informative. We picked the elevator to go to the 4th floor as opposed to the stairs... We were seated in a corner window table with views beyond belief! Greeted by our server , Larry, he wished my husband Happy Birthday and brought a passion fruit drink that was delish compliments of the Chef! Nice touch... Ask for Larry if you go.. he was right in tune with our special requests... We ordered their Signature Salad and I said we would share it... Larry had the kitchen serve it as a split.. Larry made the dinner and celebration very Special. My husband ordered the Rib Eye but my husband doesn't like any thing on his rib eye and doesn't like anything else on his plate with the meat.. Larry must hears this all the time and he explained exactly how it will be plated and assured him that no sauce or veggies would touch the meat. See pictures to see our meals. I held my breath until the plates came out and my Husband loved it- it was perfect. He ordered it medium rare and it came out perfectly cooked and full of flavor and it cut like butter. I ordered the Pork Tenderloin and it was tender and full of flavor the corn cakes were like little polenta pancakes they were delishish... The bread and the specialty butter and pesto and goat cheese dips were also full of flavor... + +The dessert was a Chocolate Espresso cake also very good. The sun was setting and the lights were twinkling-- Just a wonderful experience.. + +I can't wait to go back when it's a little cooler to sit outside...Don't miss this wonderful casual affordable piece of Heaven!",review,2_q4MxBJEw9PtFGs7mmYMQ,1,5,0 +ADJIoHN3uLx-JalYl3r3Dw,2006-10-07,XU-rGSnCPuujGRjldmM91g,2,The only good thing is the cheesecake. The food is terribly mediocre. And I hate how they seem to all be decorated like ruins of some sort. I want some damn food not an expedition with Fernando!,review,9Ysj3f3tI3m5QRDxvQAIKw,0,0,0 +kode9F27RF4C7XdSsnokiQ,2009-09-13,FyZj0aOh1Yt9jDnZ4O4BZQ,4,"I really wanted to have a Birthday cake for Zoey's 4th Birthday and The Bone Appetit Bakery did not disappoint. + +With just 24 hour notice I was able to choose a bone shaped cake from one of 2 sizes, I chose the small (see pics) A very tasty Peanut Butter and Honey cake with cream cheese frosting. All natural human grade ingredients, no sugar, salt or additives, Zoey went nuts for it! + +I also purchased her a cute little party hat to wear for her birthday (see pics) they even sell invitations if you are planning a big doggy bash! ;-) + +Your dog would just Love it if you brought home a Birthday cake for them, or even some of the house made baked treats they sell here. + +Go Now!",review,UsULgP4bKA8RMzs8dQzcsA,6,5,3 +ML1RJdeZ7bbfMrHvJ7m99A,2012-08-12,5SzUMsGO89oIl5zqhAm-XQ,4,"Try the deep dish, the smallest size can easily feed 3-4 people, it's SOOO think and yummy. Great staff and food, what more can you ask for?",review,aLNj9JCy7z0YSvxy44r0sA,0,1,1 +MuIXnv7Oq7X3-4aEsp9dDA,2012-06-27,9cqo_PdWJa-n5xWgCdzOLQ,5,Great experience at Citizen PH...highly recommend the food and ambience trust me well worth the price!!,review,QbAywqwZvG2hP_uTDbyByw,0,1,0 +waOHPeROjKPz-KXqlSsoWA,2009-09-02,WaFl6MKgb0WHOOK-usI0kw,4,"Ive been here twice and my favorite item has been their version of tiramisu. It's not soaked in espresso or whatever the local italian eateries are using these days..it's made with champagne! It's light and fluffy..it's like eating a cloud from heaven. Very much a date place.. It has a ""romantic"" atmosphere so don't go there if you're not trying to give off that vibe. Otherwise great for a group setting..... Oh and for any potential cougars the waitstaff is delicious eye candy. ;)",review,g6rlp5No6GjEDXkrjvg1kQ,0,0,0 +jCOTob1avPH52RNuniylkg,2011-11-24,j4dTZw7rtCNqsqCS61wvsg,4,"wouldnt you agree that a key part of enjoying the dining experience in part depends upon the company you are dining with?! having said that, the times i have dined at abuelos have been with my fellow co-workers, all female, and yes, we all get along! needless to say, we had totally fun & memorable experiences, filled with great conversations, great food and good prices. their corn chips are fresh and lite, their salsa comes in different levels of heat. i usually request the hot salsa. i'm partial to their chicken enchilada. portions are just right, one is plenty for me, usually served with rice. in all fairness, believe i need to sample other dishes, before i could rate it any higher. found another great restaurant in chandler, az! top3 reasons why...1- great tasting dish 2- good value 3- atmosphere (location, service, ambience)",review,IeWasXNEkwqQfil8twvRkg,0,0,0 +xPbUPBWS6k31qgUfUODmnw,2009-08-04,GPRCZ2tVtGLXYUDWTYYIhg,5,"You know when you get a really good cut and color.. When the stylist is done and you look in the mirror and say ""Wow, you did a great job. It looks awesome"". + +Well that was my experience yesterday. I was a bit hesitant to go to the training academy, but in these rough economic times every penny counts and their prices are fantabulous. + +It is really hard to find someone that does a great job on your hair the first time you see them. My stylist was Sara Groves and I am now a customer for life. I have the feeling she is going to have a very lucrative career doing hair, too bad her prices will triple in a few months. She sat me down and asked me all about my hair, my style, the products I use ect. The best part of the entire experience was that she really listened to me and cut my hair exactly how I asked. I wanted peek-a-boo highlights in my bangs, and even though she thought it was an odd choice (and asked me if I was sure a few times ;) she gave them to me. I was extremely pleased with both my cut and color. When the receptionist rang me up I almost couldn't believe the price.. Cut and color for under $50.. WOW!",review,q9XgOylNsSbqZqF_SO3-OQ,5,7,0 +NtRs2Xd64mRLe6jGUTXziw,2011-09-20,6AdvAZT-v9SZUzRj2Wf-SA,5,"I love the story time program here! I started coming this summer after having a baby and wanting to get my toddler out of the house while beating the heat. The staff here is amazing! It is a 30 minute session of singing, dancing, stories and bubbles. We look forward to this every week now. My daughter loves the take home cut out and coloring sheet. The first thing she does is come home and color it. I am so thankful for this free program.",review,QQVQTz_dYZk_Nat5O-EBkg,1,1,0 +ZRrIwqIUMII1b2keMI8QRw,2012-01-04,7JK3E4bg1qR8uvysIXziBQ,4,"We stayed at the Scottsdale Hilton in one of their villas for New Years Eve. It was the perfect size for all of us staying there and it was close to where we were going to be in Scottsdale. + +The villa had it's own kitchen fully equipped with a fridge, stove, sink and even had cups and glasses. There was a little seating area by the kitchen as well. + +The bedrooms were both a good size and the master bedroom had a huuuuuge bathroom. It also had his and her's sink and tons of space. I was sad that I didn't get to use the shower because it was a walk-in shower and was spacious. + +There was also a larger sitting area with a tv and fireplace and it also had a pull out bed from the couch. I recommend getting a villa if you will be sharing the space with a few people as there is tons of room! + +To get to the block party we were going to, we called taxis and the Hilton also sent over shuttles to get us to and from. They weren't charging but did ask for tips. They were really easy to communicate with since we had so many people and they did an awesome job! + +My only complaint is that some of the outlets in the bathroom and the room didn't work. It wasn't too big of a deal since I found one that worked that was luckily by a mirror so I could do my hair, haha. Other than that, our short stay at the Hilton was great and I wish we could have gotten more use out of the villa.",review,NSPP7lHF_jIBt4yf8RyHPA,1,2,0 +XAaXT0e70-USVYVKcnljsg,2010-05-15,Ha7Me6m2h27tjWaDzRdCNg,5,"Super cool, cookie/cake.chocolate maker haven! :) Totally worth the 40 minute drive I had - it was packed when I got there and I did not experience one little bit of rudeness. I arrived with my 5yo and after cruising the aisles for a bit an employee came by to see if I needed help finding anything. Super neat place! :)",review,vNFxfUDTPgZRgV3EHnkmJg,0,0,0 +oJpmYvLibGrYPDvcaUeMOw,2009-01-11,unDeb-R-hqBG13nFAa0Cqg,3,"I like the Thai Hut because it is safe Thai eating. They have some of the more adventurous authentic Thai, and then they have what I ALWAYS get - The Garden Delight with beef. Just basically vegetables and beef cooked in a marinade. They always have plenty of servers on hand and I've never been disappointed. There's just some little sparkle that it seems to be missing. + +I struggled between giving it a 3 or a 4, but I settled on a 3 because they could definitely improve the atmosphere a little bit and parking sucks. They are really close to the light rail now though, just get off at McDowell/Central and walk one block east on McDowell.",review,f_YFU2h9rM0ZPrPJD6eCsg,4,6,2 +V5QdxePG-pGPXVPHSLLM9A,2012-09-05,60EpHGOBKM9Pt2EwiFSjng,2,"I'm sitting here as I write this.I'm thoroughly unimpressed. + +With its bare white walls and sparse attempts at decor, this place is overly and unreasonably obnoxious. Despite not being crowded, and there never being more than one person in front of me each time, I had to wait on line. With two people working behind the counter there's no reason to forget my order or make me wait 5+ minutes each time I needed something (to get my coffee, to ask for the Internet password, and then to remind them that I ordered coffee). Unfortunately the coffee supplied was mediocre as best. Disruptive music selection that was too damn loud. Annoying..thank God for pandora.com, a good set of ear-bud, and reasonable wi-fi or I never would have gotten any work done. + +The only reason I'd come back here is if my son had another concert to attend nearby. Needless to say, I do not recommend.",review,MKZh-O5OLJcR1exReXhJHQ,0,0,0 +Edj0quZE5k1WcAtf883j6w,2009-07-28,aOuxK1eUBA-Ij3pUi-XP0g,5,ouchh...my fuckin head is pounding this morning. thanks a lot guys!,review,scxmg3Pu_jjpXSyFWH8-Cg,1,1,0 +G27f2NAq05CkMaoiXBPY_A,2008-04-02,7Y5pqMMFE3L1XNUz2_uRJA,3,When in the mood for bagels I go to Einstein's with my several year old yellow Einstein Brothers stainless coffee mug. I pick up an AZ Republic and order a toasted good grains bagel with garden veggie. I usually have the bagel in a basket by the time I get to check out or at worst when I am filling the coffee mug. The coffee is mellower than my usual Starbucks but compliments the bagel. Einstein's draws both the young and mature and I enjoy the ability to read the paper at my leisure either inside or outside in the morning shade.,review,J72XoQspNBmPsX2iKl2YvA,2,1,0 +R8VwdLyvsp9iybNqRvm94g,2009-07-25,EBHrIffn9PF7tMnHf4O_Dg,4,LOVE this place. The parking is terrible. That's what keeps me from being a regular. Coffee and deserts are SUPERB. Atmosphere is A+. Love the gifts.,review,9OpjxLRhiV9YImoMVHlxLQ,0,0,0 +wGAehOy0jG02k_FS5sx8CQ,2007-08-07,MMjqpCbRka_B0OPHs9Eyzw,5,"God Bless Lifetime Fitness. + +First off, let me tell you how much I despise working out. Like, at times I'd rather drink my own pee than even come within 50 feet of the stair stepper. + +However, LTF (have you noticed that I like to abbreviate? Get used to it friends...) makes my gym experience fairly painless. Steve W, I salute you for aknowledging the value of such a fine work-out establishment, and I actually have many of the same opinions. But because I like to hear myself talk, I'll reiterate some of my favorite points. + +First off, I'm absolutely not a fan of children. Especially at a gym. Lifetime has FREE childcare for kiddos 12 and under so us singles can flirt our way through our workout without your kids sniffling and screaming. Kids can play and swim outside under parental supervision at the pool, complete with waterslides and some kid-specifc water fountain spray thing. They love it. And I do too. WATERSLIDES? I mean come on. LoveitLoveit. + +Lifetime's members span the board, which is nice because I like the fact that I'm not the most out of shape person there. I also like that there is nice scenery to watch and inspire me to keep my feet on that god forsaken stair stepper. You may even see a professional athelete or TV personality on occasion. Who doesnt love that? + +You never wait for a piece of equipement because there are tons of machines. And they are not covered in meathead sweat, which is always nice. + +My favorite part of LTF is the group classes. Excellent teachers, classes every day of the week, and a good variety of options. I'd like to see more coreographed classes like Hip-Hop, but whatever, Kickboxing Jam is pretty damn close. + +Locker rooms are always spotless, towel service is free, sauna and steam rooms arent full of weirdo naked people, and they have this device that dries your bathing suit in under a minute. Ingenious! + +I've been a member of a ton of Scottsdale gyms but I drive the extra 20 minutes in rush hour to go to the Tempe LTF. Doesnt road rage burn calories anyway?? Win-win situation.",review,E0WWNXVze_sfDCbM0oMYvw,2,3,5 +y0_Yc9NS-nro-pDGKhiFjw,2012-09-12,OhAYvGZjB2KJxW7wB8LX0w,5,"One of our Lexus car keys/key fob was cracked and needed to be replaced. Going to the dealer would be anywhere from $250-$400! I found Alcatraz on Yelp and called Todd. Todd did exactly what he said had to be done and the charge was $75.00. Todd is knowledgeable and knows what he is doing. Most other locksmiths couldn't do the job because they don't have the machine necessary to fabricate the key. I am a home inspector in the Phoenix metro area, and before I left with my new key, I took more than a few of Todd's business cards that I plan to give to my clients, so that when they move into their new home, they can call someone who is reliable, knowledgeable and trustworthy to help with their home security. Thanks, Yelp, as I found Alcatraz on your site.",review,t8v5avMw1eiCC5KZ_MMINA,0,0,1 +Bjt3rB73dvSDe1XEPEWc6w,2010-07-13,5VWoIyJe9XJ1dbCcuoeaew,5,I love sakana. They have the best lunch time happy hour! Its always delicious and seriously reasonably priced. :),review,8xXoJCEIA3kCSgC3VE9snA,0,0,0 +k8JnZBspVOI8kLcQek-Chw,2012-08-19,yPrpSyehxdwQPfSebHRGIw,5,"Hard to find New York pizza that tastes like New York pizza. All the way from Morristown, NJ, this place is now the only place I order NY style pizza.",review,oBd-_6sWn7c9HORfcW4A7w,0,0,0 +FCJHirFzEtj4M1VcuaKieg,2012-05-09,EGc2Uui886jl73xFy9Rdlw,5,I was here for the Yelp event recently and loved it. The facility was great and Yelp did a good job putting together the event. I noticed there was a lot to do there. I am already planning to come back with my nephews so I can have fun walking around the mock grocery store. I'm also looking forward to racing my nephews through the car wash on tricycles. Bring energy when you come and prepare to have fun.,review,lAngRi4lwBIHmjCBVLd-8Q,0,0,0 +Cz0McL5lUaihqOIw0_Yo7w,2011-04-01,5KMjYBXXd70QnyOP_DNTRQ,1,"Empty tables. Told 15 minute wait. Ok. 5 minutes into wait (by the door, bumping elbows with counter patrons), 2 people at the counter complained they had been there 20 minutes. We left at that point",review,kGm5BBCp2Q2s8f8tgD1zUQ,0,0,0 +WzXRXrAeCkHWlVdkbPfP-Q,2012-08-29,jNIBYqnaeBruBxd_MX46qQ,4,"Nice car-wash with reasonable prices and decently friendly staff. I can tell the staff is used to dealing with the older gentleman types versus the hip and fun 30-something female SUV driving Mom types, but that's ok. The Mom-mobile was detailed just right, the wait wasn't too long, and the air freshener lasted more than 1/2 a day. + +Way way better than Cobblestone Spa over on Bell Rd.",review,kG8jkVFgOAOq6Ht6RvAjEQ,0,0,0 +9YW9UFJXEO2_CD8dxY-IBg,2012-06-14,Wn-fNLrcaTbqhaXZERAGug,1,Not a company to do business with ... From my experience !',review,dop-mD9qf2J0t2mljfHG4Q,0,0,0 +POOUz3kduIUpwrbc6ydftg,2012-06-18,DENiVAwF-XX57rgAERIl7w,1,I wouldn't send my worst enemy to this place.,review,rYCncos5jX6QSccHNbFrlw,0,0,0 +FURgKkRFtMK5yKbjYZVVwA,2012-07-07,0dxpLZkXjgiXWYPmWusGsQ,4,"If you're a fan of Postino, you have to make your way to Windsor pronto. + +The central Phoenix restaurant and bar is owned by Postino owner Craig DeMarco (and it's right across the street from the central Phoenix Postino), and the atmosphere and vibe are similar to Postino's. Windsor also has an open dining room that extends to the patio, the lighting is also dim, and the servers are also hip. + +There was a 30-minute wait for my party of two on a recent Friday night, and we sat in the indoor dining area, which overlooked the bar, which was bustling full of people and had standing room only. The restaurant is located in an historic brick building, and it has a cool wall covered completely in cassette tapes that makes it feel even hipper. + +For food, my pal and I started with the Cheddar Fondue ($11) off the mostly-American menu, which comes with pretzels, apples, pork, bread and sausage. The pretzels were soft and chewy, and the portion was huge. I would have preferred just the pretzels, though the apples and cheese were an interesting combination. Definitely try that appetizer if you go-it was super-tasty. + +For my meal, I got the Veggie Stack ($9), which was a pita topped with bean spread, quinoa, tomato, cucumber, avocado, radish, corn and green goddess (I left the pickled beets off). I thought the toppings were interesting both taste- and texture-wise, and that part of the meal seemed relatively healthy. I paired it with some macaroni and cheese, which I enjoyed, though my pal and I weren't wowed. Maybe it's because the cheese wasn't plentiful or creamy enough, but it was still good. My pal had the Porkwich sandwich ($12). He said he liked it a lot.",review,v2UqlUHA8d3lgTIby0CCFQ,0,1,0 +Zy2vca7i9QFGRKa4m0C__A,2009-02-10,nzGRwZG_o6G417tIMGZ0EQ,1,"I do enjoy a good bowl of Pho. This was -not- a good bowl of pho. + +grey chicken meat., off tasting broth, old bean sprouts, 1 piece of a jalepeno pepper... dingy insides. Weird looks from the server. I don't think I'll be back. Not much else I can say",review,k1ACFw3wmqkNGoiGeNLc0w,1,1,1 +eJpr6Ks8pr4bmvDVPTN-Xg,2010-08-13,-qH4in8On76pgJZyBrpfWg,5,"Had a bad day yesterday and decided my health-conscious lunch would *not* cut it as far as getting me through my work day. I've always loved VSC & have had their menu at my desk but I hadn't been in a while. Put an order together w/ some co workers & called. I was read to go pick it up, but then they told me THEY DELIVER! I don't believe they did the last time I'd been there. Went out on a limb & tried the Dead Head wrap - soooo good and WELL worth the price b/c it's huge. I almost took off a star b/c their pasta salad is NOT what it used to be. I don't know if they changed it or if they are just inconsistent in making it, but it was kind of embarrassing that I'd told my coworkers how awesome it was just to have it come out not so great.",review,WgX4RZT2nbqXcJclDWHWYg,7,7,7 +Mng1FUcW-xRSdsDkowQm2Q,2011-12-02,f3DDgRGNznU0Yk7WMPv2eA,5,What can I say I love AJs especially the Boulangerie or coffee bar. Jason is the best. The pineapple ice tea with a slice of pineapple is deli-sh with a yummy cheese croissant. I admit I usually get something from the coffee bar and bistro more so than the actual grocery store. Oh and if you go check out the display/decorations they are usually pretty cool.,review,hqnySkbeUJGoC6h76gtSIQ,0,0,0 +Lc-ZYyI83FpEe-8u_LSODQ,2009-09-16,kIAFjwkeibeA1vtZbBH2Ug,5,"Well what can I say about this place? The restaurant is located in an upscale commercial complex with boutiques and an AJ's in the middle of Arrowhead Ranch. Definitely doesn't have the boring suburban feel which you get along Bell Road only a mile away. The inside has exposed brick on the walls with sleek looking seating. Each food item comes out looking like a self made creation from the chef. I have to say the Marguerite pizza is one of my favorites. Having a crispy crust and savory flavors that make my mouth want to eat more, more, and more. But I don't need to eat more because I fill my mouth with a good wine. I had a Dutton Estate Chardonnay(I think) which was half off on this day which kept me happy. This place did not fail me. +So will I be back? Umm that's a yes!",review,ceKoQX0_IJZ6Lr9-9LGcbA,1,1,0 +eyjyLrHjTPGuynfv-glYcw,2011-07-18,wUJuK1G0I3aI2RK2l19qrQ,1,"Most horrible buffet I have ever been to. + +My boyfriend and I are big chinese buffet fans. A ton of them have raised their prices recently (and, not surprisingly, have been closing down left and right).. so the prospect of a good buffet at 5-8 dollars was absolutely amazing. We read all the reviews on yelp and I had high hopes. + +Dear lord. The food is awful here. Inedible. Tastes very distinctly like a bad frozen dinner. The only thing I remember being remotely food-like was some kind of beef and onion dish.. which tasted a bit like a philly cheesesteak. not exactly asian fare.. + +I tried really hard to like this place. My boyfriend didn't like any of it either. I don't understand how they have such good ratings. The ONLY thing I like about this place is their dessert bar, because they have toppings for the frozen yogurt. It always annoyed me how so many buffets don't even have sprinkles.. so they've got that going for them.. though I think I'll just go to Mojo or Yogurtland. haha. + +In short, I don't understand how anyone can eat this garbage.",review,e3fwzqWn2EScYXgm6NRBWQ,0,0,0 +wNsmt1hF1uv3YvbwXZMAoQ,2012-11-05,ZQNhHraFM-ErSZdghNWApw,5,"Fantastic. Absolutely fantastic. I recommend OHSO for anyone looking to dine at a neighborhood bar and grill. + +I was really shocked when I dined at OHSO for a Sunday brunch. I figured the variety of beers would be the focal point of the brewery; boy, was I wrong. This place has some of the best dishes in Scottsdale supported by a huge selection of beer. + +Let me say this with more clarity: great food differentiates this place, not the huge variety of beers. This is a great achievement considering many breweries focus on providing rare beers with mediocre food. + +The ""Burger + Cheese"" is simply awesome. +A GREAT brunch dish is the ""Breakfast Burrito"" as well as the ""Breakfast Flatbread.""",review,1CL12c9zuE36NGhx-otgVw,0,0,1 +r4ggW7POeNX0ta6spkT4Kg,2011-03-30,oojL4rm4wxxUoEn5rfzviw,4,"Had a fantastic massage with Liz. She knew all the muscle structure and pressure points. Though not the fanciest of places, it's perfect if you just need to get a massage. If you want to be pampered and get the spa feel, this may not be your place. For me, my back hurt from sleeping crooked and I left feeling much better.",review,hGyKkRaJkOpl6jagEZAWcg,0,0,0 +qMkIbQFrROSnPaQ7at85-w,2011-01-07,hHgcY9ptFnTX_l6IrElGBA,4,"Typical anglophiles, my lady and I gravitated toward the tea garden. But that doesn't mean we didn't love photographing and learning about the myriad plants that call the desert home. + +I was particularly enchanted by the century agave and giraffe trees. + +Give yourself plenty of time to walk the garden's many loops. I would recommend at least four hours.",review,z5g5Lclwt13_BO0BStohMA,1,1,1 +xLCbkTYQaP-nij6mEfaw7A,2009-10-10,WiBN3KWKXAqfRUAlOJ81ug,4,"I love books and I love bargains. Put the two together, and you have a place called Bookmans, or as I like to call it, my book heaven. I recently purchased four books for about $30 -- that's the price of one, new hardbound book -- and was thrilled by all the great bargains I found during my casual stroll through the many, many isles of books, cds and dvds. + +What I love about the whole used bookstore concept is being able to give a new life to a book someone didn't want anymore. I especially get a kick out of finding old books with inscriptions inside. One I found says: + + ""Pam, This is my number 1 all time favorite book. I hope you have + a relaxing holiday with your family and look forward to adventures + in the new year!"" + +I felt bad for the inscriber, since the book obviously did not become Pam's favorite, so I bought it in hopes that the inscription would ring true for me. + +I'm glad a bookstore like Bookmans is around and that they are able to compete with the big chains. It is a great place to find great deals, and I'm hooked!",review,oIVsVM8H273aoT1JUmsDIg,4,4,4 +dD2xiLM1_5Vg0pMvMIPZww,2010-02-01,vUoD6Se0B2BP6W023y176g,3,"SALSA BAR RAID! that is exactly why I do when I am at this place. The salsa bar is the main attraction for me. There are many great salsa options, plus fresh cilantro and peppers. Some of the salsas are good enough to be eaten straight, like the mango salsa, it makes a good desert. + +The menu for this place is somewhat somewhat limited t mostly burritos and tacos. Recently the menu was revised and the cheaper items were removed and more expensive ones were added in their place. + +Every meal comes with a small side of chips, which adds even more use to the salsa bar. The grilled green onion that used to come with each meal is gone and missed.",review,M6oU3OBf_E6gqlfkLGlStQ,0,0,1 +xY1sPHTA2RGVFlh5tZhs9g,2010-05-26,fLM0swvpIVzmgnXxrFS0oA,2,"Great location. Nice decor. The food was adequate, but $13 for the turkey pastrami sandwich was a little high for a lunch. I guess those chandeliers are expensive and rent at the Waterfront cannot be cheap. Our server was poorly trained. She placed the food in front of me instead of the lady first. I asked for water and the server brought only one glass of water and didn't bother to ask about the lady's needs. This venue is not for those who appreciate fine or even appropriate service. Sam needs to educate his young servers on the finer points of courtesy. Our server was also extremely bored with her job, her life, and her existence. That's the impression we received.",review,DuGQ74ZYYhx2NCALocA5Cw,0,1,1 +zOCdVUKUN3b-obT67Qjyww,2011-09-12,WpwIA0YmpDEqAoH_hjSG2A,3,"Haus Murphy's was my first German food experience ever. The cuisine was OK but it isn't something I'd shove people down to get to. + +I went with a friend who lived in Germany for a bit and he said that Murphy's wasn't quite up to par. + +We ordered the sausage sampler as an appetizer. The sausages were tasty, but they were a bit cold. For something that is labeled a ""sampler"", I felt disappointed with only two types of sausages served in it. I don't know for sure what types they were, but they didn't taste unique to me, as it seems like you can purchase them in the meat section of any supermarket. + +The sausages were served with three types of condiments. A sweet style mustard, a Dijon style mustard, and ketchup blended with curry, which I'm told is a recent favorite of the German kids brought over from Turkish immigrants. + +For our entrees, we all had some type of schnitzel. That same friend told me to try the Wiener schnitzel as it is the representative item when you think of German cuisine. So all our schnitzel's came out and mine was the blandest. My friend's schnitzels had different gravies, toppings, and stuff and my poor little Wiener schnitzel was just bland and all alone. You have to get that Wiener schnitzel wet with gravy ! + +No biggie, I'm a foodie so I'll eat it. A schnitzel is basically German country fried pork. Not super exciting. I copied my friend who lived in Germany and substituted potatoes on the side for spatzle, as I wanted this experience to be as authentic as possible. I don't know if it's just Haus Murphy's, but the spatzle was kind of bland, even with the gravy. + +I do however like the word spatzle. If I ever visited Germany, I would only say spatzle, to everyone. I also liked the other thing that was served with the entree. It was kind of like a mashed potato mixed with some creme sauce, onions and some kind of green vegetable or herb (probably spinach). + +The beer here was good authentic German beer. I didn't get drunk, but I still don't remember what kind I had, you'll have to experiment. + +Service was excellent. I read some reviews that said Murphy's was slow but everything came out quickly and evenly for us. The waitress was very friendly and they spoke lovely German (not that I speak ANY German, but it sounded sexy). She was very helpful in describing everything, from the food to the beer. + +I ordered a BAP (big ass pretzel) to go. Philly is known for some pretty good pretzels and this BAP was good. It was expensive, but it came out warm, soft & chewy. The only thing is they went a little heavy on the salt. + +To steal and modify a quote from a Seinfeld episode: ""That big ass pretzel made me thirsty""! + +Note* They don't actually have it on the menu as a BAP. + +Would I return to Murphy's? Ehhh, yeah to try some of the other things, but I definitely can't see it as a place that I would be a regular at.",review,3qMUN6NGDq1GWtAJSuvXIQ,1,1,2 +-lOSaCuBRAvX5JBifx-EMw,2009-10-21,Lu4MVbIhLVvRHqQFWEhM4A,2,"This place is ok if you are so starving you don't care what you eat. The chips and salsa are great, but everything else is pretty bland. I am a fan of tamales and I would definitely not order it again. They do make some pretty good chicken tacos, but you only receive 2 small tacos and its about $12... no thanks! I would prefer Taco Bell over Mi Amigos. The staff is very nice and the service is good, too bad the food does not match.",review,kOb1hWSwA6aD2mRVy6lqFQ,0,1,0 +z1CjVXv6M6RbWhZO1lIExA,2011-10-06,_jWfSYCHV4UvhHJKwWR2gA,5,These guys are great! They have helped me with bulbs needs for both my home and office. Easy to work with and good prices. Thanks!,review,3BCH4AfHZshEaegNmPpN2g,0,0,0 +VS6eeO_IxSW0pQOWPtXSEg,2012-11-13,m-HuYmxbS0nng8UacLhRMQ,3,"Seriously need a remodel, but totally worth the money due to the free 24hr shuttle in a 5 mile radius!! Nice staff. Clean. Just worn down a bit...",review,mEimJ0tajMEVZxWqatGpKg,0,0,0 +NAkRjPhS4yCD5trp0dY-bQ,2010-09-29,9-8llHxyhtqMGs6TxPnebg,3,"The cajun seasoning on my salad was terrible, but everything else was just fine. But food aside, I'd come here again for the atmosphere. It's not my scene, but I enjoyed how friendly the waitress was. I was surprised that she didn't know what an old fashioned was (my barometer of how good a bar is), but the bartender did and gave me a drink that was well balanced, but needed way more alcohol. Old fashioneds are not orange and look and taste like juice! + +It was fun watching the girl buck around on the mechanical bull. I have a feeling that the operator liked jiggling her around for a reason though...All in all an enjoyable dinner with friends.",review,S3inpPpjhSGgXfh9HdsCng,1,2,1 +q9WaFYhlOZCrfXJQTG5t_Q,2011-06-27,cZjHSF5ZbmeswN0Y-gffEQ,4,"Great place for happy hour and drinks. Really can't beat pints at $2.50, good long happy hour 7 days a week. The sandwiches are all good, the salads make great sides instead of the chips and the tiny cherry sized tomatoes are to die for whether you get it on the bruchetta or cheese board plate. Thursday late happy hour gets pretty busy and so does friday late afternoon into late evening. Saturday night it picks up after happy hour ends. Wish they had burgers and fries like the Living Room in downtown Phoenix.",review,fE5cFZwRgvTYK78bYTFy0Q,0,0,0 +lhRUPA28pRIN1MnllN-o9g,2012-04-18,X4xSy9XaAn9ruAUQNSo0Bw,5,One of my favorite places to get Indian food. I'm vegan so I love that there is so much to choose from. My all time favorite is the chili gobi and vegetable manchurian. I'm so glad Udupi reopened.,review,czMeiY1ehKrm_aZFKAHt-Q,0,1,0 +GIGI8bJfN6HyPzmEW-QqjA,2008-02-08,MR3tpec4Xfvu9uxPGh0FOQ,4,"This reminds me nothing of the cafes I ate at while in Paris. Sadly, however, I wasn't in France, but Texas. Yes, Paris, Texas. My car broke down. I believe I had a cowboy omelet and a large ice tea while waiting for the repair. Here, at Zinc Bistro, I pretend I'm Paris, France. A glass of Burgundy with the French onion soup and some pomme frittes and I say WEE WEE! I've had good service here. Although I've seen larger tables having issues with flagging servers down. It's like they can't rememeber to ask for everything at once and the servers is doing some serious wind sprints from the kitchen to the table. The manager is way cool and always remembers me. I do love the bistro style atmosphere here and love hearing other peoples conversations when I dine a lone. I know. Shameful. But one couple was actually signing their divorce papers over a steak and a bottle of champagne.",review,C8ZTiwa7qWoPSMIivTeSfw,9,7,12 +ho4Te6bO2tGs56h9PF2vuA,2011-05-04,XXhDtnQJecXNlLiV94FG0g,1,"I suppose you could just put me in the ""box"" with ""Luis T"" on 3.20.10...because if i didnt know any better, his could have been my entry.. So i was here this week. Let me start by saying i have been giving Los Dos Molinos my business for almost 20 years now, and each year that goes by i find myself saying that i am going to cease my patronage. I will save the stories from the recent years and why i've been feeling this way, and give you just the specifics from my most recent visit: If you want to make the rule that there are ""No Split Checks"" then can you AT THE VERY LEAST get with the current times and make the bill somewhat decipherable? We had a large party, and were quite promptly advised there were no split checks, yet at the end of the night we were left with a ribbon of calculator tape with ONLY prices, and no correlation with actual menu items...so we had to cross reference the menu to figure out what the heck all the itemizations correlated to. And by the end of it, we pretty much gave up and just guessed at what each person should contribute because the receipt may have just as well been in morse code. Ok, im getting ahead of myself..Its one thing if you have subpar service and the restaurant is slammed, understaffed, there is a MLB baseball game or NBA basketball game, or concert going on...This was not the case. We were the ONLY table inside the restaurant and the service absolutely sucked. How many times must one flag down the server for (take your pick) A; refill on chips B: refill on ice water and C:(most importantly since the drinks are marked up 300%) a FRESH DRINK!!! Oh yes and D: Check please. We had to look over our shoulders for A , B, C, and D. When our table collectively decided the service was ridiculous we decided the tip would reflect that, and then we realized an 18% gratuity was included...well no wonder. When that is the case, there is NO incentive for decent service!! We brought several items to the attention of the bald headed caucasian man who may have been a manager of some sort but his severe lack of customer service skills merely resulted in him stating in a childish voice ""They are complaining about the service"" to an audience that didnt exist. Damn right! and damn right we will take our business elsewhere. Grandma Chavez is rolling in her grave! you should be ashamed!",review,2URPAzG5RELkB1cCm1ASJw,0,5,1 +KRZKl_NCQ1cMD1AJpWDTwQ,2012-08-29,wL2xpxiFpMW3OFEZIIlJ3Q,4,"These guys scare me. We set up a repair with Karen for a noise in the dash area which i said seemed to coincide with the gauge movement at start-up. Well, we came back the next day and found we had a new stereo but the noise was louder. The dash was pulled and it was determined to be the A/C door actuators and Karen set an appt. for drop-off and rental car pick-up the following day. On the way down the A/C quit working completely. Angie called me the next morning to let me know we could pick up our one day rental as they replace the condensor. Nothing was said about the noise which we brought it in for originally and, more to the point, no knowledge of this at all was logged into their system regarding why we dropped it off the night before. We had already been set up in a rental car by Karen the day before but for some reason nobody had a clue what was going on and she and the technician had both gone on vacation. Finally after speaking with the service manager, Gary, and explaining to them what should have been in the notes on my car it was determined they would handle everything and we could keep the rental on their dime. This made me feel better and we picked up our car 2 days later with functioning A/C. On the way home from the dealership the A/C quit working again so back it went for another random repair. Tuesday came and we picked it up again after they had to make some A/C computer module fix but... on the way home from Coulter... my wife noticed the ABS and Traction Control lights were flashing red and indicating they were innoperative. So now the car was unsafe to drive but at least we had A/C to keep us cool if we had a wreck from the new issue. We took it back to night drop-off since they were now closed and this morning, Wednesday, they have it back in the shop to see what happened as they were doing the other work. I'm so happy I don't own the warranty company since I'm sure they are paying for all of these mistakes. Hmmm... +Update to follow - + +Noon 8/29 update - Our new service person, Ben, called and as it turns out this is totally unrelated to the A/C issue but is instead, the brake pedal sensor, whatever that is. It's ready to come home. I'm beginning to think that the consumer reports review on this GMC Acadia is accurate. 40K+ for a good looking, nice handling, unreliable SUV. +Overall I have to say that once Gary and Ben were involved this has taken a turn for the better and maybe all this confusion was just a fluke. I'll give them another chance next time we have a service issue.",review,OnGKdONTxlNYyjX6KXhL0A,0,2,0 +Ch_2Ye0w4Q9l3VeVW7VNHA,2011-07-07,gGkJWhO_kTd9xuL1ZP8Ygg,5,"Market Bistro never leaves me disappointed. The people are great. +The food is ALWAYS good & it doesn't matter what you get, they will cater to your needs & wants. + +Definitely a must if your coming to Phoenix or if you live here, you need to try it.",review,fjJ9tgJNhDR_l3_4t5fz2Q,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2011-06-19,n7f8d2y5OaaEFzWWFXwtPQ,5,"Wow... I regress into some sort of '90s Valley Girl stereotype when chirping in delight over how good Switch is! How I was missing a review for a Short List restaurant that I recommend to ev-er-yyyyy one I meet who is new to Phoenix and even remotely cool!? + +Switch is reliably good food served in a reliably good atmosphere by reliably good servers. The combination of service, setting and grub makes Switch a go-to for affordable dining that has appeal for a wide variety of people. If I think that someone might be too uptight or too culinarily 'safe' to really enjoy Fez I know that I can take them to Switch, they can hone in on comfort food basics and I will still have an enjoyably awesome dining experience myself because all the basics are done with love, care and actual effort. + +I think I prefer Switch's menu to Fez's because of the combination of classic choices mixed in with flavor play and more diverse fare. And we end up at Switch a lot because they have awesome outdoor loungey space which works for friends who are smokers and for a quieter, more intimate chic and cool dinner-drinks and gossip night. + +It's really a gift to have this place in Downtown and a real gem in the Valley overall. + +We have on occasion had our asses kicked by the bar, specifically by the Drunken Italian Sodas which are so very, very good!",review,W9h1ufjEzDp7THyAqRw65g,0,4,0 +RC11zxI3ZW2UPFeXpGofdA,2009-01-06,QZTn1Bo8RQPRPUHKlmdGow,5,"Love their pizza and atmosphere. Their Caesar salad is really good too. They had a great deal during the summer, where we got 2 salads, 1 large pepperoni pizza and a bottle of wine for $40.",review,EKwGhgLrM18ErVKKeYE2UA,1,1,1 +gfhO1Q1c7QCigu7waVpeSg,2012-05-09,w2kuRh5OWLWN2X7UH6wvng,4,"Economical discount theater! For the price of what other theaters charge just for admission, you can get your popcorn and drink too! Seats are a little small, but there are usually plenty of them. It is of course not the newest releases, but I am never up to date on my movie watching anyway. Must have cash, ATM available in the lobby area.",review,nWw6phGGdMXCctDV_DK3IQ,0,1,0 +qNoNkF1yJctEs3t40VkX4w,2012-02-26,S2Kk-p65zfPZibQfe-JvBA,3,"Food used to be a lot better, service too. Not awful though.",review,V8TuNMIpbDQUHyHdGmm-Qw,0,0,0 +cLojUtqkFpVIHFEvA_5Atw,2012-06-06,n4I-pdVv7Ayk9Kzzkxfo8g,5,"I recommend making OpenTable reservations, as this place is small. +I had a great dining experience and I enjoyed the drinks and food. Margaret (sp) was a great server. + +I like to dine at local places like this, particularly those that make their drink mixes in house and use locally sourced food [when possible]. + +The drinks I had were great: Aloe Arizona, The Kingston Rum Punch and Piña Colada Redux + +I had a dish with red snapper and vegetables; which was excellent. I had rice and peas on the side, the rice was not the best however; it seemed too dry. +My friend had the prawns, I did not taste it, but the presentation looked good. She also had the coconut water which was served in a coconut - it was great and she mentioned it complimented the prawn dish. + +For desert I had a Créme Brûlée made with pineapple and rum.",review,LvGC0do89uWKWbNrqFFwHA,1,1,0 +VbXy3tH5RAu7HjT7VeMMgA,2012-11-29,FHuXMFd6ErgSikXn_3hdzA,4,"all the naysayers seem have a bone to pick, the service here is incredible and the food is better. vegan options as well and staff that helps make sure your order has no egg or fish sauce. if your looking for thai, this is the best place in the valley we have been to, and being vegan, we have been to too many to count",review,xVTY2s588zm4bJiaZZU8CA,0,0,0 +oCA2OZcd_Jo_ggVmUx3WVw,2010-08-24,Txbs-Iynall0qrAOmtOTmA,3,"This is a really fun place to grab some cocktails or beers before an event or game. My friends and I have a tradition of drinking here before DBACKS games and we always love it. Drinks are reasonable, especially if you ask the specials, and way cheaper than beers at BOB. + +As for food they have an awesome menu, but the food came off a bit cheap in quality to me so I don't think it's worth ten dollars a plate. But if your hungry it will get the job done! Although...one of the days I want to try and eat one of those One Pound hot dogs they have. It is a personal goal. + +I recommend: +Fox Sports Marg +Beers +Grape Bombers",review,PS0lCxjGNeUrKxYSdpW-Aw,0,0,0 +XNSito__Fne14TXU0vz1Qw,2010-03-13,4wwVZbI6xP5z_wT5MoA8_Q,5,"Fantastic place! we went tonight for my friends birthday-they were able to seat 15 of us without a problem. Our waiter, Tim, was fantastic-he split the checks for everyone before we even asked. They gave the birthday girl two pieces of delicious dessert on the house. The food was great-we were all surprised by how large the portions were for the price. Everyone was very polite and accommodating I look forward to going back!",review,1SoSqWcWZINy1mvdTdTvNA,0,0,0 +BESmH-lmMm34_EefL8X9fQ,2010-05-16,fEiyeO9DK0KWYzpltpKPSg,5,"This place is the truth. It is easily one of the absolute best spots in Phoenix for Sonoran style Mexican cuisine. The chile colorado is so good, it made me try to slap my mama. The red sauce with the chips is actually brewed in the sixth level of hell. Awesome. Fridays feature $1.99 margaritas before 7 p.m. Swing by, start with the cheese crisp, grab any combo and revel in the gluttony.",review,6T8fwmZaxSJ4qjrGvlasOg,0,0,0 +c83U8KeaK10Qm9opPqf0Cg,2012-02-13,_487iYm3mxZACs4Z_Rxirw,5,"We enrolled our son in this program. It was EXCELLENT! Of our three children who have learned to drive we have observed that he is the most safety conscious and the best ""new"" licensed driver. + +Thank you, Driving MBA, for the peace of mind you have given us.",review,A6CQFZCXLxkxiuXlimB0zw,1,1,0 +IGrp61aiyR-PtL581brrcg,2010-03-07,lUJWQU0vpA8q33vx3sqp4Q,4,"So. . . I think the name is very misleading. I have thought about stopping in before, but I also thought this place was a deli counter with the usual sandwiches and a little ice cream. I would have been surprised. My sister talked me into trying it out for a quick bite before our Thursday night class. This place is like a neighborhood pub should be. The wood bar is warm and inviting. The Side Door is small - very small. Even though this is obviously a neighborhood joint, we didn't feel uncomfortable grabbing a table. For every 70-something that was at a table, there was a 20-something at the bar. + +The food was not amazing but it was decent and reasonably priced. We split a Greek salad and a roasted veggie pizza. The veggies were great, the crust, nothing to write home about, but could repeat. I want to come back and try some of the sandwiches. Somehow I have a feeling the Italian beef would be a hit. . .",review,AkmuMAICsEjMVkTa4QPhyw,1,5,1 +gV2APG0WE-pqR8i-ZBTDew,2011-03-14,xFwgknnuB4HWQXpQMI8zJw,3,Was an interesting way to spend an hour. Lots of displays but very dusty on the inside of the cases. Quite and peaceful; a nice place to hang out for awhile. I showed up about 40 minutes before closing and she didn't charge me the $2 but I donated $3 since they operate only on donations. The table set with rocks and minerals was fun to check out. I would go back again when I wasn't short on time and explore upstairs.,review,US3AZyMVZJxg_3Tzs4xoEA,0,0,0 +d83_qJwcOYOojQsapu1Z4A,2010-03-15,1kGLbhVGT1UPEhuOTFxAoQ,5,"I love this place. The food is clearly made with love and the folks there are so inviting and warm. Great vibe. Great food. Great price. You can bet the next time I visit Phoenix, I'll be coming back to Tiny's ;)",review,TCLluVVoGGHBQNIMSrVXJA,0,0,0 +XWvht_1ZLdK7EHJ3jo4q0g,2010-11-28,G3YTmOgMHdNLeDi6ryd_sw,5,"Kind of surprised myself, but I have to give them a five. Let's begin with the drink was excellent. I had some kind of pom martini that was one of the best I've had in a while. I ordered the sirloin steak cobb salad. My salad arrived two minutes after the people I was eating with, and it was taken off the bill....they also brought us a free dessert and apologized...really? That's good service. They may have even gone overboard, but I didn't complain. The food itself was excellent. I loved my salad, and it was a nice size portion. All in all, a great experience.",review,Bc2UjSePEGvqSdHvz2HKGA,1,3,0 +-sC66z4SO3tR7nFCjfQwuQ,2009-07-26,syDq3fN2s1F5BBWlHL73Lw,5,"Awesome carne asada, veggie taco and just about everything else. Delicious and very easy on my wallet.",review,hFG1Lira7tL_PElq6bdAAw,1,1,1 +jSRPuytD6HuRUDzxnQpvBQ,2009-08-05,VXcc8cQybJEhtjR55Ahiew,5,"This is the best record store in Tempe, hands down. Second best in the Valley (after Tracks in Wax). + +I have been collecting records for almost 30 years now, and have been going to Eastside for about half that time - at least since I could conveniently drive out to the east valley, and regularly since I moved to this end of town about 10 years ago. I remember the fish tank with the moray eel and the fact that the plaza they are in used to let them have twice the space. + +It amazes me that they have survived all this time. And, boy, am I glad they have. A good chunk of my collection, and even my current turntable, has come from here. + +If I ever won the lottery, I would probably spend enough money in one day here to keep the place in business for another few decades. Heck, I'd even buy them a bigger place if I could! This is one of the last truly independent record stores. I'm happy to support them, and I hope everyone else will continue to do so as well. + +Edit: They closed down on 12/31/10. I'm going to miss them. Hopefully they'll reopen somewhere else, even if it is only online. My regret is that I didn't have enough money to do one final run through there.",review,jKg43xVpvtcGrJruTbt77A,0,0,0 +YvQKDmSQqs-R7vPEWV2EiA,2011-12-09,ZBbtCim9tCRe12Bk0Wd5Yw,2,"Ok so I get the peanut thing, wood accented atmosphere, good service (although rather ""in your face"" at times) and the packed dining room / bar even on a Thursday night. + +What I don't get is the awful food. This was my FIRST (and last) visit into this franchise restaurant. How they convinced franchisees and the general public to invest and vote with hard earned dollars is beyond me. + +I took my friends 11 year old there after he played in a b'ball game and after looking at the menu and pricing decided to split the rib eye special $19.99. + +I got the fried pickle appetizer as well and was sorely disappointed in the batter and both of the ""dipping sauces"" (watery ranch and thousand island? I really couldn't tell). Even a franchise like H***ers makes them WAY better......wow. + +On to the main course. The baked potato with butter and cream cheese was overcooked or something? I have never had a potato that seemed to have been soaked in some type of brine and then baked? Kind of par boiled or something. Anyway the color was greyish and the taste like that of a fishy sea salt. + +Moving to the broccoli i was greeted by a palor yellow looking presentation. I couldn't tell if it was cheesy cauliflower or ? Wow the taste was again that of something really overcooked or under matured...YICK + +The last chance at redemption came with the medium well rib eye. Good sized portion and easily split between the two of us 20oz. Good wholesome beefy taste and great texture only to be squallored by a heavy Saltiness....not sure where this was picked up from but maybe by hanging out too close to the potato? + +I really am normally an amicable restaurant patron but after forking over $46 including tip for two to split some food and getting served what we did ...well you get my drift. + +Signed, + +NeverToStepFoot-InsideTheRoadhouseAgain",review,cfG9CzzrOchbD_PeKAWiNg,0,0,0 +iNvY0zAlaD_ye7Z6rHu-Ug,2011-11-01,nJLacp_9zDBMl9CvmLJ-PQ,4,"I have heard about this place for couple years before I actually get to try it out. Their guacamole burger is my favorite, and the Peanut Butter Malt was just amazing!! First time I tried, I ended up getting another one to go. They also have corn beef sandwich on Thursday, which I haven't get the chance to try yet. Only thing I dislike is that they close at 8 pm which is a bit too early for me.",review,Gwzz8Z8-Xdfsum3aBOI9bw,0,0,0 +GZ8KctCJxGzYZ7aAdapprg,2009-12-20,kYH4Pdai3mvWMgSaxdkrQQ,1,"Not recommended if you're not white. For me, it's the third time somebody threw out racial slurs at my group. I am beginning to think the place is for rednecks and the like. D&B bowling lanes are better.",review,AIJffk467kHfAE8SDq3nxQ,0,2,0 +PwxvN0SnAGPdqXdNEYVT3g,2012-12-12,fWb1J5cbxOX9VQwuateWNA,4,"We went here after the Rainbow Festival and it was such a great place! The food was great, the service was awesome and the patio is a great place to enjoy your meal! Bliss has made it to my list of places to eat downtown!",review,sG3_fRCEROn0-9TzlawdlA,1,2,1 +RQWliUrWic_b5FZEj3JThQ,2010-01-26,htTKwIxZjEthQsJzPiSbiQ,1,"Let's talk about failure, baby. + +Hey, if your idea of salad is punishment via tasteless lettuce and mealy tomatoes splashed with the most generic, industrial vinaigrette, you've found just the right place to BDSM your tongue. Go for it! + +I ordered Capellini Checca, and I had it substituted with Spaghetti (I like more girth re: pasta). What I got was the limpest pile of spaghetti that couldn't be revived with a lifetime supply of Viagra. The DOA pasta was topped with a pathetic sprinkling of more mealy tomatoes (the menu says Fresh Roma Tomatoes- these had the texture and taste of a dying horse's ass moreso than fresh produce). The faint, acrid garlic tasted like it came out of a shaker bottle and not a bulb- and motherf*&k, respectable Checca should have more than 1/16 teaspoon of microscopically chopped basil. + +This place makes Old Spaghetti Factory look like fine dining, and I would rather starve than be even close to that chain restaurant of culinary doom. Hell, this place is the disowned, cracked-out junkie brother of OSF. It's really *that* terrible. + +I gave them the single star only because the management was incredibly lovely, and did not charge for the unforgivable disaster masquerading as edible food worth paying for.",review,YweXL7KPvt0sCc0kdheXqg,6,12,13 +L7i9j66ph3Uz5i56OXIICg,2010-09-06,I0FMku71jcaIRqZKqhHNAg,3,"Typical Taco Bell with typical Taco Bell menu (other than the Popeye's Fish they serve from the same kitchen/counter). Not sure if some of the people in the kitchen could speak English. One employee on break sat in front of a small TV in the seating area which was VERY LOUD and ANNOYING. Every table was dirty despite it not being very busy, and the bottles of condiments at the ""fixin's"" bar were filthy. Can't beat the prices, though. As usual, I left ""stuft"" on two bucks.",review,_FbZ1gXZL349iiz5D8gz2Q,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2012-03-18,u6K8yVFxf1DlrgOG3L7v4w,5,"This place is awesome. + +A cornish pasty is like a big calzone stuffed with whatever you choose. They have many choices and all regular choices are also available as vegetarian entrees. These are HUGE so come hungry! Their tomato soup is also good but I would definitely stick to a pasty if you want a delicious meal. + +The place is pretty divey but in a really great way. I have also heard they are expanding so those of you who have complained about their cramped quarters may find some reprieve soon. Personally, I like the small dark divey feel. + +They also serve Rogue beer which is delicious if you haven't tried it. + +I like this place so much I eat there whenever I am in the area, which has prevented me from trying many other places nearby but I cant seem to bring myself not to go to Cornish as it is so good every time. + +Highly recommend it if you are in the area.",review,JiSt1mjxvz-nTYHk3A2vbg,1,1,0 +dZb1V8knqTUT1o-NKZAl1Q,2008-09-03,QwO8t8GRnnaotu4Tyqge0w,5,"Huge fan of Bikram yoga! It's a 90 minute, torturous-at-times, sweat-filled workout but when you are done, you feel insanely amazing. The feeling continues throughout the day leaving you in complete zen....Road rage? Gone. Annoying food cravings? Zero. Jeans? Fitting awesome. You really must try it, it can completely change your body. + +There are a few places in the valley that offer Bikram, most of them exclusively rather than in combo with other methods of yoga. The Bikram Institute on Miller and Indian School is where I first tried it, and I like it the best so far. They offer classes throughout the day and later in the evening as well. Like other studios, this place offers first timers a week-long pass for around $20. What I really like about this studio is their instructors and the fact that they keep their room darkened throughout the entire practice. I've have been going to another studio lately (for their first-time student deals) and their instructors bark out instructions non-stop plus they keep the lights on the whole time. So when you're staring up lying in your relaxed state, your eyes meet the glare of the fluorescent. + +I'll very likely return here after I've exhausted the new student deals at the studios around the valley. Yoga can be expensive!",review,gEnU4BqTK-4abqYl_Ljjfg,2,5,1 +Xh7lpLo9TxodWgV5VdWeiA,2012-10-07,V-MMwDZ7GcxAsiIDqW7tpw,3,"In 1999 the AZ Republic Voted Abacus Inn Best Chinese in the Valley. That is sad because Chinese can be so much better. + + But I do have to say that Abacus Inn does something nice that I don't see too often in other Chinese Restaurants. They give you hot tea and water and fresh fried noodles with sauces when you are seated. + +I had the Yui Shan Chicken, it was a fail because of the inedible Shiitake Mushroom stems in my dish. Trying to eat the mushroom stem was like trying to chew a car tire but, I do have to admit the sauce was more developed than any sauced dishes I tried from the surrounding Chinese Restaurants including Bamboo Cafe, Ginger China Bistro, and Shangri La. I LIKED the use of cucumber in the dish was light and tasty and successful. Unfortunately the white meat chicken was dry. Maybe a THIRD STRING cook was on the day I was here and maybe this dish is normally prepared better? + +The sautéed spicy beef was more successful. The beef was very well prepared and unlike the Yui Shan dish this Spicy Beef REALLY WAS VERY SPICY. I am used to a more developed and balanced Szechuan sauce so I wasn't a fan of this dish from here. But I do note this sauce was better than what you'd get from surrounding Chinese Restaurants. + +The last time I was here I had the sizzling rice dish and that one impressed me because they cook the rice quickly in a very hot oil and puff the rice. + +It's a toss up between Abacus Inn and Shangri la . Abacus does some more impressive stuff but Shangri la does cook moist chicken.",review,p7dvahRPZIWL7T6pFA_0dg,1,1,1 +cN6aBxe2mQvrQlzk26LyRQ,2008-10-31,ssxtRkC4mLcnxgdmbk7Z9A,4,"OK, let's face it: there are better steaks in the Valley. As a matter of fact, if you just took the steak at face value, it might not even crack the top 5. + +But Durant's is not just about the steak, or even the food. + +Durant's is a classic in every sense of the word, the type of place that can rarely be found anywhwere in Phoenix. It's also a lively and classy night spot, something that didn't exist anywhere in downtown Phoenix for years, and as several new places have developed around Durant's overe the past few years, it has remained consistent and cool. + +And that's what Durnat's is really about. Yeah, the steak is pretty good. The seafood's alright. The bread with the hot garlic butter is awesome. But Durant's is just COOL. It's classic Vegas, Rat Pack-style cool, and you feel it from the moment you walk in.",review,VBEbhE0ISjg6xowGNiGmgQ,6,4,0 +QnAzW6KMSciUcuJ20oI3Bw,2012-09-30,xa58vx5XpKtWWX0ECNvcSA,5,Excellent food and service!,review,WeYFVTBNYF1s6FzIv1F0Lg,0,0,0 +tdcjXyFLMKAsvRhURNOkCg,2010-01-30,G2Ahsc-1wle3uJ4B1Fv1aw,5,"GREAT PLACE TO HANG OUT AND WATCH THE SCENERY +With a little help you can drink & choose from about 25 beers, 8 scothes,10 whiskeys,8 Really good tequila's (just ask me) along with the every day vodka's & some pretty impresive wines (or whines). +Don't miss this little gem in the rough & com listen to music or watch sports or just drink. Oh yea the owners are OK also",review,MtX0WZ4bqMfFuYvtupgRqg,1,1,1 +SkNUbFJiJtbZjY-S_S0u7g,2011-07-06,sX_3z-bk_rzg8ZYwAJ3Reg,5,"Love this place. Great staff! Friendly, fun and knowledgable. The food is always good.",review,oJFtaqTm4iAbyDlfErusPg,0,1,0 +45puCRQ6Vh_IIAy7kkfFDQ,2006-10-13,dPMSkbChmrUrGIviwHuLZw,2,"Place was great the first time I went, Second time one of Dan's fair weather buddies (thinking he was big shooter) disrespected a good friend of mine over a misunderstanding that could have easily been solved through civil conversation, but he tried to be Mr. Big Shot. + +The food was good, but not good enough to put up with that crap ever again.",review,5E193w76Qlhoi1gkyakW2A,0,0,0 +CBwfqbMvp-_l9Klx1wra2Q,2011-09-21,KgXMVdK6NEMtwKSWSLxjqw,5,"What started out as a simple attempt to find a perfect birthday present turned into a life-long relationship with a fantastic jeweler. +I wanted to get my fiancé (girlfriend at that time) a simple diamond pendant necklace for her birthday and could not find anything that even came close to matching her style. I searched the internet for days and reluctantly went into a few jewelry stores hoping for the best, but expecting the worst. I, like most people [guys] out there, had a bad feeling in a few stores I went to. Pushy sales people looking for the upsale, and sky high prices. I was getting very discouraged about the process, but that all changed when I came to Hyde Park. +The super friendly staff made everything easy for me. There was no pushy sales process or anyone trying to upsell me something I didn't want. They immediately offered me a bottle of water and started to talk to me like a real person. After a few minutes of speaking with a very lovely woman in the store she suggested we think about something custom. At first I was thinking ""here we go; this is where I am going to get stuck!"", but I was all wrong!!! +We looked a few loose stones and I got a great education about diamonds. I went home later that night and did some research on the internet and found that the prices we as good, or better than any of the big online retailers. I could never get my head wrapped around buying a diamond online, sight unseen, and I am so glad that I found Hyde Park. + +In the end I have used Hyde Park to create a custom pendant diamond necklace that my fiancé absolutely loves (it is perfect on her), and I also used Hyde Park to get the diamond for the engagement ring, as well as everything else to follow. + +Want to know what service is all about in the jewelry business, check out what Hyde Park did for me. I picked out an amazing diamond for the engagement ring (chose the loose stone again) but had no idea what kind of a ring my fiancé would want. So Hyde Park said ""how about we just put it in a classic Tiffany solitaire setting as a temporary setting and then after you give it to her, you can come back in together and pick out the perfect setting and wedding band set"". I was like, seriously?!! You can just do that??? + +In the end Hyde Park will be my jeweler for life. They helped me create the perfect simple birthday present, and took that service all the way through doing a custom engagement ring and matching wedding band set. This is the jewelry store for any guy who wants great service, great prices, and like me, doesn't have the first clue about how to make the perfect decision. Just let Hyde Park take the stress out of it like they did for me!",review,2IaQQuZtbZKhOcNwYJOVuQ,0,0,0 +r0cKkJSTFXuGhBu5823NCQ,2009-08-17,Xp1lHfEkymPCCIkBiJ6SYg,5,"I have concerns about Heirloom. Not about the food, which is fantastic (not quite 5 star fantastic, but 4.5 star fantastic). Nor the service, which is friendly and helpful. Nor about the atmosphere (well, somewhat about the atmosphere...it's quite lackluster). My concern is that Heirloom claims to be fine dining for our current economic times, when $50 entrees seem obscene. But what they've done is create a menu of less expensive small plates where you need to order at least 3 per person to be totally full, so you end up spending as much if not more as you would at other high-end establishments. On my visit, the place was practically dead. Granted, it was a weeknight, but I can't see how a place can survive with only 3 of its probably 15+ tables occupied. Especially not in such a high rent location, where restaurants have dropped out like flies. The menu changes weekly, which is really nice if you go to a place often, but who could possibly afford to come here often?! If you do go, they have a $25 off coupon on their website. Not 25 percent...25 DOLLARS! I would love to return to Heirloom every month to try chef Michael DeMaria's latest culinary creations, but that's certainly not within my budget. I'm afraid others have the same problem and that this place won't be around for long. Therein lie my concerns, because I really did love my meal!",review,OQMOgqS1NFIyAW4i66iDYA,1,0,0 +gWQlTK3o29rZGlw2YLUnhA,2009-03-11,b5Sw9Ayk9-n1WizPMINxEw,5,"I don't drink a lot of coffee, but I'm a fan of tea. Especially strange tea that I probably can't pronounce right. Oh, and I like it when it smells like scotch. Yep, I'm a fan of Lapsang Souchong. + +But I'm not a fan of ""foofy"". And that's one thing that Tea infusion is not. It's not foofy. It's funky. It's fun. And everyone who works there is really friendly. + +Beyond the teas, the food is good, too. I don't know that I'd eat there every night, but it's a wider variety than I'd expect at a tea place. + +This is a regular stop of mine. Makes Tempe Markeplace worth it!",review,yNVGe_z9hHxbvpa2Ns2JIg,1,2,1 +xfk9eY8gmwn8qsbyd-W6lQ,2012-01-19,tS7Q1WBuRtK78L5dykXykw,4,"""You don't need no teeth to eat our meat"" + +Haha, what else needs to be said. + +This place is a solid BBQ joint. I'm from the southeast and I love pork BBQ. I was raised on NC style (from southern VA) but I appreciate all BBQ's. This place is pretty great. + +It's inexpensive. Decent customer service. Cheap beer. Very little fat/gristle in the pulled pork which is something I pay very close attention to. + +If you're looking for something quick, easy, inexpensive and delicious give this place a try.",review,4gIi4L7e870qFbnRemaoBA,0,0,0 +46xWJ6rKZxnrSLWro6EOlA,2011-03-06,KcJf5J1PpNRMmXFnYE88HQ,4,"We've been to the Hub twice now and I like it. I'm a little afraid to review it since two of the places I've reviewed in Ahwatukee have now gone out of business (RIP Villalpandos and Grill Wrap Cafe). But hopefully neither of those are my fault since I gave them good reviews. :) The first time we went there I had the New Yorker (Hot Pastrami, Hot Corned Beef, and Cole Slaw with Russian Dressing on Rye). It was pretty good! It was piled high with tasty meat; but not so high like at those New York delis you see on those Man vs. Food type shows that you know there is no way you could even eat them unless you are a snake and can unhinge your jaw, yeah, not like that. My boyfriend got the French Dip, which disappointingly was not able to be on the French roll because they were out, but he said it was good anyway. They seem to be having a bit of trouble figuring out their prep. They always seem to be out of something, both times we've been. Either a meat or one of the kinds of bread. I don't know if they need to simplify their menu or if it will just take some time to figure out how much of everything they'll go through in a day; but I hope they figure it out before it's too late. The second time we went I had The Godmother, it is REALLY good!! That hot pepper relish and the garlic sauce TOTALLY make it amazing. It's super tasty! The boy had the Meatball sub which was really good also. It was not really a classic marinara, a bit spicy, but the meatballs themselves had a lot of good flavor. It's pretty cheap there to make it a ""meal"" with the drink and chips and of course the cookie always comes with it, which are really traditional and tasty. The service is really polite and friendly. You can tell they are really putting their heart and soul into this place to make it work, and I really hope they can be successful. We'll be in to support them when we can.",review,krOd6-nWhQTczGwR8gtwiQ,0,0,0 +_A4zWsLoLbjozEJYHLDx0Q,2011-03-19,s7R8lUXWIoNVsgpRSK9qjw,4,"Had to go to Gila Bend for something and while we were there decided to stop and get something to eat. Stopped at this restaurant and we're glad we did. We ordered the large meat lovers calzone and wings to split. The pizza dough they use for the crust is very good. Nice flavor, slight crispness and not doughy. I'm very particular about my wings and when I verified that they fried their wings we ordered some and we were pleased with them as well. They made them as we requested, slightly crispy, because there's nothing worse than a soggy skinned wing that's like chewing on a piece of rubber. Our server, can't recall her name, was very friendly and always checking back with us to see if we needed anything. + +There was a group of men a couple of tables away that ordered pizza that looked awesome. Another table ordered spaghetti with meat sauce and what I think was a very large looking burger with fries, which they had the same idea as us, split to share. The serving of spaghetti with meat sauce was a nice size serving as well. Another patron ordered dessert which, according to the server, was a spimoni cake. It looked really good too. + +If you are ever going thru or visiting Gila Bend for any reason, I would suggest that you stop here.",review,Y2FcksTOoJWzq0Nf_sOwSw,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2012-03-28,me1klmvQmdXtVkr1XuYL_g,5,"We came here for lunch and were a little leery when we first walked in. I had the cream of leek soup, my mother had the sausage salad, and my aunt had the Greek salad and we were all very impressed. We took a bangers and mash pasty to go, but we are so full, that it'll be awhile before we can try it. The service was a little slow, but the quality of food and atmosphere made up for the inconvenience.",review,DLMtzSl1Z9-0LCzsvs4Qcw,0,1,0 +XkNQVTkCEzBrq7OlRHI11Q,2011-04-21,9AeVfMre2OPCfR70i9pWBQ,3,"My son and I were in town and went by Pizzeria Bianco and didn't want to wait 2 hours, so while on the way back to the hotel, my son used Yelp and found this little gem. The pizza was pretty good, and I had a pasta special that was quite good. The owner was very attentive. + +The nearby table had ordered a large pizza, and they were served a slab that was 1' x 3' on a wooden plank. Very Impressive! + +The only negative is that the guy cooking the pizzas should let them get a little browner (maybe even a little char) to make the taste more authentic.",review,aPGD0yNHYpFj0NH-ZUkMpg,0,1,0 +eGevCRobYnA_HSj60sEWvQ,2010-09-06,mY_UUBJY5GWxLmRYh4Lc4g,4,"I had always heard great things about Pita Jungle, but it wasn't until a recent visit there that I became a believer. Really great food for a reasonable place!",review,FbExpUiiAP6NiebgsN8zzw,0,0,0 +3oZcTGb_oDHGwZFiP-7kxQ,2011-10-09,rNQxXMe3NMXiP7pkMg4SKw,4,"This was our second visit to Chelsea's Kitchen. They have valet parking available, but there is lots of self parking in the same parking lot. It's quicker just to self park. + +We sat indoors both times. When the weather is right, the outdoor patio is popular, but I prefer indoor seating. It feels comfortable sitting inside. The way the tables and booths are set up it feels comfortable, and not crowded. The spacing is just right. During peak times, there is a full bar inside to relax while you wait for a table. + +We started with tuna tartare, guacamole and chips. It was a good choice. We also ordered some beer. The beer choices were limited. The table next to us had a pitcher of sangria ... that looked like the better choice. + +For dinner we had the short rib tacos and the ahi tuna. My son had the kids meal mac and cheese. I've had the short rib tacos both times I've been here, and it's outstanding. The braised meat is tender, and served with corn tortillas, beans, guac, tomatoes, etc. All of our meals were good, but the short rib tacos were the best. + +For dessert we shared the red velvet cake. It comes with a small scoop of vanila ice cream. It could have come with a little more ice cream. The cake was moist and not too sweet. It was gone in a minute. + +The bill for four including drinks and tip was $120. + +On the way out, they have chocolate chip cookes with sea salt sprinkled on top. A nice touch. My son grabbed two cookies, and finished them on the drive back to the hotel. Great dinner!",review,xA57BEqYJSCYV1UsZexSjw,0,0,0 +RLjA7TBXJfyqDfPuVCcrtQ,2009-10-21,Y9D0cHkxYrpfftEft0Pkjg,3,"After checking into our lovely suite at the Montelucia my hubby said he was in the mood for some chips, guac and a margarita. I think he had mistaken Scottsdale for Mexico and unfortunately the restaurant at The Montelucia (Prado) had none of the above. Instead we enjoyed a glass of wine (Riesling for me), a bowl of gazpacho and shared the snapper ceviche. Service was a bit on the slow side, but the tasty food made up for it... + +We ended up back at Prado the next morning for breakfast- we were quite starving after hiking Camelback (or part of Camelback). I was a bit disappointed with their breakfast menu. They had very few things to choose from besides the $25 breakfast buffet. I wasn't in a buffet kind of mood, but it didn't seem like we had a choice. However, I seemed to get the most out of my $25 after stuffing my face with an omlette, mini breakfast burrito, fruit, yogurt parfait, etc. Our waiter did a bit of a disappearing act, but fortunately we didn't need him much for the buffet. + +They do have some good food, but they could use some more options...and better service.",review,ARe8Nr_YehB2ubsGJhZ-hg,6,8,2 +Trar_9cFAj6wXiXfKfEqZA,2011-02-06,tkvCPr0_DeBZXd_vndvUGw,5,"My husband called me from work one day after a coworker had brought in several dozen bosa donuts and he said, ""I've just had the best donuts I've ever eaten"". Me, being a pastry lover, had to give it a try. We went early one morning and got one of every donut they had, they were awesome! The place is a little hole in the wall and had I not been told to go, I probably would have never gone in. The donuts were soft and fresh, the cinnamon crumble one was my favorite, and they were also reasonably priced. We live in ahwatukee so it's a little out of our way, but we will definitely be coming here again!",review,bvYk98zUE61KoWifshskpw,0,2,0 +gXkv89nyNlFyrEdblB3MKw,2012-11-09,erbfYEbSAN8VTFGPccX2iA,1,"The theater itself I have no problem with. Its the fact that we came out of the theater to a broken out driver passenger window, my doors unlocked and some Dumb Ass broke into my car and didn't even take anything. Really?? +I should've known better given the area but it was the only Harkins showing the movie we wanted to see. Security was nice enough to leave a note on my window.Can you believe there's No Cameras in the parking lot at all!! Ugh!!! Disappointed customer to say the least. Will not be back there that's for sure.",review,rnV_UEaLHRH_WFbJQmDwWg,0,1,0 +Zg-C1aYcoR2L5OIrA01MkQ,2011-04-26,472IobW-7RL_XbY5Lvt_FA,3,"I am a sucker for a theme restaurant. I have been wanting to visit this place for a while because of their whole gimmick. When you arrive a nurse checks you in, gives you a hospital wrist band, and dresses you in a hospital gown. Seriously, I love a gimmick more than the next person but the Heart Attack Grill is 100% gimmick and only 60% good food. The menu consists of burgers which vary only in the number of patties, french fries fried in lard, shakes, pure sugar coke, and PBR. They have a strict no sharing policy which completely bummed us out because we wanted to order the huge 20 patty burger and split it 3 ways. We ordered 2 single bypass burgers (one of our trio boycotted the burger because of the no sharing policy,) all you can eat lard fries, a vanilla shake, full sugar coke and a PBR. The burgers were ordinary, the fries were ordinary, and the service (aside from being dressed as naughty nurses) was ordinary. The only win was the delicious butterfat filled vanilla shake. + +The bill came to around $30, which is a bit pricey because remember only two of us actually had food. Yeah, yeah, yeah, I get it. It is a gimmick. Heart attack, fat, lard, waitresses dressed as nurses, cook dressed as doctors, sugar, beer...whatever. It gets old pretty fast.",review,ytr46wNbedr8-iqSZngl8g,7,8,4 +t30AlUH_aankqRnsJ0wxpg,2011-12-23,6sJvjJXQtjJSjl65LEXEZQ,5,"I took my daughter there to get her nose pierced for her birthday, they were very nice and professional and made her feel comfortable. Its a nice shop and they were very friendly and did a great job. I will definitely recommend them!",review,O0B1CSVV8HQBN2ruLKckdg,0,1,0 +8qrICL2tS2Rq7b5gxUdQwQ,2011-01-31,WAt-KGkRrvH3shNa6UxbZA,5,Best Thai food!!! Order the dry garlic chicken.,review,zqfNAOCE1s_z-21Qs1wdeQ,0,0,0 +I4pSBXlKdR6assqRdVjtMg,2012-07-07,cx5hOockrnlbCMDpQ6_ZGA,1,"Tried Shorty's today, sadly it will be my one and only visit. To begin service was mediocre at best, portions are small(I thought my steakburger was a slider), and there was also the black facial hair that was in between the cheese and burger. That's when customer service went down the drain, all we got was a ""that's weird"" and an I'm sorry. If your running a joint and a customer finds a big hair in their food you do whatever you can to save that customer and make them want to come back. Something, not just sorry for your luck. I will stick with RocketBurger, just up the street, cheaper, bigger portions, tasty and most important, they got great service. If I had to sum it up for ya in a few words I'd say""DON'T DO IT""!!!!",review,_RtZvDI6yQ2_NJDxm0aQAQ,0,2,0 +iNvY0zAlaD_ye7Z6rHu-Ug,2012-05-26,X4gglhD52hxC7Xyc80WMLQ,4,"I have heard great things about this place and I had purchased one of those online deals to try it out. I was not disappointed. The only reason, I didn't give it 5 stars was because I was freezing. But I had a small chocolate milkshake and the special of the day, philly cheesesteak. My husband had a cheeseburger slider, chili cheese dog, and french fries. We really liked the food. If you want the sliders, make sure you order at least 3, I would say, because they're kind of small. + +My husband is from Illinois, so walking into Chicago Hamburger Co, was amazing. There is so much chicago decor, it's ridiculous, but since I've only been to chicago once, I liked reading all the signs and seeing pictures of former Bears players. + +We will most defiinitely return.",review,dT5JHk1aJQhOty1kwTitHA,2,3,1 +onwUqByAIhtkyJsEITV5lQ,2012-10-22,BszCQJ1EQKoifMKZ2Wnmlg,2,to make a long story short --- we had a coupon for this place. We know its an ASU hang out but the coupon was for spend 50.00 get 25.00 off. Ok service was not good --- when we got the bill the pizza and wings were charged separate -- not right -- it was a together order per the menu. We had a pitcher of beer and a single beer plus food -- bill was almost 70.00 -- we gave the waitress the coupon -- she had to change the bill for the pizza and wings --- then she came back and stated the coupon had a 18% gratuity and service charge of 13.59. Based on what ??? that actually ate up the coupon and we ended up paying full price anyway. Never again --- and the food was fair --- not a good place to return to -- ASU take it away -- its all yours -----,review,oVEbr2jtirosJIenFkWenw,0,0,0 +hkKvb6oXxn8ygoP5fFln1g,2010-10-16,I35ctfDb1kmPmb2dRyqnBA,5,"San Felipe's Cantina will always have a special place in my heart. I've been coming here since it opened, and I haven't been disappointed yet! Here's some of my favorite things about them: + +Happy Hour - San Felipe's has one of the best happy hours in the valley. Their drinks and appetizers are half off from 4pm-7pm, and my bill for drinks and dinner with friends is typically $20-$30. You can't beat that! + +Service - I usually sit up at the bar when I stop by, and they have some of the friendliest bartenders in town! They always make me feel at home when I stop by, and they're quick to serve me during the late-night hours. The managers are also really good about hanging out and chatting with the customers to make them feel special. It works! + +Food and Drinks - My favorite drink at San Felipe's is probably the Mexican Iced Tea. It's a long island iced tea, but they use passion fruit vodka instead of the traditional unflavored vodka. As far as food goes, I REALLY like the baja chicken wrap, the sonoran chicken sandwich, and the steak burrito with green sauce. A quick tip - ANYTHING with the baja sauce is great :) + +Overall, this place is a lot of fun, and I really like the laid back vibe. I'll definitely be back!",review,SHWFXq2xACjJUuoPAvztAA,0,2,0 +ntN85eu27C04nwyPa8IHtw,2007-03-03,gagVakEXSO-J6mw4DEZAdA,5,"The PERFECT Breakfast :) If only I could have this every day :) + +Matt's is all you want a breakfast spot to be...cute, friendly and the most amazing food out there. + +I highly recommend the hog and chick. You just can't go wrong with eggs*, bacon*, home fries* (get the home fries, not the hashbrowns) and their toast* served with Terra Verde Farms preserves. * = best ever, ever, ever + +I could write on and on...you've seen the reviews. Just make sure to make it there, you won't be sorry, you'll be addicted!",review,saNCRlGYQEBkgpvalJsvRw,0,0,0 +qK71R41F3DX1uGGErUcJkQ,2007-05-24,rJeU7P4h9fQdGlMeHxcf6Q,5,"North Valley always has interesting articles to read and cool interviews with people like Alice Cooper and Young MC (Bust a Move!). + +The magazine covers the entire north valley, which is very spread out. And you can find it in many different places, from Kierland to Anthem. It's free, but you can also get a subscription online.",review,0CMz8YaO3f8xu4KqQgKb9Q,3,0,2 +Eq3gzgiRIGYtubbZw1mDlQ,2011-11-01,ARQ2vrTqImZw4UAkp4rJ8Q,5,"Ive been eating here more and more often lately, and I like the food. If I want Mexican food, and I am in the downtown chandler area, this is where I stop in. + +The food quality is consistent. Being a creature of habit, I get the same thing every time I come here. + +They are also serving cupcakes. Looks like the change the flavor every once in a while too. I have had a margarita flavored one, and a dark chocolate and chili one. Tasty.",review,KYCW5xpBif5eqt-jvIHTdw,0,1,0 +EmlgWjs1ZzZEpDjZCSPLmw,2011-12-20,NXCEqBrbwMvrsCY9Huidxw,2,I liked the concept. Staff was very nice. Food tasted like it was warmed up in a microwave and cold on top and warm on the bottom. After we watched our movie we wanted to purchase tickets a week in advance for another movie. We went to customer service and asked them if they knew if TinTin would be playing on Weds. (we were there Saturday night). They told us they did not know and we would have to check on Weds. Whaaat? They don't know what movies are playing the following week? I was ticked off... their website is no better. It is confusing and hard to order tickets. I searched for tickets for tomorrow and it says showtimes not available. Sure seems like they don't want anybody to come see any movies. After spending $100 for food and movie I think I will try a different place.,review,Rr1q5BfuV9u6sJX98aOgCw,0,5,0 +K845ZDttFfx99zQ-0aE2tA,2011-02-10,L-xYMmidVKfL5y018ny8FA,1,"First of all, if you go here, PLEASE PLEASE PLEASE make sure you check your bill when it comes! honestly. We went here 3 times. all 3 times we were over charged.... either the menu's were out of date, or we were ""past happy hour time"" (BS)... oh and the other excuse... we just changed our menu. blah blah blah P + +then they always have to ""get a manager"" to come to the table, which takes forever! (I am sure they hope we leave) PLUS! THE SERVICE SUCKS ASS!!!! this is a definitely bait and switch! + +1st time it happened we just dealt with it, and was like, whatever... + +2nd time it happened, my daughter who just got back from deployment (Navy) wanted to do something special for us and took us all there. My husband looked at the check and noticed it wasy CRAZY over what we thought as we were there for happy hour. The waitress had to get the manager which took over 20 minutes, (gimme a break) finally we took a 30 dollar gift card because we were so sick of 'arguing about it. We discussed it about 20 minutes and we were finally like, whatever... + +3rd time... took a friend there. again we ordered devils ale. on the menu it was listed at one price... when we got the bill, it was almost twice as much. We waited for our server to come back, she never did, she totally ignored us. I gave her a dollar tip (which is NOT like me, i tip very well, too well) and I wrote on the recept why she got such little money as a tip. + +If you are looking for a fun time go caddy corner to San Filepe's that place is fun and the staff are friendly and fun. We much prefer there, we wll never go to Caddilac Ranch again. They say 3rd time is a charm, Well, it is... its a charm to know you are overspending and its a big gimmick and they dont give a crap! + +oh and if i didn't have to give a star, i wouldn't have.",review,-Hv0mbeVlO2nB-6cYcfFMg,0,3,0 +mxrXVZWc6PWk81gvOVNOUw,2011-10-08,GoRNaB9k62cUlZ3ovQ_2Ww,3,"The food was excellent ... the service not so much. + +A colleague and I took one of my clients here for a business dinner. The atmosphere was great, the food was outstanding but the service was embarrassing. + +It was a fun, Arizona type feeling restaurant and made quite the difference for my clients who are originally from Scotland. + +I had the roasted shrimp and grits. The grits were the best I have ever had (sorry North Carolina!). The shrimp portion was amazing. The dessert was great. I was surprised to see the offering of huckleberries. + +Sadly, the server forgot quite a bit of things. My client's wife ordered a second glass of wine to have for dinner, which was forgotten. We also asked for corn bread - the server forgot and brought it with our dessert. He tried to explain that it is made fresh to order and that is why it took so long.",review,n3l3CunViKHCe7b6iWApEA,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2007-11-16,0EgVmQd8WALubRXahlFLpw,4,"Yummy! +Worth the wait. Yes, it is all the hype so get a drink, enjoy the scenery and munch on some fabulous pizza. Not one thing I wouldn't order. Have fun and have a slice for me!",review,qaAmAU9T_t84UDGiBI98sw,4,4,1 +JokKtdXU7zXHcr20Lrk29A,2010-09-20,oQiCtjVJK5u3zXC_auSp4g,5,"Go here if you live in AZ. It fills the void in my life being a native Oregonian missing Deschutes Brewery. + +I must admit though, I've only been here once because its a difficult place to dine with a 15 month old child. Might want to get a babysitter for this one.",review,5bs9-7Fwjuv4HiQNFVZTEw,0,0,0 +zyYRWnimLbQt9aCCI_2MZw,2012-10-15,OevE_jMROphOA940QOPivg,5,"Their emu oil is great. I use it for inflammation of my jaw and shoulders, it's wonderful. I highly recommend it. We buy it at Fresh Vitamins in Mesa. No dyes, fully refined, I love it.",review,ZLrgVN95FOY8qptME4G9nA,0,0,0 +hBHkHYOk_E-6EgObC6MTdQ,2012-04-14,pa7NYMNB-e98aJg-91gxfg,3,"The problem with a place like this is the hype. Five stars from yelpers, must be amazing! But sorry, I've had better Eggs Benedict. For me just too far to drive for the mediocre food and marginal service.",review,D2NKLp8yrK-49RKslrOnpw,0,1,0 +ggKTLa0xVz-WGBGatscMBQ,2011-05-01,TfI2Q-lrcBLYo4YciFWx9g,1,Worst customer service of any grocery store I've ever been in. EVER! I'd rather go to any other Safeway or any other grocery store. I'll drive the extra 10 miles just to avoid this place.,review,HPzapqMz5oTL1MUPs4tAfg,0,1,0 +o9nCXNC14VScabiy2bftgw,2012-10-18,e4DLPi8AEI_HAjEK0n46kQ,4,"I'm never a fan of these brestaurants but this one makes up for it. And yes, I am a chick. + +For starts, the girls are wearing uniforms that actually fit them. Nothing is popping out and almost touching my food/beer. Second, the girls are actually clean looking - not sporting the greasy or 'I just got out of bed and look at my nappy hair' look. The service was excellent. Quick, accurate and friendly without.. weird friendly. + +Drink prices were fair even off happy hour and the nachos were great. They actually layer the meat/cheese throughout which is so nice compared to most placed that just dump the flavor on top leaving you with nothing once you peel away the layer of 3 inch thick crap. The rest of the food looked like regular bar food. + +The patio is awesome, they even have a fire place and water/ fish pond thing. Total chill place except for the weird-eye-balley-men here. + +We watched a couple walk in and sit across from us at the bar (it's like a square shape). The guy left to use the bathroom or something and this random eye-baller came up and proceeded to not only hit on the chick(who was not as hot as the waitresses) and proceeded to tell her how he was a Dr. and blah blah. Needless to say when the guy returned they almost got in a cat fight. Sad part about it, Mr. Dr. was wearing holey Old navy t-shirt... That's Snottsdale for ya... $30k millionaires all over the place.",review,ZZpXfbQn0nU22OGDW15TRA,0,0,0 +niPFXq4r2mc0zFlOpWV3Eg,2011-07-12,EwTLOQk1GNiXAGl9WjcDvA,3,"Great authentic Greek food; excellent service. We ordered a combination appetizer plate (hummus, dolmas, pitas, olives, spanikopita, etc). It was a nice variety and filling for two. The flaming cheese is festive. The desert was a flaming custard that was just ok, but the ice cream and carmel made it better than average (plus the flaming part is always fun). Only thing missing was breaking plates. I'd definately go back if craving greek.",review,YCaqPOlG6CfKOSXUGAKicA,0,0,0 +3n9mSKySEv3G03YjcU-YOQ,2010-03-02,nUAtBULof5YtZXQWjzEEKw,5,"I've only been to Postino's twice, both times for breakfast. And both times, I ordered the same thing: french toast. I'm not a big french toast kind of guy, but I absolutely loved them both times, and I look forward to the next brunch opportunity there. + +Might want to get here early though - we arrived at 9:30 on a Sunday and there were only a couple of tables still open. By 10am, there was a significant line.",review,UjElHRjwqj3-QLgy0z48fg,0,3,0 +rua7dvP6-SUXL4N8RTY--A,2011-06-03,nOO3ucT1scy031sCbTuN_A,2,"Please for the love of God, don't microwave eggs. + +If not for that, this review would be a 3 or 3.5 stars, but seriously, eggs don't like microwavization. Just ruined the whole panini egg sandwich for me. + +The coffee was pretty good. They had a selection of 4 going from light to dark which is nice. Lots of places have you choosing between a full city and a french which is frustrating. + +Service was very friendly, but a tad slow for the number of people that were working there. I think they were focused on a lot of large pickup orders, but when you sell bagels by the barrel, you should expect that. + +Saw some people picking up said bagel barrels, they mentioned how their office would cheer upon their arrival and heap laurels and praise on their shoulders. They boasted that their upcoming performance review was assuredly positive with such accolades. I smiled at them and wished them the best in their fantasy worlds. + +Scottsdale methinks is full of fantasy in this desert oasis.",review,-Q0yfgIXTRU2CSZNf4mcog,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2011-06-10,XYzSMX4Zzag9q_1t5fuOAw,4,I have been going here sense I was a kid! They have the best food that is not comparable to anything else! It is a must try restaurant!! I always leave pleased :),review,xox0n6mXqq9i4NoGGxOGUA,0,0,0 +C51OyHyQUZfGom7Rb5FV8A,2012-12-26,E_6lHC4oB-yqD9106HCMMA,4,"Love coming here to watch football. Every game is on and they have three huge screens. The service there is usually friendly, I've never had any problems but sometimes my friend thinks the ladies are a little rude. Never esteem here but the drinks are pretty strong. When I'm in Phoenix I come here for sports.",review,EKFQtd5q66Jn6LQjmTRLdQ,0,0,0 +WGtu9DDt6evtT_IOZ6tNBw,2008-12-15,hzdVypwYzY5hMO3i8JCU_w,4,"I came here on Saturday becuase I had to get my Jeep serviced, and I wanted to check this dealership out. I made an appointment, and dropped my Jeep off in the sevice bay. + +I was greeted when I walked into the dealer, and I had a decent experience here. I DO have to say, that I didnt like waiting 3 hours, but that seems to be at most any dealership you go to for warranty work, so I cannot blame them for that. + +What I DON'T like is going for service and tying to be ""sold"" on a new vehicle. Im in for service, not to buy or trade in my car. Why do the salesman do that? I know its thier job to sell, but not every single time. Geez. Annoying.",review,JffajLV-Dnn-eGYgdXDxFg,2,3,1 +JMZfcwARQ68n7GGsqmtdaA,2011-01-25,v_uMZHsFWGas9mUCROXvsQ,4,"As a west coast girl, knowing what good soul food consisited of never my forte. +Then I moved to Atlanta for almost a year...driving...so i got to experience diff states in the souths sould food. Collared greens always sounded scary to me and if you werent tuna, salmon or something i usually find on my sushi menu...you are prob a fish i havent bothered to give a chance :) +well after having fried catfish with some great traditional sides while in Nashville, then again while living in ATL, i feel i can give a better opinion. +Living in AZ, I was weary to even attempt to find some soul food. But after reading some Yelp reviews, I decided Off Da Hook was worth a shot. And thank goodness, because their catfish was amazing, collards were great and red beans and rice phenomenal. +Needless to say, i'll be back. +If you are in AZ and appreciate great soul food, then maybe ill run into you :)",review,EuRIgGoJ-mu7doYW0d5yFA,0,1,0 +T5HYqRADhAL6VPRAacz74Q,2011-11-21,DcOePbE5pnUnepRvJ6o8HQ,5,"Best Italian sub I've had. Very nice owners. Just be aware there's no place to sit, so you'll have to get it to go.",review,9b53hBDMyNdgwAFce9h6bQ,0,0,0 +F_sbmpkcdHh5IXwaNLtCMw,2006-07-23,wG-5lF0FGSII6WUj5z-TOw,3,Nice resort located in downtown Chandler. The rooms are spacious and fairly comfortable . Chill by the pool and sip on a margarita from the pool bar.,review,kVYRVCTyN6kb-HqNOhWDDg,0,0,0 +-5rFC4EVrT-v8g1PSEf6Xg,2012-12-09,SV-4U14VPYsKS4cQ45gxFw,5,"Decided to give this place a chance and was quite delighted. I am vegan and that's an issue sometimes. I tried the vegetable chow mein(medium spicy) and I love it. I get extra broccoli and there is so much flavor in the veggies and noodles. My husband has tried the General Tso's chicken, The BBQ pork chow mein, the mu shu pork and the garlic chicken and he loved them all. The great thing is that this is a family run business and it shows in the food. I highly recommend at least trying this place. it's reasonably priced and there are great lunch specials during the week.",review,QHWGKJlwpchGsEURbbSDKw,0,0,0 +fATj2lCnnjw2GHH4iL0TIQ,2011-04-19,IP5jsaclVaQGGL-a5w5wTA,5,I really like this Urgent Care! Don't let their youthful looks fool you! John Altic PA-C and Dr. Brenden McRae are wonderful and very caring! In addition to having Urgent Care they are now opening a Private Family Practice -I can't wait for them to be my primary care physicians as well. Great job gentlemen and staff!,review,kp1JDSgCapsBAve4Wd7yZQ,0,0,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-01-18,QDmPt-z1B4eKpAI94IwcJg,4,Very sexy place where people love to be seen. Very pretentious but I liked it! Food is just ok - I have had better!,review,t9dSBPONLTj7dpTsd1sJnQ,0,0,0 +OFBJtqWGSx6n6CchtVmoRw,2008-06-08,rYnCTUc8tONR8YFAkOQfeA,4,My boyfriend just reviewed this place and although we have never been here together - I thought that I might chime in as well. I really enjoyed this little burger place. It makes eating a burger seem fancy in a very modern setting. I really LIKE the sweet potato french fries....Mmmmm!,review,gGNAr-cmCQUgA9B0QjVqAg,1,1,0 +3ic0B872Tql7dwO4YRTDCw,2011-11-17,eSTsL8M6AZs5_upE4YikVQ,5,"So many great accessories and cute clothes! I got my accessories for my Wedding here, and they were perfect. Everything from clutches to earrings, from cute tops to watches, they have everything color coordinated!",review,Gt0tpFILcaTKZ27-pafRzw,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2011-10-24,IzlVs3_HZ3CMyL65tq00gQ,4,"I have only been here once and it was for a quick drink before heading to a movie but this place is my kind of hang. + +If you are a laid back bar who supports local artists, has a huge selection of boozahol and plays music that makes my heart skip, well then I guess I just love you. Plus, its on the same street as my favorite Jobot Coffee, how could I not like The Lost Leaf right? I really love that it is a really old house turned into a bar. The artist inside me wants to shoot tons of photography there. Perhaps one day I will be ""that girl"" who brings her huge slr camera to the bar. + +I will need to go when it is last friday to hear some jams and revisit this gem of a bar. This is the kind of place I'll miss when I no longer live in the PHX.",review,7aQvAhgpdXqkTQEp8b8Szw,4,2,1 +6imLt53br7SJ3av07jjH7w,2009-03-31,z_25idy29nlCXv5id_nRlw,3,"We went to dinner there on a Sunday and we were the only ones in there for most of our dinner. Downtown Phoenix can be somewhat quiet on the weekends, so this was no surprise. The service was great as was the food. I had a pizza and if you like thin, crispy crust you will enjoy the pizza as well. The music was a little loud for a Sunday dinner, especially since we were pretty much the only ones in the restaurant. I will go again, probably during the week so I can get a taste of what it is like when it is busy!! Overall...decent meal!",review,sLuaWOJNALukrThYzqovzA,0,0,0 +s-52LFeqr9ZJZyH8nIBG5A,2012-04-01,N6SzZLBcSadEMOcXxbPJeg,2,"I bought a new mountain bike from them in Dec 2011. The buying experience was great, my salesperson was very knowledgeable and they had the bike built in a couple of hours. + +My problem was the included 90 day tuneup. They didn't do any of the work that needed to be done and gave the bike back to me with my brakes rubbing, gears not shifting correctly, and wheels that needed to be trued. + +After spending thousands of dollars on my bike and accessories I expected more. They only give one tuneup at Landis (less then many of their competitors) so I wish things would have been done correctly. I will be bringing my bike to another shop for service in the future.",review,J-JKiitpCAghyt6vt0qGtw,0,1,0 +d3MxUXS1b6U2P_gGuCO1-A,2008-12-22,yBdRby6KNj8ILxjrg-0Zvw,5,Cant say enough good things about Sens. Excellent food and excellent service.,review,gkVupbASJchEKczvnj5U3g,1,1,0 +EAMPV2fgs9cU21MXOgv3Ig,2009-11-16,5GkFWeBdifcicDtyc4XjOQ,3,"Thought Saturday night would be busy at 6:00 PM, but to our surprise it was just getting started. We don't like to go there too often because it seems that a lot of older folks go there, not that I'm a ""spring chicken"". + +The waiter was efficient, he never told us his name but memorized our order. He made sure we had our drink glasses filled at all times. + +When he brought out the bread, it was only three pieces of different types: roll, carrot bread and another type. We had to ask for another order. + +My daughter had the Chicken Pot Pie which had chunks of chicken but the sad part, the crust was only on the top, which was golden brown. To her it was OKAY. My wife had the petite sirloin steak which came with a salad and asparagus. She ordered it medium rare and it was a little too pink, but still eatable. My order was the Lamb Shank on top of mashed potatoes and asparagus. Love asparagus!! The lamb was okay and portion was just right. The sauce that was poured over the lamb was like beef stew gravy with carrots and celery. The sauce was a bit salty for me but bearable. If you looked at the lamb shank you would mistaken it for a turkey drumstick.",review,DtTuVmtooVyMnGhwPrzLww,0,1,0 +xEg0-xrQywU5K-WQO7cy0w,2010-02-09,mwycDGfMqx5WcP5B5_SFpg,4,"Coming from a place and age where the most exotic ethnic food was considered to be Taco Time, I have spent many years experimenting with all kinds of different foods. One of my favorites is Indian food, and thanks to Microsoft and other tech companies, who use workers from India, there are many more Indian restaurants now scattered throughout the country. I am not an expert on the food (in fact, until recently, I never understood why Bollywood movies were always playing in Indian restaurants). But I do enjoy it, and try every Indian restaurant I can find. + +I started going to Indian Paradise several years ago, and loved it. It has a nice interior, and the servers are very nice and helpful. I always seem to come in the early evening, before they are busy, and I always feel somewhat spoiled the way they treat me. I love their masalas, curry, and naan, and have, of course, tried all of their Indian beers. I also find the different tandoori dishes delicious. + +I might note that I have never made it to the lunch buffet - I always seem to be golfing at that time so I'm just never in the area . But it is on my list of things to do. + +***Bollywood - Bollywood is the name given to the Mumbai-based Hindi-language film industry in India.The term Bollywood was created by conflating Bombay (the city now called Mumbai) and Hollywood. Bollywood films are usually musicals. Few movies are made without at least one song-and-dance number. Indian audiences expect full value for their money; they want songs and dances, love interest, comedy and dare-devil thrills, all mixed up in a three hour long extravaganza with intermission.",review,w_hcSjqLeSZQL9Rx1UP-Tw,2,2,0 +nWJ55k8utQHrDqT_n7nYTg,2012-03-09,OM5Tqn8BFSNC92SIhFNgzw,5,"Okay, you might be asking yourself ""who reviews a Taco Bell? or even looks up reviews for Taco Bell?"" Well, I would ask myself that if I were you, but here we are. + +This Taco Bell is awesome. They have really nice and friendly people working for them, and my husband and I would eat inside because we liked the service. We lived a block away, and came every so often over 3.5 years and it was always the same. We appreciate that kind of good service, and it's not one you would expect to get from a fast-food chain.",review,g4uw_h8-3HKyZm6jES85eg,0,0,0 +sNuyncpQdcvfEpfZS-3Yew,2009-03-17,6bKPk5bXWhfthPXf_TsIaw,4,"Tott's is great pan-Asian food for a very reasonable price. + +One day at work one of my co-workers asked if I wanted to go out to lunch. I agreed and we set out. We each got 1 veto. Hers was Panda Express, mine was Kyoto Bowl. We kept driving and she remembered Tott's, and I've never bothered going to Panda again. + +Great food and great service. The owner is a small Asian man who smiles a lot and always wants to know if he can get us anything else. I see him every time I go. + +Everyone I go with loves their orange chicken. It is very tasty, but a little on the sweet side for me. I like a spicy dish, so I go with the Malaysian Curry. Chicken, red curry, fresh veggies, fried rice. Amazing.",review,WRY-wk7t2u7xxrIwWbQu0w,2,2,1 +w7SrsFV4FL04bhQr-B6-4w,2012-01-12,l2evqKZLWTgTh8kDBiw00w,2,"2.5 stars + +The short: Open and clean setup with friendly staff, but it's basically just-ok carby kid food. + +The long: On the south side of Thomas, just west of 44th St., turning left into the lot can be a bear during peak traffic, but it's otherwise fairly accessible for people driving in from the west or walking up, like I did. The inside is wide open and clean with plenty of chairs and tables that were just a little too cluttered around the restaurant floor plan. Otherwise, it doesn't stick out much from other fast food joints. I went during the middle of a somewhat busy lunch period, and who seemed to be the head cashier loudly greeted just about everyone who walked in the front door on the other side of the restaurant. My cashier was friendly and quick, though he seemed a tiny bit frazzled by the small rush. + +I ordered The Box combo and a lemonade to go and headed back to my office a short 5-minute walk away. I hoped the freshly squeeze lemonade would be awesome, even if they did charge only about a dime more than fountain drinks for a regular. Although I could taste the lemon, the drink was so sweet, it may as well have been from a mix or carton. The Box comes with a small container of sweet coleslaw dressed in a lot of mayo, a slab of soft-in-the-inside, perfectly browned-on-the-outside toast, somewhat slightly crisp, thin crinkle cut fries, a container of Cane sauce (which tastes like burger sauce), and, of course, four chicken strips. Unless you're me and you get only three chicken strips . . . or two smallish chicken strips and one big chicken strip that maybe they counted as two, but really, halfway through the meal, you're so carbed-out full that you don't miss anything aside from the extra dollar you paid for that extra chicken strip. The strips were fine. It was real chicken, and true to advertising, it was fresh. Sort of crispy, but not as crispy as I'd hoped, or even expected. Tender and moist enough to not be bad. But not special. All of it was pretty one-note. I can't even tell you what part of the meal I liked best . . . maybe the toast. Coincidentally, every time I took a bite of that toast, I'd think, ""This is the most random slice of toast ever. What's it even doing here?"" + +So, it's fine if you're like me and want to try every new eatery that opens near my home or office and appreciate the novelty of places like this, but personally, I won't be making a return visit. + +Edit: I almost threw my drink cup away before I noticed the giveaway pull tab on it--I won a free slice os Texas toast! How do you like them apples? =)",review,8EefXq-OSIKSqzyrpDNJMw,0,0,0 +KwGQqUCpHHhOhVqyOL2QTA,2008-02-27,dz86iwnTvxiZJ2IImOZ9XQ,2,"This is a club -- not a lounge, or supper club. + +I was drugged and dumped here by friends a few months ago (Fri, around 10pm)... + +It is too loud, too packed, and drinks cost too much. I am certainly not one of the ""beautiful people"" who belongs here... + +Good luck!",review,90a6z--_CUrl84aCzZyPsg,1,0,1 +gFJtzwGmDTABRwL2F8GsSw,2012-07-21,wlCFmI4CWmLOMfs2oBrLtQ,5,"It is great. Great ambiance, food, and service. I love the rooftop bar too.",review,wj53JTTIld0AjIolfg9v2Q,0,1,0 +Rga1ZkAyy-mFQmICQ2akVw,2011-08-27,SG71yfnn3XkQ_UrplbE6HQ,5,"My daughter's 128i BMW was horribly keyed this summer and we found Harvil's through State Farm Insurance. Fred Harvil was very friendly and helpful to work with and we really appreciated his service. She dropped her car off on Monday I believe and she had the car back by Friday. His rates were very good and ended up being lower than we had expected, and what we liked about him is that he was very honest. My daughter had accidentally backed her car into a pole earlier that summer and hadn't gotten it fixed because she kept getting quoted around $500 and couldn't do that, but because Harvil was already going to fix the rest of the car he only charged her $100 to repair the back bumper which was really nice. He also set us up with a rental car for her through Hertz that she was able to leave there at the shop and have them pick up which was great and convenient. + +All in all, Fred Harvil was very pleasant to work with, timely, and left her car looking like new. Definitely recommend!",review,FBnMnm-1YbcJynWD4Wi28A,1,2,0 +L19_1cG2ALVjdBQ456h26A,2012-01-03,k7ekJEQuMt3xL_KshZz-GQ,2,"Just ok good in a pinch but not best! I have learned to like that spicy sesame chicken, I don't like it leftover though. They also get points for very good behavior and treatment when I called in my order to the wrong location, they called the other store and made my order at the correct location.",review,b48NAHm3R12f7nRJXHVnCw,0,0,0 +O5Qf0CfbIG6r-g55KO7TQw,2008-04-07,q6ZibtwgjaxmCHTR3fZdfQ,3,"I wouldn't go here. In fact, I looked into attending Ai of Phoenix for a graphic design degree and decided it was not the path I needed (or wanted). The decision came, though, after a couple months of trying to sort things out with them. I applied. I met with a career counselor. I had to submit some more paperwork. I went on a tour. I then was sent to meet a financial adviser, who had to be barely 18. That's when I realized that the majority of these students were young, inexperienced and knew to college life. I, on the other hand, already had a degree. I was looking to combine my past experience with a design degree to enhance my career. + +I also realized Ai isn't willing to working with professional students. They don't take into consideration your work schedule as much as they should, especially if they want to appear accommodating and understanding to students who are truly committed to going to Ai. Case in point: In order to get the ""a-ok"" to take only 9 credit hours a semester, I would have had to get the permission of the Graphic Design Faculty Advisor - or something. Ai really pushes a full-time schedule on its students, even if they offer evening classes. Silly. + +Plus, I didn't like being treated like an idiot. I mean, do I have to tell you over and over again that I already have a degree, that I know what to expect from paperwork and financial aid? Can you not see I'm annoyed at some 18 year-old who can't operate a computer to tell me what my cost would be per semester? Can you not tell I'm irked when I make known I'm on my lunch break, and I'm told it'll be another hour before we're finished? I don't like somebody wasting my time. True, I can be impatient. But this was ridiculous. + +That's when I decided this place wasn't for me. Sure, I've heard great things about it, but the people who have gone here have told me I could have gotten a comparable degree and built a better portfolio somewhere else. + +Enough said.",review,APLIPfq1Rf8QyhHHk2uAyA,1,2,2 +-4A5xmN21zi_TXnUESauUQ,2009-07-09,xCa9A2FhTlilkemseYNF8w,5,"Introduced to D'lish today by a friend. I'd already had breakfast (although the menu looks great, lots of delicious sounding, healthy options) but he suggested a Chai coffee. I don't usually like Chai Tea, but I thought I'd give the Chai coffee a chance based on his recommendation. + +When I ordered, the server suggested a ""Sexy Dirty Chai"", which as lurid as it sounds means adding vanilla. The Sexy Dirty Chai Coffee over ice is hands down now my favorite coffee drink. The place is tiny, has a really cool, funky interior and also has a drive thru- a true local gem. The service is friendly and energetic and I plan to start my day here again soon :)",review,U8ayzBXrBzgjdrCYOzwNOg,3,4,2 +lBRCMN7wNn-BKUsaOXJRow,2011-02-16,f5Nkgg5Drd6fJyoZA5mkIA,5,"We love this place. We got Miss V washed up with the highest package with an extra leave-in conditioner for her super shedding coat AND she got some hand baked peanut butter doggie treats (all for $22). SO worth it. Plus: all the employees are SO nice! And now that they are starting to carry her dog food (Blue Buffalo), we'll be headed to Wag N' Wash for her chow too. +LOVE.",review,NSu-sX5ZAcnWN5Sy0QDohg,0,0,0 +ssmiBFaHbH_k97GsuQCOIw,2007-07-13,JUabJh22w70BKsInPMSErA,4,"You can get drunk and get your nails painted. Huh? + +It's true, and it happens on Mondays. For $10, you choose any martini you want. Then, you drink and chat until it's your turn to get your hands worked on. + +The chocolate martini I ordered was strong and smooth. Definitely not watered down...just what the doctor ordered. + +Okay, so the manicure wasn't something you might get at a spa, but it was a fun little silly girly thing, that I personally think is a great idea. Still, for the price of just the martini alone, you get shiney new nails. Not a bad deal. + +The people watching is quite interesting as well, I even struck up a conversation with a humorous dad of a popular comedian. + +Bring the girls and have some fun.",review,1S7XdhbZWR17Wy4TBsIzaw,2,1,0 +BRnnFoWl3iFydC5TwuGwgw,2009-05-19,RX0WZ_hWkpdPJr4C1S8c_Q,4,"We absolutely love this place! When we get out for date night, this is where we go. The waitstaff are great and the food is delicious. I always have a hard time deciding what to get because we love it all....from the fried okra to the jambalaya...If you're in the area this place is definitely worth checking out.",review,KXoRjWfTxPT6LFkOdK6ovQ,0,1,0 +mAMeCLoTQUf3Zb808deTYg,2011-11-27,NjY70W7-PXG04WK-TX670w,4,"I love this store for years now. I discovered it here. +The candles are wonderful. I love the little travel sampler kit. +The yuzu bergamot moisturizer is great. +I enjoy the soaps. +This is the type of store that you just go for the product and know it is just going to cost more. Honestly it is not the much for many items: The little kits like the: +- cranberry orange body wash 2 oz +- cranberry orange moisturizer 2 oz +- mint thyme body wash 2 oz +- mint thyme moisturizer 2 oz +- bamboo creme body wash 2 oz +- bamboo creme moisturizer 2 oz +- packaged in a reusable zippered bag +all for 25 bucks. + + clove soap 2 oz +- honey almond soap 2 oz +- lavender lime soap 2 oz +- lemongrass soap 2 oz +- oatmeal lavender soap 2 oz +- rosemary soap 2 oz +- rosemary & peppermint soap 2 oz +- rose tangerine lavender soap 2 oz +- seven seed lemon & rosemary soap 2 oz +- vetivert & grapefruit soap 2 oz +- wild mint soap 2 oz +- yuzu soap 2 oz +for 38 bucks. + +- bamboo creme moisturizer 2 oz +- mint thyme moisturizer 2 oz +- lavender lime moisturizer 2 oz +- yuzu bergamot moisturizer 2 oz +- cranberry orange moisturizer 2 oz +- sweet almond & sea kelp moisturizer 2 oz +- zippered travel bag +for 25 bucks.. +Why yes you just read my Stocking stuffers for myself that I just sent my husband. hehe :D +Worth trying. You will find a favorite. + +Quality of their ingredients from their website: +""...using only pure essential oils, vitamins and antioxidants, and rare fruits and herbs - and never using synthetic fragrances or colors. Now, we're also sourcing organic ingredients when possible, and are on track to have all of our products be paraben-free and SLS/ALS-free by mid-2010. "" +Service: She was very nice and was even happier when she saw I was a little shop happy when I started putting everything on the counter. hehe. +From St. Louis and loved it! +TLDR: The products are a favorite of mine. Good products and good service at this location. Great outdoor mall.",review,t3qsjX7YCa3z0vO8mODmQQ,0,0,0 +YQ19y3LYgmAHfgNFa01vyA,2011-12-13,Et1Z9pFIo-k-20fHcraCTw,4,"We like it. L and I 2nd date was here, and we made out outside. It was hot and sexy. Do we remember the wine? We love wine,but I remember the kissing. Kissing beats any 97 point wine. D.C. Ranch overall, just has not made it, for restaurants and retailers when I lived in Az. This has nothing to do with the restaurant just an overall impression to yuppie?",review,qaKzkFaZtqWIXCGQ-GStQw,0,0,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2012-07-16,nQDYgw9sVtvBzgav3E4ZDA,4,"This is a delicious neighborhood restaurant! + +I can't speak to their sushi much because I have become such a fan of other items on the menu. The handful plus times I have had sashimi here it has always been good. + +Now on to my favorites! The Asian nachos are a must get. Instead of tortilla chips they use wonton chips. Topped with a yummy cheese sauce, salsa, sour cream, and guacamole. Their guacamole is a mix of avocado and edamame. Yum! Add some chicken and these are super yummy and great for sharing. + +During my most recent visit here I discovered they have a new edamame. Bun Bo Edamame. It's very spicy. Too spicy for my tongue but the friend I was with loved it. + +Saved the best for last - the Mojo dessert. I am not a big dessert person, but I almost always order dessert here. It looks like a sushi roll. You get rice krispy treats, rolled up with Nutella, ice cream and a brownie in the middle. Delicious!!!",review,ZUx-B52hGRhmeUDVukmjrg,1,1,0 +eJpr6Ks8pr4bmvDVPTN-Xg,2011-05-29,nHuVrrxq2NNsJBLudLRtGg,5,"It is almost impossible to find a great sandwich shop that actually has good grinders and sandwiches. Well my search is over. I stumbled across this little shop and felt right at home in New England. Being from Connecticut, I was so excited to see all the great food on the menu. I had the Vermonter and it was bliss at every bite. The owners are extremely friendly and you can tell that they want you to be very happy with their food and service. Great food and great service, you will not be dissapointed....",review,8V1itryD-OFPou8qE3d90g,8,9,7 +28ycqW56i70yM_C0ejNv9w,2012-03-08,LKURql-RV7IWuHmUiQujwQ,5,"LOVE LOVE THIS PLACE! always need to find a reason to drive so far to Chandler:-) so fresh, soup delish, and sauces yummy!!! BYOB, and casual...feels like my grandmas:-)",review,bmjmYa_CpKcqS_8YV9v7OQ,0,0,0 +TdNIQQcfslKjkey4-yAlKg,2010-07-19,eIaf4VpOnOlFMYfI4ulp8w,3,If I hadn't recently found Yogurtland in Scottsdale I would be raving about this place. Unfortunately it is 45 cents an ounce and the other place is 30 cents. Both have a nice variety of flavors but this place is missing the water cooler. You do get a bit sticky from eating your treat. There is something they have that yogurtland doesn't have. They have marshmallow and peanut butter in squeeze containers which is to die for!!,review,KLekdmo4FdNnP0huUhzZNw,0,1,0 +7YYD_agS3Kb2sAx9JPkQEw,2007-12-29,tMFDbi8H7uqCdr9hArxz4g,4,"Imagine the scene on a Saturday morning in my house during college bowl season... + +Husband pulls out jalapeno flavored Cheez Its (which is a totally different story in and of itself), to which I say ""oh, if you're hungry let's go grab something and then exchange Christmas gifts at the mall."" Husband looks at me like I have just committed a murder. I convince him that it's not really THAT far away from North Scottsdale and that it could be fun. + +An hour later (with no traffic might I add), we arrive. I have to say that we both looked at each other with that ""this is it?!?!"" face, as I think we both envisioned something more like The Farm at South Mountain. Although the atmosphere isn't quite as quaint, QCOM is still pretty darn cool. We each ordered a soup (cream of tomato and cream of mushroom), which were pretty good. My husband had an Italian sandwich (the ""kalamata,"" I think), and I had a grilled vegetable panini. The food was filling and tasty, and it was really fun to eat outside and enjoy the crisp ""winter"" weather (if you can consider 50 degrees winter). + +We didn't take the tour since it seemed sort of silly (it just consisted of a short lecture outside and then a quick tour inside), but we did enjoy the samples set about the store....flavored pistachios, olives and tapenades. Overall, it was a very pleasant place to lunch, although it took us twice as long to drive there and back as we actually spent on the premises. + +I guess we were supporting the local economy by visiting a local farm, etc....but the irony is that we wasted a whole lot of gas in our SUV in the process. Oh well. It was a nice Saturday in any event, and I'd return.",review,9FbgqZ5u9WTLAs28nNafIQ,1,2,0 +-ev01HlCKf7CYsh8ZXG_7w,2008-03-03,fzsuDEbbifz8kstKT_c7pg,1,"Not a fan. I was in the Biltmore yesterday shopping with my dog and decided to go and buy her a few treats. As I picked out a bag of about 20 baked treats, my total came to be about $3.00. I did not have any cash on me so I took out my ""plastic money"" the debt card and they wouldn't take it telling me that I needed to buy a few more things because they have a $5.00 minimum. What store has a minimum nowadays??? + +The customer service was also very lack luster. The dogs of the store employees were jumping on me which I found a bit annoying. + +Needless to say a store that I used to like, I will no longer be back. There are so many other great dog stores...",review,BVZ7iTR_nI3jzdQidze1UQ,1,2,1 +Bjt3rB73dvSDe1XEPEWc6w,2012-04-22,JFAV_ng9h2a296a5BDB6KA,1,"Wow..... Not in a good way + +The sashimi was good because all they did was cut it, but that was it.everything else made me wish I went real Chinese! Not Chinese making sushi, culture theives! +P.S. snow crab is not the main ingredient to every roll!",review,r6W1RK67Gmfts4HUacNsBQ,0,0,0 +oxsCvEkQNNIbOPDt_QK_0A,2011-03-11,khNnDoD5rGttqTza9KxvZg,5,"With our regular Indian place converted to buffet and my lunch companions refusing to go (don't tell them, but I would go anyway), it was time to find a new Indian spot for the work lunch rotation. We were on a mission and I was trying to figure out whether Jewel would be added to the list of acceptable lunch haunts. After managing a circuitous route to the top floor of a parking garage, we navigated a maze like structure of corridors to find the restaurant. Travel time was starting to negate Jewel from the list. The lunch menu was small, and we all ordered the thali meat combination. After a modest wait time the food arrived in an array of metal containers and was delicious. I hope we go back, but majority rules.",review,U_fAIe7CUaGMejwSdNvMgw,0,0,0 +-cKWUXE-16M1R15UOt6sqQ,2010-06-10,d_IcD1Ho5uZaV6e0A02nNQ,1,"I used to love Banana Republic. I stopped by at lunch to buy a few outfits, I wasted quite a bit of time in this store...to an frazzeling degree. The choppy layout of the new store is annoying. The clothing line changed drastically so you look like you just came from an overpriced (and cold) beach. I was looking to dress sharp and professional, not wrinkled and hap-hazzard. I wanted short sleeves, not flimsy spagetti straps, long sleeved blouses and SWEATERS (hello..its JUNE...and ARIZONA.) Banana Republic's new format and collection is a huge FAIL.",review,XmpqbfSu9X7mjwJGUXTrAQ,0,0,0 +bjUc31sxZIda_Zmo5CVk7A,2010-12-27,Y1nLxoOeJkilWWnzUEIvJw,5,"Kara is absolutely wonderful! She does a GREAT waxing and I am going to have her do a facial for me very soon. +The atmosphere is very relaxing and Kara is an absolute doll of a person. I would highly recommend her!",review,DfJ8B8T1fgNA6_ZT-aeUlQ,0,0,0 +svxvY11GxtzPDzDef7igZw,2010-01-31,eg2F4JgZ3kUEU-taW1gBGA,2,"The Mill Avenue Farmer's Market is the bantam weight of farmer's market's in the valley. + +""Weighing in at 113 pounds, in this corner of the valley we have MILL mill AVENUE avenue FARMER'S farmer's MARKET market! Let's get ready to haggle!!"" + +When we arrived around 9:45 am there were about 8 stalls, one with produce. + +Diminutive comes to mind. ""The Mill Ave. Farmer's Market was reported to be rather diminutive, with only a smattering of stalls and little produce to be found."" + +Petite. The Mill Avenue Farmer's Market would need a little padding to run with the college girls, know what I'm saying? + +Pee Wee. The Mill Avenue Farmer's Market had a very good game today at the Kiwanis Rec Center and is now celebrating over Gatorade and granola bars in the picnic area. + +You get the idea. We left to get some coffee and returned about a half hour later to find 3-4 more vendors. There was a honey vendor, hummus, cookies, produce, a couple sandwich places, flowers...and the one place with produce. + +I'll give it some time as they are new. I'm hoping in a month or so they will have a better turnout of vendors.",review,P2kVk4cIWyK4e4h14RhK-Q,8,10,8 +9VZ_imQjvgtpt3k6W6AQ_A,2007-04-10,0VXwF7zflsgdAdPKBxC2Qg,4,"This place is sweet, I highly recommend it. When you walk in the door be sure to look down at the floor because you're standing on a fish tank - pretty cool. The decor is very trendy and the atmosphere is chill. We had a drink at the bar on a Weds. night before heading out to the patio for dinner - not overly crowded which was nice. The sushi was delicious - quality pieces and very fresh. My only complaint was the bathroom sink - while very cool looking, the faucets don't work unless you slam the handle in and then the water just sprays out sporadically. This was a little messy but the rest of the experience was great.",review,hO4UkN8RniS204O1PdxoBg,0,1,0 +ugroYjkJa2C68lVymfd2Zw,2010-01-04,yXYkLGX052_OGbgffAw5Zg,2,"So, I've been going to to Allure for pedi's for about a year. They're located very close to my house so it's mainly been a convenience thing. The techs are hit and miss. Some are awesome and really do a good, thorough job. But overall its usually a pretty neutral experience. The last couple of times I went in they were just rude. The girl who did my last pedi (about 2 weeks ago) got rude when I wouldn't accept her upsales......did a sloppy job on my polish and wouldn't fix a mistake when she made when she slipped on my flip flop. On Thursday (NY eve) I went in for a mani....the sloppiest mani I have EVER had. She soaked my right hand for all of 10 seconds before starting my cuticles. When I flinched when she cut my finger she slammed her tools on the table, grabbed the water bowl that my left hand was still in (slopped water), stood up and said, ""No manicure, polish change"". When she came back, I tried to explain I did want a manicure, not only a polish change. She raised her voice and said that I was too jumpy ""Everything hurt you"". Well, she did my polish....horrible job!! About 1/4"" from my cuticle....it looked just dreadful. While I was waiting for my polish to dry there was a man giving another women a pedi......she told him 3 times (!!!) he was hurting her and he just laughed and said ""it tickles""?? She said NO, it HURTS. I'm done with this place. There are plenty of these cookie cutter shops around.....They need to re-check their customer service skills. This was just wrong!!",review,F0ecO_eKomXZN1iGr0K7pw,0,1,0 +IVc23uY-36WUNYoIbz42Fg,2012-03-22,a0n3pnYyVb_7z_xncoI7rQ,4,"I went here for happy hour with a long time friend. I wanted to try something new and Switch totally fit the bill. + +First off, their happy hour is A-mazing! I had two glasses of white sangria that were just perfect. + +My friend and I shared the cheese and fruit plate because it was on special. It was nice to try everything, and since it was on special it made everything taste better. + +For my meal I had your traditional cheeseburger, and it was very good. I had half to take home which made for an excellent lunch the next day. + +The only thing about the place that was a little strange was the crowd. I expected for having such an awesome happy hour it would be busier, however it was kind of dead. I even saw a group of people be seated and abruptly leave. It was kind of strange. Perhaps it was just an off night. This is definitely a place I would go to again!",review,QQltfvEq-YYN7roLQarVsg,0,1,0 +5VMajxduxfLPSyQkVFKESg,2012-03-29,HXEYXZXPqUdlErQgckfHUQ,5,"Never disappointed with this place! + +Get the brisket, get the pork. Get the beans. They're bangin'!!!!!! The sauce is delicious the mac and cheese is pretty good, the cheesy potatoes are good too. The real standouts I would have to say are the brisket and the beans. Do NOT skip the beans. Trust me. + +I'm not even a meat person but I do like Joe's because everything is cooked just right. Order extra of everything and you will be glad you did. Makes for great leftovers. Don't forget to get some BBQ sauce too. Personally, I'm not one to douse everything in BBQ sauce, just a little dip here and there, but the sauces are really good. + +Even my young niece and nephew enjoy the food. It's simple, down-home good food even the pickiest eaters can enjoy. I've never actually dined-in at this place. I've always called in an order for pick up or ordered right at the take-out window. They are pretty fast. + +My future father-in-law wants me to choose Joe's to cater our wedding rehearsal dinner. Did I really ever imagine in my wildest princess wedding dreams that I would choose BBQ for my rehearsal dinner? Not really, but Joe's is excellent, and we're heading toward a laid-back wedding theme anyway to take it easy on our many out-of-town family and friends. I am sure they will all love Joe's and I can't wait for them to try it!",review,iC7NVBmkzRl4rKEU5MWS0A,0,1,0 +ETg80zdzuBm7gBfW3UoMIw,2010-01-26,Y-rWOJDgKUmOGaKe1Hz5uQ,2,"I went to Wokee Express tonight, per my friend's suggestion. If I'm craving Chinese food, I typically go to Taste Of China. However, I wanted to try something different, so I asked around, and was directed to Wokee Express. + +The price of the food is great. At dinner, I got a large chicken plate combo. ""Combo"" means it comes with rice, egg roll, and crab puff. All of this only cost $7.75. + +However, the chicken was over-cooked, and the batter the chicken was fried in was soggy and mushy. There were no carrots or peas in the fried rice, which is a huge deal to me for some reason. + +So overall, if you're on a budget and want some good Chinese food, go to Taste Of China.",review,QGzRZoWOM1PN6oIYFDnfgA,0,0,0 +JvJjaTJCyUGu5SDpoJWvZg,2010-05-19,Dp99ci5IrwLkEflMEfguIQ,4,"I can dig! Food here is very good. I believe everything here is made from scratch the soup to the sauce cause they taste wonderful. I go for lunch every now and then and I've seen this place slowly pickup business. It has that deli-sport restaurant feel, but the food brings it home. I appreciate the usage of real plates instead of paper or styrofoam plates -- very environmental friendly! I would definitely recommend this place for lunch - 1/2 sand, their pastafagioli soup = Yum! & drink.",review,XqMkm-DD9VsdcKx2YVGhSA,1,2,0 +JokKtdXU7zXHcr20Lrk29A,2009-04-20,kZkQhOEj0OTdfNvjO43J9g,4,"5 words.... + +HAPPY HOUR ON A SATURDAY!!! + +Yes, every day actually! from 3-7pm and a late night happy hour too starting at 10pm!! How can that be true??? Well I guess in Arizona they know how to party! $11 pitchers and $3 pints, yes it could be a little cheaper, but hey it is a happy hour every day of the week! And their beer is really good! AND they will give you FREE samples of all of their beer too!!! This is like brewery heaven!!! + +To top it off, a group of people came here in Crank or Drank shirts on their first ever biking and drinking tours and this was on their tour for good reason! Their Hefe is awesome, complete with lemon wedges of course, and their Sunbru was so so refreshing on that hot day in AZ! Adriana and I definitely had our fair share of pitchers, along with an order of their beer battered fries and their specialty ice cream cake! Well, that was actually roopas, and just an FYI, oreo crumb crust and Hefe don't really mix......so save the cake for when you are done drinking ha ha + +But the waiters here (the ones that don't look like they are 15!!!!!) are helpful and friendly and nice, and you will definitely get carded here, even though literally I actually felt old here since all the girls look so young! Some of them must have had workers permits I swear! + +That aside, as long as they can bring me good beer on happy hour prices, I am sold.",review,Qe_1COeOqBrCQ4IhLw9Glw,5,4,3 +1NZLxU5WvB5roPFzneAlLw,2010-09-20,xDAgYumh0O51n8uqj5o7sA,1,"I think chef Silvana Esparza first located the restaurant here on CALLE DIECISEIS (she renamed the street all by herself, apparently) to take advantage of cheap rent. There was no way she was going to locate her Scottsdalish restaurant actually in Scottsdale. So, people from the wealthier areas - and some First Friday urban hipsters whose parents foot their bills - make the trek down to CALLE DIECISEIS to partake in everything Barrio Cafe. And they think it's cool that they are going there, past the check cashing places, the people waiting at the bus stops and the ""rawness"" of this part of central Phoenix. + +And what is everything ""Barrio Cafe""???? + +Pretentious service. +LOUD dining room. +NO parking. +Fusion food that is about 10 years past its prime. +High prices. + +Let's talk a little about the last item on the list. + +Besides using vulgar language in her YouTube videos for pseudo social activism, Esparza seems to have forgotten her own humble upbringings. It's ironic that the very people who live on and around CALLE DIECISEIS cannot afford to eat in her restaurant. The Mexican immigrants and their sons and daughters who do the cooking, the cleaning, the landscaping and all that for Phoenix are not welcome at the Barrio Cafe. I know that this is not a taco truck, but there is some overwhelming irony here that you locate your restaurant in a working class area and supposedly have sympathy for the plight of the downtrodden and the neighbors can't even eat at your restaurant. I guess that's capitalism. Like that new car, by the way.",review,hdARWhh0Jar1Ht-5jQ4OHw,0,1,1 +PqJwKYHU_eHjw0q0NlULJw,2009-05-10,IdOyH6WqsEiL2DS8gcYHUw,5,"Hospitality Suite Resort was my home away from home this last week and although they are not a posh spa type resort, they were filled with heart and gave me everything I needed in the seven nights I spent there. + +Why did I chose Hospitality Suite Resort? I needed a place for seven nights (eight days) while I worked on my qualifying exams and worked on my dissertation in Phoenix. I had two basic needs, a place that was cheap and had free internet. That they had a daily breakfast was a plus, as was laundry facilities. They had the best price for all these options, so I jumped. + +After a flight to Sky Harbor, getting a rental car, driving to Scottsdale, I had a hard time finding the hotel. I finally asked another hotel on Scottsdale Ave. and she said, ""OH yeah, the numbers are funny that way!"" Ha! Very funny. After that first time, I didn't have any trouble finding my way back to it again. My morning commute to the Hokokum campus was very straightforward. I was pretty much set. + +I was greeted by a fellow named J.J. who talked very fast (or maybe because of my travel and the time, I was processing very slowly). He gave me a room on the third floor that was ""overlooking the pool"" (P.S. all rooms are ""overlooking the pool""). He told the best place to park and showed me on the map where the elevator was. It did take me awhile to find the elevator with my stuff in my hands, but eventually I did. There were some British/French kiddos hanging out in the poor area, whooping it up and there was music coming from the lounge, but it didn't matter, I was so tired, I could have fallen asleep in a airplane (oh, wait, I did that too!). + +The next morning, I took in more of my surroundings. My room had a lovely little kitchen with all the necessities and a nice large bathroom with a small stall shower. The was a lovely full-sized ironing board and steam iron. There was a coffee maker in the kitchen, along with a toaster, microwave, fridge (small) and hotplate. There was a nice reading lamp over the bed and an easy-to-use clock radio. There was a desk as well as a table and three chairs. The king size bed was comfortable, but not overly so. I certainly had no trouble sleeping while there, but I didn't have a trouble getting out of bed either. Perfect. + +Breakfast was a choice of five breakfasts. The menus were laminated, meaning the that choices did not change, but that was ok. I chose two eggs, sausage, hash browns, whole wheat toast, oj and coffee every morning. By the second day, I was greeted by name. That was a nice touch, because I felt that I was very very far away from home. + +Instead of eating out every night, I went to Food City, just down the road and bought supplies to heat up in the micro. I bought sodas for the fridge and micro popcorn. Ahhhhh... all the comforts of home. Because I was up late working on my classwork, the partying didn't bother me. The pool was a magnet for people, even at night, because it finally was cooling down. I didn't go to any of the happy hours (friends don't let friend write on their dissertation drunk), but they sure looked like people were having fun! + +Doing laundry was a little complex due to my own non-reading of the map. I made this huge circuitous route because I didn't know there was a laundry room in the part of the hotel I was staying. Next time I will know!! + +All in all, I enjoyed my stay at Hospitality Suite Resort. Next time I would bring less clothes because of the superb laundry facilities (you don't need to bring quarters because you buy tokens at the lobby). Next time I would remember to bring a swim suit because those pools looked sooooo good! +Yep, next time I would stay at Hospitality Suite Resort, it's got it all.",review,lHhUQlEu8ZFW6fyu2rwBBQ,8,8,5 +45Vj6a0LX4B2a7loTJyb4g,2009-05-12,8QyLabJblJJQRx1Uqmgsvw,4,"Tucked away on a side street off a main drag, we found Mosaic. Surprisingly fancy and expensive, with an elegant feel, almost like it's your parents kind of dining experience. + +Loved the different options for the tasting menus. Focus on seafood and meats. My husband loved the 'What the Foie??' appetizer which had excellent presentation. My sea scallop appetizer had a monstrous scallop that could have easily fed a family of four. + +Feeling fishy that night, my better half's halibut was surprisingly salty with a heavy sauce. My steak was good, but nothing special..in fact I was disappointed I'd gotten it. Extensive wine selection, Dutch cheese plate and chocolate hazelnut custard for dessert. + +Overall, a pleasurable meal with wonferul service and presentation, but for the price, they could really up the quality of the food. We had a dinner elsewhere a few nights later for the same cost that was much tastier from a food perspective.",review,nYa0GRbjizzzKoVOm9-lsQ,4,4,2 +d7V3ykQHqChv0KtXEanKLw,2010-06-02,nko0r0v1b9Hz6oaf3_h4og,5,"I LOVE the pretzels! Wish they would bring back the Asiago Dip, but hey, garlic salt and cabs are 2 of my main food groups. Great atmosphere, can always see a game on one of the many TVs, even when my girlfriend thinks I'm paying attention to her! Milk stout is my favorite beer, but the light isn't bad either. Something tells me the others are good too, but it's hard to get me to stray from my patterns. Oh well, I'll leave someone else to review those. All in all, the food and beer is great, and the servers seem to know what they're doing too.",review,mu6AXWXmUiE2FVw_pYxHdA,1,2,1 +uKSX1n1RoAzGq4bV8GPHVg,2012-12-05,NrO91IZlcqnYIn5tYWTU3Q,5,I was very impressed with the service and food. St Francis provided a delicious meal and beautiful ambiance that was just right for a group of clients after work.,review,wvcirVJVFhEnEYi8dRu5Ww,0,0,0 +NH67MdKaFGNcP-dlu56pyw,2008-11-16,_sBjoWMQk-XavBoj6mSJlA,1,"I've now tried Thai Elephant three times. My first two experiences were solidly mediocre -- nothing was awful, but aside from one delicious dessert (black sticky rice with pumpkin custard), nothing stood out, either. As a recent Bay Area transplant, I admit to being a bit picky, but in my 6 months in Phoenix, I've found several places that more than satisfy my rather frequent Thai cravings (Swadee in Chandler, Thai Lahna in Arcadia, Sala Thai in North Phoenix, and, in a pinch, Thai Hut in Central Phoenix). Until now, Thai Elephant hadn't really done it for me, but since the restaurant is literally 40 feet from my office and since other Yelpers seem to have had positive experiences, I was reluctant to give up on Thai Elephant without giving it another chance. + +On Friday, looking forward to a relaxing night at home, I called in an order for Pad Thai with chicken, Panang Curry with beef (extra spicy), and Spicy Eggplant with tofu (spicy, which I thought would be automatic given the name, but apparently wasn't). I got home, meted out ridiculously oversized portions of the three entrees, and sat down to enjoy my feast. + +Wow. I don't know quite where to begin, but to say that I was disappointed doesn't begin to cover it. The Pad Thai was about on par with the Taste of Thai boxed dinners you can pick up at the grocery store, only less flavorful; marginal at best, but edible. The chicken didn't stand out as being of particularly low quality, but the noodles were some of the worst I've had at a Thai restaurant (some bites were underdone to the point of being crunchy, while others were seriously soggy). + +Sadly, the sub-par Pad Thai was the high point of the meal by a wide margin. The Spicy Eggplant was a bland stir fry of soggy, overcooked vegetables and limp tofu. The tofu appeared to have been fried as a large block and then sliced, and a few small pieces of eggplant were thrown in for good measure. The Panang Curry with beef was even worse. Though I ordered the dish ""spicy,"" the curry tasted like straight coconut milk with a few drops of red food coloring thrown in. The beef was the last straw for me; it very may well have been the worst quality, most gristly meat I've had at any restaurant I've ever been to. I tried several pieces, and all were similarly inedible. + +I really, really want to like Thai Elephant, but after the experience I had, I don't know if I can bring myself to give it another chance -- especially since I've found so many other good Thai restaurants in the Valley and since the second-worst Thai meal I've had since moving here was at Thai Elephant's sister restaurant, Thai Basil in Ahwatukee.",review,Y2-KtEL3k8Ai5gLzeIRX9w,5,4,4 +TbaAnzOTX2-boTbAp3e8Qw,2010-08-20,6iL6Gvd6NRLYt1wFHmb9Pg,4,"Great establishment and especially for it being a chain. + +The place is clean and has a transparent kitchen allowing us patrons to know that the ingredients are in good standing. The prices are within good range and the seating makes it very convenient for groups. + +I like their menu it's simple yet offers enough options to make it an agreeable spot.",review,_N-DeS909pOyryxC0mMAjw,0,0,0 +ntN85eu27C04nwyPa8IHtw,2010-08-13,pAaJ34JLxxhjke_ADS6GCw,3,I love Matts and feel everything about this place is IMPECCABLE. But unfortunately the small capacity seating and over an hour waiting in line ALWAYS turns me away. Id be around more often if I wasn't wasting my weekends sitting on a hot bench.,review,9b5TY9v0-RibDNYUDqvDmA,0,0,0 +TgxDGx7L_JICWbuBUCGVqw,2010-08-24,umXCp4bCpuVIlTI-JXn__A,5,"I found the food excellent, but keep in mind this isn't typically Mexican food this is Tex-Mex which is a whole different variety. + +Our waitress was fantastic, and talked me into getting the melted cheese on the side. It was quite tasty, indeed it has a bit of skin but generally if you cook cheese or milk included products into a liquid quickly it does get one..and personally I didn't haven't issue about it. + +The menu isn't extensive, it would be nice to have a bigger menu but with how accommodating the are, you could probably something off the wall and they'd be willing to do it. + +I ordered the bean and cheese burrito, which is delicious, and large. +Its a fatty, and I loved it. +When asked if they cook with lard the hostess had an immediate answer and listed what they used to cook everything with. I was so happy. Most have no idea, and aren't very polite if you ask. She was very friendly like everyone else we encountered there. + +I was told that the Steak was perfect, and mr.hard-to-please was filled up (had left overs) and stayed that way the rest of the night. Which was great. The salsa has an interesting flavor, and I must I dig it. I""m not a big fan of mexican rice so I didn't partake in eating it, however the fan of mexican rice at the table liked it, (but not as much as the fajitas) + +Conclusion - Excellent Staff, Great Food (Its Tex-Mex..not just Mex so bare that in mind. There is a difference!) Atmosphere reminds me of some place that would be placed in a Tarantino film. Price is average sit down if not a little high. Expect 2 people = over 30 dollars.",review,muU7S-YE8D3FM5KgxOtFCw,0,0,0 +Y-9dJvw-J2d9QKfuL7mKgA,2011-08-29,kVbIIUZMzOtTOY9hmP61Lw,4,"As many of the reviewers, I heard about Over Easy on Food Network's ""Diners, Drive-Ins and Dives"" and decided I needed to check this place out. I unfortunately was not greeted by the jolly chef I saw on TV, but I was greeted by what I presume to be the same breakfast dishes he inspired. It was an interestingly unique atmosphere with good service and great food! It was very busy and did take us a little while to be seated but my girlfriend and I eventually found our way inside and had a good experience. + +Keep singing, + +-Jerron",review,zLZZpwBNB8hWson5dKXEtg,0,2,1 +iV7D7fHKb-bF9fCL_bEMtA,2012-09-15,Q_NthMZZyNLvh7EfwkCtZg,1,"RUDE RUDE RUDE +I wanted to book a diner for my wife and I ( our anniversary. +. The website i was on did not post the times of operation. I left a message and today got a call back from a RUDE Owner. He argues it is right there. He did not ask anything about where i was o tried to help . He called to argue with me. + I can not believe i get a call at work and then when i tell the reason of the issue he argues with me and hangs up... childish behavior . I read the reviews on DEX and other sites and found that this is true across the board. Poor food prep and pretentious environment and owners... good bye Lon's chief - ill never go to your location now. And my 12,000 Sedona list will be aware of your bad manners. I am a native to Scottsdale and Lon's was a place that we went to almost 6 times a year. It was my mother's favorite place to eat. - until the food started going down hill. I believe it was these people who were at the helm at that time. I heard they were asked to leave. + +Hanging up on people.... this is incredible... DO NOT GO HERE!!",review,YwqIbMiSF_pb8acInMVfqw,0,1,0 +LBskB7ACUPV8xxjBPKnxmA,2011-09-06,jBIm1ZV2-z0jsxfviLPLEQ,3,"Eva's seems to be the place we go to every time we visit family in Casa Grande now. It is a pretty consistent experience, and that's good enough for us when we're out of town. + +The food is pretty good. Their sauces are on the spicy side, but that's ok with us. They're still packed with flavor, and they compliment the meals. The carne asada burrito (enchilada style) is a large portion. Again, the sauce elevates it to being a little bit better than average tasting. The cheese enchiladas with their white jalapeño sauce were a little bit small, but very good. The rice that the combinations get served with is just so-so. Their chips are fine, the salsa is a little bit weak. The food quality is average overall. + +The service has never been that good. They're not particularly attentive or personable. I felt like we were a little bit of a hassle at times. The last waiter we had advised us to go with a combo plate because it would be cheaper, when it turns out, if you do the math yourself, it was about $3 more expensive. The manager's solution was to take $1 off the bill, and then comp our sodas. Hmm, ok. A warning then to you all out there that are watching your cost. Add your a la carte items up yourself and don't get pressured into the combo, especially if you don't want rice and/or beans anyway. + +The menu is also slightly confusing. The prices are average. The decor is nice. The restaurant looks like it can serve large groups and parties very well. Overall, Eva's seems to be a safe place to enjoy a meal, and we'll go there next time we head up that way.",review,jrY1RfNRtKsva2diyWyv6w,1,1,0 +xmjv8g356v8Qo55ICjG8rg,2011-03-11,4gElVx0ozu6OLz47Dcz4Bg,5,"I love CK's. Their happy hour specials are great, service is awesome, and food is tasty. Try the adovada pizza...it's goooood.",review,GeGDZ02UfARKBRl7LqKZuA,0,1,0 +dZb_-YeZGUWlYNd-nOXRYg,2011-03-12,89ZZ3F8-Eh6F4I2_2RwugA,4,The staff were very friendly and the place was clean and didn't smell funny like some other fast food joints.,review,Yk37VAp452K7FwHWd1rrQw,2,1,2 +x7M9x4AqyC-oYk0rajrOWw,2010-08-19,EN-_Qk792URNcoK4NFQQZg,3,"Had lunch at the Burger Studio yesterday. I always get nervous when there are not too many people in the restaurant at lunch or dinner. Usually a sign of some sorts. + +Ordered the Studio Burger and I thought onion rings (felt like I was down a quart of oil). What seemed like a long time to receive my food, I was unhappy to see fries instead of onion rings. Oh well. + +The hamburger extended over the bun which is always a good sign for a custom product. I was impressed with the bun as well, not a flat, stumpy bun but a high top with a nice sheen. It was delicious and the fries were good as well. Owner stopped in we greeted at which point I told him about the fries/onion rings and he immediatly comped me an order. They came out and looked very oily. Distictive beer batter flavor. Not that good....stick with the fries which are great. + +Overall....great tasting burger and fries and compared to the other guys (Zin, The Grind, Smash Burger) I put it right up there and a lot less expensive.",review,swJ6rmmGx4DCxosDfKTElw,0,0,0 +1NZLxU5WvB5roPFzneAlLw,2010-12-26,kGD9t1oKiTl8k9CkgjDYTQ,5,Ohhh this is the best place ever! Every thing I have ordered has been delish!,review,bKkoPvsgZje0p9uvUGSnFg,0,0,0 +nlFlIeziD-4nNUF2B337Yw,2012-08-07,EyWncY5l3mARzhoueTDHiw,3,"First time eating Cambodian food. I am not sure what it's supposed to taste like so it's hard to say if this is what cambodian food is.... + +Small, quiet place. Entrance was non-initutive to us for some reason, we walked in the kitchen. It's the door on the left if anyone was curious. + +On a Monday at lunch, we were the only people in there around noon. + +I didn't know what to order but I like shrimp so I went for it. I went for the Shrimp Ling rice combo. It comes with soup, rice and a pickled salad. + +The dish comes on a nice square plate so it makes the food 50x fancier just because it's on a square plate. Lots of shrimp in my plate ~ about 10ish and they're large. The shrimp was grilled and it tasted good but I wouldn't call it amazingly good that I was in love. I ate it and I like it but I thought to myself 'What is Cambodian food because the flavors don't seem unique? It seems like they grilled it in some soy sauce, maybe sugar, added more salt and maybe one or two other spices."" FYI - There's bunch of green onions in the shrimp, I think they add that more flavor. They aren't chopped into small pieces, it's like the whole stem but I ate everything. I always eat everything - I don't waste my food (it's almost like a sin not to finish your food unless you take it home... so nevermind). + +The pickled salad was refreshing. I like the soup, it was lukewarm and it reminded me of a Chinese wintermelon homecooked soup. It's like a mixed of Chinese style chicken broth with Vietnamese beef broth without the saltiness and msg. Adding the green onions to the soup definitely makes it 50x better as well - WOOHOO. + +My dish was $8 - pretty good price. Thumbs up to that! + +Overall, would I go back? Eh - I don't know. I need to try other Cambodian places or maybe I should just have googled about it...maybe Vietnamese food is better? Apparently, the countries are located near each other so it's similar to Vietnamese food.",review,qrX3s0BfiHQTH_gmnyysjw,0,2,1 +2czw5PzfPo20KlZLl3hOXA,2008-05-21,cjpHzoaKptS16gaVQcHupQ,4,"Thanks to Amy D. for also introducing me to this quaint joint. + +The smell of home cooking lured me in, Great menu selections with sandwiches salads and hot dishes too, along with the daily specials which I think is one of each (sandwich , salad, hot meal). + +Sandwiches come with fresh potato chips and a pickle spear, +I decided to try the Tuna since they don't put onions in it ,Hallelujah!(see pics) + +You know what it was pretty tasty, I even ate all my chips and the pickle! My only complaint was the bread was a tad dry, but hey it happens. + +Tucked into a commercial business park I never would have found this on my own, but I have fantasized about going back next time I'm in the area, Maybe Amy D. will take me out to lunch again :)",review,UsULgP4bKA8RMzs8dQzcsA,2,3,0 +K8pM6qQdYu5h6buRE1-_sw,2008-11-09,Y1WP45Y9N0NBwgmMw5PHKA,4,"Lo Lo's is pretty much what you'd expect a place focusing on ""Chicken & Waffles"" to be. Small, lively, full of smiling people all eating, well......chicken and waffles. The line out front attests to its popularity. + +After finishing the Phoenix 10K this morning, our group decided that Lo Lo's would be the perfect place to undo all of the health gains we had made. Little did I know that I would be undoing an entire year's worth of morning jogs. It was the sort of experience that makes you wonder if you should consult a cardiologist. + +We had a short wait for our table, but were able to quench our thirst on soft drinks, punch, and sweet tea. The staff was extremely friendly. Everyone who works here seems to love it. + +I am a big fan of chicken. I am a big fan of waffles. Yet, I have never had them together. Thus, I decided the only choice for me was their No. 1 Meal, called KK's. Three (3!) pieces of fried chicken, 2 waffles, grits, and eggs w/ cheese and onions. I figured if I was going to eat at Lo Lo's, I was going to go for it. + +The food came pretty quickly. The first thing that struck me were the two enormous globs of butter (1 in my grits and 1 on my waffles). In all my life, I have never knowingly eaten this much butter in a single sitting. That being said, it was divine. Everything was delicious and, while I am not a big ""fried chicken"" guy, I must say that all three pieces disappeared quickly. Other members of our group sampled the fried okra and the red beans & rice. I heard nothing but happy sounds as our table of 7 made approximately 15,000 calories disappear. This was followed by groans and calls for afternoon naps as we all piled into our cars to go home. + +Lo Lo's is one of those experiences that should not be missed. But, make sure to clear your afternoon and, just to be safe, you may want to consult a health professional.",review,Oq5CYkB4dQE_wmPgHu51bg,2,2,1 +rhf8H7KZsMHRAprI5-D3sQ,2011-04-27,k1wsoD_NPC7VvIMW8q5CPA,5,"My boyfriend and I stopped by to grab a bite to eat before work and long story short +-Greeted immediately +-Lots of variety +-Meat lovers pizza is amazing +-Ask for Tawnya she's really nice and a wonderful server +-Will be back, loved the excellent service!!",review,99soVZ-moXRSatBocoramg,0,1,1 +xM5F0cLAlKWoB8rOgt5ZOw,2010-03-23,IkB8WQbZH5G8Jsk2UCjchg,4,"The 4 stars is in comparison to other Chipotle's I've been to, especially in this area. + +I have to admit, when they were building this plaza, my friends and I tried to guess every day what it was going to be. We had it narrowed down to a Chipotle or a sushi joint (both would kill me for sure) and I cannot believe we were actually right. + +I am pretty pleased with this place. Both times I've stopped by it's been clean and pretty speedy service. Every time I come in, I am surprised by all the extra room around to the side and out on the patio and it makes me happy. + +I'm sure anyone reading this has been to Chipotle, but if not, or if you're feeling like trying something new.. my signature dish for the past few years has been carnitas bowl with black beans, corn, fajita, lettuce and a little bit of the dairy stuff. Wash it down with a Nantucket nectar apple juice and you're golden.",review,7zDqr2I0-xpw9HF5Ha54cA,0,0,0 +no_FXjscklz1SEzM_XnVgw,2010-10-06,A-5Pgc4g90l0H28_5VSLsg,4,"My sweet hubby brought me here for my b-day the other night. Note, this is a Scottsdale 5 star, otherwise known as a Chicago, California, or New York 4 star rating. This may possibly be my favorite restaurant in Scottsdale. Amazing food. Unpretentious and cozy atmosphere. Got the steak frites. Asked for veggies instead of frites and ended up with steak green beans. It was excellent. We asked for a smooth red wine. I had possibly my second best red wine ever. We also ordered a scallop appetizer and the escargots. Both were cooked almost to perfection - however lacking in salt for my personal preference, which is an easy fix. I would definitely go back. Don't recommend this for large parties. However, it is the perfect place for smaller, intimate parties.",review,19BunjXk7zhd811rF42U7w,1,2,2 +-GPiLRLH0MWH6Pjs0WDglg,2011-08-04,13gX_n_cltqukRUFkecuhw,3,Not a bad place to go but not my first choice. The food is good but nothing unique or special.,review,m2T71nxPgzrmXi-cKE3U2w,0,0,0 +ImghNwml8N-ncAqhXe00hg,2012-06-02,FeqsXONHeUPkBSuQ13qHVg,5,"This has become one of my favorites. They're friendly, reasonably priced and the food is always delicious. My husband and I have tried a number of their items, but my personal favorites are the BBQ pork appetizer, house fried rice, the mushu and lemon chicken. My husband also loves the house fried rice, the mushu and the orange chicken. One of the things that is so wonderful about this place is, the food isn't heavy. The sauces are light and fresh tasting. Plus, I'm lucky enough to be in their delivery zone. When I get delivery, the food is still hot and tastes like it was made just a few minutes earlier. + +I have yet to be disappointed by anything I've ordered here, and to me, that's a sign of a good restaurant.",review,CEEIQq93JO8aSRx25wir9g,0,2,0 +28ycqW56i70yM_C0ejNv9w,2011-09-12,jkKs8L_RM_mPCN1iapMKlg,4,"So it was my second time when I actually enjoyed what I was eating because we actually knew what we were ordering. And the broth was a lot better than the first time. The first my friends and I ate at Tien Wong, we had ordered the Ying-Yang pot, which had the spicy and mild on each side, it was okay. This time, we ordered the Lemon Grass one. Which I highly recommend!!! It was so much better than the Ying-Yang. + +NEVER NEVER NEVER get the quail eggs. It was a waste of money. and make sure to get lots and lots of beef slices. That's like my favorite part of eating hot pot. I like eating the clear Asian noodles one the most...it doesn't make the broth all thick after putting the noodles intot he broth like the udon noodles. + +I also really like the fact that they're open really late. Midnight snack!!",review,QjThuzpa1Urs89sC3vhuCA,0,0,0 +jqZKv-7F54guDLalXEjHxg,2010-06-28,TO9qLQS6OS-oejH-mAXYpQ,2,"I was severely disappointed by my experience at Five Guys. With all the hype that this chain has garnered, I found that little of it held up. As soon as I walked in the door I was overwhelmed by the smell of smoke that the griddle was wafting through the restaurant. There were plenty of people cooking and preparing the food, yet it all looked chaotic and unorganized. + +Just as other people have mentioned, you can choose a whole array of toppings to customize your burger. That capability is great as long as the cashier rings up your order correctly (which mine was not). Needless to say I was less than thrilled that I had to battle the smoke so that I could re-explain to the counter staff how my meal was supposed to be prepared. Along with my burger, I also ordered the regular-sized Cajun fries. These were definitely fully-seasoned, so if you are averse to spice don't order them. The regular order of fries turned out to be a modest cup of fries stuffed in a brown bag full of more fries. It is almost as if Five Guys' strategy is to overwhelm you by their generosity with their fries, so that you forget that their burger is mediocre and their fries are sopping wet with grease. + +The AYCE peanuts were good though; it is a shame that these were the highlight of the meal.",review,JEjzUX-9ZjZl0nXs6kgc6w,0,1,0 +0nGjXTpUtpIJl10PL0eBGg,2012-07-30,2wpN3o5dDP0PnzbIYHg7GQ,4,"Sharp looking place modern meets old dinner, good food nice and simple breakfast menu. Staff could have been more friendly, but over all solid place will be back again!",review,C3VpWgCsdwyYs6Xoy1JcJQ,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-02-01,JvP-DjOdMZzihX8YMDar1Q,1,"You want good food? You'd be better off smuggling goat cheese in your boot and risking an anal cavity search for doing so than eating at this airport. + +You want scenery? Try desert. + + +You want a comfortable seat to wait for your delayed flight? Well you are in the desert so you'd probably better off finding a cactus and straddling it face first. + +You want a relatively close connection for your flight? Well tough shit. Oh yeah, they've got people movers but somehow they have this magical ability to disengage people's legs. Yeah I know it sounds crazy but as soon as people step on to these things their legs stop moving and they plant their fat ass right in the middle of the walk way. Whats wrong with your legs you mammoth!?",review,740We6l5ENHvwTbUPX-g5A,0,0,1 +UVEnZjATEGkKLFdzV_dTvA,2011-10-30,72WxVb_pMw0-xe1othMG5Q,5,"Yummmmm .... so authentic + +This is one of the few mom & pop's type of restaurant in N Scottsdale that taste oh so authentic and fantastic +This is by far my favorite italian restaurant in town, way better than the big chain like Brios (don't get me wrong, they are not bad either) + +It is not a fancy place but very cozy. And it does make you feel like you walk into one of the ristorante in Italia .... the owners are 100% italiano and they only use the freshest ingredients .... I had the best lasagna there, you can taste the texture of the noodle, the creamy-ness of the chess, the meat favor and the freshness of the tomatoes... totally awesome. +Had tried the seafood linguine there too .... oh so good as well and with plenty of seafood ... definitely 2 thumbs up. + +During winter, make sure you make reservation ahead though .... this place seems to be snowbirds' favorite too",review,sUTQfzzxxc2c3g6cFH19pQ,0,0,0 +X5QTGpPfqXFtmtizsGAksw,2009-10-06,RoY992mnw-IXLUXLQ3RG-A,4,it's all about the queso fundido...and the jalapeno margaritas. trust me.,review,scxmg3Pu_jjpXSyFWH8-Cg,0,0,0 +8ZwO9VuLDWJOXmtAdc7LXQ,2012-06-11,DzFM5PU1lahcbNeNfW1Ibg,5,"What a beautiful hotel! The Clarendon is truly one of a kind. The staff goes above and beyond to make sure you have everything you need...and extras :) The pool area is gorgeous and the atmosphere is delightful. I had the opportunity to meet the owner, Ben Bethel. What an astonishing young man he is! I don't know which is more impressive, his efforts to make the hotel as ""green"" as possible or the fact that he helps guests with their bags as they walk through the door. I can't wait for another excuse to stay at the Clarendon again!",review,nIAVUDO8VeLIlFH3RMu6SQ,0,1,0 +PEHJjxdw11TGFma9Zhz3ng,2012-12-26,eYCFfbbZ62Bsod8Ip6B6Jg,4,"Damn good pizza! A little spendy (hence why I didnt give them 5 stars) for what you get but regardless, the pizza is pretty damn good. The wings are decent, I think there baked instead of fried and the sauce seems a little weak. They often have a 25 dollar special which includes 20 wings and a large pizza or some kind of 2 pizza wing combo for around 40 dollars. I'd recommend this spot to anyone looking for some family fun times surrounded with fun people and good food.",review,paFAm3Ym7rls7vilYXM55g,0,0,0 +s685YHkO3lcId41bjp5KOw,2011-12-20,TKvWAVGRH7EnEx64ayBRww,3,"Overall good place. Pizza was good and a great selection. The service however was really slow and non-attentive. Took 30 minutes after being seated to have wine and sodas at the table. Cute place, but the acoustics need some help, very noisy. Would go back if in the neighborhood.",review,MIFdtqqbw3bw4YRf88GFQQ,0,0,0 +OllL0G9Kh_k1lx-2vrFDXQ,2010-02-05,UkN_tB1mKzVst5rWFX6iQg,3,"Overall , I like this place. A smal hole-in-the-wall place with straight forward, cheap, non-greasy Mexican food. I can dig it. I personally think the one on 7th st is better, but I will chock it up to growing pains since this location's only been open for about a week. I went today for my all time favorite Torta, but they didn't grill my bread so it wasn't nearly as awesome as it usually is...yes, I'm picky",review,gcyEUr4DXcbjnGRAWFtfAQ,0,0,0 +C1tH3sEQra33EOTk56Eu1Q,2008-08-14,970d7neRyoMo3HBxx84zVA,5,"My friends kidnapped me for my birthday (yes, because they are wonderful), threw me in the back of my friend Jill's van and rushed me off (blindfolded of course) to Radio Milano. + +My friend Lindsay knew I had been dying to go there (I love Postino--same owner and across the street--so I just knew Radio Milano was going to be amazing). + +I've never met the man that owns these restaurants: La Grande Orange, Postino, Radio Milano etc (Lindsay apparently once did, lucky girl) but whoever he is, he is a business genius. + +The atmosphere of Radio Milano was sophisticated and classy without being uptight. Everyone was extraordinarily nice and helpful. True to form for this restaurateur's style, there is a large vase of (fresh every day) flowers that compliment the warm glow of the restaurant in general. + +Our server welcomed us with what were presented as ""Italian Potato Chips"" and a delicious dipping sauce. + +The homemade ginger ale is so strong in taste, really good. + +I ordered the special for the night which was a vegetable lasagna. It was soooooo good. + +I'm glad I have such awesome friends to kidnap me and take me to great places.",review,nx2PS25Qe3MCEFUdO_XOtw,3,4,2 +LfKPiwth-lGmCKTxlDoV9g,2009-06-22,RVH6XOqU5CboDRPaUW-Z9Q,5,"We had a fantastic experience here! We went on a Thursday evening and with the misters on, it was still very pleasant sitting outside, even in June. The wine list was extremely affordable - most between $25 and $60. For Scottsdale, this is a steal! We shared an appetizer and a main entree. The appetizer was delish. Grilled bread (perfectly grilled, not so hard that it hurts your gums) with three spreads - an amazing goat cheese and marscapone, eggplant, and hummus. Also, they serve house bread with a great sun dried tomato butter. For our entree, we shared the fish special, which was a sea bass with artichokes, fingerling potatoes, and spinach. Fantastic. The service was also great. + +I've come to expect any service in Scottsdale to be rude but this place wasn't! Maybe we were lucky, but I enjoyed our experience.",review,dnfdifcm5krZlJWlZtdu7g,1,0,0 +Yiw1ml0XVBDIQBTLXHNGmQ,2009-04-23,Un0SU5J4GyIm9cJ3twT42g,1,"After a day full of meetings, I gathered the hubster and we headed out to eat some Mexican. I had visions of chips/salsa, and margaritas. We headed to On the Border on Stapley near Baseline but found that this location had closed. Egads. Then we remembered The Salty Senorita across the street. And thus begins the saga. ""Hi, are you here for happy hour?"". We said no but were seated in the bar area anyway. At least we got a booth. Lucky us, huh? Joe ""lots of product in his hair"" brought us menus and took our drink orders. He was pushing a certain type of Tequila and I took the bait, with the stipulation ""on the rocks with salt"". My drink, and hubster's water arrived and we ordered. The chips and salsa AND our dinners arrived at the same time. .Really Joe product??? Chips with the meal? FYI, chips and salsa here aren't complimentary, you have to order and pay for them. It was then we noticed ants had taken over our table. At first we thought it was just a couple but noooooooo. The hubster brought the ants to the attention of Joe product and he feigned concern but did not offer to sit us at another table. Now the hubster's getting annoyed. It's hard to enjoy yourself when you are swashing ants off the table. Our booth was by a window but we didn't see any influx from the window of ants, so we're not sure where they are coming from, but they don't stop. Hubster mentions it a second time, and then, again with feigned concern he offers to move us to a different table. By this time we are almost done eating and I just say let's finish and get the hell out of dodge. Our bill comes, we pay, and hubster asks for the manager. Hell, he's even younger than Joe Product and looks like he just woke up, thus we'll call him Bed Head. Bed Head offers to buy us a drink on the house? Really? That's your solution? He said he'd make sure other patrons aren't seated in this area. Egads, no thanks, we just wanted to leave. We weren't after free food, but the offer of 10% off or some kind of compensation for sharing our entire meal with ants would have been appreciated. A free drink? Hey,maybe one of those $60.00 margaritas would have made everything alright! As far as the food goes-I had the chicken antchiladas (get it, lol) with beans and rice and they were dry. I like my enchiladas with oodles of sauce and cheese, and these had very little sauce with a little design of sour cream on them. Hubster had a steak and avocado salad. He said it was ok. +This is a never return place for us. +And a note to Joe Product-chips and salsa should have arrived WITH the drinks, and before the meal.Reflecting back, we were there on Earth day so perhaps having ants share our meal was relevant. +The margarita gets a 7 out of 10 limes as it was pretty good.",review,H5Awp19K54wIct2Oyp170w,1,2,4 +corPOxxIBRJ7DSpryYvorw,2010-10-04,tD_iJjhVjV4EKnFNi-y0jA,4,"We were staying at the Marriott Canyon Villas and went to Roys for Happy Hour. Between 4:00 - 6:00 Roys has a great Happy Hour. $5.00 drinks, including their Hawaiian martinis and $5.00 appetizers. We had lobster pot stickers, tuna sushi, and California rolls. All were delicious. I've never eaten a meal at the restaurant but if you want a nice little buzz and a pretty full stomach in a lovely environment on a pauper's budget, this IS the place. Don't miss it if you are nearby.",review,mk57018kISC-jSaSu1zSsA,0,0,0 +iqLVYrsX25XUZqjRjvbYfg,2008-12-31,2UNmP0KzzmpHJ9qHCWUhcw,5,"I lived in AZ for a year whilst at JP Morgan. One of the few great experiences i had out there (back in LA now) was, going to their Good (yes, capital G) food places, they were really really, really Good...certainly on par with eateries I've experienced in London, NYC, Paris, et cetera. +I finally found a neighborhood that had (gulp) personality: the Roosevelt district. I was so happy and comfy in my hundred-year-old guest house with hard wood floors, huge pre-air conditioning windows, a sizable green backyard, and an unobstructed view of the teenytiny Phoenix skyline. And just down the street from my extraordinary little residence was the absolutely amazing, wonderful and perfect Tammie Coe (the person AND the bakery) who had just opened their venerable doors. +I was there every morning for their exquisite breads, cheeses, sweet things, perfect euro-standard coffee, lovely attendants....I miss it so much. +It reminded me of Patisserie Valerie in London, or any good bakery in Paris...with a cool, fun and welcome American twist. + +I shall always go back to Tammie when ever I find myself in dreary Walmart-ized Phoenix. Tammie, you are an artist. My only hope is that you will consider opening a location in Los Angeles. Eat your heart out, Nancy Silverton!!!",review,FkOXrb1yaDsM0NQImdvnxw,3,3,2 +Q2FaJ3zB6ZuGgvqUqhdc_w,2012-10-24,BXcogMpqe8Gg4pHLWOKncg,4,"I liked this place. Great Atmosphere and music. Their Guacamole and Salsa is really good. Service was good too, My server (forgot his name) came by often to check on me (Or because he thought I was gonna run out on the bill) and was really nice. I had the Carne flatbread, surprisingly good! Id definitely come back when I have have the money + +Good place for a date as well!",review,kyo2XtO9-H6IJ3zmvqPClQ,0,0,0 +qgJZUKNVY-LbGKk6XEP3JA,2008-03-22,MdBWkUUw1A_pHlICB_aPZQ,3,"Mucho Taco falls closer to 2.5 stars-average. The prices are very good and the staff was very friendly. + +Let me start with some positives: the salsa was fresh and tasty as in these were whole tomatoes 5 minutes ago. veggies on the tacos were also fresh and crisp. + +I had a fish taco & a carnitas taco-total about $4.50. The fish was decent but the carnitas was pretty gristly. I overheard the kitchen staff talking to a customer and found out that they make liberal use of the ""L"" word here. That's right, old school cookin' for better or worse; Lard.",review,P2kVk4cIWyK4e4h14RhK-Q,3,2,0 +l5vzFaqSjvxZiRn0MJeKkg,2011-09-19,Rc6deYO8GYdUjqhqAs9wKg,4,"Wow! Just left Apple with a new phone and I could not be happier! +Such a great experience compared to dealing directly with Verizon. +The employees were welcoming and friendly and helped me solve my iPhone problem quickly!",review,m3dRCU88YU9_GawEqX4gBw,0,0,0 +X7FAAKkwOwaUUpR8QPChyw,2010-12-09,sAp3fDmYX4ieZEaaVrRQLg,4,"For those of you planning to visit us, Babaloo's is no more. For those of you who know us I just wanted to take a minute to leave a heartfelt thank you. + +When someone opens a new restaurant it is an exciting moment, a nervous moment, a scary moment all rolled into one. If the worst thing that happens is a rack of wine glasses falling from the roof in a hail of glass then the opening can be considered a success-many have endured far more nightmarish openings in this industry. + +As the weeks, months, and years go by a funny thing happens to the special restaurants, the good restaurants: they begin to feel like family and people come back. This was where I came in, almost a year ago today, as a simple restaurant server with over 10 years of previous restaurant management experience. I was not the best server, but I noticed that both customers and employees alike were always grateful, and made me feel at home. This was the beauty of Babaloo's-it felt like family. + +To Robert, Myra, George, Adam, Emily, Jon, Rob, Erika, and anyone I may have forgotten I offer my deepest thanks for allowing me to be part of your lives. To all of the wonderful people who came to see us over and over again, I would far prefer to work a table seated with people I know, and you all never failed to help me out with that. Babaloo's did not close because of the folks that supported us, it closed because sometimes in the bleakest economy a business fails, even despite the greatest efforts of those trying to keep it going. +It was a fun ride. Thanks Rob!",review,6fQc4fxb9tE7397B-AS_Og,2,0,0 +KO9CpaSPOoqm0iCWm5scmg,2012-04-02,ULljARpbJfCnesJMeNNa0g,4,"Place is tiny and relies mostly on outside seating, and parking is a bit tough like everywhere in that area, but worth it. The iced tea wasn't good, but the Southwest Chicken Sandwich was delicious...definitely recommended. + +Parking a couple blocks down on Main in the art district was the best we could do after circling around..but the walk isn't bad.",review,v3SfhJicbO7qdXxgY2gRLw,0,1,0 +TfTlOE6h9E9o34dEkw9L_w,2009-11-10,dXcx7FyIAXiLT6u1uAy8ow,4,"I'm so not a 'pub & grub' kinda gal, but since this place saved me 2 times during a Science Center visit = pretty ok. You can walk across from AZ Science and make this kid friendly pit stop in the middle of the day - i really am not familiar with anything else that 'now it's the parents turn' sorta thing close by. + +Fun pool table in 1 of the rooms. Really good steak fries, fish and chips are good, and so is the french onion soup. Since i am a wine drinker, this is not the place for wines by the glass, obviously it is a beer place, and me not being a beer drinker, not my cup of tea - ah~hem, pint that is.... + +sooo, all-n-all a fun thing to do after sacrificing for the kids!",review,h7v_M_0-YVpSVZ2WD7FpAA,0,0,0 +Oxgiv8PVn4RXth_bHSbB7A,2011-01-15,hAL9SyuYqYfDoJYccUcK_A,4,"Alberto was so cute! He cheerily greeted us and showed us to the bar. We ordered the bruschetta with wine while we waited for our to-go order to be prepared. Alberto visited with us briefly to ensure we enjoyed our bruschetta - and we loved our appetizer! YUM! Fresh, fresh, fresh tomatoes and bursting with flavor! It was fun just being a part of the experience at Alberto's!. + +Try the desserts!",review,V0r_ncTQawicaHAc8TCb4A,1,1,0 +dsMvINhoQbIQgSRTBv2B6g,2012-02-05,TtHwbtvtkZQjs_iY75vh-w,4,"Great food and very knowledgable/helpful staff. A little expensive, but the food is definitely worth it Have had pasta on one occasion and salmon on another....loved them both. Will definitely be back to support this great restaurant!",review,_8jEwH_N-hUXIG6X11H2VQ,0,0,0 +LHzVPddSPzMECho55zCf0Q,2012-02-16,TR7dLYpW53_RdwBN50Ck4g,5,"I am a G-Spot addict! Had to limit myself from going every week though. + +Took the hubby there after a date night the other weekend. It was his first time to try gelato. He's a ColdStone guy 100% and he really enjoyed the Tiramisu gelato! + +The focaccia flatbread is awesome!!! And I would post a photo of the Focaccia Flatbread I got earlier to eat along with my homemade salad, but (in the words of LOLCat) ""I eated it"" and forgot to take a photo first. :) + +My favorite salad dressing is the champagne vinegarette! +The mintchip gelato is freaking awesome! +The stracciatella gelato mixed with mint - even better!!! + +G-Spot is so awesome, that I just walked back over and got my Mint / Stracciatella combo. Baby C wanted something sweet! :D",review,9SZBVZ-mxebOVa1BlWFtWw,0,0,0 +bzDs0u8I-z231QVdIQWkrA,2011-05-15,otWxlRqjeVYUOD7XndefDw,3,"Here is my honest assessment of Los Reyes de la Torta. It's a three-star place. The atmosphere is a bit dumpy. My apologies to those who think reviews should focus strictly on food, but atmosphere is what I notice when I walk in the door. Plus, despite the fact that the place was mostly, we were led to the table closest to the restrooms. Seriously? + +The star of the show here is obviously the tortas. I tried the egg one, which had cheese and a very generous serving of sliced avocados. This torta was delicious and a great value. The other one I tried had chicken, onions, and some other stuff. It reminded me of what they have at the Great Steak and Potato Company. Not that that's a bad thing. For the tortas I give 5 stars. + +Other stuff: + +No alcohol. 'Nuff said. + +Greasy potato chips as a side? That was kind of a bummer. I was craving tortilla chips or fries or anything a little more exciting than potato chips right out of the bag. + +The flan was really dense and tasted like it was prepared forever ago in a huge vat. Skip it. You probably won't be hungry anyway after the tortas so don't get tempted by the pictures on the menu.",review,YL8SKv-pwx-Wj9cwGYrn3g,2,4,1 +V5QdxePG-pGPXVPHSLLM9A,2010-10-31,cHSfL7eHpZa1fJrvUv7cOA,4,"This place is exactly what a local coffee shop in Phoenix should be. Lots of sunlight, good iced coffee. (Also, apparently, they serve wine!)",review,-sVRqx8I-STvI8ImUhY4bg,0,0,0 +-gefwOTDqW9HWGDvWBPSMQ,2009-04-15,tZsoQrO0gxYr7OCaevDJFg,5,"I take the light-rail downtown sometimes just to go here. I walked in the first time to a bustling, energetic, singing, cheering crowd and thought, ""where the H am I??"" I felt like I had left Phoenix and ended up in a far away magical land of wonder and excitement. Food is decent for a bar, great beer, great local music (it's the first time I saw The Waters). Downtown Phoenix needs more places like this.",review,q0KigjVBtb6dfRjX3QJbsQ,1,1,1 +Vx7-xbazum3dgo3Qj3i4pQ,2012-04-07,sNGiyLGXukTvlrZbJjhjxA,5,"Great food. Good service. +Salsa is the best. Enchiladas are very good. I don't know what they put in the sauce, but damn is it good! No better Mexican food anywhere in Scottsdale.",review,Syc4pbEkL3bbzjO4X4HhQw,1,2,1 +S8O3BoCDEK-te8U-0IvZog,2012-10-17,GxEobraJn13J15wQ0RGWxA,5,"I went to Tommy V's for dinner last night with my husband and several of his clients...WOW! This is my new favorite restaurant in town! They have a private dining area that they can close off with curtains and turn the music off, which is perfect for a business dinner. I am vegan, one of his clients is doing the paleo diet, and another is gluten free, and they had DELICIOUS options for all of us, while also serving AMAZING pasta and fish dishes to others at the table. I can't recommend this restaurant enough. I am just sorry I haven't discovered it earlier. YUM! YUM! YUM! P.S. Very cool atmosphere, too!",review,XJAtcMnQ1O7jTuFz3Kbpsg,0,0,0 +rIonUa02zMz_ki8eF-Adug,2010-06-20,aiJToneeHooi67KvmQ1vug,2,"Eh- it was just ok. I was told about the must-have Cajun fries, and they were just ok. Not spicy at all and appeared to be just like Cajun season salt sprinkled on regular fries. The fries were Kinda soggy and very greasy. Burger was ok. Tasted fresh, but I didn't know a ""regular"" burger was 2 patties. Yuck. + +Sadly- my favorite thing about this place was the fact they had Mello Yello. Sweet. + +It's good enough to eat- but it's no where near the quality of Chuckbox which is right up the street. Shoot- fatburger a stones throw away is better. + +Its good enough to eat again if your friends wanna go, but its not a place that i'll be craving or want to search for parking to eat at. + +Oh well.",review,kRH3HttbiNoD-BgomNVVtA,0,1,0 +kBF7JSs3VGdjjcf46vk4nw,2011-08-30,i3xPmdqIhhlnM91_KBT9lA,4,Great sandwich,review,F1z0661Q9JIOMugXvrL12g,0,0,0 +yeLq-452CkaKw1ynn0nRNw,2008-12-13,g1Mp7ozhu4HwZDYanxUZCQ,4,"Never been in - but I get pizza delivered from them now and then. I am a New Yorker and to call me a pizza snob probably doesn't go far enough. + +The crust is crispy, thin, and foldable, the outside edges, crispy and bubbly. Great mozzarella. I have never been disappointed by a topping. A little greasy, as it should be; it reminds me of NY pizza, and that's a big compliment coming from me. + +We don't have a Ray's in Central Phoenix... but we do have Mamma Mia's. + +Yo! Tony! You make a good pizza.",review,HZeFzs42f0iGaA-sP_hUnA,3,4,2 +nRO4tRwimU12hg7Cnz__iA,2010-03-14,dlan_R8mUu-Y1gLdgaVKBg,4,"Looooove this place. I have to come here every time I visit Phoenix. The rice with raisins and almonds, the baba ganoush, the hummus, the dolma, the falafel, the veggie patties... it's all so delicious and vegetarian-friendly (although they have plenty of meat options for the carnivores). The portions are HUGE, so come hungry, share, and/or make room in your fridge for leftovers. Eden's Grill is staffed by a super nice family, and even though I'm not a regular, I feel like one whenever I go.",review,cJNvYzqahf3gEM3OV45QdA,1,1,0 +YEQkTCmphjr6XKPh4m93AQ,2011-02-02,CJHMqadKEgoDnKo-KaIbzQ,5,"Update! + +Went back last night for dinner, this place is still awesome. I had the Las Vegas Rolls, they were pure deep fried goodness.",review,GlVIC6S7gs2MgWp89oDu7Q,0,0,0 +N1xMSUfv1GmfHGa9a3VuJw,2010-03-02,xbvvOizpHzERSTxQXPqjkg,3,"I recently attended a conference in AZ and stayed at the Squaw Peak. The grounds were very nice, and with all the on-site activities this hotel would be quite a draw for the kids. + +Being I don't have any kids, plus it was too cold to be out by the pool, activities on site were pretty limited. The gym facilities and the comfort of the bed made up for the lack of adult festivities. The gym was good sized and had ample new equipment. The bed was really comfortable and had great pillows. + +Great for a family vacation, A-Ok for the business traveler.",review,TroANF3f2PuYeVfSItxxaw,2,2,0 +cInzGnaFZ3EIItvFXl1MvQ,2011-03-15,7TaROqdIVPdw1pGt5U85lw,4,"I was in Arcadia today and saw this place so I had to try it out. The menu has some variation from the normal Thai restaurant as well as some classics. I decided to try the jalapeno curry. I was surprised it was not as spicy as I expected but the flavor was excellent. Service in this place could not have been better, everyone was very friendly and attentive. Lunch prices were very good for the quality of the food and was an excellent value in my opinion. I'll definitely be back to try some more new things.",review,i0A-c2yoHySmFhRV2sDR1g,0,0,0 +J7DYRCtU9Tdtja5c7k1sjQ,2012-01-04,EUVHPjmBRDwqwpv7QLJE7A,4,What a shame! It was a great place to hang out :(,review,zwjIdDClpnTqsly-O1Pe7g,0,0,0 +ozWBsvbeM2LSPsRDsYKr1Q,2007-03-26,h9dWMKcTM3EwrfRhL7hGfg,4,"The only big Asian market in all of Phoenix which is, shockingly enough, located in the Chinese community center. + +They have live fish and every canned good you can think of. + +Want some canned unagi? No problem. + +Rice cooker that doesn't suck? Got'em. + +Some frozen shrimp balls? Win. + +They're pan-asian everything.. and if they don't have it, you're hosed! This is the only game in town.",review,FPWwCD73C0PlRdDfJ6Tuqw,2,2,2 +Pectv4bzzUVs0FQ6HQjW8g,2012-01-31,q1XKZRjkVap5QGuZQVPIRA,4,"Am ashamed to say I have filled up my punch card, twice. Usually get the Hook and Ladder. But the main reason I keep going back...the magical Coke machine of Awesomeness.",review,SC7xQZ_7l4dex8JNMHg8SA,0,0,0 +7SO_rX1F6rQEl-5s3wZxgQ,2010-01-11,86Ee-P5ePzDj45CNDIlWOw,5,"Really good pizza has to be among the most perfect foods in all the world. Really good pizza would likely be on my last meal request list. Specifically the roasted corn and goat cheese pizza at La Grande Orange Pizzeria which has to be near the top of the list for all the great pizzas the two us who contributed to this review have consumed. And that is a lot of pizza. + +We were visiting Scottsdale as tourists when the concierge at the resort recommended this place to us. Bless her. Very convenient too to be able to shop for wine at La Grande Orange grocery, adjoining, and other goodies while we waited on our take out pizza order. http://www.yelp.com/biz/la-grande-orange-grocery-phoenix#hrid:4cXbhzxxtmExF9kRjmFViQ/src:self + +The only hitch here is parking is terrible during peak hours. So it goes. The pizza is worth the parking hassle. We're on our way back to Scottsdale in a few days for another visit and La Grande Orange Pizzeria is on our ""go"" list again. The Rocket Man pizza is calling our name this time.",review,m59OpbCyRwXSvERXeevWqg,2,2,1 +GIGI8bJfN6HyPzmEW-QqjA,2012-02-01,r8tMXAsAHUEB3on09foX4w,3,"Had lunch at Zinc for the first time recently right as they were opening. Considering they were not yet busy, we had pretty mediocre service. To begin with, we were not offered bread. Since it was our first visit, I wouldn't have necessarily assumed we would get bread, but I noticed other tables had it, so naturally I felt slighted. And then the cardinal sin of serving. I was maybe 25% through my meal, when our server appeared with our check and asked if we would like dessert. Well, I don't know. I haven't really eaten yet. My husband wasn't even finished, and he eats like he's still in the military. Needless to say, I just took the check and short-changed her tip in return for short-changing the time I was apparently allotted for eating. + +As for the food. I had the macaroni au gratin with smoked ham as well as their up sell of parmesan truffle fries. I liked the mac and cheese. Not the best I've had, but pretty good. The fries were okay. But I've never understood the concept of dressing up plain 'ole french fries and serving them with ketchup. If I'm not going to get a nice aioli or some other special dipping sauce, I'd rather just have the fries sans all the other crap. + +I wouldn't necessarily object to a return visit if I'm in the area, but I won't be breaking down their door. Just as well, I doubt they would care.",review,wHg1YkCzdZq9WBJOTRgxHQ,6,7,7 +hyff2JyqQgf85MaJZslHCg,2011-05-30,bka-9ewQ0qeQWdE2_v6Lkw,3,"Missed the happy hour but the Margaritas were not expensive. Waited for an outside table but had to wait inside because you are not permitted to wait outside with a drink in hand. .( As an aside saw 2 arrests on Mill Ave after dinner becuse 2 guysgot caught drinking beer not so carefully disguised in brown bags.) Well worth it on a beautiful night.Great for people watching. Yes, cornbread is good but the nachos with 3 types of salsa was better. My entree was a chicken, mushroom artichoke stack. Decent but not fabulous. My wife's mushroom enchillada was better. .",review,ELzKYmr0EXuCUG-gKgBGpQ,0,0,1 +zn9it0OA4lUdLYgcMSjlVA,2012-05-14,0Ag3IzSaA4YdZ6L3Z1LzHA,5,"A very professional company that takes the time to deal with you on a personal level. +With great reassurance from Nate and his team they were able to handle the short sale of our home with very little stress and in a timely manner. +They really helped when we thought no one could. From beginning to end we were always kept informed and they got the job done.",review,o4FO1hIiS4W2-i2QImJu0Q,0,0,0 +SK04ABcwoEtvIZ3VOZccPw,2008-05-30,bp452dc0Y6n8XRWXjpACvw,2,"Hate is such a strong word.. I try not to use when I its not really called for. When I set out to Yelp the Safeway across the street from me and the Mr.'s place I thought of using that word to describe how much I don't like this Safeway. Of course it's warranted, they pissed me off! + +Okay you know how they always do BOGOF on milk.. well me and the Mr don't drink that much milk so the cashier usually just gives me half off the 1 gallon. Well this time she forgot to and I didn't notice until I got home.. so seeing that I used to shop here once a week I figured Id just bring my receipt back the following week. Well the following week I went in and showed the receipt and the dumb bitch behind the counter was like, 'what am I supposed to do about it?'.. I explained to her what usually happens as the cashier gives it to me for half off.. she then proceeded to ask me which cashier was doing that, 'it's not our policy.' +After going back and forth for a few minutes I finally just told her to give me my 2 bucks.. she told me if I would have brought them the receipt back the same day they would have done something about it. Are you f-ing kidding me? Whats the difference besides my being inconvenienced having to drive back there. So I finally asked her if she was willing to lose a potential lifetime customer over 2 bucks? She responded, 'there's nothing I can do for you.' I then told her that her customer service skills suck and that I will NEVER return to the store. + +I guess never say never since I went into my very much disliked Safeway the other day. Believe it or not they make a pretty damn good sandwich and I despise Subway. So the 2 stars are for the yummy sandwich and the super cute guy who made it! + +So much for my convictions?!",review,lPaYMDmJbAnv_3pmZH_inw,1,1,2 +dcd3C1gWv-vVdQ9XYV8Ubw,2011-12-08,tHxc2gHEq-xiysjxiYqwLA,5,"Holy frijoles- this place lived up to the hype. I'm surprised how how good the pizza is here in Arizona. Very tasty, and definitely some of the best pizza I've had in the valley. The only downside is that there is usually a long wait to be seated, and then once your seated, it takes a longer wait for your pizza. The prices are average, the service was so-so, but the food was excellent! Nice location too, right in Old Town so you can have a drink at a nearby bar while you wait for your table. Cool place for date-night, or to have dinner with family. It's fairly casual, but charming at the same time.",review,lmiDCrmas8TxRsbIGZX9Pg,3,5,2 +ntN85eu27C04nwyPa8IHtw,2008-09-10,nMaKf-Uc-hdGsd7yP8f9fQ,4,THE LINE IS HELLA LONG!!! so is the wait!! other than that I thought it was good..... Oh yah phoenix is hot.... and you will be standing in line outside!,review,atqpfEWIjCjjcLvJBBgXEg,4,2,4 +F0ZXhPJD8yNS3xzTxsichg,2011-02-18,SHDqtHKimfye1Hl6SAJmJg,4,"I have had the opportunity to watch games at the Staples Center, and Honda Center in Los Angeles and Anaheim. Both are great arenas and are very fan friendly. Jobing.com is totally different, and that's not a bad thing! I really enjoy the arena is in the same complex with restaurants and movie theater. Great place to hang out before and after the game. Parking is great, I actually had a parking pass and did not use it. I just parked at the west gate parking lot. The arena was very easy to acess, and we had a great time. We will be coming back many more times.",review,UCQNrwN4_hHHTWYa8cqe_Q,0,0,0 +Edj0quZE5k1WcAtf883j6w,2012-05-01,wqW3Q3gpZ8nGuRtqDECAXQ,4,"Very impressed by Shady's. Really enjoyed the atmosphere here. Reminds me of an old school neighborhood bar in Chicago. The bar has a good selection of beers. The bartenders can make a pretty good craft cocktail also. There's no cocktail menu per se , just let the bartender know what you're interested in and let them take it from there. They show old school movies on their TV and have a pretty nice selection of music in the juke box. Definitely one of the better places I got to visit while in Phoenix.",review,DzD2p4Ec87NQvVwlpEdhJg,1,2,1 +XNSito__Fne14TXU0vz1Qw,2008-07-31,isuV4yXdQn1zRydCBLeZ2A,5,"::Sigh:: + +I love places like this. It is adorable and unique and intimate and perfect. The outdoor patio looks like a great hang out spot (but obviously it is too hot for any of that just yet) and the interior is small and intimate. I was surprised when I walked in as it was much smaller than I thought it would be- but who knows where I got the idea that it would be a gigantic place. + +Our server was hilarious and fun- he happened to be from Ohio and informed me he was a Buckeye (I'm from Michigan, but I'm not a Wolverine so Buckeyes usually don't hate me) and was pretty cool about taking my fun jabs at his home state. He was super attentive and even was nice enough to give me directions home (horrific sense of direction). I kind of wanted to be best friends with him. Anyway... + +I had the one organic glass of red wine on the menu (he brought me a sample first) and the Pasena. Both were great beverage choices. I also got to nibble on the tomato/mozzarella and flaked tuna bruschetta and was pleased with both. I'd go with the original. + +I dream of the day that I find such a cute little place on the West side (feel free to suggest one if I'm missing it). The atmosphere rocks, and the unique booze options only add to the charm of this place.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,2,3,2 +u2hGxSbpIOZZ3KliIELuTQ,2009-01-29,eW5Ag3SvpjtYYZnwnLPe2g,1,"We've eaten here a few times, and the food was always good. However, the last time we ate there, I found a BUG in my food. When we complained to management, they still thought we should pay for 50% of the meal. Never eating there again.",review,0XAQT93R8-IX65MtF3Ikzw,0,0,0 +6ie9xvy2WW1pn7RuBvGNhg,2010-10-10,rs3B64v_X8uq2r1oGUcW5A,4,"Persian food... marinated meats...mmmmmmmm + +Try the soltani - one skewer each of koobideh (ground beef) and barg (pieces of filet mignon). Along with the accompanying basmati rice, it's an extremely satisfying meal. And if you want a different take on stews, try their ghormeh sabzi. Absolutely delicious! Their shirazi salad and humus make great starters. + +I was introduced to this place 17 years ago by a girlfriend. Well, she's ancient history but, thankfully, Tasty Kabob isn't.",review,kTK724Q8b9kZscfGSpsFqw,0,0,0 +ho4Te6bO2tGs56h9PF2vuA,2012-02-15,fTReHg_9WJg4hGnJdWKUPw,2,"I was excited to eat here after reading the reviews. Then I ate there and I was less excited. + +I was prepped for some hot spicy New Mexican food. That did not arrive on my plate. It was tasty for sure but I was lead to believe that I would experience the food I grew up with in New Mexico. I didn't. + +It is possible that my expectations were too much for this restaurant to handle.",review,D9WIDdPgbOk8-ChvH_hUfQ,1,1,0 +MXOdsPTLQPsQK9hUq01DWg,2009-06-18,XkswaXu20GZo2NSuhUes1A,2,"Over-priced, over-salted and thoroughly unimaginative. Package those adjectives up in a pretty little nutshell and you've got Arcadia Tavern. Arcadia Tavern is a family-friendly, bland and inoffensive, if not overpriced, alternative to Applebee's or TGI Friday's. + +I was seriously enthused when a tavern opened up within a five minute walk of my house. I like drinking and I like walking. Combine the two and you get stumbling, which can also have its high points, ripped jeans notwithstanding. But Arcadia Tavern is no tavern. No self-respecting tavern can commit the cardinal sins of happy hour and retain their integrity. + +Cardinal rule #1: Thou shalt not end happy hour before 7 pm. + +Seriously. What is it with places trying to redefine Happy Hour as the hours between 3 and 6 pm? I understand that from a price point perspective the 3-4 or 4-5 pm hours are much cheaper than extending food and drink discounts to the 6-7 pm crowd. But I consider that the same as shining up a turd and calling it a custom made gift. Ooo, you offer three hours of happiness? Pity I can only make 15 minutes of it. + +Bottom line is 5 pm's whistle blowing time, gridlock makes a girl crave a drink and 6-7 pm is the prime hour for getting that drink on. To end happy hour before 7pm pretty much guarantees happy hour barflies will not frequent the establishment. + +Flipside: Three dollar Dos Equis, all day, every day. At least there's that. + +Cardinal rule #2: Thou shalt offer more than frozen food and canned items as appetizers, and if offering cheap frozen crap, it shall be reflected in the price. + +Fries, tater tots, onion rings, wings, mozzarella sticks, chicken strips, and the ubiquitous spinach and artichoke dip? Whoa. Don't strain yourself, TGI Friday's. + +My main gripe is with the monster nachos. Maybe I'm just taking crazy pills, but the chips, seasoned shredded chicken and nacho cheese were all wicked salty. We're talking mouth-puckering, tastebud-slaughtering salt laden nachos topped with canned pickled jalapenos (gross), black olives (more salt) and black beans (respect). I'm also biased against the unnatural plastic consistency of nacho cheese. It makes everything soggy and is a tacky substitute for the real deal. Cheese should crisp up around the edges and pull apart in delectable strings, not ooze sadly over a mass of chips and overpower everything else on the plate. I will say that the guacamole and pico de gallo that topped the nachos were delicious, tasted homemade and were a saving grace, but they were also woefully underrepresented compared to the macnasty nacho sauce. + +Flipside: The three mini sliders (albeit meager) and grilled veggies platter with hummus showed promise. + +Cardinal rule #3: Thou shalt provide affordable drink and nosh. + +So what's that nacho monstrosity going to run you? Twelve bucks. Don't blink. You read right. Twelve dollars for salty garbage. Mozzarella sticks? 7. Dozen wings? 9! Completely unrealistic. Shave a couple bucks off each appetizer and you're in the reasonable price zone, particularly considering the cheap tasting ingredients. Taking that first impression into account, I don't think I'm going to shell out 10-12 dollars for a hamburger (without fries) when I could go to Delux and have my socks blown off with flavor for cheaper or to the Chicago Hamburger Co. for pennies in comparison. + +Flipside: There is no positive here. For the caliber of food offered, the prices are completely unrealistic. Even the desserts are overpriced. Six bucks for a root beer float? That's a big middle finger right there. + +Arcadia Tavern, as a representative of the Happy Hour enforcement squad, I hereby declare you undeserving of your title. Four Peaks is a tavern. The Vine is a tavern. Icehouse is a tavern. Hell, even Carlsbad Tavern does it better and they have plastic bats hanging from the ceiling. + +I regret that I shall never again spend a happy hour in your warm embrace. Although you may still win me over with $3 you-call-its on Thursday after 9 pm. Particularly when accompanied by a little goldfish racing. + +I totally hate goldfish, too. At least share that in common.",review,tlSSQwfHYJany7wPoTH46A,13,17,19 +L2J3JfjXZLnX1rLhWKthqA,2012-01-07,TIOxXxRDtulXBuqYr1ozPA,4,"Classic Irish Pub on Mill. Perfect for fish and chips, a Guinness, and a great bar atmosphere! + +The food here is great. I tried the fish and chips ($12) and it was perfect. Lightly battered, perfectly fried. The chips were different but complimentary to the meal. + +They also had several cider beers on tap (my favorite). When I asked which beer I should try, the waitress offered bringing a sample of each so that I could know the beer before I committed to a pint. Great service! + +The outdoor patio is great for parties. If it's cold, they have heaters during the winter. Summer has sprinklers. They've got live entertainment inside on weekends and also trivia nights. If you're looking for a place to hang that is casual and fun, try Rula Bula.",review,nSLrExcVVphiNzvSf5H7vA,1,2,1 +7QSYBp2-AOdyUJXEaLnbgA,2010-07-22,eT3p9QIFInKznRVOwvoMxQ,5,"I almost NEVER give a chain restaurant a 5-star review, not because I'm opposed to the idea but because very few are worthy. But Bandera is just that good, from the upscale casual, relaxed and inviting atmosphere to the excellent service to the delicious food. + +Ordering the cornbread to start is a must - it'd be a crime not to. The grilled artichoke and queso/guacamole apps are also wonderful. I had the macho salad, which was quite large and packed with good stuff. I also had a side of the mac and cheese that was outrageously good. Dessert offerings are limited to two choices, and neither blew me away, but the Oreo one was the better of the two. + +Bandera is, like its sister restaurant Houstons, always a wonderful experience with reliably terrific food.",review,OQMOgqS1NFIyAW4i66iDYA,0,0,0 +6nseTZb6WrGWcithRThfag,2011-03-01,Qcp4VFuJwqZiyXihFNgaCg,4,"After driving by this place about a million times I finally remembered it when the old ""Where shall we go to eat"" question came up and I am now definitely a fan. I asked the server (Chico - he was great and seemed to really love working there) about his recommendations and tried the Salmon Spinach Enchilada which will be difficult to move on from when I go back. It was absolutely amazing and I tried my hardest to finish my plate. Only reason I did not give this place five stars is that the ambiance in the back room was a bit lacking. It was more cafeteria-styled and just not very warm and inviting. +Regardless, I know that I will be back and definitely introduce this place to out of town guests!",review,QVrTqrLm3MC2QtENKbdanA,0,0,0 +erHz0NkEG1AP3aAtnu3eFw,2012-12-19,gBiJbIhMvXH-jv5bQJycbA,5,"Tanzy, Yelp, and Lindsey deserve the biggest standing O for this event. + +I honestly think I am still full from the generous food options that kept flowing. I kept thinking we were done, but OH NO here comes another course. I felt like I was at a chef tasting menu dinner. + +Right when we got there we had a glass of Champagne and were seated with a olive and meat plate followed by some bruschetta and local made cheese. After the event officially started we were hit with amazing course after amazing course. With never empty glasses of wine + +My Favs: + +Sweet Corn Risotto + +Scallops (cooked to perfection with a parsnip puree mmmmmmmm) + +Alaskan King Salmon + +Center Cut Filet Mignon + +Brussel Sprouts yes Brussel Sprouts (Tempura battered with a sweet relish AMAZING) + +4 hour braised beef short rib (Talk about melt in your mouth) + +Red Velvet Bread Pudding (I will go back just for this anytime I am near the Quarter) + +I can't wait to go back to Tanzy for a full meal but I don't know how I will be able to top this evening of amazing food. + +I was very surprised to hear they have been open for 2 years as I was really blown away with their food and service. + +Thanks again to everyone who helped put together this amazing event what a great way to end 2012.",review,Iycf9KNRhxvR187Qu2zZHg,2,2,1 +ybXlbfOjrKDdz5NoC-G9Gw,2011-10-15,GtAbA4wHomanixDeinLX_w,3,"Funny story about my experience at this place. My Classmate mentioned she loves this place for other reasons than my own. Yet, when we drove up it was very crowded and parking is minimal when you don't arrive early. We drove in separate cars and I called and asked her, ""are you sure there is no where else we can hang out? It is super crowded. Yet, I am so glad she convinced me to go in and check it out. I suppose you ought to experience it at least once for a night out with friends. There were many different cultures/ethnic backgrounds. I very much enjoyed the band. They played some old school R&B from Next, Bobby Brown, Prince, Cameo and that's just some of what they performed. Excellent Band! The crowd was very pleasant and fun! I had to join in with dancing and singing. + +My rating review is 3.5 stars. I would have to say that this venue is way too small for the amount of people it holds, the dance floor is super small, it's really dark and hard to move around even when you are dancing. + +The staff at Char's is friendly and I've heard the service is good. I didn't drink. So just word of mouth. + +I'm not sure if I would hang out there again. I would probably go only if I knew a friend/friends were here. That would still be a maybe. Although, I enjoyed the music, etc. I'm on the fence about Char's for some of the minuses that takes away from a place that could be so GREAT!",review,8-InERGLhHGjX3DZPFXMqg,0,1,0 +XdMG1S6rviOa_bPm1-SKDg,2011-01-23,ARmmZO42NOdk_pk5bD9bFA,5,"I actually visited here about 5 months ago, but I liked it so much I figured I should give it a few good words! + +I was at the mall looking for something healthier than a pizza or burger and decided upon this place. It is part of their little slogan after all! + +I was not disappointed. I chose the beef kabob with a side of fries and pita bread with a cup of hummus. Everything was positively fresh and absolutely delicious. And the portions were big, too. I didn't think I would be filled up after the meal, but I was stuffed! + +The staff was very friendly and cooked everything in a timely manner. I was surprised they weren't getting nearly as much business as the other joints around the food court. They don't know what they're missing!",review,AfyzIHPy5zds_mqf2Jdc9g,0,0,0 +rIonUa02zMz_ki8eF-Adug,2010-01-25,72RLVL7ulxXkh-Sv01l73w,2,"So I was pretty excited about this burger joint opening since it's President Obama's favorite... +The burger was good. Not great, not bland, just okay. My biggest hang up with this restaurant are the prices! Skip the beverage... it's very over priced. I was also not impressed with the fries- regular or cajun. They were pretty average as well. Stick with the burger and skip the rest is my suggestion to you.",review,93CVZEe3_HTk_GdDZOHy6A,0,2,0 +KTF-E3NfkJy2wiwcgOPyVQ,2012-05-24,m6inybUqM0h5UaSI9jVLow,5,"i think this food is phenomenal. this was the first place i tried asian food in AZ when moving out here years ago. it has grown since then and the food is always top notch. + +for a late sunday afternoon lunch, the place was nearly empty but their takeout counter was constantly busy. our server was friendly and attentive and kept our water glass filled. + +it's been a while since i ate for the review for which i write so i don't remember exactly what it was, but it had the big, wide rice noodles which i love. i do remember that the dish was excellent and big enough to supply leftovers for lunch the next day. +they ask how spicy and i've eaten thai food ""spicy"" and it is downright dangerous, so we opted for ""medium"" with a side of spice juice...which was HOT! + +we will continue to patronize Tottie's as they are consistent and the food and service has always been very, very, very good. and very reasonable prices.",review,ST8Yzlk2MqKlcaLqL2djBg,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2009-04-04,f4nIeSbtfBHBi0yIX9V9NQ,4,"Just had dinner there last night. Very nice ambiance. We had the cheese, basil, and tomato pizza and the sausage pizza. The fresh mozzarella was fantastic and the pizzas were great. I didn't give it five stars because I like my pizza with a little more tomato. The other reason, but like the first one it is a bit subjective, is that the menu selections for dinner are limited - basically pizza. It was good enough that I definitely plan to have lunch one day next week and try some of the dishes that others have raved about!",review,9naiHrcKCUe_YFXyStyL6g,0,0,0 +d_8bMNQd0mesbEUeq1U2kQ,2011-06-19,6hfJkOJ9WvNWiydtWKWw6Q,3,I have been by this spot many times and I needed a place to eat lunch so I stopped in... I entered the restaurant and was seated right away. But then I sat there for a good 10 minutes and watched the workers walk around then I got to see the owners little kid decide she was going to sit with the consumers in the booth a head of me... Then the kid started crying and it just does not need to happen I was kind of shocked please leave your kids at home if they are not working at the restaurant. I ended up getting up and asking the staff if I could just get the lunch buffet. I got a bit of everything to try I enjoyed the rice and the chicken dishes... The fish dishes on the other hand not so good the fish puffs were cold and not good and the one fish dish super fishy tasteing. The bread was really good that came with the meal... So all in all I would say I will not be going back anytime soon nothing to write home about.,review,LXWAXIeYFIdgd2JVPF-9qA,0,2,1 +KQzpjBmnAMXPqipeWTKG0w,2011-01-31,_-CbGQEx7fvwlXyoL-H3BA,2,"Well, for the most part, this place is average. However, there were some things that were red flags in my book. + +1. Dicking us around with the room. Paid for Cabana Room with balcony. First room given - West Wing. Not Cabana. Second room given - Handicapped Cabana Room in back corner, no balcony. Since this was on my boyfriends card, and he didn't want to push for the the Cabana Balcony we wanted, there was nothing I could do. However, I find this highly unacceptable. + +2. Dirty - Every morning, when we left, there were used coffee mugs and coffee pots on the floor in the area in front of the maintenance closet. + +3. Maintenance crew would leave their carts in the middle of the hallway, and we would have to figure out how to move them to get by. + +4. Crude comment from their pool guy. + +5. Overall, outdated hotel. Not a good vibe at all. Average to below average service. Overall desolate. + +I would never stay here again, and would never recommend this place to anyone.",review,NybFr19eR0MCAYJmTkszYg,0,4,0 +S8O3BoCDEK-te8U-0IvZog,2012-05-22,t9I-8NptRMoeBSTT1c7zlA,5,"This place is beautiful, great patio with classic decor. Went to Happy hour...of course and had a few glasses of wine and yummy calamari. Service was off the charts! We were sitting on the patio...a little hot and Schwetty...and the server kept moving the umbrellas to shade up as the sun set...WOW!",review,gMtc0mLCof1pX_YYUrHfwg,0,1,0 +qMkIbQFrROSnPaQ7at85-w,2007-06-07,__esH_kgJZeS8k3i6HaG7Q,5,"I am not usually a fan of botanical gardens. They seem too precious, too ""perfect"" to be of much interest. And, let's face it, flowers and plants are beautiful things, but when you pay to look at them in neat rows, something is lost. + +That said, Desert Botanical Gardens is an exception to this garden cynic. Many of these cacti look like they are from another planet, like something you would see in a sci-fi film and say, ""wow, it's too bad those crazy plants don't exist."" They sprawl out on the ground, weaving and turning every which way, or compose huge bizarre formations high off the ground. I never knew such bizarre life forms existed, or that some cacti look like trees. + +The gardens are full of windy paths where one is also likely to find a family of quail, lizards, or a jackrabbit or two. Various species of bird can be seen here as well, especially at dusk. I especially love watching the birds fly in and out of nests they've made in the upper arms of cacti. + +This place never grows old. It's a great introduction to the desert for people from out of town, and because the cacti have been collected from around the world, a cool botany lesson for us all here.",review,cB30-Og37dzCWFCFzI_ChQ,6,4,0 +Shn1EcWqqjRlDp-92D43gA,2012-07-17,vvHdnzS4o8gOyBCAzrlzCg,5,Great place. Hard to see behind Carl's Jr. on Southern Ave but is Worth finding!,review,pv8cZW0MLnMMx536us7H4g,0,0,0 +bVhIs14KgRzyR8umVL1CRQ,2011-01-11,hUF9e26pYkEb67A1daj51A,1,"So sad to say, I have to change my rating from 5 stars to 1. I had been a faithful customer of Katie's for years, at least 3 or 4! She told me she wasn't going to be doing nails anymore because she had developed carpal tunnel. I was heartbroken. But she told me she was training the others in her shop to be able to do nails like her so I figured I would continue to go there. Next appt I needed, I called and scheduled and said it doesn't matter with who because Katie isn't doing nails anymore, right? I was then told that Katie is still doing nails but she was full that day. Very hurtful! I always tipped her VERY well and was always willing to work with her schedule. But needless to say, I don't go there anymore, haven't been there since I ended up cancelling that appt and going elsewhere.",review,6o_ztIbYH6H8hY76pH0L7w,0,1,1 +xI0UZH734lJtm39DbLf-Bw,2011-10-27,9JX081oVLclNi2NHLL6kFg,5,"I saw the reviews of this Arribas and thought to myself, ""Are these people talking about the same Arribas I went to last night?"" I went there, and had an awesome time! Service was prompt, and if something was off, our server Jeff (who was amazing) explained why something happened, but didn't blame anyone, and didn't use server jargon. I do understand the jargon, but it was nice for someone to not have to resort to it. + +Warm chips and salsas + warm bean dip came out = awesome and the spicy salsa was calling my name. It burned, but I loved it. I ordered the Rio Grande enchiladas with the carne abodoba, and ordered it extra spicy. (Of course, I would) I was with my girl (and she likes strawberry margaritas) so we split the house margarita for 2, frozen with sugar of course. I'm not a huge margarita person, but it was really good. She ordered the cheese enchiladas. (She takes safe choices when we go eat) -more on the margaritas in a min- + +Food come out and seriously, it was some of the best spanish/mexican I've had in a while. Its good to see an establishment take risks with seasoning their food. It was fresh! Which is hard to find these days and I'm pretty sure the people who own Arribas own a hatch chile farm because I rarely saw anything about jalapenos or serranos or even habaneros. Which is cool. Those hatch chiles are slanged around that place like coke in studio 54 in the 70's. I'm not kidding, when you order your entree and they ask you what kind of beans you want. Black, pinto, or the 3rd kind that is a combo of black/pinto with some onion, tomatoes, and of course, what's that? Hatch chiles! I highly recommend them. I liked how Arribas uses the hatch chiles. It sets them apart. It brought the heat! + +After dinner, I ordered another margarita... + +This time, I asked Jeff of a recommendation. Why do I do this? Because the people that work at any restaurant know the food/drinks there more than you will ever know. 'Nuff said. He brought out some margarita I don't even know the name. It kicked my ass, thank god my girl was driving home, that's all I'm going to say. Thanks! + +That's why this place gets 5 stars. It deserves it in my opinion. +I think because this place takes chances with seasoning and overall outlook is why so many people might be unhappy with Arribas or this location in general. I on the other hand PROMOTE this thought process. I don't want food that's bland that a place kicks off the line to the people outside than enjoy bland food. That makes for a BLAND place that's filled with, well, bland people. This place uses heat, salt, pepper, and other spices that I don't know of. What a freaking great idea! Too hot for you? Then don't eat food that is 99% based on heat. + +I will surely be going back, and I won't have a bad time.",review,4yfFThiCAsazpVWDb1nlQw,0,0,0 +rDvz5jX65gpfONFu7er9Tw,2011-01-19,ZcK4hh8i1qc68hUbqMMi-Q,4,"I met up with a friend for dinner here the other night. It's a little far from me, unfortunately; if this was within a few miles of me, I'd be here a -lot-. + + For starters, the place is easy to miss. It's a hole in the wall. It's very small inside, only a few tables; definitely consider takeout. + + That said, if it's not busy, don't be afraid to stay. We ate in; when there was a significant lull in the crowd, the girl behind the counter came both to clear our tables and to deliver a second item I ordered a bit later in the evening. I wish I'd been carrying cash, there is a tip jar by the register, and I would have loved to have left something for that. + + The food...ah, the food. Great bang for the buck. Have I had better tacos? Yes. Once, handmade by a Mexican immigrant my mother was good friends with, as we joined her for a family dinner. In restaurants? No. This is good Mexican street food, small hand made corn tortillas with flavorful, moist meat on them, and some warm salsa on top. Lovely. They even offer lengua, for those that like it, a very nice touch. + + As others have said, the rice is very good; I wasn't actually that fond of the beans though. + + Is this place worth going 20 minutes out of your way? Unfortunately, no, hence the 4 star. But is it worth going to if you're already nearby? Yes, very much yes.",review,mB7533hZM30GIULkWFBfhQ,1,1,1 +hmeiF-nZ5-3F-WxLKPmn4A,2010-09-25,nt_XQwS5VkTXyrNLb_V_0w,4,"M-Troniks repaired a 1970's Fender Bassman 10 for me. They re-coned the speaker, letting the stock speakers remain. They also replaced the tubes and adjusted them. New longer cord as well. They fixed this old thing up! + +Crazy guitars for sale and other odds and ends.",review,8h5EXsiEuK5_igQ0cgxPZQ,0,0,0 +pfTwzep_4hRTX_jXoi38cw,2009-08-16,WrHw7_9xaDBpgRGfmtJujg,1,"The cool name of the place is the only good thing here. The burgers are below-average and unenjoyably (is that a word?) messy. Fries, too greasy. Seating, not comfortable. Skip it!",review,hGitwL2Ixiq3C6mJyQrlPw,0,4,0 +Cota2ttLUjoKhFU6ukYqSA,2012-09-23,L9LucpZaas5DA0QgyRK6CQ,5,"Good food, if all the Taiwanese comes here that means this is really good.",review,hNk9YQNC9vJpEs5swUlbeQ,0,0,0 +apCfJVnRyaw6oVUBKujpUQ,2008-02-06,fiIbMaIBJ9f9Xx3KSANVcw,5,"This Mexican restaurant has the best burritos in town! This is not your roach infested 24 hour drive through kind of burrito joint either. Here are the reasons that make La Tolteca #1 and one of my favorite places to eat in Phoenix! +1-Full bakery with mouth watering fresh pastries +2-Fresh ingredients and great prices +3-Also serves beer if you feel like having a Corona with your meal as opposed to take out +4-Little market has the best prices in town on citrus fruits and just enough of everything to cook up a little Mexican meal (Ranch Market not needed!) +5-Make your own pico/ salsa bar, make it your style and get as much of it as you want:) +So, if you are downtown looking for authentic Mexican this is the place. Of course it is super casual take out or seat yourself kind of place so don't try to flatter your date here! But get there early, I'm pretty sure they close up shop by 9 or 10...",review,ED8rq4vqflssrXbigIhgOQ,4,5,0 +46xWJ6rKZxnrSLWro6EOlA,2011-05-16,he-NH-47uVob8m438j6s4w,3,"Good sandwich! Better than all the chains, doesn't beat Jason's deli, would like black tea (not green). Fresh tasting and clean",review,--VxRvXk3b8FwsSbC2Zpxw,0,0,0 +iqLVYrsX25XUZqjRjvbYfg,2009-04-10,N16QPXw9v06jMd7BZFy0Zw,4,"i like the ooey gooey cupcake! the chocolate cake is soooo moist and cooked evenly in perfection. only it's served chilled? it's weird. + +their cookies are good, too. I bought a tub of their easter sugar cookies and they are so stinking cute! they're very sweet though so it's impossible to eat more than 2 per day but soo good. anymore than that you'd need insulin. :)",review,hFtlFksrcLaWHGPNa6SmeA,4,4,3 +8qL697NwICTc_ac0-26Ycw,2012-12-14,ZqnrWakSVBBoujxHNuBiwA,5,"I went to sears today to check on a layaway that I placed online but was going to pickup here. Margaret, the associate couldn't find me in her system so she personally called the sears.com help line to find out what was happening. She was friendly, professional, and extremely helpful in solving my problem. I went home a happy customer and am very thankful to Margaret for her help!",review,UZ_Uq9XGzMViO9474Obabw,0,0,0 +-_npP9XdyzILAjtFfX8UAQ,2011-04-01,LPk0VBiUV7gEPlV59EzUvw,1,"This place has really bad service and the food is barely decent, I would advise not to dine here. There are much better Vietnamese restaurants in Phoenix.",review,ZPk_wcW7Xot6LngEUj_F6g,0,1,0 +GU9jjFNKagaxdoIVSR2Q3g,2010-04-05,lTvUVHc7o6J3VmC1JQWD3Q,5,"Shoes, and purses, and make-up - o my! + +Your sales totally RAWK guys! I mean, seriously - 50-70% off (gotta catch it just right, people) and then, an extra 30% off that?! I feel like a wild thing, you make my heart sing. + +OK, now today, the most I found was 40% off - B U T - then there's MAC! Oooooooo, ya baby. All that glitters is NOT gold. (ok, it's the small things...) + +It was still fun to look at all the purses.... And mark some for future reference. Hey, I am a patient person.... I stop for red - tags, that is.",review,h7v_M_0-YVpSVZ2WD7FpAA,0,0,0 +nMHhuYan8e3cONo3PornJA,2011-12-24,nNsA-1JIfDknuqBqUedWnw,4,"Good food in a unique setting with fantastic service. Nobou at Teeter House offers up a very pleasurable dining experience. + +I'll start with the great. The restaurant is in a more than 100-year-old house in the heart of downtown Phoenix. There is nearly a perfect feeling that I have been invited inside someone's home for a fancy dinner party. The staff was fantastic. Our server, Alexis, was very attentive, friendly, fast, and really knew the menu (or at least was good at selling every dish with a very thorough description about the technique and flavors used to create it). The presentation of the food is creative and beautiful. + +The not-so-great. The food is served in small portions at a high price. I wouldn't have a big problem with that, I actually think Americans should be more into tapas eating, except nothing we ordered blew my mind or taste buds away. Don't get me wrong; everything we ordered was excellent. The food is perfectly cooked, seasoned, sauced, and artistically plated. It just didn't have that over-the-top ""WOW"" factor I was hoping for. + +Having said that. Nobuo at Teeter House is still a place that everyone should try out at least once. It's an enjoyable place to eat. It's probably a fun place to go with a small group of friends just to hang out, order a lot of plates and just sample what the restaurant has to offer. + +As I said, the price can be a little high. It took five plates and a dessert to create a fair size meal for just two people. That came to nearly a $100 tab (with drinks). But Nobuo at Teeter House is on Local Dines (http://www.localdines.com/?ref=19485) with a $50 or $25 gift certificate. Take advantage of the deal and cross Nobuo off your Phoenix restaurant bucket list.",review,thdVzCfKx-DV0zYWqId3pw,0,2,0 +3MwUofF-CektEM52NwDaUA,2012-01-21,jIC-Sv10fIH8WlqqmaiMaA,5,"Great food, great prices, and great service. I am a big eater and could not even finish all my food for only 8 dollars. The orange chicken was fresh and tender with excellent flavor. The combo also came with fried wantons and spring rolls. Super far from my house, but worth the drive.",review,G2knDs8rUHCqzjBc5S48yg,0,0,0 +VlHp9AFc9repIF6braYCCg,2012-03-14,bBRJYMwq1gUfmeK4ZAgHJQ,5,"Yes, before you ask, I still love Desert Stages Theatre, perhaps more than ever. This is Andrew's fifth play there and this time he plays the Knave in Alice in Wonderland. +Normally, we don't ask for a specific role but the director of Annie Jr. thought he would be cute as the Dormouse as he popped up from the table so that's what we asked for this time during audition. +And we anxiously waited for the casting to be posted. When the casting was posted, he did not get the requested part and as a mom and a parent, I was glad. +Why you may ask? Because to me as a mom and a parent, it's very important to teach my son the importance of handling success with graciousness and moving through disappointments with a positive attitude. When he asked why he didn't get the part, I told him in simple words that the director had a vision of what the whole play should be like and she saw Andrew in the role of Knave and that was his special role. I also told him that it doesn't matter what role you get, if you play it with all you got and go out there and perform with your heart as there are no small parts, you will capture the audience's attention and that will be your moment. +He listened with a typical 5 year old attitude and became very excited about being the Knave. And I was also excited for him because this time around, he had 2 long lines to memorize and speak! +With each review, I've written about how Andrew has grown through DST and here I've included a video where you can see him growing aware of theatre and performance: http://www.youtube.com/watch?v=fsG07sMlZ5s&feature=related. This time around, he started asking me if he was a main character, starting to understand the structure of a performance. It was great to see his awareness growing. I highly recommend bringing your own child to audition for a play here. +It will be an amazing experience!! +Really, DST is about the kids. Trusting the kids to do their part and giving them responsibilities. Once the curtain lifts, the kids are responsible for THEIR performance and for each other. It's fantastic to see the kids have their moments on stage, being responsible for moving and arranging the set, take care of the tech, go from loose energy backstage to fanstatic actors on stage. It's all fabulous. +If you have doubts of what kids can do, go to a show at Desert Stages Theatre and be amazed. Truly, if you believe in your kids, as DST shows again and again, your kids will shine and raise above your expectations!",review,ru8p3RTlk8f9LB_3zLXURQ,1,0,0 +S4kuNIvOCbiylaGLwY2aHw,2010-03-02,B52aOzKKzk-atTvuzCOWGQ,3,"The fitness part of this place is great: machines are new and plentiful. Good classes on the schedule, and plenty of cold water and fresh towels. + +Now, the spa, on the other hand, is mediocre at best. The pool is a bit of a walk and available to anyone at the hotel; same with the jacuzzi, which also means the jacuzzi is outside! Why no jacuzzi inside? The steam room is small and there is no sauna. There are only 3 shower stalls, with shampoo and shower gel, but no conditioner. The lounge area is also small and not at all relaxing. And the robes are super thin (with a chilly room; that's not even nice!) and not very big. I had to sit very carefully so as to not expose myself to everyone. Hello! haha. + +The massage itself was very nice, but the spa is not relaxing, especially for the prices. I wouldn't return to the spa, although the gym is good.",review,Hyhmpb3UnbjtSEXvgviCow,3,4,2 +WjnjiCzjgjPHGA9hp-Wyww,2010-01-01,1N_ufhUQLIBoEtKBzEiDEA,2,"I must have looked like a poor, ugly person the other day bc seriously NO ONE helped me. no one even said hi. I was in there for an hour too. + +I decided not to buy anything bc the service was so bad. + +this is a little bit like OJ's ""i didnt kill my wife, but if I did this is how I would do it"" in that if someone had helped me I would have bought 6 place settings- mats, chargers, napkins and napkin rings. I also would have bought several drapery panels. + +but no way was I going to spend that much money at a place that couldn't even say hello or ask a girl carrying around a ton of place settings if she needed help. + +so i just set everything I had gathered up over the hour in a pile and left. you're welcome employees, hope you had fun putting everything away. i also hope they work on commission and are regretting not saying hi to me.",review,hFtlFksrcLaWHGPNa6SmeA,2,5,3 +gWQlTK3o29rZGlw2YLUnhA,2011-03-24,FhqmewMA5KyWFgukpiDcew,5,"For a boba drink fan like me, it is still rare to find a tea place that has authentic tea (and not just milk powder), hot or cold tea choices, and boba and tea that taste great individually or separately. + +I ordered an iced chocolate chai (yum! such a difference from plain old Oregon Chai used at most coffee houses) with boba. The only negative is that the drink was $4.91, but it was well worth it! Mmmmmmm love this place!",review,TSN_KWBsNc4pAoChdpwi1Q,1,3,0 +e8FMAuTswDueAlLsNyLhcA,2012-06-18,iCDLG6a5zf9Z4RlZgt2B6Q,2,"I initially visited Daily Dose about a year ago after a night out. I was only able to stomach some coffee and a few bites of breakfast nachos that morning, so I wanted to come back for a real (sober) meal. Alas, they made a better impression on my first visit, headache and all. + +My recent visit was on a Sunday, around 11:30am, and surprisingly there wasn't a line. We had a 5 min wait though, so we helped ourselves to water & coffee from the pitchers outside. When we were called to our table I was a little disappointed - the table was tiny and squeezed between the door to the front patio and a server's station - but I let it go. My son knew he wanted a cheeseburger and I finally decided on the Ancho-chile corned beef sandwich with sweet potato fries. Yes, this was going to be a cheat day! + +Our waitress seemed.... off, and lacking personality. She didn't take our menus after we'd ordered and there was no where to put them on the tiny table, so they ended up propped up against the window. Same thing with our paper cups we'd brought in from outside - they sat next to the menus the whole meal. The wait for our meals was a little long in my opinion - about 35 minutes. During that time, our waitress was completely MIA and our drinks sat almost empty. Thankfully, the guy who finally brought out our food was nice enough to refill them. + +So, I thought corned beef rubbed with ancho chili spice and topped with sauerkraut on rye was going to be a bomb of savory, tangy, spicy flavor! But.... not, not at all. What in the hell do you do to sauerkraut to make it BLAND? How do you make these yummy ingredients just completely flat?? Frankly, I was PISSED I wasted so many calories on this sandwich. I ate half because I was really hungry but didn't even bother to take the other half home. On a more positive note, the sweet potato fries were excellent. + +Feeling unfulfilled, I decided to try my son's cheeseburger. Even though it was from the kid's menu, the burger was ENORMOUS and they sure didn't skimp on his fries either. Sadly, the burger was also really under-seasoned and I honestly wondered if they'd seasoned it at all. The pretzel-bread bun was the most flavorful part of the burger - it was yum! + +About 15 minutes after our food came out, the waitress finally came by. I asked her for a box (for my son's burger) and the check, which she brought to us at the speed of light. I was very surprised to see I'd been charged $2.50 for a glass and a half of lukewarm, weak iced tea. If I'd known that, I would've ordered a Tecate light for the same price. Anyway, I got the distinct impression she wanted us to leave so her table could be re-seated with people who would drink and rack up a bigger bill. Her loss, as I usually tip very generously when I'm out with my son. + +Overall, I was just totally bummed with Daily Dose's food, service, and value - and bummed my 100th Yelp review only deserves 2-stars.",review,fiyOnIEKBOgj00NJLwDBVg,7,9,9 +Hdi7jkB7pHiM1nyPHcqSdw,2012-03-18,LcY1oTxM5sOn_5opdsuqiw,4,"Yup. Definitely a fancy mall for that credit card burning session. + +A combo of outdoor and indoor. You probably can find most everything the average person can't afford here. + +It seems to be the spot for malling in Scotsdale.",review,CRywkebZtGq0lKcbRlOPqQ,2,1,1 +FV0BkoGOd3Yu_eJnXY15ZA,2010-08-22,OTlXCFxFkmzbj2qxC-Os7w,5,"My friend took me for a birthday lunch. John our waiter was very helpful and had perfect timing. We shared the Stetson Chopped Salad and Fillet on Toast with leeks and homemade potato chips with blue cheese. The kitchen plate/split our fillet, always a plus. The salad with salmon, chicken is offered, was tossed tableside. CC always has it's own twist on offerings. The bread pudding and banana icecream were decadent. + Wish I lived closer.",review,kzL2COV2uZeghim_gkeE8g,0,0,0 +UU-kkvyX6pyrl_4fK6Qpvg,2011-11-28,9HPz67hx4MbFa-C1JR_PUg,5,"well dang gummit....git on over here and by me some camo flawj....tha kind that has little dangly moss on it....and while yur at it, i need me a gun.... + +too bad i already have a gun and camo. i use to be a big hunter....deer, dove, turkey, squirrel, ducks etc. it's what you do in south georgia when your fridge is empty and you're hungry. + +this bass pro shops is ENORMOUS!!!!! i love it. although i don't hunt anymore, my brother and father do, so every year i get gift cards for them from Bass Pro Shops. the gear and guns are more expensive than other places, but their selection is incredible. when my dad comes out here, i can't wait to take him here to see all the taxidermy and fish tanks...i know he'll love it. + +the staff is usually friendly. the firearms dept is a bit intimidating and the guys at the counter can be smart asses. but this place is just really neat overall. it is also a family retreat, so don't be surprised to see hundreds of kids running wild while their parents let them be terrors.",review,ST8Yzlk2MqKlcaLqL2djBg,1,0,0 +O-ylVyHn6e6kaoJO-jHj-w,2009-11-25,rOCdYealgD2vyw5vg4BTIg,4,"We stayed at the Pointe Hilton Squaw Peak for four nights...ate here twice, and picked up food to go twice. Everything we had was tasty and well-done. I liked the New York Gorgonzola sandwich the best, as anything with creamy horseradish is spot on in my book. The au jus seemed better the first time I had it. We came back for s'mores with the kids one night. We were kind of hoping to do the marshmallows over the fire pit outside but there were a few people who may have posted on here previously who looked at our kids in horror. The server rushed over and said they're not allowed to serve marshmallows over the fire pit -- they bring a small burner right to the table. We still had fun and the old fogies outside enjoyed their drinks in peace. + +Oh - prices are a bit on the high side but that's to be expected, i guess, at a resort. Bottom line - the food was good!",review,qw-9YLeLbSt8PNrNrXubLQ,1,1,1 +9ziO3NpoNTKHvIKCBFB_fQ,2011-11-08,RAVXWX9GmWysVppcMoxnbg,4,"I've spent more time than I need to remember in hotel bars and restaurants, and they all kind of fade into a blurry, nebulous, mass. + +District, however, stands out. + +From their pork sliders and bacon wrapped dates on happy hour, to their cold and juuust right gin martinis, I don't think they hit a flat patch the whole week I was there, and I stopped by at least once a day. The bartender I had, Matt, was funny, smart, sweet, and made me feel like I had a friend in Phoenix. The experience was more than I could have asked for from a hotel restaurant, and if I stay in the area again I will definitely go back.",review,znJZPwdZOliFbhllS9A15w,6,7,3 +L7_-U4QPJBYxEpD0BdT4Pw,2007-01-31,yP1YYOSHz7Nr5NvV8Dd1tw,4,"It's hard to rate this place because you never know what you're going to get. At it's best, I'd give it a clean five star rating. But, at its worst, the service is slow, and the bizarro factor knocks it down to 2 or 3 stars. + +What has the ability to take this place up a notch is karaoke. It draws a diverse crowd of headbangers to rappers to punks to cowboys, which is where the bizarro element comes in. Sometimes the mesh is weird and amazing in the David Bowie meets Trent Reznor way, other times its odd and off-putting. + +I'd say scope it out on a given night, and if you don't immediately get a good vibe, roll across the street to The Coach House and grab a cheap pitcher and come up with a new plan for your evening.",review,Ovpa3S8xD96dLE5eDxcxJg,1,3,0 +NcWd10MG5WMl4kOHv3iDsw,2012-04-07,1KKxN9BHMTIGNPNU82RTwg,5,"I've been taking mine and my family's cars to Cathedral for more than a decade. We are always treated fairly, and always have a good experience - the guys always stand by their work and ""go the extra mile"" to be sure our cars are fixed properly. They work on both our new(er) cars and my cars from the 50s and 60s. + +Whenever anyone is looking for a mechanic, I will send them here without fail - and John and the guys at Cathedral have always come through by totally taking care of anyone I send to them. In a business filled with some sketchy practices, I know that whether I send my wife, a friend, or a coworker to Cathedral they will be treated honestly and fairly. Cars break and break down, that's a fact of owning one. I'm glad I have Cathedral to make dealing with it so easy and stress free so I can get back on the road as quickly and cheaply as possible.",review,FWOkELL9N54INaz3NB0IxA,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2012-02-11,efBUdlCGipfutYbbUTlntA,5,Great happy hour specials. All the appetizers are delicious! Service is first rate and it's nice to sit outside on the patio. Great people watching without being too obnoxious! LOL,review,hfPIJ-kjwpHHTT0J6jvTfw,0,0,0 +mTc8M-drs2HSG8paNUTTQg,2011-08-04,TK0vNf15Oq5euPx3OOGBnw,5,"This review pertains to carnitas, and as such should not be taken as a suggestion for ordering any of the following: fish tacos, rice, beans, horchata. That's about it! Yum!",review,hA3nsXht1PdmxX3YHU-I8w,0,0,0 +naqJ8iKmZ1m9YWOyvgODZQ,2012-03-05,Z4T5P7SCoTXO6IpXmdhfxw,4,I've been to other Pei Wei's in the valley and I've yet to see any as busy as this one. The food is consistently good; do expect about a 20 minute wait for food if you are dining in. They recently got the new Coke touch machines where you can make your own flavor combo! YUM! This place can get noisy; I wouldn't recommend bringing kids since this place is very hectic and can be overwhelming to small children. Take Out is stellar and most of the time food is ready when promised.,review,rL3dPeKDTybG_ct9OCXGAA,0,1,0 +Udas3Rfvcb3sv7q8OeJ1Rw,2012-01-10,UU5rtuGMy9nsV-vkhgflUg,4,"the folks at national car rental were very accommodating and even helped me upgrade my rental at little cost to me. if the deal was right, i would definitely use this company again when visiting Phoenix!",review,zv0xza_2RteC7J7Mj7-FtA,0,0,0 +Sm-KSR7qtHmP-Z1yBPxedA,2011-11-19,5jnakHPMBlGdOwmg_Jngqg,5,"I love that this Safeway is right across the street from my work. I like to walk here for a bit of exercise to get lunch. The deli is awesome. They have a sandwich bar that has these really great gourmet ingredients they will make a sandwich for you. For 5.49 it's not too bad and if you use your Safeway card you buy 7 get the 8th sandwich free. They also have premade salads and a hot bar as well. Very friendly, Alan who has made my sandwiches the last couple weeks is very friendly and does a good job. Bonus points the Starbucks is right next to it!",review,SB37ySvE9n2GY0AJi47nug,0,0,0 +1crzPdwnlm2zHdQ2nP4n7w,2011-02-08,HZvzvZaXpp7q-tIaI2QBaA,5,"Imagine a white silk wedding dress.... black! Well, that may be a bit dramatic but it was pretty bad. More than 1.5 years after my wedding I took my dress in to Bell. They kept my dress for a couple weeks, called me when it was ready and I was so excited to see it almost new. They did a fantastic job and were careful not to over treat the lace and silk with chemicals. They made me feel like they really cared. + +The business is family owned and the man at the front is so nice to work with. And, the pricing was extremely fair. I paid $89 which was much more reasonable than other places I checked. + +I highly recommend Bell Cleaners.",review,PNS9z4aFDbfhpIsHCfNvNg,0,2,0 +aRkYtXfmEKYG-eTDf_qUsw,2012-04-24,8oFfh8Oohtug1-sX7pYmxw,5,"This is one super cool cafe/lounge. They serve coffee, cocktails, and some quick bites that can go along great with your drinks. There are several rooms you can choose from to sit and relax. Art decor surrounds this stylish joint and just had a great time here sipping on coffee and chatting with a friend who recommended this coffee shop to me. I noticed a younger adult crowd here but it doesn't matter. Wi-Fi friendly, too!",review,af5FWCN9M7Fvxy433o-P9A,0,1,0 +Y-9dJvw-J2d9QKfuL7mKgA,2011-08-04,x36fMK4ndlapA5I5pUeGAQ,4,"Tucked into a strip mall, the parking lot near the grocery store still has plenty of parking. We came on a Monday morning so it wasn't really busy and we sat promptly. + +Looking at the menu, I'm looking for unique specials and being a fan of hash browns, I went with the Wolfpack. The food itself was nothing special. Each individual element stands on its own - 2 eggs (I chose egg whites), bacon, cheese, and plenty of hash browns, but it was a filling meal. I had the over easy ice so it was a nice cold coffee drink for the warm weather. My friend had the crying pig omelette which seemed pretty good. The decor was nice and staff was pretty nice. Although our table was right next to another, I didn't feel like either of us were intruding upon each other. Overall, a decent place and worth visiting again to try some of their other specialties.",review,nCy31UqpvcAe6zyzeFgtLw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2010-03-28,sTHDQHUhZFgY5FSA040T7Q,4,"So wifey and I decided to check this place out for our monthly date night. It's a cool little spot around 12th st and Oak, in the middle of a neighborhood. The decor is very modern, but warm and inviting. We opted to get an appetizer and a few of the small plates rather than the larger plates they had. They had a balanced but approachable wine list, I had an awesome Tempranillo for under 10 bucks a glass! We opted for the crispy shrimp and okra for the appetizer, which came with this spicy banana sauce and this cool yogurt sauce. I really really liked this dish, the okra was great and the shrimp were succulent and perfectly cooked. Not sure about the banana sauce, but overall a great dish. We then decided to get the stuffed dates with crispy Schreiner's Chorizo and Manchego. It came with dressed spinach, prob one of my fave dishes in Phoenix right now! We also ordered the macaroni and cheese and I forgot to mention the toasted bread and roasted garlic we ordered. The bread and garlic was just okay, nothing special. I, surprisingly, was not a fan of the mac and cheese either, it seemed very grainy (I know it was chock full of parmesan so that's probably what it was, but it was just unappealing to me). Overall this place has potential. I'll definitely go back, especially because we got out with 3 glasses of wine and 4 small dishes with tax and tip for under $70.00!!",review,gcyEUr4DXcbjnGRAWFtfAQ,0,0,0 +eFK2QePKvAowH-uX-0V4hQ,2012-04-29,aR3gF7fS6_YiZxnzYWmxXg,1,"Lots of ""gay on gay"" homophobia here. Hick bars in Alabama are more gay friendly. Staff and owners know this but they do not seem to care. Oh well",review,I8HW-b_uWtlmEy_2uiGK_g,0,4,1 +xWlCgISVtozxCztPA4nGaQ,2012-05-23,NSVZ5tKuCxMx3zbUe60hIg,4,"If you appreciate a good dive bar, you will love this place! We came here for the first time when our team was playing in Glendale. Dos Gringos played host to all BCS fans and it was a blast. They have giant Jenga, dancing, multiple levels & bars and a great outdoor space. The facilities are a little beat, definitely a place where you don't want to touch anything in the bathroom, at least when it is packed. The bar staff does a good job of managing the crowd and I never felt like I was wasting time begging for them to ask me what I wanted. + +We returned for a bachelorette party and although we still had a good time, I think this place really thrives when you are with a huge group. Food is decent, but not why you come here.",review,uCb3zzlC83tr5W-xcBJfXw,0,0,0 +IaKKCKMtXAtcOta8yzlN6g,2011-08-22,6E4OtRwui-_N4807KGys1Q,5,"I hired Property AZ to rent my upside-down home in North Peoria (stuck with the house so we rent it out), they are very experienced and had great customer service. I have had bad experiences in the past with management companies not taking care of the renters or getting back to me.",review,EP3cGJvYiuOwumerwADplg,1,2,0 +kr3EFhoSwbJPrL_e_RD39g,2012-06-06,j1ZVJokxBKvI0dX2652FoA,5,"This review is mainly for the bar and a few light (ok not light, but small) snacks. + +Met with a couple people during their soft opening and there was absolutely nothing soft about it. I got there a few minutes early and posted up at the bar to grab a Manhattan. This drink is usually my boozometer when I am trying a place first. Ok, we've got something here, this drink is tasty. Started talking to the bartenders and got a really comfortable feeling from them. When was the last time that you sit down to the bar and they ask your name, tell you their's, and then shake your hand? + +After the manhattan the rest of the group showed. The bar was a little too busy to fit the three of us so I took my second drink, sazerac, to the table. Sazerac was tasty as well. Rest of the table ordered some drinks and nothing negative to be said anywhere. We each had around 4 or 5 drinks and every last one of them was delicious. + +We were comped a few bar snack and all were delicious but the stand out was the warm nuts. (twss) Mixed nuts warmed with Herbs De Provence and a little bit of chili flake I believe. Soooooo good. + +As for the style of the place it is fantastic. Feels cool but not cliche. The Palomar staff did a fantastic job of designing this space. As of now this is the one place in City Scape that is worth while.",review,S3bvMOL50vgS_8-TtlGi4w,10,13,5 +92WbJ5Zo_9hRCoOstWEo0g,2008-10-07,muGQ1Oeb_VQEf2KhADUfCw,4,"I like to start out any restaurant reviews with I'm a vegetarian so my choice of food is limited. Please take that in to consideration. + +I've been here once before and had breakfast, and it might have been one of the best breakfasts in the world. I would have given it 5 stars if I wrote my review that day. + +I went yesterday for a sandwich and salad and thought it was so so at best. I was a little bummed about the instruction, or lack of instruction from the staff on how to order. It appears, and I didn't know this while ordering, that you can pick what ingredients you want to add or delete from certain sandwiches or salads. I got what I got, and it didn't exactly include what I like, or what I didn't. + +Today I would give it three stars, but since I liked the breakfast so much, I'll mix the review to give it 4 stars. Only fair. + +I'll go back and give it a try again sometime. I'm in no rush to get there, but I wouldn't avoid the place either. For breakfast, if I do want some french toast, waffles, or pancakes I'll head down to give a second shot for sure!",review,mRTY_S2IQyAweG0pLNOgLQ,1,1,1 +YvQKDmSQqs-R7vPEWV2EiA,2012-01-22,nfJbt7vx1yHbdzOX9acN5Q,4,"Their Chicken Critter Salad's got game. More portion of chicken than any other chicken salad I've ordered elsewhere. They have other great entrees, but this cowpoke likes his critters",review,pIm17SVRo8IdhGoBD4qbnA,0,1,0 +eGevCRobYnA_HSj60sEWvQ,2010-02-04,6aD_9RIqycbOqCVuEudm5w,5,"Pita Jungle is now one of my favorite places to go for dinner. It's both affordable and healthy. Thought it's usually crowded with ""Hipster"" ASU students, I have yet to receive bad service. Our food has usually come out in a timely matter. + +As for the environment, It's very nicely decorated with art from local artists and it's very well lit. It's nice and open so you can see what's going on through out the restaurant. It's never to noisy, so it would be a great place to take a family or even a date. + +Almost every visit, I've always gotten either the Broiled Chicken Salad or the Lavosh Shawarma Wrap. The chicken has always been moist and dish is always flavorful. The lemon vinaigrette dressing is almost good enough to drink! Though I have not tried a lot on the menu, some of the food they bring out always make me say ""Ooh, what's that?!""",review,jM4qX4eiH9tIG9VUaN2knQ,1,1,1 +VGQQnqEFME8q7XSe6dAwYw,2009-03-05,FT5j4Btch7KpEk0wSBZpKQ,5,"Not that you can compare Firebird to anywhere else in Az but I have been to Joliet Raceway in Chicago (and even though that's newer) I like the arrangement of Firebird and the availability of the different tracks available to race on. + +First off... NHRA... come on... hands down one of THE coolest events in Az ever, next to NASCAR and well pro any sports but the 8000hp cars come only once a year. The pits are setup nice so every ticket gets into the pits to check out the teams and cars, beer and food are expensive but what else is new. + +They also have drag racing events, any type of racing event, drift, road, moto races, dirt bikes, monster trucks, top fuel drag boats on the lake... I'm sure I'm missing a lot but nowhere else has this in Az. + +Parking is always good to go... driving out of there just takes a while as you've got one main road that you get on to funnel onto the I-10 but not much they can do about that. + +Great place... keep bringing in the NHRA and letting us use the road tracks for our motorcycles and I'll be happy.",review,8CNEh7fSbLwDuAKhLjDPKQ,1,1,0 +WNy1uzcmm_UHmTyR--o5IA,2010-01-27,slg8sgyPPuKnJ0nXTkwVNg,3,"I think people have a tendency to overrate this place because it is the only restaurant of its kind. Don't get me wrong, the pasties are great, but there are a few reasons why this place isn't a four star restaurant: + +1) It's overpriced. You're paying almost 15 bucks for a lunch originally meant for miners. +2) It's cramped. Good luck going there with more than one other person. +3) It's a little dingy. Someone said the atmosphere is great.... Huh? Not sure why a dark dining room that is six feet wide and crowded can be considered a nice atmosphere, unless maybe you grew up in a sewer. + +Also, make sure you get there early if you want a table or food in a reasonable amount of time.",review,KYeLSM3MQpirmHukVV5Iow,0,0,0 +DDnmNTvIIQu2t3WZ2EQx-w,2011-01-03,V9wimrKSP690bFbevi-y_A,3,"Pretty good, not remarkable in any particular way. Last minute decision to pop up to the bar for dinner last night. Love that they have Dos Equis Amber on draft (most places only have lager). Chips & guac were a little diappointing.... tasted like the bottom of a bag of store-bought chips... but the guac itself not too shabby. Salsas were unique and I did enjoy their flavor. Had the carne asada plate which comes with rice, beans, and a really delicious authentic thin tortilla. The beef had good seasoning and flavor, but a little dry and chewy. Fish tacos were fine, but again nothing remarkable. Dark atmosphere, nice bartenders. Good pinots by the glass.",review,0CRk-70pIHwk16iKGVCpxw,2,1,1 +T9BPnYNKtk6B42W0cJJXnA,2010-06-29,6DxG3WWYriTqg7p42FZscg,4,"I see a few of the previous reviews discussing issues with service, but I have always had good service at this place. I have only been in a handful of times, but we never have to wait very long to be helped, and the staff is very friendly. +I have only ordered salads there, but I've enjoyed the three that I've tried (Maggie's, Jamaican Jerk Chicken, and Greek). The salad dressing always comes on the side, which is perfect, because that is how I like to order salads (so I can control the amount of dressing.) My husband loves the pulled pork, although it's popular and sells out pretty quickly from our experience.",review,IHXLU0bFY3gvX7IzT2a34A,0,0,0 +tyETqrYijm3cY4noCwl9Ww,2011-12-22,DzO2GIHvhoT9IjvBOD9sag,4,I loved this place! Amazing food and service. The servings are just right and very flavorful. Would highly recommend this place if you want a nice quiet dinner.,review,Gzq5CtS6pD4JOKvXNJ4B3Q,1,1,1 +di2QHs2SrY0XFHcfAq_k2A,2011-11-01,4GcTH21aOOH4YpZqz9edsA,4,"My friend and I have been waiting for this place to open, because it looked so good. We finally went today and weren't disappointed. It is very similar to Paradise Bakery (price and food wise), but in my opinion is better. They have sandwiches, salads, soups, pastas, and paninis. Both of us got the chicken pomodori and it was SO good. Super flavorful and filling. This place gets super busy, but there is a ton of space so you won't have trouble finding a place to sit. They will bring your food to your table and also grab your plates when you are done. Great food and good service. We will most definitely be going back.",review,IO3AsR6cdMto7VCwfPzf2w,0,0,0 +KPoTixdjoJxSqRSEApSAGg,2011-10-22,HqEufBNvAJbt-BAul4TYTQ,3,"Enjoyed dinner on the patio - I had the Pad Cha Seafood dish rated ""Thai hot"" - the so-called hottest dish on the menu. The person I was with ordered the ginger fish - mediocre at best, although it looked great with a variety of vegetables and pineapple. I felt the dishes looked better than they actually tasted. The seafood (mussels, calamari, salmon, shrimp) in my dish was very fresh but it wasn't Thai hot at all. The ambiance of their patio was enjoyable and the Thai iced tea was very tasty although a little too sweet towards the end. Overall, I will probably give this restaurant another try in the future but I wasn't very impressed with the taste of the food.",review,bomxdD965gZr9j4iuUIqjw,0,0,0 +nKrK1aK2uWtL57Q3ShH6Hg,2012-05-11,0AmfhzaYbwKMNGGFI61rcA,4,"Yume Sushi Grill is a great spot! All of the sushi is very fresh, and they pride themselves in having great quality. The sushi chefs are knowledgeable in their craft, and also extremely friendly to have a chat with. They serve free salad and miso soup, and the serving staff is friendly, helpful, and attentive. + +The Korean dishes are pretty authentic, and the home made kimchi is great! I recommend the bulgogi, bi bim bab, and spicy pork for meals. Lunch time is the best time to go, as their lunch specials are amazingly priced for the amount of food that you receive. + +The one complaint that I have is that they don't stock a few of my favorite kinds of sushi (although I know they aren't the most popular) mackerel, quail eggs, and surf clam won't be found on the menu.",review,hsdWN0vcnR-rPyRTztw7Sw,1,1,1 +GDmue1oJaem9ilywDtA4_A,2012-11-24,Pl-sp75fD0Ew05OOeZUPFg,2,"We had the potstickers, kobe beef skewers, red curry clay pot and sizzling shrimp. All of the items were mediocre at best. The potstickers were deep-fried and way overdone. The beef was also overcooked and somewhat flavorless. The curry was very spicy but otherwise strangely bland. Steamed rice was extra and came in a cup sized bowl. If I had been told that the shrimp dish was store-bought and microwaved, I would not have argued with that. +Service was normal. Music was annoying club tunes and too loud for 6pm. +All in all, I'm glad we had a groupon and didn't have to pay full price for a decidedly below average dining experience.",review,_yHJOWee2trtkQZcPk7cEA,0,0,0 +cdacUBBL2tDbDnB1EfhpQw,2009-04-06,JXIUl2abhExk0SkScZhKcw,2,"The food leans toward the SouthWest and is located near Old Scottsdale. The place has a couple of patios as well as couches/easy chairs for seating. Large curved bar with televisions. Tons of tequila.The place tends to be busy because of its location, however the food is nothing special - burgers, wraps, tacos, etc. Prices are steep considering what you get. Service can be spotty depending on time of day.",review,of1F2yjBqr2hqifuWEagHQ,0,0,0 +zDfs1Kyk8orFF8bRnSPx-A,2011-10-08,n5vMY3AOigJKP3VyqmPVgA,5,"Teresa S. and I were one of the lucky ones to win tickets to see Cavalleria Rusticana and Pagliacci last night at the Symphony Hall, and we were impressed with the acoustics. The overall sound quality of the live act was fantastic, so overall I'd say that the gig was pretty amazing. + +It's a fabulous hub of culture, but the food concessions need some urgent attention. The only munchies they have are desserts like cookies or pies, so be sure to have dinner first. + +One of the great things they offer is you can now pre-reserve your intermission drinks. + +You can pre-order your favorite libation before the show, and they will have them ready on the refreshment table. +That would save you time in case you need to whiz to the loo, and not have to wait in line again to buy your drinks. + +Thank you again to Yelp and Arizona Opera. The show was wonderful.",review,0oRtnPHtvZIE1UNxCDDTPw,8,10,6 +8G4_ESDS6BOTVCAlNt6O8Q,2011-05-19,EeFMgkR-r5RxQw-JLFhURg,3,"I love to eat here, however it is hit or miss. Sometimes we get good service and other times we don't. Sometimes the food is really good, but other times it's off. Our order is usually messed up, but they are good about fixing it. One thing I have a problem with is using coupons here, I had a coupon for a pizza and also ordered an appetizer at happy hour half off. They did not want to combine the two offers but the coupon didn't say say anything about that. +When the food is good though it's really good, which is why we return.",review,qZyCePyIinjHI8C60SQrIw,0,0,0 +hP_TLIk8xToWxsYKCl9w1w,2006-10-03,Je3DCG-UE0BL23pw0dNgEw,4,"I've been going to Unique since I was little.... when it was called Chic n' Cheap. I always find at least one decent thing at Unique. Granted it doesn't have tons of great stuff, but it is a great stop on a shopping day. And this isnt a psudeo thrift store that more of a vintage store and therefore can charge non-thrift prices. I'm talking shirts under a dollar. yeah.",review,9Ysj3f3tI3m5QRDxvQAIKw,0,0,0 +eTigBoM4pevB61ie0MHVsQ,2012-04-02,BYIHWRyv5IW3mj67h4tpQQ,5,So I just called to book a class for me and a friend from a Groupon we bought. The classes for the next 2 weeks were all booked :(. I called and spoke to a very pleasant Paul who said they are extending this offer for a month. Yippee. You rock and we can't wait to try our hand at this exciting craft!! Huge props for Great customer service!!,review,6DWQIoYWkAHAU3kYE_qr1g,0,1,0 +gHKB66up5VluCWT4vuSZpw,2012-04-25,ItI8dyEqdoe4Zz8k7sALjw,5,"This restaurant has the best Italian food I have ever ate in my life!!! Definitely one of the best restaurants in AZ. I had the sautéed calamari for an appetizer, and an amazing dish for dinner with red snapper and pasta. Their bread also melts in your mouth. Blown away by the service. Gilda was my server, and she was amazing. Everyone was super nice, professional, courteous, and sooooooo hospitable. I've never had service this good at a restaurant other than at Cafe Poca Cosa in Tucson. SERIOUSLY. AMAAAAAZING restaurant!!!!!",review,IsvpOkTel_AWtGTAapM6XQ,1,2,0 +qrIObcWKK3jeC3zfmR54kg,2008-07-16,Nqr0wnL2LphwCTauIs5Jug,3,I came in here to order to get takeout it was 19.99 For 2 cheese pizza's ummm not so cheap. They only use 1 type of cheese the pizza was not great I wouldnt go that route again but I am willing to go back and try the Veggie pizza. I surprised my brother with some suicide wing's I dont eat meat but I did try the sauce and ate some w my pizza it was HOT. He loved them all 20 were gone at the end of the night. They said they were SO HOT but the boys just couldnt stop eating them. They said they were very good meaty and not too vinegary. An extra star for making the boys happy with the hella hot wings that night. FYI they probably use hydrogenated oils here by the way but I didnt ask!,review,V0y4fqp-4pSRfsz0FmsjPA,3,4,2 +Lc3-XLmobyijQpOxHdEPFQ,2011-01-03,O9Sdhe5YEAXKJbNYuQq4wg,5,"A must! One of the BEST dog food stores in the Valley! Great service and quality, natural feed products for your dog. You can rest at peace knowing that your pets are in GREAT hands. + +Mark Siebel +http://www.doggiestepsdogtraining.com/",review,nLPHUC9ZMCG1xm86_1xqjQ,0,1,0 +Yhfp_vgnh_GirZGeVhj7Gg,2012-07-07,UYgHV9KRi2eh59a8XZf0QA,3,"It seems like dine-in theaters are popping up all over the Valley these days. Studio Movie Grill in north Scottsdale recently opened. + +The theater has a far less luxurious feel than the AMC Esplanade 14 or even iPic Theaters. Instead of comfy reclining seats, you're stuck sitting upright, and you won't get any blankets to keep you warm. The inside looks the most like a traditional theater that I've seen at a dine-in theater-and my companion mentioned the lobby reminded him of an airport, and the theater itself, a bowling alley. + +Like the other two places, though, ordering food or drinks from your server is as easy as pushing the button at your seat. They'll come and grab your order (the menu is full of American food, similar to AMC Esplanade 14), and they'll deliver it to you throughout the movie. + +Movie tickets are $9 Sunday-Thursday and $11 Friday's and Saturday's, which is way less expensive than iPic and around the same price at Esplanade. I heard people are arriving up to an hour early for weekend movies, so be warned. + +We drank and ate during the movie. We got a pitcher of domestic beer for $15, which I thought was a good deal considering the two of us drank two beers each from it. For food, I ate a grilled cheese sandwich ($6.25), which came with French fries. I actually really liked this grilled cheese sandwich, since the bread was thick and there was lots of cheese, and the seasoned fries were thickly cut and tasted great. Some regular movie theater concession stand items at non-dine-in theaters are just as expensive, so I thought the food prices here were really reasonable. + +Though the food and prices were satisfactory, based on the less comfortable atmosphere, I'd still pick AMC Esplanade 14 out of the now three dine-in theaters I've tried.",review,v2UqlUHA8d3lgTIby0CCFQ,1,3,0 +1Ap6ZNCvyLLKHP0wvCk9yA,2012-04-28,w-XEwXaNRBZ6LTWUCMNjqg,5,"Easy 5 star fun at the Phoenix Zoo. I've never seen critters so closeup before. At the Monkey Village, they don't even have cages. The giraffes came right up to us. I spent half my beer money on fishheads and shrimp feeding the stingrays. It was a blast! + +We had great time! +yow, bill + +PS - I've never commented on other people's reviews before. But jeez. When someone goes to the zoo and complains about the cost of a hot dog or a snow cone... well, for spider monkey's sake, get a clue!",review,D9BTg0QydXDrXOjpqnTsVg,0,0,1 +IwhkOh4fPsiU7TThIsz6Og,2009-09-30,HYrUIg3Nyw02TtsUeVOENA,5,"Great place! I've been coming here for quite some time now and every time I received excellent customer service. The servers are always friendly and attentive. + +I LOVE the sushi there. They have a lot of fun, new rolls that are unique to Bamboo Grille. The spicy sauce they put on the rolls gives them a great kick too. + +Recently I've noticed that the place has looked a little unfinished with random stuff here and there. Baffled, I asked a server and was informed that they are in the process of remodeling. Needless to say I'm excited for the newly designed Bamboo Grille!",review,xuVvzfQ583-brRngrMYhbw,0,0,0 +-h1WpfgqAmJcJDqyXXJ2og,2010-09-27,7QAEeBiesRDlj33bNn_9Gg,4,"Ate here again this weekend and I am happy to say that Fudd's has officially won me back. The burger was positively delicious!!!! And this time, I ordered the fries without the seasoning they add to it. Perfect! Hey, I'm a french fry traditionalist, what can I say? I hate weird seasonings or funky toppings on my fries (see review for Greek Gyro Express... and try to keep your cookies down).",review,-L0bSNfErGer1UCEa6D4PA,0,0,1 +9i8cBclfNEerRhX4xdbQlQ,2012-06-09,Mj4WMc9TAKB5M7iRxE7h0g,4,"This is a nice store. It is well organized and the shelves are neat. In my experince when going to a store like Home Goods, Marshalls or T.J. Maxx the shelves are always a mess and it's hard to sort through it all. That is what I've always hated about these stores. This one is different. And you actually see the people working on the shelves while you're there. The bath department is well organized and neat. They have some nice furniture although I think the prices on the furniture are a little high for what is supposed to be a discount type store. The main reason I come here is the candles. They usually have a nice selection of Yankee Candles for 1/3 of the price you would pay in the YC store. I've gotten large tumblers for $9.99! That is a steal! I also picked up a great shower caddy for $12 that probably would have been $20 or more elsewhere. I stop by here when I go to Sprouts which is right next door.",review,ZmIgP4U4Ht9CYmNX0_zP6w,3,2,2 +3n9mSKySEv3G03YjcU-YOQ,2012-05-17,qkcn5clWGHpZulmI18chDg,5,"They say you never forget your first. Well, Postino Central was my first Postino and I remember my first sip and bite like it was yesterday. + +The atmosphere here is very sexy at night. Candlelight and sexy music add to the already chic ambience Postino has. + +The food? Bliss. I can still remember how the creamy ricotta and sweet figs on my bruschetta tantalized my tongue that first night. I can feel the velvety red wine at the back of my mouth and drizzling down my throat. + +Parking is a bit of a hassle, but they have valet for a reason. + +If you're stuck waiting for a table, squeeze in at the bar and grab a glass of wine (or three). People watching is almost as fun here as eating. + +Now that there is a Postino in the East Valley, I am hoping Postino Central will get a little less busy... if only to serve my selfish purposes. I love everything about this place and I hope to be back soon.",review,64YY0h0ZAR2nbzxbx0IwJg,2,1,1 +3YATaNAGANoFneE-4KK-JQ,2009-04-01,83124FYdb2mbfOXR7FgxaQ,1,"IHOP is barely a step up from Denny's in terms of boring chain food. Last night was the first time I ever had dinner there, and it tasted like squishy, mushy cardboard. The food took forever even though there were only three tables in the place with customers. + +The reason I gave it two stars instead of you is because the breakfasts are pretty good. I don't mind them except the omlettes which are way too oily. The coffee is almost bad, but the waitresses always look happy. + +[update April 2, 2011] + +Why'd I go back? I hate this place now. We went today for the first time we have all had a chance to go out together for breakfast. I was excited to do this and was eager. I should've stayed home. + +My wife got a waffle with her combo that was cold, tasted like cardboard, and was crunchy. The bacon my wife and child ordered was burnt, crispy and did not look like bacon at all. + +My sausage (I always upgrade to turkey sausage since the regular pork kid here is vomit worth) was totally cold. I sent it back and complained. I think she microwaved my plate. + +Their coffee is always burnt so I got an iced coffee. She said they had Mocha, Vanilla, or Hazelnut. I asked if they just had a regular coffee flavored one... she said yes, and brought me disgusting hazelnut (glad I'm not allergic!!) + +Ok now it's three hours later. My daughter laid on the floor whining about how bad her stomach hurts, I've been to the bathroom twice and my wife is asleep because she said if she didn't lay down, she would puke. Seriously. + +The management (district managers) really need to care enough to read YELP. They remodeled the outside of this place and, I guess, spent all their money to make it look pretty so we'd forget they serve dogfood.",review,Rg4gzsz3w00vRlIOXcGUIA,1,1,0 +MhkZLdUFaHt5SDcQcqOWQg,2011-07-20,xGdrM-tQTBQXom96du-aVA,4,"Finally got out to try this place, had a restaurant.com coupon for about 6 months and wanted to check them out, but we always were going to be in the area on a Sunday and they are not open then. + +First, the entry was pleasant, greeted and seated, the owner/manager was very friendly and made a point to stop by and talk. Granted, they were not very busy late on a Friday night, but that wasn't the point. Decor was ok, had a game on the TV in the background. + +Food was good, staff was ok, they do need to update the menu, discovered a minor mistake on something they no longer offer, but we thought the prices were decent anyhow. + +IF I'm in the area and craving sushi, I'd stop by again, need I say more?",review,o96C1p5jwTvPlneWfl6miA,0,1,0 +5-X03Zc0nN7U5eoe8uFUdw,2009-04-02,F0SHae4rZ_Yy5ZPuZ-AeOQ,5,"This is what I love about Phoenix, you find these little treasures where you expect them the least! + +Loved everything about the place. We had a team dinner in one of the rooms and it really felt like we were having dinner in someone's dining room. Super cute atmosphere, loved the pictures from all over Europe. I has the vegetarian rellenos (sp?) and my mouth is still watering just thinking about it. + +We also had the only malbec they have by the bottle and it was delicious!!",review,u33Vpx9csHNHhBK764kDzg,0,0,0 +fRV_jh8IxvGh0jY5dT91Rw,2012-01-07,LtMXQJX39CfgZKRCRGwWLg,4,"Great place for hippies, do-gooders and at this location an inordinate amount of old folks. I love the deli here. always a great sandwich at a good price. Although I don't see myself buying anything ""soy"" or ""organic"" or hippie friendly here I do like to shop here from time to time.",review,pw-k3TMjt1ZNB2-iRVTDlQ,0,0,0 +nDHyino_t7O94ZzRHGUApw,2011-06-15,kyZ6dPtX14mIODf3KrQAtQ,4,"I'm a value sorta guy...considering that, I should HATE this place on paper, but the quality, selection of items you won't find other places, and general vibe of the store are fantastic. You will pay top dollar, but you get top notch stuff in return! Their baked goods are exquisite, their meats are the most gorgeous chunks of dead flesh you'll ever see, and then.. there's the Beer & Wine. Wow.",review,nbofxFWHORebBHh10OgYLA,1,2,2 +OkO7zRnvV2NQR5aPmbRZeA,2011-09-29,Tb6rPlzBfsd0-oIBLmCulw,5,"Does anyone know why their regular subs are $1 more than all the other Jimmy John's? Or is that just when it's delivered, instead of charging a standard delivery fee? I've noticed that with the other types of sandwiches too, and extras...the slim is $4 instead of $3.25, and extra avo is $1.75 instead of $0.75 + +That's not going to stop me from ordering though :-) Still love their sandwiches...they make the best veggie sub I've had. They load it up with veggies, whereas I have to ask for extra everything at a certain other sub chain and then they still barely put any on. I'd much rather pay a little bit extra for Jimmy John's :-)",review,omDaGOFsG1RfqLKcNV1Cug,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2010-06-20,lV8sZpWaJyAa-IFy080LaQ,4,"Dilemma: where the heck to find a nice place to eat near AZ Fairgrounds/Grand? (Shiverrrrrrrrrrrrr) + +Promblem solved! Found the answer @ Fez! + +Candace was super speedy, always had a smile, and returned to our table about a dzn times in the 90 mins we were here. + +Gazpacheo & Grilled Crustini was OMG good! (problem was it only came with 3 tiny pieces of bread, had to ask for more, got few pieces of pita, still had 1/2 left bowl of gazpacheo, asked for more bread - cuz like what the heck are you going to do with a bowl of dip otherwise? and they charged us for the extra bread? x 2 ? not cool). + +Cheese & Garlic Fondue was pretty good. So was the Chicken Strips. + +Really good drink specials (unfortunately, had none as their specialties are mostly tequila based - not for me! nor am I a beer drinker, and I did not like their house wine). But I did have a nice bottle of Sav. Blanc from New Zealand. + +Anyhow, this fit the bill at having fabby Nom~Noms before heading over to the Coliseum (~ick~) at the Fairgrounds to see the Roller Derby Girls - Whoop~ Whoop!",review,h7v_M_0-YVpSVZ2WD7FpAA,2,3,2 +nts2OALwvyvfNh9focRZ3w,2013-01-05,DtfqqQryMmDWyRTdMx2XlQ,4,Great food. Service consistently blows. Sit at the bar and you will be fine.,review,GZoFh9dJdp3FYk6FLDXs-w,1,1,1 +vaqmESluryt5i4Wbkb6KRA,2008-05-17,vd-jDLChzzB0PNtxGCmv6w,5,"everytime my sister comes to town we go striaght from the airport to Karsh's. +our intent is to buy bagels and we do, but we can never stop there and wind up with a variety of goodies. all that we have comsumed over the years has been really great. as for service, always with a smile and friendly attitude. +we used to go here all the time when we lived on n. central, but since we moved to the other side of the world it has become a special occasion place. so please open one near us too.",review,GubdNFoDAsiwE6bWIr97cQ,1,3,1 +kOeoqBdvLDC7xV6fgFVRVQ,2009-12-12,D6bvzF9PehS2-m06g0mh0g,4,"I've ordered cookies from Cookies by Design many times and they never disappoint. I have worked with this store as well as stores across the country when ordering for the people I work with and people I love. Everyone has always said how beautiful the cookies look but even better, how great they taste. You won't be disappointed. :)",review,kG8jkVFgOAOq6Ht6RvAjEQ,0,0,0 +OE5nAmaSVaopeRS1Cs9Kuw,2011-05-09,1aEUHZrTj8zsO2LuppVs_Q,4,I loved it. The salad bar is not so great but everything else is excellent!,review,aCktH-ZuS2KwaScos8xNSA,0,0,0 +NdATGBlTA3VHkY8XnvKoNg,2012-06-16,ehDENu2uVZpqi0ChKIk-Yg,4,"I love this place, saves me and my family some serious cash. I do agree with allot of the other reviewers on the meat and produce - my wife gets those from the store across the street. + +I also love the fact that they have a Sushi shop inside the store. Makes a great quick snack. The lady the works there will make almost anything you want. And, you can call in your ""order"" ahead if needed. She (or her son) have never let me down in quality and freshness of the Sushi.",review,HeKxpZpPd_WweAuZSBZ_qg,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2011-03-15,9w_oarYDgseuK0Mj9vftdg,4,"This place is awesome! Where else can you hear incredible live jazz music for free on a Monday night with reasonably priced drinks? Any other major city (like, say, New York), the cover would be at least $15, and they would make you pay for the second set, as well, and a place to sit or stand with a decent view of the musicians would be hard to come by, and by the end of the night you would end up feeling ripped off. + +Granted, this place can get crowded on the weekends, but no wonder. The beer (no draft) and wine selection is good, the vibe is laid-back, and the music I've heard has been great (I've only see one group here--Jiggle--and they play jazz.) + +Tip for music-lovers: Sit or stand in the room where the music is. Sitting any farther back and you may be tempted to take a swing at the people who just come to chat and fail to understand what makes the Lost Leaf so unique. But do give them a bit of a break. They are, after all, probably ""paying"" for your cover charge with all their imbibing of alcohol.",review,SHlkGMta-B3lXzlQBtrUvg,0,2,0 +F-ZOeAK1v7e5Rt2Mv5rVMw,2010-07-13,OT19QMSIrG6gdAPWgLSIHA,2,"Still not in love with it. + +Again with the overstaffing and employees huddled, eating/drinking and chatting instead of hurrying up and making my drink. it is okay to hurry--or is that just my strange, city-thinking? + +meh.",review,qK6qbqXcZDn0fz8Dr5Ex8w,1,2,1 +7YYD_agS3Kb2sAx9JPkQEw,2011-10-22,Am8KgL5OXGyC_Z-L_HCVGQ,5,"I took a cooking class with Chef Eddie Matney (Eddie's House Restaurant) and his recipe called for Vanilla bean olive oil from the Olive Mill. First off, what he made with this recipe was phenomenal much thanks to that smooth vanilla olive oil in there! I decided to google this place only to find out that Chef Beau Macmillan acclaimed a the kalamata sandwich from there as his ""bad boy favorite."" I don't know what a bad boy favorite even means but it has to be good especially since I've had his food and was quite impressed. + +I decided to make the 45 minute drive from Scottsdale out there on a Sunday afternoon to get my olive oil and try this kalamata sandwich. Such a cool atmosphere inside. It's like a trader joes/gift shop/paradise bakery all with a rural, kinda on the farm feel. You could easily kill an hour here just looking around at all the stuff for sale. + +I couldn't believe the kalamata sandwich! If you go there and order anything else....you're wrong. Freshest ingregients I've ever tasted. I feel like the pork could have just been butchered 5 minutes prior to me ordering it and the vegetables just picked from their garden (which they do have there). + +Pretty cool how you can sample the endless flavors of olive oil there. Got myself the vanilla bean and the blood orange as well. Make for some unstoppable pancakes. + +Tried the gellato and wasn't all that impressed. But in all due fairness, I'm not exactly sure what real gellato is supposed to taste like since all I've had is gelleto spot and grateful spoon. + +Definitely worth the drive! Great place to bring the family.",review,gTs3AALeNJhSbVrgamKQyg,1,3,0 +IWwt0vm8lYbVoyGSPd2Z9A,2012-08-18,GSQljlRxa8YBtvovIMbhiw,4,"I couldn't rate this place until my 2nd go around only because my first time was take-out. That being said, I did get the same thing both times and am pretty sure I can say I enjoy their Pulled Pork portion and would get it again. It is moist, soft, and flavorful all on its own, but I do enjoy drizzling some Sissy sauce on it. I've also had their corn-on-the-cob twice and found it super plain and not even sweet or enjoyable.. totally blah for me with the corn. They use real butter, though, so if I liked their corn, I'd be a fan of that. I'll stick to the pulled pork. + +On to their BBQ sauce: I am not a big fan of a few things, mainly how they serve the sauce, which is in a large diameter *glass* bottle with a bottle pourer (the kind bartenders used to control the flow of alcohol when pouring)... no bueno. It took me a long while to get a quarter size sauce on to my pork and it was just frustrating.. and the glass makes it non-squeezable.. and the huge bottle makes it heavy to hold while you're waiting for gravity to help you get that little dab of sauce out and on to your meat... yeahhh, it was that annoying. Here's an idea: make your sauce fresh and then put it in big ass jars than we can either portion out ourselves (like Joe's Real BBQ) or put it in squeezable bottles (like Famous Dave's)... *anything* but giant glass bottles with pourer restrictors on... puhleeeeze! + +Their staff is very friendly, the ambiance is very relaxed and totally casual, pic-nic-style seating and, of course, country. They have a great concept of huge coolers of booze (beer) where you can pick out your beer and put it in a bucket.. they also have sody-pop and sweet tea. + +Country music on the speakers.... yummy pulled pork... buckets of cold beer... pic-nic seating.. that's what I enjoyed.",review,A99dyhEqcd_yXKPfBWeZHA,1,1,1 +p_4cUTxtMWToqUKCy11qcw,2009-01-13,j3m8m4YDHQSFh79n31J_sQ,5,"This dairy sells fresh milk, straight from the cow. That's what they're licensed to sell. They use organic feed (dried grasses), hydrogen peroxide for cleaning certain things, and iodine to clean the cows' teats (just like many dairies used to). They want the cows to be out on pasture, but they need a bigger piece of land to do so. If you know of a piece of land in the area, please suggest it to Jackie Calamos. I love their milk. As of this date, milk is $10/gallon, the true cost of the milk (or maybe even a little low). Most of the milk you buy in the store isn't worth the price. Forcing more production out of cows with hormones comes at the cost of quality (and your health). SYD's has all the good stuff (the proof is in the taste). It's never made us sick, and we've been drinking it for 2 years. It's a miracle that this metro area actually has a dairy willing to sell fresh milk to the public! Thank you, Save Your Dairy!",review,Qp1AJD1cdTf7JVY9mXixBw,3,6,0 +GQuUFerQlnyRoOGdA63EKA,2011-09-20,k6MY28U9T4B9ztsv7S2jGw,5,"I've been to several local dermatologist and havent seen results or been fond of any; the staff is extremly friendly and very helpful! I highly reccomend this dr, he is knowledgeable & helped me attain the results I was looking for!",review,AV4-6n6SKop4Bp5S15c98Q,0,0,0 +DGtOkc0KNTyK8rDkmsPNYw,2010-04-16,jxM6FXJhTKUdW_xfmtoBbQ,4,"We had a 10-12 person dinner here on a Thursday and our experience was so great that we brought back another 8 or so for another meeting on Saturday. Both times I had the New York Strip and both times it was fantastic. Great beef, great appetizers, great pours for cocktails. + +Our waiter the first night was a super friendly dude who was recently married and I'm sure our tab there was big enough to pay for a second honeymoon. Our waiter the next night was a bit more withdrawn but none the less got the job done.",review,LSNWMSAOhZzrSRg2pPxA0Q,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2012-12-31,NVOiobJPn8vwBKNbQqlzEw,4,"Visiting from California, and refusing to drink Starbucks because I'm a complete ""Coffee DB."" When traveling, I try to find the local coffee gem in the barrage of coffee houses. + +This place is great, just how I like it. Smug employees / clientele, and fantastic coffee. Better than Bluebottle, not as good as FourBarrel. For those of you know what I just said, I raise my cup from my saucer in your general direction :) . + +The edibles looked amazing, but was a little disappointed with the chocolate and cinnamon donuts I picked up for my family to try. + +I ordered a double cappuccino, as it's my go to, did not sweeten it as it was easily enjoyed by itself. + +Love seeing these small companies roast their own beans on site. Love the fact they are taking great care with the roasting process. Thank you for not burning the bean and making my beverage it so enjoyable. + +Kind regards to the Lux team, I will certainly visit you tomorrow, provided you're open on New Year's day :) + +Yum!",review,vvImsgqK7_GUo4iuD57XTw,0,0,0 +oMycF1cQgR1UVkafXfof7A,2010-04-01,H3hTMeoiwtpfZ4ctjO0Urw,2,"I have read several raving reviews of this place. I was disappointed the first time so I went back again thinking I had an off experience. I was still disappointed. I had the carne torta the first time and the cubana the second. The food was okay. Not bad but not filling and not as good as some other places I can name off the top of my head. The first time the torta came with chips and the 2nd time they came alone. For 6 or 7 bucks Id expect a little more. Here are a few places with much better tortas: Los Reyes De La Torta (7th st & Hatcher), El Gallo Blanco (Central & Indian), and El Nopalito (24th st and Thomas).",review,SGXahHRReksq3m_Zk9V20w,0,0,0 +U6oNWTxVTnuuCL0BPRZCSg,2011-07-02,oSA3Et_F7hNl40Q9chM7Vw,5,"Great movie theater----staff so friendly!!! If you love movies and comfy, clean theaters at reasonable price, check it out!!!! Parking so easy and close as well.",review,QTB78VnF09xbjJlZflClYQ,0,0,0 +UxMnY3Dxafucv5cXHyfBSA,2009-01-19,N9QPZSh62EBY0J0zaAgNNw,4,"Way old school. I did the lunch buffet, $6 and change including drink. It was actually pretty good. Yes there were a few times I asked myself ""exactly what part of a chicken is this from?"" but the flavors were good. I'm guessing about 15 different items on the buffet. + +I'm guessing this place has been here for 10+ years, maybe double that. Red cheesy Asian interior as you would expect in a place like this. + +I like this place, so what are you going to do about it?",review,sEWeeq41k4ohBz4jS_iGRw,5,7,4 +9UxpM0WwUe2EH3hQezREVg,2011-06-11,4JFqB1mZOsJuWITrx46Nog,5,Other restaurants have come and gone but this one has been there like what my wife said about 20 years existing in the area. Congratulations!!! I loved the old recipe sourdough pizza. I enjoyed it very much. Neighbors please help our local business survive. We need them to support our local community.,review,k5U-0FBwvWUob8dlT6RvmA,0,1,0 +Y7aesBLKUPTrQsuzcce-DQ,2011-04-20,9woYJf6zPsuCFH6YYxKrRw,1,"I can summarize this in one word. YUCK! We went for dinner/supper, which is part of the problem. We ordered t-bone steak and chicken. The salad bowl had a hole right through the plastic and the steak was way thin. We ordered it medium and any steak that thin just ends up being cooked as ""well done"" anyway. Everything comes with grease dripping hash browns whether you want them or not. At least the staff was friendly enough and food (if you call it that) was served quickly. My personal recommendation is that if you're not going to eat breakfast, go somewhere else.",review,tuuFkFLywRizZz1rI8JVMg,0,1,0 +1QxI2IP3XfndDAY8nyZVPg,2012-11-28,qhV9AcX1x-W4CcS2mLmxIw,4,"Parking can be annoying when it's busy, but the store is spacious and there are plenty of people to get help from.",review,RyqvQBBBLzkHXSxP4ZqucA,0,0,0 +aOR_hD-xXsnU6bgVcJ3uXw,2011-11-12,5tBMqL439Mcp49hHcmpcGw,5,"This is how Caribbean food should be done. Excellent jerk chicken, perfectly cooked plantains, very good patties. I highly recommend this place if you are at all a fan of Caribbean food.",review,FmwWPEQMcxCGI5K1yqAXaA,0,1,0 +EMGkbiCMfMTflQux-_JY7Q,2012-04-03,PEwzYtGYe4sDxgwyCKqZrw,2,"Third visit was lower than second, which was lower than first. Excellent service, but declining food quality. Bacon was chewy, eggs ordered ""over hard"" were nearly raw in the middle. Manager was rude to me and snapping at the help, who were doing a wonderful job. Must have been having a very bad day. I might try them one more time, but probably will move on to better places.",review,yRQHOo0R1yGNh18d3fn65g,0,1,0 +VQTjhYGMIyqSRJHgHLFvjg,2008-02-07,4DvCwt3_8fdLxN5dHSyeCw,3,"It's kinda comfy setting....For the Non-(official), Yelp event, they had penne pasta...but Sonoma's specialty is rotisserie chicken......Nice but I sure would have liked to taste what the place raves about---Chicken! Oh well, the pasta was ok for what it was. What I truly enjoyed about Sonoma was the layout. You can easily entertain a fairly large crowd and not be on top of each other. I need to come back and try their chicken then re-write this review. + +The parking upstairs for the event was nice also, but later on at night, it seems a bit spooky to be walking up in the parking area alone and in the middle of city center where there are some pretty curious characters about~~~I would prefer coming with more than one person if parking at night in the upper garage (personal preference). + +The Yelp folks!---Way too cool! I am so glad to have discovered Yelp! Best thing I've done in ages.---Cheers Yelpers!",review,meuqHEjGCmrO3zDlr6OU7w,2,1,0 +7VLW-cIDaiO4Dx8gXYkZcg,2011-06-30,auNPrXVgQLeVKnl_OD4vTw,4,Delishhhh... blueberry crepes w/cream cheese!,review,dk4GW5x4DoMmHAAifcI30g,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2009-03-18,5GvkdRfZ-Si7VNfhr_Swrw,3,"Let me start by saying the crawfish ettouffee was the best I've had in a long time! The food itself should probably get 4 stars, however, our service was just plain bad, so I'm just going with 3 stars. + +The outside patio area was really nice and they had live music and a bar outside.",review,lv5jHtbwcU_tTw_xQuFr9g,0,1,0 +Ax11wyp-FudujeU9nejQbw,2009-11-03,Nc5GODazWAfga844L4PtLQ,2,"First off, let me say that I live almost across the street from here and have been waiting for a grocery store downtown for almost 5 years. I was there the very first day they were open and have been back three or four times since. I waited to write my review until they had their ""grand opening"" and until they had gotten into the groove of having a market. + +Boy, where do I start with the complaints? The biggest complaint is not so much the hours but the DAYS that they are open. Maybe I'm weird but I do my grocery shopping on Sunday. We specifically didn't get a few things from F&E because we wanted the ones from the market. I try and go Sunday but they are closed. Try and go back Monday...they are closed. At this point, I really need those items and I'm just going to buy them from a normal store. It doesn't make any sense why you would have a ton of vendors there on Saturday dropping off their goods only to have them sit, locked up, until Tuesday. If you need two days off, take Saturday and Wednesday off when the outdoor market is in full swing. + +My next complaint is the selection. I'm not even going to complain that you don't have basic things like fruit or butter. I'm going to complain that you carry fish from Alaska (not local) and that you carry Shamrock milk! WTF! You could be carrying SuperFarm milk, butter, and ice cream but instead you carry the same thing Target has. Try supporting real local business instead of mega-giant Shamrock Farms. + +Finally, what's with the ""wine bar""? Is it actually somewhere in the building or am I supposed to sit in the middle of the produce and drink? It really feels like too much room was wasted on the sandwich/wine bar counter area and not enough was set aside for actual groceries. + +I know this place will get better but right now one would be pretty hard pressed to do their grocery shopping here.",review,fev0iI-XDrteD4SYRKjiUw,1,2,3 +OFBJtqWGSx6n6CchtVmoRw,2006-10-07,t8OogNkBhEEG8k5uLfpDEA,4,"Delux makes good burgers, but you probably figured that out already. They also have good fries (sweet and regular potato thank you very much). They are kinda expensive. If I have to compare it to something I would compare it to California Pizza Kitchen. Better than a regular Pizza, but probably not worth the cost.",review,9Ysj3f3tI3m5QRDxvQAIKw,0,0,0 +XNSito__Fne14TXU0vz1Qw,2009-03-22,vlzUqHUXWuUzfrrMMzB4Pg,4,"Found this place by accident.... must say I was pretty impressed. +Went for lunch, and I'm excited to go back at night for some live music.... +only downside was the lack of good cover on the back patio. Its totally cute and I love patios... but every time the wind blew my iced tea (which, BTW, is ridiculously good) filled up with little tiny leaves. +But aside from that small set back... our waiter was personable and attentive, the food was surprisingly good, and the ambiance just right.... +The menu is a little sparse, but I kind of like that... they don't try to do too many things, and what they do - they do well. +The servings are huge. I wound up taking half my panini home (guess I shouldn't have filed up on the bruschetta!) - what really impressed me was that it was still good heated up in the microwave the next day... sandwiches, let alone paninis - don't normally keep that well. + +all in all a good experience, happy I stumbled upon it.... I'll be back.",review,WcSgL85yRs3wuuu-VKQXcg,1,2,0 +uEJQSIjWui-TDWXaGlcqyQ,2010-01-10,vSM3CtnIMEoNyku6vsj7EA,2,"2.5 stars- +went to Lolo's for lunch on a Sunday- the place was nice and busy- waited maybe 3 minutes for a table. Were seated but had to wait an additional 20 minutes for a high chair as the 2 they had onsite were being used. Ordered the Te-Te's (2 chicken legs and 1 waffle) along with French Fries and Beans Over Rice. Food came out with my entree about 4 minutes before my friend's did. We were never brought out the fries or beans and rice- reason for it per the server- there was a big party (8ppl) slowing the kitchen up. + +Food was good, not great, staff was very nice and hospitable. I will go back to give this place another shot- try something different on the menu as the waffles were super heavy and doughy. Chicken was cooked to perfection- I swear I could have eaten 10 pieces!!",review,jPSUB56-6Y7W_3OjnZpRVQ,1,2,0 +cdwHgELA2puX2DNfwSt5EA,2012-07-23,9vTJiGbTueKbzJLBbzVpNw,5,"Beautiful ,wonderful and very romantic ambient setting sets the tone for a romantic dinner with the one you love . + +We first experienced El Chorro back in early April ,and were so enchanted with our patio dining experience ..beautiful view of Camelback MTN. lovely flora and landscaping ,and their adorable organic garden area. That we have returned a few times ,and every visit has been wonderful -impeccable service and delicious fare. + +Dinner High-lights ; + +Niman Ranch Steak ,twice baked potato ,asparagus. +Free Range Chicken, mashed and peas +Chopped salad and the Chicken Cobb salad both fresh and delicious. +Veggie pasta with shrimp . + +Drink High- lights ; + +Honey pot ( jack daniels lemonade drink) +Mojito ( strawberry and Jalapeno) sooo good! + +The sticky buns are just sick !! we always take an order home . + +Fabulous ! every time.",review,vtC_cpesIJZ3--W9J-UIXA,3,3,4 +nXFQjMFJ0qLQSrq1TwLrWQ,2008-12-23,GpNRBAkJUbq3g2PAlChF7w,4,"If you need a hat, this is where to go.",review,5p8cCKiCbru9FL7HNDYCbQ,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2011-03-22,oEOvPxSVJyLTH5Kc7c1oWw,4,"2 for 1 drinks at night, awesome homemade veggie burger & by far some of the BEST salad dressings I've ever had. Shrimp & fruit salad with the champagne dressing was amazing. Their house dressing is just as good. By far my fave meal is now brunch. I ordered the ""best egg white omelet you've ever had"" & I must agree! The omelet was huge and packed full of awesomeness and flavor. The drinks were only $3 a glass. Peach Bellini's, bloodies, G-Spot, mimosa's! I am hooked to brunch. They also serve late night, until 12am! FEZ I'm such a fan!",review,3f4iWELs16wiH7167-nCJg,0,1,0 +FhjdZ2DtjVgCfK47bYO6sw,2012-08-07,YR-Qb3cZchiNHZ7tjRZshQ,3,"My husband and I ate here for lunch as we were waiting for our room to be ready (we were checking in early). The restaurant is very inviting and I liked the decor. We had a great window seat the overlooked the outdoor terrace and the mountains in the background was lovely! The hostess was very friends and our waiter was attentive and fairly personable. + +I ordered the Beet & Goat Cheese salad with Grilled Chicken and it was quite good! Even though I liked it very much, I would only give it a 3 out of 5 because they didn't use Roasted Beets...I believe that they were canned beets. Still good, but roasted beets would have knocked it out of the park! The salad had spinach, mild goat cheese, mandarin oranges, red onion, and delicious candied pecans....with a balsamic vinaigrette. It was a very good salad. I wished I had ordered the small serving though because it was a large salad! The + +My Husband ordered the Grilled Chicken Sandwich with fries. The fries were SO good! The sandwich was equally good, but spicy from the roasted pablano that was on it. + +Net-net....it was a very good lunch, but I can only give it 3 stars because it cost us $40 for a salad, a sandwich, a soda (I had water),and gratuity. For $40.00 for lunch, it should have been outstanding, not just very good. I get that it's in a resort, but still.",review,XeDbXueGKrfMLyIG45QIOg,0,0,0 +RCc01aDaUvQ-sWfoalfjXA,2011-08-24,EHHaurKEhtm5o5fX4Dp9LQ,4,"One of the best craft brew retailers in the NW valley. While the Camelback store has an even more impressive selection as well as seasonal sells on certain items, this location also has a pretty solid catalog on hand. I've noticed how the craft brew selection has expanded over the years. I used to be one of the only guys in the aisle and now I have to pull rank and push guys out of the way who are day dreaming for too long. + +I would love to open my own chain and only sell craft brew. I'd name it Total Craft and Nothing more.",review,SGXahHRReksq3m_Zk9V20w,0,0,0 +GlfwqH2dY3MKxrRirKeueg,2012-01-01,imns0qJ-9pusiVN7pCHzjQ,1,"I came to the restaurant specifically because of a recommendation. I am now on a gluten-free diet and have other allergies so, suffice it to say, I don't get to eat Italian often. However I was told that they have gluten-free pasta and other choices. I was initially impressed by the sheet that breaks down their meals by allergen so that one knows what is safe. Kudos on that. This is more than most places provide. + +However, they have Basil Pesto Sauce listed as NOT being gluten-free nor soy free. Finding that odd, I asked the waiter to confirm with the chef, and I was told there was no wheat product at all in the pesto, which seems correct. (I did not ask about the soy, but I would wager that sneaks in somehow thanks to the cheese.) + +So I ordered the Create Your Own Pasta of gluten-free penne with pesto sauce, shrimp, peppers, spinach, and mushrooms. + +When my bowl of pasta arrived, it had all of the above. However, it also had onions, zucchini, and eggplant, yet I had to dig to find a shrimp. I originally assumed I had somebody else's order. + +The waiter, who was wonderful and attentive, took the bowl away and offered to replace it as I ordered. I would have eaten the original bowl, and told him so, but I was more concerned, as I said, that it was someone else's. + +As a side note, if these flourishes of extra vegetables are an example of a cook's flair, I would say that if a customer orders a straight menu item, that might be acceptable. But when I fill out a cute little checkbox form with what I want on my Create Your Own Pasta bowl, I *only* want the items I checked off. + +A fresh bowl arrived later exactly as ordered. Except the pasta was undercooked. I don't mean really firm al-dente. I mean some were still way under done. Now, I know that gluten-free pasta takes longer to cook, and they probably rushed the bowl to get it to me. But that bowl was almost inedible. + +The waiter did offer to get me a third bowl. I declined and soldiered through it. We were having dinner out for my wife's birthday and I did not want to belabor the meal. The waiter then offered us dessert to make up for the problems. Though I did agree to this, and I'm not demanding or even asking for a full dinner cost to be covered, it seems inadequate for management to offer me a three dollar dessert to make up for a twice-failed $14 dinner. I do not intend to go back.",review,RHLKZQWKlfraZcFNjJYxpQ,1,0,1 +1N3D381l_VZZY4ZH-vpDww,2011-05-12,Nh33E3a3sY-tTHrzZXhCLA,5,"Dr. Farnsworth is the Jam. + +I had my first ever eye exam, and she was kind enough to take good care of me. + +She did a complete, and thorough eye exam, and explained each test, and the importance of them. + +After the exam, we determined, that I indeed needed glasses. At that point, my prescription was handed over to the very sweet optician who took care of me and let me try on about a dozen different frames before I found the winning pair. + +I've sadly lost them in Vegas, but I will soon be back to buy my next pair so that I am not blind as a bat. + +LOVE YOU GUYS!",review,8JC-Yb3UDUv2FUl5ym1nVg,0,0,0 +TMdHhDI7jYQ9206dtvrBgA,2012-09-08,xDllc00BAWyr9ETP4nGBQg,1,"Wow this place was steps below horrible. I should have known better considering the place was empty on ASU game night. The food was greasy, and flavorless. Everything on the plate was flat... Ya I said it.... Flat. Bland, disappointing food. Save your money and eat at taco bell. You will thank me later.",review,4rsEkJkwDwuXqcCwvBEFTw,0,0,0 +SKSXkghmYc1DXF2-d9Br7w,2010-11-03,24yqFItSfkEnoeuHdowJbw,4,Fresh and Easy's are great. My only issues is how quickly some of the foods from this store go bad. Don't buy for a week from now unless it is frozen!,review,QhuESGhOQWnKqwlSrISm8A,1,0,0 +FGePlnlKXHxBrxYMNGtdAw,2009-07-25,bDQHRVDSNPT9N2p5dsQ1hg,4,"This is the best venue in the valley for what is intended to be; a midsize venue that attracts national touring acts, with a standing room only intimacy that you won't get at a place bigger or smaller. I saw Clutch here recently, and it rocked my balls off. I didn't drink at the place (took care of that before and after) so I can't comment on drink prices. Parking did suck, but there was a structure across the street for five bucks. One downside, going to the website to check out upcoming shows is tedious. The calendar is soooo hard to sort through, I would only go there to get more info on opening bands not listed on ticketmaster.com",review,fzkO1lGkx8MHhT8S4Rbg3w,1,1,1 +Zx8_4zKdDBSO3qGrkukBIA,2006-08-08,6Ont_PPeZxd3Y4IO9_5yrw,4,"The black beans are awesome. Also recommend the jerk fried rice. Actually, everything I've had here has been good. Free snickerdoodle with every order. Oh, and the salsa is yummy too.",review,zLIV35n1gZ4fg6cGSRqNIA,0,0,0 +jMqcipWlVtodzRFM3snKcg,2010-01-17,E6aMDs9bRjnA7O2KEiTSDA,4,"Are you looking to get a cat? if so, check out PetSmart. My wife and I adopted a kitten here and she's awesome. + +There are always several cats (occasionally dogs) looking for a good home, some older cats (a few years old and some kittens.) There is an adoption fee, but the cats will come with their shots and are neutered/spayed. + +We also use this store to get both wet and dry food and toys on occasion. There are many sizes and brands to choose from at good prices. The food is cheaper at PetSmart than Petco, unless the item is on sale. + +I would recommend to get a PetSmart card to save a few bucks. + +The store is always clean and staff very friendly and helpful.",review,9qCPmT6ovJjxL4tJB4ANCg,1,1,0 +WPmamMTGAmNYXGoXW1mWyQ,2011-05-08,cWTHuwzcmJpQ_JxTL2w-Bg,4,"Seriously good curry. Serious. I'm not joking. I'm serious, the curry is very good. Usually when a restaurant has pictures of the food on the menu I become suspicious (think of Denny's and Village Inn), but here the photographs are not indicative of anything bad. In fact, the food looks good. Did I mention the curry is really good.",review,AvzoWeiZ1yMZKlYU8jB2PA,0,0,0 +jfXqQTdxktGQWkELGn-7wA,2010-10-29,WUu-PK-yULBtQkd1E42G0g,1,"Second to worst dining experience of all time. + +Our waitress was a little timid, which is fine, but it we shouldn't have to wait 20 minutes just to order our food. Our food took 45+ minutes to arrive, and while our friend's steak came out hot, our Hibachi Steak and Potatoes were room temperature. Sent it back to be warmed, they offered to pay for it, which is great. Both managers came and said hi and apologized for the slow cook staff, and made sure everything was great. + +That was the last we saw of them for the next half hour. We finished our meals, and 10 minutes later, had to flag down a different waitress to go and find our waiter, and to bring us cheesecake menus. We always get the Dulce de Leche, but they brought us terrimisu or some junk. I gave it back to the waiter (after walking the restaurant to hunt him down) and said ""no thanks, I'll just pass on the cheesecake."" He looked surprised, and later said we didn't have to pay for that cheesecake. Well I'd sure hope not! + +Two hours of my life are gone. I usually like this restaurant, but tonight's service disaster will prevent me from EVER going to this location again, free food or not.",review,X6RyZWTWZNIVEwes5T3WGg,0,0,0 +MAfc2V_EVtyR9rMxxEAPLg,2011-12-11,IM_0kbrmtpegXvOfae1P-g,5,"Hands down the best Vietnamese food we've found in metro Phoenix. Enormous bowls of delicious pho, served quickly with friendly and efficient service. Our ""go to"" place for pho now. Cheap too!",review,d66FhQQZzFDKxklh6t63RA,1,1,1 +rima62YizeDOVWksZ80KMQ,2012-11-19,VXew7XA6Y3PswNSIz4bJzg,4,"In my book Dunkin Donuts and Starbucks are on the top tier of the coffee shop pyramid. Because this Dunkin Donuts is a couple hundred feet north of Starbucks in this Wal-Mart power center, this location is the opportune review to compare the strengths and weaknesses of each chain using characteristics of these locations. + +FOOD + + Dunkin Donuts blows Starbucks out of the Phoenix Valley when it comes to food. Whereas I am a fan that goes back to my teen years of Dunkin Donuts toasted bagels with cream cheese, I regard Starbucks bagels as filler food that tastes equivalent to a supermarket bagel. Dunkin Donuts signature donuts are the bomb. Starbucks pastries are filling yet forgettable. + +COFFEE + + Long before Starbucks landed on New York soil in the 90s, Dunkin Donuts coffee was the ultimate cup of Joe. In a way Dunkin Donuts is still the ultimate cup of Joe. In my mind their coffee is slightly better than Starbucks. Especially with their added light blueberry syrup. + +PRICE + + Dunkin Donuts coffee is relatively the same price as Starbucks. Whether I buy a coffee with syrup or ice blended coffee beverage at Dunkin Donuts or Starbucks, the difference in price is relatively zilch. + +SERVICE + + Dunkin Donuts trails behind Starbucks in service. Especially at these locations. At Dunkin Donuts, one man was manning the shop. If there was a rush in business, this would cause customer service issues. On the other hand Starbucks had a crew of employees. The woman who took my order was very charming and friendly. Dunkin Donuts service does have one advantage over Starbucks, which is the employees put in the cream and sugar for you. + +COFFEE SHOP EXPERIENCE + + As far as a place to hang out, Dunkin Donuts trails far behind Starbucks. This is another Dunkin Donuts where the subliminal message is to sip your coffee eat your food and move on. Starbucks on the other hand promotes hanging out with complimentary WiFi and comfortable seating.",review,LusAw6vTDC7KAfbuClMReA,1,1,1 +jRfdz5voj40P6WS9L54caw,2011-02-03,GJIpaM72Q1enT5vGG1xyeA,4,"Great location, great food, and nice ambiance. The menu isn't huge, but this is a nice French cafe type setting if that's what you're into.",review,U14IHoSXcztl-4PjyY0pug,0,1,0 +oOqsIaRvdV4La45-JJhfeQ,2007-02-27,lJOlpq4cVEWHkKCL-IWrfw,4,"Had a team dinner here 2 weeks ago. The food was decent and since it's the closest Thai restaurant to me, very convenient. + +Appetizers: Angel wings-- fried chicken drumsticks stuffed with noodles and spices. Fried tofu -- just exactly like it sounds, crispy fried tofu served with a sweet fish sauce dip. Tom kha soup-- spicy lemongrass broth with mushrooms, chicken, and carrots. + +Mains: eggplant dish with chicken-- okay, served with a basic brown sauce. Pad thai-- too sweet and saucy for my taste. Panang curry-- I enjoyed this but we ordered this with chicken and I personally think it tastes better with beef.",review,zLIV35n1gZ4fg6cGSRqNIA,0,0,0 +i5LFOniek1pD8UEiEzGooA,2012-02-22,JA1p0Wrirny_8MbxtPvdvg,1,"Really, if I could, I would give this place zero stars, because it is a disgrace. If you need an emergency vet in the Scottsdale/Paradise Valley area, go to Sonora Veterinary Specialists on Cactus/40th St.(http://www.sonoraveterinaryspecialists.com/). It's also 24/7, but unlike VCA PVEAH, it is a truly valuable, legitimate facility, and it''s staffed by engaged, committed, deeply caring, and extremely knowledgeable and skilled personnel. At SVS, you and your pet are treated well and what you pay is fair and justified. + +VCA is the opposite of SVS in every single way. VCA is, in fact, the WORST of corporate animal service providers. The space is small, cheap, cramped, and the staff are indifferent at best and don't convey any genuine love of or concern about animals in pain or distress. All they want is your money. They do NOTHING for the $99.75 they charge for an ""emergency exam."" We essentially paid that amount just to be given an astronomical estimate, literally nothing more--our dog was the exact same bloody, traumatized mess we gave to them when they gave him back--after making us wait nearly an hour without ANY communication). Furthermore, they tack on bogus surcharges ($5.25 for a ""biohazard waste fee"") that are irrelevant to the ""service"" provided, and their drug prices are absurd--$8 for a single Tramadol tablet, anyone? + +Conversely, our (and our dog's) experience at Sonora Veterinary Specialists was wonderful (even in the context of an emergency), and the cost was ultimately significantly less. + +VCA is a money-grubbing, depressing, sham.",review,HLGREeWew_M4y4rw7MLLdg,0,0,0 +QCxXYA13PtkD3wec47_r8Q,2010-12-17,32zii7Rpnz0eV7hKr0j9_w,2,This place made me remember why I don't live in Scottsdale anymore.,review,OrEmswolaU478cYXXOZukA,0,0,1 +WHd8fLeMeWKUK6sPyeB-UA,2008-10-28,RCKxsfdsoKhsg81q6btT2w,2,"Took the family to the recent opening of this local Logan's Roadhouse to check it out and maybe find a new local 'gem'. +Initial impressions were that Logan's is an imitation of one of my favorite family steakhouses, Texas Roadhouse. We go there every chance we can and have never been disappointed in the quality of food or service. +Anyway back to Logan's, atmosphere was 'okay' (again a wannabe Texas Roadhouse but not quite right), service was fine, but once the food came, that 'sealed the deal' - very disappointing. Not that it was bad or anything, but the quality of the steaks just wasn't anywhere close to what you get at Texas Roadhouse, and when the prices are about the same, well, there's just no sense wasting time or money here. You might think I'm being rough but when all 3 of my kids (ages 7-11) say that they like Texas better, that's gotta say something (they usually never say anything bad - they usually just eat whats in front of them!) +So by now you can obviously guess that I don't recommend Logan's. I really only have one more thing to add.... +.....Don't mess with Texas.....",review,IxuMlibirsWsa29r2sha_g,0,0,0 +rDvz5jX65gpfONFu7er9Tw,2012-01-28,QZj7zlxZTHxHMer_8mPoMw,3,"What started as a food truck back in the 80s, has now evolved to two successful restaurants in the valley. Using traditional recipes passed down through generations in Mexico - LT delivers the flavors that reminisce of street tacos in Mexico. Using ingredients made from scratch, the marinades used for the various meats are outstanding! + +Being first timers there, the service staff was very friendly and suggested what menu items we should try - to experience the best they had to offer. Our number one dish was the #1 (about $6 or $7) - an assortment of three street tacos with chicken, pork, and beef. All of them had unique and bold flavors - you could taste that the marinade had really absorbed into the meats. They were served with cotija, pico, and cilantro - adding that truly authentic flavor to the tacos. We also sampled the fish tacos and burritos. + +Why this wonderful little place does not receive four stars or more? Despite what Guy Fieri said, despite the wonderful flavor of these tacos, everything we ate was lukewarm or less. From the refried beans to the rice, to the taco meat, and burrito. It gave us the sense that despite being made from scratch, these wonderful ingredients had been sitting there for a while. Albeit the flavor and texture of the meats was grand, it did not taste fresh.",review,HjhR3u17OjxD4s8t3toTfg,1,1,0 +0dORc6ckZw5HezR3BuSsqw,2012-10-28,UZj9gxpQPfI8_f0il4QwvQ,5,Outstanding and fantastalistic comes to mind. Real good.,review,LyxdJESdPHfvCY_vSVuX9A,0,0,0 +d7V3ykQHqChv0KtXEanKLw,2007-07-03,BrOsii0PXGXqc4iT7AbTug,3,"Tried Rock Bottom tonight before a movie and I thought it was ok. +I had the Lemon Grilled Chicken with Mashed Potatoes and Asparagus. Everything was very yumm, but Rock Bottom just didn't make enough of an impression on me. If I was obsessed with beer maybe it would have gone over better. Restaurant ambiance and menu were very typical and neither were impressive. However my crazy friend Megan ordered Buffalo Fajitas, yes real buffalo steak, so that was a cool menu option. +Now I can add Buffalo to the list of crazy things Ann Marie has eaten. + +p.s Buffalo tastes a lot like steak.",review,PS0lCxjGNeUrKxYSdpW-Aw,0,0,0 +jSRPuytD6HuRUDzxnQpvBQ,2008-02-02,SvDJPgx6Foh-6RQ0T3Da2A,4,"The new store is smaller than the previous one. But it's still a reliable digging source for records. I wish there was a better selection of dance tracks, but that isn't really their thing. They did have the new Chromatics and Glass Candy 12"" singles when I was in there last, which was nice. + +Great selection of hip hop vinyl, some awesome indie records, etc. Definitely recommend this if you're in the Tempe area.",review,gW-ukHucTfVCnFCKKxPJzw,1,0,0 +Pg8OPh1D2ws0xO-I-8ppoA,2011-09-28,XM7aQ93YxucYRIwFjU5aEw,5,"You don't expect to find a good restaurant in a strip mall, next to Costco, but Upper Crust is all of that. They have fantastic food, including fresh made mozzarella (made at the restaurant), really good chicken wings (ask for them crispy!), and, yes, great pizza. There's always a happy hour special going on and the bar and restaurant sides are totally separate, which is great for both families and the no-kid crowd. And, now, that it's cooling off, you can finally enjoy the patio!",review,GTG2sB8MKqb8BBG0IdVZrA,0,2,0 +ATk3ShTVfXD35kfMELPH7Q,2012-09-28,mzIRhfMaiEhEc8BLuV-j1A,5,"From the outside you wouldn't guess the kind of school it is - its in a strip mall, its small, not very well known - but if you took the chance to come inside and see for yourself you would be very surprised and impressed. This is by far the best dojo I have ever run across. You are welcomed when you enter the door, all your questions are asked whether they seem stupid or not. You are treated kindly and with respect from the get go - a very warm place to walk into. I was so impressed with this place I signed my kids up immediately. They have so many types of classes and the variety and time schedule they really try and have it work around your family so you have your time as well. The teachers here are amazing and always do their best to make it the best class you have every time. I would recommend this dojo to anyone that asks me - and I do. If you haven't come into this place and tried it or have your kids try it then you should - you are missing out.",review,xVTQGVRDnkhpbcfEbszBJw,0,1,0 +JokKtdXU7zXHcr20Lrk29A,2009-03-27,cytlF4g-pv48MIQh8H7usA,4,"I'll give this one a four for atmosphere and BEER... and Steve the manager. He rocks. The food- eh. I don't go for the food. +So last 4th of July, we were having a keger. Hubski went to pick up the keg from Four Peaks (ice cold Kiltlifter) and there were some waitresses talking about the 4th and how they have no idea what it's about. Well hubski shows up and tells them all what's what. Now we've got a friend in Steve forever. +Everytime we are there, he takes a break to chill with us. We got a tour of the facility. This is cool- the Kiltlifter is supposed to be a Scottish beer. Four Peaks actually has biologists balance the water to match the chemicals to Scottish water. The same with the Hefe- the water matches German water. This is all so that we can have the most delicious and authentic beer possible. +Four Peaks is a laid back place, great beer, good people-watching. Bar food.",review,xgrNgHOs8F5JvEX38IeCJg,1,2,1 +ntN85eu27C04nwyPa8IHtw,2009-02-28,sVA8iopVeg0-0w7O35xdgA,5,"Believe the hype. That's all I can say. + +This place is the kama sutra of flavor for your taste buds.",review,FxxYCRPcpd__yhRRmmtyMQ,0,1,0 +Zh_y9AmSfWZpR2JB9wye-A,2011-03-15,iW7lIo3fEtYIJ6RX52kDNw,2,"Liked the theme, didn't care for the execution. Portions were scant, prices not commensurate with value. All three diners were disappointed. Left still hungry.",review,LogquRKfP0EPKJ3hdpB4-g,0,1,0 +-UnYs8XvV1M983xZoREdng,2008-04-05,c0lXKoG8PZ4S58nAiQWIMw,5,"I really like this place... they have great wine... try the tasting... it is 10 bucks and you get 5 tastes... they make almost all of the wine in house (i know the almond champagne is not made there)... i have not found any wine that i don't like... my favorite is their porto and chocolate port. + +the other thing you can do is have a bottling party. i recently purchased 30 bottles (at a great price!!! cheaper then the wine stores). they make the batch for you and then you have a party to bottle and label it. this is a great and fun different party for you are your friends. + +despite it location it is a great place for a date...",review,llkm_iXQszkN5DZvmqjNqA,3,3,2 +jCUOqEK8Lln0PK3GeUl6IQ,2008-03-20,ovUu53ZnfmpyOQ8KPEG_YA,3,"Great location, super cool conversion of an old gas station. My only gripe would be that barista didnt rinse portafilter before pulling my espresso shots , thus my cappuccino tasted burnt. This is however a common problem at most indy coffee places.",review,FXs0UttdgKvyQYDDhVG1ZA,1,1,0 +4gxZ5tPEqm0QnRkILa9cNQ,2010-04-18,YHna_-6ncuLYgYLgpZj8bA,5,"Truckin' Good Food is by far my favorite part of the Ahwatukee Farmers Market! So far, I have tried the Veggie crepe and the Bean and Cheese crepe and both were spectacular. For various reasons, it had been about a month since I had been able to meet up with their tent on Sundays and today I got my fix! + +Jeff and Erin are both so sincere and friendly, which makes it easy to hang out and chat while your crepe is made right in front of you. The care and attention put into each and every order really makes TGF stand out from the rest, the fresh, quality ingredients don't hurt either! + +Next week, I've got to try the PB&J!!",review,AirVzN1BVQBmq5zY0YMNYQ,1,1,0 +NA3tQYxR6Fq5O8nV6u41Tw,2010-09-14,rDAtj7unq56LjMiULVF5eQ,4,"We went there for the first time recently and was pleasantly surprised. We got there about 8pm on a Friday night and the place was still packed. We only waited maybe 5 minutes to get a table which wasn't bad at all. + +My date had the BBQ Chicken Sandwich with a side salad. While we were waiting for his salad to come out the server came over and said there was a mistake as he should have already receive his salad and it would be right up, which it was so not a huge deal. A few minutes later our meals came out. While he was hoping it was shredded chicken it was a chicken breast but said it was still quite tasty. I had the 10oz rib eye with sides of green beans and applesauce. The steak was cut perfectly and it was a perfect size portion. The green beans (which the server suggested) were awesome and the applesauce was a nice sweet finish so no dessert was needed. Another bonus is everything (steak, beans, applesauce) were all served on separate plates so no runny juices mixing all over the place which was perfect!!!! + +The prices were very reasonable as well. + +Overall, we both enjoyed Texas Roadhouse and will certainly be back.",review,YPwFl3RCRwr-kyN-890STA,1,0,0 +_1QQZuf4zZOyFCvXc0o6Vg,2008-01-28,SuB485xp6MQ-LKNPNpUKyw,4,"This is the place the Scottsdale pooches come to smell and be smelled. + +Sure, you've got your requisite handbag dogs and the larger breeds but they've kept them separated by the ever PC ""active dogs"" and ""passive dogs"". Nice. + +The beasties go on the active side since they are not about to jump in a Louis Vuitton carrier anytime soon. The ""active"" area was nicely maintained with good landscaping, plenty of poo bags, and a water fountain. My little prisses don't use water fountains though so I must pack their own bottled water. + +My only complaint is that it seems very crowded and it's not nearly as big as Grovers Basin near my house. But, the beasts were tired and happy on the way home so no complaints.",review,m7j9e53ycZxjWYBD7rZVng,2,3,6 +IM-9thHqQbBK5tX5MfTzBQ,2012-07-16,sPdd9_7P79zTJ0bxX0spYw,4,"Large menu with huge portions. Crowded, enjoyable atmosphere. Great bakery. Somewhat pricey but worth a trip. Food was good. Had breakfast the Spanish Omelet & a breakfast sandwich made of eggs, bacon, cheddar on 2 potato pancakes; bagel with cream cheese. All were fresh & plentiful. Sandwiches are huge as well. Offer ""healthier"" choices as well.",review,INOIvOJb-pSc4gqwpcFSQw,0,1,0 +aRkYtXfmEKYG-eTDf_qUsw,2011-11-04,jGdixmt0QgMjE85uUgfLfA,5,"Okay, so I admit it. Sometimes I get a stubborn idea about not wanting to go to a specific establishment due to a fierce loyalty to one of it's competitors. It took me a while to cave on this one. Too long in fact. + +Everyone loves Lux and as it happens, they have good reason to! My latte was supremely delicious. The environment is great albeit slightly confusing as far as the flow of service. + +I absolutely love the patio area. This place definitely has a Pacific Northwest vibe that immediately resonates with me. The service was really laid back, yet authentically friendly. I was far too busy enthusiastically catching up with a dear friend to take in all that Lux has to offer. There's room in my heart for Lux after all so I shall return. My primary concerns going in were the coffee, service and atmosphere. A+ for all in my humble estimation. + +I was a little late to the party, but I had a blast anyway.",review,KmgUyFBWUdGnIVwdk0hdDw,0,0,0 +V6_sVDynh9Q0rSfbPYrqjQ,2009-07-08,fHxzItWy8-ao06MFqeJm0Q,3,"As the prior reviewer states I too drove by this place a million times. My husband and I love breakfast and are always seeking the ultimate omelet . We both ordered (of course) an omelet. Mine was chorizo, cheese and green chilies and my husband's was cheese and mushroom. I must say the food was piping hot, which is always a plus for me, I like my food hot! The omelet was pretty darn good, and the hashbrowns were nice and crisp. Not my ultimate omelet but I would definitely go again.",review,VW1zLVadNrWZgYBCueSFow,0,1,0 +MwmXm48K2g2oTRe7XmssFw,2012-07-09,YkoeJspw1JNTAdRPE7WrYA,4,"This place is not pocket book friendly. It would have cost us $12 just to park if the center didn't validate and knock off $11.00 of those bucks. For 2 adults and 2 children it cost us $50.00 to enter the door. (This is just to enter the center, does not include the Planetarium or the IMAX Theater) + +My kids and husband found it to be a neat little place, I enjoyed just watching them have fun. Would be good to go with a group of people and watch how everyone interacts with everything. There were a lot of useful and strange facts to learn about several different things. + +I rated it a 4 star because my kids enjoyed this so much. I would suggest trying to find coupons, going on special days because spending $50 to just enter the center and it took us 2 hours to see everything and that was even with them trying all the experiments. + +Worth it to attend at least once though. + +My children are girls and they are 10 & 6.",review,iQiiCZDlisBYApaPCM7uxA,0,1,0 +6lcay-E_ssmzpGanKbColg,2012-10-10,r7i9szvhFbc-EGkp8_HPgg,1,"Not worth comin here. I'm all for food like this but this restaurant sucks. They gave me and my dad the wrong meal, and the food was not that good. The meat was dry and the rice was cold. Not worth it.",review,dZXfEa2OD0P1fej-yTdiXQ,0,0,0 +Cse5FvYuACIxljwaac2SZg,2012-05-24,ImIxEsu1n3mYjB_xSEp6kQ,5,"great service, efficient bartender, the place was packed and he flew around that place serving brewski's nonstop...awesome outdoor patio and great view of camelback...happy to see this little gem and will be back",review,nM3vfxr6fcnN_nXdzwbVCw,4,4,2 +GNC2WXRjEO8e7r5f8ZCVrA,2010-07-05,qoYqECjN8RleSBvf1KGhxw,3,"I like Yogurtland, however, the lines can get long and my yogurt melts by the time I get to the cash register. It's also difficult to fill your cup with yogurt because it is pure chaos in there! Customers are running around everywhere and can't make up their mind. I also hate how I don't know how much yogurt I am getting...it ends up costing more than I bargained for and more calories. Their topping are cut into huge pieces (probably to weigh more) and the topping bar is usually messy. Again, I will stick with other yogurt places.",review,LvAr6xG-A40PGk1quMKxlw,1,0,1 +BVQnDNDIyZJH9Ik8qogatg,2012-05-23,4PzFwjQIO_RXSLeLlWPdhQ,5,"The best of all the Harkins. Better array of munchies and really friendly staff. Also, I wasn't overly carded on my inexpensive purchases. At the Superstition Springs location, I'm carded four times between the parking lot and my seat. Chances are...if I steal a credit card, I'm not gonna sit in the same spot for three hours awaiting the po-po.",review,8-mw_aotUGmP0k0s6QKwOA,0,1,2 +VEojEXbJ81eiPLSSF9jNEQ,2007-03-13,rzDiX796__SRf96XcO20Tg,4,"YC's is a pretty cool place to go. Here's how it works: you get a bowl and you fill it up with anything you want, including sprouts, broccoli, carrots, onions, peppers, scary dehydrated meat and much more. + +After all your ingredients are in your bowl, you then get to choose the sauces you want to put in it. They have suggestions and recipes for you to follow, from sweet to super spicy. Or you can always make up your own. + +Then the chef's wok it up for you and pour it all back into your bowl. You can add some rice to it, sesame seeds or any other toppings that you want and choose a table to sit at. + +My only warning is to vegetarians- you must ask the cook to clean off the grill before cooking yours because if you don't, you will get little pieces of meat in your bowl that have been left on the grill from someone else's meal!",review,0CMz8YaO3f8xu4KqQgKb9Q,1,2,0 +WJ5mq4EiWYAA4Vif0xDfdg,2010-01-22,b2TmvOOnqvccgJU4Lg9fPA,5,"So far, I have been to Lola twice (a Saturday night and Monday morning). Saturday night was very quiet compared to the super busy Monday morning. Free Wi-Fi, coffee, baked goods, and awesome location...you can't beat it. The morning we went, we had a Monterrey Jack scone that was really good. I laughed when I got my latte in a ""So I Married an Axe Murder""-esque cup. We sat along the high tables facing Central Ave and I really enjoyed surfing the internet and looking out towards Central. There are various types of seating as well as some outdoor tables. I really loved this place but worry that it will be one of those places that will be so popular, you'll never get to sit there. That is why I stopped going to Lux because it eventually got so crowded all of the time. My favorite part of Lola coffee is being right on Central and watching traffic and the light rail go past. Love it, love it.",review,RxfFQxUtSIGYwTKU_rvAeg,3,3,1 +dJvUc4ViWEJ0NJfQtYo7xg,2012-05-16,6zZ7n36mJ3JiGpprYjOXZA,3,"Priceline had this resort as 4 star but it looks and feels like 3. +The employees are nice, though. WiFi 13$/24hrs. +Grounds are nice.",review,wT8W3LDUHmgE_O4Mgp32uQ,0,0,0 +jnzROxEjNkgeo5Ju3F8qzQ,2012-05-24,kfIItg_5MS88h0HneR8rIA,5,This place has really good mexican food and a very nice ambience.,review,sGL10Y44CVzzKNkLVeHOEQ,0,0,0 +MAFjNfDWJRgWCw8IOC7mew,2010-10-25,m3ri8IUiWiwOvbhts_jhZA,5,"Finally a place where my kids and I both love the food that doesn't serve chicken nuggets and fries! My kids love Blue Burrito's kids chicken quesadilla, especially the churro that is included. I love their salads and taco plates. The free chips and salsa bar is a big hit with the family. The place is always super clean and the staff is very friendly. The perfect place for lunch on their new patio now that the weather is cooler.",review,f6l-y78wa7xqzauwPbooTg,0,0,0 +kaIue7GRCmkPzDeHDBTttQ,2011-06-10,Rpy0C7K_NUepTPzCp_U_6A,4,"Hadn't been before but my fiance has been going for ages. I had the coconut shrimp, very good and moderately priced. Very friendly service. It'll definitely be a place I consider in the future, especially if I'm using the light rail in the central Phoenix area.",review,UUUa3QKthaYPrfkE2aQujQ,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2012-11-05,ufjps0QLbn1QqIz908PvYw,4,"Velvet wallpaper adorn the dimly lit walls here, and make you feel like Dean Martin might sit at the table next to you. Old school, in the classic sense. I used to work across the street from here, and would stop in from time to time for a great happy hour, occasional employee lunch for my staff or a special occasion dinner from time to time. Being from New England, it says a lot when I admit that they have the best Oysters Rockefeller I have ever had. Ever. The steaks are just wonderful, and the martinis perfectly poured. But you know what secret thing I ADORE about this place (besides the back entrance through the kitchen)? The bread. Warm white rolls smothered in a garlicky-leek chutney of some sort. For all those times your Mom told you not to fill up on bread, just disregard. She never had this bread. While I think you should always splurge here for a fantastic dinner, the real bargains are lunch and Happy Hour.",review,Dw0b16ira4GoAm0wlWlYQA,0,0,0 +WJ5mq4EiWYAA4Vif0xDfdg,2011-05-17,do1reKwHHoOQuRt2e9NL-Q,4,"Not too much to add. But must try nevertheless. + +Second time here, well technically third but the first time it was on a Sunday at 3pm and it was closed. Closed, 3 pm Sunday? That made me a grumpy mumpy, but on the second time/third time when it was open, I was pleased. I mean, Sunday at 3 pm and closed, YIKES!! Where will hipsters look cool and surf on their Mac Books for free or students study for hours while only spending $6? + +Went yesterday (third time) for a little of the old in and out, or in some circles known as a spot of coffee. Nice coffee shop, I didn't eat anything but had a lovely triple skinny vanilla latte and picked up a bag of their espresso. + +I love coffee art and my skinny vanilla latte had a touching and semi-inspiring flower shape on it. I immediately rushed home and scoured You tube to learn to make coffee art with my espresso machine. Oh, they make it look so easy, we tried it and are beginning to make progress, (I made the shape of an ink blot on my latte) oh to think some day my latte will have intricate bird shapes and strange Aztec images on our homemade espresso drinks, alas inspired by Lola's. + +PS. Coffee art is a lot harder than they make it look on You tube. + + +To sum it up, I found it to be a nice caring touch that you don't see at many other coffee shops. + +The shop itself is really set up nicely and in perhaps one of the best central corridor locations possible. Off the light rail and in the heart of Cen Pho, it is strategically perfect. + +The down side you ask? + +The hours are Wimpy, Wimpy, Wimpy. One would expect later hours with a central-downtown-hip-urbane -Coffee shop of this caliber? + +I think the hours are indicative of an inherent conundrum to what ails Central Phoenix as a whole (although improving). Things are just not open late enough to be considered a World Class City. Hopefully, they will have longer hours as time goes on? + +Otherwise, I am a fan of Lola's!",review,78Ed1ndOak2kmzljulPfBg,12,14,11 +GpK-hwVb08ZFJO_xPboKLw,2012-09-26,zuimJsK_p57Q7wn8d0EYkg,5,"So this is my current Sunday All day Happy Hour JAM! + +This place is SO GOOD and I'm not a huge fan of all off Fox Restaurants concepts. + +The Chefs Pizza of the day hasn't let me down yet... We don't even ask we just order it! The Chefs Board is pretty good too! My fav dish right now is the Broccolini - super simple but it's just so light / fresh and make sure you try the Bucatini & Meatballs if your their for happy hour. + +Awesome open feel to it - super friendly staff. The bartenders are great - I wanna say the dark haired brunets name was Nicole - works weekends & knows how to make a mean bloodymary / Red Rooster in their case. + +The parking / Valet situation is a little annoying but remember the sign says ""Complimentary"" not Mandatory - park your car yourself if you want.",review,XSuQgNXTm5YfZSOH44Hxhw,0,0,0 +3BqT16UJFW6BBZxZMPxV1Q,2012-11-11,BQJHvkaRhxXG-AE-4sJ2Ag,5,"We just completed our third tour with Taste It Tours and we've been impressed with all of them. All 3 tours are distinct and are loaded with excellent restaurants. I've spent quite a bit of time downtown, but it can be daunting and I haven't ventured much to explore and try new things. The tours take you to the places you may not notice as you whiz by, give the history (yes Phoenix has history), and overall just slow you down to take in the sights, sounds, and of course, food! + +Can't decide which tour to take? Start with the Original, then the warehouse and finally the evening. Really, they're all good! + +Tips: Have a light snack before starting the tour. Yes you do get a lot of food, but keep in mind that the tours start at 2pm or 6pm. You have introductions, overview, some history and then a short walk to the first restaurant. If you're skipping lunch, you might be very hungry when you arrive as the first restaurant. 2) Wear comfortable shoes. You will be walking about 2 miles. Nothing strenuous or fast paced, but just be conformable (also wear comfortable clothing as you will get full). 3) Pace yourself! Don't eat everything that is in front of you. Each restaurant gives a fair amount of food, now multiply that by 3+ more restaurants that remain on the tour...You get the idea. You will be full! + +Highly recommend for anyone: locals, out of town visitors, guests of locals, team building, etc. Really, who doesn't like food! + +Side Note: Taste it Tours was founded by a few Phoenix locals who love food and their city. They have only been around about a year now and have been doing extremely well. They base their business around supporting local businesses (local supporting local). I'm excited to see how well they've done and wish them all the best (More tours are in the works and I will definitely be taking them!)",review,2MPGdIbaaEdKuW9IpPxHfw,0,1,0 +UScgPn6pIHuOmQJTsZQIOg,2011-04-03,1kf2kG85mGGJ0vv84GgB5Q,3,"Used to live in this neighborhood, and it was a favorite. +The place is clean and modern, I love the look of the bar. The servers are very good, and friendly. +Used to go with a group of friends for ""taco tuesday"" almost every week. They have now taken this off the menu, but will still do it for you if you ask, which is cool. (two fish/steak/or chicken tacos and a margarita or beer for $10). +So why only the three stars? The last two times I have been there, food has not been good at all. Had the ahi tuna sandwich which was always my favorite. It's served rare with this wasabi mayo and so so good. However, second to last trip there, ordered it and the tuna was not good quality. It was stringy and didn't smell right. Took two bites and that was it. Because I'd had so many good experiences gave it another try, convinced myself it was a one time bad piece of tuna and ordered it again. Big mistake. Stringy and inedible again. Probably won't be going back. And if I do, I have learned my lesson about the tuna.",review,slp8VQWuW0Dq_azDCAshCw,0,1,0 +9H1PBcxPxicokgj8RJ4L8A,2012-09-22,Lz384EJApBnym2OXcdrJjw,4,"Self service, good mix n match favors and lots of goodies. Be careful, the bowls are big and you can easily pay more for a single serving than a gallon of Breyers at the grocery store. + +Very dog friendly place. They will bring out a bowl of water and a small softserve with dog treats stuck in it for your little dog.",review,tl4z8iSvX7SwJwbSJt-v8w,0,0,0 +TbaAnzOTX2-boTbAp3e8Qw,2010-09-05,wNiLVGSCpHwvuBTAbT01jA,1,"I signed up for Yelp just because of the poor service and being cheated out of money from Cafe Rio. I already voiced my complaint to the restaurant and to their website in writing, however I haven't received a phone call or email back. + +I've visited this establishment twice and each time I go I receive very little toppings on my burrito or tacos. I understand that it's made to your order like Chiptole or Qdoba, but they'll add very little cheese or toppings on your food, which can cause you to request more. To save myself time and every yelpers eyes from reading this long story, the individual making my tacos was extremely frugal on the toppings on my tacos. She barely put any cheese on my 3 tacos and I simply requested that she could put a little more on the tacos. She did and when I went to pay for my order, I was charged an extra 95 cents for ""side cheese."" The issue isn't the money because eating at Cafe Rio can be expensive for a fast-food mexican restauant, but it's the principle of charging me extra after I said, ""can you please put a little more cheese on my taco."" + +This hasn't been the first time this happened, but a previous visit had the same result with the sauce on my burrito. I thought mexican food restaurants had gigantic burritos and generous size tacos, but Cafe Rio will charge you on top of your order if you don't like their skinny tacos. + +All I ask for from Cafe Rio to acknowledge that when you add more toppings to what the cook's add to your food, that they say, ""this will be extra."" They do this at Chiptole and Qdoba, but Cafe Rio would rather screw you over at the end. + +I will not be visiting this establishment again. As I said, it's the principle as to why they charged me extra for this, not the money.",review,Ri2gusuEHm2kVuZ_YC-mkw,0,0,0 +DbI6ezKctN4Z5SV7LvG4Sg,2010-09-08,DjrJ78sC1u5YlFdNUUZN2g,4,"Fresh & Easy is the US subsidiary of UK based grocer Tesco who entered the American market in 2007. I know Tesco really well and they are smart business folks who know their market. Fresh & Easy has been opening stores all over the Phoenix area and have been using $20 and $10 coupons to build market share. I give them a lot of credit for doing this. + +I also have been shopping here for a long time and appreciate their eye on packaging food items for the busy consumer. One of my favorites is their rosemary focaccia bread dough. I've made it at home, but Fresh & Easy make it ohhh so easy when I'm tired and it's 6:45. + +BTW, thanks for the Hybrid parking space!",review,1BW2HC851fJKPfJeQxjkTA,1,1,0 +mSbFLlDB5Qu-6al1e2DSBw,2011-02-17,XYUDvdJr0dwocLXY4xQiuw,5,"Even though I've only been to Bosa once I've had the donuts from here several times. My parents have been coming here regularly (like, multiple times a week regularly) since this place opened and every time I come to visit they make sure to get me donut in the morning when they know I'm hungover in bed. + +Now, I'm only reviewing this place for the donuts. I didn't even know this place served other breakfasty stuff until I came here myself, but the other pastries & coffee drinks sound good as well. That being said, when it comes to donuts Bosa is as good as it gets. + +They're soft, chewy, and all around yummy...that goes for all varieties (well, the ones I've tasted anyway). Another good thing...they're CHEAP! It's not like donuts break the bank anyway, but even compared to chain donut places the donuts here practically cost nothing. + +The place itself is not much to look at, but who cares! All I want is the donuts!",review,gv6GLZ3-bgSs44PtPJR1Bg,0,1,1 +uEJQSIjWui-TDWXaGlcqyQ,2012-01-23,W6J6noCNjNBom36-avS-Rw,3,"I have never been into soul food per se, but my husband woke up craving some chicken and waffles, and well, you can guess where we ended up. We were so pumped that there was Kool Aid on the menu, so we ordered that immediately. I don't know why every restaurant doesn't do this... Kool Aid is amazing. The service was decent - our waitress was quite friendly, and the food came out quick. I got biscuits and gravy, which was pretty delish. The gravy was thick and filling. So filling, in fact, that I couldn't finish them. I also got a side of mac and cheese which was not great, and I didn't eat a lot of it. Overall, I'd give this place a solid 3. I'd come back again, but mostly because my husband thought it was some kind of wonderful.",review,PDRWbCZa92irf8mK5X_Kig,0,1,1 +bc-lE-wGVAsUrX-kJhtY-Q,2009-03-07,4H0-QZJRYywGwixOMIDftQ,3,"I've eaten here last year and this is the second year. I finally am able to compare steaks to another location. I love the decoration as it's sports of all kinds. There's always something new you haven't seen before. It's the perfect place to eat and study what is around you. + +I had the crusted Parmesan cheese steak. I had tomato bisque and the string onions. Those are good! I had the steak and it felt like it was missing something. I'm not sure what as I don't eat steak a lot. + +The soup was great. It was a cup and perfect. The onion strings were good. The steak was ok. I'll always go back, but not for steak. I also wish their menu was more broad with more items to choose from.",review,wPwoLUKJIeCVp6_Vh7xpAQ,0,1,0 +fF6m3qsD5blnwuZRuYhzWg,2010-06-29,W6QM5ij99thbET6qeAt_rQ,3,"Let me first say that this is a nice place. The Chips and Salsa were some of the best I have ever had. + +My Wife and I both ordered Soft Shell ground beef tacos. The ingredients were great and everything tasted very good. However I would like to note that the tacos were swimming in grease. Overall It was one of the better places we ate in the phoenix area.",review,aGfEYSVuoarYlEwAUa0wCQ,0,1,0 +4vz9I9b6bGEEuRGr3Ry5bA,2011-10-21,_4X6a7eHvFKksVEjaLCkWQ,4,"Love the drive up waitstaff on skates experience! They have happy hour specials with deals on drinks. I recommend the Cherry Limeade, so good, like a Shirley temple with a kick of lemonade added in.",review,C1rHp3dmepNea7XiouwB6Q,0,1,0 +cnoqbQYPhG_5M6zX5dnVyQ,2011-12-30,8nbod5lk7U5-4rW9QR9ZOA,4,"This review is for the new children's library on the campus. + +The new library is BEAUTIFUL! I'm hoping that without a lot of kid traffic it may be a sanctuary for teachers who want to be able to find the books they need to bring to their classrooms and share with their students. They don't have as large of a selection as Burton Barr, but they do have some titles you can't find at the other branches. The shelves are well stocked but not so tightly packed that browsing becomes a chore. It's peaceful (like a library should be), but it could use some more seating. + +I have to be honest that I find the coolest part of this library to be the tiny cafe at the back - they serve Starbucks coffee and tasty pastries at very decent prices. + +Books, coffee, and sweets plus silence and organization...... It's like heaven! + +If only it weren't so far away from me....",review,iZtveTtgf6ZMd6Ym2HK8Ig,0,0,0 +eTbtfgUtfewdncgVf2CbWw,2011-06-23,vKVjN6ib5zoVy6FVJW7XJQ,4,"Food is top notch and within a good price range for a weekend breakfast. I dropped a star because it's always so crowded there's usually a line to order your food. That and they're closed on Sundays. It's a perfect weekend breakfast, how can you be closed on Sundays?! But I eat here all the time.",review,41uQK2oJAmahY0jCrdrl4w,0,0,0 +XAaXT0e70-USVYVKcnljsg,2008-01-12,_-QYKi1nYxvu_Cdxqk6Apw,4,"ABC is the Home Depot for the baker or kitchen gadget junkie. They offer unique cake molds, cake toppers and my favorite- solid color cupcake liners. + +They host a number of different Wilton cake decorating classes. + +They close by 3:00PM.",review,_mo4LtybzPjvg-i6meN-tw,4,3,0 +_9h-jH3YOkAU9-2A-dy6YQ,2011-07-14,YjVwwlxEIbFc0wrXMVviJg,4,"Old Chicago is about what you'd expect from a chain serving by that name - a pretty basic menu, with a Chicago slant. The food rates a solid 3 stars - not outstanding, but certainly not bad, and good enough for me to go back. I threw in a 4th star because we've had consistently great service there. We've had one waitress twice who is genuinely nice, clearly doesn't hate her job, and is on top of her game service-wise. That stuff goes a LONG ways with Brak. For a casual meal and perhaps a couple of belts, I rank Old Chicago comfortably ahead of such yawners as TGI Fridays (which has declined a TON in recent years IMHO) and others like Chilis and (gasp) Applebee's. Give it a try, I think you'll like it.",review,Zm08wcep2F-nRTHRyR8mpw,0,0,0 +Dh-jKrXlivowMGDtfD_gug,2012-05-23,EiGMQdJjvFaVO9auRln5QQ,1,"Surprised this place isn't closed by now. Went here once when I first started going to ASU and never came back. + +Their ingredients are not fresh, gyro meat tastes old and decrepit. They really need to hire better pita makers who don't resemble drug addicts and derelicts. My pita was falling apart before it was even handed to me. Literally, by the time I got it to the table it was soggy and not even worth eating!",review,9UK28WYQvS7aXyNfa_hLCQ,0,1,0 +lhRUPA28pRIN1MnllN-o9g,2009-09-02,In4SQU1ZVx9fU4yq67HphQ,1,"I will never know what the food tastes like because they were so so rude, I will not go back. We came in and were given a table, menus were practically thrown at us. And then we waited, and waited and waited. We asked a woman working there, and she apparently did not speak English and indicated a man at the front would help us. But he was too busy talking. We got up and left. No one even said a word when we left.",review,DMtlC2TpVEimIn0D07HnUA,1,3,2 +9tSHBEoAhKu-tkU8n6SKjA,2010-10-30,oNHKppInXsllqR1yBwydwg,4,"So happy Los Dos Molinos is in the east valley! + +Los Dos makes it spicy so come prepared to drink a lot of margaritas...not like that's a bad thing. + +Great food & great prices!",review,UgttlReSB8g9YF3URK8BPw,0,1,0 +FCJHirFzEtj4M1VcuaKieg,2012-10-21,EhuilB1OjYUS16-1CEMM4Q,5,"Any parent with young children can vouch for me on this one...keeping the attention of a three year old is, to say the least, difficult. They need constant stimulation, otherwise, there very well may be hell to pay! + +Enter, the Children's Museum of Phoenix! + +The facility is an old school, converted into three stories of pure fun and energy! + +After you pay your standard $11/person older than 1 (or your $22 for up to four people with a Groupon), you encounter a three story art project that can only be described as AWESOME! There are multiple ways in which your children can traverse this mammoth. The various pathways challenge children in strength, balance, and critical thinking skills...all of the ways you want to challenge your child! + +After your child has lost interest in this room, you progress to the second floor. Here, children get to experiment with a really cool board that can only be described as ""Plinko-esque"". Here, children can alter the path of a falling object by changing different platforms. My daughter thought I was a genius because I was able to predict where her object would land every time...it's a shame she'll ultimately realize how routine that feat really is. + +After Plinko, children can either go to the trike wash, build forts, or they can head to the art room. After some laps through the wash, my daughter wanted to head into the art room. Being that we went right before Halloween, our child had the opportunity to make black play dough (to make spiders), she got to paint on a giant rocket ship, and then she was able to make a spooky tree out of a brown paper bag. Such simple activities...such great opportunities! + +After cleaning all of the paint from her smock, we made the journey up...to the third floor. Here, children get to play grown-ups. There's a mock supermarket that allows children to either shop, ring up merchandise, or work in the stock room of a miniature grocery store. + +After shopping, our daughter wanted to work at the little ice cream stand located just outside of the grocery. We had fake ice cream cones and sat at the tiny bistro set while we watched children make their way through the noodle forest. We then made our way to the end of the hall to race miniature race cars on roller skate wheels. + +Being only three floors, our day at the museum only lasted a couple of hours...but in those short hours, my daughter never stopped smiling! + +How on earth could you rate any place less than five stars when it brings so much joy to YOUR pride and joy?",review,v6rb-4YhADpuD99f3RKmgg,3,3,2 +VLXpl4P9b2ndIQUd-eGP2g,2012-06-24,84fWNhsMjlnA5Egz4xWdxw,4,"Quick services, a decent selection, and solid customer service.",review,YsPqt0gxG60l0cJvHl_ylw,0,0,0 +qrLqx4oBeR2gNDE873bUHw,2012-06-11,aKTQXkxiC_VeS_MPolRUZw,5,"I found this place completely by accident and it was great! I have been going pretty much once a week since discovering taco caliente. I love that you can choose from about 4-5 different meats and everything is completely fresh. .... Nothing is fried! The service is good and the owner always stops to chit chat with me. The salsa bar is pretty good and the hot is actually hot! Love it! Can't wait to go this week! +The only thing is that I wish they were open later but I know they just opened recently. Hopefully, they'll extend their hours soon. :)",review,-EyEj5BujVFisco6OwmR8A,0,2,0 +EoVGIsaatkdbWLY9qyFcgA,2011-07-14,YV4KrLQJ9z-aMcisXJQ3_Q,2,"I think the high reviews of Sofrita must simply be a function of the limited dining options in Fountain Hills as this is the worst excuse for tapas that I've ever had. We walked in and were greeted by a strange, musty smell that remained pervasive throughout the meal. We should have taken that as an indication of what was to come and left, but based on the great reviews, decided to stay. Big mistake. + +I ordered a red sangria which was okay, but had a strange flavor of figs or dates so I'm not sure if it was just made with old wine that had turned and took on a prune juice flavor or if that taste was intentional. We ordered the olives, fried potatoes, grilled zucchini, shisito peppers, and four different types of bruschetta. The olives were, well, olives (tough to ruin those) but also contained some off-putting caperberries that we avoided. The grilled zucchini was just plain zucchini with no seasoning whatsoever served with a side of what looked like potato salad as a dip, but we never really could identify what that substance was as it had absolutely no flavor so we opted to avoid the fat that it was obviously adding to the zucchini. The shisito peppers had no spice or flavor at all and were absolutely swimming in oil. I've never had a ""roasted"" pepper that was so soaked in grease. The waitress asked if we didn't like the peppers when she noticed that all but a few remained and when we pointed out how greasy they were, politely took them off the bill. The four pieces of bruschetta were all of different varieties: roasted eggplant; ripe tomatoes; avocado and beans; and grilled artichoke with cheese. The bread was thick and chewy and none of the bruschettas had much flavor at all. In fact, I think if I had just closed my eyes and randomly selected one off the plate, I probably wouldn't have been able to tell which it was. The fried potato wedges were actually the best part of the meal, which is sad when the best item is a simple fried potato. + +The atmosphere was severely lacking as there were candles on all of the tables and numerous votives on the walls, but not a single one was lit. The restroom was extremely dark and was absolutely filled with unlit votive candles so I'm not sure if this was an attempt at saving costs, but had I known this, I would have gladly spared a box of votives from home just to create some sort of ambiance while we ate. The place is also incredibly tiny so I have no idea where the flamenco band and dancers that other reviews have spoken of would perform. If anyone tried to move through there, they would literally be bumping into tables. + +While I love tapas style dining, if this were the only tapas restaurant that there was, I would gladly forego the experience. Needless to say, we won't be back.",review,2qnz2y_Z1nDo2HqqfxJxSA,0,0,2 +K845ZDttFfx99zQ-0aE2tA,2009-02-13,3kOWFRioapOXCX5WwKtxsg,3,"I met some friends last night at Cadillac Ranch and this was my first time going. The space has a very odd layout, but there are two bars (one inside and one outside on the patio) and both have plenty of TVs to watch. There is also a very cliche mechanical bull, but unfortunately (or maybe fortunately) no one rode it while I was there. + +Service at the bar was really good, but when our group moved to a table, service became spotty. We had two servers for our table of 11 and one would take a drink order or would be asked for something and then not deliver it or something would get missed...the two servers just didn't coordinate very well. Luckily we weren't in a hurry and were a pretty laid back group. I only ate the Cadillac salad (mixed greens, tomatoes, cheese and croutons) and it was a nice size for $7.95. However, and maybe this is just a pet peeve of mine, but I hate when restaurants put the dressing on for you! I prefer for it to come on the side, as it does in almost every single restaurant I have ever been to, so I can put on as much as I would like. I did try a few of my friend's fries and they were good...not oily and for fries, they were actually pretty light. As a note, for groups, they put an automatic 20% gratuity on the bill, not the standard 18% most other places do. + +Overall, I wouldn't recommend this place as a lunch or dinner destination as I was not impressed by the menu or the entree prices which seemed on the high side for what they were. However the three stars I am giving Cadillac Ranch are for their happy hour: + +$2 domestics +$3 imports +$3 Fat Tire bottles +$3 Flavored Smirnoff Vodka drinks +$3 Margaritas +$4 Rum (Captain Morgan) +$5 Vodka Martinis +$3.50 to $5ish select appetizers (there are about four or five) + +I'm always happy when I can get Stella drafts for cheap. Also, according to the bartender, one of the margaritas they serve can only be purchased a maximum of 4 times by one person because it is so strong. One piece of advice: If you start at the bar and move to a table, close your tab at the bar even if they offer to transfer it to your table. We had a huge mess last night and some people overpaid and some of us underpaid.",review,jqVeTSin5GeRm0ceSg-PBA,3,3,2 +xHe6WBPFINEHUIeq_5yEHQ,2011-03-27,B4_R1YObekq2ypcwD0Rurw,2,"I went here a few months ago, well I guess when they first opened, whenever that was (the fall of 2010 maybe). Anyways I am a vegan so asked about their vegan options. They said that pretty much everything was made with lard (I didnt know that people really still used that) but they said that they had a vegan burrito. I was assured that there wasnt any kind of un-vegan ingredients (such as cheese) in it. I ordered the vegan burrito with much skepticism. Once I got home and got about half way through the burrito I got a big mouth full of CHEESE!! + +I was so upset because I was assured that it was vegan and did not come with cheese. But even worse, I think that they started putting cheese on the burrito and then realized that it was supposed to be the vegan burrito with no cheese and they just kind of picked what cheese they could off and left the cheese that they couldnt easily pick off on there. I am not positive thats what happened but im pretty sure. + +Anyways aside from the fact that they REALLY messed up my order, the burrito was just okay. It was really pretty greasy. My fiance on the other hand seems to enjoy this place, he gave it 4 stars. He said that it is a good place for greasy mexican, and on Wednesdays you can get a huge burrito for only 5 dollars.",review,O-zVhDi_TeMs6R2Rz31g4Q,0,2,0 +8cL7aJVKTYmLguzXEAS3Lw,2008-03-15,7TtCP6bvd8wtK10K2KyLqQ,3,"Yard House seems to be a good place to meet a group of people because of their huge menu, beer selection, and atmosphere conducive to talking... this location can get crowded, so depending on when you go, be prepared to wait. + +I'm typically not so much into chain restaurants but I've been to Yard House more than a handful of times and it's pretty consistent so I don't mind going every once in a while... the thing is, I now have a favorite item on the menu, it's the miso glazed sea bass. When we went the other night, they were out... bummer! + +Our server was fine- not the most friendly, but took decent care of us. We were a party of 6, and I wasn't the only one planning on ordering the seabass... my aunt and I were both disappointed, but what can you do? I ended up with the shrimp and vegetable terriyaki bowl and my aunt went with the tuna tartar appetizer and edamame. Others at the table had the scallops, the turkey burger, a steak salad, and scallop entree... Few of us were drinking that night, but we managed to have a good meal. + +The manager, Clem, came over to apologize for being out of seabass - that was appropriate; obviously, we knew it wasn't his fault, but the gesture was nice. + +In thinking about writing this review, I have to say that I lingered between 3 and 4 stars... I ended up giving just 3 because the Yard House has become just another chain restaurant in my eyes... nothing special, the same thing every time, just plain old average! + +Sure, I'll be back for group meals, but I won't be rushing over on my own or on a date anytime soon. Go for a beer, go to watch a game, go to listen to some classic rock and have an average meal... and if you like seabass and it's in stock, go for it!",review,fczQCSmaWF78toLEmb0Zsw,3,4,0 +z3-tI1KCGhJ_B3-QxhNOOg,2012-08-03,35mue8qxOv0mgeQcGOB9eQ,2,"No way am I coming back here! The shoes seem to be made poorly, but I haven't actually kept a pair of shoes and I never will because I'm never coming back. I bought one pair because I thought they were cute, but quickly changed my mind so I returned them. Do you know how many people asked my WHY I'm returning them? In a very rude manner, literally all the people who were working there. Not only did it make me uncomfortable but they lost a customer because of it as well.",review,jGmnd3qIBPezcuxG0qyD7w,0,0,0 +QAWdgDgWaFJYzJ2pGDjmdw,2011-09-05,10teqvIvfwrnvTDvpMGyZg,4,"I love this outdoor mall. It's clean, it's open and has a wonderful restaurant selection. It doesn't have a huge amount of stores but the stores it does have fits the bill. Now that it has J Crew life got a little sweeter. I really miss the Border book store, however. + +Some cool Biltmore activities are yoga in the park and movies in the park. The movies are usually classics and happen during the fall. Another bonus, is it's super dog friendly. If you have a four legged friend to walk around with, make sure you walk to the east end of the mall and visit Arizona Humane Society's Petique to visit the other pups. + +Happy Shopping!",review,5hIcclyqd9yelg2BlsiXBg,3,2,0 +MJFQJCbA71OO7ugFY4cb4Q,2011-07-06,VD1bU4AxyL32QRFej0RG9w,5,"Great service! Great Value! Best in the valley hands down!!!! + +I am a second generation customer and as far as i can remember my mom has always took my clothes here, from my 8th grade promotion dress, my HS prom dress, my college graduation dress and now i take my husbands suits here! + +Park Avenue has been there for all of my wonderful growing years and hopefully will be here for my future children as well!!",review,YJxts7uAEYMbpCm6mxUncA,0,0,0 +vR3eAwcgkh2EmVJegZO2dQ,2012-12-04,VzkbyLEBalfucb8pZjMS1Q,4,"The burgers and fries here are pretty good, but the custard sundaes and concret mixers are amazing. The PBC & B i will go back for over and over again as well as try the other items. Great place.",review,3xFmGwxQMFOo_xPuq2z1cw,0,0,0 +ixTr1qXUFGTzyaZUuCDDvg,2008-08-04,vJHQtgIwUkYblSzwA6IYmw,2,"A friend and I stopped here today for lunch. I for some reason thought it was an odd choice, but he seems to go often and enjoys it. In fact the woman taking the order said to him, no drive through today? It would looks as though he is known in the whataburger world. + +The people working here are very friendly if not a little disconnected. I ordered a whataburger with cheese and onion rings and a small drink. I opted for the Hi-C. I do not like sloppy food and this burger would not have been if the bun had held up. But as it is onions lettuce and tomatoes are falling all over the place. The meat was dry and lacking an particular flavour. The onion rings were very generic and sort of soggy. I loved the Hi-C. + +You know you just never know if you will like something until you try it. I tired it and that is enough. Nice friendly folks though. I do like friendly.",review,GubdNFoDAsiwE6bWIr97cQ,1,2,1 +fDZzCjlxaA4OOmnFO-i0vw,2012-07-09,F5aRE4oqmHthiHudmnShLQ,1,"My mother always told me, if I didn't have anything nice to say, say nothing!",review,J92bzxYVmyoLHULzh9xNCA,1,2,1 +fecYnd2_OTDECk7bd6GOFw,2012-10-28,BvEnBGw8M82tjiAYp2WsKw,5,great place to go and the pizza ia great too,review,2tPpiBmIZ-yo5HcubK-rjg,0,0,0 +nvaAUTTl7oqiJDhuimNG6A,2010-11-23,EkomkezfQqzrzsC7IH44LQ,4,"The boyfriend and I went here on a Sunday morning hung over from Four Lokos. + +The food was fucking great and I don't even like breakfast food. I got this egg and jalapeno burrito thing with this sort of runny but generally pretty tasty salsa and I wanted to shower in the burrito filling. I would have bathed in eggs and salsa if only to prolong my experience with this semi-breakfast burrito thing. I would have married it and had kids with it and bought a house in Michigan nearby a really good school district. I fell in love with the egg jalapeno burrito thing, I would cuddle with it on weekday mornings and plan trips to national parks with it. + +It was also nice sitting on the patio considering the weather is so pretty and the staff was attentive and friendly and slightly charming with their loafers and novelty socks (is that part of the required uniform I wonder?) + +I'm deducting one star for the sheer fact that this place was filled with rich, middle aged white yuppies talking about golfing and/or glued to their cell phone. The boyfriend and I, being young dirty Mesa kids still slightly intoxicated off Four Lokos, felt mildly out of place in this setting and were a little over whelmed by the amount of yuppie whiteness. + +Nonetheless, the food was worth the trip and the cozy patio on a Sunday morning was a nice change from, you know, Cheerios on the futon while watching exercise equipment infomercials.",review,dfprRWlHx_GRUyCY5vmCbQ,2,1,3 +0db71MbrvcJnyk71COCJBg,2012-08-22,AT6cVwoD-hZiElEVH6oiPQ,3,"Hello my fellow Arizonians..... + +My review gets 3 stars but I really should give it 2... I am being generous. + +I will start....as always, by saying I am the pickiest person I know and although food is a preference.... I know what I like! + +We went on a Saturday around noon and it was packed! There were several larger tables open but nothing to accomodate 2 people so being the outgoing person I am, I invited a couple people to join us so we could take a larger table. + +What a great way to meet people, and they were great tablemates! + +The food is good, I only have a couple CONS.... + +No low sodium soy sauce and most of the food is VERY salty! + +The selection is not great, no calamari or bbq pork and several other items I enjoy. + +The only dim sum restaurant I have experienced out here is C FU Gourmet,,, their selection is greater but their downfall is the food is usually cool to warm and the place has been steadily getting worse. (bummer) and the owner just doesnt seem to care. + +If you enjoy Dim Sum...I reccomend you give it a shot and see what you think. + +And until then............. + +Bon Appetite'",review,l32_Qnelh1c-nuTU9VgOlA,0,1,0 +kKpqsgTcYmMVAcTSHs8fTw,2011-03-05,l3Rn1TGCu-dLq8fTMP_KWg,1,"A couple Saturdays ago, went with my mom to get my name added to her accounts should the unthinkable happen. We first went to Chase which took all of ten minutes. The personal banker was great - in-out-done. Then we headed to her Credit Union at approximately 10:00 AM. They were quite busy, apparently. When we checked in, I heard grumbling from other customers and asked the wait time. I was told there were two people ahead of us in line and it ""shouldn't be long."" + +30 minutes later, my mom went to ask how much longer it would take. Jennfer, who was manning the reception desk, dismissed her rudely in front of a lobby of customers. My mom is as sweet as tea in Tennesee, so to hear her called out in front of a lobby of people as a disruption was upsetting. 45 minutes later, I went up to ask if it would be much longer. Jennifer said curtly, ""We're busy."" Apparently, on Saturdays, they're busy and one should avoid transacting business there on the weekend. I don't recall being spoken to so rudely at even a fast food restaurant in recent years... + +Another ten minutes or so went by (as did my deadline to make another appointment I had made), I was told it would be ""two more minutes"", as I had to go through their background check to be a member. They were having a difficult time with my Washington Driver License and the weird characters it has (an asterisk in part of the number). After all was said and done, over an hour later, I was approved to be a member and was successfully put as a signer on my mom's account. + +I asked for Jennifer's card, as I told her I was not happy with the way she had spoken to me or my mother, and I intended to speak with her manager. To that I received a reply she did not have one. The woman sitting next to her informed me she was the assistant manager and that they were busy on Saturdays. My biggest beef was this: If it was going to be an hour to speak with someone, tell me. I can make other arrangements or come in during the week. Being told first, ""It shouldn't be long,"" and then, ""We're busy"" is not an excuse. If the business is so overwhelming on Saturdays, perhaps it would be wise to staff more people, extend the hours, or inform people of the wait they're likely to experience because of the queue. Or don't open on Saturdays! + +As a 20 year veteran of the service industry, I am very disappointed at the level of service Arizona Federal Credit Union provided my mom and me, but also all the other people I watched be dismissed like the Credit Union was doing them a favor. After doing some searching for a new home for mom's money, she can get a much better rate at a (four letter word forthcoming) BANK! + +I'm normally a big fan of member-owned institutions, but based on the incredibly rude serviced I received from Arizona Federal Credit Union, I'd say go to a Credit Union or Bank where the employees actually read the mission statement that is painted on the wall behind them.",review,Wmlxh305msxQuG2Mje_AvA,0,6,0 +kFVapB4z_5VoOnYazF_ERA,2010-02-02,Bxw7_BuCCeo8R2vBlCNiXw,2,"The first time we tried this place, it was Saturday night and a 90 minute wait. Declining to wait, we returned on a Wednesday night and sat outside, which was pleasant enough. We were really looking forward to this based on Yelp reviews, but were all disappointed. The tomato sauce had a very strong sage/thyme/oregano flavor that overrode the meager toppings. The cheese was definitively not Italian - cheddar/mozzarella mix with very little flavor. We also ordered the ""Favorite Oregano Salad"" which was another disappointment as the raisins overwhelmed the subtleness of the feta and kalamata olives. We will not be back. Can someone please tell me where to get a good Italian pizza in Scottsdale?",review,uAOVKDGoXFnzXK_Nlmx_EA,0,1,0 +N_TlJCR5AkZhmrCDqbm2tQ,2009-11-21,6FjcX0RlHDbRk6mTskbQEQ,5,"One of my fave places in Phoenix. +Well stocked and friendly staff. +I don't normally peruse the DVDs or CDs because they tend to be pricey,but one day I just decided to take a look. +That's when Border's became one of my fave places. +I was able to find a fairly rare documentary DVD. +I paid 40 bucks for it,but have never seen it offered for sale anywhere before. +I very much appreciate a business who refuses to cowtow to the ridiculousness of political correctness. +For that alone was well worth paying 40 bucks for. +I was even more impressed by the staffer who rang up my purchase for not only being knowledgable about the DVD but letting me know they had a biography of the director of the film that had just come in. +Even though the shipment had not been tagged and put on the floor for sale yet,the staffer called to have someone open the box,and bring a copy for me to look at. +I bought that too! +I will coninue to patronize Borders and any other book store that chooses not to censor!",review,-QFUut5cViBP9mYFHghZMA,5,5,3 +4-qDkltBuJ_Lbj3nyxvUlQ,2011-11-27,9dQNhJ5qkPzbQTZRezn3hA,1,"Forget the yogurt and the berry berry bad service. The OCD worker with shadow you and serve you a sample with a glaring stare. You'll never feel so ackward adding your toppings since she'll trail behind you and fix the spoons. Yogurt sucks as much as the service, so I don't recommend.",review,vycqX1IOJZEGzZSBN2F0Dw,0,0,1 +dyd81TK9jY-WLt6UbMFWng,2010-09-01,kIq3ZUOgYSqZ0aqNbOps6A,4,"Cute, small little place that I never noticed until a friend and I went one night for dinner. It's in a strip mall which doesn't really scream elegant, gourmet or even 'good' but this place reminded me of a place one would find in LA or NYC. As I mentioned, it's small. The restaurant is connected to a wine store that serves food as well. Kind of like Sportsman's. + +The menu changes a lot. It's a good deal to go for the four or seven course meal. Go hungry and take someone you'll enjoy spending 3+ hours with at the dinner table. + +What stands out in my mind is the dessert - which I'm not big on desserts - but it was a buttermilk pound cake with honey and light whipped cream and nectarines. Heavenly!",review,qaAmAU9T_t84UDGiBI98sw,0,0,0 +YTOU3COVuBdABXb3Wci_IA,2012-08-03,ZTBSDNo538Ephof6NLIf8A,2,Wasn't impressed. Dressing tasted like a store bought bottle dressing and tomatoes very very mushy.,review,QabWo5qmN71nfmcwYqn5sQ,0,1,0 +ZZevr02C4b_g9RwnezdvWw,2010-01-31,BAcmGB3UZw4geg5whSUmAA,1,"This is going to be brutal. Hide the children. + +If you've been to Chipotle, you'll feel right at home at Qdoba. That is, until you start eating. Complete and utter ripoff of the concept, except for the part that matters - the execution. Where Chipotle succeeds, Qdoba fails miserably. The ingredients are orders of magnitude shittier. The burritos are just plain bad.. My burrito was loaded with rice and beans and very little meat - basically the opposite of what you'll get at the ""other"" place. On top of that, the rice and beans were the suck. And if you know Brak, you know that he LOVES his beans. But not these. About all they're good for is a massive bean fart shortly after ingesting this crap. + +If you want to know the root cause of this debacle, check out who the parent company is - it's Jack In The Crack®. Pretty much explains it all. + +Avoid at all costs. Receives Brak's dreaded zero-star review, rounded up to 1 because Yelp doesn't allow a zero.",review,Zm08wcep2F-nRTHRyR8mpw,0,0,1 +sNuyncpQdcvfEpfZS-3Yew,2012-11-07,WQVr6c3chFsupLi8Sk8rig,2,"The food wasn't that good but that wasn't my main issue. It was the unwelcoming feeling I experienced. I will not be returning. The owner was friendly with everyone in the restaurant except my boyfriend and I. He would go table to table and talk to people and greet new customers and would acknowledge them when they left. The only acknowledgement I was received was an uncomfortable feeling of him staring at me when I wasn't looking, I'm assuming due to my abundance of tattoos. I felt judged and will not recommend this place to my friends or will never return.",review,31E06-50QOTI1AjtOarC7A,0,0,0 +0YEbfeYZXkcTwjos9cgaEA,2012-11-03,JmKKXILuZfN5RKgSCgr_6w,4,"Solid options for fast casual mexican fare. Where else in a landlocked area like Scottsdale will you find a quality fish taco. I definitely prefer this place over Baja Fresh, Chipotle, or any of the other usual suspects.",review,JnAGZh7rjuz-6nKXitHUwA,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2010-05-20,UWX03HHT7XZGC81AiOkY7Q,5,"Having spent lots of time in Sonora, Mexico over the years visiting family, I have always sought a place here in Arizona that provides an honest and quality duplication of the food I have had south of the border. At Sonora Mesquite Grill, I have found such a place that makes food on the spot, using only fresh ingredients, and genuine care for your experience. You can always go elsewhere and maybe get your food faster, maybe have a plasma TV in your face, but I'm willing to bet that your food started out frozen and going through a thawing process in a microwave. + +Celina, the kind and welcoming owner, wants people to receive the absolute best food possible. This painstaking process means long hours for her every day preparing the beef and chicken over a mesquite fire. No, there are no large corporate chain gimmicks or cut corners. Sonora Mesquite Grill simply provides good food at a good price without the use of preservatives and loads of fat. Is Sonora Mesquite Grill for everyone? Perhaps not, but it is a great choice for someone looking for genuinely authentic, modest, great tasting and healthy food with the taste of Sonora. + +If going for the first time, make sure to order the silky and flavorful guacamole and salsas. Finish your meal with a fresh and homemade razpado to truly cap off a great meal at Sonora Mesquite Grill. Simple and great flavors at their very best.",review,uylA7dxa7t6wUWN6FlOMcQ,1,1,1 +nlFlIeziD-4nNUF2B337Yw,2011-08-17,k7ibt2psFssCYeH7XscnjQ,5,"The food was absolutely delicious. Was very surprised in finding a good Asian restaurant here in Phoenix. We had the papaya salad with soft shell crab, Phnom Penh noodle soup, and the lehong noodles. All were delicious and very SE Asian. I could not believe how great the food was. But the best part was the grass jelly drink - it brought me back to my childhood. Can't wait to try the other dishes here. A definite must try here in Phoenix.",review,Zi0h5i-ZKDI9hZQgKCyDSw,0,0,0 +jNS0oWMju3PyOHkMDcv02A,2007-08-07,OtoumFd8NnqVoAdBh1p80A,2,"""Fuck you all, we hope you die. +That's the Trojan Battle Cry!"" +Wow, I can not believe someone Yelp'ed PV. + My freshman year, my science teacher was arrested from embezzling from the strip joint she owned. We then had a different teacher every couple of weeks for the first half of the year. When we finally got a permanent teacher, the damage was done. The kids had no connection or respect for any teacher who walked in the door anymore. + The year I graduated, there were 3000 students and over 1000 in my graduating class. We often had 40+ kids in one classroom. +Man, I hated this school. When I first started on the Bell Rd Campus, we referred to it as PV Prison because of the tall, iron, spiked gates and security in golf carts patrolling the campus for potential escapees. I remember, before they briefly closed the campus for renovations, a girl falling through the auditorium wall, and pieces of the ceiling falling on peoples heads before they condemned it. After 2 years at this location, they suddenly closed the campus and opened the new campus on Union Hills, the campus that was to become North Canyon. + They built the new campus with the intention of having both schools open, but as more and more buildings kept falling apart, they decided to shut down PV and re-open it under the same name on the new campus. + They spent a shit-ton fuck load of money on a super high-tech theater, in return for letting it be used for official Gov't events, that no one new how to use. This was one of the best things about it. I was one of the few people who could run the sound and lights and got out of class frequently because of it. + I remember making a video with Casey about an art show the school was having and not being allowed to air it on the morning video announcements because we used the phrase ""come out of the closet"" and they thought the phrase might be offensive. Then, that same week, the football team had a video where they all pretended to be gay, talking with lisps and flailing limp wrists. When I went to the office to ask what the fuck, they told me that football players didn't need approval for anything they did. I remember my friend being expelled for missing too much school due to chicken pox and a mother not well enough to call her in. I, of course, seemed invisible to the system. I ditched class often, and it never showed on my record at all. I remember when Miss Lee dressed as a hard rocker with tattoo's for halloween and the administrators making her change it because the costume was a bad influence. I remember my friends boyfriend being suspended because they searched his car for drugs (on an anonymous tip) and found a box cutter in his trunk he used for work which he kept in his trunk because he went to work straight from school. I remember testing out of highschool classes before freshman year, yet being subjected to 4 years of bullshit. I am pretty sure it was PVUSD that was the inspiration for the movie ""Pump Up the Volume"", which was filmed in the general area. + When I quit the softball team, the coach/school councilor kept sending people to pull me out of class to try to talk me into playing again. When we took pictures for the badminton team, we didn't have enough uniforms for the entire team. + I felt like I was in some prison or some high security mental facility. In fact, when my mom visited the new campus, she was horrified there were no windows and they used the drab, grey/blue colors they use in mental hospitals she had worked in to keep the patients calm. I never had a chemistry class. My two history classes consisted of a teacher who spent one entire year talking about Shakespear, and another who said that ""The slaves did not have it so bad"". My Biology book was so old, it had my friends mothers name in it from 20 years earlier, AND same friends mother warned me against my Biology teacher, Mr. H__. ""If he ever tells you to stay after class by yourself.. DON'T."" + +The Good Things I Remember - + Mrs. Toal [sp?], a very good, and supportive, English teacher. Miss Lee, the best photography/video teacher ever and always had the best Halloween costumes. Hanging out at lunch under a tree with the boy we called Rico Suave who said he lived in a box and would tell stories about the Horny Lady. Sneaking off campus to go to Barrows Pizza. My friends wearing cut out Trojan condom boxes pinned to their shirt at the forced ""spirit assemblies"" and chanting our own spirit chant of ""Fuck you all we hope you die, that's the Trojan battle cry"". + + Time has a way of blurring the past, and making it less icky. Yet, my sister is a teacher at North Canyon, and a few years back I went and visited her on campus. The second I stepped into the main building, I felt sick to my stomach. Literally. + I hear they have made improvements since I graduated, and I hope so. I don't want my niece and nephew forced to survive another drone factory.",review,akmkd_2iLRrbOyPBfYLN0A,4,3,4 +Ed3AoOwbS2mZZ9ZvUVwdbQ,2011-07-02,BNwJI8n_V0Am6hhdL8d05Q,5,"I just got back from my first visit ti Jacks All In Social Club. I'll be go back. I found the place a nice place to play a hand or two of Texas Hold'em poker. The owners are nice couple want to provide a nice, clean, and safe place to play poker. They have succeed.",review,V_hVEFJp1-969ZZO1y0Y5w,0,0,0 +1Ap6ZNCvyLLKHP0wvCk9yA,2010-05-28,XH9g0_GUnsmditNik7uvEA,4,"You can ride your bike! Yes, that right - take your bike with you - it's awesome.",review,BrJcbK_lH0irQcNSNBEQHQ,0,1,2 +vNQn_2P3lJh_-uBhRuSc3Q,2010-03-03,PbEkBU2uIOyWxCGP9T_KuQ,2,"REI.. I love you .. what and who did you hire??!!! BECAUSE you are such a 5star.. you rock.. you have all things for the active.. even for my active doggy! My active everything.. BUT when I drop over $100 on a reflective North Face jacket so Mark doesnt get run over on the run in the dark on his business trips.. & your startofffriendly and turntobeastwhentoldNO workerbee clerk boy checks me out and I deny his REI loyalty club membership.. not once.. not twice.. he asks whats my DEAL? Wait, DID he just ask me whats my DEAL??? (come here college boy.. ILL show you what my deal is!) followed with.. what you dont see yourself shopping here much? I glared at him.. and stated I was in an absolute hurry.. PLEASE give me my paid for merchandise because I SAID NO! My friend said thank you as we left.. and he actually chuckled.. umm no thank you back.. bad bad bad.. but I love the merchandise and the friendly folks in the bike and running area.. so its gotta rate a 2 for that..",review,sALB8-F04S9VcZMF_GkGUA,1,2,2 +oxsCvEkQNNIbOPDt_QK_0A,2012-10-15,aBMTPjoLBKYvc3f6gfvNqw,4,"We had a very nice meal here last night. The curries were pretty authentic and carried enough spice to make them very tasty. Unusual location but it wasn't hard to find. Good service, though we were only ones there when we finished at 8pm.",review,F55sgaqHq2KE1LsixSKxAw,0,0,0 +Xq9tkiHhyN_aBFswFeGLvA,2012-11-25,WO9nU3RcXwkHZEficOsYwA,5,"When was the last time that you went to a restaurant and were still bragging about your experience two weeks later??? This is exactly what I am doing about the ""Arrogant Butcher."" + +I went there a couple of weeks ago with a bunch of folks from work. We had a private dining area and our servers name was Mark. He truly made the experience AMAZING! His detailed, vivid descriptions of the entrees and desserts were comical and had most of us in tears. You could almost smell and taste each item as he passionately went into detail. The appetizer- soft pretsels with cheese..OH EM GEE!!!!!!!! Why doesn't every restaurant have these??? The crab stuffed chicken......AMAZING! + +We shared several desserts, one which was a peanut butter cup......stand back Reese's......you have competition now!! =) + +The manager came in later and had a professional, yet funny, manner about him as well. What a great team they are.",review,ivTXRXoSSPZx87YsZS0yjQ,0,1,0 +w-8M-VOHICthOgwpQL8UnA,2011-11-22,wrdSVbYnPayOIsAjYUP-3A,5,Love love love this place!,review,J5KbTg3vfFnl7S2PaRxmfQ,0,0,0 +fVgrpVyp-nPLTac9YIjTug,2012-01-31,NSSrrLEHztA7NujfgFqKog,5,Great eats at this joint. New York strip was awesome! Pear salad was bomb and service was superb. I'll be back march 10th!,review,MiAANDVksTAFJ7jjZyefBg,0,0,0 +TAlmdEr0RNWZh9IiUS_BLA,2010-02-24,r7i60X1M8X8OI0xcC5ZRgA,2,"This place used to be quite good but I think they may have had an ownership change recently. Over the past 12 months or so we have seen the quality of the food and service level both drop to unacceptable levels. + +The food is overall average - the fajitas down right poor and the drinks very inconsistent. They do get somewhat busy with a bar crowd but that too seems inconsistent so when they do get busy the service gets very bad. + +When service deteriorates the Manager (or owner, I'm not sure) seems to hide from customers. + +Overall, make the trip down to Shea Blvd and find much better at better prices.",review,2uBJpIW339uRVS0hVXqR-Q,0,0,0 +TMZP6Kzkc-FytzgbgIC9JA,2009-08-06,nlr1oDx3xw2tqqA8lO1lPQ,3,"What can you say about Beni's - Not bad and not great. + +I have been to Benihana in several different cities and for a chain teppan restaurant it's ok. My fave was in San Diego, could have been the company we were with. I would definately say they are pretty consistant everytime we have been. The teppan is a little pricey, the sushi is consistantly good (they also offer the all you can eat sushi), and the sake selection is ok (very average). I do get tired of hearing the birthday song 10 to 15 times while we are dining.",review,ZRQdOIIhzrzE6sc3emgM-Q,0,0,0 +f9WU18QfVnUSuYbkQx5iIw,2011-01-24,l4iSpVLGvIj-epME1AYBzQ,4,"A group of friends and I decided to check out Vincent's Saturday Market this past weekend after a beautiful morning hike had worked up our appetites. When we got there, the place was packed (but still had space to accomodate our group of 6). It was the perfect outdoor market feel, with fresh vegetables from the garden available for purchase, next to organic lotions and soaps, and all sorts of food stands to whet any appetite (crepes, tacos, paninis, etc). There was even a mimosa stand, where for $20 you could purchase a bottle of champagne, a glass of OJ, and as many plastic cups as needed. This is definitely going to be added to my list of favorite places to enjoy a beverage while observing some extremely entertaining people watching! I loved it, and hope to go again soon!",review,zqnAdayPsak5dbLF2gEvNw,1,2,0 +pQ3kRVmttsV1bHxuTf7TAg,2008-09-06,zBWSlUnh7Fsul6ik85Lq7A,4,"This is my kind of place. Had i not known of the Lost Leaf I would have never found it. Its a house in the historic district. + + after hesitantly walking in, I find it to be a cozy dimly lit 'house' it reminded me of hanging out at a friends place in college (well replace the blacklight posters with art work). + +The beer selection is top notch as well as the music. i dont go out to bars much, seeing as I am on a drinking hiatus, but this is a place I would go to... just for the atmosphere, music and folks.",review,a5kDCrf8lvX19EHrqPmAog,2,2,2 +xY1sPHTA2RGVFlh5tZhs9g,2012-01-27,0JyXbDXTiv369E64KHKaTQ,5,"The Culinary Dropout , you get the best of both worlds. The food is off the hook (it's great) ,the service, these ladie's and guy's take care of your every need, and as a added bonus you have some of the best performers in Phoenix, entertaining you while you dinne.....Check it out....Bluesman Mike",review,ZTxpcT1HKzRIRHSBSQRw1w,2,2,0 +1_EtLOR6MvjabkGFmNbQRg,2012-09-26,ya-lhmeLlwHjx5dezJaMyg,5,"I was craving some sweets today and told my husband about this place. Apparently, one needs to make an appointment but my husband made one right away when he called. We got a Baileys cupcake, a chocolate cupcake, and a carrot cupcake all of them were DELICIOUS! Seriously most gluten free pastries are horrible but these were great. We will definitely be going there frequently.",review,rnqv2DT-yo0HRIn6VOZ5Gg,0,0,0 +IYYaa562PybzXf8tQnT17w,2010-03-28,pDeEmyGwzzAwhRyqs7yisg,4,"We went to the game against the Milwaukee Brewers on 3/25/10 and had a great time (and not just because the Dodgers won). We arrived early enough to walk around outside the whole stadium and see the practice fields. We even saw Tommy Lasorda, himself, outside at a table giving autographs! + +Parking was free (sort of; it was included in the price of the tickets), and we were able to park close because we were early. Traffic leaving was ""typical Frank McCourt"" style, meaning that it could have been better. Exiting traffic was set up to force us out in the wrong direction, so it was good to have the car's GPS guide us back to the freeway. + +We were surprised to see that not all of the food/drink stands were open, but I think they had only sold about 60-70% tickets for that game (Thursday 1:00 game). There was plenty of berm (grass) seating. We had splurged for premium seats ($42 each) for the game, and were almost right behind home plate in the seats that had seat cushions and cup holders. My BF was very pleased with the beer selections (Full Sail and Deschutes, not just the typical Miller and Bud offerings). They finally brought in Dodger dogs this year - boiled with short buns, nothing special. I still prefer them grilled. + +Stadium staff was all very friendly, esp the beer guy in our section who said my BF looked like some movie star. On behalf of the concession staff... FRANK, GIVE THEM SOME SHADE! The beer/food stands outside of the actual buildings only had slatted roofs, so no sun protection at all, and no misters. The poor people were totally roasting, and that was annoying to see. + +One odd thing about the Stadium is that it faces SE, which puts every single seat in the sun during day games. Wear a hat and bring your sunblock. Lots of sunblock. + +All in all, it was a very nice experience, and we're glad we went to the game and to Camelback Ranch. Only a 5.5 hour drive from home, we'll probably do it again.",review,ccbVlVGL6C22RuB5ZGeMBw,0,0,0 +QVR7dsvBeg8xFt9B-vd1BA,2010-07-22,hwYVJs8Ko4PMjI19QcR57g,4,"We got here around midnight last Friday... the place was dead. However, they were still serving food and we enjoyed some well made pub grub. Service was friendly, quality cocktails were served, and the atmosphere is derived from an old Uno's, which certainly works for a sports bar. It being located in a somewhat commercial area, I can see why it's empty so late on a Friday. From what my friends tell me - this is a great spot for happy hour, and it stays relatively busy thru 10pm. + +*UPDATE - Great patio for day-drinking on the weekends!",review,90a6z--_CUrl84aCzZyPsg,5,5,2 +I7IfnWW1nXljC4ZGqwPe-w,2009-12-13,BaLkJ6XxvqhWEmjiRuFS5w,5,"Not being a big fan of chain restaurants, I wasnt super excited to eat here last night. I was however, starving and craving mexican food and wanting to try somewhere new so we ended up at Manuel's. + +OMG I loved it! The salsa's (especially the hot!) the chips, the cheese crisp with green chiles and onions, and most of all: the chilaquiles!! I LOVE chilaquiles so much and had mostly seen them only served at breakfast until I opened up Manuel's menu and there they were, just how I like them! SO good I wouldve licked the dish they were served in if I wasnt so full afterwards! + +JD had a rolled quesadilla that was fantastic too and we both needed to be rolled out of there when we finished eating. It was so good though that I'm craving it again today. We will definitely be back!",review,wC1CPV5bf--bDLtlhNSPLg,1,3,0 +JuBygU4XDjqSeW9okyvbsQ,2009-09-03,qRlZQpRxMlnK3bL6XYoWOA,4,"very nice setting, right next door to Joe's Farm Grill (previously reviewed and raved about). Friendly, cozy and crowded. Great, huge sandwiches and good coffee. I am picky about coffee though. A lot of places have coffee that tastes good but for some reason makes me very thirsty. Such was the case here, but it was ok. The absolute standout for me was the peanut butter scone. Never had one, or even heard of one before. It lived up to my hopes and I enjoyed every moment I spent eating it. + +Added bonus, the fresh dates were out at the farm stand. However, the plastic thing on the wall that was supposed to hold the cash for the honor system was empty of envelopes. I asked at the coffee shop but they didn't know. Said it was a different place. Well, ok, I went back. Stuck my money in the plastic thing. Figured even if someone else took it at least I did my part. It wouldn't be on my conscience. Had to have those dates. + +All of Joe's stuff - you're great - I hope you stay in business forever! or at least a really, really long time!",review,TI88k_ezEWaj_XZSiuBNGA,4,3,2 +5nahZe5bBYUbFWgEfwoNOA,2012-08-28,boqyWuj54j-rfqiYV1JP1g,3,"Ok, so this is a Sprouts now. Boring. +The layout of the store is pretty much the same as when it was Sunflower. I would like this Sprouts more, if it was like an actual Sprouts. Instead it's just a weird transitiony in between ""Sproutsflower"". That's what I'm calling it, until they figure it out. Atleast they still have the soup bar.",review,fYayRBmQjB8f5eyH1WR-1w,1,2,1 +-0QBrNvhrPQCaeo7mTo0zQ,2011-06-26,dx-uyV1hWZ8jQ5szxqeorg,4,"Best shrimp burro's. If it wasn't in the hood & make me cringe @ the thought of going in at night alone, I maybe would have given it 5 stars. +The staff is as friendly as any other Mexican spot. The place is kept decently clean. Don't let the outside totally deter you from at least stepping foot in the place. There's a couple TV's playing Mexican music video's to get your mind off of waiting for your order, which is surprisingly fast. Call in orders are necessary when your trying to beat the lunch rush. But any other time, you could be out the door in 10 minutes. +This place has been here for a while now. There is other La Salsita spots to go to in the valley. Some tweaked their spelling but all in all, best shrimp burro on this side of Van Buren!",review,DghMl81bONCh5ELnrgn4Fw,0,0,0 +uf4AWTEI6RmRUXx-28MZsg,2011-02-23,phOs3fgWmVUGWny7GDFx6Q,5,"This is the only Ben and Jerrys that has successfully withheld the recession in AZ. This means that this is the only one left as well. Its located in a beautiful plaza called El Pedregal. They have live music on Sundays. I found out this information from the friendly owner who told about the history of the store since I asked him if their location was really the only one open in all of AZ. + +The location is very North Scottsdale. I am not sure how it does for business, it is far from commercial areas. On my drove over, I mostly noticed many well built homes. + +This is the only Ben and Jerrys left, and I strongly encourage those who enjoy this ice cream to go out and support their business.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2010-03-03,MWcPQMNNR6-ZF8-8h348SQ,4,"I've been here three times once for lunch and twice for dinner. Lunch was pretty crowded, dinner not so much but tons of take out. Prices are cheap and food is good! + +I love the beans and I recently tried the guacamole and loved it. Try it out and see for yourself.",review,922TKMD60Oor4uHsPjL5Hg,0,0,0 +mjoxSQR7bFQtlIIjfNfaSQ,2011-12-24,QiiPHANcnIqVipRbGu2VgA,4,"My parents and I went to here after leaving a previous restaurant for poor service. Big Buddha was the the complete opposite! They were attentive, the food was steaming hot and delicious. Definitely recommend for dine-in or event take out. The Singapore Noodles and Honey Walnut Chicken are definitely must tries.",review,8JMsp0Z9N1eWGFuQcQxD0w,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2012-09-30,XgHSAC54S7JZ4tNo-nRgBg,5,"They had Kool Aid! i was so happy to see it :) + +The chicken and waffles were really good... my girlfriend and I went straight there from the airport, before going to our hotel, and it was completely worth it... + +yeah, waiting outside in 100 degree heat isn't ideal, but for 10 minutes you can deal with it... especially when they had someone outside giving out water + +If you're ever in Phoenix like us, or live out there, definitely stop in!!!",review,r01TfUd2TdZ1N464B1IhJQ,0,0,0 +ZG4oIFBRlXyaF5F9L3dzxg,2012-10-10,yMiNSE7ymTrQBpdKNYG-Jg,1,"PIECE OF **** manager wouldn't put air conditioning on yesterday. It was 90. +They just lost alot of business.",review,-xGJ4pQ_0tSkNAUCsuq4SQ,1,2,0 +SDwYQ6eSu1htn8vHWv128g,2011-10-17,KSZfpeKm0HRhbMlDsVlCjQ,5,"Postino's is a great date restaurant. Especially on Mondays and Tuesdays when they have their $20 bruschetta and bottle of wine special. You can choose any bottle of wine off of their fairly long list of wines and get a delicious board of bruschetta for only $20. Major win. The proscuitto and fig is my absolute favorite, followed by the artichoke, brie and apple, and salmon and capers. The restaurant has a great interior and patio with a huge wall glass garage door that opens up to connect the interior to the exterior when the weather is nice. If you join their mailing list, you get a free bruschetta board on your birthday and the restaurant's birthday. I also love their sea salt caramel sunday - it's the most delicious dessert ever. You have to try this place. It's just great.",review,DWYH3H49-KhUoJX7TfidaQ,0,1,0 +wy_R4crNr1BH0CP87y9UHQ,2011-04-24,Q3pvIbtm2fMo4_1ApIVE2A,4,It was pretty good. But I dont know much about Indian food. It was better than the only other place I've been too which had dirty grey chicken in its dishes. Taste was good.,review,jOs47GO0b7iPsbYZe-lLSQ,0,0,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-01-12,5LjP7wMvVl197y1j-dGw5g,5,"This is my current first choice in eateries. The spring rolls are made with rice paper and such an array of fresh bite sized vegetables, it melts in your mouth, and there are so many different kinds, ave price 3-4.00. Did I say they are HUGE? It's a weight watchers dream. Everything on the menu that we have tried has been delicious and presented beautifully. The sauces accompanying each dish are always intrigueing and tasty as all get out. The best thing of all, though, is the Ginger Creme Brule. Wow, sir. It doesnt get better than that. If you like Viet food, Thai food, or just plain fresh, good food, then this Vietnamese restaraunt should pique your interest. My goal is to try everything on the menu.",review,fw4BmstcyqW4w4r4tTfp5A,1,1,1 +JXQBl4aCf5-dQhcg_5LwCg,2007-12-09,w23nmkMG7blPRBdyvsdCNw,2,"Eh.... 2.5 stars, maybe? 3? Not sure, yet. + +After looking at the menu online, I really wanted to like this place. The menu has some creativity to it, unlike the template-North-Indian-restaurant-menus you find at many of the Indian restaurants in the Valley. Aside from offering things like korma, kadai, vindaloo, etc. with a variety of options (chicken, lamb, paneer, shrimp or fish for each) they also have some other more unusual choices, like one of my favorite dishes, mattar malai methi (creamy fenugreek and peas). And dahi vada in the appetizers... I couldn't wait to check it out. +Unfortunately, three friends and I went at lunchtime on a Saturday - and there was a buffet. So I didn't get to try any of those tempting dishes. + +The restaurant itself, while decorated a little haphazardly (Chinese paintings?) is bright and clean. There's a TV on a wall, which happened to be playing one of my favorite Bollywood movies...so I was still excited about the place. + +But...after tasting the food...meh. + +The buffet was all right.. but nothing to write home about. Pluses? Once again, it had something different..fish curry as well as an Indian-style Chinese dish or two. So that was cool. But the food was just so-so. I was there fwith three other people - one of them said the cuts of meat, especially the chicken, were of higher quality than most Indian buffets. But he didn't like the sauces so much. One other friend said he liked the tikka masala, but that was about it. +As for the vegetarians, well, we didn't have a lot of choices. Veggie manchurian (which was pretty good), a very bland chana masala and some pea/carrot thing that reminded me more of baby food than anything else. +The dessert was just all right, too. And the rice was very bland. + +So, overall, I wasn't impressed. But I don't want to judge the place too harshly based just on the buffet. After all, Curry House was packed on a Saturday afternoon, so I'm thinking maybe it's got something better to offer me.. I'll have to go back for dinner and see what their non-buffet selections taste like before I totally write this place off my list.",review,hnirQYfI4cjrzSMENyQTWw,0,3,0 +lgzBrfQAwm-dcDXu12CkgQ,2012-05-01,yS_jW4NorfZnrPKL3z-Hsg,4,I used the drive thru early one morning on my way to work. I ordered a breve latte. It came as expected and was very good. A little pricey but I'm cheap. I hope this place stays in business. It's nice to have a neighborhood coffee shop that's not a chain. The drive thru option is great too.,review,fssanRnCXYXnQIP-zu-71g,0,2,0 +FY_OXEVcewAQFZuu6fynLA,2012-07-28,_hhdvIc7MSWJ2Ah3r1tg2g,4,"This is my go to place when I want a cheap quick meal without having to get fast food. They have healthy options and use fresh flavorful ingredients. Their portion sizes are generous and the staff is always nice and friendly. My favorite is the greek salad w/gryo meat, the dressing is awesome! I'm also a fan of the platters and spanakopita.",review,2hXL2ExBsgjJNpm6BJy0lg,1,2,1 +L7UxfZyS_-jFOxRwG0SZWw,2010-03-22,fypqvxabp8NsCQSvfPJcHA,4,Very friendly place to get lunch. Sandwich are good for a great price compare to what we paid back in Cali.,review,BRNVGPDi58XPDyxfxX39sg,0,1,0 +JM6X0PJBcMkAjOuZqMaZsQ,2011-05-30,Swq1PW6t_GF8UPuP4GFLIg,2,"The food was good but, for the price, there are a lot better steak houses. For this price point, I would suggest Donovan's or Mastro's.",review,alcQ3nNK277jNq4aneqYcw,0,0,0 +hqVbmZNLTdR2y7G7oJu9vg,2010-12-24,ZugiT55Y8rJewJLbihGJdw,5,"This wasn't the first time, but we went to Tutti Santi for a family Christmas Eve Dinner. All I have to say is that everything was simply perfect. Not only the food, but the service. Which to me makes a restaurant with great food go from good to great. + +I ate the lamb shank- Angello Dorato, which fell off the bone and was delicious. I cleaned the plate. + +Dad had the veal marsala with fettuccine alfredo. The veal was fantastic and the alfredo was just right. The sauce was not too thick-not to thin. Dad cleaned the plate. From him being in the food industry for 30+years and eating in many italian establishments both here and Chicago, believe me that says more than alot. + +Mom had the special of the night, which was a cioppino with tons of seafood. When most italian restaurants serve this dish at least one of the seafood items will be rubbery or fishy tasting (not in a good way) especially the mussels. Not here. Everything was the way it should be. I felt this was the plate of the evening out of 3 great dishes. Mom didn't clean the plate, she has a small stomach. But I will be eating the leftovers in about two hours after I sleep off my meal. + +Everything from the bread, the calamari fritti, to the tiramisu was fabulous. I'm glad we couldn't get reservations anywhere else for this special meal. + +Gratzi and Buon Natale. + +Oh yeah, I didn't get the raviolis this time, but if you've haven't had them it's a must try.",review,nTpprsKsqK4pE9dgwdJodg,0,0,0 +yW4XOMS4biiSXOwkbZ6wpA,2011-07-19,dnVxNsWk7WCTwm2_WicqJQ,4,"Just down Scottsdale Rd from the plastic, the cougars, the roid rage, and the Delta Bravos is a little place that doesn't give a shit, in the best possible way. + +In many ways, this is the dive bar Scottsdale doesn't deserve but needs oh so badly (and let's face it, being south of McDowell probably means you are not in Scottsdale by many people's account, which is just fine). + +To be clear, let's discuss some things a dive bar is...First, they serve drinks and beer. No basil martinis, No Sonoma pinot noir, and No craft double IPAs. Second, you do not come here to be seen or for a scene...see the first point for what you come here for. Third, the motif...none...unless you count a few characters at the bar. + +Now those are the basics, but Rogue Bar adds in great local and national acts, a diverse, non-Old Town crowd, and a friendly staff. + +For instance, I recently saw The Mulhollands, from LA, and I assure you, this band will soon be playing venues where you won't be getting up on stage with the band...not that anyone I know did such things. + +That is a great thing about RB, the lack of pretense carries throughout all aspects...even the DJ let me play with his DJ toys. + +Yes, yes, you don't want to model your toilet after theirs, the pool table is old, and you may see a fight. But, these are added flavor for a true dive bar. + +At the end of night you can say you had the chance to -- crash in some comfy booths, play some pool, order pizza for the bar, meet some real people, have a cheap drink, and if you are lucky, hang out with the band at an after party. + +If you like a dive bar, go. If you don't, stay up the road, nobody will miss you at Rogue.",review,0NckJhx0qXykvvhsm-p7MA,6,6,5 +UKgSs_SJzW9fu4CwhIV1yA,2007-05-31,cZRv3APqMLSMpgi8mfi51Q,4,"Since this is a Kimpton Hotel my standards are fairly high. + +The reception area and pool are very well done, in typical Kimpton fashion. The rooms are nice, however could use more work. The bathrooms are completely remodeled, but the little amenities that I'm use to like the Ipod docking station, flat screen tv, cordless phone, room service past 11pm and multiple outlets (i'm an electronics junkie) just aren't there. The room really feels like any other average hotel. + +The spa was lovely, but it is not a full spa. I was hoping to sit in the steam room before my 90min massage, but unfortunately there wasn't one to sit in. The massage room was nice and the largest I had ever been in. It had it's own private bath/changing room and a large copper tub close to the actual massage table. I was pretty bummed I didn't add a bath to my massage. + +All in all I would stay here again since it's in a great location. Plus, the guys at the bell desk will give you a ride (within 3 miles) in a Cadillac Escalade free of charge. That was a great when it came time to partying at night!",review,a0pG_Dl4sKb3yNps7I_hMQ,2,2,0 +SzCMZ664veIZpYp4Tk84Hg,2012-03-27,waDiuNyhi6ZkDF2JEHoL2w,4,"Very authentic Szechwan style restaurant. On a average Sat evening, the restaurant is pack full of Chinese family. The service has improved a bit recently. The first opening months usually has very long wait. + +Szechwan restaurant style dishes tend to be spicy and salty on purpose. Most dishes are medium spicy here. So if you can take the average Mexican food, you should have no problem here. Just ask for lots of ice water. + +If you don't eat very spicy, there are still many great noodle dishes and dumping dishes.",review,QKCyMJB9hH-HbiQvAgBfiQ,0,0,0 +hZRLGfRrZTo9up2P-0aAHg,2010-08-20,7Gp-IoYQB1oo1jMgH0YZDw,4,"Verde = good, quick, close-by & cheap = YAY!!!! +So...We went for breakfast last week and here is the result: green chili pork: Delish!!! Tortillas: Delish!! Eggs: Yuck!! Guacamole: Good!! +The breakfast eggs are the 'fake eggs' - you know the ones that come in a pourable carton...honestly a little disappointing, because 2 sunny-side up eggs wouldve been muy bueno!! +but everything else was on-point so i just wont order eggs again! :) +we also ordered take-out this week: the whole lime-oregano rotisserie chicken it was MUY DELISH!!! This is not your grocery store rotisserie - the flavor was amazing!! the whole fam luved it and devoured it - +Verde will be my new go to when i dont want to cook dinner or when i need a quick lunch!",review,rpa5wYCeXO2kvQ92KH_HvA,1,1,1 +XkNQVTkCEzBrq7OlRHI11Q,2010-04-17,w8DLGnymGeSrd7jjx-B78Q,5,"Deceptively fantastic. Like Lady Gaga. Pizza A Metro is the Lady Gaga of mid-range Italian restaurants. + +It's so unassuming from the outside that I was pumped when pulling up. Oh, man, Ben, we could get in a knife fight at a location like this! Sweeet! + +It's not that bad. But the food is righteous. The pre-meal bread with the tomato + balsamic + red onion deliciousness was such a great alternative to the typical bread and oil. We split the antipasti (yes, the portions are comically large... we maybe cleared a layer (a delicious, delicious layer) of very fresh, yummy artichoke hearts, prosciutto wrapped canteloupe, and a smattering of other favorites. We then had the pizza with sausage and broccoli. Perfect cheese, perfect crust, yum sausage, perfectly crunchy fresh broccoli. + +It's clean and warm on the inside. Try it. You like it. And tell no one that I mentioned liking Lady Gaga.",review,gq_G5VCDziyEV2-bzGuqzw,1,1,2 +9LF5u2jiMjRNoWrxv2kLTA,2010-03-31,9I3vcsQm4ni0CWeeOAuBnw,5,Hate long lines at the DMV? Hate dealing with the DMV for any reason? Then you should check out Desert Title Service. I had a complicated Title transfer and was dreading spending 4 hours at the DMV office the last day of the month but I knew I had to do it. So today my daughter and I went over to DMV and waited an hour before deciding to call Desert Title Service. Had I known I could go in to a place with no lines get a title release and a title transfer I would have checked them out sooner. I called their office while sitting in the DMV and drove over. In less then 15 minutes I had the title released and the title transferred. Daughter had new plates and her title in less then 5. If you need anything to do with your car I urge you to call them and/or visit their office. You will be surprised at how fast and efficient their office is. I will never visit the DMV unless I have to.,review,5Td84D4oDkkgxsMeqcrTRw,0,1,0 +L-bpJXpA5875dLb7A4wh6A,2009-12-02,Dh9Nyayao19-P7rwoL11sw,4,"This was so good I wonder why Mongolian BBQ hasn't sprung up in every city (hint, hint Alabama!) When you go in you pay for either a small bowl ($9) or a large bowl ($10). I got the small bowl and still had enough left over for another meal. + +The ingredients are spread out in a buffet. You go along the buffet and fill your bowl with whatever you like. I chose chicken, lots of veggies and rice noodles. The trick, from what I can tell is to shove as much food in your bowl and then using the handy wax paper they leave out for you, smash it down into your bowl so you can fit even more in! At the end of the buffet are tubs of different sauces and a chalkboard with instructions for different combinations. I am a bit of a traditionalist and mixed up the Mongolian sauce. You then hand your embarrassingly heaping bowl to the cooks who quickly stir fry it for you and then hand it back. + +Can I just say oh my God was this delicious without sounding vain because really I sort of cooked it myself? The ingredients were super fresh! There is also a small bar with soup and rice, but I wouldn't waste my time with those if I were you! The BBQ was delicious and fun to prepare!",review,Y5Bu0M1AZzre9CjdlnQNYQ,0,1,1 +winRNt7prallDbpaDMS9Ig,2010-05-16,rQKjcaoyM8XTjF4iVSIiBg,4,"We have gone to two Grimaldi's locations. This location is closer to where we live than the Old Town Scottsdale location and easier to access due to a better parking situation. + +We usually start with the small Antipasto (it helps keep the kids busy while we wait for our pizza). My favorite part of the Antipasto is the red peppers, they are very flavorful and compliment the dish well. We always order two pizzas, one small with cheese for the boys (there is no kids menu) and one large with half pepperoni, half garlic for my husband and I. The quality of the pizza is always consistently great. The garlic is not overpowering and is complimented well by the coal-fired flavor from the oven. The pepperoni is very tasty and even a little on the spicy side. The pizza is so fresh and delicious we have to persuade ourselves into saving some slices for the next day. We love to have a cold slice for breakfast! + +The only issue we have had at this location is plates with food residue. We asked our server for two clean plates and one of them was dirty as well. He returned with another clean one and we had no other issues. We only had an issue with the plates one time, so I would not say it is a chronic problem. + +We always finish with a cannoli, they are too good to pass up! They are filled with a rich cream with chocolate chips mixed in and sprinkled on top. It is the perfect ending to a great meal! + +Overall we always have a good experience when we go to Grimaldi's. We have never had to wait for a table at this location, which is great when dining out with children! I always recommend Grimaldi's to my co-workers and friends who are looking for great pizza. On our last visit I got a free one topping large pizza for my birthday after I signed up for their mailing list! Great perk for a fan of Grimaldi's! I would recommend giving them a shot if you appreciate a great slice!",review,F4UqIMhypQ3SOkJTcL5cvA,1,2,1 +xcKKT3Ozf3jvFNRfMH3gHw,2008-06-02,EMt_b6zflbAAF1pfCq9bYQ,4,"I was a regular at the Nello's on 48th st and Warner in Awhatukee, so I was pretty interested in trying this location out. They are all owned individually so I expected it to be a little bit different which it was. Still good, but I think I like some of the selections of the other Nello's better. Not that big of a deal because I have already been here twice over the last 2 weeks, but I liked the soup of the day and the panini's they had at the one in Awhatukee. Still a great place!",review,b4C9E7vTJrOdkJQA86xYSg,1,3,0 +8t80-omyflkywRfu9LPh6g,2010-10-04,y208f9lBeAg8X_53GuC1ZQ,2,"I had high hopes for this restaurant, but to be honest, it let me down. The wild mushroom and goat cheese salad was phenomenal. From there it was downhill. Great ambiance, though I think they are trying too hard to be a steakhouse. + +Most importantly though... Given it is a seafood restaurant, they sure didn't know how to cook my fish. It was fried and oily (and was not marketed that way on the menu!) I wanted something light and left feeling like I ate a ton of bricks. My friend's scallops - she said they were ""okay"" and not better than that. + +Oh, and the prices are set as if it were a steakhouse too. (Note: if it were, which it's not.) + +Mediocre at best.",review,do20ZbWAFj4Ge04WoWMqwA,0,0,0 +ZWbvjFC_qE21JUpGlAU0Cw,2011-10-30,2FOnYJOXWtqkSnvrFpUS0A,4,"AY. DIOS. MIO. + +The Platano Paleta is a day-maker. There's caramel, creamy, frozen chunks of banana, and añejo rum all swirled together on one wooden stick. At least five different people asked me what I was eating and where they could get it as I walked down Mill Avenue, vainly trying not to make eye contact with anyone while eating a popsicle. If you're looking for something new and interesting (and sexy, as popsicles go), eating one of these would be more effective in drowning one's sorrows than a pint of ice cream. + +For the more timid, or perhaps just fans of classic flavors, the Fresa con Crema actually smells and tastes of a fresh, organic strawberry upon first bite, until the flavor of rich cream overwhelms the taste buds to create a perfect harmony of awesome and more awesome. Anyone who's partial to artificial strawberry flavor over that of a real strawberry should a) avoid this paleta and b) reprogram your mouth and possibly reevaluate your life. + +Pure fruit lovers, even you cannot escape the appeal of Paletas Betty. The Pura Piña is almost just a frozen pineapple on a stick, but much more exciting. It's a sweet, delectable confection filled with pineapple pieces and a consistency that's closer to creamy than it is to icy, even though this one's totally vegan. It also contains some sort of hallucinogen that will make you think you're in Jamaica for a short period of time. + +Go. Eat. Prosper. You'll probably see me there with a paleta in each hand.",review,BjwXX-sChcjx2E55B_7rXg,3,2,5 +N_6bV3c3JagKW7sD3X9ldA,2011-09-13,LTRPrGTyj8jn_eVUuH4FrQ,3,"A no frills hole in the wall hamburger joint. The burger is cooked to order, delicious, and the perfect mix of juicy and slightly greasy so you know you're eating the real deal. The fixin' bar is an interesting concept which I like since I can pile on as many goodies as I like. The bar gets a little messy at times, but eh, who cares. + +The burgers are not the cheapest, but then again if you wanted cheap you'd go to a dollar menu, no? Its worth the line, and fighting some of the students from across the street (Phoenix College) for a bite at Hamburger Works!",review,zG7NW5vCKJZRcBR95qEuMw,1,0,0 +6imLt53br7SJ3av07jjH7w,2009-03-22,o1_rHrHsCflHCwYv-Ykjfg,4,"What a cool space! We needed nourishment on St Pats, as the corn beef and cabbage they were serving at the Irish pub didn't exactly float our boats. We found ourself at Hannys and had a great experience. + +Their pizzas are light and tasty. They looked like too much when they arrived, but they turned out to be the just the base we needed to get through a heavy night of drinking. The reclining booths took a second to get used to, but they just added to the laid back atmosphere once we mastered them. + +OK, two friends go the tiniest 'tinis that didn't seem like much of a value, so its probably not the place for hard core drinking (I know, but these are the things I look for) But for a relaxing cool place to start your evening off, I can still give it the thumbs up.",review,o33IBagNFxdJhIrRTl691Q,1,1,1 +dewq6aevfoNFvJBqM7PG5A,2011-08-21,aJuQa0UzELo3TfyySzaafQ,1,"If we were able to give 0 stars... I would ask to give -1. + +I live nearby, and am sad to see that a coffeeshop that sells coffee this horrible is still in business in my neighborhood. + +Not only was the breve mocha that I ordered disgusting, so was the process of watching the barista make my drink. + +They use hershey's chocolate from a dirty nacho cheese style pump with chocolate sauce dripping down the sides, and coagulated into a thick cap at the tip of the nozzle. *Disgusting. + +The espresso shot was made without care, or concern for the fact that it was done way too quickly, and with espresso grounds that were ground way before I walked in the door. Possibly way before the barista started her shift. *Gross + +And finally. The milk. She steamed the milk with the automatic steam wand. This was a huge red flag. Those are notorious for burning milk and making disgusting drinks. Well, both were accomplished. + +The steam wand was tinted white from lack of cleaning. And the worst part was that near the end of the wand was a DARK CHEESE that had accumulated from burning milk and not cleaning the wand after every use. +Which is FREAKIN - DISGUSTING. + +I wasted 5 bucks on an overpriced small mocha, and threw it away after taking a sip. + +Hundreds of businesses in the area close down every year, and there are more realty signs in strip malls in this neighborhood than actual storefronts. AND I really don't understand why this place hasn't joined the many defunct businesses and starry eyed entrepreneurs in the unemployment line. + +If you own a coffeeshop. Coffee should be your passion. +If you own a bait shop. Fishing should be your passion. +If you just want to open up a business that mirrors a nearby popular chain (short, tall, grande), please stop wasting space in the strip mall and get a day job in a cubicle. + +Never going back, warning my friends about this place, and am probably going to contact the health department on Monday.",review,F97G9Uy4xlTf8hocE6jS7w,1,5,1 +uEJQSIjWui-TDWXaGlcqyQ,2010-02-10,COmahAddIeMmG-SEUINQ5Q,5,"So my friends and I had to roll each other out of the door after this meal was over but it was sooooooooo worth it!!! BEST red kool-aid ever served in jars!! BEST waffles I've EVER had!! BEST red velvet cake I've EVER had!! I also did enjoy their chicken, mac & cheese and collard greens, but none were the best I've ever had, but very good. I seriously dream about their waffles and red velvet cake, I don't know what magic mix of ingredients make up the waffle batter but it's absolutely perfect and these waffles would stand deliciously on their own even without butter and syrup, but who'd want to do that? the red velvet slice they give you is HUGE and soooo moist, the frostings is cream cheesy delicousness. I can not wait to indulge in this treat again, but since I'm far from being the only one who loves this place, it is always packed and the wait is long, at least on the weekend. Seriously considering taking a day off of work just for a weekday Lo Lo's run =P",review,QIPn_akIS1TLx8kSuPjLxA,1,1,1 +oIkwj10HmUiognO68j7jOg,2011-07-15,xPwM_eTRNfnh-yeCx2dKUw,4,"I have never eaten a regular meal here. I usually go for the reverse happy hour from 10-12pm. Cheap drinks, good food and a good atmosphere. The servers here are good. I don't eat sushi myself, but everyone I go with loves the Crunchy Crab Rolls. + +They have three different pizzas, pepperoni, BBQ chicken and cheese. I have had the pepperoni and BBQ chicken. Both were extremely good. I definitely recommend that someone looking for a good time, cheap drinks, and good food.",review,-494b8jvjlI07v9HheHhrw,0,0,0 +VEVeXNBX_LUoHaHCJpxUMQ,2010-03-23,hlGav3PU9NhAfaRwlhtCGg,2,"We had lunch here with the In-laws today. Highlights: the wait staff is awesome. Fast, friendly, fun; everyone here is ON it. +Lowlights: the food. It's not terrible, but kind of meets expectations of a diner in a strip mall. Weak coffee, white bread, smaller portions, nothing was particularly great. Nothing really sucked; but was just mediocre. They must be doing something right, it was crowded and my in-laws like it. I'd rather go without eating than visit here again.",review,vL9LEngoOjuZ3lqU1mh8zA,0,0,0 +wdV0pJ4xNi60bME_pXK2dA,2012-06-13,luH_OTNIplbiFZ73XFYcjw,4,"This is one of my favorite spot to grab some clothes for the gym or work. I like the sales they have and it's usually pretty quiet so shopping is a breeze. Sometimes you can find good deals on the kitchen appliances as well, like the blenders for my protein shakes. The only thing I don't like about kohl's is getting hassled for a credit card every time I go here.",review,BLOwScmNMsW--7mbrQ-G6Q,0,1,0 +EMGkbiCMfMTflQux-_JY7Q,2012-08-26,hJwjv2aEZStFBYUgTx20mg,3,Had breakfast here on a Saturday morning in July. I ordered the Spanish Scramble. It was good. I don't have much to say. It's close to home but it's just okay. Still looking for my go-to breakfast joint.,review,EzjJ536eGHoR7xDF1XgeoA,0,0,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2011-12-26,7sDbd3pokdL_AsptgmxAPA,4,"One of our favorite pizzas in the Phoenix-area. Well... definitely my husbands. He LOVES, LOVES, LOVES Grimaldi's. + +We always get the same pizza. Every.Single.Time. + +Large pizza -- pepperoni, sausage, and red onion. (That way we can have leftovers the next day - - and I'm not a leftover person.) + +SO good! + +This location has more outdoor seating than the one in Chandler. Plus they have another side room/building that is great for private parties.",review,vn3lecMsL3kXVe-7hg3gLg,1,1,0 +1M4oczf2lmkdgbrJ3J7OqA,2011-07-25,cgC-Oeigl6MhXZPq6jlNPg,1,"The food was decent, however I am writing about their underhanded business practices. +I ordered a travelzoo voucher for $69 that included 2 3 course meals. It said ""Regularly $140"". What we ordered, if had been ordered off the regular menu would have been about $100. However, we were charged tax on the full $140. + +Second, even though on the voucher it says ""PLEASE TIP ON THE FULL VALUE OF THE CHECK."" (which implies tip is not included and we get to choose the tip amount) and nowhere mentions automatic gratuity, 18% gratuity (18% of $140, even though we ordered $100 worth of food at the most) was automatically added to our check. + +Third, even if you had ordered the most expensive options, the highest possible amount it could be worth is $120, not $140. It is mathematically impossible to have the voucher be a $140 value, but that is what they add tax and tip to. + +Fourth, after we told our waiter we were using a voucher, he seemed less interested in the service level of our table, which i later realized was because he had a guaranteed 18% (of $140) tip. + +I just noticed today they have another travelzoo deal ""$79 - AWARD-WINNING FRENCH DINNER FOR 2 W/WINE, REG. $165"", I am posting this so hopefully if anyone is thinking of buying that voucher, they will read this first before they purchase it.",review,FvUWCfM4ZcVVhf8Wq4R4nA,1,13,3 +P7wKlbSRsoRrfH3DFOY08A,2009-02-28,lMUkpUjdv5xoEQ4Sr6DN5Q,3,"Drunk people go here. Service is good depending who you get. The Burger according to one Arik B can not taste his burger. When ask the server, how come my friend Arik b can't taste his burger? Why? + +You had to be there to laugh. What a fun night!!!! + +Don't order the pancakes, they are not very good. The chicken strips were a-ok.",review,Aw3EMRqdSJ2DtqoI_NpgWA,2,3,2 +T4ox3wUzFjWvyrjaTRoBbA,2010-07-20,N5KbO6_pBUAs_KfD4ECAcg,4,"I haven't had this in a while so I can't really give a ton of detail but I have been here a few times. It's a traditional japanese restaurant and from what I remember the food was decently priced maybe a little more expensive for dinner than other places. The thing I remember about this place that I really liked were the lunch bento boxes. They had a ton of food and miso soup and all that and they were a great deal, I don't know how much they were but it was very cheap for what you get. The service is only average but for a cheap lunch with more traditional sushi I would definitely hit this place up.",review,ODzzv4W_ROoY-nOCmvybqw,0,0,0 +7VLW-cIDaiO4Dx8gXYkZcg,2010-07-26,SuF4QKDoEdm9OvZgbt99fw,4,"Satisfied my sweet and savory liking in a single swath. Just had my first visit here and will be back soon. The crepes were tasty and light, the service was attentive and friendly. Too bad they aren't open later for a sociable evening with dessert and caffeine.",review,-rutaYKpWZoWcupIJ2OkHQ,1,2,0 +E3RjJH45EX6rHYDs0TYSRA,2010-06-23,rSC2cAoKxImLKmazeQnzqg,4,"I have been to this place a few times over the past few years. I get the same thing, the pollo fundido. It satisfies my Mexican cravings. + +The atmosphere is fun, maze like. Service is decent and like most places if something is wrong they are quick to fix it. This is a great local restaurant. I love how it lacks the ultra corporate feel of most main-stream joints. Great Mexican!",review,MrhRLJMoa6PDVUYhNQUIuw,0,1,0 +s5roBvbA79SQaO4FHkJgGw,2012-11-04,nltegGYBtWsgMOghFfM6dA,4,"Vaguely remembered this place from Yelp when we were looking for a lunch spot after a visit to the Acxupuncturist up the street. We pulled into the lot and by the looks of the outside, there was a bit hesitancy to go in. So, thank you to my friend's smartphone for allowing us to read the yelp reviews and allow us to take a chance on this place. I am happy to say our first visit was a good one. + +Everyone has said already, it is homey and maybe a bit dated in its decor. However, I don't care for ambiance and classy settings, I care about decent food and friendly service. + +MMR has both. I had the Hot Turkey lunch special for Thursdays and I have to say it was huge for a lunch plate and the price was so reasonable. Maybe I am old school, but when you bring me hot bread and butter right after I order, you have already won me over. Then the Turkey Plate came and it was really good, moist and flavorful. The potatoes are not mashed, they are smashed-there are actually potato chunks in there. I was not thrilled with the stuffing because IMO it had too much sage (to the point of overpowering) in it and that was distracting me from what otherwise would have been a very good stuffing. There was also MORE BREAD given to me with my meal in the form of a roll. That was good because I needed it to dip in the copious amounts of gravy on the plate. + +Mia was our server and she was really great. Very attentive, helpful and actually seemed to enjoy serving us. Rare these days. This staff has it together. + +We were stuffed and decided to opt-out on dessert and take an APPLE pie to-go. The pie was still warm when she brought us the box and it traveled well for 3 hours all the way to Marana. My friends boyfriend is the pie lover and he had two slices after dinner that night and I can say we all loved it. I ate a slice for breakfast the next day. Excellent, excellent pie. + +Our two lunches, two beverages and a pie to go was $35, considering the pie was about 1/3 of that, not bad at all. + +We go to the acupuncturist this Tuesday and I plan on getting more yumminess from MMR.",review,VH1WbmbrUvgvSWQr68QA6g,0,0,0 +6imLt53br7SJ3av07jjH7w,2010-08-30,0v_0U406ksUc7REYsZ1cPg,5,Gotta love a place open late in Phoenix. 2.50 petite martinis after midnite; yes please!,review,hebXGQk5ggZSwTlUoEcTWQ,0,1,0 +PwxvN0SnAGPdqXdNEYVT3g,2012-01-29,_snq4q49K_W2FK_uDGL5Fw,5,Love this place. Buffalo chicken breast on a pretzel bun was amazing. Love the atmosphere too!,review,ceyFnFHTTkaiDRVRnmUlmA,1,2,0 +-sAoGZTnFtDZUY9JYWHqlg,2011-12-28,zsscIuCplhiLfvPJ3Z3WUw,3,"Staying here in lieu of getting a real apartment. + +Pros: +There is someone making my bed. +Location. +Eye candy (they got something right). Girls are smokin. +Valet. + +Cons: +I have a rental car but for nights out, where are the taxis? You would think paying $250/night 5 nights a week, you would think they'd call one for me. When I called front desk, they told I can catch one downstairs. No, I do not want to stand out front in the cold and wait fot the parking attendant to holla one for me. +Very small rooms - No couch or real sitting area. +And what?! No tubs except for the suites. +No jacuzzi? +Gym - is that treadmill falling apart? No, it's just someone using it. +Bliss lotion (smells great but useless) - all this dry weather, I have to BYOL. +Room service (food and wine by the glass)...more variety please.",review,BtLx77C_yJYaobIWYgfCvw,0,0,1 +VG_6E3ykEtV1xAJGqn0AHA,2009-03-24,-RHzMqYQbBhXR9wyhRRvxg,4,"""I don't know who invented the high heel, but all men owe him a lot."" (Marilyn Monroe) + +A girl and her shoes...are a beautiful thing. From bags to boots to tennis shoes to pumps to sandals, the selection (at least today) was EXCELLENT. Not only were there a variety of brands but a variety of price points too. This place had me salivating! I could easily have purchased three (3) pair but decided to wait and visit again with a friend......it's a chick thing!",review,NLDDaat42UQXQCOpU4e2TA,1,1,0 +4oBF6f3NiCYF5VYd8WaELw,2012-12-11,_-bOxj1Z_rYm8yWL4o7-yQ,1,"This review is based on delivery, service and food quality as delivered. + +Second and last time I will be ordering from this place. The first time they forgot a few items and were very off for delivery time. + +Tonight I Ordered at 11:03 PM, estimated delivery at 11:50 updated to 11:54 PM (from a whopping 1.5 miles away to add). 11:54 comes and goes. Call them, at 12:07 AM now, I am told they are on their way (1.5 miles away keep in mind). Call back at 12:40 AM to cancel my order as I do not want to eat at 1:00 AM. They actually come to deliver while I am on hold waiting at 12:44 AM. My ""hot sub"" is ice cold, there's nothing like the taste of cold greasy bacon and chicken close to 1:00 AM on a Monday (now Tuesday) night...if you are going to take nearly 2 hours to deliver this, at least make sure the temperature is somewhat close to where it is supposed to be....never again silver mine...never again. + +This place probably has a ""good taste potential"". Unfortunately, like most ""hot food"" the taste quality substantially decreases the longer it sits...in a fridge, alley, or wherever they decided to leave it for nearly 2 hours. If you feel the need to get food from here..for the love of sub kings please just DON'T GET DELIVERY!",review,-xwAX0RoqrEWmGAZ9aSGgw,1,2,2 +qB-qsaSnhbHCt18_AN4Quw,2011-03-03,6_CNq-jybIqHF0Er8TADAg,5,"This was the marriage of two of my favorite things alcohol and ice cream. As Charlie Sheen would say ""Winning!!!!"" + +I had a groupon so Laura A. and I went to try out this amazing place. The groupon got us each two scoops so we went with 4 different so we could sample the most possible. I got the Apple Pie / Spiced Rum and Black Raspberry / Chambord Liqueur. Both were awesome I actually enjoyed the Chambord the most but I was in ice cream heaven. + +Laura got the Mimosa with Champagne and the Margarita / Tequila. I really enjoyed both of her's the margarita was a strawberry one which is my fav. The Mimosa was very refreshing and I could imagine that being a great hangover remedy at about 11am on a Saturday =) just sayin. + +I have found a new place to cure my sweet cravings and can't wait to try more flavors as the website has many more I didn't see in store so I assume they are on rotation which is great. + +I hope that eventually I can find a pinapple upside down cake with rum flavor",review,Iycf9KNRhxvR187Qu2zZHg,1,1,1 +Qc-WTMIjVPv2qkL6q-Cnhw,2012-08-05,uytvQkw5zPQzlperuAd3YQ,5,"Old school style butcher shop that has great service and a great selection. You will pay more, but you can sign up for their emails and get the monthly and weekend specials. Often there are coupons for BOGO or a few bucks off your purchase. They also have a good selection of beer and wine, side dishes, and some supplies for home BBQ and smoking. After reading the other reviews, I know my hubby and I need to try the jerky. We always enjoy shopping at Von Hanson's.",review,WxeD74JGiwjljzHndYSvmw,0,0,0 +5SS69rC8XWvdlD1OHifEEQ,2010-12-13,LQAGqljDv0OefCFf236hzA,3,"The food at Beaver Choice Scandinavian Bistro is delicious; a little unusual, but easily understood. Hearty and reasonably priced. You can find out all about it at azcentral.com in an article by Howard Seftel. Then, after reading this survival guide, you should go and try it. + + Things you will need: + 1. An afternoon or evening with no commitments other than your meal. This could take a long, long time. + 2. A pen and a piece of paper on which to write your order (along with an alternate choice). + 3. Dining companions who all enjoy the same foods and are willing to eat off the same plate. + 4. A snack to tide you over until your food arrives. + 5. A sense of humor (but try not to laugh out loud), + + Here's our experience: + + Four of us entered the small, 20 seat restaurant at 12:10. There were six other people seated at the minimalist glass top tables. A large, and very appetizing looking catering order was taking up another table. We were given menus and told to order at the counter. There were many, many choices of entrees (a few warned that they would take between 20 and 35 minutes to prepare - we avoided those), and each one came with a choice of four side dishes. You can see why a paper and pen might come in handy. Ken went to place our order, but he had to wait for three other people who had arrived before him. It took a while. Then he was told that my entree choice was not available because they had run out of gravlax. I came up with another selection, and Ken went back to the counter - where another group of people had taken his place and were ordering. Another wait, then my second choice wasn't available either. The sauce had to be reduced and wouldn't be ready until Tuesday. I figured I'd be safe with a third choice of Swedish meatballs, so I yelled over to Ken who saw that each of our orders was being written on a separate piece of paper. Odd. + + We settled in to wait for our food. Our drinks were brought to the table. Sena's eyes popped when she sipped the pitch black coffee. The waitress said it was always that strong and that there was no milk or half and half available, but she could bring out some heavy cream. I noticed that food was coming out of the kitchen painfully slowly. One dish to one table, a while later, one dish to a different table. Companions were left twiddling their thumbs. It so reminded me of Hell's Kitchen - I could hear Gordon Ramsey going ballistic: ""Shut it down you &*#$%!!!!"" . At about 1 PM my Swedish Meatballs were delivered. I put the plate in the middle of the table and invited everybody to dig in. Luckily the servings are large. We finished that off and waited another ten minutes before Sena's chicken schnitzel arrived. That too was shared. At about 1:35 Ken's entree was brought. That left Leon, who had ordered Tilapia. We flagged down the owner and told her that we had a 2 PM engagement and would like our remaining dish. She said she'd look into it, went into the kitchen and was not seen again. A while later another staff member came over and told us that there had been a large catering order, that they had only a six burner stove and that 2 employees had called in sick. I mentioned that I didn't think it was right to serve some people at a table and not others. ""This is the way we do it, we're not going to change it, and Howard Seftel thought it was all right"", was the emphatic reply. More waiting. At 1:50 a different staff member came over and said it would be a few more minutes. To our disconcerted rumblings he said - and you're not going to believe this - ""The fish has to be defrosted slowly because of the parasites...."" At this point, I'll confess, I started to laugh loudly and somewhat +hysterically. It may have been rude, but I couldn't help myself. + + We were out of time, so Leon decided he'd take the fish to go. Ken went up to the counter and gave one of my Valley Vittles cards to the ""parasite"" staff member, saying that the food was great but the service terrible. At which point the staff member had a melt-down, yelled at Ken to get out of his restaurant, then went slamming through the kitchen kicking something on the way out. + + This was truly one of the oddest dining experiences I've ever had. Very Alice in Wonderland. But if you go equipped with the five items mentioned above, you'll have some excellent food.",review,QiR2X306Yzd9fuJdKDhkGg,5,6,6 +KzZ5Zww9W0IBWm5S2loUmQ,2010-07-18,26dRqz2hS8_AgZ3VYwpUaw,1,"the owner was dishonest, she posted a menu outside with lower pricing to attarct traffic, and then charge higher pricing menu inside. she also charge me 12% sales tax, which is illegal in tempe, which suppose to be only 9.3% very rude manner, not recommended",review,gfCWt_YncrOmJsU1IQUHbw,0,2,0 +oyzxIqrtzu-8sWlPhJVsLw,2010-09-04,4yM6f4ZJKsiVauP5dzoLXg,4,"The price is right! 16 bucks for two huge lunches, chips & salsa and two drinks. + +If you're looking for upscale, squeaky clean and Scottsdalish, this ain't your place. If you're looking for good Mexican food, at reasonable prices, quick service and great flavor head on over to Carolina's.",review,Sa64rQmghfE9i17_dRIDyw,0,0,0 +IMGW6y8wHQCfr_6k-YXg_A,2010-02-11,dplNFFcp5MX2kcpIir8jQQ,4,"I've been here many many times and have never had a bad time. Everything has always been up to par. I literally have no complaints. + +AND - I recently dropped a personal check made out to me while getting cash out to pay my bill. The manager found it and mailed it back to my client. Talk about honest service. + +BJ's is our go to place for an easy weekend lunch. Their home brewed root beer is super good.",review,F0dO68TECqEJBhBJ4P0qVA,1,2,0 +0UZ31UTcOLRKuqPqPe-VBA,2008-05-08,GX9hAUoKxLMOBipU-la5JA,1,"Only reason for 1 star is 'cause I got arrested here for underaged drinking years ago. + +I blame the Diamondbacks, for no legitimate reason.",review,XTFE2ERq7YvaqGUgQYzVNA,0,1,3 +pBBN3KhKTETvjeWg-MXJGA,2009-07-19,CWZEPD14AFGJTBTSChbYSw,4,"Sadly received this email today: + +Sabatinos is Closed +You know we have been experiencing a lack of sales which we can blame on the economy, new restaurants opening here in the valley (most likely for much less cost than us original places), we tried to work with our landlord, but he would not budge on lowering our rent. We just could not afford the 5500.00 this month and were afraid we would lose everything in our place to a Lockout, which was threatened to us already. +We just wanted to say goodbye to all of our loyal customers, we really enjoyed having you come in weekly and keeping up with your lives as well as you keeping up with ours. We will probably be leaving the Az area and starting over fresh. + +God Bless + +Kevin and Sheri",review,DnwHp_A92KvllfaUIdFraw,1,3,1 +-AAig9FG0s8gYE4f8GfowQ,2009-04-19,mFebdaul6wdUkfpQargkFw,4,I went back recently and noticed thatt the quantity of tuna they use in the sandwich has DRAMATICALLY decreased. The bread is still as good as ever but it was a little disappointing to see that happen. Hopefully it was just a once time thing. Will keep you posted...,review,GA9-h9rRosmKN-NzvyepLQ,0,0,0 +XbVqzUHS3c9FhG4lI13c3Q,2010-05-03,C5SAWaJC7LpRnw56gy5fQA,5,"After flying across the country we were hungry and as I've done in many other cities, I went in search of pho. + +I ordered the pho dac biet. The broth was not oily, and packed with flavor. The noodles were just right and there was a generous amount of tripe and tendon.",review,h0yc9-lOhe0du42G2X7zrw,0,1,0 +Zruvunhqw7cuyuoe7g09Gw,2010-04-08,q3tBIoFdE6vui_GosLDs-Q,5,Puttanesco pizza (artichokes) was delicious and the service is all very quaint and efficient.. They even have gluten free pizza crust. Happy hr drink is 1.00 off all drink choices which I love since I can order whatever I like,review,nM3vfxr6fcnN_nXdzwbVCw,0,0,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2011-08-16,xcMUacWzWFbzwZtosQZcmA,2,"I hated this place. It looks like a nice first date restaurant but the food and price are so not worth it. The hot tofu soup was pitiful and my fiance ordered the bbq and a sushi which were both too expensive for their own good and the sushi tasted like something was old....Never again! Chodang, here I come!",review,DDad5K6GNA0sXB7N1OB6wg,0,0,0 +slO8j375ae2_Pd6PuyBLNA,2009-10-16,xekmTnJPFbMr4b3zscotVg,5,"What can I say about Execucar. I love their service. It cost just as much if not cheaper than taking a cab for me. I make a reservation on-line, get confirmation via email as well as a phone call the day before confirming my reservation. The cars are always nice, clean, and fresh smelling (yes that may seem weird but I have been in some cabs that were like WHOA!) The drivers are always in shirts, ties, and slacks and they are professional and courteous. I have never had a driver be late (knock on wood) and they have always gotten me to the airport on-time. Plus I get some frequent flyer miles added to my USAirways account for using them. Can we say bonus!",review,4E_nPWw89FLFHdNsEgMH-g,1,3,1 +R8VwdLyvsp9iybNqRvm94g,2011-07-08,KIv4U4PcAMSKLda3Ic6M5w,3,"I've been to Orange Table a few times and adore the venue, grocery and store. However, I have been less than impressed with the food. The first time I went for breakfast and had the Jersey Girl Omelet. It was good but not great. The next timeI had the mushroom pizza. It was so greasy that I had to go through multiple napkins and could only eat 1-2 small pieces before I gave it all to my friends. + +To sum it up, if you are looking for a chill place to hang out, people watch and do some small gift shopping it is a great place but don't do there for the food.",review,jjmVBDP7zHwysuYNVwavpw,0,1,0 +csP_5wtk4DEpHJq65bSsWQ,2012-01-18,HSenViZb--vlRB6Jjof46A,4,"My hard drive crashed on my computer and Apple told me that they recommend a 3rd party company to retrieve my data. Like most Americans I am totally Apple Brainwashed so I did what they said. This company came back and told me that it would cost between $1800 & $2400 to retrieve my data. I asked for them not to precede and got my computer back. I walked into this location, told them my problem and $199 later got all my data put on to my external hard drive. I am very thankful for them and would recommend them to anyone in need!",review,YOBLN6wRNfq6h4NSNQhKOg,0,0,0 +TMdHhDI7jYQ9206dtvrBgA,2007-09-27,i-AKTOg0aYmx-x_srA24sQ,4,"I eat lunch here sometimes. The chips are always a little on the burned side and need tons of salt. I've learned from experience that this just goes better with the salsa there. Besides, these chips are real. Not some gigantic bag of factory chips laying on some heating tray in the back. They killed those tortillas this morning, in boiling oil. Seriously, the first bite not capture your imagination but you'll slowly find yourself wondering why you can't stop eating them. + +They have daily specials, my favorite of which is the chicken mole which is Thursdays I believe. I'm also a sucker for Friday's chille relleno. If I'm there on some other less glorious day, I'll opt for the cheese enchilada plate or the Clare burro. Try the ice tea. It's got cinnamon in it and it doesn't taste a thing like Lipton's.",review,hvgYD6Pmyaa6hS39ymIQBQ,1,2,1 +kEktpuT1_dH1CsJD-SkwSA,2008-02-01,5MjYDByOR3JtiE9giNPgAg,5,"Since I have ranted recently on poor customer service, and in the spirit of balance, here is a shining example of how easy it really is. + +Late last summer I came home and was shocked to see two of my sunscreens looking quite vandalized. Upon further inspection, it appeared that while using a back mounted leaf blower, one of the landscape crew had brushed against them. The exhaust pipe must have ripped and burned the screen material as well. It was quite the nasty burned melted scar. + + After staring at it for several hours, I realized there was no virgin Mary, no Jesus, hell it just looked like burned grilled cheese without any deity or lesser apparitions whatsoever, regardless of the angle or my squint. So deciding there was no money to made on eBay, I set out to get them repaired. + +Did some online searching and decided to call AmeriZona. I explained the situation and was told they could repair them, but I would have to bring them in. These are some pretty large sun screens mind you and packing them into the convertible would have been a challenge. + +While pondering what to do the person helping me on the phone asked me if I could hold on. I could tell it was one of those thinking on your feet light bulb went off type can you hold requests. + +She came back on the phone, informed me that she had a crew that was working close by and that she would ask one of the crew to swing by and pick up the screens for repair. She could not promise when they would be repaired, but for that convenience alone I was on board. She had already quoted me the price to repair the screens, and it was very reasonable considering some other online comparisons. + +Someone showed up within a few hours to pick up the screens. He could not have been more accommodating, and it was obvious this guy had been working all day and was on his way home. + +A few days later, Mark phoned me to tell me my screens were ready and to tell me he was going to drop them off on his way home! Needless to say Mark was also very pleasant to deal with. I believe he was at the time the sales manager. + +When he arrived, the screens looked great, matched the color of the others, even with the sun bleaching over several years. He even offered to put them in! + +This experience was way beyond any customer service expectations. No extra charges for any of the above and beyond the call of duty efforts. Outstanding, and quite refreshing.",review,bcZd4ohK6CIT_BOQ0_O53w,2,2,3 +Hd41eA04_N5BAWpv3iG57g,2007-11-04,pd1lOm8RXhw5HkN-eXR1XA,5,"They really do a great job, and you will really pay for it. I don't have incredibly pricey clothing, so getting my $50 blouses dry cleaned here just doesn't make sense- but I would absolutely trust them with very important articles (nice sport coats, lined trousers, wedding gowns, blood soaked mattresses... haha, kidding).",review,gq_G5VCDziyEV2-bzGuqzw,1,5,0 +Ew2JBmTFhGTm6Uk6WMc8RA,2011-05-20,LJxpeUxAXKloGT3VQjWv1A,3,"This bar is now ""Dodey's"". Sold just under a year ago. *See ""Dodey's reviews.",review,0N0ngSQ8Njxfuvdxm1RpFA,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2012-12-21,0wuWnbYH5YkP8hovomEsgg,5,"Old school steak house. Best 22oz ribeye I've had in years. Bread drenched in broth was curiously delicous. Waitstaff hustled. THe only aspect was the salad, a waste but at Durants, there is so much good meat, why waste it on vegiies!",review,NzeIZYdHN9epdUCnLziiZQ,0,0,0 +TEiuiQi_0W3goZ7x9e_ILw,2007-12-22,DHEq0yLTu0rMGS-Ahov5Hg,2,"Have you ever had the Lean Cuisine chicken enchiladas? Have you ever been to a super obnoxious sorority party, where all the blonde bimbos are tanked and dancing on tables and such? Have you ever been totally ignored by wait and bar staff even though you've doused yourself in lighter fluid and set yourself on fire? Well. Then. You've been to San Felipe's. Lower than mediocore food. Except for the grilled fish tacos. Thus 2 stars. Not 1. When I lived at DCRanch, I thought this would be a less expensive, less formal place to hang out. Hmmm...other than grabbing a quick beer here I'd sooner stay at home, eat Doritos and watch a sorority slasher film. What do Kristin and Pierre say? Meh? Yea, that's it. Meh!",review,C8ZTiwa7qWoPSMIivTeSfw,14,14,20 +hfvKCAdJc_tUne9LPoC-ug,2010-07-21,AJrBTxsrX8Si81s0H9nBMA,4,"I have now played Longbow three times (twice in 2009, and once in 2010). I do have to say it's a fine course for all tastes. + +I can't say it's a 5 star course, because it doesn't have quite the scenery and/or elevation changes that some that are nearer to the mountains have. But it has enough interesting holes to make it a unique experience. + +It's not a gimmicky course by any means. The course is more or less flat, with enough mounding on the fairways and around the greens to make it challenging. One major advantage this course has is that there are not any houses on the course. This means you don't have to worry about breaking anything if you like to slice the ball; the worst that can happen is that you lose your ball in the desert. + +I also really like the fast greens. These greens are among the fastest and the truest I've played, and it's really a delight to putt on them. + +This is a great course for a cheap afternoon round during the summer. For $40, you are probably better off going a few miles down the road to Las Sendas, but sometimes in the afternoon rates can be had for under $30.",review,KYeLSM3MQpirmHukVV5Iow,1,0,0 +mbPdVUCUhpqc0zLL13FObg,2011-04-16,mXLf-FDkFCLhKj-b72M5eQ,2,"This particular restaurant is not set up well. There is a section of 4 soups all clearly labeled, but further down, there is a black kettle of another soup with a tiny little label that you have to pick up and read. In the center of the counter, there is a bread bin, you have to lift the plastic door and hold it open while you retrieve your bread. I was fascinated to watch other people's techniques for bread retrieval while I was eating. There are tortilla chips in this bin and then you have to go to one end of the counter for taco meat, then to the other end for cheese, lettuce, sour cream, etc. Poorly planned and smaller selection than Sweet Tomatoes, I would rather pay a few more dollars for a better selection.",review,B6gZizbeBKbjkRkyE0-bxg,0,3,0 +VXIkI9_EbDbYHeO9IzKjJg,2007-07-16,hRsytFauZ7SNeU0WtaXjHA,5,"Get your passport, we're going to Mexico. + +Can't find your passport? Still waiting for it from the State Department? No worries, pack your bag and head to the Ranch Market! + +This place is the best! The food court is wonderful with so many tasty dishes. And the produce department is crazy! 2 lbs of grapes for 99 cents, 8 cucumbers for a dollar, 17 cents for a bunch of cilantro, 7 -- YES, SEVEN pounds of watermelon for 99 cents. You can go crazy with produce and not break the bank. + +The tamales are huge and the tortillas, oh the tortillas. + +Don't be frightened, don't get intimidated, it's just a grocery store people!",review,EVN484M7GZxhVpp61JgQBA,2,2,2 +3oZcTGb_oDHGwZFiP-7kxQ,2006-12-26,ZYfWJkBEOYW9ivZZ0VEOTg,2,"Ive had dinner there a couple of times. The bar is great and the drinks are OK. The outdoor patio looks comfy and inviting. It has a large outdoor fireplace. The inside atmosphere is busy but fun. The food is always good. Fish and steak tacos are fantastic. The macaroni and cheese is one of the best i have ever had and my brother who was visiting from Kansas almost O.D.'d on the stuff. My only issue would the lack of an obvious manager on the floor or presence of any hierarchy. Also the lack of hats in the kitchen bothered me a little so don't look if that bothers you also. + +Stopped going back, very erratic dining experience. Over- priced and extremely uneven service. The wait staff seems completely untrained and unaware.",review,ZySD-z6C97Q0kc-_PeN0Vw,1,1,0 +EWMwV5V9BxNs_U6nNVMeqw,2008-08-18,8xk97kS4oxCnn1FqGoKlJQ,4,"Fez completely deserves five stars but as a pescatarian (vegetarian plus fish, as much as I hate labeling how I eat) I had very limited options. My husband and I ate here on a rare trip to downtown Phoenix. + +The burgers sounded mouthwatering but unfortunately there wasn't a veggie burger substitute. Many restaurants offer this and I really had my heart set on a sandwich. My husband ordered the Fez burger, a delectable combo of honey molasses BBQ, spiced pears, and lemon garlic aoli. I was fairly jealous but my shrimp kisra (flat bread pizza) was obscenely good with lobster sauce, wilted spinach and parmesan cheese. We also split an order of garlic rosemary fries, which were delicious. + +I wish we would have saved room for dessert as the portions were huge and really two much for us to eat! Normally I take my leftovers to go but since we were out for several hours I didn't want to leave anything to waste. + +I'd definitely come back to Fez but I won't be putting it into regular rotation due to the lack of veggie friendly sandwiches and entrees.",review,7oMqFG6Su53dtbkVnF80Gg,1,1,0 +zmFc8M-hS4uuyY0hklIpoQ,2010-02-19,P2BADhNmVrSrZqi-BTvkOQ,2,"I have to admit that I can't stop going to Carly's even though I KNOW I shouldn't! + +Good: I can't get enough of the Cape Cod salad! It is really somethin' special, that ain't no lie. Also the soup is always flavorful. + +Bad: Has nothing to do with the food. It is all about the atmosphere, which is oppressive in an I'm-so-unique-and-talented-and-you-are-smelly-dung sort of way. Staff is pretentious and lazy. They think they must be pretty lofty individuals for working there but that doesn't mean they LIKE to work, for god's sake.... The owner. She is somewhat friendly, but beware. She is the person who created this environment, and it becomes easy to believe once she starts bragging about how well-off she is. So congratulations everyone! We support these immature little weasels who scorn this gross human ritual we indulge ourselves in: being a customer, AND apparently we have made the owner a rich woman but shhhhhh! She's still the kewlest of the kewl. + +UPDATE: Received an annoying email from the owner (the husband) who instructed me give "" *constructive criticism* "" and not make a personal attack or be petty. My review was neither of those things. I do not know John, nor do I know Carla. I only know what I experience when I have lunch at their place of business. The staff was rude and lazy. The owner DID brag. The food I always order is good. Get a grip buddy. + +I was honest about my experience for OTHER PEOPLE who are considering spending their cash on food there. I am not in the least concerned about the owners or the staff personally, but apparently John thinks I ought to be. I ought to see how great Carla is. In fact, he goes into detail about how great Carla is. It's nice to witness a man standing up for his lady. It would almost cause me to add a star up there, but sorry, no can do. His improper use of the possessive apostrophe SEVERAL times canceled that out (okay, now that was petty -my bad). + +I'd advise John to concentrate on things other than trolling around yelp, chastising his own customers, whose business supports that fancy paint and the famously zombie-like staff. Maybe the staff is just following John's lead when they don't focus on creating a positive experience for their customers? + +Honestly, I remain puzzled as to why John would bother to bother me. I go into a small restaurant to find the owner bragging. That is part of my experience and I will continue to post reviews featuring owners, and how they carry themselves. + +As for the ""personal attack"" on Carla, I will not retract what I said just because John is butthurt and whines about it. I will say this: Carla has probably been in the restaurant several of the many times I have dined there, but I perceived the bragging only one time. I doubt anyone who read my review would label this person a braggart based on that one experience of mine, and as I said before- it did not and would not stop me from going back. + +I will be back. I will order the food and enjoy the food, but since that's not the only part of the dining experience, I will tolerate the negative things because the food I regularly order is consistently good.",review,tdoL4Un5_hy_rJxEFLLOjw,3,3,4 +Xo9Im4LmIhQrzJcO4R3ZbA,2009-10-05,Upwc4N3wd4QbyPCeVNpEeg,5,"This place is the best! They stopped doing tacos, but if your lucky! they do have them call before you go! Some outside seating (picnic tables) no seating inside. Take away only.They also have another location!!! Yea! In a strip mall on 51 ave & orangewood. They do serve ""tacos"" at this location!",review,UGa1Aqh06x4b8jS4j0Ff7Q,1,0,0 +lKQ5hnkSQ-XP80jNCH46nQ,2012-07-10,zu5VL_eqKoxcPR0D5Bi4_w,3,"Food was decent. Overpriced for what you get. Had 2 Distrito margaritas, $10 each. You'd think for $20 you'd catch a little buzz. Not sure any alcohol was in them. I may go back if someone else offers and pays. Otherwise, no desire.",review,IVv4rnmrMlBC6wSxM0nw8w,1,2,1 +qdA4qiSXjaiuqO4SueH9VA,2011-08-31,PTPoWRerJYg2PX8IiEw77Q,4,"One of the best breakfast burrito selections in town. + +My personal favorite is the breakfast supreme w/ red sauce ( and root beer the size of my head). + +The decor may be meh, but the quality of the food more than makes up for it. + +They deliver, are always nice, and never busy (which is unfortunate). Definitely a diamond in the rough.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2010-08-27,Vm_zwRbDvKZC4djtRclivQ,4,"""The Pilgrim"" represented everything Thanksgiving. Turkey, sweet potatoes, stuffing, and onions all in a crust. It was served with a side of cranberry sauce, and red wine gravy. I loved it. + +It's a must try if you're around ASU. The only thing is that it's really small, but you should be fine sitting at the bar.",review,qpplec-ajubZNLQrp8pa0g,0,1,0 +k6C5YiGHU_aT8oXSkGb0Pg,2010-10-02,zBI0cxXs-hpkI1j_8fUTlw,4,"I had been looking for a watch repair shop for months now and was having so much difficulty that I had resorted to keeping the watch in my purse and vowed to find something when out and about. +Driving east bound on Indian School Rd. The Watch Repair Company caught my eye in a tiny little strip mall-My prayers had been answered! I pulled quick u-turn and wrangled my car into a spot in their tiny little parking lot. +Walking into the shop, its not much to look at-but what caught my eye is that is was CLEAN! Pristine to say the least-a nice change from most watch places that typically are cluttered with pieces as I think most watch/clock repair business's lean towards being hoarders :) +It turns out the shop is under new ownership as of a few months ago (so give it another try Coda B.!) and the owner himself Eddie was upfront working on a piece. +I only needed a battery replaced, but he did so within 5 minutes and only charged me $5.00. +What impressed me more than his timeliness, was the fact that he actually knows his timepieces. I was wearing a watch that he offered to clean for me and upon inspection noted that not only was it a beautifully designed piece, but that it was a custom piece by a smaller designer-surely hard to find just anywhere. He was dead-on, the watch was a honeymoon gift my husband purchased for me while in Capri, Italy. +Not only did he clean it-but he also reset a few of the dials that I had not done so since being back in AZ. + +Check the shop out for yourself and make note that he only accepts cash",review,MuiyYofyIa6flBVjfnHtjw,2,3,2 +FpnLEpRLtDvcJvmz2N1UdA,2008-06-20,zekBKgZGh_dvCo9W2M8dmQ,5,I came here today for a manicure and pedicure... I have been here quite a few times; it is a place my girlfriends like to come to so when I want to hang with my girlfriends and get a mani/pedi this is where we meet. Although today I was solo:(. The ladies here do a really good job; my manicures always last a really long time and they are really nice and accommodating. Today I had one girl doing my pedicure and another doing my manicure... now that is what I call service! I was out of there in a hour. They do not have a tip line on credit or debit so bring cash for the tip. Today I did not have cash ( i forgot) they were so nice they said next time I come I can tip then if I want. I came back anyway to tip them because it was so fast and my nails look great. Oh another thing I forgot to mention is they use the hot rocks for the massage part for both the manicure and the pedicure and the callous remover is part of the cost of the pedicure. Total for both services including getting french manicure on toes and fingers was $42.00.,review,b4C9E7vTJrOdkJQA86xYSg,3,5,0 +NLVcGseUhgQdABs1mIYk8g,2011-06-02,tgmNKqeGzjenANWYlEtgWg,3,"My wife and I had lunch here. Not too hungry, so we shared 2 Spring Rolls ($3.75) and one dish, My Nam (4F, $7.50), Good thing we weren't hungry, as the dish size was smaller than we expected, but did have 7 shrimps. Spring Rolls were essentially tasteless, as was its peanut sauce. Dish was OK, and the broth (not meant to be a full soup) was excellent. 3rd star earned by an exceptional level of cleanliness. All in all, if you want Vietnamese, there are many others, but this is very convenient. Many more better choices",review,VrvQgZbTZx6M7MTmOlKzdA,0,0,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2011-04-27,Ff-1_yQDMU7m8nkd4IGJ9Q,4,"I will begin by saying that I've been wanting to try this place for months now, simply because they have a salad that bears my name. Which reminds me of my high school days, when the internet was new and I spent an afternoon with a friend visiting websites that also had our name. Most ended up being adult sites, but tonia.com* was an Asian company that had my name written in a fantastic logo. I wonder what it means. + +Anywho, not only does the salad live up to its given name, but Moto is now on my backup sushi rotation. Reasonably priced and of good quality, I was extremely full by the time I ate only half of my dinner. The Tonia salad I actually had for lunch a day later, and was very filling and delicious. I can only imagine what it would've been like eating it the same night. Had it not been as great, I would've never came back and written to the owners, demanding the salad change to a lesser awesome name, maybe one more common or boring. + +My to go order was ready exactly when they said it would and I was in and out the door in minutes. I'll be back. + +*I have no idea if this is still the same site anymore. I am not responsible for where the link leads.. now.. or in the future",review,7zDqr2I0-xpw9HF5Ha54cA,1,3,1 +sOa-OpRFi1OVU7CC6Hwoig,2012-07-07,9mhVa6140GQjBoM85KtI7Q,5,Wow! I enjoyed staying here! Huge rooms! We had three adults and two children and everyone had plenty of room! Highly recommended!,review,TPyz7VSq9hnI-6bDGAIZPA,0,1,0 +SAS7V55TcgZSTJ21ZnXqmQ,2011-04-08,i1TGrBBeDCzEHULlV6NUXw,2,"I happened on this place because it was next to EL Brava, a Mexican place recommended by the USAirways in flight magazine as a place to try in an airport. Getting to ElBrava we found it was a fast food stand with very little seating so this is next door. + +The menu was pretty limited. Service actually wasn't bad but, even though it wasn't busy, we waited a long, long time for our meal to get there.... something you don't expect in an airport. When the food got there it ok. I had a burger that was pricey and non memorable. + +Next time I'll go to El Brava and pass by the 12th!",review,mC4IzhAQuLD_Ct_Bngm3SA,0,1,0 +5VMajxduxfLPSyQkVFKESg,2011-04-17,F_wMqhSdI9NtWfqMX-nADw,3,"Good barbecue, but not great. I ordered the BBQ Sampler and shared with my wife. With an extra side and a delicious chocolate chip cookie for dessert, it was plenty of food. Unfortunately, the quality of the food wasn't as high as I was expecting based off of all the Yelp reviews. All of the meats were very tender... The brisket and pulled pork especially. But they were devoid of significant taste and had to be drowned in BBQ sauce in order to taste anything. Thankfully the sauce was excellent and readily available. Of all the meats I sampled, the winner here was the ribs. Definitely not the meatiest, but extremely tender. I could pull the bones right out and devour. Delicious! + +Outside of the food, everything was excellent. I arrived at peak time on a Saturday night, and the line moved quickly. It snaked through the restaurant and out the door, around the corner, but it moved quickly. We waited no longer than 30 - 40 minutes. All of the servers were extremely nice and helpful. There was plenty of seating available, especially outside. It was a lovey place to enjoy a meal. It is unfortunate that the quality of the BBQ does not rise above ""medium"" to match the high quality of the rest of Joe's Real BBQ.",review,Z2mgF-F_TF2MxnWmflIiUA,0,1,0 +Lt-dQ0kUWFm0nDgLwdEo_g,2012-10-09,dg1Sw8sihJCUKGiQ7Yl_tg,4,"This hotel is in a good location for getting to the sports venues downtown, the convention center or to just be in the heart of the city. Granted, it is about a 7 block walk to most of those places, but the lower price and FREE parking definitely make it worthwhile. I usually stay in Scottsdale when i am here for spring training, but I was here for a conference and walked to the convention center each day with no problems. It made sense to be downtown instead of Scottsdale. The hotel is clean, the rooms are nice and big and the free breakfast is decent. I did not visit the pool, so I cannot comment on it. Someone mentioned the area being shady, i walked to and from here at least twice a day including late night and never felt it was a bad area. Also, the review about passing cars was not an issue for me. I was on the street side and I'm a light sleeper. Maybe their window was open? i do agree that you can hear your neighbors in the bathroom, slightly annoying. In, summary - this hotel is a great choice and if the need arises, I'd stay again.",review,7qru8A4ucyiFp74XCMdgmA,0,0,0 +08Z_Zzp8PyEmWWpYurIO-Q,2010-03-29,-fjybXWEg1dOCQwSGYTvuw,3,This is my favorite Pei Wei. It is always clean and never too crowded. They also have a fantastic covered patio. I like the Mongolian beef or chicken and the Dan Dan noodles and my husband likes pretty much everything he tries here. They used to have a beef ramen bowl that was to die for but I guess it was only offered for a limited time. The food can be salty at times but I always enjoy it.,review,QzA6ZW1NFid32_g_fsapIg,0,0,0 +2FudHUhV9U54dm0S1ePuCw,2009-02-06,o9MWSKvi1rLATUfAEpH5Dw,5,"I have been here 2x since moving down here from cali bay area. I am a coffee snob and I really fit in here. The staff is very cute and helpful. +The people in the shop remind me of the bay area. +I drink americanos and the beans being used are very robust and smooth. +The menu selection is nice for the food fair and I really enjoy the general atmosphere. + +I strongly recommend this cafe!!! + +Donkey-",review,UyB7zOJOwbbEptLAbPueqg,0,1,0 +E4b5OC_6mZ0V7B6Nyjncsg,2011-06-08,omxApUSpfUB6TYBLaN65xQ,4,"Spring Rolls - Great! Singapore Noodles - Great! Hot & Sour Soup - not so great - I have never had a hot and sour soup so dark! Although the hot was hot and the sour, was sour - a little bit goes a very long way! + +Definitely going back again, just skipping the hot & sour soup next time.",review,V9rPKsWM0qaFyLPY9X-n6w,0,1,0 +0GRYyMRzwA9WYc8UTB2nRA,2010-04-21,F--7aJKZfmKaZuziIysYdg,1,Their amazing prices are instantly countered by despairing customer service. If I want low prices I will go to goodwill over this place. Looks like Dillard's is on my list of do not shop.,review,7ovr23oa6bAsN3EL55zvxw,0,0,0 +j7n42b5qDMJR68q3Dv9u6A,2010-04-15,ZA-cQq0P7guFZJ6pcwqWoA,1,"This was by far the worst restaurant experience I've ever had. I paid $20.00 for a show and dinner. I received the show only because it was from an outside source. The show was 2 hours long and by the time it was over half the restaurant I'd say 50 to 80 people still had not been served. They didn't have enough menu's for people to even order off of. Some guy in shorts walked around with buckets of silverware wiping them on his shorts then placing them on the table. The show started at 7:00, at 9:30 I still had no food. The people who did get food complained that it was terrible. Maybe I should be happy I didn't get any food. When I asked again about our order the waitress said she would take care of it. The guys in the kitchen were overheard saying ""f---k those people no more orders! not only did we not get the dinner we already paid for they flat out refused to give us dinner or our money back. We ended up at Dennys eating eggs at 11:00 . Seriously I've never had such a bad experience in my life. Can you imagine paying for a dinner then being refused the dinner or a refund? unbelievable",review,IHbrMNAR6hyHrF9JnByPzQ,0,0,0 +HwnC7hT0uIWuBq4CRtk_fw,2007-10-13,D4IabHrkLEYc-QAN5xUDBw,2,"If you just need a roof over your head I suppose this will do. Don't expect things to be easy for you though. I arrived on Friday shortly before 2pm and wanted to check in early. The pregnant woman at the desk (the one that smells like cigarettes and has track-marks up and down her arms) said the room wasn't ready yet, so I left and drove around to take in the sites. + +Coming back an hour later (now officially check-in time), I was told that that room STILL wasn't ready. How long does it take to clean a room? You've got 100 other rooms, put me in one of those! She left me standing at the desk while she went out and found a room that was ready. Finally. + +This is the first place I've ever stayed that wasn't a converted B&B that had hardwood floors. Hardwood floors are cute when you're staying in somebody's house-turned-hotel, but in an actual motel? I felt like I was staying in a hospital room. + +Sparse furnishings include: 12"" TV, 2 hand towels, 1 wash cloth, 1 towel, huge desk that takes up more space than it should, and a scratchy bed. + +Like I said, it's an okay place if you just need a place to sleep.",review,BV37xzLqE0-0dlfGTQdk-Q,1,0,2 +JgJ7-0V_tCPVcn97aSZVug,2012-01-20,GxmcBBDMeZ_mbl6eitC3qQ,2,"This place is more miss than hit, I stop by here for breakfast on rare occasions and the food usually comes out more than slightly mangled. + +The food is usually edible and the customer service at the window is always friendly. I've never had the experiences that Phoenician C has but I will admit that this can be one of the lower end McD's that I've been to in this town. + +Curse you McGriddle!!!",review,4gIi4L7e870qFbnRemaoBA,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-12-05,F42VD3lAEmfdCnvJb8jfUQ,2,"I am new to the Phoenix area and was in the mood for someone else to cook my breakfast for a change and stumbled across all these rave reviews of Matt's on yelp. Normally I find that the yelp reviews are just about spot on and very honest. This is my first case of the contrary. I don't know what hole in the wall ""amazing"" breakfast joint these reviews were for, but I must have been at the wrong place......... + +Don't get me wrong this place is reasonably priced for your basic breakfast, but that is about it. I gave them an extra star for using ""local"" ingredients. This place is below Waffle House and the like on my list. + +The hash browns were more like a chopped potato omelet that needed a few more minuets, I.E. raw mashed potato in the middle. They take ""over easy"" a little too serious also. If there were such a thing as egg tar tar, that's what was on my plate. If you have ever had eggs like this, the ones that can't even be eaten with a fork, then you know my pain. I will say my pork chop was good, but who can screw up a pork chop? The bread was good, nice thick cut slices of what looked to be locally baked loafs. The preserve that came with said toast was okay too, but it got snatched away before I could finish. + +All in all, this place is good for the sheep that need to eat downtown, but lacks anything for a reason to return or recommend it to anyone. If you are in the area and thinking of eating here, try somewhere else. I didn't have to wait in line like many on yelp have stated, and I'm sure glad I didn't for that lack of quality. There are many other options in the area, give someone else a shot that's not banking on you eating there because they were on T.V.................",review,iwe8JDF-urz0fF3SKeoPWQ,0,1,0 +xmjv8g356v8Qo55ICjG8rg,2009-07-30,s6RAmh7nk7Kgr_8FuG4vEg,5,"I LOVE this bar. My first visit was in 2004 when it was known as Bar Nun. I'd just moved to AZ and I was drawn in by the neon green light and funny name. Little did I know it was the beginning of a love affair. + +Since I didn't know anyone yet I went by myself and sat at the bar. The staff was friendly and so were the patrons. Some of the patrons turned out to be a little too friendly, and the bartender, Jennifer, insisted that the barback walk me to my car to ensure my safety. As if that wasn't enough to make a fan out of me, I found out they serve $2 Blue Moons all day Saturday and the food is awesome! + +The burgers are great, and you can order them rare if you like. I also became addicted to their BBQ chicken sandwich. And the wings. They'll grill them instead of fry them for you which is a bonus. In fact I don't thing there is anything that I have tried and disliked here. + +Thursday-Sunday night they usually have a pretty decent cover band. Usually classic rock or 80s stuff. They also have NTN and a ton of TVs if you're into sports. + +I was so in love that when it came time to move from my apartment, I made sure my new house was within walking distance. Not that you'd need to walk, (since half the year it is hot as hell even at 2am I can see why you wouldn't want to walk) they offer a free ride program on the weekends where they'll pick you up and drop you off. That way you don't have to worry about Sheriff Joe and wearing pink undies at Tent City. + +Wow, I kinda wanna move back now. CK's I miss you!!!",review,B-Q5eu19iZ1QZ8UKf9siUw,1,1,1 +AqbgC7Gul5Es1rRzGNLDFA,2012-06-03,CDGijt9h7DY8OiA-pxBhMw,4,"6.30 on a Sunday and there was a line snaking through the small shop. We took turns sneaking peaks at the day's options and by the time we got up front we were ready to order. +We got the salted caramel and chocolate marshmallow. The 1st was so good, the 2nd kinda boring. +Can't wait to try more.",review,qUdXbLXXMjvFmf0_DTODiQ,0,2,0 +d52zg-S0o940WUCK-nNiKw,2010-10-26,3HyQEjAWOfi4dGre65QIOw,5,"Thank God there were some Mesa firemen standing outside this place when I pulled up as my wife was very uneasy about exiting our car and heading in. Even trying to explain how fellow Yelpers loved it, did not ease her fears. After a unanimous ""Defnitely, it's awesome!"" amongst the three battlers of the flame in response to my ""Is this place worth going to?"", we parked the car and walked on in. This place is a definite hole in the wall (read: DUMP) and I/we LOVED it! Great chicken tacos, awesome machaca (shredded beef) burros, delicious chorizo and the tamales were equally spectacular (homemade of course). It's located in a somewhat dicey area of Phoenix, due west of the airport, but it's totally worth going to. It has become my new ""first stop"" after I get off the plane at Sky Harbor.....unless I land too late at night....",review,lOXdWY60YDqvqKWrNKkEYA,1,1,1 +AhpzPZH3b0PGT9mVoLCQDg,2010-06-29,XfPaOqHeGJP3WzoYmnoJsg,3,"I've been here for a couple of happy hours. +I agree with Charles R - no need to pay full price (especially as the regular prices are a bit hight) and it is better than Ra. + +Definitely not the best sushi I've had in town, but the drinks are good (cucumber mojito!) and the place is set up well for happy hour groups. + +The servers I have encountered are all VERY patient with people coming and going within the group and individual checks for everyone. Knowing what a pain that is, I really appreciate how willingly they do it. + +For good sushi, I will stick with Yasu or Sakana. For happy hour, this is a great place - and the Tempe Marketplace location is convenient to several friends.",review,45V7-1r79DEG0HbuaKYIlg,0,1,0 +xMK01ZbVUYLLoyqoeWAIVw,2010-02-07,LNoD7GlrYxBkp7nyXAFGSg,5,Have been here twice. Everything is excellent as far as food quality. It's pretty busy on most evenings and that can slow things down so if you think you might be in a hurry I would recommend something else. Service has been outstanding each time that I have been. The food is good and they have a reasonably diverse wine lists with mostly national wine offerings. The prime rib is superb. Most meals will cost in the range of 15-30 dollars depending on pairings and w/o drinks. Definitely worth it for a nice night out.,review,shkOSzUcN2hjIJpyufVS9w,0,1,0 +peA3F-PnIfijYr8HuG-A-Q,2008-12-14,NzP_jShz_tzqVsgusWBnMw,4,"We finally went back to Merc Bar last Saturday night and as I suspected would happen, I liked the place a lot better when it was dark outside! My husband and I took my sister (who was in town for the weekend) to meet a few friends before dinner at Lola Tapas (review to come in a few minutes). + +We were the first people in the bar, which was a little awkward at first but kind of nice, since we had a fancy, chic space all to ourselves! We all enjoyed our drinks, including my husband's and my dirty martinis. My only gripe was that they didn't come with the blue cheese olives mentioned on the menu already in them. Instead, the server brought them to our table and then asked if we wanted the olives. + +I still don't think I'd linger at Merc Bar for hours (unless I was drinking Red Bull drinks to stay awake!) because I find the vibe just a bit too underground for my tastes, but I will definitely be back for a pre or post dinner drink.",review,HOleI3jz1MLNUJ6cc1x0Pw,2,1,0 +rkGPf4cbyUJqHgKZPvaTnw,2011-10-17,rzKXuufIy21v-1dWXAKMxg,5,"Yeah, its BBB....what else to say?",review,gN4JuiRC2sIssc1qijg4Zw,0,0,0 +6ie9xvy2WW1pn7RuBvGNhg,2008-03-05,vXZPVW_hniBHrXNBkfkSng,4,"This private little Persian eatery serves up some fresh, albeit traditional, fare along with a healthy dose of friendly service. The hummus was good full of nutty, lemony goodness but was overshadowed by the garlicky goodness of the eggplant dip. I called it baba-ghanouj but the owners insisted on eggplant dip. I sat at the bar and the service was prompt and polite except that the conversation was steered political by the owner, a direct violation of bar stool rules and a slight affront to myself ,a former barman. Who isn't talking politics these days? Any way, they did gouge me on a couple rum and cokes for my friend at $8 a pop. The beers were OK. This was strictly an AA meeting- alcohol and appetizers. Next, we tried the grape leaves, a straight-forward staple at places like this. We finished up with some tabbouleh and the special pickles which were really good dipped in the hummus. I will say we went on a Friday and it was dead, Pita Jungle was way busier in the same shopping center so the price range might be a little high for students. However the meeting went as planned and I left happy. Check it out then head over to the hookah bar across the parking lot.",review,yt6vljLIffAU4WW0-TQwBw,1,1,1 +V5QdxePG-pGPXVPHSLLM9A,2012-04-24,DCkc2uApCQZVnx0abo0pmQ,4,"An industrial-chic bungalow built just inside of the Coronado Historic District that showcases a loved downtown in an urban setting. The art and people are always beautiful. + +Cappuccino, along with Caffe Latte are my two most common espresso drinks. This one today gets four shots of espresso. The cup is huge. The drink is excellent.",review,gN03qFYysM5DbgjuV6N0QQ,1,2,1 +H2PQME3WxWwfCzpsYn_6CQ,2012-10-17,pSeLkSXRPlCU2t0LVSoBeQ,2,"Maybe it's just me but this store is not up to par in my opinion. I always stop here to get money orders for rent on the way home from work and I almost always have to wait at the counter for 5 or more minutes while employees constantly yell ""someone will be right with you"" at me from all directions. The sandwich counter is good although it says sandwich in 3 minutes or its free and it always takes longer. (I never say anything because I don't care, I just don't see the point of the sign.) Their meat section is a joke lacking any real selection. The produce is almost always below my quality standards and is also lacking in selection. Last but most definitely not least they always have just one register open and no self checkout. Overall going there is a highly inconveniencing experience and I would not recommend going there for anything.",review,xcbS2qrjsss00XkD2Nu5lQ,0,0,0 +7vviQbJwTqs8qXi-KwcXZA,2011-09-02,Y8iaLpdDQLcB-ARXnHkiwg,4,We drive a little out of the way to go this target because it's clean and is surrounded but many other stores we frequent. It's usually pretty busy so plan to park a bit further than most.,review,5hIcclyqd9yelg2BlsiXBg,0,0,0 +L0R3081GwxRcP98BZ1K9qA,2007-12-31,dSoRWIaoPIoPtjJTjlZA3Q,3,"Dear Arizona Cardinals, +Can you please get your crap together and win some games (similar to last night) so Phoenicians will like you and you can finally build a fan base? + +While I half-enjoyed watching you spank the St. Louis Rams yesterday in the last game of the season, while scoring the most points in a Cardinals game since the 1970s, you still suffer from mediocrity. Your win against the lowly Rams was hardly inspiring since that team completely sucks. AND FOR THE LOVE OF GOD, can you please beat the piece-of-crap 49ers?!?! + +You remind me of a nouveau riche socialite with no manners. You have a beautiful expensive abode, but still seem like you're from the wrong side of the tracks. Please tell your owners to stop being so cheap, beef up your roster, spend a little dough and take some risks and the ever-elusive glory years might be around the corner. + +Last night, a jaded and cynical fan of yours told my friends (in Rams jerseys) in the parking lot, ""Thanks for sucking today. WE usually suck and all, but your team was much worse."" + +Funny and defeatist attitude, but what do you expect? I'll be here waiting, cheering and hoping. There's always next season. + +Five stars for trying. +One star for the crappy ownership.",review,4_YfcfHkCem1onJFkItxjA,1,3,1 +5kRug3bEienrpovtPRVVwg,2011-08-29,MKfOknBE7-porNVF10TEjQ,4,"My date and I started in the basement which was super cozy. While waiting, we were distracted by the amazing aroma of food surrounding us from other tables. Once we sat down, we could NOT make a decision about what to order--everything looked so good. Our server was very helpful in aiding us with picking appropriate sized plates (we were starving and nervous we wouldn't have enough haha). We left with a to go box and no room for dessert! Loved it. Can't wait to go back. GREAT date night spot. But we prepared to wait and have a drink, this place is busy for good reason.",review,HV9LHnhcpKerGqmLk0MpAw,0,1,0 +sNuyncpQdcvfEpfZS-3Yew,2010-01-15,_ykINlaDRF8GHkcCT6aEQw,3,i don't understand the hype. it's very typical american chinese food. tried the bourbon chicken and it was nothing special - tasted very teriyaki.,review,LJPvRgTZWHlwpaYBauOOkw,0,1,0 +JuBygU4XDjqSeW9okyvbsQ,2010-09-19,7ZrirtO2rOCR8aHNIU6SfA,5,"Great place for a ""home office"" morning. One of my favorite places - indoor & outdoor seating. Always busy - they offer breakfast & lunch, their food is awesome! Very generous portions.",review,tV-CHD0zlQqea54XuogRwg,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-07-31,1lexg_nW3LboIAXNxQGvfg,2,"The place has a nice little vibe going on and they have some unique items but the reason the rating is so low is that there really aren't a lot of options that don't involve faux meat. Aren't these people vegan? Don't they hate the idea of poor little animals being our food (even though that is the only reason they are alive)? Then why so much FAKE MEAT?! + +I will never understand the meat envy vegans and vegetarians have. I go to a place like this to get a dish that uses vegetables in more creative ways, not to get some overly processed soy products that aren't nearly as healthy as fresh lean meats like chicken and fish. FYI, I love meat but every once in a while I like to grab a vegetarian dish. + +Another negative is nearly everything is fried. Guess they bust the myth that people are vegan because it is healthier. Frying things is the cheap way out of actually creating a healthy AND tasty meal. + +I'll give them a 2.5 star because what we chose was quite tasty. But with nearly every option involving faux meat and tofu it really is a disappointment. If you want legitimate vegan fare try out some indian places or Ethiopian places. They are very creative and using spices to flavor a vegetable dish. The fake cheeses and meats are for Vegans with meat envy, not for Omnivores that just want a good meal. Keep your expectations in check and you should be okay.",review,OMC3DRyGrDbq-oMtdRAH8Q,0,3,1 +kN8792XEJfCtpD5GJLmI6g,2009-07-10,NJnVzl4YheuTACw1APNbQw,3,"Not bad, but definitely not my first choice. If I were to eat pizza in the restaurant, then this is a good choice. But there are better choices for take-home pizza.",review,Ri8jeh5ZmDF6bXl6Wqshww,0,0,0 +4gIV5MYpCDbNI-bL3g_tSw,2012-09-09,aPUQy6B0y67nYr8GJ7ZYyw,3,"I really try to like Old Town Scottsdale - and if you look past all the God-Awful tourist traps it is actually quite a nice place with a number of top notch dining options - but in the end you can only walk by so many mass-produced ""native"" jewelry shops with ""Bargains"" before it all starts blending together. Parking is generally a travesty but can be found if you're willing to wait it out and the public art is a nice touch. For my dollar - go, grab a spot, and kill some time at Cartel, grab some local foods at Bodega, and maybe consider a bite at one of the locally owned restaurants like FnB or Praying Monk, and skip any place with turquoise jewelry in the window while focusing on the galleries that don't quite seem to fit the 'theme.'",review,5lq4LkrviYgQ4LJNsBYHcA,0,1,1 +nRO4tRwimU12hg7Cnz__iA,2012-11-06,NfOqF3wMyah5w3RkiXfuVg,5,Best gyro in town! We go for the lunch special during the work week quite often. I havent been for dinner but if its half as good as their lunch gyro then you wont be disappointed. Service is great and they always take good care of us.,review,z77ENOCa0H4ABIDZMzNWoQ,0,0,0 +FOfhEC6rN23RQaUlsR2byw,2011-01-23,HhQIKxm_0gJjuQHDm9PZWg,4,"This is a great place to take your time and enjoy someones company. +The food is fresh and the service always friendly. +If you are looking to be fed fast this is not the place to go. +Fondue is fun! +If you have the time and the money this is a place to have a great evening.",review,7UoXfjSqe4ZE1eStdeoziw,0,1,0 +FKlr2XmPA7G5MlMFpka1OQ,2012-07-07,w-RLEibd3-pkEXPCE65J-g,1,"This is the worst Pizza Hut I have ever been to. I was up-charged for something I didn't order. When I asked for it to be corrected it was done wrong again, given the wrong change and had the drive thru door slammed in my face. Asked to speak to the manager and he was extremely hostile. He took my change, receipt and food. After some time I asked for a refund and was told that wasn't possible, too much paperwork. Asked for his supervisors number and was told he was the highest manager, there was no one above him. Right. + +I went to the next Pizza Hut and asked for the regional manager number. I left the food at the restaurant because I was no comfortable eating it after he took it back to correct their mistake. Not sure what could have been done to it. + +The young girl at the window did get it wrong twice, but the example the store manager gives is piss poor and is the issue. I hope Pizza Hut sees who they have working for them and speaking on their behalf because according to this store manager, Tim, he's the owner and CEO of the company. I highly doubt that.",review,7wPcbtQeZ0ZXdpe_oBYP6Q,1,1,2 +cLojUtqkFpVIHFEvA_5Atw,2012-04-30,tpsKFXtsdI3GOARLl4gtCA,5,"I love scallops, and the scallops at The Breadfruit were simply the best. On the weekend, The Breadfruit is open till 11pm and its Rum Bar is open till midnight, which makes this a great late-night haunt: pick your favorite rum drink and share a scallop appetizer for the perfect lite end to the evening. The servers were excellent and handled my gluten allergy easily, offering suggestions and slight modifications to the dishes. The Breadfruit is located at 108 East Pierce, which is south of Roosevelt and just east of First Street. Put this place as a must on your late-night hit list.",review,aRUSXJd_DxBARNBnaCUinA,0,0,0 +_OYlq2UoKPQO_ElqhC3a8w,2012-07-02,Ql85TevtaKwKoLXUcnxwMg,3,"Lucky Strike strikes the wrong chord with me. I've been here to this location four times. I have been to another location out of state on a couple occasions, as well. + +Since my first visit, the bartending staff has improved LEAGUES. The women working at the bar last Friday night were actually personable and friendly. That is saying something, as in the past the people working at the bar were... to put it nicely... AWFUL PEOPLE. + +It's a great CONCEPT, but it just doesn't impress me. The food is hit or miss, but it is usually miss. Some food that comes out of their kitchen is just awful. They don't ever seem to have drink specials... at least when I've gone. The bowling is pretty expensive compared to Brunswick Zone and... honestly... I prefer Brunswick. + +If it was up to me, I would avoid Lucky Strike altogether. Sure, it has a nice downtown location. Still, there are so many better places to spend my hard earned money downtown.",review,64YY0h0ZAR2nbzxbx0IwJg,3,5,3 +TuuENwzxOFdDLY_oKCbFZw,2011-03-25,ru0CWx893qVvzMxot2lrEw,5,"This place hits everything on my ""it's Awesome"" list. +First off it's a family run little place. +Second it's in a hole in the wall area. +Thirdly and most importantly it is all made in house. +Fourtherly it is awesome + +We were in Gilbert staying at a friend's house for spring training, GO DODGERS!!! We hit the usuals, Waffle House, Dunkin Donuts, Dodger Dogs at the game, and our friends asked do you like sandwiches? +If there is one food group that I love, it has to be the Sandwich group, and +this place is one of my top 5 sandwiches stops of all time. + +We ate in the Lounge(y)(ie) area, which has a more adult vibe going on. We first started with their fresh bread, and tomato basalmic vinegar salsa(y) thing. Which was great, we had two rounds of that while we drank our beverages, and waited on our sandwiches. + +I ordered the Cuban sandwich with the potato salad, and the wife ordered the Chicken breast sandwich, with pasta salad. My sandwich came out perfectly, from the fresh Ciabatta Bread to the outstanding roasted pork. + +I would order this pork just by itself; it was juicy, and full of flavor, just like my Cuban grandmother makes. While this sandwich is a true Cuban sandwich, not using swiss, and not being pressed, it is not advertised as an actual Cuban, just a Cuban style, like me. + +Now this potato salad was some of the best I have ever had, and not just because it had bacon, which is awesome, but the use of yukon gold potatoes, instead of red, or russets has been a revelation to me. This is how I am going to prepare all off my potato salads from now on. + +After all that I still ordered the carrot cake, which like everything else is made in house with local ingredients, it was warm with a not overly sweet cream cheese frosting. The wife got the lava cake with some beer ice cream. Even though I ate most of my carrot cake, and loved it, I wish I had a full gallon of that beer ice cream, it was just perfect. In fact I am planning another trip out that way, just for that ice cream.",review,Wbrbk9iKudbQ3sO7P3-MIA,2,2,2 +Ng2XtElHAKGSRIFeOm7Qjg,2008-06-03,t5si-DF6_eAhAoQ86ECnCQ,3,"I prefer this location of Sephora over the Scottsdale location. The Chandler location is less busy and more spacious than the Scotts location. + When I first started going to this location I thought it was great because the staff was way more helpful and willing to give out samples. I am now finding the staff to be a bit annoying. They are great, but everytime I look at something they come over and ask a lot of questions or try and steer me to buy a particular product. It gets a little annoying to have the Bare Escentuals Smokey Eyes pointed out at least three times every time I'm in the store. + +All and all I love Sephora no matter what location! It's heaven on earth for most of us gals. Yes the products are pricey, but they are quality products you can't get at the drugstore. + +Hmmm, this review must sound confusing. Here I am saying I prefer this location, but then complain about how overly eager the employees are. This location isn't as snooty as the Scottsdale location and the employees are friendlier.",review,HP_xZYNC5XK-VyNrnHbtRQ,0,1,0 +yJMLD-6AggZNdC-GonVBsA,2011-11-12,lbev1tJnCRVlJKPB4nv3XA,5,"My husband and I chose Binkleys for our 5th anniversary dinner. We don't usually spend that much on a meal, but for a special occasion we decided to splurge, and we are soooo glad we did. We decided to do the 4 course tasting meal, and with the many amuse bouche's throughout the meal we left so full, I couldn't even finish my wonderful seared foie gras. The atmosphere was cosy and inviting, the wait staff friendly and helpful. The three hours we spent enjoying our meal was well spent. We would both like to revisit and enjoy another taste adventure with this lovely resturant.",review,WIGMEKQR1ZDacOewftwudw,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-10-10,RRuFm986Dt0W3LU5fS9gqA,4,"This restaurant is truely cultural experience in your mouth---Chinese, Mexican with a dash of Jamaican. Pollo Diablo is fab! Mom and Pop place with some true TLC that goes into the food. The beer and wine was a good selection as well! + +Way to Go!",review,W_btQo0V4ZaBeybpq5dG5Q,0,1,0 +C_eWAEOvkHZ_IZYGwjtpmg,2010-02-22,DTtmsHMzqIOEvW6Ael3EWg,5,They have a mechanical bull. Need I say more?,review,A1yGtQzSfctsJJE1lyPbDQ,0,0,0 +yQONzVpX-DEpGSuKMIov6A,2011-11-13,tHgYxfp9J9g-0jDrnkHM7w,4,"one of the best chinese food here in phoenix. you have to tell them to use less salt. because often times, the food just a bit too salty. other than that. it has great selection for Szechwan style food.",review,zHgmWv6NbwZepUSqA_FlLw,0,0,0 +8HheTzFpxkOlfFxJy-sIMw,2012-06-24,JSs0RJEevtPp7U9ZWM2C3w,5,"Probably the most serious restaurant for food in Scottsdale. Great attention to detail from the chefs, management and servers. Shin does warm up after a few visits - we've been there probably 10 times in the last 18 months. ShinBay is a must for anyone truly into food. Given the ingredients - both the sheer number of them and the overall quality I would actually call the pricing here a downright bargain.",review,P1wCYSXNkSQ4_CXlinSI1Q,1,2,0 +6n_YkYKnr5clOlVZ5Kerxw,2009-12-14,BNVJSJmcW-1Ja7l1sLjMcA,5,"I've been a patient of PFD for a few years, recommended by a friend, and have always been happy with the attention I've gotten. I actually go to the Gilbert location now, but I have been to the Tempe office once and had a good experience there. + +It's a family owned business, I think they've been around for 30 years. They have always been pleasant and honest when talking teeth. I wanted to mention my hygienist specifically, Jackie. She is super nice, calm and gentle, which is important to me since I don't particularly like going to the dentist. + +Check them out if you're in the market for a dentist.",review,9VPNlcKsL99FvKtz1r9qJg,2,1,1 +stH6XAn2Drzol1H5oGvL2A,2012-04-29,fMiJwWvc-LOS-JU1zr4sug,3,"Moved here from San Francisco, and have been searching for decent Chinese food. Flo's has been our standby, but we tried Jade Palace on recommendations of our midwestern snowbird friends. I can only comment on the food, as we ordered take out. Our order was ready in 15 minutes and it was complete. I had Chow Fun, and it was the equivalent to Flo's, Ok, but not spectacular, and a lot more oily. Husband had Mongolian Beef and said that Flo's was better, but the meat tasted fresher on the Jade Palace version. Jade Palace is much closer to us, so I will try their Hot and Sour soup in the fall, which is usually the barometer I use to measure Chinese Food. Go figure, we are now hoping for some San Francisco restaurants to relocate to Scottsdale.",review,ipyAEX4PQ_kY1TIcLbPKJQ,0,0,1 +BBPkwpj9kSeDuy0uOwWHJA,2010-06-29,3dxhoEVRL5h7A-oix6e0Og,3,"We made the trek down from northern phoenix to get some authentic ramen. I wanted to love this place and I wanted it to be worth the trip, but it just wasn't. The decor is as previously described - you sort of time warp back to the 80's but it is clean and well loved by its owner. They do have a lot of authentic menu items and a great kids meal, but the ramen was just not that good. Its downfall was the broth. Hubby got the salmon chirashi which was also not that fresh. If I'm in the area, I may give it another try for the don-buris.",review,19BunjXk7zhd811rF42U7w,0,0,0 +k8JnZBspVOI8kLcQek-Chw,2009-07-22,QQNpBoelqU5mUJjfR_p0Ng,5,"i love the army, but they make me wake up wicked early. then i work, work, work and when lunch rolls around, me want tasty goodness FAST. mamma mia's is the solution. + +i got their 2 slice deal, mushrooms. this cost me $4...that alone makes it rockstar, but you have to ask yourself...does it get any better?! oh yes, it does!!! the crust was crunchy, the cheese ooey-gooey and the mushrooms PLENTIFUL, which made me disgustingly happy. i think pizza places never put enuf mushrooms...today, i met my match. + +the joint is hoppin, but they still manage to get you out in about 10 minutes. plus, you get to stare at frank sinatra while you wait (young, cute blue eyes, not the older, less attractive version) and listen to the tv blaring. and if you are me, the QUEEN of movie trivia, you enjoy your wait as a time to school co-workers in ""the Game"" while you wait for your AWESOME slices. + +moral of the story, go, young ones and enjoy. the food is plentiful and cheap, atmosphere friendly but small. its easy to miss...KEEP YOUR EYES PEELED!!!",review,1usJIBBfZRJ39bocPG7HWQ,1,1,0 +Bt5XCquMuBAyCe9Gx_sLxw,2011-03-18,yBAF101ILQmQPD9oiWtDtw,4,"Oh, the hours I wasted at the big chains looking for an affordable framing option for this big print. Hours from my short life I'll never get back. Hours I could've been caring for the sick or spreading global warming awareness. OK, for sure I know I missed at least one Happy Hour because I waited to check Yelp which directed me to Paradise Framing. They were very helpful showing me different options in my budget, and making sure the frame and matting all coordinated with the print well. Price was very fair, and they did quick, quality work. Next time I'm going to Paradise Framing, then straight to Happy Hour - um, social work.",review,FktbKOzznpoKTNXMVtc8EA,0,0,0 +L2J3JfjXZLnX1rLhWKthqA,2011-04-04,G_aqfhfRok1lmH4jLCfcZw,4,"As an Irish lass thru and thru, the promise of a cool Irish pub to get some grub and frosty guiness was enticing...and it delivered! The food was great, our server was excellent, and they were able to accomodate our group of about 15 walkins without blinking an eye on a saturday evening (bonus points for that). Their patio is really nice, lots of flowers and greenery and high stone walls that make you feel like you're in more of a garden than just off Mill Ave. + +Overall, great place to head with friends!",review,zqnAdayPsak5dbLF2gEvNw,1,1,0 +p9vPvx795VrVfwYv1IXicg,2012-05-10,tfn7-YBp-lTDjuCdL7-K0Q,5,"Great Great Great salon!! They offer all sorts of services and Karyn, one of the nail techs is amazing! I'm a little obsessive with perfection when it comes to my nails and she does an absolute perfect job! Pays so much attention to detail! She is always creative and can make designs if you wish. She has many many color options. I would recommend EVERYONE to her and this salon!! Plus they won Best Salon in the East Valley!",review,NblWgLKOm2Pf-mE_zFp4NQ,1,3,1 +Dz7swOgFook-L89Y_M-aQA,2011-12-30,qIU2gO1Fq59gn7gCjVG0Sg,4,"Dined here last week and they have all sorts of foods and everything is ala carte; the place is a great place for all ages and their kiddie meals suit my boys perfectly. They mostly serve rice and their menu is also suitable for vegetarians since they offer a wide variety of choices. You will also feel that you really belong to the place since the staff is helpful and friendly. + +So there!",review,u4MQp3zX9RolLtNnp9FxoA,0,0,0 +8SjO3b-87uN2jXVXYNn47g,2012-09-25,ygSkp6jNILWPtLwVL8hwWQ,3,"Pretty nice for an airport bar. Just had a bloody mary, but the food looked good.",review,Fnz7m3FV-gV16u6_Hi6x-g,0,0,0 +CCNwvFbC6QjJ0RN7l3Zh9w,2011-10-31,Ce8SVhVLZFYMr38u3gME0A,5,"The grooming salon at this location does an amazing job with pets. Yesterday was the 2nd time my baby was groomed here by Chip. I hope I spelled his name correctly, he's just wonderful. He's very patient and very kind with my Sushi-poo and I'm comfortable leaving him in Chip's hands.",review,NYzUTIPzT-lsmhb4npRmVg,0,0,1 +shCdCHRbnY5FTMJbWl-myQ,2012-08-13,cfLb8ez4emSQn1krz-WE2Q,5,"Been here a few times, and each time it it's the best Thai food I have had in Az. Service has been consistently great. Has a full bar with some good specialty drinks that sometimes take some time to make but are worth the wait. Lots of mid day food and drink specials. I've tried six dishes here every one has been excellent. Portion sizes are about on par with the average of the many Thai restaurants I've tried in the east valley, while menu prices are below the average. I think Thai Spices offers a good value for some great food and drink and I can't wait to come back.",review,Rbi4j9y8Jqf3B4lBEnuJ0A,0,2,0 +3oZcTGb_oDHGwZFiP-7kxQ,2012-04-15,lVLdYZo9ah777VfKCmx1Vg,4,"great food, freaky good service, fantastic atmosphere. Highly recommend sitting on patio, inside looked a bit loud. Patio is fantastic, it is one of a few in Phoenix where it doesn't overlook a parking lot. This is my new favorite place to take visitors.",review,3EyjZYtNuzA0YY-2sDULoQ,0,1,0 +5M7YgorCUTEZkKYNbKDHTA,2010-06-23,eUAzJjcKgZ-_zNeNZkA2fQ,1,"I'm convinced that anyone giving this airline more than one star is most likely associated with them and is concerned about their job. I've been flying with them for 7 years back to NC to see my aging mother. I fly 3X/year on the same flights. The service and attitude of the employees has been getting progressively worse. I am also a pilot (20) years and I understand the weather and air traffic control VERY well! This rant is not about operations, security or delays. It is about the customer service by pissed off employees. My wife said that if she was not with me on my last trip she would not have believed what happened. I forgot to purchase my own bottle of water before getting on the plane in Charlotte. The beverage service was 2 hours into the flight! This old, cranky b#$%^ came by and said, ""what do you want?"" I said I would like to have a soda and a water. She said you can only have one or the other. I was so thirsty I asked for the water. It was a very small glass that I drank very fast and then ask for a refill...please! She said, ""I told you that you could only have one"" and pushed the cart away. Even the people around me were in shock. The check in personal were equally as rude. If you are watching the internet news, there was an article a few weeks back that rated customer satisfaction and US Airways was at the bottom! I for one will never fly with them again.",review,zKv-aIQo2zuXS6XmPpV6vA,0,3,0 +c1yGkETheht_1vjda7G5sA,2010-02-21,cw2pJw7eSRY6BNN1D200Gw,4,"Although a huge fan of bloody food. I have to say, Green is really damn good. As a former cook at Spiral Diner, I always checked out veg joints in other states, and rarely liked any of it. Green is great. even the faux meat dishes, which are usually the least impressive. Keep up the good work.",review,BfByK8hlWDtlNmJ1G1nCeg,1,1,1 +NXsw4z0AtaILgS4-UxSWUg,2012-12-05,u1SBI-7UUDyOEyRr3Q1RcA,4,"short, fairly easy hike but not well labelled/marked! i went with a friend who had been before so that's how i knew which way to go. even then, we both got lost trying to find the parking lot! easy parking in the zoo parking lot - you can see the ""hole in the rock"" from there so just park on that end of the lot. just a short walk down a paved road then some light terrain up the hill. not a hard hike - i did it in flat sandals. great photo ops at the top! + +we went on a weekday so there were very few people around but my friend says it gets crowded on weekdays. also, no water fountains and bathrooms in sight so take care of all that before you go!",review,XstxrbfNYkJ3CPQAgkNdbA,1,1,2 +Pg8OPh1D2ws0xO-I-8ppoA,2012-05-04,c_xnCvJYi1AEiEKYQ61_CA,4,"Their pizza needs to be in your mouth. BUTTERY crust. Like, butter buttery. And it's superb reheated at home in the toaster oven.",review,6_6WFq59E_L0wyI-uVzR_w,0,0,0 +W7xb2iS4cYL14Yi5LOGSkA,2009-12-30,XAn905drvC2_HqidEDQL1g,5,"i've been eating at bison witches for 7 years now. i started in tucson when i went to UA, and even though this one is on ASUs campus, i'll go because the food is that good. +i almost always get the soup and sandwhich combo - the sundevil (in tucson its the wildcat) and the cream of brocolli soup. yummm!! they give you plenty of soup in a bread bowl, and if you're like me and like to dip, they give you the top of the bread bowl that they cut off. they also give you the insides of the bread bowl too! as everyone else has said, the sandwhiches are huge!! you could order just half a sandwhich and be good, but you would be missing out on some deliciousness. and you get all this food for just $7.75 (when i first started eating here, it was only $6.50, which was perfect for the poor college kid). +i've also had their chicken cheese nachos, which is a cafeteria tray filled with tortilla chips, covered in lettuce, tomatoes, queso and cubes of chicken. it's an appetizer, but could definitely serve as a meal for 2. +also tasty their chili and chili con queso. yummm....",review,e44rUPb0ne7hcmEo6MzRGg,0,0,0 +RIPM5kJ6xHvIu6umgOrg4A,2011-03-27,_M9HND5qGT7khQlf4LO1VQ,2,"Slow service inside. Somewhat rude cashier, and for no reason. Small and awkward layout inside, especially for the limited seating and limited standing area to take an order. Sub-par as far as McDonalds go.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +9lWwAw9u1IVlYKbGiVOTFg,2012-11-16,2rr2y4udoXpYM1_qixOd6g,5,Best Subway anywhere. Super-friendly staff and always really clean!,review,wVuavblHM0NixaJKtpSdng,0,0,1 +sbD4f8aOsXZ6PJYh1kN4Ag,2010-03-29,gNkRwANi988LVe2BuyFRSg,3,"Despite the nice layout, design, and store variety of the City Center, I was still heartily disappointed. Some friends and I were merely trying to find a parking spot to do some shopping and things of the sort when we were notified that it was going to cost us a hefty $30 to park in a MALL parking lot. Outrageous. Turns out the WWE was in town and I guess they wanted to get some extra cash out of the mullet sporting, dentally challenged fans of Wrestlemania. Cool I guess, but not for us that were just trying to buy some swag. They offered some sort of validation system to reclaim some of the $30 coughed up, but it all seemed more than shifty in nature so we decided to park elsewhere. + +Everything else about this nice outdoor shopping center is exceptional. So waddya say Westgate? Create a better system for those of us not there for the events at the stadium across the way?",review,nKaR5Z9Qmqc4RsakLLX_7w,3,3,2 +PmPOuRvuN3CoNOi1nBj_TQ,2011-03-13,ZSpm2s9LjmX7IeGwT_fYYg,4,"Since I was in AZ area for the weekend with my gf for pleasure we decided to visit one of my friends in the area. She picked this place and we decided to get seafood instead of steak or a meat house. + +First of all, I'd suggest making reservations otherwise DO NOT COME HERE. We showed up at 7pm but weren't seated until 845. Good thing we ate a really good lunch otherwise I'd be starving and complaining like a baby. At least this gave us time to have a few drinks before dinner in the LARGE outdoor waiting patio area. I think it was so crowded because it was the weekend before Fat Tuesday. This place kinda reminds me of Bubba Gump or something similar. It seems fun and they do have a large bar and waiting area. + +We ordered alligator and frog legs as an appetizer. LOVED IT!!! We wanted the fried alligator and frog legs but the waiter absolutely loved that he worked here and HIGHLY recommended that we order it grilled instead. Since he worked here, we figured why not? I was thinking to myself that the cooks were a bit lazy and maybe they didn't want to prepare it. Lol. To my surprise, it was good as he mentioned. I have had both before but not for a few years so I was pleased. My gf ordered the crab stuffed shrimp which was really good. I ordered a combination seafood plate which was good but not great. + +There are way too many things to order on the menu. A lot of fried food so if you are trying to watch your diet/weight then don't come here. + +I would definitely come here again but I wouldn't be in any rush. Great for a lot of people and groups, but PLEASE make RESERVATIONS.",review,J-oVr0th2Y7ltPPOwy0Z8Q,0,3,0 +cyxnQ6EocFbAENe7nRwx4Q,2010-07-01,TEU4ukNSSt_KRLuvTuQfxQ,4,"Yummy pancakes made from special house batter were perfectly golden, light/airy & spongy in texture, and had a subtle maple flavor even without the addition of their syrup. Pancakes are their flagship breakfast entree, though you can choose from the many other items including omelettes, french toast, or the common 2-egg with sides combos. + +This place has a local owner with a family member as the chef named Dean that is admired by most patrons. Oh, and he's the one who makes the delicious pancakes of course. Atmosphere is clean, sterile, and almost like an old hospital cafeteria from decades ago (notice the operating room blue colored booths). + +Patrons are almost exclusively senior citizens and the feel is relaxed, comfortable, and really is a throwback to casual breakfast spots were in the past. Location is on the north side of Peoria just before 99th ave., not far west of the 101. It's an older strip mall with ample parking, but down't be thrown off by the modest exterior (restaurant is to the far right when you enter the lot). + +I really like this place because of the overall vibe, friendly service, and pancakes. It's also a nice getaway from Millennials.",review,joIzw_aUiNvBTuGoytrH7g,3,3,3 +pzPbg_B2uSVJ72LIa2G3sA,2012-03-07,PxyFVZk5HUOT-gZYXa6ZWw,4,Good mongolian bbq - more variety than most. They have some good sauces - Try the mongo bbq or dragon chili.,review,fwIXyM_7HFRfkVQMne79AA,0,0,0 +pwpl-rxwNRQdgqFz_-qMPg,2012-03-28,vfpAzHSC1z3Ep6rRP4qyQA,4,"I VERY much enjoy this place. The Duck sandwich has changed my life. The brick oven gives the pizza a natural, full flavor, homemade style taste that makes you slow down and enjoy every bite! The atmosphere, the set up, and the bar is all very welcoming and very clean. Hard to spot when you are driving down the road. i have been there about 10 times and i still pass it up sometimes. Parking is not the best, and valet is not really needed, but they very much have top shelf alcohol and delicious food to boot. Not extremely expensive either, but pricey enough to make you count your bills before you enter just so you will have enough. Great place!",review,U0FGGImk_WXy4WBj2w3BMQ,0,0,0 +3oZcTGb_oDHGwZFiP-7kxQ,2008-06-15,_I0culabBdIRjyOVYyELjQ,3,"Oh Chelsea's your a tricky little spot, you have tasty tuna tacos (by far the best fish taco I've had in phoenix) but that little tuna delight cost 18$ which is no big thang except that I work within walking distance of the place and 18$ for a lunch taco dish is straight baller status. The outside patio is great and the service is what it is, Its a good corporate lunch spot but stay away when it comes to dinner, its kinda boring, OH YEAH IF YOU DRIVE BY THIS PLACE THEY PUT SOME CRAZY TASTY SMELLS IN THE AIR SO BE STRONG AND KEEP DRIVING YOUR WALLET WILL THANK YOU.",review,kgyv3ctYEZ0ACslpoakunw,7,9,9 +cdwHgELA2puX2DNfwSt5EA,2011-11-28,M6hKh0pO9fXHK7gQZBQWQg,1,Our family made the mistake of dining here on Thanksgiving. Everything from the table to the food to the clueless and absent waiter was outright below average and certainly no where near the kind of restaurant described in the other reviews (which I wonder now if were written by the owner or manager). What a disappointing holiday.,review,px4MMlH7Fpr9XtCnC2wnag,0,0,0 +6oRAC4uyJCsJl1X0WZpVSA,2012-04-20,ewd-GXTUEC5yaOndM0_sgw,4,"So i'm not here to buy spices or shop for sheesha, i'm here for food. Lots and lots of food. Luckily for me, Haji-Baba is known for tons of food at decent prices so I have a promising evening of stuffing my face without breaking my wallet. God, I sound like a really cheap buffet commercial. + +But really, to be truthfully, super blunt, honest-to-go-honest truth, Haji-Baba's food is not the best in the world but it is 1) fresh, 2) good quality, 3) tasty and 4) cheap. I am sure you can find better Mediterranean food around town, but this place is really good on your wallet and fits my needs just right. And hey, 215 reviews can't be lying. THE PEOPLE LIKE IT. They like it a lot. + +I ordered the gyro deluxe (gyro with raw onions and feta cheese), a side order of hummus, Babaganoush (eggplant dip), tried my friends lamb tongue and a pistachio baklava. + +If you are feeling adventurous and want to try the lamb tongue, lemme tell you: don't. Really, don't. There is nothing tasty about lamb tongue. It tastes slightly like roast beef but the texture resembles congealed liver patee and the big chunks are really scary. The only positive about eating tongue? Infinite pun jokes about talking about it forever. Get it? + +The gyro meat was pretty standard in the Gyro deluxe sandwich, the best thing about it was the creamy fresh salty feta cheese. Its the freshest i've ever had and they really DO slap it on that sandwich, like a boss. The babaganoush was also very very tasty with the pickle and the black olive- however- i would have liked bigger pieces of roasted eggplant than a hummus-like texture. The hummus was just A-OK, it needed more of a PUNCH of flavor. Last but not least, the baklava is my favorite dessert in all the land.. so obviously I enjoyed it. Heavy on the honey and not very crispy on the nuts, but pretty decent nonetheless. + +In conclusion, only use the tongue in your mouth and not the one on the menu, get as much feta cheese as your body can process and buy a desert to-go. BAM, lunch is served.",review,GRgBu4K7GOb3354esp_xkg,1,4,3 +_FXql6eVhbM923RdCi94SA,2010-07-23,GVe0Qsu3RLB0kDeB8q7tiw,3,"Hula's seems pretty hyped. + +I had drinks here that were OK. + +I had food here that was OK. + +I'll try it again and get an entree, but I'll not likely go out of my way to make it here.",review,QhuESGhOQWnKqwlSrISm8A,0,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2012-02-15,iPi8IbpRHftLWsyUDxPVjg,4,"Eaten here a few times. Just finished lunch and had a great salad & sandwich. The salad I had was the spinach with poached egg, it was awesome. My taste is for savory, ""umami"", this was perfect with the egg bacon and light dressing. The chicken sandwich was good with basil and brie. Then the creme brulee with tahitian vanilla was great. Just a nice quaint place to sit outside and have a good lunch. One problem I have with Zinc Bistro is that they have Stella on tap, great right? But for $7! That's one for $7. Come on, maybe $4. I just bought 12 for $10 at Total Wine.",review,0JAWkA4Cj67HKKfPrJpLnQ,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-11-14,-25WDU5N0llmCjjcqsisqQ,3,"Gallo Blanco Cafe has amazing food, however the service needs a lot of help. My first visit was one of the worst customer service nightmares I've ever had dining out. My second visit was much better, however I think our waiter must have been high on drugs. During my second visit my friend and I ordered the fried manchego cheese appetizer and it arrived after our main entree. Really??? I wish this place would get it's act together. I'm very fearful in recommending Gallo to my friends and clients. I've vowed to give Gallo one more shot and if it's not at least a good experience, I won't be back. I work too hard for my money to throw it away in an establishment I don't believe in.",review,3-gd5DJZnpIulyFZ0HZCPw,0,0,0 +j7XuypdW_w935NhjbvKPQw,2011-06-21,lpshBxq2HP7w5r3PZsbMAw,4,"I came here on Friday with a dire craving for Soba Noodles. I have never had Soba Noodles, before and I have been yearning it since watching a rerun of Iron Chef Japan the other night. Upon glancing over the menu I decided to order Shrimp Tempura Soba, $6.95 a Squid Salad $3 and bought a soda. All of which came to $15 bucks with tip. Not a bad deal at all IMO. +I began with the Squid Salad. A more than generous portion of Squid I thought for the price. It was cooked and marinated quite nicely. Next up, the main dish. The Tempura came on the side as 2 Shrimp Tempura and a piece of Carrot Tempura. The Tempura batter was actually quite nice, no complaints there. Now for the Soba. It came in a huge piping hot bowl. The broth was very clean, fresh, and enjoyable. The Soba Noodles tasted good I thought. I can't give a comparison to other Soba Noodles though, so I don't know if they were great of terrible as far as Soba is concerned, but I had no complaints. This is one of those things where I have to try numerous Soba Noodles to make a valid argument. But as far as I'm concerned it didn't disappoint. The one odd thing I thought though was that I did not see one Japanese employee in there. Kind of quirky, but oh well. This is a solid meal at a good value.",review,yp90PduP1gD7kgCLWuQg4w,0,0,0 +iELA6eREUgDVQrtLgYmS6Q,2010-12-29,bWqZoZh-mNETpqZU5vP2lw,3,"Meh... I am surprised to read all the reviews about the clean store everyone else wrote about. In my experience, the toppings area looked like it had all merged to become one big nest. There were also speckles and swipes of fro-yo in all places imaginable... floor, counters, scale... And, I wanted to try a couple flavors, but there was no one around to help. Also, the checkout lady was soooooo dreary! With her monotone listlessness, she made me feel as depressed as Sylvia Plath! (just kidding, but she couldn't have been more doldrums if she tried) + +I usually go to Yogurtology at Town & Country mall (on Camelback just east of the 51). That place is always amazing... Pristine clean, neat, organized, always a peppy guy by the machines with little sampler cups, a guy who had one too many Red Bulls and is nearly throwing at least one sample of every single flavor at every single person who walks in the door, with a funny, witty little quip and a great personality and WAY too damn much energy. But it's nice. + +THAT is what I had in mind when I discovered THIS place. I was excited. It was so much nearer to my house... great location (stupid layout though, prone to human traffic jams). + +I really, really want to like Yogurtland, but I just can't talk myself into it. The fro-yo was good (aside from the fact that I had trouble getting toppings without being too grossed out since it was a mess), but that was about it. All in all, they're lucky I felt generous today and gave them 3 stars, because I really had to talk myself out of giving them only 2. + +-Jessica",review,2fV_aUYoiXFfBMyc3Zx0Xw,0,0,0 +M6fjHpkL9IRI-nI0BattRw,2011-10-09,qP9gxmbo1u5-w9TMyJ0Kjg,3,"Meh. Met up with a few friends here and sat on the patio on a Saturday night around 8. There are no heaters, which would be ok if it was a nice fall day or a summer night, but i was a bit cold towards the end. There is indoor seating as well so this shouldn't be a deal breaker. I ordered a few nice glasses of red, one pinot noir and one petite syrah. I ordered the tuna salad and the bf ordered the grilled cheese. It was just ok, and so was the service. Our plates sat on the table for over 20 minutes after we were finished before they were cleared. Cute place, good music, not a huge variety on the menu, just salads and sandwiches. I would likely go to humble pie next door next time while in the area which is how we spotted The Main Ingredient in the first place!",review,qkbiaiS8t8YHWx3J04NjSw,0,2,0 +D09yG6Z3gcsh24Qn7Y4gYA,2012-05-01,wMSv_n4DN6EhEnAiYPUAFA,4,"Recently a friend at the gallery was very excited because it was Dollar taco night a Chicos. That is fine if you have any idea of where it is. Turns out I had been by there more then a few times when I went to the Safeway and Subway at 7th st and McDowell. It's a little place in a very small strip center. It's very much a neighborhood +place, clean with an upbeat atmosphere and a few tables outside. That's about all I can say about the setting. + +I was surprised by the variety of meats that one can get on the tacos. The tacos aren't to exciting but on the whole are fresh and have a good flavor better than I would have expected. That is all I had but from what I saw of the meals around me, hey looked pretty good as a whole. + +I will go back to Chico's. It definitely has fare that is better than the local fast food in the same price range. Not an exciting place but pleasant to think of returning to. I went there after a very long day so that is saying something. Just the enjoyment of quite of the few people just sitting down and having a good time rubbed of on me. I needed it!",review,4sIK_74UwkKU9YQXIfgCdg,0,2,0 +cgNIBHS2mLdbTRiodAT6EQ,2008-08-11,IM5vPwAlbnkhbIS339cswg,4,"""Are you kidding me Laura?!?!"" +""OMG we are going to get shot!!"" +""Dude this is a fucking double wide."" + +This is what I heard upon entering the parking lot. + +""Hell yes we are eating here I don't care what you say!!"" + +I like it no matter if Veronica R (my sister) did not like their green chili. Its a taco place order the tacos!! Yes the rice was overcooked and a bit crunchy hopefully its not like that all the time. The beans were FANTASTICO they tasted like the ones my Abuelita used to make. The salsa was not for the weak its nice and spicy just how I like it. I had the shrimp tacos as my entree see pics, they were delicious I cleaned my plate!! + +Cheapest beer ever I had a Bohemia for $2.50 they are $6 anywhere else!! We also took some Horchata and a Mansanita glass bottle to go mmmm. This place was clean and reminded me of Mexico inside, if I am in the area I would not hesitate to stop in here for a bite. + +Shout out to Danny S for recommending! TY!!",review,V0y4fqp-4pSRfsz0FmsjPA,11,10,12 +bVhIs14KgRzyR8umVL1CRQ,2011-12-20,1ksegU1YwEyKvWEy7KsapQ,5,"I have visited a few nail spas in Scottsdale and I like this one the best. ;) They do the best work and they don't rush. The environment is clean and well decorated. They don't try to pressure you to get little designs on your nails. (At least, from my experience). If you want to chat, they'll chat. If you want to zone out and enjoy your pedicure, they'll let you. Just try to book your appointment in advance. They have availability for walk-ins sometimes, but your best bet is to secure your own spot.",review,MwFIzGzYbep71j_jmPEw6w,0,0,0 +bc-lE-wGVAsUrX-kJhtY-Q,2009-12-28,-OQZDDemixv3LMuwlIyvHg,4,"Went here for the first time for xmas dinner. Atmosphere was very chill. Almost felt mafiosa style at times. It is a mellow setting and very relaxing with unique music. They also have TONS of sports related everything to keep you're eyes busy while you're enjoying your meal. + +Our server was awesome, we got our food very fast and everything was excellent. I recommend getting the 12oz filet. It was right up there with other top shelf steak houses in the area and reasonably priced. + +We will definitely be going back to Don and Charlies.",review,xNOOF142vmZEvASQ1g2QSQ,0,1,0 +yPpPJyAF8pciHnhTF-C38w,2008-12-15,U0oWlVW5gKDGwcFza5z5IA,4,"I used to frequent Homme for Tuesday night karaoke, Friday night French Kiss, and spent Saturday nights upstairs. I have to say that for the sheer, unimaginable amount of times I wastedly bowled over the dance floor, tumbled down the stairs, or made out with someone I never intended to, Homme has never done me wrong. The bartenders on both floors are fantastic, though the upstairs is better tailored for more intimate lounging. I've been to countless events here, and they've been well-organized and (as far as I can remember) really fun. There' s a great crowd here, and you won't feel like you're dancing in a dirty, sweaty shoebox like other hip dives in the valley. + +The parking situation is shady on weekends. I recommend going early to avoid irrational towings and cover charges; while it's purportedly not socially acceptable to leave the house before 10p, you'll be glad you did.",review,5B5fyTX11NXiaf9HGeLCXQ,5,4,4 +nRLsX5dEmYBcjhX2720y8A,2011-12-11,b--Jr3di3pi-Ifpzv97VvA,5,"I have been to a great many Ross store-- and I can safely say that this one is my favorite. Even when it is busy, it is still manageable, unlike some of the others. + +I am also consistently pleased with their selection. Now, I often go in there without much of a purpose, just to see what's there-- but I recently found ALL, that's right, all of my Christmas gifts. Perhaps I went in on a lucky day, but I can't think of a time when I didn't walk out of there with at least something. + +I was sorry to read the previous review, because I have had such a consistently good time at this store. As for the store having a security guard, the one who works most of the time is a kick in the pants. He'll chat with you if given the opportunity. Also, every Ross has at least one, if not two, security guards working while the store is open. + +I hope more of you are encouraged to visit now that you know what a great time I have had there. It's one of the smaller Ross stores that I have been in, but it certainly packs a punch. Happy bargaining!",review,bkR1tRtCi5ZG4qbdYM-LYg,1,0,0 +bF7KQ6AQK5rBS7aOFKtlWg,2010-02-19,IbriSn862erJI7lGnZalDw,3,"Great bread and sandwiches. + +Nimrod employees.",review,3wTXuo5-DazxVMRBNKYtFw,0,0,1 +b3MaC7nWia6uYvJrP8iu1w,2011-01-15,2Ar5D7POHZ5u3fqtKFvkQA,3,If only they have more fresh produce I'd stop by a lot more often!,review,bkRfY8jHdFxf7k8vLX4buA,0,0,0 +mTjHcl-pkNO4iOKY8rVHPw,2009-06-27,6eKYYesaqOfzvh1co2jY0g,3,"Drive through or dine in. The drive-thru wait for your order can seem overlong. I'm a fan of their carne asada burritos and their chicken burritos - very tasty. Also their breakfast burritos. They use real tortillas, not gummy doughy ones like fast food joints use. All the burritos are huge - really two meals worth of food. But, they're not careful about removing gristle from the meat or excess liquid from the spoon before wrapping up your burrito. So if you're a picky eater or you don't like messy food, don't get any kind of burrito. Burgers and Philly cheese steak sandwiches are also pretty good. They have a big variety on the menu actually. It's a greasy spoon, and I do mean greasy, but was a weekly stop when I worked nearby.",review,Bwo_j9OGpZN60T5HxKOTeA,1,2,0 +3oZcTGb_oDHGwZFiP-7kxQ,2010-02-25,PbFFGfD-_ew3qTAEoogx6g,4,"I've never been done wrong at Chelsea's. But I've never been utterly wowed either. The food is consistently good, the service and atmosphere are top notch and it's in a great location, but I can't seem to give them five stars. I have always gotten their tacos and most recently tried the seared ahi ones that our server said were only on the lunch menu but I could get for dinner. The ahi was perfectly done and tasted great but didn't really jive with the soft taco fixins. Still it was tasty and I ate and liked it. JD had a cheeseburger that he described as ""meh, not as good as Delux (his gold standard)"". + +Maybe my only thing against Chelsea's is that it has yet to serve me anything so special to make me YEARN to go back again. If someone suggests it for dinner I'm all in, but would I ever be the suggestee? Nope probably not. Perhaps I should try something new the next time I go and I just might fall for Chelsea's a little harder, but for now she's just an acquaintance that I don't talk bad about but neither do I praise.",review,wC1CPV5bf--bDLtlhNSPLg,1,2,0 +89yv89wcF_-ehN7_pUnl6w,2011-09-12,NKVO9cAizG-MM2ZnpFDKww,2,"An Ode to Walmart: It's Walmart + +A senior citizen handing out carts at the door. My cart doesn't roll straight. I'm not surprised. There are no baskets, just carts. Is that a hint? + +It's Walmart. + +More babies than a daycare. More seniors than a senior center. And tattoos for everyone. + +It's Walmart. + +Cardboard kingdoms of snacks, a tower of cheese balls bigger than you head for $5.98 each, a wall of ramen labeled ""Cup-O-Soup,"" and a kid putting cheese balls bigger than your head into his family's cart. + +It's Walmart. + +Fifty cent clearance plastic margarita glasses. A crate of $5 DVDs bigger than my bathtub. The PA announces ""All loaders, code 60. All loaders, code 60."" + +It's Walmart. + +A pharmacy, vision center, credit union, grocery store, hair dresser, automotive section, toy store, bike shop, Home Depot, and Office Depot all under one roof. I think I got lost twice. + +It's Walmart. + +Profits measured one penny at a time. Is Walmart a savior for the poor or does Walmart enable poverty? Economist can't decide. Does Walmart help the environment by working with vendors to reduce and remove packaging, and engaging in some environmental friendly projects. Environmentalists have decided. + +It's Walmart. + +Self-checkout with a weight sensor to keep you honest. They've never checked my receipt at the exit. Is it because I'm white? + +It's Walmart. + +Patrons leave their carts at the bus stop. Where did that hour of my life go?",review,U_fAIe7CUaGMejwSdNvMgw,0,2,3 +9OPheVf5o8sRcRHxJDl4-A,2010-09-08,h3ZHr4wnxjGb6IsKcZGW6A,5,"The closest thing I have to a neighborhood pub. Not bad. + +They sell loads of Belgian and Canadian beer. That is all that you need to know.",review,f3LA83yEEBMj9q92H28O7w,0,0,0 +mxrXVZWc6PWk81gvOVNOUw,2011-10-19,qq4bcTHmM_Dqw6vnp8z6og,4,"Didn't get to sit outside so a little disappointed. We saw the ""big assed burgers"" and all decided to get one. They were great but a bit messy. Food and service were excellent. Will try and get back for happy hour",review,pOim-Tccfc6Aw0ynGdPmYw,0,0,0 +jRfdz5voj40P6WS9L54caw,2011-02-03,L_Sgeicho40nvF3Xw2RbUQ,4,"Having gone to the now-closed location on Shea, I didn't expect to find myself at the new The Herb Box anytime soon. My one visit was fine, but didn't leave me wanting more. However, when Deb L hosted a recent UYE, it was the perfect opportunity for great company at the very least. Well I'm happy to report I received even more than great company....great food, great service, and comfortable, yet beautiful surroundings were also on the plate. + +I began the evening with a glass of their house-made sangria. I could drink this light and fruity beverage all day. In fact, I think it would make a fine substitute for my morning OJ. I did have a hard time choosing an entree. While I was tempted by the pear and gorgonzola flatbread, I chose the goat-cheese chicken instead. The shoulder cut chicken was perfectly cooked, but the meat itself was perhaps a little bland, although admittedly I do prefer chicken to be well-seasoned. The goat cheese stuffing and the fig jam, however, resulted in an overall quite tasty dish. I loved the mushroom risotto cakes served alongside!! + +The Herb Box also graciously offered our table a variety of sweet treats at the end of the meal...a slice of fig bundt cake (my favorite), a couple different cupcakes, a whoopie pie, and a passionfruit cake. While all were enjoyed, none of these wowed me. I do think these may have been pastries available at the market, and not their dessert menu items. + +So thanks to Deb for giving me a reason to try The Herb Box. I'm sure I will be back again! I didn't get a chance to browse the market!",review,wHg1YkCzdZq9WBJOTRgxHQ,5,5,4 +OOCLVeqqMFfSnKa7liv0Kw,2011-07-29,oCG_EaRgtUF04ZnEqAIIZg,3,Similar to Desert Ridge. All the typical chains are here. I like the Jimmy John's for a quick lunch.,review,Kqvfep2mxS10S50FbVDi4Q,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2009-08-31,zBoquzaWcqOB3kCg8fLRaA,2,"""I totes spent half my paycheck here while making out under a palmtree that's no longer there and eating tofu and sauce with my girlfriend/boyfriend/person i needed to impress/first date/ex-boss/lover/landlord/twitter pal! It's edgy and modern and makes me feel like my $80 blouse was worth it and that I'm worldly and cultured and blah blah blah blah blah..."". There's no fighting what looks like a small legion of wanna-be hipsters and pseudo romantics who can't get enough of this place or it's food. + +And who apparently feel great about dropping $50 to $100 for 1.5 ounces of food. VERY impressive. Good for you. + +In my opinion, it ain't all it's cracked up to be: first, pay attention to how many fried foods are on the menu....fried tofu, fried quail, fried wontons, fried chicken wings, fried pork on sugar cane. Yeah - it's a LOT of fried items. They even fry some of the shrimp in their salad items, i'm told. Hmmmmmmm. Bit overpriced for what you get. Some items are either smothered in gobs of soy sauce (duck breast), or have so little taste that they NEED the sauce (spring rolls - lay off the Anise!!). So....basically you're paying higher prices for gussied-up, MSG-ridden, fried nibbles - even if they ARE tapas. Funny how many people write reviews of this place stating that they were WASTED when they went...maybe because we naturally desire greasy food when we're drunk? + +I've had friends go and love some items(lime mint beef, red curry tofu, miso) and dislike others (fried pork, gyoza, overcooked fried wontons). I've also had friends tell me they've seen everything from cooks picking food out of their teeth with their fingers behind the counter to death looks from Chu because they clicked their chopsticks together too loudly, or asked for their food to come out on time. It seems he's not the little ""darling"" that some make him out to be. + +The music (on some nights) can be occasionally good, but also gets repetitive and loud. Sometimes this place tries too hard to be New Yorkish - while existing in the remote patchwork of dirt lots making up the roosevelt district (or as some call it, ""Cenpho"". still looks like a lot of empty dirt lots to me). + +And occasional HOUR wait times?! What is this: Matt's Big Shumai? It's small food! Get over it! + +Looks like a lot of people ""need"" this place to be something it just isn't, for whatever reason. You are a fickle, mysterious and too often Lemming-esque crowd, my dear phoenix.",review,plNy9iRaTasckjl6Lb-zAA,2,3,4 +lEGq4UveDPxikXcpwjtFow,2012-06-12,15-ho2xrWkYW9cgLzxEbXg,5,"Saw CAKE there last year. Nice grass, beautiful venue, great night!",review,dc6OIgMlf6QMuSegogO92Q,0,0,0 +-bd26a1QEEpqUZjBmtBUiQ,2010-12-03,Pw_D-Yk_9texYWSMPI4FJw,4,"Cafe Lalibela is my absolute favorite Ethiopian resteraunt in the greater Phoenix area. Located in a small shopping plaza near downtown Tempe, this humble little place packs a whole lot of flavor with their authentic Ethiopian fare. I love their braised meats (particularly the beef and lamb dishes) and your vegetarian friends will rejoice with Lalibela's amazing +selection of veggie sides. My mouth is watering just thinking about their potatoes, carrots, and cabbage dish as well as their carrot and green beans. Their spicy lentils are probably my favorite lentils ever, and their injera (thin spongey bread, sort of like naan) is absolutely perfect. The super nice family that owns and operates this place are great and they +even offer some great Ethiopian coffee, tea, and beers. One of the only things I really miss about Tempe.",review,zgCO0TnkvfohTmwPTwP7Ew,4,4,2 +LzNJLEIo4gh-X_rmDkNkNg,2012-05-31,ynBYCy2ZmEyXECVKLOHjfA,4,"Beer. Beer. Beer. + +That pretty much seems to be the highlight of this place. +I'm not even a beer drinker so can't review the quality of their brews but apparently the Oatmeal Stout was good and a deal at $3.25/16oz during happy hour. + +I can vouch for the food though. I ordered the grilled chicken sandwich (with goats cheese and veggies on multigrain bread) with side salad for $10. It was one of the featured Sunday specials. The chicken was cooked well but coated with a heavy layer of peppery seasoning. I personally enjoyed it but imagine it would probably be a little extreme for most. The small 12"" medium crust BBQ chicken pizza was also good ($14.50) and huge enough to share. Both our meals involved simple ingredients but the quality was above average compared to your typical pub fare. + +Wish they had a few more wine options for us non-beer drinkers but then again I wouldn't want to hear a beer drinker say that at a wine bar, so I won't judge. + +Very casual atmosphere made up of everyone from college kids to young families on the early Sunday evening we were there. We drove by here on Friday night when it looked much livelier and their outdoor patio was packed. + +Decent service and overall good place, especially for all you beer drinkers out there!",review,lbW1zgZp0sZXIEzCkumbtg,0,2,0 +GDmue1oJaem9ilywDtA4_A,2012-07-18,HRegLHJ7wIYiuPkbvArVEQ,3,"For opening night, there was a giant wave of people coming through the door. The bar was dimmed in red and purple lights. The bright new white dining tables were ready to be eaten on. All new upscale posh furniture in the bar, dining area, and patio. We were not able to get dinner but we'll be back.",review,S-07w5CJfDmEBTNZ9V-ycw,3,6,6 +HkSyssTd5_QNNeGI0-ltTg,2010-05-29,avvbT0c8OEMaV-OdjsCn5A,3,"Food was good but I can't say I was terribly impressed overall. The food kind of took a ridiculously long time even when only one other table was in the restaurant. The appetizers came out fifteen minutes after our main meals - we had figured they forgot about it. + +Tastewise, things were decent but not quite memorable. I had a chicken shawarma and the whole ordeal was filling but a bit on the bland side.",review,f2P9doabyXDo7JaZ5K7keQ,0,1,0 +yktWUtKBja_Lzk3wwR6RFA,2009-01-09,F3Ub3vp1UW4up54kyVWHUw,5,"I really adore this place. They've got some of the best lentil soup around and all of their chicken dishes have been perfectly seasoned and very, very juicy. I recently got the kabob plate and it came out so tender and juicy it was falling apart on my fork. Their hummus and garlic sauce are both very good as well and the service is quick and friendly. + +Last time I was in, I noticed they expanded their dining section so the place is a bit bigger now, probably to accommodate the increase in customers from the park-and-ride light rail station right in front of their restaurant. + +Do yourself the favor. If you're heading on the light rail and feel hunger strike, stop off here and enjoy a nice meal. They have good lunch specials around $7.50 for a full plate with meat, hummus, garlic sauce, pita, and tabouli. Mmmm!",review,FHJUj7EHB9nB2czVOzQX3Q,3,3,1 +qdA4qiSXjaiuqO4SueH9VA,2011-06-26,EQOWA8Td6YNqrCFu-NEXcQ,5,"I LOVE BURRITO EXPRESS. My fiance has been going with his friends since they were in high school and he finally took me to try the only thing his group ever orders: a steak, potato and cheese burrito. EPIC. This burrito was so awesome that they have never tried anything else on the menu and I feel the exact same way. The tortilla is huge and fresh and the burrito itself is gigantic. I can never finish mine but the boys seem to eat it right up! Don't leave this place without trying the horchata either, it's so good. I've been to other Mexican places like this and the horchata tasted like gross water. Burrito Express however does it right and I will always go back to this place whenever I'm up for the BEST BURRITO EVER.",review,gsyguOgT2Dnjw-OYw14XDw,0,0,0 +JhupPnWfNlMJivnWB5druA,2010-04-07,Hys_Mw4JL8AfT6MrtU-UMg,5,"This is probably one of the more unique, trendy looking places in Phoenix-metro to lounge at. Everything about AZ88 is eye-candy, literally., from the furniture to the drinks to the decor and of course, the patrons. Drinks are made really, really tasty. My usual choice of cocktail is the French 75. My go-to appetizer is either the waffle fries that comes with three flavorful dipping sauces or the shrimp ceviche! The menu is pretty diverse with a little flair. + +What makes this place a hit for me are the contemporary, artsy decor making it a refreshing scene to come to compared to other Phoenix-ish ambiance. Of course, you can't have all these modern, sophisticated attributes without a DJ playing fresh beats and sounds! + +Bottom line is the look and the vibe makes me feel like I am back in New York or Los Angeles. I had given a 4-star prior, but I can honestly say AZ88 can hang with the big boys.",review,hjJPKQ1Ah91h3fVbc8GsOg,0,1,0 +opikDGSxDcfZwYWbk7dKtw,2008-08-25,avT6YrT4mM4Ao5mdQBnwyA,2,"When I heard about this company opening in the valley, I was pretty excited. Something new!!! But when I got to one of these stores, I was disappointed. + +Imagine: A smaller Whole Foods meets IKEA. Sounds interesting doesn't it? Unfortunately they do not execute it very well. There was nothing there that I couldn't get at Trader Joes at a lower price. There wasn't any thing new or even different. Sure you can get your Tide, Crest toothpaste and some other name brands there, but the place seemed to lack a soul. + +If you need just one thing, this would be a good place to run in and out. But if your looking to do the bulk of your shopping here...why not just go to Safeway? Maybe that's the point, but what really shocked me is that the prices here were not any better than Fry's or Safeway. Trader Joes at least has really cheap prices and you know 90% your getting high quality stuff. Plus TJ's is different from your normal shopping experience....the marketing is fun and the stuff you get there you generally cannot get anywhere else. I did not sense any of this with Fresh and Easy. It seemed sterile. + +If you like F&E....good for you!!! I just don't see the value nor the selection. The idea of this place is great. They just don't get the American market.",review,H7OGq5Upv2FwuSORESv6Kg,2,2,2 +1pGC-0jvQ6vN5rzmCHjmfg,2007-07-28,_nPWOtAKBbsC-ucfFfqBPQ,3,"Harkins 16 is exactly like every other Harkins theater. That it to say, a huge, context-less concrete box in the middle of the desert that shows the same movies as their competitors. I saw the Simpsons movie here tonight and just have a few thoughts to share. + +-The Cine Capri screen is big. Anyone who has visited either the Scottsdale location or now-defunct Camelback relic knows this, but I felt it was worth repeating. Very cool to see a movie on a screen larger than life itself. + +-There is always ""that guy"" in the theater. You know, the one that laughs as loud as a bullhorn, repeats everything that happens on-screen, and occasionally yells out something profane or derogatory. Now, imagine a theater where every guy is ""that guy."" If it weren't for the cool factor of the huge screen and seeing a movie I've been waiting to see since childhood, I would have walked out in annoyance. Seriously, what compels people to behave like this? I don't know if this is due to the proximity to ASU (beefneck central), but it sucked. + +-Previously mentioned by another reviewer, but Dippin Dots are awesome. Simply awesome. + +Getting out of the parking lot was a disaster. I don't know if the whole Tempe Marketplace complex could be more poorly designed.",review,kDJ9PRlYugp5RIa9ontPZg,1,1,0 +WSHQ9qpL39g5xA3E5iBCmw,2012-01-08,_pFw39F2jP8-_Voy9iyRmA,4,"Went in on a Friday at about nine for a quick bite to eat. Far underdressed but I was welcomed warmly. Looked for a seat in the bar but it was jam packed, standing room only. Fortunately ran into some friends who let me sit at their table. Was greeted by a server after a few minutes and brought back drink and food menu. Ordered a la Paloma, NY strip medium and broccoli . I was promptly brought my drink, water and silverware. After just the right time my food was brought to me. I enjoyed my steak but my only negative was the plate it was brought on. The plate was so hot the moment it was set in front of me I could feel the heat radiating off of it. I did not enjoy eating my meal while sweating from the heat of the plate and being in fear of burning myself with any accidental touching of it. Not long after that some more friends showed up and we had a very nice 2005 Napa Cab. I didn't browse their wine list but if I do go back I am curious to what they have. Overall it was a nice experience, but I'm not sure I'll be going back anytime soon.",review,0dpNmJxKp4Ha-fzJ2R8cCw,0,0,1 +m3EKlucZuwnOazLrRfnWaQ,2012-07-11,OkBuxkIDP1_YZU_o-DF_1w,2,"This place was a disappointment. + +I'm a big fan of a good Italian Beef sandwich. I was introduced to it when I lived in the Chicago area in 2001. Since I've moved back to AZ, I am always in search of a good one. Lately, on my way to Anaheim for a little family fun, I stop at Portillo's in Buena Park or Moreno Valley. This is a must. Needless to say this is what I compare Italian Beef sandwiches to. + +The Italian Beef sandwich at Al's just did not compare. Not only was the beef dry even though I got it wet, but it just tasted different. It was definitely an unexpected taste for me. The rest of the family agreed too. The hype was there but did not deliver or meet my expectations for me. + +To top it off, the service wasn't the best either. It took a few times for the cashier to get the order right. And even though the order was right they still managed to screw up one of the items we ordered. Though they did rectify it. And to top it off, we ordered a ""chopped"" salad. The lettuce wasn't even chopped. What? Not chopped? It's the little things. + +We ended up leaving disappointed. It was a bust for us and definitely not worth the trek from Chandler.",review,0Nhieu1aPqT4Brv1P7-9tQ,0,4,0 +acpeqj-OAIlGA5S8Mp34Hg,2012-04-28,_TqbABjybfQEEEGt4uGsRw,5,"Fantastic place to learn Krav Maga and workout. My two sons have been going to React Defense Systems, RDS, for years and they finally convinced me to go. I love it and it's too bad I didn't go earlier! + +The instructors and facility are top notch. As a beginner, the instructors made me feel welcome and motivated even though my skills were untrained. After two weeks, I can feel, see, and hear the difference. I love smacking the bag with sweaty fists and feet and seeing the sweat fly. + +If you are looking for intense conditioning, then RDS is the place. If you are looking for life saving skills, then RDS is still the place. Learn a great life skill, become fitter, and have fun. + +I agree with AZ Central: RDS is the best boxing/martial art facility in Arizona. + +In closing, I'd recommend RDS to anyone and I apologize to everyone for not being creative enough to think of something funny or flippant. + +Oh did I mention this is one of the few places in the world where parents and their kids can legally beat on each other and enjoy it?! When was the last time your son hit you? ;-)",review,HdPbyEdcCCVBDEhc-D6vKA,0,0,0 +mSBLrQ5pCeKMPXlwR_f7hA,2012-11-29,pPQtQVHhWrMNoaWB1q-51g,2,"I called this company to move a pool table that I had purchased from a private seller from their home to mine. I was able to set up the appointment easily, but that is the most positive thing I can say about this company. + +On the day of the scheduled delivery, I got a call from the person I bought the pool table from, saying that Diamondback Billiards did not have my address or phone number and didn't know where to delivery the table (even though I was the one who set up the appointment and definitely gave my information during the phone call). So, I gave them my address, they showed up and set up and re-felted the pool table without incident. When I went to sign the invoice, I noticed that they even had my wrong last name on the invoice and had the seller's address listed as the Buyer and the Seller. I dont even know how this would happen except that the person I talked to when setting up the delivery was not doing his job. + +Also, I asked on the phone if they could bring an extra yard of fabric to cover a cue holder that I have and was told that it would not be a problem. And, you guessed it... the delivery guys knew nothing about it and didn't bring any. + +So, I went to the store the next week and asked if I could purchase a yard of the felt that they used to cover my table (I couldn't find a good color match at JoAnns). They told me that they would have to order it and it would cost $55. For a yard of felt.... yeah... that's nearly as much as I paid to have an 8 foot pool table covered. Needless to say, I didn't buy the fabric and I definitely will not use Diamondback Billiards for any of my billiard needs - too unorganized for my tastes. + +Also, when I was at the store I noticed that their selection of pool cues and other accessories is very limited. Unless you're in the area to go to Ikea, don't waste your time.",review,w1LjSa5wMexRIQ-82LKWmQ,0,1,0 +39oUcXr-06fcfT_MZ94z-Q,2011-05-20,YU4nmER8zVduSmCTjyFdrQ,3,"Okay, so Kevin and I initially wanted to go to Samauri Sams next door, but they closed at 5 (seriously??), so we checked out Yelp reviews for this place and decided to give it a go. The atmosphere was... interesting. Very loud mural on the wall of a cartoon pig cooking meat, with innuendos littered all over the place (see photos other reviewers have left). It is a very clean establishment, and the staff was super welcoming and friendly. I am not a huge fan of barbecue, but my pulled pork sandwich was amazing, as well as the warm cornbread I got on the side. Kevin got something similar with some spicy sausage or something. I didn't care for his, mostly because I don't like spicy things, but he enjoyed it. I think the food and the staff is worth between 4 and 5 stars, but OMG the music. Nothing but really lame jazz and 90's soul music. Each song was progressively worse than the last, and I kid you not - Brian McKnight came on and I just about lost it. The music did not match the atmosphere and killed the vibe for us, although we had a few giggles and fully enjoyed being there anyway. Would I go again? Yes. Would I most likely strangle the person in charge of music next time? You can count on it.",review,qa05pUVNapADHZXpHMPMeA,0,1,1 +rhf8H7KZsMHRAprI5-D3sQ,2009-09-27,9YA4XjnrE4-XBV6YhHkxQA,4,"WOWSA- we just moved here from NYC and this pizza is like home :) We tried the Brooklyn and Da Works pies and the Brooklyn was WAY BETTER. I didn't like the Da Works (don't care for fresh tomatoes on top of my pizza). + +This will be our regular pizza joint for the area- we were both impressed and will order many more Brooklyn pizzas from NYPD! Having just moved from NYC we can speak with authority when we say ""It's authentic NY pizza!""",review,qWFYWalunBMpzJvw4WLvgg,2,1,0 +-9pVS__IliMA2aNEYzrQrg,2010-03-01,OHsif1vlnI453UfeeNMDRw,4,"Awesome bartender on the patio! Way great drink specials!! Don't come here to have conversations, folks. It's LOUD!! Great DJ spinning crazy dance music. Place gets way crowded so get there early and snag a spot to people watch!!",review,OksbhhgC71Ary3zNHMypeQ,0,0,0 +yQONzVpX-DEpGSuKMIov6A,2012-10-20,KE1q1Lyh99xAPZjeDvI5AA,4,"Surprisingly authentic Sichuan cuisine in Phoenix. The staff were very friendly and accommodated our infant without any problem. The mapo doufu had great spice to it. The garlic eggplant (yuxiang qiezi) had excellent flavor and we also highly recommend the twice cooked pork (hui guo rou) and fried green beans (ganbian sijidou). The prices are certainly reasonable for the size and quality of the food. The open kitchen is also a nice touch as it gives kids something fun to stare at (flames shoot up from the dishes being cooked every few minutes). Admittedly, we only went because out POS airline put us up at the residence inn across the street after we missed a connecting flight, however, if we go back to Phoenix or if we lived in Phoenix, we'd definitely go to Szechwan Palace again.",review,FWnsCOYE_0DU8bsOg6g4bw,0,0,0 +GuawrlE4Z7PnqZXYcVuv5Q,2009-05-10,Fw8EhAFknwr3-l4nik_p0Q,5,"What a dream come true to traipse into this store with my toddler girl and my husband. The store is filled, ceiling to floor, with all varieties of toys for all age groups. Shelves upon shelves of brands and models you've likely never seen if your main toy-shopping stomping grounds are Toys R Us or Walmart. The store's management clearly has a relaxed attitude about children playing in the store -- toys are sprawled across the store, ready for the next child's little hands. Yet, it didn't feel messy in there. The aisles are wide and smooth. The store is organized into various zones. (Dolls, science, blocks, books, baby, etc.) This is an absolute oasis in suburbia land where you're always hard-pressed to find non-chain stores.",review,a5CS6-ALOq0MSJ-IKUr3Bg,0,0,0 +1CU_ksC32Hz7QmioMH91nQ,2011-12-01,AkT0DEKYnpkG9SyXDG05ng,5,"My wife and I just got married at Blackstone, and I'm still amazed at how awesome they are to work with. Elizabeth, Megan, and Alicia all worked tirelessly to make our wedding memorable. The location couldn't have been better, I'm still getting compliments on how beautiful it was. We read the glowing reviews prior to booking, and all I can say is that I agree with them 100%.",review,Je0kWpzS4XKfowdU_j86RA,0,0,0 +xtX2qS64zP2NRPV_7NNqHw,2011-11-05,MBUxmQjbJDRiL-mjAy99dw,5,Awesome pool.,review,3JR8Z1-qdWOWEDycbrIflQ,0,0,0 +un3KC2gyMrSG6yqjVRctXg,2011-06-28,Ii1qPwka49-3TO_NQGOtMA,1,"Don't bother with this place. I had never been here, my husband and I decided to pick up some food to take home. We ordered a shrimp tempura appetizer, an assorted tempura appetizer, a lobster appetizer, and yakisoba. When we got home the order was totally wrong. Instead of lobster we were given mussels (which were gross), instead of assorted tempura and shrimp tempura we only got assorted tempura with 2... that's right only 2 shrimp in the whole mix. The yakisoba was the only part of the order they got right and it was not that great, pretty bland. I love Japanese food and I was really excited to find a place near by and while we were waiting for our order we were excitedly planning to come back and have their sushi, but after this complete mix up and poor quality food there is no way I would trust them with anything raw. Never going back, such a complete disappointment.",review,u9HVErmeVyu7Yvigb7J0Uw,0,0,0 +tbRu-3NR5za1SEZkszcp5Q,2012-01-03,IVoMGfn9QrZ4dATwc9HBcg,3,X,review,SHcX9hp5RG3-OqsbvissIQ,0,0,0 +fowXs9zAM0TQhSfSkPeVuw,2010-02-11,V-BZrffZAKzoKJe2oLtKHA,1,Ive eaten here twice and I dont think Ill ever eat here again. I ordered the lettuce wraps and the food smelled like horrible BO. It made me so nauseous I couldnt even eat it. The salad is decent but I still cant get over that smell!,review,Txq_1amn8v6-QJfWxDgsRA,2,3,2 +tomw3dn386aTe6RGOxn5BQ,2009-12-07,otCmAO3kqlsj4Mr6HY0bDA,5,"I think Mr Goodcents has the best subs in town. I have no idea why people go to Subway. Goodcents slices the meat and cheese when you order your sandwich and their bread is baked fresh - you can't beat it. Get oil and vinegar on your sandwich and the taste is to die for. + +The staff was very friendly and oftentimes the owners are there working. $5 footlongs are there too - only they taste 20x's better! They're all over the city if this one isn't in your neck of the woods.",review,7o7vuRkJtnnipRWw3kft8Q,0,2,1 +wZwZcte4lcbu51NOzCjWbQ,2012-03-20,UH6NAyPHwyt3wJWlYaJQ3Q,3,"Growing up in Tempe, I've been to the Rooste a few times. Overall, the experience is good but nothing to write home about. + +One of my recent visits was on New Year's Eve. I made a reservation ahead of time and the process was perfect. They said upon arrival, if there is a wait for tables we will be bumped to the top of the list. When we arrived, the hosting staff said it was going to be a 30 minute wait. I was a little confused but no point in causing a fuss because we didn't have a strict time schedule for the evening. We walked over to the outside patio to check on the view. Within 5 minutes our buzzer went off and we were seated. Our server was fantastic and friendly. The food was delicious with LARGE portions. And surprisingly not as expensive as i thought it would be. + +My next visit was about a week ago on a Saturday night. We forgot to make a reservation so when we arrived we found out it was going to be an hour wait. We waited maybe 30 minutes before we were seated. Our server, however, was not as wonderful as our visit before. It took 20 minutes to get waters and she kept blaming the bus boys for everything. The food this time was OK. My dad's prime rib came out cold, like it was straight from the fridge. All the side dishes were cold or overcooked. It was a less than stellar experience this time around. If I hadn't been here before, I certainly would not return. + +If you want to give it a shot, I'd say go for it but don't expect the best meal you've ever had. The view and atmosphere is what makes the restaurant.",review,uYecHRyGu6zbLP5NRnNFyA,0,2,0 +732Z5HGLEEBjAgXxfnuXlQ,2011-04-02,zbcVgkTISrf77TWFRroFvQ,4,"I was working in the area and craving a healthy salad for lunch. My usual love affair salad place was too far so my colleague and I decided to try Jason's Deli. He'd gone there for sandwiches many times and never tried the salad bar. For about $7.50 after tax you can get a pretty good selection of veggies, dressings, even a few pre-made pasta salad options. They also have crackers and mini muffins. The salad area seemed clean and well stocked. There were enough tables to sit, even during the lunch rush.",review,y5_vrqIylhXMrejM_-x_vA,1,2,1 +2e4LeI46Mo9YF24RnnJadQ,2011-02-08,nJZHeiscTe5y5mtnAWEi2Q,4,"Inside Decor: 4 Stars - nice clean tables. +Service: 5 Stars - very nice staff, and the food was delivered to our table pretty quick and everything was correct. +Food: 3 Stars - the Kids Cheeseburger got rave reviews, my daughter said it was better than mcnuggets, and better than The Original Hamburger Works (down in Phoenix, next to Encanto Park) so I give hers a ""5-stars"" score. I ordered the Arizona Smashburger (1/2 lb) and was generally satisfied (4-stars). This was my first time there, so I was not familiar with all the hub-bub of the ""Smash"" - but the 1/2lb burger was a good 1/2"" wider than the bun itself. Not a pretty site. The Guac was so-so, chunky but lacked a savoryness. The Habanero Cheese, Chiptole Mayo and fresh (not pickled) jalapenos were all very nice. I would have preferred a thicker hunk of beef, and the same fixings. The red onion was pithy and only one thin slice, while they did give me two thin slices of tomato where were enough to give about 50% coverage of the ""smashed-out"" beef patty. The pepper bun was nice, I'd like to get them for my regular grilled burgers actually. Good bread, held up very good with the rest of the burger. The Kids Fries - eh... thin and I didn't take a bite but for the record they looked to have the same dimensions as the Fast-food golden arches fries. The Onion Rings (ahem... Haystack) were a HUGE disappointment. I like a thick cut onion, nicely battered and fried. These were pithy thin, tiny slivers of onions dripping with batter and goo... not what I would recommend anytime. (Burger, 4-stars, Onion Haystack 1 Star, net it out, 3 Stars for my meal.) I guess I don't get the whole ""Smash"" thing. Call me a noob, but don't call me to go back there again. + +If you are a picky burger guy like me... and like to ""dress your burger"" all fancy, or if you are a picky minimalist... I have to recommend Fudds or The Original Hamburger Works. If you want a $7 burger that is pretty good but don't want to be bothered with putting the toppings on yourself (or if you are a germophobe and shudder at the openness of the toppings in the customer area) then this is the place for you. Good Service, Clean surroundings. + +Final Verdict: 3.5 Stars (but 4 on the yelp page because at heart, I am a HUGE softie, and my daughter did like her burger a lot!!)",review,hAt0i0MarztUAxsooHpZzw,0,1,0 +C0vHeuHvd8H-9pJ1Qsb48Q,2010-06-05,b9Mvn1AI5wbjJzVT0nDUBA,4,Great place to go have a beer and watch the game on one of there numerous televisions.,review,vAftB0HEUsCOj2QaiNW5dw,0,0,0 +VZfR-sKWjndsnE2JjKA9iQ,2011-12-11,hxz6pnO30s7LtTU6G682qA,4,"I was quite pleased when I visited Quick N Clean today. I opted for the $6 wash-- though now I can't quite remember what was included in said wash. I felt like it could have been a little bit more thorough in the rinse/dry section, as there was a trail of dirt coming off the back of my car. + +HOWEVER-- be not dissuaded by the dirt on my bumper (as I wiped it off, and the rest of the car looked great) because the vacuums at this place? OH MY GOSH! I have never been to this kind of car wash and experienced such suction. They were also an ideal shape for getting into the tight spaces underneath my seats. + +Word to the wise: when you go to remove the hoses from their little canisters, pull with force. I stood there for a couple of moments as I attempted to gingerly remove it, and thought the hose was stuck. I soon realized that I looked like an idiot, and just gave the vacuum a tug, and it came right out. + +Overall, I definitely say thumbs up. I had been hoping for a little rag to wipe out the interior, but am not sure if the rag was part of one of the other packages, so I will investigate again, and let you know.",review,bkR1tRtCi5ZG4qbdYM-LYg,1,0,0 +XNSito__Fne14TXU0vz1Qw,2009-11-28,U6tUQVO6QdJd508-2UuzOQ,5,I discovered this place by going on one of my usual 20 mile bike rides along the canal until something cool popped up. I sat outside and sipped a nice chamomile tea as the first rain of winter fell unleashing an amazing scent. The staff was top notch and I was delighted to see several tannat wines from Uruguay on the menu. I can't wait to return some evening to share a bottle of wine and tapas with my girlfriend.,review,K4UmjxSpiHZohl2MnkBuKw,3,2,1 +k8JnZBspVOI8kLcQek-Chw,2010-07-16,VHxsz7fgEnIzj_HYxvvPQw,4,"Tiny downgrade for Mamma Mia's. I have been here about a dozen times since my initial review, it's become one of our office lunch spots. They have raised the prices on the sandwiches significantly. The chicken parm sub is now $6.95 instead of $5.50 and I will not be ordering it again. I ordered it today and it was really limp and the breading all fell off the chicken. Very little flavor, too much cheese, had to remove half of it. It used to be so tasty and crispy, what happened. + +Anyway I still think they have the BEST pizza in the valley along with Venezia's. So I will continue to go and get their 2 slice and a drink deal for $3.50.",review,XoEwIVPoUNCM11D60o3lCA,0,1,0 +p7m9uYWxKSFCF-qC7hPxPQ,2008-10-29,l4RAweh6rRy500epQsIS1w,4,"I've been eating at this restaurant for years. When I started going here it was called the Japanese bowl and had different owners. The menu under the new owners is much larger than it used to be and now includes a nice variety of Korean delights. +Every visit is friendly and welcoming and we were always treated as family. I used to go with my family on a regular basis and they always remembered my son and his favorite order. The sushi is some of the best in the valley and they have some varieties that I've never had anywhere else. +The Korean menu is great and they have specialized ""bento"" boxes for lunch as well as full sized dishes for dinner. The portions are good and we never left hungry. +This is one of my regular dining pleasures.",review,MeW7EayKaYi7eYx3MHjfOQ,2,2,1 +dt0z8feRxhQ6JEAWpLfukQ,2012-04-13,JQnDQkvEV7vEeFcYMJQmeA,5,Awesome staff. Great prices. Left feeling relaxed and refreshed. A must try.,review,exgVl2vBujcx5L2BuKKulw,0,1,0 +G7Q0Tm2XBI5rqd5wyUc0jg,2010-11-06,ILcJYl4cPTAJlne985RJ3Q,3,"Pretty ok place, right in the thick of it, I saw 3 separate arrests while drinking beer on the patio. They have a couple different 4 Peaks Brews. Those facts alone made it a successful endeavor. Did I mention it was 4pm on a Friday?",review,6gPLoA14w1Pp_ALoQcJoTA,0,0,0 +l5vzFaqSjvxZiRn0MJeKkg,2009-01-18,cgahLBKuwzpRFvOF_vqw_A,4,"They are helpful there and they are not helpful there, depends on how busy it is. The place can be mobbed by rich teenagers and trendy asians, but if you have a warranty and need help, and you have an appointment then you are fine. I have to admit having an macbook pro and an !phone, I am always drawn in. + +But the skinny crew with their cool black apple shirts can be quite helpful if you really need it. It is hard to resist not going in. The tech people really know their stuff. I do wish another Apple store would open up in the West valley though.",review,78Ed1ndOak2kmzljulPfBg,3,4,3 +uMfcbz3rXRBH6UowDVuK7w,2011-12-21,BPDGleajwec0V-INho0P7w,4,"LollyPOP vintage is pretty sweet! They always have something I like and the service is impeccable. I dont think its too over priced, I mean this Phx not SF or NYC!! of course u will over pay a bit. duh. U should def check it out ;)",review,IA-cJHXFFzzB0x4nieISVA,0,0,0 +_oBxfuBd2qDEWaYsdvP_dg,2012-01-16,2RVueGqGvHFE58C7giOujg,3,"I am a HUGE fan of micro breweries. Gordon Biersch is cool... a little ""chain-like"", but the ambiance is great. I felt like I was under dressed. + +I had the seafood cobb, which was awesome. They use REAL crab here... thank god. + +Hubs had a large burger... he loved it and loved the garlic fries. + +I had the Hefeweizen and hubs had a couple Schwarzbiers. Not bad at all.",review,Yk37VAp452K7FwHWd1rrQw,0,0,0 +7KCLeDNdFDkdoA6MUavxwQ,2011-02-02,6bahziDJPUU-3pK1Tda7dg,2,This place is so so. Ok food. Ok atmosphere. Just a decent restaurant in Buckeye.,review,5c4p-A1sLBlpS1cPaMpdBg,0,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2009-08-18,0u2QHaxC6CfynX_Wv9LR1A,4,"oh man, I gained 5 pounds on Sunday but since it was from Joe's I don't even really care - it was that good. + +I won't go into the local ingredients, Agritopia, etc since others already have but it is a wonderful thing. More below. + +The food was awesome. Very fresh, delicious and wholesome - you actually felt like you were eating food that was also good for you. Granted we just had the burgers and ice cream but there's a whole menu there to explore on future visits. I loved the signature burger with pesto & fontina, neither of which I had ever thought of but worked very well. The onion rings were good, as were the milkshakes and sundae. It really fills you up fast though, so try to pace yourself! + +I was equally enchanted with the setting. Beautiful place. Just like a farm oasis in the midst of suburbia - I hope it doesn't vanish in the midst of the houses all around it. Even the bathroom was noteworthy - clean, black and white with dolls and a closed circuit tv. It reminded me of the Jetsons - you know, the 60s idea of space age. + +Sitting outside wasn't too hot, as it's the one place I've seen so far where the misters really work and don't just spray you and puddle down. The only down side was when I asked where the farm stand was and the cashier pointed it out, but without mentioning it was closed. Nor was there a sign at the actual location indicating when it would be open in the fall. + +Oh, and what was really nice was the sense of everyone relaxing - just kicking back and having a good time. definitely worth going to again, and again ...",review,TI88k_ezEWaj_XZSiuBNGA,1,2,1 +MpohnCC0uQNj7DZWaBFSgQ,2012-05-10,BCreqwc5DtKGc6Y852C0Cw,1,"yuk! service and food sucked never a +gain!",review,7Gk2wmg37vbyP65ME1UfSw,0,1,0 +Vx7-xbazum3dgo3Qj3i4pQ,2010-02-22,HrSYtBhNHXyq-Hqb6Ml5Bg,4,"This is the place my friends and I go for Mexican food. Very tasty, affordable, and fairly quick service.",review,Bmzq_nkjYqp8aWn12RJdhA,0,1,0 +GRFunGSUZxXqNCZJrN8Oow,2011-08-12,QbsAD9VvLqKurbBRx4oK-A,2,"I really like this concept for a quick breakfast/brunch spot, but the execution wasn't too delicious. If you know me well enough, you'll know my first thought when we walked in was ""is there booze???"" The answer is yes. I recall seeing your typical breakfast bevies such as mimosas, bellinis, bloody mary's, etc. + +So you go in, scope out the menu, order at the counter, and they bring you your meal and beverages. I ordered a simple eggs, potatoes, toast and sausage breakfast, and my friend had an omelette. We had just had brunch at Maizie's the day prior and our first impression was disappointment in the portions of the food, considering the prices were also comparable. Oddly, my sausage, potatoes and sunny side eggs had the same consistency, so that was off for me. They were all a bit soft and soggy. We, of course, enjoyed the mimosa and bellini, but $5 each is a bit high considering they're $3 @ at other places, and Cafe Boa down the block offers unlimited mimosas for a fixed fee with food. + +I thought the location was great, and the Sunday brunch crowd was nice. I'm not sure what it will be like when the students come back, but I don't think I would be back to find out.",review,zPiEroQrxxyBrHSUAcymBg,2,2,2 +Ez2MFsVT5lJZ05yvK_0AXQ,2009-07-26,E0ACkDa9jkFodlILiOcYmA,1,"I went today with three friends for dinner around 6 PM Sunday night. Though it seemed quite busy, I was pleased to get a seat within two minutes upon arrival. Outside seating, despite a hot Arizona summer, was pretty nice with shade. However, this is where the pleasanties end. + +Our table remain neglected for approximately twenty minutes. No one bothered to offer us drinks, and it was quite irritating to see tables who arrived after us being served appetizers. When our waiter came, he did not even apologize for the wait, and we gave our orders: drinks, appetizers, and pita sandwiches. + +The hummus and garlic dip came relatively quickly, only twenty minutes later. Both were alright, but something is seriously wrong if all of us were only served one pita with the two dips, and each dip was more than twice the size of the pita. We asked our waiter for extra pita, and he kindly agreed. The entire duration of dinner, it never came. + +Refills were also a pain, as we would ask someone to fetch our waiter, and he wouldn't come until ten minutes later. + +An hour after ordering could not possibly justify only four meager gyro sandwiches. I've been to plenty of other businesses who have made that kind of order and more in just ten minutes during a busy lunch hour. Half the tables outside already left, including tables that arrived after us, and we were the last ones served. The food was of average quality, and I've been to better with cheaper prices. + +Slightly expensive, I can see as justified. But many agree that time is worth much more than money. I had an excessive amount, over an hour and a half, wasted on a decellerating Sunday night. Staff is kind of nice, but I suggest a serious change in priorities so that first time customers like myself aren't immediately turned off. I can say for certain that I'm never coming here again, and I'll find myself at better places much closer to home.",review,tJqUqHnwcSe2BCIPDrC3Fg,0,1,0 +KNIFSqzQADOZWDO_7T-KzA,2012-11-27,o3xGMG9DkEt0_FAYkc8suw,3,"The features in the room seem outdated. The room was a sauna when I got in and could not fix the problem because the thermostat was hard to figure out. I woke up in the middle of the night because it was unbearable and a staff person did come by and was able to make the room a little cooler. + +I like the check-in and check-out kiosks so I don't have to wait on a line for a live person who seemed to be just chatting away with someone.",review,qI0DRRJyKrockWlVk3g7uA,0,0,0 +omVy2vGYfu_Zzh-LffvOkQ,2011-06-08,5sDOpCncmCsKT3qgtud5TA,5,"I just went here for the first time a week ago (visiting my parents who just moved to FH). A++ + +Great location, view of the fountain, outside seating, nice decor inside, really wonderful owner and a big menu of pastries, croissant, sandwiches, Italian sodas, and coffee. + +I had the egg salad sandwich (the croissant and egg salad was SO FRESH!!) with a side of potato salad was probably one of the top 3 potato salads I've ever had! + +I also got an iced mocha which was just the way I like it, on the sweet side. + +I had my 14 month old daughter with me so I also shared the potato salad with her and ordered a yogurt with granola. This was no ordinary McDonalds yogurt parfait - it was so delicious I had to have some too! + +One gripe (that could be easily fixed by the owner) - PLEASE BUY ONE HIGHCHAIR for your guests to use. We would love to come back often (as we go see grandma/grandpa) but I can't take another lunch with her on my lap:)",review,bx3foDJoXw-EXvr0oxpgcg,0,0,0 +BtX9mA5dYDzULGVPC4-I-A,2009-04-29,XIAQyeZtMh4OxaldzWv2Hw,4,"I go frequently because every day, from 2-4pm, 44 oz. strawberry limeades are on ""happy hour"". But more importantly, chunks of more or less real strawberries come up the straw into your mouth. There are also real limes down in your gargantuan tankard of ice crunch and sweet sweet nectar. For a dollar. + +Sometimes I get something big and fried at Sonic and it makes me feel a little gross, but on the whole their food is great if you can handle its intensity of flavor. I should note that I have a very fond memory of eating bacon cheeseburgers (and the aforementioned strawberry limeades) there after a hard day's work, but that could have been the heat and poverty of the Tennessee county in which I was day laboring, or my avid youth, or the sheer novelty of my new southern surroundings. I do stick more to drinks and desserts if I go here though. + +Total Americana - there's a lot of junk to pick through, but you can make your personal choice for something special. I chose limeade.",review,GcjXVxp3jZOHhUNyM2QECA,1,2,1 +UIGFrEcoDsw05I1UOrxdOA,2012-10-22,r6dV4W3qV3WQqO7q5g9ZIg,4,"The pho was good and a generous portion, but compared to most Vietnamese places... way over priced. The owner is very nice and entertaining :) The spring rolls were decent, but smaller than most places for the price. It still beats anything in the west valley.",review,aLTl_OkLo0BFRxdz1n6sYA,0,0,0 +2mcmuAvpNIJuV3gV0v9v2A,2012-02-29,9yNQPdaBl5V4SYLakOVfxA,1,"I hate to give this place 1 star but my recent experiences were horrible. I use to dine at this restaurant often with my family. The more we go, service decreased. Our water cups never get filled. + +The very last time I was there, I found a gnat in my pho. Although I have eaten about 50% of the medicore pho, they asked if I wanted another bowl. I said no; I was there on my lunch break. No time to wait for another bowl. I got up to pay for my bill and to my surprise, there was no discount or any sort of accommodation. + +I am disappointed with them and will not be back.",review,xmBiUJAeeikwwXmOrNnw_Q,1,3,1 +Wg_mT_9_tLbsLfzTtnOBqA,2011-04-09,bPtUhk1AypDC50-a8QfHHw,5,"We have been eating here for years. I am as picky of a new yorker as they get (with food). I will say we do not eat there Monday or Tuesday's, The cook must be different, its not as good on those days. The rest of the week is 5 stars all the way.Great sesame chicken,fried rice, lo mien etc. Highly suggest.",review,stC4ENxqdzYPBo7-vGPAXQ,0,0,0 +-O7H5LhBkE13VQZB0QZI0Q,2010-08-22,xiD5DjG8ezUXJxEYR13QxA,5,"There are a lot of places to visit on Mill Avenue . . . however, there is no place like Fat Tuesday! When we visit Tempe, we always make it a point to stop at ""Fats"". We have always visited before the night time crowd comes. When we walk in the door, the bartenders remember us, suggest yummy drinks, ask about us . . . treat us like we are special. We have struck up many conversations with other patrons who enjoy going to Fat Tuesdays as much as we do. During the day it''s a great place to just get out of the heat, cool off with their daquiris and eat a delicious Po Boy. Jason is our favorite bartender . . . and we have lots of laughs with him! I am counting the days until weI will be back in AZ to go to Fat Tuesday!",review,uOIJB_nrqhy-u27KfmBhVw,0,0,0 +AKafsnCBWsk8sfG3dE-R5Q,2012-08-07,X12rVBNB4vw_NeNOTG5IjA,3,"Reminds me of the 24 hour on Camelback - similar layout. + +I've noticed all 24 hour employees remind me of jocks.... well at least in Arizona. + +Anywho, I think they need fans in the cycle room - no wonder it's so warm in there. + +Like all the 24 hours I've been in Arizona, it's just so warm. At least this one doesn't have a chloride or funky smell in the beginning. + +Employees are receptive when you have questions/inquiries.",review,qrX3s0BfiHQTH_gmnyysjw,0,0,0 +mjoxSQR7bFQtlIIjfNfaSQ,2012-04-08,LGxuzeH9UFed4umJ5WppsA,4,"Best place around for sweet and sour chicken! The kids meals rock as they come with fried rice, a choice of meat and beef skewers. Did I mention their only 5-6 bucks? Little outdoor seating patio. The only thing we've found on the menu none of my family likes it the egg rolls. Good prices and food.",review,OuaAwZIX__xEm4u8qrITVQ,0,1,0 +qFLjQyq7HVAY7LN5Srwy_w,2007-07-20,SS1eQ1ApdH7AtOgEyq3bPw,5,"When I was a dancer I always came here for everything. Shoes, leotards, skirts, and accessories. They have every type of dance shoe and a wide variety of everything dancers need and want. + +I'm not sure how many dance shops are in the area, but all of my instructors always recommended this place which is not very close to our studio. The staff is all very kind and knowledgeable which trust me is a very good thing. Dance shoes can get confusing! There are at least three different kind of tap shoes! + +Dee's also has costume rentals so if you ever need a crazy costume at the last minute Dee's can help you out with that too!",review,PS0lCxjGNeUrKxYSdpW-Aw,2,3,1 +lktu5JPDlQUG-7cV7gOzDQ,2011-03-16,sys7nBAGhKWELqdkJuwIAg,5,"Thank you Yelp... I only wish i had six Stars... Ok officially for anyone reading this pretend there are Six Freaking Stars... This place is THAT good! + +I thank Yelp because the only way I found this place was searching for 'third wave coffee' (those who know what I mean by this will just know... everyone else will just have to experience and forever after never drink Starbucks again) while I was traveling in Tempe. + +I don't 'like' coffee, I LOVE it (insert Antono Ego voice from Ratatouillie movie here)... I literally have a coffee shrine in my house where I run a vintage Rancilio Z11 and pride myself on my espresso skills. Simply put, I will never pull a shot like i had here. Off the chart awesome! + +So that's the first 5 Stars...the Sixth star?? I just can't believe they have GOOD pastry too! I understand they produce in-house and if that's true then it's completely astounding. Easily the best croissant I've had outside of Paris. Run, don't walk to the Coffee Lab; it is worth the flight to Tempe.",review,GevDiV1jhZL0Ga-SWyFw9Q,0,1,0 +HAuSPJgHNNRThgfXM103jQ,2010-08-05,E0UjSpbgEig1dmUPiVSKJg,5,"If you own a car that is older and you want it to look and smell new - this is the place. Our 3 year old truck looks brand spanking new after these guys got done with it. We also had them tint it and it turned out amazing ... again ... I say again because this is the second vehicle I have taken to them. That is the main reason I went back - I could not believe how good both my vehicles turned out. I had the window tint on the other one for about 3 years before I sold it and still to the day I sold it ... the tint was perfect. They use only the top quality film, and do quality work. I will keep going back and sing their praises all day long! If you are looking for a detail job, or window tint, this is the ONLY place you should be looking! Check out some pictures I took of my vehicles after they got done..",review,UPtysDF6cUDUxq2KY-6Dcg,1,2,0 +SDwYQ6eSu1htn8vHWv128g,2008-05-06,zf6iJ11MfCeQ264u5AGk4g,4,"Postinos is great on so many levels! They offer $5 glasses of wine from 11am to 4pm daily, AMAZING! Their bruschetta is delicious and huge, you get a choice of three toppings. My personal favorite is the pistachio ricotta cheese, SO Good! The open space the restaurant is in also makes for great people watching. When your dining at Postinos with friends or a loved one, life doesn't get much better than this!",review,9tVLD8PjH7Wwn_EAmCHzWA,1,1,1 +EohIGivB0O1C7fSyQfNrqA,2010-08-28,Ppe0rgv6bbt2S6lIapHpuQ,2,"My wife and I were looking for a dinette table. We looked at many places and ended up at the RoomStore. We found a great table and decided to purchase the item. + +The salesman was nice and didn't provide too much pressure. + +There is a LARGE selection of items-couches, tables, chairs, dressers etc. + +My problem was that we bought the table and had a deferred pickup due to moving into a new home several weeks down the road. I placed a small down payment to reserve my item. After several weeks, I contacted the RoomStore to pick up my item since I just moved into my new home. My item was not in stock and was told to call back later in the week. I called 4 days later and was informed the item was now available. + +Today, I went to pay the balance of my purchase and take home the table. Small problem, the table and chairs are not at this location. I was given the choice to pick up the item at the distribution center 30 minutes away or wait until until Tuesday. I wish that during my several contacts during this process that someone would have told me that I wouldn't be able to pick up my item here or wait several other days. I was not happy! Now I have to go back once again to pick up the table and chairs.",review,9qCPmT6ovJjxL4tJB4ANCg,0,2,0 +xs1LHeJy78u-7taSEnQ2Yw,2011-12-14,HdcNTfNGoZ0bpDzc0lUAVQ,3,"Moira isn't the best sushi I've ever had, but for Phoenix and my neighborhood and the pricepoint (as long as we don't order alcoholic beverages) is doable when we get a sushi craving. + +The happy hour is a great benefit if you can get away from work before it ends. + +Their spicy rolls are definitely spicy, and have some great kick to them. +It hits the spot without breaking the bank and we'll take it.",review,e_raEH6Y6fdS20UWGpZ5Nw,0,0,0 +nH4CEJwrRXPxhfdL2pz3MA,2012-11-16,-xJtULjwbeer8EEMpwIHSw,2,I have ordered here before (General's chicken) and beef and broccoli but tonight we had the worst lo mein and coconut shrimp we ever had. The lo mein was so bland and the coconut shrimp breading was so thick and untasty. I cannot even identify what type of breading they used. it actually ruined the sauce - i would have rather ate the sauce alone with a spoon. We didn't even save the leftovers. I won't not order from her again but will make note of these two items. DO NOT ORDER them.,review,6aS7CrJBq4de_fUDoZd-kg,0,0,0 +5xnyQS26YJfD6az9Cwf8sw,2012-02-05,PIGkFtue69AiS_Kj9NlPeg,4,"I like this store. It is not perfect, it is not a real farmer's market, but they have many things which other stores do not carry. + +First of all, their fresh sausages made from scratch daily are to die for. Even if you don't like the store overall, just go there, buy a few different sausages and grill them with 100% natural wood charcoal. (Please, do not use lighter fluid! Take a piece of bounty, soak it in some cheap olive oil and you will ignite anything) +If you see 15 different kinds of sausage and don't know which one you may like, ask for their sausage menu; there is a description and list of all ingredients. + +Then lets go to their meat department. Grass fed meet. It is not something you will see at any regular store. Is it good? It is worth extra? I'm a skeptic, but I found it to be way better than a regular meat. Grass fed ground beef was so good! We made burgers and I could definitely taste the difference. +Grass fed filet mignon was also very nice. It was not better than USDA prime filet mignon from Costco, but it was way better than regular corn fed filet mignon. I wish farmers would go back to the old times, when they were not controlled by 5 corporations and nobody was forcing cows to eat corn, but I digress... + +Need real organic eggs and willing to pay $5 per dozen? No problem, they are here. Frankly, I could not tell that these organic eggs were way better than regular eggs for half the price, but maybe people who bake can tell the difference... + +Also, if you're looking for that particular brand of sour cream, butter, kefir (lowfat yogurt), most likely, you will find it there - they carry many different brands and it seems they do not favor one over another. + +Try organic bananas and tell me they taste the same as regular ones. They do not, they are way better, they have flavor and they are sweet. They almost taste like bananas you would get on Caribbean islands. The one they sell to you the same day they take it off the tree... when it was already yellow and ripe Try peaches and apricots from Chile. They taste like peaches and apricots. Yes, some will have marks, dents and will not look perfect, you have to select, but I rather spend 3 extra minutes picking good ones than get tasteless, but all perfectly looking fruits. + +Now, bad. Of course, they do not always have best fruits and vegetables and a lot of them have a tag ""Mexico"". It is unfortunate that ""grown in Mexico"" is associated with poor produce nowadays. Mexico has a great climate and they can definitely grow tasty, pesticide free fruits and vegetables. Unfortunately, the market drives demand in a capitalist economy. Many people still look for huge and cheap. Companies provide huge and cheap. Some people are poor, they don't have money to buy quality produce and overpay for organic. It is sad, but unless we stop buying crappy produce, organic will be super expensive for a while (no competition). + +These huge see through plastic bins filled with different nuts seems like a great idea at first, but way too unsanitary. People open these bins with their dirty hands, dip into them, cough and sneeze next to them and that's where you get your nuts from? No way! At least, not for me. + +Fish section looks sad, which seems to be a trend in every AZ supermarket. You can find better fish in our area at Costo (huge amounts, good for big families), sometimes AJs (not always though), Mekong plaza supermarket or Lee Lee Oriental Supermarket. That's it. if you know any other places where I can get fish which does not smell fishy, please let me know. + +A lot of their organic produce, including potato is wrapped with a sticky label which says organic on every item. Ughh... it was so annoying to remove wrap around labels from every potato that at the end I didn't not care for the taste - I just wanted to finish peeling them. I guess, the store has to identify organic food somehow, but these extremely sticky labels are not a good idea. Think of something else, Sprout. + +So, this Sprout store is not perfect, but I will continue visiting it every week and look forward to some improvements in the future.",review,OfVHKs2Z3vThGnmJYHVpcg,0,2,0 +yGmdo1ENajB98iryHGoWFw,2012-04-25,agRSQmF_Pwl79nEzL7_9_w,5,"I'm a complete dive bar junkie. Whether I'm in a big city, or small town I always seek out the local spots. I was in Tempe with work and we happened to drive into town right at last call so we searched for the closest bar which just happened to be Monkey Pants. After we got over laughing at the name and the paint job on their truck...we went in and were greeted by the waitress right away. It wasn't too busy especially for a Friday night but the place is huge! The bartender was very attentive and adorable. + + I really wish I could've made another stop at this bar before I went back home..I saw a bunch of posters for all these theme nights and great deals. Reading previous reviews it sounds like they have parties going on like this all the time. Great bar!",review,DBSzlm2QE0nYR4FQpdhAtQ,0,1,0 +bA-Cj6N9TEMlDlOh2aAnUw,2006-07-10,Wpa5kCtSOa7dVoM3gTfOVw,2,"Lost baggage and poor child wrangling. It's all about employee empowerment. + +I have the patience of the Madonna - all right maybe more like the Material Girl - but I am pretty laid back. After my humbling experience in the wine industry, I've been much more appreciative of service industry related jobs. But when employees are not empowered to answer the most simple of questions, and we're checking in on machines with nobody around to handle luggage, well...it's a disaster waiting to happen. It's an unfortunate thing that is supposed to help in keeping costs down and help with efficiency - but there's been consistent problems with all of my US AIRWAYS flights. + +Let's throw JFK airport into the mix to help maximize the disaster...we ended up in Orlando. Waiting for our luggage. Luckily our toddler was entertained with the luggage roundabout...because we waited through two flight arrivals to retrieve one bag. + +Family that met up with us for the 4th assured us US AIRWAYS used a really efficient delivery service...Apparently the lost luggage situation is pretty common. + +Good thing the baby bug is a trooper when it comes to traveling - because Orlando trips tend to be family-heavy and the on-board US AIRWAYS staff consistently doesn't seem too thrilled to be dealing with even the well-behaved ones.",review,8DqIWXsKXOipfduYEfFpNw,0,1,0 +vtQOervVVTXjhvSZQiZ6PA,2012-01-09,vE0o3wTf_u2NBc63Io3NFA,2,"Being new to the Phoenix area we were looking forward to finding a Thai restaurant, since we eat Thai fairly often. Going off of the Yelp reviews, we decided to try Swaddee. We ordered the Tom Ka soup with tofu instead of chicken, and the Pad See-ew with soft tofu, and the veggie rolls (to go). The veggie rolls were tasty and larger than we're used to, which was a nice surprise. The Tom Ka soup was a little more sour than we're used to, but overall still tasty. However, it was almost $11 which we felt was about double what it should have cost. The Pad See-ew was the most disappointing part of the meal. The flavor was fine, nothing special but not bad. However, it was pretty dry and sticky, like you'd expect from a cheap college Thai take-out joint. + +Overall nothing really stood out. We had high hopes since the meals were on the pricey end for take-out, but we've had far better Thai for half the price. We'll keep looking for a better Thai place to become our local go-to!",review,1xvQJ9N8Or8m6Dl74txFNQ,0,0,0 +fjHUnUP1Lt-YAbeWUx2LrQ,2010-03-31,bCbjYGW4smbVGgCxF8VCZw,3,"Sucker Punch Sally's is a nice place to grab breakfast on Mill. The prices are alright and their hashbrowns are made the way I likes 'em. Usually people serve up this mash of whatever-the-fuck but here, they grate the potatoes and serve them crispy. The way I likes 'em. + +I'm sort of burnt out on places with a 50's motif, but whatever. I like the colors. It's kind of cozy. + +One thing that bothers me: The name ""Sucker Punch Sally's"" sounds like something disgusting you'd head about in high school. You never heard of a sucker punch sally? It's when a girl.... + +Nah, but as a whole, it's a cool alternative to have in Tempe. Read my review on Harlow's. I like Harlow's, but I always get diarrhea. IHOP is full of olds and I don't particularly enjoy pancakes. They hit the bottom of my gut with the gravitational force of Jupiter. Now we've got Sucker Punch and it's pretty chill.",review,mym5tXZoZCbuPCYQzI5Ysg,3,1,5 +rZbHg4ACfN3iShdsT47WKQ,2012-10-23,K5OlX0wlxujb-GPOMiz4TQ,5,The perfect burger. Awesome BBQ! NEVER a bad meal!,review,Vibtr-_DiDbwZqaxKK8SYw,0,0,0 +l3yL2rQ6PoFBQ06RLczn9w,2010-08-08,nallZ2KPMBbdZ2_nvTB8Ig,4,"Despite all the recent bad reviews of this place, I actually liked it. The heat inside isn't THAT bad, people. Yes, it's warmer than the 75 degrees you keep in your house, but it's not the 110 outside. + +I went the other night to see A House Divided (which you would like if you like Chevelle and Breaking Benjamin) and it was ROCKIN'. Sound was pretty good. I like how it's small enough for the band members to see who is standing in the back and terrorize them. + +Ladies... one stall in the bathroom. Be forewarned that there is going to be some drunk chick that will probably go and make a mess in there. Just plan on not using it as the evening progresses. + +All in all... it's a pretty good experience. I like that those who aren't drinking get to be up front.",review,Yk37VAp452K7FwHWd1rrQw,2,1,1 +l0S5b8YYyDbjttTWtKc-gg,2012-06-20,ZpkGGIcD1zX5Pc4p4c93fA,5,"Why'd the chicken cross the road? +To get to Food Truck Fridays in Downtown Phoenix! + +I know that all you business Yelpers go out for lunch on Friday's, it's basically a rule if you sit in an office, a cubicle, or behind a desk somewhere from Monday through Friday; don't believe me, check the company hand book you were given on your first day of work. Somewhere between how to comb your hair, what you shouldn't wear, and please don't come in smelling like Nair, you'll find it. While Yelping about your Friday lunch is purely optional, I certainly hope you do ;-) + +During your weekly 1 hour exodus into the space beyond the cubicles and plaster walls, ending up in the open air of Food Truck Friday will kick off your weekend right. It's not just for Burger King people, it's time to get it your way! + +Pick your favorite food from, Gourmet Hot dogs with Short Leash, or Mexican with Luncha Libre, Smoothies and Salads with Mojo Bowl, to Pies with Mama Toledos, and Creme Brulee with Torched Goodness. Bring your friends and your favorite gal; they can choose their own favorite too. Don't worry about bringing cash, everyone here will swipe your plastic just as easy. + +This is your lunch hour, kick back and forget about work while you're here, if only for 45 minutes. Listen to the DJ's spinning popular music through their thumping sound system while you dine on your fine food. Chill out in the seating area which is cordoned off with misters, fans, and swamp coolers; bringing down the temp from a roasting 108 to a palatable upper 90's. + +This is your Downtown business Yelpers, it's time to kick off those business casuals, and make Friday lunch your own!",review,cRyNICH0mhjxagvSyVr60Q,27,31,24 +iAHNZo6GF4C3N-z8u2C_ww,2009-07-17,uGLJc7uFKY6J1-YSf6nzhg,4,"I forgot they built a bunch of FF places along Deer Valley Rd over the last several years, until my bro Daren C reminded me (shout out). + +I've been making the rounds to various area Arby's using the shit out of the free BBQ Bacon Cheddar Roastburger (arbys.com/coupon and today's the last day!) + +I thought I'd try out another store to avoid wearing out my welcome on Bell Rd., and I'm glad I did. + +This is a clean, efficient operation. The building's pretty new, with a large dining area full of a variety of walled areas and nooks and crannies, giving many of the tables a private feel. +There's even a big atrium window, and a real, live 15' or so ficus tree growing indoors out of the floor in the dining area. Great atmosphere for this kind of place. + +The service was quick and friendly. I could tell that the young guy at the counter thought the manager barking orders was being a dick, but he took it in stride, smiling and saying ""yes, sir"" the whole time. ""richard"" the manager was only doing what it takes to keep a FF store running smoothly, though, and young guy will someday get a job selling cars or something, and look back thankfully on all 'richard' taught him about upselling and add-ons, smiling and being friendly. + +Bad on Arby's for getting rid of regular french fries, though, as they now only have curly or potato cakes (which are great, but i always appreciate variety). +btw BBQ Bacon Cheddar Roastburger kicks butt.",review,n_lAaNGeWgspbbCJc0DqRg,6,7,6 +SqKL7RsABTLLkBPoU3BMXg,2011-06-01,N4ChllevWug1QHyCyKmT9g,5,"This place rocks!! We bought 750 sq ft of tile a few months ago to install on our own and we had no idea what we were doing. They helped us every step of the way. We made several visits over the course of about 3 months and everyone we talked to was helpful and knowledgable. I will absolutely go back when we re-do the floors in the rest of the house. + +And the prices are the best. I am a bargain shopper and will research prices for months before making a large purchase and that is exactly what I did when we embarked on this project. I researched prices all over... online, in stores, with contractors, etc and Floor and Decor by far had the best prices. The entire floor cost less than $1500 in tile, materials, and tools. It looks beautiful and I couldn't be happier!",review,-L0bSNfErGer1UCEa6D4PA,0,1,0 +b3mfNkad2uxdlKLrS3hDCg,2010-03-16,SUaebQPM_V7bBncIGW69TA,3,"Enjoy coming here with a group, cooking our own grub and playing in the sand. Evenings in April and May are great, as are September and October. Winters are a bit chilly after sunset, and the summer... well I don't need to explain that one. + +No great deals on food or drinks. Service is hit or miss but I come for the company and don't really mind. Order a few pitchers and your grub to cook, then pretend you're at home having a BBQ. No service required!",review,OksbhhgC71Ary3zNHMypeQ,0,0,0 +JokKtdXU7zXHcr20Lrk29A,2012-06-27,EEkSkclu53Rn3B2M2faiYA,5,"How have I NOT reviewed Four Peaks yet?! + +Awesome. Even when its wall to wall packed. Even after waiting in a 2 hour line for the special St. Paddy's day breakfast and festivities. The beers are great. the food is oh so good. you really cant go wrong w/ anything that includes their beer bread. And their breakfast! If you can brave the crowd that comes out for it, seriously do it. One of the best breakfasts in town. Ive had almost every item on their brunch menu, and I cant think of one that disappointed. + +GO.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +l1kqHWtICTNk8TdCNisf5A,2011-07-27,W_qMZdQxDLlIuYesPA6rJQ,5,"i moved to the tempe area about 2 weeks ago from socal, the mecca for asian restaurants. since moving out here, my only taste for asian food has been panda express. well, i was craving teriyaki last night but had no idea where to go so i did a search here. tokyo house got a bunch of great reviews and everyone mentioned a cool old man behind the counter so i just had to check this place out. + +as soon as i walked in the door, i was greeted by the old man...from across the joint, behind the counter, mind you. he was SUPER nice and SUPER funny! + +checked out the menu and the selection was a bit overwhelming! they have every teriyaki dish available, and bunch of fried rice and noodle choices, and for those that like rabbit food, vegetable dishes. i was a bit surprised though to not see gyoza or pot stickers on the menu...was bummed out about that. + +i had a hard time deciding what to get but remembered Sarah W.'s review of the house chicken, so i went with that. i went with a large order and let me tell you; if you're hungry, you definitely will be stuffed after a large order. the dish was very tasty and delicious and was definitely overflowing with mushroom. i love mushroom! the house chicken is supposed to be spicy and although it had a little kick, it wasn't the ""spicy"" i was used to from asian joints in socal. i wish it had a bit more rice, though. either way, the dish was great! i would definitely order it again! + +i highly recommend this joint. you will be treated well by the cool old man behind the counter, the place is clean, the servings are generous and the price is cheap!",review,nYJ07jJ45QxsxfvHObwj-g,0,1,0 +vlxMPuG6LYJ-c0yjd6AW3A,2012-11-14,djkwE8xPaBxz-sR4fM2huA,4,"Fun neighborhood bar, with a new backroom filled with fun games such as skeeball!",review,RCjuKSuPezW6qI3ZKgkncA,0,1,0 +sjCRI-lCh4KLO_RYQdlEeQ,2011-05-20,GjZHS9EpHLyhiVcZN41wTw,2,"A huge disappointment. I had been looking forward to getting to Iruna and experiencing what I thought would be an experience to all the good food, service and times once had at Sol Y Sombra. Joke was on me and my friends! + +I would give the service 1 star, but because a few of the dishes were very tasteful, I am giving two stars. The waiter was nice, but did not belong in the service industry. He called us ""dudes"" (I wasn't on the beach and he wasn't wearing swim trunks, no need for ""dude""), he kneeled on the table bench directly behind us, basically breathing down my neck when he talked (gross), never asked us how the food was, even when we didn't touch more than 2 pieces of the calamari (that was saturated in oil and desperately needed a few squeezes of lemon). He took dishes away that we were not finished with. + +The food was good - some dishes were great and some were not good at all. The romesco sauce served with the croquettas was delicious! I could have eaten just a side of the sauce alone. It has just enough spice and the flavors were spot on. The trout was another delicious dish. The fish was cooked to perfection and everything on the plate hit the palette in all the right places. + +The calamari was awful. It was over fried, and instead of serving with a lemon wedge, was served with a citrus aioli - the concept would have been great if worked with the dish. Even after taking the lemon from my water and squeezing on the dish, it was not appetizing. + +If you check them out online and want to go try them for happy hour - sit at the bar (maybe on the patio, I didn't ask) but we were seated in the actual dining area and then told the HH menu was only available at the bar. No biggie, but not the best way to attract repeat customers. + +The space itself is very nicely decorated, it was comfortable and had a lot of details that worked well with the rest of the decor. + +Overall, I think they did a great job with the space, if they tweaked just some small things with some of the food items, they could make them much better and as for service - contrary to popular belief, just because you're in Scottsdale, doesn't mean your staff should be wearing Ed Hardy t shirts and calling customers ""dude"".",review,8MgMRPw-e1M31uNdkdVlVg,0,3,1 +aBjgE5pLhtz4RGGR-IWpGA,2012-08-14,PopF8NPDXqNRhnFFjOHlcw,5,"As many other people have said in other reviews, Betito's is similar to Filibertos. However, I thought Betitos tasted a little better. The food was less greasy than Filibertos. My family had Carne asada burrito, carnitas burrito, a chicken chimichanga, and the super nachos. They all tasted excellent. My favorite was the carnitas burrito. Now, Betitos offers one dollar tacos on Mondays, Tuesdays, and Wednesdays. I haven't tried their tacos yet, but I intend to try them in the future.",review,X4UIrsuAdUF7ZN0fSdllmQ,0,0,0 +QkyN2vqQidQhotvOtPIrkw,2012-05-15,SWHRqWs_qjKAbcPou7mJzQ,5,I eat here often and the lunch special is great!! Food and service are equally good. Fries are to die for.,review,qgI2cU2DaNHzv_qwwDoqyQ,0,1,0 +8Hn5X1AqgmSLHRG2KgBJBg,2007-04-01,-Qb3KcMONh4L5OF-R8y_zg,3,"3 and a half stars. + +I finally had my first ever Valley Oregano's experience tonight. You'd think I'd have gone to the one on Camelback ages ago, because, well, I live minutes away from it, but no, it was the Tempe location which sucked me in. + +Ok, not necessarily sucked me in. I drove my ass all the way out there to meet some friends for dinner, but still. + +Wait was an hour which kind of bit. We were tempted to just go to Thai Basil instead but as I never had Oregano's we persisted and stayed put. Once seated, we ordered things that I won't be eating anything close to resembling for the rest of the week: the spinach salad (ok, maybe I'd eat that), the cheesy bread, a large thin crust pesto pizza, and the pizokie for dessert. I'm a huge deep dish fan (I know, I know, thin crust is how real Italian pizza is) so I'm going to reserve major potential star wattage for when I actually have one of those. + +I thought the pesto thin crust was pretty decent - didn't blow me out of the water but it was good. The salad was flavorful and the cheesy bread was decent, but the pizokie dessert thing was awesome. Maybe it's because I I haven't had one of these since BJ's back in college (which is a longtime ago), but it was pretty damn delicious. Scene was pretty much college-y, loud, and full of ""like, I was all""s, but duh, what else is it going to be. + +All in all, almost all stuff not good for me but whatever. Now that I've finally had my Oregano's experience I can go on with my life. Nothing like a local pizza chain holding you back.",review,htC49ZwXiKNka5cp0GKBfQ,3,1,4 +Q1A_wVZypQeM1A3f61wq_A,2008-06-30,0Q71H5Y9j0-GW5_7elXiSA,3,"Went there tonight before the game. The best thing about the whole bar is their t-shirts. (I really wanted the t-shirt that read ""You look like I could use a drink"") + +Anyway....I had the nachos...bad choice....smothered in cheese sauce and melted cheese, beans, cheese, peppers, cheese, tomatoes, and oh yeah...cheese. It was a soggy mess. (And it was huge...the nice server should have been thoughtful enough to warn me that it could feed a table of 6)... my friend had the pulled pork sandwich and the probably the best onion rings that I ever had. (Yes I stole a few) + +I have to give it minus another star for the HORRIBLE music that they play...seriously...if I am going to see a game, I don't think house and dance music is the way to go. But too each his own. + +But I did had to cut the time short during the game because I started to get sick....hmmmm...soggy nachos perhaps?",review,ca2Sa9Enqg2GlWFQ95p8bw,0,1,3 +tqDwpyCB53TiEIv915Tuww,2011-06-02,xQriz45S8g1jDOGFSaX6rQ,5,"great pho , boba :) and vermicelli .. awesome !",review,WPIaXxFxKbzQR0nF8qLGKQ,1,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2011-10-09,8TaLigpTc68nv5fmrWI_7Q,5,Their Alfredo the Dark is probably the best pasta dish in Phx. And then there's the Pazookie...,review,zMLcLRQVs5Ms4YyE1IbKcw,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2010-04-17,LlFBX3JltdgEkLnY6rFiOw,5,"Hiking Camelback Mountain has to have been the most difficult 1 1/2 mile hike (Just up, 3 miles total) that I have ever been on. While it is not a very far distance the increase in elevation is over 1000 feet in that short mile and a half. + +The first thing that I recommend is either getting to Echo Park at bright and early (between 4:30-5:30 am) or, if you come later as I did just parking in the overflow parking. You can find a simple map to the overflow parking at: + +http://phoenix.org/wp-content/uploads/2010/04/Camelback-Mountain-Trailhead-Overflow-Parking.png + +The walk to the Echo Canyon trail head to the overflow parking is only about 20-25 minutes and it is almost guaranteed to be faster than driving around looking for a parking spot somewhere else. + +The trail itself takes about 20 minutes to actually get difficult but when it does decide to start getting hard it does not let up for a moment. There are chain link fences at a couple of places in the hike to stop people from accidentally tumbling over very steep ledges and even handrails at times for more support up the trickiest sections of the hike. + +The good and bad of this hike is how crowded it is. There will rarely be a moment where you wont see someone coming or going for more that 50 yards at a time. This means that while there is little to no quiet and privacy, that if something were to happen to you there would be plenty of witnesses. + +The rest at the top is wonderful. The view is by far the best in the valley and something that I recommend to everyone. Take 20 minutes or so to eat a snack, drink some water, take a breather and take some breathtaking pictures from the summit. The summit is usually pretty crowded so you won't want to stay too long. + +Be careful on the way back. It can be very tricky navigating some of the areas and twisted ankles and even broken legs are not terribly uncommon. Again, take you time and take plenty of breaks when you need them and you should be OK. + +Don't forget to take plenty of water, I recommend at least a liter per person if you go in the morning and more that that if you do in when it is warmer outside.",review,wtz3H1UWW4V5nuZfRWDsSA,2,2,0 +tZXPhvufHhfejGrRp554Lg,2009-03-03,RlGnOwIBjiH9-QeTER5xuA,4,"Scratch is an adorable little pastry shop on the corner of Miller and Indian School. From what I gather, the owner is almost always in the shop behind the scenes creating the incredible dishes and pasteries I have come to love. I have been to Scratch about four times now and have never had a bad experience. The place itself is rather small, tucked away in a shopping center right next to a Subway, the home of the $5 footlong. The decor is fresh and inviting from the pink/grey walls to the framed magazine covers stylishly displayed along the walls (the owner's wife is the model in many of them). + +But, enough about the building and decor. The food is by far the highlight of the experience (as it should be). I would recommend any of their sandwiches as the bread appears to be freshly baked daily with encrusted herbs. Each dish comes with a side salad with the most amazing tangy rich dressing (I think I will have to purchase a bottle of the dressing next time I'm there). I recently tried the asparagus soup which was deliciously creamy and rich. The quiche I would also highly recommend. I've ordered the lorraine as my entree on one occasion but have also sampled the spinach and goat cheese which was equally incredible. (each menu item is really reasonable, I think $7.50 for soup/salad, and $8.00-$9.00 for most sandwich/salad and quiche combos). + +Please, no matter what you do, even if you are so very full after eating a scrumptious lunch or dinner here, you MUST try one of their pasteries (even if taken to go). I would highly recommend either the milk or dark chocolate tarte. The fruit tarts also look amazing but I have had the hardest time trying anything but these amazing chocolate tarts. They are well worth the $5.00.",review,E83jZ7j07Hx-RcRiTbA_kg,0,1,0 +jdtc9AARnZLOi38Qvkdm7Q,2010-02-08,1cqdoam9JEVnVtMvvXp7zQ,2,"I was stuck between wanting to give a two star & three star. The concept of this place is a great idea. I have to say that if you happen to go on a day that there's a large party going on, it kinda like you're an unwanted fly on the wall. This play town is located in a large older shopping center that blends in with the other faded store fronts. Inside, the owners seemed to be very nice, although stressed due to hosting a party there. I was very bummed that the jump house was removed. That was 65% of the reason to go. All in all it had it's little themed houses to play in, but the whole place seemed to need a good fresh painting as well as cleaning. $8 admission.",review,5a1aiH93zMDh6xkcDI4ueQ,0,3,0 +ywea9tHgyxdEymLls7wKPQ,2012-03-06,dmlMZcSbu3jkhCEr_xyQjQ,5,"When my youngest son graduated I took him to Buzz Boys when they were in the Food City complex. He is now 25 and still goes. I gave a family friend a gift certificate for Fathers day. He still goes and so does his 30 yr old son. My oldest son is out of the Army and he started going. These men compare this to a spa for men. Hot towels, straight razor shave, etc. Hey I should get commission lol:)",review,O1WXqDzwcwD-0C3CxnO5Tg,3,1,1 +8qrICL2tS2Rq7b5gxUdQwQ,2008-02-25,m3qgnXHTVSeSPGARAbKjCA,1,"The worst Thai food I've ever had! This place was recommended to us by another couple, and wow was I disappointed! + +Everything was completely blase and tasteless, the only exception being the extreme spiciness of my fiance's entree(probably to make up for the lack of other spices)... + +don't bother with this place.",review,xdhu_CZVomaGPD2qB0IQXw,3,3,0 +AsSCv0q_BWqIe3mX2JqsOQ,2011-02-27,iJkUrKoIFLqm2olMc0Hugw,4,"Strolling down Mill street, the bf and I were enticed with free samples of cookiez. The choco-chip cookie sample got me. It was soft and chewy and enough to get me to walk into the quaint store. There's a good amount of ice cream choices as well as cookie choices. You have the option of ordering a cookie, ice cream, or even better an ice cream sandwich. I think they also offered shakes as well. + +We chose white chocolate chip with almond cookiez surrounding mint ice cream. You'll see that these folks are generous with the portions when you get your nice round scoops of ice cream smushed between the cookiez. I really like that the cookie stays soft and chewy even when it is pressed up against the frozen ice cream. I feel like other flawed ice cream sandwiches have cookies that become either hard and frozen or crumbly. + +Mention you are a student and you'll get a discount! This is definitely the dessert you want to accompany your late night date on Mill St.",review,Ke9WsSOUOdQaTRwaYibYpQ,0,2,0 +9ziO3NpoNTKHvIKCBFB_fQ,2011-01-16,ShZAdGt4xoAt8Uawjv4Phg,1,"Went there for a quick bite before the theater. Had the buffalo sloppy joes, and they were disgusting--dry buns, thin sliced pickle. Then had the duck spring rolls--also bad. Then in an effort to eat something we could tolerate, ordered the lettuce cups with shrimp, and they were just adquate. Very disappointing!",review,shFcopLDSV_vDT_22WL1Bg,0,0,0 +fowXs9zAM0TQhSfSkPeVuw,2012-04-16,jd8E5M_ftYcNX_UCVlnolA,5,I have been here many times and have always had good food and service.,review,xdThxKK4ERO54RbVFgWrWg,0,0,0 +M6fjHpkL9IRI-nI0BattRw,2013-01-03,j7GSeG7W4Dl-sdzJbjBUXA,4,"I was here not too long ago. The place is cute and when you look at the menu, you can't help but be get excited to go there the first time. But its one of those places that after trying it the first time, you never have the same excitement to eat there and when debating where to have dinner on a given night in the area, Main Ingredient always comes up as your third choice in case the your first two preferences are either closed or packed. + +Meal: We both had sandwiches and a side of the mac and cheese. I can't remember what local beers we had, but they were excellent. They have a terrific beer selection. + +Taste: There were many, many delicious choices on the menu and sadly, the food is not as appealing as billed on the menu. Its still good, but it doesn't live up to the hype. 7 out of 10. + +Value: I thought the prices and potions were very and reasonable, but the real value is in their happy hour specials. 4 out of 5. + +Service/Cleanliness: Our server was very attentive, silly and friendly. Her recommendation for craft beer was dead on. 9 out of 10. + +Atmosphere: I hate to repeat what others have said, but the atmosphere is a perfect place to chill out at. I recommend this a top place for ""Friday Afternoon Drinking Club"". 5 out of 5. + +Overall: If you are in the area, you should give it a shot. I think the next time I visit, it will be just for a few drinks and an appetizer. 25 out of 30 points, 4 out of 5 stars.",review,HFe4NZuq-6kOUOhst6KjtQ,0,0,0 +jTcLbRCOCnGB4wCgsIYswg,2008-01-26,pWrmOFGStyAeUpnwjNeNcA,4,"That's too bad, but isn't it funny that I just wrote a review on Sportsman's!...lol Not a bad replacement in my book.",review,meuqHEjGCmrO3zDlr6OU7w,0,1,1 +pOQpwDJMikAgrM8BW3iHnw,2008-10-29,V2zUagEIWwBom8gmCfkOrg,5,"I heart Rome's Pizza!! Being a native New Yorker, I have struggled over the past two years to find anything remotely close to NY style pizza. I had tried many local, independent places, but no one got it right. + + +When I moved back to Scottsdale about 6 months ago my guy and I passed this place driving down McDowell road. I figured we could try it out (I'm always on the look out for some yummy pizza). Don't be taken back by the empty parking lot and shabby exterior, after all, isn't it what's inside that counts?? + + +The food is always fresh. The Greek salad is great - it comes in small and large. The pizza is amazing (as long as you know what you're getting - NY style). I know that it's family owned, which I always have an appreciation for. + + +The man that owns it does most of the deliveries. When I first moved to the area I called for delivery and he had to call me because he couldn't find my street. Embarrassingly, I only knew the street I lived on and not much more, so I couldn't help him. He told me that it was okay and eventually found the house. +I expected him to get out of the car and give me a huge attitude, thinking I'm an idiot because I didn't know where I lived (could you really blame him?). But he was as sweet as could be and told me it was no problem. How refreshing! + +In a nutshell, hoooorray for Rome's!!",review,BPde0dz-vM4_fZCNPRT8sA,3,2,1 +ykKSshfa9ANCZCuvM2LaWg,2012-10-23,mr6WrTGHBTy7_KYRAGvcoA,4,"Got to give them four stars, +Above the crowed, cooked to order food here is simply great. +Yes butter burger is a fun time but the real mean is their entrees + +Fried Chicken and Fried Cod, they keep their fries clean and use a great breading recipe, try it you'll be back for more. + +The beef is ok, sometimes a little salty. + +mixers, +not the biggest fan but they hit the spot when you need to. be creative and make your own mixer. + +Service, +well its ok, they do bring it to your table and when you do a drive thru don't expect this to be Wendy's, it will take some time depending on what you order. Your given a number and a nice high school student will bring some food to you. +The service seems to be young here, they just like hiring someone looking for their 1st job or so. No this does not create the best service but creates, our local future. giving a younger kid a job is not easy to do and these kids will move onto another job and keep working this is good karma for Culver's Phoenix and shows an investment in the town. + +I choose to review this location because it has been around. I used to go out of my way to find a Culver's. now they are popping up around town. As a Midwest person this is great to see. This is mid west food, comforting a little greasy but dedicated to a great meal. + +kevin",review,0qIsBt4EzBDCKrIviV55Ew,3,5,1 +A7Soqlerr3L8mNq3YuIqAA,2012-04-29,qM17darbRCQm2KiemtTc6A,2,"Soggy overpriced fast food burger with allot of hype. When you have to cover the walls with quotes how good your product is, then you have to something to hide.",review,RA3vn0rFMhHlEPW8WKw1Dg,1,2,0 +QnAzW6KMSciUcuJ20oI3Bw,2012-01-13,syGMSVteNKxjOcXzDLALrg,5,"Joe's Farm Grill features everything that is All-American. Burgers, pizzas, salads, hot dogs, and a variety of other classics, each with their own twist. I was pleasantly surprised that Sonoran Dogs were on the menu (I rarely see them outside of Tucson). I got a burger that was gigantic and yummy--don't forget to ask for grilled onions. There are a number of novelties in each of Joe's restaurants, but my favorite part about this one is that it is nestled right next to farmland. The ingredients here touted to be fresh and local, and I could definitely taste the difference in my burger and especially in the fruit cup. + +I took my brother here for his birthday; he got a 4B and looved it. He wasn't able to complete the trifecta but there will always be next year!",review,rl_o0q8z-Rv9bneDafM0KA,1,1,0 +EoVGIsaatkdbWLY9qyFcgA,2012-06-17,K_0K0jR-NOPKIEvDuUCvIA,2,Tried this place multiple times. Many different items. The only thing Worth remembering were the margaritas and the had pretty good service.,review,lOSZu5lM0sQxrBQxb2qTiw,0,1,0 +XWvht_1ZLdK7EHJ3jo4q0g,2011-08-31,sGtw6Amj1UUiXeds6cpA5Q,3,"Great place for dine-in and pick-up! + +Ambience: Contemporary/ Casual + +Food/Drink: American. Good salads and desserts!",review,JgufYQ94cHyEo9b8StajnQ,0,2,0 +JJi5HMpypL3xNB5HjTMeCg,2008-10-28,f3ZqeG3aZF2a1bWaxJ94xA,3,"I've been to Silver Spoon once, I need to go back to really make the decision if I like it or not. I went in the summer, it was kinda hot in there-- like most places in the summer but, the heat makes me grumpy. SO I need to go back when the weather is normal. + +I got a salad-- it was massive, a little too much dressing for my liking. Okay, A LOT of too much dressing but I ate it anyway. + +I'll probably try something else next time. The staff was nice, the snarky guy that someone mentioned was snarky, buy snarky in a fun loving way, at least that is how I took it. Snarky can come off all wrong and bad if not done correctly or if you just aren't in the mood for it, or if you yourself is snarky too-- then it's a disaster. + +It's close by my work so the fact that I have not returned makes me keep it at a 3 star review.",review,XBHJCDzNh--mBhJkzyM_iA,2,2,0 +-KEU36ohRQb19mrbA65Y3Q,2012-02-18,5HZfrW2QgpqJSxRuQYM2Tw,4,One of the best breakfast places in Phoenix. I love it.,review,3MSa_fdxgsaY9yF9vqmeUg,0,0,1 +z3zcsnK26QhC7TqDX73zvA,2008-10-27,fawi1OaSuc66NU5DOAg3WQ,2,"I am a steak lover but I must say this wouldn't be somewhere i would recommend. Our steaks were cooked wrong, had a pretty blah taste and we sat in the restaurant for 20 min before anyone asked us about drinks. The drinks were $9 and were supposed to be ""top shelf"" uh I thinks not. tasted very watered down and I decided to limit myself to one at that price to quality ratio. The only part of the experience that was worth while the observing the table sitting next to us. Listening to them bicker back and fourth and argue about what they were going to get was quite entertaining....... I would not recommend going there for anyone there is plenty of other options close by that will leave you satisfied",review,bXJ9U9e_zn8K1xKwqTArzw,0,2,0 +QdbZyl-LWFS54u93Vjd5SA,2012-02-04,82ISizO-RfH9PdjIVHV5Yw,1,"After sitting at our table for 30 minutes and not getting any service, we left. But not before the hostess said thanks for coming in. Needles to say I will not be returning.",review,GZZSxeqj99IS0tay1LdA4g,1,1,1 +OFBJtqWGSx6n6CchtVmoRw,2012-06-08,jYv02DS9ggyyW__uZQN44g,2,"I was working in Phoenix and was told that I had to try Delux, as they had the best burger and sweet potato fries I would ever have. The fries were pretty good, but I don't think they were anything above average. The burger, though, I thought left a lot to be desired. It was juicy, but I would actually call it more grease-laden than truly juicy. I like a moist burger, but I don't want grease dripping off the bun. That was my major problem. That may be what some people like, but I didn't.",review,_-JsSzkBgow_FEHNH3-HFQ,0,3,0 +Q1cSwGiy-RU9XXf9T7HqRw,2009-01-28,TsON-K7uOkM3McnUGOUZEg,2,"Let the attack of the Blue Hairs begin! You simply cannot eat here without being shoulder checked by retiree's from Sun City West & Sun City Grand. They must get to the scrambled eggs before you do, because YOU may take all of them. + +The food - yeah, it's basically OK for a buffet. The selection is pretty good, the food is hot, and some of it is even tasty. + +The tables are jammed in to make more room for the elderly and to maximize profits. And it is your typical buffet decor. + +Did I mention that the old farts are like professional hockey players when they get near a buffet? It is like in a room full of food suddenly becoming afraid that you won't get what you want to eat. It is ABSURD! + +Go if you must, but bring some attitude and some shoulder pads. Watch out for old farts. Wear an Obama shirt, that should really get em pissed at ya.",review,XgIhw-aWaq_Fx3ZVQGjnuA,4,4,6 +TDX5Peai64ZdDvU5xHV5cQ,2011-06-06,n-suBhJOCH3mL53DvyrLPA,5,Jake's been taking care of our cars for almost 7 years. He's very trustworthy and fair.,review,NPoOEAPspruMOik-9sKQtQ,0,0,0 +k8JnZBspVOI8kLcQek-Chw,2011-10-19,DwGDdAcRkUMdbg-Y8Te-Dw,5,"My new favorite place. I love this pizza. I became a vegetarian in March. So cheese pizza with mushrooms and olives is very important to me. And Mamma Mia's is cheap and delicious, my favorite combo. And my constant companion, my 9 year old daughter born in Philly and a fan of hoagies, loves their turkey subs. I'm just in it for the pizza. + +And if you sit outside you can watch the people going to the liquor store next door and watch the people playing frogger to get across the street to the Vig. Pretty good people watching.",review,gUXfVNgnNF9WU73T-d-FKQ,0,0,0 +N6aDT4tLb3nrecPEQLejTg,2011-12-22,mNERItueIwweZavqKJPbNA,1,"I will never make another purchase from this company ever again! The company tried to deliver damaged furniture to my home and then gave me the run around about processing a refund when I refused to accept the items. After 5 phone conversations, they agreed to refund me for refusing damaged items. I cannot recommend this to anyone.",review,91POypmo6V4sbmbULEUqWw,0,1,0 +5VMajxduxfLPSyQkVFKESg,2010-07-12,3SiHfmiKhy80e1VqrSBN9g,4,"I ordered the BBQ sampler. Chicken, pork, beef, and ribs! yum! + +Then I washed it down with their red cream soda and root beer. yum! + +Me = SATISFIED!",review,M3_R93ma7W7bB0xB3mOW3w,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2012-10-11,S8jKHFARQIs-PgHtCzjaHw,5,"So.......I love Defalco's. My bf and I are addicted to the Il Purista, which is JUST PERFECTION, with and without the prosciutto. I've had someone describe their service to me as ""New York style"" and I agree with that assessment, so if you cant hang with it, then go be a baby somewhere else. The food is fresh, delicious, and incredible. Their lattes are bomb, and the cannolis pretty great too. I dont have a single bad thing to say about these folks or their amazing food.",review,59m6T_Nlc1cFNkqqUKr8fA,0,1,0 +tsom7jUEr_DetH65ZtEc3w,2012-12-31,iLp5pQp_Gnvn4q4kiwwRBw,3,"The sandwiches are truly AWESOME. The Bobby is fab. I went to the Chandler Rd location for years and now go to the Tempe location. + +But, I give 3 stars because I've yet to have ""good"" service. Something always seems to happen. I call in my order, it gets lost. I call in my order, I'm told they are too busy to take phone orders. I go down and order in person, my order gets lost again. I'm convinced I'm cursed. I'll keep going back because that Bobby is the BOMB but service is what it is.",review,bazh3LiYydXe3hvx3bF0Cw,0,1,0 +G2HtiETaLokw0kvACS_gKw,2007-05-17,RHF7tcpw6Nm-Ol1aCNUtZQ,5,"Just your typical warehouse club right? I guess that depends on your definition of typical. Sam's club has hours just for buisness members starting at 7:00am. You can also fax in or go online and have them shop for you. All you do is go in a pay for it. + +They have a few membership levels- Business, Gold Member and Premium. The Premium level you earn 2% back on all your purchases. They do give you two cards for the price that you pay, so you can go in with a neighbor and each get a card. + +In addition to electronics, photo lab, optical center, bakery, meat department, they also have a little know ""clearance"" section at each Sam's. You just have to know where it is. Also when they are clearancing out merchandise, the price will end in a ""1"". Most common is .71 or .81. I have picked up 5 pound bags of mixed candy for .71 a bag, and lots of other deals just by knowing this little secret. + +They do discount their meat the day before they need to pull it from the shelves. They also will give cookies to children. + +My boys also love the cafe where they get their ""pizza and drink please."" Their menu has changed a lot lately though and I am not sure if I like it. Prices are very reasonable though. + +They also have gasoline pumps outside which if you know your prices can be a good thing! + +If you are not satified with your membership, you can cancel at anytime and they will prorate your membership refund. Their refund policy is really good as well.",review,p_8_VBp0dX2D7V2kc08ieA,0,1,0 +6Y-6Y6sy6qOQHrWI37zR1Q,2011-03-03,bbZJ3eRhKKw5W1qwDfQsmQ,3,"When I walked in we were greeted instantly. The place smelled a bit like a hole in the wall but nevermind that. We were happy to come in to happy hour. Galbi for $11.95. Whoop! Thankfully we were the only people there because there was only one server. I ordered the galbi and parents ordered the bulgogi. They also ordered a mango and mocha boba. Ten minutes in more people trickled in. and then this is where the service started to get slow. We got our appetizer no problem. Then side dishes. Ten minutes later the entrees were ready. However, it took him 5 minutes to get our rice. +Another waitress showed up and we thought things would go smoother. We asked for our bobas and her response was ""he's by himself and working on it"". I didn't like this response considering we had already been there 20 minutes without any drinks we ordered. + +Overall we enjoyed the food but just not impressed with speed and service.",review,2qKgObPOV1kDl6U08Mjxyg,0,1,0 +BO_TJFFJyXu8i2rW83hG3g,2012-05-04,s3d_G-qBcfIilNCx9voYHw,2,"I feel bad giving this 2 stars but I'm basing it on other burger joints in the area. I recently Had a fab experience at Zinburger so this is why they are only getting 2 stars. Sat at the bar and ordered the cowboy Burger and adult choc milkshake ($14) pretty pricey and tasted just like a reg choc shake?? The burger bun on the bottom was extremely mushy and was not eaten. Overall I just have had better. All the burgers are $16, luckily we said ""happy birthday"" which is a deal thru today May 4th 3-6 PM that makes one burger free. Prob wont go back.",review,9ebaAGLVIgGKpDLFwmvaiQ,0,1,0 +Uayq3Wc5Y8PHLAFusOPprA,2012-09-24,K26clvleiUhOTOrkCy1rfA,4,"What a treasure! It's hidden behind downtown skyscrapers so you would never imagine it existed. The contra dancing once a month is a ton of fun and it's done to eclectic live music that sounds like a cross between Irish folk music and hillbilly blue grass. + +The wood dance floor can get crowded and in the summer the air conditioning doesn't get the job done for the people who do this very aerobic dance. If a/c was better I would give it a 5 star. + +Parking is easy and seems to be very safe.",review,vK0-o9jIxY1wpJWHOySpDQ,0,0,0 +_uf5F_RiMBPHSl2Saex8AA,2008-02-27,l33u5Ejn4T9ls8gkbqV65A,5,"I've done the Shabu Fondue more times than I can count! Usually, I order a cheese fondu for myself, and my main man gets a Shabu dish. They both apply the same concepts... dip something fresh into something very hot and cook it yourself with long sticks. Mm! I've tried all the cheese fondues, and the Swiss is my favorite. That smell is unforgettable. I've tried all the Shabu sauces too, and they're all pretty strong, so they season those boring vegetables right up. The cocktail menu should not be over-looked. The caramel apple martini is the best!!! Now the chocolate fondue.... Oh it's so good! They serve it with marshmallows, fruit and even a slice of cheesecake to dip in! For a very small price, you can also add a shot of liquor. (I personally always add a shot of Bailey's to add some flavor.) This is a PERFECT date restaurant, and it's not bad for groups either. The dcor is pretty rad too. The portions are healthy, but it only works if you end the dinner with the chocolate...",review,jKeaOrPyJ-dI9SNeVqrbww,0,1,0 +4JOv7EnnfZ8fD3JunQQpyg,2009-01-27,YydJLd9f9e9JhwKjuZf-wg,5,"Tempe Beach Park - such a gem in our landlocked State... + +Sure, it's a man-made water source, and yes - it's pretty nasty if you plan on swimming inside Tempe Town Lake, but it's gorgeous during the day and at night too! + +I've done a handful of triathlons that started and ended at Tempe Beach Park, and most recently, I did the PetSmart Walk (go team Yelp) that took place at the park as well... + +With the proximity of the park to ASU / Mill Ave, it really is a fun place to go hang for an afternoon - no matter what's going on there... + +My only words of wisdom - don't swallow the lake water!",review,fczQCSmaWF78toLEmb0Zsw,8,10,5 +_P4wKLL6cyXWY1EQV2k8WQ,2009-12-12,-N0QVhFxdmoWVHsvnsyfuA,5,"This place is so unbelievably cool. In a city desperate for arts, this is perfect! ""Her Secret is Patience"" is a bold statement for downtown, a sign of youth, renaissance, and complexity. It's serenity and over-looming stature make it something to admire. I wish more public spaces in the Valley were this awesome. + +It's worth checking out, even if it's not your taste in art, you've got to admit it's pretty interesting. Be sure to see at at night too! Lot's of beautiful colors accent the homogenized office buildings. :)",review,0KXxuKxlspsO6CrDLgQJ-w,3,5,0 +A6uIi5xvOZARZTCjF9KmsQ,2012-03-28,B2y7d8--8-miyFasbZ7gKQ,5,"I resisted eating Zoyo for months after they opened because I was afraid I'd get hooked and be there every day. And, yep, it's addictive. They always have new flavors to try, but right now my fave is salted caramel. It's incredible. I usually pass on toppings. + +As other have suggested, it'd be nice if they had smaller containers. But I am impressed that they can keep the store so clean with the giant roll-up doors open. They lead to a nice patio that's sufficiently removed from the street that you're not just breathing exhaust.",review,nR9u9hkiODXaIi_Emy-kCA,0,0,0 +lVkDZZ8sTafPlq7f1i5row,2011-10-14,udh6QgSQM3dJqMbOAQBjkA,5,"Finally a raw food cafe that isn't in Tempe. Love their drinks and raw food menu. Just wish their prices would come down bit. + +This is the type of place I could eat at everyday. I know it is good because the afternoon lull doesn't happen to me when I eat here. + +I do NOT go daily, due to pricing, but I would like too, because I would simply live longer eating here. Your body buzzes with clean energy (non-caffeine) after eating here. + +If you are a person who wants to be nice to your body. Splurge and give your body what it craves....Enzymes. + +Who knew raw food was the answer to avoiding afternoon coffee.......?",review,OESKxoNFZcKl47NrOubgAQ,1,2,0 +7TMf1NuuAdvhG7IojZSKnw,2011-06-01,NxtDw0UPr3Ud4_seHl8OSQ,3,"3.5 stars! I must say, I'm a total fan of their Zipps Golden Wings! Gotta love their reverse happy hour! Ordering their wings on medium is smart move, their wings are already so flavorful and sweet, that its a shame to go any hotter, since you'll mask the inherent, crisp, and juicy flavor. I'd say pass on the Fish Tacos, and if you're in a burger move, order the Jalapeno Burger. Sampled their beer, not bad! + +Breakdown: +Zipps Golden Wings ~ a MUST get! +Fish Tacos ~ Yawn... +Sweet Potato Chips ~ Could do again! +Jalapeno Burger ~ Delish! + +Overall, this is a chill spot with your better than average bar food!",review,SNH5L8QZ4kT9unURQUrYow,2,3,1 +F8q_9PUl-Lwjj9xIRPArcg,2012-10-08,tqOlf1znB6kHvsUpyMwWfQ,5,"Love this place, food is very well portioned, and yummy. I really love the endless selection of bottled drinks offered. Must try if your craving a soda different from the normal selections offered. But, they do have the standby soda selections available as well. Stop in, burgers have some crazy combinations to try.",review,IajbWwj6l-KHrfSEwZBLgw,0,0,0 +dOUtKHQ8Q0eHFjKPmi07tw,2010-04-25,p0Vw9IV8_PBa2mMOy6N9JQ,4,"This is my boyfriends regular spot. When I was approaching Bailey's for the first time, I was oh hell here goes a crumbly dive bar complete with raggedy cougars, mustaches and beer guts all along the bar. To my surprise, it is a pretty cool neighborhood spot to get some drinks on the cheap, the margaritas by Clay are great, stiff but not too strong. Friendly bar staff, wait staff could be quicker, more outgoing, they're ""aiight"" thoough, lol. The crowd varies with the day and time, yes there are the beer belly's and the nascar hats being proudly worn, but some evenings they play top 40's and the crowd is younger, and a notch or two better looking. At this come as you are bar, people seem to have a good time shooting pool and having some belly laughs with friends. Again, drinks are way cheap and that helps a ton for a fridays night out or pre-drinking on a sat night to get the party started. It feels like going to Mulligans in Scottsdale, but for a lesser dime and a mile less pretentious.",review,u_GXHKdCfmW9FgxxkW70xA,0,2,0 +YCCDMLcb7UW8G-o_HsWiiA,2010-09-27,CXgz-dSWPYHllOAgUgM_1A,4,"I absolutely love, love, LOVE the ambiance and decor of Modern Steak. It's beautiful. + +Came for Arizona Restaurant Week 2010. I would have never, ever picked this restaurant based on it's name. I do not eat steak, nor will I ever eat steak, but my friend wanted to go so I agreed since there were non-steak items on the Restaurant Week menu. I'm so happy we did! + +For the first course, I debated between the crispy shrimp and the chopped salad and based on the waiters recommendation, I ordered the chopped salad with avocado, crispy vegetables and parmesan. Loved the huge chunks of avocado in it! + +For the second course, I ordered the tortelli (a version of tortellini). It was the perfect size, not too big, not too small. Enough for one person. It was delicious! It was stuffed with artichoke and cheese and was heavenly. I wish I had the recipe so I could attempt to make it at home. + +The dessert of Peanut Butter Cup was equally delicious. It's not what you'd expect it to be: it's smooth and creamy with a hint of chocolate, but it's damn good! I was so full from my meal and couldn't finish all of it so I asked the waiter to scoop it out into a to-go box for me and he laughed, but happily packed it up. I didn't wanna waste any of that peanut butter goodness! + +I'm so surprised in Modern Steak. I'm glad I gave it a chance, despite it's namesake. I'll definitely go back and tell all my friends about it too.",review,pWTUeXZKI6oJ78WTET5y2A,1,3,0 +lXEJZjvwgSM3i6-HWpPwDA,2011-06-06,thRJ_CiWw1dBo4qy5RYPIQ,4,"Went here for lunch a couple weeks back and told myself I would write a review...i completely forgot! :( But today I drove by it and it reminded me to write a review. + +First thing is...Value.....You get a ton of food....for basically nothing....they have daily specials that are always good but their burritos that can stuff a horse are like 3$....Be warned however that they dont tell you this....so when you order a burrito and 3 tacos because you think it cant be much food due to the low price......you'll know. + +I got a burrito with pork and it was delicious...too many beans for me but thats easily correctable next time....by time I got half way...I knew there was no way I was getting to taste the ""famous fish tacos"" if I kept going. So I stopped with the burrito and moved on to the fish tacos....yum...they were very good....I still prefer the burritos..but as a lighter meal you can do the tacos and be very full and very happy. Again...beans were a bit much but Ill just ask for light beans next time. + +They also make these flavored lemonade slushis there that are pretty tasty. + +All in all a very friendly place with friendly owners who live up to the name of the place and they make great food for VERY affordable prices. + +When I was there they were Cash Only...I dont know if that has changed...but bring cash just in case.",review,iAXUAPxzKXxWMCiXLjY-ww,3,4,1 +C42yP2SAQyit92zVyRAqMw,2012-12-09,e0exLLbL-x2q7Ldovl-xFQ,4,"Rally burger is a pretty great alternative to McD's or BK, and its somewhat unfortunate that there aren't more locations in the Phoenix area. Their seasoned fries are awesome and even better with chili. What I was really impressed with, though, is their value burger selection and flavor. A simple rally burger is a buck and change and seems like some of the non-value burgers at other fast food. Good condiment to meat ratio, and flavorful. And no skimping here...you get all the condiments even on a value burger: lettuce, tomato, pickle, onion...all that. The other thing I really liked was they have a value buffalo chicken burger which was actually really tasty. All in all, yes its fast food, but its a different flare with unique options and arguably better quality in some areas.",review,0mwGMnMvgvKd11do4u5J3Q,0,0,0 +cInzGnaFZ3EIItvFXl1MvQ,2011-01-01,xaFh0LwZdRkrSKjUEZHrNg,5,...The best Pad Thai I've ever tasted!!! Crab Wontons melt in your mouth!!! Excellent service... GO !!!,review,1_zj7B1bRgE7dC6tywUcTQ,0,0,0 +_IE5XDjxeM47NSzhg7sItg,2008-02-21,1VxFx6plcpYFkZQngiP2Gw,1,Was I there on a bad day or what? I showed up 15 minutes after they opened and EVERY item I tried was either luke warm or cold. They have 15+ items on the lunch buffet and I tried a bite of all of them. Gross and bland. I felt sick to my stomach after I left because I kept thinking how bad the food was. Yuck!,review,sEWeeq41k4ohBz4jS_iGRw,0,3,0 +ojjtPlnSmCX1zCzWL7JoNQ,2010-10-11,Of8eQr8qe96PMILvswmlXQ,4,"I cant get enough of the Chicken Pesto with Feta sandwich here. This place has a great sandwich for a reasonable price. + +My only complaint is that they literally put mushrooms on EVERYTHING, but, if you are a mushroom fan, live it up. + +On another not, if you like fresh lemonade, you must get a glass of it here. It goes great with any sandwich. + +If you are in a Pasta mood, The chicken pesto pasta is excellent.",review,g8up_FWF-A5JQjuUJ_VsWw,0,0,0 +F3SEkW6v2LJ5y6Ldo5pPaw,2011-11-09,lgxd4CrNhaa0eBD4BWAIXA,4,"Great food, great price, very awesome lunch specials. I would have given 5 stars but the service is normally a bit fast and some of the wait staff are a bit pushy!! All in all, great value.",review,WIGcC8tj583Wa_ccp5dX3A,1,2,0 +R1kKjAO5kZO6d0gQGqrvGA,2010-11-03,m5JWZK3ggSU1xSgE2tBbiw,4,"Had the Arizona Smashburger with SmashFries, Fried Pickles, Chili, and an Oreo Shake. Yeah yeah so much for my diet. I guess today is my Smash-Cheater-Day. The Burger was good, the Habenareos Cheese, Guacamole, and Chipotle Mayo were good. The burger was not greasy at all. The 1/2lb. burger was much bigger than the bun. The pickles were a little salty, but very good and something one does not get to try all the time. The Chili is Steak Chili, very dark, no beans, with Jalapenos & Cheese. The Oreo Shake was Haagen-Dazs with real Oreos...very tasty! The place was clean, restrooms clean, and staff very friendly. Overall a good time.",review,DwU7KVfebA70AlVtX0iOWw,0,0,0 +BK51tV_XtCm3UHwRVyCuqQ,2009-07-22,nNdpZovAnrPYNk3E-r0vHw,4,"This place is good to go, went there on a sunny saturday morning, following battling DB's at American Junkie. Had there big breakfast (forgot what it was called), and had a cup of joe and people watched. The food was awesome and the wonderful ladies of Scottsdale are entertaining, it's saturday morning and ladies are rollin in this place like it's a fashion show, to top it off one lady had to reapply her mascara a few times to make sure she was breakfast chic!! Awesome!!",review,05AcY8awfcsXX2SuJxHmBA,2,2,1 +muCl5p-9ut1sY0aKeUeRhw,2012-03-25,oj-6-dTN8YZmt1_HOcPBQA,3,"I've been here a number of times and the food is always good. They have a fantastic selection of cheese and it's a great place to try boutique cheeses. + +The current rating is due to the service we received last night. The hostess was very friendly but our waitress was sorely lacking. After our food arrived and two in our party still needed silverware, we informed her and she never returned with silverware. We ended up stealing it from a neighboring table. She made a bleak attempt at humor telling us that one of the cheeses was a water-based calorie-free cheese when we're pretty sure it's a triple cream. If she'd had an iota of personality, the joke might have flown. But, it fell flat and left us confused wondering if we'd really just ordered calorie free cheese. + +We enjoyed our evening anyway. The service could just use a little work.",review,kpbhy1zPewGDmdNfNqQp-g,0,0,0 +WSHQ9qpL39g5xA3E5iBCmw,2012-05-20,rBe-XsR4p2OE3L-owcOjvA,2,"I had never been to Dominick's and I like trying new restaurants so I was excited to check it out. We had a reservation for 8 pm on Saturday night and when we showed up the restaurant was busy. It definitely is catering to those that want to be seen and show off what they have. As we were walking up they had 6-7 of your finest vehicles backed in right next to the front door. + +Calling it a front door is a little misleading however. I found it interesting for such a nice restaurant to have a revolving door as there entrance. Once inside the door you are greeted by what is a darkened ""Liberace"" type decor. Think big chandeliers and crushed velvet. We were seated promptly for our 8 pm reservation. + +Top line the food was mediocre. We between the 4 of us we ordered the Scallops, Halibut, and the Ribeye as our entrees. For our sides we ordered the potatoes, gnocchi, and creamed corn as our sides. The main issue that we all had with the food was that it was very salty. At one point my buddy across the table asked me "" does yours taste really salty?"". I answered yes and everybody else chimed in that theirs was quite salty as well. I don't know if the chef was having a bad night but if not he needs to pump the brakes on his salt usage! + +Finally this place isn't the cheapest place. I am not one to complain about prices and I eat at fine dining restaurants on a weekly basis as part of my job. Our bill for the 4 of us was $500. We did have a couple drinks a piece but the price we paid did not match the quality of food we received. + +My advice is to check out the bar for a few drinks and enjoy the people watching. Think Phoenix Open. Otherwise if you are looking for a good steakhouse head across the street to Ocean Club.",review,eC0SiG8pfFzjOOA0bVJy4w,1,6,3 +7wCysP5dwB0KdoPeHH2i2g,2011-05-30,_SOA1qkwz71rE4TDy-ExNg,4,"Clean facility, prices are super low! You can't go wong with saving money!",review,_oeeZwI4VY-Gyxs9lMhJnQ,0,0,0 +MAfc2V_EVtyR9rMxxEAPLg,2008-04-10,AdPQjNYoMbYI2EL4ii-LUA,5,"being that i'm fully vietnamese and my mom has made all types vietnamese dishes ever since i was a kid, i have quite the tastebuds for authentic vietnamese food. also, growing up in so cal there are a lot more restaurants to choose from. + +for arizona, this place is probably one of the best authentic vietnamese restaurants in town. i always get their pho ap chao....even the owner knows this when i step foot in the door. :) their pho is really great..the broth is good, the beef is good, the noodles are good. everything is like it should be. their spring rolls are pretty decent. what i really like is it doesn't pretend to be something it's not. it's a hole in the wall place, but most good and REAL vietnamese places are. the food is great and the service is quick.",review,tTa7FOsuzCMJNyM9d4Riew,0,0,0 +yJr24Yy1K6bt2G9fX3_zPA,2010-01-30,IINFb-bCmgoD3vIeSzO94Q,4,"This is my favorite Tapas joint in town. It's a place I have to get the same thing everytime and maybe more to try a few new items... my must haves are: + +Island Gingered Yam & Pumpkin Bisque Soup (Seasonal)... so good and the fact that it's seasonal makes it even more of a special treat. + +Camarones Al Ajillo (Garlic Shrimp)... this is my all time favoreite dish thus far @ Havana... I can eat it as my meal as long as they provide me as much of their tasty bread as I need to sop the dish dry of all the yummy garlic sauce it contains. + +Maduras Fritos... Fried plantains... need I say more? + +Mojito... best in town in terms of authenticity. + +Marquesas de Chocolate aka Chocolate Pate... I never cared for dessert here until I tasted this strangely named treat. It is so rich at first you think it will be too little but then you realize you need to share with everyone at your table. + +Other worthy options: +Arroz Con Pollo... It has baby peas in it and I really don't like peas... but I like them in this dish! I got to try this dish because a friend ordered it as his meal and didn't even make a dent in it... so I got all the leftovers and it was pretty tasty and economical! + +Fritoras de Frijoles Negros... I've never had Black Bean Fritters before--they are quite tasty dipped in Guacamole! + +Calypso Chips...A thinner more chippy version of Fried Plantains. + +Sun Spots... Sweet Potato Fritters pretty tasty as well... for a fried root vegetable! + +Datiles Con Chorizo... A meatier appetizer... not the best I've had but pretty darn good. + +Empanaditas... These are alright... though I'm partial to Filipino style Empanadas... but since I have no place to buy them from, nor have I mastered making them, these are quite good for a band-aid craving. + +Tamal Cubano... pretty tasty, but my fave is the soupier Salvadorean take on the chicken tamale. + +Flan... haven't had it, but flan consistency throughout varying cultures seems pretty consistent. + +Free Goodness: Their Bread! It's just the way I like it, hot, thin and crisp crust and soft in the middle! + +As you can see, outside of the Arroz Con Pollo, I have not tried many of their entrees... I'm quite content to dine with others and share Havana's wonderful tapas... but one day I WILL try their Paella. A vegetarian friend said they make a veggie paella that was pretty tasty... and she loves their Mojitos just as much as I do so I think she may be right on this one. Can't wait to try it... with a side of Camarones al Ajillo and a Mojito!",review,AivhZeFM9EivrtQTc0iz_A,0,2,0 +hW0Ne_HTHEAgGF1rAdmR-g,2010-02-27,CKks-E_enA6pysU9FBsw6Q,3,"""America's friendliest airport""? + +Really? + +I disagree. I didn't particularly notice anyone being overly nice or particularly friendly to anyone else here. + +What I did notice is that they have the same selection of mediocre, overpriced ""we have a captive audience so we're going to offer them crap and charge an arm and a leg for it"" bars and restaurants. + +I hate to be provincial, but come by PDX some time and check out the local restaurants and bars and see how it's done. + +Plus a star for free wifi! Woot! Every airport should have free wifi! (I'm looking at you, SFO!)",review,mFOZOsPQOacWIMVSyXbEbg,5,11,7 +R8VwdLyvsp9iybNqRvm94g,2010-01-19,d8hDhmzjbNJSgwjAEoHcPw,3,"Monday Morning - take out + +Room for improvement - +- same curt, terse service +- too cramped to actually look around and appreciate their items for sale +- food was average, but not worth all the fuss this place requires. + ++ I like the food for the most part and you can't go too wrong with a red velvet cupcake...can you? + +This place is all fuss and hippity dippity so i surmise that is the situation with the crowds. I am sure I will be dragged there again by another friend in that neigborhood so I will try to look with new eyes. + +:)",review,Uko9olp1xSX76138ZTmUGw,1,1,0 +1NZLxU5WvB5roPFzneAlLw,2007-11-04,AY6EQgNgY_dZnWaTRBP90Q,5,"Barrio Cafe is an amazing Mexican restaurant. Chef Silvana Salcido Esparza travels to Mexico for many of her ingredients and you can tell - things are always fresh (they only have an ice cream freezer!), creative and authentic. I am more than content w/ a mango margarita, the incredible guacamole and the gooey caramel filled churros!! Even when the restaurant is packed, the staff is friendly and informative.",review,JRXRlaus7k2Mz3erUKnwyQ,1,1,0 +JokKtdXU7zXHcr20Lrk29A,2010-08-20,4d3ZAK3T8A961JVdC9dzwQ,5,"I can't say enough good things about this place. I literally have never had a plate here I didn't like, they also have a interesting and ever changing list of specials (I usually order off the specials menu). This is definitely one of those places I could eat at every day. All that and I don't even drink beer, my friends really like the beer here though.",review,ixgYqRHucl21_3-qtPcVoA,1,0,0 +FaPyq354rkMovMKd45fuvg,2011-02-13,zOdx3mcqQhq-sGR3ijVdNw,4,"Treated my sister-in-law to a message here on Super Bowl Sunday. They have great hours & were very accommodating even though we only made our appts about 24 hours in advance. When we booked, the receptionist (who was really helpful and nice) mentioned the groupon promotion ($40 for $100 worth of services) as well as SpaFinder gift cards. We thought we could combine them, and we arrived at our appt to find that they weren't supposed to combine discounts. But the receptionist made an exception and we were really appreciative! + +The massage was nice, could have used a little more pressure. Cute atmosphere and friendly/helpful staff. I would come back, especially with SpaFinder/discounts.",review,ipdwGB5X9VGCLJGIIagGHA,0,0,0 +yKbXWo_6VlS3mD_RcPquog,2008-12-06,8zKur05wM8EOM3d3_RIBOw,3,"The pizza is just OK. Pretty crowded at lunch time and seating is a nightmare. Get the lunch special, you get a personal pizza slicer and a pan. Would get it to go if I didn't live in the west valley. Good idea to have a separate take out door but don't count on this place to be acceptable for those of us with disabilities to get around.",review,JDJzu-JkAMwb16nnfnh3WQ,0,1,0 +oMw1SaH_zEbOOufTsGuk6w,2007-09-19,DGD1gYb0k1YMdDrNI00EuA,4,"A friend of mine in Ahwatukee is very annoyed that I've become snobby about moving downtown (I deny this, for the record) and never go out anymore in Tukee where we were once neighbors. Tanked Fish to the rescue! I will now drive the irritating 15+ miles out of my way to eat here on a weeknight, whenever he can break free from his wife and two cute little kids (he wouldn't approve of the way I word that, for the record). + +I'm concerned that the high ratings this place has gotten so far will lead to false expectations. I love Tanked Fish for two very simple reasons: I always have a great time, and I always stuff my face with sushi until I can eat no more. One night we came here, ate more sushi than we needed to, had a large beer or two, and the bill for all of this... two of us... came to TWENTY SIX DOLLARS. I'm sorry folks but there are very few places on earth where this is possible. [Note: This was during a weeknight happy hour special] + +A snooty sushi connaisseur would probably tell you that something is wrong with the quality of the sushi. I can't. It tastes good. It has some large tables and would be a great place to bring a large group (6-8 people). As for the vibe of the place, although it has some nice trendy decor it's still more of a neighborhood bar than a destination unto itself, I would say. So don't walk into here expecting Ahwatukee's answer to Nobu (and then whine about it on Yelp and complain that Phoenix is not as cool as, say, Chicago). If your needs are very simple, and they are to stuff your face with sushi and have a good time shootin' the breeze with your buds, Tanked Fish will meet them.",review,17PPxx8RxjOUD_nQZ1aHEw,6,7,0 +HhNY3X0kyrN5682La6N6Cg,2012-02-02,V17YttiLLbDm8Y6z3Otpgg,4,"Was here on a Saturday afternoon. WOW, the place was popping!!! It is bright, colorful, and clean. The menu is on the wall. There are so many things on it. I settled with a Thai Iced Tea Slush + boba. The bobas were soft and a good texture. I am interested to try the other items on the menu.",review,_PzSNcfrCjeBxSLXRoMmgQ,3,4,3 +rDvz5jX65gpfONFu7er9Tw,2009-07-03,tJuumDszRlTzN8Ib_zDHtg,5,"After four years of living in AZ I finally found Mexican food that appeals to me and my husband. Lets just say they changed my husbands view on tacos. He never swayed from eating vegetarian burritos until he got a hold of their carne asada tacos. In the last 4 months we lived in AZ we went there almost every week and brought friends, whom now can't get enough of them too. +They are reasonably priced, have great customer service and everything we have eaten so far has been fabulous. If you are looking for great food and you're not concerned with being in a fine dining Mexican restaurant, then look no further. +We miss you Los Taquitos.....",review,GWrek3mSqZToa1xuSWyaGA,0,1,0 +UI5ghIUeHYxzwSfaDVUXOA,2010-06-01,ytm7ZINhXftVNFduUmIegg,4,"I'm not normally a big fan of Italian food, but after marching six miles against 1070 in the Memorial Day weekend heat, I decided it was time to slang my Groupon on the table and carb it up. And, fortunately, this was my favorite Groupon find yet. + +Aiello's is in a beautiful building. I don't think a building has ever detracted from my eating experience, but in case's like Aiello's, the wonderful shaded, verdant patio set the mood in all the right ways. + +The inside is low-key family restaurant with a dash of romance. Nice lighting, not too loud, cool bar. + +The food was awesome. Delicious, probably house-made pasta with simple flavors that let the sauces and vegetables sing. An exhaustive - but not daunting - wine list - though it'd be nice to see more options served by-the-glass. + +As icing on the cake, at the end of the meal, you get to play a game that might let you get your meal for free. I won't ruin the surprise, but it adds a lot of character. + +If I had an Italian grandmother, this is the sort of food I'd expect she'd make. Highly recommended for a date night, classic dinner-and-a-movie style, for unpretentious delicious fare.",review,d2RAl63RTdfZF7kcuKcj-g,0,1,0 +A8Khz3eeqIFFGaXurg3hxw,2007-03-09,Z4dtAeER-0uwEh2dUZThDA,5,"The Rusty Spur has the distinction of being the oldest cowboy bar in Arizona and a gen-u-ine registered historic landmark. It's even got a hitchin' post for yer horses out front. The Spur has been patronized by the likes of John Wayne and Clint Eastwood -- although never while I've been there. There's great live music four afternoons and six nights a week. Other good things include plenty of parking, no cover, and a fun venue to people-watch.",review,lC4X2crUuxT9Ac9BlOX4Uw,3,2,2 +K8pM6qQdYu5h6buRE1-_sw,2012-04-24,oaTIUVcMC10Cqb6XH9eP3g,3,"I am a BIG fan of chicken and waffles and I will try it just about anywhere it is served. I especially love it in the morning; when everyone else is ordering a light breakfast, expect me to go for the fried chicken. + +Lo-Lo's was just alright for me. + +I liked the chicken, but I was not fond of the waffles. They were a little too... thin? Light? I dunno how to describe it, but I like my chicken AND my waffles to have a little crunch. And there was kind of an interesting taste to the waffles. I can't put my finger on the flavor. + +I liked the atmosphere okay, but I probably won't be back. + +I know Mrs. White's Golden Rule Cafe is not for everyone, but honestly I prefer the feel there. It feels less ""affected"" by its customers, I guess. For some reason I am finding it hard to come up with the words here, but Lo Lo's feels like it is the more popular cousin of Mrs. White's... you know... the one with the Letter in Football. + +Anyway, I am glad Lo-Lo's is thriving... Maybe I will try the Scottsdale location sometime to see if they have a different spin on things.",review,64YY0h0ZAR2nbzxbx0IwJg,1,3,1 +-XlBQrxN_ZB3MZKxLBeAjA,2008-12-04,cPF9quMMe24SqKBYQjvnJQ,4,"1 word. PIE!!!! + +they have really good pies here, traditional, and some not so traditional...but still really good. + +food is ok. nothing that will blow your socks off. i find it better in my freezer section then in the restaurant. pot pie is pretty good too",review,E5QyEU6FCQwnTys0S73zNw,2,3,1 +yW4XOMS4biiSXOwkbZ6wpA,2009-03-31,0qEaKXU1A-Ql5SR4Q1KDkQ,1,veerrrrrryyyyyyyyy dirty. I think I will buy them some clorox wipes and light bulbs for their sign out front. I made 12 u-turns trying to find this place.,review,hFtlFksrcLaWHGPNa6SmeA,1,1,1 +jkULHBAZBM3s5DQJkM-6RA,2012-03-07,cSut20XyNzB84gc_gK7YgA,4,Absolutely delicious food at reasonable prices. Only complaint is that they only sell cans of soda. This kind of meal requires a big old drink,review,gvB1Ja5gT4ut9R0I9EA90g,0,1,0 +rIonUa02zMz_ki8eF-Adug,2010-01-27,ZxWme0p0DP42m1q3uK0Wmg,2,"Five Guys is great for those days when you want to spend $12 on a glorified fast-food hamburger. The meat comes in a wafer-thin patty, and doesn't really taste like anything, just like at Wendy's. The bun tastes mass-produced. + +I also don't especially care for their fries, although this is a matter of taste more than anything. I'm not generally one for mushy, thick, ""natural"" fries of the sort served here. + +I can't help but wonder if people rate this place purely on the quantity of food that you get. The normal size for the burger is a double-patty, and the fries come overflowing from a 12 oz. drink cup. + +I would rank the burger places around mill as: +1) Smashburger, for their delicious Arizona burger, and the awesome smash fries +2) Chuckbox, for delicious char-grilled meat that actually tastes like meat +3) In-n-out, for great-tasting meat and some of my favorite fries +4) Five Guys, +5) Fatburger, seriously why the fuck does anyone eat at Fatburger?",review,YBtz3DqUwLHXkAV_1L8AgQ,0,2,0 +3HciJAVduCRoPDdzgh7cAA,2010-01-19,l5_EzmG6RXQ6FIaC_-__QA,4,It was great coming to this store. It has a large selection of trendy clothes. I will come back again.,review,lViWWAZLMGz_TMKfrLon-w,0,0,0 +S8O3BoCDEK-te8U-0IvZog,2012-06-15,RlghdwGTAgpqICy4-SvQ0g,5,"Tommy V's is a delightful twist on old town dining where fine wines come with a surprisingly refreshing price and food pairings are always fresh and so delicious. The atmosphere matches the name - just oh, so chic! and the staff is always very gracious! We will return many times this summer with the new special app & entree deal too! + +When I set out to go to happy hour last week, I didn't expect Prince Edward Island Mussels and a most fantastic wine that our waiter recommended! + +Tommy V's has the recipe for success in good cuisine, wine, and ambiance!",review,oJDk-z68ThRJ_xfB5sQ80Q,0,0,0 +DDnmNTvIIQu2t3WZ2EQx-w,2009-10-17,y2kyPWnfWQP6JB2Dmdw7wg,4,"Never had a bad meal. Just this week had the halibut ceviche special and as always the best guacamole (especially if you like garlic). The green chile stew was good, although I would have liked a bit more kick. Dined in the patio for the first time and it was great atmosphere. However it was a bit humid. Still a great experience.",review,bIlYtJE3y0iWJLdWyN9p9g,0,0,0 +nBrD6TxddhHx4FhMk32JvQ,2012-07-25,ru--5FCC716kghnOc56joA,5,We love Niro's! The hot dogs and Italian beef sandwiches are dynamite! The Greek salad is big and fresh. The gyros are also excellent. I'm a French fry junkie and these are my favorite in Phoenix! Service is fast and prices are good. The owners are almost always there and make us feel so welcome!,review,21iOujAEuKcsLpDXviKWvg,0,1,0 +AIN4FSq5ZM4Il5BzXzMNXg,2012-07-11,xW6fzPPhfavH5QHjGhW3Dg,4,The Best hash brown casserole ever! My daughter loved the apples and sweet yogurt. The Staff was super friendly. going back this week,review,lmO4wYt2RA5n6F-AlnECJg,1,2,0 +eHcQzL5eebqvKrLW5q283w,2012-08-13,Ug2UC3TB1K2EC59cT6hbAQ,1,Jimmy Johns is cheaper and better ... The Capriotti food is heavy ... and it doesn't taste as good as you think it should taste,review,BjDtik9NxtA1FjXBXFOW_g,0,1,0 +Y-ci4KjSUdwfc6ru4XnX8Q,2008-05-18,0m-DMDSCVTv5fo-GQf37vA,5,"On my little trip around the city I drove over to Sweet Pea. Very cute store and great personable staff. + +Nice selection to baked goods and great taste. + +What nice find in the downtown area. I've got Wicked Bakery up north and Sweet Pea downtown... North and South is covered for those sudden cravings... now time to find something on the on West and East sides of the city.",review,kvhwo-rYxTWCGi3Sol5zIQ,8,10,6 +hzHyNCc3WijMVOzPcCuRJg,2011-05-22,HI68rZCpGX7QYT67tgFOmA,4,"I've been here a couple times and from reading other reviews, I must have come on a good night! Both times I was here we sat on the patio and really enjoyed the atmosphere. They have a large rock pit? in the middle that they light when it's cold for heat. + +I really love the mussels in the white sauce here and last time I also had the spinach salad. It was delicious! Fresh and served with the perfect amount of bacon vinaigrette. + +The service is good, nothing special - but what is with the waitresses wearing flip flops? I just don't see how that is sanitary especially if they're walking in the kitchen. + +Overall it was good and I'm sure I'll be back. I keep meaning to come for happy hour when they have 1/2 price appetizers! A bowl of mussels and a glass of Sauvignon Blanc is all I need for an inexpensive and tasty dinner.",review,jx104chvz7NbkVytXldUGg,1,1,1 +QnAzW6KMSciUcuJ20oI3Bw,2011-07-30,bJuGT12WS95sJfVRGtcSsw,2,"I don't get it!! +My husband, daughter and I went to eat at Joe's because we saw a menu in the Hotel where we were staying nearby. The Menu mentioned that the TV show DINERS DRIVE-INS AND DIVES had done a show about the place and indicated the menu items that were highlighted on the show that were supposedly delicious! + +I called ahead for directions and was greeted with an attitude when I explained that we were from out of town, staying at a hotel that has their menu and needed directions to get there. I assumed since the menu was in the hotel room that the employees at Joe's would know how to direct someone to get there from the hotel. After I explained several times the cross streets and the name of the hotel where we were staying, explained that we were just north of the 202 freeway etc and was just about to give up, the girl finally was able to give me directions. Was that an omen of things to come?? + +The first irritation that we encountered was standing in line and trying to decide what we should order while there was only ONE cashier. So when we did reach the window to place our order we could practically feel the irritation of the people waiting behind us while we tried to ask a few questions about the menu. Feeling pressure to hurry up by the impatient look on the cashiers face we ordered a variety of things for the three of us. The Fontina Burger, Pulled Pork Sandwich, Onion Rings, Sweet Potato Fries and Fresh Beet Salad. + +With the variety of what we ordered you would think at least one of the three of us would taste something we liked, but the only adjective that we could come up with for everything was BLAH. +I am not exaggerating....we were all hungry and we are not picky eaters, but we just couldn't get a good bite of anything. + +Also when I placed our order I asked for side orders of the onions rings and sweet potato fries but the cashier rang up full orders which I didn't realize since my husband paid the bill not knowing it should have been less. Our bill for the 3 of us was equal to what we would pay at a restaurant with someone serving us!! I wouldn't mind so much if the food tasted good but...... +TheFONTINA BURGER was cooked very well done (I ordered it medium/well). It had a very slight smear of pesto (so slight that I couldn't even taste it) with a few small pieces of mushy grilled pepper and the fontina cheese. The burger was so unremarkable that I can't even remember if there were ""greens"" on it our not. I would describe this burger as DRY and BLAH. +The ONION RINGS had such a crunchy exterior that it actually hurt our mouths to bite into them. Besides that, the onion pieces were so thin you could hardly taste the onion. It was like eating a basket full of crunchy fried breading. +The SWEET POTATO FRIES and the WHITE POTATO FRIES were also just BLAH....how can you mess up fries?? After some serious thought we decided it had to be the type of oil that they were fried in. It was just tasteless. Even salt and ketchup couldn't help these fries! +The BBQ PORK SANDWICH was just okay as was the COLESLAW. Not really much to say about them. +The BEET SALAD tasted like dirt. My daughter and I both love beets but neither of us could take more than one bite of this salad. +The PICKLES that they put on top of everything are just gross. What they heck is wrong with just a dill pickle? Why the sweet and sour wierd flavor combo?? + +There is only one DRINK MACHINE and CONDIMENT BAR and it is OUTSIDE! So to fill your drink or get your napkins and ketchup you have to go out the door and stand in line then try to get back in the door while juggling everything. Irritating! + +More irriation came in the form of the FLIES swarming our table which made for a very frustrating time of swatting them off of our food between bites. + +We were all hungry but none of us finished our meal because we were just bored and frustrated trying to get a good bite. We even tried to doctor stuff up by dipping our fries in the bbq sauce and adding ketchup to the burger but we just couldn't fix any of it! + +We left feeling ripped off, vowed to never return and decided we deserved to stop for an ice cream someplace on our way back to the hotel to get that IRRITATING, BLAH, SWEET and SOUR, DIRT flavor out of our mouths. + +PAY ATTENTION TO THE DETAILS would be my recommdendation to the staff of this place because everything really adds up or takes away from the dining experience. We were overcharged, irritated by the set up, atmosphere and flies and we were still hungry when we left! + +I am submitting this review because I don't want other people who have never eaten here before to be fooled by the FOOD NETWORK show hype the way we were. The only reason I gave two stars is because I like the ""farm fresh concept"" and wanted to give the place credit for that.",review,k5BJbz43TUKOBygmatgehA,0,1,0 +iDoigI3605ixHl_qHly3Tg,2008-12-01,hIxoPSLTrNc22DhU8yLziQ,4,"Went on Halloween night for dinner. Very good. The steak came out sizzling in butter, the way God intended good steak to be. Service was great but they put a bottle of San Pelligrino and poured it before asking us, now I would normally buy it because I like it and for $8 it is a nice add on, but they should ask first. Also, beware: the Wedge Salad is just iceburg lettuce and Blue Cheese dressing, NO BACON!! WTF? No Bacon, but I asked for a side and it was all good. Desert was just OK, and their side dishes were above average. Great for special occasion. Will go back. Oh they don't have jack on tap if you want a good draft. I was really let down with their poor beer selection.",review,78Ed1ndOak2kmzljulPfBg,2,2,2 +UI5ghIUeHYxzwSfaDVUXOA,2011-07-22,Ke6U7-DdKhoEmxyiDX5Rqg,5,"Great food as always. The owner is incredibly professional, friendly and charismatic;came buy three times to check in on experience and even asked if we wanted more antipasto salad items(on an already generous, well-priced portion.) The service is great. Homemade breads. Extremely generous portions. I would highly recommend this restaurant to all.",review,kk05snSafuIFK0lsxoMNzA,0,0,0 +siFw3cNWKfFL14K3aF2Fiw,2011-02-23,enO2RiutNuor8px7AmK81Q,2,"The wood saw is always out of service... +The garden department is nice, but the staff is a little strange. + +This location never seems to be busy, so check out times are short. +The prices are higher than ""another"" home improvement store just east on Baseline. + +Meh.",review,0o0VMEJeQY0pAAZ9nxErBA,1,2,1 +cVejKU_SrdbvzIbQ4oPV0A,2011-06-16,ee69p6ClyhkfwbMFSVn2kw,3,"Mi Patio is a solid 3 star restaurant. Some days the food tastes better than others. And some days the entertainment value is better than others. But it's not a chain, it's within walking distance and has very affordable margaritas. + +There's no bike rack (ugh) and the taquitos are basically a carne asada taco with no toppings (which I happen to like).",review,jccGOMPTOGS22Tp2m9PAog,2,4,2 +ewZlgc22xN5NNQ1H7U6Y7g,2010-01-09,OXgKo0GNteuwE4cBonPenw,5,"Service is good... The newer waitors tend to forget you're there. Food is delicious, never gotten food poisoning... Cheesecake is magnificent... The best kind is the Godiva, expensive bit worth it!",review,qX5smYIbztZlwln8T_0GhA,0,0,0 +QKGZajo_Xm6AW3lHkU9Mmg,2011-04-13,zw4ju3HPTnF-bDV21BrTjw,4,"Wow. +The food and atmosphere here are great. +The music was a little too loud, but, for a weekend away, this place hit the spot perfectly. +The wait was rather lengthy, so we stalked the bar until some folks left, then had our dinner there. +I had the largest shrimp cocktail of my life, some really good wine, and grilled asparagus. +There are so many delicious options in Scottsdale, but, this is pretty specific in vibe. Check it out.",review,HZUtSScc3-43nuwEXHijUg,0,0,1 +WNy1uzcmm_UHmTyR--o5IA,2009-05-10,2PxSC_3BLMG5CgVhMlRA7A,4,Awesome little hole in the wall in Tempe. There isnt much room to sit and it isn't fancy but if you want good food this is the place to go. A pasty is basically a calzone(only better) with a variety of different types of fillers. I had the bangers and mash. The wife had the Italian. Everything was great served promptly and with a smile. It's not Scottsdale fancy and that's what I like about it. Best part is you can get a hearty meal with a soda for under $10. If you want beer expect to pay a bit more.,review,RxjMkVg0oJSW9ryGbu5fBg,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2010-08-09,ObAaQm64bZMJtoLgeTFGbQ,4,"Ok I have waited long enough to review Postinos...I have been here more than any other restaurant since I moved to AZ so I had to share my view on this place! I go to the Arcadia location most often so my review is based off of that.. + +This is me any one of my best gals Sunday spot...we go maybe twice a month and enjoy the Reggae, $5 Glasses of wine and of course the BRUSCHETTA!!...All of my fellow Yelpers have pretty much summed it up, all of their bruschetta is AMAZING!!! my favs are the brie with apples and the prosciutto with figs...I can eat that all day long...their sandwiches and salads are yummy as well...my next goal is to make it here for brunch :-) + +Overall +very casual and laid back vibe +parking is a bit tricky +great for dates, lunch, brunch, bdays, holidays...and the list goes on...",review,UBIeuiLY9PobybSgo0qhWw,0,0,0 +D312YvSd7vyD97Sv6zgjWQ,2009-05-11,TFod1U3ynO4hqP-BSihiOQ,5,This is a great boutique in North Scottsdale. Ruby has such cute dresses to go out in and is a little jewel box inside of this shopping center. As the two other reviews said they carry great brands like the established Tibi or even new brands. One that I saw and loved from Phoenix Fashion Week was Smoke & Mirrors Clothing from Los Angeles. Ruby carries a lot of what I saw and loved on the runway. Ruby is always getting new stuff in so it's a great place to check in with anytime you need a dress or a kick start to your newest fashion routine. Two thumbs up!,review,3nloQugUWEHFp_LYBXTRWg,0,1,0 +vARjqeIkSNsazHltujiq4Q,2010-02-13,SnK6-nPtFlDpiky06FaobA,5,"I'm ashamed that I haven't left a review for this place yet. I've eaten here for a good while and I've never been disappointed with the food. Well, there was this one time, but it was because it was sold out. I'm okay with that, it tells me it was really popular that night. Anyway... + +The prices are good, the teas are good, and it's just fun to sit in the pews while watching the candles melt. Every friend I've brought here has had a good time with an equally good meal. I'm a sucker for the royale with cheese and a side of thousand island. + +You know what, look at the average review score. I really think that's the most telling part of this place. Really. Go. Eat. Enjoy.",review,3lmbN9XXScviLES_MWo3wg,0,0,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2012-01-30,yLiM5qenm_gJRssxhw5jpQ,4,"This place has a great selection of Korean dishes and even some Japanese. This is a family favorite, from the stews, the BBQ, the bibimbop, to the side dishes. The staff is always friendly, sometimes a little slow, but always a great experience. There is a sushi bar and you can either cook the BBQ at the table (2 people or more) or have it cooked for you in the kitchen.",review,8RBt1D6rKLMVFVstL6UHBw,0,0,0 +24V8QQWO6VaVggHdxjQQ_A,2008-08-19,-AFUKcvt6C6mrGr7H6waZQ,4,"I went there on a Mon around 9:30 am. It was a ghost town and we got seated very quick. + +I have to say they have the most comfortable seats! I didnt sit in the chair but a like bench couch thing? Super soft. + +The whole decor and music vibe was really cool, I really dugg it. + +My girlfriend got french toast (because she is a bitch and has to be super toned and fit with out working out or eating good) +which came with chicken apple sausage. Ok, heres the thing about that, I hate sausage(insert lesbian joke here) but it didnt have the typical sausagy flavors. It was really really good. It was tangy salty and sweet. +The french toast was extremely good. I think it may have been dipped in blueberry before cooked? + +The waitress was super accomodating, and nice. + +Oh and they do have french press coffee which I was disappointed by , but after I had it.. holly crap best coffee ever!!!! it was smooth had good flavors, no bitterness at all. + +The only use butter and vegetable oil which is soo nice to see they dont load you up with horrible for you margerine. + +My only complaint is, I ordered a sandwich and got a totally different one. When I told them she went to the cooks and found out they didnt have that bread and randomly added egg? + +She took it back and it was no big deal but she informed me it was only a month old and were still learning the menu. + +Kinda weird but nothing big, my new favorite breakfast place.",review,ZZ43etAB2n_T53YBYtf8Dw,4,2,3 +xCryT3Vzk_RLIkhiuUJwjQ,2011-07-31,MCpDw9LEmKhusFYbdiZ0WQ,5,"Delightful experience! I came in with my 2 little ones alone. Jay was our waiter, and a very good one. He got the chefs to prepare their sunsine roll with orange and passionfruit dressing, because I am highly allergic to mango. He was very accomodating. I also had the seared tuna tataki, which was also excellent. My kids had miso soup and their fried rice; both were very good. I was very surprised that a strip mall sushi joint would be thay delicious. Thumbs up!!",review,z8Mi9n14nNc1fU9Y9yz7Gw,0,0,0 +X3oBAKtG0qSwYvXIhpl5vQ,2012-01-09,BnOLrlS5JPb_AcrR77YRnA,4,"This was a brand new experience for me, but so much fun! The staff was very patient and helpful, and we felt perfectly safe after some one-on-training even though we were all newbies. Only complaint is that the beginner's walls were a little crowded, while there were a lot of super advanced walls not being used. May want to swap the ratio to match the customer base. But a very good time and an amazing workout. It may be days before I can lift my arms again...",review,UIHT5FjnQu99trc8mueQEg,0,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2010-01-25,b_lyZ3mwL3UxrawhzyKjhA,5,"This feels like a neighborhood bistro (much like the ones I have visited in New York). The food is wonderful and the wine selection varies which I like. My favorite dishes include: Salmon, crab crepe, burger and ahi tartar -- but their menu changes often, so don't be surprised if you eat something you like and it's not there next time.",review,rHG-s9FSI6i4T__Ee0F-SQ,1,1,0 +NKSA0em3dHSGTyo6Eu-Waw,2011-08-01,J9JaxPpHR7mwYrHHNsc45A,5,"What can I say...Maharaja Palace was my midday getaway while living out in Phoenix, and I miss it dearly. I visit as often as I can (up to three times a year, traveling from Hawaii) and when I do, I am always astounded by the flavors and array of choices this buffet provides. The tiki marsala happens to be my favorite dish and I find the staff to be accomodating and attentive, especially when ensuring I've got enough na'an to sop up my plate's delightful curries. I can't wait to return. This is THE SPOT for Indian Food in the PHX Metro Area, hands down!",review,ofQpgTzPos-L5ZS_mP4qmA,0,0,0 +iXemrsz9L2ak1wDOI6dXOQ,2010-11-02,chHPENVb7riEeZ4W0GUkUQ,3,"I'm no regular here, but on occasion I get a craving for an Iced Mocha that tastes like chocolate milk. Tully's has that down. That's the only thing I've ever ordered here (I go elsewhere for my usual espresso needs), so I can't speak on the rest of their drinks. But, I don't imagine the rest of their drinks being bad; their Iced Mochas are very enjoyable. + +The service can be spotty. There are a couple ladies that work there that are sweet and take good care of the customers. But I've also encountered a couple of employees that aren't friendly and/or are super slow. Whatever; Tully's isn't my usual haunt. But it's good for what it is: fast-food-coffee.",review,UuwjD6MZf6Z6QlNphiXRjA,1,3,1 +IMGW6y8wHQCfr_6k-YXg_A,2012-11-24,VSQjiI2ulJhw2yYgFB_s3A,5,"The family and I love this place, as does anyone I've taken there. + +First time I went I had a cheeseburger pizza - huge and delicious. + +Their beer is great too - brewed right on the spot. + +My wife loved the fish tacos -- it says a lot about a place that every time you go, everything you try, is fantastic. + +You'll pay a little bit, but it's worth it.",review,VDCHcdTkrUUSLz0hcKK6vQ,0,0,0 +KFg2T3nHlzjMByX4y_V8LA,2011-12-01,1YLRs3iazYgEKTVgNtWbig,5,"theres a gun check upon entry. + +i often forget AZ is quite different than CA.... + +my first and only experience at cabela's was on black friday. i honestly havent participated in black friday much in past yrs and questioned deals really being deals. but HELLO deals at cabela's. + +first of all, they gave away rifles to the first 800 people we were there on black friday. again, im not in cali anymore! this place is an outdoors lover dream. and on top of selection and discounted prices...its almost like an amusement park: + +aquarium room with freshwater fish, back natural history museum-eque taxidermy displays, heads of animals and maps of where they originate from hanging throughout the huge main room, a chocolate shop, and entire cafeteria. + +basically, you can make a day out of cabela's. we were there for 4 hours and i didn't even realize. + +but now lets talk about the deals....the deeeeaaallssss. + +""i could easily spend $1,000 in one trip here."" - my guy, as we finally left the building. a stranger chuckled who overheard, ""yeah, no kidding."" + +the damage on my credit card was... + +Cabela 3 season jacket, orig $40, on sale for $17 +http://tinyurl.com/cmtkood + +Columbia parka, orig $160, on sale for $100 +http://tinyurl.com/c785ykr + +Lightweight hiking socks, orig $10, on sale for $2.99 (when the tag said $5.99 and all the rest weren't on sale...think that was a mix-up i scored on there!) +http://tinyurl.com/cspjnfm + +Columbia waterproof super cute softshell zip up jacket, orig. $100, on sale for $80 +http://tinyurl.com/ca765ua + +Snow pants, orig. $40, on sale for $20 +http://tinyurl.com/bnd5erj + +gloves and hat combo pack for $10 +http://tinyurl.com/c7zwftv + +merrels hiking boots, only thing that wasnt on sale :((( but only $120 +http://tinyurl.com/c7pkagm + +---sheesh, some of the things are even more discounted, or on sale when they werent , now that im looking online. + +thats not even the tip of the iceburg at this place. campers paradise, fishers paradise, hunter's paradise. + +also, single ladies...id say 80% of the customers in this place are always male so... ;)",review,NnX4Pq_pibIt_1GSi-fx1w,3,3,4 +Bjt3rB73dvSDe1XEPEWc6w,2010-04-15,K3fb-Mcc7eR68tPm_FfEmA,5,"Since I moved to AZ from Los Angeles I have been searching far and wide for a sushi place that met my high standards for great sushi. Sakana is hands down the best in town. The fish is fresh, the rolls are huge and nothing beats the .50 cent appetizers when you buy a beer! I recommend going on a weeknight, Friday and Saturday nights can fill up pretty quickly so you might have to wait.... but it's worth it.",review,vpS3d9086NGbxq0WF5pA5A,1,2,0 +e8FMAuTswDueAlLsNyLhcA,2011-12-17,FGuPpQ282gr0trTCKt3diQ,4,"The first time was so good, we had to come back! The Peach Creme Brulee pancakes wowed my partner both times... something totally addicting about the crunchy edges. Their Daily Dose Hash is a delicious blend of sweet potatoes and onions, with so much more, making me wish I had the recipe. The omelets are good, it's just that I want them to be better, to the point where I have to have them again. Both the Caprese omelet and the Bacon omelet tasted like the listed ingredients were put into the omelet. That is different from making the combination of ingredients to a whole delicious oneness. I'm going to go for the French Toast next time. The service the first time was a 10+ out of 10, with the 7am server being very friendly, very helpful and made the whole experience even better. This past Weds morning, it was good, nice, perfect service and friendly... about a 9. I really like this place and I'm going to go back a few more times to find the best dish.",review,X8Kwao6QzXNIjoaXyrGO5g,0,0,0 +zMa6YoEekpABg1HZnnTZdg,2010-12-20,1Q8FTnakDBHIapFBAJIrTw,4,"Bye bye Phoenix Houston's, hello Phoenix Hillstone! + +I've been a huge fan of Houston's for years, and had mixed emotions when I heard that they were closing the Phoenix location and opening just down the street under their parent company name, Hillstone. But after one visit, I'm sold... + +Hillstone has the same favorite dishes that Houston's had (spinach dip, grilled artichoke, veggie burger, fresh vegetable sides, fries, desserts, etc...) and they have a huge wine list as well. Service is attentive and sweet (thanks McKenna who was our waitress last night). Thanks also for going above and beyond and creating rootbeer floats for our table upon request! + +The Hillstone group did a fabulous job building this new restaurant - it's got a great outdoor seating area, a huge bar, an awesome wine cellar, and comfy booths inside as well. + +If you still want the old name (Houston's), the location in Scottsdale / Hilton Village is still open, but I highly recommend checking out Hillstone to change it up just a bit. + +Welcome to Phoenix, Hillstone, and yay for me... first to review!",review,fczQCSmaWF78toLEmb0Zsw,10,11,5 +SDwYQ6eSu1htn8vHWv128g,2009-08-09,r-Cqomg4NHrAXw_lyDeWNA,4,"The good: nice place, nice service. nice experience. +As all have mentioned before, interesting and delicious wine selections and bruschetta to die for [I am a fan of the proscuitto/fig/marscarpone and the smoked salmon]. Knowledgeable and friendly staff. + +The bad: okay, the not-so-good...hideous parking [but there's a $3 valet] and really loud. Interesting vibe and a mixed crowd. Would bet its great when the weather cools down and patio seating is more appealing that the current August sauna. + +All in all, I'd go back, eat. drink. eat some more.",review,9vxUUOoasnu8gtoXRwAhYw,0,0,0 +corPOxxIBRJ7DSpryYvorw,2008-12-04,qSEMTr86RSjlOsedZhXb_g,5,"Wow. Wow Freakin' Wow. + +I have never, ever had such a perfect dining experience from the minute they greet you, learn your name, cater to your every need, and give you FABULOUS, beautifully prepared food since...well, NEVER. + +I must say I did do my research, so I did know what I wanted to try and even though I kind of expected the JW Marriott to be more of a snooty place, I felt it would be closest to my house and wanted to find out for myself what all the hoopla was about this Roy person and his fish. + +I went with my friend Amy who was visiting from New York. She had been to Roy's before and is a fellow foodie. We got to the restaurant early and went outside on the immense patio area to sit and have a drink. It's December so a bit chilly but the HUGE, soft patio furniture was extremely cozy and we sat and had $20 martinis (LOADED with vodka. Warning: We had to ask for more fruit juice! And we are major drinkers - just gotta throw that in there.) Our waitress on the patio could not have been more accomodating and she even brought us new martinis even though we drank quite a bit of our strong ones. I am a people watcher and it was nice to see that there was an assortment of people sitting on the furniture, some of them looked like they could be relatives of mine, enjoying the late afternoon, reading, conversing....well, if I HAD any rich or classy relatives, that is. It was very nice and relaxing. Plus the Mariott property is stunning and I wish I could have looked around the property more than we did. + +When we meandered inside for dinner, the hostess greeted us by name and our server showed us to our table. She was very competent, could make recommendations, and was pleasant without being clingy. We loved her. She reminded me of Joan Cusack. Sounded just like her! + +The complimentary appetizer of lightly spiced, steamed edamame was delightful and even though they gave us warmed wet washcloths we were complete heathens and ate with our hands without ever using them. + +We shared the Roy's Canoe for Two, which had Lobster potstickers, Beef Satay, shrimp on a stick (not its real name), and Tuna Sushi Rolls. I must say - the Lobster potstickers - better than sex. The Beef satay was basically this ultra-tender beef on a stick, lightly flavored and grilled. Fabulous. But the pinnacle of perfection here was the Tuna sushi rolls, which absolutely knocked our socks off. I have never, ever had such an amazing piece of sushi before that moment. I think our server, Joan Cusack (Not her real name) thought I was choking because as I ate it, my eyes were rolling back into my head in ecstacy. She bustled over and once she got closer she could see she was merely interrupting a very intimate moment with me and my tuna roll and she went back to her post after giving me a thumbs-up sign. For whatever reason, these tuna sushi rolls were encrusted in what may have been macadamia nuts and it was completely divine. I re-live that moment over and over. MMM. + +But you know, the showstopper was STILL yet to come. I could not believe my luck when my Roy's Trio was placed in front of me. It was a piece of Hawaiian butterfish in Miso sauce, a piece of Seared Ahi, and a piece of salmon. The poor salmon! It was the best salmon I ever had out, but next to those two it was like Cinderella's ugly stepsister. Just upstaged by the butterfish, which is melt-in-your mouth decadence, and the seared ahi - which surpassed the tuna roll I just got done fantasizing about as the most perfect piece of sushi EVER. + +Amy got the butterfish. We licked our plates clean. Amy tried my Ahi and declared it, like I did, the BEST seared Ahi on the planet. + +For dessert, you KNOW I had to have the molten chocolate souffle. How good was it?? Brad Pitt could have walked up naked to our table and I would not have looked up long enough to stop shoveling it into my face. + +Amy ordered the 3 creme brulees - one had a Hawaiian orchid on it, and they were not only lovely but they tasted amazing. The coconut one was so fresh and it made me think that THIS is what every coconut cream pie in the world needs to taste like. I think the other flavors are vanilla bean (very good too) and maybe rum? (also very good) + +It may not sound like I am doing the dessert justice but when you've been kissing George Clooney for an hour then along comes Rick Springfield, which one is better? They are both amazing, but by the time Rick comes along, well, you're kind of spoiled already. + +Roy's could not have been better - this entire experience was an A++ through and through. + +The staff was extremely helpful (someone walked me to the ladies room when I merely asked where it was) (Oh and need I mention the corwn molding in the bathroom stalls was nicer than the crown molding in my house???) (And you know you are in a classy joint when a basket of tampons and maxi-pads is out on the marble bathroom counter, like party favors for down under) + +THUMBS WAY UP!!!",review,IXaxy5NZ_ku8rkXt04lxVQ,2,2,4 +VXuvmtDipL_WRwc0NTM3iQ,2011-04-23,zD_RPiSs12w4IgHRi6HMhA,3,"Yogi's is a great place to grab a quick, fairly-cheap meal. I love the Arizona bowl - it's a great alternative for you sushi craving if you don't feel like spending a lot of money. + +The quality of the food isn't bad. The sushi rolls are alright. The staff is moderate - they've never done anything to impress me, but haven't done anything to disappoint either.",review,7o7MF9B9lxcWupE8jiLOaQ,0,0,0 +D1T1jtCfTfXD-cQE3QViow,2012-08-14,D7cUmPnXrM5vjubiYLCrQg,4,The Chorizo gravy can be habit forming.,review,SMeQwT7awoyAO9I4x39Ztg,0,0,0 +KBG28p3lGX17hOPoHhq5PQ,2012-11-12,ajZ8yy0o7KOHm3CzCBD-lQ,5,"I recently decided to accompany a couple friends on their quest to find the best sushi in Phoenix. A few weeks ago we started here at Yasu Sushi Bistro. While I'm not as committed to the quest as they are, I would be surprised if Yasu didn't rank among the top five sushi places in the Valley. + +We had an incredible dining experience at Yasu. Our server was perfect: she definitely knew sushi and had many great recommendations. I'm still somewhat of a sushi novice, but you don't have to be a pro to know when you're eating a fresh, creative meal. + +My recommendations: start off with miso soup with clams and try the hamachi carpaccio. At the end of the meal ask your server to have the chef make you something special. He made us tempura avocado wrapped in eel, topped with foie gras and served it to us personally. It was amazing. + +Yasu provided one of the best dining experiences I've had all year.",review,TLHB5BA_a6i1P-aXNq85sw,0,0,0 +wqIB7hUTQnCswJV4UyYyEQ,2010-01-13,sZ8QT-V85hBK2EMtVQBESg,4,"We had dinner here during our 09' management retreat. It was my first time at CG and I was definitely impressed with the quality of their food and customer service. + +I had the Seared Tenderloin with Butter Poached Lobster, which was amazing. We shared the cold shellfish platter for appetizer which was another great choice. The oysters were really fresh. + +I'm thinking of taking my boyfriend to the LV location over V-day weekend this year. Can't wait!",review,k0VVZ1ESCb3DZNdBFQXdbw,0,0,0 +kGxG5jBIo3CW7sXBbe8XxA,2012-05-31,hlqLcFL3mGFo8s4tMW98sw,3,"The location is definitely an older location and isn't as large and updated as other Harkins around the valley. + +The biggest theater is on the smaller side compared to the newer locations. The staff is about average, not rude and not nice. + +The parking situation is shared in a strip mall, with a Blue Burrito Grill, Pita Jungle and Gelato Spot, so parking is a bit of a challenge. + +If you are interested in a ""no frills"" experience, this will do the trick.",review,Pk5T0OFCbl8mIKkKYyglWQ,0,0,0 +0CG3ns3gwWV5nOnfzSfUIQ,2011-03-13,4NQqZPKxnIyI3x0G4PSqVA,1,"I just thought I'd post an update. I planned never to go back, but was with a friend who really wanted one of their breakfast items. I skipped ordering ANY food whatsoever and merely ordered coffee and watched her eat. As fate would have it, she had a BACK HAIR in her scrambled eggs (we are 2 for 2 now). My gag reflex is going off as I type this. My husband, friends, and I have renamed this place the Black Hair Diner, and we've decided they have actual black bears cooking in the kitchen, since they can't seem to keep black hairs out of their food.",review,k0gCvAMZIM7vAX1s8oqdHQ,0,3,5 +d52zg-S0o940WUCK-nNiKw,2010-02-19,uS_POUuU8RbJ3GjmgPeyXA,3,"So, I'll admit that I'm a ***bertos addict...I truly crave this food and I'm not really sure why. My mom says that she ate nachos w/ jalepenos on a regular basis while pregnant with me. Maybe that explains it. Anyway, I've been wanting to try this place forever since they claim to have ""the best tortillas in town."" I seized the opportunity to check it out since I had to drop a friend off at the airport this morning. + +The exterior certainly leaves a lot to be desired, and the ambiance is about on par with the drunk tank at the fourth avenue jail (a good friend spent a most unfortunate night here and described it in detail). The cold, stained cement floors, nasty old booths and 70's McDonald's style swivel plastic chairs which likely needed a new coat of paint back in the early 80's. I decided on a green chile burrito and my companion ordered the egg/chorizo/potato/cheese burrito. After waiting for about 5-10 minutes, our number was called. The first thing I noticed was that the burritos were quite small. I knew, however, that I was in for a real treat with the piping hot, super chewy freshly made tortilla, and I was not disappointed. The green chile, while tasty, had too much liquid and after inadvertantly puncturing my tortilla, I was left with a handful of sauce. + +I certainly felt more than safe inside this place (despite the somewhat scary clientele) based on the table of twelve Phoenix police officers sitting across from us. Overall, I would give the atmosphere 1.5 stars, and the food 3.75 stars. It was definitely different than what I'm used to, and it gave me a small taste of the cultural melting pot known as South Phoenix.",review,nMwgC0DuMsBR0V5v4-J8wg,0,2,1 +zwToyWL4dT1clsFPK9wI2w,2009-03-29,d_KgMQIH2ekU789WghwKvg,2,"Consistently horrible service. Food is very good. + +I used to shun corporate chains and opt for local offerings, but Babbo changed my mind. They seem to hire servers who have little to no experience as servers, and frankly have no idea how to provide good service at all. + +Just order it to go and you'll avoid this restaurant's downfall.",review,joIzw_aUiNvBTuGoytrH7g,1,1,1 +bDR6kF5Aw9guBkaahSAchw,2011-11-26,ZyTCfSMV0Qo3znAWnGDiAg,4,"Cracker Barrel is the antithesis of the trendy LA or San Francisco breakfast establishment. They feature old-fashioned Southern breakfasts with biscuits, gravy and grits plus lots of other choices. This a very well-run chain of all company owned restaurants. Well-trained staff, quick service and meals served exactly as ordered. The execution at Cracker Barrel is excellent. While some may not like the food style, I enjoy it on occasion. + +Our breakfasts were great and everything was served hot. Very reasonable prices. My only quibble was that the coffee is only OK.",review,sjXubsgIJvL9tFIctrK5uw,0,1,0 +gHKB66up5VluCWT4vuSZpw,2010-01-22,vkF9GkqpXIeIBqgvAb-etQ,5,"My wife and I have a timeshare nearby and when we were doing a morning walk we saw this place and we asked our concierge she raved. We went and fell in love with the place. The service, the food, the friendship. We go back every time we are in town and the staff remembers you. Also my wife loves gnocchi and says that these are as good as her grandmother's. + Dave A",review,FJkEBP0cAuVebbD7D70YpQ,0,0,0 +gfhO1Q1c7QCigu7waVpeSg,2009-09-13,v5mmm3T1XILyR0txwDVVJg,4,"A nice place to go to catch the blockbuster movie again or catch a movie you didn't feel like paying $10-11 during the first run. I've been here for a handful of movies and I've always had a pleasurable experience. The price is right, $3 per ticket for every show, any time. The price is $2 on Tuesdays. + +I normally don't hit the concession stand, but there is a wide variety of snacks that seem to be a bit cheaper than other movie places. + +The first time or two you go here, make sure to check out the items in the cases, walls etc. There is a bunch of cool pics, figures etc. + +Is it just me or does Pollack look like the Lion in the Wizard of Oz?",review,9qCPmT6ovJjxL4tJB4ANCg,0,1,0 +Hdi7jkB7pHiM1nyPHcqSdw,2012-09-20,EQtc5VmGy_u33QjAwikD4g,3,"5 stars if you are rich and love to throw your wad around + +1 star if you are on a budget and think plastic surgery is terrifying + +3 stars if you enjoy window shopping, gawking at the snobbery and mock the fact that some people will spend $3000 on a ugly brown canvas purse with little ""LVs"" printed on it because it makes you feel good about yourself. + +4 stars if you go during a mega-sale weekend when the ""normal mall chain stores"" have clearance - (Bath and Body Works, Gap, Express, Dillards etc, but they also have an H&M) + +All in all, SFS is a sight to see for the good and for the bad. +At the end of the day it makes me want to escape to hills where people put value on the important things in life and not what brand your sunglasses are.",review,tiyg_cQaPdUuSG95Xpi_sA,0,0,1 +SMpL3z4FLF07bRA6-y22JQ,2010-08-02,NNjZD9TLMqIqM9p13q6w0w,3,"The riped mango slices add an extra dimension to a traditional Papaya salad dish. + +Typically traditional papaya salad (Lao original) is garlicky, lemony sour and pepper varied hot. The way this dish was made lacked all of those 3 features but the sustitution by the ripe mangos solved that issue and gave it the flavor that it need. By design, I expected that was the intention of this Americanized dish: the individual ingredients thrown in separately and not blended in until it softened, stripped away the traditional spice and saucy elemental aspects of it and you have something different for a change that the mostly non-minority American diners would enjoy. The papaya salad is usually regarded as an appetizer; a feminine dish usually made by a female(it is also blasphemous for a male cook to make it, and I don't want to know). But this happened to be the best dish that I experienced at this place. + +The others were pad thai and some chicken mix with brocolli. Both tasted very Americanized. The pad thai is reminescent of a take out of the ""Panda Place"", not bad but not special. + +Overall, by design -Americanized Thai, that attempts to tone done the flavors of the dish and the way ingredients are prepared , it creates a different twist on traditional dishes. It had to because , for example, you can't throw preserve fish sauce into these dishes like you would in an authentic Thai restaurant that would fume the whole place. In my opinion, I wouldn't call this type of food a downgrade , maybe a ""Fusion"" and maybe it's lost and that's unfortunate because it needs a direction\ standing of its own. My group received attentive and high level of services and the ambience of the place is noteworthy; both these factors exceeded the food experience . Parking may be a walk since you are in old town Scottsdale. + +Based on individual preference , looking at the food alone, this would not be a place I would repeatedly come; it does not provide traditional flavors in the sense that Lao Thai or Thai Esan or Thai Hut does for the same price and nor does it expect one to follow traditional eating ettiquette that is an essence of food from this region. But it would be a place I take those who can't stomach the traditional flavors, I would have to eat a little before coming here.",review,Ux7a5tbceLU6anNycjwt_Q,0,0,0 +zXg2O_QnpHQVD7e1azAu_w,2011-11-08,McpH7BVnp36pcqtELhaZdQ,4,"Someburros comes from the same family as the longtime South Phoenix staple ""Ponchos"". However, Someburros has somehow managed to take the family business to a whole another level! I've been to several different Someburros and they all consistently have good food, service and atmosphere. My favorites include the Green Chile Burro enchilada style and the tacos. The beans and rice are always moist and better than that you get free chips and salsa with your meal. I like how the atmosphere is more Mexican-American but the food is definitely authentic! If you hate a crowd avoid Lunch hours like the plague. If you are in a hurry you can also call your order in ahead of time and pick it up through the drive through take out window.",review,rL3dPeKDTybG_ct9OCXGAA,1,1,0 +-hQ8iZygzi0iiTFUkHgiEA,2007-06-28,ndCTY3njf6wgzosC435_Yg,3,I thought this bagel shop was ok. The bagel sandwich I got was relatively lackluster. I think I will stick to Einsteins for the time being.,review,UE1UIi95jSk5tAzOdtnjIA,1,1,0 +CIpzeDYD252nq0nRA4px5A,2012-01-03,uxhJaxosyQfFDUdIg_jbaQ,5,"We had a bad experience in May with a person at Charleston's we thought to be a manager (see review). The next day my husband and brother-in-law contacted the restaurant manager, Chris, we had great and immediate communication with him and he encouraged us to give the restaurant another try as we had been happy there before. +Recently, we had a large party of family members dine at the restaurant and the service and food was perfect. Chris made a point to check in with us at the table and at the end of the meal. Great job, Chris and team! We look forward to dining at Charleston's with you again soon.",review,lp3RMxwrm3BB0xbuH1vrmQ,0,0,0 +bxuKrGz1C4kXm_kjILdfAA,2010-11-10,jF98xkG3Nt7Qq4EmkT2Nww,4,"-Inexpensive produce. + +-Fresh sausage and other meats. + +-$2.99 freshly made to order sanwiches. + +-Decent prices, cheaper than Whole Foods. + +-Parking is convenient. + +-Employees in the produce dept not so friendly. + +-Cashiers are usually friendly.",review,CCHwJoIWLRhxqIcwRJW6ag,10,8,5 +qyNtVViurIcChc35mfYIEw,2011-04-05,jW5APDGcufoxFEg_giD7VQ,3,"First time ordering calamari salad...which had a strong onion (??) flavor and tasted weird...Being raised on Vietnamese food, the strangest of foods has been in my mouth, but I think this falls into the acquired taste category...As in I never acquired a taste for this. + +Pad thai was okay...the noodles were a bit over seasoned. I felt like I should've eaten it with rice to tone down the flavor. + +Papaya salad was good...still on the look out for that authentic not watered down version, though. Just like my friend's mom makes it! Yum! + +Thai omelet. Good. + +The people were really friendly as well, which helps, but you KNOW I'm all about the food. + +I had takeout and the box for the calamari salad read: ""Carimali Salad"". :) I love it!",review,7cmvtJaZTJhd7yQdwu5scA,0,2,1 +tBpcKHlBJTwRLq6Q2gv1KA,2012-11-26,vYZ9-sw5LsoB0a8flqkL4A,2,Well I just wasted 38 bucks....never again,review,90-uDWiQKa5B8Xa2hiRu8w,0,0,0 +UL3OMN_c-NXHlyb97pDifA,2007-03-05,sIL0cWiSYHDa4ZaxbxO80w,4,"I am not a big beer drinker, so I can't attest to the many different options they have in that area, but I can tell you about their martinis. + +They have a huge menu of specialty martinis and other cocktails that are all pretty darn tasty if you ask me. My friend really liked the chocolate something or other martini, I had a pear one that was delicious and another pal really enjoyed the pomegranate press. + +The food is pretty good or I was buzzed. Or both. We had the cheese pizza and an onion ring tower (both half-off for happy hour). Which, by the way, truly is a tower of onion rings. And then the waitress brought out a free piece of cheesecake for my birthday. It was a great time had by all. + +But the best thing about Yard House is the location. It's right by Kona and Z Tejas and if you start right at 3pm, you can hit happy hour at each location and then take the free trolley to Giligin's. Yes, I did this on Friday and it was TONS of fun. Try it.",review,0CMz8YaO3f8xu4KqQgKb9Q,0,1,2 +K13dEvg4uimGQ1OcE5vGZA,2010-08-22,o90x4eigzpPz96uE_XavfQ,2,"I recently moved to the area of Westgate AMC and, even though it's not the closest, I thought I would give it a try. It's probably one of the most beautifully laid out and convenient movie houses I've been in. And for the first several visits, I didn't have too much of a bad experience. In fact, the only thing wrong was the ticket machines outside were down - apparently, I've heard that happens a lot, if they've ever worked. + +This last trip was just plain bad. I went to see Piranha 3D and the 3D screen was fairly small, especially for a wide release on opening night. The 3D was off a bit, but then that might be this old person's eyes; I could see shadows and lines behind some of the target objects. + +I arrived 45 minutes early and I mistakenly thought I would be too late to get a good seat for a 6:30 PM showing. By all means, I was approximately 30 minutes too early. They booked the showings way too close. The previous showing's credits ran until about 6:10, and then they, as always, took their time to clean out the theater. Once in, finally, the theatre was almost pitch black aside from dim lights on the staircases. The Pre-Show countdown, which I normally despise, would've been welcome, if just for some light. Well, that's why God made cell phones. + +Upon finally sitting, there were two soda pop cans in the two cup holders - way to go, clean-up crew. I literally saw 7 people leave the theatre when that showing ended. Cleaning up should've been quick so you can continue your discussion about who's ID you'd use to go out that night. + +But I digress, the soda pop cans were obviously not sold by the world's slowest concession employees. I just moved them over and the lights finally came on a bit roughly 7 minutes before the show. Typically, I hate when people have their cell phones lit up in the theatre, as they always want to hold them up high so the entire rest of the theatre gets the pleasure of the bright light while they babble on their ancient MySpace account. But, in this case, it's understandable as no one could see anything. + +Question, and I've always wanted to ask this, are the employees at the concession stand told to go as slow...as...possible? Fine, I know they're not - I'm a former AMC employee and I wasn't. Although, the pennies they generously give in the paychecks might not put the right fire under them. But seriously, it's already an insult that we have to pay about $13 just for one popcorn and one soda, but they add the salt, on the wound, that is, by making us wait 20 minutes in a line of 3 people. + +By God, I wish someone would open a concession stand with somewhat good deals - yeah, I know that's how they get their money, blah, blah, and I wish someone would open at least an express lane. ""Two Items or Less Lane! No Children!"" Heaven. + +Really, movies are still relevant, even in a down economy. Perhaps you should hire less and pay more. I'm sure the one guy at the box office would've appreciated that.",review,wz5bTn4OyandnytIe_hOpA,1,0,1 +6md4A90THda31wTg1bB3hg,2011-01-24,4WqC6X-pmTr7sUs_puPd-w,3,"Slices or Spinato's? When you're near Tempe Marketplace and don't want to miss the movie you are about to watch you should check this place out. Slices is more of a ""New York"" style pizza where as Spinato's is more of a homemade style pizza, and I don't say that with any disrespect. In fact, if I had to suggest one of the two places I would most definitely suggest Spinato's. I'll try outline my reasoning behind this choice. + +Slices just has their ""NY"" style pizza, and to be quite honest they don't even do it that well. There are tons of places in Phoenix that do ""NY"" style pizza, and a notable place is Venezia's on Southern and Mill, not too far from Tempe Marketplace. Spinato's does have an ""NY"" style pizza and a Sicilian pizza, and the latter is actually pretty good. + +On a Friday night, this place gets somewhat packed for dine-in, but you can order ""eat-in"". So basically, you order you food, wait to be seated, and then shortly after being seated you can get your food. This worked out pretty well. The service is also good, and the staff are pretty friendly. Bathroom was small, one bathroom for the whole place, but it was clean and well kept. + +The pizza was very interesting, we got a Sicilian ""Traditional Vegetarian"" pizza. Essentially, if you could compare it to another pizza it'd be DiGiorno. Seriously though, the pizza reminded me a lot of DiGiorno's frozen pizza. This place has a unique homemade feeling to it, and even the pizza. I'm not saying its bad, its just unique. The crust is actually delicious, and I usually don't care too much about the taste of the crust, but this one actually tasted pretty good. The downside though is the way they served it, nothing to pick up slices with, and it was super easy for toppings to slide through the grill when it was warm. It became somewhat of a pain to handle the first few slices. + +This place has serious selection issues. Let's see, pork, pork, more pork, and a little bit more pork, oh and a little bit of vegetarian stuff. Ok, so where does that leave kosher meat eaters? Not at this place. If you eat kosher meat, and enjoy it on your pizza, this is not the place to come. There is literally no chicken or beef available here in terms of toppings. + +This place is pretty good and moderately priced. My significant other and I shared a 14"" sicilian, and got waters which totaled to something like $15. Certainly not a terrible price, but for the price I think we could do a little better. I suppose if we wanna catch a movie after dinner we would visit this place, but it is certainly isn't on the top of our pizza visiting list. Its good pizza, it filled me up, it was tasty, but pizza is a competitive market.",review,LHQ2fuC2RDS-Md_dN2O1IQ,1,1,0 +CMI3SF1-YwAEfUXYkKS53Q,2011-10-06,_nAG6oB3rTNh9wQBvxorrw,1,I am a huge fan of Chipotle but I will never come back to this location. The staff looks miserable and are SLOW. The cashier decided she would rather clean tables then ring people up so we waited for her to come back. Most of the tables were already clean so she could of waited to clean. The rice was crunchy like it wasn't cooked all the way and the steak was really chewy. Never again!,review,935SvZzP-ueGJ5hLfIe76Q,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-11-04,85Yomfg9hNkiEaZVXB3W2A,5,"My home airport and one of the nicest terminals in the USA! Great food, cool things to see and do, you just can't get bored here!",review,XLah_ynCwwYshCY9jc13tw,1,1,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2012-04-27,coqZoolJ4TKagE3cEUULvA,4,"I've always had good service here, but we usually do the curbside pick up - my advice is to just order a few toppings. The crust cannot handle more than one or two - and if you get the pesto, avoid getting pepperoni plus other meat, it's so greasy! (Good, but greasy). + +Love the greek salad as well as their desserts.",review,Wd8HTLOxMPRbGfY4UxTYVw,0,1,0 +BT7F6_b2AliZpOiuXy9iAA,2012-01-06,ZxdjYbqyW-2xWzK_S8cvtQ,5,"no chip manicure: no drilling, no filing, no damage, no dry time! we offer over 100 colors form opi , shellac, gelish, Experienced Tech, Professional service and Satisfaction guaranteed.",review,TUnIEHCnVLKNTl3vWpLAzQ,0,0,0 +_dVPzYGXKNg2rIsc40VtyA,2012-05-10,iMHMvQNI3HGkIMqieDw0Rw,2,"So, yesterday morning, I actually had a prego craving. I was in the mood for a smoothie for breakfast. My traditional early morning oatmeal or yogurt breakfast was not going to do. Baby wanted something else. + +I head on over to this Jack-in-the Box, which is close to work. I pull up, order my strawberry banana smoothie, and am promptly told that the ""machine is broken"". Uh...well that sucks! I pull up to the window and the person tells me that the machine is leaking (at least I think that's what he said). But would be about 10 minutes and it would be up and running. + +Now knowing the smoothie issues I had this morning, I dont think that the machine was broken. The product just wasnt ready yet.",review,9SZBVZ-mxebOVa1BlWFtWw,0,2,0 +RmA5zN-Bs89lsTuY6v8W3Q,2011-08-08,jhoKvJTf9Q3PXgqMQCtF5w,4,"The good thing about Pearl is their all-day everyday Happy Hour menu. There are about 5-6 specialty rolls on there for $7 (regular price is about $10+). I highly recommend the Fish Shticks - imitation crab rolled & fried in tempura batter, topped w/ spicy tuna and a sweet aioli. There are also the basics like California roll or Spicy Tuna roll for $4. I love their Happy Hour mini bomber menu. Get the Fruit Bomb! - vodka w/ a guava juice chaser. + +Anyway, I finally got a chance to eat there on a Sunday and take advantage of their Viva Las Vegas promotion - you get 10% off and get to roll a dice and get an additional discount or other prizes. WELL, after my cousin & I finished our dinner of Fish Shticks and the Deep V roll, we asked about the Vegas promotion. Of course they would tell me that they don't do any promotions in the months of July & August. Um, that would've been a good a disclaimer to have on your website! This would've dropped 1 star from my rating, but I give it 4 stars for the food, mini bombers, & daily happy hour menu. + +Beware of service on Friday nights though. They are terrible! They forget your food orders & are super slow to get drinks. I understand that the place is super busy on a Friday night, but that's no excuse for the waitresses to take their time flirting with guys rather than coming to check on your table.",review,OHYE-8Ne71pYtAo-hBg8AA,2,2,0 +NCtzWkMbE13r2M2Sg0wH9w,2012-07-07,t3IM41_z3w5VvrlktfsIlg,4,"Looove this place! I loved the sexy, yet simple atmosphere. I felt as though the air was cleaner somehow just walking inside. + +Let me first say that Happy Hour prices were outstanding! I have to admit, I think my favorite Happy Hour spot, StingRay, has just been outdone! + +The food was delicious! All of it! ALL...OF...IT! From the cucumber salad to their famous appetizer, the mustard leaf wrap, it is flavorful and fresh. + +The service was pretty good, but there was some confusion I think more than once, so it delayed the service a bit. When I have to stop and say, ""Hey, where's my [fill in the blank], I know the service is lacking, although I would say not enough to keep me away! + +I was really, really happy when I left here, might have been my company, but we all loved it so that is what mattered!",review,NLDDaat42UQXQCOpU4e2TA,2,3,1 +jzwQYISIeNWnZTP4eN3cAQ,2009-08-15,PxXR8zNNCK8lnv_NNe_Q_w,5,"I ordered my custom made door and it arrived recently for installation. The design was exactly to specifications, quality of construction and the finish are flawless. It took several months to get but it was worth it. This one improvement has increased the value of my home and makes my entire family feel safer.",review,f5DSsK2w-b0xQVyz8lZACw,0,0,0 +UL3OMN_c-NXHlyb97pDifA,2009-09-26,06AR1uEWUuLCn8BOqWShqA,5,"This is our DEFAULT happy hour. +I won't be reviewing their dinner as I have never had an actual meal there. + +I'm not really a beer drinker, but they have such a big selection, I always find something i like. And I've been told they have a martini specials, but you don't go to a beer place and get martinis... come on. + +Pretty much their entire appetizer selection (which is what, 20 items?) is on the half price happy hour menu. You know what that means? Four sliders and fries for FOUR dollars. (Also recommended... Hawaiian Poke Stack). + +In summary, I can wrap up Yard House in two words. +Heck. Yes.",review,troGv2y-fUP6oMyVku5jbw,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2010-04-13,hhAe991bLS4VFBvkTL1lrA,4,"They had me at Baked.Goat.Cheese. The appetizers were phenomenal, we got the Bake Goat Cheese that came with their freshly baked brick oven bread and my bf got the Romaine salad with fuji apple & bacon. But the baked cheese was by far the better of the two. + +Main courses also didn't disappoint we ordered the white fish and hanger steak. I only had a bite of the fish so I can't speak that much to it, the bf enjoyed it.. it had too much lemon in the sauce for me, but I hate lemon flavoring so it's probably better to take his word for it! The steak had this amazing sauce that accompanied it that added such a nice flavor to compliment the steak. Both entrees were pretty good size portions, especially after appetizers. And we also split a side of sweet corn polenta that we couldn't finish + +The actual restaurant its self is very open, there is an outside covered patio and a smaller patio for the bar that's out in the open. + +Valet only, complementary + +Sat Night wait time: approx 20 mins + +Clientele: On Sat night we had a big table of your typical Scottsdale Cougars, average couples and groups ranging from mid 20s to 60s and a bachelorette party of 4 girls who were barely 21 (not the typical place for a bachelorette party)",review,WPnoGr_ukB5BubC3bITkjQ,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2011-06-08,65Y9aQq3GU3xR9Ouea_2lQ,5,"Divine, the Carne Asada was so tasty, flavorful and tender. Everything we enjoyed tasted fresh and authentic. The guacamole was knock you socks off, traditional and limey, (I took my extra home and enjoyed the next day). I liked what the previous reviewer who said also that the beans and rice are not an afterthought here, they are also amazingly well executed. I am eager to get back an try the Chicken and Barbacoa as well as the roasted green chile cheese dip. If your in the area of 44th Street and Thomas, forgo the big chain of Chipotle and show this lovey Phoenix gem some love, your taste buds will not be disappointed.",review,AKr7FmLvlVgahMdtmkuNHQ,0,2,0 +ggKTLa0xVz-WGBGatscMBQ,2009-01-31,yt-Ye0Od5HrXowMq6aGjRw,4,"I'm not sure if Safeway is a national thing (let's just say I've never seen one of these babies in Manhattan), but it's definitely needed in Phoenix and Tucson. + +I would drive around the city, looking at all the strip malls and low-end manicure chop shops and wonder, ""Where the hell do people go grocery shopping?"" And while Trader Joe's is GREAT, I'd be hard-pressed to do all of my shopping there. + +So thank God for Safeway, right? Although Safeway is generally a little more expensive than other grocery stores, you can pretty much get anything you need there. This particular location was so clean it was beaming! Or was that just me? + +It had everything you'd expect from a Safeway--from a lovely floral department to a mini-Starbucks to a sizeable deli counter. + +Yay for Safeway and chain shopping!",review,ryxVMbCBq-cKOClTBAqkLg,3,5,4 +cUaaIk_3UdeSJ54CLvrW8A,2009-08-31,SJGH7mA60ugSdpUb1v7HMQ,2,"Slices Pizza is pretty good, not the best though. But if you are on Mill Ave its the best Pizza option. Uno's is around the corner and probably the worst pizza in Phoenix. If the main guy that works there was not so rude probably would have given it 3 stars. If you are in Tempe a much better Pizza place is Red Devil Pizza about 5 minutes South.",review,WEuIqh8ygm-bH81s8lwD0g,1,1,1 +GMDSE-m3yP0uCPfgkd8QSg,2011-01-22,jMb9fZyGzxn9pe6jXVhnkg,4,"I lived in Chandler for almost two years and used this gym almost daily. It is never that crowded, even on a Saturday morning or a later afternoon gym run. The machines sometimes aren't all working, but there is a maintenance guy there often. I like how the cycles are available in the empty aerobics room if there isn't a class going on. The weights and weight machines are pretty decent and again, not that crowded most of the time. The staff at this location are the friendliest (IMO) among the other 24 Hour Fitness locations in the valley. The front desk people are always saying hello and the manager is friendly too. Many of the Group X classes are a lot fun. I miss when the true yogi yoga instructor taught there. Her classes were amazing. + +Some of the personal trainers I would never ask to purchase sessions from. One of them walks like he is too cool for school and I attended a boot camp led by some of the male trainers, and it became a competition between two of them on who could do ladders the fastest. The female trainers and some of the male trainers look competent and their training sessions don't look so cookie-cutter-like, as the rest of the trainers. + +The location of this gym is not in the best area of the city, although decent. When I used to go here, I'd buy groceries at the WalMart there after.",review,RyzzI97Vq4IelbSp5wwGtg,0,0,0 +TfTlOE6h9E9o34dEkw9L_w,2011-02-13,woilfUAm7j8JjOEAIAUgmg,1,"Worst, slow service ever....especially with almost no one in the place. Food was average at best and thats being kind. Skip it if you are looking to eat or get a drink. + +Just an update: I (as well as a friend who wrote a review of the day) were contacted (I didn't see my message until today oops) and offered refunds and gift certificates. Now this seems all well and fine-I do appreciate them trying to make the most of the situation-but my friend is still waiting for a refund and/or certificate. So we shall see. If I could take away my star for more non-service then I would.",review,QiWWkgLHFRSCqMbH0qVeAg,0,0,0 +W7xb2iS4cYL14Yi5LOGSkA,2011-06-24,dtEswWEK7jKjxhhbFkR7OA,4,"The veggie sandwich was great. Not your typical sandwich with veggies in place of meat. Taste was actually taken into account. My meat eating friends even order the veggie sandwich. It's that good. +The waitress was very nice, personable and friendly.",review,mLUPkvjsKFsafrCG-MtS7w,0,0,0 +oQdSznCeRdH41yWpQ0rlYg,2008-10-05,z5QUoLi0VLMDeQR_6x2UqA,4,"Nice views of South Mountain, lots of elevation changes and some tricky par 3's make this a very solid muni and probably the toughest in town. + +First my two complaints: the chipping area should have a few more holes with a slightly larger green, and the neighborhood is atrocious. + +Aguila has four features not often found at municipal golf courses: +1) You need to drive the ball well to score well here. From a lot the tee boxes, the driving area often looks smaller than it is; so, confidence with the big stick is key. +2) Absence of generous flat lies in the fairway; even if you drive the ball well, you are not always rewarded and are sometimes faced with side-hill lies. +3) Very tough holes #9 and #18. Hey, I like to score low as much as the next guy, but the thing about city courses is that they often give you easy closing holes with a good birdie chance; NOT the case here. Rated 3 and 2 handicaps respectably, #9 and #18 take advantage of the same water hazard (similar to the closing holes at Karsten @ ASU) and put in play some penal, deep fairway bunkers that require precision drives and good approach shots. #18 plays 470 yds+ from the tips, so if you hit a bomb, you still don't have a wedge in your hand. +4) Two true risk / reward par 4's - both with water, both greens are drivable from the tee. #8 is not a guaranteed birdie from the greenside bunkers, but they're a good bailout. #17 is longer and is a slightly more daunting drive with a more generous bailout option to the right, these are great holes. + +A tip: +Take advantage of the par 5's; all but the last one is reachable in two (at least, that's been my experience). There are only two par 3's that I would consider good birdie chances (#13 and #16), so if you can roll in a few putts, you're set. + +Go past Tent City, drive further south towards South Mountain, and you'll find a nice municipal course in South Phoenix.",review,dQO0tQISZyb9L4d5ASnXyQ,0,0,0 +_ilvDGnUKCpfp4qHvQODlA,2010-01-12,NhnDYtXjlSjfb4DYhWtWrQ,1,"I had not eaten in about 12 hours since we were at the hospital having a baby... and this pizza STILL tasted horrible. + +Barely average fast food quality and taste. Avoid!",review,KucBnMrhalzxnD9AWrxwYQ,0,0,0 +MYj5f-QxtGeKlhVVx1RD4g,2012-05-15,mCC7uXK8v20kPzl3MdHbrQ,4,"Let me be clear on one thing: I love this place. The DJ's they have make it a lot of fun and the movie selections are great. In addition, their beer and wine selections are quite tasty. + +So, why not 5 stars? I think that the crowd just has to pick up, really. I know they're currently working on adding new menu items and movie selections to the place, but right now, it can just be dead. I went in there most recently last Friday. There was literally only one other group of people there. And I use the term ""group of people"" loosely, considering it was a group of two. We ended up leaving, because I can spend time with just my group of friends at my house if I wanted to and we were looking more to have an outing. However, I wanted the FilmBar atmosphere and experience that I certainly get on Saturday nights and it just was not there on Friday. + +DO go on Saturday nights. DJentrification is great and the vibe is wonderful. BUT...more importantly...go on other days!!! This place needs to fill up. Go see a movie, the theater is great! Get some drinks for happy hour. Go on Friday night and Sunday night! It's a nice bar that really has more of a hip lounge kind of feel. + +And the great part is that they're improving every day. I think they're only about a year old and it sometimes takes time. But the staff is great, the drinks are perfectly chosen, and the music is generally pretty amazing.",review,bixj1Uu6cEam1J0BtFAK_Q,1,1,0 +8m08a9xJKmANwmeuR-0bPA,2012-07-14,kJYBZ-nZtNFwmOwsxP6BIA,3,"Was in the mood for a nice, classic dirty martini last night and R.J. (bartender) filled the void perfectly. Served with a skewer of small, delicious Kalamata olives. This was a pleasant twist to the big, green olives. The martini was clean, smooth and perfectly balanced. Thumbs up R.J.! + +On the other hand, the Vegetarian Falafel burger that I ordered was thumbs...sideways. I've had falafel burgers and traditional fried falafel countless times before so I was stoked to see it on their menu. My experience was a disappointment in flavor and texture. The burger was completely bland and could have used a little extra texture. The burger is touted as Michael Mina's mother's recipe. So I really hate to give it a negative review. Perhaps Chef Mina should step Mom's recipe up a notch! #Just saying. + +When my server asked how my food was, I let him know that I wasn't a fan. His response was, ""Ok, I'll let the chef know"" and sheepishly walked away. Huh!??? That's it? Our server was very pleasant and attentive, but when it came to responding to ""I don't care for my meal"" he could have done better. And frankly, if I wasn't with business associates, I would have sent the burger back. I felt that instead of simply saying ""I'll let the Chef know"" he should have asked if he could bring me something else. I accidentally skipped lunch and starving, so I ate the burger...reluctantly. + +I've been to Bourbon a few times but always just sit in the bar which I think has great ambiance. The last time I was there, me and my friend ordered classic cheeseburgers. We asked for them to be cooked medium. We got medium-well. The beef is high quality, so the taste was good and we didn't complain. But still, we ASKED for medium. The red onion rings were delish however. + +Question is: can I get a consistent meal at Bourbon Steak? Jury is still out.",review,4IxLt4QvCsJEdaNvH9QApw,0,1,1 +phe9voJ_LPAtqZaosM4Ibw,2010-12-11,oMLXv3OYs_c1F1RJ2wwTUw,3,"So let me start by saying the latte was very good, best I've had in this area at least. Much better than Starbucks, even though that's not a very high standard but one that everyone can relate to. + +Good atmosphere, comfortable seat and lots of it... The live music was deceiving as it looked good for the out side (don't we all) and sounded horrible (but I'm not reviewing that am I) :) + +I was actually helped by a guy there who matched the place well. Good service with a grin and not the overly caffeinated pep talk baristas of a certain chain often feel pressured to give. + +I'll be back if only for the latte.",review,HPdjU_p28b8UYhr7bNOmOw,0,1,0 +k_aOcqWOHWprjs7ykdzlAQ,2011-08-09,werpmtXZTcjYZZROg1qq-Q,3,"I appreciate any airport restaurant that doesn't feel over-crowded or cramped. We usually have to stop in Phoenix for our layover going to and from California from Texas, so I think this might be our new dinner spot. It's big, plenty of seating, and clean. + +I love the affordable menu options...especially for being in an airport. My husband and I both got the taco plates (mine steak and his fish) which come with two soft corn tortilla tacos, black beans, and rice. The tacos were tasty but the rice and beans were flavorless and the rice seemed a bit undercooked. After I drenched everything with hot sauce I was able to finish my meal. + +Although I love the cheap food options (around $6 for a taco or burrito meal), the drinks were super expensive. Our Bloody Mary was $11! My mango fresca (non-alcoholic) was about $4. + +The service was good and we don't really have any complaints. This is a good option for someone looking for something not too greasy or heavy.",review,69Rezd3L0A0H7S7HibDQ1A,0,0,0 +pXE8u5EBP_v1HbPnr0U6xQ,2012-02-07,LX41B_OHLMwDh-uym7I8Gw,1,"I took my kitty to the Beat the Heat low cost spay event and she came home with a hematoma in her ear that was NOT there when I took her there in the morning. Surprise, surprise...they can recommend a vet to take her to. I'm pretty mad about this.",review,RL3Z3J-W70oDhGuuKbyS-g,0,0,0 +aeRyndix1wheBlff2FBsMg,2011-03-08,lfbMLt1oejIpfGw4sU7xTA,5,"I am new to Jamba, however i am surprised at the AMAZING customer service that this store dishes out. One of the workers there has always noticed me as a regular customer. He has a stellar personality, gave me a 20% off card and sometimes has my order ready by the time i finish paying the cashier. He's always very bright and smiling or laughing with his co-workers, I believe his name is Christian. He suggested a banana oatmeal with peanut butter the other morning and i have to say that it has been the most incredible oatmeal i have ever had!!! (You must try this) At times i visit the store twice a day simply because i cannot get enough Jamba Juice!!",review,jaagaD0kk6dI4KFzyYxjfA,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2010-05-30,0ivc3MeeKsHP6QLsPxqa2Q,5,"I stopped by here last night after the Suns game. It was cheap and fast. Also, it was by far the best carne asada I have ever tasted. It was tender and juicy, and not at all rubbery. I know the last time I had carne asada it was rubbery, but that was also from a 'bertos joint. I enjoyed the way this place is set up. Walk up to the counter, order and they bring you your food. It is quick and efficient. We got the dinner for 2, 2 tacos, 2 burritos, chips and drinks for $20. The tacos were great, as were the burros. I will definitely be back. + +Oh the 5 stars are specifically for the quick, efficient service... and the BEST carne asada around.",review,OhZEYs9jzyiTaSu_CfeVUA,0,0,0 +6Tt0mGKbMoAz1GsjkVhbMQ,2010-05-08,Iryqh4GJ0d5AeRuE9n6fAQ,4,"The Original Burrito Co. is quickly becoming my favorite burrito place. The owner came to eat at the restaurant I work at and she told me to come by and try this place out and being a huge fan of Mexican food I had to go. The burritos are really huge and really well priced. I love the California burrito with Chicken, add guacamole. The chicken is so moist and tender. I have tried the carne asada as well, but when I got it it was full of cilantro and jalapenos, which were just overbearing, but I'm thinking it could have been a bad day and will have to try it again. Downside for me would be that the salsa is not spicy at all. It tastes very good, but I am a huge fan of spicy, especially on Mexican food, and its a bummer for me when a place does not offer a very spicy salsa.",review,1uwqR1r9nMDgI6RZT_bL2w,1,2,0 +TwMfahsPHFnkLiqqvyalAQ,2011-03-28,ZvJF8kFM1hdigaecIR2h0Q,5,"Great sports bar! Shows most UFC, Boxing and WWE pay per views. Friendly staff, good food.... draft beer selection could be a little better, but other than that, one of my favorite local pubs.",review,Q6H8EfK1mAfQ1nB6GSeMTg,0,0,0 +oaakO-X7uOXNxqsxjDSKfg,2012-07-17,1h3koMjfxRMYLTZhTMEbLw,4,"We came to Half Moon Sports Grill to watch the UFC Fight. It's a nice big place, yet we had to get there early since it filled up quick. + +The place is fun, the girls wear short skirts and knee socks. They have a full list of local beers in bottles and on draft. They boast a monthly special, which July's is a burger for 1/2 price if you buy a drink. That's almost $4.50 for a giant burger with fries. Unfortunately I was full from lunch and did some light snacking with my beer drinking. + +First up, I wanted the Watermelon Wheat - Perfect for any hot Arizona day (which is most of them) http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#MrdXI7O_NSKVvqgGTcIYOA + +Then, the Dirty Guera Blonde Ale, because I love blonde ales and cute names. It was great and encouraged us to visit Nimbus the next day! http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#5nzmTTMOmGj_sVIxkTM51Q + +In between, we ordered a couple appetizers, a gigantic pretzel that was served with both queso and mustard. I love to dipp! http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#lMQuuVAuKQAL-RKfEYkPWg And my guy ordered the Prime Rib Sliders (4) served with carmalized onions, french dip sauce and horseradish. http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#seP7cR-l6f3xjnJtzFQIxA That was a meal in itself, really. + +For Dessert, I ordered the White Chocolate Ale which was by far the most dessert tasting beers I have ever tried. It was so much like a sweet white chcolate, you really need to savor every sip. If you see this anywhere, order it and thank me later. http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#1jzaMBgdEa9YyVasa8rukQ + +After all that, I needed a couple sugar free Red Bulls to snap myself back in action. We had a fight to watch and I was not going to be the first to TAP OUT.",review,y8ZCNq8HSGDSx7Vm-NYEOw,4,8,1 +2h9LsLPdJ7OvZrYJZhVdAw,2012-07-24,fFHC0sJNixuBFAi0CeAA_w,5,good place to kill an evening. I used to spend my time here many moons ago. good coffee at good prices.,review,Ow8iWYjwgn7DzOU6yCBvXw,0,0,0 +vWnlScr9y2F6_ctDJZ6XLg,2011-05-09,TRj12tpfNpD_7rV1GEUoiw,4,"Great ambiance, good food. My husband and I had the Southwest Benedict and Eggs Benedict, both were delicious. I do wish the eggs were a bit more runny and the food was warmer, but the presentation was beautiful.",review,p3QX1ZoFOCrin4ojNOVkBg,0,0,0 +QCNo68hRVU3wytJ0oKA3KQ,2009-02-20,gqbCVFKy4w9N57fgTn7OFw,5,"Do you hate shaving as much as I do? Do you find waxing too painful and expensive every 6-8 weeks? Well I have the answer for you!!! Go see Cindy Semerdjian at Cosmetic Laser Solutions. I was introduced to Cindy through a friend AND NOW I AM HOOKED!!! Not only do I no longer have hair, it is very inexpensive! How much did it cost for you to get waxed...what would you say if I told you for a few dollars more the hair would be gone...PERMANENTLY! + +Cindy offers a free initial consultation. A few prices that I have experienced on a per session basis is: underarm - $100 ; bikini (brazilian) - $100; full leg (both) - $250. + +I highly, highly recommend going to see Cindy! Tell her Jillian sent you! + +So get started today to get ready for summer!",review,BVZ7iTR_nI3jzdQidze1UQ,3,5,2 +kay6xcNSE93fM96uHhA6ug,2012-02-03,xtuAHT4aRsAXUhfqV7CoGg,5,This place is awesome they r going to replace a bad tire for me for free that another discount tire put on they r awesome,review,JW9m7KU5QAESEWv4OKBHSA,1,1,0 +znmvCpcwxYk_kYCqtUFt5Q,2012-05-10,xISa9KeJRCRlPTuYmp1qhQ,4,"I ordered takeout from here recently...and it was delicious! I phoned in my order during a busy dinner time, so it was a bit chaotic and the food took a longer than they had quoted me, but it was worth the wait. I had the imperial rolls, which are like veggie-filled non-greasy egg rolls, and the pad thai. I wasn't sure about a vegetarian pad thai without chicken/shrimp, but neither was missed because the flavor was amazing. Definitely will be ordering food from here again--just maybe during a less busy time.",review,nEL-_kLeN37CSR9fXFY4zw,0,1,0 +QHyqYUZ0WdxHYPAenIuLjw,2006-08-22,JFJRcKeqNObG_zk_jUJgiw,4,"Phoenix has pretty slim pickings when it comes to good pizza, or at least pizza that I'm accustomed to. Rosati's, while not quite what I'm used to, is the best representation of Chicago style pizza that I've found. + +The Chicago style deep dish is good. The toppings, especially the sausage, are plentiful and tasty and the sauce is good. I think the crust is what is a bit off. + +Overall, Rosati's is still my choice for pizza in the valley.",review,4zinPJ38-WxjPPomn7CPAQ,0,0,0 +NYBx4sdSVrN-I5Q8RfLMPg,2012-07-07,jXM6_jAixq0rj3bOmZNDdQ,4,"The parking lot is too small so watch out for your car doors. + +The seafood is about as authentic as it gets in the US. Arizonans cook their seafood like New Yorkers cook their steaks: rare = medium, and medium = shriveled. Still, the shrimp & octopus cocktail was tender & plump. The peppers stuffed with shrimp were savory. The rice was not sticky and the refried beans didn't taste like they had lard. But I didn't ask. + +I would do this again, but next time I'll bring a friend. It's a very social place, 4 girlfriends chatted it up before, during and after I left.",review,qwmfYLq3UGoR6c4-MVugYQ,0,1,1 +GoS_IBdFdjZrQ7J2LSrCMA,2012-07-09,EFsIM_LA8jOwrlGyFrJ5mA,5,"This is the pub burger you have been looking for. Nothing fancy, just a good solid burger with a ice cold beer. Be aware this is cash only, but unless you fall in you wont need much.",review,nP2HH7Qe5UtSsjeEH3NZuQ,0,2,0 +m9HmPct1Hxpx3IhK_HMXJw,2012-05-25,FQauZH0pL52wlkquBCxuPQ,4,"I love SAIL INN! Getting past the $8-10 cover on weekends is the hard part, but usually Sail delivers, 1) AMAZING LOCAL BANDS, 2) Laid back hippie, hipster,arty, folk vibe 2) cheap drinks, LOVE the little pitchers of beer - budlite for $4.25 on certain nights. Phoenix has a pretty lame music scene, but at least at Sail Inn you can always find decent live music and a fun crowd.",review,tiyg_cQaPdUuSG95Xpi_sA,1,2,0 +skhsqXMojhNAXZbsMZB8uA,2012-03-07,mDKTRuPb4i9rAitkiYLBrA,5,Wow these folks know customer service! We like the fact there are always managers on the floor keeping things moving and tables clean. Food is good and at a good price point. A nice friendly well run place!,review,rq46hVxWltv4OmgWN4_2hg,0,0,0 +3rJE7qliy8_ylKhY5FdlIw,2011-09-28,5MCwMqdQKHd_51igQqGIIQ,4,"Blue Saguaro has been doing the same menu of breakfast sandwiches (seriously delicious - toasted sourdough drenched in salty butter, egg over medium, crispy bacon and melty American but not Kraft cheese) and lunch sandwiches & salads for over 10 years. There's a reason that it hasn't really changed: It works. + +The lunch menu has specialty vs regular sandwiches. Most of the specialty are loaded up with sandwich fixings you're not going to get in a chain shop - cream cheese, sprouts, avocado that wasn't spread on thinner than mustard. The bread is bakery quality and there's a decent selection. The ambience is non existent, but when you're grabbing lunch on the run it really doesn't matter. + +They are super fast, but that may be because I always tip a buck. :)",review,EScPF4SpSncPwC3bf0VW3g,0,0,0 +8Cg98L22BEcAD3gQq3QsPA,2012-04-13,RmaqgLjjr_TEoyCXIBlIew,4,"My hubby and I go almost ever Friday for happy hour. We love the chicken nachos! It's also one of the few places that has kept Blue Moon on draft instead of switching to Shock Top (a bonus for my husband). They recently expanded their wine list to my delight and I've been having fun giving the new vino a try. +The staff and manager are consistently friendly and the food is consistently good! Try the BBQ chicken pizza or the steak salad! Yum!",review,9kXVOK3vl17j0SC-Q5LKzw,0,0,0 +3zzj54L5Ya1777Nm7ewGVg,2011-02-03,g_ey_PlOVqmOW_NiM-e9jw,5,This location is great and there grooming service is good as well.,review,bX5mIrDlyD8ZabvF_An7FA,0,0,0 +OSL98Keoc2FSNx4a3ge5Uw,2011-05-27,8NP3qq5Yft8JA92o8vXxLg,2,"Since this was a little local spot I always passed, I decided to give it a try one day. The décor is so beyond needing an update, it needs a complete makeover. If you had Mr. Ramsey visit, he would say, ""Oh God...what were you thinking"". The location is great and I think that the restaurant has potential to do better than it is. The prices were about average in comparison to other breakfast restaurants in the area and the menu had a wide selection of breakfast goodies. The food was extremely average...I would have to compare it to the quality and creativity of Denny's. Nothing special, and for $30.00 for breakfast for two...I would not go back. There are so many great restaurants in the area and I like to support local business but this place just needs to start from scratch to make it great.",review,PnEAXZ7WyJMYBr9IIulh5Q,0,1,0 +G9LwkTSdKOyOGqd5BbuIkA,2008-10-23,dhpPqFtVPpefS6GHQRDQag,3,"I am going to give Aunty Chiladas 3 stars only because I have gone there since I was like 10. This place has been a staple in the valley before the 51 went by etc etc. It definitely looks like it has been there for a while and needs a good asthetic cleaning. Our table and chairs were sticky and it was pretty dirty outside on the patio. There were chairs and miscellaneous items on the outside of the restaurant and it needs some TLC. + +Chips (flour) are good but salsa has black olives (yuk, personal preference) and the hot stuff tasted like it had vinegar in it. It has a great patio for daytime drinking. Overall the food is above average. + +I ordered the fish tacos and they were good. My accomplice ordered a combo with your typical rice, beans, enchilada, taco etc. The food was hot and good. It didn't have a wow factor but the price was good and worth the money. + +Holy smokes.......The service was awful. I am not going to mention any names but it was slow in terms of business and even slower in terms of service. I hope that they do not correlate but they usually do. C'mon Aunty you are better than this!!!!!! + +If you live in the neighborhood then it is worth going here. I probably will not make the drive again. Good luck Aunt Chiladas.",review,A9x6WO4DJuHzT2U_fT9Jhw,0,0,0 +OSL98Keoc2FSNx4a3ge5Uw,2008-01-01,BpKazDy9V-ITVR5vJfqqog,4,"I'm not sure how I've missed trying this place, after over a decade of living in the Valley, partly as an ASU student in need of a good hang-over recovery joint. I can't believe I relied exclusively on the IHOP on Apache Blvd, all those years in Tempe. Dammit! + +It was packed on the New Year's Day morning I came here with a friend. The service was a bit slow but on par with my expectations for a jam-packed popular breakfast joint on New Year's Day. I ordered a calorie-laden Cajun skillet with scrambled eggs. I'm knocking off a star because the chicken pieces were too dry for my taste. But the rest of the skillet was very good. The service was friendly and professional. Wildcats beware, lots of ASU students within.",review,17PPxx8RxjOUD_nQZ1aHEw,3,2,0 +pM96dn6jrJg2V7Aj0trPCg,2010-03-10,UqYGt4v1wETk7_NFA_ziig,5,"If you are looking for a good vet, you have to read this. + +If you are looking for a vet that is COMPETENT, a vet that REALLY CARES about animals and a vet that is INEXPENSIVE and reasonably priced, then you really have to check out Dr. Howard at Grayhawk Animal Hospital in North Scottsdale. He is worth the trip. + +I am so impressed by Dr. Howard and his EXCEPTIONAL STAFF. Every time we come here we leave satisfied beyond our expectations. + +Since my last review, we have used them two more times. Once when Spencer got neutered, and once when he had to have his nails trimmed. I have to say I am so very impressed. I was holding back on reviewing them again until I could be certain that it would be an accurate review and to be certain that they are consistent with their outstanding service and pricing. Well, I can say confidently now that they most certainly are. + +Spencer was neutered here some time ago with no complications and no outrageous fees. When he was done his procedure, I received a happy, completely alert dog back from them. His incision was minimal, the sutures were tight and he healed quickly. It was done so well that he did not even lick at the area. It was like nothing ever happened. + +More recently, Spencer needed his nails trimmed, and because he was a rescued dog from a very abusive situation, he does not trust people and has a phobia to anyone touching his tail or feet. It is so bad that when I try to nicely, calmly approach him to trim his nails, he urinates all over himself and hides for the rest of the day. Spencer was really abused and as a result, grooming is really difficult. + +Well, I discussed this with the doctor's office and we decided that sedation (unfortunately) was our only option. His nails were getting too long and painful and something needed to be done. Well, we just got him back from the office and they were so good about it that they did not even have to sedate him. I am impressed, but what I am more impressed with is that they first tried to trim his nails without using sedation and had his best interest in mind. They really care about the animals they treat. + +They could have sedated him. It would have been quicker and easier and more profitable for them, but they didn't. They really did not want to use a drug on him if they did not have to - and so they didn't. They trimmed his nails up well and did not even cut into the quick or make him bleed. He left there, again and as usual, a happy, well taken care of dog. And we left there ecstatic! The bill was so inexpensive and Spencer was taken care of so well - like he was their dog. I just can't say enough good things about this Veterinary Office. + +I think that everyone knows that good medical professionals are hard to find - for humans and/or animals. So often, they just don't care about the patient. Well, not here. It appears to be their top priority. Dr. Howard is a very happy, well educated man and it shows in his practice in every way - right down to all of the people he hires (they are all equally happy and competent!). You will not be disappointed if you go here. They are honest and kind and not out to rip you off or get as much money from you as they can. They are truly exceptional. So if you need honest, competent & friendly care at very affordable prices, you owe it to yourself and your pet to make the trip over to see Dr. Howard at Grayhawk animal hospital. You will be in good hands! You will save money, and you won't be disappointed in the least. + +They are truly exceptional, but that is the end result of really caring, really liking your profession and really knowing what you are doing... And we love them for it!",review,nZ9XFVETN4hxdK4qPb-T3Q,5,6,2 +i0Y3L91iwCB8acBBqdh9Uw,2012-10-05,j2rc1LRXoexFS92Pw2BIjw,2,"Traveled for work and we have a corporate agreement with them. I arrived at the hotel and was informed that they did not have my King bed available, I never get how you reserve a room and then they are out. I asked if I could get an upgrade, which they obliged and put me on the executive business floor. The floor smelled of cigarette smoke. The hotel needs some repairs overall, which they said they were going to remodel. Room was clean, some dirt behind the bed, yes I look everywhere and the little closet was in very rough shape. What I was really upset about is that these hotels and our agreement is supposed to have a Sleep Number bed. It's even advertised. Nope, not in the executive floor rooms. Makes sense right? My mattress was worn and not comfortable at all, prob the worst night sleep ever. Was not rested for the big meeting the next day. IAsk for the Sleep number!",review,rzDdV9IAK7U-oQXInkCuAA,0,0,0 +4waggbCK-MSE9dbIdSMfPA,2009-02-06,r--duN806CrpmHfAIXx0dw,4,"My prom date brought me here 10 years ago. Hmm...I wonder what he was expecting at the end of the night. Although he thought that tanning until he was as red as a lobster was the new black this was one of his better judgment calls. + +We had a window seat and I mesmerized him with fascinating facts about the city, which were on little plaques along the windows. It really took him until the end of dinner to figure it out. Anyway, I am sure the menu has changed, but the salad and shrimp with angel hair pasta I had that night were yummy. Cool view. I will have to come back sometime to see how the valley has changed from this view.",review,EKwGhgLrM18ErVKKeYE2UA,1,2,3 +vi3TSM3KR-OW7LlHJ6QmEQ,2010-04-03,X-P53WWo1I2CClf9oMqWEw,3,"Rolling Hills is two executive courses, and great for a quick cheap round of golf. Totally not an out of towner destination course, but a nice little local fave of mine. The front nine is the old course, and is a bit like mini-golfing, a fun distraction. You even get to hear the occasional strange animal sound from the zoo hidden behind the trees along a couple holes. The back nine is a newer build, and is way more challenging and scenic. Either way they both give a fantastic view of the valley, and it's a great place to play a quick 9 holes after work in just over an hour + +Only eaten at the clubhouse once, but both me and my bud liked our burgers, and it sits next to the 9th green, which is great for a little free entertainment.",review,VcN9i7sPrGSOn4BnpOJ9tQ,0,0,0 +CEs_oJMtLsll3xBM9slBQQ,2011-10-18,LCg7QyV_d5wJLOSE-Njkgg,5,Best in town!!,review,nGvxLe5jdJGbxTYt9XjScw,0,0,0 +U_aP0IJdn36wYwpiCtQCag,2011-11-25,9WKwgL9tgA5u9dhyC3WsGA,2,"Okay now this is a large chain and on average it's okay to good! and I have been to this place many, many times, but I have to say the last time I went there for the happy hour hot wings (they were dry, over cooked) then I had ordered a steak and seafood combo (Cajun) something but after my second brew I thought it was me, so I had the wife and my son taste it man was it salty!!!! It tasted like they dropped the salt shaker in the food, but my waitress assured me that could not have happened ""because all there sauces come in bags and are pre-made"" (Gross, that did it for me) I was outta there with the quickness...",review,LoYy8ruCxPZZPF78_Bu2eQ,0,1,0 +R1kKjAO5kZO6d0gQGqrvGA,2010-12-19,Kfz5DRQfGcmJltCZf3JdHQ,1,"I had such a nice experience here - Classic Chicken - the first time that I really wanted to go back. Second time, onion strings were so greasy I couldn't eat them, burger was okay. Third time, yesterday? Enough to say we wont go back. Ever. + +Lovely and I sat in a sticky booth, he ordered 1/3 lb classic, me the bbq grilled chicken - both with a small soda. Soda was disgusting, flat, watery, gross. Upon the lovely's complaint, the bus boy brought him bottled water. I took one bite of my sandwich and was assaulted by hair. Gak. We got up and left our food. Jeff told the manager about the food and the soda, we got our money back with an apology saying they were sorry we 'didn't have a better experience'. Um. A better experience??? Seriously? 15 dollars? + +Ugh.",review,9vxUUOoasnu8gtoXRwAhYw,0,1,0 +9yq9xzYkYJZamqCXZ_wNvw,2012-08-11,JquvaBH5m4yY34g40kHcKg,5,Heather is awesome. She did my initial set of lashes and I've already gone back for a fill. Her prices are great and she does beautiful work! The compliments are rolling in. Absolutely recommend!,review,zcgggMqoYxQxLN9zwKE7vg,0,1,0 +quuw7VE2acuLEve_LVKbRw,2011-08-19,qfa7b9bEWVxXkqGV7V4dwQ,3,"I am an avid quilter and moved here recently. I am on the hunt for a new quilt shop and I went here, despite the ""grandma quilt shop"" name lol. The staff was VERY nice and helpful and friendly. The shop a little on the small side, which made me surprised to find that they have a very decent selection of contemporary fabrics! My only disappointment is that that they don't have fat quarters cut of each of the fabrics, though they will cut fat quarters - but that's not something I want to have to wait around for. + +They carry a small selection of minky and home dec fabrics as well. I will definitely be back there!",review,ef3cFjUXJRFTvsDv1gYhUQ,0,0,0 +1NZLxU5WvB5roPFzneAlLw,2010-07-21,xuhlhYUPLBOHMFiYxEPtEw,5,I love love Barrio Cafe. The food is amazing and it is very cute and artsy.,review,dFayEgcd7FUN-DFdHRYE0Q,0,2,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-05-29,RMDKzZ_vailjj018foMniQ,5,"Chino Bandido is a staple for my sister and I. I'm not going to lie, when describing this place I feel the need to mention that while it's not much to look at on the outside--inside it delivers some of my favorite guilty pleasures. + +I encourage anyone who is trying this place for the first time to take a few minutes and allow the staff to guide you thru what they have to offer. With their complimentary taste test , you can try a few of their most popular dishes and learn how to order off of their moderately challenging menu (but once you get it, its super easy). I ALWAYS go for the combination of double jade red chicken, refried beans, and plain fried rice. + +The snickerdoodle at the end is perfectly baked. Every time. Love this place.",review,HV9LHnhcpKerGqmLk0MpAw,0,3,0 +3tk6Syyz5i967Ifuz_4o3w,2010-04-03,10gS06WUK_JXqQ8Arn9QyA,3,"I was craving something last night and couldn't figure out what I wanted. I happened to stumble across this place and decided to give it a try. I ordered the house fried rice and some crab rangoon. Now the crab rangoon were pretty good and I was actually bummed that you only got four but it was only about $2.50 so I cannot complain too much. The fried rice was just ok. For it to be house friend rice, which comes with beef, chicken, pork and shrimp, I can understand not having alot of the shrimp but it didn't have much of anything. I mean it tasted ok, but I was hoping for a little bit more meat than there was. It was a quick meal considering I didn't really know what I wanted to eat anyway. I may give it another try and hope that it's a little better next time.",review,4E_nPWw89FLFHdNsEgMH-g,0,0,0 +5kRug3bEienrpovtPRVVwg,2008-12-09,KybT4r6lqepJXlB4CigcKw,4,"Only went to the downstairs bar, but cannot wait to return! Very cool with the rock and copper features and leather couches. We sat at the bar and were served drinks that you pour yourself. Is this a new trend? He gave us little glass bottles of tonic and coke with little spoons to stir our drinks with. Those little spoons were so cute I was almost tempted to put them in my purse. If another couple hadn't been hogging the fireplace the whole time, we would have sat there. Maybe next time. We'll try to food too.",review,Q96IRvil6RNgdLmGKuh81A,3,4,1 +N9iPqBRI47bewLAeKBlkIg,2008-06-16,TYY00Y2MVjq7CeQqd0pKdA,2,"I have been here a couple of times as it is about a block from where I live. It is your typical neighborhood bar. That is, not a lot of people, average prices, okay happy hour. + +Their menu is bar food. Burgers, Wings, Fries, and so on. The have the standard domestics on tap (Bud, Coors, Miller etc). + +A lot of times they have live music at 9 or 10. If this is for you then you have the chance to see an exclusive performance since not a lot of patrons are there. However, it gets pretty loud. So if this does not sound like your thing, be aware what time it is. + +Service is pretty bad if you are in the ""restaurant"" part. The only time I have eaten at a table the bartender was also our server. Needless to say slow is an understatement. + +The only reason I go here is so I don't have to drive anywhere. 2 stars because I have experienced better, much better. My experiences tells e that the Waterfront is just a corner bar. Nothing Special.",review,twmCrdNA6futrpytkPOZsw,0,2,1 +ukUuBT8zVXNC7Zz34cctAw,2010-04-12,HDdfhJe1KHescx48zfFuuA,4,Decent BBQ food but nothing to scream about... but be prepared to have a TON of food to eat.,review,dym75Mq5WpaJgXXOzQn_2g,0,0,0 +L-GfuOmn9mv55571uXvf2A,2010-04-13,0cOUqB5HKyYmCwX4NHLH5A,5,"I'm a pho snob, my hitlist is impressive. In Olympia, I ate pho literally every single day. Test me, wannabe purists... + +Nam Sao is the best. The guy always working and seeming to make the food is so quick and super sweet. Great service, my drink never goes empty, and the table is set in traditional pho-joint style: a metal caddy with spoons, forks [...], chopsticks, napkins, and all the delicious condiments. + +The menu is enormous, so if you happen to be in the mood for something other than their glorious, never-watered-down noodle soup, you can try something else. The spring rolls, I love them. The boba tea is great too, I've had it thicker and more rich at Pho Hoa in Oly but I like the less creamy variety served at Nam Sao. + +Fast service, cheap filling meal, wonderful server.. I literally cannot think of anything bad to say about Nam Sao, except it's so small it's kind of hard to find if you're new to the spot. Just go to the right of Fry's and you'll see this little piece of heaven with its lights on, welcoming you in.",review,eYoB6mEOCkraWM2vhYikvQ,2,5,0 +RHYJho19op3wdNfJOFUR0A,2011-02-15,OpCNsgN2IIVtT3G_0IBG6g,5,"Great quality, great prices. If only they had longer hours, delivery of large items, and a gift registry, it'd be heaven.",review,zT0RnW-yPhXyz_GNap9Zpw,0,0,0 +7UTlEVHU5v2xBLdkGghyzQ,2009-07-10,501jxj1m3ftyyGVVGITZPA,4,"Chuy's is one of those places that doesn't quite qualify as a dive bar/restaurant, but is close enough to count. I like Chuy's. It's like a mini-vacation every time you go. Part beach bar, part pseudo-tiki (any place that has thatch palm fronds above the bar gets a star in my book!), you'll feel like you're on a beach somewhere every time you visit. +It's nice to have one within walking distance to the office, to allow for a little exercise to and from and still have a good meal. Their prices are reasonable. I've been struggling to find a lunch under $10 these days, and the Tri-tip sandwich and an iced tea will set you back a ten spot and some change. The food is good, did I mention that? The staff is friendly, and they finally did away with the cheap-o' paper towels and put real napkin dispensers on each table...FTW! +There's an unlimited chips and salsa bar, I like the cabo sauce the best for my chips. I always add a little Baja sauce; you have to ask for it at the counter, to whatever I'm enjoying. Today it happened to be the Tri-tip sandwich. I give it 4 out of 5 stars because even though they have to-go cups, this is Phoenix. It is 108* outside and the full glass of iced tea I left the restaurant with was gone by the time I got back to the office. There should be a City-wide ordinance that all restaurants must supply patrons with at least a 32 oz. to-go cup during working hours. All right, I confess that might be a little much. The only down-side to Chuy's at lunch I've found so far is having to go back to work afterwards and not being able to enjoy a Corona with my lunch. That's okay though, it just one more reason to go back.",review,b9XdpPlzZCVimhNb0z8CNA,4,2,3 +jbKVbSz51F8IcewsiRQu4A,2008-01-24,9OjXGwgJvvVNkUhQVmOWKA,3,"Having grown up in Hong Kong and having eaten dim sum in London, NY, LA, SF and Vancouver (actually Richmond), I can confidently say I know my dim sum. + +Good selection of well-executed dim sum when the carts actually come around and there's anything left in it. I'd give it 4 stars for food but the wait definitely detracted from the whole experience. + +I think the problem with Golden Buddha is that they can't handle the heavy flow on weekends. There's not enough regular dim sum eaters like LA that can sustain a steady flow of diners throughout the week, forcing restaurants like Golden Buddha to depend heavily on extra part-time help on weekends. + +Dim sum takes serious skill so the chef still ends up doing most of the work. When we looked into the kitchen, we saw a Chinese woman doing most of the cooking herself. No wonder it took forever for a cart to come out and when it does, it's swarmed on by a pack of vultures. + +If you're willing to eat at a more simply decorated place with a smaller menu, I'd highly recommend China Chan. It's much more relaxed - usually no wait on weekends. An experienced chef makes all the dim sum himself so the menu's much shorter but all the classics are on it. Anything steamed is made to order so is very fresh.",review,8WQubmP7G0NM3IyzyMnCEA,0,1,1 +w5XcgWwGAN21Ly2HeU48IQ,2011-11-04,bypBY2P-0jB49qwTOP8r8A,2,"For what it is, cheap easy family friendly food with a bit of a yuppie bend, its not bad. + +But they messed up a grilled cheese sandwich. +How do you do that? My mom, god bless her, can't cook to save her life. None the less, she can still make a pretty damn good grilled cheese. + +Its not rocket science. Let me walk Sauce through this: +- Cut slices of cheese. Precut is pretty gross. +- Put bread around cheese. +- Apply butter to the outside. +- Grill til melted. + +Yet, my girlfriend's grilled cheese was horrible. Bad bread, thin on the cheese, and it tasted like heated cat turds. + +I'm just not that impressed. I know lots of you love this place, but I don't for the life of me know why. + +It would have been 1 star, but the mac n' cheese bought it an extra star. + +Why is it so hard to find good pizza in Phoenix. You'd think with its mob proximity to Las Vegas that it'd have better Italian food. And yet, not so much. I blame the Mormon influence on this town. Too many years of Kraft products and special underwear have really killed the food talent here.",review,W7zmm1uzlyUkEqpSG7PlBw,0,1,2 +ftNAvqB60nsMbs1Cr0moXw,2012-09-20,YLXX3Yaru02CsMMOPtVfQA,4,"I was very satisfied with the food here. We had wings (half bbq and half buffalo) and a BBQ sandwich. The BBQ sauce was amazing, the buffalo sauce was not super special but perfectly acceptable. The wings are made to order and SO worth the wait. Portions were very good, and the coleslaw was also good. The service was very friendly, she was funny and charming and a good server, too. We will definitely be going back. OH! I almost forgot to mention that they have all-you-can-eat days for wings and fish, AND they let you leave and come back for more (additional drink purchase required)!!!!",review,R0cXfEW1z4acgmcW-XfKrQ,0,0,0 +GwxCl1eT1lrC-PqtHTSObg,2012-05-16,0hRwODZdH0x1rQYtE-KF9w,1,"I usually do not write reviews, but was so horrified by my experience I had to. Went for a late night bite and drink with a friend, they were fairly busy so we had a seat at the bar. As I frequent The Moon often, I was happy to see the bar was busy as well. The bartender quickly came over and was noticably intoxicated, as she could not even tell me the flavors of vodka they had. We ordered our drinks, and watched as she broke glass into the ice, knocked over glassware and broke a beer bottle. As we looked around most of the guests had the same look of horror on their face. We decided to order some food, as she spilled my drink on us (refilled it with something completely different) and she could barely even talk at this point. We saw management watch her behavior and do nothing, as she preceded to grab dirty glassware and refill it with beer. I was so appauled by this we left befpre finishing our drinks or food. I'm not sure what she was on but if its visible to paying customers it should be visible to management. Being beyond embarassed for the establishment, I would doubt I will come back, sad as we would frequent the Moon 2-3 times a week. Horrible.",review,S-SfTvefYbFzFkJj8ojqrw,0,0,0 +GpK9MeUjEd7rwhejG2ykww,2009-02-17,SnhkvWncwa4VNAig8hX_6g,4,"If you're a Tarantino fan or have seen Pulp Fiction an embarrassing number of times then you know what Jack Rabbit Slim's is. If Jack Rabbit Slim's existed, this would basically be the Phoenix franchise of it. No, it's not a wax museum with a pulse, it's just a great place to go to after a long night of drinking/smoking/etc. with friends. The music is great and the food is good no matter what your level of intoxication is. Now I'm not using that as a jab at all, that's part of the reason I love this place. Where else could you stuff down a greasy burger at 3 AM, gulp down a massive shake, listen to the wailing of Buddy Holly, have a waiter named McFly, and enjoy being trashed all at the same time? Sure it's not the cleanest nor does it have the best service, but who cares? + +If you go at the right hour late at night you'll see people that you are convinced could not be out in sunlight. Be sure to look for the guy that looks like a hermit Santa outside with the wildlife scenes he hand painted on his van. Again, I'm not knocking this place because it's part of the experience. If it's not for you, wear your paper hat and go pick up your order at In-N-Out's drive thru.",review,FxxYCRPcpd__yhRRmmtyMQ,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-09-02,ePrpHsnBzu61WW_YrzH-Ww,3,"I was extremely excited to try what is considered some of the ""best pizza"" in America..., finding out it was only minutes away from my new office. My expectations may have been too high. Our party of four went for a late lunch, we did not have to wait for a table. + +My fiance and I decided to try 2 pies, the margherita and the Biancoverde. The Margherita pie came out quite dry, not with the wonderful chewy crust that a great margherita should have... however, the Biancoverde, a white pizza with Ricotta and arugala, was fantastic! Incredible flavors, the extra toppings kept this pie perfectly moist and delicious, it was really quite perfect. +Unfortunately, we had a hair in one of our pizzas, however, that's only part of the reason for the mediocre rating... +The hair, the 1-2 star margherita, and the non-existant meat selection I can only give a 3 star rating... (I'm a bit of a carnivore, I need more meat!) +I'm still looking for something to replace the incredible pizzas I've had at my favorite neopolitana joing back home in Canada, Famoso. + +Will I be back to Pizzeria Bianco for another go? Absolutely...",review,zTygpljE4TazYFfJvVAFYQ,0,1,0 +77oW-QeIXbUoTbUbrdD2aA,2012-01-05,oVYk9Gxa3TY63FAeoeCEzg,1,"Most livable city my eye! +Plastic yuppies around every corner looking for a reason to belong. I can't wait for the homosexuals to take control of this dog park and give it some class. + +Avoid at all cost.",review,ek4GWXatDshMorJwGC2JAw,1,2,4 +KgTb63IZHFn_rhLG-cpm_A,2012-11-26,XnK5ItiMBAcSHSddpJpnQg,4,"I haven't been here since they renovated but the previous decor was great. Elegant open areas, great atmosphere. + +Tried almost everything on the menu with the owners one night and everything was amazing. I'd be there more often if it were closer. + +They can also do private parties on their outdoor patio, and offer drink/music service.",review,dRfuAF1X90yB-B8jTaqutg,0,0,0 +lGe-TqVudTQvDQ_pj0jmNw,2012-05-20,V03KEwSXM3rAScBf7DaKOw,1,"This place is awful. I bring my fourteen year old daughter along for services once in awhile, and on two occasions here they managed to seat me and skip her for other clients that did not have appointments. They wont accept a tip from your debit/credit card which is pretty inconvenient if you don't carry cash. They use a cheap base coat in an unmarked bottle that leaves my polish job looking funky. My mother was a loyal client until she got an infection in her toe after a visit. I don't like to write bad reviews but this place does not deserve your business.",review,cVUJrTgmJ1j7XepKv1fcng,0,0,0 +3RrRw6ZCsLgHEdqJQj5wvg,2011-05-20,MKd8D5RlOxaazVbh_y58MQ,4,"Not bad. Very large story that has about everything you'd want, and open 24 hours.",review,iKi-FUw5x7A220fVvEcNuw,0,1,0 +6rijZ1qIjiq1Dgdy35iqxw,2012-12-04,5wq572P4ZWhHzaEjtDuxhw,5,Cholla Trail is a lot of fun and moderate hike. Echo Canyone is a lot of fun but also more challenging. Overall both trails are so much fun and a great workout.,review,tFyQbNbBQEyEc9oCr1pJUg,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2011-11-20,s5JM3Fa_3qpzwsqgV27Hvg,5,"All I can say is ""yum!""",review,CWFNnkBBjFgs3Go5lmYrfw,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2011-04-19,EdFx6mNJDfJWP6yDO42cUQ,4,Go,review,vnSz2VT6s-gdRBjlFDACYg,0,0,0 +I7IfnWW1nXljC4ZGqwPe-w,2008-05-12,6u2ouAdR_R2dI8-qNUGfUA,3,"So I started getting a cold yesterday and wanted some more soup it was late already 8pm so hunny went off on the search for soup since it was Mothers Day n' all. He ended up at Manuels dont ask me why!! Our white neighbor loves eating here, he had heard from somewhere or someone that they had the best albondiga (meatball) soup?! Well it was wayyy tooo salty other than that it was ok kinda spicey not too hot though. I don't eat meat but the kid liked the meatballs it looked like they had rice in them anh herbs too who'd a thunk. Chips were a tad too greasy and the salsa wasn't too bad good heat, beans were good rice was alright. If it is necessary and in a pinch again I'd go again but prob not.",review,V0y4fqp-4pSRfsz0FmsjPA,3,4,0 +N82S_d9LfAVKi3OS59192A,2011-03-28,E9tRUfgGnmLRA4tqTuKmag,4,"It's a beautiful hotel, most definitely. The recent renovations are gorgeous and simply wonderful. The grounds are lush and well manicured and the staff was polite, friendly, and very helpful. The rooms were pretty adorable in terms of the architecture and surrounding areas. They are spacious and comfortable, but the bathrooms are VERY dated. As in, 1970's fantastic here! Funky beige tiles everywhere, dark dingy shower with frosted glass window that really doesn't let much light in. I know they're trying and they're so so close to being amazing in every respect, but the rooms could be improved upon. +The pool areas, common areas, poolside bar, and convention areas are gorgeous though!! You instantly feel right at home in these areas and it was beyond pleasurable just hanging out at the hotel! Really perfect for group gathering and family away-time. And did I mention everything is gorgeous?? Because it really is! + +Only other negative is that they charge a ridiculous amount for wifi, which is in ADDITION to the daily resort fee, and don't provide complimentary water bottles, which you would think would be a no brainer for a luxury resort in the middle of a desert state.",review,INnEI8JTfYHSzH_i9mL_7A,0,1,0 +DlCtdbceo4YNSI53cCL2lg,2011-04-27,y4IidhiczM39_FT9izKbHw,4,"The ambiance of this place is pretty great. I made the comment while we were having diner that it would be a great place for a first date. That way, if it is awkward, at least there is plenty to look at to make the time pass. The food was pretty good for the price. The service was also great. I'd happily go back again.",review,cHnlIFP5WwJRer7_C2NUng,0,0,0 +Nq7eB1wB2EArUICtiNePvQ,2012-01-03,zNXqTFHfyl1Ddz0KvZIFiA,1,"I'm a little shocked how high this place is rated, to be honest. I'm not disappointed easily, but I've given this place three chances to impress and they've consistently disappointed. I live nearby and was very excited for a new, trendy place to eat & drink. The first time we went there, we sat at the ""outside"" bar. The male bartender was not personable at all-he was actually quite rude. When I politely asked him if he knew the price of a liquor off the top of his head (and not to worry about it if he didn't, I was just curious), he snottily replied with, ""well, there's not a button for it so I don't know."" He then rolled his eyes and walked away. I was astounded at how rude he was but shrugged it off. I actually felt bad because I thought somehow I offended or embarrassed him because he didn't know the price of this particular liquor, so I apologized to him, and he proceeded to made another smart comment about how he charged me the well price but that the next time I come in it might be much higher, again being very snotty and rude. My boyfriend was actually pretty upset at the way he spoke to me but chose to let it go because we just aren't the type if people to be confrontational or to complain. After our meal and about an hour before close, he told us he was leaving and that another girl would be taking care of us. When she showed up all she did was clean the bar in preparation to close (even though that wasn't for another hour) and didn't even introduce herself or say hello. I waited for her to notice that my boyfriend's Blue Moon was empty but she was too busy cleaning so I asked her myself. She asked me what beer he was drinking, I told her, then watched her pour the wrong beer and give it to me as if I wouldn't notice. (Not all alcohol is available at that side of the bar. For instance Blue Moon and the liquor I was drinking are stored at the main bar, another point of annoyance for the original, rude male bartender. But how is that my fault? I didn't know that. And clearly this girl didn't feel like going to the other bar to pour the correct beer for my boyfriend, even though she specifically asked me which beer he was drinking and then lazily poured whatever wheat beer they had in tap at the bar we were sitting at.) That was the ""straw that broke the camel's back"" for me. We paid out and went to Darcy McGees (in the same shopping center) where the staff are always pleasant and helpful. + +We have since given the Lion two more tries but been severely disappointed with the service. The food is excellent- but just cannot make up for the terrible service. The second time we tried this place we sat at the main bar (as to not inconvenience the bartender at the outside bar), and all of the bartenders were too busy talking amongst themselves to notice that both of us were empty on drinks and hungry with no menus offered to us. I'm sorry to say that we won't be giving this place another shot.",review,MKUv9aV4Aq6fmNeFHQjqPQ,1,5,3 +xxyuGOeAWnKVwIfoKnfUNA,2012-06-15,om-RhoENlAU_k635DdoFJQ,1,The worse food and service. I have never given a bad review. I ordered a shrimp dish with brown rice. The waiter brought out white rice. The sauce was horrible and bland. The calamari salad was not fresh. The dressing was bland too. The waitress checked on us and we asked for check immediately. She never asked if anything was wrong or if the food was good. I would never recommend or eat here again. The service and food was horrible. I was visiting from out of town and was hoping to get a new experience. This was not it...,review,dC6hbhg2sdJSOlRjtAavZw,1,2,1 +3uKAHQr19vFUfBJuXdmhEA,2008-06-19,nIGMuZYZUHtqtDYgzWiISw,2,"This is that place next to the REI off of Southern Avenue. No real ambiance or service to speak of - it's just a little strip mall burrito joint. + +I ordered the Devil's Shrimp burrito or burro or something, I don't know. I don't guess I stopped to think about what meaning exactly the word 'devil' might carry in the name, but I found out - it means HOT. Like hotter than pepper spray hot. And yes, unfortunately for me, I do know what pepper spray tastes like - I had this friend in college back in Austin, and one drunken night his crazy little brother Michael slipped me a shrimp that he'd soaked in pepper spray. Lemme tell ya, that was pretty F'in hot, but not even close to the devil shrimp at Taco Nazo. I'll be back, but only to take Michael there when he comes to visit next month. Beware the devil's shrimp.",review,zHH2Iz49wCZYYDLBTv0YOg,1,2,2 +V1nEpIRmEa1768oj_tuxeQ,2009-12-30,GcGfI-rkBwcq5I7u1s_ktg,5,"Excellent pizza, great service, family environment in a beautiful setting. That sounds like a tagline on a website, but it's legit. The diavola and the salsiccia are my faves. Just amazingly tasty, simple, pizza with quality ingredients made the right way in a brick oven. Pizzeria Bianco might have em by an inch just based on pizza alone, but if you don't want to wait 2.5 hours for a pie, Cibo is the place to be, and almost as good. And although Bianco has a 2.5 hour wait whereupon i generally drink wine for the duration(which might be part of the reason the pie is so good), the limoncello at Cibo generally floors me just as well in a quarter of the time..",review,cUmmzYZP4UIG6pvoeaS0wg,0,0,0 +nMHhuYan8e3cONo3PornJA,2012-09-08,oeFXUbyS9oO6wBu2Ms3U0g,4,"Let me first start off by saying I was skeptical. I had no idea what to expect and after reading a ton of reviews, we thought we would give it a shot. + +Located in an old converted home in Heritage Park right across from Pizzeria Bianco the place is small and intimate and just an experience in and of itself. + +Now for the food. Where do I begin? Tapas (small plates) style, and community (share) the experience is in ordering from each section of the menu. + +We started with the Kimci and Nasu. The Kimci is a Napa cabbage cold plate that will rock your world; a little sweet, a little spicy it was a great way to start. + +The Nasu is an eggplant with a bacon marinade of sorts on top and while I am describing it poorly it was truly delishous. Amazing!! + +Next was the Yellowtail Ceviche. This WAS OUT OF THIS F'ING WORLD. Inexplicable but so, SO GOOD. + +Next was 2 off the menu plates, chicken and Wagyu beef short ribs. The ONLY REASON this place does not get 5 stars is 2 of the 3 different types of chicken were mediocre. The wasabi grilled chicken was pure wasabi on grilled chicken. + +The 2nd was a panko fried chicken, which was moist and delishous but nothing amazing, HOWEVER the 3rd chicken was an orange peel fried chicken that way just so good beyond words. + +Lastly, the Wagyu beef short ribs were so so so amazing, I mean, I never wanted the taste to leave my mouth. + +The service, very good Juan (our server) was very attentive and very helpful as it was our first time there...but it most definitely will not be our last...oh and THEY VALIDATE FOR PARKING ;)",review,Pk5T0OFCbl8mIKkKYyglWQ,2,3,1 +Mfv6gumcyhk-RXCCR7JrFw,2011-09-28,_ouBt9E2WJGWS9oft1q1Dw,4,"Bevmo is very close to my house so I am here on a regular basis. I recentley found out Total Wine is opening and now Bevmo will price match their prices only. + +My boyfriend has asked for them to put the Fosters Premium Cans in the Fridge and they said it was a corporate decision. They still haven't put them in the fridge. + +The store is clean and the employees are helpful and friendly.",review,drS3ZN6-zA3sr5WM2fG5tQ,0,0,0 +y0weNFCIJF9bTgBbFST86A,2011-06-27,0PrDLG4e3lnWDkEpr_y3qg,3,"I didn't have an outstanding experience in this place. + +Breakfast was typical and service was rushy. + +Solid 3 stars + +Biscuits were yum",review,OwCEsC0-oRxsSpTHZ0rrvA,0,0,0 +1eBJyYf3JEccqXUFxG1VWQ,2008-05-13,PC-f_bBUQpUBaJCv2EQMxQ,4,Nice atmosphere. Good food. I had the buffalo on some fluffy fantastic foccacia bread. It was awesome. A combo with a drink and chips came to $9. They have free wi-fi which makes working or using your iPhone a pleasure.,review,lgAgkEspbjBm5fyq8aeRVw,1,1,0 +JokKtdXU7zXHcr20Lrk29A,2008-03-20,5R6wVDhn4wOiQAmKhX2B3A,5,"The quintessential Brewery with a wholly fantastic kitchen. Best spinach artichoke dip in the valley, period. From fried to gourmet Four Peaks has it all. Beerbread sandwiches are always excellent, fish and chips, bavarian pretzels, french fries, daily specials, I really haven't had an item that I didn't like! The weather is perfect right now for a sunny patio lunch or fresh air dinner. + +Let's not forget the beer. My favorites are the Oatmeal Stout or the Peach. Their peach beer is legendary with low sweetness and a crisp refreshing taste. If you think cider is too sweet but like fruity flavor, this is your beer. The oatmeal stout is thick and hearty with no bitterness. Seasonal beers abound, pumpkin porter in the fall, I've seen an orange blossom, belgian white, barleywine, etc. + +Parking close can be a challenge on weekend nights, best to ride your bike if you're close enough. + +http://www.fourpeaks.com for a complete menu. + +Just go there already!",review,RRTraCQw77EU4yZh0BBTag,2,5,2 +E2F25cRcYf_bWtvbCht0EQ,2011-06-11,KAn0_jRJsBqZxD_TB34y5g,5,"A small bite goes a long way. I first was introduced to these brownies in '09 when I received a variety box with 12 sprites and a can of cocoa for Christmas. I love the packaging - the deep purple and brown on the box and wrapper. After devouring my first brownie, I was an instant fan. The card in the box said you can freeze the brownies for up to a month but it was gone within the week. The can of cocoa lasted for a good 3 months. I used it for baking - cookies, breads, cakes, etc. + +My faves: Cream Cheese, Espresso Nib, Toffee Crunch, and Caramel. +The sprites are just the perfect size because it's just enough to get your chocolate fix but not overwhelming. I just throw one in my purse before I leave the house and I can have it with my coffee in the afternoon. + +I'm a subscriber of their email so I've been receiving emails with discount codes and free shipping. It's so hard to resist. Lucky me, I stumbled on a Groupon several months ago and I got a box of 24 Sprite for almost half the price plus shipping.",review,l-p9y_0mx9GdzOSUioEE9A,1,1,1 +hCS5eV0SCAY9LeeL36lz8g,2011-07-13,wkN0JUC_3u26Y6TU6jTG2g,1,"I was going to take the time to write a scathing review, but I honestly can't even bring myself to do it. 1 star. That's all I can say.",review,SWoWXML68esw-UhHRjLBQQ,0,1,1 +Br-_G9WrRlBWyEAuN0TXDw,2011-01-28,6GQCePPaBAzuW3O9LJodHg,5,Excellent staff. Always knows how to make my drinks. Always remembers my orders every time I come in too.,review,AHgsed4teWUAEgJxUFaakA,0,2,0 +ncuj9qx4WjprfJfYJGdmtQ,2012-07-12,rKPIJCEZ73x3tEeUSLprZg,5,"Vintage sodas sold by bottle, all of your grandmother's favorite childhood candy, an abundance of gag gifts and novelty items... you just can't dislike this place. Each time I'm in, I spend a good hour just perusing the countless Fred & Friends products and debating whether or not I should buy the stick-on-mustaches or 10 of the Chinese finger traps. + +But, let's be honest here. I mostly go for the photo booth. By far the best photo booth in town... good quality pictures (not cheap like the ones inside the mall) and they have little masks, glasses, and mustaches-on-a-stick you can use in case you're tired of flashing the peace sign or making that horrendous duck face. + +Soda. Candy. Toys. Photo booth. Don't kid yourself. You're never too old for that ish.",review,SlCfUUr1Pa7CzzSxbMH1pw,1,0,0 +kode9F27RF4C7XdSsnokiQ,2012-11-25,psr0oqLvdB7zpmU1D72HzQ,1,I will never go here again. So disappointed when I went in its a cute store don't get me wrong I would buy so much there for my dog. But the day I went I went to get a treat for my dog for his birthday. The lady was on her phone the whole time talking personal business while my mother and I stood they're waiting for her to get off or put the person on hold. All we wanted to do was to ask her to get that dog cookie for us. So after 10 minutes of waiting we decided to leave and while walking out the door the lady shouted thanks for coming. That pissed me off cause she put down the phone to say bye but not to get an actual freaking sale. I'll continue going to to petsmart. Tried to support a local business but I guess when you own your own place you can have poor customer service,review,QMYURmVQVAx1t7BxIb2dXw,1,1,1 +FURgKkRFtMK5yKbjYZVVwA,2012-08-13,8xx8i94sKvBhWZv8ZVyfBA,5,"Brown bag chicken sammich, mac n cheese, fried okra, and the bourbon drink. Nuff said.",review,hFP7Si9jvdOUmmMesg4ghw,0,0,0 +NAkRjPhS4yCD5trp0dY-bQ,2009-11-12,JH3SG03gem0PaOpn6nMA3Q,3,"Came here the other night in a party of 17. Overall the experience was satisfying. The waitresses were nice (yes, some had serious cleavage) and they were mostly on top of things - ordering the kids plates first, getting drinks/orders put in. + +The drinks were huge - I had a margarita which was served in a wine carafe. Unfortunately there was hardly any alcohol in it so I supplemented with a shot of silver tequila. Probably could have used a couple more shots! + +I had the baby back ribs. The order was huge and I did my best. The meat was tender and the sauce spicy. Overall it exceeded my expectations (which weren't too high given what I've read here). The plus was the entertainment value with people trying to ride the mechanical bull. Only one person from our group did it - after 4 shots of Jack Daniels! + +Overall a great place to go to if you're looking for a casual place with some eye candy, decent food, and side entertainment.",review,r7voA1WmMhYFPTfB08k03g,0,0,0 +WqQpdYbcD_KzukOTYDSY6A,2011-04-07,MC8aL2lT01570gpvhOTClA,5,"A few weeks ago, I was receiving quotes to have my AC unit replaced due to the hail storm we had back in October. I had few companies come out but no one and I mean no one was as thorough as Dale with Mason Mechanical was. He spent 90 mins going over everything including climbing in the attic to check things out. He explained the differences between different units as well as what he and his team could do, which included taking out my furnace and installing a new ac/heat unit, pricing. etc. + +Fast forward 3 weeks later and I was able to get the appt set up to have my unit installed. Crystal set up everything for me and she was fabulous, especially since I had to cancel the first time around due to my work schedule. (Thank you for your patience Crystal!!) Mike, the tech who was in charge of installing the new system called me promptly at 7am to let me know he was on his way and would be at my house within 30 mins. Fast forward 10 hours later and my new unit is installed. He explained everything to me including how to work my new programmable thermostat, made sure everything was in working order, sealed off the area in my now new closet (where the furnace was), made sure everything was cleaned up, and was just all around great. I am very happy that it was nice mild day here today because I don't know how they can do this in the summer. + +Thank you to the entire team at Mason Mechanical!",review,4E_nPWw89FLFHdNsEgMH-g,1,3,0 +LMG0zsAkUSscIvmV9vvm3A,2008-05-05,B2iAuyYzZwg3tykbI0SKaw,5,"A friend of a friend was telling us about this place on Sunday morning, and how awesome their pizza is. It sounded awesome, but he warned us the line is usually an hour and a half long. Oh well, we went anyway. Luckily, we were early enough where we didn't have to wait long for a table. When we were leaving, though, the line was easily an hour long. + +We started with the wings, which come in an order of 14 and were delicious. Five of us were dining there, so we ordered two small pizzas, with each one being a half, so we had a nice variety of pizzas to try from. We got the BBQ Chicken, the Frisco, Grandma G's, and one more that eludes me now. All were pretty delicious, and I give them mad props for going out of their way to create unique pizzas with untraditional toppings (Grandma G's had potato on it). Our entire bill with a few drinks came to under $80. + +Oh, make sure you sit outside... the inside had a lot of loud kids, and it seemed to echo off each wall and annoy the hell out of our party. The women in our party also said the air temperature kept changing in there. Keep in mind, too, that they don't have a full bar, so if you're going there hoping to start off with a bloody mary, you're out of luck.",review,17LPTsu4RgqTZ3SxsGzzxw,1,1,0 +e34tIpveepWkpvOuv_boqw,2010-07-15,SPqiCJoP1xgd06LGo04FnQ,4,"With quaint accommodations, friendly staff and interesting selection of food choices, I was able to forgive, and forget, that the Centurion didn't yet have a liquor license. + +The Centurion is a cozy (and by cozy, I mean small) place. But it has personality and I can imagine myself hanging out on the patio after work - in cooler weather. + +For those vegetarians out there, Centurion offers a diverse selection choices. For our lunch, my companion and I split a Heirloom Tomato (with Brie) Panini and the Shitake Spinach Risotto. Both were flavorful. And the prices are quite reasonable at $8/each. + +The menu offers a diverse selection which includes burgers, pizza, pasta, salads (all around $9) and some higher priced dinner entrees (ranging from $23-$42). + +I hope to return to try their dinner entrees, the blue cheese crusted filet mignon sounds wonderful! + +I feel like I had fallen upon a hidden neighborhood gem. I'm crossing my fingers for their liquor license!",review,jWvzAN1czxypi-GM1KY62g,0,0,0 +AkOruz5CrCxUmXe1p_WoRg,2012-08-22,Ktoqngx81hBmtXrVhEAKSQ,1,Horrible service. Barely acknowledged when you first walked in. Slow service and waited for my check for 20 minutes before getting up to go get it myself. Will not come again.,review,u-M4jMYKXsj-l1BYdyNpRQ,0,2,0 +CYsfoFgvCyndNNnCn3NH_A,2011-07-20,yL4xRXi6rlgR0I4VZxY1ew,5,I recently had sunscreens installed in my entire home by CC Sunscreens....i did research and found CC had the best prices...Carl the owner was amazing....he came to measure the day after i called. He answered all of our questions. He gave us a great price and in less than a week the screens were professionally installed. The screens are not only of the highest quality - they look great and make our home look brand new. We noticed an immediate difference in the coolness of each room - and we look forward to saving on our energy bill too! We cant thank CC Sunscreens enough - They are simply the best!,review,27ygUZ5FqBpy38O4EKEplg,0,0,0 +YRJKTPc7Tkz1cbjGHmOHuw,2008-12-03,tjyJHetc0f2pODPQyopJWQ,3,"I really wan to like this place more because it gets some of the best acts in town, but it is cramped, stuffy, the stage is too low, the sound quality is not great and they do not serve alcohol so the crowd is kind of stiff and non-fun. I will keep going because as previously stated, they get some of the best acts in town, but... let's hope they work on the format.",review,e4TQFVfepzHf--hnBsjntg,1,2,0 +T4ox3wUzFjWvyrjaTRoBbA,2011-10-10,RI7VfPfIajSonXL8spEVCA,5,"Finally a Japanese owned sushi bar beside Sakana in Ahwatukee! I guess Sushi Ken has been here for a while, but I didn't realize what a great find it was. + +My wife and I went there to splurge on Japanese sushi since they are better than the typical Korean owned sushi places which are most common in the Phoenix area. + +We found we didn't splurge at all as we do at Sakana or Hiro. We didn't break $30, which surprised me. 5 stars for value and great sushi! + +Domo Arigato!",review,OESKxoNFZcKl47NrOubgAQ,0,0,0 +7_zL7NX_rDFwhbLp98PwZg,2008-05-26,lVGBpMCIfweRNzcTHw8hVw,3,"Ra Sushi offers average sushi grade. This chain of restaurants offers a hip atmosphere with loud music and a great place to take down some drinks while eating. + +As an Asian I'm a little more passionate about the rating topic for Ra. If you don't have much to say about a restaurant please think about rating it four stars.",review,0qIsBt4EzBDCKrIviV55Ew,0,1,0 +eClo8BPc90-YdBfuvRcpkg,2008-03-17,wehQdhTXfnLGnX2QUP_6mg,3,"The best place to skip work and goofy golf in the spring and summer. Sure, it's a little musty, old, run-down... but it's a slice of my childhood and at least it's still here. +I can't gather the courage to ride the roller coaster anymore and bumper cars just aren't as appealing as they once were but the two story arcade still makes me squeal a little. +The golf is great too! I would suggest playing courses one through three. The last two times I've been we played course four and three and four has the least amount of attractions. Courses one and two are busiest, so it's a choice between being stuck behind a bunch of kids or some really un-fun holes. + +Oh, and they do have a black and white photo booth.",review,8VbK8pAotgfI0bnGfqPykg,10,10,6 +9DsXB8T3UwBYiLPiLJJuNQ,2006-01-14,TNtgDDo3L44QE-zqIOHGEw,5,"This is not a fancy place. It's address is on Scottsdale Road, but it's easier to get to from Shea, about a block east of Scottsdale. It's split into two sections. As you walk in, if you head to the left, there is a bar with a couple of pool tables. I can't really say that I've spent any time in that section. We head to the right, where there is a central bar, with booths along the walls. If you are into Karoake, this is a great place to go. The DJ has a great voice, and many of the usuals do as well (of course there are quite a few who don't, but that's to be expected). We've been here dozens of times, and never not had a good time. It's casual, and very reasonably priced. The food is way above average for this casual of a bar. The shrimp are spiced to perfection, and the chili is to die for.",review,Sjp6EYsqzdlTvymER6wBfg,1,1,0 +PLLM4iCYy_OrT-53IZ88Qw,2011-04-16,of8ZS9HxK5lKYzrNsl8Eww,3,"Went here with an Indian friend so I can't tell you what I ate, BUT it was tasty. We went 5:15pm on a Thursday and it was pretty empty, but as the night progressed more and more people filled the place out. + +They do have a lunchtime buffet but not sure the price or quality of food, but if it's anything like the dinner we had...its worth checking out.",review,mYWWZJfimREyTxcxROUs8A,0,0,0 +zMa6YoEekpABg1HZnnTZdg,2010-12-17,NYMpoelmaJyZi6wJ44Jb9A,3,"Lack-luster + +I have been disappointed the two times I have visited Houston's. Their veggie burger is soggy and grainy at the same time (I am not sure how they managed that)...not an appealing taste. Their ""famed"" baked potato was dry and was nothing out of the ordinary. + +Frankly, I could have made something better for myself and saved the money. The redeeming factor was that the service was decent and the restaurant was semi-attractively decorated. + +Overall I would not come back unless I have to (aka my friends drag me along) + +*** Was informed by a fellow yelper that the place re-opened down the block under a different name, Hillstone + +I hope the new name was followed by a new menu.",review,dvfj0FhfBhXjuyPMlQsYBA,2,3,1 +K8BVB4ktoiif5uRmtykYiw,2012-09-25,RCNWirbWQvjxHmdDsIh0xQ,5,"I needed new tires & 2 months later my husband. Both experiences the staff went out of their way to either get it done on time or make it work price wise! I have always used them for my tire needs and we travel for jobs so we need them a lot,",review,OD7nfm02bJDvbz7nsikFsA,0,0,0 +FWvEeULc-ItQTENPlIyfuw,2012-03-06,8Jv-IP918Y2QmtNzylTesQ,5,The oatmeal cookie frozen yogurt here is amazing. The place is small but accomodating enough to get your yogurt and find a seat. It's similar to Yogurtini and the other places like this. Last time I came here I saw a guy with the most awesome 80s blonde mullet I have ever laid eyes on. Rock on.,review,0mqHhdKEdak_A1FBhFNXqA,0,2,1 +lK35BgpjOMXwchPzqYWomg,2012-08-21,hkRytbiTpxdMjrzFbPtzpA,3,"Got the free coupon, so we headed there for lunch today. I was surprised, the burger was a lot better than I expected! Filing, juicy, fresh toppings. The fries were above-average, but for what it's worth, I can't stand Five Guys fries or In N Out's. So if you're a big fan of those, you may not agree with me here. Super clean place, friendly staff. Lots of parking for now...until Potbelly opens in a couple of weeks and the lot will be packed (sidenote: I will pass up Habit for Potbelly every day of the week, but that's a different review.) + +Overall good burger and fries. I'd like to try something else off the menu next time. That being said, I'd go back.",review,LY9Q6sc4DtZ9ENNBv691rg,0,1,0 +7WGBi29_vj_7RcPVxpLNHA,2010-10-10,H9DS1n3CFbaScptBseCuBA,4,"The green chili pulled pork omelet was delightfully good. The coffee was great, and so is the decor. The cream chipped beef and biscuits are also pretty fantastic.",review,rp1gCPBJZwYZNOGqRc5KGg,0,0,0 +1eJiyKXx_ruNu6F36BJQCg,2011-01-22,6n8WMV4uBxpJCbIUIu-QRg,4,Mojo made me fall in love with fro yo. I love Mojo's Twitter Tuesdays where you can get half off of your fro yo. The location is awesome; I can go to Mojo between classes. It's here where I found my love of the pomegranate & acai flavors as well. They have awesome seasonal flavors as well as the other usual staples. I love their different toppings and it's a good place to hang out with friends and get your Mojo on :),review,BgY9LwHmY8BO_lPI3pNRFQ,0,0,0 +8T8B_xK10FuO6MBOFcVQ3w,2010-02-24,H3aTGuva6rpRZMY1sWyHuw,2,"I was elated when I searched yelp for places to eat near my office and found Culvers. I ate there two days in a row last week, and ordered the follwing: + +bacon butter burger, lettuce style - SO DISAPPOINTED. I had high expectations for a burger cooked in butter. While not terrible, this is not even comparable with in-n-out. + +chicken fingers - Decent, although I've been spoiled by Shane's BBQ tenders which are made in house. I'm assuming Culver's came frozen in a big bag and then were deep fried. Still, pretty good for fast food. + +green beans - Not cooked nearly enough for my liking, forced down several fork-fulls then threw the rest away. + +Would only visit again if co-workers dragged me along. I'm sure I would have a different view of the place if I were in glutton mode chomping on the custard and french fries.",review,ukA4tAsH05itDYqhl7qBMw,1,1,0 +1NZLxU5WvB5roPFzneAlLw,2007-07-14,6Vg7j817P0k36vdmpxcrPA,5,"My wife and I moved from Seattle in November of 2006. We thought we would find great, modern Mexican food all around the Valley. Fortunately we found it, but only at Barrio Cafe (so far). Barrio Cafe is a sure hit with anyone who loves Mexican food without a half plate of gray, canned refried beans. Their menu is excellent, thought put into the dishes inspired and the ingredients are fresh. It's well worth the hour wait.",review,NscN6cLWv3y3Rit6g-D-_g,2,1,0 +UHh2br86pxndWXELC6B8Cw,2010-02-01,Di95IMJjpokrKquGhAlACw,4,"Love fondue? If so you've probably already tried one Melting Pot or another. I've been to my share, but this was my first time to this one just tonight. They've only been open two weeks - and they are off to a GOOD start! We had great service - very helpful and attentive, but not up in your face and of course, I love the food. Yeah, so it is obviously a chain and some people don't like it for that reason, but I think as far as chains go they do a nice job and the food and presentation is quality. + +Sure, it isn't cheap...but it's not that kind of place. It's the kind of place you go when you are not in a rush and expect to pay more for the whole experience. It's a good place to go and linger over the food and conversation. + +We usually get : cheese - tonight we tried the special one, but I typically recommend the Wisconsin Trio, house salads or whatever the special salad is, the vegetarian entree, the extra veggies they give you and a dessert - tonight we did the S'mores. + +It was all tasty as usual, the service was really excellent and the atmosphere at this location is nice and quiet. It's in a random little strip mall-like place so not too many people know about it yet.",review,NqeD28GGg1Wdj9BfaHqr4g,1,3,0 +Yhfp_vgnh_GirZGeVhj7Gg,2011-12-16,7upKw230pxMrdB1Vv-FRDg,2,"Theatre is very nice. Seats are not as comfortable as you would think. They have like office chairs in every other row. Also the food is not good, and it's so overpriced. Did you know it costs a dollar to put onions on your burger? Want cheese? That's another dollar. And it's not even good. Screen is beautiful and a clean picture though.. 3D was great.",review,3uU_6L8GnFOHTsO4I3oedg,1,0,1 +O7fXh4ODsi--5LmJKTHn2g,2010-11-12,ZfbSa3Sd81iXt__qsAK21A,5,"Downright awesome and extremely hip. A non-traditional, very out there, but very hidden coffee joint. + +You can't see this place from the street. It's kind of behind the Buffalo Exchange. It's almost the last place you would expect to find a coffee shop. As soon as you walk in there are really bright and vivid paintings, this is kind of what makes it way out there. Barista was very friendly and asked us how the weather was, always cool to have some small talk instead of the drone, ""what can i get for you..."" Wait, that basically sounds like the boring coffee-grinders at Starbucks. + +I gotta have my lattes. I will drink regular coffee sometimes, but my soft spot is a well made latte. Amazing enough, places like Starbucks just don't know how to make lattes, I give up on Starbucks. Their beans suck, and apparently their frothing machines do too, because everytime I go there it seems like they just warm my milk and mix it with some coffee. The latte here was PERFECT. The milk was perfectly frothy, which in my opinion is what makes a latte a latte. Coffee had a nice roasted flavor to it. Amazingly, there are tons of coffee shops out there that can't do decent lattes. This is my new coffee place. + +Good music choice here, its like new age elevator music, calm soothing hip hop and pop. Awesome atmosphere, quiet enough to study and have a conversation, yet lively enough to come for just a cup of caffeine. Skip the Starbucks and ""Sex in the City"" sorority girl drinks and come here. + +Only problem was that I think they only have small or large lattes, and it was like $4 for a large. That's like $0.50 to a $1 too much in my honest opinion. Oh well, I think I'd still pay that when I'm craving a latte.",review,LHQ2fuC2RDS-Md_dN2O1IQ,0,1,0 +-Ogv7rpcgUHkFaSy3vD8Sw,2011-06-22,MXUXDJNL2usv-yJSNdXfiw,4,"I have been to Hong Kong many times but this is my first review. I must say every time I go, my belief that this is the best buffet in the Phoenix area is reaffirmed. Hong Kong is very consistent with their food quality and the service is always been excellent. I do agree with other Yelpers that you can find other buffets that are cheaper but you get what you pay for. My favorite feature is the sushi station. My wife is not a sushi fan so when we go to Hong Kong, I hit this station several times. The only problem is if I fill up on the various rolls and sushi pieces, I don't have room for all of the other wonderful items Hong Kong prepares. The only station I can't comment on is the Mongolian BBQ station. Again, it comes down to a lack of room more than a lack of will to try it. Oh well, maybe with my next visit I will make an effort to try it. + +If you are looking for a great Chinese / Mongolian / Sushi buffet, this place should be number one on your list.",review,-39Gyn0uR_NWyJayrviRpw,0,0,0 +YJoph5UiUZ3BEb49vyFAuQ,2011-08-17,J6CDlCZqIXggylPAVR4vEA,3,"I want the Garage to do well. It is still a work in progress, though. Three of us visited two weeks ago. We were sat right next to a group of 40 - 55 year old ladies out for a surprise birthday. What's with that anyways. Do you really need to go to a somewhat small restaurant with your pack of ""girls,"" and occupy a large swath of the dining area? Do you need all the paraphernalia (collages, centerpieces, hats)? I was seriously waiting to see a youngish birthday girl. Nope, she was the oldest. 60, easy. Act your age. While you're at it, you are not a size six anymore. Needless to say, it was loud. At least one of the revelers apologized right when we sat. As if that's any conciliation for the volume 11 cackling. + +First off, the Garage has good brewskis. Not a huge supply, but what they have is quality. We had wings and truffle oil deviled eggs. Both were great. I had Schriner's Sausage Flat bread, and it was great. Wife had something, I forget, and said it was good. Friend had some large salad and said it was good, too. Overall, food was better than most. + +So, why the three stars you ask? Service. Why do some cool places slip up on this? Is it because they hire ""cool people"" or friends that don't really want to work? First off, a server (we were seated at the entrance/ exit to the kitchen) dropped a glass bottle of ketchup five feet from my foot. My wife and I had splatter on our jeans and glass near our sandal clad feet. Hardly a response. We were handed a rag. Our server not so sympathetically wondered, ""Oh, they almost dropped a bottle of ketchup on you."" The rest of the night just seemed a little disorganized and not relaxing? Every server seemed in the weeds or confused. Empty beer and water glasses. Entrees arrived and empty app plates sat there. + +$60 for three for apps, dinner and beers.",review,Fa0cKTkPhxdYi9HpcuQh8g,0,0,0 +Lt-dQ0kUWFm0nDgLwdEo_g,2011-01-27,GPeAY6off-npxeqvZoqWqw,3,"This is the first Springhill Suites that I've stayed at. Service was good. Hotel was clean. Room was acceptable. Big enough to work in, nothing special. Fitness Room was small but that was fine as I was the only one using it. The breakfast on par for what you would receive when you stay at a hotel. They could use better coffee. + +Very nice hotel to stay at if you have business at the convention center.",review,0a-ISXPjsyyNAMZfDbrKpw,0,2,0 +5y6NVPJIug3LYmKp_at_yg,2011-06-23,sW3SXpcaywGs9d2xVlFUPw,4,"Great service, and great food. Passed snacks included an artichoke cake served cold with an olive tapenade. My favorite was a shaved beef with mascapone dressed in truffle oil. The main courses included a cesar salad served in individual cups. Sliders were delicious with my favorite being chicken with roasted pineapple. They had a wonderful shrimp pasta dish that was gobbled up by people. Desserts were cupcakes in four different flavors, red velvet with real cream cheese frosting, a chocolate decadent cupcake, luscious lemon and finally a vanilla buttercream. I will definately recommend them for our next catering event in house.",review,vhxFLqRok6r-D_aQz0s-JQ,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2012-09-20,H-aksFzj7ua5h9qGe2pyzA,4,"Monday and Tuesday night after 8pm, you can get any bottle of wine and a whole board of bruschetta for $20. It's a steal, and a delicious one at that.",review,fc84xziqvCO__-XlQH6yag,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2008-03-22,qtnj62s-bHufakJTqvFbng,4,"I have been going to Postino since it opened. I remember the Matt Diamond era, Susan era and now the Brent Karlicheck era. I really like the evolution as to what it has become. +Now granted, I am personal friends with Brent (and Matt) so I want to disclose this upfront, but I am elated with the new direction of the wine program as I think it is superior to most in its consumer friendly format. +Grab a plate of bruschetta and $5 glass of ABC (anything but Cabernet) at the bar. Ask Brent or the chilled staff to help you pick something great. + +Like the mythical Arcas, you can bear the budget bacchanalian orgy right in the heart of Arcadia",review,mEMZxvHpemSxn1gl7Lj1Zw,2,2,1 +ZJxs1L4oMhX9GW00ty0aAg,2007-07-13,gqays9sjWDz84RSKofr-pA,4,"Wings + Beer + Football = LOVE + +I am such a girly girl 99% of the time but come fall, I sort of turn into a dude..... + +This is not my most favorite place to catch the game, but a good alternative when I want to mix it up or my team is on a bye week. Good selection of boneless wing flavors. + +Oh god, just writing this makes me yearn for the season to begin!!!!!!!!!!!",review,gEnU4BqTK-4abqYl_Ljjfg,4,2,1 +Xobu8FzHN0KUm5Lw3swypA,2008-07-06,7OaoO3J1YXiL7K4mY4BF2Q,4,"In response to a recent thread about Boba drinks in CenPho, I said that Rainbow served at least 1 flavor- chai- which my husband found to be ""just ok."" When Hubby asked me this morning if I wanted to ""taste the Rainbow"" for breakfast, I asked him to check on the Boba situation. It turns out that Rainbow listened, and they now will add Boba to any of their drinks. The woman behind the counter said you can call ahead so you don't have to wait. Hubby's vanilla and my strawberry frap that he brought home today were still ""just ok."" The donuts are still really good, and they finally have some stable hours, 4 am to 8 pm.",review,N-D-d1Z4UybdlkK1HxlNPA,3,3,3 +5VMajxduxfLPSyQkVFKESg,2009-01-07,KDMcMgcUyPEGhhqyOxbKvw,4,"I've been coming here for 10 years and still love it. The bbq beans are really good. My favorite thing to get here is a jumbo baker (and they mean jumbo) with everything on it including a side of chopped beef and then I add their homemade bbq sauce to it. Sooooo good. Their homemade root beer and limeade are also yummy. I remember them having a customer appreciation day once a year (I think in May) where lunch and dinner and free! You would get a pulled pork sandwich, a side and a drink for nothing. The lines would be out the door, but the food is worth the wait. I also remember them offering a free dinner (can't remember the choices) on your birthday. It's a cute little place in downtown Gilbert. Check it out.",review,EKwGhgLrM18ErVKKeYE2UA,1,1,1 +j2a5uJz76rK9uTRgLn5TdQ,2009-01-03,I4pCFQmFbjnOthdqTAOtyQ,4,Another lovely mom and pop with fabulous authentic thai. The prices are very reasonable and I've never had a problem with the service.,review,1RJORk4w9jxxWBKzOvOptw,1,1,0 +iDYzGVIF1TDWdjHNgNjCVw,2010-10-23,PEtxGLZlZwh2jmFXorauWg,3,"Coming into the Phoenix area for a family party, we stopped off at Los Sombreros for some margaritas and Mexican on an otherwise cooler night in the valley of the sun. + +I was told they are very picky about reservations and, if your party isn't complete, no table. So our 6pm reservation was now in jeopardy because the last two of us (me and my fiance) were running late due to issues on the ramp at Sky Harbor airport, obviously out of our control. But they still didn't want to seat us... additionally, I overhead on the way to the place that they would only ""try"" to do their best to accommodate our party, making it sound like they were booked up solid until closing....typical Scottsdale always trying to look more happening and hot than it really is. + +Moving on, we somehow ""lucked out"" (go figure) and had a table no problem, so all the stress caused by the hostess was unnecessary and, in my opinion, pretty unprofessional, especially since the restaurant was empty by 8pm, again, typical Scottsdale. + +The menu was brief, and I almost had to double check I wasn't looking at an appetizer. Most of the items are typical Mexican staples with a bit of a Southwestern American twist to them making the food a hit or miss if you ask me, some items were good, some were not. But that's really anywhere I suppose. + +The one thing that stood out for me was the Guac. I will say this was flat out delicious but Guac is pretty had to screw up. + +The margaritas in my opinion reminded me of something you'd get more at Chilis, a little too sweet for my liking but definitely drinkable. + +The fundidto appetizer we ordered left the table empty twice and well I'm not really one to combine seafood and cheese, this blend seemed to have a harmony with others and I'd recommend it to a first timer, +1 if you request to add spinach. + +Finally moving on to the entrees, different contraptions from the kitchen filled our table with vibrant colors, assortments and sizes. + +I myself ordered what I was told is sort of the house specialty ,call it carnitas mixed in a chipotle sauce with veggies type of deal. While it was tasteful and was more than enough to get the job done for me, the flavor of the pork wasn't really there, at, all. + +I browsed over a couple other reviews and noted the same complaint but hey that's what hot sauce is for I guess. + +Overall it's an alternative to the chains hoarding Scottsdale road.",review,P1qwZrslRv9KS9vPJNXe4g,0,3,0 +ZoQAOnEFnyHjSpomtfqesA,2009-02-10,S9k10Kqi-Pk5TdfdEL_u6g,4,"I stepped in for a quick lunch. I ordered the buffalo chicken wrap w/ fresh fruit. The location is cool, although I couldn't tell if they were actually open. The food was tasty, the fruit was pretty good. All in all, it fit the bill. I wanted a quick, healthful, lunch and That's a Wrap provided. + +I do wish they were open a bit later because I would love a wrap after a good night of drinking.",review,k1ACFw3wmqkNGoiGeNLc0w,1,2,0 +fRvYylF911uZ46smPhcG3A,2012-07-25,0kSbSUndwciGQTOKfpqYbA,1,"I learned of this company through a living social deal. I emailed them to set up an appointment. The earliest available date was a month later, I went ahead and scheduled the appointment in spite of the wait time. One month went by, on the scheduled day of cleaning in which I was told they would arrive between 12 and 1... NO ONE shows up. I wait, at 3:30 I email asking why was this scheduled appointment not kept?... I've yet to get a response or an explanation. + +There are many cleaning companies out there, my suggestion - try a different one than Maid 4 it all.",review,-AEuEOee3vpMqAftPI4ATA,0,1,0 +LcAamvosJu0bcPgEVF-9sQ,2012-11-25,iPM89szQ70HHXLyFJtjhIg,4,"I love the Drybar at the Scottsdale Quarter, so when I saw a Groupon for the new Phoenix location, I bought it right away. + +The salon was very busy but I was seen right away. I received my champagne promptly and went to the washing station. The Groupon was good for a 10 minute floater (scalp massage), but I can't imagine mine was for more than 5 minutes. It was a nice bonus, but not something I'd pay for myself next time I visit. + +I have simple, short hair, so my blowout was pretty quick. The woman who did my hair did a great job of listening to what I wanted and was a lot of fun to talk to. + +I was in and out within 40 minutes. It only lasted about a day, so that was a bummer, but my hair stayed clean and fresh for four. + +Drybar is a step above other blow dry bars in the area - I highly recommend!",review,CtuoM6_Im-xBZMAqPKMQ8A,1,1,1 +XBm9ffI2pK-A_HcoHXAbcQ,2007-04-26,Xup-s_RdBdmU49228bCIrg,4,"Always drop by this place when i'm in tempe. Usually i do not like greek/mediterranean food, but this place is the exception. They give you pretty large servings of food when you order the dinners. I always get the lamb and beef plate. Comes with bread, meat, vegetables and some white cream sauce. All in all an excellent combination. Throw in the low prices and you got yourself a winner.",review,p7VF1Q2aW9HmwdHhKq8hOQ,1,1,0 +OSlTIcDNSSt_83ciKwT1Xg,2011-04-10,Mv70EIrm0GyjzjC8OON1vw,2,"5 star view... +everything else is average... +bar is small, food is ok, drinks are blah",review,4r4vhVSc3bYpRdKSAAivEA,0,1,0 +hKB8OTUVIYLlDVWqFg8lnw,2012-11-26,7O_HJT0DmaaZoV5yHJtoWQ,3,I feel as though this is strictly a local central Phoenix bar. Anyone from out of town probably wouldnt appreciate it as much as a local would. Before I started coming here I heard it was a tranny bar which it definitely is. However besides weekends you will only see one or two hanging around. Its karaoke is almost alwasy extremely busy which leads to long wait times to sing but its alright because the people there are pretty friendly. The only two complaints I have is (first) the occasional scummy person that comes in that just got out of jail or is high on drugs. I do wish they would do a better job at kicking these people out. My second complaint is the very small and usually dirty restroom. I like this place because I know the bartenders and the people that frequent this bar. Others might not be able to appreciate it as much.,review,4a17OCvaJgzZzDPMJz7L3A,0,0,0 +9AbyBqGWHYZC73GlyAuTrQ,2011-02-18,_OaZMlx3OrudgiuzLBdglg,4,"Food is great, but they use to let you get the happy hour specials for take out, but not anymore. I love their prime rib burger, if you have a few extra bucks to spend on the best burger in the world than go here.",review,bX5mIrDlyD8ZabvF_An7FA,0,0,0 +5CWKlH0uyOUF5EZIyewMXg,2011-08-17,yb5DiTkZTijruooFaZR36w,5,"I was at The Rhythm Room and saw these cool people selling Tacos, so I checked it out. It turned out to effen awesome. Fresh quality food! ChiChi- lisous! Be on the look out for these guys! Chow down baby.",review,LL2Kk0jjD9McDPfPEDbZBQ,2,0,0 +IceZ4BtTz76eppjNWm-c6A,2010-12-18,sf8VtS6PzSVFyl1T30TgYw,1,"I was there on a Friday night with a few friends in the hopes of a quick drink and nosh after a show next door. +My companion and I ordered basic drinks and were met with shots of liquor in the bottoms of our glasses and a blank look from the waitress when I asked if they were out of mixers. After this, we opted not to order any food (taking our cue from the inability to mix gin with tonic water) and were met with an outrageous bill (for our two 'well' shots). We questioned the tally and were met with a second total that wasn't much better. +Our credit card was charged twice: $40 for some wet ice and a lemon wedge. There are many cool and artsy places in Phx where we can catch live music and nosh with friends. I'll pass this one up from now on.",review,ZxU3PjaGOdNfIEZ8aDjtRQ,0,1,0 +0qPmDwHa9NdvvIOgerR8HQ,2009-05-26,NL7PZvtmSwFUw7Cq7g615A,4,"Unpretentious trendy spot in the middle of the pretentious downtown scottsdale atmosphere. Beers are 3-5 but it's worth it if you sit on the patio overlooking the canal. The place is very relaxed- Don't think many have found it yet. And the awkward waiters also make you feel comfortable... sorry Steve, you're awkward.",review,gdm0ko75EnQwKWwYaPIwCQ,0,0,0 +9YUe5J_cPCBo_mL7-z9HCQ,2011-11-10,eW829q6AER4ik-E41Pbb1A,4,"We arrived into Sky Harbor and decided to go into Tempe and Mill Ave....a tradition that we do each time we go to Phoenix. New from my last visit, on Mill Avenue, Canteen Modern Tequila Bar and we decided to give it a try.. It had a nice open bar area onto the road and the atmosphere was lively and fun. Happy hour was in progress and the selection of items were great. The house Margarita hit the spot coming in at $4 on happy hour and yummy. The happy hour appetizers were also great. Nice selection, worth a stop with a group of friends. Wait staff was fantastic and we had great service.",review,WLowOhyzS0TNUemAwEryBQ,1,1,0 +NonAmwnYs__eQGlzRYIBVg,2008-09-27,DryjeJWO-TXWiIYaBMYFzg,5,"Caught Louis CK here last night... + +Beautiful theater... absolutely stunning. It was clean, the staff was really nice, and parking was a breeze. The sound was great, the seats were comfy, and I can't really find anything to complain about. Truly one of the most gorgeous theaters I've seen - down to every detail - it's my new favorite... I love it. + +L.O.V.E. + +If you twisted my arm and forced me to complain - well, in the lobby where they were serving drinks, the line got a little excessive. It wasn't so bad really - but I tried both of the wine they were selling and I kinda hated them. This is more of a bit of advice for you to booze it up before you get there than it is a complaint. I can't recommend this place enough.",review,Cp-PV8rsypbO-xBrQ6KmQg,6,6,4 +9ziO3NpoNTKHvIKCBFB_fQ,2011-11-05,KVSaajeJwE_bsGfCgdH5hA,2,"I'm giving this restaurant 2 stars because it was a typical hotel restaurant. Didn't actually sit at the restaurant area but the bar lounge. Service was very slow at best and on one night the waitress all but ignored us as she was chit chatting with other tables. The food was ok, I'd have to rate it on the same level as Chilis although more ""upscale"" selections. Only had the appetizers but based on those didn't want dinner. My friend had the breakfast one morning and said it was very average. I usually give better reviews on restaurants then what others give on Yelp but on this one, I beg to differ.",review,gUK4eRO1iR9K6MlBIqbTeA,0,1,0 +3l72FflaaeI0tWEAWN3-gQ,2010-04-27,8Xxm9s8aNAy8qkMyGT_FVw,3,"Love the location and the re-purposed historical house +Stoked that the tortillas are fully warmed like a good tortilla should be. +Crave the creamy, non-lard beans even more than the carne asada. +Diggin the outdoor picnic tables. +Hesitant to order the corn because sometimes it has too much sauce n cheese, which overpower the pure joy of grilled corn. +Not so crazy about my last experience where the cashiers showed more personality talking to each other or the kitchen crew than they did to me while taking my order. I'm paying $6 for a burrito, could it hurt to smile and maybe offer me a happy hour beer when I'm here picking up my take out dinner?",review,xjsIKyqLOqM8DyEhYh1IoA,0,1,0 +CbqO2LA7PWp4kbuZBPEa_w,2009-08-14,c0aS_dU55Obyx-GHsbAgXQ,5,"Andrea has been a lifesaver- literally! She was watching over our furry monsters when our AC went out in July and we were across the country. She not only made an extra visit just to see if the AC was broken, but helped us find an open kennel to get our cats boarded. She's been our creature sitter several times now, thankfully with less craziness. + +Her rates are very reasonable and she keeps in great contact with you. Her initial visit with us went over all the little things we wanted done (like picking up the paper and bringing it in) and was very thorough. Since she offers a full house sitter and pet sitter menu of services, she's knows things to cover that we had not thought of! She's very professional and is licensed and insured. + +Your animals will thank you!",review,e9puhHXfy27G-DZDf2HnbA,1,1,1 +b5cEoKR8iQliq-yT2_O0LQ,2012-12-29,ZvxsuXFjWWqJIWP5RHfsmw,2,"We were visiting Scottsdale from Carlsbad, CA. Came here with my husband and teenage son. We each ordered something different and none of us really liked the food. The tortillas served with the soup are the same served at Taco Bell. The entre plates are a huge blob of reheated beans and rice. The saving grace was the sopa pillas. I feel we wasted $75 for an unimpressive dinner and wouldn't recommend coming here.",review,PmY_v_InZBZZbfIjOeRsGg,0,0,1 +4VSP4PlU1r09iSC4BLr6tQ,2012-09-03,nxlJ3EoWDdpqUu2A4EqHrg,4,"This should be called a speakeasy coffee shop. Why? Because you really have to be told about it to really know it's there! The shop has minimal signage on the exterior and it's housed within a urban multi-use warehouse on Roosevelt with different vendors and an art space. I can only imagine how cool this building must be to visit during First Fridays! Once inside, I was pretty surprised that the coffee shop is more spacious than I would have figured. It's pretty sparse inside, but there were plenty of seats to do some work or have a meeting. + +The coffee here is strong and delicious. After drinking my non-fat iced latte, I had to refrain myself from bouncing off the walls! It's definitely coffee with a kick if you need a wake-up call. + +This coffee shop definitely exudes the epitome of cool and I will definitely keep it on my list for a caffeinated visit in the future.",review,4ozupHULqGyO42s3zNUzOQ,4,7,3 +pSiR8m18iick2D7TFdmb-Q,2011-06-18,nXJ-3Vy14LSpVZ03uSJ9Tw,4,"Ok, I have been coming to Wong's Place for a number of years now. I found this little gem when I was wandering about Tempe (No I am not homeless, nor do I wander off when I drink) ;) + +Anyhow, the majority of the time that I order the food to go, it is really good. I have had only a few issues with the rice for the sizzling rice soup being overcooked but I will say that the soup is awesome and tastes awesome (Three flavor). Wong-Jo chicken is good with egg fried rice, egg foo yung, house deluxe chow mein, imprerial three delights, mongolian beef (not a huge portion, but tasty), and random other tastyness!! + +They have not updated the decor and everytime that I come in to get my order, I converse with the guy that always takes my order. He is not The Mr. Wong, but he is like his right hand man. He recently told me that they have not fired any of their workers because everyone has been working there for over 10 years. Even in this economy when business is OK at best, they take care of their people. +I hope this place never closes down or I will be sad for them, and hard pressed to find anyone who can mirror the sizzling rice soup and wong-jo chicken. + +It is a typical chinese restaurant but I think the food is better than most chinese knock-off restaurants. I think that if you can enjoy the authentic atmosphere and the food (pink menu if you are scared of authentic chinese), then you should be satisfied with your meal. Personally, I get mine to go 99% of the time because I will take it home and not feel bad when I load my plate up with everything and go back for seconds!!",review,51-53fVvMVBTwQQaUZSozg,0,0,0 +i5LFOniek1pD8UEiEzGooA,2011-10-03,-ak65RJiQwPVgjvNWmyGCg,5,"I had the terrible decision to make to euthanize my 20 year old cat, Bandit. I was going to go to the Emergency Animal Clinic off of Scottsdale Rd. further north but I had previously had a bad experience there. I saw there were some good reviews for this Emergency Animal Hospital and, thank God I did. They were so kind and compassionate. They let us take our time, never rushed us. They knew it was a very painful thing to have to do. They made one of the worst things I have ever had to do as 'easy' as they possibly could have. They eased my nagging doubts about it without putting words in my mouth. I am ever grateful for their kindness on that incredibly sad day and would recommend them to anyone who has an animal friend who needs some emergency care.",review,nuDOTj9N32dLEXV9C-ehvw,0,1,0 +XWpkTxBLgRXxl7g2Hw62Qg,2008-07-22,aYeAnImpHHr3D0IA9m-g8Q,5,"I love this Gelato! My favorite combination is the panna cotta with the mint chocolate chip. Weird but wonderful. I am rarely down this way, especially since I've moved, but I still fantasize about digging in to this deliciousness! + +I only ever had great service, and fantastic product here. So far it is the best Gelato I've had, although I hear Arlecchino's is pretty fantastic as well. I miss visiting Angel Sweet, I will have to go back soon.",review,AdEy5KAIlMAy8xHyuMQCFg,3,5,3 +XkNQVTkCEzBrq7OlRHI11Q,2009-09-26,eZo4zr3dJ8hnTCCytdml8A,5,"I love Pizza-A-Metro and so does Joe Arpaio. I am quite certain it is the only thing we have in common. + +This is where I take my foodie friends because they are usually so busy eating they shut up for a while. (I kid, I kid...) I have never had anything here that I don't find super delicious and crave-worthy. The first time I went here my party was personally doted on by Maurizio, who was over-the-top gracious and seemed to truly love what he was doing. While I don't see him every time I am here, the service never suffers. + +The calamari is crisp and light, which is a nice change from heavy, fried calamari that is so ubiquitous in too many Italian joints. Hands down my favorite item on the menu is the Frescolina. The combination of the arugula and prosciutto makes my mouth water even thinking about it! + +So next time you are at Pizza-A-Metro, my advice is don't loudly discuss if the portly man next to you is Joe Arpaio. Don't look him up on your Blackberry and pass the photo around to get the opinion of your fellow diners. Don't bring up that his mother died in childbirth, and how that potentially explains a great deal of the man's 'politics.' No matter how much wine you have had, do not forget how small this restaurant is. Because in the end, after he and his bodyguards leave, the server will tell you- Yeah. That was him.",review,5wN78N4K0a39C-uPzPmxDw,3,3,4 +29hR24tcAM3JZaXfA5xCxQ,2012-10-07,G51FBrsIaJBMopw3zk6qGQ,5,Great Kobe on flatbread and the skirt steak is fantastic. Waiters are very attentive and helpful. I've eaten here twice in the days (conference) and I would go back. Their menu is diverse enough to try something new again.,review,IYAt8qZ2KLvMIxwxQy5KFg,0,1,0 +e5kc0CQ4R-PCCDgb274gSg,2011-04-26,Np7qt0WVsfqZix7zlV1nmg,5,"...NOW WE'RE TALKIN'! Killer Mexican Food! The chips 'n salsa kicks ass! You get a red, blue & regular tortilla chips with reg, spicy salsa & bean dip! Hellava start! A kick-butt margarita! Had Chicken Fajitas!...THE BEST! Cannot wait to return! Great ambiance.",review,_p9EnnLQg6KDlIRU2fYEJA,0,1,0 +kgPjOtSeMd3CMdbnEmHbeQ,2011-06-02,RLZsqwzzm0dDuJfkobFjJQ,2,"So everyone in Old Town has been waiting for a good sports bar forever. When everyone heard Thunder Dan was coming to town the excitement starting buzzing. Well this time Thunder Dan didn't hit this buzzer beater. + +First off it does get two stars for a reason so lets start there. The atmosphere is great. The venue is super cool and there is tons of tvs. + +Thats pretty much where it stops. The food isn't great and is relatively slow. I have had a burger, wings, the chicken quesadilla and a couple of other things which didn't impress me. Plus the service was super slow... + +This kind of reminds me of the Suns-Bulls series super exciting but just misses the mark of greatness. I am sticking with my old faithful two blocks away Zipps.",review,b927p9pWxM9EYoNr_6PxYQ,1,0,0 +BINYfrtGp3A4w0d5E7kbYw,2011-03-05,gK6j3l1HKgR8_O8Vn7u5Hw,4,Great setting to enjoy good food!,review,8DZZkj4m3VO8dnZzB5Gykg,0,0,0 +fMqEPInEm9Fl5h8oJWPEjA,2008-05-27,TrvVfQgZSZ4p0Z22efHfNg,5,"Great selection of vitamins and supplements, good prices and I can get the special treats our cat likes while I'm picking up the goods for myself. Plus their rewards program is pretty straightforward. + +I also like that they are not ""all over you"" like the other local chain is when you walk in the door. + +I highly recommend the Vitamin Shoppe on Camelback!",review,Sa64rQmghfE9i17_dRIDyw,1,3,0 +OE5nAmaSVaopeRS1Cs9Kuw,2011-05-27,ORxerTZucYcy21QctgLp-g,5,"Went here for a work function today. What can I say, this place is awesome! A great variety of meats all cooked to perfection. My favorite was the bacon wrapped filet, yum! + +Nice salad bar with good variety as well, instead of bacon bits, they have a bowl full of uncrumbled bacon. + +Lastly a slice of cheesecake with strawberries, mmm. + +Simply awesome stuff! Taking the wife when I can.",review,cBDAIpUYhVZeGJGDHW98BQ,1,1,1 +ut-kla-EA23nJOij_dcL0Q,2012-05-16,TEzUCAhyCDe7DReNqB30iA,2,"I am not really a fan of CPK but I went here with a colleague as it was close by where we were working. I figured I would just go with a basic pizza (thin crust) and was less than impressed. For thin crust it was pretty soggy and for me that is a deal breaker. Service was good and friendly but the pizza sub-par IMO. Maybe the other items are better, but I thought I was safe going with a plain pie.",review,G-FyatjCEmspIGts2MTN0A,0,1,0 +rrd7NeAgARDNzPsxxsBJiQ,2009-09-01,x2KQET-oO_y-3W3IWXrjzQ,5,"I'm not going to lie - I indulged in fantasies about Howard Roark during the course of my 90-minute Insights tour. His spirit and convictions were brought to life by FLW and being in this incredible complex where he lived, worked and taught was indescribably cool. The tour takes you around the property and through many of the rooms, restored to various periods of Frank's life. I was a bit dismayed at the disrepair some of the rooms are in, so I spent money in the gift shop hoping it will go to repairing some sad looking chairs and windowpanes. +Overall, the tour guides are genius at describing and making you feel like you're seeing things through FLW's eyes with his vision on architecture and lifestyle. This is not to be missed!",review,-ZDJ8KSpOHhCPrwi6F-_Ug,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2010-05-11,N0ZRCOmv-vT1l3B336MtBg,3,"Went here for dinner on a Saturday night. Put our names in...and only had to wait about 30 min. Not too bad. The bar was a little too crowded to wait there, so we went a couple of doors down to pass our time. + +On to dinner...we had a great server. He was super friendly, nice and was vocal with his opinions. I would love to tell you that all of his reccs were spot on...but they weren't. + +We started with the pretzels and the cheese fondue. DELISH. I went halfsies with my friend and we shared the prime rib sammie and the shrimp caesar salad. The prime rib sammie was mediocre. The beef wasn't flavored at all, and when we got the fries, they were cold. Hot plate, cold food..not a good sign. + +We did get fresh fries, I didn't finish my half, and moved on to the salad. The salad was good, but not great. + +All in all, I would go for a drink and some apps, but wouldn't really want to eat dinner here again. I may have just ordered wrong...but two meh things do it for me.",review,6E6Xl7e_uYUn1tFB45ck-Q,0,0,0 +toDZ6L_a_0lWU9O1JtQRGg,2010-09-19,RXrEBOzlOITzql7ql4H8TQ,1,Donuts are worst I've ever had. I bought 2 dozen donuts using their 10.99 sale and it was the worst donuts I have ever had in my life. All the donuts were dry and stale. I should have gone a couple of miles over and bought Krispy Kreme. Krispy Kreme donuts are always fresh. These ones were worst that those that sat on the shelf for a week in a supermarket!,review,KHzLvvE-a-DDbovdstBDXA,0,1,1 +mwiNm868yAo8Xh8hO7Ke_Q,2010-05-21,bU8yHRTyqE9SBhCaL6wLww,5,This is the best Cajun place in Arizona. The portions are great and the people behind the counter are really nice. I love gumbo and I have tried several kinds here and all of them were excellent. Yes the decor isn't 5 stars but seriously if you're more worried about mood lighting and soft cushions you can go to Pappadeaux's and get charged an arm and a leg for lower quality food. the drive and the price are definitely worth it for this place.,review,ZDn42x7z6ZwINiqZzeTCwg,1,2,0 +r3r_bAfa6pZKIhQB82FizQ,2009-08-04,8O6PDuA7eCgxfW62XXtZRQ,3,"I read quite a few reviews on Yelp prior to checking this place out with a group of 10 or so. We arrived and the table wasn't ready just yet - we ordered a variety of cocktails, menu driven cocktails, beer and wine. I had an 8th Street Ale - always a good choice. I had to ask for a cold glass to put it in and when I was served the 2nd one, they didn't include it. I had to ask again. + +The food: Pretty good, actually. However, its totally overpriced and the portions are pretty small. So it makes the hurt on the wallet that much more severe. Our waitress was cool, she put up with a lot of conversations in our group, sometimes being loud and not paying attention. + +I would go back again, but most likely for lunch. Hopefully you would get the same size meal for a few bucks less. By the way, I had the pasta with rib eye in it (I forget the name) and my wife had the Carbonara. They were both good!",review,tPq1TK_cVlUtwucAlKaA6A,0,1,1 +cbFlhBjmvV5XgspysHCQtA,2007-05-17,WCvWGp6OaOxC2X31MXPWcg,5,"The Rosson House Museum is a restored home from the 1895's. And it's also conveniently right next to the Teeter House Tea Room and across from Pizzeria Bianco. + +For under $5, you can take a guided tour of Rosson House and learn what life was like for its residents so long ago. It's a really cool activity to do, and since it's close to so many great restaurants, you can go for dinner and drinks after your tour. + +Walking through the home, it's easy to imagine the lady of the house sipping tea in a dainty cup with her lacy gloves on. +Or maybe it's just me. + +Houses like this tend to creep me out. I half-expected to see a ghostly woman in a pinafore around every corner, but let me tell you, I'm glad I didn't. + +Either way, coming to Heritage Square and exploring the historic buildings in it is a great way to spend an afternoon.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,3,4 +-34jE_5dujSWMIOBudQsiQ,2009-11-02,Ydc1XwgrFaEWKo0jR-hp1w,5,"Dr. Dairiki is terrific. She is professional, listens to you and explains things so that you know exactly what she is talking about. I have never had to wait and the other thing I like is that she calls you back personally to let you know test results or if you have questions (plus it is done in a timely fashion.)",review,Rr1q5BfuV9u6sJX98aOgCw,0,2,0 +XbVqzUHS3c9FhG4lI13c3Q,2011-07-18,hfNyHHbO9yuwJ3paaj-TtQ,4,"I just went here for lunch and mmm, mmm, mmm, this place is sooooo good! I had the shrimp and veggie pho and the broth was VERY well-seasoned and so delicious going down my tummy! We also had the shrimp spring rolls, which were also delicious and very refreshing. + +My only complaint, and the reason I couldn't give 5 stars, is that only 1 out of 3 air conditioners was working in the restaurant. And on a day in Phoenix when it's109 degrees outside, plus the heat from the pho, we were burning up in there! We had to go get some froyo afterwards just to bring our body temps back down to a normal level! I look forward to going back when the temps cool down.",review,EJkV29QY_oHwSngQiTj2rQ,1,1,0 +GDzn6pU_pGpXc4kTLpR3BA,2010-10-11,4hzJE16oq-v_gMzJfnFAQQ,3,"When Fresh & Easy started popping up everywhere, it was my new favorite go to place for quick and easy meals. They have a great selection of ready made entrees and salads that beat going through the drive through. The fact that there were always excellent coupons to be received could have been a big factor in why I returned so often. Key word, WERE, I think they have lightened up on their coupon circulation! + +The problem started when I began to do my actual grocery shopping here. They have great prices on a limited, but satisfactory, amount of grocery items. Its the produce and veggies that are troublesome. I find that they start to go bad after 2 or 3 days, which isn't very convenient or money saving when it means I am throwing half of what I buy away. I am very conscious of expiration dates on items, and have even found myself throwing away items prior to their expiration. + +So, unless your planning on cooking with your fresh items that day, I would avoid the produce and even some dairy and meat items. So what I am saying is, frozen, dry or canned stuff...I am pretty sure your safe with. + +This location in particular has also been my least favorite to visit as far as friendly staff. I usually have to bag my own groceries....yeah, I know, self checkout keeps the prices down, however, when you have 2 or 3 staff members just hanging out by the registers with little or no people in line, it wouldn't hurt for someone to jump on bagging groceries...its a little customer service that may save someone from not returning!",review,glRhDPETR9sI7-lvGzjPPA,0,0,0 +1AMncE6Lxdr6J9PeqZi4nA,2012-04-22,PYxVUJCtbxSqR4qPITHq6w,4,"Upon our overnight stay at Econolodge a few blocks down, the live lit sign along side of the street attracted me to try this restaurant. I remember the menu vaguely, however did not forget the amazing breakfast special the other half and I ordered. $6 for a plate of thick cut bacon, 2 eggs made your way, hash browns, and toast (white/wheat/rye, etc.) Customer service was great, the hostess and waitress made us feel very comfortable!",review,fY102CUYiK11hgQnsAI9Ug,1,4,1 +k76odRRsXPErPzB0gjn-3g,2012-10-15,2qweq3UfTZy1PCo2MZ6wCw,4,"Okay, since my latest review, I was contacted by the manager who expressed concern on my bad experience. Fran wanted to make sure they had the opportunity to make it right. I was impressed! I do want to say that even if the food sometimes needs a little sumptin sumptin, the customer service is Great and always has been! I give them superb credit for that & the ambiance is nice too. We went back for another try & we were satisfied. I definitely think you should stick with the thin or traditional crust, it was better. Also a note to update a previous review - they no longer have the Portobello Steak Sticks, not sure why, maybe a cost thing, but they were delicious and I will miss them! Another cool note that should be said because it can't be said about most places with an outdoor patio - they do not allow smoking in the patio dining area, which is such a refreshing change. It's nice to be able to enjoy the great Arizona weather this time of year. Thanks for that! + +Final words... BoomBozz is on the top of our list again",review,-zzhFGw6I9wA5EtivKn89Q,2,2,0 +CFaRVxsnN4Zjf28cbORKIA,2009-09-29,UgyvGcJ4ZGkMg3QMWEt5_Q,4,"Does anyone else think chips and salsa are part of the foodgroups? I do! +Yes this is a hole in the wall, yes it is in a scetchyer ""hood"" but it will be worth your time. +Margarita's...check out their 2.99 deals or just for the heck of it get a piture and share with some friends. +The atmosphere can be loud (decor and patrons alike), but for this reason, it is a good place to bring kids because no one cares when your kids are as loud as your adults. +On to the food....Chimis are great, my husband always gets the heart attack style (this is not the name) chimi with white cheese sauce. +There are a lot of vegitarian options here for all you non carnivores. +If you are looking for good mexican food and mostly chips and salsa that should be part of the food pyramid, then Via Delosantos is your place.",review,HuGmiFh9v-YxY9FUGx2xHg,0,1,0 +Y6Qsu0EYDFtOOtxdYf51Pw,2013-01-02,lrYiGCwiL4itSiqyhDLwYw,4,"I don't remember shopping at this location prior to the remodel. + +I can see myself shopping here much more often in the future. I'm already thinking about how much it sucks to shop in the summer when it's 110 - but covered parking?!? oh, yeah, I'll be there in the summer. + +Nice and clean, easy to shop, wide aisles, no clutter in the end caps. SO easy to shop this store. + +Went in today for an advertised price on chicken that we were planning on having tonight. Asked the meat guy if there was any more chicken left. Was told that they were sold out. I told him that the reason we came to his store was because of the price and we were planning on eating the chicken tonight with dinner guests. I asked if he could sub something, and he said, ""SURE, no problem!"" Friendly, helpful, super easy. + +I also mentioned that the last time we came in, I bought something with a manager special sticker on it but was charged the regular price. The customer service guy refunded my money with no questions! Awesome. + +Great store, nice selection of bulk items, fresh produce, large service deli, in house bakery with some incredible looking treats, clean..... + +I'll definitely be shopping at Bashas! As if I could rave anymore, it's a LOCALLY owned business!",review,lzzQ-pSFsP00aIH3bZgbAQ,1,1,0 +5oQOTAWwXRbd5gf2cbX0ug,2011-08-28,Ckn7A7lWGHsZIkXkRyzjUg,5,"These dentists are great at explaining medical issues in a way that you can understand. They are honest and very smart. They don't take my insurance and I still go there (lets face it, dental insurance doesn't reimburse much, so it's only like a $15 difference for me to go out of network for a cleaning). I would never go anywhere else!",review,ULaEXc_OfmOzMcpEUExAJA,0,0,0 +Esn7lfc9w6KVoX61FsXM3A,2012-10-17,h-lOQTbEZys2wGabiyixNQ,3,"It's pretty clean little place good tacos enchiladas and tostadas but not big on the chilie beef really lacked any flavor. Like another yelper said, they need a big menu board. If I was near by I may or may not stop by, I'd prefer Some Burros for this type of venue .",review,0_nI0EtDmHdiBFIRL9RIlA,0,1,0 +d52zg-S0o940WUCK-nNiKw,2010-01-05,70TGn3LHXXySYjCVw4nXLQ,4,"So after doing an internship in Downtown Phoenix, I was introduced to Carolina's. I was a little apprehensive at first, but I had heard many rants and raves about this hole and had to try for myself. After my first bite of Carolina's burrito, I was in love. It was awesome, and I continued to sample many of the items on Carolina's menu for the remainder of my internship, never once disappointed. I even brought home some of their famed tortillas - just those warmed with a little butter - simply melts in your mouth goodness. Awesome and cheap too!",review,3VIRjR2V29TOaI9u64hMig,0,0,1 +Zx8_4zKdDBSO3qGrkukBIA,2011-04-01,ismc4frvSipf8G1A6uZcEQ,5,"I have been coming here since 1996 and the food just keeps on getting better!!! The jerk fried rice and emerald chicken are to die for and he snicker doodle cookies....oh my goodness. Every time I'm in phoenix, this is my must go see do eat spot!! The owner Frank is awesome.",review,AeViEDV-ZsYWaL3nRNzfwg,2,2,1 +17DI33J8TkcfzyoiIYLQIw,2011-09-13,cnkRf2FKSve0T-fYep7vaQ,3,"I've gotten lunch take out here a few times. The only thing I've tried is the drunken noodles. While I think they are pretty decent, I have been having serious issues getting the right spicy-nes. The first time I got them, I asked for level 3 spicy. Their spice meter goes from 0-5. I love love hot and spicy Thai food, however these noodles were practically inedible. Yet, they were so delicious at the same time I devoured the entire thing. And I felt like I was going to die later, as my stomach felt like a fishnet stocking... +The second time I ordered them I asked for level 2 spicy. This time they were not spicy at all. At all!! They were so bland. I mean, they still tasted good, but were missing that drunken noodle kick! So, at this point I don't know what to do. Obviously every cook there must have a different idea of what each number means. +The last time I ordered from here, I simply said drunken noodles. I didn't specify a spicy level. I figured maybe this would give me the perfect in between spicy that I so desired! Well, when I got them, they were more bland than the level 2. And tasted kinda weird. +I will give them another try as they are right across the street from my work, and I hope we can work out our spicy issues! +4 stars for the service, they're really friendly here +2 stars for the food, until we can work out our issues +And 4 stars for the convenience!",review,fYayRBmQjB8f5eyH1WR-1w,0,0,0 +8m08a9xJKmANwmeuR-0bPA,2008-09-26,Qomkfq_Ebr8mjilJbhXGcQ,5,"I will have to disagree with many of the previous writers here. I have been to Michael Minna in San Francisco, which is way more famous and crowded but this one is better. Let's begin with something that impressed me. When my partner and I sat down, someone came over and immediately handed her a black cloth napkin. Sounds simple, but it's nice when you have nice black pants on and don't want white crap all over them. Second, the food was great. The duck fries were really good (and free)... I had a great corn chowder with cilantro and a small grilled cheese sandwich which was perfect. (I never eat those). My main course was a skirt steak in a fantastic sauce. My dessert was beignets and creme brulee. The beignets were great and the creme brulee was good. (My gf makes it much better)...we each had two drinks, a pear martini which was excellent and an even better white cosmo. All in all, the food was tasty and the appearance of the place was nice and swanky. It's about time Scottsdale started opening restaurants that can compete with S.F. and NY.",review,Bc2UjSePEGvqSdHvz2HKGA,2,3,3 +ntN85eu27C04nwyPa8IHtw,2011-08-11,4UuEnZ1i3SBcO0r8zMd05w,4,"you will wait... ALWAYS... + +I COULD EAT A POUND OF THEIR HASH BROWNS. i get them to go!",review,xZvRLPJ1ixhFVomkXSfXAw,1,2,3 +Xq9tkiHhyN_aBFswFeGLvA,2011-10-27,FjrOSyMkrVV_0MAE65IaHg,5,Our server Amanda was awesome with her suggestions and service! Would go here again in a heart beat!,review,_R7VHVlXk12JDJ_3oyqoEw,0,0,0 +FI4ns6iR4ZrhoaYjITf-Mg,2010-12-04,6sYC-4jw-chvJIEXXrgrbQ,1,"Is it illegal to have good Chinese good in Arizona? We went tonight having high hopes of having high quality, fresh Chinese food and we were sorely disappointed.:( + +We opened our take out bag and the white rice had been left off of the order...we were going to give them a pass for that...but on the flavor issue...there are no excuses... + +The Peeking Dumplings were wilted and flavorless. The sauce that went with them could not revive them. The Chinese mustard was in little packets and had no heat...Viagra needed:(! + +The Mongolian Beef was so salty it tasted processed. + +The snap peas were stringy and overcooked. + +The General Chow's Chicken...it tasted old like it was off an all you can eat buffet. + +Honestly...Panda Express is better...as least you know what to expect in a mall food court. + +It wasn't cheap...and I'm not a food volume person but the portions were small...I was fine with it because who would want more of this plate of shame! + +I hope they can get there act together...but I fear the owner may be in over his head... + +Isn't there a Chinese Chef in town who needs a job!",review,PYtryNSk30ytqOc_36sLPw,5,7,11 +3l72FflaaeI0tWEAWN3-gQ,2008-11-18,jC_DzYerSizDG3rUMsz-LQ,4,"Oh. Mah. Gawd. + +Let me get this out of the way.. the ONLY reason I'm dumping a star on America's Taco Shop is because they charge extra for chips and salsa. I HATE that. Charge me if I ask for extra salsa or something, but otherwise, come on. + +Now. Said chips? Perfect. Salsa? Perfecter. My taco? Made me cry a little bit. I am picky about corn tortillas, but these were brilliant. + +Go to America's Taco Shop. I will see you there.",review,-txH2zJSBZQHO6RWvoWXuQ,5,5,3 +fRtuc2k17r6aZMJWEMcXFQ,2011-05-02,RhuAclcyqUMxmUipjdfGIQ,4,"Of all the Dairy Queens I've been to in my life in CA, TX and now AZ, this is the nicest and cleanest location I've been to. I guess that's what happens in Awhatukee. + +The staff is fast when you order inside and also when you order through the drive thru. + +I could eat Chicken Finger Baskets and Blizzards all the time! I'm happy to live so close to this location and enjoy all the wonderful treats this place has to offer.",review,9qCPmT6ovJjxL4tJB4ANCg,0,1,0 +snE3ZuXhcHgAVt3xTUGgzQ,2009-07-13,mkPRiVoJ0nCtLGDH__WZ9A,4,"First let me say, that as a straight guy, I'm always a little apprehensive about going to gay bars for karaoke. I know! I know! But my wife and I enjoy singing and have found it difficult to find places with decent sound systems that also have a decent catalogue of music, so I deal with it. I've been to Kobalt twice now, the first time with my wife, and last night with a group of friends. We had a lot of fun both times. The music selection is one of the best we've found, although the sound system can be a little ""off"". Sometimes the feedback can get a little strong on the wireless microphones. I guess we're just spoiled by our regular karaoke haunt, and our hostess who mixes the music so you sound really good. Here, it's just you and music baby! + +I have to say, the crowd at Kobalt is really different (in a good way) than some of the other bars in town. The patrons are very friendly, and very respectful (well, everyone except for the guy that told our friend she was built like a ""Brick Sh!thouse!"" I'm pretty sure he was just trying to tell her in his own way that she looked very lovely, which she did). But seriously, that was a one-off and you get those in every crowd. The bartender is really nice, very attentive, and remembered what we ordered from last week. Huge props and huge tips! The Karaoke host is great. Works in new singers in a timely fashion and makes sure everyone has a good time. + +There's been a lot of talk about the smell of popcorn in previous reviews. It's true; they have a popcorn machine by the patio door. I've never tried it, but there's only been crumbs left when we got there both times so I guess it goes good with beer, apple martini's or whatever your choice of drink may be. I didn't find the smell overwhelming though, as some have said. + +As for the catalogue, they have plenty to choose from. You'll find a nice selection of country, rock, and of course...Showtunes! You're almost guaranteed to hear Rent, Phantom, All that Jazz and plenty of old standards by Sinatra and the rest of the Pack. FTW! + +It was a little difficult to find at first, but if you drive around to the North side of the building, you can park under the structure and you'll see the sign in the breezeway. I give Kobalt 4 out of 5 stars only because they don't have karaoke on a night when I don't have to get up early for work the next morning. If you're ever in the neighborhood, check it out!",review,b9XdpPlzZCVimhNb0z8CNA,8,9,6 +e_riFHMoJ1Yguvr0KtOkDQ,2011-08-06,rIeUBRHo6Kqnqy_EszaV_A,3,"Very well done pizza...its like a pizza pillow, tasty, savory and rather doughy. + +This is not my favorite style of pizza but nonetheless it was especially good pizza. The service staff was top notch and the store is very warm and inviting. + +We will be back!",review,-KCR0e2Nyc7a7qvqnr9njQ,0,0,0 +O5VAXnTDezn4eghfTTEWDg,2011-07-30,d0sQiGw-25-IZ6iAU8lt7A,5,This QT is one of my favorite locations! It is always very clean and the staff is upbeat!,review,r9_tXmlmmm1OTtEzezcnRQ,0,0,0 +_FXql6eVhbM923RdCi94SA,2012-11-08,jfglOTmum9i0f_4URGNE8g,5,The hula burger was awesome! Great service. The hostess is very kind and sweet. What a great find!,review,0bRCHX5BTblUWcfURIKR5A,0,0,0 +bpPVn4nF8YR40BjhO6YP1w,2012-05-17,_t_c7z371mezSOpBlrRyiQ,4,"Three-star service, but five-star ambience=four estrellas. Let's face it, marina restaurants don't have to push too hard to succeed. Competition along the shoreline is minimal. When the cooler runs low on the boat, Lakeside Restaurant is the only show in town. You can tie up at the little restaurant dock, where the sign warns of a 30 minute limit, which is laughable given the snail-paced service. Sit on the patio and toss a few crumbs to the waiting ducks and, further down the food chain, the circling iridescent big-mouth carp. Feathered, scaled, and furry scavengers vie for patio scraps. The water is clear and calm, and the view stunning. The coffee is weak and watery, if plentiful, and the omelettes are big and fluffy, if bland. The heavily inked wait staff is polite if a little rough around the edges, but props to folks who are sturdy enough tackle a full-time wilderness gig like this. Note: these are the best restrooms within 20 miles.",review,ETrSs9dpPwxqi1mYfbMmvw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2011-08-23,ro8Oz6z4GjqcXk3_H-A5FA,5,"Found this place through Yelp and a Yelping buddy so there you have it...the power of Yelp because we absolutely LOVED this place. Tucked into a neighborhood you have a very cozy, eclectic little joint. From the start to the end we received extremely friendly service. We of course tried the foods suggested in previous reviews and by the server. The pasta fries were unique, light and paired with great tasting sauces. A definite dish you have to try. We also tried the figs stuffed with chorizo. Also very good & savory. But the ABSOLUTE FAVORITE of the night were the chicken and waffles! My gosh is this the dish to come to the Tuck Shop for. The chicken was deliciously seasoned and had the perfect fry on the outside and moist chicken on the inside. The waffles were served with a butter that seemed to be whipped with possibly honey and the syrup was just the right sweet. All the flavors seemed to work with just the right amount of sweet and savory. The grilled fresh green beans were the perfect side. I think I would get this dish over and over and over again. Then I would go back and get it again. +Great place we will frequent often. + +P.S. They make their own tonic. Yep, their own tonic. GREAT tasting! Try it with the vodka they serve (haven't heard of it before but was very pleased).",review,D5J4mKahKvUBJUTWanZwdA,2,3,0 +CV4DDFG6tII-ehzaWPXK4g,2011-04-11,k6LHw2ByGIeRG9rCpcO9QA,5,"Loved this place since it open but they have changed their menu up a little and it seems they have cut corners and products out of there repartee. The sandwich I got this weekend was very bland and somewhat disappointing in portion size I've grown accustom to at the ""WBC"" and they've discontinued making their bread salad. (Very disappointing) I will be back but with fewer expectations I guess. + +I received an apology letter from the founder and an offer to refund my money. I don't need a refund... this is not what Yelp is about, but it was really refreshing to know that a company still cares about their customers reviews. After re reading my review it may have sounded worse than my experience actually was. The sandwich I got was a new one from their menu named the Spicy Chipotle Egg Sandwich, it was good but I like SPICY!!! I may order it again and just ask for an extra egg and some more chipotle sauce. The gentleman did give me the recipe for the salad that I've enjoyed in the past. + +This type of service is what makes a customer for life.",review,QDIhUXuNvXPY2Gv94QFiug,0,2,0 +qFLjQyq7HVAY7LN5Srwy_w,2012-02-06,-6f_rCCG8ez4Cv6EONBefA,1,"There are few resources in Arizona for dancers, actors and performers, so it's best to order online if you have the time to wait for shipping. Dee's Dancewear is overpriced and because they know they are the only game in town, their customer service (and return policies) have suffered. +In an emergency situation, you're better suited going to Mischa's Dancewear on 33rd Ave and Bell or Capezio's in Scottsdale. Otherwise, order online and steer clear of this establishment when possible.",review,ZxU3PjaGOdNfIEZ8aDjtRQ,0,0,0 +rlQCMHmaMjPzEh3BeaDkIg,2008-11-30,h7PQAvi42HU82yd9cNimIw,2,"When I was younger and first moved to Arizona, Serrano's on Rural Road became a family tradition to get mexican food. It was basically all I knew till adulthood. If I would have reviewed this place 10 years ago, it would have been 5 stars but now the blinders are off and I have money to try better places. One by one they all seem to dwarf Serrano's in most every way. I feel kinda guilty writing this and hope my family does not read this :) But it has to be said. I would still eat at Serrano's but it doesn't have the same feeling anymore. The Chimichangas are good and their bean dip is awesome. Nothing I have had is gross or anything but its just basic greasy mexican food. There are better places out there. Once again to any family reading this....I'm sorry :)",review,RknsoxpICgtuuv46uaTpyw,0,2,0 +9yKzy9PApeiPPOUJEtnvkg,2012-06-03,PiR7lltpkA4GP8gAeCJYIg,4,"Loved the scenic restaurant, right in the middle of the farm. My #1 spot for a weekend brunch.",review,5qa1hx5GVHehlBQx0b5gFw,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2008-07-30,MucbqYtySTHlOM38XUmwWQ,5,"Red Velvet, Check +Parking, Valet for Free, Check +Ratpack ghosts, Check +Fun People, Check +Strong, yet good drinks, Check +Good happy hour place, Check +Been Around for Ever & Deserves it Rep, Check",review,YoBgKOdfpGH48LpIDSfoQQ,2,4,0 +4waggbCK-MSE9dbIdSMfPA,2009-04-11,jkZbmHqQSVjAw0tff3r-2g,4,"Pretty damn nice! + +I made reservations for the Compass via OpenTable and upon arrival, i was greeted by first name. We were seated promptly and thank God I didn't pre-drink too much because the restaurant spins at a pretty steady pace. It's a great concept and for all the theatrics, the cost of the meals were very reasonable. + +I had salmon and opted for polenta with my meal instead of mashed potatoes and I'm glad to see that both grits and polenta were mainstays on their list of sides. The only miss for me was the chili cornbread which I didn't find to be that great, although my comrades seemed to like it. + +Service was prompt and consistent and I must say I enjoyed my meal and the whole spinning experience.",review,gvqh39oy-m10H7aNyVBL8g,3,3,2 +yExYqENb4F6qH6kJxTOaSQ,2008-01-27,H3EOU1LQkPOrLtK7UeKn2A,4,"I found this place by accident. Blink and you'll miss it. Best fried catfish I've had. Totally not greasy. Thin cornmeal batter is the right amount of crispy. Fish is tender and moist inside without being greasy at all. Coleslaw was pretty decent. Cornbread was soft and had a hint of sweetness but not too much. Portions are good. Vegetarian options for the non-meat eater. I ate well for less than $10, tip included. Glad I found it.",review,6uYJ-ixRxPMyf-iEbhoz2g,0,0,0 +NNGJQF3WeIHzGzweCpZ-VA,2011-11-05,3loh0w4MoDKcp_U4KMPxtA,5,Every item that I tried was amazing. Owner made it a pleasant environment and he had a terrific voice. A must try in Central Phoenix.,review,eW3-ObGbg_SrjN5Kk3Lz-Q,0,1,0 +wzIPW_XyKc2DBWdOUM5hlQ,2010-03-23,EJGXI07Bpman8_eq0OfSBQ,5,"While visiting Arizona we were told we must try Macayo's. The margaritas (fruit flavored and blended) were a bit on the sweet side- to the extent that I was worried I might get a tooth ache. The prices here are very reasonable. I had the fajita quesadilla, delicious- I cant stop thinking about it. The service was friendly and somewhat efficient. This isn't a place you go for decor and ambiance- but they do have outside seating, always a plus in my book.",review,Og_fHEvQOzBHcWRX7g49cA,1,1,0 +vWnlScr9y2F6_ctDJZ6XLg,2011-02-24,bn9YV54GNvplRyPPkum2Zw,4,"Excellent service. Thankyou Denise! +Food was excellent...the two of us shared the C4 salad and a custom and pizza with a cappuccino and a latte. Everything was very good and the portions big!",review,CEkNGnUQWGhQN60XD4E4Iw,0,0,0 +jS6flcYZwd3xbEfNsM0B3w,2012-06-03,z8H_mkzyXTfEyUm9sUO8jw,5,"Oh, how I miss this Goodwill store, which opened in September 2011. I moved to North Carolina in March 2012, and have not been able to find anything like it here. Large, clean, and very well organized, this store is thrift shop heaven. And it's all for a good cause: there's a job center right on site that helps people find work. Go on Thursdays, if you can, when a designated tag color is just $1. I've purchased a lot of name brand clothing here for $1 per piece. You can also check out certain Saturdays when everything in the store is half price. I got a great mirror that matched the dresser in my guest bedroom for $12.50. This place is so good, I would not be writing this review if I still lived in Arizona, because I would want to keep all the bargains to myself.",review,1rcKVcEdGpuAjUSfNU4FoA,3,3,1 +nMHhuYan8e3cONo3PornJA,2011-08-13,XEIc9OjhrtDvKTMj0E0Giw,5,"So freaking good. The drinks are great too. Ask for ""the icon"" not on menu, but very good! + +Love everything I had there! Service is great and food is absolutely delicious! Wish I lived closer!",review,mUa_Fpc5pZpFRKkqeuqCSg,0,0,0 +y0weNFCIJF9bTgBbFST86A,2010-10-11,oA_Jv6juw-F83K7XOd5Ytg,4,I would eat here again. The breakfast is good but super fatty! Be prepared to eat a meal that makes it so you do not have to eat for the rest of the day.,review,xr0WOufnic1HGML_jo3KSg,0,0,0 +UCjtaUCtJPbTUouHtQURvQ,2011-09-30,nGwlPc5X5kSvoOTayr9o9w,5,"Chipotle is my go to place when I feel like picking up a quick meal, and this happens to be my local one. + +Always busy, and you'll almost always see someone you know getting some delicious Chipotle as well. + +Portions are huge, but no complaining because it's all delicious!",review,1VYwbnwR7SY56s7YvJ20-A,0,0,0 +xNfGoC9CW33GjSPLcfbwUg,2010-06-30,W7uNh1aEMvoFRD96BXHALA,5,"I remember when this was Fry's...back in the 70's. I think it's great when these older buildings are put to good use instead of being torn down for another new strip mall. What a perfect place for an Antique Mall. + +This is a store that you could spend hours and hours really looking at everything. This Antique Mall has TONS of GREAT Antique finds...like REAL antique and retro STUFF, not recent overpriced crap that most Antique Dealers throw in their booth and try to pass off as something worth a lot of money. There are things here that I haven't ever seen at other Antique stores before. + +I quickly walked down the aisles, the prices seemed pretty good and yet some that seemed OVERPRICED. I wonder if Antique Dealers are wanting to sell merchandise or pay monthly rent to store their museum. Believe it or not, you can still get BETTER deals on ebay. + +Several of the booths seemed like they had a theme, like stepping back into that time era... they were merchandised nicely. + +The restroom even looked like some grandmother's tacky bathroom decor, it really fit in well with the antique feeling. + +I will definitely come back here when I have more time to shop. + + +.",review,CP-IE-zyc2Mv3jlaceElVQ,2,5,4 +jEWfxxA_kjeJE_Z_ku3zLA,2011-08-23,2oWb6-7uVRch19fmbnk8pQ,1,"This review is based solely on service - not the food. + +I am sitting in a booth at RA as I type this - that is how upset I am with the host staff at ra. I called ahead to inform the restaurant that we would have a party of 8. When we arrived the girls at the front were so rude I almost walked out. We waited 35 min for our table and the entire time the host staff was looking my entire group up and down giving us the ""stink eye"". I am sorry that you are 18 years old, work for $8 and have a stick up your butt, but do not make us feel unwelcome. My girlfriend and I went to the back to use the bathroom - the host followed us back and asked us what we were doing - not to help us find the bathroom but just to be a snob. From here on out ra is ruined for me.",review,Hkx9AvnmY_aFXb_mEAS6sQ,0,1,3 +sbD4f8aOsXZ6PJYh1kN4Ag,2008-06-03,ydSFkQQw5UiK2n2JRVtuxA,2,"No offense to locals, because Glendale ""Glitters"" with ""Chocolate"" downtown, but this mall hastily developed around the silver Jiffy Popcorn pan that is University of Phoenix Stadium (misnomer, it is for the professional football team, the Arizona Cardinals, named after the omnipresent UofP distance learning and professional college, ala National University) and the Jobing.com (local based employment dot com) Arena (home to the NHL Coyotes) is really just a North Snobsdale (aka Scottsdale, Snotsdale, She'sGotTail) Kierland Commons Wannabee Mall! + +It is 4 stories high, shaped like a football and stadium, with huge billboards facing into the 2 water fountains, its only redeeming value. + +It is populated with typical Scottsdale type restaurants....Big on decor, small on taste, with chain restaurants peddling Chef/Designer highly stacked fusion flavors masking average casual food for a larger tab per serving. + +Even the hords of young, large bossomed hostesses, bartenders and waitresses in black t-shirts are the attractions that were first ubiquitous in Scottsdale, then downtown Phoenix around the Diamondback Stadium, has now moved to the west side of the Valley! Margarittaville, Johnny Rockets, Fox Sports Grill, Kabuki Japanese...all formula chains for the average masses who think they are getting something special, but aren't. + +Meanwhile, the Superbowl early this year, the reason why this complex was completed (and for the new football Stadium) has come and gone, the housing boom has collapsed, and the westside house prices have dropped 30 - 40%. Consequently, within a couple of blocks, the luxury condos are being auctioned off, the Westgate Offices atop the stores are empty, and so are the new office buildings. +The anchor Hotel the Renassaince, also a Westin of Kierland poser, is nicely lit but largely empty. There is a conference center attached, so it might get some occupancy other than Football season weekends, but the Homewood Suites nearby has got to be a summer bargain hotel. + +This is classic Valley gaudiness at its worst. And it is set conveniently off the Loop 101 at Glendale Road near the Agua Fria riverbed, but otherwise it is a vast open field of former farm land. Still, it is the only decent mall within miles, so it is a beacon for the young and bored westsiders looking for something besides their quiet bedroom communities of strip malls and convenience stores.",review,2rlBbFPHyZjXSFSE8r551w,6,7,4 +0wcIW43ZFTeVFmRMvylZxQ,2011-06-30,JUCyFWWcTSLQPu7dKn4F3Q,4,"I've been to almost all of the dog parks in the East Valley and this is definitely one of the best. I drive 5 miles each way daily to go there. It is by far the largest in Tempe (which is easy because the others are tiny). It is large enough to accommodate a lot of dogs and people (which there are at peak times), has lots of grass, 2 doggy water fountains so they don't have to drink out of community bowls, trees around the perimeter and a ramada with tables/benches, and other benches located around the perimeter. It is open early in the morning and late at night (there are lights on until 10 PM). There are also city supplied poop bags in dispensers which are usually stocked (although occasionally not, so bringing a bag doesn't hurt). The people are pretty friendly and the poop situation (people that don't clean it up) isn't that bad in comparison with many other parks, especially Cosmo and Chaparral. There is only one large section (no small or inactive section), but it seems to work out OK as the dogs aren't overly rowdy or aggressive in general. I've never seen a real fight. There is a sort of walking path around the entire perimeter and many do walk it for exercise. Overall, a well above average place to take your dog. + +LOCATION: It's a little hard to find. Take Kyrene to Carver (halfway between Warner and Elliot). West on Carver about 2 blocks on the left. There are other routes, but this is the easiest, unless you're coming from west of the park. + +Anyone is welcome to contact me for my opinions on the other dog parks in the East Valley.",review,wipxoCTPDEFRbaa30KmO3w,0,0,0 +DcrM4hwDcU2G6vuh2cnaYQ,2011-12-30,GKpS14hUrX7vesh2c0zTCw,5,One of the best restaurant in town. I have been there few times and they really manage to wow me every time ! The owner if nice and friendly and is really on top of things. The service is great and the food is amazing ! We are going again this Saturday and I can't wait to taste their New Years eve menu. Happy New year :),review,bKKVpwp1ERdWUl4lqc8ChA,0,0,0 +35uDzLpJlbSztgkJLtg1kw,2011-06-28,IWTpi3QT5nAylKGZSp_kFA,5,"Was in a few weeks ago and had the white bean chicken chili. superfantasticdeliciousness. i've only had one meal out of about 20 here that i didn't like. Wildflower is one of our favorite afternoon places to grab a bite. +Thanks, Louis!",review,V9vStLuNc4aqZO_GK2VTuA,0,0,0 +kz12EsdDhr4Y_yZ2OlAQzg,2010-04-20,5BvUvnhOHkOvT4zlLEW6BQ,2,"If you order a top shelf liquor from the bar I suggest strongly you watch them pour. We had a gift certificate to use, the first time we tried we sat in the bar waiting for our table. Ordered 1 Grey Goose gimlet, and one just vodka gimlet. We watched the bar tender pour just that, when we received the bill we were charged for 2 grey goose. When we brought it to the bartenders attention she lied and said they were both grey goose. We waited so long for a table we left, and thought we would try again some other time. Next time, we ordered 2 Grey Goose gimlets, they gave us gibsons. When we sent them back waiter returned with our drinks in a tall water glass. They were horrible tasting. This time we returned them ourselves to the bar. Turns out they had to admit, because we were standing there, they were out of Grey Goose and asked if the could sub, and we agreed. 10 mins later we over heard a waiter bring out a ""Grey Goose"" on the rocks to the table next to us. Pretty shady!! Food was okay, service marginal. For the $$$ I would rather go to El Posto or Pizza A Metro.",review,qf2H6esJYrNf6XMCcGLZSw,0,1,1 +4AKcmN--0hbF0kX9pg8scg,2008-09-08,dcGByj0XTg0hhdpPNnm-dg,5,"hamburgessa heaven. Guac and bacon on a burger is ingenious. I do wish they had some curly fries or something but the burgers cant be beat. Also, the condiment BAR is brilliant",review,3rZANqOuujtsbAfyGABVbg,1,1,1 +IFKTsVSSguMjLBA9mo0x0Q,2010-07-02,rY65l9sPDE-rFWpfwROXvw,5,"FILLY-B's!!!!! only 8 reviews?? NINE now!!! + +wow do i miss THIS place: + +- 24hrs +- drive-thru or walk up only +- ridiculously cheap +- ridiculously tasty + +of course the arizona burritos are good, everything is good. i used to LOVE one of the combos... you get a beef burrito, taco, rice and beans... for UNDER $6. wow. color me silly and call me sally. they have bomb horchata too. + +really good and fresh flautas/rolled tacos and breakfast burritos. damn, everything here is good, whether drunk or sober.",review,5ATM5m3jeXk7_tUgHyxprQ,0,0,1 +H6AoAhl9HUcfM-qkurvnbw,2011-10-06,YchHiKNYOgaXoLYHtTkQsA,5,Definitely one of the best barbers on the westside of town. Ely takes his time and makes sure you are satisfied. I have tried a few different barbers around town and this is the best spot by far! I recommend this spot if you're looking for a great and friendly barber!,review,l4Bn7UpQMk4BgUoRjUcRfA,0,0,0 +xCryT3Vzk_RLIkhiuUJwjQ,2011-08-12,lztAHL-LKCXF-M4PxmmvPg,2,"I am a very loyal customer to pure sushi and have been for over 2 years now. Up until about 6 months ago I would have given this place 4, possibly 5 stars, but with the horrible service I have encountered the last 6 months I'm only giving it 2. Normally I order my food to go at the bar and just take it home and eat it. But the for the last 6 months when I go in to order my food at the bar, its always the same bar tender working and she is rude. The last 3 times I have been into order food I ended up just walking out and not ordering anything. She is always taking to what seems to be her friends at the bar. I always know what I want right when I go in, so there is no need for a menu, she greets me and hands me a menu totally ignoring me telling her that I already knew what I wanted. Then she precedes to talk to her ""friend"" or whoever at the bar for 15 minutes before taking my order. I know all of her personal business and even what she plans on wearing to her friends wedding in a few weeks. The food is good, but considering there are so many other really great sushi places with so much better customer services i would not recommend this place at all. Now I totally understand if this happens once in a while, but it has happened every time I have gone in there for the past 6 months. I feel almost as if I were betrayed, I was such a loyal customer and referred so many people to Pure, I just hope they don't receive the same kind of service I do.",review,O-zVhDi_TeMs6R2Rz31g4Q,1,1,0 +6Ckmrpp6OW1pJ-3Pjg7VaQ,2007-03-15,VTHjIW32FVT86A9DDwj0bg,4,"As I revealed in a previous review, my family loves InnSuites. This location is nestled in the Squaw Peak Mountain Preserve, close to the prestigious Biltmore area, and offers easy access to downtown Phoenix, Scottsdale and the Camelback corporate corridor. + +InnSuites offers comfotable, clean rooms for a very rasonable price. And as with all of the InnSuites locations, the Northern location includes amenities such as free social hour and free hot breakfast with eggs, potatoes, waffles, toast, cereal, yogurt, fruit, coffee, milk & juices. There isn't really much within walking distance at this location, so either plan to hang around the pool a lot or you'll need to have a car.",review,lC4X2crUuxT9Ac9BlOX4Uw,3,3,1 +vxPPpj5jJKO8DtapF5S-NQ,2007-12-06,Ss1DH_8pwBEP_pwBrAelbg,5,"If you haven't been to this place - go! Seriously. It's amazing. It's the best little hole-in-a-rundown-strip-mall you can find. And it's cheap! + +Nestled between stores like Big Lots and some electronic place with Mexican ranchero music blasting, this tiny place is hidden in the corner. The owner is from El Salvador, so don't expect it to be Mexican food -- there are many similarities, but the dishes themselves are different. +Walking in, you can smell the homemade pupusas -- seriously, it smells like the roadside stands along the bus routes in central America. It's amazing. There are only a couple waitresses, and I don't think they speak much English, but the menu is in pictures, as well as in Spanish and some English, so you should do just fine. + +Get the pupusas - they're like thick, hand-made tortillas stuffed with either pork, cheese and beans or, my favorite, cheese and loraco flower, which is some green and edible plant that tastes a bit like asparagus, to me. It's definitely the best one. These things come with salsa and some coleslaw (if they don't, just ask for the salsa) and are very filling! +The other dishes are really good, too. For a low price, you can get an entire plate of things like meat with rice and beans - and this place doesn't skimp on the fixin's. They put slices of fresh tomatoes, avocado and all kinds of other stuff on the plates. +I honestly LOVE it here. If you want to avoid the crowds, come at an off-hour... then you can just sit, relax and watch the telenovela on the TV in the corner. For dessert, pick up a piece of the cheese pie near the cash register. +I can't recommend this place enough!",review,hnirQYfI4cjrzSMENyQTWw,4,4,1 +sbsFamEj5wDxNAjUKrMcSw,2012-10-03,0M2u-dkQDvTq2lNpiumxTA,5,Honey jalapeño chicken lollipops and sweet potato tots are probably some of the most delicious things ever.,review,FKlpOJ05FZno9-JqCBLr5A,0,0,0 +uqrkLgKMUh9kM4L3L_jwyg,2012-05-22,seaOTfrdtgRVJgiMfrY1nA,1,"I have never been treated so rudely in a retail establishment ever. I went to the shop with my daughter, her friend and my niece...all young adults. I showed a picture of the project we wanted make to the woman working there and she scoffed at me. I noticed she was playing Solitaire on her iPad...apparently we interrupted her game. She then proceeded to tell us that she would have to open the door and turn on the air conditioner because her mother, the owner of the store, would be back soon and is extremely allergic to fragrance. The girls and I had body lotion on, this is the desert for crying out loud, and not one of us had perfume on. Then the mother arrived, there was a brief conversation behind the curtain and she walk out with a towel over her mouth and nose commenting on having to open the door. Seriously? Unfortunately we had picked out some stuff to buy and I'm sorry that I spent the $68. I could have spent more but the experience was so distasteful that we hurried out. If I knew how to give less than 1 star, I would. It was unbelievable. I empathize with the woman and her allergies, but the situation could have been handled so much better.",review,D4xQ2OZd22T7o8RzXPLVkA,0,0,0 +PJEJS5rNMRrIBVQDuU9qoA,2012-11-14,qZuht1DN5jo8JsL1ggiJ1w,1,"I don't think anyone who gave over a 2 has ever eaten Italian food in Chicago. + +I struggled to give 2 stars, but figured the wings were decent . + +#1) No celery salt on the Dog +#2) No cucumber on the Dog +#3) WORST OF ALL the GYRO, was not off a spit it was processed +#4) Also, living 30 years in Chicago I have never had a gyro covered in more lettuce than there were onioins. +#5) Since when does a Gyro (not in Chicago) have Feta Cheese & almost not Tatziki +#6) The PIZZA IS NOT CHICAGO STYLE ITS 100% New York +#7) Wings are a 6 out of 10 +#8) THERE IS NO DEEP DISH PIZZA OFFERED OR THICK CRUST??? +#9) I apologize they have now gone from 2 to 1 star... + +PLEASE CHANGE YOUR NAME YOU""RE A DISGRACE TO CHICAGO!!! + +Don't think I will give this place another shot no reason",review,1_vo7C4RnAshpah4sAz2gA,0,1,0 +-vHWAsiX0iHWJw-pkqv32Q,2012-09-29,ONfSQ3RXI7T1yalj9fzkZw,4,"Great place. Sushi was not wrapped up tied enough so it tended to fall apart. Also the roll was a bit thick that it is hard to fit it in your mouth (yeah, that's what she said:)",review,mbQpxYZ1yZqEsdxOnZmD8g,0,1,0 +6Y-6Y6sy6qOQHrWI37zR1Q,2009-01-30,pr36YWZsaXOhx1ehXPpg3Q,4,"Went to Pho Avina (which I could easily recommend to anyone) a few weeks ago with my 2nd dad and he spies the Korean BBQ place (note their signage all says Korean BBQ and not Chuhgajib) and he grabs a menu and we make note to ourselves to check it out (of course, not until after I checked out the other reviews on Yelp) + +So we head there for lunch today. + +Now, I know this about Korean food...I ate kimchi made by the mother of one of my daughters friends and it was good. Beyond that, I know that when I flip on LPGA on television to watch the hottee Paula Creamer, some Korean chick is depriving her of a victory and I am none too pleased but it does appear that they understand food...but I digress. + +Lunch specials $ 4.95 - OK...I'm suspicious. Includes 3 pieces of california roll, salad, rice, vegetable and entree. Too cheap. + +We order gyoza and egg roll appetizers. Evidently gyoza in Korean restaurant is different than Chinese restaurant but is scrumptious nonetheless. Egg rolls more typical to my expectations and very tasty - I'm optimistic. Tea is in big weird cup with no handle and waaay too hot to actually pick up but tea bag says Liptons...I'm still suspicious. + +Salad, underwhelming but I am impressed with silver chopsticks that work well for me. + +Comes the lunch platter... +- California Rolls, AOK +- big mound of white rice, perfect +- pickled vegables, tasty and interesting +- sweet/sour vegetables, tasty and interesting...wishing someone could tell me what it was I was eating but hey, it's all good. +- meat (I had bbq pork but forget the name) mildly spiced, nice, a little dry but that may have been intentional...my knowledge of Korean clearly fails me here. 2nd dad got bbq beef and it was very tasty, not spicy, much more moist. + +We left stuffed, happy amazed that lunch could be so good and so cheap. + +Place was packed and it's obvious why. Inexpensive, tasty, no disappointments and very clean. + +Woman who ran the restaurant wears sneakers and reminded me of a track star because she handled a packed restaurant but hardly seemed to work up a sweat and handled a bunch of to go orders as well. + +I have to say...49th Avenue and Thunderbird, two excellent Asian restaurants practically side by side and you can't go wrong at either place. + +You can gorge yourself for $10 here. You could drink water and have a $6 lunch that puts a Big Mac to shame.",review,55ecDCpJIXzTWjEzMQ11Vg,3,4,2 +vvMR0jgDoBA-g1XgZy8sEg,2012-01-23,er9UtOcEf80iGbzch-cG6w,3,"Alright, I'm not really sure I can give this place a fair assessment based on food. I came here last week and ordered the Lox and Bagels. So the plate came out to me and it consisted of Bagel (I'm going to go on a limb and say they are not made in house) cream cheese, a pre-made product, Lox, a pre-made product (although damn good Lox) capers, pre-made product, sliced tomatoes, and sliced red onions. So basically all they had to do is toast my bagel, and slice the onion and tomato and then just plate. Nothing revolutionary here. So this is why I cant really give Tryst a fair assessment. I would have to go back and actually order something that was cooked. It was a cute little place and has a lot of potential considering where it is located. I have to go back again and update this review.",review,yp90PduP1gD7kgCLWuQg4w,0,0,0 +GAPqG0WNBBidKeZTMpEZ-w,2011-10-03,6OtCtpvyWxDyCh4i_zzxxg,4,"Whoa! This is the kind of laid back, homegrown, down right delicious place I expect to find in Seattle - not Phoenix! What an awesome surprise. Came here for brunch on Sunday and was so impressed that I can say I will make it a point to come back! All the breads and desserts are made in house and I was told everything is made with fresh local ingredients when possible. + +The atmosphere is great. We sat outside and it was nice with prompt service, casual vibe that reminded me of Seattle or Portland, and the FOOD.... Wowie. + +There were three of us... all three did omelette's of different kinds. I recommend the Local Breeze, sans prosciutto. So good! You can get potatoes or spicy cottage cheese as a side - I went with the cottage cheese and it was delish. The bread is also amazing. Nice thick slices for the toast. Best whole wheat bread I've ever had in Phoenix. + +Speaking of the bread - they have a killer menu of different french toast options. If I had not been on carb restriction, I would have had one for sure. NEXT TIME. The PB&J and the Nutella sound especially good. Our friend got a half order and it looked terrific. + +I cannot stress how good everything was. But I can only give them 4 stars and not 5 because the coffee was really bad. A good brunch should have good coffee to go with. + +I will be back for brunch for sure and would also like to give them a try for dinner or lunch sometime. + +Give this place a shot in downtown Phoenix!",review,NqeD28GGg1Wdj9BfaHqr4g,6,10,4 +E0fZHHInMb6xscHDrPlh4Q,2008-10-27,eDD5v7j5bn5wlWfNzXFVtg,5,"I am in love with this place. Everything is delicious. I have been in a few times now and hands down the best thing there is the asian mushroom soup. The portion size is perfect for lunch. They offer a sampling of 3 soups with bread, which is perfect since I can't ever make up my mind. Last time was in Janet was serving roasted red pepper and sausage frittatas and bacon and egg soup both of which were excellent.",review,zigHnwA0FSGPGUE59lLFzA,2,2,2 +SYqTY48DJa1cYhglvmgvsQ,2010-07-01,OnhLUmbXZ0-FXcqQfU9Xow,5,"I booked our anniversary trip to the Westin Kierland through Priceline. It was so reasonably priced that I was a bit concerned it would lack quality, and after reading a few reviews on Trip Advisor I was worried. I was COMPLETELY wrong. This is a 5 star resort from the moment you park your car. The front desk staff upgraded our room, and this very nice gentleman greeted us with a smile every single time we passed through the lobby. They have golf carts available to drive you to your rental car. The food in Deseo is amazing. I would definitely recommend trying the ceviche sampler and the muddled cocktails. I can't forget to mention the amazing bread made with tapioca flour, they will even give you the recipe. + +We especially enjoyed talking to the girls in the information center (the one that looks like a mine). They were VERY helpful in giving us advice on local restaurants and insisting we take a day trip to Sedona......we did and Sedona is now one of our favorite cities. Thanks to Ashley, Miranda, Tiffany, Chelsea, and Pat. When we returned from our Sedona day trip, we had chips & salsa, and two cold coronas. This was a very thoughtful touch. + +If you are looking for a fine dining experience, Mastros Ocean Club is right across the street and has incredible food. I highly recommend the lobster mashed potatoes and the seared scallops. + +Back to the resort.......our room had a great view of the golf course which was massive. Although we are not golfers, we certainly enjoyed the view. Our room was a pretty good size and the Heavenly Beds are my absolute favorite. When traveling I will do my very best to ensure we stay at a Westin Resort.",review,jcqA92E_C1TfHOnd7rupkA,1,3,0 +9OPheVf5o8sRcRHxJDl4-A,2009-11-09,clqHAvzKCrmUOzCmxjWRnQ,5,"I see a lot of four stars...perhaps I'm too generous with my five stars. I'm a giver. + +Attended a party for Georgie on Friday night and had a great time. +Easy to find, easy to park, easy to get a drink. + +Plus- HEY they have the same turbo nozzle a/c vents that I have in my home. I could live there. Exposed brick? Me too! Felt right at home. +I love the way they display their art, I'm assuming from local artists. + +I would prefer to not have to walk down a flight of stairs after a night of drinking. However, no problems there - thankfully. :)",review,7T2ul_LOzArDKjfVRDt-JA,13,14,15 +BRnnFoWl3iFydC5TwuGwgw,2008-08-24,nF8UttSNu33gc1XTpyBQtA,2,"Very disappointed!! + +I picked this place because of the reviews that I've read here. I feel compelled to give my 2 cents worth. + +We started out with jalapeno hushpuppies along with their remoulade. The pups were very tasty (good start). + +For our main course, we ordered the fried green tomato salad to share, my wife ordered the gumbo with a side of fried okra, and I ordered the fried catfish with double okra on the side. + +The lag time between our pups and meal was LONG......outrageously long. When they finally brought our meal, my wife didn't get her okra. They explained that it would take a few more minutes. Keep in mind, my plate had okra so I guess they must have forgot about hers. It was no less than 10 minutes before they brought hers out. + +When we finally received our meal the bartender apologized for the wait and explained that everything they have is fresh breaded and not frozen which is why it takes longer. I can understand how fresh breaded takes longer but you should find a way to do it faster or take it off the menu if it's going to logjam your kitchen. + +All this being said, even after the wait, if the food was good I would be writing a positive review right now. The problem is, the food was just so so. The okra had NO flavor and was not fully cooked to a nice crisp crust. My catfish flavor was ok but the breading was pretty thick. My wife's gumbo was a little bland....almost like the roux was a little weak. + +I really wanted to like this place. After our first experience, I won't likely go back.",review,1xFAHoJQZLfStQF6kU4dCw,0,2,0 +6NHkOtivA_gb_2EbbJbJ5Q,2009-02-10,luCmKoinH3Swr7oECKqksg,3,"Corporate... Juice... PIMPS!!! +I lurve me some corporate pimp juice! I've been a fan of Jamba's juices for quite a few years... but over time, I had forgotten about the joys of Jamba until my sister (Reylynne W.) We went and I got something with oranges and strawberries in it... i unno what it had... but damnit it was good! :) Nice, clean and fresh, I loved every thick sip. :)",review,vF4B6eFdoDmyV_l7MLHMzw,3,3,2 +5VMajxduxfLPSyQkVFKESg,2010-05-06,Om9mjFmMBIMiuJzQCyfRoQ,3,"If I were to have written this review 2 years ago, it would have been 5 stars, but the portions keep on shrinking at an alarming rate. Today I had the meat plate and no more than 2 tablespoons of pulled pork, and brisket were on the plate. Also, what's with the staff? They are like robot drones! Absolutely no personality! The food's flavor, and quality, however, are very good, the place is always sqeaky clean.. and of course the decor is very amusing. Being a hungry hungry hippo, I would prefer a slight price increase, to maintain portion size.",review,nbofxFWHORebBHh10OgYLA,1,1,1 +M0Ulu3PzwBumgOZJL-6KnQ,2012-08-12,E-J784I7mK9tNPRnoRqF1w,2,"Had a very disappointing experience today. All four in our group were disappointed in the quality of the food, especially the overripe cantaloupe and soggy potatoes. The place was busy which won't be the case much longer if they don't improve their fare. The service staff was friendly although I thought it interesting that no one asked us about our experience. If they were interested, now they know.",review,fvD_bt42WeInitD52FM4MA,0,1,0 +-AAig9FG0s8gYE4f8GfowQ,2012-10-23,sHX59q3vMQeZFf9klTrKpg,3,"This was supposed to be my trip to have the best pizza in America. So imagine my disappointment that they don't even serve it at lunch. What human who eats pizza thinks it should only be served at dinner? Whaaat? I have since been kindly corrected by another yelper that this restaurant isn't the pizzeria. My party was confused, since the server said they DO serve pizza...at dinner. The soprassata focaccia sandwich was fine, but overpriced by about $3. + +I don't live here to try it again, so the first impression is the only impression. I'll leave it to all you foodie hipsters to prop up the rating.",review,jEZNqvXjHcSaNtS1XkUz3w,0,0,0 +2TWGIhh6y-f9fe-Q6kySGQ,2012-01-18,LfzN2TR9xhVCojGaJKAHWA,4,"I've never been to a small size airport like this before so it's hard to compare it to another airport. I really enjoy the small size of it, makes it unique. There are basically three buildings, you have the front check-in building, the back building behind the courtyard with gates 1-4 and then a middle building to the side with gates 5 and 6 which also has the baggage claim on the other side of the wall. + +I personally prefer Sky Harbor because I can ride the light rail straight there, but this airport does have a bus with half hour frequency. Take route 184, Power Road southbound and it drops off right across from the front door. Everyone seems more friendly here too, probably without having the masses wearing them down everyday, the employees here still have a personality lol. + +Great low priced fares from Allegiant, good service, resonable food and drink option and it looks like they are expanding for Spirit Airlines to join this fall (2012). Overall a very good experience, I would suggest this airport as an alternative to anyone living out here near Mesa or if you don't mind the hour drive from the West Valley. I will most likely use this airport again.",review,YVyzM5JuquEGmSxWrlXzeg,1,1,0 +e5kc0CQ4R-PCCDgb274gSg,2008-12-18,Wm9fX3GQFR5ScqvUP3tD8g,4,"I love this place for lunch or a casual happy hour when I am in town. The Chips are amazing. They are not your typical tortilla chips. Every basket has a sweet, spicy and regular flavor. The food will not WOW you but then again this is a laid back tex mex restuarant with good margarita's decent food but a really good atmosphere!",review,BXav9E4dd_elPz93EyofHQ,1,1,0 +VAlzQ-qJsSoTcJTc_1Pd1Q,2011-05-09,AXTB0sEigseOhATvD4NStw,5,"i don't say, too many prayers +saint or sinner, i don't care +which is worse, which is better +corinthians, apostles' letters +don't read the bible, preach the word +no born again, but i have heard +of saintly acts, around this town +the volunteers, each morning bound +unselfishly, they give their time +a day, an hour, can remind +you how, sometimes, the way things go +to count your blessings, never know +hungry, homeless, most are blessed +St Mary's cares, for all the rest +feeding famished, forty years +donations come, from far and near +warehoused, sorted, then sent out +deserving families, who, no doubt +would otherwise, just not be fed +but gratefully, they go to bed +with bellies full and filled with hope +thanks to St Mary's, most can cope +with unemployment, cost of gas +mounting bills and dwindling cash +humbly they come, take what they need +a box or two, enough to feed +their families, ease their malaise +for weeks, or just, a couple days +so volunteer, you wont regret +it's what you give, not what you get +easy to say, you could, or should +but doing good, will do you good +we just showed up, put us to work +boxes of apples, stand and sort +with kids from SARRC, autistic, all +http://www.autismcenter.org/default.aspx +joked and laughed, sacked and hauled +bags and boxes, we 'gotter dun' +side by side, some old, some young +so be a saint, they need your help +then write and post, reviews on yelp +that maybe, someone else might read +and too, will help, good folks in need",review,QKW7sYPWPSsIcWqSiDzChQ,7,5,5 +m2hNiVSnMvXVRLMtsWUG_Q,2012-05-27,ToxCAIRohbVM1vizNwUfTQ,4,"I have only been to this theater once. I was hanging out with some girlfriends and this is the closest theater to where they live. At first glance, it looks like a typical movie theater. For the most part it is. The thing that I found awesome, was that it has a daycare center. If a couple wants to go to a movie and it's not appropriate for the child or they just want to do something for the two of them, they can bring their little one to the day care center. I can't believe all the parents, who bring their kids to adult movies. It's unacceptable and of course selfish of the parents. I hope other theaters catch on to this. + +It's also right next to Buffalo Wild Wings and several shops and other restaurants in the area. Check it out.",review,dT5JHk1aJQhOty1kwTitHA,0,1,0 +saON8-nDZi5W64u1xGtmPA,2012-03-26,_7ZkA5VyinBVL6fVh2tjJA,4,"Went back on Friday and was disappointed to find they are closed from 12:30-1:30 on Friday...lunch time on Friday seems like a super strange time to be closed and I was unable to eat there due to the closure (and I drove out of my way to go there never thinking to call and make sure they would be open at a time that should be the busiest of the day). I will go again, but I will call before heading out of my way to make sure they are open and I don't waste my time on the drive.",review,opBoaO-xNShH86ZW3N1RIA,0,1,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2011-11-13,OoMRRx6VSTYVdNb3rZ5JzA,2,"I'll put it this way -- this place is not worth $55 for lunch for two. + +Two burgers, an order of fries, a Manhattan ($10), a beer = $55 with tip. Nice little spot, but hard to justify the cost. + +The burgers were decent but not rave-worthy, the glass seemed underfilled with the Manhattan - though what was there was tasty. + +If you like over-spending, this place is good. If you're more value oriented, skip it.",review,OeF4ktJqY5Qf_gf494uE_g,0,3,0 +ppoQDk5EQjOJBYNEzYp9Hw,2011-10-25,vyFzPAyk0e8nQVUedSeQgQ,5,Love this store! Were really helpful when I helped plan a replica white house dinner for DESERT SHADOWS MIDDLE SCHOOL for 370 7th graders. Gave me a discount on the party supplies I purchased for the event. Even called others stores to find me the extra stuff they didn't have. Love their halloween section too. It's my one stop shop for parties!,review,6h5PM9BhvhECbQ7ojgoNXQ,0,0,0 +IM-9thHqQbBK5tX5MfTzBQ,2011-02-24,aWQLsOkTgmuIgdlHv-Q4ww,1,"Let me preface this review ..I have lived in this area for 15 years and Chompie's has been the only option for good Jewish deli. In my 51 years I have never received worse service than from Chompie's They ALWAYS get the order wrong., Tonight after much debate I caved for my daughter who has strep throat. She wanted nothing else but matzah ball soup to make her feel better. So reluctantly I called in for take out at Chompies. I assumed the one thing on there menu that might be a safe bet and hard to screw up would be the soup. I returned home and called my daughter in to tell her I got what the doctor ordered. As I watched her pour it in the bowl we noticed it was missing one key ingredient......... THE SOUP!!!!! When I decided to call and tell Chompies this has to be the 10th or 12 time in a row they have screwed up our order. This was more than screwing up a order. This was forgetting the soup in SOUP. They told me if I wanted the broth I should have asked for it in a separate container. I responded I didn't think I had to ask for broth in soup! I WILL NEVER GIVE THEM A DIME OF MY MONEY AGAIN. I highly recommend to drive the additional 15-20 minutes in your car and find somewhere else when looking for jewish comfort food. You will be highly disappointed with Chompies. This is the first time I have ever heard of yelp. My son told me to come on here because this is a way to tell other people to avoid restaurants such as these. I hope you take my advice.",review,bTMdohssK8vaYBXa-Ynhqw,0,0,0 +jgWAgT7LWPTf5wju9Q-kiw,2012-11-13,pNdvpwCyJaZvqsMDlzxc8Q,5,"Warning, don't get deterred that there aren't any seats for you when you walk in... that's a good sign that the the tables are full with everyone stuffing their faces. I waited for about 15 minutes for a table to free up, and I'm glad I did. It was kind of a chilly night and I was feeling for something hot. I decided on the seafood noodle soup and pork pies. The noodles soup broth was lightly seasoned with a hint of white pepper (just the way I like it), the noodles were thick and hearty, and the portion was substantial. The pork pies (3) were like a flattened pot sticker that had been pan-fried on both sides, Yum! + +Definitely, a place serving up genuine Chinese food with the finesse of a home-cooked meal. I can't wait to go back!",review,37ORSB5c73-RuZnmKA_w_g,1,2,0 +NkTBJP2YOwUAUNzRqR2gJg,2011-10-17,V7tO6Nce2ZypS2JSqd3CfA,5,"I chose this place because of the 100% rating on urbanspoon.com & the proximity to the hotel my family was staying at. We were absolutely blown away. Don't let the location of a strip mall deter you from this place. The food is absolutely perfect. I had the bouillabaisse while my 2 table mates had steak. Each dish was prepared perfectly. The service was also some of the best service we have ever had at any restaurant. The waitress was so attentive & detail oriented. I never had to ask for anything, she always knew exactly what I needed. My water & iced tea was never below halfway. At the end of the meal, the owner/chef came out to greet us & that was such a nice gesture. We were so happy to compliment him & his restaurant. My visiting family even said that they would gladly come back to this place on their next visit. This place is so great & you just need to go visit it!",review,ojr9TTAgpj6pGDGJlKD6ow,0,0,0 +XkNQVTkCEzBrq7OlRHI11Q,2011-09-14,23uo-Xkto0yCxnoNR2wDJw,4,"In a reasonably late scramble for dinner, this pizza place was quite a find. + +The location isn't altogether promising, right next to a Circle K and tucked in an itty bitty end in a strip mall. There are only about 7 table. Yet the owner, whose service was excellent, makes the most of the situation. + +The wife and I split a margherita pizza. Out first, though, is the appetizer, which was small pieces of pita-like flatbread served with balsamic vinegar served over a tomato and celery salsa cruda. Nom. Worth eating in for. + +The pizza itself was a thin crust... The crust was decent, the cheese was good, and both the basil and tomato very fresh. It must be nice having ready access to fresh versions of both year-round! + +We were very happy with our meal. Pizza A Metro should be on your short list for a good Italian pizza in the area.",review,V7pppn-r6tL_Yb2_msQQFw,0,0,0 +LuTLXVyJvgshMlXTBw-Now,2010-03-28,DWFfqGlj3mJX8jextYj9Pw,4,"i love this place and their food! +what i mainly love is that their prices are extremely reasonable now so i can go more often. +their steaks are very good as are their ribs and chicken +as for appetizers, i love the signature Bloomin' onion and i recently tried their wings and i love them! it must be the seasonings and sauce +they taste very different. +and the service is alway excellent +but when you do plan on going, make a reservation to avoid waiting too horribly long",review,cqPcKMkgfWc5lu3ltuLdFg,0,0,0 +H91jZ9BiQZZ4_7OlEd6eQg,2012-01-26,9g8e2FXC2hwZlgkgBwmKzw,4,"Burger was good, bun really soft and veggies were fresh. Sweet potato fries were very good as were the rings. I knock them for not having cheddar cheese, cant really have a stellar burger without it. The burger quest continues.",review,Pv4WfS5ix6MAZHAeX-37YA,0,0,0 +EFSU5EPU8VsZmrjbTxjc4A,2012-04-21,vYR6nx_5D9TLRGuGq1-cjw,4,"This cute little neighborhood breakfast/lunch spot just opened up, and is the sister restaurant to Tuck Shop. The menu is small with super reasonable prices!! Not much in the way of vegan fare, but I managed to find a tasty dish: The Red Flannel Hash (beet, potato and root vegetable hash sans eggs). It was very tasty and had a nice amount of black pepper in it. I also ordered a glass of fresh squeezed orange juice for a grand total $8 and change. Not too shabby for brekky. + +My dining cohorts ordered a frittata topped with sour cream and chives, a Portuguese doughnut and biscuits stuffed with some kind of meat (I forget the name of this dish) and were equally pleased with their meal. + +Not sure about parking, as we walked over (so awesome!) from their house. This is a quaint little gem with indoor and outdoor seating. They also have booze, so you can add a little pizazz to your wake up call. + +Great place, can't wait to come back!",review,oXBahXJCXUEATm5IVexw8A,2,4,0 +GjvIDOEhdQB1oPrFeSpxBw,2009-12-04,aqY9phFO9Yz9tIsvCmPGpg,2,"I am one of those people that talk crap about Gordon Biersch behind its back but I'm nice to its face. I go there and continue having expensive yet mediocre meals, but like I just said- I go there. My boyfriend asked me once ""why do it to yourself when you don't enjoy it? "" I don't know. Maybe I'm a masochistic eater. Actually, I'm just very agreeable and I work super closeby. AND if I didn't go there I would just walk over to Whole foods and spend a zillion dollars on a goulash-y takeout container that I don't even like after I pay for it. For me, lunch is more about getting out and doing something else for an hour a day. If someone wants to go to GB I will happily tag along and probably eat, even though I know I wont like it. At least there's not much harm in that, except to my wallett! PS- Lori is the nicest, sweetest server/bartender ever and chatting with her makes up for the crappy food!",review,wC1CPV5bf--bDLtlhNSPLg,0,1,0 +sjCRI-lCh4KLO_RYQdlEeQ,2011-09-19,QKkHiSDIuwQbSNYxkWxozw,3,"3 friends and I went for restaurant week. Iruna has great ambiance and charm. The service was top-notch, and our server made excellent wine recommendations. The desserts were amazing. The other food was just ok. + +Here's what we had: + +tapas - tortilla espanola (which was complimentary) was delicious; chistorra (chorizo in cider w/ baby artichokes) was also good; pan con tomate was surprising because it didn't seem to be tapas. rather it was huge chunks of grilled bread that didn't work well to distribute flavors and was oily. + +entrees - trout with salsa navarra, eggplant, roasted peppers, onion and tomato was very nicely cooked and had a nice balance of flavors. filet mignon with tomatoes and salbitxada was order medium rare but delivered very well done and over-salted. It was refired, and v2 was the right temperature but still over-salted. + +we glanced at the patio on the way out which looks fantastic. We return to try some other tapas and sangria on their outdoor couches.",review,ky5-mOk8-9M-NlLr8Jh8rA,0,2,0 +egCtkzJEMwu7-vpFcM7VmQ,2011-10-31,f942gG6Dy47yV72bo7zXPw,5,"Mojo's was my favorite till I tried Menchies..much better flavors like Chocolate Covered Banana and even Pumpkin (awesome) for their seasonal! Lots of flavor, very rich, clean & priced at about what they charge at mojos..maybe a little more but Im not sure!",review,ZdX3vDHav6AjNtaNzt-gbg,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-12-09,e2dKvF0Zv7wl-E078MNH0g,5,"Went here before a Phx Suns game. DELICIOUS! Everything on the menu looked amazing. I forgot what it was called, but the open-faced steak sandwich was my favorite! All the dishes were even presented nicely! Will definitely eat here again!",review,s2PpELgBrqasMYvgiMs1NQ,0,0,0 +nW_1gn19lMnS9IF1KlZ-aA,2011-01-14,R_EWL3kHZt_2v8pfBAggnQ,2,"What a shame this place is doomed. From a flavor perspective, I have never found such an interesting Asian/fusion style of food in a quick-serve setting. The food is remarkably rich and spicy, it's really refreshing to see a mass-market place be so bold. Being so deeply impressed initially, I really, really wanted to like this place. I have since given it about three or four tries. Yeah, not so much. + +First of all, I'm not sure whether it's the quality of the meat, the parsimonious manner in which it's cut or some combination of the two, but their meat is always tough and stringy. When its breaded, the breading is inevitably chewy and hard because the meat inside the breading is so insubstantial that all the moisture gets sucked out in the frying process. Not even the chicken comes in substantial enough chunks to be juicy. + +The amusing thing is, what made me like this place at the outset was the delicious sauces. You're enjoying the sauces so much you can easily overlook how crappy the meat is. Alas, that will only take them so far, as time and time again you are reminded of the crappy meat as you are compelled to floss vigorously. + +Portions are another issue. They're too small for the price. Instead of takeout containers overstuffed with rice and entrees, grandma-sized portions are stingily arranged on a small plastic plate. I never have a problem finishing my entire meal and I always wish there was more. + +I think Pick Up Stix has a bit of an identity crisis. On the one hand, they want to be Pei Wei, all flashy stainless steel and fancy real estate. On the other hand, come on folks, it's takeout faux-Chinese (""pick"" ""up"" - see what they did there?). The best takeout faux-Chinese is always known for generous portions at low prices. At Pick Up Stix, you unfortunately get neither. + +The patronage reflects my opinion about the place each time I go: it's always nearly empty. I really don't expect it to last. That's a shame, I really will miss the unique flavor profiles.",review,A_VCj_m1zqW0gc0zSzQ3tA,0,1,0 +e34tIpveepWkpvOuv_boqw,2011-02-12,Pm9Fc8J3lnwUpHlQ1UCbHA,4,"Wow, this was one of the best dinners I have had in a long time. I definitely have my favorite spots but it is rare that I have an entree that knocks my socks off. For me, this was the gnocchi dish with the shitake dijon cream sauce. My husband was surprised that I ordered this, since I don't like mushrooms, and luckily for me, the extent of the mushrooms were some medium ones in the sauce. The gnocchi were very tender and the sauce was rich and creamy. I felt like I was eating a delicious mac & cheese with some soft foccaccia bread. OMG. We also ordered the porteguese style mussels that were a fave of my husband's. They were just okay to me but overall, were decent. We also ordered the chorizo and manchego risotto that I really liked. We each had a glass of wine. Our server was kind enough to let me sample the prosecco before I ordered it. Good thing I did because I didn't like it. The server asked what kind of wine I liked and then brought me a taste of their white blend which I enjoyed. Overall, before tip, our bill was $50. Very reasonable for three plates and two glasses of wine. + +This place is extremely small inside with 4-6 small table inside and 3-4 tables on their patio. There were two servers and on a busy Fri night, service was slow. But they were very nice and apologetic, so I gave them a break. I noticed the kitchen staff worked extremely efficiently which is a plus for such a small space. I was very impressed. I cannot WAIT to come back here as there were several plates that looked amazing.",review,RxfFQxUtSIGYwTKU_rvAeg,13,15,9 +xJ9kdujal0bSGlZ9tsvrYw,2011-01-24,KAWrPC9zFf0dbzbQWatDZw,5,"i love, love, love the high level of customer service that paul and his staff provide at central car care. i recommend them to all my friends. good service, nice people, great prices, reliable..... what more can you ask for?",review,66-nmBKKCG-NetEtGL6pQA,0,0,0 +NYIyTj2AZJpAo7XIM-Z7lw,2007-11-27,3lzHa3OHiig1amqo5IzPsA,3,"Valle Luna bats .250. Not high enough to put in the middle of the lineup (hell, probably not enough to even start), not low enough to send back down to AAA. Completely average. I'll admit, however, to frequenting the restaurant primarily for its bar which seemingly promotes about 17,696 drink specials and more on football sundays. Other than that, there isn't really a whole lot to say one way or another. Perhaps that says more than a lengthy review ever could...",review,kDJ9PRlYugp5RIa9ontPZg,0,1,0 +mDrnZvSXMbMIGE0IX9mMqA,2009-03-05,E7L2cT6fnj18q2eES0jmgQ,4,"i've lived in the downtown area for like 85% of my life and have only ventured into the heritage square area a few times for Heritage Squarish events...usually it's a walk thru to the Arizona Science Center or to a parking lot. but i was here two weekends back to back for the NBA All-Star game tip off party and the Matsuri Festival a week later..and wow. this place can have some awesome things happening. + +the tip off party...75-80 bucks for a ticket..and full range to entertainment lots of food and drinks to sample...free of course. plus the museum and science center were open. live DJ music and access to Pizzeria Bianco and Rose and Crown. totally made my night. the Matsuri Festival was alot of fun, saw Jack play the drums, saw some kids dressed up as anime and manga characters. no free drinks that day. but still was alot of fun. + +Heritage Square gets my 4 stars for being a cool place to have things to do. plus the old houses and stuff rock.",review,E5QyEU6FCQwnTys0S73zNw,6,7,4 +3Zsjlum5kl5N5KV712aTMQ,2006-02-27,GX24QXyev0hrXw4bNQsu5g,3,"It gets all three stars for the view. For the prices charged the food should be oh, so much better. And the selection is very limited. But if you are trying to impress a date, and aren't too hungry, this is a very romantic location...",review,Sjp6EYsqzdlTvymER6wBfg,1,1,1 +ZEdaJ8mcMpPiFWgDuSPqeA,2012-09-15,Qs8Ta_P-tIG4diwz01yaJA,5,"Only 10 min away from walking distant. +This is really really really good, also really really really bad. + +I am almost finished with trying each soynami.... So far and not a fan of the one with banana. +YET EVERYTHING is.... just... just good. Place on top of a Swiss Alp let me sing, dance, and exclaiming goodness oozing. + +Also i can eat one and not feel lik I am creating havoc for my metabolism to compensate. + +RL: + +NOTE: Oddly takes an unusually amount of time to get into my hands. 10min? +Worth the wait, worth the walk, worth the extra chocolate ;)",review,uOdEsOgPW48Ky4j8U8CEcw,0,1,0 +B_Ea839qdvPWa07YnpeIrg,2010-04-22,PBj4OFTu1vlKL94na8L-cg,4,"I love the White Tanks! +It is one of the few parks in the valley that isn't completely surrounded by development, at the top are beautiful fields and you notice the fauna change. There is also water in huge white stone natural catchment areas, hence the name ""White Tanks"" +However, recently there is a library being developed at the edge of this park, far from many homes and just plain uninspiring to think that everyone who goes there has to drive a good few miles just to read a book +Here are my thoughts on the matter that I wrote in this article about the new ""Green"" library in AZcentral +http://www.azcentral.com/community/westvalley/articles/2010/04/21/20100421-white-tank-mountain-regional-park-library.html + +""I could not believe when I pulled up to the White Tanks to take a coveted hike through the beautiful hills, that the removal of huge cacti and the building of yet another public monstrosity was taking place. First of all how can anyone call this green? Can't we just leave one place in the valley free from so many cars, asphalt and brick? How is anyone supposed to get out there anyway? It is so far from most home development and completly in the wrong direction to support any kind of ""Green"" living and combining activities as most people do when they visit a public institution such as finding a place to eat lunch, a store to check out, or to mail a letter. Putting a library out away far from urban development and removing tons of cacti to transplant somewhere else is a crime against nature! """,review,KepFAipDMPuIHS7TyQFylA,1,2,1 +rZbHg4ACfN3iShdsT47WKQ,2010-12-24,gzZ_ai5d-sN-I81DinK-oA,5,"Great restaurant! I had the brisket sandwich and loved it. They bring out fresh cornbread before the meal which is a bonus and small little donuts for after the meal. The restaurant has a great decor and is a very pleasant atmosphere. If you want some good ol fashion barbecue- try this place out, you won't be let down",review,cWTf076MJ8TJ-75NsRUORA,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2011-04-04,4P5agj5xG0KvcDTGrCrSGg,4,"First, just be careful of sitting on the planters on the north side of the building if you have to wait for a table... sometimes you might get surprised by ants... + +Now, if that didn't scare you away (and I was trying a little, because I am hoping to tamp down the wait time a scoche) please enjoy yourself! + +Postino's Arcadia location is the original forerunner in the revitalization of the Phoenix scene. Postino. Cleverly located in a former Post Office. Thanks USPS. + +If you find yourself here with a wait (not always, but sometimes) look about yourself. The patrons at this location are uber friendly. With a larger-than-average number of regulars, some of them have very good stories to share, and are particularly generous. + +We waited one night and had two gentlemen with a high top table offer to let us share their space. It was a rousing good time full of mutual ease, and they left before our party of 3 had finished. When we went to pay, we found out they had taken care of the entire bill. Thanks guys! + +It's that kinda place. A little magical, a little homey, a little bit of wonderful with great food and plentiful draughts, and just enough contemporary edge that you can impress a date, or drink with the dudes.",review,e6jqQ_YXlGiLPi1z2HO0Pg,1,1,1 +KBG28p3lGX17hOPoHhq5PQ,2008-02-15,o1twR2pI5yE6xE0HnRGnIQ,5,"Sushi is not just a meal, it's an experience...Everything from the way fish looks to the crisp green of the seaweed is art. The smell of the sake and the sound of crisp sizzle on the grill create an environment conducive to stretching the palette. Yasu's does this like no other sushi place...The fish is pristine, the rice like air, and the flavors intense and varied. My wife and I live a stone's throw from this place you would never see it if you didn't know it was there. It's like a little secret that is starting to get out...All I can say is that it is hands down the BEST sushi in Phoenix, period. Get the fried oyster rolls, get the grilled mackerel or trout...just try it!",review,GZFiCRwm-bVauSRtTKhb4g,4,3,0 +yFQBmF9xwcnnpA6P1IcoEw,2010-12-01,wvuMON5vVA3pA2ilkTvk0w,3,"I must be spoiled and realize that this is not a big grocery store. I tend to think the store is a good place in a pinch for Asian ingredients. Mostly, Chinese and Vietnamese products for those looking for Japanese products might have to go elsewhere. In a pinch it is great, hopefully with local support this store can improve.",review,acOfAooftS7jdWlhyI0CQw,0,0,0 +IMGW6y8wHQCfr_6k-YXg_A,2010-07-19,8TylC5srYSH10DbTnWktsw,2,"The Beer is good, most of the food is ok, but I have a big issue with BJ's. They advertise their pizza as Chicago style deep dish. When you order one, you'll know right away why there isn't a single location of this chain in Illinois. The Pizza is more like something I'd expect to have ordered at Pizza Hut than anything I've had growing up in Chicago. + +Have a beer here before seeing a movie next door. Other than that, there's way better places to eat in and around Chandler Fashion Center Mall.",review,thdVzCfKx-DV0zYWqId3pw,1,1,1 +xuEsUDFIWIEnBXvj1EBXlw,2012-04-12,iHM6CurNv6iu8ZdIseehPw,4,"I really like this little dive bar and was quite taken back by the fact they were shut down yesterday. I'm a frequent visitor, and they have a decent selection on the jukebox (touchtunes). The food is typical bar fare, but decent.. got a kickin' deal on chicken wings on a Monday night. I hope they recover because they are the best thing for a dive bar fan in Gilbert!",review,vatvtZ8rasqrJyqdaVllDA,0,1,0 +F3tqTcfKnljJcSyyqN0bbw,2011-06-01,xaatHDJfJgwpWuvOduVvpQ,4,"Great food, clean a bit old but nice",review,C_pmkNPyze3U6tDMG2f33w,0,1,0 +-O7H5LhBkE13VQZB0QZI0Q,2007-03-08,gDVhQNwvCt2ioWvA7dSQ5w,2,"This place is located right on Mill, with a patio that is right in the action. + +they gimmick of this primarily college bar is their frozen drinks, which are tossed around in Kwik-E-Mart squishy style windows behind the bar that you can see. they come in plenty of flavors like red, green, orange, etc. seriously, they all taste the same to me, and after a couple they only become recognizable by color. + +the frozen drinks are loaded with sugar and everclear (like the HIgh Octane) so it only takes two to feel super drunk and have a real bad stomach ache (which feels even worse the next day). + +they also have regular beers and liquor, and even a menu - which i never realized til someone sitting next to me was presented a hamburger at their table. + +overall it's not my style, gimmicky, co-edy and obnoxious, and i only end up here when someone else wants to go here for some reason that i can never fathom.",review,7GC9fVWKa4a1ZmBGLH6Uww,1,2,1 +toDZ6L_a_0lWU9O1JtQRGg,2011-07-08,PDiYm37pT4CFaX4FUgirBA,3,"This Dunkin Donuts is hit or miss. + +When i run in here for just coffee, the service is usually very fast and prompt. When i run in there to order coffee and food, that usually becomes a circus. There have been times when i've waited over 20 minutes for my food. Usually it's not a problem, but when you have a business meeting that you have to attend to, it is. + +Fast food, pffft. Bring a sleeping bag.",review,GsNB-KVGhlL9uwHMXi6P_w,0,0,0 +oCA2OZcd_Jo_ggVmUx3WVw,2011-08-11,cGNGk7SLSpVUcvvvqDAL_g,4,"great place to go with out of towners after a downtown game! + +the drinks here are better than the bar food!",review,xZvRLPJ1ixhFVomkXSfXAw,0,2,0 +3byBKds6zEJ6zCDh90bhVg,2012-01-05,bhokMtCUqSO8ey-IF8ufPQ,5,"01/04/2012 + +I thank Yelp and ATC for giving me the great opportunity to experience a terrific performance of ""Daddy Long Legs,"" ATC's first musical production, at The Herberger Theater tonight! The two-actor (Megan McGinnis and Robert Adelman Hancock) musical, plus the invisible, but great assets, the orchestra and sound crew, entertained and amazed me w/ their execution of a well-written body of work. It had comedy, romance, deception, and sorrow, to name a few... what's not to like? Truly enjoyed McGinnis' impeccable timing, as well. It is sad that many people pass up the opportunity to watch live theater due to the higher ticket fees, and I cannot fault them-- what's easier to bear: $37 per person plus $3 parking fee, which you may buy at the box office prior to attending the show, or $10 and free parking at the movies (well, at least when you're NOT catching one in downtown PHX)? However, when you do decide to place the financial investment, you will almost always be rewarded w/ a highly-memorable night, believe you me! + +I had a wonderful time, and I would definitely recommend ""Daddy Long Legs"" to anyone who enjoys great acting and music! (Much thanks to McGinnis and Hancock for their lovely harmonies-- I cherished them!)",review,0bNXP9quoJEgyVZu9ipGgQ,12,12,8 +qr5MMPq-DliAgaSvG47tdg,2008-12-23,_iOX2s8AjOxnykyi9pUecA,5,"I'd go back the next time I'm in town. Its friendly in here. My friends and I just went in here to peek but we were presented in glasses of rose. It was good, so I checked their stores of champagne (I like it pink). I should have bought a bottle but we were on our way to an interview or dinner.",review,JuQIyyxHt-ghfd83UJeuHA,3,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2012-01-06,Jt_Q4_t8Sb3wMdiMNoYxcg,4,"The Vig Uptown is on my list of very favorite places to go in PHX! + +I'll keep this one simple: great food and awesome atmosphere that's chill, not pretentious, but still super cool keeps me coming back to The Vig Uptown.Sweet Central Phoenix vibe and location. I like it that this place is close enough to the Central corridor but also close enough if I'm headed over from Scottsdale or other PHX hoods. + +Happy hour is a great deal with half off all appetizers, 5 dollars for any burger and fries on Mondays after 4pm to close, and a stellar menu of comfort food that's still inventive. I adore the wings aka ""vings,"" the artichoke dip, the salads, the burgers, sweet potato fries,and anything I've ever tried here. Other good things: nice patio area that's really indoors for hot PHX days, fireplace area, a bocce ball court, the fact that it's in a repurposed 1950s bank building with a retro feel, and the Vig Rig: on weekends they will pick up/drive home if you want to drink a bit! + +Only knocked them a star because: sometimes the service falls off when they're busy - I've waited way too long more than once just for a salad, etc. If it was only once or twice I wouldn't have knocked them a star...but they're usually busy and the service usually isn't very good. If they can fix that a bit, 5 stars for sure.",review,NqeD28GGg1Wdj9BfaHqr4g,7,7,3 +Fnfz9bpjjg1E4eAih2XomA,2009-11-03,7D1zLsGEYe8lOupuBQmh1Q,4,I was pleasantly surprised when I walked in and saw that Country Market had a deli here. I picked up a roast beef sandwich and some potato salad. When I was eating it my friend said it sounded like I was having a mouth orgasm because I moaned after every bite! If you live in the area and haven't been here yet try the sandwiches they're great.,review,jopndPrv-H5KW2CfScnw9A,6,8,6 +6rijZ1qIjiq1Dgdy35iqxw,2006-11-14,I_uvEbao1ok7uZA8tjUuPg,5,"Ah what a beauty and wonder Camelback mountain is. However I do warn beginners to use the easier trail on the East side near Invergorden which runs north south and turns into 64th st. It is a bit of a walk from the parking through the neighborhood but the hike is less treacherous and much easier and takes you up a gradual slope to the top. Be very careful it's easy to loose the trail on that side too. +Of course all the Phoenicians like to go to Echo Canyon at Mcdonald and 44th street bend. Parking can be bad at peak times on weekends--I definetely recommend late afternoon hiking, less exhaustion from heat, less crowds and a glorious sunset at the top. +Happy Hiking my Dear Phoenicians.",review,KepFAipDMPuIHS7TyQFylA,1,0,0 +-tBiXT917wKlr6n9wSqViw,2009-03-26,VpipbbN1xsIAnxFBILmCDw,4,"I will have to admit that I was not a huge fan of the Keg, as I have been to the Chandler Mall location and I was not impressed. I was hesitant to try the new location at the San Tan Mall, but I tried it anyway. I have been there 3 times in the last 3 months, and I am glad that I did. + +I thought the waitstaff was excellent and very helpful every time I went there, and their menu has some really great choices. The bar was very nice and clean and the outside patio is pretty awesome. If you go during the cooler months, they have a nice fireplace and comfortable seating. The prices are similar to Outback, but the food is far better. + +I will be returning.",review,hDopGRO8tvcT7Dj0noAWRQ,1,2,1 +8qrICL2tS2Rq7b5gxUdQwQ,2010-12-24,8thwWBFLZP8S2NE48zeoGQ,4,Best Thai food I've eaten in the Phoenix area.,review,sgcHJp8DhSJ8JOFqPSOcNg,0,0,0 +nk6_ipMkmUvUtq6Xvncf0A,2010-08-10,VgKl0wN7vozHqxKH_uBNWg,4,"Not authentic, but tasty in its own way. + +I go here for happy hour. +I really like the viva las vegas roll. +The crab cakes are of good value. +Fried calamari is a bit bland but worth the volume (big) + +Off the happy hr menu, my fav is the scallop dynamite roll. +either you love it or hate it. It took me a couple tries to appreciate it. + + +the desert roll (bananas fried and topped with fruits, w/ a hint of white chocolate chip) was surprisingly good. + +Walking around the mall after dinner is pretty relaxing. + +Do not get the tempura icecream here. +It was nasty.",review,I-P1v7sRjDLEfVOndp01kA,1,1,1 +_uUlWKhPmjFUUxOSS-EP_w,2012-09-23,wmeUXmJvfd7f8xPnmFJ_cw,5,"Very friendly staff, or a fast food place-- their customer service and friendliness is unmatched.. I go more often than not simply because of the experience every time! Thanks Micky!",review,6CIxnHYCfM7D4hGx8WWYGQ,0,0,1 +JYRp5gBs04z683JoO8ANOw,2012-11-05,STTQd68tbYFKMnXD25aJ4g,5,"Love massages and facials! + +I would highly recommend Enrique for a massage. Great technique. Great membership prices and great walk-in schedule for those last minute needs.",review,SK5s2evxRsvRI1_i4GlzRQ,0,0,0 +OdD1GuGNQ64ssJmMJ_D9RQ,2012-08-15,om788omhnklOihtW0ECscA,5,"This place is so unique! I was disappointed that it was closed the weekend of my birthday in July, but I won't hold that against them! + +This bar/boxing ring/vintage store/food truck/soda fountain is super awesome! My cousin took me here a few years ago and since then it's been a place that I always show friends and family members when they want to go out downtown. The drink list is pretty extensive, with lots of organic cocktails served in cute mason jars. You definitely get a good sized drink! The beers are cheap, the food is so-so. I think it's a bit overpriced, so I'd recommend eating somewhere else beforehand. + +The boxing ring is random, but I've seen friends go up there and fight in a drunken stupor, and that is a sight I'll never regret seeing. Some nights they have karaoke, which I've chosen to partake in a few times. I've seen DJ's there on the weekends, and I really like how they switch up the music genre each time. Sometimes it's rap, others rockabilly and oldies. On Tuesday nights they do FREE swing dancing lessons and I've been really wanting to try that! + +i love the vintage feel to the place and am surprised it's not packed all the time!",review,A2FF3rbujS4O760_400DVQ,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-01-23,itLZYDK1BEZKOCpBGALO3w,5,"Haven't been here since 1997! Man, now all the memories are back and can't wait to get situated in AZ for a couple days! ;-)",review,qDODC_9fKsPQNsmYM6PkJQ,0,0,0 +vwZ15OkVO6PemAe87k0M-Q,2011-08-01,j-PuuOJDnyBf2AqSMZslFA,4,"Great spot, but it get's wayyyy too packed! Sort of a double edged sword, if it weren't always so packed it probably wouldn't be such a hotspot, but being so packed makes me decide to not go there about 60% of the time it crosses my mind. + +My advice, if you are gonna go, go early and lock down a good location...",review,fJ_sUnZfUX6aCnqOXookig,1,2,1 +-AAig9FG0s8gYE4f8GfowQ,2012-10-10,uf11ykR0p3eqfTZo13nSVg,2,"It's unfortunate their menu only has 4 sandwiches on it. The food was good, albeit leaves a lot to wish for. It came on a plate with a couple olives and nothing else. I would expect more for the $9-11 price tag. + +They market themselves as a sandwich shop but I just don't buy it. More so, it was a hipster hangout where it seems people go to look cool. Granted, the few items the did have were quite good, but I just expected a nice turkey sandwich, but that wasn't happening. + +The service was on the verge of incompetent but the owner did swing by with a loaf of bread. Too bad we had to ask for oil at the counter to dip it in (our waitress was absent). + +Their water was unpalatable and they didn't have a lemon, lime, orange or anything wedge to make it slightly less offensive. My friends that live in Phoenix told me though, this is just the way it is there. + +All in all, I certainly won't be rushing back but there is plenty of room for positive improvements.",review,udK1-SLvAIHFGES_xEhahw,0,0,0 +brDiv7CufBg4bdFfPBY8Fg,2012-08-22,Sxa5L9mJL2AGdUTkx2yTYw,2,"2 stars for the drive through. Everything else about this Starbucks leaves you wondering, ""why don't you just get back in your car and drive down to the other Starbucks on Daisy Miuntain""...",review,YLE6GoJ61fb0QBF7JTkaJg,3,4,3 +X_J65cnN3jJWGYacyNwKGg,2012-05-15,Y1w6hcnGEz74cP-_MZAK8Q,4,"I came here with a friend who has been here many times and recommended it. I wasn't disappointed. First, we came during the lunch rush and it was busy. However, we were still seated immediately and served by a friendly waitress quickly. The food then came out in about 5 minutes! I had the rib tip plate, and it was very good. My friend had the pulled pork sandwich which was also good. It's out off the beaten path but worth the trip. When you pull into a place out in a strange location, and it's packed? Good sign.",review,06FvM-0mpGxQSfoV4Em7bg,0,1,0 +unPzS1QJJctlZyLGFSk_HA,2011-06-06,egNu3HXmzyjGX4QnExV6NQ,4,"This review is composed as a companion piece to the other positives on this page, so please read those for details I won't repeat. + I think Jason B.'s comments most accurately mirror my overall feel for this place. And, while I find Nick S.'s opinions undeservedly harsh, they do contain kernels of truth that shouldn't be entirely dismissed either. + Regarding cleanliness: I contend that Tony's operates on the ""European Standard"". So ,if you've ever been, you know. If your home has anti-bacterial soap pumps at every sink, you carry antiseptic wipes in your purse or on your person at all times, and you fixate on the illusion of a 100% microbe-free world, you may want to ""pass"" on visiting Tony's. I'd assume then, that you would also avoid any contact with street vendors and food stalls in places like Mexico, Madrid, Bangkok, Hong Kong, et al? Yeah, we're all free to set limits on our individual tolerances, but at what cost to the fullest enjoyment of all that our one, single, lifetime has to offer? Scorpions on a stick, anyone? Perhaps a chilled brewski for starters. Do you do calamari, or not? + If you're of the more adventurous sort, at least poke your nose into Tony's for the cultural experience. I consider this place a bona-fide living history museum, with a least three generations of family in evidence, and at your service. Want the lights on in the grocery? Ask. Have a question about ANYTHING? Ditto. + Also, take time to see the mementos, memorabilia, kitsch, and exotic products liberally displayed on,behind ,and above the counter and entry. Yeah, there IS dust, but for me that doesn't diminish the faded, festive charm in the least. Nor does it alter the palpable sense of eras past, and present, that this place evokes in me. See the vintage ('50's?) black and white photo of Elvis w/some past friend or relation. Or, more currently, the color shot of, and shout out from, the entire Orangewood Cheer Squad of '09. + I admit that not everything at Tony's is superfine, or to everyone's particular taste. I don't especially care for the coarse grind of their sausage, for example, but the sliced meats and cheeses are very good, and well priced. I WOULD recommend checking expire dates on groceries, since the turnover on these items is unknown. I've found outdated items at AJ's, Fry's, and almost everywhere else. It happens. + If you're up for a purchase, let you senses (and common sense) be your guide. I ""second"" the votes for the subs, and the standard size, traditional cannoli @$2.15 is a bargain. (compared to $7 at Aiello's restaurant on Central, which I haven't tried.) + Another bargain here is the bulk olives. While I'm not a big fan of green or kalamata types by themselves, a good tapenade is always welcome. With jumbo plain greens @$3.50lb., and Greeks priced at the upper end of $5.49lb., you can pay $11 and up for the same thing elsewhere. Let the Snoot in you decide. + + To wrap, YOU NEED TO KNOW about their SICILIAN olives. +They're black. They're ripe. They're wrinkled, and dry-cured, and shiny. They're salty,(very) not sour. They're earthy, deeply rich, and complex. They're meaty, satisfying, and delicious. They're addicting. They're sprinkled with fennel seed, red pepper flakes, and (on a good day) bits of fresh garlic. They conjure Mediterranean breezes, raven-haired maidens in aprons, and hillsides with goats. They're seaspray and sunshine; they're sublime. And they're $4.49. Match with a favorite wine, a crusty loaf, a chunk of cheese, and you're home.. Where the heart is... OR, you can eat them like candy. Try at least ONE in your lifetime. + Sadly, Tony's skips the minced garlic more often than not. If your purchase comes without, I strongly encourage you to add your own at home. Makes a world of difference.",review,YcbKJqlmfvU1jkYN2pfotw,0,1,0 +HibY2EcXQhd4_JK_E_RX-Q,2012-03-28,NaDqSm0gT9Hdz1ZvkBeEhA,4,"Everything I have tried here is great. Prices are very reasonable. Few things are over $9 and many are about $6. + + Love the shrimp fried rice with a very fair amount of medium size shrimp. + +Appreciate that they deliver and our fast for only a $1 fee. They have a wide delivery area also so at home or work I can order. + +I highly recommend you try their food. They say it's New York Style. I just know its darn good! Every month I order from them a couple of times.",review,-9mljS0O9mwdOnGv-Oea3Q,0,1,0 +wqIB7hUTQnCswJV4UyYyEQ,2011-10-28,BTYAjZDmI4rUq4WChEoZtQ,5,"Why would I go to a restaurant and hope for the worst? Because I'm a snob and as a snob I was convinced that The Capital Grille would fall short of my extremely high expectations. Not so. + +Bread basket: Outstanding onion bread, a pumpernickel/golden raisin bread, and some crisp cracker bread. Nice all around. + +Extensive wines by the bottle with some great values to be had. I did not check by the glass. Our wine was decanted artfully at our table and the staff had a ready knowledge of the vineyard and year we had selected. + +Husband had: + +Oysters - Blue point tonight, small this time of year so no big surprise there, well prepared and delicious. + +Lamb chop - Perfectly flavored and cooked, Frenched, the definition of how to prepare and cook a lamb chop perfectly. + +Potato Au Gratin - Typical steakhouse Au gratin. Excellent flavor, huge portion, guaranteed to please a crowd (or anyone that loves a delicious cheesy crusted potato). + +I had: + +Prosciutto Wrapped Mozzarella - You can't imagine how good this is....a lovely thin slice of prosciutto cooked to crisp perfection wrapped around a fresh piece of mozzarella cheese, with just the right amount of melt but not escaping the prosciutto shell. A parmesan toast and tomato salad round this out. You might as well as shaved gold on the side. + +Sliced filet - I'm not going to go into detail, just know that the answer is YES! (Is it fantastic? Is it cooked to perfection? Is the flavor wonderful? Is it a great cut?) + +Asparagus with Hollendaise - Awesome stuff. Nice to have a great hollendaise that I didn't have to prepare. + +Service - Our server was so outstanding I'm going to contact the manager at this location. + +Atmosphere - We had a corner table that gave us great privacy. We could not hear our neighbors.",review,3uR5YTXgW4hatuFnaNxSGg,0,2,0 +3ez4Qs56C_cC-l8x08l6Zw,2010-10-24,k0lIXbUZSGD9ra8RAnwarQ,1,"Brought a group to Metro for brunch, made the reservation a month ago, called three days ago to update and ask to be outside and people arrived and were told there was no reservation. Finally spoke with the manager and had that sorted out but when I asked for our tables outside and they couldn't accommodate. + +Having the bartender wait on a party of 18 was idiotic. Not enough menus, slow, horrible drinks, no silverware, soup was burnt-how do you burn soup??? Attempting to fix the situation with beignets was a nice attempt until we heard the server swearing about having to deal with us. + +I host events all over the valley and never have I experienced service as horrible as I did at Metro. + +They have recently changed management, unfortunately the great reviews I read when I made the reservation don't hold true anymore. + +Update 11/8/2010 +Since my first review I received a $50 gift certificate from the management of Metro. I decided to go for dessert last Friday night with 5 of my friends. I knew I couldn't just go with one other person, it had to be a group to show what they could do. + +We arrived at 9:15 and were seated on the patio. I met the general manager and she was pleasant enough, I never saw her again. There was no one seated inside and the patio was half full. + +Jesse greeted us and was the most attentive and understanding server when two guests needed to return their drinks to the bar because they were not made properly - it was a specialty drink from their cocktail menu. + +We ordered beignets, apple bread pudding and triple chocolate delight. The beignets and apple bread pudding were good. The triple chocolate delight had absolutely no chocolate flavor at all. + +Jesse was by far an excellent server and if you go ask to be seated in his section.",review,dqXrfceufjtje1I7mzyJ-A,1,1,1 +zwToyWL4dT1clsFPK9wI2w,2010-06-04,oohcn8iuB17wCskadHA0bg,4,Eorth a trip for pasta or their salads. Both are wonderful. And if you like garlic they know what you mean when you say xtra garlic. They actually give you extra. Yummm. Of course you will probably not be kissing anyone that night.,review,kpdpcrEauxA2bhg-f05W-w,0,0,0 +MMLEhoPYQif2PEIVxAfIKQ,2010-06-04,xB5gx3cCAUBh9-c4oIH9tw,1,"4 stars for the place itself and it's food/coffee. +0 stars for the service, or lack there of. My business partner and I were in town for a convention. We heard we should check out Lola. So we did. We were excited. The lady (I use the term loosely here) who took our order was LESS than patient OR helpful. We asked a few questions. She barely answered us, then when we had to repeat the question she was nothing short of annoyed. An example. We asked where we could get a glass or cup of water. She mumbled something about the bar/table. My partner walked over and saw no cups. She came back and asked where the cups were. On the table came an exasperated retort. I walked over to inspect for myself. There were no cups on the table. So I kindly asked her if the cups should be on the table, if so there appeared to be none. She said they are on the table, but *sigh* I'll go check, but I know they're there! 10 seconds later she comes out of the kitchen with a tube of cups. IMAGINE THAT the customer was right. I watched this lady serve other customers. It appears that regulars are treated with a smile and courtesy and patience. Newcomers or people she doesn't like are treated worse than the dirt on the bottom of her shoes. + +My suggestion to management, adjust her attitude or get rid of her! She is not good for business.",review,9Ij9o-nfCZR3Y2XE5GpqMA,0,4,0 +MXOdsPTLQPsQK9hUq01DWg,2011-02-20,90LHmUuCjw_T_xLgUJ0zuw,5,"Came here with a bunch of the crew from work during lunch, and wow! This hidden gem on the corner of Indian School & 48th Street is a must visit if you're in the Arcadia area. The food here is amazing, and there's such a wide variety including delicious tater tots (even sweet potato tater tots) and the mouth watering reuben that I had chosen. You get a good sized portion as well. Thank goodness for take-home boxes! + +The restaurant is very spacious, and the staff is really friendly & laid back but get you seated and eating your food in no time. It gets better; the price of the food is VERY reasonable, in fact, I'm kind of shocked how inexpensive they are. A well deserved five stars!",review,0nCNOQv4VV2qYcqVno5ZrA,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2012-03-09,N4U69xLF4wr-AAb5v421tg,5,First time eating Chicken and waffles and it was the best time ever.,review,d_YvNfvkpeI0fj2f0FJfng,0,0,1 +xHe6WBPFINEHUIeq_5yEHQ,2011-12-11,C6Fi3HEJ1mhSmq9nPdqthA,1,"I never knew green chilies were more valuable than gold. We ordered a dozen red tamales and a dozen green chilies. The person taking our order was not happy that we did not give them a 24 hour notice that their ""gourmet tamales"" require for such a large order. The red tamales were as dry as sawdust and the green chilies came with one small sliver of chili. The ""hot Sauce"" they have is nothing more than enchilada sauce with red chili flake added. Next time I'll just go to Del Taco where two dozen .40 cent tacos do not require a 24 hr notice from a family of 6.",review,MugvKza25c3fvNkI49B8IQ,0,1,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-07-22,9uhG2eW40yZ1tljcrpJHcw,5,"I went to cowboy ciao for my birthday and was very pleased with it! My family typically likes to get a bunch of stuff and share so we started with a chopped salad, the shrimp appetizer and the mushroom appetizer. The shrimp were cooked perfectly and the mushrooms were really flavorful and delicious, however, the chopped salad was the star of the night! It was so good I ended up ordering another one because the first one was devoured so fast. I typically don't think of salads as memorable dishes but this is by far the best salad I have ever had and I would come back just for the chopped salad. To finish it all off, the server brought me a huge piece of delicious chocolate cake on a plate that said happy birthday which was a nice touch! I would definitely recommend this restaurant - great atmosphere and even better food!",review,50hJDFfg13-UOMHYDVpPCQ,0,0,0 +h_764eIV-D3n7qjyBmluug,2012-08-07,PTYePGzYby-DZE3rlI_z3A,4,"Great pizza We have enjoyed this place for quite a few years. Ingredients are above average. Love the fresh garlic topping + +Tough to beat for quality pizza on the East side",review,Dc_Fvh982Tzm-mcCpheYkQ,0,1,0 +AkOruz5CrCxUmXe1p_WoRg,2008-06-25,Kk4mkc2v9BDmyPFXn5FEVg,4,"Very good noodle shop. I got referred here on my second day in town by the folks at Fujiya. They were right. I went for lunch and I almost could have missed it, tucked away in a little corner in a shopping plaza. But the outside appearance belied the cute interior. + +I am waiting for it to get cold out (or even mildly less than scorching) so I can go in for some Ramen!! Real Ramen - nothing like it. This trip I had Tempura and some cold noodles. - Good stuff.",review,AXqt75N9cWVAxIRHsl6VAw,2,3,0 +m9Wqqma30o-hH2fAX7dnug,2010-12-20,4jI2mKO_ZoJ0YLCri-vpRw,5,Love it here. Come regularly now lol thanks to everyone on yelp. Great food cheap price great service. Tho not 100 percent authentic Chinese food still great,review,M8DaT0zmcumO5gfdrf0KEQ,0,0,0 +pHb4JeWPn8GbyyRjkQ2r2g,2011-12-14,RNsf1_eBWf8ajZuRYMbKaQ,5,"Absolutely beautiful grounds. Golf course, restaurants, shops, botanical gardens, tennis courts...it's all beautiful. Definitely book a room here as opposed to the main section of the hotel - I'm not exactly sure what the difference is, but it IS a different (and smaller) building. + +Our room itself was nice, but the view was what made it amazing. From the balcony, you can see the golf course, the mountain, desert views, cactus...everything. And the service was great. + +The only complaint is that when I booked my stay, I was told that each guest would be assigned an ""Ambassador"" who would help ensure a great stay, or whatever. But throughout my weekend, this supposed Ambassador was never mentioned and didn't show up. Not a big deal, but if you're going to promise that service, then you better deliver. + +Otherwise, great stay. I would highly recommend this hotel. Great for a relaxing weekend.",review,zSJLMv2mv2REr3NdQFo4qg,0,0,0 +hVKTsUaaJkOKR9v5BY04_A,2011-03-04,uZIq5oNCVw1qEB89w6BTeQ,2,"Ate here at lunch today for the first time. ""eh"" is all I can say. I came in around 12:45 and even though no one was behind me in line the twerp at the counter made me feel very rushed. + +I ordered a Turkey Tom. This was basically a big white dried out sandwich roll with a couple of slices of turkey, a butt-load of shredded lettuce, a couple of sliced tomatoes and some mayo (I requested no sprouts which are normally also included). What is supposed to be gourmet about that? The sprouts? + +I also grabbed a chocolate chunk cookie. Not even worth eating the whole cookie. Really. + +I see no reason to return and don't understand how they can call themselves gourmet...",review,B1C6MjG2KzUtb7IqzjBj4Q,0,1,0 +ch10Snl3LVdj75lYbpLkpg,2012-08-14,T9eHKGC5NXVq9eW1eZqStA,3,This place is nowhere near where yelp says it is. It is at Chandler and Ray road not in the industrial area.,review,LGyZobV9tV2Wg8_WCoWF2g,0,0,0 +ZRrIwqIUMII1b2keMI8QRw,2012-09-29,BhaoeVeK9qSOUz4OscUQnw,5,"What a beautiful facility. Attention to detail is what this place is about and the army of workers each takes his / her portion of the details and does a mighty fine job. If you want a high end place to stay. This is a good choice. When I made my hotwire reservation and ended up here, I got the deal of the century! I am sure the rack rate is high, but if you want comfort and great facility. this would be a wonderful choice! +Oh yes, Everyone and I mean everyone was soooo nice. The gardeners, the cleaning staff, the front desk, the parking attendant, all of them were super nice and fun and genuinely happy to be of service..",review,55GXsFLH4QYnTQqiijBtxA,3,3,1 +YmhskhHArN4CHTG49kC_hQ,2012-05-25,M6qlA5PM6HlfPUWgiGOOpA,5,"I moved to AZ about five months ago and have had two tragically bad haircuts from two other ""salons."" + +I wear my hair in a short pixie cut and it's very hard to find someone with the skills to do it right so I don't end up with a mans cut. + +I found Epic Salon here on Yelp and decided to give it a try. + +I could not be more pleased. My appointment yesterday was with Chey and she's wonderful. + +I am very exacting when it comes to how I like my hair cut and am fluent in industry terms so I can articulate what I want. + +Chey listened very well and understood what I wanted. She totally delivered. + +I am so very relieved to have found her. And at $26 (cut only, no blow out) it's a real deal.",review,MyvkUNl149hR2rKog38mYg,0,0,0 +cLojUtqkFpVIHFEvA_5Atw,2011-03-23,cg0HnTTmqOg_9n5pn4zESg,5,"I do love rum and should review the Rum Bar separately but both the Rum Bar and the Breadfruit restaurant are equally awesome! + +Great recommendations from the waiter... Brown Stew Chicken and Jerk Chicken are really good... really spicy on the jerk chicken but thats somewhat expected and perfect for me! I'll take my plantains baked over fried any day! SO GOOD! Really great place to go for not so typical food! + +The entire place is quite small in a perfect intimate way. Their seems to be a lot of pride in the menu, environment and service, which is rare to see in restaurant employees. Not to mention a perfect location ... very walkable to other nearby bars and easy to make a whole night of downtown phoenix!",review,mqyH3CqjMufsm5FccDrjLA,3,4,2 +Pfb6VOIiroqDWOebfgWGPQ,2011-09-29,q1PmxUNt8-kq5cOJXu-htw,4,"PCG is an excellent place to relax for brunch. You will find courteous staff, excellent table service, and good food. The environment was very laid back and relaxing. Definitely worth checking out if your in the area.",review,eatsTYGR2CNM-Huxgm_TVw,2,2,0 +yVQiGdxmnrkJDyQXv2maNA,2011-01-27,TVH6G9H8r9t2FMGUeBFzfw,4,"The pho is delicious, and the prices are fantastic. Definitely a hole in the wall and very authentic (not much English spoken here). Down side is that they don't serve beer (wha?! who doesn't drink beer with their pho?!) but otherwise 2 enthusiastic thumbs up. Will come here whenever we're on this side of town.",review,weYT-xJwz8o7mLNWIhD6HA,0,0,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2012-08-02,Y9YBqNDT8rWequv2okF8xA,4,"Service, awesome. Food, spectacular. Price, unbeatable. + +I can't tell you how many times this restaurant has saved my life. Richard is very understanding when I come in completely hung over, and knows to put extra kimchi in my side dishes. + +Also, in terms of the local ""$20 all you can eat"" sushi specials, this is the only place that ever pops into my head as a place I need to go. Their sushi chef if spectacular and super friendly so it's always a nice time sitting at the bar. + +They have a special lunch menu that is served only during the week, so you can expect the dinner menu on Saturday and Sunday regardless of the time you go. Both menus are amazing, it's just that the menus are slightly different in their options so if you have a specific craving (and I often do) you might have to concede to something different once you get there. It's mildly annoying, but the food never disappoints so I let it go. + +Try it, you wont be disappointed.",review,84Lr632EZeyIyIUnW3t2Gw,1,1,0 +oASUHHGDyzwrR32ajtvrQA,2012-08-21,bmcw2DQr1G60CzDzdCuMQw,1,"Worst store in the chain - I agree with one poster that it's not crowded but it also is out of items more than any other store. It also is so understaffed it's impossible to get help if you need it and if you ask someone that works here that you finally locate, my experience is that they wont know what your asking for anyway. I recently was in the store asking about a certain item by Susan Lenart Kazmer, the person looked right at me and said oh we don't carry that artist you might try hobby lobby they get a little credit for trying to help but Susan's line is a Michaels only item. I gave the woman the line name and said no we don't carry that I'm sure. I pointed at the huge display in front of me of Susan items and her answer, Oh that must be brand new. I said nope it came out three years ago now can you see if you have this specific item she said oh we can't do that and she walked off talking to her friend the only other employee in the store that i had seen. Ok bad but any store can have a bad employee right. so I go up to pay, a pleasant young girl asks me if I have a Michael's card? I say sure do and hand it to her. Oh that's not a Michaels card ours are red. I explain that it's a gold card for people who spend more money and that as a professional artist I'm there quite a bit. She says I've never heard of that before. Well it's a Michaels card just read the front it says Michaels right there. she stands looking at me so I said try scanning it I promise it will work. She scans it and then says oh it says you have a $5 off coupon loaded on this card. My response; good you get a five dollar coupon for every 100 you spend. Now she looks scared and says the dreaded words I'm not sure, let me call the manager. So 20 minutes go by and who shows up the lady that argued about the Susan Lenart items. They finally agree to try it and I'm finally out the door just 40 minutes later. And that's not even the bad part! I went into this store to have something framed that was three weeks ago they tell me every day it will be the next day all to no avail they use every excuse imaginable custom frames take time, or custom mat colors are hard to get. Each time I explain it's a off the shelf frame there only cutting a black mat. they say oh that should be fast will have it tomorrow. + +I wouldn't shop here again if it was all free this store is a joke just keep driving and go to the large store at Power and McKellip's it's a much larger store with competent staff and about twice the selection. It's well worth the drive and the cost of gas I live less than two miles from the gateway store and can still drive make my purchases and drive home much faster than trying to shop at the local gateway store. They have even framed two other items while I'm still waiting for the Gateway store to cut a simple mat.",review,_Pcu--HeFV94yAgHHdBQbQ,0,0,0 +QoTOOE-gVN4ELZU373qZxQ,2012-05-30,af5tCk0SFwj--Evz7cqI5Q,5,"This is a small location but still packed with everything I need. They did start stalking more womens vitamins I liked without iron because they were always out when I went in. So I thank them for that! + +Staff are always nice and for the most part an answer all of my questions. They take an added effort to get to know their customers. They always ask about my son when I go in and this keeps me coming back because I feel valued as a person not just a customer.",review,4hR-tE1PYvp7Go5a8s8pmw,0,0,0 +FJdF6wu7TSMIyWtcPxeYYA,2009-07-07,5C8CfLgnDSNt8C3DWnVVpg,4,"So there name on Yelp is a bit behind the times as they are now Monte Vista $2.25 Cleaners.. Still, at $2.25, I find them to be the best place in the area. You can't beat the price, and no matter what I drop off, shirts or pants to be laundered or dry cleaned, I always know it will be $2.25. I hate places where some shirts are $1.50 and some are $4 but you don't know until you get the bill. + +Same day service is available for dry cleaning which comes in handy if you are like me and wait until you are out of clothes before you drop things off..",review,QhuESGhOQWnKqwlSrISm8A,1,1,1 +AuMz7XGkjLcIUurp_AD51w,2010-01-16,pjb_G4idITKS9SXbs6f2nA,1,"Bleh. + +Most of us have ventured to the rock at some point in time. It has always been quite awful, but I had some hope after new ownership took over and renovated the place. It is always sad to see a place that has potential, be complete crap. + +Upon walking in we were greeted by a small room used as a bar area, with random bar tables along the side. And whales. And scary looking people. And a DJ...well...kinda...he was playing music from a computer..you know...like you would so at home. + +We ordered two beers and sat down. Why not give it a chance, right? Just when we thought that things couldn't get worse, we heard a sound. Like a squealing sound. Yes, you guess right, horrible karaoke ON A FRIDAY NIGHT!?!?! Why God, why????? + +We chugged our beers and left.",review,G_6pOq1gA4jyJ3j8mjOyJw,0,2,0 +1nsxori657cAx2hiyYb4rA,2012-08-19,J-zsJ12d9cxiQQOmCUmsug,4,"¡CASH ONLY! But so worth it. + +I have been a regular at this place for the past 10 years. I am Mexican and for me this is the most authentic ""Cenaduría"" in Phoenix. + +The food is authentic. They use the white Mexican cheese is used in Mexico. In Mexico cheddar cheese is not used on top of tacos or tostadas. Prices are very affordable. The ladies that take your order at the front desk had been there for at least 10 years and are very kind. + +Restrooms are always clean and this is so important to me. If a restaurant does not have the time to maintain its restrooms clean then I can not trust them in the food being clean. + +The cons......BRING CASH! no credit cards are accepted. Also, they do not have the best control over flies. I always have a fly somewhere around my table. I think it has to be with no AC. They have some kind of cooler and fans. And they can have the Tv and the jukebox playing at the same time which is annoying. + +The good news is that you can always take the food out. + +¡Excellent food!",review,l9pvUVw8DShTeS_U92lj5Q,0,0,0 +SNyxwFx8i20SoDlN4dBS4Q,2011-12-05,Nz_S_NO5WJoEeZhBQunNYA,5,"From the moment I walked into the lobby the staff displayed a level of professionalism that you don't get to see everyday. Each staff member that I came into contact with gave me a handshake and said, ""Welcome to our business"". I don't normally enjoy going to the dentist, but this has been the complete opposite. They made me feel very comfortable and confident that I was going to be happy with my experience, and I was! So I set up an appointment for my 9 year old son on the way out. Since then we have both been in to have work done. My son need one filling and he took it very well, then trotted off to school like nothing ever happened. I started with a deep cleaning from Bobbie Lynn Tucker , RDH. She was very nice and personable, did a wonderful job cleaning my teeth, not to mention gentle. I was never in any pain either during or after the procedure. My following visit was with Dr. Brittian, DDS. I needed a few fillings and I am very pleased with his work. Again gentle and quick. My teeth look beautiful and feel wonderful. They were great with explaining all the costs and have cool perks like a Rewards Program. I also liked the glass back wall that gives the patient a private calm view of the outdoors. The flat screens are cool too, but my only complaint is that when I asked quite seriously if they could change the channel, ( I dislike sport shows a lot) they were not going to budge. That might be something they want to work out. Other than that I really would recommend them to everyone.",review,XUO21xP47b5m3PMq5a13sg,0,1,0 +wl51t6lT7leiX64SlkOx6g,2012-05-20,yQDMV26SXXrZedbbU-3aYA,5,"I've been to this Pita Jungle a few times, about 3-4 and ordered carry-out once. Every single time my experience was great. Great service, great food, and great atmosphere. I've ate at the patio once during a rare cold winter night, and the waiter, without us even asking, put a heater right next to us. It was really nice and kept us warm while we ate our food. At times it gets busy, but the wait has never been too long and annoying. This place is great, and compared to other Pita Jungle's I've been to (the one on Shea, Tempe, and Downtown Phoenix) this Pita Jungle has to be the best. The ambiance is nice, and the decor is very welcoming. A big open room for the dinning space works well.",review,GGx560YuuFyrRo7X_-d-Vw,0,0,0 +hHE4OHAc8dONTV8QsGLbWg,2012-03-10,-n0iGtgawNw0lKzb2K1Mvw,4,"I love shopping here! For the most part, the produce is wonderful and fresh. My only complaint in that area is the berries...sometimes they can be a bit moldy, but the last few times a fresh batch of strawberries or blueberries has been brought in, they've been wonderful. We love buying our meat here, especially the chicken sausages and tenders (when they are on sale). We also get our lunch meat here as it is much better than the stuff in a container, and cheaper than the stuff at the deli counter at a regular store. Oh, and the bulk section is amazing!",review,vHoKL-4FCgGSfDrPr43Opw,1,0,0 +E_wJCQ9L_0w5tJyrvr0lJQ,2010-08-16,QY5Iw88L2iPPk0g8a9hrOA,3,"I like the lunch better than the breakfast at ""First Watch"", which is a bit ironic I suppose. Perhaps it should be named Second Watch? + +But on to what I do like... +The ""Not Guilty Your Honor"" veggie wrap is good. It comes with a side of hummus, fruit and potatoes. Big meal! +The ""Burrito Vera Cruz"" breakfast burrito was pretty good. The Vera Cruz sauce is a mixture of salsa and hollandaise. I've never had it before trying it here and it was actually pretty tasty! +Mango iced tea is good! And they'll give you some to go if you ask! + +Somethin about the potatoes just doesn't cut it for me though... And as I mentioned earlier, the breakfast just isn't my favorite. I just don't dig their omelets much. + +Sign up for their email club to get a buy 1 get 1 free meal coupon. + +Note: If you're vegan, order the veggie wrap and substitute avocado for the feta cheese. Get a side of salsa too.",review,WWxCMDn8rVHIrIFoKRcRDg,2,5,2 +dks3rZEbVZlH-IZhnlcbug,2010-05-10,Mu1ABCZw2nwohRLYJTXRbQ,4,it's tiny and awesome!,review,HEag_QERXNbyGmNgA6no2Q,0,0,0 +3jqOv6re-xPYOg7srmi7tg,2011-12-07,nnBjnMCS941dRw3h-GfWtQ,5,"Picazzo's is a freaking miracle for gluten ""allergies""! + +Almost everything there is gluten free, and you can get something besides gluten free pizza. I highly recommend going during happy hour and just eating the starters - meatball sliders are awesome! + +Pizza is very good as well. More reasonably priced than a lot of the chain places that get their (really friggin' expensive) dough from somewhere else. + +People with celiacs: rejoice. Picazzo's is legendary.",review,izQhXnfoP2vPeBtZ2rLU7Q,0,0,0 +zmFc8M-hS4uuyY0hklIpoQ,2009-04-18,5Tnd97z4fKvfvAeYUns4Aw,3,"I don't get the hype, but then again I am not a regular. + +The beer selection is top notch, the sandwiches are worth the prices, the cheesecake really shouldn't be drowned in chocolate syrup but who cares, it really is a nice people watch place. I appreciate the well composed menu and not much more can be said. It has reliable service and sandwiches, hipsters and good beer. The lack of surprises make it a good place to take out of towners to see downtown and introduce people to First Fridays if you wanna brave potential waits, noise levels, and lack of parking on busy nights.",review,W9h1ufjEzDp7THyAqRw65g,2,5,2 +qmwBQIX6QNx1OG4yxwBrFg,2009-07-08,b69TnmaTCkD69MjlcAVlBA,5,"Yes, she did go to another...it's a hobby what can I say. + +By far, this is the LARGEST club I've been in! But my list of places to visit is still very long, so there may be bigger. I liked it here, the girls and managers, and this is important to me, were chill and nice. Some variation in looks for the girls but not much, but then again, maybe there is more to select from at night. I'm a day club visitor, because I hate to pay cover and other unnecessary costs. This place has a nice size bar, and a freaking huge main stage, with three, yes count them, three two-story tall poles (And some of the girls climb all the way to the top!). And it doesn't end there, there was a more private but large room toward the back with another stage and tall pole. There's an upstairs to this place too! I like to wander, I have a curious sense of adventure. I found multiple smaller private rooms up there, along with small mirrored rooms with single chairs. You know for that kind of one-on-one that no ones all up in your business about kind of room, just you and the dancer...Then there is the balcony that wraps around the upper floor, plenty of seating, with DJ in the center, spinning whatever the ladies on stage ask for (this is rare, some DJ's will tell you to take a flying leap if you demand a song, so I've been told...). This place is lit well too, not enough to make you run out screaming of blindness, but good enough to see. + +May I add that this is the first time I didn't have to go through a dressing room full of half-naked women to get to the restroom, it was separate and had more than one toilet in it, yes, amazing I know! I've been won over, lets see the other places on my list top this!",review,uc04YCxFi1ZUj5N9mfiUyQ,5,11,4 +JR95uaM82xBUIZ-kQ785iA,2009-07-09,OIu74PtGlNOyO0rrpEVaaA,5,"Absolutely adorable! + +This place made our 5 (yep you heard it here...5) hour wait much more enjoyable. I think it we had to sit in the same building as the pizzas were being made and had to smell the delicious aroma of others pizzas for 5 hours, I may have gone nuts. Bar Bianco was relaxed and had everything anyone could ask for while waiting for your meal. We loved the Arizona wine and enjoyed a tasty plate of cheese and meat while lounging in the cozy chairs in the corner. + +Not only is this bar a great 'waiting room' before Pizzeria Bianco, but I would consider coming here just to relax and have a drink. + +Cheers!",review,5RxpP2Woo7CpOGUmKgDyAw,0,0,0 +5o5MLNPmAeakGgdqeGyMvw,2012-08-12,s-jh1Sht7J55XVd4R3Exbw,4,"My boyfriend and I decided to drive around Scottsdale and find a place for dinner on a Saturday night. Our initial impression of the place was that it was going to be too rich for our blood; however, we figured we would give it a shot. The decor reminded my boyfriend of nightclub scene from Scarface. + +When they sat us down initially we were right next to the kitchen which wasn't too pleasant. So we asked to be moved to another location and the hostess moved us into their private dinning room which we loved. + +Our server was very friendly and informative, yet also gave us space. We ordered crab cakes to start things off. They were excellent but slightly over priced given the portion size. Then we ordered a bottle of wine that was very reasonably priced and to our liking for $24 - a nice Argentinian Malbec. We decided on this bottle after our server brought us several other tastes. I ordered the soup of the day and my boyfriend got a caesar salad. Both were solid. For entrees I got a salmon with asparagus and my boyfriend ordered seared ahi tuna. Both were cooked to perfection. + +Overall, being in the private dining room was perfect, noise level wise, and all of the staff made sure everything was up to par without being too over zealous. I would highly recommend this place.",review,T8zKK2NesKBqxQOGghmsHw,0,1,0 +90AXjqb4O-wrTHDKDoDUzg,2009-12-29,j2Mq8fV0FUG4Lj0ND01kXQ,4,"being new to the area, i'm really on a quest to nail down my basic food groups: thai, persian, and mexican. mexican i've got down i think, but the other two i've kind of been baffled by. luckily i have my very own personal tour guide who invited me to lunch at yupha's one day. + +the place is pretty cute but can get pretty crowded when in the full swing of lunch. the tables are kind of close together, so be sure you arent carrying a big purse or anything otherwise you'll be whacking people in the head with it. + +i had the pad thai for lunch. HUGE lunch portions. i could barely finish a third of it and i had a ton to take home for dinner. also if you arent into spicy, i'd definitely go mild. medium spicy is pretty groovin, but i dont think it would work out well for someone who only wants a little spice. yupha's also has an interesting salad bar/soup thing that comes with some of the lunches. check out the salad with the peanut dressing. mmmmmm peanut dressing. i loves it. + +service is fast and friendly. take your check up to the front if you want to get out of here quickly. i think yupha's is going to be my work lunch thai place :). garlic beef here i come!",review,ZZ5hV2jcxchiZo6C9AXq_Q,3,1,1 +QzXFdjIbFRGhzL83goPPLA,2012-06-05,IyDWAs6SXTDSrqN8dfQjFw,3,"ordered the steak sandwich (medium rare). Came out cooked medium. Still very delicious. French fries were not good, way too salty. Server seemed as though he did not want to be there, with a grouchy attitude.",review,4ijNZcDq3jiXF10K9lDRZg,0,1,0 +-O7H5LhBkE13VQZB0QZI0Q,2007-08-19,p2HAjzANC80wzLAZzZEL0g,2,"I spent most of my first year being legal drinking age at this wild, college bar. It was fun then, but I got older, it wore on me. It's a big ASU bar and there's no escaping the drunk college kids. The guys can usually be found on the patio barking lame pick up lines at the female passerbys and the ladies are usually grinding it up on the small dance floor on the weekend nights. + +With the summer heat, Fat Tuesdays frozen drinks are appreciated. But if you don't want to drink them with the college crowd, hit the bar during the day or early evenings.",review,nWouNfZD3Pw08RYizxkqcA,1,1,1 +trG1k-K6Nq4YKcexa1AGOA,2011-06-10,hlSiq0C-Z678vaaQvDxsbg,5,"I think I may be addicted to this place. This location is a bit out of my way, but after a terrible experience at the Superstition Springs Buffalo Wild Wings this became my go-to place. All of the servers are incredibly nice and efficient, and my order always comes exactly as I ordered. I've been here twice during the 2011 Stanley Cup finals and was happy that they had the sound on loud enough in the bar, but not too loud that you had to shout to the other people at the table. The food is consistently perfect, the atmosphere is great, and all of the employees I have encountered are friendly. The drink specials aren't too bad either. You can't go wrong!",review,QT6vEIHFbwEZpYEugIzjsA,0,0,0 +fF6m3qsD5blnwuZRuYhzWg,2012-04-02,8f50f66_-ce3WZx_5rSLRg,3,"This was the first Mexican restaurant my boyfriend and I had eaten at when we moved to Arizona. We had good hopes since we were in the West now. Not the case- there is a few good and a few bad: + +GOOD: It is a great location, in the heart of Old Town Scottsdale. Walking distance from our house !! The patio is the reason we selected this place; not too loud, secluded and enough space between tables . + The food is also pretty good. Chips are awesome and so is the salsa ( I always judge the Mexican restaurants I go to by their salsa ) + +BAD: the first time we went the service was just okay. But we just figured it was because we came on a Friday during lunch. But we have gone back to this place 3 other times and the service keeps getting worse and worse . I asked for water 3 times and never got it. My chips are never refiled and it takes FOREVER to get a beer and the bar is right there. I think I watched my beer sit at the bar counter for 20 mins. and of course it was warm when i go it since it was just sitting in the sun. I should have gotten it myself. + +We will probably drive a little farther to get better service.",review,OW_Eh1DsEnlTWALBC1xCHw,0,0,0 +FG_GRMLSj68ximzfrr9eWw,2012-01-15,Nx65SPuCryK2JujzG55Q2A,3,"The Service is great. The food is ok. The salsa.....horrible. Please rethink your salsa. Oh, and if you order a side of jalapenos they charge $1.99. I have never heard of a Mexican restaurant charging for jalapenos. Overall, just an ok place. There are better options on and around Mill.",review,RbCRHWZotVygDGy1wF6wHA,0,0,0 +JhupPnWfNlMJivnWB5druA,2009-01-29,iUW-BlT3Nyn96HX3uEJxNA,5,"AZ 88 is a great date location. The atmosphere is excellent - always an artistic display, usually great music. If my parents ever make it out here from Wisconsin, I'm definitely taking them to AZ 88. The view of the Scottsdale mall is really cool, and the proximity to a number of the ""old"" Old Town bars is really convenient. The food is reasonably priced, with most sandwiches and dishes right around $10. They have a good sized bar selection, with some really interesting imported beers. I would absolutely recommend the AZ 88 sandwich if you enjoy buffalo sauce, and it's really hard for me to not order the little crackers with onions and bacon on them (even despite disliking bacon!).",review,mQba83gB018LlGt51r80ZQ,1,2,0 +nWm5m-O88qprGsX4sjo0Uw,2010-10-16,GNshNppl3wrLiRYXQWfSJQ,4,"I couldn't find anything to add to the previous review except I have never had a bad experience here no matter who did my nails. They are reasonably priced, friendly and one of the few nail salons I have been to that seem genuinely interested in the customer returning. The owners are friendly and the selection of acrylic colors offered is excellent. If your a magazine reader you might want to bring your own as they only have people and entertainment mags, however I've only had to wait once in nearly a year.",review,TNUX-baP2gvFDajjErgsFw,1,1,1 +4Pf9DQBcR23A6Lg2pDsrBQ,2011-08-21,u-x32VTB32tWCBU5TEGqzA,4,"This is one of very few East Valley theaters that has online ticketing through Fandango. The auditoriums have true stadium seating, and the chairs are spacious, and comfortably recline. The arm rests are movable, so you can snuggle with your honey while watching a movie. The picture quality is amazing!!! I only wish this theater offered a military discount, like it's Tucson Cinemark counterparts.",review,MqKtiMUnd1CdvNKUIlNspA,0,1,0 +jQt1xMibtitBczJN6LXT1Q,2011-01-26,NQqCt3E28tpCjcdKzuA2Og,4,"Me and my best friend wanted to check this place out. We both enjoyed it. Here are my pros and cons: + +Pros: +- There is ample parking across the street and the lightrail stops right by the bar so its very easily accesible. + +- The drinks are decently priced. I mostly had beer and they were all about $4 each. Bartenders were friendly, cute, and fast. + +- The music was good. I wanted to dance my little butt off. + +- The drag queens were fabulous. + +- No cover. + +Cons: +- We went on a Saturday night and the place was dead. I really wanted to dance but there was no one in the other rooms getting their groove on. I was disappointed. + +- Its mostly men. There were a few lesbian couples there but its mostly gay men. (This could be a pro, depending on how I'm feeling.) + +I look forward to going back on a busier night. From what I have heard, Fridays are the day to go so we will be checking it out another Friday.",review,IO3AsR6cdMto7VCwfPzf2w,1,1,0 +JVmPxs-yN5VR1l4_-7MZww,2012-06-27,bMgiQZ85UizLBLXFKqtHOA,4,"My wife and I came here to see what they had to offer. As we had bought a king size bed frame and bed. However because we can still cancel our order and felt our decision was on the whim as the mattress we originally purchased was on sale from another furniture store. + +We came here to see what other options we had to choose from. Upon entering I already was prepared for the sales man attack, however we were taken back by how friendly and non pressuring environment we entered in. George the salesman was very informative on the beds, and was trying to gauge what we were looking for. After narrowing down to 3 beds another couple came in, we told him we can attend to them while we continued to drill down. He checked on us a few times and answered a few questions we had, but was not breathing down our necks. + +The products: They had a good selection of beds for all prices ranges and were well organized based on color piece on the mattress. The sales were nice as well as the options in the clearance section which seemed very reasonable. + +In the end we ran to the other furniture store to see the bed we originally purchased which we liked very much and kept our original decision. If we didn't find the bed prior Mattress Firm would have easily won our business and would recommend them to others.",review,aIL13Bff3N_g_ynzgzpN7w,0,2,0 +mWjlJ0Mvde4nBvM9nXlU-w,2007-07-26,nDhRLnmtlSoVVUA3y8dw7g,2,"a little greasy for my skin but the presentation is organic and fun! +glitter, rubber ducks, bath fizzies and tons of soap make for a great one stop shop when you're shopping for those girlfriends you have who like everything. +the style is unique making it a fabulous place to take a peek in but just not for me.",review,qaAmAU9T_t84UDGiBI98sw,1,2,0 +f9eFteZuBoZqzYg5UUrufw,2009-05-01,S7fxRPce-j6RbEGRvGWGmw,4,"Although the boba here is decent (The Street on Dobson&Southern is better), I really just go here for the food. The small menu consists of meals that are authentically Taiwanese. The beef noodle soup ($5) is my favorite.",review,7KINmvqlh8H3r5M933kTag,0,1,0 +stH6XAn2Drzol1H5oGvL2A,2012-01-21,J4HT1mMCOtra9NtiD24bUw,5,"The best Chinese food I have had since leavong Chinatown in California. The crab puffs had crab, not Krab and were much more crab than puff. The food was cooked perfectly and delicious. I strongly recommend the Mu Shu Pork!!",review,yov4PgFnEIOimzKdU2wV0g,0,0,1 +JokKtdXU7zXHcr20Lrk29A,2008-09-05,sasQCHBDh-e4-1eEFtp8ig,5,"Four Peaks baby. This spot is awesome. Great place to meet up with a crowd, grub, and pound some craft brew. The food is great: dope appetizers , rockin' burgers, decent pizza, and daily specials. The beer is fantastic, hop knot being my fave. They have happy hour everday from 3-7 and 10-close with dollar off beers, a light night menu, TV's, and a pool table. I've gotten mashed here more than a few times. Sunday brunch is killer, and may I suggest you try the Stout milkshake, a little known secret, but good for the sweet toof. Don't miss out on the Peaks.",review,l81ILmOhky5bG7o4r3rkhQ,5,4,3 +-EctXOb3B7T177jGYUhjVA,2011-08-09,Qq0KwPY8gAWORyH5v5VkHw,5,"My boyfriend and I decided to try Boulders out last night because we wanted some good beer and it's within walking distance of my condo. Good choice on our behalf! + +We arrived around 10:30 pm, so we took advantage of reverse happy hour ($1 off most pints on draft). They were also having half price pizza night, but we had already eaten pizza earlier in the evening, so we did not get a chance to try the pizza. Had we been hungry, it seemed like a great deal. + +I was VERY impressed by their beer list! They had the biggest beer selection I've seen anywhere. When I was shopping at a specialty store last week, I noticed a ""Maui Brewing Co. Coconut Porter"" that l was very curious to try - but I passed it up because it was $10 for a 4-pack (ouch). I asked the bartender at Boulders (Rob) if they happened to have that specific beer - and to my utter surprise they did! I was happy I was able to try it out before shelling out ten bucks to buy a four pack at the store. Two thumbs up! + +Speaking of Rob the bartender, he was great. Very fast to take care of all the customers around us as well as my boyfriend and I. Made sure we had everything we needed without being intrusive. + +Overall, I had a really good first experience at Boulders on Broadway, and I will definitely be back. I dug the old-school ambiance with the wood paneled bar, we received very good service, and the selection of beer was amazing - truly something for everyone. + +If you live in the area, I'd recommend checking it out! +I plan to get some friends together and go back for one of their ""team trivia nights"" soon - sounds like a blast.",review,d8ZgWQENWo2DKu0sYAPqTw,0,0,0 +17DI33J8TkcfzyoiIYLQIw,2012-09-16,uOTvP5Ik9ztLf0_HgLNk1w,4,Thai House is a great find! The restaurant is very clean and simple and the food was fresh and tasty (and affordable!). I had the Pad Thai and Spring Rolls. Both were gluten free. It's a great place for a week night date night with my husband. I can't wait to go back.,review,T8b2ZfgQR_mcCvfGVsKKrQ,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2011-01-03,r8pbrjsyn2mnedH0SbYFVg,4,"Simply put, The Grind provided one of the top five burgers I've ever eaten in my life. The peppercorn burger was piled high with toppings and as amazingly flavorful as I'd been told to expect. The service was friendly, attentive, and fast. The food was juicy, flavorful, and reasonably priced. Their hot wings were flavorful and the bread pudding made a grand end to the meal. + +Though my initial order was brought out slightly off (with cheese despite my request) they cooked up a replacement in under 5 minutes and had it out to the table in no time. Similarly, when a friend's drink was a bit too bitter for her taste the bartender mixed up a second version more to her liking, but did not charge her any additional fee. + +The only downside: I found the fries a tad unimpressive and overpriced. Ah well, not the reason I came here. + +If you're near this end of Phoenix I'd highly reccomend giving The Grind a shot.",review,FbwfC_oJpLIbUDjvPju2fA,0,1,0 +FUI-hWH_bpis7AKZTWenUQ,2007-07-26,X7Z6rtSPvKOw2TvQx6ZFKA,3,"Eh, this place is okay. I was not super impressed. The food was okay. I was not blown away. After being seated, we sat at the table for a good 15 minutes without anyone noticing that no one had been to our table once. We had to flag down a server. Once we actually did have a server, the service was good. I can forgive the glitch. Everyone has a bad night. But the food just lacked the wow factor. Even though I have a twenty dollar gift certificate (to make up for the initial service issue) I have not been back. I guess that about sums it up.",review,e4TQFVfepzHf--hnBsjntg,2,3,0 +tsom7jUEr_DetH65ZtEc3w,2013-01-03,L1nh__Vsaf5KCioY5sAjJQ,4,"I've been here a few times. I love that it's vegetarian friendly! I think I've ordered every vegetarian option they have, the most recent being the Veggie Cole Turkey. I think it might be my favorite. The mock turkey they use is divine and the coleslaw & Russian dressing are so tasty! + +The staff is always super friendly and the service is always quick. Prices are a little higher than what you'd pay at any other chain sub shop, but that's not really a con to the place. The quality of the ingredients make it worth the price. And you get a lot for what you pay for. A small is more than filling! + +A few things I wish they would change is the fact that they use so much paper to wrap their sandwiches. It's quite wasteful and I feel like my small sandwich wrap paper takes up the entire table. Also, I really wish they would have a Veggie Bobby on the menu! I'm sure many vegetarians who eat there probably feel the same way.",review,Y7KS04okqSFAbg1NyImHkQ,0,1,0 +53YGfwmbW73JhFiemNeyzQ,2012-08-20,aK5VfiAMMweu6h2Gy0PH7w,5,awesome and delicious place! good for groups!,review,yHKOttTv1sSVKMsdGmQjpA,0,0,0 +uuLYxKdJW_jfty1jMtXxQw,2008-07-06,6xQUJlsiD4xwqwAalgc97g,4,"Why pay full price for men's clothing when you can find quality used items here? Well Suited consistently has an excellent selection of suits, sportcoats, slacks, dress shirts and golf shirts. You can also trade in your old clothing for store credit or cash. The credit is good at any of the different stores in the My Sister's Closet chain, including all of their stores that carry men's and women's clothes, furniture and kid's apparel, furniture and toys.",review,uBp2Jmip2qXQ0iWHUDY9sQ,1,2,0 +F8q_9PUl-Lwjj9xIRPArcg,2012-01-06,r_n8QJIOvBh46ttodTT0hA,5,"I am so grateful to say I have had the famous Rocket Burger. This place gets so much Yelp praise and for great reason. + +The soda selection is off the hook every soda you grew up with and then some all in coolers in bottles the even got YooHoo. + +Fries are all natural cut and amazing there is just something great about fries with the skin on them they just taste better. + +The burger was Phenomenal I had the Santa Fe which had the amazing Rocket Sauce, bacon, and fried green chili. It was outta this world good. + +I will be a loyal customer and I am sure will post numerous updates to this review cause this place is just that good.",review,Iycf9KNRhxvR187Qu2zZHg,3,2,2 +xz1fQwwVAhqA9MsmMaGyZA,2011-02-20,PIR6gvvn_BmH_0ZbRgR27Q,4,"I will be very brief.......the food is fantastic,!!!!! + +The service is hard to figure out though. Lots of staff but we were constantly looking for our waiter, the water guy, the plate remover guy. All seemed to be on break simultaneously. I strongly recommend eating at the bar until they get the staff better trained.",review,enKr3RZalPO3kNqNu33XWg,0,1,0 +e48Wa4YqFaMjMmN9iZ2G5Q,2009-04-05,IyA3Nmp8W1IS7aqwtqiiCw,5,It's my fav starbuck cuz it's across the street form my house. It taunts me daily. Pavlovian response make my mouth water for a white mocha nonfat no whip everytime. The people who work there remember the regulars and offer suggestions and even help you save money by working the angles to get you the combination special price. Also a good place for people watching or picking up a little something on the way to the light rail or antiquing up 7th Ave.,review,5mnhUiRWi-q6nX7TkicE2A,0,0,0 +fb9eLHJ4S--TyXsarJJo-g,2010-08-29,6z3iOeQNYG1KdT53oIivGw,5,"We went to this place for my birthday, wanting to try out something new. We'd never had Ethiopian food and we were very adventurous. Be warned, we had a GPS and we had a very hard time finding it, it's tucked away in a little corner! + +Once we found it and stepped inside, we were definitely wow'd! The waiter answered our questions about the food, and suggested that if we really want the Ethiopian experience, to try out the Strictly Vegan combo. We ordered Tikil Gomen, Misir Watt, Kik Misir Watt, Gomen Watt, Shuro Watt, and the Dubba. We fell in love with the Shuro and the Misir Watt. The Shuro is chickpeas in a cinnamon/spicy sauce, and the Misir is spiced lentils. Soooo tasty! Even non-vegetarians will enjoy this place, and they do have meat dishes.",review,GpDsB_pSKS8nKOlXQXpifA,1,1,0 +06kfoeRs9Acj82Yl3i9p_w,2011-07-27,D0O1Dqr2clFdfpUbUzykew,3,"I feel bad giving them a mediocre rating but I'm reviewing what's in their NAME. I drove about 9 miles across Gilbert (that is quite a chore) because I wanted to serve good roast beef sandwiches for dinner and I needed good bread. + +I had Boar's Head roast beef, tomatoes, horseradish sauce, avocado, roasted red peppers etc I just needed great bread. Where else in Gilbert should I go? I did a Yelp search and it agreed - to this place. + +I arrived around 4:15 and the pickings were slim. I got the last round of sourdough and a small nine grain. I asked her to slice thick, she walked to the slicer and said it has one setting. Okay I'll slice myself. + +Because I love Cupcakes I also took a chocolate cupcake and my boys got a chewy brownie each. The total was about $16. + +We got home the bread was hard (both) soft on the deep inside so I had to grill the sandwiches with butter not my plan but it's butter, butter fixes everything. + +The cupcake frosting was good I ate the top threw away the 'cup' not worth the calories. I only allowed the boys to eat half the brownie each and save the other half for tomorrow as they were huge. The said they were really good. + +Basically, I'll buy my bread at the grocery store or at Paradise bakery as the wasted gas and time in the car was not worth it.",review,t2YBANsJYySOXvHyOjcZkQ,0,0,0 +fd0iSXEhwz-foQdS8SCKYA,2012-04-25,pJ9GyAPbdPRpz9INARb9ig,1,"Had to eat here with coworkers for lunch today and was incredibly disappointed. My $8 caesar salad was probably the tiniest I've ever had. Service was slow, the entire table was nearly finished before mine arrived, and staff was unapologetic. I've had side salads larger than the full salad they served me for lunch. Overall a miserable experience and I won't be back.",review,vNTHCRZppCQvx-Rsha9U3Q,0,0,0 +utVe80w-NAj9KMtIwJo22g,2011-04-13,M3rrKME9sLudvR0bnnM0aw,5,"In short - Jen rocks! + +Finding someone I trust to watch my crazy crew is always a bit nerve-wracking. I came across Jen's Pet Sitting while searching for options, since I'm relatively new to the area. + +I decided to book a consultation with Jen to have her meet the furry family and learn more about her and her services. Jen is extremely professional and came ready to take notes and also spent a lot of time getting to know my critters. It was clear from her interactions with my cats and dogs that she loves animals and really understands them. + +After having a great experience with Jen during the consult I booked her to do visits over a long weekend. The hubs and I took our dogs along for the trip and Jen looked after our cats while we were away. She gave us regular daily updates about our cats while we were gone. Sometimes she sent pictures with her updates which was an added bonus! Jen spent time playing with our cats during each visit which was fabulous. + +I always know I've found a wonderful petsitter when I come home and my animals are a little disappointed to see me! We will definitely continue to use Jen in the future.",review,6fboUxwhAsUMx1F9yCzlMQ,1,2,0 +HDvCnqIf5twbMb5-eG1EJw,2011-01-01,ADltxRfbxp0TAZjlDkY6_Q,4,"Great breakfast, great service. Yummy!",review,7KS3KW9TdHiKi4aW53e36g,0,0,0 +H6yfW3cQ--UOtCjjzTNekA,2012-11-29,-tNQv06EWbeqquFkCUqNwA,3,The food was decent. My friend and I had the meatball sub and marinara chicken sub. I know this is stereotyping but being served food my real Italians I expected more spice and flavor in the food. The alcohol selection is small but has the essentials (beer and wine). I want to go back and check out the pizzas before I write this place off.,review,vIBrfx6z6wvUFN5IJDLNyg,0,0,0 +aBjWR-Mol58GMsRAdz2Tjw,2010-05-06,-TSbySalZvuypayvBrdtVA,4,"Good food here. Nice atmosphere. Food a bit pricey, but if you share, it's not too bad. The Pecan Bar is awesome.",review,4Q3pqQ-WR7kSBJyhQvRipw,0,0,0 +_HTE4pOKeJC7kcxiCF9vTA,2010-10-14,aM0JoEyi9owGDLfgAfKxtw,5,"The best Vietnamese I have ever had. Very authentic menu (not even in English). Great service and knowledgeable staff. The ambiance is lackluster, but this is typical with Vietnamese food. + +Great for dining in quickly or taking home.",review,3eit3w0zDbb-z57c9P60vg,0,1,0 +42Ai9wcFPE2HZ_aADGXI9Q,2012-11-20,Je4MGN3YgZm74rdl7OvgEA,5,I have been to slippery pig a half a dozen times in the last few months since moving in nearby. I have nothing but great things to say about the shop. They are friendly and courteous and I haven't experienced any of that bike snobbery that comes with LBS. I am glad I found a local shop with great service,review,1tbo1s2UhQvkF9LRRqLK0A,0,0,0 +IuAPYzf3NSyfyXYgT46YVA,2011-02-23,eDyRB_AzNVgO7W8M2lOuWw,5,"Awesome place. + +I am pretty sure that this is my favorite restaurant in Scottsdale. +Honeycomb, radishes, and a huge heap of rainbow valley butter for an appetizer? what?! Whaat? I had to take a picture of it. The waitress gave me a hard time about this, but she was cool :p + +My coworkers and I went on a mission to try everything here. I do remember the brussel sprouts being too salty. but everything else was great. spicy broccoli... +fat-fat cooked potatoes.... +perfectly grilled ribeeyeeeee.. .yummm.. + +but i dooo remember the brussel sprouts being a bit too salty for me.. but i forgave them for this. + +In addition to the great food, it's a cute little restaurant with a lot of character. The servers (who are also your bartenders - i thought this was a bit interesting) are really friendly. + +Good memories here!",review,w50wON9lm40H_KRTPZjXnQ,0,0,0 +1_43FZHx3P5D7X-CpIR9WA,2011-06-13,CzUuQs-QpNEls1URRFSzDg,2,"Stopped in Sunday for lunch after a high recommendation from a friend of mine in San Diego. She claimed it was the best sub she's ever had so I had to try it. Unfortunately my sub came up short with lack of taste and toppings. When we pulled up I noticed it was super busy and was thinking man they must have great subs for it to be so packed. Was lucky to get a booth inside but it wasn't as clean as others have stated in other reviews. I had to take one of their comment cards and wipe the table of all crumbs on the ground as others had obviously done from the looks of the floor. I had the Chipotle Cheese Steak sub that I split with my husband. The bread tasted ok, but it wasn't fresh out of the oven. They skimpt on the steak and hardly saw any onions at all on it. For the price of the sandwich I really was expecting to get more. The sauce was the best thing about it but I was wanting more of it as well. I won't be going back. Sad that it wasn't a better first impression.",review,IajbWwj6l-KHrfSEwZBLgw,1,1,1 +I5ypI3aYbbTL8dAjnI3PDw,2012-07-22,_HCAHgEAReM-nS2Jlj-vkQ,3,"Very mixed feelings about this hotel. + +Location is very close to ASU's tempe campus, so it's convenient if you're visiting ASU. The surrounding city of the hotel is fillllled with methamphetamine addicts. And yes, it is very creepy- and that is coming from a 24 year old male. + +The customer service INSIDE the hotel was great. The breakfast buffet also tasted good. The hotel rooms are nice, although they only have $5 water available which is annoying and the fridge is LOCKED so you can't store any of your drinks. + +The reason why I docked 2 stars was not so much the tweakers, as it was the LOUD clunk sound whenever the AC turns off. From what I've heard, this happens in every room. + +So, if you need to sleep with AC at night (and you will, in the summer) - be SURE to buy or bring ear plugs. It's the only way to get through the night - trust me....",review,kGELmMMIPh0DWnfJalYnIQ,0,1,0 +mUVTlJSil_xyjPD6qMx8UA,2010-07-16,Wu485BrgQjADx1yu9XCABA,4,"Family-run restaurant that serves extremely yummy Iraqi food. Go up to the register if you want take-out and they will help you figure out exactly what you want. The cook is very friendly and can do extra stuff for you just let him know exactly what you're looking for. If you're staying in the restaurant to eat, they have fast service and its always served hot. Very good food!",review,B4wYawXXCI-5GR6FdCAGJw,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2012-09-26,QUBQ1Lfhk8p5PeCrK6tBnA,4,"Kale, miso, shrimp dumplings... all good",review,RTjqsz0-YZzBNfe5xkxtjA,0,0,0 +Lx4ZFP6dIMzi7Ib-ljV-ww,2011-03-10,8tKHEc5HL3cKjWIBzRZy5w,3,"Decent little taco stand sort of restaurant. The burrito that I had was good, nothing to shout about, but a solid breakfast burrito. The nice thing about it was that you can order breakfast foods all day and it still tasted good. + +Mine came out pretty quick, but my friend's burrito was quite long in arriving. They have some good combination burritos that aren't significantly more expensive like the ones you might try to get at other places. I would visit again to get a second opinion of the place.",review,shkOSzUcN2hjIJpyufVS9w,0,0,0 +Rus-ewyqLj2D1RlqK-je4w,2009-04-15,a0a5ybBNpoNuxDFd8sBSuQ,4,"Really pulled a douche bag move by coming here at 9:45pm when they close at 10:00, but everything was closed except for fast food places, in which we didn't feel in the mood for. The hostess didn't give us any attitude and sat us...It was super dark, but had comfy booths. + +Andy was our waiter and he had such a great attitude, we apologized for coming in so late, but he assured us that we were fine. The salad was good, but kind of small, the buttery croissant that accompanied it, however is tasty. Hubs got porkchops and I got the chicken soup. Not bad, we ended up talking and laughing with Andy about the restaurant industry...too bad the bar was closed, I wanted to see if he wanted to drink with us.",review,uNbB1uR4EBhmygUc3IfPAw,1,3,3 +KLaxBc83JnxyGf7GP7enYA,2010-02-19,jA0HiokujOfyHycVruX_TA,5,"My first and only experience there was excellent. The service was exemplary - the server knew the menu, was enthusiastic about it, and assisted us in choosing our items without being pushy. The food was exceptionally prepared and tasted excellent. The tzatziki was the best I've had. Nice and thick, with cucumber and spiced well with herbs and garlic. The spanikopita was also exceptionally with fresh clean tasting spinach and delicately textured phyllo dough. The pan fried calamari reminded me of Europe, fresh tasting, delicately fried in olive oil and not in the least bit chewy. The pita bread was warm and fresh and for dessert, the baklava had a complex flavor and tasted home made. + +The environment was tasteful, old world European and exceptionally clean and organized. I will be back!",review,Hm8mxRyPSQqTPq0JVWNSpw,1,1,0 +W0eocyGliMbg8NScqERaiA,2011-04-10,hX9qg597l3OCWd0EsV2bbw,3,"Narcisse couldn't be more appropriately named...another Scottsdale scene club with a lively but predictable crowd of scantily dressed cougars, Middle Eastern royalty and upscale business folk. The music is hoppin and thumpin late and leans toward House, which is why I added two stars. We actually entered by taking an elevator up and walking through a kitchen in rather cinematic style, emerging right onto the dance floor, which was packed. I guess it pays to know someone. The champagne selection is outrageous here and packed though it was, our drinks arrived in seconds. The sky-high patio is a nice place to chill and check out the little skyline, but it's all about getting your dance on here. I would like to check it out for happy hour when fewer people are bumping into you and stepping on your feet. The Russian mobster-channeling bouncers are a little intimidating, but treated us well. An uber enthusiastic dancer knocked into my friend and shattered her Veuve glass, and all was whisked and mopped in seconds. The music sure beats the tired 90s cover bands that seem to be epidemic in this area.",review,ETrSs9dpPwxqi1mYfbMmvw,2,1,3 +hGQsnkndreW7b26XC2HVRA,2011-07-14,rTgDvc9hTAHOzw93uErZKA,4,Love the medium wings and green salad with thousand island dressing! The bartender CJ is da bomb!,review,RCjuKSuPezW6qI3ZKgkncA,0,0,0 +kK4AzZ0YWI-U2G-paAL7Fg,2012-04-06,oiyY4oScJ5gffI0bpHTWBQ,4,"Had a nice dinner here with some friends and family last Saturday night and it was really good. The eggplant parmesan was good, but two of us could have split it. They serve it on top of a big pizza crust, so it is very filling. My son had the God Mother pizza which had bacon, pesto and fresh mozzarella. The pizza was in the shape of a guitar. He liked it, but wasn't thrilled with the bacon. It would have probably been better with just the two main ingredients. The restaurant is casual and hip at the same time.",review,SgDWDjBr8fV7id1UnFaAFg,0,1,0 +u0NbikWwP7TVkMkCily-4g,2008-04-02,GGykoH0QOvtJMdslH6ImNQ,5,"I love this place. I especially love it on Tuesdays when it's free. + +I have been to many lectures, openings and films at the Museum and am always fascinated. + +The changing photography exhibit is always fantastic. The fashion room is one of my favorite features. BUT my favorite piece is the firefly installation. I could seriously live in that room. I take everyone I know and everyone is always as mesmerized as I am, and I have seen it many times. + +I love the new contemporary wing of the museum. I also love the glass boxes on the sides of the building. One time we were there during a thunderstorm and sat in the glass box and watched the lightening. It was perfect! + +The museum always makes me happy.",review,Wy7f9DOuBEOenhnA7KIKoQ,1,3,1 +qjmCVYkwP-HDa35jwYucbQ,2009-11-04,McgTbfkTEai9y3vmfBpBXw,3,"My wife wanted to go here a few weeks back for her birthday so we went on a Saturday afternoon. Parking was easy to find and there was no wait to get a table. Wish it had been a touch cooler, but it wasn't so we decided to eat indoors. + +Had a little snafu with our servers where someone who was not our waiter took our drink orders, but it was straightened out pretty quickly. We each ordered one of the signature drinks, the wife got cucumber lemonade (I think) and I got a green arnold palmer. I liked the g.a.p. For the meal, don't remember what the wife had, I got the chicken sausage pizza. It was fine, nothing out of the ordinary. + +Basically, that's how the whole meal was, okay, but didn't blow me away (not that I'm a huge healthy/organic foodie kind of guy though). I guess I'd go here again, but I probably wouldn't suggest it. (I did think the music was a little loud...)",review,XpejQYZqVcYGX7fYuYHzSw,0,0,0 +xH5axHFadmc7Veutt376TA,2012-01-11,KPSNFCMhp_kg6-68xZ-zaQ,1,"Slowest DRIVE THRU ever!!!! Also the quintessential SHORT BUS Location. + +I frequented this location around dinner time since it is the closest to my home a few times and every time it is between a 10-15 min ordeal. When i worked at Mickey D's in the early 90's we had what was called 90 sec HBO( Hand Bag Out), from order to picking up should be no longer than 90 secs. This must not be a practiced any longer. I have to say hello when I drive up to the speaker due to getting no response. Then I get someone who is rude and say's yes. I order the big mac deal, buy 1, get 1 for a $1. The employee says they do not offer that, I advise their menu out front does. After 5 min of silence and cars backing up I pull fwd to make sure he is still living to see what is up. Total lack of cust serv service, he had to have the mgr show him how to ring it up, no apology or anything. This happened each time I went there. C'mon man",review,QDFF87mFaSCr3AUAumKdmQ,1,1,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-05-11,LfqSRGXUVtRs8t0nMIRoyg,3,"I have been to the original Vig and was happy to see that they were opening the Vig Uptown within walking distance of mi casa. So far, I've only been able to schlep over on weekends for brunch. I'll say that the food is good, but the service on my last trip was pretty lacking. At one point, my BF & I sat for nearly 20 minutes between the coffee delivery and the actual order taking. That seemed to be the standard for the day in what was a pretty empty restaurant. kept me from giving that 4th star for sure.",review,SHTJPF9xvkB912zkmvUw9A,0,1,0 +tA2DT7CGQPzgA6tTcTkXDw,2009-06-19,0ei9Arzw3h50QDLB0VN05w,4,"4.5: The only thing keeping this place from 5 stars is the location. The view from the patio is pretty much parking lot and the backs of buildings. + +But, holy cow! The wine selection is VERY good. The staff are friendly and helpful and make excellent suggestions (thanks for the zinfandel tip! YUMMM). The prices are fair too! + +And, as much as I love green chile, my new fave is the fig and gorgonzola app. Still a pannini... I didn't know blue cheese could get that creamy when it melted! + +Man, I wish this place was closer... I'll still be back!",review,vsXP832M0kOxKpfduD7dWw,10,11,6 +rkGPf4cbyUJqHgKZPvaTnw,2010-08-17,1gd82GFqO0_5XxJUKGqZ7g,4,"I shop here a lot. They've been accepting expired coupons, which is great and every little bit helps. Returns have always been a breeze too as there isn't a deadline, should you receive a gift, don't have a receipt, whatever the reason. SO (yes, here it comes--the negative, which I always include) when the snippy girl (rare in this store) that I've never seen before when shopping here so she must be green to the policy?, inspects the item (no biggie--make sure it's there and intact), I start to wonder just a tiny bit. This is all after she made me wait for maybe 3 long minutes while she failed to address me standing there. She asks why I'm returning, which I explained but nothing was defective. Then there's a problem with the amt so she calls a manager, THEN she tells that mgr ""She's returning it because......"" as IF. The mgr ignored her, as she didn't inquire about my reason, which BBB doesn't really give a @&*^ now do they. Or perhaps she thought she could announce it so the line behind me could look in disgust as they waiting to BUY something waiting for another cashier to show. Didn't bother me but what the heck did she THINK I was doing here. At BBB, you can return anything, anytime, for any reason, no problem. So why this twit couldn't fathom my reason is bbbeyond me. That sort of attitude is a huge turn off and has she heard of secret shoppers, or just do your job with a smile, don't judge the customer, esp when the item returned is in NEW condition, unused and a very inexpensive return. What a bizzo. If they keep employees like that, I'm through. STOP it. + + I feel much better now.",review,4muLyMlTP1ijRLACBBRcaQ,0,0,0 +soiGohHtWOltGeomkSxzEw,2011-08-03,XYBRk68egyxpeXzuhexOgw,2,"Everyone I've talked to that likes this place says the same thing, ""I've been going there for years."" Yes - and perhaps years ago it didn't feel like a dive restaurant in constant jeopardy of being shut down for health code violations. But now... + +The food is completely, unmistakably mediocre. As is the service. Maybe it's not filthy - maybe it's just the lighting and decor that makes it look like that way. But I'm pretty sure the roach I saw dart up the wall was real. + +(Okay - that's a cheap shot - there are probably roaches in many places I've gone and I just haven't seen them. Fair point.) + +Nothing about this place makes it a can't miss. I get the history, the nostalgia, and the fact that some famous people have dined there, but you can find better Mexican food all over the Valley and some just a short drive away.",review,_uLtybFNthITalKyAiFurA,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2009-10-31,prK2oCwdStN8_wyuToobWw,5,"DD has great food, friendly staff, and a wonderful patio. The breakfast menu is the best in downtown Scottsdale. DD is also great for lunch and early evening. The Happy Hour menu is a great value. I have been there many times and the food and service is consistently top rate.",review,O-nHK6gWRwtS-O3A2tYydw,0,0,0 +tV97OH1LK00kUcX0Jig-sQ,2008-04-15,28kJ8stP_LbJgVSLPdOQMQ,4,"I'm a gelato purist, so Chill is right up my alley. You don't have a million flavor choices, but the ones they have are classics done right, so there is no need. The same lady is always working when I go, and she is very friendly and upbeat. They haven't yet perfected the multi-flavor ratio in one cup, but I'm sure that will improve, and I'm a huge fan of anything with a punch card. So far my favorite gelato spot in the Valley :)",review,5wN78N4K0a39C-uPzPmxDw,4,5,4 +0UZ31UTcOLRKuqPqPe-VBA,2011-08-15,blN43n5auAXjrf7tICNhvg,4,There is a Leinenkugel beer stand on the east side of the first floor heading toward Fatburger! SO so so excited to discover that! They only take cash though!,review,rlcJkEoYzuiS7iF5XfXCMA,0,0,0 +MLcXtnpzygZvQ9BtseLLlw,2009-08-19,x8sFHH94WxMW_SuOZ4TAJQ,5,"The Farm at South Mountain is a splendid little slice of the country- right here in the middle of the desert! + +The plentiful green grass spotted with picnic tables makes me want to plan a family reunion. There are gardens and walkways to explore. From first glance, The Farm is a quaint, family-run farmhouse. + +Visit Morning Glory Cafe for breakfast and you won't be disappointed. I've personally enjoyed the Morning Glory Benedict on several occasions, while my brother is a big fan of the Farm Monte Cristo. Both dishes are made with as many local ingredients as possible... mmm... local-icious. + +The Farm Monte Cristo is about as close as any breakfast food gets to ""groin-grabbingly delicious."" (a la Homer Simpson) It's slow baked ham, over easy eggs, and melted cheese between two generous pieces of French Toast. Served with warm maple syrup, this is it, folks. The grand-daddy of breakfast foods. + +The service here is generally solid. Our servers tend to be interesting, friendly, and adorable- all good qualities to have when you're serving breakfast to someone who isn't happy about being up early. + +I'll return... and return... and return. I'm hooked. + +I only wish Morning Glory wasn't closed for the summer! Killing me.",review,4eONcOSuswZvlvWu8ftJHw,0,1,0 +I5xBrzmTIUKHlj01JU6Z5w,2012-06-18,vCUk6ZE4JgPFjUbnuBzvgg,4,"It is a nice place. Actually when i have just come in, everything seems to look normal. Nothing different frm other nail salons. However, when a lady did manicure and pedicure for me, she did really good service. She always smile a lot, and made you feel comfortable. I will come back soon and tell my friends abt this salon cause they did a good job.",review,3E9XM4pk8APBYPUiI0X05w,1,1,0 +KIYCsfv4__50laeYYVPAXQ,2012-06-20,P_8JLwqCwRXsHcBU855Cnw,5,"Just got 5 Diamond Dermabrasion On Arms, Back and Face and I Love it She is a perfectionist, Organize, Clean, and the most amazing quality service she finished my facial with Ice I basically melted This is My Best present for My coming B Day this Sunday I will Look like I am in High School this weekend with m Super Fresh Skin PaulGStudio.com highly recommends this better that The Red Door service and amazing and real Customer Service. She has a 1/2 off coupon on the entrance of the building for the first service Please Enjoy",review,ij5AugUe4lIU-sVVUEeaBw,0,0,0 +r3r_bAfa6pZKIhQB82FizQ,2009-11-02,q_VofveTOSDDhK0zGqOSSA,3,"Went here for lunch on a weekday and thought it'd be busier. The slower setting allowed for more personal attention though. The chef even came out to talk to us and gave us free samples of some of the desserts. The food was good, but didn't blow me away. I think it's a nice option for a snazzier (it's a little pricey) lunch with friends.",review,VFfFPP8gMpnhVYE7bD0qIw,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2010-02-08,vzuWb-Z8ZijzixFD-skbgw,4,"I less than 3 this place. I've been more than a few and always leave smiling, full, and satisfied. The staff is friendly and fairly fast. I am not sure though how exactly one would determine that rock-a-billies as a whole would love this place. Maybe the grease from the stoves and kitchen floor? However, if you like good food and a fair beer selection this is the place for you. And they have good happy hour drink specials if you like to get really drunk. If you don't mind sitting on an unknown someone's lap then lunch rush is probably not a problem for you. Elbow room is the only thing that is lacking here. Of the ones I've tried so far the porky, lamb vindaloo, chicken tikka masala, and lamb & mint are all pretty darn good. This is making me hungry for a pasty! + +And the friggin' pb & j pasty is incredible!",review,M_C8-rexcexmn2zxwMmp-Q,1,2,1 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-09-09,yhZOPK-cIpZTQItGraNIUg,4,"So I finally made it to The Grind. A friend and I went for a late lunch (after 2pm) and had the place pretty much to ourselves so the service was spot on. We sat at the bar and drank bottled Kiltlifter...I've only had it on tap or from the can so that was a nice surprise. She had a burger topped with some sort of fried veggies and watercress...I know she loved every bite 'cause she refused to share with me. I had The Crisp Pork Sandwich. It was topped with swiss, pickles and iceburg and what I believed to be a house made BBQ suace. I gotta say I don't know where the ""Crisp"" part came in and the sauce was good but it didn't blow my face off with wows. To make things more (or less) forgettable it was room temp, at best. All that nay-saying aside...I killed the sandwich. It was a good sandwich. We shared the sweet potato fritters. I think I would've liked them more if I wasn't expecting something completely different...something with a ""no shit?"" factor. Admittedly, my bad. But everyone else should know they are pretty much sweet potato mash shaped into coins or pucks, breaded with mild seasonings and fried (possibly baked?). That's all. No hating...just saying. The sweet potato fritters at The Grind are sweet potato fritters....don't get all excited like my buddy and me did before ordering them. The room was tidy and clean. The music was the right kinda 2pm vibe. The bartender was attentive. The food was thoughtful but possibly not executed to it's highest potential. They have Kiltlifter in a bottle. If I were you...I'd go to the grind. Represent local talent, Phoenix. Chef McLinn and his colleagues...waiters, FOH managers, dishwashers and prep cooks are the Gin Blossoms or the R. Kline and the Peacemakers, the Jimmy Eat World or Eastonashe, the Headroom of the food and beverage, scene and attraction in this town. If it weren't for guys like Comer Smith, Jarrod Porter, Jay Bogsinski, Pattrick Fagan, Matt Carter, Payton Curry, Aaron Chamberlin, Chris Curtis, Beau Macmillan, and Matt McLinn we'd have no music-food to listen-eat. You might not love every single song the band is playing...but just knowing that they're what we got should be enough to get us to invest in understanding their talents and appreciate what they're doing for us. I can't make a pulled pork sandwich...but I know someone who can. You should go try these guys out...they sound-taste as good as any sandwich joint could. All they need is a few more groupies to spread the word and before you know it, The Grind is gonna be a classic.",review,6xdpuvxbKunrARW1hMs1Ug,0,0,0 +bc-lE-wGVAsUrX-kJhtY-Q,2010-07-28,-jmy8tVmq5ZWt2aUE6dE2A,5,"Been going to Don and Charlie's for years now. It's kind of a family tradition. + +A sports hangout, you may see some players and coaches during the off season as Scottsdale is a big place for spring training. (This delighted my single girlfriends who took every opportunity to flirt the entire time I visited with them). + +The bar is roomy and comfortable, with more than ample stools to accommodate my generous tush. Say hello to Shelley who is mi favorito bartender! You are welcome to dine at the bar, but the dining room is much more comfortable, with a great deal of banquette seating- which I adore. I often have the veal chop, or a nice, big NY Strip. Twice baked potatoes, creamed spinach......you know the routine in the ""good old boys' steakhouse."" The best part is the house made chopped chicken livers which are simply to die for. + +Valet service rounds out the numerous reasons to choose this place over others in the area. I almost forgot the comprehensive wine list, including wines by the glass. + +A must stop when you are in Scottsdale!",review,ro9-YMOXa53-_yECUBr1IA,3,3,2 +4YfXP-NxQXntqi0qAknU5g,2011-02-07,TlgyPPD4sz9FVoWNYHUcEA,3,"I've lived near Old Town Scottsdale for years and in all that time I've never really taken to the streets by foot, aside from a weekly visit to the Farmers Market. At first glance you ask yourself how many Indian jewelry shops can the area possibly sustain? Well the answer is, the turquoise market in Old Town seems to be doing quite well. So it was on a recent exploration trip that we happened upon David's Hamburger's and Mexican Food. So for me the idea of killer burger and tasty Mexican good is a match made in heaven, were talking major food groups here. + +Tucked between 2 galleries, David's is a blink and you'll miss it kind of place, very unassuming and humble. Inside you won't be wowed by the interior design but what they do have is functional and comfortable. With TV's at both ends of the hall like space, you'll be entertained by performance videos of 50's era rock 'n roll. + +I usually don't write much about soda pop, well never, but in this case the Cherry Coke ($1.95) was kind of special. When you order a Coke you can ask them to add a number of different flavorings from lemon and vanilla to chocolate and of course cherry. David's version is wonderfully fizzy and cuts through the richness of the upcoming meal. + +Of all the ways Mexican style meat is prepared, the grilled taste of beef is my all time favorite. If you enjoy this as much as I do then Id suggest the Carne Asada Nachos ($8.59). A massive pile of crunchy tortilla chips is covered in grilled beef strips, melted cheese, guacamole, sour cream and pico de gallo. While basic, I ate most of them myself leaving my partner to scraping the cheese off of the plate. If you'd like salsa on your chips, be sure to ask them to bring you bowls of green and red salsa. + +Now who doesn't like a big juicy hamburger? David's doesn't disappoint with David's Single ($5.99), say that 2 times fast. A 1/3lb patty topped with the usual suspects, then dressed with David's creamy sauce which to me was a thick version of Thousand Isle dressing, adding a layer of tangy goodness. Along side you have your choice of fries or you can choose to upgrade ($.99) to a mix of large deep fried onion rings and golden French fries. For dipping I a side of David's sauce did the trick in lieu of ketchup. + +The Patty Melt ($7.25) is classic diner food. We're talking thick ground beef patty, melted cheese and grilled onions on your choice of grilled sourdough or rye bread. The wholesome grease from the beef patty and grilled onions is absorbed into the bread creating a creamy like texture, for me this is what a patty melt is all about. Of course the Guacamole Burger ($6.25) with its pepper jack cheese, bacon and guacamole is the marriage of Mexican and American influence. + +If you're an early riser, David's also serves breakfast like Bacon Pancakes ($6.75) and Coconut Waffles ($6.25). Someone please pass the syrup. My only question, where is the breakfast burrito?",review,lPaYMDmJbAnv_3pmZH_inw,2,3,1 +gFGldPLVQdqbHQodU5TeUw,2010-10-23,W4LWUHQ3d3Y2nyPNSVXTdQ,3,"Pei Wei is always busy, that's gotta mean something right? Wrong. There are restaurants that serve billions yet all they serve is a gross mystery. Pei Wei is no mystery though, the food is cooked in an open air kitchen. Even so, if there were such a thing as Asian fast food, Pei Wei would be cleaner version of it. + +Most Pei Wei's are situated in pompous locations where ever there is an AJ Fine Foods, but atleast they aren't located in the ghetto. + +As far as the food goes, it is about as Americanized as you can get. So if you live in America and have American taste buds, it will appeal to you. Unfortunately if you want authentic Asian food you won't find it at Pei Wei. I don't understand why they even bother to put chopsticks on the table, the rice isn't even sticky enough to pick it up with. They are for decoration. They are part of the 'fake' Asian dining experience. Apparently, Pei Wei serves food ""manadrian style"" from Thailand, Vietnam, Japan, Korea, and China. In the words of Bill Lumbergh, ""Ooo.. yeahh.. I'm just not sure about that."" Having traveled to China I can honestly tell you that Chinese food is different. Apart from the rice, the food lacks vegetable oil and garlic. In China those two ingrediants are used in many dishes and Pei Wei lacks them. When I first started visiting Pei Wei I ordered the Sweet and Sour, but I got sick of it. Sometimes the meat would be tough, sometimes the chicken would clump together all nastily. What I get now-a-days and what I got on this particular day was Mandarin Kung Pao. Even though the dish is spicy, that doesn't mean it has to be dry - and it was. What it was missing was some catalyst to bring out the spicy flavors and make them more vibrant. + +The dishes at Pei Wei are family style meaning they are meant to be shared with several people. A dish and a drink will end up costing you about $10. If each person gets one dish, that's a lot of food, probably enough to feed a small village in Africa somewhere. It would be nice if they served each dish in two styles, family and single, large and small. Family style is great if you always visit Pei Wei with your family. But if you are out for lunch with people from work you might not want to share your food with your co-workers. They aren't your family. You don't know them. + +Pei Wei is a modern Asian diner that is probably better than most of the mom and pop Asian diners out there, even if most of the food is cooked by Mexi-- I mean Asians.",review,VNEqps27mp8-gTqTfzg7yw,0,0,1 +F-ZOeAK1v7e5Rt2Mv5rVMw,2010-06-11,8rU07y5scGgm2rpghbkMpA,4,"Watched the Ignite Phoenix #7 viewing party here on Friday Night. Thanks for hosting. Had a lovely Americano while I watched. Great drinks and cool interior. The other guests seems to be talking about their food as being very good. This is a little out of my neighborhood so don't know how often I will be able to stop by, but if I am ever remotely close and need a little java, this is a great little spot.",review,TxOR39w0Mlbd4h1siXyb_w,1,1,0 +NJTIb6bro3gmfo7Gp6rDLg,2010-12-21,FTjqFTEhA8MqGYqlhtMaCQ,4,"Love the bar! The two guys that sing and play music there Wed thru Sat nights are just amazing. + +Manuels' has very authentic Mexican food. Best enchiladas and refried beans around. + +Bar is adorable after being renovated recently. Restaurant could use some updating.",review,ngwtU9exHb5P3ehMUBxftQ,0,1,0 +oRJgXbcawYd3kULBucqdnA,2011-01-17,6443pQKHzT6MsItVYa7o8w,4,"This was my first half marathon. I enjoyed the music the buzz of tens of thousands of people all about to do a crazy long run. It was amazing seeing the sunrise over the city. I found the parking, shuttles at Tempe and food-court to be very easy to use. It seemed well planned for such a large event, just not enough bathrooms for the amount of people. + +The PA for the full marathon kept going in and out so it introduced the 2 star athletes but you couldn't hear their reason for being there or accomplishments. + +Bathrooms on the course were way too few and huge lines. I felt bad for those who needed them. I saw less than 10 at the first 2 stops for 12000 people. If you gotta go #2 on the course, too bad,... Take Imodium on race day I guess. + +Bands and support were fantastic, but this was my 1st time so can't compare.... GU gel is always on me, great to see them out there. The course is NOT flat having a 'heartbreak hill' in it at mile aprox. 9. UPS gear check bag split apart at a feather's touch the day before the race. Good thing, i was going to use it. The top of the seam isn't sealed so any slight pressure/tear will open the entire side. + +Ha + + +ABOUT THE AUTHOR-INTERESTING BACKGROUND + +My first endeavor was a rolerblade marathon in tucson in 2004. I guess it's out of style now so no more skates. Used to do the New TImes 10k in phoenix every year too. GONE, sad. + +Last year I did the Tour de Phoenix 72 mile bike race on a 33lb. full suspension (no lockouts) mountain bike with slime in both tires and all my supplies on my bike and camelback... thought i was tough, 'till I tried running! Injuries were now a new thing now and it is much tougher per hour than biking, but about the same calorie burn... Still love both. I did a sprint triathlon recently too. + +We all know running is 'hard' you don't get extra calorie burn from impact stress but something about running and especially in this event captured my interest. On the way to the zoo last year i saw the half marathon pass by and said ""I think i could do that NOW"" boy was i wrong... it took me almost a year to train for this event, but what a worthwhile challenge. + +I did this as a run walk 3 min run 1 min walk. I learned from the Galloway training method that this method is not only easier but faster than trying to run straight through. .I am capable of the constant run for this time but it winds up being slower than when i take walk breaks. I tested this with a 10k distance. I was 7 minutes faster with a run walk than running straight through. look it up, may change your life too. I took 50 1 minute walk breaks and i did my time goal of aprox. 2:30 with 1 bathroom break.",review,t5qFxYP2t6ltRbvhqJsZAQ,0,1,0 +8HQ8clouLGgee99KkR4vXA,2011-07-24,4Crzom7uBVRE7Klq1NSy_g,5,"I was Frost bitten when the first location opened in Tucson. Since 2008, I have tried numerous gelato places and none have come close to the creaminess, tastiness and overall authentic fare as Frost. Each dip of the spoon is reminiscent of my travels abroad in Italy with memories that bring a smile to my face and pleasure to my tongue. + +The San Tan village location is 25 minutes away but the drive is worthwhile. The staff is friendly, helpful and armed with spoons for you to sample any flavor you wish. I went with the dark chocolate and salted caramel. Truly delightful! Word on the street is there are 3 locations to pop up around the Phoenix area. I think Tempe would be a great choice! Hint hint....",review,6TTL3a3yvB-5Kmkz0IshYA,0,0,0 +PlcCjELzSI3SqX7mPF5cCw,2012-08-27,sb60pi-68jjtk9pqqUibug,2,"I Live close but will stop eating there. The service was slow, my friend complanned about a order he had and they said ow next time tell them to make it different for you? Really then I ordered another simple California roll Took forever. The Sushi is allright but the overall experience is worth driving somewhere else you lost me...",review,yGq213PmiwYSYrhDLPWTSQ,0,0,0 +b3zJrtYqVg4ZXmiLN8V84w,2012-03-04,TFrjCKz6muUg7lOaqjLl1g,1,"Beware... use only a credit card so you can stop payment if you need to. ( our sales person encouraged us to pay cash and get a 10% discount ). Big mistake, Any problem you're on your own...really... On your own! We've spent over $3,000 at this store and it has been a nightmare. Delivery took weeks longer then our sales person said & our paper work indicated. There was a mistake with the fabric, the paint was mismatched, what was to take 10 days took 3 months. Not a darn thing was handled properly. Every call we made to ""customer service"" was routed directly back to our sales person. We went back to the store in person but there is no mgr, no one except commission sales staff and a voice mail merry go round.",review,rq46hVxWltv4OmgWN4_2hg,0,0,0 +GOlq9CGj4APl_S2jyhMr1g,2008-12-28,Xez1kc_VkawZVRVOKLUxTQ,3,Good to know they still have independent films and they chose wisely what to play. Unfortunately this location seems to be attracting 40+ yuppies! I was shocked to see how many middle-aged and even elderly were at Camelview. That was a disappointment :/,review,oCFQmDotqcyIYAY1JyKUPg,0,0,0 +lVHtVCyFJOqAH0ltn7pLuw,2012-03-16,2c3mlU7sXoNAQn-IR2gEtw,5,"Don't usually give 5 stars, but this is good sushi. At first, I was a little skeptic of all the macadamia nuts on their sushi, but it is a great compliment. +The rolls are original and all very good. The Climax('s) and the Elliot are my favorite.",review,tKZ9rPYqSkaw38VxLnkcJg,0,1,1 +RUZTqEmHP_K9pV4fyzJ7dA,2012-02-29,3ND3AjsdWmZ3sNEVqkSaoQ,5,"Great activity for kids. It's clean, spacious and safe.",review,Y7Jxglm9zeHipx8zrhULiA,1,1,0 +ssSeK9MYRCUjoabppekwoA,2010-04-17,fqo1JvvrZZ19lwymADJhfw,4,"I'm working downtown now (new themed list to come soon!) so I'm exploring the area from a different angle. I'm no stranger to downtown/midtown's happy hour and dinner spots, but I've never had to go out and search for breakfast or lunch during the day. + +I checked out Focaccia one morning when I hadn't had breakfast yet at the recommendation of my husband, Myles M, who works right around the corner. He said I should order the breakfast burrito, so I did, because he's pushy and I always do what I'm told. Ok, neither of things are true, but in this case, he had conviction and I obediently complied. + +The breakfast burrito was worth every penny. Being a somewhat recent convert to pescetarianism, I got it with egg whites (cool that they had that option), spinach, green salsa and potatoes. The woman behind the counter made it up right there on the grill and it was warm and delicious. The potatoes were skin-on which gave them a great texture and flavor. The eggs were perfectly cooked and the green salsa had a great kick. + +The hot coffee from the carafe I got to accompany it was airplane-quality, but next time, I'll just grab something from Cartel on the way back to my office. God knows the burrito alone will be enough to keep me coming back to Focaccia.",review,HOleI3jz1MLNUJ6cc1x0Pw,1,2,1 +ou5yH_kNEiN8J_GTSGYSvg,2009-10-17,Vhb4LNZmWhjnrefhLpkH2g,1,"Received two more messages from ""Iolanda"" this morning. Thought some of you might get a kick out of reading them. I'm definitely never going back to 98 South. Hope this info helps some of you... BTW, don't you just love orangeheads?? Doling out insults are so much easier when hiding behind a mask! + +19 minutes ago: Obviously rebuttal is not your friend but jealously is your neighbor...... + +9 minutes ago: Thought the drink was for your gentleman friend but your the one that had to abandoned it.....You really shouldn't have your picture posted ......pug!!! I mean easy target....Lets go west side .............yeppie!!!",review,0bNXP9quoJEgyVZu9ipGgQ,3,7,5 +TkBtRfqMpJ32B0ZM9zYxWw,2011-08-23,iTXs7zAirspJU8VRtnqsSQ,5,"Wow what a fun little antique,etc. store I stumbled across the other day! I stopped in at the Starbucks for a refresher and noticed all of this funky stuff out in front of the store! I went inside and it was a combination of an 19th century hardware store and art walk. There was just a little bit of everything- +some vintage, shabby chic, crystal door pulls - industrial - toys. The owners are great and are going to help me find a little period table I've been searching for. Lot of great accents! I'm hooked! I'll be back with a vengence!",review,M_KeR3EJoIOBKGP6o9MhCw,0,1,0 +SYqTY48DJa1cYhglvmgvsQ,2012-02-09,618blGd-R-MzT2NX0_8Ccw,4,Fantastic place to have a vacation..love this place. Close to shopping too...,review,W8VVAWydRYFRFvCVii1UsA,0,0,0 +ZhMlXLXuZf5z7lxunHk2ww,2011-11-02,uD4UK0gSQwSSdPCFNtJZog,5,"AMAZING. Everything we had was the best we have eaten; sushi, crab cakes, oysters! It's a MUST if near the Scottsdale Quarter! We chose to eat there 2 nights in a row, once for a reserved dinner and the other for the happy hour.",review,GywNr_rMfszS5R6VX8Qtdw,0,1,0 +jB1fFl1eIEPYe5FLpCZ5Jg,2012-03-14,jPBlPTT3kj1bbJbDyeojHA,5,"This was the perfect lunch! I got the Sack's Symphony with turkey, bacon, avocado, sprouts, tomato and cream cheese. It was SO SO good. The combination was prefect. There was plenty of meat and toppings piled on- it definitely filled me up. It's clear the place is a well-loved lunch spot- it was a full house at 1:00. I can't wait to go back.",review,ygZTPe52ZhK9jOBzS8GQ8g,1,1,0 +YKOvlBNkF4KpUP9q7x862w,2009-03-18,64qFW2X1beHEAKtAmRRUWQ,4,"I was looking for a reco for a 'significant' [eh hem] birthday dinner and foodie friend Jim suggested Mission because of Matt Carter. We had a 7 res and parked right in front...fire blazing out front, nice feeling. Inside, the decor is appealling but because of the lack of soft surfaces, its really loud. [Full disclosure: I did not inform them it was my birthday] We were seated along the banquette wall and were a two top next to a four on each side. Noisy, obnoxious. + +Server was very nice although stumbled over the bar order [and it turned out they made a scotch substition that they made no mention of]. Had I not already done my yelp research I would have been at a loss as to what to order. We skipped the apps and had the swordfish and the pork. Swordfish was a fine attempt but I thought over citrified and small bit over cooked. The pork tacos were genius. The combination of the pork, the sauce and the accompanying red onion, queso and cilantro on the home made corn tortilla just sang. The pork arrived as a glistening chunk that falls apart. Well worth the $32 and meant for two. You can also ask for more of the tortillas. + +We shared the churros and milkshake for dessert. DEEEVINE. Warm chocolate churros sprinkled with cinnamon sugar and an amazing milk shake that we really enjoyed. + +I'd go back and sit outside by the fire and eat the apps and have drinks Plates are small to begin with and I think if you expect a crazy WOW dining experience, you'll be disappointed. I think the service is working out some kinks, the bar seemed okay [although the TV is this space seems well, off putting...] and the kitchen seemed to be cranking. + +I do think its very fine food. + +.",review,9vxUUOoasnu8gtoXRwAhYw,2,2,1 +YNH_ipgJX6DluTS46T8r9w,2012-03-10,2udkAY82hihBOSMrVb1_Kw,5,"Great shopping place for clothes, jewelry, art and home decor! One of those GREAT finds and the owners are really nice. It has boutique clothing at affordable prices, great atmosphere and FRIENDLY!!!!",review,ZHjFFM_sWM3Ky1PCqgnuKw,0,0,0 +S2pW9v2BOszKIec7qzQ_rQ,2011-05-19,e10eDhtn5eWwumfhK6idSA,4,"Great Concept! + +My girls love this place. You have to really learn the schedule when the place is really busy (because it gets packed) and that is when the experience is diminished and the potential for getting hurt is heightened. + +The big plus is the multitude of things to do. For the smaller,. younger children, they have their own set of trampolines and the bounce houses..well, who doesn't love a good bouncy bounce! + +The older kids can experience the main attraction and I will tell you that watching some of the stunts is pretty amazing! Not to mention the dodge ball, foam pit and the maze...2 hours gets eaten up pretty quick. + +Whats great about this is that kids are being ACTIVE and really getting a work out. I was out for like 10 minutes and my butt was kicked...so this is a great way to get your kids moving and motivated. + +The staff is young, but so is the staff at hot dog on stick...but they keep things pretty well under control and I have only seen one person get hurt in all the times that we have been there. Looking for common sense, good customer service, or a straight answer and you might have better luck talking with the floor. + +Worth the money...great value...and fun. A definite two thumbs up in my book.",review,4awtPy_a90mciUxOVQaENA,1,2,1 +n25AWEdWRaNMdMI_uN_VOw,2011-11-25,Wi5XeLHEg-RK7_uv0OzW2Q,4,"Was in Phoenix for business and had to check out this starwood property. +I've stayed at W's before so I wanted to compare. + +The goods: +Starwood property! +Close to airport +Great price +Cool room - very hip compared to most anything else you're going to stay in.. Not quite a W but not your typically Sheraton either. +Friendly staff +Had this really cool video input box on the desk connected to the TV. Allowed me to plug my laptop video into the box and have it come up on the TV. Was able to stream netflix easily to the TV. +They have a bar +Easy parking close to the door +Location drive-able to restaurants +Pool +Quite + + +The not so goods + +Bed and pillows kinda like a futon. +No formal restaurant. +Funky frozen dinner/entries offering is more funky than useful to me and I travel a lot. +They do have a delivery menu from some local restaurants (A-Loft note: Ruby Tuesday's food sucks) + +I would give it a 5 if it had a formal resturant. + + +Would I stay here again - yes for sure!",review,3kzwkwD89YWBnSq7jdAZxQ,0,1,0 +5DanV2PGA1vk8i1Hhd8JrQ,2012-12-08,fv6iCvVjBrXH1mVwshIEPw,4,"This place is great! The pizza is so yummy, thick chewy crust and good sauce makes it one of my go to places for pie. The wings are fantastic with a diverse amount of different sauces to choose, from the classic mild, medium, and hot to BBQ, honey hot and my favorite sweet baby rays sweet chili. +The interior of the restaurant is large and nicely decorated with lots of wood trim and there is a kids play area and TV's to watch sports and such. Sit outside in the patio or take it to go.",review,y09Zhjx7671gvyPqHdAJ5w,0,0,0 +Snp5LyDO9NeQiuFPOlkavw,2008-06-30,ic_Orde3PLC97_4EJqZI3Q,4,"I want to make love to a cream puff sundae. Maybe even marry one. They're that good. Other than totally awesome desserts, this pace is a dump. The g-damn flickering fluorescent lights give me a headache. + +Go there for dessert, inhale it before the flickering lights give you a seizure then run before you get sucked into a shit-hole linoleum time-warp.",review,W9n_ZyVCXD0HfPqn6qriOw,4,5,6 +7UZQ6qGX8lP7a3jokfYVjQ,2011-03-28,ysXcFqnWNQ33d_Qh0-cClw,1,"Totally excited to try this place out, my grandparents, my mom and I (4 of us) came here for some Korean food. It wasn't too busy; just pairs of people from nearby offices coming in and out. + +Unlike other Korean restaurants, their lunch special selection is very limited. Special A consists of a sushi roll with a soda, special B = teriyaki beef/chicken (no soda), or special C, Korean BBQ Spicy Chicken. + +As we were looking at the ""lunch special"" board, the lady behind the counter insisted that we should look at their full price menu instead. Here comes the awkward part: she then asked my mom ""are you Chinese?"" Even though she is, my mum looked at me all puzzled as in ""what does that mean?"" The lady proceeded by pointing at the ""seafood pancake"" section on the menu and saying ""I don't know why but you Chinese like this pancake a lot."" Good thing my mom didn't hear what she said.. or else... + +So we got the Spicy Chicken lunch special ($6.99), a bulgogi ($6.99), and a beef yakisoba ($7.19). The cool thing about this place is that it has a mini ""kimchi"" buffet bar, with trays of marinated tofu, potato, bean sprout, kimchi, broccoli and some other vegetables. It also has this delicious house special hot sauce. + +By the time we finished a dish of kimchi, the food came, so it didn't take long. The spicy chicken, came in a bowl about the size of an instant-noodle bowl (but slightly deeper), was tender, with rice underneath it. The chicken was definitely marinated well; however, the last couple of pieces had tendons and big chunks of fat... what a bad way to end it. The bulgogi also came in a bowl, with rice underneath. The beef was definitely not marinated fully. The color was super light and the beef was close to tasteless. The biggest disappointment, food-wise, was the beef yakisoba. The noodles, occupying most of the Styrofoam lunch box, were sweet. Then there was an ice-cream scoop of rice, topped with 3 pieces, I kid you not, THREE pieces of dog-tag-sized, super-dry meat. + +In the end, we just decided to bring the barely-touched yakisoba home for my younger brother (well, teenage boys tend to eat everything...). While my mom transfered the noodles to the plastic bowl (since the Styrofoam box was lidless), I went to ask for a plastic cover. This is the best part: the same lady, stared at me, pointed at the salad bar and said ""you can't take that home"". I thought there was a miscommunication, so I asked again for a lid for the noodles. Again, she pointed at the salad bar and said ""you are not allowed to take the kimchi home"". Wow seriously? Just b/c my grandparents are Chinese you assumed we were stashing kimchi in a bowl and trying to sneak it out? ""Look, I just want to take my noodles home, ok?"" She hesitantly gave me a lid. + +""Hey, hey you. we chineness peple no steal kimchi becuz Confucius say 'no stealing kimchi'""... only if I said that to her face... + +Oh, and when we got home, my brother, aka our food dumpster, took a bite of the yakisoba and never touched it again. + +Conclusion: If you want amazing Korean food and friendly customer service, please just go to Chodang. Chodang is WAYYY BETTER, hands down",review,gnirIlRf-E9uBUZhRzvPzA,1,3,1 +PmPOuRvuN3CoNOi1nBj_TQ,2011-02-28,TbY0qDzbkqU5gP_UTjIKDw,3,"Ok, they should be happy that I am understanding of the flying bug that landed in my dessert and died before it was served. Yes, I found it as I was eating the dessert, grossed me out, but not necessarily their fault. The manager came over and apologized and took the dessert off the bill and offered me another one. Anyway, the rest of the meal was great. My party and I had the scallops with green beans and capers. Yummy! I do like Pappadeaux's overall and this is the first time I didn't have a great experience.",review,uTyIIbOvXH_XZw7OEiTiNg,0,1,0 +FYCVF_1qYm3x5DYCbmmK1g,2012-10-26,sTZU3JC26VsqnEMSw6kWEw,1,"3 months, 22 emails, 10 plus calls and (I think) we have the final refund from Budget! +Stay clear of Budget Rental they DO NOT care about customers or resolving their monumental mistakes!",review,EiD6jKEPhaPIWRvk4AQPDw,0,0,0 +XWvht_1ZLdK7EHJ3jo4q0g,2010-08-06,gOV1oow2DyrG_d0-t_rwKw,3,"Don't get me wrong, White Chocolate Grill is good and definitely a place I will go back to, but there is something that just doesn't click. Everything tastes good and the service is fast and efficient but it is more of a relaxed dinner that a meal you get excited about. I can't say for everyone I really don't like waiting a half hour for a table. Call me impatient I don't care, I really do not think many restaurants deserve that title even on a Friday night. I do love that they have an entire menu for gluten free diners. It's so hard to find gluten free in restaurants don't even mention an entire menu! I was impressed! I ended up splitting artichokes with parmesan (ask for no bread crumbs) with my mom and got myself a chicken caesar. Both were decent. We did end up ordering a gluten free chocolate soufflé (make sure to specify that you want it gluten free because they had a normal version as well) which was amazing and I would definitely go there just for that. Overall a good family weeknight restaurant that is that is above average meal. Definitely a place to go if you have celiacs or are gluten intolerant.",review,Y1bWMPTcTf4GBP4OcTGnTw,0,3,1 +xdwPHc25l7_roZ9Kfea13w,2010-06-04,U1GsZ4H3Ih7jZ6orRT708Q,5,"I been here once and I loved it!! Food here is amazing! Decor is cute, felt like walking into someones home! It's communal seating so get to know other guest! Service was great, but before I continue....They're closing this weekend due to the lack of business! OMG! I recommend going before you miss out - take care Lola - what ever you want - you get :)",review,XqMkm-DD9VsdcKx2YVGhSA,0,0,0 +Oz1w_3Ck8lalmtxPcQMOIA,2008-11-12,h8wpsGAv2jMNLVk_gCbBOg,5,"I am totally addicted to this place. Tons of flavors of smoothies, and perfectly cooked Boba. Green Tea, or even Vanilla Chi - so far all the flavors I've tried have been fantastic.",review,toD5fpe7--5ljkAz1ee-cw,0,0,0 +h762dZ33uhSKtLZ-21u6Jg,2011-12-04,TSnRYXMdWMIVBR1q_UGRvQ,2,USE to be the best Pizza in town. Unfortunately that was like 10 years ago. Now this place is overpriced at about $10 for 2 slices and a drink. Trust me you can find better pizza almost anywhere and they charge for ranch as do most pizza places. But isn't a pizza joint charging for ranch the same as a burger place charging for ketchup?,review,nGvxLe5jdJGbxTYt9XjScw,0,1,0 +DmkTDze8ruJr6o2f5GAvJA,2012-07-01,51ihQrxanlevNyCQut_NUQ,4,"The BF and I got coffee here last night as part of the coffee tour of Phoenix!!. The coffee was alright, not too acidic, but not the most flavorful coffee, but the main reason for the 4 star review is they are open late and they deliver! How awesome! The people who work there were all friendly. The ice cream looked good...will have to try in the future.",review,3gIfcQq5KxAegwCPXc83cQ,1,1,0 +GvwDppcJLm9lso9iS2hSIw,2010-10-03,0Hwi_7eL2yspFF962axPrg,4,"Pats is predictable. In the retarded amount of times that I have eaten there, i've never been served pizza i'm unhappy with. Best pizza slices in Arizona with good prices. Generally stopping by for slices is the easiest way to find good service with little to no wait. + +Not always the friendliest workers, but that doesn't make my pizza take longer or taste any different!",review,rRq4dTjGMY5DZpw8Yl_l-A,0,0,0 +H010pkpCls0M-mjIzSCVlQ,2012-07-03,M-u-OywHecFw-9Yahzenng,5,"Words cannot express how much I love the meat shop. I love it like a fat guy loves the place that sells him the best bacon he has ever had... because I am and it is. + +I'll be honest, it can be a bit intimidating walking in to the Meat Shop for the first time, if you aren't a chef and don't know your cuts, you may be afraid, but don't fear just ask for help because the staff are excellent! + +Whether beef, pork or lamb, the meat here is always the best quality, and knowing its locally raised and by people who care about what they are doing makes it even better. And price? I've never compared closely but I don't really think twice about the price here! + +Be warned! If you buy meat here, you will be ruined! You will never again be able to purchase that saltwater packed, antibiotic injected, hormonally treated, ammonia and pink good filled crap in your supermarket again! + +And that is a very, very good thing.",review,5o7opBKdsXz9p-SIQzcFWg,1,2,1 +IyldfEGfCVcEOb7SMlKs7Q,2010-01-12,wWwK4oB_3YJYHzOEUbMd9Q,5,"I LOL just thinking about some of the cast members and skits that I have seen at Jesterz. The first time I saw Jesterz, I was expecting it to be pretty awkward and honeslty didn't know what to expect. I was blown away how funny it got at times. Good clean funny. We went again soon after the first time but didn't go again for a good 2 years, we went back recently and was kinda worried as the crowd was not as big as past times. Even with a smaller crowd there were tons of LOL moments. Writing about it kinda makes me want to go back.",review,RknsoxpICgtuuv46uaTpyw,1,3,1 +6rijZ1qIjiq1Dgdy35iqxw,2009-01-10,tSagcL0Gj9Y-Rv2CNbGf6w,5,"What a great place to hike/ run/ shred! It's a great hike to shake up the routine with. A steep hike with bits of scrambling to a summit with amazing views. + +The only downside is there's mad crowds of people snaking their way up and down the hill. I feel for humanity sake I must pass on some words of advice. + +1) If you need to pass- Just say ""Excuse Me"" or ""On your left/right"" or, if those don't work, ""Can I pass?"" Don't frustrate yourself and huff and puff behind someone because they can't interpret your grunts. + +2) The railing sections. Yes, it's steep but if you see someone running down using the railing and trying to go fast- LET GO and let them pass. There's this thing called gravity and it will keep you firmly on this earth. Trust me you're not going to fly off into space nor topple over backwards. Then you can grab the railing and pull yourself up if that's what you need to do. + +3) I can't believe I have to mention this- DON'T FREAKIN' SMOKE on the trail. Apparently there are some who can't savor life's moments without puffing on a cigarette. But if I see you smoking as I hike this thing I will be forced to kick you in the shins. I can't help it it's what happens when I inhale second hand smoke. + +4) Your trash does not add to the ambiance. Pack out what you take in. This includes dog owners. Pick it up. Nothing will decompose because this is a desert. Just sayin' + +5) Finally, sometimes in life when we arrive to our destination and find the parking lot full one must consider finding other options. Yeah, you in the SUV waiting with the engine running for a spot at the nearest stall to the trail head. Park down the road and walk up. Ridiculous. + +Happy Hiking!",review,LTPOITOC6s_Txf4rbPI-5g,2,2,2 +T4ox3wUzFjWvyrjaTRoBbA,2011-06-12,24Rd6U5gGEHTyL9Ni3WeUw,5,"The BEST Japanese food in AZ! Guaranteed! When you are looking for original Japanese food, or the closest taste to Japan, this would be it! The sushi is soooo fresh and they always carry out items that are not available in other sushi place like uni or sweet little octopus that I love! Their ramen is also superb and if you come here for lunch, don't forget to check in their special of the day cause they offer a great price with superb taste and lots of variety for lunch!! Love this place so much!",review,59pVYStY0yKpRmODFIfDww,0,1,0 +RIRgqPezzlRVV4Y2G5TgoQ,2009-10-20,-qaK0Og9Y-kamHCEnA5zAA,4,"I met up with a girlfriend at borders. This Border's is across from the Scottsdale fashion square. The store is inviting, clean, bright, and new. They have a variety of books, and good sales. +Upstairs is the Seattle's best coffee cafe. I had a coupon for a free medium drink when you buy a bag of coffee beans. I was surprised how good my cafe mocha was, better than Starbucks. +note: If you have little kids, they do have story time on Mondays at 10:00 AM. Every Friday is Bean Friday in Seattle's Best Coffee cafe. Buy a bag of beans and receive a FREE medium beverage.",review,fNfLXX_ce2TQPrdHCqPzZQ,3,3,0 +q-qjZDKcBdDRuIUxj7b97g,2006-02-27,DTWJoQIVPjKVT4tGtOk_IA,3,"I was so looking forward to going to this restaurant. It has a nice view of a man-made pond, but the food is barely average. If the ambience wasn't so nice, it would get only 2 stars.",review,Sjp6EYsqzdlTvymER6wBfg,0,0,0 +iqLVYrsX25XUZqjRjvbYfg,2011-08-28,_T9a2jf6sOSgK9tosmbEog,5,"I'm a sucker for a yummy coconut cupcake and Tammie Coe has the best around as far as I've tasted, and I've eaten a lot of bad coconut cupcakes -- all in the name of research of course. Keep 'em coming, Tammie!",review,YotZjCLjwvkj8Nth59I7kw,0,0,0 +o-OV2LkJxpcCHmI_d4TZiQ,2009-07-16,cBuGiqccc8mE8x6f_JidHg,5,Great pizza and awesome must have guacamole pizza appitizer!!!!,review,SWQ473Py5zCDHU4IbxlE2Q,0,0,0 +nzfTy-pnGeEgQdRW2CUriA,2010-01-14,5D42dSu05inEQO7z_vRSGA,4,"I usually try to stay away from the Arizona Mills mall. The mall itself has gotten crappier by the minute. Now, since I work close by, I was forced to go back to venture to Paradise Bakery. I honestly did not get my hopes up. + +Since it was lunch time, it was not busy at all. Nothing is worse that being on your work lunch, starving, and standing in line. I opted for the Chicken Walnut Sandwich, with a cup of Tomato Soup. + +The sandwich was delicious and fresh. The bread was perfect as was the chicken walnut salad. You know...sometimes chicken salad can get really gross..slimey..salty...yucky. This one was perfect and the walnuts added a delicious crunch. + +On to the soup. First off, I L-O-V-E tomato soup. It is my favorite. Would almost consider taking a bath in it. Hehehe...well, ok maybe not. BUT this soup rocked my socks off. Perfectly creamy, with a hint of smoky flavor, a small drizzle of sour cream and a few crunchy tortilla strips. YUM. + +So, venture there to try the soup but scurry fast and take the food with you. Don't eat there. Take it somewhere, where you can have a moment alone with the soup. + +Finito.",review,G_6pOq1gA4jyJ3j8mjOyJw,4,2,1 +RS6V9TGTLQmBRuXsmWCOTg,2008-02-24,LMNMznPijRFtrRnJGu3-Kw,4,"Having a record store in the Memorial Union always made me nervous. Nearly everything in that building is specifically designed to rip students off and I didn't think that Hoodlums could possibly be an exception. + +Fortunately, that assumption was incorrect. Hoodlums had a diverse selection, awesome sales, and an incredibly knowledgeable staff. The went well beyond the pop charts and were always helpful. The atmosphere was nice, particularly once they moved into the basement. + +The store suffered smoke damage in a fire last autumn and the store is not going to re-open in the union. On their website, it states that it should reappear in the future in another location and I have my fingers crossed.",review,YMB29SPB8Z_a2be4O5gxOg,0,0,0 +3u7-xGwUKyGHkSexwBd9Wg,2010-11-15,ufk7Kc1oiqS_OEGoIPiAew,4,"You get a lot of food thats what I love! The guy was very very helpful although you know sometimes you just want a minute to think, that was noexisitant. The chicken is realld good, the ribs were better than okay, but not great. The beef was kinda salty. All in all though great bang for your buck!",review,84X86UrH-BlexZwZ2M0Y0Q,0,0,0 +TehSM5JrMRikSnjnnfulbw,2011-10-23,DupG_4UiqngASoPLTolnYA,2,"Okay...this was very surprising since it was just voted Best Southwestern food in PHX mag's Best of the Valley issue...and thus, it made us want to have a visit. + +I LOVE southwestern food...and I was very let down by this place. I feel like I should give it 3 stars...but as an ""A-OK"" rating, I just can't. If 3 stars were for ""OK food"" then I'd give it 3 stars. But truly, I have...I have had better. + +PHX Mag said to try the crab cakes, which we did, and they were delicious. Very happy with them and therefore expected the entrees to be just as great...but they weren't. : ( I had the salmon, which the waitress recommended and it was such a bummer. It had way too many conflicting tastes going on that didn't seem to blend at all. I lost my appetite after a few bites. My boyfriend had the shrimp tacos which were just...average. We were really disappointed. + +Again, the crab cake appetizer was great and the two margaritas were as well - the Tontorita and the Prickly Pear - both very, very yummy. + +But overall, if PHX Mag continues to recommend more lame-oid meals, I'm gonna have to start using it as wrapping paper instead of a go-to guide for great meals in this town.",review,-Gylxh4yUIsUbOeXyrqeHQ,0,0,1 +hyff2JyqQgf85MaJZslHCg,2012-02-23,r1NrDLqFDKmaxVy70VoeMA,1,"This place was horrible! I will never go back it was over priced and the best thing I ate was the corn bread you get before the meal. I had the chorizo stuffed tenderlion it was like chewing on a piece of rubber stuffed with soy. My girl freind had flavorless tacos with stale corn tortillas. three words it sucked, sucked, sucked!",review,pvdXGtu6sAPDJiCIhfVBDQ,0,1,1 +WNy1uzcmm_UHmTyR--o5IA,2012-07-10,uWOai947MVYIhiQGstsdhQ,5,"Just fantastic. I first went to Cornish Pasty in 05' a few months after they opened and fell in love immediately. Although a few things have changed over the years each one is usually an improvement and never a negative. + +If you are not familiar, a pasty is a traditional British coal miners food. A hearty filling wrapped in a pie crust and baked. Kind of a hand-held meat pie. Cornish Pasty Co. has taken this simple and traditional dish and meticulously perfected each component. Their crusts are some how simultaneously hearty and flaky. Although their is nothing delicate about their seasoning it is never out of balance and all of the ingredients are always quality. + +Beyond just mastering the finer details of pasty science, Cornish Pasty Co. has also branched off into wild and exotic flavors. It's no shocker that the British know Indian food and it shows with the tika masala and the lamb vindaloo pasties. What is shocking is the refinement of the Greek and Italian inspired pasties. Perhaps my favorite pasty, from the cuisine most elusive to the British, is the Carne Avadado. This is a Mexican inspired pasty that will satisfy even the most snobby Las Cruses/El Paso foodie. If you have ever talked Mexican food with one you will know just what I mean. + +I have eaten nearly every item on the menu and not a one disappoints. It took me ages to get past the pasties and start ordering soups and salads. Now that I have had the spinach, mushroom, walnut soup, it is hart to save room for my old favorites. + +Although the mine shaft inspired interior is dark and cramped I have never felt uncomfortable there. The sound system is usually bumping classic rock and the employees are pierced and tattooed well beyond your typical wait staff, but everyone is friendly and service is typically good. + +If I have to list a negative the only one I can think of is the food is consistently just a little better at the University location than the Dobson one. No clue why, but everyone I've talk to seems to agree, the Tempe store has the edge on quality. + +After you add a respectable selection of beers the only reason you won't be here every night is your waist line.",review,ehhIzy0QaQ9B-V4VVMgYmQ,0,1,0 +wH9WtaTlrRawH_IpK90RPg,2010-05-04,e-QDXrRuDBSZOnzGLuAjOw,4,"With a name like ""The Lodge"", I thought I was going to an old dirty restaurant with some of the neighborhood locals. We went here after a soccer game two weeks ago, and I have to say, I thought I was going to be disappointed. I expected greasy food, and grimy scenery. This was not the case, although the scenery was mildly disturbing as most of the decor included some dearly departed wildlife. I had a great sandwich I believe called the healthy choice, that was supposedly was healthy? It came on this great thick toasted buttery whole grain bread, egg whites, hollindase sauce, tomato and avocado. It was one of the best sandwiches I have ever had. I don't think it was a calorie saver by any means but I am sure it was just the idea it was made with healthier ingredients. For a lodge, this was a terrific restaurant, and yes this is a compliment by far, joking aside, as you remember my thoughts of what a lodge was all about. This is nothing like the local VFW. The only other scary part was this jerk at the bar decided to take his shirt off, and throw it across the room. And ladies, no, this was definitely not a pretty sight nor was it funny. They need to enforce the shirt and shoes required law here otherwise it will earn a lodgey reputation from me. Luckily, as this ghastly sight appeared, we quickly disappeared on our way home.",review,DFQ95g3s1oi-VcDZEO2TOA,0,0,0 +WorzvsB28dlSnCyuNslSdA,2012-04-24,X-hMQO91T8HvUS0fQFAYeQ,3,"This goodwill is Alright, I have been to better. Their selection is okay, cleanliness is okay and organization is okay. All goodwill's prices are the same, as far as I know. The staff is helpful and I never have trouble finding somebody if I need help.",review,Yq-pv-frxMeQT9zWtdgUEA,2,3,1 +Exx5ffvnmk4MrTyCkPRuug,2011-09-28,YymSWhlV_Vb9p8b3puF4gA,4,"Los Olivos is a quiet resturaunt in the Old Scottsdale city near the SF Giants spring training site. That is how I happened on this wonderful family style eatery. Arrived to the area to meet a Good HS friend and was way early. Used the Yelp app on my phone and soon I was here! Seated with out any wait. The place was just picking up since the ball game was not to far off and it was Dinner time as well. Service was very efficient and pleasant. I'm partial to Chicken what ever in these Mexican style resturaunts, and had a 'Chimi'. Arrived shortly and enjoyed it emencely. +I would recomend Los Olivos to anyone. Looks as if they can handle most any size group as well! Everything is reasonably priced as well. Enjoy! Holla!",review,_rcvKZqCCzOcNjLf_V5y_A,0,1,0 +Tt6DYs0TyERWHWW5xiRL_A,2011-03-17,BcHzjjfUtm5lTS6hV4WiTA,4,"As I'm always on the chase for some of the best spicy tuna rolls, I would say Yen's is up there in my top 5. + +I haven't been in for happy hour yet, but I hear it is fantastic! + +Word to the wise though...do not get the dessert that looks like a pyramid. I can't even remember what it is called. But it claims to have a caramel center...um, not so much! + +If you can avoid the desserts, then this is a great place for sushi and even specialty rolls. I haven't had any trouble with it being crowded or slow service like some reviews have mentioned. But I've only been for lunch and then another time late at night.",review,vUM21g3cPEdSlI89oDttgw,0,0,0 +oFW8Fjszgsmy39a5hUnoBQ,2012-11-19,YJNXlRUHB8z-GGD0vOJhGg,5,The castle is what drew us here. It's just the front of a castle with a reading nook in the bottom of the tower. The 3 year old was impressed as soon as he saw it. There is also a play area with big activity walls. It was a little hard for my son to comprehend being quiet while playing. Getting to the library was confusing with the GPS. Just follow the signs and park in the garage at the end to the left when you pull in. Well worth a one time visit.,review,yzwPJdn6yd2ccZqfy4LhUA,0,0,0 +YKOvlBNkF4KpUP9q7x862w,2010-03-15,RrO_L0kXi57Teoxa7g6KYg,4,"went for lunch today with my girlfriend. i had the chicken tacos and she had the mahi tacos. you get three little tacos per order. we switched one for one. the chicken was freakin great. i had a small chicken bone and some cartilidge in mine and i still loved it. seasoned well and dressed well with an adobo sauce, maybe. it had some green cabbage, some sliced fresno peppers and what i think was manchego. i loved it. the girl had fried mahi tacos (they offered the option of grilled rather than fried). it was good, had some remoulade and the same cabbage and fresnos on it. it was all good. the service, the food, the atmosphere, and the whole package. go here, eat here. be happy. quality over quantity. always. well done mission staff, well done",review,jPl_fIm16CLiV7M6yYigSQ,0,0,0 +zSzE4rW9FE3fGqiEzZ91Vw,2012-07-26,nSDSUbynbyePy-rKBh1wYg,4,A little pricey for the portions but the flavors are outstanding. Homemade horchata is like my nana used to make.,review,LofguX32B2ewP4FUay2yNQ,0,0,0 +6nseTZb6WrGWcithRThfag,2011-06-11,y00peMvECCREKVJnNSXh8A,1,This place is over priced and the service is horrible. I went there with my feiends and the server was very rude and degrading!,review,rGaZmAwROLkDFo7lR9-Dzg,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-01-05,PL3HnzeZAu4CD8ibLCAlpQ,3,"Average airport. + +I wish gate Marques listed which zone was boarding. There were three airplanes loading at the same time and it was near impossible to tell which gate was loading which zone. We just waited a few minutes and rolled the dice that our zone was loading.",review,lxWwi3-EW9meZ_vOAP9JoQ,0,0,0 +Sy-hmzSH1OmWpHmAfZtxRA,2009-06-22,Zb6LDlO3s9gjsNRR6dbhkA,4,"As a vegetarian and sporadic health nut, I just love TJ's. They have a nice array of inexpensive fresh produce, including my beloved broccolini, for 40% of what Safeway charges. Huge selection of frozen veggie-friendly dinners, good for my on-the-go household. Greek yogurt, cheap. Nice beer selection with lots of cheapo wine. I try to buy all my supplements here too, as they seem to be a lot less expensive. Yes, I'm all about saving cash on groceries and whatnot. + +The downside? It's not one-stop-shopping; a trip always requires supplementation with another trip to a ""regular"" grocery store. This particular TJ's is teeny-tiny-small, and always chock-full of obnoxious and/or oblivious people who wield carts like weapons. My favorite is the woman who thinks it's an awesome time to teach little Jimmy how to push his own wee cart and comparison shop, and lets the little bastard cruise all over the store willy-nilly. I'm all for giving your kid responsibility, but a) you still have to, you know, keep an eye on the kid and b) a super-crowded claustrophobic nightmare like this place after work is not, repeat, NOT the time to do so.",review,UoBfwbXaixelZBghbJ2cSg,1,2,2 +CPjEow8UPIg1GfDrzmwpYw,2011-12-23,8smvaPjChMFtk9qZ2PYU9g,5,"Dave at Dave's Ashtanga is the best yoga teacher. He is kind, considerate, patient and a very nice person. He will take the time to show you a yoga move or asana. He is very knowledgeable about different subjects. What I like best is once he said, ""here you can do nothing wrong.""",review,ZoU0sTLTa4wVVndrInbmTg,0,2,0 +UKgSs_SJzW9fu4CwhIV1yA,2011-08-16,9bwjQQ7aLX4Evv_wsZyXzA,3,"The hotel is a throw back in time - friendly people and nice simple resort. Love the free shuttle in the local area. The restaurant though is not bad, but the service can definitely be improved especially at breakfast time.",review,v0wqd0Ub6mu_5rZuar9gug,0,0,0 +D0IB17N66FiyYDCzTlAI4A,2012-11-05,V9GeZGVIgRrP9bYKyDjNaw,4,"This place shares with a Circle K. +Hate to say it, but get your 44oz. drink in Circle K for 86 cents to go with your chicken. + +But I'm here just to deliver my Inside Skinny: +Tuesday has a leg n thigh for 99 CENTS, mild or spicy! +If you've had issues with freshness, go on a Tuesday, everyone knows about this deal and they're making lots of chicken all the time. LOAD UP!!! I get 5 orders and make it last a few days. + +MY PIG-OUT STUNT: +Take the layer of skin from the top of a thigh and place on a plate crunchy side down, then peel off a chunk of chicken from the piece and place it on top of the skin. Apply a really generous amount of Frank's Red Hot or Trappey's Red Devil cayenne sauce. Fold skin like a taco and shove the whole thing in your mouth!!!! + +No one can top this deal. +Church's tried but they just couldn't hang. +Sometimes the Popeye's thighs are a little small, but hey for 99 cents, what a deal! +Attire: Formal (Jacket Required) +HAHAHAHA!!! I just had to.",review,zGz5NI4sscO4_6YYH-qVtA,1,1,0 +EWnSPExh_T5zTv6oMJOC5g,2009-03-13,lw6YMo7l1csnQx43z9lqpw,5,"Just a quick update.... Took my parents here for lunch today, and now I have 2 more converts! If anyone is still sleeping on this place, shame on you; you're really missing out. Why? DELICIOUS food made from QUALITY ingredients and FRESHLY prepared hot to order. Good stuff all around!",review,UuwjD6MZf6Z6QlNphiXRjA,2,3,1 +DHk8is9rvfnATsW1AudWQg,2011-04-09,z7cb3QxeN5fgpwKaDIFnDg,5,I love this place!!!!fun poker 3 days a week!!great food!!!great prices!!!even better people!!!!,review,x7QYSYyc_x63-61Z9SB8jA,0,2,0 +1P8Yy8s5h2TK_SbweAz4TQ,2011-11-08,86Io8HRS_9cBUJyziXhSRQ,4,"I had just been to the Chandler Deseret location and didn't realize the there was a second store nearby. This too is wonderful bookstore (though smaller then Chandler) where you can purchase both Christian and LDS items. + +The only drawback to this location is there is no Lion House Pantry. + +Being a non-Mormon, I've found the staff both friendly and helpful and have never been proselytized. + +Since I do have several Mormon friends, I've found the Deseret Bookstore a good place to go to purchase hard to find Holiday gifts. + +Enjoy!",review,1BW2HC851fJKPfJeQxjkTA,0,0,1 +qfFSS0A5OXUkCbTeC1fYLw,2012-10-21,tBJdg-VSk-1lYI9OWaDg9g,2,"Pros: +- Calm/Quiet atmosphere +- Clean +- Amenities are good *Hot tub outdoors and inside, large steam room & sauna. Nice sitting areas both outside and inside. +- Products (Shampoo, conditioner & body wash were okay.) + +Cons: +- EXPENSIVE! +- Beware of the 20%gratuity (i don't know who's idea this was but, i was a little offended at the presumptive 20% tip. I tip well when deserved but i like tipping on my own terms.) +- Spa hostess at the front desk/checking in was snooty +- 50 min massages + +I went in for Aji (swedish) 50 min massage, the massage therapist was personable and was attentive to what I asked her to focus on. I know the time limit was not her fault but 50 mins for a massage at these prices made me feel really ripped off. (i had a Groupon to offset the ridiculous cost but even that didn't make me feel better about the cost.) I don't know who thinks a 50 min massage is enough.......but come on an extra 10 mins wouldn't kill them! + +All in all i would say skip it, it's expensive and for less money you can get a 60 min or 90 min and feel great because you didn't over pay.",review,MfbH-4cBh0EXWd7IKEuEhg,0,1,0 +DBoebGeuz91QAP3tSFYs6w,2011-04-24,3nGgHWCRRa-9M4yD48ZniQ,4,"Ok it's a chain, so there's that... But I'm like Bro'man and we luv us a good sammich! And Capriotti's didn't disappoint there. + +I went at an odd time and had the place to myself, it was quite clean and instead of just hanging out BS'ing the people were busy taking care of the place. + +So the menu - short and sweet, that's how I like it. Unlike a place like the friggin Cheezecake Crapory with it's 80,000 menu items, none of them done well, Capriotti's keeps it under control and turns out a tasty sammy. + +I had the turkey sub with spicy peppers, mmm mmmm. I love the fresh roasted turkey like that, and the ""just like grandma made"" pickles. Well not like either of my grandma's made, but someone's grandma... The veggies passed the fresh & crispy test with flying colors and the sub roll was perfectly soft and chewy. + +Ya it's slightly on the higher end fast sandwich price range, but its quality and pretty filling. I made 2 meals out of the 9"", with the meal deal right around $10. + +I have a Groupon for the place and can't wait to take my good friend and get him hooked. Next victim on my list: the Bobbie!!",review,sewG1yLHBNsP2dYJH3A86w,1,1,2 +eIxSLxzIlfExI6vgAbn2JA,2010-01-11,rsp19tEZR_B3kzxicsijkQ,4,"I am always on the prowl for a good burger so when I heard there was a new burger place in Tempe I knew I had to try it out. + +The boyfriend and I went to Lobby's on a Friday night. It was not busy but the location doesn't really lend itself to busy. So we were able to walk right in and order. It's an order at the counter and grab a seat kinda place. We both ordered cheeseburgers and got an order of fries to share. I liked that the burgers were not pre-made frozen patties. They threw down two hunks of beef on the grill. + +The burgers were tasty, a nice size - not too big, not too small - and the fixin's were fresh. So was the bun. +The fries were crinkle cut but they were crispy and good. + +The atmosphere was fine, good for a quick sit-down and the staff was friendly. + +I hope they can survive in this location because they are worth a repeat visit for sure.",review,Pv7DGHzZ-uqIUdOsqPpsVg,2,5,0 +IVc23uY-36WUNYoIbz42Fg,2011-08-18,X3YC_sUcSveCVOjamyDWyQ,4,great salads and burgers!,review,xZvRLPJ1ixhFVomkXSfXAw,1,3,0 +hfl62LX14YqNpG0g0Tj6_Q,2010-09-26,xNz9-XB-2Hy6rtPrQXkNBw,5,"Fuego Bistro is one of my new favorites! A couple people have recommended it to me, so my boyfriend and I decided to try it for restaurant week. + +We arrived about 15 minutes before our reservation to have a drink on the patio. The staff was super welcoming and friendly. Matt enjoyed a mai tai and I had a red sangria - both very refreshing. Our table was ready right on time and we had an awesome waitress who gave great suggestions on ordering... there were so many good looking options on their restaurant week menu. We're sharers, so we ordered with that in mind. + +Drinks: +We got the pomegranate mojito (very refreshing) and a peach-blood orange mojito (sweet, but very good) + +Starters: +Signature empanadas: Tasty. The focus was the meat, I would have preferred more vegetables inside. +Sauteed prawns: The star here were the sauces - delicious! + +Entrees: +Cola Braised Short Ribs: AMAZING! Some of the best we've ever had. The short ribs were very tender and not fatty at all. The flavor was so good! +Pernil Asado (shredded pork): So delicious!! I made little tacos with their fresh corn tortillas. + +Sides: +Green chili cornbread casserole: A little drier than I had imagined, but great flavor. +Maple chiliglazed carrots: The glaze didn't really stand out to me, but good as far as baby carrots go. +Jalapeno creamed corn: I was pleasantly surprised - really enjoyed this one! +Chipotle cheddar mashed potatoes: A great side with the short rib. + +Dessert: (By this point, we knew we'd need to be rolled out of the restaurant, but we HAD to have dessert since it was part of restaurant week). +Chocolate chip bread pudding: Really good chocolate chip bread with scoops of malted chocolate crisp ice cream. This was a lot of food after that meal, but I savored the bites I had. The ice cream was excellent! +Banana burrito: exactly what you'd picture with scoops of the same icecream - delicious! + +I can't wait to go back to Fuego and tell my friends about it. Great service, charming atmosphere, and excellent dishes.... Fuego is a winner!",review,oy6fdscGSXY2gzRqF9pZxg,4,3,2 +YWDqj3nlQ6A13MJbuRvYDw,2008-12-13,ZVYiRNUem8TSfBIfoSYJNg,5,"Never thought I'd review a supermarket, but since it's tough times for alot of people out there, I'd like to share my 2 cents.. + +First of all, you don't need a card. The deals are for everyone and it makes it hassle-free during checkout. Now, about the deals ~ I find that Albertsons has the lowest prices and best deals and you can find them amonst any product you're looking for. It's WAY cheaper than Safeway for sure. + +This is what i found yesterday: 88 cents for 2 (yes two!) snicker bars or other comparable chocolate bars, $1 for a bag of lifesavor hard candies, and $14.99 for a 24 bottle case of coors light. They also had 69 cent bags of frozen veggies that people were buying like crazy. Also, this location has really good cuts of meat. I'm Korean and was so excited that they had short ribs cut perfectly for Kalbi jjim (korean braised shortribs), and for $3.99 a pound, it was quite a deal!",review,hYph1O9SCO3B5tFmqzdOSA,2,3,2 +QkyN2vqQidQhotvOtPIrkw,2012-03-04,83cmKpSCdvkUepzdUIMORw,2,"We tried this out last night. We won't be back. + +There is no indication when you walk in that it's a seat-yourself restaurant. We stood like idiots at the hostess area until somone asked us if we needed something. + +We sat ourselves, and then sat and sat and sat because there was no server assigned to us. Perhaps that is a reason to seat patrons, so a server knows they've arrived? + +Finally, the hostess asked us if anyone had helped us, and she was very polite and took our order. + +Our drinks came out fairly quickly, but then we waited and waited for our food. This would have been understandable if the placed had been packed, but it wasn't. It was maybe 75% full (7:30 on Saturday) and there seemed to be plenty of servers. There was one large party on the patio. + +I ordered the vegetarian salad (can't remember what it was called) that advertised avocado, jicama, beans, and other yummy things. When it arrived, there was a tiny little mushy sliver of avocado perched on top, and no more to be found. It was as if someone scraped up the dregs of an avocado from the rind of an empty one and flung it on my salad. It would have been more forgiveable if they had just forgotten it altogether. Also, the white beans were undercooked. + +The pizzas were good. I ordered the local organic vegetable one without cheese, and it came loaded with summer squash, roasted carrots, olives (local? Hmm...), leeks, roasted onions, and the crust was thin and crispy. My husband also enjoyed his pizza. + +I should actually grant an additional half star to the hostess/waitress, who comped my salad when I complained about it. I was willing to pay for it, but she offered to take it off the bill. + +The final nail in the coffin was perhaps not the fault of the restaurant, but the large party out on the patio had 3-4 elementary-age kids literally running laps through the restaurant for the first 15-20 minutes we were there. If ignorant parents are content to let their hellions ruin other diners' experiences, then I'm afraid it's left to the restaruant to politely and discreetely ask the parents to please reign them in. No such luck. + +Anyway, this place has some things to work on. Fortunately for us, there are too many other great businesses nearby for us to give it a second chance.",review,HvaVgP0S0dFaCbBDIQIkag,0,1,1 +m_rEr3Vg1-f9Dg-Nag4FWg,2010-09-12,tAu-WjBRdeiiddLDDFOukQ,4,"I tried El Pollo Supremo based on a recommendation from my professor. I always though he was a smart man, but after eating here I know it. + +For under $5 you get chicken that is juicy and flavorful and a plateful of tasty sides and condiments. Wrap it all up in one of the piping hot tortillas that comes with your meal and enjoy. + + Another testament to the quality of the food is the fact that on my most recent visit no fewer than three police officers stopped in for lunch. You don't get that kind of patronage unless you are everything that El Pollo Supremo is: cheap, fast, friendly, and delicious.",review,WUG7SjK9WtfU-3Y2Ua-XJg,0,0,0 +1sNa5oW9ZYX8MbMFkx9LzQ,2012-08-09,vMvZp_yBFtjUVAiiO1TUuQ,5,"Stopped back in here today for lunch with Arlin B., Robyn N. & Mike C. They're still delivering the same upscale Asian Buffet experience here as before, including atmosphere, food & table service that are just tops so it's ""Woohoo"" again for this excellent restaurant!! :-)) + +(See previous review for more details. Weekday Lunch Buffet is still $11.99/$10.79 Sr.)",review,ikm0UCahtK34LbLCEw4YTw,3,1,1 +VSPuvNSDUvlTl670lVAkkw,2012-10-28,fWDWpoGQGmKGqwsx2udStg,2,"I was so disappointed. After drooling over these pictures and rave reviews for weeks I finally drove the ten miles to get my fantasy pizza. Imagine my surprise when they handed me this tiny box weighing almost nothing. I actually asked the waitress if she gave me the right order. Funny, she asked me where i'd heard about the place and I told her the internet, she said ""Yawp (sic) ?..yeah most of those are family or friends, we got 5 stars or somethin'."" That explains ALOT! +Gee, good thing me and my husband weren't really hungry, twenty bucks for a snack? Not bad quality but tiny quantity for price. Sauce is kinda raw, undertaste of wine and exactly two nickel sized slivers of garlic sausage per slice. Cheese is good quality. I see why the place was empty at 7pm on a Saturday. If your single or on a date and don't mind high prices go for it.",review,Rtep3VNYoTnU64w3n3iDgw,2,2,1 +lKl_FUDVDwfJcC_jmzOjlg,2012-01-12,-ODXOtgNjEHWwUvRHRp1iQ,5,"My daughter loves this place, unfortunately they ran out of money and are closing currently.",review,bZMMPGHmxkkJjueTFBueIg,0,0,0 +Lklz5ClavxSzqnBrJQsJcQ,2011-07-17,hSW2HPone8i8vO4uvNqBiw,1,"DON'T GET TIFFANY UNLESS YOU WANT A SPEEDY EXPERIENCE +Pretty Nail tale with Tiffany- +My 10 year old first mani/pedi +4:35 water and feet in chair only 13 minutes and painting toes. Prepped and painted fingernails from the chair- in 20 minutes. 35 minutes in all. Told owner I was unhappy and she said that a kid mani/pedii was 35 minutes then later 35 to 45 minutes. Tiffany never let it dry between coats so when she sat her under the light she told her only 5 more minutes and I stopped her. She said only the under coats will be wet and the top will be dry. I told her Really because you never even let it dry between coats. She said not 4 coat. Base 2 color and top is 4 ... well top and base dry fast she said...Owner said"" fast or slow it doesn't matter as long as the polish looks good and it looks good."" I didn't tip her on purpose...not because I'm poor- I got poor service. I would expect this for a color change but not a spa pedicure/manicure. Very disappointed. You'd think the owners would realize that all the other patrons saw her take advantage of us. Get anyone but Tiffany unless you want a quick job!",review,_Uq8LfC6X3UJoTurlbiUrA,0,1,0 +bF7KQ6AQK5rBS7aOFKtlWg,2009-11-09,PMqI44OjF6KCNe7jdpufYg,2,"I've always been a fan of the Dilly Bird, it's just a delicious sandwich... I can't speak for all locations but the one in Mesa off of Southern was a real disappointment the other night. I waited almost 30 minutes for a cold turkey sandwich! After working all day and sitting in traffic for an hour the last thing I want to do is sit in a fast food joint for that long, especially when all the ""kids"" behind the counter are messing around talking about their homework and girlfriends or boyfriends and not working. I have been going to this location for a dilly bird for longer than I can remember, but unfortunately I will not be returning any time soon unless someone can guarantee I wont have to sit and listen to teenagers for a half hour while I wait for a cold sandwich.",review,wRRVIAIo8AbdayfvWky7jg,2,2,2 +-h1WpfgqAmJcJDqyXXJ2og,2011-08-21,ssBHkN2qVQ0SMmeUK4dksQ,5,"I had a great burger experience here and intend to return the next time I am craving a Fuddburger. I also got to introduce a friend to Fuddrucker's for the first time, so it was a cherry-poppin' adventure. Not only are the burgers here tasty, but I love the fact that you get to pick and choose the toppings from their self-serve produce and condiment bars. One of my favorite things on french fries is Heinz 57 sauce and Fuddrucker's is truly awesome for including that amongst its vast condiment selection. + +As a professed condiment whore, I was thrilled to discover a new flavor of Tabasco I have never encountered before... and I like to think I really know my Tabasco products, having lived in Louisiana for years. This Fuddruckers special-orders the Sweet & Spicy variety of Tabasco which is not only great on a burger, but would work as an egg-roll dipping sauce. Knowing that I must have it for home use, my dining partner graciously approached the manager who arranged to allow him to purchase a bottle. This was just one example of how efficient, helpful, and friendly the staff here are. Next visit, I will demand to meet the one who refers to himself only as ""Mr. Crusty Baker"" (see photos). + +The restaurant also has a lot of shiny fun decor evoking shameless Americana and Route 66 roadside culture. The bright colors and the overindulgence in fast food goodness contributes to a heightened state of arousal that can only be described as a ""Burger Party Contact High"". You can just feel the burger love... the afterglow punctuated by the difficult click of the seat belt as you strap in for a ride back to a somber, less-gluttonous reality.",review,0Ke0iSAPYi8hUVxLocAlYQ,1,1,1 +9zjSYbbWV5WHt-Jl7vE1Vw,2010-05-30,_5P5l5cIa89Ayb44FAvnzQ,4,"I loved this place. It was a little pricey but all the stuff in it had some kind of paperwork. The paperwork explained about the materials used. I thought the lady who worked there was nice. Don't skip go in---even if you don't buy you can soak up a little astmosphere,",review,iDsAP_iWCSO3HRx5xVzy4g,0,0,0 +DlCtdbceo4YNSI53cCL2lg,2011-05-11,Dv3qie5gUN6R0_Dd2-QtIg,3,"The restaurant reminds me of a quaint little countryside café. It gives me that homey feeling like a mom and pop store instead of the chain restaurant that it is. I like how whatever entrée you order from the menu; you can get a complete meal from it. Each entrée comes with a drink, bread, soup or salad, and their spumoni ice cream for dessert. However, if you want ""Italian"" food, you're not going to get it here. It's a very Americanized version of Italian food. They do have all the classics: the pastas, lasagnas, etc. I've been here several times and tried a few of their dishes. + +Spaghetti Vesuvius: cute name to start off. Spicy chicken sausage and meatballs with mushroom. I didn't think it was that spicy, but it was extra salty. It's a very flavorful dish, however the individual tastes are all mushed together. The noodles are a bit tough for me; perhaps undercooked. However some people like it a bit tough. + +Gourmet Jumbo Crab Ravioli: There's not a lot of ravioli pieces in the dish. The edges that were not covered in the pesto alfredo sauce was dry. I did like that they used fresh crab meat in the ravioli. The creamy sauce was not bad and it wasn't too overpowering in my mouth. It was able to taste pesto sauce and still enjoy the texture of the crab. + +Baked Lasagna: This is the best of the 3 I've had. It has 4 kinds of cheese, ground beef, and pork. First of all they gave you a huge piece of lasagna. Then they topped it with mounds of marinara sauce. You may have to remove some of the sauce if it's too much for you. The noodles were cooked tender enough for my taste, but it was still able to hold its shape. And the meat was blended well with all the flavors of the dish. + +I do like the cute little serving they have of the spumoni ice cream. It's a great blend of pistachio, chocolate and strawberry. And it's just the right amount after a large meal. Maybe one of these days I'll go back just to try their chocolate desserts. + +If you like an American spin on Italian food, then you would like this place. It's a convenient place to eat after shopping at the mall and their quick service is great if you're crunched for time. But the food is just average and not that special.",review,HpKLR1mrb634jCnTXQr3aA,0,0,0 +yJMLD-6AggZNdC-GonVBsA,2011-02-03,f0r0hCMp_aSekTY_6gX1ZQ,5,"True fine dining has come to the Valley. + +If you are looking to have a special dinner, this is the place. And plan on spending 3 hours as it is a true culinary experience. + +The tasting menu consists of options of 4, 5, or 6 courses, and they can be paired with wine, if you like. This is the way to go and even for tasting portions, they are not micro-mini. + +The choices for each course are extensive. At least 6-10 each. AND, the coolest part, is that you won't find any ingredient repeated twice. NONE. Yes you might find tomatoes in the same night, but they won't be the same type. That's not easy to pull off, considering the variety of the menu. + +But, while you are between courses, Chef Binkley will send out numerous amuse bouche - which, if you don't know, are tiny little one bit or one gulp appetizers like, mini sliders the size of a half dollar, or pancetta mousse in a shot glass. + +We ate there for my ex-H's bday, and had 8 amuse bouche. Also, if you let them know in advance you are there for a special occasion, you will get custom printed menus for everyone at the table mentioning the special event. + +The ONLY drawback, is the atmosphere. It definitely doesn't fit the quality and beauty of the food. But, I still give it a 5, as the food is superb. + +If you are a true foodie GO. I was excited the whole meal, as I couldn't wait to see what came out next! If you are a meat and potatoes type with an uneducated palate, save your time and money, since you won't appreciate the menu at all.",review,N69-RgMXqRaZbIBbx2eH2w,2,1,1 +vxlYflN5Uuy83wufcw1BEw,2007-03-08,fao0nmygbjSif-ejbmfOpg,4,They had what i was looking for ... it wasn't easy to find but after asking 3 people I eventually found it. A folding table and shelving. The place is typically big and laid out like most other home depots. Know what to expect when you go and you won't be disappointed but if you want a lot of personal service stick to a local hardware store.,review,kAHUx9Z-vwaahW5cpoUg0w,0,1,0 +-5rFC4EVrT-v8g1PSEf6Xg,2010-08-22,fLtvPOF2AOUi86MrGG0GJQ,4,Worth the drive and more!! This absolute gem in the west valley is exactly what we need to have and support. a family owned business that is TOP NOTCH!! The food was exquisite and the service responsive and attentive. I am a HUGE fan.,review,6eO3LQ6dRXuz0g_F5GgAFA,0,1,0 +fm4X0SV2Kofj-57ZfHiZ_A,2012-10-30,m9nIJRGwrKDqutT3OWEMkQ,5,"I've been coming here for several years. Can't find my first review. I guess it was too long ago. So here comes another one. +The woman who runs the place. I've forgotten her name. She is one of the most gracious, friendly, and kind people you can ever hope to meet. +When I go there, sometimes with and some times without my wife, I alway order the small sausage sandwich. With ajvar and onion, this can't be beat no matter how you my search around. The sausages, cevap, are delicious and what's unusual is that the bread is almost as good as the sausages. Simply delicious from all points of view. They make their own sausages and their own bread from scratch. In fact they make everything from scratch right there in the restaurant. Their soups are do die for. +A very favorite of ours. +I give this a 5 star because in the Bosnian/Jugoslavian cuisine catagory, this can't be beaten. +One more thing worth mentioning: her Baklava is top of the mark. It's not as sweet as what you find in other restaurants. +Everything is simply top shelf.",review,8p8HZNmrkUBtMx_vmW9dNQ,0,0,0 +j0Uc-GuOe-x9_N_IK1KPpA,2011-06-17,pbn7yQzhh_A3-1LhMvTERg,5,"Try the Chicken Parmesan! It's the best I've ever had? Quite possibly. When I worked in that area we would hit it for lunch once a week. Donna is awesome in a take-no-shit-but-still-take-care-of-you kind of way. She calls it as she sees it and I think that's great. By your third visit she will most likely know what you are gunna order. +I can't comment on the rest of the menu as I've only ordered the Chicken Parm. Yeah, it's that good.",review,00IVoTJHcLi9EgDQsFJAiQ,0,0,0 +gLSU0UZ3LYhQoUUtIfHrmg,2009-09-23,cO408In7U9XrCOdnSZb23A,3,I'm rather undecided about this place. The hygienists are great and the staff is all very nice and accommodating. Every time I have to have a tooth filled (yes I'm totally that person) I feel like I have to go back because something is wrong. For example not being able to floss between any of the filled teeth because the filling hasn't been filed down correctly. I don't feel like the dentist really listens to you either. When I felt like I had a problem with a tooth he told me it was fine and the next time I went back he found a huge cavity in that same tooth and told me I might need a root canal on it because it was so big. What a pain.,review,davqcAbwEHCL35nRFt-3rg,0,1,0 +LmVcYycG_VI3S6RNgqiriw,2011-09-11,AWzeDIiFidF-UumZjCH2fA,4,This spicy chicken soup is a must have when sick. Always makes me feel better when my hubby brings it home for me.,review,ITBs8txD0Zu-YuxXCGqokA,0,1,0 +9Y3aQAVITkEJYe5vLZr13w,2011-05-02,zz62WFb6v0k3cs8ygSu1FA,3,"I am glad that I remembered this place for brunch this past Saturday because it was good food and I love the atmosphere in the area as well. I went with my BF and we put our name in, got some coffee and was seated quicker than the time the originally gave us, which is great in my book. + +I had the breakfast burrito with chorizo. I wasnt a fan of it, it was good but not GREAT. The chorizo really lacked flavor and punch...maybe I am use to the chorizo I get back home. My bf had pancakes with ice cream on top of it and it looked amazing and he loved it. + +I would come back and probably will to try some of there other things. This is not a place to go to thinking you will get in and out quick, there are almost always people waiting but the walk around Old Town Scottsdale is worth it.",review,100Df1wcVrl9rJgB7EG6xw,1,2,0 +V1nEpIRmEa1768oj_tuxeQ,2010-01-02,yPegylNtYQ-jZSFXlAD4Qg,4,"Went for dinner before a Suns game on a Tuesday, got there at 5 and got right in, but the place filled up fast after us. The atmosphere is awesome, a little brick house split into small rooms with a huge patio dining area. The service was quality over all. Very attentive at the beginning, forgot about us throughout the meal but showed up again at the check/dessert time. We had the Burrata with proscuitto for an app., which was awesome, melt in your mouth, almost sweet cheese, and the proscuitto was like pork butter, lovely. The pizzas were good but not what i expected when i hear thin crust. The ingredients were definately quality but the crust was a little fluffy and chewy for my taste. Bianco still tops the charts on pizza, but for the lack of wait, and quality of food, ambiance, and service i would definately recommend Cibo. I plan on going back to try some more selections.",review,IcIV2t78tbDehsPUsz2TGQ,0,0,0 +O48Mv1VkQYZrDkR6LhnY4g,2010-07-24,qiBYXuHbIl21tAMXsseW2A,1,"I parked in the Parking Garage, got my parking ticket validated, and still owed money for parking. The parking validation was worth $3.00. The charge for parking was $5.00 with $2.00 credit for the validation (not the $3.00 I was promised). I paid the remaining $3.00 charge, but then, the machine wouldn't give me a receipt. + +I am never going back to this location. It is off my radar from now on.",review,rsyXwlLjx6S-6Hni1s9ipw,0,1,1 +yQONzVpX-DEpGSuKMIov6A,2011-03-14,r14bMoxOpzQGPI9akQY9nA,3,"I've returned to this place 2 more times after my last review. Wait service was still inconsistent, especially with the dimwitted waitress. + +The restaurant was plagued with ""out of foods"" often. A few months ago, the dimwitted waitress didn't tell us the appetizer was out till the end when I initiated the inquiry. Apparently she has already removed the ""out"" item from our bill. + +The wait service for my last meal with a group of friends was better at 6:30 PM on a Saturday. We've got service from 3 different wait staffs. They were serving everybody else too. Not just us. + +The food came out fast and the taste was right on this time. They were out of egg plant. We didn't tell them that 99 Ranch Supermarket was 2 doors down. + +So diners, I still consider this place a good choice for authentic foods. I will give 3.5 stars this time.",review,aJGbFSkf6zCBbadpcD5uow,0,0,0 +er20L6Wzviiin8OS9FqFmg,2009-09-29,PhPZDfvPLnwzWD-Eyw2MpQ,3,"Where I live in Tempe, I can walk to the end of my street, hop on an Orbit which takes me to the main Bus Depot or can drop me off closer to the Light Rail stop off of Mill Ave. Not bad, right? + +I actually am enjoying the clustering of a real Bus Depot not anywhere near a residential area with plenty of security, lighting, public enough space in an easily accessible location in Tempe. I actually feel safe hanging out here at night and when I ride my bike to the station, all the bike racks face the security and transit office, so never had an issue with my bicycle here either. + +The buses themselves are fine, I have had some very bad moments on the bus with the passengers (ie the 1st time I got on a Phoenix bus, a knife-fight broke out and I had to stay for a police report, another time two guys were reading hard porn right across from me), but its kinda nice mixing with people rather then being in a car-tomb. + +What I very much have an issue with is most bus stations. I have had bums passed out (dead?) on the seat, meth heads, a single sign with no seating in the hot blazing sun (I am looking at you Scottsdale), seats no shade around, fights break out at stations. I try to call the metro, they say it isn't their issue. Call the police non-emergency number, they say its the Metro jurisdiction. For this very bad situation alone, I don't take the bus at night since all the stations near the arts area and central are not well lit, full of sketchy people and the buses take too long to come by (if they even stop). For this I am grateful for the light rail for late night Phoenix excursions. + +Metro still has a lot of work to do, but considering the improvements I have seen with public transportation and bicycle awareness in the past 3 years, it seems to be going on the right route.",review,mfvezpz6ohS0NQk3DZdvqQ,3,4,1 +z3yFuLVrmH-3RJruPEMYKw,2012-04-12,zwMyUekn8vVDw1-BO0z01Q,5,"Impossibly good Italian deli in the middle of the desert. Huge sandwiches on the most incredible bread you've ever had outside of NY. As someone who ate here 3 times in a 24 hr period, I feel especially compelled to tell you about their cheesesteak. HO-LY-SHIT. Easily the most decadent, flavorful cheesesteak I've had in a VERY long time - and I live 15 minutes outside of Philly. Im still in disbelief that they could pull something like that off. Ask for yours on the soft roll. + +I should also mention the sausage, peppers & onion sandwich, which was really good. I suspect they make their own sausage, which elevates them to superstar status in my book. The chicken parm sandwich and dinner are both equally good, and the meatball sandwich deserves honorable mention as well. + +I dont do cold subs, but the ones I saw coming out of the kitchen looked huge and tasty. Perhaps I will try their pizza next time I'm in town.",review,nJ4SuIHBRkwu8ERCnQXBqA,0,0,0 +PNrOTfMmE0CJFV9YwSLzYw,2011-05-09,L-k2ktpQsmQsXDlBYGT2aQ,3,It's okay. it's nothing like San Francisco food .,review,6wpEHXevnaIZp2kUTUfhxQ,0,0,0 +mWjlJ0Mvde4nBvM9nXlU-w,2010-09-26,OrpWxnie3P1SUK_3EGXeyg,5,"This was my first experience with Lush (with many more to follow). I stumbled into the store because I could smell it 4 stores down, and I was drawn in by the aroma (I don't even thing I read the name on the sign...I just followed my nose). I had never seen anything like it! The giant blocks of soap, the colorful bath-bombs, the bubble bars (that looked like little cakes), and so much more! It was late December, so the sales staff told me that any left-over Christmas items were buy 1 get 2 free (what a deal on my first visit!). They demonstrated a bath bomb for me, and I was MESMERIZED! I got 6 Christmas bath bombs (4 of them for free!) and 3 travel-sized Snow Fairy shower gels (another Christmas product, and by far one of my favorite Lush products EVER). I also got some non-holiday bath bombs and melts because they were just too heavenly to pass up (I got a Youki Hi bath bomb, my favorite bath bomb ever, which was sadly discontinued sometime last year). I also got my first piece of Lush soap (Sexy Peel. all the citrus just makes me smile when I use this soap. It's sunshine in your shower) + +Since I used to work in the mall I would go into Lush whenever I had a break and get a couple things, and the staff always recognized me :) They even offered me a hand-cream sample one day when I was complaining of dry hands. I brought some of my friends from school in and told the girl behind the counter that they were newbies, so she rushed out from behind the counter to demonstrate EVERYTHING in the store! Literally, she showed us bath bombs, bubble bars, face cleansers and toners, massage bars, and dusting powders. I was so impressed by her powder demo that I bought some Candy Fluff dusting powder (another item that has since been discontinued. Vanilla Puff powder is a nice substitute). + +This store holds a special place in my heart because it was the first Lush store I ever went to, and I will forever have fond memories of the staff that dazzled me, and every time I smell Sexy Peel Soap or SnowFairy Shower Gel I am reminded of that magical day :)",review,pErAerEObYkIYznI3GhS-w,0,0,0 +24V8QQWO6VaVggHdxjQQ_A,2012-11-01,opqIDBk5QbxYtG3cjCZfpQ,1,"$8 for a tiny sandwich with one egg, two greasy strips of bacon, and a stale muffin. They say it's pricy because they get it local? It has to have substance to be considered anything. So whack.",review,FUMdzARf71drXyDZ7lkpWw,0,0,0 +5GpvSL1tlAjpgdJKZ5eLpg,2009-12-20,QX1mKLjrcQ4gkixLUFoTbA,4,"Consistanly great steaks and flavor for sure. Today was our maybe 10th visit to Texas RH and we keep coming back. Today's waitress Stacie was an absolute DITZ and let's just say it's a good thing I was in a good mood. My Ribeye was as tender and tasty as I expect, wife tried the Ribs for the 1st time and they were tender for sure. Bring your appetite and some time (if you come Fri/Sat after 530) as I am sure you will enjoy as well!",review,DnwHp_A92KvllfaUIdFraw,0,0,0 +bfDQai9X59uWK-XgP0t6rA,2012-10-25,GSg1pGXc40IyrXW23Zgv0g,4,"Only three stars? Wow--maybe it was the ambiance that sucks overall here--I don't know. I actually didn't go here myself. It was my wife. She brought me home a cheese enchilada plate and it hit the spot--even lukewarm. + +All I know is that meal was better as a leftover than a lot of the fresh ones I've had at taquerias around the tri city area. Makes me wonder how it would taste if it were nice and hot. . . + +Okay--challenge accepted. I'll let you know.",review,IGkoathSlJmIOBDGo9vUZg,4,4,2 +5kRug3bEienrpovtPRVVwg,2012-01-01,RVEbqITh8KsZkURDa-3g1w,1,"I heard good things about this place, and was looking forward to what the ""basement"" atmosphere would feel like, lowbrow, a little seedy, etc. Sadly, too many middle-aged men wearing flip flops out on a Friday night. Flip flops? UGH..in Winter? Also, our waiter SUCKED! He acted like he had a hard night and was unwilling to suggest a beer, so I am sure he spit in my draft...Anyhoo, does not matter as I will not return.",review,r3_JcUFWGERe8ytAHQPDyQ,0,1,0 +WS1z1OAR0tRl4FsjdTGUFQ,2012-02-11,KR_8Vgo85xgwxG5XmFj7ZQ,1,"Place is alright but for the waitress, poor service and things sent over we didn't order. We sent them back but had additional items brought and not brought on the tab anyway. She said me ""that couldn't happen"" and refused to take it off. Waitress included autograt. + +I have been here a dozen times and never get great service but enjoy myself. This time will be my last.",review,1UNDhcdgvL1N3SbRPbu7Ew,0,0,0 +hGQsnkndreW7b26XC2HVRA,2010-10-21,9pHzHNL7Hk7AHScDK27FOg,4,"Gotta get the hot wings! They'll make sure you know what you're getting into, but even if you haven't had them before, just play along. They're worth it.",review,XLO0gE99ur2fv7VmPBJb3g,0,0,0 +Tt6DYs0TyERWHWW5xiRL_A,2011-01-18,oNWasO70MB71PSw00rN5vQ,5,"Yen has amazing sushi. I would say that they have the best sushi in AZ. You have to try it to see how amazing it is. The service is great and I feel like I just stepped into Japan. The whole sushi experience is very authentic and perfect place to hang out with friends or take a date :D + +There is only one thing I don't like. Sometimes it get's to busy so make sure to get there early (around 7 P.M) if you want to be seated right away.",review,IqrtFpXjwUhJNd28LUOOeg,0,0,0 +czOxS1z2MGzPXNP3W1d0Yw,2010-10-30,q4hWqr55R2ngpiiuf4qiPw,1,"The staff is friendly. But the physical hotel itself itself is comparable to a 2 star motel. The Holiday Express I stayed at is better than this. Priceline tricked me when I requested for a 4 star and indicated that this was a 4 star in name your own price. + +Cons: +1) They have cactus in the parking lot where when I got home late, it was dark, poorly lit lot, and opened my car door, step out of the car, and step on to cactus severely injuring my foot to where I can not walk anymore. Who puts low cactus in a dimly lit parking lot where when you get out of a car, someone can step on it? Being injured on vacation is no fun and very painful! +2) hotel room and property is old, like from the 1980s though the front desk boy told me that the rooms were newly renovated +3) Given the previous reviews I asked for a quiet room, but was given a room where the squeeking and thumping and wall shaking, woke me up at 5 in the morning. The neighbors flushing the toilet, showering, and running water can all be heard. +4) the bathroom door is so jammed that it requires both hands, all of my body wait and a few minutes of wrestling with it to open/close it +5) Requested a single bed, however upon arrival, was told that it would be 30/extra a night for a single bed instead of 2 doubles +6) 80s style tube TV +7) pink 80s decor +8) worn down bed with body dent in it +9) wifi costs 9.99/for 24 hours even though its signal is only 1 bar +10) AC blasts loudly on and off during the night +11) curtains are cut half way so tons of light comes in to the room in the morning. + +pros: +1) location +2) staff smiles and says hi +3) cleaning staff does a good job",review,hryUDaRk7FLuDAYui2oldw,0,0,0 +GjG2_JvHg6ISrLchOag_lA,2012-06-25,LfYhmu7JvRxIJq9eyJ5dQw,5,"Lives up to the local fuss. Quick, cheap, tasty and one of the few fast Mexican food restaurants that utilize yellow cheese, which is my cardinal rule of good Mexican food.",review,8-mw_aotUGmP0k0s6QKwOA,1,0,1 +yYbd9P1KmlPSKmQxo68n_g,2011-10-26,Rn1OUvp2fMTI2nKtmYcM1w,4,"I tried Pork on a Fork at the ASU Tempe farmers market. Beef brisket and pulled pork sandwiches were sold there in a small tent. + +My sandwich (brisket) was very tasty, albeit a little plain (just meat and bread). There were three great BBQ sauces available - sweet/mild, tart, and spicy. I used a lot of all three, but spicy was the best. I felt like I could drink those sauces! + +At $6-8, the sandwiches are a little pricey, but they are filling and taste excellent. It would be nice if they came with some corn, beans, or the like to round out the meal.",review,qQns9dP75RNOWOVWI_ZKZw,0,2,0 +NmtZuT8p4vNk259dvozbvg,2011-07-24,6wrXyz4fOH9TjxsHHTjtEQ,5,"I've stayed at several hotels in the Hyatt Place chain and they are all great, but this one in particular stands out as having the friendliest, most helpful staff.",review,mGpttS5cV5W6iKZOJ1KDgQ,0,1,0 +A0hxl-YmCYYn0j-X614fQw,2008-12-02,TjvdQBxP_uZR5Gd8b02jow,4,"I know that Wal-Mart gets a bad rap at times, but I need to report how nice they were to me the other day. I went in there to buy some Christmas presents and found everything I needed and went to pay for everything. I apparently did not take everything off the kyosk of bags and left one package there. When I got home and these items were not in the back of my vehicle, I went back down there. They told me to just go and get two more pair of the item I was missing. I really felt they were so nice in doing that. Thank you Wal-Mart.",review,fW1RBWhhVrZ5t-TURpIvlA,2,1,0 +kwo6AogUjIG1qk-doJdFeQ,2008-06-25,4z3dGNGWPG9ldQRQPg0WFg,4,"Holy crap Thomas is spot on, hilarious. The first thing I thought when I first walked in this place was ""I'm feeling mighty little"". + +Big heavy pieces for sure, dark woods, carved, unique. You need a big space to show off this stuff. Lots of Mexicali knicker knackers. I still have a few pieces with me here in Hotlanta, but it doesn't quite fit anymore.... + +Anyone want to buy it? Shipping is only $5,000....",review,bjyNs56h8t57FYZ7y1_1Rg,2,2,1 +VsO_rhXi5lgbaGxNwoEZsQ,2008-01-12,B613lHQDA6sQE-LYoj7hrQ,1,"I haven't yelped in about 2 months, and I was waiting for a place to either wow me or disgust me. Well, this place was that bad. + +First impressions were all right -- the outside bar was neat w/ good views of downtown, and the fire pits were nice. No beers on tap though; and seriously, what's with the hip-hop club DJ at 7:00 pm? Come on guys, way too early for that. + +It wasn't too long before three of us were seated; and after about 10 minutes, our waitress came up and asked us whether we were ready to ... oh wait, that's right, no menus yet, good job. O.k., so I ordered the Thai Spring rolls, which had a filling of lettuce, a single strip of carrot, and noodles. Seriously?! Main course, I ordered the curry, which turned out to be the worst curry in the world -- I don't even know if it was curry; it was more like a bowl of thick, yellow soup, with a few pieces of chicken and a couple of vegetables tossed in. Yuck. And then they only gave me a tiny bowl of rice. I'm sorry, isn't it supposed to be the other way around? My friends completely agreed with how bad the place was (I think they had some sort of stir fry, which they said was bland and pointless). + +So yeah, I don't recommend this place. Instead, head a block over to The Roosevelt for some good beer on tap and some pretty good food.",review,-bO7P1OtJBKN3rlGpolaFA,1,6,2 +_RBUU1y4yJrK0SPAd8z0-w,2010-02-17,JdFwHqb5Uro6SdXuh9PwSA,4,"This place has a fancy exterior and you definitely pay for the ambiance. Definitely a sit down with a napkin in your lap kinda place. I have tried the tikka masala, pakuras, vegetable korma, and naan. It's all very delicious and the portion sizes are bigger than expected. + +Drawback: kinda pricey. Not a good place for cheap take-out. I ordered out for 3 and it cost $50!!!",review,kacOkLRg_lcNA_wPE4bb1Q,0,1,0 +-gefwOTDqW9HWGDvWBPSMQ,2009-05-07,Ou4P7FMsCyJm7uYhsGcGig,2,"Ordered the mushroom burger, they put canned mushrooms on the burger. Gross! The patty melt was good. But it's really hard to mess up a patty melt. My salad had a bug in it. + +Service was nice. And they do have a yummy cider beer.",review,z6OGpPPnGNDTOsLhf4KVzA,0,0,0 +CMTDZRDnv_O0rwAvRVbjvg,2011-05-19,XKHff6YV4yvaXVRA1DjwJA,5,"Being a very experienced pho eater, I must say that the pho at the BlueMoon is excellent! That, plus the pho is 50% off, so that must have added to my utility. Veggies were fresh and the service friendly. Oh, and the appetizer came out only a minute after ordering. Meal was hot and came out just as we finished the appetizer. + +Spent a total of $13.61 (including tax) for (2) large bowls of pho, a Thai ice tea and a order of fresh spring rolls. Our bellies were stuffed and wallets intact. + +Will eat here again!",review,0-aWamipsRNfcgFYALX1KQ,0,0,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2012-09-28,_dh9-JPGgqdVGL-_xSGGhw,5,"Love their pizza!!! +Very fresh. Their cannoli was really good too. +They seem to have great selection of wines.",review,YrkflTZm3otwskJlEBtqkQ,2,1,1 +PmPOuRvuN3CoNOi1nBj_TQ,2012-07-03,j5B1y_XEqbxESzg3gg-uZQ,4,"This was my second time eating at Pappadeaux and I have to say that I was equally impressed as the first time. The service was excellent both times and the food is pretty good too! I had the Shrimp Etouffe the first time and it was an excellent choice and the second time I had the fried shrimp with a side of the Seafood Gumbo. I really liked the fried shrimp but didn't really care for the Seafood Gumbo, it just totally fell below my expectations (it was chunky and bland) but I was so impressed with the rest of my food that it didn't take away from my overall experience. We also had the Crab Spinach Dip...yummy!!",review,z3IUQL6wpTRBrVyW4XhlfQ,0,0,0 +ntN85eu27C04nwyPa8IHtw,2010-02-22,Y0ZFutGDYDNV4f6zcB2xbw,4,"I had my first experience with Matt's this morning. A friend of mine had seen it on Diner's, Dives and Drive In's (or something along those lines) and was excited to try it out. The wait was about 20 minutes(arrived at 9 am) and seating is very limited but worth it! + +I'm all about the breakfast food so I was excited to try somewhere new. The menu is limited but covers all bases. The coffee (a special blend just for them) is local as is everything that they serve. I swear the bacon tastes better when it's from around the corner. + +I decided on the belgian waffle and a side of hash browns. SUPER YUMMY!! I appreciate the note on the menu that they only use butter and extra virgin olive oil... No trans fats here! The hash browns were a bit oily but tasty overall. + +As I was leaving I saw a huge stack of pancakes on their way to a table... I know what I'm getting next time!!",review,CPbT7oLbZxz76O8CtDP7VQ,0,2,0 +5SS69rC8XWvdlD1OHifEEQ,2012-05-17,1RcTkSQpeYkOeH6pYY1zRw,5,"Beaver Choice is an excellent place which I have had the chance to visit three or four times. This is about as home-cooked as you can get in a restaurant. It's like eating at Mom's house, if Mom happens to be Swedish. + +I've had a few of the entrees -- schnitzel cordon bleu, pork medallions, seared gravlax -- and all were delicious. Especially the gravlax. + +The sides are also great, and you usually get three per meal. + +The poutine is perhaps not as good as what you'd get in Quebec, but it's easily the best I've had in Arizona. The fact that they even have poutine wins this place a few points. + +I have also had the opportunity to try their dessert specialty, the Beaver Supreme. This mess of chocolate, meringue, cream, mandarin orange, and possibly a few other things, is the sort of thing which you set out intending to only eat half in the first sitting, but ultimately find your free will diminished, invariably resulting in an empty dish and a fear of the onset of diabetes. + +Also, it seems one gentleman gave this place low marks for the long preparation time on a chicken wrap. I just have to ask, why would anyone go to a Scandinavian restaurant and order a chicken wrap? Can you imagine what would happen if you wander into a Viking camp and order a chicken wrap? Your head would be off before you could recite one measly Odinian incantation.",review,KYeLSM3MQpirmHukVV5Iow,2,4,1 +idpRaOujsEvnI-LzDSKa6g,2012-12-15,9ANWAwUBfm5NqCrYbQakIQ,4,"Welcome to the funkiest place in Goodyear. If you've been craving sheet-metal winged pigs but regretting that Cave Creek is practically a day trip from the west valley, you may feel tempted to lie on the floor and weep tears of joy. + +This Armadillo provides fine circuit training for working off breakfast at the Black Bear Diner, including a loft with moderately steep stairs. Like its cousin up toward Metro Center, it's an ""antique mall"" in the sense of focusing mostly on vintage items and less uncommon antiques, plus a smattering of ""collectibles."" This is the kind of antique mall I prefer, since it really functions as a sort of fantasy department store for shoppers who have a middle-of-the-road budget but whimsical or retro tastes. + +Like the other Armadillo, stock here runs somewhat more to the frilly and ornate than to the mid-century modern, but it's not a total lock-out of swellness in favor of sweetness. Unlike the other one, there's a larger variety of dealers who aren't typical antique-mall fare: things like reproduction hardware, the aforementioned sheet-metal winged-pigs, repro tin signs, garden ornaments made from vintage dishes. This isn't my cuppa, but in context, it provides useful variety, and it fills booths (there are more empty booths here, but it's still fairly new). + +A number of dealers seem to actually be replicated here, including the scrapbook store. Also replicated is the cheery professionalism of the operation: clean restrooms, occasional seating areas, efficient check-out, and available snacks. When you're hiking a layout this big, these things come to matter.",review,4DtBamDdmuYGozIHJN9cig,1,1,0 +KV-yJLmlODfUG1Mkds6kYw,2012-06-23,z6ayw4d_bz_wAJciB-CF8w,4,"Great sliders, come on all you can eat night! Bakery is awesome, ribs are ok, free breakfast on your bday! No clue how adam richman did the slider challenge, I wanted to cry after 10.",review,Iq_2tq-f_NyhcAa6Yim-fA,0,1,0 +vSWEXsXmJw5ozuF4zqE9ng,2008-08-22,BzsCX6sbeV50SAsQmQldLA,4,I really enjoy this place for a relaxing dinner. They really know how to do a great salad and it's defiantly a plus when it's half off bottles of wine night.,review,9VPNlcKsL99FvKtz1r9qJg,0,2,0 +SZvYxcvYYVRue9MXcEDjsA,2011-03-15,0gMRwAmLCCIbJJmjsP5qcg,2,I have gone here quite a few times. I like having a diner close by for breakfast and newspaper reading. But this one is always short staffed. And there doesn't seem to be much management around to smooth things out. Food is usually good but staff always seems stressed out. May be due to serving hoards of poor tipping elderly.,review,3gUxHXOvEXdzDhKDjnGgyA,0,1,0 +ho4Te6bO2tGs56h9PF2vuA,2010-08-17,0JrB4CJ9qrfmqhsxWcpHlg,1,I was not impressed. The food was bad & expensive. The wait is ridiculous. Don't go.,review,v6jF7qJOyzO2SZR_qyBXLQ,0,0,0 +GiElN3AF8N4ZpfH6PNRjdg,2011-10-17,hkmaKvOJ8gO-qeBOmpaV6g,1,"This was the best camera/photography store in the valley. It has now been re-imagined and renamed as Photomart upon its move to Scottsdale. I recently visited the new location...and I was shocked! The store was extremely small, had very little to sell (I didn't even see a camera on display). They did carry some glass...but mostly a very small selection of accessories. I didn't even recognize any of the former employees. + +I encourage all the former loyal Photomark customers to visit Photomart. I'm sure you will leave disappointed. Two thumbs down to this lemon!",review,pcar062LKuhjXoe7E42YRA,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2010-10-11,LgPRctVh8GavM4ZyBOtZZA,5,"Always a healthy, fresh meal. One of my favorites is the hummus and grilled chicken appetizer(which is gynormous) and I have them add in some tabbouleh, then cucumbers on the side. Perfection. All the pitas, and the seasonal specials are always super good. Wine is also inexpensive if the mood strikes. Otherwise, great casual lunch and dinner spot that is extremely reasonable in price for the quality of food you are getting. There is something for everyone here, veggies, kids, etc. If I ever moved from AZ, this is the first place I would come visit upon my return. Parking can get hairy at the Arcadia location, and one time someone actually backed into my car when I was legally parked along a curb but that is hardly Pita Jungle's fault. The douche didn't even leave a note - but I digress and karma is real and nothing would keep me from coming back to Pita!",review,qkbiaiS8t8YHWx3J04NjSw,0,0,1 +muCl5p-9ut1sY0aKeUeRhw,2011-07-06,l2OxHrUjH5FrdSyvwvCwPw,4,"Met a friend here for lunch & had a great experience. I've been meaning to get here for a while, having heard great things. Unfortunately didn't get to sample the wine menu. But the lunch offerings were good - turkey sandwich was very flavorful with its crumbled goat cheese, vinaigrette, and fig jam on 9-grain bread. Such a large sandwich runs the risk of being dry, but no problem here. My friend got to enjoy the sausage mac & cheese; I was tempted by some of the other versions on the menu - next time for sure. Also, the place wasn't too crowded for lunch - no problems getting a table or parking.",review,7ToIE5d3_oyqJ6zyxg1OVA,0,0,0 +b3mfNkad2uxdlKLrS3hDCg,2012-03-29,BFAvb86rMJiji41pk4BGOg,1,"It's a good concept if the owners / mismanagement had bothered to keep a trendy or classy atmosphere. As it is save your money get fast food - McDonald's has less grease. We had to ask for plates for the appetizer platter (it is meant to be shared) so the sever handed my daughter 4 paper plates. + +My salad wasn't a salad it was a paper plate of mixed greens - really no tomatoes, nothing on it or in it other than lettuce and she threw a packet of Newmans Dressing on the table just like the ones you get at Burger King or McDonald's. My steak - it was OK - I asked for medium and got medium well and that was the best part of it. The steak is served on a paper plate and when I asked about utensils I was directed to go get my own from around the corner - yup plastic ware for a steak on a paper plate. + +My daughter had a burger and it was so greasy the bun turned soggy brown part way through then fell completely apart. + +Service? Well let's just pretend this place is 100% do it yourself then it would be OK. The waitress walked away before my daughter finished her order. Never came back and asked how things were, nothing. Really if we were the kind to dine & dash it wouldn't have been a problem because she wouldn't have known we were gone. My daughter actually had to go find the server and ask for the bill!!!! + +What kills me is the employees exude an I don't care attitude which is also obvious in their actions (or lack of actions) and the message I got was the owner / mis-management has accepted this lazy unfriendly service because it's obvious by how poorly the place is run that it's OK with them. + +It could be great but they would need to make a lot of changes - job 1 fire everyone & start over. If I could have given them 1/2 a star I would have - we won't be going back.",review,Dl8ssN8MGZazTn5QAL3eJw,0,1,0 +WUTSRw9kiDHmQeoylYfrnA,2011-03-10,vCPw-x_bzxl0ebdhQdJyTQ,5,Free samples? One dollar churros? Cheap buys? Why not.,review,SWoWXML68esw-UhHRjLBQQ,0,0,0 +ZoQAOnEFnyHjSpomtfqesA,2009-03-08,7BQy8bQPmPYCzYs1p5wvig,3,"Its refreshing to find one-of-a-kind places -- God knows Phoenix needs more of them to inject personality into this generic, strip-mall, chains-on-every-corner valley. Finding this unique sandwich shop, which is in a house that has been transformed into a restaurant, is indeed a welcome find. The real estate is limited, so parking is compact and circles around the back of the building. + +The dining area is mainly indoors, but there is also a small patio facing the back portion of the parking lot, which is not very scenic. Inside there is art on the wall that can be purchased. + +They serve wraps, bowls and salads. The food has been pretty good, although it did not knock my socks off. I ordered the Baja Bowl, which is described on their online menu as ""Southwestern chicken atop garlic rice, black beans, Monterey jack cheese and topped with lime sour cream and pico de gallo."" It was OK, but the chicken was dry and cut in fairly large chunks. It could have possibly been microwaved -- not sure, but there were no southwest flavors to speak of. I have done a better job of cooking chicken on my George Foreman grill at home. Perhaps the garlic rice would have helped with the flavor, but I had substituted the rice with organic brown rice which did little to add flavor. Sour cream was not ""lime"". There was a small slice of lime served on the edge of the bowl. I would not bother ordering this again -- especially if I have a craving for some southwest food. + +On another recent visit I ordered a wrap called ""Prince of Thai's - Spicy peanut chicken with baby spinach, garlic rice, fresh ginger slaw, cucumber pico and red onion wrapped in a spinach tortilla."" That had better flavor than the baja bowl. Vegetable ingredients were fresh and good. Again, I was not very impressed with the chicken chunks. + +One thing I think That's A Wrap needs to address is the use of styrafoam cups. Afterall their slogan is ""Healthy Food for a Hungry Planet"" and they have a link for a new restaurant ""Green"" for Vegan food on their website. For such an artsy, earthy place, I would have thought That's A Wrap would have made more conscious, earth-friendly choices. For that reason and the bland chicken, I give them an average rating only.",review,0BBO-d1_Dr16Tc55x--ejA,0,0,0 +JRzrqJmsQ5AZ4bMQLUfyHg,2009-07-20,2y4MLimYoqWg99RNEGD-9w,4,"I really wish that I lived closer to one of the Crackers locations, because their breakfast menu rocks! After a field trip to IKEA with my mom and sister we decided to grab a bite to eat, I knew that Crackers had recently opened nearby, so we stopped by. The inside is very cute, feels like you are in someones country home. The menu has a huge variety of breakfast dishes, sandwiches, salads and soups. On weekends, they serve breakfast all day! + +I got the Carnitas breakfast skillet, and let me just say, they seriously have some of the best carnitas in town, no joke! The pork was so tender; covered with jack cheese on a bed of potatoes, heaven! My sister got the BLT, and they were not skimpy on the bacon! I have had some of their soups before, and let's just say, the Cream of Spinach & Artichoke is like heaven in a bowl! So rich, and creamy, it is like eating dip without the chips! + +They are only open until 2:00, but it is great spot to grab a bite to eat for breakfast or lunch!",review,fAiVqZv7P_oc5CzGMX_G9w,1,2,0 +STv-ED3M2xmRFMSvQbWGaw,2011-10-12,aglTWcaH9lMBZ5xsdx1HUQ,4,"First time here and it was really good. I ordered the bobbie sandwich since I hear everyone raving about it. It was ok. Not my favorite. Place is really clean and wasn't busy at all for lunch around 1130. I like going to a place where I can get in and get out. Staff was really friendly. They gave me this punch card.. buy 10 get the 11th free. Very nice. About the same prices as subway so I wasn't upset. Plus the sizes of food are definitely moneys worth. At least I think. For anyone in the Chandler area, this is definitely a place to stop in and try.",review,kpY5I-J2Ch-4GmNrERBMGg,0,0,0 +uYj2NO1HZRNiD-de_pSdJA,2009-08-10,qOpjfPoGk7ULO_y4_RpYsA,3,"Some friends came in so a group of 6 of us went here. Cool little place with good atmosphere, basic and cozy. Wines by the glass were good. The bread was a bit stale but still pretty decent. We ordered a variety of things. The antipasto plate was good with several typical items. My tomato sausage pizza was good, not great. Needs some spice and flavor. The halibut over sundried tomato basil risotto with aspargus was very good but the halibut was a little over cooked. Otherwise, most everybody liked the food. One person ordered a dish and asked for a little spice but it was way too spicy and they basically couldn't eat it. Her husband ate it the next day because he could handle the spice but seriously it was way too spicy for most people. Not a bad place, would probably go back but won't drive out of the way as the location is a little out there.",review,f5CqKZlqK9Sox9z9wuooCQ,0,0,0 +yZbPvIa_7nt7ekxi31SkUA,2011-12-27,9o4OOxC7-4N0nHXtfP172g,3,"We stayed for three nights while visiting family for the holidays. +Good: +Very comfortable bed +Clean +Funky/cool decor which is unique +Very friendly and helpful staff +Fair price +Great location + +Not so good: +Pricey overnight parking that was a surprise upon check in +No coffee maker in room; this is pretty well standard for most hotels. We had to either go to the lobby for $4.50 per cup or drive off site. +On our final morning before leaving (2 1/2 hours before checkout) with our do not disturb sign duly mounted on the outside of our door, we were disturbed by a rap-rap-rap-rap of who I assume was the cleaner. WTF!",review,kCtnWnf0jYUSlMq6RBB-yw,1,2,1 +-sAoGZTnFtDZUY9JYWHqlg,2009-07-12,Xqe-FjMHEsO-Q34GiMl3vw,1,"Let me first say that we are fans of the W Hotel and have stayed in many of their hotels around the nation and are overall happy with the accommodations and customer service. + +I'm a local Phoenician who resides in the Arcadia neighborhood and frequents many of the wonderful restaurants and hotels this City has to offer. After hearing MANY negative reviews from co-workers, family, and friends, my fiancé and I decided to give the W Hotel Scottsdale a shot prior to forming an opinion of our own for this hotel/restaurant/bar. + +During a night out on the town with visiting and local friends, we opted to give this place a try. Upon approaching the entrance of the bar, security tells us that we're not welcome here due to one of the members of our party not having closed toe shoes and another not having a collared shirt. The attire our group was wearing was more than appropriate for any Phoenix/Scottsdale restaurant/bar. Let me remind you that's is July in Phoenix, and over one-hundred degrees at the time of night we went to the W and the six of us just finished a dinner at an adjacent, popular restaurant. The staff was flat out rude to not only us, but others in line wanting and willing to spend money and support the local hotel. + +I will strongly suggest not staying here or supporting the quality of business they are running here. During a time of a slowing economy and tourism, many businesses are forced to rely solely on the best possible customer service to attract and retain business--the W Hotel fell way short of this. + +I was very discouraged after our experience here and will agree with the many other reviewers that this place in not worth supporting. + +Phoenix/Scottsdale has many great places to experience, so don't settle for this place.",review,cAJpG8briCwhX3KA7mly8g,1,2,0 +YxLiLBNTm4cOg7OlKKLmVw,2012-01-11,qJc1Y3DBPNCrnBsywQYY3w,1,Worst enchiladas EVER and decor from a 1980's attempt at a mexican restaurant. Taco Bell is a step up! But if you like soupy enchiladas drowning in cheez wiz this is the place for you.,review,hbiJHDqJB5APidl-efOAjA,0,0,0 +nZBAnK1rOmV7bLVVDPJs0A,2011-08-24,ivZVMphZe3MS3ZOw7TmdvA,4,"Food was good, service was great! If I didn't eat at Chili's so much inn the past, I would definitely go back, but since coming back to the US, many more other restaurants to try.....",review,lli00i80n2wmetnimDZ4WA,0,1,0 +vZBYSQtTbY9MaYu5qNuU8Q,2012-01-09,sx5ggym-VTiIZ6nf4vpWgQ,4,"This was the launch of our ""Seven Summits"" of Phoenix mountaineering adventure. Our goal is to reach all of the seven summits by the end of April and we are off to a great start. Although it took us two attempts (two separate visits) to reach the summit, we did it with a few breaks and plenty of gasping along the way on New Years day. It was our way of starting the New Year on the more active side of things. This hike really gave us a great work out with the steeper parts of the path allowing for a good sweat. The trail is a continuous climb with a few resting spots and with plenty of photo ops to the summit. It does get pretty crowded and parking can be an issue on the weekends after the early hours. There are picnic tables, ramadas, restrooms and of course a stunning 360-degreee view once you reach the summit.",review,4lkTIhTuMhLprQprGlTRlA,3,4,1 +xWKtOLuIOVGZprcpGiqpQA,2009-02-27,so3Dk9OZZ2B7CAYASQ6GuQ,4,"Went to Sticklers for the first time today, with a friend who works across the street. I'm a little leary of places that get talked up so much, but Sticklers was everything she talked about and more. + +A family friend once told me that the way to tell a good restaurant is how busy it is. Seems like common sense now, but how many times have you walked into a restaurant with less than 10 people in the whole place and then walked away disappointed? + +Well Sticklers was packed. My first impression was ""Crap, the line is 20 people deep and we only have 40 minutes for lunch...there's no way""! Well I was pleasantly surprised when we got through the entire line, food in hand, in about 5! The guys and gals that work there are efficient and have it down. And they showed some great patience for a newbie. + +The chicken salad and provolone sandwich was outstanding and the hot peppers gave it a great kick. Word of warning to the lactose intolerant - it's a 2-piller! The atmosphere was active and lively but not overly loud. We were still able to have a conversation without shouting. I just wished the people at the next table realized that. We didn't need to hear about their daughter ""wrongly"" accused of DUI...for the third time!",review,gopGuEb-ft6cHKMyCZEvJg,0,1,2 +QL3vFMAsEHqfi1KGH-4igg,2008-10-20,cAbUcTEmsa2ofhYBeWiYeg,3,"The place was pretty empty - even for an off night. The service was pretty decent, but like I said - it was empty. + +I've been in here a few times, but never when it's busy. The prices don't impress me, but I'd say you get a pretty decent pour for the money. + +One thing I'd like to point out - a 1.5L bottle of Dom is less than 1000 bucks, but a 3.0L bottle of Dom is 3500. If you're a fucking idiot, get the 3L. If you're a smart shopper, you'll get two 1.5L bottles or else just by the glass - which works out even cheaper. Just so you know, it works the opposite way Costco does. If you're getting a big ass bottle of Dom anyway, you probably don't care. + +The decor is red. It's very dark in here at night... dark and loungy rather than clubby. Similar to Merc Bar, but not as hip or hidden... even though they try to hide it with curtains. It's also pleasantly quiet in here... easy to have conversations. + +With the patio door open, you're going to smell cigarettes people are smoking outside if you're sitting at the bar or on the couch adjacent to there. + +It's a nice bar, but I don't know that I'd single it out as a ""place to be."" I actually think the Mondrian is pretty nice - but that's based entirely on good memories that are completely unrelated to the place and have more to do with the people I was with at the time. If someone wealthy and hip was here from out of town looking to party, the Mondrian is one of a handful of hotels I'd suggest. Not so much because of Red Bar, but more because it's conveniently located within stumbling home distance to so many other better bars in Downtown.",review,Cp-PV8rsypbO-xBrQ6KmQg,0,0,1 +0qPmDwHa9NdvvIOgerR8HQ,2008-10-29,627TNM0A-APqZnK_jliRWA,4,"Canal has been a stop on many a ""bar tour"" through the Waterfront / Old Town area. The bar always has a good crowd in the evenings and the patio is fantastic on warm nights. With summer finally clearing out and it now being possible to sit outside during the daylight hours, we made our way to Canal for some late lunch / day drinking on a recent Sunday. + +First off, what a great place to sit and people watch! This was the first time we had ever ordered food at Canal, so we were interested to see if the cuisine lived up to the hip decor and vibe of the restaurant. The baby burgers (3 of them) were served up on an ""English High Tea"" tray. Great presentation, and the actual taste of those little guys didn't disappoint.....ahi tuna / fillet mignon / ground chicken. The fillet was my favorite. What can I say? I like red meat! + +We also had the fish tacos.....delicious! A great experience, all around. We're definitely looking forward to getting back here for dinner soon.",review,Oq5CYkB4dQE_wmPgHu51bg,3,2,1 +I6yAKGBDclGh7UlvOfqV1A,2012-08-10,uqyaRUQ5sDleVcP2Wf9guw,5,"I now consider myself an Arizonian. If you drive a lot on the 101 or 51 like I do, you'll get your fair share of chips on your windshield. You'll also have to replace a windshield like I had to do just recently. Apparently, chips and cracking windshields is common in Arizona. In fact, I seem to recall my insurance agent telling me that insurance companies must provide this coverage in Arizona. + +I had a chip repaired about a year ago near the very bottom of the windshield. Just recently a small, very fine crack started traveling north on the windshield from the repaired chip (a different vendor repaired the chip). I called these guys over to my house and they said it was too long to fix, so they replaced the whole windshield the next day. + +What great service, they come out to your residence or place of business to repair or replace your windshield.",review,NvDR3SPVPXrDB_dbKuGoWA,6,8,5 +L2J3JfjXZLnX1rLhWKthqA,2011-01-11,lvTXEozP5_OzC0UriGGVVQ,3,"The first thing I respect about Rula Bula is its ability to attract customers while keeping a low profile. No flashing lights, no 400 pound bouncers with angry stares, and no promotional cards being shoved in my face from down the street. + +I walked in and liked what I saw. It has an old school feel to it. There was a live band doing some Lady Gaga covers, and it sounded like karaoke. I wasn't impressed, so I ordered my Jameson (reasonably priced) and walked out to the patio. + +It was a good patio, with a DJ in the corner. It had a different feel to it, and I appreciate how laid back it was. But it felt like something was missing. I waltzed back inside, admired a much better cover (of Micheal Jackson) and realized the one thing I couldn't find here. + +FUN. + +To a west-sider like myself, Tempe is the Mecca of mischief, a place where I can have one too many and stumble back home with a story to tell. There was a dance floor, but no one was dancing. There were tons of people, but every group kept to themselves. Even though I don't go to bars to meet women, there was a suspicious lack of pretty ones in here. It's like everyone who was too old or uncool to go elsewhere came to have a Guinness in peace. + +I came here expecting a fun bar that wasn't a full-blown club, and instead of getting a happy medium I ended up with a boring dive. Don't get me wrong, I fucking LOVE dive bars, but I don't go to Mill Ave for them. Rula is a good place with good history. I can't hate on it. I love the interior, and I could see myself coming back during the day. It's just not worth going out of my way on a Saturday night.",review,jdeNI5TTTuM6mj3HTgstRA,1,1,0 +Uke8Pq1m918WW0n0_jEmWw,2009-09-15,hiyGpBbffY0sfz7rXjQHmQ,5,"I love everything at Market bistro, but I especially love the salads. I always get the create your own with their homemade and delicious buttermilk Caesar dressing on the side. That dressing is totally addictive! The other thing I would wholeheartedly recommend is the Market pizza with goat cheese, artichoke hearts, oven roasted tomato, baby spinach, mozzarella, parmesan and basil pesto sauce. It is probably my favorite vegetarian pizza. You can get it by the slice at lunch, but have to order a whole pizza for dinner. + +I've had the corn chowder with poblano chiles soup and it was great. I've not tried the roasted garlic tomato soup but my friend loves it. Had a sandwich here once, with tri-tip with caramelized onions, but it doesn't seem to match the description of the ones currently on the menu. The only thing I haven't loved so far is their Margherita pizza. + +Everyone here is always nice and friendly. I love that it's family-owned and still doing well enough to open another location. They now have online ordering, which I can't wait to try!",review,5-2JHDnSsoSaoRKDHPeTtQ,1,1,1 +PqJwKYHU_eHjw0q0NlULJw,2010-01-24,UWubK2igTMicUK6wzm6fzA,5,"This place far exceeded my expectations and is far better than staying at a Hilton Garden Inn or Hampton Inn. This place is QUIET, CLEAN and for the money, you can't beat this place. It includes a HOT breakfast each day which means real eggs and hash browns served to you at a sit down cafe. This alone saves about $10 per person per day while traveling! + +This place has THREE pools (nice if you don't want to hang out near the bar), basketball court, laundry facilities, restaurant, plenty of parking, free wi-fi, full kitchen, great housekeeping service (they cleaned our dirty dishes!), and a very courteous front desk staff. + +The only downsides were the dim lighting and not enough wastebaskets or tissue boxes. But for the peace and quiet, I'll take that trade-off anyday!! + +This place would be excellent for hosting reunions because of the pools, basketball courts and several sets of bbq's on central courtyards. + +If you are looking for a fancy place, this isn't it. But it is an incredible bargain, comfortable, and very quiet.",review,bWNjCQyTJttofo3dKtTTPQ,1,0,0 +KBG28p3lGX17hOPoHhq5PQ,2012-07-28,v-bGz-7GxKKFQqKc9E7zQQ,5,Always fresh and perfectly prepared. This is the only place my husband will take Japanese visitors from out of town. Enough said.,review,cjmZWVN9KU-LAmo5AnG6_g,0,1,0 +ArjchfGWpXf3R8Ly9s52Fg,2011-10-24,icjhOjJWyRAi_2jAKINMMA,5,Love this place. Everyone is fantastic. The girls up front can be spacey at times but their system is great and the email reminders are perfect.,review,eJuwXskIZgYONY5V5gyJsA,1,1,2 +UI5ghIUeHYxzwSfaDVUXOA,2011-07-22,cBjAxtH6rU6AOjLfhZnuqA,5,"We were in town on Business and Pleasure and had a chance to visit Aiello's with our Children, 10 and 7. What a TREMENDOUS experience it was overall and then to top it all off, a chance to win ""dinner on the house"" via drawing a number out of a bucket, was simply superb. We didn't win but will definitely come back next time we are in town as the food, staff, and overall dining experience was unbeatable!",review,BWqYBrUPoddg6QtXbK4EOw,0,0,0 +sHtnIhtnjB1uWMrZsM_Lsw,2011-08-31,MO27co7Z0p2hDI_-zS_OVQ,2,"I'm from Philly and had to stop in when I found out a Rita's was open. +It wasn't exactly what I had remembered, Flavor was just OK and not as intense. Not bad, but not great. + +I prefer Repicci's Italian Ice. They don't have their own store, but it's carried at Cookiez on Mill in Tempe and also they are at a lot of festivals in the valley. You can also find quarts and pints at AJ's markets. + +Just glad there are finally some good Italian Ice options for us East Coast folks out here in AZ!",review,ZTF84I4I5x4TBpdoWwLEmg,0,1,0 +UvK70rJjOGLx44Q4qsWz7Q,2008-09-23,yXbBXm7ovAGj2crEWP7WWQ,5,"We went to check out PNP for their 2 Year Anniversary show and were extremely impressed! Space 55 is the most charming space that I never would've known existed had it not been for this show being promoted on Yelp! The actors were amazing and we really were in awe the entire time we watched this 30 minute film being created right in front of us! I'd heard of Comedy Improv, but Movie Improv? I had no clue... + +Special shout outs to Mark J and Jenn H (our very own Phoenix yelpers) who did an incredible job on Saturday night. Congrats again, PNP, on your 2 year anniversary! I look forward to attending future performances for sure!",review,fczQCSmaWF78toLEmb0Zsw,6,6,4 +ObnZiF99lqggVasgyGBtVA,2012-06-07,EMHeC6JD9WxGOzmQDEGgWw,3,The veg burger is fantastic - make sure you ask to try all the different aioli sauces especially with the tots!,review,tiyg_cQaPdUuSG95Xpi_sA,0,0,0 +M9t5569pgvJYurC8hX0E1w,2008-08-21,VP_xZoyhvAByllpMMqbmTA,4,"Last Saturday night I got my skate on.... (Before going out to indulge in more ""adult"" good times) +I had a fucking blast and have decided that next time I go, EVERYONE I know is going with me. YES, that means YOU! + +My date picked me up around 9ish and immediately made reference to the size of my ""huevos"" for wearing a ""red rag"" into the 623. (Like anyone's going to believe a 32 yr old white girl at a skating rink is a gang banger). He was joking obviously.... called me 2Pac all night...it was cute, whatever. +Upon arrival I noticed that indeed, it is pretty street in there. No biggie, I grew up in Tucson where our skate rink was filled with cholos and meth heads. I don't judge, I high five. + +One thing was annoying... .75cents for a locker, and only half of them worked. The .75 thing didn't bother me, the fact that they weren't marked so you just kept throwing more quarters in there and hoping for the best, did. +We strapped on our skates and took off. I haven't been in many years so it took me a few minutes to get comfortable. I can proudly say that I only fell once and it wasn't my fault..... what I can not proudly say is that I ended up on top of a 13yr old boy ...and from the very loud ""OWWWUCH"" that came out of him I'm pretty sure I punched him in the balls. The look on his face was sheer horror. (I still can't stop laughing about it). My date was pretty fancy on his feet..... I half expected people to profess undying love to him and call out his name as we left. (one dood kinda did) + +All in all, one of the most fun filled evenings that I've had in a long time. Kudos Great Skate!!",review,y9IKf7VckFc-fesWuDwgxg,6,5,10 +RUZvUPOn90ScX60eETwcCw,2012-08-30,oZimprWuVcJb47N4j8kc7w,4,"Went and got some delicious Boba today. Mango and Strawberry Banana. +Guy behind the counter is very welcoming and friendly. :) +My choice place for quick to go Boba.",review,rAAgOfBRswWzbBhcmyyUMA,0,0,0 +aMsEP51zdkdJpG7so9zmzQ,2010-07-25,9nI4DlZNttD8jnrEb7pUYA,5,"WOW!!! practically half price on everything compared to the chain stores. Staff is always very friendly and helpful, and i've literally saved hundreds of dollars since I discovered this store just under a year ago!",review,LnMMOFdCcHiYQOpagFINnQ,0,1,0 +TzImzfIWkZTnetKl2a4-SQ,2009-12-13,fjqsBbqqUXUEPZfdIiXrwg,3,"Chain restaurant that's just about okay for afternoon dining with friends. If I wasn't having beer at lunch I'd probably suggest eating someplace else. Food is good but in my experience their beer makes the meal. I've eaten here about half a dozen times during the past few years when in town for business weekends. + +It is centrally located on the corner of Mill and Fifth Street in downtown Tempe, amongst quite a few other local restaurants. During my most recent visit I ordered a steak at lunch along with one of the seasonal brewed beers. Steak was okay but I wouldn't order it again. Beer was exceptional, so I wasn't unhappy overall. + +I love burgers and I think I'll stick to that as my primary choice when eating here in the future. I can't think of any times when service was particularly unsatisfactory, nor were there times when service really stood out as exceptional. I have almost always eaten here on a Saturday afternoon, and it's typically been fairly busy during the lunch hour. Never had a problem getting a table, which is important since I'm usually heading back for an afternoon conference session. + +I love the big glass beer mugs (not sure what size they are) but I can't always down the whole thing during a short lunch break (I'm a lightweight). + +Overall, good place to eat if you're hungry and in the downtown area, but I wouldn't go out of my way to get here.",review,3miOUpoAr-NW7nGceQkYYg,0,0,0 +ZdQbDVZWDsO-d7q2qW8E3A,2011-02-08,2zUZrk19Bk10NN_nnkddaw,4,Very interesting sweet and sour had kind of a spice to it but good. The pork itself wasn't my favorite but it was good. The rice was very sticky. Unfortunately I had to get it to go so I missed out on a lot that the great food specials have to offer. But I would def go again.,review,3hPmlMAP3PfHMiwNW_RUZg,0,1,0 +AqbgC7Gul5Es1rRzGNLDFA,2008-10-27,8W7HMoSDjuFbaCQx39AIYQ,5,"YIKES!! Its a good thing that this place it a far drive for me - cuz it could spell trouble. +If you ever have a craving for a real delight and want to really 'enjoy a silent moment'.....try one of their coconut, lemon or dark chocolate cupcakes. Honestly I didnt care how many calories are in them....I was weak in the knees. +There is standing room only in this shop - literally I think my bathroom is bigger -but a big thumbs up for the cupcakes, and kudos on their packaging!!. (its definitely built into the pricing!)",review,JVeCUlDmcwJ3pteEdmzeHg,5,5,3 +d3MxUXS1b6U2P_gGuCO1-A,2009-10-26,_zh2YOGOZDrXbwSi7DmFCw,4,"Finally, a great Asian fusion restaurant. The service was super friendly. They even got me Yoo-zu tea because they didn't have honey. Server was great also and gave us recommendations about the amount and food choices because we asked - very professional. + +Now, the food... +- spicy wontons: mmmm deliciously fried to perfection and i absolutely love that wasabi sauce +- shumai: ehhh..though a lot of people on yelp liked it, the skin was a little hard for me +- sesame tofu: cute little deep friend tofu cubes +- shabu style miso with shrip: warm light soup, definitely a must try +- red thai curry: omygosh, that almost took off my tastebuds..i wouldn't recommend it unless you like spicy beyond jalapenos + +Overall, a great experience, delicious food, nice ambiance. Oh, everything fried tasted non-greasy and rather healthy - a rare treat. :)",review,dKx6EdEQZ3-ngWOTd0AFpA,0,1,0 +qgYWglXd2dkx5xUWPHCKcw,2008-01-16,156w7HZbZ-wO84aw5RBq3g,4,"We've eaten at Taneko twice now, and while we like it, it's awful expensive for what you get, and I prefer a more authentic Japanese environment. + +Taneko starts off wanting to be a Japanese-style pub restaurant, but ends up throwing way too much Scottsdale into it creating a rather pretentious yet still yummy restaurant. + +The food is excellent - I enjoy the pork meal that has the stupidly spicy mustard sauce. My kid likes the fried rice, though it is a little too much on the ginger side. There's a gimmicky hot-rock appetizer where you cook pieces of steak on a super hot rock. It's way too expensive for what little meat you get, but it's an awful lot of fun. + +The service is excellent as well, though maybe a little too servile for my tastes. The wait staff go WAY out of their way to make you comfortable and quickly take care of any needs. I just don't care for all of the introductions - I'm not going to remember the names of the 4 or 5 people bringing me stuff. Still, I think that's the Scottsdale influence. Not bad, but not really my thing. + +Overall, I've enjoyed both of the meals that I ate at Taneko, but with better places to eat real Japanese food like Yasu, Sea Saw, Hiro's and even Sakana, I'm probably not going back real soon.",review,kOyW4HTOFNX1NqIA-eyKyA,1,2,1 +qLXxp0rpzT4kG9tT3wZwfA,2009-02-19,wcNcrGEyS9SSFgJlAPYwPA,5,"I have to say I am not a big Valentine's fan. I don't like Hallmark holiday's. We ended up by chance going to MiMi's for Valentine's Day and they had a great menu and price for that menu for the evening. I am just impressed by their service, portion size and just the overall experience. I just love this place.",review,dKMzuhnwGh3hGxP0QH7m6Q,0,0,0 +PxeX1M8WtyPxX1MuuGIh-g,2012-03-31,dB62OZ5qf6S4X-Zu9FcUqA,1,"My part Jewish friend has been raving about this deli so come payday we went to check it out. Ive been in Phoenix a little over a month and have been getting sick from the food here...diarrhea lots, shit my pants once... anyway, i like to eat in divey non-american cuisine. This place aint seedy enough for me, I suppose. + +I did not get ill from the food here + +However.... + + $12.95 for a sandwich, fries, and a dollop of soggy coleslaw ??? + +I kept hearing from my friend, his mom and the waitress that the sandys are HUGE. +nope. + +Thought we might split one. +nope. + +My sandwich was flavorless..err..thats a lie.. it tasted like stale bread. + +$29.98 for 2 sandwiches and 2 sodas (its an effin sandwich!!!). I only had $40 (only ?) + +Left the waitress $5. + +Gave my friend the other $5 to put toward a plane ticket to New York where he might experience Kosher (and a bit of his heritage) on a more realistic scale. + +..the fries were good tho.",review,PZc3S5ql5-VzEZm9TuyCpg,0,0,3 +TzImzfIWkZTnetKl2a4-SQ,2011-03-06,y8SzsAgLPKkWFa5R753yZA,4,"I went here with my mom while my dad had a dinner meeting. The atmosphere is hip but it's also got a mature setting. It is a really great place for young adults and even older ones. The price was good, the food was amazing! The portions were also big and MOST the staff was friendly. I overheard two rude staff members making fun of the customers. However they might not even work there anymore. Great place!",review,V60Rzx_X6pgcrWJLxgL94A,0,1,0 +kqGbGsG2p6Y3vkplCKyE9g,2009-09-02,CjnzL6c2vU78SSl77u9puA,5,"Habaneros is an awesome little gem stuck in the strip mall hell known as Scottsdale. If you are one looking for an original meal at a decent price, try out Habaneros. +I am addicted to their chipotle sauce. You can find it in almost every item there. Try out the Shrimp or Fish tacos, they are delicious. Sometimes the food takes a little while to cook (and there could be a line). So be prepared if you are going there on your lunch break. The salsa is not as spicy as I would like, but I am splitting hairs at this point. + +Go try Habaneros, you wont be disappointed. Its a nice change from every unoriginal, corporate restaurant you find in Scottsdale.",review,9UNGbiE9k0fvMpCMJp0Gww,0,0,0 +8_wUsDlOE8Guecq5RZZjDg,2006-01-08,7ZujDqlte3aoLmFsa4P3oQ,1,"I went here because all my friends were peeing their pants about how good it is. Wrong. The slow (perhaps retarted) staff with no customer service, alongside the barely mediocre tasting pizza both contributed to my disdain for this awful eatery. Fuck it...stick to Slices.",review,wJp8U2qXl_jYUgyW9thjGA,0,1,4 +c1yGkETheht_1vjda7G5sA,2010-06-29,TWcI16TuRg0RzZWwnDxXAw,4,"I've eaten a huge percentage of the food on Green's menu and I love it all. If nothing else, come here to try the Soynami's (vegan Blizzards). I'm not a fan of rice or soy ice cream but this stuff is amazingly good. + +The bowl meals are packed with great fresh vegetables. I mostly eat whole foods and don't consider the fake meats to be especially healthful, but I love to eat the fake meat here once in a while for the texture. It's so good. It's not exactly like the real thing, but it doesn't need to be. It's delicious as it is. + +There is always a huge variety of people eating here all the time. It's always packed, always hard to get a table. Good for Green Restaurant! + +Atmosphere: The restaurant is made with green materials. Every time we go they are showing the work of a different artist. It's college-indie and casual. + +The employees don't act super enthusiastic, but they're decent and polite and do a good job. I love the humor of whoever it is that writes up the food specials on the chalkboard. + +BTW, you can get vegan whipped cream here and it's SO GOOD! :)",review,cebfUwMZxY30pgjiBLw6xA,3,4,0 +VXIkI9_EbDbYHeO9IzKjJg,2008-11-18,-cu3MI5GofQOgr3BAFPSyg,2,"This might be a good way to kill time if you're near the airport, the food really wasn't that great. It tasted cheap and like it had been sitting there for a very long time. I had the caldo 7 mares and it was lukewarm, wayyy too salty, and the shrimp were mushy. It was pretty gross. The carne asada tacos were mostly gristle, and I couldn't really taste my enchilidas with the thick blanket of sour cream over them. For $20, I could've gotten much better Mexican food somewhere else.",review,zAfxIeb4aX5XJA1g5C_1uQ,0,0,0 +FUKRPXgUx9Gm8xo4c9VosQ,2010-11-21,8c1LVNnWWprVoiHQkP_6Mw,4,"I am always in search of good food fast...not fast food! I think Jimmy John's knows what they are doing, and should continue to knock out those sandwiches, FAST. + +I love that I can pretty much know, I will a) Not wait in line and b) be in and out in 2 to 5 minutes flat! Heck yeah! And get a very tasty filling sub. + +I recommend the Lulu, it is very good, and has tons of meat. + +Oh, don't waste your hard earned money on the Avocado. This is my only complaint about Jimmy John's, they have pureed avocado and just spread it on like it is mayo, only they don't put much on. I think it is a waste of money. + +This is my go to lunch place when I am in a hurry!",review,L3XWX_dd8_pYnRSMdppjDg,0,0,0 +z1Np8_oQECKWGCwJJ8864w,2010-11-04,jNtfzJ7qObiUwIyHkMFzhw,5,"I LOVE this place. Great food at great prices with great service in a great atmosphere. Great variety, great spices, great presentation, great menu. Every entree gets a cornbread dish skillet to nibble on. I think I would love everything on the menu. Can't wait to go back and try them all. Love It!!",review,F82JoyU1Y5yFuSeKfGxoAA,0,0,0 +Snp5LyDO9NeQiuFPOlkavw,2011-02-12,sSKE-UMoM_1wjuW29yT9iQ,4,"This place is great if you are looking for something sweet and are in Scottsdale. I had the tin roof sundae and it was out of this world. I love sweet and salty together. Sugar Bowl is also open late so its a great place to go if you are hungry or drunk or have the muchies and need something good to eat. The service, however, is a little slow and I would never dream of going during normal hours (I have been late at night) with the amount of kids that are probably there!",review,mlBC3pN9GXlUUfQi1qBBZA,0,0,0 +K2_Hmmo5crTYWiT_1sWnfQ,2012-09-04,7OTX6no_YKFuZLxDatF0Fg,5,"I have to give them a 5 for their Guacamole and chips. +I am just in love with it. + +Everytime I go to the US, I have to go there. +Cheap, super tasty and I love the salad bowl option they have (as I cannot eat wheat flour). +The meat is always tasty and fresh and again .....their guacamole ....the best !!!! + +Always clean and fresh with friendly staff. + +Healthy fast food ..... + +Just wish that we had it in Canada !!",review,oRRHrcRPcEAnOepF3KPfsg,1,2,0 +BcRb2bBN9pGdV8Ef5-dKUA,2012-05-09,mbl7pzonBNY8XaK5eumPdA,2,"I had high hopes for the Habit since I live only a couple miles away, but it was mostly disappointing for me. I'm vegetarian, so I have no idea how their meat burgers taste, and they may be the best in the world for all I know, but the veggie burger was a tasteless lump for the most part. I do give them kudos for having a veggie burger, but either put more effort into it, or take it off the menu and go full-on meat! + +The service was nice, and I like the design of the place, but there are too many good veggie burgers to be had in the Valley to waste my time eating this one. Parking lot is super-cramped, so if you need your meatburger fix, then don't come right at 12 or 6, unless you want to park in someone's yard.",review,YTrENuteaA0cc5JPkmAHlw,0,2,2 +v6zRA0WqOODJjmpvstrpGQ,2009-01-05,JdR_rzoDyUJOC9eDF2iXNg,4,"So, I avoided this place like the plague for the longest time. No reason really, it just never caught my attention. It always seemed to be empty, which led me to believe it must not be that great. Well, don't judge a book until you walk in and try the spaghetti! + +The Bollo Neapolitan has been my favorite pasta so far and the steak sandwich is to die for. I'm telling you- I never order steak sandwiches and I fell in love! I've tried a few of the other pastas and they were ok, but the Bollo Neapolitan was my fav with the runner up being the Garlic Shrimp Pasta. + +Now for the Negatives. The chicken on the pasta just never really tastes right to me. I don't know what it is, but it has a very gamey taste. The dishes I've tried without chicken have been far superior in my view. + +Finally, I've never seen this place packed. That can be a negative or a positive depending on my mood, but I would like to see a few more patrons. So, if you don't want to wait in line at the other Italian joint in the AMC 30 complex (Macaroni Grill) or are looking for a non chain option, check out Neapolitan! The service has always been great too. + +Bottom Line: I'm glad to finally have a decent Italian choice when going to the movies at AMC 30.",review,rjlb-7-JcmM6fR64ZpyTug,2,5,0 +nk6_ipMkmUvUtq6Xvncf0A,2007-05-05,64J8_Mgm85_urWyi8F7zMA,4,"I adore RA! They have a great selection of sushi. Go for Happy Hour. Its only a couple of hours, but you really get some great items for pretty cheap. You can even get a large Asahi for about $5!",review,NgS8s99qQIiHOszKd-m87g,0,1,0 +d3MxUXS1b6U2P_gGuCO1-A,2011-09-19,ifufAIjgZR2Q1FizJnUZJw,3,"Wowza! This place is a total trip! No, I don't smoke, but if I did this place is probably the place I would go to. + +First off, the food was okay. I ordered some chicken wings, which wasn't really that great. My favorite was the Thai Curry -- it definitely had some pop to it. It's one of those that creep up on you. Milk please! My friend ordered some Sake that I thought was real good and smooth -- don't ask me what it was, the lighting was low and I didn't care much by the time I arrived. + +Service was pretty good I guess, and then again the place was drop dead for a Friday night. What's up with that!? I'm sure the place gets hopping on 1st Friday, but that's only one day out of the month -- I sure it picks up quick! + +Ambience, was cool, just reminded me of the 70's in a way even though I didn't grow up during the 70's haha, but I thought the design and decor were pretty cool. Eccentric I think was the word I used. Bathroom was blue and that's all I'll say.......check it out! - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,0,1,0 +cNGI_5GbfNFbZBMQZ-s-UQ,2012-06-11,S0_rymuRwcyOgJ3YdDLmoQ,5,Fresh and delicious.,review,Y66tK6ik9gP7AW9exNoRug,0,2,0 +wqIB7hUTQnCswJV4UyYyEQ,2012-12-20,4DxmctiMbyujXpt7BGElvQ,5,"My boss took us here for a little Holiday lunch the other day and i have been dreaming about the burger ever since! Seriously, the term ""cheeseburger"" doesn't even to justice to the masterpiece they brought me! And the parmesan and truffle oil fries were amazing, too! The decor is kind of cool, sort of an American Teddy Roosevelt feel... Grand old pictures, deer head, and dark wood mixed with high ceilings and light colors so it doesn't feel all heavy. Ok, back to the food... + +The burger has applewood smoked bacon and grilled onions mixed into the patty. It is incredibly juicy without being greasy! They top it with Havarti cheese, place it on a buttered grilled brioche bun, and serve it with a couple of different sauces... One was like a garlic butter type of sauce and the other was like a horseradish mayo. I ate every single bite and didn't care that i was stuffed to the gills or looked like a pig in front of my co-workers! To leave any bit of that on the plate would have been a travesty! I can't wait to take hubby here for lunch (dinner would be wayyyyyyy too expensive).",review,-L0bSNfErGer1UCEa6D4PA,0,0,0 +xcOncADGPr9eki8OU5Ln7g,2011-11-21,33S5MB3TZgtRUsLDEUDZZQ,2,"Glorified panda express + +With that generalization aside I was willing to give ol PF Changs another try when they served me a steamed shanghai shrimp dish that was devoid of flavor + +Thinking less flavor meant a healthier meal I alas was given a shocking reminder of how this place sodium bombs there dishes when I read the nutritional info + + 'tear",review,eiA073MhHpCdwBq8u_luZA,0,1,1 +nLpV9fo8xml-QHOKyOje2A,2012-02-20,-TN2LO3ihHKaJKobbjATkA,1,"Gross, plain and simple! I'll crave some quick Chinese Food and then I'm always upset. What a waste of money!",review,_1PmRIeiFmevDYJtHz4bkw,1,2,2 +gkv2XvXpFgiq4Bb2XK7YmQ,2012-08-17,p0FZQJMsrWbVGgztPAMdDQ,2,"Other than the ambiance of being a Rock & Roll restauarnt, this place isn't good. The food sucks. + +I came in for a birthday party with 6 people, and not one of us actually enjoyed our food. We had called ahead (2 weeks) to reserve a table before a game. When we got there, the table had not even been set up. We were 20 minutes later than planned getting to our table, and we missed 1 entire 1st inning and the top of the 2nd because it took so long to get our food.",review,E5qFR0RBQBoXx8FbrOkdbw,0,0,0 +aXRtJioBYidoHdS2GTTKhA,2012-08-19,pFZHzPZ6W5vf6lROFPSbBA,4,"My roommate and I stopped by here on a Saturday night with my groupon to see how this Fuego is holding up. I've been to Fuego Bistro before, and it was amazing, so this one at CityScape had a lot to live up to. + +I'd say this place gets less than 5 stars based on atmosphere. The place kind of feels like a cafeteria and the vibe from the entire patron situation is just bleh. The best part about the atmosphere was my own company and that of our server, Brandon, who was really helpful and chatty. + +Also, while my roommate got the Chile Relleno, which was okay in my opinion, I had the Fuego Tacos with pernil (which apparently is pork), and they were delicious. I absolutely loved and devoured them. + +Some other key points: The drinks were very tasty and parking is very easy. We parked at a meter (which is free after 5p), and I'm told they can validate the parking ticket for the underground parking. + +Overall, I'd come back here. I wouldn't go here for a sexy date or if looking for something fancy, but definitely for a tasty dinner with great service.",review,bixj1Uu6cEam1J0BtFAK_Q,0,1,0 +qkbloHdDZuHf_0wTqUGPjQ,2012-04-08,Nbac7vW9AZlXG-CjXCvPpA,5,"What a great way to spend Easter morning! + +After taking part in the egg hunt on the main grounds (and BTW, they know how to do it here: Massive dumps of eggs full of goodies. More than the kids could carry. Plenty of photo ops. Parents who weren't acting out scenes from Soylent Green.) we made our way to this nicely upscale coffee shop/casual dining spot. + +We were seated 30 minutes ahead of our reservation, keeping my little guy from popping a gasket. I chose the $19 breakfast buffet, and considering it included a custom-made omelette with organic ingredients--as well as juice and coffee--it was a steal. + +Service was wonderful and the staff was sure to make us feel at home. Well, actually better than home because I don't have people looking after my every whim and need while at home.",review,nDBly08j5URmrHQ2JCbyiw,1,1,1 +TuCAYZ89lP_s6D7Y78xNhQ,2011-12-26,b8E4wJ8S6yLs1p4NrVQRQg,1,"Simply stated..............a GREASY burger from start to finish.. + +NOT 4 me....This place I will avoid while I continue on to a real good burger joint.!!",review,pB6-p_DMF0vLzLkHnO9MeQ,0,1,0 +MsouJnTwEDlufZWS5oNy_w,2010-08-03,nzzY-6CorH1X6YNzwBVzyA,1,"I'm very displeased with the service I receive from the Republican party in Arizona. First, they provide us with John McCain. Then, Jan Brewer. Then they crap SB 1070 all over us, which we didn't even vote on. I've never received anything but lousy politics from these people.",review,1PWFPOmqvLx3sGKuuKQr9Q,5,4,5 +Ql2cV2A9alEOlFySzEGNVw,2010-05-10,OUINQqKP-14HOrVkZOb1wg,2,"Pastrami tasted good, but had a lot of tough tissue, and was near impossible to bite through. Rye bread was low-quality. + +Curly fries were tasty. + +Cole slaw was yummy! Really the highlight of the meal. + +Lemon bar was delicious, if a bit subdued. (I like the lemon to pucker my face) + +The brownie was warm and chocolatey, but too many nuts. + +Probably my only visit, unless someone invites me.",review,7cR92zkDv4W3kqzii6axvg,1,1,1 +h1kwVr1eTpBK0rWfcm5QSg,2010-08-28,z8mvrgHn2SyaoqCs_HEesA,2,"I've been to Buffalo Wild Wings before, but my first visit at this location was during UFC 117. + +If you come here to watch fighting events like UFC I would recommend arriving 2 hours before the main card starts if you want a seat inside. I arrived an hour before the PPV portion of the fight started and didn't get a seat until half an hour in and it was outside. I ordered 12 regular wings and I was very underwhelmed. I felt the wings were overpriced because they are smaller than average. + +The main reason why I went here was that they weren't charging a cover or bill minimum for the fight. Also, the atmosphere for a UFC fight was really good compared to the other BWW I went to in Tucson. + +If you want a place with a good atmosphere for a sporting event, you should come to BWW. But your food expectations should be lowered a lot.",review,odaj8Gm4jc7lF20WoZ8RZg,0,0,0 +jzPMl-NoB5F2fwoHX3hN8A,2010-03-25,OdcTDRehDfex0FijvOB28A,3,"I went in yesterday for happy hour to have a birthday drink. I had the house margarita for $5.75. Actually I had two! They were good. I think I disappointed the bartender when I question him why his $7.25 Margarita he was pushing was supposedly so awesome. He claimed Cruz a local Tequila was the reason. I argued just because it's local doesn't make it good. LOL. + +The house Rita stands up alone, as a good traditional Rita on the rocks. Don't buy the hype, as I saw half the crowd not question it and accept the pricier one on special as the way to go. + +The place was busy. They were also hosting a MBA networking mixer just off the main bar. In addition to discounted beer at happy hour they also offered free food! I thought those days were gone but they kept a steady supply of warm chips, salsa, veggie tray, cold pinwheel wraps and one or two hot Mexican items (mini chimis, and bean & cheese nachos) coming. I was going to order a half price appetizer as part of my happy hour, but heck I went for the free food and was just fine. + +My sampling of the appetizers makes me wonder how good the menu was, so I peeked at it. It looks pretty basic but tasty. I think everything was $12 or less on the dinner menu. According to the sign outside lunch starts at $5.99. It may be commercialized Mexican food but it's a step up from some places like Taco Bell and Baja Express for certain. + +The staff seemed competent and to work rather well together. Even though it was busy the staff was calm and quick to serve, which is a good thing. They seem to recognize some customers as regular patrons which was also nice. + +The woman's room off the bar was fresh and clean in this madness as was the bar and all areas I could see. + +I think I will be back. I think I could even become a fan of the place over time. It seems to have a good mix of people and an impressive straight male clientele, worth another look.",review,-9mljS0O9mwdOnGv-Oea3Q,0,0,0 +lUE101QlZgUuIl8OdIzITQ,2008-11-19,ehvtMQ0cTA2GE4xXxd-XyQ,5,"I had to do some painting and needed help locating items and suggestions from the staff and boy were they ever helpful. Nothing like Home Depot, where you have to go and hunt down an employee and when you do they can't wait to get back to their break or whatever was more important than their customer. I was just overwhelmed by the courteous and quick service I received at this location. Even their quality of garden plants surpassed several other super stores.",review,pfwmCVwb1Lhsq4pbxh30Ww,0,2,0 +zDfaNgSYLn-TwquB5A6AaA,2011-08-30,7ccpPAjN9mhfj1Q2sS5kRg,4,"Parking: Nice lot, good amount of spaces and good lighting. + +Curb Appeal: Strip mall Bar and Tavern; Clean entrance, no major issues. Big tinted windows on the side facing Elliot to keep the sun out; the front looks like strip club (not a bad thing, just sayin'); It has glass block windows and a solid oak door. + +Layout: Cool layout; right side is a large dining room with good amount of tables and some booths. Off to the left of the entrance is a large ""U"" shaped bar with plenty of high top tables surrounding it. On the dining level there are numerous booths and table tops. + +Ambiance: VERY clean, noticed that a table stayed unbussed for only a few seconds before it was taken care of. Good sound system, lots of TV's showing variety of sports. I can only vouch for the Mens room, but it was actually REALLY nice. Good clean area with lots of room, plenty of soap and towels. + +Food: My group had a little bit of everything on the menu. Sliders were actually good, wings were good with healthy amount of sauce (Get the Maple Hot...different but good). + +Drinks: Plenty of beer on tap and at a good price. Even PBR for your hipsters out there; good micro and import selection, but not great. + +Staff: This is were they earn the 4th star. AWESOME. Everyone was friendly and seemed to actively look for ways to make the visit more special. + +The Skinny: This place is good. I'd be comfortable bringing the guys here for some football or happy hour beers...and it's equally comfortable if you want to bring the wife/girlfriend/husband/whatever for some drinks and some fun. I suggest you give it a chance and don't let the ""dive bar"" reviews get you. I've been to a lot of dive bars, and this place is a few steps above that for sure.",review,uptgzZkEm4ytmHuZKBtnhA,1,0,0 +f7bGGG2dO0utA2Xcp4jsWg,2009-10-04,ZDvRD1Fn_QYI1dceH5qv1w,3,"Wings in Buffalo aren't usually breaded. I can't stand breaded Buffalo wings. The sauces were good, I can't deal with the breading. The redeemer for this place is that they serve Roast Beef on Kimmelweck. I did not try it, I am sure it was decent though.",review,ACCUr3Ydw5XyPCmoIEdnpw,0,0,0 +_-9pMxBWtG_x8l4rHWBasg,2011-06-21,z3eqTSmgMSoghwCb2FJZ0Q,3,"Fine. Just fine. C+/B- average-- all around. + +The decor was rustic and lodge-like, yet still open and modern. No complaints here-- aesthetically pleasing and lacking the bright colors and loud mariachi music of more traditional Mexican restaurants. The table we were sat at seemed to have been haphazardly wiped-- not totally clean. Our server was okay as well-- friendly enough, but seemed generally disinterested in her job and us and was not very knowledgable about the food she was serving. + +The food was fine. The salsa served with the chips was totally fine-- fresh enough but not very flavorful-- a theme we would soon learn would repeat itself throughout our dining experience. We started with the avocado egg rolls with cilantro honey dipping sauce. These were the highlight of the meal-- the sweet sauce complimented the creamy avocado taste nicely. My only qualm here was the $10.50 price tag for 2 standard sized egg rolls. Seems a wee bit steep for what it was, but still very tasty. I ordered the vegetarian tacos and they were good-- not wow, but good. I appreciated the variety of vegetables and the fact that they had veggie tacos in the first place (many more standard Mexican restaurants do not). I do wish they'd had more spices. The side of rice was pretty good, but not as flavorful as I'd like. The veggie tacos are also served with some sort of pickled cabbage onion slaw (because the borracho beans that accompany the other dishes are cooked with bacon). The slaw was also fine. In general the food was acceptable, but a bit bland. I should also mention that the portions are quite reasonable-- two smallish veggie tacos and a bit of rice and slaw. Sometimes the portions as more traditional Mexican restaurants are absurdly gargantuan-- it was nice to see a normal sized and relatively healthy-seeming Mexican(ish) meal. + +Full disclosure here-- our visit to Black Chile was prompted by a card we'd received in the mail good for $20 off any meal. So we figured it was worth a shot-- and it was, but maybe not a return visit. Our bill (pre-discount) for the appetizer, 2 entrees, and two sodas came to $40. If it wasn't at the Biltmore, I'd say it was a little steep, but considering its location, it's probably right on. I'd go back if the food had wowed me, especially since it's in my neighborhood, but it didn't, so a repeat visit isn't likely. There are enough solidly 4 and 5 star places in the vicinity that 3 stars doesn't generally make me a repeat customer.",review,4d4xIM4lBG8BDZrG9pAuiQ,2,4,0 +-4A5xmN21zi_TXnUESauUQ,2009-10-31,S0Q02sah_5lTUvPwHL9xgg,4,"Stopped there for breakfast. A cozy little place, with very friendly and smiling persons. Their house coffee is fine, but will have to go back for a dirty chai. I had also a bagel (just like any other). A nice drive through, and a good alternative to start the day!",review,LqgGgWi3FLHBViX9tmZ9sw,1,3,1 +sDozh6iTylTJD26d7xcgGw,2012-12-27,BTnz63v_GpAgZw_a3diIfQ,2,"If I had written this review prior to an incident in September it would easily be 4 stars. + +The bar tenders were awesome. One night I was carrying around a largeish trophy (Why because I own one). I put it on the bar to order beer and they asked me if I wanted a glass or if I wanted them to put it in the trophy. Yes, yes I did (although they did have to pour the drink into the glass first cause the trophy was to big to properly fit under the tap). This might not be a big deal to some, but since I've been kicked out of bars for drinking out of said trophy before and that was the first time I've ever had a bar tender be so cool about it. Every time I've been hear the bar staff has rocked even when they are extremely busy. + +Food. I think I've eaten here once, so I'm not going to comment on it. However I have been here when they switch from neighborhood bar mode to dance bar mode. If you are at a table still eating at that time they have no hesitation moving your table out of the way, if you're lucky they will tell you about it before hand. + +It's a good place for watching football/UFC/etc. Could maybe use some more TV's. Music is nothing outstanding, it's your typical dance/top 40's/etc that you would expect at any college dance bar. Since the crowd often is college/recent grads, it fits the bar nicely. + +I don't normally include bouncers in my reviews, but after what I saw the last time I was there, it's affected my opinion of the place and is the reason the place is only getting 2 stars. If you are kicking someone out and the are leaving peacefully, there is no reason to put your hands on him, other than maybe to keep him from falling over the place. So when I see a bouncer aggressively pushing a guy who has thrown up his hands in surrender, and in the process the bouncer knocks over a girl who has done nothing wrong, that's just not cool. Maybe it's just me but I would think someone who works for the bar should be picking her up off the ground instead of nearly trampling her to help the bouncer who put her there while throwing out someone who is giving them no resistence on his way out.",review,AM2X1tso9b62GhMobfTHAw,0,1,1 +xtX2qS64zP2NRPV_7NNqHw,2012-07-10,HPH8ubLvQU0PgmKUdubDiA,5,"This is my favorite spot, waterfalls everywhere, beautiful flowers, fun slide, and great food!",review,I_i3bHwfSFne6eTHPe4tMQ,0,1,0 +C_eWAEOvkHZ_IZYGwjtpmg,2012-07-19,PH2brIyiSG3XdXgInaYudA,4,"What a great place. We (family of three) went on a Sunday afternoon. What a fun place, great food, friendly staff. The manager was there, she let my son sit on the michanical bull. fun. fun. fun",review,nLXfL00a9nSjB7T_OqKscw,0,0,0 +nXKwzVKJCtIGd4HxXgjdnQ,2012-06-24,sKxtwP9oYzDkgf0TqdLtdQ,4,"Love this place pretty decent sushi for a good price, I love that they have happy hour and reverse happy hour. They're even open till 2am for when I'm craving sushi for a midnight meal:) +Only reason I gave it 4stars is that the service is slow sometimes",review,19He-fV6qMeUHkaUgry51w,0,1,0 +IM-9thHqQbBK5tX5MfTzBQ,2009-01-03,F2g3F1MZpo9MDuFZajcs6A,4,"freaking huge portions. the sandwiches are super yummy. the french toast, covered in bananas, and that crumbly sugary delicouisness is to die for...and you might unless you jog 10 miles afterwards. but the real treat is the desert counter...oh my god, even to just look at it is an honor. good bang for the buck.",review,ST8Yzlk2MqKlcaLqL2djBg,1,1,1 +JhupPnWfNlMJivnWB5druA,2008-05-11,81w8h2cbi7bZMOI8s-10mA,2,"Blah + +Food is boring and sub par in my book + +The ambiance is chill and super trendy Scottsdalish + +The drinks are all old time drinks. Think Slow Gin Fizzes, Rusty Nails and Manhattans + +The service is good though",review,PShy2RYNadDUhJf4ErOJ7w,1,4,2 +rDvz5jX65gpfONFu7er9Tw,2012-02-14,CgGO-VEEeUFngo0uf6Z7DQ,5,"Simply magnificent. Easily the best Mexican food I've had the pleasure of enjoying in the States. I can't stop thinking about the carne asada Torta. The rice and beans are the best I've eaten. Tacos are simple and delicious. The most exciting part about it is that I get to go back and try the famed Bombero Burrito and other, more ""exotic"" things like the lengua and menudo! + +You must go!",review,j-aruJbrUGLP4ZwhQfDJHw,0,1,0 +yVQiGdxmnrkJDyQXv2maNA,2011-07-26,fL3WXz6lrQEkvJlKs9uOpA,4,"I've now been here twice, one to eat in and one to carry out. + +All in all, great prices, decent service, and semi-good food. + +I've had the pho when I sat down and ate at the restaurant. Not the best I've had, but at the price, really good and fulfilling. + +When I've carried out: had the bun thit nuon. Great stuff. Mi xao and hu tieu xao were just ok. + +I like that the whole place is very big (from a recent expansion, I'm reading). + +The bathrooms are pretty good and the service is not too typical Viet: actually friendly-ish and not too rude/brusque. + +I would come back again for sure. The prices are what you would find in California, so that is just too good to pass up.",review,mqQOjNJ2tSoZtLHb3fzaCw,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2011-03-08,wya3YYqdvFVG2IuTfPglWg,5,"One of the best dining experiences we had in Phoenix. And what a surprise, without Yelp we would have never found this wonderful ""hole in the wall"" in a space the width of a bowling alley. I had The Italian which was Pepperoni, salami, ham, mozzarella, basil, tomatoes & marinara wrapped in a delicious pastry shell. Imagine a gourmet hot pocket. Mmmmmmmmmmmm",review,_wyCFNqRGkS3A0EmGCUNJQ,0,1,0 +L-uPZxooP_ziXCtRrWi8Pw,2009-12-06,dy_BNzGIzkzEgWlpw8izlQ,5,"Cafe Monarch is more than a restaurant - it's an experience. If I had to put an analogy to this one - I would say that most restaurants are like watching a concert on tv and this place is like being in the front row at a great show. I was immersed in Christopher's beautiful world and entertained the entire time. + +As Camille H mentioned, this place may not be for everyone. There is no menu provided to pick things from. This is not a place for a quick snack, although, I bet if you asked, Christopher would provide it. If you are a picky eater or have food allergies, call ahead of time. But if you go in with the mindset that you are going to be surprised with a meal full of the freshest ingredients, wonderful combinations of flavors and fantastic stories to every dish, you will not be disappointed. + +I am not sure I would bring my five year old to this place. She would enjoy it, but I think my husband and I will get most out of our dining experience with a babysitter. Since Christopher is a one man show - chef, server, host, story teller, etc. etc, each course takes awhile, and my child's attention span most likely would not last through the entire meal. + +For a description of the amazing food we ate, please see Camile H's review. She described everything perfectly. + +This is my new favorite place in the valley. I can't wait to go back! Highly highly highly recommend this experience!!!",review,0H9ne5frm1GjO6TjUwbxlw,4,1,0 +mn1LFFcQwEpir38_mPYH_g,2011-03-24,mNYaWcbEq6nqtBRz5BDpGg,5,"I have been coming to Lai Lai's for many years now and have never had a bad experience! The food is always great, and if you mess it up you have no one to blame except yourself since you decide what all you want in your bowl lol. Sometimes I don't make it in for a year or so but the staff always remembers me and that makes me feel very much at home. Lai Lai's is great!",review,-d0M53vRvvZ_ZXL0nWbH5Q,0,0,0 +GjvIDOEhdQB1oPrFeSpxBw,2012-03-04,nBYIuF4ck5q4OkTp8zF4AA,4,Everything I have had here has been wonderful. Very fresh. The service is good. The food is wonderful. I have eaten at this one and the one in Glendale. Excellent food in both locations.,review,mTx0GhWWV6NOAd_crYJw8w,0,1,0 +QVR7dsvBeg8xFt9B-vd1BA,2011-06-01,TQkbwXxOAROL4xWbFLjo1Q,4,"Yes, I am a fan. Particularly of the brunches! They bake their pancakes which makes them ooooh so good. The King's cakes are delicious and are baked with bananas and chocolate in them and served with peanut butter (which I'm personally not a fan of). The portions are very very generous. On a nice day, the patio is great. Comfy seats, evap cooler outside, misting system. Most people don't know about their brunches I assume, since the entire place was empty when we were there at 10am. The dinners are great as well. The pulled pork sandwich and their pizzas are surprisingly good! It definitely has a commercial feel to it, but I believe it's a local business which I'm all for.",review,0aQyjVmcytcjkiabuhkIgA,0,0,0 +GRFunGSUZxXqNCZJrN8Oow,2012-05-31,ptxLIArkY2iJvYzqYkF8JA,5,"I've only been here once, for breakfast, but I was very impressed and hope to make it back again soon!",review,QJcLiT1zTJMzrsXWi5RgOQ,0,0,0 +-GYx5GAx_-4XEsn7mFwdkA,2011-08-24,Uvq2tsy6FNrSycP-JLR3Kw,4,"Reddddddd Robin.....Yum. + +Whiskey River BBQ burger is really all I get here so i cant speak to any other thing. Its just hard to stray away from that good of a burger. + +When I was here most recently, I ordered the sweet potato fries instead of the normal fries....they were great...however they dont have a sauce for them and there is also no brown suger or anything on them to take them to the next level...so you end up with good fries that get bland after about 5. :( comeon Red Robin, develop a sauce to go with those fries. + +As always, the staff was very friendly and attentetive. I always seem to get good service here.",review,iAXUAPxzKXxWMCiXLjY-ww,0,0,0 +ABrSt3fsirLrUYNVrD3fbQ,2012-04-12,1q19O7RecORsrJD3vDFA_A,1,"I really enjoy writing reviews praising a place for great food, service, ambiance, and value, or any combination of these. Unfortunately, this isn't one of those reviews. + +This is a fish story... No, not about the big one that got away. Nor is it about the time I was fly fishing with my dad and had to rescue him because he stepped in a deep hole and sank when his waders filled with water.... this is about the trout that saved the day. + +When my wife and I arrived at the Greene House, it was earlier in the evening, still happy hour, though we were there for dinner not appetizers. Checked-in with the hostess and were quoted a quoted 30-45 minute wait for a table. We knew the place was popular so weren't upset with the wait as we were looking forward to a wonderful dinner. + +Went to the bar to order wine and that's when our disappointment started. We were sitting in plain view at the edge of the bar facing the entry and there were TWO bartenders, In spite of this, in the 15 minutes we waited, occasionally waving and saying ""excuse me"" to get the bartenders' attention, we never even got so much as a Hi, and certainly not an opportunity to order a drink. + +I had only just told my wife I wasn't willing to wait another 15-30 minutes wine free when the hostess pleasantly surprised us by saying a table was ready. Our relief was short lived however. + +After being seated, it was approximately 5 minutes before our server came to the table. We ordered wine and water. + +Our wine and water came NINE minutes later... a total of over 30 minutes since we entered the restaurant before we received our first beverage. + +We skipped an appetizer, planning ahead for dessert, and for our entree ordered Rainbow Trout with a side of Truffle Parmesan Fries. + +Approximately 15 minutes later, our SIDE of Truffle Parmesan Fries showed up... sans trout. + +When asked about the missing trout, she said it'd be a few more minutes because the kitchen was backed up. When asked why she brought the side of fries, she said she thought we wanted them first, a leap of logic that totally escaped us. + +When our server said she could take the fries back ""to keep them warm until our trout was ready"", my wife and I looked at each other in amazement and made a spontaneous decision that given we were now STARVING, our original side of fries would serve us better as a hot appetizer than as a reheated side with dinner. + +Finally, a few minutes after our Truffle Parmesan Fries were gone, our trout arrived. As I indicated in the begining, it saved the day. The fish was fresh, perfectly prepared and exceptional. + +As good as the trout was however, is wasn't good enough to make us ever return to the Greene House. There is no reason any customer should suffer through such slow and uninspired service when there are at least a dozen restaurants within a 2 mile radius of this one (much less dozens more throughout the Phoeniz metro area), that are SIGNIFICANTLY more enjoyable. + +Spend your hard earned money somewhere else",review,N-Hn3--2DO5HzvrNcRGRag,0,3,0 +zMa6YoEekpABg1HZnnTZdg,2010-03-13,KtyaE9HrKEk1m7VXfsTSGA,4,"We went here because it was the only decent place we could find open after the Suns game. Fresh fish sandwich was delicious, as well as the shoestring fries. Great service, nice vibe, I'd go back.",review,xq10i6hsaFuIk-DCJGcohA,0,2,0 +ntb-U-AwDqzcVJnVNh9sAA,2010-08-13,t_H1vE4sYHSz4JY_tppO6g,5,"This place is so cool +i was startled to find that Tempe has something like this +It reminded me of the C.A.T. in Eugene. +There are soo many bike parts, and tools, frames of all kinds +from what i've learned is that you can pay a small sum and build your own bicycle here, or offer to volunteer and have your bike for free by working off the debt +i came here a while back to see if they had anything of interest, and wouldnt you know it that on my way a nut and bolt fell off of my stirrup so i thought perfect, now i can get another +the dude running the operation didnt charge me a thing +so i left like a $1 in the tip jar +it's such a priveledge to have something like this for the community, i just hope enough ppl reinvest their time into it so it can exist for generations of cyclists to come.",review,pv82zTlB5Txsu2Pusu__FA,4,4,2 +bpPVn4nF8YR40BjhO6YP1w,2012-04-04,pWn9Fof6PFZWIAdxEFNudA,1,"Long wait for food, waitresses that don't know what they're doing, grumpy hosts, and crappy food that keeps us off the lake for 2 hours is not somewhere I plan on going ever again.",review,pqnYZy25nEwGAAjShOpJGg,0,0,0 +L_MtTn4IUBTmQtqqM2iFqA,2012-01-03,WRD9CtlO2c_qyO5ZdKbYQA,3,"My parents love pho so I've practically been enjoying Vietnamese cuisine since the womb. Ha! No wonder I love it so much myself that it was always on the weekly dinner rotation when I lived in OC. Alas, I moved to North Phoenix and I dont have little pho shops or boba cafes on every street corner. I've learned that I have to drive a ways to Chandler/Mesa to satisfy these cravings. Imagine my surprise when the husband and I noticed Tea Lite Cafe when we changed up our movie theater location this past weekend. Of course, we had to try it out and we'd been dying for some pho for months now. + +We both ordered the beef pho and took a seat. The place is small but there's plenty of seating and still feels spacious. The cashier up front was super friendly and welcoming which was nice. We didn't have to wait too long for our food to arrive...another plus. + +The pho itself has really tasty broth and the beef was nice and tender. I was disappointed by the small portion of bean sprouts, mint leaves and limes that accompanied the soup. I'm used to overflowing plates of these veggies so I can load up my soup to my heart's desire. In fact, my hubby usually counts on me doing this since I end up eating all my veggies and leaving most of the beef for him. Double ha! But the lack of sprouts and mint leaves didn't put a damper on the great taste of the pho. What I did miss was the traditional pho ingredients like tripe, rare steak and tendons. I know, I know...sounds intense but trust me it makes pho taste soooo good. I guess I just have a usual when it comes to pho so I was a little disappointed when I couldn't satisfy my craving to the utmost degree. Woe is me. + +But let me conclude by stating again that the pho here is really good and has a great flavor to the broth. I think the hubby and I will go back since it is so conveniently located to us. It'll definitely do in a pinch although I am sure I will occasionally find myself making the trek to get me some tripe!",review,hcctCQy3bdZMezrUKkZLtA,0,0,0 +qMkIbQFrROSnPaQ7at85-w,2010-05-23,naPhRdEx39hEW-IfvpO5wA,5,"5 ENTHUSIASTIC STARS + +This is a large, well maintained botanical garden, teeming with birdlife and abundant in blooming cacti, succulents & other flowers. + +Even though it can be HOT, it is very easy to spend half a day here, as we did, wandering the trails. If you need a break, there is a patio cafe where you can get a cool one. + +This place is a true delight and a great asset for Phoenix.",review,kbJNDcsBE-U_GiOY43hwwQ,1,2,0 +Xk3inJcuBGLhavUcdlINZA,2012-05-25,luxaie_HxcMNuIZ13dZXIQ,5,"5 stars? Definitely! + +Upon walking in, everything from the atmosphere, decor and staff was warm and inviting. We each ordered a 3 course meal, and agreed on different selections. The addition of a homemade mozzarella appetizer and an amazing dessert meant we each tasted 8 dishes that night. 8 amazingly unique and delicious dishes. + +We tasted from every section of their menu, including raw (butterfish and albacore), cooked (gnocchi and risotto), and meat (short rib and pork belly). Pretty much everything was ""my favorite,"" and a couple of glasses of Barbara complemented the meal perfectly. + +It was pretty quiet on the night we visited... if I may make a suggestion it would be to GO GO GO to Crudo. Like, now.",review,0gMAvqyMl5b4oWqq1HokaA,2,5,1 +qkbloHdDZuHf_0wTqUGPjQ,2011-07-04,mrpHZFnKHAqmVCo_f8VcPw,2,"We visited Frank & Albert's on a Sunday afternoon for lunch. Hardly anyone was there, as it was about 2:30 PM. We had eaten lunch there a couple of years ago on the patio, and I had a great time then. However, the temp was 114 on this particular afternoon, so the patio wasn't an option. We were the only people in there other than the dude who talked on his phone the ENTIRE time we were there. He even managed to order and eat his entire lunch while yapping. + +I ordered fish tacos, as I had the last time we were there. Something has changed. A previous reviewer mentioned this, and he was on the money. I received two constructed tacos . . .soft tortilla shells in the shaper with cabbage etc. only no fish! Two large-ish filets of fish were on the side! It was really messy . . .I had to tear apart the filets with my fork, smash some fish into the full-of-cabbage tortillas, and complete my own taco :( I gave up on the second one and ate the veggie taco and the fish separately. I really didn't like the seasoning on the fish, either. I thought it was too harsh and blackened. Ultimately, the fish tacos were ""meh"" to say the most. I will not order them again. My bf ordered a sandwich and since he must follow a special diet, he cannot eat mayo. He reads ingredients very closely and requests things he can't have be left off. His sandwich came slathered in mayo, even though it wasn't mentioned on the menu as an ingredient. When we looked around for our server, he was nowhere to be found. So, while I munched on messy tacos, bf sat looking sad for the next 5-7 minutes until we finally saw the server and flagged him down. + +That being said, the server was AWESOME about making the new sandwich sans mayo, and we even received an extra order of sweet potato fries with sea salt. They were yummy! And when you see their house ""chipotle ketchup,"" DO try it! I looked for it in the Biltmore gift shop, but they didn't have any for sale. Oh well. + +I am not swearing Frank & Albert's off forever, but since I am only in Phoenix a few times a year, it will be a while before I go again.",review,nDP1Ry-y5x-lZeOwULY88w,0,0,0 +LRuIY8JFqadCSYLo242MGg,2012-04-05,3fVk0RlqxXrhtQ7EL71MVw,3,Pretty good deli sandwich but a hassle for parking. Love the selection of things to buy sorta like a little market in NY!,review,S5hUJTLbnCxidsR5IRsKzQ,0,0,0 +6Tt0mGKbMoAz1GsjkVhbMQ,2012-05-25,YTzrrPFgcC7DjAr2Qp8U2g,5,Really delicious breakfast burritos! They are true Mexican-style! I get the ham and egg breakfast burrito and it comes with cheese and a fresh tortilla. They are inexpensive and really big! I'm so glad I work a mile from this place! I go at least once a week!,review,mVPISwK-W6gmlbR5oemOsQ,0,1,0 +kcVUCvXL8e18XmBgBsXumg,2012-10-27,Ip0JXwa-hjoDunykO92Weg,5,Had my Snaaz 5k walk for education very beautiful park!!! Clean and would be perfect for walking a dog! There's lots of parking and also there is a desert in downtown Phoenix how nice! Real Arizona feel! I would definitely take my parents or my aunt for a nice walk on a fall morning :),review,iPhoJlwisUKGGrA0QNmYMw,1,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-07-21,jjzfYhmEGW1a12e7G9tWEw,4,"Valet only parking, unless you want to try parking by the bank. Last two times we weren't able to. Not crazy about their cocktails (pretty weak) but the Bloody Mary was a welcome start to our Sunday brunch. It's not listed on their menu but they have gluten free options. Tried the egg bake, pretty good. The salmon and pork chile verde are delish (love the homemade cornbread). Overall, the atmosphere and food make this a great brunch or lunch time spot!",review,TzRNJqZOti3QmNIGXjAzQg,0,0,0 +Ta-fY1c_E8qHBBDQGyxPkg,2011-09-17,9Z3B3FNCFrczj2Sw-r4e-Q,4,"Excellent service and great tasting food. What more could you ask for? A bit pricey, but that is to be expected with the level of quality. + +The wait staff will cater to your every need and will make sure your lunch or dinner is to your liking. + +I came here for lunch on a business lunch and it was everything I expected. I had the chicken caesar salad and it was great. + +If you are looking for a place to meet up after work or to have a power lunch, I definitely recommend this place.",review,aQQn3GztQ_gTb0QOEnxyCg,0,0,0 +Dy8d1vPTTutHUaqfI5-8Lg,2012-11-13,MVs9wyF_ynm1z_0mL2oPtg,4,"I've only been to the MIC 4 times but so far so good. At this time I have taken only the spin classes and I must say the room is amazing. The lights are awesome, the mirrored doors that open to the outdoors are very cool. Last week Todd opened the doors and we did spinning in the rain. It was so much fun. I also have to agree with the reviewer, Emily, that Todd's class is fantastic. It is filled with energy, great music, and is a very challenging ride. The one complaint I have is that the class is only 45 minutes, I would prefer it be an hour especially given the cost. I cannot comment on the yoga as I have not tried it but the yoga room also looks amazing. The cafe is a nice addition and the menu items that I have tried have all been great. I will definitely continue to do Todd's class when I can and hope to try out a couple of other instructors in the future.",review,hN-QujhRMXjgp7wmyQsw-A,0,0,0 +QGeliKMObpVZ3jP89--ZIg,2011-06-04,fe_4di_mXeamb6D0YLaWiA,1,"I have received two pedicures and a manicure from this location. I usually prefer a more spa like experience but the cost is low and I was attempting to save a few dollars. Cutting cost may not be a good thing to do when it comes to body care. I won't be returning because I am concerned about health violations. + +Pros: +Quick service +Cheaper than the spa, salon + +Cons: +Improper cleaning of foot baths. I thought they were good until I saw them seat a women at a used station. They only took the sprayer and rinsed the dirty bowl. (I did let her know) + +The foot massage was more like a foot beating. About an hour later my ankles felt like I had rolled them. It took almost two weeks for them to feel normal again. + +The sent in the shop is of fake nails. If everyone has on a mask, I would like one to.",review,tozhcHsAWG2Zc-5Q7ubatQ,0,1,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2012-04-05,EOLhi7r5TXelmdSHUL8z2w,5,"Very yummy, my favorite roll is the Las vegas, and here they make a good one and it's 1/2 off during happy hour. I keep meaning to come for the all you can eat sushi! Try the Ice Cream sushi roll, this is one of the only places I know that does it and it is delicious!",review,tTQwXGXwGrcEnrJ4gziGAg,1,2,1 +iDYzGVIF1TDWdjHNgNjCVw,2008-03-10,epmHGGJQ_GmdrM1hY6_rJA,3,"what better way to end a perfect Spring training baseball day than with a marg, Mexican food and your girlfriends... +the local in the group said this place would be crowded on a Sat night, so we weren't surprised with the wait time, but if a place is used to being crowded....they should have a better wait plan. if the bar is full (which it was for a bit), there is not much space to hang and wait, once we got to our table, our waitress spaced....got us water and then never came back. i liked the menu, as it spiced up some of the normal Mexican fare...like the shrimp chilaquiles with chipotle cream sauce that was great! the guac is good, but deceiving as it comes out in this huge mound served in a pestle...in actuality, there is a lot of lettuce on bottom then cup of guac. and my house margarita was more tangy mixer than tequila, kinda ick. + +i think this place has potential and i might try it again if i could do it on a weeknight, but for now it just gets my average.",review,4GJWpmNh6RIe0AW4wj8PEg,3,3,0 +Ax11wyp-FudujeU9nejQbw,2011-05-17,1_v8k6f_YNvulIdN6y3g4g,5,"I've been planning a visit to the Public Market for some time now, and was downtown today so I finally stopped in for lunch. I had the ""Friggin Chicken"", which was friggin delicious. The market fare is counter service, but when I was ordering the cashier was very friendly and courteous and brought my food to me out on the patio. + +This was a very pleasant first experience, sitting on the patio reading a book, sipping my canned mint green tea, and eating my sandwich with a side of couscous. The atmosphere was very relaxed and there were others nearby sharing a bottle of wine, or just finishing up their lunch with good conversation. Speaking of the wine, there was an impressive wine and craft beer selection. I'll be going back to sample the beverages very soon. + +On my way out, I stopped at the coffee bar for a latte, which was much more bold and flavorful than your ""Fast Food Coffee"" variety; a great way to finish off my lunch. If you're looking for a quick, inexpensive, fresh and local dining experience, check this place out.",review,OdsfcVr3jejVR2y_3rcVtQ,0,1,0 +seu8O6yPQ5Yz8kQv-KFnKQ,2010-02-12,yj_yJ_x0qvFhotz891qh_Q,2,"If you have $6 burning a hole in your pocket, and would like a thimble full of ice cream, this is your place. They have a terrific selection of flavors, and you can sample as many as you want before choosing, not to mention they are part of a coffee shop too. Unfortunately, they charge you a thousand dollars for a scoop of it. I'd rather go to Mary Coyle and get a Banana Split for that price, or just save my money because the idea of paying $6 for a scoop of ice cream is absolutely a fool parting with his money. + +Two stars because it actually was tasty.",review,JgDkCER12uiv4lbpmkZ9VA,0,0,0 +v0ozmsV131z3de5p_-w3iQ,2009-02-25,ch39MbgXMH8IpZTEozBe2Q,4,Still not much hair to cut but Helen does a good job and has developed a following of both men and women. Don't spread the word or I will have to wait longer.,review,J72XoQspNBmPsX2iKl2YvA,1,1,1 +0jDkXQdprSgbx8GeK0dcTg,2011-09-01,44i4UuynNOgQxLwbbxoj2A,1,"Ugh. I don't like giving a tough review, but this is a store that needs to address a couple things. + +1. The Service: Long lines and unpleasant cashiers. +2. Outdated Store: This wouldn't be so obvious if they just did a little cleanup and merchandising. +3. Produce: Maybe in this store they should just no offer produce. The little corner in the store makes you think it was an afterthought. + +I think just a couple things that wouldn't cost much money would go a long way in making this store a go to place for me. Not there right now.",review,5hIcclyqd9yelg2BlsiXBg,0,0,1 +KRqtYdnDpwqYfWkFhZYjow,2012-08-12,saQ7um_U11tXGRYODzdMyw,3,"First off, it's fast Chinese, and they lived up to their promise on that one, we did get our dinners fast. I am a huge fried rice fan; and I have to say theirs was horrible, stick to plain white or brown rice. However, I had the beef with broccoli and that was ok. It's not like Beef with broccoli is exploding with flavor anyways, so I can confidently say they didn't mess it up. What I do like about this place (besides how quick our food came out) is that you can do the meal deal , typically only offered at lunch, for dinner which gets you the egg roll and crab puff at dinner. I love crab puffs, again theirs was just ok and I didn't care for the egg roll all that much. Overall it was fast, filled me up with a huge portion that I took home lots of left overs; they were open kind of late - until 10, and it wasn't the worse thing I ever ate. Also, they had very friendly service.",review,aIbwrnrP4kTufADO-jGZxA,0,0,1 +t4pkeGscooStLjy-Js5Byw,2010-03-17,uVGEIIXxZVNTNxwwn9-wGw,3,"As a fairly new connoisseur of Greek food, this place is pretty good. I like their pita a lot, and the fire feta is quite addicting. The salad and rice aren't anything to write home about, and I'm not crazy about the tzaziki sauce here (love it other places)... the street gyros were decent, and the tea that they serve here is delicious when mixed with pink lemonade. I wouldn't go out of my way to come here, but I'll be back when I'm in the 'hood.",review,sMIOqXFpm6XuBlaokNdpAA,0,0,0 +bZivzFTkkjNtUBSuMhoCtg,2012-01-06,XBViOsfJmEryDr7h3waZEw,3,Food is just 'eh... Just one more sushi place of many,review,oBwb6ViGFerK2ATjGEOywA,0,0,0 +1cTI09YZ3uRPXt3YkznuPg,2011-03-05,dtImfcUchWUjJ1CcUAwTFA,4,"i liked this place. small inside +located inside old town glendale so it looks sorta cute +food was gooood! got the sampler combo cause i didnt know what to get and the cheese and potatoes pierogi were yummm!! + +recommended!",review,Zyd78OiKPAqaMSC6OWLb6w,0,0,0 +tyH0l9SPwV2N8ExwILQ2NQ,2010-07-05,CCIF8rs3w9GDRlV7FGaDtA,4,"I like it here. The pizza is pretty good, the wings are awesome! Lots of good deals to be had here and the service has always been speedy and courteous. Very easy to feed a large group for not a lot of cash. I agree with the below comment.. very clean place, even the ladies room is nice and clean (hard to come by) which is very much appreciated.",review,ef7eJrSr7chDjDth0-k2HQ,0,1,0 +mxrXVZWc6PWk81gvOVNOUw,2009-03-22,b3in2Y4DkeKdyzFGtTVaVg,5,"We had read about this place on Yelp and a local had highly recommended it as well. It is located in an office building and not easy to find unless you know in advance that it is in the back of a big office building with a big parking lot. I will preface this by saying that we had just eaten the night before at a highly regarded Scottsdale restaurant in which the service was awful. Therefore, this place won a lot of points with the 4 of us immediately because the service was outstanding from start to finish. The restaurant itself is huge and it is beautifully decorated and immaculate. You walk in and they have a huge open fire spit BBQ chickens and Beef. For starters we had a Caesar Salad--a shrimp cocktail--a bit pricey and just okay, and a good house salad. I ordered their simply grilled fish of the day which was Swordfish with Guacomole on top and a corn butter on the side served with rice. It was a good portion and it was delicious. My wife had Salmon on a plank which was also very good. One of our friends had Short Ribs with Dr. Pepper BBQ sauce and grits. The portion was huge and he raved about the dish. Our other friend had the Duck Breast and it was very good. We had a nice wine recommended by our waitress that was reasonably priced and very good. The whole experience was excellent and we will go again when we come back to Scottsdale.",review,jxBExkM5SUSPTdPmHG-wzQ,1,1,0 +-SxeUGqnKy8YiEV5YA42Jw,2011-01-07,NP6DYMuE28YM9Qgq85lxgA,5,"Love this gym. Not many know it's here..lunch time is the best to get in. I've been a member since Feb of 2009. + +While the trainers are nice, it's a revolving door. You are better off at this gym if you know what you're doing vs. needing 1-to-1 attention. Since LA Fitness just purchased PURE, this will only increase I imagine. Pretty disappointed that they no longer do monthly 're-programs'... But the gym itself is worth the monthly fee. + +If you're looking for a place to be left alone to workout - this is it.",review,JPJDHHyWkOdqvH04LVXWDg,0,0,0 +1qrrdRh4cgMW-dm5kVNmdA,2010-12-30,EUWsGxLk7Lob6aCfdmmITQ,4,"At the ripe old age of 3, it's time for my previous review to take a siesta. Over the course of that three years, Tempe Camera's only gotten better. The selection's improved (finally finding a happy medium between film and digital), the prices are even better than they were, and I dare say service on the retail side's kickass too. + +TCR is now my go-to photo supplier as a working pro. They've either got what I need or can quickly get it, they still know their stuff, and they support both local photographic education and the local photo industry. They're also the only dealer in the Valley that sells Think Thank Photo products, which are best damn professional camera bags ever. + +And if you're an amateur, they've got plenty of friendly, knowledgeable staff for you too. Don't be afraid to ask for someone else; like almost anywhere, they employ people of varying personalities. There are sales staff I don't click with at TCR, but I wouldn't classify anyone as distinctly rude. (If you want that, you'll have to try B&H or Adorama.) If you need lots of hand-holding, the ASU crush probably means you'll either want to shop at off hours or go to Photomark--TCR tries, but the crowd to counter ratio just isn't favorable at peak times. + +Repairs are still something they do very well at excellent prices. When I've had equipment serviced, it's been turned around quickly, relatively inexpensively, and works like brand new. Evaluation of your equipment is still free, as it should ideally be at every repair shop (but often isn't). + +The lab's added a bunch of cool new services, including damn fine plexi mounting, and is doing a considerably better job with film than their old reputation for free scratches with purchase would suggest. Hundreds of frames processed with nary a scratch to be found. + +Rentals I'm a little more ambivalent about. They've thinned the herd out considerably (about half the rentals inventory has taken up residence in the used equipment case) and the selection of lighting equipment is basically unchanged, but they've got the latest Canon and Nikon bodies, and everything's well-maintained and in good shape. Rates are good for what they do have--the question's just if they have what you want.",review,HWi8ntFMy81BVjAsgAwbrQ,1,3,1 +TfTlOE6h9E9o34dEkw9L_w,2010-11-11,9OB2NbDNZVaPpSpMYM8mfw,4,"OK, not knowing what to expect when walking up to the RC when I saw a courtyard full of people mulling around, I thought a relaxed, quiet meal was shot to hell! Lucky for us, all the peeps walking around (seeming ""Zombie-like"") were waiting on Pizzeria Bianco, the Pizza place across the way! OK Back to the review of RC.. I have to agree with Francis L.. Good sliders, fish was below average BUT the Wedge Fries are awesome!! The fish itself was OK, but the breading was watery as if steamed from the inside! I was totally bummed because It had a good flavor.. but was inedible! The 'Tartar' sauce was another huge hit! not a creamy sauce but liquidy with tons of Cucumber chunks... The Onion Rings are worth a try.. and they have a nice Horseradish- ranch sauce. +We sat inside, nice decor... you gotta like the English Pub look which is fine by me! We'll be back for sure!! +Nutshell- Nice Bar menu, good bar food- GREAT drinks!! Great people watching spots from front porch area... Defiantly worth repeat visits!",review,4xw2k2iAEGumGPYlvGlp5Q,1,1,0 +shlAd7PLzWlQrkQ0uYcBBg,2012-01-31,z2QOwXqWRk52uC4fiCofKA,3,Food was good. Service was not good. Only one waitress for entire restaurant.,review,0rbL9XAJKe9sAvbTBqSQ4w,0,0,0 +2I666dqzs1XB6xigIKa9bA,2012-12-14,6MaP8rkKJqslEDg0VtvjKQ,3,"This is a pretty chill spot for drinks & bar food. We went on a Sunday night after a big meeting that was held at the Phoenix Convention Center. They were able to accommodate a group of about 20 of us without any issues (not a whole lot of people there). + +Their quesadillas and curly fries are quite good and I could not help reaching for the nachos again and again, but definitely avoid their Caesar salad (I know, who orders salad at a bar anyway?!)",review,S4y3RDjjVzmi_7mqQZ4Dnw,1,1,1 +6md4A90THda31wTg1bB3hg,2012-10-05,JS-lBKQ5bhNcthyUP4x2LQ,5,"Our go to pizza place! Don't see how they could improve in any area. Customer service is excellent, immaculately clean and the food is PERFECTION!",review,pQ6ij6cOBRB3yJGHbVZHUQ,0,1,0 +AqbgC7Gul5Es1rRzGNLDFA,2011-11-26,T9D4KgxG9paE-ad4FMXUWQ,5,"Hands down the best cupcakes in the Phoenix market. Tammie Coe comes in second with the coconut but sometimes it's not as fresh as it could be at LGO. Milk chocolate is great, taste a sprinkle - it's really chocolate not wax. I had salted caramel it was wonderful. Dark chocolate is decadent. I did try the red velvet and it was good but I'm done trying to understand red velvet. I just don't get it.",review,t2YBANsJYySOXvHyOjcZkQ,0,0,0 +7_zL7NX_rDFwhbLp98PwZg,2010-09-09,JSjBiD0ZRxk21FGi3SP7OA,4,"I normally go for reverse happy hour on Sundays! I have only had good experiences at RA! I dont really do sushi but I do drinks specials, My friedns normally get the sushi and they love it, the prices are really cheap during happy hour time! I normally eat the spicy seaseme chicken wings, shrimp tempura, pork gyoza, and I have tried the california roll and vegas rolls. Great place to hang out on Sunday night, it can be your pre party or a chill spot!",review,vwP5p2RPyl9EazgK9u2w9w,0,0,0 +jgbEZzERVI4yvAAtXWW93A,2010-05-02,qLb2SVPI5ZA6WDGP52QeWw,4,"Once again, the pizza was delish. They were super busy last time I went, and my gf and I had to wait a while to see a server, but they apologized for the wait, gave us two free sodas and were understanding that we needed our food to go ( Kick-Ass started in like 30 minutes!). Very cool.",review,aJfAJPoynVj-CBLGaXE22A,0,0,0 +9oJ3tIJfOd-34XoN-JLziA,2012-06-21,Z_F34tqGjacS7OsnvK5v8w,5,"I had a great experience with this company today. They sent out their tech Steve to fix my Samsung tv. He arrived on time and was able to quickly diagnose and fix the problem. He also provided some helpful tips to improve the performance of the tv in other areas unrelated to the issue. + +The service was professional, prompt, and efficient. I would definitely use them again in the future.",review,WCTef_98bneZmqdwUvIf8A,1,1,0 +wNUea3IXZWD63bbOQaOH-g,2011-10-22,nlDDWyGzvLjIWtwvUsUOJg,3,"Its been a few weeks since I've eaten here..but its only now that I have time to write this long, overdue review. + +Hm...its upscale...kind of comparable to Mikuni's in Sac...but their menu is to some extent, smaller and less tasty. I don't recall exactly what i ordered but...I wouldn't recommend this place to friends. It was okay, nothing that stood out...and trust me, food, when its good...it sticks with me. :) + + Without further a due, edible but i would never crave for it again.",review,Q-sOpdR6P2G7oedWzJSa0w,1,0,0 +rhf8H7KZsMHRAprI5-D3sQ,2012-08-22,L6HivXFLh4eBuQ0bxACcAQ,5,"I can not believe that pizza could be this good. I had good pizza on a recent trip to NY, and this really is the closest that I can find to the pizza out there. + +They say that its the water, but I am skeptical of that. I guess it doesn't matter what they did to make the pizza, it was really, really good.",review,Qgc_li9aTDxw5nsuWwqi4Q,0,0,0 +LzNJLEIo4gh-X_rmDkNkNg,2008-08-07,uvgWeoD9wVFFPrs3i4ogmg,3,I know this is going to be super girly but I love the peach beer at Four Peaks and the beer battered fries are amazing.,review,dY1DjSfdl_2EOhBH0Jc-FQ,3,3,1 +tRjvuIFBdIIxmQvffjLdIQ,2007-10-24,vvA-ky_thU0pBqjzBsdymA,5,"This is the most progressive, inclusive, welcoming, diverse, intellectually stimulating, public-service oriented church in the Valley, if not the West Coast. We've been to more than a few and can attest to that. + +Pastor Jeff not only knows everyone's name but is genuinely concerned about everything that goes on in your life. The congregation is like one big family. Love for your neighbors is not just a commandment at this church - it's acted upon. + +If you're sick of churches that tell you what to believe in and don't act what they preach, you'd better check this one out. Services every Sunday at 9:30am.",review,8WQubmP7G0NM3IyzyMnCEA,3,1,0 +6-Fi2Mow6VY7DDhYq7Vhcg,2011-10-08,bu1GD2_3FikHkzV4WhQ5Bw,5,"Dr. Ellis is compasionate, caring, and really demonstrates his passion for what he does. The entire staff made us feel comfortable from the moment we walked in to the time we left the office. They went the extra step to make sure my 5 year old was having fun at the dentist! I would recommend this office to anyone who has children. Dr. Ellis and his team are the best!",review,w9NP9PLFFP-PYVbtGJX_aw,0,0,0 +CSoURupWEyuyzkjMOExKPg,2011-11-20,GHQHZZyqIFl2siyxZXgaxQ,5,"So happy to have another option in our great restaurant rich neighborhood. The space is much larger than it appears from the street, and is broken up really well into comfortable areas. The open kitchen really does have an Italian country feel, and the lighting gives the very large open room a warm feel. Nice large bar as well. Best of all is the number of walls that open up to the outside-perfect for this time of year. Our server had the perfect combination of personality and humor-not too much, just right. The menu has a great selection, no matter your appetite. The Burratta was nice and creamy, with a nice compliment of apple slices and Rocket. The potatoes with parmesan, rosemary and perfect lemony aioli were off the chain. I wanted an order to take home! Pizza crust is very tasty and perfect texture. Hanger steak was perfectly cooked and seasoned. The brunch menu looks super yummy-we definitely have a new hangout on the hood. Great job, Sam Fox!",review,8R_D8gXoLU2AjEs0dOxXow,0,0,0 +WUZxVr_CaRqEQgzvyeK5tw,2011-02-07,ZyQUKm5pvlrP-5F4qv95zA,3,"I remember a time when Ikea was an almost legendary place where the angels would sing a greeting to me as I passed through the hallowed doors. + +That was a long time ago. + +When I was younger (and significantly poorer) Ikea was the one true way I could get semi-stylish home furnishings at a reasonable price. Many a room was filled with fine pre-fab furniture that was always just a wee bit small. + +It's funny how ones' tastes change. This weekend I ventured forth to Ikea in search of baby stuff. A good friend of mine is with child and wanted to check out what Ikea had to offer. + +Walking through the store I saw the same stuff I saw ten years ago, and while I could still see the appeal, I realized that it just wasn't as cool as I remembered. Ah well, at least I still have the memories (and the coffee table, end tables, TV stand and lamps). + +Ikea is still great if you have something specifically in mind. My friend found a bunch of excellent decorations for the soon-to-be-born babies room, all for insanely low prices. I bought a few pillows. Yes, this is what my life has become. + +Ikea didn't change, I did.",review,ND95DgvN7ba8MabfXE3lsw,1,2,1 +KoIRdcIfh3XWxiCeV1BDmA,2009-08-03,tdKeVkRQmnUVe9RmohEXOQ,4,"I was taken here while visiting from Chicago and had one of the best margaritas of my life. I tried the house (on ice with salt) and it was fantastic, but what I couldn't get enough of was the strawberry-lime one. I couldn't taste a drop of alcohol...and that's when you know you have a good mixed drink on your hands. I honestly could have had three more it was so tasty, but my childlike tolerance for boozin did not allow it. + +The bartender was super nice and friendly, we had many refills of the chips and salsa (damn you, I can never resist), and it was all in a southwestern chill environment. Supposedly the tacos are top-notch, I will have to give them a whirl next time I'm in town. + +I highly suggest going here for a happy hour or dinner.",review,B-yfbXuQta2lDJC2o7pb6g,2,2,2 +yktWUtKBja_Lzk3wwR6RFA,2010-11-12,RIBeyd8ZSk-shae7wP4dMQ,4,"The chicken shawarma is stellar. I get it to go at least once a month, substituting veggies for the rice. Slightly pricey, but you get a lot of food and it's very consistent.",review,ukA4tAsH05itDYqhl7qBMw,0,0,0 +Sb1_G-DMy26YHafNxxhVrQ,2009-04-04,g2yZeiyZEByyeWKESEOklw,5,"Thanks to Chris L's first review, OTFM has been on my list of places to go for quite some time. Unfortunately, I just can't seem to get my act together on Saturday mornings. Today was the day. I was ready by 9 (am, not pm)! + +After a quick stop at the ATM, we were there, Yelp canvas bags in hand, and not disappointed. I had to get that chocolate cherry bread from Phoenician Bakery. I sampled an itsy, bitsy little piece and it was still like heaven exploded in my mouth. We also purchased zucchini bread, honey (which I've already mixed with some mascarpone cheese and slathered on strawberries), grapefruit marmalade (yum), dates, and fresh flowers. + +The breakfast burritos from Gil's Taste of Taos were some damn good burritos. Saving for next time...fresh produce (the lines were already long for McClendon's and I'm not one to wait for veggies) and everything else I wanted (like tamales). + +We saw our own Gabi K's other half wandering down the street too...he looked so lost without her:( Hope he brought her some flowers.",review,wHg1YkCzdZq9WBJOTRgxHQ,9,8,7 +mVha7w96h_eSun6EAomuhw,2012-01-02,C_HYu079qvxL7uQvu4d2Rg,2,"I went here to try a new salon and they were very rude when i first walked in like, I was wasting there time, I just wanted to know about there tanning prices and they kept trying to up sell me on there other products even though i kept telling them no thank you, finally when i got a tanning bed they asked how long i wanted to go for, i said the full time and the lady tells me i should do less time because I'm a red head, I told her that i have been tanning for years now that I'm fine with the full time, she still gave me a hard time saying i should do less, finally i was like whatever and did less time. The only reason I give them two stars is because there beds are really nice and i got good color from them, but it was not worth the hassle for me to want to go back.",review,gIhEoQQLLUHbKbn2_TS1hg,0,2,1 +N_6bV3c3JagKW7sD3X9ldA,2010-08-14,_ya44j3weaEcU8z21jeRNw,4,"The bad: the bar closes at 10pm. It seems like the western, country, wagon-wheel themed bar that you'd like to close down one night while playing some good tunes on the juke box and eating peanuts. And also the french fries, file those under bad. + +The good: the hamburgers are pretty much delicious. Definitely go for guacamole, and add whatever you want from the topping wagon. + +I didn't try one myself, but I hear the cookies are good.",review,BiDA7uVJ5igMCsp4ZfpCpQ,0,0,0 +5iNDEyLJswlErDGD4OT6NA,2011-02-19,xboddfytcjh8u26wFJRX8w,4,"My croissant with ham, eggs & swiss this morning was fabulous & came with a bonus brownie (saved for later & was very yummy too!) & orange juice +Please try the iced tea!! The way the owner makes it is amazing & like nothing I've tried! He mixes a kind of apple cider that they make on-site with fresh mint. +Everything is made from scratch! I love this and do not mind to wait a couple of minutes for beautifully personally made for me food! +Even hummus is made from scratch from dried chickpeas. +I was very pleased & my belly was full!",review,j_Ntp28guy_zin28c9HrgA,0,1,0 +-yxfBYGB6SEqszmxJxd97A,2010-02-28,JSzn_pzw_WUl5qPlWjTWOQ,1,"Ugh!! + +A 25 min wait greeted us before anyone recognized our presence. We were offered complientary champaigne in consideration. Who drinks champainge?? + +We were allowed to order wine prior to hearing of the chef's feast, which offers a wine pairing. That's dumb. + +We ordered a meat/cheese plate. It contained head cheese. Hmmmm. Overpriced and oversalted. + +30 min later our salads came. The salads were ok and unfortunately the highlight of the meal. + +35 min later our main course came. Overcooked, uneventful, lame. + +I can't drink alcohol and ordered water. Twice I was left w/ no water for extended periods. Both times I was foced to ask for water. + +There were no hand towels in the unisex bathroom. It's no fun to dry your hands using toilet paper. + +The ""best"" part was saved for last. Quiessence automatically adds an 18% gratuity, which is OK assuming the service is at least adequate. It wasn't. Further, as our waiter dropped the bill, he explained the 18% ""goes to the house"" and anything additional we might addd, though not required, is most appreciated. Egad....why does the house need a service charge w/ the magnificent margins they charge for their normal food service? And why do they put their staff in the position of shaking down their patrons for tips? + +Although it's a very nice, calming setting, I found myself wanting to leave after the first appy. Food, service and ancillary were simply terrible. Stay away. You'll spend your $175 for 2 much better most anywhere else.",review,66ArGxlLyMgpajdY46ZsjQ,0,1,0 +dFi7mkN0PBoFYt1untE3OA,2012-07-24,6GuYwvqvE0mUY72DJ-nOew,5,Amazing thrift store! The owner was extremely kind and polite to me so I'm not too sure why one reviewer was saying he was rude. They had baskets of clothes out front that were free for homeless or needy people which I thought was great considering places like goodwill often overcharge for clothing that should be donated to those in need. Great find on a Robert cavalli jacket and J.crew pants that were literally like new. Prices were completely reasonable for quality second hand clothing. For sure will go back!!!,review,mUQbkb7rHgJjib6ajULYNQ,0,2,0 +TpQMR-JFE5V0UPzTjjuwFQ,2013-01-02,UZgLqbIdSKXQchqC6gFLwg,4,Great lean pastrami and cole slaw. Marble rye and challah were a little bland and dry. I always appreciate diet Dr. Brown's cream soda. Overall good lunch spot and handy location.,review,6vEntAZ8ZkH358EufNXbpQ,1,1,1 +VY_tvNUCCXGXQeSvJl757Q,2012-07-27,WcY4lvCSlUj2rNZk9DUV9Q,4,"Probably not the best pizza I've ever had, but definitely in the top 5! Had the groupon deal of 50% off, so that made it even a better experience. Not exactly the atmosphere for a ""date night"", but the quality of bread/sauce/toppings is fantastic. If you like specialty beer and pizza, there is no reason not to try this place. Will be returning for sure!",review,cCwj4RJSKU4-o9ZZ1VTtmA,0,1,0 +apEc_VODyZJ9G3cvS_k2gw,2011-06-24,e68960uU4lT83NvnbG-6wg,2,"So it's so freakin' hot in AZ I didn't mind that yet another frozen yogurt place was opening up in town. Stopped by on opening day to check it out. The place seems really small compared to Yogurtland and Zoyo, the yogurt is the same but they had these neat gummi butterflies as toppings that I loved. They were supposed to give yelpers a free gift but when I asked about one they said come back in a few hours because they weren't giving them away right then. Yeah right, this place is not worth going out of the way for.",review,gsyguOgT2Dnjw-OYw14XDw,0,0,0 +35uDzLpJlbSztgkJLtg1kw,2011-07-20,a5ypPR11-FNSLCtviImP_w,2,"I went to Wildflower looking for a lunch spot that had wifi. I arrived at 11:30, and noticed every table in the small place was full. It was my first time there, it seemed a lot like Paradise Bakery (which is a good thing), so I ordered, hoping a table would open up. Price was about the same as Paradise. By the time my food got there, no tables opened, so I got the food to go. I got home, opened the food, and much to my dismay, it was quite a bit worse than Paradise. Also, no delicious cookie. Next time I'll just drive up the street a couple miles.",review,2CdbmUXg7kkmbJ1XSDrY-A,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2010-12-04,ijq0aSf6B9WYdt3_k8yY0w,4,"I have been to Lux a few times now and it has completely won me over with its delicious coffee and mouth watering chocolate croissants . There always seems to be a line but it moves fast. Among the numerous coffee shops in the area, Lux definitely stands out.",review,7aVtVu6ANtsCEfXfYoSkTg,0,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2009-11-21,ATWL1tDkeM7wr729jy3Nzg,5,"Scale of 1-10 (multiple visits): +10 Food +9 Service +10 Atmosphere +8 Value",review,eBwBjylS66qPcHs2_ajLag,1,1,1 +nMHhuYan8e3cONo3PornJA,2012-06-07,C5E6Gl5FStUO2zB5R7aDkg,4,"The food was amazing and beautifully presented. The atmosphere was clean, quiet, serene.",review,Di_8AmiLBwNRrE68bsaLMw,0,1,0 +LR9mX-3mh_PIEeG1A5zqxg,2009-03-07,il1MI97l21se7d10zQKMtg,5,"As a former Bay Area resident, I have come to love and appreicate all asian food. Generally, I prefer Japanese and Thai over Chinese, however, when it comes to Iron Chef it's my favorite. The location is perfect as it's only a quick two or three minute drive from my house. Their food is absolutely delcious and is on par with a high end chinese restaurant. The quality of the meat, fish and vegetables is just excellent and it's always very consistent. I generally order the garlic chicken as I love spicy food! It's a wonderful mix of vegetables and white meat and the sauce is perfect, full of flavor and not at all greasy. I also like the fact that they offer brown rice as an option and their eggrolls are some of the best I've tasted. + +The family meal for $29.95 is an excellent value and is enough food for four or five people. We ordered it for the two of us and had leftovers for a week! It includes sweet/sour pork, broccoli beef, orange chicken, chow mein, fried rice, steamed rice, soup and eggrolls. + +I sure hope that Iron Chef survives the recession. I try to eat there as often as I can :)",review,nMwgC0DuMsBR0V5v4-J8wg,0,2,0 +ieheWXxYPTM2stGLV7fEPw,2008-07-17,ogE7PV8dyHCDGDTKCc1y9A,4,"This is a really good Starbucks location. Unlike a lot of the newer locations that have retro plastic chairs that look much more stylish than functional, it has lots of comfy upholstered chairs, plenty of plugs for web surfers, and a decently-sized outdoor seating area. The staff is really friendly and efficient as well. There is also a drive-through.",review,HOleI3jz1MLNUJ6cc1x0Pw,1,2,0 +D1T1jtCfTfXD-cQE3QViow,2012-01-11,PnOl5GHOOtIzyNHIVFrXoQ,4,"The food is good quality. The atmosphere is nice. The owner and his wife work hard to make you feel welcome. + +Skip the chorizo gravy, everything else is a solid B.",review,qeVLQCePbacAwFL9mBaRbQ,0,0,0 +zmjWXerSZlB0eRLxrKevYQ,2011-08-24,RNMbS8twynIYGQpB79c8bw,2,"First off nothing gourmet going on here at all. Its basically Subway with free delivery and they have to deliver it for free or there is no way in hell you would bother with the place. It's cheap, generic, flavorless food.",review,8LAf67lQTjtsS98E55MYrg,0,1,0 +i41M_To0DAxuzZIGvU1wyg,2012-04-28,1KPmbK4uSTLgVYyYCsrP2Q,3,"Live entertainment, friendly, restroom clean, my dish was good, but my hubbies dish the meat was not seasoned at all and for a fajita they gave him a burrito flour size tortilla and took about 15 mins to bring a second one. Plus hrs are posted wrong on yelp. States open from 6 am to 2 pm even though they serve breakfast, lunch and dinner.",review,11WMiRoB2sQxo61aJdSg6Q,0,1,0 +lut0g04VsYRyblR1Ad-8HA,2012-11-17,BhEIEMTULqqE8MQZIiH97A,5,"The bar and wait staff couldn't be better at this location of PF Chang's. The food and service is better than any other 'Chang's' country-wide. We just moved here from NY and missed our ""local hangout"". The bar tenders and wait staff have made us feel at home. We go at least once per week for wonder food, drink, and company with the staff and other patrons. Thank you Clint, Gerry, Nate, Kyle, Nick, Angie, et al.",review,kIddeMFsvL-iiBnjZXObKA,0,0,0 +T9BPnYNKtk6B42W0cJJXnA,2011-11-26,QZbyiEH6WQ6NhMyuhNuH6g,5,"This is a family owned local restaurant at it's best. If you like to explore and support locally owned businesses, you should definitely give this one a try. They have a big menu and I have tried breakfast and lunch and both were excellent, but the breakfast is particularly good. I love the breakfast burrito. (to the reviewer that complained about the greasy chorizo...hello, it is chorizo, chorizo is sausage). I would go out of my way to stop and eat here whenever in the general area.",review,7urpEPQ3oQFZNoykUUmZIQ,0,0,0 +z5rbKDh_tM4ukP-leSU15Q,2012-07-12,Pci-l3zCK0FVCnJaKliMyg,5,"Thanks for helping me to find Valley Eyecare Center, fellow Yelpers! I visited their office as a new patient and knew from the moment I walked in that it was going to be a positive experience. The receptionist was friendly, the office was modern and clean, and the wait was super-short (~3 mins). I was impressed with care that was provided and didn't feel rushed when working with Dr. Eric Clyde or his assistant. The three words that come to mind when thinking of this office are: professional, prompt, and accurate. My visit was for a contact lens fitting, so no comment on their frame selection / service.",review,W2vzaJP1ItC18xzA59WLwg,2,2,1 +3tk6Syyz5i967Ifuz_4o3w,2010-08-09,AWrrQRIwzIV4t3VAe9VWTg,4,"Had the Korean Beef over white rice. What a great dish. + +Thin sliced beef in a garlic brown sauce with onions and great taste, served with a side of white rice. NOTHING over the top nothing trying to be something it is not. Just good food.",review,C6IOtaaYdLIT5fWd7ZYIuA,3,4,3 +xWKtOLuIOVGZprcpGiqpQA,2010-08-07,X7EsMHroYo_bH3kD6OYhxQ,2,"I went because several people I know raved about the place, because I'm a lapsed vegetarian and I'm always trying to get back on track and heard the veggie sandwiches were incredible, and because I'm a malt freak and found out they have malteds there. + +I was disappointed. And my friend I was with who had been one of Stickler's die-hard fans said that, although it was okay this time, the place seems to have gone down hill. + +Stickler's wasn't busy at all, maybe 4 tables of customers and 3 people in line, but although there were alot of workers behind the counter, the service was very slow. We had to wait a long time for our veggie sandwiches. Now my friend has been there when it was jam-packed and she said the service then was much quicker. We went about 2 so maybe the staff was worn out from the lunch rush earlier. + +The bread was good, crunchy on the outside and soft inside but the vegetarian sandwich itself was boring. It's supposed to have Swiss, Provolone and American cheese on it. I couldn't even taste the Swiss or Provolone at all, the American over powered the sandwich and was more like a cheez-whiz type. + +I'm always on the look out for a good malt, one that really tastes like a malt and not a shake. My chocolate malt tasted more like a shake and I wasn't impressed with the ice cream. My buddy liked her vanilla malt though. + +The one thing I did like about Stickler's is that they have the small bags of Miss Vickie's chips to buy. It used to be you could buy big bags in the grocery stores but now the chips,which are the best kettle chips I've ever had, are just carried in certain deli and sandwich shops.",review,FzaOGf0SuHRPrk7huJZbcA,0,1,0 +bzDs0u8I-z231QVdIQWkrA,2012-12-29,L8i0WfrpIy_xPoGgtw4s9w,5,A yummy Mexican Sunnyslope dive. The oatmeal horchata is tasty! THE torta is really an experience!,review,G6hw5kMloYJDsCGskps0UA,0,0,0 +jCOTob1avPH52RNuniylkg,2012-04-12,CkE5V0IbszSlqYsr2w__Iw,4,Love Abuelos! Best Mexican food!,review,zKqwJFPFd5XenERIpCabIA,0,1,0 +vcX9au3IW-Mwv9SNZ_0jQA,2012-01-24,CNhZHstYmds0GlR7saEy1Q,2,Dear God I should have ran to the hills when I walked in and saw 5 out of 5 people working there with electric shears in their hands. I refuse to call them stylists. I mean all I wanted was a trim for my 7 year old. Just a straight line. I'd hate to see her take a sobriety test.,review,GlyZqaff1iXpY91JH9gYcA,1,1,1 +IMGW6y8wHQCfr_6k-YXg_A,2009-10-14,DgtNk6X4Kr0s2eZ5yxTfqA,4,"This place has some great food. I haven't yet found anything on the menu that I don't like instantly. The pizza, the sandwiches, the appetizers, the desserts... all good. Despite this, my favorite item on the menu is definitely the Berry Burst Cider. I haven't yet found any other decent cider in the valley. + +Atmosphere: good +Service: good + +My only beef: I did once have the jambalaya and that simply left me wanting authentic Cajun.",review,bj9wNeEIdJulpKiVYZhYdw,0,0,0 +MhH1kl9faN3RvIO4ptumTg,2012-06-24,d0Qli3upSKqUnaqXKf9zzA,5,BBQ Chicken plate is excellent! My wife says that the half order is fine. Usually take orders to go and food is ready on-time! We eat here on a monthly basis.,review,Mcox0O0lsc95Xz-QbTiU_A,0,1,0 +KvD6kCW5LLOMEkdCNzo_Bg,2012-10-26,Tw2gQVqVfNxkER542XhZvA,4,"O.K. , I actually like this theatre, why ? well because it is usually never crowded. Things are a little old and outdated, but I hate waiting in line, so this works well for me .",review,KpC10_UEJuga43WadHCmYw,0,0,0 +MQNJNjLLDfsIrqxG-DBMqQ,2011-09-03,TnQoeuYYvyBJMRbhFHfEBw,4,"I am always on the hunt for a good breakfast spot. +This is definitely going on the list of regular places to visit. +I had an enormous pancake the size of my plate; flavorful with crispy edges..perfect! +The waitress informed me that 1 would be enough for me, so I had an egg and 2 slices of bacon. All very good. +The coffee was good too, an added bonus :) +My husband had the avocado omelette which was also very, very good. +Interior of the restaurant wasn't anything exciting...but the food makes up for it. +Server was nice and attentive.",review,EeSBXLMh3CvjSqBpJWT9gw,0,0,0 +tpIU_ZvIfCfCp36IgghlHQ,2009-10-18,D-Glqsc5fnWUbMF2IsyMLg,4,"This is a good place to go when you're hungry, but don't want the ""blah"" weighed-down yucky, greasy feeling. I always order the greek pita, well, because I'm a feta fan! Yes, a large amount of the menu has feta, so if you don't like it, you may want to rethink coming here. The rice pilaf is delicious, I also love the fruit bowls (not a fan of the pasta salad). Chicken salad is good, but I think it needs some salt & pepper personally. Yaya's chocolate cake is really yummy! All in all, I enjoy this place!",review,sMIOqXFpm6XuBlaokNdpAA,0,0,0 +_BhzcKojv1gjdRINe3Gkig,2007-12-23,bEPvmw1bKOj1NVyczW_Caw,4,"I've always had consistent quality of food and service here. + +Standard menu....everything is a la carte. I've been to this specific location about half a dozen times.... + +I recommend City Hall or Mastro's (N. Scottsdale), over Morton's. But between Fleming's and here, it's a tossup. I would eat at either....but I would probably choose Fleming's over Morton's.",review,_vTyqTbfhZ-SlQVxz9HH8A,1,5,0 +jqZKv-7F54guDLalXEjHxg,2011-10-01,RsYrTUqAWjLt4MJdghrFpw,4,"They try to be like In-N-Out, even down to the color scheme, but the burgers taste very different. They offer cajun fries which have some extra seasoning, and if you ask for your fries ""well done"" they don't come out as soggy. But if you're going with someone else, then one order of fries is all you'll need. They give everyone huge helpings of fries and I'm never able to finish a single order so I just share it. The burgers are excellent and the one thing that sets this place a part is the option to get fresh jalapenos on your burger. Don't forget about breakfast! This is where In-N-Out fails. The breakfast burgers are great after a night of partying.",review,YpoJfcupG358FRkif09m2g,2,3,1 +hh2lP4_2N-tk_OxmaTf_qA,2010-10-29,coCPAhbaEH5imSLV0y7-0w,4,"I had to try it. I had to see what became of the space that was once the finest restaurant in Phoenix/Scottsdale. The design of J & G made me think ""Really?"". As Mary Elaines the space was elegant, regal, sophisticated, refined. As J & G the space feels like a sleek flashy Vegas restaurant. I am still recovering from that shock. I was there to give it a try. So here you go. + +Tasting Menu + +Tuna Tartar (Delicious) +Parmesan Risotto (needed salt, but good) +Sea Bass (Excellent, so moist) +Beef (Good, but excellent tasting steak sauce was ice cold) +Chocolate Cake (Wow!!!) + +Cocktail/ Wine + +Sidecar (awesome) +Some sort of big red wine. + +Our waiter was good and explained the menu very well. There were some errors is service so I had to keep reminding myself this is not Mary Elaines. Its a steakhouse.",review,dUrVJl5qi2CJWff7s8HJNw,0,0,0 +sZAzeccYUVPjlkrlMooV-g,2010-02-03,AEdoulpl6swjISKfT41xpQ,3,"This really amounts to 3.5 stars. I think after seeing all of the stellar reviews combined with my LOVE for Filipino food, my expectations were just too high. + +I took a few coworkers with me to check out the food and see if I had finally found a local Filipino eatery to curb my cravings. Not so much. The pancit (my favorite Filipino entree) seemed to lack flavor and/or seasoning. I also wanted more meat and veggies - maybe that's just due to what I'm used to. It was more just oily noodles and missed that flavor I wanted. The good news is the pancit is cooked to order so it's very fresh and hot - just be prepared to wait a few minutes. + +I was also very excited to get some lumpia. Again, not so much. They were tiny with some mushed ingredients in them. Also again, it may be just what I am used to, but I've always had ones which are longer with more fillings - stuff you can actually see and taste what's in them. + +On a positive note, the folks there are extremely friendly and helpful. It makes me want to like it even more. I'll go back and give it another go - I'll give the chicken adobo (my other favorite) a shot for some redemption. + +A few tips: +*If you order pancit, order first because everyone's items are not brought out at once and the rest of your party will be waiting on you. +*It is a small place - tough to fit the 5 of us. There were only a few other tables to seat 2. + +I really wanted to like you Karey's Kitchen...",review,-Dof9NwAoQwRM-GVPZk5zw,2,3,3 +Tt6DYs0TyERWHWW5xiRL_A,2012-01-02,Ejd0KegGmvjU58C3KUAksQ,3,"I don't usually write reviews very often (in fact ever). But I felt that the 4.5 stars does not currently reflect my previous sushi experience here. + +First off, the service here was really good. The waitress was really nice, very prompt and courteous and provided the food quickly. + +The food itself, was prepared well, I usually eat a lot of nigiri and the pieces are ok in amount of fish, the rice was packed well and the quality of the fish was good. + +The major downside in my opinion is that its pricier than I expected. I wish Yelp would provide ""2.5 dollar signs"". Granted, I did not come for ""Happy Hour"" which ends relatively early at 5pm. I go to a lot of sushi restaurants and for the amount of fish provided, I would have expected it to be cheaper. + +Also, the edamame cost $$. Even the miso soup is not complimentary. Considering the above average price, I've been to too many other places that have the same price, same quality, and provided the necessities for free. Oh, I even forgot that a bowl of white rice for my child was even a charge. + +So, the nickel and dime of things I would have expected compounded with the surprisingly above average price, I can only say that Yen Sushi was ""ok"". The other two people in my party (minus the children) also agree.",review,napKYq5CsyGv2VbqddBjYQ,0,0,0 +AaYHMYoeOt-5nN32vTA_Dg,2007-01-23,G_hVb1z39juEqMAwh7ZNcQ,4,"Suede has been around for awhile now. It's no spring chicken. But I still find the place to be a good time, if you can stand the wall-to-wall people and the loooong lines for the bathroom (only the ladies bathroom, of course). I think the drink prices are normal for a Scottsdale bar and they aren't any higher or lower than what you'll find at Myst, Axis/Radius or Six...strange, don't they all have the same owner?? It's a fun spot to go though and even if you're not feeling it, you can walk right over to Axis or Pussycat and not take much time out of your night to do it since they're right across the street. If it's a good night, Suede plays the best hip hop and rap music to dance to and the floor will be packed. On a bad night, the DJ is spinning techno crap (I'm not a fan) and my friends and I will go somewhere else for the night. There is never a cover for girls, although I think there is always one for guys on Friday and Saturday nights. Guys have to dress up a little too...I think Suede follows the no hat rule and the bouncer may take a look at your shoes too- guys can't wear sandals or sneakers (I think!) So definitely call and get their updated dress code before you head out.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,1 +NN2qs5B713vM6BDcMyrg4A,2011-10-31,z3DtJDeJTAolrI2t9ixsWw,4,Very good food with huge portions.,review,WsBMlEq2pPHE0fdgDHnW2A,0,0,0 +C1tH3sEQra33EOTk56Eu1Q,2010-02-23,_8qo0ym2JDX2r4KYRaNYXw,4,"I havne't been into Radio Milano quite as many times as I have been into Postino, but I have to say of those times I have, I was impressed. They have complimentary valet parking which in this neighborhood is a huge plus! + +Their menu has many different dishes to choose from along with the daily special that always sounds great. The other night when some friends and I stopped in the special was short rib ravioli, yum right? Well, I wasn't able to fiund out, as they were sold out for the evening. I instead got the linguini with clams, and I am glad I did. One of the tastiest things I have eaten in awhile. It was with a light cream/butter sauce with garlice and leeks and clams. If you like clams I would deffinatly recomend this dish, it's perfect! + +They also have some interesting things on the menu you I am excited to try next time I stop in; deviled eggs, olive oil cake, and their mac 'n cheese. + +Their wine list was nice, decently priced as well. Radio Milano has a warm cozy inviting feel, anyone can have a good time. Just be mindfull that it is an open room, and talking to your neighbor as if you were at a football game is not the most polite thing to do. I wish the ladies that were out for a batchlorette party that night could have gotten the memo, ""they were loud"" is an understatment. None the less, we had a great dinner.",review,_uL7OiQSfNsCd60DrAf7qQ,1,4,1 +j_-oJf03893wsQe1q5sGPg,2009-09-18,HcUbUaI08DMVBttBeJZ0HQ,5,Tim is really a very friendly and honest guy. He will tell you what you need or what can wait. This place is worth going to! It will save you tons of money!,review,MBGZ-2HTMvfCBrG3G-R2AQ,0,0,0 +1Ap6ZNCvyLLKHP0wvCk9yA,2009-11-25,UJiWI0JuvnVC26gAtAwlTQ,5,"When we first got here I felt disappointed until I realized the zoo is much larger than it first appears. Particularly worthy of checking out - the lions and tigers. Also do not pass up the monkey walk. The little squirrel monkeys are fun to watch. + +Be sure to shell out the extra bucks to feed the giraffes. It's a unique experience to be so close to these large, yet gentle, creatures. Definitely my favorite part of my visit. + +Visit Date: 11/19/09",review,Jegks7c-o66A9LaxWYQLsQ,0,1,1 +3O-01lUwrdNCSrqDoJ7CvA,2012-06-30,Au23Mw185CQdjVorbkId1g,5,"Decided to call CityWide based on positive online reviews. We suspected a slab leak and a really expensive repair. Robert showed up within 20 minutes, determined the source of the leak within 5 minutes, and it turned out to be something really simple and inexpensive. He repaired it with a brand new line, we paid, and he left within a half hour of us calling CityWide. Very professional, friendly, and efficient! Would definitely recommend CityWide for anyone's plumbing needs.",review,Jx8VRjgsc3ikBKcP9wLlAQ,0,0,0 +DUDr1kuGv6eh1_s2GWJVgw,2012-09-13,2s0Es6Y6EYtCAHCA8oCn6g,5,"Potbelly, you have been handed the torch. + +It was a good ride Jimmy Johns, but you have no locations close to my newly purchased home. Its not you, its me. I promise. + +I love italian-style subs. The Wreck at Potbelly is fantastic. The Wreck salad is also great (for a salad). + +This place is my new go to sub shack.",review,9UNGbiE9k0fvMpCMJp0Gww,2,4,4 +4FS5otEktCyI1aDpg_h03g,2010-12-02,JSocnq8bLHvbyd3svlx2nw,2,"This place came recommended by the hotel and some colleagues in Phoenix so my expectations were high. + +I went with the recommendation of the waiter and chose the salmon -- mistake. It was dried up and had zero flavor. The potatoes and asparagus that accompanied the dish however were cooked perfectly. I also had the wedge salad to start, which was more like two mini-wedges. Great presentation on the salad, but sort of strange with 1/2 a devil's egg in the middle of the plate. Good but strange and a little too small with the portion size. After all, iceberg lettuce is cheap. The waiter was attentive and staff were all nice. Not sure I would ever go back.",review,j2eM540C7mbF1TZvCMTluA,0,0,0 +iELA6eREUgDVQrtLgYmS6Q,2009-09-23,7tVnXQif_wkGCKcwSPMWzw,5,"Okay, this just might sum it up... I LOVE YOGURTLAND WITH ALL OF MY HEART! Go get some yogurt, the end. + +No but seriously, do go. :) All of these yogurt places have been popping up everywhere the past couple years, and when Mojo opened up at the Biltmore I loved it, but it was far away. Then, yogurtland opened up right next to where I live and i discovered it WAS BETTER! Sooo many flavors, and they change a few of them out every once in awhile. They have all the normal yogurt toppings, plus white chocolate sauce, chocolate sauce, and caramel sauce. Hello? Isn't this supposed to be healthy? Haha, it actually is if you take advantage of their freshly cut fruit. I just love it. I took my brother and he is the first person I've seen to grab the biggest cup they have, I asked him why and he said, ""It's so good, I can take some home and put it in the freezer for later."" My favorite is pistachio yogurt with gummie bears! Record is 5 times in one week... message me if you've beat that.",review,TSk_XN1xy6Lyoczj-kdsTA,1,1,1 +AqbgC7Gul5Es1rRzGNLDFA,2008-10-07,pdi8jiHwJNyKUfDNowROhw,3,"Honestly, I love cupcakes. Like I said in my Wicked Bakery review, eating a cupcake, unlike a slice of cake, gives one a sense of accomplishment. I like cupcakes. I like the sense of accomplishment you get from eating a cupcake. You may have had a hard day, but you finished an entire cupcake. That's validation. It makes me happy. + +Sprinkles is a great place to go for a sugar fix, but I have to say there are some negatives. I have had a dry cupcake there. They are a bit on the expensive side. + +The worst sin of all? Their red velvet is ""a southern style light chocolate cake with a cream cheese frosting"". I have to disagree. I don't detect any cream cheese flavor in that frosting. + +The first time I devoured a Sprinkles cupcake it was magical. I was particularly impressed with the black and white- ""Belgian dark chocolate with creamy vanilla frosting"". I was in a shoebox Los Angeles apartment and the cupcakes seemed of adequate size. The next time was the new location am currently reviewing and they were consumed in a larger-than-shoebox Chandler house. They seemed a little small. The third time was in my car- a Subaru Baja, and the cupcakes, again seemed sizable. I'd have to think that consuming a Sprinkles cupcake in an SUV would not be a great idea- the cupcake to eating space ratio would be all off. + + +For true cupcake validation, I'll drive the 35.9 miles to Wicked. + +Ok- you caught me. I might stop by for an emergency fix if I happen to be in the area, but I'll be thinking of Slade at Wicked... and I'll be consuming my confection in a small space.",review,xgrNgHOs8F5JvEX38IeCJg,2,4,2 +i9LWPgDrCRaHfXpSk4TjUQ,2012-03-14,TH5M4pgyEGrKWj9Rx2XGJg,1,"And then it all changed... + +I think this is my very first review that has been demoted to 1 star after being on the coveted 5 star for a long time. + +So, where do I start. After feeling dog sick for a few days, I finally decided to ""walk-in"" to this place because that's what they do now supposedly. They take walk in patients who are seen by the NP. I signed in at 8:20 and was not called in the back until 10:00am. Then I waited another 35 minutes for the NP to come in and see me. By the time everything was over, it was 11:00am before I walked out of this place. + +I asked to talk to Brenda, the office manager and was brushed off twice. Supposedly she is going to call me but would not see me when i was there for two and a half hours! I guess she didn't have the balls to face me at that point. What could she have said really? + +The front desk lady did a screw up and let another walk in patient go before me even though he came 10 minutes after I had already signed in. When I pointed that out, she said he came before me and I had to show her the sign in chart. Instead of apologizing, she just kept doing what she was busy doing without acknowledging her mistake. + +When the NP did come see me, she missed a couple of key things in my chart that she totally should have asked me about. I was quite appalled. I had to point out a deathly allergy that I have even though it should already be in my chart. + +My final analysis: In my opinion, don't go here if your health and time are valuable to you.",review,zhVOlwBuEgdGlHjwgVf3Jg,0,3,0 +JokKtdXU7zXHcr20Lrk29A,2008-07-03,RJX8KkT_2nWxbu6jRYv4wA,4,"Great food and atmosphere. Had lunch there on a Friday afternoon. Parking is a bit of a challenge. Had the pork pita which had onions, bell peppers, and pepper jack cheese...awesome... + +The burgers are good too! The service was excellent.",review,QocwkeVyChF2JoP_zKH8Fw,0,0,0 +1eJiyKXx_ruNu6F36BJQCg,2009-06-17,JPIqotGAc3pSfOoBHSBZtw,5,"What an exciting time. I am writing my first YELP review about the wonderful MOJO Yogurt I visited yesterday afternoon. There were so many wonderful flavors to choose from and the people there were nice enough to pass out tiny little sample cups. It was a challenge narrowing down my selections to a few flavors but I somehow managed. I ended up with Birthday Cake (that's right, there is Birthday Cake flavored yogurt, life IS good), Cafe Latte, and the divine Original Tart. After throwing on a few gummy bears I was a happy girl. I see in other reviews that some complained about pricing but I am willing to pay a little extra for quality and happiness.",review,MMgHZwm4rj8W1scW4cEq5w,0,0,0 +_FXql6eVhbM923RdCi94SA,2011-06-11,Ri0RuGTucSDIYUD0BPUyNw,4,"My husband and I frequent this restaurant quite a bit. We use to be huge fans of the Ahi Tuna burger with sweet potato fries (the fries rock). Unfortunately, they removed the Ahi Tuna burger from the menu which was very disappointing. I do like the Tiki fish sandwich though. I do which that they would included a fish sandwich on their lunch menu on the weekend. Although, when I have gone for lunch on the weekend and have asked if they can make a fish sandwich they have always accommodated me. + +I would give this place 5 star, but I think their one weakness is their brunch menu. I took a friend there for lunch because we loved their dinner and lunch menu so much, but it was very disappointing. We ordered Bloody Mary's and had to send them back because the horseradish was overwhelming. In fact, all you could taste was horseradish, no tomato juice or anything. All three of us sent them back and they could remake them because they were part of a batch that they pre-mixed - UGH! Plus, I was the only one that liked my breakfast. My husband and friend were not impressed. + +Also, I adore their Hawaiian fish ceviche - yum!!",review,d7G5UmaTLSz6usEB00VpFg,0,1,1 +LfKPiwth-lGmCKTxlDoV9g,2008-04-29,H9bQyxFEtYb1YYSIfQfoUg,4,"I used to LOVE this place. It was fun, vibrant and hip and the food was pretty good. The calamari salad with arugula was da bomb and still is. The food was definitely better when it first opened. If you drink enough alcohol to ignore the miserable wait staff then it's not so bad. The wait staff are unprofessional and could give 2 rats about your dining experience; but all you have to do is tip accordingly and hopefully they'll shape up. There are way too many places in Scottsdale to return here. I think I will give it one more shot. It is a shame b/c the food is pretty decent.",review,GA9-h9rRosmKN-NzvyepLQ,2,2,1 +IXB3PGgSmw4bjTe9ll-tQw,2010-02-08,zCfFoD0BsWUjaBtjwMGaYg,4,"On a cold winter day, the craving for hot comfort in a bowl makes a person do strange things. It found me driving to a kind of shady part of Mesa, while braving the cold winds in search of a perfect bowl of phò. + +My new holy grail of Vietnamese restaurants is Phú Thành, located in a rundown strip mall on Southern and Extension. A good Vietnamese restaurant is usually kind of old, slightly dingy and super cheap, and in this case all the basics were met and exceeded. + +Phú Thành is a no-frills kind of place. Inside it screams for a makeover. Though clearly from another era, it is clean and functional. The service is friendly and the kitchen is fast. + +There might be a slight familiarity here the owners of Phú Thành and my favorite central Vietnamese joint Da Vàng are brothers. The menus of the two places are almost identical, and they offer a lot. + +The No. 50 Chà Giò ($2) is what good Vietnamese cooking is all about. Two golden-brown, crunchy egg rolls filled with shrimp and pork are hands on and interactive. Served with a plate of lettuce leaves and herbs, you wrap the egg roll in lettuce and garnish with mint and cilantro, then dunk them into the house-made n?òc châm, a sweet and spicy dipping sauce. The fresh lettuce and herbs cut through the richness of the egg roll, which on its own might be slightly oily. + +Applying the same hands-on approach, the No. 54 Bánh Xèo ($3.95) replaces the rolls with a pan-fried rice flour crepe. The exterior is slightly crispy, while the soft interior is filled with shrimp and bean sprouts. Of all the Bánh Xèo I've tried, this version is by far my favorite. It's full of flavor and texture. + +Phó (pronounced like the bad word) is not only fun to say, but fun to eat. Eight versions of the noodle soup are offered, from traditional beef to chicken. Pay attention to the menu description when ordering since you might wind up with unfamiliar cuts of meat. + +I'm adventurous and love the textures of beef tendon and tripe, so I was in heaven when my steaming bowl of No. 1 Phò Phú Thành ($4.95) arrived. The broth was incredibly fragrant with clove and star anise. This really should be made into an air freshener. + +Along with the condiments at the table, the soup comes with a plateful of basil and bean sprouts. But also include limes and chilis to add texture, flavor and depth to your pho experience. + +For something hearty and comforting, the No. 7 Mì Bò Kho ($4.75) is a bowl of chewy egg noodles filled with a beef stew. Tender pieces of stewed carrots and beef grace the rich and complex flavors of the dark and tasty brew. + +If you're carbohydrate loading, order a slab of French bread to absorb all of the bone-warming elixir at the bottom of the bowl. + +For food like this, a little shady is worth the drive.",review,lPaYMDmJbAnv_3pmZH_inw,2,6,2 +L-uPZxooP_ziXCtRrWi8Pw,2011-04-12,qHNjywcTsm7wdbiBn9K4gA,5,"Thanks to Yelp I was able to find this hidden jewel. The place looks like a spanish style motel converted into a restaurant. With a cute garden in the back. I had already eaten so didn't intend on a 2nd breakfast. But stingy GF only allowed me a few bites so I had to ask Chris to whip up another plate for me. It was my first time having chilled salmon done that way and it was so good. Everything tasted so fresh. For the price you get to drink all you want. And I must have had at least 10 glasses of the orange juice with mixed berries. The food and the atmosphere reminds me of eating in Napa, CA. Will definitely return when I'm in town.",review,WV9oNBkcw3HvzEP45OHQVQ,0,2,0 +WNy1uzcmm_UHmTyR--o5IA,2010-01-30,jEguWDFMhLodVdfmb_ViIQ,5,"This is one of my new favorites places to bring people who are from out of town. It's something different that I think real ""Foodies"" will enjoy. Although the restaurant itself is dark and cramped, it's worth going to over and over again. + +I ordered the Shepherd's Pie Pasty, it was very filling and delicious. Although I had to wait 20 minutes for it, it was worth waiting for a fresh out of the oven pasty. But if you're ever in a rush, a good thing about this place, is that you can call ahead and request for them to start cooking your pasty so that it is ready to be served once you arrive.",review,jM4qX4eiH9tIG9VUaN2knQ,1,1,1 +bS2iENq-r03NA7HcON3ujg,2011-03-07,Az_1DteQAecHWw0Jvx2XlA,5,Apparently fellow yelper Andrew and I are meeting in our dreams over maple bacon creme brulee! I'm seriously glad to see that I am not the only one having subconcious yearnings for this lil dab of heaven in a cup! All of the products are top notch though and who doesn'tlike creme brulee? Communists maybe? Chef Eric is awesome and so friendly too.,review,MwAM4Nhmm_U827ijnGugLQ,1,2,0 +ycBa5cnSa6hgdB7rb9rdiw,2010-03-15,J7MtPNuSCzIpUnfLSuz4ZQ,4,"Thanks to Sara V. I learned about Total Wine & More through her and when i heard they were opening up locations in Phoenix, I was excited. Anywho, 6 visits later, I can honestly say I'm a fan of total wine and moreso than BevMo. I love that there's a wide selection of wines from all over. My favorites are Riesling, Moscato, Rose, Pinot Noirs and sparkling wines. Yes, I love the sweet kinds. + +Anywho, my most recent visit, had me buying two kinds of Rieslings both recommended, a Bree and the other one a German Riesling. I recently had Moscato the night before and loved, it was sweet like apple cider and very flavor, with it's apple and peach undertones...simply delish! The Bug Juice Moscato was YUM and elegant. I totally enjoy the selection not just for wines but for beers as well. I like that I can by some hoegardaan for cheap and I like the wine tastings going on. The staff's helpful and overall I like the layout and the prices!",review,ROr4DQ-gxlfUKmiDC-qSEQ,1,1,0 +ntH7Mo1JZdkglMiQXZy3Bw,2010-02-16,KkG3lJgyemn-AVUhN1ZKDQ,5,"I love this place, sure its kinda creepy and in the middle of an odd office complex but DAMN those donut holes chocolate cake not the glazed ones are good! Not to mention the NINJA BOWLS!! Good God get the Sizzling ninja, top that off with a fried egg, and pineapple, get healthy with some brown rice and white chicken and then DRENCH that bowl with NINJA SAUCE AND SRIRACHA (which comes standard btw) AMAZING! Don't waste your life away without having one of these ninja bowls at this donut shop, i never thought i would be able to say that statement with a straight face but i did! And for those wondering they don't serve pirates (some will understand this fact) Also if you come back a few times they might throw some free donut holes at YOUR FACE LIKE NINJA STARS!! I joke they don't throw them but you may get some for free (really though)!",review,FAxy_JuEOhhZl3C10LMY1A,0,1,1 +RiJ8Agrw__NG6flFL7BpbA,2012-12-14,1w8mCNXZRHbaHW_1I2aJOQ,4,"There's no better way to find out about a new eatery than to receive a gift card to one you've never been to (or heard of, for that matter). This happened to me when I received a gift card to Paradise Bakery. Being new to Phoenix, of course I Yelp'd it to find one nearby. I located this on on the SWC of Bell Rd and 7th Street while up at Sam's Club. + +Paradise Bakery has sandwiches, salads, soups, sides, and of course -- the bakery items! At this location, you can eat in or take out. I like the Turkey Bacon Bravo or the Turkey Cranberry with a side of their excellent mac 'n' cheese and a drink. Getting this combo also scores you a free cookie! + +This location is in the shopping area with a huge Target and many other stores, so the parking is hit or miss, depending on the time of day/week. And PB's prices are just a bit steep for what they serve...good food, but still a bit pricey.",review,aTi0NVrcPJWbN6jAsJVcAw,1,3,0 +6OFYUDvf2k4RXDfOomfi1A,2009-12-17,nGpuxjWld11UXTwx7TG-hw,5,"Awesome loose leaf tea spot in the North Phoenix area. You can have a cup/pot of tea in-house, or buy a variety of teas to go. + +HUGE selection of loose leaf teas. If you're a tea fan, a visit to Souvia is a must-do.",review,WWxCMDn8rVHIrIFoKRcRDg,3,4,2 +EgjFg_apjNerroqYiokcag,2012-08-30,2TRWZJYVig64c6C1ESiajA,5,"I have eaten here several times before...and I don't think I have ever left upset, I've always enjoyed my meals, but this time I can honestly say that I enjoyed all of my courses! + +I was with a group of four other girls. We all started off with the amuse. It was some sort of sous vide duck on toast. It was really good. Next we had our choice out of four starters...I along with three other girls had the sauteed scallop. So beautiful! Four out of five of us ordered the beef tenderloin. It melted in my mouth...It was perfectly cooked. The only bad thing is that I wanted more! + +Finally, you get to chose from four desserts. I don't like sweets, so I always bring it home to the kids. But, they are so beautiful! + +Now for the price...my meal was only $13 for everything! It doesn't get any better than that. I also ordered the orangecello for an extra $3. Well worth it! + +Only sad part is that we were the only table there...Makes me sad! Everyone is missing out. + +Our server also took us on a tour of the school afterwards!",review,kNO6w6EIKo8u6GSykOHBLA,1,2,1 +Tsff0UUVgrnawjI_xd2cKg,2010-05-25,uGYlnndFk6o5j35yiYIhqA,4,"If you're in the mood for a foodie adventure, I've got just the thing. A trip to the Caribbean! Head on over to Tempe and enter A Taste of the Caribbean restaurant. The bright yellow and green walls, red floor and outdoor furniture will make you feel like you've arrived. It's kind of scruffy and laid back - this is not the place to come for a quick bite. First of all, you have to make the tough decision about what to order. Oxtails or goat? Jerk chicken, of course, or do you want the milder brown stew chicken? Fish? There's snapper, tilapia, and shrimp. The menu is divided up into Caribbean Favorites, Friday and Saturday Menu, Lunch Specials, Rice Bowl Specials and Plate Specials. If all this has your head spinning, you're not alone. Our server, part of the family who own and run the place, seemed equally confused. But she was charming. Just accept it, and the slow service as part of the experience - don't worry, be happy. + + We ordered oxtails ($11.95) and Eggplant Curry Shrimp ($9.95). The oxtails, in a brown sauce, were fall-off-the-bone tender, fatty, as oxtails are, and totally delicious. The accompanying plantains were caramelized and a little crunchy. Perfection. A huge mound of rice and peas filled the center of the plate - moist and beautifully seasoned. And finally, a side of cabbage. There must have been a little sugar in the cooking pan, because it was sinfully delicious. Served on the side was a basket of roti, a homemade flatbread, similar to a flour tortilla but much softer. It was so hot we burned our fingers trying to pull off a piece. We had finished off the oxtails when the eggplant dish arrived (they were supposed to have come out together - it's a good thing we like to share). Be forewarned, this curry is not for the faint-of-mouth. I wasn't expecting the degree of heat - my nose started running and my eyes watered. But it was pure bliss, with flavor layered on flavor. The shrimp were perfectly cooked, although I wouldn't have minded a few more, and the eggplant was so tender it was almost melting into the gravy. There were also some pieces of potato, which had not been mentioned on the menu, hiding in there. The heap of rice and peas helped mitigate some of the heat. As you might have gathered, between the roti, the plantains, the rice and peas,and the potatoes, this is a carb-lovers paradise. + + Two odd things: a wide variety of Caribbean sodas are sold here, but no ice tea. And the rest rooms are in a different building than the restaurant. + + The only disappointment was dessert. I got a pineapple tart to take home (I couldn't have eaten another carb if my life depended on it). Our server had said it was the best of the two desserts available. Uh-oh. The tart was really bad - a smidgen of decent pineapple filling wedged between layers of leaden dough, tough and greasy. I was glad I hadn't eaten it at the restaurant, because it would have put a bad ending onto an otherwise extraordinary meal.",review,QiR2X306Yzd9fuJdKDhkGg,0,1,0 +xKV873WMxM0EJ7NTtu4Qhg,2009-12-28,MH1r59i6GuJR0jDeedsPaA,5,"I picked up some brownies as holiday treats this year and they did not disappoint! + +These are the richest, chocolatiest, moistest, biggest (3"" square) brownies you will find! + +I'm tellin' ya! TOTALLY worth the drive to Gilbert - except they're taking their own holiday break right now, so you'll have to wait until after Jan. 4, 2010 to get your fix! Still, worth the drive and worth the wait!!",review,vsXP832M0kOxKpfduD7dWw,14,14,9 +eIxSLxzIlfExI6vgAbn2JA,2011-01-08,UEjPFR1a0cOvXYgn_qkB_g,5,"No question -- my FAVORITE burger in the valley! + +I first got turned on to Lobbys at a Yelp Office Hours -- http://www.yelp.com/biz/september-office-hours-at-lobbys-tempe#hrid:kQOElzgklMRbAyWS8LhVFw - - and by my check-ins, you can see i've frequented there since. + +I've tried a lot of other ""great"" burgers -- 5 Guys, Smashburger, etc - but IMHO, none of them stack up to the food and the experience at Lobbys. + +The burgers at Lobbys are so good that I crave them --I want to drive across town or plan out my day so that I'm in the area to get one! I just feel that there's more quality ingredients with a Lobbys burger -- the bun, the taste, the way the cheese melts over the whole patty, the special sauce, and the burger itself. + +And just as Lynn W says the service is truly superior here and "" He (Lobby) really cares about his business and it shows"". + +I've recommended many friends to check out Lobbys and have brought a few friends here -- everyone has loved it! Especially my Chicago friends that live in the valley. + +Lobbys burgers is that raised bar that I measure all other burger joints to.",review,vn3lecMsL3kXVe-7hg3gLg,4,9,4 +RUZvUPOn90ScX60eETwcCw,2011-04-12,-R10qztbLF4M_Tz9iqu2fQ,5,"By far the best asian market in the entire valley! I first discovered Lee Lee's tempe location and was so happy when they opened this location in the west valley. Amazing selection from produce, meats, and asian. The staff is super nice. Never have had a poor experience in all the years. Shelves are clean and organized. Prices are great too.",review,YeK95nGGvYsssVHzcWpmkA,0,0,0 +9dopZKjYiKwPiw7kEQsEag,2010-04-05,Lg2a8eMyneSe8gSyzTdAwQ,4,"I pass by it everyday and my son goes to the daycare in the same center so I had been wanting to try it. I just recently started liking wine so of course I was excited about trying something new. + +We were greeted right away, and seated at a table that felt like we had to shout to one another - haha... so we moved to the cozy little couch in the corner which was a 100% improvement. Intimate but casual and very comfy... and close to the tv (basketball). They played Sade all night which I really enjoyed... I love her. + +Our waiter seemed kinda weird at first and he did ""forget about us"" a couple times... but he made up for it with complementary glasses of wine, so we forgave him. + +We tasted an Ausi white wine but I didn't care for it. Then we tried the Gewürztraminer which I really liked. I guess I go for German whites??? But I'll be the first to admit I have no idea what the heck I'm talking about when it comes to wine :o) But I do look forward to lots of learning! + +Anyway, we ordered the bruscetta for a little snack which were all very good. + +*Smoked Salmon, mascarpone & taramosalata +*Dates drenched in soy sauce with spicy Chorizo (my 2nd fav,mmm spicy!) +*Fig, Prosciutto & Brie (both our favs) +*Sun dried tomato, gorganzola & walnuts (we actually ordered the artichoke but got this by mistake, but we both liked it - and I'm not a huge sun-dried tomato fan either) + +I can't wait to go back and try more wine and more of the delicious sounding food! Crocodile, kangaroo, panini's... YUM!",review,VBKbZD9X4zruXYORIhJhhg,1,1,0 +TCqkBVN84Ek0oLmZGAX5xA,2008-04-07,AhHedJNftPJarMm-nYDJeA,4,"I love minimalism. If you can class up a place with a less-is-more approach, then you've exceeded the abilities of 95% of the American population. Fortunately for the Cen Pholks Lisa G has this aptitude that transcends through her decor and into her simplistic, but delicious organic food. + +Now, here's my deal: you put prosciutto on your menu and and I'm gonna get b-boy on your hardwood floors like Ozone in Breakin' 2. Lisa G's breakbeats the hell out of their prosciutto sandwich with caramelized onions, parm cheese, fig jam, and arugula on an Italian loaf. A side of balls and their Alamos Ridge Malbec and I'm fresh. + +Service? Never had a bad experience, but who cares? The food outshines any flaws of a young dine-in.",review,-F32Vl8Rk4dwsmk0f2wRIw,3,4,2 +MuIXnv7Oq7X3-4aEsp9dDA,2012-12-26,9X7vffM8LREC79yf5yRbbA,5,"This was definitely the best meal of this year's holiday trip.... + +The Kale Caesar! is a very creative interpretation of the timeless classic. We loved the melted Scamorza cheese. + +I had the Applewood Smoked Duck for my entree, accompanied by a glass of the Siduri pinot from Willamette. The wine was perfect with the cherry sauce, besides the fact that pinot is a classic pairing with duck. A glass of Siduri for $12 is a great deal, too. I loved the way the duck was prepared, too, and it did not weigh me down afterwards like duck often can, either. + +My wife had the buttermilk roasted chicken along with a glass of their creative (and delicious) interpretation of sangria. Roasted Brussels sprouts and sweet corn are part of the presentation. + +Dessert was the decadent Dream Pudding Jar. We always get excited about an original dessert dish, and this one did not disappoint. + +Service was top notch all the way, also.",review,_0wsW5uexL4r5Pe2HtmKSw,0,0,0 +V6BYjHM9SnXscfkln3hCdA,2007-05-15,3cfE-5xo_VkBc_5YkryHrg,4,"Oh Orange Table, what can I say about you? I am, to say the least, a regular here. Completely by default, of course, given that I work directly over this great little coffee shop. + +The food here: amazing. The coffee: the best. The atmosphere: perfect. So why only four stars? Because the service can be absolutely abysmal at times. Given, there are a few star performers here who give it their all, bust their ass, and never forget a customer's name. And Sue, the owner, really seems to genuinely care about each and every person that walks in the door. But the service is so unwaveringly slow that I am often prevented from eating here due to time constraints. Example: I once ordered a cup of soup to go-- soup, mind you, that is completely ready and cooked, just sitting in a big tureen in the back-- and it took 35 minutes. + +So, yes, the food is amazingly fresh, inventive, delectable. The prosciutto is shipped in from Italy. The bread is natural and baked locally. The chef's in the kitchen are mad geniuses, whipping up sandwiches, salads, appetizers, all completely fresh and filling. But you absolutely must have the time to wait for it. I've never had anything I didn't like!",review,wYzOrThSYP8WwioLfsu4vQ,1,1,0 +CdOb17NMdQpagyHSxv5mHA,2012-06-07,oqkU_xVofn8OAbLijTipng,4,"Delicious, cheap (for how much you actually get), and oh yeah, delicious. + +I LOVE this place. I easily take home enough food for 3 meals. Great variety and nice people.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +GNC2WXRjEO8e7r5f8ZCVrA,2011-02-14,KHf_TwGOCDSzhz3dDKDIeg,4,I love that it's all a self serve line. You pick your yogurt and can mix flavors and then add any other toppings you want! Fabulous!,review,1Xxau4ghT7VWDdDwK9gjiw,0,0,0 +GQuUFerQlnyRoOGdA63EKA,2010-08-12,9SjsRrEWhHuRlFL_EbN0FQ,1,"Found the doctor via his website and called for an appointment. The ladies that answer the phone are sweet so I felt I made a good choice. I was taken into the room and a sweet girl asked me questions and told me the doctor would be right in. He came in quickly and asked if I would mind if someone that was following him would be present. Fine. The other guy walked in along with a lady (medical assistant maybe). No one introduced either of them. Dr. Racette didn't ask me one question and didn't address any of my concerns. He seemed to even brush off the questions I asked or responded with brusqueness. It was very irritating as a patient to be asking questions about serious topics like skin cancer and feel blown off. He prescribed a cream for me and was walking out the door minutes after seeing me and said he would have someone come in with the script. He never talked to me about how the cream works or what it does. Awful awful. Too top it off, they were supposed to call me with test results. I had to call them and the gal that answered said, ""no one called you with the results yet?: NO!! Will not see this doctor again. Sorry but I actually prefer doctors that care to take the time and actually address my questions and make me feel comfortable, not take 5 minutes to rush me through an appointment.",review,ZXXNfqQfydJFLAqBtzwM-Q,0,2,0 +hwafU4w-IYkIRZa_9LTupg,2011-04-29,bq0j-zqDOWLdsxfPyZCO1A,5,"I honestly just got home from visiting Super Farm! I headed out their way because I wanted to try their milk - we are trying to spend our $$ on local businesses. It was great to actually speak to the people who raise the cows and see the cows with my own eyes! + +We ended up staying for about two hours! Everyone was so friendly. We bought our gallon of milk ($3.49) and some butter ($4.99) and then stayed for lunch. Chef Matt - I hope I didn't forget his name!- introduced himself while we were buying milk and we decided to stay for lunch . The kids split a kid's cheeseburger and I had the chicken salad - sandwich. It was fantastic!! + +After lunch we visited the baby cows, the goats, and then stopped and had a big glass of flavored milk ($1 each - grape for my 2 yr old daughter and chocolate for my 4 yr old son). + +Everyone is so nice here - my children LOVED it and did not want to leave. Worth the 40-ish minute drive out there. (We live in South Phoenix)",review,Wd8HTLOxMPRbGfY4UxTYVw,1,1,0 +O_5RlNmiyBRzwGZAwfsZFA,2012-09-26,Wi_z-YjQbquzL85y2-IxUg,4,I tried this place on a recommendation of a friend. Their frozen yogurt is really good. The peanut butter flavor was rich and creamy. They also had a wide array of toppings. The only downfall is they were a bit pricey. I had the small cup whcich was not even full but once it was weighed cost almost 4 dollars. I would still say very yummy and worth trying.,review,2_Npj9QcohAoSZBaqiOqZA,0,0,0 +R7YlKfLpoFDAJQB9hBcQJA,2010-05-26,XRQN9hl5ZX4jbxirfpN5BQ,4,"Good, Cheap, Chinese and Food - add Buffett and it is explains why Outlook has recurring event function. I would be tempted to live off the $3.50 lunch specials, but I would burn up my savings with time and gas. + +Combos come with rice, egg roll, crab puff and chicken wing. +A la Carte comes with soup, rice, and fortune cookie (Take out = no soup) + +Menu does not have some standards, i.e., almond chicken - but cashew is certainly acceptable. +Sauce abundant but thin, flavors are not bold, and ""spicy"" is not. However, value for $ is substantial and got plenty of spicy with addition of hot oil. + +They are tucked into a strip mall with little to no visibility. My sister has lived less than a mile from there for years and did not know it was there. I would not have found this place without Yelp -Thank You.",review,YgsnAwvPAePG5sjhcrLr1Q,0,0,0 +T80zdmoHleRsTbRXJBLoFA,2012-04-07,1341BsjjROKjT6cDF2xSqw,5,"We use yelp.com anytime we are out of town and want a great place to eat. We weren't disappointed again...Ramiro's is great...generous portions, great prices, huge selection...you can even get most everything ala carte. We were visiting my parents and told them about Ramiro's. They said they have driven by many, many times...not any more! I had the biggest, best carnitas chimichanga I have ever seen. Can't wait to come back and have the taco salad. Don't drive by this place!",review,SCUnkjWh4ey1WhYBIDRTGA,0,0,0 +8HQ8clouLGgee99KkR4vXA,2012-12-12,CT5dx_CIhO0Iq6NrSljLiA,5,"The best Gelato ever...EVER!!! Yeah I said it. What? Seriously, the best customer service I've experienced since the '70s. By the time I ordered I was nearly full because they encourage customers to try everything - easily 20 different favors to sample and choose from. My favorites are the dark chocolate, salted caramel, peach champagne, and black cherry. We've visited multiple times and have never been disappointed - same quality service and deliciousness every time. My kids referred them to a friend and he owner gave my kids free gelato on their next visit - they appreciate their customers. If your looking for your next vice, check this place out!",review,-JCz23DksK1RarHxp03-Gw,0,0,1 +vvWx1pJvr3QuFb7IW4-KGw,2009-10-16,fjkE-nCbG-BU0Z1w2kHkew,3,"10/12 + +Friendly and quick, although I had to point out a few spots where extra attention was needed (tar on one side was initially observed as paint scratch, until I told them to check it again). I also found a few spots that could've used another one or two swipes of the towel, and the sunglass case was never touched and thus dirty. + +Be sure to visit during the early part of the week, and not on the weekend to grab the best deals- I paid $100 for both interior and exterior detailing. Am so happy with the overall results- the spots between the bottom of my car seats and the floor are completely clean of caked-on food debris (I am living in the middle of the desert, after all) from a few mishaps throughout the years!",review,0bNXP9quoJEgyVZu9ipGgQ,5,6,5 +BJBzsvaCQ2mo8CWfQ1jPiA,2012-07-03,q94gMPm3YrwvA9hSIJgJhQ,1,"I'm sorry. You're too busy to look up my club card information? Too busy too push the button to do the search, enter my phone number and click ok? + +I took the time once upon whenever to sign up for your card. And now, you can't take 5 seconds to look it up for me? Let me clue you in, the cashiers here have always looked it up. It always takes 5-10 seconds at most! Great customer service. Insert sarcasm here for the uneducated. + +Other Big Lots this hasn't been a problem. Just the one.",review,aIUefJBhBQ_UZEzryL6b8A,0,1,1 +2bdKR3l4o-S1CscLqqnvVw,2011-01-26,vl_qHmXSWAyyKZSqinoVnQ,4,I hate Thai food and I'm not a huge fan of curry but this place has changed my mind. Very reasonably priced and always a great option at lunch because they handle the traffic very well. Not only am I back on the Thai bandwagon but my favorite dish is the green curry seafood.,review,vUn91MER1jV-jT4crd3pOg,0,0,0 +Rg4dHuszzF0Mb4yqtoHSiA,2012-12-17,tFIWgYyjTWztYFm2jvlO5w,5,"Still a great place to eat. A little further from Los Tacos in AJ (home for me) since Los Tacos closed, i frequent here more often.. + +It is good.. I want to add that their green corn tamales are GREAT! + +their Green sauce seems to be a popular choice here on YELP's reviews. I like it a lot too! + +I plan to order more tamales for the holidays! hurrah!",review,QQ6R2bbgoWQRhv7lxdKmVA,1,1,1 +c1yGkETheht_1vjda7G5sA,2011-09-10,jsTH2unIBSGDUvWfmZxxLw,4,"Anyone who asks, ""are you a vegan to lose weight?"" should come to Green and eat their words. And everything else. + +In fact, I usually end up at Green with non-vegetarian friends because they claim that it's ""Food you can eat that I actually like."" Every dish is addictive, flavorful, saucy, and filling. Classic hits include the chicken thai peanut bowl, the singapore tofu bowl (although the mock meats are a shame to miss out on), the vegan BBQ chicken sammich (I just watched a carnivorous friend down this with the delight and voracity of a young velociraptor), and then there are the eternally awesome specials. + +Even though you'll probably be stuffed post-meal... make room for dessert. It's mind over matter anyway. Order a Tsoynami - they're like McFlurries with vegan ice cream and epic swirl ins. Standouts include Tsoynamis filled with anything from frozen chocolate fudge, bananas, kitkats, hazlenut brittle, mint oreos and more. + +On a another note, this is also the only strictly vegan restaurant in the Tempe/Scottsdale area with a lively, hip atmosphere. Even if you love steak more than anything in the world (and there are steak po'boys, might I add) at least stop by for a chocolate chip cookie and check out the awesomeness of the place.",review,BjwXX-sChcjx2E55B_7rXg,4,5,3 +g4Eit1EeeEGhTVik6AWYsA,2009-05-07,LsRpL2j4BnVLGt0PXzusyw,1,"After landing in PHX but before embarking on a 2.5 hour drive to Flagstaff, i thought Wendy's would be a safe and easy place to grab some food on the go...well, I was wrong. + +* Chicken Nuggets: dry, freezer-burned meat with extra hard double-fried shell. + +* French Fries: super hot, crunchy, over-fried french-fry-shaped fry-shells. so hard and crunchy that i thought i was eating french-fry chips. + +* Junior Bacon Cheese Burger: bacon and burger meat both tasted dehydrated. + +Guess what, last thing I want after a 4hr flight and landing in 100+ weather is hot, dry, crunchy, tasteless food!",review,2W8kTEcYhkSL2yYSyHxOcw,1,1,1 +St3jS0PnF1lulH1ggA4Jgw,2010-09-10,tHHLBvbNg1SM3_VVTLvZFQ,3,"Luci's is a good neighborhood spot to buy your health foods, drop in for a coffee or fresh made baked good, or pick up some beer or frozen meat on the way home. I agree with Pamela's sentiment about it being a marriage of TJ's and Hi-Health with AJ's prices. + +I've had a couple of bad cups of coffee here, but in the 10-12 times I've been they have always been very nice and have remedied any problem very quickly. If it wasn't on my route, I may not stop here much though. Trader Joe's and Hi-Health are right next door to each other at 20/Camelback and you can save a ton of money if you do it that way!",review,JgDkCER12uiv4lbpmkZ9VA,0,0,0 +tZXPhvufHhfejGrRp554Lg,2008-10-30,i6Fv6h9lUdjzks3_L6sImw,4,"I must say that this place was nothing like I expected when I read that we finally had an authentic Parisian patisserie in the Valley, owned by two REAL PARISIANS! I envisioned a warm, casual shop with fresh croissants, danishes, cakes, etc. like the places I experienced in Paris. Needless to say my expectations were way off - I should have been thinking less mom-and-pop Paris bake-shop and more Payard Patisserie, with delicate pastry works of art in a stark, hip space. We shared two desserts, a blueberry something-or-other and a lemon tart, and both were fantastic! So while it's a little more upscale 8th Arrondissement than casual 5th, it's still authentic Paris in Scottsdale, and who doesn't love that?!",review,OQMOgqS1NFIyAW4i66iDYA,1,2,1 +-5EWgRkudDlcCbQSIL_twA,2011-10-24,B1ECq1VW4jwBJ-drdaa9MQ,3,"Agree with most posters about the setup - left much to be desired. + +I was smart and arrived BEFORE 4:00 P.M. so I could jump in early for some short and FAST lines. My 15-yr-old son was with me, and he's a fairly picky eater, which was one reason I brought him - so he could see that there are other foods he might like if he TRIED them. + +I got a lot of food between 4:00 and 4:30, when the lines were short. I probably got to try 10 trucks before we left at 5:07. We went back to some trucks more than twice or three times when we found something we liked. + +My advice for future events: + +1. Help the trucks deliver the samples FASTER. Not sure how - maybe get them an extra staff member? But the samples on some trucks were coming SLOWLY, so that needs to improve. + +2. Better location, maybe not on dirt, and maybe a little larger. Once the lines got up to 20-30 people, the going was CRAMPED and it was taking a long time to get your samples. + +3. Maybe a lower price for tickets? Seemed kinda steep for the amount of food each person received. + +All in all, I enjoyed the FOOD, but the rest of the logistics, not so much.",review,iwZ_7QuZ1tzT6pIZmOlDQg,1,2,0 +0NhcabzEyeCIMsNCPOX-MQ,2011-02-28,24B43Y-wUOaCk-wfPtOMcg,5,"I was skeptical when I kept hearing how amazing Jimmy John's is. So I went in, and found my new favorite sandwich spot! The inside was very noisey, but I liked the atmosphere. The bread had an awesome fresh taste, and when I inquired about the difference between 2 sandwiches, the cashier was very helpful.",review,tL_QF_iIGoaPd-otIGa22A,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2010-09-06,cUBlIaoTEMWtPmULbhAw-A,1,"Walked in during late lunch hour. Did not get acknowledged for about 5 mins. When I finally got sat down, and served my salad, I found a hair in it. Got no apology. Just a sigh firm the waitress when she took it away. You can't pay me to go back here. The waiters are rude.",review,DghMl81bONCh5ELnrgn4Fw,0,0,0 +rK9wysMZ3nh6b6dxiG-l_Q,2012-06-11,MxVbXiyamTMUSeJOb4hR6g,3,"I have been to this place twice and I have had both extremes. + +The Good: Shannon, California Sea Bass, Michelle (Manager's) Customer Service +The Bad: Fried Calamari, Our last waiter's breath + +The first visit to this establishment was our encounter with Shannon. Shannon was a pure delight as our waitress. She made our first visit absolutely fun. My wife had a tilapia dish that she was less than enamored with but I had the California Sea Bass and that tasted very good. In fact, it was so good that I regretted not getting a glass of Chardonnay to go with it. The fish had a very nice texture and taste. + +Our second visit was our first encounter with the fried calamari. As our guest so eloquently said, ""If this was my first impression of fried calamari, I would not have liked it."" The calamari was overcooked and there was so much oil running on the plate. We called this issue to Michelle's attention and she agreed 100% that the dish was not prepared properly. She gave us a coupon to come back there and eat at any time. + +However, our waiter's breath was another story. Whenever he spoke, I could smell his pungent (trust me, a lot better than what I really wanted to say) breath to the point I almost donned a gas mask. There are very few things that would cause me to lose my appetite. His malodorous breath and the calamari with more grease than a Jiffy Lube accomplished the feat.",review,sgANmBtbAr1n99zlNzU99g,0,2,0 +qjXtirU34PdTjPVbup8cTw,2007-03-01,xXnZipKgmxQgrPjTXNm60w,4,"I suck at bowling, and yet I love it. I love that I can like something some consider a sport. I love that it's totally ok that you aren't any good. A group of people who aren't good at something can have a great time doing it talking about how bad they are. + +This is my designated bowling center. Sure, we go lots of other places, but this is always a solid central location. Plus, the fact that it's so close to the Biz is a definite bonus! (I've had several years of ""Bowling & Boogie"" themed Birthdays...I'm a geek, but I'm ok with that.) + +Though I've always called ahead just in case, I've never had trouble getting a lane or two here. The food is fairly decent too in a way that only bowling alley food can be. And what the heck is it about Bowling Alley bars??? My friend has a theory that the better the drinks the more games you'll play - both to keep drinking and then to sober up before you go home. + +The facilities are a bit older, and you'll find a few areas that could use a bit of freshening up from years of wear, but I don't mind that kind of thing so much in a bowling alley. Hopefully you won't either.",review,l53FUDHRHLg7BQ89KgAtxQ,0,1,0 +VbsYTiNA9LCuUjnuiubjRQ,2010-08-21,5pgtrjOVZaU1j8Fa7agmPw,5,I used Full Circle Auto Body after my daughter's car was in an accident. They were very knowledgable and helpful about insurance issues and got the car repaired quickly. They post progress of your vehicle with photos on their website which is so cool. I'll definitely use them again if the occassion arises.,review,hWgFZPKXUj0bPCfDLwZHjQ,0,0,0 +U-0hMfagGtjYZCYB1i0WNw,2011-02-22,Y1Qei2UVrpwRTL_C23LGtA,3,"Monday evening at 5:30p.... +The streets are empty....we walk into the bar looking for a Happy Hour beer while we wait for a Yelp event to get started a few doors down. Noticing a couple of people on the sidewalk we expected more people inside.... +*crickets chirping* [You'd hear them if it wasn't for a few of the TVs that had their volume turned up.] The interior was welcoming and clean...but why are we the only ones here... + +The bartender was rather indifferent and sauntered over like he was wishing he could be somewhere else too. We had a leisurely beer and tabbed out....I may have to check out this place again if I find myself in the area.",review,usQTOj7LQ9v0Fl98gRa3Iw,3,3,4 +o2vKya6WSNcMNTxAcJsF1g,2012-01-31,SHSvzrbBvqveLtSB-VHxxg,2,"This place not recommend, food was cold, rice was soggy, lettuce wilted, and beans runny.",review,-ku2SB6n6TOhp80Q4A1LRw,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-03-29,Lw6ShzMb--i4Ezgpzih1og,4,"A great place to experience some unique and innovative dishes. The Stetson Chop, of course, is the highlight of my Cowboy Ciao experience, as it tends to be for many others. But I've also had good luck trying other things on their menu, such as the Mini Mushroom Pan Fry, a less expensive alternative to the entree version.",review,iwdWUJMmZAMD_Y3YRGSg0A,0,0,0 +0lEp4vISRmOXa8Xz2pWhbw,2012-07-10,cB8rE80vPUn8CqLx5nd7kA,5,"I am basing this review solely on the Cauliflower Soup. Holy Heaven in a cup. We had Zupas cater lunch at the office, so I can't speak to the actual restaurant. But man, I wish I had a bucket of that soup.",review,cgoX_o37gaOm2S0kMtqORQ,0,0,0 +ADJIoHN3uLx-JalYl3r3Dw,2011-03-17,7w8lcy90ulaKtWK4CSbdrg,4,I had southwest salad. red velvet cheesecake mmmmmmm,review,IwiupaUMeltnd0a9Cp15tA,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-08-22,RalSy3zqn1Ta27A3JRRotw,5,"When a man falls in love, it's a special thing. Not because his calloused hands and heart are finally softening. Not even because he has found something that completes his very living soul. + +It's special because he is simply, and utterly....happy. + +Ladies and Gentleman of Yelp....I have found the pizza that makes me happy. + +I heard all the hype...""best pizza in the country"", ""Oprah says it's the best"", ""The Food Network hypes it up"", ""Chris Bianco learned how to make pizza from Jesus"". Ok, I made up the last one. + +My friend and pizza aficionado, Lance has been known to drive in from Los Angeles...just for this pizza, and then he would drive home. Sometimes, he'd even fly in. It had to be good, right? + +Tonight, I chose Pizzeria Bianco for my birthday dinner because of the hype. I had made a pathetic attempt to dine here once, but myself and the individual I was with, we both were intimidated by the 3 hour wait. + +Is any pizza worth three hours? That's a personal judgment call. That night, I ended up dining at Nobuo, across the path....and it was a nice meal. + +I digress. I've been preparing for this trip. I read up on various press articles, and discovered that as of last week, they are open for lunch AND Mondays! Perfect. + +Tonight, I dined with my parents. My favorite dining companions. + +We sat down in the very intimate dining space. No wait at all. Perhaps, people don't know that they are open on Mondays. Fine by me. + +The decor is nice. Simple, with a classic cucina feel. The brick oven is the star of this place. Clearly. + +We ordered some bread to get started. It came with a little cup of high end olive oil. Fantastic! The crust was crisp, and the bread was chewy to the point where you can't help but smile when you eat this. + +The pizza is phenomenal. We ordered two pizzas (for three people). One was half Rosa and half Margherita, the other was the Biancoverde. This way we were able to try three different kinds of pizza . +All three styles were phenomenal. The winner of the three was the Margherita. The tomato sauce doesn't overpower, the mozzarella melts like a dream, and a hint of basil. + +The Rosa was unique, and also delicious. The Arizona pistachios take some getting used to, but pairs well with the red onion. + +The Biancoverde was much more complex. Definitely a hearty pizza because of the ricotta cheese. Very tasty. It's topped with arugala, so you will get a nice earthy, and loud flavor. + +Usually when I eat pizza, I take a bite of the crust, and then I leave the rest. Not here. I went through the entire pizza slice because it's perfect. Chewy, crispy, and full of happy! + +Take it from me....this place is worth the hype. Look at the reviews from other Yelpers. Even the picky ones love this place. + +Maybe it's true. Maybe Chris Bianco did learn how to make pizza from Jesus. Sure as hell tastes like it. + +Now if you are wondering about the other stuff, it was also a five star experience: staff friendly and attentive, and the bathrooms are spotless. + +Worth the 3 hour wait? YES. Bring all your friends here? YES. Will I guarantee the awesome? YES. + +#300",review,8JC-Yb3UDUv2FUl5ym1nVg,10,11,10 +2FiLqh18ypsamf2vZOj7eA,2011-05-26,NHCfKP1O9G5nuJtutlzgHw,5,I'm usually not a fan of indoor tanning but post baby I felt like I needed a little pick me up color. I chose this place because of their good prices- 3 tans in a lay down bed for 17 dollars. The staff is so amazing and friendly and I got a nice brown tint after a couple of sessions.,review,dhhhnpr_elfbD1xjMfAEjg,0,0,0 +IoFggnoj1P4EcmNEP2K6Ng,2011-12-30,3RQF9CbMHUquwgr1YqAiRQ,2,"I have been coming to xtreme bean for several years and it is still a generally good place. the coffee is average or below, the tea selection is good, the atmosphere is ok but same old. The current staff is incredibly immature and act like children yelling, and even barking, at high decibels. I've never seen anything like it anywhere. I'll have to think twice about coming back if this continues.",review,W5Pd_GmMem2LdHZkoxQCtw,0,0,0 +un3KC2gyMrSG6yqjVRctXg,2011-03-31,f1jNO3ep2cxzJvigO02sYQ,4,"This place is GREAT! I must have passed it a million times without knowing that it was tucked away in the complex. The sushi was awesome, the drinks were very reasonabally priced, we loved the decor and the atmosphere was very nice, kinda romantic if you are seated in the back away from the sushi bar. The service was great! We will definitely be going back.",review,bucwbyP1wOxRJe_RwmmAqw,0,0,0 +FURgKkRFtMK5yKbjYZVVwA,2012-07-12,CdB-1aexiOMcz7Yf7VQ__Q,5,"I love their food. Everything has been delicious, though my favorite is ""Bahn Mi"" inspired fish sandwich. Get it with a side of kale salad!",review,KFMF49A-B2ywzv8qcfoTOA,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2011-03-22,HP7I5z-axGcb1i4kZTHtng,5,I crave their jalapeno fried rice. AMAZING!,review,FpCmGLWHe5Y-kDS7ZYaF5w,0,0,0 +VbXy3tH5RAu7HjT7VeMMgA,2010-08-25,iGP6QWXXBflfRxZ4q_m6jw,2,"Not good. +Very bland Thai food, ugh, the two words do not belong together, bland and Thai! +The Peanut sauce was the worst ever. +The Pad Thai and Tom Ka Gai soup were blech. +Fresh rolls large but no flavor. +The service was decent though. +Just disappointing.",review,SwFbQrbTboesoC9hUb4vOw,0,1,0 +mQfT3JYu18HN22DVylcE7A,2012-08-19,lDX0_aWKJ-0MGazcusrYmA,4,Charming cafe and it doesn't matter what you order. Breakfast - Lunch - you can't miss.,review,HUjxOju8G9eB-h4RejLhTg,0,0,0 +8m08a9xJKmANwmeuR-0bPA,2011-03-30,aC5FmmKumiHiDnL033gEMg,5,"had a ""cap steak"" for the first time. Best steak i have ever had. Would recommend to anyone.",review,IAOCwB3c2c_-6_Y5rAjXIg,1,1,1 +iELA6eREUgDVQrtLgYmS6Q,2010-05-20,UHahF56Mk28guTkHPhzwcQ,5,this place is amazing! So many flavors to choose from!!!! I LOVE this place!!!!,review,0LOQYfwdFetaQ-gc6h9NLA,2,2,1 +winRNt7prallDbpaDMS9Ig,2009-05-10,fMlf7I_EdMdFfSphMgy2Xw,4,"Went here with some friends and the pizza was pretty good. The ricotta cheese and tomato toppings were fresh and clean and very tasty. However, what I remember is a peachy-vanilla-martini which definitely got me a little tipsy, even before I finished it! But I'm also a lightweight. + +The atmosphere was pretty casual and very well-lit. I loved their ceiling-high windows. Their service was attentive and pretty quick. 4 stars.",review,bsr5z13fberCAGTsshR8Eg,0,2,0 +ss5gVggeSmAgMUeL65UvYw,2012-03-21,3XFWo6sM6Jf4_-7FfKEm_w,5,Postino's in Gilbert was stunning! Amazing outdoor/indoor chic atmosphere. Food and wine were excellent as expected! What another great addition to the Postino family! Loved it!!!!!,review,fxtsDmzjap5mkad2kecERQ,2,2,0 +GpK9MeUjEd7rwhejG2ykww,2012-11-03,R6TnUHrLdpmFTQugfOj9OA,1,"Absolutely waste of time & space is this establishment. Don't bother checking in with the host to be seated as I saw many people just seat themselves although there was a 20 min wait for others, the staff rude, uncaring & could possibly be where all the servers go that can't get a job in any other Resteraunt. A complete disgrace & I would never give such a place my hard earned money, I suggest you do the same.",review,E9wKeRLWGpQxbKlc0zLlCg,0,0,0 +bF7KQ6AQK5rBS7aOFKtlWg,2010-01-04,gzVngqZykXoiJ5edm4cyHw,4,"Sure the food is good, but out of my last 20 take out orders they got it right maybe once. The people making the food look so high you would think you were at Cheba Hut, but I just love that damn Broccoli and Wisconsin Cheese soup! Their fresh dark rye bread is always great. + +I enjoy the Italian quite a bit and the wife LOVES their tuna salad. Great healthy place for food if they aren't too high to get your order right.",review,FL1xj5qKFZkU5GXVBj5TUA,0,0,0 +oCA2OZcd_Jo_ggVmUx3WVw,2011-12-04,5cEq7_Zih0WOYjFsEX1sfw,3,"When we lived in AZ, my biggest regret was not coming here. I've always wanted to try it. + +Doing our road tripping this week, I was able to. + +Parking was easy for a weekday...we went in - through the wrong door. Oops. The server who was stocking things seemed surprised, but rolled with it. She said we could sit anywhere we wanted (we were a party of three). We chose a table for 6 so we could spread out a little and not be so squished. She immediately snapped, ""Not that - it's for 6 people."" I almost said, ""Then don't tell us we can sit wherever we want..."" I refrained. That surly girl nearly spoiled it, but luckily our server saved the day. + +I saw the hot dog...you know, the 22 inch insane monster on the menu. I split it with my friend. We didn't even finish it. It was delicious, if a bit salty. I knew it was a salt overload because in under an hour my fingers were swollen. :( Oh salt, why must I love you yet be so affected by you? + +We didn't finish it, but definitely enjoyed it. If I get this again when in town, I'll get it plain and still split it with a friend.",review,EoTooNBcxu0Hy0-XeZI8aw,0,1,1 +gWQlTK3o29rZGlw2YLUnhA,2008-08-06,bngFuVhsD_uQTJWKAM5rig,4,"It seems totally unbelievable that, not only did I hang out for more than an hour at a mall, but an outside one at that in 115-degree heat. I attribute my ability to withstand these two unfavorable conditions to two things: + +Bonnie +Tea Infusion + + +It was Bonnie's choice to grab some drinks at what she described as a ""great, independently owned tea shop"" located at Tempe Marketplace. I'm not a tea connoisseur by any means, and I generally distrust fads (i.e., this silly-sounding thing called ""boba"" tea), but I agreed cause if Bonnie likes it, it's gotta be worth checking out, right? + + +Parking wasn't too much of a hassle on a Sunday afternoon, and we surprisingly got a space close to an entrance to the ""District,"" just outside of Barnes and Noble. Inside, the shop looked much like a Starbucks - and I don't mean to imply that it was uninspired or anything. It was clean, modern and consisted of a long counter behind which two employees busily hand-mixed tea and smoothie concoctions, along with a few tables/chairs. + + +The menu was extensive and separated into ""black,"" ""green"" and ""white"" teas, any of which I could get hot or cold...I think. I picked the tropics white in iced form, and B got my second choice, a peach mix white. Both were pretty delicious. There was also a selection of sandwiches and snacks that I did not sample - next time. I also ran into a good friend there who was delighted by the fact that they had this mystical ""boba,"" and so ordered a Chai-type version with blueberry-sized and -shaped balls floating on the bottom, and an oversized straw to facilitate sucking them up along with the drink. I tried one boba ball and it was gelatinous and chewy - not at all like what I expected - and an odd sensation, but I would totally order one the next time I'm in. + + +Being in the District and flanked by stores like ""Hottie Inc."" and Guess, there were several teens inside hanging out in large numbers - boo. So, we decided to sit outside for as long as we could stand it. I was surprised to find that the several shaded tables and misters made for a pretty comfortable environment, and we hung out for a good hour or so before I got so sweaty I have to get mobile. + + +So, in summary, I would totally come back. Probably before or after a movie, to grab a drink and support an independent store among a mecca of chain retail. Plus, right across the way there is an ASU art gallery (closed Sunday and Monday) that we peeked into and actually cool, interesting sculpture art by local artist and asu instructor David Young. + + +Touche, the District at Tempe Marketplace - I have to say I am impressed!",review,7GC9fVWKa4a1ZmBGLH6Uww,5,6,5 +2ceeU8e3nZjaPfGmLwh4kg,2009-12-16,jHVCK9VLFoedinfGBUHlAA,4,"yo, bro, let's compare forearm tats and drink some New Castle. P.S. everyone saw you bif it on your fixie as you rolled up to the bike racks. + +for real, most predictable crowd ever!!!! + +I can talk mad shit on this place all night long, but when it comes down to it, I love it. The location lends to its patrons- alternative college students living in the only historic (PHX like) neighborhood in Tempe. Plus it is right next to HTC, so everyone is sure to be rocking the flyest of -50 gauges. puke. + +but.......the charm of casey's is in the cats. they are cool and roam around. Also, the best patio ever, and lots of room. Don't go inside unless you can't get a drink b/ your waitress forgot about you (which is most likely what happened). Or if you like old dudes 65+ eyefucking the shit outta you be my guest. Also, one night after I was there, the next morning someone had charged $2000+ on my credit card for an ad in New Times. shady......or recession? I think I know how this happened, they leave your card within an arms reach from the bar inside, face-up so any creeper with 20/20 can get a peek and thief you out of your identity and money, or maybe it was an inside job??? + +but I really like this place and still have ""casey's nights"" even though jimmy eat world sucks and I live in phoenix. + +oh yeah, this place is haunted too....and if you are a girl do not go pee in the grotto.gross.",review,AdVBY7Ow_ICQLfVEbf_nTw,0,1,4 +E3RjJH45EX6rHYDs0TYSRA,2011-10-19,wkzQy1F12SSWSlaRpaAaXw,4,"Great Happy Hour. Get the TACO BASKET~! +Thursday-Mexican Beer $3",review,2HMJBY7WFiotdNCDpFGUIg,0,0,0 +J-ZZcapKrlAlq0h0zAnWKw,2007-06-16,azShrq85WGDDiOyQDnkSdw,5,"ADORABLE PLACE! + +Wraps, Pastas, Salads, Pizza, Gelato, Pastries, Sodas and Such + + +Super darling place that makes you feel so comfortable. Looks like they have computers to use (i don't know if there is a charge). The inside is precious, decorated to the T-- not a single spot was missed. Our food was placed on a silver tray and handed over to us to sit in a comfy booth and enjoy our wraps and pizza. It was really good. The place is just so darn adorable; it's hard to concentrate on the food when everything was so POSH while you NOSH. Get it?",review,XBHJCDzNh--mBhJkzyM_iA,1,4,1 +5KG0A3WlC7K3DAXtrIFFjg,2012-01-11,MCiznZVa7bdIb1FpDqEVrQ,4,Such a great oriental market! Unusual fresh produce and aisles of every kind of noodle and sauce. Fresh fish. The only disappointment is we read on Yelp that they had sushi grade fish and they DO NOT. Boo! The only thing they had was frozen smoked eel (Unagi). We will definitely shop there often and it was a fun trip for the grandkids-,review,OHaNglacPVt189iLDIyXbg,0,0,0 +jbKVbSz51F8IcewsiRQu4A,2012-10-17,qyJGEFE2APx8DfBoXLKCtg,5,I come here at least 3 or 4 times a month. Best Asian food in Phoenix however it is now closed,review,a09ENYogqRn0sQ8J2D_rng,0,0,0 +corPOxxIBRJ7DSpryYvorw,2011-09-05,RQWa8LbLKuNUtrGO8101MQ,5,We love Roys. The service is usually outstanding and the food is wonderful.The ambience is nice and usually pretty hopping on a Saturday. My water glass is constantly being refilled because the people Roy's employ are totally on the ball. We have dined here 8+ times over the past 2 years and have never had a mediocre meal. They also have a delicious vegetarian menu if you ask your server. The wine list is comprehensive and they are known for their creative cocktails.We have dined here on both special occasions and regular Saturday nights. It is kind of like being on vacation when we go since it is located in the gorgeous JW Marriott. ...definitely in my top three Phoenix area restaurants.,review,eXiHAxrnvE64j4wTEOTEMQ,1,1,0 +pAHUC05ceak48e745i6G4g,2012-10-09,0g2uOcC07ilW6n_gX63KQA,5,"Stopped in for the first time at PV Burger Company tonight. It was quiet, only one table when I got there around 6:20pm. Ordered a bacon havarti burger with fries and a coke; it came out to just over 9 bucks. + +The burger came with lettuce, tomato, cucumber (???), pickled red onions, and thousand island. It was DELICIOUS. Beautifully toasted bun, great char on the meat. The pickled onions were a nice touch. The fries were skinny and crispy and had seasoned salt, which brings me back to being a kid and getting fries at the food court in the mall (good memories). I got a refill on my coke before I left, so I don't know what another reviewer was talking about when they said there are no refills on sodas. I asked and it was no problem. + +My only gripe is that after I had ordered and sat down to wait for my food, a couple of guys came in and the guy at the counter immediately handed them paper menus (with actual descriptions of the menu items I'm sure, unlike the chalkboard on the wall), which I would have liked. I probably would have gotten an add-on for my burger if he had given me a paper menu when I was at the counter. Oh well, now I know for next time, because there will definitely be a next time in the near future :)",review,gdNJzMx9duSZCBdiU1QKFg,0,1,0 +zMa6YoEekpABg1HZnnTZdg,2012-09-02,WI4PbBLUGvL6PXrsPoyPgw,1,"IF YOU HAVE KIDS YOU MUST READ!!! +My husband and I have never been more insulted at a restaurant than tonight at the Hillstone Restaurant (Biltmore). +This is the same restaurant group that includes Bandera and Houston's. + +We deliberately went out early-- at 5pm -- with another couple and our son. He started to fuss on and off during dinner. Mind you the restaurant was already noisy when the GM Miranda Geranios instructed us to leave; other patrons were complaining. That was news to us- and we've seen far worse outbursts in the past from children. Ironically, our son at that moment was playing happily with the other couple when she rudely asserted herself. + +We were in the middle of dinner and to add insult to injury, she didn't even offer to compensate us for a future visit without our little guy. Just go home without dinner and pay the bill. Of course, she herself has no children. +To ask a repeat customer to leave is absolutely disgusting. We will never visit any of their establishments again and wanted to share our unfortunate experience with our friends who also know the challenges of having a family.",review,LF4zOXPFVdq7Xglb5yVcYw,0,7,4 +I_N5b-CA6j0TFMpy1xYKdQ,2008-08-09,fCeVKfgnC20qlgXOWMRkrQ,1,"07/09/2008 +Just went there last week for the first, and last, time. I read the good reviews, so I was expecting much more. I am a first generation American; both my parents were German and came over in their 20's. I lived there for a few years, have eaten German food all my life, and have been to many German restaurants in many different states over the years. I really wanted to like this place, as there are not many German establishments around here, but this place was terrible! We were the only people in the place at 2pm, and still had horrible service. ??? We were ignored much of the time and then when the waitress did come, she would forget things we had asked her for. The waitress didn't understand German, as in the German MENU options, so I ordered from the menu using the English translations, and she was still confused. I had to POINT at the options. YES, there really is CUCUMBER salad on the menu. The bread was stale, the schnitzel was hard, there was a hair in my cucumber salad and my potato pancakes were just ...disgusting. They also gave me fries instead of the usual sides???? I am guessing that they just reheated leftovers from the dinner the night before, because that is exactly what it tasted like. Plus, I actually got charged the wrong prices - like lunch salad was 3.50, but showed up on my bill as 5.00, etc. I was too frustrated to even bring it up and just left, disappointed. Waste of time and money, I will not return. Maybe at dinner time things are better, but DO NOT EVEN TRY THE LUNCH! Yuck. +Oh, and the website is outdated- wrong prices and discontinued menu items.",review,JCbnDoUBsUpryA3xWa3Urg,0,0,0 +kgPjOtSeMd3CMdbnEmHbeQ,2011-09-17,nzsRXoX2fsa8gYTeBK_wJw,4,"This place was real chill last night. I had been to the one in Downtown Phoenix quite a few times before and wasn't all to impressed, but this location is a whole 'nother animal. + +Plenty of space to do you. + +Something so rare in cramped up tiny Scottsdale. Crowd was alright and the bartenders we're super nice. Might have to swing through the next time I hit up Scottsdale.",review,uc04YCxFi1ZUj5N9mfiUyQ,3,3,2 +Snp5LyDO9NeQiuFPOlkavw,2012-04-04,4cJjMRcRBDVMyWhNq0jA7A,1,"I keep wanting to like this place. I want to support a local business, and yet.... + +Last year I took my two boys there after a theater performance (Greasepaint! Excellent!), and after we placed our orders for lunch, I took out our SET game (it's a card game that does not use a traditional deck - great fun). WIthin moments, the server was back at our table. ""You can't do that."" ""What? Play cards? It's not gambling."" (Maybe I was wrong, but living here, you start to assume that an objection to something must be religion based). ""The owners don't allow it."" ""They don't allow it? It's a matching game."" ""No. You'll have to put it away."" + +Now. I would understand not wanting us to sit and play cards if we'd finished eating and were just holding a table (assuming it was busy). However, this was during the gap between ordering and eating. I KNOW I should've just left then. Instead, I made my kids happy and we stayed for lunch (and ice cream!). + +A couple months ago I (foolishly) decided to try again. Didn't bother with the cards this time. The lousy thing this time was the mold on my son's bread. They DID remove the sandwich from the bill, but eish. + +I'd kind of like the ""Restaurant Impossible"" guy to come in here and give it an overhaul. I don't mind the nostalgia stuff, but the place does need a solid going over.",review,vhGwvm7sCXThBqJ2YQS13A,0,3,1 +MLAnvEcvDfOWELHUN_0xEw,2012-05-17,LMBgdKmFUBWS5ogvS05jqA,1,"This place needs to close their doors, get their act together, and then reopen. The atmosphere is boring and it is obvious that they did the bare minimum coverup from the last restaurant. The food is horribly boring and has no flavor. I ordered the chicken and avocado pizza and it literally tasted like nothing! We also got the nachos (which was actually just a plate of chips with one tiny pinch of cheese and soggy beef). In addition, the server didn't put in my order for my pizza, hardly apologized and then brought it to me 30 minutes after my friends were done eating. One of my friends ordered the ahi tuna and it was switched with someone else's special order so that had to go back to the kitchen and be reordered as well. The only thing I liked was the beer, and that too took forever and I had to remind my server several times to get me a refill. Way to much effort to get food and drink that is sub par at best.",review,OEIoHR0ERrCqshpQ8qoV1w,0,2,0 +g9sBcVyH1MXLiTPDo06Wig,2010-08-19,Q3rfRCoSzZzJIJudUfu53w,1,"Thank you to Sarah L for bringing to my attention that the lunch menu from which I got my information about the $34 crab cake entree was for the NYC location. However, I did note that the crab cake appetizer at the Scottsdale location - presumably a smaller portion than the lunch entree - is $16. Yes, yes. It is Barney's and I understand the premium pricing. What I question is how Fred's scored only $$. I often eat out with those on a tighter foodie budget than mine; the $$ is misleading, when Oregano's is also $$. Just sayin'.",review,W4fBHIRoNh_qAJwORXKPpg,0,0,0 +7McTmo8UxlqUlvDNXcMOWA,2012-03-30,Xp7MD71aIM3R1NbAjuwoSg,3,"Dinning here since 2003 + +Wings: Big and flavor full, special wing prices on Monday. + Some of the biggest wings around, includes: celery and ranch or blue cheese. + Four star wings. + +Pizza: Delicious!! A medium is 14"" and the crust is thin, and foldable, New + York style... with LOTS OF HOT CHEESE. Four star pizza. + +Fried zucchini: Complete disappointment, for $5.XX ( $5 something) you receive + 8 small zucchini rounds. + +Chicken Tenders: Dry, small, inadequate. + +Beer, Pitcher of: ICE COLD, delicious draft. + +************ + +Atmosphere: Mom n' Pop Shop... this place permeates family owned. There are + usually only 2 people working, one in the front and one in the back. + Definitely the kind of place where you don't want to piss anyone off, and + they might have a shotgun under the bar... + +Service: The waitresses are attentive and very close if you need additional service. + +************* + +Will I Return? Yes, I love those wings!!! Ugh... And the pizza, yum. I just won't + order appetizers.",review,w98TrmskPMlMQLpz-Z8EVg,1,1,0 +kfscAJnLVf6J2uEte7g-5A,2012-11-08,0qbLDVATHdBgEI0xPtEJeg,3,"I would love to give Yoli's a higher rating but there were different factors that occurred that morning. +When we arrived they were closing early and had very little left on their menu as they were reviewed by a local TV station and ran out of food. That is a good thing they were receiving recognition but not good for someone who was stopping in for the first time. +We decided to sit outside on the patio, water began to leak from the roof and you had to move to a different seat. They blew it off as ""oh well"", when food arrived, I was not impressed with what they had to offer. The food had little flavor. It is hard to give a fair rating because they did not have their popular foods available. It was disappointing that we paid $ for an average meal. We will try Yoli's again soon, we are hoping it is Wonderful!",review,OcrBYYHdmG5siBi1wUkoYw,0,0,0 +M6fjHpkL9IRI-nI0BattRw,2010-01-27,epfWgfbJe9dK3-qGwk7-mA,4,"I've never been to the former restaurant that was once housed in this quaint little building, so my first impressions may be a bit different from others. I have always adored this house. It's absolutely adorable and in such a good location. I read over the weekend that the new restaurant here was opening, so we made a point to visit it sooner rather than later. + +We chose to go right after work, so there were only a few other people in here. I really like the setup with the bar in it's own little alcove and seating situated throughout the rest of the house. We were greeted immediately after walking in and we sat in a table by the window. While we perused the menus I couldn't help but tap my feet to the killer old school music they were rockin'. I ended up deciding on the grilled cheese to eat. + +The food was very good. The sourdough bread was super toasty, literally grilled to perfection. There was a ton of cheese in the sandwich, but I don't remember which kinds. The important thing is that it was really tasty. My only complaint is that the cheese wasn't ooey gooey. it was melty, but I could still make out the shape of the cheese. In my book of grilled cheese greatness, it needs to be a little messier. The sandwich was also served with a side of chips or salad if you choose. The chips were good and I ate them all up. There was also a dill pickle, but I don't do dill pickles. + +I definitely think that this is a killer new spot that will do very well. I have no doubt that this ultra-hip but non-pretentious spot will quickly become a neighborhood favorite.",review,W_QXYA7A0IhMrvbckz7eVg,0,0,1 +CsO0gepSDPwR3Iw2qJJNdw,2010-03-07,gRz-pwh9wPlMvL76k1r7cg,4,"Let me start out by saying I usually hate pawn shops, but when I walked into this Pawn 1st location I was surprisingly happy with how clean it was. + +The employees were super helpful and friendly. They were even upbeat and humorous! It didn't stink like the other pawn shops tend to either. + +Pawn 1st buys pretty much anything you want to sell and it is a very organized place. If I ever wanted to pawn anything again, I would definitely go here again.",review,2XTLe-BH7nKwL5WVCuD-Xg,1,2,1 +rQ4z0EStSZE4acgkne6Hmg,2009-10-08,4B66vU0iI22vqfccTCxBTg,4,"First read about this in the recent 2009 Best of Phoenix and wow, what a great choice! The place is cozy and friendly (laidback atmosphere) with food that is a wonderful culinary experience. I enjoyed the roasted garlic in olive oil with the toasted baguette slices from the start menu, though the nosh plate might need some work (more types of cured meats, and maybe some of those tiny dill pickles). + +From the starter plates we had the crostini duo and the roasted grapes and brie on the multi-grain bread slices was popular with all - the one with the cucumber slices on them, a distant and less exciting second. The other starter - dates stuffed with homemade Chorizo and grueyer cheese, yum! The come on a bed of greens with some sort of vinegar dressing, which was a nice compliment. + +For Sharing Section of the menu - the citrus brined fried chicken and cheddar cheese waffles, loved by all! I recommend ordering it early since we asked for it about 7 pm and it was the last one left. Even the braised greens were good. I was not so impressed with the halibut filet plate - nicely seasoned but frankly, a bit dry. + +Other thoughts - they really like cucumber here - they put it in the water (makes it quite refreshing), garnished my gin and tonic with it (homemade tonic, nice but not really wowed by it), and had it on the previously mentioned crostini duo plate - just seemed like a lot of cucumer. As for the service, it was good throughout the meal. The waiter kept things well paced and was a good source of information when asked, without being overly obtrusive. + +If you haven't gone, worth checking out and if you have gone worth going back again. :-)",review,aIAjAU-6NH583EkQ6E9KRw,2,2,0 +3n9mSKySEv3G03YjcU-YOQ,2010-07-24,UY_iB_Pr-dKCY1U0v_8r4g,5,This place is classic goodness! Everything tastes rich and fresh! Has a new modern feel with a twist of luxury and artistic flare. The food presentation is gorgeous and the food tastes even better then it looks! In a wonderful area of town and is built in the old post office. An inventive and one of a kind idea has really set apart this delicious place from any other restaurant in the valley!,review,sZmINZtvzbC6WoLX05mGcQ,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2009-08-11,9fCs-xw3C4UQE9nqNeGFXw,5,"A hole in the wall in South Phoenix.... + +I order: The ""Betty Boop"" - a plate with 1 waffle and 1 fried chicken breast. Add a huge mason jar of the sweetest & reddest Koolaid (or Sweet Tea - depending on my mood) and a side of grits drowning in melted butter and I'm a happy girl. + +Their Red Velvet Cake is also amazing. + +I know fried chicken and waffles seem like an odd combination but it's really interesting and satisfying - with the syrup and hot sauce for the chicken.... Yum Yum. + +It's one of my family's favorites!!! + +TRY IT!!!!",review,k2n8CdqJhZqZT_w36rzang,1,0,0 +iung9K8cFAPLdA9k2DUoxA,2010-07-12,X-jUM9zZGckNLf4Axjwa3w,2,"Went here for dinner, there were only about 6 other people in there on a Monday night. Even with 2 servers for 6 people the service was absolutely horrible. We almost walked out after not getting service for about 10 minutes. The food itself is decent BBQ. Not great but entirely edible. I enjoyed the blue cheese cole slaw. When my dinner arrived the waiter said that they gave me the wrong type of sausage, they left the one they gave me and followed it with what I ordered later which was nice. The ribs come dry, not wet but they will make them that way for you if you want. With a crowd like this I don't know how much longer they can stay open.",review,b2DKC4kC8-QeSeGZ_MF3XQ,0,1,0 +VLu6SFIlUaisIwbHa2eNOA,2011-06-01,DvEwQEw2gFfzvughKQfzqQ,2,"For some reason, these people seem to think it's OK to price a tank top, that probably has less thread count than my thong and cost about 17cents of labor to make, at $50. + +They also seem to think that dressing up their mannequins like paraplegic color and pattern blind grandmas gives them business. Oh wait...it does! Because this is Tempe. And Tempe, as I can't over-repeat, is the devil.",review,SWoWXML68esw-UhHRjLBQQ,0,0,3 +OvV84elHGF1AVVy9eTLZ7A,2011-02-18,z8dFWnuPvnAc7NEtXUznQA,4,This salon is really cute. Fridays are 1/2 off single sessions and this is why I keep coming back. I use the level 2 bed and on Fridays its only $5 to tan. I wouldn't come here if they didn't have that though because membership prices are ridiculous and the customer service isn't that great.,review,cOTyqUKTyy98XixWcw6apA,0,0,1 +jCUOqEK8Lln0PK3GeUl6IQ,2009-10-01,pt5ubYo59CVG-8WBI6iv7Q,4,"Copper Star is a great example of adaptive use in the heart of the Melrose curve. Who would have thought that a building initially designed to provide fuel to cars would so work so well serving fuel to humans? + +Their coffee is locally roasted and, while not my favorite, is well above average in Phoenix. Their drive-thru is a great feature for those mornings when I'm running late. For the coffee adverse, Copper Star serves chai, tea, smoothies, Italian sodas, and some unique drinks including a black cherry limeade. Foodwise, there is a wide selection of baked goods,including some of the best bagels. They also have decent lunch offerings, such as sandwiches and a tasty hummus platter. But where they shine is their 'home baked' cupcakes. (I've seen Mayor Gordon here on several occasions getting his cupcake fix!) + +Despite being in a converted gas station/garage, the atmosphere is quite a bit more cozy than most of the other coffee shops in central Phoenix. While the sandblasted block walls and exposed ceiling let that building's industrial past peak through, this is offset by rotating art work and selection of comfortable (if a bit dingy) couches and easy chairs as well as small bistro tables and long 'work' tables to choose from. The staff is friendly and helpful, and the owner, Bill, is a great neighborhood resource. He can tell you anything and everything going on along 7th Ave. + +All in all a good place to grab a coffee and cupcake, meet a friend or get some old fashioned reading done. I can't recommend it for serious work requiring internet access, however, as the wifi access remains intermittent at best.",review,kvL7bId7FbaMi19TFl3h9w,3,4,1 +mxrXVZWc6PWk81gvOVNOUw,2011-01-26,yWhOqMcralD6axrkJj-Q2Q,5,"The Roaring Fork is one of my very favorite restaurants. I am not a big fan of the environment, particularly the patio and back rooms, but the food more than makes up for it. The pork green chili served with warm tortillas is dreamy. I also adore the huckleberry margaritas. Can't go wrong.",review,e9d9EQqOd2-NlX8WFx0aEg,0,0,0 +Xk3inJcuBGLhavUcdlINZA,2012-06-25,jiVEfGOBqcBVSI2AXgtFPg,4,"I've visited the Crudo in Old Town and was really excited when the new one opened in Arcadia. Visited with the bestie a nice quiet weeknight to enjoy some girl time. You can get a 3 course meal for $35 and pick from salads, meats or what I would call side dishes. It's a bit pricey for what you get portion-wise, unless you decide to order 3 meats..but who does that? The wine is very reasonably priced. The food is amazing! Everything is cooked and seasoned perfectly, and presented to be delicious. The decor is very simple, feels like you are in a big open warehouse. It'd be a great place to have a group dinner for 6-10 as they have these rooms that are a bit more secluded they could put you in. The service was a bit too good, to the point where we almost felt like she was rushing us even though there was nobody else in the restaurant. + +I'd visit again, but this is definitely a place to take another food loving girl friend- the boyfriend would be hungry and feel ripped off, it's just not his style...",review,CJOjw2P9zkPxOnnmrY6KjA,0,0,1 +Fl9lKEaY10EnXxekPcHPPg,2011-06-04,4BXF12MufxE4v_qSvS6eOA,4,"Great bagels & bialeys! Service was great, food was fresh, bagels & bialeys were like NY! I'll be a regular here! Also check for specials on Tues & Fridays",review,JPesnSIxBrhknSJDr0em6A,0,0,0 +TxDKDFQ3ovgzTaNcqKf2Uw,2011-08-05,FNGllRNVZCmtrGOIMnSqAQ,1,"This place sucks!! I moved to the valley and have yet to find that ""go to "" chinese spot, sooo I decided to give this spot a try. I called my order in and was assured by the employee that all the food is cooked to order, always fresh. So I picked up my food, and what do you know, I got some old azz fried rice with some microwaved shrimp. WTF??!! I give this place 2 thumbs down and I would not eat here if I was hungry as a hostage :(",review,36EGeUpdSLBmfFd4zpjXGQ,0,1,1 +3fNGtIfuHwt0-DD9SSjO6Q,2012-08-28,mwEefGt1DjbA1EszSW6usw,1,"I really hate to do this. This restaurant is fit for those that think Taco Bell is a great place for Mexican food. + +The buffet was pathetic and contained maybe 12 items (no white rice). My sampling of their offerings ranged from terrible to mediocre. China Garden has, hands down, the worst eggroll I've eaten. + +Given the atmosphere of the place it was plain to see China Garden had regulars. One guy at the cashier even commented that he'd been coming since 1970. I don't get it. This is the worst restaurant I have ever dined at. + +The staff and whom I presumed to be the owner/manager was nice and friendly but that cannot make up for the poor quality of selection and food.",review,gg_OKjOAl_vVmdh5ZETuiw,0,1,0 +Ddsln32r-uA7hq_0ksaNZA,2010-12-15,INHh-M5bBCRVlA4azUYtvA,4,"The ""hood"" is a colloquialism not intended to imply ""ghetto"" or any particularly dangerous neighborhood. I am a proud resident of the Biltmore 'hood and my neighbors are retired Mormon doctors who all own corgis and drive Buicks and have umbrellas with ""Vanguard Investments"" emblazoned on them. + +Anyway, even though the neighborhood isn't particularly risky it's dangerous just having this place so close to me. After a particularly harsh day at work I treated myself to the carne asada burro combo. Highly addictive, and there's probably enough fat in the tortilla alone -- never mind the filling -- to keep me and an African village or two going for a week or so. Nevertheless, it's delicious and a great antidote to an evening spent with too much single-malt and too many cigars and some women named Wanda and Clarissa. Those who know . . . . know . . . + +Anyway, go and enjoy.",review,nDBly08j5URmrHQ2JCbyiw,2,2,3 +Zx8_4zKdDBSO3qGrkukBIA,2011-10-26,I8_vccF7YuKneFaNTixwwg,4,We visited last week. The lady offered us a lot of samples of their food so we could pick out what we liked. The food was excellent and the service was great. The restaurant was very kid friendly.,review,AE0K8fveXdUu89GnCSI16Q,0,1,0 +umdxfhSlk67yGEi8-S-bEg,2012-05-01,B06qRnmRlZZFA6VWm1_B7Q,4,"Sometimes you just gotta have a burger. I was in the Scottsdale Rd/Grayhawk area and noticed this place where Nick's used to be. I tasted their burger at the Scottsdale Culinary Festival's Burger Battle and thought it was really good. + +The CB&CB burger with tater tots really hit the spot for lunch. The burger and carmelized onions worked together really well. The tater tots were delicious. + +Overall it was a satisfying meal and I'll be back soon.",review,Kqvfep2mxS10S50FbVDi4Q,1,2,0 +b9svM7RoDUAVnzjFBmf3Ow,2011-05-10,gUkotDV7acTJFHz9dC9j4A,3,"Place is OK, I'm just not a big fan of what they have to offer! It's funny reading some of the complaints! People get a grip! Food is good, place is a cafe style, so your service is really up to you! Cookies are really good, my wife enjoys their sandwiches.",review,UCQNrwN4_hHHTWYa8cqe_Q,0,1,0 +wjnqiWyMtZ7G_267lkwOng,2009-12-14,OzhyF4c1a0aTKjMPHYkSlQ,5,"After a long week of being trapped in a conference room, I really really needed to be outside. Pinnacle Peak helped to put me back in my normal happy place. + +This spot is very popular and can get really crowded on weekends. I wanted to enjoy a little bit of solitude, so I arrived as the sun was rising. Good choice - there were only a few others around on this chilly morning. + +The 3+ mile trail is an out-and-back route, with enough ups and downs to keep it interesting. Like a stairmaster, but better because you aren't in a gym squished next to some icky sweaty person. The well-maintained path is packed gravel, so you can spend more time enjoying the beautiful views rather focusing on where you are stepping. + +For those that want to take their time and learn a little, there are small signs along the route that label various plants, as well as two rest points with markers to tell you the names of the mountains you can see in the distance. + +Get up! Go outside! You will love it as much as I do.",review,n9Zg0jlOGtxfIrvoPm6Hhw,5,6,3 +3jqOv6re-xPYOg7srmi7tg,2011-06-22,PYiwIy-wDebYS5EhGMDfuw,5,Love it and love the GF menu. It's amazing how many dishes they have,review,zLDgSR1q44fyLRi3Ea0Oqw,0,0,0 +fDZzCjlxaA4OOmnFO-i0vw,2012-07-12,a3m7wZvCE8G-SHysCbHGrg,3,"Bacon madness! Huge french toast! Cute little piggies decorating the orange walls! + +Oink is a friendly, peppy place to go for breakfast. The food is pretty good, the place is happy, all-in-all I would say this is the perfect place to wake up in the morning! + +The only irksome quality was our server, who seemed very nervous, checked on us at weird times, and said ""you're welcome"" too often (I didn't know that was possible, but it was). + +I enjoyed the jalapeno (!) bacon and the oink french toast. The cinnamon rolls were also tasty, but my group was disappointed by the eggs benedict. I would say the food could be better, but it's just awesome to have a local breakfast place somewhere in my neighborhood now!",review,8n4SarsuI9Km6lEtydiE0w,0,2,0 +fINjAQ9_aqT87CRCoU2JLQ,2012-11-26,7vSAtODBT0frsv8pCgcCHA,5,Excellent service and great quality. I will always bring my alterations here. Had an emergency and needed a hem done in a couple of hours and they had it sone sooner than expected!,review,rJfJ_o2EsadZIyfvOTjiiA,0,0,0 +L_MtTn4IUBTmQtqqM2iFqA,2010-08-01,trbXS_dkW8yg6R0knD5XLA,4,"This is the best Pho I've found in town yet. Good spring rolls to, the sauce was a little to runny though. I hit this place up 3 times a month to get my vietnamese fix.",review,JkUJz70emHJOM8XVF-stTA,0,0,0 +Ba1WZ4fWqJZTUwsmS_GDbw,2010-08-25,Vja7FnGUajKvAZyleHdDhQ,5,Cary is one of the most honest and knowledgeable mechanics I've ever been to. He is caring to all of his customer's and his shop takes the utmost care with the cars they work on. I cannot recommend him strongly enough!,review,He939GwJc3_CGCKST5Bw_A,0,0,0 +L9UYbtAUOcfTgZFimehlXw,2010-05-08,VuNsQfd-M_xV1pfcneGypA,5,"The interior is very industrial and charming; furnished with iron beams, brick walls and simple hanging lightbulbs. The lobby area has special imported drinks and other trinkets. There is always a line but it usually goes pretty quick because you're distracted by all of their deserts and miscellaneous goodies on display. I've never had a meal that wasn't awesome here. I usually find myself eating the simple but delicious Liberty Joe with their special spicy sauce and then finishing the meal off with a home-made snicker-doodle. Whatever you end up ordering, I'm sure you'll end up enjoying Liberty Market as greatly and as frequently as I do!",review,HI8rzP5dFKQMmZC6j1PjSg,0,0,0 +XYhVyCbzJCrYclR6J4LYSw,2010-09-24,jg08SGgRkBgdKAYh4DahVw,3,"It's like being a Target girl but recognizing the value and prices of Walmart... so I don't make a point to shop here (vs LeeLee's with greater intl variety), but when I am in the area... I frantically think of what is low in the pantry so supplies can be restocked at a minor savings. The pricing is marginally cheaper -- to clarify, the auto 10% discount is calc off the non-sale items.",review,xdWsnbaTEfBMVHttqZDHxg,1,0,1 +b5cEoKR8iQliq-yT2_O0LQ,2011-09-12,Sfn_8kwUm-Sug60MDRXA9g,5,"I love happy hour! 3PM to 6PM EVERYDAY! This place has one of, if not, THE BEST!!! $4 Grilled Chicken Quesadillas, YES!! Plus $4 or $5 for a mile high pile of Green Chile Chicken Nachos? YES!!! And if you really want a treat...$9 for 3 huge fillet Mignon Tacos. Plus COLD BEER both bottle and tap plus reasonable mixed drink prices. Place is friendly, bar plays classic rock, most patrons seem to be regulars...once you eat there, you will be too! Friendly staff especially Hostess Judith and the young man with the red hair. I've been in the restaurant related business for 30 years, the prime phrase is CONSISTANCY and the food, atmosphere and friendly people are always consistant. Consistantly great. The owner, Andrew, always makes a point to great everybody. New Orleans Bartender exudes Southern Hospitality. Regular Menu is a bit pricey, portions could be larger, but food is great.",review,0Sksoo-KZN_kltW2npWxeA,0,0,0 +XbVqzUHS3c9FhG4lI13c3Q,2011-08-24,rn8sw7zjQv0CWzmE3kNqSw,4,"I was super excited to find a place in Arizona that has vegetarian pho! + +The service was just mediocre. It met basic requirements without any friendliness. + +Very cost effective= CHEAP.",review,T7J9ae0wTskrI_Bgwp-4cA,0,1,0 +nfyqtEoufkhjv97IueK7Ow,2010-04-26,qS7SLv3DGhvi0ks56u4q6A,1,"We went here for a family dinner. Our family is loud and boisterous but not obnoxious. We asked to be seated in the bar since some of us wanted to watch the game. No problems so far. + +Our waiter was really nice at first, but seemed flustered and as if he wasn't getting the help he needed to keep up with his tables. I waited tables for 12 years and this guy was nearly literally scrambling to keep up, a sure sign of not enough help or lack of teamwork. Of the two hostesses, ONE of them could have bothered to help him out by refilling water, tea and soda for us, but alas they did nothing. We waited so long for drink refills that my husband got up and saw a pitcher of coke on the bar, so he poured himself a glass, which he was scolded for! I could not believe it, I was shocked. A guest should NEVER be treated this way. If anything, someone should have apologized to my husband for not giving us what we needed for the meal. + +The chips were good, and they kept them coming, so props to them for that. They are served with bean dip and salsa. I liked the salsa a lot, not spicy enough for me, but a good amount and mixture of yummy stuff, including cilantro which I find many ""salsas"" don't even contain! To me, it is not salsa without cilantro. The teensy bowls of salsa they bring though need some rethinking. They should either bring one per person or consider a bigger size. It's only about 2 Tablespoons, and that aint much salsa (beware, some sides of rice and beans also come in these super tiny containers - three or four bites and it's gone)! Anyhow, we ate tons of chips and salsa because the food took SO long to come out. Our waiter sort of apologized for this by keeping us updated that it was actually coming.....someday. + +Our food came out a good 35-40 minutes after we ordered. Sadly, two meals were completely missing in action and the two of us that ordered fajitas (which came out of the kitchen very cool, not even the slightest bit of heat from the iron skillet or the meat) had to wait at least 10 minutes for their tortillas, so they couldn't even eat what was at the table, which was getting cold. After the two missing meals came out, one was the wrong meat, red meat instead of chicken. More waiting...the table eats, minus one. When everyone is nearly finished, the right chicken taco dish comes out. It was delicious, but overpriced. The chicken was nicely grilled and the tacos were served the way I like them, with a little bit of onions, more cilantro, lettuce, lime and pico de gallo. They also came with cheese, but I don't like cheese on tacos. They came on tiny little corn tortillas, which themselves were good, but way too small to make decent tacos that didn't fall apart. Plus, I ran out of the tortillas before my meat and other stuff was gone. + +Our waiter was really nice except for the scolding (I'm still floored by that), so I can't decide if he sucked or the place sucks, or maybe they both do...We definately won't be back.",review,g13P8XfDT5Zfcts4wai4-Q,0,0,0 +NzbCi3p0HqU2SX__853VwA,2007-03-15,0aNgbOZyFvkns6KvrO2yLw,4,"Oh boy. I was terrified of this place. Curry peanut butter?? Sun dried tomato peanut butter?? Sick! But once I went, I shockingly realized that somehow, it wasn't thaaat bad. + +While this is without a doubt, a place that little kids will LOVE to come to and one that adults will grudgingly take them to, if you have to eat here and you're over 12, I recommend getting the veggie sandwich. It was the least scary lunch option on the menu that wasn't going to taste like a dessert. It had sun dried tomato peanut butter, lettuce, cucumbers and cheese. And it wasn't half bad. But it wasn't half good either. Let's just say I was surprised that it wasn't disgusting, but I wouldn't go back again unless I had to take another little kid I was babysitting. + +The child in question, a little girl by the name of Natalie, is my friend's daughter and she talked me into going here. She couldn't say more about the place- she loves it! And for lunch, she had some white chocolate peanut butter, banana, nutella and caramel concoction that made me sick just looking at it. + +But if you want to bring your little one somewhere different and fun that they will love you for, come here. This would be a cute spot to have a little birthday lunch for your kids with a couple pals that wouldn't cost much at all.",review,0CMz8YaO3f8xu4KqQgKb9Q,1,1,1 +nRO4tRwimU12hg7Cnz__iA,2012-07-18,msH1becU3TTc8aO496-H6g,2,"OK after hearing about this restaurant from a friend I decided to take the family out. First I must say that living in the valley for over 30 years I still and always will be a Haji Baba fan in Tempe Az. for life!(yelp them) + +So, walk in and would agree that the ambiance was less than. Dinner tables were cheap and the table cloth was tacky. Oh almost forgot why is there a large mirror on the wall? Were given dinner menus by a impolite waitress who I suspected was surely going to be the owner. The first thing that hit was the prices! $$$ I kindly asked the waitress if I could just have a Gyro sandwich. The answer was NO! (rudely). Those are only available during lunch time! Ok, so next option was to gamble on a gyro plate priced at $14.95. We placed our order and waited. The food arrived on a timely manner. The food was hot and looked good. The tzatziki-sauce was a 10! Although the gyro meat was not to my tasting, it was ok for being real hungry. Eventually the waitress started warming up to us! :) + +PROBABLY WONT RETURN AGAIN. + +Pros- Fresh food, Location + +Cons-Couldn't get what I really wanted.(A gyro sandwich) + +-$$$ pricey! $36 for 2 adults and 2 children. (2 gryo plates and a coke.) + +-No kids menu. + +-Water tasted like it was from the tap. + +-Coke was flat.",review,QE6Bs0oeZj2RBULNqUvlUw,0,2,0 +3YATaNAGANoFneE-4KK-JQ,2012-07-16,wZvQUscERCqAPC05KzX6KA,3,"I do not see why people are so quick to judge an IHOP so harshly. + +It's an IHOP for Pete's sake. The service is ok for being a chain breakfast place. But it is nice that this location is 24hours because my friends and I need a place to eat whether it be after bar hopping hours or not. + +The food is consistantly not too bad (again for a chain) and I've gone back several times. Besides, it is great for people watching at certain hours of the day/night! :)",review,mRAPMBM3dbw8KXNit1aDCw,0,0,0 +hNVcBhJSD5HyLKMf_Z7TaA,2011-09-10,h7DqqdDkNA7eveJdwZUyKQ,3,Nothing special about this place. Clean and the food is okay. I go because my one son loves it. Have to keep the kids happy. Never had a bad experience but never had anything stand out either. My fav dish is the Spinach artichoke dip.,review,6h5PM9BhvhECbQ7ojgoNXQ,0,0,0 +3GAPcBG8SowgrpS6UHlDeQ,2012-08-22,ug6By_jFiIbcOkYFbzsUNQ,4,I was really pleased with Bombay Spice..it's definitely not your typical Indian restaurant setting.. Think more contemporary American decor... I mean The Smiths were playing on the stereo which gave it a nice relaxing casual vibe. We were served by a great friendly waitress who really knew the food and explained everything real well.. You can tell she was very excited about it. We started with the appetizer sampler which had four selections of appetizers of your choosing..all were outstanding especially the wings and the chickpea ceviche. I then tried the Chicken Tikka Masala which had lots of great flavor and a nice kick then we checked in on Yelp and got a free dessert. Great prices and the way you order the food makes it really simple.. Great little casual place tucked away in the corner of a strip mall near PV mall.,review,qHqklkFS4JfKtcJDT1WMaQ,0,0,0 +DvPsl-CtYj3Q5GnOgClyew,2007-09-21,X1nUGRyntlsoNEc_KMaSLA,4,"I am so sorry I didn't come here sooner! This is a great sports bar not far from our house. The service was very friendly, and the killer wings (they also have honey BBQ) were awesome. They had tons of meat on them, which isn't always the case with wings, as I am sure most of you can attest. + +We also had the margherita pizza, which was pretty tasty. There were numerous TVs scattered throughout the restaurant, and they had $1 beers (yes $1) when we were there - fantastic deal! + +This place is definitely more chill than Fox Sports Grill (not quite as fancy or upscale), but it's a perfect sports watching or beer drinking venue nonetheless. + +Oh, and they deliver!!!!!! Good choice if you live in North Scottsdale.",review,9FbgqZ5u9WTLAs28nNafIQ,0,1,0 +NWtC07BxIqQp76kugbvynA,2010-09-10,JStJgy5ksdO9ladkEvT2RA,4,"Perfect greasy food for the night after a bender, or a family breakfast. I'm cool bringing my 10-month old here because it's noisy and with so many other kids around she pretty much goes unnoticed, except by the nice waitresses.",review,cE1-8mK1g8xZld5Y8u01tw,0,0,0 +lKQ5hnkSQ-XP80jNCH46nQ,2011-12-19,KWQrjg_Ty2C4unwKx-Ly2g,5,"Recently I had the pleasure of eating at this great new Iron Chef Jose Garces restaurant. Pulling up to the front entrance to the restaurant my girlfriend and I were greeted by extremely nice doorman who valet our vehicle for us. We were a bit concerned that we were going to get wet from the rain on this day, but thanks to the valet service the hotel & restaurant provide we stayed warm and dry! Now I must say we were taken back from the decor inside the restaurant... It was spectacular!! The way the restaurant is decorated just puts a smile on your face! Also, it gives you a feel for Iron Chef Jose Garces personality which seems to be light and fun. The food is absolutely amazing!! We split the ""IGNACIO"" Nachos which have black beans, tomato, queso mixto, jalapeño, chile de arbol, and radish, and the Barbbacoa ""Costillas"" berkshire pork spare ribs, chipotle-cider mustard bbq they were tender, juicy, and delicious! We tried the House Margarita the ""Distrito"" and the white ""Mexican Sangria"" both were spectacular!! I have never heard of a white sangria before.. But WOW it was amazing! All of the employees we encountered were extremely nice, knowledgeable, and sincere. This restaurant will definitely stay on my regular to do list! Thanks to everyone who gave us a wonderful experience!!!",review,uTEhgjhxFtIYI2ufdDD3NQ,0,0,0 +Rg3INE2p4zQYvfMvJduEOQ,2011-03-25,B7mNUyn3bEFoqySstT7OAg,5,"Amazing greek food! Definitely try the greek fries! I always try to come here every time I am in Phoenix. Staff is also always very friendly! + +Also try the greek calamari. Unusually delicious!",review,-Zlsy_1wAKbNrp4-c5V9uQ,0,0,0 +uYQo0oDXI5NEoMJNWXnx8Q,2010-09-29,ZBYeB5Pm3fZMDWxkCHHlzw,4,"Always good pizza, close to home and they serve beer and wine. Plus my kids can play video games and husband can watch the game.",review,tPqbx-DzteHvl5fQZ_4Hsg,0,0,0 +O7fXh4ODsi--5LmJKTHn2g,2011-01-21,3dRMtU5EMF35u3tCsrNp5w,5,"Awesome, Big Ben sandwich is delish and chocolate/strawberry scones is one of the best I have ever had, and can't forget to mention the coffee and tea, great place",review,u_5vw3B7boy7FVWtwA_ifA,0,0,0 +rPp509oz4oFEdncoo7v_HA,2011-09-25,jPr6F58kmLhgQdUUAUKtdg,2,"I went to this place with my wife because it was new and we're always looking for new places to eat. We were the only two people in the place and would have thought that the owner, to make a good impression and show gratitude for what business he did have might have come by the table to ask how the food is, make small talk or anything. He sat at their front counter watching a baseball game when we got there. The waitress took our order, he went back to cook it and resumed his place at the counter to watch the game. We felt like we were putting the guy out to have to pull away and actually cook for the only two customers he had. + +As far as the food is concerned: You can grill a great burger at home with decent meat and the fixin's you want to put on it. In other words, it wasn't anything special and certainly nothing that I would go back for. +Bottom line: Scottsdale doesn't need another $9.00 burger place and I wish the staff could have put more effort to appreciate our patronage.",review,3Lz0foBbu0TARTdQJ_-Vig,0,2,1 +3g2ofV7mhEoPyfF7vFMObA,2011-03-24,zFgjo-gVHQ6CGHcwJVI9uw,3,"This bar reminds of an old pair of pants. It fits. Not too tight, not perfect. Just kind of fits. There's some holes in the knees, and its a bit faded. It's certainly not perfect. + +Mulligans is that bar where you can go and kick it with your friends. You never know what kind of people you are going to run into. Co-workers, drunkards, bottle rats who got kicked out from other places. + +The drinks are cheap. The beer selection is so so. The bartenders are pretty nice, but aloof. It's just an average bar though. Nothing great, nothing bad.",review,8JC-Yb3UDUv2FUl5ym1nVg,1,1,1 +XkNQVTkCEzBrq7OlRHI11Q,2009-06-04,KuwJr_6BUt4tsrA6M3zbjg,4,"While I am giving this restaurant four stars, I must start off by noting that the pizza here is mediocre. If you want spectacular pizza in Phoenix, don't kid yourself that it's at I-17 and Thomas. It's over at Pizzeria Bianco. + +However, the other items on the dinner menu are worthy of a visit to the 'hood. The Penne alla Vodka ($12.95) offers up pasta in tomato sauce with bacon, fresh basil cream and vodka. It is an excellent starter to split with a dining companion and that's exactly what the BF and I do every time we visit this place. The Cozze Posolipo mussels in garlic white wine sauce ($11.95) are also quite tasty as an appetizer. The complimentary warm pizza dough they serve with an onion and olive topping is a nice touch. For entrees, the Pollo Parmigiana ($14.95) is the classic breaded chicken breast with marinara, mozzarella and parmesan cheese served with penne. The Lasagna della Casa with Bolognese sauce ($13.95) is very good, but the portion is a bit stingy for the price. The BF often enjoys the Gamberi alla Pana ($15.95) that includes jumbo shrimp sautéed with mushrooms in a brandy cream sauce over a bed of fettuccine. Please note that the brandy cream sauce is extremely rich. Another tasty option is the Spaghetti con Salsiccia ($13.95) with mushrooms, bell peppers, onions and Italian sausage in marinara sauce with a touch of white wine. The Cheese Ravioli ($13.95) is another great choice with the tomato cream sauce. For dessert, be sure to order a Cannoli Siciliani ($5.95) as it's the very best I have had in Phoenix. The Tiramisu ($5.95) is good as well. + +The bad news is that this place is no longer BYOB. For whatever reason, the management decided that a restaurant that seats no more than 20 needed a full liquor license. I really hope that the investment in that spendy license doesn't lead to the undoing of this place. Given that they don't even have a bar area and I almost never see anyone order a mixed drink, I think staying BYOB might have been a better choice for this neighborhood joint. + +The service at this place is also part of the show. The waiter may well be manic as he will either be way up or way down for your visit. The décor here is pleasant enough given the location of this tiny restaurant in a modest strip mall. If you happen to need a trip to the restroom, you will get the chance to traipse through the kitchen. + +All in all, Pizza A Metro is ironically a great option for everything but pizza.",review,QrOSr8bzAjpIgyNftDLUBg,0,1,0 +CSoURupWEyuyzkjMOExKPg,2012-01-13,nxSRWDLb7M9hAWYEoVYwmw,1,"The food was okay but the portion sizes where the smallest I have ever seen....and I am a regular to fox restaurants. + +Babbo is much better.",review,kU1H01IMRDG268R5G-kdVw,0,0,1 +kN8792XEJfCtpD5GJLmI6g,2010-07-25,DOo3SKQYF_vLaqczi9nrmg,5,"Food: great! Service: Excellent! I had the Frank Sinatra Calzone (you choose 3 items for the filling...I suggest what I had: sausage, pepperoni, and meatball). It was just like being back in New York. Loaded with Ricotta, too...They don't skimp here. The server was great too...Didn't catch his name, but he's a burly, bald headed guy with a beard. Very friendly, polite, attentive. Cool to look in the kitchen and see the pizzas being hand tossed...Wonder if the cook thinks I was looking at him...Well, I actually was, but only because he really got into tossing the pizzas and was entertaining to watch. + +Go there. Eat everything. Tip big!",review,7r5Sm4qXSeSNXAVGm9CvyA,0,0,1 +nBfusVbqwul0BU0Rcrlelw,2012-10-11,ZHaGd5whVo6r7MMtyDiZrg,2,"I'm really getting ready to give up on this place......or boycott it a while. +What's up!? It feels like it's a confused sushi restaurant. WHY THE HECK is the music always blarring?! You can 't even hear the person sitting next to you. Are you a restaurant or a club? Do you have servers or 'visual fluffers'? And if you go at Happy Hour, expect to wait 45min to even get your food. + +*Are there authentic sushi makers there?????",review,5a1aiH93zMDh6xkcDI4ueQ,0,0,0 +LaNjC1TOvprQUNkQ9Rio8g,2010-10-13,OQN1PixpxHHjFM9IsCe3kg,1,"I was so, so hopeful. October in Scottsdale, yummy, tacos.....Wow! Rip Off!! $10 Just to get in (what was that for?). No shade unless you were buying a drink. Most places wouldn't give you salsa or taco sauce with your measly over priced taco. They seemed like the vultures who didn't care about the customer, just the $2 ticket they could grab from you. + I had to beg for a napkin then hunt for a place to sit feeling watched by the other vultures waiting for me to get up. +I was ready to leave after 45 minutes and my Pepsi had gotten warm, so I had gotten a cup of ice from the bar. I poured it in, took one drink and as I was leaving to hike back to my car, security stopped me and would n't let me take it out! ""It could have booze in it"". Well, by then, I was one angry little local. Dumped it all in trash and said to my sweet daughter in law who was about to ""go mad"" with me, ""Get me outta here!"". She had brought her 2 year old, thinking what a fun way to spend a Saturday morning and encourage our local businesses. Nope. Not good.",review,l_gYq9wGIHzihot_AmqeIQ,1,3,1 +qjmCVYkwP-HDa35jwYucbQ,2009-11-18,Qya9Tv2yuVYgCt0jsV1HyA,1,"What happened to this place? The first time I went about a year ago, both the food and service were great. + +Second time, last May, I ordered the same dish and it was horrible. Drowning in sauce. But, at least the service was decent. + +Just went a third time and it will be my last. Both the food and service were horrible. Went for lunch, sat inside and it wasn't very busy. Our waiter was totally out of it and only had 4 tables and hardly paid any attention to us and kept forgetting things, like taking our order to start. + +Then, even the food runner forgot to bring me half my meal after I asked her for it. In the meantime, I counted at least 17 staff member hanging out in the kitchen area, which is open, so you can see them and half of them were folding napkins. + +My food was not very good and actually made me a little sick. This is a shame, especially because there aren't many places in Phx that have vegan choices, but for the price you pay, I would expect a lot more.",review,xnjqnfOl_5JRq_mouPxEbA,0,0,0 +MXOdsPTLQPsQK9hUq01DWg,2012-07-05,GDachmflsPg5XUyK_BhdaA,5,I love that this restaurant can accommodate all types of people. It's a sports bar with Family style entertainment! The staff is always friendly and they aim to please. The food is always good and prices are very reasonable. The bar is on one side so it splits the Families with children on the other side with an amazing area with tvs to play Xbox and wii. Check this place out. You won't be disappointed.,review,rqTWNarL28Q58GxfSeDtvw,0,0,0 +xWlCgISVtozxCztPA4nGaQ,2011-12-06,bMIm2p_s_jgRsuSi3Xt5BA,1,Honestly I don't get it. I went to Dos Gringos with a good friend of mine last weekend. I had never been to Phoenix before so I was excited to see what the city had to offer. After entering Dos Gringos we sat at our table for 21 minutes before a waitress came to our table. She brought us 2 beers and never came back. After 40 minutes we decided to check out a new bar since we obviously weren't welcomed at Dos Gringos. So we went up to the bar where I waited for 5 minutes so the bartender could take some pictures and shots with her friends. What I didn't understand was there were maybe only 20 people there and at least 6 people working. If I was the owner or manager I would be embarrassed to say that you run that establishment. I will never return and I highly recommend you stay away from Dos Gringos as you will be disappointed.,review,8-qt1pNsZVah5tr2JBQBrw,0,2,0 +-yxfBYGB6SEqszmxJxd97A,2008-12-30,g32C4xUYmbE2QlS854Agsg,5,"I had an amazing dinner tonight at Quiessence. When we made the reservation they asked if we were celebrating anything; we were, so when we sat down we were given 3 glasses of complimentary champagne. + +We started with a plate of three delicious cheeses. They have a huge selection of cheeses, probably about 20, and we chose a goat, a smoked gouda and a jack. All delicious and served with crostini, perfectly melt-in-your-mouth bartlett pears, pecans, honey and quince paste. Great start. + +Our next course we shared two salads - an octopus carpaccio and field green salad. Both good. + +My main course was AMAZING. It was heritage turkey with mashed potatoes and carrots. I ate every bite. SO flavorful. My dad had a beef sirloin that was perfectly cooked and delicious with a side of fingerling potatoes. My mom got swordfish. It was not cooked properly when it first came out, but they promptly corrected the problem, so i can't fault them for that. + +The ambience was great including a live but not distracting singer and a warm crackling fireplace. In addition, I want to give big props to the servers for knowing everything about the food they served. She knew where the fish was caught, how the beef was raised, what certifications the turkey farm had achieved. It is great to be able to get those kind of answers with zero attitude when you ask the question. + +My only reservations would be 1) definitely is ""slow"" food, maybe a tad too slow but so delicious it was worth it and they said they were short staffed and 2) i'm not sure i buy that their seafood is sustainable. They served atlantic cod and atlantic swordfish. My understanding is that both of these fish stocks are pretty severely depleted. I asked and was told that the fisherman they buy from are committed to sustainable methods, but I'm not sure (personally, for me, at least) that it is possible to sustainably fish a stock that is in danger. + +All in all though, a fantastic night and i can't wait to return!",review,CaU3GiAgTRhZwUZABIaFNQ,1,2,0 +yPpPJyAF8pciHnhTF-C38w,2008-07-03,z_OPi59Bb5QOgfuFw492tw,4,"I went thier on a new wave night. I dont drink so its hard to find somewhere gay that I can enjoy sober. They had bitchin 80's music and had a good guy/girl ratio. Some were straight but I like that, its nice when breeders what to hang out just for the fact that they wnat to hang out and dont care if your gay/straight. + +They also have a pool table wich is a rare find in gay clubs in az. + +I liked it :)",review,ZZ43etAB2n_T53YBYtf8Dw,3,3,2 +CycfCC0OLvTjG3Eks8D1og,2008-02-24,v1U7OWLJWZzhAe591uEu1Q,2,Scuzy waiter. Scuzy manager. Overall just a bad experience. The food was pretty awful too. I don't understand how this place is so successful! The food was either waaaay over-seasoned of severely under-seasoned. A hole in the wall Chinese restaurant can produce better Chinese food. And at cheaper prices. Search around. It'll be well worth it.,review,CAm_VCWbpo40JLF3KNEQSg,0,3,0 +tA2DT7CGQPzgA6tTcTkXDw,2009-02-07,yOzUD3HgusvV_oi6su066w,4,"I found this on yelp and what a great wine bar! I went here last night after work with friends and we shared a bottle of wine and had sandwiches. It was so good can't remember either name of the wine or food. +It was very small inside which made it cozy.",review,KdIVljQs1D1A8-pyfS4teg,1,1,0 +-3xbryp44xhpN4BohxXDdQ,2010-11-10,_TxGwAmum8nz0rG4lRqiKw,5,"My wife and I absolutely love this place. Yes, it's a bit pricier... but yu get what you pay for: excellent food and service! The patio is even cigar-friendly, which is a huge plus for us! We visit often!",review,yy3jXczrKljJGzjo24HWfw,0,3,0 +qsWxbgQwuomXvMseg23DGg,2010-11-17,6Nr3rKGooh3ltZ-cdf0d0Q,3,The Phoenix Hooters is directly opposite the Sheraton Downtown hotel where I was staying. Was really hungry and didn't want to eat at the hotel so decided to give hooters a try. Hooters girls are always a nice touch. I really liked this location since there was a lot of outside seating. The food is what you expect from Hooters. I had the pulled pork sandwich with fries. It was good but then I was very hungry. Food quality was good and arrived quickly. Can't ask for anything more!! Hooters girl was also cute!! I would come back with a crowed of guy for a drink and burger. Prices are very reasonable.,review,El-nrOv6QtsmsOnkXQDknQ,0,0,0 +Eeonj15SXvfR6kgvh8BOWw,2011-04-04,5XTqH2H2bZE7dOSuDJiQ3A,4,"Had lunch here with 6 coworkers and the server accomodated 5 seperate checks with no fuss. She quickly brought out two baskets of soft warm bread that looked handmade, along with pouring out balsamic vinegar and light olive oil for dipping. + +The server described the day's special, but we all ended up ordering eight inch pizzas (a lunch only size.) I had bacon and chose to have it cooked in the optional brick oven for $1 extra (not sure why they offer it seperately, but exp. at other places made me like the way it cooks better than reg. oven.) + +It wasn't much to go on, but the food was good, the service friendly and efficient, and the everything was clean and neat. Recommended if you're in the area.",review,0n2jq7LIPQOzs74kPLCDng,0,0,0 +d-YNxMKL6ZhkiRhfUPxKHg,2010-10-23,vMidgtEXj4nYqi6xwrkNMQ,4,Great Thai and Chinese food. Friendly family staff. We were served by their very cool 11year old son. Kind of place you want to support. Food was excellent and very reasonable. Go for the curry-,review,OrkXYCH82NnidREHsGn4uQ,0,0,0 +4ic-c1LquBiT0IuvKXuEyw,2012-04-03,SNjgu3SWKKAour5YQ68XbA,4,"I'm so happy they put a location in Old Town. I had been to the location in South Phoenix before and it was awesome as well. + +I had the Chopped BBQ which is Turkey, Chicken, and Beef all chopped up and cooked in BBQ sauce. It was very very tasty. They gave me two pieces of bread to make a sandwich and with the 1/2lb order I still had more left over. + +For my side I got the Texas Cream Corn which I really enjoy. It has great flavor and is an excellent compliment to the BBQ. + +The location has a nice patio for the great weather we are having and you can also sit inside on picnic style tables.",review,Iycf9KNRhxvR187Qu2zZHg,0,1,0 +vtQOervVVTXjhvSZQiZ6PA,2011-03-17,D4DgV_DYaL_BziovD17JsA,3,"This place is a hit or miss. Hence why I would rate it as average. I've been here so many times for lunch because it's so close to work and because coworkers would suggest it. I've had all the curries and every time the spiciness is different even though I ask for a 3. Sometimes it's not spicy at all and sometimes it's so spicy that my mouth burns. + +I've had the eggplant with chicken, but the chicken isn't as moist and tender as I hoped meat would taste like. They chopped up the chicken in very small pieces and seemed overcooked. I would stick with the different types of curries (red, green, yellow) though. It's safer. The curry sauce would seep into the meat and make it more tender. The curries can also be different textures. I've had it where it's thick and creamy (the way I like it) or more watered down. The lunch portions are pretty small, but I guess it's enough for a lunch meal. + +Beware Swaddee's if you're not too comfortable with spicy. Just order a lower number and you can add more chili if it's not spicy enough for you. I still would recommend this place and try your luck with the food here. You may get lucky and have a great meal.",review,HpKLR1mrb634jCnTXQr3aA,0,3,0 +_tkAI5Q5XQSfgbqJzDKSDQ,2010-07-13,nosJy0WYUnioptbjWKGKPg,2,"This place is the perfect example of a tourist trap. Nice location not far of the main drag of Old Scottsdale, beautiful building and layout. The margaritas are good, but probably $2-$3 more expensive than they ought to be for every one of the many styles. I thought paying $5 for chips and salsa was a rip-off, but then when the chips tasted stale, I was even less happy. C'mon, if you have tortilla and factory in your name, you ought to have fresh chips. I thought the tortillas themselves were okay, not great, but okay. The carne fuego, or whatever I had the waitress recommended, was not good. Small chunks of fire roasted steak completely ruined by a gloppy sweet/hot sauce. The veggies that went with it were just okay and the sweet potato-stuffed chile was weird. It could've been great, but it was nowhere near good. Unless your Aunt Hattie who has never had Mexican food is in town from Ohio, i'd skip this place altogether.",review,B__HK1IcMgCjCWUNhDVBQQ,1,1,1 +ZEdaJ8mcMpPiFWgDuSPqeA,2012-02-02,CmGZTr9hI0lGYCn6cA0zWg,3,"Outside the treats, you get an adorable and sleek interior which is very comfortable and feels great to be in, and fun people watching to boot. Its a little expensive for the drinks - I figure that comes with the territory.",review,JkVP9S9tUyzfavsDQMgYzw,0,0,0 +d7AGrZaeU6eHsdS_V1RcAw,2008-09-29,3ZugwbyuHR2a06UWsht1CA,1,"Ok..I told Amanda that anyplace that serves beer would have a tough time getting less than 2 stars from me...I wish there were 1.5 however. + +As covered by Amanda this bar is about as straight as they come..this bar personified would probably call bars with any hippness at all the bad F word for gay folk. In fact this bar would most certainly over-use that word. + +Does Puddle of Mudd, Disturbed and POD know that their songs are available in karaoke form? Do they make money from them? Who was the first person to say damn man I can not wait to scream this song to the MIDI music only version over some beers this weekend. + +I had a good time...but I tend to make the best of things. There was far more facial hair than head hair. I hate phonetic spellings.. Oh lord don't ever make me go back. + +...eff it...I changed my mind. 1.2 stars and I am rounding down.",review,6WrOT1dj6sigl_voiwQ7HA,7,8,6 +IceZ4BtTz76eppjNWm-c6A,2009-03-22,zyBsC19FOPWQ8M_RpT-KKw,4,"Yummy, creative sandwiches! Good prices. Highly recommended. + +Service is generally a bit of an issue, so if you are one of the prissy eaters who doesn't understand that serving can be tough, you'll probably get your panties in a wad.",review,d2RAl63RTdfZF7kcuKcj-g,0,1,2 +sL1G1aVWDZFgqoGuO_O0oQ,2011-06-06,c7kg3GIJnGvf7_EW9tgr5g,1,"Lets just say i was not to please with my experience at Nails R Us. After two days my nails were lifting on about 4 nails by the end of the weekend i had 6 nails lifting, so i went back and showed them and she was like its normal. No it normal to lift but not after 2 days! They did fix them for me free of charge but were very rude to me!!! Will not be going back there or will not refer any of my friends there!",review,NT0lSOTRV8OMDUAOsjbGfA,0,0,0 +jPhmaY35qGP2qNc68viXPg,2012-06-15,YE48dtETjrllWFpoTBaZqQ,2,"My friend and I have been going to camelback spa for about 5 years for our birthdays. this past year we decided to try something new. We went to Desert Ridge Spa for a change of pace - man were we ever sorry we did. the facilites are not nearly as nice as Camelback, the food service sub par at best - while they did make it right - the fact that my friend ordered one thing and was given another and we complained to the waitress her response, was ""oh I was curious at which one of you got the wrong order"" Really?? you knew that and didn't come up to us? I asked for my burger medium and it came well done, I am glad I didnt wait for her to come back and ask how my food was cause it was 1/2 hour before she came back. I was parched for some water. Although they gave us our food for free - it was just inexcusable. Have had better massages at Massage Envy- will not be going back",review,pYi-pUxgatw4972I2kxx1A,0,2,0 +j6VY9UwaQCiEWfQtNyEouQ,2011-07-07,F2mWGD7zYA_E3eaDlzmEhw,5,Fresh bread....awesome beans!!! Raspado...tostitos!!!!,review,SS_4_2lxQPVHyvD6FRO0vQ,0,0,0 +I941jBn1KURuN-2wygJ_5A,2012-05-24,N2W2KlxQEz5GfSeX1eTwQQ,2,I did not stay here but went to visit out of town friends who stayed here. The hotel was definitely not designed for anyone with any type of mobility issue - steps everywhere! Steps to get ice. Steps to get to the pool area. Steps to get to the lobby. Can you find a way around some of these steps? Sure - if you don't mind going into the parking lot and circling around the building while cars drive past you. The rooms seem nice but there is no way on earth I will EVER stay here. This hotel doesn't seem to have any concern for the disabled whatsoever.,review,syeVHkzH1kvf_u1CseOuCQ,0,3,0 +7cP7WFmWiTVh-raIL3N_Vw,2012-04-12,CimsEclp05is4OpdK__NhQ,5,best. grilled. cheese. and. tomato. soup. ever.,review,MITn8veG3s3WAAX6wiUJKQ,0,1,0 +QkyN2vqQidQhotvOtPIrkw,2012-07-11,CbPHYxK4B8bRpRha4W9Feg,3,"For 6 days out of the week I eat tons of fruits, veggies, nuts, seeds, whole grains, fish, etc. Tuesday afternoons is my cheat meal and I really look forward to it. This time I was looking forward to pizza. I love pizza. + +We dined on Tuesday afternoon, the place was kinda empty so we got tons of attention from our waitress who was wonderful. For an appetizer we ordered the rock shrimp with garlic, basil aolioli (sp) dipping sauce. The shrimp were okay, but needed a more flavorful dipping sauce maybe a spicy marinara or barbecue. For my meal I decided to go with the soup and 9 inch pizza lunch special: butternut squash & margerita pizza. The soup was actually quite good. The pizza was good, but something was missing. Oh yeah, the CHEESE!!! Seriously, do I have to ask for extra cheese on a pizza? I really look forward to my cheat day and the pizza did not live up to my expectations. + +For dessert I went with the donut holes drizzled with caramel and sprinkled with powdered sugar. The order is huge, seriously there were no less than 30 donut holes. Cheat day or not it was just too much. My husband ordered 2 scoops of vanilla ice-cream. After visiting a local ice cream shop where everything is homemade, this ice-cream did not come close. + +Long story short, we will visit again only next time we will ask for extra cheese on a cheese pizza.",review,fIvDzLhs-cXbTKWp8P3eIA,0,0,0 +ttLtsY1S2Angj6hvEdzwDQ,2010-09-30,YbRtT5HUW-qodfjOBQTGAg,4,"Great Bellini, loved the Seared Ahi, Portabella and Beef Tenderloin Flatbread and Spinach and Artichoke dip! I highly recommend you select the same on happy hour! 3-6pm 7 days a week!",review,hLvf2jhy3LK1Je1LBZAcGA,0,1,0 +On_3zLdujQdvDbBYUirNWw,2008-08-13,naxpAVMjrO65Fr5huy9f1g,4,"repeat after me: +creamy polenta covered with young brocolli stems and seared sea scallops!!!!!!!!! +yum. +repeat after me: +buratta with charred bread, heirloom tomatoes and drizzed with olive oil!!!!!!!!! +yum. +repeat after me: +asparagus, radiccio and hearts of palm salad with truffle oil!!!!!!!!! +omg yum. +repeat after me: +chicken stuffed with marscapone cheese, fig and other stuff that's really yummy! +yum. +repeat after me: +spicy spagetti with fruite de mare - clams and mussells!!!!!!! +yum. +repeat after me: +ravioli stuffed with goat cheese and other yummy stuff!!!!! +yum. +cute and attentive waitier: yum :) + +i stayed at the firesky and had dinner at taggio for two nights in a row - not by design but necessity and i'm here to report that even though i didn't choose this restaurant for both meals, i'd come back again in a heartbeat.",review,Eo0o6m0gKBMgmooN_ZeFGw,1,2,2 +EWMwV5V9BxNs_U6nNVMeqw,2012-01-10,lTpCc1QyuzcROvgz-FxKAQ,5,"Along with Bliss, FEZ is another one of my fav brunch spots. They have $3 specialty drinks (mimosas, bloody marys, bellinis...). The service is always quick and the servers are always attentive and very patient with my ridiculous modifications. They have a drink called a ""g-spot"" and it is fresh grapefruit, grapefruit juice, ruby red vodka and soda. It is unbelievable and on thursdays they are $3 (i think) The menu is different with kasras and stylish burgers but somehow we always fill up on the appetizers. The cheese fondue and the little pyllo pockets are my favs. Ive never been disappointed at FEZ and I absolutely will continue to recommend it and go back! (Thanks thomas for the corrections!)",review,nBFyVu9NZ9zhY49LRoULKA,2,1,0 +h6jfMpTZpNduLG0wE2tbaw,2009-02-28,8Yd53xAv5QKTi-_JgMfp4w,3,"the food was okay, it's a bit pricey. I liked the big wood boat they served our sushi on. not my favorite but don't hate it either.",review,Gj_398oemu73V9DEFSYZjg,2,2,0 +4EeLblEpJc2VeBowa94YPQ,2008-09-29,r2VSvC-j8NL3Ofc3eLxldA,5,"i love trader joe's!!! + +i think they're selection of products are just GREAT!!! i can't get enough of it. + +the place is clean and the people are friendly. it's right next to michaels which is also great. it's in a convenient place. it seems like the people there are nutty-crunchy which i love!!",review,mUUy72UfqmFj_krWclKELw,1,2,2 +lVHtVCyFJOqAH0ltn7pLuw,2008-03-22,FvH04ALRAlAT9i1gpu9xTQ,4,"I started going to Sushi Eye since it opened. I quickly befriended Paul and Richard Cho who are the owners of the establishment. A more genuine and convivial Father-Son team of restaurateurs have never opened an establishment in Arizona. + +Koreans (by ethnic group) are by far the largest sushi bar operators in the USA and very successful at creating American pleasing establishments. The Cho clan left Northern California to come to the Valley for sun, golf and open sushi bars. They succeeded at all three. Loud House music, Sports Center on ESPN and lots of Shochu, can accompany your fresh escolar sashimi and ASU roll. If your sushi'd out try the Nippon-Hawaiian fave, Chicken Katsu. A warm, ""Irasshaimase"" awaits all who enter this charming dollhouse sushi bar. + +By the way, I drank so much Shochu at Sushi Eye that I took a little nap on the gravel out in front of the establishment until Richard Cho came and rescued me from passing out in the gravel. A sushi chef and a finer wingman never existed in Chandler",review,mEMZxvHpemSxn1gl7Lj1Zw,0,1,0 +fhe6HAP9_IAMDyH8OEEIwg,2012-03-14,IaG7bMOPppuiojRXnvVzTA,2,"I was excited about the concept of a haircut and a beer. So, when I saw an offer from Livingsocial I purchased three coupons. Here's the trouble... I went on a Tuesday night at 6:30pm and was told they will not honor the coupon until 7pm. However, I was told if I wanted to pay for a cut at the standard rate, they would take me ASAP. Nobody was in the joint and they refused to take my Livingsocial coupon until after 7pm.",review,LzT8mSfliJHhs68RTwQW5w,0,0,0 +2OY8xs4aqOt8eTnYokdrww,2012-08-01,rMjYr2inkmKYJEVX-ggWyw,5,"Attended the Table 12 Lunch & Learn event with guest Chef Mel Mecinas and was truly blown away. I have previously eaten off of the house menu, so was expecting just as spectacular presentation as Chef Beau Macmillan presents - I was not disappointed. + +Our party started the night at Jade, which I have written a review for previously. Great place, wont go into much detail there. + +The meal started with with an entree of a rare tuna, bacon, asparagus, and hollandaise sauce. Second course was Korean short ribs, brussel spouts, and lotus root kimchi. For dessert, twas a bourbon banana creme with carmel popcorn and candied walnuts. + +The meal could not have been more amazing, and the service was just as good. Have already booked the event on Aug 18.",review,8DEtfP9Fmp5X1DG6iTtXnQ,0,0,0 +eqdEOyNbEvl-Gne_w3_0jw,2010-01-21,ZcnmjcZIxHBkVqL4-4s46Q,4,"I've been here twice, great decor, cute & really friendly staff, and lots of really nice people to shoot the bull with. I've heard the food is really good too, but haven't tried much of it yet. I did try the french fry basket, it was nice and huge, and the hot wings are good, they use Franks, so if you like reg hot, get the hot. Happy hour specials are a good value too. Will return often.",review,bi-cjl__VcBUruHW2Ufjlw,1,1,1 +nts2OALwvyvfNh9focRZ3w,2010-04-19,qUobZQ6GQX58NzNwXaV9KA,3,"I'm not feeling the love here. Went to Hillside on the recommendation of a friend that lives nearby and loves the place. I would love it more if it was my local caf. We went on a Sunday morning, knew there would be a crowd but the wait in line wasn't long and we had a table right off. The entire line stopped while the order taker bagged up the to go portion of my order, my friends pie to go ordered at the same time took over an hour to get to the table. What was that? the food is good the portions large. They can't afford to get a number system for the tables? A wait person stood behind the drinks station/bar bellowing my name. not even stepping around. I had to stand up and holler because I COULD NOT FIND THE PERSON WHO HAD MY FOOD. The food was nice but living in the east valley I wouldn't drive cross town to eat here again.",review,uM-Vc-yM0Gr3MJRfZPeIwA,1,1,1 +TjK3u3XIJA9nS2FJnti-3w,2011-07-25,AFcPlRXsp2pDWsg24XUvzQ,4,"Ok, Ok, I know I said I would never bring my clothes here, ever again. + +I was having a rather busy week, so I told my Dad to drop my clothes off to the cleaners. I thought he was going to take my stuff over to Continental where I usually go, but he brought everything to Seville. + +I was a little upset, but being the angel of a son that I am, I bit the bullet and smiled. I thanked him for helping me out. + +When it came time to pick up my clothes, I carefully walked in (knowing I slammed them in my past review) and quietly picked up my clothes. + +I got home, and noticed that one of my shirts had not been cleaned properly. There was a stain on it from what I think was cola. Later that day, I drove back to Seville, and they offered to clean it once more. + +Flash forward to the next pickup day, the stain was still there. I asked for a manager, and it happened to be someone that seemed to be the owner. He asked how much I paid for the shirt. + +They gave me a check for the FULL amount. + +It's very rare that I write a review update that spans a few stars (only DeFalco's comes to mind), but Seville took my crappy situation, and made it right. + +I was VERY hesitant in coming back the first time around, and it was only because I was forced to. I'm glad everything worked out the way it did. Not because I got a new shirt out of it, but because I got a better experience. + +Way to step up your game Seville. I'll be back if I'm in the area!",review,8JC-Yb3UDUv2FUl5ym1nVg,3,1,1 +jkxwhmUKKPeKTZnRE4yL4g,2010-11-22,Sw2NyNwWaUsuF-S6Woa5yw,5,"I've often driven by here, & figured I'd go in & take a look sometime. +But I was looking for a clock-mini-speaker system that I use with my iPhone 4. + +When I had my 3G, I had a very bad experience where I was assured that a particular clock-mini-speakers I bought would work with it - but all it had was a cheap plastic adapter that the 3G kept falling out of - & then they gave me a hard time about a refund. + +This time, I was again getting either glib reassurances & non-specific information, ""sorry out of stock""s, or NO OPEN floor samples I could look at, at 3 other stores (including the big A Store with a lot of Jobs), not to mention conflicting info on Amazon & upon Googling. + +So I thought to go into the iStore. Boy, was I pleasantly surprised! They had open, plugged in items that I could actually test my iPhone 4 in to make sure it worked. Even better, I began chatting with the guys there about various other iPhone & MacBook Pro issues, & found they had FAR more knowledge about BOTH the phone & it's peripherals and MacBook Pro's (and HONESTY about them) than I ever got from the ""really-really-smart"" folks at the Big-A-Store-with-Jobs who will promise you anything. + +So, I would definitely go back there for honest advice & I would certainly bring in anything that needed warranty service. They also have a pretty nice selection of peripherals and better yet, they know WHAT WORKS WITH WHAT!",review,om64hB61Q9M8z98qJK9tfQ,4,5,2 +uKSX1n1RoAzGq4bV8GPHVg,2010-10-14,3kE6UBKKUvWTpMjQYsMfjw,3,Sometimes the downside of Yelp is that you read so many great reviews for a new restaurant and you garner these very high expectations. That's what happened with St. Francis anyways. Our bartender was not friendly at all. The dessert was very good however! Hopefully next time the service will be better - sometimes you just catch people on an off night.,review,0LuN0DGTCkzpjAD3NyNN8w,0,2,0 +cp39VURFby4A6u9m2It8jg,2010-04-16,oEb5CRSge82b_hK24rWH1w,5,"As far as gourmet burger joints go, this place is the bomb! I am a huge fan of Deluxe Burger and now they have a run for their money! Plus the parking is much easier at Zinburger. I had the Zinburger, and we shared sweet potato fries and regular fries. Everything was delicious! All 3 of had the Zinburger, so not much variety at our table, but we all finished our burgers, and given the size of them, I was pretty surprised/impressed with all of us. The burger was heavenly, juicy and cooked perfectly. I would definitely go back, again and again!",review,TFoC8qQCI2VfQe3rB0Q0ng,0,0,0 +2h9LsLPdJ7OvZrYJZhVdAw,2009-07-03,BLl2A6L2yF4qs8pXavZyVw,5,"I work across the street and love me some Hava Java. The morning crew is very friendly, and the coffee is great. I am a big fan of the Swiss chocolate blend, (or any of the flavored blends for that matter!) they are really flavorful without tasting at all artificial. I buy Hava Java beans and brew them at home, but when I stop in for a quick cup of coffee I always have a good experience.",review,KQURCNvwamJV1vXUiDm15g,0,0,0 +PoRYjYUSjmeWM1WLsx_45w,2010-02-23,KqayigmkZK-fD0awCn12Xw,5,"This is the largest urban park. Moreover, that urban part is great because I am 10-30 minutes from three major trailhead areas. + +For hiking I like many points of entry, one of my favorites is telegraph pass, this is on the south side of the mountain. A new recently remolded parking lot is found on desert foothills parkway. There is a paved path that is about 1/2 a mile and at its end Telegraph pass is to the left and Desert classic is to the right. + +Telegraph pass grows in steepness towards the top where there are some larger stairs. At the top, there is a bench and you can then continue on National trail. If you head west, you can reach a great Ramada. + +From the pima canyon entrance I take the fire road to national, after the initial ascent it is just some rolling hills, I then make left to hidden valley where there is a great natural tunnel, Follow this trail to reach fat man's pass, contrary to the name there is a narrow gap that fat men cannot pass luckily you can go around, this meets back up with national trail. Many unique rock formations on this hike. + +For shorter easier hikes from this lot, you can do the east and west loops and Beverly canyon all small trails that loop, and have a few nice views. + +For Mountain biking my skills are not too advanced so I stick to the east end of desert classic, with mostly straight section and a few wash passes and slight hill inclines it's great for a novice rider.",review,M6oU3OBf_E6gqlfkLGlStQ,1,3,1 +lnX2gaGdO0fNtykyFrp1AA,2011-01-28,IYvquxSHbKXSH2ru2dzaBA,4,"food is good ,but they have to re-model those bathrooms they are piss soaked and the smell makes it all the way to the dining room oooff!!!!!",review,fmsJOI_EwYj5QdFYXrjfow,0,1,1 +BRhKD4BEMg6NagsD3z-0YA,2012-01-10,FKU3Eurvig2XLaPUMu5Odw,5,"They get five stars now. You know why? Three little words I long to hear: Gluten-Free Buns! (OK, technically that's two words, but I love them nonetheless!) + +The buns are a dollar extra, but if you are like me and are tired of eating a burger with a lettuce wrap, or worse, with cutlery, just for the illusion of a sense of normalcy, they are worth it. And, frankly, quite tasty. + +I don't know if all RR are serving them now, or from the same bakeries/distributors, but I for one am glad for it!",review,RHLKZQWKlfraZcFNjJYxpQ,0,0,0 +a9Wk44qJLWoJQT-_H8MB-w,2010-10-17,w5fAOjo4Ifvl0hBrJ7oo4w,5,"A most unexpected gem! If you are a wine drinker, fabulous flights! Great selection! I can't say much more other than... AWESOME!",review,Pllc3jWFmwvkPcPYHTQs-g,0,0,0 +xdwPHc25l7_roZ9Kfea13w,2008-04-15,lhfeBY6lVSJVNaYOtS0UMQ,3,"I can't help but feel the same sentiment as Nathan S. - I sort of feel bad giving this place only 3 stars with all the other rave reviews. + +Let me start with the positives - + +I love love that the place is so small and intimate. Especially in comparison to most Valley restaurants that are just cavernous. And with the European-style seating you have to get friendly with your neighbors. Both of these things make this feel like a good NY restaurant. + +I also love the atmosphere and decor in general. Very authentic Spanish, very laid back, not all hip and modern like most restaurants try to be these days. + +The service was extremely friendly, from the hostess to all of the waiters and waitresses and bus boys that came by. + +My husband really liked the Sangria (Tinto) - he said it wasn't very strong but tasted great. + +Indeed, all of the food tasted very good. Our two favorite dishes happened to be the daily specials - the Eggplant Barcelona and the Turkish Custard dessert. But the Tortilla Patatas and the Gambas and the Spinach with Garbanzos were all great as well. + +Now to the negatives - + +Firstly, selection was dreadful all around. The wine list was very minimal, and the very limited bar didn't help. And there were only about 8 dishes to choose from. When I go for Tapas, the whole point is having a wide variety of small plates to choose from! + +Every dish was DROWNED in oil. Literally, bowls of oil. The food just sat in my stomach afterwards, and I felt like I needed to take a shower to rid myself of all the grease. + +The sizes of the dishes were very inconsistent. I know it's tapas, and I love me some tapas, but generally at tapas places I find you could likely split each dish three ways. The Gambas and the Spinach were both huge piles that could have been split up to 4 ways. But then the Tortilla Patatas was barely large enough to split two ways, and then our two favorite dishes - the Eggplant Barcelona and the Turkish Custard - were both smaller than a deck of cards and splitting them just two ways left us each with a single forkful of food. There was a party of 4 next to us that put in 1 order of the Pork Tenderloin and the waitress said, ""You should really get 2 or 3 orders of that so everyone can try some."" 3 orders for 4 people to try it?! + +Then, right along with the food size is the price. $90 (incl tip) for the 4 tapas mentioned above, plus a glass of sangria, 2 glasses of wine, the dessert, and an espresso. 2 of the tapas were one bite per person. Yikes. + +The food, while good, was nothing outstanding. There was no dish that made me stop and say ""wow, now that is well done."" They were solid but not amazing. (As opposed to the Lomo Embuchado at Cobras y Matadors in LA that I was ready to marry and make babies with). + +So all in all, I'd say a 3.5 star experience, rounded down because it just wasn't a 4 for me. I can't help but compare this place to my favorite tapas place in the valley, Sol y Sombra in the DC Ranch, where they have a huge selection of fantastic wine (and a full bar) and a huge selection of delicious and much larger portioned tapas for the same price.",review,qASPib1Z8ft8e96dtbh66w,4,8,2 +L9UYbtAUOcfTgZFimehlXw,2011-08-27,4K-PpsBC-DXRf2MItYi3Tw,4,"Well, I've been to Liberty Market several times now and it's time to add my two cents. Yes, I know, there are already 250+ Reviews, what more could I add? Don't worry, I'll stick to the facts; consider this the cliff-notes version. + +Take the first parking spot you can find or drive the the lot west of the building. Walk in, grab a menu, and get in line. With all of the goodness on the menu, try to make your decision before you get to the register. + +A few of my favorites +1. CORTADITO - coffee drinkers, do NOT miss this one! Cuban miro-latte, on the sweeter side, served in a pair of espresso shots or a bowl, perfection! +2. Rancher Salad - steak, caramelized onions, blue cheese, arugula, do I have to keep going? +3. Sweet Potato Salad - a unique salad, SO much better than your average potato salad +4. Cinnamon Rolls the size of a human face, if you're into to that kind of thing, share with a friend, or four. +there are more, but I promised to keep it short. + +Back to the line. As you're making up your mind, be ready to answer the number of people in your party so they can set you up with a table. Try to resist the incredible looking, super-sized pastries and desserts in the case, or not, what the heck, just get it!. Pay the friendly cashier, proceed to the fountain drink station to fill your glasses, and maneuver the maze of tables to find the one with your number. + +Just a few tips. One, it can get a little noisy in there, so may not be the best place if you're planning a discussion over your meal. Two, LM gets busy and the staff is always trying to find a table for the guests in line by the time they finish at the register. So, while the dining room attendants are friendly and attentive, they are definitely trying to turn the table as soon as you'll let them. + +And now you know what to expect. If you don't like lines or loud places, this might not be your favorite place. Overall, delicious, fresh food and shinny, happy people to bring it to you. Let's just say LM is enough to get me out of my five mile Ahwatukee radius, and that is hard to do! Now you know the scoop . . . I'm out! Enjoy!",review,AirVzN1BVQBmq5zY0YMNYQ,2,4,1 +9XX-sxaDFXlXO65WnuS65Q,2010-03-03,2SyBuAtRjEF8DMTzFvsK0Q,5,"I live in the townhomes right next to this restaurant and it still took me 4-5 months to actually try it. Absolute blasphemy as I see it now. This is a charming little place, decor outdated enough that it's sweet again, friendly servers, and man, great food. The pesto cream sauce ravioli (I believe) will blow you away. The wine glasses are filled high. Everything is great quality. Prices are medium-range, most dishes ranging from $11-18 but coming with a salad or soup and bread. This would be a great, great date night spot.",review,7MJJ4dacV5wzslKT3izK8Q,0,0,0 +sRhfzx8P_VAdmofWMSPD3A,2011-04-19,7b60WOm-OCmZgM6Bzfh3lA,4,"Great service by the owner (Nick). He's very accommodating and aims to please. Friendly and helpful. I hadn't had an Indian fry bread in over 10 years. There were several meat choices to choose from and several vegetables to add on top. Unfortunately an earlier catering order cleaned them out of re-fried beans and bell peppers. The salsa was good, spicy but not hot. The owner kept the place open for me to enjoy my meal while we chatted. He even stayed open later to feed another customer that walked in after the place had been closed for 10 mins. He even gave me a coupon for my next visit. A truly caring owner. Nice place in a strip mall with plenty of parking.",review,F82JoyU1Y5yFuSeKfGxoAA,0,1,0 +lktu5JPDlQUG-7cV7gOzDQ,2009-12-05,wWeqZz_WqYpLF81e_J4-xQ,5,"I put forth that we need to institute a new standard of measurement to be used for comparing coffee shops. Furthermore, I think that Cartel Coffee Labs should use this place as a standard for this new unit of measurement. + +I have to assume it's called a ""Coffee Lab"" for a reason. Too many coffee shops these days are retail stores, where coffee is an incidental thing in all the yelling, stupid names, and fancy colors. If you look at the menu of Cartel Coffee Lab, there are a total of 13 items. It's all about the coffee, plain and simple. + +Then again, there's really nothing simple about it to those who take their coffee as seriously as this place does. The artistry of their baristas is not to be trifled with. These people can make a latte so pretty, you really won't want to drink it (until you do, then you're happy you did). On top of that, the selection of coffee varietals is impressive. I've only tried one, but that alone was better than anything Starbucks tries to pawn off on the masses. Perhaps the use of the term ""Lab"" is because they've actually stepped beyond anything any other coffee shop has done. Either way, the formula that they came up with works better than anything I've come across before. + +Then again, maybe I'm being too hard on the other places. It's not that they have an intrinsically inferior product, but the reason for these places has been lost behind t shirts and mugs and open mic nights and selling you a card containing the same money you'd use on the place anyway... + +I digress. Cartel Coffee Labs is a great place with a fantastic product. If their WiFi is weak or the back corner gets dark, I honestly don't care. Their coffee is excellent and I'll be coming back for more.",review,lczLjHO7zIhrmSlOXI3ohg,2,4,0 +oD3K3aT52uNdLaYmGnRV8A,2009-03-30,hzr2ge0wo-x6MlGsXzGrOw,3,"Minnie and I stopped by Papago Dog Park today on a whim... + +It was a beautiful day and since she was such a good girl in the car with me and at my afternoon meeting, I wanted to reward her. Rather than travel out of our way to go to Chaparral Dog Park (our usual dog park destination), I remembered seeing this place, specifically the fenced in / off-leash area, and we swung by. + +It was just after 4pm, and there were a handful of dogs there, and more were coming the longer we stayed. It's a lot smaller than Chaparral, and the grass is not the healthiest I've seen... Unfortunately, there were several areas that owners didn't clean up after their pooches too. (Come on, owners, you give the rest of us a bad name!) + +Anyways, we had a nice 30 minute visit... Minnie sniffed out a few other dogs from behind and then they returned the favor to her. Don't you love how they socialize with each other?! Too cute. + +Anyways, will this become our dog park of choice? No. +Is this a viable option if you're in the area? 100%.",review,fczQCSmaWF78toLEmb0Zsw,9,8,6 +NYBx4sdSVrN-I5Q8RfLMPg,2011-10-25,-dyBFg-hZGzkT5w4FH1S2Q,3,"I was way excited to try this restaurant since it's so close to my house. I just assumed it was one of those places that looked like a dive outside, but served up a piece of heaven inside. Once I read the Yelp reviews, I was convinced I had made a sound real estate investment! + +Maybe my expectations/hopes were too high, but I thought it was just ok. I liked the chips and salsa, and the service was friendly without being in your face. We ordered a round of margaritas which tasted good, but were really weak in terms of the amount of tequila. My father had the garlic shrimp and octopus which was really delicious--if I go back this is what I'd order--and I had the fish cuilichi was ok, just kinda heavy and not really something that got me excited. The girly girl in me says, ""not worth the calories!"" + +I think I'll give it another try some time in the future--perhaps it was an off night.",review,2nXVVKX3K4Httr7-IU1Rew,0,0,0 +OmxAvtMyIvCVm16NFIOOUA,2011-07-06,a_V9wwlIeoD6VvJ9eYtwQQ,4,"Fast service, attentive waiter, food cooked as I ordered, clean restrooms...What more could I ask for? I was on my way to a meeting at the Marriott so I stopped in to grab lunch beforehand. I was in an out in less than 45 minutes. Perfect. + +I'll be back the next time I am at the Desert Ridge mall looking for a place to grab a quickbite to eat without ordering fast food.",review,Q6FaSZpCtVv7PXECwDL1bg,1,1,0 +q9WaFYhlOZCrfXJQTG5t_Q,2010-06-24,Pu6gkAX-o91WZ2U1Qug5pQ,4,"This is a great place to go for a glass of wine and appetizers with your girlfriends. My girlfriends and I went there to celebrate one of our birthdays. We sat on the patio by the fireplace. Our waitress was awesome she let us try as many samples of wines that wanted to. The wines are very good and pretty inexpensive. As for the appetizers they were just ok. The bruschetta is good, but the spinach artichoke dip was tasteless. This place stands out for its ambiance, great tasting wine and good service!",review,rSxu4DcvWcilImgpcS8Tzw,0,3,0 +z1Np8_oQECKWGCwJJ8864w,2011-04-20,WRakYyGpQbpEdPfJZxSL8g,4,"I've never had a bad meal at Z-Tejas. My favorite is the Jerk Chicken Salad, but I've also had some great scallops there. The cornbread is always delicious, and they're famous for their margaritas.",review,CudlbVQsaP4d8LATjkgfFw,0,0,0 +5SS69rC8XWvdlD1OHifEEQ,2012-04-08,rlNhlySEjL752rXgA6pZ0g,5,"First time having Scandinavian food, everything was excellent. Will return soon.",review,YJ69qGzOvGYmxkjbQjAejQ,0,2,0 +Pka4ncyteQ0nmq82AgPrYg,2011-04-23,IA3upsh-hkj-dglq_f8yFg,2,"If you have a family with a lot of little kids, are absolutely happy with your body, and only want to leave your house to change your scenery, this is your place. If you are looking for a great workout, this is not your place. The hours are pretty bad and you have to plan your schedule around them. The cardio machines are good. The variety of weights is okay but they are all over the place. They have a suggestion box, but they don't take them seriously. The classes used to be good, but now the quality has gone down. The zumba class used to be my favorite, but not so much anymore. They should have different levels, but there is only one and it is slow. There are kids all over the place. I dont understand what parent would want their 6 year old girl learning to shake her butt, but I can't judge, I don't have a kid. Maybe when I have one I would want her to learn to dance low and shake it, so she can be asked to go on MTV. The majority of the classes are in the middle of the day, which is great if you dont have a job or anything to do with your time. Yoga? there were a couple good instructors, but they are not there anymore. What do you guys do to your instructors? Why do they run away? Why do you make it hard to get a good workout? I dont think I am asking for much here, just a place that I can get a good workout.",review,5gmnzvjYprzK21Q5awYF_Q,0,0,0 +SF43rzRcmrHxaFNN3Pacjg,2011-12-03,un2PW5io90ZteyCzn9Pv3Q,4,"My sister and I went today for brow waxes. The establishment is spotless. Cleanliness is really important to me. My esthetician was Alexandra. She was very professional and explained everything she did before she did it. I've had many waxes and know the procedure, but it was a nice touch. + +When we arrived for our appointments we were told about their package prices. I'm a pay-as-you-go type person so I declined. It was not a hard sell and I really appreciated that. I made a follow up appointment in 2 weeks.",review,fIvDzLhs-cXbTKWp8P3eIA,0,3,0 +Br9Ruk5yY9ui8OiKChWdgw,2012-01-31,yPNKoTo0W2j-6CxfONssLg,5,"This place is great! +If you talk to anybody they have a suggestion for a great flavor. +You can bring in food from another place to enjoy and just enjoy a great atmosphere. +With the music that someone has an issue with you can just talk to the DJ to get a suggestion they are MORE than accommodating. +They have a great happy hour prices! +Overall great prices, great people, and a great time! If you have the right mind :)",review,pJ3kMwJQJsSZmewt_wzPPg,0,0,0 +V9i9LnTg9H2XvzqCVBSOXg,2010-08-29,3akoBAMnL8-H1QJu9tCC-Q,5,This is definitely the best Indian restaurant in Phoenix. The tandoori chicken and aloo tikki wraps are to die for. You cannot go wrong with this place!,review,1pbDBfeOWnRVrotNPRzAzw,0,2,0 +JZJqJadk9pSoCGT7VTwBvg,2009-09-21,AhV6mFhMF7PgeReHce6zgQ,2,"So, clearly the musician's make the night. Our night was not so hot. Half of the bad that we caught wasn't worthy of stage time, the other half was. The horn players were exceptional, the Keyboardist wasn't. I'll stick to the facility. The Rhythm Room is a Phoenix, classic on the music scene, or so I'm told. This was evident when Paul Reed showed up with his horn and just joined the band on stage. That was cool and made you feel like you were in the right place. Beyond that, I'm can't really claim that this place is worth the time. We'll have to try it again to confirm, yet my urge to do so isn't high right now. The neighborhood is questionable. The entrance is not obvious, the bar and the service are not inviting. The music area of the building is excellent. You sit very close to the band. The one thing they need to fix within that is two sets of band doors would allow for a much faster setup/teardown between bands. We waited for an hour between bands. The Rhythm Room is missing an opportunity here, they need a comedian or something the fill the gap. + +Some fresh eyes on how this place is run could really make some simple improvements. Just because it's a known classic doesn't mean that it can't change for the better. The one thing they have right is that the sound is good and if they're getting good bands, then it makes for a great night. The annoyances only become obvious when you have an hour to descern them between bands. + +The musician's interaction with the crowd before and after shows is really cool. This makes everyone involved feel like they're in the scene.",review,eI_iX-so_LNK_Tke1-osig,1,2,1 +cDlnR62ds1dcVdbjN1bYiQ,2011-02-20,0fC3ZE4g1VrEe1G621IaPA,2,"the pedicure was nice, I will give them that... but lady must have wanted 2 close shop early that day as I told her I wanted a pedi & an acrylic manicure when I first walked in. (She asked another customer to come back the next day while I was getting pedi). Needless to say, I didn't get my acrylic set, and towards the end, I could tell she was 1/2 arsing it... and they were a lil pricey... I mean, really, $5 for taking off my nail polish? I would give this place 1 star, but they did do a good job on the pedicure. not returning here...",review,vSxaLh9RCl1BJDbIt0hxww,0,1,1 +sspvIv6br3Vto2s5JkeiMw,2012-10-19,sndE97Pal3tBiaI9NzP_wQ,3,"This seems like a decent place to get a drink, if youre so inclined, before going thru security. + +The service was so so, but I also think our waiter was in training. We didnt venture very far into the actual restaurant, just sat at one of the pub tables by the enterance to keep an eye on the security line, so I guess its good for that as well.",review,X5GbNXY_nNoa_vTZDD0aCA,0,0,0 +TYGIfpFrYYrKXOPexst5xQ,2008-02-29,0FsbmwunV8wsSClhKg5lFA,5,"In 1999, I was discharged from the United States Marine Corps. + +Keeping a high and tight well maintained was a real pain in the ass because barbers dont understand what the hell its supposed to be like. I am sure that many of you who keep this style of haircut understand. + +Any barber can sit you in a chair and cut your hair. This guy used a razor to get skin close on the sides, and a leveler (no, I am not kidding) to make sure that the cut was even. + +I have gone to at least 20 barber shops in the Phoenix, Mesa, and Tempe area. This barber shop beats them all. + +This is the BEST barber shop in Phoenix. I have been a repeat customer for 9 years, and I will keep going back until they close up shop.",review,KYCW5xpBif5eqt-jvIHTdw,2,3,0 +Uke8Pq1m918WW0n0_jEmWw,2011-03-01,89DZILgPs_wpV_KASJWv0A,5,"Tweet tweet. I decided to follow Market Bistro on Twitter just recently and am sure glad I did. This company really knows how to treat their 'followers'. + +I have been a fan of Market Bistro for 2 years now, they have such a comfortable setting at both locations and the food is impeccable not to mention reasonably priced. + +I have always opted for the Market pizza, a dish that includes artichokes, large sundried tomatoes and a flat parmesean encrusted dough. There hasn't been one time that I've visited Market and felt disappointed in portion size or my order. I have such an appreciation for an establishment that takes pride in their food's ingredients, atmosphere and customer service methods. + +As for salads, If you can take the 'heat' I would absolutely recommend the Arizona Salad. The chipotle dressing, black beans, rice and tortilla crisps are a terrific blend of taste for your palette. You will feel right at home here in the southwest with each and every bite. + +If you haven't already started your car or phoned in your order at Market, I'm 100% sure you are crazy. + +#BRAVO (hashtagging seems appropriate here).",review,X8pfLhF0LABJ5LNeuowCKA,0,4,1 +nUIkqgFimmLsB50WXVwTfg,2010-08-11,Y5QW-2QbMS4e-5gggl5D1A,5,"These little sliders are tasty, delicious and pretty speedy. You get two and you can get them with or without grilled onions. There is a home made type thousand island dressing on them that adds so much to these wonderous burgers! Fries are 5 star as well...also enjoy the people watching...Scottsdale at its finest!",review,180tLY4YhUAuckejm5v53A,0,0,0 +e9djgIbIn-toCOwmRTpgCw,2012-08-22,uINIGEl3fVTessHqh4w9Kg,4,"Good coffee good location, but not a place I'd want to hang out. It's not that inviting to me for some reason. That said, I do really enjoy their coffee!",review,E679YrWlyTpvkOBDhAssIg,0,0,0 +n-Q7d10K0h6PyNewmiHLyg,2011-04-04,N3Ut6LtL3lIOfTZDNzR-AA,4,"Phoenix Muni is a great stadium to see Oakland A's Spring Training Games. Yes, it's older than many of the other Arizona stadiums, but it has a simple charm that serves it wall. Great seats can be found just about anywhere in the park, and for $22 we were in row 7, just to the right of home plate. It's also pretty easy getting in and out of both the stadium and the parking lot. + +The only (minor) negative is probably common to most stadiums: there don't seem to be enough vendors (at least beer vendors; several people around us mentioned it), and the concession stands can get somewhat backed up at times. But for a relaxing place to watch baseball in the Arizona sun, it's hard to beat Phoenix Municipal Stadium.",review,gVgbIRT9mJkeWSAzBA9i6g,0,2,0 +AryNioF9fxl8RYGiIE7fSA,2010-01-07,XbG_brproKg8wYuQJTLjNw,3,"Sauce has grown on me... particularly this location since this is the one I frequently end up at for a quick lunch or casual dinner spot near home. + +I typically order chopped salads at lunch. The chopped turkey & feta salad is what I had today. I had them add asparagus, which was a great call if I may say so myself! The large salad and fresh roll is the perfect lunch... fresh, filling, healthy enough, and pretty inexpensive when it comes to designer salads around town. I also like the spinach, pancetta & goat cheese and the veggie & aged parmesan salads. + +My husband eats at Sauce often as well... he goes for a salad or sandwich. Last time we were there together, he had the salami, turkey, prosciutto & mozzarella panini. I had a bite and was pleasantly surprised! It had a nice balance of thin sliced meat, cheese, lettuce, tomato, and tangy red wine vinegar in between two perfectly grilled pieces of bread. The thin crust pizzas are pretty decent also. Depending on your appetite, sharing a pizza and a salad with your companion can work out to be a satisfactory meal... + +What I like about Sauce the most? Fast, friendly, and efficient service in a clean and casual environment. The moderate pricing is also a big plus in my book... especially in this economy.",review,fczQCSmaWF78toLEmb0Zsw,6,9,4 +LdI-fcJDXGE7ns_jwWY2ow,2011-05-06,vvWPdmujhDXEMcr3AN1Y8g,4,"Been to the Spotted Donkey in Carefree multiple times and always been happy. (can't speak to their new location on Hayden as we haven't been there yet). The drinks are very good, if a bit pricy and the apps are wonderful. Ordered the short stack of nachos, stuffed peppers and enchaladas this time. All very good and tasty. One note, everything seemed to be a bit ""saucier"" this time, especially the nachos. While the sauce is very good and tasty with a good amount of spice, it was a bit mcuh for me. I don't remember it being that way before so perhaps this was a fluke. + +Will definately be back",review,Nt77Zlby0TH1Cw0E6aDVwA,0,0,0 +JEreQgso7MH_Io3DXGsEOw,2009-03-01,KHCNZ7NRGoYydLAZPnguQg,4,"We went to Ocean Prime the other night and it was delicious. I don't know if it was worth the money but it was definitely good. The setting is as attractive as any restaurant I can remember, with classical contemporary decor and a very cool display of alcohol bottles in the bar. + +I was in a party of seven and the prevalent dish was the bone-in filet. We had heard it was better than the steakhouses in Chicago. Well I'm from Chicago, and trust me, you get a better (and bigger) bone-in filet at Joe's. But it was still a delicious steak. The sides were terrific and the salads were good too. But those prices! Wow, value is not this restaurant's strong suit. + +About the only other thing I'll add is the service was below average, a concern considering what the prices were like. Our server tried hard but he was too slow and didn't get our order right.",review,NiznCY3sXPh-nkQjoTPFrQ,0,0,0 +jPhmaY35qGP2qNc68viXPg,2012-08-18,fHLAVvhnFKk1c9HHaA1xPA,5,"One word to describe this hotel: quality. The pools were all warm and unique. The hotel has two hot tubs, one that changes colors at night and is next to a man made stream, the other is on its own ""island"". There are two pools, a lazy river, and a small pool. The rooms were comfortable and the whole facility was clean. One thing that must be commented on is the staff was not only efficient but they were very friendly and nice. All of the food and room service I ordered was filled with superb flavor and had good presentation. The hotel also has a botanical garden, herb garden, multiple lawns, and it contains different food services. I highly recommend the ranchero pulled pork tacos and the sushi. The Marriott burger, creme brûlée, drinks, and fromage board was very good.",review,oY0QNmFG77hNaNwpPTLShA,0,0,0 +IXB3PGgSmw4bjTe9ll-tQw,2011-03-09,ljqWjeQK4Oxo04K7sWbBRQ,3,This place is your standard hole in the wall pho. They've got good tasting pho and spring rolls for cheap. :D The cleanliness is definitely lacking but more flavor fo' yo' noodlee!,review,iKDDbFu1lyA8-CVlGLFHcw,0,0,0 +VNLiEBJyt7UfB1mI9puITg,2012-12-08,yVAKdZa4iuV3Sq7tFMOGpQ,5,"As good as all the others, and closer to home than most.",review,5lq4LkrviYgQ4LJNsBYHcA,1,1,1 +zruUQvFySeXyEd7_rQixBg,2012-03-14,8U_d6jPKi4yhU-Blb1Fmqg,3,"U.S. Egg is situated directly across the street from Denny's. A nicer and classier environment than Denny's but the quality of food is similar (well, slightly better) and a bit pricier. Service here was really friendly however. + +Ordered the Triple Play (pancakes, eggs, and bacon) but substituted the regular pancakes with their famous protein pancakes which are packed with oatmeal, blueberries and cinnamon. Bacon and eggs are always good, tough to mess those up. The protein pancakes had a nice flavor, but the oatmeal which is mixed within the batter before they are poured on to the griddle actually messes with fluffy texture that I enjoy whenever I eat pancakes. + +If you are really big on breakfast and brunch food and don't want to eat at a nationwide chain restaurant it may be worth it to check this place out, just temper your expectations on the protein pancakes.",review,i1iaLhsO26OefrP-6Y41WA,1,2,0 +Lnohr9bpCbHNsomazXDg-w,2011-01-23,RKo6FENQyM2kOskKXGDuxA,2,"I went to this place after seeing a segment on Diners, Drive-ins and Dives (Food Network). I thought that the fusion of Chinese & Mexican food would be good. I was a bit disapointed. The food was okay, but nothing too special. The establishment itself was clean and the service was quick, so kudos to them for that.",review,KT6aazXSAQsngVUYTYdPeQ,1,0,0 +n_wZriiakBT7sVn87dpcEA,2011-12-21,Caph3q-MdbSShcHgKBly9Q,4,"Stopped in there December 17th. They have a great sound system that fills this large bar up nicely. I got the sampler platter and it's all fried, and it was definitely edible, I was wanting more! Lot's of beers on tap. Chuck the owner is very nice and easy to talk to and always has a grin. Julie is a hard worker and keeps the beers flowing, take of the wait staff and they will take care of you. Oh they had a live band there, Whiskey Tango was the name of the band. I left there with money in my pocket, this place will not break you, it's a working mans bar. I will definitely go back there!!!",review,KY7MQzgtx6Z5WFBIXVcoIw,1,1,0 +n-Q7d10K0h6PyNewmiHLyg,2011-03-30,Y4CtbRPa3ZmtisVL2wmbSA,4,"This was my 1st spring Training baseball experience so I can't compare the ballpark with any other. + +However, as a newbie I can say that I appreciate the intimate setting. Every seat is a decent seat. Hubs and I had seat right behind home plate for less than $30. It's a really chill atmosphere. Feels like a college ball park. + +The concessions are priced fairly. The bathrooms were clean. + +I had a great time. + +See you next year!",review,XCzaTPjSUgAOzdEUEUh1hg,1,0,0 +Nq7eB1wB2EArUICtiNePvQ,2012-02-18,y727z5s7ziROvku6F_rrIg,1,"The service here was awful, we waited patiently for over 15 minutes for our server to come by our table. Finally a hostess came by and noticed nobody was helping us and got us drinks. Another 15 minutes roll by and finally our server decides to make an appearance saying ""have you guys decided yet on what you want?"", uhh yeah! +Overall, service was poor and food was just okay. Won't be going back.",review,AOC3bEkZ7pTiXRdz0Tgp9A,1,3,1 +pQ3kRVmttsV1bHxuTf7TAg,2012-08-17,oncwn2geLvhpcQAwdbvicg,5,Good place to chill with a drink somewhere lowly lit and good live music. All the bartenders are really nice and that's always RAD:),review,0aouU2Yfzvdie87pI12-Uw,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2009-02-22,wcbPYofgyCUsJOsjkY9Gtw,4,"It finally opened! The sign has been on the building for at least 3 seasons, maybe more, but the wait was worth it. We needed a breakfast spot in this central area sorely. The order system is like Pei Wei, line up and order at the counter get a number and sit down. Bad news, the wait was long, the good news, the food is great. I guess, I revealed that I'm impatient and want instant gratification. Thank God that they gave me a cup for coffee after we ordered and got our number to pin on the table on those ""Alligator Clips"". Every time I use those things, I flash back to the early 70's using those clips for that last toke that then gave the super munchies. + +Coffee, $2.50 a cup for a bottomless cup with plenty of choices and in a to go cup. Atmosphere.....very hip look, open ceilings, nice patio, great colors and great sayings on the wall to remind us of cool sayings to remember while we nosh. Breakfast came pretty quickly considering how many people were in the restaurant . I had a breakfast burrito that was plump and was plenty of food. I just hoped for more....maybe those alligator clips reminded me of the munchies of the 70's. Sandra had a cinnamon roll and although I thought it could have been bigger....she enjoyed and said ""It was fine and filling"". + +Saw several friends there, all overweight and they said the portions were very satisfying. + +This is stupid but I love it. The Dyson hand dryers in the bathroom. They are the best. I'll be back for more and they can earn that fifth star I'm sure.",review,swJ6rmmGx4DCxosDfKTElw,2,3,2 +507GX11jtCsVYlzaur05_w,2009-04-16,zV2ecdBhma5h9ZGIH-ih1g,5,"Panda Garden is a family run Chinese Food Restaurant that is always friendly, and most importantly, delicious. You can order dishes family style and there's plenty of delicious meals to try. My personal favorite is the Empress Chicken, sweeter then Orange Chicken, but the flavor just melts in your mouth. I just had the Kung Pao Two which is Chicken and Shrimp, and its even better the next day as leftovers thanks to the generous portions. They have a good selection of sake and beer as well. This is my favorite Chinese restaurant and hope everyone else checks it out.",review,YvF9xRLyvDLqMAVkRTJcAg,0,2,0 +K845ZDttFfx99zQ-0aE2tA,2012-06-20,OzOBjwkb_705280n5oikPg,2,"I had a good bad experience while at Cadillac ranch. The inside decor was pretty cool and had comfortable booths, which I appreciate. We ordered three different appetizers that were on happy hour before our entrees. The Wontons, the queso dip, and the Chicken tenders. The tenders were good. They were beer battered and tender. The queso dip was pretty bland and the chips awful. They weren't stale but just obviously super low quality. The Wontons were obviously frozen and sitting on a bed of syrup. It was like having desert and appetizers at the same time. When it came time to order entrees i was the last to do so. I asked my server about an option between three entrees and she danced around all of them suggesting that I have a pulled pork sandwich that was clearly less expensive than the ribs, steak or taco plate I inquired about. I should have headed her advice. It isn't every day a server tries to under sale you I ordered the ribs and was disappointed. the texture was off the flavor was bland except for the sauce which was spicy and not good enough to mask the bad flavor. My server Liz was awesome. She was attentive and friendly. She noticed I hadn't eaten my entree and took it away. The manager came back and was apologetic he offered me another entree and I took Liz's advice and got the pulled pork sandwich. It was much better. The staff was good and did there job very well. It isn't their fault the food quality is so bad.",review,QMtB_nKKh9Z6OEFHE6b8Kw,0,2,0 +WyJRPTn2FCFdj2cYT9pqyw,2010-03-13,Y0MSBSg8AqpzLobWC8aTKQ,4,"This place is great. They have the best veggie burger - yes veggie burger - that I have probably ever had. It is spinach based and has chopped jalapenos in it for some kick. When I buy an entree, my kid eats for free. So not only is the food good but it's very fairly priced as well. + +And much better than the regular Big Fat Greek Restaurants around town.",review,_8o_CVDQNWx3QluULdaTdQ,0,0,0 +zht8__JJoxkozBhf_vuKYg,2011-11-15,VKX0dQue8PQqNa2dMR4C_Q,1,"Closed on Sunday? Looks like you've not only lost my Sunday dollars, but my business on Monday through Saturday too.",review,joIzw_aUiNvBTuGoytrH7g,1,2,1 +O_ZNZDr6c5CsK6GgsKdDeQ,2012-10-14,q3Vep95DYShvBa3WmtUkXg,5,"Beautiful hotel, great pool, nice restaurants, fantastic service, fabulous place to stay.",review,k0iLX341x3mm9golh9wejQ,0,0,0 +wH9WtaTlrRawH_IpK90RPg,2011-11-04,lc_GXewm6m5H4pIKmI8-ng,4,"The Lodge has been a pretty consistent happy hour spot for me over the last year and a half. Their food and drink specials are a great way to wrap up the week on a Friday night. I like their chicken strips and the cheese curds are great. The pretzels are also delicious. Service is typically pretty good, you'll be able to keep drinks coming and food comes out quickly. There's a lot of entertainment there, with corn hole and giant jenga outside, and some video games and a pool table inside. + +I don't love the Lodge as much for a prime time or late night spot...It gets a lot more expensive and a lot more crowded. Go for happy hour, order some cheese curds and a $3 Miller Lite and you're bound to have a good time. The decor is kinda fun, there are random acts of taxidermy inside and it's very, uh...Log cabin like. + +A funny (but pretty well known) fact about this place is that Jared Allen (Minnesota Vikings) is a part owner of The Lodge, so from time to time you may run into him and some other NFLers there.",review,LdhwY7eudLlx1KFQQe9GwA,0,2,0 +4jDDSE2q8X97FjJutOcAqw,2011-08-03,0R7bd8_NwPPPWNRociExpA,5,"*CASH AND CHECKS ONLY* +*OPEN 9 AM, 7 DAYS A WEEK* + +Love this place. Took my daughter here a year ago to get her very FIRST haircut. We had Miss Tara, who provided us with a ""first haircut"" certificate and she also had these tiny quarter-size ziploc bags for my daughter's very first strand of hair that she cut. The haircut was $15. Along with the haircut, Miss Tara styled it and put clips and glitter in her hair. My daughter LOVED it. + +The place itself was kid-friendly. There's a little kitchen for the kids to play with while waiting for their haircut. There are 3 big kid chairs for older kids to get their haircut. And there are 2 car-styled chairs for the younger kids. + +I took my daughter for her SECOND haircut today. We had Miss Annette. She was great. Again, my daughter got her hair styled after her haircut and got glitter and flowers put into her hair. The haircut was $15. We also got a punchcard, where you're 9th haircut will be free. + +This place does walk-ins, but it is better to call and schedule an appointment since they don't have a specific opening/closing time. They take CASH ONLY so keep that in mind.",review,u-M4jMYKXsj-l1BYdyNpRQ,1,1,0 +tWVuAPWXvW2g8ce0WWepXA,2012-10-02,GUKYe2KRWkVHiWEkm3FJBg,2,"It was an OK gyro for almost twice as much as the other places I've been to. It had a ridiculous amount of mutton sausage (that's what ""gyro meat"" is, fwiw,) and was pretty tasty, but not as good as a $4 gyro at Ali Baba. The price you pay for location, I guess. + +This would have gotten three stars, but then it gave me indigestion all day and I couldn't eat dinner, so it loses some for that.",review,ORSWIOs1RIOf2ydv4hBQcQ,0,0,0 +1AMncE6Lxdr6J9PeqZi4nA,2012-01-17,aMDlBRwGJW8QUX0vE4_waQ,4,"I stumbled in here craving breakfast because it was very close to the airport and very close to the Aloft hotel I was staying at. Yes, I am a tourist and yes, I am from a part of the US where cowboys are not common, so walking into a place full of country western paraphanalia made me smile. The service was good, the food was delicious, and I walked out with a few good photos. The coffee was a tad bit weak, but I'm a starbucks bold drinker, so I don't hold it against them.",review,8PSUiFWz11tGdYy9xEFPZA,2,2,1 +i_H_yKtISROjQ4eruSwyPw,2012-04-23,fAkFNFCkEVUbkgwWaNj65A,4,Had the spicy beef lunch plate with four sides. It was outstanding! Great kimchi too.,review,q7srymiZYDicJC9wEUU4kQ,0,0,0 +8H1DwdAAgSBtwDeb2R-hmA,2012-06-11,u-p4Mua7xs1WCTYDRJ6hvA,5,Amazing bagels and a great staff. I always get the build your bagel sandwich it's heaven!,review,3q8FzgSsKSzjzQxC212Mug,0,1,0 +68euKezXqyvsE49cIGdL2A,2012-04-18,LrWCKKhPE15xO-j7_NWPew,2,"This place used to be really good, but it just is not the same. The price is now the same as a sit down Mexican restaurant with real plates, and the food is microwaved and served like a fast food place. The things that are deep fried are greasy, and the things that are microwaved are tough. The prices just don't fit anymore, and that might be the location, and landlord problems. I miss the old day's There is no way Maria Munoz would ever consider the way the food is made today. The food, while it is still good, is over priced and microwaved. Real sad, and the amount of people going there is in decline.",review,8leoUQELdWao6zLgRlAt3A,0,3,0 +-3WVw1TNQbPBzaKCaQQ1AQ,2008-08-05,jq7PwMN9x8lmQcWZ8E0QeQ,4,"I really like this place. I spent 2 years in Honolulu and used to eat at this great little place in China Town. I have been craving that food since I got off the plane to move back to Phoenix. Well, I found China Chili and I am SO glad I did! The Honey Walnut Prawns are so yummy! The fried rice and lo-mein noodles are smoky tasting, and hot out of the wok. Is it healthy? Maybe not. Is it non-greasy? Um... not really. Is it delicious when you're craving some really filling Chinese food? Yes. I wish it were closer to my place so I could have it more often, but I'm sure I'm sparing my waistline of more issues!",review,4UUIpbOTPmu43wuC2aSGkg,5,5,3 +Uke8Pq1m918WW0n0_jEmWw,2008-08-21,aCVCTzk3l7Ls_41HZSZYAw,3,"You know when you make a copy of the original and its not quite the same? Juts a little fuzzy around the edges, not as sharp but usable? That is how I felt at the new location of Market Bistro. Similar vibe that I enjoy at the original isn't quite as pulled together at this location. Maybe the lack of a lounging area or the weird particle board chic tables? Or the fact that every table was dirty except one by the blast furnace (front entrance).. maybe the grease dripping on the glass in front of the grill? No forks? I'm sorry if I sound like a banging on MB.. but these are things that can be improved on. + +The Mr and I shared a salad and a Cuban sandwich.. the control freak in me of course got off on the salad making.. this was probably the best salad Ive made to date.. you should be able to patent your creations! The Cuban sandwich was okay.. the ciabatta rolls are so thick and chewy that when you take a bite the toppings sort of fire out the back.. for a Cuban sandwich I think it had some sort of Asian spice, like cardemom?? Anyway, the Mr didn't like it at all. This being his first time he was confused as to why I went on and on until he took a bite of my patent pending salad, then it all made sense to him. The salads are just so complete and delicious! + +I look forward to coming again.. I just hope that they can make a perfect copy of the original or go for a different feel entirely.",review,lPaYMDmJbAnv_3pmZH_inw,3,3,3 +H9wnP4BIctmRxMq43NPgAA,2011-10-23,G5PBgjdj7h4M4AG82EcHRw,4,"Went there for my birthday .... + +Another quality insured restaurant, it is inside of Four Seasons, it cannot go wrong .... +The restaurant is very classy with a nice and upscale environment .... and most of all with a very nice view to the phoenix area +The service is definitely top-notch and food was excellence as well. Had the sea bass and the filet mignon .... both were yummy .... and customized birthday desert as well .... + +Will go back for a visit for sure ... +Also if you are in Talavera, don't forget to grab a drink in the patio as well .... they have live music and watching the birds flying around the mountain (the resort is built into the mountain) was quite a view",review,sUTQfzzxxc2c3g6cFH19pQ,1,3,0 +rWXKA8HuYnJKcUAh_TZZag,2012-12-05,FcB24vEtWZaM4ZRZgxyyEw,4,"I have been shopping at the Men's Wearhouse for a little over a year now. It's been my go to place for business casual clothing that is required at my job. + +The staff has always been very friendly and not too pushy, even when they are working on the upsell to get me to buy a couple more ties or shoes. + +Being neither Big & Tall or Short & Stout, I appreciate being able to go in find some slacks and get fitted to my exact inseam. Add to that a guarantee on the tailored items, I will probably continue to go here.",review,bAuKPiWTMtCoNNcPBGWssA,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2011-03-14,mod2Fb2WRw4gTkbFeQqHnQ,3,"Oh, True Food. I want to love you. + +But you make me feel like I'm eating in a cafeteria. WIth such a contemporary menu and a staff full of bright shiny faces this restaurant is just a contradiction in form... the menu and ambience just don't match. + +My advice is to sit at the bar. The drinks are well served by pleasant bartenders and do their job, the stools are comfortable, and from that locale you get to skip the experience of having dinner with a room full of strangers right at your elbow.",review,e6jqQ_YXlGiLPi1z2HO0Pg,2,2,1 +pa6K7DGByxBXxcVJ59nWMw,2012-08-24,RNfGy6KVym2ZlaP7i1Ud7w,3,"went midweek and were seated right away + +Table was clean, service was adequate but food, meh. +Hasbrowns barely cooked and no flavor and the famous biscuits were more like mini loaves of bread with no biscuit consistency and the gravy was honestly just blah. After hearing such rave reviews I had to try it once but don't need to go back. Kinda sad because I love breakfast.",review,FbXYzo-QVDr65QpVjndqiQ,1,2,0 +ezh7DWNch2eNHTUyAnV7lg,2012-09-23,iKrrAL_IIdM4rsxJexg_iA,3,"I really want to gives this Sprout's location 4 stars but over the past few months when I get a deli sandwich the bread has bean stale 1 out of 3 times I'm there so I can't do it. If this Sprout's can consistently not give me stale bread I'd be happy. + +On to the rest of the store.... +Sprout's is a great farmer's market with a great selection of produce as well as great meats, seafood and cheeses.",review,ysg-bL8JKUcnJ1ks5RB2pQ,0,0,0 +DHk8is9rvfnATsW1AudWQg,2009-12-15,DVWwtmVt-XFb3lXylbSQ8w,4,"I was one of a party of 13 for a birthday party on Saturday night. Yep, I was odd man out again and in more ways than one as I will note in a bit. We got started a bit after 7 and first we got our drinks and spent some time chatting and reading the menus. Most of the folks there had been there several times before. Everybody but me wanted pizza and wings so I ordered fettuccine Alfredo ($18.95) with salad and garlic knots. I know it's un American not to be a fan of pizza and wings. Their antipasta arrived and I sipped on my beer. Then the pizzas came, then the wings followed by my pasta. Somehow my order got separated from the rest and I had to ask for my salad and bread which finally came last. The side salad wasn't earth shattering but was solid and the garlic knots were nice warm pieces of bread. The pasta was delicious. I mentioned I was not a fan of pizza or wings but I was coerced in to trying both a pepperoni pizza slice and a couple of Giovanni wings. Both were really good, the pizza was a thin crisp in spots crust. The wings had none of the heat I normally associate with wings. I had to take some of the pasta and bread home with me. After dinner there was warm Zepellies and the birthday girl got this huge ice cream/brownie/whipped cream thing which her husband and I finished most of. If you followed along, you will note I ate a lot of different stuff and I paid for it for several hours afterward. + +For a large party we got quite good service except for my salad arriving late. I just had the one beer (25oz) but most of the women were there to get their drink on and amongst them had several different mixed drinks and with one exception (weak) all were done well. + +This is a big sprawling place with 2 bars and more TVs than I have seen outside of Vegas. The original space which is sort of set off from the rest of the area has pool tables and darts. There is a good sized outdoor area too.",review,Ps1Db9zOatoF_76FZNO5CQ,13,15,9 +D1T1jtCfTfXD-cQE3QViow,2011-01-30,KCjOl9-bNskd_XkSPj7qJw,3,"Had breakfast at Joe's Diner this morning. I had the number 2, and a side of potatoes. It was supposed to come with 2 bacon and 2 sausage, but for some reason, mine came with four pieces of bacon. I didn't question it because the waitress seemed a little absent minded and we had to ask for a side that she had already forgotten. The few times she came to check on us, she would ask if everything was ok and would walk away so fast that we couldn't tell her what we needed. The positive here is that the pancakes were REALLY tasty. I would have given Joe's 4 stars if the service was better, but I think there could be some improvement there.",review,H4JbSzSC3dZXF_9D9dAzqg,1,1,0 +uZ25ne-OUBwzjSkWPFRbUQ,2010-05-08,KcPdh8Kyz4MiyxjGcR_Zlg,5,"This was such a good experience +I was up all night with a extremely severe painful tooth ache +I don't have health insurance so I didn't think I could afford a dentist +Friends and Family told me to look up a dental school and thats how I found A.T. Still +I called and they said they accept five Emergency patients a day at 1:pm +It was 11am but I didn't care I drove straight there and I was the first patient seen at 1p.m. +it cost $15 to be seen, $15 for the X-Rays, and turns out my wisdom tooth was infected and had a cavity + +so they sent me up to oral surgery, it cost me $85 to get the tooth extracted +i was nervous and they talked me through it and calmed my fears +It didn't hurt at all, I was numbed up and the student did a good job + +they gave me a three prescriptions to take with me and I have to return next week for follow - up +the follow up appointment is FREE! + +totally recommend this place to any and everyone!",review,IwxFKXDokKZdiD5iUdJPgQ,2,5,0 +1Ap6ZNCvyLLKHP0wvCk9yA,2010-10-17,O_IX2aZrHvT6i8n1OxyjKw,2,"Well laid out zoo.Space good for animals...More for kids than adults. Zoo had limited number of animals...who were bored,listless,hiding mostly. Water ponds for animals were stagnant with algae! All in all Not a great experience. They are going to expand it seems...but they should pay more attention to the animals they have . Celtcharm",review,kJ58pJCnNChRCyIuutwK0g,0,2,2 +mWjlJ0Mvde4nBvM9nXlU-w,2011-07-07,71pd7mRxVuAalunKrspG4g,5,"Is there a way I can give LUSH an extra star??? + +Pros: Friendly & enthusiastic staff, incredible products, lots of samples, phenomenal smells, reasonable prices, and get this, an HONEST company!!! Read their bag, it'll make you love them more. + +Cons: if you're sensitive to smells, brace yourself. Also, if you're the type that wants to be left alone while you shop, beware. The staff is excited about their products. + +Don't miss: R&B hair moisturizer (it drives men crazy!), Coalface facial cleanser & Brazen Honey exfoliating mask.",review,66PQJEHC0tCWGMI4V9KT-Q,0,0,1 +wNsmt1hF1uv3YvbwXZMAoQ,2011-12-31,HLnH651YCnIy-shO48v-5Q,4,"We live in the neighborhood so were excited to see a new place with a huge range of beers open up. + +The decorations are a bit sparse, but we like to sit on the patio or the conversation areas near the bar, which are perfect this time of year. Yucca chips are personal favorites, as is the gnocchi bolognese. Burger wasn't bad, but a burger is just a burger. They're still adjusting their menu it seems, which I expect any place to do for the first few weeks as they settle in. + +I really love their commitment to craft beer, especially Arizona beers. $5 pitchers of AZ beer before 5:00 is not only quite a tasty offering, but appeals to my love of all things local. + +Give OHSO a try!",review,Znu5KKqytHfmjbXfQo3f4Q,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2012-07-28,0_7Xo8OM0fxB6Qlp-qUNAg,5,"this place is so darn cute! You might miss it if you are driving too fast. The food is like nothing I have ever experienced. I had the pot pie, mmmm was that tasty. All of the chicken and veggies are wrapped up in a pie type crust with the gravy on the side for dipping. I have never enjoyed a pot pie as much as this one. The only thing that was slightly off, was the lighting is very dark and the portions are small. With that said, the portions being small left us room for dessert. The dessert was out of this world! You cannot go wrong with any of their items on the menu! I will be back for lunch for sure, and will bring visitors to this location too!",review,qsRNxnsTbVL1ea83m-jY4Q,0,0,0 +bts6jVczHJuWzpT8Y26UsQ,2009-05-07,CUp2wLgXsP0o2PsErmF3Tg,2,"No, I don't want to take the bus to get to the train. + +In my opinion, they didn't go far enough for people who live in Phoenix. It may be a good solution for Tempe and Mesa residents commuting to Phoenix, but it isn't effective for Phoenicians who want to get from the north valley into CenPho.",review,AnH84g9V10x41CXmCvcaFg,7,10,6 +52QtjHlHoa7V611bOvv1aw,2010-09-16,1yqOc7IaG9wHD4-BWdbBrw,4,"Love sitting at the sushi bar, the chef's are always super friendly and really fun to watch. The urchin with the quail egg is a MUST for all you sushi lovers.",review,Zcx66YAlgyClDEhi5W86Hg,1,0,0 +RtwOc-n_RkiUuDGaNfCsNw,2012-07-25,i1SiwDWKGNvo7hNes8W4FA,4,"I am not happy with the co worker who introduced me to Forefathers. Do I really need another way to feed my addiction to cheesy, beefy goodness? + +Of course I do! + +This small restaurant in a Tempe strip mall has earned a special place in my heart. No, not just because of the artery-strengthening cheese. It is home to the best cheesesteak I have experienced since moving to AZ. + +While the menu offers a variety of choices other than cheesesteak sandwiches (chicken and even *gasp!* salads), I stick with what I know and love: + +Regular with Cheez Wiz ($7.35) - bring your appetite, because this sandwich is big! A generous portion of thinly sliced meat and that oh so important Cheez Wiz is nestled within a soft bun. It is gooey, drippy and messy. Perfect. If Wiz is not for you, it is also offered with white American cheese, Provolone or Mozzarella. While I prefer mine with just the basic meat and cheese, you healthy types can also get any combination of 'OMG' - onions, mushrooms and green peppers. + +Fries are a very nice compliment to the sandwich. Let's be honest here, fries are a very nice compliment to nearly anything. Forefathers' fries ($2.55) are hot, salty and crisp. If you haven't gotten your fill of Wiz on your sandwich, you can turn those fries into Cheese Fries ($2.95). Either way, be sure to grab a container of 'fry sauce' (I am guessing this is some blend of ketchup and mayo). One taste and you will want to put this on everything. + +Lucky for me and my cholesterol level, this gem is nowhere near where I live.",review,n9Zg0jlOGtxfIrvoPm6Hhw,7,8,7 +vN4mFODLd-gLmDg261wsyw,2010-05-03,IktgaHr6D1QppoYCvnxQtw,4,"Some of the food here is fantastic such as the Chicken Corfu $14.95 and others like the Gyro I found to be less than good becasue the meat was very dry some parts burnt with the obviously strong taste of fish. I sent it back and they took it off our bill. The remainder of the meal which consisted of the Corfu, salads and soup was great and our waitress; the owners daughter promised to address the Gyro with the kitchen. This restaurant is located at the park in Fountain Hills with unobstructed views of the lake and fountain which erupts every hour spraying water more than 500 feet in the air. We took a nice walk in the park after dinner which was very relaxing. Recommended",review,QnMPMD8Nh3ErZGfMRGAeYg,0,0,0 +h1kwVr1eTpBK0rWfcm5QSg,2012-02-11,Y5FYhKI8lbzZzMlCR52x0w,1,"2nd time messing up our carry out order. Boneless wings have bones and no carrots or celery again!! Hamburger with only tomato, cheese, and BBQ sauce had onions and lettuce, when we specifically said no lettuce or onion. Allergic to onions and don't like shredded lettuce. Thanks to Tiler for messing up our order again. Will not be back.",review,B3uJfHeRainL3piiAFjKtw,0,1,1 +I7cItiwL8NOPM45ipSf1QA,2012-02-24,8f1qXD2WIWL4c8l9y_U9dg,2,"Ok here is the deal, I am sad to only give ground control 2 stars because it should be way better. This is in walking distance to my house and I come here almost every day. I have coffee, muffins, salads,and so on. +The coffee is usually good, the muffin was great, the salad was so so bad, and the service is kinda strange. + Its a small area you would expect this place to be really friendly and helpful, not the case. They usually are busy talking to the other workers or have some small project going on, never are they happy you are there its almost like they are bothered by you. the salad i had there was really bad, the lettuce was wilted and slathered in dressing, I sent it back and it looks like the ""chef"" just put it on a new plate with a little fresher lettuce and a lot more dressing. wasted my $7.00 bucks. Please Please Please Ground Control get your act together so I can give you more stars.",review,CyRKjjsDl6a56vyr7lS1YQ,0,1,0 +0K35eGvzVRZEirNo5v_WfA,2006-11-27,RT74DgUWJsbTy7m7wZZ4cg,3,"Not a bad place.... It is defiantly more tex-mex than authentic... but they have Mexican beer, margaritas and is in a good location.",review,llkm_iXQszkN5DZvmqjNqA,1,0,0 +o571CmC40T0zUzl7FXzqXw,2011-06-12,v7W5JhSOXylxC6ue1cyXoA,4,"Jan Ross has one of the best selections of crystals I've seen - they literally had every crystal I was looking for, and I subsequently left as a satisfied customer. Friendly staff too.",review,I2CFVHx8YM3K0OKIs6vPXg,1,1,0 +jFoLuxZFScgt5ZXNPTIOhg,2010-01-05,lwccamxKvhNo2M3IurBFXw,5,"I absolutely love the food here! The sushi and Walnut Shrimp are cravings that I must give in to. This is a nice, small restaurant that is exceptionally clean and comfortable. Good for a casual date, lunch any day (their specials are a great deal), and the owner managers are on site most hours they are open. +You have to try the Walnut Shrimp!",review,AitJM3uwO_dgOMhup0HAHQ,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2009-12-11,lz_z74dUlIYPBbDXoMsGdQ,3,"Finding this quaint location wasn't to hard... i like that there is a parking lot right north of the place... as well as street parking :) + +you walk in the place and wow... its a completely different atmosphere... low lighting but in a calming way rather than creepy... + +they have a DJ.. the music makes the setting but to be honest it was a little odd for my taste,,, + +Our waitress was very nice and helpful... automatically served us cucumber water... (which tastes amazing!!) and then asked for our drink orders ... a good waitress can seriously turn everything upside down or completely make your visit ya know... its a pet peeve of mine.. customer service... + +every table had a pink candle lit... pink lights hung above the chefs area... it was just so relaxing! the mirrors on the wall around this cool looking splatter painting... i was diggin it... + +everything on their menu is served as appetizers... which kinda sucks.. they are all at least 6-12 bucks at least ... from what i saw.. and the waitress said that they recommend for people to get at least 2-3 a piece.... wow, on top of drinks.. its kinda pricey to me.. good thing we shared everything... + +the lemongrass chicken (cant remember the full title) was amazing!! so good... the gyozo (dumplings) were alright.. a little too minty for my taste... we had this other thing where they bring you the hot stone and you cook your own meat... it was alright but the stone only stayed hot enough to cook the meat med rare... i don't like my meat to moo at me... so its was alright... but i prefer it well done... + +the beef wrapped in grape leaves.. well i was soo excited to try them.. but was sadly disappointed... they were so fiery hot (spicy) that i almost had tears in my eyes... never did it say on the menu .. SPICY... after a server came over and saw us gasping for water.. he filled us up and said, oh yea those are pretty spicy... wow good thing i had my TUMS lol + +over all +The atmosphere was amazing..... +the staff was fabulous... +the food... eh... +the menu is crap... if your gonna serve spicy food you should say its spicy! isn't that some sort of health hazard?! +and its kinda on the pricey side... + +i think i would go back again... But i don't think i would opt to... +there are alot more dishes i would like to try... maybe a different location would be better?",review,uTc1puvwUpFYryEHo4DNaA,4,5,2 +muCl5p-9ut1sY0aKeUeRhw,2010-06-25,LHFxXA9pr0KU2FlhmNCgMA,4,"One of my favorite aspects of this Central Phoenix wine bar is that it is still somewhat ""undiscovered,"" aka not teeming with hipsters and young professionals on a Thursday evening after work. It stays busy, but not jam packed. + +Their Happy Hour is great, nice $5 small plate options, and you must try their cherry lemon drop martini. Seriously delicious. Get a ride from someone, because you'll probably want another :) + +The decor is cool and they play French movies on a large screen in the back of the restaurant. I also have a special place in my heart for their awesome sweet potato fries! This place is a great option if you want a nice glass of wine and a bite to eat in Central Phoenix but don't want to brave the Postino crowds.",review,YiuCu8bWN3moIhhhfvp0CA,0,5,0 +c1yGkETheht_1vjda7G5sA,2012-01-09,AVqE_IW94Pqxzvw7U3MLTA,5,"Even for meat eaters, Green has a lot to love. A lot more than just tofu! I go here at least a couple times a month for lunch and it's spectacular 95% of the time. A few of our favorite items are the BBQ ""Chicken"" sandwich, Thee Argentine sandwich, the crab puffs and of course, the Tsoynamis. Everything is fairly priced ($8 for a sandwich, $7.50 for a bowl w/ your choice or rice or noodles). The only thing I don't particularly care for is the buffalo wings as I think they are far too salty. The ranch that it comes with is fantastic, though. Also, if you get something with cheese make sure to use Daiya instead of Teese. Daiya tastes much better, in my opinion. + +The atmosphere is very artsy. There are always paintings for sale and there are a bunch of old car doors and hub caps over to one side. They just got a few booths which is fantastic if you want a little privacy. There is free wifi, a booshelf will all sorts of great reading, and the staff is always super friendly. + +Another great thing about Green is the vegan market. They have all sorts of great vegan foods and books for you to spoil yourself with. It's the only place I know of where you can find Teese, Food for Lovers Queso and Soy Curls. As an aside, I highly recommend Soy Curls as a healthy replacement to the meat in your fajitas or cheesesteaks. + +Another thing you absolutely must check out is their annual ThanksLIVING festival on Thanksgiving. They will load you up will all sorts of delicious and traditional Thankgsiving day food, veganized. ""Turkey"", stuffing, biscuits, brussels sprouts, asparagus, cranberry sauce, gravy, corn, pie and a drink. You'll get guest speakers, live music and local arts and crafts. Highly recommend.",review,Wn47EMhtvJQZTsfvvcnkJg,1,3,1 +F8q_9PUl-Lwjj9xIRPArcg,2012-07-11,Q3Tf6LY6AIIFBx8hF8a2bQ,5,Burger was delicious and fresh. Fries were well seasoned and crispy. Huge selection of bottled sodas from across the nation. Fun and good! Definitely coming back.,review,fiElz5yl1mSkse--Jhameg,2,2,0 +nRO4tRwimU12hg7Cnz__iA,2011-09-24,PfJfj5sN1iNIQfoYKCiwLQ,5,"Neighbors had told me how great this place is and after reading the positive YELP reviews, I decided to have dinner here with my family! + +Friendly greeting and service from the moment we walked in the door! Fast service and great food too! + +HUGE portions!! I recommend splitting entree's. We ordered 2 entree's between 3 people and had 2 boxes of leftovers we took home! I split the lamb kabobs and the meat was tender and juicy. Hubby had the Gyro's and loved them! (Gyro's were probably enough food for 3 people!!). + +Moderate prices. Averaging about $15 bucks a plate, but the dinner plates come with the amazing Basmati rice with white currants, almonds and maybe a touch of cinnamon? + +I was told they had the best cannoli's in town.....so I had to save room for one!!...and they were pretty darn good!! + +To sum it up...... FAST~FRIENDLY~FRESH FOOD!!! + +Yummy!!",review,t5oluA_-GZ6ykAjbSSngOA,0,0,0 +f9eFteZuBoZqzYg5UUrufw,2011-07-27,A0lkdYsXJzORMq7343JsOg,5,"I just went here for the first time with my boyfriend this afternoon. I got a Green Apple Snow and he got a Mocha... Blast? or something like that. We both loved them. While the drink was amazing, what was even better was the quality of their boba, they weren't too hard or squishy and they had the perfect taste. + +The shop was really clean and nice and cool. I also noticed they had battleship and I think checkers and some other board games out for customers to play with. They also had a computer monitor I am guessing for games. I didn't go to look at it. I think there was music on but I can't remember. + +The service was really fast, but then we were the only ones there. You can't use a debit/credit card for an order under $10 so we ordered an extra drink for our friend we were going to visit. We asked if she could make it when we were ready to leave and she was really nice about it. + +I can't say one bad thing about it. If I find something else on another visit I will update. As of now this is going to be my number one place to get boba.",review,E9rN5N6_39vyBVmqwZDqGw,0,0,0 +7Zo1DzdwZlGMxPu1AFMSsw,2012-05-21,V9zhvEIYlqN-Bo3b-_7MkQ,2,"I wasn't really very impressed. Bajio isn't *bad* by any stretch, but it's certainly nothing to really rave about. + +The prices were a little steep for what you get and everything (keep in mind, this is mexican food) was oddly sweet for some reason...and that struck me oddly. + +Burritos and such, served in a very Chipotle-esque fashion, but for a few bucks more than Chipotle. + +I don't believe I'll be returning. Not because it was a negative experience, just exceptionally ""meh"".",review,yJ22u_1l01H4NM3wCowIKw,0,1,0 +IQaND6HcN6NdtQ8QysO3Fg,2011-09-30,XhxwntBQgWJGuPJCuQo8Sw,4,"The food is always awesome. Best in the area. + +The people behind the counter need to pull their heads out of their asses. Don't be rude to me if I ask for an extra bag to carry my food. I'd be happy to let the food drop to the floor for you to clean up.",review,D-oZAfAXFBDfq_Px-IBquA,0,2,3 +lKQ5hnkSQ-XP80jNCH46nQ,2012-10-07,WNHkeNwcHjSYFTKeB2pN3w,4,"Ohhhh, I like, I like! + +First of all, if you haven't seen Distrito, scope the photos on the website. High-five to the interior designer. From the gold glittery tables to the gumball wall, this place screams fun, energy, and overall a kick-ass atmosphere. + +I stayed at the Saguaro for five nights, so I had plenty of time to get my dinner (and breakfast!) on at Distrito. Actually, for dinner, I had room service but Distrito is where it came from. I was absolutely starving after a long plane ride, so I ordered the chicken tacos, guac, and a plantain appetizer, and it only took about 20 minutes to show up. Win. + +The chicken tacos were really, really good. Little corn tortillas, marinated chicken, slaw, radish, and a perfectly-sized slice of avocado. There were three of them and I could only eat two, but they were so well made. The plantain dish was also impressive, and had some black bean puree underneath that balanced out the sweetness of the plantains. The star of the show, however, was the guacamole. Tons of lime, zing, and flavor. I ate almost all of it and it was definitely worth it. Usually when I have guacamole it's just so-so and I have to add some spice, but this showed up completely perfect. + +When I had breakfast, things were also on point. They made me an egg white omelet with tons of vegetables inside, and my co-workers seemed to love other menu items like the pancakes and french toast, as well. If I lived in Scottsdale I'd definitely visit this place a time or two more. Consider me a fan!",review,NduGDKc6hLcb1S6OtW62XQ,3,4,1 +VSPuvNSDUvlTl670lVAkkw,2012-10-14,kiPtaJk2Hfz3L24rGVN9Mg,5,Recently moved from the East Coast. So glad Yelp introduced us to Il Bosco. I highly recommend the Biaggia pizza. It's amazing. Great food and great hospitality from this small little spot.,review,qstP_Lt7cnMLYUsHc1jkSw,0,0,0 +oxsCvEkQNNIbOPDt_QK_0A,2011-05-07,YAb7SNnJTEx5QUG1w7SWcw,4,"Had to go into Scottsdale yet again, this time to the quaint Scottsdale Mall. Well went there for a reason, after seeing Jewel of the Crown on PBS ""Check Please"", I was hungry for some Indian food. + +Monday night: not busy a couple people eating out on the patio, and a large Indian family eating there, seems like they were talking about the recent demise of Bin Laden and they had their children there eating and studying, so I imagine it was all owners family. But they weren't annoying and well behaved. + +Greeted immediately, felt welcomed and liked the look of the decor with a kind of strange old time piano music in the background, they served us some crispy, spicy rice (?) cracker with two sauces. I really liked the taste of those. + +Ordered the Chicken Tikka Masala (medium heat) and we also ordered, oh what is it called, chicken something with spinach, and garlic Nan bread. + +Chicken tikka masala was very nice, it came in a kind of pot that was still bubbling. I like that, the only thing was I would have preferred more spice, so next time will go with hot and not medium. The other dish was decent but could have used a bit more kick, but that was ordered mild so that was our error. + +Great iced tea, very refreshing and they kept it filled without asking. +I wish I lived in this area, all the cool restaurants are in SCOTTSDALE!! Son of a mother, why is that the way it is? Not fair. + +Anyways, enough about me, I would definitely go back, heck I would even go out of my way from Glendale to drive over and give it another try, it was definitely above average. The food was hot and fresh, with nice ambiance and service.",review,78Ed1ndOak2kmzljulPfBg,11,14,6 +Pj22z5yPSozm_8G1OuzDwg,2009-01-29,j7M2xtDaocrxyBTA0Z9VAQ,4,"I wandered into this store while wandering down Mill on a Saturday afternoon and what a pleasant surprise it was. Their design fit perfectly with my tastes and I wish I had the extra cash to redesign my house with their products. + +The salespeople were friendly and helpful, but not pushy. Great experience!",review,w1LjSa5wMexRIQ-82LKWmQ,2,2,0 +1eJiyKXx_ruNu6F36BJQCg,2012-09-16,eRqNvi2SVEoBCowa0JxN-A,4,I love fro yo!! This place is near the light rail when you get off on mil. The have lots of favors and a great topping bar. Yummy fruit toppings including mochi and those boba balls that squirt out juice lol. I will be back a little pricer than the normal fro yo shop but also a great spot on a hot day and near asu :) I also liked how you could make smoothies with the fro yo and fruit :),review,iPhoJlwisUKGGrA0QNmYMw,1,0,0 +pwfyeFSeM2y0JjWL8k9VNA,2011-11-24,Ul_CB4qgDSkdOqL4tJ47yw,5,"If you are looking for a place where the service matches the food, look no further. This family style Americanized-Italian restaurant was beyond comparison. The staff is very friendly and if you have children, they will well entertained while stuffing their faces with amazing food. From the freshly baked bread to the main coarse, every bite was like a new adventure for my taste buds. They have a wide variety of food but I highly recommend the pasta dishes. Your mouth will thank you the moment you take your first bite.",review,PjKa_cQfBA6CNiNTNJX_jQ,0,0,0 +UDmbxiR9n1FKhHevNdOqCQ,2009-03-16,VJDqveoSVmz_qmVEJ4Qbhw,2,"I went to this place once and the owner tried to sell me a large box, for shipping a guitar, for 30 dollars! My Wife has been in there before, and the Dude is really surly, terse & laconic. He has hired some youngsters who seem friendly and helpful- Had to pick up a fax from an insurance agent there recently- But, I wouldn't go out of my way to do any business there!",review,iBO2m9xXivsIbvFnZHsNvg,1,3,1 +OEWW22gUG_JADQ3h4ajXtg,2012-12-20,IlMOhzkvFknEhuFwhgdPqg,5,"So, after finding out I didn't have to be a juror today, I decided to go to Treehouse to celebrate! I got 12 different cupcakes (intending to share with my husband and friends at work of course!) and wasn't disappointed. I love the caramel chocolate and peanut butter chocolate ones best! The only ingredient I hope Treehouse considers adding is avocado, since it makes vegan cupcakes decadently rich! One of the sister's who co-owns and is a co-baker was a doll. We both are hoping Phoenix continues to build up a variety of veggie- conscientious, healthy/delicious places to frequent.",review,CtdGwLKodWXumk3ToyPckw,0,0,0 +PjBeWzCOCveiPuF-xqUaoQ,2012-04-07,oi8YMJNkAFvMyIRhuy7qeg,2,For my hubby and I on a Saturday night Grimaldi's turned out to be pretty lame. The restaurant is decorated well and the hostess was friendly enough but the actual pizza was SOOOOO BORING. I seriously took a bite and wondered if I had missed the slice altogether. I will say I tasted a lot of garlic but that doesn't count for much when the pepporoni is bland and the sauce is useless. Now I'm a deep-dish girl at heart but I've had AMAZING thin slice at Classic Italian Pizza in Tempe. This place made me feel like I wasted my money and I woudn't ever want to bring anyone here including myself again!,review,gsyguOgT2Dnjw-OYw14XDw,1,3,1 +q9WaFYhlOZCrfXJQTG5t_Q,2011-12-05,CKjA3lHFNGXX7v5tgPi7pA,4,"Went to the Living Room over the weekend with some girlfriends. Having never been there before I didn't know what to expect. The place is super adorable, great decor. The bar set-up is very weird though. It's like, half bar then turns into half table. I had to wait for my friends to show up and we were on the list, and I had a hard time finding a decent place to just stand. The place was packed, and it was 8pm on a Saturday night, with a torrential downpour going on outside. I thought it would be quiet wtih the craptastic weather, but it definitely was busy. + +It's loud. Not only from people talking/yelling but the music. I was screaming at my friends at our table. For being a wine bar, I thought the wine menu was on the small side. A good selection, but I thought I'd see more. + +The crowd is definitely distinct. You have to really like it to tolerate the place. For me, I really liked it. It's livly, lots of young 30-somethings (although we ran into our old, formerly hot, teachers from high school which was weird), lots of good looking people, yet it didn't feel pretentious to me at all. I just moved here from a big city and I felt like I was back home. Which is a good thing. + +Food was average. I'd try something else next time I go back. This time I had the chicken pesto sandwich with a side salad. The sandwich was very good but the dressing that came with my salad was SUPER SALTY!! Gross! I just passed on it and ate the rest. + +I also like the fact that they do board games here. And the patio is probably amazing when the weather cooperates.",review,LY9Q6sc4DtZ9ENNBv691rg,1,1,1 +fP_kRceHkKxPqgf0o1RfUQ,2012-09-25,AhV_p-9pCyMgJr8axjgrkg,1,"I called The Town Dump to ask if I could come in this week and interview them for an English paper about a small local business, and the owner was just incredibly rude. She didn't even let me finish telling her it would take five minutes of her time, preferring to interject and tell me to go somewhere else. When I explained that I've heard wonderful things about their business from friends, and that that sparked my interest, she said, ""Well, go somewhere else."" +I've never even been inside, and I sure as hell won't go now. Maybe it's just me, but I don't like shopkeepers who snarl at their customers.",review,XhW59Y52sNXPHtFYQ0i3zw,0,0,0 +k8JnZBspVOI8kLcQek-Chw,2011-01-02,riSK3YU9hXm80tyFF-RnSg,5,"I've eatin' a lot of pizza and can say without worries that Mama Mia's is the Best I've had -- Consistency, value and great service sets them apart -- They also have the best take out wings in town!!!!",review,yY0tg2qd7Xfc83PmuPmZNQ,0,1,0 +JxVGJ9Nly2FFIs_WpJvkug,2009-04-12,dvN6k2OLu2H-ULd9Udc_AA,4,"I was pleasantly surprised by Sauce. We went here for dinner last night, and wanted something quick, tasty and casual. Done. I think of it as a cross between a fast food place and a pizzeria. + +I had the Pepperoni and Crimini Mushroom pizza, and it was great. The crust is amazingly thin yet perfect for the pie. The center where the toppings are is a nice and soft but the edges are super crispy with a chip-like ""crunch"". The sauce and toppings were noticeably fresh and perfectly proportioned on the pizza. + +M had the Turkey salad, and she too was very pleased. I can describe hers much - as we both stuck to our plates! + +The waitstaff was very pleasant and everything came out well; however nothing really blew me away to earn that 5th star.",review,yGs16xQiN3dLo03OQyto8A,1,1,1 +IoKd6IJaSZnR8KZTuHw-yA,2007-02-13,SPL3w35BY2PlKN4mJszwjA,3,"The pizza's OK, not anything to write home about. I sat on the outdoor patio, which is on the main street, so while entertaining to watch all the people go by (and there's a wide variety), if you're table's right along the outside edge of the patio (which I wasn't), you may end up interacting with the transients coming by. So, I got to observe everyone going by without having to interact with them, which was just fine by me, because I do like to people watch.",review,MMCiQSRLdhyUzkHyksST_w,1,0,0 +GAPqG0WNBBidKeZTMpEZ-w,2010-04-11,chKVI0nbp7jff0OtK2JNNw,4,"What a beautiful brunch oasis in downtown Phoenix. Sitting outside on an April afternoon, listening to jazz and feeling the cool breeze (thanks to the misters), I felt like I was in the Mediterranean by the sea. Or something like that. Anyway, I really dug the atmosphere, and the food was delicious. The Vegetarian Omelet was yummy, bursting with veggies, and the olives gave it a great flavor. The potatoes were perfectly cooked and seasoned, and the whole wheat bread was thick and perfectly toasted. I also had a few bites of the Banana Fosters French Toast, which is waaaaay too sweet, in my opinion, to be considered breakfast food but was a great finish to my meal. The coffee is good enough to drink black.",review,SHlkGMta-B3lXzlQBtrUvg,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2011-10-13,Q1lF4SbvT5E2tQYEdmB_zA,3,"I'm always on the lookout for cool places to bring out of town friends and this place seemed to fit the bill. It's a sustainable farm that produces Arizona's only extra virgin olive oil. I came in for lunch and as I pulled into the GRAVEL parking lot my stomach turned because I had expensive heels on and knew they were going to take a beating (I know, ""waaah"" right? But there are women out there that love their shoes as much as I do and will appreciate the heads-up). Once I entered the Olive Mill I was delighted to see how adorably quaint it was inside. The building was split in two, market on one side, bistro on the other with seating in between both and also outside. The market had testers of all their products, great idea but the food testers didn't seem sanitary so I didn't try anything. I ended up buying some awesome hand balm that I love. They had a really great wine selection as well. + +Alright so here's the bad part. The entire time I was there, not one employee greeted me or cracked a smile. There was one guy in particular that was going back and forth stocking shelves and was visibly annoyed by my presence. When I went to order my sandwich, I remembered I got a free drink with my Yelp check-in. The girl at the counter sighed and rolled her eyes as I scrambled through my purse to find my iphone and she said ""forget it, I got it."" Their sandwich the ""Kalamata"" had its 15 seconds of fame on the food network so I was going to get that but opted for the ""Lucca"" at the last second because it has brie...I love brie more than I love most family members. The sandwich was a disappointment. All the ingredients were there but it was devoid of any flavor and I couldn't figure out why. + +I probably won't be bringing any of my homies here but I will drop by to buy products, I fully support local businesses.",review,wFweIWhv2fREZV_dYkz_1g,4,4,4 +ntN85eu27C04nwyPa8IHtw,2008-07-05,5PhUKXXwg5n2u2uf6oxfVQ,5,"Matt's Big Breakfast is a wonderful place in the morning to feel the life of downtown Phoenix. I have eaten there 5 times in the last year and each meal was worth the 10 to 20 minute wait out side on the sidewalk. + +At 9:30 a.m. on Wednesday, July 3, my wife Marie and I ventured downtown and decided to have breakfast out. Matt's was on our mind. We waited outside only 5 minutes before getting a table by the window next to the kitchen entry. Busy place, but the service was great. Quick with the coffee for Marie and ice tea for me. Marie ordered an omelet with cheese and mushrooms, while I decided on the special, eggs benedict. We both had the home fries. + +When everything arrived, the meal was very yummy. Marie, in her delicate way, snarfed down her omelet with a smile. My eggs benedict was on a fresh English muffin, topped with ham, poached eggs, and a yummy hollandaise sauce. Calories be damned! + +The whole meal cost $22.53 + 4.00 tip. + +Yes the place is small and you'll most likely have a short wait for a table, but get over that, because the experience of eating good food prepared by great people is worth your time.",review,Oq3jMOJPcKcxde2cAqjxiw,3,3,0 +corPOxxIBRJ7DSpryYvorw,2012-04-21,QpW3qQCC7KpPfJSiRImQtw,4,"It should be no surprise that the ambience and service at this restaurant located inside a 5 star resort is impeccable. What is heartening though is that the food is good as well. What was even better of course was that i wasnt paying for it:) (business dinner) +We had crab cakes and pork ribs for appetisers which was delicious. For the main course i had the Ahi with the mustard sauce that was so flavorful. My colleagues had the shrimp and butterfish and they liked their dishes as well. For dessert we had the upside down pineapple cake. +I really enjoyed my experience here and would recoomend it to those who love seafood and want an evening of fine dining.",review,Neal_1EVupQKZKv3NsC2DA,0,1,0 +kiB6ByG9PYQLHmGpg5SGZw,2010-02-09,_z_q3u_wlVI_owa1VykUlQ,5,"The message I received was drip is toast. I don't drink coffee... a terrible character fault, I know... but Gina and her partner are wonderful hosts and have made a cozy little space to serve delicious food and drinks (I get the chai tea with soy milk.) I like that computers are no where to be seen, only happy people eating and drinking and enjoying conversation. This is a lovely little place, a gem. I enjoy every visit. It is especially nice to bring new people in that haven't been before (so invite a friend to brunch because it is a nice surprise.) The service is great, the food is made fresh, and everything I've tried is delicious, even my five year old loved her nutella on toast. Good things come in small packages and toast illustrates this perfectly.",review,asoOzbwJYsyzOgqCNf4sAQ,1,3,0 +yJr24Yy1K6bt2G9fX3_zPA,2007-08-15,It6PUT2Ng2lyrnZMvA6fLw,4,"A little pricey for my liking, but good nonetheless. I really like the feel of the restaurant: part Cuban, part Puerto Rican, part Spanish, all classy. A guitar player jammed away in a completely non-annoying way while we ate our meal and, to me, that is an accomplishment. + +Our Calypso Chips were outstanding. To die for. One of the best appetizers I can think of at the moment. For my entree, I ordered the Ropa Vieja which was made up of the most perfectly tender beef and tasty rice with beans. A little heavy with the peppers, however. + +Does anybody else think plantains smell like feet? My date pointed this out and, although I was surprised, I'm inclined to agree. That won't stop me from putting some into my stomach as soon as humanly possible.",review,kDJ9PRlYugp5RIa9ontPZg,1,1,0 +VVeogjZya58oiTxK7qUjAQ,2011-01-12,dcBve5auPfvSQwlcSo3M4A,3,"After living 2 blocks away for over a year, i finally took the jump and decided to deal with the long wait to try this place out. Got there at 7:30 on a Tuesday night... 2.5 hour wait. (To be expected, but still pretty ridiculous.) + +Went next door to Bar Bianco, ordered a bottle of wine and patiently waited outside. I think that the wait is part of the allure for people. Also, after waiting hungry for 3 hours, the food becomes tastier because you are starving. + +Finally get a table at 10:15. Order the caprese salad and another bottle of wine. The ingredients are very fresh. The Mozz is excellent, the tomatoes are very very fresh and tasty and the basil was great as well. + +The server didnt make any recommendations on wine or food. A bit odd. Given that the wait is 3 hours and that it's pricy for a pizza joint, you'd think that the service would be excellent. Not at all the case. This guy acts like everyone here is a regular. The reality is that with 3 hour waits for a table, i don't have time to be a regular at this place. + +We ordered 2 pizzas to try.... Biancoverde and Wiseguy. They were pretty good, again with good ingredients. I wouldn't say it was the best pizza i've ever had, but very tasty. Asked for some Balsamic to go with the Mozz and Tomatoes... had to ask the server 2 times, finally we snagged a food runner, she got it for us. I shouldnt have to ask for something 3 times. I mean really, this place only has like 6 tables... pay attention to the guests. + +I guess the moral here is that trying this place is all about the experience and saying that you've been there. While Bianco is good you can go to Parlor or Cibo and get very good (comparable) pizza without a 3 hour wait. + +Is it good, yes. +Is it worth the wait, nope.",review,Q43j4rd_K0YEjGAb7qB8MA,1,7,0 +MAfc2V_EVtyR9rMxxEAPLg,2010-11-26,3fYzo1Pfm73tR5mg3Mm3yg,5,"I recently tried vietnamese food, maybe 3 years ago. I especially like the pho soup and spring rolls. Since then, I have been trying every place I can that serves pho. Out of every place that I have been so far, this place is always the one I come back to. It's a little hole in the wall type place. The kind you would drive by and never even notice if you weren't looking for it. The pho has some of the best tasting broth and is a good portion. It's about average price if not closer to the cheapest I have found. It comes with a good sized plate of sprouts, basil, mint, lime, and jalapeno. The spring rolls that I get have pork and shrimp in them and are a pretty good size. The peanut sauce that comes with them for dipping tastes almost like fresh made peanut butter and has fresh ground pieces of peanut in it. The service is fairly quick and very friendly, even with the fact that there is some language barrier. I was actually taken to this place for the first time by an ex-coworker of mine who is an old vietnamese guy. He told me himself that this is probably the best place he has found to eat pho at, and based on the fact that it is usually packed with asian people during lunch time, I am very inclined to believe him.",review,zmPF5EwnljusywJ5sP3QtQ,0,0,0 +-AAig9FG0s8gYE4f8GfowQ,2012-08-13,dfbCyy0y_jzeWotFcEuEuw,5,"With a few hours past and a few tasks accomplished the next stop of my day would be at Pane Bianco - the sandwich shop from the Valley's most celebrated Chef, Chris Bianco. Having made my pilgrimage to the eponymous pizzeria during my first trip to Phoenix, Pane had been on my radar since the day I moved to town but given the lunch-only hours and my office location in North Scottsdale I knew a weekend would be best and as luck would have it a new website (http://www.pizzeriabianco.com/) and seven day 11a-3p schedule had been rolled out just the week prior. + +Arriving at the surprisingly large space (especially when compared to Matt's and JoBot from earlier that day - and compared to Pizzeria Bianco as well) shortly after 11:30 and allocating parking in the free lot juxtaposing the Light Rail I debated for a moment whether dine-in or to-go was best and opting for the former made my way into the restaurant where two couples already sat. Greeted by one of two servers it was suggested I could take ""any seat I wanted"" and opting for a bench in the center of the room where a menu awaited I sat down to browse the menu as well as the daily specials listed on the chalkboard - almost all sounding appealing, but a bit different than the Saturday special listed on the website. With a small list of beverages available I was asked soon if I was ready to order or if I needed a few minutes I deferred and requested a glass of water that would never reach even half-empty despite me drinking from it consistently and the restaurant soon filling to capacity. + +Having debated the specials but eventually undeterred from the reason I'd come in the first place I soon placed my order for a sandwich and an 'appetizer' which I was told would be 'just a few minutes' and as while I waited I checked out the small market at the Take Away section featuring the famous focaccia, cans of tomatoes, dried pasta, and apparel before returning to my seat where my items would arrive shortly - the first a Manchego and Tomato Sauce Focaccia del Giorno featuring Bianco's delectable wood fired focaccia in all of its spongy glory topped with sweet, ripe tomatoes and an ample layer of briny Manchego; at $4.50 probably the most expensive ""Grandma Slice"" I've ever had yet at the same time also probably the best...or at least on par with that at DiFara in Brooklyn for best of its genre. + +Moving next to the original target of my desire, a sandwich of Bianco's House Made Mozzarella, Tomatoes, and Basil on Wood Fired Focaccia my first thought was ""wow - that is a lot of cheese"" while my second, after a bite, was ""wow - that is a lot of flavor."" Perhaps as pure of a sandwich as you can find and the result of exquisite ingredients on top quality bread there is really nothing 'special' about the composition of this sandwich aside from the fact that it simply works - a largely unmanipulated masterpiece only improved by a touch of sea salt and cracked black pepper. + +Largely unaware on entering that Pane serves dessert it was with much delight that I realized soon after sitting down that three options were available that day and while the flourless chocolate cake I saw emerge from the kitchen to the table next to me looked quite nice there was simply no way I was passing up the Organic Vanilla Bean Rice Pudding with Candied Pecans - another simplistic stunner with creamy Arborio rice imbued with a rich vanilla custard flicked with whole vanilla beans and a few pecans for crunch. Delicate and smooth, flavorful without being overly sweet, and *almost* thick enough to stand a spoon up straight it was not quite the best rice pudding I've ever had - but a top five contender without a shadow of a doubt - a reason in and of itself to return to Pane Bianco...though to be fair, if I returned it would take pretty spectacular daily specials to prevent me from ordering the exact same trio of items once again. With Chris and his team now two for two it is only a matter of time before I make my way to Italian Restaurant... and honestly, that time is likely measured in hours and days as opposed to weeks and months.",review,5lq4LkrviYgQ4LJNsBYHcA,3,6,2 +vTDJ_ZbxUw1MUOPPG9esOw,2008-07-06,q85E2hDVZLUZs4i55fV2xA,3,"The person before me reviewed Phoenix Greyhound Park as a Flea Market. I....will be reviewing the Greyhound Park in Dog Race form. + +We came here during 4th of July night, after many drinks and BBQ-ing and swimming at my relatives home. Prior to leaving to come here, it sounded like a good idea - I was comparing the dog races to the Del Mar horse races in San Diego in my head. + +But, during the drive, I started feeling wary. This is Arizona, and they're racing dogs in 110 degree heat? What is the constant tugging at my heartstrings? This guilt isn't working for me. + +The track is outdoor, while the patrons betting on these beautiful animals sit indoor in stadium seating, behind huge glass windows, watching giddily while drinking beer and eating snack bar-type foods. Admission is free. + +They do keep the dogs indoor before racing them. I decided I'd relent and bet on a race, then immediately felt like an asshole when they brought the dogs around for the camera and I saw them dressed in numbered garb and muzzles. I lost, but I didn't bet for the rest of the races we stayed for, it just didn't feel right. + +Everyone else had a good time, though, especially the winners. + +How can I get so excited about the horse races but not the dog races? I'm a walking contradiction.",review,DqQzkxbhm4rEJpsIT3XxOA,2,4,4 +cp39VURFby4A6u9m2It8jg,2012-03-29,LIiTbdS6A7PL20gJAauamw,5,"I loved this place! A bit pricey, but excellent quality. + +Been here twice and haven't had anything we didn't like. The meat is great quality and they'll cook it how you desire as opposed to places that won't cook something below medium well. + +Great toppings for burgers, fries and shakes. Although everything is so big and filling I certainly can't have all that in one trip! + +Definitely a decadent tasty treat.",review,MBLcbQ_miC1c11cfXQRKoQ,0,1,0 +c1yGkETheht_1vjda7G5sA,2012-07-13,bINGrrPcEk_5HMM1no4dwg,4,"So as our last restaurant in Phoenix, I decided to visit Green, due to its great reviews and popularly. I got the Kung Po with mock beef, which was only $7, which is super cheap and really good. + +The restaurant is hidden in like a little corner, so it's a little hard to find, but the interior is nice and beautiful. As a tip, just remember that you seat yourself and you have to get the menus at the counter. Took us a while to realized that. + +Overall, super cheap, really good and nice place.(:",review,TJ-Y-53ofI02KG4W2fbmkg,0,1,0 +XfgU_1_X8eVX8_CqofAeIQ,2010-05-18,WilRu3WdeeEliLtIVEwRvA,1,"Ok, im not getting the great reviews on this place. I FINALLY made it Lamar's before they closed for the day and tried a couple donuts. I have a few problems here. The big one, can we please list that ""only the donuts with holes"" are $5.49 for 6? Its a bit deceptive to just list the price of 6 and ring up the donuts and have them turn out to be well over $7. Makes me want to buy my donuts from someone else. + Second, these donuts are WAY over priced and they are average at best. The maple bar tastes like you are eating spoon fulls of sugar they are so sweet. And the rest of the donuts I tried were pretty stale. This will be the first and last time I will be going to Lamar's. Give me Krispy Kreme or anyone else for that matter. Thank god for Lamar's we dont have Spudnuts in the valley because they would be out of business.",review,oubVUZ_h4enNSrvWNo6_og,0,1,0 +4K7nR-e9staGTNJk1ez7MA,2012-07-23,c5dKCGUV0T002S03t3cWtQ,5,"I am disabled with MS. The heat of summer about does me in, esp. in the car. Because of this, and because the best thing I've ever done for myself was to buy an electric Hamilton-Beach water kettle, I drink TEA. All day. Loads of it. Teavana is MUCHO EXPENSIVE, though I adore it. I learned of the Tea District through somebody's ad and like them very much as well. But, I had no idea we had a genuine tea company in Phoenix. And because of HomeRun, I was allowed to buy THREE vouchers. And because DragonFly is so awesome, they let me use all three to buy tea online and have it shipped to me all at once to avoid huge s&h fees. It should be here any day, and I can't wait to try their Cab(ernet) against Teavana's Opus Rouge. I love red heavily tart, fruity teas. It doesn't matter to me if there is no white, green, or black tea in it. In fact, I prefer it to just be the fruit. I drink it hot, and then as it cools all day in my tea pot, I keep refilling and either warm each huge travel mug with lid in the microwave, or drink it room temp, or even add some ice if it is particularly strong. I can EASILY drop $150 at Teavana, or $120 at Tea District and just touch on what I most want. With your three vouchers worth $60, I got to try two bags of every flavor I most wanted, except Peach (as they are out of it, but Holly wrote me several times and made recommendations based on what I had in my cart). + +I know I will love it, and go back to order the Peach when it is in stock again. Thank you so much for finding a local treasure and making it accessible. + +Sincerely, + +Judith Ann Hillard +President of Addiction Overcome, Inc., a non-profit foundation +Author of The Other Woman at the Well +www.addictionovercome.com",review,_MLUOGwK-1jgwub4Wzwk_A,0,0,0 +cqIHyZ3Q0D4vBi-vb4mi-g,2008-02-16,KeoQ3YfRQjRxBH0tj0n_yw,5,"Do you like trendy shit-music and half dressed plastic surgery queens gyrating all around you, while you pay twelve dollars for your appletini? If your answer is yes, don't bother coming here. + +Dive bars are plentiful in Phoenix, but the Bikini is in my 'hood. It's a dirty, unassuming place, with a couple of no-nonsense bartenders and a good jukebox. + +There are a couple of rules to follow when visiting the Bikini: + +1. Bring cash. Cards aren't accepted, the atm machine is there for decoration only, as it hasn't worked in at least two years. + +2. Don't make fun of the guy in the overalls and farmer hat. He's my neighbor. + +3. Don't piss off the bartenders. Tip them well, treat them nicely, and don't order more than three dirty martinis. If you are nice to them, they will be nice to you. This includes, but is not limited to: the strength of your drinks, the price of your drinks, and whether or not you get a drink at all. They take no shit. + +If you can't handle it, stay away. The place gets crowded enough as it is.",review,N7lSh49zQ13sG3Jpa9E6cw,2,2,3 +dNyjWz6CnYvrhPnpqNV5NA,2012-01-15,QtHzAPPIZos03egv8kmg2A,1,"I have nothing more to add, but I don't want anyone to think 'only a few' people had complaints about this poorly planned ""festival."" + +Oh, wait, I do. + +I was there with my 4 year old grand-daughter (and my daughter), since there were going to be kids attractions as well as the food trucks. I thought it was nuts that 3 minutes of jumping around cost $3. But I guess it was consistent with the $4 water and $7 beers. + +And it would help if there was some roadway controls and/or temporary signage. By 11am, traffic backed up (down) Pima from the event to Indian Bend and over towards the 101. Cars were skipping ahead and cutting into line, further delaying entrance. + +If success is measured by interest, the festival was a success. If by performance and customer satisfaction, not so much. And how can a vendor commit to showing and not have enough food to feed the presold ticket holders? Why risk your hard-fought reputation?",review,nF1TgXIlWNvFWtIWkhZgeQ,0,3,0 +jRfdz5voj40P6WS9L54caw,2012-02-03,RAjbzyvqteC92y4PyOtyPQ,5,"I'm so sad I didn't discover the Herb Box sooner. I went for a girl's lunch and was blown away - by the decor, the vibe, the view and the food - and this was during the winter. I can't wait for patio weather because this will become a weekend go-to spot for me. The salads and sandwiches are delicious and the fries and chips - holy moly! They're amazing and you'll get tons of them. The decor is perfectly shabby chic with a traditional twist and I could seriously move in. + +If you and your mom and girlfriends love the quaint feel of Arcadia Farms, give Herb Box a whirl. It's got the same feel, but more modern. Love love love it.",review,PNS9z4aFDbfhpIsHCfNvNg,0,0,0 +Vtx0VYkybAd71fzwgaoQ8g,2010-06-24,lqrDXjGHbORVbW7G5lu6Cw,4,"Sundays are a good day to do, well, a whole lot of nothing. After a successful day of avoiding anything useful or constructive, a friend and I decided to stop by for some Irish-style refreshments. + +Located in what seems to be the World's Largest Strip Mall With Confusing Parking Lot, this is a very low-key enjoyable place. It was not at all crowded on this particular afternoon, and as an added bonus, pints were Sunday bargain-priced at $3! I tried my first ever Dirty Pear (Guinness on top of Ace Pear Cider) - dangerously good. I wonder if it can be counted as a serving of fruit... + +You can't have an Irish bar without fish & chips, and theirs is pretty good - a large slab of lightly-battered fish which was more than enough for sharing, served with a stack of crisp french fries. While I prefer thick-cut steak fries, these skinny ones were consumed with no problem whatsoever! + +Thank you, Skeptical Chymist, for assisting me in my quest for non-productivity.",review,n9Zg0jlOGtxfIrvoPm6Hhw,15,18,15 +h-EkPjwF47mDPgrTGXLoIQ,2007-05-28,LLf9pyyGrDpZrtyWwYUNkw,3,"I like to call this ""My Basha's"". On the positive side, the selection of wine and beers is pretty extensive, the produce is fresh with quite a few organic choices. The natural foods section has a number of pleasant surprises and they've added some new bulk dispensers there as well. I've had mixed experiences getting help in the meat section but the checkout up front is always quick, much faster than some of the other grocery store chains out there.",review,n1h87EmG_HBlp33v3X_QuA,1,0,1 +KoIRdcIfh3XWxiCeV1BDmA,2011-08-28,BmZOjX13vhqqkVz-uyhIxg,1,"It's been a few months since I've been here, and what a change, not for the better. I usually get the same thing to start with, ceviche and pollo asado. Both are usually quite delicious, not this time. + +The ceviche had absolutely no flavor to it. As if the chef tried to make it as flavorless as possible. I did not finish it as it was not enjoyable in the least. Now for the tacos. Stale taco shells, dried and overcooked chicken, slopped on guac and no pico de gallo. The tacos were so bad I tried to rescue them by asking for pico de gallo, since they did not put any on, and then I was charged $1.00 extra. Of course, no manager was anywhere in sight. This place simply doesn't care. On the bright side, the margaritas and salsa are still good, but the chips were stale. + +Not only will I not return, but I can no longer recommend this place to businessmen from out of town. I see dozens of new business people every day who stay in Scottsdale and they always ask for Mexican food, and I've always said Cien Agaves. No more.",review,PwemCNJqvGerNZHbSSbmFA,0,3,0 +rF5uvk0-2_N60UxJ1NRl0g,2010-12-23,B6AdLX_fZ1wkg5Sa6SCYrQ,4,"Came here in a daze after not having slept for a loooong time and flying in to the airport with Dad; reminds me of the nice breakfast diners in Chicago, got the combo with turkey sausage (still greasy--defeats the purpose), eggs (always the same everywhere), french toast (more white bread, nothing too special but filling), coffee. Nice atmosphere and no major problems, would be great for the weekend brunch!",review,Up75EsxMwvYnHSxUrlDxeA,0,0,0 +vN4mFODLd-gLmDg261wsyw,2012-07-08,DPWM24p4SQN6jPwx2fIQgA,5,There is something for everyone on the menu. It's more than pizza. The service is great. Get a table on the terrace and you get the view of the park and fountain. I will keep going back.,review,wNxyGjz8b46qT1KAHjuYrQ,0,0,0 +oJpmYvLibGrYPDvcaUeMOw,2012-11-24,94HDqNdhWcwHo6c_p-Bkhg,3,"This is a quick grab some decent food kind of place.. this is not by any stretch 'THE' place to go for Thai- It's best for lunch specials... expensive-ish for dinner for what it is. It's fine. We go for lunch because they are AMAZINGLY fast (insert premade everything), but when we get tired of the same 'ol same 'ol we head to Thai Hut. + We have had some instances of meals being too hot/spicy for our table, so be sure you mean spicy when you order a spicy dish.",review,NG9gXWHQIESxfUEcKjA7gA,0,0,0 +mhQCxOiqp03qnhGRTtPduw,2010-07-26,QqH47anOmLMY-xCm_6kMdA,5,"I cannot say enough good things about this place! The food is amazing and the customer service is probably the best I've ever experienced. Every time my boyfriend and I dine here the owner visits with us and asks how we are, etc. I've only had Pho at a couple of places in town so I can't speak to the authenticity but it tastes amazing and fresh every time. Places that make good food and offer the kind of customer service these places do (and family owned is always a plus for me!) are just priceless. UnPhogettable is always worth the drive to Mesa.",review,0LuN0DGTCkzpjAD3NyNN8w,0,0,0 +7SO_rX1F6rQEl-5s3wZxgQ,2012-04-21,MdcOO0halc4Z8S4iCUQgVw,5,"Delicious salad, pizza, and wine. We got the Padre pizza which is not on the menu, but fig, prosciutto, arugula, and ricotta... so delicious!! The crust is perfect! + +The best part is they have several BOTTLES of wine under $12. Yes, you could usually barely get a glass for that amount. Sold... ! We had the Four Vines ZIn that was amazing for only $10.99.",review,bBS2Qsf--DYRXbYe5q4CcQ,1,1,0 +bmtANWh8OrAB-QflXwI0xA,2010-01-30,2AGvtkiTpTy1yOVCA1gc-w,2,"Are you serious? $4.50 for domestic beers during the usual ""happy hour"" time? That includes Old Style (we were there for the Cub game)!! At grocery stores you can get a 6-pack of Old Style for $4.50! And charging $5.50 for a Corona?! Cra-zy! + +""World Famous Sliders""? These were the worst sliders ever, I think Jack and the Box sliders are better. Almost $10 for six southwestern sliders with a patty the size of a half dollar that got lost in the bun, one jalapeno, a small square of cheese, and salsa to make the bun soggy. I know they have a prime location being right outside of the ballpark and all, but does that really give them the right to charge whatever they want? They are going to make money regardless, they don't have to be greedy about it!",review,AirVzN1BVQBmq5zY0YMNYQ,0,2,0 +ADn_CBhbn2QU3WzFzuXvWg,2012-04-23,RqDMPH7kDUletkXHGGKQfw,5,"I go to Pro's Ranch Market often for lunch- sometimes several times a week. I've had the street tacos, chile relleno, burritos, and some other tasty treats. I'm a huge fan of the agua fresca stand- my favorites are the strawberry, pineapple, and horchata. And the bakery... oh, the bakery. They have everything sweet you could want including individual servings of flan and tres leches cake. + +The store itself has the cheapest produce in town, a giant meat counter, and a great assortment of cheeses. Ranch Market also has super delicious tortilla chips and salsas. This is one of my favorite places to go if I'm on my way to a BBQ or party- there are so many options!",review,NvqgVxpAM7wKjL9QeVWnnA,1,2,1 +Xq9tkiHhyN_aBFswFeGLvA,2012-06-10,lk9i5kSq52nxH3P_j8W97w,5,"Love this place! A must stop for anyone downtown needing a snack or a drink! Very good happy hour and unbelievable flavor combinations. +On my last visit, I was pleased to try some happy hour toasts and fish and chips. Zero disappointment.",review,8-mw_aotUGmP0k0s6QKwOA,0,1,0 +zxqvU415r_RtZRKDtdbIKQ,2010-08-07,6nlHZlQ3t_ncf3GslCubaA,5,"I have only eaten here once, but i cannot wait to go back! the service was phenomenal, the potstickers huge and delicious! the orange beef - just as good as a pf changs! I had a restaurant.com coupon, purchased $10 gift card for .80 cents! Highly recommend!",review,Km0MQav49WBjFQlifoylcQ,0,0,0 +FHywRwdeksNsE8mGZU4PNg,2010-11-10,EBpbQiJjSqSN7-CE5iyYrg,4,"This place is one of the ""dives in a strip mall"" that seem so popular in this state. Today was not the first time that I have eaten here but, after reading some of the negative reviews, thought I would toss in my two cents..... + +I like to go here for lunch. They are prompt and the food is the perfect amount for lunch....maybe a bit too much. I am a creature of habit. Once I find that one thing that I love, I can't help but to run comparisons to other restaurants. Erawan has 2 items on it that I have to name as Best in Phoenix......Mint Chicken and their Tom Yum Gai soup. FYI, you can not get that soup on the weekends though. + +So, in short, this place is great for lunch and can't speak about how the service is any other time.",review,k_qZ47wApoqNwl7uNiiOBA,0,3,0 +23sB_DG-bQO3luNlZ-vi4g,2011-10-03,8TAYioJ3VO6ly7RVHma51w,4,"I recently picked up a few satin flower arrangements for a fund raiser event. +In spite of having bought a 'coupon deal' for the store, the owner Rachel was more than willing to give me the best possible pricing and pieces. + +The arrangements were beautiful and she even custom made a couple of them for us. The colors and flowers she uses are very well picked and beautifully arranged. + +I highly recommend Flora Unique.",review,7Etx7u6SJWNiDSCPxLUy0A,0,1,1 +T4ox3wUzFjWvyrjaTRoBbA,2008-10-23,xnMHyMcHdaPjkCPgdz3B4w,4,"Everything is awesome at this place, and authentic according to my Japanese friend. + +I just love the fact that they have more than just sushi. Their fish with rice dish was amazing. Since I've come to AZ, I've never seen this dish at any Japanese restaurants around here. + +The staff is all Japanese, with somewhat limited English, so I guess you know you're at an authentic place.",review,WCBz-xTApNh4u1VA_HKNLQ,1,2,1 +fP-BPL6iRu2tbcvlnjRshw,2012-02-09,_Uhy9vpfyhe6iUyJiA_THw,5,"I am not one to hang out in Downtown Phoenix before or after an event because quite frankly it's boring. However, when I visited Copper Blues on 2/4/12 prior to the comedy show next door I will definitely be hanging out after events. + +Here's Why ... They have a live band and over sixty beers on tap. It's a nice cozy environment especially if you sit outside. Budweiser drafts were only $5 and soda was only $3. We didn't try their food but I hear the same owner owns both Copper and Stand Up Live so I am sure the kitchen is the same so I am confident in saying that the food is delicious because it was at Stand Up Live. + +Happy hour is 4PM to 7PM Sun-Thurs so its basically perfect when any event is taking place during on those days. + +On this Satuday night people were having a good time. The draft beer was perfect and fresh. The music was good and the bartender was real friendly and answered all of our questions cheerfully. + +We had such a great time that me and my wife are going back to Copper Blues on 2/23/12 to hang out and drink with friends prior to our comedy show next door. + +This is a nice spot and you have to check it out especially if you are going to the show next door !",review,bMFSEta1Ju31P1EnssuUug,0,0,0 +AXixlciaDB5jo2NMZmSKoA,2010-09-30,_7DBu1UqUmMIRiGrX5S7XA,4,"I recently visited the Arizona Science Center, & today came to check this one out, joined by Mike C. Ok, it's not the same thing, but I'd say this one rules! There's plenty to see here, It's fun for both adults & kids. A couple of the excellent features are an old MINE to go through, & lots of DINOSAURS!! :-)) + +The walkways kind of wind all over the place, so try to keep track of where you've been, & not miss anything. They've put a lot of work into this museum, & you're going to like it! + +Open Tue thru Fri 10-5, Sat 11-5, Sun 1-5, Closed Monday. + +Adults: $10 +Kids 3-12: $6 +Students 13+ with ID: $8 +Seniors 65+: $9",review,ikm0UCahtK34LbLCEw4YTw,4,5,1 +ar90fbRbQtiyZLtwjwwXUg,2011-05-18,jIoRhEZ8Bogj-skNLVtnZw,5,"It's just a terrific steakhouse. One of the most upscale, all around dining experiences in Phoenix. + +It's expensive. Very expensive. But probably worth it. Figure $150-200 for a couple. + +I had the double filet medallion with blue cheese melted and a wine demiglaze. Absolutely outstanding, amazingly tasty meats. Equal or better than Morton's or Ruth's Chris or Capitol Grill (that's on the menu for tomorrow night). Smashed potatoes were very good but nothing to write home about. Veggies were pretty good. + +Started with the ceasar salary, with a big pile of anchovies. Perhaps the best Caesar I've ever had. + +Desert was the mouse cake. Good, but not to die for. + +Their happy hour is also an excellent value. Come before six and drinks are half off, and they serve little mini steak sandwhiches, which are very good. + +Hint: If you have kids, go to happy hour and have a drink or two. Cocktails are in the $7 range happy hour price. Cucumber cooler was quite nice for a cocktail. Let the kids eat the sandwiches, and then head to the dining room for a couple of filets. The kids are pretty full, you are nicely primed for a great steak, and the complete lack of a kids menu doesn't matter. + +Honestly, otherwise, there really aren't any good kids options. I know, it's not a great place for kids, even well behaved, but sometimes you want to celebrate a special occasion with family. + +It would be nice if they offered a mini-filet for 12 and under for like $15, or a burger and fries for $10 for the kids. Just a thought. + +Anyway, great experience, great food. A really upscale, while linen, old style steakhouse kind of place to have prime beef.",review,jvwnIG5wEjdOsqkYJgN29A,0,2,0 +K8pM6qQdYu5h6buRE1-_sw,2011-09-28,nfScBCNVTnkFDN8J_ECRXQ,5,"Cozy place, great amounts of food for little money, they serve koolaide!!!! Its all great I loved it both times so far, once in 2003 when I went to review it for the school newspaper, and again 8 years later when I drove by it and the nostalgia made me try it again with the fiance",review,zo0KvseUN6Gho9y0JQxVnw,0,0,0 +sS0bWeEwC04bDP-IvPQqrw,2008-07-12,ffd7WV58WgUtU1_OFX6dPQ,3,"Decent gelato. Some real, some artificial flavors. + +Comparable to Gelato Spot, I guess. + +Nowhere near the same league as Arlecchino, though. However, any place that doesn't use 100% real fruit, chocolate, etc... will never compare to Arlecchino. + +If you're already at Tempe Marketplace, MDG serves the purpose.",review,W9n_ZyVCXD0HfPqn6qriOw,1,3,0 +2bdKR3l4o-S1CscLqqnvVw,2011-06-28,_KlhuTMvwBmv1vxr45ivKA,5,Great food and very friendly service. Happy to recommend!,review,2Zv2Mw3Mvs_a5KO8U17yiQ,0,0,0 +cN6aBxe2mQvrQlzk26LyRQ,2011-05-20,cCX0UZldlKf1xw3pXn3u7A,3,"Durant's has that old, musty, dark, Mafia feel. Love the atmosphere and allure. We mainly sit at the bar, but have dined in. The happy hour specials are good, and we have tossed a few back here having great talks and enjoying the ambiance. +Now for the bad: The food is overpriced for it's quality. The steaks look fatty, the salads wilted, and flavor pretty bland. It would probably be okay if we weren't looking at 20 plus dollars per entree. Back in the day, Durant's was very high end and elite, so I could see the pricing from that perspective. However, if they want to stay in the game, they need to keep the food up to par as well. +5 stars plus for ambiance, relaxation, a throw back feel, and great drinks! 1 star for food and food prices. +However, a major landmark in Phoenix, so please check it out! We never know how long these staples will be around. I would just recommend going for drinks and maybe split an appetizer. It does ignite the ""romantic mood"" and will leave you reflecting on those ""good old days"".",review,0N0ngSQ8Njxfuvdxm1RpFA,0,4,0 +cp39VURFby4A6u9m2It8jg,2010-12-17,BG0uhZhCPn0hFMZj5FD_rg,3,"I'm happy to report these cows gave their best for me to eat. Thank you dear moo cows thank you! These burgers are meaty goodness. Recently I went to a lunch with my bf, her sis and Ma on the fly for her b/day since her first choice failed to be open on a Sunday afternoon..... Not her fault their site said they would be open. Bastards shaking my fist in the air didn't update the site. +D O U B L E Grrrrr! I suggested Zin since we were in the proximity. +So this is my 3rd time at this place. While pricey the portions of everything are large in charge & good. The ingredients are fresh, the meat juicy and the fries are crispy as they should be in my opinion. Note to your mother! Do not waste the fat & gym time on the creme brulee shake. It's nothing more then a fancy name on a regular old vanilla shake. Having said that... I am a creme brulee fan so that may have been it's downfall. I was expecting greatness and fireworks etc. I got a really good vanilla shake though don't get me wrong but name it a vanilla shake. Don't market it as a creme brulee shake. How to improve it and bring a tear to my eye? Put a creme brulee hat on it. Gimmie the crunchy, sweet I'm looking for expect and demand. Just put something on it to give it with that brulee feel or name it a vanilla shake. The best way to explain my feelings would be to say it was like setting up a date with someone on-line and having them show up and it's clear they are photogenic but possibly altered a bit and not the hottie in the pics on their profile. It is some one with a great personality and decent looks for sure just not the hottie. Still had a good time but my expectations were something else totally. The banana cream pie shake is de-lish and the Zin burger a def go. If you want a healthy choice go for the Tuna also very good and served perfectly rare. Mmmmm mmmm good.",review,z1tNqF5qJRpibGj-9_r9Ew,0,0,0 +TfTlOE6h9E9o34dEkw9L_w,2011-11-29,0YDEw6JTGp0gV_cCE8QxVA,4,Fun dive bar.,review,f01B5tRtqf3k6ak1pPSAWw,0,0,0 +7_fkHRNNHSFVP0pQCWm4yQ,2012-05-18,h-7t2l3_tSl1XGaUtPIuhQ,4,"When I left this place the bartender threw her fist up in the air and told me to go take on the world. How cool is that? + +I was impressed by how clean it was inside. Plus they have craft beer on tap for $3. Need I say more?",review,wFweIWhv2fREZV_dYkz_1g,4,4,6 +_FXql6eVhbM923RdCi94SA,2012-09-07,evzdx8swS2b4dAIjgA-MVw,5,"Yes, please! This place is AMAZING! I brought my family here after coming many times, and everyone LOVES IT! The wasabi mashed potatoes are KILLER! I HIGHLY recommend. I really don't know if there is anything to avoid at this place. Just love it every time! We have tried many dishes, and they are always flavorful and fabulous.",review,Gu0klsF8p157mTZsnkxskw,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2012-08-15,7vod2BNvl8H8xTREmt54iQ,4,"Love it! It was pretty far away from my home in Glendale, but I think it was worth the trip. We had girls night here a couple weeks ago. We had a cute waiter, who helped us with our wine choices. We ordered 4 different types of bruschetta and they were divine! Will defiantly come back even though it was a little pricey It still wasn't that bad considering the quality.",review,vIBrfx6z6wvUFN5IJDLNyg,0,1,0 +b5F2WCGUnwfh7z9N2AZ-nw,2011-02-13,6SCBZ2pQhHlyMjrWkC4Qtw,5,"There's a reason there's a banner that reads,' Food Network Challenge Winner', hanging in their farmer market booth. I've had Pastry Chef Chris's gingerbread cookies; biscotti; coconut/chocolate cookies; and their carrot cake, and they have all been really, really, reaaaaally good! + +But today, at the Ahwatukee Farmers Market, I was knocked out by what she calls ""Lemon Sunshine."" Words can not describe how delicious their lemon and cream & graham crust tart/pie is. + +Lemon tarts/pies are among my all time favorite desserts. I thought that the ones I had from TK's bakeries and Veronique Mauclerc were as perfect as a lemon tart/pie could be. Slice Cake Designs Lemon Sunshine pie is dangerously perfect... + +A must try!!!!!",review,jLBh-z3JrJkqJfn5VN9OJA,2,1,0 +nts2OALwvyvfNh9focRZ3w,2010-10-03,F2Vy174l7Jnt3AqH_oCpZQ,5,"This is my favorite breakfast & lunch place in Ahwatukee. The food is excellent. The service is friendly and they do what they do perfectly. This isn't a place to go for elegant sit down service. It's the perfect blend of self-service meets top restaurant quality food. + +Have the Croque Monsieur--or add an egg to make it a Croque Madame. You will not be disappointed. The bread and the baked goods are so good you could make a substantial meal off them alone. + +Finally, this is a small local business that truly cares about its community. They have shown up at two community fund raising events with huge boxes of warm, freshly baked cookies to donate. I'm grateful to have a place of this caliber in my neighborhood.",review,sTLoavKyIGXnIYH-v1TOWw,0,1,0 +zk4O-WY-qmbuoXZbnQpsnw,2010-05-06,ANQJoRZKwj1Z3gYrIUzFPQ,3,"I have some issues with this place, but you can't avoid BRU when you are having a baby. It's got convenience, selection, and price going for it. + +We set up a baby registry here mainly out of convenience. It was fine, but I started noticing that they'd randomly discontinue items from the registry and about a week or two later put them back on. + +They aren't always the cheapest, but when you are strapped for time, trolling the Internet for deals isn't going to happen, and this is where BRU scores. They know they can get you when you are harried and need whatever. + +The bathrooms are grody here. After being pregnant, I've seen a lot of bathrooms. It seems like a store catering to pregnant women, new moms, etc. would have nicer bathrooms because the likelihood is that we'll use them 9 times in a hour trip. + +Staff is generally friendly, and the store is well organized. Selection in store is good.",review,m7j9e53ycZxjWYBD7rZVng,0,0,0 +-5rFC4EVrT-v8g1PSEf6Xg,2011-07-16,si-nMGBPO5Q8Axg0zgly0g,5,"I was impressed with this place. I had the Mongolian Lamb and an Asahi beer. It totaled $14.00 before tip which I thought was reasonable for dinner and especially for a lamb dish. The portions were very generous and even though I was starving when I stopped in, I ended up only eating about half of the meal before getting full. It was delicious. Tender lamb and a great sauce. + +The waiter was very polite and helpful and the food came out pretty quickly. It was very comfortable inside and the decor was tasteful. I did not expect that one of the best Chinese restaurants (of course in my opinion) would be located in Avondale. I feel bad for frequenting the Pei Wei on Dysart and McDowell so often when a non-chain place of this caliber is right up the road.",review,0BfSTRcQpBTeNlx9SuAGWw,0,1,0 +C0vHeuHvd8H-9pJ1Qsb48Q,2008-03-07,KuCvN60gblCDKjNdre3dlA,3,"Hit up this joint a couple times while in town for Padres spring training the past several years .. it's great sports-theme hangout for large groups .. plenty of TVs, service is very good, food is decent, big variety of drinks .. but it can get a bit pricey here for a casual place. + +Location is convenient for those hanging out in the franchise capital of the world--Peoria.",review,h0soVH3VlB0bTEa4yH6yCw,1,1,0 +TnkxapUN4nWMz_z5h3qMYg,2011-02-20,bNwnXUDUIvG7ecckJYa2EA,4,Friendly service. Ordered the Veggie burro. Should have gotten 3 friends to help me finish it.,review,DghMl81bONCh5ELnrgn4Fw,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2012-04-29,0SDJ9SshIv2wAIkRS-wizQ,5,"There're times when you eat something and you want more. Then there are times when you eat something and you instantly know you will never have anything quite like it. For me, I experienced both of those at Pizzeria Bianco. My buddy and I drove almost 500 miles from Santa Barbara for a Giants-Diamondbacks game and thought we'd try this place I had heard about. We arrived fairly late so there was about a one hour wait but man, was it worth it. We ordered a Biancoverde and a Wiseguy. I was a bit skeptical at first because they each didn't have tomato sauce like I was used to, but I realized I dont care much for tomato sauce in the first place and I'm always up for trying new things. BEST DECISION OF THE DAY. The Biancoverde was my favorite. It was so simple (3 cheeses, arugula, and olive oil) yet so amazing. It has left me wanting more to this day. The staff was nice and friendly, not to mention a few cuties. I will definitely drive 500 miles for it again. In fact, I'll be making my way to Phoenix in a few weeks, JUST for the pizza!",review,6AzKyBQAJoFcqCJ6rzjHbw,0,1,0 +OCfXJuLuGKS0s7pZsKCf0A,2012-11-03,0Hmf7mezT9vjM1na6PiAGw,3,"clean store, good parking - decent prices too with the gas points savings is a nice bonus.",review,BtatRPR-wytl8lLwnokwPg,0,0,0 +LjqY98zL96sem_PxC6ZG3g,2007-10-10,0jnv6bjndqHEK_vx1IWT2Q,5,"i know, i know. this gelato is a bit on the pricier side, especially when you consider that phoenix now has a bajillion gelato shops, that each offer a million and one flavors for a few washingtons. HOWEVER, arlecchino is definitely the BEST. it's worth theprice, worth the drive, and worth the parking hassle. + +the owners are super nice and accommodating, and although there is a sample limit, the workers have never said no more. the flavors are classic, inventive, fresh, and authentic. plus, it's such a cute, tiny little hole-in-the-wall shoppe, that you can't help but love it in all it's quaint glory.",review,jqs0xPGhZwlyijqWLEgRyg,2,1,1 +UYM3KZLe02XGmUx27AZl-Q,2009-07-12,iwMIeeKW0b94FQ0H02QCUw,5,"I first visited this restaurant after my friend pushed me to visit the Hawaiian festival at the Tempe Town Lake a few months ago. + +""Big deal,"" I thought. ""How can a Hawaiian festival be fun?"" + +Well, the food was amazing. And after having half a rotisserie chicken, I was craving for more. + +A few days later, I finally began my search for the perfect (or near perfect) Hawaiian restaurant, in which I can satisfy my Hawaiian cravings. + +My first stop was Mai Island Grill, located in/near the Arizona State University campus. Parking was a bit of a challenge; this is especially true during the lunch hour. + +When I finally found a parking spot, I went in and ordered. I had the short ribs plate. The plates include one scoop of macaroni salad and steamed rice. + +After placing my order for the short ribs, I ordered the Spam musubi. + +The guy preparing food replied with a laugh. + +""Is it good?"" I asked + +Jay -- the man who operates this restaurant -- replied, ""Yes it's good."" + +Then he said something about how the guy who laughs never laughs (or something like that). + +About 10 minutes later, my food was ready. + +The food was fantastic; just what I was looking for! + +The prices are very reasonable. Plates are about $10 and less. + +I also suggest that you try the fish, beef, grilled chicken, and pork katsu. + +And finally, I hope that this place continues to provide the same liberal portions. Also, I think it would be cool if Mai Island Grill began serving two scoops of macaroni salad and two scoops of rice (just a fantasy of mine). + +Additional Notes: + +- Cash Only. + +- Opens late in the morning and closes early in the afternoon (call for exact hours). + +- There never seems to be any ""Lumpia!"" :-/",review,E-Bd5r6Z3zMGA75_D4IRKw,4,4,4 +N9iPqBRI47bewLAeKBlkIg,2008-11-23,j01IrAml7fGI4CORTM_qpQ,4,"I actually love the Waterfront Grill. I have never been there during bar hours, so it might not be a good later in the evening, but I usually go around 5-7 for dinner and the food has always been excellent. I usually get the buffalo chicken wrap, but sometimes I go with the fish tacos. Both are excellent and the service is great (because usually my and my friend are the only ones in there - I often wonders how it stays open). The cookie desert is awesome! It is like the Piezooki and Oregano's. Just as good.",review,zCC6huLkNBEr3JUgQyxJbg,0,1,0 +JN2qXIuDXnV2d8WnSqd28A,2012-10-22,jJnL6cBWunBRj2NDMFzIWA,1,"They added broasted chicken to their menu... I love me some broasted chicken, so in I went to investigate. + +I do not love me THEIR broasted chicken. + +To me it tasted rubbery and had a strange odor, and it was so salty that an hour later I could still taste it. I ordered a few pieces and I ate part of one and then bolted. + +I can't speak to anything else on the menu. Their garlic knots, for what it's worth, were fine.",review,o3J4bMsi7t9gMCMjEd_4ew,0,1,0 +DXADDERHdunEdkwo9_t7gg,2009-05-14,sY5yhQahnW9gcaf1hUzN0Q,5,"I really don't like these types of Mexican food places because I feel my mom makes better Mexican food. Just a note: Not all Filibertos are the same. Food taste wise..... + +This Filibertos is BOMB though! They make great Spanish rice, and beans! All the food is great! But I recommend the rolled tacos if it's going to be your first time here. I think it's combo #8 haha. They also have some old school arcade games. That's a plus for me haha. + +Please stop going to Macayos they have the worst fake tasting Mexican food.",review,lm7K16xQNoLh1Yc0yaTxuA,1,2,3 +mzbQCUmd135tsNW6hY3G6A,2009-04-18,YviHqX8UF9L6qjEOFD_qiA,3,"Growing up near this little hole in the wall, this place was a constant stop for my family. It's really good, greasy chinese food that basically tastes like you would expect it to. Now that I live farther away I still have cravings for their delicious orange chicken and chicken fried rice. If you're nearby during lunch try out a lunch special, really great prices!",review,UNAhUulI9ehiEcUyrM99lQ,0,0,0 +6ie9xvy2WW1pn7RuBvGNhg,2009-05-07,yx6ZbicEb2Pqbbb0OUF5Sg,5,"Please give this place a try when you're making your next stop at Pita Jungle. This restaurant seems to be very underrated and overlooked. We went on a Wednesday night around 7:30pm and it was empty while Pita Jungle was packed. Just the two of us on the patio, which was very nice. The interior and atmosphere are great. Nice tables & chairs, candles, shelves with wine bottles and art, and a very nice bar. + +An Iranian family owns the restaurant and cooks everything themselves. That's the first sign of a high-quality establishment. They were incredibly nice to us and brought us whatever we needed. They gave us some good suggestions, like their Iced Black Tea, which is fantastic. It has a few other elements to it including Lavender. They brought us extra pita when we ordered some appetizers as well without us even asking. + +For our appetizers, we tried the hummus and the tabooli. The hummus was very creamy but a little plain. We wished there was more flavor or spice to it. Not a big deal. That was the only part of our meal that was not 5 stars, but 4 stars. The tabooli....ridiculous. I've never been a fan of tabooli. It usually has too much parsley. But their version was balanced perfectly. + +For an entree, I tried the Chicken Shawarma and we split a side of Basmati rice with saffron. A huge plate of rice with great seasoning. The saffron and olive oil gave the fluffy rice great texture. The Shawarma was fresh and delicious. The chicken was cooked and seasoned nicely. + +For dessert, we tried the Persian vanilla ice cream with rose water and saffron as well as the Baghlava. The ice cream was some of the best we've had. Great flavor. The Baghlava was a great complement to the ice cream. A nice sweetness from the honey and the flaky dough was great. + +So in summary, great atmosphere, great owners, out-of-this-world food, and very affordable. Everything we had came to about $32. We will return many times in the future because their menu is very promising. Just wish their name fit the type of place that it is. The current name makes it sound like just another Middle Eastern restaurant, which it definitely is not.",review,j-aruJbrUGLP4ZwhQfDJHw,1,2,0 +qW9UysjJw3y3CwEbzruEEw,2012-05-05,YZmoiRFz5bTBX8PF3M_FZg,5,"Elmer, I love you. + +I have since I was a senior at Chandler High. Back then I was broke so I could only get a bean burrito and strips...and they were dang good. + +If anyone wants to complain about strips just being chips and cheese they can suck it. + +Now days I am a little less broke so I always get the green chili burro. And it is always so good. Spicy enough to burn a little and the tortilla is always fresh...thanks man. + +And bless your little Mexican Heart, you serve corn dogs...so I can even come here with my crazy picky kids. + +I love you Elmer. I always will.",review,LS4pZdJnAx71TTJao6lNMQ,1,1,1 +1M4oczf2lmkdgbrJ3J7OqA,2012-01-29,x9RQqFzUKS5EVfBrdoX6zw,4,"We went to Christopher's with the Deal Chicken 3-course dinner. The food was very good and the service was just as good. The lobster bisque was a bit too thin for my taste and is something I would pass on in the future. The lamb was delicious and the tuna salad was tasty as well. We opted to order dessert and the mousse tower was delicious. We were saddened that they did not have the grand marnier souffle on the night we went, which was highly recommended. Will return!",review,8RBt1D6rKLMVFVstL6UHBw,0,0,0 +cBpJIOrVXotDI0XAZH_k0g,2011-03-07,rKR0NgykB2Cb1SeZFdpVFg,4,"Our group enjoyed a fabulous lunch here this past Sunday. The patio is perfect for people watching on a beautiful afternoon. + +Appetizer: Crab Cakes. The guys really liked the crab cakes which appeared to be served with some sort of cream sauce with diced red and yellow bell peppers. + +Appetizer: Spinach Cheese Dip. This dip fits the standard and is served with crispy pita-esque bread pieces. + +I truly appreciate the large selection of Gardein entrees they serve for Vegetarians and Vegans that want to enjoy not-so- healthy bar grub like our omni friends. ** Be sure to note any dietary restrictions upon placing your order. I ordered the ""beef"" sliders original style and they came with cheese which was not mentioned on the menu. They gladly added a side of lettuce and the jerk and buffalo sauces to my plate. I adore there shoe string fries. + +My companions enjoyed their ahi tuna salad and steak entrees. + +As far as drinks go, there is a large menu sure to please everyone in your party!",review,DYC9uqPYAwI_q9J9RknWvg,0,1,0 +cfy-C6XNFt-F-dCQfK7EDQ,2010-02-27,i408fRqV2iDVNZ5aNSLYUQ,4,"The Sushi was fab!! We had some specialty rolls and Shashimi, both were very melt in your mouth fresh! + +Service was a bit slow as I think they only had 2 waitresses for the entire place. + +Cost seemed to be very reasonable. + +Would certainly make the drive from South Scottsdale there again!",review,597KmijSB8ma9Qs7JKMJnQ,0,0,1 +y4bkwSDssQTlFOYZS76K7A,2012-04-23,il8qsVyu7yKaGGMEOUUj1w,4,"This is the king of asian buffets! The price is a little high but its worth it. This is one of the few buffets were everything you try and put on your plate is good. Service was excellent well, especially for a buffet. + +P.S.=You better watch out for me in the lines cuz I'm ruthless when I get in buffet mode.",review,KuPscbI0KPxudSMPZIcrCA,1,0,1 +jXLzmOjHQ7rV-zrX7myA9w,2009-05-25,Jbiizq9BovcWjMf_v4fAjw,1,this is a business located in the fry's grocery strip mall on mckellips and recker I wont say much but don't bother the waitless girl was about as pleasent as a hemroid the beer selection sucked. I belive the owner was there at least the guy looked like the owner. it's always amazing to me how the service can be so horrible w/owner in house.,review,kJyR4gT1pfCcNjEY9-YMoQ,0,1,1 +E28ht8IEiO6FZbKktSo0Xw,2011-05-14,KRf8TTUOgKA0cDBZBP0OkQ,4,I really enjoy this place and have eaten there several times. They just recently changed their menu but I like the brew additions. The coconut shrimp are awesome and the ahi tuna salad is to for for! I did have the chimichurri flank steak sliders but they weren't good. Our waitress was great and offered me something else.,review,O758lrR1X2zI-ySeyjdr6A,0,0,0 +1vYaGPKQzMebBJXFCGTH2g,2010-07-20,LX9LESJoiYbStMRL1DtJhw,4,Delicious. Can't be the pricing on the lunch menu at a sit down restaurant. Great interior decor that doesn't scream Chinese restaurant. So far I've had the House Special Chicken and Sweet and Sour Chicken. Both were great.,review,iqh9hYsQqLgW50jTPisH3Q,0,0,0 +BCsYkzqxGY_xmi5q_ayFDw,2012-08-15,v7EmGJ2LbxYsw5GdGCehpQ,5,"Did I ever write about the time I left my ipad here? Didn't realize for a couple of hours. Heart racing, I called, emailed, hoped it would be recovered. What gracious responses! I got an email early next morning, lots of reassurances, help for when/ how to pick up... Ok so I've reviewed this place before, key words are wonderful creative dishes, a light touch for subtle flavor (right now I'm having a delectable plate of greens, shaved herbs, summer squash wrapped around burrata--- who woulda thought?) but most amazing is the heart warming genuine service of all who care for you here. Oh.. And there's mightly fine wine on ""tap"". Heh heh..",review,KJs0wwwPaCxaCUrppfaCDg,0,1,0 +DaQJ7ykf8MkEWrIYA_9J7Q,2012-04-30,_I7FN1f5lr8DS0gh1kmnNw,4,"Why did I stop coming going to Pro Ten Nail Shop? They are located very close to where I work and I used to go to this shop all the time, they do a great job on pedicures! I got what would be called a deluxe pedicure with designs on my toes for only $27 bucks!!! Can you believe that!! They have signs all over asking for the customer's to pay in cash, that why they can offer us the lower prices! I am more than ok with paying in cash and my toes are looking cute! I think I am on my way to becoming a regular again for sure!",review,8dbRf1UsWp2ktXHZ6Zv06w,3,3,2 +0a8hLC1V7jgOjRigoBohAg,2008-08-11,W5DZLayKBCcDTb23Wlbc9w,3,"It serves the purpose. That's about it. + +Raging Waters it is not. A smaller water park attached to a mini golf course it is. + +Slides are fun. Night splash is great--no sun, bearable temperatures and no sun burn. I definitely would never go during the day. I couldn't imagine standing in line for 1 hour+ with no shade, 110+ temps and broken misters (I didn't see a functioning mister in the entire park). + +Park could use a bit maintenance. Staff could use a bit of training. Lines were very disorganized. Staff didn't have much of a clue as to what was going on. Ex: spent our last 45 minutes waiting for the wave pool, getting into the wave pool and waiting about 15-20 minutes only for the wave pool to never come on and for the park to close. Losing almost a full hour out of the 4 that night splash is open was a bit disappointing. + +I'd probably still return. But only because there's nothing better in the valley.",review,W9n_ZyVCXD0HfPqn6qriOw,5,5,5 +VSPuvNSDUvlTl670lVAkkw,2012-12-05,O93X3vyNlxTuvIgUCT68Iw,5,"The food is EXCELLENT! We have been 5 times now, and everything we have had has been delicious! We will continue to dine w Bill and IL Bosco! The Caprese is AWESOME!",review,GTkZ-E3Fpu4YNGLeA3JJjQ,0,0,0 +2ceeU8e3nZjaPfGmLwh4kg,2009-03-25,rvhEZFmoFaTsC5iHjMKjhA,3,"The actual bar (especially the outdoor area) is really pleasant in the cooler months. That being said its also near the university so can be overcrowded with snotty hipsters at times. A good place to socialize with reasonable prices, and oysters, yum.",review,ODW4e78LfvY5Ch4s1kzzjw,3,3,4 +Pfb6VOIiroqDWOebfgWGPQ,2010-12-29,LeDecSQeRPBOOVBRHIPHsA,4,"My first experience with PCG was at a small, yet fantastic Yelp event. I've been back twice and have been just as impressed. + +The first time was for brunch, and I recommend the griddled corn cakes. No, I just don't recommend them, I insist you have them. Even if you are allergic to corn, take the plunge and try these...unless you might die, then stay away as that might be bad PR for PCG. Topped with smoked ham (that's what I had), chicken, or bacon and served with maple syrup, it was beyond good. I could eat this dish every day of my life. The black beans were okay, but I do think the breakfast potatoes are nothing special and could be improved upon. I was a big fan of a $4 mimosa, however! Yep, you read that right...4 bucks! + +Second visit for dinner, and I ordered the cedar planked salmon. A generous piece of fish perfectly cooked and served with a delicious lemon aioli. The accompanying roasted beets were not my thing, and the mashed potatoes were okay (maybe I'm picky about potatoes?) I also tried a bit of my dining companion's beef tenderloin and it was butter-knife tender (that's what I cut it with). Served with a stuffed potato and mushrooms, I believe, it will most likely be my next entree. For dessert, we shared the Jack Daniel's croissant bread pudding. We actually shared half, and I most generously took the other half to my husband who I left at home. Although, I generally don't care for bread pudding, this is NOT your typical bread pudding and probably the best bread pudding you can imagine (other than that one recipe that uses a dozen Krispy Kreme doughnuts). + +Although PCG is a little bit of a drive for me (outside my usual 5-mile maximum radius), I will happily make that drive and return again.",review,wHg1YkCzdZq9WBJOTRgxHQ,2,3,4 +7_7fxuG9ESAFmx-AiMsJHg,2010-10-25,hToXrZeYpH9xUvflGywJaA,3,"I don't know what Bar Smith is trying to be. I feel like instead of just saying okay we are going to be a X music club on Saturday night they decided to try and appease too many people. 90s R&B and Hip hop on the first floor Techno Electronica on the roof top bar. + +oooooKAY. + +I visited the during the 4th Annual Pub crawl at 11:30 at night the place was still pretty empty. + +Drinks-Meh +Crowd-Meh, I am still trying to find the young professional males in this area. +Layout- I like it +Bouncers-Really big and Super nice but then again I smiled a lot and didn't give them a hard time about my ID. + +The last 2 is what gives it the A-Okay and not a full out Meh. I could see throwing a party there, people love dancing outside and on rooftops. This has both and the first floor DJ was decent, all things considered. + +I will give this place another chance. + +Maybe it can redeem itself up to 4 stars.",review,2y3LWFfyRp02EdjwcVv7sw,0,1,0 +F3SEkW6v2LJ5y6Ldo5pPaw,2009-03-01,jLxo_UgnGfKHSPK7gGa5LA,4,"This has always been our favorite local Chinese take out - and especially on Chinese New Year, the special menu. OMG its good. We always call for takeout, one or two items and we are so close that by the time I get in the car and drive there, its done...less than five minutes. + +This place gets very busy, and if you get a chance, try out their Peking Duck, Hong Kong style. Soooo delicious! + +Another favorite is the snow pea leaves (not on the menu!!! cost extra), and the Seafood Bean Curd Soup. I love the soup here, so many delicious morsels, you can't go wrong with it ever.",review,LT3L8-tthzD0IakgXm81pw,0,1,0 +m34siNIv_F15LIzkmxP7-g,2011-08-12,nndJbVEZS4Rwh1AJkgnlqw,4,"Wound up at Rock Bottom by chance had been wanting Carrabbas all day, due to being brain washed by commercials on TV so that when a friend said lets go out for dinner I was all gun ho to say Carrabbas, then he said Im in the mood for steak I tossed the pasta idea out the window and said Bring on the beef, plus never been to Rock Bottom so I was thrilled at being able to try a new place! It was a Sunday night and the place was simi empty, which was nice. Service was fast and friendly and I liked the overall vibe of the place. I ordered the Texas Fire Steak which was top sirloin seasoned with crazy peper and smoking jalapeno butter, man it was delish!! Even the veggies were good! Looking forward to another trip there to try out some more the menu!",review,8dbRf1UsWp2ktXHZ6Zv06w,0,0,0 +Yk1JsOodrxP4z4IjB6HBVg,2010-09-10,q1S7og5Hywdg41eyAttdng,2,"I have been going here for 4 or 5 years now because I really TRY to be a loyal customer. I can't justify spending any more money here. + +5 years in the owner is nice to me, but still doesn't know my name. I go there 10 times a year minimum - so it shouldn't be that hard to at least RECOGNIZE me. + +I decided to have my wedding dress altered there this year because I knew and trusted her. She made a big to do about my dress and my wedding, but when I stopped by with my ENTIRE wedding party to pick up ALL of our dresses, she had no idea what we were talking about. ""Dress? What type of dress?"" + +Uh, my WEDDING dress? The only one in the store? Hanging right there? + +Every pair of pants she has hemmed for me - from jeans to slacks - has been too short, by over an inch, and she charged me SIX dollars to sew a button back on... when I brought her the button. + +I am sure there is better service elsewhere, along with better prices.",review,i2TRnWtvxxwJuynRKrw35Q,0,1,1 +h6jfMpTZpNduLG0wE2tbaw,2011-12-27,Eo9uNHC5PFLv-VFMZdEz9A,5,"This is my favorite Sushi Spot in Phoenix. I see Sushi Chefs from other restaurants coming here to eat during their off time. =) + +The prices are very reasonable, and all of the rolls and sashimi are very fresh and crafted to perfection by the old timers. + +The Ramen Noodle Bowl is awesome, and nothing like what you would buy in the grocery store. It is topped with pork, fish cake, bamboo, and seaweed. I highly recommend. + +They even have a fried salmon skin roll, which was very flavorful and not always available at every establishment. I wish that i would have taken a picture of the last one that I purchased, it was absolutely perfect. + +They also offer Takoyaki, which is like an octopus dumpling ball. You would have no idea that it contained octopus unless you were familiar with the dish. these are absolutely amazing and highly addictive. You have to try these during your visit. + +The last time that I was there, I had to try the Ichigo Mochi Ice Cream. It was green tea ice cream, surrounded by a rice flour shell and topped with whipped cream. It really hit the spot and I was so full but in a happy and satisfying way. + +If you like Sushi, and you think that RA is cool, hit yourself on the head for being a complete fool and go check this place out and get schooled on what fresh authentic Sushi is all about. Your mouth will thank you for doing the right thing! + +Cheers and keep up the good work at the place. + +FYI... Bring your own Saki if you need booze with your meal. I say, just enjoy the good meal without alcohol and see how happy and relaxed the meal makes you feel.",review,cprrdOVWlDZU9iMCTMtKbQ,1,4,0 +tZXPhvufHhfejGrRp554Lg,2011-06-20,22nuhj105OYLeMymo_qAfw,2,"Food was amazing but the service was horrible! I would suggest to take out don't dine in. I ordered the eggs Benedict, instead of Canadian bacon, they put crispy bacon on it served it with hash browns and a salad with a balsamic vinegarette. + +The two girl working there were so unprofessional from their interaction to the attire.",review,1oR3-73q1Ywg9SqdI_uSFA,0,1,0 +YuDkHN0bbGqtXY8797O6Pw,2011-12-19,xCntzVvJX5KY6m6Q9PSH4g,5,"5 stars isnt enough!!! I love the whole Briggs family. I have been going to this dentist since I was 8 years old and they have always been so amazing to me. I love that I walk in the door and they make me feel right at home. They are so sweet and everything in that place is actually super comforting. + +They use the most high tech things I have ever seen, and its good to know I'm getting A+ care for my pearly whites. I recommend them to everyone I know!",review,vTSJBEZbKOYT1txypteK4g,0,0,0 +-tNKk-eCLk_acdp4vEYcpw,2011-05-17,t3aieVKULjWKrBm8LEF0RA,2,"Food was ok. Servers ok but cashier was horrible! Ok, some people are just not meant to work in the food industry. At least smile! + +Place had a very gross smell! At first we thought maybe because we were sitting kinda close to the restrooms but the farther we moved from there the worst the smell got! + +Maybe if I'm desperate enough I will go back!",review,cwlz7-fym956qQXBQxxZHQ,0,1,1 +CFaRVxsnN4Zjf28cbORKIA,2012-01-16,jOY39UkAps322G3uS6qxGg,5,"Can not say enough good about this place. I love it. I love it! I simply love it! We have always had really great service and the food! Well, the chips are thin and salty yumness and I love the salsa. They keep you filled up and aren't like other places which try to ignore an empty container! + +Number 16 Combo is my guilty pleasure! I have had it many times the way it's intended: Chicken enchiladas with red sauce...but lately I've been getting it with Fundito sauce and I've gotta tell you: I'm hooked! Try it........it's a little more $$$ but SO worth it! + +I haven't had desert since I'm gluten free but the size of the fried ice cream is Gigantic. My daughter swears by it! + +Man, I wish they were open right now...cravings have begun anew....",review,9uuPzUWC1m_TnMUV9kXu9g,1,0,0 +jsblnIZnHUQGufwVb_yX6g,2009-12-06,cgxBgtje6818w4uugwVx_A,4,"I entered the CPK world late in life, and I'm sad about it because, apparently, I've been missing out. CPK is great! Contrary to what I thought, it's not just a place for pizza. Although the place can suit all sorts of tastebuds, I would recommend going JUST for the pizza. I went this evening for the second time in two weeks and ordered the BBQ chicken chopped salad. It maybe could've used a little more dressing, but it was still good, so I can't complain too much. When I went last week, I ordered one pizza from the MANY great options available, and I have to say, there is a reason it is called the California PIZZA Kitchen and not the California SALAD or PASTA Kitchen. So 'Yay! I'm a fan.' of the PIZZA here. The other stuff....meh. + +The servers are always pleasant here, and I never wait a long time for the food to come out. Prices are what you would expect for a chain restaurant. Parking isn't usually a problem unless there's an event going on at Tempe Marketplace. The up-side to eating at this particular location is that you can browse the shopping area before you stop in or after you're done eating. + +Be forewarned: If you are ever asked if you want avocado with your salad, and you say yes, you WILL be charged extra. Look out for this sneak attack.",review,GuUQfQXqsN0MIGK4Lxvsjw,0,0,0 +Iu8jmmDFcDSf5PCdor1dvg,2007-09-23,bqoctwIIG-JVwgMs4xQv7w,4,"Are you one who likes the smell of a brand new car? How about the smell, or in this case, lack of smell, of a brand new gym? Now, for a limited time, a completely unsullied 24 Hour Fitness, at the MetroCenter, of all places. + +At its current new state (it's been open for a week), this 24 Hour is in much better condition than the one on Camelback. No surprise there - everything inside here is brand spanking new. + +The details: + +* In contrast to other 24 Hours in the Valley, this one actually will remain open 24/7 (versus closing at night on the weekends). The guy at the front desk said this is due to how this location is zoned vs the other ones. + +* The cardio area is equipped with 11 flatscreen TVs hanging from the ceiling, with one even tuned into soccer-centric GolTV (which means one less tuned to all those talking heads on brainless cable news stations - bonus). + +* The adjoining weight area is larger than the Camelback location and currently has all its dumbbells in place on the correct shelves, and all its weight machines are working. No new types of machines, though (this is a 24 Hour Fitness after all) but still all the standards, plus four flat benches and four incline benches. + +* Full basketball court (which could also be split into two half-sized courts). Camelback lacks this. + +* Large stretch/ab area which also includes some contraption straight out of Tron/Blade Runner. I stood there and looked at all the diagrams, acknowledged that it must be useful, and walked away. + +* Standard group X classroom, childcare + +* A spotless pool area. If you've been to many 24 Hour Fitness, you'll know that this is a hugely appreciated factor. I anticipate it's not going to remain spotless for long, but doing laps in a crystal clear pool was awesome. No dankness here (yet). + +* Spotless lockerroom with wood-paneled lockers and branded Dial Ultimate Clean hair & body wash. I'm assuming the women's lockerroom has their own corporate soap sponsor (I find all this a little odd, but go figure). But beyond soap, there's some contraption called SuitMate which is like a salad spinner for your swim trunks. Just throw your trunks inside it, press down, and in 30 seconds your trunks are water-free. How awesome is that? + +* Is going here after work safe for your car, you ask? Well, when I left the gym two hours later at around 9:45 pm, my car was still there in the parking lot, untouched. Seems like the MetroCenter is full of surprises. + +* All in all, a great gym that I'm sure will be a welcome addition to the area. However, it still rates 4 stars since: + +A) Although all the equipment is brand new and the latest edition of everything, there is fitness equipment at other gym chains that this one is lacking. + +B) I'm anticipating what the gym will be like in 6 months. If it manages to stay as clean as it is now by that time, maybe a 5th star will be in order.",review,htC49ZwXiKNka5cp0GKBfQ,2,5,4 +rRe2eLIQ4MQ7d6vFL26Qdg,2010-09-29,ug28SU_QbaVc4X7llnCXSA,4,"confirmed better than subway blimpie quiznos etc etc + +Not really much else to say that hasnt been said above. Wished they had more vegetarian options :(",review,fEAfppON9koHRyOOBqdS8w,0,0,0 +3fNGtIfuHwt0-DD9SSjO6Q,2009-09-22,o1re5uKCq4hX0QM6KKhUHw,4,"China Garden is one of those places that I crave. I use to live not far from here as I was going through high school and a few years after. I now live in the surprise area but about every two months or so I go out of my way to China Garden for the yummy sesame chicken and teriyaki wings. There sweet and sour pork is also something to be desired. + +China Garden does Chinese food the way it was done in the late eighties and early nineties. It's what I grew up knowing and came to love. The sweet and sour pork has the wonderful breading and is left to soak in the sweet and sour sauce. + +Chinese food by today's standards leaves me feeling bloated and disappointed so I pass it up more and more. The only regret when I eat china garden is that it will be a while before I get to go back. + +The egg drop soup is also some of the best in the valley. You have to go try it. + +I have been going here since 1994 and still love it. + +P.S. +they do take out and the portions are HUGE for the price",review,gKaG_JWPLXZ6WTY27TNg7w,2,3,1 +BD74uSwDe175zEqfppDRvg,2012-03-13,swBcoXImg97WX95vUk2pYA,2,"It is ok Mexican food, not bad but is overpriced for what it is. + +I don't understand why this place is packed every night of the week. The food does not warrant the crowds. I'm baffled.",review,GLfNfPqs8VaaCnjOAOkMRg,0,0,0 +tb24fvNJfHhyKEXkKn12Xw,2009-03-20,TzxYw25AGSH4U5AbkbxN6g,4,"I can't stand 50's retro but this place is the cuteness. Well...I haven't technically been inside. Now, I knew this was a hipster hangout, but I wasn't expecting the cute girl in the apron or the boy with tattoos to actually be working on the other side of that window. They didn't seem to mind that I was slightly drenched in sweat having walked there under the sun of a blazing March afternoon. They were quite nice and gave my sister and I a bowl of water for our doggies. Tattoo boy said he would even make us more fries if we wanted. The fries ($2) were not the best and neither was my grilled cheese ($4) with tomato (yum!) and pickles (?). However, the food had a nice home-made quality to it and was all ready in about a minute. Peeps are right about the high-quality ingredients and the food is inexpensive. Holler. + +P.S. Don't forget the Ca$hM0nayyy +or to borrow from a sibling!",review,0Dngp-JFYvvXD4cy6plvbA,2,2,3 +uEJQSIjWui-TDWXaGlcqyQ,2009-08-16,ReKEC7gkFZIcaz14CnpH4A,4,"Finally made my way to the new Lolo's in Scottsdale. Live close by and really haven't heard of it until about a month ago when I was renting a video at Blockbuster. +Decided to go fairly late Saturday before they closed and at about 2pm the place was pretty packed. Was given a choice to sit at the bar which wasn't a problem. Impressed by the transformation as this location used to have a Tokyo Express which I would go to at least once a week. I was joined at the bar by 3 other people and given menus. Only issues I have with my whole meal is that they should have decided the bar so that people can put their legs underneath because the meal required a bit of gymnastics to fit comfortably. Other issue, but one I can forgive is that the 3 people next to me were asked what they wanted to drink, Koolaid, and somehow I became temporarily invisible and wasn't. Took about 5 minutes for anyone to bother to ask. I can't blame though because the place was busy and I who doesn't want a new place to be successful when the food and atmosphere are good. +Ordered the Betty Boop (chicken and waffle, and so did the 3 other people next to me...I have that effect on people). Chicken breast and waffle were delicious and I definitely had a sugar high from the 2 gallons of Koolaid that were served to me. I'll make a note to maybe go for some Diet Coke next time. Definitely recommend the place and hope to check it out with my family or a group of friends to have better seating.",review,1lSFhUewKa22FwhXuVgFdw,0,0,0 +vZBYSQtTbY9MaYu5qNuU8Q,2012-01-23,lu0SQOlm3geli0OHioXtlw,3,"Tooooooo crowded!! + +That takes all the fun of the place. As a mountain is a nice place to go up without feeling that you will loose your lungs. Going down feels faster than up. Being in regular shape it took us about 50 minutes to go up. A moderate hike and doable by all the family.",review,LqgGgWi3FLHBViX9tmZ9sw,1,2,1 +_OYlq2UoKPQO_ElqhC3a8w,2010-10-10,IbKWtTsFGhIL67rWvIdZvg,4,"I really like this place. There aren't that many lanes, so if you plan to go on a Friday or Saturday night, call ahead and reserve your lane. +This place has a lounge area with a good sized bar and couch area. Over where the 10 lanes are, there are about 4 pool tables, another bar, and another table and couches area. The end of the lanes have screens above them to watch sports or music videos. They play good music very loud. I had a really great time. +My only complaint, we reserved lanes for 4 hours, and when the 4 hours was up, they wanted us out immediately. They started bussing the tables just taking drinks away. I was busy changing my shoes and didn't notice the busboy grabbed my drink. Excuse me, I just purchased that. I let him know that I understood they wanted us gone, but should ask the person sitting there which drink is theirs before throwing it away. As we were leaving, I was at the other table in our area and the busboy asks me if any of the drinks on that table were mine. I reminded him that he threw mine away and he should probably be asking that question to somebody else. It really annoyed me. +I would definitely recommend it for a Sunday fun day. I didn't feel like we could really relax and have a good time on a Saturday because it was too busy and the staff was looking to make money rather than have their guests entertained.",review,liiYhDAP64C8uLyixBDWdg,0,3,1 +s0klhdxcAab0yEWw2Uuimw,2010-02-15,ApOntHI-ACdtD8lzqHRFKw,3,"It is a cute little restaurant, has a nice wine list. I ordered the Linguine with clam Sauce, and a glass of pino. Personally i think the food is actually pretty good, nice northern italian. But the service was just ok.",review,U7oMbMxoF0T-RlU4PhZGAA,0,0,0 +CVkUxfuLx5AGLI6eDFU4RA,2012-03-31,AlflZCiSITeQshAKNgUNYw,3,"I really want to rate the place higher. I like what it's all about. Instead of pulling the building down and rebuilding something in that space, it has been converted to a community space. + I went to see one of their cult classics, and the staff was ok. It was completely amateur hour - I guess that's ok for the type of movie, etc. The problem was this was a sold out movie, and the staff brought in folding chairs to sit on to watch - that would have been ok before the movie started, but ithey did it one at a time making noise for the first 30 minutes of the movie - clanging, whispering, etc. Then they kept getting up and down. + They seating was pretty bad. Low seats that reclined - normally that's ok, but there's usually some spring to it. These had no support at all. Halfway through my back was hurting and would have to readjust - but there was no comfortable way to sit in the chairs.",review,fwIXyM_7HFRfkVQMne79AA,0,0,0 +wDZiLz0A7CIXoBqSjFRMeQ,2011-07-24,o2aDt89mpURcy10qt3EZQQ,1,"This location was a Groupon find... Won't be back. The girl behind the counter was nice but even though I had the groupon right in front of me, she had to read it several times and I had to explain to her what I was supposed to be getting with it. The red light therapy is a nice idea... But the room the bed was in was lacking. They should hire an exterminator, not leave sticky bug traps down with dead bugs all over the floor where people generally have bare feet... Yuck!!",review,8fTTvS499XCz4oP49kxq8A,0,0,1 +KV-yJLmlODfUG1Mkds6kYw,2008-06-29,cns5AxuPI8FzxtzNKN6CNA,4,"Went here for dinner tonight. Service was great. They still bring out the plate of pickles, but now they also brought slices of challah bread and rolls (the onion one is awesome). + +I had the Vegetarian Delight Sandwich. Very tasty. The vegetable cream cheese on the sandwich was excellent. Huge portions. The tomato soup was good as well, but not as good as the soup at Bravi. + +I tasted some of the onion strings. Delicious. They had a dipping sauce that was a bit spicy. It was good too. + +My husband got Aaron's Choice - some kind of pastrami/corned beef sandwich. He liked it, but prefers Miracle Mile. + +Overall a good dining experience, and I got some bagels to go!",review,LN4cXKGPaGMDHm4nP9Idtg,1,2,0 +mhQCxOiqp03qnhGRTtPduw,2012-08-06,LD9WgzOlBTycGNg-OdnjpQ,5,"Best Vietnamese food I've had, and I've been to some very good Vietnamese places. Very fresh and delicious.",review,OytcPLkfaVPr7VUXG12wlQ,0,1,0 +P5uC-zfGG6yqoQDUyqyAvg,2012-06-25,J76Ikg-NZNm2UztYQ00wVg,5,"I Felt a sin coming on ....... + if i could give 10 stars i would !!!! + +Let me set the scene for you of this Kazilicious Sunday night ..... + +We enter through a solid planked door set in the rear ...(oh yes the +truth is inside) candlelit passageway leads you into a sexy,sultry +stone interior that is softened by the plush seating , dim lighting +,wine barrels .. i give his hand a squeeze and smile because we have +hit the mother load within this sinfully sexy speakeasy .The Tuscan +colors coupled with the stone ..deep ,rich ,decadent !!! His hand on +the small of my back as we approach our seats as the intimacy and +ambiance takes hold . + +A bowl of olives, 3 cheese fondue with apple ,the Tuscany pizza +....sexy damn noshes ..they know what they are doing here ..soft +...firm....dip....bite ..yesssss SO beyond sexy here..... + +Oh and the wine ,nectar of the gods, sign of fertility , here in this +setting it is like Ambrosia ,and your inner God or Goddess will surely +blossom ,and romance will bloom .... +It seems like thousands of labels here - we went with the M. +Chapoutier Le Sizeranne 98' ....Heady ,earthy ,smoky ,deep ,sweet and +ripe .the smell of currants and berries .lovely texture ,full bodied +.....DIVINE ! let the flirting begin ..coy toying of the glass stem +..sweet smiles ..love words escaping on a whisper between sips. + +We spent around $200 ,worth every penny in my opinion . + +Prior to the Kaz , the Rokerij was just about the sexiest spot to me +in the valley ...these two must share the crown . + +So to recap ; SEXY, SULTRY,SEDUCTIVE !!!!! posh,swank ... +Good Service , lush wine selection ,yummy tidbits ... +Ambiance up the wazoooo . + +A heady experience ..this is where lovers go ,a prelude to the +interlude of love !",review,vtC_cpesIJZ3--W9J-UIXA,4,4,4 +Xq9tkiHhyN_aBFswFeGLvA,2011-03-30,9zgk_9Fu1o9WltOIQccF3g,3,"Hmm-Didn't love it, didn't hate it. I was indifferent. +I like the decor and if I could give it a half a star just for having an outdoor dining area, I would. +The menu left a lot to be desired for me. We went at lunch time so I don't know what the dinner menu looks like. +It was just ok. Nothing blew me away. It's nice for people watching and has a really nice location.",review,EeSBXLMh3CvjSqBpJWT9gw,0,0,0 +E28ht8IEiO6FZbKktSo0Xw,2011-06-25,-_E6jvslAhQHbjNJIKeFQA,5,"Went today for the first time. The quesadillas were the best I've ever had. My husband had the Cuban sandwich, which of course I tried...it was equally delicious! The atmosphere made me feel like I was back in the Bahamas. And not to forget the staff. We sat at the bar, and the bartenders were wonderful and so nice!",review,MfZszvOQNY_xdbA9ruz_zQ,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2011-04-08,izamRtPGFqGjnl6r16Mgog,5,"I dream about their chopped salad...I, too, would use it as my screen saver if I didn't share a computer.",review,010uctFbL3rzTlxeylzAsw,0,0,0 +VrqEeynr7KqucvEjpz8w_g,2011-10-23,q42ejTsrVgTzz0NOVA7Zpw,5,"This is the best restaurant chain EVER!!!! I love EVERYTHING there and the service has always been A+. The fried zucchini strips (appetizer) are the best in the world, the Caesar salad is the best I ever had, even their croutons on the salad are better than any!!! Olive oil herb dip is Fabulous, the warm bread is like no other. Most of the dinners that I have tried have been excellent but the Chicken Bryan is magnificent. Waiters and manager the best.",review,6C30U6eLu10KNJYfhCUL2Q,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2010-08-19,4NdwnVzAkIXgaJWigRA2YA,5,"Fun little place to just explore and TRY so many different samplings. The staff was great and super friendly! The lemon cupcakes were AMAZING!!! + +Little tip: buy a baguette to try all the great olive oils and tapenades",review,zgpPapf1Rj1-4eX1zkA56A,0,3,0 +R8VwdLyvsp9iybNqRvm94g,2009-08-25,2TFl_P62BPRcSaEIVnaeJg,4,The tuna sandwich is fabulous!!! Definitely visit this place!!,review,qg9Jn8GeqQ8EuxNUFDshCg,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2010-07-12,jfE4hi5E6FNDUAszn9_Dsg,2,This place wasn't that great for the price. I spent 15 on 2 mini grilled cheese sliders and a tea (basically bar food over priced) Not much to choose from on the menu plus portion size didn't equal out to what I paid for. The crowd is very Scottsdale and the staff wasn't that friendly. Definitely wont go back here again.,review,ufHeqy-oyoef_ybRXA-Xuw,0,1,1 +yVQiGdxmnrkJDyQXv2maNA,2012-10-16,P5xnavtP2rJ3HLpAuSJbrQ,3,"We tried this place after reading most of the reviews. I had rice noodle soup w/ fishballs, squid, shrimp & veggies and hubby had shredded pork sandwich. Both were good and plenty of food. The pork sandwich was so cheap, it was hard to believe it wasn't a typo. Beats a Subway anyday! The neighborhood is a bit shady but if you don't mind that, it is fine. Service was quick and we will definitely revisit this place. People kept pouring in during the dinner hours. Can't beat the price!",review,BeC9T1PMdGwZ512_gKaUxg,0,0,0 +saCtN9IoDXPFk1KuB2FO6A,2009-10-29,9peQRzprCp4A_jzSLfte_g,5,"Melrose Pharmacy is my go-to pharmacy. Not only is it in my neighborhood, it is independently owned and operated by Teresa Stickler. Her and her husband Kurt are people who care about the community. The fact that they provide a level of service that their chain store competitors can only dream of is a is the icing on the cake. They are also lightening quick, dispensing most prescriptions while you wait. + +Moreover, they are a FULL service pharmacy, they also offer delivery (handy when you feel like you are on the verge of death) and useful recommendations on the pros and cons on a on non-prescription drugs and vitamins (often recommending the lower priced generic brand). In addition, you can find a wide variety of homeopathic products, as well as a selection of snacks, books and small gifts. + +Even if you don't need to get a prescription filled, it's worth a visit to check out the retro interior and grab and grab a vintage bottled pop and candy. Better yet, stop by on a First Friday when the pharmacy features live music, and frequent art shows in the studio in the same complex.",review,kvL7bId7FbaMi19TFl3h9w,1,0,0 +MbFxBwpqiXRWSvoTXt6Erg,2011-04-01,Fyi9QGf2dkumcd2wmDIrpA,2,I had a mammogram completed on 12/12/10. This facility has been covered by my health insurance for over a decade. But not this time. The doctor terminated his contract with the insurance provider on 12/01/10. Screwed for $300.,review,YP5eyNuicdw4pc6GzeBEQg,0,0,0 +ss8qF7hMxddIO1CQh99V8g,2012-02-21,AQZWFKBm6dSfBdgE6AduxA,5,"Loved this place!!!! Was searching for a great authentic BBQ place, and this is it!!!!!",review,u_V2O46KSoA5o9IgEZTD_Q,0,0,0 +N1Dq9PyY1jDQdZcX4u8oFg,2010-12-10,OM-rHICHUtMSB4S7cDSL8A,4,"You know what the 'bucks are all about, get a Venti for the long flight you won't regret it!",review,nFnMOEJPy98wdEKAVzFs3w,0,0,0 +Y293fHh5SZ0_9BZm4M6BCg,2010-07-06,SGjts-StAtmPax-pMWJ76w,4,Very old-school. Large portions and friendly staff. Good salsa and fresh chips.,review,h2heEPaqhuQTz-IC6csNjQ,1,1,0 +_gXpjRIjb5fv5f5IVGXvsw,2012-10-19,ZiDDFVqmI5NFRTlpdz36Dg,4,"Let's see..... +89 cents at Taco Bell for a taco that has cheese like sprinkles on a cupcake, or a Baja soft taco that has FIVE pieces of tomato in it? + +YOU +MUST +BE +JOKING. + +Compare your Baja soft taco to the picture sometime and feel free to yell at the counterperson. Yes this happened. Taco Bell should be sued for complete misprepresentation!! + +MEANWHILE at Del Taco..... + +39 cents for a balanced taco with a decent amount of cheese and delicious medium (""Scorcho"") sauce --- THE CHOICE IS CLEAR. Plus the deluxe tacos are CHOCK FULL. I usually get 4 regular tacos and end with 2 deluxe ones. +I've had the double cheeseburger once, nothing impressive there. It wants to be an In 'n' Out Double-Double, but it falls short, like when you were a kid and wanted Levi's 505's for Christmas and end up getting Sears jeans. +Come for the cheap tacos and LOAD UP I SAY! +The burritos are OK too.",review,zGz5NI4sscO4_6YYH-qVtA,0,0,0 +0LCqaCnEGesFEhpa6qNauQ,2012-01-27,-GVc9mZfji7S3twgytIwCQ,5,"Wow. If you're into owner-driven, husband-and-wife run, casual and unpretentious yet upper-class/comfortable ""fine"" environs, food, service, wine, and music (acoustic live music 3x/wk (with no cover!)), the kind of place where everyone talks to/welcomes everyone yet no one is nosy or cliquish, where the whole place cheerfully claps when Mrs Owner breaks a glass (and someone calls out ""it's earlier than that normally happens,""), free wi-fi, where you have a nice patio with heaters and a front-row Fountain view, wine by the bottle from their extensive retail collection or yours -- with just a $5 corkage (as well as a decent (7-9 reds and 7-9 whites selection by the glass for $7-$10), a great craft beer selection (Union Jack IPA!), couches, nice hightops, an l-shaped bar, great local artwork (also for sale), this will be your new favorite place. + +If you like stuffy, over-priced, boring, see-to-be-seen places with angry (or no) music, this place isn't for you. + +Second time here and Mr Owner greets me by name. Are you kidding?! Does that happen anymore? And when I say to him ""that's cool,"" someone else in the bar comments about how I must be new because that's just how they do it here. + +You can order anything off the menu from next door (Euro Pizza Cafe) for no up-charge. Amazing. Get the ""Dr Oz Sautéed Veggies."". Trust me. + +This place has a great vibe and one part of me hopes these positive reviews don't result in oppressive crowds, but on the other hand, something tells me they'd handle it with a smile and 5 star service. + +Get here. Just get here.",review,exefpuK6O1ctUUqTxq5XLg,1,1,0 +oZnDl9u2CImtvvKrc3KmPw,2008-12-27,i8PeT0FaEQseyCQHkKsJng,4,"The name says it all. This family owned restaurant (3 to be exact) specializes in tortas but they also carry your staple Mexican fast-food affair you would find in AZ. Everything I or anyone else has had has been solid. Just in case you don't know what a torta is, the best way I can explain what one is that it is essentially a toasted sandwich with a fusion of Mexican and American ingredients. When it comes to TEG's tortas, there are a few standouts. One would be the cochinita. + +Cochinita which is marinated pork is absolutely delicious by itself, but in a torta, it is absolutely scrumptious!!! My best description of what cochinita is to think of pulled pork that is braised in a slightly sweet, salty, and spicy redish/orangeish sauce. In addition, it has American sandwich staples such as mayo, shredded lettuce. What makes it a ""torta"" are the slices of sweet and sour pickled jalapenos and carrots and slices of avocado (and they do not skimp). What completes the sandwich, I mean torta, is the bread. It's always warm and fluffy in the inside and the outside always has a nice crisp texture from the grill. + +The other torta I would strongly recommend is the carne asada. The combination of the carne asada steak with mayo, fresh pico de gallo, and lettuce along with the warm bread makes this torta an absolute winner (my mouth is actually watering just thinking about it!). + +The Cubana, which has your typical ingredients that come with any spin on the classic Cuban, is also good. If you are a big fan of Cubans, then this one may be for you. But in my humble opinion, this does not anywhere near come close to the yummy goodness of the cochinita and carne asada. + +The Hawiiana (Hawaiian) is also a relative good choice. With the combination of Ham and fresh grilled pineapple along with other condiments, it also is descent selection. + +As I stated before, they do have staple Arizona style Mexican fast-food here and there are a few I would recommend. One would be the flautas (large deep fried rolled tacos). + +The pollo is the one I would suggest. If you envision your typical fried rolled tacos with guacamole and cheese, well this is not that, this is even better! The flautas at TEG are larger with much more stuffing then your typical rolled tacos. In addition, they make them with yummy flour tortillas, not your typical corn. The shredded chicken is well seasoned and moist. The tortilla is always fried perfectly, light crisp on the outside with the inside of the tortilla still soft. + +The burritos here are good, actually better than average, but because the tortas here are the showcase, everything else takes a backseat. The rice and beans are hit and miss, especially at the Chandler location. + +I used to give TEG four and a half stars, but with the mistake of expanding too quickly, combined with quality and consistency falling a bit, I would have to give them three and half stars; four stars would be stretching. I'm anal so three and three quarter seems to fit. + +For example, the Phoenix location, which the Son runs and where he started the chain has a few issues. For example, the Cochinita at the Phoenix location is always drier and saltier than the other two locations. In addition, they have certain items only at that location that the other two do not. One would be their Sonoran style hotdogs, which are excellent and an item I would highly recommend. When I have gone to both the Mesa and Chandler location and asked for them, and unfortunately they said they don't carry them. I was disappointed to say the least. + +Another example of inconsistency is the last time I went to the Chandler location. I brought a couple of out of town guests, and I was a little disappointed because the bread was a little too bready (dense) and not light and fluffy as usual. When all the ingredients are in perfect symphony, you have one amazing torta, but when one ingredient is off such as something like the bread being too dense throws off that harmonious balance of flavors and textures. In this case, it made a difference from a four and half star sandwich to a 3 star sandwich (which is still good in my book, but not great). + +The best and most consistent is their Mesa location. I think that it is because Mom and Pops run that particular location (well they used to anyways). Everything has always been consistently delici-oh-so-good. + +Overall, would I still recommend Tortas El Guero, and do I still go? Yes, but I wouldn't rave about the place like I once did especially with the inconsistencies I've experienced as of late.",review,CJWaJ8MfppMDGCiMXyl0pg,0,1,0 +uEJQSIjWui-TDWXaGlcqyQ,2009-10-27,Rb9IR9AGn6LQLFT4PyeLng,4,"I've been to both locations, and I wonder if is fair to rate them together or should I do it separate? +The Phoenix location is way to small for me, I don't like feeling like I'm almost sitting on my fellow diners lap and, this is a huge pet peeve of mine, I HATE smelling like food! Which is inevitable because the place is tiny. On the other hand it does have charm to it and the food is delicious. + +The Scottsdale location I can move, don't smell like food when I get out but is more sterile. And then there's the food.... + +I always ordered fried chicken (of course!) and the breast tends to be dry so I decided to do thigh and drumstick. Well, this last time the dark meat was fried to a burn:( And not only the skin but the meat too. I should have asked for two different pieces but I was starving, and my hunger won. A shame because I left without satisfying my craving for good fried chicken. The waffle was delicious as always and I ordered smothered potatoes which were very good. It seems with their mac & cheese people either love it or don't. I'm on the 'don't' group. It tastes milky and not very cheesy to me. I may try it again, because I love mac & cheese and I have the hope that maybe it was just bad luck before? + +Service is ok, sometimes better than others. + +After careful consideration, I'll give it 4 stars. I'll visit again, I'm pretty sure, and then I may go up or down one star.",review,h9d3VW5RTJymoFoLnN60_w,1,1,2 +zDfs1Kyk8orFF8bRnSPx-A,2013-01-04,F7VG9EWMQJtnFlCloVf2RA,4,"The building itself has that Frank Lloyd Wright 70s vibe going on...not my taste, but our City isn't very old so I can live with this minor aesthetic annoyance. (Remember when they almost tore the Orpheum down? Not cool. Fight to keep history here folks...) + +Anyway, anytime I hear people begrudgingly ask ""What is there to do in Phoenix?"" I would have to suggest: We do have culture here, if you're willing to venture outside of your comfort zone and outside of the suburbs. + +Phoenix is privileged enough to have an Opera Company and Ballet Company who are great at what they do. I saw the Nutcracker most recently and GOODNESS, they all had impressive resumes. The conductor, and costume designer were definitely stand outs. + +As audience members we are supremely lucky because the venue itself is small enough to ensure you will have a fantastic seat no matter where you are. + +I will go back. I can't wait to go back. My soul craves this, as should yours.",review,oKzkyfGalJC3-BOeLLCcIw,1,1,1 +shlAd7PLzWlQrkQ0uYcBBg,2012-10-15,nhTrPGuxaZXJopHe2Lth4g,5,"This is a great Thai food restaurant. My husband and I have been here a few times and have been very pleased with the food, as well as the service. We usually order a few curries and of course the pad Thai. The food is always consistently good. Good Thai food is sometimes hard to find, you definitely won't be disappointed here.",review,QD9zFX06J6Nqi8Ph_CE3CQ,0,0,0 +ntN85eu27C04nwyPa8IHtw,2009-08-02,kxqQPk-bX8KWne5I9lKJ8A,3,"I was disappointed too. I waited an hour and then took at seat at the counter which is ok with me, but if you've got long legs your only option is to sit spread-eagled in order to get close enough to your plate and there's not that much legroom to each side. In the small space in front of the counter the staff was in perpetual motion squeezing past each other to get drinks, etc. My cheddar, jalepeno, sausage omelette was very good, but not huge, and the hash browns were crisp and tasty on the outside but soggy on the inside. The whole wheat toast was great, but no choice of toppings...I was given a small dollop of peach preserves. +The waffles next to me looked fabulous, but I'm not a fan. Basically I didn't think it wasn't worth the hour wait in 100 degrees and I was relieved to get outside where there was some breathing room.",review,lEqTAm47rLt_6EI9Ey8kSw,1,2,2 +AoO0FJyUm01lmIJJTcPWEQ,2010-04-30,_rLKA5z57H-DCYUpbV0TPA,4,"I liked this place... because it's a local owned place with delicious greasy food. This place was written up in the East Valley Trib in one of their ""5 to try"" pieces, which is where I first heard about it. But, I actually think it's funnier that I have been in ""Hall of Fame"", a store located direclty next door several times and never given Giant Hamburgers a second glance. + +You walk into this place, past a grouping of tables and booths (only about 15 tables in the entire place) to the cash register where you order your meal. We each got a burger and fries and they were both great, a real gut-bomb, but sometimes you're in the mood for something that fits just that description. We sat and ate, and they came to bus our table for us. + +On the way out, we noticed the ""Yelp"" sticker on the door. Bonus points.",review,w1LjSa5wMexRIQ-82LKWmQ,0,0,0 +3dOUEmJjFfb8iW0H-kbEzQ,2012-02-19,KlfXAjwNgh-aCDSYELWFKA,4,"This Target gets the job done. Their shelves tend to be in a little disarray, and their makeup selections are generally lacking, but other than superfluous purchases I didn't even need to make, this Target has never let me down. + +The grocery section is probably the cleanest and best in the store. I love perusing these aisles. + +Their clothing section is pretty diverse, but because the store is somewhat small, it's packed in tight. It's a challenge to maneuver the area. + +The biggest perk is its central location to southern Tempe. It's also very rarely busy during the day, which is awesome!",review,ast7yCfvhIwaD53OFSXoag,3,2,1 +wct7rZKyZqZftzmAU-vhWQ,2009-09-06,YLO-muSGYKPzIVXNIQbLNw,4,"I love Thai food. And I like it hot. Thai Lahna wraps these two expectations up in a perfect package. It's the most authentic Thai food in the Valley! + Like so many culinary jewels in the Valley, the restaurant is nestled in a strip mall between a tanning salon and a yoga studio. The tables are covered in the same silks that I brought back with me from my own Thailand adventure and the staff is super friendly. + I am addicted to the hot and sour soup with chicken. It's served piping hot with tons of vegies and even more flavor. I always choose the lemon grass flavor, but I'm sure the coconut one is equally delectable. The Green Curry (#71) is also a favorite because I'm a big fan of bamboo shoots. I usually get it with chicken. I also love the #55 (which I can't actually pronounce, yet alone spell) with beef. + For lunch, the #6 will change your life. I like it with chicken and a TALL glass of water. I always order is spicy but for the faint of heart I would recommend going with the mild version. + I generally order takeout but dining in is also a fun experience. I have not had one bad meal here and the price point is right on! Take a group of friends and have fun!",review,ClItHsk05vOKhg4O3DtMqw,0,1,0 +hF0p0dYtDqOfDyKTVUeGZA,2010-07-12,orenM5M73nvnRZClEFQNPw,4,"Tried this place for the first time and had the chicken pho and and mongolian beef with red rice. All was delicious...but I especially loved their red rice, it was spicy and soooo good. Everything is very reasonably priced and you can even get it delivered from a service called You Buy and We Fly!!",review,JkMOQaMjlBHMqp6gj-hL3w,1,1,0 +9ziO3NpoNTKHvIKCBFB_fQ,2012-01-29,uNzewpl1NSLmRcgwdxKt4w,4,"I went here with a party of 4 on Saturday night and it was surprisingly dead. Not that that's a bad thing because I don't like crowds. The place is pretty sheik but you still feel like you're in a hotel. Service was fast and friendly but I think it was our waiter's first night or something. He was very awkward but it was ok. + +I was pissed we couldn't get the happy hour menu/prices in the main dining room. I know it is common practice for crowded places full of douchebags, but the bar and the main dining room were pretty empty so wtf? + +I'm a vodka guy and their vodka menu is pretty neat. They have 8 or 9 unique vodkas from around the US and clearly list their name, where they are from and the price. What I didn't like was their martinis. Pretty much the worst I've ever had anywhere. Tiny pours and full of ice chips. It was like a vodka slushy (oh snap I think I just invented something!!!). + +Here is a rundown of the food: + +* bread to start - excellent...love the lightly buttered and salted top +* tomato and mozzarella salad - excellent - one of the best i've ever had. great dressing and ample balls of fresh mozzarella. +* pretzel fondue - the pretzels were excellent but the fondue and mustard were no bueno. the fondu was gritty and the mustard lacked the kick that I love on pretzels. +* burger - pretty solid but nothing special +* mac n' cheese with Shriner's sausage - very unique and very tasty. it was worth having once but I wouldn't get it again. +* tater tots - perfectly cooked. salty/crunchy on the outside, fluffy on the inside. The only thing that would have made these better is some type of aioli or other special dipping sauce other than ketchup. + +The main dishes of the other people in my party looked excellent. I should have been more adventurous and gone with something more than a standard burger. Maybe next time. + +I was going to give this place 3 stars but I just can't. They try to think out of the box to create dishes that are unique, have fresh ingredients, and have a local twist. I will return.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,3,0 +M_Aur61hhpgId1mUzFZByw,2009-08-11,Ml3mNo4MnnxeCiwRQFRSsA,3,Pretty nice sports bar. A lot of nice tvs. Food is typical sports bar food with a few exceptional choices. Would stop by again if I was in the area.,review,bFVetbys5Z74h1fcihmvOw,0,0,0 +IdnYOlL9aDfMu_S2kcaUkQ,2011-07-27,aoQTg5HqhzguKrygbUmccw,4,"This local restaurant is a gem. This is located down the street from the Hilton at Squaw Peak and probably the best restaurant in the area that is filled with a lot of chain type restaurants. I had heard about the Rokerij small plates menu from office workers and I thought I would give it a try. My girlfriend and I did not have any reservations, so we went downstairs in their bar area and ate the bar. You can order the Mew Mexican specialities or the Rokerij side of the menu. There was so much to choose from so we decided to eat off of the small plates menu. We chose the 3 small plates for $25. I was thinking the plates were going to be small and that we would not be filled. I appreciated that on the menu they told you how many ""pieces"" you were going to get of each item. The tenderloin on toast with triple cream brie was delicious. The amount of tenderloin was just right and the cream brie made it taste over the top. The scallops were cooked perfectly as well. Thoroughly enjoyed the taco sampler. Everything is fresh and the service was great. The couple next to us ordered off of the New Mexican cuisine side. The servings were ample and looked very tasty. I have heard the menu for brunch is equally fanstastic, can't wait to go back!",review,0-DnHbefypwaHjA-fH8wTw,0,0,0 +Bc4DoKgrKCtCuN-0O5He3A,2012-09-21,IVeQbntRfSZF7Kd109BpSw,4,"oooooooooh man am I SO GLAD this place isn't near my house, I would gain 20 pounds in no time! + +My sister took me here for the first time a couple weeks ago and my mind was blown by all the unique flavors they served! + +The shop itself is very cute and modern. I like that they have a section in the back with a bunch of board games, very cool. + +As for the ice cream I got the dutch chocolate and the horchata. The horchata was so so good, I cant stop thinking about it! + +The following week I took the husband there. Again the ice cream was very good but the service was terrible. It was an older lady behind the counter and she really couldn't care less that we were standing there. She let me sample an ice cream and then I just stood there for a good 5 minutes while she did other things behind the counter. We did finally get served but my husband wasn't impressed with the serves one bit. This time I got my ice cream in a waffle cone, the cone was so light and airy, I loved it!",review,6ts41fCsDKHbFZaKOMNmVQ,0,0,0 +zp713qNhx8d9KCJJnrw1xA,2012-04-04,gIdj1kUaUm5L3WVUWymc3g,4,"Lunchtime out with a relative on a weekday, and La Condesa has a seat by the window. There is really nothing like its saloon-artsy walls for us to gaze. The Dia De los Muertos motif and wooden furniture make it perfect for easy conversation. +Most folks seated around us already know where to go for lunch that's not too pricey and homemade. +The Horchata is nothing short of liquid dessert, filled with pecans, fruit and rice milk. You can avoid dairy all together with this and a special bullet burro with guac and lettuce. +The salsa bar sets the standard for good restaurants. It's wide variety of salsas leave little doubt what creative people run the place. My hope is that only a few people read this and try it. Otherwise, to my chagrin, the next time we park on 16th Street, we may have to WAIT in a line outside.",review,4nJDgx8xTdIF2e60kAbQ4g,0,0,0 +1mhywrdsgdqJM3OGZIpVtA,2012-05-07,C71OVnA3EAksRiyBhh9EEg,3,There are definitely better places to go to in Old Town. Overall Martini Ranch is usually pretty slow and charge a cover to get into an empty place. Last time I went there my friend and I got our cover back because it was so dead. They do have good martinis though.,review,uq1y9VRH9vOy91x8f4TQSg,0,1,0 +NKMyRG-hK6_HNMlckY7Hxw,2012-05-14,0MAj6HuvWTlvvg428kPloQ,5,"I came here for the first time ever on Mother's Day. They were packed ,the line was out the door and down the path. Still they managed to get everyone seated and quickly attended to. +We were a party of 10 our server was so great and i am sorry to say i do not remember her name. She had all 10 drinks refilled continuously. Brought us lemons and cleared the table with amazing speed, as well as taking care of a completely full restaurant packed with Children that were running under foot. The only down part was that they had plastic dishes but, with all those people what are your choices. +I loved the food. I had shrimp and fish and vegetables. Nothing fried. The best part for me was the Chocolate fondu!! Although there were many different choices. You could never say that you did not like what they were serving. have seen a million adverts for this place and i am happy that i finally got to go.",review,F6QsMoJdvtohlbnST-fDyQ,1,2,2 +SYqTY48DJa1cYhglvmgvsQ,2007-08-04,cgCFse0w-wOjm1eTT8Fl7Q,4,"I have stayed in this hotel a few times. I think overall it's good. I am happy with the golf view. The restaurant is alright. + +Update 9/7/07 - I stayed over at this Hotel again....really great customer service!",review,3gcWln_pMrg_Qt89BlfEUg,1,1,0 +UU-kkvyX6pyrl_4fK6Qpvg,2009-03-16,Hjo31dXazWlZssOQnxnMHw,4,"We have bought a lot of our marine/boating supplies here, as well as fishing gear. They have a very helpful staff, especially this fishing Dude named Issac, and they have just about everything you'll need for your outdoor enjoyment. However, I don't find their pricing very stimulating... They have an exceptional inventory, but you are going to pay full retail prices here. I prefer to get outdoor gear on e bay or at Walmart, at discounted prices. But, its a very fun place to browse and shop. The restaurant is pretty good too, and also fun!",review,iBO2m9xXivsIbvFnZHsNvg,1,1,1 +CD-2yHTSObgvAhW-pYHfMw,2012-04-25,u93ukANTQUyfQI2PINLuQg,4,"I have to admit I was a bit hesitate about staying here after reading some of the previous reviews. We stayed in the 9000 section of the hotel which is behind the convention center part. I'd recommend this if you want something quiet where you won't get noise from the front parking area or pools. Yes, I said pools...a great thing for those of us who only wanted to relax and get some sun. +Every staff member that we encountered walking the property was friendly and always acknowledged us. +We had a two queen room and the room itself was very large and I liked that every room has either a patio or balcony. Our view happened to be of the basketball and tennis court but it was nice to be able to go outside and sit on the patio in the morning to have coffee and relax. I assume that we had a room that had already been renovated since the bedding looked new...and the bed was SO comfortable! +The breakfast buffet is good and it's nice that you can order eggs anyway you like them as part of that. Other than that we mostly just had drinks while laying by the pool. + +The only negative thing that comes to mind is the fact that the toilets are VERY loud when flushed. I have no idea if it was the rooms next to us or above us but every time someone flushed a toilet in the middle of the night I woke up....I am a light sleeper but still, if there are more renovations to be done I hope this is something they can address. + +The location is great and I can't wait to book my next trip back.",review,1WriFmPd3h0-L45cCDzrVw,0,0,0 +wOvAbdVYDaguotpdSALsfg,2010-08-28,tGry0EcrYXE53DjHdEWOgw,1,"I ate here for the first time a few weeks ago on a Friday night/Saturday morning after seeing a show at the Tempe Improv. + +I came in around midnight and the place was not that busy. The waitress was pretty nice (did everything expected for a waitress) and the guy who I thought was the manager was easy to talk to. However, those are the only two good things I can say about the restaurant. + +I ordered the BBQ wings and they were TERRIBLE. The flavor was very bland and half cold. The blue cheese I ordered was quite watery as well. + +I also sat by the kitchen and noticed that a guy in the back was washing a stool in a sink near where the food was made. Needless to say, I won't be eating at Hooters anytime soon.",review,odaj8Gm4jc7lF20WoZ8RZg,0,0,0 +pa6K7DGByxBXxcVJ59nWMw,2011-08-15,CBcv8KvsV2jxubwVvrJhHg,3,"Would have been 4 stats based on prior visit. This past visit the service was just garbage. Not the servers fault, she should have never been on the floor in the first place. Pretty annoyed that she had to ask other servers for assistance while taking our order. What's the soup? I don't know, Jim what's the soup? Is there cheese on the French dip. I don't know? Karen is there cheese on the French dip? The food has always been great and we will be back. Hopefully I can give them 4 stars next visit? Oh yeah, love the.new location!",review,XDVABSG5JRXry3Dm45vnyA,0,0,2 +oyzxIqrtzu-8sWlPhJVsLw,2012-06-25,S_dxK8th_fjMYRuNc5l39w,5,"The best ! + +From my first shredded beef taco almost a year ago ..i have been lovin' this place. +I also love the number 13 combo platter (.Mini beef chimi's ,Gauc ,rice and beans) + +The tacos are 5 star fresh and yum ! ... AND reasonably priced.",review,vtC_cpesIJZ3--W9J-UIXA,2,2,2 +52QtjHlHoa7V611bOvv1aw,2009-03-09,wBNgwzIHJRE_P6nGZ50nMg,5,"We showed up out of the blue on Valentine's night looking for food. We got a seat at the sushi bar right away, but the place was otherwise packed. I guess we were lucky. We passed on the V-day prix-fixe menu and decided to order as we ate. + +Our waitress was visibly perturbed by my wife's order of tap water to drink and vegetable tempura to start. Judging by her expression, she took us for deadbeats; it wasn't offensive but hilarious, we're old enough to be confident in our own opinions of ourselves. Anyway, the vibe at the W was definitely people trying hard to be cool and of-the-moment. + +In any event, we struck up a conversation with the chef behind the bar where we were sitting. We initially ordered some basic sashimi dishes, but when I asked the chef for suggestions, he started rattling off a series of custom creations he could make. So we let him do his best, and he turned out a great collection of sashimi dishes, none, at least as far as I could tell, on the menu. + +We had a great meal, and we would definitely return, at least if we didn't live in San Diego. + +(The waitress eventually warmed up, probably thawing as she watched us eat through plate after plate of sashimi....)",review,oSzxMYgem8Oi3f9wfoS_cA,1,1,0 +XWpkTxBLgRXxl7g2Hw62Qg,2012-06-01,EPjdqHHenNpEdEb59Dv0-g,5,I didn't know what to expect from this store. It was over 105° so I wanted something cold! You get samples to help you or confuse you in to many choices! I went with the basic: cookies& cream mixed with vanilla carmel. Do yourself a favor & get the large so you can mix plus go on Thursday for double stamp day!,review,OD7nfm02bJDvbz7nsikFsA,0,1,0 +eTbtfgUtfewdncgVf2CbWw,2012-06-23,Y_VehMo9LmLoNQN_pdW0Kw,5,"Absolutely unbelievable!!! This is so worth the drive from Scottsdale to Tempe! But get there early as they close early and run out of food! It's so delicious my mouth is watering just thinking about it. I love French pastries, crepes and desserts! The macaroons melt in your mouth. I will be returning soon!",review,MWIfyGWBijcFJ-3JS1hWnw,0,1,0 +9Y3aQAVITkEJYe5vLZr13w,2010-08-11,QEkvWRmUEYaMpDhur-pQ2A,3,"Ok... So I am a sucker for a great breakfast joint that isn't some huge national chain. Maybe it's the fact that orange county seriously lacks many good breakfast joint option. Secondly, the fact that they have dog friendly patio service elevates the place in my book. + +Our trips to Scottsdale aren't complete until we make a stop here for breakfast. The portions are huge! The surprising part is that the food is good, which is not usually the case with places with places that do large portions (usually hoping that size covers up the taste). + +With their Mexican options such as the breakfast burrito or huevos ranchero... They knock the cover off the ball. The green chil pork in the huevos rancheros is fantastic and keeps me coming back for it.",review,BQBi0UVhsiut14E6uh1YKg,0,0,0 +AsSCv0q_BWqIe3mX2JqsOQ,2012-08-08,qkDdzI2wcxwg0SqZZYcMUg,5,Best Ice cream sandwhich I have ever had,review,lh1-4Sp3InwVLeKrEw0t4w,1,1,0 +Xq9tkiHhyN_aBFswFeGLvA,2011-03-10,PRhlVT0v4F3CmKGc-FR08Q,3,"Good vibe - and outstanding location - they definitely work well with a large group (10), delivering orders to the right person without asking ""who gets ..."" LOVE THAT KIND OF SERVICE. And not once, NOT ONCE, did the service people call any of our group ""guys"" (okay, okay, a pet peeve of mine). Horseradish potatoes are a bit salty -- and prime rib serving is definitely less than generous. That said -- the fish and chips were great, as were (according to one of our party) the pork and beans. Desserts are HUGE -- share with 2 or 3 others.",review,3PrvtLsXVbxVYaIfh4y05w,0,1,0 +IoFggnoj1P4EcmNEP2K6Ng,2011-01-30,B_crZhY30U-KdQ3IsFMXqQ,3,"This place isn't bad. The place is pretty big in size and I love that they have a drive-thru. I like coming here on the weekends, especially when I need to study, particularly in the vault. Some times they have live music, which can be good or bad, depending on if you're there to study or hang out. They have decent coffee, not the best, but not awful. And I'd prefer to go here over Starbucks any day.",review,BgY9LwHmY8BO_lPI3pNRFQ,0,0,0 +NadvCSdVDPx2K3z0827H9g,2011-04-20,cI9TMVFYjo5HwLrYmSaajA,5,"Took Maddie here for a quick nail trim, was super impressed. Friendly staff, prompt service, and light on the wallet. What more could you want. My dog is with me always, so I wont need the boarding services, but will definitely make this my new pet vet! My co-workers have gone to the vaccination clinic they have where they were also impressed by the service and low price! Thumbs up for this place!",review,e5YZvlSRknGmROE209SF3Q,0,0,0 +gUt-pPUpOVVhaCFC8-E4yQ,2011-05-18,i_djrvoDoOSb-WM6UsMNYg,4,"This is a standard place to celebrate Birthdays. The drinks are delicious especially the kiwi and acai specialty drinks. The rolls are over $10, but they are unique and tasty. The environment is very cool and the location is great. Parking is bad just like everywhere in Scottsdale, you need to park in the street. Location is great because you can grab dinner here and then go out after. There is also karaoke available if you want to rent a room for a special occasion.",review,5gmnzvjYprzK21Q5awYF_Q,0,2,0 +Ax11wyp-FudujeU9nejQbw,2011-04-13,rt8iVOy3zE4AHp-l0af3pQ,3,"The hubs and I stroll through the indoor market when we are down at the farmer's market on the weekends. They seem to have a good assortment of items, though the prices are quite high. But I'm willing to give them the benefit of the doubt because they are a local business. + +One morning we were at the farmer's market and decided to grab something for breakfast - its never a good idea to shop hungry :). I got in line for coffee while the hubs ordered breakfast. The coffee is fabulous! I like my food simple - so when the hubs came back with an egg and cheese I wasn't looking for anything fancy (eggs, cheese, maybe a little butter, salt and pepper on some sort of bread product). I quickly found out that this was some sort of a hipster egg and cheese. Lettuce on an egg and cheese? Who does that? There were also tomatoes, mustard and assorted spices. I'm willing to admit that maybe its just me and my underdeveloped ""simple"" palette. So if you are a hipster and you're hankering for an egg and cheese - this is your place. Regardless, be sure to get a cup of coffee, its awesome!",review,6fboUxwhAsUMx1F9yCzlMQ,1,3,2 +N_6bV3c3JagKW7sD3X9ldA,2008-04-13,nFlPy6OdhjkQXP1g51r-4Q,5,"Wow, this place is still here? I went there as a girl (15+ years ago) with the family on a regular basis. If it's still around, then it MUST be good!",review,Odoe2LqAPrV0TjdXxkP7Mg,0,1,1 +Rj5gyaRIIwDX_OJa1LlE4A,2012-09-03,Y7VrHxxI2x8qkCl6qdmM-w,2,"I expected better. + +The ambiance is pleasant. It's lit well and the furniture is very new. The booth was comfortable. The bar appears to be a little dark and moody, but in a sultry way. + +We were there on the Sunday before Labor Day, around 7 PM and it wasn't busy at all. Maybe 8 patrons besides us. We were seated right away in a booth. The waiter was very quick to take our order and explained the specials. + +For the appetizer we ordered the cheese, fruit and crackers. They ""ran out"" of crackers and gave us toasted bread soaked in butter instead. We asked if we could have dry bread instead. They obliged. There were 3 pieces of cheese, all of which were the same and brie. Seriously, please diversify the cheese plate with more than 1 type of cheese. And have crackers to go with it, since t's on the menu description. + +My girlfriend and I both ordered a quarter chicken. I had the true jerk sauce and she had the honey truffle sauce. The chicken quality was on par with Boston Market or Costco, maybe even fattier. We were seriously unimpressed. The sauces were good, but definitely did not blow your socks off. + +You get to choose two sides along with your chicken. I had zucchini and whipped potatoes. The whipped potatoes come with your choice of three ingredients from a list of 12 or so. Horseradish, garlic and mesquite sour cream were my choices. The potatoes were excellent, both zesty and filling. + +Overall, I was unimpressed. This place is like an upscale Boston Market where the chicken is lower quality and the only improvement is in the quality of the sides. The sauces are good, but you can do much better.",review,F6d_GAFAEuvIEW1Zg5KPRw,1,1,1 +t-jzbX3Qh-W8vikXexmkGw,2012-10-02,VpJ7UzZKDy27kpvwX1GoXQ,4,"I registered at both the combo Toys R Us/Babies R Us store by my house (on Bell Rd) and finished up at this location, since it had a larger variety. +Nice goody bag, ample selection of items. +Furniture prices are over inflated, but that seems typical for all baby furniture. +You get lots of coupons too once you sign up for their rewards program which come in really handy! + +There are changing tables in the restrooms as well as fantastic mother's rooms..which have a rocker, sofa, and changing tables, as well as wipes, diapers, etc. Great for breastfeeding discreetly!",review,EeSBXLMh3CvjSqBpJWT9gw,0,0,0 +ykKSshfa9ANCZCuvM2LaWg,2010-08-19,NnjsynTt-qqFehuqEehIfA,3,"My sweet tooth was yelling at me! I had to stop in. Four times (to date) and each time I try something different. Other than the cheese curds (which where just ok) each visit was for the frozen custard. +VERY RICH and CREAMY a little goes a LOOOOONG way. I have tried a small berry sundae, a pineapple malt, and a small black cherry cheesecake concrete mixer. + +The sundae by far has been my favorite. I love the simplicity, the berries were not overly sweet, strangely artificially thickened. + +The malt was nice and malty which I really appreciated and was rather thick even after melting slightly. + +Now the concrete mixer was the richest of the rich. Maybe it was because I decided to go with a cheesecake flavor (to which you can add any other fruit or topping flavor). It was very tart like cream cheese (about as tart as a good Greek yogurt) with small bits of graham crumbs swirled through and of course the blackberry flavor.",review,usQTOj7LQ9v0Fl98gRa3Iw,1,2,1 +_ql42UadWUh9SgU09_c2mQ,2008-09-24,HlXOJDG7iZpt-oIiV9tzDw,3,"I went to Pei Wei last night for a casual girls' night dinner. It was a perfect place for a group of girls to meet because of the following: + +-it's cheap +-it's fast casual so each person pays their own bill and then sits down (no stress when the bill comes as is often the case with groups) +-there is plenty to choose from on the menu +-for those that are picky or dieting, they are great about special orders, sauce on the side, etc... + +That being said, Pei Wei is just average in my eyes; never my first choice of places to go, but I can always find something to eat... Last night I had the shrimp teriyaki bowl with brown rice. The shrimp tasted like it came from the freezer (probably because it did), but the veggies, rice, and sauce were all pretty good. I noticed they changed the menu a bit since my last visit, and a new 'special' is a Vietnamese Noodle Bowl - Pho type dish. The chicken lettuce wraps and edamame are always safe bets and hopefully will remain on their menu forever. + +I'm sure I'll be back to Pei Wei because of the positive factors listed above - the concept is a good one, just don't compare it to a high end restaurant and enjoy it for what it is! + +PS - shout out to all the girls that came out last night - I had fun seeing all of you and can't wait for the next one!",review,fczQCSmaWF78toLEmb0Zsw,4,9,1 +N2T_ToBx97ZSo3iW3r9xWA,2012-03-22,0si6a9C7Np0w4DllNvwKdA,5,"This is my favorite venue--we've held two events here, and I've attended another four. +As an attendee, it's clean, bright, FREE parking, good food, constantly refreshed coffee and beverages, and good layout. I love it. As a planner, it's a good deal for what you get, and it's a well managed event end to end. Conference staff are easy to work with, flexible, and they are there to support you. IT works and it works well. it's a great facility, food, service, and staff. Good open expo area too, if you have vendors, advice--do not use a separate room if you have a lot of vendors--put them in the main ballroom, and/or the vestibule, not in any other room. Vendors like to be showcased and have traffic, not shuttled off to a low traffic low visibility area --regardless of any price savings.",review,wvsMlpa6U9RV4-_pU4gBJg,0,0,0 +fmWyI5ec05F8PJpx3eNpLg,2012-03-11,fHT5m3-x8UpBmliStkiorw,5,"Rarely give a 5, but truthfully? We set out to go to Giuseppes and stopped here...thought we were there...I'm sure Giu. is good, but Arrivederci is the bomb. We will keep going on every visit. Reasonable and really, really authentic. Bueno Sera is your welcome..and they mean it! We loved it. . . reasonable, too. b",review,65_Tmc3eZxr9aMbF6rGcOg,0,0,1 +xm8F51qKjx0cfdOSukTDng,2007-09-04,95oM9c2xw8K_ByOorm1g9g,5,"The pool area was very nice. Every chair had a towel on it ready for you. The pool service was great. Greg Badger is the most hard-working waiter there. He was out in the sun in upper 90/lower 100 degree temperatures and was very helpful to all the guests. I ate at Elements the other times I visited Arizona, but the poolside menu is great too! I preferred the orange chicken bento box. Although edamame was not on the poolside menu, our waiter was able to get it for us. That is great service! + +The bed was very comfortable; nice and soft. I also liked the wall-mounted, flatscreen LCD tv.The valet service was great as well. We were greeted everytime we drove into the Sanctuary complex. + +The tennis courts were very nice as well. I played during the morning and made use of their ball machine to warm up.",review,qd_4Oc9RnxTmvOGtotYJzA,0,2,0 +yMUVflS-2SnOGafXmdHy6w,2012-04-17,JHxx5aZObBmG7OKIlZfuoQ,5,"We recently moved nearby Pho Ao Sen and dine there often. I love their food, the service, and also the atmosphere. My favorite's are the bun dishes, I always order the no. 26 with chicken instead of pork and they have a delicious vegetarian lemongrass beef vermicelli that I would highly recommend. Pho Ao Sen is a great place to dine with friends, mine have always enjoyed the experience.",review,8cwxbFmRnOXUOnAhaMhTzw,0,0,0 +UIGFrEcoDsw05I1UOrxdOA,2010-09-23,Lcs_S1llDzNMZvjfA2vSpQ,1,"Read al lthe hype, so decided to give Cyclo a try. What a disappointment! Portions were small and overpriced, owner thinks she's the next best thing to sliced bread. She needs to go back to Vietnam to remember how real Vietnamese food is prepared. + +Give this place a miss.",review,KwQs1O_M5Y83LYrmES7KIQ,2,5,1 +won3i4Cpc4M8YnbWBHHUqw,2011-03-23,1twmYoqVmZUky9X2in-43A,4,"Used a Groupon here, and it was a great experience! The express mani/pedi wasn't express at all - they took their time with me, and everything felt great! + +The woman who did my pedicure was fantastic. My toes and feet look wonderful! + +The woman who did my manicure was pretty good. The only issue is that she accidentally cut my thumb. When it bled a little, she just painted over it. It's now been a few days, and my thumb still hurts. + +Overall, it was a good experience though, and the staff was very friendly! I would return for sure.",review,xFG4Ca2HHmbxDTkMlmHnjQ,0,1,0 +xBCfrESSbroTjhVcRfG4NA,2011-01-25,ioUQfVB76uyEuhUNI05M4A,5,"I was in Phoenix for three weeks on a business trip and luckily found this spot on my 3rd day in town. I ended up eating here 7 times in 21 days. I brought my coworkers here, and they all ended up eating here at least 2-3 times. It's just that good. + +So how good is it? Lets just say that their tortilla soup was the only thing that could cure my horrible hangover after a long night in Scottsdale! + +I've eaten the fish tacos, fajitas, enchiladas, nachos, and tortilla soup. All were exceptional! They also bring out chips with salsa, as well as beans, which was a nice touch. + +The dining area is fairly small, but they do have an outside dining area as well. The wait staff is very friendly, and they will get you drinks as soon as you sit down, which is something that more restaurants should do! The food comes out very quickly, and they do have 2 TVs, one on either side of the dining room, which are usually tuned to a sporting event. + +I've been out of Phoenix for 3 months now and I miss Mi Pueblo! I'll definitely be going back the next time that I'm in Phoenix!",review,_dN47iPElN0QqRc1pmntvA,0,3,0 +O-Xa9GCFWI65YiBD5Jw_hA,2008-05-20,tnVcCjuSQYwA6cKXWZOxrQ,5,"Ok so us 5 hot chix got all dolled up for dinner at City Hall it was about 7 when we arrived on Saturday. The service was top notch from the get go starting with the valet. We were seated by a pleasant hostess in the large main room. Our waiter was an entertaining gentleman, that's one huge plus I have to say about Mastro's is they ""usually"" have seasoned wait staff they really know their product. + +They brought us the great basket of warm breads, we ordered bottled water for all and a bottle of some 06 Sauv Blanc that was mighty tasty. It was impossible to have an empty glass this night! + +Everyone had fillet's but me of course, I mainly had apps, side's, wine and desert ;) I did try the seared ahi tuna it was ok I wasn't too impressed with it though. Beefsteak tomato & mozz (see pics) very yummy! The creamed corn, sauteed asparagus and mash were all very good!! I couldn't talk anyone into the lobster mash or any caviar boohoo me. =( Everyone loved their meal!! + +My g/f was coming back from the bathroom and missed a step or something somehow she lost her shoe but there was a busser or someone right behind her he picked it up for her and even put it back on for her! Now that is what I call 5 Star Service!! + +We had creme brle they served it with various fresh berries and a huge bowl of their fresh made whip cream yum-gasm's were had all around. While Mastro's is not my top choice since I am not a ""Steakhouse kinda girl"" it was all good stuff. They always play some Michael Bubl and who doesn't just love him!?! It was about 3 bills total and we went home with doggy bags and full tummy's. + +P.S. I had their sweet potato fries they were good but I like the ones at Fez better....just sayin. (O_o)",review,V0y4fqp-4pSRfsz0FmsjPA,5,7,5 +WPmamMTGAmNYXGoXW1mWyQ,2010-01-19,6bQta1HtLii1ic_G0bCcjw,4,I visited Sala Thai with a friend and I had the Pad Thai. Food was pretty tasty and very filling. It had a nice tang but I might have preferred to have a fork and knife to cut the very long noodles with. Other than that I'd definitely visit again.,review,TgXQJsWCTVE4BFijf0kM8g,0,0,0 +8t80-omyflkywRfu9LPh6g,2011-09-29,5aE_POeGQDIFSglAvwgIVQ,5,I love this place! My girlfriend and I go here to celebrate special occasions and the staff is so friendly. We sat at the bar last time and the bartender Jesse was so great. The happy hour menu was amazing too. $5 Mark West Pinot Noir! The manager was super friendly and came over to make sure we were doing okay. Great experience! Definitely recommend the calamari too!,review,aM2nMnlpO9vInVtVw78eig,1,2,0 +kEyCMHBnohaWc81omLDfYg,2012-02-29,BGqBdmUgDbVoD0D_IWMbcQ,5,"I can only vouch for the chicken salad, as it's the only thing I've ever tried in the 20 years I've been coming here. It's THAT good. I always think about trying something else, but why mess with perfection? + +Walking inside gives you the sense that you've stepped into a time machine and arrived in the late 70's. I, personally, find it to be awesome. Most of Scottsdale is lacking in historic flare. And yes, the late 70s is historic by Scottsdale standards. Besides, whatever money they're not spending on updating the decor is clearly going right into their magically delicious chicken salad.",review,FNFJ97BmcQklkYNQNRA7Ug,0,0,1 +OuGcrCgeTBrJnEGvLZ3JvQ,2012-07-18,VUTsA0j-yLDGSAuQM0Djyg,5,I would order silvermine over Jimmy Johns ANY DAY! They have the best meatball sub....compared to Jimmy' Johns it is GOLDEN (never mind the fact that JJ's doesn't have hot subs...) They are always fast to deliver and the food is always great. My go to sandwich shop **MUCH LOVE TO SM!*,review,cCNucgcprU1pEr_TH5qfaw,0,1,0 +4iJUNAUVYNEuh16yK6Virg,2010-06-12,BjrkPzda0Li8TMokdQEHCQ,4,"Great BBQ - Friendly staff, super atmosphere and reasonable prices - what else can you ask for? +Ribs and BBQ Chicken are my favorite. Try the Devils spit sauce if you dare.",review,tCLJBVBcpzaYhHKW7yjPeQ,0,0,0 +jTcLbRCOCnGB4wCgsIYswg,2007-03-31,4pXQ7ptvpqt3U7G1tHKzfA,5,"Put it in the baby book. Baby's first AJ's. And you'll always have a special soft place in your heart for your first. + +I love that while this location is in a nice part of town, it's not quite the same level of frou-frou as many other spots. That means rather than dealing with the Scottsdale types who have to dress up to go to the store - you're dealing with a greater range of folks - but they are all willing to pay a bit more for the good stuff. I will say, you'll pay less for a box of cereal or box of triscuits at a Circle K than you will at an AJ's. And I don't think I've ever seen anything on sale. + +But there is just nothing like their fresh food. Be it produce or the meat section, the colors are brighter, the items are bigger and you just know it's going to taste better. Their chicken breasts and pork chops are so amazingly good, and so large, you want to eat them all at once, but you just can't. You have to try some of their pre-prepped meats. My fav is a pork loin with apple stuffing. Wow. + +And of course, great pre-made foods too if you just want to pick up something to go. I've been suckered in to their desert section far too many times. And they are always good. But dang they can be pricy - so it really has to just be a special splurge. + +If you haven't tried an AJ's yet, I suggest this one to ease you into things. There may be quite a few Lexus in the parking lot, but there won't be too many Hummers.",review,l53FUDHRHLg7BQ89KgAtxQ,2,0,1 +UwWVGxJGhTBB5W7-uBlJPg,2010-04-12,wsoyEPmVgMsDX_6G_0_xSg,4,"I have a cooking problem- I can't do it. However, I loved coming to Entrees to Go to make our meals. My husband bought a Groupon for this place and we decided to try it out. It was a wonderful experience, and that means a lot coming from me since I am not a fan of cooking. + +I love the concept of Entrees to Go. You prepare your meal at this place and bring them home in a baggie. Meals ready to cook and no mess in my kitchen = awesomeness! Everything you need to know to prepare your food is explained and if you have any questions they are answered immediately. + +The only downfall...The price w/o a Groupon is a little pricey. Three full size entrees (each entree serving 4-6) is regularly $80. It's great if you work full-time and don't have time to cook on your own but it's a little high for my pocketbook. However, if money wasn't a factor I would cook every meal at Entrees to Go. + +Loved it!",review,tNxNMmLZmCF2A_PXcSRVLw,0,1,0 +_yfprBETaYgySkKyl8ZWMQ,2012-05-21,4s938bfGLdbstz_9wySMlw,2,"I stayed at San Carlos May 19th - 20th. It was merely ""okay"". + +I liked: +Historic old school hollywood feel. It was chic. I dug it. +The place had character and I particularly liked the outside of the rooms more than the in. We were in walking distance to the places we wanted to go. + +How about no on these items: +Surprise! No hotel parking. You can pay the Valet 20 bucks or pay 15 over at chase's parking lot. +Surprise! They hold an extra $25 on your card in case of room damage. +Ghost lounge? It was Saturday night and the dance floor was empty. It wasn't the plan to go there but it was kind of depressing to see that.... +Ghosty goodness? Nope. There was a somewhat weird vibe about the place but nothing really standing out. My house has had more ghosty vibes and action that I received here. + +It has the potential to be pretty awesome but the surprise extra money you end up spending seems like it makes up the difference of what you save. +I will probably avoid going here again, including the club.",review,muU7S-YE8D3FM5KgxOtFCw,0,3,0 +Rj5gyaRIIwDX_OJa1LlE4A,2012-04-11,vnxqFAvlKZv4d-UXad3qbw,4,"Chick has the potential to be a restaurant we want to keep coming back to. The food will keep us trying for an exceptional experience, but some things needs to be fixed if Chick is to see it's first anniversary. + +1.) The space: Cute slightly upper scale boutique ""farmhouse"". Decor and lighting is warm yet modern. The only miss: The beautiful tables. They are heavily distressed with very deep grooves as if made from reclaimed wood. There can't possibly be any way for them to clean the tables thoroughly - The thought of a small portion of everyone's food that has dined here before me staring at me -- especially as time goes on and those grooves fill up with food & germs grosses me out. A piece of glass on each table is a definite food safety must. To make matters worse, tables are set with your silverware on the bare table. Silverware should never be placed on anything other than a fresh a napkin or table cloth. + +2.) The menu: The menu they offer is a little different from your average restaurant which can make for a memorable experience. However, putting a menu like theirs in a small but thick leather bound binder with just a couple items per page made us feel like unwelcome outsiders. The incessant flipping between pages with types of entrees and sides and sauces was quite frustrating. I recommend picking up the takeout menu at the front door and using that to navigate the menu. + +3.) The service: Awkward but very friendly. Our waiter seemed like a foodie fit for a restaurant like this, but his table presence left us feeling like we needed to make *him* comfortable talking to us or requesting anything. I had to fight most of the meal to have more than 3-4 ice cubes in my iced tea. After asking a couple members of the staff for a glass of ice, they kept bringing back my glass with just more tea and no more ice. At one point, the server brought my iced tea glass back without a straw. When I asked for one, his reply was ""can you use the one from your water glass for now?"" + +4.) The food: This is what made up for most of the other shortcomings especially because Chick is still new. I had the country pork with creamed corn and mashed potato ""bar"". You get 3 toppings with the mashed potato which the chefs will assemble for you. I chose mesquite sour cream, applewood smoked bacon, and Vermont white cheddar - Delicious! The creamed corn was very tasty as well. The mandarin orange chutney paired amazingly well with the pork. + +My husband had the chicken and dumplings. It's a little different from the traditional C&D, but was very good. It's served in a lighter broth instead of a heavy sauce which was a welcome change. + +We decided next time the hubby and I go, we would take our chances at the bar and avoid the servers until they can get caught up on their service skills.",review,EEsYi_yEGWADkWJxkkWcYg,0,1,0 +PmPOuRvuN3CoNOi1nBj_TQ,2011-07-12,IHqq9J-0gRin-Y5upCVapw,4,"always consistent quality and value. we have been regulars of pappadeaux in our previous home of TX, and we still are big fans!",review,wkrHJekjUMxQrqs8n5ZQ-Q,0,0,0 +ht17atGW3tP8dFeiJkXI_g,2012-01-12,ynEa0Sr8buBkffNRlLmKVA,4,"Nestled between the bright lights of the once famous Graham Central Station and a no-name BBQ place is a lovely gem I like to refer to as ""Skips"". + +The bar side of this place is nothing too special. Don't get me wrong, its BIG for a bar, but the ambiance and furniture are pretty dated. So, unless you enjoy playing pool, I don't know why you would want to come here. + +That being said, the pool here is great! They just got around 15 brand new Diamond 7' tables which play AWESOME. Their 9' tables also play well, but they have some PRETTY unforgiving pockets. So if you are a beginner, I wouldn't play on the big tables unless you like to be frustrated. + +They have no house cues on the floor. you have to rent them up at the bar for $1.00. This is great because they can maintain a better quality cue for you (if you use house cues). + +Their food is actually REALLY good! I've had their Turkey Burger which was moist and delicious. It comes with a nicely sized basket of fries. Also, their Nachos are ridiculous good (That's saying a lot coming from me)! The only bad thing about their nachos is that they use that liquid fake cheese... I prefer shredded blends on my nachos. + +The waitresses there are uber friendly. Yes, UBER! They always make a point to remember your name and they are always SOOO busy! Make sure to tip them well. They will remember you! + +Wednesday night is league night there, so unless you want to watch, avoid Wednesday from 7-10pm. Oh, and HH is from 2-7 and lots of the food (including the nachos and Turkey Burger) are priced to sell! + +Go shoot some pool!",review,qwu5B9anH4AlEtau0K-6aQ,1,1,1 +s26P-jeVUH9TjnTPQttPag,2011-03-05,Srj2SKvNwwQrJODZEzN_5g,4,"Trendy, Current, and a young 20s crowd. You know its trendy when you see all the waitress' in black fish net tights and short black dresses. + +You dine while they play a great music selection with lights all over! Its like eating at a lounge right before the place turns into a night club. Very city-like. + +Come for Happy hour!! I came here with 3 other classmates: Angela, Julie, and Natalie. When they said happy hour for sushi, I was thinking a low key place that was A-OK. I was completely wrong. This place is trendy and hip, which is unlike the suburbia of Mesa. + +During happy hour, my friend and I split the Calamari, Calamari Sushi Roll, chicken wings (6 pieces) and a Margarita, and it came out to $22. Not bad! I like the ambiance, and its definitely something I will be coming back to!",review,SNH5L8QZ4kT9unURQUrYow,3,4,3 +oRJgXbcawYd3kULBucqdnA,2008-01-14,M5dPZrWUF2zhZb4gCNxT_w,5,"Thanks to everyone who put up with all the closed roads and driving detours yesterday for the marathon. As one of the largest marathons in the country it was really cool to see all the spectators, volunteers and bands supporting and encouraging the 34,000 runners. I finished the half marathon yesterday and the war wounds aren't nearly as bad, but I am sore as hell still. + +It became clear at the startline that we really have to do something about the Capitol complex. That area is a disaster. Thanks for all the carb-heavy food and drink at the start and finish. I have never enjoyed spilling hot coffee all over myself up until yesterday morning. Thanks to the UPS drivers who hauled our stuff to the finish. + +The half-marathon doesn't run through the most attractive parts of Phoenix, but McDowell Road is definitely a step up from Van Buren.. That's for sure. Could you imagine thousands of runners trying to dodge hookers on their way to the finish line? + +And also, thanks to the guys in my running corral who dressed up and ran as the Super Mario Bros: Mario and Luigi. You guys rock.",review,4_YfcfHkCem1onJFkItxjA,3,0,2 +lktu5JPDlQUG-7cV7gOzDQ,2011-02-22,svnV6nXHR-k49Hv3Oes7kQ,5,"I have been going to Cartel for a while, and their coffee has absolutely spoiled me. I can hardly drink coffee or esspresso from anywhere else, I even buy their beans and brew it at home. +Most of the bartista's are stellar, but expect to wait for your specialty drinks, not only because they are almost always busy, but also because making kick ass coffee drinks takes time. +I suggest either the Honduras with cream, an iced agave latter, or a cappuccino (which you have to drink there).",review,IXn7pcVEnJUMlJExYdWPQw,0,0,0 +RmA5zN-Bs89lsTuY6v8W3Q,2012-08-13,bzygm-uUnBe3rcVyE_KVjw,3,Great great happy hour! Fun atmosphere! Great decor and best garlic edamame in the valley!,review,6AuI-RB8zGjT2f3iW2r19Q,0,1,0 +nmj5yK9dZ2atlM9RYDCRHw,2011-06-10,aTBUk0VthOdgFxuxhsXjUw,1,"So, there's no negative stars, too bad. Tried ordering take out before actually eating there to try it - good thing, you couldn't pay me to eat here. + +The only thing about the Colossal Cobb salad I ordered was the price. $10 and change for lettuce just enough to cover the bottom of the styrofoam with a sprinkle of toppings. Where'd they get their chef, Chili's? What a disappointment. All the reviews say ' a lot of food' ...for who, an infant? + +I had also ordered a couple of carmelized cookies as well. Didn't know deep fried, greasy discs of oatmeal harder than concrete were called 'cookies'. Good grief, the bakery wasn't even good! Had to spit those things out before they took out a filling. + +The only good thing about Chandler Chompie's is Jason's Deli right next door.",review,Lzug6WSdwzdGECzcgHPEyw,0,0,0 +VlEzJ8gehlSMDtAtj0yNHA,2011-07-10,882WrHXhCvAACeYLXKa9_Q,1,"I am totally baffled why this place gets such good reviews. I have been there a few times because it's close to my work and I received some gift certificates for my birthday. Unfortunately after the last experience, I can't go back. Although they are very nice and have great prices, I have to reveal the ugly truth: +1. They don't put any effort into sanitizing the tools or the pedicure bowl. I actually saw them clean the brushes and tools in the water I was soaking my feet in and then just rinse out the bowl after they were done... not spray, soap, nothing! +2. Reason #1 probably explains why my heals cracked so severely after my pedicure that they began to bleed. I had to use peroxide, neosprin, and bandages for almost a week to get it heal. +3. They water down their nail polish... so much that it destroys the bond and polish never actually dries. +I hate to bash a business with good customer service, but these practices are simply unacceptable. I obviously won't be back. =(",review,Zwtx7FLZcK5F2P0-Tz8mHg,1,1,0 +EExUrv6rX1ajgayj8oP7yg,2012-07-19,ZZT9NNxZziCjSJTVuWo_7Q,5,"If you want a deal for your buck, this is the place to go! You'll find Dewalt, Makita, Oster, Cuisinart, Farberware, Keurig, and many other banded items for a fraction of the original retail price. Yes, some items will be out the package, missing a manual, or may have a scratch or a dent but I rather pay a fraction of the price versus paying full retail at a department store. I rather save money and get a ridiculous deal for the same exact item I would have paid 10X more at a well organized and clean shop. From what I know this store has been open for nearly ten years; the owners are one of the nicest people I've met; they even offer free delivery with the furniture or any other large item you purchase. Stop by!! You'll get a kick from just walking down the unorganized, messy aisles; but once you get to the register to pay- you'll be happy!! ""Get more for less!""",review,00WpjbkLkxLhjd3oHUU7ag,0,0,0 +TepT2VeFe3tMYdAiqj12vg,2011-12-26,_HsSToROH9h-p6ytI1Y1yw,4,I visit this Subway several times a week. Staff are very friendly. Good customer service. Ingredients seem pretty consistently fresh. It's a standard Subway but differentiated by friendly staff and good service.,review,CMxTMgwFQVlB2ukMP7emVg,0,0,0 +4gIV5MYpCDbNI-bL3g_tSw,2010-11-01,t-CBoiOR2ENjAZ_ED_xRCw,3,"Old Town Scottsdale has a personality disorder. It tries to be one thing during the day and another at night. Merchants are gouged for hellish fees in order to provide the ""free"" parking so prices reflect this big gouge as some have to make up six figures per year (no joke). During the day Old Town caters to the typical tourists with skin that hasn't seen the sun since Eisenhower was president. The little shops sell a combination of crap and genuine goods. Restaurants cater to the over 60 crowd for lunch and the idea is to keep people milling around until they have spent all of their money. The perimeter of Old Town is alive with baseball, a hospital, banks and other real world establishments. At night the ""clubs"" open and each one thinks it's the Viper Room or the Abbey. Sorry, this isn't LA. High cover charges for lame, watered drinks and dead ambiance won't cut it. They make up for being dull with loud music. The rooftop bar concept seems to be dying off after locals who can't sleep through the racket take a few shots at the places from time to time. I can't blame them. A mile away the noise from these places is still thumping loud. It must be horrific to be at one of those rooftop bars. + +But to be fair, Arizona is not known for night life. It's a place where the sidewalks are rolled up at dusk and they try to cash in on big events like the occasional Super Bowl. They also try to create a night scene Studio 54 style with a new ""hot""place popping up and when it is no longer trendy, they change the name and it becomes something else. Restaurants in Old Town also change names in the summer in hope of fleecing the same crowd the next tourist season. Many are now corporate-owned and the local restaurants have had no choice but to follow the downward spiral. + +On the up-side, look for the local bars and by that I don't mean clubs. The bars such as the Blue Moose are locally owned and serve up good food at decent prices, good drinks and offer friendly service. Stay away from the $30 per entree places and just go cheap and have a good time. + +If you are the sort who likes to drop $15 on a well drink with a bunch of plastic people who are keeping up appearances with the last of their Visa credit line, AZ88 is the place to go. :)",review,UxqUq_Gq9XfPXbdzUcVhng,1,2,3 +AaKlegu7gmOCD4rEESF76Q,2011-05-18,HWlBlyh3DNl1QY_fDu2ncw,3,"If it would be closer to my area, I could give it one more star. + +Their special of $4 burgers is a good way to call your attention. The best was the service, the lady that took care of us was really friendly and nice. Another time I'll have to try their food.",review,LqgGgWi3FLHBViX9tmZ9sw,0,2,0 +StiQ_lcCY8sX4JI-J6Mufg,2012-07-22,Nj6Q9Vnd5BJoEjpcUaemZw,4,"Fun place to get masks for all my robberies. + +I joke. but really you can get good masks at Easley's.",review,rn-S3h35NiiAvKvEMDbtZg,0,0,0 +FURgKkRFtMK5yKbjYZVVwA,2011-08-13,xXeYBNiGan6RHWeoov7sYg,4,"The best part about this place is the cozy atmosphere. We took our dog with us for dinner, and we were able to sit on the patio. So if you have a four legged family member, this is a nice chill place, with very good service. + +I had the Crab Cake BLT, and although it sounds unappealing, it was surprisingly good. My better half had the Windsor Burger, but commented that the burgers at Deluxe are much tastier. + +The signature drinks are decent, but definitely on the sweet side. There appeared to be a good wine and beer list, which I will most likely opt for next time. + +Bottom Line: I would go back without hesitation.",review,TUdFSn-HscK6nZVaJlNpAw,0,1,0 +M6fjHpkL9IRI-nI0BattRw,2012-10-15,xu7ZZRs27-Ke7zMb49ZrwQ,5,"Hip hop sandwich shop. Not a traditional dining experience. Food was great, and prices were very great. Everything on menu was under $10. Mac and Cheese is worth ordering as an appetizer, and the BLT was rediculously delicious. + +I look forward to going back again, and probably again.",review,5bs9-7Fwjuv4HiQNFVZTEw,0,0,1 +NBvrN_ZDpmBCsPI1qLj1Qw,2010-07-10,PFFRwsdO5nfEtVkby1G9aw,3,"Not terrible. I got the drunken noodles and pad thai. Not the best, but not the worst. Maybe I'll try them again and update my review...",review,d0wJVf7Gv7v1B-HHYhxZtQ,0,0,0 +_AwvPzaNPGQ_QZSWgsfOiw,2012-10-19,VQgVLtd5xPydhMeJBhTKfw,4,"Friendly, fast service. Got an excellent 20 oz. caramel cappuccino for $4.50. Just wish it were easier to get to when you want to just run in.",review,o8J-ergbGYjrUy85I_rxzw,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2010-05-01,3vLZq2teUIqXnpnWWRNnNA,3,"My boyfriend and I had heard about the great food and romantic ambiance of Coup des Tartes so we decided to check it out. Overall it was fine but we didn't think it lived up to the hype. + +We knew ahead of time that it was BYOB but decided to forgo bringing alcohol because of the corking fees. No biggie. We enjoyed the lemonade and minted iced tea they served us. We weren't hungry enough for appetizers, so we just ordered salads and entrees. The salads came out quickly and did not disappoint. I ordered the Springtime Salad ($10) and absolutely loved it. Mixed greens with organic apples, red onions, dried cranberries, chevre, and candied walnuts with apple cider vinaigrette. They put just the right amount of dressing on it so it was coated but not drenched. My boyfriend ordered the Parmigiano ($9) and said it was very good as well. It was your basic Caesar salad with homemade dressing. Both salads were surprisingly large and could have satisfied us for dinner if we had ordered appetizers as well. + +Then came the entrees. Well, sort of. We sat there until we started to wonder if they were out hunting for our food. Then we thought maybe we should have ordered an appetizer after all to close the gap a little between the salads and the entrees. But really, why should we have to pay for something we weren't hungry for just so they can get their pacing right? + +Anyhow, the entrees eventually came. I ordered the Lambshank ($24) and my boyfriend ordered the Pork ($26). The lamb fell right off the bone and I didn't even have to use my knife! It came with a side of Israeli couscous, which I thoroughly enjoyed. My only complaint about this dish would be the sauce. It was a harissa spiced vegetable ragout with dried fruits. For some reason I was expecting something a little thicker. I felt like the lambshank was sitting in a soup. Actually, this sauce DID taste like a vegetable stew my mom used to make when I was little that I didn't like. It was a little bit of a turnoff to me, but not their fault I guess. (How were they to know?) I ate it anyway because the meat was cooked so well. My boyfriend's pork tenderloin was also cooked very well. It sat atop a bed of risotto and also came with asparagus. I tried a bite of it, but my dish was so flavorful that it tasted bland in comparison so I can't give it a fair review. He said it was excellent and finished every last bite on the plate, so I'll take his word for it. + +The service was....ok. It was fine in the beginning but while they were out hunting for our food between the salads and entrees we were completely neglected and left thirsty. After we got our entrees it picked up again and was fine until we left. + +The ambiance? Quaint and pretty, yes. But quaint does not necessarily equal romantic in my book. We were seated in a small table jammed into the corner. The size of the table was fine for two people, but it was way too close to the table next to us which had a party of four seated at it. Every time someone got up from it to go to the restroom, their backs were right in my face. We had a nice view of the patio out the window right next to us. That was until another couple was seated right on the other side of the glass. My boyfriend felt very uncomfortable for half of our meal because he felt like he couldn't look to his right or else he'd be looking straight at the guy sitting inches away from him. I was lucky enough to have been seated right next to the wall so I had the view with a little bit of privacy. The room could have also benefited from some white noise in the background because we could hear everyone's conversations and felt like we couldn't talk at a normal volume without other people hearing. There was some very soft music playing in the background but it could have been turned up a notch or two. + +In a nutshell, I'd give the food four stars but the ambiance and service two and a half stars. I'd go there again to give something else on the menu another try, but I'd request a table on the patio to get out of that cramped little house.",review,VkuUr9DO7eefmsFQ_fEJTA,0,0,0 +XWvht_1ZLdK7EHJ3jo4q0g,2009-02-17,Z-bEiRrqWJnod1AmLU217A,5,"Had the best BEST time here tonight! My mama and best girlfriends treated to me a fun day for my birthday and I insisted on wrapping up the afternoon with happy hour on me. I've never been but we wanted to go somewhere nice and stopped in. + +The restaurant is beautiful- we sat in a high back comfy booth in the bar which is really nice. The bar has shelves of backlit colorful liquor bottles above it (ala the Ocean Club bar). We has 2 rounds, including the Vitamin C martini, White Chocolate Martini, Flirtini and Black Cherry cocktail- they were all really great! We also got the colossal shrimp appetizer (which technically weren't all that colossal, they were just normal), the sliders (the bacon and maytag bleu cheese was amazing!) and the AZ Eggrolls (a bit on the greasy side but very tasty and perfect for happy hour). The tab was only $65 (it was happy hour and the prices averaged about $6/ drink and app). The service was also extremely good. + +It's been a long time since I felt like raving about a restaurant- it was great!",review,U8ayzBXrBzgjdrCYOzwNOg,3,2,2 +jZGPpPUNM2xe4N8qS4Tu3w,2012-01-07,7gKmdWNKf-dmR4qfOciz7A,4,"I've been looking for a decent prime rib in the area for years with no luck. That's all changed now. I found Lafitte's on Yelp, and was surprised - I had no idea it existed. I'm glad I came though. The prime rib was easily the best prime rib I've had in this part of town, and may be the best prime rib I've had in the under $20 price range in years. + The place seems relatively unknown - it's hidden in the Embassy Suites Hotel. So on a Saturday night it was pretty slow - hardly anyone there. That's really a shame. + The food was very good. It started with the salad. It seemed fresh - it didn't look or feel like it came from a bag. The greens weren't overly cold or wet, and it was arranged nicely on the plate. The bread was a simple sourdough. + We ordered the petite cut, and when our waitress brought out the plate, I was a bit shocked. It was much larger than everyone else's large cut. I could barely eat it - that's saying something. I had the creaole jambalaya as a side. It was tasty with some spice. The sausage was tasty. The vegetables were ok - a mix of squash, colored onions, etc. + The waitress was friendly and courteous, and never let our drinks get empty. The nest part was that two of us ate for less than $35. I'll be back!",review,fwIXyM_7HFRfkVQMne79AA,1,2,1 +8qhGW34nVmI0OFzQz0uu9A,2011-06-20,bnoXAU2zNCI6_mWjCoTCjA,5,Love it here! Always unique and slightly dark art. Definitely a go see if you are in phoenix~,review,CI1RpU3YSeImNLniEUC6sw,0,2,0 +noLH_u4MJzfXYYHqcByjnA,2012-05-09,nzI8TNVkXZIkuaK6nXWYVg,4,"Let me first explain that we came to the place on a bad night... Apparently, one of their regulars LITERALLY drank herself to death - spent a week in the hospital before whe finally died. Instead of a funeral, her husband and family set up a memorial at her favorite bar... The place was filled with long hugs and sobbing... all while the gal's husband was hammered and wobbled leaning on the end of the bar. Sad, sad, sad, sad...... on SO many levels......... + +That said, we just tried to stay away from it all... and our server (Bobbi - hope I spelled it right) was really great in keeping happy, warm, and chatty. + +Ignoring the other patrons that night, then, this place is definitely a great little legit Irish pub (apparently the oldest in the Valley for you history nerds)! + +Firstly, they have all sorts of Irish food items (cottage pie, corned beef and cabbage, bangers and mash, beef stew, seafood, and they even have a boxty). We tried a couple different things that were all tasty! + +Next, almost all of their beer taps are dedicates to Irish or UK beers (Guinness, Smithwick's, Harp, Kilkenny, Magner's, Newcastle, etc...)... and they know how to pour a stout! + +They didn't have live music that night (apparently, they normally have live Irish bands 6 nights a week)... but they played a great array of REAL Irish music the whole time! + +I read a couple reviews that claimed it's not an authentic Irish pub...... but I'm guessing these folks haven't spent a whole lot of time in Ireland? Understand that ANY bar, in America, has to have cheeseburgers and chicken fingers - because you're not IN Ireland... That said...... if a bar plays Irish music... has 7 of 10 taps dedicated to Irish and UK beers (with the other 3 Irish or UK STYLE like Killians, Kiltlifter, and Sam Adams)... has all SORTS of Irish food on the menu... real Irish signage (not shamrocks)... proper stout pours in two-parts... plays Irish sports on TV... supports the local Irish clubs..... what makes it NOT a legit Irish Pub? + +This place is about as legit Irish as you'll find in Arizona... and worth a visit!",review,yy3jXczrKljJGzjo24HWfw,0,4,0 +FpDSA0hl2TTWt_DEpYKBgg,2012-01-23,XKpBBOznAEjs11sHRWKIwg,4,Love this place. Every time I come here its like a high school reunion. There's wonderful people and a perfect atmosphere for drinking.,review,XqDh0QDMoMAaBvJcakze5A,0,0,0 +kpzzEpXcHo9yzhUcz14chg,2011-12-23,XjKvFI9N7fo7i3fOOpkDVw,5,"I never knew this movie theater existed. I mean I don't frequent paradise valley mall that often, and when I go, I have tunnel vision as I go straight to the stores I need to go to and get the heck out of there. So when Travelzoo had their movie special ( two tickets, 1 large popcorn and two large drinks for $15), I couldn't pass it up. The theater is small but very quaint. The seats are EXTREMELY comfortable and they kinda recline. How cool is that. Plus the best part? the staff are super duper friendly. A huge win in my book. I will definitely be going back to this cute little hidden gem of a theater.",review,4E_nPWw89FLFHdNsEgMH-g,4,5,2 +Cse5FvYuACIxljwaac2SZg,2012-06-10,YPnhXTGo9_6SC8YWzPM0SQ,5,"UMMMMMMMM...can I just say that this place needs to get more action! The pizzas here are FANTASTIC!! I discovered this place because it opened above SACKS. It is around the corner from my house and I am so thankful it is. The whole restaurant is open...I wish it had a little more space, but that is ok. First, the Tuscan Pie is to die for!! It has prosciutto, Gorgonzola, apple, arugula, a fig marmalade and balsalmic vingerette reduction sauce drizzled on top...at least I think that is what it is...I need to check the menu...but anyways its FABULOUS!!! I wish I could eat it everyday! I tried their Moroccan Pizza before they took it off the menu and it was awesome too! Every single salad is great and the wine and beer selection is great too! The staff is so nice and friendly. I get this to go all the time and bring it home...and I have shared this with my friends too. I love good Italian pizza and its great!",review,X_kPh3nt0AJPNPHye2rTlA,11,15,2 +MWoM_zf75KD0VcOm8Yb58A,2008-03-05,blYDrFkb8plh3vk2mpY30w,3,"Their salad bar here is lacking. I used to go to Whole Foods when I was too lazy to make anything to eat, but didn't want to be riddled with guilt about eating out. + +The people who work here are friendly and they have a huge selection of canned veggies for salads, as well as other specialty items that may be harder to find out here. + +They also carry the largest selection of Amy's Organic frozen foods that I adore. mmmmm tofu pockets...",review,IE_nJq65Qpso5fN4tG9zjQ,2,1,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-02-19,Uq16Vj6aGynP2pDE_q6Aag,4,"There is nothing I enjoy more than a great Sunday brunch and St Francis did not let me down. The food and atmosphere were the perfect way to start off a relaxing day. We had to wait about 25 minutes before getting seated but it was no problem because our server brought us drinks while we sat and enjoyed the live jazz music. +My friend and I started off by sharing a GIANT cinnamon roll topped with caramel sauce. SO GOOD. We destroyed the pastry in minutes, which left both of us wondering how we were going to eat our meals. Fortunately, we are both gluttons and were able to pull ourselves together for round 2. I had the Eggs Benedict and roasted potatoes and my friend ordered the Wood-Oven Baked Eggs. Both were delicious. +The only thing I didn't like was that the tables were very close together. At times it felt like we were dining with our neighbors. Overall I would highly recommend St Francis' brunch and I am eager to return again.",review,7aVtVu6ANtsCEfXfYoSkTg,0,0,0 +tpN254LPQTzGODnqI6RpSA,2012-08-17,4vzPJZfp3pJVekRFtM4NpA,5,"I love this place they do the best job, I even drive 45 min because I moved and they are worth it! I'm always happy with the results. My nails don't lift or chip. I have also had a facial their and it was amazing. It was my first facial however I was happy and it wasn't expensive. I would recommend this place to anyone. Just bring cash for your tip, they do take cards but not for tips.",review,tsjb0CJI4mes4C4CcSdxDw,0,0,0 +36DXgXqX09R-ICwhVY55Ig,2010-08-03,PpMdygt2_B4qsyRnkhLoXg,4,This place is great. It is very clean and the staff is very nice and accommodating. Every time I walk out I am completely satisfied with the work.,review,yJOzy6XfsmNRY42Oxex_9w,0,1,0 +53YGfwmbW73JhFiemNeyzQ,2009-05-20,vJ01SDG0_Q-BRqB5EFkj2w,4,"Have only been here once before under too stressful of circumstances to remember, this trip to Olive and Ivy was fantastic. + +Usually going to lunch in Scottsdale is hit or miss with expectations, however today we had a lunch meeting scheduled for 11:30, I got a front row parking spot in front of the valet and had no problem being seated right away. + +Sticking to my lunch salad trend, I ordered the Curry Salad with Chicken and couldn't have asked for a more perfect dish on such a warm day. The portions were great, the lettuce cool and crisp and even the ""handmade"" bread and pesto before complimented everything perfectly. + +The only gripe I would have, understanding it is a Fox Restaurant, was how almost unnatural the wait staff was with how rehearsed and methodical all interactions were. Even down to the correct usage of ""I am well"" versus ""I am good"" seemed a bit out of place, but not a big deal.",review,qQxDnjMexrsfltQV7I1mJw,1,2,0 +qkbloHdDZuHf_0wTqUGPjQ,2010-11-19,i8MLqL-5HGb6Ce-UMYRIng,4,I had dinner at Frank & Albert's while attending a conference at the hotel. Normal I try not to eat at hotel restaurants due to overcharging and quality of the food. I decided to try Frank & Albert's based on the reviews from Tripadvisor. Tripadvisor rates this restaurant as number two in Phoenix. We where seated on the patio next to the open fire pits. How romantic except I was with my work colleagues. Frank & Albert's is perfect for a date or anniversary. The location is nested in the luxury hotel setting directly below some kind of canyon. I ordered the Fillet Mignon. Yummy!! Everything on the menu looked so good. Frank & Albert's also had a great wine list. My work colleagues were very happy with my dinner choice. I used opentable to make the table reservation. I would definitely come back Frank & Albert's if I was in the area.,review,El-nrOv6QtsmsOnkXQDknQ,0,0,0 +sDXXYFW9vhprUXa4b1jvWg,2011-03-08,pK336aYSodY-wsAtGjbecA,1,"My sister recently took her '98 VW New Beetle to First Class Auto in Scottsdale, AZ for an overheating issue. I'm normally the one who does the maintenance on the vehicle but I was ~600 miles away. She described the symptoms as follows: overheating light came on while she was stuck in construction traffic and went back off once she was moving again. I immediately suggested that the radiator fans may not be coming on for some reason. Since I wasn't around to look at it, she took it to First Class Auto. + +She relayed the symptoms to the guys at First Class and also SPECIFICALLY requested they check radiator fan functionality. + +They told her the water pump was cracked and leaking, needed a new thermostat and also replace the timing belt and serpentine belt while they were in there (water pump is driven by the timing belt on this engine--2.0L 8V 4 cyl AEG code). Well, a) I personally replaced the timing belt, water pump and serpentine belt about 10,000 miles ago as preventative maintenance. What's more is the car hasn't lost any coolant since the job. So the water pump being cracked is highly unlikely! I did not replace the thermostat, though. Once she called me to tell me this, I told her to decline the work and either take it somewhere else or wait for me to make a trip out. + +I had a job to do that brought me almost half way to the Phoenix area so I decided I would make the trip the rest of the way to have a look for myself yesterday. FIRST thing I did was check the radiator fans. I turned on the AC and the fans didn't come on at all. I pop the cover off the strip fuse panel that resides on top of the battery and found a melted 30 AMP fuse. Guess what that fuse is for? The RADIATOR FANS! Imagine that. Being a car that lived most of its life in Michigan, some of the fuses and the fuse panel itself had become corroded and caused the one fuse and part of the fuse panel to melt. The coolant level was exactly at the max level, right where it was after I did the maintenance on it 10,000 miles ago, not to mention I checked it before her recent trip to Scottsdale (didn't have to add anything. The car doesn't leak a drop of coolant). + +Local dealer had a new fuse panel in stock, I swapped it out and replaced all 3 of the 30 amp blade fuses as they were all corroded pretty badly. The larger strip fuses were still decent. The radiator fans now work as normal and the car does not overheat. The hose coming off the thermostat also becomes pressurized and hot at the correct temperature as well, so that's definitely not a problem! Fans also come on automatically once the coolant temp hits 99 deg Celsius like they're supposed to. Problem solved! + +I drove down to First Class Auto today to give them a chance to explain/defend themselves, but there was only one guy working in the shop who she didn't recognize and no one at the counter. What great customer service! + +So she COULD have spent the quoted $800 and STILL had the same problem! She just got dinged for a ~$40 diagnostic fee... for an incorrect diagnosis.",review,6X4f6bB9XQ1H0qtz1eUaFg,0,1,0 +uJCH3sqVcqjOfLv3BB9E_w,2011-03-09,_TeVfJv7f-WwoWk8h9B50g,5,I absolutely love this sub shop! Its the only place i will get a sub sandwich! I have been going here for over 10 years and i NEVER get tired of it! Mitch is an awesome owner and he really cares about the customer! MUST GO!,review,Wgvq9BZwHLGY4jBqvJa8_g,0,0,0 +86rvPGDd0Vq2O1UNOtF9dg,2009-04-01,kEme9wzC6witdR4GlpdYig,5,"I'm one of those people that loves frozen yogurt. Anything that taste this great and is this guilt-free will get me every time. The Golden Spoon has a variety of flavors of fro-yo, and each delicious flavor is only 88 calories per 4 ounces. This is good news, my friends. + +On top of that, the price is very reasonable. I got the mini (which is 4 ounces) and it rang up to $2.14. When I compare it to Desert Swirl (your other choice of fro-yo on the Westside), this is extraordinarily more affordable. + +The service was not overly friendly, but just fine. The ice cream chick was happy to give us some samples. + +I highly recommend the Heath flavored fro-yo. Delicious.",review,0lxf4v5NuJ1U6Bk7SGAJ5w,6,4,2 +f_EJyhmr9KpPssLsfw_IXQ,2012-10-20,ltkMlb3aA-dqsdb1_Mdp1w,1,After moving back to the area from Cali I needed somewhere to get my acrylics done. I usually like to get some kind of design or unique tips. After walking in I saw some tips I liked so I decided to try out this place. The first visit was bad the nail tech would not listen to the length of nails I was requesting and did a terrible job at shaping them. I always give people more than one chance so I went back and this time I got a pedicure first then the nail tech left the salon and I sat near the dryer for 45 min before approaching the manager about the length of time I had been waiting for a fill. He replied unapologetically that the tech had to leave to pick up her son from school... I sat another 15 min before I was seen by someone else. They also did a poor job. I will not spend my money somewhere that they do not value their customers. Not to mention they did a crap job and were overpriced when it came to designs and tips with prints on them. Don't waste your time here.,review,UnXyQqt0A5otAf10jMEz-g,0,0,0 +P5uC-zfGG6yqoQDUyqyAvg,2011-09-03,D7frO7lxPHNXOrzSjqSRvw,5,"We saw a small door with a sign over it and were intrigued, so we went inside - that's how we found Kazimierz. Once our eyes adjusted (it's dark inside, like any good speakeasy), I loved the decor. It's a wine bar with food that seems to be Egyptian flatbreads and then whatever the chef wants to make. We were there on a Saturday, right in the middle of happy hour, and enjoyed a ridiculous evening of items that were mostly $8. Wine flights, flatbreads, certain bottles of wine = $8. BOTTLES OF WINE. I'm sure they were just cleaning out old inventory, since they have hundreds of listings, but for these two wines, until they ran out of bottles, the bottles were $8. + +We had the Northern Territory flatbread (pancetta, yukon gold potatoes, rosemary, crème fraîche and smoked gouda). Yum. We also had an open faced sandwich made with smoked pork belly, apple butter and melted cheese with sweet potato chips on the side. IT WAS $7. Between the $8 bottle of wine and that, I felt like I was stealing from these people. + +The bartenders were great, as so was the music. I will, without question, be going back.",review,XIo96RzHrKKtBQIMhZep5Q,1,1,1 +DGtOkc0KNTyK8rDkmsPNYw,2012-10-20,tRLcidz14qyKMXwkeZhkvg,5,"This place is a lil bit of awesomeness! The food was great, the service was awesome, and the atmosphere was very nice! What's not to like about a great steakhouse that serves great food and provides awesome service.",review,kE2Dw1sKMeaDOpyZNVQKJQ,0,1,1 +yFaf4-3_zEac5AUC84Vlcg,2012-05-24,EGuENavQY3Lz5XMR2kaZSg,3,"This really is more of a lady's hardware store with more design/decorating stuff, small appliances, and such. But this time they had something HD didn't, and at a good price. Almost exactly what I was looking for, too. + +Even if you're a die-hard HD shopper, it doesn't hurt to check here too.",review,Mb0psF4WQF7gZSuZafVr-g,0,1,0 +RqpoHP1Ei8Wn_jX478kybg,2011-12-31,rv6w_yBtywS71DHmJ4qdXg,5,"They do a great job! My old dry cleaner was always destroying buttons on my shirts. Never happens at Titan. Friendly staff, too. Also, good place to have alterations & shoe repairs next door...in the back of a barber shop.",review,fqVacCA-n-XTP03pxncoYA,0,0,0 +DGtOkc0KNTyK8rDkmsPNYw,2010-01-01,DNuvcgrzn950xjwb6-za3A,4,"You know how you poke fun at people who go to a steakhouse and they order something like chicken or seafood? I'm one of those people, but this time I teamed my seafood with STEAK! + +They had a prix fixe menu that carried over from their New Year's Eve dinner, but I skipped over that... + +I have to say, I loved my sirloin and 5 pieces of shrimp. Shrimp was done correctly - not rubbery or charred and *gasp* it was actually de-veined. I can't tell you how I've gone to nicer restaurants and their shrimp wasn't de-veined. So that alone got a little happy dance from me. + +Food was a bit on the salty side, but it didn't make me have a massive thirst craving when we left the restaurant. Server was friendly and knowledgeable, which was great! + +Hubby ordered his prime rib, but they didn't have it blue which was the way he wanted it. It's all good, they still brought him out some of the rarest prime rib I've seen in a long time... + +For an appetizer we ordered bacon wrapped scallops. I am a firm believer of 'bacon makes everything good!' and it did. The sauce that came with the dish was delicate and flavorful. The fresh rolls that came minutes before the entree was served were my favorite kind - light and fluffy on the inside while the outer layer had enough crunch that satisfied me, yet didn't make me feel like I was about to chip any teeth. ;) + +I can't wait to go back and try some of their other dishes!",review,EoTooNBcxu0Hy0-XeZI8aw,3,5,0 +AX8lx9wHNYT45lyd7pxaYw,2010-07-19,yaw_kOt0-cOU8t7Dip0yrQ,4,"I knew this restaurant was, as my friend would say, ""legit,"" because a) the cooks in the back were speaking Italian and b) our server was in an Italia jersey. While I automatically assumed they were speaking Spanish, once I realized I didn't understand what they were saying, my anticipation level spiked. My husband and I both ordered the Cioppino which was the special of the night and it was fantastic. It was chock-full of seafood, mussels, clams, squid, baby octopus--amazing! The best part, someone, maybe the owner? came over to our table and offered my husband an extra serving, talk about service! The second best part, the homemade cheesecake for dessert. This restaurant is such a gem. The next time I go, I'll make sure I don''t forget a bottle of vino (no corking fee).",review,9sGrslfna8k-cyTR5NLYww,0,1,0 +EmlgWjs1ZzZEpDjZCSPLmw,2012-08-02,S-j8b_Sr30uBAnIU0Oqx3w,3,"leave it to corporate america to capitalize on a great idea (ipic) and roll it out, steamrolling everyone in the way... + +--book your seat in advance using the website (fandango's mobile site integration not working at the time of this review) +I LOVE LOVE LOVE knowing that my seat is MINE, and if it isn't available, i'll just have to look for another showing +--choose from either the exclusive cinema suites (think first class airline seat, and then some), or the more standard and rowdy ""fork and screen"" +--efficient and hardworking servers and food runners. +--the concept is excellent, but with declining food quality, it could die off quickly. why would i pay $8 for a (cracked) plastic bowl of popcorn? goddamit! + +#chicken wings gone south. they're the fatty and mushy ""pump-me-full-of-antibiotics-while-i-stand-in-my-own-shit-while-the-steroids-grow-me-bigger-than-my-body-was-ever-going-to-grow-in-90-days-fee-lot-meat"" SHIT ""chicken"" +#that means they're cutting other corners too... yikes. +#food often arrives ""dead"" cold. SEND IT BACK. +#be careful to be specific when ordering; many items are similar and your server will assume. +#effect of dining while you watch has literally put all the nearby restaurants out of business. the esplanade is a ghost town +note to lessees: always put a clause in your contract that competitors in the same property must be approed by you! + +HINT: push the service button between your seats as soon as you arrive, even if the server stops by to say he'll be right with you. the button starts a timer which sends an ""all call"" if someone doesn't reach you quickly.",review,hDlSSyDreM9xY4yQWPm54w,3,5,1 +fdZbEDgD0_wy4mTx6pjzZg,2011-02-01,BXdmQqPyaa60MGKk9AaGpg,3,"As I write this, I'm waiting for the toilet in the room above me to stop refilling, and the man to the upper left of me to stop his muffled, out of key singing. + +That puts me in a weird head space, review wise. While this hotel is only three years old, it sounds like it may as well have been built in the 70's. I hear all the conversations of the folks in the hallway, I hear people walking down the hallway above mine, and for the past two days, the heavy footsteps of the person above me woke me up well before my alarm. + +Normally I'm pretty lenient about things like that but, c'mon. This is a roadside haven meant for business travelers (and tourists too stupid to see that this hotel is near NOTHING you're trying to visit Arizona for) to get some damned shut eye. It's a little tough under the current conditions. + +Aside from, you know, sleeping. The rest of this Courtyard is pretty nice. The interior and amenities vastly make up for the absolute desolation outside. It's located off 91st, just north of the 10 freeway. There's a little patch of desert and an ITT Technical Institute across the parking lot that seems too small to handle the amount of folks who need to park. + +Anyway, back to the inside. This is a newer Courtyard. Marriott is drastically trying to get its old chains into a modernization fit to compete with Hilton and Hyatt's business lines. This renovation, (or new construction in this case) includes adding a ""restaurant"" for breakfast and dinner. And a bar across the way open from 5pm-10pm. Thank God for these two additions because the pickin's around the hotel are slim as a Calvin Klein model. I think there's a Chipotle around the corner. I didn't see you jump for joy. What, not impressed? + +The rooms are the modern Courtyard style with LG flat screens, fancy shampoos, interesting art on the walls, wired and wireless internet...etc. This location has low tile showers with glass doors. Fancy. I'm used to the sliding curtain that ends up soaking the floor because it's all cloth anyway. + +If they could get the sound issues fixed (lucky me, I'm on the side of the hotel NOT facing the freeway) I'd easily give another star. Proximity to anything worthwhile is pretty bad, but the point of this hotel appears to be for housing workers in the local warehouses nearby. There's plenty of regulars here week after week after week as the bartender told me a few nights ago. + +One definite draw is that their weight room is pretty top notch and, of course, dead. You can easily be the only one in there night after night while folks who really need to use a gym will walk by you with minds set on beers, staring into the window as if to ask why anyone would try to work off the food they eat. Hmmm... I wonder. + +The interior of this Courtyard vastly makes up for the desolation",review,0QxbEvjT5D3dWikIsUu6Rw,1,2,1 +uL_kqSm8ZqJ_3U88uwA8tw,2009-01-29,rOSBDZXTDDthpjOx8Suv_Q,4,"One of the best local places to get your booze! + +BevMo has nothing on the charm, history, and liquor selection of a place like this! I am not into most beers or wines (of which they have plenty), rather I like to sample the odd/exotic Vodkas, Rums, and Tequillas. + +Sportmans is a good value, but certainly not discount -it is so worth the better exprience tho- This is a store to browse, ask questions and take your time exploring. + +Give Sportsmans a shot - and you'll say ""No Mo BevMo!""",review,90a6z--_CUrl84aCzZyPsg,1,4,3 +_AvHni-xdRHmZ3XfYHwGkg,2012-02-08,mpQHmart5rR5h44rrO3Yuw,4,Great date place! I was worried that I wouldn't like what they picked for me because I don't like vegetables but the chef worked right around that. The cheese plate was very good but the bread that it came with was fantastic!! The short ribs were great. I loved all of my wine pairings as well.,review,xdlCmZIgdcS9njEDvXrBSA,0,0,0 +iins67bZVJeDrjiOTZh8DQ,2011-08-11,PPKqCT-Nc3UxMWqL34x51Q,3,"Yes I am writing a review about Red Lobster, don't judge me!! You all know you love those little cheddar biscuits more then life itself! + +Seriously, Those biscuits, good lord! + +Hubs and I went here last night, his picking. He loves him some Ultimate Feast. I usually stick to the coconut shrimp. + +Our waitress was awesome, the place was packed to the gills but we never really had to wait for refills. She did forget to put in for the beer hubs ordered, but he lived (YAY)! + +The food comes out hot and fast. + +We also got an appetizer, did the ""pick two"" the mozzarella sticks were surprisingly good and the calamari wasn't just fried calamari but it came with fried broccoli and red peppers as well, super tasty!",review,6ts41fCsDKHbFZaKOMNmVQ,0,2,1 +Y-NqaDy_1bb-Y5dQ33x-Pw,2011-12-18,sPR0rSbruAfSpHJG0hM_Ow,4,"I've come here too many times to count during my time at ASU. Each time I've frequented this place, I've pretty much inhaled whatever sandwich I got. I like the fact that you can customize your sandwich to order and I really like the fact that you get a little chocolate chip cookie for free with your order! (Their jumbo cookies are pretty darn good too!) Avoid this place during the lunch rush, as the queue can literally snake outside and around the building. Prices may seem on the high side for ""just"" a sandwich, but the ingredients are fresh and the people behind the counter are generally cool. + +Now....to work on using non-styrofoam cups....let's make this place even better and greener!",review,gUr8qs00wFAk851yHMlgRQ,0,0,0 +zjBoVPJi27Ntm5neRuHGvg,2012-11-16,bs7Oh8j8XPC8p4ypEzLZvw,5,We have had nothing but good luck at this franchise so far. We've been here probably a dozen times. It's always clean and the food is fresh and the way it ought to be. Yum!,review,6TnX7mzI-jfgK6teWqIS9Q,0,0,0 +G1LaLNJObuAwZGAcJ7OY0Q,2012-08-18,ZAONPdkGRUOACDJ7DGE7Xw,4,"Ihappened by during their soft open, and I was very impressed with the food. They have a great selection of meats and they are cooked perfectly. They even give you choices of regular or moist briskit (a little fattier to give it more flavor). They have a good house barbeque sauce. + The facility is pretty simple - very ""bar"" atmsphere and TVs along the walls. The staff is great, and eager to make sure you enjoy the food. I'll be coming back.",review,fwIXyM_7HFRfkVQMne79AA,0,1,0 +GIGI8bJfN6HyPzmEW-QqjA,2010-01-24,CLeNZJO36QHBWeNgvEwWEA,5,"Was at Zinc again last night and have to say the place keeps getting better still. Started with the crepes again, perfect again. Then shared the scallops and lamb shank for dinner. I'm not usually a huge fan of lamb OR scallops but they were recommended and I was feeling adventurous. The lamb - AMAZING. Melt in your mouth wonderful. More like a stew than anything with classic fall off the bone tender meat over creamy cheesy polenta. Their bread is perfect French bread too. This time of year (winter) there is a festive, buzzy energy with a good crowd but not TOO long of a wait. Make reservations though for sure. Oh, and Bobby's across the way in Kierland is a nice spot for a pre-dinner drink (400s Hollywood glamour meets The Jetsons with cool live jazz your parents or grandparents would have enjoyed back in the day).",review,F7zktmTInsmjF6NSi4tDUQ,2,2,0 +3jqOv6re-xPYOg7srmi7tg,2011-07-22,XfBtaJc1bYMtfWSSq8p8Rg,4,"Picazzo's pizza is excellente! + +My wife and I were told about this little pizza place by a friend who swore by it, so we decided to try it out. We are sooooo glad that we did because the food quality & taste was amazing. My wife loves it so much that when I asked her where she wanted to go for her birthday...Dr. Weil's restaurant in Scottsdale or Picazzo's....guess which one she chose? Picazzo's FTW! + +The prices are a little on the high side, but I am a firm believer in the saying, ""you get what you pay for"" & this pizza place was worth every penny.",review,0zsGYi4ITkMEUdE8Zl5b6g,0,0,0 +cOUS79i4vltKIc_hy4OZBg,2010-11-06,wbDauO1SM6P4fBVEQBZTfQ,5,"Baiz Market is a ""Mediterranean"" type restaurant, or ""Arabic"" type food. Well, you could get confused and call it that. The fact of the matter is though, that this place has a very unique touch. This restaurant is a staple not only for groceries, but also its food. The owner is persian, so you can tell where the tastes are coming from. Its somewhat hidden in the heart of Phoenix, but that's ok, once you are there you will be glad you found it. + +This place is unique because they make their own bread! Are you kidding me? I only recently found out about this place like 3 years ago, and I've been living in Phoenix for 20 years. The chicken and beef shawarma have a special, authentic taste because of the fresh bread. One of the best parts about the shawarma is not only its amazing taste, but the pricing is very fair as well. I don't think I can stress this enough, but the fresh bread just sets this place apart from all the impostors in the Phoenix metro area. Why haven't the other restaurants caught on? I know of maybe one persian restaurant that makes their own bread, but their pricing makes them a different story (I'm talking about 'The Persian Room' in Scottsdale). + +I just don't understand how other restaurants can serve the bread that comes in plastic bags from a manufacturer hundreds of miles away. 'Good bread' and 'Arabic bread' are all good forms of pita that have great shelf life due to the ridiculous amounts of preservatives, but they just don't taste fresh. + +If you like the bread, head to the back of the store and there is a shelf of freshly baked pita bread, its baked throughout the day, I think. I can tell because sometimes my bread is still warm and the bag has a little condensation. Beware though, the bread gets hard and crunchy after a few days, so you really need to use it quickly. This isn't bad, its just I think they choose not to add preservatives to ensure the freshness of the pita. + +I usually just get the chicken or beef shawarma, but I decided I'd get a kabob plate one day because I also wanted hummus. The beef kabob plate came with hummus, bread, 2 skewers of beef kabob, and some pickles and onions. Wow. The beef kabobs were cooked perfectly, and were EXTREMELY tender. It was a tad bit on the lemony side, but I suppose that was necessary to make it so tender. Perhaps some of the best 'persian kabobs' I have ever had. The hummus was definitely good as well, I can't stand restaurants that crack open a can of premade hummus. This restaurant certainly did not disappoint with the hummus. + +I know friends in Tucson that make stops specifically at this place for shawarma, and rightly so. If you're weary of persian food, just check this place out. Its not expensive at all, food for two is like $15. The wide variety of ethnic foods is also interesting.",review,LHQ2fuC2RDS-Md_dN2O1IQ,0,0,0 +rZbHg4ACfN3iShdsT47WKQ,2012-06-20,K09mGZvkvtNqukuf78ePdQ,2,"First off made a reservation and arrived to be seated next to the extremely hot rotisserie. Very uncomfortable, not to mention it was 112 degrees outside that day. I asked to be seated elsewhere but the hostesses' excuse was that this was all that was available due to reservations. Well I made reservation but she just made another excuse that we needed to be a larger party to sit elsewhere. I gave it two stars only because my family likes their BBQ-I don't.",review,ZvRWZgNQ9nkdqj-WuJTLJg,1,1,1 +R3sbDS0YcJDedSmUjwE48Q,2012-09-16,BPmxefhrFWgOeyhShsBJuQ,2,"This is my second time trying this place. My first time was a week after they opened and the pulled pork was very fatty and greasy and the fries were awful. I figured now that they had sometime to work out the kinks I would try it again. + +I ordered the deviled eggs to start these were pretty good, I would order them again. + +I then ordered The Southwest sandwich. The bun was rock hard and just crumbled so I just took it off. The sandwich was supposed to come with a spicy chipotle ranch that I never got. + +I ordered a side of mac and cheese and it was cold in spots. When my server finally came to check on and acknowledge me after dropping off my food, I asked her if the kitchen could just heat it up a little. This took over ten minutes. + +Without my asking they comped my $4 the price of the macaroni. + +All in all the service was pretty lousy, especially when the server only has three other tables and there is more than enough staff on. The food was not worth the price. I don't think I will be going back. +I will however continue to go to Copper Star which I love.",review,4ExRrMixBqPxFkF410CH9w,0,0,0 +WaO_hAunQrZ--vI308rHQA,2011-02-14,SL-ec684eHuFduLnTmkiOA,5,"The single best ribs I've ever had at any restaurant. This place is brand new and off to a great start. The mac and cheese was delicious, the bone marrow was great (as usual) and the staff and chef were friendly and helpful. I'll be back here!",review,V_7Ri8F_RdbDjF2FP_fnFQ,0,0,0 +6kQlOVkE6pZVHk-TIO_SGw,2012-08-26,hPx4vfYfmKkdwipCtSr-QQ,4,"Very good food served quickly. Add a little hot sauce and some soy sauce, mix it together. Eat. + +Price is low and quality is high. You really can't ask more than that.",review,8T0evnkvRaTomru7ghPGeg,0,1,1 +9BJ5h9X1krpXFjKj0a6wbg,2009-12-06,xMP9L2tnPm0eLxGQvCTREw,3,"love dicks, richardsons etc etc but come on I'm throwing down 120$ get some servers / managers with customer service skills.",review,GwP7klR69owmP-y1XCuSsg,0,0,0 +e9nN4XxjdHj4qtKCOPq_vg,2011-04-15,hYVa4vtKeiUP91ykroH0Og,2,"Lee's Sandwiches has always been a pleasant place to go since it opened in Chandler years ago. From what I remember it was cheap and delicious. When I went back today, I found it to be cheap in a different way, as well. + +I ordered the #17 (Jambon and Pork) on a croissant and a large thai iced tea with no ice. 2 items, $9. Not quite the Lee's I remembered. They called my number and I walked up to get my food. Croissant sandwich, check. No ice in my drink, check. Thai iced tea...half check. My large cup was only half full (not being optimistic). Quite literally half full. I picked up my cup and asked where the rest of my drink was and was told that I ordered no ice (well duh). I told him I didn't order ""no drink"" and he said he wouldn't give me what I paid for. + +Very very disappointed. The only thing that saved Lee's from 1 star was the delicious sandwich. + +Food - 4 stars +Customer service - no stars",review,jBuU4lovzxnHU64CAPM6xw,0,3,1 +xI0UZH734lJtm39DbLf-Bw,2011-03-20,Fx5ZAY_yC-hqcQH0zH1RiA,5,"Yum yum yum! Mexican food has to me my favorite type of food and Arriba is for sure at the top of my list for Mexican restaurants! This is a New Mexican style restaurant with lots of hatch green chilies in their dishes. You can also buy them fresh from here by the pound during the month of August. + +I have eaten here probably 30+ times and they are always consistent. The chips are always fresh and warm they serve two different salsas as well as bean dip. All three are the bomb! My favorite item on the menu is the whitesands chimichanga. Do not order this though if you can't handle spicy stuff. but if you are like me, the spicier the better, then go with this! + +Everyday they have good lunch specials. I like to go on Thurs because they have chimis for $1.99. For an extra dollar they will smother it with the white sands sauce. What a deal! And on Sunday they have kids day with a clown that makes animal balloons. And best of all, kids eat free! + +And if your a beer drinker they have a microbrewery too. I'm not a beer drinker though so I can't tell you how good it is. But the margaritas are on point!",review,khPlizt3ava1xkbtAxHQnw,0,3,0 +JokKtdXU7zXHcr20Lrk29A,2010-03-30,t4vpRcig7fv0FDGm_N_6Wg,5,"LOVE the Four Peaks. Can get crowded as hell, and parking is a bit of a cluster F, but I've never ever not had a fun night there. The beer is excellent, the service has always been attentive, and the food is above normal bar standards + +The fish and battered fries was very good, the tartar sauce is good, but ask for the cocktail sauce . . . it's fantastic. Heavy on the horseradish enough to feel it in your nose! And the Rueben might just be the best in town. + +The happy hour is great. $3 locally brewed pints? Sign me up + +The location and the it being an actual brewery gives it extra points. I had family in town this week, and I like to take out of towners to places that have a local AZ vibe. They definitely got a taste of MY Arizona. Next time they'll have to come during Pumpkin Porter season",review,VcN9i7sPrGSOn4BnpOJ9tQ,1,1,0 +no_FXjscklz1SEzM_XnVgw,2011-01-22,B414-q6teoKcHEpuanpBLQ,4,"I really enjoyed dining here. It's a small space inside but plenty of tables outside. The flowers, the exposed beams, large bar - great atmosphere. + +I sat at the bar which is good for dining alone. The bartender is very friendly. I had the foie gras and the pork belly for dinner. The foie gras was ok because the brioche was over powering with to much sweetness. The pork belly is divine. The meat melts in the mouth, and the butternut squash and bacon bits compliment each other very well. The only problem is both dishes are so high in fat and I had to forgo the very popular cream bulee...... Another disappointment is that they don't have an espresso machine and only french press coffee. + +It's a great spot to stop by when visiting here. Great date spot as well.",review,qyy2X0sjuwcikplzdATfGg,0,0,0 +9NT8Ne1DICkv0ebX-gVK5g,2012-09-01,KAoePEAcVSV57mOILs40vw,3,"Priced Decent, Quantity Heavy. Just ordered a side of chips and got almost a pound of chips. I love chips and salsa, but this was too much than i thought. Anyway the food was good and seems to have a authentic Mexican flavor to it. Worth a short once, particularly if you are pretty hungry.",review,1jJktRMj1OfMDo-clbYvrg,0,0,0 +jvvh4Q00Hq2XyIcfmAAT2A,2010-08-07,LwC4Rvl13snetFQrYPVqRQ,5,"A burger? With anything I want? FINE....I'll do it. + +I need no convincing for a burger, fries and a coke (Thanks Carl's Jr.) + +Earleir this afternoon, after a heavy morning of househunting with a couple realtors, I decided to sit my fat backside at a table and eat. And eat well. + +I stumbled into the Five Guys at the Fashion Square mall. Not sure how long it's been open. Perhaps it was the grand opening? + +It was PACKED! But I digress. + +As soon as you get to this location in the food court of the mall, you'll realize that this is not your typical burger joint. They have their own seating separate from the mall-commoners. And their own bathrooms (CLEAN) + +You get to the counter and you see a sign telling you about the potatoes they are using for the fries you will be eating. + +Ordering your burger isnt a gong show. Fairly easy. All the toppings are listed and all toppings are FREE! + +My food was delicious. Got a burger with some of my favorite toppings: onions, tomatoes, etc. + +The fries reminded me of an experience I had back in high school, when I held a girls hand for the first time. Soft, perfect and lovely. That's how these fries felt. Ok that sounded weird. Tough. + +Oh, I forgot to mention that the soda fountains had COKE ZERO!! EFFING AWESOME! I MEAN THIS IS THE MOST DOPE SODA EVER!! + +(I'm really hoping this Kanye yelping phase ends soon, since my reviews make me seem like a bigger Jackass than I seem in person). + +Ultimately, I left this place happy, satisfied and I will come back again. + +Oh...the answer to the one question in everyone's mind? YES, BETTER THAN IN-N-OUT!",review,8JC-Yb3UDUv2FUl5ym1nVg,1,3,4 +ntN85eu27C04nwyPa8IHtw,2011-08-06,Dam8Axp73_lL1-bmS7N4hA,3,"Ok so the look of the portions in the pictures are very deceptive. The waffle and pancakes arent big as they look, however I am stuffed so I guess the waffle was big enough. the food was very good, I thought it would be better, but I am not disappointed. I would come back here :) the waffle was not as good as the farm and the pancakes were not as good as first watch. but thats just my opinion. Next time I want to try some of their scrambles.",review,dB3jZ2gMTWKLb1RL0ed3MA,0,0,0 +hDHYbekIzW-M5tljy1IP1Q,2012-04-14,gPiV8NfmdSfbJ8Y9B5iD8g,5,"Came here with the hubs- and we love the place :) We were able to eat here for significantly less dinero than you typically spend at any other sushi restaurant. The food comes by on the conveyer belts and the items are price coded by the color plate they are on. At the end of your meal you just add up the plates for your total. Each plate comes with 4-6 pieces of sushi- and they also have salads, desserts, appetizers, etc on the belt. If you are afraid that the sushi has been on the belt for too long or there is something else that you would like that isn't currently on display you can order direct from the bar. Win win :)",review,dUDzN6zl3j12zhByOrnF9Q,0,0,0 +Zg-C1aYcoR2L5OIrA01MkQ,2009-07-10,UHyaex5g_xBYqBUNCju2lQ,2,"Yeah it kind of sux! Burgers aint that great (Though not terrible), girls aint that hot (At all :( ), place aint very exciting (or clean). + +Yeah it is kind of cool that they are dressed as nurses and you get a little hospital bracelet with their name and such. However, putting on mandatory hospital gown is odd and kind of off putting (To me anyhow). They also do have a bar and sell unfiltered stogies of some kind. + +They also do not take CC!!! WTF I say! Is is a bit too much ""Old times charm"" for my taste. There is an ATM right in there so there is no real need to bring cash with you. + +I do not know, whole thing kind of odd. It would fit my better in like Greer or Page or something, rather then in Chandler.",review,vWCksqJJfYjGGdD-yb9qGA,0,0,0 +KPoTixdjoJxSqRSEApSAGg,2011-05-13,E9e6c_YTWe4FDWyH5EyeeA,3,"We had our first experience on a Friday night about 6:30. The servers were pleasant. Wild Thaiger has a nice patio dining facing Central, but it was a little too hot and they didn't have a misting system. The inside was clean with a combo bar and open kitchen. + +We started with the Freshie Rolls with warm Peanut Sauce and Lychee Martini. Nice, but not the best in town (Pure Sushi Bar has a to die for Lychee Lemon Drop). + +The entrees are huge and could easily be shared. We had the Kimow - hot and spicy clear noodles, chicken, broccoli, snow peas, sweet onion, Thai chili, garlic and sweet Thai Basil - Delicious! + +To be fair, Thai is not one of my favorites, but we love to support local restaurants and this came highly recommended. Glad we tried it. + +And for those of you who like it HOT and SPICY - Wild Thaiger has you covered.",review,NmXOEr-_zlHGM0noE2Wrkg,0,0,0 +4iJUNAUVYNEuh16yK6Virg,2012-08-18,Y-DfhVRpbhv2Gttkjq1rIQ,5,"On top of how good the food is, their customer service is excellent. I went to eat there on Thursday (the 16th), and had the best server ever. He was the bartender as well, and still payed tons of attention to my table. He was very nice, and very helpful. He had extensive knowledge of the menu. He was also very personable. He laid out samples of their various barbeque sauces while giving some details about each one. He squirted them out onto an extra plate he brought to the table, and he made the shape of a smiley face with all the sauces. He made that dining experience so good that I wish I could write a review about him personally and suggest to his managers that he get a raise! I couldn't hear him when he stated his name over a large group that had just come in and was moving tables, but he was wonderful. + Also, one of the people with me is from the east coast, and likes vinegar-based barbeque sauce. They didn't have any of that kind in their current rotation of sauces, and he actually went back to the kitchen and explained the situation. A lady from the kitchen made a vinegar-based barbeque sauce from scratch just because one of us had mentioned how much we loved it. + I've never experienced service like that, and really can't say enough about how great this guy, and all other staff I came into contact with, was! Great job to whoever hired him. + The food was delicious, I love their fries! Unlike anything you can get anywhere else. I got the country roasted chicken- great seasoning, super moist and tender, while still having that chargrilled/roasted skin (my favorite). All of their sauces are so good; it's hard to choose just one! (And no matter how many times I go there, I always sample each one again). + All positive things to say about this Famous Daves! +Oh- and I forgot to mention the corn muffins...beyond words! Seriously, you have to try them. Now I'm craving one, and I'm pretty sure they're not open at 3:00 a.m. I wish I could order them by the dozen haha",review,wcQZGCHp8fNJgfU6ajsAhQ,0,0,0 +4NMElef11_YmVzxOpcsALg,2012-06-30,9yQ6DpOO9NjnjW4qVXy4og,4,I absolutely LOVE the food from The Pitic! The place does look rundown and it is a rough neighborhood.. however those are the best places to eat aren't they? Food is made fresh to order and out of the 10 or so years I have been coming here the quality of food never changes. It is great for families and actually anyone looking for a great mexican meal. Their crunchy beef tacos are to die for :),review,bPY3vLbDjiFS-gbaLGNXMQ,0,0,0 +AroAD6ARSEFmsrDzlzxObw,2007-08-04,fTluiClG-Hq9zjd18Fsb_Q,5,"I called several pool service companies before choosing Desert Gator Pool Service. + +When we bought our house I insisted to my husband that we could take care of the pool...all we needed was someone to come check the chemicals once a month. Oh sure. After about one week, mustard algae, a bad storm, and a cranky pool pump, we were looking for a pool guy. + +We called them on a Saturday and the owner of Desert Gator was kind enough to come to our home at 6:00am the following Monday to fit with our schedules. We had our service set up that week and have been very happy ever since. + +They definitely got our pool under control and taught us quite a bit along the way. We still have them coming once every week - it's so worth it. Our pool was in bad shape after a recent storm and they were incredibly responsive. I think they came two or three times that week without charging us more. + +$85 per month...but can be a bit more if you need parts and chemicals.",review,Mva8f3RBztfxUQoUi47SnQ,1,1,0 +xOlzK02DWzETeZ8HbiEB0A,2012-05-28,dgjnyrO1p0j3tskKgNmrgw,1,"I'm sad to report that we dined here for lunch and it was inedible:( Chef Aaron please come by and monitor your staff. We had the eggplant sandwich and is was a disaster. It was so overly oily and the bun and fries overwhelmed the plate. The shrimp and grits were so average with the shrimp being of low quality. The beer menu looked fabulous. So I guess if this is just a watering hole things will be fine...but if you choose to dine be prepared to leave hungry and unsatisfied. We hope this turns around. The decor is cool and the staff is really fun and helpful...and we are hopeful for a great place to visit in the ""hood"".",review,180tLY4YhUAuckejm5v53A,0,2,0 +Bjt3rB73dvSDe1XEPEWc6w,2009-12-16,Wz6ck_B59iW2ycgYV7ZMOw,4,"Sakana is one of my two favorite neighborhood sushi joints. I love their calamari salad (although the one at this location is considerably smaller than the one on 59th ave) and agedashi tofu. The waitstaff is friendly and their bday song is always fun! + +Insider's tip: ask for some real wasabi!",review,Q5dlLCEni_my05az9wIptg,0,0,0 +PqJwKYHU_eHjw0q0NlULJw,2010-02-15,AJZchirMerzo5qBYUG0yiA,5,"Good rates +Great location- near food, shopping +Quiet area +Rooms have kitchens +Free Wifi and Breakfast + +For a business traveler these are the big selling points- it's kinda basic but loads of features.",review,LHukWNV03ShabMuJbaRrSw,1,1,2 +BJfjd8oEMW_zq8KTkixyig,2009-05-29,sd-aWEzrAV8CwrCbKvIVxQ,5,"Doc and Edwards has been a place of refuge for 5 years for me. Hell, most of my friends spent their 21st birthday there. It is hard to explain walking into a bar and just feeling at home. It is so comfortable and wide open. Even on the most crowded days, I feel like I am on the cast of cheers. The employees there are good and the food is exactly what you expect. You can also order silvermine there with no delivery charge! The pool table rates have gone up in the last few years but if you spend a good amount of money on drinks, they waive the pool table fee. Or you could go for some ping pong, foosball, UFC, or big buck hunting. It has a great juke box but watch out for the lady that throws 20 in and slangs the worst playlist I have ever heard. If my girl would only let me, I would have my wedding there.",review,d9t-5lNTjoqFoevQ1sk5jQ,1,1,0 +Zruvunhqw7cuyuoe7g09Gw,2012-09-11,3cyAn0CQohU9C23AxKR2gA,5,"Great gluten free Italian place! Tell all you gluten free friends, they will love you for it!",review,IvT2oMfYzNCnyCLF0gxXhg,0,0,0 +MLcXtnpzygZvQ9BtseLLlw,2011-01-21,y9K_l8ZziP20l8vh_IE_yw,4,Breakfast is fantastic. Work on the coffee selection. Only thing holding back a star is no French press coffee or an espresso machine,review,ZtM1ZL3M2VYyc3l_K58lbQ,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2007-03-05,aG24D--nCUEgCysTzHfvdw,4,"A co-worker of mine wanted to take me there because she said it is the oldest restaurant in town and walking in, that's how it felt. This place is all about the atmosphere, it's got that swanky kind of loungy,supper club feel to it. The wait staff are all dressed in tuxedos but, were a little curt when we asked for extra things. The food was pretty good we both got Chicken Giordano which was a little dry but had a good flavor to it. The dessert we had was amazing, three flavors of creme brulee..great to share and a nice change to the standard dish. One thing to watch out for is that they will try to sell you on their wine special of the night....don't get me wrong it was a great bottle of wine but, they push it on everyone!! Great place to go if you are in the Phoenix area!",review,4YJRvI__DA8mUHC1ItoBPw,2,2,0 +9Y3aQAVITkEJYe5vLZr13w,2009-07-17,qA0jXJZYXtIPnti1KiHjRg,4,Good food and freindly staff. They have a nice selection on the menu. After seeing the table next to me I wish I'd of had the house specialty....blueberry pancakes. Next time........,review,KlLDE4egzf9VruPheiXHMA,1,1,0 +muCl5p-9ut1sY0aKeUeRhw,2007-10-03,CexxnFUucFDwKjHTZNXRiw,4,I really like this place and would definitely come back. I had a blueberry martini that was dreamy and for dinner I had the halibut entree which was also very good. Their wine selection is very good... I did have a glass of wine too because someone ordered a bottle of wine and I felt compelled to help him out:) And from what I remember the service was also very good.,review,b4C9E7vTJrOdkJQA86xYSg,1,1,0 +jtzhY-P4H6WSYpv5rWhxtw,2011-08-16,rKzZEacaoUyhApD5BYxw0A,5,"I can't believe some of the things I've been seeing people NAG about in their reviews for this new restaurant! I set my standards pretty high for Rice Paper and they did not disappoint! + +I took my wife on a date here last night because she really loves beef pho, and had been waiting for this place to open up! The atmosphere was very bright and welcoming, as well was our server! He sat down with us and quickly went over what was good and what was popular with most patrons so far. We took him up on a few of his suggestions and started with the fried calamari. I'm not sure what they bread it with but it was delicious, and the squid was perfect; not too soft, not too chewy! + +For our main course I ordered the Shaking Beef, which was cubed filet mignon served over onions on a sizzling platter in a special sauce, with a side of rice and grilled zuchinni... again on the suggestion of my server! I HIGHLY RECOMMEND! My wife got the beef pho... at first I was a bit iffy on it because the broth looked very clear as if it were going to be somewhat watery... but it was VERY well seasoned! Our server told us that the broth stews for at least 12 hours allowing it to achieve the best flavor from the pho spices! VERY IMPRESSED! + +Yes, it is much pricier than your average pho joint, but I'd rather pay a bit extra for a nice, clean and slightly upscale atmosphere! And the quality of the food is MUCH higher than the mystery meat you'll get in your bowl of pho at some other places! + +Well done Rice Paper, we WILL be back!",review,vuUddBhwlrVijAAFvK5UTg,2,2,1 +Sb1_G-DMy26YHafNxxhVrQ,2009-01-25,lTzYuNZ2IazfdkZfXELW1g,5,"This is by far the best farmer's market I've been to in the Valley. Still small by comparison to LA and the Bay Area but is off to a great start with lots of potential and space to grow into. + +McClendon has a great spread of high quality mainly organic produce and is constantly restocking so it's ok if you don't get there first thing. It was exciting to see beautiful Tuscan kale and broccoli rabe at prices lower than Sprouts. Meyer lemons and blood oranges were also available. + +Phoenician's outstanding loaves were only $3. You're welcome to sample - we particularly liked the Olive Walnut and Dark Chocolate Cherry. + +We enjoyed Digestif's Frittata ($4) made with thin layers of potato, eggs, pork belly and spinach. Other combinations available were Dandelion with Goat Cheese and Mushrooms with Garlic Confit. Executive Chef Payton Curry is also there to demonstrate pulling fresh mozzarella which is served with a variety of sauces and toppings, + +It was fun walking around this bustling market sampling food, like tamales, which we intend to come back for next week. If I can get myself out of bed at a decent hour on Sat, I'll be here for sure every week until the season ends in May.",review,8WQubmP7G0NM3IyzyMnCEA,5,6,3 +RyUIcbNgIjzTE01rguyXUg,2011-12-01,SqdpWVe2CNTDxIePpJelCQ,1,"UNBELIEVABLE!! so enraged and appalled!! i took my 91 yr old mom in to the salon for a mani-pedi. after the pedicure she had the manicure and she asked for french tips. the GIRL claims she asked mom if she wanted gel nails -- she's 91, did not understand the gal's ""english"" and can't hear, so i presume she nodded. after mom paid the charge of $60 and i picked her up (i had another appt.) she told me about the charge and said she had never paid that much for a mani-pedi. i called and was told the normal charge is $30 w/$5 added for french and HE said to come back cause it was mistake. we did and the whole group of technicians said it was mom's fault for saying ""yes"" and would not concede AT ALL -- not in the slightest. i found that to be awful and mom felt very taken advantage of. i will NEVER return there and i caution any hearing-impaired customers to not use this business. TO ME and of course to mom, it was such a slam on the elderly. mom is a visitor from the east coast and at her age does not need to be treated that way. VERY BAD BUSINESS!!!",review,SP9lIen3l2_3QG9LxB8l7w,0,1,1 +1NZLxU5WvB5roPFzneAlLw,2011-12-07,847ykx9jvDYmwcAeI284-Q,3,"Solid. We hit up the happy hour which features 50% off booze and tacos for $1.50. I had the duck, shrimp, and cochinita pibil (pork). They were tinier than most street-style tacos I've had (and boy howdy, have I eaten a lot of those from Cali to NY) and even a little soggy. The duck was my least favorite as it had a rubbery taste and texture. The shrimp was A-OK but for my money, the cochinita was really where it's at with his super-porkey deliciousness. We also split the queso fundido (rich with cream cheesey chunks, whaaaat???). It was way tasty but it could probably double for spackle in a pinch. The most successful item of the night was the churros with goat cheese caramel. Between my 3 buddies and myself, we made quick work of that dish. Each of us had their house margarita which was strong (just like I like it), but I'm not entirely sure I'd order that drink for non-happy hour prices. One of the big drawbacks, however, was that our server was really rushed and we had a hard time getting his attention. + +On the whole, I think I'd be back to try some other items. The chicken mole torta looked really appealing. Be forewarned though, it IS a spendy joint. Expect to pay $15 - $20 for most entrees. On a post-grad shoestring budget, it is certainly a splurge. We did love the mural outback and the groovy art inside.",review,Xdu24yBabw0uq4GzKBhWaA,1,0,0 +8cL7aJVKTYmLguzXEAS3Lw,2010-07-21,ynsk90vScBbq2t6_IC4gSg,4,"I get a call on Thursday: ""Dude, I just got fired from UOP, we have to celebrate!"" If it was from anyone else but Ryan, I would have been shocked. However, he hated his job and we love Yard House, so I was definitely down to have some ""FU UOP"" drinks up at Desert Ridge. + +Yard House has been one of our main spots for years. Right off the bat, the Happy Hour is fantastic; 100+ beers on tap, including some of AZ's finest and a couple amazing international brews. The servers usually do a great job of suggesting drinks as well. Traditionally I ""cleanse the palate"" with a Warsteiner Pilsner and roll from there. Friday night, I tipped back a few Kiltlifters as well, all brought in well frosted pint glasses. + +The food has been pretty fantastic across the board. Personally, you can't go wrong with Firecracker Wings (sweet and very spicy wings) and the Spinach Dip. Their seared ahi appetizer and Caesar salad are both fantastic, with the ahi always perfectly cooked. The Southern Fried Chicken Breast is likely the best meal, though my pal is a huge fan of the Cuban Dip. + +The one potential drawback is the service isn't always fast. Honestly, if you are going to relax and enjoy time with your friends, it's great. Beer glasses don't stay empty too long, waters get refilled (we only sit on the patio), and the food usually comes out before you get too hungry. Just understand that the joint gets busy for happy hour and you will enjoy the experience. Give me a call if you ever want to share some FU beers!",review,_lA4GgcUKW1f892o5jGhBQ,1,1,1 +TLUD93ys-QxbnkQaLZGslQ,2010-08-26,4Ti2bBt-ndllcf2zrQPKMA,3,"Ye Olde Pipe has a great selection of cigars and a very big walk-in humidor, almost too big. I say that because as I walked around I came across a few boxes of cigars that were way too dry. With that said, I still found SEVERAL cigars that were fresh and moist. What I liked best about Ye Olde was the variety, they had several cigars at all price points, so if you can't afford to smoke an Opus X, they had plenty of cigars for less than $10. + +If you aren't an avid smoker, I don't know if you will get any help because the staff did not seem very friendly or welcoming, but if you know what you want, there is a good chance they have it.",review,T_kMEgHqIqwbHR_7yhqWFw,0,0,0 +wzP2yNpV5p04nh0injjymA,2008-07-07,hcYKFLCebfbd-KVANTvmvA,4,"Why go to some new place that tries to recreate the ambiance of an old fashioned ice cream parlor when you can just go to an actual old-fashioned ice cream parlor? Unlike newer parlors, Mary Coyle's doesn't try to be self-referentially hip or ironic, they just serve good ice cream without pretense. The thing is, they must be doing something right since they're popular with all age ranges and different groups of people. Plus, it seems like the high school kids working there are having a good time and actually glad to see you when you come in.",review,uBp2Jmip2qXQ0iWHUDY9sQ,2,2,0 +SG_gEmEXL4ID6RAEinC5Bg,2007-05-27,bTTq70eFV3onI09yiebLew,5,Been here 4 times in the past 6 months. I love bringing out-of-towners here. Excellent art and history exhibits specifically related to Native Americans from the southwestern United States. Reasonably priced entrance fee. Go on the tour - they will tell you really interesting things about each of the exhibits you otherwise wouldn't know - makes the visit much more enjoyable. A must see for visitors to Phoenix!,review,M1EciT6_JAOakQrSlzZq-Q,1,2,1 +MAFjNfDWJRgWCw8IOC7mew,2011-01-04,AFKgh1Cw-gaO2qHalJBQHQ,2,"Got a recommendation to eat here from a friend and was somewhat disappointed. Expecting a sit-down restaurant with wait service, I was surprised to find it layed out more like a fast food joint with the addition of a bar--kind of odd. The service was fast and friendly, but the food was average and didn't seem quite warm enough and got cold very fast as a result. The best part about dining here was the churro I picked up on my way out, which was surprisingly delicious. All in all, I don't see myself returning to the Blue Burrito Grille unless it's to pick up a churro or two after seeing a movie at the nearby theater.",review,yhC4ErI6OT0DNle2SEtSZQ,0,1,0 +5AsVHsqADuurv7NqG-RFLA,2012-06-30,azvDTEdVtD0WkKKHRcuPYA,3,"The property is beautiful and clean. Restaurant's were great. The problem is the front desk snobs. No personality. They messed up my reservations, made me and my family find our own hotel for the night that they messed up? They didn't even try to get us another room, despite me paying any price. After a long day of travel with an infant, toddler and wife, the last thing I want to do is look for another hotel at 11 PM, only to come back the next day. + +The attitude of the front desk is sad and horrible.",review,U8Q4IYl4Q4DicpROht982Q,0,2,0 +VpW40mznMS43CqdbelX2wA,2008-02-28,9EIM81R8PY3Kz7KePUW_tA,4,"I was sworn to secrecy when we first came here with friends several years ago. I think it's some of the best Italian in town. It isn't fancy (a plus, in my book). It's small, so sometimes there can be a wait involved. Even though its small, because of the very personal service by the owner, the service can be lacking or distracted. The food, however, is well worth it! I try to get something new each time I go, and I've never been disappointed.",review,PzTP2RCSdBrZLbaxXgZ3kA,4,2,1 +Em8zrIuxwBXnIZMDMreErQ,2011-11-17,cVkxqYbrTSsaWN5dpDuXuA,2,"Eh -- no. + +I stopped here for quick take-out one day while at work. They had no sushi at all (even though it's on the menu), and the menu itself isn't laid out very well for understanding what they have/what's included. I wasn't there to eat onsite, but good thing -- very little inside seating. The food wasn't all that good, and if the customer says ""to go"", then you should put utensils and napkins in the bag for me. The place didn't seem very clean either. + +Just not a good experience. Go somewhere else.",review,aTi0NVrcPJWbN6jAsJVcAw,0,1,0 +jCUOqEK8Lln0PK3GeUl6IQ,2009-09-26,81aYJVPnSXbtsRHLSqnlng,4,"""Buy Local Coffee"" is what a sign out front of this establishment says. So that's what I did. I went to Copper Star Coffee to get my drink of choice, an iced coffee with cream. I enjoyed the flavor. It was better than Starbucks and quite a few cents cheaper. SCORE!!! I became a regular. I stuck with my ice coffee for months but their bakecase was calling my name every time I would enter. I found out Copper Star bakes their own pastries fresh daily. Another SCORE!!! No preservatives or high fructose corn syrup. I started adding a scone with my iced coffee. They have chocolate chip, lemon, blueberry, etc. Delicious!!! The apple sauce spice cake is now my favorite. It is a vegan pastry. It is flavorful and the glaze is so slight but fantastic. Not a vegan by the way. + +I have been slowly branching out among the Copper Star menu. Try the Black Cherry Limeade. The specialty coffee drinks are quite good too. The blended toffee drink rocks. The antioxidant smoothie is refreshing. The other smoothies are okay. They use syrup in those. I don't know how healthy that makes them. (Real fruit please). + +Let's talk about their sandwiches now shall we. I have tried their sesame tuna, the curry chicken, the deviled egg salad, and the veggie. All of them are winners. You wont be disappointed. Copper Star just unveiled there new sub sandwiches as well. They use a local butcher's sausages for their subs. Awesome. Way to keep it in the community. + +-internet access +-community board +-art work +-misters for the heat +-water bowl for dogs +-drive thru car hop service +-frequent customer stamp card + +The Copper Star building is an old service station cleverly gutted out and made super cool. The staff is great and they stick around. Not a high turn over. It must be a great place to work. + +Parking can be tricky. The majority of the parking is on the street and the parked customer cars creep into the surrounding neighborhood. You may have a little walk. Big Woop! + +A must. Check it out.",review,dUrVJl5qi2CJWff7s8HJNw,2,3,2 +CVk_Jk7vU9JlP-U_fArQqA,2012-04-23,lDEHoRGTujPGZ0gSQ8uP-w,4,This is my neighborhood grocery store. It's at the two locations I shop at most. It's always clean and well stocked and I never have to wait in line for very long.,review,Jrx1fLr5JdqgHdIfMT7wag,0,1,0 +cXx-fHY11Se8rFHkkUeaUg,2011-10-22,UVttEYsZIrhQ92RFLcK09g,4,"Anyone else have this problem? + +I like to go out and socialize. I don't care if a place is a little loud or smoky (what do you expect in a bar). I have more fun if there is a good crowd, music I can dance to, and a full service bar that can make all those foo-foo drinks & shots I like. + +My boyfriend on the other hand likes places without a lot of noise where he can just hang out, have a conversation and drink beer. + +We finally found a place we can go that makes both of us happy: 16thh St Sports bar! This place isn't exactly a sports bar. Its defiantly not a club. Its not dirty, but DIVE would still be an appropriate description. + +The dance floor + DJ and pool tables are on one side of the building. The main bar, main lounge, and the big TVs are on the other side of the building. + +My boyfriend can grab a table and hang with friends without having to talk over a lot of noise. I can leave my purse & cell phone with him and go to the other side of the place to dance the night away....When I get tired or thirsty I can go find him and take a break. I love that they have lots of bartenders and waitstaff working. I never have to wait long for a drink even when I'm not drinking with everyone else from a pitcher.",review,Syc4pbEkL3bbzjO4X4HhQw,0,0,0 +CEs_oJMtLsll3xBM9slBQQ,2009-09-21,9-f1CwpyMrqUoDRnqt8Pxg,1,"As you walk in you are greeted by a sign that says Cash Only ATM inside alright times are tough I get it. Then you see the special board which read ""Good Food Takes Time"" and there is a clock next to that. Fine that's cool but the problem is that after waiting for our ""good food"" it came out and was awful. My wife said she has tasted better pancakes out of the freezer section at the grocery store. $30 later we boxed up the food only to throw it away. The good news is that we went around the corner to the Breakfast Club and had an excellent meal.",review,r2dEIHPmQ33AmdLkjYE1_w,1,2,1 +R8VwdLyvsp9iybNqRvm94g,2009-07-16,WIcqivfzW3anidXzTOBZQQ,5,"This review is for the food only. If you care about parking and what kind of extras they sell that aren't food related you'll have to check out another review. + +I love LGO. The food is absolutely top notch and I love how the menu has both traditional fare and a few things you've never heard of like their Venice Beach Burrito which is filled with scrambled eggs, tofu chorizo, spinach, and other goodies. It comes with a side of salsa which also fantastic. I eat breakfast here all the time and I have never been disappointed. Also, if you're in a hurry grab one of their pre-made granola/yogurt/fruit parfaits, Yum!",review,cyXlOAGH4tTOvMm1chXrTg,0,0,0 +KG3GwIcMKf0qYAtA-hN1MA,2010-04-21,3jNOaX5bI2UMadrF-BEgJA,5,"What a great little find especially for Phoenix! I've been there on at least 4 occasions and have never been disappointed and just had to let everybody know about this little gem! Recently I took my mother and we had delicious Singapore Noodles and Malaysian Rice Noodles (which are kind of like Thai's Rad Na but better). On another occasion my husband ordered Pork Belly Curry and really loved it. I wasn't as adventurous and had delicious Chicken Kebab Burmese style. Family owned, quiet, and very affordable. You have to really look for this place since its in a shopping center(its on the north side of Shea between 70th & 71st St in Scottsdale). Great early bird dinners as well!",review,CmXr3Vik7WC6f5qwn4p9Nw,0,0,0 +7kAXbY8hjHhC-nZKR2Embg,2010-07-27,6ElHHB9t1HsMbNuaOQ0HLA,4,"I have been to this course a few different times. The summer deals brought me in because it is a little pricey during the season. + +The greens and fairways have always been in good condition and I enjoy the challenging hills and strategically placed bunkers. I haven't really scored well on this course but as a beginner golfer I enjoy the challenge this course offers. + +Water jugs on every tee is crucial for the summer months.",review,kxIzasUoiNzZKAV_i_iYAQ,0,0,0 +E3RjJH45EX6rHYDs0TYSRA,2012-07-18,APMAhHLI3EQ09qmWxA4ZKg,1,"Absolutely gross- I'm just going to be bluntly honest- who the F cares what the food tastes like when the place looks like a frickin' dump? It was so disgustingly dirty inside. Besides food, paper, trash- resting among the carpet- the tables were dirty, the bathroom was out of service and I feared touching anything as I was led to my seat... that's a problem. + +I've actually never seen such a messy restaurant before. Let me also say that the restaurant was empty when we arrived, and was filthy when we walked in and was filthy when we left. + +Obviously no one that works at this restaurant cares about cleaning up between seatings. There's no excuse for a place to be disgusting like this. It's downright unsanitary. You serve food Valle Luna, you're a business Valle Luna- keep the place clean for heaven's sake.",review,LSf-IajkL99JQBZ3PzXnjQ,1,5,4 +5VMajxduxfLPSyQkVFKESg,2012-05-14,NXCMFRY083QqcbZHQjVqow,4,"Back to Joe's.... been several years as we are Westside dewelers and on Mother's Day we had Mom & Dad with us and suggested Joe's after the hot experience out at Schenpf''s farm. Glad we went, Joe's really is quite tasty, is it the best? - Probably not but that is all relative! For the SE Valley, it's our go to spot for BBQ. We had the ribs, pulled pork, the Jumbo tater with Pork, coleslaw, mac & Chz, lemon cake, sweet patato pie. All were really quite tasty. The ""HOT"" sauce isn't THAT hot... but good lil kick. One time we will be there when it's not as hot out and get to try that nice large outdoor seating! - I gotta say the Lemon Cake kicks ass!",review,DnwHp_A92KvllfaUIdFraw,0,1,0 +ZdQbDVZWDsO-d7q2qW8E3A,2012-01-10,GUCIEpH9oDmzmHfGQnpjBA,3,"**********This Time We Didn't Do Carry-Out********** + +Definitely better ......... when you eat there. +This place is like Pei Wei ........VERY LARGE chunks of meat. +Vegatables ...... NEVER.......Just like Pei Wei........their priceless. + +WARNING: +Hot Tea is available for $2.00 +*********Brown Rice instead of White ......... ALSO $2.00********** +The Soups are TERRIBLE.",review,3nUQ4xbLlySDbkE03nyp-Q,0,0,0 +wN_wAXWg8W94v04eqijy6g,2011-12-01,YNaKNYuYZe3142ctwNLDbw,5,"I was in this area and went here for lunch today based on the Yelp reviews. I had a molete and lengua, fish, and pastor tacos. Washed it all down with a Mexican coke, made an awesome lunch! Everything was so good I ordered a shrimp burrito to go and shared it with a friend after I left. I'll be back to try more things next time I'm in the area!",review,i0A-c2yoHySmFhRV2sDR1g,0,1,0 +z2YTaHtGod3i3BBbKiMNwQ,2012-06-23,FWAcid1CnWAhzdVWtYCJcg,5,"I love me some coffee. The french roast brew is perfect for surviving a long day of work. If you want something sweet, order the iced raspberry mocha. Just the right amount of sweetness without tasting like you're drinking syrup. The muffins are moist and delicious. The spinach salad here is surprisingly amazing (yes, they make spinach salad at this coffee place). The best part about this place? It is not full of hipsters and college students who hog all the decent seating and never leave. I can't wait to go back to try all of the other drinks offered.",review,j3JBwrBomduNdWTC34Knnw,1,0,0 +VVeogjZya58oiTxK7qUjAQ,2012-05-03,6mDIR-lRchR66s0dZICjxw,3,"Another disappointed visit. I am starting to think this isn't a fluke and PB has lost it's magic touch. We went for my wife's birthday around 4pm on a Wednesday. We actually walked right in and sat down. We were both shocked as the least amount of time we have ever waited was well over 3 hours. + +The staff was more attentive on where we sat than giving us a genuine greeting even though the place was empty except two other tables. We put in our order for a margherita with prosciutto, a wise guy, and a caprese salad. + +The bread came out cold with some oil to dip it in. I can't remember if it was always cold but it would be nice if they threw it in the oven for 30 seconds before they serve it to you. Next our pizzas came out and the margherita was missing the prosciutto. Not a big deal. Maybe he didn't hear me, maybe the cook didn't hear him? My wife confirms I did request it and I'm not losing my mind. The pizzas were good but lacking the usual special touch. The crust was the best part which is not unusual but what was unusual was the rest was very lack luster. + +Even though the shop was dead our waiter never came back to us and was back behind the bar laughing and chatting with other staff members. Finally a blonde woman asks if we would like our bill. She brings it to us and when I give her my card I gently advise her they forgot my prosciutto and it's on the bill. Another guy brings the bill back for me to sign. The 6 dollar prosciutto is still on it. I inform him that there was no prosciutto and I told the other woman but it's still here. I don't know if she thought I was just making small talk or what but I sure am not paying 6 bones for some sliced ham that wasn't even on my pizza. He took care of it. + +Here's the deal. I don't know if it's because I didn't wait 3-5 hours to eat or if it's just falling apart without Chef Bianco but PB has definitely lost it's way and is quickly losing the legacy he created whether they want to acknowledge it or not. I used to think the staff was short and slightly rude because of how busy it was and dealing with upset starving customers brings them down but now I know that is not the case. They are just not good at what they do and have been there getting away with it for too long. Just because PB is famous and Chef Bianco is world renown doesn't mean you are. + +The dough is good enough to come back for but there is simply no way I would ever wait in line to eat here again. + +If you read my previous review you will see I am not a PB hater and actually was a huge advocate. I guess all good things really do come to an end.",review,SGXahHRReksq3m_Zk9V20w,1,5,1 +KBG28p3lGX17hOPoHhq5PQ,2011-11-11,2_HkFFyvkIYO8dfi0Nmybg,4,"What a menu! My boyfriend loves sushi and I don't eat seafood, so going to these types of restaurants can be quite disappointing. However this place has the most extensive menu I've seen at a Japanese restaurant that is known as a sushi bar. The ambiance in the place is really romantic at night with dim lighting, nice music, and delicate plating. All the little details in the decor, like placing the chopsticks on a polished river rock was beautiful. Their menu offered everything from chicken and beef to lots of seafood. I ordered chicken teriyaki and it was delish. Their sauce tasted homemade and was lighter then most which I loved. It came plated nicely. I also had their tempura which was light and airy as it should be. The dipping sauce, also heavenly. My man seemed to enjoy his sushi and it looked nice as well. Overall it's pricey compared to other sushi places, however the ambiance of the restaurant and upscale choices on the menu make it worth it.",review,QdypppSRw2H5UtMu1IebLw,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2010-02-13,-D6g_1b50Nxvscbal0aSyA,4,"So we finally decided to give Cibo another chance and I'm so glad we did! + +I love love love their patio. It's very cute and romantic especially with all the lights wrapped around the trees. The heaters keep you warm on a chilly night and it's much quieter than their indoor space. This place is a great date spot. + +We both had the Prosciutto Cruda pizza and had wanted to try the burrata, but unfortunately they'd been out of it for the last week so we ordered the bruschetta instead. Our waiter also recommended the Valpolicella Ripasso, which was ok, but it was a little light for our tastes. The pizza was really good (the fresh ingredients really come through), but we weren't the biggest fans of the crust. I like something more substantial and airy. But for a thin crust pizza it wasn't soggy at all. A big plus! The bruschetta was also ok (don't get me wrong I still ate all of it and would order it again), but each bite just needs a little more of a punch. + +Service was great and we met Karen, the owner, before we left and she is a doll. We had a much better experience this time around and we will certainly be back.",review,EKwGhgLrM18ErVKKeYE2UA,5,5,3 +BD74uSwDe175zEqfppDRvg,2008-07-25,un-QbuM1YkCs-wNr9lvSuw,3,"So-so Mexican food. I have heard people raving about this place and I don't really get it. Don't get me wrong, it's better than Manuel's or Filiberto's... but that's about all I can say. + +Okay, their Pollo Fundido is good (but not great like you will get at Ajo Al's). But let's talk about the purple and teal accent colors that scream ""I was remodeled in the 80's""! Lame. + +Good chips and salsa but small-ass bowls! + +Oh, and don't expect to park in their little lot during dinner rush. Also, the surrounding neighborhood is definatly the ghetto-side of the Moon Valley area.",review,0qbfCsqgn7ol9m9CgAJ3WQ,0,0,0 +b5cEoKR8iQliq-yT2_O0LQ,2011-04-26,SNffynGI3aC-Meb2vtEMJQ,5,"It isn't often enough that I get to dine at Carlsbad, but last night I decided to have dinner there. I'll be completely honest, service is always a mixed bag. But then you figure when they're crammed to the gills (which is generally how it goes), you can't always expect Speedy freaking Gonzales to be your server. However, last night I don't think I could have sneezed between the time I ordered my food and when it arrived to my table. Excellent.. is all I can say about this joint. + +If you're looking for some tasty New Mexican fare, get over there!! And if it's packed, let the valet park your car(CUZ ITS FREE)! Start off with a Dos Equis Amber, get some nachos(this vegetarian WILL eat the niblets of chicken in them nachos cuz it's just that tasty) and kick back. Preferably on the patio...because there's a waterfall!!! + +And if Jacob's working the bar.. expect nothing but the best in cocktails... seriously.",review,hqQietyMWhUDCoD8x_F3tw,2,2,1 +JoqrcQuzD3yEvs9KvN82ag,2012-05-08,xqRrpg2VyIxEOD-G6t_8Hw,1,"This wendy's is terrible. I grew up going to Wendy's but recently the whole chain has become disgusting. This one is just a slow, disgusting chain. Blah, rather eat pretty much any where else.",review,sRgUoLpEWhu6jnr6Nqr9-w,0,2,0 +PmPOuRvuN3CoNOi1nBj_TQ,2010-04-18,wrncJ3ksVdIqyZBqP9qx-g,4,"This in truth had been my first ""Cajun"" eats. + +The atmosphere was cool. +The service was good. +The food was rich and filling.",review,bJ-YCS-7wSlFL0FgPdU2FA,0,0,0 +E5dqlvxPw9Q4XFqOMw_lqw,2011-02-22,XLMY6qKw3dgG4zpdaVkakw,5,"FANTASTIC little lunch/brunch spot! Went here with the family while visiting Scottsdale and really enjoyed it! + +We had the Tuna Melt, which was delicious with their spiked cottage cheese! +The cranberry chicken salad made into a sandwich was DELICIOUS! + +The omelets and scrambles looks great - I didn't taste, but then again, there was nothing left on the plate! LOL + +Smaller place so could be busy during peak hours, may call or try and hit an off time. Service was ok, wasn't anything special but the food was really cute and made for a really cute little lunch spot!",review,WkrnAtXbCvfPnb87m8319g,0,0,0 +iU2xL-h56_yPtfB42cH75Q,2010-03-18,Z5wIXNPxMJJVktBJ181NKQ,4,"Clean, comfortable, smoke-free, fast service, nice staff. + +Also, their complimentary breakfast had a nice variety of food items. There is juice and coffee; bagels, yogurts, waffles and cereals. + +The hotel was a lot nicer than I expected, and I would definitely stay here again.",review,CfQTjevxIX1v2BXmmOMKjQ,0,0,0 +GIAcSwgHtT-ookKK4-dsLA,2012-12-13,hi0XKe-aOeWyfanGYbrPNg,1,They wouldn't honor pet co's online sale prices. That's the first time I've heard about this.,review,zjM_3HCFhicnxfccPf6bUA,0,1,1 +MAfc2V_EVtyR9rMxxEAPLg,2011-03-25,9hJzAyO-DotNgK8fnJPtoQ,4,"Being a San Jose native, I know Pho and Vietnamese cuisine. Let me tell you, Khai Hoan is excellent. Definitely the best I have had in AZ and comparable to the best noodle houses in San Jose. + +The pho (rice noodle soup) is great- beef or chicken. The dry noodles and rice dishes are generous portions, and very tasty. Great ingredients in everything. Make sure you get an order of spring rolls. . . + +If you have not had Vietnamese food, check it out! It is fantastic. If you have had Vietnamese, go to Khai Hoan and you will not be disappointed.",review,NsVvJ16TMIx5_-GwugAPgA,0,2,0 +-iJZ-PEnOw2oVUBFfg5wJw,2011-01-26,TwyIyrx1Y9UY1VPFnMRzoA,4,My dog is very difficult and they do a very good job handling her. It did take a few times before she got comfortable with them. I am glad I found The Doggie Door.,review,7rqM7Vhys0NLcGH8lxSywA,0,1,0 +IW9yHeqnFCEbO5s1UCrqeA,2010-07-15,ZUKU8l8jQ-_m2cK6b7Vm_Q,5,"Arai pastry is so delicious! +ironically i come here not for the sweeties: confections, cakes, cookies, cremes, not being my style- but for their delicious savory treats! The breads they make here are top knotch, the various salty pastries are all worth exploring, the red bean one and the curry filled ones being my favorites. But the real deal, the Coup de grâce, the mamoth reason of what makes this little japanese pastry shop (in my mind) is their sandwhiches/ green tea shakes +that powerful one two punch of savory sagacity is what makes me want to live sometimes +yes yes +i find the world to be a better place with those items in my tummy",review,pv82zTlB5Txsu2Pusu__FA,2,2,1 +kJFS_3WlP6TFdNUYt6V6FA,2011-05-28,LXYT1R1885ENf6O3tKhhbA,2,"Our fearless Critical Mass organizer arranged with Cycle for us to end our May ride at that establishment. I was excited, because Cycle purports to be a pro-bicycle bar/restaurant. We rolled up, all excited. There were ample bike racks for our nearly 100 riders. However, when we entered the hotel, we were brusquely directed to the bar entrance. Having been to the restaurant before, I wandered out to check the dining room. I was immediately turned back at the entrance and told the dining room was ""reservations only."" + +Well, the bar has maybe 5 tables, and there were nearly 100 riders. People who have just completed a 10-mile+ bike ride want to eat, drink, and be seated, not stand 5 deep in a bar line and then stand around holding their drinks. We were not even sure we'd be able to order food. We left almost immediately and went across the street to Portlands. Right after we'd ordered, we saw another group of bikers headed to Carly's. + +It's not like Cycle didn't know we were coming. If you know 100 people are coming to your venue, don't you think you'd prepare to welcome them and encourage them to spend freely? Lame.",review,2LCrT_BOJvGV4xi_lmoRcA,1,4,1 +ZdQbDVZWDsO-d7q2qW8E3A,2012-06-18,DiXdI0QMSl-gFubWu2BGCw,2,"We were excited when we found that we could add George and Sons to our delivery list. The food is good, not great, but it was a great option on lazy nights. Tonight when the food was delivered it seemed like the price was a bit high. There wasn't an itemized receipt attached to the credit card slip so I said to the delivery guy this seems high. He gave no explanation so I tipped as usual. Well turns out that there is a $4 delivery charge so this guy made a pretty big tip for driving down the street. I have no problem with delivery charges because there are some crappy tippers out there; I just hate having extra charges slipped onto my bill with no explanation. This will probably be the last time we order.",review,X5t6e37KpYRpWDqr30vMLg,0,1,0 +nMHhuYan8e3cONo3PornJA,2010-11-01,hMTocjR3ek1Ati1pl2oKLQ,3,"* 5 stars for uniqueness - This place has very interesting food and flavors that aren't common around here. + +* 5 stars for the staff - Everybody was very fast and friendly. + +* 5 stars for coolness of the location and the establishment - I mean it is pretty cool that this place is in a nicely redone 100-year-old house in a cool part of downtown Phoenix. Parking is a pain though. + +However..... + +Besides feeling hip, cool, urban and trendy; I also felt hungry and ripped off after leaving. Sure, I could sit there for hours sipping saki and trying every one of their tapas and probably be ok hunger-wise but I would NOT be ok with the $100+ tab per person that it would surely be. For me this is more of a fun/interesting place to go before you go out to dinner.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,1,0 +N8Bdlykr8F5xSs5D3SUb3Q,2010-01-31,ABTzVscqSV5Y31aQUTNhVA,3,"Meh, I'm not completely sold. + +It's so much smaller than a traditional B&N and they did not have anything I was looking for. Nevermind any of the school related supplies I would have like to seen. + +I don't think I'll come back here, I'll make my way to Borders (yada yada as you will). I won't be going to the next nearest B&N (Tempe) because I don't have a car and the energy just isn't worth it.",review,T5mD6ggC7fh48QgXR0LevA,0,1,0 +tZXPhvufHhfejGrRp554Lg,2011-02-16,Yg7NgER9aAVz0ILwdvo3ag,4,"Consistency every time i return in quality of ingredients, service and taste of food! how nice that one of the owners recognizes you and comes over to greet you. the friendly staff behind the counter and nice girls who wait on you when you come to dine in add to the positivity. +my favorite dessert is the yogurt with fresh granola and fruit. i wish this place were open a bit longer. +i've had most of the entrees, loving the duck salad with the sauce, the fresh greens taste like it's gone from field to plate in the same day. +i'll happily give this quaint bistro 5 stars if they stay open longer hours. i feel like this is scottsdale's best kept secret.",review,m8qzAQab1IY28lDRGMlO3w,1,1,0 +yc5AH9H71xJidA_J2mChLA,2012-05-14,cZsdytG99iYRESkoJzD-5A,4,"If you're in the neighborhood, it's not full of skivers having a session. Service was friendly and ample. Food was good. Exactly the pub we needed to find. A chat with a local Barney, the jig my daughter ripped into was heart felt, live music, and a boxty that tastes like my dad made it.",review,LAxqXAosUrSR6S4mVDIwOw,1,2,0 +RUZvUPOn90ScX60eETwcCw,2010-01-26,1LbjCQtxBOgquGtSvRKuXg,3,"On a recent visit to Arizona, my mother and I ventured into this store. Neither of us had stepped foot in it before, even though she lives a mile away. + +The aisles are broken out by cuisine, and the selection was awesome. I was particularly surprised by the Holland, Dutch, Brazilian, and British aisle, in market classified as Asian. Very unexpected. I bet they would be more business if they boasted to be more international. + +I really liked this place, but the word needs to get out about Lee Lee's. If more people shop, they will restock their shelves more often, and most items won't be so close to their expiration date. + +Final points: +- check expiration dates before purchasing +- Generally clean but the shelved items needed to be dusted and straightened, especially the aisle with dishes. They were all over the place and had to hunt for matching bowls. It's a market, not a dollar store +- If you can get past the initial fish smell, you won't be disappointed.",review,JkyvCg99SMdfS6OZv2P3RQ,0,3,0 +ntN85eu27C04nwyPa8IHtw,2012-11-07,JjsTlbPjZvfsdWAKfnmFWg,5,"I ADORE this place. Matt's has been a staple breakfast, brunch, whatever place for me since I moved to Downtown 5 years ago. They just moved to a great place up the street (where Verde used to be for locals) with more room so now everything isn't so crammed! Not that we all didn't enjoy their original house, this one just says, ""I'm still awesome, I just stepped up a notch."" Everything is delicious. I love their 5 Spot, the waffles are great, and their lunch specials are always amazing. If you like jelly - try their homemade stuff. Try the bacon.",review,x-0Q8z-BIwHyN-KDjZbiSg,0,0,0 +WowrRUKvjiLX4zT12xU_yw,2008-07-07,_v9HbclDhe1GVgk4aGefrQ,4,"I really like this place. However it does suck time like no other place. + +Somehow evertime you are there for over 2 hrs? + +I usually try on 60 items to get 1 that fits well, and cry a half dozen times about being fat :( + +Then I cruise the little kids clothes because the mens clothes are to large for me and the womens are cut weird. + +One of my boobs is like a 3rd the size of the other so its soo hard to find clothes that dont make me look like a cancer survivor. + +Anyway, good finds here. Try the clothes on even if it says the size is smaller than you wear. A lot of times it says one size but is really another. +My girlfriend bought 200.00 jeans for 20.00 a piece because it said they were a 24 when they were really a 27. + + +P.S. anyone know where to find some dress vests? + +The womens ones are too short and make me look like I have flowing love handles and the mens vests are to big in the shoulders and ribs. + +I think I should try maybe a kids vest? thoughts?",review,ZZ43etAB2n_T53YBYtf8Dw,0,2,0 +ntN85eu27C04nwyPa8IHtw,2012-09-03,87UfBZ4-lp-oUXvVn79JgQ,4,"http://stevelerer.com + +I traveled to Phoenix only a few days away from the LA marathon in March and was determined to start carbo loading early. My first stop was Matt's Big Breakfast, a place I had patroned back in 2010. That time I ordered the item that Guy tried on triple D and it was really good. He ordered the chop and the chick which was a pork chop and two fried eggs. It was delicious, with a great pesto topping, I only wished I could have had more pesto but they may have given it to me if I had asked. + +The restaurant is small usually with a 10 minute wait even for one person. I didn't mind and hung out with the locals for a little bit before I was able to sit at the bar. The decor and ambiance is not much different than most other small breakfast spots but it is clean and welcoming. The staff was nice and took my order quickly and it was only a short while before my order of the hog and the chick was in front of me. Placed at my spot of the counter was beautifully cooked think cut peppered bacon, crispy hashbrowns, and two perfectly cooked over medium eggs. Everything on the plate was cooked really well and was a perfect breakfast. The eggs were right under medium which is where I like them and the hashbrowns were crunchy and crispy on the outside while still creamy on the inside. Somewhat like a potato latke, just without all the onion. By far the star on the plate was the think cut bacon. Sometimes when a restaurant says that the bacon is think cut it really isn't and other times it is so thick that it comes out uncooked. Matt's got it just right and peppered right to the edge of too much. Just where I like it. I could have eaten platefuls of this stuff, if only they were in LA at the end of the marathon. + +The last thing in my order was the real reason I returned to Matt's. Each breakfast arrives with a side of bread of which you have a few options. Bread aside, the start was the strawberry jam they served on the side. The jam is without a doubt the best thing in the restaurant. It is super sweet with chunks of fruit inside. It has so much flavor in such a simple concoction, I could eat a jar of it. Too bad they only give you about two ounces. I wonder if they bottle and sell it because I would buy. + +All in all Matt's Big Breakfast is a really solid breakfast joint in downtown Phoenix. No wonder it always has a wait. The peppered bacon was delicious and the rest of the meal was nothing to scoff at but, in the end, I would come here every time I visit Phoenix just for the strawberry jam. Check out Matt's Big Breakfast the next time you are in town and let me know what you think. + +Overall Review: 7/10",review,KzFKfC6q_s7i6mUt8Q43FA,1,1,1 +2OY8xs4aqOt8eTnYokdrww,2010-03-09,fiAcFKmov8zTky7GQZ3o2Q,5,"What can I say that hasn't already been said about the food, or the view? I know, I'll share the best part about my amazing birthday dinner at Elements -- meeting Executive Chef Beau Macmillian. + +He didn't duck away when we made eye contact in the hallway, instead he broke away from his staff and came right up and introduced himself. He was so incredibly personable. He could have easily ignored us. I'm sure he's approached on a regular basis now that he's such a TV personality. But instead, he chatted us up and he talked about how he was so inspired by Asian food and how he wanted to bring that influence into his food and to Arizona. Before we knew it he was taking us in to see the latest renovations to Elements' kitchen! + +He proudly showed off the latest upgrades. Sure, there were new gadgets, but he even included skylights because his sous chefs said they hated never seeing the light of day. How cool is that? + +And to be revealed next month is an expansion to the kitchen that includes a table for 12 INSIDE the kitchen. Not a new concept for restaurants, but something Chef Macmillian is so excited about. There's no doubt that the food that he cranks out can be intimidating, but his latest endeavor speaks to his desire of having his guests witness the artistry behind the kitchen doors. This new addition promises to give you a full sensory experience BEFORE the plate even reaches your table - from seeing, smelling and hearing what's happening in the kitchen to finally tasting the finished product. Talk about mouth watering. + +Here's hoping that I will one day get to sit at that table.",review,fUmu2OulTy_TZ0gpmX0neg,3,3,0 +jCUOqEK8Lln0PK3GeUl6IQ,2011-02-05,sLpEY8sxH9ZaU4IHbCfEJw,2,"Went around lunch today and got a blended double chocolate mocha. The staff were really nice and the building is really cool, but my coffee was more of a milk shake than any sort of blended coffee - I even asked to make sure it was made with coffee. It had no coffee flavour at all and certainly wasn't ""double chocolate"". I loved all their different seating, the vintage cash register and even one of the coolest bathrooms I've ever been in, but if I'm going to pay nearly $5 for a 16oz drink, I want it to taste amazing. Was also disappointed that they didn't have any real selection in the bakery case - it was all sandwiches, breads, and a tarte (which looked good but was also overpriced). They apparently won some prizes for ""best cupcake"" or something and there were NO cupcakes in the case when I went in.",review,o8J-ergbGYjrUy85I_rxzw,0,1,1 +RFMcLH3_58eAwvSfvLhJew,2009-11-04,ZcJpy6wWjDdJdXZT1xfazg,3,"Other than being a little overpriced on some of their items, it's really good food. + +I've tried the pesto linguine, fettucine with marinara, grilled cheese with tomato and arugula, linguine with alfredo sauce, caesar salad, their chocolate and vanilla cupcakes, and their chocolate chip scone. + +The overall price for two adults (with medium drinks) is always about $20. + +I wouldn't go there all the time, but every now and then I get a craving for their bread they serve with all their pastas or one of their cupcakes.",review,bDVQPjGPM6yVLD2cntJkrQ,0,1,0 +qkX9CmImtW97GHmt9NXKog,2010-05-11,Qe6RuaZrsF7Iy40hh0HOfg,5,"I love the lakes! Yes it's a lake in the desert! Dragon Boat, Outrigger, and Marathons! It's the place to do it. Not sure about the fishing part, but I do see people fishing there. What are they trying to catch hmmm?? I enjoy running there on a nightly basis and so should you. South side is probably the most scenic, but not to say the North side is bad. If you're a fellow photographer I would definitely recommend this place during the evenings :)",review,XqMkm-DD9VsdcKx2YVGhSA,0,0,0 +lCh6iBHtgrDvPc_ZUwNRRw,2012-11-16,gCT2dY7lXdiljmh_8jSqTA,4,"I was really surprised by this place! Soooo much better than that other ""bertos"" place! I went thru the drive thru so I'm not sure about the inside but I ordered the taco and cheese enchilada combo with rice and beans. I also ordered a side of chips. The food was very good and the rice was REALLY good! The chips were hot!! Loved it! Yum! I will be back when I'm in the area again.",review,-EyEj5BujVFisco6OwmR8A,1,1,1 +H83uIqLKcOSFcmJhXmc-lA,2012-03-20,ZaGj97PSMZVs1dvvTPfOzw,1,"I would give this place NO STARS but Yelp! wants me to give at least one. + +I went here with my boyfriend last night for dinner and next to our awful Bucca di Beppo (Scottsdale) experience, I have to say, this one is on my list of MOST TERRIBLE restaurant experiences. The service was so bad, we didn't even get to try the food! + +True Yelper that I am, I did my homework before suggesting that we come here for dinner. I saw all the reviews about the ""bad service"" , but I paid more attention to the ""Cheap"" and ""Delicious Pho"" reviews because after all, you can't knock it til you've tried it. Yes, the place looks as divey as any food dive gets, yes the place isn't as clean as it probably can be, but hey, all the best pho I've had (Da Vang, Khai Hoan, Pho Thanh) has been from some of the diviest pho spots in town. I was excited. + +It was around 6pm and the place wasn't busy (there were 5 other customers besides us, and 3 of them were on their way out), so we went ahead and sat ourselves down. The server gave us menus, and made her way back behind the cash register. + +After looking over the menu for less than 2 minutes (I usually go for the spring rolls + everything pho whenever I visit a new spot), we were ready to order. I tried to make eye contact with our server but she seemed to be preoccupied with laughing and talking with the pre-teen sitting behind the counter with her. I finally made eye contact with her, she looked at me and I looked at her, and she turned back to her conversation. For the next 15 minutes I tried to get her attention to alert her that we were ready to order - no luck. But then I noticed that both her and the girl she was talking to were looking over at us and laughing, occasionally pointing in our direction and laughing some more. I wasn't about to give up because I was determined to try some of their well-reviewed food, but after a quarter of an hour spent trying to get their attention with them just laughing and pointing at us, my boyfriend and I had enough. The way they treated us was disrespectful and humiliating, so we walked out and drove across town to another Vietnamese restaurant. + +We are never going back to this restaurant, and I suggest you don't either. Just as it isn't acceptable for customers to be rude to restaurant staff, it also isn't okay for restaurant staff to be blatantly rude to customers who have not done anything to deserve bad treatment. We did not deserve the type of treatment we got at this restaurant and I am seriously fuming with anger as I write this review. I don't care how delicious and cheap your food is, you cannot use that as an excuse to make customers who come in feel like somehow they are undeserving individuals. + +Thanks, but no thanks, Pho House. I don't need to feel disrespected and belittled just so I can try your cheap Vietnamese food. I have plenty of Vietnamese friends who have moms who can probably cook better than you can and will treat us a million times better than your staff did last night.",review,ci9mK1xSTvNCO8H2LYiAjA,1,3,2 +6eax0w8j0tudDOkvWgmQ7A,2009-01-13,O8xO5sbKbJ5onDgMBDpEaw,4,"Considering this is the only gym I've ever been in, it's great! They have updated equipment and lots of them. I usually go during one of the busy times and can always get on a machine, or do the things I want to. Plus they have classes which are good. And every time me & my boyfriend walk in & out of the Y, a nice gal at the food counter greets us and says goodbye. We still never order anything, though... + +They lose a star though because I HATE WORKING OUT! Sigh...",review,eRhqwWWYneA3Wr_WYbmVGw,0,1,1 +LkVnmNpOPrThbsj_vKKz_g,2009-11-27,t0kYmtUZlhpeTqCvuf7nEg,5,"Okay,talk about coincidences.... +The other day I was compli-chatting with fellow yelper Jarvis about hard to find music. +Today I run into a past acquaintence while out and about. +How do either of these tie into a review of Boom Boom La Rue's? +Okay,follow along if you will. +So I run into this past acquaintence who's apparently had a bit of a rough week.She tells me about finding this store in the middle of a bad day and it immediately turned her frown upside down. +She's raving about it.Then she tells me she has a yelp account and has added a review. +I tell her I too have some reviews on yelp. +Today I'm in that neck of the woods and so I stop in. +Holy hell! +This place is a drag queen's delight! +It's insanely glitterific and there are beaded dresses and sequined accessories everywhere. +Not anything I can personally do anything with,but I did manage to pick up a few things as gifts for friends. +And none of it broke the bank. +What does this have to do with my convo with Jarvis? +A day or so ago we were discussing hard to find music and I brought up Nina Hagen. +The sales girl in this store was a DEAD RINGER for Nina Hagen!!!! +Flame red spikey hair and clothes right out of 1978 pure punk rock! +That took me back to the good old days for sure. +She knew the stock,was able to make excellent suggestions by asking specific questions and wasn't the least bit pushy. +She was able to attend to several customers at the same time and created a very social atmosphere for everyone there. +For someplace I didn't expect to feel comfortable in,it was a pleasant surprise. +While there wasn't anything there I would feel the need to buy for myself,I could see going back again and again to get gifts for friends. +A great experience.",review,-QFUut5cViBP9mYFHghZMA,2,3,3 +iXT19WQLq_5ua6uFNuVKpQ,2012-09-27,mOYD-9CwGtB9MYG24IhtOw,3,"Eyebrows are a very touchy subject. I'm literally convinced that unless you make some serious cash, finding an excellent and meticulous aesthetician is like finding a needle in a haystack. Well, Yelpers, I've been searching in this haystack for three months too long, and each time I leave thinking, ""They really don't listen to what I requested and I wasted money."" So, I decided, no longer was I going to leave spending $20.00 (tip included) on mediocre brows. I went back to doing my own, and I am completely satisfied. Plus, the music selection is terrible. A positive, it's neat that they text you a 24 hour reminder notice. However, you better be sure you show up, because they do charge fees for tardies and no-shows.",review,S103dsmqYSMlDR2SxVm5cQ,0,0,0 +X3icXUyW9vS4UXY6V_MR4w,2011-02-26,ePnPMrYUs5qaW8zQXxFSbw,5,"We took our grandson (Sebastian) to the park for a thoroughly enjoyable visit. Sebastian wasn't too sure about the carousel, but the train ride put a smile all over his face. The visit to the Presidential railroad car was fun and educational for the adults. Sebastian liked it too.",review,bTdw7g0mdvfeCyaPa56pBg,0,0,0 +amQir2cEG2MV625L0dE8aQ,2012-12-16,zQJJYaeoJ9gI2RkdFLDa7Q,3,"I've eaten at quite a few Yogis Grills since they started opening up in Arizona a handful of years ago. Their teriyaki chicken is pretty good and you get quite a bit for your dollar. +However!!! Two things. 1. No matter which location I go to the service always seems sub-par. It seems everyone that works at Yogis Grill just seems uninterested and lacks the ability to be friendly. *shrug* Its not overly bothersome to me but it would be nice to have friendlier service. 2. Their sushi, is not that good and they are ridiculously over priced. I can go to Kona Grill which is a nice restaurant and get much better tasting sushi for nearly $2.00 cheaper! I just can't get past how expensive their rolls are AND it doesn't taste much better then grocery store sushi. + +I'll still go there for teriyaki but not for sushi, its just not worth it.",review,J5nb9AT1LDiGN4_hY0Au8Q,0,0,0 +hebts_NucpamjCG2B9VY5g,2008-11-21,MVs1sYWF9SqRFuYthPNLbA,3,"I have to admit, I love a good Philly Cheesesteak sandwiches...So when I heard about this place I had try it. We made the drive down there...park in the parking garage off of 5th st. Walked to the resturant and was pretty impressed. Place was really clean, guys behind the counter were as nice as philly people can be. Then I looked at the menu, saw what I wanted to order and ordered it. I ordered an full size cheesesteak with cheese wiz...i made it a combo. I was shocked that it came out to like $13 for a sandwich, drink and fries. When I finally got my food, I was impressed with the taste but don't know if it's worth the $13 I paid for it. If you don't want the combo, the full sandwich is still $9. So if you want a good sandwich, be prepared to friggin pay for it.",review,79LOudEmAcxSYVA1SF5Ayg,0,0,0 +hrOsdyai-9B91cGjBspHqw,2009-01-16,OCD-PBeJFiu-arylgYqWTg,3,"Dined here last Friday night. I know this is considered one of the better Chinese restaurants, but I am struggling w/ a 2 vs 3 star rating. + +The eggrolls, pot stickers were good. Pot stickers are actually quite stuffed. + +I got one of the chow mein dishes w/ the noodles done Hong Kong style, fried. The dish itself was fine, but the noodles were weird. Part of them looked like they had not been put in oil and fried adequately...they were dried and stiff. I pulled that bit out onto my extra plate. + +The daugher liked her Kung Pao chicken. Hubbie's shrimp dish was good too, but the broccoli ringing the dish could have been cooked just a little bit longer...it was pretty much raw. + +Table was a little sticky. + +Ultimately, I felt I could go to another chinese restaurant and have a similar meal, maybe Tao would be slightly better? Or Tao is slightly worse? I can't get past those noodles. Yuck. + +I think ultimately if I'm in the mood for Asian, I'm not gonna go the Chinese route. Go to asian for me right now is Anise.",review,1mal-cvLhyX8iGEt56_5Dw,0,0,0 +u9MKnG0PqI8N7ixSfrrTiw,2008-09-29,Tk_mNsO5kyXTZl8RW2FD-A,4,"3 1/2 Stars. + +Girl's choice last night.... and we (my sister, my niece Carol, and myself) ended up at the Famous Dave's in Chandler. These Famous Dave's look like every other one... typically bright Orange and Yellow! At night, you must have deficient eyesight if you can't find a Famous Dave's! In the evening, Famous Dave's is just a lighthouse beacon in the middle of a drab mall! + +On the menu... + +Blue Margarita (** 1/2) made with Blue Curacao - It's disconcerting when the last time you saw your niece she was just drinking Cokes... now it's Blue Margaritas. Must be getting old. In summary... not very toxic. Could have drank this in one gulp and wouldn't have had an effect! Machine mixed and made. Looked cool, though, with an Aquamarine Blue color. + +All American BBQ Feast (****) Gimmick is that all this stuff ( Full Slab of St Louis style SpareRibs (*****), Whole BBQ Chicken (*** 1/2), 1/2 lb of Texas Beef Brisket (*****), Famous Fries (*****), 2 Baked Potatoes with all the Fixin's (*****) replaced the Coleslaw and Wilbur Beans, 4 Corn on the Cob (***), 4 Muffin Style Corn Bread (****) ) is served on a bright, shiny, galvanized Garbage Can lid. Some of the items definitely lacking in BBQ flavor. + +Hot Fudge Kahlua Brownie (**) Warm, Walnut covered Chocolate Brownie, soaked with Kahlua Liquer and topped with Vanilla Bean Ice Cream, Hot Fudge, and (loads and loads of) Whipped Cream. Ice Cream and Kahlua was no-where to be found! + +Total tab: $82.08. Not bad for the amount of food. + +Service (****) This is a total generalization... but what the heck! The wait-staff at Famous Dave's is totally opposite from the previous evening's robotic lifeless performance from the wait-staff at Olive Garden ( http://www.yelp.com/biz/olive-garden-italian-restaurant-chandler#hrid:l6HajH2UNtb1EZMTj19Ccg ). I really don't give a darn if it's just a performance... the attitude that the wait-staff presents will be passed onto the customers... whether bad or good. + +Typical of all Famous Dave's you sit at a booth or table covered with Red and White checkered table-cloths. At the front entrance is a display of all the BBQ awards that Famous Dave's BBQ items have won.... mostly in the MidWest. Check out the lead-pipe utilitarian interior design... Cool! + +Very colorful and festive atmosphere! Kids or adults with a kid's attitude will love Famous Dave's.",review,a1DUUGOKHbjuoL_Z90AnuQ,1,1,0 +gtQ1D8Fjl47Tn4X-QxVEFA,2010-01-29,2fIOERxnhD2F0NVnjsSizg,5,"So. After 8 years of owning a Ford, it left me stranded on the road one to many times. + +So I bought a '06 Hyundai Elentra (from a different location). Ive never owned a foreign car, this car appealed to me because of the low miles and still had a warranty. + +Well....it started to act a little funny. So I called up Discover Hyundai, as they are miles from my work. I spoke to Tim in the service department and he was more then helpful. + +They had to keep the car for 2 days, because they couldn't get it to do what I was telling them it was doing...but they were persistent and finally were able to duplicate my issue. + +Everything was under my warranty. I was back on the road by the end of day 2! + +I will for sure be going back here for all normal maintenance and if any other issues arise. Thanks Tim!",review,6ts41fCsDKHbFZaKOMNmVQ,0,1,0 +U6oNWTxVTnuuCL0BPRZCSg,2012-04-04,1PNkuluvajTz8R2tu4wAbw,5,"I honestly wish I could give this place 0 stars just to keep people out of here- that's how much of a gem my bf and I think this place is. The not only have a more spacious theater, a bar, food beyond the typical nachos and sour patch kids (crappy, but it's there and basically just a bonus in my opinion) but they have 3 flavors of popcorn...3! Holy bajesus- we go for the Carmel popcorn alone. I don't even think we have had the regular or the cheese ever, maybe once. We go out of our way to go there just for that. This place is never that busy which I don't understand. Oh, and another plus, it's not the Tween's hangout on Friday nights. I will admit, we buy the living social or grouping every time we go there ($15 for 2 tix and 1 popcorn), but they already have our business. + +You idiots who review a place after going to a highly publicized premier like the Hunger Games that you bought with a Groupon are just that...IDIOTS. No one wants to listen to your nitpicking, go to a useless site like Yahoo Local that no one reads so you don't have to make society dumber for listening to your complaining.",review,aGVgkhy_nhNY7_9xGdNbqw,0,1,0 +3l72FflaaeI0tWEAWN3-gQ,2009-11-22,XQPxEPmjgBirRyl9ipf3NQ,2,"Am I missing something here? I've actually been back to America's. Twice after my first visit, convinced that I had accidentally gone to the wrong America's or perhaps stumbled into a nearby taco shop on 7th. + +Alas, the helpful Yelp photo informs me that I have, in fact, now eaten three times at the Famous America's Taco Shop. + +I can't emphasize how incredibly average and underwhelming the fare here is. See, I'm a burrito man, myself. I don't claim to know Mexican food or it's various subgenres, but I did live in San Diego for three years and I've definitely had what I would call over-the-top, blow your socks out your a** good Mexican food. The same can be said for any number of burritos. + +America's, I'm sorry to say it, but neither your tacos nor your burritos live up to the incredible hype that now surrounds you (although, the salsa was really, really good). + +I'm still on my quest for the Best Burrito in Maricopa County, I'll let you know when I find it fellow yelpers.",review,o9qVoftkxrFwC6W5PImouw,2,2,3 +7QSYBp2-AOdyUJXEaLnbgA,2011-04-16,RcDdftzr2gEFhr6KqR0_SA,2,"Food was pretty good but my biggest issue was with the service. We made a reservation and still had to wait an hour. Isn't the whole point of a reservation...so you don't have to wait an hour? One of the three hostess, tried to help at the end of the wait but by then all we waited was to eat/drink. All in all, I enjoyed my chicken and bbq ribs but would not go back.",review,-2S6keboidRPly-h5lBfkA,0,1,0 +VgtEm_L23SNZEsyNMKwhog,2011-08-02,2vpAE2ObHMtpzAB-KtUCaA,3,"When checking in I was greeted by the General Manager. It was nice talking to you Michael; I hope to see you at the Westin La Paloma. The Sheraton is great for a night stay if you plan on going to the airport. I stayed with my family for one night and caught a shuttle to the airport at 3:30am (Complimentary). Ugh so early, but my driver was very friendly. The night auditor was very helpful and was able to give my family a late check-out till 1:30. SO AWESOME! I love late check outs, they make your day/morning better. No need to rush. The bathroom is a little small, vanity area is limited but fully stocked and you get a loofa. +My little sister and Mom enjoyed the pool as well. Nice small patio area to enjoy from your room too. If I ever have to fly out of Phoenix or into Phoenix and have to stay over my choice is definitely the Sheraton Phoenix Airport.",review,WxO2x4xGbHfeWfU_MbuzTQ,0,0,0 +vB3vEjcw9dfHmgP8ac5ZMQ,2012-06-11,oG02BxZ8V9wTiHataDUBiQ,4,Great prices and fresh food ...,review,5uilckC718css5xjHT5UEA,0,1,0 +0db71MbrvcJnyk71COCJBg,2009-08-02,vOgUclX5GDEEvLV-lrvt7A,5,"My dad and I decided to try Great Wall because he had heard many reviews about the place and everyone insisted that you had to come try the Dim Sum. Since I was in town visiting, it gave us the perfect excuse to go. + +I'm happy to report that the experience was most excellent at Great Wall and that it lived up to the hype. Upon getting there, we were given a number to wait as the restaurant was completely full, there were probably 150+ people there dining, however, we were seated within 15 minutes. As soon as we sat down, the carts started rolling by with various plates of items to try. + +The pancake, shu mai, shrimp, duck, and sliced beef inside a wrapper are highly recommended, all were excellent. I did have a bit of trouble taking the shrimp out of the steam container because their rice wrappers were sticking a bit, but that does happen. + +I would advise that if you have an allergy to shrimp that you make sure to ask the server what is in some of the items because they do come with shrimp, including their egg rolls. Since my dad has a shrimp allergy we did have to watch for that. I did want to try their egg rolls but I would have been the only one eating them, and they were big enough to make a meal in itself. + +The sliced duck was one of the best I have had at a restaurant, well cooked with crispy tasty skin, and not too many bones to get in the way, and very reasonably priced at $6.25 for a plate. Most other Dim Sum plates are $2.25 or $3.15 so you can end up eating a lot for a very reasonable price. + +If you love Dim Sum and are willing to wait a few minutes for a table, but you will get fast service afterward, this really is the place you want to go to. There are still so many more dishes to try as well, but that will be for another trip.",review,OwBbmL2afMJBw4MCJ9_vig,2,2,2 +b5cEoKR8iQliq-yT2_O0LQ,2009-12-31,gA14FyhYdWs5V-buCe3v5w,5,Carlsbad Tavern is my favorite Mexican restaurant. I love the dark and cozy atmosphere inside and I love that they have Hoegaarden on tap.. I've had the machaca burrito and fish tacos here and both dishes were amazing. They serve New Mexico cuisine here. The only difference I noticed is they are big on green chile and use black beans instead of refried beans. I have a lot of friends from New Mexico and they all love this restaurant. The food here is delicious and flavorful if you don't live in the neighborhood it's definitely worth the drive.,review,jopndPrv-H5KW2CfScnw9A,4,5,3 +jj-K19oswZARMwCQK-b37A,2012-07-25,eAoV5Vuhh1GvDK8FbqNyHQ,3,Meh.,review,iq46mlqoLmNQzTR1z8oqUA,0,1,0 +pAu8UuWTLTLai61TW8-tZw,2010-07-04,qKEAm9llhetmhDx5lvJsvw,5,Very consistent food. Definitely a second best to P.F. Chang's.,review,ilf7UPi_14f-rDsbtlDZvw,0,0,0 +L-uPZxooP_ziXCtRrWi8Pw,2012-05-20,-prdDFUpX381ieBfT0tL2g,5,"My wife and i just dined at this restaurant. I am a chef and must say that Chef Chris's concept is one I have not experienced.The food was outstanding, service excellent and the decore was creative,down to the flower pot wine bucket and old wooden crate that it sat on. Our entrees were served on either a bed of sundried ploenta or baby spincach and blackrice. What really intrigued me was the slaw made of shredded green papaya that was part of the appetizer course. Being a chef I had to share a neat appetizer, that i recently found, using a baby corn shoot! Chef keep up the suberb Cafe Monarch Bravo.",review,CBCdt-bHZkV5nP1Z2-UOIg,0,1,0 +PlcCjELzSI3SqX7mPF5cCw,2012-08-05,83qNp4qKPg66XGacak74JA,5,"I am very particular about where I go for sushi. I can name ten places I will not go to, and have struggled to find a place to frequent; until now. I have only been here about 5 times, but every time was a great experience. Great food, staff, prices,and atmosphere.",review,W50T5WVx04EcAaE8GD3RyQ,0,0,0 +0K634ehk41ZRc4kj3NTAEQ,2011-01-11,DtF-LmAQH59qBVG3FDOo5A,5,"My trip was inspired by Adam Richmond's visit and while I couldn't do the 12 slider challenge, I knocked out 5 and was close to taking on a 6th. + +The GM stopped by to check on us and the waitress was great! Be sure to grab some fresh baked deli treats before heading out.",review,jgYtI5zHyIiztN1K-qwWMg,0,0,1 +0UZ31UTcOLRKuqPqPe-VBA,2007-05-27,LMtStwia-JprPS55yGAkfA,3,"A nice place to watch a game... nice that it is open enough that you can keep an eye on the game while you survey your many dining alternatives. + +I also they let some natural sunlight and keep the place cool at the same time. + +Anyway I don't have a good reason to give this place one star, or five stars, hence three stars.",review,yJ8A_iGJO1aqXr9HY2QhjA,0,0,0 +xcOncADGPr9eki8OU5Ln7g,2011-06-24,OzOK548AuHvx7lh_WhMBvA,3,This place isn't all that but there food is OK. There are better Chinese options for the price (try Chinese Cultural Center restaurants). The restaurant itself is well furnished and clean but I can't get over the fact that people rave about this place.,review,qQb4pg5uqvjMOfGPWbIkeQ,0,1,0 +GH6IPda304wJRxSRg9Ko3g,2012-03-21,_DweoJoD2o_ehRE0aI1Zqg,3,"We were here for a weekend during Spring Training and over St. Patrick's Day. Good location, within walking distance to Scottsdale Rd and also Camelback. Comfy beds and also friendly front desk. Here's the only issue: we had a hadicapped room. This I am sure is ADA compliant and that's great, but having an open shower in the bathroom that has slippery tiles can create a safety issue with slips and falls considering there is one drain that isn't elevated. So we had to put down about 5 towels on the floor that were drenched with water when we showered. Next time I'd like to stay in a non-handicapped room.... + +Also on weekends, try to extend the breakfast hours past 9:30 please!",review,RgqU8dg9zaSSkwAlyB5Isw,0,0,0 +kUvJiI7teJ--m5i1ReG58w,2012-10-31,nppk9y63SWo7B8SjOJSVYg,5,"Wine, booze and cigars. And friendly staff. There's not much else that needs to be said. Oh and great prices. + +The selection and prices they offer are great. The aisles are wide and clearly marked. The cigar room has a great selection as well and the prices are low.",review,palND-kF1qpMLhkcgAnSxA,3,4,3 +mQfT3JYu18HN22DVylcE7A,2009-03-31,ZjUli4D6mg-W63jPl0T94w,4,"i cannot give this place 5 stars because i went there today at 3:30 and IT WAS CLOSED. what business closes at 3? REALLY? oh phoenix, you're killing me. + +BUT the food (creative, delicious sandwiches and desserts), speedy service, and reasonable prices really do deserve 5 stars. The chicken/asparagus/havarti sandwich almost killed my taste buds with its deliciousness. i went for carry-out at a peak time (about 12:30) and TOTAL, from joining the 6-person line to walking out the door, I probably spent about 15 minutes there. very fast service=very happy jenny. + +i didn't get dessert, but i will be back on a day when i'm feeling either very fit or very depressed. maybe tomorrow, due to my 3 PM CLOSE TIME funk. crimeny. +:)",review,QfdqvcKtLBr15pMggtAjHg,0,0,0 +HUR7B6X_f_V_50w4pfoyyQ,2010-11-27,UWcz0Mga9BeuLUpCRl57Dg,5,"Any time I have out of town visitors who want ""real"" Mexican, I take them here. The chips are fresh, the salsa is divine, and after downing two baskets, you realize you need to eat an entree! I've eaten a variety off the menu, and nothing has disappointed me. The burros are stuffed full, the crisps are mouthwatering and the enchiladas melt in your mouth. +The ONLY downside is the location. Just not a great part of town, though they are trying very hard to revitalize it. Go there anyway! Just try lunch time first.",review,vtIWOPkTv3-Csv789oURgQ,1,2,0 +fHX1t2iDrhBAiq5wkc4tRQ,2012-02-02,19IYHrFMlfsgxnqY-67eyw,2,"Save your money and go to Kyoto Bowl. Our waiter gaves us our metal bowls and then coddled my family like we're children. They have all the waiters follow us to get in line for the self-service buffet. They stand there like if you get out of line, you're bad. Weird...During this time, the waiter goes on and on about their food and what they have. Then when you get to the buffet, the choices are very limited and the food is so full of fluff you don't get to put much food in. Some of it is meant to be like sushi, uncooked, but since you put it in a bowl, it gets cooked with everything else. Oh yeah, and the place is loud. You'll have to sit elbow to elbow to hear your family. The novelty about this place is that you can watch the cooks cook your dismal amount on an open fire oven. That's the coolest thing about this place. They serve it in these trendy lopsided bowls. At this point, the food has really shrunk. The food is tasteless. Anyways, they give you the bill and even though somebody else paid for my bill, I was shocked by the price ~ $10 a bowl. If I had $10, I'd rather go to Taco Bell.",review,-o3uGadqen-bc1HjMx_8Bw,0,0,0 +Xr2Qe7Se0WyH68nOxSn5aw,2011-09-21,qVeVAEkmnCa_LTkJuj7sxg,4,"There are few places that are delicious hole in the wall chains. In fact there really are no hole in the wall chains except Two Hippies and they do it right. Upon entering two hippies you will see all kinds of crazy decor like a twister mat on the ceiling, chairs... on the ceiling, etc. Your food options consist of Burgers, Hot Dogs and Tacos, where as your beverage choices consist of regular stuff like various sodas to flavored tea and lemonade. The flavored tea and lemonade is AMAZING, the flavor in the flavored teas is so good you don't even need to add sweetener, that's impressive. The food is equally as delicious, I had 2 tacos one was fish (not fried, baked tilapia -so good and healthier) and green beef, they have a red beef and green both are cooked with different peppers and marinades, The green beef was amazing I'm def. looking forward to trying the red beef as well as the ""cactus"" taco which is just insane sounding. Two thumbs up, bring cash though because that's all they take :)",review,FAxy_JuEOhhZl3C10LMY1A,0,1,0 +60SySAM54mgQiuDUMdD-Xg,2010-08-08,tjopNJVCRg6xlKXn9YapbQ,1,"Okay, did I say bad?? +WORSE. +Negative five stars. + +From San Diego, +1. they made us wait in line for ticketing. +2. Made us go check our bags + +3. Bag agent told us the flight has been delayed 35 min and we have to wait in the ""special needs"" line bc we were gonna miss our connection flight. + +4. Booked another flight. Meanwhile got barked at my a brainless, incompetent, mean lady that was a complete b*tch to us. +She told us there was plenty of time for our next flight and that we should patiently stand in line (and miss that flight). + +5. Got on the runway. Plane circled around for about an hour. didn't take off. +6. ""mechanical problems"". +7. kept ppl on the plane for another hour. +8. kicked everybody off saying we weren't taking off on this plane. + +9. made everybody wait in a long@$$ line that didn't move while we saw a ticketing agent to rebook our flight (while I held up a DELTA SUCKS sign made with pen and crayon on my sketchbook) + +10. hours later after not knowing what to do with us, they placed us in a hotel in downtown SD. +11. We were to take an 8 PM flight the next day to LAX and then 2 hr and 45 min layover. +12. 11:45 PM plane from LAX to Tokyo.... scheduled 4 AM landing in the far east, you kidding me? +13. THEY LOST MY LUGGAGE. + +~~*~*~*~*~*~*~* another incident: + +LAX to Tokyo: ""mechanical problems"" +stayed another hour on the plane. +Had them shuttle us to a hotel in the middle of nowhere. +Lost luggage on the way there. It fell out of a bus! + +Next morning, 8 AM plane to Busan, Korea. + +Seriously, you expect me to go to work on Monday after all this sh*t?! +Sorry Delta, I'm so exhausted, sick and tired of you. +F*CK YOU guys and your incompetence and sh*tty customer service too.",review,I-P1v7sRjDLEfVOndp01kA,0,0,0 +sCv1wUWJhFmQEMw3A4lwXQ,2009-01-26,DAr6DTz1A0yjBNWA0w-DUQ,5,"I grew up in Arizona and we went to Wongs every Sunday after church. Three years ago we got stationed in Hawaii. Everytime I come home, our first stop is Wongs. I love everything about it. Wongs is my comfort food.",review,yhIPCe1_YnokKDCzyPIVgA,2,2,1 +1NZLxU5WvB5roPFzneAlLw,2008-08-27,h_y-oqC4xEECVeB09nQ8ZQ,1,"An upscale mexican restaurant in the area seemed like the best thing to have happened to me. I planned my visit for a quieter evening, and reviewed the menu again and again. + +However, upon our arrival I thought twice immediately. The parking was iffy, and the place didn't seem to stand up to the signage. Perhaps the art was not to my liking, honestly not a piece stands out in my memory. + + +We were seated immediately. + +Our waiter seemed a little off, not to mention the fact that he was insanely snobby and seemed to be moonlighting in the kitchen, where he disappeared for 10-15 minutes at a time. He did not fill our soft drinks once without being first flagged down (those of you who have experienced the close quarters will understand how ridiculous this is). + +Halfway through waiting for our food (which took 45 minutes, easily), the lamp above our table went out. We sat in the dark for a good 5 minutes before they even noticed. Which was actually a nice change of scenery from the boring beige walls. + +When the food finally arrived, we were too tired (due to having finished an entire bottle of wine) so we left. Unfortunately, we took our grub with us. +I had some sort of mixed seafood entree with chorizo and a creamy sauce. It's no coincidence you're taken aback by the combination... it didn't go down too easily. Having dropped 90 dollars on the meal, though, we felt compelled to finish as much as we could stand. + +Normally I would make sure I got the name of the dish right, but since I am recommending that you not go there, why bother?",review,sfKMl7ERKuwxIh3HLXUg-Q,3,6,3 +K2-uKeetXsz4IKqXodMLfg,2012-05-09,5-WNi6j3KINGVL4YFH-PdQ,5,"This is the ONLY place my wife and I will buy furniture from, absolutely fantastic! + +My wife and I spent a better part of a month looking for a TV stand for our living room. Everything we came across was cheap and prefabricated. We stumbled on Sweet Potatoes while on our way home from another local store. The owner was extremely friendly and helpful. We found a couple things we liked but not the size we needed. The owner told us the pieces we were looking at are locally made and offered to call and see if they could custom make one. Not only did they agree but the price we were given was 200 dollars less than anything else we were looking at. We have since received the piece and could not be happier!",review,srNoX3QBtg4Rxa746JoWTA,0,0,0 +Tt6DYs0TyERWHWW5xiRL_A,2012-02-08,D4M8NVsb9TiNS9ClpfJUbQ,5,"My brother from San Francisco was in town and missing the sushi from the bay area. I decided I'd let him choose where we'd go out even though I'd never ever heard of this place before. It was definitely in a not-so-glamorous area, tucked on the side of a dinky shopping center (sorry shopping center). When we walked in I was pleasantly surprised by the quaint atmosphere and set-up. It's definitely small but everyone working there and eating there seemed to be genuinely having a great time. + +We sat at the bar/long table in front of the sushi chefs which was a fun experience. We started off with sake, and it was pretty darn smooth. We ordered a variety of different dishes including sea urchin eggs, yellowtail shashimi and the king crab roll. They were even accomodating to make my brother dishes that weren't on the menu. The chefs are so nice and fun and the prices are pretty good! + +My brother was extremely impressed coming from a top sushi city. I look forward to coming back and trying more of their extensive menu, especially for happy hour.",review,a58D196J4BxujUnO2-7_bA,1,1,1 +v6lMcqsBUT02TdO9ntvDpg,2010-01-13,KktC3mdBbE8HtZXIEZ2FBQ,5,"I love Taste Of China. I eat here at least once a week. Their menu is pretty big and the prices are small. Also, they are incredibly fast. If order for pick-up, it's ready in 5 minutes. Should I order delivery, it only takes 10-15 for the food to get to my house. My favorite plates are the crab puffs and the General Tso's chicken.",review,QGzRZoWOM1PN6oIYFDnfgA,1,1,0 +TeKAYmn3M_7_BYljXXZG2g,2011-06-30,dTeEHfg60Uq3pY6-DM4DOw,4,"Loving this neighborhood froyo joint. The topping selections are interesting and slightly different thatn some other places. They have these yummy little chocolate rocks...kinda like candy coated chocolate shaped like rocks. They were fun and tasty. A nice assortment of topping sauces too...peanut butter, mallow, strawberry. This place gets jam packed but they do have a good amount of seating both inside and out.",review,fL35GHzclQauHyVr0sjREQ,0,0,0 +yktWUtKBja_Lzk3wwR6RFA,2008-06-22,7mAyMeYAtTYEVS7gzF7I8w,5,"Have been there several times. I'm quite fussy about where I eat and quick to condemn, so my continued custom says it all.",review,yPPFHBcY1XQwpZbkSA8A7w,0,1,0 +qrIObcWKK3jeC3zfmR54kg,2011-08-16,xzl_CFa1H2MUHPdgTmfFVg,1,"You'll feel like you stepped in a time machine and landed in 1987. The decor hasn't been updated in at least 20 years. Looks like it's falling apart. The TVs are mostly 80s style TVs as well, although there are a couple flat screens as well. This is where the trash hangs out, of all colors. The pizza was greasy (which I like) but also chewy (which was gross). The wings were drowned so much in sauce you couldn't find them. Might as well get a glass of honey bbq sauce and drink it straight. Service was interesting. The guy that worked there was wearing capri pants and had a higher voice than my girlfriend. The price wasn't bad- I think it was like $22 for a large pizza, wings and 2 sodas. I'd rather pay a little bit more and just go to Upper Crust pIzza down the street.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,2 +EAMPV2fgs9cU21MXOgv3Ig,2011-09-25,dgK1nxfTdrJpAnM2wJqkzg,5,"First, I'm sorry this review is lengthy, but i really want people to understand how far a little kindness can go. + +I entered Mimi's Cafe at the end of possibly worst day ever. I came in looking to order food for takeout and get home to drown my sorrows in comfort food. i was directed by the hostess up front to go stand by the bakery and i would be able to order take out. i waited not 15 seconds and was greeted with a huge smile from a lovely girl named Danielle. She gave me a menu and told me to ask if i had questions and inquired if i had been there before. i looked at the menu for some time, unable to clear my mind enough to decide. She told me i was welcome to take a seat, and when i apologized for taking so long she responded with a smiley ""where's the fire? take your time, can i get you a glass of wine while you decide?"" wine was a perfect idea! I finally ordered and sat drinking my wine. i waited, and then waited a little longer, Danielle the young girl doing take out informed me the kitchen was working as fast as they could but are very busy, she apologized for the wait and offered complimentary bread and convinced me to buy a a second glass of wine. When she brought me the second glass i had just gotten off the phone and was visibly shaken with more bad news. Somehow this young girl had the courage to ask if everything was alright and what she could do to help. It was just the olive branch i needed. Just the inquiry was enough to make me feel better. i told her i was fine and thanked her for her compassion. finally my food was ready. She boxed everything with care for the drive home. All this time smiling. i couldn't help but notice Danielle interact with the other employees they always laughed or high fived her with each exchange. She had brightened my day, and it was clear she is a light for others in Mimi's Cafe. This is the kicker...my bill was $30 and some change...i gave her what i thought was two $20 dollar bills, but in reality was a $50 and a $20. The young girl ran outside and stopped me saying sir, I'm not sure these bills are right. i was overwhelmed by her honesty and told her no, i thought they were two 20's but the difference would be her reward for honesty. The food was tasty and just what i needed. Mimi's Cafe is a friendly place worth the wait for food or a table, and if Mimi's Cafe reads these reviews know that you have a superstar in Danielle.",review,2QkokcNKpgUG-Suif3JKJg,2,2,1 +b9oQ3GnRPyBST8J0OMGuoA,2010-05-12,wMbqc5LsxpwxzSk8FOyjPw,4,"I am just providing a review for the Mother and Infant Care Department only, since my wife has just had our second baby delivered here. + +We really enjoy our stay at this hospital. The facility is very clean and nice. Room are good size with shower box inside bathroom, so you can take shower during your stay and care for the mom. During the stay, Mom and the caregiver are entitle to have breakfast, lunch, and dinner for free. All you have to do is call and place your orders. The foods are quite quality and the portions are decent. I am really impressed with this. + +The nurses are all knowledgeable, caring, and nice. They are always there when you call them and need them. Since this is our second child, it works out perfectly that the nurses only come by when we call them or when they do their routine checks. So, the rest of the time you are left alone to rest. The hospital where my first child was born was different. They let lots of interns and students come to our rooms all the times for training, so we were constantly bothered. + +However in my opinion, if it is your first child, you may find that having people around all the time could help you not to worry too much (since we all know nothing when the first child come). + +The reason I didn't give this hospital 5 star is just because our discharge was taking so long. We thought we would be out by 11 AM, but we didn't get out until 3 PM... They said that because it was on Sunday. I think it make sense. + +Overall, I do recommend this hospital for any new mother.",review,a91mmq66xnFouKJ1KnuFQw,0,3,0 +ewZlgc22xN5NNQ1H7U6Y7g,2012-06-05,JOLih1cf5UfTWWoKZHxW5Q,3,"Threw a friend's baby shower here and it went pretty smoothly. We made reservations well in advance, and it was a small party. I'm not a huge fan of their food but it's always busy so clearly other people don't have my same opinion. The three stars is for the service, they were super attentive and everything was taken care of for our party. I just don't think the cheesecake is that great, I'm sorry! But the apps aren't too bad.",review,h3TnHCqFga0VgPO390PjKA,0,2,1 +F8q_9PUl-Lwjj9xIRPArcg,2011-04-08,nsJzvE3TpLZHEGth5hXuGw,5,"This is quite literally the best burger I have ever eaten. The rocket bacon cheeseburger with 3 patties of meat on a 10 in. sesame sub roll and is nothing short of amazing. It could easily be shared. The cheese fries and onion rings are homemade. We love the casual environment and the huge selection of glass bottled soda. To top it off the prices are amazing! This is our first time here but we are hooked. We would love to see this place on Diners, Drive-In's and Dives, DDDinfo@mac.com, so if you love it here, nominate it!",review,3ijmwHWMCJ9hx4Du8U4rZQ,1,1,1 +q9WaFYhlOZCrfXJQTG5t_Q,2012-03-08,0OMgIKXCDZPYpiIl03jLPg,5,A real gem!,review,uUoOpU5nXAY2m1qjTynhNQ,0,0,1 +3oZcTGb_oDHGwZFiP-7kxQ,2011-05-05,vXqzWtUvMz4wEphS79tjxQ,4,"Just had an early dinner with the kids tonight (kids eat free from 3-6pm btw). I had the prime rib and my wife had the fish special, kids had the mac and cheese. All were great meals. The reason to go here is to sit on the patio, it's fantastic! Not impressed that at 5:30pm I had to valet, when I'm with the family, I'd just rather park and walk (needed to walk off the prime rib and wine anyways!). This place is not cheap, and with $18 glasses of wine, there is no happy hour at the restaurant!",review,zYgSDyEHVcMLRL1LLms7IA,0,1,0 +RDX_MLThtKVPb22TvJh9rQ,2007-11-26,nRxF1UJnmcbCfGe1CY1-Iw,2,"While I give the management props for honoring our gift certificate, even though our total rang up below the minimum price, the food was teh ick. + +I got the fish tacos. I understand the urge to make them unique, and different from the thousands of varieties of fish tacos available in the Valley. But this attempt was a huge miss. + +The tilapia tasted pretty muddy, even for tilapia. It was served with a really sweet, sticky, almost BBQ-style sauce. I was alternately pleased that it was so cloying that it almost covered the icky river flavor of the tilapia, and perplexed at this odd pairing. The avocados also had a funny, chemical flavor to them. Double-yuck.",review,RMX11FC48KZTYIeExtGUCw,0,0,0 +5ambRqdTJt9vGwFzVI9HBw,2012-06-20,4qadlMctvNyvfWAf1_tKmg,4,"There's a special little place in my heart designated specifically for JoBot, so I'm thrilled to be the 100th person to get to sing the praises of this adorable little coffee shop/creperie/hole-in-the-wall bundle of amazing-ness. + +I came across JoBot by accident about a year ago while looking for a late night wi-fi spot to do some studying. It fit the bill perfectly, minus the fact that it was extremely difficult to concentrate with the loud music coming from the Lost Leaf, the interesting conversations that I couldn't help from overhearing, and the endless amount of scrumptious plates that kept parading past me. + +That said, I've made several ""study"" trips to JoBot since. While I may not be as productive as I would be at some of those quieter little coffee shops where everyone has their nose in a book or a laptop, I find that I always walk away a very happy camper, every time. + +Their crepes/tacos are delicious. All of them. Sometimes I feel as though the crepes are slightly undercooked, but once I dig inside to discover the tantalizing flavors that lie within, I tend to forget all about that. The root beer pork remains one of my faves followed by a strawberry/banana concoction for dessert. Yum, yum, yum. + +Go here if you want good coffee (the bumble bee is tasty), good eats, good conversation, good atmosphere, good prices, good entertainment, and free wi-fi at any and all hours (they don't seem to close on weekends). And if you're really feeling frisky head down a house or two for some NachoBot. Gosh I love this place.",review,lnP7h3slD1eM84GWuPys6w,1,2,1 +u9MKnG0PqI8N7ixSfrrTiw,2010-11-24,e-ZZ_oc1oSO9ELKkr7M5gQ,4,"Amazing food! Great waiting staff, and the drink I ordered was very good and had the right amount of liquor. I will be coming back to this place for sure!",review,EfvXF2GNrGSEIZ4ODD29Vw,1,1,0 +5KG0A3WlC7K3DAXtrIFFjg,2012-09-14,S_zstbgStZ6yU6qhn_GWzA,4,"The workers here are helpful and nice. Especially the chubby Mexican man! He was awesome and popped up in the veggie aisle and then bagged our groceries too. Somehow we also got a 10% discount on our groceries (we didn't have a discount card or anything since we are out of towners). Even though this place smells like most Chinese supermarkets, I would definitely come back if I needed something.",review,1np8m00IO1XCsW5N8Z_72A,0,0,0 +yn2gSwa1AnL2EQnVNSP5lg,2012-01-18,AYd30ISCn2gvrQBQd0U9Cw,1,"Unprofessional, disorganized, and extremely low end care.",review,xYV1qRKVbWFXtRsCmxhpKQ,0,0,0 +nP9zQBRNSxlnU8BsbqYI5A,2011-05-18,ePsDMjw328q0KR2S6MtumQ,1,"Should be called The Bad Egg. Bottom line, the hotel's free breakfast tasted better than this and we got better service there. + +We arrived around 945am on a Sunday morning and had to wait around seven minutes to be seated. The staff was pleasant enough. We were seated, given menus with water and she took our order for coffee and the breakfast special (loaded potato skillet). We sat for 15 minutes before we saw our waitress again. She finally figured out she forgot to bring our coffee. We finally got some coffee which was mediocre in flavor. Our food arrived about ten minutes after that. The skillet was supposed to contain sausage, bacon, onion, scrambled eggs, grilled american potatoes covered with cheese and sour cream. Mine had no bacon, two tiny chunks of sausage, no cheese, and the potatoes were so soggy, they tasted like someone had thawed them and thrown them in as an afterthought. It was so unpalatable i could not eat more than one bite, even after loading it up with salt and hot sauce. The waitress never checked on us once during the meal. She came back by the time my husband was finished. I told her the meal was horrible (in a nice way). She offered me something else. By that point, I was not feeling like eating anything else, I felt kinda sick. My meal was comped and we did get an apology. The manager explained that everyone LOVES that special and the potatoes are seasoned and grilled. The cook obviously didn't try my potatoes. Blech. Even with the comp, the total was over $15 for one special and two coffees. Very hight priced for nasty food, poor service, and loud/uninspiring atmosphere.",review,gg6KTSmKgevUB-IpGRub_Q,0,2,1 +cN6aBxe2mQvrQlzk26LyRQ,2011-07-10,gKaBiixy1EcsGnnz3YO7BQ,5,"We went on a Friday night and even though it is off season here, the place was packed. Never the less, the service was impeccable as always. This is our third trip here and we have never been disappointed. I had the 14 Oz. NY strip and my wife had the prime rib. Both were cooked to perfection and seasoned ever so wonderfully! My wife tells me the horseradish is the real deal and not the runny stuff you get elsewhere...can't vouch as I hate the stuff. From the bread to the desert, every bite was worth taking. The old time ambiance with the dark wood and red ""leather""? booths are welcoming. It's pricey and if you can ignore the geek with khakis, no socks and deck shoes ever so gently cradling his wine...(you KNOW the guy and he is everywhere) in the middle of a Phoenix summer, it is worth every single cent.",review,bkv0EMVYiwWf6ULKbEdqRw,0,0,1 +Xq9tkiHhyN_aBFswFeGLvA,2011-11-22,6gqUah1RAyCjW98ThwqvRw,2,"The service was great, but like all the other Fox concepts you pay too much for mediocrity. The short rib stew was good. The ribs were cold and the chicken pasta was bland. There are just so many better options in the area... What a disappointment. But I should have known better.",review,pUhzaeZmNU6KvcdvyDy2dw,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2010-08-22,tiaIKw2BMHnbSwhlI9jLmQ,1,"So, not following my own advice (ahem, NEVER RETURN), I returned here for a friend's birthday dinner a few months ago (I super love this person so how could I say no?). HA! Big mistake. Also, fair warning: there are several-a-CAPS-LOCK ahead. + +The only pleasant thing about the evening was the reservation and seating were right on time for our large group (15 people). And of course because we were celebrating a super special person. + +I'll keep this update short and sweet: + +$3 for a CAN OF SODA? Get real. I knew it'd be overpriced but I was at least expecting a mini bottle or something. But a can? COME ON. You bought that in bulk and paid .03342 cents for it. FAIL. + +Your servers: IDIOTS. First it takes our server 15 minutes to come around the first time and take drink orders. Then she's back another 15 minutes after that taking the orders again. Did you forget? Were you not paying attention the first time we around? Why did it take 30 minutes just to order drinks? And on top of that we wait another 15 to receive them. FORTY-FIVE MINUTES TO RECEIVE DRINKS IS BAD. Very, very bad. + +Also, not taking food orders until after we've been seated for ONE HOUR is BAD. VERY, VERY BAD. Seated at 8 o'clock, we didn't receive our food until almost TEN O'CLOCK. TWO HOURS FOR FOOD IS VERY, VERY BAD. Do you hear that, St. Francis? BAD. + +Because I loathed the place even before this lovely birthday dinner, and because the thought of supporting such an establishment makes my blood boil, I ordered only dessert and the hubs ordered an appetizer (and add on a $3 can soda). Funny, that our bill was still nearly $30 for the both of us. Excluding tip. BAD. + +Also, server: If you say you're not going to split a check, stick to your word or don't even try. Now, I'M glad you didn't stick to your stingy ""I don't split checks"", because I could foresee the mess of trying to split a $700 bill with 13 people I didn't know so well. Lucky for us, when we told you we were leaving early and asked for our check, you split it for us. A couple others caught on and did the same, but the remaining 7-8 people were not so lucky. + +Because I realize my short and sweet is not so short anymore (or sweet, for that matter), I'm ending it here. NOTE TO SELF: heed own advice and stay away from St. Francis!",review,4dnDsoHuxUtzhaumxbpR5w,1,6,5 +K13dEvg4uimGQ1OcE5vGZA,2012-10-07,GcVfGuJ1zZQlPTmj-5gyOQ,4,"Reasonable prices, good service, over-priced snacks (like every other theater) and comfy seats! I do enjoy this AMC very much though when I have to come here versus the Harkins on Northern. + +The one MAJOR drawback and this is a BIG WARNING is that if you go on the day of a Cardinals home game, EVERYONE and I do mean EVERYONE has to pay $10 to park in the parking lots at Westgate. The parking attendants will give you a ticket to take inside and AMC has a person there to give you back the $10 but the fact that you have to pay it to begin with sucks. What if I didn't have cash on me? This by no means is AMC's fault. I suspect it's the City of Glendale's or the Cardinal's convoluted way to soak people but at least you do get the money back if you are paying attention.",review,kG8jkVFgOAOq6Ht6RvAjEQ,0,0,0 +Z_KjmNp3sMwodUBTSgFZGw,2009-12-11,nlB090D4ZRD8fkyNoDHlYQ,4,"On my second week receiving a small mixed box for Nature's Garden and LOVE it! It is more than enough for my fiance and I. It is the easiest way to get fresh, organic, and local produce, especially since it is delivered right to my door. It helps learn what is in season and how to make great new recipes!",review,3dgVexCoDRym3uXunL2FiA,1,2,0 +hwafU4w-IYkIRZa_9LTupg,2010-11-30,CQ-RmoxbBxJlYHAzvHEdag,5,"SOOOOOOOOO MUCH FUN! The 3 of us went to Superstition Farm for their tour last Saturday. No, we didn't have any kids with us but we may have had a better time than most of the kids. + +The beginning is a bit dry. You're in the ""classroom"" for a while learning about random facts related to diary cows. Moo. After that, it's a hay ride. Girls, let me give you one tip - Make sure you wear long pants or shorts that are long. Hay is very uncomfortable under your butt if there isn't enough padding. Anyway, the hay ride was entertaining but the best part had yet to come. + +Once the hayride was over, the ""tour"" was officially over. But everyone stuck around to check out the petting zoo. The animals were all so friendly and we got to feed them as well. There was a hodgepodge of creatures from a young cow to sheep to rabbits and even a turkey. Yum...just kidding. + +In addition, there's a black lab on the premise that was amazing. This dog would make an incredible soccer player. His reaction time is unbelievable - any team would be happy to have him as a goalie. + +After the animal bonding, we went to try flavored milk. Mine was butterscotch flavored and it was just ok. I was disappointed that the milk wasn't fresh from the farm but I guess it's not legal to serve unprocessed milk. Since we had a Groupon, we also had a chance to try Udder Delights ice cream. At $2.50 each, I would never pay for them individually. But seeing that it was included in my ""deal,"" we enjoyed them a lot. + +Don't be embarrassed if you don't have kids. Trust me, adults can enjoy Superstition Farm too.",review,yy9fTfze8azIJsvWKvHefQ,3,3,1 +bzDs0u8I-z231QVdIQWkrA,2010-07-24,89QxnDv0C_cYg1LHAlagSA,4,"delicious! def got the sandwich Adam on Man vs Food got! i think it's called Del Reys! it was sooooooooo good and the sandwich was huge, the price was great! however, there was a long wait, so I'd say be patient for their services!!",review,Hi-L1qQ1P484O59kY0tXUA,0,0,0 +LCnxDGs7sx3IhxcW2wisZw,2010-09-12,OM316QwpfG0JE8eK7ypCPA,5,"I love going to this store whether its for just for the latest copy of guitar world, some strings, or a new guitar, the guy johnny is my main man lol he always gives me good deals and generally makes me and any one else i take there feel like we are the only customers, (in a good way!) every one remembers you and asks you how your day is going great ""mom and pop"" feel.",review,83jzZLFAfrCUwZghWgcz4g,0,0,0 +AqbgC7Gul5Es1rRzGNLDFA,2010-07-24,9fD7HuYRbw52Ps48PPE1Zw,4,"Delicious. With me, i'm all about frosting. And Sprinkles delivers! Big, thick layer of frosting on every cupcake. I recently had the Mocha, dark choc cupcake with mocha frosting. Wow... It was so rich i had to take a break of about 5 min before i could finish it. I'm a big fan of the vanilla and banana. You just can't go wrong with cream cheese frosting, right? OH! And the best thing of all... You can get a ""shot"" of frosting! Yep... A 1oz dixie cup piled high with a flavor of your choice for 75cents. I usually eat my frosting shot in the store while waiting for my cupcake order. ;-) It's pricey, but its not an everyday thing... Its a treat and a good one!",review,xdl61MWMguYRSunH8CniQw,0,1,1 +XkNQVTkCEzBrq7OlRHI11Q,2009-11-28,89Dl0H39asZxC7RZRp8oYg,5,"95 reviews? Guess there's nothing I can say about this gem that hasn't been said. We ordered the cheese pizza which is a really inexpensive but delicious tasting Margarita pizza sooo good. + +We also had the vodka penne with tender big pieces of rendered bacon, tomatoes and fresh basil. The vodka sauce was creamy and seasoned very well. They included a ton of grilled french bread and cutlery because they knew I was staying at a hotel. They were really sweet and very fast at getting all that food ready for us. + +It says on their website and on the yelp search engine that Pizza A Metro delivers but they don't. Not a big deal though the food is totally worth going to get yourself.",review,4xaFdZzy5lIR_dTlC5muBA,0,1,0 +6oRAC4uyJCsJl1X0WZpVSA,2011-07-28,u9aMNOK1_eVF8PL_CpVSrg,5,"Love love love this place. Tasty with great prices... who can beat that? My newest thing is to order a gyro-to-go and enjoy it at home. I'm a mom now so eating at a restaurant is a lot harder than it used to be. haha + +See ya there!",review,fPHLPrymsyb6WSFFKoMrTQ,3,4,3 +O-ylVyHn6e6kaoJO-jHj-w,2011-05-12,5WeIPwwwBQvJCdbfRw0nvA,5,"When I get the urge to eat out, I'm normally drawn to more laid back restaurants where I can sit back, chat, and enjoy my meal. With a relaxing atmosphere and fun menu (Chicken & Waffles, and S'mores for dessert), I definitely enjoyed this place. My first time here was for a Yelp event so I was able to try just about everything. My favorites would have to be the mac & cheese and the beef brisket--both delicious! I'd say they've got their BBQ technique mastered, at least where the brisket is concerned. And the cornbread is probably the best I've had--so happy they handed out the recipe at the event. The service was great; everyone was friendly and very helpful. I was satisfied with everything here and definitely would come back--and probably leave with tasty leftovers!",review,xz92YNlTic68plJd721tmg,1,2,0 +b5cEoKR8iQliq-yT2_O0LQ,2010-08-14,7FrG3kWOaZviZeKbb7-_uA,5,"The place did not disappoint. The moment we stepped through the archway, my friends and I were bedazzled by the ambience throughout the area. + + It really DOES feel like a tavern, almost like something out of Pirates of the Caribbean (Well.. kind of) + +But yeah, the portions were overwhelming, and best of all? The food was spectacular. I sat outside, but honestly? I think the place is pretty both ways, so don't be too stingy on the location :) + +Jus go.",review,c4Ic9brP8hle_qMjbeejFg,0,0,0 +WrMPN5glZGrbI3rvVtxJFw,2012-03-07,xbxfIfsBma_mHRBJPc5x4w,4,"Yea, I was the asshole wearing a Jeremy Lin jersey to the Cub's Home Opener for spring training. I took some heat, but I came out alive in the end. + +Hohokam seats about 12k and has a pretty nice lawn you can relax on ($9GA). I soon found out this is where most of the lushes (including myself) like to spend their afternoon. + +The ball park is pretty nice, and clean as well. The staff inside the team store were very nice as were the bartenders. I even met 2 lovely older ladies from WI and Chicago, selling me beer. they were dolls! That was cool they got to work together, as they were here for the season (I wanna do that when I get older!). + +There were a lot of options on food, being served by Ovations (the catering powerhouse behind the new Delta Menus), and had some great taste, and I am sure will be even better as the month progresses. + +Parking is $7, and pretty much wherever you can find a spot. It was nice because it was a grass lot, and not dirt. + +A great place to check out if you are a Cubs fan or just like baseball in general!",review,7s9BkBonSqGHdVkpC_qdbw,3,5,3 +Pg8OPh1D2ws0xO-I-8ppoA,2011-02-04,VNOnenQK4vvTouCUTUvTPQ,4,"Ate there for the first time last night and the food was fantastic. They did a great job on the remodel, so it's a lot more open than it was before. They have an extensive wine list and the service was wonderful. We will definitely go back!",review,jYH7XmtmpTTBUQ315NR9gQ,0,0,0 +NWtC07BxIqQp76kugbvynA,2011-09-14,Xw4LIQeqqGaX2oAFid5UDw,2,Not exactly what I would call a great place to eat. If you want to take your teenager out for a shake or ice cream you may enjoy it :),review,m2T71nxPgzrmXi-cKE3U2w,1,1,1 +OVZaWBKy7VBT_ikOrDt6dw,2009-03-08,GY3-YPoPaidUbBx2cafDHg,4,"Being too ""frugal"" to rip out a perfectly good, if not ugly, bathroom vanity top, I decided to look for ways to improve upon the ""cultured marble"" 80's look that was going on. After talking with my co-worker and fellow-Yelp-er, Robert, I decided to go the ""refinish"" route instead of ""rip it out"" and put in new. + +After checking the internet I came across a company called ""Miracle Method."" If you get a chance and you're thinking of having your bathtub, tile, vanity or kitchen countertop replaced, check out this company first! + +I did get an estimate on ripping out the tile around my tub and having a new floor installed, but that would have still left me with a no so great looking tub and an ugly vanity. Oh, and the estimate I received from the ""other"" place didn't provide tile so after all was said and done, I wouldn't be saving anything. So I bit the bullet and decided to spend the $1,600. + +So the job was started promptly at 8:30a.m. on Tuesday by ""Shawn."" A very nice young man who obviously likes what he's doing. (Sometimes hard to find in folks these days!) Tuesday involved cleaning, prepping and spraying the tub. Wednesday the tub was finished off then the tile and vanity were prepped and sprayed. Time on Thursday was spent applying several layers of sealant to the tile area and vanity top. Friday was a quick visit. Shawn cleaned everything up and returned it to a much better than original version of a master bath. + +I'm very happy about the final results and I'm seriously considering having my main bathroom redone as well. Again, if you're thinking about making changes to your bath or kitchen, check out Miracle Method as a possible solution to your problem! I'm a fan!",review,0OQN3ie9_Wk_AIQBOBRXRA,1,3,0 +B_Ea839qdvPWa07YnpeIrg,2012-04-21,jcaKt8dBjhcLoYuSL78Vnw,4,"Excellent Park! As metropolitan areas go, Phoenix maintains a higher sense of civic duty than most towns, and that is reflected in its parks systems. White Tanks ranks in my TOP TEN list easily above #5. It is HUGE. It is DIVERSE. It has EDUCATIONAL FACILITIES. Bathrooms are CLEAN. And they have LOTS of EVENTS! + +Check out the calendar of events at their web page! +http://www.maricopa.gov/parks/white_tank/",review,P_LzcrlVXFdgBq_24UnlUw,0,0,0 +9r5YLKGTdQz_Q29cBifePQ,2010-05-25,SAWuelaJRjm3IeTknIhw2g,3,If you are going out for beer than Papago Brewing in the same strip mall is a much better choice. But if you are looking for a true bar with liquor and beer than the British Open certainly qualifies. Not a huge fan of the food with the exception of the fried pickles. Typical greasy pub fare. Darts and pool tables and a good juke box. Service is usually pretty good every time I've been in there. Very dark and very much a neighborhood bar.,review,b2DKC4kC8-QeSeGZ_MF3XQ,0,0,0 +Fs9fs_vX4PppqJvEkfr0BQ,2010-01-31,KyPBZKyR-6y2fBVj_L7zeQ,4,"It was one of those lazy nights and we wanted something quick to eat. The place was surprisingly busy. It's off of Shea Blvd. I don't order their noodles because the last time I had them, they were over cooked. The food came out HOT and we shared our plates. I ended up taking the leftovers home and had another meal the following day.",review,DtTuVmtooVyMnGhwPrzLww,0,1,0 +I4bSn5gXsHuSPu7L-d_8nQ,2012-09-03,dbPow-0tEsv4wAVRhZzvcg,4,"Impressed , stopped 2 x before and the wait was to long . Made reservations for 5 this time.;).. Friends had recommened and raved about Becketts and had this on the short list for awhile. It was everything as advertised, ambiance very casual , GOOD Food, excellent service ( Adria was very good and made good recommendations ) and fair prices . Recommend the Osso Bucco pork but not a bad meal by the group . Sunday is AZ winery special which is a nice touch , must try the Pimms cup cocktail excellent! Can't wait to go back!,!,",review,oGR0GPIbYOitJaa-VsvaFQ,0,1,0 +1QxI2IP3XfndDAY8nyZVPg,2011-04-08,fnEQ5thaDNloZHlvcyTYVA,2,"Lots of people to help but too busy talking to each other...so, I left...",review,Hac8HebtWiR0H2WmPg9AOg,0,0,0 +QxEUzbLfCTXF6gHWJegWgw,2011-07-31,psSPL5mstfnkLEMtYDsBjQ,5,They get 5 stars for the only thing I have ever had there. Every single time I have to get the Pizza Nortena. It is out of this world. It is meant to be an appetizer but we get it to go and have it for dinner.,review,KLekdmo4FdNnP0huUhzZNw,2,1,1 +-A5CFmkgdMEggaihtyxX4Q,2008-02-02,TM0OXCu8Yk6H-Rb0BU0ERg,3,"I love the layout of this outdoor bar. However, the price of drinks here and the lack of well options is a huge turn off. It's also going to be interesting to see if people are into the idea of an outdoor ""dance club"" once summer comes back around. + +The view is awesome. I'm always up for supporting independent downtown businesses, this place just needs to make some changes to make me want to come back.",review,gW-ukHucTfVCnFCKKxPJzw,1,2,1 +-svamR1_OzUeiZkZf4qotw,2009-09-04,HbZ06PXeK8WXk8i1tmeP-w,5,"This dude claims he ""steals souls for a living"" and is ""the best photographer"". In the world. Ever. + +http://www.flickr.com/people/tysoncrosbie/ + +I promise--there is nothing at all vain, hacky, narcissistic, overpriced or arrogant, whatsosever, about Tyson Crosby or his work. + +Phoenix should consider itself fortunate to be home to such a phenomenally over-talented, artistic genius. Big art cities like NYC, Chicago and LA would never be able to fully appreciate the photographic brilliance of the one, the only, the premier best photographer in the world-Tyson Crosby. + +Humble, poetic and unpretentious as he may be, I can't argue with him. The fist time I saw a Tyson Crosbie image, I j!zzed in my pants. Really, his work is that good. For real. No joke. I'm serious. Totally serious. I love his work so much, I want to marry a Tyson Crosby print. + +Where is the button for 5 million stars?!!!",review,W9n_ZyVCXD0HfPqn6qriOw,0,0,3 +lhRUPA28pRIN1MnllN-o9g,2010-02-17,Dn5byea4jaUd7NeDqwUB0g,5,"Vegetarian/Vegan south Indian buffet! Guilt free conscience! What more could a girl want? I am in LOVE with the dosas. I always wish I had a larger tummy to accommodate all the delicious food. Udupi is proof that being vegan/vegetarian can be tasty and cruelty-free. Humble ambiance, no fancy decorations.",review,kacOkLRg_lcNA_wPE4bb1Q,0,0,0 +TOy2PLtojYMCaVzHsEzyhw,2010-02-05,aBKjXYHHHefnDTozws3Hgg,4,"Disclaimer, I was raised in New Orleans, and miss good Poor Boys, Crawfish, Boiled shrimp, Jambalaya etc.... yadda yadda yadda, hear me whine... + I try to be lenient when I go somplace because it's unreasonable to expect to find the food here that I would at the Magazine St. Po Boy shop. +I was also raised on popeyes, every once in awhile I would hop off the Streetcar on the way to school and get a Chicken Biscuit w/cheese. +And frequrntly I would get a 4 piece spicy, and even though it was a chain, it was a local chain with massive quality control. +(and yes, odds are those years are most likely why over the past 3 years I've lost 250 pounds!.... Moderation kids!) + +Over the years, the chain was sold off, the original owner died, and Popeye's became more hit and miss, especially the further you got away from the south. + +Heck, you get your hopes up just to see a Popeye's! +usually the stand alone's are better, and the ones attached to Gas stations are hideous. + + +I've tried a few in the Phoenix area, And have been generally unimpressed. Not horrible, but just... a very thin flavorless crust. + +So it was with trepedation that I went into this location, a drive through, attatched to a gas station. +I went for a box of chichen w/biscuits. and I can say it was the best I've had in the city so far. +The man at the window was friendly, the chicken was fresh, good, solid breading. With enough heat to give a nice depth of flavor, cutting a bit deeper than other chains would dare... which is what Popyes is all about. (I'm used to some blazing hot chicken... not stupid mind you, just HOT.. this is not that, but a good flavor. With good moist flesh, and thick crunchy skin. And the meal made the travel home well. +One downside? I'm just not a fan of these biscuits, they werent old... but they were dry... and lack the lush, buttery flavor and texture that I love. These were more dense and hockypuckish than I prefer. + +If your craving some Popeye's chicken... well, lets put it this way,,, I'll be driving 20 minutes out of my way to go here. +This is my first time... so Your Milage May Vary.. + + +Sidenote, I'n no Church's Chicken fan, but I went to the one on Arizona Avenue... and I've got to say, thats some fine spicy chicken! And cheap! And a big box of fried okra makes The Bride very pleased indeed!",review,-YLjmeAqLY7ba5kptuOGRQ,0,1,1 +sbsFamEj5wDxNAjUKrMcSw,2012-02-27,oGU0nYP_wzyffWt7HsZ68g,3,"The very definition of an average brunch. My omelet was pretty decent, and it's nice that they let you choose a bunch of ingredients if you want to. However the breakfast potatoes are extremely weak, fairly bland and underseasoned and are probably not hand cut and prepared. They are mixed with an uninspiring blend of green peppers. The rest of my table seemed to feel about as enthusiastic as I did about their breakfast burritos. + +The service was also pretty slow. Despite the awesome patio and pretty good eye candy among the patronage here, this place is definitely one you can skip.",review,bH40h15ScLYilmXssXtf3A,0,0,0 +-mz0Zr0Dw6ZASg7_ah1R8A,2008-06-14,35n-hs46cAWW_URVD2_KHg,3,"Went to this place for the first time the other night.. Biggest plus for the place is that it has its own parking with some one checking to make sure you are there for the restaurant, the one thing I hate about downtown is parking. + +On to the food, a basic dinner of Pork fried rice, chicken chow mien, and Kung Pao chicken... It was okay. The Pork fried rice was basic and the chow mien was too slimy. The Kung Pao chicken was alright, kind of disappointed in its lack of sauce but the veggies and almonds that came where good. Pretty much, this place is good for quick and cheap food. + +The staff was helpful and kind and the restaurant had a cute downtown vibe to it with a random birdcage in the middle. Overall I would try it again, but will try something different on the menu.",review,fkZ_t7co7VxO2jPI9bD5bg,1,1,0 +-xBv8p9jzOkMyGlY07FMTA,2009-10-12,fNoaiKImX1T9gF6nTwwhAg,3,Another place that's walking distance. Subway is one of those places where you can't go wrong....you got 5-dollar value meals or foot longs. The guys are really friendly and aren't stingy with the toppings. I'm not a big fan of the smell subway's have though. Eh anyways its just one of those places where im lazy and don't want to make a sandwich...plus it helps me keep my girlish figure like jared :),review,TIDCANcQQbwkiEIdlbNImQ,0,0,0 +B8ujMtvvpHyEQ2r_QlAT2w,2005-04-18,kwxmuNqc5EcaErD2zYpoKw,5,"Wood fired pizzas, scrumptious pasta dishes and bacon wrapped shrimp. How can you go wrong with a place that wraps things in bacon. C'mon, even veggies admit that things wrapped in bacon are good! Has a smokey atmosphere and a slight bar crowd but the food is outstanding.",review,6VZNGc2h2Bn-uyuEXgOt5g,5,3,0 +7_zL7NX_rDFwhbLp98PwZg,2009-05-13,R8xfp6Qh6KBiA72587BHnw,1,"I give this location no love. We went to this one rather than the one uptown on a Saturday night with a voucher from another location from a bad sushi upchuck experience. Going late at night with a mostly empty restaurant, we still ended up waiting 10 minutes to be sat, then SHOVED and I mean shoved in next to the only other table in the place - the hostess snickered at me when I kindly asked to move a single table down (really sick of bitchy hostesses in Scottsdale by the way - your job is not that hard so shut up and color for christs sake) Our waitress took another 10 minutes just to greet us, sushi took forever, and if you can believe it the fun hadnt even begun yet. +When paying the bill, we present the voucher to the waitress, who says she cant take it. The manager came over with a bitchy look, basically trying to call it bull shyt and continued to give us the 5th degree about it for the next few minutes - certainly NOT appreciated. She takes it to the point where she calls the other location where we got it (taking ANOTHER 10 minutes) and finally gives us our bill back - only taking off our 2 rolls and 2 nigiri. This created one pissed off yelper instantaneously. + +Don't bother with this location - you could find bomb shrapnel in your soup and they still wouldnt give a damn. + +And for the sake of all that is holy - STOP WITH THE CRAZY I'M-TOO-SEXY-FOR-MYSELF SCENE! YOU'RE NOT THAT COOL!",review,SMezBhXVe7op2XaMVlju6g,2,4,3 +Jsrc6etsr4hM4OaVuGUyTg,2011-06-09,2dYKKklxdbh0VPqhrDo5MQ,3,"Love this Cold Stone if only for the fact that around the time you would be leaving dinner in one of the close restaurants, the strip mall this location is in is basically shut down. We didn't have any wait whatsoever.",review,k6ZQA3DJ2EfZJMmadBlWNw,0,0,0 +-xFO1E3OiDMmdqdjwUM_DA,2009-04-28,gMkEhaScV0fPNRVlTjLE6Q,3,"Seriously the best 3am quesadilla I have ever had. It was big and gooey, with just enough browning on the outside of the tortilla to make it a little bit crisp. As an added bonus it was kind of cold outside, so it made a great hand warmer as well. Why only 3 stars? OK, you do have to sit on some questionable outside picnic tables and I don't want to think about how clean the kitchen may or may not be, but the entertainment value of watching tipsy people stumble around while waiting for their food can't be beat.",review,n9Zg0jlOGtxfIrvoPm6Hhw,3,4,3 +rV3lt01Gv1g5dkyNIWpaOw,2011-07-09,h8JqWxCUbbzhAqph6ONjGw,5,Dr Norton and his staff are friendly and professional. They have made my 3 children feel relaxed and comfortable. I highly recommend this office.,review,qKvbgG-Z2REd7Sa68Iz-2Q,0,0,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-07-13,LNng63r57T0ZoNM1C1lk3A,4,"Very good food. The tepanyaki was great! + +It does have a certain atmosphere though. Remember to dress appropriately. It can also be a bit pricey.",review,xFG4Ca2HHmbxDTkMlmHnjQ,0,0,0 +-4A5xmN21zi_TXnUESauUQ,2010-10-16,cj-4AH3vTOdcDk5b235P3w,5,"This speakeasy was kickass. The staff is super down to earth and the menu is great. The drive thru is an awesome touch. I got the Turkey Club and it was reallllllly good. We received 2 randomly free samples of a shake and smoothie and had some good conversation with the guys behind the counter. It gets a little noisy if they're makin shakes in there, and the seating is pretty limited. I wish they were open later but so far I'm loving it!",review,0VaL50rT2zkSk3pK3cTlCA,0,1,0 +7_zL7NX_rDFwhbLp98PwZg,2010-10-07,A1F5KxzbzTwLKsocnPPQWA,4,"Part 2 of the business trip. Dinner with the sales team. + +We always have fun when out on the road and this was no exception. + +The need for sushi is somtimes primal. This was one of those nights. + +Starting off with happy hour prices that were awesome we easily knocked down three bottles of Sake while deciding what treats to order. + +We ordered a tableful of great sushi- alot of variety and had a great time. The one disappointment was that the sushi just didn't have enough spice. Not nearly enough heat. The staff was excellent and very helpful. + +I would recommend Ra. The atmosphere alone- great music and fun staff is a good reason to go.",review,BQnVtjs1WubXUxdAMozFvg,0,0,0 +ilJiRYZgxjrEu2iexKu-pQ,2010-04-07,kaILIsWvCFZkL1KyxjzEsA,3,"I have been to this location several times because again, right around the corner from my salon. I so want to be able to give it a higher rating but every time I go the service is really not that great. Last week I went for wing and Wii night, 30 cent wings cant be beat. I have had better wings, but hey this is a Mexican joint and our bill was not even $4! But our waitress looked like she could care less about being there, never asked if we wanted a refill on our chips and salsa and never stopped by the table to see if we like our food. Now being in the service industry and having spent many years as a server I get that you think since the bill is so low your tip is going to suck. That simply doesn't have to be the case, we left our server a $6 tip and we weren't even there long. You get 4 tables like that an hour you are set, so perk up and smile, you never know how far that can go. +I went there last night for Taco Tuesdays, $1 to $2 tacos can't be beat and the tacos are so tasty I always order 3, the mahi, crunchy fish and steak. The mahi was flaky and sweet, the crunchy taco had a sweet taste to it with the sauce and red onion. Not greasy at all. The steak was tender and flavorful. Again though our service was sub par. We had already finished our chips and salsa before we even got our water, took way to long, same with the food and it wasn't even that busy. We were sitting inside and there were only 20 people in the bar area and there was only one other table eating. Now our server wrote our order on her had, she seemed tired and frazzled, and we had to bring our bill to her at the end to check out, we waited a while before doing that. It seemed like she might have been the only server in the place, but she did have the help of a gentleman by the name of Frenchy. I liked Frenchy, big dude but with dry wit and he seemed like the jack of all trades for the place. Doorman, food runner, busser, you name it he was doing it. +I will continue to come to Loco because the tacos are so damn good but I just hope they figure out the staff issues. I gave it 4 times and every time my complaint is the same, the service needs to step it up.",review,am9yAm4Ph7yk81sFkHlxig,1,2,1 +GAPqG0WNBBidKeZTMpEZ-w,2009-09-29,6oc20fsRY7DSLf6MQJQ1cw,3,"I hate the heat. HATE. Yet I am doomed to reside in this heat haven so when my best friend raved about a place where you can sit outside in Arizona and not feel the heat I had to check it out. By the time I ventured downtown to glance at this place Phoenix was experiencing a cool down so the patio was very comfortable without the fans and misters. + +Our waitress was great and even chatted about our night and my favorite bar, SideBar. We got the L.B. favorite lavosh and I okayed the bacon even though it didn't sound too appetizing. It wasn't. I ordered some chicken sandwich that was on a french roll. The salad on the side was better than the sandwich. My friend ordered the classic turkey which was large but average. BUT I think ordering the classic sandwich was a boring mistake of its own. The fries that came with the turkey were greasy and when I ordered a amber ale and some guy brought a pale ale. I like pale ale so it wasn't too bad but it made me yearn for the amber. Yes, or course I ordered the amber next. + +The waitress told us that the island bar was opening the next day but there were still ladders and paint cans lying around. I failed to notice until my friend mentioned it. The only really cool thing about this place is that it is in a historic building with strange bathrooms. Other than that I would skip it.",review,sPDwsdNa22Y-52cbjiTyig,1,1,1 +r8CwFUEQtL8gAT9KHnNhuw,2011-11-20,5W6SHMUmZ7yyfH_NtfYavg,1,"Qver-priced, substandard food. Never met a cheeseburger I didn't like-- until now, (NOT a 1/2 lb.). Small portions of tired, room temperature ""fry-pieces"", burnt bacon, chicken tenders so hard, they couldn't be penetrated with a fork. Mediocre service; didn't bring kids meal cookie. Waste of $$$!",review,Qj5EvKLNsjBycqHnJbtNCw,0,0,0 +-KF9RQPkmIOHfE0tzUu9bg,2008-09-30,5Z4wtumpdtUtClMC0z3Now,1,"What was Dunkin Donuts thinking when they took out the selection of donuts and now only offer a choice of 10. It used to be you couldn't decide which one to get, now you just have to settle for what they have. This new and improved Dunkin Donuts is the worst. I will return for coffee when I get the urge...but never for a donut!! +Oh and another thing...my Dunkin Donuts used to have Baskin Robbins inside...that is gone too...again WHAT WERE THEY THINKING!",review,Kc6eyirhmOH8vXBljMXDCg,0,1,0 +FQudBiBiz9bGQLF_kK8UCg,2012-09-08,QCFp5HqL3dMiISKikhY8Ew,4,"I was only here for one night on 9/7, but I was very pleased with my stay. The place is beautiful, the rooms are big, and the people at the front desk were pleasant and efficient. + +The only down side to my stay was that I lost water pressure in the shower Friday night. Fortunately, it was only brief. Other than that, I enjoyed my stay. This will be my base of operations for my next visit. + +As for others' comments that there isn't anything nearby - That's what cars are for. Last I heard you can rent them here and there.",review,aAOosIA2598fl8v2mcWoWg,0,0,0 +ujLZmyy11g1JHCQTxRA3Dw,2012-05-25,9BdHbRhfkb_JL9y20u-0Ow,5,"Love the food here. Been here a few times and got the peanut curry twice and been delish. Thai iced tea was great as well. Only been there during lunch and everything seems pretty good so far. Went with coworkers and family and they all loved it too. Service was fast, prompt and nice. Will be back again to try other dishes.",review,_uWc9mBsSXz1gQw3rf-1fg,0,0,0 +FA_PQwYxwrJTsxZFpMmshw,2012-05-22,fcyY0E-AObt-4m5zeFLSqw,5,"Unique selection of antiques, linen and assorted pictures and estate jewlery along with new timeless designs. Located in downtown Gilbert worth the trip!",review,HqTe6A9GTLiaaBdDid0OFQ,0,1,0 +nmj5yK9dZ2atlM9RYDCRHw,2010-10-12,qN922EcB3wEISGuU9KHl0A,2,"They get 2 stars, for the pickles. + +So I'm from Jersey and was very happy to see all the NYC/Jersey stuff in this place. The walls were covered in things from my state so I figured they know a thing or two about real NYC pastrami. I was very wrong! + +This had to be the worst pastrami I have ever had! What's with the places in this area advertising themselves as either being a NY style deli or NY style pizza? I mean, I know we're the most awesome people in the country and our food is the best, but don't say you're like us unless you really are! Maybe if you've never had the real thing, you think this is quality? This sucks giant donkey balls and I'm sorry I ever tried it! + +Really, instead of spending all that time trying to make your place look like Jersey and NYC, spend that time practicing making good food. That, not decor, gets you good reviews! If you're from the East coast and looking for authentic NYC food, avoid this place. They also claim their bagels are just like NY...yea, I won't be trying those!",review,-hG9sBYkGRMjWPS08GzChQ,3,6,0 +9oDcnuvKphBrHB3yrMbJfA,2008-10-03,mHtVn0-P1L-lbmxj9tHSiw,5,"Honestly the best part of this place is the unbelievable deal you can get on pet related products. Because they are one of the primary income sources for HALO Animal Rescue, people that have pets, tend to make donations. You can almost always find pet carriers for under $10. They have dog crates for training and you don't have to shell out a fortune for them. They have fish tanks that will allow you to let little Johnny get his feet wet in the world of pet care and the associated responsibilities without breaking the bank. If you are a person that shares your life with animals, you understand the rarity of these kinds of deals! + +Yes they have clothes, furniture, tchatchkies, etc., but the real deals are on the pet products. + +As a side note, HALO recently leased the MCCAC location at 5231 North 35th Avenue (It was the previous Maricopa County run cat adoption center). So if you are looking for a companion (cat or dog), check them out and support one of the fastest growing no-kill efforts in the US. +http://www.halorescue.org/index.html",review,iwWBF3nKoRMoy1sbkLJwvg,8,9,3 +LY4WyxiRnmQTpo-9tGXetA,2012-10-16,rKrUaXv6i48mK9hd-7UL7A,5,"My wife and I went to Harris Dental for a few years when we lived in Scottsdale. We moved out of town in 2009 but we have never forgotten the superb dental care that we received from Dr. Joe Harris (who had come highly recommended from our Austin, TX dentist as a person who keeps up wth dental research). Nor have we forgotten the fabulous and uniformly cheerful staff. So it wasn't really too surprising that we received a call from Harris Dental a few days ago - more than three years after we moved away - asking for permission to archive our dental x-rays and asking where they might send funds from a credit to our account. Who does that?",review,JG4hYCxStBSWCKzEeAsnRg,0,0,0 +DGtOkc0KNTyK8rDkmsPNYw,2012-07-29,ygaiWeJbyhUnu2Sp6PLlyg,4,"mmmm, Canadian comfort food! + +We're huge Keg fans, and when we moved from Canada to Tempe earlier this month we had to take the kids to the Keg. I love how consistent they are with the quality of service and the extras for the kids. The service is a little lacking compared to most Canadian Kegs I've been to, simply because the staff seemed so much younger and less professional, but it was still really good. The food quality was excellent, but the portions are very Canadian (read: smaller than US portions) while the prices are still what you would expect from Vancouver yet in an area where the cost of living is about 1/3rd. For the money, I'd probably rather hit Ruths Chris..minus the kids :)",review,PXlvgzU25CBGA0JHzzpmOQ,0,1,0 +OMXAkiWyKz0AM6PwwuP38Q,2012-10-17,u0ig6j15LLcvHsw2XLWo5w,1,We bought or second Jura Compressa coffee machine from Sur La Table. It was an expensive model priced over $3K. After 2.5 short months it stopped working. The only option they offered was to send it in for repair. When I asked to have it replaced I was told the turn around was 48 hours. Its actually 4 -5 weeks when all is said and done. I high priced item and thats the kind of customer service. Not to mention an expensive product that cant make it 90 days. Extremely bad customer service on this one.,review,brJQSZx83UHyo3xR4VyX6A,0,1,0 +TdNIQQcfslKjkey4-yAlKg,2009-05-10,OCVxstcjTf3KeQdWrgQ7cw,4,"Whenever I go here, it is packed - and for a good reason, the yogurt they offer is delicious - and they have a great variety of flavors and toppings. I love the self-serve concept, but be careful not to fill up your cup too much - it's a bit pricey and they charge in weight. (They only offer a one size cup that is huge - so if you fill it up with toppings you're likely to spend close to $10 for a cup of yogurt!)",review,Z6Kz5DOd0-W3t_FoQIELAg,0,0,0 +lk-6NXfpSgvNw7zm0xtUVw,2012-07-19,xJcCUTWuvqzUOk3qd1moNg,2,This place is way under seasoned. The beans were ok. I hate that they use store bought tortillas. I don't plan on returning. There are better places near downtown Chandler.,review,C5hDZleIfHtcXS9p4ZYBuA,0,0,0 +R8VwdLyvsp9iybNqRvm94g,2008-03-08,Yvnpd-7uOuQaIOnfvp-t8Q,4,"This place is so busy - it is most definitely not a hidden gem, although it sits back in the neighborhood. The food and coffee are good - but most of all, I like that I can walk my dog here to get coffee and the newspaper on the weekend. I wish that there were more places that allowed pets outside. + +The parking can be a pain and the ordering and picking up of food can be chaotic. But, once you get settled - this is a good place to visit.",review,gGNAr-cmCQUgA9B0QjVqAg,1,2,1 +YKOvlBNkF4KpUP9q7x862w,2012-04-27,WQsr-cylIfzNixGY51er1A,5,"I'm completely impressed by The Mission and I can't wait to go back and try more of their amazing food. + +My husband and I chose The Mission for our 8th Anniversary dinner and had a wonderful time - the staff is extraordinarily knowledgeable and very warm & welcoming. Yelp steered us in the right direction as per usual, so we split the cheese plate with manchego to start, the pork shoulder tacos for dinner and split a pumpkin bread pudding for dessert. Everything was expertly prepared and delicious. The bread pudding was EASILY the best I've ever had. We usually don't order desserts and I'm glad we did, because I can't stop thinking about how amazing this was. + +My husband had an Avocado Margarita and an Estrella beer (Awesome that they have this available - and it was even served in an Estrella glass - impressive). Since I'm pregnant, I asked if the bartender could make me a virgin version of their ""Sophia Loren"" with fresh strawberries & mint - score! It was delicious and I'll certainly be back to try it with the proper amount of booze :) + +Lastly, how amazing is that Himalayan Salt Brick wall???? I NEED this in my house!",review,z06IHGXI_ofBc2DkAbCgnA,2,3,0 +Hlg5GDrdDtjeD8XGwH1eFw,2007-03-19,3Fw8s1Z0xeTaJnkA6txC-A,5,"a G Spot is a myth. and Dr Graffenberg was a mad scientist. + +So its no surprise that I couldn't find the Gelato Spot either. Shannon spouts, ""I love gelato so much, I would bathe in it"". Hmmm, that's interesting + +I drove in and around the dirt road +... and went up and down Scottsdale +... explored the box +... looked south of the landing strip at Scottsdale Airpark +... manually googled it +... orally asked the passerbys + +Road several times and I couldn't find it ANYWHERE + +Maybe I need to do more research. Perhaps some field research...Or a targeted focus group + +*** UPDATE *** +Its on Shea Blvd?? No wonder I couldn't find it- +I was looking down the wrong road + +*** UPDATE *** +Thanks Jake P for ""Yeah it is on Shea, in the strip mall area east of scottsdale rd near the Harkins Theater and Pita Jungle and such.... "" +BUT the point of this review was sarcasm. i.e. g- spot is hard to find + +*** UPDATE *** +Now I have a girl, ""Shannon W"", telling me where g-spot is. She writes, +""It's on 74th St. and Shea, in between Coffee Plantation and Pita Jungle."" +Shannon W: The point of this review was sarcasm. i.e. g-spots are hard to find",review,CioHHb-1cON75GXnU8KwUg,0,0,0 +Gr-1-hmNUVw5y-RJ_coaFw,2012-12-11,t0Zmf5HTUPgtNFgrbZ7AKg,5,"THis place is great! I need an adjustment every now and then but I live in Scottsdale and my regular Chiropractor is so good that he is always booked up ahead of time, so if I tweek my back unexpectedly I can't get in soon enough quite often. So.. now I have a place to go seven days a week that is every bit as good as my normal Chiro. I have only gone to the weekend chiro but my wife and one of my employees have seen Dr. Brian and they love him. So if you need a good Chiro... go see these guys any day of the week. Try em you'll love em!",review,nsWA8mR_Egp6HRqwCD3a3A,1,3,1 +rQ4z0EStSZE4acgkne6Hmg,2009-02-08,AyOq_Eo9GGLsFKVfWhO3UQ,4,"I went to Tuck last night because of the reviews on here, and I loved it. It really is tucked away and all the better. It feels even more special. We had the panini bites, dates stuffed with chorizo, and the citrus brined fried chicken with white cheddar waffles. Not your greasy comfort food here. Everything was delicious and I can't wait to go back and try more.",review,8RNm-Oft6BsUWsXIdiLAUg,3,4,0 +JUlwoai_WikznIEQ7XCENA,2008-09-29,QimuPOgwgY52ciZBazV1Gg,3,"I noticed the sign for Shakey Jake's before it even opened. I waited paitiently for it to wait... I love barbeque! :) When it finally opened, my mom and I tried to get some grub there when we walked up, the cutest little boy came out of the resturant and told us they were close and would be open again tomorrow. We left disappointed but still wanted to give Jake's a try. + +Over a month later, we finally did get a chance to do just that. + +We entered Shakey Jakes and saw a nice, new & clean place. There was a large counter, and several red t-shirt wearing workers dishing up what looked & smelled like yummy barbeque. We waited in line and were handed menus. The walkways were narrow and left a small amount of space to sit. We were feeling the scrunch! We then sat down with our menus and chose our meals. + +I went back to the register & was disappointed in the fact that they didn't have any more MacNCheese and there was some miscommunication when it came to my mom's order. I thought it came with Fries... and it didn't, it comes with a side dish. My mom wanted Cole Slaw AND fries... instead I accidentily ordred JUST cole slaw... but they charged me an extra fee for the cole slaw... so really, I just got screwed out of a side dish and it was pretty much downhill from there. + +I didn't see the lil baskets of utensils and lids and straws on top of the very tall deli case. I had to take our recipt and the cups and I pourd our drinks and sat down. The TVs were SO damned loud we were shouting at eachother. I wanted to scream ""can you PLEASE turn that down?!"" My mom had to use the rest room and I told her she needed a key, which I learned from a previous review. + +Anyway, finally our food came and our order number was called and I got up thinking I had to bring it to the table, when their server told me to sit down and that she'd bring it to us... ummm... okay? but as she did, she told us that the utensils were by the register. WTF?! ARGHHH!! I was JUST there!! It was ackward, uncomfortable, annoying and frustrating. + +So i got up AGAIN, if I could have just picked up my own order, I could have also gotten my utensils in one big graceful swoop. I THINK the owners need to give out those lil numbers for their tables, think Carl's Jr. So there's no more confusion. AND give out those lil bags with utensils, napkin, salt & pepper packets. Because I'm 5'6"" and I had to get on my TIPPY Toes to see what the hell was in those baskets! Also, I ordered two medium sodas, and none of their lids fit. They were TOO small or TOO large! + +The cashier was really nice, but the smaller things made this place intolerable. I couldn't walk to our table without hitting EACH and every single table and chair... ugh, that's the last thing I need. a reminder that maybe having yet another meal out is the LAST thing I should be subjecting my body to. + +I sat down and looked at my plate, the fuck?! I ordered pork ribs, and they gave me beef. I looked at the recipt and it said... beef. *harsh sigh* lucky for them, they both cost the same! I remembered reading their sign underneith the cashier that said they'd be happy to help you out if there's anything wrong with your order IF the food was untouched and IF you still had your recipt. sooooo... because the cashier hit beef instead of pork and I paid - I was screwed. + +Choosing to just go with it, I opened up my side dishes and the yams were good. nothing great, but still good. The cole slaw was way too sweet for me. The corn bread was good!! The highlight of the meal! their cornbread is better than LoLo's! There I said it! I just wish Shakey Jake's would make theirs bigger. The ribs were VERY good, they had a serious smoke ring and the sauce had a nice bite to it. My mom didn't care for her sandwich, she said there wasn't enough sauce and that the meat was very fatty. She liked the yams and the coleslaw. We both agreed that the peach cobbler was YUMMY! I just wish they baked it longer. + +When we left, I was full and not as aggravated like I was before. I do want to give Shakey Jake's another chance (maybe without my mom). To my yelpers, if you go - be sure the check your recipt, get your utensils right after you order & expect a server to bring your food when it's done.",review,vF4B6eFdoDmyV_l7MLHMzw,5,5,5 +7cP7WFmWiTVh-raIL3N_Vw,2009-07-17,TICHOHCp6YN0zTACIVWRlA,4,"The Roosevelt seeps a cool vibe that can only be attained by converting a historic house into a den of drunkeness. Ah, a banker's dream. + +This is where my coworker, Dani, and I went after eating at Sens. She was going to a blind date and didn't want to show up alone, for fear that this guy would be a total psycho who would cut her hair and eat it in front of her. But this time, I already had two incredibly strong and delicious martinis from Sens and was very glad to have taken the light rail. I ordered the oatmeat stout and was quite pleased with it. + +Can I just say how much I loved the decor? I totally want to move in here...or use it as inspiration for our next home. + +So, the blind date guy wasn't a total scode and I let after half an hour. Dani, who was apprehensive about meeting this guy--who's a doctor, and I told her if she wasn't interested toss him my way (sorry, honey)--ended up having a good time with a nice guy. + +We both ended the night exactly the same: Passed out with a cocktail in our hands.",review,nc3cqVN0UuB3m50-CcMftw,1,2,2 +6uHpB60vbJ6Qq8cw-zUx-w,2011-02-26,VLoai3EuA8J9TJB0wSk9lQ,3,"I love this facility! It's clean and bright. It has an indoor track, a good number of cardio machines and weight machines. It has an awesome indoor basketball court which sometimes gets used for extreme training and volleyball. It has a couple of nice aerobics room, plus a couple of racketball courts and a rock climbing wall to boot. I primarily joined so that I could lap swim. Unfortunately, they limit the times that the pool is open to 5AM - 7AM, 11AM - 1PM, and 5:30PM - 7PM - times when there's a lifeguard available. And during the summer, the pool is overrun with kids, and the afternoon lap swimming gets pushed back to 6:30PM start. to accommodate the local swim team. These times don't work for me. Also, during the summer time, it was close to 4 swimmers per lane. The teenage lifeguards don't impose the slow to fast lane designations and don't remind people to circle swim. I never got a good lap swim workout. But the pool is kept up impeccably, and the locker room is nice (except during the summer time when the kids make everything sticky) A great facility overall.",review,M9HJ0uOqHDEd9xc5LVmfdw,0,0,0 +e9nN4XxjdHj4qtKCOPq_vg,2011-10-25,ABqCudcqDJDOC3ALJGHmnQ,1,"What are you all talking about?! This place is awful. Theres a reason why these sandwiches are $3. I can't believe so many people like this place, (although the place was filled with the Chinese people and they have been known to have different taste buds ) You get a 10 inch piece of bread with a bunch of stringy cheap vegetables. From what they said, there was meat on there too, however i forgot to bring my microscope to verify if there was any on there. This place is like a middle school cafeteria smack dab in the heart of Tokyo's slums (i don't know any Vietnamese cities). Please, homeless people, save your quarters, you're too good for this place. They have good milkshakes, but if you really are homeless (as you should be if you're going to Lee's) you shouldn't be buying ""rich people"" milk shakes anyways, stick with the dollar menu.",review,L7e0wSn90wfuETETNXdU2A,0,0,0 +35uDzLpJlbSztgkJLtg1kw,2012-02-20,b3Wt5uMkZsk1bgr4g3sJMA,3,"Had a coupon so decided to have lunch at Wildflower. The food was pretty good, similar to other specialty bakeries. The cashier was not super friendly, but the manager was. Would go back, just felt that nothing overly stood out about this place.",review,H_JsAwjiGEOr_RlZmwfNsA,0,1,0 +W4pNRWFWi6U2P8265s0IPw,2011-01-21,MIfoKUSvAmzVCjyaQz0DwA,5,"I have taken acting classes from Verve Studios on and off for four years, and have recently returned for another work out! + +Amanda is a true professional, a working Actor herself,and gets the actor to be real, not ""act"". Do not miss this opportunity to learn and grow, AND have fun. + + +Lawannah Curry +Phoenix Az",review,8DPNGCkUS0w28RDXtJ8bGQ,0,1,0 +Xth3AXjbQVpvsUBNSFcxtA,2012-03-16,vs5JFF5BpvTuxh8_23sysQ,5,Good JIB. Fast an friendly.,review,B5UBCB7rtRtRHkIb_rvNIA,0,1,0 +DmkTDze8ruJr6o2f5GAvJA,2010-11-11,6ZVT6Fv7OYWuvUwZTy9Evg,4,"Visited for the first time on 11/10/10 around 6pm. The place was empty when we first entered though a group of people came in shortly afterwards. + +Overall the place was clean, comfortable and very inviting. The server was helpful and accepted the coupon we had brought in for coffee (buy one get one free). I ordered a 12oz soy milk latte (yes they had soymilk!!) but was disappointed to find out that they were no longer serving yogurt ice cream - I opted to try their blackberry sorbet. My husband had a 16oz Iced Americano and a frozen chocolate covered banana. + +I thoroughly enjoyed the soy latte, it was very delicious and filling! The sorbet was also very tasty and fresh. I asked for two scoops when I ordered it and it came in a rather large cup. I did not finish it all as it was just too much for me to eat. I suggest that you plan on sharing if you order 2 scoops! My husband liked his americano and frozen banana and wanted to go back for seconds. + +We are hoping to return soon for some more delicious coffee and to try their waffles and ice cream cookies (they looked so inviting!)",review,uj-70y8y-eDCbDX67TK7yQ,1,1,0 +DbI6ezKctN4Z5SV7LvG4Sg,2011-03-15,C4oKH7gICW21NokUa4Tfuw,5,"I LOVE this place! From the moment you walk up to the door, it is spotless. Sometimes you will be approached by an employee asking if you need assistance, majority of the time, you won't talk to one employee, which is great! I just want to go in, get what I need, and peace out until next time without the small chatter. + +Their hummus is AMAZING, along with a few of the prepackaged meals. Their Creamy Cilantro Salad Dressing is OMG AMAZING!! +Sweet tea... LOVE IT!!",review,ugoqDrn6cPPD63Pt_CLi8A,0,0,0 +EOCQ5E0lakUyBvUH0L9--g,2010-07-23,bAICGZsmA9WvZlLQIdr65g,3,The employees here are really nice and I like the island feel. The food is pretty good and I like it because there aren't many other places in town with Hawaiian food. I also like that you can get beer here.,review,xXddQy6m2cLcz9tfQu5fyA,1,0,0 +-4A5xmN21zi_TXnUESauUQ,2011-08-03,chxUSqN3W33h0iLg-GMd7g,4,"I came here a few weeks ago and I really loved it. I thought it was great that most of the ingredients were vegan and vegetarian friendly. My husband and I came here for breakfast. I had a strawberry banana smoothie and my husband had a chocolate, coffee peanut butter protein shake to die for. And we had bagels that were very tasty. I would love to come back here for lunch, everything sounded excellent, especially the soup. I was also impressed with the staff....I thought that was the best feature of this whole place. They are super friendly, and this one guy, was SOOOOOOOO Funny the way he was greeting people and making jokes. It was very outgoing and it made the customers feel like they had been coming there forever even if it was their first time. It also makes patrons and business owners feel like they are an important part of the community with the camaraderie that takes place here. I am looking forward to returning.",review,DFQ95g3s1oi-VcDZEO2TOA,0,1,0 +t54zAs7IftAVb9SKcCRotw,2008-10-27,vobgySm0oMWQJTSt5kHt6g,5,This place is great for a big group of people. We originally thought we were going to have 6 people. We ended up having 11 by the time everyone showed up. The staff was more than happy to accommodate us. The Kota Athenian chicken is very good. The price range is moderate. All in all a fantastic place.,review,zigHnwA0FSGPGUE59lLFzA,1,2,0 +zmFc8M-hS4uuyY0hklIpoQ,2010-10-25,ZAVp0mqfdr7M9MtAJYfE5Q,3,"I wasn't sure what to expect. This was stop 1 on the pub crawl. There was an emo looking couple in a booth a table full of patrons (they looked like regulars) +The artwork on the walls was dark and ecclectic, but the place didn't have a dark feel. + +I can't say this would be ""my"" bar. But if I were in the neighborhood I would go to this bar for a few drinks and some hummus.",review,2y3LWFfyRp02EdjwcVv7sw,0,1,0 +Sb1_G-DMy26YHafNxxhVrQ,2012-03-28,4xaqgTW-HgcyAsFuf95z_A,4,"This is a bit far from us, but we went and we had a great time. I loved browsing the local goods, and the fact that it's pet friendly was a huge plus in our book. The old lady who our dog sniffed, on the other hand, should probably take a chill pill. I also got a great bunch of fresh basil from this place, which had excellent aroma and taste.",review,9ryWdjTHVqqAoETSazV3sQ,0,0,0 +JkXgwcfbWDZOc3i3PY2_wA,2011-08-17,AIVj3zSU0GtrQvjK0-h-5g,5,"Dr Natalie is a compassionate, empathetic, caring DC. She listens, takes her time with you and always strives not only to make you feel better, but to keep you feeling better. Her new location is adorable. I highly recommend her!",review,e-tEKhqFz0o0IB5r6C-OsA,1,2,0 +53YGfwmbW73JhFiemNeyzQ,2011-06-02,5RBGQbLpYsGZovS8-QufSQ,5,"I must hand it to them at Olive and Ivy! First rate atmosphere and food. +The pesto is the most flavorful I have ever had and that includes pesto I have eaten in Italy. +Wine selection is terrific. The breakfast, lunch and dinners are wonderful. The bar feels a bit like a meat market but that is the only down side. +It is beautiful, clean and worth returning to again and again.",review,CcdJ_VhU_zqe2fL7G3eXug,0,0,0 +un3KC2gyMrSG6yqjVRctXg,2010-11-23,E-hgzF9IMyp-k0XvcdEbCw,4,"Shimogamo has been one of my favorites for a few years now so, i thought it was time to give them a YELP! Every time I visit I am always greeted by the owner (Yoshi) who happens to be Japanese and runs the restaurant as such. Fish is always fresh and consistently high quality, sushi chefs are friendly and always willing to let you try something new. They also have a nice selection of cold sake's available and some random ones in stock off the menu if you ask the owner. + Atmosphere is very modern/contemporary and in a small suite located next to C-Fu Gourmet. They also have a traditional Japanese seating room in the back that is fun for larger groups etc.. If you are a sushi lover or even a newbie to this style, you will love it!",review,0lJjLyGl06M2xwB8FL6XfA,0,1,0 +K845ZDttFfx99zQ-0aE2tA,2010-09-13,p6Opdqa3tSPrGURrWQtYJg,3,"Unlike a lot of the other reviewers, I actually had a decent experience here. We came in yesterday (Sunday) around 2. The place was pretty quiet, excluding the plethora of football fans who came here to watch their games. They have a ton of TVs to do so, including a HUGE screen that was playing the Cardinals game. No complaints about that. Some of the guys were rowdy but hey so am I when I watch football. It took us a while to be seated. I'm not quite sure where the hostess was. As soon as we were seated we were helped by a very pretty and sweet girl. Our food took a while even though the place was pretty dead, but what we got was satisfying. We started with the nachos which were really good and then I got their jalapeno burger and my friend got their pork sandwich sliders. The fries were seasoned well and crispy. The service needs some work: nonexistent hostesses, disappearing servers, slow cooks, but this place could be a real gem.",review,IO3AsR6cdMto7VCwfPzf2w,1,2,1 +rIonUa02zMz_ki8eF-Adug,2009-12-21,0aSLyHSgBFJCoDt523DH3w,2,"Walking in to Five Guys, I was rather excited, and was looking forward to my experience. I have never been to a Five Guys before, so this was something new. My first reaction upon opening the doors was the music was blaring. Too loud, at least. The music was classic rock, which I don't mind. After walking up and reviewing the easily understood menu and waiting in line for a few minutes, someone took our order. The order taker seemed like she was having a long day, not seeming very interested in the customer. While taking the order, one could clearly see the kitchen. It seemed kind of like In-N-Out, but everyone was moving much slower. It was as if everyone was moving in slow motion. + +Much to my dismay, they did not offer Dr. Pepper, my favorite soft drink. I was surprised that they offered other lesser known drinks, but not Dr. Pepper? Come on. After waiting about 6 or 7 minutes, my food arrived in a bag. A bag? Really? I was planning on eating inside, not take out. Even McDonald's does better than that. Digging through the bag I first took out the fries, which were in a cup, and I took a bite. My first impression of the fries was they were nothing special, and too salty. I like salt on my fries as it adds flavor, but there was simply too much salt. As a result, in addition to the fact that the serving was quite large, I finished only about half of my fries. + +Now onto the burger. I paid about $10 for my meal, so I was thinking to myself that this better be the best burger I have ever tasted in a long time. Unwrapping the product in its tin foil wrapping, I noticed that the presentation of the burger was sub par. The burger did not look appetizing, at all. Almost disgusting, as a matter of fact. The cheese was dripping over the bun, and I couldn't even see all the ingredients on the burger. Taking my first bite, it didn't taste bad. A pretty classic American burger taste, I must say. It did taste rather close to Wendy's. + +Upon finishing my meal, I was not impressed. My stomach felt greasy, and I felt the need to go hike a mountain a couple times, which I did, as Tempe Butte is close by. I felt my stomach almost on the point of rejecting it, it was that greasy. Seriously. Overall, Five Guys is way to expensive, unbelievably greasy, and makes your stomach cringe. The atmosphere is nice though, thus the two stars. + +If you had to choose between Five Guys and In-N-Out, INO is the clear winner in every category.",review,Ab6te7czFqcMEJemHcyxsg,0,0,0 +Yhfp_vgnh_GirZGeVhj7Gg,2012-11-12,4O_CjEJ9oDWWlHLTAEXEgw,5,"OK, Where do I start? + +This place is AMAZING! I love the food here, especially the fact that you can eat and watch a movie at the same time! Forget about the movie theater popcorn, you can get a rack of ribs here while enjoying your movie! + +Before the movie starts, a waiter walks around with an iPod touch taking your order, usually during the previews. During the movie, you can press the Service Light to add more things to your order. About nearing the end of the movie, you will get your check, so make sure that if you want more food, get your orders in before the movie is over. + +Pricing is good, it costs about the same as a dinner and a movie separately, why NOT kill two birds with one stone and get it all at once? The seats are REAL COMFORTABLE, as long as you get the love seat, or leather seats, just don't get the ""office chair"" seats, as those are like....sitting in an office chair for 3 hours watching a movie ;).",review,KnsWpD1e_hMoAVcN0ftiGw,1,1,1 +JhupPnWfNlMJivnWB5druA,2011-07-29,7hI-uWCBw37Y0WHUAuOzQg,5,"I've been in a handful of times, and last night was also no disappointment. After looking for a place to have a glass of wine late, I ended up here, as 3 or 4 other places in Old Town were either closed (Napoleon's and Tapas Papas Fritas both closed at 11 PM??? Well, Napoleon's closed forever, so I heard, but won't believe...) or dead. Citizen had a multi-course private affair they were finishing up. Kazimierz had some kind of themed jazz party going and was raucous and demanded a cover charge. But good ol' cosmopolitan-cool AZ88 was next on my list, where I had a fantastic Pinot Noir (and Tempranillo), cheese plate (their kitchen stays open till 12:30 every night), and warm and friendly convo with spot-on bartender Steen. Another bartender came in later and was relating his favorite summer drinks in a bon vivant fashion. They do have a killer Moscow Mule which is served in a copper tankard to keep it cool. + +I've been coming in here, on average maybe once or twice a year since around 2007, and let me say at AZ88 the good things don't change. They still have a tantalizing food menu (they are a full boar upscale restaurant), and a drink menu that, together, rival anything else, really, in Lower Scottsdale (and in much of the Valley). Not to mention the atmosphere that for me has the perfect combination of sophistication, decor, music (4 more stars for the DJ's mellow-ambient rhythms) service, and vibe that indulges all the senses wonderfully. I'm now making this place my default destination for treating myself or a date like VIPs, as they've shown what it takes to to be among the best at what they do.",review,uiur8sopp0iYRORmtj9cfw,1,1,0 +qVN-P0aov4z5oknS12Cq1g,2012-01-13,3W5xNpLoORZZDF-JCwnFTg,3,"I don't really get what all the buzz is about. Coming from SoCal I think In N Out has this place beat. I can get a small burger and small fries from Five Guys and I am beyond full the rest of the day. The Cajun fries are OK but I kind of freak out when the bag carrying your food gets stained from all of the grease. +Why I'm giving three stars instead of two is that I JUST discovered their hot dogs and those are FANTASTIC. I never need to have another burger from here, I'll stick with my double doubles......but the hot dogs???? VOILA!!!! +And their soda machine is really cool too. It's touch screen so once you pick your soda, you then get to add flavors. It's really cool. If they had a soda machine on The Starship Enterprise, it would be the soda fountain from Five Guys....except that it would have to be voice command. +Anyway, I'll be back for the weiners and to play with the soda machine",review,wNqwKWaRjClmcKsoJJRFow,0,0,0 +Q_jHqufNoxdlgCtLbqrpsA,2009-07-30,eIC9EZtzQkekZ-0_Z0culA,1,"This place is pure crap! The players are sub-par and un-entertaining, (especially Mike Clement and Julie Martinez). , and the door men are ridiculously cheesy, and rude. +I'm a regular at piano bars all over the country when I'm traveling (Pete's Piano Bar in Austin, Howl At The Moon in Scottsdale) and The Big Bang in Tempe is a terrible destination. Save your tips and bar $ for the aforementioned places and take my word for it.",review,_AuFTKgNYxqNFPyZMeA0qA,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2011-07-31,B4pRRXdQW2Lyr67wxQtWaw,4,Superb beer selection. Music was really nice and at a good volume. Really a great place to hang out and have a drink. We missed (aka were too tired to stay up past our bedtime) a jazz jam session. Will have to grab a coffee and hang out next time because I miss me some good jazz. It's so hard to find in Phoenix!,review,qRo9gHN5OiV1-peDuhCh-g,0,1,0 +ypEtwQHobNJCZvPONO38WQ,2012-11-21,vqfZcQXWkk-JfSMwMVQP8g,4,"Upscale restaurant on-site at the Wigwam. The hotel's location means that there are few full-service restaurants close by - so we chose to eat here. We were very glad we did! + +Service is great - fast, friendly, and prompt. Food was terrific (ribeye for me). + +Would definitely eat here again.",review,Nl8kUgXO4zbnuWa7hm_aWA,0,1,0 +5-X03Zc0nN7U5eoe8uFUdw,2007-05-14,r4xT1urBMYKHXfxxui8Jlg,4,"Cozy, cute and yes, a little claustraphobic...Coronado Cafe. Perhaps the latter adjective is my own issue, but at 5 foot 9 inches I felt REALLY tall. An adorable little home, with creaky wooden floors transformed into a comfortable cafe with approachable American fare. After navigating the dicey, sandy, lumpy parking lot I accidentally entered the kitchen door. My bad. I was redirected to another door and entered through the rear. Yikes did I just say I entered through the rear? Anyway a lovely staff person told me to go to the front and check in. Meandering through the cafe I really did find it lovely. Very neat, old yet modern and strangely very loud. It was a booming lunch crowd on a Monday. Taking Mom and Dad out for a Mother's Day lunch. We waited a few minutes for a table and were constantly being said hello to and asked if we've been helped by a friendly, friendly staff. Shout out to the staff! The menu, while not especially inventive, seemed fresh and yummy. The soup of the day was a tortilla soup with its own stamp on it. No tortilla strips atop the cup, yet and especially flavorful soup, creamy with a twinge of tanginess to it. Mom and I both had the turkey sandwich with cranberrry sauce. HUGE mother of a sandwich. I always wonder about the big sandwich because you cannot possible bite into it without making a mess. Not a strike against them, cuz it was very good, bread was fresh and turkey seemed unprocessed. Dad ordered the ham and cheese, but stripped away all the interesting flavors, because, well, because he's a dad and likes the meat and potato type menu. Dessert was a wonderful and decedent brownie with ice cream, chocolate and caramel sauces. Very good. Brownie was more like a cake though. Again, no complaint, cuz it was dee-lish. Service was so great I have to say. Friendly, professional and fun. I like the idea of eating in an old house. The contrast of old Phoenix with striking photography of modern New York strewn about the rooms was quite cool. I recommend a visit. I'm craving the tortilla soup and would love to try other items on the menu. Most importantly it was a wonderful way to hang with mom and dad (who ventured in from Sun City in their mini van, navigating the Central Ave. mess, God Bless 'em) and we truly had a good experience. Coronado Cafe. Cute. Cozy. Comfortable. And in the end, not so claustraphobic.",review,C8ZTiwa7qWoPSMIivTeSfw,13,15,14 +TtdQtqjvN_K4449boXaU1A,2011-11-19,3dHALSb_v2dzzMeLlr4cVg,1,"If we hadn't arrived after a tiring day and prepaid online, I would have checked out. Furniture missing. Security bar sheared off. Faceplates for wiring gone. Furniture handles missing. Bobby pins and scraps of things on carpet - hadn't been vacuumed. Two remaining chairs badly stained. You wouldn't want to sit on them. No uniforms or name tags on staff. Pick another chain. The reviews for the other Ramada's in the area - which I read after the fact - reflect the same things.",review,usyCze4iT4H8v3Q8Y7-XLA,0,0,0 +1Duul3qCnLrNak1Np-iHfw,2010-04-20,zyKV0-TlAdmLEEh6Klv6wg,5,"WOW. This places is incredible. I can honestly say that everything on the menu is wonderful. It's the perfect date place, since you can order booze to cure the date jitters. Also, you can satisfy your dieting girlfriend and still order a big plate of ""man food"". The best part about their menu is the fact that it is SO TASTY with being HEALTHY. The extra care in picking ingredients, grilling/cooking with little fats, and unique spice combinations truly makes PJ stand out. The decor's nod to local artists also helps make the dining room an enjoyable place to be. For a perfect healthy and satisfying vegetarian lunch I recommend the following: A small Greek salad with an order of the jalapeño or roasted red pepper hummus (PS: they'll let you order the hummus half and half!)",review,IbNzF_SIdZioYbLnL6F5Vw,0,0,0 +JhupPnWfNlMJivnWB5druA,2012-12-20,5-OpMBN0GGKmZjmBY0sZXA,1,"Still a place that is unacceptable in my book--especially when a server there goes out of their way to message me privately on Yelp to complain about my punctuation, and signing off--every so ""sincerely"" i might add, with: "" love the B*tchy waitress from AZ88. + +Way to keep it classy over there.....",review,j2Zx2PYK7TdxtEPlvRmD1w,0,0,4 +hBHkHYOk_E-6EgObC6MTdQ,2012-12-09,gqlMr1IZw2WwZhn-jJsoxg,4,"I love the concept of this place. There are three different restaurants each serving breakfast, lunch or dinner. This was the first time I went to the Farm Kitchen, since I usually go to the other place for breakfast. Anyway, their lunch did not disappoint. What I love about their place for breakfast, was delivered for lunch. There were yummy sandwiches, salads, side dishes, and dessert. I ordered the chicken salad sandwich and it was perfect. It was loaded with mayo, which I hate. It had full of flavor! I ate my sandwich outside in the sun surrounded by trees. Great place to take visitors too!",review,5gmnzvjYprzK21Q5awYF_Q,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-05-08,cERN_MjgGv74n9Z_mMr6bg,4,"I would recommend a visit if you happen to be in Scottsdale. Papago has a beer for every type of beer drinker. They have 100's of bottles in clear panel refrigerators, and 30 taps some of which are house brewed. +They have a great beer selection and awesome wings. What more do you need from a beer spot?",review,jXj2c5sEOoHIc59-BSkxEA,0,1,0 +s685YHkO3lcId41bjp5KOw,2012-10-20,zMBNAdUL7VMeoDv-xO9foA,5,I am from New York and always asked where do I get best pizza? Hands down Lamps Pizzeria is the BEST!!!!!! Always fresh ingredients and friendly staff and owner.,review,yZHGqCWs678-5SSz0mWsVQ,0,1,0 +irVjrnurmB03bTaj9BXofg,2011-01-31,s5yILQYwrO2f0D6wSApMSw,3,I decided to check this place out after getting a coupon in my Savvy Shopper magazine for 25% off. I am a fan of all of the little self serve yogurt places popping up but I must be honest that this place is no different than all of the rest. Be careful that you don't overload your cup or you will end up paying a lot by the time they weigh your dessert!,review,My9DUYlhgwARA-6JJ8_Y6Q,0,0,0 +6W9TRKrb72ZLl0h1KWvC1g,2011-11-24,9v_NBE0-Wm4gbhijay2Z1g,3,"fry's is conveniently located at w germann rd and s alma rd, has a reasonably large selection, and prices are fair. when grocery shopping, i look for and purchase items based on the best value in terms of product, freshness, selection, and convenience. i check the weekly sale ads and circle the best buys usually at 3 different food & drug stores. since these are consumable, recurring items, i will look for opportunities to stock up when great deals come up. the site is clean, well stocked and well organized. common purchases include some baking goods, packed meats, breads, cereals, canned products and eggs. a surprising find...there's a sushi kiosk at the back of the store near the packaged meats section. so, i buy the freshly made sushi - spicy crab roll, cali roll and tuna roll. it's actually really good. i usually shop for produce elsewhere, same with laundry products, beauty products and dog food. those reviews to follow soon. scored a little lower since parking is usually a near-accident on the weekends, with so many vendors and customers-in-such-a-hurry at that busy shopping center.",review,IeWasXNEkwqQfil8twvRkg,0,0,0 +mUMikdLRJxeet5uWWGQeZQ,2007-03-21,cjfJ3TqjaHJub-4k8Y4XFg,3,"This is the ""other"" Coffee Plantation that I always forget about even though it is right by where I grew up. Weird, huh? + +Actually, it isn't weird. Because this Coffee Plantation blends into its stripmall surroundings so seamlessly that you totally forget it's there. They take absolutely no chance with decor or ambiance. For all you know, it's part of the laundromat next door. + +Coffee isn't bad and it never seems to be too busy so it's actually an undercover great spot to get some things done without worry of distraction. Not sure of the wifi situation, but a good book on a rainy afternoon and this place would suit you well.",review,Ovpa3S8xD96dLE5eDxcxJg,0,0,0 +GpK9MeUjEd7rwhejG2ykww,2010-02-25,pj8P3WZb2Ub_Fh30-hKAhQ,4,"The employees at this location are sooo nice! Even when it's super busy they are still very friendly. My favorite thing about this place is it's open 24 hours! If you want breakfast for dinner or a milkshake at midnight you can have it! My fiancee enjoys their french dip sandwich whereas I always try something different. I just had dental work and have been eating like a senior citizen, so I opted for the mac n cheese. It was warm and gooey with a crunchy cheese topping- a great comfort food. Late at night this place is especially fun because of the people watching.",review,bmDivXQy-KB4_dPIS9ZA8w,1,1,1 +vORNz1hg_6zcNZ7KFvkL7g,2009-05-09,IQm2Q-kfCwBbgApSeOjRdg,5,"Hertz Gold Club service worked perfectly for me. My Toyota Corolla, booked over the internet, was in its bay and ready to go. + +The buses to and from the rental centre were frequent and painless to use.",review,mAuBHENS_DeFCQqrJC_UxA,1,1,0 +zgobrpk3RbFz6o2M4uSl8A,2012-07-12,-izfvgHPidDQJRMkg5qUUQ,5,"Umm this place is awesome. I got a bike basket for 25 cents. 25 cents! Too often these days I run into ""thrift"" stores that miss the thrifty part, but not this one! It's fun to shop and you may end up finding a truly good deal!",review,8n4SarsuI9Km6lEtydiE0w,0,1,0 +Kqn4J9NTgZdMAnV4HuYh5A,2009-09-04,eAdHH-zHy3qvAzSQl-ujpg,5,"I work right down the street from Press and have been a huge fan from my very first visit! The staff is unbelievably friendly and extremely passionate about their craft! Everything from the food to the coffee is first rate! They always accommodate my special requests (a little more of this, none of that) and always make good suggestions when I'm looking for something new. + I love the yogurt and granola parfait (strawberry and vanilla yogurt for me with a bit of honey and light granola) for breakfast with a white chocolate latte. Also, the breakfast burritos are perfectly creative and filling. For lunch, my favorite is the cactus club panini with a small side salad. + Also worth mentioning is that they have the VERY BEST iced coffee around. They call it an iced toddy and any one of the employees would be happy to tell you how it is different from regular coffee. I just know that it tastes amazing and seems to have a bit more of a caffeine kick! + My favorite part about Press are their delectable desserts! The berry mascarpone cake pretty much makes you feel like you've won the lottery. And the ghirardelli brownies and chocolate chip cookies (warmed up) are a weekly addiction of mine. + Starbucks is a thing of the past. I'm lucky to be in close proximity to Press, but I think I would even make the drive just for that mascarpone cake!",review,ClItHsk05vOKhg4O3DtMqw,0,2,0 +vtQOervVVTXjhvSZQiZ6PA,2011-03-10,DN4qtQNZSG0yZ-WW0xgcew,4,"This is my favorite place to get thai and I have not found a place to rival it. + +Now it's not perfect. I got on a regular basis (they know me when I walk in now... I go that much). The service is either great or slow, and the heat ratings varies enough that you can be surprised. The decor isn't fancy and it's hard to find from the street. + +Now that being said, the food is always great and across multiple dishes on the menu. I'm always satisfied with my lunch. + +It gets busy every week day during lunch because of the Intel crowd so show up before noon. For dinner and the weekends, it's never that busy, so a great time to go if you have time.",review,fMfy2O2nPk3XWWmWSbszag,0,1,0 +cc9KFNrcY9gA7t9D1a3FpA,2012-10-11,nCzTSOBLvRfsXr208sHDYg,5,"I have used Sandella's on three different occasions for catering lunches to business offices. +Jeff ( owner) does a fantastic job at not only running a great business but also with the quality of food he prepares for customers and excellent customer service and catering as well. +My offices that I bring lunch to love this food fare. It is a healthy alternative that many of my offices are craving after having so many lunches brought to them that weigh them down and make them feel like going to sleep after lunch. As a part of our healthcare community this food is something I feel confident about bringing to my colleges and offices that I visit. It taste great, it is made with only the best ingredient personally selected by Jeff and it is best of all , healthy.",review,m5-3onu1zp4l50V-PmZKgg,0,1,0 +BINYfrtGp3A4w0d5E7kbYw,2012-07-01,zQ-Iki7tvOzmY_u5QQy24A,4,"Went here tonight on a date with my BF. I was pleasantly surprised with the atmosphere, service, and food. All the ingredients were fresh and yummy. The Chow Mein was the best I have had in years. The staff was very friendly and attentive. + +I would give the one sushi roll, Golden Cali Roll, we got a 3.. it was just ok. The BF liked it more than me.",review,qXgmDv3GbOJJA9wWH5f3bg,0,0,0 +-JL0CWSLkkzFHZXlctnf8A,2012-10-05,4wnR-nqmfy2LyrWh2tMhOg,3,"Good salad options. It is definitely tough to mess up lettuce and veggies. As for the rest of the selection, we must have just come on a bad night. The pasta was overcooked and mushy, not even close to al dente. Fresh fruit selection consisted of only 3 fruits, not exactly a vast selection. If you want a good salad, definitely the place to go.",review,gx9KOExE39H8KxufkKMR8g,0,0,0 +O7fXh4ODsi--5LmJKTHn2g,2011-12-30,-g3M_jmXAMN_FZ9x8L5uHw,5,"I stumbled across this place after missing my usual Light Rail stop on my way to pick up a Zipcar at the downtown ASU campus. + +First I tried my usual caffeine fix...a nonfat double latte. Excellent. + +Second trip back, I gave the breakfast burrito (plus bacon) a try. Delicious. The tortilla was as good as everything inside. + +Third trip, a beet salad and a bacon chocolate chip cookie. Bacon and chocolate for the win! + +I've been here three times and have not been disappointed. The decor is modest, but functional, as it should be at a good business with honestly good food. The barista is not only knowledgable and skilled, but is also a genuine sweetheart. + +It's just a couple of blocks from the Jefferson and First Street Light Rail stop (East bound), so I've been stopping by on my way to work.",review,oQZeITmS8rppOi9YukhbaQ,0,0,0 +MAfc2V_EVtyR9rMxxEAPLg,2008-10-26,FSFkimdBRyZ3fEDbosRaLA,4,"I went to Khai Hoan yesterday and ordered the rare beef pho. Now, this is the first time I have had pho before and I would say it is much like a glorified bowl of Ramen Noodles. That said, it was good. To me, not great, just good. We got the combination appetizer plate. The spring roll was amazing. The crab was great. I didn't like the ""egg roll"" as much as I thought I would, but it was definitely fresh. I had fresh coconut juice to drink and it was delightful. I would go back again for sure, but I would be ordering something other than the pho.",review,cHnlIFP5WwJRer7_C2NUng,1,1,1 +AlspsoZqH1LGCIBgnCAEuQ,2012-04-09,FPsHBn4QoPRQg0o57N9ckw,4,"Cesar Chavez park is the best that the SW Valley has to offer! Located at 35th Ave & Baseline at the base of South Mountain, it's a great location for the residents of South Phoenix and Laveen. I've seen it very busy, but it also seems to be one of the best kept secrets in SW Phoenix! + +There is ample seating throughout the park, including ramadas and benches. A 1.1 mile trail wraps around the lakes in the center of the park, making it perfect for runners and walkers. There is a small tot lot and playground on the east side of the park that families will enjoy. No matter what time of day you visit the park, you will find people around the lakes fishing. Be careful- a friend once tripped on a fishing line that a careless fisherman didn't remove from the sidewalk and broke his elbow! + +Drawbacks: this park is always dirty, as no one seems to clean up their trash after visiting and it is not safe in early morning or evening hours. Otherwise, enjoy one of the better city parks!",review,BDQjq30H2gFncFvaapvm6A,1,2,0 +KBKDl08flVw1AqvM5ucVpA,2012-03-15,6W0l6YPlPL3-HJmW0O-wmg,4,"My wife and I originally went last Sunday only to find it closed. But since I had a Groupon deal I purchased last month, we went back Wednesday night to cash it in. And we're so glad we did. Kind of hidden in a shopping mall with movie theaters upstairs, we were quickly seated and served our drinks with chips and salsa. My wife ordered the fish tacos (2) with rice and black beans. Tacos and rice were both good. Black beans so-so. I ordered the Cuban sliders. 3 mini sandwiches w/ham, cheese, and a Cuban seasoned beef - oh so good - with a side of sweet potato fries. Wasn't a fan before. But now I am. Fries were hot and crunchy. I could only put down 2 and took 1 back to our hotel for breakfast Thursday. Would definitely return for another meal when in PHX again.",review,LQAiv1A7xc30IRwm-EpwUA,0,1,0 +i213sY5rhkfCO8cD-FPr1A,2009-11-22,p3wQa2i7KR_53cvRcieMAg,4,"The main reason for the four stars is for their Angus Roast Beef Dip -- it is delicious! It is up there on my list of favorite French Dips. The meat is super tender and juicy, and the horseradish spread really compliments the sandwich. Plus, it is a great condiment to dip your french fries in. + +The portions are huge -- my sister ordered the Sesame Chicken Salad and she barely ate half of it. I, of course, devoured my sandwich. They have a huge menu, with a lot to choose from. They seem to be known for their pizzas, which look really yummy too. + +The atmosphere is similar to most sports bars, although I'd say this place is more of a ""high-end"" sports bar with chandeliers and mood lighting instead of ripped vinyl and dirty blinds. There is a massive flat screen TV. above the bar, and little ones interspersed throughout the restaurant. The wait can be a bit long on Friday nights and weekends, but you can call ahead to get your name on the wait list. And, they are nice enough to offer you some small pizza bites while you wait. + +Overall, BJ's is your standard chain restaurant/sports bar, but with a few extra niceties to make it stand out above the rest. I'll be back for sure, and maybe next time I'll venture outside my love-for-the-french-dip and try some of their other goodies.",review,oIVsVM8H273aoT1JUmsDIg,1,1,2 +UKgSs_SJzW9fu4CwhIV1yA,2009-04-23,fnzmOhh79nb1qaRocnJ7Jw,4,"As a travel consultant for cre8adventures.com, we came away impressed. This is a moderately priced getaway of unquestionable value. For travelers seeking style in an in-town locale, this chic desert retreat may currently fall behind the Mondrian, but it easily surpasses Chaparral Suites next door. The staff is showing off its Kimpton training, and the service standards were very welcome. This hotel gets high marks on all fronts. + +Taggia, the hotel's new restaurant, is a stylish Italian venue with a unique Ligurian-anchored menu that features fresh seafood and creative traditionally inspired dishes. A large kiva-style fireplace warms the alfresco section, and waterfalls surround it. + +The only downside is that Kimpton hasn't fully finished up on the room makeovers yet. Compared with Kimpton's usual attention to room furnishings and design, these digs are mild-mannered. The older patterned carpeting was disappointing. + +Still Kimpton has done an admirable and feverish job at making over this property. Kudos.",review,PvCYySMGaIqknBgobceLzg,1,2,0 +rE2InW2Jmjy6hzH3p4Iyjw,2012-05-03,UUofuaCU-tVqF69dfZv_8Q,4,They are wonderful!,review,3c90aAhf_LjlQ_Y0YgXhEg,0,0,1 +M3o2COfApfB9et5AwDZ-Pg,2011-05-26,IKZo2YnM2EaVwQ-N4b1m-Q,2,"I prefer Petsmart better because they have a better selection and prices. I like Petco for their cookie bar so I can pick up some cookies that are friendly for pets for my pets. That's basically it, I only shop here on occasion because of the location. Go to Pets Inc in Tempe instead for a real shopping experience.",review,7C-jyTrOX-iJ-MrSJuh-8A,0,1,0 +H8oFMvZBeMDhCeeWGvQQdg,2012-07-16,57LhN8-B5Gjnso6ogOmM0g,2,"ALWAYS trying to upsell me on a number of services...high pressure too. I usually point out something that needs special attention (dog hair in the back seat, crumbs on the floor, etc) and they consistently proceed to do a half ass vacuum job. Two stars because the outside of the car usually looks nice and the inside is wiped down pretty well.. Overall, however, these guys need to step up their game. I used to bring my car here when it was under previous ownership and was always pleased with the service. Now I would prefer to drive 10-15 miles further to get a superior car wash.",review,Sr-wB9G8KflQjbAS8Q3HQg,0,1,0 +s9XNBJAZ3ZcNW5u8BRZXuw,2009-07-02,ZQsXwUotE3eDPQlL3w1iDQ,3,"We were still on a search for New Mexican food and I read up on this place and it was also recommended by a friend. It was average, not very New Mexican. I tried the pecan grilled shrimp tacos and they were good! My boyfriend got the stacked enchiladas which was just ok. Still on the hunt for good New Mexican food in AZ.",review,4qGR9kNFDYQ4mQREG0aRJA,0,0,0 +4xofmDvGh2aD8Lgd0PH8GQ,2011-07-11,KF5Tq7SEi5ErIk6hDaEtRA,5,great wine selection except they are always out of greg norman and ive never got to try it,review,nM3vfxr6fcnN_nXdzwbVCw,0,0,0 +12Abu2ipAXn5RfXe9y_pdQ,2007-08-13,kXi4Qi3jq31ztIIFGT5n8A,3,"This place gets an A for effort, but I think it falls slightly short. It's neat/cute that the wasabi is actually blue, and some of their rolls (like the pink dyed rice for the Marilyn Monroe roll) are innovative, but the food is only a little above average. I liked the rolls okay, but the best thing I put in my mouth was the shrimp tempura appetizer in the martini glass. That appetizer is to die for! The miso soup was pretty good, but not my favorite. We did like the fact that there were only a few tables and it wasn't a huge place with a million people, but the food just wasn't what we expect. We are going to continue hunting for our favorite sushi restaurant in Scottsdale.....the service here was very good, though, which made the experience pretty pleasant overall.",review,9FbgqZ5u9WTLAs28nNafIQ,0,0,0 +JXBdcBb3ivm89fhr6-yfSQ,2011-08-31,zvbIvnurRt0vZ9h9rRf5Bw,5,Great fruit and vegetables. Bulk items like nuts and cranberries are a good value. Check out the meat and deli. Cage free chicken and grass fed beef. Salmon and Tuna are fresh. They do have some good values here. The cashiers are good and give the nickel bag discount.,review,Z0_C4HRVvkLkyEsVGGMnkg,0,0,0 +QIHyWCBG3ftvXbGdHQKdHw,2011-08-10,WuRcr-ina19oJxxZgMdd-g,5,I like their seating area. It has a nice sized inside area and also a bright outside area that is tucked between a walkway and another store. One of my favorite locations.,review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +PdRzCJWP7nPdYoHPdd5SOQ,2009-02-19,z5uXQbUqJVwONdETb_qfMw,3,"I didn't have a fully immersed Portland's experience, so perhaps I am selling them a bit short, but as far as my experience went, it was A-OK. + +We stopped in because of its proximity to the light rail and our need for alcoholic refreshment. We had a couple beers (small selection - but we found something we really liked) and a glass of wine (reasonably priced, tasty) The service was fine, the prices fine. Everything was fine. + +And that's just it. Does 'Fine' merit a 'Yay! I'm a fan', four star review. No it does not. Maybe the food is out of this world. Maybe at night this place lights up and sparkles in a way that the daytime cannot convey. Its on the light rail, so I may give it another attempt, but on first glance, Portland's is just A-OK.",review,o33IBagNFxdJhIrRTl691Q,2,1,2 +aesdfSIJ3oVF0IGvDuZ8wQ,2010-12-20,opm2r2elICA-cezRB9isRw,5,"As a real estate investor, I need contractors that I can truly count on to get things done for me. This means that my calls get returned in a timely fashion, work is done properly, quickly and competently but most importantly, that I get quoted a fair price for a good job. + +Don't give me drama and definitely, don't give me any bullshit excuses or sales pitches. + +I'm so glad to have found David and Tracy. They run a tight ship, they are extremely professional and I sensed their sincerity from the word hello and I talk to contractors and real estate agents almost every single day. + +Thank you for a job well done. You have definitely made the cut as part of my go to crew, not only for my rental properties but as a highly recommended vendor to my Sonoran desert friends, colleagues and neighbors. + +Cheers!!",review,sKXvBM91tMQZTS4bDsyZcg,0,1,2 +xY1sPHTA2RGVFlh5tZhs9g,2012-07-02,pJF6hQThKNP686z-uGF-4g,4,"We had a great meal here! +I started with the cheap salad as I was craving salad. HIt the spot. +Hubby started with smashed irishman drink and loved. He moved onto a draft beer. +I moved onto Fish and Chips-they were light and just the right size. +Hubby had beef stroganoff-he said it was tasty. +We ended with the fabulous salted caramel-my fav thing of the night. +I think the bill was $62 before tip-pretty reasonable to me.",review,Wj0r9VOpoIyRpaa6y5XGmA,1,2,0 +TuCAYZ89lP_s6D7Y78xNhQ,2010-07-13,nmaQbP9ctNku7GHjEofb0Q,4,"*Gamestop Burger* + + +Visiting a friend in Phoenix I first see Smashburger from the street. Upon first glance my other friend and I thought it was a Gamestop cuz the sign looked just like it. We both said ""Haha, we thought that was a Gamestop."" +Our friend goes, ""Yeah I first thought that too when I first saw it. It's pretty good there. Do you guys wanna go?"" + +So we ended up eating our first meal in Phoenix at Smashburger, and we were glad we did. The food was really good, and the smashfires were a great addition to our burgers. + +I ordered the BBQ Bacon & Cheese. It was quite delicious, and a little on the greasy side. BUT that's where all the flavor is!!!!! + +This burger has some hot steamy buns. Yeah I said it . +Unlike most places that use the typical sesame seed bun Smashburger uses egg buns. These buns are a lot softer and compliment the burger very nicely. + +I decided to order the smashfries which are seasoned with garlic and rosemary. These were an awesome choice. For those of you who may not like those flavors they offer regular fries as well. + +Seeing that I hadn't eaten since morning I also ordered the Arizona devil dog. This had guacamole, tomatoes, jalapenos, habenero cheese and a spicy chipotle sauce all on an all beef hot dog. I liked it. It was like nachos minus the chips on my hot dog. + +Now this place is on the pricey side, but if you feel like dishing out $8+ for a burger and fries then this place is not too shabby. + +Different locations call for different items on the menu, so don't be surprised if the Arizona devil dog cannot be found outside of Arizona. I say that they should combine all the regional menus to make one giant-mega selection-awesomeness menu. But I highly doubt that'll happen.",review,byYAUve4mM9cP5J0GeL2Ow,0,1,2 +zSzE4rW9FE3fGqiEzZ91Vw,2011-04-07,LrwG8pXgEGakaoNcNKPCIw,2,"Meh. Seems to be a little expensive for what you get. + +Nothing ""wowed"" me at all. + +Many places similar to this one give you better food, and more of it for your money. + +By the way - I tried this place TWICE and had same experience both times.",review,iwZ_7QuZ1tzT6pIZmOlDQg,0,2,0 +CEswyP-9SsXRNLR9fFGKKw,2012-04-09,83Qr8e79DJZJbBEma1Tzaw,1,"I understand I'm not dude and so I'm not there to state at your ""twin peaks"" however, that being said I am there to buy a beer and when it takes the bartender 20 minutes just to get a beer I'm over it. So I was never gonna come back but was forced with a group of friends who wanted to eat and was just as upset as the first time. Fries were soggy and our server disappeared. We all decided were not going back. Just because your a good looking server doesn't give you an excuse for sucking.",review,9MJAacmjxtctbI3xncsK5Q,0,1,2 +x-lEn6WxwqSNrdYdgjRsyw,2009-12-22,b-HCYV8EvvyXHip5Fw9rHQ,2,"Over the last 5 years or so, I've eaten lunch at Dilly's Deli a couple dozen times. The location is excellent, as it is near my office, and the interior décor is clean, modest, and charming. The music seems to vary, but on today's trip, it appeared to be a mix of oldies and jazzy easy listening. While I've never had to wait for a table to clear, seating can be limited during lunch hours. The service is friendly and quick and the menu offerings plentiful and interesting. Vegetarians will find a handful of options here, though it is likely you can request to omit meat from any sandwich or salad. + +Carrying Boar's Head ingredients is a plus, however the way their sandwiches are assembled and the ratio of ingredients used simply doesn't work for me. Oftentimes, I find my sandwich has a bulge of deli meat in the center and much less (and sometimes none at all) toward the outer parts nearing the crust. It has been my experience that the wraps are not treated this way, though the only wrap I've tried (Mexi) lacked flavor and tasted processed. + +I've eaten one salad at Dilly's - the Greek - and, while it is tasty, I discovered a dead fly in it halfway through and haven't ordered a salad there since. + +As other reviewers have reported, the soups aren't as piping hot as I'd like, though the variety and additional ""daily soup"" is appreciated. + +The bread is deliciously soft, warm, flavorful, and large - ideal for accompanying a soup or salad. If you're accustomed to filling up on a sandwich made with normal-sized slices, I suggest ordering a half sandwich so you can sample a side of soup, salad, or dessert as well. All sandwiches are served with a pickle spear. + +The cookies and brownies get 4 stars on their own. + +Today I gave Dilly's another shot and ordered a new menu item, the Red Bird, on wheat. Personally, I'm not a fan. The Blazin' Buffalo, Dilly Bird, and Smokey Mountain boast far better flavor combinations, IMO. Also, my pickle spear had a hair on it. + +Dilly's is a bit pricier than its nearby competition (All whole sandwiches are $6.99), though a reasonable price if shared. + +Overall, this is a higher quality sandwich shop than Subway, Blimpie, and the like. Unfortunately, the fly and hair experiences combined with the bread/meat ratio issue guarantee I will not return.",review,K_gNqlirV0kppqCGnfGiOQ,0,1,0 +R53UdKGf8uKUIqErS4vc0g,2006-06-03,H28ewjaDAydOLfv6A-tUsg,2,This Baja Fresh really didn't impress me. It's pricey considering that all you're getting is meat in a tortilla. It doesn't have that Mexican feel to it and is unoriginal. There were bugs on the wall. The food is good however. Nothing special though. Since it's a corporate chain you can't expect sizzling flavor but I was left unsatisfied. There are better Mexican food places to go to.,review,57a1sTcwVkNVsxGO_h_3Yw,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2009-07-06,VXZz5o0Fv_hByWp2o6fOSw,4,"True Food Kitchen claims to not be a health-food restaurant, rather a place for great food that just so happens to be healthy. Whatever you want to call it, when you sit down, you'll be handed a card explaining nutrition guru Dr. Andrew Weil's food philosophies and explaining their ingredients and food items until you no longer have an appetite. However, give this place a chance - it's not all about health at the sacrifice of flavor. The decor perfectly highlights the culinary concept, with clean, modern lines, big open windows, and LOTS of green. Andrew's Elixir, one of their refresher drinks, was delightful. The best food item we had was the caramelized onion tart appetizer, with gorgonzola cheese, black figs, and caramelized onions on a crispy flat crust. It was the perfect balance of the sweet mild onions and sweet figs with savory cheese and light, crispy crust. Our server said this is the same crust as their pizzas, so next time I'd like to try those. Next, we had the edamame dumplings, which is basically steamed won tons filled with pureed edamame in a light miso broth. These were good, not great. For our entree, we ordered the black cod, but we had to send it back because it was so fishy (and undercooked). When I asked the server if the fish is fresh or fresh-frozen, he said, ""Well, they're all fresh-frozen."" Their fish entrees are $22, which seems inexpensive, but they're fairly small portions. For that kind of price in this type of restaurant, I would expect fresh fish. Perhaps the fresh-frozen fish is a cost-cutting measure in what seems to be the increasingly corporate Sam Fox empire. We went with the salmon instead, which was also undercooked but far less fishy. The roasted apples and pureed celery root were lovely, but the dish as a whole was a little overpowered by the mustard sauce, and the accompanying vegetables were weird. Prices overall are very reasonable, especially if you stick with appetizers, salads, pizzas, and sandwiches. True Food aims for the lofty goal of making great cuisine that just so happens to be extremely healthy, and occasionally misses the mark, but I give them credit for bringing Dr. Andrew Weil's philosophies on the importance of nutrition for the body and mind to the mainstream.",review,OQMOgqS1NFIyAW4i66iDYA,0,0,0 +0j2UisBk89SHqihr0IdlJw,2010-09-11,FRHZ3iRRKr-XlZxrnAsKrQ,2,"There are few things I cannot stand more than eating out for pizza-by-the-slice. Those are: slices so big they contain an entire days worth of calories and charging additional for traditional toppings. + +While I understand the appeal of this centralized pizza joint -- a slice is 1/4 the pizza itself. The crust is a couple inches high and the pizza itself is barely 1/4 inch. I had cheese and while cheese pizza isn't remarkable as is, the slice I had here was considerably unimpressive. + +We paid $9.31 for 2 slices and a 20 oz beverage. + +What also put me off to this place was the cold staff and multiple things did not seem to be working right while there -- including their ice machine and their sound system (cut on and off). I was also not impressed how, never truly hearing of Sal's before, the employee made it seem like a chain of few. Go to their website and you will realize otherwise. This location is franchised. + +I will not return (unless I am not paying). Instead, I will take a jab at one of the other multiple fast food options on that corner.",review,T5mD6ggC7fh48QgXR0LevA,2,4,1 +E93aiEHvf2secePlIeCxGg,2012-04-14,Ooh1nRWrpiND7mNpUt9_Mw,3,"It usually takes a good word of mouth review from a friend for me to try a new Chinese restaurant. However, I was craving this cuisine and this restaurant is close by and tucked away in a small quiet strip mall. Wasn't busy at all on a Friday evening. We were greeted right away as we entered into the clean, open, no frills dining room. We ordered beef and broccoli, chicken fried rice and lo mien. As we waited our super friendly server offered bowls of egg drop soup on the house. The soup was a nice touch but nothing superb. I was satisfied with our meal but it was not the best I've tasted. Fried rice was a little bland. Beef and broccoli was delicious. Overall I'd say the service was way better than the food.",review,nkK3kbaiPAeR0puZ3GtZjQ,0,0,0 +ORLTCEgKfdxMuGPhIc1O9Q,2012-07-09,FDJPcKtnVA48hfm36kf95Q,4,"Surprisingly well organized displays for a location that regularly gets mauled by roving packs of shoppers. + +Great sales and service, a pretty solid seasonal selection but not as comprehensive as some of the larger Anthropologies out there. The person who lays out the stuff at this store seems to space out the perfume bombs at a wider spacing so sensitive noses may be less battered by this store than some others in the Valley. + +The clearance racks are gold mines for sizes 8+. They occasionally have shoes, bags and swim items being sold at clearance there from in-store returns. + +( Ladies 0-6 can enjoy amazing clearance picks at the Val Vista and US-60 location! That location also has stock from previous seasons since it is so far out of the way of the typical Anthropologie shopper.)",review,W9h1ufjEzDp7THyAqRw65g,0,0,0 +k6Si433-EJrY4J7SZxsnjA,2012-01-07,pA0i0S7HT6XBG6aSw1XK0g,4,"Came here on a Thursday night and it was quite busy! Maybe all the snow birds are still in town. I made rezs and we arrived early,yet they had no plan as to where we sit. We ended up sitting on the Patio. Which would be nice in the summer or spring but , a bit chilly for Jan. They had 2 heaters outside. However, we were just a little to far away to feel them. We ordered a pitcher of the red Sangria wine, which they said they were out, but alass when they saw how dissappointed we were they made more! We were very happy about that so that gives them extra points. However, the Sangria was loaded with ice and there was ice in the wine glasses as well which made us even more cold. Skip the ice when it is in the 40's outside. We had the large Capresse salad which was excellant...The basil and cheese were huge and very tasty. Pizza was absolutly divine! Great crust ,wonderful mushrooms , and excellant Italian Sausage. Bathrooms were clean and parking can be a bit of a challenge. Lacks a bit of atmosphere. The busboys were very attentive i give them extra points as well they were really working hard.",review,kffxYQVQsEpF1DVlQlcGCg,2,2,2 +sKmclh-d2gJkzVVbLdTgtQ,2011-04-05,fMUn3H7Y-hd14NaamqPByA,2,"They play two kinds of music here: country and western. The place is about the size of my one bedroom apartment. It's a dive for sure. It's cheap though. But cash only. The food is actually not too bad for bar food. Overall this place doesn't impress much, but considering you don't have a lot of choices for Laveen, you can't really compalin either.",review,0mqHhdKEdak_A1FBhFNXqA,1,2,1 +J3VvIU1ZDqg9a9e7zK-QSQ,2011-04-22,xmN2Ui07Z2oK-cKcD9fzFg,4,"Pretty good place. Separate bar area upstairs with lots of TV's for sports. Nice size portions. A little pricey, but big portions.",review,Q6H8EfK1mAfQ1nB6GSeMTg,0,1,0 +tdeHd2AVYlEnz9F1UGb84Q,2010-02-01,JruecU8cRBHYBNdsp-mMkw,5,"It's 1961 and we're having lunch in the courtyard of our Miami Beach hotel. Parker House rolls, sweet and salty, an open-face meatloaf sandwich with mushroom gravy. There's a surf board and a tiki carving amidst the flowers. But wait - something's wrong!! There's no humidity! Those are imported mushrooms in my gravy! I work to orient myself in time and space and find, what a relief, that I'm actually in Cafe ZuZu in downtown Scottsdale and it's 2010. + + The Valley Ho Resort, which houses the Cafe, is such a wonderful period piece. It opened in 1956 and was renovated in 2005 by a very wise design team that left the mid-century architecture and spirit intact. Cafe ZuZu is at the far end of the lobby, and its charming patio is surrounded with flowers. The decor is late 50's. If you're as old as we are, you'll recognize it instantly. The menu consists of ""Flavorful American comfort food. Familiar favorites with a contemporary twist."" There are goodies like warm Maytag blue cheese fondue ($7.50), truffled grilled cheese ($9), beef stroganoff ($17), and (gross) tuna salad with cottage cheese which brings me back to my childhood a little too clearly. + + While waiting for our entrees, we received a basket of Parker House rolls. These are the nice squishy white bread treats that, if you can manage not to eat them all, make wonderful toys. You can mold them into sculptures, or shape them into little round beebees to shoot through your straw. My meatloaf sandwich ($11.25) was served on a thick piece of grilled white bread topped first with melty cheese, then the meatloaf, then the gravy. There was a mound of lumpless mashed potatoes alongside. They were so smooth Ken wondered if they were made from instant, but they tasted much too good for that. The portion was huge, I took half home (of course I knew I was going to have dessert). Ken had sauteed liver, beautifully prepared, atop a mound of kale that had been cooked with high quality bacon, sauced with a Madera reduction. He loved it. I surprised him by ordering a lemon meringue tart ($6) for us to share. There were several chocolate desserts that sounded good, but I had a vision of the mile high meringue toppings of my childhood. The tart had only modest swirls of meringue, but it had been made in such a way that it was creamy, as opposed to foamy, and it was really good.The lemon custard was the star. I remembered a gelatinous filling, but this was smooth and velvety, with just the right tart/sweet balance. The pastry was a cross between cookie and pie crust, and stood up well to the filling. + + This was not an inexpensive meal, but the portions are large and quality is excellent. Plus we had joined an organization called The Lunch Club, which every weekday, emails it's members a discount coupon for a restaurant in their specified zip code. So one of our entrees was free! (The discount coupons differ, some are 20% off the bill, others merely are for a free drink). But, to pay Cafe ZuZu the ultimate compliment - I'd come here and pay full price.",review,QiR2X306Yzd9fuJdKDhkGg,1,1,2 +UJBSI5HydQgUhlTkC8ODDw,2012-10-04,j_HMRt-rMm-2jefOqYOOhA,4,"Coming from a place where there is mexican food on every couple streets, I have truly missed an authentic mexican restaurant or joint. This place is legit! Good tacos, good burritos, real good non-taco bell mexican! +If you want some real Mexican food, try this place out!",review,69Q6PivlI-2ZWIqLlq5o5A,0,1,0 +3l72FflaaeI0tWEAWN3-gQ,2012-09-15,7ZbzSZtbP4rNqscdc49rzA,5,Love the carne asada.,review,gdFcADm-9R4vra0VdALXkg,0,0,0 +1HNEj6kcEw369RX9Vlcixw,2011-02-17,0KGj22_xXQfH0hXNZGMCsA,2,"I am a fan of taco stands in general, but.... +This location consistently ruins my beloved bacon, potato, egg and cheese breakfast burrito. Every now and then they get it just right, but most of the time there's something missing from it. The bacon is frequently burned to a crisp, and the eggs...OH the poor eggs. They are browned beyond all recognition and sometimes just a thin layer of bubbly burned stuff.",review,P4XRTKPDREmWvPIg81CzUQ,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2010-09-13,ge71ru9yB0Uj3ms3SC0lgQ,5,"St. Francis gives the impression you could be dining in one of the finest cities in the world, instead of the 5th largest cities in the USA. + +Start with their cucumber gin drink, and then order another. Goat cheese on crostini follows. Insist on extremely memorable whipped potatoes--a side order-- to accompany your salmon on red quinoa. Dessert MUST be the chocolate cake with peanut butter gelato accompanied by carmel sauce trailings and carmel corn garnishes. + +Try dining at the bar for an uncluttered view out the picture window opening, minus the glass. + +Loved it! Will happily return. + +They split our entree for us AND were gracious about the extra trouble we caused--not a wimper. Truly superior service !",review,EXZrHtmzdtDHtH9MPNEhkw,0,0,0 +g-eZgnBDvSDguF8cUxKCkA,2011-11-15,-kfkTOGKCkj1XfzWd7AkSw,4,"Awesome Saturday breakfast buffet (until 11am). I wanted a resort style brunch setting to treat my folks too while they were in town. The service here is impeccable as are the grounds, which deserve a good walking through after you gorge yourself on heaps of fresh fruit, pastries, bacon and eggs. Located in central Scottsdale.",review,90a6z--_CUrl84aCzZyPsg,2,4,2 +km3g-wDO2KfhfnTvJrLJig,2012-07-01,kpvkiDOU0tD5ihodfqSgdA,1,"""No."" + +If you ask me about eating at Papaya Thai, that is what I will say. + +0 stars for the single kinda scattered and scruffy staffperson. + +0 stars for the cook who cannot prepare an offering from the menu as the menu describes it. + +In this case, I was down to two remaining untried Thai restaurants within quick reach of the Valley Metro Limo, and both in Tempe. The other half was in Tampa, and since he does not care much for Thai, I get the chance to try one. + +The limo arrived at Southern and Mill at 5:17 PM, and connected me with another limo at Broadway. With traffic, getting to McClintock took nearly 15 minutes. On exiting the limo, 5:50 PM, I walked back about half a block to the restaurant. + +On entering the restaurant, I picked up a menu and rang the bell and a somewhat harried staff person came to greet me. He asked me where I wanted to sit, at a table with 1 bench looking directly into the side of a huge fish tank...or the next table, which would leave no buffer between myself and the only other table seated in the restaurant. + +There are at least 120 seats in this restaurant. Why so fiercely contain people in the first three tables close to the door? You must get your business in fits and hurries and keeping only the 3 tables active is working for you? Then again, your telling me you are the only staffperson does not surprise me. The Help Wanted sign on the door was more than an indication that Help is NEEDED! + +When I was seated, staffperson offered to bring water. The phone rang and he was off, as he offered another version of ""I am the only staffperson here..."" I looked at the menu and made my decision. In the menu, there is a $2 charge listed for sharing. This goes against everything Thai I have ever known. The traditional Thai meal has everyone enjoying some of each dish served. Because of my proximity to the fish tank, I was quite up close and personal with the fish. The water probably isn't filthy, but the plexiglass tank is not helping the perception. + +6 PM, as the cellphone chime reminds me of the passing of an hour. I am waiting for water and a staffperson who can take my order. 6:01, the staffperson comes, bearing a pitcher of water and a (My eyes are rolling in opposite directions because I am either overworked or stoned) smile. He filled up my glass and asked if I was ready to order. I replied that I was and ordered Som Tom, the Thai name for the green papaya salad. Staffperson replied that he did not know the Thai names for the menu items. The phone rang again. + +Staffperson's attention was no longer on me. The phone, his Pavlovian stimuli, had taken him away. I asked if he had heard me. He replied that he needed to go answer the phone. He asked if I minded waiting, as he was the only staffperson. I said I would wait. Off he went, in pursuit of electronic interaction. + +6:10 PM, staffperson returns, apologizing for the telephone delay and asking about my order. I ordered the papaya salad without the green beans and steamed rice on the side. Staffperson took the order and went to the kitchen. The phone rang as he left the table, his pace quickening as he approached the phone. + +6:18 PM, the door opens and 2 potential patrons enter. The bell rings and staffperson rushes to the waitstand to greet 2 new patrons. + +6:20 PM, staffperson returns. He brings the salad and a bowl of rice. The salad that appears has some of the traditional salad ingredients along with ingredients that have no business being in the salad. Som Tom does not have cucumber, shredded lettuce or cilantro. On sending back the initial preparation, staffperson returned with the original preparation, advising the chef stated ""This is a traditional Thai presentation of the dish"". I sent the order back, citing the inconsistencies and asking for a new presentation. + +6:25 pm. As I empty my water glass, the salad I received previously is returned, minus the cucumber. In asking staffperson if this is a new presentation or if it is an attempt to correct the original, he replied that he did not know. I stood and left. While the advertisement on the window of the establishment says they have ""The Best Curry in the Valley"", they will get no second chance to prove it to me. For all the phone activity, there was no one who came to pick up a carry-out order. Between this and the somewhat glazed staffperson, I have to wonder if this place is not a front for a drug business.",review,8qe2c5uRlAkvNFvDriBm1Q,0,1,1 +2nzUx_M8Szyzsf4CszHasw,2011-10-17,WUZ8N4cNNrN8X1XmYbsLSw,3,"Cracker's & Company has always been a favorite breakfast destination. The food is always delicious and the selection more unique than other restaurants. My husband and I came in for a quiet Anniversary breakfast and although the place wasn't terribly crowded, we were seated right next to a table of ill mannered children and their mothers. I would have asked to move but our waitress was missing in action from the start of our visit. Before our waitress went MIA we ordered our drinks and entrees. In the past I have been given a small carafe of coffee but was only given a cup today which was disappointing. I ordered a carrot cake muffin when I ordered my entree and asked to have it served right away with my coffee. I also asked for the hollandaise sauce on the side of my ""New Princess"" omelet but it was spread over the top when it was delivered to my table along with my muffin. So much for enjoying my muffin with my one cup of coffee. However, the food was wonderful as usual. The service was horrible and the ambiance was equally as poor. I'd hate to see a wonderful restaurant such as Crackers lose their edge in this competitive food service industry. I'm hoping today was a fluke and the service will improve to its previous caliber.",review,dc3XOXCmEwhdjKwVSiEaPw,0,0,0 +3gByPjJPMeTi1bKrvdNOdw,2011-03-16,zVwnqM2PcvXgnu8tscmS9g,4,"I haven't been here in a while. I like how they have remodeled this Fry's, even though it is not even 5 years old, they revamped it a little. Today they had awesome deals for certain participating items. I am glad I read the flyer I got in the mail. I am glad I have their VIP card, I got a lot of stuff for only $45.",review,8p4at4zdzCpueAmSBaorZA,0,0,0 +DflKgFbxt9VuqjSoI21XFQ,2012-06-06,3rObNTfPB-crd3qrm9sRsg,5,"My wife called to have our vent cleaned since our dryer was taking over an hour to dry an average load. Our appointment was scheduled for 8 a.m. not for 8-12 as most places. He showed up at 8 and had the vent clean and working well. Excellent customer service and very friendly. +Thanks again, +Gary",review,ywdRZsx3GSRHn92qdPLN4Q,0,0,0 +ncuj9qx4WjprfJfYJGdmtQ,2010-12-22,aVvyBUdYJ6BJbDbia38j2Q,5,"WOW! I had read and heard alot of good things about Smeeks and I thought, ""It must be too good to be true,"" and while out shopping for a few items today, I was proven wrong. +I walked in and I instantly felt like a kid in a candy store. They had candy, fun novelties, and I swear everything I looked at it made me think of a friend who would love to find it in their stocking on Christmas day. +The store was packed (it is 3 days before Christmas), but the staff was friendly, helpful and went around to make sure everyone found what they needed or if they needed a basket. +Guys, I'll be back here throughout the year, and you should check it out. If it doesn't make you smile or make you want to sift through all the goodies, you probably kick kittens for fun (and that's not cool!).",review,_epzmxZ1Z9KNhtnKdDv4kQ,0,0,0 +AkOruz5CrCxUmXe1p_WoRg,2007-07-09,0i50QQFr7W0B37V02NyQRA,5,"My husband & I are addicted to Cherryblossom's ramen. Mr. T is Japanese & I lived in Japan for @4 years, so take my word it's authentic. + +The mix of foods is not so strange if you're familiar with restaurants in Japan. The ramen is Hakata style, made with a pork broth & may be heavy/oily for some people, so why not please everybody? Be sure to ask for ""Cha Shu Ramen"" to get a few more pieces of pork. (extra $) + +The salads are also fantastic; warm lightly fried (10?)Shrimp on a fresh spring mix base with mango dressing, Shanghai Duck salad, and the Chicken Caesar was perfect, not heavily dressed like some ""roadhouses."" + +Mr. T & our daughter loved the Eggplant in Miso Sauce, & even the California Roll was good. + +It's said Japan took the best of each country's cuisine. So there are French pastries, German beer, Italian pasta, and Indian curries. Save the banana bread for dessert if you can, or get one of their pastries. I've never have enough room. + +If you like good WHITE bread, buy one of the Pullman loaves on the table by the front door. My first extra 20 pounds in Japan came from the good bread! (No whole grain breads were available 30 years ago!) + +I think it's too small for groups over six. + +Maybe we'll see you there. + +Added 11/18/07 +I think that their menus are not all alike, so if ramen isn't on the menu you receive, you can still order it. (It's posted in Japanese on the wall.) For the basic, ask for ""Hakata Ramen."" For extra pork, ask for ""Cha-shu-men"" or ""Cha-shu-ramen."" +Either way, there's really not much pork in it. That's why you need a delicious shrimp or duck salad.",review,ApOSzkrrEza21WGcgLXkxQ,5,2,0 +Xe-zwcsX5EikIK6Ul5bGlw,2008-01-20,mRe9vckC1HgH6IV3IX2GWw,3,"Dam you Doug !!! + +Ok, I thought I be the first but Doug beat me to it. + + Any establishment that has a free happy hour for it's guest is a plus nuff said. Yes -the 4th floor grill is awesome and the bar staff will give you the In's & outs of Scottsdal-ing culture and the pizza they serve is pretty dam good- the complimentary breakfast was was actually good too. + + I'm not sure if they still do the free happy hour thing but what sold me on this lets say resort - is that while I was there , there was a whole bus full of girls that where promoting - some kinda of alcoholic beverage - and I heard from a good source many beverage companies uses the Chaparral as a pit stop for their promotional tours... + +Word- I guess they come for the pool's...",review,iUl8Qf_dknIJUgMGfSypFw,0,0,0 +VY_tvNUCCXGXQeSvJl757Q,2012-06-07,AyIIamOdHs3JCK4GVkH1Wg,5,"Went here for lunch after riding dirt bikes in the desert. We have had Mellow Mushroom in Georgia and Florida, but this one was top notch. Very clean, staff very friendly , and food OMG to die for. + +The garlic cheese bread is fantastic, and the calzones are my favorite.",review,XxW_WSU13NamMOjg_mXgvw,1,2,2 +HQFscafV3wi5z4yOKdUGRg,2012-10-05,m6X-e16VIJsRv3-64iNMfA,3,"Pretty good place. You never actually know who is your server because several different people actually wait on you. The service can be slow at times which can get annoying. The space is pretty big, bigger than what it seems from the street. The food was so-so.",review,100Df1wcVrl9rJgB7EG6xw,0,0,0 +uR2aNW75R4oYs9w7aw-_kQ,2011-04-21,yKF8LATwt8Dh3pWVZyIDGg,2,"I've always wanted to go here. The flames outside intrigued me. So we went on Wednesday night around 8pm. We were sat fairly quickly with no reservations for habachi. Music is pumping, and the crowd is a bit older/slightly cougarish. + +The service was...OK. He went missing from time to time. He brought me a diet coke after I had only taken a few sips out of my glass. I must of gotten 4 new glasses by the end of the meal. + +Soup....is your basic mushroom miso soup. +Salad...Tasty, spicy, had a nice kick. Fresh crunchy greens. +Fillet and Chicken....Eh....I found the flavors lacking, the steak a little chewy, and the chicken boring. Even the dipping sauces were lacking. + +74 for dinner plus tip for two. I think you can get better elsewhere. Not worth the drive down to Scottsdale, find a local joint closer to home.",review,zvgQkY3MLsF6R1-PuktgaA,0,2,0 +FeI75xIG8PF_XZ6P80gLBQ,2009-03-15,EY9HpLQwcREVtWifjmXtGA,2,"Talk about disappointed. I had high hopes for this place, what with its location and idiosyncratic name. But after an hour or so and a couple drinks, I couldn't get past the 'meh' feeling that was permeating both my inner ennui and this bar as a whole. That's when it hit me. Coldplay started to play over the speakers and I knew I had found the musical analogue for this joint. + +Turf = Coldplay. Trying to give you what want and failing epically. All the things you are supposed to like - the things you like about similar bands/bars have all been included. You liked it once, you'll like it again! Right? + +Much like Coldplay's pomp and circumstance that is ultimately soulless, Turf Accountant fails to be genuine on any level. Its all carefully crafted to give you some blend of quasi-upscale, Irish, hipster cool, but it just fails to deliver. I knew it was time to go when I heard Chris Martin's voice. If you find middling boring, I suggest passing on Turf.",review,o33IBagNFxdJhIrRTl691Q,2,1,3 +Qc-WTMIjVPv2qkL6q-Cnhw,2011-09-07,RZjLNQCe9IrjmGipDA93PA,5,"Once you buy a steak from von hansons, you will never buy steak anywhere else again. This is the best butcher shop I have ever seen. Also great sausages, chicken, cuts of lamb. I also get my thanksgiving turkey here.",review,euyfAKtbWU92mg1jez1xKA,0,1,0 +L_MtTn4IUBTmQtqqM2iFqA,2010-03-18,3SJhxHS2TE8iwI_uNIpVuA,4,Finally veered away from my usual sandwich or cold rice noodles and ordered the beef pho....darn it was good!,review,XyaIK2hN3SNMohT5AbKxbg,0,0,0 +fmuj7u1gflmEjW-h0v9bwg,2011-12-01,NPOqZHCZy3b8y0z3kja58g,2,"Nah. I forked over $13 for a club sandwich, mac 'n' cheese, and a large Pepsi. The mac 'n' cheese was good, and the sandwich was just okay. I say take your $13 and go to Texaz Grill!!! WAY better food, and for $13 you can get dessert too.",review,aTi0NVrcPJWbN6jAsJVcAw,0,0,0 +yVQiGdxmnrkJDyQXv2maNA,2012-01-15,35Mj4BycQBzXh-IEETgeGQ,4,"The price and pho was awesome. The waiter was great with helping me figure out what to get. Tried #11, loved the beef tendon and tender meat but not a fan of the meatballs (there was a tiny bone in mine). I am a spoiled NYC bahn mi eater so the bahn mi wasn't my favorite (I thought the meat was too fatty) but the boyfriend liked the BBQ pork bahn mi. I also love the do it yourself take home containers, homemade hot sauce, and I even heard they will refill your broth. Bring an appetite, even with the normal size I was stuffed!",review,nYfpquFWxQC342RenTI3rA,0,0,0 +ZzkAAfn6Y4HGd2eUi34EHQ,2009-12-29,qfVZnSX6NfS1Ki3vB8UHCA,1,"ok, let me be straight with you. i hate paying full price for anything. yes, i'm one of those people. i love a coupon. i love a discount. and i absolutely love a bargain! but i don't like to feel dirty when i leave a store. i felt really, really dirty when i left this store. ewwwwww. this is a yucky ross. dirty, dirty, dirty! the floors and clothing racks were filthy. i couldn't have bought something even if i wanted to because the store was so gross - i got black ""stuff"" on my hand after touching a clothing rack. the floor was so discolored i'm not sure what the original color was. parts of the store's floor were sticky. many of the clothes had indistinguishable marks on them, presumably from the dirty hangars and racks they are stored on. selection was meager, there wasn't a single shoe, bag, wallet, sock or home decor item that caught my eye. the trip was a waste of an hour that i'll never get back. never, ever again.",review,GyFmGA5UQZ4pXdx1lUH86g,2,5,3 +VVeogjZya58oiTxK7qUjAQ,2008-06-09,nQC0qdMjTMueuUSoagEKug,5,"Please know that this place is WORTH the long wait. I come to Phoenix once a month for work and I make sure I have dinner here. There is NOT one thing I can complain about. Remember, good things come to those who wait. I HIGHLY recommend waiting in the house next door and having some wine. The bartenders are very friendly. The main restaurant will call the house when your table/bar seat is ready. The pizza is baked in a stone brick oven. Real firewood is used, not like California Pizza Kitchen's gas oven. The owner himself makes the pizza. Every employee is genuinely nice. With each bite, you have a subtle taste of smoke (not overwhelming). The crust is thin and crispy...AND MOST IMPORTANTLY...you can fold the slice - for all you NJ/NY natives! My stomach is churning and mouth salivating as I write more. I am going to Phoenix this Thursday...guess where I'll be? PS-Guys, phenomenal eye candy.",review,P-mTLZ4dvsGjR7bbJJnwCg,2,2,0 +fZWVI2Bjk6wJoRUB0s4Pzg,2011-02-26,vUQbnXoznZWnWxi-ph45xQ,5,"You know, for a goodwill this one really isn't bad! They have a ton of clothes that are actually displayed to make them look orderly and clean instead of the usual crammed heaps and stacks you see. I love the books - a great selection of books you have always meant to read (and I don't mean the old classics, though they have those too) like James Patterson, Anne Rice, and all those gooey Twilight books. Looks like they moved out most of the furniture recently, but perhaps they will be getting a new shipment soon. Lots of knick-knacks and vases, and about 25 printers to choose from! Check here first if you are looking for one of the above stated items - they is a good chance you will find it!",review,1GL8b9uNkrk3Udq5gSIIFA,1,0,0 +L2J3JfjXZLnX1rLhWKthqA,2011-04-01,FPaGbNkeYs2eznETt1T0HA,1,I'm not sure what all of the buzz is about because this place wasn't that great! I had the grilled cheese and it was hard and dry! There was this nasty drunk guy who sat across from our table and it was quite sickening! I will not be going back!,review,O758lrR1X2zI-ySeyjdr6A,0,1,0 +5VMajxduxfLPSyQkVFKESg,2012-02-02,Wj9chTC9FK2DwEWtxAHoBg,3,"I would have given this a higher rating except for the prices. Ok - in this economy, I am lucky to be able to eat out at all. However, $11 for their smallest sandwich and two small sides and a drink ($1.99 each!!) is a little pricey especially if you have a family to feed. They should consider making it a buffet since they charge buffet prices or giving you a little more for you money. + +But, yes, the food is good.",review,6aS7CrJBq4de_fUDoZd-kg,1,1,0 +qRBeZAFiId0ainBtpFSGuQ,2012-09-13,h2arxEI32_fQ8b6-rBsNWw,5,"As far as sports bars go, this one can't be beat. You won't find one in the East Valley with better food, beer selection, happy hour, or a friendlier staff. This is hands-down one of my favorite places in all of Ahwatukee and the surrounding areas. + +I've been here bunches of times, and the only one bad experience I had (overcooked burger) they took care of the situation above and beyond. + +I can't say it enough: go, eat, drink, see for yourself: Public House is the best around.",review,UuwjD6MZf6Z6QlNphiXRjA,2,2,1 +fK7ujDbjhRFEe2D7eIwK4w,2008-07-03,JGwBPn48sBb-9VaDX0CFOg,4,"It's about time I write a review for Kona Grill... after all, I've been here more times than I can count and 2 of these times occurred this week alone! + +Kona Grill is a chain which makes me want to give them only 3 stars, but considering their food is quality, they offer a fun atmosphere, and their service is decent... I'm giving 4 stars instead. + +As many of the reviews before mine say, happy hour at Kona is great. From 3 - 7, they offer 1/2 off a small menu of appetizers, sushi rolls, pizzas, and drinks. (They also have a reverse happy hour from 10pm on I think). I can't speak for the pizzas (I've never tried them), but the potsticker appetizer is great, and so is the sushi. If I'm not concerned about happy hour prices, I've often ordered other menu items such as seaweed salad, edamame, nigiri, and the seabass entree too. I've never been disappointed. + +I usually do not choose Kona as a destination, but if I'm in the area, at the mall, or someone else chooses it, I'm happy going to Kona every now and then. It's good for what it is - take it or leave it!",review,fczQCSmaWF78toLEmb0Zsw,2,1,0 +ZZevr02C4b_g9RwnezdvWw,2011-11-16,tfeXe9CDotajlWy3rFuqyQ,1,"This place is the white-trash Chipotle. The food is mediocre at best. I mean seriously, how can you just up and steal Chipotle's idea! There's no creativity there. The Habenaro Salsa is flavorless and not hot at all. Seriously? I asked for HOT, not some yellowish tomato concoction for the people who can't handle real salsa! At least Chipotle has hot salsa (not too hot either but much better) for a fast Americanized mexican food. Of course I much rather have the real deal but I do like Chiptole for what it is. Not this crap that Qdoba tries to serve up. +The chicken is over seasoned and highly spiced/herbed you can barely taste the chicken. The Fajita veggie were the same. The product looked of very low quality. Oxidizing Guacamole and Lettuce. The meat looked unappetizing as well. Just not at the level of Chipotle. Although I have been here twice, this is the last time for me. I have been to one in Denver and for some reason thought it was better. So maybe it's management but I can say the food is less than good. I much rather go to Chiptole than this wannabe! Employees were dumber than a bag of Frijoles! +This place has the worst ""Mexican"" Food I have ever had next to a pre made burrito from 7-11 or a burrito from Taco Bell. Just disgusting food.",review,ePduC-tSwrMQRjKI4Suh7Q,1,2,1 +T5jyDe3MVb_4quR9qnoUcg,2010-05-11,1kPMe-M2TF5FN3XxfZKjTQ,4,"Made an appointment on the day I went. I only had my lunch break, but they made it a worthwhile and affordable experience! No hidden charges for the exfoliating salt scrub. I received a beautiful pedicure in a clean atmosphere in under an hour. Success!",review,TCHjDUFtXR8s-UJyfdl1XA,1,2,0 +BblCFCBYOJxU-tbvMDXuTQ,2009-02-23,jlxI_ml1lVnSkgg6DXvKlQ,4,We've eaten here a number of times and have always had the best service and great food. All of the servers we've had were excellent and the manager always makes it a point to check on us and see if we need anything. No complaints and we'll definitely be eating there again.,review,0XAQT93R8-IX65MtF3Ikzw,0,1,0 +Jhl-pgZ_ArUOIOSnI4MWpQ,2011-10-07,2ennhxbzgVB4WZwBj8nlyQ,5,"I see Jenny Strebe who cuts and Veronica Peebles who colors. They are AMAZING! I am so glad they opened Salon Stylush, it is the perfect size (not too huge and crazy) and it is so modern & cute! + +Jenny is an amazing hair stylist with the accolades to prove it (she styles hair for fashion shows, magazines, television, etc). Jenny has been cutting my hair for years and she is super sweet and super talented. I trust her with my hair, no question, and recommend her highly. Also, she has a talent for men's hair as well. She cuts my husband's hair and that is one of his best qualities (I'd say!). There are so many men out there with bad hair - Jenny knows how to make it work for men! + +Veronica has colored my hair for years - and she is hands down one of the best in the industry. I never loved my color until I found Veronica. Now, I trust her completely and know she'll make my hair look great, and natural, which is important to me. She's also super sweet! I highly recommend Veronica as a stylist and colorist.",review,iAD9GVUI8m5KaHgi1CnJBQ,0,1,0 +xmjv8g356v8Qo55ICjG8rg,2012-03-21,nZwYc_NXQv88o1WKgHQcnA,4,"Went in midweek for lunch with a few guys from work. Place was quiet, easy to get seats. Staff were super friendly and efficient. +Some of the best wings I have ever had... Try the boneless wings, hot, and ""Finished on the grill""... AWESOME!!! Also highly recommend the patty melt on marbled rye with sweet potato fries.",review,QjYzp8ko7w010fEQ6DWTnA,0,1,0 +NN2qs5B713vM6BDcMyrg4A,2009-04-16,w3xIgSRAvSWGfP_hZEyeQA,3,"I had very high expectations for The Breakfast Joynt because so many gave it 5 stars, which means ""As good as it gets, Woohoo!"" according to Yelp. My experience didn't live up to that but I'm willing to give them another try. + +This location was formerly a bar that was transformed into a breakfast restaurant. The actual bar is still there, with a flat panel TV in the middle, but surprisingly the shelves are still empty all the way up to the ceiling. They've only been there around 6 months, so maybe this will change as they settle into the location. It has a very clean, upscale feel to it - something not out of place in North Scottsdale. It's also easy to find once you're off the 101 onto Raintree, and then north on Northsight... it's on the right and shares parking with Gold's Gym that is easily seen from the road. + +I found the eggs to be good, and recommend steering towards the omelet choices. Being from the South, it wasn't thrilling that the biscuits were somewhat small and square shaped, almost like a little dinner roll. They have their own style (and they've informed me that they are homemade) but I was looking for something more substantial to be smothered in sausage gravy. The pancakes were not served hot with the other food items, and they seemed to have settled and were somewhat chewy and elastic. + +Menu was rather straightforward and clear with sectioned boxes, with a nice highlight of their featured stuffed apple pancake. I thought the description of ""ham that falls off the bone"" was repeated far too many times. + +Prices were very reasonable for Scottsdale. The fresh squeezed orange juice was excellent. Owners are very concerned about customers with less than a stellar dining experience, so I'll be sure to give the Breakfast Joynt another try with friends and family.",review,joIzw_aUiNvBTuGoytrH7g,2,7,1 +YWDfUAPwScdW_9GmGskkZg,2009-09-01,SwfQezsYZcngfobqi0zWhg,3,"Typical dumpy yet fairly clean little sports bar in a strip mall setting. Get your tires changed next door at Discount Tire and grab a few heinekins while you wait. Beware though, they call it coppers because it is owned and frequented by Cops and for some reason there are a lot of people missing limbs that frequent the place.?. hum. ho.",review,nN3Ym_sgqI5EQuC4AIJprA,0,0,0 +yA9gOueRPoQ4-Y8Xdu8k3Q,2009-09-14,gEPilwLMMgb1J_O-5Ep6Nw,3,"A very good sandwhich shop! My boy and I stopped in here after a movie at the AMC. They have a neat concept with the bags on the wall where you mark your items. + +My only wish is that they had cold sandwhiches as well as the toasted variety. I am not always (rarely in fact) in the mood for a toasted sandwhich. + +The italian sandwhich I got though was delicious. +NOM NOM NOM",review,XgIhw-aWaq_Fx3ZVQGjnuA,0,0,0 +lktu5JPDlQUG-7cV7gOzDQ,2012-07-06,j7ySLZbARMB52UDpqzbf2w,5,Love this place! Wish we had one here in CA. Great vibe once you walk through that door. Fantastic drinks and goodies!!,review,hY9auEfm3Bdrdrwm8NlpuQ,0,0,0 +Qxeh_4jjc9GfY5kSA8qwQA,2010-05-23,khRsB06gd9Rc0M1EDIyXbg,1,"Price reflects quality and service. 5/2010 purchased wedding gown, brides maids and mothers (bride and groom mothers and grandmothers) dresses. Girls were rude and our brides maids dresses seems and straps fell apart just before the wedding.",review,YQlPh4qpDg3VP-xAjLw0NA,0,0,0 +ZcqPdNauzOR1BGSVSAocVQ,2012-01-30,JuNOX6tHhAPrwWcZH9HtNg,5,The folks here are the best!,review,1nB6skFopaPCCPds1Bq81Q,0,0,0 +aApHpyUbnqBJmL_3X6UFOA,2011-02-22,uO9OIauNnuURYOticL1flA,5,"After unsuccessfully attempting a walk in gel at the posh looking ""Sundrops"" nail salon with my two year old in tow, I was drawn to a half deserted strip mall just down the street and a small space in the center labeled Andy's Nails. I Yelped the place and saw the decent reviews so I walked in and was immediately attended to by the friendliest faces I've seen in a while. Despite the fact that I was short one babysitter, they began work on my nails right away and when my toddler got restless, one of the very nice owners picked her up and carried her around for 20 minutes! Not only do they now offer Gelish gel manicures but they offer more colors than many other Arcadia/Biltmore/Camelback Corridor nail salons AND they're cheaper by anywhere from $5-$20! I'm definitely going back and going back soon! My toes are lonely...",review,8KmHPVzyBW45_tXX8zU5mA,0,3,0 +SDwYQ6eSu1htn8vHWv128g,2009-04-16,EAKmueESsEa2cbP9nDUXng,4,"Eat, drink, be merry. + +Love the atmosphere. Love the upholstered loveseats, love the bruschetta and salad. Love the open air. + +Don't love the horrid parking options. +Don't love when I'm seated on the wooden chairs. How can we be expected to relax and drink up when our bums are bruising? + +Servers? Easy on the eyes. Nice bonus for girls' night out.",review,63HOmdiJzMOw9figAu14QQ,2,2,2 +gUt-pPUpOVVhaCFC8-E4yQ,2010-07-07,dcYrrajuQcIgBhvvRCL7yQ,4,"I always have good time at this place. I could write a page about Geisha, but the previous reviews pretty much sum this place up. + + * Self servicing bathrooms (Ladies only) + * Fantastic Happy Hour pricing- The veggie pot stickers are the bomb! + * Hot waitresses ... barely of age to serve you alcohol =) + * Private karaoke rooms that allow you to humiliate yourself in front of your friends only + +The only thing I would steer clear of is the specialty drinks they are overly sweet and are not made with fresh fruit... even when they say they are. The waitress cleared that up for me last weekend =).",review,Zwtx7FLZcK5F2P0-Tz8mHg,2,3,0 +vR3eAwcgkh2EmVJegZO2dQ,2012-09-22,cFSYdlrbCCB1Wpd637P4xA,5,"Ever eat at a Steak 'n Shake? That's what Freddy's is: a Steak 'N Shake kind of burger and it's delicious! + +I liked the fries too: very thin, perfectly hot, not too much salt. + +Nice people, the manager made it a point to get me my meal hot-off-the-grill, even though I came ahead of the ""call"" and again he met me while he was cleaning tables. {See my review of ""The Habit"": their manager never greets customers, can't solve problems from behind a door, always hiding in his office.} Freddy's Manager was OUTFRONT, ALL THE TIME, WORKING HARD! + +Great burger. Next time I'll get the frozen custard. I was too full from my triple cheese, CALIFORNIA STYLE-BABY!",review,aOFGoRqStaoxiTnnN0liWQ,0,0,0 +IF-BrFA4srTmLHk_fxOKkA,2008-11-06,0131TSv9ZpAce1KfxJcC2g,4,"I like Blu Burger. If you're a burger lover and like to have it ""your way,"" this is a great choice for you. There's a lot of competition in the ""gourmet burger"" market these days. Delux is the Phoenix original and I'm a big fan. Stax (in Old Town) is also very good. I mention these others because, while I like Blu Burger, I wouldn't drive from Old Town all the way up to N. Scottsdale for it....I'd just go to Stax. And, vice versa. Blu Burger holds its own and does a great job, but not enough that I'm going to drive all the way across town for their ""take"" on a custom hamburger. + +If you've got a group, Blu Burger is good choice for variety. They have veggie, turkey, and salmon burgers, in addition to salads and sandwiches (egg salad, anyone?). So, unless your friends are incredibly finicky, there should be something to please everyone. I also applaud the fact that onion rings and sweet potato fries are available as sides. + +All in all, Blu Burgers is 4-stars all the way. Yummy food. Friendly service. They do the gourmet burger thing well and you'll walk away full and happy.",review,Oq5CYkB4dQE_wmPgHu51bg,0,2,0 +S9LX8EtUHooCWGIGmrHUSg,2007-11-02,RgsjiFl_ssM03WW0EMq7qw,4,"Hey Guys, +This place is awesome....but I could be jaded because of all the wonderful wines I sampled! From the gris, cabs, sparkling shiraz, riesling to the chardonnay, this shop had what we were looking for and what we weren't looking for! The atmosphere was amazing and quiet for a Thursday night get together. Our hostess was sweet and doted to our every need. The food was amazing. I completely recommend the crocodile pot stickers. +For exotic wines and exotic meats appetizers, look up Down Under Wines!",review,vrM_uBgwfDQ6bQxGVHdUGQ,3,2,1 +ua0V7dK0_lpChFE65qAx0A,2012-04-25,5DkvAySRPh0nxgm7YYPnNw,3,"I've got to hand it to Smart & Final for providing some incredibly economic pricing options for both name brand products and supplies. It's worth a visit to save some big bucks by shopping here. This is one of my go-to stops for party supplies like plates, cups, napkins, water, etc. Think of Smart & Final like the Dollar Store meets Costco.",review,4ozupHULqGyO42s3zNUzOQ,3,8,4 +BN5gV0OfIZQbQ7PXv4tG0w,2008-10-30,lm-9ZFLQSHflyzJOzjoZIw,2,"Stopped in on a whim. The whole plaza gives me the creeps (although I do like Yucca tap room and Capistrano's). But besides the plaza giving me the uneasy feeling, that even an unattractive mid-aged man could fall victim to a mid-day rape, I forged on. The rewards were less than stellar. I cruised the aisles of items looking for something I could purchase to add to my already cluttered abode. No dice. Everything is in that weird period, where it isn't old enough to be collectible, cool, or culturally relevant yet nothing is new enough to provide an upgrade. The only thing I thought was cool was a couple obscure punk CDs in the music section, but I already had the albums on my IPOD. I didn't see anyone else buying anything either but everyone did stop to talk to the old cooter working the register. He looks like he may be a plethora of knowledge and stories. I'm not trying to steer people away, just saying I didn't have any luck, but then again I didn't seek guidance from the wrinkled prophet dishing advise and offering a safe harbor to those fearing the dayrape.",review,G47wUKM3bGfJOg9u3j7ZmA,1,1,1 +vR3eAwcgkh2EmVJegZO2dQ,2012-06-09,D0Ap0nHdKIQKPyX4BUVM5Q,4,"I have been to the Freddy's location in Gilbert several times and really enjoyed it so when I saw a Freddy's had opened in my ""hood"" I was excited. My daughter and I went over for some dessert and they did not dissappoint! The custard was smooth and creamy with lots of toppings to choose from. I have not tried the burgers at this location yet but if they are anything like the other location they will be very tasty. And don't forget to try the shoestring fries. I usually like thicker fries but these are nice and crispy and delicious! I'm so glad Freddy's took over this location.",review,ZmIgP4U4Ht9CYmNX0_zP6w,2,3,1 +NIuaxYvM_-dzmgGXwPJ1Gw,2012-08-09,1MUQ-ePSlwsDwO9QjzSyzg,4,Festive with a deep beer list. Great set up if you like live bands delivering music from up on high while drinking micro brews. Lots of tv's and pretty good selection of Az brews.,review,jVNpBd3oF5Tch8O74BkEDw,0,1,0 +AFx48YCp7n7dn-AXp71zAw,2009-01-28,BcLe4aGMam8nwLIZj2DTzg,4,"Took Mom for dinner Monday night. This was the second time I took her here, and it'll be the last! Guess Tapino just isn't for her. Out of the three small plates we shared, she only enjoyed the lamb kabob over quinoa ($9). It was the second-best dish of the three I enjoyed. + +I'd wanted to try a glass of rose ($7), since Mom is a fan, but she was ""too tired"" to have wine, so I'll have to bookmark that for next visit. We started w/ the butternut squash ravioli w/ sage butter ($8; mmm... I adore brown butter and sage... My Mom, however, doesn't). I appreciated the sweet creaminess of the squash puree against the slight toothiness of the ravioli. The sage butter added just enough salt to the dish, while the toasted candied pecan bits on top added impeccable crunch! How I wished I had all three pieces! (She ate one and didn't even enjoy it! How infuriating! LOL)The second dish we tried was the baked escargots w/ butter, parsley, lemon, and puff pastry ($7). Compared to the multi-faceted ravioli dish, this was a bit disappointing. While I enjoyed the textures that the snails and crunchy puff pastry offered (TOO crunchy, if you ask me! Those babies were bordering on hard! Where's the ""puff?,"" I ask.), the butter and parsley treatment fell flat. Mom again only had one. I believe there were 6 total. Don't misunderstand- I still ate all the rest... I was hungry!! :D + +Last, but not the least, came the skewer of lamb kabob (3 pcs; $9) w/ bell peppers and onions, served over cold saffron quinoa w/ cucumber sauce (served on the side). Thankfully, the lamb pieces were savory enough not to have needed the sauce. Loved the quinoa. + +Check out the photos I took... I'll have to take a photo of the ravioli on my next visit!",review,0bNXP9quoJEgyVZu9ipGgQ,6,7,4 +Lx4ZFP6dIMzi7Ib-ljV-ww,2012-01-02,-TTuzwXV6Hj7FmZBKgGn7g,2,"Personally, I used to come here a lot more often than I do. I've noticed, what I feel to be, a rather slide in the quality in the food. The carne asada burrito I recently got tasted okay, but the meat tasted lesser quality than I was used to. The guacamole was a bit thinner than i like. I gave them this score due to them having much better history with me and I hope/think/suspect they had a weak day. If they do better or worse next time, I'll post something that will reflect it.",review,zJ7Rvp193kl9L0ue-rDxyw,0,0,0 +E2F25cRcYf_bWtvbCht0EQ,2010-02-22,tGf7N5K_XIR-L4PsdPhqfA,4,"This place has really delicious, insanely fattening brownies. They are really quite delicious, although they are pretty pricey. They do have really great sales, though! These make great thank you gifts to people (we've sent quite a few) and we haven't had a flavor we haven't liked!",review,baPgGoTxeR35ooubPRlR5g,1,1,1 +atbvu3MxnDgpQfZgvPZz2Q,2010-07-24,Z8GY4AS6AfYjJCv20Z2HNg,4,"Here's an update, because the buffet is out at lunchtime only now, with a regular menu at dinnertime: + +This old place continues to be one of my favorite restaurants in the Valley, after 1 1/2 years & many visits. It's friendly, inexpensive, peaceful & comfortable (even with lots of customers), & always satisfying. + +This time I started with a delicious bowl of Menudo, a nice salad & several kinds of fresh fruit, tasty Cole Slaw, & then headed for the Mexican hot table. Had some Spanish Rice, refried beans, a beef taquito, an excellent beef tamale (hand made, not some fast-food thing pretending to be a tamale!), & more, but saving room for some Chinese. + +The tasty treats over at the Chinese hot table included TERRIFIC, big, meaty barbecued pork ribs, really good & crispy Sweet & Sour Pork (Hey Iain!), just-right fried rice, a steamed veggies dish in fish juice that included such treats as Chinese Snow Peas, all cooked just enough, & so on. + +What a great lunch for $5.59!",review,ikm0UCahtK34LbLCEw4YTw,3,4,2 +V1nEpIRmEa1768oj_tuxeQ,2012-11-30,ZQYolR6yCPOYFbO9XdSWJA,5,"Romantic, quaint, amazing! We were referred here by a couple of long time Phoenix locals, and we were so happy we took their advice. We ordered a white pizza, a anti-pasta appetizer, and bottle of Chianti. We were able to get a table outside and loved the atmosphere! Perfect date spot...",review,Lp8fW8eyG86P1TlX6GcpVA,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2012-05-21,HloiMQ8AjO-MM7Sh2t9jFQ,4,"Went here for a saturday lunch with a girlfriend. The building is amazing and beautiful, very clean. I'm not generally a ""Scottsdale crowd"" type of gal, but the place was nice, and the music was good too. The menu looked so delicious that we had a hard time deciding what to get. Our waiter was very kind, didn't try to rush us, and gave us plenty of time to decide. + +We had a house salad, dirty chips, and an order of sliders. The house salad seemed a bit over priced for what it was, but the dirty chips were really good! The sliders were average, and well priced. + +I really want to go back and try a happy hour sometime to try more of the small plates, our only regret was that the order of dirty chips was BIG, we could only finish half of it. A half sized portion would have been perfect, though!",review,RGnODSWkk6lYIlAzlP0EBQ,0,2,0 +bA-Cj6N9TEMlDlOh2aAnUw,2012-03-20,c2RqKaQOPOsqg8IGQTq6NA,5,"Another vacation that started and ended with US Airways. + +We arrived/departed on time both ways. My normal sized butt still fits in seats so no issue there. I enjoyed my free drink and chitchat with the flight attendants. Brought my own snacks and read a book. All in all a good beginning/end to a relaxing vacay with the man friend.",review,GPPHDWEZGjiw777_iTOJ1w,1,2,0 +8o-NLKy_XfbJtqljX9XLCA,2011-06-18,GGVqgEAZ50J0Fz15l1OL8w,1,"First off I would like to punch the dip Shit on the food network who said this was the best chicken he ever ate. Yeah the place is filthy, but how they operate their business is redicolus. Service sucks, 49 minute wait for the food sucks, waiting 20 minutes from the first entree being dropped off until the last person luckily receives their food sucks, being told on the 59th minute of a hour wait for your food, that they are out of your side dishes, sucks, spending my hard earned money at a place that is Ass backwards in any kind of business sense, sucks. At first our group thought it was a joke, then the reverse racism theory was brought up, then we noticed that every table was experiencing the same lack of service. Black, white, purple,orange. They just sucked.",review,XDVABSG5JRXry3Dm45vnyA,0,8,3 +uPDTnuR-sOi47blHH943lg,2010-03-28,aXtskk_ccWoiQZ_wSCdBVQ,3,"Its not in a shell gas station anymore and i guarantee that Guy would never visit the new location on his show. I ordered the El Pastor burrito and i didn't like it at all, very dry and just not to my liking. I would never order it again but I'm sure there are alot of people out there that like it. The salsa was great and i couldn't get enough of it. I ate half of a bean and cheese burrito and i really liked that also, not the greatest tortillas ever but they are possibly #3. I would could back and id like to try some other type of burrito or some carne asada tacos.",review,3w-JiPus8k-BR5PQ7egDvQ,0,0,0 +IoFggnoj1P4EcmNEP2K6Ng,2011-06-17,S5kqxr5zGXnTmloiOdhEUA,4,"Open 24 hours on week-ends, ample seating area (good for studying or hanging out and chatting), very welcoming clientele, and broad selection of coffee drinks, non-coffee drinks, and desserts, fruits, and random snacks. + +The coffee isn't great but not terrible either. The Wi-Fi, while free, is fickle. + +One of my two favourite coffee places in Tempe (other is Cartel off University & Ash).",review,qR09EUhlR6g_NU6u5gbI8A,0,0,0 +TVJT7Xknd-ikf4vskcjKQw,2012-03-19,nfLoADHb5G4bhuU_ARGtQw,5,"I love this place! People are very friendly and very clean restaurant. I come here with co workers for lunch on a weekly basis. I order a gyro pita and side of Greek fries, so delicious! The salads are huge and tasty as well. The Greek fries are amazing with feta cheese and a lemon butter sauce they put over the fries. I can eat here everyday!",review,6gK6I7_AHJgiD_xwlMc2Uw,0,1,0 +tcxNX3YiHNbaobEpPFyOtA,2012-05-16,mkaQ7Y6djFDT5WN2g4bLdQ,4,Great fried fish and crispy onion rings....yum!,review,01nTwhHBaw8AHjQDb7JGBw,1,1,0 +Shl6PtJERnowSJSC4IHbYQ,2011-01-25,vR2CMYThsCUC8RdaUqINFQ,4,"Midday parking at this place is seriously a joke, but such is the case with a lot of swank midtown lunch spots. + +Pizza was great, my East Coast hailing girlfriend gave it a thumbs up, which for an AZ pizza place is a huge kudos. We came to check out both this and the adjoining Pink Spot Coffee and Ice cream. We ate on the ice cream side, so I can't comment much on the decor of the Z Pizza side. + +Good ingredients, not the usual suspects, so that is a change. I will pay for good quality pizza, so the price was in line for the quality of the food. + +It did a ton of lunch business but was efficient and the staff was smiling and not hating their life, which is always pleasant .",review,5oLJL8ImlYLkFm05J6oKqQ,1,1,1 +OoXySPyQuSHstMF2zpV_kA,2009-11-20,so9a4cnFAtuU4TsWWbH_Ig,5,"Awesome. + +So much better than parking on site. + +Safe and good prices keep me coming back. + +Flying during a busy time, go to their website to make a reservation...that's right a reservation! Also print out a coupon for a couple bux off per day.",review,fH9OSIlijo9Obp8ZDq8rBg,1,3,1 +rZbHg4ACfN3iShdsT47WKQ,2009-02-02,O1DUnVmKGWVfQVHJHU4PLw,5,"My family and I ate here Saturday night.....based on the reviews of Yelp. +We were not disappointed, as a matter of fact, we were pleasantly surprised with every aspect of our evening. When you arrive at Bobby Q's, the outside makes it feel as if you are about to walk into a dive. However when you turn the corner and walk in the door, that is not the case. Very nice ambiance throughout the entire restaurant. They had wonderful mood lighting! I love low mood lighting! Our server was very friendly and helpful. Our meals were excellent. My husband got the Chicken Fried Chicken and I got the Top Sirloin. We started with the corn bread, which was delicious! I don't care if it feel apart at least it wasn't dry! My top sirloin was cooked a perfect Medium and seasoned exceptionally well. I really loved it and I love steak. Surprisingly the roasted corn was one of my favorites of the night, I don't usually gobble up corn when I get it with dinner, but man, this was some heavenly corn! My husbands chicken fried chicken was perfect. Pounded thin, with a light crispy batter, I hate to say it, but it might have been better than Texaz Grill's chicken! It was tasty. My son got the oven cooked pepperoni pizza and it was a large portion for the $4.00 price tag, he even took some home. Our food was excellent, there wasn't one thing we didn't like, the food was hot, the service was great, the atmosphere was great, we will return!",review,qeAt3hJ-ifUnnjTR5k8OeQ,0,0,0 +5KG0A3WlC7K3DAXtrIFFjg,2008-01-20,9T2B05WckKkdksClxk6QcQ,4,"More a comment than a review. Suffice it to say, I L-O-V-E this store! Much to my surprise and delight they are opening a second store at 75th and Cactus! Right in my own backyard , don't ya know. Woo hoo! Now all we need for the NW valley is Lee's sandwiches, and a solid dim sum joint to complete my favorite Asian trifecta!!",review,bcZd4ohK6CIT_BOQ0_O53w,4,3,2 +iE1eq7kDacRwgvFZJmjfgw,2012-04-30,NK3JgrH6VTSOSgy7u_aI-A,1,The staff at this location was rude and unfriendly!! Also the store itself was not the cleanest I have seen!,review,RsHIBC5MLxEqKoKEIGe4CQ,0,2,0 +1NZLxU5WvB5roPFzneAlLw,2010-07-06,ucyv8PIZdCG38yAn5-ocIA,4,"I would give it 5 but, I want to try it again to make sure. +Very tasty Mole. good drinks. Great atmosphere. Excellent service.",review,pgB3ZIh1rUc7eSq1-8OghA,0,0,0 +p8yg26BbovkfL2iw7Pcg0Q,2010-11-23,Ytf1ccd9yDb1YnPWr3gycw,5,"Stephen G. hit the nail on the head - ""You buy a peaceful experience"". I was looking for a resort/spa but also wanted to take advantage of horseback riding as much as I could. This resort definitely exceeded my expectations - the staff is AMAZING (friendly, accommodating, etc), the food was delicious, the resort is beautiful and the rooms were also clean and well-maintained. Everyone I encountered went the extra mile with regard to service. I came back to NYC completely rejuvenated.",review,gjNhdZZ_2lI8QPfkKn_Omg,0,0,0 +RLjA7TBXJfyqDfPuVCcrtQ,2010-01-19,475VAD94PDpgvrrM-J7IEg,3,"Went to Prado for a birthday celebration and things started off very well - it's a beautiful dining room, and the live guitar music is a nice addition. The hostess and maitre d' were both friendly and personable. They pour you a glass of sherry on the way to sit down at the table, a lovely touch of authentic Spain. All good so far. However, the food is very hit or miss, as others have suggested. Some dishes really shined (butternut squash soup, bison short rib, pineapple coconut cake) while others really disappointed (one-dimensional gazpacho, chewy calamari, fish overpowered by olive tapenade). My advice: soak in the atmosphere and music at the bar, maybe snack on some tapas, but skip the restaurant unless you're okay with hit-and-miss. Such a shame, too, because I LOVED Chef Urciuoli's cuisine when he was at Taggia.",review,OQMOgqS1NFIyAW4i66iDYA,0,0,0 +7_7fxuG9ESAFmx-AiMsJHg,2012-11-12,glNPCmaS1aVoo5yOxp6rWg,3,"Sometimes there's a cover, and sometimes there isn't. In true nightclub fashion, you can never really tell what it's going to be either. + +I've never seen anything good happen downstairs. The music has never been good, regardless of the genre that night (Hip Hop, Techno, etc). And, the overall vibe is pretty lackluster. + +Upstairs, however, is house music heaven. Located outside under the stars, on a relatively small balcony, the vibe is always pretty stellar. Open air, video collages on the walls, and AWESOME music. I've never been let down yet. Even on a random Wednesday evening recently, when it was almost empty, the music was still amazing. + +If you live in the Valley, you have to visit the upstairs of Bar Smith at least once. It's fantastic. It's a shame they've never been able to replicate any of the upstairs magic to the rest of the club though.",review,UuwjD6MZf6Z6QlNphiXRjA,0,1,0 +ipNveHQxPlRmgSe9CSt9dw,2011-09-26,4HjJF3o9B-YsLhi7FAXGbw,2,"This was the last valley casino i had yet to visit, should have left it alone. + +The casino had a nice array of machines, but they need to clean up more oftern, or maybe the patrons need to use an ashtray more oftern. + +yes there is a lot of smoke smell around, but they have a small smoke free area. + +They also have what looked to be a very nice cafe, the food looked great and the prices were very reasonable, but we were just too tired to stay. + +Played for about 2 hours and hardly saw anyone win anything, or get any bonuses on the slot machines.",review,-Wa5j14Rhps3DC2SMaaatQ,0,2,0 +3UMcsN9IjoeV8JZvC4apag,2009-10-25,jWwoc50VheOEIeCZLyU3JA,2,"I've been here twice...the first time was driven by a rumor that they made their own root beer. I'm a sucker for homemade root beer, so I had high hopes that this place would become a favorite. My husband and I were so excited when these huge glasses of RB hit the table!! And then confusion...both of us looked at each other and said ""WTF???"" Worst RB EVER! + +What the heck was in this drink that made it taste like ass? We looked all over the menu and found nothing. Then we saw the ""fine print"" on a small table sign...STEVIA. It's made with Stevia NOT sugar...I'm sorry, but I have to say that this is the lame-est root beer on the planet. If I'm going to treat myself to a big glass of homemade root beer, I want it to be delectable...sugar and all...no freaking high fructose corn syrup and no bloody artificial sugars (and yes, I know stevia is ""natural"" but who gives a crap...it tastes terrible anyway). + +After the root beer debacle, it didn't get better. The food was meh...service was not so great (there were moments of ""is she ever coming back???""). I'd say, go here for the beer, sans root, but that's about it. Otherwise, skip this place and drive out to Four Peaks...you'll be happier all around.",review,raMSkwLdZ-kFea1fTY_-Ew,3,2,2 +AaKlegu7gmOCD4rEESF76Q,2009-05-24,kUIfKhHboxTPLWw71p9RCw,3,"When I asked the server where he was from, it led to a discussion about how historically trains would stop in Maricopa! All joking aside, this place is a good after dinner spot or happy hour spot to come and chat with a friend about why there are no Amtrack train stops in Phoenix! +They have a decent wine list and I would not really sit outside here because it is nothing really special...but the place has its purpose.",review,2XCsVpAMsGUykrM-BBFEXA,0,0,0 +L-bpJXpA5875dLb7A4wh6A,2011-11-16,1cT3bBGjclcRxvPGZw_agg,5,"This place is great! A coworker and I stopped in for lunch this afternoon and was blown away by both the food and staff. + +You get a large bowl from the cashier and can personally stuff whatever meat, veggies and garnish you want. Then, mix a neat selection of sauces. Finally, watch the entertaining chefs cook your meal on a large heated stone. + +Everything comes out fresh, hot and delicious! Want a tip? Use the wax paper next to the chicken to ""stuff"" your bowl. Everything will shrink when cooked and this will allow you to have a bigger meal for the same price.",review,fwzW24Yx842aUri7hHtRFw,0,1,0 +T8IP3Ns3cZCgdyPqt18Cbw,2012-06-17,7LeIXKwsmiHAWsf75jgRbg,4,"My mother located this resturant and wanted to go. I of course, looked at the reviews on yelp and was expecting a lukewarm time wih flavorless food. I went to pepin last night and was pleasantly surprised to find the opposite. There were 3 adults and 1 child in our party. My 2 1/2 yo decided to get cranky the moment we sat down. The place was about 1/2 full. Our waitress came right over to our table and started to take drink orders. My mother didn't like the location of the table so they promptly moved us to a table of her satisfaction. The waitress saw my child was squirmy and offered to get her food out right away which she did. I had the red sangria. It was good but I've had better. My mother had the tiramisu drink that was so strong it knocked her sandles off but it was good. I had the paella which was good and tasty. My mom had lamb which she enjoyed. I forgot what the 3rd party had but he enjoyed his. My baby had chicken fingers and fries which were actually sliced potato and she ate most of it. The entertainment was great! I kept laughing to myself about the other reviewer who said they were intent on driving nails through the floor. Yes they were stomping up a storm but it was great. My baby was so entertained and yelling and clapping. Everyone was entertained by her too. Our bill came to $123 which is not bad for food and entertainment. Oh it was saturday night about 6:15pm",review,cEdFniwKOrG615SUAnGPew,0,1,0 +sb4wU69LkCtC6Axqcd34WQ,2012-03-27,xBHrzYmk2n4qivM9TCOlSw,5,Great food and drink. The traditional margaritas are the best. Sara was our server and she was very knowledgable about the menu and was quite entertaining. The cheese enchilada that I had was one of the best ever.,review,VnVM74-AzIFFz-a-FJNMnQ,0,0,0 +Pj22z5yPSozm_8G1OuzDwg,2009-02-21,l90mgKwJKx35JAMsSBT1fQ,4,"Sadly, another victim of Tempe Marketplace killing Mill Ave --this Z Gallerie location is closing and they're liquidating the inventory. If you've had your eye on something for a while, get your tuchus in there STAT! The entire store is 30% and sale items get an additional 10% as of this week. I got a $149 candelabra I'd been eyeballing for months -- for $40!! It was already on sale at 70% off and they threw in an additional 10% off the sale price. Cannot beat that with a bat!",review,hno-5CTo24tD9YRdglAZ2g,1,1,0 +CC8Gn5h28utxP8i9zGorKQ,2011-06-21,0dHxH81QwPCoNsUSb3JI9w,3,Definitely a solid choice for some quick healthier alternatives. Good Wraps with quality ingredients.,review,EWRc233WIE5wBtldzMuj_A,0,0,0 +R6aazv8FB-6BeanY3ag8kw,2011-05-03,AOWJ-gOMF0A7oBE6KAJsqw,2,"Love the charm of the place. I only wish they had a burger that did not taste as if it were boiled. And yes, I tried this place a couple times wanting to like it.",review,49gP_g_eAFhVvjhWKYB_tg,0,1,1 +RmA5zN-Bs89lsTuY6v8W3Q,2011-01-09,zjFMYLyPombS9qiAbbW5CQ,4,I went here for a birthday party it was a group of 9 and everyone got good service. It was good in taste but more expensive than some of the ones that were closer to me in Mesa. I would go back but only as a group. If you are closer to this place than say Sushi Ave go here you wont be dissappointed.,review,0Jlviq1YD76N-WK_GUeDMw,0,1,0 +8Hn5X1AqgmSLHRG2KgBJBg,2011-11-10,P5G7cGUNEaP1pBN3Vic2IA,4,I have eaten here twice now and this place is phenomenal! Great price and amazing food. I highly recommend the baked ziti! I will go back at least twice a month.,review,1ku7MeWxNp9F1tD7au5SGQ,0,0,0 +0K634ehk41ZRc4kj3NTAEQ,2012-03-18,brz0_RH0PjeOgPg6lazj1g,3,Chicken schnitzel was amazing. Service was slow and server didn't know the menu. Didn't know what a knish was.,review,pt8KIaIl6R9bcvBaDsOusw,0,0,1 +ipfPzCphX5cbfVE4rOUY6Q,2011-02-18,a9QTFqCHNqE7YY4xo-qMbQ,5,"I love this location, and I love this product. + +I think the prices are reasonable considering the quality of product you are getting. If you've only been to the Scottsdale Fashion Square location and hate it, give this one a try. It's got a much better vibe and is a lot less packed. + +Walked right in was helped, she grabbed what I needed and I was off. It took all of 15 minutes even with picking out a totally new foundation then I used before.",review,PuTmcfPDLNUAKo68LmdZOA,1,3,0 +lPtTXn7_VOwqypZs07j2nA,2009-05-07,etX1xc1ewwvl9cQB_8Q7BA,4,"I've been going to this place for years, and they have always stayed true to their own style. The place is a bit shabby, but the food is delicious. Their prices are decent, not too expensive not too cheap. The staff is friendly enough, and if anything ever goes wrong, they have no problem fixing it. + +All in all, a good place to grab a slice of pizza.",review,1IRyTTXa__KRxhxnz8fS5w,0,1,0 +xs1LHeJy78u-7taSEnQ2Yw,2009-04-17,QP1jL_NQytlbWUPQ5yO8Kg,2,"It hurts me to say this, fue to the fact that I love local businesses in my hood and I fully support them, but here is another restaurant that I wish would have been better... + +Good news...More restaurants opening in Downtown, more options especially late night options... + +Bad news...More restaurants opening in Downtown wanting to make a quick buck but does not deliver on food and quality... + +I came here with a couple of friends really excited to try the only sushi restaurant in DT open for dinner. There has been some good review on the place and I wanted to give it a chance...I should have gone north to Hana or Yasu! +Walking in, I noticed the decor was another warehouse looking restaurant trying to be modern...only thing is , its not. From the neon lights under bar to the wood paneling to the tin like tables, chairs, and barstools...its been done 30 times over. I wish it had more character, a little bit more distinctive. We are in the art district. I don't want to walk in a restaurant that looks similar to ones that are already open in the same area? Okay enough with that, the artist in me is rambling again..sorry..back to the ""food"" review. + +Food: The menu to me was a little confusing. For being a Sushi joint, it had so many other things also, mostly stirfry items. I decided to stick to what I came here to try, sushi. I ordered squid salad to start. I should not have ordered that to start. The salad was so salty and it was drowning in dressing...bad start...I then ordered some sashimi including saba, sweet shrimp, and of course my favorite toro. I was a little disappointed that they did not have uni..how can you not have uni! +Saba...not bad... +Sweet Shrimp....foul tasting +Toro.....couldn't even bite through it +A good sushi joint has to have fresh fish...good sushi needs to be executed by a sushi chef with good knife skills...simple as that.. +When your fish is not that fresh and your sushi chef fish slicing techniques are not there, you have a losing combo. + +My friend out of frustration had the head chef make us something...He brought out the geisha roll. +Spicy tuna is not my thing but out of courtesy, we did ask him to pick, I tried it..it was ok, again I am not too keen on chopped up tuna, which in this case tasted like it was food processed. A little too mushy.. + +Drinks: +Beers: Been done. Infused vodkas: Been done Cocktails: Been done. + +Good Points: Nice staff, cool Teapots, and clean restrooms + +All in all, I guess I was hoping for a sushi joint that was more innovative and creative with equally good skills to execute. Maybe I am too harsh. Or maybe I am just saying it how it is...As I left the joint, I felt like I have been to a sushi restaurant like that so many times before... + +Hopefully they will succeed with less critical customers unlike myself..best of luck!!",review,xs_fnNe0hofd7ZOupCjesQ,3,10,2 +yOYFhiTjT-SM4spKtDk92w,2010-01-12,WwejSg_0JSACP3_huRbXGQ,2,"I know... I know... it's Phoenix but I expected something far better. Perhaps my mistake. Located in what looks like an old fast food location this is a no frills, no cart, and no nonsense dim sum experience. Don't think I will be going back (for many reasons) but if you are craving some bao or need a dumpling fix this place will do... just dont expect much.",review,qltgvF9T14PALwgVh2WAmg,0,0,0 +69c7z9ySnlqV87tITDGENA,2010-06-21,PMqNJg0wK8JCpCpC_W12Bg,5,"This place is as good as I'd heard. We came here for a day-late birthday dinner for my middle daughter/Father's Day dinner for her husband. She and his six-year old daughter ordered a Hawaiian style with pineapple and ham, he and I got the Margherita Pizza with garlic, tomatoes, olive oil, fresh basil, mozzarella, and romano cheese. Both were so delicious! He also got some chicken wings which were tender and juicy and not spicy at all, dipped in either of two great sauces, ranch or marinara. The pizza's were about $13 each for the larges. I usually have no problem quitting after two slices but the flavor squishing around in my mouth was so good I couldn't resist taking a third piece at this place. + +The decor was pretty and the service was great--the server checked back several times to see if we were doing okay or needed anything. + + I would definitely be a regular if I lived near here. + + +On a side note, next door is the Aloha Kitchen which we had eaten at about a week ago and was also very good! + +62010",review,TQ5eVGOFr_qB5_BbEd3Sow,2,3,0 +nl5ifGmOQMw-MlMO_tdnbg,2009-09-04,DnNbzD5N2qSlZzkc4btL2g,4,"I am a shoe addict. I also appreciate a good bargain. Whenever I am bored and have a little time on my hands, I like to take a walk through DSW. I think it is kind of like playing ""dress up"". You can try on anything and everything. Such fun! This location is one of the better ones I have visited. It is well-organized, and the stock turns over regularly. It is one of those hit or miss places - I will either leave with nothing or with an obnoxious amount of new footwear. You just never know. It has a fairly large clearance section as well - if you have the patience to look, bargains can often be found. Definitely sign up for their rewards program - you will receive coupons regularly - yay! + +Happy hunting!",review,n9Zg0jlOGtxfIrvoPm6Hhw,3,3,1 +Y-9dJvw-J2d9QKfuL7mKgA,2011-12-30,qwOB8mqoE63FrnbwZpUCMw,4,Fun place for breakfast. Prices were reasonable and food was good.,review,9guDqgAz5IRYYXa0ByTVEQ,0,1,0 +Xobu8FzHN0KUm5Lw3swypA,2010-11-17,0LoLY69MxWPffGYuXGXKcQ,3,"I can't comment on the donuts (which is pretty ridiculous seeing as that's the main draw here), but I was satisfied with the boba smoothies. They're definitely not anywhere close to being great, but for someone who's not picky about boba, they're really refreshing. The boba itself was kind of mediocre, but it had a good flavour and wasn't too sweet. I got a taro smoothie and a honeydew smoothie. +The honeydew tasted surprisingly good for being from a powdered mix, it was just like drinking a fresh honeydew melon. The taro was even better, although the drinks were a bit too icy for me. They were a lot better after I let the ice melt a bit, but who wants to wait?",review,AKNRJ5YuUVixrj6P-ORofg,0,0,0 +9VZ_imQjvgtpt3k6W6AQ_A,2009-01-06,aa5hKJwkYiTJwQ7mWHTPdw,3,"Singray is pretty good. The location is nice but there is never parking due to the other businesses around. Not fun walking so far in heels. :) The sashimi was pretty fresh, but miso was a little too salty. Also they gave us cold oshibori towels when we sat at the sushi bar. I think I prefer the new Pure Sushi location next to AZ88. Once I was able to find it. Very modern cool feel and awesome food. Heard Stingray is opening another location by my house. (Biltmore area) Maybe parking will be better.",review,3mdjLGhT9zfwXHkcJdWx6g,1,2,1 +yTVafrqgxkWrtUqr5yEg8Q,2010-12-14,qEiGnUUGu6qr_LY1G9uBfQ,5,"Let me begin by telling you about my horribly debilitating fear of going to the dentist. It's epic. Weeks before an appointment I start having nightmares. Thinking about sitting in the dental chair makes me break out in a cold sweat. I require nitris oxide for a simple cleaning. The sound of the drill is enough to make me want to claw my face off. Basically, every visit has been the worst experience ever for the past 30 years.... + +Enter Dr. Marcia Blazer. I read about her online when searching for a local dentist here in Scottsdale. I literally googled ""dentists for anxious patients"", and her name popped up. Her website appeared too good to be true. They offered nitris (plus), offered non invasive options for dental procedures (double plus), and offered a staff used to accomodating those with a healthy dose of dental fear. + +I went in for my first visit (a cleaning and exam), and I was amazed at how comfortable they made me feel. They were warm and friendly, and put me at ease immediately. During the cleaning, my least favorite part is always when they use the scrapy,pointy torture device to stab off all the plaque at the gumline. How happy was I when they used an air abrasion tool instead...felt like a cool stream of water on your teeth, and BAM, they're clean! They were so calming, that when I was informed that I had 2 cavities, I didn't even have a panic attack at the thought of coming in. + +Fast forward two weeks to my filling appointment. I had requested nitris (hey, I was feeling better but still SUPER anxious), which they had all set up in the room for me when I walked in. Now here's my favorite part. As I sat in the chair, the assistant brought over two big boxes full of dvd's and asked me what movie I would like to watch during the procedure...What?? So I picked a lighthearted comedy (50 First Dates). I was then given noise eliminating headphones to use (goodbye horrible drilling sound), nitris (hello happy gas), and a few hand signals to recognize if I was supposed to open or close my mouth. And we were off! She didn't try to maintain conversation (soooo annoying when dentists do that), and before I knew it she was done and I was disappointed because my movie wasn't quite over! I was even told that had my dentist not needed the room I was in for another patient, that I would have been welcome to stay and just finish the movie! + +I have had several interactions with this office since then (regarding billing and follow up), and every time it is a pleasure to deal with them. I highly recommend this office to anyone!",review,zqnAdayPsak5dbLF2gEvNw,0,2,0 +3n9mSKySEv3G03YjcU-YOQ,2012-10-01,T3OCXrViDxuhqLyQ_TgLKw,4,"I love their bruschetta. I get weird cravings for it and have to eat it at least once a month. I've always had friendly servers, although they can be slow with getting the food out. I was here last Saturday morning and the man next to me walked out without eating because first his order got lost and never sent to the kitchen. then when they finally took his order they still made him wait a long time for his food. that was probably just a mistake all around, but I felt bad for the guy.",review,wUEp87FqOB9ew27Iz6zk_w,0,0,0 +Re0Xw-AYkn6NK7QRk3kPEg,2007-05-10,GlidDdgzwCgcBbx_BcK-Hw,5,"Stinkweeds shaped my formative years. Really. + +I started shopping at the (now gone) Tempe location when I was 15. I had a few older friends into independent music who introduced me to this record store. I begged my parents for rides and, when that wasn't happening, hopped on the bus for the hour-long trek. Totally worth it. 100%. I can't tell you how many awesome bands I began listening to just because I would browse the selection endlessly for something that looked interesting. If I needed something specifically, Stinkweeds would order it for me if they didn't already have it in stock. The staff was always welcoming and helpful, sometimes offering their own suggestions. + +But it's just a record store, right? Wrong. Stinkweeds is the jewel of Phoenix, as far as I am concerned. Now that it's out in central Phoenix, I make it in far less. Total bummer!",review,kDJ9PRlYugp5RIa9ontPZg,4,3,1 +Qc-WTMIjVPv2qkL6q-Cnhw,2011-07-07,-lWfCerRUNTC7wkhsURj4A,5,"Three cheers to Yelp for helping me find where in the Valley to go for real beef jerky! The fresh stuff which has more beef than chemicals. (The convenience store packages just were not doing it for me!) After checking out the website, I emailed good friends in Las Vegas (who used to live in Minnesota), asking if they were familiar with Von Hanson's. (They have 21 locations in Minnesota - and ONE in Chandler.) + +My roommate and I went on July 2. They were running a special for NY strips - buy one, get one free - so that was added to the plan in addition to the jerky.SCORE! We picked up a half pound each of the peppered jerky and the cajun spicy. $18/lb. The NY strips were (if memory serves...) $14.99/lb, and the steaks were averaging a little over 3/4 lb - so super yay for the BOGO sale - it brought the meat down to regular grocery prices. I have to say - the quality of the meat is amazing! Just looking at the cuts in the display case, I can declare Von Hanson's makes AJ's look like Fry's! These were GORGEOUS! Quite possibly the prettiest steaks I've ever seen!I also grabbed a couple pigs ears for my dog, and the roommate picked up a package of her favorite kind of sausage (linguisa). + +Admittedly, I am not a sausage expert. Plus, I live very close to Schreiner's - so while I would have no problem buying sausage from Von Hanson's, I wouldn't make the hike to Chandler just for those. The selection was quite impressive, though! + +Overall - this place has everything for carnivorial happiness! (Hey - if you understood the context, it's a word, right?) Great selection of beef, chicken and pork products. Tons of spices, sauces, rubs and marinades. Nice selection of unique beer and wines. Fridge and freezer cases with more meats, sides, and desserts! Yes, it's pricey - but the quality is certainly there to justify it. + +Once home, we grilled up the steaks using our favorite rub. OMG amazing meat! Probably the best steak I've had in YEARS - and NY strip isn't even my cut of choice! + +The peppered beef jerky is full of YUM - and this is so strange to write - but the Cajun is a bit spicy for my taste. (And I adore spicy!) It's amazingly good, and addictive - but almost requires a cold beer to go along with it to help cut the heat. + +The Vegas via Minnesota friends emailed back Monday - they know Von Hanson's quite well - and are grateful there isn't one in Vegas - it would KILL the weekly grocery budget with how often they'd be in! They love, love, LOVE the place - and I am now under strict orders to bring them care packages from here whenever I come up to visit! + +Oh - and Layla (my pooch) was pretty stoked about the pig ears - so in addition to my five stars, please add two paws up! (I didn't tell her they have a whole dog food and treat section - I am on a budget, after all!)",review,45V7-1r79DEG0HbuaKYIlg,2,1,2 +YQ19y3LYgmAHfgNFa01vyA,2010-10-31,SGu1-pHnumdLlO6df4mr5g,4,"Truly a great place! + +The flights are FANTASTIC! The food great! +Service also great! + +Try this place! --- Seriously the fewer words to describe the greatness the better.",review,WgdgOlb-OIwKxb1p4xWwRA,0,1,0 +6rijZ1qIjiq1Dgdy35iqxw,2010-05-01,YuThK1S6ESo5nWRcAMXcLw,5,How could you write a bad review about a mountain? Great sight to see.,review,YoiAnDZ_JPdi8Ixnn8vKMg,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-12-27,XCZd6irKJ9pMmMjBCFWJtw,4,"We stayed at the Sheraton downtown and Matt's was a short walk. Definitely worth the walk, and it helped to justify eating such a large breakfast. There is probably something there that is not very good, but we did not find it. When you get there, make sure you check in with the person running the register",review,-jTC2CzyExvwluqo0RfD5A,0,0,0 +ics35glmd7JXtY3qrq3jxw,2010-01-14,lO1hTfhz7kSuqncwEYF5RA,4,"Prefer this place over other ""clothing exchanges"" in the area. + +Friendly staff...store is usually pretty quiet when I go in which is nice as I cannot stand crowds! Mens selection is a little skimpy .. however when I go there it's usually just to sell. On that note, they pay you 5% more of the retail value of any of your clothing than Buffalo does! + +And, it's always nice to be able to support local businesses!",review,YavFbDG7DUOTXJBLxpq97A,0,3,0 +XxE8YV18K6Cb7uvQLN3XZQ,2009-01-21,U3MSRT6I3oWBOUZFmlPNkw,5,"Business takes me out to Mesa yesterday. After chatting with a friend about possible lunch locations, he tells me about Georges Gyros, near University and Country Club. I decide to give it a try, as it isn't too far from my destination. Situated right next door to Sun Devil Liquors, I'm surprised I hadn't been there before, or, for that matter, even noticed it. I guess when I hit SDL, I've got tunnel vision. First thing I notice is there appears to be plenty of parking, even at 12:30, for lunch. Outer patio, stuck out into the parking lot, not overly appealing, might be nicer in the evening, I guess? The interior is clean, plenty of seating, a small bar at one end, and a counter from which you place your order. Never having been before, I ask the counter-person for a recommendation. ""What's good?"" He suggests the Original Gyro, served with fries or a greek salad. Sounds good, I'll take it with fries. With drink, under $9. A few moments later (actually, I saw three other tables get served, so it seemed like a longish wait), a ginormous gyro arrives, with a huge helping of fries. The gyro was huge, overflowing with, umm, meat, gyro meat, I guess, white onions, diced tomatoes and cucumber sauce (Tzatziki, I think). The meat was well cooked, artfully shaved, and tender. The sauce was also very good. The pita? Warm, soft and tasty. The fries? Crisp and golden brown, and piping hot, about 3-4 times the size of Mickie D's or about 1/2 a 'steak fry'. I was very impressed with the quality of the food, the cleanliness of the dining area, and the presence of a bar. Most folks were eating gyros, or good sized greek salads. Other items on the menu include several different gyros, burgers, sandwiches, a decent selection of pasta dishes and all kinds of Greek and non-Greek appetizers. I plan on coming back, perhaps before a foray into Sun Devil Liquors...",review,PzTP2RCSdBrZLbaxXgZ3kA,0,0,0 +6HAwTnhNJoR5VNdfUrRoEw,2011-04-13,lj_cm_MfchWv8Rxyg_3CMg,2,"Bleh! + +I've heard good things about this place from my sister's friends (notice, I didn't say ""my"" friends) and I've always been curious. Errand days are kinda ho-hum anyway, so I was excited to finally check this place out. The reason I order a doughnut that is stripped off glaze and topping is that I'd like to taste the actual product. + +Two doughnuts for my little guy and me for $1.60. As the girl handed me the paper bag I was extra careful handling it for nothing. Cold doughnuts? Am I just so used to piping hot beignets? Right off the first bite, I could feel the cheap hydrogenated oils coating the roof of my mouth. Then the second bite, the feeling is now in my throat. Eeek! I asked my son what he thought. ""It's okay,"" he stared at the doughnut and looked up at me. I grab his doughnut and along with mine threw both in the paper bag it came with and chucked it. Honestly, it would have been better to fry these sinful things in lard. There is something about chemically laden food that I despise most! + +Would I give it a second chance? Not until they change their frying oil! + +Sorry, Bosa. One star is for the nice service and the other star is for being a local chain.",review,c3yJNjz_K--z4CIpR7yhvQ,2,3,3 +8FNO4D3eozpIjj0k3q5Zbg,2007-12-16,kirVIzvZz1aAlH1-ERxr6w,3,"I used to frequent this restaurant years and years ago. I was a student at the Deer Valley airport, and eventually a flight instructor as well. It was a great location with awesome views. The food was always descent the the service was great. + +Nothing too exciting, but a great place.",review,UE1UIi95jSk5tAzOdtnjIA,0,1,0 +7YYD_agS3Kb2sAx9JPkQEw,2010-11-03,8dK4ZrPWHYLkg8McqSJXvA,5,"YOWZA! I love this place. I had heard great things about this place before and actually received some of the olives and olive oil as a gift last year. I decided to take my mom and try it out for lunch. The food was pretty good, but the best thing for me is that they have Cerignola olives! This was music to my ears when they told me they had them. I have been looking everywhere, checking every grocery store, gourmet shop in Chandler and Tucson and nobody has them. I can't wait to go back and try the rest of their menu! Oh and expect a little off roading, the parking lot is loose gravel :)",review,Qgupxwm_bHehtat82fvtog,0,0,0 +5oCm7qtm-e2hgJluCxhO-A,2010-01-21,8varrFq44hjiwfRVAC8dZg,4,"First of all note the name changed to AMF Scottsdale Lanes. + +Hey it doesn't smell! Its a nice bowling alley and I can imagine spending a few hours here like I did tonight with my Phoenix Fabulous Forty Women's Club. + +The bar is very nice for a bowling alley. They even have a pool table! +They serve decent food and cold drinks to your lanes with waiter service. + +All the lanes, screens and scoring boards are new, clean and state of the art. There's no old smelly gross carpet to be avoided either, which is classic of bowling alleys I have been in! + +Prices for rental equipment and lane use is average cost. + +I had a great time and will definitely return to enjoy the faculties again and again. + +Oh and the staff were so nice and professional also!",review,-9mljS0O9mwdOnGv-Oea3Q,1,1,1 +-dz2h55a0SdnBJEXQm9CAQ,2012-08-01,mDDw5KvbJbkMWEUsrKy37A,5,"Let me preface this story with the fact that it was not my little guy who I had to take in. I am dog sitting my friend's dog. They are on vacation. Dr. Alber and his amazing staff were unbelievable. I called at 5:15. They got me in at 5:30. Dr. Alber spent 40 minutes with me. Explained everything to me thoroughly. Little Rusty just has allergies and an eye infection but it was making him miserable. Dr. Alber gave me a plan of attack to care for it. EXTREMELY COST EFFECTIVE. $70 out the door, RX in hand and a tube of eye drops. I am in awe. I will recommend this clinic to everyone I know. I just cannot say enough good things about these lovely people. THANK YOU PRESTIGE ANIMAL CLINIC. YOU ROCK!!!!!!! I will now be taking my own little guy there. You guys are now the only vet I will ever use.",review,6prHhofQ3sLSNHJRYUat-Q,0,0,0 +xqwIJpLhzk960kd94M8gRg,2011-02-22,-bHRpYfgPu8BX_9DycVutA,3,"Over-priced for the size of the facility and equipment available. The staff is friendly enough, and seeing as how its the closest 24 hour fitness place in this neighborhood, i suppose they get away with the price :)",review,0VNNqpD687meEu70X5knNw,0,1,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-07-21,YdWJwWIM6w1_YHUAWwkE3w,3,"I love burgers and really wanted to love The Grind, but it wasn't meant to be. Unfortunately I had problems with the temperatures, both the restaurant and the food. + +I was here with my girlfriend on a Tuesday night. The restaurant itself is nicely appointed, with a sleek, modern look and feel. It was pretty close to full, but staff were still friendly and efficient. + +The $5/glass wine special they were running was very nice. I has the peppercorn burger with sweet potato fritters. The fritters were very nice, crunch without being greasy, and not overly sweet. The burger was nicely composed with great toppings and flavors - the watercress in particular stood out. Unfortunately, the burger was also well, well done, and I had ordered medium. I should have sent it back, but was hungry and didn't want to wait. For a burger joint missing a temperature on a burger is pretty disappointing and it killed a lot of the goodwill the rest of the ingredients had built up. + +The bread pudding for desert wasn't the best I've ever had, but was nice and the bourbon sauce it came with was a nice touch. + +The other issue I had with The Grind is the temp inside the restaurant. I'll grant that these are the dog days of summer right now, and I'm sure it's hard to keep the place cool with the half open kitchen, but was pretty warm in there. + +With the wine special it was ok value for the money I guess. But on a normal night with $10-12/glass for wine and $10 for a burger with another $4 for fries it's too pricey for my tastes, especially if they aren't hitting proper temps on the burgers every time.",review,DnSDTBU1wZZXLNSw5eQbjg,0,0,0 +tZXPhvufHhfejGrRp554Lg,2010-05-18,wIy0qJII5phwUXqedeKFyA,5,"Where I had the most delicious thing I ever put in my mouth. + +This is a favorite of me and my friends, especially for sunday morning brunch. I would say we go at least one time a week. Their Quiche (especially the Goat cheese, caramelized onions, and wallnuts) is the best you will ever have and their salad dressing (which is made in house) is equally delicious. The most delicious thing I have ever eaten in my whole life was actually a rose macaroon. I have never had an emotional reaction to a food item before but I swear I almost cried and had flashbacks of my childhood being at the botanical gardens. Any way, if you haven't been here you HAVE to go. Its one of Arizona's few authentic cultural treasures.",review,E54TO3WE5HZ6zDKP8gFIgQ,0,0,0 +cdwHgELA2puX2DNfwSt5EA,2010-02-11,IlHZnUkUGWQk3j0vYcMydg,4,"The new, old El Chorro Lodge has been reopened for all of two days, and a friend of a friend managed to secure a reservation during their soft opening, so I got an opportunity to check it out. I was impressed, but not blown away. Everything I tasted was quite competent, but if I had to choose a word to describe the menu, I would suggest ""staid."" Perhaps even ""stodgy,"" but that may be more harsh than I intend. + +Review the dinner menu. http://bit.ly/aWqVVJ. There, see what I mean? Replete with Traditional American entrees and sides, at what I would consider fairly exorbitant prices. I would say that I wouldn't go back to eat this food at these prices, unless someone else was paying. + +I should note that a big part of why I wasn't impressed is because this place is simply not my style. The wait staff, attired in khakis and blue shirts, was a little too informal for the prices we were paying, I felt. The menu options were a little boring for my taste. The cocktail menu is exactly not what I'm looking for these days, although I will be very interested to see what Happy Hour looks like. The decor is a tad heavy on the Old Southwest theme, although to be fair, this place not only pulls it off rather stylishly but also is among the most authentically old and southwestern establishments in the Phoenix metro area. + +The patio and open bar are fantastic. The bar area is considerable, and the patio is palatial - up above Lincoln Dr enough to be fairly quiet, with a gorgeous view of Camelback, sunset here must be incredible. + +Anyway, back to the food. Everything was very well executed, from the sticky buns we were served upon being seated to the desserts we ordered. I chose the soup of the day to start, a tomato/basil concoction that was quite hearty and thoroughly enjoyed it. The salads my dining companions ate looked boring to me, but they all claimed them to be excellent, with ""the best Caesar dressing ever"" and ""polenta croutons?!?"" being the verdict for the Caesar salad, at least. On to the entrees. I ordered the crispy duck, which I found to be delicious and quite hearty, though not what I would call crispy by any means. It was a very sizable portion, and very well prepared. My dining companions ordered the pork chop, the lamb, and the salmon, and we each sampled from each other's plates. I would try the lamb if I went back, but the consensus seemed to be that everything was very well prepared, with the duck being a winner. It was served with a heap of mushy sweet potatoes (just like my mom makes at Thanksgiving - delicious!) and red cabbage, which I sampled and declined to finish. Again, not quite my style. + +We moved on to dessert - sticky bread pudding with a bourbon glaze and the warm chocolate cake. The bread pudding was a winner at the first two or three bites, but grew one-dimensional as I continued nibbling at it. The chocolate cake was decadent, among the best I've ever tasted. It was clearly made with a considerable amount of dark chocolate, which seals the deal for me. And in case you were wondering, my dining companions apparently have no stamina when it comes to dessert. Suckers. + +Anyway, as I've said now several times, this place is just not quite me. It's totally classy and very high in quality, but not quite adventurous enough for my taste. I'd love to come back for brunch, and once they unveil their happy hour menu, I'm sure I'll be back to check it out, but I won't be back for dinner unless I can convince someone else to pick up the check at the end of the evening. + +As a side note, this place is so very Paradise Valley. It's a welcome relief knowing that there is a place that is so anti-scene out there. It's been a little while since I've been both the youngest and among the poorest in a room, and I will say it was a little comforting. Just don't tell the Scottsdale people about this place, and we'll all be happy.",review,MUHoBFzwRoXpCpgYSN8KRA,14,18,9 +lEUsYkm-IHF8_hJTAJDjHw,2012-11-14,LhkAHj7CAv6XGvr1tYX9aQ,5,"Gosh Darn It! They had to be good. I was hoping, since they are so close to my home and right next to where I shop for groceries most often (Fresh & Easy), that they'd be horrible. Then I'd never have to go again... But, alas...too good to not go back, that's for sure! + +I've said it before, I'll say it again: if you don't like a lot of frosting, just wipe off the portion you don't want. Heck, if you're sitting next to me and my kids, they'll eat it for you!! + +I didn't think I was much of an frosting fan either so I wiped off most from the Chocolate Chip Caramel, only to find that the milk chocolate frosting covered with a caramel drizzle was UH-MAZING! Scraped that heap right back in my mouth where it belongs! Yum. Equally impressive it the dense, moist cake (as opposed to light and fluffy texture; these puppies are HEAVY). The White Chocolate Raspberry was chock-full of white chocolate chips and the frosting was not too sweet. It was the prettiest one as well, with white sprinkles and raspberry sauce drizzle. Thoroughly enjoyed the two other chocolate selections (Texas Milk Chocolate & Midnight Magic) as well--Yes! I had four, but only cut them in half so I could save the rest for (my husband) later. + +Bonus points for presentation (the box is adorable) and variety.",review,SAAMpBGcVVNAww_4yZpIoA,0,0,0 +MwmXm48K2g2oTRe7XmssFw,2008-04-12,wAotgO0GaKmp2FMfnaWrlg,3,"The Arizona Science Center offers a series of programs called adult's night out which are held the first Friday of every month. These lectures cover focused overviews on topics ranging from Genetics and Nanotechnology to Native American medicinal utilization of native plants found in the Southwest. + +There is always interesting science or engineering content but the value and interest of the talks is essentially the somewhat direct non-mass-media poisoned or dumbed down views of the individual speakers themselves. While I would attend the talks regardless I have found additional value in the evening because of the extended hours that the science center offers which allows you to catch an IMAX film and see the latest flavor of exhibit (Body Worlds, Titanic, etc.) after the lecture. + +I would have loved to have given the Science Center 4 stars but I am constantly annoyed by the science center's staff inability to get one of the three microphones set up correct for the speakers ahead of time causing a speaker to waste 5-10 minutes every month. + +Beer and wine are available for purchase during the event. The adult's night out lectures are free, normal planetarium, IMAX, and special exhibit prices still apply. + +Arizona Science Center Web Site: +www.azscience.org + +Adult's Night Out: +www.azscience.org/adults_night_out.php",review,eatsTYGR2CNM-Huxgm_TVw,4,3,0 +Bc4DoKgrKCtCuN-0O5He3A,2009-08-11,mKHCbsaynfvACFLL3Nz05A,5,This place is an experience. I can't stop thinking about it!!! I love the weird odd flavors (Basil Lime?) and everything tastes so fresh and organic. It's nice to have something like this close by our house! A true guilty pleasure.,review,BA0RTaT7_W1Xs_orzBpZ1A,0,0,0 +Az69nueCy94SVKkWaNNR0Q,2011-10-02,YK17hh1CjpA-GoiH7VlnXg,5,Being from Sweden you just like salmon and at Le Chalet you can get a delicous Nordique Crepe with salmon! Never had anything like that in Sweden! Besides the great crepe and friendly service from the owner Alain Keller I was also treated to a laughing experience. They have a comedy show twice a month. Great place to eat and have a nice relaxed evening!,review,J76z7gzmpM9B766vmRRukA,2,5,1 +RShrvt5oIS40FrcX6bCHSg,2012-07-06,M4u_KOB3oSUJgWXJq4VKlQ,1,Very nice location but food was awful. Had a chicken salad yuck. Service stunk big time!,review,ioTLeBk0Kw7H95g-rtzXrQ,0,0,0 +2TWGIhh6y-f9fe-Q6kySGQ,2009-10-27,SkO0tzjC5Xyt4ZzMC9XS9w,5,"This is a quaint little airport which is very convenient if you are travelling to the Tempe/Mesa area, or already know people who live there. I say it's convenient-- if you are flying in from Grand Island or Grand Forks or Rapid City or East Bugtussel, since the only commercial tenant at this decomissioned air force base is Allegiant Airlines, which specializes in flying you from nowhere to somewhere (Phoenix, Las Vegas, Orlando that sort of thing). + +But from landing to sitting in my rental car it was maybe 20 minutes tops and I was heading out to lunch in the Phoenix area (don't bother with purchasing the ""snacks"" on the flight, just make sure you are prepared beforehand).",review,dny_S2iY4Wp2SisZzbZ7RQ,1,3,0 +wNUea3IXZWD63bbOQaOH-g,2010-09-22,av5WbNQBNJABxaq8p5AM6Q,4,"Post-annual-review day, I wanted to treat myself to a baller lunch, so Stingray at the Biltmore (BFP) came to mind! And it was a superb first impression! + +If you are not accustom to the map of BFP, its located walking distance from the epicenter of everything, but its worth the little cardio! + +After stepping through some remodeling projects around BFP, I finally arrived to an artistic, grand entrance. And what I mean is you are fronted by a very tall, Japanese inspired wooden door with modern trimming. So far so good! =) + +I open up and was greeted immediately by the Host and was offered to sit either at the swanky bar/lounge section or the contemporary, bamboo decor dining area. I chose bamboo for the lounge seating. + +After being seated, I noticed a nice feng shui touch they had was placing a bamboo plant centerpiece next to a little pouring jar of soy sauce and a warm cloth they brought out to cleanse your hands with! What a great lunch so far and I haven't even talked about the food yet! =) + +As always, beverage comes first and I decided on a cool refreshing mango ice tea! C'est bon! It had the right balance, not too much tea and not too much mango! Some places is really awful in trying to get the right balance! + +So after spending a good 5 minutes and another 5 minutes and asking the waiter what is popular and not too filling, I opted for the Yakinuku, which is thinly sliced, NY strip steak with sauteed veggies drizzled with seasoned soy sauce. I was content with my selection--now the waiting. At this point I thought I gaze around and started to take mental notes on the high-end wall decorations and I mean HIGH-END! Time elapsed and my food arrived. The presentation was just as good as everything else around me. This place was on a roll! + +Before I dipped my chopsticks in to my glorious protein dish, I had to take a quick snap for my Facebook upload. And finally, I went in for the kill! Très délicieux! It tasted great as much as it smelt great! BTW, it came with a side of white rice (not sure if brown is an option--didn't ask). I thought the meat was cooked to a tender perfection with the right amount of vegetables topped with very flavorful sauce. It filled me up just right. + +I typically do not order dessert, but because I actually had room to spare and this place was on roll like a hot craps game, I decided to order their green tea ice cream! All I can is, perfect, as expected. I've had this before at other places and its either just as good or a little better. + +What can I say? Stingray hit a home run for a great lunch escape from the office. I plan on doing it again!",review,hjJPKQ1Ah91h3fVbc8GsOg,0,1,1 +OFBJtqWGSx6n6CchtVmoRw,2009-09-16,gvX0icZWc-YFMtoe9u193A,4,"""If the melting pot exists, the cheeseburger may well be its most palpable product; to take a bite of it is to take a bite of history..."" + +-Elizabeth Rozin, Primal Cheeseburger + +Who could argue with that statement? Checked out Delux Burger today; Delux is a burger joint that gets some serious buzz and numerous Best Burger awards from the local media. They are also a late night favorite since they serve food until 2 AM. This gives them street credit in my opinion. + +The mystery dining companion, otherwise known as L. joined me for this burger excursion this evening; we arrived around 10:00 PM for a late supper. The seating is a bit cramped in the dining room and the patio. The Delux menu is very nicely limited, meeting my personal rule for just do what you do best. We both ordered the signature entree, the ""Delux Burger""($9.5), starring a half-pound of freshly ground Harris Ranch beef; supporting cast includes a toasted demi baguette topped with Maytag and Gruyère cheeses, sweet caramelized onions, applewood smoked bacon and organic arugula. We also ordered the Combination Fries ""a la cart"" ($6) which came out before the Burgers. The fries were fantastic! They were served in a mini shopping cart (making them easy to share) and included french and sweet potato fries. Two sauces were also included with the fries, a standard ketchup and a house aioli which resembled a thousand island type sauce with some kick. + +The burgers came out shortly after the fries. They were impressive looking before we took the first bite - robust in size and the beef was perfectly cooked. Delux recommends to order their burgers at medium rare allowing them to showcase the juiciness of the beef; L. and I ordered our burgers medium and they were prepared perfectly. As we bit into these works of art, the beefy goodness oozed wonderful flavor onto our palate. The beef truly is the star of this show, however supporting cast complements it nicely without taking away from the magnificent flavor of the beef. This burger really hit the spot. + +I was able to command and conquer this burger, however L. was only able to master one half and took the other half home. Adam from Man Vs. Food would have been so disappointed with her. A few other good factors that Delux offers: Good service, fantastic beer selection, which are primarily microbrews from across the country, and reasonable prices. If Delux has a weakness, it's an atmosphere that's a bit trendy and possibly even slightly pretentious, but the burgers are so good that it's overruled. + +Overall, a fantastic experience... and another bite into burger history.",review,7tA04v45dzG8tADZGLrCzA,0,0,0 +xm8F51qKjx0cfdOSukTDng,2012-08-19,vDY6om5zK61q4RRy9ugTxg,4,"I've not stayed at this resort, but have been here twice; once for a wedding and the other for a Lunch & Learn event. Valet service each time was quick and the guys were professional and pleasant. The grounds of the resort are kept meticulously clean and there were clear skies and greenery everywhere I looked; so beautiful. + +Lunch & Learn (Aug 18th): + +The event started a little past noon and ended a little past 3pm. We reserved for six, but it's based on a first come, first served basis. Two of us arrived a little after 11:30am and after paying our respective $75 fee, went to find a table that would afford us good views of the chef's station. Unfortunately the best tables (with direct views of the chef's station) had ""Reserved"" placards on them, so we ended up with one off to the right of the chef's station. I would recommend arriving early to grab good seats; tables are set for ten. There are two large TV screens in the room, in case you're not able to see the chef directly. + +Our event was hosted by Chef MacMillan (gave the guests a few good laughs), with featured guest chef Kevin Binkley (owner of Binkley's Restaurant in Cave Creek). The servers weren't obtrusive and kept our water and wine glasses full. + +We started off with a glass of champagne, which wasn't great, but was appreciated and added to the festive ambiance. For this event, we were served three courses: an appetizer (chilled cucumber soup), entrée (two-wash ranch chicken), and dessert (huckleberry semi-fredo). Each course was paired with a different glass of wine: John Anthony Sauvignon Blanc (white, appetizer), Andre Brunel Cote du Rhone (red, entrée), and Pietro Rinaldi Moscato d'asti (dessert). I'm not usually a fan of Sauvignon Blanc (I favor Riesling), but the John Anthony won me over. + +Chef Binkley went over his background and demonstrated the process that goes with making the chilled cucumber soup (which is quite involved). The soup, albeit a bit salty, was SO good. Everyone raved about it, and the best part of the dish for me was the charred red onion. The two-wash ranch chicken entrée was good overall; however, my chicken was a bit dry and tough to cut. This might be a one-off thing since others at the table said their chicken was moist. Loved the sweet potato puree and Chantrell mushrooms. The only real complaint I had was the lack of a demo for the entree and dessert. With that said, I can understand why the chef needed to be in the kitchen...after all, we needed to eat, right? ;P + +Other highlights: +* Live band entertained with great hits (a bit loud though for lunchtime) +* Recipes to take home +* Q & A with the chef (and photo ops) +* Raffles for a few prizes, which two of my friends won (a gift box of caramel brownies and one-night stay at the Sanctuary with dinner) + +Wedding (Friday, March 23rd): + +The ceremony was held at 5pm on the grounds near the ballroom. The weather was a bit warm, but not unbearably so. The bride and groom were beautiful (so was the service), but it was a bit distracting to see people observing us from the windows of the Jade Bar, which overlooked the grounds where the ceremony was held. + +After the ceremony, we took a short hike up the stairs for cocktail hour, held just outside the ballroom. It was such a beautiful experience to have a glass of wine, nibble on hors d'oeuvres, chat with friends, and watch the sun go down (with the mountains as a backdrop). + +The reception was held in the ballroom and was decorated beautifully. The food was great, the wine and alcohol was flowing, and the live (Latin) band made for a great evening. My friend used Sanctuary's wedding planner (and caterer) and they did a great job.",review,AWcwYAZyqZOheTNEwdAF8A,0,0,0 +gWQlTK3o29rZGlw2YLUnhA,2008-06-16,yrpGtY09WTcAn95EMjuZ9A,4,"This place looks cool inside and has a fun vibe. + +First the downsides: menu can actually be a little overwhelming, you get the impression the staff is overworked/crazy busy (how long does it take to make tea?) to the point where if there are more than four people ahead of you in line, you want to shoot yourself. Unless you have nowhere to be, ever. + +Upsides: huge selection, fairly helpful staff (paralyzing indecision? that's what they're there for), ambiance, coolness factor. + +I need to try the food here.",review,MUHoBFzwRoXpCpgYSN8KRA,2,3,3 +OE5nAmaSVaopeRS1Cs9Kuw,2011-04-26,qF54d25t_KIcrgef4VLBZw,4,"I came to this place for my birthday celebration with my fiance and another couple. I was definitely in a good mood. + +THE FOOD + +First, the salad bar. I am not much of a veggie lover, but the selection here is impressive, especially in light of this being a place where you eat the cow, not the cow's food. Besides a variety of veggies and dressings, you have a few cold cut meats, cheeses and smoked salmon to select from. From personal experience, tomatoes are good, all cheeses and meats are too. Salmon was simply delicious. + +For the main course, it's all sorts of meat, mostly varieties of beef plus lamb and chicken. I liked all of them, but most of the beef was a salty to my taste (hence the loss of a star). Some of it can be explained by my getting the first cut off the meat several times, which meant that I got the salt seasoning in addition to the salt in the meat. That aside, the meat is high quality and the main objective here is to remember not to get too much too soon, so you can enjoy everything the place has to offer. + +Sides were small (as they should be) and included polenta, mashed potatoes and fried bananas. All good. + +The wine selection is extensive and from our limited tasting, quite good. We had Cabernet and malbec. + +SETTING +This is a rather large stand alone restaurant, but has surprisingly personal feeling, especially if you consider the amount of staff running around. It is not too brightly lit and has generally darker tones to the interior. There is also a cozy bar to the side of the main entrance that is a pleasant place to wait for others to arrive. + +SERVICE +Attentive and not at all pushy. + +OVERALL +I came here in a good mood and left in an even better mood and feeling like a python after eating a cow. Which was close enough to true amount of food in me. Highly recommend this both for the experience and the food itself.",review,LmCkhilB78gPm8uIU5nCWQ,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2010-02-26,-OmDE81MMdn6HKxRovYZmg,4,"I've only hiked Camelback once, but I felt so accomplished (albeit winded, and mere minutes away from passing out). + +We started the hike at 6 in the morning, and got to watch the sunrise while we made our way up the trail. I thought it wasn't going to be a bad hike, but things get tougher about two-thirds up. Things starting getting vertical at some points, and I wasn't really prepared for that. + +It was totally worth it once we got to the top, though - gorgeous, 360 view of the Phoenix metro area (and really, much more than that). And watching the sunrise with someone special is pretty awesome too.",review,3NwAgpjNFe7SnYgVuGElWg,1,3,0 +IuYs9ys6bwhK-s2_sUKsbQ,2012-04-07,k5NjpMMpGYBoBc_Wg9jy-g,4,Very friendly but need to work on the bathroom,review,KjGKNM9zEVIhiNEIS_RsHw,0,0,0 +z3yFuLVrmH-3RJruPEMYKw,2011-05-16,WzyvJl3KWNsZFxWkixfCyA,5,"I just have to tell you that this place is amazing. Not only is the food top notch so is the service. It is a rare find to get awesome food, a comfortable environment and excellent service at a reasonable price all rolled into one. The homemade sausage is excellent, the pizza is perfect, the choice of deli meats is extensive and homemade side salads (red potato dill is my favorite) and everything on the menu is fantastic. I have read that people say the wait is long, (which I find unfounded) but when you are considering what you are getting, the wait means nothing. I have waited longer for Sysco reheated food in a restaraunt (bleh) and had worse service. I would take a 10 min longer wait for really good, fresh food any day. If you can't appreciate that then maybe chain restaurants is where you should stay. We really do our best to stay away from those and finding places like Defalco's is really tough. We will continue to be loyal customers and spread the word of one our favorite places to eat. Don't pass the opportunity to try this place!!",review,CSYsxP80N_cmMhN84Hamug,0,0,0 +frqg5yt0EfmHqSKCvc8LMw,2011-04-15,sy8-Db3NMbIjMIv2K2wG_A,4,"I stayed here for work and had some meetings in the area which made the location very convenient for me. I just hopped in my car and was at my office 5 minutes later. + +The hotel seemed pretty new-ish and there were free cookies at check in. There is also a restaurant downstairs and a gym if you're into that sort of thing. My room was clean and well kept. My only minor complaint about the room would be that the air conditioning is super loud! + +There are a couple of restaurants right outside, but they close pretty early. Other than that there isn't too much close by, but if you drive up the street a few blocks to Happy Valley, you can find every big box store and chain restaurant imaginable.",review,sDDVSSr9DZFGhexEt3ifnQ,1,1,1 +pgz6IeaZgLuzqrk6HMPhzA,2010-03-07,xN0VqudpJzAbn05VF_1mcA,4,"I've been to a few Ren Faires in various states (my favorite is in Larkspur, CO), and this is towards the top of my list. + +First of all, they have their shit together. From signs all down 60 assuring you that you're going the right way, to having a specific Ren Faire lane to a plethora of parking attendants, everything was organized perfectly. + +Before I talk about the Faire itself, I have to say I was incredibly impressed at how disability accessible this place was. Between tons and tons of handicap park, ramps into each store, first aid people walking around with red cross flags so you knew where the first aid was, and even handicap reserved seating at the joust. I give them an A+ on that. + +The shops were great; found an excellent variety of things for sale. I got a great cane, candles, incense, jewelry and more. Food was good too; lots of veggie and meat options. We got broccoli cheese soup in a bread bowl (soup was ok, bread bowl was super delicious!), falafel (good), chocolate covered nut rolls (delicious!) and a good juicy pickle. Drinks were huge for the $3 we paid, and could be found all over. + +I also liked how much seating there was, both in sun and shade. We were able to stay longer because of being able to take breaks. + +The staff themselves were nice, but I didn't feel that many of them were as ""into"" their rolls as other faires I've been to. I'd say ""good morrow"" and get ""how are you doing?"" in return. Not a big deal, but just would have bumped it up to 5 stars. + +Worth the $18 the tickets were at Frys? Yes, but just barely. I hope they don't raise their prices!",review,rR5W8Bj-IGu6sw1_1v4m7g,0,2,0 +NXsw4z0AtaILgS4-UxSWUg,2011-01-11,3J0jsj4byVmW_h0myRxpHQ,3,"The hole in the rock was pretty interesting, but only for about 5 minutes. It's not a hike at all, more of a walk on unpaved ground. Once you're up there, the view is pretty cool, but the crowds of people and rowdy kids and dogs detract from the magnificence and romance. I'd think it's a great place to take kids, though, because of how easy it is. Good thing it's located in Papago Park so you can go and see the zoo or the gardens or Hunt's Tomb while you're there. If you go just to see the hole, it's kind of a waste of time.",review,yQZhcEFC12MEJhQ2xqD9MA,1,2,1 +yeLq-452CkaKw1ynn0nRNw,2009-10-29,kFOIrGR7o9sgFnxE8A-RRg,4,"Fantastic pizza for the price! One of our favorite take-out spots. Ask for the daily special as you can usually get wings, soda and pizza for the price of a large pizza. Great deals, great prices and quick service. Not a place to go sit and eat - strictly take-out.",review,PNS9z4aFDbfhpIsHCfNvNg,1,2,1 +8o-NLKy_XfbJtqljX9XLCA,2011-09-14,01TTuE9wi2G9I7Ip3K3uEQ,4,"Who's got the munchies!!!!! Friday and Saturday nights till 3 am, Mrs. White's is servin' up some yummy munchies including Fried Zucchini around $3 and entrees for $13. I had to have their fried chicken , pork chop and some gravy and rice at 12am! The fried chicken was cooked perfectly. The skin is crispy and tasty. The meat moist and tasty. The portions are huge and you will not go home hungry. The staff is friendly and helpful; always a pleasure to talk to them. Skip Filibertos or Jack n' Box after the party..movie..concert..and go to Mrs. White's!",review,Aaafbip-U2aeTXbvinBLiA,2,4,2 +n4mfUCDXHsg0GH50HzJpug,2010-07-14,KAJSVDeMI5bbU_OB_BzkMQ,3,"Went here for fathers day with my girlfriends parents because they gave a free entree for dad. He choose the fish and chips which looked amazing, I had fish tacos, my girlfirend had the steak and her mom got a salad. Everyhting was good. The service was great and the beers were decent. It was everything I could expect from a chain and thensome. I might even go back.",review,caELu3OqZm8LkdikpmEB4w,0,0,0 +8o-NLKy_XfbJtqljX9XLCA,2012-09-01,QvBlywDSjJbyqnJqfTI9cA,4,"Drove into Phoenix today and headed straight to Mrs. White's. It seems we were a bit early, and we had to wait outside while it opened. An employee came outside while we were waiting to grab a smoke. He was friendly and started up a bit of conversation with my husband about the place. It turns out he was one of the cooks. + +When were able to finally get in, we were offered drinks, and ended up getting sweet tea, which I don't care for. I got the smothered pork chop and two sides, the mac and cheese and the black eyed peas. + +We got a corn cake to eat while we waited and when the meal came it was pipping hot and very good. Service was excellent and prices were reasonable. I recommend this place for some true southern food.",review,y05bv65OCTcZgB0GhO8_sA,0,1,0 +r7Ge8_c5Y2TXthb4CSjzaA,2009-10-30,Uiif0BxCoTm0Ztr8ONNWkw,1,"I don't expect much when grabbing lunch at a mall, but I expect better than this. The seaweed salad was a generic overly soy tasting disappointment, the rainbow roll was barely worth eating - the shrimp on the roll tasted fishy, the fish was mealy-textured, and the rich was soft and too sticky. The yellow tail roll suffered from the same, and we luckily were cautious enough not to try sashimi. The miso soup was served barely like warm. The tea was served barely luke warm. That was when we finally got service, which took a veritable eternity. Tea refills? Good luck on getting someone's attention for that. + +The inside is a dismal, cavernous sport-bar/pool hall sort of feel. Basically no redeeming features here.",review,GnZWh25MyJD1d5FMKl3QmA,3,3,1 +PEHJjxdw11TGFma9Zhz3ng,2010-09-09,ZlWSRXjlzatbex6gyQLfEQ,4,"Phoenix has some absolutely amazing Italian pizza joints. And when I'm in the mood to spend some extra money and wait a while I go to them. + +But man alive! Red Devil is pretty close in terms of quality and it's a lot more laid back. + +During our last visit, we sat in back. The space has several nice little tucked away areas so everywhere has a nice private feel. Our waitress was really nice and accomodating and was with us in just over a minute. + +Some of the fancier drinks were recommended, but we were content with just plain old lemonade. Just the right balance of sweet and tangy. + +The bruschetta arrived quickly fresh out of the oven. The oil and tomatoes were spilling over the top and had a very rich flavor. + +The Italian pizza was just right temperature wise and the green olives added a nice salty kick to the sausage. + +The prices are reasonable. The staff is great and the pizza is delicious. + +Plus we met a 6 year old in the parking lot who claimed to be a princess. How great is that?",review,1F5G7Tdo14xzsGyISkHDvQ,0,0,1 +oXKPSI-RUqOvmuSCh_DEQQ,2009-02-17,p28vkq1lvem7hu2KjuB3yA,5,I went here for my birthday this year. The best part was my friends picked up the tab:) The food was fantastic. When I found out from a friend who works here that the same chef who created the city hall menu is the executive chef at ocean club I knew getting a steak to compliment my fish was the right choice. The only down side was that everyone who went out that night were so full that we decided that it was a better idea to go home ad sleep than hit the clubs.....well maybe that wasn't a bad thing after all.,review,RNSGaQSkC56tGPfKt9lHjQ,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2012-09-05,LNcKkL6j-6mEVFFZt6-aOw,5,Wonderful place to hangout with friends ...small and cozy. Hoegaarden white ale with chicken tikka masala pasty is my usual.,review,gW3DYv-sOMtVMefnlUJcyA,0,0,0 +JQyPZXDqoABsotLk3ZD3Sg,2007-03-26,nnSlvK-pDhWnZUZVEffn2w,5,"I dropped off a ton of things here when I was liquidating my life in this town and it was a terrific experience. + +Their donation program is quick and easy (just drive around to the back of the store and put it in a bin) and really helps out people by selling things at affordable prices and the profits go to provide assistance to the community. + +Such great people at this location especially.",review,FPWwCD73C0PlRdDfJ6Tuqw,2,1,3 +Vn8qcaX64fkl8vByCsSvIg,2011-04-04,FCwwRXTv8e2vRh1J0FLE8A,4,"Had lunch with my Husband here today, we sat outside, it was gorgeous weather, the food is really Great, good variety, of ethnic foods !!! Not bad for the price !!!",review,GTMQhwP94CJWHfcr884iQQ,1,3,0 +uEJQSIjWui-TDWXaGlcqyQ,2011-07-07,T0peZuUKnib-f4wQgxtTgg,5,"I Love Lolo's Chicken and Waffles and you will too! + +Recently my fiancé and I went to Lolo's. I had heard about Lolo's and Mrs. White's for years, but never took the time to go to the Phoenix locations. When this south Scottsdale location opened, I made it a point to go and try the food. + +The food is excellent or in my best Brooklyn accent ""Forget about it"". But don't forget about it, the MAC-N-CHEESE is a most try. The chicken is FANTABULOUS, the COLLARD GREENS are on point and they serve Kool Aid. Yes I said Kool Aid. I must have had a gallon of GRAPE KOOL AID. Before this, the last time I had Kool Aid was 1968. + +This place is very popular, so you may have to wait for a table, but it is well worth it. This place is so popular that Sports, Music, Acting and Reality celebrities can be seen here regularly. When we were there we saw the rapper Biz Markie. He did the song ""Just a Friend"" back in 1990. + +The only down side - although the service was generally good, it gets so busy that at times the server may get distracted and may not come back to you as timely or often as you may like. + +BOTTOM LINE, I LEFT FULL, HAPPY AND WITH A KOOL AID SMILE. TRY IT YOU WILL LIKE IT",review,Riuo3blbJUeY5FscBmAiKw,1,1,1 +ekKMQ-L6dHFobFz5d0w7Dg,2011-02-28,w7bdwvf-KpTxIHUaWhlw3A,5,"Love Belly Rubz!! At first little Oscar was timid about me dropping him off but when I came to pick him up he didn't want to quit playing! He has really bad separation anxiety and hates kennels, so it is always worrisome when we try a new groomer. He loved playing and came out looking so handsome! We will be returning to Belly Rubz this week for some more play time and grooming!",review,X0hPero71jN7D0RkJVOsBA,0,0,0 +3N__CAwM5VZOhRKmxMtImw,2012-08-11,vGY_HudPAA2s7IcYp-Hm8g,2,"Not a great experience last night at Eastwind. I'm going to start this by saying that I've been eating here for over 20 years, when it was Tokyo Express and now Eastwind. I was a customer weekly when I lived closer, now it's every 60 days or so. + +We went for dinner around 8:00 and it took way too long to get seated in the half empty restaurant. We were seated next to a family that must have been friends or family with one server, as she was constantly at their table. She was there while we were waiting and obviously saw us before finally showing us to a table. Our server was a guy that must have been new, as he seemed very nervous and didn't know the menu. + +So we ordered the sushi sampler for me and the Korean beef and a veggie roll for her. I got the sushi, but not the salad and soup that it comes with. The veggie roll turned into an egg roll. Everything came at once, and the server didn't make his return until we were done. After consulting with server #1, he took off the egg roll and our drink. Guess that's supposed to make up for it....",review,a4LJJU26cSE7k12-0sEw0Q,0,0,0 +ilJiRYZgxjrEu2iexKu-pQ,2012-04-16,t-hWR-vUV2sm6mKGB4_y-w,1,"Wish I could rate negative stars.... With so many bar choices this place is by far the worst. + +Last Saturday a group of friends went out for a friend's birthday celebration in Scottsdale and decided if we split up that we would meet at the end of the night at Loco Patron. It was increasingly obvious that the staff was hostile and irritated that they could not close up early. We finished our last call drinks and started to head out. The friend who was celebrating his birthday waited behind at the bar until his friends left the bathroom. At this point two bouncers became extremely agitated at our friend and demanded that he put down his drink and leave. My friend started to explain his reason for not leaving (friends still in bathroom) but was quickly cut off. I watched from the patio as the two bouncers (both obviously larger in height and weight then my friend) quickly escalate from talking to both grabbing my friend under the arms and start to carry him out. As he was carried backwards he lost his balance and tumbled back with both bouncers on top of him. The bouncers slammed him down headfirst on the cement outside of the establishment, pinned him down with their elbows and hit him. At this point I had run behind the bouncers and was yelling at them to get off of him. I had already taken out my phone to call 911 and I quickly tried to take a picture to show that they were using excessive force. We demanded to see the manager at which point the bouncer said he was the manager and refused our request. He swiped my friend's phone down out of his hand and broke it on the ground. Several people had called 911 at this point and we waited outside for the police to arrive. The police arrived and took down the bouncers' information and stated that they would be recording this incident. + + I am absolutely adamant in saying that neither I nor my friends will ever frequent Loco Patron again. We were treated disrespectfully by untrained staff who were either too eager to close up to get home or get a power high by manhandling non threatening, non physical patrons of their establishment. Based on the behavior of the two bouncers I assume that this bar operates without any written guidelines on how bouncers should conduct themselves. What I witnessed was full on assault and an infringement on human rights and I plan on writing any regulatory agency I can think of. These people make a bad name for all of the bouncers out there that conduct themselves within the guidelines of the law.",review,sRMG12fVSNEV3v--hxv70Q,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-03-20,DtYdeyUDRgw0Ef1StBBIPQ,3,"Great place, well maintained. It's big airport with some long walks.",review,bx3xc5XmamCkFZqXaPGMgA,1,1,0 +sgBl3UDEcNYKwuUb92CYdA,2011-01-28,UjgbxQ9cu-oYhZwb5BLo8w,4,"The best Chinese restaurant in the east valley in all categories from Dium Sum to banquet style dinning. Their steamed fresh fish with ginger scallion is my favorite. I have been coming to this restaurant for 5 years and never had a bad meal. recently, they even invented some new dishes for the weekend luncheon carts.Tthe stir fired radish cake with bean spout is delicious!",review,VodW352e1lTJbOBqTdiCOw,0,0,0 +yMUVflS-2SnOGafXmdHy6w,2011-03-28,1_DpuRsidT3B_hyndwck3Q,4,"The Pho was delicious, the place was cute, and the prices were decent. Also, the service was amazing! The waiter offered to warm up my son's bottle. Good service goes a long way, so we will definitely be back!",review,XXVfsLunIiz3xDeK17aHFQ,0,1,0 +qXNDOT15YefmozPnrbZJGg,2009-04-12,8Hxmm9e4G-H86RmGSW0j_Q,2,"Ahh man, +.....I REALLY wanted this to be good. + +But honestly, you end up with something that's more like ""flame broiled"" than the earthy wood-fired imagery you pick up from their corporately consistent signage, menu, and decor. + +That being said, it's a cool concept, and great crust- but the signature pizzas like the ""Greek"" end up feeling themed ,and lacking of soul and an intuitive fussing-over that they need to really be crack good. + +The salad's, while seemingly possessing all the right stuff- are the same. Too salty/ too soggy, and somehow too rich. +The gelato tastes like it must come from a squeeze tube. + +Anyhow- enough bitching. Better than Pizza Hut, but for all the fuss and flash, you expect alot more.",review,PY6a5DTygDqf52eQMtii5w,2,2,2 +9yKzy9PApeiPPOUJEtnvkg,2011-11-04,2Nci3cdKa0t32NeolLOfQA,5,"Beautiful country setting in Phoenix on an old farm. Watch closely because it is easy to miss as it is actually an old farm near the Legacy Golf resort at South Mountain. +Very good home made breakfast with fresh ingredients from the farm. +Orange juice was fresh and tasty. +Eggs and bacon were very good. Biscuits and gravy were excellent. +The setting was the star of this breakfast! +I would recommend ! You won't be sorry !",review,nprSBcvBhvzyIbacEwzDLQ,0,0,0 +OE7RmfGvpvSEv4g3xDKfSw,2012-12-29,RjmuZF3DV8CmNGmw7k31Ig,4,"Get to the airport early and relax with a nice drink and some tasty food at Chelsea's Kitchen @ Sky Harbor Airport. + +Good beer selection. + +Tasty appetizers. + +Wait staff is friendly.",review,TODYSp4aWM5pP3J1R3-HcA,0,1,0 +UxxPsF0oxTOideIpuppK8A,2012-02-18,m9zwITNFnht7ImkVuZttdg,3,"When I came here I got half a dozen donuts and one of those boba drinks. The donuts were really good, but I wouldn't say they were any better than a Dunkin Donuts or Krispy Kreme. The boba drink was so good though! I'm really happy they have those. :)",review,5c-kJ8aR4OD88y8k1eQuhw,0,1,0 +o5x6DF0KK1OBsiUOx2gavg,2010-02-01,VXZqsio20JLl2Te84-4fHA,3,"Cherubini is a clean, comfortable coffee shop. The employees are friendly, but no more than every other coffee shop I've been to. + +I had a decaf drip coffee, which was just o.k. Nothing to complain about but not particularly noteworthy. + +I sampled 4 donuts...raised with maple, cherry iced cake, blueberry cake, and sugar raised. The donuts were about average or a little higher. Better than Dunkin but nowhere close to BoSa. The cherry iced cake was the best, but all the donuts seemed a little too sweet. I'm a donut fanatic, so I don't mind sweet...but these, just a little too much. + +Kudos for keeping up a good appearance and free Wi-Fi, but I won't go out of my way to visit Cherubini again.",review,2OLdiDZNdrPkdjp1WmW0-w,0,0,0 +jEkaxdgLxUCf4jtUnCPVWg,2010-03-05,rC5_xNnMrzhoAJYuRLD7oA,4,"Love this little frozen yogurt paradise!! I like Golden Spoon, but this place is definitely a notch above. The toppings bar alone is a reason to check it out.....can you say Fruity Pebbles anyone? How awesome is that??? + +I like the fact that you choose how much or little you want in whatever combos you crave. The flavors are also really yummy, and they always have a good variety. It's a great place to take kids, as they tend to like anything interactive like this. I'm so happy I live close & plan on coming lots as the weather heats up.",review,bphQYJXrJZomo_zxnx304A,3,4,1 +K4Oo7A5Kp5eSgBV7MgOu8Q,2012-01-24,f4pW-wp6nu_jxgI-3nMYNw,4,"The best way to get coffee is through a DRIVE THRU! And that's the beauty of DB. You can just drive right back and get a coffee beverage. + +I had an iced peppermint mocha concoction that put me back about $4. A little steep but it was huge. I think the gal said their iced drinks are only one size. + +I still think Starbucks is better but DB is a close second.",review,chI2p-ROg2tXI2-tT2_G2A,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2012-01-01,2lWFTtG6S4W-HNAlOmv9Ng,2,"I could not find a place to park my Honda Civic and enjoy the trails. After about 60 minutes of looking. I gave up. Need more options to get there, and where to park the car so that the trail can actually be enjoyed. I will save my time and go elsewhere. + +Suggestion: Should consider developing an offsite parking area, and providing a shuttle to the entrance (perhaps for a small fee)...and let it be known where to find the shuttle.",review,7knTjXA1lNJw7AMIIJi4YQ,0,0,0 +uzETXY35sIROqx6nnGuq-A,2011-01-14,0E5AGtGB1xnWldDhnQ2aFw,2,"I graduated from Marinello at the end of August 2010, and let me tell you, I was glad to get out of there. +While the teachers were very knowledgeable in their trade, the program and administration is less than desirable. When I first toured the school and started classes in January, I was promised many things to learn, one of them being makeup classes. Still to this day they do not have those classes available at the school, and those were pretty big reasons to why I wanted to go there. +There was also a lot of drama in the midst of my schooling there. Several administrators left, a teacher left, and they changed everything that we were used to. They started focusing on advertising instead of getting students product to use, and there was a lot of times when school product would go missing when they didn't go missing before the administration change. +besides those things, the school is okay. At the very least, it will teach you what you need to know to be an aesthetician in the state. But I definitely wouldn't go there again, and I definitely wouldn't recommend anybody to go there. Be sure to look around at other schools before you decide what's best for you.",review,vveCBQXOFJbKsX4qucvDsg,0,2,1 +fVgrpVyp-nPLTac9YIjTug,2009-10-20,Stkq1LlRMjTqFX-oa_MOOA,5,"We ate here to celebrate our engagement during a weekend getaway to AZ. My fiance had coordinated with the restaurant beforehand to have rose petals and 2 glasses of champagne set for us before we arrived. The rose petals were fresh and a mix of red, yellow, and pink... beautiful colors! + +I ordered one of their fish dishes that came is a REALLY hot skillet, and I accidently burned my hand on the skillet. We saw one of the employees walking by, so we asked if he had anything for the burn, and he ran off looking for burn spray and bandaids. He was back in no time with everything I needed to treat the burn - amazing service! I THINK his name was Nick, but I can't remember. + +Good job, T Cooks!",review,lS3fw81m9FKT82Hbgk3OSw,2,1,2 +gArdR71Kk3pFajtEqLrFTA,2011-10-14,Gl5qB1ZIgnfLw0UeXclZeA,5,"i've never had a problem getting assistance here, except when it's busy, usually on a sat/sun. it's not that far from the house, maybe a mile, so i if i'm in a real bind, i come on by here to pick up some stuff. + +they've offered groupons here and with those, i've bought some power tools and hardware. ace brand is cheaper price but the quality seems to be just as good!",review,ST8Yzlk2MqKlcaLqL2djBg,0,0,0 +sb4wU69LkCtC6Axqcd34WQ,2010-12-12,NRXCdY7bTcFk6gmHOYieEA,4,"Upon suggestion of the ""Scottsdale Native,"" I landed here one night for dinner. This place is part of Fox Restaurant Concepts group who is also responsible for Culinary Dropout, Wildflower, Modern Steak, Zin Burger, Sauce, Montana Avenue, Bloom among others. +ATMOSPHERE: Awesome. Very happening, trendy with mostly young professional and older folks. Huge place with big open space. Great for groups with long table seating either booth or traditional table or couch. The wall opens up to the outdoor patio where you can sit on couches. We sat inside since it was a bit chilly. +FOOD: Latin/Mexican inspired menu. Huge portions! +1. Complimentary chips/salsa - didn't have any chips as I like to usually eat my salsa by spoon since it's lower calorie that way. Good flavor, nothing spectacular. Wish it were a bit more chunkier. +2. Fish tacos - the Native and I split this dish and it was brought out split for us. It was like 2 entrees! I'm glad we split this since it was a ton of food. The dish came with rice, pinto beans (choice of black beans as well). Mini fish tacos (4) with grilled fish, avocado, pico de gallo. Very yummy. Always a fan of the grilled food even though it increases your colon cancer risk. +3. Crab and shrimp ceviche - containing cucumber, avocado, radish. Nice flavors. Not memorable however so there not much to write here..... simply because I can't remember..... I know it wasn't bad though. +SERVICE: No complaints here. Attentive enough. +PARKING: Private lot. No problems finding a spot. +CONCLUSION: I think I would come here again more for the atmosphere but food is good too!",review,AXHAksv-Y84Ww5uVw8RdHA,0,0,0 +0Vty6xYvihX-kmsocY1HWQ,2010-08-03,YjFxvAr1p_KNhdZVDX3PUQ,4,"Stonecreek is a nice place to play, and the price is fair. I do like the layout. Fun but not gimmicky. The scenery is nice, too. + +I will have to agree with others about the ball vacuum (aka creek) running right through the middle of the course. + +The staff also seemed nice enough when I was there. I'm not sure what others were complaining about. Overall, it's a decent place to play, and its location makes it ideal if you're meeting people from the other side of town.",review,KYeLSM3MQpirmHukVV5Iow,1,0,0 +o1GIYYZJjM6nM03fQs_uEQ,2009-08-10,JeUZrbQStR_KL53D0hitCA,1,"This place used to be amazing. My favorite memories of past years is going to this seafood place with my parents. It's not the same anymore. + +We went for my wife's 30th birthday. My dad decided to join us. My wife ordered steak and shrimp, my dad ordered steak, I ordered a crab stuffed lobster. I have had the crab stuffed lobster many times before. I was craving it. + +We got our appetizer's. Dad got snails, wife and I shared steamers. My dad was happy with the snails. But then again, how can you go wrong with snails doused in garlic and butter? The steamers were steamed little neck clams in a garlic broth. It was not long neck clams like the rest of the world calls steamers. I wasn't about to argue with the server that these are the wrong clams. + +The food came and for the first time in my life I was asking the server to take back my meal before I even tried it. It looked dry and over cooked. I told the server I've had this dish many times before and this is not the way it's supposed to be. He told me this is what it's supposed to look like and begged me to try it. I took one bite and I couldn't even swallow it because it was so dry. Of course the server was gone by this point and didn't come back for 10 minutes to ask me how it was. + +While I was waiting for the server to return, I told my family I was just going to get the steak. They just shook their head and told me not to. I took one bite of my dad's steak and spat it out. How do you screw up steak this bad? It tasted like beef jerky and butter. My dad and wife would have complained too, but it's my wife's birthday and I am already stealing her thunder. I swapped my meal out for a steamed lobster. How do you screw up a steamed 1 1/2 lobster? Fortunately, that came out fine. + +So we left hungry and $300 poorer. I used to not mind paying the money they charged but now, it is not worth it. I am really hoping people stop coming here so they can just close down.",review,KcI2VGSvRhLAmw6vZrc8WQ,4,8,3 +-yxfBYGB6SEqszmxJxd97A,2010-05-01,OrZbkGCyQaiYEHBHCnn9Bg,5,"Fantastic meal. Fantastic experience. + +I am a vegetarian. I cook a lot and am very conscious of food preparation, starting with sourcing. I don't just patronize Farmers Markets, I patronize CERTAIN Farmers Markets....that sort of thing. Long story short, if I am going to dine out, I want something very special. VERY special. + +Quiessence exceeded my expectations at almost every turn. I dined there with my son and daughter-in-law...both truly expert cooks...more knowledgeable than I. + +All of us were BLOWN AWAY by our meal. We got the Farmers Feast without the wine pairings so we could choose our own wine. I got the vegetarian...they got the carnivore (or ominvore or whatever they call it!). Truthfully, labels are irrelevant. It's all in the taste...and the tastes are sublime! + +I was impressed by how much variety was in each plate. Theirs were similar but each a little different. More importantly, there was a marvelous progression of very carefully crafted flavors. + +The most impressive thing: The chef clearly wanted to offer his own interpretations . That he did so while letting the fabulous ingredients speak for themselves is truly remarkable. + +The setting is beautiful. The servers are unpretentiously proud of their community and the work they are doing and seemed to enjoy our enjoyment as well. + +Our only criticism (and it is minor) is that although the desserts were beautifully crafted, we felt that they did not reflect the intentions of local sustainability. There is so much wonderful local fruit (used in other courses, I might add!)...perhaps adding some to the desserts would carry out the theme more completely...I'm sure the chefs' creativity can conjure more ideas than I! + +That said, I will return! As often as possible! Quiessence and the Farm at South Mountain are an unparalleled resource for the Phoenix community...easy to get to from any part of the Valley...no excuses, folks!...Go!",review,SHi0ZKtsebge11hV5LfbQw,1,1,1 +_ZFiCMNEoAX3InUXhZVYOA,2012-01-09,TobE2zOtThpVhcg0iRygYg,4,"Youfit is always very clean and the staff is really friendly. Trainers are not pushy if you don't want to be trained. The only downfall was when I signed up it said unlimited tanning, but they have no tanning beds. All in all though I am comfortable there and don't feel like it's a huge pretentious gym. I was made aware of the yearly service fee and which month it would be charged as well.",review,euEN9CF87grHHuMY3WyrfA,0,0,0 +dMXYzSsh7CnIX_6KixDW8A,2012-05-23,9QYfsZ7FaraQ7loA4Qbqnw,2,"We kept seeing this place on trips between PHX and San Diego and decided to give it a try. The atmosphere was right out of the 60's/70's era of Space exploration & Sci-Fi and looked promising...until we met the staff. Host & waitress were snooty, had no personalty and devoid of any basic courtesy. +I had the Beef Chimichanga which was rather good and my companions were happy with their Liver Steak. We had to ask for drink refills much to the chagrin our our waitress who looked like she owned stock in Cover Girl. Near the end of our supper she all of the sudden started shamelessly flirting and getting pretty touchy feely (ugh)! We noticed that she did that with other tables and wives/girlfriends didn't appear to appreciate that. This was an obvious technique to garner ""gracious tips for the privilege of her service"". +At the register the host was very lackadaisical in settling our tab that we could have probably just left without paying and they would have never noticed. When he asked if we would like to leave a tip I answered ""Yeah, go buy yourself a personality!"" +While the food isn't bad the service killed the whole experience! Gila Bend literally looks like a Ghost Town, so if you want to stay in business you need to respect your patrons. Honestly, I don't think we'll come back...",review,ap6LoTZwP8zRCeT2rYo2eg,0,0,0 +VsO_rhXi5lgbaGxNwoEZsQ,2008-05-27,nhqrPfmHegblEc4RtkiXHQ,4,"I love Fate, and have been there dozens of times. I agree with a lot of reviewers about the attitudes from the girls who work there. They act as though you are a bother. I can't understand why someone would work a job they hate. The food though, is incredibly tasty, and has plenty of options for vegitarians and carnivores. I like the hipster atmosphere and the food a ton. The drinks are weak, and overpriced, but the food reasonable. This translates over to next door where they charge 9 bucks for a well drink. They also treat you like scum. I'm only giving this restaurant a 4 because I pay a lot more attention to food quality and taste than I do service. I also love the fact they are open late. I work til 10pm most nights so its good to have an option that isn't fast food.",review,JgDkCER12uiv4lbpmkZ9VA,1,2,1 +78IaYCf9ktUep4UhhjXbTg,2012-03-26,lwaPXul0D8mKK_UpMsxo7A,5,"what can I say - we're CF regulars...just love the place. I guess we are lucky because we have never had to wait more than 15-20 minutes for 3 of us. We eat here at least twice a month and we always start with the avocado egg rolls - they are to die for and the dipping sauce is yummy! I usually get a Glam burger - the only time I eat red meat - and so far have not had one I did not like. I often take 1/2 home so I can save room for some cheesecake, an absolute must when at CF. We have never had a bad cheesecake and try a different one each time. This is the only hamburger that I have liked the next day - usually hamburger is the one food that is not a good take home food as it just does not taste good as a left over - but I have actually eaten it cold because I took a bite before heating it and just kept going...yes, weird I know. + +If nothing else, go there for some avocado egg rolls and then treat yourself to a cheesecake....I'm totally addicted! Absolute divine decadence! ;D",review,B2at0hn3SfbcPS54Rr_xXA,0,0,0 +lPtTXn7_VOwqypZs07j2nA,2008-05-16,3Os_YL0W-VCx0vy84bQJ8w,4,This place is similar to Rays on 3rd St. It was lunch time I had an eggplant parm sub very good the eggplant was nicely breaded not gooey and gross. The kid had a slice of cheese the slices are HUGE. The pizza and service here are always good. I suggest this place for dinner more so the meals are way better they come with a house salad and they have more options pasta and such. They deliver too.,review,V0y4fqp-4pSRfsz0FmsjPA,1,1,0 +Q2FaJ3zB6ZuGgvqUqhdc_w,2012-09-07,84nj4n2ip8uSE4SAjBa1TQ,5,"Had some amazing cuisine at Milagro's. The chef is truly an innovative genius. Our food was so unique and delicious. Plus, the weather was so nice that we sat out on their beautiful patio and watched the sunset on the purple mountains. I highly recommend the PB & J appetizer. It's nothing you have ever had before I can assure you. I would also highly recommend the swordfish dish and tacos.",review,NjcHcAq5iT-7B-Ka_WLKgg,0,1,2 +VVeogjZya58oiTxK7qUjAQ,2010-07-03,a-CPrPFDlOtG_k1fDUHleQ,5,"Decided on a whim at the last minute to go here for dinner tonight, I guess that's not the thing to do here. Worked out perfect though, arrived at just about 4pm to see a hand full of people waiting and the the restaurant didn't open till 5pm. After a short debate we decided to stay, it helped that there was ample shade. The wait while hot was not uncomfortable and for the most part, newbies and veterans honored each others arrival order. 40 seats is not much for a place that does this much business and it was surprising to learn that most waiting were from out of town. I also learned that reservations are accepted on line for parties of 6 to 10 and only 3 reservations per night. Reservations are usually 1 1/2 to 2 months out. Luckily for us there was only one reserved table for 10 ahead of everyone. 5 o'clock rolled around and the loading procedure ran smooth as clock work and we had drink and food orders in by quarter after. Service was excellent and fast with just the right amount of time between salad and main course. I could not have asked for much more from my food, maybe a bit more basil on my mozzarella and tomato salad, everything was amazing including my Mexican coke. We ordered 2 pizzas, both wood fire baked to perfection. I could have eaten a whole loaf of the bread that comes with the salads, or for $2 on its own. None of our food was greasy or soggy, the olive oil they use is excellent and the fresh mozzarella mouth watering. I will go back again, planning on getting there an hour before opening. Although the food is amazing and well worth an hours wait in the Phoenix sun and heat, I would not wait for 4 to 6 hours as some people do. So for me this was a win and a lucky last minute dinner decision.",review,_Nn8lZA9B-1nE0xP-L6hng,0,0,0 +hJVt1P4FOvj-soabliLdaA,2007-03-26,fVwT1t-Sv4o_pDA5K-CUEw,4,"I think it was the guitar playing chicken that caught my eye as I drove by. Then it was the ""Now Open"" sign. New business? Figured I had to try it. + +Rock-n-Roll Fingers is a SO cool concept. Chicken fingers, waffle fries and Texas toast - that's pretty much the menu. The Chicken fingers may be fried or Buffalo style - but they definitely won't be from frozen chicken. They use only fresh Chicken breasts - no skin and no bones - and they fry only in Canola oil to make for the least unhealthy fried chicken they can. They have about 7 different dipping sauces - from Ranch to Thai sweet chili - though they are known for their Special Sauce. It's a secret recipe, so of course I had to try it. Pretty dang good. I also loved the BBQ which was more tangy than sweet and went perfect with the chicken. + +As for the chicken - have you ever had chicken so juicy that you though it might not be fully cooked? Maybe it's just because I grew up eating overcooked food, but every once in awhile when I get chicken cooked so perfectly I have to look to make sure it isn't pink. It was SO juicy I was really shocked. And though fried, it wasn't a thick and overly crispy batter - just enough to seal in the juices while leaving you with a tender and flexible piece of meat. The waffle fries were out of this world. The Texas toast was SOOO good! + +When I got back to the office I was super excited to learn two things. This is an independently owned business - this is their first location. And even more cool - they have gotten a perfect score by the Health Department more than six times in a row. Wow. + +So you can eat some really great food and support a new local business for a $5-7 lunch. Not bad. Not bad at all.",review,l53FUDHRHLg7BQ89KgAtxQ,1,2,1 +4juYmq_YpvdV8HZ1r0AWBw,2010-02-15,qgCkF6eAqGy6-XXGsmtvQA,5,"Great time, great location, ability to park in garage behind it. Beautiful decor, candles, white furnishings, trimmed in wood. Excellent vodka choices that will have you dancing on that raised table all nite which gives you a cool panoramic view of the place. See if you can spot the dj booth! He's cool, friendly door staff. The bartenders kind of ignore you and there's a brunette girl bartender-stay away from her. Downer attitude, and she will charge you for 2 drinks even though they have a 2 for 1 special. But it's a cool club and it's 99% certain you'll have great time.",review,nM3vfxr6fcnN_nXdzwbVCw,0,1,0 +oJpmYvLibGrYPDvcaUeMOw,2010-03-28,799y4miwZfz65itVhHoImQ,5,"We drove in from LA for spring training. Had a free evening and the old Pizza Hut remake looked interesting. To our great surprise, we had one of the best Thai meals in a long time. Once you get inside, you'll forget this used to be an old Pizza Hut and you'll be transported to a bit of Southeast Asia. Good food, good service...and the price is great. I loved the eggplant with beef and the Pad See Yew (spelled differently). Was going to go again, but they close on Sundays...boo. Don't know if it's consistently this good, but for our one night in Phoenix, we were pleasantly surprised. Definitely worth a try if you're looking for good Thai food. You don't necessarily have to have a lot of heat in your food because they have plenty of dishes for chili-adverse people like me but it's there for those that need the heat. The food presentation and description will remind you of Chinese cuisine, but the flavors are unique and delicious...and definitely NOT Chinese. The Thai fried rice is definitely more than a side dish...it's a meal in itself. Try this place and you won't be disappointed.",review,7PNLpIGi7OZzWcbdfu8alw,0,0,0 +1Duul3qCnLrNak1Np-iHfw,2012-03-08,gldQW-9I3o94uhysZ1lTNg,5,Beef gyros are always good here.,review,rYG_FSHAdLp2BmkKKCt_IA,0,0,0 +GaeokhqmZYuPr7i1EZtnHA,2010-04-24,RQK-UvRGLts4P2GqIgntMw,3,"PPP was decent. The white chocolate beer was delicious. I will be back for some more of that. I cannot wait to go back for happy hour. Steak is steak to me. It was not out of this world, but it was good. The sides were fair, beans and bread. The beans lacked flavor, but I might just be biased, my dad makes a mean pot of cowboy beans. The whole restaurant is very kitschy. Everything revolves around the cowboy theme. This place would be great to take tourists. + +-1 for undercooked steak +-1 for tasteless beans",review,OhZEYs9jzyiTaSu_CfeVUA,0,0,0 +duHUQFn7K-Ybs1rPI4AOEQ,2011-09-05,I6_ZjzOJViaLkI9XHvJXwA,3,"I had seen these around before but never stopped in. Started with a drink menu and was quite happy. Good selection of Margaritas and others. The dinner menu was good as well. Drinks were excellent and food was tasty. + +I'll make a return trip if for nothing more than a drink. A-OK.",review,KlLDE4egzf9VruPheiXHMA,0,0,0 +Sbgrvtk0P2Zc-ckTjEVFZw,2011-11-03,foG5f_oSawxWk6XxB1E_PA,3,"Foot Locker is home to the largest selection of athletic shoes in the mall but the pricing could be better. Their inventory also includes a dozen or so Foot Locker exclusives like several Nike Air Max 95 colorways. + +Foot Locker sweats, hoodies, and other athletic gear are generally durable, fit well, and priced well. The Chandler store also places some focus on team athletic apparel and miscellaneous sports accessories. + +The sales aren't that great. I saw a pair of Jordan CMFT's in the white/gray/black colorway selling for $80. I bought the same pair at a Nike Outlet in New Jersey in July for $50. What's up with that? + +I can't call it...",review,I0YYbQJCYlCI9562brPbpg,3,3,0 +NOq_vpCfCfYdMRPbaUG53w,2012-03-23,heVYtq0ahdM-u7aeuSKoAA,5,"My daughter and I really enjoy eating here. We tend to order the same thing every time because it's so good. She gets the grilled cheese and tomato soup combo and I get the grilled salmon nicoise salad. They both rock. It's cafeteria style all the way up to the point you pay, then you are served the rest of the way by a waiter who brings you your food and takes care of you. The food is always very fresh and delicious. And by the time we're out of there, it costs no more than eating in the food court but the experience and quality of the food are miles beyond. Highly recommended.",review,lV5EpiOMlitMVjk5r6yBSw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2011-04-19,bebRC66Md2xSxFREzzhvqw,5,"Found the Tuck Shop on my Urban Spoon AP and what a grand surprise it ended up being! +In the heart of Coronado this little house has been transformed to a true Phoenix jewel! +The food was amazing..we had pork with a pasta and broccoli. The pork had two amazing sauces that my boyfriend I argued over which was the better. The pasta was okay a bit of a cumin flavor but great once we mixed it with the pork's sauce. The broccoli was a great fresh touch. +The manager came over and spent some time talking to us more about the menu and plans to open another place with a different menu soon. A must try if you are a down town kinda person! +The crowd was a mix of tshirts casual to formal and the patrons ages ranged just as much. The menu changes with the season so go check it out! Only complaint I've heard from people I've recommended was the lack of choice if you are a vegetarian.",review,beKlmyoDlGIMI4It65QX9w,0,1,0 +RQe1UP_PZ0vdmg9oCYFKqQ,2012-09-11,_1Qp2Zj-dzTiUl6gQLly7Q,5,"For a sub shop, great place. + +Delivery is freaky fast for sure. I order delivery half the time. + +Pro's +- fast delivery +- quick service if ordering onsite +- staff friendly +- food is good + +Con's +- No WiFi. Would like since AT&T service spotty near this building. + + +Good spot. Glad there is a location here.",review,Uo5f4qhP0122j71IcJ1EOg,0,0,0 +52QtjHlHoa7V611bOvv1aw,2010-11-13,uWDhKPLgcE-xaKQwrSZXTw,4,high quality sushi fish. expensive. good atmosphere. good service.,review,gdzmrSqphtyaOuSVVJzZEA,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-03-23,QIE0AqHEHsf3X0m4unWKjQ,1,"Maybe I ate at a different restaurant than the other people, or once they got through the ""soft opening"" they gave up, because this place was not good. + +The service was mediocre at best, they seemed scattered and unfocused, took five minutes to get water. I gave up on ordering anything else after that. + +The food? Bland hamburger, that was cooked perfectly in the center. Too bad that outside of the center inch it was completely overcooked and dry. Soggy duck fat fried and average sweet potato fritters. + +Let's talk about this ""coal oven"". While the burgers are cooked in a coal oven, you could tell by the smoke hanging over the restaurant, they are cooked in an iron skillet i.e. pan fried! The coal adds absolutely zero to the burger. + +Overall, if I am going to spend $10 on a burger with no sides, it better be perfect, and this wasn't. I would also hope $5 would get me more than two fritters.",review,weBPiwvT2a5t-2lRfZjr5w,0,2,0 +mxrXVZWc6PWk81gvOVNOUw,2011-01-20,23q22aC_tL8BW5FYBnrsAQ,5,"Dining at Roaring Fork was enjoyable. The decor is warm and cozy, with an upscale vibe. Our large group was accommodated for on the patio, and since it was happy hour, we were quite a demanding bunch. The service was a little slow, but all drinks and food came out perfectly. + +I had trouble deciding what to order because everything looked so good! I split the Big Ass Burger (a huge ground chuck patty with cheddar cheese, peppered bacon, thick-cut tomatoes, pickles, and onions) and a kettle of fries with a couple friends. I also had the mixed greens salad (field greens with candied walnuts and feta, with some sort of vinegarette). The ahi tuna looked really good, as did the fish tacos. I also heard raves about the green pork chili. + +So many amazing options & a great atmosphere--I'll definitely be back soon!!",review,qZrArI2ohkYkQlELl13BKQ,0,1,0 +S8O3BoCDEK-te8U-0IvZog,2012-06-13,spLfBMgvQRSeW0COol5kkw,5,Amazing food. Great date night place with an impressive wine list. Definitely come her again and more often.,review,YbX50QSur8AzSwZm7KoTkw,0,0,0 +r0tvPoP73F9INWAEujiMPA,2012-10-10,JoS2aaYZMZ6-LDvV5Bq0uA,5,"NEW LOCATION FOR 2012: +Portland Parkway in Downtown Phoenix, Portland St. & Central Ave, right across from the Roosevelt Light Rail Station! + +Saturday, November 12, 10am-4pm + +Find more info here: http://www.localfirstaz.com/fall-festival/ + +Bigger location = more fun!",review,MUs9MnY35Vd_reFiwfxdPQ,0,0,0 +P3XTxImHMkOCY9f7RDUvvQ,2012-06-18,Uw8Bp-9DRCEzrvuAHCP4bw,4,"Checked in last night with a large group of people and gotta say: the staff is super professional and very nice. Clean, quiet rooms. Amenities are quite as nice as the Marriott (small pool), but there is free WiFi (connection is good and consistent) and breakfast and dinner snacks come with your room. So, good value.",review,sxnf44EtX5Kwpskl2VZCNw,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2011-11-28,rsEM2D8QKpo_hiBtiLMO0w,5,"I am a huge fan of this restaurant. I love their locally grown fruits and veggies. I love their healthy options. I had their brown rice with curry sauce, veggies, and organic chicken...it was incredible! Can't wait to travel to Arizona again and return to this wonderful restaurant! +PLEASE OPEN ANOTHER LOCATION IN THE SAN FRANCISCO BAY AREA! It would be a hit!",review,QkFRhFSMVf0kP4MzFUqlKA,1,2,0 +nf-XFT_vCyPveDM6Q51xxA,2011-12-28,NlofY9xnGbdafOI2W_ersA,5,"My daughter began taking classes at Encore 6 years ago. At the time she had a bit of an attitude and didn't do too well with other girls. She instantly fell in love with Regina and took numerous classes from hip hop (her first choice) to ballet, jazz, and lyrical. I watched my daughter blossom into an amazing young woman as well as an amazing dancer. Regina involves the girls and boys in the competition experience so that they have more opportunity to learn confidence and self esteem. My daughter has had the opportunity to travel to California and Las Vegas with the studio to participate in Nationals and Master Classes. Encore is not JUST family owned, it is a family environment. I checked other studios but found a less than friendly welcome to new participants. I couldn't recommend anything more than Encore and the skills that your child learns. My daughter now works at the studio as well as dancing and my youngest daughter is taking her first classes now. I am looking forward to another 6 years or more with the Encore family.",review,Ak-1d41OjOHuq3m2cAPnCg,0,1,0 +VVeogjZya58oiTxK7qUjAQ,2012-05-10,83WQ3yROY6olQen0wP718Q,2,"Abridged: +I'm gonna be real with you. I am not in love with Pizzeria Bianco, and had I actually had to wait in line, this rating would probably be lower. My group was lucky enough to receive the last table without any wait. + +Maybe it was the fact that it's hard to impress me with pizza. Maybe it was a fluke that won't happen again. At least that's what everyone keeps telling me. But honestly, I just wasn't that impressed with the $19 pizza I received. Sadly, the leftovers I took home ended up being tossed because I was afraid to try it again. + +I've been worried about writing this for awhile (it's been sitting here unfinished for nearly a year), but in the end, my opinions haven't changed, and I sit here, still scared to return. If someone dragged me there again, or had a party there or something, I'd probably give it another shot, as I hate to write off any place after a single trip, but I honestly felt just eh about the whole thing. Thankfully none of my visiting out of town guests have cried for me to take them there.",review,7zDqr2I0-xpw9HF5Ha54cA,1,5,1 +kr3EFhoSwbJPrL_e_RD39g,2013-01-04,WtZoFxEm_Y5e2sEUi2jqcA,2,"I work in fine dining, and this place would have failed any shoppers report. + +The server never introduced himself and was negligent in attention to us. +The food portions were so small I was very disappointed that they charged so much. +Management was scared and hesitant to check in on us and primary paced the restaurant dreading any social interaction. + +My biggest concern and reason I am bothering to write this review is the PORTION SIZE. And perhaps it was just what we had ordered, but the Hamachi was barely more than two bites and the Dinosaur salad was just cheesy large kale pieces. + +Drinks were tasty. If ever I go back, it will be for their bar ONLY.",review,q6-5KZu-jufADiCn5BTF1Q,0,0,0 +ttpZx2t4fMAApdU9MFG91w,2011-08-02,a6KFfl8zy5RSYtOwz-fMEw,3,"This gym is alright. I thought from the way it looked outside it would be much bigger, but it does the job. Staff is friendly and welcoming. I rather enjoy all the classes here- especially zumba. The instructor reminds me of a young Richard Simmons heehee. Yes, there are some touches that scream ""90's"" like the neon signs by the locker room, but who cares. It's a gym not a prissy spa. I'm there to sweat!",review,lmiDCrmas8TxRsbIGZX9Pg,2,4,2 +2unQHR9uaRxk3dsW6f3MGA,2010-10-08,4xdfcdhZSShne6aIVp1cMA,1,"Ugh. My tip-off should have been the Guy Who Saw Me Reading The Menu and came outside to tell me the food was good. But I was craving Chinese, I work near the COFCO center, and it was threatening to rain. I scanned the menu, found Kung Pao chicken, and ordered up. They told me 5 minutes, and they were accurate. Price was reasonable. Waiting area was comfortable and well-decorated. Food was inedible. I got the lunch special, which include soup, egg roll, entree and fortune cookie. I couldn't eat any of it. The soup (hot and sour) was way too sour. I felt like I would get acid reflux if I ate it. I couldn't order the fried rice, because it contains peas (I've learned to ask...childhood trauma). The rice was clotted together and difficult to eat. The kung pao chicken contained a suspiciously generous amount of meat...so much so that I questioned whether it was actually chicken. I watch too many movies. The egg roll was just gross. It seemed like the wad of mushy veggies was wrapped in biscuit dough before it was deep-fried. The fortune cookie was stale, and the fortune was even lame. I would've done better to get soaking wet and hit up Panda Express.",review,2LCrT_BOJvGV4xi_lmoRcA,0,1,1 +QkyN2vqQidQhotvOtPIrkw,2012-08-15,-lvzcbzSdVqKTqYcAhOhOA,2,"Humble Pie is right across from one of my favorite hang-outs, The Main Ingredient. I've seen this place numerous times and one day we saw a Groupon for them, so decided to purchase it and give it a try. +The place was fairly dead for a Saturday night. I had always seen this place packed when passing by. Maybe we missed the rush? +The service was nothing special. Our server had no personality and seemed bored. I ordered a pizza with pistachios, parmesan and red onions and my boyfriend ordered some kind of BBQ chicken pizza. The pizza was dry and didn't have a ton of flavor. It wasn't AWFUL, but it wasn't REMARKABLE either. We left unimpressed and don't really have any craving to go back there again. Wish we understood what all the hype is about. Maybe we just ordered the wrong pizzas?",review,A2FF3rbujS4O760_400DVQ,1,1,0 +yGmdo1ENajB98iryHGoWFw,2012-11-07,GqMxrKvTrkDeG4ZS5mSlqg,2,"So the place has Christmas lights, and a fair amount of ambiance, and supposedly there's a shirtless shot at 1:00 - which might make going back worth it. Other than that, the service was less than lackluster, the domestic kegs all seemed flat. In other words, go somewhere else unless it's 1:00 and you want to see some daytime nudity.",review,wy8Yd_vCWDjiz9rMo4HfqA,0,0,0 +Dj3i6a_vboALYTRKTmBABQ,2010-07-17,zy6ejdZ8_lQt1a7wKvO3wA,1,"Good prices but this please is honestly not worth the hassle. First of all you have to leave your purse at the counter. I am not comfortable doing that anywhere. Who does that? The only place I have ever seen this before was ASU's bookstore. + +Then you walk in this warehouse that has NO air conditioning!!! I made the mistake of going yesterday in the middle of the day (111 degrees out, yikes!) Then you get inside and you have to carry a catalog to refer to for prices since items are unmarked in large boxes. + +If they had a/c it would have been worth it to save a few bucks on the toys my dog destroys in minutes but no air conditioning??? IN ARIZONA?? Madness!",review,QzA6ZW1NFid32_g_fsapIg,0,0,1 +JRzrqJmsQ5AZ4bMQLUfyHg,2011-04-17,lu3D6AtN2mDxUk4UhL0sLQ,4,"Crazy busy on a Sunday morning @10:00, sat at the bar..quick service..both ordered the Calf. Benny, Next trip the pork carnitas. Waitress recommended the Southwest carnitas which looked awesome. +Great place for breakfast/brunch.",review,LXWAXIeYFIdgd2JVPF-9qA,1,2,0 +TAlmdEr0RNWZh9IiUS_BLA,2011-10-18,Ax6qRlyEfp56TJu-yhG8NQ,1,"Here's a thought, don't post on the door to your restaraunt ""Up scale Mexican Food"" unless you can prove it. This was not upscale, it was barely pass-able as decent. Didn't help that the waitress got both of our orders wrong. Will not return.",review,D2NKLp8yrK-49RKslrOnpw,0,0,0 +zG_wv69bsllw_PWhOmoAKQ,2012-10-24,uYHle6vzLZQqs8Y1djdQIQ,5,"Great service, great food, highly recommend. We had the scollops and they were to die for, the scotch beef and mac and cheese were also amazing. Will definitely go back and recommend to friends.",review,Gc2D5JdO5mvPZCZyI2Zghg,0,0,0 +o2BeeJmpf_J9EmC8HQoHRA,2009-01-13,Az6m9a6YHw9qstIFmeg4oQ,5,"The Montelucia Resort is home to Crave Cafe, and the fact that I was blown away by how beautiful the resort is has nothing to do with how impressed I was with Crave. + +What are you craving at the moment? Perhaps a cup of coffee? a scoop of gelato? an empanada? gourmet pastry? homemade tomato soup? perhaps a panini sandwich filled with turkey, cheese, grilled eggplant, and cranberry compote? red wine? magazine? fresh fruit? Diet Coke? + +Whatever your 'crave-ing' - Crave has it all! + +In addition to pretty much anything your heart desires, Crave also has an extremely friendly staff and offers limited seating (in and outside) with gorgeous views of Camelback mountain. + +After a full tour of the resort, we were hungry for lunch and decided to have a quick bite at Crave... We shared a sandwich, slice of quiche, and tomato soup - all of it was delicious! I am sure I'll be craving a return trip to the Montelucia sometime soon, and when I do, I'm sure I'll pop into Crave for whatever I need at that time.",review,fczQCSmaWF78toLEmb0Zsw,8,11,3 +K8pM6qQdYu5h6buRE1-_sw,2009-03-30,Uw3wTuKVbGrwqLqjNqXphg,4,yumtastic!! just don't forget your safety whistle and pepper spray! ....even during the day....,review,hFtlFksrcLaWHGPNa6SmeA,0,1,1 +W6TgqysHj-5rFryJ2IIyfQ,2012-02-22,0cr4EdYQFAybYMFIXXNKWQ,3,"This store is a average. It has a six month wall. This place does not bag and board new issues unless asked. The store specializes in new stuff only and has almost no back stock. The store has tournaments for card gaming on weekends. The staff doesn't talk to new customers much or ask them if they need assistance. Note for true comic fans... +This store is good for new comics on Wednesdays and supplies but that is about it. Dime-a-dozen store... nothing special.",review,Vsfr0PxH_A458czK15n8dw,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2011-11-08,qm3CjELLt16JjVRFJDwLnQ,5,"Please excuse this review as I am writing it as I come to from my food coma. We just moved to Phoenix and at the time of dining we were not familiar with the Fox Restaurant Group. We happened upon CD on accident on a Tuesday night. I must say the place was pretty hoppin' for an early week night. We ordered the pretzels with fondue, the fried chicken and the steak. It was so good we didn't even speak to each other through the entire sitting. It was the kind of meal you don't mind having indigestion after because you get the pleasure of re tasting the deliciousness. Gross, I know, but you know what I'm talking about! The server we had was as good as a ghost. We never wanted for anything but he left us alone. I wasn't super crazy about the monkey bread but my honey ate it like we hadn't had a ridiculously large meal 15 minutes before. I'd kinda like to shave off like a 1/4 of a star because the staff was ultra trendy/Indie as were a majority of the patrons. They looked like H&M and Urban Outfitters threw up all over them but if that's the gimmick I'm ok with it since the food was so amazing.",review,oexyVjQSZ62qT7tpxgOcKg,1,2,3 +YXp62JdXJDzX0EuRv_zgMQ,2013-01-03,RHxWfzsTePXDm6YnbDQ5zA,2,"Cannot rate their technical service because they NEVER SHOWED UP or CALLED TO RESCHEDULE. I made a service call appointment with Flores Air and received a time of ""around noon"" and we will call in advance. I received a call at 11 and they said they were in the area and could be there in about 45 minutes. After a no-show, I called them around 1 and the man said they were stuck at a job and would not make it. I rescheduled with them for two days later. They said they could get there around 3. No call that day and I have not seen them. Today is another day and still no call from them. I will not be calling them back again to schedule another NO-SHOW. Customer service is non-existent",review,8bb1QKOcn35AtX94Hibo1g,0,0,0 +Cse5FvYuACIxljwaac2SZg,2012-02-13,8NxK5DXJTR46pKghCYJlSA,4,"This is a wonderful little find. We sat on the 2nd floor patio and it was the perfect fix for a busy day. We sipped wine in front of the fire and watched the sky change colors over Camelback Mountain. The service was fabulous. They didn't rush us and without asking, split our shared orders for us. The food was fabulous! OMG! You HAVE to get the walnut Gorgonzola salad with the warm sweetened balsamic dressing. Mmmm. I would get that again in a heartbeat. We also split a flatbread with fries and it was excellent as well. I will definitely go back.",review,VgdDYz0-i1kDszfEu5nFdg,0,1,0 +puy0PzIcCgR3KWJI7llBFQ,2009-11-20,VqDKlhAtDIRjxQdwvqusBQ,4,"I have been to this place twice so far. The first time I had no idea what to expect since I never heard of it before. I honestly have no idea what to compare it to but I guess the closest thing is Texas Road House judging by the reviews here on Yelp. Anyway, I know its not the classiest joint with the best food, but anything is worth a fair shot. The first time my wife and I went we were in the area doing some shopping and just wanted something quick and casual for dinner. We didn't expect anything great but to be honest our expectations were exceeded. + +The happy hour is pretty good. $3 pints and 2 for 1 cocktails/wine. Both times we went we ordered a 2 for 1 drink which would have been ok if they didn't charge too much for the first one. I mean $5 for a small glass of Yellow Tail? They are giving you 2 though so I can't complain too much I guess. + +The thing we love about this place is the 2 meals for $13.99 special they have going on. There are some pretty good options if you stay away from the fried stuff. So far we have had the chop steak, steak and the salmon. They are all very good and decently sized. They prepare them however you want (sauce on the side, etc.) and everything comes with 2 sides. There are 10 or so sides to choose from. I get a side salad and some grilled onions or mushrooms to go with whatever meat I am having and they are always very good. My wife always gets some sort of grilled vegetable and they are good as well. + +The service is very fast and friendly and the food always comes out pretty quick. Oh yeah, and I also am a fan of their peanuts as well as the rolls that you get to start.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,0,0 +PrYz1XEnvGJ-5Q0VVPCLnQ,2010-05-12,Wl-qZPyjdGqwtDWjguPFrw,5,"The people at this title company are as good as it gets. +They are eager to do a really good job for the agents that use +them. Bill Risser and Paul Guenther are techno pros regarding +the Social Media techniques and readily share their expertise +and time to teach the skills of Twitter, Facebook, Hootsuite, and +other aspects of Social Media which agents can utilize to serve their clients in a diligent and efficacious manner. The buyers and sellers of property will really gain by using them because their handling of the transaction will be efficiently and quickly finished.",review,hI9F0tAwQE0T1mZM9_HysA,0,0,0 +ILsZjIibFtGHMDELeX610Q,2012-10-21,KWYgMg391OHHYkV74usyXA,2,"This restaurant was just okay to me. I ordered a thin crust and it was just average. The garlic cheese bread was the best part of the meal. It was tasty. The staff was friendly, so that was a plus.",review,_bHzW18Vg1gxTMoR1fFZhA,0,0,0 +L-uPZxooP_ziXCtRrWi8Pw,2011-10-02,b9_bJ5QMh6kKj-rRPjJLDw,5,"prepare to spend a few hours here and really have a romantic experience. the food is divine. the service is laid back (in a good way). the chef runs the whole show and plays all hats. the menu is forever changing and when you make a reservation he will ask you questions so he can tailor your meal and experience to your needs. probably not a good first date place because if the date goes wrong, you will be stuck for a while. perfect spot for an anniversary or something. or even just to have a nice meal with people you know and care about.",review,FX08eHC3TK29JEilRt5V-g,1,1,1 +7_7fxuG9ESAFmx-AiMsJHg,2010-10-07,luRxpQ6ILLt0Dlz1S41gVQ,3,"Bar Smith has potential to be a chic hot spot in the heart of downtown; just a few steps away from the symphony hall, Chase Field, and the US airways Arena. However, this place, despite it's pseudo-hipness fails to deliver in the cocktail department, which, with it's continuously crappy music, would be the only real reason you'd come to this bar. It's really a 2.5 star place-- bartenders are nice,but don't really get the job done. When you're paying over $8/drink, you'd at least expect them to do that. The roof is cool though so an extra .5 stars for that.",review,zgCO0TnkvfohTmwPTwP7Ew,1,2,1 +lTk4l6YgxNXNaMCD9mcD6Q,2012-10-05,pAVUh5YETvzw2s9Br3nokQ,5,"Hands down, the best pizza in the East Valley!!!! Tastes like I'm back in New York City, that's how good the pizza is! They do all sorts of combinations and toppings. Mmmm mmmm good. The hero sandwiches and wings are good too. Located in a strip mall next to AMC movie theaters, it's a great place to go before or after the movies. And they deliver, too. Much better quality than chain pizzerias.",review,cBG3WD3mKDfZ1BNu7Do50A,0,0,0 +ZCE_ZHlZGpWPGICWpGNrdQ,2009-04-24,KoNrflvC-T14zBJEA6Z0Rw,4,"The really interesting thing about this preserve is that it's in the middle of Gilbert. You'd never expect to find a nature preserve tucked between the unassuming Gilbert Public Library and track-home neighborhoods. Yet, it's there, and it's quite a gem of the east valley. + +They have multiple things going on all times of the year, from guided bird watching to night-time observatory star gazing. The preserve is a little sanctuary of nature and beauty within the confines of our sprawling metropolis and I absolutely love it. + +What I especially enjoy is how the Gilbert Public Library looks out to the preserve with its giant floor-to-ceiling windows. So even when it's sweltering in the dead of summer, you can still go to the preserve and enjoy the beauty while reading a book in the library.",review,FHJUj7EHB9nB2czVOzQX3Q,6,7,2 +bF7KQ6AQK5rBS7aOFKtlWg,2011-06-24,rBo4aei3_vQvovryCsF0lw,4,"Delicious, fresh, flavorful, with a lot of meat and vegetarian options to please any discerning palate. They also offer soups and salads, which I hear are equally as delicious, and many different options for sides. It's sad to see that this plaza, which used to house Michael's and several other stores, is now nearly defunct, and the last remaining vestiges of this plaza's prime days is this deli, Pong Pong Chinese food, which is right next door, and a few other specialty stores. + +My favorite so far is the Southwest wrap. The Buena Bella vegetarian sandwich, though touted as a healthy alternative, seems to be a bit too salty to make it really that healthy for you.",review,uZbTb-u-GVjTa2gtQfry5g,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2009-03-20,2yIPrAxUx7qft-6AdoSx2Q,4,"The husband and I went here for breakfast the other morning at about 9 am. The patio was about 2/3 full but the inside was empty. When you first walk in, you are greeted with menus that are extremely reminiscent of Pei Wei. Turns out, you order the exact same way at said restaurant and you even get a number and choose your own table. As I sat waiting for my food, I contemplated whether or not this concept worked well for breakfast. The place started getting busy about 3 minutes after we sat down and I discovered the concept works quite well. + +So many things on the menu looked delicious, and I had a hard time deciding what to get. For starters, they have pancakes with peanut butter chips! YUM! Any restaurant that does peanut butter chip pancakes gets bonus points from me. The rest of the menu varies from omelets to brizzas (breakfast pizzas) to good ol pigs in a blanket. The husband and I decided to share a few things. We got the peanut butter chip pancakes, the pigs in a blanket, and a cinnamon roll. The pancakes were awesome and HUGE! After just one I was already feeling full. The pigs in a blanket were absolutely delicious, primarily because of the yummy and kind of spicy breakfast link. The cinnamon roll was also tasty, nice and fresh, but not too cinnamony. + +Back to the concept of this place... once it had started to pick up again in terms of customers, I noticed how quickly the cashier was able to clear out the line. I also noticed that the food was coming out at a really quick pace, and absolutely nothing sat on the line waiting to be served. It works really well, but I am most interested in seeing how it works when the place gets absolutely slammed. + +Overall, this is an excellent place to try. You will not be disappointed with your fresh and delicious breakfast that doesn't make you feel heavy and gross after you leave. A cool place for sure.",review,W_QXYA7A0IhMrvbckz7eVg,3,2,1 +_8IwRyq-N0kQqnTB-NTUwQ,2011-06-12,lmDgEYFGNbjzPYjUUG58AA,4,"Let's see great coffee....great muffins....good service....coffee drinks need some work though. D&D never lets me down when it comes to plain ole american coffee....but there attempts at making coffee drinks to compete with Starbucks and even Mcdonald's for that matter come up lame. I tried for example the frozen hot chocolate the other day....taste like plain ole chocolate milk with whip cream. The coolatta's and other frozen drinks are not bad but Starbucks is much better. + +However with all that being said....no one makes a better cup of coffee.......... by fast food standards anyway..... than does D&D. The coupons I get every couple of weeks also rock because I can get that great coffee cake muffin they make for 99 cents. I also get get coupons for 1.00 off combos.....free doughnuts....and even 99 cent for large coffee's (although I never have that size...LOL). So if your looking for great coffee and maybe a cheap breakfast to go along with it give D&D a try and remember to Eat, Drink, and be Merry my Friends!!!!",review,ky9pQ8AKufvZ63IxR41jGg,0,1,0 +WNy1uzcmm_UHmTyR--o5IA,2012-10-23,uPXZoW4S8ISdSb__dIgc3Q,5,"If your day is lacking a good decision, this place will change the course of your life - at least for an hour. + +I have only ever ordered the Oggie (I'm a one pasty kind of guy), but most of my friends have had their way with the rest of the menu and it doesn't disappoint. + +Easily one of my favorite spots in Tempe. It's also a much larger version of its former self so you no longer have to gladly wait an hour for a table.",review,AMKiaeevcw1k75yeRgNAxg,1,0,0 +sb4wU69LkCtC6Axqcd34WQ,2008-12-07,dulcNLRZx-2YOP4TQejaJQ,4,"Bianco is a great place to go for a reasonably priced dinner with good ambiance and solid rendition of Mexican food. +Yup, there are holes-in-the-wall tacquerias with tastier food. But Bianco is spot-on in terms of overall concept with good service and modern furnishing. Puts this on a repeat list.",review,hFG1Lira7tL_PElq6bdAAw,2,2,1 +CKjcewWeWvdJ7TzOQbZOIw,2011-08-24,TN9w62yuUBAltMmfY7kREw,5,"You speak Italian to me and provide mouth watering, soul lifting coconut gelato with micro-chips of chocolate in them?! I only wish you weren't 30 miles away...but I would walk in 116 degree heat to get there - for real!",review,19FkHmJef18CJedDPgJ_yw,0,1,0 +d52zg-S0o940WUCK-nNiKw,2010-06-06,j3rrVyshgMxKo2sB5nHGig,5,"The place is a hole in the wall right behind the PHX car rental center. Arrived at dinner time, and had the best Mexican food! I had the #5 Machaca Plate w/rice, beans, & one of their homemade tortilla's burrito style. It was just amazing, and so cheap ($5.65). The only issue I have with this place is that its very well used, and looks very dirty, I did find it a bit sticky. Maybe this is a better place for pickup. If you want a clean restaurant, their North restaurant on Cactus Road restaurant is much cleaner.",review,zYgSDyEHVcMLRL1LLms7IA,0,1,0 +Evg8IfqcHSyTPV9sLNhArw,2012-06-10,kgyVk9N13Ke2A9fnxTennA,5,"I'll be back! + +Laura certainly doesn't need my review for help, but all of these people are correct. She is meticulous, easy to be around and takes joy in her work. When I read all of the 5 star reviews, I sort of thought they might be written by friends because they were so gushy. I found her via Yelp.... and loved her! + +$20 eyebrow wax, takes credit cards.",review,HxMkDhc-nyZbt9KZHMZF9Q,0,2,0 +IMGW6y8wHQCfr_6k-YXg_A,2011-08-22,pfIZix8LtHgsRJTe_48x3w,4,"For a brewery type restaurant they do a pretty good job, in fact mabe the best one in town for me. Most of these type of places do a very mediocre jobs with a very extensive menu. + +BJ's has a great gluten free options. the pizza is very good, probably the best I've had in town. good selection of beers. service is always pretty good.",review,2PrEVYskE4RU5_61hM8jWw,0,0,0 +2bdKR3l4o-S1CscLqqnvVw,2011-02-15,BMmK7VMY4KuG74GaZBZaQg,4,"Having recently moved from the Bay Area, I had ignorantly thought that there wouldn't be any decent ethnic, especially asian ethnic, food. Thankfully, I am completely wrong! Elephant Thai is a good thai place with a varied menu, freshly made food, and nice atmosphere. An added plus to the Tempe location was that they allowed us to bring our small pooch to the patio area where we dined. We did have the corn cakes, which were ok. I don't remember them being bad or great...but my husband likes corn a lot, and I think he enjoyed them more than me. The green papaya salad was as close in flavor to the papaya salad we had freshly made for us on the beaches of Thailand as I'd expect around here. We also had the thom ka soup which was really tasty. It was a while ago, so I can't remember the entrees we got. I probably got the pad thai...just to try it, and some kind of meat dish. I definitely don't remember anything being awful...and although it might not have been exceptional food, it was enjoyable. Thai ice tea was yummy, and my husband had the limeade which was too tart for me, although he thought it was really sweet and quite good. I do remember that for 2 people, what we ordered was a huge amount of food that we had no chance of finishing, and yet the final bill was quite reasonable. + +We weren't able to order any dessert, but I did notice that they had the sticky rice w/ mango on the menu. It probably wasn't in season anyways, but I will definitely be ordering that at some point. This will definitely be one of our go to thai places.",review,FFzadNTcO4mwRSELjBq9Cw,0,0,0 +9NT8Ne1DICkv0ebX-gVK5g,2012-06-18,sAoUwDbsv2C0X5GXcCMs3g,5,"Awesome Mexican food, fast service at drive in or sit in and eat...try the new fish tacos, they're great, and authentic, too.",review,ZOQDa60lRcvR9Sb7VU6eKQ,0,1,0 +5M7YgorCUTEZkKYNbKDHTA,2010-01-19,3EWJz2XAiFELIVLQHgSvXQ,1,"I only ask for two things when I'm flying. To land safely. And to not fear planes while on them. + +US Airways only delivered on one of those, and I'm still undecided on the first one. +Took a flight late from PHX to SFO. Two hours isn't too bad. Unless of course it was the longest two hours of your life and you could hear people in the cabin praying for their lives. +I understand that turbulence is normal. But I would rather you cancel another flight because it is too dangerous to fly, then to put passengers through the scariest flight of their lives. +Oh and when you finally do land and are thanking your maker that you are in fact still alive, its probably best that you don't have to overhear the pilots saying ""Wow, that was scary. I'm surprised we landed alright."" +Morons. They should pay for the trauma I'll have for the rest of my life.",review,07QrlEBAY9bp7ivPl3_tDw,1,1,3 +Xsl-i1otDd3GXJEkkKJCaw,2011-12-22,5rl6W3knAM60bAKzCp1emA,5,"This, my friends, is THE place to get some very authentic Chinese food. + +The servings are HUGE for what you're paying...shucks, they are huge no matter which way you look at it so be careful not to order too much food unless you want leftovers. Who doesn't like leftover Chinese food anyway? + +My recommendations are the Sweet and Sour chicken, the Egg Foo Yung and the chow mein. You will not be disappointed. + +You'll also find the soups on the back of the menu at an average of 4 bucks or so. You will be pleasantly surprised when you get the bowl...it can feed at least 6 people. She will bring small bowls out and serve it for you right at the table. Give the hot and sour soup a try. + +As for the service, it depends on how you look at it. Don't be afraid to get up and refill your own water. Shoot, the waitress is the only one that's there, give her a break already. She must own the joint with her husband because there is always this little kid in the corner playing on his laptop. So, get your own water and your own take home containers if you want. She doesn't have a problem with it. + +Yes, the place is a little worn but you don't go there to look at pretty stuff. It's not dirty, just broke down. You'd be broke down too if you practically gave away your food in abundance to your customers. Who has money for new furniture if you take care of your customers bellies. The lobster, crab and fish are fresh and cheap. Try finding lobster somewhere else in the valley for 10 bucks a pound, I dare ya. + +So, head on out, just don't go on a Wednesday, that's their day off. They are open 11AM to 11PM every other day though. You can call in your order and pick it up if you don't want to look at the place. + +Oh yeah, and if you ever go in there and it smells horrid, it's not the place, it's a popular dish that some customers order called ""Salty Fish"". It stinks to all heck! If that plate comes out I usually pack up my food, giggle and finish my meal at home. I don't mind one bit, that's just the way it is. + +Oh and the waitress does speak good English, however, you wont find many Caucasians frequenting this place. That means the food is pretty authentic!",review,HFzJb1EnBsB6fD5s-9fXUA,0,2,0 +MuIXnv7Oq7X3-4aEsp9dDA,2011-01-29,xqsbbNR4VMiSL6m2wl5Nag,4,"Citizen Public House is a great addition to the Old Town dining scene. I love seeing restaurants crop up in that part of town that aren't just catering to the bar scene and making the food an afterthought. My girlfriend and I made reservations for Friday night expecting Bernie Kantak's new restaurant to be packed. Much to our surprise when we arrived, the place was pretty dead with tons of open tables. We purposely arrived early to enjoy a cocktail at the bar and even though we could have been seated right away, we pressed forward with our original plan. + +At the bar, I ordered my usual cocktail while the GF ordered a sangria off their cocktail menu. We also ordered an order of the bacon fat heirloom popcorn from the bar snacks menu. My cocktail was perfectly made and my GF loved the sangria. The popcorn took forever to come out, but when it was delivered they also brought out an order of the calamari compliments of the chef. The popcorn was a little bit burned and we both thought it could have used some salt, which was surprising since we thought the bacon fat would have provided that flavor. The calamari was perfectly cooked and not greasy in the least. I enjoyed the pickled fennel on the side, but my GF isn't a fan of fennel, so she didn't try it. + +After we finished our cocktails at the bar, we moved to a table for the main event. In an unusual move for us, we skipped wine and stuck with beer and cocktails, but I did eye some good finds on the concise wine list. For our appetizer, we ordered the sausage of the day, which was a beef based sausage with a cabbage casing. It was very unique and we both really enjoyed it. For our main courses, the GF ordered the AZ B.L.T. and ordered the Pork Tender Loin. The B.L.T. had tons of perfectly crispy bacon on it, but we both agreed that it was really good , but not great overall. The Pork Tender Loin, on the other hand, was excellent in my opinion. I loved the figs and the sweet potato-chevre strudel. Of course, you could put chevre on anything and I would like it. + +When it was time for dessert, we knew that we had to try some of Tracy Dempsey's latest creations. We normally split dessert, but decided to each get our own. The GF got the cookies and milk and I had the chocolate toffee bread pudding. The cookies are delivered in a bag that you can take home, which is great because you probably won't down the generous serving of cookies in one setting unless you're sharing. My GF was quite happy to take home a little bag of cookies to enjoy later. My bread pudding was awesome and I wish I could have purchased a gallon of the Maker's Mark ice cream to take home with me. I'll definitely be craving this dessert in the future. + +The atmosphere of the restaurant is a little austere, even for my taste. It just seems like they could a little bit to make it a little bit more warm and inviting. Service, while extremely friendly, was a little bit uneven throughout the night starting with the snacks at the bar taking a long time and continuing with confusion over what tables plates should be delivered to. Keep in mind the restaurant has been open for only a week, so these are things that can be worked out. + +We were really surprised to see the restaurant so empty on a Friday night, so I hope more people give it a try. Citizen is a really good neighborhood restaurant that has the potential to be great. We look forward to trying it again to see how it improves and evolves. I'm really hoping it's a successful staple in Old Town for years to come.",review,4kfvccmKDUgCXu_jLYm5dQ,0,2,0 +ABUqetCAtUcDLHWhpsSL3g,2009-08-07,Kba4TmXBgHd_zk-UbDiKkg,4,"THIS PLACE IS GREAT IF YOU ARE TRAVELING WITH YOUR DOG! + +The double bed room was extremely clean and updated. Nice fluffy pillows and duvet covers. Bathrooms nice and new looking. The daily breakfast bar was wonderful and the sitting area clean and nice. + +The one issue was the AC. Jeez it was a rattle bucket and kept us up at night. we would turn it off until we would wake up sweating and then turn it on for an hour, wake up and turn it off.....oh brother. I would have liked a good night sleep, since everything else was nice. + +Pets welcome and that was a bonus.",review,Mgrcyvw45-7JU5wCCT6-oQ,0,1,0 +B60TXdNB8ziFyI2XH4Wlaw,2010-09-08,J2dF8Qp2SepmBB-Y1NrS3Q,5,Two other AC companies were going to charge me double for the same fix. Accutemp has a new customer for life! Highly recommend!,review,pcKja1DALwaeWy9G6VjvEQ,0,1,0 +Mh04jeZN1kKfS_u3JU-I_w,2008-01-13,6SVB0ptxqyEQWwosoZu1WA,5,"If you are looking for TLC in very unique pet products and family style customer service, Posh Pet Boutique and spaW is where you need to go. They have retailed my collection of Decadent Digs there for going on 3 years, since the first day she opened her doors. I have seen her business blossom and become the destination and extra sunshine of the Troon Area. Her loving warmth (sort of Doris Day way) makes you feel like you are in her home and makes want you to come back often. She carries a huge collection of class act merchandise from cute clothes to a killer Kitty high-rise and offers excellent grooming. She is worth the trip.",review,hV225B_UgT368FKzOk2daw,2,2,0 +2ceeU8e3nZjaPfGmLwh4kg,2012-05-30,fGjOanMCzC4n6FnVhZ8iOg,4,"Well, we all went to a going away party here at Casey Moore's Oyster House and the place was fairly nice lots of security around but very limited parking (we parked a few blocks away and had to walk in) food was good but my onion soup was way to salty though and the dip sandwich was by far the worst item to order on the menu (just sliced meat and bread) and I had order it. My wife ordered the shrimp scampi and for some reason it came out with a heavy cream sauce, no complaints because it was good but it was not scampi. Tuna was perfect I had a chance to taste it and that cooked perfect and I did notice a co- worker leave the 1/2 of the fish and chips on there plate no a good sign. Clam chowder was good as a few friends did say they enjoyed it. Calamari was off the chain ""Perfect"". The server was warm, friendly and polite and had some great suggestions for dinner and was very patient and waited for us to have few rounds before we ordered dinner. The place is pretty big and it seems that if you would come and sit in a different place each time it would be like going to a different place. Music was jamming something for everyone. Folks were friendly and the place was packed. + +Now, cleanliness it seems like it could use a wipe down, moping an a power wash in a few spots but I guess after a few cold ones you don't see it anymore. Will I go back? Yes, I would, affordable food, good music and folks all in a good mood I'm there. + +4 stars due to they are still a littler ruff around the edges. + +Peace :)",review,LoYy8ruCxPZZPF78_Bu2eQ,0,1,0 +X6mWr96ibKdXQSA6mpH90g,2010-09-12,z9BrZS-fUHra7bt1OTbzyg,5,"""MMMM. THIS IS. A TASTY BURGER."" - Jules. Pulp Fiction. + +I like this place, my siblings like this place, and it's the best thing I've got to remembering better times back home in California. + +It's a quick fix for people who want good burgers at a decent price. It always hits the spot when I'm feeling like a fatty. :) + +Even considered biking all the way here from my house when my car was dead and going through the drive through. (Coz the cool kids did it back then... In CA anyway haha. And employees didn't care.) +I agree that drive thru is an atrociously long wait during the afternoon (after school). +Peeps who work here seem pretty chill since I always ALWAYS, ask them for the hats and throw dozens and dozens of ketchup packets in with my to-go orders. Biiiiiiiiiiig plus!",review,j0CbgXhpwS8b7qKgZnPmWw,0,0,0 +eGevCRobYnA_HSj60sEWvQ,2010-07-30,thPwnvZR8JSVTahoxhZ-hg,5,"Fresh. Tasty. Interesting. Good ""People Watching."" + +Love everything I have tried here. The Happy Hour ""tapas"" are excellent. My daughter could not get enough of the garlic chicken one. + +The 3-bean plate is delish - kinda like ""meatless chili"" but you don't miss the meat. + +The fruit salad is massive and the fruit served with it is completely top-notch. + +Wait staff is mostly cute college girls, which is hardly ever a completely bad thing. Never had a problem with good, attentive service, which CAN be a problem sometimes. + +I go eat there as often as is reasonable. Highly Recommended.",review,iwZ_7QuZ1tzT6pIZmOlDQg,0,0,0 +hxw-JWXKkYOSjZP0iZlj7g,2011-03-22,eIUqiesI0G5oUDPkbNjX0g,1,"I had one of the worst experiences of my vegetarian life here. I had been to Johnny Rocket's before and gotten the vegan option so I knew I would be ok going here. I was out with my meat eating sister and my pescatarian husband so I figured this place would be the best for all three of us to get what we want. + +We get in and I ordered a burger that wasn't the Streamliner (1st mistake), and just ordered it with the BOCA burger. The waitress takes our order, my husband also ordered his with a BOCA. + +About 20 minutes later the food comes out. The patty looks right. I was a little apprehensive and I should have gone with my gut feeling on not eating here this day, but I ignored it. It had been awhile since I had eaten a BOCA patty (over a year), so I THOUGHT it looked right. (2nd mistake) + +I start eating it and about half way through it the bill hits our table. It was crowded in there so the waitress must have been trying to get us out of there. So I look at the bill and notice both my husband and my burgers say Turkey substitution. I immediately start to freak out. We call the waitress over and explain to her that we ordered BOCA, why does it say Turkey? She then tells us that it is BOCA it just says turkey. I say, no that doesn't sound right. So she goes to talk to her manager I guess because we never saw her again. The manager comes over to our table and apologizes profusely for what happened. I'm upset because how the hell do you confuse BOCA and Turkey? I mean, really. I know some people might think how did I not know the difference. And I thought that to myself as well, but the truth is it slipped by me even though it shouldn't have. And it hurts me every time I think about it. I will never come to this Johnny Rockets again, if any of them ever again because of this experience. + +All I can say is, if you are vegan or vegetarian, and you go to any of the Johnny Rockets, make sure that your waitress/waiter knows that a BOCA burger isn't meat. Stress that to them. Because obviously they aren't trained to know what the difference is.",review,2nXFEyQ06RfcdAXIPbxuwA,0,1,1 +fK7ujDbjhRFEe2D7eIwK4w,2011-02-14,73kMvaRDICT8ekn5dMYKIA,2,"Happened to be at the mall around 6:30pm and decided to go to Z'Tejas for dinner. It was a 25 min wait. Looked across the way and saw lots of open tables at Kona Grill. That ought to have registered as a red flag but since I was starving I guess my mental acuity was off. The hostess sat us in the back of the restaurant with a clear view of the hallway leading to the restrooms. We commented to our hostess that we were awful close to the restrooms. She chirped, yeah. End of discussion. I ordered a grey goose on the rocks, you know, vodka and ice in a glass. What I got back wasn't grey goose and it was mixed with soda, but it was in a glass though. My wife ordered a rib eye sandwich, medium. What she got was still breathing. My Korean chicken was almost warm but I attribute most of that to the spices. It was good but not great. I will say that our server was terrific and the manager did come by to check on us. This used to be a good spot but seems to be going through a transition period to become mediocre. Too bad.",review,-nixD-_P51FMF1h9GXBtMQ,0,0,0 +wCqLDgQKqt_4BTm884MKmQ,2008-07-19,c6h7sVmpMUmTTRtYans4Dg,4,"Being from out of town each time I visit Surprise Portofino is a must stop. The decor could use some sprucing up but over all it's neat and clean. The service is excellent. The staff is very attentive. Always willing to bring you another plate of wonderful bruschetta (and it's free!). + +If you go an a weekend in the evening you get to hear the sounds of Buddy Raymond. His tunes add to the ambiance. He is very entertaining. My family has actually become fans of Buddy and look forward to his oldies. We only visit Portofino on nights that he will be in attendance. + +I had the pleasure of visiting Portofino last weekend and can't wait till the next time!",review,6lJK2VDBJWY2JSLOf7JRiQ,1,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2011-05-09,Fuc_gBqciBUdi0lePpkqhQ,4,"Some hits and some misses. + +Hits : bruschetta and salads + +Misses: Pizzas other then the margherita (luckily though I got the scrumptious tomato and mozzarella pizza) + +Great service and pretty good food.",review,eiA073MhHpCdwBq8u_luZA,0,1,0 +CNvPqN9pa5aJRn-Npcqgdg,2009-08-12,SGP-9umjcLl-4YywUHseuA,4,"This place really hits the spot. It's everything a hamburger place should be and nothing it shouldn't. Their burgers are good-sized and delicious. I attribute their scrumptiousness to the bread in the buns, but their meat is phenomenal as well; add some cheese and green chiles, and it's like a bunch of awesome ingredients decided to get together to take part in creating one of the best burgers in town with a little help from the grill. The fries are effing good too. + +The pitchers of beer are cheap and cold, and if you want to feed your inner hipster they also have bottles of PBR and cans of Schlitz. Not a lot to feast the eyes on - the place has a real old-school ""bar"" feel - but the food compensates for what it may lack in elegance.",review,koCnQtL67F01I-P9DbUemA,1,3,2 +qR83gr56v7IjWEyfxAkg7A,2011-05-19,bAdWLDMXdQThkdg4UPfxkQ,3,Great breakfast! The rest of the menu however is average.,review,3MSa_fdxgsaY9yF9vqmeUg,0,0,0 +mWTFbL-ilQiQ9iQwPnViQw,2012-05-17,x6xMiBNqF9Na0vFGz8KpFQ,4,"I heard about this little gem earlier in the week, and after looking at the menu online and reading some reviews from fellow yelpers, I decided I would try it out. The restaurant was very clean and I enjoyed the music playing, but I think it could use a little more color in the dining room. I was greeted upon entering and was asked if I had been here before. The waiter was very friendly and took the time to explain some of the dishes to me. I asked about the pof pof and he explained that they are like donuts, but better. I passed on them. I ordered the jerk steak over jolof rice, a meat patty, and plantains. First came out the meat patty. The pastry tasted like cornmeal to me, and not flakey like I had hoped. The filling was quite good and just enough spice without going overboard. The steak was very tender and flavorful, with a little bit of heat. For the price, you get your money's worth and I'll have enough left-overs for tomorrow's lunch. Before leaving, the waiter gave me a complimentary pof pof, and in my opinion, it was better than a donut. + +I'll definitely be going there again. + +John H",review,Z2PJ8bhclMLAxQLfgZvE8Q,0,1,0 +EuNV8_SReV_3KeET2Ums6A,2012-02-05,hGbHPwuT2VMtiyyQr8zxHA,2,"I could remember Tokyo Expresses were everywhere in the valley. I loved their food. I was surprise to see them around and excited to eat the food again. We entered the place and it smelled like bleach. STRONG. It is ok. We move to the menu and ordering area. Everyone picked out their meal. Ordered and sat down. We got our food pretty quickly. I got the Katsu Chicken meal (side sui may and drink). The sauce in the Katsu was kinda of bland. I remember the sauce was savory. The sui may, I am sure was the pre-made frozen kind. I was hungry so I ate it.",review,_PzSNcfrCjeBxSLXRoMmgQ,3,4,3 +un3KC2gyMrSG6yqjVRctXg,2013-01-04,C0kNEDhZzMpeg-mGJjL9RQ,5,"Quality sushi, fun ambiance, and the chefs there are a blast to talk with. Definitely worth a visit.",review,LKhkxFZDD7EWMuqf8FlP0A,0,0,0 +bgipXs1CRQ8OBLXc4TBdjA,2010-01-11,hy5FtMQLmhS6sA58ZUkYEw,4,"I grew up at Word of Grace (now City of Grace). Way before the new buildings and it just the small little church. I love Pastor Gary. I would give him 5 stars. We moved but I had always considered this my home church. When we moved back to AZ I started again and was really disappointed with the young adults ministry and praise and worship. I left when I wasn't getting anything out of it and not much longer did they join with City Church. I think they are struggling but I have hope for them. Pastor Terry is the new head pastor and he has the Joel Osteen vibe, which isn't for me, but he is very nice. + +They are non- denominational and love their congregation enough to handle sins or situations other churches don't want to touch in fear of being labeled as 'haters' or what not. I hope that anyone who attends will understand their views do not come from hate. It makes me sad that the other reviewer had such a negative experience and I don't doubt that she wasn't treated with kindess as every church seems to have those rude people. I am not sure what she means by 'closed-minded' but I know there are people like that at every church. I hope others do not have that experience and I hope the church can work on that as a whole. people need to feel welcome and accepted as they are. + +They are also awesome with the community- homeless outreaches, drug addiction help, and so many things I cannot begin to list. If you ever want to help your community City of Grace would be a great place to get ideas of where/how you can help. + + If pastor Terry isn't for you I would recommend Cornerstone Chandler(my home church) or Central Christian. They are not closed-minded but they also won't ignore sins that are major issues. IE divorce, porn, sex, sexuality, infedility, etc. Good luck on finding your home church!!",review,hFtlFksrcLaWHGPNa6SmeA,5,7,0 +FOQ2xb539Hh6Xftznwy1kg,2011-07-03,_QBSgyq0n_HHAa3UpwZfsQ,4,"Not too many video stores around. I will probably be joining Netflix soon, but for now this place works as a video store. They have movies Redbox doesn't have yet, in addition to older movies Redbox will never have. The service has always been good here. My girlfriend has the mail in deal so movies are mailed to her then you can take those and exchange them at this place for different movies.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +FRT-kdKefurxLzcsW2JNhw,2012-01-27,zeO2TcvjkntjMYz2kLdg8Q,5,Best customer service you can find! I buy all of my reptiles and feeders from these guys!James the owner is awesome and very eager to answer any and all questions you have.he will even probe your snakes for free!Every animal i have bought from them has been in tip top shape!Their prices are great and the employees are awesome!I suggest them over any and all shops in the east valley including az reptile center and predators.Give em a shot you will be glad you did!,review,8fAC-siPU2THWDHF1wEdEA,0,0,0 +o_w69y1M6pkKetd1w43i_w,2012-04-03,fggwkxVu8VmZ0DD9Urh-KQ,5,"Fantastic restaurant. Service was great. Food was excellent. Their happy hour from 3-7 is great. 3.00 entree's. Everything from a 1/2 pound burger to margherita flat bread pizza is just 3.00. + +Amazing appetizer is the shrimp and eggplant in black peppercorn sauce.",review,bieJ0AblSMhhqpa5GriXpg,0,0,0 +wH_kpDuTE6ChDAp5AlMfJA,2010-09-18,LOL_VN9Q5JH38WkJP7yYHQ,1,"Don't know where I should start. Grand opening was on September 17th, 2010. We went to try this new Dim Sum place at the Mekong Plaza as they heavily advertised in the chinese newspapers and were advertising 30% off. + +When I got there, the biggest eyesore is that they tried to make their portion of the Food Court as a regular ""Chinese"" restaurant. So imagine the picture of chandeliers hanging in the middle of a food court in the mall. It just looks too tacky, I thought they should've went with a more fast food type Dim sum like they have in San Gabriel, California. + +Upon checking in with the hostess, they don't even issue numbers, they only call you by name. So that was already pretty different from how usual chinese restaurant run things. Totally not efficient at all. + +Once we finally got a seat, things got worse. + +Our ""Har Gow""/Shrimp dumpling was raw! The skin was thick and clumpy, the shrimp was severely undercooked. We asked them to exchange for another one, and it was still raw. We also had to exchange the shrimp egg roll as it was also raw. Their excuse was that they were too busy and did not have time to fully cook the food. Ok.....so how are the other 100s of asian restaurants able to serve dim sum at a fast pace with fully cooked food? That was probably the lamest excuse. + +The trademark ""beef internal organs"" that I always love to order was pathetic. They charged the large price for a tiny little bowl, there were only a few tendons and mostly filled with Daikon. + +The BBQ Pork bun, another staple of Dim sum, was not that great either. There was barely any char siu in the bun, and the exterior of the bun was not fully cooked. + +I understand that it is their first operating weekend, but the idea of a nice chinese dimsum place at a food court just doesn't fly in my opinion. They even offer wedding banquets here too. + +I don't think I'll be returning here unless they really upgrade the quality of the food. The idea is definitely novel, but will be a hard sell.",review,e9HWnHUYlt9758oileaISw,0,2,1 +EEC7t11ciQ6XUjkudRbYSg,2012-04-28,RFtI9BfEPyqmEFqsojVqyA,3,I like it better then Denny's so I stop on by to get some breakfast. It's okay not the best place in the world but if your having a hard time picking between after hours with Dennys and Waffle house I would pick waffle house for sure.,review,kdI1Jh6wN6WzeTM4-fapOw,0,0,0 +_TekkyyFeX_8MBepPIxuTg,2012-06-10,oBrE7tr_OLmlIxz9Ryvnjg,5,If you have never been before you should really try harder... Your mother taught you better than that. Go and buy a smoked pecan paleta.,review,_C8Cx6g2qowNt9RfhENrFQ,2,3,2 +yeLq-452CkaKw1ynn0nRNw,2008-11-26,ie7fgIPhIvYP5O_Ln8Evyg,4,"A dark night in a city that knows how to keep its secrets. But on the 12th floor of the Acme building, one man is trying to find the answers to life's persistent questions: Guy Noir, Private Eye. (THEME) + +It was a night in November. November 23rd in fact. I remember the date because it was my birthday. The snow birds that had started to flock from their summer homes had long since retired for the evening and the godfearing people of Phoenix had closed shop. My two lovely companions and I were looking for a place to fill our bellies. Like moths to a flame we were attracted to a dim light coming from a dark parking lot. We exited the car. + +""Are you going to Mama Mia's?"" + +A beautiful petite girl with the kind of body men write home about stepped out of the shadows. I was going wherever she took me. + +We were led through the kind of kitchen you only see in mob movies. I wasn't going to ask what they put in the sausage. + +We stepped in and figured out our toppings. Trying to figure out toppings for one pizza between three people you may as well be figuring out cold fusion with a box of toothpicks and some masking tape. But with the plethora of options I felt like I had a bag of bananas in a monkey whore house and we narrowed it to basil and fresh tomato. + +The pizza was exactly what a tired and famished private eye like myself needed on a night like this. + +Man working register- ""Is that a wig?"" + +Jetta-"" Yeah its a wig."" + +We left the pizza joint as happy as a twister in a trailer park. + +Jetta- ""I am so getting a weave."" + + (THEME MUSIC) + + A dark night in the city that knows how to keep its secrets, but a light shines on the 12th floor of the Acme Building -- Guy Noir, Private Eye?. (THEME UP AND OUT)",review,6WrOT1dj6sigl_voiwQ7HA,13,6,16 +HUU_y-nnIWWIpqMlB-8L2Q,2011-09-29,YPOe2_7ffDjZLBY_AQZxBA,2,"Not impressed, loud atmosphere, bland overpriced sandwiches. 10 employees behind the counter and no clean tables. How many people does it take to make a sandwich? More like the employees are just here to hang out with each other than work.",review,SwbKEXKORLUSaz4VjjHckw,1,3,0 +qurW9PjV90saHESwsGAwdQ,2008-04-24,Sdtg4GXYv1fVbrFRi9A6CA,4,"Lovato's was the first place that I ever went to spend more than $12 dollars on a haircut. They are awesome. The place is family owned, and Art and his son Scott both had their turn at cutting my nappy hair and made it look spectacular! + +I have since opted for someplace closer but often miss conversing with Scott about working out with his Ultimate Fighting friends. He often had the bruises to prove it. + +Art would generally blow dry my hair making it slightly poofy and not unlike his own Frankie Avalon style, but once I got home and styled it on my own, the cut was perfect. + +Mrs. Lovato, whose first name I really wish i could remember, always offered some ice cold lemonade while I waited and I always felt like an honored guest. + +Scotts kids can often be found sweeping the floors in the summer and they are about the cutest things you will ever see. + +For guys that like a masculine place to get their haircut, but want time and attention given to their look at the same time, this place is perfect. + +They do all that chicky stuff too including waxings but I can't say that I got experience from them on that end.",review,6WrOT1dj6sigl_voiwQ7HA,2,2,2 +UdXn5e3o_biQoUNv0L-RYQ,2012-01-20,-PEGprOXaXIgPU1ur9XOAA,1,We ordered. I had to return my chicken tenders. Undr cooked and rubbery. My wife ordered a hamburger and is now home throwing it up. what a horrible experience. We have been huge fans and now this? I called and spoke with someone who barely has a grasp on our language and they said they would get right back to me. Still waiting My wife is in bed looking so sick. We will never return!!,review,YVaOouu_PCAhJ-GwDlrMBQ,0,1,0 +xI0UZH734lJtm39DbLf-Bw,2012-02-04,7v9LusLvXnauqwLHMJD-ng,4,Only a Mexican food snob would undrmine such a great Traditional restaurant (and believe me we have plenty of those here in Arizona). This is old school Mexican food folks and it's about as good as it gets. The atmosphere is classic and I personally enjoyed it but it is not upscale but then again Mexican food normally isn't. It's simple and that's what Arriba's is. If Arriba's were located in any Eastern state it would easily be the best in the entire state. The beans were great the salsa was delicious and the service was fast.,review,nGvxLe5jdJGbxTYt9XjScw,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2012-05-26,pkZtuVqL3wzGM-aUv70TQg,1,"Hot Breakfast..........NOT, Again cold food when it supposed to be hot....people beware of this over price place and lack of care for the customer it seems that this is the way of doing business. + +*** Again a nice place to visit but DO NOT EAT HERE.*** And DO NOT CARE!",review,duTeTiNX__zYcznMX5CgMw,1,4,0 +YNHPzgdHVpAsvHcvCBQzow,2010-11-08,G6B4Ko9Abr77IdzOGthYDw,4,"I'm a horrible haircut customer. I never remember how I get my haircut and squared or rounded, I just don't keep track. I've been to all of the chains and was thinking that maybe I should finally find just one person to cut my hair for now on until I got a coupon. I really enjoyed my visit, I didn't get the MVP thing cause I wasn't expecting it and I didn't have time for it. They are all pretty knowledgeable and quick. Only once was I not fully happy with the cut, but it's hair it grows back. They are a bit more pricey but I always go with a coupon, I get them every month. I'm not the most talkative person so it gets kinda awkward when you sit there in silence so I love that you can just sit there and watch sportscenter.",review,Mex8qXT7nR89uTKX_qtgSA,0,0,0 +AsX-6ECbV83zGJLUVMre9w,2012-12-17,3Bd56NVx5Kzt-VvqDSDjtg,4,"Food is great. Best Thai in West Valley. Always get takeout so not sure about the service, but takeout is always ready when they say it will be ready. The atmosphere is quiet and cozy - about a dozen to fifteen tables or so. Place always seems clean when I pick my food up and has the type of decor you'd expect to see in a Thai restaurant. + +I usually get red chicken or beef curry hot, and my wife gets green curry mild. The food is excellent. Their egg rolls aren't very greasy like most places. Spring rolls are also made fresh to order with fresh veggies. The only thing is, sometimes the spiciness of the curry will be spicier some days and not as spicy others. Other than that, this place is great.",review,kdg9I9r4EVg06cmEaQcwbQ,0,0,0 +0ieEqGInYunNBaBzg8j_WQ,2006-08-08,9_iaIEgmpJNYE_tBEvrsTw,4,"I almost wept when I saw they had opened a Slices at this end of town. I don't know what makes this pizza so wonderful, but it's delicious. Try the veggie or white pizza... I hear the potato bacon is good too. + + + +The downside: + +The place is usually wicked hot inside. I dunno if they are trying to save a couple bucks and not run the A/C but those ovens make it warm! Just grab your slices and go sit outside in the foodcourt area instead.",review,rPGZttaVjRoVi3GYbs62cg,1,2,2 +53YGfwmbW73JhFiemNeyzQ,2008-10-03,i8aP8MQiESrkl4yHApYRJQ,4,The food wasn't phenomenal but it was very good. The service was excellent. The decor was very cool. A good experience. Great selection of wines by the glass. Very pleasant experience.,review,aPQuGzqs4D8my3K0vXjb8Q,2,3,2 +ttLtsY1S2Angj6hvEdzwDQ,2009-09-19,peXCfNb0h1DwWlr49XalUA,3,"Cliché Central. + +Style without substance can be summed up in their cheese plate: pineapple, melon, grapes, herbed chevre, Babybel minis (they even leave the wax on for ya) and cubes of pepper jack and colby jack served with sesame crackers. I can't make this gold up. + +They serve a lot of ""martinis"" as the name implies, very few of which actually contains the ingredients for a proper martini. But then again, now that I've described the cheese plate, this should come as no surprise. + +If you, dear reader, decide to open a bar, it's really quite simple. Get everyone drunk, quickly, and hire bathroom attendants willing to squirt soap into your customers' hands. Oh hell no, we're not in a recession. The Ferrari up front was paid in cash, I'm quite sure. And that woman over there? 100% real. + +Ok that degraded fairly quickly. Like my evening. + +If you strip everything away and look at it for what it is, Blue Martini is stylish spot to get drunk in an attempt to forget reality. If that's your thing, and want to feel better about your age, check it out.",review,dQO0tQISZyb9L4d5ASnXyQ,15,14,15 +wH9WtaTlrRawH_IpK90RPg,2011-04-15,yk08_3Uobcmd-ZuIsHva-w,4,"So I came here in search for Phoenix's best Macaroni and Cheese. Yep, that's right, me and the inner kid in me are in search of the best Macaroni and Cheese. + +So, ordering was simple! + +So, how was it? Pretty good! It was more cheddary than, say, Beckett's Table (which got me started on this dance). + +The atmosphere was pretty cool there. However our wonderfully bubbly waitress probably came over way too much. Also, nobody coming over to refill our drinks (iced tea) could figure out that we had tea and not water. Oh well. + +On a separate note, I've gone by this place around 2AM it looks like a madhouse. Could be a rather interesting time around 2AM!",review,y7sq26EXGz7XG7DSo8TOuQ,1,1,1 +9CstkLhqS4fXT0VUgu60dA,2012-04-06,pVX13ENQyFwMjIFmpJXIoQ,5,"I absolutely LOVE Club SAR! I joined back in 2010 (I think...). At first, I just went there with my ex (who lived in So Cal and had been boxing) because I have always loved the sport of boxing and wanted to get into it myself (maybe even join the boxing team). Sadly, I exceeded the age limit to join the boxing team, by a few years... :-( +But, at least I could still learn and get fit. :-) +We just walked up to the entrance and just took one quick look around and it seemed crowded and small so we were not impressed. So, we left. +I found out this used to be just a boxing gym before but eventually they added other classes and equipment for others to enjoy. + +Glad I went back later on my own and found out how affordable it was! +I checked and tried a few other Fitness centers and gyms nearby but, when I decided to actually try one of Club SAR's boxing classes, I was hooked! For a mere $3 (a day) drop-by fee, I was able to get one of the best workouts I ever had. I joined after I found out it only cost $75 for the whole YEAR which includes ALL the classes I can take (Boxing, boxing conditioning, Yoga, spin class, kickboxing, weight training, MMA... Yes! MMA too, which I personally love. :-) ). Jonathan & Carlos are great and so is Tom. They're funny, friendly, and they actually remember you after only a few classes. +The pricing has gone up this year but it is still by far, the BEST possible deal you can find anywhere in the Valley. + +Fees + +YEARLY Membership Resident Non-Resident +Adult (18+ years) $99 $150 +Child (14-17 years) $50 $75 +Daily Drop-In Fee $3 Residents; $5 Non-Residents + +If you are serious about getting fit, staying in shape and getting a good old-fashioned workout without all the ""posing"" and pretentiousness of other gyms which are more like ""meeting places"" and ""meat markets"" for the young Scottsdale wannabes, this gym is definitely for you! + +Personally, I recommend the boxing classes because they will kick your butt, they are fun, get you fit and, in shape. :-) +They just got new heavy bags so there are 2 heavy bags, 1 hooks bag, several ""Bob bags"", 2- double-ended bags and 3 speed bags in the main workout areas. Plus, a bunch more standing weighted-base heavy bags in the other ""kickboxing/Yoga room. And, in case you didn't notice from the picture, a full-size boxing ring. +Yes. I am totally endorsing this gym! + +P.S. This is a ""no frills"", serious gym. +So, no whinnying and crying. Suck it up and do some push-ups! ;-) + +Call them for more details: +(480) 312-2669",review,rmjrLW4KSLGGDkS6z5cbFw,1,4,0 +BluXDgvhSEMmvyjTiegWoQ,2010-09-17,xqPbB0e_VSM9LJafV2EHYg,5,"I had an awesome experience here and highly recommend Dr. Dachs. He is here to be a good dentist, not just to get rich. His hygienist was a rock star: So nice and very gentle. I nearly fell asleep during the cleaning. + +I found my way to this practice after a horrible experience at another dentist just half a mile away (see my review of Belmont Dentistry on Raintree). Dr. Dachs was just so helpful and reassuring while still maintaining a very high level of professionalism. I am very thankful that my ""second opinion"" quest led me to him. I now finally have a top-quality dentist in Scottsdale I can trust! + +I definitely recommend selecting this practice. It may take a little time to get in, but it's worth it. They also work well with insurance.",review,z3r8mJ-otQYrwjlBI9KGyA,0,1,0 +YQvg0JCGRFUkb6reMMf3Iw,2009-07-22,QER9RDbcyScD66nNqDLZxg,5,"Woohoo is right. My hubby and I have gone a few times for happy hour and always enjoyed ourselves. Last night was the best so far. We were enjoying a few Left Hands and ordered the Tuesday night pizza special. It was 2 for 1 basically so we each ordered our fave. Apparently the GM thought my pizza was too done so he brought out the "" burnt"" one and already had another one cooking. I actually like my pizza that way but hey, I could understand where he was coming from. The second pizza was beautiful, a work of art. My husband's pie was great, all he kept saying was how great the crust was. I wil definitely bring all my friends and clients here. Special service too! thanks again to Dan the general manager and our delicious server Reina ( sorry there isn't a better word,is there?) Linda and Ron",review,udzY22a6foBOcsU7_7nIPA,1,4,0 +ZZevr02C4b_g9RwnezdvWw,2009-09-22,FjDjBFljL21IvyRhSGpPTQ,3,"I tasted my first Qdoba burrito last night. I went with the Queso Steak burrito. The burrito was hearty with lots of meat, rice and beans topped off with pico and some cheese and sour cream. My wife enjoyed her chicken burrito bowl with similar ingredients. + +I've had many burritos from taquerias to the burrito chains. Qdoba falls somewhere in the middle. I would gladly take a Qdoba burrito over a Chipotle or Una Mas burrito any day based on my initial experience. + +The staff was friendly and we were in and out for our take out order within 3-5 minutes.",review,9qCPmT6ovJjxL4tJB4ANCg,0,1,0 +SgTjnyElc26gPUghVuCuSQ,2012-01-08,SlVJCPTpTjGTRfJywsKVYA,4,"I went here for dinner last night with a group and we had excellent service. The specialty drinks were yummy and were a deal! My favorite (out of two I had tried) was the ketel-one pineapple martini! My sister had a house salad, the dressing tasted homemade, and the croutons were nice and crunchy! I had the Positano Steak Sandwich which was great, my only complaint it was a little too salty, and the fries (and I love fries) were tasty! Other people had the lasagna and they loved it. My sister had the baby back ribs and loved them. If you're looking for a pub-like restaurant that has good prices, pretty tasty food (with a good variety of items on the menu), and excellent cocktails, Keegan's is your place!",review,FSpFbpXpW7R1UjZwQmIqWw,1,3,0 +bgTB6MgdVQssXhkNJ7qIfw,2009-07-08,CMkjJvIAhiFVHOAv85LUvQ,5,"Roka Akor has a classy atmosphere, and a slightly formidable menu to pick from. Everything looks so good, and in a new environment, I want to try it all! But my date and I, after much deliberation, decided to ""go for broke"", as it were and if we couldn't finish, at least we had a good sample of the menu. + + For an appetizer, we got the butterfish tataki and the burnt red tomato salad. These were yummy little tidbits that disappeared off the plate quickly. The butterfish was delicate, and the salad was great - the greens had all sorts of different flavors, and not that ""generic clump of lettuce"" flavor I hate. + + From the sushi menu, I was feeling adventurous and had never had raw red meat before, so I ordered the wagyu gunkan. My date saw the amount of green onions piled on top of this dish and oh-so-chivalrously gave me his piece. It's true that you needed a healthy appreciation of green onion to like these as served. The wagyu beef is ground nearly to a puree - which I wasn't expecting, and I thought the onion was a bit much. + + At for the skewers we ordered, my date liked his sweet potatoes the best, but I was partial to the crispy BBQ. These turned out to be two large ovoid and solid shapes of rice, run through with a skewer. Pure white sushi rice in the center, the outside was caramelized with what tasted like the sweet BBQ sauce that comes on eel sushi, which gave the whole thing a nice, crispy shell. + + At this point, I got to what I consider to be the crowning achievement of the meal: the yuzu marinated black cod. The cod, cooked on the robata grill in a leaf, was meltingly soft and delicately flavored. It was an effort to be share fairly. I believe my date said after our first taste of it, ""Just eat what you want and I'll finish ..."", I looked up from my chopsticks, ""... you know what? Just cut me off half."" + + I wasn't sure that I could handle dessert after eating so much, but we finally decided it wouldn't be fair not to give the dessert menu a looking over, right? So we ordered the baked green tea custard, and it was a perfect pick after a gut-busting meal. Light and airy, it also had some carbonation to it that tickled my taste buds and made me giggle a lot as I was eating it. + + Our sampler of shochu ranged from impressive to harsh, at least to my taste buds. In order starting with least harsh: pineapple, honeycomb, raspberry, and apple. I didn't like the last two, but the pineapple was, in my mind, a fairly dangerous thing to drink when you're not paying attention. Smooth. + + That's it for the food, and as for the service, it was swift and considerate; glasses were kept full, and empty plates whisked away. There was, however, one glaring exception that nearly overpowered the entire evening with its oddness. The waiter, who had up till this point been very nice and chatty, helpful about menu items, and generally a pretty cool guy, handed me his phone number and told us to call him any time we wanted to go partying. + + What am I supposed to do with this? Are we going to call our waiter up and say ... well, what? It flummoxed me.",review,aEZarRBZY7qEMNKk5nePxA,1,2,2 +t4pkeGscooStLjy-Js5Byw,2011-07-27,zNznH47zm3vc9qZGTlggbw,5,"I love this place. My gf and I go every time we visit her parents in north scottsdale. + +Pro's +quick and easy. good service. clean. good food. good management. not too expensive. they also post nutrition info on their menu (that alone is laudable). + +cons, + +the salad dressing is quite sharp.",review,Sjq20F6TBdb1PD3SyM2sDg,0,0,0 +bZivzFTkkjNtUBSuMhoCtg,2011-04-10,1SlDknKfyWbzmyBfcysd6g,4,"Go here frequently, and have never ran into any of the issues other's have yelped about... + +Best rolls +Vegas +Damn good +Spicey cowboy/cowgirl + +I like sashimi...but unless I'm someplace where it just came out of the water...I'm not eating it...so can't comment on that. + +We usually go late in the afternoon and have always had good service and once we had a birthday party with 15 people on a busy night.. + +My Only complaint is the bathroom...it needs some work.....and I do not like hearing employees talking on their cell phone while sitting on the toilet.",review,4r4vhVSc3bYpRdKSAAivEA,0,1,0 +fb9eLHJ4S--TyXsarJJo-g,2012-02-22,DP-5FdE3zulET-QD50V8NA,5,This is my favorite restaurant in Tempe. The food is great with many vegetarian options. The atmosphere is usually pretty quiet and the servers are all nice. Highly recommended,review,vqPpdUmFxd43rgm-j517Sg,0,0,0 +DHk8is9rvfnATsW1AudWQg,2012-08-17,t6BAIdNnHlSZ13b7hhYZWA,5,"This place is everything a sports bar should be. Lots and lots of TV's...for one. I love being able to watch 4 different sports and play trivia all at the same time. + +The drink specials are pretty decent. They're not a dollar or anything, but the big beers are cheap on happy hour. + +The food is great! So far I've only tried the spinach dip, wings and their all-you-can-eat fish & chips. All of them were seriously delicious! These types of food are pretty standard in sports bars but I've definitely had my fair share of unfortunate food items from other places. These certainly surpassed my expectations. + +And last but not least, their star of the show, Debbie. One of the best bartenders I've ever seen. She runs that bar like a champ, knows nearly every face that walks through that door, and pours great drinks. And by great, I mean a good stiff drink that's not so strong that you can't taste anything else in it. + +We frequent this place quite often, and for good reason. Do yourself a favor and stop in!",review,3vDMNCeaiS6SgaheUZv8qA,1,3,1 +hh2lP4_2N-tk_OxmaTf_qA,2011-09-24,J7EM48loaoPizMkm1_-CPg,4,"This is my second time @ J&G's. First time I hoenstly hated it. Second time WAYYY better! +My bf & I stayed @ the Phoenician for a little stay-cation a few weekends ago. We decided to give J&G's another shot. We are both happy we did! When we came in our table was not ready so they sat us at the bar. We got 2 drinks and snacked on yummy popcorn and nuts - SO good! I wanted to bring it to the table lol - don't worry I totally didn't! +We ordered a bottle of white wine and my bf ordered the Crispy Calamari ($12) to start. I was shocked when he said it was really tasty! He is so picky with his calamari, so already off to a good start! I ordered the Arugula and Boston Lettuce Mustard Vinaigrette salad ($10 i know I am such a cheap date) and he ordered the Pacific Halibut Summer Vegetable Vin Cilantro ($30). We also got a side of Roasted Mushrooms Herbs and Chilies ($9) and Steamed Broccoli ($9). Overall the meal was very good! All the flavors were amazing and so was the service. We will definitely return! :)",review,sBqEuMZAa6XXGNzfM4ogyA,0,0,0 +ABrSt3fsirLrUYNVrD3fbQ,2010-08-20,KCsN1gBovcwqlCRrNfVbyA,4,"Another fox restaurant concept-- healthy and simple. I liked going here, the service was great but the portions were kinda small and most of the patrons were really ugly. I did have something pretty amazing there-- a marscapone creamed corn-- it was awesome!",review,jMGNNb-vpLcwFikrxIlTkQ,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-03-21,POr__YNDkjuYZEuuzfd53g,3,Nice place...Need more restaurants..! Pretty huge airport...so long walks..!,review,zxnoE5IjuWoI9mF1gwyg5w,0,0,0 +rCh0P0uRkcjcChXqVeIUaw,2010-07-18,tqwUJAl5oQYg-lUbqItLXQ,5,"Sam, Sven, and all the vendors here make the market special.",review,jLBh-z3JrJkqJfn5VN9OJA,0,1,0 +jGldmslgIegQNM5kvb851Q,2009-06-08,LKn9bToyE1Cs-1Mp5JvIIA,5,"I am being generous with my review. I am biased since this place has been one of my favorite restaurants for years. I love it in Georgia and this place continues the tradition of rocking faces off - Italian style. + +I went to this locale for my birthday party with about 20 friends (unbelievable, I know). This place was more than accommodating. The waitress was fantastic, even though we were a pain in the butt come check time. I took her suggestions for our family style dinner and not one disappointed. I highly recommend the Rigatoni D and Chicken Prosciutto. Both were fantastic entrees. To top it off, we finished out with killer tiramisu. + +There is nothing bad I can say for this place. The atmosphere is what you would expect from a large italian restaurant. I personally love that their waiting area is also the bar. That is just good thinking. It truly is a killer place that is perfectly nestled in north Scottsdale. I am in love...",review,GNVnN2A0FleRHO2oGFidvA,0,1,0 +_mt0EQgGCG-qrLy51RnQag,2009-10-19,2Ouk1wfM0BtHik9tBdUo0w,3,"1. Good Customer Service +2. Clean Atmosphere +3. Good Margaritas +4. YUMMIE Carna Asada Burrito",review,_t_3Dl44GbyMo35IMtlT6Q,0,0,0 +o2BeeJmpf_J9EmC8HQoHRA,2011-09-14,VvczNz2NhOE8YcPI3pRTIQ,4,"It's a cafe on a resort, so you figure you're about to drop major amounts of dough on average tasting food, right? Happily, here it's not *that* bad. + +I got to order 3 different things from here. The Java Chip blended coffee (possibly actually called a frappe) was.. good, but not $5 good. Starbucks offers better quality, and premade mix, for less. + +The second thing I ordered was a scoop of rose water gelato and a scoop of mango peach gelato during half price gelato. Much better. The gelato was smooth, rich, and very freshly flavored. + +Finally I had a feta cheese and spinach empanada. This was also very good, the feta being subtle and the empanada having ample amounts of spinach baked in a perfectly crusty bread. + +Overall, good quality food, OK quality drink, decent value for your money.",review,V7pppn-r6tL_Yb2_msQQFw,0,1,0 +EWnSPExh_T5zTv6oMJOC5g,2010-06-09,ktfhZv5fyxVO3UQIOiN2Ig,5,"I searched hi and lo and had only been able to make good on the very lo with regards to good Chinese food in the Valley. I am VERY picky and I rate most Chinese food places based on the thickness of the membrane of their won-ton soup and the colour of their fried rice. Having passed my non doughy and not yellow test ( yup people, some places give you frozen dumplings versus fresh and yellow ""Spanish Rice"" in a Chinese restaurant), I was able to look into the quality of their other food items. +When you can deliver Mei Fun Singapore style noodles perfectly seasoned with no greasy residue, I feel you deserve that illusive fifth star. +Service was pleasant and there was a lot of foot traffic for take away items. I also note that they offered iced Thai tea with cream. My buddy got a plate of broccoli, tofu, and a wonderful Kun Pao sauce. Sorry, but I think he created it himself and they make everything to order just for food snobs such as we. + +Hmmmm. I am getting hungry. I think I will go there now. Wonder if I should get their pepper steak.",review,2XCsVpAMsGUykrM-BBFEXA,0,1,0 +yOqbQmXXUYmgeBbimTbv2Q,2011-02-25,f_ht9DtX7cfbgDoGLputhQ,4,"I can't speak to the selection, hours, owners, or resident cat. I can tell you that we noticed an 'honor system' as we walked by tonight with our Mojo. An honor system in this day and age?! Yes please! Friend and I both picked a $1 paperback, shoved our bills under the door, and walked away feeling like winners, a silent invisible transaction between fellow bibliophiles...absolutely lovely!",review,YwISM44nNmOSeXdsL-qZYw,1,0,0 +oAxR0TJhPHMrN_hjQWBWMA,2007-01-26,ub93M2SwRWJkEwSNs8xdnw,3,"This is more of a pizza joint for people who have young kids. They have kid games and it gets pretty noisy in here. The pizza is not too bad . If I was craving pizza, this place would not be high on my list but, it was an 'interesting' experience nonetheless. I suppose If I had kids or I was a kid I would probably enjoy coming here.",review,kVYRVCTyN6kb-HqNOhWDDg,0,0,0 +PmPOuRvuN3CoNOi1nBj_TQ,2010-04-26,ZBHnXCJn8l_GFfrE2ki7Jw,2,"They were absurdly busy. I had a bar's eye view of the care that goes into the $3.95 1/2 dozen oysters. I would not order them myself. Dinner felt rushed, I didn't feel like a very valued client, and the poor gentleman next to me waited at least 25-30min for his 1/2 dozen oysters (carelessly drained of their delicious fluids). + +My dinner was good, but relied heavily on it's fat content to carry it's flavor. My cocktails were good, I would come back for those. + +It took another 10min just to pay my tab after I had finished. My dishes were cleaned up by a bartender who looked like he just run a marathon, dripping with sweat. Not exactly how I like to finish my evening. + +Thanks, but no thanks Pappadeaux.",review,zGLzpRlor83RVDcUjBCp1Q,0,1,0 +DxUn-ukNL27GOuwjnFGFKA,2009-01-04,Ij8CuZ18Fue9yEnrnggQrA,5,"So, my friend and I went first to Yasu because we heard it was great. We were traveling on business and therefore using company plastic. So, we show up and the kid working the door says in a very ""Spicolli-like"" voice, ""uh.... our credit card machine is broken tonight""..... So we replied that we were on expense accounts and would there be any way they could manually run our credit cards... The guy replies, ""dude, you're outta luck"".... + +Funny, considering that I am a guy who eats out a lot and am not afraid to spend a lot of money in a place when the food and service is good... I wont be going back in there... + +So we made our way to Hiro..... We were pissed and hungry after driving around and dealing with idiots all over town. Hiro was just what the doctor ordered. We sat down and were greeted and served drinks right away. We put our sushi order entirely in the hands of our chef who did not disappoint. He brought out order after order of fresh delicious sushi and sashimi... We had beer, sake and a great night.... When it was said and done, we spent about $250 for the two of us which was a lot but well worth it..... I'm sure you could go and have a great meal for much less, but we were going big and NOT PAYING!!!!! Morale of the story is that Yasu's children working that night ran us out and straight to their competition where we will be spending money in the future... Go check out Hiro!",review,CtHJ8YRU8Rnn-vEGhgoupg,0,0,0 +qb4PzVr19bXXLBf71dd5kQ,2012-08-03,vFVwBMVzLByC7PcqpdqVSA,3,"Totally sufficient for a few rounds of pool or darts while keeping an eye on the 67 tv screens they have mounted on the walls. + +Just stick to the cheap pitchers of domestic beer. I ordered a rum and coke and it tasted like cleaning products. + +I would come back, but only if I didn't feel like driving all the way to Lucky Break in Tempe.",review,palND-kF1qpMLhkcgAnSxA,3,3,2 +SYHatptm7gpcmYjW1d-o5A,2012-10-06,egNxMtjZNRrpC06LNCyOtw,2,"Yikes. The only reason this place gets 2 stars instead of 1 is because I think their Baja chicken burrito is super tasty & their Mango Salsa. + +Cons: +The place is dirty (dont take my word, read the other reviews) +The employees are always bullshitting until they rudely ask you what you want to order. +The employees never offer suggestions, which may be an English Language barrier. +The front door handle was broken my last time I went in here. Unreal. +The burritos are likley to squirt and get extremely messy on the last few bites....sick. Dont eat in the car unless you have a blanket in your lap, gross. + +If Im craving a burrito, I will likely just go to the Chipotle across the street and wait in line for 15 mins VS this place....I think the only way Ill come back to this location is strait up steal their salsa and limes from their salsa bar. + +This place would be better if they got friendlier harder working employees that actually cleaned the place up a bit.",review,gSBvJ5FqFeSKRJaPiamttw,0,1,0 +ItMihRR-t810HgctGofF3g,2010-10-17,Hw-r-J4GbFT8UCos5ci_fQ,3,"Calling all Vegans, Gluten Free's, Vegetarians and those who enjoy eating healthy. Nourish is probably your Garden of Eden. Hidden within the Optima, Nourish is a health food fan's paradise. The environment is fresh and clean and so is the food. + +Upon walking inside, I noticed how calm and refreshing the restaurant was. Everyone had the same calm attitude and I could tell that this is a restaurant you visit to relax and still feel healthy when you leave. The menu is detailed but not overwhelming. The only overwhelming part was trying to decipher what each icon indicated and soon I learned that most of the food is gluten free, vegan, vegetarian or some other food lifestyle other than carnivore. But, for those not following an alternative food lifestyle, it's still incredibly tasty and makes me rethink my cuisine decisions! + +Nourish serves breakfast all day (bonus) as well as lunch. It's a great brunch spot. The eggs Benedict is spot on. I can't tell what sort of herb or tweak they add to the hollaindase sauce but it doesn't taste like your typical eggs benedict. Their breakfast sandwich is tasty as well but a little bit more on the dry (and healthy) side. Their ingredients are fresh as is their produce. If they push the cinnamon roll on you it's because it's like a cinnamon god's protege and worth every calorie consumed. Plus it's flowing with frosting. + +Nourish has a great patio for dining as well as spacious seating inside, but the patio is covered enough that even on a hot day it's comfortable to sit outside. + +So in summary, Nourish is a good choice if you're looking for a healthy meal that will fill you up. I will absolutely be back and I can't wait to try some of the lunch items that looks tasty. + +Note: Be sure to check the times before visiting Nourish. I was surprised to find out that they open at 11:00 on Saturdays but 9:00 on Sundays.",review,4ozupHULqGyO42s3zNUzOQ,4,6,2 +NkGQRN6ahwQoFEAlHq8NHg,2012-11-20,vW559mVjxmGmpw3yUnjYBA,3,"I'll go easy because they just opened this location. + +1) The onion ring batter won't stay on the onion. The onion was a bit raw too. Try soaking the rings for 24 hours in buttermilk. Then coat twice. Season the flour with garlic and pepper. Works for me! + +2) The happy hour menu is weak!. Pretty much chips and snacks type stuff. Nothing good like sliders etc. + +3) The kids mac & cheese is out of a box. Really guys? It takes two seconds to make mac & cheese from scratch. Go to allrecipes.com if you need help. + +4) The burger meat is good in flavor but the burger lacks seasoning. + +5) The menu is way too big. A scaled down menu with better quality would be better. + +6) The nachos are nasty with that queso cheese. People love traditional nachos. Stack them high and layer them with cheddar. all the toppings. You are a sports bar. + +7) IMO.. drop all of the steaks etc from the menu. You're a sports bar. Leave that to Mastros and Flemings. People want GOOD bar food in a sports bar. + +Bottom line.... love the atmosphere, food is OK, beer was cold, price is a little high for what you get, menu is too big, quality of food is OK. What would I do? Interview a new fresh Chef to bring in some changes. + +Good luck. I'll stop by again for a happy hour and give you another try. Cheers.",review,MjLAe48XNfYlTeFYca5gMw,1,3,1 +CSoURupWEyuyzkjMOExKPg,2012-02-02,ZQrEdO3YpwRI7UZcZ1AYSg,2,"Eh... pasta is way to salty. Just just cause Mario B says cook your pasta in salt water, doesn't mean you have too and then dump salty sauce on top of it. Tried to tell the manager but got blown off. Just because you work for FRC doesn't mean you know what good food is. Also, pizza greasy.",review,zJurvQwVqI5ripRGQaTIlA,0,0,0 +RtwOc-n_RkiUuDGaNfCsNw,2012-01-05,11Cbpvk0QQvqWsQBRh_Gbg,4,Best cheese steaks since the last time i was in Philly. Highly recommended,review,Iqqy89mlRXExxeP8RZqCUA,0,0,0 +AH2pJa2nfvxXkfFP1P-waw,2010-12-30,rygxpQDuH5mfxbPt8tTjmw,3,"I don't know if it tastes like Chicago or not but it's reasonably safe to say that the stuff is cooked to order and consistently greasy and overstuffed, so maybe it is like Chicago? + +The atmosphere is cool I guess, but I'm a Bears fan so it's cool seeing the old memorabilia on the walls.",review,bPWCuFEaVL5F6dT3JgivLw,0,0,0 +rQ4z0EStSZE4acgkne6Hmg,2012-03-12,OKh2j7gfxprNY_BcKSOp5w,5,Tuck Shop is definitely one of my favorite restaurants in Phx. Everything is superb from the service to drinks to food to overall experience. Definitely go soon!,review,JTwQpwYexzuEkYY53XHdVQ,0,0,0 +Vvh2Hd4SsZjEEfKLNKAEWw,2009-08-18,yibnwtn5mEDj1vauF3xJNg,5,"This subway is one of the cleanest, and most efficient subways I have EVER been to. I've only been in the evenings, but I have to say every time I walk in, someone is always cleaning something. Their employees are friendly and the food under the glass is fresh looking and appetizing and in their own bins. Sometimes you can go to a subway and the prep area is a wreck. Thats what makes this Subway so great. Everything is in it's place, and orderly and makes you feel like they take pride in their work. Absolutely I will go here again, and I can't say that about many Subways unfortunately.",review,QEy_xoEcmL0y6N8YLPUhCw,0,2,0 +Z5v1F-tAV897ZmM32N0wfQ,2011-07-24,eaV_l-YPe80-nK_ZbOPHDw,5,Its not a standard restaurant as it is in the middle of a grocery store...but thats just what it is get over it! The food however is fantastic! I ordered the samosa chaat...A samosa covered in chick peas and other sauces and chatney. A delicious Punjabi snack! The portion was very generous and the price cheap. I also recently ordered a dozen samosas to bring home and serve at a dinner party. Very convenient and good service. I will be a regular from now on!,review,0wbS1b2Fwurs_jjxbfJE4g,0,0,0 +0EBR4wDqtkbMC-wghpctEg,2009-10-06,cAavQMNSeNdnLJXbMqynvQ,3,"Sam is da man. + +I was very impressed with the fare here. I had a bowl with noodles and chicken on my first outing, and it was awesome. Another time I came I felt way hungry, so I ordered the SUMO bowl. Whoa. The bowl is a 32 oz bowl, I could have had it all chicken though. The beef is meh. I agree with another yelper that the eggrolls are subpar. They are grilled I guess? I dunno, lame. At another location they had these ""carnival"" cookies that were awesome. Another variety of cookies were the butterscotch. OMG. Amazin. So yes... Sam is da man.",review,gEA9RJY4oSGk3P29_rGAsw,2,1,1 +qd1ajiZRCwqEQJqCgoN1wg,2010-02-23,UxKjwoObUfvLUoNoRwcKrA,5,"As one of my fave restaurant's in Scottsdale, the Herb Box is the perfect place for a great patio and lunch. At dinner the atmosphere is subtly romantic with string lights illuminating the patio. Other than the ambiance, the food is some of the best fresh local food I've tasted. A personal favorite is the Free Range Chicken with Goat Cheese... Can you say tasty? My mouth waters just thinking about it. Walking in, the crew at the Herb Box is some of the friendliest you'll ever meet (and the funniest). When you go, make sure to save room for dessert... the cheesecake of the moment is always a win!",review,K2t_85TGaA5gPjsG58FTHg,1,2,0 +m9i6aX4nmuTwqO5PjeLNZg,2011-08-24,rP1zhsbjbCjY_2tLEW85Ng,5,I was referred to Jones Family Dentistry for an emergency procedure. I cannot express how incredible the staff and doctors were. I appreciate all the time and help they gave me. The follow up phone call really showed how caring they are. AMAZING Dentists!!! My family has a new dentist. Thank you!!!,review,Tz6y8QJ-OHEeG7n4aEYcLw,0,0,0 +7wCysP5dwB0KdoPeHH2i2g,2012-01-11,mZHPFBjcBq5TQgp2Rzvckw,2,Store is never stocked. Always out of stock on items. The Walmart on Bell Road is much better. Always has what I need - all the time.,review,bORzRtWe59DOG9Q8oiGSgA,0,0,0 +hZRLGfRrZTo9up2P-0aAHg,2010-07-22,vOzUziyuZz8psJCYNau-Bw,2,"I got 3 strikes at Verde, hence...I'm out! Strike 1: Not very vegetarian friendly. Strike 2: They have all the necessary items to make nachos, but when asked if they would make me nachos I got a very quick and blunt ""NO"". Strike 3: When forced to order a meat dish and request they not include the meat (the most EXPENSIVE ingredient) not only did they make no attempt to substitute the meat with maybe beans, or guac, or extra cheese, they still charged full price! I don't want to eat meat and I sure don't want to pay for it. + +And as far as the food, well, they got that part right, for a place that serves fine fast food, when you ask me how my meal was, my response would be ""Fine"".",review,BfetZm9fa0zqyAFn8vo_6w,2,6,1 +IWwt0vm8lYbVoyGSPd2Z9A,2012-05-07,fSrHsZ4bmp2BjlksrpWWog,5,"Being from San Antonio I missed Rudy's so much! This Arizona location is similar, but different. The BBQ is definitely a winner, but their now commercialized packaged BBQ sauce is horrible! Bring back the other stuff in the Styrofoam containers! I will still keep coming for the brisket when I'm in the area!!!!!",review,Rt0-P8j-JtfAeaZAGYa8ig,1,1,0 +yOYFhiTjT-SM4spKtDk92w,2009-02-08,AMbOLJwByQ7st4EOO1Wfmg,3,"Amanda B organized a UYE for Dim Sum here today. They do Dim Sum from a menu instead of carts and it works really well. They also have a picture menu to look at with many of the items on it so folks like me can have a better idea what to order just by picking the picture of stuff they liked on a prior trip. We were pretty much the only folks there for quite a while and we had the full attention of the staff. Not all of the staff is fluent in English but I can only recall that being a problem with the tea. I liked my choices a bit better this time, experience helps, and Marian H was helping me with sauce pairings as there were several to choose from. + +I almost gave them a 4 but for the restroom. The fixtures had a lot of corrosion around them and in general the restroom showed a lot of wear. I flushed the urinal and was washing my hands and it seemed like the running water was very loud, I looked over at the urinal and the valve had stuck and the place was indeed flooded. I beat on the valve with my fist until it rocked back but by that time the floor was quite deep in water. I mentioned it to the hostess and they had someone in there with a mop quickly. + +I would definitely go back here again.",review,Ps1Db9zOatoF_76FZNO5CQ,4,6,4 +iNvY0zAlaD_ye7Z6rHu-Ug,2011-07-06,Ghbad4hgTEolB6zZJNmCAg,2,"Been to this place only once. Coming from Chicago the experience at this place was ok, but I've had much better. Would not go again since I think there are better places out here.",review,9bP3urjM__IP5csFh9ZsuQ,0,0,0 +AaKlegu7gmOCD4rEESF76Q,2010-05-03,-XBrsGGSP1wTZrhX_krckQ,4,"So last Monday the hubs and I got invited out to join some friends for $3 burgers at Maizies ($4 if you add cheese) + +For 4 burgers (All with cheese on them) and 4 beers our total bill was only $30!!!!!!!! That is a smoking deal if I ever did see one! + +Our burgers came out fast and hot. They serve them on chibata bread! They give you a little side of chipotle mayo that is delicious, but not enough to cover a burger. + + +Our waiter was super fast and friendly! We will for sure be going back",review,6ts41fCsDKHbFZaKOMNmVQ,1,2,0 +cT_rocMh92B9t62Disp6gA,2010-11-28,uCw_dEKiJ_CCZs8oUc4Q8A,3,"Wanted Thai food near Chandler tonight but realized few are open on Sundays. Here's how the morning's research played out: + +1. Great reviews for Thai Rama on Yelp but no hours of operation. Strike one. +2. Look for hours on restaurant's web site. Strike two. +3. Call restaurant. No voicemail greeting after 34 rings. Strike three looking. +4. Discover Facebook page, which despite having just 85 fans does include hours of operation, as well as some nice feedback from patrons. +5. Will try Thai Rama tonight with unfairly high expectations. Hope the food is worth all the effort it took to get the most basic information.",review,LP8JFPcEtA0ti8g_BRBX4w,0,0,0 +oGYPsU7IJPhyVpd0F5lfTg,2009-06-07,BmaFuZpxPs9Eg-F4ju-l4g,5,"Sunridge Canyon has been one of my very favorite courses since I first played it 6+ years ago. I have to admit I did work here for a two-year span several years ago, but it was one of my favorites before, during, and since then. + +It's not as hyped as Grayhawk, Troon, and some other courses but it's just as great of a layout, if not better than some of the more popular high-end courses in the valley (definitely better than the overrated Grayhawk). The course has the rare distinction of being very playable yet very challenging at the same time. You'll be toast if you don't hit it fairly straight on most holes, but you won't be punished for hitting it where you intended like some of the blind-shot-heavy courses (i.e. We-Ko-Pa) here in the valley. I've shot in the 70s one day and in the 90s the next out there. + +Besides the superb and scenic layout, I also like the simplicity of the overall complex. It's not at a big resort, there aren't multiple courses, and there is no grand clubhouse (not that all those things are always bad). It's just the 18 holes, pro shop, and a restaurant that serves up some pretty solid food. The staff is friendly and helpful, too. It's like a neighborhood course albeit a high-end one. + +They have some great summer rates for locals this summer: Any day, any time for only $35. I recommend all valley golfers to enjoy that rate while it lasts. I played yesterday and the course was in good shape tee-to-green, and outstanding shape on the greens. It's been awhile since I've seen greens roll this well on a $35 course here in town. + +One last, but important, note: It gets WINDY out here. As in, it gets windy every day. The course plays through a canyon and the winds are swirling all the time. An early morning tee time is best since it gives you your best chance to take on the uphill back-nine without the wind gusting in your face.",review,XbzB2i2fjggHsPXtQcOJUA,0,2,0 +KCKq8rwYSaVFHP8w694TAQ,2011-01-07,jg_HqwaKLvacmjI8L41MLA,4,"This Ace Hardware is another gem for the locationally challenged Desert Ridge residents of which I am a part of. + +The staff is helpful, they've always had what I needed and it's located in a plaza with several good restaurants, a gas station, Starbucks and a Safeway. + +It's so much better than running The Home Depot for an item you need, but will never be able to find on your own. That's the great thing about Ace, you can always get help when you need it.",review,Sa64rQmghfE9i17_dRIDyw,0,2,0 +OFBJtqWGSx6n6CchtVmoRw,2010-10-11,coExktpilQIUCVAdjUfPhg,3,"I visited on high reviews. I think it's a little over-rated, but good none the less. My burger was a bit overcooked, food was overpriced but the service was top notch. Great service, exciting atmosphere (although a bit cramped). I would go again with hopes of a better burger.",review,ia-Bk0oHTcutM7_Kq6Jrlw,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2010-05-23,4gwyUW9HiZOIc3QWAyukTg,5,"Inside the Clarendon Hotel in central Phoenix, Gallo Blanco has quickly made a hit for themselves with hipsters and urban dwellers alike. They offer a refreshing alternative for hotel restaurants, with lively ambiance and great food and drink. + +Gallo Blanco's tacos are surefire hits. They're served individually, and come lined up in an appealing silver taco stand. We've ordered the carne asada and shrimp soft tacos, and, wow, they're really mouthwatering. The shrimp is flame grilled and seared, bringing out a nice full flavor. The guacamole is slightly sweet and chunky, and paired with outstanding tortilla chips, this is a must-order appetizer. Even the sauces (I prefer the red chipotle one) are addictive, either to accompany the supreme tacos, or to be enjoyed alone on chips. + +This restaurant is a fine addition to the emerging downtown Phoenix foodie scene, and with prices extremely reasonable, you get a lot. A good sized meal for two (sans drinks) could ring up at $30-35, which is a good value for great food. Try Gallo Blanco, bring friends, and get a bunch of items. Although I haven't explored the rest of the menu, I sense that Gallo Blanco's items don't stray far from excellence.",review,eJGh4UF0zHIPPLZG1NkpgA,2,3,0 +K8pM6qQdYu5h6buRE1-_sw,2011-08-13,ClGtiTpDEscUGdgKYwmf_Q,4,"Definitely going to make this a normal visit instead of waiting 3 years to try it. Kool Aid in a Mason Jar was all I needed to see to know this was not going to be a typical dining experience and something to remember. Food was amazing, the staff was friendly and the prices for the portions were more than fair. Only the off beat location prevents me from making this a 5 star review.",review,s0G9Z_P8gTSQF6uKgcOZ0w,0,0,0 +MmS6Bt9RBCUDHdw58i8cjA,2011-03-08,EsT5tyL6beb-lT0OLmWyog,5,"I love pueblo pediatric also! And, also surprised there aren't any reviews! +There staff is always friendly and helpful. Rooms are always clean. + I take my baby to Dr. Salek. He always answers all of our questions and never makes us feel ""stupid"" for asking. He also takes his time and even asks us how we are doing. Most physicians these days are in and out of the room before you can even feel like your questions are answered, but Dr. Salek really takes his time. +I went in during a very busy day...flu season actually. My baby had a fever and I called the office to fit me in. They did surprisingly and I saw Dr. Salek. He examined my baby and reassured me his fever is fighting off infection and not to worry. Well as any mom, I was worried and continued with my questions...I was there for 30 min with him and not once did he make me feel rushed. I even thanked him for squeezing us in and he replied ""we would rather stay later to see all our sick patients than to send you to urgent care because we are overbooked"". +Now that's what I call service...if only MY doctor would fit me in and not send me to urgent care! +I haven't seen the other physicians but am sure they are just as good! Also, they are a private practice from what I know so each physician owns part of the practice...meaning they take pride in what they do!",review,ZXTIFYJPsqBDeBaoGKJc_Q,0,1,0 +k3VlKirVjVK6t6cDFvCOpw,2011-04-10,_JrBMUKMGk7iaz3Ji4AuOw,3,"It was maybe two months after this place opened that I decided to give it a try. I didn't go to the restaurant, opting instead to use their delivery. I placed a large order for two (~$80) and the food was ready and delivered withing 30-45 minutes. The food was of decent restaurant quality and definitely a good place to get steaks, but it was no where near the quality you would get from Texas Roadhouse or Outback and neither is the price. I'd definitely recommend trying them if you are looking for a cheat, good steak fix.",review,LycBOkA2piDMQTdpkY5YoQ,0,0,0 +A-ZhvQa5A-XSqZB3HH6TVw,2009-01-02,QzNwiSvEqQwWsitGmiGXOw,4,"I'd always heard tales of the fabled Sonic Drive-In, but it was like a whisper in the wind or a thief in the night...I never truly believed. Legends with tantalizing visions of juicy burgers, golden fries, creamy milk shakes, and flavored sodas came across state lines into Los Angeles, but how could such wonders be true? + +What began as an ordinary day would end in a night forever seared into the archives of my mind. As we were blindly driving through the dimly lit streets of Phoenix, an illuminated sign appeared to us, as if an answer to a prayer. Sonic came to us all at once in a haze. We ordered burgers, fries, onion rings, popcorn chicken, a corn dog, chili tots, and shakes upon shakes! Oh, the bargains! We laughed! We danced! We wept! The next morning, all I had was the echo of a stomach ache as proof of the marvels of the night before. + +Maybe, just maybe, if I clap my hands enough and really believe, one will suddenly appear in the South Bay. One can only dare to dream.",review,feDtiv33q5Td6HvmiKDYoQ,3,3,4 +tI600wWPFDc4bxEvrbBpRQ,2007-08-05,AjntZYa-1nlKOLkxCSKOSw,4,"Decent wash, generally pretty quick. Used to be Octopus Car Wash. Has lube and detail center, although I have never used that service. + +One of the better wash places- way better than Danny's for sure..",review,D9aj6AjCyLp-zp8fozL8aQ,1,1,0 +VKNl2-aF4n1x7lPVyU-Mag,2011-03-05,cQnjSrJ5jLhkEIt9xgC2Vw,4,"This restaurant is close to my office, so we go for lunch at least once a month. I love that it's bright, with great modern decor, and the seating is comfortable. Service is always very good. The prices and portions are a average for the area. The cuisine is a twist on Sonoron, but nothing extraordinary.",review,pV7C6w6rQLYl7BS9-J8cUA,1,0,0 +6YWp7frmHKuPLYSlPyUdsw,2009-12-06,T5GjSfKEl4tRrPoaaJ_tBg,4,"i enjoy Barcelona. + +when i moved to Scottsdale, AZ, this was he first bar i went to. It was right down the street from where I lived (which ended up being a great location). + +all of the greatest friends i made during my year there i met here and im still in touch with today, + +i normally dont get into that whole ""club"" scene...but i always had a blast when i was there. + +i do have to say i would never go there looking for a Mr. if i was single. i don't care for Scottsdale men, they are WANNABE's, drive their BMW's yet live with like 6 other roommates just so they can AFFORD that BMW. If there was a section on Yelp about Scottsdale men, i don't think there would be enough room for my negative opinion. this place is full of them YES. + +But like i said, the service is great, i loved my bartender James. and i always had a BLAST when i was there. + +i miss you Barcelona. xoxo",review,JEfRjBaNqdInGz2_Zx3mxQ,0,0,2 +Jw1ucgEz9SlUKK7_7sqOdw,2011-02-16,jN3T5zU6P5fZolndTLWYCw,5,"In a never ending quest to find new lunch spots me and a coworker stumbled upon this place. Hearing it from another person we were originally looking for somewhere else. + +Overall I thought the food was excellent. A generous portion, and a price you can't beat. A little difficult to order but got exactly what we wanted. Only problem I can see is no where to sit. So you have to take it to go. Still worth it.",review,edNdxDyzMiZCHEBMbo8H4Q,1,0,0 +7TTGDhtXBTeii0uPxOSgyA,2008-11-30,b_oj5jIX4iHLNpt9RQq1BA,3,"Playable muni track for players of all abilities. If you've never played golf, this would be a good course to learn at. For low handicappers, it's birdie paradise. Kenny Mac has a large chipping green and two putting greens, as well as a driving range equipped with crappy range balls and mats which I refuse to use. + +The course itself is wide and flat, and is certainly not a destination golf course. The fairways have generous landing areas and the rough is hardly penal, while the greens are mostly accessible and large. During the summer time, the fairways run out and the course plays extremely short. + +Bonus 1/2 star for having lovely cart girls.",review,dQO0tQISZyb9L4d5ASnXyQ,1,1,1 +QMIR_VeLPSOp-d730i5mJA,2012-02-01,XCOHKPe_PKB3SVBBNn9wfA,5,"Move over Jacques Torres! Angela has come to town and just might be the next big thing for Phoenix (and the confectionary world!) + +I happened to find this place just on a whim....I was reminiscing the other day about all the wonderful chocolatiers in other big cities, and it occured to me 'maybe there is a chocolatier in Phoenix?' Sure enough, there is!! (thanks yelp!) and she's GOOD!!!! + +Angela is as sweet as her candy is! She explained how she just started this business in October of last year; she is a self-taught, talented and creative, as authentic as it gets, chocolatier! She uses all organic ingredients, including fair-trade organic chocolate. You will find many whimsical truffle flavor creations like Raspberry Rose, Mudslide, Strawberry Balsamic, Lavender Lemonade, Madras Curry, Avacado Wasabi, Maple-Smoked Bacon (yeah, I KNOW!)....and like a million more! AND the best news of all, is that she says she has perfected a dairy-free recipe for truffles...I. CAN'T. WAIT! I hope I'm the first to order that batch!! Besides beautiful, flavorful truffles, she makes her own marshmallows (in various amazing flavors as well) Chocolate Bark (which is always dairy-free) and even different hot chocolate mixes. + +The most amazing thing of all is....now, get ready for this....all of this magic comes right out of her home kitchen!! THAT means, everything is made with *love* :) So, if you happen to yelp this, like I did, the map will actually take you to her business, which is located in her house, in a neighborhood (a little confusing at first....) but it IS LEGIT! She said normally it's by appointment only (I was not) but she gladly had me in and I got to see some of her gastronomic creations anyways (yay!) However, she says that she normally sells her stuff at the South Scottsdale Farmers Market (Wednesdays) and the Tempe Farmers Market (on Warner and McClintock on Saturdays) In fact, if you go to her website, you can customize a box of chocolates and pick it up at the farmers market of your choice... (can't wait to do this!!) + +Needless to say, this made my day...no, like, my week! SO excited to have a real, gourmet chocolatier right in my own neck of the woods! Woo hoo!!",review,wLuDGMXytNVTF8ZU2gwUEQ,2,3,0 +c8XlQvVNwKhH9BOHEObtNQ,2011-04-25,z5h9wURk-smtCzZ8pbyxlQ,2,"I used to be a huge fan of this place, but it was just ok this time around.. + +A bunch of us went and I ordered their steak for two.. 22oz. Thought it might be good. It was dry and had no flavor. She had asked at the beginning ""Do you guys want A-1?"" I said ""No thanks."" A good steak shouldn't need any sauce. I should have asked for a ton of it.. just ugg.. + +We also got their artichoke, which was actually not too bad. I love the one they do at Cheesecake Factory. if you combine both, you have the ultimate smoked artichoke. + +Everyone was ok with their meal and one of my friends loved his. He got the chicken fried steak. Cant really mess that up I guess. it was pretty good. + +Id go back, but Im not the fan i used to be of this place.",review,_4lqpCYCqOQzbB6xQGGhrQ,0,2,0 +v6zRA0WqOODJjmpvstrpGQ,2011-02-08,qQ7hWJvzM9qZyiyzdsXGtQ,4,"Great service and large portions. I like it. Nice, clean building too. I had the alfredo and it was tastey and was really like 2 meals beacuse I had the leftovers for lunch the next day. A little pricey, but not too bad.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +4zfrcEmGvZ4oYKx_revTxA,2012-11-15,IDJNccH5xoGU-_we9OU2kQ,4,"Pho is great every time, service is fast and friendly, potstickers are the best I have ever had and they are only $3.50. Plus %10 discount for Intel employees.",review,uqEQsMbvsQQcqKpZrPyYwQ,0,1,0 +gUt-pPUpOVVhaCFC8-E4yQ,2011-03-27,Qv1jJdZftPlfJef45OX3GQ,5,"Bomb ..................................................................................................................... +Heated toilet seats",review,_tTNzjkD-pvWqSb-Ahw9Uw,0,0,0 +XKFGZwvsk3GVzd1CZdWpIg,2012-02-09,W2wNTUAq5AFVgTiJsXRkqQ,4,"My first time here. Service was fast and friendly. Had a HUGE slice of pepperoni to go. Really good, fresh, flavorful pizza. Love that I can get it by the slice!",review,vzAvkSRois2VMqj_AT7xVA,0,0,0 +U6oNWTxVTnuuCL0BPRZCSg,2012-01-07,NDFCbn9vIRXnAJtjIUHriQ,5,"Just went to this theater last night, and it was great! Started with friendly staff...every one of them! (not common these days) Went to get a popcorn, and the nice girl suggested....""why don't you press your button at your seat and someone will come serve you! Take advantage of the service!"" We went to our seat and after we pressed the service button, someone came within a few minutes. There was a full menu at our fingertips...including alcohol and specialty coffees. Our seats were comfortable, leather (or pleather), roomy, we could stretch out our legs without touching the chairs in front of us, we had 3 cup holders between the both of us, and the seats leaned back. Not a bad seat in the theater...we got to pick our seats BEFORE we went into the movie on a touch screen computer/pad. + +I'm really impressed with the prices, too, because for just $2 more than a regular, cramped, loud, teenager-infested movie theater, we felt like we were getting First Class treatment, all night! The snack, food and drink prices are typical for a movie theater; but not more than it would be elsewhere. Pretzel was about $4.50 and Hummus was about $6.50 for example. + +I'm sad to read Ruth Ann's review because it sounds like an isolated incident, and it also sounds like they did a lot to take care of the issues she had...an experience can't be absolutely perfect. In my case, there was a little bit of stickiness near my cup holder, but that's not something that will bring my experience down an entire star or 3! + +Go to this theater! It's really a great night out! (As long as you like the movie you pick, which we did :)",review,UFQ4WzoA5emSWsSpzOtyAA,0,1,0 +vF4d_jh3shJx8jU39AZdqg,2010-09-20,ReCxfxjT5EPqIn5vvBR_0g,3,"3.5 stars. Went to the Calo Flamenco show this past Sunday, brilliantly talented company of dancers and musicians. + +The Center just completed a year-long renovation this May, completely refurbished all 1,500+ seats, added guardrails and orchestra level handicap-accessible seating, and enhanced their central A/C system. + +The Chandler Symphony offers free concerts on monthly basis. The Center's programming schedule can be found here: +http://www.chandlercenter.org/performances.html",review,r8xfTpifZ7gP5Cd5CSQaIQ,1,0,0 +lAGDe38li38fyf971CslFg,2010-02-10,Pr2joZGKMm_GHqvKZTSlpQ,5,House special chicken is a must. This is not a fancy schmancy place so you know the food will be good! Never have had to wait for a table. The banana thingies they give you for dessert are awesome too. I give it 5 stars because of the huge selection. Pei Wei and PF Changs are ok but they have a limited menu. And a LARGE wait!,review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +3utuLtXNNvXAzwTgpyD9vQ,2009-03-28,Xzx04tG4ndBxM3YSsdfHmQ,1,"Some of my friends brought me here last night and the first thing that came into my mind was that this was a set up for To Catch A Predator. I was ready for Chris Hansen to pop out and grill me with, ""What are you doing here?"" If you feel like Kubrick's Lolita really speaks to you, as in it mirrors your life, then you've found a place to feel comfortable in your pervert skin. + +If you're of age to consume alcohol, they've got a bar here. The thing about this bar though is that they're really sloppy about pouring drinks, ie. a Manhattan should not taste like a barber's cleaning solution. The decor and set up of this place really needs a face lift. + +A few pluses though... If you're under 21, I could see how this would be appealing. I'll admit that the under-21 clubs that I went to when I was under 21 were fun, but now that I think about them they really suck. It seems like an alright experience if this is your first step into the club/bar world. The DJ's here spin pretty much straight hip-hop which is fine, it's very mainstream though and nasty bumping music. + +If you go here you're one of three types of people: + +1) You were dragged here by your friends +2) You're under 21 +or, 3) Your usual excuse is a heart-felt plea, complete with waterworks, that goes something along the lines of, ""I swear, Officer, I thought she was 18!!!!""",review,FxxYCRPcpd__yhRRmmtyMQ,2,2,3 +MXOdsPTLQPsQK9hUq01DWg,2011-11-06,0xA6Q_vQhVI4hZh7Wvaw5Q,4,I came here for a Yelp event and had a great time. They have the place somewhat divided into two sections- bar and restaurant. I liked that the patio opens right into the bar so you kind of have an extended bar. The food was really good and the staff rocked. I have been meaning to go back. I'll put that on my to-do list!,review,H_JsAwjiGEOr_RlZmwfNsA,0,0,0 +bBjBTLRk0jxEySjixSFUkw,2012-03-18,TVWhHE1oRBFbWiDEsOe8aQ,5,"These girls know how to make working out awesome and fun!!!! Quality instructors, will not disappoint!!! Lots of variety!!!",review,BtQVxFotHFK3T2FtIrBWmg,0,0,0 +0a8hLC1V7jgOjRigoBohAg,2010-07-11,QRn7Ayjmpe79GxTp5VYQ9g,4,"Super fun!!! I haven't been to this park in years so i definitely was overdue for a fun and wet time!!! + +I went this past Saturday with my friend and although there were a lot of people there it was far from crowded! The longest line i had to wait in was for that toilet-bowl type slide.. (which was super scary for me, btw). + +I would rate this place with 5 stars however, their food selection is very unhealthy and ridiculously expensive. My friend and i wanted to bring snacks (healthy sandwiches & water bottles) inside but our ticket voucher stated that food & drinks were prohibited, bummer. + +Prior to heading to Sunsplash, we filled up on a super yummy & filling breakfast at Cracker & Co, conveniently located less than a mile from the waterpark! About 2 hours into our wet & wild time, we did take a break and treat ourselves to two large icees (for $8, nuts.. right?).. and before we left we had a scoop of ice cream each for $3.. each. Ha. As i was chowing down, i looked over to my friend and said, ""we could buy a half gallon of ice cream for the price of this ONE scoop!"" Sheesh.. whatever, it was worth it.. we supported our economy that day. You're welcome Economy! Lol + +Over all, i had a blast acting like a dork & reliving my teens. There were tons of lifeguards on staff & they helped keep everything safe, organized, and everyone happy. I am planning on gathering more people, including my boyfriend to go THIS weekend too! We might try a different park though, just to keep things fresh! + +The wave pool, the lazy river, the variety of slides, the lily pad cross... Sunsplash is a SUMMER TIME MUST!",review,e8Ux_b9e3OGceknRqi44WA,2,0,2 +O6ogkhJOdaX81sNC9_RAOw,2009-10-09,ih0n8GeFN5YFdq_QJdNcLg,2,"There's 1 casino my tia wont go to, but she doesn't remember the name of it. Guess what? I think this is the place... + +I thought Wild Horse Pass Casino was already open. No! Not until Oct. 30. I think Wild Horse needs to reword their billboards. So we drove a few minutes down and ended up at Gila River Casino. Next time, I'll pass! + +Super small, lame security and the machines suck (literally, the machines inhale your money like it's water). I spent $50 within 3 mins without winning anything. What made me scratch my head was the set up of the machines. You'll see a row of .25 cent machines then a random $5.00 machine in the middle of it! Or a row of $1.00 machines and a random $25.00 machine thrown into it! What the heck? + +Again, I'll pass on Gila River.",review,Fpd-Q0_stZUq4jP1DtLxjw,2,3,2 +m_fi31gTJ1aASUZbS3QioQ,2011-10-17,--TqfVGywiYWh7Sn9ksBmA,4,"Sadly, this Souper Salad has closed. :-(",review,ikm0UCahtK34LbLCEw4YTw,1,1,1 +-WZIxGXJHMGidZXRhKxP3w,2010-03-29,FRoQi0lZiE39b-XLm-M63A,4,"It was a Sunday morning & Mimi's was PACKED! We walked in, gave the hostess our name & told the wait wouldn't be too long considering it was just the two of us. The décor was French quarter New Orleans-themed, with Parisian style knick knacks & art work abound. A bit on the kitchy side, but quite nifty IMO! What I found to be not only impressive but wise was that they had free coffee, mini muffins & sample size nut loafs for the waiting patrons, which mostly consisted of seniors & families. + +Following the hostess to our table, I couldn't help but notice, the humongous portion size of ALL of their dishes. + +The menu had so many mouth watering choices, but considering I was feeling ill, I ordered a bowl of granola & a (YU-MMY) buttermilk spice muffin. Boring I know, but lemme make it up to you by talking about moms dish, the 3 egg avocado & crab omelet which was made w/ jack cheese, tomatoes, scallions, bacon & asiago cream sauce, accompanied by red potatoes, choice of one of their mega-sized (hot & fresh) muffins & fresh squeezed O.J. + +The service was on the slow side, perhaps understaffed or just overwhelmed, but our waiter made it up to us by giving me choice of beverage & extra muffins, no charge. + +For those of you who want healthier options, don't you fret, they offer a Fresh & Fit menu as well. + +All in all, I really enjoyed my dining experience @ this Mimi's location & will definitely return if I'm ever back in Phoenix.",review,f-xJLG6AsPqifz_otUP8wQ,2,3,2 +L-bpJXpA5875dLb7A4wh6A,2011-12-16,DQBVIeOxiDnfsDJGDB14hw,3,"Does YC's stand for ""yucky chinese?"" + +That's what I'm wondering as I am slowly trying to put down this food. This is such a fun and exciting concept, and the service was beyond amazing, but wow... this ""food!"" My sauce to meat/noodles/vegetables ratio is about 100:2. Being that you're supposed to choose your own food/sauce, including the amount, it should be my fault; however, the nice young lady who works there made my sauce. There's a menu board of how to make your sauces, but since there are two meal sizes you can choose from, I think they need to re-doctor those recipes to fit each of the sizes. I feel like I'm eating spicy soy and sesame sauce soup. + +I think the price is pretty reasonable for everything you get: meal, drink, soup, great service.YC, re-doctor your sauce recipe and I may consider my return.",review,zPiEroQrxxyBrHSUAcymBg,0,0,0 +u9MKnG0PqI8N7ixSfrrTiw,2009-01-22,r_iDneLEBvaT1unCtxzojw,4,I've been to Joe's & Bobby Q's but Dave's takes the BBQ on this one! We got Dave's family portions for one of our many tailgating experiences. We tried all of there dishes and the beef brisket was delicious as was the pulled pork. And don't forget the cornbread muffins. While this is a place you cannot go often or you will be the pig! Its worth the calories every now and then!!,review,p5JVI5TkPtUtKq2_J3DrDA,1,1,0 +m-32wtMGKTJe_8Z9gn_kAQ,2011-03-28,ULSTEGAK19J8UW8VNAsJ2A,5,"As a Massage therapist I really need to get worked on to make up for all the massages I give. Kristi is my go-to massage therapist. With over 20 years of experience in the healing arts she's got amazing strength and sensitivity. AND--she's a great listener--it's kind of like getting a counselor and therapist all in one shot. It's the best hour of my week! """,review,V-ixKMzLSMxDzdEJ9TF2Ew,0,0,0 +DcrM4hwDcU2G6vuh2cnaYQ,2011-07-27,adLepXF2WR9ZgeL3_eIZMQ,3,"Went here because of a groupon, will probably not go back without one. + +Cons: +Overpriced, flat out. Plus, like other reviewers have said, they RUN OUT of a lot of good stuff. Also, I know this is something small, but as their menu changes, they should update it online. Had I known the menu would be so different, I would have waited for another week to get a meal I would ACTUALLY want (as opposed to settling). Also, we had reservations and had to wait 20 minutes. Not a huge deal, but a personal pet peeve. + +Pros: +The food was good, but like I said, overpriced. Since I had a deal, I didn't mind as much. Atmosphere is nice, and I loved the extras (we got a few small tasting, palate cleansers?). The cotton candy was fab, and though the strawberry dessert was NOT my first choice, it was truly delicious, and I may go back JUST for that dish! I love the location, and the staff was incredibly friendly, informative, and courteous. + +Knock down the prices and I'd give it at least 4 stars!",review,lVomYoc1M3-4-qawV_gsKw,1,3,0 +X5QTGpPfqXFtmtizsGAksw,2011-06-07,DhUin2-qKsd1qiLlRTeWjA,4,I love this place. A little on the pricey side but the food is awesome and the staff is always cool.,review,GiROQFEsNS9-uRobLQHSkg,0,1,0 +-3xbryp44xhpN4BohxXDdQ,2013-01-01,oaD76n8LOnh2GxGw9sZqkQ,5,"We made a last minute decision to go out on New Year's Eve. The restaurant was very busy but after just a few minutes a couple of seats opened at the bar ( our favorite place to sit) and the bar tenders, Blake, Kennan and Clair were ON IT! They were very busy, but did not miss a new face at the bar or a glass writing for a refill. The food was excellent. My husband had the baseball steak with twice baked potato and I had Prime Rib with lobster tail and twice baked potato. Everything was cooked to perfection. Oh yes! Start with the garlic cheese bread as it is yummy!",review,yEdoJsi3f0IEar6FOHgwjw,1,1,1 +VTyfRdPJS3AVZOWDXIAhyQ,2009-04-12,T4P7U2qMnWHwHwG6MHqb3g,4,"This is the old Rigatony's on Brown Rd- If you've never been, it has a Buca di Bepo-ish, before Buca was cool, sort of feel. They even serve their house chianti in a small water glass, instead of a wine goblet- adding to an authentic ""Joisey"" kind of feel. + +This is traditional Italian-American fare, rich and flavorful- with big portions. The Chicken Piccata is crack-good. It's served in what I've come to learn is a Sicilian style, with a n awesome relish of tomatoes, capers, and green olives and a side of addictive Fett Alfredo. It never gets old. + +Another great authentic dish is their Cecca- you can get it as a ""Pie"" (Pizza, that is) or over pasta. You just have try it. It's rich, refreshing, and explosively flavorful all at once. + +The house salad is a variation on a traditional AntiPasto theme- and is a meal, and event, in and of its self. + +The best thing about Mardeneley's is that EVERYTHING on the menu is good! It only gets Four stars because it could use a bit more snob appeal (and a better beer selection).",review,PY6a5DTygDqf52eQMtii5w,3,3,1 +dUi5Lg1Ay3HwK0p_ZaXNYg,2011-07-26,tKNpKiQUsOx-UfMMArBxbQ,4,"The three of us ate at Famous Dave's last evening and had a really nice time! + +We stopped in around 5:30 or so and were seated at a booth in the bar area. It was still early, so there was plenty of seating throughout the restaurant. Our server came by a few moments after we were seated and asked about our drink order. Nice. + +If you have never been to a Famous Dave's, it's sort of like a Texas Roadhouse, which is a complement. I've had some really good BBQ over the years in local Roadhouses throughout the US, and clearly this chain has copied the model. + +We started with some onion strings and chicken tenders off the Happy Hour menu along with our drinks. Both were good, but ordinary. What made them good was Dave's sauce. At each table you have five or six choices, as well as the sauce that came from the kitchen. + +For dinner we order a Pulled-Pork sandwich with sides, a large BBQ Huli platter and some Texas steak tips grande nachos. Each was delicious and large enough that we couldn't finish. One observation on portions, they are large -- like two Styrofoam take home boxes large + +For dessert we order some $1.98 mini puddings and brownies. Just the right size for everyone after a large dinner. + +Fellow Yelper Scott D put it best in his 7/23/10 review: ""Famous Dave's consistently delivers no matter which location you go to"". Our party of three heartily agrees! + +The tab came to $69.49, including taxes but without tip. We thought that was fair given the serving size and the tastiness of the food. We will be back! + +Enjoy!",review,1BW2HC851fJKPfJeQxjkTA,3,3,1 +FkHhy6kWeoJf0xJTqzRWmg,2010-10-18,3UJmNaH7OZoye15uzB6vRQ,2,"I've been here twice, which was obviously enough. The first time was in 2002, before I was old enough to drink legally. It became obvious to me then that state fairs are only fun for people over 21 or under 12. + +In 2008, I came with some friends who bought a $6 hamburger at one of the tents, took one bite, and threw it in the trash. One of them remarked later that it was the only time in his life he'd spit food out in disgust. While this was happening, another friend and I asked a toothless Vietnam veteran manning another tent where we could find the nearest restroom. His reaction suggested that we were insane for asking such a ridiculous question; we surmised that perhaps, due to some bizarre war injury, he had not taken a piss since 1973. Bottom line, customer service is not high on the priority list at the state fair. Nor is edible food.",review,UQLWaa3K8ajDq0J2zSltnw,0,1,3 +r7GXuj4rr2vGPU_pklxcQg,2009-04-27,imTtqUUglJcjt2my7G2PrQ,2,"OK, I am new in town so I was unaware that they are trying to change the name of this event to The Great Arizona Picnic, or something of the like. Well, thank God because when I hear ""culinary,"" my mind certainly does not think of Dos Gringos...or any of the other Vendors represented at this event. And why the hell, after paying to enter, would I pay again to enter the fenced areas!? WTF!? + +I come from a town where festivals are managed better than most corporations so I believe that I am spoiled, but there is no excuse for the long lines encountered here. I counted over 60 people in line waiting for pizza...pizza! Lines to enter, lines to use the ATM, lines to purchase tickets, lines to eat, lines to pee...... + +Obviously I feel passionate about this particular review, and for those that love this festival, I apologize. I will say that many people with whom I had spoken who had been coming to this festival for years said that it is no longer what it once was. + +On a positive note, the people watching is tremendous. I have never seen so many beautiful people in one location in my life. And I would agree that it all depends on the company. Great friends make this a fun event.",review,NLDDaat42UQXQCOpU4e2TA,2,2,1 +TQhP4vCMjvX527YMxPfuUA,2011-04-21,4JoQpdtA0_XZlH8Mp86V5g,5,"Greatness in the form of food, just like the other locations. + +The service was particularly good at this location. We sat at the bar,and while the other customers were mildly annoying, the late night bartenders were up beat, witty, and very personable. + +The atmosphere was par for the course. + +All in all, if you are reading this review, get your directions to this location, close the browser, and go eat!",review,K5T9yaw-iOL_-RW5XVofMg,0,2,0 +AZq_SBJsqsleJkQCksYsjg,2012-07-10,trfZP2pBuKHZBuI7h4h1LA,4,"Stayed here for my best friends birthday. We just wanted a relaxing weekend and that's what we got. We liked that the pool was open 24-7. There was a bar at the pool but nobody attending it which blew. So we would have to go inside in our bathing suits to order our drinks since they didn't have a menu outside. People say the rooms are dated, but we thought they were nice. We enjoyed every part of our stay with the exception of the bar out by the pool not being open.(If theres a bar, someone should be working it right?)",review,Ho9wE60C0HfVaGQiwatZeA,0,0,0 +d3MxUXS1b6U2P_gGuCO1-A,2010-05-31,r6nzRsf5goTllOfoGQU9hA,4,"I actually haven't had any of the cocktails here yet but the menu looked really amazing. There are lots of sake cocktails and yummy-sounding martinis and they have a pretty good beer list, too. + +I had the tofu with red curry sauce and it was really good. I also had the oyster mushrooms which were also really good. I really like tapas as an idea, the small, inexpensive plates so you don't feel like you're spending a bunch of money even though you end up spending like fifty bucks. + +My friend happened to know the guy who was our waiter and he was very sweet. Overall I'd say it's a really great place to get a quick bite and have drinks with friends if you're feeling a little bit fancy.",review,0UCWOfFSbSk-tXPd17_Wmg,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2010-01-26,1lLOC-FQQZP8wM86PRnKOg,5,"Awesome, delicious lunch or dinner takeout place! Quite a dive in terms of decor, so don't expect anything fancy. There are folding tables and chairs, if I remember correctly. + +Anyway, I had jade red chicken and emperor's chicken quesadilla and both were SO GOOD. The idea of Chinese - Latino food sounds odd, but I'd heard of it before and just never had the chance to try it. They have all sorts of combos, mostly with beans or rice as a side (get it? chinese and latin food both usually come with rice....!). So before you knock it, if you're in Phoenix and looking for a place to eat, this is it!",review,THC7I7imU3jkhYN1ibSH3w,2,1,0 +yC3ydbHAJTZ22FZp4LynFg,2008-11-24,z8m4w7OlpnA6SxsCRi0Lnw,4,"out of the three filipino restaurants in Mesa i think this is the best, lots of choices in the food, and the cantelope drink is a must have. the portions are really good, and price is very reasonable. i took my friends there last week and they liked it. only thing i ask the cook though is too go a little easier on the grease, but than again it wont be a filipino dish if there weren't grease oozing out of it lol",review,hKJsae1YDM57ujATRpnjAA,0,0,0 +1eBJyYf3JEccqXUFxG1VWQ,2009-10-07,IwCKq03IdacOQiPJhJfTog,1,"in addition to sucking, it's also expensive.",review,FEdeDneIRH2IjKfneDA-vw,0,0,0 +18oecrR4bf-ctLvVGEaSLg,2012-12-02,I3OVhm125X3akj4x8wVxbw,3,"I LOVE in n out burger, but this particular location kind of lacks. + +I order a double double, mustard grilled, no onions with chopped chillies. + +My burger came with onions and without chopped chillies. Also mine and my girlfriends buns were stale.",review,3ZEc0JBnmJHpak2cNyCIPA,0,0,0 +aozcOaCMwOHG8s-lbZ6_gA,2011-04-17,XD4Fj0QAjmdipcOXUB_XTQ,2,In my ongoing search for great Chinese food in Phoenix this place is a speed bump,review,eLOGS2cLzi-RKBqdOPpw8A,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2011-11-04,6LWNjmEpltmwc8Lo_dw2qw,5,"I can't believe I haven't wrote a review for Ted's yet! By far, one of my favorite places to go. You can get full off of some tasty food for a great price. I normally get a hot dog with mayo, onion, hot sauce and a pickle. I also like the corn dog and onion rings. I can always get a satisfying and fulfilling meal for $5-7. Love it! + +Can get a little crowded on the weekends, but generally all the people are pretty fast and nice.",review,7o7MF9B9lxcWupE8jiLOaQ,0,0,0 +-4A5xmN21zi_TXnUESauUQ,2012-04-24,JNn06tNrrMk_gdq0aRxqrw,5,Great place to go before heading to the zoo. Not a lot of seating if you're with a big party,review,yMQHn_kmQF1_47d79oGhvQ,0,1,0 +9uMnQTDD0hi_ivp_te6s4A,2012-05-28,K0accMAdHc3qfVBHCirOUA,4,"This HD is very good. They seem to have knowledgeable people. When I was putting in my irrigation system a while back I got a lot of good info from their plumbing guy. Apparently he was a master plumber. + +On this trip I needed a overheat sensor for a can light. The lighting guy had a can he said he couldn't sell because it was missing something, and proceeded to rip the sensor out for me. No charge. That's customer service!",review,Mb0psF4WQF7gZSuZafVr-g,0,1,0 +ShUSw5yD7EFWBOiq_CuHMQ,2010-04-18,kmLbMKOQ9mmvU6FT4eOSpA,5,These guys know their stuff. Professional staff and great location.,review,L6-K7i4Ir1blOPOpLM3AcA,2,2,0 +qSLdUiI2edATC3KBT2zf4Q,2011-03-26,ZNFGyC5e1xtzXZLFhBzxIw,5,"From the moment we walked in the door we were treated like celebrities. I wish I was one after leaving here! The food was some of the best Thai we've ever had, and I live in Chicago and have tasted dishes more than a dozen different authentic Thai restaurants. + +We never were without a glass of water or a full glass of wine. I wish I lived here so I could make this a regular stop during my weekly Thai and Sushi cravings. + +The Tilapia was out of this world - topped off with a delicious medley of mint, onions and lemon leaves. I highly recommend the Spring Rolls - very fresh and tasty! Give this place a try - you won't be disappointed.",review,y7iru3-UEZC7nNOzFZvdcQ,0,2,0 +7YYD_agS3Kb2sAx9JPkQEw,2012-02-19,Hw40iX1EQHx7v5CqoLuc_Q,5,"Visited this great place last week with my parents and sister and we all had a great time! The service was a bit ""in the weeds"" but everyone was friendly and nice and the food was very good. The tour is worth the $5 and then some, very informative, and our guide was very funny and knew her stuff! products for sale are lovely and the drive is worthwhile. It is a bit way out but it was different and a great way to spend Sunday. GPS do not like the address so try google maps and your phone/ipad it will get you there.",review,iKsgTJHZaZUEbOmmEQKC0g,1,1,0 +yYbd9P1KmlPSKmQxo68n_g,2012-08-05,_VpM0qDomGw-j81lLcWKmg,4,Wow! Some of the best barbecue in the state!! The pulled pork and the BBQ Baked Beans are a must try!!!,review,hSEv6hOHIJt2kaFHr2vsPw,1,3,0 +wH9WtaTlrRawH_IpK90RPg,2011-06-27,wlEieep6ZlttVFDesoz4vg,5,This place is great. All the food is fresh and always good. They have a great happy hour daily with a very knowledgeable staff. I highly recommend this place.,review,F_M4GMKXy2EUZFQeo_MtjQ,1,0,0 +5VMajxduxfLPSyQkVFKESg,2008-10-30,ngFqU9PPLZ9zLv34mLVE9Q,3,"I admit I'm not a huge BBQ fan, as it usually makes me feel like exploding afterwards but since my dining partner loves BBQ, we've eaten here a lot. The meat is pretty good but at least one of the meats has been dry each time I've been. My favorite has been the ham. The spicy BBQ sauce is pretty darn tasty too. + +I've found myself putting black pepper on the mac and cheese to spice it up and haven't been all that impressed with the rest of their sides either. I'm a big fan of sides at BBQ places, even more than the meat, so when sides disappoint I get sad. :( + +I dumped out their homemade root beer after one sip. Don't know what was about it but it was very *off for me, and I seriously love root beer. My dining partner loved it so ehhh...maybe it's just me. + +The place is very interesting on the inside, the decor reminds me of a mid century cafeteria but more modern. They have a huge hand painted mural of a farm and a large outdoor seating area for parents to let their kids run around in while they eat. + +Joe's gets packed. I've seen the line wrap around to the outside on the weekends. I don't think it's worth waiting the 20-30 minutes in line for, but then again I don't think a lot of places are worth that wait for cafeteria style dining.",review,FHJUj7EHB9nB2czVOzQX3Q,3,3,2 +uvgI3CcxHnyGb_akVb8TCA,2012-04-09,gCXpcuxN3N_R7v4nq1BEcQ,5,"Attention all parents, nannies, guardians etc. Koko bees is tons of fun! The kids are all smiles & full of laughter. Terrific environment: oodles of play houses, dress ups, costumes, toys, themes & settings! The little ones imaginations can run wild. They even offer fantastic dance, sports, yoga and tumbling classes for the children! This is a great place to come with the kiddos!!",review,qjumhaqvwFHz68ogEJKRXQ,0,2,0 +TMq92PhrL-tQS3qOsNIXUA,2012-02-23,kzYtTggi0J4-GLo5QRM-Cw,2,"I've fequented here often enough to know that all the majority of the games here are all those ticket games and little claw type games. I come to hang out with friends and play some games. I can in on tuesday night around 6pm and thought to have dinner there since I had a coupon for the place. I really didn't care about price at the time with the coupon. + + After being seated our waitress got our drinks took our order and everything was fine. After we recieved the food we were left unattended for quite some time. When the waitress finally returned I had to ask for a refill and some ketchup as well. My drink was empty so I would assume that would be something that the waitress would ask but I caught her before she left. My boyfriend did not recieve a single refill the entire night and we were there from 6pm to 9pm. + +We had friends meet us there and we just chatted it up for some time. It wasn't for some time that we realised that the place was bare not just of customers but of staff as well. It was as if they closed the place down and just left us. After the waitress had taken our check and cashed us out that was the last we saw of her. The plates of our food were still in front us the entire time and we had kind of placed them all together so that she could come and just take them...kind of thought that the bunch of plates stacked together would give the hint we were done but I guess I shouldn't be so subtle next time. + +The food was ok at best. Nothing bad nothing good in hind sight though if I had to pay full price for what I got if that waitress had left us like she did and I didn't frequent the games I would've walked out. Probably wouldn't notice. + +All in all go for the games if anything else. The games are even ok that is IF they are running. Sometimes I come in and games are off or not working. This is just a place that is convienent for myself and friends to meet up.",review,O_KD0lyV0VlwMdPF2k6lqA,0,0,0 +-3xbryp44xhpN4BohxXDdQ,2008-11-24,iWGAoY8Rge0GQOZW4Kd06g,4,"Had myself a new york striploin and it was quite good although I do hate paying these kind of prices for steak. I really thought the vegetables were more special than the steak, but if you compare what kind of quality steak you get here compared to say Donovan's (high quality steakhouse in CA), I've got to say that I like the overall package presented at Keg Steakhouse with respect to the quality and price.",review,btfv0CFoDX6vJCPms6-Irg,0,0,0 +1udzLbeQxmLTbOtgyVP0kQ,2012-11-22,qwm-L-iO4IHHEPmE8rx73w,5,"I split the veggie platter with a friend and we only got just over half way through it. Got the rest to go. I couldn't wait until I had room to eat again so I could eat the leftovers. Sooo much good stuff. I'm usually not a glutton, but there are a precious few places where I lose all self control and beach myself and this is apparently one of them. +We were there for an hour and half and asked all sorts of questions about how things were made and what they were. The lady that waited on us may have been the owner. She was cheerful and happily indulged our questions. +It's a large restaurant with plenty of seating for large groups, but it also seems to be an authentic family outfit. They have a few beers in bottles and apparently authentic music. +I'm sad that I'm moving out of this neighborhood right as this moved in! If I weren't leaving, I'd probably give up cooking entirely and just eat here every day, or try to get take-out. +If you're downtown or on the east side of Phoenix, it's worth the trip. Really good ethnic places outside of the Italian/Chinese/Mexican/American mold are a treasure here in Phoenix. If you're from somewhere more metropolitan, you know what I'm talking about. West Bring friends, dates, clients, and employees here and impress them.",review,lKze8Z4vzqgN5R8Bq8F_vA,0,1,0 +c0RSs2KYK5Y-ZlSrNq9LyA,2009-01-14,oX0IOkDALa6VkORxXY2nOQ,3,"Well, it dropped a star for me, and I'll tell you why. Eaten there probably 20 time in the last quarter. I've had it all; All you can eat sushi, bowls, desert, beer. Ate alone, ate with Sandra K, ate with son and family (including 3 year old grandson who plays drums with the chopsticks) had a party of 12 there. + +Service....slow on Saturday for the AYES, otherwise I can't complain. There are some ""bright"" spots. First, it's close to my neighborhood, a start and there is more than sushi and that is helpful when you have non-sushi lovers with you. The bowls are very good and you can order them in the heat index you like. Funny names to them as well, like the ""Exit Wound Bowl"" or ""The Classified Bowl with this description;Don't Order this Bowl"". + +Squid Salad is great, great, great! Calamari, ok. Hey they put a lot of thought into their beer selection and that is cool. And their dessert sushis are very unique. + +As for the sushi....I now have way too many sushi restaurants to try and they are all falling over themselves for your business. Sushi has become really ""hip"" lately but there will be a fall out in this category as the economy continues to slow and people, let's face it, are pulling back. This is not a place for a sushi purist, but give me good food, a cool gathering place (close to my central Phoenix abode) and I will be there. Sushi has got to get better for me to rate higher and ""earn"" my business.",review,swJ6rmmGx4DCxosDfKTElw,1,5,1 +hZRLGfRrZTo9up2P-0aAHg,2010-07-09,zWhVRsQ80-6EVlT4EIU6MQ,4,"So far the only thing I have eaten at Verde that was not awesome was breakfast. Don't get me wrong it was yummy, but lunch or dinner is much better here. My favorite dish is the tacos al fresco. Two fresh tortillas loaded with fresh colorful veggies and coated in a delicious vinaigrette. Did I mention everything is super fresh? The rice and beans are also very good. The salsas and guacamole are also awesome. One is smoky while the other has great tang and spice. Nothing, however, outshines their delicious tortillas. I love walking by and seeing someone preparing them in the window. The decor and atmosphere are also great. The owners are super nice too. I really can't complain about this awesome place!",review,3VIRjR2V29TOaI9u64hMig,1,1,0 +WiAY7lyT-DC7Zk3StMMp0g,2012-09-09,7lR08Tui3SORRFiIs7C6fg,1,"Our bartender was rude and impersonal, to start. When my wife ordered a diet coke, you could see her disdain. We saw her once more, when she took our food order, after which she sat in the corner and ate. The remaining staff dropped off our food without a word, and never came back; in fact, I had to flag down the manager to get cashed out. The food was sub par. My wife's Shepard pie was all mashed potatoes, and my chicken strips were incorrect and with the wrong side. Also, my fries were soggy because they had been placed over excess sauce. + +Poor food, awful service, overpriced beer. Visit the Kyrene location or don't go at all.",review,BFzp34CongI8FAnFrC4WNA,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2010-07-19,TVUUO1gxwBiATfntwXhmXA,3,"Service - 5 stars (which is so rare). Food 2.5 stars. +My husband and I are a little picky when it comes to steaks (we eat Morton's and Mastro's) but we wanted to try a new steakplace while visiting Phoenix and Durant's had great reviews. +When you get to the restaurant, you walk through the kitchen (pretty cool to see everything) then you're greeted by the host. We came for a pretty early dinner and literally every single person - host, kitchen staff, waiter/waitresses greeted us. The decor is pretty cool - kind of burlesque-ish, all walls are a deep red, there are huge vases of roses everywhere. +Our waiter Fred was awesome!! Very friendly and professional. I had their vegetable beef soup (good but salty) and my husband had house salad. I ordered the trout with lemon caper sauce which was very bland. My husband had rib-eye and it was also bland which was surprising. Their dessert - trio creme brulee - was the best part of the meal! So from this meal we decided if we want steak, we're sticking with our usual Morton's.",review,hws92rePVainOwONgFG2Hw,0,1,0 +DhDCnjPyZGUN3x5WzluRTQ,2011-05-19,0y6tjRANTAx-KIbiCRcu3A,5,"Bruce saved my day, my computer crashed this morning and I gave him a call and he was able to come out same day. He went through my whole system at my office and even updated my anti-virus with a free AVG instead of paying for that crappy Norton service. He was able to go through and recover all my files and found out the operating system was corrupted. He saved my day and completed everything same day. Thank you Bruce!",review,EP3cGJvYiuOwumerwADplg,1,2,0 +7wRpeQV6cqbx7qgEO94owA,2010-02-15,n0lC_z4j_vw_UZpcKs1gXQ,2,"If your products weren't my number two love I would abandon you!!! I only say this of this location! One associate was SO snotty I wanted to punch her, and I'm not a violent individual! Fashion Square receives my loyalty...",review,ZKs7NR45Fi27wcIoAilEMQ,1,4,1 +He9Dar4bk2vyeiPC7TkUgA,2011-03-20,zYJRUO5lcYYexpjUxaCwFw,5,"went down to Scottsdale for Spring Training (Go Giants!) and we decided we wanted to have a nice, sit down meal instead of bar food or ballpark food every day/night. Eddie's House fit the bill perfectly. +Food - excellent. Tuna Tartar ""nachos"" were great. I had the scallops and they were perfectly cooked. Also had a size of Fiddler's Ferns which I've only tried once before. they were excellent. Berry Cobbler for dessert also excellent. +Service - excellent. very nice waiter who was very attentive. +Location - close to downtown but not on the immediate Scottsdale Road path. +Atmosphere - also excellent +Prices - being from San Francisco, the prices were unbelievably reasonable.",review,mNrdpZFYHOLtYXJcIrKPyw,0,1,0 +NuFs1Sh5wUa7ZLISMtCMRA,2012-01-10,LGURVvqFw7L1u2Na4fzPBg,4,"We like this restaurant, It is always good food and good service and convenient to our home.",review,X3lQtlRJZFtwE1gP45x3Vw,0,2,0 +kLfJNtvpbomNTD8tqm7ukQ,2011-10-15,L_jA5wIheHgsMxcHqCoosQ,5,I rented bikes here for the first time today and took them for a ride on the green belt. It was so fun and the husband and wife working the shop were so friendly and helpful! I will definitely be a returning customer and recommend this to people who are looking for a fun outdoor activity.,review,0qAgcZQ3uT4BrvA_P0LW0Q,0,1,0 +W7xb2iS4cYL14Yi5LOGSkA,2011-12-05,yQvdduZssbdi244ErD_hIw,4,Never had a bad meal or a bad beer here. Great selection of brews and the food that they make is simple and GOOD. Great recipe for success. Service is a little spotty but expected due to the fact that these are college students who really (speculating here and actually giving the benefit of the doubt) don't care too much about customer service - it's just a job to them.,review,W9ZG5q-QIblXYeHgaPS5Uw,0,1,0 +uI4YqMarUpchI4I3ZWgOGA,2010-07-14,X7MpG6myZOkZhovgwndQPw,4,"Yay! I got to try the happy hour finally! They even had a sweet band playing in the dinning room, great ambiance. + +On 4th of July weekend the girls and I got a room at the Valley Ho and ventured over to Vic's for some much need food around happy hour time. The fun drinks were totally wroth it! I got the burger on the HH menu, it was sooo yummy, huge and came with a bunch of fries and was only $3. Crazy right?! We were pretty tired so we couldn't stay long, but next time I want to try the calamari, hummus and other fun drinks.",review,_uL7OiQSfNsCd60DrAf7qQ,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2007-09-20,KrGuO0DXCX0pLH8SVOyvnA,4,"I think I'm in love. If I only lived closer to Downtown Phoenix, I'd leave my mark on the Lost Leaf in the form of a permanent intaglio of my ass cheeks on a bar stool. + +It's tucked away on a side street in a humble looking home cum art gallery cum bar. It can be a little tricky to find since no sign exists, so keep an eye out for the neon lit open sign. You definitely don't want to miss out on this place by becoming frustrated after fruitlessly ducking down side streets, saying fuck it and going to The Roosevelt. While it wouldn't be a total bust, you'd be missing out on the warm and inviting ambiance of the Lost Leaf. + +That's really what won me over about this bar. It made me feel downright cozy, with exposed brick and wood, local artist's artwork decorating the walls, and the actual kitchen serving as the bar. The main room is large enough to host a large group, but small enough to be homey. The acoustics are very good (soft talkers rejoice!) and the music playing was loud enough to add to the mood, but nowhere near the point of drowning out conversation. There are a couple rooms in addition to the main bar area that you can duck off into for more intimate conversation, as well as an outdoor patio that's a little on the small side but, super score--there's ceiling fans! + +I found the prices to be very reasonable and the service to be unpretentious and helpful. There are no beers on tap here, but the selection of bottles is mind bogglingly extensive. I had to ask the bartender to get me his favorite pale beer and I ended up finding out that I am also in love with a brew called 1664. Looks like a wine cooler, but manages to be respectable instead of laughable. + +So bring a couple friends with you and indulge one night, and then another, and another. You'll be love struck too.",review,tlSSQwfHYJany7wPoTH46A,5,4,3 +fecYnd2_OTDECk7bd6GOFw,2011-03-19,roCITLlb_RwydpGd9ZO_JA,4,We've eaten at this location quite a few times. We've always enjoyed it. The pizza is great and the employees are friendly. We also threw my son's 6th birthday party here in sept. Our hostess assigned to our party was great and very patient with all the kids. My son said it was the best party ever. We'll definately be having more parties here!,review,YeK95nGGvYsssVHzcWpmkA,0,1,0 +ntN85eu27C04nwyPa8IHtw,2011-01-29,HZAEVgeQE-VkHGTIk_GpbQ,5,"Love this spot - it's pretty close to the convention center so Natalie and I went here to check it out. The bacon is awesome here! + +Their philosophy is great too - local, organic, etc. etc. The place is tiny and quaint too and as always it's great to support a local independent business. + +Best breakfast in Phoenix that i've had and definitely one of my fave spots - went there the next day too - got the special and it was delish - check my photos to see what we got!",review,1ADzO1AOjVDuByLzaX3pgg,0,1,0 +_FXql6eVhbM923RdCi94SA,2012-10-18,FXC4mW_eL6GMN7SsbSgzAg,4,"The husband and I had driven by Hula's multiple times, saying it looked interesting but we were always on our way to another destination. We finally stopped in on their 3rd Anniversary and boy, are we glad we did. The wait for a table was probably 45 minutes, but the place was packed and in all consideration, it wasn't as long as other places we've been. Plus, we wanted to sit outside, since a band was going to be playing. (Who were awesome, btw.) Drinks were $3 all night, special anniversary prices, and we tried the Dr. Funk and the Painkiller. The Dr. Funk was delicious! The Painkiller is similar, but had cinnamon or another spice in it that I didn't care for. I ordered the coconut shrimp egg rolls to get us started and they were fantastic! For dinner, I had the coconut encrusted butterfish and the husband had a pork plate. (Mine was delicious but the pork was just okay.) Our friends had steak tacos and a salad. The steak tacos looked so good, we had to come back a second time. The second time here, I had the steak tacos and the husband had the steak dinner. Mmmm, the steak tacos were totally worth it. (We also ordered the coconut shrimp rolls again - definitely a favorite.) For dessert, we got the brownie with macadamia nut ice cream. The brownie wasn't anything special but the ice cream was good. When we checked in on Yelp, we received $5 off our bill. This was a nice surprise! Totally check this place out - we'll definitely be back!",review,tHz9cWxwSfcP4qRaPIHvww,0,0,0 +EKzMHI1tip8rC1-ZAy64yg,2012-03-07,-vYN_QTOpFt-fLxcIzugwQ,5,"The name is so misleading, because this is the most charming dining spot I've ever eaten! + +I dined here for lunch with a friend and was blown away by everything about it. First, it's location is tucked away near ASU campus in a quiet little neighborhood. It appears to be a converted home built in the early 1900's and lots of beautiful mature trees and plants growing in their huge, and I mean huge outdoor patio area. I only dined outside, but honestly with such beautiful weather 9 months out of the year here, why would you dine any other way! + +The service was excellent! The staff was extremely attentive and always checked up on me while I drank water and waited a while for my friend. The menu was amazing. I never once read a menu that I wanted to try everything on here. They had a huge variety of dishes at what I can only describe as American/French fusion. It all looked so divine. And from what I've been told, their menu changes frequently to new seasonal dishes. So I can't wait to see what they offer when I return. I went simple with my meal having this delicious quiche, fresh fruit and a cup of their corn chowder soup. The soup was so rich and creamy, I could have ordered and ate a whole trough! It was that good. The fruit was clean, well portioned and fresh. I'm very particular with fruit, and hate when the fruit looks soggy and overly ripened. And the quiche was heavenly as well. Just the right amount of ham and tomatoes with alot of flavor. + +Since I was here for lunch only, the prices were reasonable. I've heard at dinner it can get expensive. + +This was an unforgettable dining experience and recommend this to everyone to try at least once.",review,lt8EDfC80IpHzGKlj8qGpA,0,1,0 +OllL0G9Kh_k1lx-2vrFDXQ,2011-05-12,HcZ-HvaZyD7uDUI9IFtRDQ,3,"They are known for their CARNE ASASDA and it does rock but dang this place was nickle and diming me at every turn! + Everything is ala carte, and the tacos are so small,3 bites and its done. +For the price tag it should at least come with a small bag of chips. +Honestly the chips were so average it was disappointing. the salsa that comes with it was mediocre considering the hold out factor applied. The salsa that came with my tacos was exceptional, that should be their signature salsa for everything. +Sodas by the can, no refills,,geezzz,, another 3.00 bucks later. +I think I ended up spending over $12 for 3 small tacos and small basket of chips, and 2 sodas in z can. +For that price, I want more atmosphere or at least a 4 bite taco.",review,4ywb0jhJePq3eNvDgIAGGw,0,1,2 +oT6K-uJgGLq3FbcQQn3ivQ,2011-09-14,gcV68SxJlp5X_ITBv_z_FQ,4,"So this place was under another name from another fame, but the owner is the same. (ha, crack myself up). The food is way better, the space is way roomier, They have like 100 TV's and the fact they didn't kick me out on opening NFL Sunday because I was on my roller skates makes mama very happy. + +I plan on going here for all the 1pm games for the rest of the season. They are kid friendly too. Can you say no babysitter needed, take 'em with ya. They need their own roller skates tho. + +FOOD: recommend the pretzels/mustard - the cooked kind.",review,4CZW7wofHjv55ml185QPOQ,0,0,1 +EKzMHI1tip8rC1-ZAy64yg,2008-06-03,Vg9irIjRKJIXnNayILhYCA,3,"It is with great regret that I give House of Tricks three stars. + +I've been here twice. The first time, friends invited me and the wifey here for dinner. Seeing the patio, I thought, ""oh, this is really cute."" Once seated inside, I thought, ""oh, this is really cute."" Seeing the prices on the dinner menu, I thought, ""oh, this better be really good."" Long story short, it was okay. My friend, who had only been here for lunch, apologized for the unexpectedly high prices. I didn't care too much, I guess. It was edible. I'd probably come back for lunch. + +Which I did, with co-workers in tow. The prices at noon were certainly more agreeable and we all looked forward to a pleasant meal. Suddenly, this gem of an exchange occurred between our waiter and my boss, Debbi: + +Debbi: How large is the quiche? I weigh 230 pounds, so I'm a big girl. + +We giggled. Debbi loves to joke. + +Waiter: Well, it's not as big as you. + +Bad form, dude. Bad form. You're lucky we paid lunch menu prices.",review,kDJ9PRlYugp5RIa9ontPZg,1,1,3 +RQbD1athZFAke0zBTEqgwg,2010-02-01,MYcczOB_c_G3X4QEM2yD5w,3,"My boyfriend, myself, and his 3 year old foster sister met up with his mom, dad, and 2 year old foster sister. We were all heading up to Prescott this past Saturday (1/30) to play in the snow. When we got there, they were already set up with drinks & pancake balls (strange, yet greasy & delicious). They'd placed our orders as well since they texted us for them when we were still 15min or so behind them. The food was good. The service was just okay this time since I can't remember if anyone ever came to give refills on anyone's drinks. I know they came by and asked if everything was okay a few times, but that was it. Still, friendly staff. The bathrooms weren't anything spectacular, but it's a bathroom...at a Denny's. + +Anyways, we all left full and went on about our day.",review,bDVQPjGPM6yVLD2cntJkrQ,0,1,0 +OE5nAmaSVaopeRS1Cs9Kuw,2012-05-10,VTHAgGIL57QnfIbGG9gXHw,5,"Amazing. + +Fogo de chao is nothing short of out of this world. It is expensive, but as soon as you start, you'll know exactly where that money went. +Seriously. Try it.",review,yJ22u_1l01H4NM3wCowIKw,0,1,0 +XK5FFbrKWMjRqc6ZbSTknw,2012-09-24,zvuI-Q74i25kga0RkHiUYw,4,"I went here for dinner since my friend said the the location in Cave Creek was one of her favorite Mexican restaurants in the Valley. However, living in Phoenix and Scottsdale, we decided to go to the Fountain Hills location. Plus, another friend lives there so it was a more central location for all of us. + +We arrived around 7 and it wasn't crowded at all, we got a table right away. We got chips and salsa to start which was perfect since I was really hungry with it being way past my dinner time. One of the girls got a pomegranate margarita and she said that it was really sweet but good. I got the fish tacos and they were delicious. Probably the best fish taco I've had. I was expecting some sort of fried fish, probably cod. I was pleasantly surprised that it was grilled and the two tacos came wrapped up in the foil pouch they were cooked in. It also had this really good sauce. The hard shell tacos that my friends got also looked really good. The shell looks homemade, fried, and super crispy. My friend asked for extra cheese which they brought out in a small dipping bowl. She was also charged extra for this. The tacos didn't come with that much cheese to begin with, so that's kind of a rip-off. The price isn't that cheap either, I would definitely say it's on the pricey side. + +The atmosphere was just okay. I was reading how it's the most romantic location, etc. but maybe they're just referring to the Cave Creek location. All of the employees were nice and even took a group photo of us at the end since my friends were visiting from all over. I definitely want to go to the Cave Creek location in the future to see what all the fuss is about, but it'll definitely be more of a special occasion thing since it's definitely a hike from Scottsdale. In the mean time, I'll stick to my other local favorites for tacos.",review,oe_QopcqJ8RJMrW-DJLodA,0,0,1 +0K634ehk41ZRc4kj3NTAEQ,2011-01-18,SWdRuN3xy_pc6Sj5MnHwOQ,5,Man the chompie sliders is the bomb. Wish there were some in LA. Man taste so good and flavor.,review,nmztWUc9gAO76-1vn8M09w,0,0,0 +h6jfMpTZpNduLG0wE2tbaw,2010-08-28,tiBdD_8-eiPBQlHLoF_MFA,5,"The sushi was fresh and excellent! The service was almost too fast. I did not find the prices to be out of line with the quality. Our daughter loved the miso soup. The one thing I really appreciated is that they will make what you want, whether it is on the menu or not. If they have it, you can get it. I know we'll be going there often. + +One thing though, this is a busy, noisy place. It is not large either. If you are looking for quite and relaxed, this perhaps isn't the best choice. If you want good food in a noisy cheerful atmosphere, like a bunch of friends or after work, this fits the bill.",review,-cgz6qu0nnJZ_pWX-NlScg,0,0,0 +5VMajxduxfLPSyQkVFKESg,2012-01-01,OQCvM5dw3phiR0OLQt-_YQ,5,Great place to take the kids to play and have some bbq. Nice outdoor area and good solid bbq.,review,MI_ZFuJ55bRnaarjYzkKRg,0,0,0 +vZBYSQtTbY9MaYu5qNuU8Q,2006-10-07,63r0aX7XtwQOD36XfsImPQ,4,"I love to hike Piestewa (formerly known as Squaw) Peak, obviously not for the solitude - since it's so crowded. + +It's a rigorous 2.4 (round-trip) mile hike and NOT for beginners. But it is the most fun. + +It reminds me of our version of the New York street scene - almost egalitarian in a way. You see people of all sizes, ages, ethnicities, physical abilities, socioeconomic levels, families, friends, lovers, first-dates. This is where you see Phoenix's diversity, ladies and gentlemen. + +It's definitely a wonderful first impression of Phoenix -- from the cross-section of society to the people-watching, and last but not least, the AMAZING breathtaking views, of wildlife (like roadrunners, chipmunks, and lizards), flora and the Valley below. + +It's been noted as one of the most hiked trail in in the nation.",review,4_YfcfHkCem1onJFkItxjA,2,2,2 +n-Q7d10K0h6PyNewmiHLyg,2012-04-01,PerNQjbCord5HrsoatjNZQ,3,"There is a certain sense of nostalgia that exudes from Phoenix Muni that you don't really get at the newer Spring Training facilities in Arizona. True, it is the oldest still in use, but it feels more intimate and more geared towards the spirit of seeing your team before the season starts. It's less about business and more about getting back into the swing of the things, having a few laughs on the basepads and shaking hands with the people who really live and die by their fandom. + +Most of the seats beyond 1B and #b sides are benches, another throwback, but really, there isn't a bad seat to watch a game. Get there early if you're into meeting players and getting autographs and also be prepared to wait in lines for food or drink. Even when ALL the stands are open, they are not enough to service a packed house of hungry fans. + +Bring cash, only a few places accept card.",review,W-VlJfTsCTBjknjIoTgUqw,0,0,0 +3g2ofV7mhEoPyfF7vFMObA,2011-03-27,IiJnNTKdGIOs5LWYF6IzMw,4,"Who doesn't love $3 well drinks? Relaxed, social, no frickin' paid seating!! Except that I was propositioned to "" Swing"" by some totally gross dude, I Lovd this place to start the evenings!!! Great cheap drinks. What more do you need?",review,2PGSd993Aw8cQHym6qO2DQ,0,0,0 +_4_84uCAFDI2VHHEQz5f2g,2012-10-27,gxZXZmZjVh0Aupz_zu53qg,5,"If I won the lottery and just wanted to spend a few hours a week working, it would have to be in this store. One, because I would want to be there just to see all the THINGS all the time, and two, because I would be able to spend all my money there. This place rocks. + +This place has three buildings- the west one has pricier items, but the stuff is GORGEOUS (see previous lotto winning comment). The east one has very reasonably priced items, contains seasonal trinkets and specialty food items. The south building has kids stuff, pet items and clothing/purses as well as some home items. It is the BEST place to find a gift for someone, or spend your overtime check on something nice for yourself. + +Want nice stationary? A cute soup tureen? A garden item? New collar for your dog? Fake fruit for your centerpiece? Gorgeous picture frames? Cute gauzy dress? Hip handbags? Pretty bangles? Antique key holders? Whimsical signage? Artful platters? Decorative bird cages? Catch my drift? They have EVERYTHING! :)",review,JQsyLbRcUGM1Z4zYrI3nOQ,0,0,0 +s3D7EEo1Or4SsxRRjURJwg,2012-11-13,rW8ZcTh1iocEiJ03Bh6rCQ,1,Worse pizza I have had in a while. We ordered 3 slices and they tasted like they had been sitting out for a while and nuked. Crappy service too. Salad was plain and all oil no vinegar for dressing. . Service half ass. I am surprised they have remained in business fo several years. Also they apparantly have no AC it was VERY warm inside even on a slightly chilly day in Nov so we sat outside the inside was so hot and stuffy. this place totally sucks.,review,iIQbATX70Jsbosv4OE2tHQ,0,1,0 +yDnRf8m_YI4AXHVGH6-fuQ,2011-03-19,aCI-cfEPw4xYKhaHIIkiCw,4,"Be sure to save up for the $3000 coffee machine they demo'd for me! Nuts! I could never imagine paying as much for a coffee machine as I would for a used car! + +I am really wanting to take one of the cooking classes they offer here. Soon maybe... Hoping for a Sur Le Table Groupon!",review,TTP7l5g4QUVCpQZ9NTAWqw,1,1,1 +iAyDiyR-Pv3Q7zt7qqixrQ,2011-10-06,zfWIfKDDhn1cdzJpJtw9PQ,5,"Love the convenience store. I stop every morning for a soda on my way to work. They are friendly, efficient and clean.",review,3BCH4AfHZshEaegNmPpN2g,0,0,0 +Jj7bcQ6NDfKoz4TXwvYfMg,2009-10-24,yfud50sGM2bhpsWRyxSkRQ,4,"Pros... Quick, good, cooked right, self serve condiments, friendly staff. Good choice of size and type of meat. fresh buns, self serve drinks. Good Good Good. + +Cons... The place is a little run down, they sometimes no self serve trash bins.",review,C6IOtaaYdLIT5fWd7ZYIuA,4,6,4 +-sAoGZTnFtDZUY9JYWHqlg,2012-08-21,aOSiBNsA9pa9ozCUpsjESQ,5,"I threw my friends bachelorette party here this Sat and had an amazing time! Though this place is very fancy and classy they are super laid back with the partying and drinking. Makes for a perfect mix! We went all out and got a table with bottle service and two rooms to stay in. They gave us a bottle of champagne for free and brought it up to the room for us to toast which was cool. We had 18 girls in two rooms and we didn't get one complaint! We stayed at shade, the club upstairs by the pool, until 2am and then changed into our swimsuits to go for a dip in the pool. I love how the pool never closes so you can drink all night long! Shade also plays great music which we loved. Good mix of different stuff so everyone was happy. + +I did have a little bit of issues with the woman who booked our table. Her name was Haley. She was not very responsive and didn't return my calls, emails or texts. I wanted to decorate our table but wasn't sure what was allowed and she never answered my questions. But the night of the party I mentioned this to the manager and she brought us a free bottle of champagne and sincerely apologized for the trouble. This was enough of a redemption for us. It couldn't have went better! Thank you W for an awesome and memorable night!!",review,khPlizt3ava1xkbtAxHQnw,1,3,0 +HwnC7hT0uIWuBq4CRtk_fw,2008-05-13,SJroKRys5G5DV1uQz-W5LA,5,"a weekend of debauchery was spent here when i was 18. somehow we broke two lamps that were hanging on the walls. like high up on the walls. like above head level. don't ask, because i don't remember how it happened either. we tried to steal lamps from other rooms, but the maids kept catching us. so we wrote, ""I O U 2 LAMPS :("" on one of the lampshades and left it at that. one night, my friend jonathan got really drunk and angry and lonely, went to the pool, and threw all of the poolside furniture into the pool. we seriously destroyed that motel. i'm not kidding, there was so much filth in one of our rooms that you couldn't see the carpet. i felt really, really bad for whoever had to clean that up. but the best part was that we didn't get charged for any damage we caused. thanks, motel 6! + +no wonder my useful points are so low... i use yelp more often to showcase my anecdotes than to actually review things. i'm useless!",review,tBkuKR6UDj-XkgtXoTANZg,5,7,9 +7SO_rX1F6rQEl-5s3wZxgQ,2010-03-08,o1jc-nqCqeZ6Iq3AIve69g,4,"I feel like an East Coast gangster when I roll up to LGO for breakfast. I'll take the Jersey Girl... pump fist and hair toss!! Hands down, it's the BEST omelette I've EVER had. And the fresh-squeezed OJ hits the spot. + +After a hike at Camelback, it's relaxing to come and sit on the patio... if you can find a spot. Weekends this place is a zoo!! During the week is pretty crazy but has its peaks. + +The French Toast is pretty tasty and they do pastries just right. Muffins are baked fresh, toast is always spot on perfect. I want their toaster! + +I've had the pizza, which is pretty decent but not the best I've eaten. The salads are delish.",review,OksbhhgC71Ary3zNHMypeQ,2,2,0 +wNUea3IXZWD63bbOQaOH-g,2011-09-17,oCgR-2vAKsjIsxx8yzfDEQ,4,"Sushi and birthdays go hand-in-hand. I returned to Phoenix just in time to hang out with my friends for my birthday and they took me here. This place gets packed during happy hour for their half-priced sushi rolls and great drink specials. + +Stingray is a beautiful restaurant in a high-class location. The patios are spacious and there is a lot of seating indoors too. + +The sushi is well made and I will return...however, during happy hour. The prices jump up and the place gets empty once happy hour is over.",review,LP0bl3GKToABt3lnpSvA2w,1,1,1 +ZdQbDVZWDsO-d7q2qW8E3A,2011-12-16,5KTv4675TzICY5Y5cQoZgw,1,"I just finished my G & S meal that I ordered to-go; actually, I just finished throwing it out. It was HORRIBLE. And by horrible, I mean shamefully bad. And by shamefully bad, I mean, heinous! I had a very disappointing experience here about a year ago but I thought I would give it another try. I should have proceeded with caution when I asked the long-term employees at the neighboring Blockbuster what was good and to the person, they all stammered and failed to reply. Seriously, zero out of four could give me one ""great"" dish! I've lived in both Mpls & Chicago and my Ex used to travel the Orient and we were always surprised at how POOR the quality of Asian food was in this area and WHY the people here, seemed to like it!? It's absolutely baffling! +I had the Orange Beef & Spring Rolls. The Orange Beef looked scarey right in the container. But when i ate it - UGH! The texture was all off and the sauce..... it had these big, clear, GELATINOUS, ..... ugh ugh ugh! I can't even talk about it. Like biting into a ball of corn-starchy orange extract! I'm still sick from those few bites! [Truly.] And while I ordered vegetable spring rolls, I got what tasted like low-quality hamburger meat! In fact I finally identified the flavor and texture as: SAUSAGE! It was like an Asian Spring Roll with chunks of Italian Sausage inside!! How's that for a combo? Ugh...... [stomach turning] +I'm sorry, I'm a Single Parent and I'm usually grateful to have someone cook for me. Grateful even when i am paying. But during ""tough times"" when i actually ""treat"" myself and then plunk down $20(!!) for unedible... yuck - it's totally, TOTALLY unacceptable! +Shame on you, George, for offering such little quality control and not aspiring to a higher standard overall. No wonder the place was (not) hopping on a Saturday night! +Simply one of the worst meals EVER.",review,7A--K2Yb_i8fhqZEUn3b-A,0,2,2 +ncxBZxetREZ_jCma0c7mHA,2010-08-14,5VS5HUxIIECRzd1E1wu8BQ,3,"A hand-job with gardening gloves..... + +I went looking for Scottsdale Auto Salon to get a hand wash tint quote on my new Mini today. Finding it out of business, I whipped out my handy-dandy Yelp iPhone app looking for a nearby alternate to at least get the wash done and found Classic Car Spa. + +Expecting to pay a bit more for a traditional hand wash I was surprised to find a machine assisted process. I'd spent way to long trying to locate the place (thank you Google maps) so I just opted for their supreme wash, which includes both interior and exterior detail. + +My son and I watched the car move through the process and saw that at least the 'wash part' was done by hand, but they used the same mitts from the filthy truck that had gone through previously. -1 star + +After seeing this, I should have watched their 'interior detail' more closely. When I got the car back there were lines of dirt in my white roof, and water spots on the accent chrome. When we got in the car there still bits of chip on the seat and floor mat from my sons spill the day, and it was obvious that the dash and interior hadn't been detailed. (Unless they refrain from using any product what so ever on the interior of the car. The dash and steering wheel were bone dry and dusty.) - 1 star + +I should have brought it up to someone, but my husbands' and sons' hunger won over and we just left. Thankfully all of their other locations are to far out of the way to bother detouring to again. + +The staff was friendly, and their waiting area was pleasant with lots of drink choices, although I'm not sure their waiting area was comfy enough for anything longer than a wash.",review,SCkg1fUjBVOze8wWlTGCog,0,2,2 +rQ4z0EStSZE4acgkne6Hmg,2011-08-14,RgKTVm_tNDD1uR5iIbFpig,3,"I went here last night with the BF and another couple, and we all had really high expectations for this place that just weren't met. Not to say it was bad, it wasn't, it just didn't live up to the hype. The space is very cute and warm feeling. I like how the chairs don't all match and it has a very homey feel. The service was also very good. + +The BF ordered their home made ginger ale and it was very interesting. It tasted like liquid ginger, which was pretty cool. For food, we started with the nosh plate, which was probably the best thing we got. It had this delicious onion jam type stuff with some crackers, cashews, some meat of sorts, and a really good cheese with dill on it. The onion on the cheese was soooo good. I could have just eaten that for dinner. Then we ordered mains. The BF and I shared the chicken and waffles and our friends got the mac and cheese and the flapjacks. I was not a huge fan of the chicken and waffles, and I was so excited for it! The waffles weren't crunchy at all, which I think would have been nice texturally, and the chicken was encased in the fried coating, but once you cut into it, the fried part just fell off. It didn't adhere to the chicken at all. Also, it was very thick and didn't have a ton of flavor. This was very strange. The sauce on the waffles was good, it was a honey butter or something, and the chicken was moist, but together, it was a disappointment. It did come with some wonderful green beans though.... they were seasoned and cooked perfectly. I tried my friend's flapjacks and thought they were a little strange tasting... but not bad. I didn't try the mac and cheese, but my friend thought it was good. + +We finished with a shortcake that has strawberries that were macerated with balsamic and basil and had some kind of cream in it. This was very good, I loved the earthy flavor that the basil brought to the dessert and the strawberries were flavorful and tasted fresh. + +Overall, it was good, but not great. Maybe I had too high expectations, but I probably wouldn't run back here in the future.",review,3gIfcQq5KxAegwCPXc83cQ,0,0,0 +xfk9eY8gmwn8qsbyd-W6lQ,2012-08-27,INDZ9AiW3vhZ3jSP5oHEFQ,3,"I've only been the their location on Central Ave. When I went to order my usual I was informed that this location doesn't have french fries. Ok bummer... I'll get along with it. + +We went later in the evening and the place was really dead. I'm sure at lunchtime its much busier.",review,_qT3bYTRwfaoJ9fForuFpg,0,0,0 +QNo69O4cy6a3HGb6RrGWzA,2012-04-09,7ZRJsKkEFViHU75xr-Lr7Q,1,"NOTE: This review concerns the Roberto's on Union Hills and 7th Ave. NOT the Roberto's in Anthem! + + +I am only giving it one star because I can't give it 0. Simply put i was very sick after dining there recently. This was the only meal I did not share with my family and therefor the only culprit to my food borne illness. I have enjoyed this place in the past but recently the quality has gone downhill. Now they are closed on Sunday's. + +I wish i had read recent reviews on here before i had gone. they have slipped VERY far since there Diners Drive-ins and Dives days. + +the guy that both took my order and cooked my food was obviously drunk. sitting on his cellphone playing what appeared to be a video game when i walked in.",review,ZVBvgWyq0ZP-Td2SXMeDAA,0,2,0 +oWb5JjxoPaFSmpGwJ3-Ntg,2010-05-05,zm7KvZN_6qEWk9zWd_XvPQ,1,"After stepping off the plane hungry, I looked around the terminal for food as I walked to the next gate. ""Wait a minute, I'm in Arizona. I should get some southwestern style food or mexican food. Is that a burrito place? Surely it can't be bad."" I ordered a #1, standard burrito. I take a bite. And another. ""Not bad I thought."" Then I took another bite. And promptly spit it out. + +The cheddar cheese in my burrito was moldy. And no, I'm sure it wasn't blue cheese. It was even obvious visually. After pointing the cheese out to the manager, she brushed it off as ""the bag was just opened, it's not possible"" even after showing the obvious mold. People around me started looking uncomfortable. Someone muttered ""wow"" and stepped out of the line. + +The best part? I wasn't even offered a refund or a new burrito, or an apology for the moldy burrito. Are you kidding me?",review,eqdQie8Y8wg6NONUHlVwzw,0,3,0 +Uty42E_VZV_iGMYiY_WB5w,2011-10-25,1vy4zZEyu6rUM7fza5urgQ,1,"I used to love Quiznos.... I would go out of my way to get a turkey bacon guacamole sandwich any day. At this point in my life I will no long be giving any money to this sorry excuse for a sandwich shop. The staff is rude and careless. I was given obviously bad guacamole... Which I didn't realize until i got home a took a bite of my sandwich to have the fowl taste in my mouth. It took 20 mins to get my sandwich, there was only one couple in front me. I'm done with this place. I should have went to paradise bakery across the street.",review,pUhzaeZmNU6KvcdvyDy2dw,0,0,0 +i213sY5rhkfCO8cD-FPr1A,2010-05-31,EduYXl9qzGIHzn_ucCTXlA,4,"I have been to the particular location many times. Except for the wait, we have always had a good experience. I just love that deep dish pizza. I am sure it is on slice away from stopping my heart, but not here for the health food.",review,s339yiWq3AnDbY-dRyqDVQ,0,0,0 +qjmCVYkwP-HDa35jwYucbQ,2009-04-16,QInmZS5p7jF85RwLTsWYYw,5,"If you're willing to run out for lunch a little early, enjoy the lively patio atmosphere will dining on yummy vittles. +A When-Harry-Met-Sally picky eater, I, um, grilled the waiter on seafood's sustainability and ingredient origin, and he was good-natured and knowledgeable. +A perfect eatery for a casual date or girls' day out. +Yay!",review,63HOmdiJzMOw9figAu14QQ,1,2,1 +3OauvrqUU8nDLWcW6q9hGQ,2010-01-15,ZMHfSBf4lLJCsGxQY8RYlQ,4,"We went over for dinner- had the spring rolls, chicken curry, and lemongrass chicken. The spring rolls and lemongrass chicken were about a 3 star, but the chicken curry was really good and made up for the others. We also had the coconut water, which was fresh. Prices were reasonable we paid around $30.",review,yJihBbisa05Yz6FUQtzE1w,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2011-01-07,iWKdWQzxDRzonRWlwGz-Og,4,"This place ROCKS! It's a little loud, but it's worth the visit. +Granted, I cannot pronounce half of the things on the menu, but the Jalapeno Cilantro hummus is to-die-for delish. +The Greek salad is awesome, as are the gyros. +I've never made it past the hummus, gyros and salad, but it is consistently great food and quick service. +Always busy, but isn't every good restaurant? +Go! It's yummy! This location is my favorite, as I think the one at Desert Ridge has slightly different tasting food (on the negative side of different tasting, that is).",review,DfJ8B8T1fgNA6_ZT-aeUlQ,1,2,0 +fd0iSXEhwz-foQdS8SCKYA,2012-10-26,9llQ6Fjv4w52xE3JakKdbg,1,"MY EXPECTATIONS WERE EXCEEDED! I've been searching for so long to have a dinner experience that MET all of my expectations - for a restaurant that I SHOULD NEVER PATRONIZE. Mimi's in Goodyear actually exceeded my expectations. On Oct 26th, while visiting the area, I made the unfortunate mistake of recommending we dine at Mimi's because of previously good food and service there. But, alas, if the old Mimi's quality still existed, they wouldn't have exceeded my expectations for WHAT NOT to experience in a restaurant. + +Let me recant why YOU or ANY ONE ELSE (except those people you truly dislike) should never patronize this facility. First of all, the interior temperature was at least 80 degrees (when it was less than 65 outside). We had to ask for the air conditioning to be turned on. + +Next, we ordered the artichoke dip appetizer. It looked funny. It tasted funny. The tortilla chips actually resembled pita chips. If it walks like a duck, quacks like a duck, it must be a ______. + +I ordered the chicken cordon bleu which is supposed to be served with ""seasonal vegetables"" and ""homemade mashed potatoes"". Can someone explain to me how MIXED seasonal vegetables can be served where the brocolli is steaming hot, but the carrots mixed with them are literally still frozen in the middle? That's a feat. My ""homemade"" mashed potatoes? Cold. A sliver of butter placed on top of the mashed potatoes would not even melt to graphically show our waitress ""the problem"" . Even after this effort, no offer from the wait staff (or manager-missing-in-action) was ever made to either warm up the potatoes, replace them ......or, perhaps, use them as wall spackling. + +After all this, they sincerely asked us if ""everything was all right"" and ""would we care to order dessert"". At least they have a sense of humor. + +Never again.",review,kxyuyoZFh3c5Ll66f0cxZw,0,2,1 +68euKezXqyvsE49cIGdL2A,2012-01-08,U5tVpgn_J3nRCEwyOshhRA,4,"Clean establishment. Rows of freezers in the back. Hidden from the street. Greeted by name what must be one of the regulars. Carries both Modelo and Dos Equis. Slowly made food for being dead. The green enchilada sauce is a must. Green chile chimis are fantastic. + +For the price, it was certainly filling and enjoyable. A place to come back to if you're craving decent Mexican in a sit-down environment but are too far away from a Blue Burrito Grille.",review,U5TnaAf__Bn1wbe44T4c_g,0,1,0 +G_2CWsU7GYwhNqptrLXUBg,2011-01-28,N23aEDYVXR7WDnqJXtXZgw,4,This place has the most AMAZING selection of cheeses. EVER. Boyfriend got me a tasting selection of about five different cheeses for my birthday last year and I was in heaven. Truly amazing variety and all were super yummy.,review,qRo9gHN5OiV1-peDuhCh-g,0,1,0 +K8pM6qQdYu5h6buRE1-_sw,2009-02-12,WKBfPAhdN7GM7sC-FbJOVA,5,"A philosophical elder of my profession commonly says ""Everyone needs three vices. Sex and chocolate don't count."" + +If I still lived in Phoenix, LoLo's Chicken and Waffles would definitely be one of my vices. The chicken is pure fried goodness. The mac n'cheese is creamy and crispy goodness. The waffles are BEYOND DELICIOUS. + +If I could give any future LoLo's consumers a hint it would be this: if you are sensitive to too much sugar like I am, don't waste your precious pancreatic islets on the beverages. I succumbed to the peer-pressure and got an Arnold Palmer, which of course comes in a quart-sized Mason jar. I reached my sugar capacity before the meal even started. I can only imagine the explosion of flavor in my mouth I would have experienced had I not wasted all my buds on sweetened tea and lemonade.",review,SBbftLzfYYKItOMFwOTIJg,3,4,3 +xOlzK02DWzETeZ8HbiEB0A,2012-05-20,vaHO1MNj18aarJYiVMBbTw,5,Yum! The toasted barley app is delicious. My boyfriend and I shared the eggplant sandwich and the monk burger. Both of the sandwiches were outstanding. The service was great too. We will definitely go back.,review,18buMk5M3IMnfwazFPka8A,1,0,0 +JHUcIssf3crggsVxfQ8q8w,2010-06-29,xA0NcSxyTFOs4WvuYdIZBQ,4,"""They outta chicken or day just dont had none.""",review,a5q6s4Lm5LpXb7662LDccA,0,1,1 +BRaQrgYVR17bd_zr-wNSlQ,2012-12-10,OFatB40F-vEhDbIQaVRhow,5,"I am giving this location 5 stars cause its been my stomping grounds for atleast 12 years now, its always very good, clean, and I have never had a bad experience here. Wendys locations are just class acts, they are always my go to burger fix. I also made this my daughters first burger when she wanted to finally try one so she could have a good experience for the first one and always have a tasty burger to judge the rest by for her life. If its good enough for my daughter, then its good enough for you :) eat up and review.",review,0Jlviq1YD76N-WK_GUeDMw,1,1,1 +L9UYbtAUOcfTgZFimehlXw,2009-04-11,OhvAagILH8MRpZOjDeYEOw,3,"Went back to Liberty Market the other day and bought the Molinari pizza. A friend had complained that the outer edge always burned while the middle stayed too soft and undercooked. I like the stuff that comes on these pies, so I figured I would give it a shot. + +She was right. It wasn't unedible, but the middle part was pretty scary. I have no idea how they should fix this problem but this pie wasn't great even though I still love this place. + +Oh yeah, Joe, you also need Sweet & Lo!",review,Rg4gzsz3w00vRlIOXcGUIA,1,2,1 +NSkmg9I32-BccQsfXKHdAw,2010-07-26,XoBx5_7__zK_dWg08TbmVQ,1,"The location has closed (AGAIN). Not good if you have prepaid washes or other credits as the business has closed. Some speculation on other sites is that they have filed for bankruptcy again. + +Don't bother stopping by to use their services as the facility is cordoned off and a big sign says ""business closed"".",review,OQPPH3MMG7paqfw1THYGsQ,0,1,0 +OypZxwm-jS9QfUwgBmzeyw,2009-08-23,Ivz8DaqoQbXoom7cUxHTHA,2,"Just OK for lots of money. Service was very good, food was nothing special. Butter was rock solid, not spreadable. I would look for another seafood restaurant before ever going back to this one.",review,xU7n0NjHdui0VQShuxEXJw,0,0,0 +Lx4ZFP6dIMzi7Ib-ljV-ww,2008-05-01,cT4vUqsgqLdGm695YUjYLQ,5,I think this is the best fast mexican food in Chandler or the surrounding area. The food quality is high and consistant. The prices are downright CHEAP. I really like the bean and cheese burritos and the chili relleno burritos. The jalapenos and carrots are a must and I am thrilled that they started selling Tamarindo.,review,T7J9ae0wTskrI_Bgwp-4cA,0,2,0 +CV4DDFG6tII-ehzaWPXK4g,2009-11-23,RZR-7H08xrPVTusHSawFvw,4,"Breakfast, Lunch or Dinner, love Wildflower. For breakfast the stuffed french toast is awesome, lunch any of their sandwiches are good. I don't really care for the salads but I love the Potato cream cheese soup. The ice tea is so good and the desserts are wonderful. My favorite thing is the Salmon Alfredo, that they serve with yummy garlic toast. + +I like the order at the front and they bring it to you, very convenient and I don't have to tip!",review,tfYiqaLU5swUfMO9JJp9Dg,1,1,1 +3OauvrqUU8nDLWcW6q9hGQ,2009-12-04,YuatdmTpwSjym3GwUtSaPA,3,"I can only give this place an OK because that's just what I have had from them so far- food that was ok, not slap your grandma good! The menu is kind of hard to understand but I know that I like chicken pho so I ordered that the first go-round and just wasn't wowed like I wanted to be. The noodles were good but the broth just wasnt to my liking. The second time I had pork noodles (dry) and it was better but still not GOOD. JD had the spicy noodle soup and that was good too, but , again, you guessed it-OK. I haven't given up on it yet because it is so close to my house and the people are so nice and friendly. Any suggestions on what to order won't be ignored.",review,wC1CPV5bf--bDLtlhNSPLg,1,1,1 +MLVKDbuI2xaOJQ4-NZj2MQ,2012-09-13,SpsG9nQNrk1jO446zqdK-g,5,Best pasta I have ever had. Don't go there if you're looking for a two-pound chicken parm or endless breadticks.,review,sul0rJDvTT9QTMGiuA52WA,0,0,0 +sI-2c9HZ0RjZX1OU-5DW0A,2011-07-21,R4OYHqwjWHQEg8VSHAeWuA,5,"This is my new addiction! Took some friends and family here to celebrate my mom's birthday, it was her first time and she had a blast. + +Our first chef Poncho isn't at this location any more which we were disappointed about but ended up having another great chef named Sam. He was funny and the food was great! I tried grilled shrimp for the first time and I am a fan. + +Our waitress was awesome! On top of everything, funny and she told us Sam was the head chef and that it was an honor to have him cook our food and that she was so glad we got him, seeing that it was the first time for almost everyone in our group to try a place like this. + +We have also had dinner on the patio when it was cooler out and enjoyed it too. I will be eating here often. + +Thanks Hayashi for always making my dining experience fun and delicious",review,kSvFC3l_v1T6Q6S89IjqDw,0,0,0 +rrd7NeAgARDNzPsxxsBJiQ,2012-07-29,aHH5Bmfi0pWUhD7V5lMGbA,5,"This is the only work of his that I have seen in person. After living in the valley since 2002, I FINALLY decided to head out that way. I found the information about the life and times of Frank Lloyd and his 3rd wife very interesting. The house was amazing and beautiful. I especially loved the local rocks cast into the concrete, and the lines that created a flow. I would highly recommend this tour to any one with an interest in form, function, and beauty.",review,fLjjtm4beQfqPxLfeuqboA,0,0,0 +HiTpXu1BNE2DlvjyqpObjw,2012-03-10,IK9QPImSRZNqng0MonmvLw,3,"Pleasant and beautiful. Feed the koi fish cheerios. Bathrooms are out of a catalog...I want that! Walk at a snail's pace, because it's not terribly large. When you're done, walk down to Pita Jungle or Lola Coffee!",review,oVWlHAwQBOqP0TuK6cifIg,1,1,0 +R6aazv8FB-6BeanY3ag8kw,2010-11-13,Y40PS2JdUlbAIbsQ9NVeYw,4,"If you can avoid the vintage smell you're golden. +I walked in - smelled grandma's place with a hint of Goodwill and decided to get myself acclimated and walked about the store. They have quite the selection of vintage furniture, jewelry, and clothes. I fell in love with a few jackets but was all about trying some phosphates and getting my munch on. + +Playing it safe I first ordered the cherry lime phosphate BUT holy carbonation they have a long list of flavors that all sounded if not yummy definitely interesting. +The food is so good - my chicken salad sandwich was fantastic and came with the best potato salad I've ever had (don't tell my mom). +I was going to order the champagne phosphate but my pinup girl waitress steered me into getting the pineapple. It was so sweet and not very pineappley but still good. + +For the lady who made a post about no french fries I just want to say, really??? It's nice to have other options and they keep it simple, unique and delicious. I can't wait to share this place with my friends and family.",review,qaAmAU9T_t84UDGiBI98sw,1,2,1 +z1Np8_oQECKWGCwJJ8864w,2011-01-29,n5rmItEqGu5eGwm5yfgOHw,3,"Typical chain ""southwestern/Tex Mex"" food in a corporatey atmosphere. They have some tasty dishes and a killer sunday brunch, but everything on the menu is kind of ambiguous. + +Prices here are about on par with most places of this type (I put it in the Applebee's, TGI Friday's, Charleston's, etc.) category. + +I enjoyed my visit to this location better than my visits to the PV and Tempe locations.",review,JgDkCER12uiv4lbpmkZ9VA,0,1,0 +5Wej_VIpvaXhRTXrdpPQ6w,2008-07-17,-Ix31W3vK3y9aRMFt60R3w,2,"My name is Christi and I'm a carb addict. Bread with my pasta. My lover's pizza crust (classy, oui?). Hashbrowns with my French toast. + +I've tried to quit, but I can't. And, I've also resigned myself to the life-is-too-short theory, so what the hay, bring on the starch. + +I did almost get a salad at Bar Louie's because it was a pretty late dinner and I wanted to save room in my belly for dirty martinis. But, they have an appetizer that I couldn't live without trying - Warm Pretzel sticks. 4 huge soft, warm pretzels covered in salt, served with cheese sauces and honey mustard dip. Simple, yet during my carb withdrawl that night, it was the greatest tasting thing I had ever eaten. + +I can vouch for the pretzels, but other than that, the service blew chunks. Over 15 minutes to get shots of jager when we were the only table in our server's section. When people order jager, that means they're on a mission, so give it to them...fast! + +We canceled our drinks and left to drink wine in our hotel room. We knew we'd get drinks faster there. + +If you're gonna go, go for the pretzels, not for the jager.",review,LjqRoxm1-OwhkGxo3aYmTQ,1,1,1 +V1nEpIRmEa1768oj_tuxeQ,2009-04-16,e7Qz1hkaMUKgIZwRlj0gtg,4,"pros + +good pizza +fancy , expensive but not outrageously expensive +clean interior +outside setting with heating lamps to add to setting. +good drinks (got a green tea, the name of the tea, called ""Infusion"", lives up to it's name!!!) +the design of the outside, and inside, makes the place a 5/5 for the interior. the food is great! me and a friend shared pizza (toppings were meaty sausage and cheese). the bill didn't come out to a large amount. the wait was a tad excessive. there's a bar. friendly service. + + +cons: +none for me, been here only once and will never be here again because we were tourists",review,TBP7qPt0cPjtSh_k7OTMQw,2,2,1 +16SBP4NJhr7PTOW-WnRL5A,2010-12-15,vsXj6dELMZYb3Z_0kMN-Xw,1,"First off the woman who answers the phone is not impressive at all. I called to consign my furniture and when I asked her about some info on the store,, she said "" do you want to consign your table or not!"". Quite rude. That was a turn of for me..... +The next day I went in the store for some info but when I entered I knew this wasn't the right fit for my Robb & Stucky table. The place had older style furniture..dated couches, florals, mauves. There was one accessory that I would buy in the whole store. + +Needless to say, I won't be coming back or consigning my table or anything else...rude stuff + gross stuff...what more can I say!",review,ASDRgz4AAaJY9IvTrIJNsg,0,2,1 +Wg_mT_9_tLbsLfzTtnOBqA,2012-07-25,mZWmmsB49IAIi0i6Kf9B6g,3,"Inexpensive for the early bird special. $5.55 for the combination plates that include egg roll, soup, rice, and your selection. If the food only had more seasoning or flavor? It was very bland and flavorless. I usually do not use soy sauce, but needed to use it to add something to my dish. + +Neat features: Koi pond inside with a bridge over it.",review,SEDFpR4oMPKqXMjbJiMGog,1,1,0 +TTjdeeMfTw9s9vg4T1a3pw,2011-01-26,8YMNavgYg6aTEzkmtvxdkg,5,"I love Gabriel. He does an amazing job every single time I'm there. I generally get two peekaboo highlights put in, and a cut and style, and always leaving looking great. His attitude is always upbeat, it would be impossible to spend any time in his chair and not leave in a good mood. The salon is always clean and comfortable. I never feel like I'm being forced into spending more money or buying product, but when I have a question about what I should be using in my hair Gabe always makes excellent suggestions. I have recommended him a good friend and my mother and both love him. My mother even left her stylist of 10 years to start going to him because of the excellent service he provides.",review,V6rhoTCw7S6H8eHwv2M6Vg,0,2,0 +r3r_bAfa6pZKIhQB82FizQ,2009-05-30,xp6Pfn9xSeM-NiDfAhI1pg,2,"Trust me... no one wants this place to do well more than me. However, after 4 visits I have to confess that it is a solid 2-stars. I'm confident in my comments... and maybe a little heartbroken. + +1. Loved Chef Wade Moises when he was at SASSI in Scottsdale. I'm a fan for god's sake. + +2. I'm a big pasta-crazed fool. Seriously love it. + +3. Love dwntwn Phx. + +So what could go wrong? + +Service: +No one to greet you properly at the door. The space is awkward enough as it is. Staff was always inattentive and often seen hanging out at the bar. When asked why cocktails the ""signature cocktails"" took so long to prepare, the server responds clumsily ""Because I had to read and learn how to make them just now."" Yikes. + +Back to the greeting... We waited about 2 minutes in the doorway listening to staff sitting at the bar chat about how they hoped they could close early that night. It was only 4:30 pm. + +Vibe: +The space feels cold and almost clinical. With the lack of fabric in the space, it feels like I'm the ER of a hospital (minus the curtains that surround each patient bed.) The staff certainly doesn't add warmth. Also reminds me of a corporate staff break room. Art on the walls is just bizarre (read other's comments.) + +The Cocktails: +They look good on paper. See my comment above about Service. That's all I can really say. + +The Food: +Each time, the Fritto Misto app ($9) was salty and sad to look at. Orecchiette with Sausage ($15) looks fantastic on paper, but never quite right. + +In fact, I've tried every pasta dish on the menu. I'm simply heartbroken. I crave handmade fresh pasta, but the pasta here just leaves me guessing... I'm I the odd ball out? Why do all these Yelpers love the pasta? It's wimpy and the proteins almost taste boiled (texture and flavor.) Approx quote from a guest, ""gummy handmade pasta that looks like bloated playdoh in water."" The sauces seem near amateur as if they were never tasted before serving. Usually on the salty side. + +Forget about portions, price, space, ambiance, whatever. The important question... DOES IT TASTE GOOD? + +Sadly, no. + +At each visit, I brought other notable chefs from the Valley. In one instance, the five of us ordered an entire dinner, ate a few bites of each dish, asked for the bill and decided to head next door to Sens for dinner (which is another review in the making.) + +I'll wait till sometime in the fall season before heading back to Pasta Bar. Maybe it needs more time (although it's been open for a few months already.) + +As always, I'd encourage you to try it out and make your own decision. Wade is a talented chef who can do amazing things in the kitchen. I have faith in you my friend! + +Side note... for those of you who fixate on butter and bread service at restaurants, do us all a favor and stick to your cheap filler salad bars. Bread and butter service is simply never worth commenting on as a crucial component of a meal unless it's stellar. (BTW... I realize the irony of making commentary on the worthless comments)",review,HaDEZSNSTNFmq6laVB6ZMQ,6,12,3 +YeDYa6tYL16CyqYvUVOtLw,2011-01-29,9OwfnHMWuznxk9pckE6cDQ,2,"Ok... I'm a Die Hard Jimmy Buffett Fan - a Parrot Head through and through! + +But... This place sucked. I've been to half a dozen different Margaritaville Restaurants and I knew what to expect, but this one by far failed to meet my minimal expectations. + +The service is slooooow, food is canned and poor quality, drinks are weak and expensive. The only upshot was all of the Jimmy Buffett paraphernalia and music, and I've already got a lot of that stuff. + +The next time I'm itching to get my island groove on, I'll do it right. We'll grill chicken and burgers in the back yard, put the booze in the blender, light the Tiki torches, invite 20 or 30 people over and jam to Jimmy. More fun to set sail to St. Somewhere in your own back yard than it is to have to endure the Glendale Margaritaville. + +FINS UP!",review,P_LzcrlVXFdgBq_24UnlUw,0,2,0 +6TuM3UyFP9O9uzTP0dVZMw,2012-06-20,rzoYyjTXT5ga6RsgzhLa9w,5,"If you want a good meal that will fill ya up, for a fair price...Wally's is a great choice! + +The menu has great variety. If you want a burger, there are many to choose from. Each is huge and juicy, and comes with your choice of a side....go with the blended fries that include deliciious sweet potato fries. + +Want a salad? Again, many to choose from...my favorite is the chinese chicken. And, in case you missed my earlier comments, expect a BIG salad. + +And, if you're not watching your calories, then try any of their specialty mac'n'cheese dishes. WOW! + +I can't comment on the desserts because I can't eat anything beyond the entrees...but, I've seen others order a dessert; they looked yummy and - you guessed it - HUGE! + +And, here's the thing about Wally's: they're ""good people"". in addition to providing you with a great meal, Wally's staff are active supporters of non-profit organizations in the greater Phoenix area. I have first-hand knowledge of their support for the Valley of the Sun Unted Way, and the Boys and Girls Clubs of Greater Scottsdale. I have no doubt they support other causes.",review,Q78i-PR6G2Nve0lfJ3YnGg,1,2,0 +lktu5JPDlQUG-7cV7gOzDQ,2009-10-28,OA_eRg3yvFdCv2UQV2MHoA,5,"Drinking coffee from Cartel makes me want to get my own San Franciscan SF-25B Coffee Roaster, in much the same way I wanted my own pottery wheel after seeing the movie Ghost. + +It's. That. Good.",review,emNXAAschSlcvqmDZFj5TA,15,15,20 +le1IsRLrTq2Xo78RyFpsnw,2011-06-19,7xEKnQPNDz7-EwMTXsqjZg,3,"Super fast service of OK-tasting subs. I've definitely had better, so the signs hanging all over the place that claim that they're ""gourmet"" is definitely a bit of marketing puffery. Yes, it's gourmet compared to....actually, I think Subway makes a better sub, so I can't really compare it to being more gourmet than anything really. Maybe it's gourmet because they put a ton of sprouts (and lettuce) in the sub? + +I will give the place props for the very speedy service. I ordered my sub and it was handed to me within 1 minute. Another thing I noticed about the place was that it was filled with male patrons. If you're a single lady looking for a manly man, come to Jimmy John's.",review,pNNo7mVPI8j3HFCw9tuzPA,0,0,0 +3DMvGD8ZmlMQmhwV66hdSA,2011-03-25,UqQajW_qq-42RUm376XdXA,3,"Good Chinese food, great value -- especially for lunch. China Village is one of my regular haunts for Chinese food when I'm in the neighborhood. The building may look run-down, but the food and service are good.",review,q_depZqSFOtI0kT3F6Ihbw,0,0,0 +t4aP7ksa716XY6S4EsWFqw,2011-04-30,L9vNexAqXeDn9VKBQ_2-NQ,5,"At length: A trip to Kauai for our friends' wedding several years back led us to Puka Dog and the discovery of another type of holy matrimony: the perfect union of frankfurters and tropical fruit. Our friends are still together eight years later, but how my hot dogs have longed for the companionship of a little pineapple and banana relish. + +Disconsolate from my long lost love, I have abstained from the hot dog community (except for Ted's, because it's amazing and what happens in Tempe, stays in Tempe) until a new beau arrived: Maui Dog. + +In short (ish): Yummy, yummy, yummy, I've got Maui Dog in my tummy. I tried the Sweet & Spicy Dog (favorite!!!) and the Lava Dog (messy!!!) and the house made fries. Everything was delish, and I'll be back to try the rest. The restaurant is a cute, clean, pseudo-dive (kind of a Two Hippies vibe) with a few tables inside and a dog-friendly patio (tee-hee). It's funky and it's affordable. Go ahead, try it. You just might fall in love.",review,gJEJg1fPVDPnkdcVFbVlBQ,0,0,0 +pAHUC05ceak48e745i6G4g,2012-02-28,r8r4aZHyTtPk5Ntad7FDaA,5,"The service here was wonderful, really friendly and personable. And the food was OUTSTANDING! That Brulee burger was perfection, paired with some fries and a marshmallow shake. I wanted to stay in town another day, just to come back here to eat!",review,qw-XefCQKAyQkbAxbmD6aQ,0,2,0 +KBG28p3lGX17hOPoHhq5PQ,2012-12-01,Rluzf-g97XfB_xdTeN63cw,5,Best sushi in town.,review,-Gylxh4yUIsUbOeXyrqeHQ,0,0,0 +FURgKkRFtMK5yKbjYZVVwA,2012-06-16,ov3wOSA40p8l7jlS_sZqJg,4,"I have visited Windsor twice now and I would describe it as fun, trendy, and a little hipster. The drinks are great, good combinations with fresh, unexpected ingredients. I love the 80's soundtrack, my only complaint is that it was a bit too loud at night, so you had to scream to talk. The food is very good, kind of a modern take on comfort food. The brown bag chicken sandwich had a lot of flavor and the mac and cheese is done really well, just the amount of flavor and creaminess. The crab cake BLT was very good as well, the cakes were mostly crab, very fresh tasting.",review,2hXL2ExBsgjJNpm6BJy0lg,1,0,0 +rOHs19lhPWXiuPMHzNbJZg,2012-06-06,Tp5BCuA3xyONjY0VMho7YA,4,"Oh lawd!!! + +So, I'm a relative nevercomer to this cuisine. Like most people, I hear 'Szechuan' and I think 'just spicy Panda Express food'. Meh. I couldn't have been more wrong. + +I was in Atlanta with a friend, and he took me to a place that specialized in Szechuan cuisine. I had my first experience with Szechuan peppercorns there, and I was hooked. All I can say is, if you haven't already tried authentic Szechuan cuisine, then you owe it to yourself to give this place a shot. And if you HAVE, then you already know what I'm tombout and you probably already eat here all the time any damned ways. + +Enough other reviews have touted the wonders of that amazing spice, the Szechuan peppercorn, so I'll let their words be the guiding lights of wisdom for that. What I'm gonna tell you is- I travel all over this great nation of ours, and this place delivers the goods, in the way that I want them. The food is inexpensive, it's reliable tasty, and it's exactly what it's supposed to be. Other people have complained about the service, and to that, all I can say is: ""get over it"". It is what it is, and I haven't had any problems here. Their food is exactly what it should be, it tastes exactly like it's supposed to, and I love it. + +Still keeping an eye out for one of these Asian girl + white guy couples, though...",review,U5JyHRVayfHRHipogAq84A,0,1,0 +yRga-WpyfZRz8Es4OpyMhA,2012-10-09,LvD6deYIQ_Nl8kzSMIKAAw,1,"I have only been going to LA Fitness for about 6 months. I live in Scottsdale and work in Phoenix, so I go to the 20th St & Camelback, Scottsdale and Oak and McCormick Ranch locations. The Scottsdale locations are GREAT! They are clean, the staff is really nice and I see people cleaning the equipment when they are done. What is it with the Camelback crowd? The place really smells bad! It really needs a good cleaning. There has been this big spot on the carpet in front of the womens locker room since I started. I was on the treadmill the other day really noticing how stinky it was and then the guy next to me finished up and just walked off, I swear he was sweating like a pig, left the equipment drenched! UGH!!! Good God! I couldn't believe it, Can't the employees make these people clean after themselves?? The reviews are right about the staff just hanging around at the front desk.....they should be cleaning something, anything. It really is a shame that this centrally located facility is a real stinky mess!! I can't wait for the new one to open on 7th Avenue! Maybe then they may clean up their act.",review,t_jYLnGYRO0zxqScljX8Rg,0,1,0 +plPRO44rGZHQWyOzgH-5ig,2012-02-07,kFBwGlC1CM6jtX2V_-Wxmg,2,Unfortunately this UPS location is less than friendly or helpful. Try the location near Fry's in Fountain Hills. They are very friendly and helpful!!,review,bqOdnzSn0Dj7-a_SlLc8HQ,0,0,0 +zOCdVUKUN3b-obT67Qjyww,2012-07-28,vFQuay8eMRYhcrLCmTq8_A,3,"I will start with our experience from the time we walked in. The customers sitting in the restaurant stared and some laughed. I guess we missed the whites only sign on the front door. However my husband and I love to try new things and don't care what people think. The hostess however was nice and pleasant. Our waiter was also great. The food here was delicious for an appetizer we had the stuffed mushrooms which were to die for. Our main entrees were the German meatloaf and my husband ordered the tenderloin. My whipped potatoes were so delicious. The cabbage was awesome not to sweet not to salty and the meatloaf was refreshing. My husband enjoyed his tenderloin and fries as well. It was seasoned perfectly. + +The skinny is if you don't mind being treated like the 13th amendment was never signed by the patrons of Haus Murphy's and want some Excellent German food this is the place to go. The staff here were great though.",review,Qbjjv9H_JQ-9IgjvXaRLPQ,0,5,0 +Zpl8mUrhJJizHHOhbP4bxQ,2011-05-18,CCLNquEEZBypPb5lPZUD6A,3,"tip: if ordering in the drive thru - either there is no speaker system or it's out of order - when the person wearing an apron walks up to the side of the menu and stares into your car that means ""Hi, can I take your order"" There was a few seconds of awkward silence and wondering WTH this person was looking in the car for before we figured out she was there to take our order :) + +Since moving to the west valley from southern CA we've been itchin' to find a replacement for Alberto's or Taco San Pedro. Humberto's reminds me of awesome hole in the wall type Mexican food, but unfortunately still leaves something to be desired. + +With that said here's info on what we had: +If you're from So Cal and have had Northgate's shrimp ceviche Humberto's comes awfully close. Verdict - Ceviche - good. +Cheese quesadilla - cheesy - did the job +Nachos - good + +If you've been out late partying it up and need to satisfy the munchies monster Humberto's should do.",review,Y8qbeE1E6chGtorUpQGZ3Q,0,0,1 +l6EcX0blOzMqHWSdTHXLLg,2012-10-07,tLgLjWNiMctzj0ezxKEE_Q,1,Ok I'm very surprised by the reviews on here. I'm not one to want to write negative reviews but our food was so bad I couldnt help myself. Maybe this place was having an off night tonight but their pizza barely had any cheese on it and the crust was soggy. Unfortunately the pizza was better than the wings that were overly breaded and soggy as well. Thank God we had a groupon and didn't have to pay full price. Won't be ordering from here again. Disappointing :(,review,tCobUVoJSBdFrb3041vklg,0,0,0 +YI96mMSf2GxXq7aFHLHx3g,2007-03-05,8ZxOXO0p5xT378RnAmV6nw,4,"Really great happy hour. The wines by the glass are $5 and are a much better value than the tapas they have on special (also for $5). The tapa plates are tiny, hence the 4 stars only. + +Must have: eggplant canelloni, manchego cheese, pancetta dates, Foie gras (just because I LOVE foie gras) +Skip: Lobster corn dogs -- while this was interesting, you couldn't taste the little crumb of lobster inside. +So-so: yucca frites, French fromage + +All in all, a lovely way to spend an early Sunday evening.",review,zLIV35n1gZ4fg6cGSRqNIA,1,1,0 +8v1MWkAeU3nEuqGd27jZeQ,2009-11-09,fZXhCxuyzY8mUpgkeg96Aw,4,"The other day, had a lunch from there. + +No, didn't eat at the restraint, but we picked up a very sizable lunch for a family reunion. The lady that helped us was very gracious, and accommodating. I know, how can someone helping with take out be accommodating, because, my sister, being the wild and crazy type (and to accommodate her husband) ordered 12 Pasteles uncooked, just as raw as can be. Why, so he could freeze some for Thanksgiving. That's the Puerto Rican in him. A holiday is better when it reminds you of childhood. + +The food was excellent, the Ropa Viejo nice and tender. The Paradise Pork (I think that's what it was) was also very good. And didn't taste like a pig. (The only good part of a pig for me is the other food group: BACON!) + +And we all discovered deep fried plantains, excellante'. + +Dessert was rich, sensual, wonderful and sexy!",review,oG7z4APa-gjggR5Sv1ivCw,0,0,0 +9cmq0_NV08ejfNsSgr2c-Q,2012-03-18,R0Q7dMneHy0g50N_QtIkXw,4,"I've been coming to this place semi-regularly since they opened, and I love the drinks and service. You always get a friendly welcome and the staff is eager to explain the menu. + +I'm a chocolate-lover so I usually order a Frozen Hot Koko with almond flavoring...SOO GOOD!!! + +The only thing keeping it from 5 stars are the prices. Like most places, prices are set so that the large is the best value, but a pair of larges for me and the gf runs about $20, so we only go a few times a year. Still they have a few ways to save- a loyalty card program and loyalty tiki cups.",review,oijTMVRAYB6DrSkhLlaHjA,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2012-02-29,YV3ia99QsZceEIOm3ezEYQ,2,Food was marginal....Sunday brunch. Prices were stupid. And I felt like I was in a New Orleans' night club...on Sunday morning. Ick,review,d52dRQsUK2daiOtdlw-wLw,0,1,2 +YQvg0JCGRFUkb6reMMf3Iw,2011-08-11,Un80qMN0QR8dNopmZEUgog,5,"Be sure to see Taylor, her service is great, the food is awesome, had roast beef sandwich ...and a plank of bruschetta! But without good service the experience lacks. Be sure to try it out.",review,I-sHax6SY-Pqc7xfbHnUyw,0,0,0 +nvaAUTTl7oqiJDhuimNG6A,2011-02-17,OJuPyrI8oji5YxlszG7nLA,5,"I am a huge ""foodie"", from a long line of ""foodies"". I grew up living in hotels and on room service and fine dining. This is the best, very best, breakfast restaurant EVER! I have been living in Tempe for about six years now, the first two sad sad years I did not know that this wonderful place existed...after my first visit, this is my go-to, best place to recommend, favorite breakfast place to eat at! If you go on a Sunday, it will be very very busy. Everyone is super friendly. The place is very clean. Prices are amazing! Cheaper or as cheap as the nasty breakfast places or fast food. Huge portions and great quality food. I have never had a bad experience here, and to be honest...even if I did, I wouldn't care. I feel like home here. Everything on the menu is delicious! I've tried almost everything. Here are a few of my favorites (don't forget though, I love it all) : +O'Pear Grenache Omelette, Greek Fetash Omelette, English Harvest Omelette, Huevos Con Chorizo (with scrambled eggs), and the Blueberry Hill Girdle Cakes (pancakes! you can order half an order or little ones...we always get an order to share at the table). Their potatoes are delicious and crispy, the english muffins are great and their homemade jam is absolutely amazing! I have bought many jars of their jam to give as gifts! Just delicious! I wish everyone knew about this well kept secret. DON'T LISTEN TO ANY REVIEW UNDER A 5 STAR! This place is the best, bottom line. Try it. You will be hooked.",review,PnEAXZ7WyJMYBr9IIulh5Q,2,3,0 +rZbHg4ACfN3iShdsT47WKQ,2012-08-20,3YMd477-JkPvQ_95D7d3lw,4,"We were craving some BBQ, and hadn't been here in a while, so we decided to head over. It wasn't overly crowded on a Sunday night, but it wasn't empty, either. Hubby and I ordered the same thing, 2 meat combo (brisket and baby back ribs) with double grilled veggies--extra grilled. For some reason, we both got the same thing, sometimes that happens. + +First, we got our cornbread, which is always so delicious. They serve it with butter, but you don't really need it. Our meals came quickly (we didn't order appetizers), so we dug right in. The brisket, as usual, melted in my mouth. It's probably one of the best places I've ever been for brisket, and that's saying something. I always order it wherever we go. Also, my husband is NOT a brisket eater, but he will order it here. Now for the ribs, I need to let you know, I'm a sweet & savory BBQ fan, definitely not spicy. I've had the ribs before, and they were always sweet and tender, plus they literally fall off the bone. These were like they usually are, fall off the bone and tender. But, there seemed to be a spicier rub on them, which was a little off-putting to me. Even my husband mentioned it, and he doesn't mind a little heat. Neither one of us remember them tasting that way. I dipped them in the sweet BBQ sauce, and that seemed to cool the spice a bit, and I did eat them all, but I'm not sure I'd get them again. And, lastly, the grilled veggies, which consist of green peppers, zucchini, squash, onion and mushrooms--wonderful!! I love the charred grill taste, and I gently dip them in the sauce. I really adore them! + +We rarely get dessert, because we're so full. We have taken some cobbler home before, but it's never quite the same as having it fresh from the kitchen. Plus, they bring you each a fresh mini sugary doughnut with your bill. These are the perfect finish to a very good BBQ meal. They bring them to you in a bag, but to be honest, they've never made it out the door. + +The only reason I'm giving this restaurant and meal 4 stars instead of 5, is because of the rub on the ribs. Other than that, it was a perfect meal.",review,CEEIQq93JO8aSRx25wir9g,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2010-12-30,7jNcO2ybXz2rZkHbQMKqmw,3,"It's an upscale casual restaurant with nice decor- 4 star, a quick meal before or after shopping. A quick meal means only if you get good sever plus quick service. + +We went to have brunch on Sunday and it was pretty packed in there. After looked at their simple brunch menu, we decided to get Grilled Hanger Steak with Scrambled Eggs, and Cinnamon French Toast with Fruit Compote & Syrup($8.50). + +It wasn't too impressive, the food was just ok- 3 Star. I think you pay more for the ambiance than the dishes. The service was alright- 3 Star. + +It felt like you are in the market with chit chat and bargain noise, which i thought it was kinda annoying.",review,kNoJOBs6yFuEE-HFkSLcww,0,0,0 +-UnYs8XvV1M983xZoREdng,2012-10-03,n4ewVmhgYpgb1WjDxPP0_w,2,"A group of four of us went last night for the first time. I had purchased a Groupon, and was excited to check out a new winery. The service when we arrived was dismal. It took a tour leader from another group to flag someone's attention. We had reservations yet they acted surprised to see us. Given all this, if the wine had been great, we could have forgiven the service...it was not great. I don't expect the wine to be of Napa or Sonoma quality, but at least make up for it with your service. + +Disappointing, and I'll stick to other local wine bars moving forward. I honestly can't believe this place has an average of 4 stars...",review,VxUqqs1r9fwaI_ga2-aulg,0,2,0 +pwpl-rxwNRQdgqFz_-qMPg,2009-07-03,s4NJKuyGmkRDs12W4vu5JQ,5,"It is sometimes difficult to start out busy and maintain great standards from the beginning. The Parlor seems to be nailing it. Hip yet comfortable decor. Very creative design, and I loved he subtle yet present homage to the former tenant Salon de Venus. As soon as we walked in we were greeted with a warm and sincere smile, and that same enthusiasm was felt by every single staff member we encountered. +Ah the food! Fresh ingredients, a great light pizza crust, and an original beet salad all had us raving. The only minor picky foody issue was the Nectarine Crustada for dessert was luke warm at best, would have liked a nice hot dish to melt that delicious ice cream. + +But why nit pic? This place is a big hit, from the moment you walk past the fresh herb and vegetable garden, to the fantastic staff and the savory food, this place is already on my regular rotation.",review,UTt78HkUgvATBJxhXIPZJw,1,1,1 +-sC66z4SO3tR7nFCjfQwuQ,2011-11-21,1v4JIRAAGKa1bGFrbswn8g,5,"We were staying at the Claredon and the desk clerk (who is also from Yuma) told us that their restaurant was voted best Mex in Phoenix and she swore it was true so we had to try it. + +The elote (roasted corn with cheese and smokey paprika) was fab, as was the ceviche! The carne asasda taco was tasty, as so many have already said. The real stars, however, were the pork belly and vegie tacos. I'll be dreaming about those til our next trip north.",review,_UhFmYeZOzi2GTFkSUuo8A,0,0,0 +_CG5zJAoNN6gszjhSyUcww,2010-03-21,BC0G2sewKVi0ZYWly6O82g,5,"Everytime I think of Chodang my mouth waters. I love the spicy tofu soup they serve here along with their korean style dumplings. Their portions are just right. If you don't like spicy foods you can tell them to not make it spicy. I also love the condiments they serve before the meal. Love it! + +I like their decor. The tables and walls really go together and you definitely feel like you're at an asian restaurant. Everything is neat and clean (even the bathrooms).",review,XYXA68TWwyHle2Y43zkD1g,1,2,1 +zsWJEyP8YyJkux0muGtiVw,2012-03-13,PXiin-FrcnQ3MhAQRHsTZQ,4,"We had a restaurant.com coupon. They also have happy hour specials on appetizers. You cannot combine specials with the coupon. + +We started with edamame and mussels. I have never had mussels before, just oysters and clams. The mussels were eff'in awesome. They were not super chewy and the way they were seasoned and served, spicy and bold, was seriously amazing. + +Three of us polished off three different rolls. Spicy tuna crunch roll, over the top. What the heck roll, another spicy roll that was seriously good as H€LL! Screaming roll, spicy tempura style shrimp roll with a delicious crunch. Spicy is the way to go with sushi rolls. + +For dessert we went with mochi ice cream, served in four flavors: vanilla, strawberry, green tea and mango. The green tea and mango were my favorites. + +Such a good dinner, now if only they served alcohol.",review,gDl4dMYPpuuIaNAW_Bh3qQ,0,0,0 +zhS1u1XtJV69nosLL6H7hg,2012-01-23,kf6FDes-WsH94rEIrSmgAQ,5,"I love this place! I've been here twice now and walked out with great finds both times. They have a large variety of clothes - work-appropriate & fun cocktail dresses, fabulous shoes, jewelry, casual skirts and shirts, and more. The employees are very friendly and helpful. + +Another reviewer mentioned $700 boots, but I haven't seen a single item priced over $100. I actually got gifts for my cousins, 2 hair and jewelry items apiece, for under $20 per person (and in the same visit found a dress for less than $40 that got me half a dozen compliments at a holiday party that night!)",review,M3a0CsA85GvH8W5wwIptPg,0,0,0 +9OPheVf5o8sRcRHxJDl4-A,2008-11-22,UrANiXCSUMVLQ9CVzPdyYg,5,"After weeks of anticipation, Side Bar has finally opened. As you ascend the staircase to the second level, the reason for the long wait becomes apparent. The attention to detail is amazing. Once layered with crumbling plaster, the walls were meticulously stripped to reveal the historic brickwork. Other historic elements include the original steel casement windows that feature a view of downtown phoenix and the surrounding area. Tastefully integrated with these elements is a contemporary interior design. The lighting consists of warm colors that set the stage for the laid back atmosphere. No expense was spared when designing the bar and tables, which are made of dark exotic woods. Seating included organically shaped bar stools that adjust to a comfortable height and depth. There are also several u-shaped sofas that create conversational areas. Behind the bar you'll see an array of artistically arranged circular openings backlit in a warm, yellow tone. Thick glass shelving lines the back wall along with a fine assortment of liquors. The ""soft opening"" menu included wines and locally brewed beers among others. I tried a White Russian and my wife had a glass of Chardonnay. Both were very good. Prices seemed to be close to average for the area and when compared to the experience, were a good value. I had a chance to speak to one of the owners who was glowing with excitement. After two years of remodeling and working with the city and adjacent historic neighborhood, his vision has become reality. In addition to a brief history of his endeavor, the owner informed me that additional overflow parking will be available adjacent to the main parking lot. Parking was one concern originally voiced by the neighborhood and city. The owners may also experiment with weekly art showings by local artists. Maybe they can arrange for it to coincide with First Fridays. Within walking distance of Side Bar, dining includes Pei Wei, My Florist, and Zoe's Kitchen. +If you're looking for a unique hangout in an urban setting, then Side Bar comes highly recommended.",review,sCRy3cQgHEJQiCQJrvKkRg,0,0,0 +NuFs1Sh5wUa7ZLISMtCMRA,2012-01-01,Pz6Eh5npDhSTeuX4uZqtQQ,5,Went to Cracker Barrel twice while vacationing at our home in Litchfield Park. All the food we ordered were very good and the service was good also. I highly recommend their pancakes.,review,6NOgM7NLos60OkWOmi6G-A,1,3,0 +eGj1NnvbIUVWgDYQWEOwQg,2012-06-03,breTkAJpsdmO2YXCantl6A,4,"One of my favorite parks that I've been to! There are two areas, small and big. I have a small dog so I go into the little dog park. The running room in this area is much more limited than the big dog area, but that's ok - it seems to be enough room for the little ones. There is a water faucet to fill up water bowls and allow your dogs to cool off. + +One of my favorite features are the trees! It's a mature park and the trees are gorgeous. They provide lots of shade and make for a relaxing soundtrack. + +This is one of the furthest parks from my house, but I always make the trek out there just to come here.",review,7o7MF9B9lxcWupE8jiLOaQ,0,0,0 +3wLLf8wRqD1ZQowi9aZSoA,2012-08-31,D-Usa-jdowXyQFp0hkk2_g,5,"Grassroots is right around the corner and we drive by it every week on our usual Friday-Dinner-Out. I always assumed it was more of a pub than a restaurant. My wife and I arrived around 5:00pm and were seated immediately. The waiter was super attentive and knew the menu and preparation of everything I asked about. + +We started with an AMAZING appetizer special of burrata* with ciabatta tips, their house spicy tomato jam and arugula with champagne vinaigrette. It was described as a sort of an experimental combination of preparations from other dishes. The burrata was silky smooth and spreads onto the ciabatta like softened cream cheese. The play of flavors in this dish was excellent, we'd go back here just for this dish alone. + +My wife ordered the lobster bisque as her entree, which was smooth and creamy with a good lobster flavor. I suspect we could have asked for bread on the side, but it didn't come with it by default. + +I ordered the short ribs with roasted asparagus and jalapeno cheddar grits. The ribs were cooked just right, just a little pink and tender with a concentrated glaze of delicious sauce layered on top. The sauce had a light smoky flavor with a fair amount of saltiness, and appeared to be a long simmered reduction with bold flavor. As others have mentioned, the jalapeno grits are very good, not spicy by any means but a little crunch from the jalapeno pieces, creamy and well prepared. I strongly recommend the short ribs to anyone. + +We splurged with dessert of key lime pie and a banana split. The split included three large scoops of (what appeared to be) homemade ice cream and topped with caramelized pecans. The key lime was tart and delicious. + +The portion sizes were perfect and considering the careful preparation and unique flavors the price was appropriate. It's a little more expensive that I would like to put Grassroots into our weekly rotation, but I look forward to visiting it again and sample more items off the menu when the budget allows. + +* I didn't know what burrata was: http://en.wikipedia.org/wiki/Burrata",review,Esi0LF6paDqj7W0LcDX4AA,1,1,0 +_Ne4sL68IW6lEXYvrnkt-w,2012-09-22,ftDiNM976ePkYb7ue5iBIw,5,"This is my love note: + +Yours beers are so delicious, your food is absolutely scrumptious. I wish I could spend forever and always with you. If I could just never work and sit inside of you all day eating and drinking, why, I think I would be the happiest gal on this side of the Mississippi River. You are great, don't change, and please, stay with me forever and always. + +I love you to the moon and the stars Handlebar, + +Katlan",review,MMTH5K-4i6-zcuasXA-gOQ,0,1,0 +hnRqJND9awRC80aRwfQ1hg,2011-12-17,3ngnrNOkeUMT_QIsl5EjeQ,1,This location is now closed.,review,QGQVXiICewN5PQsd83-d7Q,0,0,0 +_A4zWsLoLbjozEJYHLDx0Q,2012-10-14,zg0EScWTwmfrmsy2dWy1VQ,5,I stayed at the Motel right across the street from this restaurant when I stayed in Gila Bend. I had been driving all day through the hot desert and really wanted to kick back with a cold beer and some good food. Little Italy did not disappoint!! I got a large pizza that was AMAZING!! Plus the service was great too. Fast and friendly.,review,CifiiSoeEAX9KOKK-QHuhg,0,0,0 +BPi1Q5wX0_o5VlO_XRyYuQ,2012-07-26,mA1km9oCjlzujylkarUfGw,5,Chef Bianco does it again! The homemade pasta is unreal. You can actually taste the freshness of all of the ingredients. The pasta is thick (like homemade pasta is supposed to be...) but not heavy at all. I also loved the casual vibe and the staff was very friendly and nice. You really feel like a guest sitting in the kitchen in a home somewhere in Italy.,review,5RA1yMlY9ZpK3DXsW3nEMw,0,1,0 +xEg0-xrQywU5K-WQO7cy0w,2010-07-12,S1k-x_TQQ44qu9RNoDCtoA,4,"Indian food is often minimized by attempts to make it less exact and somehow more palatable by other cultures. This is at the cost often of not allowing the original beauty of the cuisine to be savoured by all. In fact, my visit to the Indian Paradise was not without some sarcasm and pessimism on my part given that so many places in the area get it wrong when it comes to this genre. +Boy, was I wrong! Don't let the fascade of the place fool you. When you enter, it takes a few seconds to smell the fact that you are going to have the genuine article here. If you go at lunch time, you can experience the buffet. I went on a Sunday afternoon and the place was perfectly poised for a sunset dining experience. +ALL the food...from the nan to the lamb curry, to the tea, to the samosas to the califlower....EVERYTHING was really good. But I have to also add that there was a certain family-like atmosphere created by the staff and the service was unassuming yet intuitive. I found that I did not want to leave. I just wanted to stay here and talk and snack a little. That's kind of hard to achieve in a strip mall restaurant yet, this did not feel like that. +You should go for yourself and see if I was just way too nostalgic for good Indian or whether its really worth 4 stars.",review,2XCsVpAMsGUykrM-BBFEXA,1,3,0 +MSnAOSajkFXLojJWgRjMCg,2008-01-14,VnJVvpEslSKtasBO-yf1fA,1,"Why can't the attendant understand a simple direct question? + +Can someone please tell me just where the Hell I'm supposed to put my freakin' drink? + +and worst of all ... my balls don't fit in this place. + +*one extra star for the bartender offering me her personal lighter +*minus the extra star for not having any matches",review,A_O8wZOsMTPwyeYA4-Rsow,3,2,2 +muCl5p-9ut1sY0aKeUeRhw,2012-06-23,Cv-SscGrej3vp2oPmAH_aA,4,"I found this place whilst trying to find good mac and cheese places on yelp. I'll be honest, I love my wine and I love my cheese. Bonus points if its melted over mac. + +And they do great mac and cheese. Some better than others- my favorite so far has actually been the spinach and pesto. If you want the chorizo, I say pass. The spinach or the bacon is much better. If you're into bleu cheese, the bleu cheese mac is VERY bleu. Take that for what it's worth. + +That's not all they do either. Their entrees are consistently great. My boyfriend got some scallops that were incredible, though I don't think it's on their menu now. + +Their wines are great too. I'll be honest, I'm no connoisseur, but they had a moscato from Israel that the bf still drools over. It's enough that the next time I was there I picked up a whole bottle, just for him. I've also had one of their mojitos and that was great as well. + +As a note- if you're in for happy hour and get a cheese plate... I really do think its better to splurge and get a regular cheese plate. I got a happy hour cheese plate, and it's... miniscule. All of the stuff that made their non happy hour cheese plate awesome was diminished. 1 cheese instead of 3. No boursin. Fewer crackers. Less of that fantastic orange blossom honey and apples. You get my drift. + +Definitely a must try. Service is great and attentive, and it's always been nice and quiet when I went in.",review,hIb1ikbIMI0t1EK4gPsK_A,1,3,1 +0b-zTb8lUrUAOTyGLuZ2KA,2010-01-30,hWNEVE9pBKqMahKDS813SA,4,"Sorry Jesse had such a bad experience here. I have been using this place for about, well, from the week they opened as it is so close to my office. + +They have never lost or damaged any of my clothing, and I drop my wife's delicate stuff off here as well for dry cleaning. They have also always been true to their word on when I can pick up my clothes - although I am usually days late on the pick-up (one benefit of being a clothes-horse I guess). + +Two doors down from Dunkin, so fantastic to drop and pick the rags and then grab a cup o'joe before hitting the office. The women who work there aren't too hard on the eyes, either, which is always a plus. + +Hard to believe they are still using a dot matrix printer, but that has no impact on service.",review,cUMxaIaeZovQTYBBxcQKzA,0,1,0 +0yBs5wbVw9gTIDe9Z-rMTg,2012-01-18,OhfjN2nrJqOt6jeZUOCtsg,1,Out of business,review,OrkXYCH82NnidREHsGn4uQ,0,0,0 +_gXpjRIjb5fv5f5IVGXvsw,2007-12-08,flEV79cjZ1igxMS1GHNc1g,1,"Ok Im giveing Del Taco one more chance.... + +I go in what is your best chicken Idem.... + +um Burrito or taco? he asks + +Have you had the Burrito? + +no....I haven't had ethier... + +Have any one eaten anything here? I ask the rest of the resturant crew....they All shake there heads no.... + +ok so even if the food was discounted or free no one should ever eat del taco.....regardless I did eat a burrito..... + +and my worst fears where confirmed....I could have dumpster dove at a taco bell and gotten better food...... + +Feed me bad food once, shame on you.....Feed me bad food 4 times Shame on ME....",review,1cR5-LZcSYcACxhGe3DEVA,1,1,1 +kkLXf6hj9fj8_gTj-CCPBg,2012-02-17,Av85Kq3ZOkGQ8inxyBZojA,5,"I can't believe we get to review a free publication. Nonetheless, it's important to know (especially for Dave B., who obviously didn't do his research) that this magazine is published by a gentleman who grew up here in the valley and wanted a way to promote all of the great, creative people and activities they are doing by making a free magazine. He decided this 17 years ago, and, despite pretty much breaking even (it costs money to print and distribute thousands of magazines and no, the ads do not cover the full cost), continues doing so in the name of cultural awareness. Notice that the photoshoots use local designers, local models, local photographers, and local locations. The articles are about artwork currently displayed in local galleries, businesses (like restaurants) and bands that local folks have started on their own from meager means, and about up-and-coming events like the taco festival (started by a local), fashion shows (again, utilizing local designers and run by locals - no Dillard's show coverage here) and about people in the valley who are trying to make a difference in our community. If the magazine doesn't seem critical enough, it's because the people who are the magazine decide what to write about, and therefore don't have to waste pages with hateful criticism when Java can be promoting a local chef or a cool new local jewelry designer. When it's run by a local, written by locals, and put together in the publisher's dining room, I can't think of any magazine with MORE credibiilty and freedom. The publisher and writers are meticulous in choosing to write about what moves them rather than what the latest hype is. That's why you read a story about the man who purchased a building and was designing it into a venue before it was the Crescent Ballroom. That's also why you'll read the backstory on five locally owned, little-known coffee houses at far ends of the valley. The candid shots in the back are a tribute to local events the publisher attended but maybe an article hasn't been written about, or to local artists, designers or patrons of the arts. While it's always interesting to hear what people think of Java, knowing what really goes on behind the scenes gives me nothing but respect for the handful of folks to who put their blood sweat and tears into creating this free publication each month.",review,Rz7qXI6Vu-fzuCViv7_veg,0,0,0 +rLAeltELaGdQKh_LYIllEA,2012-11-08,7o_zGSWpWsiN8p6TX_v9EA,5,"This place was AMAZING! I have stayed in probably over 100 hotels, this one was the BEST hotel I have ever been to... staff was extremely friendly, I WILL be back!",review,OR8LO7yYfZUSoC-sgGDF7Q,0,0,0 +R7fAXkib9dnkYtFqOv1HDA,2012-01-04,x8V3YJ4p7eslFd57gUjJ6A,3,"-1* + +Dropped in for my 3rd visit & still no menu board or the other offerings that made them different....no cupcake, boba, etc. Tried the pistachio fro yo & it had an artificial after taste. Guess I'm driving back to Yogurtland for now.",review,8_ztfjt9_RsKS-cQ9KlqKg,1,1,1 +8qL697NwICTc_ac0-26Ycw,2011-12-27,ebycwAcOjpzl7J7hoQmf_A,1,"Overcrowded, sprawling mess of a mall (and I normally like malls). Traffic and parking are almost as bad as at Tempe Marketplace. The confusing layout makes it hard to find specific stores (even with the help of the directories).",review,LX3cTVaS8f2UF0Uuafsfug,0,0,1 +L3BSpFvxcNf3T_teitgt6A,2011-03-04,iR1YKCN-siIlTcnA0IsSZQ,5,"Finally had a chance to watch a game here! Just moved to Surprise in July, and have been waiting for spring training. Very easy parking, and the seats are great! It does not matter where you sit. The diner have great food. I will be coming here a lot!",review,UCQNrwN4_hHHTWYa8cqe_Q,1,2,0 +90AXjqb4O-wrTHDKDoDUzg,2008-10-30,Zv5GGJf1wJf6_MT_sN787w,2,"Lost 2 stars! Sat in the restaurant for 15 minutes ... no waitress ... no water ... no nothing. We left. + +Sad part was there was people who left, then came back and got service before us. The guy who came in after us got seated, hot tea and his order taken while we just sat and waited. SERIOUSLY doubt we will be going back now. If you have an hour or so to kill, you can wait for your food/service in there.",review,_jjIaczpcVDpHlH6l334rQ,1,1,0 +nBrD6TxddhHx4FhMk32JvQ,2011-12-08,RN_kryNEXSVJlknpxb0ceA,4,"I have been going to Niro's for several years. You can always count on them fulfilling your your order very quickly and with consistently good quality. + +When I am in a hurry between meetings I can count on Niro's to deliver a better experience than I could get at a random fast food joint. + +The gyros are good, the french fries are hot and crisp and the service is always friendly.",review,bswV-wIGU9Bw4mbxSPdykg,0,0,0 +ZCE_ZHlZGpWPGICWpGNrdQ,2010-12-24,WeNhaODwNX1qmMXp5Y2bMg,4,"I've got to admit, fishing at the Water Ranch pond kind of makes me think of the Beverly Hillbillie's ""cement pond"". But I really like it! + +The location is perfect; right at the intersection of Guadalupe & Greenfield. Parking is no problem. The walk from car to water is little more than a skip, hop and a jump. Very easy for my elderly dad to take my son fishing. + +The fishing is easy too. The pond is stocked with Trout, Bass, Catfish and Sunfish. We've been catching nice trout (10-12 inches, Yum!) using nightcrawlers. I'm keep hearing that white power bait works too. Although the bottom of the pond seems to have several rocks, snags don't ever seem to be a problem. Maybe best of all, the edge of the pond is a cement curbed sidewalk. Like I said, Jethro Bodine would be right at home. I suppose if you are gonna be an ""Urban Fisherman"" you might as well do it right! + +Not much into fishing? No problem. There is a wonderful library with windows looking out over the pond. There are paths for a nice walk. There are birds everywhere. There is even some kind of observatory (haven't checked it out yet, don't know the details). + +All-in-all, this place is exactly what you'd want... and more.",review,nhysTbkA09SymSrCjdTaVw,0,1,0 +v_aTapvcfKRL6O5au6Ru5Q,2010-02-11,7tV9hSVrmCesdDJ5oynL-Q,4,"Dropped in today for the first time...and can I say it's worth the drive? + +No attitude. No c*nty saleswomen like that OTHER PLACE THAT SHALL NOT BE MENTIONED. + +Cashier, sales people and customers were all so darn friendly and helpful I don't know what to say other than...YAY! I'll drive the 20 miles here to get my dog the food he needs. + +Buh-bye local business pet store that's closer to me and sells the same brand of food I buy for my dog...I'm a fan of the BEAST!",review,EoTooNBcxu0Hy0-XeZI8aw,2,2,2 +O4jXtRnS_R9SyM7ckMhFmg,2011-09-16,fvCPmju1BBWm9UcQh5Mu0A,3,"We stopped by and rode the train, which was a good history tour. We discovered the history of gold mining in the area and some of the local lore regarding the Superstition Mountains and the Lost Dutchman Gold Mine. I would like to come back and spend more time exploring the restored ghost town. The train ride was a bit expensive for what it was although I enjoyed the Hurry-Up Henry the conductor.",review,Y4Ix-FgsKRMu9xyOly9dXg,0,0,0 +9Vu9KhK2-kBSM-FXvxXGNg,2012-06-11,zT_e1VGeFMHLLcJ9SkS6dQ,3,"I do love Chinese food, and for such a big city I find that Phoenix (or at least Scottsdale) lacks in options, either because they aren't the most welcoming of places, or simply because there aren't that many (compared to sushi restaurants for example. I've been to this location maybe 3 times since moving to Phoenix (8 years ago) and must say that I usually go because a friend as a ""Pei Wei"" craving. I found the food to be ok, but I'm typically one who doesn't like spicy food as I find it takes away instead of enhances the flavor. I wasn't too hungry and decided to take the chicken fried rice. I have to say that my favorite chicken fried rice is the one from Tottie's in Scottsdale that not only is delicious but always gives me left overs for lunch the next day. Portion was ok though the fried rice was a little sweet and the person I was dining with had the chicken lettuce wrap which wasn't too bad either. Service was disappointing as our food took about 10 minutes to come, but I must say the staff was helpful when I was asked where to get takeaway boxes as well as a takeaway cup. I'd give it 4 stars if after a handful of experiences I had Pei-Wei on my ""must have"" list but with Pita Jungle, Sack's , Subway, Rubio's, etc. nearby, the competition for ""fast casual"" is stiff and Pei Wei just doesn't cut it for me unless I really had a craving for Asian food that day.",review,1lSFhUewKa22FwhXuVgFdw,0,1,0 +V6BYjHM9SnXscfkln3hCdA,2010-03-01,v6qClAjOR2gnWTZZIsKyrQ,4,"Orange Table is one of my go-to spots in the valley. The food and atmosphere are superb. The wide assortment of beverages certainly strengthens OT's menu when pairing food and drink. + +I will admit that while the location may seem hard to find, there are times where I've had to wait, and wait...but if you enjoy great food then it is worth the wait. + +Their salads and burgers (especially the wine burger w/ cheese and red onion) are fantastic!",review,6svwwImg6nLwUc5DPp2L9Q,0,0,0 +yQONzVpX-DEpGSuKMIov6A,2011-02-01,xmJXKHz6UtJ7K3wHLNmprQ,2,"I'll be honest--this place is good for Americans... but not good enough for Chinese people. The waiters were sort of rude to us, despite our being able to speak their language. + +Furthermore.. what kind of authentic Chinese restaurant serves dinner out of plates? Blasphemy! Our table to had to go out of our way to get bowls! I'm surprised they had chopsticks. + +Otherwise, their mock food was salty and pasty, perfect for Americans in search of a good Orange Chicken replacement. Wait.. salty and pasty? It's supposed to be a (insert meat type) dish, consisting of subtle flavors and intense chili pepper action. + +Neeext...",review,xcnGEs7YEVPFG1jBaWxoSA,0,0,0 +Rfp9HX_RhdcMwiKA8Wfl4g,2010-03-11,cTBVg8mkrFYtwC3gX9_YOQ,5,Amanda was very helpful when we looking at the ferrits..... A great pet store.,review,zLgkT2QxH8aauHzeLb44-g,0,0,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2009-10-11,sGEKFSmQMIwamJBWeaAejQ,4,"Great Korean Kalbi and other table top meats. +rest of the dishes wasn't that impressive . +Weekend could be really busy you might need to wait for a while to get your food. +but weekdays pretty slow. +If you like Korean BBQ, this is the best place in chandler ,gilbert area.",review,Z-fvuSqI5SSiZUksPJ_QiQ,1,1,0 +Sv_lFIgh5CnfC31mY5Uo7A,2009-06-11,H_ffG8AhtGoca2jtuqKsvQ,4,"Margie's just opened about two months ago. I stumbled upon it while looking for the Eba Cafe. This little place is open Monday-Saturday, 5:30am to 2:30pm. It is a great stopping point for commuters looking to get a coffee or breakfast bagel pick-me-up, check some email (they've got FREE WIRELESS!) and head into or out of Tempe. + +I ordered a simple coffee and the egg-and-cheese toasted on an everything bagel. Tasty and a truly satisfying treat without a ding to the wallet. + +The place is very clean, soft comfy couches near bright windows, and Margie is just delightful. Great place to chat and concentrate away from the main throws of other well-worn coffee houses. + +Expect to find me there often--mainly because I want to keep this coffee house close, alive and well!",review,qszN7-BCx_SrtbNclhubTA,2,4,1 +H9wnP4BIctmRxMq43NPgAA,2011-08-06,axeQ0udNugsNbj0sktLvBw,1,"The bill was 150.00 and that was after a free appetizer coupon they sent me via email. The food was no where near worth the HIGH price! The service was not up to par either. I really can't believe people pay such high prices for food that come with NO sides, etc. I got iced tea to drink and it cost a whopping $6.00. That's right folks....6.00 for a glass of tea. What is that 100% profit/mark up? I paid 12.00 for a soup sampler. Each of the three soups were in a tiny espresso cup. My salmon was no better than what I get at Texas roadhouse but it was three times the price. I would definitely not recommended this place. If you want a fancy, awesome meal go to Houston's! The one thing that was great were the rolls (they were free too)! Don't get me wrong the food is good but not worth the price tag! You can get just as good food a lot of other places for a lot cheaper!",review,ddusn0qejUfNEUqSWCDU_Q,0,0,2 +aRkYtXfmEKYG-eTDf_qUsw,2010-08-09,rO4l5SrmgRhWL71OvqrA8A,5,"Well thought-through details make Lux amazeballs. + +The espresso is good. Really good. Like, I need to order an espresso along with whatever else I'm ordering just because it is so delicious. + +The food is beautifully presented (little light on the gluten free snacks, but there's fruit, so no one is starving). + +There's plugs all over. + +The furniture is mostly easy to wipe down. + +The bathroom door has written out instructions so no one is confused on when the door is locked. It also has nice smelling soap. + +The patio is really pretty. + +The clientele seems ridiculously cool. I kind of feel like maybe I'm going to be cooler by association if I hang out here. I'M GIVING IT A GO. Let me know how I'm doing.",review,N4878r3seZOjglSOSN4kuw,1,1,0 +U605aUo9MJn5vgLfP3yYKg,2011-07-25,XqD6ZzhvmjN9keLcGarv5A,5,"The best Burgers in Town!!!!! I have been hooked on their yummy burgers since the first bite. I used to always drive by this place and notice that the parking lot was always packed........and no wonder, they are Wonderful!!!!! Their custards are extremely yummy too :) Worth the drive from North Scottsdale. I haven't tried anything else off their menu besides the burgers, custard and fries. Always tell myself that I will next time but when the time comes I just can't pass up my favs :)",review,12IhQ6toyh_sPs_o-6pkhg,0,1,0 +09Kv1q51BlUyLznzNnL5Xw,2010-05-22,xrUOY2XtJZK7PA3dDUBdig,2,"Possibly the creepiest convenience store I have ever been to. I mean, it's sandwiched between a strip mall and a giant dirt lot.",review,iKi-FUw5x7A220fVvEcNuw,0,0,2 +trAvQPp7gps0Btk-2AmLpw,2010-02-19,mrQ2HUaYLzarMPvHyWm0qg,4,"LOVE this place! I meet my husband here for lunch as often as I can. It is a bit pricey for being a fast food place but the food is so good. I always get the pita pizza and the pasta salad. Excellent place to eat. The decor is funky but the staff is usually really nice and again, the food is great!",review,QzA6ZW1NFid32_g_fsapIg,0,0,0 +EmlgWjs1ZzZEpDjZCSPLmw,2012-11-26,MjAXkN1_QzChPe6GvbohlQ,5,"AMC Esplanade is by far the most successful navigator of the new ""Dinner and a Movie"" blue ocean the theater industry is starting to penetrate (that's right, I just referenced Blue Ocean Strategy, get over it). No, it's not an extremely enlightened idea. I've been sneaking Bacardi into theaters since 2003 so it's about time theaters realize they should probably attempt to turn a profit off of it, but AMC really upped the game by not only providing me the option of purchasing alcoholic beverages from THEM, but also upgraded chairs, and a ton of delicious food (Including the obligatory $4 box of candy which is hilarious sitting next to a $9 burger. Like ""Don't mind this $9 full meal over here, we still stand firm that Gummi Bears are worth their weight in gold."") + +Yes, it's more expensive than a regular ticket. Almost double for the nice seats. But trust me, YOU WANT THOSE SEATS. You will regret not getting the $15 seats if you don't buy the $15 seats so just pony up the cash and delight in the fact that movie theaters are now almost as comfortable as watching a movie in your own home. + +This theater is so nice it even makes bad movies tolerable. I saw The Master here and probably would have stabbed myself in the eye with my embezzled Bacardi flask if I didn't have a comfy recliner and three glasses of wine to get me through it. I seriously won't go to a movie anywhere else and I guarantee you'll say the same once you go. FIVE STARS.",review,YzNZNgpOy9tthDnczS_ajg,4,7,7 +_CG5zJAoNN6gszjhSyUcww,2011-10-04,2BJn2bP6izov3oEKD4tLcA,3,"Went for lunch again with my wife and SIL yesterday. Was pretty disappointed and they are losing a Star each of the last two times. We ordered four entrees -- A combo Nam Yeung Noodle salad (I forgot the Korean name), Pork Tonkatsu, Seafood Tofu Soup, and a dinner portion of Kalbi. We got there at 2:00 pm and we were immediately told that they plan to close at 2:30 pm even though their lunch hours are until 3:00 PM -- WTF?? So we ordered quickly. Within a minute the tonkatsu order came out and it was cold; probably premade or something, and the meat used was very, very thin (again) so it was very dry. The Seafood tofu soup and buckwheat noodle salad were OK. The order of kalbi came out last, but not on a sizzling, cast iron plate, so the onions on the bottom were raw and not ""grilled and caramelized"". + +Don't know what is going on here, but each time we go, it seems that they are slowly going downhill. So we have decided to look for another restaurant option for Korean food in our area. + +Sorry for this seemingly negative update, but I want all yelpers to know of my opinions and observations. We used to be big fans of this place.",review,fUs5XxOR82Hfrnyl4wi2QQ,0,0,0 +3oZcTGb_oDHGwZFiP-7kxQ,2012-12-17,S5-8EwAv43DgAXBLl7rTuQ,4,"Ahi tacos, rib tacos and ribs are all good but a little overpriced. Service staff is always top-notch. Both the beer and wine lists are good, mixed and specialty drinks are nicely done.",review,N6q91wGo-JY1yo-fMycjGQ,1,1,1 +5VMajxduxfLPSyQkVFKESg,2012-04-27,xafsPNDcoVfJxtYViEDHfg,4,"Similar to Joe's Farm grill we make sure this is one of our regularly yearly places to hit whenever we can. + +Piles of BBQ'd meat? Yes please +Free birthday meal? Hell yeah +Homemade rootbeer? I'm moving in + +We've had consistently great food and service every visit and to top it off on my birthday they gave my friend a free meal too because he was in the military. You can't beat that kind of hospitality",review,zZOuBvGMgUbmFJAoKABVSQ,0,1,0 +YEQkTCmphjr6XKPh4m93AQ,2012-05-20,LoUkqJXndLVaKzt3qfCI2A,1,"One star for the most terrible service in recent memory. Our server ""DK"" was outright rude and horrible, and outright ignored us when she wasn't making us uncomfortable. As a former waitress of 14 years, I have the utmost respect, patience and tolerance for my former bretheren - but this woman needs to go. BAD DK! Otherwise, our Teppiniyaki (sp?) chef was wonderful, the food was delicious and fresh and a solid four stars. I have been going to Kyoto since 1995 and it remains a fun and festive place with very reasonable prices. Too bad it was ruined this time by DK! DK needs a different job, more suited to her personallity, like euthanizing kittens or something.",review,PD9BRfQV0YUhS6i2c49PUQ,0,0,2 +9OPheVf5o8sRcRHxJDl4-A,2008-12-20,rlOi6C0JP0DQAC7yXhdHUA,4,"Sidebar is a trendy, hip down town bar located above Pei Wei and Starbucks. +The bar is small, the decor is modern with a retro feel (Urban Outfitters, maybe?), dark wood, curvy white bar stools, ambient music and muted lighting. +The beer and wine selection is good. A little pricey ($3 PBR, but at least they have it, and $5 Blue Moon), but not too bad. They have a good selection of spirits, too, Patron, Chopin Vodka, Booker's Bourbon, as well as the standard stuff, so there is definitely something for everyone. +The ""smoking patio"" is a stairwell that leads outside the building. So, needless to say, it can get a little ridiculous with people crammed on the stairs puffing away. +The place was cool. The crowd was definitely the hip and trendy crowd, but not too pretentious. +After a second trip here on New Year's Eve, I am sold. The cover was only $5, the staff is/was friendly, warm and welcoming. They have great drink specials, not just the price but great creations.",review,CAlxnkAuqNetlUmWtCQ_eQ,3,3,2 +fxgmP9FrYBC5ZysZTCbnEQ,2012-08-22,gAGh13s6WNXdZ3P9ETRgqA,4,"This studio is probably the best hot yoga studio I have been to. I went there several times a week for about a month over the summer and enjoyed it every time. I love the music they play and I love that the teachers are knowledgeable and motivational. I really got a great workout while going. The space is clean and even smells good....that's pretty awesome for a hot yoga studio. I like that they have wood floors...it makes me feel like they can keep it cleaner and it's easier to balance on. The reason why I knocked it to 4 stars is because it is simply unaffordable. I have a fairly good job, but I don't think I could afford to keep going. If this place was reasonably priced, it would definitely get 5 stars from me.",review,3gIfcQq5KxAegwCPXc83cQ,0,1,0 +MXOdsPTLQPsQK9hUq01DWg,2011-11-06,3-QIcmZ7L6_qrwanbX4l4g,4,"Love, love, love this place! +Great atmosphere, great for large groups, casual and fun! Have been here a number of times, and have yet to be let down. +Order the sweet potato tater tots! Oh my goodness! Life changing!!!",review,bkR1tRtCi5ZG4qbdYM-LYg,1,0,1 +ehy9Vy1BKc9shO74chuUAQ,2011-08-06,snNO0BU9_D___6dU972q3Q,1,"Entering the store is visually overwhelming. There were so many things take in, I thought I'd found my new grocery store. +I wandered for a good 40 mins checking everything out.... +After the ether wore I began to realize something. While the selection was wide, it look OLD. +I raced to the fresh fish and noticed that even packed in ice their little fish eyeballs where cloudy and sunken into the sockets. +I looked at the frozen section and found some fish that had a sell by date of 02/2010. There was other fish that was packed by the store with no packed on or sell by dates. There was canned and boxed food past their expiration date. +I checked out this place on the Maricopa County health department and they had their fare share of customer complaint driven inspections.",review,Snc090I2QOdJ2IhsDElbTA,0,2,0 +qwmHm3s8p7J12AIY6Co8HQ,2012-07-02,6TI-dx9VI1szSx8Lsy9mNQ,4,"One of my favorite restaurants in the valley. I usually go for the turkey wrap or one of their pizzas. On this day we went for happy hour, which is daily after 9pm and tried several tapas and a 4 peaks beer. Everything was really good.",review,-kIvLyWpY17aRa0vPp-RmA,0,0,0 +QzXFdjIbFRGhzL83goPPLA,2009-10-16,n9AURkoU7HWbvEJQT9ZSYg,3,"Good food when it's slow. Not so good when super busy. This is usually a great place to stop after watcning a show at the Harkins theater nearby. If the lot is full on a Friday or Sat night I would pass and go somewhere a little less overwhelmed. Although the service there has always been pretty good for us, the food is hit and miss.",review,NrRS56Dv52m2BND-9v1qWw,0,0,0 +s1dex3Z3QoqiK7V-zXUgAw,2012-10-11,E7eSeswd7eu9wOFVJhhoUQ,5,"I have no idea why I haven't dined or noshed during happy hour at this place more often, I've always had great service, great wine, and great food. There is no adequate excuse , but anyway, my third adventure here made me update my review to 5 stars because 5th and Wine has earned it. + +The wines by the glass range from $8 - $11 unless you come in before 6pm then they are only $5! Those prices alone should make you want to come here for drinks with friends. The servers have always been cool with offering samples if you can't make up your own mind between two wines despite the recommendation from the server and your friend saying ""just pick one!"". Due to this fact, I've always had a glass that I have enjoyed, which is usually a Zinfandel. + +I have now had the pleasure of experiencing all of their different types of bruschetta. My top two favorites are the Prosciutto, Mascarpone, Figs, and Tomato Jam which has a great combination of salty and sweet, and the Apples, Brie, and Fig Jam one which is on the sweeter side, but not overwhelming because the bread and the tart granny smith apple slices help balance out the flavor. The Chopped Salad is very light and refreshing option to accompany the brushcetta appetizer. 5th and Wine is also a restaurant so other food options are available, I have sampled the Chicken and Pesto Pasta which has a delicious cream sauce and their Mac & Cheese which is super rich with the two types of melted cheese, but both items are delicious. + +The atmosphere is great whether you are sitting inside or outside. The lighting is soft, giving more of an intimate feel, yet this place still remains simple and casual, which I love. The outside patio is great, it is a courtyard that offers peeks into store windows while remaining private from the traffic of Old Town. The times I have been here it has never been super crowded and I am able to just walk in and be seated right away. 5th and Wine still feels like a hidden gem and you must try it out!",review,fl6oI21uXoxVMwfR6lFanQ,0,0,0 +47A3pWsdYNhFFy9gUEVcYQ,2012-02-18,46zgBBMnbn1-pNQbbVfNoQ,5,"Haven't been to a Vietnamese restaurant since I left Colorado, almost three years ago. But for what it's worth, this is the best, most authentic Vietnamese cuisine I've had so far. =)",review,9bCDKM3_s4cYhR8Vzzk-hw,0,0,0 +sbD4f8aOsXZ6PJYh1kN4Ag,2011-05-09,R1ld1p4VWdcXx_Yh5pPUhQ,4,"I like that we have a sports venue in the West Valley, I think that this place has tons of more potential but under the current recession it will take time to recover and get the growth we need all around this place. I love that Cabelas is over here and 2 movie theaters nearby. I enjoy the food options when we are in this area and sometimes drive out of my way to come here since Park West is also nearby on 101 & Northern. We came here this weekend and the kids walked around with us and we enjoy all the fountains and the kid area where children can play in the water.",review,EP3cGJvYiuOwumerwADplg,1,3,0 +W0eocyGliMbg8NScqERaiA,2011-02-21,IngN3er9lXFtVYKOh-CIBw,1,"Slow service, staff needs more training. There's like 4 managers and none of the know what they are doing, i don't think this place is going to make it. Sorry but you lost 4 very good patrons Saturday night because of your poor customer service",review,6RX-jDD9bhRsiiYvJg-p4w,0,3,0 +45puCRQ6Vh_IIAy7kkfFDQ,2007-08-25,moYPmxM_pA8kqweoHZqE7A,4,"It's usually a ghost town at the downtown Phoenix bars, but when a game and/or concert is happening, suddenly the bars are bustling. Such was the case last night at Majerle's, former Phoenix Suns player Dan Marjerle's sports bar. With the Beyonce concert across the street at the arena AND a D-backs game at the ball park, Phoenix was a hoppin'. + +My friend and I stopped into Majerle's, which I've been to a few times before, for dinner and drinks before going to see Beyonce. I had a cheeseburger and Cesar Salad. While I realize it's hard to mess up a Cesar Salad, my salad was seriously the best Cesar I've ever had. And my burger was packed with flavor. No wonder AOL named them Best Burgers two years in a row. We also had a wonderful chocolate martini (with Vanilla Vodka, not creme based) here. And on Fridays if you're in the mood to really start the night, the bar offers a Corona or Pacifico with a shot of tequila for $7 as part of their Sizzlin' Friday special. + +My only complaint was that our waitress suddenly went M.I.A for about 15 minutes when we were trying to close our tab so we could go to the show. But I'm still going to cut them some slack because this is one of a few fun places to drink in the downtown area. + +HOT TIP: A second Majerle's will be opening in Chandler in the fall.",review,nWouNfZD3Pw08RYizxkqcA,1,1,0 +6YbF8_YCRDPXU0_iwh-sZA,2011-06-07,DaDG1NyD9YqCQLLLbXzJjg,4,So glad I decided to stop in today! Double stamp tuesday! Try the chai high! It is the perfect blend of tea and smoothie in one!!!!,review,-LZnto8cNbazcP-J1i1d2Q,0,1,0 +Xq9tkiHhyN_aBFswFeGLvA,2012-10-08,fLAePHFG2fvBsz_tSAitAg,3,"Went here before the Jason Mraz concert and the Rock Shrimp appetizer, beers and cocktails were very good, however the service was a little slow. I ordered the angus cheeseburger and it came with a 1000 island dressing and pickles, a glorified Bigmac, what a disappointment.",review,tPNndYGOnX0nQ7OymY_B-Q,0,0,0 +V9i9LnTg9H2XvzqCVBSOXg,2012-02-19,2-WBj2O4C3M8nf8NBunAfg,3,"Dropping down to three stars ... On a recent visit, I saw TWO roaches on the main floor of the restaurant. No one seemed to care, so I got up and stepped on one. I pointed out the other, and one of the staff killed it, but they didn't seem surprised. I know that roaches are hard to control, but having two of them wandering about in a busy restaurant just isn't a good thing. + +Also, our waiter was an overly chatty guy who seems to think we are interested in his voice. They had some good staff in the past, but I suspect the owner, who likes to get drunk and hang out on the patio, gives me the impression of a guy who would be difficult to work for! + +The food is still decent and better than anything else I've found, but I'm looking for alternatives ...",review,gP-l_Gb8PWTsqupoKqsccQ,0,2,0 +-yxfBYGB6SEqszmxJxd97A,2011-04-25,dcWNhMfe67XhUPeeBTzJFQ,5,"Had a fabulous time here with my husband celebrating my birthday last weekend. We both got ""The Farmer's Feast"" and it was truly amazing. I was not expecting that we would each get unique dishes so that let us sample even more of the food (though the hubby didn't really share too much). I highly recommend this option for anyone dining here. + +The antipasti was a great selection of cured meats and local cheeses. Next, I had a wonderful salad that was a great combination of sharp peppery flavors mixed with sweet. Strawberries, arugula, radishes, yum! For pasta course I got gnocchi with a rich and tasty cream sauce and my husband got ravioli stuffed with yam. His dish was amazing, I had to fight for a couple bites. For the fish course I had poached halibut that was served with some kind of really flavorful sauce and a vegetable puree so that whole thing was extremely delicious. The hubby got a very lightly seared tuna fillet. I was very surprised that he enjoyed it so much since he is usually not a raw fish kind of guy. For our main course I got a pork tenderloin and the hubby got braised beef... just lucky we each got our favorite meats. Each came with other vegetables and starches on the plate so they would have been an ample meal in and of themselves. For dessert, I got a goat cheese cheesecake that was truly amazing. One of the best deserts I have ever eaten. Very rich but the pieces were small enough so that it was not heavy. The dessert did not have too much sweetness so it went well with the ice wine it was served with which tasted like pure honey. Just fantastic. The hubby got bread pudding which we didn't much care for and it came with a sorbet that I didn't try. I got the wine pairings with the meal and every wine just complimented the dish it was served with so beautifully that I was really glad I added that option. Also, it ended up that you got a half glass (at least) with each course so I think it is a good value (the wine pairing was an extra $45.) + +I do agree with a couple of the reviewers who mentioned salt. There were a couple of dishes that had just a tad too much. However, I think that was not due to a mistake of the chef, I believe it is just because they use cured meats in a lot of their dishes. Another reviewer mentioned bad service but we did not experience that at all. Our server was extremely warm and friendly. She was very knowledgeable on the food and could answer any questions we had for her. She also took the time for each course to explain each dish and in my case the wine and why they went together. Only one time did my wine not come out at the same time with the food course and in that case our server apologized immediately. I do agree with some of the reviewers that the service is very slow... however, I believe that this is intentional. They have created a very cozy and comfortable environment and they want you to linger and enjoy yourself. With the Farmer's Feast in particular it took us almost 3 hours start to finish but I enjoyed every minute of it. It was nice to have time in between courses to sit and talk and relax. The spacing also kept us from feeling too full by the end (it is six courses after all!) or from letting the flavors from one dish influence the next. I was able to enjoy each course separately and independently with its own unique wine. It was pure food heaven. This is not the type of place where you would stop in for a meal before a show or event; when you come here, this should be your only destination for the night and it is such a great experience that it will be enough! We truly had fantastic night here. + +One warning I will say is for ladies, you need to be prepared for the rural atmosphere and the walk from the car to the restaurant would be challenging in heels (I had been warned so had wedges). In fact the dress code overall was a bit more casual than I was expecting. Kai at Wildhorse Pass resort is my absolute favorite ""special occasion"" restaurant and so we were making a lot of comparisons between the two. My husband made the comment that when we were at Kai we spoke in library whispers the whole time and felt a little awkward at times (you know the type of place where you feel like if you use the wrong fork you may end up getting kicked out) but at Quiessence we were chatting away the whole time and completely at ease. It is definitely a much more comfortable and relaxed environment then any other I have experienced at a restaurant of this caliber.",review,VPXgY9lGJF3XC4ZpusxNuA,0,2,1 +nUIkqgFimmLsB50WXVwTfg,2011-04-10,KbVap2hs0EchcYIigRPy-A,5,Good service and good food! I ordered the burger sliders for lunch without the 1000 island dressing and loved them! A quick little meal for those on the go! The attendant even offered me a nice tall glass of ice water to go while I was waiting.,review,EaPbAu2q7Om6cXF9bqUG5Q,0,1,0 +ntN85eu27C04nwyPa8IHtw,2011-09-13,-4JCxtAV17hsXxxLxkSMHA,5,"I've been a regular here the past 3 years. Other than the wait being long, the five spot sandwhich and waffle make this place one of my favorite in the nation.",review,eWb3LTlYzRGrP4DiQjHXcA,0,0,0 +8o-NLKy_XfbJtqljX9XLCA,2008-05-27,nOmXHUGjKNnEen3saS9XhA,3,"This place is so cool! The menus are on the walls in sharpie along with signatures from a lot of local athletes. They will not present a bill to you, but rather trust you to tell them what you ordered and pay the correct amount. The food is great, artery clogging, and comes in huge portions. I like the smothered chicken with yams and green beans, and order it every time. I always want to sleep off the rest of the day too. Saturday they do a great rib plate. Good spot for those working or living in the city.",review,JgDkCER12uiv4lbpmkZ9VA,1,2,0 +z4KFTJQsAdxqMZA7Fx0A9A,2012-01-19,3CuvbAbPF9nWG7HNHIoCUA,2,Not long ago I went and got takeout - and everything tasted kind of fishy.,review,yTAwEOYH9-ReFv55s-vpwA,0,0,0 +tr_Fr0RHF45P-IBYZrNELQ,2011-08-26,l8wmmuIQIzBPNutD6GblxA,5,"Barb at Tees and More does a great job. They provided our company shirts and did a perfect job. Fast service, great service and great people.",review,XDFrc8vbUCswgkooPUau2A,0,0,0 +DlCtdbceo4YNSI53cCL2lg,2011-07-03,Ennx8XBgPNaRghTyu6qn1g,3,"I don't eat a lot of pasta and I don't come here all the time. However, I think the salad with pesto dressing and the garlic Mizithra (spaghetti with bacon, mushrooms, brown butter and cheese) are very good. I have heard that the other stuff is good, too. I have only been here for lunch, so I don't know what dinner is like. + +Sit in the trolley car -- you can ring the bell! + +It is located conveniently off the light rail stop at Central and McDowell, near the Phoenix Main Library.",review,dn5lLgRj87xmJSF4BhHSIw,0,0,0 +A4GZVV0M7qRokP1TC7jn4w,2011-02-22,O_JTNTRvny-XD-roqfDKiQ,3,"I stopped in on my lunch break. The BBQ isn't bad for a fast food type of place. I had the brisket on this particular visit. The BBQ sauces weren't the best I've had. If you are in the area and looking for BBQ, I recommend Pork on a Fork.",review,wE1NBJRLbkhFSWjfJbGEjQ,1,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-07-25,V27Lu3OfXGx0InVMeBjxcg,5,"Mid size American airport with very good organization, very straight forward, no hassle. + +Security is a little slow and priority lane isn't really priority, it's more of ""let's make fun of first class flyers getting pissed"" lane, so let's welcome first class flyers with big giggle!! + +Many stores and food quality is okay. Seating areas are limited, at least for the Terminal 3 before security, so be aware. + +Lots of volunteers working here to guide you to the right place, there may be more volunteers than passengers. Haha.",review,q0SIbZZ8hMFtVP9G6S5Dpw,0,0,0 +TLnAS5Qx9Q2KK3mZi0Lyeg,2010-11-20,tJzaK6DryQnco5kCg9tn0g,5,"I did not know I could still be creative since it had been years since I had done anything that involves even a minor level of creativity. +But what fun was this! + +A girl friend took initiative here to organize a kitchen tea on a recent Saturday afternoon. We were a table of 6 girl friends that were scheduled for some pottery making! + +My initial idea of this venue was admittedly a little different but better than expected in so many ways! + +For one we did not have to get all that dirty. Not dirty at all really. Also not that I mind dirty. This is for those who wonder whether to go or not to go. + +And two - we were able to bring along our own food and drinks which made for excellent responsibility sharing in the wining and dining arena. + +Once we were set up with our party arrangements and have had some snacks and champagne we were inspired to start our artistic journey. The idea was to have each of the 6 friends make a dinner plate (or item of the bride to be's choice) which we will then give to her as a wedding present. I thought this idea was really original. + +So the bride to be selected her dinner plates of choice after which we were briefed by a very friendly and sweet staff member as to the different effects that the paint will have once the plates were baked. All informed we went to select the different colors we needed for our different art works. + +Everybody started painting and each one of us got really involved with their own creation. The event took us much longer than we anticipated but in such a good way. We finished about 4 hours after starting off but much enlightened by the activity. + +Everybody agreed that we will have to go here again for the sheer enjoyment and good feeling of togetherness it promoted. I have not yet seen the end product as one of our friends went to pick up our designs - but we will presenting our collective gift to the bride to be soon :) + +Go go here for a stimulating outing with good friends/family/kids!",review,uZG-IiG2fE7LSoEtlWp2Sw,0,0,0 +wNUea3IXZWD63bbOQaOH-g,2012-06-21,qzWXH0BSp9MebctZmVF7XQ,5,"Stingray Sushi is where we go for sushi . + +Sleek ,beautiful interior and very ,very clean ! This dining house has large 13 or so foot doors that when open ,seamlessly link the patio potion with the interior dining area ,a very good design flow,indeed. The patio itself is very comfortable as it has great seating . +The service has always been wonderful ,the sushi very fresh with beautiful presentation .We like to get the sushi boat , edamame ,and beef yakitori.The fire dragon rolls( though on the small side) are also yummy. + +Drinks are very good here ..the sinful orchid (yum)a very pretty drink .And their HH is really good as well .",review,vtC_cpesIJZ3--W9J-UIXA,4,3,3 +AryNioF9fxl8RYGiIE7fSA,2011-08-01,77rDWBjZ11-LTSi4ncHlsw,4,Sauce is a great Quick Serve place. I had the Chix Caesar Salad it was large and filling and quite good. The sangria is nice as well...I like the koolaid touch around the edge of the glass. My man had the bruchetta caprese style and it was awesome...the tomatoes were perfectly ripe and the mozzarella was fresh and creamy. The bread was a really crusty yet fluffy yet able to hold up to the mix piece of wonder...we found out they get it from LaBrea. If you want a great quick lunch or dinner check it out...we look forward to trying the pizza and pasta next time!,review,PYtryNSk30ytqOc_36sLPw,3,4,1 +iAYzRvyBrSkJDu_XZ-E1zQ,2012-10-21,O3C6XSdVwcc99Rxkn8SdAQ,1,"Waffle House was packed, Over heard another couple taking about ""Fast Eddies"", With a 20 min wait ahead of us we decided to try it out. Walked in looked like a senior center. Tables and chairs were very out dated. We sat down in a booth. Food was still on the table and the cushions were dirty. Waitress came over after 10 min and asked what we wanted to drink. 10 min later she brought out or coffee. Placed the order waited another 20 min to get the food. The diner wasn't busy at all. I don't know why the wait was so long. The food was ok, service was horrible. One thing that really grossed me out was the a/c return next to the office door. Look up and you will see probably years of dust that has collected. I showed the waitress and she really didn't care. I told her that if I would of saw that when I came in I would of just walked out. GROSS! Sorry Waffle House I will never betray you again.",review,QE6Bs0oeZj2RBULNqUvlUw,0,0,0 +-3WVw1TNQbPBzaKCaQQ1AQ,2010-05-10,HiqoMER97hnLdKYeuaogAw,1,"This place has the oiliest food I've ever eaten in my life. I had carry out one evening (two dishes) and the entrees were soaked in oil. I had to rinse with water my eggplant dish three times just to eat it without feeling sick to my stomach. I wish I could've washed the other dish too (but it wasn't one that could be washed--it was a wide-rice noodle dish). + +Can definitely taste the MSG in these dishes too. + +Really not sure what the fuss is about.",review,zn81QpflLDUaGZkCMUowCg,2,2,0 +Vtx0VYkybAd71fzwgaoQ8g,2012-10-20,0sO2827rO4t7aW-9JXu3WA,4,"Monday... BIG screen football, volume up, don't come here Mon night if you don't want to be immersed in football. $5 burgers that are reg $10, combined that with happy hour deals 4-7 pm every day of delicious GOOD drafts for just a bit over $3 & all flatbreads & apps 1/2 price. At normal prices I would feel more 3-star. But if you know what you are getting into & come for deals, it is great for what it is. + +Waiter was VERY knowledgeable of menu, helpful with suggestions. + +Atmosphere really is great with the dark wood ceilings to floors, big place but broken up with all sorts of nooks, interesting apothecary stuff Apollo over in cabinets, with Seattle Seahawks stuff thrown in.",review,ZzXsskFHBYlHigIC0mX9lg,0,0,0 +OhPg5mP2v6CseLpIw7FlGg,2010-06-23,xc4ba_FseEUbSbRRoUdG6A,5,"If it's an emergency, they will generally see you asap. When we used to live in Desert Ridge, we had 2 dogs, 2 cats, there were times when I needed a vet immediately, and generally they will accommodate you in such a demise. They see you pretty efficiently, but of course they will suggest things that I feel are not merited to add onto a bill, but it's your right to question their additions and refuse, of course. I've never found them to be arrogant or pushy, they will easily offer other options, or be ok with your decision. + +During 1 extremely difficult period with our beloved Rottie/Sheppard Mix, they were very understanding to the emotional distress we were experiencing with regards to his advancing old age - he was 17. They were happy to provided us with care during his aging. Sadly, it came to a point that his quality of life was no longer conducive to allowing him to continue in the state he was, and it when it came to making the horrible and very sad decision to allow them to put him down, the entire staff were so understanding, caring, and totally sympathetic to our demise. They allowed us to hold him, cradle him and pet him the whole time. We were allowed as much time as we wanted before, during and after the whole life-altering circumstance. They even sent us a sympathy card, signed by all the staff, after the terrible ordeal we went through. + +During another trying experience we had to endure, our boxer mix was attacked by another dog and needed emergency care. We were now closer, and under the care of the Tatum/Shea location, but they were unable to see us. This location was able to open up their schedule to see us under this distressing circumstance. They provided expert care and glad to say that he mended just fine, with no lasting ill-effects.",review,h7v_M_0-YVpSVZ2WD7FpAA,1,2,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-01-05,QiibMU5XGoBo4VWKbpAodw,3,"I just don't think I'm much of a brewery gal. Granted, the beer here blows Four Peaks out of the water, but I'd much rather have a nice cocktail than chew though a specialty brew. But if beer is your poison of choice, they've got just about everything. The happy hour is kind of weak here though, with like a buck off all drafts. Thoroughly meh. + +You can peruse the coolers and grab a cold one or choose from 20+ drafts they have on the menu. No Bud Light here though. Sorry frat chumps. They used to have a ton of wine here as well (like, ages ago) but it has since been narrowed down to just four choices, none of which were calling my name this last go round. Their Orange Blossom wheat beer was a bit like drinking an orange creamsicle in beer form. Almost like a cider with floral notes, a light finish and a super creamy mouthfeel. (Oh yeah, bitches. I just went there.) The perfect beer for the novice drinker to enjoy. Their IPA was also pretty decent, but was more bitter than I care for, although it stayed far away from feeling like I was drinking a bottle of grassy perfume. Solid. + +I thought they had deals on happy hour food (again, like a buck off) but last time I went it was no dice. At least the food's reasonably priced. Tasty rueben, craptastic hummus, crispy quesadilla. + +The acoustics in this place are kind of shitty, so go on an off time when it won't be packed, or run the risk of smiling and nodding amicably while hearing every other snippet of convo. The high top tables are also really uncomfortable for shorties like me to sit at, but c'est la vie. My biggest peeve about this place is the gigando assy television against the wall. For a place this small, a big ass mofo tv is just not the way to go.",review,tlSSQwfHYJany7wPoTH46A,0,3,1 +tNdb_01AHU3O1_ISE2Mf1w,2009-07-27,4LoK_n7rVcU1oleZGPXF3w,4,"This restaurant is close to my office, so it is a regular stop for either a great Mexican breakfast or lunch. Never been dissapointed, nor have any of my co workers. Try the Huevos Rancheros or the Chiliquiles ( With the Green Sauce ), it is a favorite.",review,ZsqSDOeYGb-DinY6x3-YgQ,1,1,0 +6Y-6Y6sy6qOQHrWI37zR1Q,2012-05-10,Xesu2P1w2NdIhmsgEtkeHw,3,"I've been there twice. Only a girl serve the table. If there are too many people,you have to wait for a long time. + We ordered the tofu soup. That was great. Others, just that taste. Not good not bad.",review,DTSbKTuy1Zc-SO3RpbjGOQ,0,1,0 +zp713qNhx8d9KCJJnrw1xA,2011-05-23,AAVhWT301YqbZQ-Oxp3NlA,3,"La Condesa is in a rather unassuming location in Phoenix. But has a nice atmosphere when you get inside. The first thing I noticed was their huge salsa bar. We sat down and were brought menus and chips. I tried most of their salsas. They all had their own very unique flavor. the peanut salsa was really interesting. My favorite was their tomatillo salsa. + +I ordered the Oaxaca Mole taco and a carne asada taco. The mole was excellent with great flavor. The carne asada was bland and flavorless...huh? I dumped salsa on the carne asada taco and when finished was rather disappointed in that particular offering. + +Also ordered their calabacitas. They were seasoned well and tasted great. + +I had a bite of my partner's pork taco and it was amazing. + +I am glad we found La Condesa and I will definitely visit again to try some more of their menu offerings.",review,R0ekUK-osGP9AoUtyrAEUw,0,1,0 +qxLOhhbHYRCnJlZmqntdLw,2012-05-25,G3A65rnTkbaCQE3HfnKp5g,4,"This staff at this United Blood service is first rate. Always quick and effiiant. They are always staffed and ready to go when I arrive for my appointment. I've donated blood at this location 10+ times and have never had to wait. Of course, I can't encourage everyone enough to donate and donate often.",review,xAVu2pZ6nIvkdHh8vGs84Q,0,0,0 +zofs5Ig8kgvtFyp3ySoSBA,2011-05-08,TQIOItBX3YcI2MvzJ04Jfw,5,"I am not a connoisseur of cupcakes so I don't have a ton of references to use on this review. That being said, I'm not really a big fan of cupcakes either. This place is family owned and operated. There's a wife and husband who run the place and the wife's sister works there also, which I thought was great. It is in the strip mall towards the western end of the shopping center. + +I tried a variety of the flavors including the Reese With-a-spoon, and a chocolate, chocolate chip cupcake. Coworkers that I shared them with, who are cupcake aficionados, really enjoyed the lemon and red velvet versions. While slight pricey for a cupcake, (slightly north of $2 per cupcake) if you have a special occasion or just want a special treat these cupcakes are incredibly moist and delicious. They also do custom cakes and cake pops, though I can't speak to either of the latter two.",review,shkOSzUcN2hjIJpyufVS9w,1,1,1 +oBVS96DtPGk9GU8zPx5Hjg,2009-07-09,qJK_2c5pvNlnIVWrJyUuUw,5,"So much food for so little money, and they have kids meals that the kids will actually eat. If you do not like what they offer in the cafeteria you can get food downstairs like Pizza and hotdogs...what kid does not like Pizza or a hotdog? + +I had the meatballs and mashed potatoes and they were so good. I wish there was something bad to say about eating in a furniture store cafeteria, but there really is not - it was great food, great service and fun for the kids (there is a play area with a TV that they can eat at too (so the parents can enjoy their food too) + +My wife had the herb chicken and it looked great too, and she said it was really tasty too. She loved it. The desserts were amazing too, and very filling --- SO MUCH FOOD for SO LITTLE THE MONEY! + +I wish it was not so far away from Queen Creek, or I would hit it up so much more often!",review,UPtysDF6cUDUxq2KY-6Dcg,0,0,0 +GwSdGrvaXi4BdXNSWKn-EA,2012-01-03,K2VH5I1ufm1Hw9jT0VJexA,4,It's not only a book store but also a community wherein a lot of readers meet. They also have a wide selection of used and unused books as well as novelty items so I get to do my shopping at the same time!,review,u4MQp3zX9RolLtNnp9FxoA,0,0,0 +jJhNOhuGpIsJX5SEUFFWYQ,2011-04-27,raCtfWSWifX6KmuPGSu1yg,5,"Imagine for a minute that you're waiting in a really long line. No, it's not the line ride. You see a menu on the wall with your ordering options, but before you are anywhere near someone that could take your order, you're yelled at. + +""Hey! What do you want?"" + +Don't be afraid, but don't be surprised either. Keep your cool and order your dogs. Immediately start thinking about if you want fries or rings (onion rings) and be prepared for when you're called upon again. Then watch as your hot dog is mutilated in front of your eyes and what appears on your tray is what looks like a hot mess of decapitated food. + +Never fear though... because it is amazing. Well worth the wait and one of the best dogs you'll ever have. My favorites here are the white hot and the bratwurst. Whenever I know I'm going, I end up salivating like Pavlov's dog for hours. + +The booths are classic hot dog stand style and the pennants lined up along the top of the walls are fantastic to look at. One started a whole conversation and research one day about a basketball team we knew nothing about.",review,7zDqr2I0-xpw9HF5Ha54cA,1,3,2 +euSK0uPFinytVDR_UROMTA,2009-02-17,GNCjDt-_8C0cdKVJD00Q3w,4,"Oh good another Paradise Location for meeting up with friends after work. Clean neat and well manned , the worker bees seemed in real force, cleaning refilling and picking up plates. Nice to see. +Food wasn't quite paradise but it was tasty and filling . I usually have the panini with chicken and artichoke but today went for a Chicken wrap.Tasted like a chicken wrap. The peach decaf teas was refreshing and the mango tea was too. +I love the casualness of the setting and the ease with which you can order at your leisure . If you are meeting people with different time constraints , this can be very helpful.",review,tdNV2Wb0LrFpm1Yfov_Klw,1,2,0 +jzPMl-NoB5F2fwoHX3hN8A,2010-03-07,5lp7FVVwKZieGOClKlclqQ,1,"My husband and I heard great reviews about this restaurant and we decided to give them a shot. One word can describe this place GROSS!!! The food sounded great but then you took a bite and ewww disappointment. The salsa was lame, the chips stale. There were only two good things about this place the soda and the waitress was nice. Other than that don't waste your money GO TO ABUELO'S...it may be on the west side but it never disappoints.",review,TmEPymvZ2Q9QCSJi6Q63Cw,0,0,0 +5-X03Zc0nN7U5eoe8uFUdw,2008-12-09,mJIV2UpS6jiW_nKi71cOIw,4,I remember this place being good the few times I went there. I had a chicken salad sandwich one time that was awesome. I miss it.,review,uVU1FyUPPVxzZ8jbye-rFA,0,0,0 +aSW8D-uiz8mupVU8XNlZlw,2011-08-27,w-kcoFCZhFiIoM9GuOQ9yg,4,"oOoh been here once for dinner and about three times for lunch...it's really a great place for a quick and easy meal and it's not too fatty like other fast foods..and it's pretty cheap. + +I love their 3 piece dark meat rotisserie chicken that comes with a delicious cornbread (I'm usually not fond of cornbread) and two choices of sides. I've had the creamed spinach, corn, veggie mix, squash mix, roasted herb red potatoes and sweet yam which is my least favorite....the sweet yam casserole is just too sweet for my taste...so not a big fan of that one..other than that the other sides are pretty good. The meatloaf meal is also really good...two really good size slice of meatloaf also with a choice of two sides and a cornbread...2 bucks more expensive than the chicken but sometimes you want something besides chicken. heh + +So for a quick easy cheap semi-healthy meal that does not consist of a hand full of grease (burgers, pizza, tacos of that sort..) then Boston Market is really a fantastic choice =) + +Yummers!",review,Ek_t82OUnerdlO0D-GVcxA,1,1,0 +nlFlIeziD-4nNUF2B337Yw,2011-10-18,KKLGZO2anwwzYy5SVf7E5A,5,"We stopped here on a Thursday night on a raving referral and they we not exaggerating - this place is fantastic! +We are always a little hesitant to try a new place when an omnivore suggests it, but as vegetarians, we found Sekong by Night so accommodating! They offered to convert nearly any dish on their menu into a vegan alternative, and it was delicious. The spring rolls are really big, and they swapped their fish dipping sauce for a vegan version. We had the Phnom Penh Noodle Soup with tofu & veggie broth (just like the Vietnamese pho!) and the Katheaw Cha rice noodles with tofu instead of beef - AMAZING. +Service was top notch, and as many other reviewers noted their prices are unbelievably low for the quantity and quality of food that you get. +Looking forward to our next visit and trying more fantastic dishes!",review,tWM0SfyOhevQfhj2r15Rwg,0,0,0 +IRxBQfA7FdHhzrPjtBxuuw,2011-10-17,GQIljxu_QXhIP4btPOcAug,3,"I ordered the Peanut Panang Chicken.... I rqstd to the waitress that I wanted extra Bell Pepper. When it came, it had -NO- Bell Peppers at all.... i actually didn't realize this until about 5 mins into eating it. could not find our waitress, I waited about 7 mins, finally, I had to get up & search for her. I found another waiter & told him my problem. He took my Dish, but then came back to tell me that they are ""All out of Green Bell Peppers. Would I like Red Bell Peppers"". I said yes, of course. This whole experience has put a sour taste in my mouth about this place, which is next door to the 'mediocre' Good Egg on Central. I like Wild Thaiger on Central MUCH better instead!",review,_p9EnnLQg6KDlIRU2fYEJA,0,0,0 +PYqGWEWUH6x-BO-lIS2hPw,2009-05-25,UnGcmnPGMyPkBTD-0MECuQ,3,"For cheap pizza, it's as good as it gets. More selection than the other cheap pizza places, and the quality is way better. The wings are delicious also, especially the Cajun flavor!!! If your looking for something like one of the big chains, then go there, but this is good for the money. If you want gourmet pizza, then go pay for it, don't look for it at the bargain places. I paid $29 for an XL pizza with two toppings and 20 wings, and everyone was happy! Just know that it's really fast pizza, but it's better than the other big guys!",review,C_uA1JTMe8QteqDEG0UjyA,0,0,0 +e9nN4XxjdHj4qtKCOPq_vg,2012-09-12,2PGogS3a-skLtTzjgZ8ihg,5,"C'mon! Fresh sandwich lunch for $3? The place makes it to order, incredible variety of baguette style sandwiches. Cash only, but the have an ATM in the lobby with a low fee. Or is it no fee? Anyway, great coffee and drinks and teas. Line moves super fast. Number pickup system is funky. My family packs these things to take home on the plane!",review,-cms2ELbzY2rSyGCVcioUQ,0,0,0 +wZwZcte4lcbu51NOzCjWbQ,2008-08-29,PYmsFrmxGeR4eCvFZheXDA,3,"It's true, there is a real bull and a slide. This place has been around forever, I think my parents used to go there back in the 70's. + +I can't say much about the food since I've only been here for happy hour, which was pretty decent. Their HH included top shelf for 3 bucks and some cheap beers. They also have appetizers on the HH menu, sliders, quesadillas and potato skins, that sort of stuff. + +Pretty nice view and going during happy hour you can see all the people sitting in traffic on the 10 and cheers them from the balcony.",review,9VPNlcKsL99FvKtz1r9qJg,2,2,1 +ZAd2hniecnqH00t01ODQ3w,2011-04-18,7ZRo9le7JUjRXT_lSgre6Q,5,"I'm fairly new to the whole Costco experience. Now that we've bought a house it's time to buckle down and buy in bulk! As as new user I'd thought it would be helpful to post the following neat services Costco has to offer: + +1. Great deals on contact lenses. Before I would buy my contacts from justlenses.com but through Costco I bought 8 boxes (a year's supply) and received $50 off! $25 off via instant rebate at the cashier and another $25 off via mail-in rebate which came in less than a month after the order. + +2. PIZZA AND HOT DOGS. The take out pizza is huge and only 9.99 and the hot dog and coke pair is only 1.50. These make for a delicious and quick lunch. They also have smoothies and salads if you're looking for something on the ""lighter"" side. + +3. Food expos come and go often. Recently I got a deal on a 10 pack of pita bread, a huge container of hummus and pita chips for 12 bucks. The company was from California and let customers try as many samples as they pleased. It was well worth the money and super fresh! + +4. And here's where I feel Costco has really benefited me. My fiance and I booked our honeymoon to Tahiti through Costo Travel! I'm big on comparing prices before making a big purchase and Costco was hands down the best price. It included seven nights, hotel and round-trip airfare all for one great deal. The customer service agent I spoke with was friendly and more than willing to answer my 500 questions about travel. I would recommend Costco Travel to anybody looking for reliable customer service and excellent travel/airfare packages.",review,gsyguOgT2Dnjw-OYw14XDw,0,2,0 +RQWliUrWic_b5FZEj3JThQ,2012-12-05,8CMXkvJ__S0Fbkpq1RlFlw,4,Great food at a great price. Not the best Italian food but definitely a step up from all of the national chains. Also great lunch prices,review,a_V8LRfMxGvpGtTwR2olrg,0,0,0 +gHKB66up5VluCWT4vuSZpw,2010-01-26,h4DCMEWyyhuuIXoDisEvhw,3,"This place was highly recommended by various websites, so I gave it a shot when I was in Scottsdale. The service was great and the food was good. + +We sat in the bar area which was lively. It feels like a neighborhood hangout, so everyone looked like they were friends and having a good time.",review,xfz_Bb4RIYH7N3luWqbyHQ,0,0,0 +LzpR_jE6VIutJ08s2cdRrw,2011-07-15,kGHQ9_lmTz4uHEzEV1jN1Q,3,"Third time back. This is my 9 year old daughter's favorite restaurant for special celebrations. Maybe because the portions are sized for her. + +Just kidding. Sort of. + +Always good food. Sometimes terrific. But never consistently, hit the ball out of the park good. + +The bill creeps up on you. We can't ever seem to walk out the door with less than $80-120 bill for 2-3. + +Last night, had the filet. At maybe 5 ournces, bigger and more substantial than the last time, when I think I paid $32 for 2 ounces. Seriously. + +Last time the steak was perfect. This time, they overcooked it, but I didn't have the heart to send it back. So my wife ate it and enjoyed it, and I got her salmon. + +Salmon was just okay. BUT, the bed of rissoto, one of my favorite dishes, was delightfully rich and creamy. + +Overall, it's not a terrible value. And it's a cute little french restaurant. COMPLETELY and totally not appropriate for small children, so don't even try. Great date place. + +Whatever you do, you MUST try two things: + +1) Onion Tart - it's just a slice and a side salad as an appetizer, but OH what a slice. + +2) Berry Tart - the deserts are what makes this place go. Save room. + +Remember this: + +IF YOU GO TO A RESTAURANT WITH TART IN ITS NAME, AND DON'T ORDER A TART... well, what can I say. Just don't do it. + +Will be back, as I always have, and will promise to only feel slightly mugged next time I pay the bill.",review,jvwnIG5wEjdOsqkYJgN29A,0,2,1 +CqKiF2X0_4erH02-CUiweQ,2011-02-15,SuTWGGmGzZC_fwoa9-YWMw,5,"PHENOMENAL place for Chinese cuisine. The portions are HUGE! My fiance and I always only order one thing and share it, and still always have leftovers. The menu prices are very reasonable. Including tip, we usually don't spend more than $15 for the both of us for dinner. They are very personable and attentive to your needs. I love that it is a very dainty, and has a very laid back atmosphere. The lemon chicken is our favorite!! :) They are also very kid friendly. We have an 18 month old son who always leaves a nice pile of rice on the floor every time we leave lol, but they love him! Highly recommend!",review,1NWEP3GpFxrADPXYYTiWLg,0,0,0 +yMUVflS-2SnOGafXmdHy6w,2009-01-24,w8E_0tKsXCf6sREqI65kVA,5,"girlfriend and i always stop here on our treks to lee lee market. If you haven't tried pho (pronounced fuh) , this is a great spot. Basically its a beef soup thats a thousand times tastier than campbells. its served with a plate of crisp and fresh veggies, like bean sprouts, jalapenos, basil, etc, that you can throw in the soup. i recommend using the spicy sauce that has roasted garlic in it instead of sriacha. we also had the lemongrass beef salad which was equally good. Everything is fresh and tasty with great service. + +make sure you take dobson for the easiest entrance as pho ao sen is facing west!",review,EpC7vMp0hg1wGBQ6fzzoQg,0,1,0 +2CYIJPEd2SQ38khwuULvAw,2011-07-12,iTZCkFT1uXoGGUNBC2_IGw,1,"Nice facilities, nice AC, but two FATAL flaws: + +1. Children running around yelling and screaming at all times. This is a failure of the parents and, more importantly, of the staff who apparently REFUSE to enforce any kind of policies against noise whatsover. + +To parents and staff: THIS IS A LIBRARY *NOT* A DAYCARE!!!!! + + +2. The ""collection"" here is 90% DVDs and ""Dummies"" books with trashy novels thrown in for good measure.",review,ezxgXFeFA15ooTd1d_rdeQ,0,0,1 +cAhn-O2kSI0BNPSCDKdNTQ,2009-08-20,auzbQeAujcH2EuuHDEY61g,2,"At first I was happy to find a dry cleaning shop that was on my route to/from work and had good prices. The whole pay in advance thing and only accepting cash or debit card (with a 50 cent charge for debit) was a litte inconvenient, but that was OK. The first few batches of items I brought in came out great, but then the quality started to go downhill. I finally gave up on this place when 3 separate batches of items I brought in came back wrinkled, like they were not pressed completely. Even the simple items like pencil skirts looked like they hadn't been touched at all. Huh? A low price is not really a bargain if I have to iron everything again myself once I get home. Thanks but no thanks!",review,n9Zg0jlOGtxfIrvoPm6Hhw,2,2,1 +KoIRdcIfh3XWxiCeV1BDmA,2010-10-17,MFEGc4-SXd5ipDyT8hg7bw,3,"3 Stars only because the house margarita and guacamole was so good. The food was decent (fish tacos), however the patio atmosphere was a bit sad. I understand this is more of a bar than a fine dining restaurant but the patio tables had no place settings, condiments, etc... Just cheap metal tables and chairs. Also - there was no music out there, just this incessant humming of a back alley generator. + +The service was a bit sporadic out on the patio as well. We were asked by three different servers if we have a server yet. Not much in the way of organization. + +Maybe management just hasn't gotten around to fully organizing and furnishing the patio yet. I hope they do, because they are in a great location and the food and drinks give them lots of potential.",review,omGocLsyIYeiHPviDOAa3w,1,1,1 +T4XMgqYiEsALBW_st6diUg,2009-05-21,5laPcPl6WaKfj0PXM8WZHw,5,"I was hoping to be the first to review Grayhawk Family Chiropractic, but I'm glad to see Heather feels the same way I do about them. + +Dr. Frank Sorrentino is a true professional. I've suffered from low back issues for years and Dr. Frank always knows how to treat the problem. Between regular visits and the website they set you up with to demonstrate stretches tailored to your condition I'm glad to report I've been in good shape for a while. + +Whether you have an ongoing issue or have just injured yourself Grayhawk Family Chiropractic is the place to go.",review,Sa64rQmghfE9i17_dRIDyw,0,2,0 +is-olmqaSZ0KCoe-_ftW5w,2011-03-21,_0Y6QAT1dBOVmYOXIoVpKw,4,"Tough to rank this place... it is a retirement community first off. The club house is awesome. Pool is salt water and heated. Courses are nice, little bit of a challenge but basically flat. The putt putt course is very challenging and really cool. I'm not impressed at all with the club food and suggest staying away from the roast beef. It seemed fake.",review,LZZNgNIuA2W4mn-5LLH24g,0,0,0 +ntJAKLAq0cXzzdFgPoo0Iw,2011-06-13,wWAlAO4zG_EdzyDmjVlGXw,4,"Now accepts plastic! Now accepts plastic! Did you hear me? Harvey's now accepts plastic! + +I've lived around the corner from Harvey's for a little over 4 years now. I had lunch there once in the mid 1990's, and went in to watch a Suns playoff game a few years back when my friend was decked out in Spurs gear and we were nearly lynched at Half Moon. Quick lunch with a girlfriend who was in the mood for a burger about a year ago. + +While I love, and I do mean LOVE a good dive bar, this place scared the crap out of me. I'm young, not hideous, female, and not of the meth-head variety - so not only did I not blend, but I felt targeted. Sad, really. The ONE bar within easy drunk stumbling distance from my house, and I wasn't happy going there. During a weekday for lunch was more or less okay. But evenings are when the freaks come out. And I don't mean the freaks like me. I mean the dangerous crazy ones - not just the fun crazy ones. There's a difference! + +Well, enter the new roommate. He was disinclined to believe my review, and insisted we go. I resisted until late Saturday night, when he came home at 1am and insisted I get dressed so we could go there for an hour. Maybe I was tired. Maybe I needed a change of pace. Whatever the reason, I gave in, got dressed and we walked over to Harvey's. + +YAY! According to Echo, the bartender (yes, it's her real name. her parents are hippies like mine), the owner has been working hard to improve the place (read: clientele) for over a year. It shows! + +Echo is three shades of awesome - the perfect gal to be running the bar! Easy smile, quick wit, great sense of humor and the talent to mix a great drink while cooking any of the grub from the menu. She is a one woman show and pulls it off like a champ! + +June drink specials included $2.00 Beam 5 Star bourbon, Yukon Jack, and I don't remember what else. I asked for a bourbon and coke, the roommate asked for his bourbon neat. (Brave - cheap bourbon *needs* to be cut with something!). The pour is solid and consistent Oh, and did I mention you can get a mixed drink, anytime day or night for just two bucks? For $2!! +Two drinks for me, two shots for him, a beer chaser for him and a cheese wineburger split between us. Under $14!! Holy hell, it's cheaper to drink here than it is at home! + +And at home - we don't have the entertainment of the other patrons. Like Cowboy who would do the splits on demand. And suggest my roommate go through the needed steps for a game of ""rodeo"" with his girlfriend. You just can't make this up! +Oh - and he bestowed slightly drunk me with a new nickname. +Apparently, I am a ""prick ass bitch."" I don't know how he meant it, but I am taking it as a compliment and will wear it with pride! + +Oh, yes. I will certainly be back! A LOT.",review,45V7-1r79DEG0HbuaKYIlg,2,3,5 +VfzUmXIgowYKutptfwR7Aw,2012-06-16,mGHKnvoyK-eF_WzhT3QOSw,4,"Lacking a clean or acceptable Chinese restaurant in Casa Grande, I discovered this jewel while showing homes in Anthem. Menu has many choices and restaurant is clean with attractive decor. The dishes I have chosen so far have been excellent with nice portions. Service is friendly and efficient. Well worth the drive from anywhere in Pinal County!!!",review,CgfIRB7t_7a8l_MlrUuX6A,0,0,0 +jf4RUa9EQO37hqxRCxbEXQ,2012-03-26,Aqv8nmSkIgc3C2aCfdKcFA,3,"Saigon Nites is one of the few Pho joints on the North side of town. + +I ordered me a bowl of Pho as usual, but I think the waitress made sure I knew what I was ordering, so she repeated and asked ""Beef Noodle Soup"" ... Yes, ""Beef Noodle Soup"". I forgot I'm in N. Scottsdale where culture can be lacking at times. I'll have me a bowl of Asian man soupy stuff and some noodles - wink! I also ordered some ice coffee with condensed milk - can't have Pho without one of these drinks. + +Overall, the Pho is okay. I'm somewhat of a Pho Nazi and this didn't really past the test. My ice coffee was excellent - Why? It was served just right! Not too strong and not too lite. I'm really used to having it strong and simmering it off with some water to weaken it. Not today my friends! + +Service and ambience is okay. I really enjoy the Vietnamese art here especially the portraits of the Ao Dai...Girls in Ao Dai - oh my! - Enjoy!",review,XqMkm-DD9VsdcKx2YVGhSA,0,2,0 +3HciJAVduCRoPDdzgh7cAA,2012-01-03,zhfp4kaBwDLFPtiCiTG2ZA,4,"I like Buffalo. They always buy my stuff, and I like looking around at what they have. + +I think the reason a lot of people don't like this place is because they try to sell ugly nasty shit that no one wants to wear. It's a recession, so, you're not going to get top dollar for your J Crew tee shirts that you bought 4 years ago that have pit stains and are hideous. Duh.",review,fYayRBmQjB8f5eyH1WR-1w,0,1,1 +-bd26a1QEEpqUZjBmtBUiQ,2011-11-05,EjGiSg2TkOFHV_TOpseqDg,5,"This cafe provided me with my first Ethiopian cuisine experience. It was delicious and I am eager to go back. The most impressive thing to me was their selection of vegetarian dishes. They had as many options as those with meat which I really appreciate (doesn't happen very often.) The service was great. You can tell this is a family run restaurant that cares about their patrons. The food is very reasonably priced which make it easy to try a variety of dishes. + +We started with the shorba which is a lentil based soup. This was probably my favorite part of the meal, it was absolutely delicious---satisfying and hearty. We also had the vegetable combination which had 5 different dishes served on the injera, a crepe-like bread you eat the main dishes with. + +This is a fun way to eat (with your hands) and opened up a new world of foods for us! Can't wait to go back and devour a bowl of shorba.",review,sPEFql7fLp0oouFxnooGpQ,1,3,0 +El_0LAdJ1R0-nL_lHzBT-g,2009-02-05,jPZphpCBUZobuzNzLQY4Sg,5,"This is hands down the best place for bagels... +but more importantly... after all my travels it has the BEST Bialy ever. +I just wish they would open on in Greenville. +Oh it is soooo good, a poppy seed bialy toasted with cream cheese... +I guess I can only hope they are always open when I visit Scottsdale... +.n",review,RT6qe2ZAANWsBBZLhbTxKw,1,2,0 +gqLWBFxOKag8dXwVxEvTrg,2012-05-03,glBPsp_i7ylnKHkxz_CWVg,3,"Hmm...this place has a good lunch happy hour, but the choices in the menu are kindof limited. The food isn't bad, but it's not amazing. So, three stars for being average i guess? + +I do come back every so often so I guess it's a plus.",review,y5vDLDoA5Khmzh285yNUQw,0,1,0 +1NZLxU5WvB5roPFzneAlLw,2012-04-06,cmP4uWEXq4yPcOQEFWIByQ,4,"Great food, great atmosphere. Look for the grafetti out back. Not ""Mexican food,"" but Mexico City cuisine.",review,3PHlBza2z6FV29vvUGZV6g,0,0,1 +shUiQtVZpk_YCUmMYJZf-g,2007-10-05,vmlDLL8TwdLP3YwxHj6F4A,4,"Union is a nice cozy place set on the fringe of Old Town Scottsdale. The inside has a nice homey feel with booths that have extra throw pillows (love that) and soft lighting and desert scape paintings. A big drawback is that while half of the seats face the lovely paintings the other half face the kitchen. + +The wine flights are good but the pours are inconsistent and not as hearty as in some places. The bulk of their wine menu comes in bottle form. They do offer 8 oz pours of wine for about $15 a glass. Be careful when you order, as we were given 8oz pours and had no idea we were getting them. + +The food was quite good, they actually had real grilled focaccia and this garlic cream butter that was delicious. Its tapas style and we ordered three and it was more than enough for the two of us. All of the tapas we ordered were well prepared. We also ordered dessert which was very mediocre. + +I would come back again but probably for a happy hour. As far as food goes it wasn't my favorite at a wine bar. They do have a patio out front that looks like it would be very cozy on a cool evening.",review,qASPib1Z8ft8e96dtbh66w,0,2,0 +pa6K7DGByxBXxcVJ59nWMw,2011-07-03,ujWd0VmmyuMkseB4k0u0Gw,2,"We went to ""THE PLACE"" for breakfast/lunch today. It must be a popular spot and was very busy. There were 2 specials of the day, Eggs Benedict and a French Toast stack. Both came with a choice of potatoes. +I went here based on the reviews from fellow Yelpers. +My daughter ordered the burger, it came with fries AND salad for under 7.00. The burger was very well done, but it was 1/2 lb of ground beef. The fixings were on the side and it arrived on an unremarkable hamburger bun. The fries were crisp and the salad was fine but it was DRENCHED in a watered down thousand island dressing. +My eggs benedict was fine. Nothing to make me want to order it again, but not bad either. I would try their pancakes next time. They looked pretty good! +My husband's french toast stack arrived. 3 pieces of french toast with ham,egg and swiss cheese between the layers. Kinda like a Monte Cristo sandwich. They bring out warm maple and berry syrup. My husband liked it. But, said he would try something else next time. +I ordered my hashbrowns extra crispy, my husband ordered his ""burnt"", his order came out exactly how i wanted mine. Crispy dark golden and cooked well. Bummer I had to just eat the top of mine. We also wanted to try the biscuits and gravy. What a big let down. Quantity does not equal quality. The biscuits were large, and the gravy bland. Our service was ok. The people working there seem nice enough. They were giving out free THE PLACE frisbees. +They will be closing 7/21 and will re open 8/1 at the new location right up the street at 51st ave and Bell rd, in the old 3 Margaritas building. +Hopefully I will be able to update this one day and give a better rating. + But for now, I will stick to Ronnie's Cafe on Cactus rd. as my go to breakfast joint.",review,qlbiTIcn1-hDeHhEF1PLyg,0,0,0 +ncxBZxetREZ_jCma0c7mHA,2011-05-14,18bXhCOgwf_-TnvRSr8zWA,1,"The wash ain't bad....but the process to get it done is pathetic. The ticket writers at the entrance move in slow motion. They try to upsell at every opportunity. Four cars backed up waiting to order their service...and the crew is standing around with no cars going thru. +I'd rather drive my car dirty then endure the agony of incompetent management.",review,OoyMyBD0a-QmEJrFzw78Fw,0,1,0 +MHy50GRrcXxMORpF_-kNCA,2012-09-27,jbEge4WZdQLOGuuO9mSTaw,4,"Somebody please tell me why QT is the best gas station/convenience store ever? + +The layout is the same for every one. The bathrooms are always less gross than other convenience stores. The service is always phenom. Gas is usually relatively cheaper than other stations in the area. Plus its like a one stop shop for emergency ""got to have it now""s like snickers and chicharones and energy drinks and milk and wipies right? Hahaha! + +I don't know. My yelp told me to write a review... =D",review,k2u1F6spBGhgk2JtAe97QA,0,1,0 +gqLWBFxOKag8dXwVxEvTrg,2009-01-11,iNH54kIw3a0CpXV9n-jpFQ,4,"Sakana is one of the few sushi places that I return to. There is usually always a wait (no reservations, which is a PITA), but the sushi is fresh, service is quick (so it's not always super friendly), and the calamari salad is SO effin good. Their lunch specials remind me of something I'd find in So. CA-- tasty, filling and reasonably priced. It's lively on the weekends with several tables doing sake bombs so it's a fun place to celebrate birthdays.",review,Q5dlLCEni_my05az9wIptg,0,0,0 +QMIR_VeLPSOp-d730i5mJA,2012-03-31,PlzOnJG_MrVvO6kCPVPl8A,5,"I am very happy to say that Angela's truffles are taking off here in Cottonwood. I hope I am allowed to say I am a proud purveyor. When they arrived I was impressed by their design and further blown away by the flavor. (Tears in my eyes...) My darling, have no fear, there are people up here who understand flavor, quality and most importantly: Great Chocolate! My beautiful patrons have latched onto these delectable wonders and I am happy to say The Cocoa Palette will always have a place in Northern AZ Wine Country with Bonne Lait! Bravo mon ami!",review,ujDoMIAlFDAP14ebf5Xczw,0,0,0 +IM-9thHqQbBK5tX5MfTzBQ,2012-02-08,AfvArcoRrCIju2GGiItIJQ,1,"I guess this is an east coast/midwest thing because I really don't get it. I'm not a picky eater and I HATE wasting food and money, but I could not finish my plate. I ordered french toast and I was not aware that my french toast was going to be deep fried. Seriously, when I put my fork through it, a piece of fried toast hit me in the eye. My husband was also not impressed with his food. If someone would like to suggest something delicious on the menu that I should try, please let me know because I currently want to vomit every time I see a Chompie's.",review,XXVfsLunIiz3xDeK17aHFQ,0,4,1 +YTJCfo47UHkGVgIsjPRRaw,2011-03-31,X4oFiD03-HIhZsu-aKUSQQ,5,I had a mani/pedi and they did a wonderful job every time I visit.. The place is clean and the specialists are very nice..,review,FSbzWWUImH15i7eLbN_NIA,0,1,0 +h7hr0v3E1ulU2sXNItD5UQ,2011-12-16,GskYdaShicrZ_1dzsH1kog,1,Shocked this place has 4 stars. First off you can always tell if a Mexican food place is good based on the beans and the salsa. Well guess what both suck! Eat at el molino's and you will never come here again!,review,nGvxLe5jdJGbxTYt9XjScw,1,0,0 +E0f8jFeNaL8ARG-vq3apVA,2011-06-13,o12QHoZXFitUgTOXqZLjjA,4,"I love that the airport has a place with fresh, healthy, customizable food! Paradise Bakery has a salad bar (how often have you seen an airport with a salad bar?!), and though they don't have the hugest selection of toppings there are a good number of interesting options beyond just tomato/cucumber/carrots. The bakery section has a lot of tempting treats and a good standard selection of sandwiches.",review,IkC2BKzADqgPlvaac5gRHg,0,0,0 +3XG4-xRNCHPQs2sAYa66pw,2010-05-14,q8vdAmKI2h1eOtoWGYkz7A,2,"I'm torn with Cream. I've been to the usual clubs and lounges in Scottsdale enough to be sick of them, and Cream was something new. I like that Cream is emulating Vegas-style nightclubs, but it's obviously trying too hard. + +The decor: + +First of all, this place is PAINFULLY tiny. I've only been here once, and while it was half full, so it wasn't completely unbearable. But I can't imagine what it must be like when they have guest DJs and other performers in. A tiny place that's packed isn't popular. It's just... small. + +The walls are covered in white (leather?), the tiles are white, everything is white - I get it, white like Cream? I appreciate the commitment to the color but the theme is waaay off. The hard surfaces make the place look cold and very hospital like - I would have liked to see more smooth lines and softness in the design, more flowy like cream. + +The atmosphere: + +The dig the loud music and the techno. I get so sick of hearing the same stupid songs on the radio. I love the change in scene. Phoenix/Scottsdale is so stale in terms of music. This is a nice change. But it's too loud when you can't even put an order in for your drink. I literally had to pull myself onto the bar (I'm tiny, 5'3"") so I could give my order directly into the bartender's ear. + +They also had a really cool entertainment act - a girl hung from a hoop suspended from the ceiling wearing a white bikini. She was clearly talented in her hoop manipulating and was mesmerizing to watch, but like I said, this place is TINY, and there were several instances in which she was inches away from kicking people in the face. And THAT would have been worth the ridiculous cover I didn't pay (I try to find any way not to.) + +The drinks: + +Overpriced and terrible. Maybe the bartender THOUGHT she heard me say I wanted a glass of vodka piss, because that's what it tasted like. + +I doubt there will be any improvements made that will make me like Cream better, but here's hoping.",review,-eIsz3-MIQT6ueiM4MusHg,0,2,2 +HDvCnqIf5twbMb5-eG1EJw,2012-09-12,qSMaUcXdTV_RuxRnba-K7w,2,"Extremely slow service, hostess and manager were both rude. I noticed that 2 tables that sat after we did got served first. + +4 out of every 10 people that walked in, walked right back out once they saw the line. + +We waited 35 minutes for a table. This was my first and last time at this over priced Denny's",review,7aMUGpEAhstdk4ZuH7qOWA,0,1,0 +nn7Q8EAysCr3D9PEqZEgkg,2009-08-05,2s7Nk4IMOqlfR-ZTg5FVHA,4,"BEST FRY'S YET + +Feelin' a little blue, need a doc? No big deal, stop on by... +Forgot to cash in your last paycheck? Pshh, Bank of America ATM AND bank up in this joint +Crammin' for the next exam? Get your coffee fix on your way out + +Food, deli, bakery, flowers, home furnishings, school supplies, I don't know where it ends... + +All I need is a bed and I could live here... + +Oh wait, they sell them here too. + +And all this time I thought they just fixed computers and sold TVs",review,LcWp2WChE9HpqdMEM8D2VQ,2,2,2 +l5oUrgQ190l8CcN8uzd_pA,2010-07-31,-OfjUL0XavsDwNkaLwKNSA,3,"I stayed here in March'10 and thought the place was alright, nothing to rave about but here was my experience: +PROS: +1. Location was good for what I was there for (work) +2. The nightly rates were really cheap (this had to do with my company more than the establishment though) +3. Easy enough drive to/from the airport +4. You can almost bypass Phoenix altogether getting to Scottsdale. +5. Their was plenty of shopping places about a mile and a half up the road (think Best Buy, Target, McDonalds, etc...) +6. A pretty happening restaurant/bar up the street that gets two thumbs-up +7. The rooms were actually really spacious and nice...it was like having a luxury one bedroom apartment scaled down for size (full kitchen, massive bathroom, den seating area & king size bed in a comfortably sized room). +8. Hot tub was rockin' & nobody gave us a hard time about having glass bottles out there. +CONS: +1. Once I checked in, I had to lug a ton of stuff over to a room in the one of the back buildings and I couldn't see my rental car (maybe I'm weird...but I like to have my car close by) +2. I unpacked and got situated to find that the internet in my room wasn't working (Must have!), called the front office and they had to move me to an entirely different room (mind you I just unpacked...AGH!) +3. I ate dinner a couple times with co-workers in their lounge, & while it was good...it wasn't great, so we all ate at the restaurant/bar up the street the rest of the time. +4. Be aware, you stand a decent chance of see spiders looming around...so you have been warned, but otherwise it's real clean. + +I'd stay here again pending that I got the same room rates that I did last time, but it's my understanding having talked to the girls at the front desk that we got booked at unusually low rates. + +***Don't get sucked into any of that ""time-share"" crap...they don't push it like some other places I've been...but it's NEVER a good investment***",review,0KuR8Sy6NKE46MZf4O6MBA,0,1,0 +xdwPHc25l7_roZ9Kfea13w,2008-05-20,KEYyIpt2maY84dDfK4Qx8g,4,"Not much to say about Lola's. Its cute. Its quaint. And the food it utterly delish and authentic. Oh, but bring a sweater....they usually have the air on ""Polar Bear""! +The only reason I didn't give this place a 5 is b/c of the freezing temp and the community seating. Doesn't bother me....well, maybe just a little. Can be a bit noisy and bad for private conversation. + +Bon Appetite!",review,4IxLt4QvCsJEdaNvH9QApw,0,1,0 +UKgSs_SJzW9fu4CwhIV1yA,2007-09-22,IQECTxd6Xeh48-fQzRD5fQ,3,"Firesky Resort is a marvelous place to unwind and enjoy the warm dry evening air and fire-lit torches. Whenever I have the opportunity to stay in the Kimpton Hotel Group's locations, I always know I've made the right choice. The hotel was beautiful, hip and inviting. + +I gave them three stars because the rooms were a nice, but not fabulous, the amenities of L'occitane products definitely helped. The restaurant Taggio was fine, wasn't spectacular and definitely was the part of the hotel which was least memorable. + +The staff was friendly and helpful. I'd stay here again, but with the expectation of enjoying the wonderful pool/cabana area and leaving the resort for dinner. Scottsdale has so much to offer, what was I thinking....",review,-ONVaeQC7HOPD2FicuDNng,2,1,1 +6fR4ncWEfdMLk9AacDsRzQ,2011-10-25,qek2cMLdOgShpXhSNdXq6g,5,"Well, it's fresh, and it's easy. Perfect words to describe this cute, clean little store! This was my fave F&E in Phoenix because it was a mere block and a half from my place. I STILL miss it, and I moved away from Phx over a year ago! I popped in here several times a week to pick up staples, (it was always an adventure to see which prices had been marked down-- they even have a section in cold foods where they mark older stuff way down). I appreciated their little bundles of veggies which were sold in just-right amounts (as in, not so much that some of it will end up going bad). This market was also great for soups (their brand was my pick, although they have a selection of major brands as well); it was also my go-to place for prepared healthful lunches perfect for work (like the F&E pre-made burritos and pasta dishes). + +Check out frozen foods too-- there are reasonably priced items like tempura, and special organic seafood dishes I never found anywhere else. + +I also liked the casual setup of the checkout area, with the option for a cashier or self-serve. + +And...wait for it... I just found out they are opening at least two F&Es in Sacramento!!! (okay, that won't likely cause much of a stir with the Phoenix crowd, but I am so excited they'll be open in my area!)",review,Vx0dDvBvRYXcn5dgnpzvUw,1,1,0 +0le8kj4gIHe9aZ1NfS2_Ag,2012-12-27,WgbQbDWrOe_fSAUP-y4mlw,1,sslowest drive through ever!!!,review,g5hVihQ30Nn-XoswvlvMvQ,0,0,0 +DcrM4hwDcU2G6vuh2cnaYQ,2011-08-31,5w6DSnvrq74jGL-oIxRTsg,5,"The food really is exceptional. Its like the chefs create these perfect little bites, and they literally are bites, of food that are so interesting to taste. + +I'd recommend the sampler dinner. I want to say it runs about $40- $50 but its worth it as long as you like what's included. + +IT IS EXPEN$IVE. BUT the BF and I have been dying to try out this restaurant due to all the rave reviews it has been receiving on Yelp. LUCKILY a Groupon appeared for NOCA and we jumped on the opportunity. Turned out the fab deal was only marginally helpful. Even with the Groupon it was still a $150 dinner (plus the cost of the groupon...). Granted we did get a bottle wine (but the cheapest we could find), espresso and a french press cafe... It's like you analyze how much everything costs as you're ordering and are still shocked when the bill comes- I hate that. + +Our reservation wasn't until 8:30pm at night, no big deal. The restaurant was still PACKED! AND people kept coming through the door! + +It is not a large venue. And the tables are CRAMMED, uber close together. I know that the four-some sitting next to us are going to Isreal next month, right after their family vacation to Minnesota....",review,huE7A2WBkTJTyEr2K8Owzw,2,3,3 +nXKwzVKJCtIGd4HxXgjdnQ,2007-07-20,UTTTcbb-p-RmWtG5UGpSoQ,4,"Saketini opened not too long ago, so they're still having grand opening specials. Get 'em while they're hot! + +I haven't had their food yet, but I have partaked in their fantastic drink specials. They have $2 well drinks for happy hour. Woo hoo! Plus they have a reverse happy hour too, which scores them another star. Any place that offers late night drink and food specials is alright in my book. Once I try the food, I'll be back and I'll update the review.",review,0CMz8YaO3f8xu4KqQgKb9Q,3,1,3 +pa_Ft6pLLWo-w_iopBsu0g,2008-06-15,DuPspPuJcLwzgFOrVVQmCQ,4,"Golden Panda has a special place in my heart; the part I clog with orange chicken. I'm sure its not the most authentic Chinese meal, although i don't know, but i consider it the best Chinese take out in the area, solely based on this one item. + +Although I get the same thing every time i have on occasion tried other items that people with me have ordered. All the chicken entries are good, the same lightly fried chicken just different sauces (general tso is my 2nd favorite). The beef dishes are terrible. The seafood is just ok. The won ton soup is really good as well and is usually the second thing i will order if orange chicken isn't enough. I cant remember if the pork is any good but the won ton soup has pork in it so i would give it a shot if you like pork far more than chicken. + +The owners and servers are a bit jaded by the high school students that frequent the place during lunch but will warm up quickly if you go in there a few times. Food comes fast by the way so make sure that when you get take out that you let them know if you will take more than 5 minutes otherwise it will be done and waiting for you after 5 minutes. + +The store has few tables where you can eat but for the most part is a takeout/delivery based establishment. However if you do eat there they have Barq's red cream soda on their fountain.",review,xx2j7XRWLFN7QavS5jcbFw,1,2,1 +oGZIo6Pim2C3NavFDYExYw,2007-03-28,V7I6T6jIUcDFgl_tKO1xdw,3,"Having been to about ten 24 Hour Fitness locations here and in California, this location is probably one of the least impressive. + +While the staff is friendly and the gym itself is clean, the facility is small and on only one floor (note that it is a 24 Hour Active, not a 24 Hour Sport), and has an industrial feel - like it used to be an old Costco. Weird. It's never really all that busy, so waits for machines or weights are minimal. Gymgoers in North Phoenix will be happy to know that a new 24 Hour Fitness Sport is opening on 43rd Ave. and Bell in May.",review,4_YfcfHkCem1onJFkItxjA,0,1,0 +AhB6sqGJY-S4hqyk4Ta8vw,2012-06-12,PGxSH87ZPZW3lHsQA5mJtg,5,"This is my favorite public pool in the entire valley. It's super cheap - 2.25 for adults, 1.00 for kids. You can bring in drinks and snacks as long as they are not in a cooler (weird). They have a snack bar. It's very clean. Oh and the most important part, they have a lazy river, two big water slides, a whirlpool, toddler play area with more slides, basketball, lap pool, diving boards.... I think that's it. It's quite a drive but it's worth it.",review,wFweIWhv2fREZV_dYkz_1g,4,3,3 +s1dex3Z3QoqiK7V-zXUgAw,2011-07-10,Y3z--Y7xmtjUX-5JTLyndA,4,"I have just relocated to Scottsdale and eager to find a great wine bar and/or restaurant with a great wine list...and 5th and Wine was the one place that everyone recommended, so I was eager to check it out! + +I decided to check it out one night after work, and asked a few co-workers for some delish food choices to try...the bruschetta was the one to try! + +I loved the ambiance, very social atmosphere, nice bar scene and small tables, but they also had another room for tables further away from the bar which was more chill and quiet atmosphere. I was quickly seated at a nice table in the more quiet area, and could scope out the scene. + +I started with a delish glass of Charles LaFitte - Brut France sparking...which for $9 was a deal and refreshing! + +I quickly scanned the menu for the bruschetta and my mouth started to water with the selections. I opted for the prosciutto/fig/marscapone bruschetta and the standard mozzarella/tomato/basil bruschetta! Both were totally delicious! The bread was lightly toasted and a bit soft...not like your typical ""crunchy"" bread bruschetta...which I actually enjoyed more than I thought I would. + +I ordered the Beef Bourguignon Julia Childs' ""Beef, Wine, Bacon, Mushroom Stew"" over egg noodles...for $16.96...again, a total deal and totally tasty! The beef melted in my mouth and the mushroom and sauce was hearty and flavorful! + +All in all, the meal was wonderful, and the service was great - very attentive staff - Jonathan, my waiter, was super personable. I also met Scott Yanni, one of the owners, who came over to see how my meal was...and he was very gracious when I told him that I just relocated here and was very happy to find his restaurant as one of my new favorites! + +I will definitely be back for more of their great menu and tasty libations!",review,cjhSTaDI5XffCXRJsXPmSQ,0,0,0 +O4jXtRnS_R9SyM7ckMhFmg,2012-08-27,JTDnd6DHhZztuBQTkk5oVg,5,"Just came from there as part of my trip down the Apache Trail. My 9year old daughter loved it so much she insisted on stopping in again on the way back. The town is really cute with tons of photo ops. We picked up a few fun souveniers and some prickly pear fudge. We did this in 100 degree temps and still enjoyed it. For those curmudgeons moaning about this being a tourist trap, RELAX....the kids love it. This 40 something mom loved it. It's free to just walk around. But definitely do the Mystery Shack. Weird and fun. I actually got dizzy in it.",review,zTgFzcfAUuUkDWix6FKYqQ,0,0,0 +LYLGCIqNQQrpMwOxJ1hlrg,2010-04-27,LejfQ5QUUn_DsyqjxCT-HQ,3,"I usually get the Arizona Smashchicken or the Arizona Cobb Salad. Both are always delicious! Sometimes they are really spicy and other times not so much. I guess it depends on who is making it and how many jalapenos get in there. The chicken is really flavorful, unlike a lot of other chicken sandwiches/salads where the chicken is bland and adds nothing to the meal. I think I am the only person I know that isn't a fan of the Smashfries. They are generally tasty, but I would far prefer regular fries. I really like this place, but its a little pricey for what you get. Lunch for two will probably set you back a least $20... its not too bad, but your $20 will go a lot further other places.",review,ajEWtu_h76FDdEDxwdTWmg,0,0,0 +Xo9Im4LmIhQrzJcO4R3ZbA,2012-03-05,Hop9dDEysATHyBwSgz_Yyw,5,"This place confirms why ""hole in the wall"" places are the best places to get food. Its virtually impossible to find the place but once you smell the aroma of home-cooked Mexican food, you know that you're there. Usually there is a long line; however, their service is quick. With the combination of their swift service and decadently savory food, Rito's is a staple Mexican food stand that everyone has to visit when in Phoenix. I always have a green chilli burrito and haven't quite ventured out to other things on their menu, but I have never heard anything less than positive about what they have to offer.",review,ZirtwB_QHFUGX_7x02jf5Q,0,1,0 +CWoXwnoxdFihXB1KhH9goA,2010-11-20,nDMBoH-RR-dwTetO6ZW3qw,1,"I am furious. + +In the last 12 months, I have had at least scheduling issues, from them calling me at 8AM on a Saturday morning (my 1 day off) to cancel my 11am appointment to last Saturday, when I went in only to be told someone had messed up, and actually booked me for the NEXT week, and despite me driving all the way out there at 11am, they couldn't get me in until maybe that evening, and then not with someone who had experience in deep tissue/medical massage. I was irritate and ready to ask for my membership refunded then, but Ashley the clinic manager promised me that they'd give me my next week appointment free of charge, and that she'd personally be certain there were no more issues. As I literally couldn't turn my head to the left due to pain, I took her up on that. BIG MISTAKE. + +Yesterday (the Friday before my ""correctly"" scheduled massage, I went out of my way to call in and confirm my own bloody appointment, to try and avoid last week's debacle. According to the woman who answered the phone, it looked like my schedule therapist was actually scheduled off, but she went to talk with her manager, and came back to the phone telling me everything was ok, and that she'd call with any issues. Then yesterday evening, I got ANOTHER confirmation call from Massage Envy, confirming and reminding me of my 11:30am appt on Saturday with my preferred therapist. GIven that I've had 3 migraines this week (versus my 0 or 1 when I get a massage the weekend prior), I really absolutely needed to get in, so I felt more confident. + +Well, I was just woken up at 8am...again. On my day off...again. To explain to me that, big shock, they messed up my scheduling again, and that apparently, my therapist was off today. Despite Ashley's promise of it not happening again. Despite me being pro-active and calling to confirm. I am sitting here in pain, so furious at this repeated treatment that I can't even go back to bed...and the best part? They don't even have a manager on duty I can complain to. + +My treatment at the hands of the booking/front desk staff has been any thing BUT relaxing. I continue to walk out of there frustrated, angry, and occasionally in tears. I know they say Fool Me Once, Shame On You, Fool Me Twice, Shame On Me, but I was trying to give them the benefit of the doubt. I'm pretty screwed for today and the next week, but luckily, an Elements place with a similar concept opened recently in the general area. At this point, it literally cannot be any worse than massage envy. As much as I love Talisha and Aisha as massage therapists, getting a massage should feel good, and not like you're just a number to them, not like you actually have to spend more time trying to get a damn appointment than you actually get to spend IN the appointment.",review,rR5W8Bj-IGu6sw1_1v4m7g,2,9,0 +_TWT58PWunYIyPgpz1fuog,2010-09-13,YCeTzxmQDiBRnqZGATtPpw,2,"Checked this place out today for lunch as a possible spot to watch NFL games. Took advantage of their lunch menu and got the sliders. I get my bill and $2.50 is added to my bill for a beverage. I was drinking water. Apparently, you have to buy a drink to take advantage of the lunch specials. I was not informed of this and was pissed. On top of that the sliders were mediocre at best. These specials that have these restrictions drive me crazy. A heads from the bartender about the beverage deal would have been nice. When I questioned the bill, the original bartender who took my drink order said, ""she didn't tell you?"" I'm not going back to this place.",review,B24c_xt-kU-GpH42ZWlksg,0,0,0 +IbhWOItXWvpZvnx3-USiLw,2008-12-02,KMZSU1O5LzMWiuziuFjicQ,5,I was very excited to find this place as you will be when you walk inside and find nice clothes and accessories for even nicer prices! There are several locations throughout the (east) valley. Treat yourself. You will be happy you did.,review,8ZwIPH1FTDjte17bXVIspA,0,0,0 +yR6kgWuMUNG6fjOrzzhfeQ,2012-05-16,oY58TU4ye0FdKYMRkFOiWg,4,"Back in town and back to our favorite hotel in the area. Right across from North Mountain preserve, where we love to hike in the morning, or a 10 minute drive over to the Squaw Peak area. + +Love the ""falls"" pool area - but if you like quiet, there are other pools - we just enjoy the music and the cocktail service. Different Pointe of View is supposed to be an awesome restaurant at the top of the resort with amazing views, but we usually opt for local, regional restaurants... Via Delosantos, Aunt Chiladas, Mi Patio are some of our favorites. + +Only reason for 4 stars this time is that I used Hilton Honors points for our room and I am a Diamond member.... not impressed with our location at all. We love being up high in the cliffs where you have a view, and this time we overlooked the top of a building. I was bummed... especially since we are return guests. (didn't complain, however...not my style). Next time I will request a better view. + +Have to say, however, that upon arrival, we were assigned a room with a group standing right outside on their balcony.... loud, smoking and arguing. We immediately called the front desk to ask to be moved and they arranged it right away, which was nice. + +Every time we visit the same people are working in the pool area - and we always feel welcome. Excellent service and friendliness. + +Can't wait to go back.",review,0AZPm9X5V-and7oT-Lbtwg,0,2,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-08-16,IVVf4NUgklkQUxV2la2NgQ,4,"I went to this place with a family member upon their recommendation. + +The salad was amazing! I forget exactly what it is called (cowboy chopped salad I think?) . Firstly it's gorgeous (comes in rows of the ingredients which are beautiful colors; arugula, tomatoes, pepitas, dried currents, chicken, asiago cheese, and dried corn for some crunch) Then when it gets to your table they pour on the dress (a creamy dressing with a slight basil taste to it), and it all gets mixed together. + +I believe it usually comes with salmon instead of chicken but we ordered ours with chicken and it was a great fit, I highly suggest it. + +The rest of the menu looked amazing too, but I'm not sure I could go there and not get the salad. So I suggest going with multiple people, splitting the salad and then splitting another entree. + +The decor of the place could probably use a little sprucing up and it's a bit on the cheesy side. + +Service wise was unfortunately not the greatest experience. It was a slow time and we had a hard time getting our bill or being asked if we needed anything else. Thus the deduction of a star. But I would still give it another try just for the food.",review,g-p9oxVKCSVfM-SNAZE93w,0,1,0 +cInzGnaFZ3EIItvFXl1MvQ,2012-05-29,G95Bg8aLINvEj43DZApmXw,4,"This place use to be a Wendy's for years since I lived down the street. Still, they made it look nice on the inside (they have a drive thru!) and they even had a man playing his versions of classic rock songs on guitar which was nice. The Hostess was also our server and she was super nice (Go Erin!). +When a girlfriend of mine and I walked in we saw the specials for the day and when I saw avocado curry I was sold since I'm addicted to avocados. We got the lettce wraps which was good (wish it didn't come with iceburg though) and got it simply because it came with I believe their sweet and sour sauce AND the peanut sauce. LOVE peanut sauce. +From what I saw, they had a full bar. Beer selection was good, nothing on tap though which makes me a sad panda. I had to order the thai tea which was very good and tried the thai coffee, also good. +Avocoda curry was amazing! Though when I got the bill I was sad to see that it cost $18... I understand that when they say it's the special, it means that they don't serve it on their everyday menu. +I'll most def be back, very good place! +P.S. Came on a Monday night.",review,GZdf2mPWMN_f1HeSkCtYaw,0,1,0 +OOCLVeqqMFfSnKa7liv0Kw,2011-10-20,o1Q0IMCgEI4P13SWiZUXrQ,1,"Decided to give Tempe Marketplace another try after reading recent reviews (hoping that they had improved). I had to ask myself if we were visiting the same place. The traffic and parking situation are still horrible and the loudspeakers in the parking lot are unacceptable. The JC Pennys and Targets are crippled versions of their regular stores at other malls. The stores here all open too late (11am, REALLY???) to be useful in our uber hot summers (except for a Targets that opens at 8am). +Even though I am a Tempe resident, I will continue to choose the Riverview shopping area on Dobson over this mish-mashed monstrosity.",review,LX3cTVaS8f2UF0Uuafsfug,0,0,2 +Y-5knOy4atrpy-TJU7gEfQ,2011-08-16,VA9vhFnVTB-qYWkj2dKtGA,3,"This bar is ok to hang out at. I think its sort of frumpy. The drinks are fine, I've never eaten there. They have PBR there. + +Lots of local people mostly regulars. Anyone can go there an fit in there. I have been a few times but it's not a place I spend a lot of time.",review,O3huqF3nBeWP9Zd6NmCAaQ,0,1,0 +Nj6ITW0Zhl7LpovGIH6SAg,2009-03-03,41dG-J3dwBuER-pOKiQTLg,2,"This location is a glorified garage sale. It smells and nobody speaks English. Children are running free pulling clothes off racks and smashing into people. + +If you are lucky, you can find shoes, but I have never found jack shit for clothes. + +Go upstairs to Marshall's and spare yourself.",review,MWt24-6bfv_OHLKhwMQ0Tw,8,9,11 +I_mPpc15e_97LXM1DiJVaA,2012-09-05,6E_RdVKdk-LMp5BoB9mJ4g,5,"This location opened up just 3 weeks ago, and offers high quality, natural products for mainly cats and dogs, although there is a very basic small animal section. The emphasis is on foods that are more nutritious, healthier, and that don't have corn or soy in them. There is a large freezer section in the back with a good selection of raw food meals. Also, there is a plethora of treats and toys for your furry friend as well. The small animal foods section has a few small bags of hay, some treats, pellets, and toys. I wasn't too impressed with their rabbit selection, and they did not offer high quality brands such as Oxbow which is a bit surprising since they have so many high quality dog and cat products. + +Jill, the manager, was very enthusiastic and is very passionate about providing the best products for pets. She showed me various treats, foods, and toys, and provided a lot of educational material on dog nutrition and health. She provided a free sample of some nice grain-free dry dog kibble which is highly recommended on dogfoodadvisor.com, which I appreciated a lot since my dog is a bit picky with the food he eats. This is definitely a place to go to spoil and pamper your dog or cat!",review,uZbTb-u-GVjTa2gtQfry5g,1,2,1 +Bc4DoKgrKCtCuN-0O5He3A,2011-01-01,VCZYX24hy6kYAGKgxY7twA,5,"This is the best ice cream I've ever had, bar none! I had the salted caramel, and it was wonderful! I felt like I was 7 years old and enjoying my first ever ice cream cone. I also love the decor of the shop, the braille on the back wall is so cool (although I do wonder exactly what it says!) I also bought a pint of their ice cream at Whole Foods, I love Sweet Republic and everything it stands for! Totally recommended!",review,PRtRbjwrsz-c4VtYaAOh0w,1,1,0 +TfTlOE6h9E9o34dEkw9L_w,2011-04-08,ZAOfTFuQ86oQ_Rv5lYwzFw,4,"We went to the Science Center for their body exhibit and then walked around to find something to eat. We chose The Rose and Crown because it was close, not too fancy and the music pouring out was great. We ate out on the beautiful porch of this amazing house and although we don't drink, we were welcomed and enjoyed the experience. I asked the waiter for his dinner suggestion and went with it (fish and chips), my husband ordered the shepherds pie. Both were quite delicious. I even took the time to use the restroom and to see the inside of the restaurant and enjoyed the ambiance throughout the pub. +I will definitely be back with friends to enjoy again.",review,kYgPm0uUJo7cO94b84qBog,0,0,0 +j7XuypdW_w935NhjbvKPQw,2012-08-02,bGgmdMteBYZY_mQtSWxpDw,5,"This 5 star rating is mostly for their boba! They are cool about how many flavors I put into my boba (usually about 4!) unlike other boba shops that only allow like 2 + +Their ramen is pretty good and decently priced. However, I don't like coming to this place much ONLY because I don't like coming out smelling like an Asian restaurant.",review,y2ClTl6I-utHQ4Les8zGTQ,0,1,1 +ObYf1kZVWfL8NocxUwGJKg,2009-05-03,TMAUfoOs-EoKm3NhAyGvUQ,4,"Just went tonight. Was looking for some late night Mexican food and atmosphere a step above most things that are open this late and found success. + +This place is definitely trying to pull off cool and I think they do a pretty good job of it. Their expansive selection of Tequila, enhances the mood they set out to create. + +I do not like that you had to pay for chips and salsa but the food was pretty cheap for how nice the restaurant was, so I think it evens out. + +They might charge for chips because it's the kind of restaurant where you could spend several hours drinking and if people ate chips the whole time that was happening it wouldn't be profitable. I say this because their alcohol is a good deal. 16 oz. Dos Equis for four bucks on tap and it wasn't happy hour! + +This place is a balance of modestly priced mexican, drinking and nice atmosphere. The food is not amazing but it's good, and with the atmosphere and wanting to eat at 11 at night this restaurant/bar is overall impressive. (If weren't for the late late night aspect would probably only give it three stars)",review,1IN64kMGtO88yd3r6iUV6g,0,1,0 +CFaRVxsnN4Zjf28cbORKIA,2006-08-09,4gxyGvXlf-nXKS8qqSqtmQ,4,"Via Delosantos is one of the few places in Phoenix that a vegetarian can get a good Mexican meal. Neither the beans or rice are cooked in lard, which is hard to find in this town. The chips and salsa are premium, just watch out for the fried potatoes and such - very greasy. + +Thanks to Philip's illuminating review, I hadn't heard about their health code violations. It's something I'll keep an eye on in the future though... if they take another dive like they did in 2004 I'll keep my distance for a while.",review,rPGZttaVjRoVi3GYbs62cg,0,1,0 +3E_toMWSUCuhRJzG1eml8Q,2012-09-01,mKMS_fetps3GjFtDAcCY1Q,5,"I really love this place. I'm not sure why there are so many mixed reviews... maybe what they ordered? I always get the regular size custom burger... blue cheese, mayo, lettuce, tomato (and sometimes bacon). Simple and delicious. The rosemary fries with Smash sauce are also amazing. The only thing I didn't care for were the fried pickles... a bit too salty.",review,RNoMJJwCVz8AAR-usCvYUg,2,2,0 +0UWfvm0ah-8DVSm3nkbsMg,2009-03-05,kDCQvdtLbV3dnc5Ny-IUVQ,5,"My husband and I LOVE El Metate... we joke about putting a line item in our budget for this place we eat there so much. Their food is delicious, they are family owned and operated - always friendly. +Their hot sauce is to die for, both green and red. It's possible I like El Metate better than Amados!",review,zCCuNgxv3C9TCKqdXRdTZQ,0,0,0 +IdnYOlL9aDfMu_S2kcaUkQ,2012-11-15,OQhXgCGbH3W6kS9q-_DusQ,1,"One hour. That is how long we waited after ordering before we decided we would rather eat anywhere that wasn't here. A crushing, impressively underwhelming experience in lack of service. + +We arrived, found we had free valet parking? With a teensy parking lot, this works, thank you. A good selection of indoor and outdoor seating? Also a plus. Setting expectations and/or taking care of waiting customers? FAIL. + +On a beautiful AZ autumn morning we came here (tho we entered Rockerij). We asked to be re-seated outside because inside of Rockerij is dark as a tomb and had loud, conversation intruding, music. We were reseated by the fireplace, and a waiter came over shortly to take our order. Bam. So far so good...or so we thought. 30 Mins after placing our order, I ask another waiter to check on the status of our food and he cleverly asks about what we ordered (exactly)...so we think it is being taken care of. 40 MINS after placing our order, I have still only had my coffee refilled once...and had to flag down another waiter to inquire about the status of our food again, because our actual waiter is nowhere to be found and the previous ""drive-by"" waiter never returned. A few mins beyond that, this guy actually comes back and indicates that our order is nearly ready and should only be a few minutes longer. Shortly thereafter OUR waiter stops by with comments of: + +""I don't know why it's taking so long..."" +and +""I put the ticket in right after I took your order..."" + +So...as a waiter...maybe it might be part of your job to check on the status of an order say...15mins after bringing it by the kitchen? Perchance? What do you think? + +FIFTEEN (15 == few?) minutes later, we still had no food and I'd had quite enough. Out the door we went. + +On a comical note: As we were outside (another 5 minute wait because the valet had our car either parked in Egypt somewhere or tandem?) our waiter came out to find us to let us know that our food was ready if we'd like to come back inside? + +Oh R E A L L Y? The Clue-Delivery Train will be visiting you shortly. Facial cues you may want to look for in the future are: +1) the furrowed eyebrows +2) fuck-you facial expression +and +3) curling fists + +It seems that we are not alone in this. Courtney W.'s review (10/14/12) is representative of what we experienced. + +I am dumbfounded how they have any good reviews. There must be a serious drought of sit down restaurants in this part of town, because this crap would never fly where I live. I cannot tell you how much I am looking forward to NEVER COMING HERE AGAIN. + +P.S. They own 3 restaurants apparently: Richardson's, Rokerij, and Dick's Hideaway...all right in the same area (Rokerij and Richardson's being attached). + +P.P.S. They all serve the same menu. It is NOT amazing. I have previously been to Dick's. Yes, it is good. No my socks did not come flying off. + +P.P.P.S. ProTip: Drive down to Central Phoenix and go to Durant's, Portland's, Switch, or Fez. All of these places have exemplary service and food to match.",review,vKZSrW5pXNHZrl6_Vq8xyw,0,2,0 +1mhywrdsgdqJM3OGZIpVtA,2010-03-01,cNUzXleO__xO8Ztpg61ixw,5,"Love the shows the promoters bring in. Cozy spot where I've seen Owl City, A Fine Frenzy, Landon Pigg and more. Plus they are generous with the Malibu Rum :) You will need to visit the bar to get your own as I've never really seen cocktail servers. Oh well... + +Atmosphere is laid back, chill. A large patio. And yes, the Shaker Room. The hot, shake your stripper ass, place to be.",review,OksbhhgC71Ary3zNHMypeQ,0,0,0 +ihMUU9D2mcgrp7fi8lmqJg,2012-09-21,GwigThV8Ww46QzpA36gucQ,5,I really love the chicken and how it already comes with pickles o. The sandwich ... Fave.. I also love the buffalo sauce very addicting,review,vCvtdiwIR52fnByQH7ciZA,0,0,0 +XWvht_1ZLdK7EHJ3jo4q0g,2011-06-16,5e20T-b8vYqXZZn03Gu8Pg,2,"four star average? +Why? +This place is a chain restaurant with a silly name - the family made me eat here and I will tell you this - the only thing four star here are the sexy tall young fit waiters.... everything else is weak and salty... + +At least they serve bourbon - but seriously the cocktail menu was silly and the preparation by the untrained bartenders was obvious - silly rolls with honey butter oh that's cute - + +the food was applebees meets outback - one of those taste of the world menus - my dad was silly enough to order the prime rib - it looked like a swanson frozen dinner - poor dad - IT IS CALLED WHITE CHOCOLATE GRILL - what does that mean - oh it means we are silly and have duped people into thinking we are a trendy restaurant. + +So sad - seriously the service is lovely and attentive the food is better prepared and home with more flavor and less salt - i guess the real french fries - the string kind were yummy but I needed to up my BP meds. + +oh and a funny decor thing - they use rolled up, stacked utensils in napkins as sorta sculptural decor around the restaurant - sorta weird",review,ZXZere7_WFGPkAhAaDqsmQ,5,7,6 +lVHtVCyFJOqAH0ltn7pLuw,2009-05-31,CYhyVxG332YrY7_J6xIv5Q,4,"I am beginning to be hooked on sushi. Two years ago, I would have told you that sushi was just wrong....but now I am wrong :) + +I went to Sushi Eye on Friday with my wonderful and lovely friend. (You know who you are) I was excited to go there, especially with the rave reviews. At first I was a little put off since I thought that our server was a little bit of a moron with a splash of attitude. I ordered an iced tea and before it took her over ten minutes to come back so I could get some pink packets to sweeten it up. (And that tea was dark!) + +After that little slip, everything was perfect...(though my miso soup didn't have any seaweed in it...which is odd in my book) I had the Spicy Scallop and the Philly Roll...both were awesome! And my friend's California Roll with Asparagus was the best. I will have to order that next time for sure. + +The sushi chef was very nice and the other server there was more attentive. I loved the menu and it had a lot to offer. (And since I am don't know a lot of my sushi yet, I liked it that they had descriptions) The place was clean and I really liked the layout. I will have to go there again and have some sake as well. :)",review,ca2Sa9Enqg2GlWFQ95p8bw,1,2,1 +BW-64ad2ikPu8M48nV69wQ,2011-05-08,HhhdKGytEu5mXlM03xM1pg,5,This place is great!,review,0SH_57eHXYWuGztkRxC9Vw,0,0,0 +fHGb1TiZbYAFxxwADhIYQw,2012-01-21,SnRf2nyxAmfm7MigNtcCNg,5,"We traveled from Anthem to find this little Turkish heaven. The drive was worth it. +Loved everything about this place from the service to the food! Definitely be back.",review,b0iJnmLsIfnPI3VwyY4Ulw,2,2,0 +8HQ8clouLGgee99KkR4vXA,2012-08-04,aVOyYWa_xkJXRbILFlFKOA,5,"This place is great! I really appreciate the extreme friendliness and kindness of the employees. Best customer service. Also, the variety of favors is fantastic!",review,9HhwtAe8mOQiI8_hXQhtXA,0,0,1 +FURgKkRFtMK5yKbjYZVVwA,2012-10-01,RM_T6mXcA60AdIJDQekOHg,4,"This place is very cool! I went here after work with a sorority sister for drinks on a Friday night. Ended up staying for like 3.5 hours. + +Fantastic atmosphere with outdoor and indoor seating. Lighting is dim and intimate indoors with rustic seating areas and large booth perfect for groups getting drinks together. The outdoor patio is sectioned off in a covered area with tables and smaller seats while an uncovered area hosted seating for peeps who rode their bikes in. + +The drinks are pretty yummy. If you're into fruity, girly cocktails there isn't much to choose from, but for a more mature, grown-u beverage, you're in luck. Hit the happy hour (which sadly ends at 5pm). + +It gets a tad loud and it difficult to tell the wait staff apart from the customers because they're all in street clothes but they're very attentive and sweet. We ordered the fondu plate and it was great. Pretzels, sausage, apples and the cheese... perfect for sobering up a bit from those yummy cocktails.",review,Ypz7hxOCnrg8Y8vxHJU-sQ,0,1,0 +s1dex3Z3QoqiK7V-zXUgAw,2012-11-06,PhIc4XJgZzrHuWBrQbnOEQ,4,"This is one of those places that I always seem to forget to review. I guess maybe because it seems everyone already knows this place is great!! + +The important details you need to know: +- Live music sometimes +- Great happy hour food specials +- Most wines (3/4 of the wine list) is $5 a glass before 6pm. Use your Yelp check-in offer to drop that to $3. YES I SAID THREE DOLLARS!!!!!! +- Great bruschetta, burgers, and everything else. Chef's specials are often enough vegetarian so that's nice for someone like me +- Great back patio that isn't super obvious to a first-timer that it exists +- Clean bathrooms! You know all of the above doesn't matter in the slightest bit if the restrooms are nasty +- Wine specials on the 5th of every month. Now, I have never participated but I think it's like $2 for a specific wine. But since you can use the Yelp check-in offer, I haven't bothered since it's cah-razy cheap every day!!",review,XTFE2ERq7YvaqGUgQYzVNA,4,5,1 +uKSX1n1RoAzGq4bV8GPHVg,2011-04-17,9rXM4TFIt5P_FcqeNo1bMw,2,"I love the outdoor space at this restaurant. We had a very friendly waiter serve us. We started out with a delicious gin cucumber cocktail which was so refreshing. For an appetizer we had the chicken arugula flatbread that was tasty but definitely could of used a bit more flavor. The caesar salad made with kale was so salty that we were not able to eat much of it. The romaine salad was okay, nothing special. The entree, halibut was so dry it was totally inedible. The roasted vegetables were just so-so. I ate here in December and loved it but this time I was very disappointed. I am in no hurry to return, except for a drink.",review,ITunAJbCR-1rBPrXfzOiRA,0,1,0 +Zh_y9AmSfWZpR2JB9wye-A,2011-01-22,foq4A5JLCEmboYcpqWbUiQ,4,I had dinner at the True Food in Scottsdale on a Thursday a couple of weeks ago. There is really nothing not to like here. the restaurant itself is great looking and will be wonderful when the weather warms up as all the walls are glass doors. I thought alcohol was well priced or least the wine was as you get glasses starting at $6. we shared the lettuce cups as an appetizer and they were quite tasty although messy to eat as are all the dishes that use lettuce as a tortilla. I had the puttanesca with a twist--no anchovies--instead with ahi tuna--it was quite tasty and was a right sized portion. My sister in law had a tofu curry--that also was quite flavorful--even though I am not a fan of curry and can take or leave tofu. head the chocolate cake for dessert which was just right. I will definitely go back-all in all a pleasant evening.,review,uWeMgQMWd_dxqSxPpnd-qw,0,0,0 +6dqDSEMDqTA-wNOdWtshUQ,2012-10-28,FpvbUQaIoNwH2zcfBQ7QdQ,5,Wow these cupcakes were amazing!! The frosting was picture-perfect. I tried Vanilla Salted Caramel and Pumpkin and both were so good! The cake on both were super dense and moist. Vanilla Salted Caramel definitely was the best of the two!,review,ItLnXJx4M4dM4gQFJLS8Xg,1,1,1 +bzDs0u8I-z231QVdIQWkrA,2010-07-28,8ELy-3wYplMcVGEJhWhqzw,4,"If only it wasn't all the way up there... i'd be on it like a lush at the FEZ happy hour... margaritas, martinis oh my! Anyways that's how I would describe my dinner outing to Los Reyes de la Torta with my best, Sara V. + +She thought of it and I bought it... so off we went after work on Monday night to Los Teyes de la Torta for some Torta goodness. The only Torta I've had prior is at Gallo Blanco. and they Ribeye there is delicious but here we were at Los Reyes and the menu was huuugggge! Sara V. was hungry so we started with an app, the chicharron quesadilla estilo del rey which is with queso, pico, onions, and jalapenos. I got horchata as a drink, and Sara V. got mango juice. Felt tropical and I guess it went with the feeling of mugginess outside. Anywho, the quesadilla was big, and really a meal in itself. For our entrees we decided to split two tortas, they were the Arizona Torta and the Mexicana Torta - steak, sauteed onions, jalapenos. They were both big in its own right, half a torta is filling on its own. + +Sum up our experience, the tortas are really good, altho i can always pass up the Mexicana and try something else. The horchata was alright, nothing phenomenal unlike La Condesa which has a very interesting and really yummy Horchata. Not a big fan of Mexican mangoes coz personally I don't think that they're sweet, Filipino mangoes are still Queen! The quesadilla was yummy, liked it very much. I think it's proof that when more than half their clientele are Latinos is that it's a good torta shop. The dinner was not pricey and I had leftovers but really liked it and will come back soon!",review,ROr4DQ-gxlfUKmiDC-qSEQ,2,3,0 +GIGI8bJfN6HyPzmEW-QqjA,2011-07-05,PbpmnNUaILWvEtHVuXFioA,4,"came here one night alone. the hostess sat me down and kept staring at me as if there was a problem eating alone! i found that a little rude. + +my waiter, however, was nice. I only got the french onion soup and chocolate souffle for dessert since i heard good things about their soup. it came out in this cute little cauldron, piping hot, cheese all gooey, and several crispy chucks of cheeses were tucked near the edges. it was good french onion soup, although i have not tasted enough different french onion soup to judge it as one of the best. + +the chocolate souffle took a while to make but it was quite delicious. my server brought it out and poured this warm choc sauce infused with some sort of liquor. the etoh didnt evaporate so there was still a strong taste to me, which i dont prefer. the souffle itself was soft and fluffy which was good.",review,Zyd78OiKPAqaMSC6OWLb6w,0,0,0 +Mh85-BDqDHlngT8G2ZnRWg,2007-03-02,WHGflHhaY4YFIVawor2iLg,2,"i was really unimpressed with the pizza here. +it's conveninetly located, but never very busy, even at it's prime location by a bar even on a friday night. +cheap slices, and easy to get in and out of, but of all the many, many people i know who frequent this area, none of them really ever eat there.",review,7GC9fVWKa4a1ZmBGLH6Uww,1,3,0 +CqmCV_6NV3pwYXkjDtG9bQ,2011-12-07,0IoUUKgQwGaHjF1i23nspQ,5,"I am 5'0"", so I require a lot of alterations and it is essential that I have a good alteration service. I will never go anywhere other than Elegant Reflections for my tailoring services. I have had innumerable pairs of pants hemmed here and have been completely satisfied. They have nice private dressing rooms with real doors (I refuse to undress behind nothing more than a curtain), everyone on staff is competent and very friendly, the prices are reasonable, and they are almost always able to complete your alterations in less than a week. + +I have only ever encountered one issue..when I had two pair of very thick trousers hemmed with a cuff at the bottom, the cuff seemed loose. Since I didn't want it to get caught on something and come apart, I took them back to be adjusted. The second alteration was done in just a couple days (in winter, which tends to be a busy busy time for them) and the new stitching was nearly indestructible! + +The staff here also seems to have an exceptional memory, because even after a year hiatus- they greeted me by name!",review,gkwc5gC9eayRtcJ5X-z8AQ,0,1,0 +Jf-FUvn6j86oPQhKNIHFJw,2012-04-15,-wXH0RRTSmyHPhEY68bH1w,4,"On display were High School Kids Art from Apollo, Cortez, Glendale, Greenway, Independence, Moon Valley, Sunnyslope, Thunderbird and Washington. Ribbons were awarded to the most talented and there was art extraordinaire. + + I can see Mike Nielsen has a genuine appreciation for the Sunnyslope Art Walk participants and enhances our community. His interior design work for home and office look very cool.",review,gN03qFYysM5DbgjuV6N0QQ,2,3,1 +KoIRdcIfh3XWxiCeV1BDmA,2009-04-01,-uoJu5AiH5Vp3AgMCrNATQ,4,"Glad to say this place is still going strong a little over a year after my first visit/review. Wanna try it? Then visit on a Tuesday night for $1 tacos and $2 cervezas! They have amazingly good Tacos and Salsa, and an excellent Tequila bar. Do try the grilled corn on the cob. + +Excellent place to hang all night with friends - great drinks, great food, great prices.",review,90a6z--_CUrl84aCzZyPsg,3,4,0 +7SO_rX1F6rQEl-5s3wZxgQ,2012-10-08,BZOu01JHq8EdZtPz6j3sqQ,5,"I'm going to be an uptight stickler here, and only review the pizzeria portion of LGO since the grocery part can be done under as a separate business. I hope others follow suit. Sorry, I'm super nerdy about this stuff. + +Anyways, the sourdough crust is my favorite pizza crust in all the land. I love the flavor and how it's always glistening with oil when it comes to the table. The toppings are really special here. If you even remotely like avocado, get their avocado pizza. The lemon zest puts it over the top. The corn with goat cheese is my next favorite. The only one that I haven't liked is the the rocket man. It tasted fine, but the heavy toppings were too much for the thin crust. + +We also had the fortune of trying their grilled artichoke appetizer one evening. I couldn't get enough of it! It's not on the menu (seasonal item I'm sure), but we asked about it when we saw plates of it go by. + +Extra bonus points for the large selection of cheap pizza wines. Any time I can get a decent bottle at a restaurant for under $20, I'm a happy camper.",review,o2CGc1kQHEFkYOECM3NFdg,0,0,0 +5pojYKKvohZ1kQBdSBAb1w,2009-05-25,lqpr8UHf1WeMOhYE3MS4XQ,4,this is not in the mall dq a real road side flash back,review,NTSDlVbBNw34dV1t7eFRNw,1,1,0 +ytcm2DXuJWKPTqCtr6uJ4A,2012-06-02,lAJtSlaIl81kDWKHmddedA,3,"I came in on an early Friday morning to buy a dozen and a half of donuts for my co- workers. The man behind the counter found it odd I order such an amountapparently, by the way he repeated my order. In my case 1 dozen would have been too little, 2 dozen too many and I didn't want to waste any. That alrady made me feel uncomfortable. Just fulfill whatever order you get, I am customer. It was my first time here, after many, many drive by's. He asked me what flavors and suggested to make a mix, I didn't have a preference, as I just liked an assortment. Again I was frowned upon. Just give me your bestselling flavors...what's the problem. Well, I guess it was once and never again. The donuts were fresh tasting, but the service was far beyond friendly. To bad, you could have earned a new customer.",review,EJaoDaba5ew7Pr1r8fT4NQ,0,0,0 +pQ3kRVmttsV1bHxuTf7TAg,2010-03-24,OyisBZlWvyjZNXF_T5zOLw,4,"Love this place. Great selection of beers, cheap ($3 per beer) happy hour, relaxed atmosphere and walking distance to the Light Rail. Some nights they have live music which isn't always to my taste but I like that they provide a venue for local artists and musicians on top of everything else. On First Fridays it's packed (so good or bad depending on your feeling about crowds - I avoid it those nights) but on other nights ... it's just a very cool and comfortable place to hang out. Sometimes parking is kind of hard to find.",review,IJKdg7KSekmIm_6LJsfvUw,0,0,0 +L7i9j66ph3Uz5i56OXIICg,2007-07-24,B1jXFJYt9s38M33xyqtPvw,3,"It's the kinda place where you're certain the employees don't spit in your food. + +Best Taco Bell I've been to.",review,QEDVhdE7tK6aQp1WuJY69g,0,1,2 +lktu5JPDlQUG-7cV7gOzDQ,2012-07-28,WwmrZHRhYWbfachDVKYLZw,5,"Cartel is my go to coffee place. If I could drink here everyday, I would. The barista who seems to always be working sunday mornings makes the best lattes that I've ever had, ever. Each one always has a cute little heart or leaf shaped on the top which obviously is their secret as to why they're so delicious. I've never gotten anything else because I've already discovered the best. If you're cool, you probably like to hang out here on the reg. +I definitely recommend, best coffee in Tempe by far. +It's a little hard to find if you've never been before, right off university on ash across from the circle k.",review,WVm03gFSsTjzgWfS0XXLBw,0,0,0 +zmFc8M-hS4uuyY0hklIpoQ,2009-01-27,tmd_ihdNuq7NqF0uzahX8w,4,"Carly's is a cute little restaurant with a fun atmosphere. My friends and I started off with the Feta Rosa and it was a great start! Amazingly delicious- I even added some to my sandwich because I couldn't get enough! I had the pear sandwich with orzo salad as my side and loved every bite! Yummy pear, pruschetto, and cheese perfection! + +Carly's is definitely worth checking out. It has great food and a great atmosphere to boot!",review,ai2W745a8wrLHJr7TY0FCA,2,1,1 +55seKyxRWUmHC1s52xk45g,2012-01-25,1gzDuWfUnYDXsYqEjpRCKw,3,"The service we had was good, food was alright, the prices seemed high. Just a sports bar. + +Fine never going to again.",review,hDq2YuMHjB_7KvK8zZCCcw,0,0,1 +JiLK9QPjd53pOBEAaY83lw,2011-01-23,h9OyvqG4jjZsK9VNuvbb5Q,4,"Decent menu which includes the traditional satay, tom yum koong, curries, pad thai etc. What threw me off was teriyaki, sweet and sour chicken, kung pao, chow mein. Food is good with great portions! Careful on the heat scale. 10 is blazin... +Weird thing....I was really thirsty after the meal. Usually that's the result of using the other type of SaLt. +Overall the place is clean, modern, and staff are attentive. Curries are 10 bones, Fried rice at 9, and most entrees at 9 bones! Price is a buck plus more than our So Cal places. Give it a try, food is good, and service is fast. +Damm..I need to drink another bottle of soda!!! +.",review,-WJ9HJiBLoUS9yNhiE6jbw,1,1,0 +NmYTwkqyaCtEg3wifBkxkw,2011-06-29,CTMPP1y-BMZ70UHGj-DAfw,1,"As I promised myself, I'd go back again to try it again. Yyyeeaahhhh...sooooo....the food is still not good. I got the mongolian beef and it's like ""wha? really? is this IRL?"" + +I'm a chinese food kind of a fan, this restaurant, I'm not a fan of.",review,FgauKBp6w-_8hOY1CRYMoA,0,1,0 +cN6aBxe2mQvrQlzk26LyRQ,2009-07-18,h7fbLrNtziYZjkRQvgmSvg,5,"If you are staying in Phoenix for any length of time, this is a must stop for at least a cocktail. From walking through the kitchen, to being seated promptly in a booth, this is quintessential gastronomic delight. Durant's is an icon and legend. Period. Wine list is great, have a well-versed sommelier also. I never order Filet, but when in Rome...",review,t-27_YZKsk9tMbAiwQKCwQ,0,0,0 +B8ujMtvvpHyEQ2r_QlAT2w,2008-08-11,PImnsWzkTPjwX_4r-2YhCQ,5,"Yeah, yeah, I know there are already like fifty-something reviews for this place, most of them four or five stars, I don't care. Here's one more, another twig on the bonfire celebrating Richardson's awesomeness... + +The food's the same awesome New Mexican cuisine as Dick's Hideway around the corner, but eating here is a totally different experience. The dark pueblo interior with Native American rugs surrounding the high-backed booths provides a great deal of privacy for you and your party. I recommend any and all of the seafood dishes - my favorites include the shrimp quesadilla and the scallops... OMG the scallops, so good when I think about 'em they make me lose control and type text message shorthand like ""OMG"". Of course my friends constantly remind me that as much as I love the food here, I can't truly appreciate it because I don't eat the meat dishes, which, according to them, are even better. And they're probably right. They usually are. + +Went with a group of 6 last week, which seems to be about as large as the booths at Richardson's can handle (for much larger groups there's a private room available at Dick's). Service was super friendly and extremely efficient. Yeah, it can be a little pricy depending on what you order, but in my opinion, totally worth it. Sometimes you gotta splurge.",review,zHH2Iz49wCZYYDLBTv0YOg,3,4,3 +FtIZP3Jt-sri23CO84C4gw,2012-01-11,ojEsf1hnwQHG6Ob6UOR-AQ,5,"I LOVE White Lion Tea. The company uses great quality of everything!!! +My favorites are Tuscany, Ginger Peach, Green Passion Tea, White Ambrosia Tea as far as I have tried :) +Everytime I opened a tea bag, I have to take a good deep inhale from a tea bag. It's smell soooo great as the tea taste. +Thank you White Lion for having such awesome products !!!",review,d8s1LoZFes3UXolENDF0_A,0,0,0 +ojjtPlnSmCX1zCzWL7JoNQ,2012-12-04,DCrShxcgMAVTVHYzBJQRAA,5,"The new Kale salad is to die for! +I love this place! Every time we have lunch here it is busy but somehow the staff always finds us a seat! The food is always really good and the speed in which you get it is amazing. This is the best lunch place in the valley!",review,koxaBzK7GSHpAA1BLw2L5Q,0,0,0 +yeLq-452CkaKw1ynn0nRNw,2010-05-02,tdNniSuSdxp5wvfhikAiUg,5,"The slices of pizza are cheap, huge, and very very good. I really don't have to say anymore.",review,-OMlS6yWkYjVldNhC31wYg,2,1,0 +oxsCvEkQNNIbOPDt_QK_0A,2008-07-06,C6yeumUSDmdMYT2GxjKhKA,1,"Nice looking place with average food and horrible service. Everything took forever and no one came by to see how we were doing. We literally watched our server going around setting tables and taking napkins off of empty tables rather than making himself available to us. He wandered around from table to table in a completely unoccupied area of the restaurant the majority of the time we were there. The food was luke-warm and nothing special. I was only here once so I hate to be so down on the place, but based on the other reviews my experience sounds pretty typical. Don't waste your money.",review,YL8SKv-pwx-Wj9cwGYrn3g,1,3,0 +3Zsjlum5kl5N5KV712aTMQ,2012-07-30,7rTnJ-9-1bFRWOZmcQFmhw,5,"I'd love to give this place MORE than 5 stars!!! + +In Phoenix a few weeks ago I needed to planb a nice dinner for a group of 10. I thought about a few places and wanted to come here because of the view. (Get it? Different Point of View.....?) Anyway, while I did initially pick DPOV because of the view, I fell in love with the perfect service AND the perfect menu. + +There were great options for my picky group, and not one person left unhappy, or hungry. In addition, they seem to have a pre-fix menu with a nice price tag if you're ballin on a budget. + +Everything was AMAZING and it's definitely one of my favorite restaurants in DC!",review,Aslq99yqmuVZdFMxasei-Q,1,0,0 +eTbtfgUtfewdncgVf2CbWw,2012-07-17,VfBddVandcTYppp-zuKtTg,3,"Stopped in for some macaroons and coffee, the food and coffee were decent. The place itself was kinda dirty, stains on the floor, saw a couple of flies, and sat in an uneven chair.",review,b6A7LFRsDr6P8gMgCzP1cg,0,0,0 +di2QHs2SrY0XFHcfAq_k2A,2011-10-24,gB_DuxeQcD11Bn7s0gVmzQ,5,Great multigrain sandwiches. Nice patio too!,review,R0KPnPBC7bimj2uyLXYeDg,0,1,0 +LxNehlnStQY_rxEwiPof_g,2007-07-26,AsWugluCn1Ym7HmBFeUwIw,5,"Where to start??? + +The owners are very kind... say hi to Benny in the kitchen!!! + +My wife and I found this place while living in the culinary-void NW Valley of Phoenix, and we have eaten here probably 50 times over a 3-year period. Everything is good: + +Gryos +Chicken Pita +Souvlaki +Greek Salads are probably one of the best salads that we have ever eaten +Fries are always fresh +Zatsiki sauce is stellar + +The atmosphere is a bit void, but people don't come to 35th and Thunderbird for the atmosphere... they come for great food at a great price.",review,aFh79e55bjxj5XD5vkob8Q,1,4,0 +JxgoluY8hnC34cys_f80xA,2010-05-17,ub9QfxatKjVDMAtrt6_MoA,3,"I'm always perplexed when the staff knows nothing about their on-line specials. This time it was the Yelp ad. Luckily it was quickly resolved by the bartender this time which was refreshing. + +The place it's self is a pretty generic bar. I just had a few drinks along with the Crab Cakes which were actually pretty good.",review,A_O8wZOsMTPwyeYA4-Rsow,0,2,0 +679pJn1KyKr2X8NcQNyMzA,2012-07-11,x-79G__QUUYnE-OsEyjrrQ,5,"This is a cool dive away from all the Old Town BS. The jukebox is one of the best I have heard in some time. They were playing songs I never heard of so I know I'm going to be in trouble in the future by using Shazam to identify songs and then buying them from my phone! +Anyway, just be sure you eat before you get there as this is all about hanging in a dive and having drinks. They have lots of beer and the bartenders are cool. If I lived closer I would hang out here much more......",review,xCY9C6KN9xTDzKrow9iivQ,1,1,0 +uEJQSIjWui-TDWXaGlcqyQ,2012-01-03,ROw0XDHF1TcGXfktqfdnVA,4,"Went to this location last week - was nervous to go because although I love waffles, and fried chicken, the idea of eating them together freaked me out. But my husband is a huge fan, so I decided to suck it up. I'm glad I did... Although I typically prefer my waffles a little crispier than LoLo's makes them, the flavor was to die for!!! And who doesn't love some delicious fried chicken! I know I do.... Try it! You'll love it!",review,SLvZfeCztX7QaNbJs_7ikQ,0,0,0 +O_ZNZDr6c5CsK6GgsKdDeQ,2010-07-04,b5tP2ZU27NPVgUfgulAKzA,5,"little known secret- the golf course bar!!!! amazing margaritas and a super-cheap happy hour. didn't mind watching the cute guys checking in after a long day of golfing, either! my bff and i were so happy to have stopped here after our day at the spa.",review,KOxd6rC7dtk5BmniPmHfTA,0,0,0 +QdbZyl-LWFS54u93Vjd5SA,2012-05-26,1t8LNCJ2d113n8dSPsdJ7w,4,I consider myself fortunate enough to have had a business lunch here a few weeks back. The food was excellent. Steak and potatoes just what a man wants! It was very well done and finished with a 3 berry cheesecake. Worth the moolah!,review,75ag2Y7YNHDohV7KWArWBA,0,1,0 +ORiLSAAV4srZ_twFy1tWpw,2013-01-02,4DXtrksVLvLNQ3v-sngmaQ,5,"We recently took a weekend getaway to Phoenix and stayed here. The Hotel is beautiful and our rooms were spacious and very comfortable. The staff here are topnotch. I love the lobby wine & hot apple cider hour in the afternoons, and the lobby coffee & hot chocolate bars in the mornings. We had access to the Golds Gym across from the hotel and were able to get a good workout in their cardio theatre. There is an outdoor skating rink right outside and a small shopping/dining area. It is located right across from the stadium and could walk to our event. I would definitely recommend staying here, especially if you are attending an event at the arena.",review,ABNVoUg46SfdXwRVDla0_A,1,1,1 +k8q3ypIoIzchdp3RoRUsJw,2012-05-31,ZcHOmrI0jCM_JUvKSEt6mw,4,Consistently a good experience. Not a fancy place by any means but a great neighborhood restaurant with friendly staff and good food.,review,4uw7hCPC3owbFuhAkyxrAw,1,2,1 +3Jtu-vKe3LDUc5haxT6aPQ,2012-10-17,gl9cSsDFus9HE-G3igNqDQ,3,"Angela, the Nurse practitioner, was great. baby had a gooky eye and we took her to this urgent care office to see if it was Pinkeye so it could be treated early on. It was Friday and her regular Dr. was booked up. Angela said there was no Pinkeye but she had pus in her ears and had a minor ear infection so she prescribed antibiotics, amoxicilon I think. The only hitch was when the baby had her regular dr appointment the next week he said there was no infection so we were left to wonder who was right.",review,TQ5eVGOFr_qB5_BbEd3Sow,1,1,0 +OypZxwm-jS9QfUwgBmzeyw,2008-12-05,AqC7BsBnbwIhVa0t_SFc5A,3,"Was here for a KYOT Wine-Down-Wednesday event a couple of years ago. The bar area was packed. Stood around waiting for a table to open up- very uncomfortable as the area is pretty small. + +I remember trying the New England clam chowder. Tasty, but it had too much potatoes and not enough clams. Had something else, but can't recall which, and the current menu online reflects a few changes. + +I do recall thinking I would like to come back and have lunch or dinner there, so I'm giving it three stars.",review,0bNXP9quoJEgyVZu9ipGgQ,1,1,0 +I4bSn5gXsHuSPu7L-d_8nQ,2010-11-13,2aZXL6Do1uejgTIOdLJdBw,5,"I can only add my gushing praise to the other reviews. Not only is the food outstanding (pork osso bucco, green chile stew and pecan/fig pie), but the ambiance and service really help make this place a standout. So many places have arrogant, stuffy service, so Scottsdale. Not so here. Also, the waitstaff had opinions about the food - which dishes are his favorite and why. Elegant but comfortable atmosphere, reasonable prices, and a real enthusiasm from the staff (and a chef, who came to visit with folks that he knew who were sitting near us). The food is rich, but did not seem unhealthily so - not bathed in salt and heavy cream sauce. Perfect portion size, with a balance - meat, grains and veggies. So happy that Beckett's is in the neighborhood! +(Oh - and no valet! I hate valet parking when there is an ample adjacent parking lot, and spots are only limited because the valets put their cones in the available spots.)",review,DMtlC2TpVEimIn0D07HnUA,0,0,0 +9Ep4sguv3HH_8lWyzSogjw,2012-05-08,kdVbwoAxXpgI8wDZtKpYig,5,"I had lunch there recently and was very impressed with the food, friendly service and excellent value. I had a lunch special -- two cheeseburger sliders with sweet potato fries. They serve the burgers with several pieces of fresh crisp lettuce, tomato and onion. We will definitely go there again.",review,4GzBe-7iyLaCFHfqbChXyw,0,0,1 +H7KzlC0-o1wIhlGg-Me5Ag,2012-09-15,ooBK1qxfjiHattgbh6wXGA,2,"Uninspired. From the food to the staff, just another mediocre Chinese restaurant in the valley. I expected something better.",review,TWrWanhB9ueePwov6XxUWQ,0,0,1 +PwxvN0SnAGPdqXdNEYVT3g,2012-11-25,3JAUGGP2eizdV8gk3WnbVg,3,"Met a few friends here for happy hour. They had $5 martinis, but that's not what I ended up getting. They have a drink special everyday. That day they had the Walter Crankite, I think! It was like an appletini with cranberry juice. We didn't order anything else. The service was great. Our servere was very attentive.",review,kNO6w6EIKo8u6GSykOHBLA,1,1,1 +VFjeCLwVMguUNWH-DeOgyw,2012-11-03,pOzGCqEIT1ATSwhvlkcVKQ,2,Seriously the most pathetic burger I've had.... ever? On the level of a Burger king or the like. With tip I paid $15 for the burger and fries. What a waste - and they even managed to get the order wrong. A buffalo burger that had no buffalo sauce on it. When I told the waiter he made up for it by bringing a little cup of sauce. Oi... pathetic.,review,Hnlxl7kQRem4uOnbgLEcIQ,0,1,1 +wH_kpDuTE6ChDAp5AlMfJA,2012-10-27,GdfTZukhqOESWhvucBBkSQ,4,"Came here for dinner and dim sum. Dinner probably deserves 5 stars but dim sum was probably 3 stars, so I'll just average my experience to 4 stars. + +Food: +Dinner: There's these dishes that are on sale right now for less than $10 and most of them are clay pot dishes (which are DELICIOUS!). All the dinner items we ordered were AMAZING! Especially the green beans! Those were flavored and stir fried to perfection! I've had this dish many times at many different places and this was by far the BEST green bean dish I've ever had! The clay pots were ALL amazing! Everything tasted SOOO GOOD! + +Dim sum: Not enough dim sum items and the ones that did show up were only ok. We were sitting around for a really long time and nothing would come. When the ladies did come by with the carts, they would not even try to sell us anything. We had to be all proactive and ask everyone what's in the carts. Even when we did that, the ladies would just say ""nothing new"" and push the cart away. We had to order things from the kitchen but even those things would take forever to come. A few of the dim sum dishes we ordered came AFTER we asked for our check and paid already. + +Service: +Dinner: Great service! No complaints there! +Dim sum: REALLY SLOW...why was there no food??? + +Ambiance: +This restaurant is in the middle of a food court of a shopping plaza. They just put up dividers to section off the ""restaurant"" from the rest of the food court. I was hesitant to eat at this place, but I'm glad I did because dinner was amazing! Dim sum...that's a different story. If you get over the fact that you are really sitting in the middle of a food court, then it's not so bad. + +Price: +Both dinner and dim sum items were pretty cheap. + +Overall: +I really liked eating dinner here! All the dishes were delicious! Dim sum probably would have been better if there was more food and the dim sum ladies were better about showing us what was available. I would totally come again for dinner but maybe not dim sum.",review,6kmPFBSUOZqu8kQpOBzD7Q,1,1,1 +X6mWr96ibKdXQSA6mpH90g,2009-11-02,pzdA36d4e4CzayiSOgj_wQ,4,"double-double, protein style, with pickles and spread only please. and a medium iced tea. in-n-out gets it. i like my burger the way i like it, and they don't mind serving it my way. they have never screwed up my order. they have the best iced tea, and fresh lemon wedges that aren't pathetically small. they pay their workers a fair wage, and you can tell - they're all nice and happy. love me some yummy, cheap eats and service with a smile!",review,GyFmGA5UQZ4pXdx1lUH86g,2,3,1 +qHjUo2foq-IXF6Tk1Iz3WQ,2011-12-12,U5RUvQltXtD_x0JFSusbrg,4,"CARLOS O'BRIENS IS MEXICAN FOOD! Sorry for yelling but I nearly dropped my phone when I started reading reviews from people expecting Irish fare. + +I've been eating at Carlos for 22 years or so. I remember being quite young going to the 12th Street and Northern Location. + +They have, hands-down, the best Pollo Fundito Chimi I have ever eaten, and boy have I eaten my fair share. 5 stars + +Their chips and salsa are also always fresh. The chips get also 5 stars. Always fresh and hot. + +Their mild salsa is very mild and watery. Not my style but it fresh. I mix the hot in with the mild which works form me. + +Shredded beef tacos are also 5 stars. Love 'em. + +Fried ice cream is also yummy. I'm not a desert guy so I won't attach stars to them but yum yum. + +Other tips are to come at happy hour. Good deals. Lunch specials and portions are just right also. + +Carlos O'Brien's is a great place that just gives me comfort knowing that it is there when I need it. I spend so much time trying new places, especially mexican, that this old favorite tends to get skipped because the closest one is 15 miles from the house. + +Why only 4 stars? Only because there are more authentic places like Los Dos and Rosita's Place that get 5. + +I'll be back. I always will. Next time sooner than later. That darn Fundito calls my name.",review,3dno9Y7mtvi2tq6IfMpDeA,0,1,1 +EC9WB-iVjd28B6R6KIZ8TA,2011-08-16,ZRlXng9pn0I3s0MizBF_tg,5,"One of my fav sushi places in the Valley. Great place to take someone who has never tried sushi or still is unsure of what they like. Great place to take someone who loves sushi but is indecisive. Some of my favorites include the spicy shrimp/crab roll, Phoenix roll, and their squid salad. Plus - you can't beat the Vegas roll - $1.50 for 3 pieces? It's a steal! Definitely one of the more fun sushi places in the Valley!",review,5RtJforBznyxFKQpdvBZDQ,0,0,0 +iDYzGVIF1TDWdjHNgNjCVw,2008-11-10,uScULKPU8e1vjo8-UwVVeA,4,"We were in Phoenix this past weekend for a wedding and wanted a low key, fun, yummy mexican feast before heading for a night out on the town. + +Los Sombreros was recommended to us by the concierge at our hotel and it was great! We sat on the adorable, sparkly light-lit patio and stayed warm with the help of two heaters. The place was pretty busy but not too loud. The margaritas were huge and strong as can be and made just the way we liked em! We shared an order of guacamole - i was slightly disappointed since other yelpers RAVED about it - i thought it was pretty standard, a little better than ""just OK"". Both of us ordrerd the chilaquiles (he shrimp, me chicken) and they were fantastic although it would have been great if our server told us that each dish was a legit 10 lbs! We EASILY could have split! + +we had such a fun time, the service was good, food was good and the patio was a great backdrop for a casual, albeit fairly romantic meal.",review,Kcmic9TLUlu_dFPC_mNhAg,1,1,1 +07OyvsOpqTWuyTtvE4_gcA,2011-09-22,RrjsFr7ZrjwoH04UuCJLjA,5,"I'm pretty sure that Palee's Crown is the best Thai place I have ever been to. The service is always great, and the Owner comes out to talk to us whenever we are there. +The food is so amazing, I have never tried something that I disliked at all. I especially love the Pad Thai and the Currys. I am always full and completely satisfied by the time I leave. I also recommend trying the Thai Iced Tea to drink if you are like me and enjoy weird authentic drinks, and for dessert be sure to get the coconut ice cream. Don't make excuses about trying to spend less money or that you are being careful about what you're eating, just try it. +The prices are good and if you're not sure what to try, stick with a curry but remember that Asian spices are very distinct, and very spicy.",review,Yq-pv-frxMeQT9zWtdgUEA,4,3,2 +omxi9nCCCM9OXVGsQQ1L5w,2007-04-10,iL64xzahgvRP1-P1QApRMg,5,"We found Ippei happhazardly through United Airline's dining points program and were instantly hooked. We now frequent the place at least once or twice a week. + +A great atmosphere with a very warm and welcoming host, Michael. It has all of the ambiance of a very chic place, without the attitude and pompous feel. The wait staff are all very attentive and pleasant. The drinks are creative. And if you're lucky, the owner may join you in a sake bomb, though he insists this is not authentic Japanese tradition. + +I'm not a huge sushi person and was mainly brought along by my friends, so I can't comment on all the finer touches on the sushi and whatnot. I can say, however, that if you ask really nicely you may be able to try a roll that the chefs are working on that is not yet on the menu, including a rib-eye roll that is absolutely delicious and friendly to those of us that shy away from sushi because of the whole raw fish deal. + +Prices are very reasonable. This is an up-and-coming spot that is still fairly quiet, but not for long. Come now before you have to worry about getting a reservation a week ahead of time. As it is now, you can just walk in. + +Great place to bring a date - low lighting, great service, great food, lots of fun.",review,3MoghgXc3USMbgm1S1Nkdw,0,0,0 +4Pf9DQBcR23A6Lg2pDsrBQ,2012-02-26,qfqzAIclH68KH8iZo0BXTw,5,"Very clean with and old fashion cinema atmosphere. Snacks are very expensive so if popcorn and soda are a must for you, expect to spend alot of money. The amazing reclining seats are worth it though. I definitly recomend Cinemark 16 as the place to go to watch movies! + Also there are alot of great eating places next to it or within walking distance to do the dinner and movie date night!",review,n_p5TE2OAWByYFzYG1mR1g,0,1,0 +qsWxbgQwuomXvMseg23DGg,2009-10-14,OkMx40GPIN65mbj1wN4twA,3,"While in Phoenix for about 36 hours, I lunched at Hooters twice. It was easily located across from my hotel and it was a weekend, which meant I could catch both the collegiate and professional football games as well as playoff baseball. + I take Hooters for what it is, pretty decent fried food, a restaurant that caters to men, and always has a game on. This in mind, I didn't anticipate anything other then a beer and something to eat. +I sat at the bar both times and the bartender, Brittany was extremely friendly and made a point to learn (while IDing) and remember everyone's name-- which I thought was a nice touch. She was always willing to change channels to make sure everyone's game was being aired which was appreciated as well. They have a good football special-- 10 boneless wings with all you can eat fries for $5.99 during any football game. The $3.50 25oz Shock Top beers were a deal as well. +It was odd for me to see a kid's birthday party in the restaurant on Sunday, but to each their own.",review,3cfqpTfcpfHoaSkYM26dUw,3,4,0 +3YrW77yHkp3JIyTGYCS_Nw,2010-08-04,K1jY5uTFXGW8hWNCCJloAw,4,"In the mood for a little snack? this is the place. Don't remember what I ordered (my indian friend helped me), but it was good! and also try desserts!!",review,LqgGgWi3FLHBViX9tmZ9sw,0,0,0 +qd1ajiZRCwqEQJqCgoN1wg,2010-07-05,0y1FdoWOI85_kWx1rKfyUw,4,"We had a great first visit here for brunch. They have a creative brunch menu with traditional breakfast items with a twist, lunch items, and great-sounding desserts. Our party had the sunflower salad, bacon and eggs, steak and eggs, the hummus platter, and the sweet potato chips. Everything was quite good and very fresh. We really enjoyed the sweet potato chips - not greasy at all, just sweet potato flavor with a hint of seasoning. We'll be back to try some of the other menu items. + +Great atmosphere and pretty small dining room which makes it quaint and cozy. Unfortunately we had the table right next to the kitchen doors which was the only unpleasant part. Bussers and waiters would come flying out of the kitchen and then stand inches away from me with load trays of food trying to figure out what table they were going to. The water refiller seemed especially hungover as he literally stood next to my arm for 3 minutes trying to figure out who needed water. They should put a divider between that table and the kitchen. Also bar service was slow - 15 minute wait for 2 mimosas. Waiter apologized but still... + +overall a good experience. Big fan of the atmosphere and menu. Can step up the service a bit.",review,ky5-mOk8-9M-NlLr8Jh8rA,0,1,0 +eRb0wjIVlj0bbfmePKZLng,2010-08-04,pSprYO4dvKGZyR7YfXSYoA,5,"This is one of our favorite pizza places - for the food, value, drinks and great atmosphere! I originally discovered them at the Scottsdale Culinary Festival, and am so happy I did! + +It is in a great location, walking distance to a bunch of fun bars so it's a great place to start the night in Old Town. My husband and I's favorite thing on the menu is the margarita pizza. The crust is so crisp and perfect! As for drinks, Jac's has a really fun cocktail menu, and also a good wine selection. Our favorite: the ONEHOPE Cabernet Sauvignon. Affordable, smooth, and pretty cool that half of the profits are donated to charity. + +Definitely check this place out, you'll love it!",review,Z6Kz5DOd0-W3t_FoQIELAg,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2010-04-21,tIqEPzKIviNNkhqdqAFmTg,2,"I wasn't feeling RnR at all! We don't usually venture into Scottsdale for many reasons, but the siren song of a non-pretentious late night eatery was just calling to us. Unfortunately, non-pretentious doesn't apply to the prices. We came shortly after opening day, so I completely forgive the awful service, the place was packed. I was irritated though when we were told they were only going to be serving sandwiches and burgers, nothing else, even though we were specifically told that this place would have breakfast all day. Breakfast is what I wanted. Oh well. + +We ordered the burger and got some mini corn dogs as an appetizer. The mini corn dogs left a lot to be desired. They were served with plain ol' ketchup and plain ol' yellow mustard. Yuck. The corn dogs were only okay. The breading around them was way too bread like and it was just lacking in flavor. The burger was enormous. Unfortunately, what it lacked any flavor. I guess what it lacked in flavor it was clearly making up for in size. The bacon that came on it was equally huge, roughly 2 inches wide and at least 8 inches long... (that's what she said! Ohhhh!) Anyway, I was obviously not impressed. We might come back sometime, because their breakfast really does sound wonderful, but hopefully they've figured out how to efficiently serve a busy restaurant by then.",review,W_QXYA7A0IhMrvbckz7eVg,1,0,0 +fib0PyPJ2yJO7i8TLnuqXA,2011-04-06,1tuBU55FKBjP_m60P0qt6A,5,"I saw the review below and just thought it was ridiculous. RIDICULOUS. + +Elderly people work here or volunteer. You expect customer service that you'd receive at a high-end store. No. People die and their things that are usually in good condition are donated and are resold at really cheap prices. No, the people there will not be making sure you're finding everything okay, you're on your own... and that's how it should be when you're thrifting. + +I usually find great things. Glasswares, books, shoes, purses. They have amazing furniture that is so cheap. They have many half off days and various sales throughout the week. + +Just make sure you go on a weekday or Saturday and before 2pm.. all the stores in this plaza close at 4 and are closed Sundays.",review,5Ka8MMYEoZfsU-jZzUt00Q,0,3,0 +3n9mSKySEv3G03YjcU-YOQ,2009-12-08,JKOC10z19xzEQGCeXbOvOA,5,"Move over Maizie's you've been replaced...for brunch that is. I have a tradition with a lucky few of at least once a weekend going to Maizie's for their brunch and getting smashed. Oh, and we eat a little too. + +Everything changed this weekend though when we went to Postino on Central for their brunch debut. The food was so ridiculous good, that we actually forgot to drink. Did you hear me?? FORGOT TO DRINK!! + +Since it was our first time there, we ordered a variety of options. I had the Country Toast, which was toasted MJ Bread, topped with Italian Ham, Gruyere Cheese, and a sunny-side up egg. Ho-ly shit. Each bite became increasingly better than the last. It was the perfect bite over and over and over again. The ham had a nice little spice to it, the gruyere cheese had an intoxicating tang to it, the egg was, well, an egg, and the toast really brought it all together incredibly. And it was huge. I barely got through half if it before I had to give up. + +My brunch date got Postino's take on French Toast. To be honest, I am not huge on sweets first thing in the morning, however I would have bathed in this french toast. It was creamy, not overly sweet, and literally melted in my mouth. + +I ordered a White Peach Bellini at the beginning of our meal per norm and while it was spectacular with actual peach puree in the bottom of my champagne flute, I completely ignored it after the first bite of my meal. Me. Ignoring anything in a champagne flute. I know. + +I feel a bit like the blase housewife who just cheated on her husband for the first time with the pool boy, but I'm sorry Maizie's, consider me shacked up with said pool boy every weekend in the early hours from here on out!",review,1kED3-g-gqnc4JgHe89Xqw,13,16,15 +HvfefhU4b38wcSulkBzA1A,2012-12-20,zKVQJU2uuhipYIeX9hBqoQ,5,This place is home.,review,23kkvZDxdGVEaIT8PCKq9g,0,0,0 +quzkSK2uZEl-j_24vZmdMg,2011-12-21,e2PMUf7ooc4p7ZwHMkNAuA,5,"These guys are great!I Even though they specialize in Mercedes, they never have a problem with my BMW X5. The owner, Charles, knows what he is doing and never tries to up-sell you on unnecessary work. Mary (Charles' wife) is a really sweet lady who always gives me a ride home and picks me up when the car is ready. While Aurohaus doesn't have loaner cars like the dealership, they are extremely competent, trustworthy, and charge reasonable prices for their services.",review,OfdeghMqb1gwh3uJqNpTRQ,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2012-07-08,17OSqK80vcdX7SNHXtJwhw,4,"This is the best place if you want to escape Arizona and feel a bit of wine country. Best place to spend a Sunday afternoon. My favorite part is uncorking a bottle of wine, and ordering lunch to be eaten outdoors. So spring weather is the best. Buy a mini loaf of bread and try their delicious olive oils and spreads...super inexpensive appetizer at just $1.50 and the samples are free. They offer many sandwiches and the waffles with berries are to die for. Looking forward to trying their pizza...on my next visit. Regardless of what you choose follow up with gellatto...yum or take home some olive oil cupcakes. Delicious and moist...but a little spendy",review,Igd4Gw_08sA2Ngl2AMVEfw,0,0,0 +o1GIYYZJjM6nM03fQs_uEQ,2011-09-09,JRCQ_diJvU2Py-UPncudYw,1,"HORRIBLE service - did nothing to correct our experience. + +On July 7, 2011, my date and I arrived around 6:30 pm, well dressed and ready to enjoy a celebratory dinner without any financial limitations. We would have easily spent $250+. + +Instead, after an hour of being seated to review our menus we were never offered more than a cocktail. + +Tables around us were receiving quality attention by other servers...complete with the run down of the specials, house favorites, answering questions, etc. We, on the other hand, were lucky to have our make server look at us, much less take us to the next step our level in our dining experience. + +When the table behind us, seated a good 15 mins after us, received bread before we were, my date and I decided that was our tipping point and would not stay any longer. + +When our server came to ask if we were ready to order we informed him we would not be staying for dinner and would like the bill for the cocktail. + +Never once did the server apologize, offer what he could do to make things right, etc. + +Needless to say, we were stunned. The hostess thanked us for dining on our way out...again, we both gritted our teeth with frustration. However, later we discovered that after an hour of sitting in the dining room, we were there long enough to enjoy a meal. It's unfortunate we never got the opportunity to, however. + +What did go right was...we were promptly seated and the cocktail server provided decent service.",review,0wNFzxEof0RDrWPLjDlwZg,2,4,2 +FCcFT610nQBVcRdY-devQA,2011-11-27,XaDM8kVroIocb6bNnzB0-A,5,"wow. this place is a gem. highly recommend it if you're looking for a great place to take a date or chill with some friends out in the patio over some wine. + +visited friends in the phoenix area over thanksgiving vacation and they took us here on a Saturday night. i dont know much about the chandler area but this place could easily rival any of the popular wine lounges here in san diego. + +as for food, our group ordered a bunch of the bruschettas, flatbreads and a couple sandwiches to share family style. we all enjoyed all of it, i especially recommend the fig chutney, that was absolutely amazing. from the sandwiches, the shrimp blt definitely stuck out as my favorite. overall, everything was very good and the service was great. + +as for the wine, great selection. the staff was very helpful in helping us pick out the perfect bottle based on what we like. in fact, i think i found my new favorite wine thanks to them. if you're a wino like me, you'll love this place. + +as for the ambiance, they nailed it. awesome patio and great decor. the attention to detail is definitely noticeable. very chill spot. + +ps. check out the door to their wine cellar, i want that in my house. it's gorgeous.",review,mWI0jgWEADAQXO0798TG7w,1,1,1 +7TMf1NuuAdvhG7IojZSKnw,2006-11-01,_Dyahb7sgMOvfEtTunG_tg,4,"Zipps is a rocking place with TV screens in all viewable angles. The atmosphere is great and this place really packs it in on game nights like Monday Night Football. Smoking is outside because this place is around the Tempe border. The service is great and the food is even better. Try the chicken tacos! +Good times had by all! +Check it out some time!",review,vrM_uBgwfDQ6bQxGVHdUGQ,0,0,0 +QnAzW6KMSciUcuJ20oI3Bw,2010-12-29,R4Bxpk5_jhmysfUgimz5Qw,4,Expensive for having grown their own food. Good product and fresh,review,cwWJ6ydDLjl0AUu_KINZww,0,0,0 +6yuY73ycyyPiIG3zWkXqPQ,2010-02-03,M0cNAIDg9kwyRCmp9HaQDg,4,"This place has had awesome bread since day one. Whatever else you walk out with is just a bonus. Actually, I have to say that the produce selection is getting noticeably better each time I walk in. I still don't think it's quite suitable for everyday shopping, but it's coming along pretty well.",review,BX9K5JMU-NnjxJaNKxImpQ,0,2,0 +b6ZagkhPwEwQCDBB7KkVPA,2008-09-13,qDT07PQru1-stOA0OyJFIQ,3,"Kashman's has great food but you really have to gear yourself up for the rude owner (artichoke lady) and some of the mean, crotchety ladies that work behind the counter. +This is not a good place to place your order by phone. They're always nasty and short with you on the phone and then when you pick your order up, they get all bent out of shape because you have no place to stand and wait for your order. +The guys and gals that bus are usually super efficient and very friendly and the food is above average. If you're looking for good food and a verbal lashing from the staff that work there, then Kashman's is your place to eat!!",review,M3H8du5TxqlTY7qJd4FDbw,0,0,0 +djYFLq4Bkqpkd14-0IJfug,2011-04-03,KaYVholRn87KrdsXoMRlcw,5,Yum! Healthy selections and delicious flavors!,review,1MGIoKLw1oq8HR15DsIUXg,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2009-03-29,Yi2D8gFYtU80C5CgnZqRkA,3,"I really don't know how to rate Lolo's, because, frankly, this place killed me. It was only temporary, but I was definitely dead, heart stopped, for a solid five or six seconds. + +Lolo's is serious eats. So good, it was just painful. Literally. I really don't think I can return anytime soon. I know it's for the best. + +I'm nowhere near joking.",review,QxvFfB6XschULUPnZel2Vg,3,2,5 +yVQiGdxmnrkJDyQXv2maNA,2010-12-28,AxQD_6Ts84hXyjld6AtreA,4,Very authentic and very good Vietnamese food. Great value for the money and clearly a favorite with the local Vietnamese. The spring rolls were very tasty and came with a terrific peanut sauce. They also provide many other typical condiments on the table to spice up your dish. I had the slice beef Pho and it was delicious! I'll be back.,review,ewnwxqKtpDv8erOIZkCpjA,0,0,0 +trAvQPp7gps0Btk-2AmLpw,2006-08-24,bTSrBsqYrE7bx7jB4_OX_w,3,"Zoe's get's a solid 3 stars b/c they have the raddest, most sinfully delightful chocolate cake around. The best part is it's only $2.00! The reasonably sized slice of cake totally makes up for the boring, albeit sometimes satisfying food. The chx kabobs are pretty awesome, enough for two people. Comes with two huge scewers of chx, peppers, cherry tomatoes... over a bed of salad and rice pilaf. Pretty delish. The Gruben Sandwich is also a hit. FYI -- If you don't like Feta, stay away from this place. They put it on just about everything. They trully believe in that old addage, ""Feta makes it Betta!""",review,jt8jtEY1K6TD1FBzYa7HGw,2,3,2 +cTFq_1sAnQUb9eMZO6FlvQ,2011-06-05,IMrAF5brjL_F0EkhGDCrAw,2,Like many car washes they do what it takes to scrape by. I am still looking for a place that actually puts a little extra elbow grease into it. I am tired of being upsold on exterior waxes etc and they cant even take the time to vacuum my seats.,review,wb7P7e3q11TZLxd9QjEmxA,0,1,0 +mPGgxatANSPw9KbMluhXkA,2011-02-05,pQMeYHgglnNf8fjtzMJrFA,4,"I'll keep this sweet and to the point, realistically, i'd give this place a 3.5 + +Pros: +*willing to accommodate food allergens- I've vegan, and super lactose intolerant. +*beautifully decorated restaurant, well plated food. +*the food is made to order, even the sauces. +*I liked some of the inventive touches in their food- my curry with peas, pumpkin, baby corn. +*one of our companions asked for extra sauce and they very kindly made more + +Cons: +*Portions are ridiculously small for the price. Everyone at our table of 9 ordered a separate entree, and no own was full, even the ones who got appetizers. +*My throat was killing me, so I asked for some warm water, instead of iced, while I looked over the menu- they brought back water that was colder than room temp, without the ice and I was politely informed that this is what they had. But I wonder how in the world they serve hot tea on the menu, if they don't have hot water in the kitchen. +*Some of the veggies in my curry were undercooked (think aldente potato) + +All in all the flavor of the food was good, but 1 cup of rice and 1.5 cups of curry does not a 18 dollar entree make. You really are paying for the ambience and customer service. + +If i had a special occasion, i'd prolly visit here again, but when i'm needing a thai-fix, there are other places around town that have equally great food, without the upcharge.",review,fNwxFRCdfa5jX5-smziurw,0,0,0 +oajNY_oTIMb7YZsor7Xonw,2011-03-14,3CPuYkZubcFUdQqVB8h6NQ,4,"Home to the Mariners and Padres Spring Facilities, Peoria Sports Complex is a pretty great place to take in the action. I have seen a decent number of games here over the years. Most recently I saw a weekend game sitting out on the lawn. It does not get much better than relaxing on the lawn, watching some baseball, hanging out with your friends, and getting some color in the 80 degree heat. + +The practical details: (1) there are a TON of food options. Maybe too many, if you believe in such a thing. Food of all kinds is everywhere. You can get all the standard ball park fare and some more exotic things, too, like noodle dishes, sushi, fry bread, etc. (2) Ticket prices are good - sit up close for 20 bucks on down to the lawn for 6 bucks. You can't beat it for getting up close to the action (3) Parking is only 5 bucks in the lot, which I think is really decent, but if you want to walk a little further you could find street parking across the street. + +BEST DEAL IN THE PARK: $9 for a 32oz. soda with unlimited refills. A large one is $5 and not as big, so if you get even two this is a great deal. On the hot day I was there we filled the sucker up three times and once more before we left. Well worth it. + +In short, if you're doing the Spring Training thing definitely come to Peoria. It's super relaxed and one of the best places to enjoy some baseball. You will want to keep coming back!",review,NqeD28GGg1Wdj9BfaHqr4g,2,2,0 +IuAPYzf3NSyfyXYgT46YVA,2010-08-26,TT-6PvXKmu3C5kkc9iS7Fg,5,"If I could only eat at one place for the rest of my life, it would have to be at FnB. This is ultimate comfort food for me - with the bulk of the menu highlighting local in-season organic vegetables from McClendon and other local farms. Charleen prepares dishes that pay the ultimate homage to the vegetable and the farmer with perfect seasoning, contrast, balance and temperatures. + +Beyond vegetables, the housemade burrata was light as a cloud and shrimp grilled to perfection on the mesquite. Dishes at FnB are simple but often the simplest dishes are the hardest to get right as there is nothing to hide behind - ingredients have to be fresh and of the highest quality and execution must be perfect. Charleen and her crew strike it out of the park almost every time. + +Service is professional, attentive and friendly. Pavle and his team make you feel right at home, which is the other reason why I would happily eat here everyday.",review,8WQubmP7G0NM3IyzyMnCEA,3,2,1 +_uy2i0KjsilMG0kGHr9q8Q,2012-11-25,_B5LP2SYPwavTKm1SrsBzA,4,"Recently, I found myself in downtown Mesa looking for a place to sit an write a while while my son went to a concert - I had 4-5 hours to kill. I planned visiting one of the coffee houses within a 5 mile radius but my lack of familiarity with Mesa made that a disagreeable prospect. Fortunately, I noticed Lo-Fi Coffee, which was literally part of the concert venue building, before I began my trek. Lo-Fi was a comfortable place that served good coffee. But what made me a fan of Lo-Fi was the barista, an Air force vet who was friendly and went out of his way to make me comfortable (they closed at 9 and he let me sit in until 9:30 - concert lasted until midnight). If I lived closer, or if Lo-Fi opened shop nearer where i live, I would go back again.",review,MKZh-O5OLJcR1exReXhJHQ,1,1,1 +0db71MbrvcJnyk71COCJBg,2010-12-26,ghQRCJANXdMuYwtaPJAuPA,4,"This place is old school. i.e. you don't come here for the service, or the ambiance (especially since it's in a scary part of town). You come for the food. Come with a group of friends, whether for dim sum or a late night dinner. You need a group of people, I hate coming here when its just mean and three others. I like to taste and sample lots of goodies. They have great live seafood (a must in my book) where you can walk by and see what looks good that day. Be brave and check it out!",review,vhxFLqRok6r-D_aQz0s-JQ,1,1,0 +Ay840nDkj5qfHTAKSrb1Sw,2009-05-29,w00HQ1YXGJdbH4-Nc07KvQ,4,"I liked this place...it's a little dark. I went in the middle of the day so there was probably more workers there than movie goers. And the staff looked pretty bored actually. + +3 bucks ain't bad for a movie. I thought the place was clean and a decent selection of movies and refreshments. I come from a small town so even this theatre is an upgrade for me. + +For three dollars I will most definately be hitting this place more often.",review,Tj_9R74Z9C8N6pbhgj4xJw,0,1,1 +V9i9LnTg9H2XvzqCVBSOXg,2011-10-11,86x4Nu0sh7-Fp6u3XEPLmw,1,"They served us stale rice. Average main dishes, not as flavorful. Not enough meat in the lamb dishes. Overpriced.",review,RL9-QudgjWYw9l78d__uyA,0,0,0 +u8bQvtkVa5lW-SNwRLH6Vg,2008-03-01,tm0R3WQhselebf5mOSe5OA,4,"Very pleased with this World Market. The prices are good for the wine glasses I've bought there (good selection too!). The wine is good everyday wine, and priced reasonably. The help is always friendly and courteous, and the food section---(well, I've been there at least 6 times, and I always seen to find something new in the food section!). +The only reason I give it four stars instead of five, is the parking arrangement and it is not easy to get into its' parking lot.... I think the prices here ae better than Pier One....By far!",review,meuqHEjGCmrO3zDlr6OU7w,2,2,0 +xz1fQwwVAhqA9MsmMaGyZA,2010-12-01,lNe79WfSsizAHth7ZPmkfg,3,"Taberna and Ninfa's are owned by the same restaurant group out of Houston. Is it a coincidence that the FTR for Taberna is by someone who has only reviewed both of these spots and gave each five stars? I think not. + +Here's my objective review: + +Taberna is in the Scottsdale Seville where Roy's used to be. They have a large outside patio that will be great when the weather is nice. + +I ate lunch at the bar and enjoyed chatting with the friendly bartender. The menu is upscale Mexican food. + +I liked the basket of chips they brought out to start. It came mixed with chips and plantains and two nice salsas. + +I also ordered the al carbon steak enchiladas. They were good and spicy served with what I believe was a mole sauce. + +Overall the quality of the food was good but a little expensive. I would come back, but it's not at the top of my list.",review,Kqvfep2mxS10S50FbVDi4Q,1,0,0 +k76odRRsXPErPzB0gjn-3g,2012-11-28,4F3HauOCtY1qJ2wFcKLDeQ,4,"We had a fun, early dinner on the patio here at BoomBozz. The advertised happy hour specials appeared to be a very good value; my fave was the soft pretzels & cheese. I also had the wedge salad and it was excellent - they don't skimp on the blue cheese! My son had the pepperoni pizza and even his discriminating palate was very happy. A crisp blonde draft (for me) and ice cream (for him) polished us off and we left full & happy.",review,fiyOnIEKBOgj00NJLwDBVg,6,5,4 +qjmCVYkwP-HDa35jwYucbQ,2010-11-16,N3pKA0BolUov4o4amvX4CQ,3,"I had lunch here and had the sashimi tuna salad. It was fresh and tasty. I also ordered the miso soup which was actually quite good. Real chopped mushrooms and scallions and it wasn't too salty. It didn't taste like standard powdered miso that you would get at an average japanese restaurant. I also tried the cucumber lemonade which was quite good. Overall the service was attentive and our food came out promptly. My coworker had the seared tuna sliders and sweet potato hash which he looked pleased with. The portions were perfect for what we were in the mood for which was just something really light. It's a great place for lunch, the ambiance is nice especially if you're sitting on the patio. I'm not a huge fan of fusion style restaurants so it gets a 3 star rating out of me, but it's a nice place for a quick healthy meal if you're in the area.",review,5RcTRr4GmKcYpjB9_6-Rqw,0,0,0 +YKDyaK3TKoZRCEgwnhczkA,2008-07-13,OYzuUknSKM3ahvuXvO3VtA,5,"Two weeks after I dropped off my computer for service with the Geek Squad I got it back with a new screen and hand rest. They said 3 weeks and I got it in two!!! And the open-box computer I purchased to use while mine was in the shop was returned with no problems. + +I was so happy we purchased a new Toshiba DVD player for $40. Who knew that DVD players could be so cheap? I've been using it all day and it works beatifully.",review,SBbftLzfYYKItOMFwOTIJg,1,1,0 +c1yGkETheht_1vjda7G5sA,2009-08-05,Or8fekxdMzZdF_Xvg0TYaw,5,"i'm not a vegan or a vegetarian, i thoroughly enjoy sinking my teeth into a thick juicy piece of medium-rare steak. and i love eggs in the morning and chicken tacos at 2am. i am also very hesistant to try anything the attempts to substitute for meat, because i think it's just psychologically strange. BUT ever since my friend turned me onto green about 2 years ago, i've had nearly everything on the menu. and never been disappointed or grossed out by anything. + +my favorites: number one absolutely has to be the mexi-cali burger. i could eat these everyday. it has the flame-broiled taste of a real burger and even the bright red color of raw meat, but don't let it freak you out. it also comes with hummus, bright orange nacho cheese, and chipotle sauce. this burger is SPIIICCYYYY so beware. their fries are crispy and perfectly seasoned. also love their soy ice cream treats, soy-namis, my favorite being the raisin with captain crunch. their lime-ade, lemon-ade, and teas are always fresh and delicious. i also love the diablo red bowl which is another dish for spicy-lovers and comes with fresh roasted eggplant (yummmm) and tomatos. + +their pita chips and hummus are to die for. they're crispy chips which i enjoy better than just a regular pita being served with hummus. and their buffalo wings are almost as good as the real thing. + +green nails vegetarian and healthy mock ups of american food right on the head.",review,HY9qpAamqLXFoa7xMwNntg,1,2,2 +eGevCRobYnA_HSj60sEWvQ,2012-06-01,N3Cq3ayOoUJqvdTB16qlNw,4,"I LOVE PITA JUNGLE! Why aren't they in Chicago?! Damn this unhealthy meat-lovin city! Let's try something different... + +Anything I've had here was remarkable, and I've tried a couple of different Phoenix-based locations, so they're doing something right. Try the jalapeño hummus for a great spin to a Greek dish, and if you're really hungry, I highly recommend any of their lavosh pizzas. My favorite though? The Chipotle Chicken Lavosh Pizza, of course! It is delicious and mouth-watering. + +I deduct 1 star solely for the fact that their parking lot is VERY inconvenient and way too crowded.",review,NWCaFYFDoj77ouA9kEI_kw,0,1,0 +NDKkce5Au-o_OhIt5f2ZBg,2008-11-21,Km2Xi1TjNegRlEczdim4QA,4,"Love the veggie rolls ! Also, the saki bombs are quite bomb =)",review,HFIuj45MwNx-cJkTamazSQ,0,0,0 +ntN85eu27C04nwyPa8IHtw,2007-11-19,gGlA2hAnvqof5BOj484raQ,5,"Contrary to the reviwers below...I love Matt's. Yeah the wait is long...the place is small...once I went in the summer and I was sweating in my coffee... + +BUT.... + +This is Phoenix people. When the breakfast choices are a tasty meal at Circle K (heated under heat lamps) or Denny's and IHOP, you can't beat Matt's. + +I love breakfast. I eat breakfast everywhere I travel on business. I have never had a better breakfast than at Matt's. Fresh ingredients, great food, excellent bread and jam...kick $ss hashbrowns. + +I wish the place was bigger (and cooler) and the wait not so long. But as a special breakfast treat...you can't beat it. Just bring your own fan.",review,gdLc6dq1NpjHj47WBUNZ_A,1,0,0 +PxeX1M8WtyPxX1MuuGIh-g,2009-01-04,s7XJdtzYc6TdB5NN-hi76Q,4,"Ate here kind of randomly on New Year's Day, and it was pretty great! I was looking for a hangover solution and the food here really hit the spot. Great selection of breakfast items and friendly service. The southern scramble that I had was delish. The coffee flowed as readily as the wine had on the previous evening, so I walked out of Scott's ready to face the new year (right after the nap that I planned). Also, sitting outside was some of the most interesting people watching I had experienced in years.",review,Oq5CYkB4dQE_wmPgHu51bg,2,1,1 +fIKyldfAWFJOTT1mHWw6gQ,2007-05-11,tWkjlwwmivawiyyCN67xyQ,5,"For the past ten years (ever since FunSports occupied the same unit), this place has been the one-stop shop for my biking needs. From BMX at age 13 to road cycling in adulthood, SMC usually has what I'm looking for. The prices don't really compete with larger chains like Performance, but they are reasonable and the service more than makes up for the difference. When I was getting into road cycling, the guys at the shop were very helpful with selection, fit, and pricing. A+!",review,kDJ9PRlYugp5RIa9ontPZg,1,2,1 +jbKVbSz51F8IcewsiRQu4A,2008-10-16,6uA3CfgALceuzRYs6bdtmQ,4,"My favorite place for Dim Sum! I have been going to Dim Sum since I was a kid with my Asian mom. I especially like this place because it serves alot of shrimp dishes, and thats what my family loves. I usually go on a sunday. It can be a long wait, but I never had to wait more than 20 minutes for a table. The grounds are fun, there are a few places to see..like the koi pond out back and the bridge and gardens. I have been to San Francisco's china town for dim sum and this beats it! The only thing is, sometimes you have to wait for something you like to come around, and by then it isnt as piping hot. Especially if your seated on the outskirts of the dining area.",review,qlbiTIcn1-hDeHhEF1PLyg,1,1,1 +YKOvlBNkF4KpUP9q7x862w,2012-01-18,IQiXH35tIDCfZqN6ELrMnQ,4,"Some buddies and I went to Scottsdale for a golfing boondoggle last week and a couple of guys in the know directed us to The Mission. + +DANG! + +We let our server, Jonathan, drive the car so to speak. He quizzed us on our likes and dislikes and brought us our orders (we didn't specifically order). We had 7 people in our group and every plate was spot on. +We started with the chicken (thigh) tostadas and the crispy cola pork belly tostadas. They were great; particularly the pork belly ones. MAN were those good. My dinner was the Chorizo Porchetta which brought a big hunk of slow cooked pork that shredded beautifully. Along side this hunka hunka porky love was a salt block carrying 10 small corn tortillas to build little tacos from. Some tasty accompaniments: sauce, onion, & cilantro, finished the presentation. It was a fantastic dish. The other 6 dishes were just as great. To note: the honey chipotle grits that my buddy got were super tasty. Especially when you dumped some of their ghost chili sauce (forget what it was called). Desert was the Pumpkin bread pudding (YUM!) and fried bananas. + +All in all, a fantastic place. Really good.",review,NIzF5MMddl12972ID8loRw,0,0,0 +-O7H5LhBkE13VQZB0QZI0Q,2012-06-17,Jwxsz2CEdLOyKGEoBUUQMQ,1,Not lesbian/gay friendly at all. I should have read the previous review before going.,review,HOAFwraJMBTcYy1qTmFmgQ,0,0,0 +dC6rDLGRoch_DOZk5kLkWw,2012-01-03,UtWkrTUFhMjXQbXb7iW--w,4,"Good Whole Foods location overall... The workers are very nice and attentive, and the food selection is good! Not the biggest Whole Foods I've ever been to, though.",review,P-y83T3BpOTneosph713dA,0,0,0 +gqLWBFxOKag8dXwVxEvTrg,2009-03-18,HV_FhhqsGQS_iMTpDBfvsA,5,"I'm almost hesitant to tell you about my favorite sushi place because it's already pretty busy... But oh well. I love Sakana. It's a comfortable restaurant, I don't feel like I have to get all dressed up to go there. Don't let the fact that it's in a strip mall turn you off, inside is small, but nice. Their sushi chefs are always very professional and keep their bar very clean- that's so important when dealing wih sashimi. We've taken a lot of people to Sakana and it has never disappointed. We have tried almost all their special rolls and love their sashimi too. Their service staff are authentic and sweet. I've never been disappointed. + +Now....stay away...cause I don't want to wait for a table....",review,CJOjw2P9zkPxOnnmrY6KjA,0,0,0 +v1zN2kMLLB3B-D8FTEOWkQ,2012-07-31,fmPEuNP0a6WYYmy1RTzRsQ,1,"We used to go to this UPS store quite frequently and had been satisfied with their service, but it has been at least a year since we regularly patronized the place. However, we had a really unprofessional experience here recently. We went there for rotary services for purchase of home which one employee refused to do and handed off to another employee (because as she under her breath, notary services were a pain). This employee could not help us either as ""he had never seen anything like it, and he didn't know want to have anything to do with something that had power of attorney on it."" I guess we are one of the first people around here to sell a home. While we waited for this man to do something, the employee who handed off our paperwork, tried and failed to scan a document to email and was quite verbal and (sorry) hickish about these ""stupid"" machines. After looking at all was going on, we didn't want anyone here handling our notary services. Eek - felt like we dodged a bullet. Also, don't think I will be going there for any other services. I felt like my IQ dropped 20 points when I went in there.",review,nPbt-JysLj9vuAkODo3X1A,0,0,0 +qMkIbQFrROSnPaQ7at85-w,2008-03-31,7tFUmc1mn0z0qgoprkoY2A,5,"Another place that is really serene and makes you forget you are in a large city! I really liked the Desert Botanical Gardens and I am totally not into flowers or botany! We had been to DBG once before for Luminarias, but it was so dark that we couldn't see much. I'm glad we returned in the daylight. + +We took my inlaws yesterday after brunch and they absolutely loved DBG. My father-in-law is totally into photography, so DBG was awesome for him. We saw tons of people with cameras, so it is a photographer's haven. I really had no clue there were so many types of cactus. There are hands on activities scattered throughout (probably for kids on field trips) and boards with information, which comes in handy on the Sonoran Desert Trail when you want to figure out which mountain in the distance is Camelback, Piestewa, Four Peaks, etc. We saw little lizards, hummingbirds, quail, and ground squirrels while wondering around as well. + +There is much to see and you can get through the gardens as quickly or as leisurely as you would like. We spent about two and a half hours there, which I think is a perfect amount of time. You see everything and are ready to leave by the end. A very nice place to take visitors on a nice day.",review,jqVeTSin5GeRm0ceSg-PBA,6,5,4 +9Ep4sguv3HH_8lWyzSogjw,2012-02-22,gi17Rp-HyIEJ6turV-EZDw,5,"I indulged big time at Indulge Burgers & More during Fat Tuesday yesterday. There are a tremendous variety, including many healthy options such as a turkey or veggie burger. The best part I like is that you can build your own burger with all sorts of yummy toppings. I had the turkey burger, and the turkey was one of the best I have ever tasted. Sometimes you can taste like of the darker meats and fatty parts, but I felt like this burger was very clean and lean. I would highly recommend the sweet potatoe fries that you can order. You can deep those fries in what tastes like a warm marshamallow dip. The price is not too bad either for what I call a luxury burger.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,0,1 +Trar_9cFAj6wXiXfKfEqZA,2013-01-01,kWe7WzAeLPnz6aBz0RCTeA,5,"Bosa Donuts at Southern and Mcklintock in Tempe is part of a strip mall that I have been visiting since I was just a kid. Except, back then, Bosa Donuts was a Taco Bell. A few years back Taco Bell moved a half mile down the road into a new building and Bosa Donuts set up shop. About a year ago I discovered another new store in this strip mall which is Fallout Games, an awesome video game store. For this entire last year I've been driving past Bosa on my way out of the complex after visiting Fallout Games and taking a curious look as I drive by but until this week I had never tried it. After reading all the positive Yelp reviews, I had to give it a go. + +Well, first off, It's 24 hours, which is huge in my book since I'm almost always up until four or five in the morning. The drive through display is lighted and shows their menu but you have to actually order by pulling up to the window. Since I was there at 3am I asked what was fresh at the moment and the guy was very patient and helpful with listing off what he had available. I just got a few frosted donuts (or raised, as they call them) and was on my way. Right off the bat, I noticed the box was pretty heavy. I only ordered a half dozen but it felt at least as heavy as it does when I get a dozen at Dunkin Donuts. When I got home, I opened the box and realized their donuts are at least thirty percent bigger than Dunkin Donuts of Krispy Kreme. + +Anyway, the donuts are awesome. Best tasting donuts I've ever had. I probably shouldn't make it a habit to come here twice a week, if I want to live past forty, but I'll definitely be stopping by once or twice a month from now on. Hope this place sticks around.",review,GyOwPYGX7-ntxcmvK5Ac0g,0,0,0 +ics35glmd7JXtY3qrq3jxw,2011-03-08,MQ0RIVUsLLyzVW00rQuTWA,4,Still a fan. I'm incredibly impressed one of the staff even remembered my name and my last purchase on a return visit.,review,9zp_JEmUScBI1lx9RuxGiA,0,1,0 +WxpCYziMlEy8mrEa_VcB1w,2012-12-07,CBJQBj6yDRmVESmWqCyUjA,2,"Summary: not impressed. + +Arrived early afternoon, ironically maybe that was the problem - there wasn't enough going on, place was dead. I would have hoped that a restaurant manager would realize that the few customers they may have at a slow time are just as important as those on a Friday night rush - standards are standards, you either have them or you don't. + +Waitress was pleasant but not attentive - with a total of 3 occupied tables had to get up and get her attention for more chips. Chips though were very good; needed hotter salsa. + +My friend had the steak fajitas; tasted OK but just luke warm. Fajitas are supposed to be sizzling hot; duh. + +I had a so-so tamale and chicken enchilada. Enchilada was just warm, mostly a flat layer of cheese. Tamale filling was tasty shredded meat (as it should be) but corn meal was barely warm and almost tasted only partially cooked. Refried beans weren't warm enough to even melt the grated cheese sprinkled on top, which consequently then pulled off in a single congealed mass when I took a bite. + +Finally, the Cadillac margaritas were just average at best. + +$50 plus tip for two meals plus two margaritas; not worth it. + +The place looked promising and has a cute patio area but we won't be back - someone's not watching the store. I'm trying to be generous with the two stars as some other Yelpers seem to like this place; maybe things can get better.",review,r63D6SDvVnl61L5ASo1Csg,0,0,0 +2nzUx_M8Szyzsf4CszHasw,2012-06-25,egym0nlAOtzV5KdxozAe1Q,5,We went there right before my Grandma's 100th birthday. There were about 20 of us. The place was busy but we called ahead and they put our name in even though we still didn't have a final count of people. The place was busy but I know why. EVERYONE had a different dish and we all loved it. Everyone wanted to taste each others food because we all liked it so much. We all seem to think we are food critics and we loved this place. Extensive menu and they seemed to nail everything we had! The staff was amazing and would go back in a heartbeat!,review,UofojaVIT3m8qPXHl9J0nw,0,0,0 +xcOncADGPr9eki8OU5Ln7g,2011-07-21,sOegvt2fE5rbv1tckoo2Iw,5,Definitely the best choice of eating chinese food in the city where you have limited good Asian food around. The Singapore street noodle (curry noodle) is always been my favorite and the crab wonton is just a great appetizer to start! I also like their orange beef! Definitely worth to eat for!,review,59pVYStY0yKpRmODFIfDww,0,0,0 +Nc2TtVj6py6dHH_XdWAKRQ,2011-05-21,JgiKP6v5TNi6NNxqjwkf5w,5,"""You want a piece of me?"" said the gargantuan mango tango eggees cup. I said ""YES, I DO!"" and give me a big ol veggie samich and some fries to go with my brain freeze thank you very much. + +Todays order is same ol same ol 12 inch whole wheat extra veggie grinder with extra crispy fries and a bigee flavor (mango tango) $6.50 w/ the captain card. How can you beat this kind of scratch for two people. you cannot. + +It was Yuuuummmmae! + +Unfortunately there is not much choice for vegan here but its all about the eegees! + + +I now will add eegees to Best vegan for the money! and to Best far away vegan. + +Check it! you will be glad you did! + +Review time +Curbage: 10 I really like the fancy shmancy new eegees,but I like all eegees +P factor: 10 very clean as usual +Ordering: 10 no wait at all +Meal arrival: 10 even with extra crispy fries it was fast +Taste test: 10 yummy today and the mango tango is now my second fav to cherry cider + +Summary: 10 Thank you eegees! see you next month. + +Late gordo",review,gDFL_qyyCVcpmdTdCfU_gQ,0,0,0 +W4eKE-fT24h_8b7apHh12g,2011-05-25,cNKP5FvfCcmWSBu4OuEMWA,3,Decent food at a good price. Bargain lunch specials in a good atmosphere.,review,y-wRMqFtawAekwYQMoJ4HA,0,0,0 +nd1hq7xxzrL_s420QqhDjw,2009-12-16,UoFzznahZJq9LVU7WZG4eg,5,"I was also roped in with a flier on my door, and ordered this a month or so ago when they had their deal for free cookies, salad, and drink with a pizza order. Upon delivery, I was given another coupon for the same deal and a few weeks later received a handwritten thank you note for ordering with them and a coupon for a free order of cheesy bread, no purchase necessary. Needless to say, this has become a go-to pizza option for me. 4 stars for food taste and quality, an extra for great service and good deals. +Salad is pretty average but good enough for me with a pizza, pizza is particularly good, cookies are awesome, cheesy bread is cheesy enough but not just a pile of melted cheese. Their sauce is really tasty- tastes fresh and not too sweet. Delivery is free, and on time. The longest time I've been quoted for a pizza (at 7:00 on a Saturday) was 45 minutes, and they got there in 23 minutes (I wasn't timing them but I did notice how quick they got there). They have a hot'n'ready special that's only a dollar more than Little Sleazer's and ten times better. And if you don't think it's good, you get your money back. So really, you should just try it. Okay? Okay.",review,Zq1J3jo27l5m2ntTZPOSgA,0,0,0 +_FXql6eVhbM923RdCi94SA,2010-09-27,M_bnwy1RWODDcAi3C0JU-w,3,"First I want to thank Hula for saving my date night. We headed out for Postino Central for their wine and bruchetta special on a Tuesday and were disappointed to find out there was an hour wait. So we headed up central looking for an alternative. I saw Hula and remembered I've wanted to try it for while, so that's where we ended up. I started with a blood orange martini and sweet potato fries. The martini was awesome, but I have to say the fries had potential, but they weren't crispy. For dinner I had the Jamaican jerk tofu. It was pretty flavorful and the corn cakes and plantains that came with it were a nice addition. The meal was good, the service was great and the overall ambiance was chill yet urbane. It wasn't the best place I've ever been, but I'll definitely go back. I love that there are several vegetarian options to choose from, so I'm eager to see how the other entrees turn out with tofu.",review,Zwtx7FLZcK5F2P0-Tz8mHg,1,1,1 +FqzgT9Y-Yu7jiWdHnGW-kQ,2008-12-23,evzFA-eKu9xjIlpyP3KcCg,4,"this place is growing on me. i wasn't a big fan at the beginning thinking they cater to the yuppy crowd that wants to be seen. i still think that's the case, but i think people truly go for the atmosphere and good food. the vig cobb is really tasty and you just can't go wrong with sweet potato fries...my weakness! the interior is really cool and creative and the vibe is casual and friendly. lunch hour tends to get a little busy, but they have a decent amount of seating for such a small place.",review,tTa7FOsuzCMJNyM9d4Riew,1,1,0 +9yKzy9PApeiPPOUJEtnvkg,2010-05-08,yLDTP6tFzKTd6RAYP0mrgg,2,"I so wanted to love this place. I'd heard great things about the food, love the concept and was looking forward to a wonderful experience. What a disappointment. + +We were seated within 20 minutes or so of arrival, which was great considering the crowd. It was nice to have somewhere to walk around, and we were able to serve ourselves tea and coffee while we waited. + +Once seated, however, it took 20 minutes for anyone to take our order, and another 45 for the food to come. Our food arrived cold. Husband and I both ordered eggs ""over medium;"" mine were runny and undercooked, his were hard and scaly. ""Home fries"" were a mound of mushy, under-seasoned potatoes. We were offered jam when the food came, but the waitress never returned with it. My husband asked one of the other staff if they had any jam, received a curt, ""yes"" as a reply, but they didn't offer to help in any way. + +For the prices (average $10 plus $2.25 for a self-serve drink), I can think of many places I'd rather spend my dining dollars. Yes, the grounds are lovely and I like that most of the food is from local suppliers (which does not mean it was raised on THIS farm, BTW), but there are many lovely patios in Phoenix with much better food and service.",review,m011mMHSFa3nXSk5anCVKA,0,0,0 +UIGFrEcoDsw05I1UOrxdOA,2012-01-01,0vX6RbUei3HY6y9el3fhSw,5,"Delicious yet again! Pho, garlic green beans, papaya salad...they can do no dish wrong. The owner, Justina, is hip, cool, gorgeous and awesome! It's BYOB so bring a nice wine or beer...no corking fee so don't forget to tip well! + +If you're eating and there's a big line of others waiting, please do what we do and go across the street to gelato so that other people don't have to wait an hour.",review,rviVgJFfVSBKEyRFFkH05A,0,1,0 +H8nW4fDIaeIs-g-c2zkiTA,2011-12-14,0LSY_YArQS6a6yPJAph2aA,4,"One of my favorite boutiques in Scottsdale, I can always find something I don't need but have to have at Elan. Lisa and her entire staff are friendly, helpful, and always have great suggestions. They keep the inventory fresh and edgy. Some of the pieces I've gotten there never fail to get compliments. It can be a little pricy, but everything I've gotten there is well-made and things I'll wear again and again so... Lisa puts on some great events and really engages with her customers.",review,ky5-mOk8-9M-NlLr8Jh8rA,1,0,0 +c1yGkETheht_1vjda7G5sA,2011-12-30,lv1gDBn5FfVv5MGHxeUDRA,3,"For vegan fare, it's passable. I liked the food, but not totally in love with it. The teas were the best though, and didn't have any dessert but it sounded amazing.",review,EtMfNbEe6ngq6a4p3y3cWQ,0,0,0 +D1T1jtCfTfXD-cQE3QViow,2012-09-20,fcjwUTuRrgi66nZZb-Tb9w,2,"I really liked Joe's; the food and service was always good. But one bad experience has me wondering if I will ever return. The problem I had was with the service. We walked in on a weekday around 11, the place was pretty packed and there was only one server on the floor. We grabbed a table and waited about 10 minutes before she came over with water. We told her were ready to order, to which she replied ""I am really busy and have other people who need to order ahead of you."" In my 16 years as a chef, I have never heard a server say that. She didn't even offer to bring us coffee or anything. If anyone from Joe's is reading this, here's a little crash course in restaurant 101...if a customer says they're ready to order, TAKE THEIR DAMN ORDER! Anyway, we ended up walking out. Guess we'll be eating exclusively at Matt's Big Breakfast from now on.",review,9oSiU2b45v5HwkkvgrXYBg,0,1,0 +QQ-lSbz4ARm1MQA5z8-nAw,2008-05-16,OooQ5FVrs9cyEcwp7EaYrw,4,"Aww, too bad these guys went out of business. I actually only went there one time, I live in Chandler, so it's just a little out of the way. But I stopped through the drive-thru and thought if I lived near-by this would be my coffee place. Whoever took my order that day was very friendly.",review,9VPNlcKsL99FvKtz1r9qJg,0,1,0 +MLVKDbuI2xaOJQ4-NZj2MQ,2009-09-11,DZbyjwQYc72n0MhoL6GBHg,5,"Marcellino and Sima are finally back after their yearly 1 month Italy vacation (re-opened September 10th)....and are we glad they are back! + +We had a fabulous duo appetizer: fresh fig and prosciutto and the second was a filet (carpaccio) with shaved mushroom and black truffle! Delicious! I've always been a fan of prosciutto and melon, but the fresh fig was tremendous! + +Marcellino also brought us a fresh black truffle cream for his crusty bread, mmmm, amazing. I don't think you can get this anywhere (fresh), even here if you ask for it, but we were lucky to be in the right place at the right time! + +Pasta duo was tortellini with even more truffles and a wild boar pappardelle. Best hand made pastas anywhere. Perfect! + +Main course was a perfectly cooked filet with his mashed potatoes and julienned vegetables...and more truffles! So right...so full! I'm so glad we had an hour spinning class before embarking on this journey! + +We ended up skipping desert and had some left over to go! What a perfect Italian dinner paradise! + +We can't wait to go back for opera night...and of course we are waiting for his next wine dinner. Best in the valley.",review,LT3L8-tthzD0IakgXm81pw,2,2,0 +jGldmslgIegQNM5kvb851Q,2012-04-22,6AvhXtIv9Z89aHY1y9WUXQ,5,"When I found out that they do banquets here, I was quick to make a reservation for a wedding rehearsal dinner. The service was as good as it gets...period. The food choices my wife and I had to decide on were plentiful, and the result was beyond fantastic! From the appetizers, to the main courses and finishing with yummy dessert...this place rocks.",review,cCwj4RJSKU4-o9ZZ1VTtmA,1,1,0 +2Rcde1wjg6FeczFB3TwS4A,2010-07-05,EOW1LE_LVYX0kmvCh9rU9g,4,"Fun Fun Fun! If you're looking for some fun for your kids or you just need to get out some stress yourself, come here. Enjoy the adrenaline release you can get by shooting at other people in a dark maze with your laser gun while trying not to get shot yourself. This place is great. :)",review,9IoWmskJG2sz7hEFAfqV3g,0,1,0 +EWMwV5V9BxNs_U6nNVMeqw,2009-04-27,LwcpYSsDA0aPsCLWf_juMA,5,"Fez is RIGHT down the street from where I work, hence due to its location + general fabulousness, it has become a regular spot for happy hour. + +Here's What we LOVE about Fez: +-Sweet Potato Fries (sooo good--sprinkled with cinnamon by the way) +-Kisra and Hummus! +-The Black Bean Burger (the first time I ordered it, I asked the server: ""Now, is this one of those really bad black bean burgers or does it actually taste good?"" She said, ""I totally know what you mean, no this one is good.""-and she was right!) +-Margarita Mondays (aka 2 for one Margaritas--check out the pomegranate one!!) +-The atmosphere--blue and green tones while still being warm +-The friendly service +-The close proximity to light rail + +Here's what we don't like as much: +-The slow service (sometimes it gets kind of bad, I feel like you have to be an active restaurant goer and hail down your server--otherwise you may never get to order, get more water/another drink, or get your check) +-When happy hour ends (I mean, who likes that anywhere?) + +Fez makes me very happy to work in downtown Phoenix.",review,nx2PS25Qe3MCEFUdO_XOtw,2,3,1 +VkdjWDnu5EDqT8PIhb4y3A,2009-05-05,GBQaJ5vmW9Jnrtt8MLXKpA,4,"We stopped in here on a hot summer afternoon, grumpy because we had been on a wild goose chase for mint. Couldn't find it anywhere, like Fry's, Basha's, or TJ's, even in those teeny tiny overpriced little packages. They have it here in big bunches for something ridiculous like 59 cents. Since we had friends coming over for mojitos, this made me happy! It's just about mojito season again, so I'll be headed back to this location. The produce section was large and had some good-looking stuff in it. The location isn't really too scary.",review,8VGcy_9Pbcn_oa0eCxSGow,2,0,0 +24qSrF_XOrvaHDBy-gLIQg,2010-11-04,H3uoWZiwzZ4zwTFKh10wLg,3,"Average Cajun food, nothing special. I came here late on a Tuesday night. Few people there. It's a dive of a place in a strip mall. A bluesman was playing nice quiet blues on an electric guitar...very nice. Kinda scruffy place with all the basic Cajun staples. Nothing fancy. Decent brews. I think the bar tender was waiting tables. I probably won't be back, but I had heard it was great and wanted to try it. I think I like more upscale digs and fancier/pricier fare.",review,F82JoyU1Y5yFuSeKfGxoAA,0,0,0 +MuIXnv7Oq7X3-4aEsp9dDA,2011-04-30,6khLfob_dUoYcDWk6FMXfQ,3,"I decided to give this place a whirl yesterday on my lunch about 5pm from work the space was nice open airy the staff from front of the house to The wait staff all were very friendly linens on the tables as well as linen napkins the only thing was the menu was a little lack luster the appetizer selection was fair. Hummus,tzatziki , served w/flat bread ,selection of olives a couple of pork belly selections I had the lamb burger I ordered medium it was served a more rare but was still good the did offer some higher priced entrees and there were other selections of burgers and sandwiches thus the name gastro pub they had some good beers on tap",review,kJyR4gT1pfCcNjEY9-YMoQ,0,0,0 +ZmPD_EkSQX0QP9jB2bv13Q,2012-03-17,2tjXPUf8vtKGoojtM7YI6A,5,i go to debon every 3 weeks for aki the hairdresser. she's very nice and asks you a lot of quesitons to make sure you get what you want. she is reasonably priced.,review,fksrAfKZYrhCzOjUIoFudw,0,0,0 +Zx8_4zKdDBSO3qGrkukBIA,2010-07-23,jyiqDgqKJKrEHC61s7hj9Q,4,"I just went here for lunch. I really have nothing to add to the other reviews on here because they pretty much all sum it up. It gets crowded, the ordering process is a clusterfuk, they place looks sketchy and dirty, the staff is very friendly and helpful, yada yada. The place isn't worth all the hype but definitely is worth a visit if you are in the mood for something unique. Its not the healthiest or highest quality cuisine, but it is a pretty solid place and worth a shot. + +* Jerk Chicken = very good +* Pollo Diablo = spicy and awesome and my stomach is going to hate me later +* Jade Red Chicken = excellent +* Pork Fried Rice = very good +* Red Salsa Stuff = excellent +* Refried Beans = standard +* Snickerdoodle Cookie = awesome",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,2,1 +PwxvN0SnAGPdqXdNEYVT3g,2010-09-02,tjVEbTBYmO12fFADcald5g,2,"A new player in the Downtown Phoenix food scene, Bliss is a creation by the folks behind the Fez, Switch, and Ticoz empire. They occupy a buliding once occupied by Fate and Nine|05, the former of which was one of my favorite restaurants. + +Entering the restaurant, we were greeted with an odor of mildew and dirty water, which isn't exactly a pleasant way to arrive into an establishment. Being the only ones seated in the small space, we were able to really examine it, and I noticed one glaring difference between the way they have it set up and the way it was set up; it feels like a cafeteria. The installation of florescent lights, heat lamps, and massive amounts of stainless steel in the open kitchen make this place feel like a lunchroom at high school. Whatever, we can deal with it. An overview of the menu showed several options which seemed like drunk food... fried everything, cheese crisps, foot long hot dogs, slider burgers, tacos, grilled cheese, etc. Apparently ""comfort food"" means deap fried grease? NO THANKS. I ordered the Braised Beef Tacos, which had the consistency of paste, but were average in taste. + +My biggest gripe with this place is the microwave (not even a turbo chef) sitting front and center in the kitchen. Look, I understand that some restaurants use microwaves (usually not good ones) in their kitchen, especially if it's a cold kitchen (which this isn't) but having it in plain view and audible in the dining room is just atrocious. I truly hope someone from the restaurant reads this and hides the thing. It made me completely lose my appetite when I saw them heating my girlfriend's rice for her chicken skewers in the microwave. yuck. She did mention she was neutral about her food. We are people who go out at least once a day for a meal and try a new place every time, so we know food. + +Everyone we encountered was nice, and the service was very friendly. Everyone seemed interested in how well we enjoyed our meal, the space, and they seemed interested in welcoming us back. Unfortunately, the place looks kind of makeshift on the ReBar side, and like a cafeteria on the Bliss side. I'm not really sure why it looks makeshift, perhaps it is just because it looks like a temporary wall in the back of the room, or because it looks so bare, but it looks like they are in there just for the time being. + +I feel compelled to go here again but only for drinks out on the patio. The inside looks like Mexico, the food wasn't very good, and the cafeteria/microwave issues pretty much summed up this is not a place for a nice night out dining. + +I also find it interesting how many reviews are by orange heads or people who were here for the ""vip opening."" c'mon, try the place before you write a public review of it, and by try I mean eat some food, and actually experience it.",review,JgDkCER12uiv4lbpmkZ9VA,3,7,2 +fATj2lCnnjw2GHH4iL0TIQ,2012-10-31,2j6g8_TLzE5Ua1MoPsDlpQ,5,This place was great... Well as great as a doctors visit can be. They called us (my son was the patient) back within 5 minutes and immediately saw a doctor. She was kind and took her time - asked a lot of questions and did not hastily diagnose and fully explained to us what was going on with my son's health.,review,-JCz23DksK1RarHxp03-Gw,0,0,0 +OhCRdO-4v4zV90TMbR7Qfw,2011-10-22,28Pk6nBytxscDAJni5sloA,5,"This is true personal training at a fraction of the cost. It's fast, convenient, clean & friendly! You choose the style of fitness YOU want, and your workout program will be designed specifically for YOU. And you will see your progress after each session. AWESOME!!! I like it so much I'm going 6 days a week!",review,roTLGM_IqrYi3QSQNuzxlw,0,0,0 +bx5Yc7-_E8wz3Lahpq88mQ,2010-11-24,otVTsasenx64EvkoqoH2vA,3,"This place is pretty good. better than average but not great. Fish fry on Fridays is ok if you like DEEP battered fish. nice atmosphere lots of TV's. +Uquiel Beer on Tap",review,4yVZLUC_siQmWDkbKLM5YA,0,0,0 +5kB59vuc4yufpGNNrF3Efw,2011-10-17,T7ht0i7McrJoEgBdG1rlLA,5,"If you are looking for only raw vegan food, this is your place. Nothing is cooked, everyhthing is 100% raw. They offer a variety of creative options from appetizers, wraps, soups, pizza and pasta. They have freshly squeezed juices, smoothies and a variety of different health shots. The dessert is yummy as well. This is a must try!",review,2G5N1YvbqQ_9Wa3UEMMbnA,0,1,0 +St3jS0PnF1lulH1ggA4Jgw,2009-10-08,YKXgZI-ghJBCbJPhs0kZmA,4,"Sure it's walking distance from my house - so I was hoping I would have a new place for my morning tea. After finally re-opening after the fire on 16th and Bethany Home, I was excited to check out Luci's. + +The design of the the place is fantastic simple, sexy, a little modern and throw in some retro corner grocery feel. I was greeted with fun, friendly service, and then left with a great pastry and a tasty ice tea for the road. + +They seem to still be working out some kinks since the re-open, but I see it only getting better. In fact I just got myself excited. I think I am going to head over there now for my morning snack.",review,UTt78HkUgvATBJxhXIPZJw,3,3,3 +0m0KmAYGvC34MfwJIEgCEA,2010-04-05,PSpeEEprBYkRBb60bLBgFA,1,This place is disgusting!! The bun was dry and stale. The veggie burger was yucky... I don't think I have ever had one I didn't like before. The kids meals are miniscule. The topping bar is so simple and plain. The dips are not very good... cheese dip is YUCK! Drink choices stink. Cookies taste raw and boring. Almost forgot to add that the two young kids didn't even care for the french fries because they are seasoned. I thought they were a total waste of calories. I can't believe the prices either... so not cheap or even worth what you pay for.,review,T7J9ae0wTskrI_Bgwp-4cA,0,0,0 +qlrZzAktK8wODSHxhLEK7w,2010-02-02,PPDfQeTai1uq2Sz2Z1RjLw,4,"Been there many times with many friends, not fancy food but decent, fresh, local, organic at a good price with none of the pretentions that one would associate with the whole organic/green mocvement in dining. That being said the food only gets 4 stars based on the price plus the 5 star brownies...food is above average but not by much, the atmosphere and price are what i enjoy most",review,N-99DP_5HneEa-6So6a3pg,0,0,0 +mxrXVZWc6PWk81gvOVNOUw,2010-03-01,N6w7xp1bgOAEYSSnfbPtdg,4,"Worth a visit. This is good food, not good people watching. + +Think: Colorado take on southwestern food. + +Ate: Pork Green Chili app. Grub. Little kettle of the stuff with four fresh made tortillas that arrive folded in a white paper bag - hot. 4.7/5 for flavor, quantity, value, and presentation. + +""Big Ass Burger."" All made in house. Even the bun and fries. I don't think they keep the cattle there though. Burger was loosely packed, over-cooked, and a bit salty for my taste. But I am a critic. Jen thought it was average too. Also now $13 - was $10 6 mos ago according to other reviews. 2.75/5 + +""Huckleberry Bread Pudding."" Whoa. Like a hot gooey berry muffin with Ice-Cream. Awesome. Jen thinks it might be her favorite dessert of all time. 5/5 + +We were a little worried when we saw all the snow-birds in their ivy caps and studded mom jeans. Turned out to be just fine - and the service was pretty special for how reasonably priced everything was. Portions were serious - Jen and I shared everything and were stuffed. Can't imagine orgering your own app, entre, and dessert. No way. + +Sorry about the typos. It's bright out here in the Scottsdale sun by the pool...",review,HR6mu6sZz4ptVWbkT4uOvA,1,1,1 +Yb2pNCxYR32XKmpirqJqeQ,2011-02-04,zTWFbNTWwGtHlDpxggnlUA,5,"Authentic mouth watering food. +Got the steak fajitas dinner....extremely satisfied.",review,JdNERlRX2ghg3v_rNSt8Hg,0,0,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-09-13,ok2Gr4WSvZ5fJSp_Wz59Pg,5,I love that they are kid friendly and that chef Aaron came by to ask how everything was. Delicious food.,review,wi8bnLyWpJOt_DV8zqgfZg,0,1,0 +KoJ4jNSmqYbmKqcoh-2dNA,2008-02-10,tOBYUw_3va01wu004bQp0g,5,"I cannot believe I am about to say this: +AIRPORT FOOD IS GOOD. + +For any of you who eat in airports on a regular basis, you've surely come to accept the fact that airport food just sucks. It doesn't matter how much you spend: the bread is stale or soggy, meats are dry and tasteless, and forget fresh veggies and fruits of any quality. + +I was just shocked when I visited the Roadhouse at Sky Harbor recently. I had an hour before my flight so I ordered a Stella Artois and a french dip. I wish I'd had a camera to catch my expression when I bit into my sandwich. The bread was soft and warm. The meat was tender and tasty. The cheese was really good; no joke this was real cheese. And HOT au jus? + +OMFG I almost freaked out it was so good! I couldn't wait to tell my server how pleasantly surprised I was. She kinda laughed at me and said they get compliments on their food all the time. AT AN AIRPORT? Folks, this is the best kept secret at Sky Harbor. I will make it a point to go out of my way to eat there in the future, even if my gate is in another termial!! + +This place is in the low B gates - try it and you won't regret it!",review,Gz6a5ATa6Sg0QlfiCHPcZg,0,0,0 +QdbZyl-LWFS54u93Vjd5SA,2010-08-14,G6yLYFSFdL0Zkdf907rPvQ,5,Amazing food and excellent service. LOVED the porcini rubbed delmonico.,review,Eq6j-P0ipCIlhI1GqrbpWQ,0,0,0 +9Y3aQAVITkEJYe5vLZr13w,2010-09-21,m8mOG3QWCfr7SR0km3xJ1g,2,"I used to be a HUGE fan of the breakfast club, even when I had to wait in the 100 degree heat with a hangover and now I am not. I have had the eggs Benedict, the breakfast burrito, and the Greek omelet and they are all bland and quite frankly taste the same, even with the red and green sauces on the burrito. I ate there again last weekend (because my boyfriend wanted to) and I had the lox and bagel, which was down right gross. The salmon was the nastiest color and tasted almost as bad. The bagel, was well, a bagel, but not even a good one at that. Next time I am in Scottsdale I will be going elsewhere for breakfast, I'll skip the wait and the bad food.",review,OqgL64SkHicaRtYpw08r9g,1,2,1 +9BJ5h9X1krpXFjKj0a6wbg,2008-02-05,2osp0HewAtm1cw77uzMegA,4,"This place is yummy. The service might not always be, but the food is. They have a sexy bar and great intimate decor and a South West feel that isn't done with terra cotta colored paint and teal cacti pictures. I love the Jelapeno Benedict and they have AMAZING margaritas. And they serve brunch till super late.",review,PR3BwoHUujKqnO9uACPS6A,3,1,1 +WfYQE-MZCQb_BOyW7lWh9Q,2012-03-05,j2OZUaNGzWaasCdqbtXRYw,4,I've always had a pleasant experience at Mojo in Tempe Marketplace. I have been to this location about 4 times and they always provide good quality and value. My favorite is the red velvet froyo.,review,qHIQkZ_l3nYpHnFFj8Qt6w,0,0,0 +kyWbn54rsIlS3vbpDo0qPQ,2010-06-12,zXmKy7kjlGhUIuEIKu-VdA,4,"We really liked this place. I got the grande burrito with zuchinni & peppers i it which was really good. Loved their carne asada and the prices were great. I wish they ha more on their dessert menu. Would love home made churros! Staff was friendly. Would for sure go here again. Much better than baja fresh, rubios, tace bell & most other mexican places around PHX that we've been to.",review,69u07iiOtbtRvLS6I4-DTw,0,0,0 +LHzVPddSPzMECho55zCf0Q,2007-10-31,2K-UHZrmE5SJXLQlxZdicQ,5,"One of my favorite places to satisfy my sweet tooth! I typically will get sorbet, and on this evening I decided to get the Raspberry sorbet. I believe that this Gelato Spot location has the nicest ambiance of all the locations. After getting my sorbet, I enjoy sitting out on the patio.",review,BVZ7iTR_nI3jzdQidze1UQ,0,0,0 +y6uO4ydAwBHUujfiSktxZg,2012-07-19,K43kx5KUQ567ilD9h6PP4g,5,"This was the first place my husband to me out to eat out when we started dating, OMG I loved it. The staff is always extremely nice prompt at this location, we enjoy their food and I epically am in love with the 99 cent margaritas they are the best. We always have a wonderful time here new and old memories.",review,Wy7UEqtBkjvjIOjn60UcPQ,0,0,0 +pa6K7DGByxBXxcVJ59nWMw,2007-07-27,0wsuSC-c-bqs6xVAhAkqhg,5,"I am a transplanted Midwesterner, so I love me some breakfast. And by breakfast I mean: Hashbrowns, sausage, bacon, pancakes, and biscuits and gravy. + +Mike and Rhonda's makes a mean breakfast with huge portions. For $7 you can have bacon/sausage/ham with hashbrowns, 2 eggs, and biscuits & gravy/pancakes/toast. Come hungry or share. + +They also serve classic american lunch fare: burgers, chicken strips, fries, meatloaf, etc.",review,aFh79e55bjxj5XD5vkob8Q,1,2,0 +L1BrWBGpGBf0vmjThJ9qzQ,2006-06-29,fVuAmpn19tmVJxuCEfxbiw,1,"This is one of the franchise store of Ritz Camera in Chandler. The store's staffs are nice, however, their photo lab is miss leading. They make the price in very small fonts and hanging on the ceiling. + +For the first time user to print photos in the lab, I was charged for $45 for just few 4x6 and 8x10 print without sign-in as member. I asked for canceling order prior they print the photos. I was told ""Too late"" even it's still in one of their store pc for ordering prints. + +Since they are franchise, I should be able to return or exchange the accessories I bought for my Nikon D70S camera in different store. I was told ""No"". I can only exchange or return to the stores I purchase them. + +I will not buy anything from them again.",review,Z3qVl-1JgYnAe4py6VC5ug,0,1,0 +E4b5OC_6mZ0V7B6Nyjncsg,2010-11-23,Jnt2z0W4hzc63qau4pCjIA,4,"4 1/2 stars - really great place! The decor is nice with cool artwork and beautiful flowers on every table, the service is friendly and food is authentic and delicious! There happy hour specials are pretty good as well!",review,pEVf8GRshP9HUkSpizc9LA,1,1,0 +xT93fKSkismzy38eJOIFmA,2012-04-11,Rdeg17BG8611tCiwpG8sGw,3,"Best time to work out at this gym is in the early morning. Went in the afternoon a few times and it's usually packed. + +This place has everything I need to work out. (threadmill, free weights, machines, basketball court, swimming pool, and sauna). Rarely do I see any of the machines out of order/ broken. Although the men's sauna bench was broken for maybe 2-3 months before they finally fixed it.",review,wJzMpk54FF2jeENqMBJ24Q,0,0,0 +7Y7p1NHDj0iGQN7IbBp5jw,2012-07-27,3S1i6erH7IL3-hWGOL1bTQ,1,"I wish I could rate this place higher but my blow out is terrible. I asked for a blowdry with lots of volume and curl. It seemed that the cross between the mai-tai and cosmo would be perfect. My hair is flatter than what I walked in with. My hair is curly naturally so has decent volume, but for some reason its flat! Also the stylist pulled my hair alot while blow dryng and apologized for hurting me which I appreciated, but have never experienced with a blowdry before. I don't think I'll be coming back, sad since I love the concept and the salon is lovely. + +Update: They offered me a make up blow out. I decided to try the place out again, thinking it was a fluke that my blowdry was so awful. Mistake! Not only was my second blowdry here mediocre, I ended up paying for the service. I wrote to their manager who had offered the complimentary blowdry, but no response.",review,oy_0JzDPYGXBZ2YhDhxK9w,0,6,0 +pa6K7DGByxBXxcVJ59nWMw,2012-07-29,4IQ0g-b7Dhmx5ybiQomXow,1,"Well, I guess the bar is much lower in Flagstaff, as we went to their restaurant in Glendale for breakfast. It was less than mediocre. Starting with the coffee, which tasted awful..it was very bitter and watching the waitress pour old decaffinated coffee into a regular coffee pot! Unacceptable. I had bacon and eggs...fair. Asked for the hashbrowns to be well done..didn't make a difference, I guess, as they came out raw. Also, asked that my toast be dry...came out saturated with butter. My husband had the chicken fried steak with gravy...you could have plastered a house with the gravy! As you can tell, we will not be returning. The reason we went, was because of their article in the paper this week. Just shows, that you can't believe believe everything you read. My husband, ""jokingly, suggested, that we cancel the paper!",review,J92bzxYVmyoLHULzh9xNCA,1,1,1 +2bdKR3l4o-S1CscLqqnvVw,2011-05-05,uJDLbfFnFGh_mG0u3N5w2Q,4,"I ordered the Chicken Pad Thai and Green Curry, YUMMY food was very good, ordered it spicy and it came about medium. But the food was what I wanted and expected, service was good I asked for an opinion on the curry and the waiter happened to agree with everything I asked. ""how about this is this good, YES he would reply"" made me wonder if he had tried it all. Beer and wine are both served. I liked this place and will return.",review,zMx_sj5v_wQhGD4Udm8rSw,0,0,0 +xMK01ZbVUYLLoyqoeWAIVw,2009-11-01,hPncywhJYLYG-QyjPr42OA,5,"I love, love, love the Keg! I've been to this location as well as San Tan Village, Tempe Marketplace and Desert Ridge and have had nothing but exceptional food and service. I really like the atmosphere, it has that dark, cozy steakhouse feeling without being too stuffy or pretentious. + +We enjoyed an excellent Halloween dinner here last night which included a ""Keg sized"" glass of Fetzer chardonnay, a margarita (very strong), the Keg Classic Dinner (ceasar salad, 7 oz filet wrapped in bacon, mixed vegetables and a loaded baked potato), bacon wrapped scallops (an appetizer that I ordered for my entree) and their fabulous bread with whipped butter, YUM! Our server was very outgoing and friendly and offered suggestions as far as the menu. The bill with tax and tip was $68, really an excellent value. + + Overall, a great meal and dining experience. I will definitely be back and can't wait!",review,nMwgC0DuMsBR0V5v4-J8wg,2,3,0 +N1xMSUfv1GmfHGa9a3VuJw,2009-07-06,DQbSGXSMKZKFmRmf68fiYQ,3,"We stayed at the Pointe Hilton over the July 4th weekend are were very impressed with the amazing pool facilities and poolside food service. However, I would send caution to anyone planning to stay at this hotel: if you do not have children, this probably is not the place for you. Screaming children swarmed every corner of this massive resort! So if you're looking for more relaxation and less SpongeBob, I'd suggest checking out the other hotel options in Phoenix.",review,js_yEOWZfqr5b_z2QEZIQw,1,1,1 +Y-BtrSR6NebejB34_Z-oWQ,2011-06-27,dbFSsCZwGS8Vuu2L7QDbGw,1,"I decided to break from routine and get a haircut at a local Great Clips. I called ahead and asked if they had an experienced barber that could do a flat top. The lady assured me that they did. I was Leary to say the least when she sat me in a chair of a 20 something fibbertygibbet dressed like Madonna. Half way through this butchering, she asked my advice and then the advice of the owner on how to accomplish this haircut. Kid you not, it was an inch longer at the sides than the center. I looked like a cross between the Gunny and flock of seagulls. I went home, set the clippers on 3 and finished the job......Would not go back here unless I lost a bet.",review,MVjV49GPz1pO-n_oaxdzlA,0,0,2 +-vHWAsiX0iHWJw-pkqv32Q,2012-01-05,2P1sh7g0Y53Hbj9SVYN6TQ,3,"The food is good, but took a while to get to us.",review,NmUN9q27IU3DiueGJvdt1Q,0,0,0 +x4L42igQPv4TFlqGR2Wthg,2010-01-14,iImgqTay3TRXi2qjUKgJSw,4,"Very consistent, thin crust pizza, made with fresh ingredients and excellent cheese! The market place is lively and the atmosphere is festive!",review,zS4tNnZaHqZZamzo0mPExg,0,0,0 +7_zL7NX_rDFwhbLp98PwZg,2012-05-30,ORQmSJCsn3HXIQ3iVWmONw,5,"I am OBSESSED with Ra. Thank God that it is a chain restaurant otherwise I don't know how I would get my fix when in different states. I don't care what everyone says about the best sushi, blah blah blah. This place is THE best! + +First of all it has the BEST happy hour! I was introduced to the restaurant's best items during happy hour when it was less expensive to be adventurous. My absolute favorites are the Sweet Onion Salmon, Salmon Carpaccio and Shishito Peppers. The Sweet Onion Salmon's sauce is to die for, the Salmon Carpaccio is soft and creamy with a nice kick of wasabi and the Shishito Peppers have the most amazing garlic-type sauce! I usually order the peppers with a side of white rice and drizzle the sauce on it for a more filling meal. + +Other favorites are the RAckin shrimp, Uchi No Salad and Vegas Roll--basically any of the happy hour items are great! + +Oh and I can't forget about the desserts, if you have any room left you have to try the cinnamon tempura ice cream, but share it because it is very filling.",review,odsfSlKTZSsuunDxcXUUuw,0,1,2 +yJYQ5P3TxP8i-u_GK8NO_g,2007-12-03,FKVlUZC2NBwO4VDvA908zA,4,"Two times a year, you can meander down Mill Ave and the adjoining streets to look at an array of art for sale. Everything from jewelry and pop art posters to handmade kitchen utensils, photography and abstract paintings. + +If you go both in Spring and Winter, you're likely to see a few of the same artists. For the most part, Tempe Arts Festival does a great job of providing variety. Plus, it's fun to wander and look at things you may not have seen before - let alone expected to see at an arts festival. + +This isn't the most exciting of art festivals. There's really no live music, unless you count the occasional melodies of flutes you hear when you walk by the vendor selling his handmade wooden flutes. + +I've been three times and enjoyed myself every time. I wasn't wowed. I never saw anything I couldn't live without. But, like I said, this is a fun event to mark on your calender for both Spring and Winter - even if it happens to rain during the festival. + +I give last Winter's and this Spring's festivals both a 4-star review, for the weather and company were great. It was my first year going, and I was happy to see that Tempe offered the Valley something that appealed to people who really do try and appreciate art. After all, it's a ""consumer"" type of event, geared toward bringing the community and artists together. I can appreciate that. + +I give this Winter's festival a 3-star review. The rain didn't phase me. I can deal with a few sprinkles. What bothered me was the mixing of ASU and UofA fans, both groups beginning to gather down on Mill Ave for the football showdown. Don't get me wrong, I love a good sporting event and understand team rivalry. I just thought it was unfortunate that the upcoming game and the fans' excitement took over the relaxed, casual feel that the arts festival usually has - you know, when you can walk down the street and look at art without running into an impromptu cheer section. + +You see, fans were screaming in the streets - hollering insults to the other team - and waving their school's colors high. (Once again, I understand the fun of that. I just didn't expect it to be all over the streets in the early afternoon. Maybe I'm naive, though.) The fans were a definite distraction from the art festival. Knowing what would happen when alcohol was mixed into the equation, my friend and I decided to bolt. + +Lucky we did. Seems like Tempe can't handle a few rain droplets, for when we were walking back to the car, a street lamp post nearly fell on our heads. Talk about a commotion. + +I'd much rather attention be fixed on the art festival rather than any football game or falling lamp posts, no matter how dramatic both of those things can be. + +I s'pose this echoes the old saying, ""There's a time and place for everything."" + +Word to the wise: Parking can be hard to find, or require you to shell out $10 for a spot. If you can, park somewhere closeby that's free of charge and hoof it on foot.",review,APLIPfq1Rf8QyhHHk2uAyA,1,1,0 +ehy9Vy1BKc9shO74chuUAQ,2012-04-24,t8z_np9fch9CdDbLrqyQzA,5,The best Asaian store around. Love the selection. Awesome smoked herring for cheap. Everything is so much cheaper and better than any other Asian store I've been.,review,EJaoDaba5ew7Pr1r8fT4NQ,0,1,0 +9Vu9KhK2-kBSM-FXvxXGNg,2012-04-23,J73BLMQ62VcYOX915sWJGw,1,"we visited on april 15th and And also Sunday April 22.. +I have twice now gone to your restaurant and twice been told that I couldnt use my BOGO coupon. The first time my mother went to pick up our order, she was told we didnt order the right food and we had to order off the main entress. The second time we ordered, I was told that we had to order off of the DINER SELECT menu. I did not have my coupon handy, and when I was able to read it, it says specifically, ""Offer valid for one complimentary Diner Select with the purchase of another entree. Complimentary Diner Select must be of equal or lesser value to purchase entree. Valid entrees include SIGNATURE DISHES, BOWLS, SALADS, DINER SELECTS AND LETTUCE WRAPS."" So why, on two separate occasions were we told conflicting information and not allowed to use the coupon, thus spending a small fortune on food, TWICE?!?!? Your customer service is far from what it used to be and I doubt you will be getting more of our business any time in the near future.",review,2YrJ7dUrF1jvaAo-Kp2r2w,0,1,0 +EzwpoKQrHgDHwpuCUw074Q,2010-07-11,a-tarNmx5GDkYzRwbMdY8g,5,"What can I write that has not been written about the greatness of In-N-Out Burger! Maybe my love is borne of the separation from it my primary residence in Dallas compels. I hope that when it opens in Dallas (yes, the plans for that are public), nothing changes.",review,g_uCN5y6wuz265tUxIICmQ,0,1,0 +Oj79-vTnjQk_jLr6oNbT0Q,2008-09-16,ijRGvI7Ti7ciSa7kpBDltA,2,"I will still call it the Counter, because I'm the curmudgeonly type that is sometimes slow to accept change. (Who is Chloe? Fox Restaurants need not have changed the name just to eliminate the boutique...) + +The food has always been tasty. The split pea soup is absolutely amazing. The hot turkey sandwich is delicious, the chopped salad is a spot-hitter. I don't think the prices are too terribly high, after all, it's in Kierland, which isn't exactly a discount enclave. + +The service. Ah, the service. First, let me spare the hard workers in my tirade. The cooks, and those who actually are putting together food and cleaning, do a fabulous job. The servers - or register-runners, have been incredibly disappointing. They invoke this kind of back-story imagery: + +""Mom! My gas card didn't work, I almost didn't make it to Dana's party, I mean, can you imagine if I would have run out of gas, and had to talk to a commoner?? Wtf, Mom!"" + +""Shannon, your father and I decided that you need to pick up a part-time job, we will still pay for your BMW, your insurance, your condo, your cable, your birth control, your health insurance and your part-time college education, but we think it's time you worked about 8 hours a week."" + +""OMG! This is soooo ridiculous and unfair, Mom, wtf!"" + +And that is how Shannon (name made up) came to work at The Counter. And that is why she sucks at service. And that is why she doesn't appreciate how hard the rest of us work to purchase an $8- sandwich, and how a simple smile, some humor, and a ""thanks for coming in"", or ""how is everything tasting today"", could make such an enormous difference in someone's dining (albeit counter style) experience. + +Instead, after ordering the Chopped Salad and the Pea Soup from ""Shannon"", the cook brought me my soup, and I enjoyed it. And I waited. And waited. There was no ticket, there was no chopped salad in the works. (The prep area is fully visable.) I graciously asked the cook if there was an order in for a chopped salad, and she said, ""oh no, I'm so sorry, let me make one on the fly for you!"". She did, I ate, it was delicious, and I thanked her. ""Shannon"" then presented me with my bill a full few minutes after I sat in front of an empty plate, I paid, and as she handed me my change she said, ""bye."" I don't think I need to elaborate on that. + +So - to the Shannon's of the world - hurry up and get a rich boyfriend and become a trophy wife so the rest of us don't have to deal with your shitty service, bad attitude and hateful unsmiling demeanor. And to the awesome cooks and service folks out there who manage at least a smile, bless you. Bless you, every one.",review,J1_dnSaVYi17BoxK00y9AQ,3,2,5 +jZ58NvLSZ6oVYlRta1zUNQ,2012-01-24,2Wm-u9udKjNhBzR9DTIGJg,4,"This is your typical airport restaurant that pretty much has a monopoly because your choices past security are pretty slim. However, this place has four saving graces - decent connection to the free airport wifi, a tv that had the NFL playoffs on, a full bar with delicious long island iced tea, and the french fries. The french fries are delicious! The burger is ok; I couldn't finish it all. My bill came to $20 for the food, long island, tax, and tip, which is probably about right. The waitress, whose prompt service resulted in no problems, filled up my water bottle for me (instead of using the water fountain), which pleasantly surprised me. So, four stars it is!",review,L3Jsd79upFBPk2z4EBOsVQ,1,1,0 +LxE7D6uigL3vLaasPU7Ewg,2008-11-25,TAo0fNJ7r_TngU6CiCLl2A,2,"I went to Sutra to attend the mixer where Yelp was being featured. After soaking in the cool ""sceney"" vibe, I decided that I was hungry. I asked the waitress for a menu. When she came back she told me that the right hand side of the menu was half off and made a couple suggestions. I love the names of the rolls that Sutra has. There were selections like ""Cougar"" and ""30k millionaire"". I had one of each. As if the rolls were made to live up to their namesakes, they didn't impress me; they merely annoyed me. The lack of freshness and flavor were the biggest factors in Sutra's failure. I ended up leaving plenty of sushi on my plate, but I was relieved that they were half off, otherwise I would have returned them upon first bite. + +I would not eat at Sutra again if I had a choice. I would advise you to eat elsewhere and come to Sutra to see and be ""scene""!",review,4UUIpbOTPmu43wuC2aSGkg,6,6,4 +cdwHgELA2puX2DNfwSt5EA,2012-07-23,SX3oQIQycIa7cEXzx1wIgA,3,"I have to say I was pretty disappointed with our brunch experience here. + +Ok class, let's have a lesson. What makes a good, traditional, Eggs Benedict? + +Easy question, you say? + +Answer: Nice crispy, toasted English muffin, meat of your choosing (let's go with Canadian Bacon), creamy delicious Hollandaise. + +What am I missing, class? + +Ah yes, a beautiful poached egg, which bursts when pierced, spilling it's silky, golden yolk. + +Ok so now that we've had our lesson, let's put it into practice. My eggs Benedict was served with three quartered tomatoes, very very very crunchy potatoes with no seasoning and two eggs Benedict. One was completely missing a yolk! Bummer. When our server came over, I told him and he brought out a new one, but the yolk was overcooked. Bummer, times two. My friend also had an overcooked egg on his plate. + +For the prices they're charging, we should have had four perfectly cooked eggs and well seasoned potatoes. It's brunch, not brain surgery. + +The space is beautiful, and the server was pleasant, but I won't come back. Too many other places to try for brunch.",review,palND-kF1qpMLhkcgAnSxA,2,4,2 +LzNJLEIo4gh-X_rmDkNkNg,2009-10-08,9mbS4N24OZy3MFEQA_M7eA,4,I've been for lunch half a dozen times and usually sit at the bar. Their beers are great. I'm a home brewer and am pretty discerning in my beer tastes. Their HopKnot IPA has a huge nose of hops if you are a hop lover--which I am. However the 8th Street Pale is probably my favorite. It is a great balanced English style pale ale--without the bitter edge of an American pale ale like SN. On a hot day their Kolsch is super refreshing and reminds me of being in Germany. I've had mostly burgers and fries there and they are good. The atmosphere is casual and the staff is friendly and attentive. If you are a craft beer lover it is a nice laid back destination to enjoy a brew...or two. They also pour growlers and sell cans of Kolsch and Kiltlifter in 12 packs.,review,gjph-223Qy0xmoBRNBo-4w,0,0,0 +UYHa5iKUddnZrlxF7taI0Q,2012-04-05,55K59eG8bvViey-fcezXzQ,4,"Ask to sit outside, if you can! The patio is wide, clean, and fresh air goes great with a Grand Slam. Very kind manager working the day we called to see if we could bring our dog with us before we had to run off to her dog training. She said they don't normally allow pets out there, but since there was nobody outside, she would allow it unless someone complained. We got there, passed the pup over the gate, and had brinner like champs while watching the traffic. The manager came by to check on us and even brought out a bowl of water for Tatum. Like everyone says, it's Denny's food... what do you expect? But I think the hospitality makes all the difference.",review,GPchh5Jw7Go8nhI7WqF-ug,1,2,1 +O-Xa9GCFWI65YiBD5Jw_hA,2012-11-28,wQp-Zi_XUXJErJg5SRkykw,5,Steak cooked to perfection.,review,hfGrlr9IgsG72d8-dXuKDQ,1,1,1 +KNIFSqzQADOZWDO_7T-KzA,2012-03-17,jOIy9UscRIrJwXkKPf7JfA,1,"The parking is my beef with this place. Why does a customer have to pay $12 for each time we park at the garage? If you move in and out three times, that's $36 for parking. Yes, my company was paying, but this was just outright stupid and I wouldn't make my company pay for this again. +I've been to Phoenix twice since then, and I've avoided this place and stayed at the Marriot. Much better place.",review,sVOg6fYIlKLqpq7ptRZIsA,0,0,0 +WPmamMTGAmNYXGoXW1mWyQ,2012-01-23,bB8w2NCLaFqe87mm0s4IQw,5,"So glad to have found great Thai in my neighborhood. We thought when we moved away from Tempe that we had lost our access to great ethnic food. Luckily we found this little gem. Great ambience, friendly quick service, and fantastic food. We ordered the green curry chicken and the drunken noodles with vegetables. Great sized portions for reasonable price. We got ours on a 3 out of 5 scale of heat and it was perfect for us. I have a feeling we'll become regulars.",review,1qdj_KsKTguk-vA4cVYMaQ,0,0,0 +Re0Xw-AYkn6NK7QRk3kPEg,2012-06-19,eeAZx1YUpN_4lwLL-_v5dg,5,"As far as indie record stores, this is truly as good as it gets in the valley. +It is a breath of fresh air because it is a REAL record store, and you can sample CD's along the wall to get your music fix. +I love how they have a list of recommended new releases. I definitely refer to them if my music is getting stale. +Recently, my husband and I have bought albums from Beirut, Andrew Bird and Iron & Wine. They have everything your heart desires- so go and get you some! + +OH- and I just found out you can buy concert tickets there, and they usually give out a free ""Magnet"" magazine with each purchase. Woohoo!",review,lOvgjEkecLfVJwJriEjt2w,2,1,0 +bGYQiDTdpTc_ok7cYsZzoA,2008-10-02,8h_4HMuDeLFfvMIE9FhZnQ,3,"Good: 22 courts, backboards, big pro shop, cold beverages, ice cream, nice clean bathrooms, nice people work there. + +Bad: Pro shop seems to only carry women's clothes and old old school mens cloths, the lights are the second worse in the valley (after Indian School Park) + +I have never paid for courts because I play on a league so I dont know about the rates. The courts were clean and well kept.",review,JVTvEtBDi-WDqB0PSTf4BQ,0,1,0 +iHmfkYeEsIxbAqEj3dloQQ,2012-07-03,N_hL1-fyunhVpDDX6fz9Sg,1,The owner has changed hands & this place isn't what it used to be. If you want up to date paper & quality product...go to Scrap Happy OR Crop Girls!,review,HY9A-ShZQ1MvdFvEhNY4LQ,0,1,0 +yLfYR-PvIzAv9DnEH68Rgw,2007-02-07,9JoA1TV3OMmliDXPx5_fHw,3,"I like the Bamboo Club, but it doesn't seem to bode well with purists. It is a very Americanized spin on Chinese food, with some dishes it works well and others not so much. + +I struggle with a fierce addiction to Panda Express so I refer to it from time to time, but I feel I'm justified this time. Bamboo Club is like a deluxe version of Panda Express. In fact, their best dish is also the orange chicken, only done much more tastefully than their greasy counterparts. + +It's a little overpriced considering what they are offering (semi-glorified mall food) but, all in all, not bad.",review,Ovpa3S8xD96dLE5eDxcxJg,0,0,1 +uqrkLgKMUh9kM4L3L_jwyg,2010-08-18,-ivArEXg8QSoZr4l6TD-pg,4,"I was reluctant to try this shop at first. Some of the reviews that popped up via Google lead me to believe it unpleasant and not well-stocked. Well, you can fool some of the people some of the time, and today, I was no longer fooled by whatever weird people out there have it in for Double Joy Beads. + +Firstly, their Czech seed beads are the cheapest in town. I'm not even kidding. I purchased six half tubes and one full for around $10. The organization thereof leaves something to be desired, but at those prices, browsing should be a joy. + +Their pressed glass and fire polished selections were of average number and price. + +In the Swavorski department, standard bicones, cubes and rounds are not available as singles- only some of the pendant materials, and even then, some come packed two to a bag. I was a bit vexed by this. What if someone wants one Baroque for a pendant? + +The back sported a nice assortment of findings and stringing materials. Particularly impressive: a display of natural copper items ready for raiding. Sales bins occupied the front- some bags currently up for less than a quarter. + +I found the clerk on duty during my visit was more of the hands-off type, but quite personable when I checked out. + +The store itself is a bit hard to find, tucked in a winding strip mall. It's directly across the street from Arizona Art Supply. That street is Scottsdale Road, but if you can see the art store from the side where Double Joy abides, you can't be far.",review,ggEHaGGCiUVmE2N5iZy6DA,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-12-30,537SAjlaQaV1vkePOb-EPw,5,"One of the most memorable breweries I've been to, not because of their personal beer choices but because of how they run the place. They have over 30 beers on tap from all over the country. If that's not cool enough, the entire back wall of the place is refrigerated coolers full of bottles and cans of even more craft brews that you can hand pick to drink in house...OR....build your own 6 pack to carry out. Brews from all over from Epic, to Dogfish, to Maui Brewing, to Sierra Nevada and the list goes on...and on....and on. It really is a nice concept!! Oh....and their food is great too. Mostly your normal bar food but pretty tasty. + +As for the service? I was incredibly impressed at how the girls that were serving us really truly seemed to have some serious beer knowledge. They were able to help us pick the right beer for our liking and they were right there when the brews disappeared regardless of the fact the place was packed. + +Know before you go: Don't let the exterior fool you! It's a small portion of a strip mall...look hard or you may miss it",review,MYLBku4sRCoZmi4Z7yESGw,3,3,0 +_CG5zJAoNN6gszjhSyUcww,2010-07-11,7Lvwa3c3CJvrFxfhUkEMIA,4,Cho Dang - Fo Sho! Looking for Korean food can be tricky. Cho Dang offers my favorite entree cooked just right. Tofu Soup w a fresh egg - yum! Broth could be spicy but definitely worth the burnnnn....urrr!!! Decor of the place - I dig! Dark wood flooring with some picture frames of plants; then the ceiling is painted sky blue to give you that outdoor serene feel. Service was great - my waiter was a young man that couldn't tell me what Hite beer taste like (told him to take a sip and let me know :) ) Shhhh...don't tell anyone. Needless to say my dinner was delectable - definitely a return place - enjoy my friends!,review,XqMkm-DD9VsdcKx2YVGhSA,1,0,0 +RFMcLH3_58eAwvSfvLhJew,2012-02-28,H0BfUTLr8yqd7YdFbYNRIQ,5,"Been a patron since this eatery first opened. This is honestly one restaurant that has not been hurt by the economy. The food is that fabulous! My absolute favorite salad is the Turkey Waldorf. My children always get the side Caesar with Potato Cream Cheese Soup. The husband always gets either a Cranberry Scone and Onion Bagel slathered with cream cheese OR a Pretzel and some sort of sandwich. + +The only downside to this eatery is their lack of seating space during the lunch rush hour. Get there by 11am if you actually want to sit inside, otherwise on a windy and cold winter day you might find yourself outside sitting on the patio (as I have done in the past.) + +Even with the lack of seating during rush hour lunch....I'm giving this place five stars and making sure I'm there before the rush hour. :-) Happy Eats!",review,9TFwQbcSIHb-nXSHvFMCgg,1,2,1 +uEW1NwL9h5N0zI2Ip9UKrQ,2006-12-27,-JFnqCMGxF3KbiJe4KNsZg,4,Julio G's lunch menu offers some very delightful dishes. I recommend the beef flautas special with rice and beans. The wait staff was very nice and efficient. Good group restaurant spot!,review,YZQYRysjzIHUa57ffbJWsA,0,0,0 +3l72FflaaeI0tWEAWN3-gQ,2011-02-27,0hd9ZhRpts7eP4fFS0jxQQ,2,"With a name like America's Taco Shop, I had to check the place out. + +Got the ""homemade"" ceviche and the carne asada taco. Thought the prices were a bit high for the quality and amount of food that I received. + +The ceviche and tortilla chips that came with it were a bit bland. The carne asada taco was good but not spectacular. + +What got me though as I sat indoors in their dining room was I started to notice how dusty everything was. There was a grimy layer of dust over all the decorations on the walls and the tops of the condiment bottles were frankly disgusting like they had not been wiped in ages. + +So I decided to check out their bathroom. Sure enough, the ladder they had leaning against the wall had a layer of dust on them . . . . + +and I felt a little grossed out . . . let's just say, if the public areas like the dining area and bathroom are not clean and well care for, I don't really want to imagine the condition in the kitchen . . .",review,ru8p3RTlk8f9LB_3zLXURQ,0,2,1 +2I666dqzs1XB6xigIKa9bA,2012-11-19,aiDZGZcKSDGfblmMyBhsnw,4,"Stopped in for lunch with an old friend. We had lots to catch up on, so got a booth inside where it was quieter. The decor is true to Tom's heritage at this location, modernized with lots of historical pics on the wall. The Governor's Room has an attractive gleaming golden state seal over the doorway. + +Service was excellent. Food was OK. Great bar with Tom's specialties, where I don't water, so no info on that. I should have had the 1929 chili, or a burger to really try the food. I had a Cuban sandwich with house salad instead. The salad greens were fresh, the tiny Tom atoes sweet and crunchy. The sandwich was a Phoenix Arizona Cuban sandwich from Tom's Tavern, not like a Cuban sandwich made by somebody's Cuban mother or Abuelo using all the right Cuban ingredients. Kind of like Mexican food in Yellowknife, Yukon Territory. Good test. + +Next time I'm having the burger. There will be a next time. + +Ambiance 1 +Service 1 +Cleanliness 1 +Cuban Sandwich 1",review,Ry48Bta6spNowOkiMNC_xg,1,0,0 +Y_Y91oeUrIwYa18F8ey5NQ,2009-12-19,zcqL-Zs4Kmbg3Tn5Y4ZekA,2,"The burger I had there was tasteless and had a weird texture. The fries were decent and their signature Rootbeer was delicious, but I've definitely had better elsewhere. + +In all fairness, I did not try their frozen selection, so I will definitely come back to give them another try.",review,s8fJCSltyub39Q1dqzjb6g,2,3,0 +M6fjHpkL9IRI-nI0BattRw,2010-03-03,dYCrJzhJs-jELKVGz7TCSQ,3,"i love mac n' cheese & i love the dark. +these 2 facts make me like this place. + +the service was good. the prices were reasonable. they had a decent selection of craft beer & local wine. the dark colors and candles were comforting. (however this atmosphere makes the headlights from the cars parking up against the windows somewhat more obtrusive) + +a solid 3 stars for me.. i wasn't blown away, but i wasn't disappointed. +. +. +. +p.s. i think maybe i'll miss lisa g's..?!",review,wIi2J1UGRB2G_3vu5eNK3g,0,1,1 +ZztUsJyGDwPySepmXRG13g,2011-01-12,f1FImVsdpvR8rNc9F95tCA,2,"This place is a must go if you are some beer starved party animal ASU student but as an adult who is one step beyond the let's get blottoed for the sake of getting drunk this place isn't really worth visiting. The beers really aren't that good compared to Four Peaks/Papago/Sun Up/San Tan, or any of the other brew pubs around. Really wasn't that impressed with the food either. The only reason I gave it an extra star than one because the service was good, of course there were only one other group in the place at the time.",review,b2DKC4kC8-QeSeGZ_MF3XQ,0,0,0 +xNfGoC9CW33GjSPLcfbwUg,2010-08-23,kWPsNiuhlVH14mZtLBGcaw,5,"I love this place. It is one of my favorite Antique shops in the city! There is a wide selection and variety of booths and items. There is everything here from match boxes, cute purses and hats to retro/vintage furniture, wacky mannequins, old cameras and old toys to reminiscence over. And! They are decently priced and have a nice helpful staff.",review,7o7MF9B9lxcWupE8jiLOaQ,0,0,0 +WNy1uzcmm_UHmTyR--o5IA,2012-03-14,sOs2dB9rbO7p-MB2EJ3cvg,4,"I am not as enthusiastic about the Cornish Pasty Company as some, but if you are looking for this type of place to eat, you will probably enjoy the experience. + +A Pasty is basically a turnover; at Cornish Pasty Company, it is a very big turnover. One is a meal. Here they precook them until they are almost done, then finish them when you order. This process introduces a drying effect that detracts from the product. They do serve a sauce with each pasty, and as the sauces we tried were quite good, you can use the sauce to counteract the dryness. When all is said and done, the pastys are tasty. But not knock-your-socks-off great. + +The atmosphere at Cornish Pasty Company is cramped and noisy. It seems more like a college hangout than a restaurant, and this is not surprising because it is a college hangout, but one where the quality of the food has attracted a wider clientele. If you like this kind of atmosphere, you will be right at home at one of the few small tables or at the bar. I prefer the bar. + +Prices are low (typically about $9 for a pasty), considering the size of the meal. + +Hints: +1. It is always crowded. Try to come at an off hour, like 4:30 on a weekday. +2. Skip the very average salads and the oven chips (dry, tasteless), and probably the other appetisers. Just get a pasty. If you are an abnormally big eater, follow it up with a dessert pasty. +3. It is a bit hard to find. Turn North on Hardy from University to find the Cornish Pasty Company in a small shopping center hidden by a large gas station.",review,6qL7A04QNfLAj5Tkig34YQ,0,0,0 +0AZiq_OMKs3I9lTmwd5PSg,2009-12-30,swAgg95rDJ6I2SLOGkTZdA,2,"I've never been to a restaurant where we (a party of 6 with a reservation) sat at a cleared table with no water, no bread, no cutlery, no service for 15 minutes before receiving a menu .... when we finally had someone provide a menu, it then took another 15 minutes to get the wine we ordered. +Still no bread, still no food. + +The server dumped the wine bottle on the table (unopened), and went to find glasses. 10 minutes later she then threw the bottle opener at our table so we could open the wine ourselves while she went to find glasses. Most (!?!) of the wine glasses arrived within the next 10 minutes, and still no bread or food. +Do I need to go on? + +And while the server apologized profusely, she never offered to take anything off the bill or even a dessert on the house for our clearly disgruntled group. + +Food was fine -- the house-made burrata is quite remarkable. But not enough of a reason to return. Others we were with have had better experiences, and I would hope for the owner's sake that our dinner was an aberration...",review,Z7aw8EbiklwKeaIzGj5Otg,0,0,0 +N_TlJCR5AkZhmrCDqbm2tQ,2010-01-31,678M9FKyQPa_QDWEnCSxFw,4,"It was a busy Friday when I went - about the time that everyone gets out of work early. So you'd expect more than ONE cashier there. But nope, no such luck. + +There were about 5 people in front of me and the line took about 10 minutes. But we had decent conversation about how the local library was going to be closing in the near future. + +Overall, I generally like Borders over B&N in the coorperate book world, but probably won't be coming back to this one if I feel the need to buy a book. I will if I want to relax, sit back and perhaps browse at some magazines.",review,T5mD6ggC7fh48QgXR0LevA,0,1,0 +CVp1BFI5gpXqo31C6Lwkjw,2010-07-24,d_Ima0-9breBd8T9wAth9g,5,"Jon, Tess, Charlie, Erin, Kathleen and whole gang are the best!!!",review,1BW2HC851fJKPfJeQxjkTA,0,0,0 +gFJtzwGmDTABRwL2F8GsSw,2012-11-20,kkfd3jYQr_lXEd-lBAJ8Sw,5,"Our waiter was Vincent. Very polite, helpful, accommodating, and knowledgeable about the menu and the taste of each item. Service was A+! The food was fantastic. No errors, was tasteful, unique, and fresh! I will definitely come here again.",review,F9NM9hDWNTfPG7eWhEc7pg,1,1,0 +74qDPs2dR6gSzDp6N1U-Og,2011-10-16,GChHCIb-YQls3eZ-C2E2sw,2,"I had been wanting to try Sal's for quite a while but never got around to it. Until today! I got a side salad and the 14"" Sal's Favorite. I must say, not impressed at all. The salad was made of what looked like a bag of pre-shredded lettuce. And not very fresh either. The pizza was just ok, I've had much better. Very sad and disappointed, unfortunately I will not be going back to Sal's.",review,-d0M53vRvvZ_ZXL0nWbH5Q,0,0,0 +4rySWsfL5enT7t4XuVNJuQ,2008-03-11,sm2GQCeK-Ez4YCBp8TxPXQ,4,"Had to write a quick review to this place. +It kicks Denny's ASS. +The food is always done well, eggs made to order, fries always hot and crispy. +Sandwiches are full of good, fresh ingredients, breakfasts are all delish. Waitresses are a good sweet/salty combo. +My friend made a side comment the last time about wanting my pickle, because she had breakfast and I had a sammy. The waitress, without a word, came back to the table with a plate of the crisp briny spears. Nice xtra touch! + +All in all a pleasant,cheap, laid back, 24/7 diner, which is damn hard to come by in this day and age.",review,YwISM44nNmOSeXdsL-qZYw,1,1,0 +WNy1uzcmm_UHmTyR--o5IA,2012-06-12,Bc8IqLkd83WIf9Pk2IkipA,2,"I hate giving this place two stars, but the service has always been inconsistent. I've been coming here since 2006, and the food has always been excellent. Service has been spotty though; during my most recent visit our server blew off two of our drink orders and I had to order from the bar myself. Honestly if they would hire some frumpy old veteran servers then I bet everything would improve ten fold. Anyone else ever had this problem?",review,9F3ZmyGKIA6ALNWgEq3Log,1,5,1 +NH67MdKaFGNcP-dlu56pyw,2009-08-09,SOizwSwvCt72RVGnnjq6Kw,4,"While waiting for Ayesha to have dinner at Thai Elephant, I tried not to let the meth-crack-head who pretended to talk on the pay phone deter me from a great meal. She had no shoes on and walked up to the pay phone and started talking. It hadn't been ringing and she didn't dial a number. +I'm a sucker for Touch of Thai's catfish dish, and they had the same one on the menu. +It was good, but the fish was a bit overcooked. I would have liked a bit more ""sauce"" as the dish was a bit dry. +Service was excellent. My iced tea was refilled without asking throughout our meal. +Of course, spending and evening with Ayesha over spicy food as we both wiped our noses from the heat of curry can't be beat!",review,6kmu0mYbdpMIOZ6Y0eVsxg,9,10,5 +jEWfxxA_kjeJE_Z_ku3zLA,2011-05-11,podNEIPfgVzekzx1fauTPQ,3,"Nice restaurant, good food, SLOW SLOW SLOW Service. + +Went there with a group, and the food was all good but the service wasn't great. I ordered Chicken Katsu before the rest of the group ordered tons of Sushi...the Sushi came out slow, but no one cared. And then I realized we had been there 2.5 hours and I still didn't have my Chicken Katsu - I asked the waiter about it and he had totally forgot. I eventually got my food but everyone else was done eating - he was apologetic and we got a free dessert but it just sucked for me since I don't eat sushi...",review,mt1Sy0paU9h9f9e8FUTWdw,0,0,0 +It8Q9-l1EEtTr9NPpTgGPA,2009-12-23,mPTLQUEAfccRD3Cgetstig,4,"I don't have much to compare it to, since this is the only Venezulan restaurant I know of in AZ. It's very small, definitely family-run, with what looks to be the adolescent son taking orders and bringing out drinks. The young man who seems to be the owner shares the space with Rosati's. + +My foodie group saw a write-up of this place in the newspaper so we decided to trek out to Mesa. It was pretty darn good, especially for the price! + +They were out of Guayanes (the newspaper had recommended this arepa) so we ordered three other arepas. In case you don't know, an arepa is a corn fritter type sandwich. We had the queso de ano, which appeared to have a salty cheese and potato in it. It was very yum. We had reina pepiada arepa, which was like a mayonaise-y chicken salad with avocado- we didn't care that much for it. But the Pabellon arepa with fried plantain, shredded beef, and black beans was a hit. + +We also had the pabellon plate which was quite yummy with the best fried plantains I've ever had. Oddly, the rice was a bit hard and dry. The cachapas jamon and queso de mano was a favorite with my fellow foodies- kind of like a pancake sandwich with ham and cheese. We finished with the quesillo (tastes exactly like flan to me) which was very good. + +I'd say it's a bit of a drive for some of us, but it's definitely worth checking out. Not for those looking for heart-healthy eats!",review,5-2JHDnSsoSaoRKDHPeTtQ,2,5,0 +tdeHd2AVYlEnz9F1UGb84Q,2012-03-28,AyW23Q1JezoqckWQtLfePQ,4,Cool hotel bar in a cool hotel. Get a booth and enjoy the crowd. Be sure to get a cocktail or four at the hotel lobby bar before dinner during happy hour. Cool place and glad we checked this place out.,review,vt0y5E2LUFeG0_PZ1b3d_Q,0,1,0 +oXKPSI-RUqOvmuSCh_DEQQ,2011-07-29,O7mqsMPn90yNwioxGvWDVw,4,"4.5 Stars +The seafood tower was amazing and my ribeye was very good. Very expensive. Much better experience than the ocean club in Newport Beach.",review,ix2q3b4FcbeV7L52Lxj33g,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2012-11-25,lZVKOyoXbFlyyLj8SP1-Kw,4,"Open late, that is a huge plus! Been here for lunch and for dinner, also in different times of the year. Service is always stellar. Food is always good. Sometimes there is something weird with the check such as charging for things that were supposed to be included or full price for happy hour items or something like that. Not sure why that keeps happening, there seems to be some pressure on the staff. +Otherwise, the place is trendy and seems small and loud in the busy times, spacious and accommodating when just the right amount of people. +Best time is dinner, in a booth, not on a weekend and when you are really hungry as the food portions are generous.",review,4hrVQL0nc9JHfzW1OZV48w,0,0,0 +8ZwO9VuLDWJOXmtAdc7LXQ,2010-07-27,OLQ8Va7P37hKQaUh8jXGwg,4,"I just stayed here a few nights back, and I thought it was pretty great. Comfy bed, nice sheets, free Internet, good temperature control, Aveda products in bath. The hotel itself is a bit of a hodge-podge decoratively; kind of like somebody got a subscription to Wallpaper and decided they could be a decorator. That said, altogether it is sort of winning and it feels like a good value. Plus, the restaurant downstairs was perfecto when we visited.",review,6Locm87mkNkfVMzgwbRDaw,0,0,0 +XeoeF0twXRV4mUZJgIjc8A,2012-04-07,EXiTtoAhcLtX7h4s5Ddodg,4,"I'ld give 6 stars if possible for each and every appetizer we have had. The tomato soup, caesar salad, beignets, and crab dip are all way more delicious than they have any right to be. However, the stand out is clearly the shrimp canapé - one of the best appetizers I've ever had. Period. + +The other side of the coin is the at-best mediocre entrees. The first night we had a gift certificate and ordered an absurd amount of food and ended up leaving both the burger and meatloaf largely untouched. On subsequent visits the appetizers were consistently amazing and the variety of entrees just didn't live up to the apps. The blackened tacos were bland and tasteless. The meatloaf was swimming in liquid. The burger bun was overly toothsome and the burger bland. + +Long story short - order appetizers (which there are more than enough of) and you will be happy. Also happy hour is great but the wine is overpriced otherwise. + +Take away = worth it for shrimp canapé if nothing else!",review,iKbTz_0m4rEOB4yTL12VSQ,0,1,0 +zruUQvFySeXyEd7_rQixBg,2007-11-25,NcoKTo4t4esEMvsbanIebA,4,"Standing like a paragon of virtue in a sea of decadence, U.S. Egg's Scottsdale's location is place of redemption, both for your soul and your appetite. Open only for breakfast and lunch, the restaurant attracts as diverse a clientele as the 'dale itself. This is not somewhere that relies on being a tourist trap: some locals are known to eat here daily. + +Its location is slightly outside the Old Town Pale, but still within walking distance unless it's the height of summer. Secondly, it has its own parking lot, making it as accessible as Denny's or a Marie Callendars. Nevertheless the lot is often full on weekend mornings, and you will definitely see people waiting. unless you arrive very early or late. There is both an outdoor patio seating area and a large indoor dining room. + +Having gone numerous times alone, I am always impressed how quickly I am seated. No bias against tables for one here. The servers are all personable and graceful...yet not self-aggrandizing. This is not a Michelin four-star restaurant however, and you should not expect being waited on hand and foot. Given the volume of service, it's also commendable how few mistakes are made and how prompt everything is. + +The food is also excellent. Although you can order both lunch or breakfast, I tend to crave the latter more. There's plenty of variety on the menu and they have both innovative dishes and old staples. This helps to explain why the uber-fab Scottsdale club kids patronize this place just as much as the Cadillac set. Prices are very reasonable for Scottsdale, though perhaps too much for a dirt-poor college student or person living only on Social Security. + +The building also capitalizes on Arizona's sunny weather with high ceilings and plenty of windows...causing plenty of light to splash in and helping to evoke that sense of morning and freshness. There's plenty of ambient noise as a result...but it's almost reassuring. Not to mention that the hearing-aid crowd and club crawlers may be too deaf to notice. + +U.S. Egg is not flawless, however. From a cost point of view, the restaurant has to contend with the fact that breakfast is usually the cheapest meal of the day. Without a dinner menu though to recoup cost, diners have to grin and bear any perceived cost imbalance from say Denny's. Neverthless it's still worth it, in my opinion. The other shortcoming stems from the food. Different dishes often rely on the same sides. If you get sick of their potatoes for example, you can be really out of luck despite ordering something different every time. Moreover their signature dishes again may not impress truly demandng foodies. + +While it may not cure your hangover (or incontinence), U.S. Egg remains firmly on the map for locals. Managing to please all of Scottsdale is a tall order, and the owners, managers, and staff all should stand tall and be proud.",review,IMsUuPGFQoNMeZzbhqtiCw,1,1,1 +ncuj9qx4WjprfJfYJGdmtQ,2009-07-25,yNkbGXTg9q_Bl293-hpgww,5,"Holy WOW Batman! + +This place is ONE-OF-A-KIND...it's Awesometown & it's YUMMY! + +Once you step inside you'll instantly get the picture. It's WOW factor is off the meter. + +Smeeks sells a never ending selection of treats of all kinds...it's THE PLACE for unique, off the wall, goofy gifts. AND CANDY. + +I give a big round of applause to LOCAL, small business owners who stick their necks out in ANY economic climate but in today's woe-filled world of running a business, they become instant SUPER HEROES! + +If a picture is worth a thousand words, you can take a peek at 25,000 more reasons to visit Smeeks here: +http://monkeywonderland.com/blog/",review,_PrNbtn0GETIAODetNHytw,1,0,0 +aApHpyUbnqBJmL_3X6UFOA,2011-04-20,J08O_AWboVS3S-gV8p2Wvg,1,"Wish I could review this place on service but I wasn't able to get one. Walked in at 1 PM on a Sunday afternoon for a mani pedi, was told by the front nail tech to have a seat. I get it, I walked in on a Sunday afternoon so they are going to be busy and I am fine to wait. My wait turned into 30 minutes and no one said a word to me. Then the front nail guy tells me it is going to be another 20 minutes before someone would be able to get to me. You know your salon, you know your techs and how long it will take them to do a service as well as how many people are in front of me so it would have been nice to have gotten a expected wait time before I wasted an hour my time. I ended up leaving and going to another salon who saw me right away + +The place in general was dirty, nail polish spilled down the wall and dust everywhere. I did not get to see how clean their pedi baths and chairs were but the front waiting and front desk area was filthy.",review,tmTxuDadTVc-KFyhvPuseQ,0,0,1 +k_aOcqWOHWprjs7ykdzlAQ,2011-05-03,jV8urg-jD-Bcmbw7sRCP5g,2,"This place looks sleek from the causeway, but the food is marginal. We had the veggie taco plate and the veggie burrito. Both lacked flavor, even the ""spicy"" salsa was bland. Server was friend and attentive, that is the only reason I am giving it two stars. I would just go here for a drink next time and skip the food entirely.",review,Ac7dJXB_JN_J40ZOunnwAA,0,1,0 +ZdyxpksKc1Go0WNuFv9Pjg,2012-01-30,qS2a6XOdlGgF5h0l7k1B_g,1,"OH MAHHH GOSH, what retards they have working here. Came in to pay for my phone bill and literally stood in line for 40 effing minutes. They had TWO ppl out on the sales floor that afternoon and the store was freaking packed. Really? What genius decided to schedule TWO freaking meat-heads who knew diddly squat about anything on a busy Saturday afternoon??? And no, I don't care to upgrade my phone. I JUST WANT TO PAY FOR MY BILL AND GTFO OF THERE!!!! Do you really think that after such poor service I am going to want to up your commission rate by purchasing/upgrading my phone with you? NO.",review,k1iTMp7uW1CSQFCq4jl56g,0,0,0 +1sNa5oW9ZYX8MbMFkx9LzQ,2012-04-12,mskE3wn8J8tLHHOiOPRDKw,5,"Definitely an awesome buffet. Not your typical buffet stereotype. Love the sushi. Great variety of things to have. If memory serves, it was 19.99 when I was there. I think a tad high, but someone mentioned 25 bucks, so maybe it's come down :-? Sake is priced well, and the beers.",review,Ja8FvcWiWHEXME2vmTPTkA,0,1,0 +VAlzQ-qJsSoTcJTc_1Pd1Q,2009-10-07,j_B9YUo9vUXdclPbadiseg,4,"My company is into giving back to the community, so they invited my department to volunteer at St. Mary's during work-hours this week. It was a great experience and I would do it again! We filled boxes that get passed out to families in need. It makes me feel so good to volunteer and help others. And I feel so lucky to work for a company that supports and encourages this kind of service! + +St. Mary's was the first Food Bank in the world, they have expanded into a national effort. I also learned that 1 in 5 children wake-up and go to sleep hungry, 1 in 7 adults (18-64) have to decide between eating or buying things like gas/rent/bills/etc, and 1 in 12 seniors (64+) are struggling with bills/medical needs/food. + +Help someone else and make yourself feel great - volunteer!!",review,s8fJCSltyub39Q1dqzjb6g,13,14,6 +3GAPcBG8SowgrpS6UHlDeQ,2010-05-16,0EQA4piRJdL0QtrA2oJeqw,4,"Tried Bombay Spice last night. After reading the website and reviews, it seemed like it would fit perfectly our combined need to finally find good Indian fare in Phoenix AND not blow our calorie budget (husband and I are trying--and succeeding!-- in losing weight). Success on both counts! + +It was Saturday at about 6:30 and we were seated immediately. The place was almost full. We sat on the patio, which was lovely, but might get too hot during the summer (I didn't see any misters--You're Welcome, Mother Earth!). + + Service was attentive, and our waitress gave us several recommendations. + +We ordered: +Somosas (baked, I think, not fried, which made them a little messier to eat but still very very tasty). +Naan (chewy, moist, naan-y...yum) +Grilled Shrimp skewers (a little on the skimpy side, but very tasty, and served with grilled peppers and onions and a delightful mint sauce). + +We each ordered individual entrees with basmati. They encourage you to order the two-entree choice, but we were trying to avoid over-ordering, and it turned out to be exactly the right amount of food. + +I ordered the Cauliflower and potatoes, which was moist, savory, a little spicy, and very tasty, albeit lacking a little in the sauce department (I would have liked a little something to spoon over my rice). + +Husband ordered the Chicken Tikka Masala, which was exceptional. They claim that they don't use cream in their food, so I don't know how they made the masala sauce so creamy and good, but they did and I'm not going to question it any more! I would have licked the bowl if we had been at home. + +Next time I think we'll get some apps again but try the Bombay Plate to share, which is 5 entree choices and rice. That way we can try a whole bunch of things. + +$35 before tip for naan, two appetizers, and two single-choice entrees. Not bad for a Saturday out. We'll definitely be back, even though it was kind of a drive for us.",review,HvaVgP0S0dFaCbBDIQIkag,0,0,0 +jQt1xMibtitBczJN6LXT1Q,2008-07-07,c9KKGMNN9HSPP1BzLZhFTA,4,"I always have fun here. + +I went here on new years this year and had a good time. + +I did see the most pathetic lesbian here. She wore her make up and dressed just ike the Shane Character in the LWord. + +Al I could think was, WOW what a loser. +and I wish I was that skinny + +Do you have no personality that you wear a costume everyday.!! + +So I was with my girlfriend in line and we were holding each other. She walked away for five seconds and asked my girlfriend for her number. +My girlfriend totally dissed her. +I walked up and you could see the fear in her eye. She just kept saying Sorry, Sorry, Sorry. + +Well anyway aside from that I like this place. + +But dont go in the bathroom unless you have to. There are always tranny's doing coke or k in the womens bathroom. + +Make sure and use a tissue to lock and unlock the stall",review,ZZ43etAB2n_T53YBYtf8Dw,8,13,12 +E4b5OC_6mZ0V7B6Nyjncsg,2011-08-09,4oplrng2W2PyyvfS72KiOw,5,"MMMMM. Let me break it down for you...when you can hear staff in the kitchen saying ""oh wow, that looks amazing"" as plates are coming up in the window, you're in for a treat. I mean the fact that they see these dishes time and time again and are still excited by them....! Then flash forward to the next day and if you're heating up second lunch (I like to eat) in the office micro and employees comment on the delicious smells, yeah you're doing a-ok! I was solo this time because Gabi M was home with baby Mess and I didn't think to call Jarred (sorry bud!). Eating alone certainly wasn't as much fun but it was delicious. Eggplant is a must. You just HAVE TO get it, done. In addition I also had a really yummy chicken dish with wide noodles, veggies, basil, and a spicy/sweet sauce. SO tasty. The portions are enormous, so don't balk at the prices. Grab two entrees, share with the group, take home leftovers...that simple ;). + +Know Before You Go: I'm only in Scottsdale one every other month and Tottie still remembers me when I come in, and that rocks! Big fan.",review,lC0KGXmIhyjzghBUlVnkhQ,6,3,3 +5SS69rC8XWvdlD1OHifEEQ,2011-02-08,stuJwnGu1UXYBjV7f8fFZQ,4,"Don't let the name deceive you. Beaver Choice is an EXCELLENT dining experience. + +My girlfriend and I decided on a whim to give it a shot (after making the obligatory puns and double entendre's on the name). After staring at the menu for two minutes, trying desperately to decipher what we were to have, we gave up and asked the guy behind the counter's advice. His name was Chris and he was extremely helpful. He sold us with free samples, rather than descriptions of the plate. + +I ordered the gravlax; my girlfriend ordered the laxpudding. We entrusted the quality of our meal to the word of Chris and the small sample we tasted, because, in my mind, the ingredients had no business being together in one dish. Both dishes were based on lox, aka smoked salmon. + +We were both pleasantly surprised at the dish that greeted each of us a few minutes later. The food was EXCELLENT! And while not the cheapest dinner in the world, you get an enormous bang for your buck. Your plate is literally stacked with food. Kudos if you finish it all. + +Bottomline: Beaver Choice has a weird-ass name, but it serves some of the best food in Tempe. We will be back for sure, and I encourage each of you to give it a shot. I guarantee you won't come away disappointed!",review,v09OVnv2yU8z2-uok-07EQ,0,7,0 +OkRzw22eDg45do8i-1jHow,2011-12-06,sZetg2MgIYxLu-Z44FIlYA,2,"I love love love consignment stores...and walking in this store, the smell was great... however... + +I have to say i am disappointed with My Sister's Closet. I had heard such great things, so I was really excited to go. They did have some amazing designer purses, including a $3400 jimmy chu purse that was huge and gorgeous for $1899. + +The designer section clothing was hung on nice wooden hangers with their logo (Nice touch). + +However....... The items I saw around the store, and my friend with me agreed, seemed like more than 40% really were more appropriate for a thrift store, and a lot of the items were really dirty (and still had high prices). You could see food stains on a dooney bag.. a coach wristlet, black, had white food smeared all over it... still highly priced for as dirty as it is. The thing is... even if it is a brand.. sometimes your store reputation is worth more than the 10 bucks you'll make by selling something dirty. Just my .02. + +I saw sensors put though jeans pockets, wallets (in the leather!) and other questionable placements. When I asked about it.. the sales person just said, well maybe there is someone new who does not put it in the right place. That damages items people are buying, and they may not realize the big holes placed by those sensors. + +I loved there ""on the web"" tags. I've never seen that before, but they are really pretty and catch your eye if you want to take a closer look. + +I prefer consignment stores to identify the sizes on the hanger by color coding or some such to make it easier to find my sizes. I get bored really fast trying to find my size.. As a consumer, I would have spent more time looking had I been able to really scan the racks easier for size. + +The shoes are nicely organized.... and clearly labeled. They were not over crowded so it was easy to see the shoes. + +There are some positives.. I purchased a le sportsac tiny bag for 9.99, it was new so i do feel it was a good deal. but really be careful what you buy.. The prices for the purses seemed high for used resale and their obvious usage stains.",review,fgNjgqVP5dNgQFfQLyjXyQ,0,1,0 +XbVqzUHS3c9FhG4lI13c3Q,2011-04-08,8diZqCG-JIUBjTcPy-Ockg,4,"Yummy in my tummy goes the won-ton soup. It is my go to for when anyone is feeling sick and totally hits the spot with all its veggies. Best in the valley, IMHO. The fried rice is also really yummy here. They don't skimp on the veggies which I love. + +Last visit to eat in was a couple weeks ago and the waitress/owner(?) was super nice to us and our French friends visiting from across the pond. I will definitely make an effort to eat in more often instead of ordering out.",review,qRo9gHN5OiV1-peDuhCh-g,1,2,0 +zmFc8M-hS4uuyY0hklIpoQ,2010-03-04,DnLwKwS88h6zqUdqHflczQ,4,"Carly's Bistro is one of my new favorites - especially now that I'm moving downtown! Very vegetarian friendly, and lots of yummy dishes with tons of flavor! Their hummus is TO DIE FOR! So much flavor!!! My favorite sandwich is the Europa with roasted red peppers, artichoke hearts, tomatoes and spinach and smoked mozarella on cibatta. Delish!! + +They also have a fantastic beer menu! Quite extensive with a type to make anyone happy! + +They're a great location for parties, and offered happy hour prices on all drinks during the event. + +I'm going there for dinner tonight and can't wait!!",review,kq5Pdsy8Znyh9KEkxWT_QA,2,2,0 +VVeogjZya58oiTxK7qUjAQ,2012-09-17,J2AWK69TkltyPCZPbVyhfQ,4,"I had no idea they were open for lunch! Perfect since the boy and I were down town during lunch the other day. + +We stopped in around 2:30 inthe afternoon. No Wait! I couldn't even believe it. I hadn't eaten there since I was a little girl, but it was just as good as I remember. + +We got a couple beers and split the Margarita Pizza. It was sooo yummy! Perfectly crispy on the edges and lots of flavor. The service was a tini bit slow, but no big deal, we loved it. + +If you want great pizza and dont want to wait the normal 3 hours during dinner, you should hit up Pizzaria Bianco while the sun is still up, less wait time if at all. + +Enjoy!!",review,_uL7OiQSfNsCd60DrAf7qQ,1,1,0 +aVBebzA7D9DpQ-JbiCxQNg,2010-08-15,Ejk8EkaRYjIHxKPYCm60qQ,4,"There are two places in Phoenix that have the BEST barbecue sauce. Honey Bears is the ""Not sweet"" one, LoveJoys is the ""Sweet"" one. Love them both.",review,RL3exTbJkDfOmlB5ByaPdA,0,0,0 +P1mtrjPrvZpxRDVTQQ_Zxw,2010-11-17,xE4U7nr6T1dBz5IXZBWRtQ,5,Been a loyal customer since they opened ten years ago. Quality cut and great people. These are professional barbers who have been doing this for years. No froo froo! Russian not spoken there!,review,oGSzG4TlTFR38JtHUvsGyA,1,3,1 +PmPOuRvuN3CoNOi1nBj_TQ,2008-05-29,3VByh5FvxtHnG4vPrD2CLQ,5,"Had lunch here with my wife today. It's the second time I've been and her first. After my first visit it rocketed into my top five favourite restaurants of all time. They have some top notch food, and the best thing is that it's such a deliciously welcome change from the bottom-feeder's Mexican crap that you see all over Phoenix. The menu is varied and I think I eventually will want to try everything. Appetizers include fried alligator and frog's legs. The main I had today was their Mardi Gras Pasta, which is linguini with tomato, thin-sliced garlic, andouille sausage, crawfish meat, onion and delicious shrimp topped with a really nice creamy sauce. Absolutely delicious. The wife had mahi-mahi with an even NICER sauce, and dirty rice on the side. Although a tiny bit on the pricy side it's definitely worth coming back to. Large open seating (outdoor seating also available), dimly lit, old-style jazz, a large full-service bar and a very quaint outside waiting area with water feature, giant fans etc. The service was also great and both times I've been, the waiters have been very helpful (the first guy told me that if I got the large serving of alligator, to try it 'half-blackened' - a great tip which allowed me to taste both 'styles' of the appetizer). They also have things I've not heard of before like etoufee and opelousas. If my dad didn't live over seven thousand miles away I'd take him here in an instant - he'd absolutely love the place. You will too. + +Oh yeah, they have creme brulee (with fresh fruit) and sweet potato pecan pie, amongst other things, for dessert. We had the latter - yum.",review,6G8vLJUi1Ees2qC3RGA3Nw,1,4,0 +bOB11LVavtN9PWTNwR52Tw,2012-02-20,g7VR45bxzGwnBf29fpdH_g,5,"Owned by a serious, James Beard nominee, this is high taste, funky fun for killer Mexican food. We sat at the bar, and joked with the cool bartenders for a while; all the time trying a myriad of different tacos. Every single one was great! This is the real deal, with a creative edge.",review,TipKplskSSMKdy5uQmYGVw,0,0,0 +8XmJg-Uy9FtOqlDOaSJsZw,2012-12-04,Jh7DzXUdTCzADOV5MkzfnA,4,"My mom and my son and I went to old town on a Thursday to check out some galleries and listen to some of the buskers! So after our perusing we stopped to get ice cream. + +Real ice cream! Petersen's is a really cool place and it's brand new! Just opened 11/23 I think. Well they have lots of great flavors like Georgia Peach, NY Black Cherry, Cappuccino, Peppermint with real peppermint, lots of sorbet, lots of chocolate stuff that I didn't want to try, and old favs like cookie dough, butter pecan etc. + +They also sell pints and also gallons I think! + +The staff is super cool and well educated about the history of the shop. I think the girl said they originated in Chicago and that the tiles in the ceiling are from the original location! I just thought that was so cool! She also said that they could sub the milk in your lattes and coffe with ice cream to make pepperment lattes and more wild flavors! I thought that was pretty rad. + +Anyway, if you are in old town I highly recomend you check this place out!",review,k2u1F6spBGhgk2JtAe97QA,4,6,5 +_TsQL0GYnStvozi_xOtV2w,2007-04-05,IbNlNnTM22bTGHYsRIQ0Aw,4,"This isn't a place that you go a whole lot - but BOY are they helpful when you need them! + +I brought in my cordless phone that has some special battery internally that was slowly dying to the point that I could only talk on the phone for about 10 minutes per charge. Not so fun. I brought the phone here and the guy was super helpful to find the right battery that would work. While I was there I saw folks getting batteries for SO many amazing and unique things. + +So if you're looking for something a little more complex than a Duracell AA, you should give them a call. And even if that's all you think you want - if you're in the area you might want to go by because based on what kind of product you're using it for, I heard them suggest different brands/types of AA battery. Not something I normally want to think about - but handy to know.",review,l53FUDHRHLg7BQ89KgAtxQ,0,0,0 +vARjqeIkSNsazHltujiq4Q,2009-04-24,ODKUFux50Nv78i_cROfhRQ,4,Amazing food and I prefer the atmosphere at this location.,review,GJAFlck0bmtYgwZ1pEt61g,0,0,0 +h26RO7jLyJ6YPHegwpQUPQ,2009-05-09,3eiYDcA_DLY3EsEllcImoA,1,"I hate for my first official review to be a one star review but Macayo's really disappointed me last night. When I first pulled into the parking lot last night I was surprised to see how many empty parking spaces there were. I immediately got excited because normally any restaurant on Bell road any night of the week has a wait. However, when I walked inside I saw a slew of people waiting to be seated. I walked up to the hostess stand and put my name on the list and the hostess did not give me a time quote and when I asked how long it would be she quoted me, ""not too long."" We waited about 15 minutes before being shown to our table which is where the trouble really began. + +Once we were at our table we were quickly greeted by our server (yay) however, she told us she had another table's drink order to get and then she would be back for ours (boo). So we waited for her to take the other two tables drink orders before coming back to take ours. + +After about 10 minutes we got our fountain drinks and then 5 minutes later she came back to take our food order. Then it took about 50 minutes for our food to come out. Seriously, 50 minutes.... that's about how long I planned to spend at Macayo's not how long I planned on waiting for my appetizer of taquitos to take to come out. And to top it off we were missing a side of rice and a side of baja sauce. We decided not to mention it as we did not want to wait another hour for the two items to come out. So, after eating and waiting for our drinks to be refilled 3 times we finally got the check to which the server apologized for our wait. Apparently, she couldn't have apologized at all during our 50 minute minute wait she needed to wait until tip time. + +I don't recommend going to Macayos. You might have better luck at any of the other 10 Mexican restaurants on Bell Road.",review,g6e53q-wNxtbz5KI9B3pnw,1,1,1 +wNsmt1hF1uv3YvbwXZMAoQ,2012-07-02,BRKLL3DwD6HE7d4TZM-dCg,4,"Awesome job rejuvenating this bar from the dark dive bar it was. They have a great selection of brews from all over AZ, the US, and the globe as well as a very decent wine list. Thus far I've tried the pork tacos and the grilled cheese, both of which were delicious. Service was a little on the slow side as our server was clearly over-loaded.",review,_h2h6TX5xhhWFIPMnpMd3g,0,0,0 +6fR4ncWEfdMLk9AacDsRzQ,2010-08-29,WtmKdxFLjOueWlI6uN10EQ,4,"I love F&E. Been shopping at the 12th street location since it opened there doors. This store works best for me since I live a very busy lifestyle. The pre-packaged foods, fruits and veggies make life easier for me. For a small store they have a great variety of things to choose from. This is not a one stop shop to find everything, however they seem to always have the items that work best for me. They don't have as many Safeway or Fry's grocery deals, but they have discounted items regulary to choose from. There prices are slightly higher then Trader Joes for the amount of food. + +The store is always neat and clean. There is tons of help incase you have guestions. You can bag your own or there is someone there to help you.",review,mqELWLgzXtcQDCxY60Xkyg,0,0,0 +jEWfxxA_kjeJE_Z_ku3zLA,2012-12-17,zCZR_W3ufhOr6sED_mkjpA,1,"If I could give zero stars, I would. Just about the worst experience for my friend and I. We came in for a quick and easy dinner. After being ignored at the door way repeatedly, we sat ourselves. First, we had a girl server who said shed be back with menus, but right in front of us at the bar we see her flirting instead of coming back. Our server switched to another guy who was just as bad at serving. I have no idea how this place ever received more than one star based on the staff alone. They're lazy, slow, and completely ruin the entire experience of dining there. The happy hour prices are great, but there are other RA's so do yourself a favor and go to a different location.",review,BHLMwsKIFaZQYSjQ5j0KOA,1,6,2 +R6aazv8FB-6BeanY3ag8kw,2010-05-20,EkStkYu5X036HWWEdrrgrw,4,"Step back in time! Every once in awhile you start to look for something different for lunch and then pops up a place like MacAlpines. Besides the great 50's atmosphere and good food, this place will have you smiling and reminicing the moment you step into the door! + +I am not downtown that often but rest assured, I will be back to this place.",review,v-QA7zDJ6Y07LoW5M9BjRw,0,1,0 +jXmrfhAx6NIPmjuMWDj4dw,2011-12-06,jcF1k1BmTR0HRZRYk9qBNA,3,"I visited one Sunday afternoon just to check it out in reply to an ad I saw to visit for free for (5) days. Typically, when you respond to ads like that from a gym, the staff requests your information such as name, address, & phone so they can sell you on a membership later. That was not the case with me. It was very informal. I advised I was not a member and wanted to give their place a shot. The guy in the front desk said come right on in; no personal information requested and no tour. I'm glad there was no sales pressure. I thought the no tour part was kind of odd, but after doing my walk through, I understand why. The place is not very big. They have weights and cardio machines and the treadmills each had a personal television on the machine. The whole facility appeared clean and there were free towels for the taking for your workout. The lockers in the men's locker room were really nice. They were made brown wood. You can view a sample of the interior of the facility on their website. They looked really classy, but they were not free. There were cabinets offered outside of the locker rooms that you can keep your personals in with a latch that allows you to insert your personal lock on. There was also a small room for classes. + +I wasn't very impressed with this gym mainly because it was very small. I came during a Sunday afternoon when most gyms don't see much traffic so I don't know what it's like during normal high traffic periods such as early mornings and after 5pm on weekdays. I would imagine that due to the small size of this gym that they cater more to the very local crowd. I wouldn't give this location a poor rating because there wasn't really anything that stood out that was negative other than the limited space and equipment. You might think of this location as the alternative to the larger chain gyms like 24 Hour Fitness, LA Fitness, or Lifetime Fitness. You can always take a look for yourself; apparently, they don't provide too much sales pressure for visitors. Anyway, that's my say on Mountainside Fitness at Bell Rd in North Scottsale next to the Ice Den skating rink.",review,ZkMwOom9fRaZvJxgjZOVXA,0,0,0 +_FXql6eVhbM923RdCi94SA,2010-04-25,BxhQDNhovg61t-cepw91kw,4,"This was our last stop on the Urban Wine Walk yesterday, and it was a great place to end the day. Because this was our last stop, we were too late to get the wine special, however we decided to stay and grab a table on the gorgeous patio and get a (full) glass of wine. We also ordered some sweet potato fries to munch on. + +The patio was awesome and I love how the ""inside"" opened up to become an extension of the patio, or vice versa. We were lucky enough to be experiencing one of those perfect Arizona days and I felt like I was sitting in a good friend's cute, cozy backyard . . . with table service. Speaking of the service, no complaints from me! + +The original plan was to get dinner, but the wine, fries, and good conversation were enough to fill us up and take us to the end of the night. I can't wait to go back (soon, to enjoy the patio) and try all of the delicious food I was reading about on the menu and now in everyones reviews!",review,AirVzN1BVQBmq5zY0YMNYQ,2,2,0 +iqLVYrsX25XUZqjRjvbYfg,2010-02-17,6ZaL_4E6wA1y6ncCa-8C9A,4,"My birthday cake came from Tammie Coe and it was AMAZING. + +It was beautiful decorated with amazing frosting. But it was the inside that won me over. Gooey, decadent chocolate, oh my! It was so rich, I ate half a slice... but it was oh so worth it!",review,APLIPfq1Rf8QyhHHk2uAyA,2,2,0 +pdxyZdnwltQXcu-kD5rpXQ,2012-09-25,4dgAgSHDa9iH85_uCMBVMw,4,"This is the very first time I have ever been in here.This location anyway, the first one was in downtown Seattle. + Yes, I came with my girlfriend. Both times,but it is a cool place for men as well. +Samples of colonge, creams ,lotions and anything else you have ever wanted to try. +They will even give you samples of things to take home. They will make you a sample of anything you would like to try. +It can be challange to get inside the Scottsdale Mall at times. +But, on this day it was not too bad,(during the week) and early in the day. +It is a cool place,with lots to see and try. Loads of people wanting to help you as well.",review,kffxYQVQsEpF1DVlQlcGCg,6,5,6 +bgTB6MgdVQssXhkNJ7qIfw,2008-03-28,6-JMWkiYMLI84WXzl_xvEQ,4,"Roka Akor Scottsdale is an extension of the celebrated Roka in London. +I attended the opening night and a follow up for lunch the following day. Overall, I was impressed with the offerings of fresh sushi, and robata grilled tidbits. The dish that really won me over was crab hot pot and the creamy rice was absolutely zoftik. +I drank many fresh sochu infused cocktails, and crushed three bottles of sake with skilled Kikisake-shi, Sayaka Watanabe. This Japanese sake sommelier is London-based and the zuma-roka group sake trainer. They do have a fantastic sake selection. Easily the best in Scottsdale. She loved my sake brand I created with Midorikawa called Green River, and my low alcohol brand sake, Koide, as well. +They also have a great Italian Sommelier named Alessandro Marchesan, who is also based out of London. Too bad they are only loaner personnel from HQ in London. +The room is clean and beautiful with post modern Asian inspired lines. The staff is eager and young, but quite unskilled in refined service. I am sure that will be a long cycle for the Roka management to fix. I have a dear friend who dined there on her birthday. She told me the service was ""shockingly bad."" She then reiterated that is was, ""so bad that it was entertainingly bad!"" The food great and hopefully the service will match soon. Kanpai, Roka..kudos on your sake program.",review,mEMZxvHpemSxn1gl7Lj1Zw,2,0,0 +YxLiLBNTm4cOg7OlKKLmVw,2011-04-30,a8RmP9xeCGIlfFFI2uGiSA,4,"Been dining here about a year and still trying diff things from the menu and all have been good. I don't think the heat is unedible even the hottest plates are just ""good"" hot.",review,9qbNt1lvi7ZvXkHOgFguMA,0,1,0 +dP3bRr_N7Z8SkHNkZBXonw,2008-12-10,m45-62YW1-eFJrsydFyqhQ,5,"Superb gelato - some of the best I've ever had! The guy behind the counter is the owner, and he takes pride in his gelato. + +They only use real sugar, not high fructose corn syrup, and nothing contains hydrogenated oil. + +I tasted a few flavors and settled on the coconut... it was sublime. + +Definitely some of the best Gelato I have ever had. When I need a mid day sugar rush... I'll be back!",review,HZeFzs42f0iGaA-sP_hUnA,3,5,3 +PT7V38tg1Re9MLIrEwdh8w,2011-04-10,vTq6GalikN1nPE5kjGgAOw,3,"We've been in the market looking for a church for the family to start attending. Chandler Christian seemed to be a nice offering since they are located fairly close to the house and have a decent size to offer something for each group (parents & children). I've gotten some good reviews from a family that I know that attends. I LOVE that they have a service on Saturday, as that is ALWAYS a plus for me. + +The sermon for today was an interesting one, and it seemed to be relevant and on topic for today. The pastor took an updated slant to the story to make it a bit more relevant to today's time. My husband was even laughing at the pastor's jokes. My mother-in-law even commented on how she liked the music. I did notice that the verses that they pulled up were not the verses that I remember. I believe it's due to them using a different version. + +All of this being said, the service seemed to be a good one. The signage indicated that this was non-denomination; however, the service reminded me one Baptist services from childhood.",review,fLjjtm4beQfqPxLfeuqboA,0,0,0 +fOERqjUznd2KBMKrxlMUww,2011-12-14,XrX0-4zGrKQbJxSkj3tEkw,4,Who the heck doesn't love huge amounts of toilet paper and free samples of food... come on now!,review,W9ZG5q-QIblXYeHgaPS5Uw,0,0,0 +sbjb1qNUcqQomJvcgPuJCg,2010-03-30,z3pSiipCrQM3B6i9PrnoGw,5,Best steak I have ever eaten is at Ruth's Chris steakhouse. Comes to your table sizzling hot. Sides are sold individually but are pretty good. The deserts and appetizers are awesome. Being an upscale place be prepared to take a hit in the wallet. If you really want to impress a date this would be a good place to do it.,review,hJBOxmNREXmMGTfXgMcGug,0,0,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2010-04-01,6hTGSj4vZzj33LW0ZwCwlw,5,"The last time I was at The Vig, they tricked me.. You see, they have these glass doors that they open up in the back of the restaurant when its nice out, and sometimes, when you go through those doors from the outside to take a trip to the loo, they close them on you, so like an asshole, you attempt to walk back outside the way you came, but instead you bash your head and knees into the glass window in front of 35 people. Be mindful of this. + +But hey, at least they had the most amazing wine specials that night and I was saucy enough to laugh it off and take a bow. And then I hid in the bocce ball pit for the remainder of the evening where I somehow acquired 200 bruises. + +I love the Vig. Even when I'm embarrassing the shit out of myself.",review,v5k-__wHo2xPI25WO-dcQA,6,5,6 +9Ep4sguv3HH_8lWyzSogjw,2009-12-23,edqj4YI0oxMGHN7L65Zb1g,4,"Great burgers and menu offerings. You would expect to get a good burger with a name like that and you do. The sweet potato fries, Frenched fried onions, and Salmon Salad are very good too. + +The decor, location, and menu are restaurant alternative for the area. + +The menu was a little confusing and little pricey yet the quality of the food is there and considering the location of the restaurant pricing isn't an issue. + +I do recommend to restaurant to others.",review,2gvAjt4fV9YsjDZHEqCTpQ,0,1,0 +GIGI8bJfN6HyPzmEW-QqjA,2010-01-08,g6-nj_J5zKyWMKfJDdqjjQ,3,"Ahhh... Zinc. It's been a while since I have left Paris. Being a resident and citizen there for so long, I would like to think I can spot a decent French fare. I have now been to Zinc three times, every time I ordered something different, so far the food has not dissapointed as much as the prices have. Wow. + +Okay, okay, you have a spot in Scottdale, it's a nice little posh area with plenty of traffic, designer furniture and nick-nack and artsy stores that typically have things that would require your to take out a 2nd mortgage to afford those things that often just gather dust, one season at a time at home. You would think someone on that strip would be the one to say, let's have reasonable prices. Zinc is not one of those. + +The restaurant has the name Bistro in it. They have folks dining out on the sidewalk, dining with noise and the occasional smell of BMW exausts... That's beautiful and very Parisian, also very Bistro. Here is a wake up call though... Bistros offer fares with decent prices, a prix fixe menu and simply good simple food. + +The prices were incredibly high for what you do get. Unfortunately the charm of having an outdoor patio and serving fries in fake newspaper doesn't cut it. The Steak Frites (a hanger steak w/ fries and a brandy sauce) is a French Bistro Classic, a staple if you will and that was the only thing that was fairly prices for what you get. But if you knew how much those cuts are to get from a supplier, you'd be asking questions about the prices even then. + +On two of those occasions we had cheese plates, it was more of a mix and match, you could pick from a few Chevres, Softs and hard cheeses, they were incredibly small portions but the breads that came with the platter was very tasty, warm and fresh. It is typically served with a ramkin of olives. + +So overall, sounds like I am bashing this restaurant, I am not but I am dieing to find a reason to go back because there is something good about it, the atmosphere, the lighting, the seasonal menu. But little things keep me from enjoying Zinc. Such as the time we sat at the secluded back part of the restaurant, the small courtyard. Very charming, though some of the waiters, and cooks smoked right outside of the courtyard's gates. The smell of cheap cigarettes and mumbled chatter caused us to ask for another table, when we did, we were all the sudden looked as ""picky customers"". + +One more tip Zinc, you may want to get the mall janitor to move his trash can from the view of your utmost beatiful courtyard, such promise, undelivered due to tacky flaws that could have been prevented by an attentive manager or even a caring waite staff. + +Don't miss: Dining in the courtyard, or the sidewalk. +Skip: Specials that are simply trendy",review,y5TsYk1VTXgbNoYCWw-IPw,1,2,0 +GZNEPuEPqs7JIswUhOttnw,2011-10-19,pwwdUSZ0KO7Yfu8sNQ9nxQ,5,"I'm so happy this store is located so close to my house! Every time I come to this store I get great service. I mainly use this store to get food items for my dog or the grooming salon - where Zombi has never had a bad experience. This location also has a Banfield Vet Hospital, PetsHotel, Doggie Day Camp, Training services and at times has adoptions. My best friend has used both the PetsHotel and the Doggie Day Camp for her pooch and has never had a bad experience. I also used the Banfield Vet to get Zombi up-to-date on her Rabies and the Vet was super nice. The best part was that I didn't even have an appointment, I just walked in and they were able to fit me in after a five minute wait. + +My only pet peeve (pun intended) is there is usually only one cashier working and the line can get pretty long. However, it doesn't take long for another employee to open up another line to speed up the check-out experience AND they usually show up on their own, without customers complaining about only having one cashier. Bonus!",review,fl6oI21uXoxVMwfR6lFanQ,1,2,1 +P5uC-zfGG6yqoQDUyqyAvg,2008-09-26,9wzMmcRUiDcooOiyejzXZQ,4,"A relaxing place to have wine, and talk with the very knowledgable (what is the difference between cab franc and Carménère), great service (waitress came on time and performed pourings properly) and sexy (well at least the waitress) staff. + +Blue/Black diamond wine bar - Great for me and deliberate by the wine bar - Medium/Advanced wine patrons come on down. Newbies stay away because you're not going to get educated. Just dont tell anyone about the place during live music night... + +I continue to come back year after year when i am in phoenix because of the athmosphere and wine selection. Very extensive wine selection (3000+ bottles) on file make you wonder where are they hiding it all in this cozy location. + +And now the critque: +Waitstaff has a bit of the starbucks effect where they are act with an aire of being smarter than the patrons. + +They serve Bistro and flatbread style food - perhaps my choice was silly but it over salted my palatte to the point it started to strip the roof of my mouth. With such a wine list, a little more probing from the waitstaff to make the pairing work out would be helpful. If you're going to act smarter than the patron, be more 'intrusive' in helping pair the menu. + +I am used to wine bars around the country and the prices are above average most likely caused by the scottsdale area effect. + +Finally, bring your solid black ""going out to the club"" outfit - seems to be the uniform of choice of this speakeasy-like patrons. Great dark athmo to take and sauce liberally your date. + +Give it a shot.",review,a5t40JYMQUY-rccT5-HQHQ,1,2,0 +_GS1R0LTwr6h8rMWY_8U9Q,2011-03-15,pJgM37N3r9lZfq3FVCsjow,4,"I always forget and tell people that Pomeroy's is on Central. I think it must just be that cool - I'm trying to pull it closer to the other really good places to go. It is, in fact, on 7th St. and if you tie it on a little tight, the grocery behind is, in fact, open late. + +It looks like a bar that should have a few regular bar flies and music that screeches to a halt when someone new walks in. And by that, I mean it's the most endearingly divey of bars. + +There's shuffleboard, just give your id to the bartender in return for the pucks. There's pool, but you pay quarters for that. The juke box is electronic and you should expect that you're gonna hear Def Leppard at least once during the night. The regulars will help you learn darts, the food is griddle-fare and the guys behind the bar are always good for a chat or to grab you a pint. + +Pomeroy's should definitely be on your rotation of places to be in Phoenix.",review,e6jqQ_YXlGiLPi1z2HO0Pg,2,2,1 +wy_R4crNr1BH0CP87y9UHQ,2010-01-24,2lJ8I2bneL0O73gKxb8faQ,4,"This is the second time we visited India Gate. The service was as good as the last time we were there. The waiters are attentive and friendly, willing to explain in detail what and how each dishes were made (for those of us who has no idea what some of the items are on the menu) + +Cozy place to have a nice meal, reasonable price.",review,H6fszVMVr0syml5qOmp6RQ,0,0,0 +c1yGkETheht_1vjda7G5sA,2010-08-28,lBn8SVtjJnFH5DOMQpV5kw,5,"I visited this place in January while I was in Phoenix and I miss the food! My vegan friend suggested this place to me and my other friend (we were skeptical that vegan food could taste good)...she proved us wrong! + +The food here was delicious, I'd eat here regularly if I lived in Phoenix! When we arrived, we were worried about the hours since we got there pretty close to closing time, but they were cool! We shared the samosas and buffalo wings for appetizers. I ordered the Thai Peanut bowl with mock chicken and noodles for my entree. I felt like everything was flavored well and while I enjoy meat normally, this opened my mind to trying other vegetarian places in the future. I liked the ambiance here, great place to grab a bite with friends and chill. It was the perfect place to stop by after a busy weekend! I'll be back next time I'm in the area.",review,114nj5lyzBf6BTkuPSUINQ,0,0,0 +L-GfuOmn9mv55571uXvf2A,2012-05-12,t1bEfexVuIMvwMVcy9Iyjg,5,"This is one of my favorite little gems in Phoenix. I've never had better pho than here. I usually order the ""spicy beef sate"" pho, which is miles above the rare beef pho. My family and I also order the pork ""spicy treats"" which is a roll-your-own spring roll. It's delicious and fun! One order feeds all five of us. + +The owner is also extremely nice. They also offer discounts to ASU students! Have to love that.",review,xpQ1patVNb8dyDQvGV8Zvg,0,1,0 +iiK8n-m2mUzItIBxGGaVIQ,2009-01-04,d9MK-XkOA_5QcuEIN0V7yg,4,I just love this place and I always leave feeling refreshed and relaxed. Highly recommend any of their spa treatments.,review,1RJORk4w9jxxWBKzOvOptw,1,3,0 +Snp5LyDO9NeQiuFPOlkavw,2010-04-06,JtyAE5wnR-gF8yemEgmLoQ,3,"I love that walking through the doors of the Sugar Bowl is like taking a step back in time but what I don't love is that it looks like it hasn't been cleaned or had any restoration work done since the day it opened. Lets be honest though, I didn't come here for the decor, I came for the ice cream. + +I was very excited when I saw the sundae covered in chocolate, cherries and marshmallow creme. I love marshmallow creme and chocolate, always a recipe for success when these two ingredients are combined. Well, no luck. They were out of marshmallow creme. I got a brownie sundae instead, only ate half and decided that it was only ok. + +I probably won't go back to this place. There are too many good dessert options out there. Though if my friends insisted, I would more than likely oblige.",review,eicY263RLPCOLrNGSGekvQ,0,1,0 +CvldwdURDzZk-3cAlcW3uw,2010-08-02,RLMOOCHGg05SLoTJy_6SpA,1,"Im going to have to agree Whole heartedly. And i informed the manager of it as well. I picked this one because it was close to the Airport and the Light Rail. The noise from the Airport wasnt to bad. But it was the Train Horns all NIGHT LONG and ALL MORNING when your trying to sleep. I wouldnt pick this one, the neighborhood wasnt bad despite what people say. But the Train noise is just unbearable. I got it for the Click 6 rate which was reasonable. Stay Elsewhere. I should of picked one further down that was right off the light rail.",review,aj1atE6H4Jf9mfsHvWhn2Q,0,2,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-10-03,brNKE0mA3DBM3gi-RjhJnw,1,"I should have taken my own advice and stayed far away from this place. Our most recent visit ended hastily when I was served rotten tuna and got barely a ""sorry"" from the staff. I could smell that the fish had gone horribly, horribly off when the ahi tuna salad was put before me by the waiter, and I'm shocked that the kitchen actually thought they'd get away with sending it out. The waiter disappeared so quickly from my table that I had to go hunt him down to point out the bad smell at my table was coming from the food, and he took my plate back to the kitchen and five minutes later came back to say, ""okay, we all smelled it and there's definitely something wrong there."" + +Seriously? You had to go pass it around to confirm that I'm not crazy when you can clearly tell within ten seconds that this is not how raw fish should smell? After all this, their solution was to comp an appetizer, not the salad, and eventually gave me a new salad to go, which I decided not to eat just to be on the safe side. + +Look, I'm not scared to eat week old leftovers or sushi at a divey joint and I don't really get freaked out by the cleanliness of restaurants, but this could have been dangerous. I have absolutely warned off all my coworkers and friends against this place, and now I'm warning all of Yelp. It could have been handled in a way that left me confident that it was just another new restaurant kink, but the awful service made it clear that's not the case and I shudder to think of what new low they'll sink to.",review,8SL2Wj7oey5WNEKiquXlig,0,1,0 +mCJxU7hLag7xOhOz3z-cwg,2011-09-27,xmtnXNBEyi6LR5OaP9H_JQ,2,These donuts don't taste good anymore. They have an aftertaste like they are using a different type of oil,review,GV40APiM60CXnX7TAzYV0Q,0,0,0 +It8Q9-l1EEtTr9NPpTgGPA,2009-12-31,g_rBgIUPJER87CLkOSfY_w,2,"Had a fun UYE get-together with Brian S. & Norm R. today to give this little Venezuelan cafe a try. I had a Carne Esmechada Patacon, which is a sandwich with slices of plantain for the top & bottom, fried crisp. (A plantain is something like a huge banana.) Inside was a moderate amount of shredded beef & some other things. It was good, but it cost $6, & for a full-sized meal you would have to add a couple of other things in the $4 range, & end up at about $15 for your lunch! + +For half the price, I would give it twice as many Stars.",review,ikm0UCahtK34LbLCEw4YTw,6,8,3 +L9UYbtAUOcfTgZFimehlXw,2012-04-20,NpkfnXsIunIF8WjLgKaZ0g,5,Love this place. Friendly staff. Always a treat to see what's cooking on the weekend. I don't mind standing in line to order. Great way to meet new friends and talk to old ones. Ask Kiersten about the cortadito.,review,yY9yRsCoBM8AYBEZKNMIRQ,0,1,0 +-nPwp-pg-pTEO2nqo1h_lg,2011-08-12,hwy_gtbDPdzvUVtMdgMWqA,3,This theatre is very conveniently located in the Arrowhead mall which of course makes parking a breeze. It isn't my favorite in town because there always seem to be tons of teenagers here (i'm sure BECAUSE it is in the mall) and yes I know if they are too loud then we are too old. In any case the theatres are busy and bustling. The concessions seem very high but I guess that is a trade-off for the convenience.,review,r2KPiKG0S3M3w9FvQbm_lw,0,0,0 +fxgmP9FrYBC5ZysZTCbnEQ,2011-05-24,8TuGCR1lQ221S4zxlxNTRQ,4,Love this studio! Teachers are nice and accomodating. This is possibly one of the best yoga classes I have studied. This is a place where you sweat your ass off while listening to music and meditating. Love Sumits Yoga and love the studio in Chandler. Best part is the practice is expanding so check out the website. www.sumitsyoga.com,review,uVYsE8KsrMAndEAQeYc0TQ,0,0,0 +af7ZkF4r4ywWQF-QTXvsCA,2010-08-21,ocsU8xA9IPYhfpIBJPGBHQ,5,"Paradise Bakery is one of those places that you can count on for always having something good when your driving around wanting more than a burger and not a sit down meal with a waiter. +I love the Cranberry Turkey sandwich with fresh fruit. The nice thing to consider is that you can get a whole or a half on the sandwich of your choice. +Once you feel good about the healthy choices you've made you encounter the cookie section at the register. All I'm going to say is that the chocolate chip is to die for!! The chocolate chips just melt in your hands!! Doesn't get any better than that!! +Paradise Bakery does also have a great breakfast should you want a nice place to go after a nice hike or just want to treat yourself and a friend to great place to visit. +Put Paradise Bakery on your ""always good"" list!!",review,etQpUPdEqLeETwBJvvo-zQ,0,0,0 +xLCbkTYQaP-nij6mEfaw7A,2008-06-14,-xT8TQkA5z6XqNeIkYlZtw,4,"I think half the fun of a used bookstore is the treasure hunt. This used bookstore is better organized than some of my old haunts in Dallas but I will survive. + +I think of used bookstores similar to looking through your Grandmother's attic at her book collection - it isn't supposed to be all shiny and new. + +Bookman's has a decent selection of books, I've found an entire collection of Rishdie one afternoon! Of course it is always going to be a crapshoot but that is just the way it is in used books.",review,mYEM5_NAVBkto88I_RF7ow,3,2,0 +MLVKDbuI2xaOJQ4-NZj2MQ,2008-08-13,M_6ZhvwF9EcIUsORWAyefQ,5,"Some of the best Italian food I have ever had. This is a favorite for my wife and I. Sima and Marcellino are very nice people, very inviting. The bar is small but fun to hang out at. The food is always fresh and delicious. + +Watch out for Marcellino - he likes to push the truffles.",review,YnU-qgATIaFB0EZy8KpuuQ,3,3,1 +peA3F-PnIfijYr8HuG-A-Q,2007-09-15,PHmKjnfiKSyx68NXqbf-6A,4,"Merc Bar reminds me of a friend's basement...but your cool friend who has the basement with the bar and neat 70s lighting fixtures. (I think it's the wood paneling that gives it this feel for me.) I love that they have magazines you can read, it just drives in that you're at home feeling a little bit more. But yes, its very dimly lit. I remarked that I thought Bonnie was right and they did run out of lightbulbs.... We were there fairly early in the night and it was very laid back. (My husband was in shorts) I didn't get a snobbish vibe. + +The bartender was good, although I asked for a drink with Ketel One, Red Bull, champagne and grapefruit juice and he gave me one with Ketel One, champagne, Chambord and pineapple. Close, I guess. They have bag hooks under the bar which is something that I haven't seen much of here in Arizona and I was really happy about that. (I hate having to sling my bag off the chair or lay it on the bar.) + +Oh, it looked like they might have free wi fi because there was a dude in a chair with his mac laptop. + +Update: + +Ok, so I came home from Merc Bar one night ready to write an update to discover it was the ROTD! Strange conicidence, eh? + +This time out we were there on a Saturday night which is a little more hopping than an early Friday evening. Still casual though, people in jeans, sneakers, t-shirts. (There were people who were more dressed up, but there was definitely those who weren't.) We were seated at a table this time which I would suggest since it gets full. Even though it was a Saturday night I still didn't get a snobbish vibe, it was a laid back atmosphere. Our waitress was a little slow, we had to flag her down every time we wanted something which was a little annoying and she didn't know what a Kir Royale was. The music was good, well chosen, and not too loud. + +I really dig it here....I actually don't mind driving ""all the way"" to Phoenix to come here!",review,qASPib1Z8ft8e96dtbh66w,6,4,2 +wN_wAXWg8W94v04eqijy6g,2011-02-20,1Pa91XTa7Xzu2k3pq9Ds3g,5,"True Mexican street fare - at first a little intimidating for this Gringa, but it was awesome. The owner Dan (who happens to be a Culinary Institute trained chef) put together a variety pack for us. Everything is small and cheap, so you can get a whole bunch of different stuff to try. $30 fed 5 people. + +On the NE corner of 19th Ave & Glendale, next to 7-11. Give 'em a try - you won't be disappointed!",review,EoswR0pXxeq5X2riYzlvow,0,1,0 +EHi-lebXGWjSktl4WvSoow,2012-04-15,BuENS426C07RhCAixzzCVA,5,"I had lunch at Lon's and wow, what a great experience. Great food, great service and great ambiance outside. I met the Chef at an event and he was less than friendly. Maybe he was having a bad day? His unfriendliness aside, this is a must try if you are in the area.",review,RbCRHWZotVygDGy1wF6wHA,0,1,0 +ML1RJdeZ7bbfMrHvJ7m99A,2012-04-01,nxVbd4HuG8utORlic88Ymg,5,"I love this place! Been to a few different locations and the pizza is always excellent. Yesterday, my boyfriend stopped by the Camelback and 10th St. location and picked up pizzas to take home (he called in advance, as the pan pizza takes at least 30 min). I had a veggie, tomato, basil, garlic, and he had a meat combo-pepp and sausage. So delicious. The only complaint he had was the parking situation there. It is kind of tough, but well worth it. I absolutely recommend Oregano's!",review,2EgPOQF3cwLpeCEHINLtmw,0,1,0 +9em_vfSjwcPqQgU8Zj-hzA,2011-03-14,4rxbsu3c6AqQ9n4j9mjMpw,4,"Came in a couple of weeks ago with my cousin and we both really enjoyed what we had ordered. We came in during the ""happy hour"" and got 3 appetizers: Baba Ganoush, Tzatziki and Feta & Olives. My fave was the feta and olives. I liked the Tzatziki but it was a little too minty for my taste. If there was a way for the mint to be toned down a lot, it would be much better. The pita bread was very soft, fresh and warm. Very complimentary. I'd love to come back and try the Spanakopita, Mediterranean Garlic Shrimp and perhaps see if the Tzatziki could be less minty. Delish!",review,gkpMjWWEDKbiWSWzgubq3w,0,0,0 +eP2WTbTQDCLj6FPNd6Il5Q,2012-08-25,ER_kqxCrzXP9vm7qi2TyNw,1,I was really disgusted with this place. I should have known when we walked in on Saturday at 12:30 PM and there was no one (not exagerating) there. But we were hungry and hot so we stayed. I wanted shrimp tacos but no shrimp at tacos del MAR...just frozen fish that you need to order 5 minutes ahead because they need to microwave it. It's breaded and precut...couldn't they at least get the kind that has different shapes and looked like it wasn't completely processed? The kids had bean burritos which they usually love anywhere but didn't like at all. My husband's chicken burrito tasted like a school cafeteria. The clincher was that the unsweetened ice tea tasted rancid. I think they let the tea bags go bad or something. Gross and how annoying that they don't have seafood. Wahoo tacos from La Jolla please come here to AZ!!!,review,3Z1nh8W4d4YWkEAc0VHfFQ,0,0,0 +7U8TYNW4Mvx6m3zexsO0sg,2011-03-03,quJyy14bw2xiUyzvu00k2g,3,"Very nice happy hour. Its dark inside but the beer prices are good and they have free sliders, chips and salsa.",review,YPk47NcyWSkk-541OxyzMQ,0,0,0 +zG_wv69bsllw_PWhOmoAKQ,2012-08-26,860woXxtRMu4Hikyp6e49Q,5,"What a restaurant! Absolutely loved my experience at Tarbells. I've been hearing rave reviews for quite sometime and decided to try it out recently. My party and I sat at the bar, which was a great choice because the bar was comfortable, rather large and really social and fun. The bartender (young woman) was fabulous, inviting and very nice! She was very attentive. A guest in my party dines at Tarbells often and she had his drink in front of him by the time we walked to the end of the bar.....Now thats some customer service for ya! + +Food = We started with the Calamari. A favorite dish of mine and this one was outstanding. Two very different but delicious dipping sauces. A roasted red pepper and a pesto mix. Not sure which one I liked more :) I enjoyed the pan-seared jumbo sea scallops. TO DIE FOR. I am a huge scallop fan and these were done just right. Caramelized, giving them the right amount a sweet....and it was served over very yummy risotto. Another dish enjoyed by my party was the Fennel Sausage Pasta dish, the fennel sausage was AMAZING. + +Overall experience was fantastic, as soon as I get another opportunity I will be dining here again! :)",review,BEhWehvv4OIz4sky-eOu6Q,0,0,0 +w19cemjVR8u02PgjFpJ7Mw,2008-05-02,JYUj19sJnrPMG_ljv-7heQ,5,"NOTE: I only had take-out, and it was brought to me by my boss. She rules! +She got me a hummus/grilled/marinated chicken combo. It has 3 different hummus...es...es (HA!): roasted red pepper, jalapeno and plain ole' hummus. They are sectioned off in the big plastic container, which rules for my OCD, as I don't like my food touching. In the center is a PILE (a total monton!) of grilled chicken. It's got some sort or spicy rub on it, but not too much kick. It had been marinated, too. And tender....I think this is the most tender chicken I have ever had. It made my own tender spots as juicy as the chicken was! +I'm not big on pita, so instead she got me a side of cukes. +This thing weighs a ton and I've been eating it for 2 hours. I have made a mess in my ""Make me Yelp"" boyshorts.",review,6kmu0mYbdpMIOZ6Y0eVsxg,4,5,5 +eTbtfgUtfewdncgVf2CbWw,2013-01-01,YkqZd8kGtA40bS4BIvVK1w,2,"These are not real French treats. I'm surprised some of the reviewers say they've been to Paris. First of all, they're not macaroons (those are Jewish coconut cookies) they are macarons (one ""o"") and these were the most amateur macarons I've seen. The feet are big (the feet are the rim of the cookie) and the cookie body itsself is airy and thin whereas a true macaron is light but doesn't actually have air pockets in it (the cookie dough is still present throughout). The filling is not ganache like it should be - it's a buttercream like you use for cupcakes. + +Chocolate croissant was decent so I'll add a star for that.",review,DOJbGtr2vWTKSSl91xpsag,0,2,0 +zp5k6funVelIOVuqdY0mDA,2012-12-30,NJa3QwpweUzJ7QseSzBLug,5,"I live in LA where these shops are on every corner. I can say without a doubt, this is the best FroYo I've had! + +On top of that, the store staff is super-friendly and the place is immaculately clean. They are also serving gelato, pastries and fresh coffee/espresso. Check it out!",review,pahxsi5vKzTNMMXsHs4SLQ,0,0,0 +KV-yJLmlODfUG1Mkds6kYw,2012-12-17,cagJp-71nespvYjDJEojww,4,"Out doing some shopping w/the Ms, Stopped in for a quick bit to eat & WoW was the place packed! She had never been & I had to see the Hostess for a table, when two seats at the bar opened up. Now my honey doesn't useually like sitting at the bar stools as she has a bad back but we were kind of in a hurry, as is everyone this time of year. I hadn't been in a Chompies since 1980...WoW what a mistake, I forgot how damn quick the service was & how GOOD the food was!!!! My girl even said the bar stools were comfrotable & that this was here new favorit place! I will be back soon!",review,JTd_HLrtLDg7YSjLq_8I_A,0,0,0 +CICu2tclxRB7JgW_I2a8rQ,2012-11-14,YHHI1rF02DlpuwiAnxX3EA,5,"will review after I eat. Ok so we ordered a Mongolian beef combo plate, sesame chicken (YUM) and pork fried rice , and sweet and sour pork. This was really really good food. Good prices. When we are in the area we will definitely go back.",review,a09ENYogqRn0sQ8J2D_rng,0,0,0 +9tzh2vfZh5a7dMCDI4g7Jg,2011-01-23,Dq1Ut05-6cXrzEft-tMwHQ,5,This is a good store for your beauty needs. They are open until 8pm too which is nice.,review,khPlizt3ava1xkbtAxHQnw,0,0,0 +y75baZnoI51J8WS7NK9FHQ,2009-09-15,Vu_JoqKTjQTaopeFK0V00A,1,"Wow. I'm not even going to wait until I'm done before leaving a review. I just placed my order, 30 minutes after sitting down. + +11:35 - Sit at a table for 8 an order drinks. So far so good. + +11:39 - Things were going alright when we had a table of 8, but when a few more people showed up to attempt to give Floridino's some money in return for a quick lunch, all hell broke loose. + +11:41 - There was a room next to us with a bunch of empty tables. ""You can't sit in there. We don't have a server in there."" Screw it, we picked up our drinks and moved in. If they can serve us at that table, they can serve us one table over in this other room. + +11:45 - We asked to see the manager. + +11:50 - ""We can get you drinks in here, but not food. We have to wait for a table to open up out there. Then we can serve you."" + +11:52 - Someone who looks like a manager peeks into the room and leaves. We still haven't spoken to a manager... + +11:55 - ""We don't want to overwhelm the kitchen."" (Hmm.. If you didn't want to ""overwhelm"" the kitchen, maybe you should have taken my order 20+ minutes ago...) + +12:05 - They're taking our food orders in the Forbidden Room. I guess they're not as allergic to accepting our money as they led us to believe. + +12:32 - Just received my food in the Forbidden Room. Pretty much exactly an hour after I got here. + +You suck, Floridino's.",review,TDbKPzfPclw3MxrpBISVcA,4,2,4 +e9JhcYEgNbRL8i8CTdQO2w,2011-07-20,2Jfy0EnW9PEFjhbMpdWwSA,4,"KIerland Commons is a fantastic development. Lots of great shopping, restaurants, lofts, etc.... Only problem for me is that I live in Scottsdale and frequent the Scottsdale Public Library, therefore I want my tax dollars to go into Scottsdale's coffers so I will try to do most of my shopping and dining across the street at the Scottsdale Quarter (except for Zinc Bistro - I'll keep going to Zinc regardless of what zip code it's in).",review,omGocLsyIYeiHPviDOAa3w,3,3,2 +FOfhEC6rN23RQaUlsR2byw,2012-08-20,JntrvnrvBwRtHVcBmtj5aQ,4,"I hadnt been there in years, and it was all I remembered. I went with a coupon that I go purchased on the Living social website. Champagne toast, appertizer, salad and all you can eat entree. They also do a complimentary photo for you. Very quaint and romantic. But the food was fantastic. We had the cheese fondue that was just delicous. The meat course was also wonderful. But the thing that really made our experience great, was waiter. He was great, and funny and he was there when you needed him. + +But I do not suggest turning up there without a reservation. You can make reservations online, very quick and easy and you get a confirmation.",review,L8NC1S3O0AgBwrysvG1wfw,0,0,0 +4vz9I9b6bGEEuRGr3Ry5bA,2007-09-16,NtTnVIOi8PGcKwIW3ch8mg,5,"Still my most favorite hot dog ever and I think the magic is in the presentation. They've got the best hot dog sleeve. It perfectly holds the dog, lots of chili and it's not messy. + +Another must have is a Cherry Lime Squeeze; Sprite, Cherry flavor, squeezed limes and maraschino cherries.",review,_mo4LtybzPjvg-i6meN-tw,1,0,0 +xpdh4XXiCTbO3yctj3uK7g,2012-01-17,GxJMPDcLTgbUwPGjUQO41w,5,"Healing hands! A dedicated, professional therapist/intricate bodyworker who listens to your needs to develope an individualized treatment. Focused in addressing my health concerns and goals. A message like no other that left me feeling restored with the added bonus of ""spot on"" nutritional advise ... an overall concern for your good health! To feel renewed ... highly recommended!!!!!!!!",review,RpMaIvO4JTEvh55UfU2qDw,0,0,0 +-gefwOTDqW9HWGDvWBPSMQ,2012-04-23,9wfMQeP8p_eU6vtAnI3EAg,5,I go there often. Love the food. Love the atmosphere. Great beers & usually great service,review,bkaMd3Fk8a7yT4tkthHDbA,0,0,0 +P5uC-zfGG6yqoQDUyqyAvg,2012-05-29,6POhowmNd6PKL_XSDtgwOw,3,"So I'm torn on how to rate this place star-wise because honestly, there were a few things that were 10 stars and there were a few things that were 1 star. So let me break it down for you. We walked in to this cool little spot on the Sunday before Memorial Day and it was about half full. It looked like it was VERY groovy but I seriously had to use my phone to walk around because it was SO dark. We sat at the bar and not one of the bartenders addressed us for like 15 minutes. Maybe they couldn't see us? Anyhoo the wine list is interesting and I was having a hard time choosing something. The one bartender that finally waited on us had NO personality. I asked for a taste of a few things they had by the glass. They sounded very interesting but I had never heard of quite a few of them and I pride myself on knowing my wine. The first one I tried was a syrah blend that had something to do with chocolate and it was just that...too chocolatey. My friend ordered a glass of the Justin Cabernet which is always a safe bet. I then asked for the Tannat they had by the glass. It was awful. It taste like it had been opened for days. I told our personality challenged bartender and he went and tattled on us to maybe the manager? The manager then came over and was pleasant if a bit condescending at first. He said ""well have you ever had a Tannat? and I said ""actually, all the time, I know what they're about and that is no Tannat"" he then did agree with me and said ""just tell me what you're looking for"" I told him I wanted a Cabernet Franc or Grenache which they didn't have either by the glass. He ended up pouring me something that really was delicious. He definitely redeemed the evening because he was professional and helpful. We then ordered the flatbread with pesto and a few different cheeses and it was seriously one of the better flatbreads I've ever had. They had two guys playing live music and they were very good. So my break down is: +Atmosphere - 4 +Attitude - 1 except for the knowledgeable bartender, he gets a 10 +Flatbread - 10 +QPR - 10...for those non-winey's this is quality price ratio",review,4QQ8qzf5TID7B_Enca7juA,0,0,0 +4fO13y8cHH5Loaae7rnExA,2011-11-05,ymI6uljpSU0CWtQlT3MyIg,2,"If I've come to your Starbucks over 30x within 5 months and you still don't bother learning how to pronounce my name correctly then I don't know what to say. I always order the same drink: quad espresso with 3 pumps of white mocha and 80% of the time they don't get my order right! The baristas always ask if I want water or milk with it.. Seriously? I ordered a damn espresso for a reason. If I wanted water or milk then I would've ordered something else and NOT an espresso! And my drink is one of the simplest drinks to make too!! Just brew 4 shots, mix in white mocha syrup and add ice.. But they always somehow mess up by asking me stupid questions. If it weren't for this sb being the closest to school, I would definitely frequent the Thunderbird location!",review,pd8xFpF6PUIqq7nOAdF1cg,0,0,0 +RmA5zN-Bs89lsTuY6v8W3Q,2011-05-23,T9pXs_Zo_pAhfsg8EBuDQQ,3,"Sushi is absolutely nothing to write home about. They have happy hour all day everyday, which is a great way to start your night. The Korean pork tacos are bomb! Great location in Old Town Snottsdale. Love the staff and atmosphere!",review,7nG2ux7uLpARvKZCwYTzug,0,0,0 +nFo_63pTr-4ZhakuaRFOCA,2012-09-18,Ap1gkO9NfR3BhGXewdkq1A,1,"Went to Sol for restaurant week. Was less than impressed with the bitter salad with MIA avocados, the carnitas that were very bland and boring, the rice was delicious, however the black beans tasted like aspirin, dessert was a dulche flan that was hard, solid and icky. Service was average, took 2 hours to get thru dinner. Best part was the refreshing wine and beer! + +Cheers to SOL, we wont be returning.",review,ufoJvi-v9MTa7FBlIhdxig,0,1,0 +ObnZiF99lqggVasgyGBtVA,2012-06-17,UV8_hIzpk2R34QzKBp8Vag,4,"This is a cool spot. It does live up to its name in that the restaurant has a posh, bistro like ambience to it. You can get burgers like a la carte by getting them in 3oz, 6oz, or 9oz sizes, so it's possible to mix and match to try different burgers. I had the Wagyu (kobe beef) and the Lamb, and they were pretty average. Meat wasn't extremely tender or anything and the bun was so-so. Sweet potato fries and onion rings were really good though. They have several four peaks and Grand Canyon pilsner on tap. + +I think overall the food is par to a cut above par, but I don't think I go there for the food - it's definitely a fun experience everytime you eat at Stax and the varieties of burgers are what makes it. Check it out!",review,Yoa2y89jR7tAnWRLSDca7Q,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2010-04-25,oMPMjKnQcJi0tAxJW_Iorw,5,"Had a wonderful birthday dinner at CIBO last night. This was about the 3rd or 4th time visiting this quaint house turned restaurant, and now is the time to YELP. +CIBO has wonderful appetizer of antipasti that played with my taste buds! Fun to make your own brushettas.... +My husband and I shared the Rustica delightful, delicious, delectable.... +And the creps...what can I say...I didn't need it, but I wanted it, so I had it, so there! Fresca creps with fruit, vanilla ice cream and fresh whip....Mmmm...food coma. Lovely service and birthday!",review,HuGmiFh9v-YxY9FUGx2xHg,1,2,0 +GAPqG0WNBBidKeZTMpEZ-w,2009-06-13,c9ywzHA5-AcFbyROabEWhw,3,One of the reviewers said this owner wants to run a restaurant - I completely agree. That has good sides and bad of course in short it isn't Palette ... We stopped in for brunch last Sunday - the French Toast is Challah [which I love] restaurant-baked I think - and seemingly not fully baked - the center was dough. The scrambled eggs were adequate - the restaurant-made salsa verde was excellent; the Schreiners sausage as expected. That was all we had - quality not a compelling reason to return ... until the service is factored in - crisp timely and friendly. I'll be back to try dinner.,review,GhCA6N7sRYZHBr5QKAcCWg,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2012-10-23,4Ul8QbXhSWluLd1rUh7lGA,5,"I was surprised by the depth and distinctness of the olive oil. I was expecting oiliness with hints of flavor, but instead was pleasantly surprised by bold flavors carried on an already flavorful oil. This place far outshines other oil stores which add flavor essence to their oil. They infuse the flavors here, making them stronger and more authentic. + +Overall, great oil and balsamic vinegar. Try their food, such as the sandwiches. And definitely try as many oil samples as you can. The oil is not too expensive, ~$20 per bottle. Well worth it if you like to use it on bread or to add some great flavor to a salad.",review,daCwtoylep8ivghIt76p9w,0,2,0 +5WRpxAc9lvonVGfuX34hlw,2012-03-13,ykk4oidsZ0TJtTj_53hfnw,5,"Best cajun food in town, not just from a truck. Phoenix doesn't have the greatest selection of cajun offerings so I was amazed at Food Truck Friday to find Jamburrito. They have a pretty stellar selection of meats & meals considering it's from a truck. + +The spices were perfect - just spicy enough to enjoy but nothing that's going to harm. I had the catfish once and the jamburrito twice... not in one sitting because the portions are VERY filling.",review,RWXHIBiGdhv9SqYMBhGagw,0,0,0 +3rUk-WyCv_wMQR5HbTqD4Q,2012-02-22,MzvfNC5KW7owsTgLfAqbXA,4,"Planet Sub is definitely a good option for solid, good tasting subs. I'm next door at Gangplank a couple times a week and we usually hit this place up for lunch. It's much better than the last place that was in this spot, has tons of options (we decided you could eat lunch there for a month and not have the same sandwich), and friendly staff. I'm definitely glad they put this in. It's a great option in the downtown Chandler area.",review,GeGDZ02UfARKBRl7LqKZuA,0,0,0 +14K90G-hbfk795NY7cKxMA,2011-12-30,SjR1doIGJAzPt-A7mpFNpA,5,"Great service, atmosphere and of course great food. My wife and I decided on Blue 32 last night for dinner. We have been there many times, but we felt we needed to share our experience. We enjoyed sitting at the bar having a few drinks and visiting other patrons. Around 9:50 we realized the kitchen would be closing. I asked Daniel and Baeley the bartenders what time the kitchen served ""dinners"" of course he stated 10:00pm ""OOPS"". But Daniel said they would prepare what ever we wanted. I asked him to check to see if they have already started to clean up first. We do not like to ask the kitchen staff to prepare dinner if they had already began or completed clean up. Daniel returned to say that yes they had finished the grill, but he again repeated that they would still prepare anything we wanted. At that time we declined to have the kitchen staff prepare anything. But a moment later, Roman the chef came up to us and sincerely stated that he would be more than pleased to prepare whatever we wanted. Still we were not wanting to make such a request that late, but with his sincere and friendly personality he still insisted that they were more than willing. So we asked him to pick and prepare something of his choice which turned out to be the best two burgers that we have enjoyed in a long time, a Bacon Cheese Burger and his speciality Texan Jalapeno Burger both with extra crispy bacon just the way we like it. SOOOOO....we would highly recommend Blue 32 and it's staff including by name, Roman the chef and Daniel and Baeley the bartenders. Every time we have gone to Blue 32 we have had nothing but a great experience, this place is a must!!!",review,Cy4tE3RIae4cadipZzJtHg,0,0,0 +RxjHseEfxowNP2L6uH7FpQ,2012-03-30,-7a1Jd8Be4JawHloXKCxoQ,4,"The date shake is like ""the best vanilla shake ever"" with little tiny pieces of chopped up dates coming up through the straw the whole time. + +Awesome.",review,iwZ_7QuZ1tzT6pIZmOlDQg,0,1,0 +9OPheVf5o8sRcRHxJDl4-A,2010-10-31,ByzUd3aDCVe_E_WLrxfdqA,4,"We went early, so we didn't have any of the seating issues others have mentioned. The decor and set-up was neat, and the bartender was friendly and attentive. I agree that the drinks are pretty expensive -- but the White Rabbit was amazing. I'm not a big fan of mixed drinks generally, but horchata and white chocolate liqueur? Awesome! I'll definitely be back. Great place!",review,YZ82I51Zedr9U6e13DO82A,0,1,0 +CD-2yHTSObgvAhW-pYHfMw,2011-06-06,OYLBgL6ZgFP4MSsV8_qV3w,3,"The Doubletree is the resort we go to when we don't feel like paying to much for Scottsdale resort. They have good rate rooms if you are a triple A members also. + +The pools are fabulous just a place to go and hang out for the day if you don't fee like checking out the Scottsdale area. + +The bed are OK I can't say its the best night sleep, but they do serve their purpose. The rooms could be nicer, our bathtub had slow drain so I was standing in dirty water while taking a shower. + +This last stay I did order room service and they said it would take 45 mins, but it took more then an hour for it to get to me and all I ordered was a salad. They were doing some kind of construction with some of the rooms, so it was noisy during the mid day.",review,rSbqoimVUWPEbNSGwyjI-Q,0,1,0 +ML1RJdeZ7bbfMrHvJ7m99A,2012-08-03,Qvg_zRg_ttyA47MCM7MIdg,4,"i used to come here all the time with my family, right after work we'd head over here for some delicious pizza and AMAZING salad! Pablo Picasso Mexico Salad. was sent from heaven, one thing. I haven't actually had it since I became vegetarian a couple months ago, but the salad without chicken would not be a miss!! You may be curious to know why we haven't been here in so long, well just ONCE we saw a cockroach on the wall that grossed us out, and that's why this place loses a star. Other than that, I recommend it without a doubt. Thin crust pizza is way better than the deep dish here!",review,jGmnd3qIBPezcuxG0qyD7w,0,1,0 +btyYig6bD3BOoal_yasnDA,2009-03-13,dRzhhyi1e34GiHuV6Mvkyg,1,"I would not recommend this place to anyone. I went there looking for a gift. I received no help. The girl was too busy helping the wives of the baseball players. I guess you need a large bank account to receive help in this store. Also, they did not have a very good selection of items. I think I will take my business to other stores who care about their customers.",review,5OLKI0NgQrrL-v0PB1dIlQ,1,2,1 +ShUSw5yD7EFWBOiq_CuHMQ,2010-03-16,3cnyJU2lCKG4qc3zatEslA,5,"I took my computer to RedSeven recently when my friends were calling and telling me I had a nasty virus that was sending out gobs of email every fifteen mins. I had no idea my computer was infected. I was hesitant to do so because I needed my computer to do some work. No worries, the fellas over at RedSeven hooked me up with a loaner. I was able to get online and get my work done and get my home PC back the next day without missing a beat. I was going to take my computer to one of those BIG BOX store repair places. I am so glad I didnt. A friend of mine took their PC there and when it came back all of their family pictures, music and email was gone. I will only be using RedSeven in the future and I suggest you do the same.",review,TxOR39w0Mlbd4h1siXyb_w,2,3,1 +XMRj865sZBPWCI7tx0uBWw,2008-09-11,X8y2ujS7YxyjFVH13eZsPw,5,"I have to admit, I normally don't like Chinese food. In fact, it's just about the only style of food I haven't fallen in love with at some point in my life. This is a real problem when you live with someone that would die for Chinese food at all hours of the day/night. + +I figured out why I never liked Chinese food when I first ate at Asian Cafe Express. It's because everything I've had has been Americanized Chinese Food!!! It was like an epiphany and seriously music to my tastebuds when I actually found Chinese food I not only liked, I LOVED! Having authentic Chinese food changed my opinion completely about this cuisine. + +I have to agree with the others... save yourself the time and skip the first few pages. Go straight to the back of the menu to find authentic Hong Kong Style fare. Holy mother of god, everything I've tried has been outstanding and each time I leave saying it was the best meal I've tried thus far. + +Everything is extremely cheap and the service is superb. The wait staff are always very helpful and knowledgeable about their food. They'll be quick to recommend something if you're having a hard time deciding. Just ask!",review,FHJUj7EHB9nB2czVOzQX3Q,2,3,0 +-mLcpJYfX8tw8LR9bq018w,2010-08-27,Z7okSCJloti8ri0pjohQgA,4,"Finally tried the only ""real"" Chinese food restaurant in Maricopa. Played it safe with Sweet & Sour Chicken, Crab Rangoon, and Pork Fried Rice. With delivery, it was only $14 +tip. + +The fried rice was great, it was a little more of the ""East Coast"" style I grew up with, dark w/ lots of juicy nuggets of roast pork. The chicken was good, but then again, it was a (VERY) safe choice, next time I'll try one of the ""Chef's Specialties"". Crab Rangoon was good, unlike Panda Express, there was crab (krab?) in the cream cheese. + +If you're in Maricopa and craving Chinese, don't go to Panda Express, definitely give Great Wall a try, it's in the same plaza as Panda and if your party is 2 or more, you'll save yourself some money!",review,jZL3u6BzkJWFqT3SPIokyA,0,2,0 +gCnyFIE2jYeKCfQx42y4Dg,2010-05-28,8tZ01qB3MQyPaB31Kom6lQ,5,"Like Sex or Tobacco? Hells yeah!!!! were not looking for vanilla yes' here, this place pulls out all the stops + +If Ichi Yakaguru the new york club promoter and 9yo Japanese pimp needed anything, it could be found here. + +The best selection of DVD's and printed material i have come by in awhile... lots of Toys so much stuff a lot of it is hung above the head, so look up. + +Lingerie, Tobacco, Human Fire Hydrants, Hobos with Soap Sud Beards",review,Bza-l75OiKcMRmTYILpyfQ,2,1,2 +b5cEoKR8iQliq-yT2_O0LQ,2009-12-23,ClSI3WMwwDutHeCF0qx2bA,4,"The wifey and I went here last night and it was pretty good. I had some pork dish that was amazing and she had filet mignon tacos that were delicious as well. I really should have taken better note of the exact dish name I had but alas... I did not. +Anyways, great atmosphere, friendly staff and really good food. The only reason I'm not giving them a 5 is because they charge for chips and salsa and their salsa was pretty weak. By weak I mean not spicy. Come on, put some peppers in there!",review,icxJ-bAxZuhyEbOtmHdM9Q,1,1,0 +AoO0FJyUm01lmIJJTcPWEQ,2011-07-08,-bhGum5dFkrNib8qiRWmnQ,3,"We'd wanted to try this place for a while. We went there for lunch and had a cheeseburger, fries, and coke. Everything is ala carte which makes it a little pricy (came to nearly $9). The burgers are OK, not bad, but not as big or as fantastic as I'd hoped. The fries were really good though...extra crispy. The atmosphere is really relaxed and friendly. We had our 9 month old and there weren't any high chairs that we could see, so it made it hard for us to eat (one had to hold her the whole time). Overall it was a nice place but not as great as I'd expected. We will try it for breakfast though sometime because the ratings on that seem to be pretty good.",review,sbNbxmGNodDJukgSXBFD4Q,0,0,0 +ewZlgc22xN5NNQ1H7U6Y7g,2013-01-02,Z_8cjP-Dvo2WUQ1qlr5yPA,4,"I went here with my parents on a super crowded Friday evening. We had to wait about 40 min, but decided to order a couple of drinks while we waited. Once we finally got seated, I decided to order the Chicken Madeira, which is their most popular dish. It was sooo good! It was a huge portion, but I somehow managed to finish it. I can see why everyone loves it! My dad ordered the Ahi and had to get them cook it more b/c it was practically raw and cold. It was probably supposed to be like that, but he didn't know what he was getting himself into. They took extra care in getting this done - both our waiter and the manager came over to make sure they were on the same page as my dad before cooking it more thoroughly. They also brought my dad a complimentary house salad while he waited. We decided to end our meals by all splitting a piece of their Peanut Butter Cup cheesecake. OMG. So good. Most importantly, we found that the service at this location was really good! Our waiter was funny, and rolled with the punches...nothing seemed to phase him.",review,44R1syuo0et8sLtRnCojkw,5,4,2 +_FXql6eVhbM923RdCi94SA,2012-01-03,GZ7jHYxZh0zC9wooSyhKfw,5,"Been here twice now and wish I could say more. The food is delicious, the set up is really relaxing and service is great. A great place to take an out of town guest. Happy hour menu has these amazing tofu tacos that I highly recommend. My boyfriend had the Pork tacos which he said were also delish. Definitely check this place out!!",review,3x1MykIUtUJjIUk-pji2WQ,0,1,0 +-b_VjHZmA7-8LVWp6z36VA,2009-08-21,JZtiU9J8T-IYJI_OvfbQBw,5,"Mims Burger & Mexican Food was revealed to me by my sister and sometimes when I think about it (even when I JUST ate), my stomach growls. The restaurant itself just SMELLS GOOD sitting there and waiting for your food to arrive. + +The strange name would sort of, you know, ordinarily turn me off from trying the place because I think when restaurants serve this AND this they usually just serve two wildly different forms of food, both of which suck. Mims serves legitimately good Mexican food, burgers, hotdogs and everything else. + +Even if you're NOT in the area, it's worth going a bit out of your way for it. + +Five stars. Places don't get much better.",review,mym5tXZoZCbuPCYQzI5Ysg,3,4,3 +yoLlJDTXafbS3PG-lee-dg,2012-09-05,mC1Y2H2IfqcJBm_V8DTYTg,1,"I was searching for a unique item to give as a Thank You gift and I stopped by Practical Art over the Labor Day weekend after viewing some items on their website. I was extremely under underwhelmed by the service I received and do not plan on returning. + +When I arrived the young woman behind the counter was having a personal conversation with an acquaintance. Besides the employee and her conversation buddy the store was empty. I spent about ten minutes looking around and the young woman did not have the common courtesy to acknowledge me with a simple ""Hello"", even as I was viewing items directly in front of the counter. When I was leaving the store she did break long enough to say ""Bye"". + +I believe it is very important to support local business but I will not spend my money here. I did find several items I wanted to buy and made note of the artist. I have done the extra leg work to reach out to them to find out how to purchase their items through other channels. I do not feel they should miss a sale due to the sub par customer service at this location.",review,NwHMMfnsiVSW_TKSRf4prg,0,0,0 +-UT6IHfVW_2yzz1bf8WI5g,2012-12-12,1L_NAI3Q2dLL_Xl1jxSe2Q,2,"Vegan Mexican with a urban funk to it. Should it work? I dont know. Did it work? Not really. + +We walked in, it was empty quiet and after 20 seconds a surprised guy walked in and greets us. We take out seat on the purple booths and browse the menu while we sip watermelon water. Things got a bit stranger from there. + +The menu had many interesting options, but each one we tried to order we found out that the didn't have chips, mushrooms or chorizo, key ingredients in many of the things on the menu. We had to just ask what can we order. + +We ordered and waited, as the sun set it became quite dark as no one had turned on the lights. Another customer walked in but the waiter was busy working as a cook. It became even darker as we waited. The other customer finally was given a menu and the lights were turned on, however it was still pretty dark. + +Our tacos came, they were a bit small we each had 2.5 tacos I assume the 1/2 a taco to make up for the lack of chips on the side. + +The tacos them selves were good, nice flavors crunch etc. for $8-$9 they should be good. However the other problem sunk in as we were leaving, we were still hungry and after $21 and 45 min we were less than happy. + +The next day they had posted a photo to Facebook, not about their food, or a special but look how how our waiter/cook is. + +So I guess if you want to look at toned male waiter this is your spot. Otherwise there are many kinks that need to be worked out.",review,M6oU3OBf_E6gqlfkLGlStQ,1,2,0 +NtizlEdtnJX0tteMdZ-6tw,2012-02-16,MCxKinv4Y33A4ZKjjSXYHQ,1,"Went into the location and waited minutes for someone to appear to ask us for our order and even after we said Hello they didn't acknowledge us. Had to repeat order several times. It was very frustrating how nothing seemed to be in stock, no philly cheese steak nor soup was available. I heard someone as I was leaving being told some type of bread wasn't available (which is actually understandable, condiments and bread sometimes run out or need to be retrieved/baked). + +Felt like we were being rushed and just didn't feel like a clean place. Will not go back.",review,GPMNR6WVfSE2qOwX0ZcVGw,0,0,0 +sI1bvFfUCeFVz1twmLJcAQ,2010-06-03,6AwmuNUKyuOnX_mlINhWdA,4,"Hubs booked this kitschy place for us because, well - the other options in the-middle-of-nowhere-AZ were very slim and besides, who doesn't want to stay in motel called Space Age Lodge? + +And man! So surprised! I thought we'd be staying in a very outdated motel room. I mean let's face it, most motels that claim ""newly remodeled"" usually just put in a new tv. But when we opened the door we found new furniture, a very plush bed, new lighting, flat screen tv and a rather large and new ""mini"" fridge. It was really nice - compared to other Best Western's I've visited. + +The train is right behind the hotel, but to be honest, the A/C was cranking the entire time we were there (Arizona in June) so we could hardly hear it. + +And to top it off - we got free breakfast! Not just a continental one either. We had our pick of any breakfast entree and beverage. Came out to a little over $20 of free food! Basically made the room rate $60. + +Yeah for the UFO place!!!",review,D9PU9OmIrCvolQWDxBRYlQ,1,2,1 +Oz1w_3Ck8lalmtxPcQMOIA,2008-04-09,OIp5gapOlB6B9EBCMgUf_A,4,"We've got another first timer here...! + +I am just as shocked as the next person that after many years in Seattle, I had never had Bubble Tea. Gasp! You can get it almost as readily as Starbucks. I learned it's also called Boba and maybe one other name. It's all the same to me. Same-same. + +I had my first boba initiation at the recent Office Hours with Gabi. I was completely overwhelmed by the options presented to me: what type of chewies (for the record, that term just doesn't seem right), base drink, optional flavorings, etc. It was a lot for this gal to handle. Luckily, Alica B. was at my side leading me down the boba path. + +She helped me pick out a concoction of Thai iced tea and regular boba. Gotta start with the original boba, right? She ended up with a coffee drink with coffee jellies. I feel like I'm now ""in the know"" because she asked for the coffee jellies and even though they weren't on the menu, they indeed had them. That's a little insider's tip from me to you. Wink wink. She was so excited I thought she was going to consider this woman the Patron Saint of Boba and commence worship on the spot. + +I was surprised to find how incredibly filling boba is. I wasn't hungry for hours! Overall, it was good. I don't see myself craving boba, but if someone wants to go, then I'm in. I'll check out the jellies in my next go round. If the craving is boba, I would definitely recommend this place!",review,-Dof9NwAoQwRM-GVPZk5zw,4,4,5 +mxrXVZWc6PWk81gvOVNOUw,2012-07-17,YAyei_j3SvGQLCtzJjriDw,4,"I went here with my book club and they definitely gave us lots to roar about. Their Happy Hour is only good in their bar (which was fully packed) or out on their patio. Their patio is fabulous! Who would have thought a patio in Arizona in July could be so cool and welcoming. Great atmosphere. The waiter was very accommodating about all of us arriving at different times and peppering him with various drink and food orders. I had the most delicious Huckleberry frozen margarita. Perfectly smooth (out of a machine to be that consistent). It was basically a plain lime margarita with a generous drizzle of huckleberry sauce on it. The huckleberry sauce was slightly tart (not syrupy or sweet) but delicious! It went down very smooth. I had the fish tacos which were messy and the salsa verde was finger licking good. I am amazed that, during the summer, they have Happy Hour until 10 pm!!! Woohoo! Overall, a delightful experience and I will go back.",review,VgdDYz0-i1kDszfEu5nFdg,1,1,1 +jRfdz5voj40P6WS9L54caw,2011-04-04,Cts3HvXeGnPfYlSz2PBL0g,3,Patio seating is lovely!,review,1iJ0AwkYqDKHYMdUVarN0g,0,1,0 +K8pM6qQdYu5h6buRE1-_sw,2011-05-13,cM7EgnZayKb7F92-NOv27A,5,"Dear Lo-Lo's why do you have to be so damn good!? I really wish that when I had you last weekend you had been dry and tasteless so that I wouldn't have to come back and eat Fried Chicken and Waffles again... but now you have made me an addict to your delicious mouth-watering juicy breasts & thighs... Woah where is this going?! LOL Thank goodness you do takeout for now my husband will have to do his husbandly duty and pick me up a piece or two on his way home from work.... + +Truly wonderful... I never had waffles with fried chicken before and I'm not sure why I was so surprised at how great this pairing would be but I was... Great service, everyone was friendly and upbeat and seemed to actually enjoy working there which is definitely a PLUS! ;-) I love you Lo-lo's!",review,1qw1NflQJvb0WhKn-_hwDQ,0,1,0 +eevmoukqJtU2l9tZmm-HKg,2012-01-12,lbjnAe_px0NaNVx-sPqM_Q,5,"I have completed this run (obviously not the 27th annual edition) 5 times now. The course is always the same - a bit hillier than other Papgo courses as it takes a right along the sidewalk behind the zoo, but the organization is always excellent. The t-shirt is another good draw to this event - a long sleeve shirt that changes color in the sun. There is always food at the end, a raffle, and a great crowd. One of the best events on the racing calendar each year and an excellent way to start the new year off right!",review,zCC6huLkNBEr3JUgQyxJbg,1,1,1 +DcrM4hwDcU2G6vuh2cnaYQ,2011-07-24,c6olUYIIH7OMHsux2Wi4oQ,5,"This is my absolute favorite restaurant in Phoenix. This is where we go to celebrate and to enjoy a night out with amazing food and great service. Noca is an experience. I wouldn't recommend trying to quickly hit up a meal here before trying to catch a movie. I can't imagine trying to rush the experience! + +On our most recent visit I immediately ordered my favorite cocktail- the Dirty Bird. It's so perfectly crafted and smooth...plus there are bleu cheese stuffed olives. Sold! I felt a little bad because my fiance wanted to celebrate our new jobby-jobs with prosecco... my bad. Lay off me when there's bleu cheese stuffed olives and vodka involved mister! + +First up was the mixed salad. I love how it's not overloaded with cheese and candied fruit. It's the perfect balance of flavors. + +We then had the lobster roll and it was absolutely heavenly. I really hated to share that but I needed to save room for the scallops. The scallops were so perfectly cooked and the plating was gorgeous. The flavors were outstanding- absolutely sublime. Ryan actually asked me if I remembered his name. I just smiled.",review,qRo9gHN5OiV1-peDuhCh-g,3,2,3 +rRXGdtqUTBtczey1DGenEQ,2012-06-26,i9CY2KH6TIvyCgo-D4rJUw,5,"I found this place based on Yelp reviews so I feel obligated to add one more 5 star review to the mix. I needed to get a chain fixed on my bike and was not looking to spend a ton of money or hours trying to fix it myself. So I stopped by and had them take a look at it. + +They recommended a full tuneup to keep it in tip top shape and spent the time explaining and demonstrating why it is deserving of spending money beyond the chain repair. I ended up passing but didn't feel like they were trying to take advantage of me. Since it was close to closing time I left the bike with them overnight and got a call late in the morning the next day for pickup. It has been as good as new ever since. + +Having my fair share of riding in the Valley of the Sun I'm sure I'll be back soon for some inter-tubes or a spare part for whatever craigslist bike I happen to be riding around at the time. + +Protip: Check out the unique bike artwork they have around the place. Also they have a small BMX (?) track in their ""backyard"" you can ride around and do jumps on anytime.",review,i-irTdF9JerNf0hG64EpEg,1,0,0 +ObnZiF99lqggVasgyGBtVA,2008-12-11,CkqZTWY-qzWBsveljx21pw,4,"I love Stax. They introduced me to the world of quinoa. Their quinoa black bean burger is sensational. I do the ""Build your own burger"" and get garlic aioli and the house ketchup. I am a big fan of their sweet potato fries, as well. The service has always been great and the prices are reasonable. This is a good alternative to Delux, if you are in downtown Scottsdale.",review,CHnSp6logJJND0Tx86LTgA,2,2,0 +1f_DXcxpAKfILKK6cDPLxQ,2009-10-29,iIB0N9XneiSfuel6RYvfWQ,4,"The staff was great, from the owner Bruce meeting you at the door to the bartender Sharon the friendliness of the staff stuck out. + +I had the T.T. Burger which had cheddar, sauteed onions and remoulade. The burger was excellent, and the coleslaw was great. I am not a slaw fan, but this slaw with Bruce's mom recipe that included vinaigrette was wonderful. My only complaint may have been the fries were slightly overcooked for my taste, but I would go there again.",review,Ec0_hyghnX9jZQW20OYeoA,0,0,0 +h6jfMpTZpNduLG0wE2tbaw,2011-03-03,vtbbkfMP_0D5rXz2Fz_UJA,5,"I had such a great time at this place both times i went. The first visit was a sushi dinner extravaganza with my sister. The place was literally a 10 minute walk from my childhood home, where my parents still live, which was the first bonus for this place. Once i walked in my excitement grew. The place was small and intimate although a bit on the hot side. Our waitress spoke with a heavy japanese accent and she was very friendly. + +We ordered a bunch of rolls, they have a fairly small selection of rolls which is fine with me, and some nigiri. They even had Uni! i dont know how it is in phoenix but i live in Salt Lake City and Uni is incredibly hard to find there for some unknown reason. Anyways the sushi was well prepared and tasted very fresh. Their yellowfin was just amazing! + +My next visit was a lunch with my mother a few days later and we ate mostly non-sushi offerings which were also very good. I had yakisoba which was delicious and my mother had the bento box with teriyaki steak which was also fantastic. + +This place is a real gem and for me personally the location is perfect.",review,Gu_tCn0lDuYBtd1NB1-Szw,2,1,0 +5U1ArcV-HXR5UlkdQx1a9A,2010-01-01,fnQ0l_XSIiDU7VGluH0nxA,3,"I came out here Halloween to party, since everything place on Mill had a line we just picked this one place to party for the night. Drinks are cheap, I was shocked at how low the bill was at the end of the night after buying rounds of drinks until our party got their buzz on, but maybe its just me used to Hollywood prices. T_T Out in LA you get used to paying for parking, cover and then exorbitant prices for drinks. + +I love their signature cherry vodka drink, its tasty! Its kinda like a Shirley Temple?! Service at the bar was quick for the amount of people there. Plenty of room for dancing which is always a plus.",review,sdTdf5zwsPGDw4vBnKks-w,1,1,1 +Sb1_G-DMy26YHafNxxhVrQ,2011-08-02,N_VjIz6pErO-9jKNOWVouQ,4,"Decent farmers market with several friendly vendors. + +Look for the jalopeno peanut brittle, the incredible maccaroons, sweet republic ice cream and crepes from torched goodness! lots of yumminess and it is dog-friendly!",review,xZvRLPJ1ixhFVomkXSfXAw,0,1,1 +TgxDGx7L_JICWbuBUCGVqw,2012-05-15,eKL1a_O8CnliR4wQfbktIA,4,"When you go to a place called ""Fajitas"" you order the dang namesake! I've had all the different fajitas they offer and I love all them, my favorite is the shrimp it's lightly seasoned and grilled to perfection (side note: order the onions and pepper caramelized)! The tortillas are strong enough to fold without tearing yet still have a nice flavor. The toppings are always bright and fresh, the guacamole is legit. My coworker has talked me into always ordering a side of Queso with the free chips and salsa. Albeit the restaurant is old but the staff is super friendly and detail oriented. And yes, no matter what you order you will smell like fajitas so make sure you don't have anywhere special to go after eating here.",review,rL3dPeKDTybG_ct9OCXGAA,0,0,0 +-AAig9FG0s8gYE4f8GfowQ,2009-12-08,VUj3qlPdSXxKL6CUOgELKg,3,"I had the Soppressata with Aged Provolone & Roasted Peppers. It was a solid sandwich overall. The quality of ingredients was pretty good, but the only part that gets me is the price. $8 + tax? Wow all that ""supply and demand"" stuff I learned in Econ class wasn't a joke. Worth trying once, but I don't think this is a place I'll be grabbing lunch at on a regular basis.",review,jdoGEEy5s-5L1O_lNzEi2g,0,1,0 +Pg8OPh1D2ws0xO-I-8ppoA,2012-05-28,qeNauCfsJXaeEnGtsb78vA,4,"Upper Crust is like Grimaldi's on steroids. The two places have nearly identical decor and the pizza is extremely similar. Upper Crust uses a little more cheese which is nice, but they also use cornmeal on the crust which I am not crazy about. The wings are huge and delicious, especially with the honey BBQ sauce. The meatballs are nothing special (with or without the mozzarella cheese), but Stephanie H would disagree. Happy hour is Monday-Friday 4pm to 7pm and on Wednesdays they offer half off on bottles of wine. + +Overall, it is a very good pizza and I plan on returning. Next time I'll be giving that pizza cookie a try. I really liked Upper Crust, but Grimaldi's in Old Town is still my favorite for traditional NY style thin crust pizza.",review,34gJ_KlP3RM6jotNT6TcDQ,2,5,0 +Zruvunhqw7cuyuoe7g09Gw,2011-06-25,gw-uSjSPb4w_i3-x5fCRjA,5,"Wedge salad is delish! Love the fact that it's organic, as well as the fact that the pizza dough is gluten-free...sure beats having my husband sneeze for an hour, after eating ""regular"" pizza. I will say, the pizza is pretty good...and this is coming from a girl from Chicago!",review,MfZszvOQNY_xdbA9ruz_zQ,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2011-08-01,udgc9PxxD-U-ne-drBFy4Q,4,"From the moment you enter this place you get the feeling that you are entering some swanky underground restaurant, the lighting is dark and the decor is mysterious!! I am in love with the fashionable staff who come to work wearing what they want as well as the chef in the back with the 12 inch mohawk. The drink menu is stocked with exciting choices such as ""In Between the Sheets"" and the ""Dirty School Girl""! Not your average bar! The BEST thing on the menu in my opinion is the House Made Fettuccine. Honestly the best homemade meat sauce ever and I am hard to please considering I was raised on Bolognese sauce! A great place to take a date whether it be your first or 100th this place will never disappoint.",review,rk-QLuEgeDYJAmTHNOl13Q,1,2,1 +jdtc9AARnZLOi38Qvkdm7Q,2011-06-06,q0etOH84ZVPbxjYggae-1A,5,"Parents, please let ur children explore on their own! I c parents following their kids around !",review,BaHlhZ4dUO1AUY87ZXY6Tg,0,1,0 +g9jX2oXQr8zrOQgynYnYjQ,2012-12-12,wt87CmXPtlwRdItR74_5Gw,2,"It's ok, good for a quick bite. I don't understand the almost cult like following. +Made a mistake and had the shake instead of pop and was sick for hours. +Staff was very friendly, but they needed someone dedicated to keeping the place clean.",review,dOhJ6mf09CTJciqW0lbKug,0,1,0 +QzXFdjIbFRGhzL83goPPLA,2012-06-12,PkOP32jQaFmDPhzN2igy2Q,2,"Good service. The waitress was friendly. but the food was just icky and the Place smelled bad! like sewage pipes. I had a glass of wine. there was no way I was going to order a mixed drink while she was tearing the bar down. +I didnt feel good after eating the food. I had a coupon so it made the total bill cheap. But i would have walked out if I had to pay full price because The atmosphere they boast should provide better food. + +No Not good dont go",review,7RXtu3n5OfNsgmRT3b2x7Q,1,1,1 +Lc3-XLmobyijQpOxHdEPFQ,2012-04-30,rEyg5tdoh-v50sR13KGGmA,5,"Originally came by to get a watering system for our chickens and ended up buying something for every member of our furry family! They have everything here for cats, dogs, small birds, rabbits, poultry, horses and more! The customer service was excellent, we were even given free samples for our chickens without even asking and were given informational sheets about some awesome products we ended up buying as well. Both of the people working were concerned with taking their time to help us, not about making a sale, and will even special order some products for us if ever needed. We don't feed our dogs dry food anymore (they now eat raw instead), but when we did, these are the premium/healthiest brands we were buying at a much higher cost at other retailers. + +The prices are low, the hours are convenient, the customer service was great, the products are healthy, and the selection was large for how small the shop is, what more could you ask for? Great first visit and we will definitely be coming back again!",review,3kBRJk0uWE4HQ9A0Yj2xYw,0,2,0 +HFj8LRDtS62uGAj-J_eNOw,2011-12-12,gtpzXg4DIyqpAwcL_E0atw,4,"Combination chicken fast food joint and gas station? Yessss! It's so convenient when I need to fill my car and my stomach! Joking aside this Popeye's isn't bad. Pretty much what you expect if you like their chicken. All of the workers seem really nice here too, they normally let you know if they have any specials but I would be sure to ask them just in case. And while you're waiting for your food you can just pop in the gas station store (they're connected). If not, they also have a drive-thru.",review,3Zi1udoY2iT9s8Q3X6tgZQ,0,0,0 +LfKPiwth-lGmCKTxlDoV9g,2006-12-04,Jkvu5OwutuOWyLD6qKHv5A,4,"My girlfriend and I had dinner here with my brother and his wife this past Saturday. It was packed outside so we had to sit outside which was fine. If anything it got a little too warm under the heat lamps, but the atmosphere was fine. + +Food was very tasty across the board. We had steak and organic chicken on our side of the table both of which were cooked exactly how we wanted them. Juicy and tender. + +Service was excellent. Recommended.",review,zPZolvtHRjv6xAXl_9reXA,0,1,0 +gUt-pPUpOVVhaCFC8-E4yQ,2012-05-27,o5yxmUgBXhvHfNCvbBxPuA,3,"Great sushi, not so great on speed. Cute place, friendly staff. Try the Vegie Goyza, it is great. Sushi rolls are a bit large for one bite. Asked if we wanted a Tea refill as we were leaving. Huh?",review,9iK_an2jNnbaH1GCzPQKUA,0,1,0 +cBpJIOrVXotDI0XAZH_k0g,2011-10-06,iXT5dAq4jV0o3hcmh2Ayug,4,This is my favorite of the Yard House restaurants and not just because it is on my side of town. The food always seems to be done just right and my husband and his sister enjoy the beer. Would have given one more star but my husband has yet to find any food item that makes him want to go here over some other restaurant. Since I just can't seem to get enough of the grilled cheese and tomato bisque soup it is very disappointing that he doesn't want to go.,review,kG0XNpPjIihErYXINk7OYA,0,0,0 +dewq6aevfoNFvJBqM7PG5A,2011-11-19,pyHsNEiyma9a020tXJZCDA,4,"So I am not usually in the Tempe area, but a friend told me about this place. So I though I would go try it out. I got a Grande Latte that was around $4. Not a bad price. But what made it worth it was that I guess this Friday I went was a Free Shot Friday. So I got an extra Espresso shot in my latte making it a triple for $4 bucks...no that is a deal. Not sure if they always have the promotion on Fridays. But it sure did make my morning a little better. + +Their menu is very easy to read and give those no too educated in the was of coffee a good description of what each drink is and how it is made. + +The had a ton of great looking pastries even though I didn't sample any. Cakes, Eclairs, Scones, and I think even what looked like cheesecake. + +The decor was very interesting. An old fashion coffee house meets a gypsy vibe. I think they have Wifi too. I saw a few people on there computers. + +The service was a little slow I think. Felt like I was waiting for my drink for 10 minutes and the place was not really that busy. This was probably because of the guy ahead of me when I walked in who had about 7 different modifications to his drink. I have worked in a coffee place and those people are kind of annoying. So I will let them slide on the time of service. + +Overall a great experience. Would have been 3 stars, but when you get something for free, in my book that is an automatically another star.",review,Nj4hLqsNh0vpIt0-HwakHA,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-08-02,JmzVCdRVnN0b4PQd87rMqw,2,"I've known my way around Sky Harbor Airport since I was 4 years old and Terminal 1 was an actual terminal. In the time since then, their attempts to improve the airport, transportation and parking, and terminals have made it extremely confusing. Get in the wrong lane and you'll end up in the parking garage, when all you wanted was to drop off someone at the Departures curb. + +Terminal 2 remains the most accessible, with a parking lot located across the street and few airlines stationed there. Because only a couple airlines now use this terminal, security is a breeze. However, it's the oldest terminal, smells bad (like rotten pizza) and doesn't appear clean. + +Terminal 3 a little more of a hassle, although they have a parking garage attached to the terminal allowing you to enter any level through the elevator. More airlines use this terminal and it's much smaller than Terminal 4, making it easier to navigate. + +Oh, Terminal 4. You're so nice, new and clean. You have access to great restaurants like Flo's Shanghai Cafe, Einstein's, Quizno's and more. I love Taberna del Tequila for a drink just prior to my flight inside security access (I don't like to fly, I prefer a bloody mary prior to boarding). You have tons of shops from Borders Books to local AZ tourist junk. I would like to love you, but you are just a mess. It's way to difficult to navigate your lanes to get where you're going, pick up and drop off is dangerous due to the people who pull away from the curb into lanes without looking, and security is painful- not only is there always a LONG line, but TSA agents regularly yell at people to ""pay attention!"" I dread flying out of Terminal 4 because I have to leave extra early for all the BS. + +There are much easier airports to navigate and use, but we're stuck with Sky Harbor. I can only hope the light rail access once complete will help in making it a more user friendly airport.",review,BDQjq30H2gFncFvaapvm6A,0,1,1 +-gefwOTDqW9HWGDvWBPSMQ,2010-03-25,H_3MSr25x4aGU9cFhlMHTw,4,"Always there and (almost) always reliable, Seamus McCaffrey's is still my favorite place to grab a beer downtown. Last Friday night, I convinced a couple of friends that we ought to go check out the newly burgeoning night life in downtown Phoenix, since they had both moved away in recent years. So after being thoroughly un-wowed by the Roosevelt row area, we decided to head back to our favorite old standby, Seamus. + +My only complaint was an out-of-order men's room, which gets a pass for being in a known old building and for the bouncer explaining our other options politely and immediately. After all, what's an Irish pub without a pisser? Thankfully, still a pretty good Irish pub in this case.",review,HZ3ItZ23xZHqjUjRIdPi7Q,0,0,1 +WYk91WPklqRWuk9z9DsPDw,2011-04-19,bi1TCH_RAg1Lt2bIGXcVFQ,2,"With all the hype before this place even opened I epxected a whole lot better. There are so may flavors lacking in the basic tacos. The tamales are so generic and dry. +The place is nice and clean and the staff is friendly and the little salsa bar is a nice addition which I had to give this place 2 stars. If you want geat tacos go to Gallo Blanco or to Americas.",review,yz_j8mA3pnkdWkZ6nimBwA,1,2,0 +Zu93JuSKbponnD3Mx5zpEg,2009-02-20,d9OpkgeZ2kxVoXfWlhJh3Q,4,"I've always sorta had mixed feelings about this theater. On the one hand, there aren't a whole lot of options to see independent film in AZ besides this place and Camelview, so I've got thank Dan Harkins for those outlets. On the other hand, there are times when this theater plays the SAME movie for weeks. An examples of this was with What The Bleep Do We Know?. I hate it when this place does that, but it's nice to see films here that wouldn't normally get play at Camelview (ie. Che: Parts 1 & 2, Let The Right One In, etc.). + +In all, this place is a bit like my own Cinema Paradiso because I have so many fond memories in this theater. There was a Pulp Fiction screening when I was in high school and I got to go to an advanced screening of Slumdog Millionaire and actually got to meet Danny Boyle when he showed up for a Q&A afterward. I just wish they had midnight screenings of classic/grindhouse/cult films like The New Beverly in LA.",review,FxxYCRPcpd__yhRRmmtyMQ,1,2,0 +tpIU_ZvIfCfCp36IgghlHQ,2010-02-23,n79EcqmEPfFv78iDPrcs6g,4,"Yummy food!!!! Period!!! Sandwiches are great!!! Customer service is great!!! I was at the counter while ordering, i was asking about the cake, they had on display and the guy gave me a free slice o cake cuz it was my first time there!! cool place, good food.",review,cc-NjTz637u7EtFd83dn_w,0,0,0 +q-qjZDKcBdDRuIUxj7b97g,2012-01-29,23Jiy_H33Sk7maaaTLJV0Q,3,"The food...delicious. The atmosphere...relaxing. The service...pretty spot-on. The pricing...ehhh, not my thing here. The only way I was able to eat here was because a family friend treated my family out. But if you're looking to spoil yourself or anyone you know, with food, this is the place to do it. + +I ordered the Chicken Romano (pan-seared with a blend of romano cheese & panko breadcrumbs, with lemon shallot butter, tomatoes, asparagus & yukon gold mashed potatoes). The chicken pan-seared with bread crumbs was great to eat, crispy on the outside and juicy on the inside.The asparagus... I've had better, but the yukon gold mashed potatoes were silky, buttery and made perfectly. They went well with the chicken romano. + +My dad ordered the NY Strip, and they were kind of enough to cut it up for him since he was handicapped. They checked up on us frequently. THE ONLY THING I WOULD COMPLAIN ABOUT WAS THEY ACTUALLY CAME UP AND ASKED IF I WAS DONE (ALREADY GRABBING AT MY PLATE) WHEN THE FORK WAS STILL IN MY MOUTH BECAUSE APPARENTLY I WAS STILL EATING. Since that ruined my entire experience thus far, I just told them to take it. + +In addition, the entire table got an order of the unlimited salad bar. The salad bar was great, but nothing like the choices offered at Souplantation. Also, because I ate the salad beforehand, I wasn't able to finish off the main entree I ordered. + +Will I be back? Probably not.",review,IzAHGTkF41fhhZ8pRnGgww,0,0,0 +jfDBaBgwINrGYAo8p2MJ4g,2012-08-27,37OUFjqDHZpGgqZAHgy4bA,4,Home made fresh noodles. Reminds me of San Francisco china town food.,review,HavRojH3G8AlJchZXonaOg,1,1,0 +ewZlgc22xN5NNQ1H7U6Y7g,2012-09-07,7LZ3ipwHjxbK36sB8XjytA,5,Everything I have tried here is awesome! You can't go wrong with your choices! Service is ok. Could be better. Not very personable!,review,U6Uwhvf-HpigDGmQN6UVrQ,0,0,0 +H7KzlC0-o1wIhlGg-Me5Ag,2012-07-14,iMEdCsxdwseu___7uDB_Ug,2,"Food is OK - sometimes good - used to be great. The service is terrible and a 25 minute wait for lunch on Saturday at 1:00? Seriously? It seems the restaurant relies on takeout - hostess ignored folks waiting to get on the wait list (irony intended) to serve carryout customers - could the tips have an influence? +We were finally seated - had Shrimp Pad Thai and Red Chicken Curry - the curry was very good, but shrimp was overcooked and the dish tasted substantially different from last visit. The restaurant is incredibly loud, to the point of distracting. +We used to go here often, but will be eating at other places from now on when Saturday shopping.",review,XMAqt8jG6GfrW5WuD5LNfA,0,3,0 +9yKzy9PApeiPPOUJEtnvkg,2012-05-02,nKuQxSWZQD-Jh4zQPnfcqw,2,"I was here once. A reasonably sized girl broke her white plastic lawn chair and tumbled to the ground. I averted my gaze and tried to focus on my overpriced mediocre eggs benedict. My friend just laughed and laughed. I guess I should have ordered the mimosas, too.",review,ZiMCaIaUlBmVnNjREY0W6Q,0,1,2 +gqLWBFxOKag8dXwVxEvTrg,2008-05-27,nnS89FMpIHz7NPjkvYHmug,2,"Being a creature of habit anytime I want good sushi I go to Tokyo Lobby. Well, my group wanted to branch out and try something new so we decided on Sakana. Not a fan. And what's shocking to me is this place was packed! The restaurant opens at 5:30 on Saturday and we arrived at around 5:45 and were lucky to get the last open table. I don't get it... + +Messy rolls that all tasted the same. We ordered the tootsie roll and the crunch roll, both tasted similar, except of course for the crunchy captain crunch on top. Just a mushy mess, that was hard to eat. Bland tempura. No bueno. I did, however, have a very good tuna poke salad, but I would not go back just for that. + +If you want good sushi on the west side, or the entire valley for that matter, say no to Sakana and yes to Tokyo Lobby.",review,MmPOU8kbuwkE4NedXe-qZw,3,2,1 +G5SASWuL_CVxpgwXXGC4DA,2012-04-01,rZbUfLjag57St_AXUXNEqw,1,"If only I where rating this place based on their sushi I would give it 5 stars. But, I'm not rating it based on the food. It is purely based on the customer service in this establishment. Be warned; if you have a large party this is NOT the place to go. I've been in the restaurant industry for over 20 years and I have NEVER heard of a restaurant not splitting checks for large parties. So for an over 500.00 bill they will take 15+ different forms of payment but won't split up the check by individuals or couples. How does this make any sense. To make matters worse; they bring out the sushi and I quote ""family style"". Since when did sushi get served family style? Here is the problem. Sushi is expensive, not everyone at the table ate it and when served ""family style"" someone else may get what you ordered and you won't have a clue it even made it to the table. We spent over 40 minutes trying to figure out this bill, SERIOUSLY! When I asked the manager her generic and obviously well rehearsed response was ""this is our company policy, we do not split checks for large parties"". This is absurd. So not only did we have a heck of a time figuring out the bill, I'm pretty sure no one really knew who had what and if they had added random things to the bill. How could you know with that many people ordering???? I never received part of what I ordered yet it made it on that bill. So here we have to pay it regardless of what we may or may not have received? I understand that adding gratuity to a party this size is also common practice which I don't normally have a problem with but how about some EXCELLENT customer service in return. If policy is no separate checks, at least tell everyone as they order or as a group that this will occur. They said someone was told when the reservation was made. The reservation was made for 25 people! It would've taken 2 seconds to again relay this important piece of information. Worst experience ever!",review,TQKPQR8csbXmC-_-2XB0PA,0,0,0 +-EctXOb3B7T177jGYUhjVA,2010-07-05,_0BGgf3grew5jfV9BW07qQ,4,"Okay, so a group of us go out practically every Friday to the same old places for beer and food, but mostly for beer. So to break out of the norm, I was in search of a place with excellent beer and good food and somewhat close to home. So onto Yelp I go and came upon Boulders, and the reviews were pretty good and definitely worth checking out. So we all pack into the car and head over to Boulders. The parking is great, plenty of spaces to go around. You walk through the patio, not bad with all the misters, felt like I was in a rainforest, but very refreshing. So you walk a little further, watch the steps, and there's your bar. Very open, plenty of hightop tables and lots of TV's. The beer menu was plentiful. It should make everyone from the microbrewer to the coors drinker happy. I was pleased because they had plenty of vegetarian meals, or dishes you can substitute meat for veggies... and for you meat eaters out there, I was told the burgers were delicious and the waffle fries were soooo tasty. The staff was helpful and attentive as well. I would definitely add this into our Friday night rotation. If you're looking for microbrews, this is a place to check out. The atmostphere is kicking and just an all around good place to kick back.",review,BVx7_5ox_erPCm2Id3Ncmw,0,1,0 +x4L42igQPv4TFlqGR2Wthg,2011-03-27,2_PaDmpdqhdEK6dl7BM8MA,5,"I went here on a Saturday night and sat outside listening to the band playing in the background. It was part of the Music Under the Stars, or whatever it called, very cool and fun though. BTW, I see a lot of people commenting on how loud it was, to all you yelpers, take that with a grain of salt, it's a pizza place near a large family residential area on a weekend, what do you expect, I guess it's an expectation thing. By no means is this going to be a quiet candlelit dinner for two. It's a classy, family oriented pizza place. + +We ordered the caesar salad and small pepperoni pizza. Very well priced, and the pizza in my opinion tasted delicious. It seems like everybody has some weird opinion on how good pizza is, and I guess I have a weird opinion as well. Here goes...the size of the small, is not small it was more like a medium (value! winning!)(sorry lame Charlie Sheen pop culture reference) anyway, it had a faint sweet taste on it which i really like, the cheese was good, not too much sauce, and the pepperonis were very flavorful. They were the small kind and they were just great. The Salad was good, salad is salad, it's hard to mess that up. + +We were helped by an awesome bartender/server named Chandler. Cool guy, really nice, he kept us entertained. + +We'll be back I want to try some kind of meatlovers next time we go there.",review,sljlQDKEhsHDt9Mx5B2b9A,0,1,0 +3yRq8DjiSt4lSPEonpSaLQ,2008-07-27,umlD45tB3DEHiKuVLDN_sA,4,"Wow, I am surprised at the last review. I have found the food at Bada Boom Pasta Room to be excellent every time I have been there. I am in love with Mr. Pink's Pasta. It has a delightful vodka sauce, and you can also add proscuitto wrapped shrimp as well. They have a fantastic martini selection a well, and the decor it hip and fun. Did anyone say red velvet walls? Great place!",review,d8geeKYzPeGp8uSP8C6PTw,4,3,3 +tAmevVP8B7PiWxcJ0PlYVA,2012-01-16,ZBKtc84KW5q9DtscOB974w,5,"There's a certain amazingness that comes from fresh made ice cream. It's soft, creamy, and not filled with high fructose corn syrup and preservatives to keep it together for months in a freezer. Growing up in Arizona, we always made homemade ice cream in the summer and if you've never experienced homemade ice cream, just go to Churn. +I had the banana ice cream with caramel sauce on top. I can't say anything bad about it at all. If someone doesn't like their ice cream, it's because they've been subject to all the fakeness added to ice cream in the stores and national ice cream shop chains. +The shop has lots of toys and candy and knickknacks that will give you a sense of nostalgia. I'll tell you what sounds like the best day ever: riding my bike down Central on a beautiful Phoenix day... stopping in to Churn for an ice cream break (and then popping into one of the restaurants nearby for a cocktail).",review,liiYhDAP64C8uLyixBDWdg,0,1,0 +aIpqc26pFPyEglBrs0k7EA,2010-01-31,rFe_1ZTVr4BEsJ5U_vSj-Q,4,"I'm a Sprint customer so maybe I'm biased. I'll just say that upfront. + +I got another phone on my plan and had no problems. At all. + +Once I told the salesperson that I lost my connection cable for my BB 8330, he gave me one free. + +Score. + +Though, minus one star for not being a repair store.",review,T5mD6ggC7fh48QgXR0LevA,0,1,0 +Dsvx2LEC8jk9nuGsg1Kqhg,2009-09-04,3NeeZn65Gi-l6qeJWlrblQ,4,"Before I shop at Whole Foods (which is on the same lot), I buy organic produce at TJ's because it tends to be much less expensive. +Also a fan of the delicious frozen gluten-free pancakes, the organic vegetable pizza (which you can microwave in a pinch), the gluten-free ginger cookies, the should-be-illegal-they're-so-delicious lemon madeleine cookies, and the canned cat food, which has a minimum of junk. Hubby also loves their frozen chocolate bananas. I just wish that all of the TJ's stores stocked more organics.",review,Cj6tGJrLEdN35H9cR6b8Lw,0,1,0 +zOCdVUKUN3b-obT67Qjyww,2009-05-03,PxQUaU25pQ1ybUjcv_JCZA,3,"If you have ever eaten at an exceptional German restaurant, you will be ruined for life. Years ago, the Haus would have gotten 4 stars. But after being turned on to a little gem in Gibson City, IL called ""The Bayrn Stube"" my appreciation of fatty meat and spices stuffed in an intestine laid on a bed of sauerkraut and red cabbage has been forever changed. Haus just doesn't quite measure up. The cup of soup before the entree tasted like it came out of a can and the bread looked like the sheets of Hawaiian bread you buy at wally world. Probably the biggest turn off was when they brought out the brown mustard still in a plastic squeeze container. +My meal was the Nuernberger/Kassler combo for one, and I had enough left over for breakfast the next day. Their sausages seem to be of lesser quality than I would get at Sunflower and the red cabbage had some pork gristle in it. Not that I mind a little pork fat in my cabbage, but not chunks, and definitely not gristle. My friend ordered the Huehner (Chicken) Schnitzel, which had a very good flavor, it was the best part of either of our meals. They do have a nice selection of good beers on tap, no Aventinus though. +If the food was anything other than German, it would get 2 stars. It is nice to have somewhere to get a schnitzel when I'm in the area, but I wouldn't drive out of my way to eat here.",review,9eY0M7voV1g_cm4ddI4OCw,2,2,0 +JrQuZeFYMOyO7pgt2QsS0Q,2012-04-11,Ub_EVO5-TTNFlEsuOlHG4Q,5,"Top notch. He is now my go to barber. Charged only $16 for cut and beard trim, but I throw him a tip on top of that for an exceptional cut. He will ask you questions throughout the cut to make sure you end up with the cut you came for. Can't go wrong with this guy. And what a cool place!",review,GLwSntMlUtHUYCGFikHVHw,0,1,0 +nRO4tRwimU12hg7Cnz__iA,2010-06-23,p1zmTSim_CriGLngyDM2Ow,5,"By far my favorite Mediterranean restaurant in Arizona! The service is always awesome, the place is always clean, and the environment is always welcoming and friendly. I love hole in the wall, family-owned restaurants because [at least the ones I have been to] there is always a sense of pride in their service and their food. I've been to this restaurant a few times and have loved everything I have tried. I like being able to taste flavor, not seasoning, and their Dolmeh appetizer is just that: a perfect medley of herbs, grape leaves, and rice. + +I usually order the #6 - Beef Kebab, but I have tried their #3 - Chicken and Gyros and #7 - Lamb Kebab. The meat, be it beef, chicken, lamb, or gyro, is always moist and tender. Like their meat, the grilled vegetables have a perfect blend of crispy and lightly seared on the outside, but juicy and steamed on the inside. The basmati rice is always thoroughly cooked and flavorful. The same goes for the Homous, Baba Ganoosh, and Yogurt Cucumber Dip. I highly recommend their house Combination Platter. The pitas are always warm and their homous and ganoosh have the perfect texture. + +Try to go around 5p to beat the dinner rush. The place is always packed on Saturday nights, so show up a little before regular dinner time if you want to ensure seating for your party!",review,jZK9oNsuWe4qtX5KBt6Dqw,0,1,0 +lvpXyfTDF5WZnjzc36r5Wg,2009-03-16,RqypbpctRh-GW6y-rq5zlA,5,"i just finished licking my fingers clean and almost ate the dressing-drenched paper that held my very first, and surely not last, lucky boy international burger. + +crispy bun, tons of dressing, fresh lettuce, tomatoes, pickles and onions, and a perfectly tender, smokey burger. thick, perfectly salted, crunchy on the outside and soft and burning hot on the inside fries. thick and deliciously sweet chocolate and peanut butter shake. + +gone. in less than 5 minutes. + +place closes early, so unfortunately there will be no drunk trips through the dangerously narrow drive thru.",review,HY9qpAamqLXFoa7xMwNntg,3,4,3 +cXx-fHY11Se8rFHkkUeaUg,2009-10-19,ew3mLlCiwBalU01_2_eufg,3,"These folks pour a DRINK for $3 on Saturdays! They have daily specials and the Saturday special is $3 SoCo or Three Olives. Saturdays also offer a turkey cheeseburger and fries for $5, but I didn't try it. You can see all their specials by hovering your cursor over the day of the week on their home page (http://www.16th.st/index.html) + +It was NOT crowded when we cruised in for the Sun Devil game this past weekend. We were greeted by a guest who asked if we had a reservation and then hollered to the waitress who said there may be a wait. At least they have a sense of humor! + +The advantage for us was we got to take our pick of the TV we wanted to view the game. There were two Texas Hold 'Em poker tables going (not my thing so I don't know specifics) and I saw pool tables in a separate area -- photos on the website make it look like there's shuffleboard too. + +Definitely looking forward to going back. It was a great place to watch a game. I'll have to try the food next time and maybe they'll get a bump to 4 stars (although, I observed their nachos are real cheese nachos, and I'm a fake cheese nacho girl so I'm gonna have to pick another game day food!)",review,vsXP832M0kOxKpfduD7dWw,7,8,4 +G2Re2E5Jkv_UF1xrenSsDg,2008-02-01,52CZjnpWg0Xm2xLNX66QCw,4,"I told myself not to buy clothes at Macy's since I did not have that much room in my carry-on luggage. Darn you Macy's!! Why did you have a bazillion racks of clothes that was on sale!!! NooOOo.. I could not resist the temptation and bought 4 shirts for $60. I wanted to buy more too!! + +I have a love-hate relationship with this Macy's.",review,mU5GwCA4uiD0-RH1qt3jrQ,2,1,2 +QVR7dsvBeg8xFt9B-vd1BA,2009-08-02,XylYT-qEexVQvi9kQayfcg,5,"This is a GREAT place to eat! One of my favorite lunch stops as you can see if you follow my facebook photos ""Lunch With Stew"". My favorite thing there is the Buffalo Chicken Pizza. mmmmm, mmm. Kevin O'Donnell is from the Texas Hold'em family of final tables and occasionally will play the tour. Super great guy and he also has a super great restaurant and sports bar.",review,NrRS56Dv52m2BND-9v1qWw,2,1,1 +eHcQzL5eebqvKrLW5q283w,2012-12-04,ghCbfrZmjCZ4ax-SM6S9ow,5,Amazing sandwhich joint. A must go place to eat!,review,tFyQbNbBQEyEc9oCr1pJUg,0,0,0 +OFBJtqWGSx6n6CchtVmoRw,2012-04-12,2dAXW2v95-zXZiDmVbCgLQ,4,"On one of my Scottsdale excursions recently i got taken to Delux by a friend who said they make, ""the best burger she has ever had."" So obviously i had to put this to the test.We started with sweet potato fries which were served in a mini shopping cart which was entertaining. They were cooked to crisp perfection and lightly seasoned and still had the incredible sweet potato taste. I got to try the clasic delux burger itself and it was quite amazing, incredibly juicy and cooked just how i like it. We also got the lightly seasoned original fries as well which were just as good as the sweet potato ones. i also got to try the turkey burger which was also juicy and flavorful, along with the chicken panini which was incredibly tasty. it was a great lunch every one i was with enjoyed themselves and I am glad my friend recommended it.",review,WhhKmQRrzAgyMiC7AoXB8g,0,0,0 +B-FG89Jw729_i5rfA7FT7A,2011-07-26,mumqLJagsjP9TErFbRmMxw,5,"5 stars all the way. + +Let me begin by saying that I'm a big fan of the products. The store is done in very warm tones and the drinks are incredibly aromatic and these 2 things combines seem to make all my stress melt away when I step in the door. + +I'm not a huge coffee fan, but I can order some of the coffee drinks here. I'm completely unable to drink the caramel frappuccino from Starbucks, but I can't get enough of the caramel ice blended from Coffee Bean & Tea Leaf. + +So now that we've established that I love the product, we can move on to the real reason this place gets a 5 star review--the staff. I've never seen anything like it. If you come in 3-7 times someone will probably know your name and might even know your drink. + +Leila is the best at this. She knows peoples names, their drinks and if you come there often enough she even knows which car you drive. She'll see a regular customer's car pull up and she'll have the normal drink ready and waiting for them by the time they walk through the door. THAT is the epitome of customer service.",review,Cz14fLzWMXg-7-oRpBGFag,1,1,1 +nw2YkHEjzSj-_0aIiKB7rA,2011-10-31,TQ893vMDBwNwMeJpyBpB4A,3,"ok experience, just got to a point I did not want my membership anymore and it was complicated to stop it all. I just did not like the autopay committment.",review,9OiOuOhxnXZ3zcqFaIZiOg,0,0,0 +74NT13vpDleoNrkxQdEpsQ,2012-12-31,m5JOM5okVoB7-CodGxytdg,4,"Occasionally I just feel like going out for just basic breakfast, i come to this particular MacDonald's. It's a place to have a big breakfast and watch some of the interesting people that you now are regulars among others. It's always clean and the service pretty quick. it's by no means and exciting venue! is okay for what it is. I am not a big breakfast eater so it serves the purpose when I am in that particular mood. + +When I am traveling I often go to a MacDonald's for breakfast. I usually need to eat something and can count on pretty standard fare and a decent price. If it's just before catching a plane in the morning, a Greek meal that I might prefer first thing in the morning might not set well at takeoff as a big breakfast..",review,4sIK_74UwkKU9YQXIfgCdg,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2007-05-18,0q2I70f7p5TGWSh1bGHk5g,4,"As far as malls go - and I hate malls - this one is tolerable. Just speed past the food court to avoid a cluster you-know-what. + +If you like upscale, this is your place. Me, I typically hit two to three stores and leave. But maybe that's just my shopping style. + +If you have the cash to blow, the time to spend and the desire to shop, then this is your mall.",review,APLIPfq1Rf8QyhHHk2uAyA,0,1,0 +fK7ujDbjhRFEe2D7eIwK4w,2008-04-14,R0A19zt2GyhjGmVce3d_tw,1,"Quick spot for a mall-made mayo-based California roll. This is where you go to learn how sushi can go wrong. + +You've been hard at work doing swipe-and-sign. Perhaps you even dropped a thousand bucks at Neiman's on a worthless Jhane Barnes' sweater and some silk-lined Zanella slacks or three thousand on a whats-left-of-last-season's-collection of Brioni blazer. Whatever your fancy, you're toting a wrist full of roped, glossy, shooshing-sounding bags with tissue paper sticking out the tops. You just want a break and some cool refreshing sushi. + +It's OK, but beware. Unagi and other ""hot"" items have a ""beep-beep beep-beep"" before they get to you. California and spicy tuna rolls come real quick -- 'cause they come from a vat of mayonnaise. Rice is not right either. Stick to tuna and salmon sashimi and miso soup. + +If head chef Rick is there (think Kyoto of Empire at 24th and Camelback, then Ichi Ban, University off McClintock), ask him to make you a Fat Bob on Acid, for good ol' times' sake. Or just go to Starbucks, tide yourself over, and find a real sushi restaurant. + +And about the Brioni... Don't sweat the buyer's remorse. It'll make a great tax deduction to Florence's.",review,hDlSSyDreM9xY4yQWPm54w,3,4,3 +7sNFLjSyinVqeQ_Teg2WRQ,2012-10-20,0aa3LhWitRTTGuzUhdcwzw,5,"Stay in the courtyard recently and have no complaints at all!! RIght when I entered the place , the staff greeted us and they were all very nice and helpful with everything. Although i only stayed there for 1 night , i thought the rooms were very well kept and the bed was amazing! The first thing i do when i check into the room is look at the bed and sample how if feels and this bed was amazing! The rooms are about normal size and has a tv , desk , chair , etc..... Wifi is also a must whenever i travel and no complaints here. Wifi was fast and easily available. Did not have a chance to see the gym or the pool but they do have one. Overall , i would stay here again if i come by Phoenix!!",review,FBE0gDdN4fZH-6uo-mWgPQ,0,0,0 +WHd8fLeMeWKUK6sPyeB-UA,2009-08-16,g-9ZKp70OA-YDiWuA8bi4w,4,"The best part about Logan's is the rolls - and I don't mind that you do not need to add butter because it is already dripping with butter. YUM! I can taste a hint of beer in the roll as well...or it could just be yeast..or wishful thinking. I am trying to be healthier, so I went with the salad and water. The anything-and-everything salad does have some good items included - craisins, pecans, egg, grilled chicken and a good balsamic vinaigrette dressing...but still it was a salad. Maybe I should have ordered the grilled streak salad...but the peanuts are a free appetizer and you can throw them on the floor. What fun! The sweet tea is outstanding and reminds me of my days in Atlanta. + +Another review commented about the similarity between Logan's and Texas Roadhouse. They are very similar, but I wouldn't say Logan's is a knock off. Plus Logan's was started in 1991 to Texas Roadhouse's 1993, so perhaps they are the ones being imitated? + +Come in for a sweet tea, free peanuts and the excellent rolls. The rest is about your average steakhouse. Two salads, one tea and a water - $22.",review,zCC6huLkNBEr3JUgQyxJbg,2,1,1 +Nj6ITW0Zhl7LpovGIH6SAg,2008-12-01,rAhZ_nV116_uxZnVEAWXmg,4,"Yay I am a fan...ok for the ladies...this is a tough bit, I have shopped here with girls who literally will hide good finds in other places of the store so they can come back and get them later, most of the time they are gone. + +Funny huh, this place literally looks worse then some of the barrio shops in rocky point, it seems like it is the day after thanksgiving every day there, and people literally throw stuff anywhere. + +For the guys this place is a pretty good place to go, the deals on shoes are unreal, nikes that are $100.00 bucks for like $20.00, you can't get that anywhere. + +You can also get top notch clothing and make you look like a true Scottsdale deuschbag for less then 100 bucks Rolex or Tag Heur watches will not be found here, sorry deuschbaggery only goes so far at last chance. + +In any event this is probably one of the best bargain basement places in the valley to get top notch stuff. + +Two things you need to know about this place. + +1. They restock every Sunday, so Sunday mornings here really are like every black Friday after thanksgiving, you might get trampled to death like that guy at Walmart or shot like those two dudes at Toy's R Us..and it could be your last chance:) + +2. Check all your shit seriously, allot of this stuff is here because it is damaged, so be careful they have no return policy that is why it is LAST CHANCE!",review,Ofxlhi_HKp7myFDpwg9aIA,0,1,4 +xWcTt1L4vQC_QkPfPBVlCw,2009-04-29,FlzwpccnrO-4-m7Fx2YEAA,2,"The furniture was nice, but I didn't get a welcoming vibe in here at all. First of all, it smells like a dead cat in there -- perhaps it's the mid-century furniture, but whatever, light some incense or something. Second, the guy working there was completely cold. No hello, no how are you, no welcome. He just stared us down the entire time, not saying a word, making sure we didn't touch anything at all. It's a frickin' furniture store! How can you not be allowed to sit on the couches? I don't care if they're vintage or antiques or the like, it's not getting my business.",review,xkTbpCc-YhU8-EXZDA7u0g,3,3,6 +VK54dQNl1VlwtDxjTocxhA,2011-11-05,XZa2oz1Aop-Gz2af4MclZg,3,"I have to say i avoid this store as much as i can. I have lived in this same neighborhood for 15 years,so i have had to go to this store many times over the years. They just never understand Customer service at this location. It is very close to where i live but, i would rather drive a little further for fresh and Easy. However, i this night i thought i would just stop here for a quick shopping experience. My boyfriend was really sick and i wanted to take him some fresh Chicken soup that they make and sell here. So here i am at 6:45 at night on a weekday. One cashier is open ,yes only one in a store that size!!! Mind you the store is packed. The line is all the way down the frozen food isle. There are 4 registers where you can check your self out / But, no one is there to help them( all 4 busy).. And it is winter in molasasville. So slow. I am sorry and don't want to sound like i am above it all,but i do not have time to waste like this. This is not a one time experience either. This is one of the biggest reasons i hate going to this store. I have been to other Safeways around the valley that are not like this. The one on 7th Street for instance. They never behave this way. Sorry to say i will continue to avoid this shop!!",review,F6QsMoJdvtohlbnST-fDyQ,1,1,1 +-bd26a1QEEpqUZjBmtBUiQ,2008-08-23,1x1M3I42UF4mG_45W1cZcA,4,"OMG, oh so good. Gives me gas and makes me tired after lunch, but it's well worth it.",review,9VPNlcKsL99FvKtz1r9qJg,0,0,2 +ZuFdIKk_5x140kpUmRTo2w,2012-09-08,rOOfSaJCEkTnvmqvdbt8uQ,4,"Sunset rise on new year's eve. Gorgeous scenery. Great short ride, but you cover a lot of ground with a lot of different amazing views. Saguaros everywhere. Great view of the lake from the top of the hill. Friendly staff. Drawbacks: horses seemed pretty tired by the end of the day (we were the last tour). Even though my horse misbehaved, our tour guide handled him very well. Looking forward to more rides when we return for vacation!",review,PlElSxv5-h60-88_1EVLuw,0,0,0 +edcGkJ6qPs3lUnSz9pqoGQ,2012-07-05,B55SnzOSjF3Q-HCS4BKrIQ,4,"Very excited to try this place out. I tried the sampler of all 4 beers and really enjoyed them all; however, the watermelon ale was my favorite. Great service, cool, relaxed atmosphere and delicious beer = a winner!",review,pEVf8GRshP9HUkSpizc9LA,0,1,0 +ltk2xcvDFvuljYIpMnRqAA,2012-03-28,6M5tZArDCgjXph-AQxHf3Q,4,Same menu as Phil's Grill but you can reserve a table on this side. Food is wonderful and service is great. Love the daily soup special. Try the wings but ask for them to be a little on the crispy side. The ribs are wonderful and they give you a lot. If you order the fries as an order be prepared to share with everyone in the restaurant. They give you enough for an army. Sunday night is half price wine and $5.00 burgers. Get there early as they pack them in.,review,JxizK08K88qgrxL6dGb6yw,0,0,0 +9yKzy9PApeiPPOUJEtnvkg,2011-02-02,4x5yLG7_yGLuN-w6fV0eBw,4,"I love every place on South Mountain. I've been wanting to try a Monte Cristo for awhile now. The wait was well worth it. Massive flavor explosion in the mouth. Finished it off, chased it with fresh lemonade, and seriously wanted to order round two. For sure will be back next week for that second one.",review,Vk-hJ1i5ZagPM87Kv9FOnA,0,1,0 +sspvIv6br3Vto2s5JkeiMw,2012-12-29,Cjzu_kQeY2e3ToXHSGKfNw,1,"I usually do not complain about bad food but the fish and chips gave my wife a serious case of food poisoning. So if some manager reads this please check out your fish supply or change the cooking oil. She never gets sick and has been sick all day (December 29, 2012) from the meal eaten December 28, 2012.",review,LcbCDjtqNP2IcGuBdrcBzQ,0,0,0 +97Z7j4vH0kfzL10AONi4uA,2010-04-05,ESIuov-MzGqSkucA8l7d4g,5,"Still in love with this place and how much care they really have for all of their clients. + +I hit another, I want a piercing moods and swung in on a lunch break last week, determined to get this piercing I thought would be perfect on me. + +As usual Jo was absolutely amazing. He brought me back and we discussed what I wanted and when he looked at how my ear was shaped he said that I may want to try something like this (then drawing dots where they would go). He took into consideration my piercing past and said it's subtleness and the petite jewelry would suit me well. + +And as always, I came out super impressed and ready to show off my piercings. They still look amazing a week later. I'm still in love, and they are perfectly healthy. Job well done. But I'm not surprised.",review,7zDqr2I0-xpw9HF5Ha54cA,1,1,0 +zDyx_BL0RJbXWpXSFfrf8g,2009-05-11,mkEfn0UMgmphtiMpZDSE_w,4,"Ok....my 2nd review of an ""Irish"" pub. And we're getting closer. Good ambiance - I really thought it looked much like a few pubs I visited in Dublin (tho no pictures, that I saw, of the famous revolutionaries, no flags, no old photographs. But a good draft beer selection. And a really good Irish menu - we had the fish sandwich and the banger sandwich (lunch menu) which included chips (french fries) and I ordered a side of curry dip for the chips. Good stuff. +Good Irish music (cd's) playing in the background - not obtrusive. And a very good wait staff. The bartender greeted us the minute we walked in. But sorry, folks, music is Thurs thru Sat and no Irish music that they admitted to - cover bands instead. So I'll keep looking, but I'll stop here when I'm in the neighborhood.",review,ETIAM78kYT_xPM8b2iqi7g,0,1,0 +qiwajZigq_2twTmYofPmDQ,2010-03-24,2L30O7G8IQ6HILpR0t5RFA,5,"part of a social event, we only had app's here. quite delicious crab cakes and a shrimp fritters with mango sauce. the portions were gigantic and actually big enough for a meal. i was slightly full afterwards. part of the roaring fork, wildfish franchise, they also offer a great happy hour. seems a bit high priced but our bill was taken care of, so i'd save this (for the middle class foodie) for a special event.",review,ST8Yzlk2MqKlcaLqL2djBg,0,0,0 +tV97OH1LK00kUcX0Jig-sQ,2011-10-19,c4Vngc4Uxy9sQstQ_4Wapg,4,"This place makes some of the best vegan gelato/ice cream I've had. If you're vegan, skip the (kinda gross) soy froyo, and eat one of the gelatos. The service was super friendly and all the gelatos were super tasty. I had a big scoop of peanut butter soy gelato. It was by far the best peanut butter based ice cream I've ever had.",review,MPRRpCrzvYA9jbNVEcMDDA,0,0,0 +ntN85eu27C04nwyPa8IHtw,2012-03-31,2JGPmNX9KJPhyU0TSPTeXw,5,"Okay, I admit it - we are waaaaay late to this party. We tried once before but the hour-plus wait was just two much for the four starving carnivores with me that day. This time our strategy was to go early on a Saturday morning as close to 6:30am opening as possible. We arrived around 7:15 (it WAS the weekend after all) and only waited about 20min for a table for two. + +I had the special of the day - 3-egg scramble with andouille sausage, fresh local baby spinach and fontina cheese - YUM! The sausage had just the right enough of bam and the home fries with rosemary and onions rocked. My companion had the hog and chick - awesome meaty bacon with that. + +Great value for the price - I packed up at least half my meal for the starving teenagers at home (who could not be roused at dawn). If you haven't been, get up early, bring a newspaper and rest assured Matt's Big is well worth the wait.",review,g_HNO8oUoYDKd4yJi2_yvg,0,0,0 +2UfTG6BpFgeMREXQdAd_TQ,2011-08-13,4oVXKR4TrryBNNoGFBhvog,4,"Very nice theater, with a very friendly staff. The seats were comfortable, the popcorn was fresh, and the place was clean.",review,aAOosIA2598fl8v2mcWoWg,0,0,0 +7cfh_iFrzh2489palOKKmQ,2012-06-06,nBl7D6aJd4HJrB49tczpJQ,4,"I've been going here off an on since 2004, and have had pleasant experiences. It seems like the same guys since the first time I went, which to me tells me they have experience and a loyalty to their company and customers. They are always nice to me, and try to explain what's going on with my car as well as present me with options for repair. They are also great about trying to save me money by doing things like contacting manufacturer's about warranties, offering me packaged deals that cover what i wanted anyways, and providing discounts. + +One time I went for a package deal that was actually cheaper than the individual things i needed done for my 60,000 mile checkup. Part of the package included new filters, but since I had just switched them out myself and they were still in practically new condition. They went ahead and gave me the new filters, saying that I didn't need new ones, but i paid for them. I really appreciated this even if they only cost a few bucks each. + +Another time, it was slightly unfortunate in that it took a very long for them to get to my car and complete all the repairs/order parts etc. I waited patiently and didn't complain and they were very grateful. They kept thanking me for my patience and apologizing for the wait. When the bill came they had given me every special and discount available including an overall discount on the bottom line for the wait. It's not often that companies will give you anything without you having to bitch. While the wait was unfortunate, they did what they could to make it an overall good customer service experience. + +Overall good customer service, and a place that I trust. + +**as an added bonus, the mesa library is within walking distance.",review,AF1FkKODDmXFbVhlNIp4vA,0,0,0 +ozWBsvbeM2LSPsRDsYKr1Q,2008-02-01,x_mfZv-3kEPkjb-2sMmynA,3,"I'm used to Ranch 99 back in Northern California, and this supermarket wasn't anything spectacular. This is a good place if you want seafood! All of the traffic was around that area. The food from the take-out section didn't look too good. + +The market also has the bakery, peking duck, the flattened 1/2 duck, and roasted chicken. + +There is also Hong Kong Express to-go food where you can order noodles, dim sum, congee, boba drinks, rice dishes, etc. It's right next to the take-out food. + +The most interesting part of the supermarket was the selling of Chinese pancakes in front of the store. You can order mini pancakes with either a red bean, coconut, or custard filling. Each pancake is made to order and is $.50 each. I tried both the custard and red bean pancakes and it was pretty good! Cash only payment for the pancakes. You also have to wait awhile for the pancakes since there is a long line.",review,mU5GwCA4uiD0-RH1qt3jrQ,2,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-01-27,o-bfCYYDlc-h2Hbycr2TXw,5,"Busy place, but everyone is nice and I keep having to go to the cell lot because of late baggage from my original destination. They charge a lot to deliver so better get your bags checked 45 mn early...",review,E9jtD7EFBRQDaswk6goqDg,0,0,0 +SMpL3z4FLF07bRA6-y22JQ,2012-10-03,oIJdEFAtJP2KDPwnNFtkEQ,3,"A pretty big group of us came here for my bro's bday and had a good time. + +We had made reservations for a Sat night, and when we arrived, we were immediately seated. Our server guy was friendly, quick and did a great job of attending to our large party. + +The ambiance was more relaxed (and less pretentious) than I had expected (considering you're in Old Town Scottsdale), so I appreciated that. Parking was easy.. not sure how we lucked out on great parking spots on a Sat night in the area, but we did! + +The food: +My sister's coconut fish was very tasty.. addictive probably because of the creamy coconut milk and the sugar they obviously added.. still delicious. +My pork lettuce wraps were tasty and I had the option of getting them with red/purple leaf cabbage, which was a nice change. The meat was savory and seasoned well and my portion was so big, there was no finishing it. +My bro's seafood curry was a hefty portion (as were all the rest of the dishes in our party) but I wasn't a big fan of the flavor. +My hubby's spare ribs were overly-flavored (yes, that does exist) and I didn't enjoy the bite I had. + +Im not sure how authentic this Thai food is, but it was tasty... Thai food is quite healthy (yes, I do believe coconut fats are healthy), but all the sugar added for flavor enhancement of the currys is not very Thai.. nor appealing to me. For a once-in-a-while occasion, I'd go.. but it's not really on my ""must go back"" list, sadly.",review,A99dyhEqcd_yXKPfBWeZHA,1,1,1 +H7KzlC0-o1wIhlGg-Me5Ag,2012-08-26,jk3X3igjYG9PGOoLeJJYaA,3,"Good flavors, fast service. Love their green curry. Great happy hour where appetizers are 1/2 off the reg price. The downside is that most of the appetizers are deep fried. I like lunch better than dinner as they offer a nice salad with the meal.",review,BeC9T1PMdGwZ512_gKaUxg,0,0,1 +rr13jM6SUmfPPPGHHMHCgQ,2012-03-31,p1pev14f3VKcAyO8I2RcOA,4,"HUGE fan! + +Love Poncho, the birthday strobe lights, the food and the service. + +This is a go-to for my boyfriend and I when we're looking for sushi. More likely than not, we'll opt for the all you can eat option for $20/ person. + +With that comes with miso soup, salad, sashimi, your AYCE picks, ice cream and with a special frequent customer request, this awesome pan seared, naturally fatty sea bass belly and salmon cheeks, which are AMAZING. Not a taste for everyone, kinda bizarre for most. But this will be well appreciated by traditional Asian taste and PERFECT for me. Loyalist here.",review,ANTrWPSoOqbXkvLvxes-aA,0,4,0 +jMxPbB_qhCONidfVsf3uBA,2011-01-22,iOhRbJFCSbU93M4w3h6Dqw,5,We love Dr Steve!,review,ZoiBl0VS-36RXokRTJPlSw,0,1,0 +Hdi7jkB7pHiM1nyPHcqSdw,2011-03-14,d0DrtIgaI7ovGRQFudxFZw,5,"This mall has all the upscale shopping that you will ever need. Just make sure you come here with your credit cards in check as you are bound to fall in love with something when you come here. + +They have some of the best department stores in my opinion, and if you're looking for that perfect dress for any occasion, you have tons of options to choose from. + +I love how clean and perfect this mall is!",review,Lp_Ykqfbv5Q-oyGYlMGJRg,0,1,0 +zC3wliBhYA7MkOel6qtuTw,2010-07-23,pAYFUvIe1L7z17MCkze0DQ,5,"This is a great Radio Shack. The staff are older, and very knowledgeable with their product line. If you need odd batteries, check this store out first. I needed a watch battery, and found that they were the only store in Phoenix to carry it. It cost be all of $5 bucks, but saved me having to buy a new watch.",review,VD-RoEyU02NGG7655PMfSA,1,1,0 +XWpkTxBLgRXxl7g2Hw62Qg,2010-02-23,oH9OVWWQ6eUvHZwlLmdeHA,5,"Not only does this place get it's ingredients directly from Italy, it makes a variety of flavors fresh, daily! + +I got my first taste of gelato when I visited Rome Italy a few years back. I've tried other gelato spots around the U.S, but nothing has caught my AMORE, or the authentic Italian flavor, more than Angel Sweet. + +So far my favorite combo is the ""most popular"" Panna Cotta with Banana, (which an employee recommended), Hazelnut and Pistachio, as well as SUPER Dark Chocolate again, with the Panna Cotta. + +Don't forget your punch card, buy 12, and get one kid's size free!",review,A3PEy6o-lQ-kRX3PXJo3hQ,1,1,1 +V1nEpIRmEa1768oj_tuxeQ,2011-07-12,NF44zbH5km75xnXpbmFObA,4,"Yum! Delicious tasting pizza, a wonderful atmosphere, and oh those Nutella crepes are devine!",review,hDkuZWTXVZRYqWojl_rx_Q,0,1,0 +hfl62LX14YqNpG0g0Tj6_Q,2011-03-05,1HfB456zIj_n_trw8Ebe7w,4,"My man took me to Fuego for a pre-birthday meal on a Wednesday night. I was surprised to see how many diners were there a. Because it's a Wednesday and b. Because it's in such an odd spot!! Once you get past the randomness of it's location, you will see how quaint and homey feeling it is. The two servers working the front of the house were friendly multi-taskers who welcomed, advised and fetched drinks while we decided on, then waited for our meal. We started with the scallop app and agreed that it was great, although small (3 scallops/$13). How bout one more tasty morsel? Apparently, it was small to save room for the hulking entrees we graciously received next! Wow! I had the seared ahi-a huge portion of it spicily seasoned, lightly seared, and great tasting! The man had the stuffed chicken breast, and inhaled it. It looked great as well. Also in the ""great"" category were the side dishes! Omg, the cheddar massed potatoes were so freaking scrumptious I could die! I also had the jalapeño creamed corn, that I mixed with the potatoes to make a combo from heaven! Man got the green chile cornbread casserole, which sounded meh, but tasted incredible! Such a fantastic meal! Stuffed with amazing food, and pampered by attentive servers, I was disappointed that I couldn't give Fuego 5 stars. But it wouldn't be prudent. +Why, you ask? +Because the sangria sucked. I had both the white, that tasted like watered down kool-aid, and the red, that tasted like old, cheap red wine mixed with coke a cola. They both sucked. Not good. Hopefully it was an off night, beverage-wise and I just happened to be there for it. Everything else was spot-on!",review,wC1CPV5bf--bDLtlhNSPLg,0,0,0 +Gq092IH6eZqhAXwtXcwc6A,2010-04-30,pv4iPzmxeSF5pG47OzLdAQ,4,"This is in a really cute part of Chandler. I've driven by a million times, but never paid attention to the all the restaurants. We went here for lunch based on the great reviews it received on Yelp. + +I can't really add much more to the other reviews, but just wanted to be one more person to say that the food is delicious & service was excellent. Great ambiance & music too!",review,Dc3nvTY7eWjOFWM3lvAztg,0,0,0 +b78Cnqgeb4GoHqPobBXsjw,2011-06-29,MHEZCvdj2RCJk3_uFbcb9g,5,"I LOVE LIFE TIME!! It's always clean plenty of machines to work out on that are in working order! HUGH VARIETY of classes to take and keep you from getting bored. My kids LOVE it too and ask when we are going to the gym. They also have the rock climbing wall, basketball and Squash courts and outdoor and indoor pool with life guard and a water slide at both. The out doors and indoors have a lap pool as well . The inside has 2 extra large jacuzzi and of course your steam room and saunas. I personally love the locker rooms they are so nice to shower and get ready in they provide everything you could think of ( just like a 5 star hotel!! ) This place keeps me motivated You Gotta try the Zumba class and Strictly strength class!!!",review,Kdv_6GNMx5QF4f6aEdjbHw,1,3,0 +BtKwRZRMyTIi9BRFk-75sQ,2011-04-25,NeHydq5dEAXXvOJh-HTtQw,4,"Foothills Park in North Glendale, AZ is a more than just a dog park!!! This park has a skate park, an aquatic center / fitness center, baseball/softball fields and a branch of the Glendale Public Library. + +On the north side of the park is the Foothills branch of the Glendale Public Library. Here in 2011 this branch has started closing earlier a couple days a week and they are now closed on Thursdays and Sundays. You can still request books online to be transferred to this branch for your convenience. + +The dog park was recently expanded with a new section of dog run that connects the front of the park on 57th Ave with the back of the park behind the library. Parts of the dog park are closed a day a week for maintenance, but part of the park is open every day. + +The baseball fields are the area of the park I use the most. Arrowhead Little League (www.ArrowheadLL.com) is based at this park and they play two seasons - Spring and Fall. The City of Glendale also runs baseball and softball programs at this park. + +A playground sits on the South side of the baseball fields, just North of the wash. + +The Aquatic Center (www.glendaleaz.com/foothillscenter/) has an outdoor pool with slides and lap pools. There's a fitness center indoors with all the equipment of a normal gym plus a rock climbing wall and full indoor basketball court. The kids love to hang out at the rec center. + +The skate park on the west side of 57th is an area I've avoided thus far. It's usually packed with kids riding skateboards.",review,WQFJ8_V1lao4oZ_FKbk5Zg,0,4,0 +sbsFamEj5wDxNAjUKrMcSw,2012-04-12,eJl3BaI9KB3kzdKfDmVgog,1,"My son and his family arrived into Scottsdale Tuesday April 10 on there way to California. We decided to eat at RnR before they continued there trip. My son and my wife ordered a hamburger and fries. The fries had no taste and my son asked for two new orders. My grandchildren ate the original fries, while the new fries loaded with Parmesan cheese. The fries were not hot, nor had the cheese melted. I had a few of the fries and did not have as severe a case of food poisoning as my son and my wife. + +I have recommended RnR in the past. I do not think I will in the future.",review,RP3-rEZAYqbkX50ixDFbTQ,0,0,1 +Rg3INE2p4zQYvfMvJduEOQ,2011-04-14,kYhKWql0mcqKkfEyTDFmIw,4,"I love Greek food. I have no idea when I became so enamored with Greek cuisine but I am glad I did. I end up craving it at least once or twice a week so when I met the fiance for lunch today near his office I mentioned aforementioned craving and he led us here to Cyprus Grill. + +The place was pleasantly busy but not overcrowded. We ordered at the counter and out food came out pretty quickly. We tried the gyro pita as well as the gyro plate. We cleared our plates in no time so I guess that means the food was good, right? + +The gyro meat was tasty, moist and flavorful. The rice was delicious and the tzatziki sauce was refreshing. We decided that we'd be going back for future lunch dates whenever possible. Besides, you can't have too many go to Greek spots in my opinion so this one's definitely going in our books. Done and Done.",review,hcctCQy3bdZMezrUKkZLtA,0,1,0 +j7-YRDU63fw975an55zHGg,2011-05-23,BqNpHEKVrpJEAhkRHJ46xA,5,"For those of you who love Indian/Pakistani food, but hate dives, Z-Grill just may turn your whole world upside down. In all foodie honesty, Z-Grill is home to some of the best Indo-Pak food I've ever had. This praise comes with a reminder though...it is divey. + +Z-Grill is located inside Zam Zam World Market, which is a decent little grocery, but it lacks the umph that other well-known ethnic groceries delivery. With that being said though, other groceries lack Z-Grill, and this is why it matters... + +Everything I've tried from the restaurant, and I mean everything thus far, delivers. From the hummus, to the samosas, to the chana and even to the paneer masala and chicken karahi, I've only been disappointed when I realized that I was down to the last bite. The flavors are robust, the sauces are spicy and, surprisingly, the prices are unbelievably reasonable. It's safe to say that I'm addicted to this place. + +**A word of caution when trying Z-Grill. They are sometimes out of items on the menu. I find that charming cause they have to make everything from scratch, others might not. If they happen to be out of something, do yourself a favor and just try something else.** + +I cannot say enough good things about the food from Z-Grill. This is a must-try in the valley for anyone who has a love for spicy Indo-Pak food. Go try it!",review,--65q1FpAL_UQtVZ2PTGew,3,3,0 +JW6fDZOuUKtJyZGeldh0xA,2010-06-28,f0-le0ob-ZieOJvkUvFgBQ,4,"The name sounds like it's straight out of a book filled with a happy storyline, friendly characters and sunny days. And Chestnut Lane, the eatery, lives up to expectations. For the ultimate lady who lunches, this should be # 1 in her book. + +I discovered this lunch spot awhile back and immediately made my way there to check it out. From day one, I was hooked and have visited several times. Chestnut Lane is small, quaint and every bit as charming as the house they call home. When I first walked in, I saw gorgeous fresh salads to the left, begging me to take them home. Fresh pastries, cookies and cupcakes lined the counter top and refreshing water made their home in reusable milk-type jars in the refrigerator. The owner runs the shop and takes great care of the environment and the food they serve. From ladies who lunch, to professionals on the go...this spot is normally packed during lunch hour, so get there early. + +My favorite dishes include: the lobster salad (worth every penny), the tuna meld, chopped salad and honey roasted chicken blt. It's hard to escape without a bag of their delicious cookies or a mini cupcake. If it's mini, that means zero calories right? :) For those looking for a healthier option, their fresh fruit is full of amazing berries, etc. + +Hours: Better hurry and make it during store hours! Chestnut Lane is only open Tuesday-Friday from 8-3 and Saturday from 8-1.",review,4ozupHULqGyO42s3zNUzOQ,3,4,1 +P2hdIBaOhbDwYfFcyokpyg,2010-03-08,leXN15iXBgo2s-INMklJmA,3,"I've been frequenting this Savers since the day it opened a few years back... + +They have a great one dollar tag sale on Mondays which is pure bliss I tell you!! Having a tough week, head over to Savers with a 20 dollar bill on Monday and you will come out a new woman with a new wardrobe!! + +My mother is the one who actually got me hooked on this deal lol.. The original frugality of the family lol. + +Overall, I cannot give this thrift store five stars just because I am a thrift store whore and have visited about every thrift store in and around the Phoenix area and have plenty of experience with many other thrift stores. + +This Savers requires a lot of digging, but some of my best finds have been a Dooney and Bourke gently used wallet for $16.00. Banana Republic black sling shoes for $5.99. Brand name NEW work out clothes and plenty of NEW with tags vintage dresses all under $9.99. + +This Savers is okay for just cheap everyday wear, other than that you won't find many unique and extravagant pieces here. Also, for some reason, everyone that shops here is really nice and friendly, no competiveness at all :)",review,Mmew2rqnwj8FW3qD9wsaQQ,4,3,1 +qkbloHdDZuHf_0wTqUGPjQ,2011-09-25,py9CNLEoBarrM1EaVfRg9A,2,"I guess it's not really the most accessible place, but Frank & Albert's is located in the Arizona Biltmore Resort & Spa and serves as one of their restaurants to their guests. Since the other breakfast place they had was only a cafe that served baked goods, I decided to come here to have a proper breakfast. + +When I asked what they recommended they immediately said ""the Biltmore Benedict"". I was easily sold so I ordered one, and a coffee. + +Cool thing about the coffee is they just bring you a carafe to serve yourself coffee as you please. Not sure if this was because the waitress was lazy, but I thought it was nice. + +The eggs benedict themselves were not the best. On one hand the ham that they used was overcooked (ie. jerky). On the other hand the english muffin was over toasted and too crispy, which kinda ruined the overall consistency. + +It is a nice patio that they have to sit on, so I will give them that. They apparently have a bird problem where birds kinda come and scavenge for food. I didn't really mind it.",review,E3-93iTqkix1JRjqZNv5kQ,0,0,0 +qfFSS0A5OXUkCbTeC1fYLw,2007-07-10,cnFSJ52zVRmXT3JcrOmdUw,5,"EXCELLENT TRIP TO THE SPA!!!!! + +A trip to the Aji Spa (located at the Sheraton Wildhorse Pass Resort and Spa) was at the top of my list during my recent trip to Arizona on Memorial Day Weekend. We made our reservations well in advance. Having gone to a few spa resorts, I couldn't wait to pay this one a visit. + +My cousin and I were each booked for the Little Yellow Bird spa package, which was comprised of 2 services each. We arrived about 15 minutes prior to our appointment time and was given a tour of the spa. After changing in the women's locker room, and relaxing in the private women's lounge area (there's a large lounge area, but it's co-ed), our masseuses met us and brought us into our room. My cousin and I decided for our first service to be the Companion Massage. After only having solo massages, I was interested how a companion massage differed. The 50 minute Aji Massage flew by. My masseuse was professional and the massage given was very comfortable, relaxing and beneficial. + +After our massages were completed, we had some time in between our next service, feeling a little hungry, we decided to grab some lunch from the spa's cafe. I ordered the flatbread pizza and it was TO DIE FOR! Seeded flatbread topped off with a garlic peppery aioli, grilled chicken pieces, pesto sauce, marinated bell peppers, melted cheese and avocado. My visit was a month and a half ago and my memory, a little fuzzy, but that was one of the best lunches I've had in a long time!! + +After lunch sometime, we each were up for our second service, our facials!!! Due to my skin type, I received the Aji Rain Facial. My esthetician was wonderful! Her hands were soft and gentle while working on my face and we had some lovely conversation during the 50 minute procedure. I left that room with my face feeling renewed, clean and fresh! + +All spa treatments include full use of the spa's facilities so we definitely made well use of that! After our facials, we used the sauna (the steam room was out of service during our visit) and whirlpools located on the women's locker side. We then relaxed and lounged by the outside pool. The Aji Spa is such a calm, warm and relaxing environment that I ended up taking a nap! Outside! In desert heat! Thank goodness for the wooden awning with misters attached and the huge patio umbrellas providing shade! The staff at the spa provided excellent service! From the front desk, to our masseuse, the esthetician, the cafe staff and the locker room attendant! While napping, one of the staff from the cafe even brought us iced water with lemon and cucumber slices in it! + +Our appointment started at 12pm and with our 2 procedures, and lunch, we should have been done and out of there within a few hours. But the point of visiting the spa was to relax, and with Aji Spa being such a lovely place, we just didn't want to leave! We finally left nearly 8 hours after our arrival, and we would have stayed longer if we could! + +I highly recommend Aji Spa to anyone visiting the Phoenix area, or if you're looking for a new spa to travel to! Aji Spa is a beautiful spa with excellent staff and service. They even emailed me the same day of my service as a ""Thank You"" for visiting and included a discount coupon on my next visit! A 5-star spa, indeed!",review,yHCzZTF641SyRQGoefRvQA,2,7,0 +BLgkoO4MKq00V2o9jOf5zw,2012-06-05,pLuclbtZtsvW8Zc7FonzZw,5,The french toast was delicious! Toddy was especially good,review,XMwsFSfJLOlYIs3Pe6xdcg,0,1,0 +LRuIY8JFqadCSYLo242MGg,2010-05-02,loRSSYODeSxbDIqPVi-JGw,4,A few co-workers and I were in town for a conference and decided to check out this place on a Tuesday for lunch. Service was fast and the sandwiches were good. The bread was fresh...I would suggest splitting because a whole sandwich is just too much for a regular appetite.,review,CoO7q1yFPVy-nRqPOYLglA,0,0,0 +Sm-KSR7qtHmP-Z1yBPxedA,2011-03-04,Iio56qtveYEytPTJe1uaog,4,I love the Starbucks in the Safeway here. Marissa...the girl who is normally the barista...is so nice!,review,TTP7l5g4QUVCpQZ9NTAWqw,0,0,0 +bEQjf7c-9qkNWgXvriSGZw,2011-01-02,F-AKCYEr--6ZEcoFRxlq9g,5,"This place is awesome. Affordable, tasty food. Simple and clean country environment.",review,t6qe0BXW0owmfvljlNZSWw,0,0,0 +KPoTixdjoJxSqRSEApSAGg,2010-09-08,LNW2d7TDLB7XHT-V8k-6Jg,4,"I haven't been in a while but I remember being impressed. Nice ambiance, especially for a Thai restaurant.",review,f3LA83yEEBMj9q92H28O7w,0,0,0 +oMw1SaH_zEbOOufTsGuk6w,2008-01-04,loM2AWQF8H1rHQOOt7MTIQ,4,"We ate here while waiting for our tire to be fixed across the street. This place used to be The Vine for many years, until it closed and the building became two different restaurants. +The service was very friendly, and the menu had many different items in case you don't like sushi. We tried 2 different Bento Boxes of ribeye teriyaki (the online menu lists it as new york strip) and chicken teriyaki. Bento boxes come with so much food! You start with a pretty good Miso soup, and then the box comes with salad with a yummy soy vinagrette, two pork potstickers, rice, and fruit - in this case, orange and apple slices. The steak was tastefully seasoned and melted in my mouth. The chicken was tasty as well, but I liked the beef better. +Then we opted for a few pieces of sushi, since this is a sushi bar. We had the Nigiri salmon and cooked shrimp, a california roll, and a house specialty called the Tukee Roll. It is basically the california roll that is rolled in crunch tempura bits, and drizzled with unagi sauce and miso orange sauce. This was one of the best rolls ever! A great twist on the plain california roll. +Our iced teas were a bit pricey at $4.50 for 2. Too bad we were too full for dessert. Check out their website for an unusually tasty menu. www.tankedfishaz.com.",review,qcBEh_PFohFIJFcK9J23Sg,1,2,0 +0xDNu8EhXAaHVfhHjkYUHQ,2011-01-18,L6XP76Fry30BPcObDM4vuA,4,"This hotel is amazing! The staff is very friendly, it's very clean and it has wide space for a hotel room, nice swimming pool with a heated pool. They have free breakfast and free dinner:) and it's pretty much near with everything you need: mall, restaurants and bars:)",review,w8ZOVM1E1m4jNgHRUSAzLQ,0,0,0 +8Hn5X1AqgmSLHRG2KgBJBg,2009-09-27,We9A4seK9gy842dmfsIRaw,4,"LOVE Oregano's! They have delicious pizza, pasta, salads, wings, everything. The portions are huge and the prices are right and I can honestly say I've never not left Oregano's full and satisfied! Plus the atmosphere is fun as well. If you've saved room after your meal, try the pizookie, it's amazing. Giving 4 stars because there is always a huge wait and they don't take reservations or seat you until everyone is there, and also because the deep dish pizza was far too cheesy and saucy when I tried it (more than a deep dish should be) but everything else is superb.",review,1uwqR1r9nMDgI6RZT_bL2w,0,1,0 +8cL7aJVKTYmLguzXEAS3Lw,2009-06-18,ZrNfIWRPOMOfVpvkgx4jGg,5,"Fantastic Happy Hour 3-6pm! Half price appetizers and good drink prices. I like their Sushi and Garlic Noodles. + +And pretty much everything I've had there is good. I had a Peppercorn Steak about 2 weeks ago and it was amazing. It's right next to the movies so it's a good place to meetup too.",review,lGHGgbkOj3aoVLKcOnARxg,0,2,0 +uEJQSIjWui-TDWXaGlcqyQ,2010-12-27,PYSY5WvX-RVU-gmNc4zx2A,5,"Went here for the first time last week and had a great experience. The restaurant was very clean, the service was great. The best part? The food. I've been in AZ for 10 years now and I can say without a doubt that its some of the best food I've had in a restaurant (and this from a pregnant woman no less ;) + +I had the fried chicken tenders, cheesy grits and fried okra. First, the food came out piping hot, I mean steaming and hot to the touch. The batter on the chicken was thick and crispy. The grits were cooked to perfection- dry enough to hold together a bit but still moist. And the okra was fantastic, too. It didn't hurt that my fresh lemonade came in a mason jar, either. + +I will be back. a lot :)",review,U8ayzBXrBzgjdrCYOzwNOg,0,0,0 +Xsl-i1otDd3GXJEkkKJCaw,2011-04-03,4oxk-dhpdrtMeq6Ks-6uJw,2,"This place is a bit scary. (And since it is a Chinese restaurant, that means a little more than scary). It's dark, (even though its been remodeled at least once since it has changed owners a few times). It serves mostly Cantonese based cuisine although most of the waitstaff tend to speak Mandarin. I'm actually Chinese and notice these things. There is some live seafood. I usually go here for lunch when we have a crowd. It is inexpesive and fairly quick to get in and out. A bit heavier on the salt and sauces than I would like though. I tend to go to my old standbys Great Wall or my newer loves Nee House or South China knowadays.",review,vhxFLqRok6r-D_aQz0s-JQ,0,1,0 +EcHuaHD9IcoPEWNsU8vDTw,2012-12-26,k-FfTT_iv-YOzX_SqyFOzQ,5,"The boyfriend and I like to do little staycations every now and then so when we saw a deal advertised for the Camelback Inn we jumped on it. We stayed two nights in just a regular room, I guess. They had several different kinds of suites (even rooms with a private pool!) but our room was a standard room with a nice patio facing Camelback Mountain. The room was spacious and clean, the bed was comfy and the patio was the perfect place to enjoy breakfast. + +Camelback Inn was much bigger than I expected. Lots and lots of buildings spread out over the property. It's not the easiest place to find your way around but at least it's pretty to look at while you get lost. At the back of the property is a little ghost town set up. It looks like they do corporate events - cowboy cookouts - but nothing was going on while we were there. But we had fun wandering around the ""town"" and taking goofy pictures of each other. + +Even though it was December it was warm enough to hang out by the pool. The pool is heated so that helped and there are two hot tubs as well for really chilly days. They have an abundance of lounge chairs and even offer float rafts and fun noodles for the pool. There were kids splashing around but the area is big enough you can hide away from the action if you prefer. + +We ate at two of the restaurants while we were there - BLT Steak and Rita's Kitchen and both were fantastic. + +We loved our Camelback Inn staycation and would not hesitate to go back - especially in the summer when the rates are low!",review,Pv7DGHzZ-uqIUdOsqPpsVg,0,0,0 +winRNt7prallDbpaDMS9Ig,2010-04-23,TjfAFeidC47fnzVwZ2glWw,4,"I loved the crispy crust of the pizza thought it was super good. I think if you haven't been there and are at the San Tan Mall shopping that its worth a visit. We went on a double date and it was a pretty good experience. The only issue I had was that I thought they had a very small dining area, which was probably the reason for the 45min wait. Also we went on a friday night and probably because of the small area it got very loud, which I know the management has no control over, but just an fyi of my experience. I'd say if you haven't been and you love pizza its worth the visit. I may try and stop in for lunch sometime but definitely not on a Friday night, it was just too busy.",review,h_gopaLFyHShSrjB84JrwQ,1,0,0 +corPOxxIBRJ7DSpryYvorw,2012-09-23,6ExO3PXJ4J395Ux889Ernw,4,"My hubby and I have been fans of Roy's since our first time at the flagship location on Oahu . . . and we've watched him expand to the mainland. Our experience with the mainland Roy's have been hit and miss, but the Marriott Desert Ridge location pretty much knocks it out of the park! We went at the tail end of Arizona Restaurant Week. We really liked the menu options for this special week, and the warm chocolate souffle cake is always out of this world . . . If that was the only thing that tasted good, then we would feel we got our money's worth . . . but we didn't have to worry about it because everything was perfect from beginning to end. + +We had an adorable server who had a great personality and excellent people skills. She was unassuming and let us linger between courses. As I am a stickler about food coming out too soon after just finishing one course, this was just perfect! And so relaxing. The ambiance on the patio, which is where we chose to sit, almost felt as if we were on one of the islands, not in the middle of the desert . . . with the tiki torches lit and the sound of the babbling water features throughout the resort, it came pretty close . . . it was just missing the trade winds. The resort had a band playing as well . . . they were pretty good, a few ups and downs. I would have loved if the music was a little more subtle than the pop-jazz mix they were playing . . . oh, but I have digressed. + +My hubby and his daughter chose the restaurant week menu. Hubby had the Grilled Szechuan Spiced Pork Ribs Smoked & Glazed in Roy's Original Mongolian Sauce. A bit cliche, but they were finger lickin' good! My step-daughter and I shared the Crispy Spicy Ahi Sushi Roll with Ginger Wasabi Beurre Blanc -- it was huge and almost a meal. The rolls were fresh, crunchy, and had a little kick . . . not too spicy. It was a good thing I agreed to help her with it! For entrees, my hubby had the Roy's Original Hawaiian Blackened Island Ahi with Spicy Soy Mustard Butter Sauce. It, too, was an ample portion of tender ahi that was complimented by the sauce but no overpowered by it. My step-daughter had the Roy's Roasted Macadamia Nut Crusted Mahi Mahi with Maine Lobster Essence. Another nice portion of perfectly cooked Mahi. We all were starting to feel the aloha spirit . . . I had to be the exception by ordering off the regular menu and chose my most favorite entree of all . . . the Hawaiian Style Misoyaki Butterfish . . . Aah, what a delight, so melt-in-your-mouth delicate . . . I was in island heaven. + +Desserts were total home runs -- the melting hot chocolate souffle is mandatory for any chocolate lover. In fact, it tastes the same at every Roy's we've been to . . . it never disappoints. A total surprise . . . and a delightful one . . . was the chocolate coconut cheesecake which came with a side of mango sorbet . . . or did she say it was pineapple sorbet . . . whatever . . . it was the perfect accompaniment to the light and fluffy cheesecake. + +We also ordered a bottle of Newton claret which was a modestly priced wine and as my husband said as he swirled and sipped it . . . ""I know my wines . . . "" Having to always be the exception, I ordered the he Original Hawaiian Martini, which was what I considered my dessert. It was a juicy combination of Maui pineapple, vodka and coconut rumMMMMM! + +It was truly a beautiful evening from start to finish. You may be asking why I didn't give it five stars then if there were no misfires . . . that five star is reserved for Roy's Hawaiian restaurants that really do create the aloha experience with some special touches only that can only be enjoyed there!",review,8n--xRBQ9eLDi0vpQ5fGFQ,0,2,0 +ZggSeoAXX2yYZnxbHcUaGQ,2011-10-05,08pbfOohGVEMe4GeZvY8Jw,4,Just recently drove by this Target. It was one of my favorites. Now it's closed!,review,c5JW3ZAFA6KTFipc8eBv9w,0,0,0 +wN_wAXWg8W94v04eqijy6g,2012-02-18,Doyuw0djl829Rc1dsEoJKA,5,"Yes, the place is busy every time I go there, and it takes 20 minutes or so to get your order +Yes, the inside is cheesy and cheap with folding tables and could definitely use a makeover +Yes, the location is...ummm...well lets just say its a ""working class neighborhood"" + +BUT they've got the best fish tacos I've ever had, and everything on their Mexico City street food style menu is outstanding. The $1 tacos are ""mini-tacos"" so get 3 or 4 of them, a couple of fish tacos, maybe a side of rice and/or beans and you will be all set. + +Go there. Just leave yourself plenty of time, it's well worth the wait.",review,dWMP2lpyhQTe028N0wAgKA,1,3,1 +b9svM7RoDUAVnzjFBmf3Ow,2008-06-06,Po6VK2gjcw0PDSMOnDAyaA,5,"Food--The fire roasted garlic tomato soup is excellent. They sprinkle tortilla chips for garnish over a tiny dollop of sour cream. Mmmmm. Yummy. The mixed green salad with albacore tuna is also a delightful choice, as is the turkey wrap and CA Chicken sandwich with pesto mayo. Drip coffee and espresso drinks are good, too. Overall, everything tastes great because it's made fresh. No pre-packaged items here. + +Seating--Lots of booths and tables inside and out. They have a cozy little set up with what looks to be 'lounge' chairs that accommodates 6 with swivel tables perfect, for savoring your beverage of choice. The rest of the dining area looks like it has capacity for about 100 people, if all seats were filled despite a placard declaring the maximum capacity is '311'. + +Peak times--avoid lunchtime during the weekdays. It would appear that all of Surprise is feenin for a sandwich or soup/salad special from PB during 11-1PM. The lines are long and you can forget about getting back to work in under an hour if you factor in commute time, food prep & consumption. IT'S IMPOSSIBLE. The only time service has been 'fast' is during breakfast. I've been there for a breakfast networking event and on a Saturday. During these times, I received my order promptly and had little trouble locating a table. + +Free stuff--this would include WiFi, bread samples with tasty spreads, muffin and/or cookie bits. Bonus points for free stuff! + +PB is open Mon-Sat 7AM-9PM and Sun 7AM-6PM.",review,9v8IyMk_S6eJujux1Cno7g,1,3,0 +FURgKkRFtMK5yKbjYZVVwA,2011-05-23,KK01fqD9jDXQofPfgrTRgg,5,"Awesome! I highly recommend this place! Incredible atmosphere inside and out, the bar design is superb and the patio is the perfect spot for relaxing and enjoying drinks with friends. I went for the second time recently and have to give this place a stellar review. The menu is innovative and fresh! The mixed drinks are killer and the wine on tap was an extremely pleasant surprise. Plus, you can't beat their happy hour seven days a week! + + I have had the crab cake BLT and the halibut sandwich, which were both out of this world! Everything I saw coming out of the kitchen looked amazing and I can't wait to go back and try all the others. The servers were great and knowledgeable about their menu which is always a big plus! As a parent, I love that this place is a perfect day/night out spot for a date or hanging with friends but also a family oriented neighborhood joint where I can bring my kiddo along! Love that Churn is right next door to get some yummy dessert after an incredible meal! The design is spot on for this area! Great job!",review,umk_6ysXhErEbSRaWTZn8Q,0,3,0 +qyNtVViurIcChc35mfYIEw,2012-03-14,lA5gRAPA7EylIrLLxpohJQ,4,"Yumm! Thai tea, spicy Thai beef salad, number 23a and a 32, all of it was delicious! I recommend this place. Just don't go in a hurry because you will be there a while",review,VwcyU7sYIAXjs2Lw-Alz4A,0,0,0 +gkv2XvXpFgiq4Bb2XK7YmQ,2011-09-13,m5MnJVA7pM4K2fffIBYRcg,2,"Can't remember the last time I was at a Hard Rock Cafe. This visit was only memorable for 1) Amanda Peachey's gorgeous face and voice 2) the jungle like humidity inside the place. + +Our servers were attentive. Our drinks were frequently refilled. But it's just not as ""hard rock"" when it's so family friendly. It's a very small space, and being in downtown Phoenix on a Saturday night in summer, it was sparsely populated as well. + +Maybe I'm missing the point, but overpriced drinks and signed guitars on the walls do not bang my shutters.",review,wttePGxhTumTTUinL5tlTg,1,2,0 +9Y3aQAVITkEJYe5vLZr13w,2011-01-18,HlodcyjNnVkBgOkubIaYxg,4,"The Breakfast Club is as good as you'll find. The blueberry pancakes are superb, their coffee is beyond description. For a change of pace, try their Eggs Benedict, Southwestern style. A GREAT spot within walking distance...a beauty.",review,lSmP-JwAHbtTZbxpV4OX3A,0,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2011-08-05,tD3GV_P5RazwVeRcNgLhuA,5,Thomas was very welcoming and a great server/bartender. Came in close to close and still gave us ample time to enjoy our late night date. My lady and i's date night are few and far between so to be able to have a experience like tonight is very appreciated. Kudos Thomas and citizen!,review,PMCrTvBpGXOIep1zmHEjkg,0,1,0 +m51fZnQueyj1q1Ra_yDQjQ,2010-07-13,AksbQqi1J1KYIlqJt8BETw,3,"Appears to be CLOSED. + +Phone number not in service. Went by last week & was all locked up with a realtor sign on the building.",review,mmJzZPMT06-4jRhf5L8laQ,0,5,0 +iZwSI8fB_xa8nPAkwqhJwg,2011-09-29,l2qDjHbVQ5CVREPcWA18Ww,5,"Dr. Ken Danyluk and his team offer an Extraordinary Orthodontic experience. Team Orthodonitcs offers many Orthodontic soluitions for all ages. Whether patients choose traditional braces, Invisalign or ""Hidden Brace"" lingual braces behind their teeth, they always leave happy!",review,-rC7cl8eCWNQGLzLDnoRQA,0,1,0 +jfDBaBgwINrGYAo8p2MJ4g,2011-02-11,nmVnlLomZGCu3i6bSMX46Q,4,"I really love it here. There is a big window that looks into the kitchen where you can watch the noodle chef hand make the noodles for your dish. My favorite is #17, Beef with lemon garlic noodles. The beef is sliced thin and served cold. The sauce is a fish sauce, the fish smell is pretty strong, but it doesn't taste strong, the citrus and garlic are more evident. The only reason I'm not giving 4 stars is because the water taste really funny here. Opt for a soda.",review,7iwFdxqqTYYnnesxA6iy5A,0,0,0 +mwiNm868yAo8Xh8hO7Ke_Q,2011-12-28,jizjfpYrkhPBkpwx4b4WhQ,5,"Let's start by disclosing that I grew up in New Orleans, went to school in Lafayette (home of the Ragin Cajuns), and REALLY know good New Orleans/cajun food. I grew up eating great po-boys, gumbo, red beans, and wouldn't consider eating any of these if not well prepared. That said, I can truly say that Jennifer and the Flavors of Louisiana gang make cajun food as good as any you'll find in New Orleans--SERIOUSLY. The po-boys are spot on (though the bread could be a little crustier) and the chicken & andouille gumbo is even better than mine--and, I assure you, that's DAMN GOOD. Frankly, I've never had better. The only thing that is not ""as good as it gets"" is the red beans and rice. They're good, but not quite the creamy ""Washday Monday"" staple that I grew up on. My cajun grandmother has Jennifer beat on that one, but not by much. + +But, if you want a special treat and want to taste something that kills all, get a sausage po-boy. Hot sausage or smoked sausage po-boys are a New Orleans staple and my favorite po-boys of all. But, Jennifer blows them all away with her home-made andouille. Simply put, I've never had better sausage--ever. It's the reason her gumbo is soooo good and her po-boy the best ever. + +I've eaten at Flavors many times, even though I live across town. Every time I go, I eat like a pig and bring some home to eat later. I have no affiliation with the restaurant, but wanted to post this as a review from someone who really knows New Orleans food and as a thank you to Jennifer and her crew for giving me a source for the best flavors in the World (not just Louisiana). As a matter of fact, I even overlook the fact that Jennifer is from Baton Rouge, instead of New Orleans or Lafayette and for not having any USL/UL Lafayette paraphernalia on the LSU/Saints wall. At least that is, so long as she keeps her promise to open another restaurant on the east side of town--that is, a lot closer to where I live. + +If you want the ONLY good cajun food in Phoenix, treat yourself to Flavors of Louisiana. For me, it's just like a visit to any of my favorite po-boy shops in the old neighborhoods. It really is that good.",review,DueHdFSnn75LVHQmXM0x0A,1,4,0 +01cEFI5Pq_RyEwM3GSTopQ,2012-09-23,y1vMRm5hml7AnilMCv6ivg,5,"great sports bar. TV's galore. Good food. Outside patio. While many places claim to be sports bars, for some reason they wind up not paying attention to the TV's and wind up with hair removal infomercials playing. + +This place knows what they are doing with the tv's. I was watching the manager who looked like had a spreadsheet with every game planned out and on what tv's. They also play the sound from the premier game.",review,e74v9ab0-PgmiwBhdbj_XQ,0,1,0 +GHYOl_cnERMOhkCK_mGAlA,2011-09-16,Turp8Fsio2UB0iCwXzjuYA,2,"Have been here several times prior, food is ok and service is mediocre at best. Sitting at the bar to eat and drink does not = fast, quality service. It equates to unattentive bartenders watching sports rather than clearing plates or pouring drinks. An empty pint should have another offered in its place, and napkins on plates are clear indicators that one is done! Fifteen minutes passed before plates were cleared!!! Service MUST improve!!!",review,PvZlZMua6J5h6IAXZ5kYzA,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2010-03-08,mXs2Hpl595jprF_H-16vlQ,5,"Probably the best mall I've ever been to. Anchored by five mega stores - Nordstrom, Nieman Marcus, Macy's, Dillards and Barneys New York. It's so big, it took a couple of hours just to walk it. + +My wife called it the best mall she's ever been too. Nuff said.",review,cTqjCINamOfIpUoLEzcczQ,0,0,0 +NLwjvGh628IcuGGPpqirNg,2010-03-12,r1BRTbYj6E0hho0yd-Xt1Q,2,"When I bought my house a year ago, it came with a big, half-dead front lawn. I decided to do a desert landscape out there instead, & called a number of landscape contractors I found here on Yelp & also at the Home & Garden Show at the fairgrounds. + +I soon learned that this is an unprofessional industry overall. I had several company representatives never return my call to set up an appointment to come over & do a survey. I had others schedule an appointment & not show up. I had others come & do the initial survey but never get back in touch with me with a price. One guy I called said he would look at my yard on Google Earth & email me a survey. (He never did, & I guess a $3500 job didn't make it worth his while to come over for a few minutes!) I had a couple of others who got back in touch but with only a materials list. I had asked for a sketch of what they would DO with my yard for all this money! After probably more than a dozen tries, I finally had 3 legitimate, complete surveys in hand to decide between, & the price range only varied about $500. + +One of my surveys was from Tom Baird at Creative Environments. After the survey, he emailed me a materials list & a CAD drawing that gave me a good idea what my new yard would look like. I liked it, so I went with them. Next, though, my job got handed off to another company rep, David Inness. David was likable, but the job ended up changing considerably from the agreement I had with Mr. Baird. For instance, I was promised that a BobCat skip loader would be used to dredge down 4"" to remove the old grass before the new materials were applied. That & other promises were not fulfilled. + +On installation day, three workers (& no ""Foreman Chico"" whom I was promised would be here) came out to do the work. They didn't remove the grass at all, but rather put down some black plastic material over about HALF (!) of the yard. I complained, & one of the workers called Chico on his cell phone & handed it to me. Chico explained to me that they weren't going to dig down, or put down any more plastic, unless I wanted to go to the hardware store & buy some more myself! I tried to call David Inness, but he was unreachable. + +The materials included a big pile of dirt & a big pile of gravel to be used for the job. The workers hand shoveled the dirt to form the contoured mounds as planned, but then only applied a very thin coating of the gravel on top, leaving most of the big pile on the driveway, AND LEFT! That was it, they told me, & that I could use the rest of the tons of gravel that I had bought in planters around the place, or if I wanted, they would have it picked up in a couple days! + +After trying to call for a day or two, I finally reached David Inness, who got the workers to come back over & finish applying the gravel, which they did, but unevenly. The gravel depth ended up being zero to 3"" deep. I moved it around some myself to even it up, but I shouldn't have had to, & since I didn't get the dig-down preparation, the gravel was already skating out onto the surrounding driveway & sidewalk. David had the workers now dig down a little around the edges, so that the top of the gravel would be down about an inch to stay put better. + +This was the worst contractor experience I have ever had in my life. The only thing saving it from a 1-Star rating is that the nice plan for the layout of the dirt & plants was followed, & the yard does look good now. Of course I have a problem with grass coming up through the gravel, since it wasn't scooped out as promised. (I attempted to kill it ahead of time with weed & grass killer as directed, but all my estimators told me you really need to do both.) + +If I had it to do over, I would have gone with Michael at Breese Landscaping instead.",review,ikm0UCahtK34LbLCEw4YTw,3,7,2 +8qrICL2tS2Rq7b5gxUdQwQ,2011-10-08,5H6qXUpaIsIlvWAKzCQbqg,4,"After work one night, I had a rediculous craving for some Thai Curry, so I remembered driving past this place and always seeing cars parked out front. So, I thought, let's go there! Glad I did! I was a little freaked out when I pulled up @ 7PM, and there were no cars in the parking lot. Then again, it is in Sun City, so their dinner rush ends @ 6, so it made sense. I ordered the Yellow Curry with Rice and the Fish Patty with Cucumber Chili sauce as an appetizer. Everything was so flavorful! I would recommend this place to anyone looking for a great Thai experience. I did not give this a 5, only because I am still learning about Thai food.",review,64zr0ya6XxOYGZ4ao3WZ-Q,0,0,0 +I4bSn5gXsHuSPu7L-d_8nQ,2012-03-27,WRjFmBN_zxtQz1JzMtrhaw,4,"Got the chance to go out with the wife and WITHOUT the child, so we decided to go here after reading about Beckett's Table in the paper. + +A lot more casual than I was expecting, but not necessarily in a bad way; I just assumed that being voted into the top 5 restaurants in the city, the place would have a touch more snooty-factor. Kinda like an upscale, family restaurant if that makes sense. + +I started with the creamy grits and schreiner's sausage trio. I have to say it was my first time for grits. Solid dish, I may prefer polenta to grits, but this dish was done really well. Wife went with the brussel sprouts. Very tasty, but strange to see as an appy - thought it might be more of a side. Seeing as they're not on the menu anymore, it doesn't matter. + +Mains: I had the Short Ribs and my broad had the Cast Iron Chicken. I was blown away with the short ribs - they were indeed fork tender, as I didn't lift my knife once for this plate. Great flavourful mash with the red wine reduction. Truly a great dish. Wife's chicken was great as well. Smoky, tender chicken with the incredible stuffing. + +Bacon cheddar biscuits were ordered, but we had to take them home as we were both stuffed. A little dry, but good the next day, however. + +Service was rushed in the beginning, as our waiter asked how are meals were, but was gone before I could answer. He was in the weeds though as it was hella busy for a while. He made up for it later in the meal. + +Dessert: wife had Nutella pudding and it was adequate. The coffee creme brule on the other hand was outstanding. Thick and rich, and packed of caffeine. Good finish. Oh, and good cocktail menu too. + +Will return.",review,8JyI7UXoXW_7XzbXwfpAUA,1,2,0 +OesTe3GNqcnIk0ZGOhiM7A,2012-04-28,zSCxecTIDgIJBGchinOCCQ,3,"Friendly staff and clean office. +From what I have seen, somewhat frequent turnover with the Dr.'s I've had. +Right now I have Dr. Susman, she's concise, to the point, compassionate, easy to understand. + +Oral surgeon Dr. Lillien does his job well, I got my wisdom teeth out without complications or infections later. +Healed up pretty well. + +Scheduled out pretty far so difficult to get an appointment in if you have specific avail abilities. + +Certain staff could use more training on procedure and techniques to expedite the process and minimize x-ray radiation time. + +Julie is doing a breast cancer walk, so donate (personal check) and get teeth whitening kit for 99 dollars. + +About staff: + +Kendall is very friendly and professional. +Noreen seems like she could use more training (quite a few x-ray retakes with bite tabs), but she was friendly overall. +The process took a bit longer than I anticipated. + +Suggestions: +Train the staff thoroughly, with technique and procedure so it can speed up customer service. especially with bite tab as well as the other kind (the red circular one). Customers like to minimize their radiation exposure time : ) + +Clean office and helpful reception staff. Dr. Susman was to the point and very clear about wahts going on and what to do next. + + +downfall: +Scheduling can be somewhat difficult if ppl have specific avail abilities but in general, reception staff is very helpful",review,I-P1v7sRjDLEfVOndp01kA,0,2,0 +4A628qyYpA4EhN6w6o-MYQ,2007-02-28,L_P1kb1cJYLHt9GWuz2fhg,4,"How much is good pizza worth? Is it worth being subjugated by a tyrranical owner slinging expensive pizza? + +Maybe, but only if it's really good, which the pizza at Joe's happens to be. Decisions, decisions. + +It smacks of the soup nazi in its unfortunate contradiction. If the pizza weren't so delicious, this would be a quick and decisively negative review. Sadly, for me the reviewer, for me the consumer, it isn't that easy. + +My suggestion is to go during the day, before Joe is embittered by partiers and the lunch special is readily available.",review,Ovpa3S8xD96dLE5eDxcxJg,2,1,2 +7_zL7NX_rDFwhbLp98PwZg,2006-09-14,v6HDcM5gtcgd3GszQTiOKg,4,"Fun bar. Gets PACKED during happy hour, and on weekends after 9pm. Sometimes the music is a little too loud to hold a dinner conversation. But hey maybe I'm just getting old. + +The sushi is CONSISTENTLY good, above average good. Yes, as other reviewers noted, you can find better. But no other sushi place I've been to in Arizona can consistently serve up good fish every time I come in.",review,FlQVCUaTh1Jd2Z9T039oKA,0,1,0 +PN3aQAH-RONnK-ahkNm0xg,2012-10-31,jDbpIl98vhmHipZsRxB8rg,1,"My wife and I have going to this restaurant on Thursday night for past three months to have a beer and a slice. A couple weeks ago I went there for the usual but there was an NFL game and a World series game on and the restaurant was busy. I put my name in and waited for my wife and the table. 30 minutes went by and wife had not shown up and the table had just become available. Hostess said I can't seat you unless your other party shows up first. I called my wife, she cancelled. Hostess would not seat me as a single...TERRIBLE..Hostess did not tell me this when I first put my name in. WON'T BE GOING TO ANY OF THE ZIPPS EVER AGAIN.",review,wdJXFw8krKY6AXjjJ76qSw,0,0,0 +RV9yiJmJNEpFv-CqgOo71w,2009-12-29,e8FpsGoc9qozmle_lhs5Sw,3,"Every time I visit my parents, I pass this place and see a long line of cars. Curiosity (and a good set of luggage my parents found here) finally convinced me to stop by. + +Well, it's a flea market. WYSIWYG. There's the good (nice luggage, some nice jewelry, some good foodstuffs), the bad (the same ""authentic"" Southwestern stuff you find in any gift shop from San Antonio to San Diego), and the ugly (several ""I [heart] Columbus"" Beanie Babies). + +I'll come back if I'm looking for something in particular (chiefly luggage or salsa) or want to get a souvenir for a relative I don't like very much.",review,9zp_JEmUScBI1lx9RuxGiA,2,2,1 +X5j76x6F5RbbeqD6J51iqQ,2012-11-09,5xD9jYF-ApUiuEUGVbuZZw,5,"I have tried finding a spin class in Arizona that is of the intensity and variety that this studio offers. Bar none. The CoreBalance Studio has dedicated instructors that push you to your limit in an encouraging way. The unique thing about this studio is they use the ""RealRider"" (or is it ""RealRyder""?) bikes that cause you to turn right and left to work your obliques. + +Outstanding workout! I recommend it to everyone who wants to get into shape.",review,kp6CVuBi3m_3t-kRPKtIEw,0,2,0 +QxpX4slDIOGFEHlPV4mrSw,2010-01-27,_xQr04YPWVgL1MlwEUHUyA,5,"This is another one of those restaurants I would have never known about if it wasn't for Yelp. San Diego Bay Restaurant is tucked away in the corner of a shopping center on the main drag in Guadalupe. + +It's taken me a long time to review this place. The first time I went was over two years ago and I've been back a few times. I have to admit, I've never had better Mexican seafood. + +Unfortunately since it's been awhile, I've forgotten what I ordered. I can tell you this though, every dish has been superb. Each bite was like heaven. I left wanting to try everything on the menu. + +The servers always steered me towards great dishes with their recommendations and I've taken many people here, much to their delight. They've all raved about it.",review,FHJUj7EHB9nB2czVOzQX3Q,2,3,2 +UIGFrEcoDsw05I1UOrxdOA,2008-05-24,bo_eoPn_Nixu0wF8HS41-Q,2,"I couldn't agree with David more. The owner is definitley an interesting person. The more money she thinks you make, the more she will talk to and love you! So tell her you are RICH!! (Sorry Didi C.) As for the food - Ho hum VN food at high for what you get prices. The Pho is very avg and double the usual price. They don't charge a corkage fee for BYOB which is nice.",review,wfvmwhhadHfpM9UoTV0OMA,1,3,1 +Zruvunhqw7cuyuoe7g09Gw,2011-11-23,OPGWwdPHofYIPx5izlGUXA,5,"Picazzo's Organic Italian Kitchen is a gem in the many pizza locations that can be found in the Phoenix area. Picazzo's boasts a menu which includes appetizers, salads, organic and gluten-free pastas, and of course pizza and dessert! One cannot go wrong with any of the categories of foods Picazzo's offers, but there are certainly favorites that can be ordered upon ones first visit. + +Picazzo's offers a casual yet sophisticated atmosphere upon entering their establishment. One is greeted immediately by their hostess at the door and then you are seated promptly at one of their many tables (or the bar area if you prefer). The atmosphere is roomy with their ample seating, and friendly upon entering. + +One of their best appetizers is their Mama's Meat-za Balls ($9.50). Made with three meatballs with mozzarella, artichoke hearts, organic tomato sauce, basil, and Parmesan, it is a savory appetizer that easy starts the meal off on the right foot. + +One can choose from one of their many pasta dishes or their pizza creations, or even create your own creation. If going with one of their creations, I would recommend their ""Nonna's Favorite"" (gluten free) ($16.50, $21.00, $25.00). This pizza is a delicious combination of organic olive oil and garlic, Fontina and mozzarella cheeses, mushrooms, tomatoes, goat cheese, Kalamata olives, and basil. Melts right in your mouth and one can easy eat more than one expected! + +If even after all of this you still crave something sweet - One cannot go wrong with electing their ""Classic Chocolate Chip Skillet Cookie"" ($7.00). This sinful combination includes two scoops of organic vanilla bean or coconut vanilla ice cream served with your choice of organic chocolate, chocolate mint, or chocolate raspberry sauce over a fresh-baked chocolate chip cookie. Oh wondrous dessert indeed! + +Picazzo's will leave you most satisfied and delighted with all that is good. With the finest ingredients, Picazzo's takes great care in delivering the best in atmosphere and dish. Stop by Picazzo's Organic Italian Kitchen today for an unforgettable meal.",review,JCfHBL4zGkPjtKVd9hS_Bw,0,1,0 +xWlCgISVtozxCztPA4nGaQ,2011-01-31,zwopvGh5_9HZSbmA1ZG2eA,4,"This place was unique for me because everyone seemed like they were inside smoking but it was an indoor outdoorish place. There were heated lights and it was the only place that I found pretty crowded where if you walked the streets there weren't a lot of people. + +The food was good, I had the steak fajita, which you can't go wrong because its just steak. But I also had a fish taco which was pretty good. My boyfriend had the pick three meal, so he picked tacos, chimichanga, and enchilada. His choice was good and the chimichanga was delish. + +The bathrooms were very rustic looking but it seemed to look that way, decent for a funky place like that. + +They had live music Friday night, where a guy was doing bad covers on a few good songs. + +The waitstaff was overall nice and they checked back at us here and there. + +Overall I'd go back if I was in around Scottsdale again!",review,ngR1Y009kpsuqWRdlKp7hg,0,1,0 +5KG0A3WlC7K3DAXtrIFFjg,2008-10-16,4KantXjpguK6eAmec9d2AA,5,"What can I say about this place? I love it. Its straight up the road from my place. You can find everything here, not just Asian food. When I get a hankering for Bombay spice, off to Lee Lee I go. I love LOVE their meat counter. I get chills deciding which pork hocks I want. The fish fry service is nice. They have stuff I can't live without and can't find anywhere else i.e. aloe vera juice and those sinfully delicious dessert rice and of course, the makoks. The cashiers can be a lil raunchy though just smile and nod. And a little known secret? The vegetables are freshest on Fridays.",review,sqLsoqm3lNxvfkOQ_wXucw,2,2,0 +xtX2qS64zP2NRPV_7NNqHw,2009-12-28,9s1sRHS73n4SJc8t7uND4Q,4,"I needed to get away and Hyatt vacations was offering these rooms for a steal ($79 a night Xmas week!) so I decided to come here. The grounds were absolutely beautiful. Unfortunately they had a freak cold spell and I was unable to use the 10 pools, jacuzzi, waterslide, or any other outdoor facilities, but I did take a short walk around. I also had a balcony looking out at the pools and the mountains, but unfortunately it was too cold to utilize that too. The restaurants were too pricxey for me so I can't speak to those. Parking is free at the hotel. I did check out the Native American Education Center and thought that was a nice thing to have. I never did make it to the spa unfortunately. +Service was top notch: when I first arrived my key did not work and I stopped an engineer in the hall who got a new key sent up, and when I asked her where the ice machine was, she said I could call the bellman and he would bring some to me (I couldn't be that lazy, so I did go down the hall and get it myself). The bathroom was stocked with Portico products (decent sized bottles) and had a ginormous shower with a rainfall head and a handheld jet. I also appreciate the small light under the mirror which I could leave on at night rather than having to leave a larger light on. There was a refrigerator in the room which I used to stock water and bubbly from the Safeway down the road (the hotel is very convenient to many restaurants and shops). One of the best things was that the wake up call was a good old fashined person, not a machine, and she offered to call me back--gotta love a live snooze button! When I went to check out, the folio on the TV showed charges, so I called downstairs, explained I had prepaid the package, and the front desk people solved the issue very quickly to my satisfaction. Also, they have machines by the front desk that allow you to check in and print your boarding pass. +My one complaint and why I did not give it a fifth star: charging for internet. Seriously, in this day and age, that to me felt like it was nickling and diming the guests, many who pay a lot to stay at the resort. +For those who go to Scottsdale, I definitely recommend the Hyatt at Gainey Ranch (and check out the Hyatt Vacations website for some good deals). + +UPDATE: I checked my cc bill three days later and they had double charged me after all, despite giving me a zeroed out receipt. Poor form, Hyatt. She credited back to me, but what if I hadn't noticed?",review,2_31RaL6kz0vRQX41g9iXw,3,4,0 +t0NencbvVVlH6mcRlNTPcg,2010-12-23,ndSwfewtSaTTjXNm2wR71Q,1,"I was excited to go to the lululemon athletica at Scottsdale Quarter because I really enjoyed shopping at the previous store that closed in Scottsdale. Well something has changed... I walked into the store and while there were more sales clerks than customers, no one said a word to me and no one asked if I needed any help. They were all too busy talking with one another. And to add insult to to injury... one clerk had to walk around me (didn't ask if I needed help) and went to play with one of the customers dogs.... I had fully intended to buy a Christmas gift there, but left because the service was so poor and I did need help with the sizing. I went over to the Nike store and had a totally different experience, very positive. I'll stick with Lucy and Nike where they appreciate their customers.",review,jwSTtW_q8PULge2dK1t_Lg,0,3,0 +WM8sy8FjrU3PpxN_NI02ZA,2008-07-09,dMBZ3Cklh4T6BMNhN4VLGw,1,"It saddens me to say that this isn't the worst Mexican restaurant we've eaten at, that's on Oahu near Waikiki beach, but it's close. + + Damn it we had to drive by Arriba's to get to this place. + + I had a chimichanga that was a little anemic, though what there was of the filling was ok, beans tasteless, rice looked the part but as spicy as your average UK meal involving boiled meat and root vegetables. + + Erin's Fajita salad was similarly lack luster with all the appearance of being tasty yet bland chicken. Usually, unless there's an attempt at ""chefing"" as opposed to cooking I'll order a basic dish ( I don't shoot the chef though and trust me these guys are safe from Agent Sands , very safe) for the first time out and if the beans/rice suck.. no return. + +Overall It feels like aliens, space ones, are running the place and they learned cooking from pictures. It's certainly a mistake we won't be repeating.",review,N3L6SDymSRkYQtTiSDmXSg,1,2,2 +UtUXhKh7vOVvWJF48IzJvQ,2009-11-24,2D-wwYsCXuzku_9m06XOsQ,2,"Went here about two months ago and am only now getting around to reviewing it. I think that should stand for something in terms of my experience there. + +The service was ridiculous. If one is going to charge the prices they charge for regular Americanized asian food... at LEAST make sure the menus you hand people are clean. Or your plates for that matter. Or silverware. Seriously! Did EVERYTHING have to be covered in grit or a mysterious sticky substance? + +Next up... the menu. Not everyone eats meat. How about a little more choices for us who prefer tofu over dead animal? + +I ordered the Coconut Curry Vegetables. Bland bland bland. I've had more flavor out of an unseasoned packet of ramen. And would it kill them to actually put some tofu on the plate? + +I guess I just don't understand the hype. The prices are ridiculous for the quality received. You're better off going to some little hole in the wall place where the food actually tastes like food and not reheated leftovers.",review,03kllIN9ASWGmecQPLPqZA,0,0,0 +OPKUjv6D5G46Lh2BHP20fA,2012-11-25,gSy1gUfzzjPl7dG6PLy-EA,5,"We were in AZ visiting out for Thanksgiving and really wanted so go AZ mexican food but had to go to a place with a full bar for some Margaritas. This place came up on Yelp and looked interesting so we figured we would give it a try. The food was pretty good. My son had a cheese crisp, wife had beef enchiladas and a chicken taco, Mother-in-law had pork tamales, and I had the beef green chile. They gave us to big baskets of chips and salsa (which we eat too much of!). Everything was pretty good, but the margaritas were really good. I always try the house first time I go someplace since I think it is a good judge of how good a place is and theirs did not disappoint. I think they should advertise them more because they are so good. Very fresh tasting! Next time we go back to AZ we will definitely visit again.",review,Tf8KjdTkI5XpCSWLVF9ytA,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-10-04,mJ9ufgheE0JMrgfc9uoXVg,5,"This place is perfect! Great food, great service and friendly people. We will be back over and over again! We ordered a few different things on the menu and all were excellent (Stetson chopped salad, scallops, testosterone salad). Lovvvve it!",review,OMKl9Tg_z7v7QySoGJJVMQ,0,1,1 +hfl62LX14YqNpG0g0Tj6_Q,2011-09-01,eYEBECb94_2kOmA6MAywOQ,4,"I enjoyed this place. It was a nice change of pace. I'm really not into spicy food, but the food wasn't really spicy, although it had a nice kick to it. The place was a little small for my taste, but the food made up for it. The staff is very friendly and the prices were reasonable, compared to the huge servings of food. + +I went with a group. I had a blood orange mojito, and we shared some of their chicken, cornbread, creamed corn, steak, prawns, and the chipotle mashed potatoes.",review,7D6am_X5g_jcSwU6_mUivA,0,0,0 +bc_nukU3dtZ6zGm4oXqeuA,2009-04-10,gzp-Yn7CasmFR1XVYUmpWA,2,"I'm pretty sure these bagels have never seen boiling water, and to be honest they reminded me of nothing so much as the tragic frozen failbagels of my childhood. I guess our first warning should have been the exceptionally alarming ""CAPPUCCINO"" poster in the window, showing what appeared to be (coffee?) chocolate milkshakes with whipped cream and chocolate. :( + +Two stars because it was, technically, an edible bagel, though my husband and I only managed to each finish half of ours.",review,ERjpvYJvL_36PwuliJwJ3Q,1,1,1 +RtwOc-n_RkiUuDGaNfCsNw,2012-05-11,FoW_qBwD2eEoWYQyG7WcRg,4,"Four days and maybe seven hours ago, our hunger brought us forth to eat cheesesteak, to try a new restaurant, conceived in Philly, but dedicated to the proposition that not all cheesesteaks are created equal. + +We shared a large chicken cheesesteak with everything (onions, bell peppers), and cheese wiz, along with some sweet potato fries. + +The chicken cheesesteak came with a good amount of tender chicken, with a lot of flavor. There is a free-range mini fridge that is stocked with sweet , hot peppers, and fry sauce which is nice so you can customize your order with as many or as little peppers as you want. While the ingredients were good quality, the cheesesteak as a whole naturally doesn't really compare to any I've had in Philly, but it's good for Arizona! + +The sweet potato fries were my favorite part of the meal. They tasted freshly cut, and were excellently cooked with just the right amount of crunch while still tender and sweet inside. + +So would our forefathers be impressed by Forefathers? They probably wouldn't know what a cheesesteak would be, but if they tasted one, I would say they would be!",review,uZbTb-u-GVjTa2gtQfry5g,1,2,0 +g-eZgnBDvSDguF8cUxKCkA,2009-12-15,AJ3OBkWvAzS8pm-Q1MUl7g,5,"I had a great dinner there. One of my best in a long time. It was sucha treat. Once in a while you have to take care of yourself and just enjoy what life has to offer. + +Chef Juan was great to talk to. Seems this guy has been there sinsr they broke ground. + +If you truely like yourself take a walk around the grounds after dinner and smoke a cigar at the big Fire Pit or over by the dock. + +Life is good.",review,wYZpMnp2e2Np0zf89uFg-g,1,1,0 +jtzhY-P4H6WSYpv5rWhxtw,2012-06-02,guEmPWK-7G-TA2k-MAcbLQ,4,"It's rare that I have a date with my husband on a Monday afternoon/evening, but this past Memorial Day, we did just that. After a quick visit to the Science Center (the Van Gogh alive exhibit is a must-see by the way), we were hungry so we headed over to Rice Paper. Neither of us had ever been before, and we were pleased with our experience. + +It was a tad bit too hot to sit outside, although they do have a covered patio with misters. We walked in and were seated and greeted promptly by Al, our server. He's quite the character. He made us laugh quite a bit in addition to being attentive and making some recommendations. We enjoyed the stylish renovated house / hip colorful atmosphere as well. + +We ended up ordering a few things and sharing. Highlights included the firecracker shrimp. a spider roll, a shrimp roll, and a zen salad. Everything was light and tasted fresh. We really enjoyed the dipping sauces that came with the spring rolls. They've got such a huge selection of the spring rolls, that I can't wait to return to try some of the others. They don't have a huge selection of Vietnamese entrees, but it appears that they will custom create a bit upon request. + +I highly recommend going for the ""food happy hour."" It's from 3pm - 6:30pm and includes $6 appetizers & $1 off all spring rolls. Such a deal! We didn't take advantage of it, but the ""drinks happy hour"" is actually 11am - 6:30pm and specialty drinks are $6, house wine by the glass is $5, well drinks are $4, and draft beer is just $2.75. + +If only Rice Paper was a tad bit closer to home, I could see myself being a regular... Instead, I'll keep it high on my list of spots to return to when I find myself heading downtown!",review,fczQCSmaWF78toLEmb0Zsw,7,4,2 +puFrm8eNizztqaWr_e32pQ,2011-05-20,H2zAqv3nmj51R2C4k4U3Mg,5,Love it! Closest thing in Tempe to the food we actually had in Thailand.,review,WA1cLGGfTyj6bCgfP9mf2Q,1,1,0 +UexMw8s7B1J-RtFOQtCCsQ,2011-04-19,E5ni1eW_mqcHrIfpMwrlmA,4,"Recently ate at Macaroni Grill at Desert Ridge, went with friends and drank wine and ate light, just grilled veggie platter with rosemary bread. It was so delicious. The veggies were grilled perfectly, very flavorful, the bread was perfect dipped in olive oil with pepper. We drank the family wine which is the house Chianti you pour yourself. Had a perfect evening, stayed almost 3 hours. Service was excellent!",review,6r-WELTsUsWe77AEBdVG3A,0,1,0 +IceZ4BtTz76eppjNWm-c6A,2010-10-11,JVoPK0aYG7KSOVzIJ5PfMw,4,"This is an outer arts district staple in the Valley. The neighborhood is spooky if you don't know the area, but it is worth the possibility of having your car vandalized to stop in. Great live performances, mellow guitar, etc. and fantastic food. Hummus plate, Mm. Greek salad, yum. Cheesecake, yes please. The service is European style so expect to wait and wait some more. Seat yourself inside or out on the lovely patio. + +Across from a fun locally-owned boutique you can stop by if you're there earlier in the day. + +I stocked up on the 70% off gift certificates for this little gem of a place at: http://www.citydeals.com/deals-merchant-Paisley-Violin-Cafe-Phoenix-AZ-LOC41462852.html?id=2852 + +You can thank me later. I'll probably be at the table next to you.",review,aRgTBYbG-eZipFRIipGlrA,0,0,0 +b5cEoKR8iQliq-yT2_O0LQ,2012-07-05,SqxwrURoVC6fbodSIIw3BQ,5,"Love this place ! + +Food is spicy and always cooked just right. Menu changes every so often and have nightly specials too. Service is great. No matter what night you go it is busy. + +it is a great little find.",review,pOim-Tccfc6Aw0ynGdPmYw,0,1,0 +V1nEpIRmEa1768oj_tuxeQ,2010-09-13,FgjKa1m9xEqClca2I6V3mQ,5,"Cibo! Cibo! Cibo! I love you and your cute old farm house, your amazing pizza, affordable wine, awesome crepe desserts, and fabulous staff! + +I want to live in the apartment above the restaurant!! + +Go to Cibo for awesome food, charming atmosphere, and a great time for a girls night or on a date. Cibo has quickly become my favorite place in Phoenix! + +*They're closed on Sundays...found this out the hard way.",review,Q96IRvil6RNgdLmGKuh81A,10,11,6 +R8VwdLyvsp9iybNqRvm94g,2008-06-08,jGWhZk2vi5wzdqSlcOk-dw,1,"La Grande Orange Grocery has a problem. It can't decide what it wants to be when it grows up, and that makes the overall experience iffy. Is it a quick mart? A grocery store? A restaurant? A coffee shop? Unfortunately, it can't be all of them. + +I love La Grande Orange Pizzeria, when there is table service, fun wait-staff, and delicious food. But during the day on the weekends, the Grocery is too busy and unorganized to tolerate. It is not set up for the crowd, they do a poor job of line management, and when there is a line to order, the rest of the Grocery is impossible to navigate. To top it off, the counter staff shouts at you when your food is ready. Unnecessary. + +I'll certainly be back at night for the pizza, the delicious wings, and to partake of the best gelato shop adjacent to LGO. But I'm afraid that I won't be back for the weekend chaos.",review,3yc5JeWwQVhjx22Lx6OQ0Q,2,5,0 +U1Xat7TmxO7Umk2iyhsa0A,2011-08-16,-pwv5EDTQOHQr6SiLSedcw,3,Pool supplies next to Quiznos Subs!,review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +6nH0DLfofTytTeZJSkprgw,2012-04-29,klP9dr23QB7nsJS48HJTaQ,4,"A very inconspicuous coffee shop located right below Elizabeth Arden's Red Door Spa. + +They have a couple of pastries but just ordered an iced coffee for $3.00. It was a bit ''watery'' for my taste but on a hot afternoon, it hit the spot. + +Wish they had sugar water to flavor it but didn't see it available.",review,chI2p-ROg2tXI2-tT2_G2A,0,1,0 +7XulXhz9PN2ctxtv0B0b7Q,2012-05-17,F1MDo7oyKx9_32fkTiwFEQ,1,I found Gaylee to be the most unprofessional nail tech. I found her on an internet deal. I called her on Sat and requested an apt on the following Friday. She never returned my call till I reported her. She denied my 5 messages and said she only got one msg which she couldn't return cause she lost her voice. She conveniently had a voice after she was investigated. I would never trust her to do my nails. Yet reading the reviews she did return some calls.,review,0F2cVoPyMrzsqIyv_spDFg,0,0,0 +sbD4f8aOsXZ6PJYh1kN4Ag,2011-03-04,L285u6cNVPxVobRiAGTgIg,4,"If your going to see the Phoenix Coyotes at Jobing.com arena.....or the Arizona Cardinals at the University of Phoenix stadium....then you you can't really miss the experience that is the Westgate City Center. Now it is not a spectacular mall by any means...and the parking is a bit confusing...but it does have it's own flair and style. During the summer months it is the perfect place to go after a game or event at the stadiums...because you can grab some dinner....a drink...take a nice walk....or just hang out and watch the stars in the beautiful skies over Glendale Arizona. The best part about all of this along with the close proximity to the stadiums.....is the parking is FREE....can't beat that. Eat, Drink, and be Merry my Friends!!!!",review,ky9pQ8AKufvZ63IxR41jGg,2,4,1 +gsNv5QNfuFnD8eMhejSmGg,2011-11-14,TgehaXzkJHxD4isfJ_-lcQ,2,"The kids and I LOVE Starbucks but this one leaves a lot to be desired.. We have been here a hand full of time and each time I keep asking myself why do I go back to this one? + +The service there is almost rude. They seem as if they are annoyed to be busy. They never seem to be happy to service you. Drinks take forever to make, even though they aren't as busy as other ones are. We won't even go into the fact that my order has been messed up the last 2 times. + +The main issue I have is the fact that 3 out of 5 times when sitting and relaxing with a snack, someone has to sweep the floor near me. Really? While I am sitting there? + +There are much better Starbucks and I think I am going to try some others locally. + + +12/06 - The kids and I went in today for our ""snack"" wanted to say things were better today. I am not going to change my rating until after my next visit ;)",review,F66ALXcvZJcpGMbJ90zS8g,0,0,0 +z1SUerxBQY9EgLaiRf_QDQ,2012-10-11,dJEpptp4oy-naFdEn7_hgA,5,"Thanks for the positive reinforcement talk, and explaining, I just need to take my time. Thanks Robin, you encourage me, +I have been sick, and so has my family. I have missed the last couple of weeks and boy can I feel the difference. You know when miss something for a period of time?? Then you have to start all over, but that o.k. +Thank you again Jim and Robin for taking those few extra minutes to ask me how I am doing and how my kids are since I have been gone. Thanks so much for caring, weather its about my kids or my knees or the fact that I have a pain pump in my stomach and have a hard time laying on my stomach, which Robin saw I was not putting full weight down on my stomach. She asked me after class what was going on and if I was O.K. She made me feel important and cared about. Where are you ever going to be working out and after class the teacher checks in with you, to make sure everything is alright. Jim and Robin Love this practice and so do I. I feel what makes them different is the caring aspect. The checking in with you. If you ever have a question, Jim and Robin will ALWAYS take the time answer questions or just see how you are doing!!! Thanks Jim and Robin! I will be back soon!!!! Thank you for being the best Bikram yoga around and thanks for just being non-judgmental, caring, and hopeful for everyone in the class to push harder and just do it the RIGHT way!!!! Love your studio, Love Robin and Jim as people!!!!!!! This is the perfect place to either start or to be challenged. +Thanks, Nicole Skarderud",review,iUl-ctdtKfCW2cXJri8tFA,0,0,0 +qyNtVViurIcChc35mfYIEw,2009-09-22,yz_WHG25INZ69qaPg_VLVg,5,"My husband and I have been going to the Touch of Thai for years. We meet up there at least twice a month for a lunch date. On special occasions we take friends and family there for dinner. I love the wait staff - especially Nick! His wonderful sarcasm and jokes always make our day! + +For the amount of food you get at lunch at the price they charge - you can't beat it. Everything is homemade and tastes fresh. #3 Yellow Curry is my hubby's favorite. Rich coconut based sauce with yellow curry. The chicken is tender and the potatoes and carrots are cooked perfectly. I venture off and try things from time to time. The food is spicy. I like the incorporation of fresh herbs into the dishes. The soup served with lunch is always yummy and changes from time to time. We always get a side order of spring rolls. You need to try these! I like the Pad Thai as well as the #5 and #7 lunch specials. Meals are served fairly quickly. + +Sometimes we have to get up and refill our own water glasses however I find this to be a wee bit charming. Feels like I am home. If you go there on a regular basis the servers remember you, have your order into the kitchen before you even are seated, and always say hello and smile.",review,QT-7jpsEuCR-pFro59KBtQ,2,3,2 +NCtzWkMbE13r2M2Sg0wH9w,2011-08-08,meUcBjICsw7rTfuk1-Ucmw,4,"Was not satisfied first trip, service was awful and place was deafening. But we thought food was worth trying again. So, now that the place has been open and matured it is much better. Our sever was good, the place was about 1/2 empty which made the noise level much more bearable. +Food, very good. Not chicago family run good, but for the valley very good. +I asked for my shrimp to be spicy and it was. Hsb can't handle so hot and his curried duck was mild as requested. The mustard wraps, unusual and tasty. Hsb loved the peanut sauce. Chicken and lemongrass salad, good flavors. We will be back.",review,L3-csFTxPRnG9eVIYoVoGA,0,0,0 +PsuvqWNmLBU8ABkch2d9vA,2010-04-11,OJIDOnY4HTKEdREfs0xP4Q,4,"Honestly I go here rarely. My recent visit was to watch my godson while his parents were doing family picture photo shoot in the Chinese gardens and pond areas. You can walk the whole cultural center and its gardens in 10 minutes, so there isn't alot of sightseeing here. But to get a little glimpse of some replica gardens and seating structures from China, where else to go? So 4 stars for the somewhat idyllic gardens in back behind the shopping plaza, cuz there isn't any other place in the valley like it.",review,xdWsnbaTEfBMVHttqZDHxg,0,2,0 +7_7fxuG9ESAFmx-AiMsJHg,2009-05-03,pbt8kaTVBcBWsbR4AWiX_g,4,"Pretty cool place that appeals to 2 very different crowds. + +My friends and I stayed downstairs for the majority of the night. The hip hop music was pretty good and the DJ had a excellent music selection. The bartenders were very friendly, except for one of the blonde girls. When I put my empty beer bottle on the bar, she took it and I raised my hand to say ""thank you"" for taking it. Then she came back with another beer that I didn't order, and I think she got a little pissed because she misunderstood me. At the end of the night, I asked for some water and she only gave me a bottle instead of just a cup of tap water and charged me $2. Don't be a hater lady!! + +GET A SHOT OF CAFE PATRON!!! If you like coffee and patron, it's literally the best of both worlds. And, to top it all off, they are only $3 A SHOT!! Very reasonably priced. I had 3 within a span of an hour (I'm a heavyweight so I wouldn't recommend that for everyone!) + +Upstairs, they have techno/house music and it's packed like no other. The people are really cool though. They have friendly battles and it's pretty cool to just watch them for about 10 minutes. Depending on your scene, you can pick either floor.",review,EOlGkRn-83UnF7634dOUKw,2,2,0 +Zy2vca7i9QFGRKa4m0C__A,2011-01-10,oL1gZrDnDfFrLl2EudOXOA,5,Pho-k yeah .......and the spring rolls too ........,review,uVywgLchTCdLmlMV7yaWOg,0,0,0 +DcrM4hwDcU2G6vuh2cnaYQ,2012-05-25,tT47mzzTOUDEVLeYCZa3ow,1,"Tonight at Noca Phoenix +No dinner -waited 1.5 hours with no communication only to be told they were out of the fish I ordered left the restaurant 2 hrs later very hungry Very +disappointing",review,Wuh0Tdv8WGpDwbu0ICOWpA,0,2,1 +uR2aNW75R4oYs9w7aw-_kQ,2010-05-09,hIp0LojvxVFyNwNJZn_Qzw,5,"I love Sapporo. They have reasonable prices, a big menu, great music always playing, entertainment (people watching), etc... + +Their sushi is very good. They have fun drinks. + +If you make a reservation for dinner you usually don't have to wait. + +P.S. They have amazing deals for happy hour, but get there early cause it gets packed!!",review,rC11FhTVhZsC4KXHvXelQg,0,1,0 +U7jOpLoLXYphWFqS6JO8mQ,2012-04-16,CibTKYSXgA8wCzKBSqZmkg,1,Won't be going there again. Our chicken was pink! Manager was a prick in regards to that and service was all around crappy.,review,Li5WZKEP243vOoQeP0ftiQ,0,0,0 +RmpxrudpbCPmEnt4jSlpnA,2012-08-19,cdSp_2zKL6FaMIqa11yl9g,4,"I stayed here with my family (3 people in 1 room) for 3 nights. What first attracted us was the rate, but what made us happy with the choice was the cleanliness, coolness (literally--good air conditioning), and accessibility of the hotel. It's wheelchair accessible. The best part of the hotel is the staff. The front desk team was incredibly helpful--much more so than you typically see at a chain hotel--and they gave us regular maps/handouts as well as printouts that were tailored individually for our needs. Even more astounding, though, was the cleanliness of the room: the staff cleaned the room so well after our first night that when we returned on day two, it looked like we had just walked into the room for the first time. (In my experience, most hotels do a better clean-up job in between guest stays rather than do a good job every single day, but these folks are the exception.) + +Reasonable, hot breakfast. Eggs, swine, cereals, pastries, juice, milk, coffee, fruit, yogurt... You've had it a million times, but they do it just fine. + +The definition of 4 stars is ""Yay! I'm a fan."" And that's true. Didn't give it 5 stars because it's not ""Woohoo! As good as it gets!"" to me--mostly a product of the location and lack of distinctiveness as a hotel experience--I would only give 5 stars to an excellent ""destination hotel,"" and that's not this place.",review,PUpoXVAuLunyXX-oZB23uA,0,0,0 +V1nEpIRmEa1768oj_tuxeQ,2011-11-21,3CXTmARnSNbnvMv-Tf903g,4,"I'm from New York, so you can bet the firs thing I asked everyone when I moved to Phoenix was ""where should I get some good pizza?"" Everyone responded ""Pizzeria Bianco!,"" but a few wise ones told me to avoid the crazy wait and check out Cibo. Still haven't made it to Bianco, but why bother? I've been to Cibo 3 times in the past few months and wouldn't have it any other way. + +The service has always been spectacular. There's a good selection of beer and wine, and an almost impossible-to-choose-from selection of pizzas. We're not talking New York thin-slice sauce-and-cheese, we're talking locally sourced ingredients and artful combination. Perfect crust topped with the perfect combination of delicious meats, cheeses, and veggies galore. + +Your least favorite part of the meal will definitely be trying to pronounce the names of the pizzas. Your favorite part of the meal might be the pizza, or it might be the ambiance (hard to decide between the cozy outside with live music and fire pit or the quaint inside that boasts everything downtown Phoenix is good at). + +Go with a group of friends and stay a while.",review,BiDA7uVJ5igMCsp4ZfpCpQ,0,0,0 +1-1VcGTL3GyCqUpXZLFTZA,2009-07-26,yBOzJp7G-yWzzunrdGJapg,3,"I stumbled upon this Friday's while walking around Phoenix on a Sunday afternoon. I wanted to just go up and have a drink and then take some pictures of the empty baseball field. Phoenix was completely empty! + +When I got closer to Chase Field there were some more people and I realized that there was a game going on! I didn't think I would be able to get into Friday's because of the game; however, it wasn't very busy! I sat at the bar since I was by myself. But once I was there awhile, I noticed there were still tables open looking out into the ballpark. So basically you get to watch the game for free as long as you are ordering stuff. I thought that was pretty cool. + +As for the food/drink... +I ordered a daiquiri when I sat down. It was pretty bad. Almost too slushy. I looked through the menu and asked if they had any smaller portions or lunch portion. I was told that since it was a game day they have a different menu and everything is larger. So I didn't order any food. + +The service was good. The waiter was nice and another waitress named Kimmy even came up and talked to me for a little while. I'd definitely come here again just for the view.",review,UL9chyH0a4Pj8J_9M6WSpA,1,1,0 +bA-Cj6N9TEMlDlOh2aAnUw,2011-11-19,E1XMtLsow47LmvrqCHJRNg,1,"Having a miserable experience flying from Boston to Reno. My connection was in Phoenix, and the flight from Boston was running a bit late. I asked both of the flight attendants if it would be possible to deplane before the other passengers as I had a very tight connection to make. One actually laughed at me and told me I would be fine. 12 hours, a horrible nights sleep (as they did not offer me hotel accommodations) and two delicious airport meals later I am sitting in the terminal waiting for my flight from Phoenix to Reno to board. Sorry buddy, not really fine. I missed my flight by 5 minutes. I would have been fine if US Airways offered their customers with tight connections the opportunity to deplane first, as every other airline I have flown on does. Will avoid them at ALL costs!",review,QOr2VtUFGZXJTxhvH5VhXg,0,1,0 +UI8iKvzhGn2qZCGIqtQqrQ,2011-03-26,2pWGiV-hB0fh3DoW7jgHTQ,4,"went here for breakfast with some friends. it was pretty busy and only had to wait maybe 10-15 mins to be seated. not too bad. quick service, we had coffee almost immediately. + +the food was delicious. standard breakfast food in my opinion. i got the corn beef hash meal. everything was good, and cooked the way i like. i would definitely come back here if i was in the area!",review,edNdxDyzMiZCHEBMbo8H4Q,1,0,0 +3Zsjlum5kl5N5KV712aTMQ,2012-06-23,kknuhnM3NM3XwcY7NRJR-Q,5,"Celebrated my anniversary here. Everything was amazing. Enjoyed the filet mignon and the lobster with prawns. Luis was our server and made our experience truly amazing. He made everything perfect. He gave us our space, but at the same time entertained us when appropriate. He recommended a great wine to pair with the lobster, and made sure we were well taken care. We capped our meal off with creme brulee and a dessert wine. We will definitely come back here and ask for Luis again.",review,9GHSDxMZMQ_nbnI2xS4AjA,0,1,0 +7YYD_agS3Kb2sAx9JPkQEw,2011-12-06,K5oanAKRhQ4IfvE_K6kfCA,4,"We had a great lunch and enjoyed our visit tremendously. Of special note though was the help I got from one of the guys on giving me some directions to Florance via the ""adventure route"", It was very nice of him to spend this time with me. Thanks for the great service. If you vist juisit make sure to take time on the patio and enjoy",review,1kbCpvI2Rg2SrvqNHX2BQw,0,0,0 +JuBygU4XDjqSeW9okyvbsQ,2011-02-21,QHqYjvqvtn7Zh9bgvNYxtw,4,"Rare find in the East Valley! +Cute Cupcakes and the place definitely has character! + +I ate a coconut cupcake with sprinkled coconut and glitter on top. I only bought one cupcake and took it hope to share with my 3 roommates. It made me wish I had more cupcakes to share with the rest of them! We took our forks and gulped it down. + +The pink frosting was delicious and melted right in our mouth. The cupcake itself was very rich and moist. They must have substituted milk for the water while baking it, I could tell, so moist and mouth watering. + +I will be coming back here to eat for breakfast and lunch. Its a great place to study.",review,SNH5L8QZ4kT9unURQUrYow,3,4,2 +XU5Fb3TosXDUJcNRWQM5cA,2012-06-28,s2cybrOvOqRqhD1MCSlw2w,5,"Very small, but wonderful food and wine. Some of the staff mentioned that they worked previously at Bomberos Cafe & Wine Bar (now Timo's Wine Bar). + +The concept of this place is killer.",review,F3IAjFGRh5cBSS5es3CgCQ,0,1,0 +GOlq9CGj4APl_S2jyhMr1g,2007-07-28,EqW0Vvu8B8LaIXJQduQeSw,5,"The Harkins Camelview 5 gives Arizonans the unique opportunity to see movies that are normally reserved for screens in NY and CA. Without this theater there would be very little chance to see independent or foreign films in Phoenix. I give a lot of credit to Dan Harkins for keeping this theater open. He certainly can't make much money at this location. It's financially impractical to keep such a small theater operating on such prime real estate. This just shows Dan Harkin's commitment to sharing great films with the people of AZ. + +Thanks Dan!",review,g84VjttN28PWiv_WtdhnSQ,6,7,1 +oqZPXoenkQvAKQJ2pDCo0A,2010-12-01,IaJB0iSUO4FYm-Uz7GmZvg,4,"Burritooooooo lunch special!!!!! awesome, tons of chips and salsa",review,AMB8rfw34dGm_q2MfaTkcw,0,0,0 +9DsXB8T3UwBYiLPiLJJuNQ,2011-07-18,KRhGjSsM20Yj_gDxV5EhlA,4,"If you want a good neighborhood bar, Ernie's is exactly that. This is the place I go when I'm not looking to get all dolled up but I still want to go out. There is nothing unique about it, it is just a bar that is good at being a bar. It also has all of the best activities for drinking. + +I LOVE shuffleboard and a dive-bar is not a dive-bar without it. Great thing about theirs is it is in the patio area so you can smoke while playing (I smoke when I drink, yes filthy, disgusting habit I'm aware) ...sometimes they charge like five bucks for the pucks other times not, depends on the bartender I think. +They also have two pool tables, and I think golden tee. +Their is a room that has karaoke. I am a singer and enjoy karaoke from time to time, the night I participated there were some amazing singers and it was really fun to listen to everyone. The karaoke DJ. has a really good selection of songs, lots to choose from you will probably find what you are looking for. +I tend to get hit on every time I'm there which I guess is an ego boost but I would prefer to be left alone at a place like this. I'm usually in the mood to do my own thing with my own friends at a place like this and don't feel like making new friends but that's just me. + +Not sure about their drink selection, I always just get Michelob Ultra (lame I know) or cranberry/vodka...the mixed drinks are strong, their well is gross though but to be expected. + +Always a good laid back time at Ernies. They can count on me as a regular.",review,vp1LUMkedWATnFeVFteASg,1,1,1 +O510Re68mOy9dU490JTKCg,2010-06-26,dbCgw1pJ6yLOYo7LexBpYA,4,"I unashamedly adore this place. And it's not b/c I spend gobs of money here... it is b/c I don't have to drive and zig zag all over the Valley to sample (and decide if I like) many of our infamous local food offerings... + +Essence's macaroons from Tempe, Tammie Coe cupcakes and MJ's breads (what I always look fwd to) from CenPho, growing selecting of gelatos from all the places you read about... it's a one stop sample shop (ok, you pay for it), and a place I always hit when I'm up in N. Scottsdale. + +The $5 cheese boxes are great, a mini variety of 3 cheese in their to-go section is a great way to try new cheeses w/out risk.",review,xdWsnbaTEfBMVHttqZDHxg,1,1,0 +NLVcGseUhgQdABs1mIYk8g,2011-05-13,UCDcNMleHjT8iC7fgQq78Q,4,"Good, quick option in downtown phoenix. We dined here before a Suns game and we got in and out with great service and delicious food in under 45 minutes. The Pho was very good, as was the noodle dish I ordered.",review,3eit3w0zDbb-z57c9P60vg,0,0,0 +O4jXtRnS_R9SyM7ckMhFmg,2006-12-10,UJGo_fgwI_hgctJUkGolSg,4,"It was a busy bustling little town perched atop a small hill between the mighty Superstition Mountains to the east and the Goldfield Mountains to the west. + The first gold-strike was made in 1892, and it took just a little under a year before the town came to life. One rich strike after another supported the town and approximately 4000 people who lived in the district for five rich years. + The town boasted 3 saloons, a boarding house, general store, blacksmith shop, brewery, meat market and a school house. Just when it looked like the town would outgrow Mesa, the vein faulted, the grade of ore dropped and the town died a slow painful death. After several unsuccessful attempts to reopen the mines, the town did come to life again from 1910 on and off until 1926.",review,nBWpiVYE1tA-KwD3FUTklA,2,2,0 +IMGW6y8wHQCfr_6k-YXg_A,2011-12-28,aqWGYrBWyX0wJs8yhhgXBw,4,"While I am not usually a fan of corporate restaurants and brewpubs, BJ's in Chandler is an exception to the rule. The beer is fresh as it is brewed on site and they usually have a couple of offerings that set them apart from the main street amber ale brewpub crowd. The best deal is the all you can eat soup and salad at lunch for around $8.00. Food is above average pub food and the pizzas are a ok. They also make root beer for the kids.",review,b2DKC4kC8-QeSeGZ_MF3XQ,0,0,0 +e8FMAuTswDueAlLsNyLhcA,2011-03-25,jDxrMKFG09JCmTQoAYg1mw,3,"Traveling sure makes me hungry! After a long flight from Chicago I was just about to break into my 3rd bag of pop chips when it was time for lunch. Hooray! + +I joined the infamous Lindsey F and Gabi M for lunch here at Daily Dose. When we walked in Gabi told me it was a 3 star restaurant. I wasn't sure why we were eating at a 3 star restaurant when surrounded by so many fabulous dining establishments, but any food would do. + +We were able to grab a table immediately, the menu is pretty extensive and our waitress was friendly. But yep..3 stars. My rock shrimp tacos sure beat another bag of pop chips, but weren't anything special. And the friendly waitress forgot about our hummus appetizer. + +If I was in the area I wouldn't hesitate to grab a quick bite or drink here, but nothing here to hop on a plane back to Phoenix.",review,ARe8Nr_YehB2ubsGJhZ-hg,4,3,3 +BPi1Q5wX0_o5VlO_XRyYuQ,2012-04-24,aT3CxLvtslU3c7cSlLU54Q,3,"Food is good. Don't take kids though. +Kids pasta was $7 with no accompaniments.",review,DMmskLAvRS4wZDQhXRL0Qg,0,3,1 +oXKPSI-RUqOvmuSCh_DEQQ,2011-04-04,KJB4mpxZ3W0oxtNzYOQzag,5,"Excellent place for a nice dinner, A classy place to bring friends for cocktails and food",review,lJkAh61J1180sPmdt4OK4A,0,1,0 +EKzMHI1tip8rC1-ZAy64yg,2011-07-07,XWqn08mwWUVGpY69iW_j1g,3,"Decent upscale place in Tempe. Great ambiance outdoors on the patio. Service is very sketchy...sometime good, sometimes bad, never great.",review,OHkMbVbIeEQEGuFQZ36qDA,1,0,0 +rLv5DPLnO67TCHIbbBWYPA,2012-03-15,LR50AbUcCHlfYCMhJW45Dw,1,"Went for lunch. Took over 30 min for food to arrive. Ordered chef salad. Made with processed turkey and ham. Also with processed cheese slices. childs choc milk was not mixed up. Kraft mac & cheese on kids menu. +Won't come back again.",review,ItWQ-pBKzau5hg33tAxwRw,0,1,0 +6Kon3cR5ZEm5rmYKlpcfcw,2011-05-06,Oh7UCF9eWZJlHuXHL1C4wQ,5,"I love the Valley Ho! It's a beautiful property with great rooms, a fantastic pool, an excellent restaurant -- Trader Vic's and a really nice spa. Be sure to stay in the newly re-modeled Loft Suite. It's two stories and it's fantastic! If I was to take a stay-cation, I would be sure to stay at the Valley Ho! And for all you out-of-towner's who want to stay in Old Town Scottsdale and be close to great shopping, restaurants, and nightclubs, the Valley Ho should be at the top of your list!",review,3am2PwtajoR3LIlP7XZtbA,0,1,0 +qMkIbQFrROSnPaQ7at85-w,2012-03-11,n3Ze46ehctKD0TGAOi1MIA,5,"Going to Desert Botanical Garden is the perfect field trip for a beautiful day like today... I've been to DBG a handful of times for events, exhibit openings, meetings, and of course Yelp In Bloom (a yelper party that I planned a couple of years ago)... but today I went with my son and we met some other friends with the sole purpose of checking out the butterfly exhibit. + +We didn't get lucky enough to have a butterfly land on us, but we did see tons of gorgeous butterflies. There were orange butterflies and yellow butterflies and striped butterflies, etc... The flowers in the pavillion are pretty to look at as well. We visited the gift kiosk afterward and took home a butterfly finger puppet, which I know we will get tons of use from (only $6.25). The exhibit runs until May 13th, so don't miss it! + +And if you do find yourself with more time while you're there, definitely check out the design for a living world exhibit as well... I saw that when it first opened and it was really cool. The photography alone is worth a visit. + +I just wish I had more time to explore DBG more often!",review,fczQCSmaWF78toLEmb0Zsw,6,5,1 +9AwAmDwjNX_WUuhSdYTKQg,2012-12-01,JTUUQNlYOgmgrQRthk-1qw,5,This place is awesome. Just bought a loose super powers darkseid. Will def be back for more. Lots of loose figures. Great prices and friendly staff.,review,y1pcDeo5NWpYOjGdAvr05g,0,1,0 +bc-lE-wGVAsUrX-kJhtY-Q,2011-03-04,6EDA2uXRsuq2oCUfVZBO5A,5,"This place gets it right from the moment you walk in the door. Signed baseballs jerseys and bats by legends on the wall, a friendly host to greet you and when you sit down they ask if you want free chopped liver. It comes with bits of egg and onion, warm rye bread and bagel chips. + +Our waiter, Jeff, was friendly and attentive, even lending us his flashlight to read an old newspaper story in the rafters. The cream of mushroom soup made from scratch was superb. Our mains were baby back ribs, the specialty of the house, cooked perfectly with a flavorful sauce. The 'broasted' chicken was to die for: moist and juicy with a crispy outer skin. The fries were piping hot, as they should be. And the portions are beyond generous. + +We topped it off with key lime pie, light and tasty, an ideal complement to the meaty mains. And the bill was under $60, an amazing deal. As a bonus, some of the players drop in during spring training.",review,e_UWyLsNM4SxEwpXm8rOSg,0,1,0 +SNyxwFx8i20SoDlN4dBS4Q,2012-10-25,KCSKgCcREKeQoA9YIcxRXA,5,My family has been going to Dr. Brittan for 10 years. He is an excellent dentist and can handle any situation you can throw at him.,review,zar2wOyyin0r3tbBGtqXKw,0,0,0 +r3FHkf6lbmMUh3oPSrlIvw,2012-03-07,-iJ78sMZgqaFORMqVeguBA,3,I went there on March 7th in the late afternoon. My friend ordered before me and got a burger meal. AND THE POWER WENT OUT RIGHT AS I WAS ORDERING!! My friend ordered about 5 minutes before me so I got to eat some of her steak fries....the were awesome!! Other than that not much else to say. Gotta try them again some time. The Nutter Butter Shake looked full of calories but delicious. Better luck next time!,review,C1kS98KgRKB08yflIEq7_A,0,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2011-04-03,NxwKxmedqHIwmXpgg7-VRA,3,"I have been to this restaurant several times. I can say it has been better each time with the first time being absolutely terrible. Why did I return? Because I was with a friend who wanted to try it and I couldn't believe it would be so bad the second time. It was a bit better and most recently it was good. The hostess initially was very ""French"" in that she was affected and snooty and yes, a young American woman. Initially we had a very bad experience with a fire alarm that continually went off, the staff didn't apologize and did not comp us anything. Other diners just left without paying or waiting for their meal. It has since been better, but I certainly am reluctant to return. There are many other restaurants from which to chose!",review,1JzbzyIYQ0wi5KXU3tNnfA,0,0,0 +AhpzPZH3b0PGT9mVoLCQDg,2010-08-15,rPi2foQmJJ9GBFZKA5JgTw,3,"Yelpers prove to be right yet again with the average 3 stars on this one... + +I was craving sushi and had a hot date with my sister-in-law last night to do dinner and a movie... It just so happened that Eat Pray Love was playing at the Tempe Marketplace Harkins Theater, so we decided to meet at Kabuki before the movie. + +I walked in first and asked how long the wait was for two... I as told 10 or 15 minutes. Not so bad... so I decided to wait. I walked outside and met up with my Alexa and we came back in about ten minutes later... As we did so, two other women came in and I saw that they were seated right away. I looked at Alexa, looked up at the hostess stand, was thinking (WTF), and then went and asked nicely where we were on the list. + +""There are two tables before you,"" I was told. ""It will likely be another ten minutes or so."" + +At that, I responded, ""is there another option, perhaps sushi bar, that I don't know about?"" + +And alas, there sure was... (they neglected to give me that option when I originally checked-in). We were seated at the sushi bar at that moment and went on to have a very underwhelming meal. Here's why: + +-While the large portion cucumber salads we ordered were extremely tasty, the cucumbers were cut lengthwise in such a way that it was difficult to eat. I prefer cucumbers diced in smaller pieces so they are easier to eat! + +-Service - our waiter wasn't the friendliest... I felt kind of rushed by him when we were there. Additionally, since we were seated in the middle of the sushi bar, all of the wait staff would reach over us to pick up the sushi for their tables, which was very distracting while we were eating! Perhaps they could've moved the sushi ready for pick-up to the side of the sushi bar to avoid distracting guests in the future? + +-The sushi itself was good; not amazing. We had a Sunset roll, a Lotus roll, a Large roll, and an order of Ikura. I didn't realize the Lotus roll was going to have a ton of mayo along with the baked Lobster that came on top of it... it was a bit on the creamy side for my liking. + +-To top things off, when the bill came, they overcharged us... a simple mistake, but given our experience, it was just one more negative thing... and then when I pointed it out, I barely got an apology at all. + +With so many other restaurants to choose from in the Tempe Marketplace, I am not sure I'll return to Kabuki. If I do, however, I will wait for a regular table!",review,fczQCSmaWF78toLEmb0Zsw,5,13,5 +OmfLT4ZxFGiNygGmKcgE6g,2011-09-03,0kkaNrhXArqKW4NpnHSpHQ,4,"Great new multi-purpose entertainment facility that just opened. They just started serving food last night and I had a fabulous ""Punk Panini"" sandwich ... value for the price....and a rock band going last night..... +Can't wait for the theater to open and the bar to begin serving in the next couple of weeks.....",review,2HsbXpcFBvFa-roHMqxgBA,0,0,0 +VsrvWdZL2993olnW3z8R3A,2010-08-29,em-TC3alO_P0g-vKWguKiw,4,Yummy yum ! I ordered the little cheeseburger and cajun fries....It was really well done...I luved it and will go back soon...someday when the craving for burgers and fries strikes again !!,review,bEJMn_jbXWHTmDPzPOflRw,0,0,0 +rkGPf4cbyUJqHgKZPvaTnw,2010-01-02,hX39R4L2BTbBZTqFWi6JGw,4,"We arrived at the store several months ago to create a wedding registry, which was an okay experience. A ""registry expert"" sat us down and went over the basics, and then wanted to walk us through everything we may need on our list. We weren't interested because we're already home owners and just needed some entertaining extras and a few other items. Luckily, after awhile she got the hint and left us alone. + +Anywho. Gifts began to arrive and were shipped directly to us, big plus. Then came the true test.....returns. Easy as pie! No problems! I even wanted to exchange some items for a Kitchen Aide mixer (which every domestic woman needs!), and forgot my 20% off coupon. Oops. Luckily, the cashier found one and let me use it - which saved me $80 bucks. + +Everyone I encountered was helpful, the only downside is that it's a little unorganized and seems crowded with merchandise. Anytime I am in need of a kitchen items, I'll grab my 20% off coupon and return!",review,lwppVF0Yqkuwt-xaEuugqw,0,0,0 +ezh7DWNch2eNHTUyAnV7lg,2012-08-29,d9tq5UR__qPizk4dmAdQTw,5,Love this store!,review,eapbAr6Zi5G8rK62gaWT9Q,0,0,0 +vvMR0jgDoBA-g1XgZy8sEg,2011-06-20,meu41PvHcNjcYxPqsM2UYw,5,"I'm not a big ""organic"" kind of guy. I could care less about hormone free this and BPA free that. For me it all about flavor and service - it has to be better than I can make it myself and you have to take better care of us than I can. + +Having said that, I'm HEAD OVER HEELS in love with the food at Tryst! Service is family oriented too. They treat you like a regular on your first trip in the door and burgers are to die for. + +As a die-hard burger man, this is my default stop. It is close to the house, in a pleasant shopping center, and has the best burger I've ever eaten in Phoenix. I'd give it an extra half star if Yelp would let me. This place is that good!",review,P_LzcrlVXFdgBq_24UnlUw,4,6,2 +XWvht_1ZLdK7EHJ3jo4q0g,2010-05-04,-JSXM_YGU7RQi9vlxL_b8Q,4,"I've now been to the WCG twice. The first time I went, I only had a salad. Only salad has new meaning here as they have some fantastic salads. In fact, several people at the table said they had never had a salad so wonderful. I also heard that the seared Ahi was to die for. Salads were just filler as prelude to desert however. Everyone at the table ordered something different and they were all passed around. I can highly recommend the cheesecake and the banana pudding. Both were outstanding. + +On my second visit I tried the Parmesan crusted filet. It was to die for and I ate way more of it than intended. I also enjoyed the mashed potatoes and shared someone else's honey roasted carrots. Tablemates had ribs and the steak sandwich and both had rave reviews. + +Overall the service was wonderful, the atmosphere is relaxing and reasonably quiet even when the place is busy. The food is excellent (I have not heard a bad thing about any dish) and the dessert is worth the trip. They even list it first on the menu; a sure sign of something great!",review,S9R4_Vb25wdyHv95H_JP6A,1,2,1 +I4bSn5gXsHuSPu7L-d_8nQ,2011-01-28,rvES6f9D-O0oHQPmzrQoJg,5,"After eating chocolate covered bacon for desert (yeah, that's really one of the options for desert), I say that I was completely stratified with Beckett's Table. From the moment I called to make a reservation I knew that this restaurant was going to have great staff and service. The staff greeted us at the entrance and give us options for seating. I was VERY pleased with the pricing on the menu especially the wine bottle prices! It's just a matter of time, and I will be back for an evening meal! Speaking from living in the Arcadia area, this is just the restaurant we need in the area--a nice community restaurant with pleasing food! If you are looking for a nice dining experience, this is the place for you!",review,WflEF3597OItD39ygq9C8A,2,1,0 +fP-BPL6iRu2tbcvlnjRshw,2011-07-07,nai7U95Uq3fBqQY-OyMi_Q,4,"Finally another downtown lunch option. I'm viewing this as the ""in-between"" place, in-between Arrogant Butcher's heavy on the lawyer, heavy on the political scene diners, and in-between ""Celtic-Hooters"", I mean, Tilted Kilt upstairs. The food menu is interesting, a lot of appetizers. Not enough salads for my taste. +Compared to Arrogant Butcher and likely Tilted Kilt, the menu has less salads and less fried foods, but it'll be hard to find something healthy to eat. It veers towards the comfort food side, with options like chili with cornbread souffle, and flatbreads served with burrata fondue. There are a few flat bread options on the menu which is their version of pizza. The day I went, the lunch room was busy. (You enter in through the a lobby shared with Stand Up Live). Didn't get a chance to try out their amazing beer selection, will have to try that out the next time I'm here for a show. The management and service is very friendly. (Not in a scary way, just in a ""I really want to enjoy your experience way). This is in sharp contrast to the service at Lucky Strike across the way which I've found to be downright rude at times. Keeping my fingers crossed that they continue to do well.",review,vhxFLqRok6r-D_aQz0s-JQ,1,1,1 +b3MaC7nWia6uYvJrP8iu1w,2009-05-30,XBedl2cEMZihflfuoPIphA,4,"Went to the market for the first time today and I enjoyed myself. + +I loved seeing the herbs and plants I could grow for my own veggies (some of them were ""pre-tortured under the AZ sun""... loved that line) and smelling all the great concoctions that people make. + +The creativity... it's awesome. I love going to those craft fairs and seeing stuff, but I like seeing soaps and art and other various items that people will put together on their own. + +It was super nice that they had portable evap coolers blowing down the aisles and lots of shade. + +It was very comfortable, lots of tasters and the music is great. + +I told friends that I would be going here today, and they all said, ""Oh I wanna go!! I'm so jealous!!"" + +Now I see why. :)",review,Yk37VAp452K7FwHWd1rrQw,0,1,0 +b3MaC7nWia6uYvJrP8iu1w,2012-07-28,CkFL0XCQrFjsThYmhxFmow,5,The whole market is awesome.I like that if you did not bring enough cash with you that you can pick up a blue ticket at the information booth that the vender will stamp then hold your items for you then you may pay by credit card at the information table where you picked up your ticket.The veg are great.the free range eggs are the best.the french baker from Tucson is pretty darn good.this market is for sure one of the better ones I have seen.worth any one checking out.Note support your local produce and growers/farmers.Support Organic!! One more note this information and option has to do with the farmers market out side open on the weekend from 7am to 11am,review,Z_8P1viBB-8B88oNEiBb7g,0,1,0 +8o-NLKy_XfbJtqljX9XLCA,2008-10-30,-25RrM8ltiVzNtM8mJMy4w,5,"The best fried chicken I have ever had +pork cutlet is not to be missed either +the collard greens flavor is unbelievable and purely vegetarian broth if you can belive that - absolutely no sourness + +I regular have to make pilgrimages for my pregnant wife here. + +Negative - cash only",review,A7v8TX0r0OziLD5u8p6wgQ,1,2,0 +Sb1_G-DMy26YHafNxxhVrQ,2010-02-28,W9Ffzsoma1hKsLEnxHglwA,4,"As a visitor to Scottsdale, I thought a stroll through the farmers market was a great way to get a taste of the local flavor--literally. And it was! There's a great mix of vendors, who sell everything from baked goods to coffee, from vegan wraps to preserves. There are also some interesting services like pet massages! + +Like Vicky T. said, it was surprising to see dogs with their owners wandering through the farmers market, because that's against code in California. But I thought it was great, and with the pet masseuse and a doggy and kitty treat vendor, it totally made sense. + +Farm Sessions, where local chefs give cooking demos with produce from the market, is a great idea I'd like to see at my local farmers market. It did seem odd, though, that all the produce at the market was in one corner. It was the shadiest spot, so maybe that's why? + +Anyway, this was a great way to spend a Saturday morning and was very relaxing compared to my local farmers markets, where I often feel like I need to start throwing some elbows to get through the crowd.",review,0O0WByGmSVbF7iNs4uxi0w,6,6,6 +ZoQAOnEFnyHjSpomtfqesA,2008-06-05,jyqulMgIQz4qd37ZoQY_2g,4,"I really enjoy That's A Wrap... all of the food I've ordered here has been really enjoyable, plus it's all a really good value for the money. My favorite wrap here is the Prince of Thai, sin pollo con tofu. The Veggie Bowl is also another good option and I'm pleased they can make anything vegetarian. Worth a stop for lunch, however, the parking lot is tight and I have been here more than once when it was full.",review,6hRKotVFPYL7Ci0hipN9Eg,4,3,2 +V6BYjHM9SnXscfkln3hCdA,2012-02-11,tPXP3dwMAz5ynBfzgOn5mw,3,"Decaf coffee was the best thing going here. Big cup, super hot and tasty. + +White flannel hash was a miss. For me the flavors were off. Too much salt and way too much garlic, for my taste. Service was polite but a bit slow for how empty it was. If you like garlic and a heavy hand with salt, this might be your place.",review,so9owE1BlWDslVNZJUYugA,0,0,0 +trAvQPp7gps0Btk-2AmLpw,2008-04-10,dXmgGJTDhC0AbCPNXfi7EQ,1,"The food is simple, pure and uncomplicated; you taste (and hopefully enjoy) each ingredient. However, as with most minimally processed cooked foods, it does not travel well. So, eat in. Luckily the decor is modern and compliments the menu well which makes eating in a pleasure. + +My only down note is on the service. If you are not careful when you enter the restaurant, you may enter through the door of invisibility and will become invisible to the employees. As a result, you may stand at the counter while they work around you but do not recognize your presence until the invisibility dust (or whatever makes you invisible) wears off. Based upon my late lunch experience today, the dust takes 4 iPhone e-mail responses or texts to be removed (10ish minutes). Regrettably, I only had three unanswered e-mails in my inbox and had to leave before I could be seen by the employees. On a positive note, when you leave (regardless of the time you waited), the invisibility dust seems to be removed. I know this as no one honked or screamed at my car as it drove away without a driver.",review,BrJcbK_lH0irQcNSNBEQHQ,3,3,7 +HLQUH1VAw4KbSV-IhxOPEw,2013-01-04,xKXXSqimCGmwSSM6A2IaGA,3,"I was not impressed. For a business traveler, there are better choices nearby. +When I drove up, the valet told me there was no self park, but I could see it less than 100 yards away from my room. I used it during my stay, and it was convenient and much less expensive. +The entry of the hotel was constantly blocked by party goers, and I couldn't find any alternate entrance/exit. +My bill was wrong at checkout. They adjusted it, but then mysteriously placed an additional unauthorized charge of $13.94 on my credit card. +Seriously wishing I opted for Embassy Suites across the road...",review,hANn-OzlMa_bDl31nWZwkA,1,1,0 +djYFLq4Bkqpkd14-0IJfug,2010-03-01,XKwhyz7BIeEJRe5smDil-g,1,"For frozen yogurt quality, I give this place a one. Honestly, it's small, there's very little variety in terms of toppings, and the yogurt tastes cheap... Probably because it's a big franchise. There is a reason why you're paying less for an ounce... Truly - you get what you pay for. +The concept is neat, sure, but if you're looking for pizzazz then you should try Yogurtini... It's just up the road from Yogurtland. Anyway, the single star says it all... ""Eek! Methinks not.""",review,2K3lSMLFIhbpdXUWAdgYHw,0,0,0 +dcd3C1gWv-vVdQ9XYV8Ubw,2012-08-04,j1GkoGCAq2ZLrwvRh53MxQ,5,"Ii am addicted. spectacular service and consistent, quality. food every time. i have been ordering take out and dine in for months and grimaldis does not disappoint. only once...they gave my takeout pizza to the wrong person....christine, the manager, very generously apologized, comped my new pizza, and bought me a glass of wine as i waited. grimaldis is a class act and has a fantastic staff with excellent food. every time.",review,hgzGSMl2m3ZpbVMnnbHJAQ,0,1,0 +0dIChGWBs9ueUXl0hhkw2w,2010-10-02,oGtSU2M-vv8Hh5DMCXJWvQ,4,"My girlfriend and I were hungry and wanted to try something new, so we hopped on the netbook and fired up Yelp. We tried Crazy Jim's, and boy was this a good pick. When we 1st rolled up to CJ's my girl was like ""I don't know about this!!!"" I said ""lets just go in and take a look, if it is clean inside then lets try it"". Once inside the place was small but quaint and most important it was CLEAN. So I ordered a veggie pita and got the pasta salad as a side. The food was ready pretty fast and I had envisioned something like a sandwich that you pickup and eat but it was all laid out over my plate. The pita was very good and I give a big thumbs up to, the pasta salad was kinda plain. My girl has a greek salad and she liked it but wasn't too crazy about the dressing. I would definitely go back to Crazy Jim's and eat. As a matter of fact anytime I am craving that veggie pita, your boy ""E"" will come to visit. + +ps. Our server was great also, friendly, fast and helpful.",review,WgpyvVqYAc3FOvk-G-Erwg,1,1,0 +1uFIjxwBRi8vGqc6vpNO9w,2010-03-23,Giqs3sVmwBdHuxIv6uPA2w,1,"""Fake"" (or rather condescending) service from the ""Service Manager""...and he didn't even acknowledge me when I asked the status of my car (uh, more like IGNORE). Ended every sentence with an impolite ""No ma'am"" or ""Yes, ma'am""... ya get the scenario. Basically, the guy was a real JERK. + +They couldn't even figure out HOW to fix my car, even when I TOLD them what was wrong with it ( had been diagnosed at the Dealership). Two guys were sitting there staring at the computer (as if it was going to magically speak to them). At least they didn't charge me, but what a waste of time waiting for 90 minutes....",review,CP-IE-zyc2Mv3jlaceElVQ,0,3,2 +kApEJUSJFIMitJRrhutAfA,2012-01-27,gwbYi4ykkOKh3CKJXIbtcA,4,"The Hyatt Place Scottsdale is a hidden jewel in old town, just off the main drag this place is perfect for a weekend getaway. They offer complimentary breakfast which is pretty standard but nice and even have ""real"" plates and utensils vs. plastic products. They also have free WIFI and the rooms are HUGE! It is a great place to take the family since the kids can stay in the first part of the room on the sofa sleeper while you can crash on the comfy bed closer to the TV. +The only reason I give 4 stars vs. a perfect 5 is because the pool is really small and not that great. If they upgraded the pool a bit they would be golden.",review,Br9mpMhkVunsp8Un5GpYWA,0,0,0 +XNSito__Fne14TXU0vz1Qw,2009-11-18,nV364mAGFk-5MfX_GqFVFg,2,"The service was slow, the server knew nothing of the wines on the menu and knew nothing of proper wine service. Boo.",review,aM0LYqvjHQcx1cgihiFhRg,0,1,0 +Nz_AasmpsQ8MLSqhCTRVoA,2011-05-24,IbMBvrxPpXrJiH0D0P52AQ,4,"I'm not a fan of Thai food or buffets but this place is great. Food is great and it very decently priced! It's not super busy, so the food isn't always ""fresh out of the kitchen"" tasting, but I really enjoy the Pink Pepper!",review,r1_Dt2mXFhfSnW5Ew5T1Rg,0,0,0 +74qDPs2dR6gSzDp6N1U-Og,2011-02-12,WuaBQ-6u8AbkOyQHxO_lhQ,4,Decent place for pizza. The only place in the West Valley to get decent Margherita pizza. Not the best but good enough to satisfy.,review,s7Tm9oYWqRlBm5ex2OQ1nw,0,0,0 +DXBPI8rR9f_IthOGPDWoIQ,2010-02-17,q4-tqgbDGXC5GZ9goxP6XA,4,"Blurb for iPhone App: Great Enchiladas, Chips and Salsa made fresh, but beans left something to be desired. Give it a try nonetheless. + +I just wrote the last part because I will be on the Yelp app, and notice that I often start my review with something that is not useful at all... which is that everyone sees when searching on their mobile phones. So I guess you could say I'm optimizing for mobile. Ok, now on the full review. + +Took off a star for the beans... they just weren't great. The person with me had a taco salad, and said they didn't get a lot of meat in it... and the rice was good, but not great. However, this was balanced by the chips and salsa (which I always eat so much of that I'm not hungry by the time the food shows up) which seemed to be made fresh, not too hot, but with plenty of flavor. The ""hot"" sauce (hot is entirely objective here) was very good, and I used that for my chips as much as the salsa. Didn't ask if they had anything hotter, as the true chilehead will think it's pretty mild... + +I had a chicken enchelada with green sauce and a cheese with red.. and although I usually like the green better, the red here is great. One word of advice however - don't step on the scale the next morning, because you are going to stuff yourself while you are here.",review,15cUUq1KnmjYOPoEbbydqA,0,4,0 +p5HEHFZwbztIkpI4ItbX2w,2012-06-13,OFzvW2jnI-dnleHa8v3O5g,5,Obligatory stop for a drink...Dodey is here so that is always good,review,AuQ28IMcqAloDmlFI7CKoA,1,1,1 +TRD-6PxJX2fWL91dRrny6A,2008-05-23,sAlc-va-Enm37cgz3kR0mA,3,"What vegetarian goes to a place like Logan's Roadhouse? The kind that will sacrifice herself for the sake of her people because she drove all the way from San Diego to AZ at midnight and had no kind of sleep, but still managed to get there and say, ""Hey, I'm taking all you fools out to dinner, my treat, where do you want to go???"" + +And, they picked this place. Oh woe is me. + +If you've been to Texas Roadhouse, then you've been to Logan's Roadhouse. I'm pretty sure it's the same damn place. Peanut shells on the floor, MEAT and potatoes galore, and loud people everywhere--Which is fine, because my people are very loud. + +The overloaded mashed potatoes was a hit, I was pissed that they were out of onion petals, and our waitress seemed really confused. But, she was nice, so I can't really talk too much crap. + +As long as everyone in my party had a good time, I'm happy.",review,DqQzkxbhm4rEJpsIT3XxOA,4,4,6 +eHcQzL5eebqvKrLW5q283w,2012-08-11,YjA3C4gyP0s_7rlYp1M0Sw,4,"Sandwiches are very above average in taste, but they are on the spendy side.",review,vzTqQHtC0lHzBYsl2Jbs8Q,0,0,0 +TfTlOE6h9E9o34dEkw9L_w,2010-09-11,PHKjWkJze_fRdaUlwG2ISg,4,"Great beer, really good food and no wait. +Ok yes it was noon on a Sat but that can be hard to find +any day of the week, at any time.",review,2fdyqZooz7YSZ5vgkDLxxA,0,0,0 +eONS7DP6U9BV3lkqGAUbOg,2012-11-02,64vt8IGCHT0S8Zco3zRmdw,4,"Thank you sir, may I have another. + Although I didn't have to revert to Oliver Twist-like methods to punish myself gastricly with this greasy, plentiful, delicious food, and it was quite easy on the wallet, I feel like I shouldn't have come here. This is a guilty pleasure whenever I travel to sections of the country that have them. Nice big portions piled on plates that I'm pretty sure were clean, the staff hollering out orders to the assembly line that never seemed to cease. Awake and alert, this place is good. Hungover or Drunk, this place is Frickin' Candyland. Bottomless coffee, Waffles as big as your head, overworked waitresses franticly running from table to table.. ahhh the American dream.",review,RXueZzFMARyR16QBtxlFeg,0,0,0 +wPb6f04NSnQc1aCPOR1sEA,2011-06-25,y6sdmbdlkPUK-b4sKGNuDg,5,"was i ever lucky to pick dr. karawi from a random list of doctors near my home from my insurance website. + +ever since i was a kid, i barely remember seeing my dentist. his hygienist came in, cleaned my teeth, then the dentist came in with his long nose hairs and big belly and bald head and stinky breath and started shoving sharp metal objects into my teeth. then he left, saying only ""hmmph"". he had a beach house in the cayman islands. + +dr karawi is exactly opposite of that (don't know if he has a house in the caymans though). what really, really, really surprised me was the karawi cleaned my teeth....the Dentist! he does that for all his patients. i asked him why, and he just said he likes to get to know his patients. how novel! + +he is extremely friendly and likeable but always professional. he will joke and talk to you about your vacations, plans for the weekend, etc, but then always keeps it serious when discussing your dental care. i sincerely appreciate his services and friendliness. we liked him so much, even invited him to our house warming party! + +so for excellent dental care and outgoing service, Dr. Karawi is your man. +p.s. he's not bald, doesn't have long nose hairs or a big belly, and his breath doesn't stink.",review,ST8Yzlk2MqKlcaLqL2djBg,5,5,4 +YKOvlBNkF4KpUP9q7x862w,2011-06-30,N7CUeQkSBc4pdkPGu7aR-g,5,"We have been meaning to try The Mission for awhile, and we were extremely impressed. We are self-professed foodies, good cooks, etc. +Let's start with the fact that they seated us promptly at our reservation time, and that reservation had only been made that day.....surprising, because the place was packed!! Alfonso was our waiter, and he was awesome and didn't hesitate to make suggestions that we were happy to add to our dinner. First, the margaritas. ....this place knows how to pour, and they are fresh - the only way we will drink them. Next - there are only 3 places in Phoenix that can make good table-side guacamole, and this is the best of them. Alfonso suggested a fried pork belly/cola reduction appetizer that I had to be talked into. OMG....heaven, and such a complex blend of flavors that the sweet, crunchiness of the pork belly can only be described as ""worth it"" if you are balking at the issue of pork belly. +Entree: we chose the Chorizo Porchetta and the Scallops. Both were excellent and may I say that the timing of each course was unbelievably prompt. We never waited and yet didn't feel rushed. +Dessert: I confess that I read the dessert menu first before making dinner decisions, and while other reviews loved the selections ...I wasn't blown away. The churros were small and dough-y, and the milkshake was just to heavy/sweet after a meal.....better to fill the churros with a cheese and serve them warm on dulce de leche ice cream. Fried bananas didn't excite me either. Bananas are bananas..... The pumpkin bread pudding seemed heavy and Autumn-like for a 110 degree day in Arizona and did not compliment the Latin flavors of the dinner. I feel their dessert menu needs to be expanded in a way that compliments their cuisine....some citrus sorbet, chocolate-with-red-chile cake, lime cheesecake. At any rate, I still give them the full Monty on stars!!!",review,-uYfeJs1HNUBRDEBYdv7zQ,0,0,0 +L1ymPhPjisiSD6RI1NtnQg,2008-09-22,lDUwVQpKtBPKBCxhtR61JA,5,"My husband took me here on a Friday night ...after hearing good things about it from coworkers. + +We sat on the patio which had plenty of misters and overlooked a park, it was a very relaxing environment. + +Our server, Carla, was as cute as could be and was so nice the entire evening. She was one of the most attentive servers that I have had in a long time. She was so genuine and really added to the experience that we had here...thank you Carla !!! + +We ordered a bottle of red wine that the husband picked, I am not sure what it was but it was damn good ($23 for the bottle). As an appetizer we had the Piatto Misto, which was an assortment of Italian meats, cheeses, olives , and breadsticks ($14) and this is definetly enough for 2-3 people. The meats were excellent and the cheese was tasty also. My only recommendation would be for them to not cut the cheese into tiny little cubes...that was odd because the meat was sliced and you could not incorporate it very well. + +For dinner we shared a pizza.. The Sofia..it had Scamorza (Smoked Mozzarella),Parma Prosciutto,Parmigiano Reggiano ($13). It was ooh soo tasty. We could not eat the whole thing...there was like 3 pieces that we ended up having boxed up. + +Then we had dessert.....I am still in heaven just thinking about this dessert. It was the Dolce Della Casa...Slightly Charred Sweet Calzone +filled with Chocolate Hazelnut Sauce and Banana topped with Vanilla Ice Cream...OOOOOhhh my God. This was by far the best dessert that I have had in a while. It was so gratifying...I had goosebumps after the first bite. I would recommend ordering a small and sharing it because it was huge ($7). I can die a happy woman after that dessert...and if this was a first date ...that would have been a guarantee for sex !!! + +The community here in Verrado was absolutely amazing, I wish I would have known about this neighborhood before I bought my house in Goodyear. If you live nearby I would recommend checking this place out and spending time looking around the neighborhood.",review,JkMOQaMjlBHMqp6gj-hL3w,2,0,0 +b5cEoKR8iQliq-yT2_O0LQ,2010-03-09,c7UBikwEOZfG2kTUQ3M3EA,5,"Great surprise-- I have driven by this place several times-- food was excellent-- I had the Enchantment platter-- just the right amount of heat without being overwhelming- + +Cool cave-like atmosphere inside and fun patio area-- I will definitely be back and bring out of towners",review,76SlIVfcXJujKQ3xSyYtOQ,0,1,0 +qC5Uv1j4id7MPM-8YrjW6Q,2011-08-10,1hVNXprd3EDijQqZ7wy7aw,4,"My daughter treated me to a facial here for my birthday. It was lovely and included a massage of my feet and hands. The student was very professional. It normally costs $33 for the signature facial, but was only $25 for my trip since they were running a back to school special for the month of August.",review,LX3cTVaS8f2UF0Uuafsfug,0,1,0 +Re0Xw-AYkn6NK7QRk3kPEg,2010-08-02,musPMVwcTY50Vp9wlyJ_ug,5,"I love Stinkweeds. Owned by local commerce booster Kimber Lanning, Stinkweeds provides better selection and pricing than many national vendors. The staff are helpful, and if they don't have what you're looking for, they'll happily special order it for you. The parking lot is smallish, but I've never had a problem finding a space. The central location is a big plus. They share the plaza with other locally-owned businesses, so it makes for a fun shopping excursion. Their listening stations are well-stocked with a variety of music, and the staff loves to talk music, as well. They also carry a great selection of music mags, as well as some books.",review,2LCrT_BOJvGV4xi_lmoRcA,0,0,0 +kYQxOeJRFYats6cxVFnILw,2010-11-18,Nor4neSd96yxIzcZ_sVQ-g,2,"I don't usually review based on one visit. But when the experience and food is as bad as this, I'll make an exception... + +This place gets two stars for the multiple big screen TVs. If you're here strictly to watch sports and have a beer or three, you'll be fairly happy. However, I came here for a bite to eat, and that's when there where I ran into problems. + +The bartenders are a disgruntled lot. Their sour mood when I sat down set the tone for my whole experience here. They're not all bad. One of the male bartenders actually smiled occasionally and chatted with some of the customers. + +The food. How can you screw up cole slaw? What more can I say? + +Beyond that, if you're in the area to watch a game, this isn't a bad choice. Just swing by McDonald's or somewhere else for dinner.",review,pf4qcDBKqkWG4uuHnwRMlw,0,1,0 +q9WaFYhlOZCrfXJQTG5t_Q,2012-03-29,QrV78zogKdN8l345KyIIMQ,2,"Good = Happy hour is a great deal but it's always PACKED. The open atmosphere is awesome in the spring/fall but there's not much seating so you'll likely end up waiting. + +Bad = Parking. There's never enough and it's a tight parking lot. Prices. It's expensive. If I want to sit outside with friends and enjoy a bottle of wine and nibble on some fancy cheeses, I might as well do it at my house for 1/4 of the price. Then I can drink as much as I want without the overcrowding and $$$$.",review,qkNxavKKK5TZsvaXdnHNPQ,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-03-19,wQE2rzQ5CHnS3iby8sM1Tw,5,"Have you ever walked into a bar or restaurant and instantly felt at home? That's how I felt when I walked into the Grind last night. The place has a great vibe, fantastic food and cocktails, and a friendly staff. Some of the highlights of what we ate last night... The burgers are phenomenal, the cable car drink was unusual and tasty, how could you not love donuts, and the bacon... oh the bacon... I highly recommend swinging in for lunch or dinner so it become one of your favorites as it is now one of mine.",review,HNASrZhKABaDbGysyoK64Q,1,1,0 +619v4z_tj2NiZWuX1tPdrw,2010-01-04,3sr8RO5HtBlbg-cQseIrmA,5,"stopped here on our way home on a road trip. if i had known, i would've stopped on the way out, too. the bear name drew me in (and the assumption that a diner would have chocolate malts). + +the food was fantastic. boyfriend ordered ""bob's big bear burger"" and it was probably the biggest hamburger i've seen in person. apparently it was delicious (how he ate the whole thing, i will never know). i ordered some sort of burger basket combo, featuring a much smaller cheeseburger (which was delicious), hearty portion of fries (which were ok), and the chocolate malt was only $2.99 (instead of $4.50-ish) with the combo. And it was one of the best chocolate malts I've ever had. And the prices were reasonable. And I actually loved the kitschy bear theme. Can't wait for another trip that takes me through Phoenix (and I never thought I would say that).",review,3KnIBtTFpS_VNtvcZT4WbA,0,1,0 +ykKSshfa9ANCZCuvM2LaWg,2010-03-13,KWRuNZsIE8Hj_IDSsdt6hQ,4,"This was my first trip to Culver's and it came highly recommended. At my friends suggestion, I tried the butter burger deluxe, fried cheese curd and the.....I forgot what it was called, but the frozen custard - basically the equivalent of a DQ Blizzard. +The burger patties were paper thin (thus the reason I ordered the double), the lettuce was crisp, tomatoes fresh, bun soft and buttery. I thoroughly enjoyed my burger. Very flavorful! +I had never had fried cheese curd and had no idea what to expect. The closest thing I can think to compare these to would be mozzarella sticks. They are about the size of a grape, and full of salty cheesy goodness. +The custard was delicious! I had the vanilla with butterscotch and oreos (I ordered butterscotch and brownie pieces, but there was a mixup, but I had no complaints). +I really loved everything I had. The menu is big and I can't wait to go next time so I can try something new. +The thing I didn't like was the bible verses all over the walls. +Seriously?? It's not that I am anti-religion or anything. I am Catholic, went to Brophy and go to church twice a year. I don't need it thrown in my face while trying to eat with my friends. take a tip from In and Out. Put them on the under side of your cups. Work on your subtlety Culver's.",review,esomNneHvsEv91MmraM5ug,0,1,0 +g-eZgnBDvSDguF8cUxKCkA,2011-04-23,4vwW6RqF2F3waWlweEhqEQ,5,We ordered seabass and ribs. Both excellent choices. Service very good. Ambiance was unexpected. Felt like we were in hawaii with an open feel with palm trees. Used restaurant.com coupon. Great deal.,review,_LIGXXPQzba-ldVRM5KWtA,0,0,0 +nBfusVbqwul0BU0Rcrlelw,2012-12-06,qm4Hqv0kgIvc1Fh61Rl19A,4,"I'm so torn on RA. (I know. I'm a brave person, getting up and going to work everyday and functioning with such a heavy load on my shoulders.) + +Really though...I feel like I should have outgrown RA by now, but I haven't. I initially went to the Tempe location back in the day when I was 18 and hated sushi (forgive me, I was young and stupid. Mostly stupid) and ate noodles every time I was forced to go there by my ex or my friends. Now I am pretty well-versed on the sushi world and eat it every chance I get. + +No, RA is not the best sushi restaurant in town. No, it is not the most authentic. But it always draws me back in. The happy hour, the drinks (Umami Punch, you are my liquid soulmate), the special rolls...I can't help myself. (""I wish I knew how to quit you""...) + +I WANT to hate RA, mostly due to the douchebags it tends to attract, at ANY of the locations (we live in 'Tukee now, so obviously we frequent this location a lot), but I still can't. We went a few weeks ago for happy hour with some friends, and it was busy (of course). No biggie, we sat at the bar and had a drink or two while waiting for our table. They told us 15-30 minutes and we realized it had been longer than that...went up to check on our spot and lo and behold, our buzzy-thingy was not working and they had skipped us on the list and because of this, have missed the happy hour cutoff. NOOO! I needed me some cheap dranks and sushi! We sat down, the waitress talked to the manager about what happened, and the manager came over and talked to us, apologized, and let us know any food we ordered (sadly not alcohol as well, but I understand why not) would still be happy hour pricing. Pretty cool, as some places would have had a pretty ""oh well"" attitude about it. + +Overall, RA is like crack, and once you've had it, you'll develop a habit you just can't kick. Pass the soft shell crab roll, please...",review,iWh7h24DpKWFtKZGl81kxg,0,1,0 +Ez2MFsVT5lJZ05yvK_0AXQ,2006-08-15,7iu_6L7pzpfgpswxzeR7sw,5,"Pita Jungle is a great place to get inexpensive Mediterranean food (as long as you don't mind a bit of a wait). + +The food usually gets served up really fast, but then your waiter leaves and -never comes back-. I'm not ususally a stickler for outstanding wait service, but I do like to get my glass refilled and be given my check in a timely manner. + +Never-the-less, the food is so good it makes up for any other flaws.",review,rPGZttaVjRoVi3GYbs62cg,0,1,0 +rbiRLiFTG098z9JaK3Nshw,2009-12-06,T80AkuQGHYsIca1hcMkYqg,5,"Been there twice now. Great servers and the owner is a sweetheart. I ate the Pechuga Asada and a pupusa Locoye(sp?) this time. The chicken was made right, great beans and rice, fresh avocado, big portions and the salsa and chips are excellent. I live two blocks from here and I need to wake the eff up and go here more.",review,wo4b_NZrBfWLoPE0c_9Qng,0,1,0 +muCl5p-9ut1sY0aKeUeRhw,2009-02-26,Hu7sSywF0olRbPAm3-GATg,4,"Kristi's review said, ""Great romantic spot to bring a date. Secures that you will be getting action later, trust me."" Well, that's good enough for me. And before the Yelp paparazzi shows up to muckrack... no I didn't take Kristi to Cheuvront's. I know better than that - I only hang with Kristi at dive bars. + +So I did take my lovely date to Cheuvronts. The decor and ambiance - think wide open and urban and dark without being too dark. It really set a mood. We ordered a bottle of wine from a fantastic list, along with a cheese plate and a pate plate. We had them select the cheeses to pair with the wine we had chosen with a few instructions as to cheese preferences. They have a selection of pates as well, and we had them choose similarly. + +The cheese plate contained three cheeses, all superb. It was served with (good!) bread, some nuts, and some dried cranberries. The two pate plate was similarly served with bread and dark, delicious mustard. The pates were fantastic - the cheese plate and pate plate seemed destined to be served together. + +The food and drink were great, the service a little spotty especially since there weren't that many people in there. I'm guessing the waitress just didn't want use to feel like she was bothering us. After taking our time to enjoy the wine, cheese, and pate, we were both feeling full with no room for even dessert. + +Overall, a great meal, my date thought it was one of the best places she had ever been to, and I'm clearly going to have to pay more attention to Kristi's reviews.",review,HZeFzs42f0iGaA-sP_hUnA,5,4,4 +Cp5_NSJFNgylD5SUdmT8nQ,2010-04-02,LuAf4axGH_j46Hb0j6emGQ,3,"A timeless classic a place with more shows than I can / care to remember. + +Seen a lot of up and coming people here as well as some pretty good regular nights as well. +Always an interesting collection of different music styles mixed in with a ton of talents of all sorta both local and elsewhere. + +Cheap drinks and plenty of pool tables. +Old school video games and of course darts +Pizza and bar food that is actually decent!",review,Akwr-Kqif-NylJ3-EUlnWQ,0,0,0 +GwSdGrvaXi4BdXNSWKn-EA,2009-01-23,jYjqxUBagtPmdHOs25SoCg,5,super great neighborhood bookstore. it's local and not owned by the man. jimmy carter will be there signing books in febuary. They have new and used book and something is always on sale. It's attached to wild flower and next to macs.,review,iD4jhROZcY4MsUXphSTfgw,2,2,0 +RQWliUrWic_b5FZEj3JThQ,2010-06-24,jP1Tccmnq2DgiUJA3KKBmA,5,I eat there about 3 times a week!! The antipasto salad and bread are addicting and can't be beat!,review,VLEicvujLbpjHO8nP2uGgA,0,1,0 +24qSrF_XOrvaHDBy-gLIQg,2012-07-12,vOTfl495sFIAmzja0E5_AQ,5,I've been coming here for years...the best. One of my favs is the lulu wings.,review,3CrMsd5tB7LW5gQUdvI_PA,0,1,0 +9OPheVf5o8sRcRHxJDl4-A,2009-03-23,u3gSlkv3TlTpo3m0ZxvsUg,3,"I want very badly to love this bar. I really do. It has all the promising combinations of qualities I look for in a local locale. + +Great beer. I have no qualms about ordering the French Canadian Hefeweizen (that I can't even pronounce, spell or at this moment recall) with one glass all to myself and lick my lips at many other brews on the menu. Add a wine list beyond belief and liquor if its your poison too. + +The proximity to my own compound and the blossoming bud that is the central Phoenix renaissance is always worth a gold star; why commute when staying local is a better option? + +The staff and owners of the Sidebar are fantastic. From my induction many months ago they sling the drinks with pride and the effort in the setup and delivery of the place doesn't go unnoticed. + +The decor is where things start to slide. Not because the place is hovel, far from it. Everything is crisp and new. From the hydraulic bar stools, to the multicolored ambient lighting to the comfy lounge couches, to the super clean bathrooms; this place is a slice of upper crust for those of us who don't normally even thing to nibble from such a decadent pie. Herein lies the problem or as my former boozing partner visiting from his new digs in Portland put it, ""I'd like to see this place with about 10 years worth of dust on it."" Not my style, but I dig it and Phoenix sure as hell needs a place like it. + +In the end I will go back and don't mind in the slightest having a place like Sidebar to show off to East Valley dwellers and Scottsdale brats, but every time I reach for the front door I pause and am sad. + +A mere few feet away lies the corpse of the beloved Emerald Lounge. A dark, seedy, dirty, smoke filled haven of locals, live music, art and personality that is now nothing but a painted over ghost. So please, support your local bar, bring your friends and keep the sidebar real. But remember to pause for a moment of silence and drink one to the ghost below your feet; us locals will thank you.",review,LsJ4Fytw1NNcR5Y_3AIOzA,1,0,1 +EC9WB-iVjd28B6R6KIZ8TA,2010-01-02,Nc4T5CUN8djNa3oLHngMgw,2,"VERY BAD SERVICE + BELOW AVERAGE SUSHI = 2 STARS. + +The 2 stars is because the quality of food is below average and not that great. The Salmon looks like its been on the plates forever and has a real slimy look. I've had way better sushi in some all you can eat places!! Basically the only good thing is the gimmick with the conveyor belt. I would advise the reader to save his/her money for a better sushi place like Kabuki. + +The next bad thing about this place is the atrocious service. They never bring you the drinks or seat you in a timely manner. God knows what the waitresses do over there...they run around as if its their first day at work and never get anything done like clear tables, get checks etc. I've been here a couple of times and I saw that the 2nd time, the patrons were not even waiting for the waitresses...they formed a line at the cashier like Denny's.",review,wV8cHyOIuZ_Z8VeG-hlBQQ,0,0,0 +me3myIgtuIgLEC5jd97uZw,2010-07-08,BB25ZzPDYHnwgd4v3Gbxig,3,"I feel like Top's has been getting angrier and more bitter over time. I called on Fourth of July just to see if they were open and they guy on the other line told me, ""Yeah and we're a madhouse. Each minute I spend on the phone with you is another body out the door,"" and hung up on me. + +I wanted to call back and tell him, ""You know, the amount of time that it took you to say that, you probably lost two bodies out there door. You could have just said, 'Yes we are!' and that would have sufficed. Instead, you had to be snarky so I'm calling you back specifically to waste your time."" + +Instead, I'm just going to Yelp about it. + +On multiple occasions coming back over the past few months, I feel like I'm tip-toeing through the house when someone's mad at me. I don't get it. There's a serious vibe of negativity going on. Specifically, the guy who acted like a fuckface over the phone has been snarky and bitchy a few times to me. + +Oh, and refrigerate your fucking beer. I'm tired of having to pop my shit in the freezer for 45 minutes cause the beer or champagne I buy is piss warm.",review,mym5tXZoZCbuPCYQzI5Ysg,1,3,5 +WS1z1OAR0tRl4FsjdTGUFQ,2010-12-20,jF-CoMuywJpnC1bGy-sbAg,5,"This place had amazing food for reasonable prices. They have tiny card games at the tables which was pretty neat too, it keeps you busy while you wait for your food. The bar was neat, and the atmosphere was ok. I did not enjoy the music, and it was too loud to ignore. The service was pretty good, but the waitress made my friends and I uncomfortable, like we shouldn't have been there. It might have just been that one particular girl, and I would still go back. Don't dress too casual...",review,wtn-JNypbM7IupJm9t40Hw,0,0,0 +jfDBaBgwINrGYAo8p2MJ4g,2010-06-25,GiuBzrMbSAe1L97v-_mRtg,4,"OK, I'm somewhat between 3 stars and 4 stars on this. I really want to like this restaurant a lot so maybe I will have to return again and try another dish. + +Positives: + +Price!!!! Wow, the prices are amazing. I got the hand pulled spicy noodle dish ($4.00), my boyfriend got the hand pulled pork noodles ($5.95) and we shared the pork dumplings ($4.95). + +The dishes provided rather generous portions (we ended up taking half of our meals to go). + +The dumplings were quite tasty (approx 8 large dumplings) + +I got the passion fruit smoothie with boba which was quite good (I love bubble tea so much and this place is pretty legit). + +The restaurant was really clean and the window to watch the noodles being made was really interesting and ingenious! + +Negatives: + +My noodle dish just really didn't have a whole lot of flavor and was not even remotely spicy for being titled 'spicy noodles.' + +All of the food was really rather greasy. The sauce for the noodles was pretty much pure oil and the dumplings/sauce were pretty oily too (but still tasty). I was just hoping for a bit of a cleaner feeling meal instead of heavy greasy food. Maybe if I try one of the soup dishes next time I will have better luck! + +The experience was overall a good one and I would like to try this place again, I was just a bit disappointed with the grease content of the foods which gave me a bit of stomach ache. Regardless, this place is worth a shot!",review,E83jZ7j07Hx-RcRiTbA_kg,0,2,0 +wzIPW_XyKc2DBWdOUM5hlQ,2012-02-27,JPDl0DIa1yToQLSrakMD0g,5,"I had a craving for Mexican- American type food, and since there is no longer a Chi-chi's around my friend suggested we go here since I was visiting the area from out of town. She is a frequent diner here, and loves it. I really enjoyed my experience as well. +I love a great Chimichanga along with re-fried beans and ordered a much needed strawberry Margareta. So lovely!!!! I enjoyed everything on my plate! + + I Loved it so much I suggested we come back my last night in town for drinks and appetizers. +We decided to order the Mini Chimi Sampler, Macayo's Famous Cheese Crisp that I ordered with ground beef (it almost looked like a cheese crisp pizza),Guacamole Dip with chips. They also offer free salsa and chips every time you arrive. +Like my friend- I would be a regular here. I know when I visit my friend that she and I will go back- at my suggestion and to her delight!",review,dW7dXceuBcQ2UgNbEmAiZQ,1,0,0 +aozcOaCMwOHG8s-lbZ6_gA,2010-08-23,Ri6CPjoiGfVxqBkdMHFV9Q,3,"I've been eating here for years off and on. I used to live close by and went often. The quality of the food started to go down and we stopped going. Then they changed owners and it's ok to eat there again. + +Flamingo Palace is just what you'd expect from a strip mall Chinese restaurant. The food is so-so and the service is pretty good. We really like the hot and sour soup and the Flamingo chicken. + +I can say that through the many, many times that I've been to Flamingo I've never had an experience that made me NOT want to come back.",review,W5fdWpuyWBhfOsd0C_qq6g,0,0,0 +WaO_hAunQrZ--vI308rHQA,2012-03-18,AbuDZvjREtVNVAQO23acEg,2,"Lets satrt with the good, The brisket was a solid 7 on a 10 point scale. +I didnt like much else about a place even though I have been wanting to try for some time. It was cold and rainy today and I really wanted some comfort food just as I was passing BE BBQ. So I stopped in and sat at the bar. From the moment I walked in and sat down The poorly trained bartender struggled with every step. It was also very obvious that the well trained staff was frustrated with him to no end. The Bartender knocked a plate of food out of one servers hand a the entrence to the kitchen, he couldnt settle a check with special instruction twice, and his amaturish drink pouring skills shined bright on this cold and cloudy day. +OK Yelpers I admit Im a 20 years restaurant veteran and maybe thats why I was so stressed out watching the goings on but he things I was seeing was like a train wreck! but I just couldnt help but watch. +On to the food, I had extreemly high expectaions about the food and I even expected the prices to be on the Scottsdale side of high. What I wasnt expecting was the tiny BBQ Brisket sandwich, and I mean like 3 bites tiny.The BBQ Sauce was so heavy with chili powder and with almost no vinager it was gritty. The fries served with the ""sadwich"" were also covered with tons of chili powder. The meat itself was tender and flavorfull and well smoked, but I was surprised that it was a cold, that was a turn off, but not as much as the small chintzy portion. +Well at least Big Earls is off my bucket list of must try restaurants, and as far as BBQ options in Scottsdale well that list is certainly shorter too.",review,y6TszIl9rQiO9vWUUJJJZQ,0,1,0 +jGldmslgIegQNM5kvb851Q,2011-01-08,5_AMdHdZQ2nvqex5j0SRkQ,4,"I usually hate chains, especially Italian ones like Olive Garden and Romanos. But I was pleasantly surprised my Maggianos. We went because we got a gift card for Christmas but we are probably going back. + +The bread and the dipping oil they start you out with is pretty good. I wish the dipping oil was just a little more seasoned though. My husband ordered the linguine and clams which he said was just ok. My stepson had the crab and shrimp cannelloni which he enjoyed. I really liked my eggplant Parmesan. It is the best egg parm I have had at a chain. The sauce is fresh tasting which huge chunks of garlic. + +One nice surprise is that our server said that my dish qualified for a free take home dish of the same category. So I ordered the gnocchi and had a nice dinner the next day.",review,Hi7VohxSS5OBt98w4j8t4A,0,0,0 +UtVMTQwKxQMJBQSlbuEqCw,2012-10-24,EHrQrsrZ5PqX_DlnZKB-Nw,2,"Strange just strange. I park here when I travel out of town. I used the valet parking once last year and don't remember any issues. Today was my second time... I dropped my car off last week. The airport shuttle was waiting for me at baggage claim when my flight landed at midnight. I went to pick up my car after a long flight as was told ""it's at the front"", the valet guy pointed and disappeared. I was left standing alone wondering if there was another side of the hotel where my car was?? I walked into the lobby and the receptionist was quick to tell me there is a balance on my account. Huh?? Number one I don't have an account at the hotel and number two I didn't stay here overnight. Again I'm standing there thinking what is going on, is he getting my mixed up with someone else? Finally he explained the parking wasn't prepaid and I needed to pay in a order to get my car. He gave me a bit of an attitude as if I was refusing to pay. Dude, it's 12:30am, I just got off a long flight & didn't realize my fiancé didn't prepay online when he set the whole thing up for me online. All this confusion could have been spared if the valet guy would have just said ""you pay at the desk"" instead of ""its at the front"" which is unclear and indirect. I think next time I go out of town ill try a different parking garage.",review,JHmO-lVrHA0njKnQnZ8qLA,0,0,0 +BdSY-BHmH0BCCv47mOOS0g,2011-08-09,ZZAoJF8Tuu7qwY8GL0pcyA,5,Great place to grab a coffee with decent prices and a great atmosphere for sitting down to do some work or catch up with a friend. Would definitely recommend!,review,SSGhIunh6uhGTFc67ILZ0g,1,0,0 +IX5FfZL4P7WGOG-xwdD4wA,2012-07-07,48QIHSZrQ2hq9PVTv_QNjg,3,"Nice park. But people need to keep an eye on aggressive dogs. My 4 month old puppy was beat up by another dog this morning. 7-7-2012 We were the first ones out there this morning, around 5:15am We were just out there walking around, This lady and her grey/ and white dog. Was walking around. Then the dog came up to us for no reason, and jumped on my puppy just started beating him up. The owner didn't even do nothing.. The dog was almost killing my puppy. I yelled at the dog tried to stop him. Then he attacted me. Bit me very bad on left hand. The owner asked me where I was going I said west valley hospital. I was very scared. She said she would meet us @ the Hosiptal. I never saw her show up.. Those kind of Aggressive or angry dogs shouldn't be allowed out there. Yea go at your own risk. But people should +not let angry or aggressive dogs out there. The owner didn't even say sorry or give me her name, nothing. Shame on her. And her aggressive dog. I hope she teaches that mean old dog some manners... Brenda Hansen... The Hosiptal visit was long. But west valley took special care of me.. Thank you Hosiptal",review,QAMNtBlBPpHwGhugOIaumA,0,1,0 +pF7uRzygyZsltbmVpjIyvw,2009-06-20,-h8KQnlgi71F1c3xj3UPnA,5,"Recently ordered Spinato's again and just had to update to 5 stars... as much as I've always loved NYPD, I have to admit that this really is the best pizza I've had in the valley. It's not fair to compare the two, as they're totally different styles, but it's just so good. And they're local. Can't beat it!",review,gOV8nHj7JIKHoBUJKHZPuw,2,2,1 +SwMqbqCLXy8XDH1rEGQ8rw,2011-02-07,KLkUcJxn16bWbbBkJ7cwFw,5,"We held a meeting planner's luncheon inviting local clients to our hotel that host regular meetings. Our theme was ""getting to the core of your meeting"" and the entire event had an apple theme. Yuri's Popcorn created a special flavor green apple for our event and it was a nice compliment to our other offerings. Our attendees absolutely loved it and were excited about all the creative and delicious offerings, including centerpieces with an arrangement of candies and popcorn beautifully arranged into a bouquet of yumminess. + +Several months ago, we hosted a lemonade stand for a client serving glasses of flavored lemonade. Yuri's created another fun flavor....lemon....that was well received by all. + +They offer the perfect gifts for clients and everything is very affordable when you're on a tight budget. + +Thank you!",review,Y_4cPHyChd9mLJktSYo5LQ,0,0,0 +6_nvD0eUrr6oN8djmJtaQQ,2012-05-19,ivrzhiTPDL9VhrrUO6Bn7g,4,"It was a hot day with great bbq! With the Yelp discount, admission was reasonable ($6) compared to the original $12 price, and there were a good number of bbq stands to try. Samples consisted mainly of pulled pork with bbq sauce, although a few stands did sell items such as hot links, rib tip, and brisket samples. I would have liked to see more stands that sold plates of food rather than samples, for those with a bigger appetite. Towards the back there were also some stands that had food and home items for sale (e.g., Cutco knives, clothing, salsa, etc.). It would also have been nice to see more items for sale that were bbq related (aprons, grills, tongs, etc.). All in all, I'm glad I went!",review,uZbTb-u-GVjTa2gtQfry5g,3,2,2 +0UZ31UTcOLRKuqPqPe-VBA,2008-04-02,2IKCbs8HL2XQyjCoC0EvOw,4,"Hey, its difficult to find anything particularly wrong with this stadium, which is especially remarkable coming from an obstinate sports fan who intends to hate before he loves. + +Immediate impressions of the stadium are that it is very well-designed and constructed with fan comfort in mind. Chase nails this aspect solidly. The concourse are rife with eating and drinking options. You literally cannot walk 10 steps without tasty, delicious stadium food beckoning your fat ass to indulge; polish dogs, ice cream, 24 oz. bottled beer; Peter fucking Piper Pizza (Mmmmmm!). The concourse also opens up brilliantly into the field of play, and one can go take a break from the seats but still have the ability to watch the action on the field. Very important feature, particularly with baseball where sitting down can become monotonous. + +The actual field of play is marvelously constructed, with modern and classic designs colliding. The dirt path from the mound to the plate is a throwback to the 30s, while the pool in the outfield adds a very unique and ""Arizona"" touch. Pretty damn cool. The classic clockface in centerfield is beautiful, and the grade of the stands are perfect for the noise to reflect off the metal structure. Now that its under new management, they are opening the roof much more, which is a HUGE plus. Many fans have been complaining about the lack of open air since the stadium opened. + +So two things that I don't like about the stadium, one ornamental, the other functional. + +First, the hokey, 90s-esque mosaic on the outfield slats. Jesus. How about an update? Its just looks so fucking bad, its almost embarrassing, and has prevented the outside of this architectural masterpiece from aging with grace. How about HUUUGE pictures of current players, or true windows to let the light in and perhaps a view of the distant skyline? This would require, of course, for PHX to actually knock down the Garage Mahal and actually build an outfield skyline. + +This leads me to problem #2, the aforementioned ""Garage Mahal"", the most deplorable, atrocious boner yet for our mentally-ill city planners and officials. What a total fucking waste to build the most useless and overly enormous parking garage that ultimately discourages people from walking through downtown before and after the game, restricted the potential for bars and restaurants to be placed there instead (fuck, they didn't even give the option for ground level retail), and mostly sits at 1% capacity on non-baseball-days. That would be 284 days of uselessness. + +Though this isn't the D-backs fault, it is a result of stadium proximity, so as a penalty, combined with those silly mosaics, it loses a star and red pigment. + +Overall, however, Chase field is the tits and will eventually be a MLB classic.",review,-F32Vl8Rk4dwsmk0f2wRIw,2,3,1 +OmJ283Un9mAbr_gc7v4N4A,2012-03-21,UTASTu3fRPyLthaAQ5Hnxg,1,"I came here at noon during spring break. When I walked in, no one was there. I rang the bell on the counter. No one came out from the back. I waited and rang the bell again. Nobody. I waited and rang the bell a third time. No one. I walked out having been unable to even find an employee much less place an order and try the food. Pathetic.",review,GE-34FoRSTKuw8OWBc4YrA,0,0,0 +Gdmig8uYu5Mdfcgn0XsT3Q,2012-02-17,84SAmhSIsNlHFn_rHmePZw,5,Friendly staff and great Americanos!,review,Pwzztdd1B8m536_C2p6zgg,0,0,0 +z1CjVXv6M6RbWhZO1lIExA,2011-10-27,yXqQqH8Vr1cmFsWif7lGBw,5,"An amazing section of light bulbs for just about anything you need. Most are in stock, reasonably priced and ready to take home. I have brought in several odd bulbs that I needed to have replaced with no markings on them - They always come through like champs. + +Take my advice and covert your old bulbs to LED - Well worth the cost for me just to not have to replace burnt out bulbs all the time - some of my lighting is very hard to get to and Halogens are so damn hot!",review,90a6z--_CUrl84aCzZyPsg,1,0,0 +enbTOcl7WNgsjsAtmhvDRA,2010-08-26,iSxZ2wCLeh738TfpVVz5Xw,3,Glorified Pei Wei,review,jMGNNb-vpLcwFikrxIlTkQ,0,0,0 +gD0k_0kKi6Zj46Wg4WzP8Q,2008-08-31,_iENJ8oDR9SLQ6aM5xSCoA,2,"So when you walk in, walk to the right and have the machine scan your card. I'm telling you this because I looked like a douchebag because I assumed that the Bally worker would scan my card. + +Oh yeah, you'll smell urine. + +Like, did someone just go crazy and piss all over the place? Seriously, how does a smell get so horrendous like that? What is that? + +There are a lot of treadmills and they're recent...not new...they look overused...but yeah. I'm sensitive to smell... I couldn't even exercise.",review,31tjiU793jocP_DKwn1V8A,0,0,4 +yVQiGdxmnrkJDyQXv2maNA,2010-08-26,vEp6Fu9SYHKmpJcHTT1SKA,4,"I order the same thing at every Vietnamese restaurant. Rice Vermicelli Bun with Grilled Pork and Egg Roll, and spring rolls. This order does not change. Ever. + +They do the pork here more like a pork patty, or meatloaf if you will. In Vietnamese cuisine, there are two different ways to do it, the other being grilled slices of pork. I don't know which I prefer as they are very very different. + +You get a large amount of noodles, very fresh vegetables, and a generous portion of meat. The sauce is tasty, and everything seems very high quality. Spring rolls are good, as is the peanut sauce they serve them with. The service could be worse, but not much. It's pretty horrendous. Atmosphere is typical of a Vietnamese restaurant, total dive.",review,JgDkCER12uiv4lbpmkZ9VA,0,2,1 +zp713qNhx8d9KCJJnrw1xA,2010-05-20,xiQFTr-DwzNqvkLcsbpWUQ,5,"Been twice. Authentic, high quality & great price for what you get. Salsa de Chile de Arbol was the best!! Loved the decor. Orchata tasted fresh, which is a rarity in most Mexican Restaurants.",review,IpCH-jaFA-1YgCdi6YmnFg,0,0,0 +TTjdeeMfTw9s9vg4T1a3pw,2009-06-13,NQhqeF7j8P-uWLsVjcwRRw,4,"Lash Extensions by Cher here are AMAZING + +_Affordable. +_She listens to your every wish for the final product. +_Very friendly. +_Accommodating evening appointments. +_Reasonable amount of time to complete. +_She is pretty busy so make appt in advance. + +I wouldn't go anywhere but here for lash extensions! +Cher is the greatest =) +aaand no I am absolutely NOT Cher haha just one of her very satisfied customers.",review,R1ZoIgMxusX4kvDiHHzisw,1,1,0 +JxVGJ9Nly2FFIs_WpJvkug,2011-12-01,ZEI1OHOntJqtEn4AbL9pSQ,2,"I was very disappointed my last experience at Sauce. I ordered a spinach and apple salad with chicken. I think the apples were from a few days ago wtih no taste and the shredded chicken must have been in the freezer and put on the salad. +The kids however did enjoy their mac and cheese. +The salad was terrible!",review,2yADbgjdAsKjDQMgmn49XQ,0,0,0 +yKbXWo_6VlS3mD_RcPquog,2009-08-25,2LIxNbpGl--S1u2sywq90g,3,"You are seeing a continuing trend here. When it first opened it was a 5 star place but since then the pizza has been inconsistent and going down hill. The last pizza I ordered, the crust was soggy and it had too much yeast. The cheese was also too rubbery and tasteless. + +I grew up watching 90210 like many of us ""old folks."" They had the Peach Pit. Do you remember that place. Well Jimmy and Joes is the pizza version of the Peach Pit. Yes, me and my 30's felt age inappropriate when I arrived. And I immediately felt like I was in high school again when I went to grab a tiny ketchup cup to grab some wing sauce and they said it was 60 cents. Another person walked in and they gave him a hard time because he didn't have his coupon on him even though he read the coupon code over the phone. It had that high school vibe..you know the one I'm talking about the...""I owe you 3 dollars and I'll pay you back tomorrow."" vibe. That vibe is felt when you park there. There is limited parking as it is and whatever parking they have, there are signs that limit you to 20 minutes parking almost implying they don't want you to eat there. I was too afraid to take napkins because I'm sure it had some price or limitation attached just like everything else there. + +I've eaten here several times and I've reached this conclusion: eat at the place but don't pick up pizza here. JJ specializes in the one slice and drink. Their short slices are done well and if you don't eat it hot when it comes right out of the oven, it loses it's flavor fast. I've picked up pizza and it's almost like two different pizzas. When I picked it up, the cheese was exrtremely rubbery and the crust was so chewy like steak. This is a great place for a short lunch or a business lunch but I wouldn't order several pies if I was hosting a Superbowl party or had people over.",review,jQxxHLXLbFsNYNWNdSjRKQ,1,3,1 +0le8kj4gIHe9aZ1NfS2_Ag,2011-02-19,zRSIHgqLIOqbxUn7g6vRAA,2,Very slow service. Food is typical for BK.,review,JiIb7xzIAmFODMQ0i4I1QA,0,0,0 +0iDFiC3ThklulFzSlJqaOw,2010-11-20,cZMdMiD74jtqcLWLJ9kPEA,5,"Well I have been looking for a good barber and I have just found him. Like many other of the reviews it is very hard to find a good barber and if your looking for one go here and see Phil. I saw the other reviews on yelp and thought I would try him out. I went and got a haircut wash and an honest to goodness hot foam straight shave (hard to find now days) and it all came out wonderful. I thought the prices were in line for the area and maybe cheap for the service. 32.00 for all the services, I think it is 17 for just a haircut. I recommend anyone to go see him if you need a good cut or shave.",review,SveiOSU6AHrjAY5cbewRvg,0,0,0 +X7FAAKkwOwaUUpR8QPChyw,2009-03-29,Orcxno3LxwHIZ1l5izWXhA,4,"Great place, great food, great environment .",review,1kDUQZY0FQ6qyCSTR3hGpg,1,1,0 +RFeDe3fNr14kvUKlVx6_4w,2010-06-15,G2OVqZAkNl5OBrzeTrX8hA,4,"This was the first Thai I have had and it did not disappoint. + +I went to Mint Thai with my in-laws, who love the place, so I had high expectations. It's a nice restaurant, with ample seating, and a good atmosphere. The menu can be a little intimidating. Each dish is numbered, named, and has a description, and there are something like 70+ dishes to choose from, plus spiciness options, so it can be kind of hard especially for a newbie. + +I picked something in the 60s with chicken and red curry. It was really delicious, with unique flavors and a good spiciness. My only difficulty was that my food was basically swimming in the sauce. I ended up packing some up to take home, and ended up with a plate still full of sauce. + +Other than that, this place was delicious. If only it weren't so far away, so I could try more of their options.",review,Qz_WQ6blpBBSaEwsofbB_w,0,1,0 +RtwOc-n_RkiUuDGaNfCsNw,2010-11-16,4DjLBAUUvYcSdP8uPcMeug,4,"Nothing about it was good for me, but everything about it was good! My friends have been raving about Forefather's for the past year and despite working less than a mile away I hadn't tried it. Being a vegetarian I figured there would be nothing for me to eat. I was wrong, they have a nice salad menu (that can be modified) and their tomato soup and grilled cheese is fantastic! I wanted to try the sweet potato fries, but couldn't possibly put one more thing in my stomach. The place is nothing fancy, order your food at the counter, and pick it up at the counter, but the service was still great. I'll definitely be back next time I'm in the mood for some greasy comfort food.",review,Zwtx7FLZcK5F2P0-Tz8mHg,1,1,1 +-_npP9XdyzILAjtFfX8UAQ,2011-08-29,B1XZotQ3xRyXAKgpoSIm-g,4,"I'm tired of trekking to the east valley for Lee's Sandwiches. + +Thao's hit the spot. The marinade for their grilled pork is excellent, very flavorful. I was surprised to see that they are a full service restaurant, offering pho and a variety of plated meals too.",review,HfNSOBGT7payhKfl998BzQ,0,1,0 +yMUVflS-2SnOGafXmdHy6w,2009-03-12,GoPGEun04Nfv4vj_oILJqQ,5,"After a night of debauchery with friends, my friend and I found ourselves craving a comforting bowl of Pho. I've been a regular at Cyclo's for quite sometime but decided to branch out and try something new. I was pleasantly surprised with Pho Ao Sen! I am always happy when I enter an Asian restaurant and see Asians patrons...probably sounds a little weird but to me it speaks volumes. The tranquil aesthetics of this quaint cafe made us feel welcomed and relaxed. The decor had a modern Asian feel: minimalistic organic zen with soft ambient music playing - perfect for a Sunday afternoon. + +We ordered the Pho Dac Biet Bo Vien- House PHO'nomenal (House special combination of *sliced eye round steak, well-done brisket, well-done flank, soft tendon, tripe, and beef meatball) and the Pho Tai (Sliced eye round steak) and Goi Cuon- Spring Rolls. As with most Vietnamese restaurants the portion size of Pho is quite large and we could have shared. Both were delicious, filling, and had a nice aroma but nothing too overpowering. I've experienced a few places that use a little too much anise, so much that you can't get an overall sense of all the delightful herbs and spices used in this delicious creation. The Spring Rolls had a very fresh crisp flavor and were the perfect accompaniment to the Pho. + +I give Pho Ao Sen 5 stars! Best Pho I've had in the valley, beautiful atmosphere and friendly staff makes me one happy girl! :)",review,UgttlReSB8g9YF3URK8BPw,2,3,1 +3DCjixw25ebL2_sAvNUBUg,2010-01-11,XLoy0elbJ0tbApBfBNaXYQ,4,"Great China chinese restaurant and super buffet there is no the in the name.But there is some good food inside the place.the decor is average and are booth was comfy but well worn.The buffet had about 80 items ,about the super buffet requirement.They had a small sushi section and the sushi was very tasty.The wonton soup i had was very hot and good it had most of your typical trays with a couple of different twists on some like the stuffed clams were huge and and they had some good sole,that thet called snow fish?When i left this place i was stuffed and everything i ate was good.So yes Great China gets 4 stars.And for Norm R. they got the almond cookie packages",review,ohRev2g3tvXpV3gBnhC-og,2,2,1 +Lx4ZFP6dIMzi7Ib-ljV-ww,2008-02-21,9SFRJk6btO9J-jLeYnDBnw,4,"I love Los Favoritos! Mi favorito is the chorizo breakfast burrito (most popular item there?). Interestingly enough, I think it's bigger if you order it for dinner than for breakfast, but for either it's plenty big! Muy rico with salsa verde. I'm embarrassed to say that I've only had a few of other things on the menu (quesadilla and other burritos), but they've all been delish! For some reason, though, I just get my mouth set on chorizo burrito. It's seductive. +The folks there are very nice and sincere, and they know English well enough, although I think some are working on it. +Tip: You can order ahead! Especially helpful if you're going during the lunch rush, when it seems like every kid from Seton H.S. is there. it's pretty nice to breeze in and pay and grab your stuff when there's a gaggle of folks still waiting for their order to be called. +Tip 2: If you don't order ahead, you can place your order there and then go across the courtyard to Starbucks to grab a coffee (that probably costs more than what you got at Los Fav's) while you wait for your food, if you're so inclined. This is a bad habit you might not want to get into. Believe me!",review,yGzrkjrjRI9TRdjAAMc5dQ,1,1,0 +xNmhVSujLo1kC9cgjOE-sw,2012-11-15,93j5nG44gNVFi7ZHbqUuNg,5,"Consistent with the east coast stores, great flavor selection, friendly and accommodating staff. +The regular size doesn't look big but it is plenty for the price, not to mention the staff consistently fills above the top the cup on all products. +A much better value than Cold Stone, Baskin Robbins, and self serve froyo.",review,CWi2e0K7UjDZkIpFxo18Ug,0,0,0 +a9Wk44qJLWoJQT-_H8MB-w,2012-02-08,OUuNSWiMSBl5zFJdo06kVw,4,"Nice little wine bar. I enjoyed a flight of whites and one of their specialty salads for lunch. Pretty tasty. The food won't win any culinary rewards, but it is good and the ingredients seem fresh. Minor niggle, they only seem to have high-top seating... when all I want to do is curl up in a booth and drink myself silly, this can be a problem.",review,2FtCOwNwd6UsBgScSc1_Ug,1,2,0 +WIDZSGjX4GGKIp1nZoHepg,2011-02-28,5yqrmHhUQzb_d22HrslTHA,5,"I can't say enough wonderful things about this branch! The manager is fantastic, the other employees are happy, enthusiastic, and efficient. Not to mention that everyone there has impeccable manners and they treat their customers as customers deserve to be treated! Go to this branch, you'll understand what I mean!",review,XpSZrY_Ym8GGx7SNEd0q9g,0,0,0 +rr13jM6SUmfPPPGHHMHCgQ,2009-09-06,HUEWTzsGmoxxjR-gPq9fTw,2,"So, I say to myself, ""half price sushi for lunch? Oh yeah! You betcha!"" well, even at half price, it's tough for me to get excited about thus place. + +There's no real creativity (except for the disco balls during ""happy birthday"", seriously, uh yes) and it's fairly generic fare. The 2 stars are really for the fact the service was Johnny on the spot for edamame, miso and salad. The main fare though, just plain lacking. You're better off heading a mile or 2 down Ray over to Ra.",review,188v8fiXebMrsPAB4PJ_PQ,1,1,0 +Zx8_4zKdDBSO3qGrkukBIA,2012-02-18,9s6tEorM4qvhaHFjVDxeaQ,4,"Every time I head to Phoenix, I have to head to Chino Bandido. The food is in large portions and very filling! It is interesting how Mexican and Chinese food come together but it seems to work as this place was packed. I ordered the vegetarian quesadillas and it was loaded in raw veggies but I would have liked to remove the cheese and I was not sure if I could because it was so packed in there! + +Try the food out, you will not be disappointed.",review,v6RtrOvdoMjwLYWyieeFNw,0,0,0 +TisnIBR2lMvT1DMC95_eHg,2012-03-21,IOjAUnSJ0ZS6WDgq63l7sw,4,"Stumbled into this place while vacationing in Scottsdale for Spring Training. I was suffering from one of those hangovers that makes you feel your pulse in your dome. My buddy(who was campaigning for breakfast at Taco Bell..who does that?) was driving like a kamikaze pilot and responded to the vehicle full of people pointing towards Paradise and grunting uggghhh. While walking up to the door an odd brown dribble stain was pointing us towards the entrance. Didn't know what to make of this. Also wasn't sure if it was from my friends who had plodded in ahead of me. Once entering this fine establishment my not-so-working-correct brain couldn't comprehend the two different counters. Also confusing was the two menus. Being told what was going on by a nice gal behind the counter didn't help much since English was definitely my second language at this point in time. After just pointing at what I needed I was ushered along to the cash register. I got my number sat with my group and waited.....and waited......and waited. As more time passed I began to ponder what the actual construction and building time for a croissant sandwich was. Also helping was my wife reminding me of every person that got there food ahead of me. We were asked how are food was a couple of times so I figure they could sense my frustration as to not having it. Then my glorious croissant sandwich was brought to me. It tasted absolutely magnificent. I could have died right then and been happy. To make up for this delay the manager brought us THREE boxes of cookies. I didn't catch her name, but damn if she didn't pass customer relations 101. Tossing me a free OJ would've been sufficient, but to give this wild pack of drunken animals munchies for the weekend went above and beyond. I will definitely crawl back in the next time I visit Scottsdale.",review,vMDrP3b5PZFZLmRLrJrGYw,0,0,2 +podj1OWSL3oEJsOpGj8SUw,2011-04-16,XXr1_UvBr7EuKbarVdZ7nw,5,Had the meat pizza last night and it was truly one of the best pizzas I've had in a long time. The owner is always very welcoming and warm hearted!,review,bpfxmW8wK5aWY61c_5E77Q,0,1,0 +tTOWEYkyIZdwVEoXDmpm2w,2008-02-08,9QI-LfxIKIZ28FJ-2Gnnlg,1,"what can I say about Glam... well, i really, really despise it. Every time I go there, I regret the decision. And in my grandiose style, I'm going to say why in a list: + +1) Cash only!! But listen to this, the bartender will take your debit card, charge you a fee, and give you cash, which you can then use to buy drinks from the same bartender that just did the whole transaction. WHY???? + +2) The location kinda blows. It's in a weird strip mall across from another strip mall. Have you ever driven by there in the day time? It's shady then, imagine at night time. + +3) too hipster. I feel like I am not allowed there as I work for the man, do not wear black leggings, or have razor cut bangs. I, in my mall clothing and ""mainstream"" style, stick out like a sore thumb. + +4) The music is just a little off.... ii dunno how to say what I am thinking, it's just off. + +Okay, the floor is fancy. That's about it. + +(sorry, I'm a bar snob and Glam deserves my wrath)",review,bK6v8n3zyycr7Eo0-PHJlg,3,6,6 +aRkYtXfmEKYG-eTDf_qUsw,2011-05-04,Zn_VrwXE4OcYPwd1HdWg5A,1,"Very loud, crowded and quite unpleasant. I felt very cramped and the environment was very uncomfortable.",review,oYiskdGb0XYT2NjRb-s_qg,0,1,0 +gvSB2TlcxAOs_ppZ44iirg,2012-09-21,v-zFGwZIT38cSi5R55PVSw,2,"This place screams, ""NO""! + +Indoor seating? No. I ate outside in the heat. + +Water? No. I asked for a cup of water with my meal and was told they only have bottled water and soda for sale. + +Straws? No. I walked to Safeway to get a gatorade and they don't even have a straw for me to use. + +Can I use the Now Groupon for a 14"" pizza? No. Only good for the 12"". The groupon wasn't clear and the cashier didn't tell me that until after I ordered and bought the Groupon, which I told him about when I walked in the door. + +To add insult to injury, all toppings cost extra. some are $1.90 each. Plan to spend a lot of money and be underwhelmed with mediocre pizza if you don't head the warnings posted here.",review,fcN4Ia18HJRQkHTzKuWi6w,0,1,0 +3p78HMBZjl8ZiLo_MM3Rzg,2012-03-22,TjdrWTs4Urn3soY-GaWf5w,5,"Great tire shop. I brought in my car because I kept losing air in a tire, they found a nail, removed it and patched the tire in 10 minutes flat. Very nice people, and very fair prices.",review,-YLtOLwOh1_xxxBnGtuvNg,0,0,0 +LdI-fcJDXGE7ns_jwWY2ow,2007-06-26,iRyy3qunWudCYL9Kz1Fmlg,5,"Spotted Donkey Cantina is amazing! They have delicious Mexican food, and fantastic margaritas to wash everything down with. You do have to pay for chips and salsa here, so there probably won't be any of that four bowl snacking before your main entree's come, but the medley of salsa's it comes with make it all worth it. + +I've tried quite a few of the dishes here, and they've all been excellent. In no particular order are my favorites: +cheddar enchilada's with hatch chiles and rice...spicy! +santa fe macaroni and cheese...again- spicy! +cod and shrimp tostada's- delicious! +shrimp fajitas +shrimp tacos + +And for dessert: +fried banana wraps or the mango margarita sundae!""",review,0CMz8YaO3f8xu4KqQgKb9Q,5,4,1 +3l72FflaaeI0tWEAWN3-gQ,2012-02-12,i4036CvFbar5Y5fdrDJBSA,5,"Always consistent. Great service, great carne asada and a pleasant patio on a beautiful day.",review,zcSzK5KQmnsyg0umeezTYg,0,0,0 +dipzJ5BExpm6BtJ91mXd4Q,2011-12-10,Xgazapi1MWikFK-ZHF-L0g,4,"Ahh, the crave. Having grown up Vietnamese, I consider myself something of an expert on Vietnamese cuisine. So I've had great (of course, my grandmother's and mother's food is 5 star), and I've had horrible. Pho Van (putting accents on the vowels is difficult with an American keyboard, so I'm not going to bother) falls in the middle--not my favorite, but not too bad. + +We started with appetizers. Cha gio, which is a pork filled roll in a won ton wrapper, was okay. It tasted not so fresh, but had good filling, and the Nuoc Mam (a fish sauce used to flavor) was okay. My wife and I had Goi Cuon, which is a shrimp and pork, with vermicelli noodle rolled in a rice paper wrapper, was pretty good. This is dipped in a peanut sauce. + +I had the basic Pho Tai. This is a soup, typically pre-prepared by putting cooked rice vermicelli noodles at the bottom of a bowl, and then very thinly sliced beef, and then hot Pho broth poured over the soup to essentially reconstitute the noodles and cook the beef. The secret to Pho is really the broth. Typically, this needs to stand on its own to make a good judgement. It does--it was flavorful, tasted fresh, and had a very rich flavor. I was pleased. For my own purposes, I do add Hoisin Sauce and Srirachi Hot Sauce. Having eaten here once before, I knew I wouldn't be disappointed. The only criticism I would have of this Pho is that there's not enough of it. The standard bowl did not have much in the way of noodles or beef. For $8, I was hoping for more food. + +The rest of my family members had Bun Thit Nuong Cha Gio. This is a traditional dish with rice vermicelli noodles, barbecued pork, and cha gio, over which you pour Nuoc Mam. There is a bed of fresh vegetables. This is what I typically think of when I think of Asian Salad--it's bean sprouts, lettuce, mint, and cucumber. The barbecued pork tasted quite good as did the Cha Gio, once again. I found this food quite good as well. + +The restaurant was very clean, relatively quiet. There's a very pretty fish tank. The decor was very nice. The staff was attentive, and service was quick. I note though that it was 5:30pm on a Friday, and the restaurant was unbusy. The Nuoc Mam smelled very funny to me though--I'm used to the smell of this food additive, and this one smelled quite odd to me. We are talking about something called ""fish sauce"" though, so I'm sure there are variants. It tasted fine so no worries. Staff needs to use cleaner towels when they wipe the tables as it does leave its own smell as well.",review,4pi5L3KDxNiYLMQG7rTkdw,0,4,0 +iyTQbU_XdznZ48AzeQfbdg,2011-09-24,1weJge2eJmR97srLi-EhTw,4,"VERY nice. The owner supports soldiers; we used a USO voucher here for a quick last-minute getaway before my husband deployed. The rooms are very clean and seem really updated. The staff is extremely nice and helpful, and the breakfast is pretty good. It's also RIGHT next to Ikea, can't go wrong there!",review,mz76QextIDVa2alekV8xcQ,0,1,0 +IK8ID-Dq7LZsPppx4sKLhg,2010-02-14,J2GbiIGX7KcU-VNA1c9uYA,4,"Again, I'm trying to mix things up again on my end, and since Gold Bar was packed with no seating, I decided to go elsewhere and get my internet and coffee on. This place is a little out of the way for me, but they offer free wifi, have great hours and serve donuts!!!!! Hooray for donuts! + +The place is small. Counter seating only and its limited. Parking is adaquet, and considering its a Sunday afternoon, an open seat is always a sight to see. + +Service here is fine, and their donut selection is decent considering how late in the day it is for these guys. I don't go to Dunkin Donuts often, but thier always there when I need them. I love the free wifi too! hooray! + +The one downside to this whole thing?? ITS FREEZING IN HERE. I feel like I'm in a morgue its so dam cold. + +Anyways, I will be back!!",review,JffajLV-Dnn-eGYgdXDxFg,2,5,1 +yJr24Yy1K6bt2G9fX3_zPA,2012-10-05,bQedwDbtiXqTMt_hTAt8zg,5,"I had a really great experience at the Havana Cafe.. Everybody there was super nice and the service was great... I don't think our water glasses ever got to less than 1/2 full. The food was excellent. Price-wise it was a little more than we expected, but totally worth it. The sangria and drinks were kind of pricey, but ah well. Overall a very good experience- we will be back!",review,EIQ8gPTx5L-zXPlYDwWGeg,0,0,0 +mH-OXF1ilnaPC2kry9Ox1g,2012-02-15,GC39RGV36uGhk0yDKb7v0Q,4,"Stayed here on Feb 10/11/12 was over all good experience. +Was judging horse show, so, hours a bit strange. Desk staff very polite & helpful. Due to injury, used small suite w/disabled capacity $10 more. Very comfortable, good bed/pillows/amenities. Clock radio wouldn't allow wake up. Lots of TV channels. Following afternoon, was shy coffee, shampoo, soap, etc., went to desk & resolved(housekeeping problem). +Breakfast was OK on first day-not really different than most good hotels. Second day, Biscuits & gravy good. Lady taking care of breakfast room OUTSTANDING. +If this hotel wants to host horse show folks, they might consider animals, and taking a security deposit. As a judge, I do not bring animals. In normal travel I do. +Would certainly come here again.",review,MhWBj3oDg4DevVEpUeqTaw,0,0,0 +VVPVg9aJzNczTgeM36TGJw,2009-09-07,sMLSwQ9cbz7pQGqnI9uApQ,1,"I enjoy falafels and my boyfriend really likes Gyros. So, when we received a coupon for Daphne's Greek Café we were jazzed to go check it out. + +What I noticed right away is it has kind of a fast-food sort of feel to it and I thought, OK, its catering to people on their lunch breaks. However, the food itself is like Greek fast food for people who have never had anywhere near really Greek food before and so they wouldn't know any better. + +The plates are astatically pleasing with everything arranged nice and neat. This amounted to zilch to me. When I got to eat, I want plenty of food and I want quality as appropriately expected from the type of establishment I am eating at. + +At Daphne's you get a few little thin slices of what may or may not be real gyro meat. The falafel meat is little over fried disks. That's right disks. Not balls of falafel meat where the outside is slightly crunchy and the inside is meaty and moist. The pita bread is not. It's just some flat bread cut into little triangles. The tzatziki sauce is ... what the heck is this stuff in this little 1 inch paper cup? The vegetables were fresh. + +There is more to complain about with this place, but you get the picture. I'm thinking that anyone who likes it here just doesn't know what real Greek food is like.",review,yH0ch7w37Y29QBqsSCMFbw,0,0,0 +Mng1FUcW-xRSdsDkowQm2Q,2007-09-17,SV3tciZCCvGa6N-LVnZ5VA,5,"Gourmet markets, to me, are like candy shops to a sugar freak. ""Hello, my name is Thomas. And I am a FoodAholic."" There I said it. Do you feel better. Huh? Oh. Sorry. Didn't mean to get so defensive. But how can you defend AJ's? How? How I ask you? Ok, so it's REALLY expensive. And, yes, they should provide a blood donor center at the entrance to give cash on the spot for shoppers plasma. I HATE huge markets. Fry's too big. Safeway just right. AJ's just right and then some. The produce section is perfection. Not mounds and mounds of produce you know is wrinkling and rotting more than Bea Arthur in season 6 of the Golden Girls. Cute little baskets hold just enough fruit and veggies to select from and not too much where you know it's all riddled with germs and spiddle. The meats and cheeses? Oh, my! The filet (at a whopping $34.99 a pound) is worth every bite. Of course it'll be a year or so when I would pay that much again. Hello? Blood donation station idea! The ready made food is dee lish...curry chicken salad and brocolli delight to name two. Yes, it' s called brocolli delight. My gay ass did not name it. I would have called it beautiful broccoli. Just rolls off the tongue better. I've never had a cart wobble...see Fry's review...they ride smooth and apparently are good for the enviornment. Flowers, baked goods, dishes....AJ's. It's here. I'm queer. Get used to it.",review,C8ZTiwa7qWoPSMIivTeSfw,14,13,18 +NLek5KCyuf9HHIMFJDEf_g,2011-09-19,whWEjonHdYC0VTPRWXRDIw,4,"If you need fake nunchuks, old china, random golf clubs, and a great selection of clothes to sort through, then this is your savers.",review,PAU2oAdPnEiYsCASNkel8g,0,1,0 +JhupPnWfNlMJivnWB5druA,2012-06-25,ob34u8KC1_omPQRIg-2fDw,4,"AZ 88 was a great experience all around. It's a fun, hip and hopping place. They have an excellent bar selection, and although all I can only personally speak for is the to-die-for burgundy burger, there were four us and everyone was raving about their meals.",review,gqxJR_3_NkNypzS678QPuQ,0,0,0 +452qcsoV-d55n0V7Osh50A,2010-08-29,197r0HvEBKF_D2qwLHarxQ,4,"I go there once a month or so with friends. Yeh, people watching is the best. I like to dance too, and I don't care if people think I'm horrible. I'm usually laughing and having fun. And that's the point, right? + +When you get tired of one room, go to the other. It's fun.",review,4vECjx1eQSWCHfM3ZSbrNA,0,0,1 +ntN85eu27C04nwyPa8IHtw,2010-07-07,DL4O55L68FT2UAv5vgDW5Q,5,"This place is fantastic. + +About the restaurant itself. It's right by downtown Phoenix, and in fact right next to a Light Rail stop--so keep this in mind, parking is metered and sometimes hard to come by easily, if you live by a light rail this may be the smarter option. The place is seriously tiny, only about 6-8 groups of people can be seated at one time. A slight drawback is that there is limited outdoor seating, which, given the predictably large lines even on weekdays, is a problem. The Phoenix sun will make a 45 minute wait seem like an hour and a half wait. + +Now about the service. I've always had a good experience with the people who work here. The first time I came here, apparently one of the owners saw that I looked lost, because she came out and very kindly explained how people are seated, where I can go to get coffee in the meantime. She even suggested I leave my cell phone number and she'll call me when my seat is ready, in case I'm shopping for example. The waitresses always serve us quickly and never leave us hanging, and they're always smiling, which for some reason makes the experience so much better. + +Now for the best part. I swear, they put crack in their food, because although their breakfast options are simple, they are out of this world. The first time I came here I got the waffles. Perhaps it's because they use REAL maple syrup, or all of the ingredients are organic and locally grown, but they make the best waffles I've ever had. I don't even know how one makes a good waffle really, it seems pretty formulaic, but it's stellar. I ordered it with bacon, which was also wonderful--the bacon used was the good stuff, not the excessively fatty bacon you buy at the supermarket. Every bite is spectacular, and when you're done, you're full, but not the kind of full you'll often get at breakfast joints where you think you're going to explode or take a nap--full, but refreshed. + +The second time I came I got the pancakes. Not the best pancake I've ever had, but still, superb and the real maple syrup just sends it through the roof. The third time I went I got the waffle again (see above). + +Before I came here, I was excited about leaving Phoenix for New York due to the incredible array of dining options you get in that city. Now I'm worried there won't be anything as good!",review,Iv7fQNT5LrrJcDx8AbNkXA,0,2,0 +qjmCVYkwP-HDa35jwYucbQ,2009-11-26,-uo2Ijn9Uxi-cAQUS4sYEw,5,"I will continue to give this place five stars for so many reasons. First, the menu is very creative, and offers a great variety of healthy food, with an Asian twist. This time I had the shrimp curry, which had lots of fresh vegetables, and instead of a heavy cream curry, it was a much healthier broth curry. We had the edamame dumplings again, which were as good as I remembered. It was kind of cool to see Dr. Weil eating there last night. It's good to know that he likes the place enough to dine there.",review,Bc2UjSePEGvqSdHvz2HKGA,1,1,0 +tigIXsvKMb4xCiZP56oSPQ,2012-07-24,yVbZt8owdkeBpYh978MmTw,5,"We used the taco cart for my 30th birthday this past weekend and we came away very impressed. Eduardo was the guy that came to our fiesta, and he was incredible. When he arrived, we experienced a haboob and he immediately stepped in and helped bring in our decorations and furniture. He waited about 30 minutes until serving because we were unsure if the haboob was going to attack again. My wife and I are both in the restaurant biz and so were many of the guests, we all came away impressed with the food quality. Next time we throw a party, we will use them again! Make sure to get the el pastor and carnitas. Great job Hector & Eduardo.",review,H77zOFVd2Jb4pGrNZ5CLTA,0,1,0 +7tTK3VPlFtBGBHm8-LZIUg,2012-07-10,CG09Mfp-FSWLegNFCwq_EA,5,"I came to Timo for my birthday last week after hearing rave reviews about it from a few friends of mine. I met up with the fabulous Jennifer T. and I was so happy to check this place out! + +I like any place that I get to walk in through a back door. I passed through the very chill looking patio area first, another plus in my book. Plenty of outdoor seating that looked dangerously inviting once this hot hot heat cools off. Inside was intimate, but with the large windows, it wasn't dark and depressing. Like your own little happy wine bar world. + +They have an amazing wood burning oven. Normally, that itself is plenty good enough, but then there's the food that comes out of that wonderful oven. I only tried the spinach and artichoke dip, which was the best I have ever had! It didn't have a pool of oil (first time for everything!), it was so fresh, and I really appreciated seeing the bread sliced fresh right in front of us, since we were sitting at the bar. I saw several other things (flatbread) come out of that oven, and I will have to go back to try them! Everything smelled delicious and was presented with a touch of class without being pretentious. I was also very intrigued by the eggplant dip which is apparently ""better than baba!"" + +Now for the drinks. Holy cow. I've been drinking a few years now, so safe to say, I've tried many, many drinks. Or so I thought. Coconut mojito anyone!? Made with Ciroc Coconut vodka! As tasty as mojitos are, I don't get a long well with rum, so vodka was a pleasant surprise, and the coconut just brought the mmmmmazing factor to a whole new level. I also tried the white sangria, another 5 stars. Great wine list too- Apothic Red is one of a few reds I like, and they have it! + +The staff was top notch as well. I arrived shortly before a shift change, and both bartenders were personable and hard working, and truly seemed to enjoy what they were doing. I'm pretty bad with names unfortunately, or I would love to mention them. + +I can't wait to go back! For drinks and food! I think I'd even go alone for lunch if I didn't have any company!",review,zfysCL-0uQNCWdGvzZ6QWA,3,7,0 +ImVx220_Pcp2iB5uworODw,2012-01-25,IGCVnArVT0zFDZvJqasjHw,4,"Good pizza, nice place & the owner was very accommodating. I'm a fan.",review,_X1zedRYJt_pf7fosmForA,0,1,0 +5VMajxduxfLPSyQkVFKESg,2011-04-01,hAadea0-D3qRGrsLIhHfvw,5,"Joe's is truly a special place!! What makes this place so awesome is that you literally feel like you stepped back into an American farmhouse situated somewhere in the 1940's. The employees are fully compitent in their abilities and they seem happy to work there. They have homemade root beer, which is very tasty and leaves a smooth and flavorful aftertaste. They also serve Barq's Red Cream soda from tap, which is impossible to find anywhere in the southwest. The outdoor dining area has benches in a picnic style setting, while the indoor dining area features a vintage John Deere tractor as the center piece. The side dishes are kind of small (one scoop), so you might want to opt for and extra side...the mac and cheese rocks!! I also recommend getting cornbread or lemon cake for desert!!",review,SMAiS6Am92JmV8EvxQtPvg,0,1,0 +hW0Ne_HTHEAgGF1rAdmR-g,2011-01-29,rIgBv_LEXYcFRZf0NQcKKw,3,"In the age old debate of length v. girth, Sky Harbor is clearly a proponent of length. I swear this airport is three miles long. And if you have a connection... well, good luck running across the entire airport from people mover to people mover. It's one long, long, long, long, line of hallways and people movers. + +Over and over and over and over again. But... they've got free wifi! ...oh, that only works about 60% of the time. Well, it'll do. They do have clean-ish bathrooms and loads of options as far as airport eateries go. + +But if you take one thing away from this review, let it be this: Length isn't always the answer.",review,J3rNWRLRuZJ_0xsJalIhlA,16,19,24 +35uDzLpJlbSztgkJLtg1kw,2011-03-28,WRyP_t2QX3x4ndCDDLaMAw,4,"we come here about once a week. the soup in a bread bowl is yummy- i usually get a wildflower salad with the pesto vinegarette, which is amazing! their grain mustard is also amazing and the service is usually very good. the clientele can be interesting so it is a good place to people watch :)",review,x0r-IamYgKMgF3v7tJ_PTg,0,0,0 +YTR7zYN7F-zP98sqFTS2-g,2011-01-07,pBa7hN_C_5djBh8ms0L_xw,4,"I'm a loyal patron of Steve's Krazy Subs, so i don't want to get involved in a family rivalry. However, sandwiches are my business and they deserve a fair critique regardless. At first approach, Neds is much more of a professional looking sub shop. Nice large dining area, clean, fancy tables (*more on those in a minute) I was glad to see that Neds had the same lunch special...8 in poorboy, chips and drink.$1 more at Neds, but you get bigger chips. Tasted exactly the same, so tough to compare. My only complaint is the booths. Probably great if you are 6'5, but for common folk, pretty uncomfy.",review,IVb9YMopuGyt5jJ7rjwoqg,0,0,0 +FY_OXEVcewAQFZuu6fynLA,2012-09-26,Jel_o_ypKLWPk1hfbUty-g,2,"I judge a soul food place by its fried chicken, a donut shop by its old fashioned, an ice cream place by its vanilla, and a Greek place by it's gyros. The gyros here are bland and wholly unspectacular - and sourced from the same frozen food purveyor (Sysco?) as every other gyro stop in Phoenix. The cloyingly thick pita didn't help either. + +I don't know why it is so challenging to find a legitimate rotating spit gyro in this town - but it is. Especially near downtown Phoenix. + +Recommendations welcome.",review,e0Rls_7QxkVcFJtUXDaA0A,0,1,0 +cLojUtqkFpVIHFEvA_5Atw,2010-07-02,BhxmTjAN9MybthTa_0hYAQ,1,"I don't intend to return, but based on the way we were treated by the kitchen earlier this week, my ""uncouth"" self doesn't exactly feel welcome anyway. However, I'm not quite convinced that it's my loss... + +It had been almost a year since my original visit to Breadfruit which did not overwhelm (as you can judge by it taking me a year to make it back) but I did have an appreciation of the option for Caribbean cuisine. + +Since a friend and I were going to be downtown for an event, I suggested Breadfruit for our dinner spot. We enjoy good food and supporting local. The option to pick up wine at the Public Market next door and have the already reasonable corkage fee waived was a bonus, as we had really enjoyed a couple of the Arizona Stronghold wines at a recent FnB wine pairing and thought they would pair well with the Jamaican heat! + +While the scallops were delicious and cooked perfectly, 2 for $12.50 -- $6.25 per scallop -- is a tad steep in my book. We also shared the Jerk Chicken Salad ($9.95) and the Jerk Prawns Off the Grill ($14.95). + +Here's the ultimate rub, the bottom of the menu states ""no substitutions or modifications""... Since when is cutting a KFC-side-sized ear of corn a ""modification""? + +At the same time, the menu describes the restaurant and it's offerings as ""Nothing fancy; simply good food that nourishes and rejuvenates the body."" + +It seems like cutting something in half so we could easily share it -- particularly after the plate has been delivered to the table for us to appreciate it's ""beauty"" AND after we've communicated to our server and demonstrated with the first two courses that we were splitting the items -- is in the vein of ""nothing fancy."" + +How about providing the customer with an appropriate utensil to cut it themselves, then? + +The fact that the chef was obstinate in refusing to cut the KFC-side-sized ear of corn provided with our entree screams ""pretentious and grandiose"" and tainted our entire experience. + +To quote my dinning companion, ""You are not James Beard and James Beard would've cut the corn!""",review,vsXP832M0kOxKpfduD7dWw,10,13,10 +gvSB2TlcxAOs_ppZ44iirg,2012-11-11,PjZyG3gQPe0da8SV3H-mvQ,2,"Let's put it this way... + +I ordered two topping-heavy small pizzas from Naked Pizza. I had a Groupon for $20 that only cost me $10. So, keep in mind I am rating this on my entire experience that cost me merely $10 out of pocket. + +The good? The garlic topping is delicious. The employees were friendly. They were generous with their toppings. + +The bad? Daiya cheese is disgusting on this pizza and tasted like raw dough. If you're off dairy, get the pizza sans cheese. It will probably be a lot better! + +The just okay? The crust was okay-tasting, if not a little plain and dry. The sauce was pretty good for one of us and just okay for the other. + +This is one of the two times in my life that I have ordered pizza and not kept the leftovers. Of two adults and three kids eating the two small pizzas, we were left with one and a half 10"" pizzas, which we promptly tossed in the bin. My daughter disliked this pizza so much, she picked off a few of her toppings and then told me she was full (when she said earlier how famished she was). + +I am only rating this pizza two stars versus one because I can see that it would be ""better"" without the Daiya cheese that I chose to have on the pizza instead of mozzarella.",review,64YY0h0ZAR2nbzxbx0IwJg,2,8,2 +1Duul3qCnLrNak1Np-iHfw,2008-10-14,LkJ3_bpiTyPje6LOmMT26w,5,"Pita Jungle is a staple favorite of mine and my boyfriend's. Healthy, hearty and great service. It's too bad that a lot of their prices have gone up (as have other restaurants) but I'll still patronize this place. Read as: some things went up in price almost two dollars, but you can still have a meal and a drink for around $10, more or less, depending on what you order. I definitely like this place over the new one across MCC on Southern - there's something about being by the lake that makes it special. Even if there are stinky ducks there from time to time. ;) + +Ooh - and the gambas con ajos is my favorite appetizer! :)",review,-twH-2L0l6AOlTDdp01wuw,1,1,1 +2unQHR9uaRxk3dsW6f3MGA,2010-01-24,vFX3raAkep6PmTemBJHU7Q,5,"This is my parents' favorite place to eat when they come to Phoenix so we dropped by twice on our family vacation. The owner/proprietress convinced my mom (in mandarin) to let her pick the dishes for our first dinner so we didn't even know what would be coming. The cold smoked duck was sooo delish as was the special mountain leafy green with bean curd shreds (all minced fine and not on the regular menu). There was also a shredded pork dish with bamboo (excellent) and a pickled vegetable with fish soup. The soup wasn't really my thing because it was heavily seasoned with white pepper which I hate but the rest of my family said it was exceptional. + +Our second visit was for lunch before heading off to the airport for the return trip. I could have eaten the entire scallion pancake myself as well as the cold spicy pork belly dish. Luckily, we ordered two orders of fried potstickers because those were delicious as well. We also had some tasty steamed pork buns but I was stuffed at that point. + +If you really want to experience authentic shanghai food, let the staff order for you, you won't regret it.",review,bWNjCQyTJttofo3dKtTTPQ,0,0,0 +5Q9346DVAZBlZ8z_Q8saIg,2011-11-26,EN0E7XtF_vgdLCXLyDBydw,4,"I am now a loyal customer of papa johns thanks to pizza hut. Papa Johns is always consistent and friendly and has flavorful pizza. + +Read my review for pizza hut on val vista/warner + +I'm a fan of pizza but this place has some serious quality control issues. Last Saturday I ordered a supreme pizza for pick up. I went to the restaurant and stood at the counter for 10 minutes without being helped. Finally I asked the delivery driver on his way out the door if someone could help. He doesn't say anything to me turns around and sends someone out to help me. The cashier doesn't greet me or apologize for the wait just asks for my name. I get my pizza and go home open the box and take a slice out and notice its completely doughy, stretchy and not even close to being cooked. I am so pissed now. I call pizza hut and ask to speak to a manager, I'm then told to hold then the phone call is disconnected. I call back and get the manager Josh this time and tell him the situation. Josh did apologize, I told him there's no way I'm coming back for another pizza or having one delivered covered in spit, I told him I wanted a refund. The manager did refund my money. I ended up calling Papa John's to order a pizza, the team member was friendly and polite and my pizza arrived in 30 minutes and fully cooked and fresh. Papa John's delivery driver was also very polite and thanked me for my business. I will not being ordering from the Pizza Hut on Val Vista and Warner. Papa John's now has a new loyal customer!",review,ZDZr9jCc9FznutQB_kGvLg,0,0,0 +o-OV2LkJxpcCHmI_d4TZiQ,2010-02-27,RXv4MzN6KH2U4BvdAZr5cA,4,"Enjoyed the weather outside today and sat outside on the fake grass patio for lunch. I ordered the Oreganos fav Jr salad and the sausage pesto pizza, I did however manage to convince myself that I was too fat for a pizzookie(though I don't recommend you talk yourself out of it...I've been regretting since I left!) +The salad was amazing like always. This particular pizza I tried for the first time! I loved the sausage, very full of flavor but could have had a few more on it. The tomatoes were good as well. But the pesto sauce...kind of lacking. Not too flavorful, couldn't really tell it was there. But I am never disappointed by the tomato sauce pizzas...do try. This location is great to visit because they are usually not ""as"" busy as the other locations.",review,3hPmlMAP3PfHMiwNW_RUZg,0,0,0 +hCtyvahPsEOUb38LKxEQNQ,2011-08-14,HyjTny7cPNMsyBn5Mi4vrA,2,"The ""chicken burger"" with jerk sauce was gross. It was dried out with terrible flavor. The only saving grace was that it was small, which says enough right there. As another reviewed said, it was a ground chicken patty when I was expecting a grilled chicken breast after going to places like Johnny Rockets where I believe they have a similarly named section of the menu that refers to chicken breast sandwiches. I realize I have myself to blame on that misunderstanding, but it was still a terrible sandwich.",review,-L0i4tIcOIbAq_gPvykkLA,0,1,0 +9BH18avE46LlHMvJn67MaA,2011-06-29,03rHd59VFtY_cO1x3lNoKA,4,"This place defies being stuck in a single category. Their menu is a bit eclectic and my only regret is not getting to try more of it. + +This place was right around the corner from my hotel on a recent business trip. We liked it so much, we ate here a couple of times. I'm sorry Alex P. felt that he was getting attitude. One of my coworkers asked if he could have the daily special from the previous day because he had liked it so much. They told him it wouldn't be a problem and fixed it right up for him. The food was good and reasonably priced. I was there in April and enjoyed getting to sit outside on their patio and enjoy the awesome weather.",review,XFgkghaWowkrTEgOtOEpPg,0,0,0 +D1T1jtCfTfXD-cQE3QViow,2010-11-15,DVpIicG7xl8HtsWXGQ87cw,5,"I haven't written a review in ages, but this place is SO GOOD that I'd be ashamed of myself if I didn't review it. + +I am the most hyberbolic person in the whole world in the history of time, but this time, when I say that it was the best pancakes I've ever had, I'm not kidding. Just insanely delicious. Scrambled eggs were also some of the best I've had (and come on, they're scrambled eggs, so you don't expect that much variety), and the breakfast potatoes were very good. I couldn't pinpoint the seasoning, but it's different than you usually get. + +Coffee: Yum. I don't think I'd even heard of Arbuckle's, but apparently it's got a great reputation, and deservedly so. + +The owner Joe stopped by our table, and was super nice and genuine. Service was just fine too. + +I'm sure Joe's will get a reputation and huge following soon, so believe the hype and check it out.",review,-txH2zJSBZQHO6RWvoWXuQ,1,4,0 +4XTcSltd2GydhvOzAV4SaQ,2008-10-11,0iEXWvrpgxlQDZBHgVLybA,1,"My boyfriend and I tried this place last year and we haven't been back since. The food was really unspectacular, they weren't really that hot. The price is a bit high since there's a restaurant by the same name on Southern and Dobson that serve much better food for less. The decor was really tacky and they should paint over the mural, it does not appeal to their clientele. Lastly, the staff was not nice.",review,sqLsoqm3lNxvfkOQ_wXucw,2,2,0 +eWsd7tTVvCbh41vFaEJ4vg,2011-04-24,KPkndKjIpGq7w8BFZ4smcw,5,"Fast service, the woman who did my hair was great and it was the cheapest hair cut I've ever gotten. I was told that my hair cut looked better than when I was paying $200+",review,T9TTC-Eb3SpBItMnmA7zXg,0,1,0 +KBG28p3lGX17hOPoHhq5PQ,2008-09-07,ZXDrDliTRwEhZSXOpzpp3w,5,"My husband and I LOVE LOVE LOVE this place. Every time we drive by he wants to go in and eat. Even if we are driving home from a dinner we just had!! + +1. The people that work there are AMAZING. They are so nice and hospitable, always glad to see you and let you decide the type of dining experience you want. (romantic date, take out, quick bar eats, etc.) + +2. This is the freshest place for seafood I have found in Phoenix. I don't know how they find half of the stuff the serve, but they do, and it is just off the boat. (I lived in Boston for 3 years and they get stuff I crave, like Kumomato Oysters, all types of fish and meat from East Coast farms) + +3. Pricing is right on...since they are serving stuff that is difficult to procure, I am always amazed at the value they present. + + +Keep Rocking Yasu!!!",review,uQpHNWs-tZbwLAE00ywR1A,2,2,1 +OIBrslaVxFxaaGUsYFUujg,2011-11-03,ePCxyKUc6dHhxYW5o-mOIg,1,The salad plates were not chilled... As they usually are it however is a busy night but something's are expected at the olive garden... The food tasted like it was under a hot lamp for so long it tasted almost hard and also under cooked for the seafood... Not a great experience at the olive garden there are certain things expected... The expectations are not that high shouldnt be that hard to do....,review,eapbAr6Zi5G8rK62gaWT9Q,0,0,0 +EcHuaHD9IcoPEWNsU8vDTw,2011-03-25,mQawrfHjo6P00XpQ6MButA,3,"After a business trip, I reeeeeally needed a massage. Facility was alright. I personally think it needs an upgrade. Right off the bat, the area with the lockers (and really where you would get nakey!) is very public...that's the first area that everyone walks through. + +The outside lounge area was also VERY tiny. I went out there and walked right back in because it was full with little privacy. By that I mean I walked out there and BAM! A large naked woman scared me back inside. Really? G. D. people! I'm trying to relax. Naked out of shape people stress me out! Just ONCE, I want to see a naked hot person walking around. And if a woman goes nakey, do some basic maintenance first although that much hair does prevent seeing everything, so it may be a blessing...ugh, you know what? Just stay clothed. Please? + +But my masseuse totally made up for that. 60 minutes of amazing...I forgot all about business and naked people who should be naked in private! 3 stars because Joelle worked magic! She was great and super friendly. Even though the facilities weren't the best, I would consider returning for her massage.",review,dEqyN5C0z-9xnwnFw9J_OQ,0,1,1 +xY1sPHTA2RGVFlh5tZhs9g,2012-09-08,U6JOtnI0fBeVYJhYfYSzbQ,2,Don't get Breonna as your server. Didn't ask if we wanted another drink after we decided to stick to appetizers. She didn't appear to know where the water was or remembered we were at one of her tables. Food was good as always.,review,WKxEVjx7cJI13lSk7ZIqZA,0,0,0 +0dIChGWBs9ueUXl0hhkw2w,2009-01-11,BgGyYpjjQInBMbNqE1IMvw,4,"Sketchy name indeed, but their grilled chicken pita sandwich is the bomb! It was filled to the brim with saucy, tasty goodness. I still think about that damn sandwich. I need to go back soon! + +Interior was a bit lacking, service was OK, but the food is sooo worth it. Looking forward to trying other things on the menu.",review,Q5dlLCEni_my05az9wIptg,1,1,1 +bzXDUQ-5Odzx5WZNoSoANg,2012-01-18,TZCONpt5xdDDJMGqavtfmA,5,"When people feel a cold coming, they pop a zinc lozenge or tablet to boost the immune system. I have a much better way to get my zinc supplementation: I head over to Pier 83 for their terrific fried oysters. With the first crunchy bite I begin to feel so much better. Placebo effect, probably. But hey ... as long as I get that feel-good boost, I don't care. The fish and chips are also the best I've had in the Valley. And to think that I've previously been trying to get my fish 'n chips fix from the likes of Pete's ... yikes! And their clam chowder is delicious; I don't need to feel under the weather to have an excuse for ordering this tasty bowl of comfort. The friendly staff and comfortable informal atmosphere complete the enticement for many return visits.",review,m7vtKWpZ9wdEQ95wJxrMrg,10,10,8 +jLxo_UgnGfKHSPK7gGa5LA,2009-04-13,gl10EgTJLqqc-cjmAZco4w,2,"Everything here just seemed so very dry to me. Like it was mass prepared a few days ago and they reheat it, put sauce on it and serve it. The sushi felt the same way somehow.",review,CwNFSTYMitNBkw0k2tHWtg,0,0,0 +k5ACtpeFvNCWnjizgd2IPQ,2012-04-01,w5x2DR91nNX2TS5nI7dzNg,4,"Clean, modern hotel with spacious suites including decent sized refrigerators (easily accommodates a 30 pack). +Staff was fantastic and went out of there way to work around hiccups. Local shuttle, free breakfast, managers reception in the evenings; and all within walking distance of Scottsdale Stadium.",review,lk2kaOszLpP7tnVtCJclww,0,1,0 +xsSnuGCCJD4OgWnOZ0zB4A,2011-03-22,pBd6ZpP11-_JCezcQxuxLw,4,"Let me just say that The Hungry Monk has everything you need for a good happy hour. TVS surround the bar area, plenty of spacious seating and a friendly staff await your arrival. Definitely a family friendly place as well... + +If you get a chance try an entree that comes with pretzel bread as a bun-it was kick-ass! + +Oh, and I haven't been there a lot but I know they have trivia and karaoke nights too. + +Good times Hungry Monk!",review,gsyguOgT2Dnjw-OYw14XDw,1,1,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2011-08-09,8WOLpxLXdcbBCZboafmDcg,3,"This place was just okay. While I can't claim to be an expert in Korean food, I am used to the Korean bbq restaurants in Los Angeles and I can say that this place cannot compete with those restaurants. + +First, they didn't seem to have the proper ventilation for Korean BBQ. I have never been to a place where you could see smoke throughout the restaurant from people cooking at their table. Second, the service was AWFUL. It took them forever to just greet us and bring us water and the fact that it was toooo HOT in there did not make us happy to wait 15 minutes for our water or for someone to even acknowledge our presence. + +The food was decent but the seafood pancake was super disappointing. They didn't even chop up the green onions that they put in it (seriously, like entire stalks of green onion) and it had no seasoning... I may give this place another shot but as for now, I'd give them 2.5 stars if I could.",review,wwPZ6d9JM62ckIkKdmuYiA,0,0,0 +MVQCklTeI9wYVvGxx-wF3w,2012-02-28,jHl3_H8ziVZvXpBT-5aC0w,1,"I always have customer service problems with Fedex. How the heck did they get to be so big with the crappy way they treat customers? I use the Internet a lot for purchases and about 60% of the time, they screwed-up and then their customer service has major difficulty fixing the problems. I have asked for shipments to be held at the closet shipping location to my office and they ship to my home. Another time I asked for the same thing and they held it at the regional depot instead of where I asked that it be sent. I can go on and on about the screw-ups I have experienced with Fedex. + +But this time they really pissed me off. I get a harassing phone calls from a collection agency that says they have been contracted by Fedex to collect an overdue bill from me in the amount of $4000+. I have asked them for details and all I get is harassment. So I asked Fedex for help and customer service told me to contact Fedex Revenue Services, which I did. I told them that I am getting harassing phone calls from XYZ collection agency and the person who keeps calling is named Chris. I also tell them that the alleged amount owed is $4000+ and the account is supposedly in my name. So I ask that they investigate and tell me if I indeed have an overdue account in my name for this amount. (I know I do not have such an account!). Fedex then tells me that they cannot help me because I have not provided enough information. WTF? How much more information can I provide? Do they want my height and weight? Maybe my blood type? Maybe I have to provide the names and birth dates of my children too? + +This is why I say that Fedex really blows!",review,fUs5XxOR82Hfrnyl4wi2QQ,0,1,2 +dA64XqxzgKiDx_PA-V30HQ,2008-10-31,B2jty3n44AR4INO6LcfU2Q,4,I can only comment on two of the smoothies because I am on a banana kick and I choose from one of the two: the Bananrama or the Peanut Butter Chocolate. Oh so good! And now they do offer more than one size! I have started getting this for dinner versus food! I love it!,review,vGxEuRrX_UmW5MhOAEpCvQ,2,3,0 +9XX-sxaDFXlXO65WnuS65Q,2012-02-12,5lrC5ekGmkv3BVA2InYMLg,3,Great service. Good food. Had baked scallops. Reasonable prices,review,Q07J2TiFSJvO8jpwQNGLMg,0,1,0 +AtoMSHZ-lO7kxHRBdioMtA,2009-08-02,xFVs_Ya2YLejW9tKgIvdbw,5,"I was given a $100 gift card to use at Willow Stream Spa last December... I've been waiting for the perfect day to use it since then. Well, guess what? Today was that day! + +With my fiance out of town for the weekend, I took advantage of some much deserved ""Gabi time"" as I like to call my downtime. I called a few days ago to make an appointment and I asked if there were any specials going on. Lucky for me, there were several! The one that was most appealing to me was the ""book any 60 or 90 minute treatment and get a complimentary 30 minute treatment to go with it."" I chose to book a 60 minute aromatherapy facial and a 30 minute complimentary massage to go with it... I was in heaven! + +I'll back up a moment and just say that I've been to the Willow Stream Spa before... years ago. Today was even more heavenly than I remembered. I checked in around noon and didn't leave until after 6pm. I could've stayed longer, but I had to come home to take Minnie out! + +The Willow Stream facility is gorgeous and includes every amenity you can imagine... I started out in the fitness room for a quick workout and then took a glorious shower before my massage and facial. I had Tomi for my massage and she focused on my neck, back, and shoulders... (I've been having shoulder pain so I think she customized this based on my situation). She was fantastic but with just 30 minutes, it felt like a tease... my facial made it all worthwhile though- it was pure bliss! Heather was my esthetician and did a fabulous job. I highly recommend her - she explained every product she was using as I fell in and out of a relaxing sleep while she not only worked on my face but my shoulders, chest, neck, scalp, hands and feet... the products felt amazing and smelled good too. So much so that I bought a couple on my way out. + +After my services, I had lunch (a delicious salad with veggies and chicken) while I wrote some thank you notes and read my book... It was so peaceful. It was like an escape from the world and I enjoyed every second of it! + +So, bottom line - if you are thinking about getting a spa-lover like me a gift anytime soon, Willow Stream Spa giftcards are always welcome... what an experience! I'm feeling energized, relaxed, and peaceful.",review,fczQCSmaWF78toLEmb0Zsw,10,10,8 +kqGbGsG2p6Y3vkplCKyE9g,2012-07-31,YXeRq81_DMuA3ghAkomJmA,1,"I am *floored* that this place has 4 stars. Literally fell out of my chair, picked myself up, then continued on to write my review. + +The staff is friendly at this restaurant - I'll give them that. It's relatively clean and has decent prices. That's where any positives end. The food here is absolutely disgusting. Nothing has any flavour - no flavour at all. None. Nada. The salsa is peppery water at best, the beans are mush, and the rice just tastes like plain white rice. I had a ground beef burrito, which I'd think would be difficult to mess up... Nope. Not for these guys. The beef itself was unseasoned burnt 80/20 ground beef. There was at least 3lbs of sour cream. And for God's sake -- even the ""cheese mixture"" had zero flavour. I've eaten better pizza boxes. Pass on this places, dudes.",review,g2ihR0ZFKCEnKB7YPviuJQ,1,2,2 +jf4RUa9EQO37hqxRCxbEXQ,2011-02-03,DiAbV1ZVNhG98vPkDbgk9A,3,Everything was average. Fairly clean place. Banh Xeo had to much bean sprouts. The proportion of veg to meat was off.,review,s7Tm9oYWqRlBm5ex2OQ1nw,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2011-05-17,QAf7H_gBqOz3WRpFNFPcUw,4,"The Vig is a breath of fresh air as far as the bar scene goes in uptown Phoenix. Nice ambiance, good vibes from both customers and employees, and overall a great concept. Anyone can come here and feel comfortable. + +We went for burger night (Monday night people!), not knowing what to expect... Here's what to expect: a giant effing specialty burger (3 to choose from), cooked to perfection, served with a hearty portion of fries or sweet potato fries! FOR 5 BUCKS! + +Our waiter was either stoned or really new at his job... I'll give him the benefit of the doubt even though he talked like Jeff Spicolli, and say that he was probably just new. But hey, I'm not gonna bitch on $5 burger night...",review,vuUddBhwlrVijAAFvK5UTg,1,2,1 +-bd26a1QEEpqUZjBmtBUiQ,2011-01-14,KMdKviFy8oyix7MIsb9Hzg,4,"For a taste of the exotic, the allure of eating without utensils, and a journey to Ethiopia...Lalibela is your dining destination. + +Although this cozy restaurant is located in a strip mall in Tempe, the African art, woven baskets, and boxes of Harar in the hall (Ehtiopian Lager, which is delicious!) give you a small sense that you have stepped into another world. + +This illusion stays well preserved as you peruse the menu and realize you have never seen anything like it, starting with your inability to pronounce ""Yekik Alicha"" (split peas). + +But do not be daunted by this new territory. Start your adventure to Ethiopia with the ""Yekemem Shai,"" a black tea with cinnamon, cardamom & cloves. If you are new to Ethiopian, and not sure what to get, the Lalibela Exclusive is the most fantastic combination of dishes you can sample. Here, you will have a smattering of meat and vegetarian dishes ranging from ""Yebeg Alicha Sega Wat"" (lamb cubes simmered in kibae, onion, turmeric and herbs) to my personal fave, the ""Yekik Alicha"" (split peas cooked with onion, turmeric and herbs). + +Once the food arrives, the basket of ""injera"" (bread closely resembling a crepe) will become your eating utensils. Don't be shy, tear off a piece, and use it to scoop the delicious morsels off the plate and into your expectant mouth. You will not be disappointed. In fact, you may feel as though you have just stepped off University and into a traveling caravan in the Ethiopian desert. + +Whether you are a carniverous adventurer, or a vegetarian swashbuckler - you will enjoy the richness and flavors of this unique cuisine. Bring a large appetite, as the food is quite filling. Dominant meats are beef, chicken and lamb. Savory veggies to be enjoyed are lentils, peas, cabbages, and collard greens. + +For a lovely gustative to finish your meal, order a glass of the traditional Ethiopian sweet wine made from honey. + +Overall, from the service to the food, to the ambiance, an excellent place to bring friends, or a date ;)",review,HjhR3u17OjxD4s8t3toTfg,2,3,0 +JLrAD5J7O0xIdtUHb21jvQ,2012-07-24,qn2LW7c8V6-KbFuYavJ56Q,5,"Very friendly staff, cute decor! Small, but don't let that fool you, best sandwiches ever!! The egg salad sandwich was so good, it reminded me of the egg salad I enjoyed as a kid! Their potato salad is made there and soo yummy!! Talked to the owner and she was very nice.",review,8lrTKMjIJ9kt7rfVtjq3qg,1,1,0 +52QtjHlHoa7V611bOvv1aw,2010-05-31,7Fy7r6k7pf7m0euNtwAykg,4,"Mmmmm, Mmmmmm, Great food. The popcorn shrimp here are to die for-they leave a wonderful lasting impression. So does their desert plate...The service was wonderful and quick and attending to us. Also, we had been lounging at the pool all day and were not looking so sharp but they didn't seem to have a dress code or anything as they were more than welcoming. It is a bit pricey but i'm not sure you can expect anything less when going to a W Hotel. I recommend this place to anyone who wants a more chic sushi experience, cool atmosphere, doesn't mind paying the extra dollar and enjoys tasty food.",review,oHn52UJAeJQJxDOob4FEAw,1,1,0 +It8Q9-l1EEtTr9NPpTgGPA,2011-03-13,ZTj7QiH2103O3kPSpNrD-g,2,"This is my first time using Groupon. It's one way to enjoy various cultural experiences without investing too much money just in case. Obviously the restaurant can well benefit from the exposure without costing them too much. It's $20 voucher that I've paid $10 ahead. The restaurant only got $5 I believe. And I did Yelp! extensively before hitting the BUY button. + +I understand that it's hard to find authentic foods in USA. Everything is Americanized for one reason or the other. Most Americans I know (not those that I don't know) can't handle strange taste, texture, weirdness, repulsion, and various dislikes. And I know that it's hard to get the same fresh or processed ingredients and spices from home countries. + +Those are my pet peeves alright. And there is one more before I get onto the review. Comparison can be deadly. + +I have tried Latin American foods (including Yucatan, Oaxaca, Belizean). So my knowledge is nil on Venezuelan foods. But I do have taste buds and experiences from various food cultures. + +Overall. It sucked. I was referring to the taste, variety, and uniqueness. It didn't worth my dime. My friend and I had the Media Bandeja (1/2 the regular portion) for $25. The big plates came with 2 big serving of steamed white rice, 2 small cups of black beans sprinkled with cheese, half an ordinary avacado, 2 fried eggs (Chinese style, I cooked that all the time), 2 plain arepas (round flat breads), one chorizo sausage, one blood sausage, 2 scopes of shredded beef, one small steak, few green plantains, and few sweet plantains. + +The blood sausage tasted like burned tired. I had blood pudding much tastier and smoother and more colorful that that. I grew up with blood pudding. Yummy!!! That maybe the reason that I'm vicious now. Heed my warning, it's not good for cholesterol. + +The steak had tasty flavor; it's ordinary though. I believe it's 5 oz shrunk to 3 oz. The shredded beef reminds me of sloppy Joe. It's OK for the taste. The sweet plantains are regular fried plantains as found in some Chinese buffets or regular dessert menu. It's good for the sweetness but nothing more than that in this restaurant. + +If you give me a steam bun or silver thread roll (both are steamed rice dough), I can tell how much salt it contains, the chewing satisfaction, the freshness, and the steamed distinct aroma. And I can eat it plain. Arepas? What's that? It's an tasteless, odorless, chewy carb that didn't excite my taste buds a bit. Boring!!! Honestly, I had no clue how special it was supposed to be. It tasted better after I stuffed avocado and shredded beef inside. + +The green plantains were like hard cardboard. Fried carb without taste, but it has a green tinted color. + +My friend also ordered Tequenos (fried breaded cheese sticks)... really tiny for $1 each. Chinese egg rolls ($1 each) are twice as big and they are greaser and tastier. (I ain't a size queen). + +The Empanada Ham Queso was so tiny with 2-bite size for $4. Come on... are you kidding me!!! Calzones are more complicated and much bigger with ham and cheese and more ingredients, for similar price. (Again, I ain't a size queen). + +My point is that it's so ordinary that I couldn't see the cost value especially for Bandeja. I can serve up the same plates at home with minimal cost. I know the restaurant needs to earn money for cooking, serving, paying wages, and renting the space. + +We were the only table that night. The wait service was ordinary... between a bus boy and minimalist. The ambient was plain... and not a place you expect to pay $40 for two (before Groupon). + +So diners, I enjoy a chance to have a different cultural experience. You should give it a try. Due to a lack of familiarity, the foods tasted bland and boring. I don't feel like gaining any new knowledge except a few words on the foods. I feel like they were serving home cooked meals or peasant foods as ambrosia and they charged accordingly. That's my problem with this restaurant. And I have a totally different experience than the Yelpers here.",review,aJGbFSkf6zCBbadpcD5uow,0,1,0 +5U1ArcV-HXR5UlkdQx1a9A,2007-03-05,cKzMqpq04FA5BGbpyy3aSg,1,"HA HAHAHAHAHA! +""Pit"" is right.... man, this place would have been a terrible idea if i wasn't already expecting lameness. +now occupying the space that has seen the death of not one, but two dance club (411 and Level), Peach Pit Afterdark.... I mean Cherry Lounge and Pit is beyond ghetto. +opened by the same people who do sugar daddy's and dos gringos, this place has all the sexiness and allure of a Trails commercial. You know? I was half expecting to turn a corner to see a neon colored bikini-clad bleached blonde on top of a motor boat. well, they've updated the look of the cage-trapped go-go dancers to mini panties with knee-high dragon rider boots with fuzzy muppet skins adorning them. + +the vids of drunken lounge-goers (a la daddy's and now dos) playing in tiny screens on the walls in hallways and behind bars in tact, interspersed with footage of seriously hagard looking chics doing ""sexy"" things like sucking on lollipops, cherries, winking (yes, she was winking right at you, wasn't she? inviting you in to her red-drenched lair to bask in the glow of a alcohol doused club circa 1992). + +i'm not sure what the DRESS CODE we were so violently and largely reminded of in line, but the girl in front of me had on an oversized T-shirt, baggy jeans and flip flops (?) and they took her $5 and let her in no problem. i also saw a girl dressed exactly like peggy bundy...no joke, spandex black calf leggings, long spandwex shirt in orange, heels and a giant boob belt. it was so incredible i took a picture. she was not impressed with my observation, so i had to sneak the photo. + +anyway.... take it for what it is, a club owned by dos gringos guys on mill ave.",review,7GC9fVWKa4a1ZmBGLH6Uww,2,3,7 +732Z5HGLEEBjAgXxfnuXlQ,2011-01-04,yE2Ha-0yns7pM2LPG2PjTA,4,This place has consistently good food on EVERY visit. Lots of choices and really fast service! Lucky to have this so close to work. Check the soup and sandwich combo. Salad bar rocks too.,review,90a6z--_CUrl84aCzZyPsg,0,1,0 +kFVapB4z_5VoOnYazF_ERA,2012-03-04,VYfpqw3R6kRMFafzwyjaOA,5,"i love this place and eat there every time I'm in the area. Pizza, pasta, appetizers all fantastic. Plan to spend some time waiting for a table. We always have fun just eating at the bar. Yumm",review,XG7y5p6ACHkrtlkinvynnQ,0,1,0 +9VZ_imQjvgtpt3k6W6AQ_A,2007-07-25,mqqXTVWCzU1UuOLVy2L8eQ,4,"I had a lot of fun at this place. You know you aren't getting ""authentic"" sushi so you put those expectations aside. This is a great place for groups like bday parties. The restaurant isn't that big and they don't take reservations so you end up waiting a while, especially on weekends. We went on a Sunday night around 7:45pm and had to wait almost an hour. I recommend getting the sushi boats which is basically an assortment of sushi. It's a pretty good value for the price. The miso marinated cod is fantastic, but the shrimp, scallops and garlic spinach dish is just ok. The scallops dynamite is really rich. The restaurant is noisy inside so it's not a place for a quiet or romantic date.",review,wlZpcF8plwKlxigp0cNDHg,1,2,0 +0kcStBtW94p-ooaaA2PbIQ,2012-08-03,xvPjVMI8dRlK4bNZXAUmvQ,5,This is an awesome family owned business. We've had consistently fresh and delicious food each time we've been here. They homemake things like their ranch dressing to take them to a different level than other places. Highly recommend this place. Prices are not bad either.,review,DbFSdCeJNnc8Bxqg7HXIpw,0,0,0 +DjdA1xbHki_lopCSxf-Egg,2010-01-28,eDaeNy-n_LLcnu4yHxSfjg,5,"When cowboys ride off into the sunset, they probably stop at Greasewood Flat for a burger and beer. This rustic little bar is located a bit outside the city right near Pinnacle Peak and is definitely worth the drive! You'll know you are in the right spot when you see the antique farm equipment and suddenly feel like you are walking up to an Old West saloon. Say hello to the mule on your way in. Outside they have picnic tables, horseshoes, and fire pits (gets chilly out there in the desert!), and on the weekends they have live music and dancing. + +Inside, the bar is pretty small, and the place is covered in dollar bills and business cards left by satisfied cowboys and cowgals. For the nights without live music, don't you fret, they have a jukebox with tons of country hits. The night we went it was the bartender's birthday, and the regulars were definitely having a good time. + +Both a historic landmark (120+-year old original stagecoach stop) and a dive bar, Greasewood Flat is clearly special to Arizona, and is a definite must see. I'll be going back on a weekend to get the true Greasewood Flat experience and hopefully see a cute cowboy or two..",review,Vdi-fbSA36s6jffY7iDbXA,0,2,1 +S3ccQHpkBQTBBfRB-Q4adg,2010-11-18,vBzCrDzjCBjSknh8CDtRlA,4,"Even though there are only two things on the menu that I can eat, they're damned tasty and the service is incredibly fast. I am a bit surprised by all the five stars though, you people do realize that this is just a chain sandwich joint, right?",review,f3LA83yEEBMj9q92H28O7w,0,1,0 +mxrXVZWc6PWk81gvOVNOUw,2012-06-14,bV7Ifw8Qy30Du_1sYibPIA,5,"Full disclosure: one way or another, I have only been to Roaring Fork for the Happy Hour, but the happy hour is darn good. You can, and you should, get that kettle of green chili pork or the big-ass burger, or better yet, share the two with someone nice. The huckleberry margarita is so good, I've had three in one sitting (no, I wasn't driving!). I fully intend to get over there for dinner soon, because I keep seeing the sugar cured duck on the menu and just thinking about it right now my mouth is watering. It gets pretty busy during the happy hour, though, so be prepared to wait a little if your party is large.",review,h3TnHCqFga0VgPO390PjKA,1,3,1 +DrTsV4u-X6hft0aRjKCwMg,2012-02-13,-QmJankXPnkCGXSqmzYT5w,4,"Had to bring my wife's necklace here to be repaired. Service was great, the pretty looking girls were very helpful. In all, we had a very good experience. Looks like we will be coming back soon. Wife had her eyes on something?",review,UCQNrwN4_hHHTWYa8cqe_Q,0,1,0 +9tSHBEoAhKu-tkU8n6SKjA,2012-08-06,1jpfvBAxAI57ljgQZUFuXw,4,"Love spicy Mexican food? Well then this is the place for you. They have great food, great service and great beers to choose from. My family and I go here often.",review,jT1XoRAy5l-HBiAacyh9Tg,0,1,0 +L3BSpFvxcNf3T_teitgt6A,2012-04-19,mcI2uOYjPmlaUeT7Pggpkg,4,"If your boyfriend is a baseball player and is in Spring training.... Watch out for the heat...as it gets SOOO HOOOOOT and SOOOO DRY...... i literally had to stand with my legs apart and my hands on my waist to air what needs to be aired. + +Yup. Support thy boyfriend..... I can't wait to come back here this May for Minor League Spring training! I probably will be wearing a bikini and a see through dress. + +But really..I've never seen fields so well managed here... I've only been to where the Royals practice....and It's quite amazing! This May, i'd definitely see games at the Texas side.",review,325QatjmjSgREU53oS917Q,0,0,0 +VVeogjZya58oiTxK7qUjAQ,2011-07-18,H74-hkCQUFJqVSeynipJEQ,4,"Great Crust. Great ingredients. Worth the hype of Peter Reinhart's book American Pie? Not sure. It was great though. + +No fresh ice tea kepts it from getting 5/5.",review,wesv2JOGalpF1OALPoyZqw,0,0,1 +jfDBaBgwINrGYAo8p2MJ4g,2012-06-29,mdB17tYuqe7oP6kRUCL03A,4,"I've been to China Magic Noodle many times over the years; it's one of my husband's favorite places to eat. The employees are friendly and prompt to provide service. + +I always get #34 (Beef, Noodles, w/XO sauce) or the #27 (Seafood Noodle Soup) and love both. The noodles plates are big; unless you are a big eater, expect to take some home. The mango smoothie w/boba is also delicious; you can taste the fruit and know it's fresh. + +I agree w/some of the other reviewers regarding the smell - this place definitely has a ""smell"" to it, who knows what it is - but it's not a disgusting/offensive smell. Overall the place is clean, the service is good, and the food is great!",review,1WMpiFX4oNeET9SXszBSwQ,0,1,0 +9ggd0DySEZNw990JGaFSQQ,2010-06-28,wQ6JvcxUtNTqV921FgleZw,4,"Another indoor (two-story) Westcor Mall that has gone through a few minor changes over the years (updating the restrooms in the Food Court area, adding Dick's as another anchor store, adding the kid's play area, etc...). It's also seen many big and small Retailers come and go too. + +When this mall opened back in 1994, Robinsons-May was the ONLY store open before the rest of the mall. There were empty fields in the surrounding areas and orange grooves in other parts. It's hard to believe, but the ONLY restaurant open at the time in the area was Applebee's across the street. + +Fast forward to today, the Mall still attracts shoppers from all over, since it's the ONLY indoor mall in the West Valley (not counting Desert Sky Mall-don't go there!). + +Anchor stores: Macy's, Forever 21 (in the former Mervyn's building), Dick's Sporting Goods, JC Penny's, Sears (formally Montgomery Wards), and Dillards. + +AMC Movie Theater is located inside the mall. + +Besides the Food Court, there is a Chevy's, Johnny Rockets, and Miracle Mile Deli. + +Some newer Retailers include: Sephora, Coach, Disney Store (they came back!), Apple, Swaroski, and J. Jill. The mall stays pretty full of Retailers, once in awhile, there are a couple of empty stores, but not for very long. + +This is still a popular family friendly mall to visit and shop. Westcor keeps it updated and clean.",review,CP-IE-zyc2Mv3jlaceElVQ,1,8,1 +mqQwChPNN4o4DhAzaGntIA,2007-12-01,u0gBoNNJkSR0MKs6sr1NUQ,4,"Food : Fried. Carbs. Cheese. Yum. + +Selection: Main specialty and dessert. Sufficient. + +Price: Under ten bucks a pop. Great. + +Parking: Sucks! I nearly died after having to park across the street (no room at the inn) via a running jaywalk across the 7th ave midday madness. However, I don't care. Gluttony is so worth it. + +Hours are rather limited. Better for me anyway, otherwise I'd have to start popping Lipitor because you'd probably find me here way too often.",review,lFa_Rh34tK6hSPYAZZ8Jyg,0,0,0 +ky6G0NMJZg96mfXpgDiopQ,2012-01-08,eyzRIGw-KkaQu1eSmFTN4g,4,"Best prices in Phoenix nice ladies, will do exactly what you ask with your hair",review,jIHaXo4-KR9kvh2J7eMkIA,0,0,0 +mqQwChPNN4o4DhAzaGntIA,2010-11-05,zw2jx70RaKSE5k1sW9e3Gw,2,"The fry bread in itself was great, it is just what goes inside it is not that great. I have been wanting to come here for a long time since I have heard so much about it. I got a bean and cheese fry bread and the beans came half smashed with whole pinto beans in it, which I can't stand. The beans are not very flavorful when they are whole. The cheese was a thick shred which didn't melt and it was altogether disappointing. + +My partner got the fry bread with ground beef which he said was not flavorful at all. It was like they just cooked the beef with no flavoring at all. Maybe they were having a really off night? Yelp, why have you been betraying me lately? I keep going to these great reviewed places and they suck.",review,7C-jyTrOX-iJ-MrSJuh-8A,1,4,4 +S8O3BoCDEK-te8U-0IvZog,2011-08-11,k7Xr66X9YcQLbTFV5yE7lg,5,i love the $5 happy hours. all the dishes are a great value and delicious!,review,xZvRLPJ1ixhFVomkXSfXAw,2,3,0 +aDBT5MB0L2JCUo3kqgFRJw,2012-05-10,xAIBrFbhZE8xfchmS_LtOQ,4,"The owner is extremly friendly. Great place as all the other Yelpers have said. I ordered the Blackened chicken sandwich with patato salad. Not too spicy, but just right. The patato salad was extremly good. If your out and about in the afternoon looking for lunch, stop in here.",review,DuwTSY4hS03iHS_UuBW3_w,0,1,0 +zyCrtvCPdSZDhUrH86vbeA,2012-03-20,iaSTYxw91xc0VxoHydtX6A,3,"I'm gonna have to hide this review from my girlfriend who is from Wisconsin and a big Brewer fan. To be honest, this is my least favorite stadium to go to because of its location and just overall mediocre atmosphere. It has an outfield grass area, but it is kinda boring. Maryvale is a no frills ballpark, so if you are going to a Spring Training game to actually watch some baseball, this is the stadium for you. If you want to go for the game, the scene and overall experience, I'd recommend a stadium in Scottsdale. For what it's worth, a friend of mine says this is his favorite Spring Training stadium, but frankly I think he feels that way since it was the one stadium he actually played in while in college. I personally like to go to a game and then head over to some bars or restaurants, but at this stadium I check out the game and then get the hell outta there!",review,34gJ_KlP3RM6jotNT6TcDQ,3,3,2 +m9Wqqma30o-hH2fAX7dnug,2012-01-24,IkGG3SeJxcx1_dd9krzKIg,5,"It's high time I wrote a review for Desert Jade. I grew up on their food. So many amazing family memories were created here so it's tough for me to go anywhere else and be quite as happy. The owners know my family and are always ready with a hug. This is truly a real-deal Phoenix institution. I have so many favorite items but here are few must-tries: chicken lettuce wraps (I'd been eating these here looooong before so-called ""fusion"" joints like PF Chang's had them on their menu), sizzling rice chicken, sesame chicken, Desert Jade chow mein, honey-dipped chicken wings, any one of their delicious soups. So much to choose from and it's all done exceedingly well with true consistency. Support a local, family-run joint for truly fabulous Chinese food!",review,Xdu24yBabw0uq4GzKBhWaA,0,0,0 +dHgoX3L2AKYixgH8hmJjfA,2012-08-28,H_J93X4GgNmQFDMnCNMw0w,5,"I wish that this place were not so good - I have not been able to drink the coffee at my office in weeks. The location that One Coffee occupies used to be a coffee shop graveyard. Several coffee houses went out of business in this location, unable to compete with Starbucks. One Coffee has bucked that trend and it is not hard to see why. One Coffee has great coffee and it is amazingly consistent. The staff is always friendly. This place is certainly doing something right; everytime I go in there it has more and more customers.",review,Yl8pSOZnIBNTnKoRWK_RIA,1,1,1 +hW0Ne_HTHEAgGF1rAdmR-g,2012-06-21,FfEgFSokdC4KtbM3KdL_tw,3,"I don't know why it is that all these airports have such a major lack of seating. The staff here are friendly, and security is quick, but I just wish they'd work on the gate areas and add more seats. Need an example? Sacramento International's new terminal.",review,tVdp2HWbzP-5E06e1MveoA,0,0,0 +JuyVq7GwY5EZ_gL5cGfPiA,2012-01-12,nSvicNy_UTfQtp6s7HqdHA,1,"I bought a deal off of Living Social and waited a while to call them, figuring they'd be swamped with business. Now I can't get them to call me back so I can use my deal. (NOTE: There were no reviews of this company on Yelp BEFORE the Living Social deal.) Of course, Living Social is no help - their website says I need to call a consumer advocate in my area. This kind of thing, I predict, will be the demise of every deal-of-the-day site: the company selling the deal bears no risk of having to pay refunds if the business providing the goods or services doesn't perform. I have since cancelled my subscriptions to EVERY deal-of-the-day email out there. Lesson learned about TWO companies with no ethics.",review,hqJuL8kEWfKf_MmLBWfY5g,0,0,0 +d52zg-S0o940WUCK-nNiKw,2011-02-02,TZmsOo25aK-xJBsTpAY_wQ,4,"A classic hole in the wall mexican restaurant and a Phoenix icon. Known best for their machaca and their hot, freshly made flour tortillas. Good food at great prices. + +For a photo of the best chimichanga in Phoenix and a full review, check out my blog post: http://blog.phosyzzle.com/carolinas",review,S_PtppfOHr4f1_gqYAyRjA,0,1,0 +OdD1GuGNQ64ssJmMJ_D9RQ,2011-01-24,NsG07wXTODXZ4_klP-b-6A,1,"The Duce is a disaster. +As an Arizona native and a downtown local I root for cool interesting places downtown. I wanted to love this place. The 1st time we tried the Duce I was extremely let down by the customer service. The parking is atrocious. It's as if you are inconveniencing the staff by asking where you order food. They were out of just about everything we wanted to order. So disappointing. +However I decided to give them a second shot. Everyone has a rough night. We went to an event there last night the entertainment by Scandalesque was AMAZING... same TERRIBLE customer service from the staff at the Duce. Management needs to wake up. Great concept. Horrific customer service and staff.",review,VJAcgA7zTolWhp1OuSKR3w,2,7,1 +APgL23vh7f7H_wAGTl57xQ,2008-09-06,hqthMrQsUIpZOqUph4aJ6w,5,"NOTE: Ignore the reviews above. It looks as if there is some deliberate attempt by the Udupai owners to pose as members and bash this place. Yes, this owner used to own Udupai Cafe and Udupai Cafe is another dosa house that competes with this eatery. If you read my other reviews, you know that I'm critical and my attention to detail is there so I'm not one of these people who likes every place he eats at. + +Positives +I'm Indian and I can assure you this place is good. I have never been to Udupai Cafe but based on its failing health inspections, I would be scared to eat there. Woodlands is a nice CLEAN eatery in a nice part of Chandler. It's not a restaurant. It's basically a Dosa shop. They specialize in Dosa and offer several types. They also have excellent Indian Chinese dishes. The food is consistently good and I have eaten there on several occassions. This is a lunch/light dinner place. Don't think of this place like a restaurant. There are several types of Dosa and that's what this place specializes in. The restaurant is also modern and not is some ghetto strip mall so don't worry about failing health codes here...at least not for a while. + +Negatives +Their non-South Indian dishes are not so good. For non-Indians, they should be informed that this is a Dosa house so order dosa and other south Indian dishes. Don't order your typical Indian restaurant favorites like palak paneer (it wasn't good here). The owner also says every dish is excellent which isn't true; he is kind of a businessman so he doesn't really care about telling you which dishes stand out. Stick to the Dosa and the Vegetable Manchurian. Their mango shake wasn't very good. Their chiku shake is great.",review,GkWuTgewni9bzPM4HUCO-g,2,3,0 +IvErHIfI6MzCu0zYJgRrhw,2012-08-01,ptYY2iyDVK_HQTwgl3pKag,5,"Mail Call is a full service shipping store. The owners are great-they are friendly and accommodating. I purchase shipping supplies from them are their prices are very fair, much less than a larger place up in the airpark. They take care all of my local needs and get the job done. Kudos to Mail Call!",review,JeYk23C6S1BIw1roLc6sxg,0,0,0 +39oUcXr-06fcfT_MZ94z-Q,2008-03-20,55LM-uIiY2deeWomjuA5VA,4,"I've been eating at Hap's since they were in a trailer in a parking lot on 24th and Jefferson. And for those of you who have don't hail from the south, you will find this to be extremely good BBQ. I always opt for the 2 meat combo dinner with smoked lamb and pulled pork (sometimes beef brisket). Served up with cornbread and mashers plus BBQ sauce and mint sauce on the side. My one gripe is they don't serve corn on the cob. Head over just before or after the busy lunch hour and escape the wait in line. + +I don't see Honey Bear's getting New Times Best of Phoenix consecutive years in a row. Not to say that Honey Bear's isn't good but I guess it depends on what kind of BBQ sauce you like since the sauce makes it. Hap's was also highly regarded in Sunset Magazine's Best of the West and several other publications hung on their wall.",review,RRTraCQw77EU4yZh0BBTag,2,3,0 +1621ir5mjVgbHwxCbMAEjg,2012-01-01,7JeaEtlIOunTbpkviFO3Hg,5,"I love the other locations of Thai Rama and this one is no exception! Food is fast, fresh tasting and well seasoned. The lunch specials are unique and delicious, and the service is good. Far superior to the Char's Thai restaurant that used to be in the same location.",review,O8w525BpmlvbocQRhavfmQ,0,0,0 +K8pM6qQdYu5h6buRE1-_sw,2012-01-25,Mh3lDYB-TXpeP8OelTw_Xw,4,"I visited this location a few months ago for the first time, and returned for my second visit the very next day. +I got their standard chicken and waffle plate on my first visit, and just chicken and macaroni the next day. +Both visits were pleasant and the food was delicious. +My only criticism is that the waffles I got were a bit on the thin side. I've had chicken and waffles from many different soul food places all over the US and in comparison LoLo's waffles were just okay. The chicken on the other hand was A+. It was tender and juicy and well fried. +I see myself coming back here again.",review,ESrdXpT1yF7KZX52bPpnJg,0,0,0 +Lvf3N3cfLAmOc5y8Eg8KDg,2009-05-25,GT2qspVs31iYw09RUyJWkw,5,"This is a great place in an extremity of the Valley. They serve both Korean and Japanese food. They are quick and attentive. Having lived in South Korea for two years, I can honestly admit that this is some of the most authentic Korean cuisine I've had in Phoenix. I typically ate bibimbap once a week minimum over there and I can't really tell the difference between Takamatsu's version and the stuff I had on the other side of the Pacific. I noticed they offer a list of other, more obscure foods I learned to love over there, including naengmyeon (cold, spicy noodles), japchae (stir-fried glass noodles), and several other dishes. They also follow tradition and bring you several side dishes. Love it or hate it, kimchi accompanies every meal, as do spicy bean sprouts, a tangy spinach dish and a few other random sides. It's a little bit more expensive than average restaurant prices in the Valley, but definitely worth it when you consider the sides that come with it, and a complimentary spiced tea for ""dessert.""",review,9mjItdXixKECanLV6RBIrw,1,1,0 +g2be7RLUWSbow_p5AUjBwA,2012-07-03,f8wzCOA8hF6qSQIVfEBkDA,1,"Dr. Pierrend is ok, he will write prescriptions for about anything without really investigating if the are needed but he seems like a nice guy. The staff are horrible. They tried to charge me 2 times for lab results which are covered by my insurance. Refused to give me the results without billing insurance for an office visit. I would not recommend this medical provider to anyone. Everyone in my family has gone to PMG and has a bad story to tell. If you are smart you will look elsewhere for medical help",review,-YajQUo9WA1n7A1w8nic8g,0,0,0 +xtX2qS64zP2NRPV_7NNqHw,2011-12-08,GTu-AyZ6M5XqTWUoPtMwvg,3,"I'm sure this is a lovely Spa and Resort; sadly I was here for a conference. Being the good worker I am, I did not see the pools, spas, or golf course. I saw the conference rooms, my hotel room, and the restaurants. I have to say the hotel rooms were nice, very large, each with a little patio. The restaurants ands bar are all super expensive and not worth the price - but if you are sans-car you are trapped. The saving grace here is the little 'coffee shop' by the entrance. There they have very tasty sandwiches and beverages for a decent price - grab some eats there and go sit outside or on your patio. You'll feel trapped on the complex...18 bucks will get a town car to take you to Old Town. To get back to the hotel, go into a restaurant and ask them to call a cab for you...its hard pressed to find cabs on the street (least it was in the afternoon where I went into town).",review,oJemHCiaTaFJhCGYA9F1qA,0,0,0 +cIQ5qYFvkI6kIFGgHXsFTA,2008-12-26,OsxQ1UfucWBr2bbzaznY8A,5,"Fabulous place to get wine, beer, spirits. It also has amazing keg selection.",review,_aguQTUp7kMlWhWr2mojdA,0,0,0 +YQvg0JCGRFUkb6reMMf3Iw,2012-04-08,NiM3h6kuLz9u9XDvFNOqpg,5,"Best bruschetta I have had here. Good wine selection as well. + +My favorite bruschetta are: +-smoked prosciutto, fig, mascarpone, truffle oil +-roasted chicken, sundried tomatoes, goat cheese +-pulled pork, housemade pesto, roasted red pepper +-mozz, basil, roma tomato, qc olive oil & balsamic",review,uq1y9VRH9vOy91x8f4TQSg,0,0,0 +7TMf1NuuAdvhG7IojZSKnw,2011-05-24,CyJM2RUAZPXDSqeTduXdYA,2,"Came here on a Friday night to split some wings and a cheeseburger with the lady. Well, if you want to split a burger they charge you $1.50 for this. Hmm. Why were my wings not charged an additional $1.50? I understand their thought process but we were not hungry enough to order 2 dishes and waste food. Also, for a sports bar on a Friday night, I expect beers to be continually full, not waiting 10 minutes in between. I'll be back for the wings and for a change but the customer service definitely will be remembered.",review,S_LAaGC89w7oW5SXKQO2tQ,0,2,0 +EKzMHI1tip8rC1-ZAy64yg,2011-01-30,L3vTxnQ6l4gBmbP15Rb-BQ,4,"Had the pleasure of enjoying House of Tricks last night, for the second time in the past twelve months. + +With a party of six, I was excited to get to see a range of dishes and try out most of the menu via my dining companions choices. The restaurant, found in Tempe near ASU, is not hard to find and houses both indoor and outdoor seating. The outdoor seating is where we ended up last night and between the fire pit in the middle of the grounds and the abundance of trees/greenery, the setting works quite well. + +Our party was seated immediately and without problem, the night was off to a solid start. Our waitress, Jamie, was both friendly and courteous. Jamie had a great understanding of the menu, the specials and especially the wine. Her recommendations for multiple members of the party worked out perfectly. Each person in our party ordered an appetizer and off we went. + +I had the pork belly, on Jamie's suggestion. Other choices within our party included the salmon cake, sweetbreads two ways, and the scallops. I thought the pork belly was great. It had a pea puree as a base sauce and some baby carrots that just killed. The scallops were tasty and cooked perfectly. The sweetbreads two ways were a bit of a letdown. As a lover of sweetbreads, I have had the pleasure of tasting some of the best variations of there preparation. These were just not that great. They weren't cooked properly and the seasoning was lacking. This would be the only lacking dish of the evening. + +For the entree, I had the pork osso bucco. This was a real treat, cooked evenly, tender and tasty. Other entree selections around the table included the ahi tuna, the salmon, and the duck. The tuna was the standard seared variety on a bed of mashed potatoes. Both diners who chose this selection were quite satisfied. My companion had the duck and while she certainly enjoyed the dish, she found the duck slightly fatty. All around, the entrees were solid and plates were cleaned. + +With little room left for dessert, we ordered three selections for the table to share. All were good and once again our plates were cleaned off. The dessert best was agreed upon to be the homemade smore the restaurant produces. + +All in all, this is a solid restaurant with a good atmosphere and good service. I would eat here again and recommend you to do the same.",review,E57V8rkRheDr5g_9MNAQwA,0,1,0 +3HciJAVduCRoPDdzgh7cAA,2007-08-02,u9Y4kSGD7tRIy3UP1e_UoQ,4,"My vintage shopping in the Phoenix area has been disappointing so far. Goodwill, Salvation Army, and Savers are in their separate boat of cheap stuff that is rarely vintage. Buffalo Exchange shouldn't even be called vintage, because it is not. + +It is much more of a consignment store. Most of the things are new (or lightly worn) and are cheaper than retail prices but more expensive than Goodwill. The selection really isn't bad. I have found a few things here I am really happy with. + +Example: A sweet pair of orange high heels from Steve Madden I think. (I don't really give a crap about brand names, I buy things because I like em, no matter the name). They were thirty bones (not too cheap) but probably a lot less than they would have been at the mall (I am guessing, 60?). + +Its still a fun store despite the vintage confusion. Everyone who works there I think gets all the good clothes first because they are always so freakin' adorable! Super friendly (not the fake kind either, can you believe someone is f*cking the handshake in this metropolis?). + +So get over there. You will find some good stuff. Just don't even bother selling anything unless it is high end brand name or the best vintage find you have ever gotten (and that one is even not a guarantee).",review,Rk95w-MMDzXzIvCF0SJUtQ,0,3,0 +OovMUso3GHEuvwDObeHy0Q,2012-03-24,daHByG4KO0Bsjohfk8O0mA,5,"If you want Cheap go to Walmart! + +But if you want authentic eclectic trinkets that you will proudly own and showcase in your home this is the place for you!",review,PZ9FB1czAYXuxLH7eegBvQ,0,1,0 +gyPSkAFyz_fQLX1KOEI5Qg,2012-12-15,wpdE7zStXo1i1FamFBr__w,1,"Very unpleasant experience. Creepy male doctor. Uncaring. And no help. + +I went to this Urgent Care with a swollen ankle so painful that I was nauseous, dizzy and having vision problems. The doctor interrogated me and advised me to get my head examined. I'm not kidding. + +Mom was right: good doctors don't advertise. This place actually solicits Yelp reviews.",review,hGitwL2Ixiq3C6mJyQrlPw,0,0,0 +oWb5JjxoPaFSmpGwJ3-Ntg,2010-01-26,tG3SHTfIlRwr2B02aO9-ZQ,2,"BLAH is really all I can think of. Blah, Blah, Blah. + +Everything tasted the same. Everything! I got an open chicken burrito which is basically a burrito in a bowl, opened. It had chicken, rice, cheese, peppers, onions and the shell. + +I ate a piece of chicken, tasted like the grill. I ate some rice, tasted like the **Burnt** grill. I ate an onion, tasted like the grill. I are a pepper, tasted like the grill. I ate the cheese, tasted like a burnt grill with cheese on top. + +YUCK! I ate about 4 forks full and was so disgusted I had to chuck it. + +Fail of an airport dinner to the max!",review,g3z_RHT1oBH8e8vKcAUhTQ,5,11,5 +-AAig9FG0s8gYE4f8GfowQ,2012-11-17,ncJBYqQhYA-ZOPa3D_qj2Q,5,Huge Fan of this place. People in the food industry should take a lesson from these guys as they have great customer service. Huge fan of the sandwiches.,review,vRWaXe7TfFvFgwkdzJL2cg,0,0,0 +Y-9dJvw-J2d9QKfuL7mKgA,2011-11-15,wUXxGGEKHT3ThSCptUx4kA,4,"I like Over Easy. The former location had more charm but this one is bigger and you don't have to wait as much :) +The food is great and the owners are wonderful and friendly. +We just ate breakfast there. I got the 3 eggs over easy with mushrooms. The eggs were way too raw. I told the server about it and I asked to just get 2 eggs over easy instead of remaking the dish as the kid in the table was getting grumpy. That's what I ate for breakfast. The server didn't take it off the bill. I wouldn't say anything about it but I didn't get to eat the dish I wanted but still got to pay for it. Not cool. +The Ppllo Loco is great ! +Hopefully this is a one time issue and the owners are still on top of everything like they used to be.",review,bKKVpwp1ERdWUl4lqc8ChA,0,0,0 +-UnYs8XvV1M983xZoREdng,2011-01-23,fDDWVaufzskYB9YeDIoVIw,4,"Tried this place through Groupon. + +Don't have a palette or interest in wine types, so I can't talk about the wine quality. I had all their sweet wines and liked them. + +The cheese plate had four of them, I wouldn't say they were uniquely different from one another. There was sage derby, brie, mahon and something else. One of the crackers that came with the plate was very hearty and nice, the other was horrible - like oily tortilla chips that weren't fully fried. The plate also came with cranberries, apricots, grapes, olives and salted nuts and seemed like a good value. + +Overall though I had a good time, and thought the combination of wines and cheeses I had was good. The decor was typical AZ type, brown and beige. They had live music. We sat at the tasting bar but there were groups at tables too. Outdoor seating was available too. Saturday evening was full but not overcrowded. + +The person who attended on us was very nice - Christine I believe her name was. Another guy who talked to us first thing when we sat down asked and classified us as Groupon or non-Groupon, which felt weird but I guess that reflects how many Groupon customers they had had. He also said ""you are not drinking to make me happy, you're drinking to make you happy"" when we asked him if he had recommendations which I thought was weird at best.",review,Gk3VxZ95do0-WgeVuGMVWA,0,0,0 +0QTn4pMzKv1mnQifcP9YoQ,2012-04-26,kO5Ar0XS52-cVdmJEOFtbA,4,"To quote my boyfriend, we like this place because ""they're solid."" Every time we order here, the food is great and fresh. I always get their sweet and sour chicken and I am never disappointed. Instead of chicken chunks coated in batter, this place uses a chicken breast with batter that I would describe to be a thin tempura like batter. There is no excess batter or fat chunks to deal with it. The service is fast and we see the same waiter every time we eat here. This is the my go to place for Chinese food.",review,obeCL4RSBKnG_LiO9dvE4A,0,1,0 +nlFlIeziD-4nNUF2B337Yw,2011-12-10,2Ljr0rFBkyDzjK_o3Vmo8Q,4,"This was my first time to Sekong By Night. I have had Khmer food before, which is ironic, as my wife is from Vietnam, but never had Khmer food from Cambodia. She has to come to the USA to experience Khmer food!! I have eaten Khmer food in San Francisco CA, and in Siem Reap. + +Both my wife and I were pleasantly surprised with Sekong By Night. It looks like a tiny little forgettable restaurant from outside on the street, but once you step inside. you can see the owner put some thought into the decor. It really looks Asian. It is as though the owner went on a shopping trip to Phnum Penh and came back with tons of artwork for the place. + +The Amok fish is really nice. Reminded me of a cafe I had dinner at in Siem Reap some 9 years ago when I was seeing Angkor. The fish was fresh. My wife wanted to switch with me (she ordered the Katheaw Cha). + +The Katheaw Cha is also very good. + +I ordered a Coconut Juice as my drink expecting it to be canned. It was fresh, and smelled fresh (a pleasant surprise!!!) + +My wife ordered the Grass Jelly drink, and it was also good. + +I really wish that this place was in Mesa AZ, as I would go more often. Maybe so, I will make the drive again to this place from Mesa as appropriate. This place was a pleasant surprise and I wish the owner great success. I want this restaurant to succeed. + +The only place where the Khmer food was better (for me) was Siem Reap, but then it is perhaps a little unfair to compare a restaurant in the USA to what really is available in Cambodia.",review,7knTjXA1lNJw7AMIIJi4YQ,0,0,0 +jf4RUa9EQO37hqxRCxbEXQ,2009-09-09,qz5qGlXt08a0T4Wo-_6gow,5,"My daughter and I got a recommendation from our nail tech at Scottsdale nails. WE LOVE VIETNAMESE FOOD and I was so glad to find this place. It is as good as what I used to get in Oakland, CA. The location is a little strange but once you are inside the interior is nice and tranquil and the service is very friendly. We enjoyed our noodle soup and spring rolls and we will be back for more!",review,eDjNezOwrm7l0fuEiiXEbA,0,1,0 +QC6UE93iVkVIjs6MphM56g,2010-10-20,9NdXuuGm6KrdmF3KwXYPSA,5,"I have been attending Az Combat for the past 9 years and the instructors are fantastic. They teach Kickboxing, Jui-jitsu and MMA classes. Az Combat was one of the very first MMA Gyms in Arizona and have a great reputation as one of the top 10 training gyms in the nation. My daughter has also been at this school for the same amount of time and has taken advantage of many of the classes they offer including their boot camp. I would highly recommend this gym for beginners and the advanced looking to break into the MMA circle. They have produced some of the top named fighters in Arizona.",review,vwkbXfn1j6yDGcv9VgePaw,0,0,0 +dSQh1Hx2BiSrYog4ad740A,2009-09-07,7ozpbLGsgDRNh8x8HaLfVw,4,"It was a rainy Saturday, yes, that's right, it was raining and hot and muggy! UGH! But when it rains I just want to go sit in a coffee shop and people watch or just relax a little. And I don't have a coffee pot at home right now. Yes, I know, it's somewhat sacriligious for someone such as myself who is a caffine addict. Sad, but true. I just needed my fix and it's that time of year people.....the Pumpkin Spice Latte is BACK!!! HOORAY!!! It is my all time favorite!! + +This is the closest Starbucks to where I live. Just a few blocks away. When my friend took me here the first time she told me it was the ""gay"" Starbucks. Yup, I think that is safe to say. I'm straight but if I were gay, dang, I'd probably be here more often. I like this location though. It never seems to be super busy and there is always a place to sit weather it's inside or out. It's clean and the staff are friendly. It also helped that I was cleaning out my wallet and found a Starbucks gift card. Score! + +There is not much else located near this Starbucks. The Good Egg, which looks like somewhere I might try, and Jamba Juice but sadly, it looks like just about everything else has closed up in this little strip mall. Too bad because it must have been a hoppin place a few years back. + +I may have to go back soon......like, today, maybe....I'm getting another craving for my fave PSL!!! YUM!! And now they have a PSL Frap! I have not tried it yet but I will. Sounds like pumpkin pie through a straw! Yum-O!",review,ZmIgP4U4Ht9CYmNX0_zP6w,5,5,5 +OFBJtqWGSx6n6CchtVmoRw,2011-08-07,AW2O80o5Na3t1LSLWrJiQw,5,"Delux is always really good, fresh, and it's a clean place too! I love the beet salad with chicken added. It's delish! My man digs the burgers and we both scarf the sweet potato fries. Love their dipping sauce that comes next to the ketchup, Ah-mazing!",review,wC1CPV5bf--bDLtlhNSPLg,0,2,0 +Dsvx2LEC8jk9nuGsg1Kqhg,2012-10-29,5sxHw2-iHV7TGtGqAhuPwA,3,Great place to grab some quick groceries.,review,wDAAn0HlnuZQnfga6CVIKQ,0,0,0 +5M7YgorCUTEZkKYNbKDHTA,2012-12-13,ExfxEsWMVJJIjfQL6uFK8g,1,"ZERO stars! +I traveled from STL to SFO a few weeks ago (with a layover in PHX). I have a couple complaints; +One, I was checking 2 pieces of luggage in STL. One ended up being 14lbs. over weight (it was a cooler with food I bring home each year from my dad). I was charged an additional $90 on top of the $35 initially for the cooler to ship (including the $25 for my first bag- so $150 total)! This is an OUTRAGEOUS additional charge! I thought overweight bags were charged an additional $25 like other airlines I've had to pay at but $120 to ship one bag is just insane (and a set price for overweight bags is NOT listed on your website)! On top of that I paid $250 for a pet ticket so my baggage fees were $400 total... $100 more than my round trip ticket to fly. I couldn't believe that! +On another note, the woman agent helping me at STL was the most rude customer service agent I've ever dealt with anywhere! She was rude to me about the overweight baggage and then claimed my dog was too tall to fit in her carrier so she claimed she wouldn't allow her to fly. She raised he voice at me and called me ""a very inhumane person"" for making a dog ride like that for a whole flight; seriously making me cry. I fly all over the country to do shows with my dog and this has never been a problem, including on the first leg of my trip when I bought the round trip dog ticket in SFO. This woman name-calling was totally inappropriate... people in line beside me were astonished. Since I had my round trip dog ticket purchased already, and she was sick of fighting with me over it, she let me go but told me the gate person probably wouldn't let me on the flight (and of course the gate person did). +Between the dog crate episode and the bags, I have never been treated so poorly and charged with such ridiculously high adage fees. I'm very disappointed to not be able to fly US Air anymore since I never had problems with them in the past. It was a horrible way to end a very nice holiday vacation. +I have passed the word on to as many people and websites as possible not to fly this airline!",review,g5KKeR1V_5sejmom9S70fg,0,0,1 +VFjeCLwVMguUNWH-DeOgyw,2008-08-21,Qr9H2_b0GiPrVwV-4tWcJg,4,"Given the high ratio of staff to customers, it took longer than expected to get acknowledged. However, my drink came out quickly, as did my food. The menu items all had cheesy names based on the Fox sportscasters, but that, along with the 24 TV's playing (you guessed it) sports, made it rather entertaining. The food quality was surprisingly good for an airport sports bar--burger was tasty, bacon was crispy but not burnt, and made with actual sharp cheddar cheese. + +Service was good too. Lorraine refilled my drink the instant it was empty, cleared the dishes and offered the check within a minute of pushing them away, and brought the receipt almost immediately. If I'd been rushing to catch a flight, I think I""d have been fine. Burger, fries, and unlimited Coke, plus tax and tip for just under $17; not too bad for an airport. + +Overall, it was a bit like the US Olympic swimmers I was watching while I ate--a tad slow off the blocks, but came back impressively to win the gold.",review,6Y5cVScAQzRYF826jbjLzQ,1,2,1 +_ilvDGnUKCpfp4qHvQODlA,2009-09-14,Zrlm6xskhaJEZ9dIQof0pw,3,"We ordered from here the first day in our new home, also the first NFL Sunday this season. I was expecting about an hour wait. They quoted me 45 minutes for delivery, and when the doorbell rang after 20 I thought it was solicitors or perhaps neighbors coming to welcome us into the neighborhood. I was pleasantly surprised that it was our food. + +We ordered a mushroom pizza (meh), and wings and chicken tenders - both very tasty. We're used to more thin crust pizzas, NY style I guess? so this was a bit doughy, but the garlic herb crust was yummy nonetheless. Not sure if we'll order from here again, unless we don't find our NY style place, but it was still good.",review,weYT-xJwz8o7mLNWIhD6HA,1,4,1 +BnVJmCTNrO8ZtbC1vkv9Zg,2011-07-12,IvCjrNrLAysq-eKA7oaKrg,1,Bad... food was horrible... do not waste your time or money,review,fyeY3Qqz-vAfKbv2cjniOw,1,0,0 +kBRRKc8Iq7yMt1egofks_A,2006-02-18,v1cZKbl5NJXPEEuGbqPmNw,5,"Nicely edited selection of mid to high end electronics. Knowledgeable and professional staff. These guys (and gals) know what they are talking about and will go the extra mile in terms of customer service. + + + +Thinking about splurging on a home theater? Ask for Scott. He will listen to you and help you build your dream system within your budget. He will even respond to your hi-fi emergencies (eg. the guests are arriving for your Super Bowl party and you don't remember how to work the mission control style remote).",review,e4TQFVfepzHf--hnBsjntg,0,0,0 +1OA1jo0GlK9sf68f00w8ZQ,2010-04-21,yksYNBjsnRtqoyNewNEkQA,4,"This is quite possibly the best hamburger on the planet. I live for In-N-Out Burger when I head West and I was impressed by the friendliness of the staff and speed with which my order was processed during a busy Thursday evening. + +I'd give this location 5 stars (and if I were rating the burger and service alone, it's no contest), but I was disappointed by the fries. They didn't taste as fresh as usual. That said, they weren't stale or frozen, so they beat every other fast food chain. + +I'd certainly go back since my Double Double without, with pickles, sliced chilis, and extra spread was AMAZING. + +Be aware: they do not accept American Express, but Visa and Mastercard are just fine.",review,L9_zl1TNcXuQmTUD2mpzEA,1,0,0 +8T8B_xK10FuO6MBOFcVQ3w,2009-08-16,r0uagQwlSlYMxU-GAfjK6w,5,".:chomp:. this is one .:mmmghgh:. good burger .:sllluuuurrrpp:. +It's got a great combination of yumminess with a side of .:chomp:. awesomeness. The burgers are great and .:chomp:. perfect. + +The custard is great .:lick:. and diabetic friendly .:mmmmmmm:.(They have no sugar added custard). i would definitely recommend this place! .:lick:.",review,GsNB-KVGhlL9uwHMXi6P_w,1,1,1 +CcoxqH11hn04m3qneeVi4A,2009-12-16,fbfTJhwqpm6wiaKczi_MAg,5,"I have been looking for a great therapist for a long time. Someone that takes the time to read my body, to see the synergy of the muscles and be able to do the work. Finally, I found Robert. + +He has been an LMT for more than 15 years in the Valley and continues to educated himself often. His studio is located conveniently just off of the 51 about 10 minutes in a quiet residential neighborhood. + +The massage intake questioning was thorough, but not invasive. His set up is calming and the room & table were warmed by a heater! The massage lasted 90 minutes or so, I didn't want to go back to the real world. + +He does offer Gift Certificates and has Pay Pal set up on his website if you didn't plan ahead with stopping for cash. + +I will definitely visit him again when I need the work!",review,t-27_YZKsk9tMbAiwQKCwQ,3,3,0 +bEQjf7c-9qkNWgXvriSGZw,2008-06-05,vxjva9QY87FjmgQZxcum2Q,3,"I've eaten breakfast here a few times and always thought the food and service were good. I think the prices are reasonable. My only complaint is the place is too small. there have been many times the hubby and I go there and there is simply nowhere to sit, so we end up leaving. I wish they would expand the dining area as I would love to eat here more. I hate chain restaurants, but when this place is too crowded I end up at a crappy chain.",review,HP_xZYNC5XK-VyNrnHbtRQ,1,1,1 +m3EKlucZuwnOazLrRfnWaQ,2010-04-11,8BDeilxjeCEaEVYd07cXjA,3,"This is the place to go in Scottsdale for an Italian beef. When I visit Chicago I usually go to Al's or Portillo's for Italian beef and having Al's here saves me the trip to the Windy City. + +The decor here is nice with several motorcycles displayed throughout the restaurant for some reason. It's neat and clean and plenty of helpful employees provide relatively quick service. + +I ordered the regular Al's beef with sweet peppers. I usually don't order my sandwiches ""wet"" because they come with plenty of juice already. Good flavor and just the right size. The fries were thick but a little greasy for my taste. + +All in all, a good lunch and a place to keep in mind when I'm feeling like a taste of Chicago.",review,Kqvfep2mxS10S50FbVDi4Q,0,0,0 +Eeonj15SXvfR6kgvh8BOWw,2011-01-21,a7ZaHosep5rWLuh1CxRgLg,4,"dropped by for lunch with 90yr old and 2 yr old plus hubby. all in all very good. hubby had sausage samich w/fries he really enjoyed it. baby had spaghetti and meatball she ate real good which means it was real good. mom had catfish w/spaghetti and marinara, she ate more than half and the rest went home with her. i had chicken marsala w/marinara on ziti. i subbed the wedding soup for the salad. the service was very quick and attentive. the lamb appetizer was just right with the bread. everything was tasty and very nice presentation. will be back soon, very convenient, very reasonable prices plus a full bar for happy hour. +pizza looked very promising, too. take out may also be in my future relationship with lil deemo's.",review,gmNM8_mbR1uBRwbFfi4syQ,0,0,0 +az63c_MoXG_-Xs73Ocg0Ew,2011-04-01,t4hlMiG6mWTLZLN2wcQiCA,5,Just tried this place this afternoon. Very friendly staff & great rates with no commitments. You don't need to worry about paying some $25-$40 co pay like at a regular Chiropractic's office each time you visit. It's $49 a month and you get four visits a month. It's not like massage envy where you have to sign a contract for a year and its hard to quit. This goes month to month. Try it out once for $19 if you want. This company is really growing. So stop by and see for yourself!!,review,B63qAIvH3jVUlA6ssqVSnA,2,6,2 +yeLq-452CkaKw1ynn0nRNw,2012-06-20,yySOwNwEu_sWoP4ZDXlqag,1,"We ordered $40 worth of pizza for takeout and it took almost 2 hours -- was told 20 minutes. We were not comp'd for anything. When I expressed my dissatisfaction, they offered to give me $40 credit toward my next order. I asked for this in writing, and they gave me the ""we can't provide it in writing -- we wrote your name down and have you on record"" line. + +Guess what -- I called back a couple months later and they had no record. They refused to honor the credit....and were rude. I asked to speak to the owner, and was told ""he's out of town."" The pizza is mediocre at best. I have zero tolerance for businesses such as this. PLEASE spend your money somewhere else that deserves to be patronized.",review,izOUjRwXReNSYtIl_AUR9w,1,4,1 +Lo0dRIDKXc5mlE-coVZrtQ,2012-11-30,rIObgrgo-t8A7E9L2z8fow,4,Solid place to grab a cup of coffee and a morning pastry. Not sure about their lunch or happy hour but really love the layout of this place. I tried their chorizo breakfast burrito too and it was very tasty albeit a bit pricey in my opinion. Check this place out if you're in the area for breakfast.,review,JnAGZh7rjuz-6nKXitHUwA,1,1,0 +0bQiWdKxj2EmsGYRVC9qyA,2011-03-23,23fhxjEyeEYW83NtyxBciA,4,"Very good, cheap Chinese food. Lots of specials including beer. + +The only problem was that one of the servers had her two kids there who were making noise and literally crawling on the patrons' tables. If this is a regular occurrence, get the food to go.",review,Ojf_XozkuSHXKhhpxEp-Dw,0,0,1 +UI8iKvzhGn2qZCGIqtQqrQ,2011-08-29,SJzD4Sp9ZtdBPMD32XdKUw,4,"I visited my cousin Tempe earlier this month. Since she is not an early bird and rarely ever wakes up in time for brunch, much less breakfast, I relied on good old yelp to pick a good breakfast place! Thanks yelp! + +Harlow's Cafe was awesome! My cousin ordered a simple eggs, toast, and cottage cheese, Jeff got the eggs maximilian with chorizo, and I got the biscuits and sausage gravy with a side of fruit. Everything was HUUGE. Coffee and water were always filled. My biscuits were soft and fluffy, and the sausage gravy was delicious! Jeff loved his eggs maximilian, which was gigantic. The eggs, tortilla, hash browns, salsa, chorizo, sour cream mixed together wonderfully. My cousin's eggs, toast, and cottage cheese were fine, very standard. + +The vibe was diner-ish with posters of movie stars, cowboys, etc. Thankful I got my cousin to wake up for brunch!",review,BZNThA-NwLDK8mwluwOGhw,0,1,0 +dMOdFKdeI7GuZUIq0jwAQg,2012-09-07,lxJDUmbJb1JiXVGpBUUT8Q,5,"By far the best taco shop in the valley. Their rolled tacos are delicious. I've had them dozens of time and they never disappoint. The restaurant is older and what you'd expect of a normal ""taco shop"", but it is very clean and the staff is always very friendly. They also have the best red hot sauce I've tasted yet. Yuuuuuuum.",review,z30hYvXYGme6uU4fpzaisw,0,0,0 +WnmNF1mNOcbcheVpTv7ucA,2011-05-03,6VxvWOKi2rzmfdbnohMW7Q,5,"I am impressed! I finally got a chance to check out the MIM yesterday and I was really wowed by the extensive collection. I knew going in to expect items from all over the world, but there are literally instruments and related objects from every country. We spent between two and two and a half hours but it still wasn't enough time to really take in everything. + +I loved that the audio/video guide was included in the $15 admission price. Most museums I have been to charge an additional fee. This was unlike any guide I have experienced before. No numbers to punch in, just walk by any of the exhibits with your headset on and when you stop at each video screen, the audio automatically starts up! Very cool, and I loved watching all the videos to learn more about all the instruments. When I walked up to the flamenco part of the Spain exhibit I instantly recognized the video playing as I have actually been in the flamenco club in Madrid where it was filmed so I thought that was neat. + +I really enjoyed all of the exhibits especially seeing the ""guts"" of the Steinway piano and how Martin guitars are made. It's not something I had thought about much before but now I know so much! I think the MIM is a fab place to take kids (and adults!) to learn and to get them excited about music. Definitely check it out it you haven't yet. + +Edited to add: If you are a Bank of America card holder, you can get into the MIM for free the first full weekend of each month in 2011.",review,XoEwIVPoUNCM11D60o3lCA,0,1,0 +LRuIY8JFqadCSYLo242MGg,2011-01-17,S_LiM_GxkWUty7fr9UCkbg,5,"I really like this place... +Taking the advice of Yelp we stopped in on our way through downtown. +We were immediately greeted as we walked in. I told the staff it was our first time in and asked which sandwich was the best. +Following the recommendation I ordered the Crackerjack, cracked pepper turkey and melted pepper jack cheese with lettuce, tomato, onion and Russian dressing. We also ordered the Godfather, cappicola, salami, pepperoni and melted mozzarella on garlic toasted bread. +Let's take a moment and show the bread some much deserved love. It tastes fresh with a chewy center and crisp exterior covered in sesame seeds. You could put a shoe on this bread and it would taste great. +I really enjoyed the Crackerjack. The Godfather was good for a few bites, but too rich for me. + +I can't wait to come back... +Great choice for lunch downtown for a very fair price. + +Unless you are completely starving, share a sandwich!",review,0o0VMEJeQY0pAAZ9nxErBA,2,4,3 +oCA2OZcd_Jo_ggVmUx3WVw,2011-07-18,89wth4Mt73S-d1APwAdUvw,4,"Alice Cooperstown is owned by rocker Alice Cooper and is a pretty unique sports bar in downtown Phoenix. Cooperstown was also featured on Man vs. Food. + +The most unique item and the biggest draw on the menu is the ""Big Unit"" hot dog. This is by far the biggest hot dog that I've ever seen and the reason that I went to Cooperstown. + +The Big Unit is a 1 pound, 22 inch long Vienna hot dog, on a baguette roll. You can choose any combination of 9 toppings for the Unit. + +I went with cheese sauce, jalapenos, bacon, and tomato. The dog had a good taste to it and the bread was fresh. I loved the cheese sauce and bacon, but would probably go without the jalapenos next time. Surprisingly I was able to finish the entire dog, but had to really force the last four or five bites down. I've never felt fuller in my life. + +Unique restaurant and menu along with good food gives Cooperstown 4 stars.",review,o3FDn0YCRJpGHMPrpuUUpg,1,2,0 +hCtyvahPsEOUb38LKxEQNQ,2011-11-29,goobJt94tfsT0v3q6z7sXQ,3,"The bf and I wanted to try someplace different on our venture out to North Scottsdale so we decided to give Coal Burger a try. The menu is pretty small, which isnt good or bad. I had the green chile burger and my bf had the bacon blue burger and we shared a side order of mixed fries. The burgers were not bad but not great. The flavors were pretty well mixed together but the burger itself was just blah! The fries were ok as well, nothing special. + +I would go back to give them another try. They have interesting sodas on tap that are natural. The shakes look good so will try those the next time I am in the area.",review,100Df1wcVrl9rJgB7EG6xw,1,1,2 +18X496TOlKunSiAnm6z1dg,2012-10-30,3DFvN7j6yPdrVrkGj-m18g,4,"This is an awesomely fun place about an hour and a half south east of Phoenix. Although they are making their own wine yet they have some ""private label"" wines and a great selection of other wines and beers available. +The staff is awesome and the ambience is very cool. You can ""lose"" a day here just hanging out and enjoying it!",review,O_pPqlu_cOJk8NFOjnHdeg,0,0,0 +-bd26a1QEEpqUZjBmtBUiQ,2012-10-20,FRSH8JUOu01T_OBkxbf_xg,3,"Food was tasty. I ordered the veggie combo, and was a little disappointed that it didn't come with more of a variety of things, especially for $12. BUT what it did come with was good.",review,m9kXVTmi4AuECwP25IpoaA,0,0,0 +M6fjHpkL9IRI-nI0BattRw,2012-06-29,8kvPwrW-U1hcr3Eb2PVw1Q,3,"Not quite hot sex on a platter but good food, yummy beer and great music go a long way!",review,ncFbDwW5V4RfoEkhcAPfBA,0,0,0 +pr62DwKHSH4QzJkz-1be9A,2011-06-02,BDcpV8Ym04A6EnrU9ryt8A,4,"I don't know what it is about Tempe Sales, but how can you not love them? it is primarily a fabric store, and they may or may not have all kinds of other random stuff, like carved wooden chairs, stone tabletops, bamboo flooring (sadly no longer in stock), slate tiles, and so on. + +However, I would say that it's not merely the random selection of home decorating supplies and upholstery tools/materials that makes Tempe Sales great. It's the family-run vibe that you get from them. On one trip, to pick up several cases of flooring material, I had to go with the owner Alan to his warehouse down the street. In light of buying as much as I did and helping pull it from the warehouse, he threw in plenty of sublayment material for free (otherwise on closeout). The staff (many of whom are part of the family) have also helped me reupholster furniture and work on plenty of other odd jobs. There is no shame in being an amateur at Tempe Sales, even though it is primarily geared toward professionals. + +If you're in the market for fabric, please do yourself a favor and check it out. I bet that you will return soon thereafter just to browse around some more. The only downsides that come to mind also make the experience more interesting -- stock levels are not always reliable and parts of the store have historically been disorganized (much better now than in the past), but my experience may be skewed since I gravitate toward closeout deals.",review,HZ3ItZ23xZHqjUjRIdPi7Q,2,1,0 +OjfynPa2SokmmRNbxpgeog,2012-12-28,GW2B2WadIZjPUw2aacELSw,1,"Pros: +-No breed restrictions on dogs +-Washer and dryer in unit + +Cons: +-Awful and idiotic leasing staff. Forms will be missing or prepared incorrectly. +-Rude and inadequate maintenance (be prepared to supply your own tools half of the time) +-Trash divers daily that no one does anything about +-No on-site security (you can call after 9 pm for a ""courtesy patrol"" but it takes them hours to arrive) and the front gate is NEVER closed +-Vandalized cars +-A MURDER (this was the location of the man who set his pregnant girl friend on fire) +-The main pool is beautifully maintained and clean. The 3 other pools are small, dirty, and frequently closed. +-Bug infestations in most apartments +-Dogs kept on patios 24/7 (a clear violation of the lease) so their barking can be heard by all +-The basketball court and tennis courts are never available, as they are constantly used by kids to bike ride on with the encouragement of the apartment staff +-Tons of potholes! Driving through the parking lot requires excellent shocks and there is minimal guest parking +-The apartments have less insulation than a cardboard box. Freezing in the winter, sweltering in the summer. Nothing is fitted correctly to it's frame, either. + +If you can afford a better place, I highly reccommend it.",review,DR-CzKVj5Ek4X0flEgYPUg,0,0,0 +gVgJIBQDXHtgIS7p7uDa6Q,2011-08-22,lLLCHfg2k7S_pHMxLtGDyQ,4,"Great place for cheap drinks! +Everybody knows each other and you can becom part of the Playa family quick :) +Sharen ( the owner ) is very friendly and nice and she will remember your name and what you drink after one visit. + +Great place to watch games !",review,bKKVpwp1ERdWUl4lqc8ChA,0,1,0 +LR9mX-3mh_PIEeG1A5zqxg,2011-08-08,ye3UllU_1X2bHvWkHK-6-w,5,"Best noodles in Phoenix. This place is hands down the best chinese food in Phoenix. PF Changes has nothing on these guys, they are fast, friendly and food is hot. Its also excellent for leftovers too.",review,DMCGCo1D88u61SBx8jXAWg,0,0,0 +3D8thbL2D2c3qTMeYROAOQ,2010-12-14,70GKA69RgxZlBXhSHFzLGA,3,"Simple, Inexpensive and within walking distance from my place. I went biking this evening and had the sudden urge to get Chinese food. +I ordered something to go and got a vegetarian dish with tofu. +From what I've observed, the place is simple and clean. +Now as far as my dish goes; I thought it was good, but needed more flavor. (which is a good thing) +It gave me a good reason to infuse my dish with Bragg's Liquid Amino which is healthier than other seasonings. +My only complaint is the edename in the vegetarian dish. Why do they have to include the shell? I don't like unwrapping them with my teeth! ;-P + + | + | / + | / + . .~^(,&|/o. ""Pass the soy sauce please!"" + | `---------- | + \ / + `======='",review,0oRtnPHtvZIE1UNxCDDTPw,6,7,7 +fFlMAm0RBdfzrDfpicTPJg,2010-09-01,b8ZXt3WQpJrv4KfnzVOIFg,1,Have been in twice since my last review. Its a like a COMPLETELY new atmosphere!! And sorry to say this is not in a good way. Service was terrible and I was emberassed that I actually brought some new people with me to try it out. Just went for this saturdays last ufc fight! They were like natzi's with the seating you have to have 75% of your party with you to get a seat even though my boys were parking and in the parking lot they gave our table away so after getting the tenth degree abou there seating rules we were finally sat all had to sit speraticly through out the bar. We should've just turned around right then but decided to stay... then on top of that we were sat next to some drunk beligerent people spilling and flirting with there server (wich you could tell made her uncomfotable) that table were continuosly getting over served beers. Since there was not one mgr in sight the little time we were one of my boys stepped in and there was almost a fight right then and there.. putting that aside our service was horrible some dude was our server and we went without seeing him for like 30 min and not so cold beers. At that point after one round of drinks we decided not to order food and the table next to us was gripeing about there food so that was another sign to get the F out of there so we paid (once the server got back) then bolted. I wasn't going to yelp anything BUT I just received my checking statement and the dude added 5 to his 3 dollar tip. I gave the guy 3 on $12 he was lucky to have even gotten that. I'm going to find out the guys name and go to upper mgmt because this is not the first time i've heard of this happening there. With that said.. I WILL NEVER BE BACK HERE AGAIN! This place has gone down hill!! . DO NOT WASTE YOUR MONEY HERE !! Very disappointed,review,pefSo1d1tcXESqD68PAlQw,0,1,0 +CgHcO651uEE3aalrkm4boQ,2009-02-28,9nLQQS8WtUK2uaIlOdOixQ,4,"I must admit, I'm more of a Wal-Mart Neighborhood Market guy (due to the economy), but I had a great time shopping at AJ's. Every single item on the shelves is of the highest quality. For Valentines day, because I'm so bad at picking out girly gifts, I let my girlfriend go on a shopping spree at the chocolate counter (among other things)...I'd go back once in a while, but did grimace at the checkout counter when I forked over $125 for three bags of crap...I guess it's back to mayonnaise sandwiches at Neighborhood Market.",review,fzkO1lGkx8MHhT8S4Rbg3w,2,4,3 +fekFed80H18dGDmVwm4RLg,2010-07-01,-eWbaCnAPsSpjnV4zCi17w,2,"2 stars because I really did like the eye doctor I saw, she was awsome. + +Thought I was off to a good start getting new glasses. I picked out my frames while I waited to be taken care of. + +Oh...wait...the eye glass gods had something else in store for me. + +The person helping me couldn't get an authorization code from my insurance company because it was afterhours. He actually told me I had to pay full price or come back tomorrow. Now keep in mind that I have had this insurance forever, never had any problems before; after hours, weekends, etc. So I used my cell and called the insurance company. I get someone on the phone who is trying to help us. I put eyemaster guy on the phone and he actually got into a fight with the woman on the phone, handed it back to me and said here you talk to her, I'm done. + +So the lady got me the authorization code and a explaination that this doesn't happen because most eye glass providers can take care of everything in spite of the insurance company being closed and she also asked me if I was sure I shouldn't switch eyemaster locations due to this guys behavior. + +But I thought I was done. I have my glasses picked out and I needed them to drive. So while she was talking to me the guy at eyemasters was throwing out insults loud enough that the lady could hear. + +So I lost 1/2 hour of my time and think the worst is over + +Well...those darn eye glass gods...I can't get them in an hour because it was too late in the day the guy tells me. He has the right lens and it was only 6:00 pm, come back tomorrow. + +So I called today and was told 1/2 hour and they will be ready. I drive over there on my lunch hour and guess what. They aren't even close to being ready. So I walk around the mall, come back and guess what, only 1 pair is ready. That would normally be ok but the attitude of the two guys working is arrogant and not very customer friendly. I laugh it off and leave. + +So what are the odds I'll get my glasses after work today??? One can only wonder. Awful service, unprofessional and unpleasant to experience.",review,uTyIIbOvXH_XZw7OEiTiNg,0,3,0 +6oRAC4uyJCsJl1X0WZpVSA,2012-11-03,5ucisvItjJVLX5wfxXVcTA,5,"Hands down the best middle eastern restaurant in the Tempe area. You can't beat the prices, everything is always consistently good (we go here about once a week). + +Favorites: +Hummus and Gyro Delux! + +Don't forget to grab some baklava too, this is the best i've ever had (and that includes having some while in the middle east)",review,e7_mPkNLzbyWMXOBpT0E5Q,1,0,0 +V_QIirrsJHKLKQMS4lni0Q,2011-02-10,khqw5xkETmFh_aWBuYGEIA,4,"I can't speak for the Vet portion, dog training or any other service, except the grooming dept. + +I take my dog in there during the Winter to get groomed, shampooed and nails clipped, because sometimes its too cold out to dry him off. The girls in the Grooming dept. are very nice and accomodating. They treat my dog well, and always have nice compliments about him. T + +They also do an excellent job and his nails are always done right. I've taken him elsewhere ONCE and they trimmed his nails down so much, that it hurt him to jump. I thought he had an arthritic condition, when I realized that he had his nails done, and sure enough, he bounced back a week later. + +These girls know what they're doing, and a couple of them have been there for a few years, as I recognize at least one or 2 of them every time I go in. Even to shop. + +Thanks ladies!",review,XoDauxslLmZbT3SkmdaDRg,1,0,0 +HD_D2LTNTL6EXmvHF6x1qg,2012-02-19,3vZLrrZ6aVt-kvTO5Q79pQ,5,"Primp and Blow at the Waterfront is divine! I walked out feeling like a +Super Model without spending a fortune! Great Stylists. Upbeat Friendly +atmosphere. Great Tunes and an overall GREAT VIBE! Convenient Parking +and centrally located right near Fashion Square and Olive and Ivy. LOVE it!",review,t6GmgDZNeaTnj75NTRWc2w,1,1,1 +VEojEXbJ81eiPLSSF9jNEQ,2010-04-28,Gfzwi9ITTD33Kk7at8vrDw,3,"My biggest tip for newbies to YC's, look toward the grill and look up. There you will find a nice little menu of sauce formulas. Unfortunately, I never looked up. As a result, I didn't have enough sauce. In my case, that was a good thing because the sauce I did have tasted like crap, so more of the same would have been even crappier. + +As for the ingredients, lots of choices with fresh veggies. I have to say the meat looked unappetizing to me. In fact, I had to ask my husband what the hell it was. I guess it's a good thing you don't see piles of freshly sliced meat, else it might not be so fresh after all. But in its frozen to minus 500 degrees F state, I found I opted for more veggies. + +Two sizes available. I went with the large, crammed my bowl full until it resembled a small mountain, and then wasted over half of it. So get the small unless you want leftovers or you haven't eaten in several days.",review,wHg1YkCzdZq9WBJOTRgxHQ,6,6,6 +dsMvINhoQbIQgSRTBv2B6g,2010-08-31,5nhbZTGI3a4KgtK9QNtNHQ,4,"Long-time fans of the Mill Ave location...we finally made it out to the original (I think this was the original, anyways). + +Overall, pretty darn good. + +The food is on par with the tempe location. The pastas were delicious - I really liked the Boa Bowtie pasta. + +Wines were solid and complimented the meal nicely. + +As with the Tempe location, the best part for us is always the Shrimp Adriatica appetizer. We could just eat a big bowl of that with bread. The sauce is amazing, the shrimp is well cooked. The only downside was that it was just regular french bread (or similar) - the tempe location has the fancier, tastier varieties of fresh baked bread. But the quality of shrimp and sauce was the same. + +Service was slow at first (we went late on a Sat night as they were slowing down), but was friendly, made great recommendations and were very helpful overall. By the end of the meal, I had forgotten about the slow start. Think we just walked in at an awkward time, which as I said, they really made up for by the end of the meal. + +Also, the warm butter cake was decadent. Maybe not as good as Mastro's butter cake, but it's on the way there. Really tasty, very fresh. I could have used some fresh whipped cream or a little vanilla ice cream to go with it, but that's a personal thing. + +On a side note - the Zinfandel they are currently offering (think it was like $6-7/glass) is fantastic. I was impressed at the quality compared to the price. + +We'll definitely be back.",review,4GBlFEDgO3BTiIVZCS_21w,2,3,0 +-WZIxGXJHMGidZXRhKxP3w,2012-03-01,c7IqCodpfYKnSLYIND9H4g,3,"This Mimi's is near the Reach11 complex where we were attending a tournament. So, afterwards, we came here. + +The short version is that this is just like the Mimi's in Chandler. + +The food is fine. Not great, but fine. The service was OK too. Everyone enjoyed their food (I had the chicken pot pie). None of it really struck me as ""French"", which is Mimi's motif, but it was good. In fact, the kid had chicken picatta, which is Italian. Not French. They do have quiche, so maybe that's enough to claim to be a French-like bistro??? (Not in my book, honestly.) + +Anyway, I'd call this place average. Really, I should give it 2.5 stars, but that's not an option with Yelp. An OK place to stop if you're in the area and looking for food. You could do much worse.",review,Mb0psF4WQF7gZSuZafVr-g,0,1,0 +rE2InW2Jmjy6hzH3p4Iyjw,2012-09-21,ZZAdLWwFemBl98vEVOlAMQ,5,"My sister and I went here the other week and got gel manicures! They turned out beautiful and lasted forever! Ithink Biagio is now my go to nail salon! + +Keep it up!",review,6ts41fCsDKHbFZaKOMNmVQ,1,1,0 +xWlCgISVtozxCztPA4nGaQ,2011-12-28,3IQB2gP2pj_r-lPC1mxuDw,1,"If you are over 24 you are too old to be here. + +First, this place has beer. Don't order mixed drinks, don't order wine, both are gross unless your sole purpose is to get trashed, which is the mission of every underage and young, young 20-something at this bar. + +This is the place you'd go to with your fake ID because when you're 19 this is what you think a bar should be. + +Expect people over drinking and throwing up very early on in the evening in the bathroom.",review,JF05ffi0qdheB9Ti1kACOg,0,0,1 +cLojUtqkFpVIHFEvA_5Atw,2012-07-21,1WOTiEh2XU_RyUp5TdRZDA,1,"I had high hopes for this place, and it is really too bad because I love to support the Phoenix area restaurants, especially a Caribbean one and I had already been to the adjoining Rum Bar and loved the drinks, but the food was bad. It was not only bad, but by all means avoid the daily market catch. It was not fresh at all! Very over priced! For nearly $25 for a simple white fish they could have at least taken the bones out of the thing. It tasted like it had been sitting around all day (or two) in its own juices, and when I let the waiter/bartender know he just ignored it and then ignored us until we left. I will never be back for the food. The Rum flights are worth a trip there, but that is it.",review,Iodo_uXYfCZc65rWQ-JHzQ,0,0,1 +TfTlOE6h9E9o34dEkw9L_w,2008-01-14,ohJHvAieUmjf3WWWs7bfjA,3,"I really wanted to fall madly in love with this place, I mean, a British themed pub in Heritage Square? So promising. + +As you walk in, the bartender is standing behind in an elaborate wooden bar structure. This made me think publican instead of bartender (as in ""Mate, I'll take a pint and d'ya have any rooms available?""), which is probably the idea. As there was nice selection of draught beers, we walked around to the bar to the right and ordered a couple of pints. I ordered a Boddingtons, my friend ordered a Stateside micro brew. (Would have been nice if they had Old Peculiar on tap, but you can't have everything.) + +Due to the combination of things cooking in the kitchen, it smelled a bit like my grandma's house. This prompted us to make a beeline for the patio decorated with super-heavy wood furniture. I assume this is to discourage thieves from selling their tables and chairs on the black market. Smart. The piped-in music selection that night was a bit off-putting, in fact, one of the other patrons commented on it as well. It appeared to be a satellite radio station that specialized in 80s hits like Wham! and Depeche Mode. I guess George Michael and David Gahan ARE British. Indeed! Wikipedia just informed me that ""Dave Gahan (born May 9, 1962 in Epping, Essex, England) is the baritone lead singer for the English electronic band Depeche Mode, and is also an accomplished solo artist."" Now I feel better. + +There are many cozy nooks in this place, so that would be a good thing if you wanted to have some one-on-one time. They were also playing football (soccer) on the flat screens, so should make some team scarf-wearing Brit ex-pats in the Valley very happy. + +Will I be back to try the food? Probably at some point. But, for another round of drinks, I think I'll wait for a Friday or Saturday night when it's hopping.",review,OYpsdMcpdCdlkknpgpFMLA,1,1,1 +sTq5I-5lDkMqi89e26I7JA,2011-06-13,50zV_OG4FADQR96tGa-kFw,2,"Gary Betz, DDS with Southwest Dental Group in Phoenix (Ahwatukee) +Dr. Betz was nice, but the office...well it seemed to be the unfriendliest, coldest dental office I've ever been to (out of 6-7 in my lifetime). I used to complain that dentists' offices were too full of perky, chatty, overly friendly clones, but now I miss those offices. I saw nary a smile or warm greeting - businesslike efficiency seems to be the norm here. Dr. Betz was friendly and smiled, however. No complaints about him, other than my feeling that everything was rushed. We didn't go over my history or much of anything, but we'll see if the next visit is better. +Postscript: After getting home from this appt. and reading the horror stories on various review sites relating to ALL Southwest Dental offices, I changed my designated dentist and went to Foothills Smiles instead. Please see my review of Foothills Smiles on Ray Rd.",review,MDVoSLBTqsGsC4jztAs4PQ,0,1,0 +YldXB1hRpnE1CWLF3mvgpQ,2011-10-14,U1Gzsqjz5n6S5WWCwlImmA,5,"Hnnngffff their signature spinach pizza +It's the only thing I've ever ordered there +And it alone warrants 5 stars.",review,82IMwHfXtr8bjidycFMyIA,0,0,0 +bRk44ShCT0osos-1xaTRyA,2011-01-14,8GwkYT8MC_Imd7bISh_FiA,3,"If I could there would be two reviews here. The golf course its self would be an easy 4 star based on price and condition. Customer service would be a 1 star. + +Don't bother trying to be friendly with the pro shop staff, these folks are just going to through the motions of taking your money and doing the least possible to get their paycheck. But since the golf is such a great value and people will continue to flock to this place in droves I don't see them needing to hire people with personalities any time in the near future. + +The front 9 cart girl is friendly as is the lady working the snack shack on the back. + +Another thing that didn't impress me was being a walk on, renting a cart and being told that they already had 2 carts in that group. I am used to being able to have my own cart instead of riding with a person I don' t know and being subjected to their cart skills or lack there of. Turned out okay but just struck me as odd. + +I will continue to go back for the great value but I hate to reward bad behavior.",review,M31fQaXjn54y-Rx8ADjldA,0,0,0 +xmtKVO7C7KYVqMBe2eQq3A,2012-06-23,Ja8SkPkWQmiIS1ZtFvNfYA,4,"This GB is one of our favorite places to stop for snack and good seasonal beer. We try for Sundays to do our shopping in the area and stop here....because it is Happy Hour in the bar area all day long. Great specials on their beers, wine and appetizers. We have tried several of their appetizers, but you can't beat their garlic fries here!! YUM-O! +Anyhow, the service here is always great. The hostess, bartenders and waitress are always friendly and ready to take your order. It is especially nice when the weather is beautiful then they open up the patio/bar area. Great place to watch games...plenty of TV's. I frequent the Mill Ave. location, because I work in the area and it does not compare to the San Tan GB.",review,lsp7p2NuC5MX4_iuch3_OA,0,0,0 +tdeHd2AVYlEnz9F1UGb84Q,2009-06-09,MZuTe1I1u1tpb_RlGUHFng,5,"This place is fantastic. Great food, superior service, gorgeous decor... I had a Breakfast Casserole and a generous side of Cheesy Grits. My girlfriend had the Blue Plate Special which was a frittata. +The Breakfast Casserole is a medley of sausage, roasted vegetables, and potatoes with cheese, topped with a poached egg. There were no overwhelmingly strong or weak flavors, and I didn't see any extra oil in the dish. It came with a side of toast. I chose the marble rye and was disappointed only to see that the butter it came with was a hard stick. The grits were definetly made with milk and butter and had some cheddar cheese sprinkled across the top. The grits were more solid than watery which was a big plus for me, as I prefer my grits closer to the drier end of the spectrum. +After breakfast I ordered a bloody mary at the bar inside and it was spicy and delish, a really good balance of tomato to booze. I liked it a lot. What I liked the most, though, was the really good service and friendly attention we got from our server, the hostess, the bartender, the bar manager, the valet drivers, and even being greeted by the concierge and check-in when we weren't even staying at the hotel. I will definetly make it a point to come here again.",review,Xm8HXE1JHqscXe5BKf0GFQ,1,1,0 +kfscAJnLVf6J2uEte7g-5A,2012-05-07,P0u5R9_-lGDUPHDak5HBfg,4,"Yoli's has recently been popping up on Yelp's 'Best Of' front page. Many people are mouthing out and as the food whore that I am, I needed to go out and try it for myself. + +My previous research told me that there were many 5 stars and 3 stars reviews regarding the ambiance, service and food. It seemed that the place had be 5-stars for a while but trending analysis showed a decline in the late 2011- early 2012. Alright enough nerd talk- it was a Saturday morning, I was starving and I needed a place to have brunch with my lady friend in town. + +When it comes to brunch at Yoli's, you really need to leave all your expectations at the door. The neighborhood its in is a little sub-par, the parking situation isn't grand and the interior and patio decor resembles a home that stopped paying for landscaping services a long time ago. The tables outside are all basic basic plastic, they are not squeaky clean (or perfectly leveled) and the seating is pretty limited. If you are coming to Yoli's, you are coming here for the food and nothing else, this ain't no brunch at the Four Seasons. + +Their menus are strictly breakfast/brunch related but at a 2-sided page list, their breakfast choices do have a large variety of flavors and prices. The food is on the stealthier side with skillet dishes, omelets and diner-style potato sides. My friend and I ordered their most popular dish, the El Monte- Hawaiian french toast sandwich filled with egg whites, turkey, bacon and cheese with a 'spicy orange marmalade'. At about $7, the sandwich was pretty large and filled me up easily after just half of it. The french toast itself was soft and spongy and the bacon had some crisp, but the turkey was very thinly-sliced deli meat so it didn't have a lot of flavor and the spicy marmalade was tasty but not spicy at all. + +The service was a tad slow but the lady was very very courteous and nice to us, she just didn't stop by very often so we had to wait around for our drinks and our check for quite a while. Overall I wasn't blown away with Yoli's but I would recommend as a place with decent portions and good prices. As of now, a 3.75 stars on my book. + +I am a big supporter of local restaurants and I love seeing a family-owned business thrive. With a little bit more decor, faster service and a cleaner environment this place can return to be the GEM that people used to talk about. Yoli, if you are reading this- I hope you take this advice, we all want to see you succeed so we hope you can get back on that horse and impress the hell out of us. Good Luck!!",review,GRgBu4K7GOb3354esp_xkg,3,3,1 +dOUtKHQ8Q0eHFjKPmi07tw,2011-05-30,OJN24DHFXvN10MgBh565zQ,4,"Been going to Bailey's for the last six months. It's an older crowd during the day, but at night and on the weekends the crowd id much younger! +Bartenders are all friendly and the drinks are cheap, though they could be stronger. +I highly recommend it!",review,Lj2Gf-tvMVpwOGF5Z20bIQ,0,0,0 +G_2CWsU7GYwhNqptrLXUBg,2008-09-28,AKits-Hwzd56Ge3xBQxMNQ,5,"This is a brand new delicatessen who's grand opening was September 24th 2008. Since I don't have a kitchen in my place, this re-heat one-stop shop near my neighborhood will be a place I plan to frequent via walking. + +They have a cute cook book lounge and the deli layout is fun to just paroose. Their chocolate chip cookies taste home made. So nice to still feel like you have some input in the cooking preparation process when you live with just a microwave.",review,Bsu4ZahJSGiDOZYrsSe6mA,2,3,1 +eR5-nFI0Vp7EG2pIXQM3bw,2012-04-21,r-hzNCrugr1hG9m-zSWokA,1,"Cheap! Cheap! Beware! If you order Chicken McNuggets from this McDonald's they will charge you 10 cents for each sauce packet over the alloted quantity. Either go to another McDonald's where they don't charge, go to another restaurant that values your business and NOT nickel and dime you to death or don't eat!",review,Er4F-PTME7RsIwKainiR0Q,0,1,0 +dYLlSj_SWwHg1aA3Km061w,2012-04-07,lcl6dpr_voio2cWdIsqHIg,4,"So, I've been trying to check this place out for awhile. I love b-fast, almost as much as staying up late and sleeping in, so it did take me awhile to check it out before they closed at two (my average wake up time). In fact I arrived right at two, which having been a server, I know sucks. Our server Marci was super nice and welcomed us in anyway, without even one look of contempt, which I know is what I would have delivered had I been serving a table at closing time. The food was delicious, and it being a ""fuck it"" day, ordered bacon wholeheartedly. It was the most delicious, thick cut bacon I've had. And the rest of the meal was delicious and reasonably priced. Next time I'm awake early (or up late) I'll be back.",review,WHjMr9qABBcf-bCCWozzFQ,0,0,0 +tsom7jUEr_DetH65ZtEc3w,2011-06-01,ylSk-Jubr90POE9m_3u1oQ,2,"the promise of homemade turkey and roast beef drew me in, much to my dismay it's shredded. As Ramsey would say 'like a dog's dinner!'. I got the bobby with roast beef, so i could taste both. The bread was good, the stuffing was cold. The meat was chokingly dry. Dry dry. Sawdust tasting. I'm sure the other non shredded meats are great on that bread, this might as well had just been the stuffing and cranberries on the bread. Plus, the manager was bragging about how he just stands around and does nothing but micro manage. Donkeys! Lol. Make that guy clean the bathrooms!",review,FUMdzARf71drXyDZ7lkpWw,0,1,3 +ZLVX6bQt8HJH5d4pq5EJGQ,2012-07-10,mN_1gTFafPqH0hrzvUc83g,1,"Until they get their quality under control, we won't eat here except for lunch. We ate here last weekend and both had the roasted chicken. The problem was it tasted like it was basted in cinnamon and the sauce for the risotto had at least 10 whole peppercorns on each of our plates. I actually bit into to one before I realized that the sauce was just crawling with them. They could've strained them out, processed them in, whatever, just don't serve me a plate with a bunch of whole peppercorns. This tasted NOTHING like the previous visit when I ordered the same exact dish. When we finally let the management know that our food was unacceptable, he said the best he could do was a 20% discount. Well. we weren't looking for a free or discounted meal, but rather some acknowledgement that they actually cared about the food. That never happened. Unless something changes, the burgers are decent and that is about it.",review,bkv0EMVYiwWf6ULKbEdqRw,0,2,0 +8Hn5X1AqgmSLHRG2KgBJBg,2011-03-28,My9PkTKJDYoY9RmQuukTgQ,5,"holy shit i love this place. + +I have been a regular here for years. Eating at oregano's after a long work/school week is really something to look forward to. + +The food is great. Its reasonably priced, the portions are huge, and the drinks are tall. don't expect anything CRAZY culinary creations here, its just not part of the restaurant's culture. The food is simple and everything is tasty. + +I usually go with the Sausage Sandwich, or one of the pasta dishes with whole grain pasta, and one of their giant meat balls. Its always filling, +always good. + +Sure the wait is long, but they always have free pizza, drinks, and deserts while you are waiting. + +Service is always great. Friendly, prompt, and they don't bother you when you don't need them. All of the servers are always willing to play along with my friends and our inappropriate conversations, challenges, etc.",review,5p-E2IBx_r_UK2I2If03Sg,0,0,0 +CvoAB3wTchy9j8CE1eEVWg,2011-07-31,WoI-lFT6JTCR3BiMMbm3Zw,5,"My boyfriends company has been doing business with this PostNet store for the last 4 years. Service is friendly, prompt and helpful. + +I highly recommend it.",review,lr9jeBK-8E7FI2etUa2JFQ,5,5,5 +PmPOuRvuN3CoNOi1nBj_TQ,2012-07-10,YJmZi9HhtSHZVq95gmDxDA,4,Experienced happy hour for the first time. Amazing food and drink for cheap prices. Only downer the bar tender. It was a pasted on smile. I will return and take people with me.,review,VURvHke7yvGL673wgcp9nA,0,1,0 +IrKh06dXhLyiO4dVHGnLFA,2010-06-25,YCD10HgOr7j4v9OLne5SrA,2,"Meh. +Maybe it was just that we decided to dine in 10 minutes prior to closing, but I was definitely not impressed. I had not been here in ages. Probably 10 years, maybe 15. No exaggeration. I remember nothing but good things about Miracle Mile. I remember being excited to come eat here. +So one night while shopping at Arrowhead with a friend, I got a sudden craving for a pastrami sandwich with coleslaw and Thousand Island dressing. I was very excited to walk in and find that it was on the menu! I didn't have to special order it! +It was a good size sandwich. Big enough that when cut in half, you still have to use both hands. I took my first bite and was immediately disappointed. Not that it was bad. It's just that I had fond memories of this place and I was really expecting something near the level of perfection of the #19 at Langer's in Downtown L.A.....or at the least Like Gandolfo's in Tempe. Nope. It was nowhere near as good as either restaurant. It was just okay. The bread had a slight toughness like it was day old bread. The meat was chewy and lacking flavor. The coleslaw was really good and had the perfect crunch. The flavor of the coleslaw was not strong, but still masked the flavor of the pastrami. I will stick with Jason's or Heidi's next time I have a hankerin' for another deli style sandwich.",review,esomNneHvsEv91MmraM5ug,0,1,1 +dC6rDLGRoch_DOZk5kLkWw,2012-04-16,APFjViNd4-lV86c-nFLDhg,5,Nice Plaza. Very well located. Clean store. Friendly staff. All you could want,review,Zof_qo5X5tRQXvkuuR1RzA,0,1,0 +3wLLf8wRqD1ZQowi9aZSoA,2012-07-24,1dfvuxmDU8dUM-wobcJ-jQ,5,"Great place - nice ambiance, cool decor, tasty food and good service! +We were going to check out the Spotted Donkey, but finding it out of business, we noticed Grassroots across the parking lot and decided to check it out. My daughter got the brisket sandwich (she let me try a bite - nice combination of BBQ sauce, slaw and pickles - but she picked out the pickles and slaw!) The fries were quite nice as well. I tried the short ribs - asian fusion sauce with asparagus and jalapeño cheesy grits...I've never been a fan of grits, but these were tasty! The ribs were very nice...the sauce reminded me of something my Mom used to make (but I can't quite put my finger on what it was, but it was familiar). A browned with toffee flakes and gelato on top capped off a very nice dinner. (And you've gotta love a place that has the Gadsden flag as part of it's decor). Definitely will be coming back! (and my apologies to our attentive and helpful server for not having been more demonstrative of my appreciation for the food...it was quite good, I just wasn't in a 'dang that's good!' mood last night) Check this place out!!",review,faVvuyxRutEkKX1hK1GuQA,0,1,0 +mxrXVZWc6PWk81gvOVNOUw,2011-12-27,KbhAAiCG8ri9W5Gbc5p8nA,4,"Good food, decent price and a southwestern atmosphere. + +The food is decidedly better than the decor, but then again I've never been big on the southwestern look. Something about Antlers above my head while I'm trying to have a romantic night out with the lady just doesn't cut it for me. + +I (like most everyone else) recommend the big ass burger. You can't go wrong with their side of mac and cheese either and I recommend giving it a go regardless of how much you fill yourself with all their other delicious entrees.",review,aYDFqKsgNLzBi8PIhthmDw,1,1,2 +Izizcby4_u1u_d6suB9Jzw,2010-02-06,sxYEFZGur3BMJ6fCAUWphA,5,"I work on a local event called Ignite Phoenix, and somewhere in the mix we contacted Splinter Creative about helping us with the design and material for our event. We were completely new to this game and didn't really know what good branding and imagery could do for us. They stepped in, gave us some amazing ideas, helped us refine them, and delivered some incredible material that wowed everyone who attended. + +So we asked them to stick with us for our next event, and they did it again. They keep upping the game, and I now work with them across several different business that I work on. They've helped me through several difficult creative areas, and the end result is always sharp, professional, interesting, and engaging. + +I prefer to work with people who are passionate about what they do, and do it well. Splinter fits that bill perfectly. Highly recommended.",review,Znu5KKqytHfmjbXfQo3f4Q,1,3,0 +_HTE4pOKeJC7kcxiCF9vTA,2009-11-03,yTDqNtZ5Ye7Jrv3h6tG_dg,5,"I don't have much time to write this, but I do want to say a few things. + +I had four things so far here. My friend and I both enjoyed them immensely. I paid $16 + tip. + +I had the [A1 - Cha Gio - crispy egg rolls ] & [A2 - Goi Cuon Thit Tom - spring rolls] to start. + +Oh man was this delicious. The first thing I loved when I walked in was the ambiance. Dim lit and let the sun do the lighting - very zen - if you're into that. I felt very comfortable here. + +They had four sauces on the table. I have no idea what they are, but the one with red pepper flakes and oil -- the darker one -- oh wow. If you like heat added to whatever you're doing -- wow -- this stuff is for you! I loved it. + +Then I went with the Pho tai - sirloin soup. [P2* - Pho tai] - wow - broth was amazing. Everything was. + +For me, enjoying food means I need a few things. + +First - awesome food +Second - ambiance +Third - presentation + +They had it all. I was very impressed by place to the plates. Don't change a thing. I hope your business is very prosperous!",review,Cc4k7m1_CWeAz5JWSkoVpw,1,1,0 +xsSnuGCCJD4OgWnOZ0zB4A,2011-04-22,6sWv0_Ww4dHw89GBClsteQ,5,"The Valley Beer Drinkers Meetup Group has been coming here for months - since before the name change - on occasional Wednesdays for $3 craft pints & the fantastic wings special. We've always had a good experience, and the extensive, rotating brew selection keeps the venue fresh. + +I've been urging the owner to add at least ONE Pilsner to the IPA-heavy menu, and last night he delivered with a quintessential model: Munchener Spaten Pils! It was great. + +Adding to the experience was the excellent food. Portions were generous and satisfying!. One member ordered the Fish & Onion Rings, and when it arrived, two others immediately ordered their own! I can't remember better fish (pollack here) or more perfect onion rings! Homemade potato chips were remarkable, and the fry cook definitely knows the craft! Diners have many options for sides w/ entrees, which is a generous touch. Only the cole slaw was a bit bland. + +Service was friendly & generally good, but not attentive enough later in the meal. Thanks for separate checks, too. + +I really look forward to returning for brews and to further explore the enticing menu!",review,8-3AWD4V5HitvOtwnQCDIg,0,0,0 +nL9tCTn4Sswcwcdkol4URA,2012-09-07,kSASs0a8bHQfYUVNLt527Q,1,"Do not get your oil changed at this walmart or any walmart. We got a oil change and they dented our oil pan and now it leaks and they are not taking responsibility for the damages they caused. I have only had my oil changed for the last year here and they are trying to put it off on someone else, when no one else has clearly done our oil. The insurance for walmart wont even look at my vehicle and had already decided they are not at fault. I had a 3rd party appraiser look at it and they can only determine it was from an oil change. I have no other option but to take this to a lawyer.",review,W8yvAp2i9c1XDQ7d9lOz7Q,0,0,0 +wP5849J1DKB2KS3M6UwOAg,2012-04-22,zEMVQYiLAO_OMD3CwJTucQ,4,"This is a fun POOL party club in Scottsdale next to everyone's favorite, American Junkie. I have never eaten here, other than a dessert that I don't remember. ;) It can also be a fun place for after dinner drinks or dance. The ambiance of relaxing and drinking next to a pool always brings about a good time. The music is LOUD and the bartenders are nice. Their bathrooms are clean and pretty. + +Spanish Fly rages during the daytime summer weekends, and is a great place to hang out when you still want to enjoy the outdoors and it's blazing hot outside. I will be going back - glad to have you in Scottsdale, Spanish Fly.",review,Yz7i36gFLsuFSPSCqBBp8g,2,2,0 +3ez4Qs56C_cC-l8x08l6Zw,2009-07-30,2qRm-9tGf7citNciO9oARw,4,"I can't believe I didn't write a review of Metro after my first visit but I got a second chance last Saturday night with Dottsy Z, Andrea K and company. We had a reservation for 8PM for 4 of us, and at 730PM Andrea asked us to add 2 guests and when Dottsy called Metro they said of course, but please be advised you may have a little wait for the larger table. Which leads me to the only bad point of the evening: + +We had to wait ONE AND A HALF HOURS for our larger table. We had all expected and accepted a 30 minute wait. After about 40 we went to the bar to get some wine and oysters (otter creeks = yummmm). After an hour had passed and no one had come to address the situation with our group, I approached the hostess and she was very apologetic and offered to comp our bar tab, which was incredibly nice. + +When we were finally seated our server was friendly and attentive and had gorgeous blue eyes. Hello! We were all starving and got right to the point with our orders: I started with the cucumber soup and no amount of yums or mmmmms can fully describe the delight that was set before me. A cold soup, this is made with cucumbers, buttermilk, dill and olive oil, with chunks of lump crabmeat and a dollop of caviar thrown on top, because why the hell not?! Also, the soup came in a really large bowl and I was full by the time I finished it. I did soldier on to my main course which was the Moules Frites which is what I had the first time I came here and is a truly inspired dish with juicy fresh mussels, and a broth with thyme, garlic and perhaps a little white wine. Then to add insult to injury they serve the huge casoulet with a hearty portion of herbed french fries that were the perfect crispness and didn't leave oil on my hands. + +Sadly I had to leave some of those friends behind, but only because it was time for dessert! I chose pot de creme which is normally topped with brioche. I requested a brioche-free pot and it was no problem. I was served a tiny ramekin of creamy custard topped with a sort of peanut butter syrup/creme and three slices of caramelized banana. It was really yummy though within 10 minutes my heart was racing from all the sugar. + +I will point out that this dinner took 2 full hours (we left at 11:30PM) making this the longest I ever spent in a restaurant (3.5 hours are you kidding me?) which is why I ultimately docked one star. Based on food alone Metro Brasserie deserves 10 stars.",review,PoQOIZc2q5nud7uVz_jdjw,2,4,1 +LzNJLEIo4gh-X_rmDkNkNg,2011-11-23,pdvRbPocU_HJ8ufL02uZvg,3,"My wife and I stopped by last weekend to watch football and sample a couple of their brews. The food was great could be some of the best french fries I've ever had. The beer was good. Noticed almost everyone drinking the house beers so it was nice to see that kind of support for an established micro brew. There was a large crowd for football many folks wearing jerseys and everyone really getting into their game. If your looking for an energetic place to watch football and grab a good bite this would be a place to consider. + +UPDATED 04/05/2012 lowered to 3 stars. + +I have been here a couple times since my first review and it really is just an average place. The fries are the highlight. The place is small, loud and well your AVERAGE pub or brewery.",review,QnMPMD8Nh3ErZGfMRGAeYg,0,0,0 +_ELurClSg26jIcRmhq3F_w,2011-08-31,VGZvJAI7UNQLQxwY-fSVvg,4,Like earning cheaper gas,review,_AmdPmOiR00XdTx_BIDMFA,0,0,0 +MUT6gWy0NtuV2IioiYUWFg,2007-09-27,_JsmctXZTG6MEstWZPN2eA,5,The democratic party of Arizona consists of a nice group of people. I visited their office several years ago with some questions and they were quite helpful.,review,T2u4D_GmKo5KbDiXLRTcyA,1,1,0 +0ONypOKIhttBz9IJzBE8jg,2012-10-05,KFvySZqGW0EFPGJ6MZo6JA,1,"It was my Birthday and my wife, her mom, a dear friend and I headed to Fleming's Steakhouse in Chandler, AZ. We heard only great things about this place and wanted to experience their 'unforgettable' steak dishes. That, we did, unfortunately. + +The restaurant was lovely dim-lit, adequate atmosphere for an expensive steak place. We were seated immediately and tended to by the waiting staff. The small roll of bread and two kinds of butter were good but insufficient for four hungry souls and we polished it up right away. No one offered to bring more. Our waiter told us about the daily specials, after which we ordered food and wine. After a short wait, four large dinner plates arrived. I was the lucky one, my steak (a large rib eye steak, ordered medium-rare which tasted very good despite two large blobs of fat) was sitting pretty in the middle of the large dinner plate. Nothing else on my plate, just the steak. I looked around at my wife's plate and couldn't believe, her fillet mignon was laying there, in the middle of the large dinner plate without anything garnishing it, be that a glaze, a leaf, a slice of whatever! At the prices asked by this restaurant, it felt like an insult to each of us to have such a poor presentation of a steak!! We asked our waiter for a side dish, mashed potatoes with Parmesan, and when they arrived, we couldn't believe it! There were no more than two scraggly potatoes turned into mashed potatoes, or about a tablespoon of mashed potatoes per person. Mind you, they tasted good, but at over $9.00 per side dish? In short, we left hungry and wondering why we spent over $200 for the entire meal. + +Next time, we'll go to a well tried place for steaks and more. Durant's, downtown Phoenix and worth the drive.",review,WORShVhq7IwMY4iizc1dAA,1,2,0 +kgPjOtSeMd3CMdbnEmHbeQ,2012-04-08,bva8boLXU1sqys0EjkE5WQ,3,I didn't try any food hear but this place seems like it has a split personality. Tons of tvs showing sports so sports bar. At the same time there's a dj blasting club music. There weren't that many people dancing. We went here because the place next door had a huge line. One plus is that theres a second bar near the patio that we stuck by. This place to me was...meh.,review,5DJGsF4L5UFY5XOBOQCARw,0,0,0 +Nz_AasmpsQ8MLSqhCTRVoA,2012-02-21,iJ5MEi9jzAthoK45BpuCRw,4,"I only recently discovered that I do not hate Thai, having never tried it, so this place was right up my alley. It's literally 1 mile away from our home and has a pretty extensive menu. The atmosphere is nothing to write home about, but if you're a fan of pastels and the early 90s, you'll love it here. You may even want to move in. Our service was a little slow, but the friendliness of our servers (yes, multiple) made me feel ok about waiting a little bit for a third beer. Overall, I'd say this gets a thumbs up from me and my other half.",review,g2ihR0ZFKCEnKB7YPviuJQ,1,1,0 +5SS69rC8XWvdlD1OHifEEQ,2011-11-24,CzLPA9cRfz8lHu_LszV73Q,4,"I ate here on a Sunday afternoon and was impressed by the food quality, very friendly service, and speed of service. On the strength of other Yelps, I had the gravlux with dill mashed potatoes and tomato basil salad. All excellent as others have said. I had broccoli and cole slaw as my other sides. The broccoli was tender without being overcooked and the slaw was a pleasant vinegar-based, not creamy, variety that complemented the rest of the food nicely. The food filled the plate without being overwhelming and I found room for one of the Beaver cookies, actually two large waffle-wafer cookies with a lightly flavored lemon cream between them. The cookies are kept in a chilled pastry case, probably because of the cream filling. A pleasant meal on a hot summer day.",review,V80GMVxOodncfnloTVxXyg,0,1,0 +n_YHTTG0QIjZ3055wReefQ,2008-09-14,mj1KE6poy83L-rxaWMGS7w,4,"We stumbled upon this little place in a worn strip mall by accident, but it ended up being a very happy accident. + +Yes, it is true that the decor will not be gracing the pages of fashion magazines anytime soon, but this is a clean, no-frills kind of place. There is also no point in coming here if you are pressed for time, because it is not fast food by any stretch of the imagination. Most importantly, the food is good. Really good. + +The menus must have changed since other reviewers visited, because there was no Arabic on the menu. Everything is in English. I had the falafel plate and my companion had the lamb shank and rice. Both meals came with a wonderful lentil soup that I have had at Fattoush many times- but this one was so much better. The falafel plate came with falafel of course, a questionable salad, pita that looked homemade, and some of the tastiest hummus i've ever had. It was a huge amount of food, but it was so good that I was compelled to order an extra side of hummus to go with the leftovers. The lamb was apparently very tasty also- i'm not much of a lamb fan, so I didn't try it. The accompanying rice was very tasty though- very complex with many different flavors, but none of them were overwhelming. + +At 7.99 for the falafel and 9.99 for the lamb plate, the prices are more than reasonable, especially when you consider that each entree can easily end up being two meals. + +I admit that I am partial to Middle-Eastern food and rarely meet a falafel that I dislike, but this was definitely one of the better examples of the cuisine in the metro Phoenix area. I will definitely be back, and maybe next time i'll try the chicken.",review,N7lSh49zQ13sG3Jpa9E6cw,3,3,2 +w2PHq5wfGuqWmHAruLtZ0A,2011-06-07,pa_qmlMbYpFfU407fGDVDg,1,"Terrible experience here. They cut up my foot when trying to remove a callus. Also, they told me they used shellac when it was really gelish. Wish I could recommend, but I wouldn't want anyone else to go through the same experience.",review,090kdP3SHYtabwcf2PBUkw,0,0,0 +aRkYtXfmEKYG-eTDf_qUsw,2012-02-24,IcBdKo0DcyOjAvaKGm9cXQ,4,"Hipster hangout you can drag the kids along and not feel bad about it. + +The place is setup like a house and the first time you go it is for sure confusing. Do I sit down or go to the counter or bar or what.. Its kind of a free for all. I have been a few times and still feel a little awkward when I walk in. The hot chocolate is great and the egg sandwich tasty. The mac and cheese for evening is also really good. +The service is ok, but not overly helpful or friendly. +The place is dripping with kids too cool for school, businessmen, and families... so a great spot to hit up if you are in downtown phx",review,Br9mpMhkVunsp8Un5GpYWA,0,0,0 +0gQrhOYWdO0XVZEKtOrvaA,2011-04-08,dQfplOHYSQKjCeYxcLaDlg,4,"I usually throw away those value pack coupon envelopes you get in the mail, but decided to look at them this time & see if I'd use any. I pulled out ones for the dry cleaners, zoo, a burger/hot dog joint & Red Devil. + +Most of them were for dine in only but a couple were for delivery as well, so I used the one that was for a 16"" cheese (toppings were an additional $1.25 each) & 20 wings for $21.95. I had looked at their website before ordering & the combo (pepperoni, sausage, onions, mushrooms & green peppers-but we skipped the onions) sounded delish so we got that with the NY mild wings. They don't have their desserts listed on their website so I asked the guy who placed our order & decided on the cannolis (1 for me, 1 for hubs). He said it would be a lil over an hour & to my surprise it arrived in 45 minutes. + +The pizza was good, not Mamma Mia's good, but good! The wings were bomb; crispy, the right amount of sauce & they smelled amazing! The cannolis were pretty good but we didn't really prefer their ""style"". Instead of chocolate chips inside with the filling, the entire cannoli was dipped in chocolate. + +Total with coupon, $3 delivery fee & tip was $47. Not bad at all considering we will each be getting 2 or more meals out of it. We're fans & would definitely order from them again...maybe even dine in eventually!",review,33vUIil_GCaT92aUaZhRXA,4,9,4 +4QtD359vkU7Jq8vP0uQEww,2012-07-10,xA66YOFvpeYye85ErIgCEw,2,"I've never had Thai food before so I suppose I have nothing to compare it to, but this restaurant didn't serve very tasty food. Maybe it was just what I ordered. I don't know. Plus it had a funny smell. It wasn't terrible but I'm not going back.",review,O0yM2ayRr6R5aYizdb6xxA,0,0,0 +FV0BkoGOd3Yu_eJnXY15ZA,2012-01-13,gaKdsWEKlsCdE6w-gdQZSQ,4,"Make sure to explain to your friends that it's not a chili place. + +Every time I invite someone to check this out they assume its some greasy spoon that serves cowboy beans. It's actually a upscale semi-formal restaurant and......the food is delicious and intelligent. + +I've been here for all three meals. The brunch is good but the dinner is what really sings. + +If you like mushrooms, get off here and get your tail to Cowboy Ciao. The Mushroom Pan Fry has something like 10 or 11 different types of mushrooms. I'm not the biggest mushroom fanatic but even I thought it was awesome. + +If you've ever read one of my reviews you know I'm all about a good burger. The Wagyu burger here is freaking phenomenal. Challah bread AND a truffle aoli AND some amazing bacon..........MY GOD! + +Definitely recommended!",review,4gIi4L7e870qFbnRemaoBA,0,2,0 +3vKhV2ELR2hmwlnoNqYWaA,2011-03-29,Dgk7tJlJ_UOdu6ppfI0gUQ,4,"Family business bagel shops are my favorite. I found this place through Groupon and decided to check it out. The name itself intrigued me as Lox means salmon fillet that is cured. I didn't go with salmon, but I got a honey wheat bagel with veggie lite cream cheese. The cream cheese was freshly made with carrots, garlic, and celery. It had a light taste to go with a healthy and hearty sized bagel. My friends got croissants with cheese which tasted delicious as well. The prices are very reasonable here and you can order bagels by the dozen.",review,AkJFqLqHHAKY3H5R8p7cPQ,0,1,0 +BO41AXSq4utrICj0uEpn-A,2011-05-06,nd7kBf-hAUwHLk4Jb0euWA,4,"LOVE it here. I stay at hotels about 80 nights a year for work, and often go to Phoenix. Gotta say, if it weren't for the ""hood"" neighborhood, I would've given it 5 stars. The restaurant next door, Bobby Q, has rave reviews, so it seems like a convenient place to eat, but that seems to be the only dinner place around. Good thing it's the Residence Inn, with a small kitchenette. + +This is probably the cleanest hotel I've stayed in all year. The dishes and silver wear are very clean and housekeeping keeps it that way daily. I've stayed at places twice the amount of this Residence Inn in Scottsdale and dishes in the kitchenette were filthy. + +Small workout room but you can go to the LA Fitness down the street for free. Oh, they don't skimp on breakfast-waffles, eggs, sausage, yogurt, fresh fruit and hot and cold cereal. + +Beds don't look comfy but they are Devine. I had some of my best nights sleep here. It's nice to stay at a place that is more like a home than a hotel.",review,09rOSu_0O1T0m9y9Soe39A,0,1,0 +UmhTiNOKareQDP7D9aAnKw,2012-03-10,lmhiWjhTU7eTmY5H-53VYQ,5,Food was really good. Waitstaff were all really friendly and helpful in selecting drinks and entree. Would for sure go back.,review,EZ_Qltx0iJyDN--HzLcXQg,0,1,0 +5kRug3bEienrpovtPRVVwg,2008-09-04,OlVMqrJbFsxLOrBzqtZYDw,5,"Mostly I love the Rokerij just because I love saying the name. + +But the food is also killer. I had the most amazing chicken, and the sides, which usually I just take for granted as filler food, were sodelicious that they caught my attention in a big way. I also tried my date's steak, and while it was fairly spendy, it sure seemed worth it. + +The feel of the place is great too, with the dark stone walls and coziness without feeling too crowded. We ventured downstairs to look at the bar, and had we been there early enough to snag a couch I wouldn't have wanted to leave. + +It definitely feels like a splurge, or somewhere you'd take a business associate or date that you wanted to wow. It's manages a high end feel, while remaining unmistakably local. I can't say I'd suggest it just for any old night, but it will stay on top of my list for special occasions.",review,-txH2zJSBZQHO6RWvoWXuQ,3,3,2 +QC6UE93iVkVIjs6MphM56g,2011-08-26,RmE1ZadEQFUcxwMddBAU-w,5,"This is a great MMA gym. Instructors are profesional, the facility is clean, and they work well with all experience levels.",review,b9F4vyffz96nR5Scvfujjw,0,0,0 +8N4SCmREZji5mnVqZDdQJA,2012-02-01,1BtPDuBzY7_5cIX5k9rlqA,5,"We have a show quality teacup Yorkie and a 5 Pound Maltese, who has issues, and they handle them beautifully! The owners attitude is all about making sure you are happy and your dogs are too! We were using a place across the street where the owner was all about taking your money and then booking you with who ever was available, even if you had an appointment with a particular groomer! These guys are the best, they CARE, and it's a pleasure to give them our business. Just Go!!!! :-)",review,JMQFTlKzppR7svUQIKCs_g,0,0,0 +HiTpXu1BNE2DlvjyqpObjw,2011-05-02,gVSKe5I6cpUSHvq9g6RlGA,5,"I live within walking distance of the Japanese Friendship Garden, so I enjoy it frequently. Once inside, it's hard to believe you're still in Phoenix. That's why I was so happy when Groupon recently offered a half-price membership. I would join in a minute, except they're closed from May to October or so. Half-price membership seems about right. + +The atmosphere is gentle and meditative. I feel safe sitting on a bench and actually meditating here. The koi kind of freak me out. They've been fed so often by visitors that I feel fairly certain they'd eat me if I fell into the pond. Last time I visited, there were baby ducks in the house. So cute and fluffy, and they had no fear of people.",review,2LCrT_BOJvGV4xi_lmoRcA,1,2,1 +NAkRjPhS4yCD5trp0dY-bQ,2008-10-06,EIIwwLearfRcBUaDdzcVkw,2,"When I walked through the swinging doors around noon on a Sunday, I walked into Hooterville. Think silicone, fake tans, bleached hair and teeth and caked-on makeup. And the men here overdose on testosterone: full of bulk and attitude. Think sideways baseball hats, torn jeans, flip flops and gold. Even at noon on a Sunday, they were on the hunt. + +Joining me in alienation was my San-Franciscan friend. We represented the world of natural size and color. To bring ourselves comfort and escape in this fake world surrounding us, we discussed environmental concerns. + +I got the Buffalo Chicken sandwich. Commensurate with the theme here, this was the biggest breast I'd ever seen. The sauce was super hot and tasty. The baked beans had a southwestern flare - with crushed pepper. My friend got the chili, which he said was slightly spicy hot but not temperature-hot. + +I didn't attempt the bucking broncho, for many reasons, but one of them being that there was nothing on it to hold on to. Too difficult for a delicate northerner like me.",review,M6hieO-LbXPG1WBQXjXA1w,6,6,6 +QCxXYA13PtkD3wec47_r8Q,2011-10-14,8utC26Ibsuna98Czj0xx6A,4,Great atmosphere! Awesome drink specials :),review,dv8X5uglDB_foGqju_lJDg,0,0,0 +e34tIpveepWkpvOuv_boqw,2011-07-28,2RSMZjSQlukiPMVpudH7vA,4,"Hard to miss with a Centurion guarding the entrance. + +I wished it was nice patio weather. The place was very cozy and a little uncomfortable padded banko seating. If the tables were only several inches higher, it would have been better! + +First off, we ordered Baked Brie and Raspberry wrapped in puff pastry hors d'oeuvres with a side of grapes. A couple of glasses of light and fruity red Portugal wines paired well. + +""Can I have some lemonade?"", nope, no lemonade. ""How about Sprite?"", sorry, no Sprite. So sad to see the look on cutie pie's face. Even wine bars would have had something for him to drink. ""Okay, water is fine."" He gloomly said. We promised him an Italian soda next door at Lola's. He cheered up. + +Killer pizzas, so I've heard. We decided to order the Mozarella, basil (pesto instead), white truffle oil pizza. The crust is amazingly toasty outside and soft and flaky inside. Good 14"" inches for $12 pie! We added Risotto with manchego cheese/chorizo. It was very, very, very rich! It was so rich, I wanted to reach for some bread to sop it up! + +We were so full and carbo-ed up! We didn't balance out our meals very well. Good thing we took the lightrail downtown. We needed to do a lot of walking after all that eating! + +Kudos to the chef and the hostess/server, they were absolutely wonderful. + +Donec obviam redimus!",review,c3yJNjz_K--z4CIpR7yhvQ,4,4,3 +VVeogjZya58oiTxK7qUjAQ,2009-04-13,n_m6asvzIpxloR9uZLLiQA,5,"There is only one reason why I shouldn't love this pizza. + +Waiting an OBSCENE amount of time for a pizza is a pretty big one. If this pizza was not as good I would be angry I think. + +I would tell you about it ( HERE)... + +but you know what its that good. I have had pizza around the world ,its not the best..... but this is pretty close to the best you are going to get in this area code. I would love to say don't believe ""the hype"" but yo there is a reason you have to wait sometimes as long as 4+ hours for a pizza on a Saturday night. + + Lets really face the reality of that night though. You are gonna want to hang around at other bars drinking with your friends anyway.Its certainly not going to be a cheaper night of entertainment either.. Armed with that information you know what to expect. While there is another place close by that is just as good but not as central.This is worth it just to know what people are talking about. + +This Pizza is wood fired and made with world class ingredients. The thin cust is perfect. +The service at least for me was rushed and sorta unplesant. We were literally the last people in there by the time they sat us, so I am not sure if that behavior / treatment is normal. + +Not a place to pop in and grab a bite to eat with a small group but if you are REALLY not in rush then this place is one of the best in AZ.",review,Akwr-Kqif-NylJ3-EUlnWQ,0,3,0 +zjPmQwY5L9CredUqFVttrg,2010-04-06,8LhtnziZX6vE1vChxLnJow,5,"Cheese Curds! They have been so hard to find in AZ. Like the Jalepeno ones too. + +Really good fresh milk. Worth the stop. + +Bring cash, not credit or debit cards",review,haJXuFgFFNZYYdFF50EJ8w,0,4,0 +xNmhVSujLo1kC9cgjOE-sw,2012-09-16,-wJMn0NQEqnp-nLnMOqOMA,4,"Icey iced ice... tasty and refreshing, Rita's delivers. You can't help but smile as you walk in the door, anticipating the tasty goodness that is lined up in front of you. They have simple cream ice, milkshakes, gelati, Italian ices, frozen custard, frozen custard cookies... and on and on. + +We stopped by on a random, warm afternoon after passing the new store and noticing the sign... a few samples later, we were sure that we'd found a winner. My only 'ouch' came when I found out the calories and fat in my Blendini mix. :-/ Glad I shared it! We'll just make Rita's an occasional splurge. + +Yum... Blendini! We recommend the Vanilla custard with Toffee. :-D + +See ya there!",review,fPHLPrymsyb6WSFFKoMrTQ,1,1,1 +Q6exnM7RmHdNMZqegdrmoA,2012-03-02,FqL-yYe1gYKzZXkz1h0irg,5,"I have lived all over the US, and I have experienced extreme lows and highs with dentists, but this dental group is by far my favorite I have ever been a patient of. I can't say enough good about them, so I won't ramble.... Just love them.",review,3ArIdn_lcSJdYLQo0a8srw,0,0,1 +fDZzCjlxaA4OOmnFO-i0vw,2012-08-07,G-bplPFfJ2VgIz-Jwa1nTg,5,"I'm really not the type to want to go out for breakfast, I'd rather save my dining money for lunch or dinner because I figure I can usually make just as good of a breakfast at home. However, there is no way I could match their french toast, it is just outstanding. We have been twice and I ordered that both times. The first time, I told the waitress to put the berry sauce on the side because I usually don't like fruit toppings, they are too sweet and fake tasting. But this sauce is delicious! It is homemade and very natural tasting, I ate every bit of it. We also loved the jalepeno bacon. My kids loved the pigs in a blanket. We had very nice service both times, we will definitely be back!",review,xiF7R4Sfyh4CF0vfXdeZkw,1,2,0 +Bc4DoKgrKCtCuN-0O5He3A,2012-08-28,ZSRy-oF6W-3tDtg24Lyybw,3,"Great ice cream, but still just ice cream. Really enjoyed the salted caramel alongside a scoop of sweet corn. Feel a little silly for driving from Phoenix just for the taste but no complaints.",review,22IWHu_YwKMSEXORQGX8bg,0,0,0 +PR5KXD_CUs05MGfXJ8CS3Q,2011-01-05,E-0eZiN9Ry6cva9Y_pN4ww,4,"Finally tried Pei Wei and overall we were very pleased. I ordered the Spicy Ramen Noodle bowl which was not overly spicy, and tasted good. Others ordered the Orange Chicken, Mongolian Beef, and several appetizers of egg roll, lettuce wraps, and edamame. Everything was good. You can also opt for brown rice instead of white rice for a healthier route. What amused me a lot were the Touch Screen Soda machines that had many varieties carried by Coca-Cola. It was pretty cool! + +Overall, good food, good service, okay prices.",review,Akk8XZQ0U0dt4MDxUjvagg,0,0,0 +FqzgT9Y-Yu7jiWdHnGW-kQ,2010-01-10,ndsvP1BcnQ_lrCjRtGgiXA,4,"Yumm yumm yumm! The burgers are fantastic and yummy! + +The service has always been top notch, fast and freindly. +Love the inside and outside environment. Could do without the TVs with sports playing on them...don't we get enough plugged in entertainment in our lives already?....but I'm probably in the minority. + +Kid friendly for those well behaved kids of course. :)",review,M9cZwNoSKQDUVwO0R8UwIA,1,1,2 +SjFl_V6BTGkmv4tbub-AVw,2008-09-04,XeD6j_ItpmuTjas2Z8A1rw,4,"PBR. Mad Dog 20/20. What??!! I was a witness to someone drinking Milwaukee's Best Light. Damn son. I guess if youre going to do it, do it cheap. + +Get there early if you're going on Saturday morning for the game, it fills up quick. All in all, it is was it is. An Ohio bar, watching football, peeps getting sliggity sloppt. Most are still drunk from the night before. Makes for good people watching practice. Make friends with your neighbors when you find a seat. They could be from Ohio and a new person to be ""besties"" with. + +Nice!! Thanks Mickey's, you rock... and roll.",review,ZqMS4ElQg-k1tQBC06h7lQ,6,6,3 +5M7YgorCUTEZkKYNbKDHTA,2009-09-04,9hje_tww4fP-j4GZeWmNpA,2,"US Airways used to be right up there w/Continental.. now they're down there + +I didn't even mind the fact that they started charging for their food.. + +But now they're going overboard.. + +I didn't want to bring a heavy jacket w/me to Cabo, so I wore a light jacket and I figured the standard blanket they give you during the flight would suffice. I noticed there weren't any blankets on board and when I asked a flight attendant for one he said "".......yea.. for $7"" I almost started laughing cause I thought he was trying to crack a joke. He wasn't. + +Introducing US Airways' ""nap pack"" comes w/crappy blanket, ear plugs, inflatable neck rest , for only $7! Use the money you were previously going to use to purchase your online crappy meal for your standard necessities! + +So I decline.. and they must crank the A/C up ridiculously to tempt you to purchase their stupid nappy pack.. cause the tip of my nose was cold and I just couldn't sleep at all during my flight w hile I was trying cover every surface of my body w/my stretched out light jacket. + +And you also suck cause you run out of your purchased meals...who doesn't pack enough for the flight? You suck at even saving money for yourselves..",review,R9d_W_y_2h7eEg-Ie4ub-Q,2,3,3 +le1IsRLrTq2Xo78RyFpsnw,2011-02-23,ncudV5yVmoT3PWvYorCszA,5,"Are you kidding me, this place is great. Perfectly sized bread, quality ingredients, cool staff. When I think dream sub, I think italian night club no mayo, and extra peppers. Don't get no betta!",review,588oY8EejEFCr-ym_2TR0Q,1,0,0 +NM2j6Y5NEyAseOi2sKzwGg,2011-12-24,b9KUO5Mga7k8wAn0iNpyew,1,"This place is worse than the IRS, at least the IRS admits when they made a mistake. But these arrogant workers will be caught dead before they hear themselves say ""sorry for the inconvenience"" or ""we made a mistake"". They gave me different information on two consecutive visits that I made, then Dorrie, some lady who obviously should not have been working that day because she was coughing phlegm all over my documents, then after she asked me to wait by the counter for 10 minutes while their system updated. + + I waited, 1 hour and 30 minutes later I finally went to the information counter and asked for Dorrie... I was told that she had gone to lunch 15 minutes ago and was told to go talk to another lady. She just dismissed me and I went to go talk to the new lady, who was also extremely rude and kept rolling her eyes and interrupting me before I could finish my sentences. Basically i spent total of 3 and a half hours waiting and getting attitude and nothing was resolved because of their mis information and Dorries idiot customer service ethics and the last ladys pride.. not one person resolved anything and they all were too proud to say ""we apologize for the inconvenice"". I recommend this place if you wanna be late to work 2 or more hours and having your mild mannered patience tested to the maximum.",review,BwUeCQcuZcOfHmbps6Wv5g,0,0,0 +GIGI8bJfN6HyPzmEW-QqjA,2006-08-08,9t7Sv30d5f6TAkoE3ofg-Q,3,Lunch here is delicious and well worth it. Dinner? Spend your hard-earned money elsewhere. If it's easy-earned money and you don't care to spend then by all means enjoy the authentic atmosphere and above average French food... just don't order the flat iron steak.,review,y4JCKsEm0KlwtmHpZhbA4A,0,1,0 +bfDQai9X59uWK-XgP0t6rA,2010-04-19,IdIHBl7zbdP7-yI-YzSciQ,5,"In terms of Mexican joints this place is the best. With the outdoor atmosphere, tacky decor and authentic food, it just doesn't get any better. The other locations are just as good. The staff is usually pretty cool too, although one time we waited a VERY long time to get served at the Scottsdale location.",review,0mqHhdKEdak_A1FBhFNXqA,0,0,0 +Mb46iSlA4qmTwXf-WrqtQA,2012-05-31,q1VCwOHnlaETDWg91r1rKA,2,"Yes, I've had better. + +The chai lattes are pretty good, but not worth $4.50 for a large(which was a grande cup size at starbucks). Prices are just the same as Starbucks, if not more. And they have a credit card surcharge for less than $5 spent. I still don't agree with that at any place I go too. I liked the local artwork displayed. But not impressed. If the prices were lower, then I could see coming here more often.",review,S-07w5CJfDmEBTNZ9V-ycw,1,1,1 +JokKtdXU7zXHcr20Lrk29A,2009-06-18,tRZ9jSjOkRoIhoLLajKHkg,4,"Probably like many recent college graduates who enjoys the drink, one of my life goals it to eventually open up a microbrewery. I tend to shy away from the idea of a brewpub since I believe that an establishment should place focus on either its beer or the food. Places that do both tend to have mediocre beer and food or excellent beer but bad food. Four Peaks somehow passes the test on both their food and the beer. + +First off, parking sucks and the place gets busy. I went on a Wednesday evening and it was packed. But with Happy Hour, what do you expect? Three dollar pints allowed me to try a bunch of their beers. My favorites included Kilt Lifter, Hop Knot IPA and the Raj IPA. They even held a delicious cask ale, style of holding beer that (thankfully) seems to be making its way into breweries and bars. + +The food included fairly typical brewpub fare. Burgers, wings, sandwiches etc. All of our items were of fairly decent quality. Or perhaps I was a bit too drunk to really notice the awful nature of the food. But fuck it, that beer was good. Hands down the best brews I've had at a brewpub.",review,gNF8usOGLdvdJL4aVp8IOQ,1,2,0 +WNy1uzcmm_UHmTyR--o5IA,2011-09-28,cJ_1IwpAn8TWdgi5vo-KUQ,5,"One of the things I love about my neighborhood is that Cornish Pasty is w/in walking distance. + +Every pasty Ive had here is awesome. My personal faves include the shepherds pie, the chicken pot pie, and the thanksgiving pasty. + +Yes its tiny and loud, but it adds to the charm. Also, the smell that you smell right when you walk in the door= heaven. + +We eat in and get to go. Tip for to go: have a beer or a cider w/ your wait.",review,X5GbNXY_nNoa_vTZDD0aCA,1,1,0 +NcJ4Ug6EX4t_WBh3E0mXhA,2012-01-11,l-CJ8jVBvdSJOWLqV3nYvw,5,"An organized & clean store, a well educated & nice staff, a great selection of baby/kid products! I will never go to a babies r us again. Thank you Chandler buybuybaby!",review,Xvw4kRnBNvOT4ZrpJHKifA,0,0,0 +-3WVw1TNQbPBzaKCaQQ1AQ,2010-06-30,d2Sd9AewFzjCEpI_DeMndw,4,"Perfect for a Quick lunch. And I mean seriously quick. Like ninja light speed fast. + +Under two minutes consistently from order to table. How can you beat that! One time they clock-in at 1min 45sec for a table of five. + +My favorites are the House Special Chicken, the Orange chicken and the Prawns. can't go wrong and you will leave stuffed and satisfied.",review,XM6M-WWbCAeLy83jrABkcA,0,2,0 +ykfL94V9KLT86s_tTzxwZQ,2007-12-24,d_cgE4KjLS7wblV3aMw7kw,3,"I know I might some flack for only giving this place 3 stars, but really....it's no different than Chang's. If I could give half stars, I would give it a 3.5. Why? Because I think it's better than Chang's. It's exactly the same menu (just not as diverse), but cheaper. If you are at this location, try Tott's instead. I bet you'll start going there more often than here.",review,_vTyqTbfhZ-SlQVxz9HH8A,0,1,0 +-4A5xmN21zi_TXnUESauUQ,2011-10-19,WFZ86IgC5vz_D0L43QKzHA,4,"MAN BUZZ! The breakfast buzz is the ultimate meat head drink. I mean espresso protein and smoothie all in one? Can't beat it! + +I have had many things on the menu here and all good. The bowls are awesome the breakfast club is out of this world and the veggie wrap add chicken(come on gotta do it!) is also awesome. Great drink selection, if you like Arnold Palmers ask for the Tiger Woods the next time you go in. E + +Atmosphere is super laid back with a great stay. This is the only thing to warn you about it can take some time if you don't call ahead but its worth it!",review,b927p9pWxM9EYoNr_6PxYQ,0,1,0 +z3yFuLVrmH-3RJruPEMYKw,2011-02-11,PNsEemFegniUx1guONCxjA,5,"Place is awsome. Got the beef cheesesteak and everything was great. The bread was possibly the best I have ever had. Price was pretty good. Just over 9 bucks for a whole sammich and soda. While waiting I walked around and I plan on going back for some shopping. Lots of pasta, sauces and just about anything you could want for Italian food. 5 stars all the way.",review,bADkBuUDonedhUd5KB598g,0,0,0 +ytpmoIty7loFB8kRYRtJHw,2012-10-11,8tE5X1kaUrZRLlWYA7KM4g,5,"Grew up in San Antonio and Austin. Have traveled extensively and sampled BBQ all over the country. The term Texas-style means beef, first. Period. And good smoke, and that ain't mesquite. Oak is king. These guys have changed the face of Phoenician BBQ forever. It's a shame that the Scottsdale location was touched by ... well, Scottsdale. Friggin morons. If you have not been here, you need to go down to 24th and E. Roeser and try it. Hands down the best Q in the area, including Cave Creek. The guys are FROM Texas and they know the whats, wheres and hows of Bar-B-Que. + +And for those ""the meal in a carton on butcher paper"" snobs who think that such is declasse, please, do me a favor... Head on down to Austin or, better yet, Lockhart. Stand at the front of the line at Stubbs or Black's or Kruez Market and loudly proclaim your thoughts as a BBQ aficionado. Just let me know when you are heading down so I can hang out and watch the ensuing festivities. Freud said it best: BBQ and being horrifically anally-retentive is ALL about your unfulfilled dreams of your Auntie Ma. Or, shut up and grow up ya infantile gomers...",review,RCDhIFQlSth-gQkojdN13w,0,0,1 +hWhVP-28LYP3llaMlAJ_JA,2010-07-01,KskfUgulzHQUFkh6gA5lNg,3,"I've been here a grand total of three times, and I probably won't be returning any time soon. It's not that the food is flat out bad, per se, it's just that there are many better options nearby. The first time I went on a recommendation, and the food was... OK. The 2nd time I went the food was still only... OK. The third time... well, you get the picture. + +The first obvious knock against Rosita's Place is the chips and salsa. They're not bad, but they're not complimentary. Given all the competition which offer free chips and salsa, you'd think these would have to be pretty darn special, but they're not. Good, but not outstanding. + +Secondly, the rice and beans are just OK (that descriptor keeps coming up in this review). The chicken enchiladas were fresh, but lacked any real flavor or spice. The machaca, which is supposed to be one of their specialties, was soggy... a BIG no-no for a dish that is a specialty in this region. + +So, honestly, while I wouldn't discourage anyone from going here, I'm not sure what some of the hype is about, especially when Rito's, Tacos De Juarez, and Comedor Guadalajara aren't that far away.",review,y-U_S1LUaCknqdi9PG2ftg,0,0,0 +I5ypI3aYbbTL8dAjnI3PDw,2010-02-14,psMnrkshrBBbqk-2SxX5og,4,"The staff is really helpful. I arrived without credit card due to a travel mishap and they were great about providing assistance to get me to a bank to help clear things up. Their bell staff is friendly and knowledgable. They can and will get you anywhere in town. + +Room was okay. Clean, well furnished and updated. I had a window overlooking the courtyard and I would recommend avoiding that. It can get a little loud at night. + +Banquet food was good. Not great, but good and plentiful. Good variety of dishes for everyone from salads and sandwiches to hot dishes. A few of the items were a little salty for my taste but with a buffet style service, if something didn't suit, you could replace it with something else. The break service was astonishing--they really go all out! + +If you are visiting during the right weather, do not miss the pool area. It's fantastic!",review,UgzVB_RRQEg0kZ3IibRuHA,1,1,0 +TzImzfIWkZTnetKl2a4-SQ,2011-04-15,wqJR3cK83U2vlLACC6ow0Q,4,"I have to admit, the reason I gave this place 4 stars instead of 3 is a) I want it to stay in business (which can be hard on Mill these days!) and b) It's one of the few places on Mill where you can bring your child without feeling like you may get heckled. ;) lol Now, I definately enjoy a night out without the babes too, but this is a place I go for happy hour with my husband and daughter. The beer/wine is good, the food is good (I like the southwestern egg roll apps), the price is good, the service is good, and the atmosphere is nice (thought I was going to say good, huh?). We love to sit on the patio and people watch.",review,GSZebDbIf0h_2MFv8xBGrw,0,1,0 +h7hr0v3E1ulU2sXNItD5UQ,2008-09-25,m7LUrlDnxNkU-_qkum7ocw,3,"Similar to Los Betos - Fiesta is decent inexpensive mexican food. The staff is nice and accommodating. I did have a pretty hilarious conversation with the girl at the counter though... I was trying to order my burrito without onions, and she kept saying ""okay"" and ""yes"" and nodding at everything I said. I would ask her questions and she would say ""yes"" and press buttons on the register. It took me a few minutes to realize she had absolutely no idea what I was saying. + +Aside from that, my burrito wasn't bad... nothing special though. The beans were from a can, the guacamole wasn't fresh (I doubt anything was), everything is cooked in or made of lard, their chips are flavorless and kinda stale, and they are seriously lacking any sort of salsa. They just have the typical generic nameless hot sauce found in these joints. + +As I said - Los Betos... but cleaner and a little better maybe. It's just a place for convenient late-night munchies.",review,Cp-PV8rsypbO-xBrQ6KmQg,1,2,2 +YQvg0JCGRFUkb6reMMf3Iw,2010-12-03,3NYw2YxTge_e5IX6pAskNQ,4,"Was here awhile back and Sharon H's review will sum it for atmosphere but i will try and cover my feelings on the taste. + +The bruchetta is great. + +Yeah really that simple. I haven't tried much but bruchetta here but haven't really been disappointed either. Even the ones that ""haven't been a fan of"" of the ones i tried when i have mixed and matched when getting to select I still would order over bruchetta at most places as they are still very good. Did try a pizza once and wasn't amazed but nothing stood out (it's been awhile since that). The bruchetta however comes to mind every time i hear the word. + +Oh and the service is very friendly and attentive. One night I was in and they had just finished a major catering event and it had said on the front door that the kitchen was going to be slow until about the time we arrived. Yet when we ordered and it took a bit to get the food (barely a delay in my book and if I hadn't been apologized to by the waiter probably wouldn't have know it was longer than normal) we got a nice little discount.",review,XeoAojoz5johV2MQ5ngNig,0,0,0 +zmFc8M-hS4uuyY0hklIpoQ,2009-02-19,kWilrefFxn6DLRqyT8-uPA,5,"Mmm dirty hipster bars. Let me count the ways in which I love you. + +You are cheap (we had $2 Stellas) +You are interesting (local art on the walls that I'm told changes regularly) +You are full of pretension (people watching is always worth the price of admission) +You are friendly (like minded souls can smell each other out) + +If you are in the Roosevelt district, I highly recommend stopping in for happy hour. Its cheap and hipstery. Both words have been used to describe me, so I am naturally predisposed to this place.",review,o33IBagNFxdJhIrRTl691Q,4,5,8 +EmlgWjs1ZzZEpDjZCSPLmw,2011-10-14,aqmUrTEgmyT9keQd7qGZsw,4,"The new Esplanade is fantastic! + +Food exceeded my (admittedly low) expectations. Everything packed a lot of flavor, and there was more thought and care put into it than I would normally expect from a restaurant that sources its food from a national distributor. For example, the breadstick that came with the Chicken Mac 'n Cheese was a soft pretzel. Cute, no? The Mac 'n Cheese and Chicken Fajita Wrap were on par with the best meals I've had at a TGI Fridays or Applebys. I mean that in the best way possible... This is simple whitebread American dining, but it's done well. Price points for food and alcohol were competitive with those chains as well... Most of the meals clocked in under $10, though soda was almost $4. + +Service was scary good. Push a button, BOOM! they're there at your side. Our drinks were refreshed before we could finish them. Super friendly waitress. Their efficiency bordered on supernatural. I mean, it's not like they can just look out over a one-room restaurant to see what's going on with their section of tables. So mad kudos to everyone who works there. + +There are two kinds of theaters, and you have to go to the AMC website to know which one your show is playing in. Note that the high-end theaters are 21+. Even the basic level had extraordinarily comfortable seating. Seats are arranged there mostly in groups of four. The enormous comfy chairs are worth the slightly higher ticket price. + +If you go during the day, don't pay the extra $1 to order your tickets from AMC's site. Otherwise, it's worth it: The seats are assigned. + +My only complaint is that the popcorn only comes in a small bag. Refills are unlimited, and you only need to push a button to get more, but it's difficult to share a bag with a group of friends without calling for more every five minutes.",review,P8KlUtWEu-b6ZwM7XjuxBg,0,1,1 +5hFnyiEboorArk7cbCYeXQ,2009-09-01,RS5693YyrmMzDvrempbizQ,4,"Seriously, better than ANY other gyro place I have ever been. The meat is the real stuff, not frozen strips heated up. pitas are hot and slightly toasted. HERE'S THE UNUSUAL PART : Absolutely spectacular fries! + +If you are like me and hate soggy limp fries, you don't have to worry at JT's. Perfectly crispy on the outside, soft on the inside - the way fries are supposed to be. I usually have to order my fries 'well done' and at other places they are STILL soggy. Not here. + +I have taken two Fry snobs here to see what they thought and they both gave them rave reviews!",review,79JSvNNh7qbNqdCYQRgAww,1,0,0 +OFBJtqWGSx6n6CchtVmoRw,2011-10-26,xu9YvBL07OX0qYm2nIohXg,2,"I thought I was really in for one of the best burgers of my life due to my fellow Yelpers' reviews but was sort of disappointed. I did like the fries in the shopping cart, that was pretty creative, but they weren't anything special. Same way I felt about the Delux burger. The meat was dry and the condiments were lacking which made it worse. I thiknk the bun was the best part. I did do a cool beer flight which was nice. The atmosphere is pretty neat here but I probably won't visit again if I'm in the area.",review,FQFsuPE8C3lppg7sZoRFRg,0,1,0 +FjQWjXvFCdrgdU3Rgi3b3w,2010-12-09,DmXM2yYnhyPCYoRs1oMeww,5,I try and eat here regularly. Hummus is great. Very personable staff. And the atmosphere is awesome. Look forward to the next time!,review,KBFLeo1pwwmkROhnYAbCGg,1,3,0 +V6BYjHM9SnXscfkln3hCdA,2012-09-09,K_bidLG2u6kLYQHobfJzwg,4,"This place has a great location. Hidden away in Old Town next to the art park of Scottsdale. Perfect place to take an out of towner. + +I suggest sitting outside. They have misters, of course, and umbrellas. Inside is just a little too cramped for me. + +Portions are huge! Not complaining. You are def. getting your moneys worth. + +On weekends make sure to come early- this place gets packed out! + +overall, a great breakfast/brunch place and good place to get rid of your hangover! ...plus being a Georgia girl- PBR tall boys woop woop",review,OW_Eh1DsEnlTWALBC1xCHw,0,0,0 +Y3cFaIPFSMOgOf7zsADMxQ,2011-05-22,DRGM2aBClukcUqlOYVYaYQ,5,"I really love this gym. It is so nice and well maintained. There is always plenty of towels to grab before a workout. The childcare is excellent and has the security part down. When you sign up as a member you and your child are given assigned wristbands to use during visits. The staff have always been good about ensuring the numbers on them match prior to releasing my child to me. You can even tune into the cameras to watch your child on the tv's that are on the cardio equipment. Childcare is also open 7 days a week and doesnt close for lunch like most gyms. There is also plenty of group classes throughout the day if you are into Zumba or cycling,etc. I recommend this gym to anyone especially parents needing quality childcare.",review,yAeo2D5NdtGuGG2o1M1aGQ,0,0,0 +NlxvN9wUw14qIS6ledk15Q,2010-06-04,DfuGHKBgN4lb1V7-EqEiiw,4,Good place and food I'd very good for bar food. A bit pricey but good atmosphere. Great service.,review,kpdpcrEauxA2bhg-f05W-w,0,0,0 +69t2S1u7Rf6qM_c14b42xQ,2011-08-24,1l02GfpnOu59kriBnLdswg,4,"Could use a remodeling job, but the food is really good for the area. The wait staff is very attentive, and the free chips and hot sauce for dipping, are REALLY GOOD. The fajitas are my usual. Worth the visit and you'll leave satisfied.",review,n2BtqUzIsQv7Vw9pJc3Xow,0,1,0 +MuIXnv7Oq7X3-4aEsp9dDA,2012-07-11,_CZd4-qq4hg9K6LWSKRbfw,5,"Been dying to come here ever since I saw this place on Unique Eats. Very laid back gastropub with a friendly, funny/entertaining staff! We grabbed drinks at the bar first - Moe'scow Mule (ginger beer, cucumber, lime, rocks) & the Persian (Absolut Wild Tea vodka, St. Germain elderflower liqueur, sweet & sour, Persian cucumber juice, lemon peel, rocks) which were both good, not too strong, but a good refreshing drink. + +Appetizers: +1) Pork Belly Pastrami (rye spaetzle, Brussels sprout sauerkraut) +2) The Original Chopped Salad +Please order both. They were both delicious! I was in love with the salad especially. + +Entrees: +1) Lamb Burger (Serbian lepinja roll, pickled cucumber-onion, tzatziki, Kennebec French fries & house made ketchup) I tend to be very picky about my lamb... Actually I'm not reallly a fan of it/the particular taste and smell lamb has. Why I ordered this, I don't know, but I can tell you that I liked it. The taste/odor of lamb wasn't overwhelming and it was juicy. +2) Pan Seared Scallops (Hampshire bacon, roasted corn grits, wilted snow pea greens & Red Rock cola gastrique) +3) Amaro Meatloaf (Montenegro Amaro Italian liqueur, pork, beef, parsnip meatloaf, smashed Yukon gold potatoes, roasted zucchini, veal demi-glace): the server described it as very meaty and meaty it was! Usually meatloaf is fluffed up with a lot of bread crumbs, but this one was mainly just meat. The mashed potatoes were very good as well.",review,Ki71iAFTxsPPQfX430c99Q,0,1,0 +xWKtOLuIOVGZprcpGiqpQA,2007-08-02,U6PxaM9UPfde5NyUIf1giA,4,"What a sandwich! Not a lot of frills, and the sides are underwhelming, but if you just want a really good toasted sandwich for lunch...Sticklers will hit the spot. + +And it's downright cheap! + +The only reason this place doesn't get 5 stars, is because the service was a little course, and the place was REALLY busy without a lot of seating space. Plus, it's only open 'till 4 PM! And not at all on weekends! DOWNTOWN RESTARANTS THAT ARE ONLY OPEN FOR LUNCH ON WEEKDAYS DRIVE ME CRAZY!!!!!!!! + +Come to think of it, the fact that I was willing to give it 4 stars despite all that is a testament to how awesome their sandwiches are., because there aren't many other good things to say about it.",review,VBEbhE0ISjg6xowGNiGmgQ,3,3,1 +kMxYp2GZL5ic6b05gPP57Q,2012-06-12,MzXtZUWQIAdPRC_21FbjFw,1,"Maybe their dogs are better, but breakfast sandwiches at Nathan's are disgusting! The English muffin was spongy, the eggs greasy, the bacon undercooked... And all premade and wrapped ready to melt together into mush with the cheese. Yuck!!!",review,8fTTvS499XCz4oP49kxq8A,1,5,2 +L8STRioAgDx-_FRFuuUU2Q,2011-07-02,Y3PfzEl9I3NbqO43zzpV8g,5,"Do Taco Jedis work at Senor Taco? + +Yes. Yes they do. + +Is the force of making killer fast Mexican food strong with these Jedis? + +Oh hell yeah! + +Try the shredded beef tacos in the hard shells. When they ask you if you want hot sauce, say 'si' and drizzle it mightily onto the tacos. Piled cheese, beef, lettuce, tomatoes all stuffed into an authentic-style taco shell - it doesn't get any better than this. Just make sure you put a helmet on because it's crazy good. + +If you like spicy, no-nonsense burritos, go with the Carne Asada Burrito (Red Chile). + +If you like the whole meal, go with the Carne Asada or Pollo Asado burrito combo plates. The plate comes with flour tortillas, beans and rice, guacamole and salsa fresca. You make your own burritos. This is just good eatin'. Take it home, crack open a good Hefeweizen, and you are golden. + +And lastly, from the sage words of my wife: ""The shrimp tacos and burritos are certified gourmet meals!"" Do I stutter? Nope. + +While Senor Taco is technically 'fast food' it does take some time to prepare. If you do drive-thru don't get all road ragey if it takes longer than it does at Taco Bell. There is a price to pay to make good food and that price is TIME. This is not a worldwide chain that spends more on advertising and earning your business by putting cute little dogs on plastic mugs. Senor Taco is not that type of place. A little wait is very much worth it. + +I realize that appearance of the location irks some reviewers. Yes, it is in a strip mall. Yes it is 100-150 feet away from a gas station slash AM/PM mini market. I get that. But this is not Sanctuary. This is not Kai. This is not Deseo. When one reviewer (and I use the word 'reviewer' loosely here) hilariously claims to have walked in, used his Superman vision to supposedly spot a family of offending microbes and (without trying the food) proceeded to sprint out because he was frightened of all the imagined cooties ... well... I just have to laugh. That's not a review, it's a drive-by, and reviewers like this are probably happier with Hometown Buffet or Luby's Cafeteria. And that's too bad because this is excellent fast food. + +I've eaten here maybe 15-20 times and my wife has ordered the fish taco plate a number of times and neither of us has ever gotten sick. The people at Senor Taco are nice, the food pleasantly surprises and your expectation of fast Mexican food will be forever changed for the better. I can't recommend highly enough.",review,5Hn3cmf16gCaZYCrXD8nEA,1,1,1 +l5vzFaqSjvxZiRn0MJeKkg,2008-01-08,D_v6nEJ7qqxdxpl8YAJr3w,2,"This store is too busy. Don't get me wrong, I love my Mac more than anything but the service at this store is god-awful. Luckily before purchasing my Mac I researched until I knew exactly what I wanted. I seemed to know more than the associate that helped me! Purchasing it was more of an awkward affair - I couldn't wait to get out of there. + +Also, it's always almost impossible to get into the Genius Bar. My iPod malfunctioned sometime earlier this year and after waiting in the store for 45 minutes to be seen, I was only informed that the damages were more in depth than they thought and I would need to schedule an appointment. It's just an iPod, people! The experience itself was more than frustrating. I stick with Amazon on this one.",review,4dnDsoHuxUtzhaumxbpR5w,0,2,0 +UtUXhKh7vOVvWJF48IzJvQ,2011-09-03,j42xCDV5IEQVXsK2R60u1w,5,Stopped in looking for some break from the heat after a couple hours shopping. They have a happy hour menu that we tried several dishes from and all were very good. Menu also has a good selection of alcoholic drinks nut we stuck to H2O hydration instead. Staff and management were very attentive. Would definitely recommend.,review,b8amFHFX0bHs0wPxhc5q9A,0,0,1 +OHFdbNVrnngg3u_Xn5nYfA,2009-03-09,Dx_ytdkd7sIEQGsWg_R_qw,5,"I've been Dr. Castilla's office for 7 years. Her office has relocated and her practice has grown over the years and for good reason. She is a Dr. that treats you as a person and takes her time to honestly answer your questions. She makes eye contact with you and I couldn't ask for anything more. Just remember, it is a large practice and the staff is sometimes questionable. But, she's worth the wait! +Now that we've relocated, I hate to give up Dr. Castilla. She's irreplaceable!",review,sGioMpXmP0HS4t1DKr3eBw,1,2,0 +5kRug3bEienrpovtPRVVwg,2011-05-09,pcHoakXW7WFrWKkRS5ai7A,4,"Absolutely LOVE the ambiance - very romantic with the brick and stone and walls of wine. The fireplace and comfy seating make it very intimate. In my opinion, the best time to come here is for brunch. Yes, even on a Sunday nursing a hangover, the food, drink and decor can't be beat. Very reasonably priced mimosas and bloody's as well as some of the best breakfast items you could ask. My fave is the eggs benedict with thier Mexican twist - the carne adovada is also amazing and very satisfying. No skimping on the meat here, and it's not drowning in sauce - I have yet to finish a full plate of anything. Thier potatoes even get my mouth watering. + +Service was great the last time we went, but the first time we had to go up to the bar to remind the gal we were there. After that she was more than attentive and the food more than made up for it. I could linger here for hours and get in some serious trouble! + +Have not been to the downstairs area or had any other meal here, but can't wait to go back!!!",review,ie38wJhGTHqb3gx9DRuGug,0,0,0 +fPExBO1aXA5c4uwlHFyx2Q,2011-10-21,AMMkQQx3BbeW1xcr5iAjSw,4,"great, family owned place that feels like the kind of italian joint that is made with love. + +Food options are very good with traditional italian dishes and unique entrees that can't be found elsewhere.",review,3eit3w0zDbb-z57c9P60vg,0,0,0 +wN_wAXWg8W94v04eqijy6g,2012-06-26,9AV6pIWLjp_Zj8fMvhC9BA,5,"there is none better. This taco shop is off the beaten path hidden and mixed in next to a smoke shop and behind a circle k. Parking can be at a premium but the payoff is the food. great friendly service, low key on the inside and flavors and textures that rock your socks off!! I mean really. My favorite taco shop in the valley, or more to the point prob. one of the best in the west! the burros are as think as a mans arm, the tacos are soooo good. i especially like the chorizo, the lingua is good, the carne is excellent. have a cane sugar coke in a bottle and find a seat, inside or out you will savor the flavors and be sure to use the sides of grilled peppers and onions, they make the meal for me. now where to go for lunch ?",review,I4GAIZhlwLkGXa9PdQ18rA,1,1,0 +t4aP7ksa716XY6S4EsWFqw,2011-11-12,Hix_CyB5h5K24mCsv8D1BA,5,"Such strange combinations of flavors, yet they taste so good. We've been here three or four times and are never disappointed.",review,FmwWPEQMcxCGI5K1yqAXaA,0,0,0 +TWeA9VoP4hBSJtk3uHTEzg,2009-03-15,IeA-iz-AiYSn1-7heUkpNw,3,"Very cute, pretty good sandwich and coffee. This is a pretty good place to stop in between shopping sprees. They have really good/healthy sandwiches and good coffee drinks. + +*Service = really fast and nice +*Food = good and healthy +*Atmosphere = relaxing and cute +*Brownie = yummy :)",review,cH1lLTHReO6uDTif9bfOBA,0,0,0 +cQZcWeIDKEF-7nWU3gJMUw,2012-12-05,8rte6c7Dl0rI0duzJ7n_eQ,4,I'm glad that Cafe Rio Mexican Grill opened up in Town and Country. We have been to Cafe Rio a couple of times now. On Tuesday they have tacos for $1.50. Cafe Rio is now my favorite place for tacos. The beef and pork tacos are the best. If you are looking for a good taco you should check out Cafe Rio.,review,ysBQMZiuZ7VSu_YAh-lE0Q,4,4,4 +rr13jM6SUmfPPPGHHMHCgQ,2011-01-03,Nck38RkrIA5NQt_VvrKpzw,5,"Good reviews are easy to write. Stop reading this and just go eat there! + +OK, well I have visited this place for years now and don't go anywhere else if I am in this area. + +I like the Chef's, they are friendly and quick. They speak pretty good Spanish to me and but I don't dare try to respond in Japanese, ha ha. + +The value is phenomenal, where can two people get miso soup, salad, beans, tea, ice cream and sushi rolls all for under $20? + +I've tried the same at Say Sushi in my hometown of Maricopa and can't do it for under $40 or more for two. + +All you can eat is available but I find that ordering individually is more economical. + +Great atmosphere for a quick lunch or a large party for dinner. + +The waitresses are Asian and I find that suitable for the restaurant. Some reviews on here complain about them. I don't have any issue with them they have always treated me nice and done their job well. + +I will keep coming back.",review,pefVcILrG0JCD6YeS37s6Q,0,1,0 +fdpkvInTuPyct43snlBG-A,2012-08-11,Z9dFyPbavhJJHFpR7gKEFA,5,"Thank you Jen & Mike for making what I expected to be a hard decision so easy! My boyfriend and I will do all of our future shopping at this location! Whatever you need here ask for them, Jen is the store manager and Mike was more than amazing! They told us that not many people knew about this location and I promised I would change that! Make sure to post your awesome experience next! I love my ring!!!!",review,zoXnswGnM7ZJ0pGNZ96CSQ,0,1,0 +8lKiCgPn_eonn5CNsffabw,2011-10-05,HS3ZFH2G_5_-MnJjPCYqsw,4,"Mmmmmm...why did I wait so long to try this???? Unbelievable pizza!!!!!!!!!! I would give 5 stars, bjt the service was...well, not great. Its ok, we all have off days. We'll be back!!!!",review,-ezIxSw-wSBg7cNwjjb3cg,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2012-06-25,1LTWWPmVaY9AZemEjNlqHA,4,"I would give this one 5 stars if it weren't for the terrible hostess that made us feel so incredibly uncomfortable!!! We had friends in town and they were dying to try it out. Love the restaurant concept and the food. I wish I could eat it every day!! + +Pros: +chicken - crispy, incredibly seasoned +waffles - thin and the perfect crunch! +red kool aid 'drank' - just like it was when you were a kid! +mac 'n cheese - creamy and delish! +the price!! + +Cons: +hostess was rude +bathroom was a lil stinky/dirty... sadface + +Can't wait to take more out of towners to this place!",review,dgNeLSvcN_4llzZ-m-9cgA,0,0,0 +xs1LHeJy78u-7taSEnQ2Yw,2011-11-29,TlwQi8xKU0062Zdzq-Pt6Q,5,"Best calamari in town, and awesome service. Tokyo glow is a great drink, super refreshing.",review,f01B5tRtqf3k6ak1pPSAWw,0,0,0 +FCJHirFzEtj4M1VcuaKieg,2011-08-10,DhpS2EFNVXpUnrsNFF2X9Q,5,"Yes, it's pricey, so I got a membership. Yes, the membership is pricey - but if you go frequently (and you'll want to with the hot summer months) you'll get your money's worth and then some. The place is big enough that you can do different exhibits for each trip. Great place to take the grandparents to watch the kids in their element, too!",review,VGXYc_r-jDjyhqhlWNs91Q,0,0,0 +17AQhJKGRA3YLeN0pB64cg,2012-05-25,PPKxod62hSbSuwm6XJv1vg,2,"Love the coffee not thrilled about my service. Of the 4-3 times I have been in the barista has never been behind the counter ready to serve me. Every time that I have walked in they follow me off the patio where they have been smoking. I know that you are entitled to a break but, sitting out chit chatting with your friends smoking is not what you get paid for. Either I have bad timing coming in when they are on break or the kids there are huge slackers.",review,LZAE5d9vjQgRlQhBbVFWUA,0,1,0 +yktWUtKBja_Lzk3wwR6RFA,2011-09-30,EJ2VX9wyvqlc8MG_4ng2qQ,4,"In the interest of full disclosure the only thing I every really go here for is the lunch buffet but wow, what a great buffet! I believe the buffet itself is about $10 and for that you get a wide range of vegetarian items and as with other items on the buffet most of those get changed out over time so you get a rotation of various dishes as you come back. They also have hummus and baba ghanoush (like hummus but made with eggplant instead of chickpeas). There is generally at least one dish with red meat (today it was a tomato based stew with eggplant and either beef or lamb) and usually two dishes with chicken. + +I generally get iced tea to go with the meal and one thing to note, they do not serve alcohol so if you want to go someplace where you can also have a drink or two, this would not be a good place to go but if you just want a place with really good Middle Eastern food (the owners told me it is really Lebanese cooking but I'm going to just generalize and say for most of us, when you try it, you will think Middle Eastern). Of course, you can walk a block or two to 4 peaks brewery, in the same area, and have a drink or two before or after you your meal. + +One really nice thing about this place it is right off the Apache stop on the light rail and right across the road (same side of the street) is Pita Jungle so a wide range of good food options right off that light rail stop. + +Bottom line, I've never had anyone I've taken here NOT like it and everyone who has gone has wanted to go back again. I like it for lunch during the workday because it is quick and you have a wide variety of regularly changed out tasty food options, so I recommend you give it a try if you have the time. :-)",review,aIAjAU-6NH583EkQ6E9KRw,0,0,0 +asebFFgabg_lfoNpGJHZlQ,2011-02-17,VPnkCBxu3DujXF8fiAveAA,4,"I went to this place the night before my birthday, after making 3 u-turns and k-turn...after reading all the good reviews about this place, i expected to see a lighted up sign at the least to make the average driver realize where to turn...other than that it was great food, looks can be deceiving, looks like a run-down cafeteria but the food was amazing, the bbq beef brisket were tender and melt in your mouth, the pork ribs was delicious, the family size cole slaw was ridiculously small, i thought i was in france ordering es cargo.. but overall good food",review,iBI6tuNFT6we5zTBqC7kcA,0,1,0 +HDvCnqIf5twbMb5-eG1EJw,2008-12-02,Fl_ZfBCUkUsuiBQgaQUeXQ,4,"Wow-- SO many breakfast options I had a hard time deciding what to order. They've got skillets, scrambles, and omelets galore. Not to mention two baked pancakes that sound amazing. I'll definitely be back to try those. + +During my recent visit I went with the New Mexican Skillet, which consists of eggs, chorizo, avocadoes, cheese, and tomatoes served over nice crispy hash browns. The chorizo was well-seasoned and not too greasy. I appreciate that they have the options of egg whites or Egg Beaters, although I dislike the up-charge! But you can't put a price on health (says the woman eating chorizo and hash browns). The fresh-squeezed orange juice was delicious. + +Portions are huge here. Supposedly the skillets have two eggs, but I think I got more like 4, and the scramble at another table looked like it had about six. Even though the place was full, the service was excellent. Just know that you may have to wait a while for a table if you go on a weekend.",review,YL8SKv-pwx-Wj9cwGYrn3g,1,1,0 +QCosRCJ1owLMgaHnXOMqQQ,2008-08-13,BQSoI9zuSsH7qj05QaHNrg,3,"We have one of the 1st ones to open in the valley right near us and it's OK. Sure it has a selection of ready to eat or grocery selections, but watch the pricing.. you (somewhat understandably) pay for the convience and the ""time savings"" of their ready to go's. I do like their concept and do shop there occasionally (more like if i just need something quick). + +Their hotdog buns are sorta sweet which is different, not different bad, just different! + +As for the Hybrid only parking... I don't think so... what a joke! :)",review,DnwHp_A92KvllfaUIdFraw,1,0,0 +S8O3BoCDEK-te8U-0IvZog,2011-07-31,Oslfg_MNseUWfSJaFyfPGA,5,We were greeted with very friendly staff. We had the fried knocci for an appetizer with a fabulous marinara sauce - usually do not order knocci but these came recommended and were very good. The bread was crusty on the outside & chewy on the inside -very yummy. We sat at the bar as we usually do and the bartender brought over a sample of their meet sauce to try with more bread. I don't eat meat sauce but my husband said it was very good. I had a heft cosmo & my husband had a beer. For dinner i had the pasta trio that was fabulous - probably the best italian food i've had since the cioppino at Allesia's restaurant. My husband had the linguine with white clam sauce also very good. I'm certain these pasta dishes were homemade because they just had amazing flavor - I wanted more!! We finished with tiramisu that was also really great. My husband had coffee and even that was great. A little pricey in my opinion for italian food but due to how great all of it tasted - we think it was worth it. This will be a definite dining destination in the future.,review,Yefgp7lJumG7SHwYf7poDg,0,0,0 +581qSMwGGgdVSdiBTsrPyQ,2012-01-05,2M4aXKpdJkU79nbtgOhSvA,2,"I like Rubio's in general, but this location is pretty hit or miss on the food quality and service. I prefer the one on the other side of the I-10 next to the movie theater.",review,3ONPPazUH-Q3XblYJIaA1A,0,0,0 +wNUea3IXZWD63bbOQaOH-g,2012-11-12,bKwkVC0g_ooNvhyjSIsL5A,2,"I'm not impressed with their medium to high priced menu. Sushi is never cheap, but the quality of the sushi rolls and presentation is a bit messy and not impressive for the high-end decorated type of restaurant. I've had way better quality, presentation, and taste at other sushi restaurants that are not high-end. I guess we were paying for the ambiance and decorations more than anything.",review,ZPk_wcW7Xot6LngEUj_F6g,0,1,0 +7QSYBp2-AOdyUJXEaLnbgA,2008-06-13,ropcaaEQJLhfkiuOeyARYQ,4,"I really like Bandera. I really LOVE their cornbread. Best dang cornbread I've ever had. I dream about it in fact. Food is always great, service is usually great as well. Great place to take guests if you're not sure what they like. + +My only complaint...Bandera is a fairly casual restaurant, yet last time I was there my father was asked to remove his cap. No biggie, he willingly obliged, but then I noticed the staff didn't seem to have a problem with the cute little thing wearing hers at the next table. Come on, be consistent guys.",review,wHg1YkCzdZq9WBJOTRgxHQ,4,4,4 +38ei9EOHa9WP6iIHOUlHSQ,2012-11-28,ortfa7JcZb_RwBQWSYFukA,4,"Michigan anything fans, this is your breakfast place. + +Really good breakfast selection, decent prices, and a very friendly staff. Im pretty sure we were the youngest people in the restaurant, but I dont care. Their food is GOOD. + +My husband enjoyed a Belgiun waffle, bacon, and eggs while I had the morning mashup...i think thats what it was called. It was basically a denver omelet w/ bacon mashed together w/ hash browns. While it didnt look ""pretty"", it was delicious. + +We'll definitely be visiting again when were in the east valley.",review,X5GbNXY_nNoa_vTZDD0aCA,3,2,1 +VKNl2-aF4n1x7lPVyU-Mag,2012-02-03,cZkbnHbLDVPZJtKTcgwR1g,1,Experience with Hostess was rude. Service with a frown. Our waiter had attitude too. It was a birthday dinner and we were in great spirits..so this review is written with clarity. The margaritas were strong-check ok there. The shrimp appetizer was different and very good and $18 for four shrimp. We ordered two mahi mahi dinners (each $24)and they were RANCID. Yup. I said RANCID. We asked if the shrimp fajitas dinner had the same jumbo and they said they would have to charge extra (each entree was priced at $30) we had to pay extra for the beans and rice that they had left on the table-which was cold by the time the shrimp dinner--which came with 5 shrimp and onions. Poor service with an attitude. Mediocre food to say the least...all over-priced. Never going back.,review,pU3iTU8tPggt81R8f57pTw,0,0,0 +1NZLxU5WvB5roPFzneAlLw,2010-08-25,gc0FSudnWtBWlADOEzgpbg,5,"Great food their pork is awesome !!!! The slow cooking made this dish superb. Of course the margaritas are as good as they get! +Overall everyones food was tasty and the service was great. The place was very busy with allot of energy.",review,ARIT9F0X-hi73unv75kIWA,0,0,0 +x-lEn6WxwqSNrdYdgjRsyw,2009-08-06,FJEB8pyjjL1FuqTuq7UOiw,4,"dilly's has to be one of my favorite sandwich shops of all time. they have such a wide variety of choices that anyone who comes can pick something to suit their taste buds. + +i always go for the blazin buffalo because i eat wing sauce on nearly everything. boars head meats on all their sandwiches which is great but jacks the price up quit a bit. a sandwich, drink, and a side was about $10. i went with the pasta salad as a side, which was nothing special, your average run of the mill pasta salad. my sandwich on this particular visit was lacking a sufficient amount of buffalo sauce and i neglected to ask for extra before i left, assuming that they wouldn't be stingy with it. the bread is good, they toast it so it tends to get soggy if you take it to go. the bread bowls are good too, i've had the clam chowder and chicken noodle and i recommend both. + +service here is usually quite slow. even when it's not busy in there, like today around 2, i had to wait 10 minutes to get my sandwich and even saw some guy who was two people behind me get his order before me. when it's busy, you're going to be waiting even longer. they need to pick up the pace.",review,HY9qpAamqLXFoa7xMwNntg,1,1,0 +muCl5p-9ut1sY0aKeUeRhw,2011-01-24,tExQf_95iNJIGsAgNf3qIQ,3,"I love Cheuvronts and have been going there regularly for years. Why only three stars then? Over the past year and a half the service has gone downhill. I find that the servers are impersonal and rigid, and sometimes a little pompous. After three or four bad experiences in a row I just don't go there anymore. They do have great cheese plates and a fantastic happy hour...just don't catch them when they have a special event going on.",review,e9d9EQqOd2-NlX8WFx0aEg,0,1,0 +0vzZ_Bcb02rJljeMU9XkBw,2008-11-01,nfBN8FS7cr9ZA58TIhy-Uw,4,"You know, I've read some mixed reviews on this place. I enjoy going here. I think the pricing is reasonable, and I haven't had bad service. The food is pretty good (in comparison to other Phoenician Sushi restaurants).",review,QwO4LVCiPZZdg5URrQfYpw,0,0,0 +UexMw8s7B1J-RtFOQtCCsQ,2011-12-04,sgS_02TZ1rVOKk4CkRdnXg,2,"I've never been so impressed with the quality of food here, but it's fine for a chain American-Italian restaurant. But I am currently sitting here at a table, and have been for an hour, with no promise that a plate of food will be here in the near future. I'm not sure I will be back, I'm sure the Keg next door is better, and that's not saying all that much",review,Fyc_FceEM4Bce1wx-x3RYA,0,0,0 +ToJ9eJ9pKZXhlVyUmCFnJw,2010-02-01,PHtSSo8sZuow39XvcZT92w,4,"Hike #4 for 2010 was North Mountain Park. Got there around 10:30am on a Sunday. Sunny and wonderful weather! We got a parking near Trail #44. We hiked up trail #44, it was strenuous but we needed a little more so we went down the pavement and off to this little trail that led us to trail #101. Cool! It was a little declines/inclines and between two mountains. The scenary was goregous! We walked until we hit trail #100 and we took a left. Walked and walked.. Watched people walk their dogs & people riding horses. Neat! We got to where the trail ended. Hum? Went off to trail #60 then. Another strenuous hike and it was a circle. Circled back to trail #100 and we back tracked all the way back. 3-1/2 hours later we were back at the car. + +Man, my calves are SORE today!",review,_PzSNcfrCjeBxSLXRoMmgQ,3,3,2 +2FudHUhV9U54dm0S1ePuCw,2011-08-22,UaYfODgSTvp3uYWnM6NZ2Q,3,"good coffee, friendly staff, good food. they forgot to bring out the bagel I had ordered, but were very apologetic about it. I will go here again.",review,mSRwdGB_oMEIxtY7I0SU-A,0,1,0 +MJTds5mMqXEzYFI1TDCA8Q,2011-07-24,NLAEwRB90aXlezD5xPtl7Q,3,"This Safeway holds a special place in my heart. It is only a block away from my house, the shelves are always stocked and it never seems to be busy. There is a pharmacy (and they are quick!), meat counter, floral department, bakery and a Starbucks kiosk. The staff is friendly, though often in no rush to get customers on their way. There are some great deals to be had here...just don't forget your discount card. Without it the prices are downright unreasonable, hence, the somewhat sad, three star rating.",review,HPxji3cX5H460ECCgtnGHw,0,0,0 +zp5k6funVelIOVuqdY0mDA,2010-05-04,4xjV9TmqjraJXjo4xWwZgQ,3,"Getting boring in here. It's been at least 6 months since they open but they have the same old flavors. I know you guys been busy but what happen to the ""rotating flavors""??? Not sure if it's a seasonal thing or a cost factor but even the pomegranate toppings are gone (although they have pomegranate fro yo......not a fan of mine). Competitions are moving in so change is not a bad thing.",review,8_ztfjt9_RsKS-cQ9KlqKg,0,0,0 +I4bSn5gXsHuSPu7L-d_8nQ,2010-11-18,Za3DdMX65Bav0fU4-QrNGA,4,"4.5 Stars... I really enjoyed Beckett's table! It's a large, cool looking room with exposed ceiling and brick walls. They have a small patio and I heard they're planning to build a large patio on the side of the building. + +I met a couple friends there and we shared a few different items: + +The drink list has some great looking combos and a nice variety of wines. I tried the Palmaire, a lemonade/pomegranite combo. Very refreshing! + +We had the grilled cheese with pancetta to start... I love a good grilled cheese and these were perfect little bites. It came with roasted red pepper tomato soup. The soup tasted like pureed roasted red peppers; I would have preferred a little more balance with tomato taste. + +The roasted brussel sprouts were sumptuous; intense flavor and a little crisp on the outside. + +The fire roasted green chile pork stew was very tasty. The corn bread that came with had a perfect sweet contrast. I tried a bite of my friend's short rib - very tender and lean. + +We ended with the creme brulee, which came with fresh blackberries. At first I passed on having bites (I'm not a huge fan of creme brulee), but they pressured me into trying it... YUM! I may be a convert now. + +Overall, a great pick! Shout out to Katie B. for the suggestion.",review,oy6fdscGSXY2gzRqF9pZxg,3,4,2 +lVHtVCyFJOqAH0ltn7pLuw,2010-04-06,5jZCcCmObJZgGkKYv_Gnow,4,"I love this place. What can I say? + +Richard Cho not only has some of the best customer service skills I have ever seen (that guy has an amazing memory for names) but some of the most creative approaches to making Sushi in the valley. I love coming to Sushi Eye, I have never had a bad experience in all the years I have been going to the 2x New times Best of Phoenix award winner. + +The use of Macadamia nuts is brilliant and an amazing addition to many of the creative rolls that are available. The Spicy scallop roll is a go to for sure. They have (and I know this sounds stupid) the BEST California rolls in Arizona. As pedestrian as that roll is, The California roll is transformed in to a very dessert style treat when ordered at Sushi Eye. Seriously, do it. + +Go check it out, introduce yourself to Richard and be amazed when he remembers your name. You will be amazed by the food as well.",review,5LBowfIh19Z25enwHJFWNg,0,0,0 +yC3ydbHAJTZ22FZp4LynFg,2012-04-15,U2yO1jSzSa14O4iDWRoLbA,2,"I was so disappointed in this place. I just moved out here and was craving filipino food and found this place based on reviews. Although the reviews were average, I was hoping to catch this place on one of its good days. Nope, not the case. + +The place is not much to look at and the food did not look good. I was hesitant to eat here but was so hungry and saw that they had my fav dishes, sinigang and diniguan. They were both ok, I've def had better. I ordered the pancit for my husband and it was terrible! He had maybe two bites and threw the rest away. + +Oh well, won't be coming back here. There's another filipino place in Phoenix so we'll be trying that next. Gingeroot, also in Chandler, is way better but expensive. Guess it's worth the price when you have your cravings!",review,PhEh4712X4Vp0PsMROwvpw,0,0,0 +kK4AzZ0YWI-U2G-paAL7Fg,2012-05-12,uxhFaWRZy-3brDajTMJlWw,5,"I can't remember the name of the special salad we had tonight with Shrimp, but I will never forget the taste. FABULOUS is an understatement! The NY pizza was equally as great. Every time I come here I say to myself, we need to come more often. Everything is always good. + +Diane was our server tonight. What a cutie! More important is that the service was excellent! Diane was back at our table many times checking to see if there was anything else she could do for us. Another comment I want to make is there was a young man taking care of the table. At some point I thanked him and was surprised to receive ""Your more than welcome"", instead of the typical ""No Problem"" statement coming from young people. I should have gone to the management to tell them I was impressed by him, his smile and mannerisms. + +We will be back!",review,PwUnB1okgVdWQDUehF7wDw,0,0,0 +Kur7YGwuw6CqnqEypNrOvQ,2008-06-25,fDN0ZX8zSohHWilG3FvtRQ,4,"Small, but well stocked. All of the Japanese basics are here. It's nice to have a local Japanese grocer and not have to resort to an Asian-Mega-Mart. There's not a lot of fresh produce, but great frozen and dry goods options. I'll have to try the prepared food sometime. They were sold out for the day by the time I went in the afternoon.",review,AXqt75N9cWVAxIRHsl6VAw,0,2,0 +HNaOwzN2d78vma3BMls5TA,2013-01-02,U4fqCH8cDuHyqE1vzUpahQ,5,"Like they even need another review - they have a solid 5 stars as it is! + +Just got back from my first visit to Adobe, and I am beyond impressed. My German Shepherd pup was having some stomach issues over the holidays, so I decided to have him checked out to be on the safe side. I knew he didn't have an obstruction or other emergency issue, but I was concerned about parasites. + +The receptionist, Hilary, was super sweet on the phone and in person. She was upfront with what tests she thought would be ordered, and how much it would run me (and it wasn't an arm and a leg; the office call was only $56). I was very happy they'd be able to see me the next morning, but then she called back not 20 minutes later with a cancellation and said to come on in. Even better! + +The tech was very good with Nately's 40 pounds of squirming, and loved on him the whole time. I was also happy they let me help hold him - I've been to vets that called in a 2nd tech, like the owners aren't capable of safely holding their own dog. Okay, maybe some aren't, but I am, and I appreciate being able to and not being instructed like a child. + +Dr. Newland was AWESOME. + +The difference between him and some other vets I've been to? +- Other vets: ""Oh my God, we need to run $500 worth of expensive tests and start him on multiple medications"", general sense of admonishment for not rushing him to their affiliated ER clinic, eagerness to run the bill up, very few questions about anything, etc... +-Dr. Newland: Super calm and personable. He spent 20 minutes going over everything (Nately's last few days of activity and stomach issues, diet, contact with other dogs, where I take him in public, anything he could think of really), felt his abdomen thoroughly, and said ""Honestly, he's a puppy, they eat funny things, and something probably just irritated his stomach. He's plainly feeling pretty good, so just feed him a bland diet, give him this medication to settle his stomach, and bring a stool sample just in case, so you know for sure he's parasite-free"". He also dispensed advice for Nately's general care, as long as we were there, about heartworm prevention and necessary vaccines, etc. I even got a good education on the different types of parasites and which were even likely in AZ's climate (turns out, not many). I really appreciated that he didn't try to frighten me into expensive diagnostics and possible serious diseases, and that he is so on his game and scientific/logical about things. + +I am very impressed and will be making Adobe my regular vet for as long as possible. If only they treated birds too!",review,ysINNe8YpbOW_-5T5CSyhw,1,1,1 +7N8RPhvOJ4z8iSz9djLqFA,2012-10-02,wSUoZO98_MDfZ4GLigHgVw,4,Really fast and friendly service even during busier moments. The staff is also very helpful when asked to assist with using copiers and finding appropriate mailing supplies.,review,W9h1ufjEzDp7THyAqRw65g,0,1,0 +CEqsBhtAX4j15gPEgK2wQA,2007-10-02,xvDrWYRi1I1Nmc3i_IHCAw,5,"T&S Glass did a wonderful job replacing my car window. They came right to the house within 2 hours of my call, had the window replaced within 30 minutes and treated me like a queen. Frank installed the glass and couldn't have been nicer. Thank you T & S Glass!!",review,gSDa8aavNsQqpWUIKWAt-A,0,0,0 +mhQCxOiqp03qnhGRTtPduw,2010-10-12,roJpvUbnZye_Z4r2oDZCcg,4,"This is my favorite Pho place in Arizona. The menu is diverse, an the staff is friendly. They will answer any and all questions. I've heard them giving ""lessons"" on how to eat pho several times. The food is great, and the keep the drinks filled. I've never had a complaint, and I've been there numerous times. You will not be disappointed.",review,DU0F18NBXFZ-hsPOmGhzQA,0,0,0 +6HAwTnhNJoR5VNdfUrRoEw,2010-05-17,sVp4tt5_Ma07vj51u9EMVg,4,"A short review is in order here because after all we are talking about freakin donuts. However, in AZ there are no good donut shops for the most part. We had three donuts - glazed, chocolate long john, and a chocolate old fashioned/sour cream. The last was a bit stale. The first two were great. We will go back. Nice little place and it's open 24 hours.",review,f5CqKZlqK9Sox9z9wuooCQ,0,1,0 +rLAeltELaGdQKh_LYIllEA,2011-12-25,k07cLknUvGe88G_QHH75cQ,5,"When I think Royal Palms, I think romantic getaway. A quaint yet exquisite resort, the Royal Palms was built in 1929 to emulate a colonial Spanish retreat. Colonial as in when the Spaniards were conquering the New World. All of the historical details are presented on a frescoed wall in one of the courtyards. + +We had heard some great things about J Cook's and decided to spend a leisurely Sunday morning dining on the patio. If you're looking to be treated like royalty, you want to dine here + +I enjoyed exploring the hotel after a luxe breakfast at J.Cooks. The staff are incredibly accomodating. What an ideal location for an intimate stay-cation! It's a nice place to go to grab some drinks and appetizers, I will definitely be back to see what more the resort has to offer!",review,qZrArI2ohkYkQlELl13BKQ,2,1,1 +9OPheVf5o8sRcRHxJDl4-A,2008-12-29,3jm_Drc2mob44myooX2XrQ,5,"I was there just last night, and today received a ROTD for my original review. Too weird. + +Updates - They mix a great margarita! No fluorescent green pre mixed Margarita mix - they make it themselves with fresh lime juice. Yum. + +The wine list is small but good. My current fave is the Argentinian Malbec. It's only $6 a glass, and they pour generously. Very tasty wine. + +The seating is not comfy if you like to slouch. If you sit up straight, it's fine. But seriously.... good posture is over rated. + +It gets a little cold in there once in a while during the winter. Wear long sleeves. :) After 3 glasses of the Malbec last night, I didn't care. + +This place has really been growing on me... nice to have such a great neighborhood watering hole!",review,HZeFzs42f0iGaA-sP_hUnA,8,8,5 +-sC66z4SO3tR7nFCjfQwuQ,2010-09-08,5vQ0n5Ea7yVR625r25mmpA,5,Amazing Mexican food and the drinks are knock you on your ass good. Have the guacamole and a madre then come and talk to me.,review,f3LA83yEEBMj9q92H28O7w,0,0,0 +sDozh6iTylTJD26d7xcgGw,2011-09-26,83yTevrDRP6z9867qUO9kw,3,The Tavern on Mill is an average sports bar with cheap drinks and we come here to watch UFC fights because they don't charge a cover. We always leave when the fights end because there are better nightlife options in the area.,review,jopndPrv-H5KW2CfScnw9A,0,0,0 +9CqxDNPWlkJW1ZCM8Gu_nA,2013-01-01,Faj4egYIGBp_58y6QC7Ljg,5,"I love this store. The produce is always fresh, they have an interesting selection of frozen items including some great appetizers, the meat department is outstanding - I've tried a few different kabobs from here (spicy kabob rocks), bakery is great, nice selection of hard to find dairy items like fig yogurt, fair cheese selection including a local fresh burrata and mozzarella that will knock your socks off, excellent selection of wines and craft beer, and a floral department that has exquisite arrangements. + +Aside from the above, they make great sandwiches, have a nice salad bar, have different take out dinners available every night, have a pasta night and will make you a fantastic iced tea or an iced latte that rivals any chain. They also have an awesome grill - they will make you a kobe blue cheese burger that is out of this world. The hot dogs are delicious but they are gigantic (and a little unsettling to look at). + +One piece of advice before you go, not everything turns over quickly so check the dates.",review,3uR5YTXgW4hatuFnaNxSGg,0,0,0 +kK4AzZ0YWI-U2G-paAL7Fg,2012-01-10,AN5i4cWa3hbhWeoxgp2EYA,4,"My girlfriend and I love Crust and frequent here often. They have amazing pizza, the Rustica is enough for two, and we usually split a salad. They have whole wheat crust, upon request, which is actually really good. There service is awesome and we always enjoy ourselves when we visit. They have a great wine selection by the glass and by the bottle. Our favorite is the red blend that is very unique, let it breathe though. They also have many flat screen tv's so you can keep up with what ever sporting event is on. The atmosphere is casual, but it can get noisy if the restaurant is full. The only time we've ever had poor food is when we do pick up. It's always been hit or miss then. We've never had a bad experience actually visiting the restaurant, which explains the 4 out of 5 stars.",review,GNCh2HzSVYsS12o76qtUiQ,0,0,0 +hqVbmZNLTdR2y7G7oJu9vg,2011-08-11,Urk4JgrVfqV6-wNP6BLnQw,4,Just went back here and had another fabulous meal - everything was so delicious and clearly homemade with care. Wonderful!,review,lCVLT95VUnlZfboVoZJCZA,0,0,0 +WyTiZGv0edFH-J6cDwTp9g,2009-11-03,PkiT_G5n38rdD1mgnrSN5A,5,"I'm not sure why it has taken me so long to actually go inside Go-Kat-Go, but I finally did and loved it! This store is filled with all sorts of great retro Hawaiian treasures along with a plethora of other gems. We've got locally designed clothing in one corner, awesome furniture in another, tons of handmade accessories in the middle and bunches of fun throughout! It was really hard not to pick up everything in this store and buy it. The owner was really nice and offered to hold our stuff while we shopped. I ended up walking out of there with an awesome Dia de los Muertos pillow that looks amazing on my new couch plus a matching potholder/oven mitt set in a really cool pattern. I will definitely be back, especially since my other mom's b-day is coming up and she loves this kind of stuff.",review,W_QXYA7A0IhMrvbckz7eVg,1,2,1 +qjmCVYkwP-HDa35jwYucbQ,2011-05-21,JRc10P9o2OQi459vJMMgqg,5,"Went back to True Foods ( i have been doing this a lot since my first trip) with my mom for dinner last week. It was amazing as always however this time was different. I tried a new menu item, the Bison burger ( i highly reccomend this) it was so tastey and very light for a burger. OMG! I want to say that this time was different because we had THE BEST SERVICE EVER! Our server Marcus was amazing. He was very informative, helpful, polite and everything you would expect from a server and then some. LOVE THIS CAT. Just thought I would give credit where it is due. Too many times you read about the negatives on service and not so often the positives. I work in a restaurant and know it's important for employers to know who their ""stars"" are. MARCUS is your star. A bright, and shiney star. lol + +Loves: Shitaki mushroom lettuce cups, Ahi sliders, Spaghetti Squash, Kale Salad, Raviolli, Green Tea, Coffe (black) and I always have to have the Banana chocolate Tart. Definitely .",review,B4-xzBRt3S5TjrjVZFPSfA,0,1,0 +JRzrqJmsQ5AZ4bMQLUfyHg,2011-07-29,KJ-dCPX2eyD6iVWWrMBpaw,5,"I was really looking forward to eating here this morning when I got to the restaurant and found that everything was super clean and nice looking. I had been drinking all night and it was time for some breakfast. + +They had a great selection of hot tea. The people in my party got quite a few things and everything came in heaping portions. The French toast is the super thick kind and very fluffy. They also proved that they can really cook eggs well. They also brought lots of coffee and hot water for all of us. + +I also go their chicken tortilla soup and it was AMAZING. + +The service was super fantastic! I will definitely come here again. :)",review,-BVv1TDLLphHzgKw-eAJJQ,1,1,0 +EcHuaHD9IcoPEWNsU8vDTw,2010-12-08,Ko6o7BA0EdlGBlFtJ5fbxg,4,"Having just returned from a whirlwind overseas business trip, Condor had to unwind. No place better than the Spa at Camelback Inn. It has been years since Condor visited and, as I expected, they did not recall that on my last visit I mistakenly thought the terrycloth robe and slippers were a gift. The letters demanding their return stopped after 3 months. + +Arriving in the lobby I was greeted by the soothing sound of Asian Zen music and the tranquil flow of fountain water. After a quick flashback to the three days in a jungle hut cell due to a jade sale gone bad, I headed to the luxurious locker, donned the fluffy terrycloth robe and settled poolside. + +My first disappointment of not having a drink in hand almost immediately was soothed when staff opened the bar 2 hours early. Talk about customer service at 7:30 in the morning. Having the secluded pool to myself, literally, I settled in to a literary vacation of the mind. It had been a long time since I read ""US Weekly"". + +Engrossed in the torrid life experiences of the hoi polli, I hardly noticed Companion had arrived and asked why I had already consumed six umbrella laden cocktails. ""The heat,"" I responded. ""It's 75 degrees,"" Companion stated with the accuracy of a former weekend weather girl in San Diego. + +Well, more cocktails ensued, including Companion's Mango Margarita, whose orange color I compared to the stunning, skin tight dress worn by an unknown actress named ""Roxie"" at a Red Carpet Event in the pages of ""US Weekly"". The color of the Mango Margarita complimented the snow white of my robe after it was hurled in my direction. + +Another drink soothed Companion's ire and it was time for the highlight of the day: our individual Swedish Massages! Escorted by my Massage Therapist, the spitting image of Peta Wilson (Google it.) I was soon transported into a realm of relaxation and bliss. The bad news came when I was awaken from my trance by a knock on the door. It seems my snoring had disturbed the guests next door and my session was cut short. + +No matter, more poolside time with Companion awaited and more frothy cocktails. Unfortunately, upon return to my chaise lounge, I was greeted with a note. Apparently Companion and her Male Masseur hit it off and were enjoying cocktails at the Valley Ho Hotel down the street. I was definitely not invited. + +Well, upon reflection, the facility, service, therapist and massage were excellent. Although romance did not blossom, I did add another terrycloth robe to my closet, albeit with a Mango Margarita stain.",review,i8kR-Qnn3xd9EnpCWs9POQ,0,0,1 +Y-ci4KjSUdwfc6ru4XnX8Q,2008-06-03,UlLg43QG5zJoKmq0t6PULQ,5,"Treated some clients to Sweet Pea Bakery items and they loved them! I got the PB & J cookies , Mojito cookies and Rum macaroons. Love that they are not the run of the mill flavors. + +The shop is adorable, it's actually really big-- surprisingly big! The employees are really nice and personable and that is always helpful and welcoming, especially when trying something/some place new. + +They even gave me a precious thank you card to put with the cookies. + + +I will definitely be going back for more!",review,XBHJCDzNh--mBhJkzyM_iA,2,3,0 +5kRug3bEienrpovtPRVVwg,2011-09-27,x5875Um76wS3RbPQhOGKWg,5,"It's the best! Downstairs, hanging at the bar, you can't beat it! + +The food is EXCELLENT!!!",review,GTkZ-E3Fpu4YNGLeA3JJjQ,0,0,0 +gb-k4Z17XxuPkUmsevwBYg,2011-04-13,aAS0vWCwzve4hy9icj07kA,4,I had the fruits of the forest flavor and really enjoyed it. Staff was very helpful. Will definitely be coming back.,review,ylqeGfWJCw4JlFT_ik7JeQ,0,0,0 +KGX7O-_WqOIy9o7u9NOa9A,2011-05-22,Hbf6e0RMS4pkwKT7OdRSqg,5,"Well, this place is as good as it gets. Family owned and awesome. You know how at some mexican places the beans and rice are an afterthought? Not here. They are the best I have ever had, yes even in mexico. The food is seasoned perfectly and the service is exceptional. Too bad they are closed Sundays. The queso is the best I have ever had. I could keep going but you get the picture. Go there, order and eat, you will not be disappointed.",review,s3-yNSQ-ViT22FF2pxZO5w,0,1,0 +uR2aNW75R4oYs9w7aw-_kQ,2009-08-10,3n3297JIVRxa5KsJWPU3gg,2,"Went for dinner on a Sat. night. I made reservations 1 week in advance and when my friend and I arrived to check in for our table, we were handed a pager and told we could go STAND in the bar area seeing as how there was no place to sit and have a cocktail. Not real sure why I bothered to make the reservation. About 40 min later we were taken to our table where there was NO ONE else seated at first for the Teppan cooking.Kind of a bummer. About another half and hour and more people were seated. It's only about 10 pm now and my friend is literally starving. The bar area is a joke. Maybe I just don't go to Scottsdale often enough but are these people serious?? There were maybe 4 guys under 25. The rest were in their mid to late 40's. The women were about the same age probably but wore outfits like they thought we wouldn't know how old they were if we just focused on the sparkly sequined shirt and puffy skirts. Or as my friend said, are these ladies re-living prom night or what?? Anyway, food OF COURSE is so over priced and where you think you might get 4 of an appetizer, you get 2. Nothing real special about this place. Once you look beyond the decor and focus on the ""scene"", service and food-Thanks, I will go to Hon Machi!!",review,dVJ_y1NGSA_g6rc-NDDWHQ,6,6,6 +QMsUey4Xi1VfHkwbI8YxdQ,2008-06-16,Yy_pPnPhHBmOLHYh1WOaNw,2,I would rather go to Benihana to be honest. I have been here a few times because its so convenient but has never been worth it in the end. I have eaten here and had dinner to go it always takes forever and it is not cheap I expect cheaper if theres no atmosphere or really good food would make up for it. I have not gotten sick from the sushi here but lets just say I didnt feel so hot after eating here the last time. I looooove sushi and its hard to say that I wont be back here but I'd rather drive a bit farther and skip running the risk.,review,V0y4fqp-4pSRfsz0FmsjPA,4,6,2 +BSGcS1EWEkGP2LS1nOZGPA,2011-02-20,aJISC6Qw6oI-qyXTa8GjGA,1,"One star is far more than they deserve. The owner of the property spent an excessive amount of time barking out reminders of hotel policy, was rude to guests and his staff. The stay here felt more like being in prison with the warden constantly in your face. People in the group that stayed were locked out of the room by management, forced to pay made up fines. The owner ruined the entire experience. If this is how customers are treated, this place won't be around long.",review,PHFyJ0kMuaQn7DuoWtcURg,0,3,0 +4waggbCK-MSE9dbIdSMfPA,2010-02-22,FSSNRWsDCnDxCbul3UmHaA,3,"Well the view is obvious. I mean - it is decently high up and gives you a good view of downtown but, I don't know - the view from the Arizona Club is better. + +We went here after watching a show at the Herberger and I was expecting some high class expensive dining that that is exactly what I got. The service matched the price tag which was nice to see but the restaurant itself was disappointing. Not only did they not have Coke or dark rum but they let poor Ashley A order a prime rib and then told her they were all out. + +I had the drunken shrimp and they were pretty excellent. The sauce around them was really good and they were resting on a piece of toast disguised as a crostini. I also had a few bites of the lava cake but since it was buried under a pound of powered sugar, I couldn't eat any more. + +I guess I just agree with Beth S's review...I'm just not seeing what justifies the price. The District in the Sheraton next door is a restaurant in a hotel that has amazing food that is priced better than this. Plus, the view there isn't half bad.",review,fev0iI-XDrteD4SYRKjiUw,2,3,0 +_AvHni-xdRHmZ3XfYHwGkg,2011-06-17,sbEZZKMdenIYRP3a3jMhHg,2,"Definitely a place where the reputation precedes the actual experience. + +It's like it's trying to be Binkley's, and it's not even in the same ballpark. + +We were there on a THU night, and the place was dead. Still, it seemed to take 30 minutes between courses. Which is fine, if you have some bread or amuse bouche between. Which you don't at Posh. So, you eat your tasting portion in 4 minutes, then you sit there for another 26. By the time the 3rd course came of our 5th course meal at hour one and a half, we were all tired, bored, and no longer hungry. We ended up asking our last course to be wrapped, as we were that turned off. + +What really disturbed me on the food, however, was the foie gras. An extra $15 supplement - which is fine, as I think it's always worth it for great foie gras. We were presented a plate with nice size piece of foie gras, in a fruit coulis, and what looked like a nice brulee crust on one side. It looked amazing. And was, if I stopped at eye appeal. Unfortunately, Chef decided to go way off the grid, and serve it COLD. I'm not talking room temp, I'm talking refrigerator cold. If you are a foie gras fan, then you know this is like eating a square of lard. It was impalitable. Imagine being served a lump of shortening on a plate, because this is what cold foie gras tastes like. + +I like the surprise aspect of the courses, and I like the fact you can tell them what you like and don't like to start, but ultimately, I see now why it's best to know exactly what you're getting in advance. + +It took me about 10 minutes to figure out why the whole concept of Posh fails. The dining experience starts when you're wowed by a menu, and sit in anticipation of what you've ordered. When you have no expectations, it's hard to get excited. By the time the plate is dropped and the server is telling you how your fluke is in a mascerated lima bean sauce with a marigold flower garnish and buttermilk glaze, you're not really into the ingredients, and just want to eat. I had to ask my server to repeat every course I was served at least twice - lol. + +Perhaps if I hadn't been spoiled by Binkley's, that has an expansive menu that changes daily, and you pick from 4-7 courses BUT you are given about 6-8 amuse bouche (and bread which is served French style with choices) between courses, I suppose I would have been more impressed with Posh. But not by much...",review,N69-RgMXqRaZbIBbx2eH2w,0,5,0 +9ggd0DySEZNw990JGaFSQQ,2011-10-27,v45RvAdVzQj2yARQMBpGkQ,4,"One of the better malls on the west side, what am I saying the only mall on the west side!!! + +Good line up of the same old shops... spencers, petpad, sears, macys, kitchen store, but also the addition of dicks sporting goods and forever 21. + +They have a good food court, starbucks, movie theater and a chevy's!!! + +This was also the site of the sniper hijack of an armored car November 28, 1994 as seen on City Confindetial. Was a great episode, worth watching. But its not an unsafe mall like some of the malls west of I17.",review,-Wa5j14Rhps3DC2SMaaatQ,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2009-04-29,M_tOh02hkaO4AwBtV6j0KA,3,"When you walk into Sky Harbor, you are bombarded with declarations that it's the country's ""friendliest airport"". Huh. What does this mean? User-friendly? Friendly in a ""you'll always feel at home here"" way? Didn't really know, but it seems extremely important to their PR group, since when you sign on for the wi-fi, you can't change pages until you rate how friendly the airport is from a drop down menu. + +It might be doing a disservice by proclaiming it as the superlative of congeniality. Expectations run high -- at least by me. I found the free wi-fi extremely friendly. Yeah!! Star for that. I found the den-like check in area (at least in Terminal 3), not so friendly as it left me feeling a little depressed. The TSA officer who confiscated my 4 oz (apparenly it's 3.4 oz in PHX) Neutrogena sun screen not so friendly...but not malicious, and I guess I wouldnt be so friendly if I were charged with monitoring tenths of ounces hour after hour. The spoke-security system I found to be not so friendly to both users and retail. I never like seeing a plethora of places to purchase items BEFORE security, leaving you with only a few outlets for you to browse in your little concourse. I hate wondering, what do gates 1-14 get to purchase? Is my concourse more vacant than the others? Just put security before ALL the retail and let us wander a bit. + +Overall, not a bad airport. at all. the friendliest? i don't know, but the free wi-fi certainly made me leave with a smile on my face!",review,WZgoM8UuzxjZf1AaWx3qZQ,3,5,3 +f67EBuoqqgW4h1OcG_K7kA,2010-12-01,cu1LInwi1lcWkHNlG0ZFMQ,4,"It was early on a Saturday, was greeted warmly by the bartender, who was the only person serving the smallish bar area. We dat ourselves and were quickly met for our drink order, beers were 2 bucks for 26oz drafts (nice!) my partner ordered the pizza, it was hot and pretty fresh tasting, I had the waitress order me whatever she wanted! I like doing this from time to time to see their knowledge of the menu. Good food and a fun place to watch the game....",review,_Q8KWRMHyXzVB0YeRfA4KA,0,0,0 +y4bkwSDssQTlFOYZS76K7A,2011-12-29,zwTx89vgWu8IAU2DGaFpVA,5,"This is the best buffet in Az. HUGE variety from veggie dishes, fish, shrimp, mussels, and even sushi. The quality of food is very good too. One thing I have learned is when looking for good Asian food, look inside! This place is always full of beautiful asian folks so you know its good. Just sayin'. For a buffett, they have a really nice staff. There is a shrimp dish with a sweet cream sauce that is amazing. It is more pricey than most asian buffets but well worth the extra few bucks. I eat here at least once every couple weeks.",review,cjU6TqN3bSiW8ShYSoF-0A,0,1,0 +mHfIU6fIdk0Gujqx-XIKNQ,2012-02-21,2um6BaGhCGfQB_lIGCN3lA,1,"NOOOO!!! +Don't think about it!!!! + +Had my windshield replaced by these schmucks. The morons tore up the interior of my car, and damaged a speaker cover. + +I had to call them about replacing the cover thrice, they finally did, and then I found out that there was a HUGE air leak in the corner. They never fixed the interior trim. + +They sent out the same first idiots to plug the leak, and they ended up breaking a ton of clips for a covering on my car, ruining the windshield wiper covers, and DOUSING my tweeter in water. I called immediately after they left and got harassed by a ""manager"" because he just had hip surgery (why is this my fault?!) and couldnt come until a week out! + +Whatever incentives they offer are not worth the TERRIBLE craftsmanship and poor service. +I am exploring my options with a lawyer, and have reported them to BBB.",review,m2LgIRJwLqTUFIjh94fqLg,1,1,0 +KBKDl08flVw1AqvM5ucVpA,2011-04-12,MfOVQZBxefIqd4lDDjXvnA,4,"My partner and I went on a Living Social coupon, and we really enjoyed it. She had the Fish Tacos and I had the Chicken Tacos. Both of us felt that the salsa on the table was too spicy. With so many reviews here and other places about the ""too hot"" salsa, you'd think they'd cut it back a bit. Anyway, that was the only thing we didn't like. The homemade chips were fantastic. + +The service was on the ball and the food was fresh. As an aside,I don't know why they opened at Esplanade. Management there is supposed to be terrible and there are rumors that the theater will be closing. Houstons has already moved out, Pizza Picazzo closed. But Fuego Tacos is a great addition to the neighborhood. Let's hope that this merchant and others who remain at Esplanade can convince management to take care of the evil smells coming out of the septic and fix the elevators when they break every week. This restaurant deserves a community that will support and nourish it. Good job Fuego Tacos.",review,1-A_PLT-60EZ9MsfbkV9sw,0,1,0 +Xsgl3LPU8U2coaAYkEnjcw,2010-10-12,M4emLdIvcCeTrg6_v3JlXQ,4,"Went to Cricket Pavilion to see Jack Johnson- 10/10/2010..Great show- fair venue. It was WAY COOL that on this show- staff came around and handed out green recycle bags for your cans and bottles! Only Jack!! More artiest should take note!! Had some drinks in the parking lot before the show- a few tailgaters were around us, pretty nice crowd overall with no hassles. +There is no way that they should have any shows there between June to August! Thank God the weather broke and it cooled down.. you get that many people together dancing around and it generates some heat! +Typical venue prices.. HIGH! $10 - $14 mixed drinks.. $8 - $14 beers..They had Pabst Blue Ribbon Tall Boys for $11!!! HA! you can score a case of PBR for $11!! +NUTSHELL- Great show, good weather, good crowd..Free parking is awesome!! +If I had to see a Rock'n Metal Fest in the middle of summer there- I Wouldn't!!",review,4xw2k2iAEGumGPYlvGlp5Q,1,1,1 +QnAzW6KMSciUcuJ20oI3Bw,2010-06-01,wcpepBjeZuz0cQKupbB_YA,5,"This place is great!!! They grow alot of the food they use and if they do not grow, they buy it local!!! The food tastes great...don't forget to get a milkshake. It is also a great place to sit and eat outside, nice!",review,47VCrr83Tvtkp1FvDa0ftQ,2,0,0 +Lbue8gqRiBPEnA7g7H1qdw,2011-10-08,sp1eb64cSQSLmmJlvv3IkA,3,"Mixed reviews from my husband and I: + +His comments: +* Salad was good - we had the spinach & Gorgonzola salad. +* Pizza was really good, but too expensive. Plus, it was the thinner type so you wouldn't expect to pay that much. +* Wait staff - not good. +* Ambiance - pretty nice. Has a NY type of feeling. +* Too pricey to go back + +My comments: +* Salad had too much dressing. It was dripping with the balsamic stuff. I don't like soppy lettuce. +* Pizza was just ok. It was served to us fairly quickly considering that the place was packed. However, it was not hot. Plus, we had to wave our server down to ask her to heat it up. She didn't seem very happy with us and did not offer an apology for the cold pie. After all, this place is called Humble Pie. +* Wait staff - Not good. Not very forthcoming with the menu and only seemed to be interested in getting the ordering over with. +* The staff should be humble enough to ask the customer if everything is ok after the food is served. That never happened. Even when she brought over the check we got nothing. +* Ambiance - too loud and dark! Tables and chairs are packed tight in this place so plan to share your space with others not in your party. +* Definitely not going back. + +We paid $34 plus tip for a small Cesar salad, pizza with three toppings, soft drink and glass of wine. Too much money for some Si's food.",review,T10fwLKcy_9goMznW8mA1A,0,0,0 +hW0Ne_HTHEAgGF1rAdmR-g,2012-10-27,PdTXWQpztSASlI6wT-cVIw,4,"Unlike other airports I've been in where your options for food are your massive conglomerate chain restaurants like McDonald's and Burger King, Sky Harbor has a nice array of more local, higher quality restaurants for you to choose from (e.g., La Grande Orange, Olive and Ivy, Barrio Cafe), as well as some healthier choices compared to eating a greasy burger and fries (e.g., Paradise Bakery). There are a lot of good parking options, whether you choose the airport's own parking lot or private lots that provide shuttle service. I also appreciate the free wi-fi, it definitely helps whittle the time away while you are waiting for your flight!",review,uZbTb-u-GVjTa2gtQfry5g,1,1,1 +d3MxUXS1b6U2P_gGuCO1-A,2010-05-09,9jIhtPqtWjP7EOPxv_DQeQ,5,"I now have a sixth Sens for delicious Asian tapas- a genre I never knew existed. I always assumed the best tapas disappeared when Aaron May sauteed Sol Y Sombra's last batch of butter-marinated brussels sprouts! Well, I was proven wrong when I hit up the ultra-cool Sens Asian Tapas & Sake on a Thursday night. + +Guests are greeted by electric blue lights, neon pink lotus blossom light fixtures and fresh beats courtesy of a hipster DJ, which transport the hungry to an intoxicating, fluorescent experiens filled with sauces, sakes, and spicy flavors they probably don't even know about yet. + +I tried three top-notch items: + +Wasabi Tofu- Hot, in every Sens of the word. Wasabi and 300-degree tempura crusties have the ability to burn you to your soul if you aren't careful. Don't skip it, just poke it with a chopstick or blow on it first. + +White Peach Juice and Vodka- Just like Japanese candy exchange students brought home in high school, it's one of those miraculous flavors most Americans will never have the opportunity to try. Light and sweet, but not overly so, it's a perfect blend you can sip all.night.long. (I did!) + +The best, by far, is the Hot & Sour Soup. It's nothing like the kind you get for .99 at Chinese restaurants as an appetizer. A Bilbo Baggins-ey cauldron arrives with a wooden ladle- among the various veggies and disc-shaped noodles is your choice of meat- I chose clams. I've always heard you can truly tell how talented a chef is by how tasty his soup is, and would have to agree. There's nothing to hide behind, and you're confronted by pure flavor. It was complex, different and mouthwatering. + +The whole Sens-ation was so genius, I even got past the embarrassment of Chef Johnny Chu snorting in my face for taking pics of my meal on my iPhone.",review,Xiprzd4TvJcZnVHGPdDh1A,1,0,0 +uFJwKlHL6HyHSJmORO8-5w,2012-04-28,V8ciEDb_81xsGkbWkbv1Jg,4,"I love this arena...maybe I am biased since I am a diehard Suns fan and a downtown resident, but it really is a nice facility. The Suns games are always well put together...great announcer, great dancers, great entertainment, and great concessions. + +I attended the last game of the season in a suite Wednesday night and was impressed with the space and the food...actually quite good!",review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +rY25aXvPYLUZPWlS8BAhbQ,2011-07-15,3l6SiUHYsgAVRU02f_tmCw,5,"I have a serious Banana Republic problem. Rewind time to about three years ago when I bought my first dress from BR. I had just gotten my first full time ""real job"" after finishing college and I needed a wardrobe to match my new position. It is now three years later and I have probably close to twenty dresses from BR. The only issue I have is they leave me pretty darn broke, so when I heard BR had a factory store I was stoked! So last weekend I dragged my husband, sister and niece down to Anthem to check this place out. + +It was crowded, but the prices of the items definitely make up for it. That is, when you find something worth buying. The selection of items is a little weird, and you have to fight with many other women to get into the racks with the good stuff. But I managed to find two 100% cotton dresses that are both casual and work appropriate at the same time. Priced originally at $80 with a markdown to $40 on the rack, they also had a 25% off sale on these particular items that day. So I scored two dresses originally totaled for $160 for $60. Sounds like a good deal to me. I wish they had more colors, except that would have been bad for my credit card cause I am sure I would have ended up buying them all. My husband also scored two pairs of jeans, two cotton shirts, and three pairs of boxers for under $100. + +I can see myself making the 50 minute drive down here at least four times a year to see what new stuff comes in. My dress collection is going to get larger this year, I can tell you that. Also, if you sign up online for the factory store you can get coupons for extra % off your total purchase. So your super discounted items just got even more discounted.",review,2nXFEyQ06RfcdAXIPbxuwA,0,1,0 +jJhNOhuGpIsJX5SEUFFWYQ,2009-07-30,ycAsRoIHFGdnU98ii2Imew,2,"In Short: Long lines, complicated menu, and a fist full of dollars ........ for a hot dog? + +I guess I never bought into the whole gourmet hot dog fad, and probably never will. I've heard my coworkers talk about the dogs, and on more than one occasion seen astronomical lines at the counter, so I thought why not, it had to be good, right? + +Talk about sticker shock, and only for a single dog? Very overpriced indeed, on top of that, they managed to complicate a simple hot dog. Various types of meats and topping options were a bit confusing, not because there were too many choices, but because non of them were really explained. A little annoying for a first timer customer. The dogs themselves are not bad, but I think you'd have to a complete idiot to mess up a hot dog. I still don't get whats so amazing about it, definitely way too overpriced, won't go again. They can keep their wieners and shove it!",review,n4PmRYAvx2c6X0-fb9mT9Q,2,2,1 +Nq7eB1wB2EArUICtiNePvQ,2011-12-18,GzKoUw0vKFblpGe_mLsstg,3,"So I was meeting some friends here last night for drinks for a friend's birthday. We were supposed to meet at 9:30 but it was around 10:30 when we actually got to the bar. We walked in and had our IDs checked and then stood around awkwardly...I'm not sure why this happened, but after a few minutes we were asked if we needed a table. Yup...that's why we're here. So we were seated near the bar. The place is large and the decor is fine, but the music they were playing was mainly from the 90's and made the place seem less 'hip' I guess, not that I know much about being hip. We waited for about 5 minutes for anyone to acknowledge us. The waiter finally came by and took our drink order. I got the agave basil margarita ($8.50) which was soooo good! I was very happy with the drink. The Birthday Girl got a blueberry bliss... which wasn't what she was expecting. I tried it and thought it was good, but it was definitely more like wine than a mixed drink. The others got beers. + +So the real problem, for me at least, was my second drink. I got a tropical margarita ($7.00). It was one of the worst drinks I have ever had and was a challenge to drink. It was SO acidic and just nasty, I swear the two drinks could not have come from the same place...but they did. That's a huge red flag for me. + +Side note: Why do restaurants think it's cool to not price their signature drinks....why should I have to ask how much it costs? I find this completely ridiculous and annoying. The drinks didn't end up being very expensive here, but I feel like I should have that information available to me on the menu just like any other item.... *ok steps off soapbox* + +As far as food goes, one of my friends got a side of fries that were pretty good and came with bbq sauce, but other than that we did not eat. I have heard good things about their food from other people. + +After we were done with our second round of drinks (and the fries) we decided to move on to another bar.....but we couldn't because we had no check! Our waiter, who had been almost harassing us towards the beginning of our night, had completely disappeared. He finally came by like 10-15 minutes later and reeked of cigarettes....there is no way he only smoked one because I could almost taste it...pretty gross for a waiter. Anyway, our checks were brought fairly quickly after that and we were finally able to leave. + +Conclusion: Be very careful what you order....it is a total mixed bag.",review,3gIfcQq5KxAegwCPXc83cQ,1,2,1 +sb4wU69LkCtC6Axqcd34WQ,2012-07-09,HYqd_cQVfpFR9C5Q3ovHOg,4,"I went to Blanco Tacos + Tequila in Scottsdale with my family for my birthday dinner. This is another one of Sam Fox's restaurants, and it serves up modern Mexican fare. Our party of five all got a ton of food that definitely required to-go boxes throughout the meal. + +The atmosphere at Blanco totally didn't surprise me, considering it's a Fox eatery. There was the open kitchen, huge hanging lights, centrally located bar and airy feel. It was chic and dimly lit with candlelight, but there were televisions throughout broadcasting football games. It was a great mix of casual and fancy, making it the type of place where it's perfectly acceptable to go and just down a couple margaritas, or have a fun dinner date. + +I started with the Blood Orange Margarita ($9), which you should get with salt even though it's a little sweet. It was a strong drink, and the sweetness wasn't overpowering. + +For my meal, I started with the housemade guacamole to go with our tasty chips and spicy salsa, then had cheese enchiladas and finished with a Tres Leche cake. The guacamole was so amazing, other people at the table were also inspired to order it for their starter. I really liked the cheese enchiladas, but, as my mom pointed out, they're more modern in that they're not smothered and dripping with cheese. Instead, they're covered in an interesting creamy ancho sauce. I guess I prefer traditional cheese enchiladas, but there was still a ton of cheese inside the tortillas that made me happy. + +The cake was really interesting. Someone compared it to a bread pudding, since it was really crumbly and wet because it was drenched in a milky sauce. I liked it, but it was too rich to finish. + +Altogether, I thought the meal was an excellent deal. I would definitely go back for the lively ambiance and tasty take on Mexican food.",review,v2UqlUHA8d3lgTIby0CCFQ,0,3,0 +iqLVYrsX25XUZqjRjvbYfg,2008-06-26,DKw4MVkL1qbDG_txZcbnxg,5,"I just had my first Tammie Coe cake last week for my birthday, and I will NEVER be the same again. I don't normally eat cake, in fact, if it's not Brownies, I don't eat it. But this cake drew me in with it's appealing fondant. From there, I got lost in the spongy richness of the cake. A cornicopia of flaverful goodness. + +So make a metal note to yourself, I will only eat Brownies and Tamie Coe cakes. + +Oh, and special thanks to Arts G (previous review) for telling me what the hell fondant is. I was just calling it ""sheet like frosting"".",review,BkmIUgwHg_5TCkJbdMEiJQ,5,7,7 +r-a-Cn9hxdEnYTtVTB5bMQ,2011-12-28,iIG59Vrlwwxip2pJPQ3kzA,4,"While I don't like to hype places up (because really, how GOOD can any one place be) ...How good can one burger joint be over another, or how good can pizza be over another pizza place (when weighing the ones that are all generally Good in the Public Opinion). Now the word around town is that The Grind is Sofa_King Great. I will say about The Grind that when you're up for a Burger, this place hits the spot. I've been here once before August 2010 (don't remember what burger I had but recall it was good) and the other night I had the Peppercorn Burger and it was as good as it gets. I was starving and really hadn't eaten all day and that helped add to how much this hit the spot, but make no mistake, it was really good and I do enjoy this place for the atmosphere, service, and quality of food. My friends wife got one of those healthy wraps and she liked it a lot. The sweet potato fries (we ordered the half sweet potato and half regular fries) and they were good. + +As for some other areas to review: The atmosphere is nice. It's casual and not too dark and not too light inside. (That's how I like it). There's multiple flat panel TV's above the bar, so plenty of games on at any given time (That's also how I like it). The service is fine (although based on some other reviews people have been so so satisfied about the service. That's often going to be the case with most casual establishments - so sometimes it's good, and sometimes not to our satisfaction). Such is Life! Anyway, back on track here, the Wait staff and Bar staff have been worth the 20% tip both times. No complaints by me about this place, however I do see some 2 and 3 star ratings on here. + +Where I will dock 1 star and sort of agree with Kristi D. She mentioned the large photo of Sheriff Joe Arpaio on the wall (while I sense that Kristi doesn't care for Sheriff Joe, I'm neutral about him), but I agree about all the oversized photos of notable names in town who have dined in The Grind. I'd much rather see real artwork or real photographs on the wall - and not photos of Sheriff Joe, Mark Grace (for those who don't know, he's a former baseball player), and the Mayor of Paradise Valley, all holding their burgers. Who the hell cares about any of them and their burgers. I think I'd be more ok with having these photos above me, but they are HUGE enlargements and a bit overkill. And they are for sale and the proceeds go to some cause. Look, I'm all for causes and shit, but I wouldn't spend my money on a 36 inch enlargement of these local ""notables"" holding a burger. The whole concept is pretty stupid. But hey, I'm generally uptight and been doing photography 20+ years and probly am just hating on the fact that my photos are hanging on the wall. + +Side Note: For those who might have previously had ""Liked"" The Grind on Facebook but no longer have their page as a Like, it's because they apparently had their group page hacked, so they had to start over. I found this out when I Liked it the other day noticed there were only about 165 Like's, and certainly I knew this place was way more popular than that. When I commented that, they commented back about it being hacked and starting the page over. +http://www.facebook.com/thegrindarcadia",review,ws1Aus3O6ZcalHBQRraSHg,1,1,1 +CQDxI8giIc6Kg9hQFLC6Uw,2010-12-09,FKMAkHkwyGvMUeBQ0y_8eQ,4,"Yum, Jersey Mike's! I freakin' love their wheat bread with the little specks of... I don't know what it is but it's very good. The mini sandwich looks tiny when you first see only the bread but after it's decked out and rolled up, it becomes a plentiful sized sandwich. I've tried different sandwiches here... turkey, club (both kinds), italian and cheesesteak and love them all. There's something about that oil and vinegar they top it off with in the end that seals the deal. Other places do that too, but Idk here it just tastes better. + +Sometimes I ask for the chipotle mayo instead of the regular and it's quite yummy with a little added spice. + +Also, I like that they carry Pepsi products. I like it better than Coke. And they have Cherry Pepsi, too :)",review,KSTOdz0lSFCkqBSRNwjERA,1,1,1 +2MM8cFKHp8OaB13fp0ysGw,2010-10-13,_jROvzttf8pNbkeUKVmulQ,5,"This place is our go to mexican place. I love the hot sauce and you can't go wrong with the Fundido sauce on the burritos. I personally enjoy the Chicken Fajito Chimi with Fundido sauce. It could possibly be the worst thing there to eat (and I love it). For the healthier days, I like the Pollo Salad. The chicken is always great here.",review,amNYUamFs7V2pEakBLdfCQ,0,0,0 +L8STRioAgDx-_FRFuuUU2Q,2011-04-19,6vxBacH0GJDnLZ-SZ8BA6Q,4,Nice clean place with good food. Shrimp burrito - pretty tasty.,review,LBUMcs2dzqqrqi50eh8q4A,0,0,0 +sbD4f8aOsXZ6PJYh1kN4Ag,2011-04-07,zsSy7iQN9O3xWmy2OG-aDw,4,"How can you not love Westgate??? They really do have it all for everyone!!! + +Plenty of places to get a bite to eat. A few places you can enjoy are Southwest Moes, Margarita, Johnny Rockets, Ocean Blue, Cold Stone, a new pizza place that slips my mind, and so much more. If you want BBQ, frozen yogurt, burgers, steak, or what ever else makes you say yum...they have it! + +If you have the itch to shop, they can satisfy your every need! I always pop in to Just Sports to see what they have for my favorite Valley team...Go Coyotes!!! + +Speaking of entertainment! They have it all... a huge AMC movie complex, first class Jobbing.com Arena (Phoenix Coyotes NHL hockey, concerts, and more), UPS right next door for Cards football, and conventions. Plenty of thirst quenching bars, and one certain days of the week, live music in the splash pad area in front of AMC. + +As if you need more...WG is clean, safe, easy to get to from any place in the Valley, and plenty of free parking! I am not the only one who loves this place. Every time my family gets visitors from New York come in, WG is always a must stop!",review,n1KWJCpVeoTrzcN9iATfKA,1,2,0 +C42yP2SAQyit92zVyRAqMw,2012-01-21,5KRMWa6l7JNGO3MUI1jrGw,4,"Wonderful low priced food. Love the fries! Love the Buffalo Hot wings, Good spicy chicken sandwich, good chili cheese fries, Good variety of burgers. Fast service. I fight the urge to stop in almost daily!",review,-9mljS0O9mwdOnGv-Oea3Q,0,0,0 +6oRAC4uyJCsJl1X0WZpVSA,2013-01-03,FJhI-HZIMHhnd9jab4I7Pw,5,Awesome food. Highly recommend. Had gyros platter . Generous portions and excellent meat. Check out their spices and other food stuff. Got couscous very cheap.,review,5j0hoUVgYJTyNshMXgJ4rg,0,0,0 +TCqkBVN84Ek0oLmZGAX5xA,2008-07-06,yS9O5xW0WZbHx7kPi_8XYA,2,"Not impressed. Start with the service. Not professional. It seemed as though the wait staff was clueless as to the table numbers. We were given the wrong table's order twice. + +Second, the food was conceptually a mess. No clear theme or flavor profiles. The food was heavy, greasy and took forever to arrive. None of the dishes were memorable. + +Third, the wine selection seemed to be lacking. And, the sommelier didn't know where the wine was from she was serving. Not impressed.",review,54wr4oNkJsvaHM1U5n4iUA,4,4,3 +jJlOPkv4Xl6vxNzr51fnYw,2012-09-16,JqM012q3yQfSIDJ2mMVTGQ,5,"One of our favorite restaurants in the Valley! We go here about once a month. Some of my favorite dishes are the whole fish, salt and pepper shrimp, Pho with everything in it, Spring rolls, Shrimp/Pork over rice noodles, and the Seafood over soft egg noodles. We also have the Vietnamese coffee as our dessert! YUM!",review,zG1tYaWP2bE9mAaLzbx9GA,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2011-04-09,srg5A9x4Fd-_WxLp7RykKw,4,"I love Fez. I have been coming here for years. The food is always good and there is something for everyone on their menu. One negative: the service is mediocre. It can be quite hit or miss, and sometimes the servers are just plain slow. One suggestion: the menu could use an update. The dining options have been pretty much the same for years, and it would be fun to mix things up a little. One more thing, I have ordered take out for groups of about 20 before...the staff and chef were GREAT to work with and extremely accommodating. This is a nice asset on the Central corridor.",review,e9d9EQqOd2-NlX8WFx0aEg,0,0,0 +-h-q6zTIdPlkz9BDP11sBg,2012-03-02,Gob1Rk3vPEx2vzGF8ZvoJQ,5,Love love love this place. It's a very healthy place to eat and always has awesome food and awesome service!,review,4gaG2PMS5erPnRmf7oEYNA,0,0,0 +LaHyoyMfcyPJmdeHmGo9lw,2012-08-10,lEN_dM8UMgTwxbOd__A9JQ,5,"It's a nice newer gym with a good amount of amenities and a relatively friendly staff. I see cleaners in the club every time I am there which I dont see a lot of at other gyms. They have a stretch room, full wet area with steam and sauna, free aerobics classes, a large number of equip,etc. + +The evenings do get crowded even with all the equipment, so I try to get in and out before 5 or so. + +All in all a nice spot to get a work out in the area.",review,j27DnYtLn9tzF8bbtXTpbQ,0,0,0 +zwToyWL4dT1clsFPK9wI2w,2007-05-24,zzrCJkX_SWtF3JJbfPE_PQ,4,"Yum. Only wish this place was closer to my side of town so I could eat there more often. Babbo (doesn't this mean Santa in Italian?) is a neighborhood Italian food joint that gives you big, tasty portions of food for little prices. + +My friend and I always go here with her fam when she's in town, and I always look forward to it. The menu is filled with tons of pastas and all the regular Italian fare you'd expect to find, but they also have some great, unexpected desserts. + +They have this apple calzone that is so freaking good, but the only downside is that it takes forever to cook. Order it while you're still eating your dinner so you won't be sitting there for another 30 minutes waiting on it. They also have a huge half baked cookie dessert kinda like the amazing one at Oregano's. And while it's not as good, it comes pretty close. The desserts are ginormous, so sharing is best.",review,0CMz8YaO3f8xu4KqQgKb9Q,4,5,0 +Zx8_4zKdDBSO3qGrkukBIA,2009-11-11,qby0FMBrOXN7p4_vONeUBQ,4,"Loving this place since I was a kid. Stopped eating meat three years ago, so I miss the Jerk Fried Rice and Carnitas and Emerald Chicken, BUT the Veggie Quesadilla with black beans and white rice is amazing with their tasty red salsa. + +Always amazing customer service and it's great that they let you taste everything before you commit. + +They should lighten their footprint and reduce food packaging. I always feel guilty when I leave with all that aluminum and styrofoam. + +BTW, don't be swayed by offers of other cookies; snickerdoodles are where it's at.",review,PNAkqna65eJq8Od5dl1iDA,2,3,1 +04Jrd2zSzwHwmBqdKQDmIw,2010-01-30,cKEcHLtlXtwlateMONS7bA,5,"Finally a teriyaki bowl place that does it right. Nothing against Samuri Sam's, but Yogis is a bit better in my opinion. Yogis' menu is strait forward and clearly lists the options available. The place is clean and the staff is fast and friendly. The food is also very reasonably priced. I was very impressed with their different bowl/plate/salad options. You are able to order some teriyaki veggies, chicken and/or beef pretty much however you want it. Extra meat, over lettuce, over veggies, brown rice, white rice, etc. + +Anyway, when I visit a place like this my desires are simple. I want a decent portion of not-overly-sauced white meat chicken over a bunch of veggies. That's it. Yogis delivers this and then some.",review,rLtl8ZkDX5vH5nAx9C3q5Q,1,2,0 +Hdi7jkB7pHiM1nyPHcqSdw,2012-08-14,mFG3Fkr8Pj5GrYMKnrqjwg,4,"This mall is HUGE for a mall this big I think they should have more directories but nope they want me to get lost in this mall. + +This mall has plenty of stores and a bunch of designers, you can probably find something for everywhere here whether you want a coach bag or a bag at forever 21. I especially loved how the Sur La Table here had a cooking class going on and you can see the kitchen as you walked around the store. There were plenty of food options and so many stores here that it was easy to get lost. There was a windows store here which is a big plus since I have never been there. Even though I personally didn't find anything here for me there was still a big wide variety.",review,MPNFtwa6OGZcMJoB6b90iQ,0,1,0 +qw93CjlAZ6a4ff11Z-hF3Q,2011-10-06,rg24-P5nW0c1_w61jO2pUw,5,Fantastic venue! The bartenders are nice- the drinks are excellent. The lounge is an amazing place to hang out (best downtown spot?!) even if you aren't going to the show! Cool free shows in the lounge! Now let's talk about the main reason you would go there- THE MUSIC! And the venue itself is awesome! The sound is great! The ROOM IS GREAT! It was designed by someone who knew what concert goers want- an intimate experience with fantastic sound. And so if you have the curse of ALWAYS standing behind the TALLEST DUDES EVER at shows- you can now take advantage of the bleacher seating in the back of the room or benches on the side. THERE IS NOT A BAD SEAT IN THE HOUSE! What is left to say ? GET THERE!,review,WGlkpw7vxWMG0zZ2t5LKrg,0,1,0 +IYYaa562PybzXf8tQnT17w,2009-03-02,E7Zuy5x72Dwpnd_ariNfTA,5,"I have been to every ballpark in the Cactus League and know my way around them all. This is, by far, the best facility in all of Spring Training (that includes the Florida parks). Granted, I am a Dodger fan and we get it better than the 'Sox fans do, but it is still amazing. + +Camelback Ranch is the brand new, state of the art, spring training facility for the Dodgers and White Sox. The Sox moved from Tucson because Tucson is the literally SO bad that even people from CHICAGO won't stay there. The park is located just south of the Glendale Airport and pretty much only has one way in or out - 111th Ave. You can avoid Camelback Rd by taking Indian School to 111th and then just drive into the stadium. + +The grounds feature 13 practice fields and a giant lake and river that also help irrigate the fields. While the White Sox practice fields and clubhouse entry are blocked off from the public, the Dodgers' are wide open and inviting. Players must walk through the crowds during practices which invited lots of interaction with the fans. + +The field is beautiful and the layout of the stadium is quite impressive. Not only do they have a full Jumbotron but they also feature fully enclosed suites and a full buffet for those willing to shell out $90 per game. That price gets you seats behind home, access to unlimited food, wine, beer, soda, and sweets. It also gets you exclusive merchandise as well as cold towels to help you cool off. It sounds like a lot but it turns out to be worth the money. + +The grass seats have a great slope to them (much like Scottsdale) and the seat aisles are wide. The food selection is lacking without Dodger Dogs, however. The stadium is also missing the independent food vendors that Maryvale and Peoria feature. + +A great stadium and surely one to visit every March.",review,fev0iI-XDrteD4SYRKjiUw,3,4,2 +Gq092IH6eZqhAXwtXcwc6A,2011-12-05,-v5D8EoibX7dDwPjYIPdaw,5,"I was introduced to SanTan Brewery two years ago on a very cold, winter evening. My cousin knew I would instantly fall in love with this place, simply because I just love fine craft beer. + +He was surely right because I visit SanTan three times a week because I simply cannot get enough of their beer selection. It's like an adventure every time I go. The staff is fantastic not because they're very nice and friendly, but they have the same passion and enthusiasm for fine craft as I do, so relating to them in that respect makes the experience fantastic. + +I normally do not engage in writing reviews on websites like this, simply because I personally tell the management team my best regards but I will for this because people really do need to experience the joys this brewery has to offer. + +SanTan is the new level of drinking and dining experience. It's relaxed, fun mature environment and you can start a conversation with anyone there. Enough reading this review, go try it out yourself.",review,gxNiBlc3_BGn3llzkGbYsg,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2009-11-10,_5RZrSP0AxWGxdQoeYqhZw,5,"Scottsdale Fashion Square is the king of shopping centers in Arizona. It's unrivaled and it maintains it's crown through constant improvements, expansions, and new stores. Empty stores are rare. Try that on for size, PV mall. + + +The food court is decent, but a wide variety of restaurants surround the mall, providing the shopper with an endless amount of stores, and a great selection of places to eat. Scottsdale Fashion Square aims to please the most critical, and goes above and beyond all expectations.",review,0KXxuKxlspsO6CrDLgQJ-w,1,0,0 +fK7ujDbjhRFEe2D7eIwK4w,2012-07-12,ts2MBMNYFvzvTDlhDpa5mg,4,"I recommend Kona for their American menu but skip the sushi! I ordered a Vegas roll a long time ago and it was horrible! I vowed to never come back until my friend Danielle told me that they have other items on the menu like salads, sandwiches, pasta, and burgers. I caved in and agreed to meet her for lunch at Kona. We shared some cheese and bacon fries. I ordered chicken pesto pasta and she ordered a club sandwich. A friend met up with us while we were having lunch and they gave him a huge slice of red velvet cake for his birthday! Friendly service and great food. What more can you ask for? I am now a huge fan of Kona and I can't wait to come back!",review,jopndPrv-H5KW2CfScnw9A,1,2,1 +d3MxUXS1b6U2P_gGuCO1-A,2009-04-27,J2d6URUq9zrZnC2KUATb6w,4,"ok so i just read a few other reviews and i must comment on them first. + +The reason the portions are small people is because they are all appetizers. +if you want heaping mounds of onion rings, go to Fridays. + +the atmosphere is amazing. it isn't trying to hard to be cool you just don't know what cool is. +it's okay. we all get old eventually. +i actually asked a little about the lotus lamp shades. +they said owner had them made in china and they are absolutely stunning. + +onto the food. DELICIOUS!! +i've been there twice now and my favorites are +curry chicken wings +wasabi chicken +and the bacon wrapped mushrooms. +if you're still hungry, ask for a side of rice and pour the remnants +of your curry sauce all over it and lick the bowl clean. +finger lickin good.",review,gXQ3peDz-H8mFZO_U4ys3w,2,2,2 +jtzhY-P4H6WSYpv5rWhxtw,2011-08-11,mHGsVVYQEh2s-qmQ-1y9Zg,3,"Ok, I usually write longer more intricate reviews about a restaurant but for this new establishment I will summerize. + +1. Great decor and ambience; would be better minus the flat screens +2. Friendly service; but needs more training with food and knowledge of +3. Timing of Kitchen; if a table has two or more persons, food should come out at the same time or around the same time. Especially when they are not sharing. +4. Food; if you specialize in spring rolls, please make sure they are rolled up proficiently. It needs to be tight, not loose:) Flavors are good, but there could be a variation of sauce for the spring rolls. 4 rotating flavors for over 20 rolls is not a good ratio. +5. Pricing is not bad for some items, but I do agree with other reviews that for most items, the pricing is a little high for the neighborhood biz and the quality of food offered. + +Overall, nice place to hang with friends for a drink and nibble before the actual dinner somewhere else. +I will give it a few more months for an update. This place has potential, but not well executed. When opening a restaurant, you should be ready and able to. If you are not, you should wait til the staff is well trained. I believe the owner or chef is inexperience. Hopefully, it will improve... +Get to work guys!!",review,xs_fnNe0hofd7ZOupCjesQ,0,2,0 +MLzh2-7zSnPdFmNcuSaaJQ,2012-12-30,qCmWLHprjYvxS0L6SIakiw,1,"Last night on my way home from work I figured I would pick up some dinner for me and my wife who is taking care of our newborn all day and has little time to cook for us. I ordered chicken limone the menu says serves two to three and we don't eat a lot so I figured it would fill us up. The price was 18.99 but I figured in a family style Italian place and we should have plenty of food. + +I was handed my bag and I was sure it was the wrong order because it was so light so I checked it in the car and was shocked. + +I see three small pieces of chicken in a big container with a small piece of bread and that's it! + +So I figured they just forgot the pasta and went back in and asked the hostess and she said yes it comes with it then said no after thinking about it. + +So how can they justify that price? It was so small there was no way it would feed 2 people so I had to cook pasta at home and then reheat our chicken in the microwave. + +I worked in the service industry for years and this place is a joke! + +FYI just because there's people with money who live near your restaurant doesn't mean you can tailor your food prices to their income level without delivering value.........if you sell crap in the worst neighborhood that same crap should be priced the same in a affluent neighborhood....same crap different place. + +No value means lost customers ....",review,90-uDWiQKa5B8Xa2hiRu8w,0,0,0 +cBpJIOrVXotDI0XAZH_k0g,2012-01-08,1-SV-H0EfLJu6M-QqaWO3Q,4,"The more times I visit my son, the more sports bars I get introduced to in the phoenix area. If nothing else, I know my son doesn't go to dive sports bar. This is another upscale sports bar he introduced to mom and dad. We went to lunch on A Saturday 01-07/12 around 1pm. + +The restaurant was not crowded, a light crowd on a sunny beautiful 70 degree? Phoenix day. My son was meeting some people in the area, so my wife and I had a light lunch and he met us afterwards. + +What we had + +Lunch size Ahi Crunch and french onion soup with salad and Iced Green Tea. That was it for my wife and I. Total plus tax $23.70. We weren't very Hungry this day. + +As others have said, if you want beer, lots of variety and want to come back every day for for two years and never repeat your beer order, this is the place to visit. + +If you want to have a party for the football season, or any type of sporting event, have it here, they offer a good variety of party platters, and it's not your regular wings and potatoe skins and fried veggies and cheese thingys. Party platters offered: + +Moo shu egg rolls, Seared Rare Ahi Sashimi, Thai Chicken Noodle, Penne with Chicken and Peach apple cobbler just to name a few items. + +A place like this, I could get use to going whether or not there's a sporting event going on. + +I read there is at least one in Denver Colorado area if not two. I will definitely check it out. + +Our server was very friendly and it was very relaxing to sit out on the patio for lunch. We will definitely come back to the yard house, whether it's here or in Denver to see further what Yard House has to offer",review,fidu_4aHqkL_QHC1guZAWw,0,0,0 +uEJQSIjWui-TDWXaGlcqyQ,2009-10-04,cdT73TqjYqLRQ-my8GoQoA,4,"I have been craving some soul food for quite some time, so I kicked and screamed til someone finally took me to Lolo's. After memorizing the menu for weeks, I knew I wanted the Baby Ray. So we go in and I was overjoyed that they had a band playing some sweet grooves. I jammed out a lil while waiting for about 10 minutes. We were seated in a nice lil half booth/table combo and had a huge jar of koolaid and sweet tea delivered to us. Yum! I starting getting the biggest sugar rush halfway through the wait. When my food did arrive, I was presented with two waffles bigger than my face, 3 big pieces of chicken smothered in enough gravy and onions to fill a whole gravy boat. The chicken was spectacular, really good flavor and crisp(when not soaked in gravy, get it on the side?). Gravy was pretty good as well. The waffles were alright, I can't say I am the biggest waffle fan, but the subtle cinnamon flavor was nice. I think the waffles could have been better in my opinion. I am kicking myself for not trying the grits and collared greens or the red velvet cake. I could not finish my second waffle though, so much food, couldn't even think. The service was probably a B-. The hostess was bubbly and sweet. Our server was busy and a little frazzled maybe. The server gave us the wrong change and seemed to not believe that she had. Waiting for the correction was longer than average for sure. Overall, though, I had a good time, perfect way to end my weekend.",review,TWf1hVrosPKBgFHkoujoXQ,3,3,3 +NX5YHSIyesufcsI7Rg5NLg,2009-11-15,9WrEujX_777GPWrSSrtUtw,2,"Ugh. +I used to like this place. +But I've gotten over it. + +I find the food to be uninspired, and below average. + +Blah.",review,PShy2RYNadDUhJf4ErOJ7w,0,0,0 +-UT6IHfVW_2yzz1bf8WI5g,2012-08-12,-AqxCcpE1s-rSq5jVHMyCg,1,"Music was loud as shit. The food, Jesus Christ the food. Lame ass chips and salsa. No joke, like 8 chips were on the plate. Salsa was probably one of the worst I've had, no flavor at all and warm. Salads come out warm (I'm assuming this is why I've been puking). Gross right, warm lettuce. Waiter let's us know they can make daughter a little quesadilla (cheese only) which comes out so greasy. Our taco plates come out 10 minutes later. 2 dinky tacos on each plate that are flavorless and luke warm at best. Yes, they are spicey, no that does not mean they are flavorful. I'm literally using my cell phone to see what was on the plate it's so dark. Mint water was warm. Gross and not refreshing whatsoever. My daughter's quesadilla was $13, yes for 2 tortillas smaller than my hand and some 'cheese'. I get it- make a dollar, but damn, don't rip your customers off. So over the top lame. Neither my husband nor myself finished. Meal was $46. Horrible. Health department should go temp that place- I'm not sure the refrigeration is working properly. Such a disappointment, I've been a vegetarian for 18 years- was looking forward to a new spot. Won't be returning. Ever.",review,-GhiIOHXIxlQuy8BjSTSRg,3,4,1 +mqQwChPNN4o4DhAzaGntIA,2011-06-06,HKPXVx8BwFeycuvSnp6j6g,5,"I have memories that make my mouth water. My mother calls me everytime she passes through Phoenix to ask me where this place is. She tells her friends in Los Angeles to come here if they have business or family trips to Phoenix. They all rave after their experience. + +The fry bread house is as authentic as it gets. Indian tacos, fry bread with sugar, and oh my god--the red chili stew. I think I just drooled a little on my keyboard. + +The place does get a little cramped during meal times, but we used to take ours to go and sit in the park after a bike ride down Central and picnic away and then do our best to ride it off afterwards so we weren't wallowing in the guilt of our deep fried pleasures. + +Make sure they are open before you make the trek, they have funky hours.",review,2FaFQuAfr0W1h7iLbg5crQ,1,3,2 +pNJhovUsGAZ4XqG3lCU-5g,2011-07-11,YGfzcVl71Rb8xel8OyRzMg,3,The new leaner breakfast sandwiches are good (they basically take the bottom and top of the bagel and you are left with smaller ends of your sandwich). An easy way to cut calories without losing the taste.,review,k6ZQA3DJ2EfZJMmadBlWNw,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2012-01-19,h4eLSiy2dQ1kOZxNF1AUNw,5,"Culinary Dropout is a fantastic place to eat! The interior is very rocker complete with stage for bands, interesting and yummy food, with an array of beers and amazing food! If you decide to go (which I don't know why you wouldn't ) try their monkey bread for dessert, it is to die for!",review,axQzSBO4qfLm4ROVEG8dhg,1,1,1 +U4IipLI4RsuBLmxTFEV2MQ,2008-12-08,FoY4kiyOCHU_d0PcYo6Yng,4,"Thanks to Yelp I was able to read they charge extra for the gas before freaking out on the people at the fron on my way out. + +The staff was extreemly helpful and even told me there was one open spot close to the front. They were there ready to pick me up before I had my trunk open. The ride was smooth and direct. + +As long as the car is there when I return this place rocks!",review,C6IOtaaYdLIT5fWd7ZYIuA,0,3,0 +5Igwt99qrbgFQTR7jFC6WA,2011-06-22,Gh9cKACZj1VnlQGgUWK-jw,4,"Headed downtown to the soon-to-be-new-office with the boss today and had lunch here - he's lived in Phx for decades and recommended this place (although he hadn't been there in many years). I got a Super Sicilian. Absolutely delicious - the sesame bread looked like it would be hard/crunchy but it was soft and tasty. If I had to offer up any criticisms it would be 1) the fact that it inexplicably took something like 10 mins to make our sandwich - it just looked like it had been toasted, nothing else I could think of should have made it take that long, and 2) the sandwich was too small *8-) My mistake, of course. I got a whole, and could easily have downed two of those. Taste wise it's equivalent IMO to the ""all-American grinder"" at Uncle Sam's, except with the latter you can also get jalapenos. Will definitely return here once our office shifts downtown, but next time I'll get a sub and a half, methinks! + +PS: Parking? The boss just parked his Ram 2500HD and toy trailer around the corner on the street in front of someone's house. No problem and no parking meters. (shrug)",review,6G8vLJUi1Ees2qC3RGA3Nw,0,1,0 +ExpTNnro-X-NZrsOlDEzRA,2012-12-05,yDZscGH1Axf2JXKYE19eOA,5,"As a massage therapist I normally would rather have a massage than get adjusted, that was before Dr. Hunt came to town. I trust him implicitly, and the techniques he uses are amazing. I take my four year old to see him too, who always greets Dr. Hunt and Larissa with great big hugs. Highly recommend this office, truly feels like family",review,81YC2XbpXQh39ROlP_pfoA,0,0,0 +asebFFgabg_lfoNpGJHZlQ,2009-11-19,NqSHKPKqYmh1l2-YPm-KUg,3,"I am not in love with this place nor do I despise it. + +I am Mr. Middle-of-the Road with Stacy's. + +Somethings he does very well, others are just so-so. + +Here are the Do's and Don'ts- + +DO-Order a sweet potato pie to go. That happens to rock the house! +Have the pulled pork sandwich. Solid sandwich. + +DONT--Do not and I mean DO NOT order the chicken BBQ sandwich. I ordered this a couple months ago and I could have used the shredded chicken as toothpicks. They were hard and came served in a weird cone-like shape on the bun. Also, skip the sweet potato fries. They are dry and taste like dirt. Yep, I said it. Sorry Stacy. Back to the drawing board on those. + +The sauce is everything at a BBQ joint and his is just OK. Actually, I have had better in a store-bought bottle from AJs. + +If you are in the area, go for it. If you live out in Glendale, it's probably not worth the drive. I am not sure what Bon Appetite was thinking when they gave this one of the top 10 new BBQ joints of 2009. + +The lady who works behind the counter is funny as hell and is a total sweetheart! + +BTW--CASH MONEY only!",review,fH9OSIlijo9Obp8ZDq8rBg,3,4,1 +2e1jzfiHFGCRpV66gYNVbA,2011-06-11,TUzJ3mTheT04sm-6AYr1Vw,4,"What a fantastic experience! + +If there is a high-end food product that you don't find at whole foods, then you may find yourself to be one of the pickiest eaters known to man. This place offers everything under the sun. For the love of God they have almost 30 different types of olives! + +My family is new to shopping here and we like to splurge a little bit. For some reason it's comforting to know that there are 4 different kinds of ribeye and what seems to be almost 100 different types of cheeses. I guess realizing that makes me think that there won't be anything forgotten at Whole Foods. Unlike Sam's Club, Whole Foods gives samples that actually taste delicious and almost make you grab for seconds when instead you just grab an actual wrapped portion of the product (darn, had to buy some sometime). + +On a 'grocery store' level, this Whole Foods gets 5 stars that's for sure. The only reason it gets knocked a star is because some Whole Foods locations offer more services to make their guests feel like it is supposed to be much more than your typical grocery store. This is a location where I think the patrons would be willing to use everything that they had to offer if given the choice.",review,qF-WFG131JRv9Np-_H4vVA,0,0,0 +jGldmslgIegQNM5kvb851Q,2008-07-08,WDG_J8hJtghBbxn7aZwYHw,5,"OK guys (and gals too), I know size isn't everything, but OMG, this place has crazy size portions and I loooove it! We ordered the calamari and the stuffed mushrooms (1/2 orders) and STILL, the servings were huge. Six big stuffed mushrooms sitting on what seemed to me to be the biggest plate I have ever seen serving an appetizer. They were great and tasty, but cooled down too quickly and who can do anything about that? The calamari was decent, could have been spiced up a bit or served with something more than marinara sauce, but for those who don't like a lot of fan fare with their food, this would be perfect; classic calamari with classic sauce. We loved the Stella Artois draft beer and martinis came out big and filled to the brim, just how I like them. For our entrees we ordered the Baked Ziti and Sausage and the Rigatoni ""D"". Both of them were absolutely fantastic...yumm. And both were HUGE. The baked ziti stayed warm right up until we packed the rest to take home because they actually bake it right in the ceramic type dish that they serve it in, very smart. For those with little ones, the kids menu is awesome and probably the healthiest meal a kid is going to get anywhere. Nothing at this place is pre packaged or pre made and that goes for the kids meals as well. Their chicken fingers are home made (the pickiest of adults would eat these things!), no french fries; home made mashed potatoes and broccoli florets. This is the KIDS menu! Our waiter needed to be coaxed out of his shell, but he was still warm in that great way that the good ones know how to do without intruding. Great leather booths, linen napkins, white table cloths with a white and red checkered one thrown on top for added warmth, elegant, but not stuffy. Guys could go in with t-shirts and dress shorts and fit right in and for the ladies who like to dress up, you can as well with out feeling overly so. + +I am definitely going here again, what a find!",review,iNplaNMe_XisdyWcaT2Rvg,2,5,1 +46xWJ6rKZxnrSLWro6EOlA,2011-01-26,gjEIRPGXVZ-kr3rD-CcYdg,5,DELICIOUS sandwich prepared fast and just the way I wanted it! I'll be back for sure! Welcome to the neighborhood.,review,WaKJgfx1RhwkGgN5utOh6Q,0,0,0 +wifoRjVr__Fj56jfe1_RSw,2012-04-04,ChglZOWO4vFf2iObse15kw,5,"I always buy my tires at Walmart, but they didn't have a tire to fit my car. They directed me to Discount Tire and told me that they actually have better pricing. I went to this location and had the best experience. They were very helpful, saved me money, and I was in and out in under 25 mins. I will be back again and again!!!!",review,nrs9jqza1TYWxwmXmTqzqA,0,0,0 +K04Sot5bwUk-BkOotkurmA,2012-03-29,Y89MOuSZUHjW2ET-aTvYdg,5,"This is the best library in the Valley and one of my favorite places to study. The interior design, water fall, glass elevators and many other features make this the perfect metropolitan library for our downtown. + +The top level is pretty quiet and has beautiful views of the city. Quick Tip: It seems that the southern part of the building is hotter because of the sun so I always sit on the north part of the building.",review,wFweIWhv2fREZV_dYkz_1g,7,4,2 +0De3TQ_uSOXwgduKL0va3w,2012-03-04,17fGlVqXUtVapw5kBOqLWQ,1,"I've never had a hard time at a sonic before, except for this location. They barely speak English, they don't know their own menu, and they messed up my order 2 times. Come on, your job can not be that confusing...",review,zxcrlC3cmH5S2TGIxuLwBw,0,0,1 +RtwOc-n_RkiUuDGaNfCsNw,2011-11-13,jKu-P8q6NBp6JeqIK9F93A,1,Made me and my bro sick. Tasted good at first but something wasn't right.,review,lENedG1nXtEbrhuqBIPC9g,0,0,0 +TWsI4hcD-h1KcL3YdNm7vw,2012-10-07,4DL70hx3V07VVyPjplassA,2,"best luck to wait in line for a guy behind the desk. The other two sales associates were too busy posing as customers in an empty store to acknowledge the one customer, me, that was there. This is a real change from some other verizon stores where somebody greets you, gives you a number, and the associates talk to customers and want you to buy their products. Weird vibe in this store.",review,4hrVQL0nc9JHfzW1OZV48w,0,0,0 +s3rFXOBK9SSeSI52PYfuKg,2011-04-03,B-UApvmjpGK_tHd5MDe_Ew,1,"My wife and I were looking for a particular type of rose for our garden. We called this location and asked if they had it in stock and what the price was. They said they did and quoted us a price of $24.99 for a gallon sized plant. Good to go. We drive there and find the rose bush but it is listed as $44.99. So we go to the front and say that we had called and driven 30 minutes to get this rose and we were told ""Oops...sometimes the prices on my list up front right"". No sh!t Sherlock. So...will you honor the price quoted? NO. + +So we drove down the street to A And P Nursery on Baseline west of Lindsay and got the same size plant that they were selling for $44.99 for $16.99. + +Don't waste your time with these rip-off artists.",review,CQVPwymzvS01Re6O4DATGQ,0,0,0 +yGmdo1ENajB98iryHGoWFw,2007-12-18,oHeMiiBZUBRVe8K3zJjsFA,4,"(aka. SKETCHY TEMPE with BONNIE G, Part One of Three) + +I was in Tempe. I was having coffee. I was sedate. I wanted to see if anyone wanted join me and discuss Kafka or something boring. And so I called up the town's most famous resident to see what was goin' down. + +""Um, YOU need to see sketchy Tempe. It is time. And I will be the one who will show it to you. Meet me at Time Out Lounge. No, wait. Meet me at Monkey Pants. Yes, Monkey Pants!"" + +And so I did. + +Monkey Pants! Sorry folks, but this name is nonsensically awesome. I walked in and sat myself at the round bar, joining a smattering of other patrons sitting there by themselves, each staring into nowhere in particular. Well drinks for $2.50, served in a standard kitchen glass. Nice! I proceeded to watch the football game and was soon joined by my Tempe tour guide. + +We were approached by the bartender to do discounted Patron shots....but only if we wore sombreros. There was barely anyone here on a Sunday night, and I'm of the kind who doesn't care anyway, and the thought of me and Bonnie G sitting at a desolate stripmall bar with sombreros on is kind of ridiculous and great at the same time, but shots were not on my agenda for the night. Alas. + +I then got a royal tour of the place, including the great leg lamp (actually it's two legs, not just one!), shuffleboard, pool tables, couches with a cozy fire being played on endless loop on a big screen TV, ample board games and another section with tables and chairs, which is where we sat, under the painting of the teddy bear in Richard Simmons gear. + +Other patrons were seated all over the large space, so everyone had their own private area in a way. I actually really dug this. I'm not one who needs a place to be crowded to enjoy myself or feel like ""it's happening."" Sitting around a fake fire with pints and board games with a few friends is more my speed these days anyway. So I may sound decrepit, but I'm really not that old. I swear. + +Sure, Monkey Pants has frat-party gimmicks throughout the day, but this place has no pretense whatsoever. How can you even take it seriously? Even it doesn't take itself seriously. + +I mean, it's just sitting there. In a strip mall. In Tempe. With a painting of a teddy bear wearing Richard Simmons workout gear on the wall and a stack of sombreros sitting next to a popcorn machine. Waiting for you to leave your critical mind behind and enjoy the now. + +And enjoy the now we did. + +All thanks to my Sketchy Tempe tour guide. + +4 stars. + +(end of Part One)",review,htC49ZwXiKNka5cp0GKBfQ,5,4,4 +apCfJVnRyaw6oVUBKujpUQ,2010-08-23,oQZ3A_iMyLgOCjtldCqnoA,3,"It's a taqueria in a Latino supermarket. Nothing special but you have choices. + +They will have just about everything you may like. It's not gourmet and some things are just sitting in the pans but at least you can look at what you want. + +I'd go back if I just needed something quick....",review,cg4em4uXe5ab5qH7pB01gg,0,0,0 +BK51tV_XtCm3UHwRVyCuqQ,2010-02-09,RhteV5_pyCxuJOJU__-KwA,5,"I'm in love. Bacon you have my heart and my stomach. After all- where else does everything come with one of my favorite foods attached to it? Even my Bloody Mary had a slice of crisp bacon in it along with a celery spear, olives and onions. Probably one of the best Bloody Mary's I have had in awhile. + +The location is a little off the beaten path which is why, I think, people are lined up to get in the Breakfast Club a couple of blocks away for mediocre food, and here at Bacon- the food and service is better and there was no line on the Sunday I was there. + +I was seated in what they call ""the nook"" located on the side where I had full view of the restaurant. The menu was well organized and entrees come with toast and breakfast potatoes and your choice of a side of bacon or ham. You can also substitute fresh tomatoes if that is your wish. + +The food came up quickly and was delicious! My ham and cheese omelet was perfectly done (all melted cheese and ham inside and firm eggs on the outside) and the side of bacon was crisp and tasty. Given the size, this easily was a 4 egg omelet. Breakfast with drinks ran about $20 which was cheap for all the food I got. + +But I would be remiss if I didn't talk about what really blew me away about this place. It's the fantastic service! Everyone seems to be part of a larger team. I was greeted by one person, seated by another and had at least three servers taking care of me. And countless people stopped by to ask how things were, if I needed more water for my tea, or if I wanted more preserves for my toast. It was unbelievable! While they have been open for 9 months- they had the staff of a place that has been open much longer. + +The ambiance is contemporary but is warmed up by the blue booths, checkered table cloths, and some mismatched dining tables in the center that can be expanded for larger groups. There are also antique food cases lining the walls filled with tins of chocolate, and other food ""cues"". I also liked that they have those ""roll up"" doors on the one side that bring the outdoors in and seats outside on those perfect days. + +If I lived in Scottsdale- this would be my ""go to"" brunch place. What I don't get is why people are waiting in line at a place around the corner that left me a little cold. C'mon people. If you haven't checked Bacon out- you should. After all- what's not to like about, Bacon?",review,68Ci9UgVIVEiCGXy05loLw,2,3,2 +IC8no-tIdDWgkYzb5d-Nvw,2012-09-15,ZpyS3L0UbQ2MgQxJrQLLWw,3,"I truly wanted to love this place! I had the shrimp/pork spring rolls and shrimp/chicken vermicelli salad - both were quite good, with the exception of the rice paper and noodles tasting like they were rehydrated with unfiltered tap water (both had a weird taste). My husband's food, on the other hand, was terrible! He ordered #44 - the rice was extremely dry and chewy, the pork chop tasted ok, but was mostly bone and gristle, and the shredded pork was downright disgusting.",review,ma-7afsMYNnQkIGxRwPxdg,0,1,0 +6HAwTnhNJoR5VNdfUrRoEw,2010-05-09,40JKj_TRFqQBgYE5gPP5ZA,5,"What can I say ? This is awesome. I am a donut fan and would give Dunkin 4 stars, just like this place. Great variety, great coffee, fresh donuts. The extra 1 star comes for the fluffiness of their dough. Its very fluffy and its done just right. + +Dunkin is good but its donuts will taste a little hard and ""old"" when they have been sitting for a while. For some reason, the Bosa donuts dun get too hard, even after U buy and drive for like 1/2 hour home. I know its not located in the best part of town, but they are open 24 hrs and there is a drive thru. They accept credit cards and discover :)",review,UrJSPcSii2LyKViKotQ_Kw,1,2,1 +NAkRjPhS4yCD5trp0dY-bQ,2010-03-01,A82_x3fRgQ-gGQUn6lBVKQ,4,"Ride the bulls gals and put on a show :) Just wear pants, please!! Fun spot to get drunk and do kinky things with cotton candy! Great happy hour specials! + +Extremely generous bartenders and huge portions of food. Well worth the money!!",review,OksbhhgC71Ary3zNHMypeQ,0,1,1 +1NZLxU5WvB5roPFzneAlLw,2008-09-19,nQHI2kQElYrMWrPBqdwE4w,4,"Scary things to me: +Paris Hilton has a career. +Sarah Palin. Really. She's like the new Anita Bryant. +My fathers' overgrown eyebrows. Trim, daddy, trim! +Droves of high schoolers leaving school just as I'm trying to find Barrio Cafe. + +Seriously. Like thousands of them. And I couldn't find the damn restaurant. What was I gonna do? Roll down the window (well, not roll down, seriously, who rolls down windows anymore?) and holler out in my best lispy voice, ""Hey, squeeze me fellas, I'm going to a wine tasting at the Barrio Cafe. Y'all know where that is?"" Since all teenagers carry guns, yes, that scared me. + +Finally. I found it. And entered. + +Cute. Cozy. Middle of the day, so empty. Great, vibrant art. And a very attentive and friendly staff. Often times at this time of day, restaurants really drop the ball. No ball dropping here. +I had La Paloma margarita which is made with a grapefruit soda. Think Squirt and Patron! And after a couple of these babies I was in el bano squirting out that Patron. Dee lish however. + +I ordered the Enchiladas Del Mar. Enchiladas of the Sea for my non Spanish speaking peeps. You know what? It was good. Not great. And the presentation was somewhat messy. I couldn't find the crab or the scallops (which were the size of the ends of q-tips by the way). They were lost in the sauce and the cheese. But I devoured it as the blue corn tortillas sang to me. My friend had a chickent torta. Big and rustic. Like Janet Reno. She loved it! + +I will most definitely be back. Hopefully I will not have to navigate through the plethora of pubescent people and hopefullyl I will pick that Barrio menu item that will blow my calcentinas off. + +Oh. That's blow my socks off. BTW. Adios for now mi yelpitas!",review,C8ZTiwa7qWoPSMIivTeSfw,38,38,57 +urBWfXQjyyWIO5B7FvnOpg,2010-08-29,p4jzuKrg5Lu44kRI8dVjhA,3,"Great bar with a friendly bartender named ""Bob""",review,jMGNNb-vpLcwFikrxIlTkQ,0,0,0 +x5Mv61CnZLohZWxfCVCPTQ,2010-11-02,9--jL__9efnmXZEm9o0HIw,5,"OK OK... as a Proud Italian I hope my momma don't see this! I'm actually going to give D'moes a 5 star rating for a few reasons. Last Friday, me and my 2 brothers left the suns game, and proceed to put a few ""adult"" beverages back. At around 2am, when Haney's shut down, we had an overwhelming craving for crap pizza (its better than our normal Jack in Box at 3am run that usually ends up with someone puking in the drive thru line because the smell of the taco sauce is so amazing). Low and behold, the ONLY spot that was still taking orders (up to 2am!) was D'moes. Now, 1st off - I live at Summitt (by BOB). These guys gladly delivered to me, all the way down there! Major props for that. 2 - They understood me... considering I don't remember ordering the pizza (I woke up to pizza and wings boxes all over my pad, and me saying ""who ordered pizza"" then I burped... wing sauce and vodka is a healthy combo. 3 - apparently, after checking my voice mail, the driver was pounding on our door for about 5 minutes (we were REALLY jamming out to Rock Band, in case you don't know, were pretty awesome. Wikipedia that Ish ladies and Gent's; Kansas City Bullriders). Well, the driver and my door man both called 3 times. I'm assuming the driver eventually came in and grabbed the bass guitar and strummed it out. Maybe he had a slice with us? Who really knows these things. However, I do know that I was insanely impressed with D'moes... from the left overs I ate the next when I could remember. It was pretty darn good. Between the awesome'ness that is called ""their customer service"" and the legit taste it left in my mouth, I'm a believer, unless, if I say I'm not, will I get a commercial?... hmmmm.... Potential there....",review,9ellV9VrEOPA3vX2pZptSA,4,3,3 +eTjk4-Sv8qStFrBdzdom7w,2011-07-27,dxZOyt-dSV4kxRKlfnZwKQ,1,"I decided to try qwest as I was tired of Cox continually raising their rates. + +BAD CALL! Cox may cost a little more but is completely worth it. If I wasn't locked in to a BS contract I would switch back right now. + +Internet: I signed up for their ""Heavy Duty"" internet @ 20 Mbps. I regularly test less than 2Mbps on dslreports.com. The best I have ever seen is a little over 5. When I call to try and get it fixed they tell me there is no guarantee on speeds. That is why they advertise ""up to"" 20 Mbps... + +Phone: Extremely poor sound quality, very loud static and crackling, shocking as this is what they should be good at. I called to complain they explained we would have to pay to have technician look at it. This was the day after install!! Helpful hint, call back and tell them you want to cancel your account. The customer loyalty group is actually decent, they sent out a tech free of charge. He fixed it after a couple of hours, but acted completely put out that we wanted a clear line... + +The bundle: Ah my favorite part and what has finally pushed me over the edge to submit a review... I went with a bundled package (phone, cable, internet). The plan I signed up for was $147 a month. The first bill was $147, the second bill in I'm at $272.43. I can't make any sense out of the bill so I'm not sure why they think i owe this much. I love the fact that I will get the pleasure of wasting another hour plus of my day tomorrow talking to these fools. + +The day this contract is up I'm going back to Cox and I'll be happy to pay more!!",review,hh8ZFVvVMKNhbc5oM7SJWQ,0,0,0 +HGOsJ1-GXCk5_8RmwKxomA,2012-09-07,dJevgZbV8veF5Lg4s6hlmQ,1,"I've been boycotting this store since 2009. One afternoon after browsing for a while with my kids, I allowed my 10yo and 8yo to stay in the children's section to pick out a book to spend their allowance money on while I ran next door to TJ Maxx to buy the toddler a pair of shoes. I'd been gone 30 minutes when I returned to find the horrid lady in the children's section had called the police on us. She never asked the kids their ages and didn't ask if they had a way to reach me (they did). The police talked to them, realized they were perfectly well behaved consumers, and assured me I'd done nothing illegal. Avoid like the plague.",review,UIfpjG5JOB2U1oAPW5xRBg,0,0,2 +QnAzW6KMSciUcuJ20oI3Bw,2010-06-19,_LF75tiFlgJMILRAlwVihQ,4,"Don't know why it took me this long to check out Joe's Farm Grill but my out-of-towners got a kick of this place. + +We ordered : +Fontina Burger - 4* +BBQ Chicken Pizza - 4* +Grilled Veggie Pizza - 3* +Sweet Potato Fries - 2* +Garlic Fries - 4* +Onion Rings - 5* +Chocolate Milk Shake - 2* + +The good: +- great selection of American food / good portion sizes +- allow upgrades to different kinds of fries to your meal +- the decor & cute history behind the farm +- open kitchen / sauce bar +- friendly staff +- outdoor picnic benches under a huge tree where the kiddies can enjoy themselves +- hand washing fountain conveniently located by the soda fountain +- kiddies love the cool restrooms + +The bad: +- lots of flies outside (that's summer in a farm for you) +- limited seating inside +- real vanilla milkshake tasted weird ( too much lemon juice?)",review,8_ztfjt9_RsKS-cQ9KlqKg,0,2,0 +Snp5LyDO9NeQiuFPOlkavw,2007-05-30,Qknh9DCPsCC7-yjzIqzWmw,1,"Went here one night with a group of friends. This place is pink, crowded, and really not that impressive. I ordered some sorbet and it was bland - that in itself is an accomplishment - bland sorbet. The 50's style booth seats were very uncomfortable (maybe to discourage staying long?) and the tables were the wrong height for eating. I had to strain to get above face level of my food (and i'm a normal sized woman) It was also very very (very) loud in here. + +I'll avoid going here again. The quality of the product was just too poor - I'd rather hit up a Whole Foods and get some good sorbet without the discomfort and echoing nosie.",review,51-ZrwQODnpIX0dQEshZNw,0,1,0 +vvMR0jgDoBA-g1XgZy8sEg,2011-01-21,uC18aU88r3iQSU2E9P6N7g,4,"I've been here three times now and have yet to have a bad meal, or walk away complaining. The food is consistent. The prices are fair. And the service is great. Nice hidden gem without stupid long waits at breakfast. Score!",review,-bBWxXTOqxbxS0BCIXdI0Q,3,6,1 +zMa6YoEekpABg1HZnnTZdg,2010-10-23,cLn2qOR1BVSaeLePjlL0rw,5,"This is my favorite fine dining in town. I only go here 2 or 3 times a year because it's a little pricey for dinner, but wow, what great food! Dessert is awesome here too, love the Sundae. I just went here for my birthday last week and it still lives up to expectations although they don't carry my favorite anymore (double cut grilled pork chop). They might start carrying it after they move to their new location though, here's hoping! If you're looking for a classy place with great dinner dishes then this place is highly recommended, just please dress accordingly and don't try wearing a hat, not allowed!",review,dWa3oZ_uXFaCMtPOT44R4g,0,0,0 +1cTI09YZ3uRPXt3YkznuPg,2010-11-10,_PHRPFEJFyFOG7dYtbbYtw,5,"This is a real find and I mean ""find"" because it is tucked away on the side streets of downtown Glendale. This small little restaurant is unique in decor and cuisine, not many polish restaurants around. The food is flavorful and fresh, the soups are unique and tasty. The stuffed bell peppers are awesome as is the stew.The owners are warm and inviting without being overbearing. + +My only disappointment is the limited hours, I work too far away to get there for lunch and they are only open a few nights a week. Definitely worth the trip.",review,HjpzhIQFRQbFmc_7CtFDmg,0,2,0 +ff_QnODW0vqNWZPSTVQTsQ,2012-06-29,mvJEGVvZMqiQYRIHAWgKkg,4,The meat and bread is so fresh that it makes Mr. Goodcents my number one sub place to hit up when in the mood for a sub,review,hSEv6hOHIJt2kaFHr2vsPw,0,1,0 +l1kqHWtICTNk8TdCNisf5A,2011-04-14,Ad3sV7SdrnnlVnFFG460yA,4,"Found this place from yelp and had to check it out based on the great reviews. All I can say is wow! This place is super yummy! I have a new favorite! Give it a shot, you won't be disappointed. My only downfall was they don't accept Amex cards.",review,2fcMkfHqosP8tN1k69xGZA,0,1,0 +ObnZiF99lqggVasgyGBtVA,2010-10-05,qtAhygfuv03acOomehx22g,4,"Mini burgers aren't a new idea or anything, but I have a habit of showing up to a restaurant starving and over ordering, so if a place can take care of the portion control for me I'm pretty pleased. + +The food is great - normally I get a Buffalo burger with sweet potato fries, and sometimes I'll toss in a Sloppy Joe for sentimental reasons, but the bartender Marshal has got to be one of my favorite parts. Always friendly. + +Comfortable place that's great for happy hour or as a stop during your normal Old Town rotation.",review,zsa2eOX_YcEQFZHtGZoKuA,1,1,0 +XA-mMT47rFZNEllPBCYWQQ,2011-12-28,5We2Cs096q0za_dyO8jt6g,1,I don't get it. This place is crazy busy with no Manager in sight and in hiding during the busy dinner hour. No name tags on the employees. I was scolded for pointing over the sneeze glass to the sauce that I wanted since nothing was labeled. I guess I violated the health code. Thanks for not locking me up. I told my family we will not spend one more dime here.,review,NvDR3SPVPXrDB_dbKuGoWA,4,5,6 +uYQo0oDXI5NEoMJNWXnx8Q,2009-12-06,PPM_fRvlKymi1bBngTBO4w,4,"I really like this place over Pizza Hut or Dominoes because the pizza is excellent and well priced +The pizza from here isn't gross like other pizza places/chains +it tastes authentic and freshly made +When we order pizza, we only order from here +We also get the wings usually we ask for extra sauce because if you don't they don't put much on them +Other than that, its great +It take anywhere from 20-30 minutes for delivery for us",review,cqPcKMkgfWc5lu3ltuLdFg,0,1,0 +RUZvUPOn90ScX60eETwcCw,2008-06-04,ExS95rTSGyqxgBMIG5c4Gw,5,"Lee Lee's finally expanded from their Chandler location for us who have loyally driven an hour to shop. Low prices, huge selection, and it only took like a week for the place to smell like a true Asian market (i.e., wherever you are, you will never escape the smell of fish). + +I love it. I bought ingredients for Vietnamese spring rolls, two different kinds of curries, a new motor/pestle, a Vietnamese coffee press, and some various other vegetables and liquors... hardly anything. Also, the seafood, while I didn't purchase any, looks very fresh. + +Wonderful to see such a great addition to west Phoenix.",review,jnMII2mt0V6AM4_oMECyIQ,2,3,1 +MIsLw-yvFeSxyvJXgFPA8Q,2011-05-04,nv0iJ88EeSHC46ZRNKgueQ,2,"I saw this company on 2 Fix It and thought i'd give them a try. I was charged $320.00 to replace a day/night photo sensor for our front lights. Here's the breakdown... + +$49.00 service call +$89.00 diagnostic fee +$199.00 no fuss price to replace the sensor (#3 on their Straightforward Pricing) + +They replaced the small recessed photo sensor with one that extrudes from the side of the house. Clearly it is not the same part. WTH?! + +I phoned Mr Sparky to log my complaint - they were very nice. As of now, the owner of the franchise will be calling me to discuss my options. I'll post an update on the results. + +I just believe that if you are paying over $300.00 for a little photo light sensor, you should get a similar part in return. Unbelievable. + +To Fix It certainly didn't do their research on this company.",review,QocwkeVyChF2JoP_zKH8Fw,0,2,0 +m-zkVdThpPsJxj3pZ2C7aw,2011-02-27,o1HPntedIkl3qlkmEZUQ2w,2,"I had to drop it down to 2 stars. The food was the same quality, but they do not bring out big bowls of white and brown rice anymore. They brought out 5 small bowls of rice when there are 7 of us. Are we suppose to share or have our individual bowls? + +We had our usuals: +2 chicken fried rice - ok +2 mongolian beef - good +2 chicken chow mein - good +2 crispy honey chicken - good +1 orange peel chicken - meh... +1 spicy chicken - too spicy for me, but the group said it was good + +Main reason for the 2 stars was the service SUCKED! We had to literally get our servers attention for anything (refills, more rice, togo boxes, etc.). We waited 15 mins for our server to pick up the check, he never showed! So we handed it off to other server and asked if she can help us. He came back to the table only the times we can grab he attention. We were always out of drinks. I have not had that BAD of a service in a long time. I will not come back on my own, but if the family wants to then they can drag me along (kicking and screaming).",review,_PzSNcfrCjeBxSLXRoMmgQ,2,3,0 +XNSito__Fne14TXU0vz1Qw,2011-01-12,2vjgFJ1cNQZtOxLDtoBcvA,4,"I have to say I was pleasantly surprised by this place. When I first saw the address, I was very skeptical. It is in Sunnyslope. I literally had to tell myself that there are still some gems on Central and that this place was probably one of them. I'm so glad I had that talk with myself. This place is nestled into a great little area of shops and cute patio homes, small businesses and a school. They have a great atmosphere, the inside has roll-up, garage doors and there is a huge patio. + +My friends and I settled into one of the sofa areas and made ourselves comfortable. They have a decent happy hour, all wines are 1/2 off and beer is $2.00 off. We ended up having some wine and a selection of brushetta, all was pretty yummy. The brushetta wasn't the best I have ever had, but there was a nice selection and it was pretty tasty. We had the brie and apples (delicious, how could you go wrong), mozzarella and tomatoe (also really yummy), brie and bacon which I didn't try and the tapenade (a little salty, but what can you expect from chopped up olives?). Once happy hour ended, our very knowledgeable and helpful server told us that for $20 we could get a bottle of wine and another order of brushetta, so we did. Hey, why not, it's Monday!?! + +Ultimately, I was only supposed to stay for an hour (I was sick and jet-lagged and just needed to go home) and I ended up staying for almost four hours. As it got darker, the place took on a very sexy, relaxed vibe. I definitely like the place and I will be back. + +Good atmosphere, good food, reasonable prices and friendly service.",review,_6NI9_kujXCUEiwrnDI53g,0,0,1 +aRkYtXfmEKYG-eTDf_qUsw,2011-05-04,H9whtu4tISJuChY4oTgkYg,5,"I have been coming to Lux for years ever since I started graduate school here in AZ. What is there to say that hasn't already been said other than hands down it is my go-to coffee spot in Arizona. Such a warm and diverse group of people, rotating artwork, the perfect study music playing in the background (although it is played a bit loud), espresso roasted on-site and baked goods made on-site. Always find an excuse to end up there for a café au lait or a velvet if I have a sweet tooth!",review,vvrBA4jHwTRF-tFw8j-ASQ,0,1,0 +AaKlegu7gmOCD4rEESF76Q,2010-08-20,3t6cS2HNdch4v7R3cTTYZA,4,"Lunch was delicious, as usual. I had the bruschetta trio for the first time and I couldn't find anything wrong with it, much as I tried to. Not even the onions bothered me. And if you know me, you know how much I hate onions. But their bruschetta was so full of all my favorite flavors I couldn't even complain about the onions. Now that's saying something.",review,T6D4ay1ID9MCTaN5-2g-HQ,0,0,0 +iELA6eREUgDVQrtLgYmS6Q,2010-04-17,xVcX2Oy8d0V30VOAj7AC5Q,5,I am in love with Yogurtland fro yo!! It is super delicious and inexpensive!! I got the coconut and added shredded coconut and mochi pieces...yummm. Can't wait to go back.,review,XaSDZk_rE3D7WI4EKtXM2Q,0,0,0 +StwBhPYVo-q-x1FccSmzwQ,2010-09-05,1PnC4Hb6N0nzx7bAPgk5Mg,3,"I usually shop at this store because it is the most convenient and has the best prices and selection in the area. For staple goods such as bread, milk, eggs, meats, and canned goods, the prices are usually lower than the other large grocery stores. Their branded goods (Kroger) such as condiments are usually good quality compared to store brands at other stores. However, in the last few years, vegetable prices have skyrocketed (other than tomatoes, celery, and lettuce) so I find myself driving several miles away to a healthy food specialty store to stock up. This Fry's was recently renovated, seemingly to make it more difficult to find the items you are looking for, and making what should be a quick trip in an out into a half-hour ordeal. The aisles also seem to be harder to navigate, with bulky displays jutting out here and there, and it's difficult to get around other customers. What I do like is that there are four self-checkouts so you usually don't have to wait in lines. I also like Fry's policy of charging you the price on the shelf-tag, or you get the item free. I've often walked out with cash in my pockets when I went in with none. Sometimes due to the confusing ""VIP customer"" pricing on the receipt, it's a bit difficult to tell if you paid the right price. Read your receipt carefully!",review,_FbZ1gXZL349iiz5D8gz2Q,0,1,0 +ZAhZFqC_bTVXmDlx0E0Wmg,2008-09-18,DQh-8_MqsEarnFKhTgM4Rw,4,"Fruity Pebbles! YAY! + +They don't have a sign up yet, but we were walking by and noticed they were open and there were happy people inside so they must be, oh yes it was true, giving away free frozen yogurt! + +They were offering original (vanilla) and pomegranate flavors to choose from, I chose pomegranate. They have fruity pebbles as a topping which made me very happy, since that was my favorite cereal as a kid.",review,9VPNlcKsL99FvKtz1r9qJg,4,3,2 +muCl5p-9ut1sY0aKeUeRhw,2011-05-10,RHG0b-YZgj2ejAq0yO8OOQ,4,"Great place with good service, a nice menu, and a fantastic wine list in terms of quality, quantity, and value. + +We enjoyed the Abbaye de Bellocq and Taleggio Caravaggio cheeses with the order of the French plate that included pate, cornichons, figs, Dijon mustard, dried cranberries, and baguette. None at the table were very knowledgeable about cheeses, but we told our server Zach our likes and dislikes and he steered us in the right direction. This was a very nice start to the meal and ample for four people. We paired it with an '08 Cakebread Sauvignon Blanc. + +There was a dinner entree of risotto cakes w/ peas, asparagus, and mushrooms that we all wanted to try so we put it in as an order for an appetizer. The portion was fairly small so it was perfect for an appetizer, but I would have been a little disappointed had someone ordered it for their main course. + +For our entrees two of us ordered the duck and the other two ordered the scallops. The duck was prepared perfectly with crisp skin and moist breast. This was served atop a red-wine risotto with blackberry gastrique. The menu stated there would be seasonal vegetables, but I caught very few on my plate. The scallops were also cooked perfectly and were served with spinach/tomato/olive pasta. We ordered a bottle of Delas ""Saint-Esprit"" Cotes du Rhone. I felt bad about ordering one of the cheapest bottles on the menu (only $20!), but the Cotes du Rhone caught my eye and I wanted to try it. It ended up being a very nice wine, whatta steal. + +Due to dietary restrictions of one guest, we had to request a change on one of the entrees and the server was very respectful of it and discussed it with the chef who obliged with no issues. Kudos for going out of their way to take care of us. + +For dessert we had a chocolate cookie filled with molten chocolate served with ice cream, along with crème brulee. Both were not out of this world, but a nice finish nonetheless to a fabulous meal. + +All in all this was a great place that was very reasonably priced where you could go all out and not feel too bad when the bill came. :) I enjoyed the wine list and it was apparent that they did not markup their wines as much as other restaurants. The only reason this place does not get 5 stars is portion size, lack of vegetables with the entree (I much enjoy a meal of protein, vegetable, starch with somewhat equal ratios), and there was not one ""wow"" factor in which I will be telling my friends ""You MUST order this dish"" or a dish I have to come back for. I wouldn't have minded the small portion size at all had it perhaps been on a bigger plate with more use of color. + +I would definitely enjoy coming back and would love to try their happy hour. I also love how they are open on Monday evenings since a lot of nice places aren't. + +Sorry this is my first time writing a review so if you don't want to read the whole thing: + +Positive: +GREAT wine list +Outstanding cheeses +On the mark entrees +Knowledgeable and attentive staff + +Negative: +Portion sizes +Lack of vegetables",review,viAdG2g_GCeHQQJ9T-vVsw,0,1,0 +9mfec4ySQpW8doGs3FUP2Q,2011-08-28,sG5Upd3taNXOPV0G4U9iJQ,2,"The valet guys were absolutely awesome. They were the best part of my stay at this hotel. + +The grounds were okay - NOT 5 star quality. The decor in the rooms seemed old, and the color scheme was dated. + +Although most of the staff was friendly, we did have a pretty bad encounter with the pool manager. My husband and I had bought a bag of popcorn at the grocery store and were snacking on it poolside. The pool manager came up to us and informed us that outside food is not allowed in the pool area. She told us that we needed to put our food away. She then left without even offering the opportunity to order some Fairmont approved food. It was really strange and off-putting. We had been sitting by the pool for over an hour and not a single person from the wait staff had come up to us to take our drink/food orders. Also, it seems a bit ridiculous that we can't eat our own bagged popcorn. It's not like we were chowing down on a big meal and making a mess. It made the resort seem elitist. I definitely won't be staying here again. + +I've stayed at the Hyatt Regency Scottsdale before and would definitely recommend that hotel over the Fairmont Scottsdale Princess.",review,D0Bub4WGXDSQmtZ3irXWNw,0,0,0 +CpYBCG_UAlyRpTFyMZe0zQ,2012-12-13,q2NjGcMKZCUkIbbRNC1lmQ,5,"I LOVE LOVE LOVE Paws Salon. I used to take my dog to Canine Preferred but the ladies at the front dest were flakey, so I thought I'd try a new place and I am SO glad I did. The owner Tracy clearly has a passion for animals. Walking in you are greeted by a cat, dog, and Macaw that call the front of the shop home. You are able to see them grooming the dogs (a big plus for me, you never know what some places do behind closed doors). She is very professional and seems like a no bullshit kind of lady (in a good way). She's to the point, tries to listen to exactly what you want and offers options and suggestions to help. They keep track of the previous cut that was given (it's annoying some places you to have to tell them every time). I would highly recommend this pet salon. They also offer daycare, and overnight boarding. I can't want to try the daycare to socialize my pup some more! Can't go wrong at this salon..",review,UHWSMoTUnoBuUgujsYIXhw,3,2,1 +rZbHg4ACfN3iShdsT47WKQ,2012-03-04,k_qrYmIteMgT5Yf6D3KVIw,5,"A roadtrip would not be complete without local BBQ and Bobby's does not disappoint! + +Fancy smancy table service +Dark and cool with bar seating +Rotisserie chick and bragging about the ribs. Alex was friendly and rattled off drink specials. Other servers were chatting with friends at the bar and one, blond one dipped into her cleavage for something. I hope she washes her hands before serving up a meal. Now I look around, this is a breaking ground for hooters. Low cut and falling out. Not a fan of that. +Bobby Q Amber Ale (Sonoran Brewing) is too light with a bitter bite. Not my type of amber but they tried. +2 meats, brisket & sausage w/ mac&cheese and...the pecan coleslaw? What the heck for $18. +Pulled pork sandwich $10 +2 meat with pork and brisket +Ranch House Salad +Corn bread (pucks) of sweet, warm goodness. + +Sides were great! The beans with zest, the M&C takes me back to old school cafeteria, the potato salad was fantastic and the slaw was great with the pecan. +Brisket was the clear winner from the table and we all loved the smoky sausage. The pulled pork was a disappointing third as it was dry. Good thing I went with brisket. +Two thumbs up here kids. Well worth your time and money. Yelp check in brought a 10% off the total tab too.",review,_Fxrn9P_nvvIY4JCvD5tOw,2,5,0 +WxpCYziMlEy8mrEa_VcB1w,2011-09-13,YYKAzO1cwoVUU8GhRuQk6Q,4,"This place is right in my neighborhood, but I always seem to forget it's there! Finally tried it out last night and I was very impressed. I LOVED the trio of salsas they serve with their chips...especially the green one! It is fantastic and so flavorful. I ordered chicken enchiladas with green sauce, and they were delicious. Normally enchiladas come drowning in cheese, but these one were not and you could really taste the flavor of the enchilada sauce. Their charro beans were very good as well; definitely a nice alternative to refried beans. I can't wait to go back here and try some of their other dishes!",review,nEL-_kLeN37CSR9fXFY4zw,0,0,0 +UCid2Tas6K4SB9sHO9gQ8w,2012-08-05,GLtihzUL0RjmlFJ3hVC2zQ,2,"My husband I dined here a few months ago. We'd never been and thought we'd give it a try! The decor was lovely, the staff was very friendly, and the food looked spectacular! Now you'd think my star rating would be better but sadly it isn't. Even though everything looked amazing the food was actually tasteless. We were both surprised that our food tasted so terrible when it looks so amazing. I had ordered a shrimp plate and he ordered a lamb dish. Unfortunately we've never been back and probably wont ever go back.",review,J5nb9AT1LDiGN4_hY0Au8Q,0,1,0 +OFiQ34TNKEE5a00Vd8Kwsg,2008-10-21,qfcBM0OcNJ8G9LTVMvfpwg,4,"A definite welcome to the neighborhood!! + +I was delightfully surprised at how much the store offers in such a small space. Grant it you are not going to get many choices on some items, but you may be surprised at some of the items you do find. There were plenty of choices for organic foods and ""green"" products, also. + +The good: +convenience - for those of you that has one in your neighborhood. Easy to get in and out of with front door parking. + +PRICE - The prices are as low as Walmart's but without the hassle of having to deal with the super-store size. (they accept coupons too - even better) + +Ready meals - Great concept. Many places do this, but I found that it was easy (and fun) to create a full meal. Main courses, salads, sides, sandwiches and desserts all labeled and located in one place. If you don't have time to cook give it a shot. It is not as cheap as cooking it yourself but lasagna for two people for six bucks isn't bad. + +The bad: +Stay away from the Rotisserie Chicken. A little dry and over-cooked. I've had better at Fry's, Costco. Save your tastebuds. + +In a world of Mega-stores with mega-parkiing lots it is nice to have a place that is actually cheaper to go to and within walking distance. + +The best way to describe Marketside is if you were to cram the Walmart food section and the Wholefoods quality and organic cool factor in a space the size of Walgreens.",review,XM6M-WWbCAeLy83jrABkcA,2,6,1 +jY91cyqDJX2ndkoOYhWDmw,2011-03-03,SvV9WRdf2DhvKgrfzoRmng,4,"Best description of this place would be Chick-fil-A play land meets Pump-It-Up. My kids love this place. They're moving and climbing non-stop whenever we are there, so I love it. We had their birthday parties there about 6 months ago. Overall, I think the kids had fun. The only downside to the birthday parties is that you can't have a private party unless you do it afterhours, which is sort of late for young kids. I think its $9 for an open session. My only other complaint is the quality and price of the food. I think its Sam's Club food. They charge $2.00 for a not so great hot dog. Also, I think they need to vacuum more often; the floor appeared to be pretty dirty. They say they vacuum everyday, but I'm not so sure about that.",review,19BunjXk7zhd811rF42U7w,1,3,0 +1xu5wFd0TeBg6xNBiRtknw,2010-01-03,9TI6omm-shDdGU9O452xCg,4,"Carmel Bianca!!! Oh my Effin Gosh... that's the stuff! It's yum. I'm a fan of white chocolate flavored coffee so maybe I'm bias and why I simply enjoyed my 16oz of Carmel Bianca goodness. It's simply espresso, steamed milk, white chocolate and carmel drizzled on top. And that's the signature drink of Dolce Espresso. + +Thanks to Yelp I decided last night after a driving lesson with L that I was too tired to drive home without something to pick me up... and that was reason enough to make the short trek to Dolce because I've always wanted to try it. Wasn't exactly sure where it was, and happy to find that it's just across from Padre's next to a Psychic place. Dolce has a cool vibe with music videos playing. And they're good songs too... like I had never seen Pitbull's ""The Anthem"" video... liked it! Enjoyed my Carmel Bianca with a slice of their Chicago Style Cheesecake. I liked the cheesecake because it was different in taste compared to other cheesecakes, it was like a marzipan with cheese frosting on top... so it was interesting. Not really a fan of the German Choc that my friends K and D got. I thought it was dry... yuck! + +It's a small place that's bright, with four flat screens spread about. The owner, Cesar (I think) was a sweetheart! I just hope Dolce survives as a 24 hour cafe on weekends because this place has potential. It's way better than counterculture cafe back in the day. This is like the best place to go after the bars if you need a pick me up before heading home to the eastside from central Phoenix. Prices are moderate. SO pls check this place out and spread the word... love it and I'll be back!",review,ROr4DQ-gxlfUKmiDC-qSEQ,1,0,0 +NcAI7SE1SNlrOEfFg9Wzuw,2010-03-17,i3f5clX9zf4PHAovtY2HJg,5,"Say hello to the Ghost Lounge, folks. This is a brand new bar located right next to Seamus, within the San Carlos through an agreement with the hotel's ownership. + +For years, I've thought the Hotel San Carlos was an under-appreciated (through its own fault) downtown venue. With the Ghost, the owner has finally executed a plan to revive its rightful place on the downtown Phoenix scene. This is apparent from the first step inside the lobby, which appears as it did in 1928 when the hotel first opened. If celebrities in the 1930s had to spend the night in Phoenix, back then a small, un-airconditioned cowboy town with around 50,000, they would have stayed here. (Or else the near-by Westward Ho). You get a taste of those times with the massive photographic blow-ups the Ghost has put up on its walls of various scenes from early 20th century downtown Phoenix. So large that you can zero in on individual pedestrians on the streets, and marvel at their bowties, cowboy hats, handkerchiefs and facial expressions. Back then, the San Carlos was probably one of the only places in town that was ""air-cooled."" (That may have meant it had swamp coolers. I haven't googled the history of air conditioning technology for this review.) + +I'd describe the bar's style as grandiose, and classic old school Phoenix with an obligatory hint of Chicago (obligatory given the decades-old economic relationship betweeen the two cities that endures to this day). It has been beautifully done. I will be back often.",review,17PPxx8RxjOUD_nQZ1aHEw,7,4,1 +jJlOPkv4Xl6vxNzr51fnYw,2012-10-20,X01rATwkRBlS0wrtI_5W-Q,5,"Saigon Pho doesn't have a fancy sign, great decor or even windows you can look in/out of. But who cares when you have the most amazing Pho in the valley (and at the best prices)? The servings are very big and everything averages about $6 a plate. Staff is very attentive and quick to deliver the goods. + +As you can read through the various other reviews - everyone has a favorite dish. I have a problem with gluttony so I can't suggest a single dish - I can only suggest them all. However, this place also has some of the best Salt and Pepper calamari I've ever had.",review,-gdDH8SMQ01tOMlUvhMcgw,0,0,0 +nts2OALwvyvfNh9focRZ3w,2012-10-14,JUpwiKYEVUhMQ6slbsufKg,4,"Delicious burger! + +They have a massive menu with something for everyone. My gf got a light basil-pesto chicken with a nicely sweet bread, while I got a southwestern burger and fruit on the side. This is a gem in ahwatukee. Walking in, I felt at home because it reminded me of many cafes from Boston; it was clean but with a bit of hip grunge look. There's a big garage door on the one side of the restaurant that opens out for a large patio in the cooler months. + +I'll definitely return here when I make trips to ahwatukee.",review,iJePycN1ZDtpyN_tJ6J9wQ,0,0,0 +9AbyBqGWHYZC73GlyAuTrQ,2011-05-18,8L-fPdFtG1YgMKxTdKF27Q,4,"The best caesar salad i have ever had. + +The scallops were tasty, but not as crispy as I like them. My husband loved his steak. + +The chocolate lava cake is amazing. Instead of a little oozing chocolate, there was a lot of oozing chocolate. And their house chantilly cream is to die for. I could eat it alone, by the spoonful.",review,e_raEH6Y6fdS20UWGpZ5Nw,0,1,0 +fb9eLHJ4S--TyXsarJJo-g,2010-07-05,9uBCN_JObJUhTW6ADZOgnw,4,"I know little about Ethiopian food. I'm an adventurous eater, and was taken here to try it. And I must say, now, that I am a fan! + +The food was very cheap, and incredibly flavorful. So, if you're on a budget, and want to either impress a date with your culture, or are a foodie, this is a great place to try! I am writing it only as 4 stars only because I haven't tried any other Ethiopian food. However, I pretty much don't want to risk tr.ying another place ;) + +The Ethiopian tea they serve is fantastic, along with your meal. The portions are generous, along with generous amount of of injera. We has more than enough food around us, and left stuffed. + +The dish that especially impressed me, was the curry chicken. So much so, that I continually kept enjoying the injera in the sauce. + +All the vegetarian food was delicious! I, unfortunately, don't remember the names of everything, but the greens were some of the best I've ever had, along with a lentil dish. + +Also, I rated this good for kids, however, that's only because I have a toddler that eats anything! If you don't have problems feeding your kid unique food, I suggest an attempt! + +In short, if you're a big food fan, or want to be a little more adventurous on your food options, especially for a great, fair price, try Blue Nile!!",review,SJoMGpnY0DVtMlpjFK78-Q,0,1,0 +LzNJLEIo4gh-X_rmDkNkNg,2010-08-06,S-bht-LTE-Af1FfyAaC0qQ,5,"Great staff without an attitude (which is rare in Scottsdale). As I was waiting for my party to arrive, I was sitting outside drinking my beer and eating my food. Without ANY questions and/or hassle, my bill was transferred inside when my party arrived. Not only that, but our waiter remember exactly what I had and was able to split it without me even asking him to do so. OK, how great is that? I am totally sold on the service there an I will definitely come back. Very nice unpretentious place.",review,KADdk3Fa_rGuGHAmSIGoaw,0,0,0 +H03D-h5UwPXOv64W5Iqn_Q,2010-10-10,9eAC-Obald8H1LPXV4jq-g,3,"Sometimes you CAN judge a book by its cover. This looks like a typical diner and indeed that's what it was. Even though the place was busy (Sunday breakfast time) I was immediately seated, the servers were friendly and everyone used the obligatory ""hon"" when addressing you, and the food came fast in spite of the busy time. Taste and quality of the food were typical for a diner - OK, not great, but the pancakes were definitely more than I could finish. Not as inexpensive as I though it would be: pancakes (3) with bacon and eggs and a cup of coffee came to a few cents short of 10 bucks! Very casual atmosphere: most of the folks here were attired like they were about to do some home gardening after breakfast.",review,m7vtKWpZ9wdEQ95wJxrMrg,5,7,3 +sgBl3UDEcNYKwuUb92CYdA,2010-06-01,QG6VUaudvRr4a837Xjg5CA,3,"Again, it's a bit unfair of me to rate this restaurant because I'm from San Jose/Cupertino but I'm gonna do it anyway. + +So, being from San Jose/Cupertino, I've had me some good Chinese food and even better dim sum. So when the Boyfriend brought me here, I was expecting something decent, but not anything too authentic. + +This place was fairly decent and authentic! It has the Asian ladies and their dim sum carts. It has the OG dim sum dishes. It even has the authentic less than mediocre Asian service. + +The only disappointment is that this place is a bit dirty and ragged-y looking. And the vegetable dishes are minimal. In fact, I had to order a veg dish off the menu because they didn't have any dim sum veg dishes and it cost $13! Bleh.",review,z-X-cAwVB1wIsAJnxpwr7g,0,2,0 +5N9bWl5zWuDX-Q1YpTf2LQ,2007-08-23,cPQtzuktnu7Mg9ZmPGlfsg,2,"Pretty lame subs and sandwiches. Worked close by so tried a few times. Hate to say it, but Subway is much better. Quality and quantity of ingredients in the so so bread left a lot to be desired. + +Service was okay but nothing to Yelp positively about.",review,NoxjYVkRQOQXZm7rDvhj-Q,0,0,0 +GbEOmf5k73r_UJWjchrHOg,2012-02-19,8tW7Dbqv8RR2NfZJ4vyB9g,4,"I would never have stopped at the Wy-Knot Cafe if it had not been for a friend mentioning it in a post on Facebook. I am glad I saw that post. There have been a number of restaurants in that location that have failed. Wy-Knot has opened the space up, made it dog friendly (it is named for their dog) and has a great menu. You order at the counter and then they bring the food out to you. The employees were all very friendly. The only down side was the lack of parking due to the other businesses sharing a lot. Also there were hardly any customers. Hopefully they will deliver menus to the houses in the neighborhood and maybe do some promotions on the neighborhood e-mail service so people will know what they have to offer. I would like to see them make it. + +They serve breakfast and lunch all day. They had a variety of choices and it was hard to decide on one. We split a BLT and a Chicken Salad Sandwich so we could try both. They come with a side of beet salad or salad of the day. The beet salad was very good. We both preferred the BLT but I am sure the Chicken Salad was more healthy and it was tasty as well. + +Give them a try, I think you will enjoy the Wy-Knot Cafe. I will be back.",review,RAWy3YCE-jwfyuGvwzUaqQ,3,6,2 +kPh2gPvd8moVx6gNf2iHsA,2011-06-05,wNEsy3l3MAfak2iAA5TgrQ,2,"Despite not being Federal employees in any way, Memorial Day seems to be a time when restaurateurs think they deserve a day off, leaving me with few actual lunch options and relegating me to the worst of the worst: Eating. In an AIRPORT RESTAURANT. + +Turns out that Taberna wasn't actually as bad as all that - the bar is nice to spend a few hours waiting for your flight, and the titular Blue Burrito - despite not being blue in any way, shape or form - wasn't too bad by fast food standards, and quite plentiful for the $8 I spent on it. And if you don't like it, you can cover it with Cholula, close your eyes, and pretend you're eating somewhere better.",review,ZZf6vwEgfKGZN3uNquORPg,0,1,0 +tqDwpyCB53TiEIv915Tuww,2008-05-14,cGzKwaNWgQWRQihrCpGI3w,4,"Every culture has their comfort soup. American's have chicken noodle, Mexican's have menudo and Vietnamese have pho. I must have been Vietnamese in a past life. + +Pho is the national dish of Vietnam and a staple at any Vietnamese restaurant and Pho Avina has some of the best pho around. Let me warn you - this isn't an appetizer, this is a meal. A big, steaming bowl of soup served with your choice of meat and noodles in a savory, almost sweet, broth. The pho is served with a large plate of fresh basil, cilantro and bean sprouts; the cilantro complimented the soup nicely. I chose the chicken and shrimp and was pleasantly surprised with large shrimp and big chunks of all white chicken. + +My eyes were bigger than my stomach, so I also ordered the deluxe vermicelli salad. A salad of noodles, veggies, beef, chicken, shrimp, eggroll, sweet potato cake and fish sauce - toss together and enjoy. I had it boxed up, but did nibble on a few items and the sweet potato cake is out of this world good. + +I had come for the banh mi at the recommendation of a previous yelper. They only serve the sandwiches Monday-Friday from 11-3; I had just missed them. Darn. I will definitely be back to try the banh mi and a boba, there were soooo many delicious flavors to choose from except for the fresh durian - icky, icky, icky.",review,MmPOU8kbuwkE4NedXe-qZw,4,4,1 +YkFBelUWinftlweJzuiIAw,2009-02-04,_oLIjTVzhzRw44K9ziUXkQ,5,"I'll never forget my first Urban Cookie. I was checking out after a successful day of shopping at Frances (my favorite boutique), when the girl behind the counter offered me some cookies they had out on a tray. I hesitated at first (because I was worried about fitting the new skinny jeans I had just bought) but gave in after little persuasion. + +It was love at first bite. After buying my jeans, I rushed immediately to Urban Cookie and bought one of every kind. Although it was close, Urban Trail was my favorite. + +I really can't help myself, I keep going back for more (plus the owner is super cute). + +I love urban cookie!",review,7NF_JQ18tkXQqs_eSVWqKw,0,0,0 +rIonUa02zMz_ki8eF-Adug,2012-06-16,mutQE6UfjLIpJ8Wozpq5UA,2,"This review is for the chain in general. The location we went to is new so it isn't in Yelp yet. Once it is I will put this review there as well. We were there on Friday at 5 PM. + +The reason I gave it 2 stars is because the burger was very good and it was made the way I asked for it. My husbands burger was not. + +But, the server and the fries left a lot to be desired. Let me preface by saying that we had been to several other locations. I like my fries crispy. I ask for them well done, extra crispy, scorched, tortured hollow tubes. Whatever their buzz word is for well done. The location will comply. EVERY OTHER 5 GUYS HAS COMPLIED. But not the one at TATUM AND SHEA. She said that corporate said they are not to cook the fries that way. So if we were to put up with soggy fries - yes soggy, then we did not want them. + +She also interrupted us several times which is rude. THEN she went and called corporate just to double check for us and she came to the table and said they said no they were not to cook them that way. Seriously? We did not ask for her to do this. She actually accused us of being undercover shoppers. We started to say something and then again- she interupted. + +Listen, if you explain that our choice is not how the company wishes to present their product and we still choose to have them a different way, you should comply. It is after all our money and our decision. I was raised with the rules that #1 the customer is always right. And #2 if the customer is wrong REFER TO RULE NUMBER 1!! + +We will not return. They have lost our business and I hope she loses her job. +If you want to try a really good burger AND FRIES place- go to Paradise Valley Burger Company at 40th Street and Bell. You will not be disappointed.",review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +OE5nAmaSVaopeRS1Cs9Kuw,2011-09-28,IokuZD7dpn8EUbOUe-vehQ,4,"Great service. Tasty food. I like it for lunch because later, I can skip dinner. Their salad bar satisfies the vegetarian taste buds. I like this place alot. I think it lives up to the hype.",review,IDHrwv_RCildFvmfWTkj5Q,0,1,0 +wzP2yNpV5p04nh0injjymA,2011-01-06,OAn4Mio4vlY5VjTTug6kjQ,5,This is thee place to indulge your sweet tooth. Great ice cream and ice cream creations from an establishment with deep roots and long pedigree in the ice cream biz. Just can't be beat.,review,1zjPzcFdboSqis0Fkhccdg,0,0,0 +-sC66z4SO3tR7nFCjfQwuQ,2011-09-25,haExcdo2cZyKHrVA-lnNDQ,5,"Another visit: + +Greeeeeeat carne asada tacos, torta and that orange cake! Quesadillas, pork and chicken, were a great balance of cheese, meat and sauce. + +That orange cake though?! Like, I am one of those people that would do ...things for good carrot cake, and the basic format of carrot cake done with oranges, cream cheese icing and all, was a wonderful flavor surprise. + +Gallo Blanco looks like a top contender for Places to Take Visitors. Just a very well rounded place to give visitors a taste of good eats in Phoenix and examples of well done and delish Mexican cuisine.",review,W9h1ufjEzDp7THyAqRw65g,0,2,0 +VslWrTzjCFBG_2Ru9nwjMA,2011-10-02,CXu-zGp78C73ugOWxxCmTg,4,"Well, i was very excited to go to this event, however, not so excited when it was all over. The music was great and it is a very nice place. It really reminds me of Vegas. However, it was fashion week and we all thought that we would see models sashaying down the runway. But, no. No fashion at all. The wine was comp and it was very good ,i give great praise for that! But the samples of food were few and far between. The Servers skipped out many times. Not like most Yelp events which are usually out the door GREAT! We ordered from the happy hour menu. I fully agree lots of salt, but i think it was the soy sauce, it was the most salty..i have ever had. There is very little parking here as well so be prepared for that as well. All in all we had a good time.But, not as fabulous as most Yelp events.",review,F6QsMoJdvtohlbnST-fDyQ,2,3,2 +jRfdz5voj40P6WS9L54caw,2011-01-03,7Wr_JzujZxyQvwJJ3-GnCA,4,"I was a lucky girl the other night. Rico, B's husband has moved from Z Tejas to the Herb Box so I got to tag along to the ""practice night"", I'm sure there's technical term for if for those in the business but for me it meant free dinner at one of my favorite places. + +First, the decor. You can't work in interior design for six years and not notice design. They've done it up in a cozy Cape Cod feel with exposed beams, wide plank floors, lots of blue and sea colors. Not so much you feel like you're in a sea food restaurant, but in a chic way. It has a little bit of a contemporary feel and the bathrooms are very cool. Check out the sinks. Go on. You need to go just for that. + +B and I got there first, another friend was meeting us but was running a little late so we started with the cilantro crab dip, one of my favorites. There are nice, big chunks of crab in it and the plantain chips it comes with are thin, crisp and salty. For the main course B decided on the goat cheese chicken and enjoyed it. Our other friend got her old standby the Market Sunflower Salad and added salmon. I debated between the trout and the short ribs and ultimately decided on the short ribs but think next time I'll go with the trout. I have to say the short ribs were the second best I've had, in line right behind Chelsea's Kitchens. For dessert our waiter brought us a slice of the stout cake with espresso frosting, pure heaven, and a piece of the blackberry bread pudding. The bread pudding was more like a steamed dumpling and was lacking in flavor though the creme anglais it came with was creamy and unctuous. The espresso frosting on the cake reminded me of penuche candy. I wasn't too excited to get a piece of cake but it really was a nice treat. I just ate the frosting off the back I was so full by this time. + +The Herb Box also has a beautiful patio with big windows opening to the bar and comfortable, intimate fireplaces. This is such a convenient location right in old town and steps away from the mall, I know it will become a regular place for me.",review,qABKRj1ggJmtvrL9FMFtuA,1,2,0 +y0weNFCIJF9bTgBbFST86A,2009-10-05,yQXBEAERmg0rYJdkYE06hA,4,only been here twice but the food kicked ass both times! biscuits and gravy is the way to go here. prices are right as well. definately recommend this joint. seems to be about a 10 minute wait to get seated. not bad.,review,scxmg3Pu_jjpXSyFWH8-Cg,0,0,0 +dBYmZ_HzQg61iZ7oeSHPiQ,2012-06-15,erK4HQD7QVrfDnuJDJEPWg,3,Sherwin is old and not very reliable but he is a really nice guy. I will give him that much. Very good optician as well,review,KtSEziHaD34ZWPGTYD28lw,0,0,0 +cp39VURFby4A6u9m2It8jg,2012-08-09,Pa0j9chxMZpOhRb2A0R7DQ,5,Yummy!,review,I6KftQl6q4I7IuKV7wPR7w,0,1,0 +nq2nT6PapbrISfhGxfDEwg,2012-11-25,4xqSM_YHo_swoGNc-KU1EQ,5,"My girlfriend i love, love, love this place. Excellent food, beers, and wine to enjoy on premises. Friendly, helpful, and funny staff. A wonderful grocery to shop from, and an amazing selection of cheese and wine. It's a total foodie destination. This place is fantastic. Ahwahtukee (and Phoenix in general) needs more quality driven, food and wine centric places like this.",review,aM0LYqvjHQcx1cgihiFhRg,0,0,0 +04Jrd2zSzwHwmBqdKQDmIw,2010-12-15,dAejHdhn19GmDtmqBgZ3Bw,4,"Good food for a good price. First time I've eaten at this location but it was as good as I hoped. I got a half size Crunch Roll for an appetizer, and an order of Chicken Yakisoba. Both were very good. The crunch roll was very fresh with good quality ingredients, crunchy shrimp Tempura, crab, avocado, etc. The yakisoba wasn't quite what I thought it would be in that the noodles and meat were separate, not mixed, but that didn't affect the quality or flavor. It was closing time and I'd only eaten half, but I packed up the rest and brought it back to my motel so the workers could finish up and go home. + +This was the fourth place I'd attempted to go to for dinner so I was especially happy to find them open. The first place, Azucar Peruvian, was right across the street from the motel I always stay at and I'd been meaning to try them since last summer. I drove over there to find they were now out of business with a sign up advertising the place going in next. I snoozed, I loozed. + + The second place was supposed to be open till 8:30pm according to their Yelp listing, but was closed when I got there a few minutes after 8. + +The third place, Omega Gyros, highly recommended on Yelp, was also out of business. FML. + +So when I got to Yogi's I was holding my breath till I saw they were open till nine. Thank you Yogi's!",review,TQ5eVGOFr_qB5_BbEd3Sow,1,1,0 +WUZxVr_CaRqEQgzvyeK5tw,2011-07-18,yPvIP_1TOgNgQaRF_UahjA,2,"Cheap. Cheap. Cheap. Everything here is disposable, from the furniture to the linens to silverware. (Silverware rusted after one cycle in the dishwasher!). So if you like to redecorate often and have a minimal budget this place is for you. + +As far as their food, I've only had a cinnamon roll here and it was stale. Bummer. + +My biggest annoyance here are the people who seem to be beached out on all the couches/beds/chairs. Don't you have homes?",review,GPPHDWEZGjiw777_iTOJ1w,0,0,2 +Exx5ffvnmk4MrTyCkPRuug,2012-08-18,pyqo0N3PT5lK4lxskQhMBg,2,Service here is unfriendly at best ( i sat in the bar)menu both lunch and regular boring .chips ok salsa served in a small caraf which makes it inconvienent to get salsa to chip. food was ok some of the chicken in my taco was dry do to the 8 million degree oven they put it in before serving to you . this place is a true tourist/youngen scottsdale hipsters joint,review,kJyR4gT1pfCcNjEY9-YMoQ,0,0,0 +0UZ31UTcOLRKuqPqPe-VBA,2011-04-17,--QCUEmDBlipC_CEutGVFA,4,"Went there for two games back to back days. The first was a night game and they had the roof open. The temp. inside was great and made for a real enjoyable evening. During the game was able to watch a 747 fly overhead, very surreal. + +During the day game they had the roof closed to keep the AZ sun and heat out. I personally thought it was a little warm inside even though they announced it was about 74 degrees, not sure if that was accurate or not. I know AZ spend loads of money on the AC, but I wasn't impressed. + +Overall the place is nice and all the amenities are very close by. I had sections 112 and 109 and both offered great views of the field and visitors bullpen. The service at the concession stands is great and the lines move by pretty quickly. + +Still not the #1 stadium in the MLB.",review,hrzD6KL1x4k_wT9zWwRUoA,0,0,0 +wQXqj3GTHsF3AcWB3LTxMQ,2011-06-18,S37cePjhYgk_yAGHmadRYQ,5,"I love Honey Bear's! I've been visiting their restaurants for years. I've been to the one on Van Buran, the one on Central and this one in Tempe. They have the runniest sauce on earth but dang it tastes great! I love the pulled pork sandwiches but not the long lines at lunch. When I went after 1pm in the afternoon I stood in a line of one - me.",review,WQFJ8_V1lao4oZ_FKbk5Zg,0,0,0 +uECIvsUWlDWSiJ9jAfH_kQ,2011-10-20,oODLUnGtP6jbXHr_0gI8JA,4,"VERY FRIENDLY staff. In fact, at times they seemed to be just a bit too friendly. I get that they train their employee's to greet every guest, but everytime you see an employee, or make eye contact, they are either welcomeing you to the place, or asking how everything is going. It was a bit of an overkill. And the place is loud. Very Loud. So loud it is hard to hear your table companions. And every so often, the music would go up a little louder, and all the employees would stop making sure every single customer felt welcome and aprreciated all the time, and they all did a cute little line dance.Other than that, the place is great. Nice atmosphere, great peanuts. + +The food is reasonably priced and so very tasty. I am sure they know this, because they are constantly asking how your meal is. Well, not constantly, but pretty darn close. I had the T-Bone smothered in Mushrooms, and it was cooked to perfection. The rice side dish was a little sticky and over-cooked, but other than that, the food was an 9 out of ten. + +After we paid the bill and started to the door, again the service was overwhelming when no less than four seperate employess thanked us for coming and hoped we enjoyed our meal. The place was packed, but still seemed a little over staffed. I do like to feel welcome in a resturant, but not every time I turn around. Still, I think I will be returning for a good, resonably priced meal.",review,owposE-EYZZlbzEhMvTVvQ,0,0,2 +NA3tQYxR6Fq5O8nV6u41Tw,2011-10-04,0XQNmyxaBbZ_2M9AGA8RrQ,5,My favorite place in the world to eat! Great service and awesome food!,review,JRkqD8JvtQATNTTv6UI7RA,0,0,0 +sbsFamEj5wDxNAjUKrMcSw,2010-04-07,nW0bT4oCSeFdfJggs9cqVQ,5,"Love this place! I went with my Grandma and Aunt on a Thursday afternoon. The weather was great but just a tad windy so we sat inside. First I like the layout of this place, very open and airy. There are 2 outside patios one street level and then one upstairs. I actually have been here twice so far. First time was just for a mid afternoon cocktail with one of my stylists. The servers were very friendly and our concoction of vodka, grapefruit and cranberry juice was the perfect blend. +The second time we ordered 3 small plates to share, ahi tacos, artichoke and spinach dip and the mussels. All three were heavenly and very reasonably priced. The ahi was fresh and chilled, perfect for a warm day. The artichoke dip was different than any I have had before, gooey cheesy goodness that we gobbled up practically licking the bowl. The chips that accompanied the did were fresh and perfectly salted, even when the dip was done we still polished off the chips. The mussels were in a perfect white wine sauce but the stars of this dish were the mussels themselves. Buttery and melt in your mouth good, not chewy at all with no grit, to most common problem I find. The broth was so good I let the bread marinate at the bottom of the bowl, soaking up the juice. My martini was a generous pour and even though they were out of blue cheese stuff olives the bartender took the time to stuff some and deliver it to our table. +Now on to the staff, all are a good looking lot but they are also skilled. All of our food and drinks were delivered in a timely manner by our lovely server Jennifer. We also met one of the sous chefs, Lennie. A charming fellow with stunning blue eyes, my grandmother remarked on them, a playful Mohawk and tattoos peaking out of his uniform. He swears that the sweet potato fries are some of the best in town and sent over a complimentary bucket. I do believe he is right, cooked to perfection, slightly crisp on the outside, warm and soft on the inside dusted with fresh herbs and I believe Parmesan cheese. After our meal the manager came over to make sure everything was to our liking. +RnR is another great place within walking distance from my salon and I am looking forward to trying everything on their menu. If all the items are as wonderful as the first 3 I tried I am in for a treat!",review,am9yAm4Ph7yk81sFkHlxig,3,6,2 +8gJ-0SrGeUcRXgqZtrYLDg,2012-04-01,1NnqnOiV_totNbpK0YA-gw,4,"Not much to write here. I always park on the Sears (upper level) side when I visit Chandler mall. My last visit to the mall, I ended up buying a luggage set on sale at Sears. The cashier was helpful and even checked to see if all four pieces were present (I didn't even think to, LOL). Four stars. No negative feedback to report.",review,k5bDN0HquYYiScd5Tz41Pg,0,0,0 +17DI33J8TkcfzyoiIYLQIw,2010-07-09,GATwM7Io5fIu6yS8SgNYpw,4,"I eat here at least once every week since it's close to my office, and they are always quick, tasty and reasonably priced. I usually get one of the lunch specials (even the Chinese-sounding dishes have a Thai flair, especially if you order them with extra spice), but if you're hungry the house special chicken is well worth the extra buck, as are the Thai noodle dishes (the pad see ew is my favorite). + +The wait staff is always friendly, the food is always quick, good and reasonably priced. i haven't had a bad experience in several dozen visits, and i'll continue to call myself a regular.",review,EQcq4HOhvBiHGC0B0cUQuw,0,0,0 +BM0-dgPJMBMmcmO9PVCJfQ,2009-07-14,sM822wQ4ioyojCZjKVKXIw,5,"This is one of my favorite places to eat when I get back to town. Their beans are the best I've had. Their tacos are made of shredded beef and fried with the fillings inside. This makes the best product. All of you lucky enough to live in the state don't realize how lucky you are to have this treat! I'm usually not an enchilada fan, but you have to try one here. + +Some of the reviews comment on decor. While it is true the place is a little shabby and the salsa comes in squeeze bottles, I would much rather have their cheap prices than fine china. And that salsa, I really would be tempted to steal one of those bottles, but then I'd have to check it in my bag to go back home!",review,0cOh3F2ZwS-lsD5WatDIKg,0,1,0 +mBDhy9j4qwKRnf4h8UQnrQ,2012-02-01,FSWymg72OB1kmbHKQMVUhw,4,"First time here--glad we came! Free chips and salsa (always a great start to a Mexican meal!). Hubby and I split the chicken fajitas, which were very tasty! Good-sized portion with lots of red bell peppers, which we like. Served with side of rice and beans, guac, sour cream, and pico de gallo. We each ate our fill and still had enough for a take-home 'fajita burrito' :D",review,ky8uh65re8HtVTb8QmF_gg,0,0,0 +xHI3saK0sAJEHeMK4IGVvg,2011-11-18,VuQKgYYoW1XbO5xe5247Qw,5,"The line was ridiculous. The price is kind of steep for what it is. The dog is kind of messy because of the way it's made. But you know what? I enjoyed it in a way I haven't enjoyed a hot dog in years! Wow, that sounds kind of dirty. This really is a unique take on one of the most common American foods. + +I passed through the sea of trucks and people that is Food Truck Fridays on a mission to finally try the much yelped about Short Leash Dogs. I can't say much too much that hasn't already been said. While the 20 minute wait wasn't too thrilling, it all paid off in the end. I just went with a traditional wiener, with tomatoes, onion, relish and spicy mustard. While I was intrigued to try some of Short Leash Dog's specialties, most of the dogs on today's menu contained an item or two that I don't really like, and I wanted to compare Short Leash Dogs to what I am accustomed to the first time around. Good sausage, good toppings and the flat bread is fantastic. + +I would happily join Lindsey F. by tying my leash to the cart and following them around town. And I didn't even know that I still enjoyed hot dogs that much without a beer and a game!",review,thdVzCfKx-DV0zYWqId3pw,0,1,0 +KIgkwPEOxbfdeCk0ltycOQ,2010-08-18,_5lklZiJONNBSG2cgOvx2g,2,"In a word -- Blah. It's a chain so I didn't expect much, and in this case my expectations were correct. I ordered the shrimp tacos were alright, but nothing to write home about. My take is that the food is mediocre and overpriced. Plus the service was sub-par; we waited over 15 minutes to get our drinks refilled and when we asked for separate checks the server grumbled about it. Believe me, there is better, cheaper, and more authentic Mexican food in Arizona.",review,7tA04v45dzG8tADZGLrCzA,0,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2012-07-30,305sgj9i1yPW93-IuXtrCw,4,"I went here for my sister's birthday as a new place to try after hearing about it on the Food Network channel. The vibe of the place is really special and unique, feels like you're at a private farm. The food was amazing!! I decided to order a salad just so I could sample all the home grown veggies from the farm. The strawberry lemonade was also top notch and came in a very large cup! After lunch, we walked around the fields and visited the coffee shop next door. The only negatives for me was the really long wait time (almost an hour) at 2pm in the afternoon on a weekday and how far of a drive it was for me. Overall, great experience...would go back!",review,cBJqlNzyoJFak3_XRe2bvw,0,0,0 +wftoNIA0Q8nX-Da47psBCA,2012-05-11,dFbdAtBkk6C7JBe0YWQStA,4,"I was quite impressed very charming and kinda romantic to have a nice lunch , The service was friendly and attentive the lunch specials were good too ! The only disapointing thing is there is no soda fountain but other than that it's all good the pasties were very tasty and I look forward to going back soon.",review,slBhRBWNIb4mjcLy8LLkLQ,0,0,0 +bhtt6q5W4oi-dpWz9skvJw,2008-04-08,pc1sOnsTiSNAKE5STZKJkg,5,"The staff is friendly and knowledgable and the sales on stationary are always welcome. Lots of specialty papers to purchase by the sheet or in packs of 25 or 50, with matching envelopes. Oh so easy to give just the right touch to my correspondance. + +Even when they are swamped with business the staff is always ready to lend a hand or help with a jammed machine. + +When my puter is down I rent one of theirs for just $10 and hour with printing priveleges.",review,fcvP-cuAN_h3Xu_uQOJDLw,1,2,0 +4AKcmN--0hbF0kX9pg8scg,2007-05-23,YOLAOVywdGyhclFTVlUnEA,4,"The Chuck Box is dark. Very dark. Even in the day time it feels like night in that place. This doesn't help when it comes time to put condiments on one's burger. I am skeptical as to how well the condiment bar looks in good light, which may explain the choice of lighting. Still, grinning and bearing it, I load up my veggie burger with appropriate toppings and, usually with fried zucchini in hand make my way to one of the very uncomfortable seats. + +Every time I go to the Chuck Box I feel as if there is going to be something wrong with the food, and this something is being concealed from me by the lack of lighting. Yet, each time I go I have a delicious veggie burger or grilled chicken sandwich. My friends have also enjoyed ""real"" burgers there as well. + +Maybe it's best they keep the lights dim, but the food tastes so good there may be nothing to fear after all.",review,cB30-Og37dzCWFCFzI_ChQ,2,3,3 +ntN85eu27C04nwyPa8IHtw,2009-01-25,3Xt-hVsaNFV6w0hj8qegvA,4,"The pork chop & eggs w/ home fries is out of control. I feel the same way about this place as I do Roscoe's.... you don't go for an egg white omelet, you go to just enjoy yourself & eat some food that your grandparents used to make the old school way, butter & grease. Just too darn good to pass up.",review,f8wOEYCAINZqDM8ddJ7u6A,2,2,2 +duHUQFn7K-Ybs1rPI4AOEQ,2009-09-13,KrSNzXWa2OlicxprnLn0hw,5,"I went to Z Tejas with a bunch of people (about 25) last night. We had a great experience from start to finish. + +At the beginning my lady and I were early so the waiter got us our drinks and continued to make sure we were good to go. We wanted to wait for our friends so food wasn't necessary at this time, but the drinks were flowing and the waiter (Jeff) was very cool, friendly, and down to earth. + +All of our friends showed up and we let the good times roll. Chips and salsa, drinks, water, and the delicious cornbread, they all came very fast and it didn't take any begging on our part. + +I got a chicken dish which was really good, I stuffed myself silly. My lady got a side salad which was huge, she couldn't even finish it and she said it was really good. Oh! and the food came fast by the way (surprising when you have 25 people. + +The overall vibe of the place is really cool, very trendy and fancy but reasonable prices. Big screens everywhere, gotta love that since there were some great College FB games on last night. + +Great experience, thanks Jeff & Z Tejas.",review,sljlQDKEhsHDt9Mx5B2b9A,0,2,0 +vwZ15OkVO6PemAe87k0M-Q,2012-03-28,Gh4LL78dmwCaFbzALyZm1g,4,"Unpretentious in Scottsdale? There are only a couple of places that can achieve this in my book, and Mabel's is one of them. I had been wanting to go here, but just never got around to it. So when a friend was in town for work mid-week, we went to Mabel's for a drink on a Wednesday evening. The place was pretty empty, but the drinks were good and the staff was nice. The atmsophere is very swanky, with plush furniture, pictures/paintings of naked women on the walls, and ads for Mad Men. I would love to go back on a hot night to check out the food and the crowd.",review,EJkV29QY_oHwSngQiTj2rQ,0,1,0 +W6624iddi14DsGokORyzcA,2012-10-12,dNuLDz9ro9ywQggtle0g4A,5,"Amazing food. I wasn't so sure about Indian food, as visiting this place was my first time at both the restaurant and the food itself. I had the Chicken Tikki Marsala and it was fantastic. I can't wait to go back!",review,aLTl_OkLo0BFRxdz1n6sYA,0,0,0 +QxpX4slDIOGFEHlPV4mrSw,2011-12-18,PU_5X8kQwfbPis--kqsTFA,5,"This is a great little authentic Mexican restaurant - don't let the looks fool you, it is delicious! I had the Tampiquena, it is one of the best I have had. Highly recommended",review,llumwWva2EnHI7Dp95pcxw,0,1,0 +MqnlCLq3b34Lq1Y7j7NY_Q,2011-07-17,4a9bqKsAGo2qmu6vqPEYgw,4,"Being the pho addict that I am,I'm always on the lookout for a new place to satisfy the craving.This place was called Tu Do for a long time.It was a +place that never seemed crowded,with an older Vietnamese lady as the +only cook.The place was run down and the service indifferent ( I know these traits are not uncommon in Vietnamese restaurants).Then it was +called The Ritz for a while,with a remodeled interior but with the same lady doing the cooking.Now,the restaurant has new ownership,a local Vietnamese family,and it's a whole new ball game. + I ordered my usual pho tai bo vien with goi coun (spring rolls) as an +appetizer.I'd give the soup a thumbs up.The broth was well balanced, +a bit on the oily side (that's not a bad thing for me),not the strongest nor +the weakest in town.The basil was fresh,the meat was of good quality and quantity.They didn't skimp on the noodles.On the down side,they +use those meatballs that have a more rubbery texture than most,and they only give you 3 of them (4 is the norm).Overall it was a good bowl of pho,but it's not going to unseat Maxim or Khai Hoan as my favorites in metro Phoenix.The spring rolls were above average,with no shortage of shrimp,and peanut sauce that tastes like peanuts,not hosin. + The service is much more attentive now,and these folks seem eager to +please.Also worth mention is that Phuong Dong is inexpensive.Not quite +Pho Thanh and Da Vang cheap,but pretty close.Another good thing is that +they are open very late on friday and saturday, 1:00am! Late night pho fix! +They also serve beer. + I like this place,I'm looking forward to trying the Canh Chua Tom.I hope they succeed.",review,z-qiYL3dTVpTN4tLFJSgRQ,0,2,0 +M6fjHpkL9IRI-nI0BattRw,2010-02-27,FZ7xvRhs2ttO6-E0ALUguQ,4,"Enjoyed lunch at the bar with my wife while on vacation. The bartender was one of the owners, the wife half who works a full time job elsewhere and the rest of her free time at the restaurant. + +Nice beer selection, just the right size floor plan with great outdoor space, and you could feel the care the new owners put into the place. + +Great neighborhood cafe.",review,8oY8gmr4NYwHgiYjTjh7Rw,0,1,0 +v91laC9hHODn2WcN_PLE9A,2012-05-14,nJzTOQuDPnQsV4Utja0jFw,4,"Its a Wal-Mart, with a subway inside.",review,HJLwvRnK22elM2vA4C4XtQ,0,1,1 +53YGfwmbW73JhFiemNeyzQ,2012-03-31,0slgYyr8Yw8m6HcZskjLFw,5,Great food! Great atmosphere! Great service. Definitely recommend!!,review,s_dCojY_rhGDmMQBLYTkag,0,1,0 +VpW40mznMS43CqdbelX2wA,2012-09-06,NDJ8gaQzCNJ0WO85LCyGsA,3,"Was craving something different tried this place recommended by a friend. Was impressed with the lasagna. 30 min wait well worth it. + +Service was ok food pretty good",review,TriKet4yZ84pZjHnp5llKg,0,0,0 +XF4Tm-FcppqQZOXmpwd1iQ,2012-02-17,6H7QuV5u3hYBb7kHO77v0w,5,"This is a dangerous place for me. I could seriously do my bank account some damage as I love love love this store! The candles are the best anywhere. They burn very clean and the fragrance lasts until they burn out. I just bought the kumquat scented candles and they smell delish. There's so many cool home furnishings here as well, unique non-mainstream stuff that's fairly reasonable in $$. I've actually got my eye on this really cool apothecary cabinet... purchasing it may be in my very near future!",review,125BWA95-0GR2tIQDZ23dQ,0,0,0 +hh2lP4_2N-tk_OxmaTf_qA,2012-01-18,tn8G7HV5WYDlG0d-xXVWrg,4,"Delish! We drove around looking for a good steak without a wait and ended up at the Phoenician. With the restaurant concept by Jean Georges, we knew we were in for a treat. + +The only reasons I'm giving 4 stars are two-fold: + +The shrimp cocktail was overpriced - $18 for 5 shrimp? C'mon...yummy but lame. + +And + +The desert menu is seriously lacking - I was expecting to see at least one amazing thing and they were all boring: cake, apple fritter, cheesecake, gelato...boring!! + +Other than that, everything was amazing. I'm getting over a cold and they brought me out my own tea kettle which sat next to the table and stayed hot for two hours. And the finishing salt they provided in a tiny bowl was a great touch! + +Order a steak, it'll be cooked perfectly with a great crust on it. Have them bring all the sauces too; their bernaise is ridiculously fluffy - they infuse it with liquid nitrogen!! And the beurre blanc is perfect and delicate. + +YUM (PS, if you get Mercedes as your server, you're in for a treat! She's amazing!)",review,AslaCd9aCdWnlMFFheTVBg,0,0,0 +luCSjoNQ9q_0QIjKKOy2pQ,2011-10-12,dvUS8HhPCO0lPFn5M4n9HA,5,"The consummate beer bar. Great selection, knowledgeable bartenders and eclectic patrons. What more can you want from a drinking establishment? The food is good too.",review,BoQ6RqL4aLny75aBqrODUg,0,1,0 +mxrXVZWc6PWk81gvOVNOUw,2009-09-28,2C9TM-fD3PuRviN-WwzxcQ,4,"a great place to spend an evening that has the taste of fine dining, but the feel of casual...the waitress was great...always one step ahead of us.....the desserts were wonderful and they comp'd the birthday dessert.... +the portions were just right...even took some home for the next day.... +we will be back....",review,B9HOtucux0SS0mY3R9uViA,0,0,0 +ZRJwVLyzEJq1VAihDhYiow,2011-06-02,vE1ZUN_folRLOxvFnUFXNA,3,"Spinato's has great red sauce for the pasta but I prefer a more earthy pizza. High School kids love it though. +This restaurant was a Chili's before, but they have remodeled and did a fabulous job. The take out door is discrete and the bar area is large and comfortable. +Food portions are quite big and they have a nice selection on the menu.",review,CcdJ_VhU_zqe2fL7G3eXug,0,0,0 +SDwYQ6eSu1htn8vHWv128g,2009-11-14,HNSTzgYI1lZuFwwCpFI6fg,4,Their Bruschetta selection was absolutely amazing.,review,z2ugesAundnFE1BU66qpww,0,0,0 +VUkQrhwFxVnD1rIOmM37cQ,2012-04-14,nqdSaj3jzAI4_eItVDKyPw,5,Service at this location is superb and worth the wait when they are busy. Price and selection are awesome too!,review,tu0ulicth-HaZtG6XmnO5w,0,1,0 +_FXql6eVhbM923RdCi94SA,2010-03-11,bNU66r2lUz7hiXiD1TP9Og,4,"I came here for the first time on a rainy Tuesday afternoon for lunch with a great friend I hadn't seen in 6 months. Our server who was cute as a button picked up our ""we are not in a hurry vibe"" right away. We ordered a bottle of wine, fairly priced and loved the added touch of a chilled wine glass. Our food was very good but no real risk was taken. We shared the fish and shrimp tacos which were flavorful but I had to add some hot sauce to give it a little bite. The beans and white rice were a simple filler, nothing more. The menu looked interesting and the prices were fair so I would definately try it again. +There were only 2 things that I found disapointing, first was after we ate I ordered a martini, one from their menu, it was fruity and you couldn't taste the alcohol at all. The problem was it was served in a very small martini glass and I feel when you are going to make a fruity concoction and call in a martini the glass should be bigger, not the James Bond shaken not stirred size. +Second problem, as we were eating a woman came and sat at the table right by the restrooms and plugged her computer into an outlet that made the cord block the restroom door. Now my companion and I couldn't decide if she worked there or not, she never ordered food and wasn't there long. But just the fact that the cord blocked the door and could have been hazardous really bothered me. +Overall though I give the place a B+",review,am9yAm4Ph7yk81sFkHlxig,1,2,0 +rN-rVMF0yFEukpSx6Go3XQ,2010-10-29,cIcl6vPkVcrHYQLC-ZsxEw,5,"I have played this course two times now. From the moment you pull up, you feel like you are at a private course. The staff is very friendly and professional. The views are breathtaking and both times I have played, the course has been in impecable shape! + +The course is challenging, but still enjoyable. Lots of holes that are down hill (great for long tee shots!). This is one of my favorite courses in the area!",review,nGQPhL4XtvlMxgwIIT5knA,0,0,0 +OEQMqI-duBA1gbBFzi7BPw,2011-12-09,dlOtbioiF6Ol4wMx5-UIig,4,"This one is consistent every time I come to this restaurant. +Good flavor, good service. +On occasion the fixings selection is a little ""off"". Brown lettuce and those tasteless winter tomatoes. But the good thing about a burger is that they are still good wiht just the basics.",review,xfX5LfEnBUWb8iL3B4VqHg,0,2,0 +jEWfxxA_kjeJE_Z_ku3zLA,2012-11-17,jfD7x90uq5nZIcxm7RdZVw,5,"I liked this place. The reviews show low stars but I liked it. I was there for happy hour so go at that time. The pricing is good. I don't know about dinner, but happy hour is cool. Servers were chill. Host was a bit stuck up. Not sure why she though she was that great. But the place is cool. I recommend people check it out if they want to try a sushi place on the Mill ave when you are in town visiting Tempe.",review,n9Nl4sE7QPpgoo_f2q2viw,0,0,0 +NN2qs5B713vM6BDcMyrg4A,2010-02-16,-1MFWd_8--J9SL0dkNKmFQ,3,Had breakfast this morning while waiting on getting my windows on my car tinted. I had the build your own omelete. I got it with chorizo bell peppers and cheddar cheese. It was pretty good and the portion size was big for the price. They had fresh squeezed orange juice too. Not the best breakfast I've had but it was good.,review,Iycf9KNRhxvR187Qu2zZHg,3,3,1 +jEWfxxA_kjeJE_Z_ku3zLA,2011-09-18,Jv_fTJmAZGMqfT91sEVWJQ,1,"My g/f love sushi! She made me a connosiuer of it. and I have to be critical. So many college kids ""love"" RA, but it's mediocre at best. + +I'll just list a few things that irk me: +I went during a happy hour with co-workers. It was PACKED. Good thing, right? WRONG! +Extremely poor service. when I went in to meet coworkers who already had a table the hostess told me I have to wait. When I said I have a table, she got in my face. I was tired, long-day and I wanted to chill. I walked past her, found my friends, and she left me alone. +The waitress took quite a bit of time to get around to my table, and the sushi servings were OBVIOUSLY LOW! +I went to Zen 32, and now my choice is SakeBomber. their happy hour servings are much more than RA, and their prices are BETTER! + +Be ready for loud noises, as every one is trying to talk louder than the music, and the person next to them. + +Just an overall poor experience. and I tip on service. + +Food quality was so-so. Just don't go during a happy hour, which is the only time it's worth it because it's priced so high.",review,hEhSTtxy6JOCa-HPAsxTCg,0,1,0 +CqhsIZ7TzCfJTrZqg5-gqQ,2010-03-07,0o59nVqoohULIK4N22Yr-w,3,"Jason B. and I decided to try this place on Saturday night. I looked at the menu online and though the food sounded really interesting. + +We started with the Artichoke Croquettes, and the Calamari as well. We were disappointed in the Artichoke Croquettes, you get 4 half Artichokes fried with alternating Marinara and this white sauce. The only thing that was good about this dish was the white sauce, which we used to dip the Calamari in. The Calamari was your average calamari, nothing special! + +I ordered a the 19th Street Burger, which was cooked perfectly and came with a spicy sauce, not sure if the sauce was for the Onion Rings, but it was great of the Burger. + +Not sure I will be rushing back to the Armadillo Grill, but I wouldn't say no to going back again!",review,L3XWX_dd8_pYnRSMdppjDg,0,0,0 +0a8hLC1V7jgOjRigoBohAg,2011-06-19,GOpzaChUxidCg12Kfxi4Uw,4,"This park is fun for anyone. They have attractions for anything you are in the mood for. They have a full water-park, arcade, go-karts, bumper boats, mini golf, etc. It is a fun place to hang out with your friends. Depending on what you are planning to do, the prices vary. Go-Karts are $5, Golfing is $7.70 (don't play the last hole, keep your ball, and go to the next course), arcade is addicting!",review,LlvlJT053ZS6ozDjkmbnjQ,0,1,0 +ohxd8La86GdC_3vgwBWLHA,2012-03-15,XjoDHzsH91lmIy3540VfbA,4,Great place for shows. Excellent place for everyone.,review,XLah_ynCwwYshCY9jc13tw,0,1,0 +QnAzW6KMSciUcuJ20oI3Bw,2011-07-21,C1gBmwTeT2X7PN-rRxZXgQ,4,"I was contacted by the manger at this location cause of my bad review, I am really for proactive owners. I really need to go back to this location to give them another try since the first time I went there it was really good. I was given a gift card to wipe out what I paid for the last meal as kinda of do over. I will be back Anthony and I will let you know how my next visit is.",review,0Jlviq1YD76N-WK_GUeDMw,0,0,0 +ybXlbfOjrKDdz5NoC-G9Gw,2009-07-18,zlR8UR3P-n-CfJb7QbLYTg,4,"I've been a Char's patron since before we were legal to be in there (many years ago, previous owners). It has always been a lively place with a diverse crowd of aging black hep-cats, college students, bikers, tweakers, college students, heavy middle aged white women who love black men, the ocassional tranny and Hispanic couples on dates with a sprinkling of occasional stippers/hookers. In other words - everything you would want to make a blues bar entertaining and just seedy enough to be interesting. + +They are one of the only places in Central Phoenix with live music almost every night of the week and the cover, if any, is typically only a couple of bucks. The place is small and dark and crowded, like a blues bar in an old converted house should be. Talent varies by night but anytime you go it's passable. Personal favorites are lady J and Bam Bam and any combination thereof, which is what you usually get any way. Wander in on a random Monday night and 11:30 and you will find music, cruising, and drinks waiting. There is a small enclosed patio up front for smoking, about 16 spaces in their lot and street parking available on the residential street, but watch the signs and don't block driveways. You can also cross 7th Ave, but be careful dodging cars. The neighborhood looks scarier than it is so don't be alarmed by a transient or two wandering down the street but they don't bite unless you pay extra. Close to lite rail as well in case sneaker pimps want to try to cross over from Central, but hopefully they won't.",review,LB7HoDg61yWP2CjrueeJUQ,2,1,1 +8Fx-K9dIZz_buBZcEvkeRw,2012-04-23,_M9-oOxWziafPtvjLKfr0g,3,"My gang usually stumble in her at some point during our nights out and about in Old Town. They have a decent selection of beers on tap and there are usually a couple tables open if you want to sit down. It's a bar, not a club, so don't expect much. They have servers that are polite and prompt and the wait at the bar isn't usually very long. +Worth a stop to support a local biz.",review,xdl61MWMguYRSunH8CniQw,0,1,1 +AaKlegu7gmOCD4rEESF76Q,2012-06-27,WKG7V6MbL7c8D0Fv0Y6jbw,4,"I really like Maizie's, but unfortunately will not get to go as often anymore. I hate to report that after our last visit, my husband received a bad bout of food poisoning. It was, in fact, his first time puking in approximately 10 years. It was not pleasant for him and it was not pleasant for me. For that reason, I guess I'm going to have to drop one star from my previous review. + +The thing is, I really love Maizie's. I love their menu and I love their atmosphere. Unfortunately, the portobello sandwich...or maybe it was the cottage cheese...just doesn't love my husband and that means I don't get to visit quite as often. :(",review,TA6CcCUag4lftPJDuhhFuw,0,2,0 +hW0Ne_HTHEAgGF1rAdmR-g,2010-11-22,bQgDV8P5CX3KbsWk7OrS2w,4,"I always connect here because I fly US Airways from Las Vegas. But everytime I have a stop over here, other than a major back track to the Bay Area, I don't really mind coming here because it's a well maintained airport. It might look old but it is always clean. + +I'm only here about 1 or 2 hours at a time but I can't help but notice all these restaurants in here, if you're hungry and don't mind 'airport prices', never fear selection is here. + +Also be prepared to walk close to a mile to your connecting flight. There's LONG hallways here. Don't worry, they have standing walking escalators.",review,IgXUM_WyCgqyzA01mN5HKg,0,0,0 +glalhJa7wFWPIoJLBvKGfQ,2012-08-19,2_RWlYAT9pEedFknTGh4zA,3,"Really solid lunch deals and pretty close to Tex-Mex which I still get cravings for from time to time. I had the spinach chicken enchiladas and they were nice. It was a ton of food (of course) so we definitely needed boxes for leftovers. If you're in the neighborhood, it's a solid deal and I'd stop in again. My only wish is that they did a green sauce with the spinach chicken enchiladas. That would be heaven.",review,qRo9gHN5OiV1-peDuhCh-g,0,0,0 +0rd-jRz43JDkx1ghoHnEXQ,2010-02-21,xXbfPT5hRkjPcFeTnRDtyQ,3,"Alison B. sums up all the great things about this unique store - and I would return if I was looking for a unique gift for any female friends of mine. + +However, when I went in on a Sunday I was 1 of 4 women in the store. The man working was chatting it up with the 3 other women who turned out to be together, and once they left he had a seat and didn't say a word to me as I browsed. I walked out after several minutes of silence.",review,lwppVF0Yqkuwt-xaEuugqw,1,2,0 +Iu8jmmDFcDSf5PCdor1dvg,2012-12-12,FCAvAcMAj-VIGtzg2YdyKw,5,I love this gym! Everyone is so helpful and friendly. The gym has a TON of equipment and is always very well kept and clean. I wouldn't want to go anywhere else. I feel very well connected to all of the staff - they even know me by name! The trainers are extremely helpful also. I would recommend this gym to anyone and everyone!,review,Pc6oM1OHdl82PUoumiPzmw,2,3,1 +ahKN6wh6z2vZsd8C7AyG5A,2010-04-25,5-xqg_2KpZ4Um2hVvBUQiA,2,"I came in here wanting and expecting this place to be amazing. I wanted this place to be 5 stars. ugh, I feel like a failure for giving it 2. I've heard such good things about this place, and was expecting it to be good, but unfortunately, it was not. :-( + +I walked in and placed my order. The menu seems to be decent enough, with a fair amount of selection. Ample amounts of toppings, and you can have your burger a few different ways. Mind you, I'm a burger lover, so I'm always up for places like this. + +I ordered a regular burger with all the fixings and BBQ sauce on top. I got the fries too. It came in a brown bag..I guess thats how they serve it regardless if you eat in or not. + +I was dissappointed with the burger itself. It seemed like it came with way to much topping. I mean, like an overwhelming amount. I ate it, and the burger was okay, but not as good as I have experienced at other comparable places. I wasn't looking to be ""blown away"" by the burger, but I wasn't really impressed over all. It wasn't that great, to much on the toppings, and it didnt really do much for me. I will say tho, you get a TON of fries tho. + +I left feeling underwhelmed, and don't know that I will be back in the future.",review,JffajLV-Dnn-eGYgdXDxFg,5,5,3 +E28ht8IEiO6FZbKktSo0Xw,2005-07-10,ZLV71s7RzywyPiBT-6TIKQ,3,"You're in 120 degree Scottsdale weather and you need a casual change of clothes, a bite to eat, and a refreshing adult beverage; Tommy Bahama can do it all under one roof. A retail clothier on the bottom floor and a decent, predictable place to eat and drink upstairs...ok, I'll work with you Tommy. There is nothing special about this place except I found their service in both their retail space and restaurant superb. Try their grilled crab cakes and their twice shaken martini.",review,VxRPbgauDdOcA3eg1uazXA,2,2,0 +Ddsln32r-uA7hq_0ksaNZA,2012-01-02,egZX_g3cRLcu-Mmnp9gL3w,5,Kick @$$ The Best of the bertos & they will make anything you want_!! Carne Asada with Sausage & Ham........Wow..,review,_hCoELWb_ERmEhR_ZJdgPw,0,1,0 +SiwN7f0N4bs4ZtPc4yPgiA,2007-09-27,bTnuFjPsj-LgB2FYwtkWow,3,"I've only ever been here for Transylvania which is their Friday night Gothic Industrial night. It's acceptable. I have high standards. Sometimes the music is really good. Sometimes it sucks. They have 2 DJs and I can always tell when the switch from the one whose tastes I enjoy to the one whose tastes I don't. If you're looking for Death Bunnis, Razor Grrls, Baby Bats or *sigh* Suicide Girls, you'll find a few of them here. There are a lot of regulars and I usually have a good time, unless of course I don't. The people there have all been fairly nice. + +The drinks are nothing special. They aren't terrible, they just aren't terribly consistent. If you need to get wasted, get some shots poured. At least that way you know what you're getting. + +So when you need to strap on your boots, wear your eyeliner, and shake your ass, give it a shot.",review,hvgYD6Pmyaa6hS39ymIQBQ,2,1,1 +RdzsxC8Q3ybBcJohpywSwQ,2008-07-02,mR4_8Z80PDCV9tER2IPGWA,5,"I love this place! It first caught my eye driving to work. Their logo includes a shazzam lighting bolt which is rad if your into comics. I went in the place and they had comic art on the walls. The staff made some suggestions of what I should try. I got the slider pizza - (kinda like a cheese burger pizza) they actually used a little brown mustard on top. Anyway it was delicious. I can't get over the helpful staff though. It is very rare that I get that kind of service at a pizza joint. + +Any way every time I have visited the place there has been no patrons and it breaks my heart because that is a good sign that it isn't going to be around long. + +If you get the change PLEASE check this place out.",review,y__MQ0huPNC4qarwMD8GlQ,2,0,1 +TpQMR-JFE5V0UPzTjjuwFQ,2010-11-14,rKP6Yx2EtmriMzAvRvUiug,4,"Yummy! We would go to Canter's in LA before I moved out here so this is a good comparable Pastrami Sandwich. Very close to where we live which is great. Prices are fine, a bit pricey, but oh well. Overall, thumbs up!",review,ZyntP_awJOJHiXVoiJlHvg,0,0,0 +SBCxhkeiaXdjXECeFn-mtw,2008-07-15,0gNZ235FAIUyBYlyYsRLBg,4,"I have confirmed the rumors that Big Wong will be closing before the end of the year. The owners have been locked in to a lease they assumed for the last 15 years and with the down-turning economy aren't able to continue. + +If you want a very reliable meal in a super friendly environment, rush on over before they close their doors forever. : (",review,iwWBF3nKoRMoy1sbkLJwvg,0,2,0 +_oQN89kF_d97-cWW0iO8_g,2010-02-24,XDXj0aeWoG6wp7xiFP_zrA,4,"Agree with everyone on here, this is some really good food. Very laid back un-asuming place inside another strip mall on Bell Road. Ah what treasures lie hidden in a strip mall.... + +We were greeted by a friendly young man who took our order right away, I ordered, well I don't quite remember the name, but it was steak pieces with french fries and onions, and rice. I was fooled by the mild salsa that came with the chips and said, ""hey can you make my dish spicy?"" The server said no problem, and while the dish was very fresh, my mouth was on fire, and I touched my eye and it was like pepper spray or something. I love hot food, I can eat Los Dos Molinos Abogado ribs for example with little problem, but this stuff kicked my butt!! It had little red peppers in it that I have never experienced before. HOT!! I kept remembering Deb's review:""....this is not Mexican food...."". No kidding, next time I will get it milder. My eye burns still..... + +Wife got a milder flat pan steak dish with lentils and rice. She praised its freshness. We also split a red beef tamale (they were only like $2) so it was just a sample but decent. + +They only have 6 tables in there! And they had to change their name due to copyright infringement from a restaurant in Texas according to the young man. Either way, we will be back for sure. Good stuff!! Something tells me there is more burn to come, perhaps tomorrow if you know what I mean? Beware! They can really spice it up if you ask them too. I met my match at Mi Comida.... + +Fresh ingredients, nice people, and a nice change from Mexican food. + +Recommended! Don't touch your eyes if you touched those little red pepper things, that is for sure!!",review,78Ed1ndOak2kmzljulPfBg,14,16,11 +r-a-Cn9hxdEnYTtVTB5bMQ,2010-08-04,o8ere9_RTCCESrdBOF3reg,4,"This place is very popular and I can see why...the food was incredible! Cool, neighborhood place with good service.",review,pEVf8GRshP9HUkSpizc9LA,0,0,0 +Yw86Jnab9ixke9xJ5pLhMQ,2012-01-25,2tMqPdc0Ogk11ADgKoeGuA,2,"Heard a lot of good things about Pete's. I am from the Gulf Coast and was not expecting to find anything that would compare to the delicious fried seafood of back home. Glad I set my expectations low. + Pete's fish is ok, square, almost like processed but not. Strange but tasty. Chips are decent, taste like typical Ore-Ida frozen fries. The Onion rings were good (super greasy though). My biggest problem is that I am a bit of a traditionalist. If you are gonna call it ""fish and chips"" like they would in the UK, then you have to at least have malt vinegar. The red sauce is good with their fries and rings (and maybe shrimp) but not on fish. It is the only sauce they have. I hear the burgers are good and may go back, if I am already in the area, to try one. I wonder if they have mustard? They may be trying to do too many things at once here. Seafood, Americana, Mexican, (fish, shrimp, burritos, hot dogs, chicken, oysters) Just a thought. + The seating is outside, if its summer you must get it to go. Between the heat, pigeons and huge flies (serious kitchen hawks) you will not have a good time. + The prices are very reasonable but they only accept cash. I would not go out of my way to eat at Pete's again.",review,cjU6TqN3bSiW8ShYSoF-0A,0,1,0 +vnffHkFJbmd-J3OaBbK2Eg,2011-05-25,Qxihaq_UCehA7lVQl97muw,3,"I am writing this update soley based on the feeling one gets when going to Spitfire Grill, the food and drinks are always good. + +Our complaint about Spitfire is that the owner and staff is never very welcoming. My fiancee and I have been there 15+ times and there is never any recognition by the staff. The owner is always there and he has never introduced himself or thanked us for coming in again. The servers have never said 'welcome back or good to see you again'. For a neighborhood restaurant I would think you would want to make your regular customers feel appreciated. We love the food and the restaurant is right around the corner from our house, but we lean toward other, farther away restaurants with a more weloming feel. +For example, last night we went to House of Tricks in Tempe. It was our 4th visit. When we walked in three of the employees greeted us and welcomed us back. The bartenders remembered what we drink and asked us about something we discussed last time we were there. +Talk about feeling welcome! Spitfire has a lot to learn if they want to survive in a neighborhood lacation.",review,CQ-YFX-YGI_Mtne41HkSVA,0,2,0 +MAfc2V_EVtyR9rMxxEAPLg,2010-12-09,hoNecQuL86iCHowOtzMZig,5,"Favorite Pho in the phoenix area so far. +Great, tender meat in my pho chin nam (#8). +I see they also have bun bo hue on the menu so I'll have to try that sometime soon. +Nom nom. + +Friendly staff. + +See ya there!",review,fPHLPrymsyb6WSFFKoMrTQ,1,1,0 +JxVGJ9Nly2FFIs_WpJvkug,2009-02-05,jxvNPfbkglmuKGyUDdKHsw,4,"Fun, Fast, Easy, Yummy. Nice Flatbread style pizzaz, done right, crispy, not thick & greasy. Yummy fresh & unique toppings. Crisp salads. Good place for kids :-)",review,h7v_M_0-YVpSVZ2WD7FpAA,0,1,0 +DbI6ezKctN4Z5SV7LvG4Sg,2008-01-23,7eReGh-28-2I7TLB0PUXIA,4,"Newly opened no frills supermarket import from the UK with interesting ethnic food selection. + +The fruits and vegetables wrapped in clear plastic sitting on black crates reminds me of my neighborhood Tesco's from my days in London. + +Cool thing about this one is the variety of products carried on the shelves. When's the last time you're seen tripe or pig's feet at Albertson's or Safeway. And hooray, I can finally buy Chaokoh (the only good brand of coconut milk) in Scottsdale without having to trek all the way down to Lee Lee's or Ranch Market. + +Great selection of fresh meats and cheeses. The only place apart from Trader Joe's that I've seen unpasteurized orange juice, which by the way tastes way better because heat kills the fresh taste. + +Much-needed addition to an area saturated by the boring standards.",review,8WQubmP7G0NM3IyzyMnCEA,0,2,0 +AsSCv0q_BWqIe3mX2JqsOQ,2010-08-27,YXnYNEynrmsQi-kbK4dWAw,5,"Alright this is the deal of deals, 2.75 for students and Im not sure if its a quarter more or not, but less 4 dollars. half an ice cream cookie sandwiches, trust me its enough. + +Its a great pick me up for something sweet on mill + +Cookies are made their along with the good ice cream, and if your not into that they have italian ice. + +Place is small, but is packed with flavor, and smells like fresh cookies. + +Recommendation: If you love cookies made into sandwiches",review,cWg07SD9-PnDUglqtS5owg,0,0,0 +VBhgkRUNe9gjc1HpmHA3Zw,2008-08-18,x0smAOppHki0HF7FNeIyVg,1,"Bad food, but lots of it. If you have a hangover and need grease, this is your place. Other than that, drive a block and eat at Mucho Gusto down the street--now that is real mexican food!",review,ph051iWFcTzyIjcVV3dAew,0,0,0 +NYIyTj2AZJpAo7XIM-Z7lw,2012-04-12,mT11XaPCwS-9352pmywknQ,5,"Stopped in for Margs and appetizers. + +Had 2 house Margaritas......AM I DRUNK? + +Holy MOLY what do they put in those things? + +Food was great, drinks were better, I'll be back!",review,gN4JuiRC2sIssc1qijg4Zw,1,2,2 +E4b5OC_6mZ0V7B6Nyjncsg,2011-11-17,FTtMZ68xQba87bE8EkRdvw,4,"Thai, Vietnamese a nice patio, good happy hour and a swanky inside they have it all. + +Despite being a nicer place as Asian food goes the prices are quite reasonable and it is really a great value. + +The happy hour menu has Asian tappas (apps) for $5 and many $5 cocktails and glasses of wine. WE had the salmon satay which was just grilled cubes of salmon on a stick with sauce and some salad, good but nothing special. The veggie wontons were great in a brown sauce and filled with veggies and again a small salad garnish. + +My cocktail was great but it was a bit strong. + +For our mains we had the Salmon with green curry, It came in a HUGE Bowl it was rich and full of great veggies and fresh not overcooked fish. $12.95 + +We also had the dragon noodles, which was veggies tofu and glass noodles. It was light and fresh. ~10 + +Over all great quality value and patio I will be back.",review,M6oU3OBf_E6gqlfkLGlStQ,1,1,0 +6NAOp61ozWlO6KCxTlgCkw,2010-06-12,vHXGBSYIwgMPsZF0SGyR7g,3,It was my first visit to Wienerschnitzel and OMG two words CORN DOG! It is better than the ones at the State Fair. I also had the polish dog. I am sorry but Costco's is better. The french fries were OK. The best thing I had was the corn dog.,review,_PzSNcfrCjeBxSLXRoMmgQ,0,0,0 +52QtjHlHoa7V611bOvv1aw,2009-09-18,XZKSyI-jcqcYspafMceVkA,2,"The ambience is a feast for the eyes and for the touch, this much is true, but one is paying a very high price for this exclusivity. While I liked waiting in the lobby- couldn't sit at the sushi counter until it was open for dinner service at 5:30p- I did notice that for a venue that strives to project a life of luxury, housekeeping hadn't come by to clean food debris off of the coffee table (closest to the sushi restaurant's host desk). Not even when a rep came by to alert me to a bar menu sitting on the table and asked me if I had wanted anything from the bar- she had to have noticed the mess?! +I ordered a $9.50 spider roll (soft-shelled crab), a $10 veggie tempura app, and a $19 baked lobster roll, all priced at 50% for one week during their 1-year anniversary. They're all good, and factoring in the ostentatious surroundings, I'd pay $9.50 for the soft-shelled crab roll, but I'd put my foot down on the other two. 50% maybe, but $19 for a five-piece lobster roll? Yes, it was very tasty, and yes, the cream sauce was orgasmic, but for $19, I expect moments from the restaurant scenes of ""The Ugly Truth"" or ""When Harry Met Sally,"" take your pick. +If you've money to burn or have someone else paying for the bill, then this is your sushi stop near Old Town Scottsdale.",review,0bNXP9quoJEgyVZu9ipGgQ,5,6,3 +5_tsOGJQDDl9iKOr8K79Rw,2012-12-09,p_2omAIO3EmTqf4Fdyiihw,3,"Expect to pay $10-12 for a decent burger and fries in a tacky, blue-themed interior in cafeteria-style tables and seats. + +The happy hours isn't bad, as it boasts some reasonable and fun appetizers along with $2.50 IPA drafts, among other options. + +The service was decent, but not great, and the ambiance as a whole didn't seem to be worth the prices on the dinner menu. At least, I can think of several better options.",review,YsPqt0gxG60l0cJvHl_ylw,2,2,2 +9YUe5J_cPCBo_mL7-z9HCQ,2011-08-22,8GtXhZduG7LSSjdrfmfZvA,4,"Stop the presses and buy a lotto ticket, I'm actually giving a place on Mill more than 2 stars! + +The bf and I came here around 10 on a Friday night and were FINALLY *pleasantly* surprised with the place. We've been to several places along mill trying out the area since we moved here and have been met with nothing but sloppy people (both young and old), watered down drinks, and mediocre service. + ++ no cover, nice doormen/bouncers (though there's a $5 cover after certain times on Fri/Sat. for guys, ladies free) ++ responsive and knowledgeable bartenders. I ordered the tequila drink (ha, who woulda thunk) with grapefruit and it was *delicious*. If you don't want a sugary kick in the face with your alcohol, try this drink! The bartender was funny when I ordered it and said ""oh honey, it's not very sweet, is that okay? Some people don't like it""--thank you for making sure. My bf ordered some 10/12 year anejo double shot (can't remember) and really like it....hell, I even sipped it and didn't reactionary gag! Let's just say sauza and jose kicked my ASS freshman year undergrad-- I'm forever ruined ++ wide variety of drinks and tequila...that may seem like an obvious thing at a tequila bar, but I've been to a few that were pretty skimpy. ++ decor and vibe was on POINT. Somehow the younger crowd here doesn't act like one drink is sending them to blackout town...score. Somehow the cougar-looking women here don't flip their hair every time a younger guy walked passed them...score. Somehow the older people were grooving to the music more than the young bucks...score. +- minus one star for no AC...is that normal on Mill? no AC? and if so, WTF IT'S HOT AS BALLS, TURN THAT SHIT ON! + +Like my (ex)governator said ""I'll be back"". Seriously, I'm excited to have found a place that didn't make me regret driving to Mill, woohoo!",review,0N8jAcXewpjG-SrOa_QeTQ,0,1,0 +W0eocyGliMbg8NScqERaiA,2012-03-11,z45VpAt7N6ntMdxDIPmFYw,3,"Narcisse is truly an interesting place. + +Good food and pretty good service. The staff/servers look good and keep the ""image is everything"" so important here in Scottsdale working for this place even if the looks exceed the quality of the service. The late night crowd is of the ""look at me"" variety and makes it a good people watching establishment if you do not mind the huge egos that go with it. + +The selections of food and drink are impressive. If you can reserve a table to dine and drink with friends do it as the place fills up and leads to a fun night out experience for the above 30 crowd.",review,Uv4qrIDX7xzLJP_9n_JsyA,0,1,1 +sZwUrDST1fkLHhdn0P3N1A,2011-06-12,5BD2pLHK7tNSVrODSntFsg,5,You can't give anything less than 5 stars to a place that sells bra's and panties to hot chicks.,review,0im6WIvEj7MWfJSLCuZYaQ,0,0,0 +Xq1FtLSV54Spf-HfONc1aA,2012-05-18,D_GHBOve5yjNXJzfmcBIuA,5,I've been to the locations in Chandler and Mesa and one word describes both locations: Fresh. Their donuts are consistently soft and fresh.,review,sih5J4HDcRMdcp8MehHAnA,0,0,0 +8o-NLKy_XfbJtqljX9XLCA,2011-11-05,XtKYEFYNLEaMabNDOmDExA,1,"We came there on November 5, 2011 and the service was very bad. The worst I have ever seen and we were treated like shit. We came into town from LA and Vegas for the NFL game and seen Mrs. White's cafe on Foodnet Work and knew the food had to be great. The chicken was great, but the customer service was so bad we will never return again. We got a refill on our drinks and the guy poured sum of our drinks on the left overs so we could not take our food back to the hotel. Foodnet Work shame on you for recommending this place. Just because the chicken is good, does not mean you treat people like shit. + +We had to remind the staff over six times to get our order. We waited over 40 minutes to get the other 3 pieces of chicken to finish our meal. We don't mind waiting but it was pretty rude when you are watching other peolple are getting their meals when they walked in after us. The Mac and Cheese did not look like everyone else's order- it look like it came out of a box. You can tell it was far from homemade, it cleary was not bake, no crust. The gravy was watered, missing favor. Corn bread was over cooked under salted. The cornbread sure as hell did not look like everyones else's cornbread. I felt like we received the leftovers. + +Truly the worst service we ever received. The place needs to learn how to be respectful and just be nice.",review,CNNforlwwIT89V_hQ-dbtg,0,5,2 +HW_QFzCZfF4yqN64F5Xx_Q,2012-05-05,LC7IEMctjh7jx4nD1b_z2g,4,"The ""Shoe Dog"" experience was quite fun and entertaining! It assists in finding the right shoe for your foot...and pretty accurate! + +Shop from hundreds of the best walking and running brands like ASICS, adidas, Brooks, New Balance, Saucony, Mizuno, Merrell, Nike, Puma, Pearl Izumi, Sperry, Timberland, Under Armour. You'll find fantastic natural running shoes from Vibram Five Fingers, Newton Running, and K-SWISS and trail shoes from Merrell, Salomon, and UK Gear. Grab the best gear from brands like Garmin, Baby Jogger, BOB, GU, Honey Stinger and FRS. You'll also find your favorite Triathlon Gear in the Road Runner Sports online Triathlon store. store. Choose from brands like 2XU, Shimano, Bont, Giro, Aquasphere and Xlab.",review,JgufYQ94cHyEo9b8StajnQ,0,0,0 +XWpkTxBLgRXxl7g2Hw62Qg,2010-03-24,IGPcKsOxm4BqnR5mH5Bnqw,4,"Super Dark Chocolate Gelato. Word. Tiramisu Gelato. Straight Up. Super Dark Chocolate Gelato and Tiramisu together. Good Stuff. + +This store smells like a pool. I have no idea what's up with that but the Super Dark Chocolate Gelato is awesome. + +I will go back just for that. And I will order the largest size I can handle...Kids Size. Or maybe Small if I'm feeling ambitious. Gelato is rich. Super Dark Chocolate Gelato is Super Rich. You've been warned.",review,P2kVk4cIWyK4e4h14RhK-Q,5,6,5 +6HAwTnhNJoR5VNdfUrRoEw,2010-04-29,bFSWgQzleesf1o3lN95P6w,5,"Best donuts in the valley. + +I like a variety of donuts (my favorites, though are raised sugar and raised glaze), and all the donuts here are great. Never too heavy, always tasting fresh.",review,2OLdiDZNdrPkdjp1WmW0-w,0,0,0 +IuAPYzf3NSyfyXYgT46YVA,2012-01-21,gz6dv-usee4ZRHNvsq8UTA,4,"Sitting at the counter at FnB is an experience that should be had, period. Our reservations by default was later on in the evening, but also turned out to be quite fortuitous. Not only were we able to see chefs Badman and Curry in action, but also saw them turn down the kitchen towards the end of the night. It is a display that even the most advent epicurean is not often exposed to. There are no doors or walls to hide behind. Everything that you eventually place in your mouth is out in the open and also in the way it is prepared - from the raw, to the stove, to the plate. + +Impressive was also how fluid the kitchen moved with only the two chefs preparing dishes. Chef Curry preparing the appetizers, fish and fowl; while Chef Badman shoveled coal onto a grill and simultaneously manning it to ensure rib-eyes were cooked to order. + +The ambiance was the type you'd expect when invited into another's kitchen, and the food tasted as if given the same attention. So to the service. Our waitress, Chantelle was nice about explaining everything to us after hearing that it was our first time there. When she found out we had moved just a few months ago, she was kind enough to write down her restaurant recommendations for us too. + +Will definitely be back to try other items off their ever-evolving menu. Reservation for two please. Yes its okay if its at the counter and yes, its fine if its late.",review,TfOfuXzdRIO-WVe8sYsO0A,3,2,0 +v_fV3nYIZQRGBdRL9jXeAQ,2012-02-26,rXDhaYhSt7AhfD2ixnTPrQ,5,Pulled pork over rice with compelling seasoned tater tots (rosemary & garlic). Gutsy sauce was utterly unique! Darryl King prepared it hot and packaged it with style for takeaway service.,review,EXZrHtmzdtDHtH9MPNEhkw,0,0,1 +43YH6it1qwhjBMfei3m1hg,2010-01-13,QyQjQBUUapdVWiJyzHm6gA,3,"Alright, so how does it go from being a 1-star (actually, less than that) to being a 3-star review? Simple, they seem better than the last time I was working/shopping here. I went here the other night to help my boyfriend find an interview outfit and noticed that the store had a handful of the same employees as they did back in the Summer, but certain areas of clothing had been moved around. Despite all the moving and switching around they must have done, the store seemed really clean and in order. In fact, I really have no issues with this store except one, teeny tiny, little problem...the check out girl! + +I remember her from when I worked here and she gave me attitude when I needed to ask her something. Turns out, it wasn't a one time thing.. she's just a rude person. On this particular night, there were only two check out girls and a line of about 15 people. My boyfriend and I were making seperate purchases and knew one of us was going to get her. I happened to get the friendly one, but before we each paid for our items, we were watching as the rude girl didn't crack even ONE half-hearted attempt at a smile. We listened as she rudely explained to some elderly ladies why a certain item was marked on sale but the same item was normal priced. They wanted to make sure they weren't paying too much/too little and her explanation?: ""That ones been the store longer."" It didn't make sense to them, or to those of us in line watching, but she kept getting huffy about it until they dropped the issue. She shoved people's items in bags and practically threw them at them and said, again without trying to fake some kind of customer service, ""Have a good night. Bye. NEXT!"" Yuck. + +My cashier was slightly more frienldy, but still not awesome. It was obvious she was having a long night (afterall, she was stuck at the register with the Ice Queen), so it was understandable. Also, I didn't catch her name, but the girl working in the dressing rooms was really sweet and kept greeting everyone that came by. + +I had to call this location to get the name of the manager for something I was filling out on a form and I was told they've got a new manager. Thus, I know why this jumped up two stars. It could have been four, but certain things they haven't fixed (rude cashier girl) have kept this review at a solid three.",review,bDVQPjGPM6yVLD2cntJkrQ,0,0,0 +IVc23uY-36WUNYoIbz42Fg,2009-01-16,etIYViErr9G08cXjUhaVvw,5,"I think everyone has said most everything that needs to be said about this place. But I'll highlight the reasons I frequent Switch... + +free wi-fi +good drinks +$5 recession plate special - that is always as awesome as the rest of their menu +good happy hour specials +open til 11pm 7 days a week +good wine +great/friendly wait staff + +their salads are out of control - amazing. + +i think i could happily support/invest in switch/fez/ticoz dynasty for all of eternity...if i had the means.",review,MwJVSTsUB-htphNZaIC43g,3,3,2 +F0ZXhPJD8yNS3xzTxsichg,2011-12-03,aHDpvV2q2h0R6c_UVZxOow,4,"Surprisingly nice arean, given that the fans in Phoenix apparently hate hockey... It's got a lovely outdoor area with shopping and restaurants, convenient and close free parking, and a large selection of food and beverage options inside. When we went, the stadium was pretty much empty...which is fairly normal, as I understand it. Still, if there was more interest, the place could hold a large number of people and has the potential to be a great venue for Arizona hockey.",review,GoeN6MxXAusK9oYAaq1fbw,0,0,0 +7WGBi29_vj_7RcPVxpLNHA,2009-03-22,mc2ID15iwqKXqlLiSyCJcw,4,"Great food, large portions! My family and I really enjoyed our Saturday morning breakfast.",review,fMyKbyYY9Poy9B_1QZPKcg,0,0,0 +yFQBmF9xwcnnpA6P1IcoEw,2009-05-11,elzI_5Z-KslhrBeXcPoUOw,4,"When shopping is an adventure and a destination, you must be heading to Tan Phat. This is a funky Asian market that has been there for me whenever I need water chestnuts (for wrapping in bacon, and they carry five different brands! Who knew so many companies were in the business of the water chestnut?) or kitchen supplies for Asian themed dinners. One of the first things that hits you upon entering in the smell of seafood. After acclimating to that, you'll find a huge selection of canned goods, dried seafood and mushrooms, a decent selection of fresh produce and an ample amount of ""novelty"" edibles (you know, those intriguingly package foodstuffs that you just can't find outside of Asian markets). + +The employees are usually polite. You may have to walk through every aisle to find what you need, but that's part of the adventure.",review,nc3cqVN0UuB3m50-CcMftw,0,2,0 +rIonUa02zMz_ki8eF-Adug,2011-12-06,pGR2j7yorCpnBDWgkVp-WA,4,"Food is yummy!!!! I have never been to a 5 Guys, so I was pleasantly surprised. I ordered a burger, unaware that it is actually a double burger, which was HUGE! Hubby and I shared a large fry. We could have easily split a burger and a small fry. Love that fact that ""everything"" includes grilled mushrooms and onions. So much food. This location was messy. I am not sure of the peanuts are a great idea because there are shells and dust everywhere.",review,7W4egS-WyR0hRHMfQtPEOQ,0,0,0 +bELgiE-Q3AqeVJL-wguQkA,2012-12-18,gmZxSd2iA9et0mFoLQZCvg,5,"Fast, friendly, and clean. You don't get to say that too often when describing a post office! Serously though, these guys are great.",review,JnAGZh7rjuz-6nKXitHUwA,0,0,0 +bts6jVczHJuWzpT8Y26UsQ,2012-07-15,nbxPB_Qm8CNq9_r7UjBnwQ,4,"It was a quick trip downtown from Mesa, I didnt like some of the people getting on the train but hey its public transport. My legs were also hurting from the seats on the short trip downtown I have RLS and man it hurt for days after. It was great for saving gas and if I worked by one I would take it daily. This was my first time so watch where you park by the pickup locations cause I got my car towed, $200 fine!!! I would take it downtown again but park in the right spot this time.",review,0Jlviq1YD76N-WK_GUeDMw,0,0,1 +_lanRtzQGRkbhd2b6pQleQ,2012-02-01,baR_k2IBejzPP_pLajuU-Q,5,"Papago Park is a great place to ride (bicycles, that is). The terrain can be as easy or as hard as you'd like-- just choose your trail!",review,kwMWGVz3IH0UH1sbHLHolQ,0,0,0 +ntN85eu27C04nwyPa8IHtw,2011-10-23,x2I-E7Duttm5AGqos6jlJA,5,"Ordered the famous ""Butter Burger"" medium rare. Forget lettuce, tomato, and pickle, eat this with cheese and maybe some ketchup to let that beef shine through. Delicious! Great diner atmosphere, got to sit at the counter. + +Happy to see it was Niman Ranch beef, a sustainable/organic livestock provider.",review,4kPVOgRPApsSKJM9rFoX_Q,1,0,0 +Re0Xw-AYkn6NK7QRk3kPEg,2009-02-18,vVaUMlzYJPc0pWV46XT8YA,3,"For such a small space, Stinkweeds definitely does a good job of packing as much variety as they can in their store. As far as record stores go, they've got a pretty decent collection in both CD's and vinyl. My only qualm with this place is that they tend to only carry newer stuff or the more popular titles of indie genres. If you're like me and like to peruse through older and hard-to-find collections, be sure to check out Tracks in Wax a few blocks down the street on Central. That being said, this is definitely a place you'll want to drop into. Their selection of concert/music video DVD's is pretty solid as is what their magazine stand has to offer. Sure, it's no Amoeba but it's the next best thing.",review,FxxYCRPcpd__yhRRmmtyMQ,0,0,0 +7YYD_agS3Kb2sAx9JPkQEw,2008-08-24,YW9VGLm1zkGmXb4V9vU4bA,4,"My husband and I visited the olive mill this morning. We decided to go there after finding reviews on here so Thankyou! It is kind of funny also since we live in Circle Cross Ranch which is just right up the road from QCOM. I have passed this building so many times and just tossed it up to another little local farm out here. First we sampled all the olives and the different oils and dipping sauces. My husband complained he thinks the products are overpriced but I thought they were reasonable since they are really good and don't taste anything like the stuff you get in the supermarkets. After selecting a few items, I bought the mesquite almond stuffed olives and lemon and blood orange olive oils. Blood orange is amazing I can't wait to try it on a salad. I also bought a plain virgin olive oil.The oil is so flavorful and their claim is it is pesticide free since they don't have a problem with some sort of fruit fly they normally have problems with in olives here because of our dry hot climate. We decided to grab a bite. This was the only problem, not for me but for my husband. I guess this is a perfect place for the girls to get together for lunch but if you have a man that has a pretty hearty appetite like mine then he may not quite be satisfied with what he receives.It was perfect for me. I ordered a paninni that had roasted squash, peppers, arugula, fennel garlic aoli and a parmesan balsamic sauce on it. It was very good. Came with a side of kettle style potato chips and some olives. He had a salad but truthfully it was not a very big salad especially with the salads that could serve 3 you mostly see these days. I guess it is true Americans have come to expect quantity.That is ok, I would definitely go back. I will just have to make sure I leave him at home next time and go with one of my gals instead",review,EnvG_kewvG5PqUqNSgs9Iw,2,4,1 +H7KzlC0-o1wIhlGg-Me5Ag,2011-07-04,1f8KYqNHZtg-Z4eH1tcUJQ,5,"My wife and I as well as several of our friends drive from Ahwatukee on a regular basis to dine at Flo's on Thompson Peak and Frank Lloyd Wright Blvd. 25 miles isn't too far for this food. We've been eating here since the 90's and have always been pleased. I discovered it when I worked in the area and used to stand in line for lunch, it was so busy. Our favorites: Lemon Pepper Chicken with extra lemon wedges and the Kung Pow although I can't think of anything I wouldn't order.",review,OnGKdONTxlNYyjX6KXhL0A,0,0,0 +djYFLq4Bkqpkd14-0IJfug,2011-08-09,vjBuwYn8j0aPhIwkWIgxHg,5,"""Yogurtland"" as I say it with a high-pitched tone in the end.. + +This is my ultimate favorite dessert!! I would give 10 stars if Yelp allows it! All my friends know that I am attached to this place! We started this craziness together with my better half when we tried it a few years back after a basketball game...and all I said after first walking in was, ""This is fun!!"" and we got hooked eversince!! That I collect their spoons, only used by me and the hubbie, and I now have 5 YGL cups full of spoons!! I am the ultimate Yogurtland addict!! heehee We go as often as 5 times a week that we already know the staff in this location. And we go that often that we even tried to abstain from it for Lent just to see if we can resist it!! haha Most of our friends also keep on asking to try other fro yo places to see if something will beat my YGL addiction..and so far nothing has won over it yet..=D +So, my favorite flavors are Taro, Pistachio and Toasted Coconut and the of course the seasonal flavors, Pumpkin Pie, Gingerbread..Oh I wanna go now just thinking about it! My favorite toppings are the yogurt chips, sugar cone, sunflower seeds, shredded coconut and graham!! =) Perfect blend of flavors! + +So if you haven't tried it yet, grab your favorite partner and enjoy some ""Yogurtland""...=)",review,fFFT99b1av5nhkxRfrZb2Q,1,1,1 +-tBiXT917wKlr6n9wSqViw,2011-01-06,16_yl1x4hfTRCXUkwunmfw,4,"Although I am limiting meat in my diet, I went to the Keg for a date. + +I had only been one other time for drinks with a couple of friends and it was nothing worth writing home about really. + +I think what I really loved this time was the salad. Yeah, I know, a steak house and I'm blown away by a salad!! It was the spinach salad with walnuts and cranberries. It was soooo good. + +Of course my little girly sized fillet was incredible too. + +Oh ... and the date ... yeah it was good too!! ;-P",review,uj79HTtyOdAdd_TaPcdxjA,1,1,1 +He9Dar4bk2vyeiPC7TkUgA,2010-05-28,MZ6dNnldpRECuezdgo19xw,4,"My husband and I lucked into one of the best dining experiences in a long time on a recent business trip to AZ. The hummous appetizer was exceptional, as was the ""what's in this steak?"" dish, tender filet wrapped in yukon-gold potatoes (how comforting is THAT?). Nice selection of wine by the glass. The only disappointment was a dessert referred to as a ""twist on Tiramisu,"" but which bore no resemblance to it at all, with toffee cookie dough ice cream. I'll go back next time in town, but try a different dessert.",review,cUHTvqCvUyUckIucoTl6Ng,0,0,0 +wl51t6lT7leiX64SlkOx6g,2011-07-24,TUPZLupO2RDJsJ91TYBpnQ,5,Sara (bartender) is the hottest chick in the world!!,review,I3xKqgX4XDiz72iUO_lN1Q,0,0,1 +pPQ92_OTXSvDh-4CO6wCFQ,2012-12-29,MWqYXZcjbXdUACgcx8zypw,3,"I wanted to add a review to the actual company's website, but I could not figure it out. I'm curious where all the testimonials came from. + +I have mixed feelings on my experience. In the end, I think I ended up with some beautiful windows, though. My salesperson was very engaging. I felt pretty confident in my decision to go with American Vision Windows after that first experience. There was some miscommunication on scheduling the measurement, but it worked itself out fairly quickly. I started to lose confidence when I was told a specific date that my windows would be in, but never heard anything from the company four days after that date. When I called them to find out where my windows were, I was told they had just received them and they could schedule my install in 2 weeks. Since I only had Saturday install available, that was understandable. The Friday before my install, they called to reschedule to the following weekend because the rainstorm (that just occurred that day) had put them behind two days. Again, I guess that was fairly understandable, but I felt like the peon that was the easiest to push off. + +Luckily the installers did show up the following Saturday on the earlier side of the provided time frame. I kind of don't know what to say about the install. There were two guys, one seemed to know what he was doing, the other I had less confidence in. The job took 4 hours to install 6 windows. During the entire transaction I was never told how long the install would take, so I'm not sure if that was normal or not. The two guys actually seemed to be fighting during the entire install. I believe the head guy was joking around with the other by basically telling him he sucked. I think the other guy was genuinely getting angrier and angrier. In all honesty, I was very uncomfortable being in my own house while the install was going on. I was a bit disappointed in the cleanup of the job. I ended up having to cleanup inside the window tracks and windowsills on the inside and brush off the sills on the outside. I don't feel I should have had to do that. Before they left, I was handed a survey to review the entire process (salesperson, overall experience, install). I think that is a horrible practice that needs to be changed. I didn't want to sit there writing out a review on all of the above while the installer is waiting for me, and then hand it right back to him. What it did cause me to do is overstate my review because I'm not going to give the installers 2 stars and hand the paper back to the person I just reviewed. + +I can't say I would recommend this company, but I feel the way customer service has been going, it's really a tossup on what you will get from any company. + +P.S. I forgot to mention my plants. I have recently spent a lot of my own time and money on landscaping my backyard so this stuck out to me big time. I understand when installing windows it's difficult to pay attention to the foliage below your feet, but I think some attempt to not trample all over the plants would be very much appreciated. For example, when washing the windows, I think an effort can be made not to stand directly on top of a plant and twist your foot back and forth. I'm still hoping I do not loose a couple of plants due to the trauma they endured.",review,0hJChgGIqzg5JQkwvcnLZw,0,0,0 +m4Vdae9cdx7bgr6bIjjbkw,2010-08-29,gelzhpXyxJFjPSxvT2QmHw,5,I love love this store!! Their reduced fat chicken salad and pasedena salads are to die for. The prepackaged frozen meals are also yummy! My daughter loves their yogurt and premade pasta meals. Their clif bars are 1/2 the price as supermarkets!! The employees are extremely nice and helpful. I would SO recommend this store to any and every one!!,review,ifBFUu7EIvjHq2_CK733Jg,0,1,0 +x3ws2L-TlI-JPcEQjjEC9g,2012-10-24,Gbn3HN3Im0EUIk34Ej8_Aw,5,"I rarely go to Indian restaurants. But this is a place I love to visit often. The food seems as if it was done with great interest. When u go there, order anything with rice. They cook it to perfection. I like their handi dishes a lot. + +If there is one thing I can suggest, it is that they should stop adding food coloring to some of their dishes. No need to guild this Lilly!",review,hdGOqtk3Z9GModnuDkaD2w,0,1,0 +qwmHm3s8p7J12AIY6Co8HQ,2012-12-11,D101kxTdPnpPPvRrov9G7w,5,"I am a vegetarian and there is a ton of great stuff at Pita Jungle. I just had the hummus trio, babaganoush, dolmas, mozzarella, and feta for appetizers tonight. Fantastic happy hour on the apps and delicious. Took BLACK BEAN BURGER to go. SOOOO good! Also, servers are super nice and prompt. YAY!",review,2EgPOQF3cwLpeCEHINLtmw,0,0,0 +LzreyGNkVTYw4JFuSxWstA,2012-01-08,23qzzpKWK0W6RtvW0ouFyQ,1,"All I have to say is what you see on the menu is not what you're gonna get. and if you're ok with cockroaches on the walls and floors, the this is the place to eat.",review,wZqx1ba606Ollf4KHGZbLw,0,0,0 +0xWF7PpTNl-awqg2YGxxFQ,2009-10-07,Cs8p3s0rZwbGulCxz7Dk5w,3,"So I recently went here with a friend of mine because they were craving IHOP, and I didn't care were we went to eat as long is it had food. + +I got one of there new healthy choice menu items the balsamic chicken and my friend got the club sandwich with a side salad and a side of pancakes...don't ask. + +The food was surprisingly really good and the service was excellent.",review,Ofxlhi_HKp7myFDpwg9aIA,0,0,0 +5BXNeSwzOy1nhU9PtCHvIw,2007-09-27,yYRpZj0-h-jEJvPaUbg3Lg,2,"Having lived in Mesa and delivered sub sandwiches to some of the tweekiest of tweakers, I don't feel any shame in admitting that whole area now resides in a dead zone for me. When I get that itch to go out and tear up the town, waste away a lazy afternoon, or enjoy a nice dinner, I think of places north, south and west of Tempe. It's like my brain has one of those little electric dog collar things attached to it, and when I start to stray too far east, it gives me a subliminal zap so I erase Mesa from the map in my mind. + +So naturally, Stray Cats is usually a place I visit when meeting up with others who have suggested it. + +Thing is, I always end up having a pretty good time when I go there. The drinks are priced reasonably and generally on the strong side, the bartenders are friendly and quick to serve. The music is pretty good, but I've never been here when a DJ's spinning. I used to like the fact that there was an air conditioned smoking room off to the side with plush couches and big televisions. The crowd is always diverse, friendly and easy to engage in slurred conversation. + +It just doesn't have any special oomph for me. I'd much rather frequent Hollywood Alley a couple miles south, where there's pool and live music. Unfortunately it's also on the black list of Mesa, so maybe I should find a way to reverse that programming. It's not just tweakers and mormans, it's not just tweakers and mormons, it's not just tweakers and mormons....",review,tlSSQwfHYJany7wPoTH46A,2,1,6 +znmvCpcwxYk_kYCqtUFt5Q,2010-06-22,hprmSGLl-TN91Khz5VkJ-A,4,"Great food and a fun atmosphere! service is a little slow, but the food is always delicious!",review,AjWGxRkg3Yl_q18Y7J-kjw,0,0,0 +6rijZ1qIjiq1Dgdy35iqxw,2012-01-28,ScQPLLRdcTPNMn7b3cZEvA,4,"I came, I saw, I conquered. + +Would get five stars but parking here is difficult. No signs on where to park if u can't get in the iddy bitty teeny weeny parking lot. Walked an extra mile just to get to the entrance on the echo side",review,KuPscbI0KPxudSMPZIcrCA,0,0,0 +ozWBsvbeM2LSPsRDsYKr1Q,2007-10-09,gEv9QauBbj3Gq9gTsFT_8A,4,"I'm so glad that there is at least one Asian grocery store in the valley. Unfortunately they seem to have a hard time keeping some of my favorite items in stock, I wonder if this is a result of some of the import restrictions/delays that have been a result of the recent quality issues with food and toys imported from China. + +I'm half Chinese and spent much of my youth being dragged around Chinatown near L.A. by my grandmother and 6 or 7 aunts. So the 99 Ranch Market brings back memories...some fond...some not quite so. But, at any rate, the prices are great and the selection is good and authentic (when it's in stock). The cashiers could use a little dosing from the friendly fairy, however. Then again, I don't remember many friendly cashiers or clerks at any of the stores I frequented as a kid...so I guess it just makes the experience all the more genuine for me. + +I would recommend going on a weekday, or, if you must go on the weekend, just avoid going around lunchtime. There's a dim sum restaurant in the same shopping center and the parking lot gets pretty jam packed with cars and pedestrians.",review,xUxxoTkQNWbKU44cCbtY4A,3,3,1 +9dopZKjYiKwPiw7kEQsEag,2011-06-30,DOtJ8fUQFNJaPdY48Q13Ig,2,"After vine expressions closed many of us have tried this place. I like new things and love different types of cuisine but this place doesn't hit the spot. It's nice to go somewhere and get a wine list by the glass where you can choose a wine you enjoy but of course you want to know the freakin vineyard. Not here. By the glass, the list just has varietals - shiraz, cab, etc. They change their list a lot but so do many places. The food - below average. Tried the stew that they said was great and famous. Bland. The sliders were like eating a salt lick, too salty. The servers are nice but they tend to ramble on and give you a 15 minute dissertation on the menu and why you shouldn't look at the last page because it's not available yet but they want you to know it's there. Finally, a few people mentioned the sucky chairs. Boy, they weren't kidding. They have many stools at tables with no back. Customers should be comfortable, this is not. The seats with backs have as much padding as a 2X4. Bottomline, uncomfortable. + +You want better options, here you go. The living room in Chandler, my wine cellar in Ahwatukee, postino in Arcadia, 5th and wine in Old Towne, kazimierz in Old Towne, and terroir wine pub in N Scottsdale. Been to all of them and all significantly better. Tons more on Yelp. + +Postino is supposedly opening where grainbelt used to be across from Joe's BBQ in downtown Gilbert so when that's there a local joint should be available.",review,f5CqKZlqK9Sox9z9wuooCQ,0,1,0 +93EFuYATJ0rgqO0uJLRYfw,2012-12-06,P06wRpk0NUf-5MTQaOZlvw,5,"I've always wanted a family friendly jeweler. Esp. if my at the time boyfriend was going to buy me an engagement ring. It means so much to me to have the true customer service when buying fine Jewelry, someone I can trust. And when I found this place one day while I was at CVS I knew I had found a Gem (pun intended)! Peggy really made me and my now finance feel like we were family. She helped him pick out my fabulous ring and answer every single one of his questions. I'm so proud to tell everyone where we got the ring from because I think everyone should know about this place! If your looking for great jewelry with a warm smile, head on over. They are so excited to help you!",review,7QFfFnxbUzS7j81XCftUkA,0,1,0 +4QtD359vkU7Jq8vP0uQEww,2011-07-08,03HOEIyOo4kLI3vd_Z01xA,4,"This place looks a lot worse than it is. The poorly shot photos of their food on their windows and walls do not do them any favors. I wound up eating here by chance when I was bringing back a group of teens to the JCC a few doors down--we had a few minutes for lunch before bringing the rest of the kids back to tucson. Most of the kids wound up in the mexican place next door, and seeing as we were pressed for time, I decided that Id get some thai food since I love thai. I asked the lady in there if I could get something very quickly to go, she said no problem. I asked if I should get the pad thai or the yellow curry, she said get the yellow curry. So I did. She asked me how hot (and knowing that I had a cold and wanted something kinda spicy, but also momentarily forgetting that I was in a thai restaurant) I told her ""make it pretty hot"". In retrospect, I might have used a bit more caution with that statement. I also ordered some crab puffs which i know is not authentic, but i was in the mood. The crab puffs turned out to be excellent. Just different enough from your standard chinese food arrangement and yet still delicious with their different style dipping sauce. The yellow curry was AMAZING, albeit a LITTLE bit spicier than I would have liked on a normal day...well, actually, it was a freakin inferno...but it felt good to eat it with my cold and all. Just be advised ;) Would definitely go back next time im in the area. My only complaints were that it took a little bit longer than I would have liked considering my situation, but had I been sitting down it would not have been a problem, and secondly the price was a little high I felt. It was after 3 (so a late lunch, i guess) and wound up having to pay the dinner prices. The two orders, without a drink came to about $15. Not terrible, but a little more than I would have liked to pay.",review,0mwGMnMvgvKd11do4u5J3Q,0,0,0 +CqhsIZ7TzCfJTrZqg5-gqQ,2011-04-10,yFL9d_wJu33YlAQAm725qA,4,"My husband and I went there for lunch today and because of vegegirly C.'s review about the deep fried pickles guess what we ordered??? OMG they were amazing! We ordered the cajun style and man oh man were they goooooood! We have never even heard of them but I am so glad we got them. So crispy and so hot! Mmmmm (and 1/2 priced)!!! + +We got greeted and seated quickly. I ordered the chicken brie sandwhich and my husband had the meatloaf sandwhich. I am not sure where the comment about small portions came from because they were good sized and we were both stuffed! + +The only change to the chicken brie would be to have the pears sliced thinner rather than having thick pears to bite through. Otherwise it was yummy. + +I also ordered the ""Arizona Iced Tea"" for the first time since they didn't have fresh mint to make my mojito. I was pleasantly surprised at how light and refreshing it was. + +We had the entertainment card which they didn't punch so we can use it again, and we will :)",review,aPv7PCJNMJSw20DR0959wg,0,1,0 +sv8tYgFzIRKHHERURumyVQ,2012-03-20,zfAr84vPKq0mnS5ZcfEN2A,4,One thing I like about this place...are the cacti! There are just everywhere! This is a great place to go camping in and to take lots of pictures of the scenery. The random people here are all very friendly and so are the staff from the Visitor Center. The place definitely looks different when you compare from summer and winter.,review,DrJnC62-eMRnFai6immsbQ,1,1,0 +RdOQN8LEzo5tB_pSIS-I5w,2012-06-02,CFPEFihBcAl09sSi0MSkHA,4,"Some say you get what you pay for (with an implication of regret) . But with ASMT, you get what you pay for and you actually walk out happy. An hour massage for $12.50? Tell me where else can you get such good deal?",review,-q0RFaCkmT6TFxgk0a9dPw,0,0,0 +R1RjCYfRZm9inTDQVVpUGQ,2009-01-07,g_jWG4y_rTAh4nByc4dFDA,5,"If you've never had or even heard of bingsoo you NEED to check this place out. I have two friends who were constantly bantering about bingsoo and this Fresco place. I was excited when I found out it was so close to my house. If you've never heard of it, this is how it goes down. It's a layer of shaved ice, then you have your choice of ice cream or FF frozen yogurt, your choice of fresh fruit off the menu (apples, strawberry, mango, banana kiwi and many others) and then your choice of ""sauce"" which is a fruit puree of either strawberry, kiwi or mango and honey. You mix it all together and there you have it. A somewhat healthy dessert! They even have a frequent bingsoo buyers card =) + +This place isn't just all about the bingsoo though. They have a menu of fresh sandwiches and fruit juices too!",review,4JapGtmN58pZYo1ClbV8qw,1,2,1 +YL_EiYALmGUd1lm5HZgL3w,2010-05-05,zRy7XORNSSZx7ieG3liPEw,3,"Overall this place isn't so bad for a quick mexican food place. It's not like eating at a restaurant or anything like that. The food portions are pretty great and sold at a fair price. I really liked their salsa and I felt it was nice and flavorful. I'd say this place is a small step up from Filbertos. + +The staff here, however, were really rude. They seemed to want to rush everyone around.",review,2ziJA4_AnTCAPIXzkq10nA,0,0,0 +k6Si433-EJrY4J7SZxsnjA,2012-07-09,8l0L53OVe6wu9EYUUpN16Q,5,"Went here last night when on our last night staying at the Hotel Valley Ho. We were able to walk there from the hotel and it was so cute. The wait staff were helpful and gracious. Once we saw how large the pizzas were, they accomodated us and split the toppings on each side of the pizza so we got what we wanted. I did think the olives were really salty, but that's that type of olive. We had delicious wine and the bruschetta sampler. Enjoy people!",review,fh1pPKi-r-FkWEGJiH7rfw,0,2,0 +_FXql6eVhbM923RdCi94SA,2009-12-08,tRpCw6R3dXwzf9q2Q0Bhyg,5,"I have to tell you.... + +I had their Jerk Chicken Plate the other night, and it was yuuuuummmmmyyy! You gotta try it!",review,_uL7OiQSfNsCd60DrAf7qQ,1,1,1 +b9dv7Q0A8XcJ44zzTDJeYw,2011-11-14,Ob6sPSHrANTDRcKXiMkqzA,5,"I love this place the more I go to it! The service is completely out of the ordinary for fast food and now they have something called, Mexican Gumbo. Holy schneikies it's good!!! Can't beat the prices either! If I had a choice of this place over Chipotle, I would choose Qdoba ANY day!!!",review,TihCCoPTBI-mlkvdbAaEog,0,0,0 +5fWOxo5CxpHoaCJD97QE4g,2012-09-10,HFUWeNu4E2uUvNLrble3PA,5,"Quick, friendly, awesome.",review,xdaRYQvc8W4QXk4TZklJfw,0,0,0 +OSL98Keoc2FSNx4a3ge5Uw,2010-04-02,EnDxxPW6VqYztPKPS_jP6g,2,"Despite being a red-blooded American male, I find this place a bit below average. Yes, the waitress wander around in shorts that would make a cheerleader blush--but rail thin bottle blondes don't do anything for me or the food itself. + +I've eaten here twice: the first time, I ordered huevos rancheros and coffee; today, I had the protein pancakes. In both cases, the service was mixed and the food was bland. My food came out quickly both times, but my server disappeared each time as well. Today, I sat for 15 minutes until I was able to get the attention of a manger who located my server for me. + +The food itself is not bad, but nothing to cheer about. The protein pancakes were enormous and dense, but not nearly as flavorful as one expects from an item filled with almonds, blueberries, and cinnamon. As others have noted, they'll ding you on side orders--sour cream, tomatoes, guacamole, and the like will all cost you a pretty penny for diner-quality stuff. + +Finally, it doesn't affect the food, but the decor is garish and plain. Remember that first apartment you got after college with the white walls and tan carpet? This is basically the US Egg aesthetic.",review,j_WJjiBbkiU5qlFDkU0SYg,0,0,0 +JuQncODLNOhfSaa-5okpQQ,2011-03-21,CcP22KGHAQDtDDxjpEzY1Q,3,"Fair pricing and no upselling. These guys are good--but be warned, it's as busy as an angry beehive on Monday mornings!",review,XpSZrY_Ym8GGx7SNEd0q9g,0,2,0 +EHi-lebXGWjSktl4WvSoow,2012-10-09,KiMdj_wHI_zNC2yTRzr4TA,4,"Wonderful drink options, the food was pretty great as well",review,ofat_K13gHzuVXMcWiky3A,0,0,0 +nRO4tRwimU12hg7Cnz__iA,2012-10-23,JIHEatfFn_85AbVZ14uz4Q,5,"we only came across this place because an acquaintance recommended it to us. I've lived up the street from this place for years and never knew it existed, it's quite the hole in the wall and easy to pass by. + +The place was super clean and the owners did a wonderful job serving everyone in a timely manner and being super attentive. We felt so taken care of!! :) + +I thought the prices were a little on the high side but when they brought out our meal all I could say was ""WHOAH!"". The portion sizes were CRAZY awesome and my hubby and I could have really split one entree and still had some leftover. + +The food was fresh, the meat tender, the atmosphere pleasantly divine! 2 trips now and I'm such a fan! :D",review,zRnoNCqk0DG3iOQxtpVXug,0,1,0 +zfY68t7nVihCwiCsCgM6cw,2010-08-02,7alZqpI8unRw6iXGAedn-Q,5,"We love The Olive Tree! We call it 'the grill' We eat there at least once a week - my littlest one has swim lessons right next door. Both my picky eaters love eating there! We love the chicken kabobs and the chicken shwarma(sp?). Family ran, great food we love it!",review,G-xuPbbcK5w27ZkSVtbtLg,1,2,0 +r4AG1WXCRWkZKQctrcy9FA,2011-03-28,ucmeP6z1XbPdny5deBCHwQ,4,"I came here on a strong recommendation from a friend. After reading the reviews, I was anxious to try it out. I went on a Saturday night, half expecting it to be really busy. We were seated in about five minutes or less. Not busy on a Saturday night...made me kind of worried. + +The menu is sparse, it made ordering really easy. Service was fairly slow considering the small amount of people in the restaurant. Refills were slow, service was kind of inattentive but not rude. Our pizza came out in about 15-20 mins. We ordered a white with garlic with pepperoni and sausage. The pizza looked and smelled delicious, but that's where it all went bad. + +First off, the pizza crust was really soggy because of all the grease under the pizza. I have never ate such a greasy pizza in my life. i had to drain every single slice, it literally created a puddle on my plate. There was a significant lack of sauce on my pizza, some parts of my crust were bare, not even a hint of red on them. The pepperoni and the sausage tasted great and there was enough toppings on the pizza to justify the $2 price tag. + +The non soggy areas of crust were great, and the cheese was amazing. We ended up taking half the pizza home, the slices were filling. The pizza was better the next day, after the box absorbed most of the grease, after throwing away the pizza box, the bottom of the box was saturated in grease. I'm not sure if grease makes a quality pizza, but in this case it just made a soggy crust. + +**Update** Under intense pressure I came back here and tried a white with chicken, they seriously redeemed themselves. I spoke to the manager and he insisted my last time was a fluke and should have been corrected. I would come back on occasion.",review,lZyVdWZcUd0Px9oJ-md3Fw,0,2,0 +X5QTGpPfqXFtmtizsGAksw,2009-02-06,ImVihtUQfDKM8qobGM2VLQ,1,"Mucho Gusto es mucho mierda. + +Let me say first, that the place is cute, the staff is friendly, and the salsa is good. There. I'm not being a total jerk. + +The food, however, left much to be desired. I couldn't find much to like about my chicken tacos- they were ok, but the meat didn't have much flavor, there was no cheese, and they were pretty stingy with the guacamole and pico. What really got me was that they didn't come with rice and beans. Instead, I got a lovely pile of cheap bagged romaine coated in some sort of caesar-ish dressing. Sure, there were a few cubes of cheese and a tomato slice (A slice!) on top, but come on. $14 for a couple of naked tacos and a pile of romaine? For that much, they could have at least picked the white core parts of the lettuce out of my salad. Or, I dunno, sprinkled a little cheese on the tacos? + +The story was much the same with the fish tacos, only the salad was different. The enchiladas seemed to be a hit, and those are served with rice and beans. the vegan at the table ordered a side of rice and beans for her meal, and they aren't kidding about it being a side. I think my cat's food bowl is bigger. + +They charge $1 per bowl if you want more chips. I know $1 isn't a big deal, but it's just the principle. I already felt ripped off from the entree, so the extra charge for the chips just made it worse. + +Needless to say, I won't be going back. There are far better choices closer to home.",review,N7lSh49zQ13sG3Jpa9E6cw,1,2,1 +W0eocyGliMbg8NScqERaiA,2012-03-25,jqfNhsccqqG7SDaLIJ4-fw,3,"This place was kinda cool. We first got there around 9:30 on a saturday night. The place was dead... but that is to be expected for a ""night club"". The drinks are expensive, but tasty. The decor is AMAZING. The couches are comfy and there is just enough seating space without it overtaking the joint. We ended up leaving after 1 drink and went back a few hours later and the place was busy busy busy. They had great music playing and the dance floor was full. One downfall was, I hate when you go to a bar and the bathroom has an attendant that you need to tip. They are holding everything that you need... soap and paper towels. I feel that I shouldnt feel forced to tip someone because I wanted to wash my hands after I used the bathroom. Overall the place was decent. I am new in town and I am sure that there are better places to have a drink. I will most likely go back (in the future), just not in a rush to.",review,9IKE3JVdWasnvYkjclqXYw,0,0,0 +7_zL7NX_rDFwhbLp98PwZg,2010-01-03,MNFvGY1zUVGQlImzqvMFQw,1,"10:30pm on a Saturday night. My friend and I try our second attempt at sushi for the night (see my review of Pearl for the first). Place is hopping. We take a seat at the sushi bar. + +The Waitress: ""Are you girls going to be ordering sushi?"" +Me: I have a sushi menu in my hand, ""yes."" +Waitress: ""Would you mind putting it in soon because they want to go home too."" +Me: What the fuck, bitch. ""Uh, ok"" + +Dear Ra Waitress, + +I'm sorry if I kept you or any other employess, especially since I finished eating my roll before your kitchen even closed. It was completely ok to rush me, even though I had no intention of staying all fucking night and even though plenty of new sushi orders came after mine. I was hardly the last customer in there. There were people all around me ordering sushi, so I'm still unclear as to why you needed to rush me. If you were in such a hurry- why did it take you longer to bring and process my bill than it did for me to eat your food? Maybe it was because you don't know how to count, since you gave the wrong amount of change and I ended up having to tell you the correct amount since you couldn't count it on the spot. I like Ra for the atmosphere, something you completely ruined. Thanks for that. + +Sincerely, +Morgan",review,rjlb-7-JcmM6fR64ZpyTug,4,9,10 +eTbtfgUtfewdncgVf2CbWw,2010-09-13,ohRvx1j5aT-wjelz9NvbdQ,5,"Of course, they are no La Madeliene, but if you are looking for some good croissants, this is the place to be. I love, love, love their croissants. But which bakery's croissants do I not love? hmm... But I do love theirs. I have had the almond croissant, the almond and chocolate croissant and finally today when we went there, I had the chocolate croissant. It was just freaking amazing. That's all I can say. (They run out of the chocolate almond croissants pretty quickly so go early if you want some) + +I have also had lunch here before, some Mediterranean sandwich stuff. The portion is very small compared to the price. Their macaroons look crazy and funky. Have not tried them yet but plan on doing so next time. I almost gave them 4 stars because their hours they are open are very weird. But its okay, I will compromise Essence Bakery. + +They only use butter imported from Normandy in their Croissants. Wow.",review,zhVOlwBuEgdGlHjwgVf3Jg,5,7,4 +Lc-ZYyI83FpEe-8u_LSODQ,2010-01-15,ut_blvUWCj1COUK4MzC5Fg,5,"Went early to North for the New Year's eve special menu. 3rd time dining here. They did not have to have great service or food on a yearly event, but as with the previous meals, it was outstanding. Hubby had the misto fritto, they always do the crisp calamari perfect. Enough just to make a special trip for it. I had the beef carpaccio, buttery and flavorful. The apple cider pork tenderloin was tender, moist and it was a huge portion. My hubby was stuffed but did not stop eating until it was all gone. Oink. I had the scallops. Always a favorite of mine. They usually have it on the menu and often in a variation as a special. We both had the hazelnut chocolate cake. Sinfully rich. We were both too full to eat but a bite and finished at home for the New Year's countdown. +We really enjoy our dining at North and have been very fortunate at several other Fox restaurants.",review,35_ZCjAbIHr_YyvVipmkLw,0,0,0 +qG3eRlKLXbnWc1unu-0Yjg,2012-12-03,P4OKoJr3rVaQTJaolUaiIw,3,"They don't have the lunch specials on the menu or tell you about them if you don't ask, so make sure to ask. The sandwiches don't come with fries and their fries are over priced for not being very good. The pulled pork sandwich is good and so is the sauce. Also, expect a long wait especially if people are ahead of you.",review,2a1wamxrn76LViwYCGH_rw,0,0,0 +QkLraKf901i0MjluEuFFrw,2011-02-18,e3-r33taKS_rnD0_muo2Uw,4,"I've practiced yoga for years at At One Yoga and initially wasn't happy about their merger with LifePower. But now, after several months of going to LifePower, I think it's pretty nice. + +The facility is big and clean and very well kept. If you want to use the entire facility (the weights and machines) you have to sign up for a monthly contract. However, if you just want to take the yoga classes, you can buy them packages of ten classes. The ten classes can be used over any length of time. I like that because if I'm out of town or busy, my class package doesn't expire. I do wish they offered more class packages, like in groups of 25 or 50 classes, the the way At One Yoga used to do. Because typically the more classes you buy, the bigger the discount. + +The great majority of the yoga instructors from At One Yoga have come over to teach at LifePower. I've taken yoga classes in several places throughout the US and I think these yoga teachers are among the best in the country.",review,1gY1N3pkxTzh7kK4BxANyw,0,2,0 +pwpl-rxwNRQdgqFz_-qMPg,2009-07-01,vHWtx0-PM4R-dNDY7oK58A,4,"Tried this place for weekday lunch. We arrived before noon and good thing since they have a big lunch crowd. (not to worry, plenty of parking in back and seating outside w/ misters) Kudos to Aric and Monica for stopping by our table several times to make sure service was great or they fixed it. We started with the Bruchetta, which was piled high. The we had the Smokey (arugula & smoked prosciutto) and the Marg pizzas. Almost had the Pabst on tap, but went for the Dunkel since its harder to find. As if the food wasn't enough, the decor and ambiance was over the top. The herb garden as you walk in and the bar with the salon chairs was a nice touch. + +Can't wait to go back.",review,c4hrMkMwuXL1yLGHreXh8Q,1,0,0 +yVQiGdxmnrkJDyQXv2maNA,2010-01-30,JTQOJSfbC9fkuwkFALlYSw,5,"I was in Vietnam last May, and spent every summer in Westminster CA growing up, so to qualify my 5 stars, ""Woohoo! As good as it gets!"" I say to what's available of what I've seen in PHX area. With that said, I've had the Bun Bo Hue, Pho Tai, Com Tam Dac Biet, Bun bi cha gio, and agree with what everyone said about cleanliness, freshness of condiments, integrity of broth ( lack of oiliness ), and general flavor. The only thing that didn't rock my world was the bahn mi sandwiches- can't vouch for the assorted outsourced items in the chilled section either. Besides that, If you want Viet food this is your place for the PHX metro area.",review,YbHL_lmvARxf0rz0WlVQPQ,4,3,1 +pNJhovUsGAZ4XqG3lCU-5g,2011-08-01,XECV1AOPJ7Y90eTj3MRiJw,5,Staff was quick and efficient. Food was delicious.,review,X7aZqb1tjXhrJJjr12xY8g,0,0,0 +rVUEZpHQfWI_3kt0lBwaxQ,2011-09-16,mMXJvXY3Ty8BHqsHR2bP9A,4,"I had dinner here tonight, and loved the entire experience! The patio was roomy, our server was quick, and the food was delicious! I ordered the Thai Cobb salad and really enjoyed the unique, healthy flavor! My dinner was priced fairly and I got a lot of food. I will be going back",review,jfdTS_6PVt5hox1BGnpI0g,0,0,0 +IM-9thHqQbBK5tX5MfTzBQ,2011-12-09,xdAZPyB30_ifq2rEpg9m5w,4,"This is not very far from my home, but for some strange reason, I have never visited there. Maybe because we don't have New York Deli's in Spokane, and I'm not familiar with the idea. + +The other day, I agreed to meet my son and little granddaughter there for coffee and a bagel, and found that it is much more than just a bagel stop. They actually have a restaurant with quite an extensive menu. I had breakfast - the choices were very diverse - including skillets, various pancakes, bagels (of course), french toast, omelets, and a number of other items. The servings were large, and the service very prompt and friendly. Most importantly, the prices were more than reasonable. + +The only thing that I disliked, was that they did not have hash browns. They do have potatoes as an option with the meals, but you cannot actually classify them as hash browns. They are good - but not quite a replacement for hash browns and gravy. + +I actually like it so much, that I stopped and had breakfast two days later on the way to the golf course. Again, great breakfast at very reasonable prices. Although I usually don't eat lunch, I am going to have to make an effort to stop in and try their lunch menu. And their deli counter, and all the different varieties of bagels.",review,w_hcSjqLeSZQL9Rx1UP-Tw,2,1,1 +tr4L9VWmPGZtdBD-L2Pofw,2011-06-27,yG3KN4kXO5uGQ9XJP-TH_g,5,"I tired they chicken smash burger.... WOOHOO!!! LOVE IT! Crispy chicken (not too think, not too thick) but perfectly crispy. I ordered the build your own: Egg bun, crispy chicken, mayo, and swiss cheese. HELLO MAMA! The smash fries were good. The staff is always friendly.",review,_PzSNcfrCjeBxSLXRoMmgQ,1,1,1 +eHcQzL5eebqvKrLW5q283w,2012-03-29,rk9YoJ4vA73O0YT9Z-0CUg,4,"I'm basically a chain-hater (well, I dont hate them, but I try to avoid them). +Capriottis is an exception. +This delicious sandwich shop has some of the best sandwiches I've had for the type of establishment that it is: a chain sandwich shop. +The Bobbie, which is made of freshly roasted turkey (I've seen the big hunks that didn't get chopped), cranberry sauce, stuffing and a hint of mayo is fabulous! +The capastrami is a delightful combination of hot pastrami, swiss cheese, russian dressing and cole slaw, and wonderful in taste. +You can choose the size of sandwich you want, as well! +Capriotti's also has salads, and a host of other sandwhich selections, which are consistently delicious and fresh. +Their personnel are very friendly, the prices are very reasonable, and it can be the best quick sandwich you've ever had...you just have to go!",review,DfJ8B8T1fgNA6_ZT-aeUlQ,0,0,0 +wyzV5-IKq9lfN8Upaf7KSg,2009-08-18,2chUwhEHn3ccWf8Ty3OZ3A,2,"Busy right after school which is to be expected...Wasn't very clean which is disappointing, especially for an ice cream parlor. We stopped in to try the new soft serve ice cream with sprinkles that turn the ice cream a new color. Don't know if the boy behind the counter was stingy or what, but the kids got only a couple of sprinkles that didn't even cover the ice cream which was disappointing considering they charge for them. All in all wouldn't visit this location again. We prefer the one closer to home :)",review,lkV_WCqCbpA5gUIHD6wtOw,0,1,0 +rwQIBAM_kHtVl1Ks8Flexw,2010-12-09,ZxYgJkJSglJCkKPSX69oIg,1,"My significant other had a $25 off coupon from Restaurant.com LOL. That could sum up the whole trip. I haven't been to many restaurants that participate with restaurant.com that are decent at all. I mean, I wasn't expecting much coming into this place, I shouldn't have expected anything here. + +I was in the mood for some red meat, and sushi places do actually have decent dishes like teriyaki chicken and stuff like that sometimes. So, I didn't mind checking this place out since I do like a little bit of sushi on the side. The boolgogee, plain, simply plain. There was a salad with the boolgogee, but it too was plain. There wasn't nearly enough meat to warrant a price tag of $8, because the salad and rice probably didn't cost more than $0.50 to make. + +Oh, the sushi? All of the sushi we happened to get were either super plain or super spicy. By spicy, I mean that there were just too many tastes going on at the same time and it was too overwhelming. I tried a few bites of the 3-4 different rolls we got. After I tried each roll I thought that I liked it but that the taste was too overwhelming for me to want to try another bite. We paid $18 for the food even after the coupon, and I honestly think that even at the price it might be a bit of a rip off considering you can get cheaper, higher quality sushi at Teharu. + +This place is a rip-off for sushi in my opinion. Its not good enough to warrant the hefty price tag. The sad part is that the interior is very well done, if the food was actually good this place would be extremely interesting.",review,LHQ2fuC2RDS-Md_dN2O1IQ,0,3,0 +I20sRbcEK8Ib1YFQFMoERg,2012-08-28,16dzcXqMp8AmR3D6uaEU8A,5,"I stop here every Monday night and negate two hours of spinning and yoga by indulging in Mexican comfort food. My wife swears by the carne asado tacos; the cheese enchiladas ring my bell. Although I phone in my order, the parking lot is always an adventure. However, the one night a young Hispanic girl celebrating her birthday in the restaurant's limited outdoor sitting area insisted I come over for a glass of milk and slice of her cake negated all the encounters with strange transients.",review,8WbBr6MRkW8dE9KUYA1yeA,1,0,0 +iPxUYvC8tgt5rBr-IZlSeg,2011-04-29,pqD7t_YwRrVcbXcEKkicMw,4,Great fresh food Great people Great price... support your local businesses!!!,review,ZDZszqkVo3eowunOhWnktA,0,0,0 +9HwUkbKAv7dO3MGlkkJJSg,2010-03-24,OVAWkPro1lbX9IWa7wQ7xw,4,"We had the luxury of eating here over the past weekend and what a treat. I had the 8 oz. filet (with the blue cheese on top) and my wife had the 6 oz. Both excellent! Side dishes (starch/veggie) were solid! We ordered the house wine (recommended) and also cheaper by the glass than other featured items. + +Also, I am thrilled to see some of the newer restaurants coming to the area. Having lived in Carefree for almost 15 years...seeing it start to boom in addition to offering restaurants with flavor instead of simply Western decor really is nice. + +Waiter was extremely informative. I even joked that he could of probably been a voice over in some animated movie or tv commercial. + + Anyhow, thanks for a great night out. We plan on coming back next time we visit...can't wait to try the seafood.",review,MoyMjh4LsrfyP92KUYhvfA,0,2,0 +29hR24tcAM3JZaXfA5xCxQ,2011-02-26,s6bb_CPHJWJu2Cb6QLehPg,4,"I've only been to the bar here. They make amazing mojitos with an array of different fruits. I told the bartender to surprise me when I ordered my drink, and it was amazing. She put a mixture of fruit along with the mint and it was perfectly mixed. I also had their spicy shrimp appetizer which I didn't really care for. So many other places make a similar dish, but much better. They also serve really good rolls with butter that come out nice and warm. The texture of the rolls are a little unexpected. I think they use tapioca flour as their base. I will definitely be back to enjoy their main dining cuisine.",review,9yX1qVa2PJtd-yx9M5xuFg,0,0,0 +sNuyncpQdcvfEpfZS-3Yew,2009-12-08,ERsJvSA7P4Qf_xMNJBLk9w,5,"Pei Wei's has nothing on the fabulous food at TOTTS The menu is awesome -- try anything!! The owner, Young, is such a nice man and will always help you understand the menu or make recommendations. In fact, one time we told him we wished a certain dish was spicier (we really like hotttt food), and he told us to just ask next time we were in and they would make it spicier. Everything on the menu is fabulous, but some of my favorites are: + +Sweet and Pungent Chicken -- all time favorite +Bourban Chicken +Twins Pork",review,6R8hguttwOdf2sZcBXmfSg,2,2,1 +prVcY4xSK58PhmGm5iHu-A,2012-01-22,lXll-11JHE4VnzX1CxxLwQ,2,Order was supposed to be ready 20 min ago...yet here I am still waiting...not even busy!,review,hkXViVLvkR9-3QtTsWfTSQ,0,0,2 +9OPheVf5o8sRcRHxJDl4-A,2010-11-07,JsM3I3WFvOF1mpwSQBm8QA,4,"My husband and I had our weekly date night. Mamma needed to get her drink! We decided to venture back to Phoenix since there are so many new places we wanted to try. Even though it was fairly empty, this place looks like it gets busy later at night. I loved my Lectric Lemonade, great way to start the night. I loved the decor, and the setting above a Starbucks. Very hip. The only thing I would suggest to the owners is to reprint their Happy Hour cards, it said HH goes from Mon- Sat. Bartender said is only Mon-Fri. I was not going to let that spoil my night and I really liked the place. I will be back!",review,8p4at4zdzCpueAmSBaorZA,0,2,0 +TehSM5JrMRikSnjnnfulbw,2012-07-23,jCvIcxsakTUuciV8Ud1Dgg,4,"Yelp search for vegan food led me and my mom here nice little place on a beautiful golf course. Friendly, knowledgable staff made my inner server glow when they knew which plate went where. Quite a few vegan dishes, delicious local wines. I really dug that they took a lot of local ingredients and added a nice flair to their menu. +Glad I came!",review,OrjLY6sgLphGcI9Mq7rDag,0,0,0 +maB4VHseFUY2TmPtAQnB9Q,2011-09-18,0xZVM5vcOuI5C_84WV_GyA,3,"Same Majerle's menu as the other locations. Decent food (especially wings), but high prices for both food and drink. Good service -- even overattentive on my last visit. Great setup for watching football games.",review,oDnAAifb_2zj3Cekc5Kbeg,0,0,0 +WS1z1OAR0tRl4FsjdTGUFQ,2010-07-12,fD2_M3N0Ojx7d1LZ4lNSMA,5,"As far as I know, I'm the only person in this town that has a dish named after them. I could be wrong, but I'm pretty sure I'm right. I mean, I'm always right. + +By now, if you read my reviews, you know that I am vegan and I don't eat gluten. This makes dining out quite an issue at times, especially for breakfast/brunch. + +I really wanted to hit up The Vig Uptown for brunch because I like it as a Happy Hour spot, the space is incredible, it is within a bike ride from my house, and I love the Original Vig, but alas, there was nothing on the menu to accommodate me. I gently mentioned in person and a few times on FaceBook that having some sort of tofu scrambler would really improve their menu. + +They listened. +They created. +They named. (after me!!!) + +We stopped by for brunch this past Sunday for the dishes debut, and got a personal hello from Tucker. He was excited because they had already sold TEN AMber Scramblers that morning and it isn't even officially on the menu yet! I'm already a star! + +So, whats the verdict on the AMber Scrambler? Amazing. Seriously. The thing that really sets this apart from other scrambler dishes is sun dried tomatoes. They bring such a delicious flavor! It certainly doesn't hurt that it comes with their signature guac and a side of pico. + +I'll be here every weekend for the delicious dish and the $5 fresh squeezed mimosas! If you know whats good for you, you will too.",review,MWt24-6bfv_OHLKhwMQ0Tw,32,30,20 +fF6m3qsD5blnwuZRuYhzWg,2011-05-31,YM5FYvVG2UyhcZx5ZZ9cyw,1,"I have been here a few times over the last 4 years and really liked it. It was horrible on Saturday night (5/28). I ordered the enchiladas with chicken. When it arrived there were 3 tiny enchiladas with an ounce of cheese inside the soggy tortillas and the ""with"" chicken part apparently meant a few chunks of chicken would be tossed on top. I was so disappointed, but starving so I ate it. The guacamole was really disappointing too. I don't think we will go back again.",review,TRl5jiNFI2m0wfH6CqO3_A,0,0,0 +8lHJm7hAlfsUNbVb3YaSMA,2012-06-26,w-md1oI--bNnOwaBuroqXg,3,"In here for a sec but everyone seemed to be having a good time! Live D.j. and enough room to be who u wanta be on the dance floor... there was poker going on in the corner and with a nice sized crowd. I liked the bartender chick, and she was fast for being the only bartender in there, and very nice.",review,a89BrWkaBblvdBGdFy1YUg,0,0,0 +cjFDprdEXbDDdraONMy5Pg,2011-09-25,ZqW2Tq3o9HyvJPhsPHJctw,1,"NO. Don't go. Don't do it. This was my first visit and it was on a whim because we drive by it often. + +One other reviewer here made a wise statement - go the grocery store and buy frozen fish. I promise it will be better than this.",review,gUXfVNgnNF9WU73T-d-FKQ,1,3,2 +ikuXlYpFsaEs2xlvlopxQw,2012-06-08,oQiJM681Ar4ofjeumMiCIQ,3,"Friday night after a long workweek seemed to be a good time to treat ourselves to a new cuisine, so my friend and fellow yelper John M. and I decided to check out this Uzbek restaurant. The interior would be mostly generic in appearance were it not for the somewhat ornate Middle-Eastern curtains, and a TV screen playing Uzbek and Russian music videos added to the ambiance. Large pictures of the main dishes in the counter area show you what they offer even before you are seated and handed a menu. For starters, we ordered Uzbek salad - tomatoes, cucumbers and sweet white onions lightly drizzled with a dill vinaigrette - and blinchik, which are crepes with a flavorful meat and onion stuffing; beware, the blinchik are rather filling by themselves. We also ordered palov and lamb kebabs. The palov was a dish of tasty seasoned rice with carrots and meat, and was quite a good choice. The lamb kebabs were juicy and flavorful, though the rice that came with it was on the dry side. A small basket of warm pita bread rounded up the meal. In all, it was a good meal, not great, but definitely satisfying. And I do hope to try the soup dishes next time.",review,m7vtKWpZ9wdEQ95wJxrMrg,2,2,1 +yC3ydbHAJTZ22FZp4LynFg,2011-10-08,6A4tIsY9quLK9sQteYlO6A,2,"This is a tough one. It's probably the best Filipino restaurant in the Phoenix area. But that's not saying much, because the few there are here are really not good. Compare Jeepney Bistro to one of the places in Filipino Town (Los Angeles), and they get blown away. + +And, for the record, my wife is a Filipina. And she cooks MUCH better than the chef here. No contest. A lot less grease/fat/oil, that's for sure!! + +Also, their portions are a bit small. Bigger than a few other places I could name, but still small. + +If you really want some Filipino food, and you don't know my wife to beg some from her, this is probably your best option without driving to LA. But don't form your opinion of Filipino food based on this place. Go to LA and try Bahay Kubo Natin, or some others, and you'll get a much better idea of what the cuisine is about!",review,Mb0psF4WQF7gZSuZafVr-g,0,1,0 +r2S4arkHyRcUroRhggMIoA,2011-08-18,jMyVC7PenC0ofcN4EH_8xg,2,Have tried this place a few times now we sometimes order it for everyone at work. My impression is that its a step up from Taco Bell.,review,8LAf67lQTjtsS98E55MYrg,0,1,1 +zruUQvFySeXyEd7_rQixBg,2011-07-09,7w7GhplenAVDnG94uBl5Dg,2,"The ""Protein Pancakes"" are always a treat, but the ""California Eggs Benedict"" was just awful today. The biggest disappointment were the hash browns though. They tasted like shredded cardboard. I am tired of going to a restaurant 20 to 30 times and getting such inconsistent results. + +Shame on you US Egg!",review,XHNfuQjWz0A6wImE9NKNNA,1,1,1 +MhkZLdUFaHt5SDcQcqOWQg,2010-05-12,OXMwfR9q3WcKyMbL4BA4Xw,1,"If you like sushi, go somewhere else. I was extremely disappointed in the quality of both the service and the food. + +I decided to take my family here because the other reviews seemed good; however, either my experience was an anomaly or the other Phoenix yelpers and I have stark differences in taste. + +The staff had great smiles, yet lacked follow through. We had to ask for water and extra ginger twice. The sushi rolls were the flimsiest I have ever seen! Although poor in quality, they were high in price for what they serve. I'm not sure about the names of some of their rolls...one was named ""Climax."" Gross and just distasteful. + +The decor and ambiance leave you wanting. They have three different wallpapers hanging and the music is overwhelming. + +Even though this is the only sushi bar in Surprise, I will gladly drive to Peoria or Scottsdale the next time I have a craving for sushi.",review,LP0bl3GKToABt3lnpSvA2w,0,2,0 +9Qt1pt0pk2VWz0chdGk-jw,2012-09-19,TivhzL_T8GSBQJteMPyfnw,4,"Good choice for dim sum. Prompt efficient service, good food and reasonable prices.",review,pQ6ij6cOBRB3yJGHbVZHUQ,0,0,0 +Hdi7jkB7pHiM1nyPHcqSdw,2008-08-28,ZeIzJJMKRXiDEq-7bnCFQA,2,"I cannot stand this mall. They have some really awesome stores but the people who work in them are obnoxious. Most of the people walking around are snooty as can be, and everything is overpriced. + +The food court has some good selection, but is always super crowded and you can rarely find anywhere to sit. + +Parking is awful.",review,MWt24-6bfv_OHLKhwMQ0Tw,2,2,0 +bAkVxrXzYO3772VF6o0_cA,2010-10-13,Hmwvw4vdgKjOLca1s0Ajnw,4,"In the world of Mongolian BBQ near my work, there are 2 contenders: Stir Fry Paradise and AJ's Mongolian (formerly and possibly partially still YC's...). I prefer Stir Fry Paradise because it has never been incredibly packed, and their meat resembles meat and not frozen tubes of meat shavings. The small ""bonus"" buffet offers more food if you aren't crippled by all the food you crammed into your bowl. I like the cream cheese wonton triangles, they rock the body that rocks the party. + +Yeah, they are a little pricier if you tack on a soda. Just drink water and then tweet to the world how progressive and off the grid you are by not being a ""soda drinker"". I haven't quite gotten my ""sauce mix"" down yet, but that will come in time. That's the beauty of these places, if your food is bland then the only person you have to blame is yourself and your lack of sauce mixing artistry.",review,5E193w76Qlhoi1gkyakW2A,2,1,2 +nRO4tRwimU12hg7Cnz__iA,2012-07-19,-mEYVhqc0ixr7mQOsLg1CA,4,"Great meal all-around. Was hoping for an authentic experience...and that is what we received from start to finish. Really enjoyed the grilled lamb and chicken, with garlic sauce on the side, and a Turkish coffee to finish. + +Service was attentive and friendly. The staff was clearly proud of their food/restaurant, as they should be... + +Highly recommend!",review,IfZShpNnoVXVGQXVQ3uDEg,0,0,0 +y75baZnoI51J8WS7NK9FHQ,2012-03-13,c3-fAE-qWjgVNmjk29Vckg,3,"After reading multiple Yelp reviews on this business, I decided to come here for the greatest hits: Pizza muffins, Calzones and Antipasto salad. + +I thought the pizza muffins were interesting and a great alternative to bread sticks or garlic bread. They were loaded with TONS of sausage and ham and came with 2 different dipping sauces. Although a little greasy and re-heated, I appreciated the novelty factor. + +On to the entrees, the small Antipasto salad (5.99) was absolutely filling for a one person meal. I didn't find it any different from any Antipasto salad I have tried before, but I think people love it for the dressing - which had flavor but A LOT of oil (more than half of the total dressing). The ingredients were fresh but there is nothing out of this world about iceberg lettuce and dry mozzarella. + +The calzone was larger than a newborn baby and hotter than Phoenix in the summertime. Although the corners are mostly (if not all) bread the taste was very good and overloaded with tasty insides. The spinach ham combo my friend ordered was pretty satisfying and this meal could easily be split in 2 for tasty leftovers... if you can stop eating. + +I found the teenage staff to be friendly and cheery but the bathroom needs massive help. Only one stall and really unpleasant smells, the female employee who had just left the bathroom as I entered left wet paper towels on the handles of both exit doors... covering the entire area for me to hold on to and pull. Just.... disgusting, especially from an employee who should be trying to keep the establishment clean and good looking. + +All in all, good but not great. Its pretty affordable so if this is your price range, I think you can make it work and still have a tasty meal.",review,GRgBu4K7GOb3354esp_xkg,1,0,0 +kgPjOtSeMd3CMdbnEmHbeQ,2012-09-21,CMgh3c7UTxpdWia-X7thuQ,5,"I've been to this location a few times, but this was by far the best experience I've had. It was two Sundays ago, myself and seven friends wanted to watch the early games and get some food and drinks. My friend called ahead and made a reservation. When we got there, we had a big table reserved right in front of all the TVs. Our waitress was very attentive, friendly and quick. They had a bunch of beer bucket deals that we all took advantage of and had a great time watching all the games, enjoying some beverages and eating some food. Their breakfast burrito with chorizo was fantastic and it'll keep me coming back. See ya next Sunday, Majerle's!",review,ZYBhxMZk32e6DF77jjprhw,0,0,0 +iRg16D8dWjmv70NF68kgRA,2010-04-21,iRuWLIGR4GjBiO1v8nwFDg,4,"As far as salon-cafes go, this has got to be one of the better ones. The sandwiches, while not particularly ground breaking, are thoughtful and assembled with quality components. Also has a pretty good old-town ambiance.",review,GrSixRnGIxNUJ1Cn5DNX9A,1,6,0 +qjmCVYkwP-HDa35jwYucbQ,2010-08-24,QoBtv02iWFXh3DbKRyKFkQ,4,"I've traveled to Phoenix several times for business trips and stayed at the Ritz. True Foods was my go to spot in Phoenix because it was right across the street from the hotel. I love this restaurant for the casual vibe and healthy food. My favorite dishes are the Edamame Dumplings and the Miso Glazed Black Cod. It was often hard to get out of work for lunch, so coming to True Foods at the end of the day was always a treat. + +I only wish they had one in San Francisco!",review,XAuBFVTB4WVZ4UL_6Mq4Sg,0,0,0 +Vm9GQUptdZmBM9R7tZ9_Tg,2011-10-13,U8eRNtWV-sSYVktpO2fLSg,5,"Aside from the Macy's on 34th street in NY, this one is my favorite store. They carry all my favorite designers, especially for work clothes. Not to mention, the shoe department always the hottest selection of pumps. There's a tiny Ukrainian woman that works in the shoe department, I love her, she is SO patient with me and gives me her two cents as she keeps bringing out the shoes. + +I wanna meet the buyer for this store and become her/his bestie. They also have a personal shopper near the women's dressing rooms. Not that I'd ever have the need for one but you might. The sales people are always really nice and helpful. + +On a side note: I once met this old guy who said he brought Janis Joplin to this store to buy panties when she did a show here. I've always doubted that story but it never fails that when I go to the lingerie department I tell myself ""I'm standing where the late great Janis stood."" She's one of my all times.",review,wFweIWhv2fREZV_dYkz_1g,6,4,4 +41V_WrLzJErAkjAHbFrqsQ,2010-09-20,RIk_vWSoq5-1gakFKeqXZQ,4,"Had lunch here today with Lynn W. and Rand H. Well the the place is new and the decor is well done and comfy . They have enough food selections to classify them as a super buffet. As far as the food goes it was all pretty good with most of your typical Chinese buffet selections . Some of the extra items were steamed clams , double baked potatoes ,fresh strawberries and Vienna sausage. The macaroni salad I had was very good and i went back for more as was the stuffed shrimp. There is also a sushi bar but I did not try any on this trip. The food here makes them a 4 star eatery and as far as the staff goes they need to be a lot more happier with a name like happy buffet.",review,ohRev2g3tvXpV3gBnhC-og,3,3,2 +_qTzOkbin2giDOrFsaxm8A,2012-08-11,yT-U-KH53ED2i8_Is9OGOQ,4,"This restaurant is inside the Baiz Market! So, don't waste your time trying to GPS it- just GPS Baiz market! + +Secondly, ambiance or quick service are probably not the reasons you'd come to eat inside an outdated restaurant on styrofoam plates. + +The food, however, is pretty tasty. They have a wide variety of items typical to Middle Eastern cuisine: shawarmas, falafel, kebabs, pies, and more. They heat items up in an open oven and the food comes out very fresh and hot! + +I tried the cheese pie and shawarma. Both items were very good. I still got onions when I asked for them to be excluded. I suggest skipping their small beverage options in the adjacent cooler and going to the selection on the south side of the store for a better deal and variety. + +All in all, it is definitely worth trying out, especially if you are going to Baiz Market anyway!",review,YsPqt0gxG60l0cJvHl_ylw,0,1,0 +ke0BMVeaQf3lvwSzm-fPyA,2011-08-29,Pf2SlD40ciGs0qoMA2AdYA,5,"Toasted subs at their best.. The worst part of eating here is trying to choose one sandwich out of my four or five favorite picks. And in the fall when they bring out the soups, I can hardly resist ordering the cream corn soup with my meal.",review,WW1MMZio1kZgqWzsagD-Hw,0,0,0 +_1QQZuf4zZOyFCvXc0o6Vg,2011-07-17,kfkcMrTGjhMwSWwuyZ2XrQ,5,"First timers to this park on an early Sunday morning. Me, my bf, and our 2 old English bulldogs had a great experience. + +You can choose between the active or passive dog park. We choose active but also decided to keep our dogs on leash being our first time and all. + +We were immediately greeted by a woman and her 2 boxers, very friendly. We walked the perimeter of the park to get our dogs use to being around other dogs and talked to several people along the way. + +We did have a small incident when a dog snapped at our dog but no harm, no foul. + +Looking forward to bringing the dogs here again!",review,8U6I0GuBasZa9rapy2H-8A,0,0,0 +9DsXB8T3UwBYiLPiLJJuNQ,2010-03-31,U2zZ5IoCERN8AXa443tiXg,1,"My husband and I went to Ernie's a few weeks ago on a Saturday night because it is within walking distance to our house and there is always a crowd so we wanted to check it out. We met our friends in the bar and waited... and waited... and waited... and waited. Still no-one offered to take our drink order. + +The bartenders and barbacks made eye contact but no-one came near us. We don't look like hooligans or ruffians or anything so it was irritating. The weird thing was there were people eating in the booths around us, and one or two other people at the bar (who had drinks.) We finally got up and left. Why waste money on places that won't take it! I won't return and will recommend my friends don't either!",review,QzA6ZW1NFid32_g_fsapIg,0,1,0 +FUI-hWH_bpis7AKZTWenUQ,2007-11-02,RtNB0MtHiVaIDmgedeE_bw,5,"I'd have to say that among the restuarants in the Tom Jetland suite (Fez, Ticoz, Switch), Ticoz is my favorite because of its dimly-lit lounge-like quality, which provides it a cozier feel than the other two. Add to that, the hypnotic Mojito creations and Ticoz is one of those places I could spend an entire weekend late afternoon at, as long as someone else drives, of course. + +The tamales are fantastic and are more similar to corn pudding than to traditional hand rolled tamales. If you get them with veggies, you'll find that the veggies are a little oddly cut for the dish, so I recommend some other topping. The beef is fantastic (especially in the tacos). + +All in all, this is one of my current favorites.",review,xYzXnIvyadwjcttO0D71KA,2,1,0 +c1yGkETheht_1vjda7G5sA,2008-06-19,ZnViqu0FiDEjZbKiXJL8VQ,5,I love-love-love Green. The atmosphere is wonderful and the food even better. The people who work here are lovely sweet and very helpful. There are far too few vegetarian restaurants in Phoenix metro area and this one gets my full support.,review,pk4y8PJdccJysYBpBA-gcg,0,2,0 +ObnZiF99lqggVasgyGBtVA,2012-01-14,qgPDxS2WPx4XxkhQlf7U8g,4,"Cute decor-who doesn't like IKEA? Attentive service. We ordered a couple beers and the sweet potato tots. I decided on the Ahi burger and the veggie burger, and my sister went with the two sandwiches: PBnJ and the grilled cheese. Everything was delicious!!!! Unfortunately for us we arrived about 30 min prior to happy hour, but we managed to get a couple beers at the $3 happy hour price. + +I've been here once before and since then it looks like they added a few items to the menu. I'll have to go back to try the shrimp po-boy and the red snapper burger!",review,y5_vrqIylhXMrejM_-x_vA,1,1,0 +I941jBn1KURuN-2wygJ_5A,2010-10-23,lFIMYqk6Sqje1vgMVWxRfw,2,"I booked a night at this resort hotel because my daughter had a volleyball tournament in the area, and they had a special for 50% off suites. I wasn't impressed for a number of reasons. First, even after the discount the rate was $124.00 which included an $8.00 (normally $30.00) ""resort fee"" which included things that any other cheaper hotel/motel would offer for free like local calls. Second, for the price I would expect modern things, like maybe a FLAT SCREEN T.V.! Come on, they've been around for what, 10 years now? And a high dollar place like this can't afford one? Another annoyance was the fact that their high speed internet access costs $15.99 a day. I can get free high speed internet at any motel/hotel for less that $50.00 a night. Other annoyances include a t.v. remote that didn't work, and a shower head that was so loose that it almost came off when I tried to adjust it. I would never, ever pay $200.00 a night for this place, and regret even paying what I did.",review,QpC_Z-gOWeTwzq-NYPsoxg,0,2,0 +-zcZNlO0JwZHppan8rGkBQ,2010-03-25,WT7BmBV0WTHw0MrXTY6C2w,3,"Food is a little pricer than standard Chili's, but it's in an airport so that's expected. Service was good, food came out quickly and to order. Be sure to stop by before you head through security.",review,RHWm_duEdCgWwtN1fBUkHA,0,0,0 +GAPqG0WNBBidKeZTMpEZ-w,2010-12-27,DPhy3dRkmhiphPD57j7Vtg,5,"I have been here at least 10 times and have never had a complaint. The staff is friendly, the food is great, the atmosphere is lovely. + +My favorites - the LB lavosh and spicy cottage cheese. + +I will continue to come back to Local Breeze again and again!",review,yg9FlyXJcmrMAfqkXmVvDw,0,0,0 +3HciJAVduCRoPDdzgh7cAA,2009-02-18,i7UwyQxJ1NqtiYSul5lICA,2,"I used to be an avid shopper/seller at Buffalo Exchange. As I work at a boutique, it was nice that I could bring in brand-name merchandise and get cash for it when I needed it. The majority of the staff knew me and were always very friendly. I don't know if it's new managment or new policies but things have definitely changed around there. After yesterday's experience, I will definitely be taking my clothing somewhere else. First of all, the service took way too long. Secondly, the ""buyer trainee"" was unsure on about every single item I had brought in and priced a couple like-new $120-130 tshirts at about $20. The attitude of the staff is quite off-putting and it kind of makes it seem like it's such a task. However, they red-haired girl who was working by the fitting rooms was very friendly & helpful. I don't mean to sound like a hater, but as I was quite a loyal customer it was quite a disappointment, especially in this economic crisis where customer service has never been more important than for those who work in retail.",review,YavFbDG7DUOTXJBLxpq97A,2,3,0 +Edj0quZE5k1WcAtf883j6w,2012-05-24,xpn7D5q7cVI1Bo_uimyJsA,4,It's just fun and I'll be back ! Very chill.,review,sfMHSAEaw2EuJJSdfE4hGw,0,1,0 +fP-BPL6iRu2tbcvlnjRshw,2011-09-08,5GsLmUONOmz6tMpQeUidnQ,4,"Great addition to the CityScape lineup! This is a big place with TONS of beers on tap, sweet cushy leather seats and friendly employees. So far I've only been for happy hour, which is great because they offer deep discounts on local beers. I'm definitely looking forward to sampling some of the food options. +My one complaint - most of the songs we heard here (I've yet to see a live band here) were horribly outdated top 40 hits that I wish I had forgotten about. Clearly that's a matter of taste though ;) +Looking forward to going back!",review,z06IHGXI_ofBc2DkAbCgnA,2,2,3 +2CYIJPEd2SQ38khwuULvAw,2007-07-30,gAD5yGFxBvF46nuwVytiHA,4,"A total oasis from the summer heat. This friendly and well stocked neighborhood library is never crowded, so you can alway grab a free PC or a free table if you're lugging your own laptop. The selection of books and dvds are really good too.",review,8WQubmP7G0NM3IyzyMnCEA,0,3,0 +K8pM6qQdYu5h6buRE1-_sw,2010-06-06,M6bpGGLsCKfNaiaTjaUiVA,3,"Arrived around 5pm one Wednesday evening. The place is not in a nice area of Phoenix, and it looked deserted, and I was going to leave, when I saw a Mercedes and Lexus pull up. So I thought I'd give it a chance. The prices were somewhat reasonable, I got the Lo-Lo's for $11 (2 waffles, and 3 pieces of fried chicken). The food was tasty for what it was, but I only give it 3 *'s because its just so unhealthy.. kool-aid, waffles, syrup, and fried chicken! This is the kinda a place I may go once a year, but I just feel so guilty! Not sure what the syrup was, but it certainly wasn't real maple syrup (I'd imagine it is some sugar based creation), and the waffles were dry. The chicken wasn't very moist, it was also a bit on the dry side.",review,zYgSDyEHVcMLRL1LLms7IA,0,1,0 +9XX-sxaDFXlXO65WnuS65Q,2011-05-20,FBDIbRj5q14mrXJ0bz4ddg,4,"After reading the other reviews, I thought perhaps I would weigh in - they seem to be all over the place. The critics are correct that the decor seems dated. To me, having grown up back east with this very sort of restaurant, it was charming. The restaurant is particularly enjoyable to visit at night, when they turn on the lights in the garden. + +I enjoy the layout of the dining room, although I agree it is a 'cooler' experience to eat in the bar. I guess some people could be offended that the staff sit down and eat in the bar when it is slow, but I'm not one of those people - I think it adds to the charm. + +I had a very late lunch yesterday - around 3 - thanks to an appointment that went on forever. So we ended up heading to Riazzi's for a late dinner, around 8:30. At that time of the evening, the dining room was closed., so we sat in the bar. + +Their service is truly one of the strengths of this restaurant. On this night, they were unusually attentive - even for them. The waters came out immediately upon sitting down, then they took your drink order - as it should be. Neither my iced tea or water ever got below half a glass. This is something I occasionally find annoying at places where the staff draws a lot of attention to itself when they refill drinks - particularly when it interrupts the flow of conversation. Not at Riazzi's - they are attentive but unobstrusive. + +Their bread is my favorite restaurant bread in the Valley - hands down. It is actually better than the Italian bread I grew up eating back east in Hartford, New York, Boston and Providence. It's so good that I wish they had loaves available. You have to possess a lot of discipline not to fill up on the bread. + +The salad is as others have described it - traditional, but fresh. + +My favorite item on the menu is now listed under pizzas and described as a Spinach Pie. This used to be listed under appetizers as the Grass Pie, but if you order a Grass Pie, they'll still know what you mean. It is a cheeseless pizza with spinach and arrabiata sauce. Confession: I love all things arrabiata. But this combination here is perfect. For about 1.50 (I can't recall the exact figure), they'll add mozzarella to it, but I've never done that because it is perfect as it. + +They bring you a healthy amount of tasty parmesan cheese, so you can always throw that on the Spinach Pie. + +So, I had that. Outstanding as usual. My wife ordered the Penne Primavera, which was very good. Last time I was there with my daughter, she had the penne with garlic and oil, which I thought was just superb. Simple, but perfect for a garlic fan like me. I have a feeling most folks skip over such an entree in favor of something more elaborate, but I recommend it. + +We didn't have an appetizer, and even though I wouldn't describe the portions as enormous, they were generous and neither of us could finish our entrees. + +Is Riazzi's going to be sexy for the young, hip crowd? Probably not, although it is romantic at night with their lights and sunken/elevated dining room, and has the 'cool' factor of the bar. It totally hit my 'nostalgic for the east-coast Italian restaurant' needs. + +I just wish the service at most modestly-priced Valley eateries approached Riazzi's. You can get spoiled with the bread and service over here.",review,UMJ-KT4fDYDwZKn_qkCpPw,0,3,0 +cN6aBxe2mQvrQlzk26LyRQ,2012-05-27,i01x8QygrEUch4fiKIeuJA,5,"Heard about this interesting steak house from Lindsay, my Yelping 'go to' and I am grateful. What a fun night, feeling ""Mad Men' ish as we walked through the kitchen when entering the restuarant. + +Atmosphere was amazing and the food.... WOW. My fav had to be the amazing steak and bean chili/soup.... fantastic. + +Steaks were our of this world and the mushrooms... devine. + +When entering the restaurant we greeted by helpful eager staff ... with each one adding input into our experience.... especially Patti, our server. She was helpful, informative, fun and sealed the deal of a fantastic night. Thanks",review,GNlv9XPhj6P8Fk8Z0cnBrw,0,2,0 +oJpmYvLibGrYPDvcaUeMOw,2009-01-03,TgzOFH61ZfnYPM_1ABnj0A,4,"Okay, eating Thai food in what seems to be an old diner is kinda weird. But after getting off of long flights, my mother and I needed some kind of Asian food and quick. The GPS was taking us to a sushi joint when we drove by this place and we immediately switched gears. + +I give these guys major kudos for the portion size. Seriously, I felt like I was still in Texas with such an enormous plate full of pad thai sitting in front of me. And it was delicious--plenty of peanuts, the noodles were perfectly cooked, and they didn't skimp on the meat. My mom's soup had to be improvised since they'd run out of octopus. They asked her if she wanted to change her order or just double up on the shrimp and she chose the latter. Sure, it was tasty, but she was really disappointed. The fried spring rolls were okay, but they were tiny and not piping hot. + +This was a nice way for us to start our trip and the food hit the spot. It came out quickly and the service was quite friendly (though not quite professional). I'm all about supporting the mom-and-pop shops and when the kids are working for the parents, I feel for them even more (been there, done that). With a better parking lot and some remodeling to get rid of the weird diner feel, this place will continue to attract more and more clients.",review,eFY6bJpTcpZPXK_2tuOj_A,3,3,1 +1nIf2BoKPoNHbQKbi-Izig,2012-08-08,CcAQODU1Z3-Q_GvqoZEP1g,5,"Fable III used AND looks brand new for $11?! OH YEAH! I'll take it! + +I stumbled upon this place because our little cousin wanted to get a game, and he had been here before with his aunt. + +The place was filled with classic games all over the walls and even to play. I'm guessing classic original games are back and in style again. Plus they are just fun to try or have a flashback from the 80s. + +The store is clean, open aisles to walk through, great prices on the games and the customer service from Gary and Rich is phenomenal. These guys were very nice, educated about the games, and went out of there way to make everyone happy. Great job guys! :) + +All the high star reviews are true! This place is SO much better than any other gaming place I've been too. My husband loved it too. He was a kid in a candy store. + +What a great find! I think you should take a trip to this store, even if you don't play. Get a game as a gift. Just to experience this place, it is something special and unique.",review,S-07w5CJfDmEBTNZ9V-ycw,5,6,3 +EzAen1_nwVuiWPKBj9HUpQ,2011-12-15,uh_lAl3fQ1JpyoXQRxYfpg,3,"Ive been to F&H on numerous occasions. The night usually goes a little like this.. + + I walk up to the entrance, I see people smoking outside in a small fence area. I look over and see these groups are starring at me like i just blatantly readjusted myself in public. I give them one more glance and realize in two hours we all will all be best friends exchanging pointless stories about our days when in reality I couldn't give a flying f*[% about their new kitten they adopted and named Bunbun. But in 2 hours I will thrive and cherish each of their stories and be amazed I never found such intellectual people sooner. + + Before I get to the door I feel eyes spying on me. I look up to find one of 17 hostesses peering through the window ready to yank the door open a mere second before I reach for it. (you can't beat them to this.. Ive tried several times, they are good at what they do. Just prepare for this and accept it.) + +as I step inside my eyes automatically affix to the bar top. I scan up and down the row of seats. As I'm scanning down I see two empty seats. I'm not sure if guy code applies to bar seats like the bathroom urinals (guys.. You know what I'm talking about).. But I usually just start the night off not giving a... Because I already aknowledge the fact things are only going to degrade from here anyways. + + I start with a tall miller light and look up at the game playing on the TV's. I continue my beer almost empty then order some beer battered buffalo chicken tenders with extra ranch. I look into the reflection of my phone to make sure my face isn't suddenly disfigured because she looks at me as if I just asked for an order of wine and chive biscottes. + +I explain that I am looking to get the beer battered buffalo wings then she calls for backup like I'm speaking a foreign language. ""Hey Lacey! This guy wants beer battered buffalo chicken wings"" they say some things, fumble a bit then come back with.. So you want ""chicken tenders and ranch?"". I explain again to the both of them. They both tilt their heads to the side. Either this one beer slammed me, and I'm speaking nonsense at this point, or they just don't understand what buffalo wings are. ""so..you want a cheeseburger and a side of buffalo sauce sir?"". They do a little further team planning and come up with a solution and I end up with beer battered chicken tenders dry as a bone with no sauce and a side of buffalo sauce. My friend getting the opposite when we both ordered the same thing except he gets no buffalo sauce and a side of ranch.. I find it to bother me less and less each time because I expect it now. + +Their food really is good, and their service is...Did i mention that their food is really good? + +I look back up at the TV acting real smooth and care free only to realize ive been watching female tennis on the television next to me for the past 30 minutes while everyone eIse is attentively watching the football game. I'm not ashamed to admit that I continued watching it. I think it was the loud grunts that kept my attention. I finish eating, grab another beer and me and the friend approach the ping pong table. +You need to go to the hosts stand to get the equipment. It's free. Wait no it's not.. It's a dollar. Nope that was last month. Now it's 9 bucks an hour. Better empty those pockets. Just remember every hour you waste playing you could have fed 27 starving ethiopians for a month. But in your drunken stooper you chose to dish out the $9 like myself and play pool or ping pong. Shame on you. + +PS.., beware of the twins... I thought I was loosing my mind after a few beers seeing one girl cover the whole restaurant in a matter of mere seconds. If you ask your server for something and she looks at you funny... it's either because you asked her twin, or you asked for buffalo chicken tenders. +Also... if you stay late enough the cops hide and wait for you to leave the parking lot as soon as you turn out. But of course you have a designated driver... right? + +Overall, the food I have ordered was great. +The service was... + +the food was really good.",review,QIka-hRDjClBl2iT_5KLhA,1,1,3 +VS6eeO_IxSW0pQOWPtXSEg,2012-05-31,H45iVLBPmJLymVWRC_zONA,4,"I really enjoyed my stay here! + +We used a groupon and I will stay there again when I visit Arizona. The rooms were very tidy, bath and body works collection available for shampoo and soap. + +I loved how the pool was open all night as well. The pool and hot tub did need a bit of scooping because there was some debri in there but nothing terrible. Towels were available as well as water too for the guests. + +The front desk people were very pleasant and gave us an early check in no problem. + +My fiance and I wanted to go down to Mill avenue and were pleasantly surprised when the front desk said there was a 24 hour complimentary shuttle that would take us and pick us up. The driver was very helpful with advice on places to go and also tips to keep out of trouble. :) + +We went to Milagros for a margarita too, and the bartender was very pleasant and the drinks were not crazy expensive. + +The hotel is very close to Arizona Mills mall and other places in Tempe. It was worth every penny!",review,rVRmCNgpzj57N1VAiXk-AQ,1,1,0 +s26P-jeVUH9TjnTPQttPag,2011-06-13,wZYa1Z7TOKO95jgmx9233A,4,"I have been to RA a handful of times for happy hour, and was always annoyed by the loud music and crowd. + +However, this time I went here for happy hour as a first stop for a Bachelorette party and I had a great time. The upbeat social atmosphere was great for getting the night started. The group ordered a ton of appetizers and rolls, and even a drink each, and we walked out at about $30 a piece. The elderberry mixed drink was especially good. + +Normally, I do not pick this place for sushi happy hour because I don't like their quality of sushi and like quieter placed to relax with a friend or two. But if your going for a fun group atmosphere, this place is perfect. But only during happy hour, otherwise it is definitely not worth the price.",review,gjigz7a2hA5_XJeIxiwzTQ,0,0,0 +qMkIbQFrROSnPaQ7at85-w,2012-07-06,JmRsNK6lSO-_aAw-YnfWXg,5,I love this place I have been here 2wice and it puts of the others in the country to shame. I hope that I can volunteer here.,review,Hlhcx4gPu4jmTalbZLNc5A,0,0,0 +3rUk-WyCv_wMQR5HbTqD4Q,2012-01-27,cS4GhqGKmz2YZ4_3Hdf5sw,4,"I'm so happy these guys are here. I work next door at Gangplank, and the previous sandwich shop in this location was okay, but really started to slide downhill. Planet Sub totally renovated the place (looks great), breathed new life into it, and came out swinging with a diverse and tasty menu. You can really tell they're working hard to make this a great experience, and the sandwiches I've tried so far have been excellent. Look forward to going back soon!",review,c3rGyts2bCr7NJ_561OpLA,0,1,0 +tdcjXyFLMKAsvRhURNOkCg,2009-01-26,2VeokkuDaXaaIzCHCsBAYQ,4,"Brackin's is my new favorite day drinking spot. The bar itself is located perfectly within a tucked-away area in the Old Town Scottsdale mall area. The atmosphere is very relaxed, and when the owners swing by, they really make an effort to get to know you. Prices are also very relaxed, with bottled beer landing right around $3 for domestics. All in all, if you are looking for a spot to hang out with a couple drinks, maybe enjoy some live music, and do some people watching; I would definitely recommend Brackin's.",review,mQba83gB018LlGt51r80ZQ,4,4,1 +Gwwdr4Z1edd2yHxqDdQEqA,2012-06-12,T1d3kEauRPHnoLshl-62aw,4,"I brought DD and her friend here today after a long day of Summer Camp and running around. + +We showed up shortly before 3 p.m. for their Pop In Playtime, which is supposed to be from 10 am to 5 pm. + +There are two rooms of bouncy house contraptions that are appropriate for children older than age 3. I don't know if they have actual age or size restrictions, but kids younger (and/or small kids) would have a difficult time here. One reason it would be hard for younger kids? There are specific instructions for the contraptions which they go over with the kids before they are allowed inside. Some have a max of 2 kids at a time (the obstacle courses), some have a max of 6. One has a max of four, with three on the ladder and one going down the slide. Younger kids would likely need to be constantly reminded of the rules, as they can be a little rigid. + +Both my 4 year old and the 9 year old LOVED it here. They both said they preferred it to Jumpstreet. + +The girls were bummed out when at ten minutes to 4 someone came in and said playtime would be ending in ten minutes. Then the guy said if parents wanted to know why, we could approach him. Upon approaching him, he said that two birthday parties were booked for 4 p.m., so they were ending Pop In Playtime early. + +Some parents were VERY upset, having just gotten there less than 30 minutes prior. DD was very disappointed. It took a little prodding to get her to put her shoes back on and get ready to leave after only an hour of playing. + +On the way out, some parents stopped by and talked to the shift manager. She just handed out cards for another session since ours was cut short. Pretty cool; we will use the cards to bring another neighborhood kid back with us. + +There were JUST the right amount of kids here at this time of the day. I cannot imagine how nuts it must be here on a weekend or during Summer mornings. + +Still, bring a book and some bottled water and sit on the sidelines... or do as I did and run the obstacle course several times on the insistence of the kids. ;) It was fun!",review,64YY0h0ZAR2nbzxbx0IwJg,1,1,1 +LjqY98zL96sem_PxC6ZG3g,2008-09-09,bNY7MFACJolgMWI9_QaPXw,4,"Being a long time devotee of the Gelato Spot, I never gave this place a shot. I must admit, the Marscapone gelato was very good. I probably won't switch from Gelato Spot because parking is so much more convenient at 32nd & Camelback. However, the next time I am out for a walk in the area or am in the mood for a sweet treat after dinner at Postino or LGO, I will definitely pop in.",review,e4TQFVfepzHf--hnBsjntg,0,1,0 +NQhPkGeHiljeg7tXPTHJeA,2011-06-08,1SbCwpk6St8atpJeiBTaWw,3,"I haven't been to a Sweet Tomatoes location in well over 3 years. I have never been to this location before, but the service was good. The selections haven't changed that much. I was pleased to see they had strawberry muffins with strawberry butter. YUMMY! The salads are still fresh and good. +I wish they had more non dairy alternatives there.",review,FW4C9Hc-CR9tj112CCBCLQ,0,1,0 +O02Z6r9mO3tORhD5ynWPeg,2010-01-02,OcJxquwk6W9HvVkhRdObvA,3,"Being that not many places were open on New Years Day, I decided to cruise around and see what was open. Being that the bookstore wasnt quite open yet and had a horrendous line, I drove around a little bit to see if I could grab a cup of coffee to kill some time. + +I pulled into the parking lot because theres several stores located in this strip mall, and have shopped at a few stores here before. I found this coffee shop smashed inbetween other stores. Its a very small shop, with extremely limited seating. I will say I liked it here, and I enjoyed my experience for a lot of reasons. Thier prices are cheap as all get out, which is great! I got a 12 ounce Mocha for $3.24. Awesome! Service here was amazing and friendly, and I will gladly return in the future. + +So why 3 stars? there were a whopping 2 tables to sit at inside, and thats kind of a problem. I also asked the girl about the internet, and she said the signal was in and out, and should be fixed in a few days after the holiday. For me, a coffee shop is a place that I like to park at for an hour, plug in my computer, surf the net, and drink coffee. I dont like sitting outside because A) I have no plug and my battery dies after an hour, and B) in the summer Im not sitting in the heat. So, even though I would return for the prices and service, I wouldnt recomend this place for anyone who plans on staying for more then 5 minutes.",review,JffajLV-Dnn-eGYgdXDxFg,4,5,2 +bts6jVczHJuWzpT8Y26UsQ,2011-01-31,lnofa2EfVjX3UXeRcFsa8Q,2,"This is one of those reviews where a qualifier is required. It seems like everybody that gives this transit system a good rating is a Phoenix native. That makes this, like so many other things, good for Phoenix. The problem is that it's terrible compared to nearly every other metro system in North America and absolutely abysmal compared to more progressive parts of the world. + +This is quite possible the slowest train that I have ever ridden in my life. It seems to make stops every two blocks and it take far too long to get anywhere. Factor in the terrible hours of operation and you're going to easily find yourself stranded at one end or the other after a night at the bar. + +Please work on expanding the routes and hours, speeding up the trains and then maybe you'll be able to increase ridership. I'm a huge fan of mass transit but this train falls far short of expectations.",review,f3LA83yEEBMj9q92H28O7w,1,2,1 +eIxSLxzIlfExI6vgAbn2JA,2012-08-01,ewv4dzX4GlYCwZdyHOP55Q,5,"Loved it. Food was great, service was great. Not easy to find, but worth the search!!!",review,ksJmOji5HBELowhDLGm_3g,0,1,0 +uKSX1n1RoAzGq4bV8GPHVg,2011-01-16,H4npkWXgUV6UjtfOcKYAkA,4,"First time at St. Francis last night. Good menu selection, had an excellent server, good portion size and excellent meal. I tried the chicken salad for dinner and it was tasty and just then right size. They have provided a nice atmosphere with exposed brick, stainless steel tables, and just the right amount of lighting and music. + +Only downside was the backless seats at our booth. Very trendy, but somewhat uncomfortable. Ask for a table instead and you'll be fine. + +I'll return.",review,W7nkIA52ThKHnuNQF7EMnA,0,1,0 +rZbHg4ACfN3iShdsT47WKQ,2011-01-13,nm-KyaVBNZJSEGYLLdt-EQ,5,"I'm giving Bobby Q an extra star in this update to my previous review, because although it has its share of hits and misses, it is, in fact, as good as it gets in Phoenix for great barbecue. I love barbecue. It is a hobby of mine. When I get stuck on something and want to know what it should look and taste like, I go to Bobby Q and am almost never disappointed. Most recently, this happened with beef brisket. I'm going to upload a picture I took of Bobby Q's brisket because seriously, if you look at it and don't want to immediately die from desire, then you just don't like barbecue. If I had anything bad at all to say about Bobby Q, it would be that sometimes their meats can be slightly overdone but this is not the norm. Their quality control, considering how much food they must serve to keep up with the demand, is astounding. Their prices are too high, but of course, you're paying for the almost Disney-esque atmosphere. Their sauce is absolutely delicious (although it should be noted: they don't understand what ""spicy"" means). All in all I really can't say enough good things about this place. Go look at my brisket photo. Seriously.",review,A_VCj_m1zqW0gc0zSzQ3tA,1,2,0 +gI4jThFNwy73SzaNvi-1dw,2010-11-25,_aQfc-QTRf13VkAWB5gDyA,4,"Second visit to L&L. The first was at lunch with a group of moms second with my family. The service was excellent which is saying a lot. They didn't have to ask what we needed they surveyed the table and kept the meal moving. Which I appreciated since we had the three kids with us. This is not traditional chinese, so get the asian nachos. They are a giant appetizer very unique and quite tasty. EVERYONE enjoyed their meals and the happy hour deals are pretty good. I see more visits in my future.",review,BEcT2wCP-G0LfkKZSlYdzw,0,1,0 +eIxSLxzIlfExI6vgAbn2JA,2010-04-10,b01QqdMpIIaeEnMs_g92pQ,5,"Headed back to Lobby's. How I missed this tasty burger. I wasn't disappointed with round 2. The burger was still fantastic! I'm also happy that the fries were a little bit less salty than my previous trip. + +With any burger purchase, getting the combo pack (fries/soda) is the smart choice. + +I do wish that they would lose the styrofoam soda cups and offer more than one size of drinks. + +Make sure to grab plenty of napkins before you sit down. The burger can make a mess with the homemade sauce dripping off the meat and bun. That's a good thing in my opinion!",review,9qCPmT6ovJjxL4tJB4ANCg,2,3,1 +vSEFzop2GDXsIWTLxIGMiw,2010-08-06,we5T3NsdF_oPrbPBpMo31w,5,"Rivas helped me get through numerous late night study sessions and early morning hangovers! Hard to go wrong with anything on the menu, but my two faves are the Carne Asada and Chile Rellano burritos...with fresh horchata, of course!",review,2tyadgcxcaEu5LWgLdwLAQ,0,0,0 +_7EJtWjOjZsBUNRvzw-_Xg,2012-12-29,y2l9PqdeqUVeOex1Vg0QdQ,1,"Do Not Eat Here if you think a bathroom in any way has anything to do with the cleanliness of the food preperation. There was literally dried smeared feces on the toilet seat and the floor looked like it had never been washed. Of course the restroom cleaning check-list was not initialed the entire day. Oh...I almost forgot there were no paper towels to dry my hands. I told one of the employess and he says ""I know dude"". It's rediculous that the bathroom looks like this when you have 10 employess standing around with their thumbs up their asses gossiping. + +Burger was over-priced. Milkshake was ok. Also no napkins anywhere in sight on the tables or at the bar area. Apparently napkins are something you have to ask for? Whoever owns this place needs to get a better manager at this facility, because he is loosing money with all of the one-time customers who will choose to go somehwere else next time.",review,We7ULac-q9TAWOhiSozzrQ,0,0,0 +byFWmwlVSmUj-AmM6NZYvw,2007-12-27,oS3wR-c59yIWUI1BLccv6w,5,"http://www.in-n-out.com/secretmenu.asp +http://www.badmouth.net/in-n-outs-secret-menu/ + +Double Double Animal Style. + +It is worth the trip cross country. Well maybe not, but I do enjoy them while I am visiting. I cannot get enough of them. + +If you are really hungry: http://www.texasburgerguy.com/2005/01/16-x-tra-patties-and-x-tra-cheeses.html + +The private stalled restrooms are always spotless and stocked. 4 Flushes.",review,wi2DEAkDI2AbVF4PBELEzQ,0,1,0 +BINYfrtGp3A4w0d5E7kbYw,2011-01-07,Al1aLymjMR_wYiYcNR26CQ,5,"Soft opening, so still working out the kinks. Food was deelish. +Scallop poppers- crispy and spicy; not at all greasy +Honey chicken-a little sticky but so good +Teriyaki chicken-subtler than other places' teriyaki, but much better flavor and chicken was tender +""tootzi"" roll- bursting with flavor and rolled perfectly +Nice touches with cucumber water, upscale Asian decor, unique glasses, menus, plates, etc. +Will definitely be back.",review,2lvfBteL5ny4CBjNIk9Mwg,0,0,0 +Vx7-xbazum3dgo3Qj3i4pQ,2011-07-22,JW4SHInrrfdVKB_SpMOMjA,5,By far the best Mexican food in Scottsdale! Food and Salsa amazing! Service phenomenal! Great prices!!!!,review,m2Z-H8pgoEJwFDzB3wMWxA,0,1,0 +E7nk0lC317pGxMX56gvaVQ,2011-07-24,wzYex5xd75KhPmun-PxHsg,4,"great happy hour. always comfortable, nice staff. we'll return often.",review,6SP-1gM4JV1tXGEe1Tu45g,0,0,0 +YDpzUg_np9KkG0702jACwg,2009-02-17,n5x6wuebwVL7_dQ4n5OCtA,5,"As a bonafide recovering Art Bitch, I give this university gallery the blue ribbon award for kickassery! + +Truly a ""hidden gem"" (i hate that phrase) in Tucson, the collection and the revolving pieces never cease to impress me. I have brought almost every single tourist from the east coast to this gallery, including some photography professors, and they leave with snoooty mouths agape that in this pleasant little desert town resides a high-caliber, well manicured collection of the arts. + +I am always upset when I visit and I can't stop by this gallery-and don't miss out out on their catalogs, magazines, books, postcards and prints they have in the atrium as unique gifts/decoration. + +Splleeeendid.",review,mfvezpz6ohS0NQk3DZdvqQ,1,2,2 +3n9mSKySEv3G03YjcU-YOQ,2010-06-23,YQC9nn2l11vc-1ZZ5Y5frQ,4,"Scale of 1-10 (multiple visits): +8 Food +8 Service +9 Atmosphere +8 Value + +Love it. The wines are good and they have drink specials ($5 glasses!) and the place looks great, and it's light railable! The panini was good, not special, but the creme brule made me forget all about it. And work. And oil spills. And life. Thank god my body's innate intelligence didn't forget about breathing or bladder control. Those stayed intact. + +And the bruschetta what what!",review,eBwBjylS66qPcHs2_ajLag,13,12,11 +-bd26a1QEEpqUZjBmtBUiQ,2009-01-16,DVW0IWm4wzRJ30kcWIivqQ,5,"This is one excellent Ethiopian restaurant, rivals anything I've sampled in Washington DC or Seattle. If I lived in Phoenix, this would be a Top-5 restaurant for me (along with Lo-Lo's Chicken & Waffles - yum!). + +Lalibela takes a slightly different approach to their menu. Many of the entrees are offered as small portions ($4.50-$6.00 each). They suggest each diner order 2-3 of these to make a meal. Kitfo and Lamb Tibs dishes are offered as full entrees and like many Ethiopian restaurants, you can order combo plates (meat combo, veggie combo, house combo plate etc.). This made deciding on our meal a little more complicated, but also offered more flexibility for sampling different dishes. + +Our favorite dish ordered was the Lamb Tibs (the spicy version with Awaze spice paste). Lamb was soooo tender, and the spices were a delight - rich in flavor but not too hot for those with tame palettes. Good thing it comes as a full order - four of us were competing for bites!! We ordered a half portion of Keye Wott (beef in a spicy brown sauce) that was some of the best I've ever had. Again, rich in flavor but not too spicy. My favorite Ethiopian meat dish is Kitfo - choice beef sort of like steak tartar (servered raw or lightly cooked) but with Ethiopian spices. Lalibela's was pretty good, just not transcendent like the Lamb Tibs or Beef Keye Wott. The vegetable dishes were on a whole excellent - especially the yellow lentils, gomen (collard greens) and spicy (Wott) lentils. + +Staff was great - attentive, helpful service. Unlike some Ethiopian restaurants, this one is very user-friendly. Although in some cases the menu accommodates American tastes it doesn't compromise on quality or authenticity. One note on the injera (sponge-like bread used to scoop up the entrees) - it's a mix of wheat flour and teff (a grain indigenous to Ethiopia) and I don't think it's fermented like injera that is made with 100% teff. I'm used to the latter, but you can argue Lalibela's injera doesn't compete with the flavor of the entrees as much. + +All in all, one of the best Ethiopian restaurants I've been to, and I have been to many in the States. Only problem now is whether my favorite Ethiopian restaurants in Seattle will still taste as good! Highly, highly recommended.",review,84XhBgCd2yi1OMuKp934zA,2,2,1 +kgm46SAqlVObnRKjcyDMyA,2011-04-09,AKFBad2QYPgsZqCMiqJTSQ,4,"Sprouts is great, they have a wonderful selection of fruits and veggies and their sausage is made in house and really wonderful on the grill! The grab and go meals are perfect for a quick dinner and the sandwiches and soups are spot on for lunch. Very friendly and helpful staff.",review,o2J22OK7xXL-sDPzANxy5g,0,0,0 +MU3i2uEyUBntebU6pEyMbw,2009-11-03,-1eV2qevYYKizDASJy8Aeg,4,"I usually don't review chain restaurants since I don't want everyone to know that I eat at them...but I have to give a shout to this location of McCormick's! We were in Phoenix for a quick weekend and I had neglected to do any Yelp research before leaving, so when my bf found M&S from the concierge we decided to give it a go. We had been disappointed with our last experience at the one in Dallas so I was mainly just hoping to have my hunger satiated so I could go to bed. + +I was very pleasantly surprised. We were hungry so ordered what felt like tons of food (don't judge!). The mussels and bruschetta to start were great! The mussels were small, the way I like them, and the sauce/broth/bread soak they were in was amazing. I had the halibut stuffed with a bunch of stuff as suggested by our server, bf had the dover sole, both were good, but that dover sole was amazing!!!! very light and perfectly cooked. I wish I could cook fish like that. + +We finished with some kind of passionfruit mousse dessert that was SO good. I almost took another one to go. + +The service was great. I would go back to this M&S location anytime I was in town.",review,3Vsd6Rd4CHHFtjo7xIp7Lw,0,1,0 +cgNIBHS2mLdbTRiodAT6EQ,2011-06-13,iuqN8zEjHt-G5anrYUG0_A,5,"When I moved away, these were the tacos that I missed! + +I stopped back today, and must say - it was exactly how I remembered! The lunch specials are very reasonably priced at $5.99 and come with two items and rice and beans. I always get the hard taco - seasoned shredded beef, lettuce, and cheese in a deep fried corn tortilla - and the cheese enchilada. I could eat the rice and beans alone, both are so well seasoned and they definitely don't skimp on the cheese! The only thing to watch is that the red hot sauce can vary from visit to visit - some days it's super hot, others - not so much. + +The wait staff is exceptionally friendly and always try to help me because my Spanish is so limited. The interior is large but very modest, there aren't a lot of fancy decorations - this is a place to come for the food and service and not th ambiance. + +Still, one of my faves!",review,LdJFjb2w0yJOxH1_0JAqrw,0,1,0 +vvMR0jgDoBA-g1XgZy8sEg,2012-05-26,7t866w_6pbrcVi0xk-y-TA,4,"An unclear menu and chalkboard signage, as well as lack of information from our server, lead to confusion. + +Like most have said before, my friend and I were very pleased with the atmosphere at Tryst Café in terms of its decor and layout. However, information about specials on the menu and two separate chalkboards lead to confusion about what specials were available (given the day of the week and hour of the day.) When we inquired with our server, she didn't know and had to double check what was included, when specials were available and for what price. I'm not sure if she was new to this job or just insufficiently trained. + +Fortunately, Tryst Café delivered in other ways. The drinks were sufficiently strong. My friend tells me her two glasses of Montpellier Cabernet Savignon (pictured) were delicious. My Tryst Pepino was fine, though was missing the mint garnish described on their menu. + +The Humus Trio (pictured) was delicious and came with slices of fresh cucumber however, it did not come with the traditional side of pita bread which had to be ordered separately. The Steak Salad (pictured) was amazing and the chunks of meat were oh, so, tender and juicy! + +I hope to revisit Tryst Café sometime soon. My only hope is that they clear up some of the confusion about what specials are available and appropriately train their staff to know what is actually included, when specials are available and for what price.",review,ltGh04bjEBhwItWVVG7UJg,0,2,0 +Bjt3rB73dvSDe1XEPEWc6w,2012-07-07,tdadRAEJVveG3j177Miw_A,5,"Great place for Sushi, ordered the Musscles ( Caution very large order even with only four) Great wine. Ordered Eel Crunch Roll, Tuna Roll, Soft Shell Crab Roll. All of it was to die for. A little Gem. Pricing is competitive not high or low. Environment is pleasant, service was wonderful and waitress was very helpful with suggestions and information.",review,m5-3onu1zp4l50V-PmZKgg,0,1,0 +t4aP7ksa716XY6S4EsWFqw,2011-03-20,9Xq0YgW-H6mbB3dAddSibA,5,"Been here twice now and tried two different dogs and two sides. Nothing was disappointing. I have tried both the sweet and spicy dog and the hana dog. Both dogs were great and had very distinct high points. The sweet and spicy does something very rare for me and actually gets me to enjoy pineapple mixed with other foods. I this dog had great flavors all over including the dog itself which was perfectly cooked and the right amount of heat. The hana was just a stack of messy amazingness that had a real mexican flair. The bacon is the real standout adding the great bacon flavor and a crunch that gives the textures some depth. + +The sides were good to. The chili is not some canned stuff and is good. The tater tots are just awesome though and nice crispy outside and that soft pillowy inside you crave. + +If you want a gourmet hot dog this place is not going to let you down.",review,XeoAojoz5johV2MQ5ngNig,0,1,0 +_TekkyyFeX_8MBepPIxuTg,2010-09-10,zzDtNQppArWnTVNZJrQEvw,4,"I love paletas. I found this place through Yelp and loved what everyone said. I grew up in South Phoenix and I do remember the paleta carts rolling around. Since those aren't around I had to find an alternative. + +I do recommend this place however for me $3 / paleta is quite high. They used to be $1. + +FYI: It's cash only.",review,rYG_FSHAdLp2BmkKKCt_IA,1,2,0 +TMdHhDI7jYQ9206dtvrBgA,2009-10-05,egj6lfYCfSrkcrIPYw3C-g,1,"AWFUL. Not sure it classifies as food. Burrito consists of a flour tortilla and meat. No salsa, beans, cheese, sour cream, guacamole. Nada. Plus they won't let you add anything to it. Everything is as is. The cheese enchalada had cheese but it was not gooey and melted. The food was barely luke warm. Service is also mediocre. The salsa was gross. It was super water down. The best part of the meal was my Pepsi.",review,NsIoM2PlaL28E-jbrs4Zlw,1,1,1 +vaqmESluryt5i4Wbkb6KRA,2012-07-26,rIyJ3oWF79QzKOcsgkhRoA,5,"Best Cakes around! + +This may sound crazy, but I've never actually been in this place. But I've tried so many different things they have. + +My job goes through Karsh's for all the anniversary cakes, catering, and special events. We get cookies, cakes, and other assorted pieces of heaven from Karsh's. Recently, my coworkers wanted to try something different. They got an eclaire, cake balls, and mini rainbow cakes. The rainbow cakes are the best thing to ever go in my mouth. I could eat those for days. They just melt in your mouth plus they're covered with chocolate. What? Yes! + +My friends also got me a Karsh's cake for my birthday a few years ago. I wish I had a picture of it. It was so pretty with a butterfly on it. And it tasted amazing. + +Though I've never been a paying customer and I've never walked through their door, I love this place and highly recommend it for any event you may be throwing.",review,S-07w5CJfDmEBTNZ9V-ycw,3,3,2 +pwpl-rxwNRQdgqFz_-qMPg,2011-11-21,vXNjIF49bZ7zFqEYgO5QTw,5,"This place does not disappoint. I've been here quite a few times with coworkers and it's always a good choice. + +Cute place - I especially like sitting on their cozy, covered patio. + +I hate mushrooms but somehow LOVE their fungi pizza. I think it's the truffle oil that makes it amazing. I've had a few of their other pizzas too, which are quite good as well. All of their salads are delish - you can't go wrong with any of them. + +If there's just one other person with you, you can't go wrong sharing a pizza and a salad. + +This place is WAY better than Pizzeria Bianco. + +Will continue to come back here!",review,fJGWSgGsvb6leJzOuE2O3Q,0,0,0 +NN2qs5B713vM6BDcMyrg4A,2010-12-19,kRqqxCp704DDaEPCp_NIpg,4,"We ate here for the first time this morning. The food was better than average, the portions were generous and the service was both fast and friendly. + +After seeing that their sausage gravy is made from scratch every day, I had no option but to try it. It didn't disappoint. It was creamy and delicious but not overly greasy or heavy like sausage gravy can so easily be. The omlette my husband and I shared was tasty and the veggies were fresh and plentiful. Our daughter's pancakes were fluffy and perfectly cooked and very tasty. + +Anytime we do a sleepover at grandma's in north Scottsdale, this is a sure bet for breakfast!",review,2TX0Gv0k6ZtEfVyImcvnNQ,0,1,0 +5_tsOGJQDDl9iKOr8K79Rw,2012-04-16,fItDI2tcihGFwY1HcvuKVg,5,"I'm not generally a big fan of burgers, but I love this place! Their ""blu burger"" is amazing! Bleu cheese crumbles, carmelized onions and thick, crispy bacon on an awesome onion bun, oh my! I highly recommend adding avocado to it as well. I can't speak for the other sandwiches because I love the blu burger too much to order anything new. Heh. + +The zucchini fries are a thing of beauty AND they allow well-behaved dogs to hang out with you on the patio while you enjoy your meal. They even brought my little guy a disposable water bowl! + +I've also had great luck with their waitstaff, everyone is friendly and on task. It's pretty busy on a Friday or Saturday night, but just perfect for a Saturday afternoon lunch.",review,6_W_Ym-DuBhO3DV9-nsJeg,0,0,0 +X8dNaEFH7LWDt1ORmkfDTg,2012-10-18,Axonta0gPQLT1EIg-t9MJQ,4,"As far as Subway's go, this one is better than most than I have been to. I frequent this Subway quite often as it is the closest Subway to my office. The candor from the ""sandwich artists"" is always refreshing. You can tell most of them actually enjoy their jobs. Once I found a piece of plastic in my sandwich. You know when you open a bag of turkey and the edges of the bag are all tough to break open? A sliver of that ended up in my sandwich. The manager was quick to act and ended up making it a non-issue for me. I appreciated how he took charge and took care of it. Just another reason why I go back.",review,CM_vuEc6jKqpODm4hZJy8Q,0,0,0 +BFNxp4o6gJEO5PjD13PFKw,2011-04-11,C7zBzY2ktDgJea7Iwqmhyw,4,"I don't come to AMC very often, even though it is the closest to my house, has great parking, good movies. And there is only one reason....THE HARKINS $1 SODA CUP! Listen, AMC, get something similar and you will have my business every time. I can't justify going into a movie theatre and paying $4 or $5 for a soda. So you know what I did? I snuck it in in my purse. Paid at the kiosk so never really had to talk to a person. I'm going to do this from now on if I go there. I have a new purse, soda cup fits great without spilling. GET A SODA CUP AMC!",review,6ZXbTu3isjKoD42_iKOhqA,0,0,2 +W-9YqWhkfeK-K3xGFvFeuw,2011-11-29,930PX8SNo5zxtlcJOio4ig,4,"After browsing at the Bookman's next door, we were feeling hungry and were tempted by the notion of tasty burritos. We ended up getting non-burrito meals, but were fully satisfied with our entrees. The green chile plate was filled with perfectly cooked pork with a spicy tomatillo sauce that went well with the pork. The horchata tasted freshly made and was very refreshing and light. Overall, I think Big Burrito is a good option for those that want a filling meal without breaking your wallet.",review,uZbTb-u-GVjTa2gtQfry5g,0,1,0 +2W2AwR-5z_jQ0Ihg9A5cPg,2011-02-20,pK3RNF0-t9Wq5p7OJ_1huA,1,"THIS PLACE SUCKS!!!!! It really deserves NO STARS!!! + +You can only like this place if you don't know anything about Vietnamese food. + +What I tried... + +Bun Bo Hue: Broth didn't even taste like Bun Bo Hue. Spicy but has no flavor. Where's the beef shank or hog's feet? You can't have Bun Bo Hue without the shank or hog's feet. They use the cheapest cuts of meat. This item was on their Daily Special. + +Pho Chin Nam: The broth was super sweet. You know what that means....MSG galore!!!! Not even a hint of Anise star in the broth. How can you specialize in Pho if you can't even make the broth taste right? + +Service stinks. I hate it when the waiter holds the bowl in such a way that his thumb is on the inside of the bowl while serving it. The dude never refill the water, ask how things were, etc. + +Vegetable platter was not fresh. Bean sprouts were starting to brown. + +If you can't cook something why even bother serving it to customers. I don't know about other entrees they offer but I won't be coming back to find out. + +This has to be one of the worse Vietnamese restaurant in the valley. + +Check out my extensive list of Vietnamese Restaurants for suggestions to better ones.",review,s7Tm9oYWqRlBm5ex2OQ1nw,1,1,2 +53YGfwmbW73JhFiemNeyzQ,2009-03-06,sMtaHs-QQPZIC-spZSJqbw,4,"Dined outside. It's a must do when the weather is right. +Fit's nicely into the 'Fashion Square' mentality an aura. +Great appetizers and they did a great job on the steak. +We'll go back again sometime.",review,QsWWVw4b2FBcg038q1w6oA,0,2,0 +bgTB6MgdVQssXhkNJ7qIfw,2011-07-21,IcwlOBfr3lPLQ8BzhLdmIA,5,My favorite sushi restaurant ever! I love their ama ebi nigiri (sweet shrimp) and always craving for more. For this visit I tried their dynamite scallop roll and salmon roll (with asparagus inside) and it was so delicious makes me craving for more. The pork ribs were very delicate and it was melting in your mouth! What makes this restaurant to be my number one spot of Japanese restaurant in the valley was the sushi chef service is superb! They ran out ama ebi and I told the waitress that one of the reason I came there is for that ama ebi. The chef suddenly came back to me one hour later and said he saved one ama ebi for me!!! What a service!!!! I'm so thankful of this wonderful dining experience and will definitely become one of their regular customer!! Love this place so much!!,review,59pVYStY0yKpRmODFIfDww,2,2,1 +mhQCxOiqp03qnhGRTtPduw,2012-07-07,PCjnn__E8AzNa2kXFXxTHQ,1,Horrible service.,review,rvaJcf5OIY2So_pkoqDHLQ,0,1,0 +KHgRmDcFxi8neGVUWlZ2mA,2009-04-21,35CYe9pOd7LHM3Y65MRcfQ,3,"Sandwiches are pretty decent and tasty..however.. + +they don't include drinks, salad, just a small cookie on the side. We just ordered 2 sanwiches and 2 sodas, a little on the overpriced side, totaled out to $27 just for that. The sandwiches are gigantic or anything. just left feeling a bit hungry and disappointed.",review,uNbB1uR4EBhmygUc3IfPAw,1,3,0 +SDwYQ6eSu1htn8vHWv128g,2012-01-19,TjZX-IYOuJRpyC4mccjuew,4,"This place is fast becoming a favorite happy hour stop for my fiance and I. Service is friendly, the panini's are delish and the bruschetta is to die for. Anything with their yummy fig jam is amazing. I love the ambiance. Very casual, trendy and lively with great outdoor and indoor seating. I'd say service is on the slow side, but it's understandable b/c the place is always packed. They have pretty good happy hour deals. I will say that the parking situation kind of sucks (valet only unless you want to park down the street). But other then that, I have no complaints and will definitely be back!",review,PJjZfTRsUhETBql9Of158Q,0,0,0 +FX5mDx1QR31IoCZznjJJ5w,2010-09-03,VEkL4BbZstWHZSr77ZecBw,4,"Okay, if you're looking for a genuine Chicago Vienna Beef Red Hot or a NY Sabrett street cart dog; then you might not understand Hot Dog Stop. HDS does sever Sabrett's but this is more of a gourmet hot dog place. + +The portions are very generous to say the least and very tasty. The folks who run the place are from France and have put their own spin on things. So if you're fixed on what a hot dog should be, then go to Luke's, or Al's or even A & W; but if you want 'something completely different, to borrow a phrase, then by all means try HDS. + +Enjoy!",review,1BW2HC851fJKPfJeQxjkTA,0,0,0 +31bXixwy2GNmRlhpl21reA,2008-06-27,RwTwUsV1oPX_wARnRek-eg,3,"Fancy shop with great kitchen items that I would use for our kitchen. +It seems whenever I go in there their products don't work. +Avoid ordering any of their coffee pots because we had to return them twice in a row. It seems like whenever we walk in there the employees don't seem to be knowledgeable about the products there. +I give this store three stars for having a variety of kitchen items and an enchanting place to visit.",review,AQum4T1dROG2taFhCWNkDA,3,3,3 +dewq6aevfoNFvJBqM7PG5A,2007-11-14,ZJxtTVD3WXlgSvCwrVh7lQ,2,"I agree with Chris L.; I was disappointed with the cafe. Granted, I was looking for a college-type coffeehouse where I could grade papers, and this place just didn't have that sort of lounge-y feel that even certain Starbuck$$ have. There was no background music being played, and even with my ipod/headphones on, I was distracted by nearby conversations. I got much more work done at 3 Roots near campus.",review,FZXXSGOw4BBWmB7eyAGSnw,0,1,0 +AgJbkqR-wre409if4fTbWQ,2011-08-02,TNjJ7gjtr7gjJ_LQDrCUIw,4,"I have been trying to reduce my caloric intake and found out that at Red Robin you can order a ""petite"" burger. It is smaller but has the same toppings you order on the regular. So for those of you that don't want to have a burger that is 1000 calories (yes they are and more with the endless fries) , try the petite.",review,KLekdmo4FdNnP0huUhzZNw,0,0,0 +C_eWAEOvkHZ_IZYGwjtpmg,2011-04-25,QfdoE-XqEeCsttJH8g0ugQ,1,"I love Saddle Ranch for its casual night time festivities (including watching people ride the mechanical bull hehehe), but I cannot ignore the fact that the food was disgusting! + +When I think of my meal this past Friday night, I think of two words: dry and cold. The spinach artichoke dip was just okay - a bit on the dry side and not very cheesy. The onion rings were just okay was well as the batter reminded me of the chicken nuggets at McDonald's, maybe even worse. The BBQ burger (turkey patty) was dry and tasteless as was the bacon. Really? It must take true talent to cook bacon tasteless. There are a few things that the menu has going for itself - a few very unique and fun desserts and drinks that I have yet to see elsewhere. I am fond of the giant pile of cotton candy and, though I'm not much of a beer drinker, the beer tower looks pretty badass. + +For me, I came and will continue to come for the fun atmosphere, but I will definitely be staying away from the grub. Adios, cowboy.",review,yhGfcKunPjcy-v-1ppr6oQ,0,2,0 +d6CUe9LjkFFqYtt7WuW5Lg,2012-10-11,9yy_AnOQwfmKQbf3Nv08mQ,2,"So I have been to the location in Tucson and now experienced this one and I have to say that I did not have a WOW or YUMMM drooling moment at either. Don't get me wrong it's not horrible it just has no wow factor at all to me and I will pass next time. + +There is just better Mexican cuisine out there,,, + + +Service was promt though!",review,AeucYo8J-rZjcq09Wuqsjw,0,0,0 +NDHhzgMrTzr_38md_R5WKw,2010-10-23,sRArf54Vmwr5yZjMUm3HCQ,3,It is a salad bar.,review,DU0F18NBXFZ-hsPOmGhzQA,0,0,1 +wl51t6lT7leiX64SlkOx6g,2010-08-29,ANoUbOzGBp_OjAD9k-NBvA,5,"Love it, love it, love it! I have been eating at various Pita Jungles around the Valley since I moved to AZ over 6 years ago and I have yet to have anything that I didn't love. My favorites include the Black Bean Burger, Lentil Fetoosh Salad, all three hummus types, dolmas, and gazpacho, but everything is delicious, so you really can't go wrong! The Tempe location also has breakfast, which is amazing! + +Each location is fairly small, so luch and dinner may require a short wait, but its worth it. The prices are fair and the portions are huge! Don't be afraid to split a dish with a loved one.",review,zLToLBt6Yc1NjDvSphbP7Q,0,1,0 +qIhBNeE64skjowRs6TTwJA,2012-05-27,7x5vVGa50eADM2f7cYN2Sw,3,"Check-in was fast and quick and price was right for what it was. A big upgrade over a discount property and super close to the airport. It does resemble a different kind of hotel in that everything was outside, but the room was spacious and generally quiet. The morning breakfast was solid and the only real minus was the shuttle's delay; some of the hotels came twice in the time it took this one to show up once. But save for that...a more than adaquate experience for an overnight stay.",review,Bv16boLVSNb_uGtZOQ-jNQ,0,0,0 +_cG0BFYyHXcwheKXR5RRBA,2009-09-22,mY9xE7iJ1wnnZEH7FgqGIw,2,"What can I say... I am a bargain shopper! I'm not cheap, but I get more satisfaction out of getting a bargain than I do spending a ton of money for a name brand item at Nordstrom or Sax Fifth. That being said, sure you can find a pair of shoes you'll like here, but the selection is simply OK, and its usually full retail price. Most of the time they have a two-for-one deal or get the second pair half price. Still, its never really any kind of sweet deal.",review,iBO2m9xXivsIbvFnZHsNvg,2,2,1 +So1Z7tydx4QqTLSp91Mjug,2011-04-26,fPxUlWm095ETJ84dRYn1-A,5,"I know Kerrie through my networking and we benefit from her presence. + +I have not needed her service's and most of us don't plan on needing an attorney. But I am always reminded by a tagline that Kerrie often mentions. + +""People in crisis need company, Droban & Company"". + +How very true. When that time comes, and in these troubled days, it WILL. You will need good company. I would look for Kerrie to help and so should you.",review,1gspFi59uDO00PSM5LMlhQ,0,0,0 +1vYaGPKQzMebBJXFCGTH2g,2010-06-23,_oN_enidDDD8MbR3naOsRg,4,"Love this place! I wasn't sure about it the first time, seeing that is in a strip mall, but like the saying goes don't judge a book by it's cover. +I order the CHICKEN W/ GREEN every time and have not been disappointed. EGG ROLLS are wrapped in thin egg roll paper, spicy, & delicious. MANGO CHICKEN & CLAY POT DISHES are also excellent. +Independent & yummy.",review,dUAsWWDh5AzwGOGoh3XEeA,0,0,0 +cdwHgELA2puX2DNfwSt5EA,2012-02-05,rWi4x7gXd3HabS1eJwB0hQ,5,We had brunch at El Chorro today and it was wonderful. The patio was comfortable with the umbrellas and heaters. The service was outstanding. The food was delicious. I had the creme brulee french toast - it was carb/sugar heaven. Everyone else enjoyed their food. The eggs benedict came out perfect. The BLT looked awesome. The fries were delicious. We will definitely be back.,review,Z4xZrZi_AMtOR6I24dPrHQ,0,0,0 +PXmR1MgOAWB066XH20HjxQ,2009-03-15,0CzS1NdUoypjA0lXuQ4WDQ,4,"Thai food is one of my favorite types of cuisines. I have been going to Thai Rama for over 5 years now, and they are always consistent! this place is a little, hole in the wall type. (those are usually the best) +Whenever I am having a thai fix I usually order the same items. Sometimes different... But not always. +OK.. +1. Thai tea... the best in the valley! +2. Pad thai with chicken... level 5 - 5 is usually med spice but to some ppl its very spicy... you can always lower the number to a 1 or 2 and it'll still be just as good. +3. Yellow pork or chicken coconut curry with potatoes, onions, carrots, & pineapple.... level 5 again.... my fave +4. There's one more beef dish that is absolutely delish! But, I forgot the name. Basically all it is, is thick rice noodles and thinly sliced beef stir fried.. Kind of like a chow fun but better! + +Oh and I would also like to add that they have a very friendly waitstaff and pretty good service. + +If you like Thai, check this place out!!!",review,JwqH67LU6ARuKiLjaOhPNg,1,1,1 +W8WyVVxinyRjzP8gJa7ILg,2009-01-20,lgrfMIvhkCzclg5KEharjw,5,"I have a fond place in my heart for this establishment + +I've been covering my all white meat rice bowls in their sticky spicy teriyaki sauce for 10+ years + +I've lived all over the world + +I always crave three things when I'm not living in Phoenix (or the USA) +1. Skim Milk +2. Mexican food +3. Tokyo Express + +Now pay attention + +If you like spicy food and teriyaki sauce, here's what you should order + +An all white spicy chicken teriyaki bowl +5 extra sides of spicy sauce +A small salad +2 extra sides of salad dressing + +Ok, so I REALLY like sauce. Really. + +This place makes me want to cry I love it so much.",review,PShy2RYNadDUhJf4ErOJ7w,1,1,3 +iV7D7fHKb-bF9fCL_bEMtA,2009-04-22,WjkBCWy7pu4U2-3PbvM0bg,5,"Cork is an enigma. + +What makes it enigmatic is how damn good it is... Too good for Chandler and maybe too good for the valley. + +The portions are just right, and anybody that tells you otherwise is a fat ass or a glutton (I'm 6'3, 200lbs. and I was satisfied). If you want large portions though, go to their lunch/brunches. I've been there twice and had The Lamb Chop, which was amazing on all levels, and I've had some serious lamb in rural Bosnia, which has been labeled the best in their country... sure enough cork's stood up blow for blow. The other entrée I experienced was the buttermilk fried chicken. I was so amazed by the lamb the first time, that I had to try something more ""simple"" in order to qualify their food in regards to regular places. Let's just say the chicken was not regular, it was outstanding. The appetizers are crazy good... can anyone say king crab legs? + +The wine selection is top notch. the booze selection is killin, and they even make this amazing Italian lemon stuff that's like 90% alcohol. make sure you have a designated driver, because this place will inspire winos and boozers to indulge to their fullest. + +Go to Cork, because it's that damn good!",review,l81ILmOhky5bG7o4r3rkhQ,8,12,6 +OY76JYsWn1rhb6Te2BE5Rw,2011-08-19,9IhdGx6Z4OUYXW9oPrPuXQ,5,"Went to Yogurt Kingdom for the first time tonight. It was perfect. Lots of flavors to choose from. My favorite is the Tart Vanilla. But I got a large cup and tasted at least 8 different flavors and I enjoyed each and everyone. I wanted to go back and get some more of the Tart Vanilla but my husband gave me one of those looks when I suggested it. You can either eat inside or outside. The place is decorated so cute. There was a very cute and well mannered girl to greet us and told us how it all worked just in case we had not been there before. They offered to give us any samples that we might like to try. There was a gentleman there who turned out to be the owner. He was very kind, friendly person and glad that we stopped in. The bathroom was very clean and the entire place was tidy and well maintained. We will be back very soon. I would recommend this place to others that like yogurt. You won't be disappointed.",review,haYHbLXLX2cmHq1wQAEtfg,0,0,0 +DgOAOO10ibNDSX7S_7L1Ag,2010-11-18,76_25c6pOWVCGGN6IaiZUQ,4,"Went there with the Wife. Lots of stuff for the ladies. I would lay off making any real purchase here on my own, I would of course consult the Mrs. In regards to what she might like. Way to tough to try and pick something out in here (Louis Vuitton, Gucci, etc.) that is the stuff for the ladies to decide on. Nice place, very friendly staff, warm, and inviting one to buy.",review,DwU7KVfebA70AlVtX0iOWw,0,1,0 +hfl62LX14YqNpG0g0Tj6_Q,2012-02-27,2hvg6T-sCh7upAe17Jxs3w,5,"I find it hilarious that someone would reference this place as being terrible, compare it to (overpriced and bland) Humble Pie, and in the same breath say it was the best chili relleno you ever tasted. + + I can't vouch for the chicken tacos but most street tacos are nowhere near packed with meat. By definition they are usually very tiny with onions,some guacamole, a little cabbage, and some small cuts of meat. I can say the tilapia tacos are tops(large filet on each) on the list of my girlfriend's quest for good fish tacos. I can say the pork nachos are the best I have had as the pork reminds me of Los Dos Molinos in a small way. The empanadas are excellent as well. + +If you go for happy hour you can get two empanadas for 6 bucks. You can also get 2 large fish tacos for 6 bucks. Would you like some awesome tortilla soup? 4 bucks. +If you get the dinner version of the emapanadas with a large portion of some of the best rice and a side of black beans I think it sets you back about 11 bucks. I have also had the chili relleno and it is the best I have tasted as well leaving me to wonder with the single review you have for anything, why the venom? + +I learned long ago to ask for what is recommended for before you order and if someone recommends a place try what they are harping about first. When I asked they said the chili relleno, pork, empanadas, and red sangrias. Guess how my dining experience went? Try ordering tacos from Los Dos Molinos and you will leave pissed. Order the green chili pork and you will drive 100 miles for it. + +I do hope you give it another chance I have honestly never had anything sub par here in my 7 or so visits and they seriously could charge way more for quality than they do. I agree that Main Ingredient is great also, that's why I took the time to write about it. + +But to reiterate: + +11-13 dollar for most dinner items besides new york strip(on the list to try), is not pricey + +happy hour has most items for 4-6$ + +street tacos are not bursting with meat + +ask what is the best thing on the menu when you order some place then you can write it off all you want. + +Humble Pie was more pricey and not worth it, All it does is take up parking from a much better place next door. For a place with the reference to pizza in it's name you would think it would be better, it tasted like peter piper. + +I would love to know what a good chicken taco is in your opinion, I cant think of any besides maybe the California tacos at the now closed Chuy's, but the ones my sister ordered from here were full of chicken and topped with a nice chipotle/ranch like sauce which is similar.",review,9g_ARKx0eJmNH8oO1TR9rQ,0,0,1 +T1EfT96sCrn_UUWQMhzB5w,2011-10-31,UMjqZj-SJ25VnLyB3EV4ug,3,"A coyote ugly knock off but a cool place. The ladies were friendly and there was one who could dance her ass off. Dayum!! Seriously though, I was the token black chic and had a good time. Except for the one lady that seem to attach herself to me. Weird to say the least. Overall a cool place. + +Be warned, do not attempt to take any pictures in this place. They will hunt you down and stop you. Especially if the ladies are ""performing"" on the bar. A big no-no!!!",review,4E_nPWw89FLFHdNsEgMH-g,1,1,4 +VsrvWdZL2993olnW3z8R3A,2011-08-20,GW5D1Dv1Uc8X0_-yf0pzPA,5,LOVE Five Guys!,review,FYdLG8vxUfhqd6v-QQHRkw,0,0,0 +AOLx-xr0JsFhle4K6xRHfQ,2012-04-13,P2Ff78O44LEFLImqHhdAGg,4,No more dinner hours! :(,review,xXxoYIsbfXFK8BKndCcnZg,0,0,0 +nBfusVbqwul0BU0Rcrlelw,2011-04-29,eqfiKLq1hy1cBZ5WOK0BLA,4,"This place is always one of the first places my husband and I go to, once we are in a city that has one. Having lived in Phoenix for around 10 years, this has always been one of my favorites. Recently they have added new rolls and sushi to their menu, and I must say, Great job!",review,V_jAm6IC-nthgZiNn5OkIw,0,0,0 +SIzUsf5x2RSkPwJS--A4Rw,2008-04-03,wVNxD3WQ_IdKifz3M_fG8Q,4,"I discovered this hidden gem while shopping at TJ's and returned for Happy Hour between 4 and 6:30 from T-F. The patio is in the afternoon shade and far enough off Scottsdale Road to avoid street noise. The seven Tapas (appetizers) attracted my interest and I ended up selecting 1) ebi prawn with grilled fennel, 2) tartine of bouillabaisse and 3) Medjul dates with merguez sausage, sugar cured bacon for the Happy Hour price of 3 for $10 vs the normal 3 for $15. The single prawn was large and equal in quality to the fresh prawns I had just tasted in New Zealand plus the fennel added more flavor. The tartine of bouillabaisse was mostly small shrimp but again very tasty and tempting to order a bowl the next time around. The three Medjul dates with sausage/bacon was an unusual combination to my culinary experience and superb in flavor. The select wines were about half the normal price and a definite value at $5 per glass. In talking with the waiter I noticed there is live jazz on Fridays between 5 and 8. I will definitely have to return on a Friday to try the other tappas and listen to the Swedish singer who sings some songs in German... see tappas photo... + +Update 4-25-08 - Happy Hour season ended this week... tappas special no longer available but the thin crust pepperoni makes a good starter. Entrees are in the $$$ range...",review,J72XoQspNBmPsX2iKl2YvA,3,3,1 +EGiGWZp_zSqdeftiFQ7MbA,2011-06-13,OvsDIpdK5T4G81NUzWAkTA,5,"This is a great Mexican food restaurant. I eat here for lunch once a week and have never had a bad meal. The ""Asada y Enchilada"" is my favorite dish. If you are an avocado lover like me, this is the place to go. I always order extra avocado because they have the best and ripest avocados I have had anywhere.",review,fi5y6-daDzTIQ7wOKaR7xg,0,0,0 +Zh_y9AmSfWZpR2JB9wye-A,2012-05-19,MCHvLpzHO6ByEcZ74lCVBg,2,"Are there food that is NOT-true ? +OK... I got it, food has to be true to the original taste ... which mean it doesn't always taste good, I supposed .... +Had the Shrimp spring rolls .... Turkey Bolognese ... could be true to the ingredient but not true to the dish of how it should taste.... + +Fit very much in the north scottsdale vibe .... 'look at me, I only eat healthy, organic, true and whole food' ... which actually could be a good thing ;)",review,sUTQfzzxxc2c3g6cFH19pQ,0,1,0 +QCxXYA13PtkD3wec47_r8Q,2012-03-14,V2N2TCqnaqMYfg7zXGG-Rg,1,"""Hipster,Trendy"" ????-I think NOT !!!! Very disappointing......weird crowd ( older men on the prowl? ) , and unfriendly bartenders w/ lots of attitude. I've given this a few tries thinking I just hit it on a bad night , but won't be going back. So many other great places in Scottsdale to visit !",review,JEQ6el2-tLtKJU6k_SpE-w,0,2,0 +24V8QQWO6VaVggHdxjQQ_A,2012-10-18,q4qgrm3h6JHh27MrIKPjWQ,2,"Stopped here for lunch with my BFF today. + +Nowhere to park, forced to valet, meh... + +Love the atmosphere here: classy decor, beautiful patio. Everything on the menu looked delicious. I had a hard time choosing between many foods that I love: crab cakes, goat cheese, crepes... I wanted something lighter so I ordered the oriental chicken salad. In the meantime, our drinks were brought to the table. BFF pulled the spoon out of her iced tea to find that there was some leftover peanut butter still on it. The question is: who left it there? Don't know. Gross. This was pointed out to a server (not ours because she had not returned to our table). Our server brought out a new iced tea. She was polite, but not necessarily apologetic. + +When our meal was delivered to the table, BFF pointed out that there were tomatoes on her sandwich (she asked for no tomatoes). The server said that the other server probably grabbed the wrong plate. She came back from the kitchen twice to tell us that the new sandwich would be right out. So, I sat with my salad and waited to eat until BFF got her meal (It took a good 5-10 minutes for her new sandwich to come out). + +BFF raved about the dressing on her side salad. My salad was fine, but nothing to rave about (especially not for $13). The ingredients were fresh but the ""shredded chicken"" that was described on the menu appeared to be sliced chicken breast. To be honest, I prefer shredded chicken which is why I had decided on that particular salad. DISAPPOINTING. + +The server arrived at the table to ask if we wanted to order dessert. We replied, ""no, thank you"". And she said something like, ""oh, come on, are you sure?"". Again, we declined but I really think she should have offered us free dessert after our bummer lunch. + +The topper? 1 valet guy and 6 people in line to pick up their cars=a 10 minute wait just to leave the place. + +I would hesitate to come back, but that menu is just so damn tempting.",review,Sr-wB9G8KflQjbAS8Q3HQg,0,0,0 +NKMyRG-hK6_HNMlckY7Hxw,2010-06-26,6alV8DjOE0vWNMJvuFG70w,3,"I prefer this location to others in the valley. Except for afternoon rush hour. Dont go there between 3 and 6. Unless youre a senior citizen, then its ok. Youll fit right in. + +I went for dinner and cant complain. its your basic buffet, it seems like it has a larger selection than Ryans or JBs and the food quality is way better than both of those. The brisket and beef tips were great, the only problem i had with the place was the wal mart environment (crying kids, way crowded, people acting like THAT steak was the last one ever made, etc) and i did make the mistake of going during grandma social hour, but aside from that, ill go back when Im craving 10 different things at once, which happens often :) + +Dinner buffet for 2 runs a little under 30 bucks with drinks.",review,eEo1W07PkjR0jLRkMF5m1g,0,1,0 +7tPe20uDErh-iSkfNEWzVQ,2011-01-26,b0NnnjzhDmI7feVNzniZ3w,5,"""So Jimmy, tell the class what you saw at Sweeties!"" + +""OK, well, I saw lots of candy. Old-timey candy and cool candy and neat candy. Lots of it. Real lots."" + +""And I saw people walking around with baskets and talking about candy. And talking about candy when they were little. And talking about what candy they should get for their kids."" + +""Oh, and I saw Turkish Taffy, Maple Bun Bars, Fruit Stripe Gum, Moon Pies, Cherry Mash, Mary Janes, Valomilk Candy Bars,Sen Sen Packs, Goo Goo Clusters, Squirrel Nut Zippers, Flipstick Lipstick, Licorice Pipes, Zero Bars, Twin Bings, Look Bars, Abba-Zabba Bars and U-No Bars. And that was only a little of it. And lots of other stuff."" + +""Teach?"" + +""Yes Jimmy?"" + +""The coolest teacher ever would take her class to Sweeties."" + +""Would they?"" + +""Yes.""",review,P2kVk4cIWyK4e4h14RhK-Q,14,15,16 +62F17L8z4Q4S7U_TayuDBA,2010-03-13,oTm0bBYcbgoMPJloZUpUwQ,5,"Standard Mexican fare - but quite delicious. Pitcher of frozen margaritas was yummy, too. Fast and friendly service.",review,TnTkd3MKoIOKqrsPDzhiog,0,0,0 +4FBHwaMtMQ_x8RQoI2T-jw,2012-02-01,c4hS0F6S-Z42yOTbm3rptQ,3,"Taco Bell/Pizza Hut combo on Dobson and Southern. Typical taco bell food and service. Lunch is very busy at this location because it is within walking distance of MCC, Pima Medical Institute, Banner Desert Hospital and a gazillion apartment complexes. +Parking is easy, but this shopping center is very difficult to get in or out of during rush hour.",review,LX3cTVaS8f2UF0Uuafsfug,1,0,1 +uEJQSIjWui-TDWXaGlcqyQ,2010-09-01,-2oWwvRjNEHNDa4TWVlbAA,5,"My profile says.... + +My Last Meal On Earth: Chicken and Waffles + +Lo Lo's is the reason why. Everytime I visit Arizona, I make sure I hit this spot up. I usually order the 'Lo Lo's' meal which comes with 3 pieces of fried chicken, with 3 waffles and a scoop of butter with syrup. YUM! This meal would not be complete without ordering their super delicious Sweet Tea which is served in a glass jar. + +There are two locations, one in lower Phoenix, and the other in Scottsdale. The one in lower Phoenix is the original location. However, it's much smaller so wait times could vary. The Scottsdale location is much bigger, so dealing with long wait times should not be as big of a problem. + +Winner Winner Chicken Dinner, Lunch and Breakfast please.",review,EDN_wou8EEkuaj5Pd83cQA,2,2,1 +06kfoeRs9Acj82Yl3i9p_w,2012-09-08,VmQvN5b1cCJ3iSB8vteygg,4,"Great breakfast place and much better than Panera. Tried the lemon pancake....mmmm very good. Also had the portabella sandwich....too much on tomato but still good. After eating my gf let out a big burp in front of everyone.....well done. +They have some breads that you can buy here as well.",review,iJUVamUkqL6VfEMfyQoujw,0,0,1 +seu8O6yPQ5Yz8kQv-KFnKQ,2007-03-27,0HFGMJP6omYRFLiFt4pW3Q,3,"I can understand why everyone loves this place-- who wouldn't, right? With so many choices of cool, creamy gelato? Well, unless I am just very unlucky and visited on a bad day, this Gelato Spot has gone steeply downhill. My husband ordered a strawberry-kiwi flavored and I chocolate peanut butter. We both agreed: the gelato tasted grainy, with noticable ice crystals. And worse, the flavorings tasted like they came from a bottle, not fresh. IMO, this has become more of a place to see-and-be-seen -- not savor good gelato!",review,lC4X2crUuxT9Ac9BlOX4Uw,3,4,3 +h6jfMpTZpNduLG0wE2tbaw,2009-09-05,h0ggxmYzSkmlThpG85Frmw,4,"*cut to scene* Friday night, lounging around discussing the lameness of the evening, ready to indulge in a new adventure. six pack of Newcastle sits untouched in fridge and bellys aching for fulfillment. yelp.com search reveals a local japanese eatery nearby. + +enter, Hana. + +first off, pre-game excitement for this BYOB, local, fresh sushi spot. Newcastle in hand, my friend and I strutted in here at around 8pm on a mildly warm Friday night. the place is jammed, and a couple parties stand around waiting for tables. great, a long wait. nope, two seats open at the bar. sat down, and our beer was immediately taken and put in a fridge to ensure it wouldn't lose any of it's remarkably smooth quality. first beer is poured, and the excitement ensues. friendly and welcoming server devluges us in the specials, and unfortunately they were out of most of their fish as they have been for three weeks. toro and salmon were our options, so we went with a special for the night, the spider roll, and the vegas roll. also, edamame to start. + +the food was superb. the edamame came spicy with a side of chili flakes and siracha for our never ending quest to burn the shit out of our mouths. a second round of newcastle was brought upon when our first was finished, and the sushi came shortly thereafter, looking like little pieces of art. both sets of rolls were enormous and came about 6 to a plate. the vegas roll was packed with cream cheese, avocado, and salmon. the special roll, the spider roll, was full of crispy soft shell crab and just enough spicy-ness for a much needed kick in the mouth. one dip in my wasabi/soy sauce concoction was more than enough. + +our third and final beer was poured by an overly-anxious and over-stimulated, presumably newbie, bus boy. I had about 4 inches of head on my beer and my friend got hers spilled and nearly twice as much head. he excellent waitress we had made up for this guys slips during the meal. the staff wished us a nice farewell on our way out, and I felt as though I had just left a very close friend's house. + +I will definitely be back with more six packs and good friends to share this little diamond in the rough with.",review,HY9qpAamqLXFoa7xMwNntg,1,1,1 +aRkYtXfmEKYG-eTDf_qUsw,2010-04-13,WLuZQj97BuzNs1bTkPThtw,4,"The drinks here are great, and the baked goods are even better. There is a nice ambience about the place, lots of nice furniture. I love how the baristas make the lattes and cappucino's beautiful. The owner, Jeff, is also a great guy who's around quite a bit. The only criticism that I have of it is that the place is small and if you're coming out on the weekends, you need to get there before 8:30 AM otherwise there will be no place to sit.",review,cOfNTptaK6p5oUq5_ROokg,0,0,0 +oWb5JjxoPaFSmpGwJ3-Ntg,2011-08-31,2LvAos4wAPJynDsdl8dRUg,3,"In a hurry in the Phoenix airport and saw Blue Burrito Grille. Ordered the Big Blue Burrito with pork. Unlike a previous reviewer, I got a LARGE burrito with plenty of fillings including some very tasty pork. The salsa was also very good. Their website says that the burritos come with chips and there was a huge bin of them on the counter but alas my burrito came sans chips... which I didn't notice until after I was on the airplane. A good place for a quick Mexican lunch but make sure you get the chips.",review,8DBCh1ykGdM71X25KNXiZg,0,1,0 +L9UYbtAUOcfTgZFimehlXw,2009-07-31,F9KzEFjAtbWr3h8toNtDgw,5,"Treats: We tried the cookies (chocolate chip and chocolate truffle) and would have to give them 5stars. Delicious! +Breakfast: Seems like they changed the recipe for the turkey maple sausage so it now has an odd herb flavor and less maple flavor, but tried the flattened meatball and liked it so might switch to that option. +**If you go, be sure to check out the bathrooms. Each one was decorated uniquely by a staff member, and the sinks are shared by both genders. You also get to see how very clean kitchen the kitchen is as you walk to the bathrooms, so that is a great bonus. Overall, a great non-chain place for unique and delicious food.",review,2lvfBteL5ny4CBjNIk9Mwg,0,0,0 +ttpZx2t4fMAApdU9MFG91w,2012-07-20,rR322HOBSV2JSY6omtNoPw,5,"I first joined 24 hr fitness about a year ago, and I have had nothing but good experiences with the staff since the first day that I came in. The people behind the front desk have always been very kind and attentive to my needs. If I ever have a question or concern, it is always promptly answered or dealt with. Some of them have even taken the time to learn my name and greet me as soon as I walk in the door! It is very impressive and makes for a very pleasant experience. :) + + +On another note, I have been training with Trace for about 6 months now. My goal was to lose a little bit of weight and tone up my body, and I could not be happier with the results! In 6 months I have lost 12 lbs. and I look and feel amazing! He is incredibly knowledgeable about training and nutrition, giving his clients hard workouts as well as meal plans. Trace is the total package! + +**TIP: Try Trace's boot camp on Wednesday evenings at 7:30. They will kick your butt!!",review,iPnpD62l5LUL7WXaI3SJFA,0,0,1 +qNqvJIH4_KENAajUfRZKoA,2012-10-29,UoxTfwbLylXWpwrn8tYEeQ,3,"I thought I had reviewed this location already? Weird. The one closer to the mall is a total hassle since it is crowded with no parking so it is much better to go here instead (even if you are actually shopping at the mall). You all know about the food and you either love it or you hate it but I just like this location since there is usually not much of a line, at least in the evenings.",review,VPXgY9lGJF3XC4ZpusxNuA,1,1,1 +HIiVx2mseVWKtx8TKfWC_A,2010-06-07,TrFMPwWeaCWu8yDVWVkYwA,3,"I have never been here before so I didn't know what to expect. Every time I heard the name ""Duck & Decanter"" I would picture a nice sit-down joint with waiters and pictures of hunting stuff on hunter green walls. This is certainly not the case I realized upon entering. It is just a sandwich place that also sells a bunch of random bric-a-brac. It is all basically picnic stuff I think. I dunno...it was real difficult to get a feel for the place. It was all pretty random to me. But anyway, about the food.... + +I ordered ""The Duckling"" sandwich was is one of their ""signature sandwiches"". It seemed like a good selection because the name of the sandwich and the sandwich itself had duck in it and so does the name of the restaurant. However, the sandwich was just ok. Nothing special. Not worth 9 bucks. just a few slices of meat in between 2 pieces of bread. + +All the sandwiches on the menu did however look interesting. They are definitely not your typical ""sandwich place"" type sandwiches. Well some of them are but they all have that special Duck & Decanter twist. The have some deli type sandwich selections as well but I would prefer to just go to a deli for those. + +My wife ordered the chicken salad and it was very very good. I would order it if I ever visit the place again. She ordered the Sonoran with spicy oil & vinegar. It was very tasty and no mayo or any of the bad stuff. + +The service was very friendly but I took a long while to get our sandwiches. There must have been a large order ahead of us or something because there weren't many people in the place. I couldn't imagine going here on a weekday during the lunch rush because the line would likely be out the door and would take forever to get your food. Luckily for me I went on a hot Sunday afternoon.",review,rLtl8ZkDX5vH5nAx9C3q5Q,0,2,1 +qhIlkXgcC4j34lNTIqu9WA,2011-03-16,qu7tpZFxaPSxiuIgFiiYlQ,5,"Leah, the trainer, at Dog House Training Academy is great. She's friendly, knowledgable, and makes herself available via e-mail or phone should you have any questions. Her knowledge on dogs is extensive, and even though you're just paying for the class, she'll gladly offer up advice on any issues you may be having with your dog. The classes seemed simple enough to me, but there was a client in my class that just wasn't picking it up at all and blatantly disregarding her techniques. I was impressed with how Leah handled the situation and the customer. She's very thorough, and always explains why she does things the way she does, and why it works. So there are no questions, and it's always made perfect sense to me. With the quality of service, and the knowledge that you get to tap into while you're training with Leah, you just can't find a better deal out there. Her rates are competitive, and she offers referral discounts too.",review,RKxsZo6XkRU-0y1JgqqsBA,1,1,0 +R6aazv8FB-6BeanY3ag8kw,2009-09-26,gP17ykqduf3AlewSaRb61w,5,"This place is super cute lunch joint. I had the sloppy joe special and it reminded me of a home cooked meal back in the day. I ended my meal with a classic vanilla milkshake which was superb. Oh yeah! if you're in a hurry for a quick good sit down lunch, this place is it. our food came out SO fast. I will be returning shortly. + +You also MUST check out the vintage clothing/ furniture in the room next door before you leave !",review,mtoKqaQjGPWEc5YZbrYV9w,0,0,0 +JOZqBKIOB8WEBAWm7v1JFA,2008-07-22,QI9rfeWrZnvK5ojz8cEoRg,5,"The staff is great, the food is great, even the cappuccino is great (had my first one today). + +i work close by and I have a choice where to eat and it's very often Acacia for breakfast and lunch. + +A few of my favs are: + +- Chicken Salad Sandwich +- Southwest Ranch Salad +- Omelets + +Enjoy! (maybe I'll run into you there)",review,uBAMd01ZtGXaHrRD6THNzg,1,2,1 +OllL0G9Kh_k1lx-2vrFDXQ,2012-10-23,U23UfuxN9DpAU0Dslc5KjQ,4,"Yay, even though I miss living in Coronado I am glad to be back at the Melrose America's. If you have read any of my reviews you know how disappointed I was with Coronado America's rude service that I boycotted that particular location. + +Now that I am back around Melrose I can once again enjoy Happy Hour Tacos and drinks, or their delicious breakfast burro and cochata. If 7th St let you down try 7th Ave.",review,Gh1EXuS42DY3rV_MzFpJpg,0,0,0 +XHr5mXFgobOHoxbPJxmYdg,2009-09-28,udMiWjeG0OGcb4nNddDkBg,5,Wow! Went on a Sunday around 11am - busy but not packed. Roomy and comfortable. GREAT food. Bacon meaty and tasy. I had the french toast on recommendation and it was fantastic. Great atmosphere...just an all around great place. We were in from LA for a baseball game and wanted a non-chain local place and found this place on Yelp. Glad we went!,review,yRYNx24kUDRRBfJu1Rcojg,0,0,0 +cdacUBBL2tDbDnB1EfhpQw,2009-12-16,bVU-_x9ijxjEImNluy84OA,2,"If Cowboy Ciao is the best restaurant in Scottsdale then Cafe Carumba has to be just about the worst. This place is terrible. I went here with my family, and not a single one of us enjoyed our meal. The ""handmade chips and salsa"" were clearly store bought, and each of our entrees were consistently, blah. Nothing new or intriguing about any of their dishes, and the food just wasn't all that great. + +With so many great choices in Old Town, why would anyone ever eat here?",review,V9Uqt00HXwXT6mzsVCjMAw,0,0,0 +EWMwV5V9BxNs_U6nNVMeqw,2007-10-20,g4LsVAoafmUDHiS-_yN4tA,5,"When I lived in Phoenix, I was a regular at Fez. My friends and I probably averaged twice a week, and there were likely weeks when we were there more. The atmosphere is really wonderful, a rarity in Phoenix. The food is very consistent and almost everything on the menu is unique and flavorful. I must agree with some of the other reviews, that the waitstaff is very hit-or-miss. I've had wonderful service and terrible service, and there are times when I've had to go and ask the bartender to send someone over to our table to take our order... as regulars, in particular, I wouldn't think that this would be something we would have to deal with. That being said, there was one time when they were understaffed and the manager was very apologetic and even sent us a bunch of appetizers free of charge as an apology... so I haven't personally experienced the attitude that others report. I miss Fez... now I live in San Diego. When I go to visit, it's always on the itinerary, every time, usually as soon as I land.",review,TLj3XaclA7V4ldJ5yNP-9Q,1,1,0 +iDYzGVIF1TDWdjHNgNjCVw,2009-09-11,bKjMcpNj0xSu2UI2EFQn1g,3,I was looking for chile rellenos and this place does a great job of making them just the way I like it. Flavorful and not dry. Also had the chips and salsa which I did not think were anything special and you have to order them unlike most Mexican places where it is expected at the time they serve the drinks. Flan was unimpressive. I think I will go back for the chile rellenos and head down the street to Carlsbad Tavern for the flan (theirs is my favorite).,review,2tUCLMHQKz4kA1VlRB_w0Q,0,0,0 +iDYzGVIF1TDWdjHNgNjCVw,2012-10-30,qaNZyCUJA6Yp0mvPBCknPQ,5,"Why did I wait so long to try this neighborhood hot spot! Having a father who grew up on Los Olivos I remained a loyal customer, that is, until last evening's change in plans lured me to the colorfully lit and lively patio of Los Sombreros Authentic Mexican Cafe & Cantina. I am not an expert on ""authentic"" Mexican cuisine nor will I pretend to know what the flavors of San Miguel de Allende taste like; however, I am a foodie so I know good food when I eat it. + +We chose to sit outdoor and enjoy the beautiful weather while taking in another Cardinal's loss! (Sad, I know, since they were off to a great start).... Lucky for us it was a calm Monday night and we had the full attention of our waiter, aka the bartender. Phil (no need to blush if you read this) did a wonderful job walking us through their many margarita selections while also conveying his personal favorites that showcased his love for whiskey! My friend allowed Phil to make his margarita as he felt a fine margarita should be made while I allowed Phil to concoct my special margarita while following strict no sugar, no salt, heavy on the tequila preferences...and that was just to start! Perfectly crafted margaritas in hand, check. Now what to eat for dinner. + +My friend ordered his beloved Mole poblano ($18.95) while I couldn't decide between the Smoked chicken enchiladas with salsa verde and chipotle crema (yumm) and the Pollo a la parilla with spinach in a chipotle cream sauce -or- tinga Poblana sauce($18.95). I opted for the Pollo a la parilla with chipotle cream preparation and, once again, my dinner friend had 'order envy'!! That's not to say his Mole was par (or dare I say sub-par) because it wasn't - it actually has received many culinary awards being named ""Best Mole"" both locally and nationally, but because the chipotle cream sauce combined with spinach, perfectly sautéed chicken breasts and a side of warm corn tortilla is....AMAZZZZZZING!!!! It's also fair that I note aside from the pricier entree dishes served w two sides (as we ordered), they also offer up tacos (3 at $10.95), various quesadillas (@ $5.95) and other lesser priced authentic eats including fresh guacamole, salads and more! + +Deciding I'd save room to see if they could satisfy my sweet tooth I boxed my remaining dinner as we read through each and every dessert. Undecided, again, and so we trusted our gastronomy guide, Phil, to choose. He selected the Mexican Chocolate Cream Pie to finish off the evening, and we happily finished off this delectable treat leaving one bite as I always like to do!!! + +Thank you, Phil and Los Sombreros, for the memorable dining experience. The food was outstanding, margaritas made by Phil are the best, and the patio alone is enough to draw me back for HH or even a late night dessert. Thank you for staying in the neighborhood, Azucena Tovar, and congrats on almost turning 20 years old.",review,Id-8-NMEKxeXBR44eUdDeA,3,6,3 +9Y3aQAVITkEJYe5vLZr13w,2010-04-01,ZoTUU6EJ1OBNr7mhqxHBLw,5,"This is the place for a fabulos breakfast!! I have friends who visit from Texas and they wait all year to eat the Eggs Benedict here. They are the best. I personally love the pancakes smothered in bannanas, pecans and hot syrup...yummmmy. They also serve some very healthy and delicious salds for lunch like the strawberry spinach salad and the sandwhiches ar e very good, Their is often a wait for breakfast but it moves fast and their is a community table which sometimes shortens the wait.",review,vasHsAZEgLZGJDTlIweUYQ,0,1,0 +GV1P1x9eRb4iZHCxj5_IjA,2012-12-07,eVUs1C4yaVJNrc7SGTAheg,5,"Highly recommend. This is my second time here and I see #3 on the way. +I've had the (bistec encebollado & arroz imperial with shrimp ""no melted cheese"") I do recommend both plates. Next time I will try (ropa vieja) +Great service! Ask for Kelly.",review,bJFdmJJxfXgCYA5DMmyeqQ,2,2,1 +GHYOl_cnERMOhkCK_mGAlA,2011-07-03,Q-y3jSqccdytKxAyo1J0Xg,5,"5 stars for the great $5 happy hour specials. the short rib tacos and the fish tacos are delicious and a bargain at 5 for 5 bucks. My favorite drink is the green tea lemonade--it was heavy on the liqour and so refreshing. + +Service was flawless. We were greeted hello and goodbye by two cheerful hostesses, our waiter and waitress offered great suggestions and the bar tender was sweet as well.",review,xZvRLPJ1ixhFVomkXSfXAw,6,6,4 +AX8lx9wHNYT45lyd7pxaYw,2008-11-27,IyunTh7jnG7v3EYwfF3hPw,5,"We brought the entire family to Giuseppe's last night for a pre-Thanksgiving meal... yes, that's right - my family likes to carb up for all of the eating we do today! We brought a ton of wine and had a great time. Franco was our waiter - and I'm guessing since all the ladies at the table had a crush on him, that he is the waiter Sheila B wrote about in her review too. Nice eye candy! + +I absolutely love the eggplant rollatini and pretty much order it every visit. We usually start with a Giuseppe's Salad and finish with a dessert to share. My favorite is the white chocolate tartufa. + +Pasquale (pictured above) is the sweetest man and makes the experience extra special every single time. + +Since I'm writing this review on Thanksgiving, I want to give thanks to Pasquale and Ristorant Giuseppe for all the good times I've had there and all of the good times to come! Salud!",review,fczQCSmaWF78toLEmb0Zsw,10,9,5 +KV-yJLmlODfUG1Mkds6kYw,2012-02-25,rIgZgxJPWTacq3mV6DfWfg,4,Best corned beef sandwich I've had anywhere at anytime. Definitely great portions of food. The jewish sliders are very good especially with the potato pancakes. Too bad they aren't in California because I can see myself visiting this a lot.,review,J-oVr0th2Y7ltPPOwy0Z8Q,0,0,0 +24V8QQWO6VaVggHdxjQQ_A,2010-06-06,PqiIeFOiVr-tj_FtHGAH2g,3,"3.5 stars. + +We decided to check this place out after all the waves. The space and decor is nice and cute, and girly! We arrived at 10:30 for a Sunday brunch, and there were plentiful of empty seats for us to choose. Nice patio, too! + +I had the French Toast with fresh strawberries and chicken apple sausage (however, the menu says with raspberry, I didn't really care for either one, meh~) The toasts were thick and soft, but weren't that outstanding. I really liked the chicken apple sausages on the other hand, they were tasty and not the typical greasy kind. Friend had the Spinach and Tomato Omelette with feta cheese. I didn't take a bite, but she really enjoyed it. It came with a side of potatoes and fresh fruits. + +Our waitress was nice, but the service was slow... Overall we had a nice little trip. It's definitely a good spot for a girls' day out!",review,LaEj3VpQh7bgpAZLzSRRrw,1,4,1 +wepFVY82q_tuDzG6lQjHWw,2012-02-12,spusZYROtBKw_5tv3gYm4Q,1,"Went last night to Whore Foods to get basics to make pizza with, most clutch to the process was a three pack of yeast. Low and behold, the dirty hippie kids they have working there again didn't put something in the bag. + +And this time it was the yeast. + +I love the food there, but the employees are nothing more than entitled hippie kids from Scottsdale who can't be bothered to do their goddamn jobs! I am so sick of this crap with this corporation. Maybe its a Phoenix thing, or maybe its the hiring and firing processes of Whore Foods, but I am done shopping at any Whore Foods. In a place like Phoenix, where you have alternatives such as Sprouts, you'd think Whore Foods would smarten up. + +Or when you try to ask someone who works here where something is, and they just walk by with their nose high in the air. I understand its important to show your fellow dirt merchants that you're a super star, but I don't work with you, I contribute to your salary and over inflated set of benefits for a grocery clerk, so do your goddamn job. Useless little girl in need of a shower and orthodontist. + +But alas, Whore Foods and its dirty hippie employees have alienated yet another person with a job and a degree into hating everything that place stands for. + +Oh yea, one other thing, take the concealed firearm prohibition off of your stores. It didn't stop Jared Loughner from doing something horrid, and all it does is alienate law abiding citizens from their Constitutional rights. I understand you think that only parts of the Constitution should apply, but honestly I think you need to pull your collective heads out of your ass and take a shower. + +Useless motherf*&#$@s!",review,W7zmm1uzlyUkEqpSG7PlBw,0,1,2 +EMGkbiCMfMTflQux-_JY7Q,2012-10-17,wB-f0xfx7WIyrOsRJMkDOg,4,Awesome food! Little pricey but delicious. Loved the power pancakes!,review,9MJAacmjxtctbI3xncsK5Q,0,0,0 +oCA2OZcd_Jo_ggVmUx3WVw,2012-03-31,ijPZPKKWDqdWOIqYkUsJJw,4,"I came here in December and look forward to my next trip so I can get some more of the Tuna Noodle casserole! It was so basic sounding on the menu, but when away from home its comfort food. So I got it and it was way better than what I make. Now I need to have it again so I can figure out how it was done! I can't describe it, but man it was ridiculous! + +My husband had the Big Unit. He shared it with 3 others, but he could've easily eaten the entire dog. It was long and skinny. The toppings aren't heavy either. + +The Catcher mitt dessert wasn't to die for. + +Parking is a pain in that area, especially since the meters only took coins.",review,yzwPJdn6yd2ccZqfy4LhUA,0,0,0 +r-a-Cn9hxdEnYTtVTB5bMQ,2012-04-07,j9HwZZoBBmJgOlqDSuJcxg,1,"The food is delicious. The service: discriminatory. The bartender, blonde gentlemen, went around to everyone else, then finally acknowledge us. This is embarrassing, I don't know what else to say.",review,toPtsUtYoRB-5-ThrOy2Fg,0,0,0 +xY1sPHTA2RGVFlh5tZhs9g,2012-06-02,TM8hdYqs5Zi1jO5Yrq6E0g,4,For our first time we had a great time! Our server was very knowledgable about the menu especially the drink menu. Culinary Dropout has to have some off the most creative drinks I've seen in a while. Everyone mentioned the pretzels on Yelp and they were right! The cheese sauce was velvety and delicious and the pretzel bites had the perfect texture. My girlfriend and I both couldn't finish our sandwiches because they are pretty big. I will definitely be going back to try the charcuterie menu.,review,GvaNZY4poCcd3H4WxHjrLQ,0,2,0 +mQUC-ATrFuMQSaDQb93Pug,2011-10-01,ta2P9joJqeFB8BzFp-AzjA,5,Great food and service! Country food at its best!,review,fKaO8fR1IAcfvZb6cBrs2w,0,1,0 +R8VwdLyvsp9iybNqRvm94g,2011-10-03,pcEeHdAJPoFNF23es0kKWg,5,"Yes I do rock the hipster joints. I dig this place. A little bit of a scene, but the food is solid and the service is great. Hard not like it. All in all a great spot. I tend to switch up my favorites but I typically hit this up for breakfast when in the 602.",review,b92Y3tyWTQQZ5FLifex62Q,1,1,1 +WJ5mq4EiWYAA4Vif0xDfdg,2011-12-05,EuHX-39FR7tyyG1ElvN1Jw,5,"Only 4 stars? + +(A few notes: The folks that rated this place low must have been isolated incidences and I feel weigh far to heavy on service rather than product. Dining at a restaurant, rate the service a lil' harder, but a coffee shop, hold your tongue.) + +Anyway, this place rocks. We aren't super close, but we pass up several coffee shops en route to Lola because the quality is top drawer. + +The beans, fair trade, and the roast is perfect. The price of a bag of beans is amazing. Doing right by the farmers and then respecting the product with such a solid roast. This is what is all about! + +I have yet to find a better americano. A splash of cream and a splenda only augments the flavor of the espresso and the richness really shines. I've been to most of the independent coffee shops throughout the area, and if I do find myself elsewhere, I can only compare them to Lola, and Lola wins out each time.",review,hTau-iNZFwoNsPCaiIUTEA,1,1,0 +f96lWMIAUhYIYy9gOktivQ,2009-03-10,YF17z7HWlMj6aezZc-pVEw,5,"I'm not normally one to jump at reviewing a chain restaurant, especially when there are 3 subways all within a couple blocks of each other. I felt it was necessary in this case. My husband and I came here over the weekend after a lovely trip to the dog park. The two guys working here on the lonely afternoon were awesome. They were really nice and friendly, and quite chatty. One of them started helping my husband and the other one was sweeping while I was deciding. The sweeping boy apparently noticed I was ready and he quickly ran to the back, washed his hands, threw on gloves and asked me what I wanted. WOW! This type of service has never happened at the other locations, all of which I have been too. He chatted with me as I told him what I wanted. He also joked about my weird sandwich and made me laugh. It's refreshing to see a couple guys working on a boring day and actually enjoying themselves. They also have outdoor seating which are perfect to sit at and people watch on beautiful days. We even met this incredible 90 year old guy who is blind and deaf in both ears but somehow managed to communicate with us perfectly. He was much more lively than most twenty-somethings you meet. Amazing. Only in downtown do you meet people like that. This is a great Subway. Go here and skip the others.",review,W_QXYA7A0IhMrvbckz7eVg,2,3,2 +maB4VHseFUY2TmPtAQnB9Q,2011-06-27,SNnyYHI9rw9TTltVX3TF-A,4,"Judging by some of the reviews, maybe I went on good days because I've enjoyed my trips. Good food and good service. + +The last time I went, I sat at the bar for lunch on a Sunday, ordered an All~Star Burger with BBQ sauce and enjoyed some sports. The bartender was nice and the food came quick, which was good because I was hungry (I inhaled the burger). + +I'll be returning on a regular basis once football starts back up.",review,T46gxPbJMWmlLyr7GxQLyQ,1,1,0 +L3BSpFvxcNf3T_teitgt6A,2012-03-19,0nxb1gIGFgk3WbC5zwhKZg,5,"Let's see...what is there NOT to like about Surprise Stadium? Well, $9.50 tall cans of PBR is about all I could come up with and that's not a surprise (pun intended) considering you're attending a sporting event...even spring training. + +But as someone who does not living in Arizona, and as someone who doesn't go to MLB baseball games in Southern California due to the fact it costs so damn much, people bitching about the slow service or any other little inconvenience when it comes to seeing a game here. Look, you're lucky enough to have almost an entire month of low cost MLB baseball right in your back yard. If I could, I'd live down here during March just to take in the awesome baseball action that crisscrosses the Phoenix metro area each year. + +I attended my first spring training game on March 12th, 2012 at Surprise Stadium as the Royals took on the San Francisco Giants (my favorite team). Our seats (Sec. 112, Row J, Seats 13-14-15) were 25 bucks each (around 30 bucks including service fees). I mean, we were maybe 5 or 6 rows back from the Giants dugout (check out some of my pictures). The stadium (funny calling it that since it only holds just over 10,000 people) is big enough so you feel you're at an MLB game but small enough to feel pretty close and intimate with the players. The stadium is well maintained and kept super clean. + +Arriving to the park, I was surprised (pun unintended) to see that parking was free, an oddity when going to an event like this. The stadium staff, as mentioned by other reviews, are mainly made up of senior citizens who were super friendly and helpful. I didn't have to wait long at the concession stands, even if lines were a bit long. The outfield is lined with a lawn area, perfect for people to sit back and have a picnic while taking in a game (Tickets are around 9 bucks each after service fees!!!). + +I love this place and hope to return next year when visiting family. Oh, Giants won 2-1! Go Giants!!!",review,OzOZv-Knlw3oz9K5Kh5S6A,1,2,1 +VY_tvNUCCXGXQeSvJl757Q,2012-07-28,Ubyfp2RSDYW0g7Mbr8N3iA,3,"First visit...Had lunch here today - used my Groupon. + +We ordered the Bruschetta, Pretzels and Steak & Cheese Calzone. + +-We both thought there was WAY too much Balsamic used. Also, we expected mozzarella cheese - not Feta. + +-We tried the butter and salt pretzel & cinnamon sugar with honey pretzel. They were okay. They should have kept the honey on the side like they did for the mustard. + +-The calzone was good. We liked the dough and it was fairly well filled/stuffed. + +Overall, we thought it was average as far as the food is concerned - and a little pricey for quality and portions. + +We have another Groupon to use so maybe we'll try a pizza for the next one.",review,_eqQoPtQ3e3UxLE4faT6ow,1,2,0 +EKzMHI1tip8rC1-ZAy64yg,2012-01-18,2XyIOQKbVFb6uXQdJ0RzlQ,4,"Should be called house of deliciousness! + +I could go on and on about this item, that item, blah blah blah but I dont really waznt to. This is good food, done creatively, and in my mind presented in a casual yet sophisticated manner without any pretensiousness. The chef here creates inspirational dishes that seem to meld asian and southwestern flavors seemlessly. Ok so now I realize this are not all real words but after eating here and developing a drunken state of mind who really cares anyhow? + +The lowdown is the food is good and priced fair for what you get. Our service was great and on top of everything we truly had an amazing time on a rainy Saturday evening. Next time hopefully we can enjoy the killer outdoor bar and patio seating. +I cant wait to go back and eat our way through the new menu. + +The custom cocktails were delightful and the wine list is pretty spot on.",review,ROru4uk5SaYc3rg8IU7SQw,0,0,0 +53YGfwmbW73JhFiemNeyzQ,2010-11-16,jyznYkIbpqVmlsZxSDSypA,4,"I recently visited Olive and Ivy for business last week, and after 3 visits, I am convinced that Fox Restaurants has some of the best establishments in the valley. Olive and Ivy is the Fox Restaurant of choice for consistently good food, great drinks, and most of all, outstanding service. I spend a lot of time in various restaurants across the valley and am always amazed at how bad service can be at some of the more popular valley restaurants. Not Olive and Ivy. From the first phone call for reservations, to the greeting upon walking in the door to the smiles and warm reception you receive from every server you cross, this restaurant knows how to make you feel special. + +Many of the reviews here will focus on the food and I could spend hours talking about my experiences but I will sum it up in a couple of my favorites. + +I hate dates and prunes, but the bacon wrapped dates are crazy good! +The shrimp and risotto main course is one of the best dishes I have tasted since arriving in Phoenix 3 years ago. And hands down, their short rib entree is best in the valley. + +The only catch is the cost. Olive and Ivy is not cheap and definitely not for brothers looking to execute the cheap date. With wine, apps, and main course, you will easy break the century mark, and if you are really being generous, $200 is obtainable. But, it's worth every dollar and who knows, you may even get breakfast out of the deal!",review,gGbN1aKQHMgfQZkqlsuwzg,0,0,0 +9SKdOoDHcFoxK5ZtsgHJoA,2012-12-02,5UKq9WQE1qQbJ0DJbc-B6Q,2,"My nephew just moved to Scottsdale recently so me and a bunch of friends brought him here to show him a local bar that he and the girlfriend could come shoot pool, watch football, play volleyball etc...well....we weren't there 5minutes and 2 kids were running around the pool tables, messing up our games and screaming. I couldn't believe the staff was allowing this to happen. They were hitting the pool sticks on everything and crying when their mom attempted (in vain) to quiet them. You'd think the mom would leave at this point with her kids....um...no....the staff did seem annoyed as well but said nothing. Then....it happened...she said "" you guys better behave or mommy will be fired""!! Holy shit....she works there!! Even worse! Shame on that owner for allowing this to happen. And that employee needs to recognize this...YOU WORK AT A BAR.....not a daycare....A BAR!!!",review,0lyVoNazXa20WzUyZPLaQQ,0,0,0 +pF7uRzygyZsltbmVpjIyvw,2010-10-16,vWSmOhg2ID1MNZHaWapGbA,5,"4-5 locations.. all 4.5 star average.. I think Arizona really has some fantastic Pizza options, and Spinatos is at the top of my pizza fix list.. the semi sweet sauce is addictive, great service, fresh ingredients, The Spicy Italian is my favorite... The chocolate chips cookies are laced with mind altering drugs, that make your body parts""romantic"" when you think of their cookies.. BTW 5:30pm, on a Tuesday, when we left, a 30 minute wait.. Its on the List..",review,KSBFytcdjPKZgXKQnYQdkA,0,0,0 diff --git a/data/yelp.json b/data/yelp.json new file mode 100644 index 0000000..c786801 --- /dev/null +++ b/data/yelp.json @@ -0,0 +1,10000 @@ +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "fWKvX83p0-ka4JS3dc6E5A", "stars": 5, "date": "2011-01-26", "text": "My wife took me here on my birthday for breakfast and it was excellent. The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning. It looked like the place fills up pretty quickly so the earlier you get here the better.\n\nDo yourself a favor and get their Bloody Mary. It was phenomenal and simply the best I've ever had. I'm pretty sure they only use ingredients from their garden and blend them fresh when you order it. It was amazing.\n\nWhile EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. It was the best \"toast\" I've ever had.\n\nAnyway, I can't wait to go back!", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0a2KyEL0d3Yb1V6aivbIuQ", "review_id": "IjZ33sJrzXqU-0X6U8NwyA", "stars": 5, "date": "2011-07-27", "text": "I have no idea why some people give bad reviews about this place. It goes to show you, you can please everyone. They are probably griping about something that their own fault...there are many people like that.\n\nIn any case, my friend and I arrived at about 5:50 PM this past Sunday. It was pretty crowded, more than I thought for a Sunday evening and thought we would have to wait forever to get a seat but they said we'll be seated when the girl comes back from seating someone else. We were seated at 5:52 and the waiter came and got our drink orders. Everyone was very pleasant from the host that seated us to the waiter to the server. The prices were very good as well. We placed our orders once we decided what we wanted at 6:02. We shared the baked spaghetti calzone and the small \"Here's The Beef\" pizza so we can both try them. The calzone was huge and we got the smallest one (personal) and got the small 11\" pizza. Both were awesome! My friend liked the pizza better and I liked the calzone better. The calzone does have a sweetish sauce but that's how I like my sauce!\n\nWe had to box part of the pizza to take it home and we were out the door by 6:42. So, everything was great and not like these bad reviewers. That goes to show you that you have to try these things yourself because all these bad reviewers have some serious issues.", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0hT2KtfLiobPvh6cDC8JQg", "review_id": "IESLBzqUCLdSzSqm0eCSxQ", "stars": 4, "date": "2012-06-14", "text": "love the gyro plate. Rice is so good and I also dig their candy selection :)", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "uZetl9T0NcROGOyFfughhg", "review_id": "G-WvGaISbqqaMHlNnByodA", "stars": 5, "date": "2010-05-27", "text": "Rosie, Dakota, and I LOVE Chaparral Dog Park!!! It's very convenient and surrounded by a lot of paths, a desert xeriscape, baseball fields, ballparks, and a lake with ducks.\n\nThe Scottsdale Park and Rec Dept. does a wonderful job of keeping the park clean and shaded. You can find trash cans and poopy-pick up mitts located all over the park and paths.\n\nThe fenced in area is huge to let the dogs run, play, and sniff!", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vYmM4KTsC8ZfQBg-j5MWkw", "review_id": "1uJFq2r5QfJG_6ExMRCaGw", "stars": 5, "date": "2012-01-05", "text": "General Manager Scott Petello is a good egg!!! Not to go into detail, but let me assure you if you have any issues (albeit rare) speak with Scott and treat the guy with some respect as you state your case and I'd be surprised if you don't walk out totally satisfied as I just did. Like I always say..... \"Mistakes are inevitable, it's how we recover from them that is important\"!!!\n\nThanks to Scott and his awesome staff. You've got a customer for life!! .......... :^)", "type": "review", "business_id": "6ozycU1RpktNG2-1BroVtw"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "sqYN3lNgvPbPCTRsMFu27g", "review_id": "m2CKSsepBCoRYWxiRUsxAg", "stars": 4, "date": "2007-12-13", "text": "Quiessence is, simply put, beautiful. Full windows and earthy wooden walls give a feeling of warmth inside this restaurant perched in the middle of a farm. The restaurant seemed fairly full even on a Tuesday evening; we had secured reservations just a couple days before.\n\nMy friend and I had sampled sandwiches at the Farm Kitchen earlier that week, and were impressed enough to want to eat at the restaurant. The crisp, fresh veggies didn't disappoint: we ordered the salad with orange and grapefruit slices and the crudites to start. Both were very good; I didn't even know how much I liked raw radishes and turnips until I tried them with their pesto and aioli sauces.\n\nFor entrees, I ordered the lamb and my friend ordered the pork shoulder. Service started out very good, but trailed off quickly. Waiting for our food took a very long time (a couple seated after us received and finished their entrees before we received our's), and no one bothered to explain the situation until the maitre'd apologized almost 45 minutes later. Apparently the chef was unhappy with the sauce on my entree, so he started anew. This isn't really a problem, but they should have communicated this to us earlier. For our troubles, they comped me the glass of wine I ordered, but they forgot to bring out with my entree as I had requested. Also, they didn't offer us bread, but I will echo the lady who whispered this to us on her way out: ask for the bread. We received warm foccacia, apple walnut, and pomegranate slices of wonder with honey and butter. YUM.\n\nThe entrees were both solid, but didn't quite live up to the innovation and freshness of the vegetables. My lamb's sauce was delicious, but the meat was tough. Maybe the vegetarian entrees are the way to go? But our dessert, the gingerbread pear cake, was yet another winner.\n\nIf the entrees were tad more inspired, or the service weren't so spotty, this place definitely would have warranted five stars. If I return, I'd like to try the 75$ tasting menu. Our bill came out to about 100$ for two people, including tip, no drinks.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 4, "useful": 7, "cool": 7}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "riFQ3vxNpP4rWLk_CSri2A", "stars": 5, "date": "2010-02-12", "text": "Drop what you're doing and drive here. After I ate here I had to go back the next day for more. The food is that good.\n\nThis cute little green building may have gone competely unoticed if I hadn't been driving down Palm Rd to avoid construction. While waiting to turn onto 16th Street the \"Grand Opening\" sign caught my eye and my little yelping soul leaped for joy! A new place to try!\n\nIt looked desolate from the outside but when I opened the door I was put at easy by the decor, smell and cleanliness inside. I ordered dinner for two, to go. The menu was awesome. I loved seeing all the variety: poblano peppers, mole, mahi mahi, mushrooms...something wrapped in banana leaves. It made it difficult to choose something. Here's what I've had so far: La Condesa Shrimp Burro and Baja Sur Dogfish Shark Taco. They are both were very delicious meals but the shrimp burro stole the show. So much flavor. I snagged some bites from my hubbys mole and mahi mahi burros- mmmm such a delight. The salsa bar is endless. I really stocked up. I was excited to try the strawberry salsa but it was too hot, in fact it all was, but I'm a big wimp when it comes to hot peppers. The horchata is handmade and delicious. They throw pecans and some fruit in there too which is a yummy bonus!\n\nAs if the good food wasn't enough to win me over the art in this restaurant sho did! I'm a sucker for Mexican folk art and Frida Kahlo is my Oprah. There's a painting of her and Diego hanging over the salsa bar, it's amazing. All the paintings are great, love the artist.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1ieuYcKS7zeAv_U15AB13A", "review_id": "JL7GXJ9u4YMx7Rzs05NfiQ", "stars": 4, "date": "2012-07-12", "text": "Luckily, I didn't have to travel far to make my connecting flight. And for this, I thank you, Phoenix.\n\nMy brief layover was pleasant as the employees were kind and the flight was on time. Hopefully, next time I can grace Phoenix with my presence for a little while longer.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vh_DlizgGhSqQh4qfZ2h6A", "review_id": "XtnfnYmnJYi71yIuGsXIUA", "stars": 4, "date": "2012-08-17", "text": "Definitely come for Happy hour! Prices are amazing, sake bombers for $3...Great atmosphere and wait staff was incredibly nice and right on to all of our needs, didn't have to ask for a thing They were always spot on...Place gets crowded in the evening especially if you plan on sitting outside. I only wish there were one in Apollo Beach or Brandon!", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sUNkXg8-KFtCMQDV6zRzQg", "review_id": "jJAIXA46pU1swYyRCdfXtQ", "stars": 5, "date": "2010-08-11", "text": "Nobuo shows his unique talents with everything on the menu. Carefully crafted features with much to drink. Start with the pork belly buns and a stout. Then go on until you can no longer.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "E11jzpKz9Kw5K7fuARWfRw", "stars": 5, "date": "2010-06-16", "text": "The oldish man who owns the store is as sweet as can be. Perhaps sweeter than the cookies or ice cream.\n\nHere's the lowdown: Giant ice cream cookie sandwiches for super cheap. The flavor permutations are basically endless. I had snickerdoodle with cookies and cream ice cream. It was marvelous.", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "C1rHp3dmepNea7XiouwB6Q", "review_id": "3rPt0LxF7rgmEUrznoH22w", "stars": 5, "date": "2011-10-21", "text": "Wonderful Vietnamese sandwich shoppe. Their baguettes are great hot out of the oven with butter or in one of their many sandwich choices. They have a modest selection of baked goods along with some of the best egg rolls around. Bring cash or your ATM card as no credit cards are accepted but they have an ATM on premises.", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "cGnKNX3I9rthE0-TH24-qA", "stars": 5, "date": "2010-01-11", "text": "They have a limited time thing going on right now with BBQ chicken pizza (not sure how long it's going to last) but let me just say it was amazing. Probably THE best BBQ Chicken pizza I have ever had. I have tried other things too, like the tomato basil soup, and many of their sandwiches ... very good, very fresh - every time. \n\nThe 5 stars is for the pizza, but if I were to rate Jason's Deli over all they would get about a 4.", "type": "review", "business_id": "h53YuCiIDfEFSJCQpk8v1g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Xm8HXE1JHqscXe5BKf0GFQ", "review_id": "FvEEw1_OsrYdvwLV5Hrliw", "stars": 4, "date": "2011-12-23", "text": "Good tattoo shop. Clean space, multiple artists to choose from and books of their work are available for you to look though and decide who's style most mirrors what you're looking for. I chose Jet to do a cover-up for me and he worked with me on the design and our ideas and communication flowed very well. He's a very personable guy, is friendly and keeps the conversation going while he's working on you, and he doesn't dick around (read: He starts to work and continues until the job is done). He's very professional and informative. Good customer service combines with talent at the craft.", "type": "review", "business_id": "WGNIYMeXPyoWav1APUq7jA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JOG-4G4e8ae3lx_szHtR8g", "review_id": "pfUwBKYYmUXeiwrhDluQcw", "stars": 4, "date": "2010-05-20", "text": "I'm 2 weeks new to Phoenix. I looked up Irish bars in town and found Rosie's. The decor and ambience was outstanding. I went there by myself on a Wednesday night in hopes of finding some friendly folks and that is exactly what happened. I ate dinner at the bar. Marcy was the bartender and she was very friendly and helpful and she introduced me to a whole bunch of people. For dinner I had a Rueben sandwich, which was pretty large and very good. I had a a small Rosie salad as my side and it did the job. I wish it was made with lettuce other than iceburg, but the bacon & eggs & other toppings helped a whole lot. I drank a nice, cold Smithwick's from the tap. Followed that up with 2 vodka tonics and my whole tab was under $25! \n\nThe basketball game was on when I first got there. After the game, the jukebox was playing a fabulous mix of the best oldies. Around 10pm a live band played. I didn't catch much of their performance but I did notice that I really like the singer's voice and that's rare for me since I don't typically care for female vocalists.\n\n\nAll the people I spoke to were super nice and very welcoming. I am sure I will see a bunch (or all) of them again and I look forward to that!", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ylWOj2y7TV2e3yYeWhu2QA", "review_id": "HvqmdqWcerVWO3Gs6zbrOw", "stars": 2, "date": "2011-03-20", "text": "Was it worth the 21$ for a salad and small pizza? Absolutely not! Bad service. Maybe the guys grandma died I don't know. I want to tell you what really made me mad about the experience. We order the small pizza and salad and the guys could have cared less and took our $ and we sat down. We were looking around and hmm, there's a sign saying \"x large pizza and large salad only 23$\". Wow that would have been nice if the guy told us that. I left hungry, mad and unsatisfied. \n\nTo the owner: teach your employees the value of upselling and telling the specials. Something so small can affect a customers experience negatively. \n\nAnd your salads are severely overpriced \n\nWon't go back unless I'm desperate.", "type": "review", "business_id": "Vb9FPCEL6Ly24PNxLBaAFw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "SBbftLzfYYKItOMFwOTIJg", "review_id": "HXP_0Ul-FCmA4f-k9CqvaQ", "stars": 3, "date": "2008-10-12", "text": "We went here on a Saturday afternoon and this place was incredibly empty. They had brunch specials going on, including $2 bloody mary's and mimosas, but we were more in the mood for lunch. Except for the bloody mary, I had to try one. It came out in a high-ball-sized glass. Boo! But it was really tasty. Yay! The hubby remembered a sign outside the restaurant a few weeks back that said they had Arrogant Bastard, and he got a 22 oz bottle for $4.75. Hey, that's not fair!!\n\nNext up: the wings. We were a bit hesitant to order them when the waitress informed us that they are \"seasoned\" but not sauced, so they can't be ordered hot. We did ask for them crispy though, and the waitress even asked the cooks to throw them back in for a few minutes when they came out not visibly crispy. These non-traditional wings were actually pretty damn good. The seasoning was a little spicy and salty with just a hint of sweet. If I were in the mood for the tang and kick of Frank's Hot Sauce, these wouldn't cut it, but otherwise they were good enough to go back again for.\n\nMy entree was the Tilapia salad, and I was a bit disappointed. The fish was a bit dry and uninspired. And the greens underneath were overdressed and wilted. I ate the greens around the fish and picked out the almonds and Mandarin oranges, but I had to leave the mush hiding underneath the fish.\n\nIt wasn't bad enough to say I wouldn't go back, but I won't be anxiously awaiting my next trip.", "type": "review", "business_id": "supigcPNO9IKo6olaTNV-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u1KWcbPMvXFEEYkZZ0Yktg", "review_id": "j4SIzrIy0WrmW4yr4--Khg", "stars": 5, "date": "2010-05-03", "text": "okay this is the best place EVER! i grew up shopping at the one in los gatos, and the one in Oakville. i was shock when i saw the best store in the world in Scottsdale and then not surprised at all. the have all the good stuff. from cheese down to wine. i can't tell you how happy i am that this store is here in Arizona. now if we could just get dean and deluca!", "type": "review", "business_id": "O510Re68mOy9dU490JTKCg"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "v0cTd3PNpYCkTyGKSpOfGA", "stars": 3, "date": "2009-03-06", "text": "I met a friend for lunch yesterday. \n\nLoved the water feature and patio walking in, if it had been warmer I would have definitely sat outside. \n\nInside was a little dark and I guess it was all the bats around but it reminded me of \"Dusk Till Dawn\". \n\nWe were seated, I hope was hoping for chips and salsa, I guess they don't serve them here? \nWe weren't even offered the ones on the menu, which I probably would have declined anyway because chips and salsa should be complimentary. \n\nAnyhow I ordered the Fresh Snapper Tacos (see pics) \nThere is a lot of fish there being smothered by all those peppers, but as for everything else what you see is what you get.\n\nFor $15 I would have liked more than a TBSP of each, rice and beans, and a DEFINITELY more than a teaspoon of cheese and sour cream and maybe a lime or lemon. \nThere was more garnish on the plate than anything. Other than that it was good. \n\nMy Friend ordered the Green Chile Stew and The Green Chile Mac and Cheese (see pics) She has been here before so knew what she liked. I tasted the macaroni and thought it was pretty good too.\n\nI'll give 3 stars until I go back and try out some other things.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "a0lCu-j2Sk_kHQsZi_eNgw", "stars": 4, "date": "2011-11-17", "text": "They've gotten better and better for me in the time since this review was written. \n\nMy last contact with them was a few days ago when I was having trouble redeeming some Groupons on their website. I called customer service and after waiting a few minutes I spoke with a rep who cheerfully booked four separate flights for me, patiently and manually entering my Groupon info for each one.\n\nI think the acquisition by Republic has helped them overall. After Republic took over the in-flight cookies started. It still tends to suck if you aren't Ascent club (like just about any budget-centric airline does), but once you get there it's a good value. When I've had to fly Southwest or USAir I've been disappointed in comparison.", "type": "review", "business_id": "4JzzbSbK9wmlOBJZWYfuCg"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "MuqugTuR5DdIPcZ2IVP3aQ", "stars": 3, "date": "2008-10-08", "text": "DVAP....\n\nYou have to go at least once in your life. It really is a neat place with alot of history. \n\nThe service is great, it appears to be family run. \n\nThe food is good. Better then Dennys but not as good as Mimi's. \n\nI had the all u can eat of beef ribs, lasagna, meat loaf, cat fish, chicken, mashed and diced potatoes, stuffing, rice, homemade apple pie, etc and salad bar. I know I am missing a bunch of stuff they had but you get the drift. \n\nThey run specials on Prime rib and stuff so you might want to call to see what they are serving the night you go.", "type": "review", "business_id": "8FNO4D3eozpIjj0k3q5Zbg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "YN3ZLOdg8kpnfbVcIhuEZA", "review_id": "LmuKVFh03Uz318VKnUWrxA", "stars": 5, "date": "2011-06-28", "text": "This place shouldn't even be reviewed - because it is the kind of place I want to keep for myself... =)", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6lg55RIP23VhjYEBXJ8Njw", "review_id": "CQYc8hgKxV4enApDkx0IhA", "stars": 5, "date": "2011-07-13", "text": "first time my friend and I went there... it was delicious! The food, garlic knots our favorite and of course the wine! We will be going back ALOT!", "type": "review", "business_id": "eFA9dqXT5EA_TrMgbo03QQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "zRlQEDYd_HKp0VS3hnAffA", "review_id": "Dx9sfFU6Zn0GYOckijom-g", "stars": 1, "date": "2010-09-05", "text": "U can go there n check the car out. If u wanna buy 1 there? That's wrong move! If u even want a car service from there? U made a biggest mistake of ur life!! I had 1 time asked my girlfriend to take my car there for an oil service, guess what? They ripped my girlfriend off by lying how bad my car is now. If without fixing the problem. Might bring some serious accident. Then she did what they said. 4 brand new tires, timing belt, 4 new brake pads. U know why's the worst? All of those above I had just changed 2 months before!!! What a trashy dealer is that? People, better off go somewhere!", "type": "review", "business_id": "IJ0o6b8bJFAbG6MjGfBebQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "13xj6FSvYO0rZVRv5XZp4w", "review_id": "cFtQnKzn2VDpBedy_TxlvA", "stars": 5, "date": "2011-05-22", "text": "I love this place! I have been coming here for ages.\nMy favorites: Elsa's Chicken sandwich, any of their burgers, dragon chicken wings, china's little chicken sandwich, and the hot pepper chicken sandwich. The atmosphere is always fun and the art they display is very abstract but totally cool!", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "ChBeixVZerfFkeO0McdlbA", "stars": 4, "date": "2010-05-26", "text": "This place is great. A nice little ole' fashion homemade ice cream place that looks like it has been there for forever. The place has a real nice vibe to it. Sorta reminds me of Sugar Bowl only smaller, not as busy, and easier parking.\n\nThe menu is ginormous. I couldn't decide what to get but that didn't matter because the other 3 people I went with chose for me. I wanted something basic but they insisted on sharing the 'patte' thing. It is a few scoops of ice cream over a brownie and topped with whip cream and caramel. While it was very good it just wasn't what I wanted. Next time I'm just going to get a scoop or 2 of the ice cream so I can really taste what the ice cream is all about. It is just too difficult to tell when it is topped with a bunch of stuff. The ice cream we got on the brownie though (butter brittle I think) was excellent. They have tons of different flavors and they all sound delish!\n\nAnyway I can't wait to go back if I am ever in the area again and need a sugar rush!", "type": "review", "business_id": "wzP2yNpV5p04nh0injjymA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fpItLlgimq0nRltWOkuJJw", "review_id": "kZ4TzrVX6qeF0OvrVTGVEw", "stars": 5, "date": "2013-01-03", "text": "I love love LOVE this place. My boss (who is into healthy eating) recommended this place. I went over with some highly skeptical friends and one dinner was enough to convert them into believers! The food here is so good! We had the Shrimp dumplings and the Onion tart as starters. We ordered the Shirataki noodles and street tacos as entrees. So also ordered the Kale-aid. All of the dishes were yummy. \nI have gone back many times since then and have never been disappointed! I have gone after yoga to get some Kale salad or the chicken chopped salad. I always have to get the Kale aid. \nOnce, a guy at the next table, uprooted a whole plant by mistake (on the patio) and was highly embarrassed as was his date! Ever since, I have very careful not to throw my arms around as I can be quite clumsy sometimes! I do NOT want to be banned from my favorite place for my clumsiness! I don't think I can live without True Food!", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "RRTraCQw77EU4yZh0BBTag", "review_id": "B5h25WK28rJjx4KHm4gr7g", "stars": 4, "date": "2008-03-21", "text": "Not that my review will mean much given the more in-depth reviewers but I will chime in nonetheless...\n\nI can really only review one dish, the #3 lunch special, Yellow Curry Chicken. I don't know what the authentic name for it is, Kang Karee something or other. It's so tasty that the first time I had it I knew I'd never branch out. Good lunch spot if you work around downtown. Not the quickest service all the time and can get busy during lunch, but always consistently good. Fairly dim inside, a good place to forget about the sun on a summer day.", "type": "review", "business_id": "wct7rZKyZqZftzmAU-vhWQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "Y_ERKao0J5WsRiCtlKSNSA", "stars": 4, "date": "2011-03-30", "text": "Came here for breakfast yesterday, it had been years since I have stopped in here and do not remember the entire place having waiter service. Place was empty at 9am on a Tuesday morning but the atmosphere was casual, this place is pretty much been here for as long as I can remember and I am one of the 2 people that are native to Phoenix. I always felt it was pricey but I think inflation has caught up since prices seemed normal when I went yesterday. I loved the chips and salsa, the hot sauce is fantastic with a great spicy kick. I went with the recommendation of the chile relleno which isn't my favorite but I like going with what waiters say so I gave it a try. It was great! Very flavorful and they just put it on the eggs so you can eat it together, the tortillas are fresh and home-made tasting, the hash browns and beans were good too. I read my newspaper and drank my soda while I enjoyed the whole place to myself....oh yeah, I read some Yelp reviews and bookmarked my next stop too, ha ha.", "type": "review", "business_id": "vz2zQQSjy-NnnKLZzjjoxA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kpbhy1zPewGDmdNfNqQp-g", "review_id": "hre97jjSwon4bn1muHKOJg", "stars": 4, "date": "2012-07-12", "text": "Always reliably good. Great beer selection as well as fabulous \"bitch fizz\" (ciders, etc.) and cocktails. Their pizza is outstanding AND they have a healthy menu. I generally steer clear of chains but this is an exception.", "type": "review", "business_id": "i213sY5rhkfCO8cD-FPr1A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bCKjygWJZOQHCOzootbvow", "review_id": "dtpJXC5p_sdWDLSobluJ3Q", "stars": 5, "date": "2011-05-09", "text": "Disclaimer: Like many of you, I am a sucker for charming little homes that have been re-purposed into restaurants. I am certain that this colored my opinion of Cibo.\n\nThat being said, I absolutely love having lunch here the other day. I unknowingly arrived at 2:05 (5 minutes after they close between lunch and dinner) but was served anyway. I had the salscicia sandwich and a side of fruit. The sandwich was excellent, served on perfectly crisp, chewy saltimbocca bread. The sausage was flavorful and was complimented by roasted red peppers and onions. All this was finished off with a great quality mozzarella cheese. Really, really delicious.\n\nI should also say that the atmosphere here was friendly and comfortable, though a bit small. This would be a great place to hang out if you lived nearby.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8AMn6644NmBf96xGO3w6OA", "review_id": "S9OVpXat8k5YwWCn6FAgXg", "stars": 1, "date": "2012-05-04", "text": "Disgusting! Had a Groupon so my daughter and I tried it out. Very outdated and gaudy 80's style interior made me feel like I was in an episode of Sopranos. The food itself was pretty bad. We ordered pretty simple dishes but they just had no flavor at all! After trying it out I'm positive all the good reviews on here are employees or owners creating them.", "type": "review", "business_id": "vvA3fbps4F9nGlAEYKk_sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HLbhD2OyiMCUDRR4c1iXaw", "review_id": "-v-shjbxoj7hpU62yn6vag", "stars": 5, "date": "2012-09-09", "text": "Never having dealt with a Discount Tire in Phoenix before (only in Texas, and their service has been great all the time), I came in not knowing what kind of service to expect. I was pleasantly surprised! The store had a good amount of parking, and the store front was clean, open and had adequate seating around the perimeters. There were already 5-6 people sitting and waiting for their cars to be finished, and 2 people waiting infront of me to see a representative. All the guys working there were busy helping someone, yet were saying hello to us and reassuring they'd get to us very soon. I didn't wait an unneccesary amount of time and then was helped by Wally. He inspected my tires, recommended a plan of action gave me options, and we headed back into the store. After I made my decision to replace 2 of the tires, he checked their stock, and unfortunately they didn't have them there. BUT he called another store and had them picked up for the next morning, so I could just come back the next day to this same store and get those bad boys installed. Great! The prices were not as heafty (relief), and although there were a good amount of people the next day waiting for their cars to also be serviced, it took exactly the amount of time they'd told me (45 min). They apologized for the wait, but no need for that! The guy who helped me on the 2nd day (I'm sorry I forgot his name) was also very professional and great. I recommend this store and will be bringing my car here in the future most definitely. Thanks, guys!\n\nTIP: If you know you need to bring your car in, you can make an appointment with them online. They take walk-ins, but I believe it helps them manage their customers easier, and that in turn benefits you.", "type": "review", "business_id": "rxQ2PIjhAx6dgAqUalf99Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3iuZFgxUFKLxOplkDrFmyg", "review_id": "2VTwjhOX3UUvgOGbxe4xfA", "stars": 4, "date": "2010-03-28", "text": "I went here again when I got back to Phoenix after being gone for six months. This is one of my mom's favorite places to eat and I can understand why. The ravioli and the miso soup are so delicious! The wine was ok and I would recommend one of their elixirs over an alcohol beverage. Still a pretty delicious place to go in Phoenix.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "1guJDgUfTiDdbgKqBhsZFQ", "review_id": "Bk7F8IyBuOHVp6w3BAKVow", "stars": 3, "date": "2011-03-27", "text": "There's two ways to look at this place. One is getting quality food at a good price. The other is getting a lot of food for a cheap price. I prefer the former but those who prefer the latter won't agree with my review.\n\nI thought the scramble I had was okay but nothing fantastic. I definitely didn't care for the biscuits. The food wasn't health conscious at all but if you're looking to fill up with calories and get a good-sized portion then this is your type of place. Also, I am not a fan of the diner-type ambiance... I would rather have something with more character but I'm glad I tried this place out.", "type": "review", "business_id": "3oLy0rlzRI_xiqfQHqC4_g"} +{"votes": {"funny": 3, "useful": 4, "cool": 0}, "user_id": "iwUN95LIaEr75TZE_JC6bg", "review_id": "ApKbwpYJdnhhgP4NbjQw2Q", "stars": 1, "date": "2011-11-30", "text": "I've eaten here many times, but none as bad as last night.\nService was excellent, and highly attentive.\nFood, absolutely horrible.\n\nMy expectation was they would serve a steak on par with their seafood. After all, they were charging 39 bucks for a ribeye. \nWhat I was hoping for was a 1- 1-1/2' thick steak, cooked Pittsburgh style as I had ordered. \nWhat I got a a 3/4 in thick piece of meat that was mostly fat, gristle, and in no way resembled Pittsburgh Style. \nSalad, similar to something you could get at Chick Filet\nVeggies, blah.\nBread basket, ample, but day old, and if not, it certainly wasn't fresh. \n\nIn addition to bad food, we were crammed into a small room where we were nuts to butts with 6 other tables, listening to conversations ranging from someone's recent bout with pinkeye, and another couple who elected to speak entirely in French, until the waiter showed up, then it was like they turned off the French switch and suddenly began speaking English. \n\nI've had it with this place.\nIf I'm going to pay 150 bucks for dinner, it'll be at Mortons, or Maestro where the steaks are 1-1/2 in thick, cooked to perfection, and half of it doesnt wind up on the plate as fat and gristle", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iFa0SLpNeLbx6aux65mNbQ", "review_id": "vUuFuf4LYxfqbZH3lYxJfw", "stars": 4, "date": "2008-12-28", "text": "They must have renovated this place in the last year. It is now spacious and airy and there is no longer the dreaded \"hover over a table to get a seat\" necessity. It now reminds me much more of the dreaded \"Panera Bread\" chain in California, but the food is still much better and has much less of a \"mass produced\" feeling and taste.\n\nThe service (management, staff etc) were extremely attentive and responsive to requests as well as keeping the place extremely well clean and cleared.\n\nI love carbs...Carbs with carbs and a side of carbs. They serve warm syrup with their pancakes (yum!) and their bread is just amazing. \n\nThe \"side of pancakes\" is plenty big for a meal and they are always consistent, fluffy, and tasty. \n\nThey offer both a dark roast and a house roast for coffee and all the powdery loveliness (cinnamon, nutmeg, cocoa) to top it off just right.\n\nToday, before returning to the land of freeways and smog and eternal sunshine(well, the other land of that anyway) we enjoyed their peppermint hot chocolate. I would highly recommend that you run on it and have this frothy goodness before the holiday season ends!", "type": "review", "business_id": "Pr9rQKypHgC_J1AfufxzIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "370JyOQfFcPSB9_jk641gA", "review_id": "gNm48xplqt42p-NvCkzUBg", "stars": 4, "date": "2012-10-16", "text": "Very clean and well thought out floor plans, nice to have a friendly staff with smiling faces. Best Target I have been to in a while.", "type": "review", "business_id": "AGar9KVq_W7YcF76avbDTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ja8SAyDdf1aY-E7vVixJiw", "review_id": "5V9lfjjlY7tkXgkcDUWYyg", "stars": 4, "date": "2011-01-02", "text": "This Mexican food is very simple, slightly bland, but fairly fresh. The chicken is chopped up into tofu-looking squares. But I was satisfied with the food, which was fairly healthy Mexican food as Mexican food goes. The staff is quite polite. I met some cool people hanging out there while I sat outside.", "type": "review", "business_id": "-kVXDEqGHOWKxQ3EhvFgVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "1fRGR6XTTElRBZW_oDrpUA", "stars": 4, "date": "2008-07-09", "text": "Decor functional \nStaff friendly and are really kind to our toddler\nfood rocks within my limited range of red and yellow curries ( so much so they suggested I try something else, hey it's not my fault these are so good that I didn't want to risk anything lesser. \n\nPrices are a bargain for entrees, spice is there, they really get the request to make it very very hot. This is probably the best bargain in North Phoenix for spice hounds", "type": "review", "business_id": "qyNtVViurIcChc35mfYIEw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "F0dO68TECqEJBhBJ4P0qVA", "review_id": "2sG6LKzRz91l10stVHl8uQ", "stars": 4, "date": "2011-11-09", "text": "This Place just opened up next to the salon I work in. AMAZING! They hit the ground running, \n\nIt's a deli style, where you order at the counter and they bring you the food. I had the Grayhawk Turkey Club and the turkey was great! No packaged crap here. It was thick sliced and probably rotisserie. For the side I had sweet potato tater tots. DELISH! The have regular fries, sweet fries, tater tots, onion rings, etc. \n\nGreat looking salads, Chicago-style dogs, gourmet burgers and yummy sounding mac and cheese. \n\nThe only thing keeping it from 5 stars is the price. It's great for dinner, but a little steep for a work day lunch.", "type": "review", "business_id": "umdxfhSlk67yGEi8-S-bEg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "fuY6Bf4EtW3UwrdLQJa9_Q", "stars": 4, "date": "2009-03-13", "text": "I really really like Frances. I love most of the clothes in there, but I can never have them because I can't afford it. The store in general is pretty cool, there are lots of neat things in here from stationery to clothes to jewelry to baby stuff to dog stuff to vintage stuff. There is a lot of stuff here. It's all quite pricey though. The sales they have every now and then are sorta okay, but still break the bank if you buy anything. Overall they carry good quality products and the staff is super friendly and helpful. I can't hate on a place too bad just because I can't afford it.", "type": "review", "business_id": "qsThMZ3lXWYLN4t08ScsNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PiDqfET_ZrDKJSLKe03O9A", "review_id": "UTWI0z7nV5zNJLWnOz9Z5A", "stars": 4, "date": "2012-06-30", "text": "Solid food, great device, and casual environment. They will not leave you hungry. Overall, it's really good.", "type": "review", "business_id": "puy0PzIcCgR3KWJI7llBFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wv5-4IPtpVA8wdqXu-Onpw", "review_id": "7uzj6rJ71toRmdsXyo2suA", "stars": 4, "date": "2012-04-12", "text": "my son really enjoys islands, great food, casual kid freindly atmoshpere we go here quite a lot and seem to keep coming back", "type": "review", "business_id": "e0vubCKi8KD8zC2C6FdbuQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7cR92zkDv4W3kqzii6axvg", "review_id": "HXU9dbOSlByXW-dB8LmJgA", "stars": 4, "date": "2009-06-13", "text": "I was seated at the bar. A very nice young man was working the bar an provided good conversation.\n\nI was offered a DELICIOUS chicken, bacon, bleu cheese amuse. Yum!\n\nI ordered a pine nut pesto pizza, which wad delivered by the chef! :)\n\nThe crust was perfect! Thick enough for structure and substance, but thin enough to \"hide\" behind the flavors of tomato and pine nut pesto.\nThe cheese was also just right.\n\nDelicious!\n\nI also had the chicken panini, which was fantastic! The bread was a bit hard, but I think I was too busy talking and let it sit too long.\n\nAll in all I'd definitely recommend L'Academie if you're in that area of Scottsdale.", "type": "review", "business_id": "faSdsW2s_SaVN0KTy-R2MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "66PQJEHC0tCWGMI4V9KT-Q", "review_id": "1FvrC35rTJ6BWFvRog7tuA", "stars": 3, "date": "2011-12-21", "text": "Everything was nice. The ice cream was delicious, no overwhelming alcohol taste & an interesting variety of flavors. Service was fine, place was clean. I'll go back, but only because I have a killer sweet tooth and they're in the neighborhood.", "type": "review", "business_id": "qB-qsaSnhbHCt18_AN4Quw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "IUWjTmXc3wLVaMHz33inaA", "review_id": "Ckk1Cne1GHwzmJfo7M4r2w", "stars": 5, "date": "2009-04-04", "text": "(Un)fortunately for me, lux is close to my house. I walk there nearly every day and am much poorer because of it. The coffee and pastries are amazing. They always play really great music too!", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "1MyXsAhZK35A6EAr4reLCA", "review_id": "bu9S6tFKuTrMcNxQaQYMQA", "stars": 3, "date": "2010-09-25", "text": "After watching her win on Cupcake Wars I was determined to find this place (It's very well hidden)and sample the cupcakes. I have to say I was not impressed; i make better cupcakes on my own. More creative and not so sweet you'll go into a diabetic coma. i did have a California BLT as well and it was a good sandwich although the bread was a little too toasted for my liking. The staff was friendly, the ambiance was very pleasant and it was clean. But the cupcakes...really not all that. Sorry....", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r-t7IiTSD0QZdt8lOUCqeQ", "review_id": "V75NCU3EhqTDwPj5In94DQ", "stars": 4, "date": "2012-01-03", "text": "Good for an easy and leisurely business lunch or outing with the girls. The market downstairs is great for takeout and a great selection of bakery treats.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "J3I2NClEbD1Xr8lOdjxlqQ", "review_id": "GxaYFCprt-wyqO--vB4PHQ", "stars": 4, "date": "2011-10-03", "text": "After my last review, somewhat scathing regarding the burgers, I got an invite from the management to come down, meet the chef and give him another try. I thought to myself, \"how nice\", they read my review and they are concerned about the quality of their product. I think that is admirable. I did not take them up on the offer, because I don't feel that would be appropriate - I'm interested in doing yelp reviews because I have benefitted from reading the reviews of others, and I want to share my thoughts and feelings too :-) - I'm not looking for freebies.\n\nSo, anyway, last friday seemed like a good day to walk over to LGO and see what's shakin. I grabbed my growler jug (still the best deal around) and the wife, called a friend to join us for a beer and walked on down to the corner. The evening was a bit on the warm side, but it was quiet and about the normal buzz of busyness for this corner. It's always kinda crazy and we like to sit on the patio to watch the manic drivers race around trying to find parking. We went into the store and the wife ordered a grilled-fish sandwich. I nervously ordered a cheeseburger with fries. After placing our orders and getting warned that we needed to be around to pick them up, I moseyed over to the bar to get my jug filled with Stella. Did I mention that this is an awesome deal? So, we got some glasses and headed out to the patio. Soon afterward, they called our name and we got our grub. My wife's fish sandwich was consumed with muffled oooh's and ahhhhs', and she raved about the perfect texture, grilled flavor and delicious, fresh multi-grain bread. She also raved about the slaw that came with it. I think she liked this sandwich. The burger, on the other hand, is still a disappointment. I ordered it Medium Rare (the only way to order a burger) and kudos to the woman for not warning me about undercooked meats - I'm aware. really. And I asked for cheese and put it on a hamburger bun. It came open-faced with a pile of coarsly shredded mild cheddar cheese. It had the appropriate veggies - lettuce, pickle and tomato, red onion slices and the special sauce. With a pile of limp matchstick fries on the side, it was a big pile-o-food. The portion was impressive. That's about where it ended for me. The burger was overcooked and the pile of shredded cheese is a bit off-putting. It's impressive, I'll give 'em that, but a big pile of cold, shredded cheese just doesn't work for me. The cheese needs to be melted. A good burger has the cheese melted. at least some. Lot's of cheese can be fun, but it overpowers the rest of the flavors and tends to cool the burger quickly. I scraped off about two-thirds of the cheese - enough to make a cheese crisp if I had a tortilla, and put the burger together. Flavor was so-so. After I added some salt and pepper, flavor was just a little better than so-so. Burger was cooked to med-well, but still juicy. The veggies were fresh and crispy. A side of mayo for dipping the fries in is required for me. I like my fries Belgian style. The bun was a little dry and on the edge of stale, but not bad enough that I could not eat it still. Overall, I stand by my original review of the burgers here. I realize LGO is trying to stand out with a \"different\" presentation, and I applaud the effort, but I think it needs a bit more work to stand out at a time when everybody is doing burgers. The fries were sub-par, limp and forgettable. The ambiance, however, is what brings us back. Sitting on the corner patio, sipping a beer, having a great conversation and watching the show all around me is a great way to wind down on a warm Friday night. LGO - keep working on the burger, I'll keep coming in, but I think I'll stick with the wings for now.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "jdoGEEy5s-5L1O_lNzEi2g", "review_id": "RZZ9Tf5GWYwrcjg-ACiKmQ", "stars": 4, "date": "2010-08-04", "text": "Cliff notes\n- Cheap: $1-2/plate\n- Fast: It's ready-to-go and on a conveyor\n- Acceptable quality: I'm here weekly and haven't gotten sick lol\n\nThis place is definitely good for what it is, \"it\" being a budget-friendly sushi place that's great for a quick bite. In a response to the lower-rating reviews stating how the food is just okay at best or authentic or blah blah blah, well think of it like wal-mart vs. *inserthighendretailerhere*. This place has a business model based on selling in large volumes (hence the low prices like wal-mart) so they're gonna have to \"reduce costs\" somehow (so-so quality food, not-so-attentive staff, and slightly smaller than average portions), but it's still a solid bang-for-your-buck kinda place.\n\nOn top of this, I can be in and out quickly since everything is already prepared, perfect for those quick 30 min lunch breaks. All that's required is for you to grab it off the conveyor (depending on whether or not all the items you want are on the conveyor at the time). \n\nI've never had issues with seating, but do not make a point to go during peak hours and usually go with a small party (2-4 people).\n\nFor those claiming to be \"left to fend for themselves\" due to an inattentive staff, most of your sushi-related inquiries can be answered by this thing called \"the menu\" that sits on the counters. See, this miraculous piece of technology contains things referred to as \"descriptions\" on them that help to inform you about the sushi going round-and-round before you. Furthermore, there's even a pricing guide based on the color code of the plates to assist you further! WOW! Lol wtf do people expect for $1-2 plates of sushi? Someone to hold your hand? LOLOLOLOLOLOLOL DIAF\n\nAnd the cherry on top? $4 large japanese beers and $5 sake bombs! HELL YEAH!", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "aqqbh1NZoFk48kp0eqSLdg", "review_id": "Bmt1QRDT0GfyXkhOvj_BfQ", "stars": 5, "date": "2010-02-01", "text": "Fred M. pretty much said what I would say, so I won't beat a dead horse. I'll add, though, that they offer a wide variety of deep-fried quesadillas. \n\nDid you catch that?\n\nDEEP FRIED QUESADILLAS!", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ynGxw3zZqAjahVou563zXQ", "review_id": "V4hBluqV-xbgzk7Y6y9kzw", "stars": 4, "date": "2007-10-29", "text": "I have no idea whether there is a Japanese community in this part of town, but New Tokyo would suit one well. It's rather small, but they have a wide selection of Japanese, snacks, beverages (including my new fave beer, Asahi Black), refrigerated items, staples, etc. \n\nThis is not an Asian market, it's specifically Japanese, so don't expect more than a few crossover items like kimchi. That being said, sometimes it's good to specialize. It lets them carry more variety of Japanese products.\n\nThe cashier was very friendly when I finally stopped loading my basket long enough to check out. Like the first reviewer, I loaded up with snacks for the hotel room...along with a six-pack of Asahi Black, of course. Oh, one more important factor...the prices were quite reasonable, in line with most ethnic market imports...maybe even a bit cheaper than usual.", "type": "review", "business_id": "pWPzxPPXN4IqI7RUU_8KKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "hHwQaL3QN2xgTBSCQ26wIA", "stars": 4, "date": "2011-12-13", "text": "We got passes for the preview of Mission Impossible (Ghost Protocol). We enjoyed the movie a lot. The theater itself is fine. The chairs don't move, and you can't raise the arm rests. No rocking, no reclining (granted most theater seats don't move a lot, but these don't move at all). Otherwise the seats were reasonably comfortable. The screen is IMAX (i.e. huge), and the sound was reasonably good. \n\nThey could have put a little more slope into the auditorium seating. In other IMAX theaters I've been in it seemed the heads of people in front of you NEVER block any portion of the screen. But I found a few were just slightly into the bottom of the screen. It wasn't bad, but given my other IMAX experiences I did notice it.", "type": "review", "business_id": "LDJhwZN14AZOJyHjg2lkRw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "yy1SbjeyWiAhWfSr5d0new", "review_id": "GOconNmWgg6cJbgwSwrozw", "stars": 5, "date": "2009-08-06", "text": "Alright, I have been away from Yelp for quite some time, and I feel that this place is fitting to be my comeback review...\n\nChicken and Waffles. Yes, chicken and M'Fin waffles. \n\nIn the ghetto? Check\nHas sweet tea? Check\nHas no-nonsense, quick service? Check\nRidiculously long wait? Check\nBest thing that I have eaten in the last year? Check\n\nI have to say, not the best fried chicken I have ever had, but pretty damn good- it could use more seasoning. Now the waffles, probably the best ever... The waffles are deliciously soft inside, a little crispy out with a wonderful cinammoness to them. The seating is cramped, but it doesn't matter as soon as your food is delivered your table goes quiet, you get tunnel vision and after the first bite you are taken away to an orgy of goodness.\n\nIf you are in Phoenix, this is a requirement. Come real early or be prepared to wait. Don't forget to order the Red Velvet cake and they have Kool-Aid if that fits your fancy. Even after I came home from Arizona, I couldn't stop talking about LoLo's for like 2 weeks. Shoot, two months later and I am still drooling thinking about it...", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "40aklZ2SQPKnlTPZdvAqww", "review_id": "6jRs2P6zTYMn36fVnCu1Zw", "stars": 4, "date": "2012-01-14", "text": "In our continuing quest to identify cool, locally owned places to eat and/or drink, Caroline and I auditioned Vintage 95 last night. \n\nBefore I go further, understand that whenever I go out for eats or drinks, I have in mind a Platonic Ideal of the Bar/Pub/Eatery I most want to frequent. I'm on a constant quest to find that Ideal expressed in Real Life. \n\nVintage 95 isn't quite there, but it's damn close. If I ever give something Five Stars, you'll know it has pegged my Platonic Ideal. Anyway...\n\nThe plan last night was for drinks. No plans for food, just Adult Beverages and warm conversation. But it turned into more.\n\nThe location in downtown Chandler is terrific for us. The owners have created a very fine visual experience - leather, stone, dark woods, good lighting. And they don't have the music turned up so loud that you CANNOT HAVE A CONVERSATION. This is one of my pet peeves. If I want to stare at people move their mouths while enduring an aural assault, I'll stand on the deck of an aircraft carrier. When I go out with friends, I want to enjoy their company AND their conversation. Is that concept so difficult to grasp? [/rant off]\n\nThe atmosphere at Vintage 95 is very close to my Ideal. I'd go back just to sit on the leather couches in front of the fireplace, and then go back another time to sit on the leather stools at the bar, and then go back about fourteen more times to sit out on the patio. Seriously - go check out the patio. It is EXACTLY what a Patio Hangout Bar should be. EXACTLY.\n\nCaroline and I told the hostesses we were only there for drinks, so we were seated in the bar area in some fabulous leather club chairs. It wasn't initmate, but we weren't looking for intimate. And speaking of the bar, even though V95 advertises itself as a wine bar, they DO have booze. I'm not much of a wine drinker and was very pleased to see that they carried a pretty good selection of single malt scotches. Not an overwhelming selection, but well beyond the normal Glenfiddich /Glenlivit /GlenMorangie trio to which most places are limited. I had a couple of drums of Ardbeg, which is one of my new favorites and very reasonably priced at retail. (Scotch is never reasonably priced in restaurants, but I was celebrating so I didn't care.) Caroline had her normal \"vodka martini extra dirty extra cold\" which she judged to have \"perfect dirtiness\", (no wonder I love her!), perfect amount of olives and very cold. \n\nThe limited Happy Hour menu had some very interesting choices. We settled on the bruschetta and the smoked tomato bisque. The bruschetta was VERY nice and quite unusual. You get to select four of eight choices for your bruschetta platter; we picked: (1) white bean and pancetta, (2) gravlax, caper goat cheese and pickled onions, (3) fig chutney, ricotta and prosciutto, (4) brie, pear and onion jam. They were all served cold, in nice sized portions and the flavors were all nicely balanced and very interesting. Caroline would have preferred the bread to not be so crispy, but I really liked it. The tomato bisque was creamy, smoky and had well-balanced flavor. Caroline said it was unique and I say it was just darn delicious. \n\nThings being as they are, drinks and appetizers turned into food. A friend had told us \"you have to try the Vintage burger\", so we did. It came served with a mixture of regular and sweet potato fries, all nicely cooked and nicely seasoned. Recommended. The burger was VERY tasty. They obviously use good beef, the bun was fresh, the fixin's were tasty. HIGHLY recommended.\n\nIn for a dime, in for a dollar, right? So we ordered dessert. Again, the dessert menu is short, but I'm okay with that as long as they do it well. Chocolate torte with hazelnut gelato, apple pie with carmel sauce and creme fraiche gelato, and something else we couldn't remember. I'm allergic to hazelnut and don't like sweet desserts, so we decided to try the apple pie.\n\nLike everything else we had sampled, the apple pie was unusual - you wouldn't find it anywhere else. It was served on a freshly baked puff pastry, cubed apples served on top and inside - tender but not mushy - with lots of cinnamon and sugar, plate was swirled with salted dolce la leche. It was tasty, but instead of the expected creme fraiche gelato, we were served hazelnut gelato. I didn't realize it was hazelnut until I'd had a couple of bites and my throat started to swell up.\n\nAt this point that the night could have turned into a disaster, but to their credit - it didn't. We told the waiter who told the manager, (Gavin - one of the owners), who immediately came and asked if I needed emergency assistance. I didn't, I'm not THAT allergic.) Frankly, their response was EXACTLY the kind of customer service you want to see. Anyone can make a mistake, so no harm, no foul. But I must give BIG Kudos to Gavin for his kindness, attention to detail and outstanding customer service.\n\nWe will DEFINTELY be back and I strongly recommend you put it on your list too.", "type": "review", "business_id": "FCcFT610nQBVcRdY-devQA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "UL9chyH0a4Pj8J_9M6WSpA", "review_id": "VyX6x7wnThr9g9Z6VBDIgA", "stars": 2, "date": "2009-09-02", "text": "I have to add to Andrew's review.....\n\nI just can't believe the things that happened!!\n\nYes the app was good. The entree was good too, but there were bites of just bread with no chicken in the panini. It definitely would have been better with more chicken!\n\nBut the girl working here is one of the worst waitress/bartender/hostesses EVER!\n\nWhen we walked in, she didn't even sit us. We stood there forever waiting until she finally told us to seat ourselves. We went outside since there was nothing left inside. It was too hot outside so we came back in and figured we'd sit at the bar. Luckily a nice guy noticed us looking around and let us sit at the end of his table that he moved apart since his whole party didn't show up for dinner.\n\nI was so excited when I saw they had cider on their menu! And not just one, but two that I like! Wyder's Pear Cider and Strongbow!! \nI ordered a Wyder's. After I finished it and asked for another, she said they were out of them. Okay, so I ordered a strongbow. She came back and poured it into a glass for me. When I took a drink it was disgusting!! It was Boddington's!!!! When I finally got her attention away from flirting with a man sitting at the bar to ask her for the correct drink, she told me they were out of Strongbow too! How are you out of both drinks?? You're a restaurant. Shouldn't it be stocked? You're right across from a BevMo for god's sake!\n\nWhen we ordered our food, he ordered the app. Then I ordered my entree and she walked away! She didn't even get his order!!!! We figured it was probably for the best. We'd split the app and the entree and eat less. Stupid of the waitress to lose money that way, but whatever.\n\nWhen she brought my food, she didn't bring the correct things. How hard is it to remember? She had maybe 4 tables to take care of! Maybe if she stopped texting while she's behind the bar on her cell phone or if she'd stop having a conversation with the guy at the bar, maybe she could have done her job a little better.", "type": "review", "business_id": "tA2DT7CGQPzgA6tTcTkXDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xw77viWz_BbmyntxoBVH4A", "review_id": "IRGqHYbK5AOEv5MNYMz7cQ", "stars": 4, "date": "2010-02-04", "text": "This would most certainly be \"my\" coffee shop if I hadn't already established myself as a regular at another local shop. This brand-new, independent coffee shop has spent the money to look really nice (it even has a fountain inside!).\n\nBut what money can't buy is community and unfortunately this shop doesn't seem to have much of that. Granted, building community takes time and/or energy. For their sake, I really really hope it works out in the long-run.", "type": "review", "business_id": "o5x6DF0KK1OBsiUOx2gavg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uA18GuF_ezOH6tXkrrykbw", "review_id": "9CXNIZTV9uStuNbvvFS8uw", "stars": 4, "date": "2010-04-24", "text": "No matter what I order I know it will be tasty. Maizie's have a lot to choose from which can be a little overwhelming for me. I love their wait staff everyone is always friendly. When I am in Maizie's I feel like I am in a neighborhood hang out.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U3uT-Phb8iL2iuZpAROZlg", "review_id": "nzSOTOZiAb1ITqbRgWKnnQ", "stars": 5, "date": "2010-09-28", "text": "This restaurant is incredible, and has the best pasta carbonara and the best tiramisu I've had in my life. All the food is wonderful, though. The calamari is not fried. The bread served with dinner comes right out of the oven, and the tomatoes are the freshest I've tasted outside of my mom's own garden. This is great attention to detail.\n\nI can no longer eat at any other Italian restaurant without feeling slighted. This is the first place I want take out-of-town visitors I'm looking to impress.\n\nThe owner, Jon, is helpful, friendly, and really cares about providing a positive dining experience. He's spot on with his wine recommendations, and he organizes wine tasting events which you can find out about by joining the mailing list or Facebook page.", "type": "review", "business_id": "E6DnUFy3GoN4DxTqturtug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "wJzMpk54FF2jeENqMBJ24Q", "review_id": "9BJJwIciVG-JPlXetInbXw", "stars": 4, "date": "2012-06-08", "text": "One of the spot my coworkers and I go to for lunch. We usually try to get there before 11am (weekdays) to beat the rush from all the Corporate places near the MetroCenter. \n\nThe deli sandwiches are good. I usually stick to getting the Amy's turkey-O. If you plan on substituting a side, make sure you tell them because the cashiers don't normally ask and you'll be stuck with chips. The salad bar here is very decent for the price. \n\nDon't forget to get ice cream on the way out!", "type": "review", "business_id": "znBnrQNq1FdUt5aIGAbyuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EPROVap0M19Y6_4uf3eCmQ", "review_id": "DJVxOfj2Rw9zklC9tU3i1w", "stars": 1, "date": "2011-11-22", "text": "I have always been a fan of Burlington's deals, however I will not be shopping at this one again. I went to return a belt... pretty simple. Instead, I stood in the customer service line for 15 minutes thanks to an employee of Burlington buying/putting things on layaway. It took three other staff to help her out. There were no words said to me except \"Hold on\". I was pissed. When the lady was finally done, the employee at the service asked \"what do you want?\" Serious help is needed there!\n If you work in the area of \"customer service\" I think you should have some.", "type": "review", "business_id": "l4vBbCL9QbGiwLuLKwD_bA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "gTCM7qlVrwdml-hFB6aJqQ", "review_id": "J2Ig5cV9fJU-KGewdzQXOA", "stars": 3, "date": "2008-01-28", "text": "If I could give 4 stars for atmosphere and 3 stars for food I would.\n\nWith all the hype of getting a Margaritaville I guess was expecting a little more in the way of Margaritas and cheeseburgers. But I was underwhelmed with both. You can get a much better burger next door at Yardhouse and a much better selection of Margaritas from Salty Senorita. With that aside this place is quite the spectacle. It has 2 stories, a stage, fishing boat booths, and every other piece of decor that a Parrothead could love. TV's broadcast Jimmy himself rocking out and some odd montages of Parrothead outings. Live music is offered here several nights of the week and they offer 2-3 bar areas. If defiantly won't become part of the regular rotation but from time to time we might wonder in looking for our lost shaker of salt.", "type": "review", "business_id": "YeDYa6tYL16CyqYvUVOtLw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "rghv_qgXpluzDE9qn8CNrw", "stars": 4, "date": "2010-02-05", "text": "It is romantic here even if you are with just friends. The waitress kneels at the couch to speak with you, pour your wine, bring your check...I love that...its so 5 star and respectful. Our waitress was so friendly and I was on cloud 9 because the whole ambience made my evening so nice. I love the darkness of it, its all so exotic and relaxing there especially with all the coves and different areas to be seated. Apparently you have to put your name down if you want a table for certain as it seems to be packed anytime I have been there. We needed one more bar stool-we had no reservation and the waiter actually went \"out to the storage\" to get us one. Impressive!", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "MjLAe48XNfYlTeFYca5gMw", "review_id": "GXj4PNAi095-q9ynPYH3kg", "stars": 1, "date": "2012-05-19", "text": "Another night meeting friends here. I have to laugh. Waited another 20 minutes for my beer to be refilled at the bar. A girl even took my empty without even asking if I wanted a refill. A new brunette girl that I don't recognize left the bar and sat down with her guy friends on the customer side AT 9:25 ON A FRIDAY NIGHT. Another bartender had to ask her to come back and work. Management.... Pull your head out of your ass! Sad to watch.... I need to talk my friends into another place!", "type": "review", "business_id": "CEswyP-9SsXRNLR9fFGKKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rWN1pg3mCF2btJWtG6JmJA", "review_id": "LN4l4wklQB0IVBjm-vq9TA", "stars": 1, "date": "2011-05-04", "text": "Not busy at all but took nearly 45 min to get our meal. Ordered the trout and was shocked to see lots and lots of bones. Hmmmmm. Well asked the waitress about it and she said \"they try the best they can\" hmmmmmm isn't this a \"fish\" restaurant? \nThey comped the trout but still not sure I would go back.", "type": "review", "business_id": "6Ry-gjGqApTSRZkfdYlLmw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0jJhjgr3wPin-8vYnPab6A", "review_id": "L_q9kLaGo33j2Ij8yUIGDw", "stars": 5, "date": "2011-12-30", "text": "This an incredible church that embraces the principle that ......Christ Life Church exists to bring people into a life-changing relationship with Jesus Christ. Three campuses allow Christ Life to reach into several locations...online, Tempe and Casa Grande. The wonderful children's and youth programs appeal to a wide perspective of people.", "type": "review", "business_id": "taSsiZAGZSz2gRg7_M4XDw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-yg_AMAU2HNh48zcuQ13mw", "review_id": "dY_p1YkjZxJmREb9Lfc5vw", "stars": 5, "date": "2011-04-28", "text": "This is our favorite breakfast place. The food is good. They have the best biscuits & gravy of any restaurant I have eaten at. The wait staff is friendly. The only complaint I have is that Sunday mornings are packed, so there can be a wait to be seated.", "type": "review", "business_id": "3oLy0rlzRI_xiqfQHqC4_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UHyDQ-laihWMGa8MtIToOg", "review_id": "mTcLzmYunqJIGKgklFWICg", "stars": 4, "date": "2011-08-14", "text": "The best sweet and sour soup ever! Food is delicious and favorable. Delivery is pretty good, nice people.", "type": "review", "business_id": "0QTn4pMzKv1mnQifcP9YoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xP3o3-r0KRUnZqBSdIGJjw", "review_id": "-_hed9F2kUDdb4oa1CXKIA", "stars": 5, "date": "2012-01-05", "text": "I had looked at several invitation websites along with catalogs with no luck in finding just the right balance of wedding colors/design. Thomas at Alphagraphics helped me every step of the way of designing and printing our wedding invitations and programs. I knew I wanted a booklet-style, but needed a little design creativity from Alphagraphics which they nailed! I highly recommend Alphagraphics to anyone needing any print work done - not just wedding invitations. Thomas and his crew are stellar!!", "type": "review", "business_id": "N5iW2JG5e-QyUh7brRNSfw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "xNvNTC2iXwJiiujNK6Sphg", "stars": 4, "date": "2010-05-22", "text": "Every now and then my Vietnamese side craves for PHO...are you surprised!? Noodle Ranch is my local Pho joint. I can literally walk to this place :) Okay, the Pho Tai is great here....I got the combination once and it wasn't as good. I love the decor here lots and lots of old photos of Vietnam. Service is always good here and I've been here when their busy and when it's slow. If you need a Pho fix I would definitely recommend this place!", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 1, "useful": 6, "cool": 0}, "user_id": "5je-Jg8tq5BWxJtDBmTK2Q", "review_id": "jNewOjPp56NMDrKlajrgFQ", "stars": 1, "date": "2011-04-23", "text": "Yikes, reading other reviews I realize my bad experience wasn't unique. As a server I make a very laid back customer. I like pretty much everything I eat and don't require a lot of attention from the waiter. \n\nLa Piccola Cucina would benefit from just one extra person in the front of the house. Our guy, though adorable and friendly, was too busy to refill our drinks and to remember to bring our appetizer (though charged us for it). The ahi tuna (highly recommended over the other fish options he said) was so overcooked it was the color and consistency of chicken. Like other reviewers mentioned, he was frantic and made that clear to every customer. At one point I even saw him in the kitchen cooking - they need another person! \n\nI left super stressed out from the experience, which is very, very unusual for me. You can either have bad service or bad food, but not both.", "type": "review", "business_id": "NNGJQF3WeIHzGzweCpZ-VA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IE_nJq65Qpso5fN4tG9zjQ", "review_id": "WONOXuKoiT2hkKITvTfC0g", "stars": 4, "date": "2008-04-25", "text": "This is your typical Buffalo Exchange. I've been to others in San Francisco and San Diego, and they're all pretty much the same. Yes, they're super picky brand name whores about what they buy from you, but it means that there are some really great items for a much smaller price tag. I've gotten dresses that people always compliment and things that I've bought on impluse because I thought it was a great buy, and wore once. \n\nThe building this one is located in leaves a lot to be desired, but there are good buys inside. I walked away with a great pair of skinny jeans, a cute top, and a super comfy dress for under $50 =).", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t8vH6ubd-6i9DTisZaQdgg", "review_id": "IC2EAv_PGx44FnTvfAs_FA", "stars": 4, "date": "2008-06-23", "text": "Though perhaps not the place you may pick for a special brunch with champagne and chocolate brioche French toast (a signature breakfast at the Sofitel Philadelphia), the Good Egg is my choice for neighborhood breakfast that offers consistent service and food in a comfortable atmosphere.\n\nNo matter how busy the restaurant becomes, and on Sunday it is packed, the staff is always friendly and welcoming. You may have to wait for a table but the waits are never excessive and there is the coffee trolley where you can help yourself while waiting. Even more remarkable is that even at its busiest (read Mothers/ Fathers days), service is speedy and attentive and the kitchen never seems to slow down. Someone here knows how to run a restaurant!\n\nThe menu contains a large assortment of the usual breakfast fare, eggs, pancakes, french toast, etc, all well prepared and tasty. In addition there are is a good number of health conscious offerings and even those less healthy dishes can be requested to be made with egg whites or egg beaters, and non-starch substitutes (cottage cheese, fruit, and tomatoes. etc). Some of my favorites include the Hey Ricky Omelet, Huevos Ranchero ,or my indulgence a (as in one huge singular) buckwheat pancake with (my choice of \"fillings): chocolate chips ( I admit my addictions), pecans, and bananas... \n\nWe always opt for the patio and even in the scorching summer heat; the misters make this a great outdoor picnic with the best people watching in Phoenix.\n\nAfter you have been here a few times you feel like part of the family and with their frequent dinner program they offer even more incentive to return.", "type": "review", "business_id": "4meJyPOhuAKzywUJTmu2hw"} +{"votes": {"funny": 1, "useful": 7, "cool": 3}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "SWdrx60taMa442b1enwfCw", "stars": 5, "date": "2008-06-13", "text": "I absolutely love this little spot! It's a great little known boutique with incredibly unique gift items that I don't have to drive clear out to Scottsdale to find. I've been shopping at Vignettes for about 8 years. Whenever I am in a quandary about what to get someone, this is the first place that I head to. Mostly it is because of the wide range of specialty items that they have on hand. Whether it's something for the garden, a gift for the new bride or baby, a unique piece of art, or heavenly scented candles - you will not be disappointed.\n\nThe owners / staff are super friendly and have always been more than willing to help find something within a price range or based on occasion / need. And they do the most amazing wrap jobs, making gift giving even easier.\n\nThe final bonus is their annual Clearance sale. For three days each year they basically blow out their stock to make way for new finds. Ask to be put on their mailing list to ensure your have a heads up and get there early because long time customers like myself never miss it. : )", "type": "review", "business_id": "pRmHreZcF7YmNEEPukfcFg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "BUeMRVgAQvBWnnrI2xcA1Q", "review_id": "UxzU0E5eM_ZgIMus-wpS8g", "stars": 4, "date": "2010-09-21", "text": "Great Southwestern restaurant. The food is incredible, especially the stacked enchiladas. Normally I do not eat heavy foods, but this was way too good to pass up. The chips and salsa were very tasty as well.\n\nService was very friendly and timely. The interior is pedestrian at best, but still a pleasant environment.", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GVH_iuoPc0aP3ZNYlWuKag", "review_id": "QqUj8brMiWkMicmlWtpPrw", "stars": 4, "date": "2011-06-24", "text": "Went back to AB a few weekends ago, again for brunch, with a large group. I was surprised to see that, although they advertise themselves as being a brunch place on the weekends, they have pared their menu down to basically 4 items. The people that I invited that had never been to AB before were expecting more of a variety in brunch items since I'd told them that they had great brunch, but their concerns were quelled with a few bloody Marys and some good (if not diverse) food. I had the egg sandwich sans bacon again (excellent again) and Sweet Pea and I split the french toast as well. We'd only had a small sample of the french toast at the opening, so we didn't realize that it comes with this whole jar of cream and berries, in addition to the syrup. If you come here for brunch and like french toast, you have to try it. It's the best french toast I've ever had, and many at our table agreed. The secret is that they bread it in cornflakes. Yum. And, the bloody Marys are in the excellent range, I'd say just below the phenomenal ones at Dick's/Rokerij. The service was also friendly and quick.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aLTl_OkLo0BFRxdz1n6sYA", "review_id": "gLHPqclZG51HH9EGzOFjxQ", "stars": 4, "date": "2012-09-20", "text": "Great prices, great food. The staff is very friendly... I'll definitely be coming back here for lunch on a more regular basis. I had the kung pao, and the portions were incredible for the $5 I paid. \n\nNot mind blowing, but better than most Chinese places I've been to in the Valley.", "type": "review", "business_id": "ImghNwml8N-ncAqhXe00hg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "O3huqF3nBeWP9Zd6NmCAaQ", "review_id": "ZXp8gEhfE7BHgRYIgnd3gQ", "stars": 5, "date": "2011-08-18", "text": "Came here with a large group a while back. We were there to eat and have a beer before a concert there. It was a weekday so we made it to happy hour. Happy Hour pricing was fair. The food was pretty good. The very best thing there is the beer! They had like everything on tap! MMMM!", "type": "review", "business_id": "cBpJIOrVXotDI0XAZH_k0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "68exKLCQnnZrvXNFOcIUnA", "review_id": "odua8qFSMEXSFYmElQTspQ", "stars": 1, "date": "2012-09-17", "text": "This is my first year participating in Arizona to sell clothing, just wandering how busy its goona be in there ??? little worried, can any one reply me ??", "type": "review", "business_id": "FkHhy6kWeoJf0xJTqzRWmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YBVdmm5zlpLpi2_DiKsd2A", "review_id": "vwHmBJ5YKbZxNFtmP2KpRQ", "stars": 4, "date": "2011-03-28", "text": "The vibe exuding from this place is pure awesomeness. Reminiscent of a trendy hipster coffee joint, this is actually a casual vegan restaurant. \n\nI am a pescatarian and unless I am eating seafood, I steer clear of meat, even the mock kind usually however once in a while it's delicious... so why try it here at Green I thought. The menu's style is comfort food, which as we all know traditionally is heavy on the meat, sauces, and fat content... so at least if you're going to be bad, you can do it with organic and pure ingredients.\n\n\nSo as I wanted to sample as much of the menu as possible, my lovely friend, her fiance, and I shared a few items:\n\n*Artichoke Gratine: The corn chips were amazing, lightly salted and crisp. The dip was a bit too garlicky and runny for my liking. Ate a few bites of this but could not see myself eating the entire thing solo.\n\n*Spicy Buffalo \"Wings\": first things first... do not let looks dismay you... true it looks gross but they taste legit! The flavor of the buffalo sauce was perfect, although could have been spicier. And the cucumber ranch dipping sauce was perfectly creamy and lightly flavored as to not overpower the \"wings\". This dish is a must try!!\n\n*Vegan Chili Fries: the fries are thin cut and tasty. The chili sauce was good, at first, but I quickly got sick of the flavor. This could be because I was never a huge chili fan even back when I ate meat. Hmm, I think you are better off ordering the thyme fries.\n\n*Crab Puffs: Perfectly crisp with a delicious creamy filling. Another must try!\n\nLastly my friend's fiance ordered that day's special which was a green chili burrito... delicious and huge. A bit too much rice but besides that a great option. It came with a side, which he ordered the curry pasta salad, mmm.\n\n\nGreen serves bowls, sandwiches, pizzas, salads... next time I am back in the area I will be checking out more of the menu when craving \"meat\" and not my usual tofu, seafood, veggie diet. \n\nMight I add the service is friendly. Perfect place for a casual friend date.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "BslISEau8Pk2voEPN7kY-g", "stars": 4, "date": "2012-06-29", "text": "Rokerij is worth the hype. We popped in last week for a late bite and left super happy. We scored a few seats at the bar, the place was SUPER crowded (which is a good sign on a Wednesday). I started with a beer called Banana Bread, which was awesome. Wifey had a glass of wine, but I can't remember what it was. We couldn't decide on what we wnated so we ended up splitting the entree of Blackened Salmon with Apple/Chipotle chutney and some potatoes. We also got three of the small Plates: mini reuben, crispy calamari and cilantro rubbed grilled shrimp. All the food was awesome. The salmon was cooked perfectly, although i think I would have liked the chutney on the side, but that's small fries. The calamari was cooked perfectly, the shrimp were awesome (although the bed of rice it came on was meh), and the mini reubens were great as well. I was super excited to try it, and it delivered. Can't wait to go back!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 8, "useful": 16, "cool": 11}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "xE2MKvzes5Twg-jfAe8s4Q", "stars": 5, "date": "2009-06-16", "text": "Beer...or Yoga?\n\nLocated in a small center just east of Four Peaks Brewery in Tempe (a reasonable distance from the light rail on Apache), is an amazing, classy studio for the Mind-Body connection.\n\nMr. Mustachio had decided after doing a couple yoga classes with me at the ASU gym that he loved the stretch, so pursued a class for a semester at ASU this Spring and had the pleasure of practicing with Tish Hegel. After seeing his body transform to only 16.2% body fat, all his jeans get too big on him and fill out his American Apparel briefs nicely I was super jealous. He raved about his teacher and I could tell he had de-stressed a lot since he started the practice.\n\nLuckily, she opened up a studio recently, and it simply goregous. The waiting area is filled with yoga material and a very calming space with a remodeled bathroom and dressing rooms to change if coming from work/school. Not at all cheesy like the SouthWest Inst with the way too many angels imagery (creepy!). But the gem is truly the practice space. Hardwood floors, high ceilings, a beautiful staircase, tasteful decorations and absolutely NO MIRRORS. \n\nThat is right- the only person staring at my pudge rolls is my teacher and who-ever isn't focusing on their tree posture-not the entire class! It really relieves a lot of stress and helps me concentrate on how a posture feels as opposed to just looks.\n\nAs for Tish Hegel, she is simply outstanding-she has so many credentials, you have to read her biography for yourself. She has been practicing for a loooong time, and her hands-on instruction and confident voice echoes in my ears even now (bring those shoulders down!). \n\nSo far, I have done: Ashtanga Inspired Flow (pretty intense, really hurt for 3 days, would recommend after getting into yoga for a while), Sivananda (ditto), Focus Class (did a lot of bike riding and she focused on everybody's body issues and did the sequence right then and there for us and my lower back and knees felt amazing the day after) and this morning brought my friend to Kinetic Yoga: Morning Movement and Flow, which kicked our 6am asses a little bit but we both felt amazing afterwards! She does tons of modifications, is always making sure we are okay, and is just super personable.\n\nI did the huge package since I didn't renew my ASU gym membership for this summer, but you can do drop-in. \n\nNow for the cliched Yoga Review ending: \n\nNAMASTE!", "type": "review", "business_id": "d7_jkx0VPx3uHsUl18iHMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qLCpuCWCyPb4G2vN-WZz-Q", "review_id": "bxPZPvBJp5HwyKVHhcUMLQ", "stars": 4, "date": "2010-10-31", "text": "Great hotel in Central Phoenix for a stay-cation, but not necessarily a place to stay out of town and without a car. Not much around the area, and unless you're familiar with downtown, I would rather have a guest stay in Old Town Scottsdale, etc. BUT if you do stay here, it's awesome. Great boutique rooms. Awesome pool that's happening in the summer. A GREAT rooftop patio bar, and a very very busy lobby with Gallo Blanco attached. A great place to stay, but have a car!", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "EUCqs_gfKZi1YoKVkWjSYw", "stars": 1, "date": "2009-03-18", "text": "really, I can't believe this place has received such high reviews from people.\n\nmy lady and i walked in, and were greeted rather rudely by a pretentious bitch at the front with a monotone \"name please?\", instead of a warm, friendly, french welcome to this rather charming looking place. we didn't have a reservation, which from the looks of how dead empty the place was, didn't seem like a problem. until the hostess whisked through her reservation list and explained she'd try to \"fit us in\". it was 6pm, the place had one other couple dining, and we were informed that the next party was arriving at 7:30. we weren't really looking to hang out. it would have be awfully lovely if yelpers would have informed of the need to MAKE RESERVATIONS before going in here, because if you don't, you're automatically a piece of shit according to the staff. sorry, i don't plan very much ahead. next time i will, and it won't be here.\n\nanyways, after debating for a minute or two with herself, the hostess decided we could \"squeeze in\" and sat us right on top of the other couple inside the restaurant. she informed us that we could cork our own wine, for their low low price of 9 fucking dollars. in words only office space could adequately describe,\"coup des tartes, what is it exactly that you do?\". \n\nthe food was good, nothing spectacular for $25+ a plate. we got a salad with apples and nuts and bleu cheese, which was served warm. now this is the first warm salad i've had all of my life, and by no means am i some sort of wordly food expert, but i believe salad should be cold and crisp. not soggy and warm. yuck. the cordon bleu was tasty and filling, however, the wobbly table was an extreme annoyance when cutting through the chicken, but it was solved (with no thanks to the staff) by placing a jack-in-the-box gift card under the leg. i will admit, the mashed potatoes are some of the creamiest and best i've ever had. my lady got the pork tenderloin, which had a strange peppery-sweet pairing which i didn't particularly care for. we were broke for desert, so unfortunately we didn't get to try any tarts. you would think for a place that promotes itself as being so poise would get some fancier menus, other than a $.15 piece of cardstock copied in bulk at kinkos.\n\nthis place was rather disappointing. i honestly thought it would be way more comfy and welcoming inside but it really wasn't. it presents itself as being so high class and french and oh-la-la wee wee, but when it comes down to it, it's still located in a tiny shack of a house at 16th street and highland. maybe if it were located in the biltmore i'd give it a bit more cred.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P-9g9-6OriX0ElKpZknUKA", "review_id": "1RSEAeAWilUywt1B3SAkSA", "stars": 4, "date": "2012-12-30", "text": "Great place to have a meal with family, can be a little on the loud side cause ita always a busy place, recomend calling ahead and getting name put on waiting list, reservations party of six or more only price range moderate, but well worth it", "type": "review", "business_id": "5GpvSL1tlAjpgdJKZ5eLpg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "qT17WVkJi0RvQ4nNPN6NDw", "review_id": "pyCM8bH0z8fp6cWg6f2hKQ", "stars": 5, "date": "2011-04-22", "text": "Figured it is time to write a review after going here for quite a few years for dinner on special occasions or just to have some of the best seafood and Bone in fillet around. \n\nFirst off you have to understand that the cuts are top quality so you can order almost any steak off the menus and be dazzled by the flavor, which is fantastic to the point that adding anything to it would destroy the integrity of the taste as is.\n I mean the meat is perfection on a plate and this needs no other explaining.\n\nIf with friends or even your significant other you must start with the the seafood tower, which can be order in many different ways to match your appetite and likes. When presented at the table you and your guests will be blown away at the quality of the seafood and rightly so as it is brought in fresh daily.\n\nThe sides are too awesome in their taste and quality and i suggest the Lobster mash or the Maestros Mash potatoes neither of which will leave you hungry in their own right, but often wanting more :) \n\nWine selection is great and the atmosphere is top notch, but topping it with some of the best servers in town makes this one of my favorites for entertaining. \n\nyou will not be disappointed.", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y9LxzNvQxKwLhy2Zo7R_4w", "review_id": "WD99RuBcxqvYRCFTf_mT3A", "stars": 4, "date": "2009-01-31", "text": "I was only able to play the front 9; my wrist was hurting too much to finish, which is a big deal because I live in IL, and was returning from LA and stopped here specifically to play the TPC. Oh well.\n\nI was a single, and got paired with another. The course was pretty open, but we took our time and enjoyed the round. The front nine, although rarely shown on TV, is quite nice. Definitely challenging enough, and I didn't even play the back tees.\n\nIt was fairly easy to get on, the bar had pretty good food for a clubhouse, and the staff were very helpful. Definitely recommend the TPC.", "type": "review", "business_id": "9lDZ2d6oRpFsSWwDCCDQOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZoBrIw-7VgCOO30GJVCoOA", "review_id": "aRcp0rlSuAiuF-CDDZx9nQ", "stars": 5, "date": "2010-05-18", "text": "I can't describe to you how amazing these gourmet adult hot pockets taste! They literally MELT in your mouth- a few of my favorites are the Cajun Chicken, Dill Salmon, and the Stilton & Steak---Bon Appetit everyone! And don't forget about the all day everyday-$3 car bombs(you can't beat that price) their happy hour is amazing, too!", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ASi6ZgbbwXIwU2H24uANmQ", "review_id": "VqNdpXrssjJrC0Z_swPUdA", "stars": 1, "date": "2011-03-15", "text": "I was really excited about this event, maybe my expectations were too high, because I was really underwhelmed. Very little shade, ran out of water, by the time I got there at 1pm (other obligations) 20% of the vendors were out of food, and by the time I ate my way through some, everyone else was already out. 60 bucks for that? I don't think so. \n\nAnd when I mentioned it to \"the person in charge\", he was patronizing, invalidating and kept telling me how happy the chefs were. Well, I'm your consumer, big guy. \n\nSorry, Devoured, wish it could have been better. \n\nWhat food I did try, was pretty good.", "type": "review", "business_id": "145SQ_msdQ1yo7J0E63VoA"} +{"votes": {"funny": 9, "useful": 7, "cool": 7}, "user_id": "8tbXmjYGsYFZXk6ppuwRWQ", "review_id": "6iEP6dvHIefVMMnjeDRNcQ", "stars": 1, "date": "2010-07-06", "text": "The beach paradise of Ixtapa-Zihuatenejo awaited us....unfortunately, so did a connecting flight in ARIZONA of all places...\n\nLong story short....1/3 of our luggage did not arrive at our final destination, various articles of our clothing are still missing as well as my cell phone charger...not to mention security forcing us to open sealed containers of my son's baby food and milk for litmus tests...\n\nI looked on the bright side....at least we didn't get deported =)", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cwm_3br1CTH8IO8ZwWzFLg", "review_id": "CxVOhu043DTW4zPTsQnJPA", "stars": 5, "date": "2012-12-29", "text": "So very Portlandia in its hipsterness and decor. Premium coffee roasted in-house, in the middle of the desert, no less! Who would have thunk it.\n\nBaristas were profesh and friendly. They even warmed up our pastries upon request. Perfectly foamed milk and fruity noted espresso. I hope this place has a long life in Scottsdale, where great coffee is few and far between.", "type": "review", "business_id": "Hgbxen9iKGL4AH6kKgC8YQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "7izaZThzAWk2UjrDTL849w", "review_id": "ZbSLbPWeDfSL1HxyiSRqEg", "stars": 4, "date": "2009-01-21", "text": "This is a little hockey dive-bar located in the Arcadia area. TV screens hang above the bar & as you look behind the bar you can see the hockey rink and players. Enternaining as the other review said. I had Dunkel Hefeweisen and my girlfriend had a Corona. Good times as a group of kids played Rock Band and sang off-key Nirvana covers. I like this little hidden place. Just be prepared - it's your average little bar for the average Joe guy.", "type": "review", "business_id": "yb17xHvhDJthJGS10uhFeQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "H4ewd_HH1DE0Y8RbC_7HbA", "review_id": "pMm0qHdnBWd_PWGyYEOnWg", "stars": 4, "date": "2010-01-23", "text": "Love this place. Actually, today was awesome, because they usually only offer the \"express dozen\" through the drive thru, and the kids didn't want to go in, so the dude behind the speaker actually fulfilled my order as I wanted.\n\nThe only thing that bugs the hell out of me is that they charge for 2 donuts when you get a long john. :-(", "type": "review", "business_id": "0QrA-Klgp1R-GzUr6uJS7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ziCKT5n58tcVfgksImx0VQ", "review_id": "E6-DKEktgxA_fLEnfguAwA", "stars": 4, "date": "2011-04-15", "text": "I grew up on Empanadas in Panama and I have been hard pressed to find anything close to them in the U.S.. today I found them! \n\nA perfectly crunchy crust and the beef was beautifully spiced. Usually Empanadas are bland and soggy. They did a great job on these.\n\nI usually don't like rice, but the rice and black beans were wonderful. \n\nService was great! I'll be back!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Gi_ZP3Pjdvc9-a8aS3SH0A", "review_id": "i5Ms8r5AMRa-wcU5-necFA", "stars": 5, "date": "2011-06-15", "text": "Awesome subs clean and friendly well priced.", "type": "review", "business_id": "rRe2eLIQ4MQ7d6vFL26Qdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0NckJhx0qXykvvhsm-p7MA", "review_id": "Y8GAudCnbK-05qkFzLsv0Q", "stars": 4, "date": "2009-03-09", "text": "Had dinner and brunch, not on the same day...the dinner was good, although I thought the mandala masala could have used more flavor. Brunch was great, tried 2 different tofu scrambles and both were very good. Service is...let's say uninterested -- it's hard to be burdened with angst and chipper.", "type": "review", "business_id": "E8z9E0aFDYwC7KQuEU3GYA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "thlVIc8s6ZCP37UGMf3yDA", "review_id": "cALYebKb5hygdKHqlQJu2Q", "stars": 4, "date": "2011-04-12", "text": "This is a very interesting place. Don't go here thinking it will be classy.", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QAwWrE6LLbVHNtZOoDdRRw", "review_id": "SawdMXLYD5ytRmMFvY4nmA", "stars": 5, "date": "2011-03-20", "text": "I LOVE Chic Nails!\n\nI used to go to Tip & Toes on 48th street and Ray Road, until one day they were \"too busy\" to take my friend and I in for pedicured. We discovered Chic Nails and have been doing all of our manicures and pedicures there since. \n\nThe staff is extremely friendly and they give the best pedicures for a very reasonable price. I highly recommend this nail salon over any other!\n\nP.S. It is extremely close to CK's Bar & Grill to go for happy hour after! :)", "type": "review", "business_id": "QGeliKMObpVZ3jP89--ZIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v10WwWFKPAK6aKjghrLj3g", "review_id": "j-jMQdELr6AFkCcEHxB7ww", "stars": 5, "date": "2011-03-06", "text": "After the Padres Spring Training game, we had reservations at Don & Charlie's in Scottsdale . None of us had been here before and it came highly recommended by my dad. As soon as you walk into Don and Charlie's your eyes start feasting on all the signed baseballs down the left wall. Now everywhere you look from floor to ceiling and even the ceiling itself is covered in memorabilia and autographed items from athletes of all sports and other celebrities. Besides the amazing assortment of sports artifacts, I especially like the Cactus League Beer List which pairs a beer with each city that has a team in the Cactus League. Colorado = Coors Light , Texas =Shiner Bock, Chicago =Old Style, and San Diego =Stone IPA, etc. Also worth mentioning is the complimentary chopped liver platter with rye bread and bagel chips they bring as soon as you are seated. I had the ribs with coconut shrimp combo which was great. I wasn't thrilled with the side dish: potato's au gratin which is a $2.50 upcharge. They also bring a huge bowl of cole slaw with each entr\u00e9e or you can choose soup which comes in a smaller bowl than the cole slaw! We were too full for dessert and as we walked out, this place was packed! I found myself trying to take in as much memorabilia as possible and then on one side of the crowded lobby there sat Willie Mays himself. He was signing his book (or a baseball) for a $200 charitable donation to his foundation. Needless to say, I 'm not bringing home any memorabilia myself!", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bZFRqP7s0Vszxeu8_IwYow", "review_id": "SmUMyCUNrT9HEo_DXdgUuQ", "stars": 4, "date": "2010-02-17", "text": "I have to admit that I find myself thinking that I like mine tall dark and Russian. \n\n It's nice to have a coffee shop near by that's not Starbucks, has good coffee and reasonable prices. So far I just stick with the house brew (which is smooth and not too bitter yet not too sweet) since the fancy coffee drinks usually have many calories that I do not need! I have tried the blueberry muffin-quite yummy as well as the chocolate chip cookies- delicious. The cafe is attached to The Great Indoors so you can people watch, browse thru design books or take a leisurely stroll through the design center. It's a great way to unwind or perk up on your choice of caffeinated beverage.", "type": "review", "business_id": "CrBsdxqOjPdnfsDxV89GJQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FpCmGLWHe5Y-kDS7ZYaF5w", "review_id": "oTB_mpCKcu-8wayQQuCDZw", "stars": 5, "date": "2011-03-14", "text": "Best food, super friendly staff, and great prices. Love it!", "type": "review", "business_id": "m9Wqqma30o-hH2fAX7dnug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_w_hrcZ-9uObIBepDmLJwg", "review_id": "1e_YRoF0lrA9-4tvdym_Sg", "stars": 5, "date": "2010-06-15", "text": "Christy is an amazing cake artist. She has an impressive portfolio as she has a flair for creativity. Her cakes are amazing and are truly one-of-a-kind. She also has several delicious cake flavors to choose from or she can create one for you. She has made several cakes for our family and I have been impressed with everyone of them. I was also excited to see her compete on TLC's Ultimate Cake Off show early this spring. If you're looking for a sculpted cake or one that will be the center of attention at your next party, then I recommend you call Phoenix Cake Company.", "type": "review", "business_id": "M3zLQRbSF_VcGukkzxXc4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GVH_iuoPc0aP3ZNYlWuKag", "review_id": "WqLc0KSfMHGoWNtvPque5w", "stars": 4, "date": "2011-02-19", "text": "OK, Sweet Pea and I love us some Coup, and it's not just because we've been coming here for years- since I lived across the street and could see the restaurant from my window- or because we got engaged here (which was incredible.) It's because the food never disappoints. You can go to restaurants and have varying experiences from the best meal of your life to terrible, but Coup is not the place for that. It's consistent. And consistent can be good, or bad.\nAs consistently good as the food is, the service is likewise consistently slow (albeit friendly). We went here for Valentine's day which we've been several times and I highly recommend. It's romantic without being showy. They have a special Valentine's Day set menu of 4 courses which is always interesting and good. And, if you go on the day before Valentine's Day, they still have the menu, but it's cheaper. Damn those greeting card \"holidays\". The menu is also consistent. The outstanding things are the brie brulee which is an absolute must-try as an appetizer, and the lamb shank. Everything else is solidly good without being great. The desserts are exceptional. I like the BYOB aspect of the restaurant, although, they do charge you a lot for \"corking fees\", which amount to just charging you for nothing since they have a corkscrew sitting on the table and you are in charge of opening your own bottle.\nCoup, I love you. You get 5 stars if you vary your menu a little, please, please, please get more vegetarian (if any vegetarian) options, and improve your service.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "qT17WVkJi0RvQ4nNPN6NDw", "review_id": "4jkSNOjZN-35vo1_Z2SL7w", "stars": 3, "date": "2011-06-06", "text": "Great food and awesome service! Even better that the Chef came out and personally checked on our experience. I will be back for more delicious BBQ", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "UfMHoQ4lic1aCkXFa4TxlA", "review_id": "MbLozRSxSjtMJ3YmPCms7Q", "stars": 1, "date": "2012-06-17", "text": "See the huge sign outside that says $2.50? Yeah, that's for shirts only. I was caught off guard when I brought in my skirt and got nailed for about $3.79. As I sadly handed over my $5 bill, the lady at the counter said a lot of people had told her they felt betrayed by the sign outside. No kidding. I had originally been heading down the street to Regal on 7th Ave.--who does a fine job in half the pickup time--for the \"advertised\" fake price here. Trying to make the best of it, I told the lady at least I'd learned they had an onsite alteration service, and maybe that was worth a buck. UH OH. Picked up my skirt a few weeks later with some Jersey Shore-type chick at the counter, and was told I owed another $3.79. I flat-out refused to pay twice. She screamed at me, chased me to my car, wrote down my license plate and said the police would be visiting. Ni-i-i-ice.", "type": "review", "business_id": "COc06ScpJTN15NXMf4gkqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kWIyajQP2mEv93yj34oemg", "review_id": "xbXkOaXLbwFsCMgsH6T9Tg", "stars": 5, "date": "2011-06-20", "text": "After driving down a teeny dimly lit road and coming across what looked like a medical office building in the 60's, my husband and I found the amazing Fuego Bistro. We had a perfect meal there. Amazing ambiance, twinkly lights in the courtyard, live musician. Great wine. Food was so unique and delicious- I'd describe it as Southern-Spanish fusion. This meal was the highlight of our trip to Phoenix. \n\nIf you live in Phoenix, you have no excuse to not come here. I live in Chicago and I'm sure I'll be back.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P_LzcrlVXFdgBq_24UnlUw", "review_id": "LbSa1y7dGRZc4z6TXFG4AQ", "stars": 3, "date": "2011-03-16", "text": "As Target's go this one is standard fare. That consistency is part of their brand recognition. However, as a part of the Up-Scale Desert Ridge Shopping Center, I'd expect a bit more than a Standard Target. Don't they have some sort of a Flagship Target?\n\nAlso traffic and parking can be atrocious at Desert Ridge. I drive to Target's and WalMart's much further from my house because the round trip time is less when I don't have to negotiate the teen packed Desert Ridge lot. Probably safer too.", "type": "review", "business_id": "AGar9KVq_W7YcF76avbDTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a_V8LRfMxGvpGtTwR2olrg", "review_id": "39gCBTrQVeM4GVOt_wEoLg", "stars": 5, "date": "2012-12-16", "text": "It's just like pizza bianco without the wait. This pizza is a 9.9999 and bianco is a 10. This place has a much larger menu and their deserts are to die for. \n\nIf bianco has more then a 30 min wait just drive and or walk here.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "15YFoHK5HPQpg1u_vwbqmA", "stars": 4, "date": "2010-07-22", "text": "Sacks is a different kind of sandwich shop. They have some crazy ingredients like varied sauces and mayos, fresh spinach, grilled peppers, and all sorts of other things you don't see at a typical deli. Then they serve it up on a baguette, wrap, or wheat bread for about $6. The specials are particularly diverse and change daily. On the other side of the coin, their website is horrible and occasionally we find some things missing or not quite right, but we chalk that up to charm and whimsy. (We get a weekly Sacks delivery.)\n\nIf you want a basic ham and cheese sandwich, you can get that here. If you want a sandwich like their Blue Bayou, which is spicy marinated chicken served with bacon, bleu cheese crumbles, cheddar jack, mushrooms, spinach, and chipotle mayo, all melted down, well, you can get that here too, but only on the days when it's a special. \n\nFrom their regular, artist-inspired menu, their Dali is an instant classic take on the egg salad: This one comes with lettuce, bacon, cream cheese, mayo, and tomato, on 12-grain bread. The Encore has prime steak, melted provolone, hot/mild/or mixed peppers, feta yogurt or marinara sauce, lettuce, tomato, and parmesan for $6.30. Seriously, give this place a shot and you won't be disappointed. \n\nOh, and every sandwich comes with a lovely cookie. Brilliant.", "type": "review", "business_id": "Y-NqaDy_1bb-Y5dQ33x-Pw"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "uQYOGKahTkpR9wEVjaAOCw", "review_id": "2dEtB3h8yZEONOmUJIUPZQ", "stars": 2, "date": "2012-03-03", "text": "This is my first time back in years. It will be my last. I was in the bar area for lunch it was almost 1hour 25 min before I could get out. Ten min before my drink order and almost as long before food order. A secound drink forget it. Guy next to me walked out.", "type": "review", "business_id": "0RqNRc6RiILzZxK9J8Kqug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "jdoGEEy5s-5L1O_lNzEi2g", "review_id": "L1SNUf6VQgG2rolLLvVgxw", "stars": 5, "date": "2008-06-20", "text": "As mentioned earlier, the best thing about this place is the super cheap, but super delicious lunch bentos. You get a main dish, rice, salad, and an orange for under $4. If that's not enough, you can get double meat for a buck or two more. I highly recommend the ginger pork or the katsu. My friend I normally go with is a big fan of the white fish (fried or grilled). The sushi here isn't bad. It's nothing super special, but I don't come here for the sushi so it's not a big knock against the place.\n\nAs they would say on ebay: A+++ Great Seller! Would eat here again!!!", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 6, "useful": 6, "cool": 6}, "user_id": "QKW7sYPWPSsIcWqSiDzChQ", "review_id": "i2WTOTbT1lqu0byxcnY-GA", "stars": 5, "date": "2009-11-06", "text": "'twas the night before booyah\nand all the through the city\npeople were piecing \nsome pretty shitty\ncostumes together\nat savers, good will\ngeorge w bush\nclintons, bill and hill\njay-z & beyonce\nbiden and obama\neven saw kanye\noprah, super mamma\nyep, octomom\nbrad pitt & jolie\nand men as madonna\nand lynn sue cooney \ni went to Easley's\nto see what they had\nof course, it was madness\nevery kid, mom and dad\ncrammed into the isles\npulling on wigs\nvampire masks\nand noises of pigs\nall being assisted \nby the yellow tee'd staff\nso very helpful\nno panic, just laughs\n\"yes we have liberace\nin fact, we have two\ntry both of them on\ni'll grab 'em for you\"\nthey found me a boa\na wig and make up\ntook just fifteen minutes\ncase opened and shut\nand all around me\nthis repeated itself\nthe people rolled in\npleased people rolled out\ninto the darkness\nparties around town\nwonder how many\nwere out gettin' down\nin get ups from Easley's\ni'm guessing a ton\nso check out Bert Easley's\nmake up, magic, fun\nbright yellow building\nsouth side of mcdowell\nsince nineteen sixty four\nmakin' halloween, howl", "type": "review", "business_id": "StiQ_lcCY8sX4JI-J6Mufg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JnRT9i2d71pY8D8ngzCz9Q", "review_id": "_o_WRkKLk7NJeOO6NsOmMA", "stars": 1, "date": "2009-02-19", "text": "Unless you are a regular or look like your wallet is fat don't expect the best service. Entrees cost about 20-38 bucks and Anti pasta runs between 5-20 desserts are all 8 bucks unless you get aged balsamic vinegar. They also have a big cheese selection. \n\nI made reservations for this restaurant and they sat us by the back door. The waiter never once explained anything on the menu or suggested a wine to go with our meal. He didn't even tell us about the cheese menu except to check on the one we wanted. The other waiter for a table near ours went out of his way to explain the menu and go as far as to tell his tables how to eat the cheese ( it comes with jelly's and such) . \n\nMy meal was good I had the duck. She had the salmon which tasted very fishy. Not fresh at all. The wine was 40 bucks for a carafe ( maybe if we would have got a 100 dollar bottle we would have gotten better service) The Dessert was good it was a rich chocolate cake with nuts and chocolate sauce. Nothing too special. \n\nOverall the experience made the meal not worth the 115 bucks in these times not to mention they overcharged my girls card for the drinks at the bar. If we dont want to give 25% don't charge it plain and simple. \n\nJust a warning reservations and customer service mean nothing. We mentioned our complaints to the waiter and manager. We received an apology but how bout comp our dessert or something. Hyatt Gainey staff is also rude for the most part. \n\nTwo thumbs way down.", "type": "review", "business_id": "1Q_H3BLhKBymF6Se8FfZNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xOLR24JjRq3nE6lW-869Ug", "review_id": "NqIsMdYelNlkeK32kJPsCQ", "stars": 3, "date": "2011-07-24", "text": "Returned Sunday afternoon and was pleasantly suprised. Happy Hour is 7 days a week 3-7 pm ; ) I recieved great service at the bar which was friendly fast and efficient(Janessa) .I ordered couple of drafts and wings with good happy hour pricing! I will be back!", "type": "review", "business_id": "qRBeZAFiId0ainBtpFSGuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PFaAf7rqKfWXIPiG1qxCiw", "review_id": "tiSpPFzMEWbEZf7mXJ-O6w", "stars": 4, "date": "2010-08-24", "text": "LOVE THIS PLACE!!! The food was amazing,who cares if it's chain restaurant.\n We had tried to go the night before but they were packd so we made a reservation for the next night.It was really busy when we go there but we were seated immediately.Our server was really nice and very helpful when we told him we had never been there before.\n We ordered the fried alligator app,and loved every bite of it.I had the filet mignon and rock lobster tail.The steak was cooked perfectly and was a good size for the price.I'm not usually a huge fan of lobster but wanted to give it a try,Pappadeux has changed my opinion about lobster,the meat came right out of the tail.It was buttery andjust plain yummy! It was the first chance hubby and I really had a chance to go out to eat without the kids,so we really wanted to make the most of our time.And we wre definetly able to do that here.Refills kept coming even after we had paid the bill.I also loved the live music from the jazz quartet making its way around the room.The only thing thats keeping me from giving it 5 stars is that the tables were too close to each other,and it was so loud I could hear the discussion at the table next to me but I had a hard time hearing my huband across the table.I will definetly be going back to Pappadeux over and over again.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DowPyTFtqen32BuOmzuBXg", "review_id": "ty51pvsTv3KxBaeHFWFZrw", "stars": 3, "date": "2012-03-14", "text": "Hit or miss food. I ordered the meat plate with corned beef, zuch and asparagus for the sides. Corned beef was WAY too salty, and same thin style you get on a sandwich. I sent it back for a chicken breast bone in, which was the driest chicken I have ever had. The side veggies were good (perfectly grilled no butter), and accompanied by garlic bread. I think this place has potential but I ordered wrong. I sat at the bar and service was mediocre. Price was pretty low though. Good place to watch the game.", "type": "review", "business_id": "F-ykHfGY9lWr12OJ_Ofy7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rz5kClFIidz_-sfJm4V7MA", "review_id": "Fzn7pH4L44WChbaMYaZmxQ", "stars": 3, "date": "2011-04-05", "text": "Absolutely the best sushi in the valley, hands down. The fish is fresh and their spicy tuna is like no other. However, the service is extremely slow. We once waited 75 minutes to get our lunch and the restaurant wasn't even full. Can't say much about the cooked food though, but the sushi is amazing.", "type": "review", "business_id": "0BpMvu5B9fY-KEbOuxLtFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P4XRTKPDREmWvPIg81CzUQ", "review_id": "LfMuF4r-UJFf-ji1pAVlBA", "stars": 4, "date": "2011-03-04", "text": "It was as good as everyone says! And sooo inexpensive...appetizers, entrees, and drinks for 3 people...about 30 bones. Not to mention the mountain of leftovers we brought home.", "type": "review", "business_id": "XMRj865sZBPWCI7tx0uBWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "xCEvHEszA3-CmFqtHacVQg", "stars": 1, "date": "2008-02-27", "text": "Take your money elsewhere, unless you've got kids. I really try to like this place. A family member signed me up for the discount card, so I've been going more often, but I just don't love it. It's simply ok, but the prices are outrageous. And the sounds and animatronics are a huge distraction from the so-so food. The cocktails are alright, but, again, the price is not right. The ony thing fun about the place for an adult is the gift shop and the light-up cocktail glasses (which cost extra.) I've seen a lot of happy families in here though, so I bet it's better if you have little ones to bring along.", "type": "review", "business_id": "CvRGjwCsrQs1DYYL3z8R7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w70p852jPyabsc2JEIis4w", "review_id": "_gh5ddLVeF7xEQVUKJLiVg", "stars": 4, "date": "2010-07-21", "text": "Friend and I were planning on going to Postino's next door but it was already packed at 5:30 on a Thu... Anyway we tried out Aiello's and were happily surprised. I had the Scallops Venezia and my friend had the veal. Both were very well done and the bread was delicious.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "cCwj4RJSKU4-o9ZZ1VTtmA", "review_id": "_Ctic3_Iuw0ECtqH2Yw5yQ", "stars": 5, "date": "2012-02-16", "text": "Took my fiance' there for Valentine's day/ Birthday. I did a lot of research of romantic places around the Valley, and this one really caught my eye. Immediately after walking through the door, you'll notice a dark and romantic ambiance with a lot of candle light. Seating is a bit tight, but it wasn't bad enough for me to give it a lower review. We began with an appetizer called \"Table side guacamole\" which was incredible to say the least. It literally is made in front of your table. Then it was onto the main dish... Build-your-own Pork tacos. Talk about tender meat!! The shoulder of pork literally fell right off onto the fork. The tortillas were exceptional, and so was the tasty sauce which included pineapple glaze. So, the food was absolutely delicious...but the service was equally impressive. My water level never reached the bottom of the glass the entire night, and I drink plenty! Everyone was incredibly nice and cheerfully said \"Happy Valentine's Day!\" and \"Happy Birthday!\" to my fiance', which made the experience even better. A fantastic place that I'll have no problem recommending to others to visit!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ENJpS6i-s9hWiQg9ZGwevQ", "review_id": "mmAi-uXUcfWLnH8qK2gfug", "stars": 5, "date": "2012-06-08", "text": "I have had a great experience every time I have been there. The food is hard to beat and the service was pleasant. \n\nPortions are reasonable, not huge (I'm a big feller), and I was satified every time I ate there. \n\nVery pleasant environment, clean, spacious and calm.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4B6aJJTELjivUXrL_LTlqQ", "review_id": "28guWjT8KRZKvMZkltdzew", "stars": 4, "date": "2010-08-15", "text": "My husband and I went here on a Saturday night for dinner because we had a restaurant.com gift certificate. Yes, it's in the Sheraton, and yes it's near the airport with not much else around, but I have to say- we were both impressed. \n\nWe started with the Gambas al Fuego, which were deliciously spicy (although I thought that $10 for four shrimp was a bit excessive, no matter how tasty they were). We both had house salads with blue cheese dressing- I think you can tell a lot about the quality of a place by their salads. They used fresh field greens, the tomatoes were perfect and sweet, and even the thinly sliced onions were sweet and delicious. The blue cheese dressing was fantastic, and had actual chunks of blue cheese. I was impressed, for a hotel restaurant. For our entrees, I had the hickory smoked baby back ribs (good, but not phenomenal) and husband ordered the chorizo chicken- I am so glad he shared a bite with me, because it was awesome. I was really wishing I'd gotten that instead of the ribs. Oh, and I especially wanted to mention the asparagus that came with my ribs- tender, cooked just right, and flavorful. This place uses quality ingredients.\n\nIf it wasn't so out of the way, we would definitely come by regularly. My husband was especially enticed by the prime rib melt sandwich, so I think we'll be back during lunch in the near future. \n\nThe only reason I'm not giving 5 stars was that the atmosphere was pretty dead. Which I suppose is understandable, given that it's inside the Sheraton. The decor was nice though. They should have a free standing restaurant in an area with more traffic- this place would be a hit.", "type": "review", "business_id": "1DjRf3AdYpdlC1Df9KD6rA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "E8Gh1Mv8Jtb6eJQjNmIPXg", "review_id": "L1ur4N-XFG_kviP0M2_SCA", "stars": 5, "date": "2012-03-30", "text": "I love this restaurant!! I have been a fan of the Newport Beach location for years. Scottsdale definitely did not disappoint! The staff is friendly and knowledgeable. The drinks are fresh (worth the extra wait for the tasty Cucumber Jalape\u00f1o marg). And the food? Goes without saying, it's CRAVE worthy. This is a new location, so I expected the usual growing pains. But overall, a great dining experience. Welcome to the neighborhood, SOL Cocina!", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 6, "useful": 9, "cool": 8}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "hh1L68RTi1FCHNfXGHkc7A", "stars": 5, "date": "2010-07-13", "text": "That darn Smokehouse burger is awesome. 5 stars. \n\nThe smoked corn was a little Meh... it was oily like not butter oily... not a huge fan of the texture either. I like corn crunchy and it was not. \n\nService was great. \n\nI did see an unmentionable bug running around near the back entrance towards the chicken rotisserie thing, but bugs have to eat too right? (still 5 stars lol)", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QSYnt4piL87oEWJHJ8_pGA", "review_id": "L8C_ZWqXelQDG_SzAp3TkA", "stars": 1, "date": "2007-08-22", "text": "My friend kept telling me how good their lunches are... I tried it, but it didn't do anything for me. The sandwich tasted like something you can get at Safeway, but twice the price. For being called a Purveyor of Fine Foods, I expected the food to taste like not just any ordinary sandwich. \n\nWhat I had:\nHam, cheese with portobello mushrooms on a panini with 2 sides of pasta, one was parmesan and the other was macaroni. Maybe it was the panini bread. I think the parmesan pasta was made there, but I know for sure the macaroni was not made there, it tasted like something I had at a picnic which was in a carton. It wasn't anything to brag home about. \n\nI found out the head chef made my sandwich... keep him in the kitchen and away from the customers, no personality whatsoever. I asked for his suggestion, and his reaction was \"anythings good.\" \n\nNormally, when I go to AJ's, I go for their desserts. Their desserts are fabulous and you can get individual servings at a reasonable price. I can take an assortment home and have them for later. \n\nOur company does use them for their catering and I've had many compliments on their dishes, but pass on the lunches.", "type": "review", "business_id": "CgHcO651uEE3aalrkm4boQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "Oz9HXBHI8cqTeFgEusyUrw", "stars": 5, "date": "2010-12-07", "text": "Very friendly and knowledgeable guys.", "type": "review", "business_id": "huxYC5ZvUwJdJE3tfhnpIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Wa5j14Rhps3DC2SMaaatQ", "review_id": "1-9CLP4RWHJbNThB7r1ErQ", "stars": 3, "date": "2011-12-10", "text": "The florist manager is great, but i have not had a great experience with the night manager. He seemed upset that i was stopping him from tidying the shelves to ask about putting an order in for flowers. \n\nHe said he had no clue how to order flowers and could not help me. I would need to come in and speak to the Florist Manager in the morning..... Well I work and i wanted to order flowers as a surprise thats why i was there in the evening. \n\nthought it was odd.", "type": "review", "business_id": "hLRoMJv9KSoBLJILh2TwOg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "rVlgz-MGYRPa8UzTYO0RGQ", "review_id": "7Xmf43U-uyrL6FFtq6OSBA", "stars": 2, "date": "2008-04-23", "text": "I feel the Days Inn Tempe is best described as \"a place where you can purchase the right to sleep for awhile.\" \n\nI booked my 10-night stay on Travelocity for a non-smoking room, yet when I entered the room I almost choked. It was disgusting. I've never had a smoking hotel room before and I will make sure I don't again. They said they couldn't move us to a different room.\n\nMy local lady friend brought over a bottle of wine but forgot a corkscrew. No big deal, I thought to myself, as the front desk of a hotel will surely have a corkscrew. Nope. Coors Light it is.\n\nThe towels felt like they were made of cow tongue, and they missed our wakeup call one morning making me late for a training class that had cost me about $500.\n\nI'm awarding one star in addition to the minimum one-star rating because I got to drink cheap beer by the pool in 90 degree weather for 10 days, and there are a few good places to eat and two dollar stores very nearby. The dollar store had a corkscrew.", "type": "review", "business_id": "c0iszTWZwYtO3TgBx0Z0fQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4xaC4c660LOb2qdVeSZfqg", "review_id": "4h1s3CFZX8QjIRmPX1URUw", "stars": 3, "date": "2010-09-15", "text": "Came for a friend's birthday and really was not that impressed. First of all, it took us a while to find parking as this place only has street parking and a few spots in back. On Saturday if you are there before 7pm, all alcohol was 1/2 off and some appetizers were on special. We ate dinner there and the menu was very limited. The food was okay, but our burgers were over cooked. The service was slow and it took us a while to get our check. I'd go to hang out again and have a few drinks, but I wouldn't suggest making this your regular hang out.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1wMGLaMIH7CcmJ2htS1rmw", "review_id": "LAXS5fIoyHBmRe-gJxUcQA", "stars": 3, "date": "2012-08-13", "text": "Too bad about Mandalay Noodle World. Maybe if they had stressed better service and played up the Burmese aspect they would have had better luck. Who knows?\n\nBetito's moved in, and they're okay. The wife and I stopped in yesterday. I had a carne asada torta and a taco and both were about average. Their hot salsa took it up a notch though. My wife had something with diablo in the name (sorry, I'll have to look at the menu when I get home) and loved it. They do the usual menudo on weekends and the whole place is more or less along the lines of a Filiberto's--not that there's anything wrong with that. The whole bill was less that $20, so prices are good. \n\nClean enough place, cheap, food is okay, and service is adequate. I would not go out of my way to get there, but if it is in your neighborhood it is worth a try. I'll probably stop here from time to time.", "type": "review", "business_id": "aBjgE5pLhtz4RGGR-IWpGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dCrd49_lbC3YAgTOZZwYmg", "review_id": "skfhecYPk8vURCcrfTWtUg", "stars": 4, "date": "2012-03-07", "text": "Excellent service and food.\n\nVery clean.\n\nFriendly folks.\n\nBeautiful patio", "type": "review", "business_id": "08Z_Zzp8PyEmWWpYurIO-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "H8Uhlrj1bEaAgK5J9SomPw", "stars": 4, "date": "2010-09-19", "text": "This is my 2nd time to this AMC. I like it! It is huge and clean. The wait for tickets were quick and they have it set up that it is a hotel check in. Not behind a bullet proof pawn shop set up. LOL! The concession area was huge with mutliple lines open. Not much of a wait either. \n\nWalked into theater #10, not too shabby. Pretty big screen and clean seats. The speakers sounded great. I had a great time.", "type": "review", "business_id": "K13dEvg4uimGQ1OcE5vGZA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "psBJOZfXxUPHmF8mi8G0pw", "review_id": "QESrotRf2_9329fpBgKvsw", "stars": 5, "date": "2012-03-10", "text": "I have been here several times now and have never had a bad experience yet. Good food, good service; no complaints. Still have never made it here for happy hour, but their specials during that time seem like quite a deal. The staff are always friendly and seem to remember us from one visit to another. I've only ever eaten sushi here, but they have a lot of other menu items that I would like to try at some point, but I always turn to the sushi as it has always been good and fresh. I would recommend trying this restaurant.", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_tBu-2i9uT6LFxh-TyEOHA", "review_id": "ygVApLq3sbc_U-Y9zFWRdQ", "stars": 3, "date": "2012-09-19", "text": "Affordable and good. Clean restaurant. Will return.", "type": "review", "business_id": "odhXwWaYZvD_icIN6f_DbA"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "VKiWDL608wBRQtk05ts59g", "review_id": "OUhKpg-1LG7bpyxHLtbJDQ", "stars": 1, "date": "2008-12-20", "text": "Absolutely horrendous. This post office will lose your mail (repeatedly), laugh about it to your face, lie about it, blow it off, make it seem like it's your fault and make you wish you had sent it UPS.", "type": "review", "business_id": "uxoibUaXA-lRXM37ZV8Bsg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XYVfcuxJ4x805zIWvJ17MA", "review_id": "XGZzqC_pPOwqO5QZhHdBNw", "stars": 2, "date": "2011-06-19", "text": "I'd love to give these guys a better review, because they were very friendly and professional. However, I was very dissapointed with the service I received. I'll type the one sarcastic comment that I can't get out of my head and then I'll get to the more substantial feedback. I thought a detail was supposed to be a little more DETAILED.\n\nHere are the positives, because I want to give credit where credit is due. The guys come to you and are very polite. They were a little delayed, but called to let me know which I appreciated. Also, they do a great job at steam cleaning the carpets and the exterior wax job was awesome.\n\nOn to the negatives. When I came out to see the work they did, I immediately noticed several smudges in the interior which they cleaned after I pointed them out. Also, I noticed a scratch on the passenger side leather seat and a hole punched in the carpet near the pedals. Anyone who knows me knows that I am a DETAIL oriented person. Those defects were not present in my car prior to this job. To add to this bit of a let-down, a day later my boyfriend and I noticed that they didn't even touch my trunk! They didn't even bother to vacuum it out!\n\nWhen you advertise on your website \"showroom quality,\" I expect showroom quality. Overall review: good job on the exterior, attention to detail in the interior was very poor. I am really dissapointed that the attention to detail just wasn't there. I was expecting so much more from a detail job.", "type": "review", "business_id": "87EXGxQk0nrM41NCfB1HTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LZxnr-c-VsG0N4Ef-9iAyg", "review_id": "ExhhNpUulh2Yjog-nb6O7A", "stars": 5, "date": "2012-10-23", "text": "I'm from Chicago so I'm picky with my pizza--this place does it right (NY style)! I love the \"hole in the wall\" feel. Every customer that walked in was a regular which was a good sign. I ordered the Mozzarella sticks and a large Monster Pie (Sausage, pepperoni, bell peppers, onion and cheese). The mozzarella sticks took a little while to come out but they were cooked to perfection. They also threw in a few garlic knots which was awesome. The pizza was unbelievable--I think the crumbled sausage really did it! They have great deals like large pie & 20 wings for $20 which I definitely will be taking advantage of during football games on Sunday. Glad to have found a new place where I can also be a regular!", "type": "review", "business_id": "V3lQtk1LgwAEcF9j-BzchA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "efZh8TKpCz5AJTcuAnBxRA", "review_id": "BswsfdATKn9m2EiT-2_MZg", "stars": 4, "date": "2012-12-10", "text": "Very polite staff. Did not wait very long to be seen.", "type": "review", "business_id": "F1I_TEBT4Wpj0eDsoXKk3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WgdgOlb-OIwKxb1p4xWwRA", "review_id": "tCps1BXBR4ZUOF-uTxUBMw", "stars": 1, "date": "2010-10-30", "text": "Other than the really great happy hour prices, its hit or miss with this place. More often a miss. :(\n\nThe food is less than average, the drinks NOT strong ( at least they are inexpensive) , but the service is truly hit or miss.\n\nI'll pass.", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mlBC3pN9GXlUUfQi1qBBZA", "review_id": "Qp7lu-oy_cLz71bjLgpNjA", "stars": 4, "date": "2011-09-17", "text": "Yes this is a chain but after traveling in Maui for a week and then coming back home to Kahlua Pork from Rumbi, I can honestly say that the Kahlua pork here is better than any of the places I ate it at in Hawaii. Crazy huh? The Kahlua pork at Rumbi is so moist and tender and when its paired with some of their magnificent teriyaki sauce and Rumbi rice (rice cooked with coconut milk and beans), it is out of this world. The Kahlua pork plate at Rumbi has lately been the first meal that comes to mind when I want comfort food. This is a bit of a problem cause that is normally on a work day during lunch and after eating a meal of pork, rice, mac salad, and coleslaw, I am just down right exhausted and in dire need of a nap. \nI used to come here quite frequently but forgot about this place and I am not sure why. Besides the Kahlua pork and Rumbi rice, I can say that their mac salad, sweet potato fries, and their beach burger are really good as well. If you are looking for something different, yet tasty and satisfying, try Rumbi. I think you will enjoy it.", "type": "review", "business_id": "R3UFldNkrGqOsDgD_cw6bA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "b60JsTGYbVqUGYbI81aOsw", "review_id": "jUlDw4GmEsdv8mHqJ3wFfQ", "stars": 4, "date": "2007-10-14", "text": "I like coming here when I want to pretend to read and then do some grocery shopping. I say pretend to read becase, invariably, I start eaves dropping on people seated near me. Usually these people are either a) real estate professionals on a lunch meeting or b) families with small children who are saying ridiculous things. I've also run in to a guy my friend used to date while he is on a date... that was pretty strange. I like their salads, the breakfast sandwhich with feta, and the portobello sanwhich (on ciabatta, not the recommended bread). I am in love with the sweet potato sandwhich, but it is huge. I recommend ordering a half or sharing it... even then it is a lot of sandwhich. A scone will fill you up for the entire morning and afternoon. \n\nMy mom requests a trip to \"the place next to the cool bookstore\" whenever she comes to town. (p.s. the cool bookstore is Changing Hands... and I agree with my mom -- it is very cool.)", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YPk47NcyWSkk-541OxyzMQ", "review_id": "b6hHEpYexHQ6LNhDLJ8Efw", "stars": 3, "date": "2010-05-26", "text": "Service was faster than some of the other (but better) Indian restaurants I have been to in the area. The food was so-so. Nothing special. I enjoy spicy Indian food, but the \"hot\" was not. The only reason we ate there was the buy one get one free in the Phoenix area coupon book... no that, was a good value.", "type": "review", "business_id": "NKSA0em3dHSGTyo6Eu-Waw"} +{"votes": {"funny": 9, "useful": 17, "cool": 16}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "qyzPbUwY_QgqdEputNWk6g", "stars": 5, "date": "2010-02-02", "text": "Perhaps it was foolish for me to give La Condesa only four stars at first, given the fact that I really liked it. What can I say? I'm critical by nature. I knew I was going back soon, so I felt like I had to save the last for a return visit. Well, it just got it.\n\nThis place is fantastic. In fact, if CenPho lets this one go under, I will personally hold all of you responsible; watch out for a citizen's arrest if I ever see you. However, that is unlikely to happen, because the food is damn tasty. \n\nToday, the Oaxaca black mole chicken taco had me swooning, topped with pickled onions; the chicken is tender and simmered in the lovely sauce. The Soronan carne asada taco, char-grilled over mesquite charcoal is no slouch either; I'd rate it right up there with some of my favorites in town. \n\nGo to this place; I have a feeling I'll be here at least weekly. When and if they ever get a beer/liquor license...probably more.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UHxBIipD-7xb60CGB8rOuQ", "review_id": "VyAIpPxEpMO581PoRB5G6A", "stars": 5, "date": "2010-12-28", "text": "Great place for brunch or to relax with a coffee. Their hot chocolate is amazing.", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "gYIHSsoa260H544x9guLOg", "review_id": "t5Hxl0agkS7p3vDnbl3Yyg", "stars": 3, "date": "2010-09-09", "text": "I have been through plenty of airports around the world and I have to say that this one is on the better end. It is easy to navigate, clean (from what I have experienced), and makes getting to and returning rental cars a breeze. \n\nAs in most airports, those who are not used to recent travel REALLY hold up the security check line. I would think they would want to be prepared and get through that check as quickly as possible and I held my breath when one young lady came back out in search of a 1 quart zip lock bag, fearing that we would have to evacuate the terminal for her breech, but we were all able to make our flights. \n\nA word to pet lovers who insist on traveling with their four-legged friends: allergies and asthma plague a large number of people and difficulty breathing caused by YOUR pet presents an unexpected glitch in their travel day. \n\nPLEASE CONSIDER LEAVING YOUR PETS AT HOME. An unplanned trip to the ER as a result of YOUR inconsideration should be YOUR responsibility. What do you say about that, health care providers??? \n\nIn all my travels, this has been the only time I have been stuck behind the hairiest cat I have ever seen in my life because its owners had more baggage than humanly possible to manage. Clueless to others distress as the owners, their pet left wheezing, sneezing, itching, gasping travelers in its wake. Are you from Naperville?", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "nH0YyEYTE7RMeAbeERrSQA", "review_id": "hQUn4oL-6qnjma8indhLNw", "stars": 2, "date": "2011-03-24", "text": "Went here for the first time a few weeks ago. The owner was snoring when I walked in, so that was odd and kind of a turn off. Their regular manicures are cheap- $10, but the experience overall was so-so. It got busier as my manicure was going on, so it got a little better. Parking is pretty bad..they have approx. 3 spaces. Manicure was fine..have a range of OPI but all their polishes were jumbled together which I hate. Overall, for a few dollars more there are better places, even down the street.", "type": "review", "business_id": "MLPUSpkbWAvr9gJOELKqmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pRw80rCPUTcBo2Zv5De1yQ", "review_id": "1xrgXladKl8ukUsiyVU_kA", "stars": 1, "date": "2012-09-14", "text": "Been here for many years but have seen a recent decline in quality service. Felt scolded by the bartender today at lunch. Felt disrespected as a customer. Service sucks stay away. \"bad service = bad review\"", "type": "review", "business_id": "zDfaNgSYLn-TwquB5A6AaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aLTl_OkLo0BFRxdz1n6sYA", "review_id": "LFKXrB40LfFd16xtSuy7MA", "stars": 5, "date": "2012-06-14", "text": "Hands down the best breakfast I've ever had, anywhere. It definitely feels like home cooked breakfast. I've never been to this place on the weekend when it isn't packed out the door. I'm not the only person that loves this place!", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "WaXjxD6QcMBQQGOMnlGiYQ", "stars": 3, "date": "2011-06-27", "text": "This is simply a poor substitute for the Los Dos Molinos in South Phoenix. It is a pale shade of itself. The salsa is spicy, but it doesn't have any of the same excitement. I think its partly the downtown location in a strip mall, (not that 98% of restaurants in Phoenix aren't in strip malls). But the Mexcian Pizza and Chicken enchiladas just didn't have the same loving kick and spice. When you are craving Mexican downtown, this'll do in a pinch. But make room and time to head out to the original deal, the one with 5 alarm salsa and huge patios. Margaritas the size of one's head and bring a group of friends to indulge!", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "-qSWOLcNWhl0aLy-nadlKg", "stars": 4, "date": "2011-03-28", "text": "Went there for a second time on Sunday. The first time I came, I was underwhelmed. I think the problem was that I went with only one other and this time I came with 5 others. It was a beautiful Sunday afternoon and over pitchers of Sangria ($20.00 specials on Sunday) and copious amounts of food I rediscovered the restorative quality of good food and great friends. Had serrano ham and manchego with quince paste, pollo colonial (my favorite), lamb with mustard and mint, pan con tomate, quail with lentils and chicken drumettes. With the exception of the drumettes (which tasted like overly fancy buffalo wings), the rest of the food was exceptional. Small portions, yes. A smidge pricey yet, but the communal feeling of being with your good friends in the open air sharing vino and small plates is priceless.", "type": "review", "business_id": "sjCRI-lCh4KLO_RYQdlEeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "W7zmm1uzlyUkEqpSG7PlBw", "review_id": "CVFQy_w2RKrMA7TtPM0EQA", "stars": 5, "date": "2012-07-30", "text": "This place is fantastic!\n\nWe went in on Sunday the 29th of July around 5:00pm. The guy behind the counter told us to enjoy ourselves, take our time, ask if we had any questions. We wandered around for a bit, I found a bottle of Argyle bubbly that I wanted, and then began to stare with lust in my eyes at the selection of Absinthe. \n\nGirlfriend wandered over to ask the guy to recommend a white that wasn't a Chard as we both really don't like buttery oak anything. He took a few cues from her, and found a great bottle of white which we drank with great glee last night. \n\nThis was a test for the guy behind the counter. She didn't set a price limit, just said \"show me your favorite.\" He could have done what many others have in the past and shown us a $50 bottle, but instead he showed us a kick ass bottle at the $14 price point. This is the mark of a good wine seller. Find you what you want without bending you over on the price. Yes, sometimes I want to spend $400 a bottle, but not all that often. I'd rather get my drink on at the price he found, and he turned us onto a white we both REALLY liked, which is super rare as we have very different tastes.\n\nWe'll absolutely be going back to buy more fermented grape from this place!\n\nPrices are on par with Total Wine, but what you're really paying for is the help of someone who knows what they sell and likes their job. Great job Sportsman's, see you next Sunday for afternoon drinking!", "type": "review", "business_id": "uL_kqSm8ZqJ_3U88uwA8tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bkRfY8jHdFxf7k8vLX4buA", "review_id": "OQjK5jYwSzoyUvOt1kEyPw", "stars": 3, "date": "2011-01-15", "text": "I'm torn.\n\n\nI LOVED my $20 facial. I'll probably go back for more once Groupon and the like run out of deals.\n\nHowever, I also got a brow and eyelas tinting. I wouldn't recommend that service from here. My brows were uneven, and my lashes faded out quicker than normal.", "type": "review", "business_id": "uzETXY35sIROqx6nnGuq-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kxfUWPT6PuwieZHonfXtLw", "review_id": "g0PIxO362sPzzvoYXNU4KQ", "stars": 5, "date": "2010-07-03", "text": "Recently moved back to Mesa, I have been on the hunt for a place to get a good sandwich and fresh bread. This place now tops my list of places in the East Valley to get a good sandwich. My first sandwich was the Atlantic Haddock Provencal. A sandwich made with seared, lightly breaded haddock, sliced hard-boiled egg, fresh basil, romaine lettuce, tomato, Provencal tartar sauce on a grilled Brioche roll. The brioche was amazing. It was light and fluffy. The haddock was perfectly cooked with just the right amount of breading, and the vegetables were fresh and in perfect proportions as to not overpower the bread and haddock. Sometimes when you go to a sandwich shop they overload it with everything else that the meat and bread are just there to accessorize the vegetables and sauce. This was perfectly done. The atmosphere is pleasant and open with nice music as the light smell of fresh bread in the background salivates me. This is a must-visit lunch time destination. Dinner review shortly.", "type": "review", "business_id": "06kfoeRs9Acj82Yl3i9p_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "7a_7iT6nDMQc76bz3-TQwg", "review_id": "2bPgTaY62Jc_FoTtXz35lg", "stars": 5, "date": "2009-04-05", "text": "What a wonderful night. It didn't start out that way. I found this restaurant on yelp, not realizing that it was sixteen miles from the hotel my wife and i were staying at. I heard the grief all the way there. \"Come on honey, it's an adventure!\". \n\nWe arrived, and were greeted warmly and shown right to our table. Zach, our waiter, was right there to offer us drinks and appetizers. We had the Summer Rolls and they were delicious! \n\nI explained to Zach that I was allergic to wheat and he brought us a special \"gluten free\" menu the owner had created for those of us who are allergic to wheat. Zach even brought us some special wheat-free dipping sauce for the Summer rolls. He showed great care, provided great customer service, and the sauce was delicious!\n\nThe portions were good sized and the presentation was beautiful. But the wonderful tastes and personal service made the night special. Oh, the bathrooms were clean too. Thanks Zach, and thanks Malee's. It was a great night my wife and I look forward to repeating. (Yes, she admitted after dinner that the drive was worth it.)", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6OWHDbEq23f24Vki_veHBA", "review_id": "E7R_HyDkf4r0zVEuWxQl7A", "stars": 3, "date": "2012-12-29", "text": "I met up with a few ladies here for drinks a few weeks back at the suggestion of someone else. We didn't end up playing pool, just enjoyed our drinks at the bar before moving over to a table. We were definitely over dressed and probably out of place, but it was a chill place to let loose. Drinks were okay, food was nothing outstanding, prices were to be expected.", "type": "review", "business_id": "ht17atGW3tP8dFeiJkXI_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mex8qXT7nR89uTKX_qtgSA", "review_id": "PE4ueS5NlXcBw4Ixb8G0hA", "stars": 5, "date": "2011-05-11", "text": "I am a way more frequent visitor of the bell rd location, but sometimes I have to travel downtown for work. When I do, I make my route pass by this place because I have to have dutch bros. The guys at the bell location are pretty familiar with me by now but these guys still treat you as if you are there best customer. And it's the best coffee I've ever had.", "type": "review", "business_id": "EXmWz2eaKTGNIf3FJUlVZA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0ouMuScWJ3GuNtWEmmsziw", "review_id": "fQwfcdBJb1tf7JRTRE5EDg", "stars": 5, "date": "2009-09-24", "text": "Even more great news....on Tuesdays there is a special of 35c per ounce. Not that I needed another incentive...but this is GREAT.", "type": "review", "business_id": "TdNIQQcfslKjkey4-yAlKg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ETIAM78kYT_xPM8b2iqi7g", "review_id": "a0YtahC0ZWer56OPruJA-A", "stars": 2, "date": "2009-06-10", "text": "Been there, done that. Fair sandwiches (better than Safeway, anyway). Only 2 stars since I didn't know about the free soft serve, so didn't get to try that.\n\nThere's gotta be a good New York-style deli west of the 17 and north of Thunderbird. Isn't there? Doesn't have to be great. Good would be wonderful.", "type": "review", "business_id": "NN9dbEZF_c4YNgfWWAEVig"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "SlCfUUr1Pa7CzzSxbMH1pw", "review_id": "3R_6Havc78W_IWkOhK1Liw", "stars": 5, "date": "2012-07-12", "text": "Where to begin?\n\nThis is my favorite Mexican food establishment ever. I've been frequenting Carolina's for years and never once have I been disappointed. Some might compare it to Filiberto's or any of those [insert surname here]berto's but this is on a whole different level.\n\nAtmosphere-wise it's one step above a sketchy hole-in-the-wall but the food makes up for everything the appearance of the place lacks. I don't know their secret but their beans, the tortillas, the salsa... it's all to die for. And IT'S. SO. CHEAP. Like, seriously, I'd dish out more money for this food but the fact that it really is that cheap is the icing on the cake. \n\nIt's almost always busy but it's always worth the wait. Always.\n\nIf you haven't gone... you're missing out.", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "dxPBchN0OnHTENctEUm7NQ", "review_id": "uCdLSQa-bH_aYM-5DNuQJQ", "stars": 5, "date": "2007-03-12", "text": "I just got back from an Arizona spring training vacation, and one of the highlights was definitely the Desert Botanical Gardens. We came really close to skipping on a visit altogether because it was 5:00pm, but decided to give it a shot...it was worth it! I was a little disappointed that the Butterfly Pavillion had closed for the day at 5:00pm, and several walking areas were being used for weddings/receptions (who could blame these people??) but still got to see a lot of beautiful desert plants and wildlife. We managed to get in for free, not sure if it was because of the time of the day or all the people just walking in for the weddings though, which totally made the park that much more fun. I am not sure I would have gotten as much enjoyment out of it if I'd had to pay $5 to get in...\n\nThe little desert rat-sqirrels, and rabbits were totally fun to try to find hiding in the many different plants and burrows. I felt like a little kid ooh-ing and ah-ing at the different varieties of cacti and desert wildflowers, and have to give this place the ultimate rating . If you're ever in Arizona, please give this place a try, it's very well put together and a beautiful site to see.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OPStKHloEOVxcBtFgkzh2A", "review_id": "WB_tV05UYyBO_EC0oTIXCw", "stars": 2, "date": "2010-11-22", "text": "Meh....decent Filibertos knockoff but the place feels like a major health hazard considering how new it is.\n\nJust think Filibertos with less quality control and smaller portions.", "type": "review", "business_id": "V4wiGd78Si52Gys9gmoZCg"} +{"votes": {"funny": 8, "useful": 5, "cool": 4}, "user_id": "nZ9XFVETN4hxdK4qPb-T3Q", "review_id": "RSwZ_b5xV9ovGXTX3mux_w", "stars": 2, "date": "2009-06-14", "text": "eewh! yuck and wtf!?\n\nThis Barnes & Noble Book Store sucks for sitting back, relaxing and trying to read. I know it is not a library, and I don't expect it to be. But, come on - you can at least have some sense of trying to keep the noise level down and have some cozy seating. \n\nAnd... Yikes! The people here are gross. They had some couch-chairs to lounge in and they were - in all of their grossness. And they were reading magazines of all things. WTF buy it and go home and let your kids do kart wheels there. EEWH!\n\nThen, those of us who actually purchased books and were trying to peacefully read them were in the cafe' - sitting on their dirty wooden benches - where I guess the servers there think that part of theirs jobs in serving coffee is to do a drum solo every time they empty the used coffee grinds into the trash can - which was about every 5 minutes. Yeesh! Luckily, I had my iPod. It was blasting and I still could hear them banging away. It was not a very cleanly area either. \n\nI was going to ask if they had wifi but I just high-tailed it out of there instead. This place is small too and their book selection is limited.\n\nI have been looking for a place to go to read, work and drink some coffee in my area (Arrowhead) and this one is definitely crossed off of my list. \n\nCome here to try and find a book but don't come expecting to kick back and enjoy your novel or what have you. If you like people watching though, this may be your place. There are all kinds here.\n\nPS: and I left my fav coffee mug at this crappy place - like I will go back and get it. I think I would burn it first - bummer!", "type": "review", "business_id": "HGOsJ1-GXCk5_8RmwKxomA"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "3sJ62Mkavx69FBec71agYg", "review_id": "GXhCVzS14jGRpwusofxFIw", "stars": 5, "date": "2008-08-01", "text": "Being Indian, and having grown up in London, I have been pretty spoilt for Indian food. Imagine my dismay when I moved to Phoenix! I've tried many different places here in town desperately trying to recapture the memory of a good London curry house but each time I've left either disappointed or clutching my guts fearing what may come.\n\nCouple of friends introduced me to this place a few months ago and I'm stoked. It's not as good as the stuff back home. And I'm sure you can get better in San Francisco or New York. But if you are looking for something closer to home you can't go wrong.\n\nPlus its got the real live Indians eating in there too. Can't be bad!!", "type": "review", "business_id": "NCbHGtOP5yJBJsPPaE3X5g"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "VBEbhE0ISjg6xowGNiGmgQ", "review_id": "EuC1SHR55UGShkq3iovTEQ", "stars": 1, "date": "2007-07-28", "text": "This place is not there anymore.", "type": "review", "business_id": "MUsqPXthMdHoPEow9M3MfA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "33T-R7e8y7st0PA2HRyHnw", "review_id": "M0sPPYqC8ZDESo7HeJgC-g", "stars": 5, "date": "2012-03-16", "text": "Gaylee is great! She is super sweet and so professional! Her work is amazing. I found her through one of those online deals and now I am convinced that I will never go elsewhere. Keep up the great work!", "type": "review", "business_id": "7XulXhz9PN2ctxtv0B0b7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1uTS7hrpgphH7ZDK8EThzw", "review_id": "ZqzBvizyfGpzfiveEsgZ8A", "stars": 3, "date": "2007-04-06", "text": "No frills. Nothing fancy. Just some honest burritos and tacos. Voted \"best taco\" by New Times a few years back (in the 90's). Not sure I agree, but they consistently satisfy. They make a hearty breakfast burrito too. If you're looking for Sonoran or Tex-Mex or anything beyond what you might find at Filiberto's, try somewhere else. The red burro combo is my personal favorite. It's saucy (enchilada style) and just spicy enough. Bottled beer available.", "type": "review", "business_id": "cgNIBHS2mLdbTRiodAT6EQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QdypppSRw2H5UtMu1IebLw", "review_id": "ENbvrftx0kvaDfrR1mchSA", "stars": 4, "date": "2010-06-19", "text": "Went here this morning around 10 am. There was like a 20 minute wait, but no biggie. Service was fast, orders were fresh and correct, and place was clean. It is the Waffle House, not a fancy joint. So for what it is, it was good. Plus the staff are all very easy going and create a fun lively atmosphere. Good for a casual breakfast.", "type": "review", "business_id": "nY2QBNMEfT3j68j-DHOGyg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "px6RIT_CcE2Z1Jd52C8TQQ", "review_id": "iDujx3HhzFt3mv4KPay6eA", "stars": 4, "date": "2011-08-09", "text": "Where do I begin? I love Casey Moore's!\n\nWhat a great ambiance! The outside patio is where it's at, with tons of seating and misters. Lots of beautiful decorations to stare at while you're waiting for friends to arrive, and the staff as well as fellow patrons are always very friendly.\n\nWhen I feel like getting in touch with my hippie side I go to Casey Moores, because I can always expect to find someone outside painting a work of art, or photographing the wandering cats (yes, they have cats! they're well-fed and happy). \n\nIt gets pretty busy after 5pm, but the good news is that if you arrive before 5 you can bring your pets and stay all night. I bring my dog in all the time, and she is always met with animal lovers who didn't know they could bring their pets.. so now you know!\n\nThe oysters are good, but if you're eating them out on the patio the heat kind of kills that deal for you. I had never tried oysters before going to Casey's but they are surprisingly tasty and comparatively better than other oyster houses.\n\nIf you're feeling pretty ballsy, go pee on the Blarney Stone! Every time I go there I wish I was a man so I could do it.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QnMPMD8Nh3ErZGfMRGAeYg", "review_id": "Z67Znbe5riZE4YISO45XAA", "stars": 1, "date": "2010-03-19", "text": "Rarely do I give a 1 star rating but after four attempts in four months to get my fax line and internet rolling I can honestly say they have earned this. After finally showing up for a scheduled appointment the tech told us our internet was fine but we disagree because we are getting the same speed we had with Qwest in Cave Creek (SLOW) and they are charging us $64 a month for what they call the upgraded 20mbs. Furthermore, I tried to send out a couple faxes after he left and the line is not responding. Im going to drive down to the store tomorrow and demand that they remove the fees for service I have not received and just get efax. As I noted in the first review we were excited to upgrade to faster internet so that makes this experience even worse.", "type": "review", "business_id": "u3HMalNH-xBgZUXjnH3O6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8q2pilNlC3_mTfyDzp0TiA", "review_id": "kPS5PRqkwDpJx_bpDx9lCg", "stars": 3, "date": "2011-01-18", "text": "Service was good, however my fettucine alfredo with meatballs was just OK. I would pass on this menu item the next and try something different.", "type": "review", "business_id": "qecLHHzAwgkkeA1bG81vmw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zFfXgANzhIcD-JkdBygcZQ", "review_id": "DWq3femFL-muAUB6lMBQDA", "stars": 2, "date": "2010-07-21", "text": "So, I went because of all the hype. Immediately, realized how overrated it was. The ambiance is like a Chilis but trying to be mexican.", "type": "review", "business_id": "vA8T8QXh78iSXhxShLNgQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J3I2NClEbD1Xr8lOdjxlqQ", "review_id": "FSrIgThMfFIh__TubVQkxw", "stars": 3, "date": "2011-12-22", "text": "Ok, so I'm catching up on past-due reviews. For me, Chipotle is one of those places you go to when you want something to eat from critters that have been decently treated while giving their life for your enjoyment. And the food is ok too. The guacamole is always fresh, the burrito's are big and there are lot's of add-ins. Just don't expect any gustatory excitation, it's pretty basic, non-threatening, and I think I heard somebody refer to it as gabacho mexican food. I think that pretty well sums it up. However, a big plus is that the iced tea is always fresh and all-you-can-drink :-)", "type": "review", "business_id": "K2_Hmmo5crTYWiT_1sWnfQ"} +{"votes": {"funny": 5, "useful": 19, "cool": 16}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "roMeHsyf55-_O7rpudBbZA", "stars": 4, "date": "2009-08-18", "text": "Gils.. A relatively new business to the complex on 16th St and Bell Rd. \n\nGils is NOT your average Mexican Style food. It is New Mexican Style. They use whole beans, no lard and light on flavor. The rice is not orange but more of a yellow with hints of garlic infused. The burritos are covered in red or green sauce, which can be a hot or mild depending on the crop. \n\nI had the pork Carnita's burrito topped with green sauce. Beans and rice. I would have been disappointed it I expected smashed refried beans too. BUT I love the beans as they are. They are sort of like a ham hock style bean. The carnitas was wonderful and huge. filled with pork and not a spec of fat in it. Topped with cheese and Hatch Green Chilie sauce. Did I mention Huge? \n\nThe whole meal including water and chips and salsa set me back $10 bucks. I even have a small lunch for tomorrow. The chips are homemade and the thicker type. The red salsa was spicy but not hot and green was good. \n\nThe rest of the menu looked good, nothing stood out as a must have but I will be back. \n\nThe place was clean and they made a nice patio outside, complete with waterfall and everything.", "type": "review", "business_id": "NBwPgX7L2D-EZedgo3A-pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vpb5jICQEl6vT0NlHq1dug", "review_id": "31mOjx2g1F2xAVi20JQP1g", "stars": 4, "date": "2012-12-15", "text": "Good pizza. Nice and laid back. Good staff too.", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hLi9rdbx4cXBklc4osQEJA", "review_id": "a5WztkUFN4onrcG1NMoYuQ", "stars": 5, "date": "2012-11-05", "text": "The praise and worship with Pastor BJ just sets up a God Filled service with the charismatic and awesome Pastor Maiden ... Going the Past 18 months has made our Marriage Stronger and Faith Magical", "type": "review", "business_id": "HvfefhU4b38wcSulkBzA1A"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "IE_nJq65Qpso5fN4tG9zjQ", "review_id": "RxwjDwQsSRE7flP6N4L4tA", "stars": 5, "date": "2008-03-28", "text": "I come here probably at least once a week. The prices are right, there's a good variety of \"ethnic\" food, the cashiers are quick and friendly, and they're just helpful. I locked myself out of my car when having a space-cadet moment and they let me use their phone to call AAA to bail me out. \n\nFresh flowers + great selection of wine and cheese + all the essentials \n\nThey deal is that they cut out the middle man to get great prices for quality products and they don't have sales because they always sell their products at the best price possible. =) GO TJ'S!", "type": "review", "business_id": "4EeLblEpJc2VeBowa94YPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UhryFhGe1tqdbBzAhdooTQ", "review_id": "6wih8fh9hGHRCc4tk6U3ew", "stars": 5, "date": "2012-11-29", "text": "I have only gotten the cafe sua da (iced coffee) here but it's the best I have had yet. When you walk in there is always fresh coffee lined up in cups on the counter ready to be mixed with sweetened condensed milk. I don't get to Mesa often but when I do I go here for the wonderful, rich, dark and creamy coffee. This is strong stuff; that first sip is so good. The richness, full flavor, creamy caramel flavors are heavenly. And as the ice melts, it mellows out the flavor a little and it's still great. I can't say I have had all the cafe sua da in the valley, but what I have had; this is my favorite. \n\nNext time I come to Mesa for work I will need to come at lunch time so I can try the pho.", "type": "review", "business_id": "3H2ttTM2aSIaZ6FTjHwDQQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "bkPFUCENKOYFDit-eV2PSw", "review_id": "DDt-wItJxXlzsErG2XE2mQ", "stars": 3, "date": "2007-11-14", "text": "Only had a chance to experience the Oscuro (amber lager) and the pizza (the Arizona vs. Boston) so far but it's enough to make me want to come back and try more.\n\nLots of flat screens. Should be a great place to spend a Sunday afternoon watching footbal in the fall.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 39, "useful": 28, "cool": 28}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "RqwFPp_qPu-1h87pGBAM8w", "stars": 5, "date": "2008-05-27", "text": "Hippies scare me. So in my preparation to go to this place I ordered Xanax from an on-line Canadian pharmacy, which I have been taking for three days now. Bought a tazer from Spy Headquarters in case one of them tries to hold me down and pours patchouli oil on me. The fifth of gin that I slammed in the parking lot really helped with that last bit of extra courage that I needed to partake my journey into hippie-land.\n\nIt was all for nothing. No hippies around, just a teenager behind the counter. This place is tiny and the counters are about at mouth level. I don't know how anyone under 7'6\" could easily eat off of them. \n\nAnyways for $5 flat, you get a kick ass burger, a school lunch bag half full of well seasoned skin-on fries, and a can of soda. It's true that the fries could have been a bit more crispy but they tasted so good I got over it real quick.\n\nI'd be afraid to ask what the special ingredient is because they might say \"it's organic, don't panic\". \n\nJerry's dead, but this place lives on. Thanks hippies!", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "O7jDv3ntT_rsFrd7qPrC4Q", "stars": 3, "date": "2010-12-14", "text": "In addition to the nice atmosphere on the patio they serve a very nice brunch menu and the $2 bloody marys are a buy. Downside: parking validation is only a discount, not a freebie. Depending on when you go the service can be slow. During a recent happy hour the barmaid herself was left to tend to all bar patrons and the patio.", "type": "review", "business_id": "supigcPNO9IKo6olaTNV-g"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "Z9XN4EZeGLnlMmuMvo_i8A", "stars": 5, "date": "2010-04-12", "text": "Man, do I LOVE a restaurant with REALLY GOOD food and friendly service! Liberty Market is definitely that! \n\nFunny thing is that I was originally going to eat at Joe's Farm Grill, but ended up here (after a search here on YELP).\n\nNice laid back decor too.\n\nYou wait in line to place your order, pay, and they give you a stand with a number on it (like at Sizzler), then someone brings your order.\n\nI like places that spend the time to make their own salad dressings and take care with creating a delicious salad. The Italia was DELICIOUS and a perfect size! The homemade Minestrone soup was loaded with fresh ingredients and was REALLY fantastic too!\n\nI forgot to try one of their desserts...the last Red Velvet cupcake was ALMOST snatched up by another customer, but the Food Server was so kind to offer to get it to me (maybe I had a look of panic on my face??)...WOW!! This service is rare to find!\n\nThe restrooms are quite amusing! Saw a similar set-up in NYC. Each toilet/water-closet is individual...no stalls. They were VERY CLEAN too (ok, I was seriously apprehensive that it might smell like a men's restroom, since it was all unisex...no worries!!!!)\n\nI can't wait to visit here again...but, after I check out their other place across the street: Joe's Real BBQ. YUM!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XqU1PB0XWjcr3sUyZZGaWQ", "review_id": "csHak1d1uCU4oItf8d5MBw", "stars": 5, "date": "2012-09-23", "text": "Great experience from start to finish. Host (who was the owner) seated us at a table with a view. Was given house made foccacia bread and olive oil. Was awesome. Some of the best bread I've ever had before a meal. The olive oil was seasoned perfectly too. My grandma got the burger and I got the pesto penne primavera. The pasta came with shrimp, squash, and some other vegetables. I love pesto, so this hit the spot. Good serving size, but not too much. The food tasted fresh. They make their own pasta, which was delicious. The burger was huge. Looked like you get your moneys worth. The ice tea was even good. The place was clean and sleek. They played good music and the service was perfect. It has been a while since I had such a good overall experience with no complaints. I will be coming back. The host, who we later found out was the owner, was working that night and asked us how we liked everything. I've said it before, but that is a rare and good touch for any restaurant. Well done.", "type": "review", "business_id": "UmhTiNOKareQDP7D9aAnKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I5AcIAujn4X0fzjq-CTLBg", "review_id": "hBg8uej4Ix74Vq5LLPuiOA", "stars": 5, "date": "2012-07-31", "text": "Great customer service, competitive rates, and I always get a call right back from Jeff! Nice to have an agent who actually cares about his customers. I would recommend giving him a call.", "type": "review", "business_id": "j0cGt8mCE42Q-obJkcfrYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "i0A-c2yoHySmFhRV2sDR1g", "review_id": "Rfu5grIwYtiEQbbMZtGwTg", "stars": 5, "date": "2010-11-14", "text": "We went to The Farm today for lunch to enjoy a picnic on such an awesome beautiful day. I had the Tuscan sandwich and it was awesome. I had expected it to be good but was surprised at just how enjoyable it really was. I'm sure sitting outside in beautiful surroundings on a perfect day helped with the experience. This is the prefect place for lunch on a beautiful day. My date was equally impressed so I'm sure I will be back!", "type": "review", "business_id": "hBHkHYOk_E-6EgObC6MTdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "yheuEeK2zj6HaNY5bAzhgQ", "stars": 4, "date": "2012-10-31", "text": "Games- great.\nGame prices- decent.\nFood- Edible, but nothing to write home about.\nFood prices- WAY too high for the quality.\nBar- Weird. The 1st bar Ive heard of that doesnt carry Baileys or some type of Irish cream liqueur.\nDrinks- Meh, stick w/ beer.\nService- Also weird. Ive had the best service here when its crazy busy and the absolute worst when my friends and I are the only people to be waited on.\n\nA good time, if youre going for games and basic drinks.", "type": "review", "business_id": "1CNKe3H07sLu6rigOpAYsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "woXhdtL9ds78_mz8mOY4Vg", "review_id": "GiGm00UCTSDwA0c7RhRDFQ", "stars": 4, "date": "2009-05-05", "text": "I love the ambiance at Joe's Farm Grill. It's great to grab your food and sit outside at one of the many picnic tables. Stopping there with the dogs after an afternoon at Cosmo Dog Park is a must! There is something for everyone on the menu, from gourmet burgers (all I have to say is fontina! Yum!) to pizza, to ribs.\n\nIt's also a great place to take out-of-state guests who just blew into town from one of those cold climates. They are usually psyched to be sitting outside enjoying a meal during the winter without having a propane heater involved. \n\nMake sure you go for a walk on the grounds too. It's very relaxing and a great way to work off a few calories!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "kUw0d4RX-tp32zmP-XwkXw", "stars": 5, "date": "2007-01-22", "text": "Screw Disneyland- Sephora is the happiest place on earth! They have everything a girly girl or a girly guy could possibly dream of and then some! They have all the best brands in cosmetics, skin care and perfume and they're always adding new items to their extensive product selection. To me, getting a gift card to Sephora is like having Christmas morning over and over again. Everywhere you look there are sparkly blushes, lip plumping glosses, lash-extending mascaras and anti-aging face creams- what more could anyone ask for? I can understand why men might hate going into Sephora- but they do have some products for guys too- although not many. As far as I know, Scottsdale Fashion Square is home to the only Sephora in Scottsdale, but even as great as it is, it still can't beat the one right on the strip in Vegas. They're open really late and you can shop with a drink in your hand- what could be better than that?", "type": "review", "business_id": "pdxyZdnwltQXcu-kD5rpXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MZaI_6ffmE_XzjKnM62oFw", "review_id": "T6x80EWBNGa6qzfCjSdMEg", "stars": 5, "date": "2011-12-10", "text": "I loved this little slice of heaven. Reasonable prices, tiny dining room, very personal service. Pablo was laid back, but with only 4 couples in the small establishment, he did a great job of making sure we were taken care of.", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 7, "useful": 6, "cool": 4}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "d4tC0RRd0ldMNZHeIMbGuQ", "stars": 1, "date": "2009-02-10", "text": "What a load of absolutely hideous, uninteresting crap.\n\nTake every single one-star review written by Yelpers below, copypaste them here and you will have a far more eloquent summary of my feelings on this place than anything I can come up with.\n\nI have no reason to ever come here. Certainly not free will. The one time I did come here I was forced to by a friend who was meeting another friend.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RCmBxcE6ld-ANzEAS6yeUA", "review_id": "1sn0-eY_d1Dhr6Q2uoFCgg", "stars": 4, "date": "2011-06-10", "text": "Had the enchiladas - cheese and shredded beef - and some mini chimichangas which were both good. Salsa is fresh and tasty. Friendly service. Will be back next time I'm in Florence!", "type": "review", "business_id": "LeBQ8Wc3BK_i_jPSbFpZHA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "lAngRi4lwBIHmjCBVLd-8Q", "review_id": "W2E-KyisRMC5fuih1AjTlA", "stars": 4, "date": "2012-07-21", "text": "I found this place when we needed a place to meet for a business lunch. I had the smoked BBQ chicken which was good but that seems to be all I get when I go. I've tried some of the other dishes but haven't really liked them. My wife loves the fried pickles which I'm not a fan of. The portions are huge but there does not seem to be anything special I can remember besides really large portions. I suppose the biscuits topped with sugar smothered in honey butter are good but I also want to live to be at least 50 and they are not worth dying for. As unimpressed as I am with the food, the service is very good. I've been there a few times now and have always been pleased with they way they treat us. Everything from the speed and attentiveness has been good.", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "INgYGonM78YMB-5vpfoPQQ", "stars": 5, "date": "2010-08-18", "text": "AZ-88 is at once chic, urban, fun, and just enough Scottsdale without making me want to stab myself in the face, as a t-shirt-and-jeans-wearing, overweight guy.\n\nYou'll first notice the atmosphere, and with good reason--it's perfectly lit, with noticeable but not mind-numbingly blaring music, and even better, they have a live DJ who goes through no small trouble to beat match and keep things rolling throughout your Wednesday-Saturday evening dining experience. When I first hit AZ-88, it had an enormous deconstructed NY taxicab suspended from the ceiling which was a fantastical conversation piece. The wall behind the bar was completely covered in names and numbers. (I was far too proud when I accurately guessed that they were the names of cabbies and the numbers were their license numbers.) Overall, a very different, fun look.\n\nComfortable chairs and very full cocktails abound, and while they typically have a rock-steady delivery, more than a little cosmo has ended up in my friend's purse, to her chagrin. That aside, the food is fantastic and even though it's a bit hard to get out of here for under $30 per person (because you simply must try the cheesecake, and drinks are pushing $14), it's worth it as a classy-but-casual night out that you can really enjoy.\n\nThey have a great patio, the burger is dripping with flavor (and, in fact, cheese), and they have waffle fries with pretty much everything. Great salads and sandwiches help round things out, and they ship their cheesecake in from Carnegie Deli in New York which is just about the most perfect cheesecake you'll have the good chance to try. Forget that Cheesecake Factory nonsense, these people know how a cheesecake is done. It is rich, thick, with just a hint of sour, and an amazing flavor that takes your tongue hostage and demands whipped cream ransom.\n\nOverall, a wonderful place for drinks and good food with friends, and the staff is pointed but efficient and will throw back any shit you give them, in good humor or, as appropriate, not. (We've never run afoul of that rule, but you wouldn't want to, I assure you.)", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "df0YRtus3XaN64pzs8iteg", "review_id": "Ri6D23gr3_WqLgcZL6ttqg", "stars": 3, "date": "2012-01-09", "text": "Sugar bowl ice cream is yummy but what ice cream isn't? let's just say if one day I was craving ice cream, I wouldn't think of coming here specifically for theiiir tubs. Very average stuff.. similar to Breyers/ Dryers. \n\nWhat I diiid like was the price, their abundant seating area and location (=", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uzWTAgkONAZd5NrfP9XXlQ", "review_id": "21Nfgtnns8gZuzNfg7c_QQ", "stars": 4, "date": "2010-12-30", "text": "Great place for lunch, transport yourself back in time to this quaint farm grill which offers high quality food, fresh ingredients, killer burgers and an atmosphere that is one of a kind. Good place for breakfast as well. Family owned restaurant goodness. Only drawback is the line, however good things come to those who wait.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-V3CXSxnUzjkLVqi1xGrkA", "review_id": "VdD-2K_izVXf9nd912TkXg", "stars": 2, "date": "2012-01-13", "text": "My girlfriend liked this place more than I did. It may be that I'm spoiled by eating asian food in the Bay Area, but this place just didn't cut it. Unfortunately we both got red curry based dishes, so my experience was fairly limited... I got Duck w/red curry, and was not very impressed at all. The duck was tasty, but the curry was VERY bland. Honestly had I not been told it was curry, I wouldn't really have identified it as curry. The duck came with some plain steamed vegetables on the side, which as the meal went on, served to further water down my already bland curry sauce as the veggie water moved around on the plate. In addition to the curry lacking flavor, the vegetables really needed a boost as well. They should have been stir fried, or been served with a sauce of some sort. \n\nThe service was OK, but not great. There was only one other table in there, and the waitress seemed to forget things, and when we asked her about the meals, I felt like she was giving us canned answers of \"everything is good, just order something so I can go home\". Admittedly it was about 30 or 45 minutes before they closed, so that may have had something to do with it. \n\nIt wasn't a BAD meal by any means. It accomplished the goal of providing nourishment, and was better than bringing mickey D's back to the hotel room, but I won't be going back. The yelp definition of 2 stars is \"Meh. I've experienced better\", and I think that description fits my meal perfectly.", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "BtQVxFotHFK3T2FtIrBWmg", "review_id": "2YfYYOjwd_yOHxEuv-9Sqg", "stars": 3, "date": "2012-07-24", "text": "Other then the chips and salsa (5 stars for salsa) the food is good, but not so much that I go out of my way to eat there. The fajitas are delish, with mushrooms and the meat always tender, but the price makes me cringe. At over $20 there are so many other places I rather eat. I usually opt for a cheese crisp with green onions and green chilies and a side of guacamole (which is always yummy but pricey) and I still pay for all that $15 plus what ever we are drinking.... I love the overly rustic atmosphere, but it really could use some updating and maybe a good scrub.... Some of the servers are not the friendliest, but these are mostly the family that work there and have been there forever, so don't take it personally....\nBut overall it is a Scottsdale landmark that is fun to bring out of towers to and the food is overall good.", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "dYtkphUrU7S2_bjif6k2uA", "review_id": "gjtWdiEMMfoOTCfdd3hPmA", "stars": 4, "date": "2009-04-24", "text": "Man, if these guys were trying to replicate a gringo bar in Mexico down to every last detail, then they have it absolutely nailed. Sorry to ruin the mystery of the name. The building itself is a spectacle-- a brightly colored fusion of indoors and outdoors with a few different bars, games like the beanbag toss and televised sporting events in every direction, music blaring, a room dedicated to Elvis, and more Chuck Norris jokes than you can count plastered across the walls along with a bevy of posters advertising drink specials. A line of blue footprints painted across the concrete floor leads to the men's room, dollar signs to the ATM... genius stuff, really. It wouldn't have been at all out of place were they to have tried selling surfing monkey statues or trotting out a donkey painted like a zebra for an extra special photo opportunity.\n\nRumor had it that Dos Gringos had a killer Sunday brunch buffet and Bloody Mary bar, so we showed up at 10:30 AM to find... that they hadn't opened yet. A place that offers brunch but has the balls to wait until after 11 is okay in my book. Ten bucks gets you all-you-can-eat eggs, bacon, chile verde, beans, and a bunch of other stuff to tickle your fancy. There's nothing like sitting out in the sun, feeding a hangover and resuscitating last night's buzz before the clock strikes noon, and it sure beats sitting in traffic when that monstrosity of a church up the street unleashes some Old Testament fury on Alma School Road. Dos Gringos probably gets spring break wild on Friday night, but on Sunday morning, this place was just as tranquil as the doctor ordered.", "type": "review", "business_id": "RqbSeoeqXTwts5pfhw7nJg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "k99cC9QpbUXlGRWwxEe93w", "review_id": "EI3YXHKCwAIrEj18OVNg-g", "stars": 5, "date": "2012-12-04", "text": "Fun, with caps if I did that sort of thing. The whole experience was great (you won't get any specifics, this review is 3 weeks after, I can't remember, sorry). Service was by that waitress who does everything perfectly. Explain food, wine, doesn't stay too long. Nice interesting big room decor. Looking forward to the next time.", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Ut8dgpxKahmC_9v5PbYOmw", "review_id": "ic86bSr_cewJSAPfIMyW8g", "stars": 5, "date": "2008-07-07", "text": "Who dosen't like Cosco, I love this place. The pizza is cheap and good.", "type": "review", "business_id": "FIQz9u8Cy7aTXfMQugUYvA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LH9q3LtJRVstt8Of4N1M1g", "review_id": "pNv6lyBfJITFITz-iIKPzw", "stars": 5, "date": "2010-04-23", "text": "A group of us from the IVAA Summit went to Zinburger last night. The food & service was great! I think we scared our poor server (Mike), but he was wonderful!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "TVJP9jSapI_jVHJ89mmijA", "review_id": "7ohAK9lUtD5GluvzDTErXA", "stars": 5, "date": "2010-03-23", "text": "I love this restaurant (even though it's a chain and I can hear my brother saying it's just a \"glorified Red Lobster\"). \n\nI ordered the Crab and Lobster Bisque soup and am drooling thinking about how much I wish I could eat it right now. For my entree I ordered the Atlantic Salmon (stuffed with crab, shrimp, and brie cheese) which was unbelievably amazing. I also had some scalloped potatoes which was basically in the shape of a brick covered with cheesy goodness. I wanted to eat the apple pie for dessert because it looked so delicious, but could barely breathe after eating all that food. \n\nThe service was outstanding, although the manager stopping by the table several times throughout dinner was annoying. \n\nI can't wait to come back here.", "type": "review", "business_id": "MU3i2uEyUBntebU6pEyMbw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e3LzMIrC6FtN9QeTvWiGag", "review_id": "s_2Q1U2UgG14kNhFTVn-fQ", "stars": 4, "date": "2012-12-05", "text": "This is a tough one. I'd found out about Mrs. White's by way of Lo-Lo's, and thought I'd try Mama's food before Son's. It was good, I'll say that. I had the smothered chicken and regretted it immensely - fried chicken covered with gravy amounts to a mess of watery breading. Between that and having to dig through the mess to find the bones, it wasn't exactly a lot of meat down my throat. Mac & Cheese and white rice as my sides were good.\n\nThe ambiance? There IS none. I found more entertainment from the writing on the wall, which had clearly been painted over MANY times since the 60s, and the open/close sign which reads, if closed, to contact \"Jesus\". LOL.\n\nUnaware of the church across the street, I arrived right after Sunday services to find the place fairly full - some churchgoers, at least one newcomer party, and several regulars. Based on the caloric content of the entrees, I wasn't surprised to see about 50% obese customers, while the rest were inexplicably thin.\n\nAs a Whitey, I can't say that I was comfortable. Clientele is almost all Black and while they are some of my best friends, I only felt welcome because of the cordial words spoken by our waiter and the cashier at the checkout, who clearly could have beat the crap out of me with one punch. Other than that, there were a lot of \"what are YOU doing here?\" looks from fellow customers. I kept wishing I had brought my sista friend with me, who would have loved this place.\n\nI'd go back, but it's not a perfect choice. Perhaps on a Saturday when church hadn't just let out. Also, the price is extreme - it's almost as high as Knott's Berry Farm which gives you more food for only about $2 more, and that's at theme park prices. This is just dumpy outskirts of downtown..but again, I don't wanna judge. I love small business and I'm proud of Mrs. White for making it this long; hope she continues for a long time to come.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GeGDZ02UfARKBRl7LqKZuA", "review_id": "PQBYt2G58kn0tBMhK3x33Q", "stars": 4, "date": "2009-05-07", "text": "The food here is generally pretty good. Drink selection is great. Service is normally above average. The only thing stopping it from getting 5 stars is that it's a bit expensive relative to comparable quality places.", "type": "review", "business_id": "xmtKVO7C7KYVqMBe2eQq3A"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "qklF6QU-bi4Y4Bt4g6Sv8A", "review_id": "h2c-jLW9cLVIiiubGqTaog", "stars": 5, "date": "2011-01-25", "text": "On one of my many visits to see mi amore, he took me to this fantastic little pizza joint. The aesthetics of the place were overwhelmingly perfect. I believe the maximum seating capacity of the dining area is 45, yes folks, 45. So the 2 1/2 hour wait was expected, and very VERY worth it. The pizzas are baked to order in a classic brick house oven. The toppings arent what youd find in your local Pizza Hut, either. You can choose from fresh slices of mozzarella, slices of perfectly seasoned italian sausage, pepperoni slices, salami slices, arugula, fresh basil leaves, tomatoes, etc. Basically what Im getting at, is this is beyond words delicious, classic LEGIT Italian pizza. Around the dining area, you will see freshly baked loaves of focaccia bread, that is later served to you with extra virgin olive oil for dipping once you are seated. The smell in that place is heavenly.....incredibly reminiscent of my grandmothers kitchen!!\n\nPS GET THERE EARLY!!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "7brf9WC0Gr_7bUBXEHs9FA", "review_id": "iLHFyi913RBDovPVRPm_ZQ", "stars": 5, "date": "2010-01-06", "text": "The pizza is my favorite in Phoenix. It is light, airy and tasty and does not give you that \"I am reading to explode as my cotton mouth is making me drink two liters of water every half hour\" feeling.\n\nThe ingredients are fresh and delicious. \n\nI am hooked!", "type": "review", "business_id": "Vb9FPCEL6Ly24PNxLBaAFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5RVUt3bCDSA7F_SahuwZ8w", "review_id": "BzeBZD_ySZHkzOxA1oNozA", "stars": 4, "date": "2011-05-27", "text": "had the place to ourselves on a thurs nite (5/19) so...service great, mgr came over and asked if we had eaten here before \"nope\" so he said he wanted to buy dessert, \"great, thank you\" oreo cheesecake was good... now.... pizza...pricey by 2-4 bucks but was very good. can't go wrong with your toppings but the riccotta was not my cup of tea (wife liked it on her pizza). definetly going back to try it again... great crust", "type": "review", "business_id": "x4L42igQPv4TFlqGR2Wthg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "Pk5T0OFCbl8mIKkKYyglWQ", "review_id": "dwC-XTgcmFTMKe1q-Cz8vQ", "stars": 1, "date": "2012-07-09", "text": "Wednesday 7pm. This place is your average over priced, lack of taste chain food restaurant and this place was no different. \n\nI have to say, I was super disappointed as I have always heard rave reviews, now I'm starting to question who I associate with and their taste in food.\n\nService=slow.\nFood=just tastes like salt\nNoise=loud and they do a dance...like a lot.\n\nGo somewhere else and skip Joe's Crabs.", "type": "review", "business_id": "MwaFQkJxzqg8G5_hTip99A"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "uqK3yvpg5Evk_XgzMW-lAw", "review_id": "bAJIn-cEjNDPKoY3pXC3aQ", "stars": 4, "date": "2011-04-19", "text": "After long debate of where to have lunch, I am glad that I stopped into The Greek Pita. \n\nI had ordered the lamb gyro with everything except onions. The gyro was loaded with lamb meat and toppings. The pita was soft and fresh. The Tzatziki sauce has a nice tang to it. It tasted light, cool, and creamy. The total cost was $5.74 + tax. I left with a very happy belly.", "type": "review", "business_id": "WYj43z0qmlKklhcvV75mwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "gsMVXAI9su3B26Fd4vyyRQ", "review_id": "vSQQ5EC65AJFU7ZPa6owzQ", "stars": 3, "date": "2008-08-26", "text": "They serve breakfast all day, which is always a plus. \n\nI had the tomato soup with grilled cheese. The bread was delcious, tasted homemade. However, there was way too much cheese, and it wasn't fully melted. \n\nMy g/f had the eggs benedict, which looked really good. She said it was really good, and filling. \n\n3 stars. I've had better. I've had worse. La de da.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "eeJ10gamdNebtq028i0BvA", "stars": 3, "date": "2012-06-04", "text": "I want to like Turf, but the food is just okay. I've only been here twice, but it was not mind-blowing.\n\nI'm not fond of the shepherd's pie here. It is the most bland version I have had... even in this town. \n\nThe wings, however, are pretty good. I've eaten wings here with a couple Harps and have had a decent time.\n\nSurprisingly good is their seared ahi tuna. It is pretty weird to think an Irish pub would do this well, but they do. A friend ordered it and after shaking my head and saying there's no way it could be good, I tried a bite and I had to eat crow. \n\nTurf is typically a stop on the pub crawl, so I will definitely be back again for boozing.", "type": "review", "business_id": "FeI75xIG8PF_XZ6P80gLBQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "TkTbb-JkRsdtD5wplSGEtw", "stars": 1, "date": "2011-12-27", "text": "I had not been to an Oregano's in like 10 years. They seems to be popping up all over here in AZ now so my buddy was in from out of town and he wanted to try, so why not.\n\nI'll tell you \"Why NOT\"... we has two thin crust pizzas... and I even hate to call them that. More like... crackers with melted cheese and some toppings.\n\nThat was some of the worst excuse for pizza I've ever had. Most of the fast-food delivery pizza I've had beats it -- and I do not like, at all, delivery pizza.\n\nMaybe the pan pizza is better than the thin crust... god it could not be worse!\n\nIt only deserves one star for the good service... other than that is the another sub-par overpriced \"gourmet\" pizza joint.\n\nIf you want expensive, and good, pizza there are many good alternatives... Pizzeria Bianco, Grimaldi's, etc.", "type": "review", "business_id": "yPJFfglhMHAKciUpjTmgBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "VeJi5LINIEkV78ug-WCV0g", "review_id": "IgjLZa2UFxhvtu4WjrOtDA", "stars": 5, "date": "2012-02-20", "text": "I was a regular at Mia's first location in Wrigleyville/Chicago. Scott (the original founder/chef and present owner) is the reason Mia Francesca is what it is. Not sure if us folks up here in Scottsdale know how lucky we are he landed on our door step. Food, service, vibe...if I could give it six stars I would.", "type": "review", "business_id": "vnRwp-LUrxMdJC9je4q9Fw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HGeXdydcZ9nDn9fT87z4fA", "review_id": "Ygh_egJbl3jAYc8IaTRvPQ", "stars": 4, "date": "2008-04-24", "text": "I thought Trader Vic's was very nice. Food was very good. Atmosphere was great. Staff was very very friendly and fun. They even gave me tons of recommendations of places to eat in the area since I am new around here. \n\nI recommend the lamb.", "type": "review", "business_id": "uI4YqMarUpchI4I3ZWgOGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bMeRjJSiSZq1Izjvj7bvaQ", "review_id": "ujMijCZ5vv9pU2aOz2LHjg", "stars": 5, "date": "2012-05-09", "text": "Excellent service and food \n\nenjoyed live music on patio", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "vOw4NYgKe57qcJ5fOjk6PQ", "review_id": "JBif92bIAelSfHoH39fSag", "stars": 4, "date": "2011-03-23", "text": "I was fairly surprised to visit Line Thai and find some decently authentic, good-tasting Thai food. I'd always assumed that this area of Phoenix was (excuse me for the pun) totally dry on ethnic food, considering I had a hard time finding pho within a ten-mile radius of my parents' place in Surprise.\n\nAnyways, I chose the pad si yew (spelling varies all over the place, I think they spell it \"phat si iew\") and my father ordered some kind of chicken cashew dish. Both were excellent, though a little more in the line of American tastes -- not as spicy, and the pad si yew wasn't cooked slightly burnt like I recall it traditionally is made -- it was pretty tasty.\n\nThe hot tea was a great companion to my meal as well.\n\nThe service was great without being too pushy, invasive, or sloppy. They always refilled my water in a timely manner and didn't interrupt my conversation with my dad. That's important to me -- that servers don't bust into your conversation with little to no consideration of personal space.\n\nMy parents had been there several times and enjoyed it, so now I see why they liked it. Oh, and their spring rolls and the accompanying peanut and hot sauces were also delicious -- not the best I've ever had but super-tasty.\n\nThe atmosphere is a little dry (what is it with this word? Sorry) but I can live with it. The booths were comfy and it's not like the place was musty or gross. Not every good restaurant needs to be chic and trendy, really.\n\nAll in all, it was a nice experience at a reasonable price and I'll definitely make a visit next time I hang out with the 'rents.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "o7sNqbEsMrztrVV_3RU4Hw", "review_id": "3_rbagmhkqp4mPJiwoMlmw", "stars": 5, "date": "2012-02-28", "text": "Love Krista!", "type": "review", "business_id": "D0K0F0RREGO8LeW16IlZlQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 5}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "lG3Y6LPASX8MyqDedIpBGQ", "stars": 2, "date": "2008-12-21", "text": "Ate here months ago. Was excited to finally find a Phoenix sushi venue, and one that also offered brown rice as a sub for sushi dishes (don't quote me on this however, since it has been many months and I may be recalling another venue). \n\nOne item did impress me, and that was the complimentary appetizer that was comprised of tempura'd chips with perhaps a squid salad topping (?) I should have just ordered another serving of this! Instead, I tried an Ao Yasai (mixed gourmet greens with ginger) and a sushi roll w/ brown rice, the latter I thought was price-y considering the very small portion given. I was so unimpressed by its unexciting flavors that I don't even recall what kind of roll I tried! Pretty sad, I know. \n\nI told myself I wouldn't go back, but I would like to give Hana another try, perhaps for lunch and/or dinner with a group of friends and have apps and wine/sake!", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7kRN8IkOWlLblEltNlnfRQ", "review_id": "nuT_InwR0gHYcwQ20ouXyw", "stars": 4, "date": "2007-09-05", "text": "Fun Irish-pub type vibe with a great beer selection and not your typical bar food. I love the oysters on the half-shell, salads, sandwiches and fried zucchini/mushroom combo.\n\nCasey's offers inside dining and a bar - but the expansive patio is the hang-out spot. The clientele is varied and full of regulars. People from all ages and backgrounds hang out here but it's especially popular with ASU students, staff and faculty. \n\nThe only downside is parking can be difficult, service sometimes slow and it can become fairly crowded - especially on the weekend.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 8, "useful": 2, "cool": 2}, "user_id": "DJIwm4UCnM-SOxXbARjPsQ", "review_id": "4YSQvTgbGy5DraaXM4DGRQ", "stars": 4, "date": "2007-01-23", "text": "You may think this is a cop out... writing a review of Starbucks. It's like writing a review of water. (\"It's wet, delicious and necessary to my survival!\") \n\nMy aim is simple here though. This particular Starbucks location is an excellent place for people watching. Try hanging out there between the hours of 11am and 1pm on a Friday afternoon and tell me you aren't entertained by some of the patrons who go in and out of the doors. While attending school, I was taking a screenwriting class and given the arduous task of writing descriptions of about 35 random people. Where did I go to write every single one of them? Park Central Starbucks. \n\nThe crew here is also super friendly every time I come in and they do their best to remember my name. It doesn't help that I tell them a different name every time. OK that's not true, but what a fun social experiment that would make.\n\nThe coffee... been there, done that and there's not much else I can say about it, but for the sport of people-watching, this a great place to hang out in the corner and just take it all in.", "type": "review", "business_id": "dSQh1Hx2BiSrYog4ad740A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fnO1oH3N5QMG-PvHA4F-VA", "review_id": "5YVQIr0AJiiiJmkuhoRjzQ", "stars": 3, "date": "2011-12-28", "text": "nice location , good service but a little slow. been here twice so far and both times the food i would give 4 stars but both times they screwed up our orders and burger was cold, they did take off 20 percent for the issue and that was nice.. overall i enjoy the food and would go back.", "type": "review", "business_id": "adKyTJT-RtaTP0krxLyQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ITBs8txD0Zu-YuxXCGqokA", "review_id": "6QNmh2tk6XK0jBrswJoARQ", "stars": 5, "date": "2011-09-03", "text": "I attended one of her classes for pressure cookers, and had to leave with one. Luckily, she offers great discounts after her classes!\n\nSince then I have also gotten a bosch mixer (don't know how I lived without one all these years!) and also a wheat grinder. Everytime I go in here I find something I can't live without!\n\nShar has great classes, and tips on how to utilize all her products. Well worth it to attend a class. I just wish the store was closer to Glendale!\n\nSo glad I found shar's, now my family enjoys homemade wheat bread and pizzas and all sorts of yummy things that are good for them too!", "type": "review", "business_id": "5zrVZnla81bH9eh76d5GVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "wxapwb1gulmqGVCNxVWjBQ", "review_id": "6CVBHyAJT7X5HUp4WfH78Q", "stars": 3, "date": "2011-04-19", "text": "I have either an extreme LOVE or DISLIKE for this place. More love, though. \nThings I love: \nGreat wine, with all different price points, which is nice. Cool, speakeasy atmosphere. Great bands and entertainment. Great cheese platter and flat breads. Good prices. \nThings I do not love: \nService. Are you a bouncer? A bartender? Are you leading me to a seat? can you get me a seat? Its confusing. The staff is not clearly defined (not only do they not wear uniforms, or name tags, but they are scarce and hard to find) \nThe mix. It is kind of a random mix. I guess that can be a good thing, but I was there once and it was like Spring Break in Cabo, and then the other time, it was like 50+ snow birds day. Either one is fine, it is just hard to gage when to go and who to bring, like, my mom, or my pals. \nThey serve dessert, but no coffee. That, to me, is just strange. Buy a coffee maker. Sheesh. They have this amazing fondue that would be great with some baileys and coffee, and alas, no coffee. Strange. I know, \"wine bar\", but if you serve dessert, coffee should go hand in hand. \n\nIn the end, the place is cool and they have some of the best entertainment there. they ambiance is nice. Go early for a seat, they are hard to come by. Beware of paying $ at the door for an entertainment fee, but it is well worth it.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "bUy80XymVAeKV9_QR0y8ug", "review_id": "EV7nE0i76PSf7Odfrqcicw", "stars": 4, "date": "2009-04-18", "text": "I have visited MacAlpine's a few times, and every time I have been very pleased with both the food and the service. The wait staff and the owners are always very friendly and helpful and the food, although nothing fancy, is always good. I love the atmosphere of this restaurant as well as the neighboring thrift shop that is fun to browse while the food cooks. And the egg cream sodas are delicious! Not to mention visiting a piece of Phoenix history at the same time - I love it! The only downside to this place? I wish they were open later into the evening...", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2ARM6NFVciTzV21r7p8jiw", "review_id": "IZrBk5XXvCEO-7Ce3XYGOg", "stars": 2, "date": "2010-08-29", "text": "I've never eaten at this location; both times I've had it was to-go. The first time I had a pulled pork sandwich, and a side of the beans. The pork was extremely dry and tasteless without the sauce. The sauce I found was overly seasoned. And the beans had way too much pepper. \n\nThe second time I had HB's was a work lunch that we had this delivered. Once again, the pork was completely dry, but not as dry as the pulled chicken, which my coworkers complained about. \n\nI prefer Hap's BBQ over this place for sure.", "type": "review", "business_id": "q1nDSpmV-FdTBNj6UuZvTg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "jy1qPe0Tz3ewHacAtshmBw", "review_id": "VcFKtk8h9nAztl2lnzaDaQ", "stars": 5, "date": "2010-12-27", "text": "Need fig preserves? They've got it. Fennel? It's beautifully packed on ice and extremely fresh in the produce department. Need boneless pork loin roast from the blade end? The butcher has your back. Duck fat? Just take a peek in the freezer section. Sometimes, it's the little things that normally go unnoticed that gets you five stars...\n\nAJ's closed early the other night in lieu of the holidays and I ran around to FOUR different stores looking for something as simple as whole grain mustard and fennel. I came up empty handed on both items. I say \"simple\" items - but it's amazing when you rely on a grocer like this as much as I do and realize that most items are out of reach otherwise. AJ's carries practically anything my culinary desires could ask for!\n\nAlthough I had to wait a day to go shopping again and to make the recipe i was wanted, it was during my adventures to the 4 stores that I realized how much I truly appreciate this grocer. How is it I can get wireless internet via laptop on the I-10 freeway courtesy of my phone company, but can't find fennel within a 10 mile radius?\n\nThis my friends, is why I love AJ's. And as someone who watches America's Test Kitchen as though it were food porn, I can say that any other grocer doesn't stand a chance against Eddie Bashas' high end store.\n\nYou truly do get what you pay for. For all the employees at AJ's I say \"THANK YOU!!\" for the great service you provide and the products you offer.", "type": "review", "business_id": "CgHcO651uEE3aalrkm4boQ"} +{"votes": {"funny": 4, "useful": 8, "cool": 6}, "user_id": "oC0kwGvgaAeT3ZIxdxTcJA", "review_id": "BXPqsdLt7GkVY0WFu_ypCw", "stars": 5, "date": "2008-06-17", "text": "Love me some hidden house! \n\nThe music is too loud. The drinks too cheap. The clientele too local. But I've never had anything but a good time there. Whether it's karaoke or weird shit on the weekends you'll have fun if you don't expect it to be Merc, cuz Merc it ain't. And not for one moment in it's life has it pretended to be. But I love it for what it is and that's an experience.", "type": "review", "business_id": "9mQj65SmYj2pcehH339aEw"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "Mva8f3RBztfxUQoUi47SnQ", "review_id": "agM6-Nwj2Tbe-QCkqMugkQ", "stars": 5, "date": "2007-08-07", "text": "Cowboy Ciao is one my favorite restaurants in Old Town Scottsdale. To start with, they share a wine list with Kazimierz. My favorite menu item is the Stetson Chopped salad. My only wish is that the serving was bigger! I can't get enough...and I'm too embarrassed to order two. The flavors in this salad are amazing! Smoked salmon, Israeli cous cous, creamy dressing.\n\nFor dinner, I actually like the Exotic Mushroom Pan Fry. The tastes are really unique and I got to try mushrooms I hadn't had before. It's great!\n\nI did try the Bacon Peanut Brittle for dessert and I cannot recommend this. It was not good at all. It just makes the brittle really greasy and then you run into chunks of bacon...ick. Thank God my husband ordered the Chocolate/Peanut Butter pot pie so I could steal from him!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8KBmUXP4gUoGPxNKnHLpjw", "review_id": "fmogTChx_IX4QgLhuGFiQw", "stars": 5, "date": "2012-09-04", "text": "Great Mexican food. \nAuthentic street tacos plus a full menu of tasty dishes. \nHalibut tacos remind me of Ensenada\nMichelada with Pacifico beer is a perfect beverage for any dish.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VyzwBKnq-LJ8OjvG0ZTwrg", "review_id": "eGYRmlaUPl-Wmrp2CweqOQ", "stars": 4, "date": "2010-09-25", "text": "I really wanted to give this place 5 stars but.. well.. let me explain. \n\n\nI came in on a Friday around 5:15pm trying to catch an early dinner. I am glad I did as upon entering I noticed they close close @ 7:30pm. When I came in all the tables were empty but they all had \"reserved\" place cards on them. Later I realized that there was some sort of club or church organization that came in and took over the restaurant so I would recommend making a reservation. The owner was very nice and sat us at one of the reserved tables. Her husband the chief quickly realized we knew nothing about polish food and offered us a sample of dill sour pickle soup. yummmmmy. \n\nThe restaurant itself is located in old town Glendale's Catlin court in a small quaint little house that gives you a more personal ambiance. The owners made us feel like we were literally dinner guest at their house which was not what I was expecting but a nice surprise. \n\nThe food is best described as \"home cooking\". The soup was excellent and my favorite part of the meal but the rest tasted just as my parents would have made growing up at home and I'm not Polish. Put simply all the main ingredients of my dish tasted as though they could have been bought at Fry's and my mom cooked them. The kielbasa was good but nothing unique, sauerkraut was tasty, but the green beans were either overcooked, thawed from frozen, or from a can. I am by no means a Polish food expert and maybe this is exactly how they would make it in Poland? \n\nOverall if you don't feel like cooking, want to try something new, and are in the mood for Polish food I would try it out and see for yourself. As for me I did like the restaurant and their owners but I think I will only return for the soup in the future, which I would gladly give 5 stars.", "type": "review", "business_id": "1cTI09YZ3uRPXt3YkznuPg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fSL20coJsOi_69A3u2OKcA", "review_id": "5vzkZR2B3TWcyrNkofEbEQ", "stars": 4, "date": "2012-05-06", "text": "This is my first dinner stop anytime I'm in Scottsdale, and always makes me look good when I recommend it.\n\nThis time, the standouts were the ceviche, the crab queso, the lamb adobo, and the Cadillac marg. Tablemates had other dishes they raved about.\n\nNoteworthy notes:\n\nI've not yet sat on the patio, but I can't explain why. It looks awesome.\n\nThe margaritas are sufficiently stiff. They're not my preferred carburetor cleaning strength, but neither are they simply jazzed-up lemonade or those super-acidic-1.0 pH version you get some places.\n\nThe service was a little lax this time, less attentive than before, and that's the only reason I'm not giving LS a 5 this time.\n\nIf you're after Mexican when in Scottsdale, this is the first place to point your ride.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "GubdNFoDAsiwE6bWIr97cQ", "review_id": "qSqL5Ct8i0_2s8L29nYhuQ", "stars": 2, "date": "2010-01-17", "text": "The actual restaurant is fine, the service is friendly and good.\n\nI am not going to go in to the food other than to say, no.\n\nOh well $340 bucks and all I can muster is a no.", "type": "review", "business_id": "PuHucejs4LG3hSXnrwi9-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Yk37VAp452K7FwHWd1rrQw", "review_id": "JAq8WMuHq3DcITJa7O7byg", "stars": 3, "date": "2010-01-26", "text": "I have been graciously reminded by many people that a \"bruin\" is a kind of bear.\n\nSorry guys... I'm an AZ native (we don't have bears here in Phoenix) with the classic AZ school system education. :)", "type": "review", "business_id": "619v4z_tj2NiZWuX1tPdrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JnJDO8c37PnwsP0P7-1v0w", "review_id": "4FlODbbswl1eq5-z96vppA", "stars": 1, "date": "2012-05-27", "text": "I recently had a shit cleaned at the Intercontinental Hotel in Hong Kong. Not cheap. I only mention that because this place charged MORE to clean that suit - almost $30 for a two-piece suit after they tacked on their $6 \"designer brand\" surcharge (no, I am not kidding). Despite branding as \"green\" the suit still reeked of solvent (the green, silica-based solvents have never left an odor in my experience). No differentiation to justify these absurd prices - a lot of good alternatives in the area. Be warned!", "type": "review", "business_id": "q7DzFSkt1ColaWrAOw7rFw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "3iA6ROdM2Ii-k7HHvGcNxw", "stars": 2, "date": "2008-06-19", "text": "I used to frequent the Lost Leaf almost daily starting the day they opened, unfortunately I cannot say the same anymore. I used to love the refrigerator full of beers, the music, and the cool little home, not to mention the biggest thing, the promise of a full bar. Now, everytime I go there it's full of douchebags, they are out of the beer I want, and the music has somehow become sucky. Perhaps the biggest kicker... there is still no full bar! The servers are surly kids, who have the audacity to tell you were you cannot stand, seemingly forgetting they work in the hospitality industry. If this were a city with a ton of good bars, that would never fly. But since they are one of the only games in the area, most people go back just out of convienence. The last time I was there, we coaxed a bum to dance to 1920's tunes that were being played out of the treehouse out front. That was about the only redeeming quality. And I swear if I see one more dude with girls jeans trying to look cool with a bomber of the worst beer imaginable I'm gonna snap.\n\nThanks for ruining what could have been an awesome hang out spot guys.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "syF-6VzPdjmCXbTye6N9Eg", "review_id": "MFIB6AA1sP7gq49z0Bh29w", "stars": 4, "date": "2009-09-01", "text": "Yes, the view is wonderful. Absolutely. \n\nSadly, my table was near the entrance, limiting my ability to enjoy said view. Also, we are still in the summer months, so I was confused that there was a fire raging outside at night. \n\nThe decor is wonderful, dark with different tones and moods. We arrived in the early evening, so I was surprised to see how dark the room would eventually become. I didn't find the table and its decor that exciting, but it will give it a pass. Not everything has to be practical art.\n\nOur party consisted of five and we were certainly treated to a good sampling of what this place had to offer. Half of the party ordered off of the set price menu. This included a three course meal for something like fifty dollars. It may have even been less than that, but I'm not sure. This menu had an array of choices and wasn't limited to chicken or pork. \n\nI was impressed with the portions and the quality. The salads were crisp and the dressing wasn't overpowering, more of an accent, the way it should be. The meat was tender and flavorful; our table ordered the NY, Ribeye and Salmon. I do agree with others who said that the sides were a little small, but I do think they were worth the price. I know for sure the cream of corn was, as it was treated with green chili and a bit of spice. \n\nThe desert was alright. Not a great deal of variety. The textures were spot on, but the temperatures seems a bit off. If a dish was intended to be served warm, it was slightly too cold, etc.\n\nThe service was bad. Probably the worst service I've had at any restaurant. Our server left items off of the tab, forcing her to return and run the debit card three separate times. I am okay with someone making a mistake, but it should not take two attempts to correct. Also, my wife and I ordered Mojitos. They were very average. No sugar, which I assumed was standard fare for Mojiots, and amount of mint was rather low. I understand that drinks are open to a bartender's whim, so I won't dwell on this fact.\n\nValet had a bit of trouble with our car and keys, which was annoying.\n\nOverall, I enjoyed my experience, food and atmosphere alike. However, the service did bring me down a bit.", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EO5Q9yRT7LP00iQYpSNuhw", "review_id": "N9lNmpiOD0bQQTDUvPAMew", "stars": 2, "date": "2008-11-03", "text": "My first visit was roughly two weeks ago when I got a Mediterranean pizza over lunch. Service was friendly and prompt and the whole meal cost ~$4.\n\nToday, I stood around waiting for help for about 5 minutes without anyone so much as saying 'hi.' One employee looked at me several times but ultimately went back to stocking shelves each time. I could see people in the back and the general manager talking on his cell phone. I decided to ultimately leave rather than waste any more time. Disappointing at best.", "type": "review", "business_id": "OFiQ34TNKEE5a00Vd8Kwsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jHwEOGkgl0yQ-oLWxiCAGg", "review_id": "kBZdDpYbZCNXdSWXgCSFPg", "stars": 5, "date": "2012-11-04", "text": "What a fabulous dining experience! My boyfriend and I are always looking for new places to try and came upon this place on Yelp when our regular Saturday spot decided to no longer be opened for lunch Saturdays. Right upon entering we were greeted by someone behind the register and he sat us down at a booth. The decor was great and the place was spotless. We ordered the Saturday special of Monte Cristo, the potatoes and the biscuits and gravy among other items. The Monte Cristo was perfection and the home made blueberry and strawberry jam was excellent! The potatoes were seasoned to perfection and eggs cooked perfectly. I would definitely recommend this place to anyone and this is now going to be our regular weekend breakfast/brunch place.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rv3k5uOZT5i40aLmlhw4DA", "review_id": "-ZjQLlmThaRU5hpgLfmH_Q", "stars": 1, "date": "2012-04-05", "text": "Where are the managers???? It took 1 1/2 hours for our meal to come out at 8:15 in the evening. Items came out at different times so we couldn't all eat at the same time. The asparagus tempura was inedible because they didn't cut the ends. Waitress just took it away and did not comp us. Waitress knew next to nothing about the sushi menu. She sat and talked with the hostess the entire time instead of waiting on her tables. Food was WAY over priced, and I couldn't speak to my dinner companions because the music was way to loud. One of the worst dining experiences in a long time. Paid $70 for a dinner for 4 and went home hungry. HORRIBLE!", "type": "review", "business_id": "s26P-jeVUH9TjnTPQttPag"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "okcNd96gHHf_83wly93bpQ", "review_id": "ex4pODOWrfzx1k89FEE0Kg", "stars": 3, "date": "2012-01-13", "text": "This place is busy, but the kids love the pancakes so much food for the price.", "type": "review", "business_id": "-0bUDim5OGuv8R0Qqq6J4A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "TKiucSBuj9twVDW-BoAdrg", "review_id": "AgZm8lHgL_R3bsGDQSs6NA", "stars": 5, "date": "2012-07-14", "text": "I was sad to come back to lai lai's and they no longer had the Mongolian :( boo,, but i took my mom there and we were starving so we decided to order off the menu. My mom is allergic to msg and they helped us with what we should order. and she didn't get sick!! woo hoo.. we ordered three dishes and an appetizer to share between her , my bf, and myself, and we stilll brought food home, and I dont think we spent over $30 bucks for all that food!! it was very good to! i love good cheap food!! Ill be back, they are always friendly.", "type": "review", "business_id": "mn1LFFcQwEpir38_mPYH_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nsjM5lu-8CL97d58pJuVng", "review_id": "etL0kdSM1kaKM7QHW2lbNg", "stars": 4, "date": "2012-09-05", "text": "Mmm. The cream cheese and potato soup always perks me up when I'm getting sick, and I love their chocolate chip scones! I've had their ravioli too, they're yummy. Wildflower is homey and consistent!", "type": "review", "business_id": "RFMcLH3_58eAwvSfvLhJew"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "K0euQLFAcKhQPZ6JxGAryg", "review_id": "-qbRKlaxLm0RBkdemva5Qg", "stars": 2, "date": "2012-02-25", "text": "Ugh...I had never been to a Waffle House, but my southern friends who frequent them a lot back home convinced me to try it out for a late night creep. The food is just sub par and sits hard in your belly. All I ordered was waffles and I wasn't impressed. I do appreciate that they are open late, so I wont' \"throw the baby out with the bathwater\". The cocoa was cool and the server was cute, sweet and attentive. Fortunately for me, my taste buds are already spoiled with The Good Egg. I'm so sorry I cheated on you baby!", "type": "review", "business_id": "5I3H_dsz7u90rir67QJq_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MxeHhDzPsO9P8swTby_faA", "review_id": "pHX-AXHXtPDK3dWcH4sJew", "stars": 5, "date": "2012-10-10", "text": "Very good. My wife and I stopped by randomly on our way back and had beef pho and veggie pho. I eat large portions and this is the first time ever I didn't finish a bowl of pho. If in the area we will stop again for sure.", "type": "review", "business_id": "jf4RUa9EQO37hqxRCxbEXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UfGlNf7MbKeRPp4ASUVTcg", "review_id": "abVV1guPWL3mK08A3a8ajw", "stars": 4, "date": "2010-12-05", "text": "This place is wonderful! The service is amazing and food is delicious. \n\nI especially enjoyed the Clams Oreganato appetizer. \n\nThe Eggplant Parm lunch special came with pasta and choice of soup or salad. What a great deal!", "type": "review", "business_id": "91n02N35x38nvR1XH-jOAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IldNKx5L8unlcv3LBSs-_g", "review_id": "-E_VKAzXc1__o8-X20CCuQ", "stars": 4, "date": "2010-06-27", "text": "Angel Sweet Gelato is a welcome treat on a hot day. It sits in a small strip in the middle of Mesa Riverview, but if you can find it (west of Logan's), it's worth a stop.\n\nThe selection of flavors is large, including a dozen dairy-free fruit flavors that aren't quite as decadent as the dairy gelatos in the left-hand case. I've tried the lemon and all the berry flavors, and haven't found anything that wasn't delicious. The prices are reasonable, and you can order sizes from one small scoop to a big box (all unfortunately served in styrofoam).\n\nThere isn't a lot of seating in Angel Sweet, but I've never seen it full. Get a punch card if you live in the area. If you like firemen, this would be a good place to see them hanging out. =)", "type": "review", "business_id": "gb-k4Z17XxuPkUmsevwBYg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "MfbH-4cBh0EXWd7IKEuEhg", "review_id": "QaNWZl78P8pIWtmYqg5ECw", "stars": 4, "date": "2012-05-16", "text": "Last nights To-Go order: \nChar Burger w/avocado. Burger was delicious ~ Yum! \nExtra crispy french fries were perfect!\nPrice was reasonable for a burger of this caliber. \nNo drive-thru\nNo waiters\nStaff very friendly\n\nI WILL BE GOING BACK!!!!", "type": "review", "business_id": "Cr2JNnewX53TYd9w6qw6Jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "qaSppPcuea8OfF2MwvZ9nA", "stars": 4, "date": "2009-12-17", "text": "I have not had better chinese food since moving to Arizona. The restaurant was 3/4 full on a Tuesday night!!! With many Asian people. I thought in this \"recession\" that having a restaurant that packed was a pretty amazing thing. The service was superb. The food was overall yummy. I did not enjoy the greasy wonton chips that are served for free before the meal. My friend really like them though?!?! The hot tea was good. My veggie dish (something with bamboo shoots, mushrooms, green pepper, broccoli, ect.) and steamed rice was good. I ate every single bite. The free dessert (wontons filled with banana and others with plum maybe?) were yummy. The total bill with tax and tip for 2 entrees and 1 soda was $24. I left full and happy.", "type": "review", "business_id": "PNrOTfMmE0CJFV9YwSLzYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qQb4pg5uqvjMOfGPWbIkeQ", "review_id": "ADVoNoduCFQ3Ecz4zJRVyg", "stars": 3, "date": "2011-06-24", "text": "Probably the most overrated place in the Phoenix area. There pizza tastes way too much like their canned tomato sauce and there is always a wait to be seated. \n\nThat being said there food overall is OK. There meat salad and cal-zones are good and the servers are friendly. For all the people out there giving it more than 3 stars: try other pizza places like spinatos, la grande Orange, pizzeria Bianca.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "lmiDCrmas8TxRsbIGZX9Pg", "review_id": "W5AdcbX_qzSYQ5VbwWyJsQ", "stars": 3, "date": "2012-10-24", "text": "Alright, so here is my two cents on Brat Haus. I suggest to steer clear of the brats I tried (Beer Brat & Spicy Thai). I found them a bit dry and bland. I also found the pretzels less than fabulous. I do suggest to try to big, juicy, tasty, meatballs. Much better choice. The outside patio very cool, an open fresh space with plenty of seating and a big ol' wall of funky art. The service was also friendly, and attentive and fair prices. Overall, it's totally worth checking out if you are in the area and in the mood for something different.", "type": "review", "business_id": "PWG28q4JFOc8FiRBjnfCkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3w-JiPus8k-BR5PQ7egDvQ", "review_id": "c15oWoC-EERMpE7iCmAcwQ", "stars": 5, "date": "2010-03-28", "text": "Went here today Sunday about 8:50 and it was crowded but not to bad, about 1/2 hour wait. Im warning you now, dont ask how much longer after you put your name in if they told you how long when you checked in. \n\nAbout 10am is when it really got packed, just about when we got done. I ordered the chicken and waffles and i really liked it. I asked for some butter for my waffle because it didnt come with any and it made the dish perfect for me. The chicken had great flavor and when you take a bite with the waffle and butter and the syrup, heaven. I tried some bites without the butter and it wasnt even close to be the same for me. \nMy grandma got some omellete and she gave me some because she knew she wouldnt finish it and i would order that also. The omelletes are pretty good size but my wifes dish, my sons and mine where not that much food especially for $9. We are use to getting enough food for 2 when you eat at breakfast places and slighty cheaper. Not complaining because it was good but be ready. \nThere was 2 guys sitting next to use and trying to eat there 30 minute food challange. big ass egg plate with bacon and hash browns, they both only made thru about halfway. I would definilty go back and get the same stuff. I also got a lemonade with mint and it was just right. My son really didnt like his reese's pancakes.\nId like to go back and try some of this stuff ham steak w/ gravy, chicken fried steak w/ hashbrowns, bannana pecan caramel french toast", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nK74XYEJBa2Z5OLN5O6HYA", "review_id": "AUCwvenvFqnWcv04yYrL1Q", "stars": 2, "date": "2010-05-21", "text": "On a early Saturday evening, the band was playing the crowd was just starting to meander in. Going further inside in an attempt to avoid the high volume of the band whose audio was piped in throughout the restaurant (I failed) I realized shortly that I must of been missed siting in the middle of the dinning are as the wait staff moved smartly from the kitchen to the front delivering the drinks and food to the patrons. I ask a member of the staff was I sitting in the wrong area and soon service was rendered. \n\nFood, nothing special but it is more of a bar than a restaurant. Although the atmosphere was unique, I do have a question why cameras were in the mens room.", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BtQVxFotHFK3T2FtIrBWmg", "review_id": "MD1FwtNX1SdCsEoSjlw6NA", "stars": 5, "date": "2012-03-18", "text": "Love this location at Gainey Ranch! Great food consistently!", "type": "review", "business_id": "08Z_Zzp8PyEmWWpYurIO-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qK_o6Chm8VakPzeMCurtWA", "review_id": "CD3QORZYdE0UKBrdyylYsQ", "stars": 5, "date": "2013-01-02", "text": "Our server Gary was awesome. Food was amazing...an experience.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "7cVUEyUE_rOT9AXdxfmKWg", "stars": 4, "date": "2010-03-22", "text": "Pupusas?? As a hardcore Mexican food enthusiast I was intrigued by the concept but barely able to figure out how this fascinating dish was pronounced. I am proud to say that I am a HUGE fan of pupusas now. \n\nSalvadoreno popped up in a search of mine to find a low-key, nice Sunday night place to relax and enjoy some food. It definitely was worth the visit to an interesting part of Mesa.\n\nThe restaurant is very similar to a lot of Mexican food restaurants anyone who has lived in Phoenix will be familiar with. One room with several tables and a counter with interestingly-named dishes posted behind it. The waitress was very friendly, but I will say that knowing a little Spanish helped. My girlfriend and I both ordered the Pupusa combo platter, real risky based on other reviews - I know. I went with Pollo and the revuelta mixed with pork, cheese and beans. She had the chicken as well with carne asada. This little dish is fantastic! I think next time I'll just stick with getting two pupusas because I was extremely full and did NOT need to add rice and beans to the mix (although those were good too.)\n\nThe only disappointment was the fact that Independence Day was on the TV in Spanish, but the volume was too far down to hear. I'd love to hear the voice-over actor for Will Smith busting out a \"Bienvenidos a Tierra, P***!\"\n\nOn a more serious note, I look forward to heading back here as soon as possible. I'd love to try the Ceviche, as it's on the Best of Phoenix list, and there are a few other dishes (think breakfast) that looked intriguing.", "type": "review", "business_id": "vxPPpj5jJKO8DtapF5S-NQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "gTCM7qlVrwdml-hFB6aJqQ", "review_id": "lkW5sIbOqiYRQbkpera8dg", "stars": 4, "date": "2010-02-13", "text": "I agree with others that it seems a bit expensive at $15- but that still would not steer me away from going.\n\nFor the first time in about 8 years I found myself at the DBG with some out of town family. Wanting to enjoy the weather (since they had just escaped the cold grey winter of Detroit) the gardens were the perfect spot. The garden is equipped with wide paths and plenty of benches to help the old timers pace themselves. It helps remind us city dwellers of the beauty the desert can have and how unique Phoenix truly is.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "zykk2GqMA_QHVz6lvtQ9Xg", "stars": 2, "date": "2009-04-29", "text": "Wed-Sat, sit at the bar and ask for bartender JOY. She's a GAS!\nGreat spot for a late-afternoon glass of wine with an appetizer. Mostly poor execution from kitchen, excellent service.\n\n--hummus appetizer with sample of olives is great choice\n--crispy plantains with pepper are tasty and fun, crab dipping sauce, not enough crab\n--tuna salad with arugula, uninteresting\n--side salad for ciabatta \"sandwich\" typical Dole bag mix (first visit) was WILTED and nasty. Shame!\n--chicken salad with dried tomatoes and goat cheese; way too much cheese\n\nNow, to Joy. She's a keeper. First visit, we struggled with the proper preparation of a Sapphire martini, but it was primarily the fault of our server's communication skills. Working with machine-made ice (you know, the stuff with all the flecks and shards that water down a proper martini), she primed the ice with a squeeze of lemon, drained, then prepped the glass with vermouth, in and out, then pour the STIRRED Sapphire in, drop twist! Congrats, my lady.\n\nIf you can get past the chick-chosen wallpaper (wrong) and perfect-sphere fake tabletop plants from restoration, the different-height tables mix up the room just right and make it feels shabby chic without the white.\n\nSay hi to Joy. =)", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tVoCVBUg-ubBMLQlX5_SVQ", "review_id": "X_AT29hdvyK8omBxRsfasQ", "stars": 5, "date": "2012-04-09", "text": "We started each morning of our vacation at The Breakfast Club. Everything was so tasty; juices are fresh-squeezed. Menu has quite a variety and portions are very filling It gets busy early. Be sure to give it a try.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "PzeWNJ_hrhDzs8NdcBA06A", "review_id": "62xjol6KYNtMS2gFSmqfaQ", "stars": 5, "date": "2011-08-09", "text": "I had other piercings done here and then went out of state and got my nose pierced with a friend and when i got back I was having problems with it. I went in and talked to them and they changed out the stud for me gave me a discount on the jewelry and were really fun, friendly, professional and very informative. This place is top notch. Won't go to another place for my piercings again! No way! It is very clean, and these guys know their stuff! Really impressed...I could go on and on! I won't get my jewelry anywhere else either...they have a a great variety and if they don't have something you want they order it, easy peasy. Love it!", "type": "review", "business_id": "97Z7j4vH0kfzL10AONi4uA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vE3yvKUayE1WxQPuRB4eEw", "review_id": "PZoYdab9Zd9kfnqjDNh-XA", "stars": 5, "date": "2011-01-06", "text": "The food here is awesome every time I come here we have a great time And the waitress kimberly Couldn't ask for better waitress", "type": "review", "business_id": "5GpvSL1tlAjpgdJKZ5eLpg"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "gW-ukHucTfVCnFCKKxPJzw", "review_id": "d_2huUcM3ie0Zt-0tybnhg", "stars": 4, "date": "2009-01-05", "text": "This has been a long time coming and is one more huge step in the development of Phoenix as an urban center of the United States. \n\nI have a stop three blocks from my house at Central & Thomas. I have ridden from there to Tempe and it only took about 20 minutes to get there. The stops at each station are very quick and efficient. Everyone is in and out and the train is on it's way again. The ride across the lake is a beautiful way to enter Tempe. From there, it's just a short walk to Casey Moore's and all the other spots I enjoy in Tempe.\n\nThe last star is missing from this review because service ends far too early on the weekends. I understand not wanting to deal with the after 2 am crowd, but could we get at least 1:00 am or 1:30 am on the weekends!?", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 5, "useful": 4, "cool": 4}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "Nmw167kEkXLJ7YdE7wWjiQ", "stars": 5, "date": "2009-02-24", "text": "OK, I've decided that other coffee shops sell swill. I think about Dazbog coffee in a dreamy sort of way, like unstressed people think about sex. I mourn often that they open so damn late in the morning. Seriously, I would be there every day... \n\nThe chocolate cappuccino rocks my world and perks me right the hell up, even on the mushiest afternoon. No bitterness, not overly sweet, just blissful- in an I've-just-been-bitch-slapped-by-caffeine sort of way, of course. \n\nOh, and the sandwiches I complained about? Replaced by real deli looking ones in clam-shells. Far more appetizing. But what the hell do I need a sandwich for when I can have a giant red velvet cupcake? \n\nDon't make me break out the voodoo, Dazbog. Just open at 6:00 am like any other coffee shop and we'll be BFFs.", "type": "review", "business_id": "CrBsdxqOjPdnfsDxV89GJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "23iaSkV0K36OetsHnXLoYQ", "review_id": "bT1Pen64fidmeNqm8ELFIQ", "stars": 4, "date": "2011-12-11", "text": "We had a delicious meal with great service. Awesome!", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EIQ8gPTx5L-zXPlYDwWGeg", "review_id": "MLMI9B6j_E6YlcjCUJcG9g", "stars": 5, "date": "2012-10-11", "text": "What's not to love? Herb n Flavors uses local, high quality ingredients, the food tastes GREAT and they are vegetarian, vegan and gluten-free friendly! I especially liked their vegan spinach and artichoke dip! We will definitely be back soon : )", "type": "review", "business_id": "7eUFOcfxuXDdrHGVSp3_9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LKJswnMTubEGjJXFDseHKA", "review_id": "7DvxqVS6o6QRxAFv3wRP0g", "stars": 4, "date": "2011-03-04", "text": "A friend of a friend recommended Lou/Autoplex and I couldn't be happier. Lou provides honest, fast service and is a pleasure to deal with. No runaround, no nonsense, honest auto service. Extremely difficult to find these days... I went to him for a muffler/tailpipe and then later for a catalytic converter and was completely happy with the outcome. Additionally, he pointed out other things that I should see my previous mechanic about that they needed to fix/finish. :)", "type": "review", "business_id": "J7zXaGgQ7U6rWlaUBVEjjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DA_SU_MbfgfalzbktcsBzw", "review_id": "AYHZs0_M8XgoGDU40dewDw", "stars": 5, "date": "2012-03-12", "text": "Excellent New Mexico style food, great hatch green chile.", "type": "review", "business_id": "y6uO4ydAwBHUujfiSktxZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z5QQGDqErjMKD8XtM00s7g", "review_id": "sM0CDlYCfv7Q7K1z2kEN-g", "stars": 3, "date": "2013-01-04", "text": "We have been to this location to buy gear prior to the Fiesta Bowl. Yes, things are way overpriced, but that is the premium one pays for licensed merchandise. One nice thing is that they had a buy one, get one half off deal. Was nice for our large crew. Nice selection of NFL, NBA and MLB gear. Friendly staff, good location. If you feel the need to buy licensed sports gear when you are in the area, worth the trip.", "type": "review", "business_id": "eM0BAZ57RDHdhvXc72O8Pg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FIin1o5cJb8thgJuP8eLCA", "review_id": "khAoUDIebA5CBJzQpQx3DA", "stars": 3, "date": "2011-06-21", "text": "Went here last night with another couple for dinner. The pitcher of margaritas was spot on, the chips were outstanding along with the guacamole and salsa. I ordered the tortilla soup which I ended up sending back cuz to be honest it tasted and looked like a bowl of enchilada sauce. My husband ordered the filet and enchilada which I have to say was cooked perfectly and definitely would order if I ever went back. The other couple ordered the beef short ribs which I didn't taste but they both agreed it was over cooked. Service was great but when I have to send something back which I rarely do I can't give more then 3 stars.", "type": "review", "business_id": "Gy7ERh2GhmAYMZMO48ztBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "df0YRtus3XaN64pzs8iteg", "review_id": "_Q519j_yNQ_RqprvHjSb9Q", "stars": 4, "date": "2011-01-31", "text": "Arizona definitely lack cool spots, but luckily they have The Vig. The venue has a nice patio area--perfect for warmer nights, but the inside tables are fine too. \n\n\nMy friends brought me on a Sunday night where all their bottle wines are 50%off... which is pretty awesome. The service was friendly and the food was legit. Try the \"Good ol' Steak Salad\" and Crabmeat Artichoke dip! \n\nbtw the valet is $3.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "JniV2vR1TZFBCrdTlIOlNQ", "review_id": "hi-Z3DzxW10iOHBGVfzhaw", "stars": 5, "date": "2010-10-22", "text": "I love this location! The food is always great and the service is good. Wi-fi is a plus especially since I am going to school. I come here almost everyday. I recommend this location to everyone.", "type": "review", "business_id": "_pw-OnDpCe9XM0rDVvTUMg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "ca2Sa9Enqg2GlWFQ95p8bw", "review_id": "GQLdJaJQ2b1LKmZmmICMHA", "stars": 4, "date": "2007-12-13", "text": "I am at work today, talking to my co-worker, letting her know that I was going to Taco Bell for lunch. She looked at me disappointed, and said \"I never want to hear that you are gaining weight again...stop eating that!\" She then told me about Sacks....I decided that I would give it a shot. (not that is was any healthier....)\nI wasn't real impressed with the layout of the place, even where it was located. It was getting busy when I walked in...and had no idea what to order. I ended up with the Van Gogh, which was roast beef, dill, alfalfa sprouts, cheese and I subsituted the marble rye for a tomato basil bread. The girl at the counter was really sweet and helpful at helping me pick out what I wanted. \nMy sandwich was really good, and it wasn't just a normal sandwich. I also liked the little cookie that they snuck into my bag. And the fact that they have Stewart's root beer was a nice bonus.\nThe only thing that I could say that was negative is that I left there still smelling the kitchen on my coat. And it wasn't pleasant.", "type": "review", "business_id": "GqtMJxq5-7Xp1ZXXmahLaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6VGodLwjrYPQYq0qxfRyXw", "review_id": "7aCLrfSXrGKdsBb3Ri520A", "stars": 4, "date": "2011-01-25", "text": "we went here for dinner and drinks, and it was awesome. the giant soft pretzels are amazing, buttery, and delicious and are served with a roasted pepper cheese sauce. they are awesome, but get them to share, the butteryness is rich! the prices are reasonable, and the patio is nice to sit out on! even better than the food, service, and prices is the music!! they play an awesome selection of music!!", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "gdLc6dq1NpjHj47WBUNZ_A", "review_id": "jP-z3uJAqR7J6XEcDq8cMA", "stars": 3, "date": "2008-02-10", "text": "ok....first let me say that I grew up in PHX. And we used to go for special occasions to \"Bobby MaGees\" which is where BobbyQ's is now located (says something about the quality of my restaurant experiences as a young fella)...And as cheesy as Bobby McGaees was...i kind of miss the pirate serving me my dinner (and the salad bar in the bathtub).\n\nBut i do like what they have done to the place. Cool interior. Casual but with a nice upscale feel. The patio seemed really nice (didn't sit out here).\n\nWe tried a variety of things. A burger, a pulled pork sandwich, brisket, baby backs etc...\n\nI think the standout were the ribs. VERY good...very tender (but not overcooked), good sauce. I enjoyed every one.Everything else was just ok. Like on par with Chili's (which isn't saying much). \n\nThe sides were pretty tasty. Corn (roasted and then taken off the cob for you) , mashed potatoes, cornbread...all pretty good. \n\nDinner for 4 (2 kids, no booze)...50$.\n\nBut a 5 star place? Maybe in the context of other restaurants in the Dunlap and I-17 areas (next to crazy Mitch's Furniture barn.) But not in the broader context of PHX.\n\nI would definitely go back for ribs...but not a place that will go into the normal rotation.\n\nSide note: Hilarious crowd on a Saturday night. Lots of \"west side\" clubbers...or maybe too old to be clubbers but want to go clubbing (there is a lounge attached).", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "4o7r-QSYhOkxpxRMqpXcCg", "review_id": "zXzuOVGhoXcu0u9iLcYxhg", "stars": 4, "date": "2011-02-26", "text": "My wife and I decided to take a little vaca to celebrate our 13th anniversary and also was the first time that we were traveling with our 5-month old, so you can imagine we were a little apprehensive. \n\nThe resort is absolutely top-notch, the rooms are very spacious, the staff is very courteous, and the facilities are simply superb. Our room overlooked the mountain, and in the morning, it was blissful to sit outside and sip on our cups of joe. \n\nThe rooms have a microwave and a small fridge, something that was invaluable to us to store milk and warm it up for our little one. The spa is simply one of the best in the valley, and even if you don't stay here, I would recommend the spa to anyone. The resort is close to at least 20 golf courses, something that might be important to other golf nuts like me. \n\nSo then why not 5 stars? Simply because they would not extend the check-out time for us by even an hour. The check-out is 11 am and our flight was delayed to 8 pm, so when I requested, I was told VERY NICELY, but firmly that it wasn't going to happen. I've traveled some, and have NEVER been turned down for a late check-out request, ever. \n\nStill, a great place to stay, the facilities are top-notch, the staff is very nice, and we had a wonderful time. Would recommend this to anyone wanting a relaxing, fun experience in the Valley of the Sun. Cheers.", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8qe2c5uRlAkvNFvDriBm1Q", "review_id": "4TQTwp7lAca35ANmw2TD5g", "stars": 3, "date": "2011-06-25", "text": "Thank you, Mobile Yelp App! Without you, I would have been stuck in Phoenix with no idea of where to find Thai food for lunch that was near a Light Rail station in Tempe!\n\nI arrived at Thai Rama about 11:15 AM. On entering, there was no indication of waiting to be served and no one visible from the staff, so I selected a table and sat down. My waitress came to the table and asked if I would be more comfortable at a 2-seat table instead of the 4-seat table I had selected. Since there were about 25 available tables of various size, I declined and told her I was comfortable where I sat. There were 3 other tables active in the restaurant, so I did not anticipate the restaurant needing my 4-top before I was done.\n\nThe waitress set the lunch specials menu on the table and went to get a glass of water. The lunch specials menu had 10 options available, but no Som Tom. I asked the waitress if Som Tom was available and she answered that she did not know what Som Tom was. She reached for a full menu as I explained that Som Tom is green papaya salad. She handed me the menu and directed me to the third page for salads. There, first on the list, Som Tom.\n\nI ordered Som Tom, the yardstick by which I measure every Thai restaurant, 10 spicy (5 makes my nose run, 8 makes my forehead sweat and 10 brings tears to my eyes), leaving off the green beans and shrimp, and jasmine rice. Waitress asked if I wanted anything else to drink, but I said I would stick with water.\n\nAmbience here is pretty plain...and the paper napkins are not of the highest quality. The decor reminded me of a formula-type restaurant like an Applebees or Chili's...with a hispanic flair. I observed the chef as he came out of the kitchen and made a loop around the dining room. As he walked by, I asked in Thai how he was doing. He stopped and replied that the day was starting off slow, but that it would be busy soon enough. Then, he continued back on to the kitchen after wishing me a good day.\n\nAbout 5 minutes later, my papaya salad was brought to the table. Portion size was nice, about 2 1/4 cups. I took a taste and evaluated a 5 spicy. When the waitress came to ask if I needed anything, I asked for more chili and lime. She returned quickly with red chili pepper and sliced lime. I doctored up the order and fell to with a gusto. For the price, adequate. \n\nJasmine rice was about a cup, and not too sticky. The waitress was good about keeping my water glass full...and in Phoenix, that is important!\n\nOn completing my lunch, I sat and waited for the waitress to bring my bill. I saw no one for about 10 minutes, then the chef came out of the kitchen and made another round of the dining room. He asked me (in English) if I enjoyed my salad. I answered in Thai that it was not spicy enough, and I was surprised he was using red chili instead of Thai chili. He chuckled and replied that Thai chili was a little more expensive. I asked for my check and he said he would send the waitress out.\n\nFor the convenience, outstanding! For the next experience, I will be sure the chef sees me before I place my order. For the wait on the bill, a little too long.", "type": "review", "business_id": "1621ir5mjVgbHwxCbMAEjg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_OLBq0aZR7K-UdPCrByatg", "review_id": "DCCqJzKnPARsxymujSUkAA", "stars": 5, "date": "2010-07-25", "text": "Awesome country club. Great new remodled gym, heated Olympic pool for year round use. Love the family like atmosphere, plenty of planned family events/pool parties. \n\nOnly complaint, wish members who didn't pay for the monthy tennis membership could still rent a court on a need by need basis. Regardless courts are top notch, great facilities and friendly staff.", "type": "review", "business_id": "8oxnPoOS5wQzhl5LLOm7ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9UxkYlsD0cnziYN--O8xug", "review_id": "RbAdrppz5Q_zwLsd9FYYaw", "stars": 4, "date": "2009-11-16", "text": "We are lucky enough to live basically right accross the street. \n\nThe food is great. Love the thin crust pizzas and the sweet potato fries. They grow a lot of their own veggies. They seasonally sell dates at the farmstand that are GREAT. \n\nYou get your food free on your birthday.\n\nGets very crowded on the weekends!\n\nthe dessert is just OK, but the shakes are great!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KSTOdz0lSFCkqBSRNwjERA", "review_id": "tQ-y8TbqKTvM6WPgqADe4A", "stars": 5, "date": "2010-07-18", "text": "This is probably the sweet I crave the most! Salted Butter Caramel! Yummmm! When I cant make it up to Scottsdale, I stop by my local Whole Foods in Chandler and pick up a pint from the freezer section and it is just as good.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "Rx5HkApX1eXcNYX4_AvPMA", "stars": 5, "date": "2012-12-10", "text": "This was the first real ballet I have ever been to, and I was so excited it was the Nutcracker! I have been wanting to see the Nutcracker for years. \n\nThanks to Lindsey and Yelp, I had the opportunity to go and the performance was just stunning. When I walked in, I noticed the lobby was beautifully decorated, a gentleman reading a story to children and a ballet dancer posing for pictures. The bartenders we bought our drinks from, was very friendly and accomodating. \n\nI can't say enough about how beautiful the performance was from the dancers, the sets, the costumes, etc. Just incredible. I may just take my daughter to see it with me this season....", "type": "review", "business_id": "X25CYzSxzCgk2nO3DkrgdA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "u51Y4YnhAbWn0nghijc2dw", "review_id": "Qfz2HwpS3tdHOlwBlhZNrw", "stars": 3, "date": "2012-02-25", "text": "The server could have been better. She spilled a coke on my lap. This made me late for my movie. The wait was so-so however the food was cooked to my liking. I will go back.", "type": "review", "business_id": "txCJurIIrE9ZoHu3gZUvnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zgp9T6IOVFOozrWDw_mUGQ", "review_id": "iHw39WDbIi5qgurOkNNiWA", "stars": 1, "date": "2011-08-01", "text": "Still quite poor both in service and food. maybe I made a mistake and ordered Sichuan Gong Bao ji ding for what seemed like people from canton district. Unfortunately to get the good service U have to speak Mandarin/Cantonese. I do speak a smattering but try not to use it as I never feel confident about the intonation. \n\nThe dish came out with zichini and bell peppers (what!??) Where is the peanuts the dried fried red peppers and the large pieces of scallion. On pointing this out all I got was \" Oh you like peanuts.. ok I will put some on\" and she then proceeded to get some peanuts and sprinkle it on the chicken.\n\nWell at that point I was happy that atleast the chicken pieces were present else she would probably end up sprinkling raw chicken pieces on it like the raw peanuts she dumped on top of the food. \n\nWell then I spoke a few chinese words and the scowl turned into a smile and she then became a bit more friendlier. \n\nUnfortunately I do not condone this type of behavior. It is all in poor taste...", "type": "review", "business_id": "8PYmv83XaJTioz5_A-SVxA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ND95DgvN7ba8MabfXE3lsw", "review_id": "omMDENP3jXFF_lJ5UI5Rog", "stars": 3, "date": "2010-12-28", "text": "I had a hankering for raw fish today and decided to give Moto a try. Overall I was pleased.\n\nThe menu had a wide variety of tempting Asian treats but I was here for fish, so I ordered the sashimi combo with a bowl of Miso.\n\nThe soup was a bit odd. It seemed to be normal Miso soup with some shredded cabbage tossed in. The cabbage added a texture that I didn't really want but it was easy to eat around it.\n\nThe presentation of the sashimi was interesting. I had a pinwheel of fishy goodness with yellowtail, smoked salmon and tuna. The fish tasted quite fresh and the portions were generous.\n\nWhen I need a sushi fix for lunch I'll be returning to Moto.", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "y7yBnfbPxZJ_L93tnxMP3g", "stars": 2, "date": "2011-07-28", "text": "Was extremely psyched to try Lobby's, considering all of the great reviews, but I was sadly disappointed with the results. I'm a freak for Chili burgers (good ones are very difficult to find) and The Lobby's Chili burger was fairly dull, featured Cinci style Chili (BLAH) and like. some sort of cheese whiz kinda crap. Boo. Also ordered fries, and a Chicago dog.. the Chicago dog was overpriced and forgettable, and the crinkle cut fries were reminiscent of Del Taco's.. which isn't exactly a bad thing, but considering that Lobby's is supposed to be a tasty, quality burger place, frozen crinkle fries are kind of a half assed approach.. ALSO the amount of salt on the fries was enough to invoke a stroke! :x Finally whoever dude was that handed me my bag of food was all like ZIPPY DOO I GAVE YOU A CUP OF FRENCH FRY SAUCE.. There were two orders of fries.. one cup of sauce.. which was just basic secret sauce.. not super great... secret sauce, to boot.. Thanks bro, but I don't need any secret sauce favors.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "9VmTOyq01oIUk5zuxOj1GA", "review_id": "9l7FzgtZobP81lMwEQy4AA", "stars": 5, "date": "2012-10-25", "text": "Great service", "type": "review", "business_id": "Hf_MFIPi7ZiIWDQodJMzwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "8-mw_aotUGmP0k0s6QKwOA", "review_id": "qtOMqRS8K03QTisX-2ddYQ", "stars": 5, "date": "2012-05-25", "text": "My favorite Starbucks in Mesa. It's not even the closest one to my home, but worth the experience. GREAT staff.", "type": "review", "business_id": "gMY_3RkmK2eeD9SHlBKfCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F8C1lM853UmUed3jb7j-_g", "review_id": "TUjdm0FLco2-nGS-UVryvg", "stars": 3, "date": "2010-11-03", "text": "I love this place! Great flavors, love the tiny gummy bear toppings.\n\nOne thing I don't like is the inconsistent hours. One day they'll be open at 8, the next time they close at 7:30. When our yogurt craving hits, we'd love to patronize Woody's, but never know if they're going to be open.\n\nI tried over and over to call one night, and the phone was just constantly busy. A little frustrating!\n\nI do enjoy their yogurt, but with the weird hours, and so-so feel from the staff it's hard to give them more than 3 stars.", "type": "review", "business_id": "T4VsuYbgEqp1n_FghmFg2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vKs0r5yZhfJYdBSd0J1a3Q", "review_id": "D_pEME20C-srxu-D8Se14A", "stars": 1, "date": "2012-08-26", "text": "First, I hope La Fonda management reads these reviews and takes steps to improve their restaurant. Second, we miss the bloody mary bar too. Hubby & I visited LF a few weeks ago on a Saturday night for dinner. We asked the waitress a general question about a beer and she made something up that was ridiculously wrong. Okay, she doesn't know beer. We liked the chips & salsa, it was a good start, then I took a sip of my water. What the? I know what Tempe tap water tastes like, but this was weird. The aftertaste made me cringe, I couldn't drink it, even with a slice of lemon in it, maybe it was the ice. Hubby ordered chicken enchiladas, which he orders practically everywhere, and it was so bad he didn't finish it. My meal was not memorable either. I wanted to love this place, or at least like it. We walked out of there terribly disappointed, I doubt we'll go back.", "type": "review", "business_id": "yv9gVqydta-y8NHQQ3XPRw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "MqSH98OjzTqj6J0FyN9YUA", "stars": 3, "date": "2007-06-29", "text": "This is a nothing but pies place...so I was expecting a little bit more oomph...\n\nDispointing small selection of pie by the slices...also you gotta put in special order ahead of time for the more interesting stuff like Italian Ricotta. \n\nI was going to order something with berries, but the stuff I saw in the case was just runny and wet looking...so I ended up with a black-bottom pie...I really liked the flaky crust and the filling wasn't bad except for the fact that it did taste a bit over refrigerated. \n\nA minor gripe is the airpot coffee...not freshly brewed...despite the espresso machine clearly visibile behind the counter.\n\nThe pies are just over $4 per slice and ~$20 per pie.", "type": "review", "business_id": "Tmzzn7JyCoMgeb-IYRNlGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "80PHOfM8KOBb7xEQN4C0lg", "review_id": "Cluf-ijd2Ubr0hoVjLXoSQ", "stars": 1, "date": "2010-08-21", "text": "I'd say I've been to the Clubhouse a few times a year over the past five years or so. Does that make me the most knowledgeable person on the venue? By all means, no. But, there are some very common themes among the shows I've seen here, even though the artists were different genres, different, crowds, and even different times of year. \n\nThe sound quality is terrible. The last three bands that I have seen there (and have seen in other venues as well) all complained that they couldn't get the sound right on their monitors or in the house. To me, that's a major turn off, if the band isn't happy with their sound, are they going to be very motivated to play? Maybe it's a slighted observation, but it seems that the only bands that return to this venue, are the ones that play music, where the sound quality isn't...let's say \"sacrificed or as important\" (metal, hardcore, thrasher, hip-hop, whatever you call it). \n\nThe venue is also hot. I don't read the reviews of others, before I review a location, because I don't want my opinions to be skewed, but I noticed someone said, \"don't wear pants,\" honestly, that's a really good tip. The last show I saw here was in June. I know, it's Phoenix, in the summer, suck it up. But when you exit the venue and it is noticeably and significantly \"cooler\" than inside the venue, we've got issues, can they not afford to run the a/c? \n\nThe answer to that question is, maybe not. The bar is understaffed, and patrons seem to be lined up 3+ deep, all around. Sometimes you've got to spend money to make money. Hire more bartenders, customers get served faster, thus allowing them more time to consume the beverage and purchase more. That means you can sell more, which means you will make more money! What a concept. \n\nHate to just destroy a business, but hopefully they will heed the feedback constructively. Until then, remember: if you've always wanted to hear the artist you are going to see in a low-fi format, here's your chance, if you have always wanted to forgo wearing those pantaloons, I support you, and finally, you should craft a clever way to hide a flask, since you won't get served, although this might be difficult sans bottoms.", "type": "review", "business_id": "l3yL2rQ6PoFBQ06RLczn9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tePGwo_ZH1Hu9bkCNhMJmw", "review_id": "nOksR3WGXn8iuZwTyUX9qw", "stars": 3, "date": "2008-07-14", "text": "I liked the tortillas: handmade, rich and salty. I thought the food was decent. I thought service was okay. I am not new to Mexican food, I know what I want: when I say I want cheese and cilantro and tomatillo salsa, please give it to me. They charged me and extra dollar for had smattering of queso fresca. Boo. I liked the mango-pineapple aqua, super sweet and clean flavor. I would go back, maybe.", "type": "review", "business_id": "TbaAnzOTX2-boTbAp3e8Qw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OpUXG69nP4YjlEZDlkdVcQ", "review_id": "dY7pGUx7LbbRQYwt9xGawQ", "stars": 2, "date": "2009-01-04", "text": "Back from holiday and had some amazing soups that made me reflect back on my experience here. I have to preface this review with that the owner here is quite lovely and I'm sure has the best intentions, but unfortunately the soup was sorely lacking. As a proponent of organics, I had my hopes way too high. Well, first of all it was a bit confusing if we were to order at the counter from a very smudged, unreadable chalk board or if we were to be seated. The owner appeared from the kitchen and said to have a seat eliminating our initial confusion. To keep this review to the point, we ordered a smoothie, bland. A frittata, very small and actually strange as if it might have been cooked in the microwave, need I say more. Two bowls of soup, one was a bean with kale, unfortunately the beans were not thoroughly cooked and the flavor was not allowed to develop. The other a red pepper concoction, that another diner suggested, was one dimensional and needed copious amounts of help sprinkled with some love. \nWhen paying these boutique prices one expects and should get a better quality, culinary creation. These soups needed proper development and herbal infusions that the kitchen obviously lacks. I would like to offer a suggestion that may help her, so she can spend more time with the soup prep and less time running around the table up front, and that is to consider a different style of service. The place is so small that she could have customers order from the chalkboard, if readable, and then deliver the orders. I wish her the best in her endeavor.", "type": "review", "business_id": "E0fZHHInMb6xscHDrPlh4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QiLOh5KHp81eiju-n-z1Ng", "review_id": "Dv9iSQe9s_kn5uuhy0iM_w", "stars": 1, "date": "2012-12-29", "text": "Not that any SBUX is worth going out of your way for, but this one is worth skipping. The service I've experienced each time I've been is pretty dang poor and the drinks always seem quite cold.", "type": "review", "business_id": "QIHyWCBG3ftvXbGdHQKdHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DjMYfLoL9KsTIcvOMxwkhg", "review_id": "Cu6EG_rAd25OjCGzRCPxMg", "stars": 5, "date": "2010-04-08", "text": "The food was flavorful and plenty of it. Eating with only your fingers is quite fun - make your momma proud. My girlfriend won the best dish of the night - lentils and chicken and cabage/carrots. It all had kind of sweetish/bitterish/spicy flavor. I had the lamb and jalape\u00f1o dish, which was kind of greasy. You eat with your fingers and can scoop up the food with the bread they give you - a tartish type crepe, which goes well with the food. I'd be happy to go back and try something different. If you are used to frozen pizzas and Burger King, you might want to stick with that as this experience might bit be as enjoyable as those who are more open to what they consume.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "usQTOj7LQ9v0Fl98gRa3Iw", "review_id": "Jf3NgqescF1ZtQpH4vR-Nw", "stars": 4, "date": "2011-01-05", "text": "Thank you Yelp for my first opportunity to enjoy Gammage.\n\nImpressive architecture and design (it is also mostly functional)! \nThe seats are roomier than expected and the rows have just enough room between them to allow people to pass relatively easily in front of you without having to stand up to let them through.[Relative to US Airways Center seats which outside of Lexus Club and courtside seats are several inches narrower than the ones at Gammage and you have to stand up every time someone needs to pass.]\nHaving the room to pass easily is nice, especially if you are seated in the middle of the auditorium, since you have to pass in front of at least 30 people just to get to your seat if your, say, running late or need to escape to the restroom. \nThis is also a negative especially if you are the crowd-fearing or clostrophobic type, there are not good \"outs\" from the center. \n\nI think it is wonderful to have a location that hosts wonderful Broadway performances and a variety of other artistic entertainment/performances.", "type": "review", "business_id": "ohxd8La86GdC_3vgwBWLHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "upssaszVG_egJVRKBU5Dzg", "review_id": "dMVOvh4ipz3VV_jRf-qZ9w", "stars": 5, "date": "2011-04-05", "text": "I honestly have only positive things to say about Postino's since every one of my visits here has been very pleasant. From the valet who is running his ass off to the food and everything in between, this place does it all right! If you go here hungry, you should know that your options are basically a panini, a salad or some bruschetta. I've had a little bit of everything and for the value and quality you can't go wrong the the bruschetta. I recently determined my favorite to be the ricotta, dates and pistachio but a close second is the salami and pesto.\n\nWine by the glass can be a bit steep so if you're planning to stay for a bit and can agree on a style with your company, you might be better off getting a bottle. A bottle is pretty much 3x the price of a glass so you end up getting 1 1/2 glasses extra. Bonus!\n\nSomeday, I'll actually take advantage of their $20 deal for wine and bruschetta!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "wdtoa9VgowEdiYudN8T1YQ", "review_id": "s2NkuLh0UBmCvHvLwJFBPQ", "stars": 4, "date": "2011-01-01", "text": "I'm going to stop being such a taker, and give for once! I use Yelp along with other reputable websites to help make my dining, travel and shopping decisions and I never take the time to give back!! I know, I know....awful. I'm turning over a new leaf! Here is my first Yelp. Please don't judge. It's my first time.... Okay, here goes. So, I went to Matt's for the first time a few days ago....\n\nFood- Amazing. Best pancakes ever! I'm not sure what the secret ingredient is but they are beyond good! Fluffy little cakes of love. I also tasted the butter burger. Very, very, yummy. If you decide to dine here make sure you try the bacon. I don't think I've ever tasted anything like it. Sweet, savory and cooked just right.\n\nThe building is very small, the wait is extra long and make sure you don't overindulge on the free refills of ice tea because there is NO BATHROOM!! The seating is cramped and the service is rushed, but the food is worth dealing with Matt's shortcomings.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "LYc0qoZTS8L0U_NvIaYwYA", "stars": 4, "date": "2010-04-05", "text": "over 20 visits - and no rvw? wow - i must be loosing it.\n\nWhen I walk through the beautiful shoping district of Kierland, it is always fun to window shop - ok gotta go in! - and touch, feel, ooo, ya - and dream about having my home decorated with all thier furnishings... as soon as i win the lottery.. or something... almost there. (maybe i should stop travelling......... nah...)\n\nanyWHO - you CAN find some GR8 little snags: from candles, to books, vases, martini glasses (always a must, since somehow - not sure why, mine keep getting smashed - maybe goes hand-in-hand with vodka + consumption + beautiful galsses = tipsy, topsy, turvy - crash)\n\nI always enjoy looking, (and usually grabbing something i \"need\" ya, right) and thinking about where or what I might get for a gift - naaaaaaah - for me! next...", "type": "review", "business_id": "m7uxAxL9L3kuB8XWkoveHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "scxmg3Pu_jjpXSyFWH8-Cg", "review_id": "bFC3YitoCJgUuXAVVDMkXQ", "stars": 5, "date": "2010-03-15", "text": "we went back here again this past weekend...actually we went there 3 more times this past weekend alone! we couldn't resist the awesome service and great prices...and great live music. this is definately going to be one of our \"regular joints.\" if you like the country...country girls....and good old rowdy shit..then stop by and check it out for yourself. i bet you will like this place. \nthere is a large dance floor for some shit kickin' ...about 3 pool tables..big buck hunter and an outdoor area for smokin and boozin and dart throwin'. i love this place. this is what toby keith should have been singing about...seriously!", "type": "review", "business_id": "glpdHF7XlpUQUs1Jpxv4SQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "UE1UIi95jSk5tAzOdtnjIA", "review_id": "IhVNA9hUjtdk1zufzziNug", "stars": 1, "date": "2008-07-16", "text": "How does this restaurant generate so many 4 and 5 star ratings? \n\nI know it was on the food channel, but honestly the food was sub-par. Maybe it was just an off day, but I have a feeling it wasn't. The prices were not outrageous, but it wasn't cheap either. The atmosphere was nice, if very cafeteria like.\n\nBut the food was way way too \"greasy.\" And bland. And my stomach now aches after eating there....", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "X_nBRl_nxue-SCfo5c9exg", "stars": 4, "date": "2007-08-28", "text": "If you're the type that are into choices, then Gelato 64 has got your number. Their number stands for the 64 flavors of gelato that you can choose from. When I was there they seem to be a couple of flavor short since several of the slot in the gelato case was empty...but anything approaching 60 is already a ridiculously wide range of selection.\n\nThe gelato was well flavored and had a nice smooth texture. Extra star for range of flavor.", "type": "review", "business_id": "r_0k2yqAo1Z4tg_IgXr7Jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d0nD0TzD_NvzQLHE6zL-1g", "review_id": "ujwc8ggO33vvhMJwAE0bHw", "stars": 3, "date": "2008-10-11", "text": "My boyfriend and I were in Arizona on vacation for a wedding. The food was better than the average deli and they give you a free cookie with your order too. It is a shame they don't have these in malls near me. Although I read on their website that they have one at the Galleria which would have been nice when I lived in Davis, CA for college. \n\nShopping really works up an appetite and this satisfied it well. and light enough not to ruin a dinner as we had a wedding to attend later that evening.", "type": "review", "business_id": "2FqG3fBB2XffmRTnc6YI_w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "-qeKy3NyksHZlmIxmaBI1A", "stars": 4, "date": "2011-04-29", "text": "I stopped in one afternoon and ordered some baba and a chicken salad. The baba was good, and served with a ton of pita quarters. The salad was good too, except that most of the chicken was burnt. \nThe cashier was pleasant and must be related to the guys doing the cooking. They were giving her a hard time about a male customer who I guessed must come in a lot and she was giving it right back to them! Kinda funny. I will definitely be back for takeout and lunch again while shopping. I will go for the gyro salad next time though.", "type": "review", "business_id": "WYj43z0qmlKklhcvV75mwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "0Bhq-3T6e0L7WqfdE1X2wA", "stars": 4, "date": "2011-05-26", "text": "This is the best mall in Arizona. Lots of high end shops and nice restaurants. Except during the holidays, plenty of covered parking.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zsBmBMbZhPuWKueEyKoI1Q", "review_id": "lkXM8gxdU1qQVCHggDfsyQ", "stars": 4, "date": "2009-02-04", "text": "I didn't pay much attention to this place for several years. Passed it many times, just didn't catch my eye enough for me to remember it on those nights when I desperately try to think of some new place to try.\n\nI've since been here twice (over about a 3 month time span), and I really love it. First time, had great food (all server recommendations - although he disappeared prior to arrival of meal, seemed to be doing side work so he could bolt out). Great although somewhat minimal service for the second half of our dinner, former waiter did not say he was leaving, we sat for a little while before someone new arrived. Ambiance and company made it barely noticeable. Personally, I don't care as long as I get good service. We're not family, I don't need an apology or heartfelt goodbye. The garlic app - what it is called? - your server will know, it's probably their most popular dish, it is AMAZING. Order this unless you hate garlic or are on a diet. I consider myself a good cook, but I would leave this up to Richardsons. As I write this I realize the whole reason for my review is that dish, because I don't remember anything else I had. Stopped by for drinks the second time, ended up ordering a pizza, expected little since it didn't mesh with the menu, it was really quite good. Bartender was great (I think he was actually the take-over waiter from my previous visit). Very cozy place, if you come later or are are willing to wait, you can get a private table in a cave like nook. The place is not cheap, comparative to other finer dining establishments. Overall, a lively but romantic place with character, good food, and decent service.", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6XDBxbqC3kD5xvQMCkwhNQ", "review_id": "SWHnJvsZVqBJzDSGS0YwLw", "stars": 4, "date": "2010-12-28", "text": "Yum!\nSteaks were great! Corn bread\n\nlarge portions\ndefinitely worth the price!", "type": "review", "business_id": "7U8TYNW4Mvx6m3zexsO0sg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "44FZYP4fQbeAimA818oHtw", "review_id": "zTr5W2aHhGuY7FC4bFflbQ", "stars": 3, "date": "2012-06-23", "text": "I much prefer drinking here to eating here. Sometimes it is the only place close and I decide to order food and I always regret it. I'm a vegetarian so maybe I'm too limited and the burgers are awesome So stick to traditional fare. The salads my daughter and I had yesterday were pathetic", "type": "review", "business_id": "aHGcI-KGitnGRco_D_I9Ag"} +{"votes": {"funny": 4, "useful": 5, "cool": 4}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "oEz2MUkfQtaD1KvYuyWV3Q", "stars": 5, "date": "2011-11-13", "text": "I found this little hot spot on Yelp and used my phone to navigate me there; I wouldn't have found it otherwise. This small establishment is hidden in a neighborhood right off of Historic Downtown Chandler. It's a quaint little diner with modest d\u00e9cor. I felt very comfortable there and the service was fast and friendly. As I looked over the menu the first thing I saw was the Morning Monte and havarti cheese as one of the ingredients. Cheddar isn't better; it's all about havarti folks! I needn't look further; I knew that's what I was having. Hawaiian bread French toast, bacon, turkey, egg and the havarti - absolutely delicious! Can't wait to come back and bring everyone I know.", "type": "review", "business_id": "kfscAJnLVf6J2uEte7g-5A"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "RIAkOx7jS_IYdF0ZO0Hc_Q", "review_id": "gQoXRk2oRLxQWDf1i7rnOQ", "stars": 2, "date": "2011-06-24", "text": "It seems like there is not as much value for your dollar at Gold Medal. We had been there since the new school opened but decided to move on. We got a 'can't we get you to stay' call which felt like desperation on their part. My daughter enjoyed her lessons but her favorite teacher left (as most do) and the cost was not worth it anymore. I would not recommend them to my friends.", "type": "review", "business_id": "GVg4GHHRblwY1MFlV1ubAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "b7KiP9ZNOyfaLgS24dAcdQ", "stars": 3, "date": "2012-03-01", "text": "If I could give this 2.5 stars, I would. But that's because I've been to Joe's Real BBQ, and so I know how good BBQ can be.\n\nFamous Dave's is fine. There are two of them I know of, and I've been to both. They're both fine.\n\nWe visited this one, near Chandler mall, for lunch. We ordered off the lunch menu. My wife and I both had the brisket sandwich. I had the Wilbur beans, she had fries. It was fine. Not great, but OK.\n\nThe brisket meat itself did not seem to be smoked. At all. Meat has a certain look and taste when it has been smoked, and this just didn't have it. Frankly, the meat seemed sorta pale...as if it had been boiled instead of grilled or smoked. And either the meat or the sauce was excessively salty. It wasn't severe (or I would have returned it), but it was noticeable. Salt should enhance flavor, not stand out as a major flavor.\n\nAnd a note about the sauce. I examined one of their 'for sale' bottles (you can buy their sauce to take home). Did they use molasses or brown sugar, as most self-respecting BBQ chefs would? No. High fructose corn syrup. Yuck. Besides that stuff being poison to your pancreas, it's just \"not right\". That's not how BBQ is done.\n\nAnyway, Famous Dave's is really nothing special. The BBQ is \"OK\", but not very authentic. Given the choice I would take Joe's, hands-down. But if you want some BBQ, and are nowhere near Joe's, this will do. Beats the heck out of Tom's BBQ, that's for sure (see my review of Tom's...truly awful). And the beans and fries are pretty good.", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "wereg_Qjqym6PCN8ZyDZZw", "stars": 4, "date": "2008-11-25", "text": "I've been here twice now for the lunch buffet and the second time I even brought a friend who was a foodie and both times it was great. They have a great selection of dips on the buffet, a few salads and many warm entrees to choose from. \n\nI recommend taking a little bit of everything and if you follow my rule, you won't be disappointed. Everything is absolutely delicious and you'll have fun guessing the spices in the various dishes. \n\nIf you're in the mood for some tasty middle eastern food, I would really recommend it. It's a little short on ambiance, but with flavors like that, who's looking anywhere but their plate?", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onCVo3jNuKsSk8HcpDE1sQ", "review_id": "WE3QQvXUohL0HVxrUjmsJw", "stars": 5, "date": "2012-02-25", "text": "The mall of malls, for sure! So many designer boutiques, so little time! On this trip, I was given the utmost in attention from the fabulous women at the Fossil store....what fun they were! I enjoyed a smoked chicken & black bean salad @ Z Tejas next and the service was excellent. I then perused the new styles at Aqua before finding a great pair of shades at Solstice = shopper's bliss :)\nThis review is a bit late; I visited the center on 1/27/12 - and I'll be back :)", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "4-BhPJwJp6d-XMmo-w1FRw", "review_id": "jWKbfXA2oxlgmZrW0VA02A", "stars": 4, "date": "2009-10-13", "text": "Went there for Dinner on a Friday night and I have to say I'm impressed by the quality of the food and the reasonable prices. There's a great deal of variety and some creative New Mexican dishes. I'd go so far as to say this is the best New Mexican restaurant in the East Valley! Its not super spicy like Los Dos but there's a lot more flavor and you'll still feel the burn.\n\nPro's: The Food and Service\nCon's: Ambiance & decor could use a little jazzing up, location is not ideal", "type": "review", "business_id": "qNoNkF1yJctEs3t40VkX4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SGXahHRReksq3m_Zk9V20w", "review_id": "RMBOYKJ8lCyL39wOycBvCg", "stars": 3, "date": "2010-04-07", "text": "Qdoba is a kicked up version of Chipotle/Kokopellis. You walk up, choose a form of delivery (burrito, nachos, salad, burrito bowl, etc) you get a choice of meat (chicken, steak, etc) then you chose your toppings (different salsas, lettuce, cheese). We all know the drill. I will say one thing Qdoba is much better in taste than Kokopellis and Chipotle.", "type": "review", "business_id": "b9dv7Q0A8XcJ44zzTDJeYw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Ps1Db9zOatoF_76FZNO5CQ", "review_id": "yt_CpzmwoSv3NPGNcHzI-w", "stars": 4, "date": "2008-12-11", "text": "So Wednesday evening I needed milk and cat food. On my way to the store I realized my stomach was growling. Never a good idea to shop on an empty stomach. A while back in The Savvy Shopper rag in the China Grill ad was a little banner about Wok n Stix being a new location. And because of an event that fell apart this week I had a bug to eat something Asian. So I found it and stopped in.\n\nChinese fast food. They also have hamburgers and a few other things. I stuck with something I figured I would like, orange chicken ($7.95). It came reasonably quick, was too hot to eat right away. Most of my Chinese fast food consists of Panda Express and Ming Gee. This was much better, in addition to the onions and bell peppers listed mine had mushrooms, celery, sprouts and some other stuff. Service was on styrofoam with plastic utensils. Even though I was eating in the rice came in a take out box which I thought was sorta weird. I still hate eating out alone but at least I wasn't the only person in the place. Each side of the place had a long upholstered bench with tables and chairs that could be slid along to make up different seating and two tables in the middle.\n\nThere was nobody being served at the front counter when I was finished so I stopped,picked up a menu and talked to the woman there and found out she is an owner. They have had the place for 6 months and are the same family that owns China Grill not far away.", "type": "review", "business_id": "eR_vyBCRhMQKhmHbxFkPVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yov4PgFnEIOimzKdU2wV0g", "review_id": "3eY_MfLha0Sbv4B2IXpqVw", "stars": 4, "date": "2012-01-20", "text": "Excellent selection of unusual but delicious pizzas. my favorite so far include prosciutto pizza and the lamb pizza", "type": "review", "business_id": "13lNc7KSuVHBrUybTR23qw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "nlQUxEm_5GouQdmgG8GXVA", "stars": 5, "date": "2009-10-29", "text": "What an unbelievable night we had at Mastro's City Hall Steakhouse. Everything we ate was top notch, the atmosphere is fun, and the service is spectacular. How many steakhouses play Jim Croce, Beatles, and Beach Boys? It's a very welcome change.\n\nIt's dark, it's sexy, and it's probably the best steakhouse in Arizona. \n\nThe seafood tower featured totally fresh and delicious oysters, crab legs, claws, and huge shrimp. My Kansas City Strip was out of this world and probably the best piece of meat I've had all year. Gorgonzola mac & cheese and sauteed mushrooms were real winners as well. I'm not a dessert person, but the warm butter cake should be illegal it's so good. I was stuffed already when it came to the table, and then I ate all of it. \n\nThe only hiccup all night was our seafood tower was short a shrimp, and when I told the waiter don't worry about it he said ok, and then proceeded to bring us a fourth shrimp on it's own bed of ice. It was a really top notch recovery. This place is absolutely amazing.", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "RPpt_W8DSEpahyXxeRhVrA", "stars": 2, "date": "2012-08-12", "text": "I went here with a friend to use a Groupon for a gel manicure and a spa pedicure. I knew it was a school going into the appointment. My issues with the place are as follows:\n1. The students there were very unprofessional. They talked about their personal lives, talked to each other, and just were generally inappropriate for a business setting. Their supervisor overheard everything and did not say anything. This is pretty disturbing since some of these girls stated that they were going to work at places like Dolce in a few weeks. \n2. The gel manicure was billed as 'unchippable' by the people at this salon, but my friend had one whole nail peel off the day after the manicure and my nails chipped 2 days after. This is especially annoying because it is difficult to remove the polish that remained on my nails, so they just look bad. \n3. The massage was pretty weak. \n4. They don't have enough carts for pedicures, so I had to put my foot up on my 'pedicurist's' lap...that's a bit odd. \n5. It was difficult to make an appointment here. I had to call several times and leave messages and wait for them to call me back. \n\n\nOverall, I would not return to this place, even at the cheap price. I guess you get what you pay for.", "type": "review", "business_id": "ViLOy7fr21PIVGEzYPyK4w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "WrYEb2x-JkLZLfLimP5csg", "stars": 3, "date": "2012-03-05", "text": "The beer list here is GREAT. Seriously. If you like craft brews, go here.\n\nThe food is meh. There are a lot of really interesting combinations, but the execution wasnt the best. The service is also meh. All 8 of us had to be wary when our waitress came around to tell her that so and so needed something too. She would take one or two orders at a time. \n\nSeriously though, the beer is awesome.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ZdDmxmGVhHHI4PzmVdTzxQ", "review_id": "N9cAK1CCCYdgicvD7c8Ywg", "stars": 3, "date": "2009-08-02", "text": "Kabuki was great....A lovely little middle-of-the-afternoon oasis found in Tempe Marketplace! I scoped out the menu had some some sushi for happy hour, including some rare beef sashimi, some unusual and unique rolls and complimentary edamame. Although I did not dine here for a full meal, I feel justified in expressing my enjoyment of their happy hour. The tiny bar was cozy and the service was good. The happy hour prices were enticing and I would definitely return for it:) Although for my personal taste the ambiance of Kabuki seemed a little too corporate for me I definitely would return for their happy hour and maybe to sample other menu items. I will keep you posted on my next visit:)", "type": "review", "business_id": "AhpzPZH3b0PGT9mVoLCQDg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_jjIaczpcVDpHlH6l334rQ", "review_id": "cpJejPGKMujmhyBbRSn1fQ", "stars": 4, "date": "2008-10-19", "text": "Ok...this place is *REALLY* outdated...HOWEVER, the food was great. The Veggie plate was gone fast (barely got to taste any of it ... wife loved it) and my Gryo plate was very good as well. This is the ONLY other place that I've been to where the Felafel was great! I've been to only one other place...", "type": "review", "business_id": "Aicnm12Zped8nQFXyRRFvw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "P0Ki-xij91UU-_Hk4t6tGA", "review_id": "-Ieb92HyWYckqlJTAuf_GA", "stars": 1, "date": "2012-11-11", "text": "My wife and I live around the corner, hadn't eaten here in a few months. We got food for take out, Mongolian beef,kung po chicken,pad Thai noodles. Mongolian beef, there were more white onions then scallions and it was very bland. Kung po chicken,lots of white meat chicken the whole dish only had one peanut and the taste of this dish was non existent. Very very Blah... Pad Thai noodles,the dish was dry and came out of the container in one giant clump. It tasted like plain noodles, i was glad I had peanut sauce in the fridge to,add to it. Then it was edible .... We will not be going back to G@S.. Very disappointed !!!! From now on it will be Jade palace on 92nd street. For take out Asian !!!! Do yourself a favor go elsewhere !!!!", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 6, "useful": 7, "cool": 6}, "user_id": "s8fJCSltyub39Q1dqzjb6g", "review_id": "zZy22sccki71427oAtzKhw", "stars": 3, "date": "2009-12-23", "text": "I know I enjoy food when I think about how good it was later..like days and days later. It has been about a week and I am still craving the Mac n' Cheese I inhaled during my Happy Hour visit. The Macaroni was cooked to perfection, the cheese was the perfect consistency and texture, and the addition of spicy sausage really set the dish apart. \n\nWhile the service was impossibly slow, every waiter I came in contact with was extremely nice. But nice or not, I was sucking on melted ice for half the night while I waited to get my drinks refilled. No bueno. \n\nThe atmosphere was relaxing and casual, and the bathrooms were fabulous!! Well lit, great aroma, and my choice between cloth hand towels or paper. The bathroom had well placed mirrors which made the space feel big and clean.\n\nI will definitely come back, but next time I might sneak in my own drink.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "1ADvDGbYb3DVakds4jCAnw", "review_id": "X4Vhbp78ZRwiRjZU14GaXg", "stars": 2, "date": "2010-08-21", "text": "- the location is excellent\n- the food is mediocre, and milder than they advertise\n- the wait staff is polite and bland. At several opportunities, they were missing for more than 5 mins.\n- the bill will be higher than anyone expects\n\nBottom line: don't bother", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "39kwDyJI29y3poToHdCcHQ", "stars": 5, "date": "2011-05-28", "text": "So your going to Scottsdale via Paradise Valley....or your coming from Scottsdale heading east....your stomach is growling but you don't want the usual...then look no further than Jason's Deli. I was in that situation on Friday night and decided to give this locale a try....and I must say I was not disappointed. I had the Smokey Jack Panini with Smoked turkey breast....guacamole....provolone cheese....lettuce...tomato....bacon on the side which I gave to my wife....LOL...since I don't eat red meat....and Russian dressing. However sandwich was made to order and pressed perfectly on the grill....and the flavor was outstanding. They give you a pickle and homemade potato chips on the side....and I also had some lemonade which comes from a fountain with free refills. \n\nI almost missed out on the free Ice Cream....but I seen people walking around with cones of Ice Cream and I had my wife ask was it free. Indeed it was and we both enjoyed a nice Ice Cream cone....mine was chocolate vanilla swirl...and you can also get it in a cup as well. The service was great and the whole place had a real nice neighborhood feel to it.....I look forward to returning here very soon. Eat, Drink, and be Merry my Friends!!!!", "type": "review", "business_id": "732Z5HGLEEBjAgXxfnuXlQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "gC60r2BGT14QGZ8Zbe6ptw", "stars": 4, "date": "2010-03-11", "text": "Large Goodwill location (formally a PetSmart), but dark like a cave. This one is hit or miss... It is clean for a Goodwill (I've seen some pretty dirty ones). Just need to keep checking to find the treasures here.", "type": "review", "business_id": "iLtSto_Tgu2yaj_r_iohAg"} +{"votes": {"funny": 4, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "wFe8lRlC5lmBGpbbJvBdlw", "stars": 4, "date": "2007-01-26", "text": "Sandbar gives us North Scottsdalers another chance at a casual bar on our side of town! Located near Scottsdale Road and Shea, Sandbar has a pretty convenient location and is usually a fun spot to go out dancing and drinking. The DJ is either hit or miss; sometimes he plays awesome music and everyone's on the dance floor and other times the dance floor is completely empty because the music ain't so great. \nI've always wondered if anyone has become so intoxicated while at Sandbar that they have fallen into the little pond outside. Unfortunately, I have never seen this happen.\nBut I have woken up in the morning with a Sandbar server schedule in my pocket with no recollection as to why.\nMy friend was dancing so crazy one night on one of the platforms, that when she jumped off, she sprained her ankle. \nSee? Sandbar's a really good time.\nOh and if you get hungry, there's a little hot dog cart out front, so you can eat a wiener, drink and be merry.", "type": "review", "business_id": "hsOnzcy8mFbUvIWFC1agoQ"} +{"votes": {"funny": 7, "useful": 8, "cool": 6}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "kfJC_crlXCUQ-UgXNR04Ew", "stars": 4, "date": "2010-09-16", "text": "My name is Amy and I'm a comedian. (\"Hi, AMY!\") I perform here about once a month and it's one of my favorite spots to make people laugh.\nThis is a bar. Behind an ice rink. The wall behind the bar is the plexiglass of the ice rink. One time, while I was on stage, a puck hit the glass. Freaked me the you-know-what out. I thought I'd been shot. But I hadn't. Lucky for you.\nI don't drink, so I have no idea about specials, what's on tap, blah blah blah.\nI can tell you this: The service is amazing (and CUTE!) and the place is clean. I judge. I judge you on your bathroom. This bathroom is clean. \nThe comedy show is every Wednesday night. It's free. If you're lucky, you'll see me there. Making people laugh.", "type": "review", "business_id": "yb17xHvhDJthJGS10uhFeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kq4cVcc_g8amBkHe5dJ01A", "review_id": "3BnCZAfr2Dwe5dkxE_cB-g", "stars": 3, "date": "2010-10-14", "text": "I like the review of the whacked waiter... i think he may be still at work at 'Cantina Laredo' cuz i think he served us....... \n\nCalled ahead after a Cardinals game to make sure there was room enough for our party of 10- \n\" No problem \" we were told , come on down. \n\narrived 9:00 ish on a beautiful 80F evening in Scottsdale -stepped across a half empty patio into the spacious Cantina - chilled to an ungodly 60F- \n\nNote to the great state of Arizona : \n\n(the reason that y'all are booming and experiencing sustained in-migration is because people are like lizards--- ( in more ways than one)---they like the sun , they like the heat ... they flee from northern climes to get away from the chill - Don't AC your premises such that it reminds us of Duluth in winter.... we just escaped Duluth in winter and fled south to thaw ) .\n\nwe asked for a spot on the patio and our man immediately declined stating that \" he had already set a table for us inside\"- \n\nupon my wife's insistence that he reevaluatethe patio he disappeared for a moment or two and then reappeared - affirming that the half empty patio was indeed full. \n\nthis puzzled my wife who then surmised that : \n\nA) he wanted our large party in his section -not the patio\n\nB) there would likely be a built in minimum gratuity on the final bill \n ( there was) \n \nafter taking our drink order ,(competently), he returned with salsa and chips. The salsa he described as being of two types \"hot \" or \"regular\"-\nthere were indeed two temperatures -but they appeared to be seperated thermally rather than chemically -?? the same salsa one served at room temperature , one served chilled...???\n\nwhen asked about the best dishes for people who wanted a little kick to their food he replied: \n\" I wouldn't really know , I don't like spicy food\" \n\n????????????????? \n\nDude , can you not at least fake something.... it is after all a Mexican restaurant. If people want spice they go Mexican - if they want bland they seek out a Saskatchewan restaurant - non? \n\nThe meal was salvaged - ( not saved), by a compatriot of our man who hailed from Durango- he spoke knowledgeably about the menu , filled our empty margarita glasses and retreated into the kitchen to assemble , on our behalf , a pepper mole sauce that was truely outstanding.\n\nThe food was uninspired -( there was a Baja Grill of some sort across the parking lot and we wondered if they shared a kitchen...) , the service was poor ( excepting our hombre from Mejico ), and the casa freakishly cold--\n\nTwo stars tops over all but boosted up to three by our amigo from Victoria de Durango", "type": "review", "business_id": "EGiGWZp_zSqdeftiFQ7MbA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Lmgv46LyI1PlLs0KNIfYFQ", "review_id": "Lf3zby7BdwuW0XJ_D05H9w", "stars": 3, "date": "2011-08-15", "text": "Whew! What a hike. Coming from Colorado, though, the relative comparison makes it just a 3. \n\nFirstly, it's definitely treacherous. When we arrived between 730 and 8 on a Saturday morning, there were about four, maybe five firetrucks in the parking area...these rescue/aid teams just camp out there, I think, because of all the doofuses who don't plan accordingly waterwise or overestimate their ability to make this climb. Also, two different areas of the Echo Canyon trail are especially steep and potentially slick, so they've installed some metal railings to help you along there...but only if you've got some gloves or if the temperature is moderate (uhhhh,...that doesn't really happen in Phoenix during the day in summer), because those damn things get hot enough to fry an egg. Also - water, water, water. Bring a LOT, or top off at the start of the trail before you go up (though the water out of that tap attached to the water fountain is about 85 degrees, yuk). \n\nIt was a fun jaunt. The view was worth it - not entirely picturesque as far as nature goes, but it was nice view of the city and surrounding area. If you go, just be wary of the sun/heat, and know that you'll be clambering over and around boulders and such. (If you trip, it's CURTAINS!)", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "GPPHDWEZGjiw777_iTOJ1w", "review_id": "p4Aea4EFNIj6rTmuDRln4g", "stars": 3, "date": "2011-05-22", "text": "My boyfriend and I tried this place out last Saturday. Our total was $24 for 2 burgers, 2 fries, 2 beverages. Not bad for a lunch in Scottsdale. We found the burgers to be just OK tasting. Nothin special to lure us back anytime soon. I was satisfied with portions for $. I think people are used to ridiculous huge meals like the ones served at cheesecake factory which are big enough to feed a family of horses so when they see a normal single portion they feel underwhelmed/cheated. I found the restaurant to be clean and nice enough to sit & enjoy the burger & kill some time before our movie started.", "type": "review", "business_id": "hCtyvahPsEOUb38LKxEQNQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "eA7hkwrrknhxhqs-dOhDYg", "review_id": "mK4zxOOrgdslesi0IcKyrg", "stars": 5, "date": "2010-02-14", "text": "After a year in the Valley, one of my girlfriends took me to Side Bar. I really like the atmosphere. It was sleek yet cozy. The night we went in, it was hopping but not overly crowded. A welcome sight considering much of my first year in the Valley was spent in crowded, pretentious Scottsdale hotspots. \n\nAs I get older, I crave more intimate setting and SideBar fits the bill. Also, I give five stars to any business who goes out of their way to help a good cause. SideBar is just that kind of establishment. If anyone is on Twitter, follow #buzzcation. @SideBarphx has let #buzzcation folks hold a number of networking and fundraising happy hours. It's a cool crew so come out and joing and I commend SideBar for always accomodating this crazy crew of tweeples. :)", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KpC10_UEJuga43WadHCmYw", "review_id": "wa_exNUrfZRlzk8xiqYDxA", "stars": 2, "date": "2012-02-17", "text": "I read all the good reviews of this restaurant , and wanted to try it, as it's right up the street from where I live. I don't think I hit a bad night, it was slow, the service was horrible, they confused our order with the table next to us.\n He put plates of food down and walked off, the order had nothing to do with ours.\nWe tried to get his attention,gave up and took a bite.\nOMG, it was AWFUL,fried fish that tasted so fishy that I couldn't eat it.\nAt that point, the table next to us realized it was their meal , and got up and walked out .\n Finally I got the waiters attention, he took the plates ,gave us the correct meal, and didn't offer to do anything about all of our time he had wasted, let alone the mistake. Our real meal was O.K., I tried the tamales, wasn't blown away,my boyfriend said his steak was so-so. I don't think I would come back again.", "type": "review", "business_id": "_oQN89kF_d97-cWW0iO8_g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "-Dc9up-WyQ6XrYTjmL3GaQ", "review_id": "Y2uoNO428_rn0swSO8UzAA", "stars": 5, "date": "2010-05-04", "text": "I've been a bunch of times for takeout and took a seriously picky foodie friend this past weekend. Everything I've had here has been excellent and I mean, excellent. \n\nIn the past I've had the margherita pizza, eggplant parm and fried calamari. All good. This weekend we had the comp tapenade, beef carpacchio, lasagna and one of the pizzas (can't remember name -- had olives, art hearts, ham and ?). All delicious. The lasagna was so delicate but melded perfectly with the sauce.\n\nMy very particular picky friend LOVED the place. Seriously loved it.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "UrjEdSRi5vry3bQ1NKyLuQ", "review_id": "2XkrLvu5xTfOJIdYFeE0Yg", "stars": 5, "date": "2011-07-18", "text": "As good as it gets. We ate here for a birthday celebration and we were taken away by the great food and service (as usual). We requested the V Lounge and were given a nice corner booth. When we sat down there was a birthday card signed by the employees of the restaurant -- a very nice touch. For appetizers, we had oysters and the (best) crab cakes (anywhere). Steaks and seafood as our main courses paired well with the red cabernet wine. Overall, just incredible. Completely up to par with Eddie V's standards -- comparing to Houston and Austin. My mom forgot her sweater at the booth and a hostess ran out to give it to her. We also got a follow-up phone call the next day asking how everything went. For those special occasions or a fun happy hour, Eddie V's never lets you down! Also, their Banana's Foster is divine! Save room for it or just stuff your face and go to the gym the next day -- delish!", "type": "review", "business_id": "ZhMlXLXuZf5z7lxunHk2ww"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "_7el1cOgnfkNfmZKi277bQ", "review_id": "rbI4SgEjR5_mFD0AAJpL4Q", "stars": 4, "date": "2011-12-08", "text": "Zupas officially opens today! I was invited to their VIP catering event a few days ago and was able to get a sneak peek. \n\nThe soups are very good; I tasted all of them! My favorites are the wild mushroom it is very creamy and has a great flavor. The shrimp and sausage gumbo is very hearty with just a little New Orleans kick! I recommend them both! If you enjoy tomato soup theirs is a tomato basil and it is yummy!. One thing I really liked is that you can taste the soup before you order it! Bonus they have 8 varieties of soup to choose from!\n\nI had the turkey pesto artichoke panini as well it was very good. You can get a 7.99 combo of any 2 items soup, salad, sandwich. By the way it's not 1/2 sizes with that combo either! I got a full panini and full soup.\n\nThe soda bar is nice to you can create your own drinks!\n\nThe ingredients are fresh and the employee's are very friendly. \n\nThey also cater which is a big plus!", "type": "review", "business_id": "0lEp4vISRmOXa8Xz2pWhbw"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "FHDI8M5sm6lrZXNUBZAOfA", "review_id": "9J6zDTYyPjMqDC-KUQIE3Q", "stars": 4, "date": "2011-01-24", "text": "I'm still feelin the love. A most wonderful combination found I today of simple delightful food, a laid back atmosphere, warm staff, dog-friendly accommodations, a vegan-friendly menu and... oh yeah... all day Monday Happy Hour. \n\nThank you TMI for the immediate bowl of water set down for my hound, the speedy $4 glass of red, and a yummy manageably-sized veg sandwich. I couldn't have asked for a better ending to this much dreaded Monday. It was lovely winding down and enjoying the sunset while other suckers waited in traffic.\n\nI second Sarah G's enthusiasm for Sophie's salad sans mozzarella. Mmmm mmmm arthichoke. My next mission is the Cash Money sammie with house made cashew butter (wha?!) Cabernet jelly AND bananas. It's like Elvis met Sophia Lauren and decided to class it up. Soon will I be back to attempt such an adventure. Very soon.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "ZOKN67ZtI1ClbRmcAR4yKQ", "review_id": "YkFNxEyAyOmFBDFtyytjsw", "stars": 4, "date": "2008-07-30", "text": "Brought my car in to get the electric stuff checked. $25 to do an electronic systems check, then determined it was a bad alternator. I brought my car in at the end of the day, about 5pm or so, and they had it ready by 11am the next day. \n\nThe owner/manager, Terry, seemed like a straight up guy. Pricing is fair, as far as I could tell. \n\nThey seem to stay pretty busy with normal cars as well as business fleet vehicles. I've seen school buses there, Topkick-sized trucks, and as well as your standard fare trucks with lawnmowers on the back.", "type": "review", "business_id": "miuWgBMwg_6RzI_BvUfjnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "9dQ-nc14v538hjkQyr-E3w", "stars": 1, "date": "2012-11-04", "text": "There really isn't much I like about Michael's to begin with - I especially dislike them for using my name and putting on such an inferior showing - but this location was a particular disaster. Clean up your aisles for goodness sake, I feel claustrophobic with all the crap hanging around - its like the clothing section at K-Mart, but possibly worse.", "type": "review", "business_id": "GrGHVKec258eN1_gtJwS1w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "kiL8inOENuxBRJjknd7aNw", "review_id": "uPfs1kC6brJcAKnDwVxc0A", "stars": 5, "date": "2012-05-21", "text": "Heart be still I loved this place. Way better than I expected. I had the spicy noodles and they were delicious, flavor great and quality was on point. For desert the sticky rice with mango, I dream about it now. Highly recommend if you are in the mood for Thai food. I'll be back!", "type": "review", "business_id": "17DI33J8TkcfzyoiIYLQIw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "1ylYrKcGNA8MDkhNBTjHMA", "review_id": "pusWCa-D9Kx8kTvcL4bH-g", "stars": 5, "date": "2010-04-01", "text": "Still 5 stars, but sadly Amber is closing up shop. Don't feel bad for her as it is not for the lack of business. She is getting married and leaving the state and taking Spoken with her. Damn her!!! I did pick up some jeans and 3 shirts, all at 60% off. So hurry over and pick up some bargains! And wish Amber good luck!", "type": "review", "business_id": "Fy75nbQSylmO3UGCSedaZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "msgAEWFbD4df0EvyOR3TnQ", "review_id": "GJJFzEx4_zOhVRN7cMOJ4w", "stars": 5, "date": "2009-02-22", "text": "This is my favorite spa in the world! Hopefully, I'll make it to others...but if I could only get to the Camelback Inn, I'd be in heaven. Here's the rundown of how I enjoy the place: Early morning appointment for massage - Rose does fantastic hot stone - I like her the best. Then I shower and get into the eucalyptus steam room. Next I head out to the pool and savor the view of Camelback Mountain and the amazing desert landscaping they've procured. I drink some water and as I lounge there, I order a small, healthy and very tasty meal (usually breakfast). I swim a little, lounge a lot - regardless of the time of year. If I have planned it, I then head back into the showers and clean up for my next treatment. I spend hours there and if I feel like I might be pressed for time, I reschedule.", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1r7dSiDim_U0GFn8V4HvAQ", "review_id": "9V5XGfH54FWON5zkK6SpSg", "stars": 3, "date": "2012-06-01", "text": "Bad service, great food, awful coffee.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8B5pqCDFglMvfW7qj5W8TQ", "review_id": "RriK-Hb3PGwroO7Zfnd8pw", "stars": 2, "date": "2011-07-24", "text": "I'm usually a big fan of dive bars but wasn't impressed, at all. One of the kegs was empty so my friends didn't get their \"favorite\" beer, not a huge deal but not a good thing for 5pm on a Friday. The servers seemed really overwhelmed and was probably due to the fact that there were only 4 for the entire place and it was really busy.\n\nOn a very positive note, my friends said that the food was really good for bar food.\n\nThis might be a great place for any day and time other than happy hour on a Friday.", "type": "review", "business_id": "jsJxRLGm8zjWm_HVR2FDnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oMDSmhe72hjxoR3EAj6sXQ", "review_id": "u89APIU0kXS1-JPqBcPIgA", "stars": 4, "date": "2010-05-06", "text": "This place is fantastic - very tasty and a nice surprise for the Tempe area. Tempe seems to be full of places meant for those in college (makes sense because it is, in fact, a college town) - but for those of us who work in the are this is a nice break from the regular places. I will be adding this to my list of lunch options. \n\nIt is really nice when you are looking for a light salad or even quiche. I would recommend this.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K46kUag6aS0Vd4JjiaqNsQ", "review_id": "W3R-lEDWBooITQOgwwblKw", "stars": 3, "date": "2009-02-04", "text": "I had been craving sushi steadily for about two weeks, so I decided to try somewhere new. This place happens to be just across the street from my work and the reviews on here were a vote of confidence. \n\nI had the cherry blossom roll and rainbow roll, shared edamame, and hot green tea. The cherry blossom roll was good, not amazing, but good. The fish was fresh enough, and I did like the eel sauce drizzled on it. The rainbow roll was much less rainbow than I'm used to. The rainbow roll did have a bit of a fishy taste, and the whitefish on it was a pale yellowish brown color, and not as moist as it could have been. The crumbled macadamia nuts were and interesting and kind of fun garnish. The edamame was tasty, not over cooked, but could have used a little more salt. The green tea was boiling hot, with the kind of walnutty aftertaste you get from good green tea, I was disappointed it came in a single glass, not in a tea pot diffuser with a teacup like at most restaurants.\n\nMy girlfriend had pork katsu, the sauce drizzled on it was sweet and vinegary, but not too overwhelming. Gauging from the fact that she ate all of it I would assume it was pretty good. The salad that came with it was a bit strange, iceberg lettuce and a cream sesame dressing. The miso soup on the side was better than the little packets I get at the store, but didn't taste home made. It was not too salty, but the tofu must have been dehydrated, it was in tiny little shriveled squares on the bottom of the bowl. \n\nThe waitstaff was very attentive and friendly. It wasn't too busy when we went, about 5pm. The music was typical pop music, but thankfully unlike some places (RA for instance) its not blaring. \n\nI would say its definately not the best sushi I've ever had, not even the best I've had in arizona, but it was ok. The rainbow rolls at kobe are better.", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kvL7bId7FbaMi19TFl3h9w", "review_id": "E-EAo8WSdyBTUDMVaMn3uA", "stars": 3, "date": "2010-10-31", "text": "Meh.\n\nPlus for cool decor. Minus for being in a strip mall (but hey it's Phoenix...)\n\nCinnamon Roll was good. Awesome icing. Toluca Brizza was unique, but nothing spectacular.\n\nit would be a good place for groups, with a vast menu (that i hear is very vegan friendly), but they are better places around town for brunch, both in terms of quality and price points.", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z6_d6w5G5QkosYMRhct_Vw", "review_id": "zEmsQ-WVAxXKG4QjH1gfxw", "stars": 5, "date": "2011-01-25", "text": "3 syllables for this place. \nA-MAZ-ING!\n\nThe best Phoenix has to offer.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TvDqY4iUY8kNGqyvKpQfVw", "review_id": "3w2FnG0ljCy7HXPqsFqoSg", "stars": 2, "date": "2012-12-24", "text": "They have good baked baguettes and the price was $1.50 last month, however raising the price to $2 per roll during the holiday's is ridiculous. The female cashier was short and unprofessional. While i was waiting for the rolls, she was rude to the next three customers spending money. They need to work on their customer service and I vowed never to go back.", "type": "review", "business_id": "YQz2fnfnL5eAWn1zOmKYnQ"} +{"votes": {"funny": 5, "useful": 7, "cool": 6}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "anRbWt5BCVmxuiQCimIIjw", "stars": 4, "date": "2009-08-29", "text": "I came here after having wanted to try this place for some time. I love hamburgers, and a good burger is a real treat for me. Nothing complicated really, just a good well made burger.\n\nWhen my date and I arrived, we liked the interior. The place was smaller then I had anticipated. Very narrow seating. Anyways, service and menu selections were excellent. I went with the traditional burger, and my date went with the Panini. I went with the French fries, and date went with sweet potato. I loved both. The excitement of my night was the fries in the shopping cart!!\n\nAnyways, I was happy with my experience here. I would return, and liked my food. So did date. Aside from tight seating, lovely place!", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "El1Q48x6ZfofQmaBZTrduQ", "review_id": "cqXOZprfCylgAP-IRVOLHg", "stars": 5, "date": "2012-10-01", "text": "I've been coming here since the 70's when it was across the street and had a screen door. I know the staff and the daily specials by heart. When I lived away from PHX it was the place I wished for. When I go to NYC I have to take RM food to my friends. The whole family agrees. I don't understand the negative reviews. The reviewers must have had a bad day. I love the food and so has everyone I know.", "type": "review", "business_id": "TMdHhDI7jYQ9206dtvrBgA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "iBW6n_0yzFDn4C6_0sf62w", "review_id": "ROKM11JR_yGq3mnSy_chZA", "stars": 3, "date": "2010-06-24", "text": "It's not hard to find a steakhouse in Scottsdale. Modern Steak's schtick is that it is... well, \"modern\" in the sense that it's not in a dark oak-filled room with overstuffed booths. Unfortunately, however, \"modern\" also means that it's in a mall. Ugh.\n\nPretty efficient (if not brusque) service, with decent enough food. I had the salmon w/ maple and bacon glaze. It's a bit of a bizarre combo -- I'm not sure the salmon quite holds up under such a sweet glaze, but you can't complain too much anytime bacon is involved :)", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7yqlOyMgwkBgq0O88a20FA", "review_id": "ShPQNfKz9k9lZQRrotOKGA", "stars": 5, "date": "2010-08-16", "text": "The food and service were both amazing. I've had the gyro pita, orzo and greek potatoes. All were fantastic. Try the gelato also. It's the best in town! The owners are very friendly and happy to speak with each customer.", "type": "review", "business_id": "NNGJQF3WeIHzGzweCpZ-VA"} +{"votes": {"funny": 2, "useful": 7, "cool": 3}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "GgVqF1e-R6tmIqlvmRccuQ", "stars": 5, "date": "2012-05-13", "text": "Rita's Kitchen is a hidden gem located right smack in the center of the Camelback Inn. While this may be a hot-spot for hotel guests, I think that locals might be missing out on its charm. \n\nI am a huge fan of anything the Camelback Inn does, especially since they offer live music and a great space for relaxation and Rita's Kitchen is no exception. This restaurant is airy and opens up to the spacious Camelback Inn patio where they play live music every night. \n\nBreakfast: \n\nBreakfast at Rita's is sublime and pretty reasonably priced. They offer a breakfast buffet for around $23 which includes eggs made to order (including omelets), pancakes, waffles, pastries, fresh fruit, bacon, sausage and hashbrowns. It's a great pick for a leisurely weekend breakfast. Just today was Mother's Day and while we only did the breakfast buffet, I did catch a glimpse of the Mother's Day brunch and holy moly do they know how to wow a crowd! Not only did they have stations set up all throughout the restaurant, patio and R-Bar, but they also had an extensive dessert area with build-your-own sundaes, freshly made cotton candy (in an old fashioned cotton candy maker) and a long dessert table with a chocolate fountain. \n\nLunch:\n\nLunch here is sublime and I also enjoy either the tacos or the chicken sandwich. The chicken sandwich is particularly a favorite of mine due to the cheese and sauce. The fries are tasty as well and you can either get sweet potato or regular. I also get sweet potato then regret not just getting the regular which are better in my mind. If the weather permits, sit on the patio and enjoy the beautiful water fountains, views of the mountain and tropical/desert setting.", "type": "review", "business_id": "FhjdZ2DtjVgCfK47bYO6sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "-GIRAMumwpwkJ790HOd9KQ", "stars": 5, "date": "2011-09-09", "text": "We happened upon this location when meeting a friend for dinner. When I showed up there was a line of about 20 people ahead of me. i asked them to put me in first available and they said 15-20min and then 45min for a booth.\n\nOk, I'll wait.\n\nOur friends showed up and my girlfriend had asked if there was a spot at the bar we could sit in the mean time. We were there for about 10min already. That's when she said to us. \"Your table inside is ready\" she walked us right there and we were sat. WOW! that was quick!\n\nWe ordered drinks and food. I got these jerk chicken wings for an appetizer and holy cow, they were delicious. For my main dish I ordered a garlic noodle dish. It definitely hit the spot. My only beef would be that it was hard to talk with so many people inside. I wont let that affect the rating though.\n\nAwesome place!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oeN1mnXSqa_Mt0L_-bp8vg", "review_id": "OxlQFXVZbYxBEJSh8czh0A", "stars": 5, "date": "2012-05-21", "text": "We stayed at the Hyatt Gainey Ranch during spring break and had a fabulous time. We ate at SWB for lunch and enjoyed it so much we ordered dinner that evening to eat in the room with our kids. My husband ordered me the chocolate caramel tart which turned out to be one of the best desserts I've ever had. I tried looking for the recipe and couldn't find it so I figured it wouldn't hurt to ask for it. Surprisingly I received an almost immediate response from the hotel that they would let the chef know. Within a few hours the recipe from the chef was in my e-mail with additional tips! Now I call that customer service. We loved the hotel and loved the restaurant. Looking forward to going back someday.", "type": "review", "business_id": "g-eZgnBDvSDguF8cUxKCkA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "J72XoQspNBmPsX2iKl2YvA", "review_id": "8ZC2ymJRf81mGgRKpBWOmQ", "stars": 4, "date": "2008-08-13", "text": "It has been several months but I hadn't lost the formula (80/10/10 - veggies, meat, noodles). Pat down some chicken-turkey (no taste difference as far as I can tell) with the wax paper. Load up with mostly veggies (more green than red or white), add some wheat noodles to fill the bowl to the brim. Follow with the sweet and sour mix but add some extra vinegar and orange sauce. Add some pineapple and all set to have it grilled. Fill a small bowl with peanuts and another small bowl with pineapple. Fill the large red plastic drinking vessel with ice and low cal lemonade. Then chow down...\n\nMy formula has more or less stayed the same since being introduced to YC's by Mike T and/or Erik T. Both took different approaches and none tasted like the other despite selecting choices from the same line. Amazing how three related people ended up with very different meals especially Erik T with cod fish and Mike T with who knows what kind of sauces except they were very dark.", "type": "review", "business_id": "VEojEXbJ81eiPLSSF9jNEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LL2Kk0jjD9McDPfPEDbZBQ", "review_id": "gwGGLhbcx27rzz3D9jVudA", "stars": 5, "date": "2011-04-16", "text": "Called these guys when an evap cooler water pressure line at my office burst. A guy with a clean white shirt tucked in to his pants introduced himself to me, assessed my problem, and quoted a very fair price to fix it. This guy was way too clean, personable and professional to be the plumber? He went right to work and had everything back to normal for me in no time! You have to understand... I am use to a dirty, loud, intrusive plumber that smiles with his butt! These guys won me over and their telephone number 623-977-4458 is in my cell phone now. I highly recommend Palmer's Plumbing!!!", "type": "review", "business_id": "Y_TtMiH_nx33FH4C48XhsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wy9AIj-FTQaH7OAGg3xBfg", "review_id": "Ob4PFYGeHC0Frj34-l0uDw", "stars": 4, "date": "2011-06-30", "text": "I had a nice lunch here on a hot summer day. $12 for a good pastrami sandwich with crispy seasoned fries and an iced tea. Definitely recommend the food.\n\nLine was very short on a Friday afternoon. Soda machine ran out of ice, but they filled my cup with ice from ice maker in back and quickly filled machine with more ice.", "type": "review", "business_id": "9BH18avE46LlHMvJn67MaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IYJg3a-NTaymcYPOfRrcsg", "review_id": "z8WydPXflaC4Yvk6WUSxpg", "stars": 4, "date": "2011-11-13", "text": "More like 3.5 stars, but I'm rounding up because the overall property was so nice.\n\nGood Food, Good Service, Good View (overlooking the golf course).\n\nI had the Chicken Caprese sandwich which was quite tasty, but the burger my mom has was WAY better. If you go here.... order a burger. They are big, juicy and super duper good. It's also super duper messy. It's a \"fork and knife\" type of burger. \n\nTheir bloody mary is pretty good... a little too tomato-y.... needed more seasoning.\n\nMom's John Daly Peach drink was refreshing. Good for cooling off and relaxing after a round of golf. :)\n\nTater Tots were served with our sandwiches and they were good... but nothing all that special. They were crunchy on the outside and soft and hot on the inside... but for this type of establishment.... I would have expectetd Truffle Tots or something different.\n\nTheir relishes that they offered on the side were 'ok'..... I was not impressed. They tasted like they were from a bottle.... I'm sure they make their own relish... I'm just saying they didn't taste any different than the ones you get at the store.", "type": "review", "business_id": "BO_TJFFJyXu8i2rW83hG3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wIi2J1UGRB2G_3vu5eNK3g", "review_id": "UjfIUMfKaB04M_R2hYAmPw", "stars": 5, "date": "2012-07-21", "text": "I got a coupon at a past Yelp event to try them out and I'm SO glad I did! Massage Envy really exceeded my wildest expectations for a chain that offers affordable rates for massage therapy. I was pleasantly surprised by the level of expertise and professionalism that I experienced!\n\nMy massage therapist was Dannie and she worked through my trigger points and loosened my tight muscles with an intuition that I have rarely experienced.\n\nI highly recommend this place and hope to return soon!", "type": "review", "business_id": "CWoXwnoxdFihXB1KhH9goA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HBRvlxpo1PUQS9uU8csDTQ", "review_id": "GXXnhfTtNefRIktHo_ZGLA", "stars": 5, "date": "2012-07-09", "text": "Ask for Alex - he is very helpful and knowledgeable with products in the store. He is a young college student and works part time but always has a great attitude and finds the best deals for our family. Thanks Alex!", "type": "review", "business_id": "pxClzo2Ek5wGRJmYZcSkuQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Rg4gzsz3w00vRlIOXcGUIA", "review_id": "sQN2Mo5KRTi3_vd3GaVcbQ", "stars": 4, "date": "2011-03-24", "text": "Go from brunch and get the breakfast nachos. OMG. They were to die for. red chile sauce, two cheeses, baked chips, chorizo eggs. Got sour cream on the side and left of the pico. Came with sausage gravy that was not the artery cloggin' kind. These were so yummy.\n\nIt was a little dark inside (full out front) and they don't have sweet & low. Nice ambience. Totally cool for the kids, too, but no paper kids menu.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "I0pyeAcqXQl7Rv-DQmgHow", "review_id": "wKZh0hKZbRNBiE-59mbk-g", "stars": 2, "date": "2011-01-05", "text": "Sorry, I am gonna get killed here... I am not that impressed.\nI kept hearing about this place and it was so so at best. The food is sloppy and very expensive but has a decent taste\nThe place was also a little dirty looking..\nJust a bunch of sandwiches and the pizza was a disaster, go there if you are into quirky places that charge a lot and are not the best.\nThe waitress seemed pre-occupied by what?? not us.", "type": "review", "business_id": "TuuENwzxOFdDLY_oKCbFZw"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "OqisxqKDGaZwEvLm1OG4dg", "review_id": "rLClasWrTkKWf6KULsMeew", "stars": 2, "date": "2008-11-13", "text": "I love Chez Nous for the dancing, the live music is always great, but this past Friday I was really disappointed. The cover charge has been raised to $7, the drinks were weak, and I got charged $9 for a Three Olives and Coke. Combine that with being cash only so getting hit for $3 at the ATM inside the bar, and after one poor drink I was already at $20. Maybe it's because I've gone back to being a broke college student, but I found the whole experience disappointing. It seems like a few articles in the AZ Republic recently and the prices are flying through the roof. So for now, I think I'm going to take a break from our relationship... sorry Chez Nous", "type": "review", "business_id": "P1DyzJfy3RCOdT9s9zgNiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "SPDbkT9WXghJedf1xxYnOg", "stars": 5, "date": "2012-11-06", "text": "It's the place to be. \n\nI went before heading over to Symphony Hall and seeing Ballet AZ perform Giselle. Having heard great reviews about the place, it's food and the vibe... I had to try it.\n\nRestored into a restaurant and bar from an old department store, Hanny's has the feel straight of of New York City. The lighting is dim enough to give that sexy, intimate feelings and with long, pew style seating with individual tables, the vibe is very posh.\n\nMy roommate and I ordered the bruscetta plate and the margarita pizza. Very good choice! The bruscetta plate was on the saltier side, so be wary of that but it was delish. The pizza was much bigger than we expected. For $10 you really do get a good deal. \n\nWe each orded drinks. A orded the peach martini and a glass of giseling. Wasn't a HUGE fan of the martini and I thought it tasted like cough syrup but it was also my very first martini so I am not holding Hannys against anything. My roommate on the other hand said it was the best Manhattan he'd ever had, which I believe.\n\nHannys has a modern feel with a touch of Mad Men and I simply cannot wait to go back.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "WmldRvl1nKxuKM6weiO6fQ", "review_id": "MMt47JTaLAmrbf4d_ATCPA", "stars": 4, "date": "2009-06-05", "text": "Wow, not what we were expecting at all. But that's a good thing. The restaurant would qualify as a \"Dive\" in most circles, a tiny 20 seat affair with recycled refer units as cabinets located in the corner of a strip mall with a 99 cent store and a BigLots. Not exactly a high-end neighborhood.\n\nBut after having heard of this little cafe in The New Times and finding that Phoenix Magazine rated their Ceviche and Shrimp salad as one of the Valley's top 50 dishes, we decided that we must give it a try! The article in New Times raved about something called a Pupusa and description sounded familiar, once we were there I realized why.\n\nEvery culture on earth seems to have developed some form of stuffed hand pie. You know the formula, a regional bread or pastry dough, formed into a pocket and stuffed with savory or sweet fillings. Food on the go. Well in El Salvador it's called a Pupusa, and they were delicious!\n\nA kind of thick corn tortilla type bread, filled with several different types of fillings, pork and cheese, beans, chicken and cheese, beef and cheese or beef, bean and cheese.\n\nNow this is NOT your typical Arizona/Mexican food. The cheese is a freshly made cheese that is a Salvadoran tradition and is one of the best fresh cheeses I have ever had, smooth and soft yet very flavourful. The tortilla is not what you might be used to either, they are corn tortillas but they are not the course chip like corn tortillas so prevalent in Americanized Hispanic foods. They are thick, soft and delicious. It is this tortilla that is the basis of their Pupusas.\n\nDon't expect to find the standard \"Mexican Restaurant\" re-fried beans here either. Spicy, flavourful and smooth, having been mashed right after cooking, they are among the best example of simple yet wonderful tastes you will experience here.\n\nWe had some of all of the different Pupusas offered on the menu which are priced very reasonable indeed, and were impressed with all of them, though the pork and cheese and the bean were my personal favorites.\n\nWe also had a corn tamale that was sweet and moist and tasty, rolled in a banana leaf instead of the corn husk we are used to. Perhaps that is why it was so much more moist than your average corn tamale.\n\nTo finish off our repast we enjoyed the fried plantains, actually an appetizer on the menu, they were crispy on the outside and starchy and tasty inside. Served with freshly made salsa and the Salvadoran version of Cr\u00e8me Fra\u00eeche that was also a hit.\n\nThe owner was our server and I am still not sure she spoke much English, but she was very nice to us and the orders were always right. As well as very very hot! I had to let my Pupusas sit a few minutes before they were cool enough to consume, and a word of warning, Plantains retain heat even better than potatoes do so proceed carefully.\n\nAs I've said the Ceviche and Shrimp salad is an award winner and the Carne Asada that the folks at the next table had ordered looked delicious. However I could not ask their opinion as they did not seem to speak English either and my Spanish is worse than terrible. But they seemed to be enjoying it, I'll give it a try next time.\n\nThey serve breakfast too and I can hardly wait to give that a try as well.\n\nStop in, you'll be glad you did.", "type": "review", "business_id": "vxPPpj5jJKO8DtapF5S-NQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "bnHBeO3MIyG_yduDiN-XpA", "stars": 3, "date": "2007-08-08", "text": "While Scottsdale's Jackrabbit Supper Club is Britney Spears-approved -- the pop singer made the rounds last December when she reportedly made out with Arizona Cardinals hottie Matt Leinart -- it's a little too clubby for my taste. The music is usually loud, making it hard to carry on a conversation and nearly everyone looks like they stepped out of the pages of a fashion magazine. Oh, and be prepared to throw down more than the norm for drinks -- martinis are $13! If all of this isn't scaring you away, you'll probably have a good time. And the best part? The bar offers hourly burlesque-style performances from the club's saucy dancers.", "type": "review", "business_id": "KwGQqUCpHHhOhVqyOL2QTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dGfOZWZbYaoTlFiW8EnAFw", "review_id": "DYhwTfyy6PIHgc13K_ZjJA", "stars": 5, "date": "2010-09-13", "text": "Definitely one of my favorite places to eat, hands down. I love their enchiladas verdes combo. Their refried beans are THE BEST! I have been eating here for over 15 years and the waitresses are mostly the same. Definitely feels like you are at an old friends house when you are there. Yes, it is in a bad area, but that hasn't ever deterred me from telling everyone I know that if they want really good, real Mexican food at a great price, to head down there. And their green salsa for dipping chips is amazing.", "type": "review", "business_id": "hWhVP-28LYP3llaMlAJ_JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fR6Vch-D0L6OBnLMl8f9Sg", "review_id": "dP8S_sPtD4BA90Kil5wJJA", "stars": 5, "date": "2012-03-09", "text": "This is a great QT for when you're driving through Phoenix on I-17. It's right off the freeway so it's perfect for stopping for gas and grabbing a tasty snack.\n\nPlus it's a QuikTrip, there isn't really any part of it that isn't awesome.", "type": "review", "business_id": "mKNK-LCFJMtYuNc8kzsaAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "3UHFF9kWZgIFHaaoBk5xCg", "review_id": "le7sctcLjBi_4y6wGN7m-Q", "stars": 4, "date": "2012-06-22", "text": "Inexpensive, tasty, fast. The gentle peanut dressing on the pre-meal salad gets you started on a simple, no-frills meal with exactly one option from all of the classic dishes you expect at a Thai restaurant in America: massaman, red, green, yellow, or panang curry; pad thai or chowmein; meat or vegetable rice plates. There's nothing extravagant in spices or food choices, but you can order the spiciness level to you liking.", "type": "review", "business_id": "IRxBQfA7FdHhzrPjtBxuuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YgucNL2tibnjEmDLqHPqow", "review_id": "_CV94H0BgcZ_VjrGllmXpg", "stars": 4, "date": "2011-03-15", "text": "I had been dying to try True Food Kitchen for a while now, after seeing reviews on it on various people's \"Vegetarian\" lists. I was even more psyched to see that it not only is close to where I live, but also took the place of that awful Coffee Plantation spot in the Biltmore! Yay!\n\nI went with my somewhat reluctant meat-eating boyfriend, but he was quickly won over with their expansive alcohol menu and their plethora of meat dishes- all either local or organic. A place we can both agree on!\n\nI ordered the honey lemonade ($3) which was the perfect balance between tart and sweet-- honey is a great sweetener! I was brought a refill just when my glass became less than half full-- bonus!\n\nWe also ordered the hummus appetizer (~$8), which we both enjoyed immensely. My boyfriend liked the tart olives and feta cheese, whereas I loved the cucumbers! There was more hummus left over as our pita bread slices dwindled, but that just means we loaded up our pieces!\n\nFor my main course, I had the TLT (Tempeh, Lettuce, and Tomato) ($9), which I really enjoyed. The tempeh was pretty crunchy, but it was balanced by the smooth avocado slices. The boyfriend ordered the Organic Ravioli with Ricotta cheese and kale pesto (~$13), which was super good! It came with 6 pieces of ravioli, which he thought was not enough at first, but after he cleaned his plate he said he was \"stuffed.\" Good sign!! The plate also comes with a ton of meaty mushrooms, which made it even better in my opinion. \n\nWe definitely did not have room for dessert, but I've heard mixed reviews of the desserts so I'm not sure if that's something we'll end up trying. Our server was extremely attentive to us, did not pressure us into ordering anything extra, and was prompt in refilling water glasses, answering questions, and bringing the check.\n\nThe atmosphere is interesting- a mix of well-dressed business and retired people (think: khaki pants, button up shirts, sweater vests (in the winter); nurses just off work; people coming in for happy hour (jeans and nice shirts); and people just in off the street (shorts, casual shirts, even hats). I really liked this ambiance, because it doesn't make it too stuffy and turn people \"off\" of this locally grown, organic restaurant concept.\n\nWe would definitely be back in a heartbeat, but the only reason I marked it down was because we were sitting underneath their funky lights, and a spider fell out of the light on to my boyfriend's arm. He wasn't terribly bothered by it (other than 'wtf, why is there a spider on my arm?') but I would have freaked out. So... don't sit under the lights, if you can help it!", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mAWDlmTrBCbxZftZfdJf3w", "review_id": "r36zYGVScZB1r49kqvllFw", "stars": 5, "date": "2010-09-24", "text": "flemings is always top notch. we went for the thursday night wine tasting 20 wines for $25 introducing there new 100 wines by the glass. The selection was good from lite whites to deep reds a great way to sample a portion of there new wine list. then to top it off we received $25 gift cards for dinner. so we stayed and had the AZ resturant week pre fix dinner for $39 the food was wonderful. salads, soup lamb chops and filet. i guess to sum it up you can't go wrong with a meal from flemings. they also have a great happy hour.", "type": "review", "business_id": "0ONypOKIhttBz9IJzBE8jg"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "E5QyEU6FCQwnTys0S73zNw", "review_id": "zkpzZv9L9kpCUVvyyGPw-Q", "stars": 1, "date": "2008-11-22", "text": "oK, first i broke my promise to myself and went here again, i figured by now things have got to be better. i ordered something that i wouldn't care if it was cold, French Toast. ok so the french toast is good. but it wasn't worth waiting 40 fucking minutes to get it. and on top of it. my friends food was cold again. one of them would rather eat glass then eat at this place so refused to order a cold meal, but since my other friend was paying she said fuck it i'll go.\n\nwell she ordered toast and some sausage as sides. and my other friend ordered the mish mash, his review of the place is more generious then mine, but he's only been there once and said it wasn't so bad. lol.\n\nso anyways toast, soo cold the butter couldn't even melt. and cold sausage to boot. the friend with the mishmash, lol. i saw the bottom of the bowl and it was all a weird watery substance at the bottom. how hard is it to drain poached eggs before dumping them in a bowl?\n\ni was going to give palatte 3 stars based on the french toast, but it was hardly warm. i so badly want to like this place cause it's close and Matt's is always packed.\n\ncan i please get a breakfast place in the roosevelt area that is large enough to seat more then 20 people and serves good breakfast?", "type": "review", "business_id": "P1R-DyUyBeWCvPKrRkglsQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "UomIbZJSHfjXAGpFxiDxFA", "stars": 4, "date": "2011-04-13", "text": "Oh Yogurtland.....why can't I resist your calling?\n\nI had to run an errand and saw this location next to a Fedex Office...perfect! I dropped in and ordered:\n\nDouble Cookies & Cream, Strawberry, and Cheesecake...topped with Peanuts, Captain Crunch, and Reese's Peanut Butter Cup for around $4.90.\nhttp://www.yelp.com/biz_photos/Co4cQNWyAYv7Hw8jKcEKJg?select=VcouxvxQ0Sl310XRxn9HOg\nhttp://www.yelp.com/biz_photos/Co4cQNWyAYv7Hw8jKcEKJg?select=8xzd9ms7YvNaEAvn1irgsQ\n\nIt was of course awesome! The line was very short too....even though the weather was in the mid-90's....boy did I luck out!\n\nReturn Factor - 100%", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OpUXG69nP4YjlEZDlkdVcQ", "review_id": "f6imoOr8UeKXXyJtSt-AWw", "stars": 2, "date": "2009-01-11", "text": "Craving a noodle soup--thought I'd check this place after seeing the reviews. Upon entering I didn't like the air quality, smelled like dirty deep frying oil. Upon perusing the menu and looking around at other diners food, I realized it was mostly composed of tempura, duh, deep fried. Yikes, I am not a fan of deep frying but that explained the smell. I opted for the shrimp udon soup. It wasn't anything near the wonderful soup I had experienced elsewhere, especially this great Japanese restaurant in Chiang Mai that had this amazing moat around the sushi chefs were they would float the sushi on little boats that you could pick and choose. Very disappointing, broth, noodles, spinach, green onion and 2 shrimp, $8. I did get an added bonus of deep fat smell covering my clothing.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "chI2p-ROg2tXI2-tT2_G2A", "review_id": "DvMquoPKQFWFkkmzbfFQOA", "stars": 4, "date": "2011-11-03", "text": "This is my favorite breakfast/brunch spot. Fresh bagels and different types of cream cheese.\n\nThey even have Bagel Thins for those who are cutting their carbs. \n\nYou don't pay the person who took you order, but move down the line to pay for your food.\n\nTheir iced coffee are a great deal!! It's a 20oz cup for less than $3!", "type": "review", "business_id": "oLYOGtdW5RxvaBiSdv3WCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y96CV_ML3MGld3asJxzusw", "review_id": "KepstMD3yRwWrrTa45nYyw", "stars": 5, "date": "2010-12-27", "text": "I really like this place and I must say it's the best pizza I have had West of Chicago. The sauce is on the sweet side, but I like that. It's kid friendly so it's a great casual place to be with family and friends without a pretentious side to it.\n\nThe lines can be a little long at times but I think it's worth the wait.", "type": "review", "business_id": "pF7uRzygyZsltbmVpjIyvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hJBOxmNREXmMGTfXgMcGug", "review_id": "TLp8VwfDjn9W-UaWWn6XdQ", "stars": 3, "date": "2011-02-14", "text": "Good destination for pizza. Would frequently go there for a slice at lunch when I worked in the area. Nice New York style pizza with a crisp crust.", "type": "review", "business_id": "h762dZ33uhSKtLZ-21u6Jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xffah_1oR1AYdi3TiW9Ckw", "review_id": "md5-wukyyb3BlnHYY0ic-g", "stars": 5, "date": "2012-01-28", "text": "Green is by far one of my favorite restaurants to eat at. My husband loves it too and he is a carnivore! Our favorite things to get are the \"boneless buffalo wings\" and something that another customer shared with me while waiting in line that is not on the menu \"the Wendy's pickle sandwich\" It is amazing! Another special they have from time to time is \"the big WAC\" and I must say it is better than the real thing!!!!!", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "D6J7pwjvAsd9VwzIrMzC7w", "review_id": "6zs10vbzh1NuRPKyLypZpA", "stars": 5, "date": "2010-08-19", "text": "This is a must try for any Mani Pedi fan. I use to drive to Scottsdale for all of my services until I found this spot. Get the pedi, no metal file pedi once - and you will NEVER go any where else. Have fun. I do..Customer service - top end. Thanks", "type": "review", "business_id": "sa9heRBSqZdEzNAUBdk2Eg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OfIm-r7GAv7p5JwzPUYDXg", "review_id": "PN2CfYeUVri4e3l5GEMk1Q", "stars": 1, "date": "2011-04-22", "text": "They have some rude employees its unbelievable. I'm trying to give business to them and ordered 6 smoothies and the cashier and her employee gave me a dirty look. Not customer friendly. At all.", "type": "review", "business_id": "6NHkOtivA_gb_2EbbJbJ5Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "aB_1_t8nAUHkS2nAFxcW0A", "review_id": "ig5kYd1TvqHtnDu_AJH13g", "stars": 5, "date": "2012-12-13", "text": "I had the best culinary experience of my 8 years in Phoenix tonight. First time at Switch. Started off with some appetizers; pesto & sun dried tomato risotto, marinated chicken breast, Mac n cheese. All delicious! \n\nNext my wife orders the blackened salmon. I looked at her with my wtf scowl. We don't even eat seafood. \"It looks interesting\" she says. Whatever. It gets to the table and it's the biggest hunk of salmon I've seen. We simultaneously stab into it with our forks, take a bite, and we look at each other like the first time we fell in love. The combination of the salmon, bacon and saut\u00e9ed greens was out of this world. Coupled with the bread pudding and sweet tomato concoction put me over the top. \n\nWe let the waitress know what we experienced and to thank the chef. She brought him out and he spoke with us for about 15 minutes. Jason is touched by the hand of God. He proceeded to tell us what he had planned for tomorrow's dinner menu and we made reservations on the spot for tomorrow night. \n\nI never knew food could profoundly affect your mood but I was driving home singing my heart out to my iPod. Got home, plugged the iPod into the stereo and continued the concert, danced with my dog and made me a latte. Perfect night. \n\nThank you Jason and Switch.", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "ZW8jy6ehrNzn9A5iCubVGg", "review_id": "H23asGzFq_W6NoXVNdIhdQ", "stars": 4, "date": "2012-06-26", "text": "I've been here a couple of times when I was in college, and once or twice since I've graduated. A memorable time while in college was my friends 21st bday on a Thursday night I came here on a party bus with some people (including some guy from the Real World) and they had a fountain of champagne with strawberries. All you can drink is definitely a bad idea for me because I felt the wrath and had to call into work the next day. But it was a whole lot of fun! Recently I came here with my bf and some friends and I must say I had a great time. I was happy to have a little more than annoying house music all night. They played a wide variety of music that was fun to dance to. I also loved the pussycat dancer that dances above the DJ, it's pretty cool when the two way mirror reveals a bed and sexy burlesque dancer! The bartenders are pretty cool and I didn't have to wait very long to get service. I think PCL is a decent bar based on my experiences.", "type": "review", "business_id": "mHZXq1c6j1b5bKXTxKJ-pA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gh2OwESXrgVyufGz_NPHxw", "review_id": "5lNGrP620pJIVGhr2XkQPA", "stars": 4, "date": "2012-02-10", "text": "The only place I go for a nice lunch on Mill. Two words: Beet Salad. Thank me later.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oaz8Fhe38u2DbeTguvLkPA", "review_id": "O6a4VlSMLKwmAMjH0BUQyg", "stars": 5, "date": "2012-10-24", "text": "New to the Scottsdale area, I've been searching for a nail salon for a few weeks. I stumbled upon this place and was very happy. Although it's in a weird strip mall, it's really relaxing inside. My gel manicure was perfect, and the shoulder massage was a nice added extra! Totally recommend!", "type": "review", "business_id": "5IO32LUAX4b-nD13fxKsIw"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "-YLtOLwOh1_xxxBnGtuvNg", "review_id": "uZ1A6CLImILvu6v9EakS3Q", "stars": 5, "date": "2012-04-23", "text": "The pizza is incredible, they use really high quality ingredients and the prices are great. I would recommend cooking it on the bottom rack of your oven for a slightly better texture on the crust.\n\nI want someone to mark that this post is funny, so I will add a joke:\n\nMushroom walks into a bar... Bartender says, \"sorry, we don't serve your type here.\" Mushroom says \"why not? I'm a fungi (fun guy).\"", "type": "review", "business_id": "FyN6aerPklmO8weJbGlPsg"} +{"votes": {"funny": 12, "useful": 15, "cool": 12}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "_p-ylizuse5eGnoOrcknlA", "stars": 4, "date": "2011-01-18", "text": "It's the middle of January and 75 degrees out. While there's no shortage of things to do outside, there aren't many dog-friendly places for that where you can sit down and eat.\nJacqui J and I took out doggies to the dog park. They're bruthas, you see, and hadn't hung out in awhile. We had MLK day off together and spend the afternoon together. Trying to decide where to eat with the pooches, I thought of TMI because I had seen so many people recently check in on Yelp. \nTheir patio is pretty big and mostly shaded. This wasn't a day to be too concerned about shade, since it wasn't hot out. I read the reviews ahead of time and already knew what I wanted before I even got there. I was happy to have to take home a doggie bag, too. \nI got the olives, red goat salad and the mac and cheese. I will eat anything that includes green chiles in it. Anything. A few varieties of olives were served wtih fresh herbs and a dash an oil & vinegar. I love all olives and don't always buy them for home, so it was a real treat. They came in a little bowl, but there were about 20 of them. The red goat salad was perfect: tons of pistachios on it, big chunks of goat cheese and strawberries.\nAnd den...and den...the mac and cheese, generously stuffed with chopped green chiles, ooey-gooey melted cheese that was crusty on the edges, the way it's supposed to be.\nI'll be back with Dexter. They gave him a treat. Oh, and my meal was treat. I'm burping up the leftovers as I type this.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Jrx1fLr5JdqgHdIfMT7wag", "review_id": "dbIb7vrfgo84UazHU6p4yQ", "stars": 4, "date": "2012-04-27", "text": "I only go for the movies or when I know what I'm getting. Not much of a shopper but I remember having fun here when I still lived in L.A. and came to visit.", "type": "review", "business_id": "zKFX8BVTWYZNa2vJ46UdmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "meBgdnN_Jw9MOwz3ZzqQEA", "review_id": "Lxv69FsRyAX5L6hLqfJCbQ", "stars": 1, "date": "2012-06-17", "text": "I really don't get why everyone is raving this place. I've been here twice and ordered the carne asada burrito. The portions are really small for the price that they charge. There is too much tortilla for the meat. I think this place is overrated and that there are better places for carne asada in the valley.", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "KowGVoP_gygzdSu6Mt3zKQ", "stars": 5, "date": "2009-08-06", "text": "RIP AZ Coffee Connection. :( I stopped by two days ago unaware that they had closed. I am severely bummed. This place is irreplaceable! Damn you, Starbucks and McDonalds!", "type": "review", "business_id": "106JT5p8e8Chtd0CZpcARw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1rE51uSipcbiqQlkvj4Kvg", "review_id": "KoH2U6Pf3X02Zs4cA_I6bw", "stars": 2, "date": "2012-03-09", "text": "I've always said if the guacamole, chips and salsa aren't good, the food is not likely to be good either. I was right, Guacamole was not very good at all, same with the salsa. Rest of the food was just okay but for a restaurant in the Biltmore I expected so much better. Just as a note, when it comes to Mexican food, I'm super critical. This place will probably get a higher ratings from people of the Midwest.", "type": "review", "business_id": "_-9pMxBWtG_x8l4rHWBasg"} +{"votes": {"funny": 4, "useful": 2, "cool": 4}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "trBbDX9XPxqNjho0emZqSA", "stars": 3, "date": "2008-07-27", "text": "Probably one of the better gay bars in town.. friendly.. decent crowd.. reasonable prices.. after hopping from one to another this place was our favorite. Lots of furry muscle bears too! Nice!!", "type": "review", "business_id": "uQyrVlJS4nh2Y3C0fCy3fw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yneTxW_9TTRXTOgJDH9fnQ", "review_id": "pIF-0VPyKIqaOvgcPylfPQ", "stars": 4, "date": "2012-11-19", "text": "Great new addition to Mill Ave. \n\nFirst stopped by here for a Monday Happy Hour, and instantly loved it. This is a perfect day-drinking place when the weather is nice, and they do a good job of creating a large indoor / outdoor space with plenty of patio. Happy Hour is pretty great - 1/2 off almost all beers. (they do well drink / wine specials too, but don't remember what they were. I think it was $1 off... but don't quote me on that.) Bottom line, I had 3 Firestone DBAs, and i think my bill was about 8 bucks before tip. Score. (normal beer prices are in the $5-6 range. A vodka gimlet not on happy hour (well vodka) cost me $4, which is right where it should be.)\n\nAlso made a return trip on a Saturday night, to get a feel for the weekend crowd. Not too bad, but mildly disappointed. I was hoping it would remain a little more of the chill day-time vibe, but come 10pm the music gets cranked up, and my group decided to move on to a place where we could actually have conversation without screaming. \n\n(sidenote: every bartender / waitress I've dealt with here has been really, super nice.)\n\nDef. worth a shot I'd say, and I could see it being a fave HH place.", "type": "review", "business_id": "_Ne4sL68IW6lEXYvrnkt-w"} +{"votes": {"funny": 5, "useful": 8, "cool": 6}, "user_id": "nZ9XFVETN4hxdK4qPb-T3Q", "review_id": "nw66R5FsB3xjOVwyiymQog", "stars": 1, "date": "2009-07-19", "text": "I have had it with the meat department at Whole Foods Market on Scottsdale Rd & the Mayo Blvd. They really suck.\n\nI gave them another chance (out of desperation really) and they blew it! I am so disappointed. I purchased some turkey breasts there (3 of them) at around $30.00 for a 4 lb breast. I came home, froze two and cooked one. It smelled, but my husband insisted that it was the smoked smell of being in the butcher case with all the other meats.\n\nI trusted his opinion and cooked it. Upon slicing it up for dinner, I found that the free range turkey was very fatty. It was gross but no one got sick luckily.\n\nWell, now I just thawed out another one and the same thing but worse. It stinks like the rotting dead animal it is. It is definitely bad.\n\nAnd it gets even worse! As I inspected it and opened up the two breasts (Whole Foods puts two breast together with a net to make one large one), I pulled out about 8 inches of thick, fatty, I don't even know what from it. Let's just say it definitely LOOKS like the dead animal it is too. What ever that stuff is, it is all gray and rotten.\n\nThey are basically stuffing their Turkey Breasts with junk to make more money. I have had it with them! \n\nI am not surprised. They have always been trouble. Frank the manager there is really not the kind of guy one would trust with food. His is kind of creepy and gives off a dirty \"I don't care\" attitude.\n\nI spent over $100.00 there on Turkey (ground & whole) and he (Frank) still charged me for the breast bones - and another employee told me that they usually just throw them in the trash!\n\nThe meats at this butcher department cannot be trusted. The manager there cannot be trusted and has failed every time. It is really gross; top dollar for top trash! My husband thinks the manager is getting some sort of incentive for selling the \"questionable meat\" instead of throwing it out! \n\nI am still nauseous from the smell, sight and from touching all that gray, rotting gross stuff. BLEECH!!! I think I ate that in the last one!", "type": "review", "business_id": "2e1jzfiHFGCRpV66gYNVbA"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "pU2lBD_W3VNvpzKZsRzi2A", "review_id": "2btIYEj7RWEkNBtha3ulPA", "stars": 1, "date": "2009-02-03", "text": "just say no.\n\nthis place is truly awful. \ntoo bad it's taking up valuable space on monroe.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 5, "useful": 7, "cool": 7}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "7yfWeorPMnVrI0X4xRgbnA", "stars": 5, "date": "2008-11-26", "text": "I am ready to update you to a five because the last three times I have been there, your service has been better, the huevos rancheros has been consistently perfect, I have never had to wait for a seat at the bar and I want to hug the cute new bartender because she is quirkily cute!! \n\nIf you were still serving breakfast at 6pm, I would come eat you now.", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "kxOKxUWaZdJ5smh0i-SeIg", "stars": 3, "date": "2012-03-05", "text": "Always wanted to stop by, and give them a try. Only thing that stopped me were some bad rumors of how clean they are? But then again, how clean is all the places we eat at?? So I had their 8\" Meat Ball sandwich, this was my second choice? I wanted was their cheese steak! But they were out of cheeses steak. But I do not regret their meat ball sandwich. It was very good, wish their bread would have been more toasted. But I thought it was good anyways. Place looks like and feels like a lot like Subway. But I do agree, they do add more meat to the sandwich. I will probably come back again.", "type": "review", "business_id": "rRe2eLIQ4MQ7d6vFL26Qdg"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "7Pyi-M7MfO3R2PHTuVY0TA", "review_id": "yiUT-C_qaVpn58TtBnEJNg", "stars": 3, "date": "2008-05-12", "text": "Sacks is a great little place. One issue and I know this wouldn't seem like a bad thing (at least if you are the owner) but it is a bit too busy for me. I can never find a parking place or a seat. The sandwiches are good and I like them, but I will admit that sometimes I don't go just because of the crowds. \n\nThe food is good. I like that they have a variety of sandwhiches and they put a lot of things on the sandwiches which can easily be taken off for the picky folks like me unlike other places where things are mixed in and not removable. If you are looking for a good tastey sandwhich, this is a great place to check out. If you are looking for a nice relaxing lunch where you can find a seat, move along.", "type": "review", "business_id": "GqtMJxq5-7Xp1ZXXmahLaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "_qWfA3Be9Ybjnxc6nTGRsQ", "stars": 5, "date": "2010-07-19", "text": "I have passed this place for 20 years and had always heard good things. Well one night when we were kidless we went. It was pricier that we thought but we forgot the price once the meals arrived. We were both very impressed. Warm homemade bread. Awesome salads. I tried the escolar (it's a fish that a friend of mine loved but I had never tried it) and it absolutely melted in my mouth. My husband enjoyed his sausage and peppers. We will definitely go back!", "type": "review", "business_id": "DIYHTgM-YGKWOWLzQ4XVhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KxmOlAI4f4bwFMDPzRRzNA", "review_id": "AH4M-ANlfJA0PD4hz1j51Q", "stars": 4, "date": "2011-07-16", "text": "tried this place due to a restaurant.com gift certificate, 4 stars for service, we had an awesome and attentive server which made it great for first visit. drinks were good. went with friends and did some sharing to try the different dishes we ordered. the salmon quesadillas was on the fishy side, the pollo relleno good but a little dry and didnt get the poblano and goat cheese flavors that drew me to choosing the dish, the cilantro mousse sounded more interesting on the menu but was cream cheese and cilantro, the Obama burrito was the winner on our table though. great salsa. would come back and try other dishes and tae in some live music.", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "9NrXM5p0sssVJiVgvFmwdw", "stars": 4, "date": "2012-11-04", "text": "This is an open-air mall. Unlike most malls which are totally enclosed, this mall is outdoors. In the outdoor area they sometimes have \"events\". The Batman \"Tumbler\" was there for a day once, we've heard concerts here, and this last visit they had a sculling team there with their boat.\n\nThey have many of the usual shops (American Eagle, Gap, Aeropostale, Victoria's Secret, etc). The Harkins Theater hear is pretty nice. We like the Genghis Grill for food (see my review of them). The Paradise Bakery is nice also. There are several other eateries here, but we haven't tried most of them yet. However, several choices are available.\n\nThis is a nice mall to just wander and shop, and eat and drink, and enjoy whatever is going on.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "3PleJJEDyGLIWqaW7JlTyQ", "review_id": "6ka2jUMJLx9ti2kRZh05yQ", "stars": 5, "date": "2011-08-12", "text": "Once again Wildflower proves why it's my favorite breakfast hangout! Jeff the Manager on staff today rocks! \n\nSome of us hangout at a restaurant to make it a working meal...and sometimes, during that time Nature calls...so I asked the busboy to not clear my table as I needed to step away for a moment and he cheerfully agreed. I came back to find my table cleared by new patrons who had taken it upon themselves to steal my table (I guess the fact that the food was only half eaten, and the water and coffee were still half filled were no clue). The busboy was upset that he'd turned his back for just a moment and Jeff came to the rescue...after apologizing to me and finding the perfect way to make it right, he vowed to let the new people know that they were rather um 'overly proactive' in clearing the table themselves and that he had some people who regularly relaxed and worked in the restaurant and do step away.\n\nHe handled the situation with me just right and I am sure that those people that took my table were made to gently understand that they need to ask before taking an uncleared table.\n\nKudos to Jeff and the staff for making me so happy I had to tell everyone here...and to the couple who took my table, if you are reading this...did you REALLY need that booth? I mean, when I came out of the can there were like, I dunno, 5 empty tables...seriously? Like, did you propose there or something????", "type": "review", "business_id": "Pr9rQKypHgC_J1AfufxzIw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "KICFDhBX25ruK_iW6gLgTA", "review_id": "OBRGsiB-FjLoZewGXtEQ5A", "stars": 3, "date": "2009-04-03", "text": "Came here for lunch recently with active Yelper and friend Brett B. I'm sure he'll post up his own review of the place.\n\nThis is the kind of place you walk up to the register and place your order, then take a plastic number to your table and the server brings you your food. You also get your glass and go fill 'er up at the fountain yourself. I wasn't sure what to expect, but felt good vibes the minute I asked \"how big is the salad\" and the guy at the register walked into the kitchen to bring me a dish to show me. That was nice and above my expectation, as most places the servers will make a \"size\" with their hands and shrug and say, \"i don't know... about like this?\" So, yeah. I like that this guy actually showed me a plate and made a \"mound\" with his hand to show me some kind of size of the salad. \n\nWhen I ordered \"just water\" he went to give me a plastic cup with a lid, and then said, \"you know what? Just take a regular glass, it's more comfortable....\" He trusted me not to fill up my glass with anything but water (and I did only drink water). That was nice, and made me feel like an adult. Not like at some places (much cheaper than this place) that give you a plastic cup like the ones you pee in at the doctor's office, when you order water.\n\nI really enjoyed my lunch here - Had a chicken caesar salad (one of my favorite things to order pretty much anywhere i go because I'll never make it at home), along with a cheese pizza.\n\nThe caesar salad - for those who have a love affair with this meal - was \"perfect\" . The portion was generous, and it was chopped and tossed. The chicken was shredded and mixed in with the salad, which makes SUCH a difference in getting an even distribution, and reducing pain-in-the-ass-ness of having to cut up a chicken breast atop a salad with oversized utensils like at so many other places. It was perfectly dressed too - not too heavy, just right. And the parmesan cheese was shaved over it, rather than shredded or grated. Nice touch. Excellent flavor, every mouthful.\n\nThe cheese pizza was a cripsy, ultra thin crust, delicious red sauce (kinda sweet, in a good way), and the cheeses were mozzarella and fontina - the saltiness mixed really well with the sweetness of the sauce and made this simple pizza taste extraordinary.\n\nGranted, having had some beyond-extraordinary pizza in new york, I'm spoiled and have to say it was not as good as my favorite thin crust pizza from Totonno's in NYC's upper east side. But still, darn good. I'd eat it again. (I took some home and it didn't look like it heated up well later on when my husband was having it).\n\nBrett had the tomato, gorgonzola, chicken, salad on mixed greens. I think it had pine nuts too. I got to taste it and it was even more flavorful than mine. Either one of these would be an excellent choice for those of you who like to order salads. Delicious. \n\nAnd the service was great! The manager even came by our tables to refill our glasses for us, though the drinks were self-serve from a fountain. the place was not busy when we got there, but it picked up as we were finishing our meals. \n\nGreat food - great service - great vibe. I hope this place sticks around. \n\nDefinitely would eat there again. Looking forward to it, even!", "type": "review", "business_id": "bO2rQLEntQLcg675LjEqaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pmkI2GIZ9Qh9LlHjey-w5A", "review_id": "7WdxVKa6S08FyP5Chz1c4Q", "stars": 5, "date": "2012-06-30", "text": "There are no words to express the value of the quality of service that you receive from Tina Yragui's Hands 4 Healing therapeutic overall body care. The value of knowledge of the body, the commitment of service, the excellence of research for each individual client. The degree that she possesses cannot be measured with a dollar amount because no dollar amount can beat this value. It is value what goes far beyond what you receive each and every time you see Tina. \n\nTina is a healer and is dedicated to you. \n\nIt just doesn't get any better!\n\nCarol Taylor-Tassone\nErica Elizabeth Tassone", "type": "review", "business_id": "hb9EA0McsItsYi_FvoWFIA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "-US_SpFlEAsu3ZRWY8Bsvw", "review_id": "KFG2OFPaX0N4omAILlq37Q", "stars": 1, "date": "2012-01-24", "text": "Food middle of the road... The staff is rude.. Seems like it starts with the owner. I think she makes the staff pay for everything that goes wrong so in turn they dont want to fix issues with poor, wrong food etc. I think she tends to forget the customers are actually what keeps a business open. For a long time it was the only choice in the area. Now there are multiple choices. If your in the area Chili's or Connolys is much better choice in my oppinion.", "type": "review", "business_id": "vYvT8J9uEh4Fqt7f9ILKlA"} +{"votes": {"funny": 1, "useful": 10, "cool": 4}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "Tx0t7Jr6K7UicgbWympFsA", "stars": 2, "date": "2008-04-01", "text": "This place was so bad on so many levels I'm not even sure where to begin. Our server kept calling me honey.. and seemed to be in such a hurry she wouldn't stop and listen to me. You know how needy I can get and need to be listened too and heard. We started by ordering the Baked Spinach and Artichoke Dip.. what I couldn't understand is 1, how did the chef let this go out and 2, no one but us could smell the scorched burnt smoke coming off the dish. This thing was so badly burned and scorched it was completely inedible. Sent it back and she didn't even offer to bring another one. Perhaps it was because they were so busy they just wanted the food to go out?\n\nSo I ordered their Famous BBQ Ribs.. I hate complaining to much but these were old ribs.. maybe maybe a day or 2 before.. pork takes on a funky taste when its fridged for to long.. the texture of the meat (when you could find any) was like jerky. I happily ate my Creamed Spinach (2 star yummy) and didn't eat more then 2 bones of the ribs. When the waitress came to clear the plates (she never checked on us) she asked if I was full. I told her that the ribs weren't to my liking.. she smiled and asked if I wanted dessert. \n\nOver all I would never come back to Don and Charlie's.. aside from the Creamed Spinach, which I can make myself, there weren't many redeeming qualities. A shame too because it's so close to the house. I don't get it because the Yelps are so good. Maybe they were having a bad night? It was so bad I wouldn't ever go back to find out.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "DY-U7c0451pUs25p_AhUgQ", "review_id": "zMuTMydgOXEXA7ycogchyA", "stars": 1, "date": "2012-03-29", "text": "If there was a way I could give this restaurant NO stars, I might have. The chips and salsa are the ONLY thing that requires a star here.\n\nThe service was less than average, the food was hotter than the surface of the sun, and the drinks were teeny tiny (and didn't much taste like alcohol). My husband ordered a green chile dish and it came smothered in red sauce, when he asked the waiter if it looked green or red, the server said, \"nope that's what green looks like\". WOW!\n\nSorry but I don't think I will be returning.", "type": "review", "business_id": "soiGohHtWOltGeomkSxzEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "uHQ2ZRacs1Zhi_38MQz2BQ", "review_id": "BpZhrMPGm5MyiSPYOJ0WwA", "stars": 4, "date": "2009-05-29", "text": "If you need something obscure, or you need to get everything you need in one place, then here you go. I also love how many different 1 shot mini bottles BevMo has to choose from.", "type": "review", "business_id": "obYD-4HxZ3gqhS5hPJKG_Q"} +{"votes": {"funny": 2, "useful": 10, "cool": 5}, "user_id": "EcgpGtxB5916NPqvXwMcjQ", "review_id": "wC9w5m_ROb0dLWMqVXjbDw", "stars": 4, "date": "2012-11-28", "text": "Handmade, in-store fine candies aand chocolates are awesome (way better than See's, but higher priced). The owners are really great people!", "type": "review", "business_id": "bbi-76L0uvQRrno57Qjpaw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kAMGHCEOlJxlY0wtxao9Rw", "review_id": "1_I9nQwAsG86w0vuwNg41Q", "stars": 5, "date": "2012-05-15", "text": "I have been here many times, pretty much can't go wrong here. prices are good service is prompt and friendly.", "type": "review", "business_id": "Bm2PBs_AZEtx93zdtwqUJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "oCFQmDotqcyIYAY1JyKUPg", "review_id": "22gEHz1TUHw1I9hGgOAnKw", "stars": 4, "date": "2008-12-19", "text": "I used to come here about once a week for their amazing vegetarian sandwiches. My favorite is the griefo with pepper jack cheese, hemp cream cheese, guacamole, sprouts, lettuce, black olives, onions, mushrooms, cucumbers, and tomatoes. The hemp cream cheese is to DIE for seriously! I also enjoy the humbolt, which is very similar, and the majic mushroom with sliced portabella mushrooms, teriyaki glaze, green bell peppers, pineapple and pepper jack cheese. The 8inch is soo big but makes a great and filling lunch. You can't beat the prices either. Get the garlic herb bread, it is the best. The only thing I do not like about this place is that the whole \"marijuana\" theme can get old and annoying. This location can also get really really busy and the sandwiches take time to make. Staff is usually pretty friendly and social though. One last thing is that if you eat there or have to wait for a while your clothes will smell like food :/", "type": "review", "business_id": "HMUvbAHRnbAczNrYy8e5MA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AK2Nt1PdjHlLVoEzF0FqpA", "review_id": "HOs-JvAydh1WF05wEO496g", "stars": 4, "date": "2011-08-20", "text": "This dry-rub barbecue was delicious. The \"sassy\" barbecue sauce was meh, but the sweet was good enough to make up for it.", "type": "review", "business_id": "dzncF6n6MHJLXUo4_J6eig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z4Z-wIgEcnOjeHclfF0yXA", "review_id": "WDrr9VfuAB0AMq6jfXarNg", "stars": 2, "date": "2011-12-23", "text": "The Vig was just okay in my opinion. I met some friends there for happy hour on a Friday evening and it was packed. We did get the drinks/app specials, and all the food we tried was just okay. The atmosphere was your standard trendy bar/meat market. (i.e. A lot of people trying waaaay to hard to look and act cool.) We had a good time, but I probably wouldn't go out of my way to go back there anytime soon. The people I was with we're great, but The Vig itself was 'meh'...certainly nothing special.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "msXzt_S78n3M7xLKowTTWg", "stars": 2, "date": "2010-11-17", "text": "Absolutely, positively bitter. They use a powder in lieu of syrups which adds a after taste I don't care for.\n\nThere was no color difference between my beverage (latte) and my friends (iced coffee). Why... I have no clue. We order these drinks everywhere and this has never happened before.\n\nI can see how a powder would be more cost effective but the taste was something I did not care for.\n\nMaybe that makes me a coffee snob, I am not sure.", "type": "review", "business_id": "iwzHQ7aBPrxKybarW5q5TA"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "FLaC8K2RxdeqNLpll5qynQ", "stars": 5, "date": "2011-03-06", "text": "As an artist, I've come to be very picky about the stores from which I purchase my art supplies. Arizona Art Supply is a GREAT store!!! Every time I visit I overhear the staff's experienced recommendations; they take the time to ensure that every customer's needs are satisfied. \n\nI am always immediately welcomed as I delve into the fully stocked and well-organized aisles. Yes, this is my kind of art supply store! As I browse the expansive selection of everything from drawing supplies to paint, easels and canvases to ceramic tools, an overwheming desire to create comes over me. AZ Art Supply has a HUGE selection of my favorite brands--Prismacolor and Golden Paints! \n\nAlthough this store is smaller, the prices are reasonable--they beat out Michael's prices for nearly every item. If you're looking for exceptional quality, a diverse selection and a knowledgeable staff, Arizona Art Supply is your best bet.", "type": "review", "business_id": "_A4x1TNYwm0XY1V882aUJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cZgbUqTxXV0-EIzRZEKlQg", "review_id": "-8a9TktdvoC01Xm69S6Q7w", "stars": 4, "date": "2011-09-05", "text": "Our visit to Scottsdale brought us into Fountain Hills to look for a home. While we were there we decided to look at the beautiful fountain we heard so much about. That's when we happened upon this place. The pizza was fantastic!!! It made us want to move here even more. Delicious!", "type": "review", "business_id": "vN4mFODLd-gLmDg261wsyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9pW26TfIHW2GV1zxCfvT-g", "review_id": "I6rtvk8Sc1U06DIuQ4kIPw", "stars": 3, "date": "2012-04-11", "text": "We had a large group and they honored our reservation with having the tables ready at our specified time as opposed to getting them ready when we arrived. We had a somewhat set menu. \n\nThe tofu dumplings were delicious. Satay chicken was alright. \n\nWe had a choice between 3 entrees. I want to give them higher ratings for their service, but the spiciness between the dishes were very inconsistent. You get to choose on a 1-5 scale and finding a dish that suited your desired spiciness was a hit or miss. Some people's 1-2 were super spicy and other's 4-5 weren't that spicy. (note: 5 is spiciest) \n\nAlso, we had a huge mess with the bill where they put all the appetizers onto one bill for a table, and none on ours. It was quite a mess trying to figure that out. Also, their timing for food was so bizarre. By the time 1 table had basically finished their dinner then the rest of the meals arrived. Then again, dealing with 40+ people is a lot.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BRpbP8FI9Q-MULAj6iyXHA", "review_id": "pOELqa1WtOTZN34UN0OQzw", "stars": 3, "date": "2011-09-07", "text": "We were visiting again, so of course that means at least 2 trips to Sugar Bowl! The food, service and ice cream were good as always, but WOW, the prices sure have gone up. I know that the economy sucks, but for what we got, the prices just don't seem to justify it. We had different waitresses both times. The fist was efficient but not very warm. We had Sandra on our second visit - and YES, she remembered us again! Could not believe it. She is very friendly and can really keep up when they get swamped. We will be back, but maybe only once per visit instead of 2 (or 3 or 4) times. Just can't afford those prices for what you get.", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HnqzojvN3AyZHjslUlxiJQ", "review_id": "E3816qsDqj9yCAPEpx5fOg", "stars": 5, "date": "2012-06-17", "text": "So yummy in my tummy. My sister and I went here for dinner and the food was as always-- very yummy. We had the marinated BBQ pork and the seafood hot pot at hot. We finished half the of the plates because they give you a lot. It would be better of the price wasn't as pricey. But overall, awesome service and yummy food! We will be back!!\n\nThey first serve you lil condiment plates from seaweed to kimchi (spicy marinated cabbage that has been fermentated). When they serve you your food, they will ask if you want egg in the soup-- of course!!! They crack it in front of you in the sizzling hot soup...drools. Serving you some extra rice for the soup and pork. We had to pack to go boxes because it was a lot of food. \n\nToday, we went again for Father's Day and our family agreed this was so yummy. We had the BBQ pork again with Dumpling Tofu soup (\"Yum-O\" Rachael Ray) and Bibimbap with rice! The Bibimbap was okay but everything was excellent. Our family of five finished nearly everything. :D so GOOOOOD! Going to come back soon! \n\nCheck this place out!", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IXuKjVb0F7t7T-BTpwLqKQ", "review_id": "P19m6G0uR48q1l83ajOI1A", "stars": 5, "date": "2011-12-17", "text": "LOVE the food!!!!", "type": "review", "business_id": "Nu0_tUBN6R9Oc-YsLVFNJg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kG8jkVFgOAOq6Ht6RvAjEQ", "review_id": "wk-1KK8GkTNtPA1wM-SDVQ", "stars": 5, "date": "2010-01-23", "text": "I am a huge Suns fan but my review is about the fundraising options that the Suns have to offer as well as their back-office staff.\n\nFirst and foremost, talk about a professional, classy organization. Whether you have fundraising experience or are a total novice, the staff treats you like you are the only group they are working with. My contact is Kyle Pottinger and he is always a gentleman. No matter what questions I have, he always answers them promptly and never makes me feel like I'm bothering him. \n\nThe fundraising process is easy and the tickets practically sell themselves because who doesn't want the chance to purchase discounted tickets? \n\nThe process is easy and the rewards can be lucrative depending on the target audience you are working with. The Suns will treat you professionally and courteously. You won't be disappointed.", "type": "review", "business_id": "m6h0xM8nvmjx-WeOjV6XbA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "PPXsoCqGb3h0w-ujzD6oEA", "stars": 3, "date": "2011-02-17", "text": "They have high definition pictures of their menu items proudly displayed on the walls, and I like that.\n\nRegarding the Chicken Pad Thai. The chicken and tofu were cooked perfectly, but the noodles were a bit chewy.\n\nSpring rolls were great. The pic on the menu shows them served in halves, but they arrived at our table whole.\n\nMy date had their Thai noodle bowl, and Id suggest skipping on the beef balls. Also, its very bland if you order with no spice.\n\nThe owner recommended that we vacation in Thailand. He also offered to install new granite flooring in out home. Travel agent, mason, restaurateur. He does it all.", "type": "review", "business_id": "ApUCpJ9aa6yVgsde16gYrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W9ZG5q-QIblXYeHgaPS5Uw", "review_id": "grH6ZNUaSqeER9H_qo3-CA", "stars": 5, "date": "2012-07-22", "text": "These guys helped me out with my rear windshield wiper. They could have just shrugged their shoulders and said they didn't have the part, but they worked with me and tried a couple of different options until we found a solution. Everyone I encountered was great.", "type": "review", "business_id": "EdQRXa0sTJ1vFK6_c8vMLQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "YbHL_lmvARxf0rz0WlVQPQ", "review_id": "9XAelcQLGb75xe2r6todGw", "stars": 5, "date": "2010-12-15", "text": "Eating in is a decent experience, but for delivery, I have yet to meet their match. When I order delivery I always get a 16\" chicken pizza with alfredo sauce on top, and for the last 6 years I have received it in 30 minutes or less all but 2 times. Its always tasty, fresh, and is my preeminent food for delivery, ever, period.", "type": "review", "business_id": "F3wzildlt2jM4OAQ2Z0ZJw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "b6CyeouS97Y8YSTi8T2xRg", "review_id": "4qZB6JCWSeUwWoCPu5_UWA", "stars": 5, "date": "2011-05-12", "text": "I love boba drinks but hate the word \"boba\". I always feel like an ape when I say that word. \n \nAnyways.\n\nThere was a period where I use to drink this stuff at least 3 times a week when I was living in San Francisco, so when I say I love something, I really do (or is it more like a creepy obsession?) So! When I found a boba place here I got excited, especially when I saw that they had green milk tea.\n\nI can't vouch for all of their drinks, as I've only tried the green milk tea and avocado snow, but every time I have ordered them they have been super good.", "type": "review", "business_id": "HhNY3X0kyrN5682La6N6Cg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "R7XtOWCTIh-VzdVDu9iYmA", "review_id": "L6CABV5Fc-a5apw9weE0NQ", "stars": 2, "date": "2012-04-09", "text": "Decentfood, but horrible service. Both servers walked by me three times while I was sitting inside without acknowledging me at all. I was by myself and felt as though everyone else that came walking in were immediately welcomed. I wish I would have received the same attention. I was ready to walk out when i was finally approached. Nobody came back to check on me to make sure everything was ok after they delivered my food. Being from Vegas I am not accustomed to such non attentive service staff. I guess that flys here in Scottsdale, but I expected more from the type of clientele that they have. On a positive note, they do have a cozy place that gives the feel of a French coffee shop/bistro. Hopefully this review will be helpfull in giving them insight into making sure that every guest is treated with the same attentiveness to service.", "type": "review", "business_id": "bxEd1ust_wI0Br-HLnEy0Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "hTKFGpi3ltCV4B-XDFRT-A", "review_id": "PLm5cOKBBOspHNMyfAHbmg", "stars": 3, "date": "2011-07-14", "text": "A girlfriend and I have been meaning to check Bombay Spice out for a while but have never gotten around to it until last night. (I found a great deal on LocalDines.com -use ref # 102729 if you sign up! Also, checking in with FourSquare got a us a deal! ) \n\nWe ended up going a little later (8ish) so there wasnt a wait or a crowd at all which was nice because the venue is a little smaller. The bartender was very friendly, our serve was a little distracted and took a little longer to respond to our needs but she was very nice.\n\nWe both had wine, the \"single glass\" serving is actually 2 glasses in case you are torn between splitting a bottle for $20 or just buying a glass for $6. I recommend the Falling Star Cab, it was full bodied and very yummy. The other wine we tried was the Hob Nob Pinot Noir. It was great, it had a delicious combination of earthy and sweet tones to it. (I am not very good with wine lingo, but those are my unofficial terms that make sense to me.)\n\nNeither of us were very hungry but we wanted to sample the fare so we could at least see if we wanted to come back. We got to choose either a free humus or a dessert because of my deal for checking in on FourSquare (POWER NERD! I know.) I really wanted to try the mango sorbet but we opted for the chickpea hummus and roti bread. For those of you, like me, who aren't sure what roti bread is- its much lighter than pita bread and a little thinner than a tortilla. Its very tasty. The hummus was very good, and they garnished it with diced tomatoes, onions and cilantro which i loved!\n\nWe also ordered the seared eggplant. It was AWESOME. It was a large slab of eggplant with a black sauce that was herby (thats a technical term in case you were wondering). They also served the egglplant with a yellow sauce drizzled on the plate which was sweet and very good, in addition to a small scoop of a red chili sauce (our waitress told me the name and I couldnt remember it for the life of me) which was spicy...I really loved this sauce it was the perfect amount of spice for the eggplant. \n\nI will be going back here to try the curry and some of the other things on the menu i cant pronounce. \n\nThere are a LOT of vegetarian/vegan dishes clearly marked on the menu. Their menu also boasts that everything, except for 9 or 10 items, is completely Gluten free.\n\nGood experience, definitely looking forward to trying it again for a full meal.", "type": "review", "business_id": "3GAPcBG8SowgrpS6UHlDeQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 4}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "N_oaJQezhQb5EeK6lzwe3A", "stars": 2, "date": "2011-08-09", "text": "An interesting concept that didn't end up being what I hoped for. \n\nI was pretty excited to try the Posh Noodles & Noshes Japanese street food as prepared by Josh Hebert. I love Japanese food and was looking forward to the dishes that are not readily available in Phoenix. Unfortunately I was underwhelmed by both the venue and the food.\n\nThe location inside the Lexington Hotel has definitely seen better days. An attempt has been made to create a temporary generic space with chalkboard walls and butcher paper topped tables. However, it came across as worn and dingy.\n\nOur waitress was not familiar with the menu or drink offerings ('I didn't work here last night') but was friendly and did find out answers from other staff. Foolishly thinking that we would love each and every dish and take home a lot to enjoy the next day, we tried a large assortment. An expensive mistake.\n\nDuck Gyoza w/ Ponzu - I prefer steamed gyoza over the fried presentation here. Also, these had the tiniest, greasy portion of filling I have ever seen.\n\nHomemade Tofu w/ Ginger, Scallion, Cherry Blossom - this was good, with a sweet, dessert-like flavor but a somewhat runny texture.\n\nOkonomiyaki - this 'Japanese pizza' was among the better items. However, the texture of the ingredients was strange - i.e. full slices of bacon rather than smaller bite-sized pieces made greasier than it needed to be and messy to eat\n\nTako Yaki - again, a strange texture with awkward large chunks of octopus surrounded by 'breading' that fell apart easily\n\nThe ramen dishes (Miso Ramen w/ Pork, Goma Ramen w/ Pork and Shitake Mushroom Rames) were small, and more or less indistinguishable from one another. We left most of them behind, deciding not to take anything with us.\n\nThe dessert, Green Tea Pot de Cr\u00e8me was a nice finish but did not make me feel better overall about the $100+ meal.", "type": "review", "business_id": "kJFS_3WlP6TFdNUYt6V6FA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DsoD6Nyv4n4gQpjIq_y5DA", "review_id": "m3Tz7zfvsK7MAkwOafA6XQ", "stars": 2, "date": "2011-06-16", "text": "I love Victoria's Secret, but this store has a terrible selection, and the employees are rude here. I have visited many locations all over the U.S., and was not happy with this one. They were very pushy about trying to get me to buy bras that I did not like as I only buy a certain style of bra from here. I also thought that there selection of PINK merchandise was severely lacking.", "type": "review", "business_id": "4xLRmAD8QeqbN7Q7xTbmYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ksu2OeDaXiHurIX8gUHmkQ", "review_id": "JkNadCNcsQLnK9SRjDPvSw", "stars": 5, "date": "2012-03-10", "text": "I found Cake Frenzy through an service listing on Craigslist while looking for someone to create our wedding cake/cupcakes. Not only were we on a tight budget we only had about 2 1/2 months to plan for the venue we wanted only had a few dates available. I met Jennifer about a month prior, my fiance' and I knew we wanted a peanut butter & jelly cake and she happily obliged. I emailed her a picture of what I wanted and the day of our wedding when I first saw our cake I almost cried. She went above and beyond my expectations. The cake was beautiful with sugar flowers and gelatin butterflies. All of our guests loved the flavor combinations and the decorations. I highly recommend Cake Frenzy, she is professional, she takes pride in her work and extremely reasonable.", "type": "review", "business_id": "lTgbj26dpv8Ltzbf83T6oQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gg_OKjOAl_vVmdh5ZETuiw", "review_id": "xojz72lSkjuhZylKIeSDRA", "stars": 5, "date": "2011-08-20", "text": "Love it.\n\nLast night I dropped into Romanelli's for the first time after driving past a time or two. Glad I did.\n\nIt's a bakery and deli that offers a fine selections of meats, cheeses and breads. They also sell all things culinary Italia. \n\nWhen I stopped in it was 30-40 minutes to close. I went directly to the deli counter for a sub and was met with a challenge as I decided which to try. I opted for George's Special (ham, capicolla, salami, mortadella, pepperoni, provolone and hot peppers). Given the close proximity to closing time I was expecting a sub on older bread that had been sitting around all day but it was still soft and very fresh. The sub is easily the best I've had. Amazing.\n\nI also purchased a cannoli. I'm picky about these things. Too many places fill 'em and stock 'em and the filling makes the shell soggy. Romanelli's fills them upon order just like the Italian bakery near a friends house in Newark, NJ (until last night the best cannoli I've had). The cannoli was top notch. Simply the best.\n\nRight here in Phoenix, on one night, I had one of the best meals ever. I cannot wait to return. I only open they were open past 6pm.", "type": "review", "business_id": "DE8UVNCCpOE0vTAbGaMoeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xo4i9b1ytYPa2hbNXP_mYQ", "review_id": "TrPutW46q_oVN6xScoZM7Q", "stars": 4, "date": "2011-11-03", "text": "I have been coming here for the past 4 years; the pizza and food are great. The service has been very good, some seasonal workers and some regulars. I bring friends from out of town here for good pizza and wings. I would recommend it any time.", "type": "review", "business_id": "_w2wIsBh-1M1ZCed2KjLlw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "g2mozOU_F1nzpjLDY4CfzQ", "review_id": "WypVTJ1PseynOeSROw3Yvg", "stars": 3, "date": "2010-11-18", "text": "Just a quick review to get the ball rolling. Popped in here on opening night, and was pleasantly surprised. Hubby and I split the Mussaman, a hearty portion of curried veggies and short-ribs, and the Garlic Veggies with tofu. The Mussaman was by far the star, and given it's $16 entree price it needed to be. I see a lot of promise here, though I do find the prices to be rather high for this neighborhood. I should hope once they get their liquor license (expected sometime in January according to the waitress) that the food prices will come down. I'm not holding my breath on this one, however, since the moniker \"Modern Thai\" has become euphemism for \"Expensive Thai.\" I look forward to trying SaBai again after they've had some time to coalesce.", "type": "review", "business_id": "cInzGnaFZ3EIItvFXl1MvQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "DYDCOM77BTeQo18Z5tYlag", "review_id": "i4kZYaGypxV6LPCroMK5-A", "stars": 1, "date": "2012-10-23", "text": "One stop has one goal and that is to get the $80. diagnosis fee and split. Francisco told me i needed to spend over $1300. for parts the manufacturer only charges $316 for. Stay away! I intend to file a complaint with the Attorney Generals office today, hopefully they will stop this nonsense.", "type": "review", "business_id": "mKtHJOe1rtf-zGewKpAqrw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "x5ve4LVa-iIfZ65Qe9Pqvg", "review_id": "TCCeEXnStlwi7nQXj0bxRQ", "stars": 4, "date": "2008-08-07", "text": "I love the kitsch of this place! Bears bears everywhere! Black Bear Diners are usually found in small to medium sized towns, but for some reason this one is smack in the middle of urban sprawl. So not complaining though, because it means I don't have to drive to the middle of nowhere to enjoy their old-timey newspaper-menu and awesome pot roast! \n\nTheir fare is strictly comfort food and always well-prepared. The full portions will fill an average 200lb guy, so it's nice that smaller folk like myself have the option of getting the small (or \"senior) portion! \n\nSave room for their personal-sized pies...you won't regret it!", "type": "review", "business_id": "1F-pelV0fTduYV_vCrvjLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "WowIQci4KEfcKZEeAdydmA", "stars": 1, "date": "2007-03-08", "text": "this another place that i would give no stars to if possible. \nit's been on the corner of mill and university for as long as i can remember, which is impressive since nothing older than ten years has been able to withstand the rent increases, and even more impressive because i don't know a single person who goes there.\n\ni went in there one time, for drinks and walked past one of the foulest salad bars I've ever seen. for some reason, it's right by the door. instead of walking in to see a hostess stand you walk right into this brown mess of vegetables.\n\nafter seeing that first off, i wouldn't dream of ordering food here. the place is also dark and dirty and there's never anyone inside of it.\n\nseriously, I'm really curious how this place survives. awesome little neighborhood wing and live music joints like long Wong's get torn down for high rise condos, yet gross, ghost town ruby Tuesdays hangs on the corner of main and main of Tempe. what is wrong with the world?", "type": "review", "business_id": "C6gkuLYG_NOobXxaXwUUpA"} +{"votes": {"funny": 1, "useful": 10, "cool": 3}, "user_id": "zNR8Q6Fw9UvlVSgxwEy-3Q", "review_id": "cVDmpkto6Fs-LwCkxKPx3g", "stars": 2, "date": "2011-03-21", "text": "I think all the 5 star reviews are from people who work here, of which there must be 500. Look at the trend all 5s then 2,3 and a few 4s. I HATE that.\n\nFirst off, it bills itself as a steak/chop house or American Grill- whatever that is. It is not a Steakhouse, despite have butcher in the name.\n\nLets start with the ambiance: Don't ever sit in the back room, it is so loud it is like trying to eat in a drum. Also, what is up with the TV? If I wanted to watch TV while I ate I would stay at home, or go to a sports bar.\n\nNext the service: It sucked. There must have been 20 Servers, yet service was slow and inattentive. I know the place is new, but they did not even have a wine list printed. When we asked for the wine list, they first said they did not have one. Sitting in the back room, I could see the freaking bottles. Then, they sent us the manager, who was clueless. She then the Bar manager. Who looked like he used word to type up what he thought he had. He was knowledgeable about wine at least. Other than that the servers were slow and did not know the menu well.\n\nDrinks: My Dad ordered a Margarita, it was awful. We complained to our server who sent over the Bar Manager. The bar manager made him a second one, which was passable. For that price it should have been great. I ordered a draft IPA, they were out. I got a 22 bottle it was good. My mom got a 7 and 7, it was fine. \n\nNow the Wine, WAY over priced. An average markup is about double, it was triple or more here. I.E. a $12 bottle at the store should be about $20-24 in a restaurant, it is $36+ here.\nNo value\n\nFood: Meh at best. The best part of the meal was the Cheese/meat plate. Me and my Dad had the Ribeye. The meat was drowned in a sweet sauce with mushrooms and cauliflower, I liked the Sauce, My dad did not. But the sauce really over powered the steak.\nMy mom had the Pork and Beans, she loved it. All in all not the worst meal I ever had, but no value here.\n\nDessert: I would not know, I am allergic to Peanuts and True nuts, not a single desert was nut free. My Mom had the peanut butter cup - she loved it. Also, they had no dessert wines, or any after dinner drinks.\n\nValue: $80 a person with food, wine, and drinks. I can think of many other places I could go and get a better meal for that price, or less! For example, We had dinner at the Tuck shop the night before, the meal was great, and drinks and dinner was $80 Total!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GveOUdXagY6tuZttk2SUew", "review_id": "IdFTGG7jVjN-NAJc09hKYg", "stars": 4, "date": "2013-01-02", "text": "We have tried every Chinese delivery in Chander over the past few years and have found them all to be barely edible...and we aren't picky eaters. Honestly, fellow Yelpers, we even didn't like the one's you gave 4 stars. Where's the flavor? We tried Asian Grill delivery tonight - wonderful...delicious! We finally found excellent Chinese food delivery in Chandler!", "type": "review", "business_id": "B6sT5YGBYB9KfhkiZtzQ4A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "AV4-6n6SKop4Bp5S15c98Q", "review_id": "XFVJstX3gRXv3Bhitzk9rA", "stars": 1, "date": "2012-03-06", "text": "1 star for service, but the food is not ok :( they literally put 4 pieces of chicken on my taco. I let that go & figured was a mistake. When I went again, ordered different item & same result. Little to no meat. I will not be going back.", "type": "review", "business_id": "K9fIADfO_zKFPFm75A1Hxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cVR4YQYdouuuSTra25akww", "review_id": "8P7Z3mVRTNGsje6-g7POqw", "stars": 5, "date": "2012-05-26", "text": "My Fiance and I went here today for the first time. We shared a meat pie\nand a serving of the largest Bosnian Sausage dish. \n ALL of it was amazing. I cannot speak highly enough of their food. Service was very prompt and the waitress courteous and quick. The food was very reasonably priced and the restaurant itself was very charming and nicely decorated. All over, the ambiance was pleasant. I look forward to returning!", "type": "review", "business_id": "fm4X0SV2Kofj-57ZfHiZ_A"} +{"votes": {"funny": 16, "useful": 9, "cool": 13}, "user_id": "du6KeE54IFbPiXpU3LOd1g", "review_id": "RUe0yOda890ngDaz32MZ8g", "stars": 4, "date": "2011-04-01", "text": "I read that the guy who owns GoDaddy shot an elephant...at night...using spotlights...I'm thinking his fully tumescent \"manhood\" must be the size and color of a 7 year old raisin...I can't imagine what he thought he was proving by felling one of these magnificent creatures with high powered/laser sighted rifle from 500 yards away, while it stood transfixed by the spotlights glare.\n\nThere was a word that we used for poachers that did the same thing while hunting deer, when I was a kid back in Oregon...\"Asshole\".\n\nHe did prove to me that I will need to move any and all business I can away from GoDaddy...\"vote with your feet\"...but I guess that's another review.\n\nThe Beautiful Carin and I were in Scottsdale on business this past week and we take these opportunities to spend time with those near and dear to us!\n\nAt the very tippy top of the \"near and dear\" list is our lovely daughter, Whitney.\n\nWhit is a Vegan...with a capital \"Vege\"...and she was distraught by the wanton slaughter of an African elephant by some dot bomb misogynist.\n\nSo she was thrilled that her meat lovin' daddy was going to take her to Green for dinner...an experience so very alien to me that I made Carin pick up a pound of fully cooked bacon and bring it to dinner in her purse for me...just in case!\n\nI am not a Vegan...I was born and raised on a cattle ranch...I do love a good medium rare rib-eye...I don't think it hurts Elsie the Cow to have a teat twiddled so I can have cream in my coffee or cheese on my burger...and yet, the elephant deal brought a tear to my daughters eye and touched my black flinty excuse for a heart!\n\nI checked Yelp and saw that while my Vegan friends on yelp love this place, my decidedly carnivorous Yelpy friends were also nearly unanimous in their agreement that Green is foodgasm inducing!\n\nWe ordered way too much food...Chili Fries, Egg Rolls, a Green Burger, the Secret BBQ Chicken Sandwich, No Harm Chicken Parm...I barely had room to choke down a couple of Tsoynami's and an oatmeal cookie sandwich!\n\nEven after we were stuffed, Whitney took home enough leftovers for a week!\n\nThe big question about Green is \"why didn't I ever eat here, when I lived here...Why?\"\n\nI don't know...but I will be putting on my hemp cargo shorts, a tie dye t-shirt and growing a neck beard...and I will be eating here again.\n\nI like to \"fit in\".\n\nThe menu is fairly extensive...the portions are plenty big...the flavors are bright and well defined and the textures and aroma's (always a big deal for me) are both exotic and welcoming.\n\nI didn't have to break out the bacon (although I should have taken my flask...no cocktails at Green for Donald...oh well, agave sugar cola was a delightful departure from the ordinary).\n\nI really could eat this way on a regular basis...it's that good...I probably won't, but it's nice to know I could!\n\nI imagine that Karma will have it's own way of dealing with a self-justifying, trigger happy technotard...for me, the occasional dinner at Green nicely balances the Karmic forces at work in my life...and tastes good, too!", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "hqnySkbeUJGoC6h76gtSIQ", "review_id": "8Wi_nK2q3U_EmRppS6AIFw", "stars": 4, "date": "2010-02-03", "text": "I have since revisited the store several times and I would be remiss if I didn't update my rant. Debbie the owner has been friendly and helpful ever since I asked nicely. I suppose with the amount of lookie loos or window shoppers in Old Town I can relate to the lack of enthusiasm.", "type": "review", "business_id": "VgOnAwmaca49g5ESmZrcng"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "GEBvuekkQHPJNaAtLkoV8w", "stars": 5, "date": "2007-02-09", "text": "Buckle is a really cool store. They carry both men and women's clothing and they have a huge selection of jeans. From Silver to Lucky, they're all there! \n\nThey also have really cute tops- from casual to dressier ones you could wear out to a club or bar. It's nice because this store has its own style...kinda casual, a little funky, but definitely different than anything you'd find at Macy's or Nordstrom's. \n\nThey also carry some shoes and accessories and the staff is really helpful. You'll also get a little punch card with your first purchase and after so many punches, you'll get $10 or $15 off.\n\nThe clothes range in price, but generally, I'd say everything in the store is pretty reasonable. This location is in Paradise Valley Mall- check it out!", "type": "review", "business_id": "R8gQHxVqHhehMINgAAfHPw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "SINn9supzIkv77lgB4OnZA", "review_id": "C4biUihjN5upcGmx1dHJ-Q", "stars": 2, "date": "2011-08-07", "text": "I'll agree that this is a great meet up place in the city. Nice neighborhood, adequate parking in the structure behind, and a greta atmosphere with great service. The menu is interesting and I'd come back to try more but here's what our first visit was like.\n\nAs a Starter we had the Spinach Quesadilla made with Lavosh and it was great. I mean really great and enough as a meal for two. For that alone I'd go back.\n\nMy better half had the Falafel Pita and thought it was OK. I had the Gyros Pita and got luncheon meat. I'm talking precisely sliced, straight from the fridge but thrown on the grill to warm-up luncheon meat. If you go online to see the menu, it's one of the items you can click for a nutrition chart. Here's what it reads for the \"meat\" Gyro Beef [Beef, Lamb, Water, Bread Crumbs (Bleached Wheat Flour, Water, Dextrose,Salt and Yeast may contain soy bean oil, Calcium Propionate), Soy Protein Concentrate, Less thean 2% Salt, Garlic and Onion Powder, Monosodium Glutamate, ];\n\nSo, the takeaway here is stay away from the Gyro. \n\nBut, Hey! Gyro IS a pita. I expected a reasonable execution. Heck, make a Gyro meatloaf and slice it up at least. \n\nYes, I'm bitter.", "type": "review", "business_id": "TnkxapUN4nWMz_z5h3qMYg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "Y_iCmH_z_T5cOy3_8p_pQw", "review_id": "qbw_6lX5pyM7YBWxHrBbbw", "stars": 5, "date": "2011-08-21", "text": "Like others, I found this studio through a Living Social coupon. It is a great studio. Kim is so friendly and fun. I would highly recommend the yoga classes. They are both challenging and relaxing! It is a small studio, but that gives it a really nice, intimate feel. I definitely recommend it!", "type": "review", "business_id": "6Lo25bdGe3qEdFLGygBsPw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yDCjypQo1dpQ7rwgNx9f6Q", "review_id": "FgmtoIJjj3PQTD-X6ru5Kw", "stars": 4, "date": "2012-06-03", "text": "Kind of cold, otherwise your typical Paradise Bakery. Delicious chicken Caesar salads.", "type": "review", "business_id": "TisnIBR2lMvT1DMC95_eHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oTB3jV0wp1pf3bHy6Lxv2A", "review_id": "6uAN_mdFFpKHyCyUxvvC0Q", "stars": 5, "date": "2011-08-02", "text": "I freakin love this place. My favorite thing is to sit and eat facing the counter and watch new people come in and get all confused. Now that's just funny. My first time I was the same way, like what the hell do I do here. Now I'm a pro. Stack it deep and use another bowl for smashing, Soba noodles piled so high it looks like a circus act getting the bowl to the cook. Mmmm....good.", "type": "review", "business_id": "sa-CgzlC0m5xrspvBbz6xA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "df0YRtus3XaN64pzs8iteg", "review_id": "RV6BEdJNPxjwQQazQRXqAA", "stars": 4, "date": "2011-01-31", "text": "Who woulda thunkkkk Scottsdale, AZ would have such amazing soul food??! They surprised the hell outta me!\n\nComing from someone who regulars Roscoes chicken &waffles... believe me when I say LOLO's is BOMB!!! \n\nI got the 3chicken combo... w greens, mac&cheese &cornbread.\n \nCornbread.. hands down Roscoes!\nGreens... Roscoes\nMac&cheese... LOLOs for suuuree!\nChicken... tied.. they're both really good!\n\nthe staff is super friendly!! can't wait to go back when i visit AZ. (=", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "oqcdLgCFXYhdd70qfl7XeQ", "stars": 3, "date": "2007-03-02", "text": "So, yea. Kelly's review has me more than a little concerned. Thinking we won't go back for awhile. Most likely quite awhile. I'd rather be sure they have that crap taken care of. Literally.\n\nBut here's why we'll still end up going back. It's all about 3 things. It's conveniently located. It makes you feel like you're eating healthy (Note - doesn't really encourage healthy eating, more just a healthy attitude. Keeps the brownies, chocolate pudding, pizza and mayo based salads in large supply) And then finally - Coupons. They have coupons ALL the time. ALL the time. \n\nSpecial note - if you aren't that hungry - don't go here. Go somewhere else where you can split your meal or take 1/2 home. Here that 1/2 a plate of salad greens is going to cost you just as much as the guy on his 4th plate.", "type": "review", "business_id": "wTiQXYB9fE9rcSZDsZgbtQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "-vRFUY8ixuNniCCNVvmkRQ", "review_id": "CyNsiOkW3PcB-JZAZ3SxUg", "stars": 5, "date": "2012-06-01", "text": "If you want to go back to the future at the movie theater Silver Cinemas is the place for you- I felt like I was in the 1980- the decor LITTERALLY says it all.. I kid you not, I am as frugle as the come and you get & more than you pay for here -($3.00 everyday except for tuesdays $1.50)\nhave I mentioned the minnie arcade? Epic place to relive your childhood on date after drinks next door ...", "type": "review", "business_id": "Ay840nDkj5qfHTAKSrb1Sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JlMLNh0ECg0tgZKUL818DA", "review_id": "8vjB_5z6F0xnkiWNy_PiRw", "stars": 5, "date": "2012-02-01", "text": "Until Bobby Q's entered my life i wasnt a fan of BBQ anything! made me kinda sad to see so many people enjoying some messy ribs but anyways I i digress...This place has changed my life for the better!. Their St. Louis ribs are fall off the bone AMAZING! and their Mac n Cheese is a must have! I have to admit this place has made me a bit of a ribs snob, if something doesnt come close to Bobby Q's i automatically right that place off.\n\nA short review but you get the gist of it...", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 5}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "wAL9qe2PCJORCcAoCL7Gvw", "stars": 5, "date": "2007-03-22", "text": "WOW this place is good! SO good! And not just yummy good, but intrinsically good. Check out their amazing list of environmentally responsible business practices - http://essencebakery.com/essence_bakery_environmentally_friendly.shtml ! \n\nThat, and it's cute. And it tastes Yummy! And they are SO nice! SOOO nice! And their deserts are just disgustingly cute and beautiful and freaking good. I almost bought the mini box of 4 cupcakes for just $3.50. Bite sized so not too bad, but if I bought them today they'd be gone before I got home. \n\nI got their grilled cheese w/ mozzarella, basil and tomato on grilled buttery brioche bread with a light and tasty green salad on the side. It will be hard to not come here every week. I love that all the drinks are refillable - and it's up to you to refill them. Coffee, tea or soda, just walk on up and fill your glass. And I love that it's all so fresh and local! \n\nImportant note - You order at the counter, they give you a number and bring out your food. If you're paying w/ debit card, they will ask you if you want to include a tip. That threw me. I'd been in the place less than 2 minutes - how do I know if it's worth the tip - or how much of a tip it's worth?? Bring some cash or plan to deal w/ that question accordingly.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "PBI_r3y_s2McZRLLhyPfWA", "stars": 5, "date": "2010-09-12", "text": "What a cool little place tucked away behind a strip mall. Would never have found this if it was not suggested by a good friend who raved about the cappuccino! He is world traveler, so, it's a must try if it's the best cup he's ever had. He was right! Don't know if it's in the beans or the care that they take to make it with a fab froth decoration on top. My hubby and I loved the caramel brulee taste.. My son loved the hot \"warm\" cocoa. Yeah, we walked in as a family last night and almost everyone turned our way since we did not fit the hip college crowd. Everyone was really friendly, though. The sweet young man behind the counter gave my son some micro cinnamon doughnuts and scored major points with the little dude! We will be back.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "y0kjuHVdGQhLd-bqQ0gZnA", "review_id": "Mh4xsviaTXgcXXoFyhaPCQ", "stars": 4, "date": "2010-06-28", "text": "This place is great! I've eaten here twice now and both times the food has been wonderful. I've driven by this place for years and it always looked closed to me. The windows are very dark. My husband's barber told him his customers (the barber's) drive all the way from Scottsdale to eat here. We decided to try it out after hearing this and reading good reviews about it on Yelp. The first time we went for dinner. I had the Osso Bucco and my husband had Seafood Paella. Both were great. I've had Osso Bucco in high end restaurants that couldn't compare to this. The second time we ate here for lunch. Husband had the Philly Cheesesteak with Peppers, Onions, and Mushrooms. I had the spaghetti and meatballs. I had some of his sandwich and we both agreed it was the best Cheesteak we've ever had. The sandwiches are loaded with fillings and are not salty. Spaghetti and Meatballs were good but I like Babbo's and Humble Pie's better. I would have given it five stars but the atmosphere is not the best. Our first waiter even told us they do have the reputation for being a hole in the wall. The service is very casual with no sense of urgency. On our second visit for lunch our waitress told us she had been there over five years and they have quite a few regulars. Both times we have visited the restaurant was almost full. Try this place out even though it is a \"hole in the wall.\"", "type": "review", "business_id": "rrWhi2TL0smrbihvavZxcg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "ibhV9mSDM-ACwsq6kINA5A", "stars": 3, "date": "2012-07-18", "text": "Jersey Mike's is okay. It's a chain place, and a bit over priced for fast food. I ordered a philly cheese steak. It was mostly bread, with a few thing microscopic slices of meat. A little cheese too. And a sliver or two of peppers. But mostly, it was bread. I think it's funny the people that work here try to make small talk with you. \"So, what are you guys up to tonight?\" I think it would be fun to just try and f*#k with them, and say something like, \"Oh you know, smoking a little meth and just chilling with some hookers.\" See what they say to that.", "type": "review", "business_id": "1_43FZHx3P5D7X-CpIR9WA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y_ZITL9cYCKgBgDCwUQrow", "review_id": "3UvVKx-DAJNFPbWb1F4Whg", "stars": 4, "date": "2011-08-07", "text": "I have been here a few times, but mainly at dinner. Dinner Has always been great, great waiters and staff, with a LCD TV playing almost famous famous bolywood movies. LOL It cracks me up when they dance.....LOL...anyhow, Great vegetarian choices for people who eat there veggies, but trust me, I am a MEAT eater, Chicekn Tika masala, Little dry but still good. My favorite is there Palak Paneer. Great for the vegetarian. I have also tried there lunch Buffet for 11.00. I give a Thumbs up.. Good, serve yourself, and pig out!!!!!!", "type": "review", "business_id": "LYyGQgL60VKdV-p_9OxmWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WeFxOADIRIDgdgjg8PmQdw", "review_id": "FjYsp-wwywN9jpwoNaP7pg", "stars": 1, "date": "2009-07-29", "text": "I was here for a conference and saw their sign for a $10 lunch special which wasn't available that day. Took over an hour to just get a lunch salad. The waiter had major attitude.\nAvoid this place!", "type": "review", "business_id": "4FS5otEktCyI1aDpg_h03g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_Lz4b5QL0K8ndeyz2vxslA", "review_id": "S3bWrlDaBAZqx2LJPW924A", "stars": 4, "date": "2012-09-19", "text": "I have friends that I meet there once a month for a delicious greasy spoon breakfast and these guys never disappoint. I am a breakfast maven so love their hash browns most of all. If I'm feeling a little decadent, I order a side of gravy with them. It's really nice to sit outside during the cooler months and have some fries and a shake too!", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qo7OFaG6cY3nHyzVHaRskw", "review_id": "WgK-pkPIU0PXceJt9pGDvg", "stars": 5, "date": "2009-03-31", "text": "Love it!!! Wish we still lived in Arizona as Chino is the one thing we miss. Every time I think about Chino Bandido my mouth starts watering. If I am ever in the state again I will drive out of my way just to go to it again. YUMMY!", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "WRY-wk7t2u7xxrIwWbQu0w", "review_id": "L0d5zPb019LfKStL2d4hzw", "stars": 5, "date": "2009-03-22", "text": "I lived off Salazar Bros my first year of college because I lived right near it. Must have eaten there twice a week minimum. I was heartbroken when it turned into Armando Bros because as much as people told me they just changed their name, they didn't. It was a different restaurant. \n\nI had written it off as another great place gone to the pages of history until I moved near 48th and Baseline, and 'lo and behold there was Salazar's, tucked away in the Fry's parking lot next to a Little Caesars and a clothing outlet that appears to have escaped from the mall. \n\nThe interior itself is cheaply thrown together and completely forgettable. The only thing the employees seem to care about is making food. And none of this bothers me because they make some damn amazing food for cheap prices.\n\nI recommend the adobada burrito with extra sour cream and 2 things of red sauce. It's pork brushed with a delicious sauce of some sort. Comes with pico and guacamole. I sometimes have to convince myself to try something new off the menu. Brownie points for carrying Pepsi products as well, I take Mountain Dew with my burritos.", "type": "review", "business_id": "FyyNwrfVbCG3BsYEM5csQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DKi8rNg_jTZpVYs5BVVnRw", "review_id": "ODykrO2NWH-RIAttQP7Q6g", "stars": 5, "date": "2012-11-03", "text": "I have now visited Herb n' Flavors several times. I love supporting local businesses who have sustainable practices. This place uses local farms for their produce, safe from GMO's and pesticides. So, I was already a fan before I walked in! Everything I have tried has been delicious, and the owner is such a cool guy- always so friendly to the customers. The food always tastes so fresh, and full of flavor! They have a little something for everyone. I am a gluten free vegan and my husband has no dietary restrictions. We always both leave happy. I definitely recommend this place. I would like to see their business continue to grow and stick around for a long time! :)", "type": "review", "business_id": "7eUFOcfxuXDdrHGVSp3_9A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "HJLwvRnK22elM2vA4C4XtQ", "review_id": "a_wQKZwhbCd0uBuV5o2BXg", "stars": 4, "date": "2012-05-14", "text": "One of my regular buffet stops. great service and average food.", "type": "review", "business_id": "SS073W0tN3nvG36Qy6n0qg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "BXLjzyOkEsyTq0facHWjng", "stars": 3, "date": "2012-01-14", "text": "We received a Netflix subscription from our daughter for Christmas along with a Roku box. We have the streaming stuff. The video and audio quality is very good (almost as good as a dvd).\nHowever---many of the things we would like to see are on DVD only and that would DOUBLE the monthly cost of Netflix (UNACCEPTABLE).\nMany of the streaming programs are FREE on Crackle and Hulu (not to be confused with HuluPlus which charges).\nOverall, it is OK but I'm not sure that we will spend the $96/year when our gift subscription is over since a lot of this content is out there for free.", "type": "review", "business_id": "9jBTMRNxvYyyHAlCGVO91Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "45Cf2MLgLhwnXoLY_zY2EQ", "review_id": "AUQLbK9vP-FyWveaFh7B4A", "stars": 5, "date": "2012-10-07", "text": "Tried them out for Restaurant Week. The food and service was excellent. I will certainly be back and loved the atmosphere. We sat at a booth and very comfortably sat 3 adults. The wait staff was non stop on refilling drinks, bringing more bread, making sure the food was cooked to order.", "type": "review", "business_id": "5o5MLNPmAeakGgdqeGyMvw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "Mp5GMmdgNr5UzlIBm2J_Aw", "stars": 4, "date": "2007-07-11", "text": "Nice resort located next to the Desert Ridge shopping complex. If you're from out of town, this would be a great place to stay since you'll be across the street from a ton of restaurants and bars.\n\nI went to an event here, and haved stayed here a few times. JW Marriott has hosted a few wine tastings that I've gone to, and the resort is super nice, with a staff that is ready and waiting to help you no matter what it is you need.\n\nThe rooms were decently sized and the bed was big and comfy. The bathroom was nice as well. The resort has a lot of fountains around and huge windows so you can check out the great views.\n\nThe pool area is where it's at though. They have a great lazy river to nurse your hangover on, and a water slide for when you're feeling better. Of course you can get drink and food service out there and you can even rent a cabana- which I recommend. It's not that pricey- around $100, so if you get a few people to go in with you, it's no biggie smalls. The servers are way more attentive to you when you have a cabana and you can choose different packages that come with water and fruit or lunch and so on.", "type": "review", "business_id": "jPhmaY35qGP2qNc68viXPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MppkYbypgGl7h4pCWWM3rg", "review_id": "OXFYCSpUaaNJWoW1zk0wYw", "stars": 4, "date": "2012-12-02", "text": "Great brewery and open atmosphere! Had the Buffalo Chickens sandwich. It was great. Washed it down with a Sunspot Golden Ale which was awesome. Will return to sample the other beers. Making a reservation online worked like a champ.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 7, "useful": 5, "cool": 5}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "w_1eaDHCD8DGXUPD1RbP5A", "stars": 2, "date": "2007-10-16", "text": "I'm going to break this down to explain my two stars. Here we go.\n\nTHE GOOD: \n* Great Sindhi biryani - the rice is flavorful, the chicken is tasty, all in all a great dish. \n* Chicken boti tikka (boneless pieces of marinated chicken grilled in a clay oven) - also tasty, but have had better elsewhere\n* Naan - Really good stuff. Crisp and soft in all the right places - exactly how it should be made. Better than 95% of other Indo-Pakistani places in the Valley.\n\nTHE BAD:\n* Chintzy interior which seemed like you just warped yourself straight back to the Punjab somewhere, complete with water-stained panels on the ceiling. 99.99% of the time, this doesn't faze me at all, but something was a little off and I don't know why.\n* A surly \"aunty type\" who's standing behind the register and doesn't even want to greet you unless you're apparently related to her or go to school with her kids\n* Said \"aunty type\" disappears into the kitchen for 5 minutes at a time, so you stand around and wait. And wait.\n* Said \"aunty type\" expresses nonverbal displeasure when you ask her for anything. Case in point: Asking her for tamarind chutney. Even though you waited for your food for 30 minutes.\n* Said \"aunty type\" brings back a tiny plastic cup of goopy, thick tamarind paste. Huh?\n* Said \"aunty type\" doesn't say \"thank you\", smile, or anything when you go up to pay, even though you've been nothing but friendly and appreciative. So much for engaging a potential repeat customer. She could care less about your patronage.\n\nTHE UGLY:\n* Big screen TV tuned to some badly acted Indian soap opera about some ancient king of Sri Lanka who tries to get it on with his handmaidens while his brother schemes for the throne while twisting one end of his moustache, but then switched to another channel showing bad, unknown songs from 4th-tier mid-90's Bollywood movies. Although I am not kidding you...there was one video where a guy and a girl were doing their running around and singing thing....in the SWISS ALPS. And then, all of a sudden, in the middle of all that snow, a table appears full of Indian food and an umbrella advertising beer and pretzels. WTF? \n\nSo, in the end, here's the equation:\n\n1 Pretty Good Food - 1 Dubious Dining Room - 1 Surly Aunty Type - 1 Singing/Shrieking Girl/Guy While Eating Curry On The Matterhorn Which Makes No Sense - 1 Overly Randy King of Ancient Sri Lanka Who No One Really Needs To See = 2 Stars.\n\nBah.", "type": "review", "business_id": "RtApx92iFX4n-e1VlQlkmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hb49IsEZltm85wLz3uMrmw", "review_id": "XS5Lvk8WFNmS0bCqdl-agw", "stars": 1, "date": "2012-10-18", "text": "My family and I ate here just a few days ago. It was an experience that left me yearning for more out of a restaurant I have seen so crowded over the years and decided to try with a group of 7 of us in the family. First off we got there at 10 am and were missing only two in our party so we had to wait to be seated which was fine. Once the rest of our party showed up at 10:07 we were not seated until after 10:30. When we were seated we were all scrunched together at a medium sized table that would comfortable seat 5 adults. Well, there were 7 of us total and needless to say it was very tight! The waitress stated that we could take our water and go wait back up front for a bigger table but we were looking at roughly 40 minutes of waiting again!!! Seriously? We ordered drinks first and the waitress brought my father his tomato juice and almost spilled it on him but instead spilled it all over her hand. Then she sat the glass down in front of him with juice on table and all over glass and left! She never came back with a wet towel to clean up her mess!! We all ordered and the food arrived quickly. This was the only part of the experience that was good, sadly to say. We received our food order for 7 of us within 15-20 minutes which was excellent. My uncle and grandmother both had charred toast (it was black, not just black around the edges) . The bacon looked like dried strips of hard leather. Overall, none of us will be returning to this place! It was is so overrated. We are headed back to RANDY'S here in Scottsdale to do our next family breakfast.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "T2YhY--VPurB8rPJ-Q5giw", "review_id": "OG6fluz_DxfnMYcfnmmqrA", "stars": 3, "date": "2011-09-11", "text": "Spa whore, I am! I work in the industry, live in the industry and have breathed the industry for the last 5 years so I know spas. After a few stressful weeks of work, school and planning a wedding I suddenly remembered I am a better version of myself when I take adult time outs. My \"corner\", so to speak, was at Joya spa. I just so happen to remember a TravelZoo purchase I made a few months ago for a massage or facial at Joya Spa at the Montelucia Resort in Phoenix.\nBoy, was I excited! I called, booked an appointment with a male therapist and started to prepare myself for my next great spa adventure. \nAfter anxiously awaiting Sunday to roll around, I finally found myself walking into a Moroccan paradise. The space was entrancing from the moment I walked in. It smelled like a spa and helped to set the mood for my day of relaxation. I was given a full tour of the facilities and allowed to set my intentions with small crystals in a round room, and then brought into a room with a GIANT crystal used to help calm, bring intention and awareness of your visit and to yourself. The woman giving me the tour was very professional and thorough. Though informative, I was waiting for a warm connection from her, and never received it.\nAfter being led to the locker room, I changed into my bathing suit and waited in the woman's lounge for my provider to find me and take me back for my massage experience.\nI chose a male provider. Knowing I had tension, knots and stress I was hoping for a firm, slow, relaxing massage. I have had MANY massages and this one was actually a little disappointing. My therapist picked me 7 minutes late and ended 5 minutes early. The strokes consisted of a lot of rocking and fast movements. Not really the relaxing experience I was craving. My massage therapist was very sweet and genuine in his approach, I was just hoping for something more.\nI definitely didn't let my treatment ruin my experience! The facilities were amazing! They were clean and always stocked with towels. I have to say the spa attendants ROCKED!!!!! I could not believe how efficient they were. I observed on 5 occasions (YES 5) every time a shower was vacant an attendant was there to clean it up, any time a towel was on the floor, it got picked up immediately. They worked together like a well oiled machine! And I would love to give them props for making me take notice to the work the do!\nI plan on returning! I may not receive a massage because of my experience, but I truly enjoyed the facilities and the staff. I'm even thinking of booking a suite for my bridal party to enjoy the day there. In the end, if you know massage the way I do, please beware, you may not get all the bang for your buck in your treatment.", "type": "review", "business_id": "XTIIAZspxssIF7WenlXmrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DrWLhrK8WMZf7Jb-Oqc7ww", "review_id": "CZeb1ZY4vRZFHH-ghe8-hg", "stars": 4, "date": "2012-12-23", "text": "Kinda of a rough and tumble crowd at times with the OTB booth in the back corner of the bar. Place is usually crowded after work with the blue collar drinking types and unless your a regular you will probably get ignored like I did on a previous visit. In this case, finally tried the food and it was surprisingly good. The waitress said that the buffalo wrap was good, so I went with grilled chicken tossed in mild wing sauce and that went into my wrap with the usual cheese, lettuce, some blue cheese and maybe a touch of bacon? THe wrap was huge and the chicken and blue cheese melded perfectly together. On the side dish selection wheel, I went with sweet potato fries - this was a decent version of that variety, but the raspberry sauce? served as a dipping option was a fail. Great service on a saturday afternoon and reasonable prices ($8.99) for a filling lunch.", "type": "review", "business_id": "55seKyxRWUmHC1s52xk45g"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "YavFbDG7DUOTXJBLxpq97A", "review_id": "VO1mJpGWPKRdGnJuwYJcXw", "stars": 5, "date": "2008-10-15", "text": "It does not get much better than this, fellas.\n\nBS West is hands down the best gay bar in Phoenix.\n\nFriendly bartenders, cheap drinks, good-looking crowd, great music..it's definitely got it all.\n\nBest night to check out is the obvious 2-4-1 Wednesday. \n\nThursdays and Sundays can also be fun if you're into karaoke. Saturdays are a nice alternative if you don't really dig Forbidden or Amsterdam, it's a different crowd.\n\nIt definitely has a \"Cheers\" feeling to it... not pretentious whatsoever. Great patios too, especially the back one with the new video screen they installed.\n\nOh, and their Halloween bash is THE party to be at. 3,000 people attended in 2007.", "type": "review", "business_id": "bcBMAa0UQpNLFvvdZ4dxtQ"} +{"votes": {"funny": 20, "useful": 5, "cool": 3}, "user_id": "lhf22sqBafQv6CXu2fCmvg", "review_id": "FBw_MLyO9eduoDfs-IbbMQ", "stars": 1, "date": "2011-02-22", "text": "I was severely mislead by Frank A's, \"It's hot, but the food ain't bad.\" review. It was very cold and by far the worst food I've ever eaten. You would have to drag me here in cuffs to get me to return.", "type": "review", "business_id": "MPsCdY0Bwv2G0JXtwvE_hw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wb1kSEFZzyy5_UAbYJrEYg", "review_id": "7kB6kuvSXiPTcuT_RqmnvQ", "stars": 5, "date": "2012-01-30", "text": "I really like this place alot. their pizza's are really different but really good! I wish i could say i had a favorite but ive liked every pizza ive gotten except the portabello mushrooms cause i dont like mushrooms but other than that they have an amazing beer selection! Major thumbs up!!", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "B4K5ruafil9RSDiTIL-1Bw", "review_id": "O9hcvwafKVdGbezJ8UjwiQ", "stars": 5, "date": "2012-07-15", "text": "Sportsman's is on top of the game when it comes to wine! The staff is more knowledgeable and helpful than any other place that I have bought wine at before. I didn't feel like I was being judged for trying to find a cheaper bottle and there was no pretentiousness in the air. While I was inquiring about dry resling, one of the vino gurus offered to get me a taste of one from their bar - and came back with TWO samples for me to try! \n\nSportsman's also has a very intriguing liquor section - I enjoy wandering around and looking at all the fabulous bottles I have never seen nor heard of. \n\nSeveral times a month, they offer complimentary wine tastings and special discounts on most of the bottles being sampled. They also have a full service restaurant/bar off to the side where they have a huge \"by the glass\" list - you are also welcome to pick out any bottle from their store, they cork it free of charge, and you can enjoy your retail priced bottle with dinner! \n\nThe portabello sliders that I had for dinner were amazing and I am still having dreams about them! \n\nMy one complaint is petty: their website. Its overrun with text and finding important information is difficult, it also needs to be better updated with their amazing tasting events!", "type": "review", "business_id": "uL_kqSm8ZqJ_3U88uwA8tw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mU5GwCA4uiD0-RH1qt3jrQ", "review_id": "PQJk0XP4KzKj-_Hhq4mfew", "stars": 4, "date": "2008-02-01", "text": "I love the food!! Love for the environment.. eh.. not so much.\n\nMom and I missed our reservation at Cowboy Ciao's on a Friday night and a worker recommended us to visit the sister restaurant \"Kazimierz.\" Ok, we'll go as long as they have the famous Stetson Chopped salad. My mom loved the salad when she went to Cowboy Ciao.\n\nSo we enter the restaurant and the place is so dark. How the heck are you suppose to find a table and read the menu?? We had no idea how the seating worked, so we asked a worker. We were seating within a couple of minutes. Mann.. we had to hold up the candle to read the menu. The environment is nice if you are just spending time with your friends and chatting. But to eat and see your food?? The darkness is not good for that.\n\nAnyway, we had the Stetson Chopped salad ($12). It was sooo good with the smoked salmon, dehydrated corn, pepita mixture, and the greens. Yummy!\n\nThe Burgundian Flatbread ($13) was also delicious! I liked the crispy crust and the chunks of brie!! Wow!! The morels and the shallots gave the flatbread some sweetness.\n\nSince I liked the food, I'll give this place 4 stars. However, I wish I could see what I was eating. Thank goodness I took a picture of what I was ingesting. \n\nThe service and atmosphere is more like 3 stars.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "OqisxqKDGaZwEvLm1OG4dg", "review_id": "zXODym69r8pyX7KOlOoXPQ", "stars": 5, "date": "2008-11-23", "text": "Alright, went back last night, felt bad because we were the late nighters, and everything was perfect. The pizza, the salads and the wine were all so well done. And what finally brought me to five stars was the crepe with Nuteila and Mascarpone. OMG amazing. I'm currently craving it the day after. Totally beats out the crepe with nutella and banana that I also love...", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VyzwBKnq-LJ8OjvG0ZTwrg", "review_id": "ZHcIgajjP0VVyefvw777XQ", "stars": 5, "date": "2010-09-17", "text": "I love supporting local coffee houses and this one is my favorite. They are always super friendly even if I sit in there for hours studying and only order one drink. I LOVE their sugar free avalanches!", "type": "review", "business_id": "z2YTaHtGod3i3BBbKiMNwQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "8NWN06HnbPbi9VamIjzsWQ", "stars": 4, "date": "2010-10-11", "text": "I have been coming to this bar for over 4-years now - and I will continue to do so... Just be aware that this is no longer \"J Chew & Company\".\n\nOriginally, when it was called \"J Chew\" I fell in love with the place - it had a cool underground loungy charm. It was the best place to meet new and interesting folks. Now it is known as \"Old Town Tavern\" and has more of a generic sports pub theme that is dominated by TVs. The crowd is slightly older and the bartenders aren't as wild/fun... Not a great place to take a date any more.\n\nOn the upside: The place is much cleaner now, has live music almost every night, and Tuesday movie-night has some serious potential. Check it out for yourself.", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eX_vXeJMKDp1oMZZ4FlI9A", "review_id": "-X_L_zWFmoalzGsF6Lq3Xw", "stars": 5, "date": "2011-07-11", "text": "This is one of best libraries I have ever been to. I live very close by and it is very easy to stop by to pick something up or drop something off. This is always a must visit before road trips to California to pick up books for the adults and kids as well as DVD 's for the road trip. We visit this location at least once a week and the kids love it.", "type": "review", "business_id": "oFW8Fjszgsmy39a5hUnoBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q0KigjVBtb6dfRjX3QJbsQ", "review_id": "yhjDv66GmCwH5s3qIYaAnw", "stars": 4, "date": "2009-12-28", "text": "I didn't eat here, so I guess I can't give a full review. But I did have a beer, and I did take the Orbit to downtown Tempe, and I walked over here and had a yummy pint for 2 bucks on Sunday evening. \nThe more places that I can drink then take a bus home, the better.", "type": "review", "business_id": "ZztUsJyGDwPySepmXRG13g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jvvzoDYVq3BD_Dy7eMRdhA", "review_id": "GFEr11tEyu07dlXlfUbfAA", "stars": 5, "date": "2010-01-11", "text": "Loved the burgers and the onion rings were fabulous! This place is a must visi if you are in the Phoenix area anytime soon!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DeYRUi2YEFYZLZ1ukOGd6w", "review_id": "BuOszvE0-Edv9xbFtmXt8A", "stars": 2, "date": "2009-06-09", "text": "Yelp has failed me...I went here based on the reviews I found on here, only to find a restaurant that has fallen off from what it used to be. \n\nI guess this use to be a chef driven restaurant, he created a name for the place. But whatever it is now it has definitely fallen off and definitely not good. \n\nThe space is nice enough, I really did not enjoy sitting at the bar and have to look at there dirty kitchen the whole time...But the place does offer a pleasant enough atmosphere. \n\nThe food on the other hand was bad. I had the tasting of the appetizers in which everything was overcooked (mushy eggplant) or overcooked and Burnt (anything that had bread like potential) I kinda of wanted to leave after this but I had ordered my Salmon entree from the start... \n\nAnd now on to the entree which consisted of overcooked salmon, burnt spices on the top, and RAW skin underneath, did not make any since to me. it came with a brick of polenta edible only by the pool of sauce on the plate. \n\nThe menu and idea of this restaurant is great, sharp contrasts and bold flavor, but the technique and care is definitely lack here, or maybe they just had a shitty cook that day, I don't know, I just know that I will never make my way back there.", "type": "review", "business_id": "81a6sTDzNzsRsoUETeoBRA"} +{"votes": {"funny": 5, "useful": 4, "cool": 4}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "wfuMClw9Pqv618WdIIO_Ng", "stars": 2, "date": "2009-10-19", "text": "What the crap folks? So much \"blah blah blah\" \"this place is so great\" spewing from Yelpers and the media that I felt like I was missing out. I finally went to this damn place and I guess I am missing the point because this was a joke.\n\nTheir menu has all of about 5 things on it. Most of them seem reasonably priced until you see their size. I ordered the Vampiro because it sounded good, had guac, carne asada, and was portrayed as a quesadilla type meal. Ya, this thing was like the size of a Kennedy half dollar - and half as filling! What the hell? $4 for this? I can't even taste the guac!!\n\nIf I want cheap good mexican food, I guess I'll stick with 'Bertos because this place is a disaster. At least at 'Bertos I can get more than 5 items and the burritos are Soviet-car-sized.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pq4HdRAn2MFArQCFYXkYkA", "review_id": "IpQ8TU73HFFKpQib62zdBQ", "stars": 4, "date": "2012-05-30", "text": "Fabulous place. The food is good and the selection of organic and specialty items is nice. Love the butcher shop and Jerry the Cellarmaster is abslutely fantastic. Seriously, if you want a bottle of wine - he is the best resource. And if you go back frequently he tailors his suggestions to what you like. My favorite thing about this store is that the staff tries so hard to treat you like a valuable customer. They remember your name, ask after your kids and honestly act like they like you. It feels like a small town grocery store and I love that. Breakfast is fantastic and the coffee is great. Everyone at the coffee counter is terrific. This was a really great addition to the neighborhood.", "type": "review", "business_id": "1dC3GSC5bgQf9wEp-bv8PQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VcN9i7sPrGSOn4BnpOJ9tQ", "review_id": "wHEBxpIC34f6NiZc578vfg", "stars": 3, "date": "2010-10-16", "text": "I don't like mega-chain pizza. I don't like Domino's. I don't care for Papa John's. I've never had Hungry Howie's because frankly on their flyers it looks horrifying. And I will never ever eat Little Caesar's again in my life . . . but I gotta admit, Pizza Hut makes a decent thin crust pizza\n\nThere were a few great locally owned pizza joints where I used to live in Tempe. Tessio's and Boulders On Broadway stand out, but ya know what? Sometimes you don't want to pay $20 $25 bucks for an extra large 3 topping pizza. Sometimes you just want something decent for only $10 $12 bucks. Sometimes you really DO want a decent cheap pizza delivered to your door in 30 minutes or less\n\nThe three years I lived nearby, I probably ordered Pizza Hut delivery or takeout once every couple of months, and I've never had anything to complain about at this location on Broadway\n\nPS - the boneless spicy bbq wings are dangerously addictive", "type": "review", "business_id": "FKlr2XmPA7G5MlMFpka1OQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eZQ2b5dJDlIji9AtfdOE0g", "review_id": "0HsyKC9qSC07FPpQ2xOOsA", "stars": 4, "date": "2012-09-01", "text": "Cibo! Eating outside is a major part of the experience even on a hot summer night in Phoenix! Worth the dampness from head to toe. The BONUS is sitting under the African tree with the lights and grapes with the FULL moon shining on us ~\n\nOur red haired waiter sporting 1950's style glasses was fun, fun, fun and pleasingly attentive. We had white wine; superb choice thanks to the 4 different wine tastes I received while choosing it. \n\nThe strawberry/walnut salad was a bit dry, yet the feta was marvelous! Great soft texture to melt in your mouth. \n\nThe pizza was the sausage and it was wood fired, nice and perfect. Just enough food for the 3 of us ~\n\nSo much food, just the right amount for our bellies. For the 3 of us, the bill was only $43.00. Not too bad on a Saturday night to go in 1/3's.\n\n~ Luana Joya Lucia", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uzEls2fkJZPUH050rON2pw", "review_id": "fpKQ1DiOwNi__vzKv5FvAw", "stars": 1, "date": "2008-04-05", "text": "Would have to agree with Rana A below... I think she said it best\n\nActually, I had several folks tell me this place was lousy before I went... it even fell below my already low expectations...\n\nGiven that I just left the real Barcelona (in Spain)- part of me was truly crying inside that night. OK, I gotta admit- everytime I tell someone I was just in Barcelona (the city) and they say \"you mean the one in Scottsdale\" there is a part of me that wants to just pack my bags and fly back...", "type": "review", "business_id": "6YWp7frmHKuPLYSlPyUdsw"} +{"votes": {"funny": 9, "useful": 9, "cool": 7}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "Y4rFTE6JoCgnPa14ROTo4A", "stars": 1, "date": "2010-05-11", "text": "when i worked in retail my paycheck was spent before i got paid. therefore, i relied heavily on coupons and splitting meals w all of my other poor college friends.\n\nwell, i hit the jackpot. $15 coupon for a FEAST. the picture on the coupon showed everything we would get: a huge steak, shrimp, and lobster PLUS 2 sides. there were 3 of us- this was PLENTY. \n\nit was prom night too so we were initally fooled with how popular it was. popular for prom girls with light up clear shoes (not even lying), if that says anything about the crowd for you...\n\nour waitress stops by our booth and just stares at us. one of my friend kinda looks around at me and our other friend, then back at the waitress. 'ill have a diet coke?'\n\nthen our waitress writes it down and doesn't say anything but looks at my other friend.\n\ni lost it and started laughing. why isn't she talking to us? this is so weird. \n\nwe ended up asking for a different waitress, then found out the coupon was a big fat liar. you didn't get all of that. it just says you do but you don't. the food ended up being nasty. probably one of the worst meals ive ever had. \n\nas we're leaving susy talks a lot waitress trips over my friend and it was all too awkward bc i couldn't control laughing. \n\nawful food, awful service, AND the bathrooms were some of the grossest i had ever been in. \n\nif wal-mart ran a restaurant, this would be it.", "type": "review", "business_id": "OjNTZTZ6HYQghJN-3jmwnA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ca2Sa9Enqg2GlWFQ95p8bw", "review_id": "b9kdLLhQR8QulzYYMVb5Iw", "stars": 4, "date": "2008-04-26", "text": "4.5 stars\n\nOk....I just had the most amazing facial there today....I never experienced anything like it. And my pedicure rocked also.\n\nI don't think I picked a better day to have a little relaxation. I rode almost 24 miles today (I swear it was all uphill) and I had the worst pain in my legs. (Yes, I did stretch) \n\nMy pedicure was great...Shannon does a wonderful job....though now I have straight line syndrome with french man/pedicures. Since I hate it that they have to use latex gloves, I couldn't tell at all that she was wearing them when i was getting my massage. AND! She actually made my feet completely soft and dry skin free. That alone is a miracle. \n\nThen I had my amazing facial. Where do you get a facial that they put your hands in parrafin wax, massage your legs (I did complain about my pain....) and give the most relaxing neck, shoulder, and head massage ever????? Laura is amazing...and she does a great job with waxing also. \n\nI found out today that you don't have to be a member of Lifetime Fitness to go there...and I did hear another rumor that rocks...but I don't know if I should say it here....", "type": "review", "business_id": "x_2kKQYLSRsa2OgPmGgWCw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "oERfYLY8vainWu5m1ZQS2w", "review_id": "YquYQb3MtCNXt6SEtiFstQ", "stars": 4, "date": "2009-03-24", "text": "The Vig is a great place to meet up for a drink. I haven't found too many other places that serve Hoegaarden (my favorite beer). The atmosphere is one of the best I've seen in Phoenix, and the food is pretty good as well. I'd recommend the \"Big Azz Burger\" or the \"Hot Vings\"!", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0wNFzxEof0RDrWPLjDlwZg", "review_id": "vc3xoZsQVGmK3GcNy_UyBw", "stars": 4, "date": "2010-03-29", "text": "absolutely love this place. It is a fru-fru hang out joint that isn't pretentious. \n\nThe cucumber lemonade has become my favorite non-alcoholic drink and their bruschetta is always the best!", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 2, "useful": 7, "cool": 7}, "user_id": "r5uiIxwJ-I-oHBkNY2Ha3Q", "review_id": "9PxJFuuR8sy0keT4quZryw", "stars": 5, "date": "2008-02-24", "text": "Our company held our fourth annual user conference here, and compared to our previous venues, this one was a smash hit in terms of facilities. It compares particularly favorably with the doudy, sour old St. Francis in San Francisco, a venue I hope we never book again.\n\nThe standout quality of this place is the hustle and quality of the service. Our opening night reception included an array of food service stations with different themes, including a noodle bar that was particuarly well done. The food was all delicious but what really distinguished this event was the personable, attentive, extra-mile oriented staff. They were reading the nametags of our 200 guests and calling people by name whenever possible and chatting us up in line to make sure we were all happy.\n\nThe event coordinators were all over the venue throughout the ensuing two days. Where at the St. Francis we struggled with temperature and electrical problems and grumpy, uncooperative, disinterested staff, here at the Fairmont, the very few glitches drew aggressive responses by people who cared about our event.", "type": "review", "business_id": "9mfec4ySQpW8doGs3FUP2Q"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "kgfAnunPn0sI3Ycp8EypyQ", "review_id": "IXh7sAr5xSqiuf1xhCPmWQ", "stars": 5, "date": "2012-01-13", "text": "Nooooooooo! Curse the the gods of all that is delicious, for Huauchinango is now CLOSED. Replaced by some generic grill that offered us some nachos and quesadillas, thanks for that. So not only did you replace a great eatery, but you also had to throw in a little bit of extra salt in the wound. So, I don't think I'll be giving my business to the devil grill anytime soon. Huauchinango, you shall now only be a distant whiff of habanero al pastor memory. You shall be missed.", "type": "review", "business_id": "SGwnJIFKGQcYzE2c3ebs8A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "yA77gvXdxFViK0mZcSiveA", "review_id": "YODp9vMDJXhquJjkltv-RA", "stars": 2, "date": "2012-04-11", "text": "It's so promising. Great specials. Awesome space. TV's everywhere. Full bar. Good food. Great place to grab some beers before and after a spring training game.\n\nBut service sucks. I don't understand why I have to be carded at the door, carded at the table, then carded at the bar. There were 3 groups in the entire place, and we still got slow and crappy service. \n\nI wish I had better things to say. But really.... the experience completely sours the good things about this place.", "type": "review", "business_id": "SoMmHSD_g9xQv68GV22RZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rgrECAY_EZ_xFdSx6CGfvQ", "review_id": "VsTJH9GEn_0NW7wFDlLWcA", "stars": 4, "date": "2012-01-16", "text": "Jimmy Johns has got to be my guilty pleasure. Love the Beach Club and the salt and vinegar chips. This location is fairly new and it does the JJ chain well. Although they do keep the music louder than I'd like. Great place, great sandwiches.", "type": "review", "business_id": "IBNHRj-NLfA-FlKnWxZDQg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7k5mTaDV609kLd8QFqYznw", "review_id": "LAaZfL4zmsz495H-vME-oQ", "stars": 4, "date": "2012-07-03", "text": "I have been to St. Francis twice - once for brunch and once for dinner. The brunch deserves 5 stars, we had great service and great food. Their bread was AMAZING! We had great service for dinner, but the food wasn't up to what I was expecting. Things were a little bland and the sauces on all the dishes was a little heavy. However, overall I would definitely recommend them.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LiNbZqDdHLqueYz4nORWzg", "review_id": "sTpGOOb9MBaiWov8LP_Rsw", "stars": 4, "date": "2012-06-12", "text": "Always here for their California burritos... The burritos are huge and can be easily shared by two people. Their jalapeno and carrots are somethin I havent seen at other similar places, id recommend it if you,re lookin for some heat! The drive thru service is fast and friendly. I have seen they did remodel the inside seating and does not look as,roughed up as before... There is a drawback when using your card to pay- 50\u00a2 addtl charge, which shud b done away with.", "type": "review", "business_id": "GoWTsb8sGyJ026a3cbw03Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "LMqKXdbwYdCqCCF64QbVkA", "review_id": "ePM1HUrdIvP3FBlmJi5RCw", "stars": 3, "date": "2009-10-19", "text": "I like Bungalow because its a great starting point for a night in Old Town Scottsdale. Centrally located, any other watering hole is in short walking distance, keeping the options open. \n\nMaking this bar/grill the main location for your night out might pose some problems:\n-the drink prices are mediocre at best, so don't expect to be frugal.\n-the staff aren't anything special.\n-I didn't even know they served food, so it can't be better than average.\n-unless you can drop a pretty penny (and look the part) don't expect any good conversation.\n\nI can appreciate what this establishment is good for though. Bungalow offers a nice atmosphere to sit and converse with friends (not many locations in Old Town offer the ability to hear normal conversation)...", "type": "review", "business_id": "E7nk0lC317pGxMX56gvaVQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "zw-bIcZP4_VEi3UetomDeg", "review_id": "mWMv72kX_nldxmvUlS1yyQ", "stars": 5, "date": "2008-12-01", "text": "This is my favorite hotel of all time, so far, at least of the Kimpton ilk. I experienced nearly impeccable service and a super comfy bed, organic and local products, a lovely shower, and general happy relaxation. I love that the gym and pools are open 24 hours a day. The decor, half Asian deco and half Southwestern, works works works.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_ei7Bs7tciprz4im-_0kxg", "review_id": "b4A-bc2Eo5CCymeiyutfkg", "stars": 5, "date": "2010-10-29", "text": "Hands down my favorite coffee shop in town. They used to be located inside the Conspire art collective but have now moved into the old Hood Rides digs up the block and it's awesome.\n\nPlenty of seating room at the bar and also a really cool little room next door where you can pull up a seat and hang out. From what I understand there will be seating outside too.\n\nMost importantly however is the coffee. They use a special mix roasted specially by Cartel. I'll be the first to admit I'm no coffee connoisseur but I do know this, every drink I've had, no matter who's behind the bar has been perfect. Not burnt, not too sweet, and not a hint of pretentiousness.\n\nSooooo, why go to S-word Bucks when you can get a better cup of coffee up the street. Oh and for those of us who burn the midnight oil on more than a few occasions, they're open until 12am EVERY night.", "type": "review", "business_id": "5ambRqdTJt9vGwFzVI9HBw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "yJ22u_1l01H4NM3wCowIKw", "review_id": "8JXFycbpW30ixl6VOeU6jQ", "stars": 2, "date": "2011-09-17", "text": "Horrendously overpriced. ~$13 for an xlarge 2 topping that I had to bake myself? The pizza itself was better than average, but if you don't bake on location then at least make it cheaper than going to pizza hut and having it delivered to my door, ready to eat.\n\nI'm glad I had the experience, but I don't see where the benefit to this is, at all. It isn't more cost-effective than going to the grocery for frozen pizza, and it isn't that much better than frozen.\n\nOn the plus side, the gal at the counter that made my pizzas was very nice, but it's a shame I don't see this kind of business surviving. I probably won't return, I am pretty disappointed.", "type": "review", "business_id": "rFgSvsgo0BWnS03NFgI7Sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qXxwTfCGF9tAvXOrY-hWlQ", "review_id": "eW5_e24iBTsvlKNbBQR6mA", "stars": 5, "date": "2011-05-14", "text": "Tacos, tacos, tacos......how can something so simple be this great? Having seen this place being featured on DDD we had to try it out and it was worth every penny! I have a thing for always trying the \"odd\" menu items so I've tried the tongue tacos and cabeza (head/cheek) burrito and to me there is nothing better on the menu! This place is rather small which makes it perfect if you're there with some friends or a special someone! My friend loves the shrimp ceviche though I havent tried it myself. Go to this place for some great authentic, local and quite tasty food.......probably some of the best the east alley has to offer!", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bFVetbys5Z74h1fcihmvOw", "review_id": "sl2r-tZMBsHjmTIV1NRltw", "stars": 4, "date": "2009-08-12", "text": "My buddy and I (along with our dogs) stop by here every morning on the way to dog park. Hot coffee and hot women making the coffee! Love this place!", "type": "review", "business_id": "K4Oo7A5Kp5eSgBV7MgOu8Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "R8Vm1249P4E-aZCuiEj7eQ", "review_id": "gXebSdATb35QRiCjB9VXJA", "stars": 5, "date": "2011-06-20", "text": "This past weekend I went to The Vig Uptown twice because it was that good. This is a perfect place to hangout with friends and get a bite to eat with a really great drink menu. What I love most about this place is that it is very modern and the people are pretty chill. The cherry on top is the games they have to offer, Bocce and Bags!\n\nDrinks\n1. Moscow Mule is a perfect nice refreshing drink to order, made with Vodka/Ginger beer and fresh lime juice. \n2. If you bring in your own \"pimp cup\" any size, They will fill it up with the mixed drink called Pimms Cup.\n\nFood\n1. VigAzz burger is my favorite food item to order because the pretzel bread is amazing.\n2. Thai spicy Vings here are probably one of my favorite wings that i've ever had so I highly recommend getting them.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "Xm8HXE1JHqscXe5BKf0GFQ", "review_id": "6ufiyRAvzqLlgIA2a0SHPQ", "stars": 2, "date": "2009-10-12", "text": "No cover and outdoor misters. Decent crowd, overpriced drinks, teeny dance floor, good selection of d'bags to giggle at. It's A.) a club, B.) in a chain hotel, C.) in Scottsdale, fer chrissakes. What more could you ask for? My only hangup was how dark they keep it in there. People in Scottsdale are generally good looking, so a little more lighting in there isn't going to hurt business one bit. \nOverall... this place doesn't feature anything that really stands out.", "type": "review", "business_id": "9U7_UWXXJZOW14L0kAdCNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gcuwbVN0LCBrOsp7VCTAvQ", "review_id": "hCJV0MLEG9ggjvFWV2_iNw", "stars": 5, "date": "2009-08-04", "text": "Hands-down my favorite pizza place in the East Valley. I have been going to Sourdough pizza for close to 15 years, and it is consistently delicious. I grew up in Mesa, now live in Phoenix, but I make it a point to visit Sourdough Pizza when I am in the Mesa area. The decor definitely leaves something to be desired, as they are in a stucco strip mall, and their interior probably has not been updated all that much in the 15 years I've been there. But I could care less when the food and prices are this good.", "type": "review", "business_id": "h_764eIV-D3n7qjyBmluug"} +{"votes": {"funny": 6, "useful": 6, "cool": 3}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "glakpKBOBREYLBp7LbkbDA", "stars": 1, "date": "2010-07-25", "text": "HELLISH HELLISH SUMMER WEATHER (March thru October)\nit hurts my lungs to breath.\n\nI couldn't get transcripts because I had a parking ticket I needed to pay.\nThe problem is... *i DON'T OWN A CAR, I don't drive, I don't even have a drivers license*!!\n~*~*-- aside from that one minor incident,~*~*\n\nI paid 9000 USD a semester to receive a so and so education.\nI graduated with a magna cum laude. I have attended other universities. However, I couldn't help but notice the gap in the quality and variety of classes offered.\n\nFor example, you have to be a finance major to take upper level interesting finance classes.\n\nBusiness school was so and so, a lot of repetition.\nVery little hands-on and help with internships.\nWay too much groupwork and free-riding.\nThey do not have many good employers at their semi annual recruiting events.\n\nOh, and professors rarely teach the courses.\nThey have their teaching assistants teach us.\n\nAlso, there is a lack of bridging classes between lower level and upper level classes.\n Junior year when you get admitted into the \"professional program\" the level of the classes and transition isn't too smooth.\n\nThe campus tutoring program is pretty helpful for general classes if you're having trouble with classes (usually lower level)\n\nThere are not enough chairs/desks in some classes.\nThe students sit on the floor and cram on the stairs in the lecture halls.\n\nAlso, the classes don't teach you how to think critically, which I think is crucial in college.\nPlease don't waste your money, especially those of you from out of state. Its not worth it.\n\nExpect to wait in line wherever you go.\nASU accepts way too many people.\nIt would prolly accept my cat and my baby sister who barely talks if we threw money at them.\n\nThus its very difficult to get myself into the classes I need.\nThe advisors are walking advertisements of the business school.\nThey are not informed enough to advise you.\n\nI got dropped from two required prerequisite courses so I could not move on to the next level.... even after pre-registration.\nI got screwed and ended up having to take one more semester to graduate.\n\nTuition rose from 6000 a semester in Fall of 2003 to 9000 + in Fall of 2007.\nGross!!\n\nOne thing I liked was the student theatre performances. The admission $ was reasonable and quite entertaining.\n\nThe College of Architecture and Environmental design studios are pretty good and has good security.\n\nASU is not the most safe neighborhood.\nI have been approached by many shady people.\n\ndo NOT live on campus. Especially the dorms on north campus.\nThey are beyond crappy and overpriced.\nYou have to split your room with a room mate in most cases for undergrads.\nThe \"freshman year experience\" bullsh*t they pull on you, don't buy it.\nand Please PLEASE please don't move into Manzy Hall (Manzanita; 15 stores with triangular windows).\n\nI lived here my froshy year and its the dirtiest (rats), unhealthy (mold, pot circulation), most promiscuous place on campus.\n\nAgain, please don't bother wasting your money, especially if your an out of state or international student. \nHope this helps.", "type": "review", "business_id": "JJDaF4yFPLgQ3u678qyL2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qg9Jn8GeqQ8EuxNUFDshCg", "review_id": "vRSPyfJkfF-0BXMWeLgdbg", "stars": 1, "date": "2012-09-25", "text": "Tried to get ahold of this dude to no avail. No personal message on his answering machine at all. Website sucks for information to let me know what sorta work or quality thereof he does.\nI tried to call here @ 6:53pm tonight and again...no one picks up the phone. So fed up with flaky contractors. Do they want work or not?", "type": "review", "business_id": "WaPRb2Iq2pkwJfOdr9uvhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MrQCy8eJD1x51U87J5C6ZQ", "review_id": "3lDBMS0-Lq7ZBtGQ4txZ2Q", "stars": 5, "date": "2010-02-25", "text": "I'm not a fan of ice cream, I just don't find it appealing and it's too high in calories/saturated fat. However I do love frozen yogurt, and ironically it's much less fattening, yet more satisfying. At 25 calories an ounce, Golden Spoon's is the best around. There have a large array of flavors to choose from and they rotate flavors each month, they also have seasonal flavors such as pumpkin pie and egg nog. You also can get more than one flavor combined. They also have a wide variety of toppings to choose from, from gummy bears to low-fat brownies.\n\nEven though their yogurt is non-fat and low calorie, adding toppings can quickly add a lot more calories, I suggest going with chocolate or rainbow sprinkles (adds less than 50 calories), or if you like fruit, go with that.", "type": "review", "business_id": "2R_VekjT6HSZpGL9KYzcuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AVCBC2G5RjJM8tu_PebFPw", "review_id": "raaH2O1gL1H712CjHv_lwQ", "stars": 3, "date": "2010-06-16", "text": "Not the newest or the nicest but, everything you need and usually no wait for machines. The staff is super nice and there are magazines to read while your there. If they could just turn up the AC a little bit and put ESPN on more than two of the TVs.", "type": "review", "business_id": "k8Y7aXXA8BFcn5CillHFYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "4yMDvhgb2lvy1hz6MMVRQw", "stars": 4, "date": "2010-11-14", "text": "I love this gym, I do wish it were closer to a freeway or either more north or more west for me. I agree with Will M. that it would be great at Norterra and lets face it, there are empty spots there just waiting for a great gym. I love the attitude at this gym and the metro location as well. There is always someone onsite caring for the equipment and keeping the place clean and tidy. I dont remember that care when i was at LA Fitness. The equipment is color coded to the muscle they work and that is awesome! I like the staff and the people that go here and have made many friends. They also have this new finger print system so you don't need a gym card with you to go, you just enter your phone number and scan your finger (very cool). Sorry if you are a twin and like to cheat though.... Also be sure you check out Costco before you join to see if they still have the special of a 2 year membership for $299.00 (that's about $12/month) It's a smoking deal and is good for all gym locations across the nation.", "type": "review", "business_id": "lXUaypwLG_rIU4qnpBmF-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "nyHh14Vb9S269-kGKaUelg", "review_id": "Z4NoiD7HK5QQs9e6E0lrqg", "stars": 5, "date": "2011-08-11", "text": "Phenom. \nThe food is always fresh and well seasoned. A good selection of Tequila. \nEvery meal that I've had has been just fantastic. The carnitas and the fish taco's are very well prepared. It's fresh, the beans are fresh as is the rice. \nIt averages about $10 a plate but worth it. This is how really good Mexican should be. \nThe salsa bar is excellent: you have about 5 different types of salsa from which to choose. All freshly made. \nI can't say enough about the flavoring of the meats and fish. \nDecor is a somewhat minimalist/modern, probably to attract a happy hour crowd. They have TV's for your viewing pleasure. \nService is friendly and quick. \nI've only been to the Chandler location but will start going to the one in Scottsdale. \nGood food. You won't be disappointed.", "type": "review", "business_id": "ObYf1kZVWfL8NocxUwGJKg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "GG5E14t_w0Kqudxdpz59qg", "stars": 4, "date": "2011-12-20", "text": "A definite four stars, the focus on fresh food and a great breakfast has build a strong following at this destination location in Scottsdale Civic Center. now that i think about it how can i not give this place a 5 stars theirs way to much creativity and freshnewssness in the fruit, veg and the nectar of the gods, Coffee, all packed into one nice bright orange place. \n\nOld Town has a few breakfast spots but this is one you have to find. can i say I hope to see this as a Scottsdale yelp \"hidden gem.\"\n\nAs for my last meal I had the prosciutto melt and it went past expectations, the fresh basil really added the extra taste. \n\nService was ok, a typical cafe style, the restaurant does not seek to be over pertinacious, the look is clean and the cafe is a really nice touch with options to order and go. \n\nSo many Little restaurants like this keeps me looking for the next one. Don't forget for later in the night AZ 88 is just down a few steps. \n\nHappy breakfast,\nKevin\nPS there seems to be some kind of yelp trend, does a hand full of yelps make a difference in a restaurant, does that have a yelp definition when this happens.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4QORbyhfN01oKR_GgBstfQ", "review_id": "-nQHHXi-d_yuW301_Y0EZQ", "stars": 2, "date": "2011-01-12", "text": "A pleasant place in Kierland Center, but has gone down hill from earlier visit. Good house wine by the carafe, we had the French Merlot. Very inconsistent food quality. I had the spinach and frisee salad. The poached egg was overcooked, so no yolk to add the a very dry salad. No enough bacon fat to wilt the salad properly. An average quality lamb shank without any evidence of the olives and other seasonings promised. My friends filet of beef was ordered medium rare and served med. well. Rather dry. They refused to subsitute for the brussels sprouts, then the waiter came back and said they could do it after all. Desert souflles were ordered by two diners, both were dry and flavorless. They need to pay more attention in the kitchen. Overall, a very average experience at above average pricing.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "YuSjiBCf_3j1Oqs99Aue0A", "review_id": "0bQUqKGw0uGobtP7S-EkAw", "stars": 4, "date": "2012-07-09", "text": "Came here and did drive-though to pick up a turkey sandwich and the \"man\" salad. The salad was really good!!!! On a hot summer day, the salad is a perfect choice for lunch!!!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cMNHD4NWHvsKhmJlx5F3ag", "review_id": "S5wVFzi3VreZMzi_EluILg", "stars": 5, "date": "2011-03-31", "text": "Bring a flashlight. It is so dark inside you can not read the menu. But the waiter was so well versed we just used his recommendations. \n\nWe all had filets cooked to perfection and served on a 400 degree hot plate. They recommend the lobster mashed potatoes but did not feel they were worth the price tag.\n\nThe wine list is extensive and expensive. If you are looking for fancy this is the place but we went after a round of golf and they were very accommodating . \n\nGreat special occasion dinner but not your everyday steak joint .", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ys0ZU50fVW-BeDGjKto0mw", "review_id": "OHEOZlL_-Lcl63HsuSZ-_w", "stars": 2, "date": "2011-04-07", "text": "overpriced for an average course", "type": "review", "business_id": "0Vty6xYvihX-kmsocY1HWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2OLdiDZNdrPkdjp1WmW0-w", "review_id": "swhMVGUffHcfl3YgSgKszQ", "stars": 5, "date": "2010-04-29", "text": "These are the best, most consistent donuts in the valley. I was always a fan of the Chandler location, so I tried this location as soon as it opened. I was pleased that the donuts were as fresh and as varied as the other location.\n\nI don't care if people go to dunkin for the coffee..a donut shop is about the donuts, and I haven't yet had any donuts in the valley in the same league as BoSa.", "type": "review", "business_id": "mSbFLlDB5Qu-6al1e2DSBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VqSCQCva71Q-ZVcMsYfQuw", "review_id": "uZ9rHZQ41KX4PWaRTwjmRQ", "stars": 4, "date": "2011-12-17", "text": "6 cities in 10 days.....no significant delays, great service and the food was even good. Get rid of the lowly 757's to Hawaii and give me the fancy LAX-JFK 777 for all 5 hour flights, plus redo the overhead compartments in the 767's and I'll give Delta 5 stars. \n\nGreat job with the merger as the employees/customers seem much, much happier!", "type": "review", "business_id": "JsorhAPDyafD2JC-6fY-sA"} +{"votes": {"funny": 0, "useful": 8, "cool": 4}, "user_id": "2rlBbFPHyZjXSFSE8r551w", "review_id": "WoSwxLzRtESWmdej4p3uIQ", "stars": 4, "date": "2008-06-14", "text": "Sheraton Desert Oasis is a great value in the late spring/early summer to get away for a few days and relax. \n\nIt is part of the Starwood Hotel Chain, but this is one of their first forays in to the recent boom in Hotel chains opening time share residences for sale under their brands. So this was meant to be property that was sold in timeshares, which some have. mostly for winter weeks for cold snow birds.\n\nBut in the low season, which is summer, you can get a room for around $100. And what do you get? You get a nicely appointed, decorated model home, about a 700 square foot 1 bedroom apartment. It is repleat with 2 gas fireplaces, full kitchen with all wares and utensils, living room, patio with table and chairs, his/her bathroom sinks, a marbled tiled shower, a king size bed and a heart shaped large jacuzzi bathtub in the bedroom. \n\nIt has a full social and activities calender, so it is a good place to take the kids. There is a large clover shaped pool, with multiple water fountains, and a large rocklike island structure with caves where the jacuzzi is located. There are about 75 chaise lounges and several tables, so there is usually one available for you. There is also a poolside grill for food and beverages. \n\nYou are not far from the restaurants and nightlife of North Scottsdale, near Kierland Commons Mall, Desert Ridge Mall, 101 Mall, and about 6 other strip and big box shopping centers. You can buy food and easily eat in to save some money. The famed Tournament Players Club (TPC) gold course is close by, as well as the more exclusive and expensive Fairmont Princess hotel. \n\nThis is more of a vacation home than an exclusive resort with people waiting on you hand and foot. But it is well maintained, nicely appointed, and a relaxing getaway. Peak season (winter) rates are $325 and up, so if you come in early summer, you get a bargain and a tan by the pool.", "type": "review", "business_id": "vJ8h5KUTL5L7taf72zcOlA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "ED5xDqDU9JDtlVEOqNCB5g", "review_id": "dGzFMtE5JQ3YkUHS6UU0uA", "stars": 5, "date": "2012-01-09", "text": "I moved from Philly this past summer and I've searched all over the Valley for a \"GOOD\" Pizza. After eating lots of tasteless and cardboard pizza, I found Momma Mia when I moved into Arcadia! I love the hole in the wall vibe! Just like home :) The sauce is great and super tasty! The dough tastes slightly sweet and is fluffy..It's what makes the pizza so great and there is a brickoven!! I love it! My husband and I order the pizza/wing special .The wings are so hot and spicy ( we order the hot, but it comes in buffalo and mild) They have an extensive menu of pasta, sandwiches and salads. I want to try their Philly Steak next, but for the time being I still make mine at home. \nEvery pizza place likes to say its \"New York Style\", but this place really does a NYC pizza. Well the best nyc pizza you're gonna get in AZ, Something about the water.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "tLrjg5jMmBfnnTs3d61SWw", "review_id": "bWhz0gwcvVOafbc47BXAXA", "stars": 4, "date": "2008-08-22", "text": "I really enjoy this course but I am saving the 5 out of 5s for the Troons, Grayhawks and WeKoPas of the world. Nonetheless, this is a great, very challenging course and you don't have to drive waaaay up north or east of Scottsdale to get there, which is always a great plus. I remember Golf Digest did a list of Top 25 College Courses and this didn't make it, which I thought was nuts. My only complaint is that the course isn't really as luxurious as the peak season rate would indicate. Also, as the other guys who reviewed this mentioned, there is some fantastic ASU swag available in the shop if you are a fan, they probably have every variety you could ever imagine. Haven't eaten there but Ted's Hot Dogs is close enough that you'd be crazy not to go there after your round.", "type": "review", "business_id": "7kAXbY8hjHhC-nZKR2Embg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "vU1bHO3IjqLnf3_9Igeluw", "review_id": "dLheU5beqzcsY9sCcxfxvA", "stars": 3, "date": "2012-08-27", "text": "Good, but the salad was not as good as remembered. Still think its a great spot in scootsdale!", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k8QnA7UNbe5DBCmYqxYs8Q", "review_id": "yQKRFqQZrR7l4ti6YiGHOw", "stars": 2, "date": "2012-04-27", "text": "Coworker and I met for lunch this afternoon. Restaurant was understandably busy and there was a delay in the delivery of our food.\n\nWhen my pear omelet with potatoes arrived, it brought mixed reactions. The omelet itself was served hot, and loaded with bacon and cheese. The potatoes served alongside were STILL FROZEN in the middle. We were unable to catch the attention of the hectic servers to get this corrected. When I brought my plate to the bartender, he poked the potatoes with his fingers, and then asked me if it would be OK if he kept the same omelet, but \"throw some fresh potatoes\" on the plate. The server said that, if the kitchen had to remake the omelet, there could be a long delay. \n\nI could only respond with a shrug. He left and went to the kitchen with my plate. Several other people touched and poked the plate and potatoes before replacing them. He then brought the plate back to me at the bar, and not my table. \n\nEnd result - good omelet, mediocre potatoes, below-poor service and follow-up.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 9, "useful": 9, "cool": 10}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "llMrv3u6jOOz2E9T7214mA", "stars": 2, "date": "2008-11-02", "text": "I've been to Barrio twice now. Simply put, I do not believe that it is worth the prices that they charge. The first time I went there was with the pseudo boyfriend and he adored his meal, and so I embraced it and loved it. The second time was last night for Dottsy's birthday dinner. \n\nDottsy and I ordered up the guacamole that everyone raves about. We were unimpressed, as we had huge chunks of avocado in there and have both made our own guacamole and didn't see what the big fuss was about. \n\nI've had the enchiladas suizas and enchiladas de hongas and although they weren't bad- they were not amazing. Not worth the 16 bucks, at all. Don't get me wrong, I wouldn't complain about the cost if it tasted like it was worth it, but not so much.\n\nBecause it was Dottsy's birthday, they brought her a complimentary flan which we both agreed was pretty tasty flan. So, if you are a flan person, this may be a place to check out. I am not a flan person- too jiggly (which makes me think of what fat looks like on a person's body which stops me from eating it).\n\nThe two things that make this place worth going for are the margaritas and the service. The margaritas are 50% tequila and fabulous- I usually just stick to the house margarita and am satisfied. The people that work at Barrio are friendly and cool. I imagine that they all enjoy working there.\n\nI don't really ever need to go back to Barrio, unless I'm craving a serious margarita served up by a cute hipster. I'd go for a drink or two and then go elsewhere for dinner.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MOpFJnB5HyXdXW1sMwz7Bg", "review_id": "1n6AhAJ6n92x_vesTaWZyA", "stars": 4, "date": "2012-09-24", "text": "Now THIS is ramen! I even ordered it for take out and could tell with my first slurp that it was everything I'd been looking for. Complex broth, yummy noodles, all the right toppings...the only thing I would have changed is the pork, which was tough and chewy and not melt-in-your mouth delicious. I'd definitely try again while dining in to see if the quality I'd the pork improved. The rest of the ramen was so tasty it didn't matter! \n\nAlso, for take out the service was super quick and friendly. The prices are great, too! I got the ramen lunch special which came with a California roll that was incredibly tasty and fresh, and it came out to under ten bucks for a lot of food!", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ng3hl9D1EzsmSDHnXXfGBg", "review_id": "8j0rATm6prGd__VoJMMcfw", "stars": 3, "date": "2011-10-23", "text": "Beware the latte. Otherwise this is a typical Circle K. Come to think of it, the latte is probably typical of Circle K as well.", "type": "review", "business_id": "GjY3YczfF_wT7-euVoSbWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "2k57IbygwTWDvu4R1husvA", "stars": 1, "date": "2012-09-08", "text": "food is ok, but service is very slow!", "type": "review", "business_id": "JoqrcQuzD3yEvs9KvN82ag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CjL3FtpiDzhNXTQPw0-RBw", "review_id": "v2yXWRV4Lo4ig9lxd560Lg", "stars": 3, "date": "2012-01-31", "text": "I adore all of Joe's restaurants. That being said, I think this one is my least favorite..(which means it's still better than most of the restaurants I've had the pleasure of dining at in the greater Phoenix area.) \nI got the chicken sandwich and it was okay. I think I could have found something on the menu that I would have enjoyed more, but for some reason I wanted to try it. I think I'll have to try the pizza next time, because it looked amazing. The service and atmosphere were great, as per all the Joe's establishments. \nI wasn't completely fond of standing in line for awhile to get a table and order my food. Sometimes I just want to sit down at a table and have the server come to me after a long day.\nThat being said, I would love to try this place again...especially for breakfast!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Gy9nOzH_L8NGCjrQr-ntng", "review_id": "jOx0kjcxoXqkbB3F1dXTdA", "stars": 4, "date": "2011-05-02", "text": "I've been meaning to try Humble Pie for a while, and as luck would have it this weekend I was in the right place at the right time and we decided to stop in. \n\nRumors are true, everything is delicious. We shared the strawberry & gorgonzola salad, which was flavorful, light, and summery. Then we split the Schreiners Sicilian Sausage pizza. It was flavorful, spicy, and delicious. I will definitely be back to Humble Pie when I need a pizza fix.", "type": "review", "business_id": "Lbue8gqRiBPEnA7g7H1qdw"} +{"votes": {"funny": 6, "useful": 12, "cool": 7}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "Aele-C1tzSUc-1qsUvzHMw", "stars": 3, "date": "2012-08-07", "text": "Lets just set the record straight here. Zoe's serves Mediterranean just like Qdoba serves Mexican.\n\nWhen I say just like the Q, I mean the entire experience. Walking into the shop gives more of a cookie cutter national chain feel; which is probably because they are in fact a chain of restaurants. Zoe's food was average and unimpressive. I did like the hummus though. Their prices similar to independent and family operated Mediterranean around the valley; in some cases more. I would prefer to visit Cypress Grill, just up the street from this location, they're my favorite Medi in CenPho so far. \n\nThe staff here was friendly, they took our order promptly and served the food within a few minutes. Don't get me wrong, the food was in no way \"bad\", per se. I just can't shake the feeling of \"I've had better\" when thinking about my experience.\n\nIf you're looking to fill your belly with food just because it's time to eat, this might just be the place for you. If you're interested in a great Mediterranean meal, I implore you to please try something new. I likely won't be returning, we do live in the city of a million restaurants, go out and choose one! (but don't take me at my word on that just made up fact).\n\nHappy Yelping Phoenix, now where's my hummus?", "type": "review", "business_id": "tpIU_ZvIfCfCp36IgghlHQ"} +{"votes": {"funny": 1, "useful": 6, "cool": 3}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "DtgJ5aFeUSk7bNGY408WPA", "stars": 4, "date": "2009-12-06", "text": "Great Pizza! Great food! Great service! Still, this place isn't perfect....\n\nBE PREPARED TO WAIT! Alright, most people seem to know this going in (we did too). However, when you arrive at 7:00pm, and they say you won't be seated until 11:30pm, that doesn't mean you can put your name in and show up at 11...which we almost found out the hard way: **At 10:00pm they will do one last head count. If you're not in the vicinity, soooorrrrry!** Luckily we were calling in every hour for updates (which they recommend, btw). At 9:40pm we called and got the news that we better be there for the last head count (information we probably could have used earlier), and had to hurry on back from our meanderings downtown. At 10:00pm we were deemed worthy to stay on the list and wait another 45 minutes or so.\n\nService: the hostess knows she holds all the cards--sort of like the lady at the cash register for the Soup Nazi. However, a smile was all it took to get one back from her for me. Still, I can see how others might misconstrue her attitude as something less than cordial. Our server was great though! Very helpful and fun. He was as excited to serve us as we were to eat there. Good stuff!\n\nThe pizza is indeed great! But after waiting 4 hours, I was expecting the heavens to part and birds to sing and the ground to shake. Nope. Just made-from-scratch, meticulously-thought-out, high-quality pizza. A light and airy, smoky crust, a decent sauce and fresh mozzarella formed the basis of the Sonny Boy and Wise Guy pizzas that we tried. The quality and tastiness of the toppings were also apparent. We were impressed. This was absolutely great pizza--one of the best we've ever had. ...I just don't know if I'll hurry back to Pizzeria Bianco to wait that long again.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mVPISwK-W6gmlbR5oemOsQ", "review_id": "oIPCrYI-fRmOFaDcJGMoLg", "stars": 5, "date": "2012-04-22", "text": "Very delicious and friendly! They do happy hour every day which is so great! The sushi is always very delicious and the same with their entrees. I love how close this is to my house. We visit this place quite frequently!", "type": "review", "business_id": "BINYfrtGp3A4w0d5E7kbYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hw9irUmYqNe5zSW1V1ybbw", "review_id": "RGrPbp37oY4Ua1m8YBHPYQ", "stars": 3, "date": "2010-07-26", "text": "Marriott's beds are always the most comfortable out of all the hotels I've stayed. I would not recommend Marriott Phoenix Airport for an extended (more than a week) stay, though. All in all, the hotel is nice, and the staff is probably the friendliest I have dealt with in a long time. \n\nThere is no free WiFi, and you'd think that a chain like Marriott would provide it for free. There are no refrigerators or microwave ovens in the rooms, either.", "type": "review", "business_id": "_yGo2ubkwQPXcKrdcURSNw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "f1-pIw_p0ifzu03TXjPRiw", "review_id": "insSDnDwgRLAwMwjZrix2Q", "stars": 4, "date": "2012-11-28", "text": "Popped into Sol Mexican Cocina before a movie one night for Happy Hour. We were seated quickly, which was great because there was only 15 minutes left for happy hour and we wanted to get our order in before it ended. Our waitress was SOOO... nice! She had a great personality and was attentive and informative, pretty much everything you would want in a waitress.\n\nWe ordered everything off the happy hour menu, so I can't comment on the main menu, but the happy hour food was great! The Hubs and I shared the pork tacos and chicken tacos - he loved the chicken and I loved the pork - go figure. We shared guacamole, which was good, but needed a bit more seasoning. By adding the salsa, which was served with it, it became quite good. BTW, love the unique \"chips\" that are served here... some of our had a ton of seasoning and others had only a little - we liked the ones with just a little. We also shared the empanadas (I think that's what they were), anyway they were really good.\n\nOverall, we had a great happy hour experience here. It thoroughly redeemed my not so enthusiastic impression from the Yelp event here (just about the food, not the event). I can't say enough great things about our waitress - can't remember her name, but she was awesome. I am sure we will be back soon to try out their main menu.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "dKMzuhnwGh3hGxP0QH7m6Q", "review_id": "XYLQ-2MnnhKiwR3umVIVeA", "stars": 5, "date": "2010-03-04", "text": "Oh, YEAH!!! Coming to Scottsdale. I have used RedSeven in Tempe and Mesa and excited to know that they are coming to Scottsdale. I work on the roads throughout the valley and have a lot of customers in Scottsdale that I continue to brag to them about RedSeven's Super Quick Service. Getting the job done quick and right and guaranteed to be the fastest to get you back to work!!!! Oh, and they talk to you so you can understand, not computer talk. Can't wait for Scottsdale!!!!", "type": "review", "business_id": "ShUSw5yD7EFWBOiq_CuHMQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "T8u9ntOrAh-4kGZoK5IpkQ", "stars": 5, "date": "2009-09-21", "text": "I've been hearing about these cheesecakes from my husband and his incessant twitter following and I was really excited to try some of the goods at the market this past Saturday.\n\nWe finally woke up early enough on a Saturday morning to hit up Matt's and then peruse the market before it got too hot. We made our way over to the cheesecake table and then debated between 10 or so flavors. He had key lime and chocolate chip out to sample and I decided to try the key lime. I was amazed at how natural it tasted. There was nothing artificial about it, it just tasted exactly like it should. These are very good, very simple cheesecakes. I ultimately went with the peanut butter chocolate chip which is extremely tasty. There are a bunch of different sizes to choose from, all at very fair prices. YUMMY!", "type": "review", "business_id": "ZtT1O60hjWaiGS8itVDQyg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "c10-vMDNqbRVYcM4nrhfpw", "review_id": "3NkpiDnSEX2-RN1vNw9sdQ", "stars": 4, "date": "2012-09-18", "text": "Had the signature Black Chile entree. It was fabulous!", "type": "review", "business_id": "_-9pMxBWtG_x8l4rHWBasg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "A2lCUSvDJfIa5kwUoFFk8A", "stars": 4, "date": "2011-01-17", "text": "A definite favorite in the neighborhood.\n\nThe happy hour menu is always interesting and good. In several visits I've never had anything that wasn't delicious, and the beers on special are uniformly impressive.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "2FiNCj5rM3nF0qgaWf86Gg", "review_id": "ZSuen309_TLXd9UKZ3ISEw", "stars": 2, "date": "2009-07-04", "text": "A pain to get in and out of. I dread each trip I have to take to this place.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZzaGa2nsW5bh71N3GOFO2w", "review_id": "DTcud9LQcBwrC2OOZALS_A", "stars": 4, "date": "2012-10-18", "text": "Great quality. Their Pad Thai with chicken is the best I've ever had. Fresh, flavorful, and perfectly cooked. Their Yupha's Fried Rice is delicious with the pineapple compliments. Their Red Curry gets a 2 star rating for just being Red Curry (it's not as creamy, fresh, or flavorful as Thai Basil on University). It's a neighborhood gem and I'm lucky enough to live right around the corner from Yupha's Thai Kitchen!\n\nAlso, it's clean, bright, and has an inviting ambiance. It's perfect for a sit in casual dining experience, and even nice for takeout. \n\nStaff is friendly and attentive. \n\nCome here. Seriously.", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "rIMJZ33kWr9gJqrFUBWQew", "stars": 4, "date": "2011-07-14", "text": "Great shopping. Even better people watching! Here you can shop stores ranging from H&M and Pac Sun, to Prada, Gucci, and Louis Vuitton. It's a pretty upscale mall, so most shoppers dress to impress, while other people recognize the fact that it is still JUST a mall, so they don't. That being said, you'll never feel out of place, no matter what you show up wearing. I love the valet area the most... it's littered with tricked out Bentleys, Lambos, Ferraris, and Aston Martins! I mean, I drive a REALLY nice car, and I would still be ashamed to valet it there!\n\nMy favorite store is probably Lush! I have a tendency to spend a lot of money in that store!! Sephora is a close second... I'm always on the lookout for my next favorite cologne!\n\nFashion Square also boasts some pretty good dining as well! Modern Steak, albeit very pricey serves up a damn good slab of steak. On my next visit I'd like to try the Kobe beef hot dog!! Z Tejas, Kona Grill, and the Yard House all offer great happy hour and reverse happy hour deals on food and beverages!\n\nAll in all, this mall is impeccably clean, very inviting, and fun to shop!", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QUTW6GQnEAJSqrzoUJ0m7Q", "review_id": "6Gb_wp8N0TFXcYDkuRyWOQ", "stars": 5, "date": "2012-03-22", "text": "The best gyro you will have in Arizona...\nor maybe anywhere.\n\nLove the grocery selection.\nEveryone there is really nice.\nAnd you can buy a BUCKET of dates for like $6.", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8QnZXXA_yJRd_eYWOzcYUQ", "review_id": "KWfhJo0PHpmIG9zE2Q05GA", "stars": 1, "date": "2012-06-25", "text": "Have the owners from here ever even had a bagel from back east? Certainly doesn't taste like it, and they charge double what they do back east too. No thanks. The search for a good bagel continues, for now I'll just keep having them shipped straight from NJ.", "type": "review", "business_id": "-hQ8iZygzi0iiTFUkHgiEA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "I4GolEA9L0k2RfH4CauL0A", "review_id": "t2QTyQKMagNguZBBlou2GQ", "stars": 4, "date": "2012-09-07", "text": "Great white sangria and margaritas!!! We went for dinner, but ended up ordering appetizers and a pitcher of white sangria. All I can say is the service was great but the drinks are amazing!!! The tortilla chips were fresh and homemade. The ceviche was so tasteful!", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LdxngKjcYJTbuf_Q4If3Gg", "review_id": "I3A0nhGZM99qCIgMzTqErQ", "stars": 4, "date": "2011-05-11", "text": "Home sweet home love it ...only wish is more hot water for showers other than that it's a great place to live", "type": "review", "business_id": "386VJataUtyocjP-RzFnNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dTTbYe3Kniw0KLpNUYinVA", "review_id": "upkkNexw5PI21H6Y7F3d4g", "stars": 5, "date": "2012-06-30", "text": "I've been going to Jess @ Chace Salon for almost 2 years now and she is nothing short of amazing!! Cut, color, highlights....she is my super stylist. :) If you are looking for someone to give you a new look, or just revamp a style you're already in love with, ask for her.", "type": "review", "business_id": "lPc3v2JEaCUdbOWM0kGSRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g-rWJxGx1EKqDORpkZXjJw", "review_id": "BElKVd2_Zn7A9cQP42gt5A", "stars": 4, "date": "2011-05-17", "text": "Good place to meet a group, watch a game or grab a quick bite. We found this place on St. Patrick's Day after a long, frustrating day of apartment searching. No wait, quick/good/friendly service, good food and lots of good beer. I like the segmented areas and because it is so big, even when there is a huge crowd, you never feel like you have lost your personal space. Have walked over many times since and will definitely continue to.", "type": "review", "business_id": "SoMmHSD_g9xQv68GV22RZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8PSUiFWz11tGdYy9xEFPZA", "review_id": "BnELCouVX59gBTQLYsZy8A", "stars": 3, "date": "2012-01-17", "text": "I've stayed at an Aloft before. They are pretty much all the same. My king room was clean, modern, and well maintained. I went in the winter, but had it been summer, I probably would have taken advantage of the pool and outdoor lounge area. Even the gym looked appealing, and that's saying a lot. The major downfall (and I say major because the whole point of a hotel is to sleep) is that the bed pillows are so incredibly uncomfortable. It is almost impossible to fall asleep. Someone please get some decent pillows in there!", "type": "review", "business_id": "n25AWEdWRaNMdMI_uN_VOw"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "YmWlIg7HWFu3fwPeh3Tnaw", "stars": 4, "date": "2009-09-08", "text": "BEST CARNE ASADA (GRILLED SLICED STEAK), HACIENDA-STYLE HOSPITALITY. A MEXICAN FOOD EXPERIENCE IN THE THEME-PARK STYLE.\n\n--colorful, tasteful, vibrant ambiance in the country-hacienda style; kudos to the designers with an eye for detail;\n--dining room draws natural light from the delightful patio windows to the vaulted ceilings above;\n--this place and the adjacent ranch market are a \"must-do\" for tourists (bring your out-of-towners here);\n\n--Don't miss the Parrilla (grilled platter); one \"portion\" serves two; choose three meats and voice your tortilla preference;\n--grilled vegetables include nopales (cactus), Mexican zucchini squash, jalapenos (consumed whole, took me to five hiccups before my stomach settled), and baby onion stalks (not the typical pile-o-fajita yellows);\n--both rice and beans served family style, and perfectly flavored. I could just sit and eat bowl after bowl of those beans;\n--juicy, perfectly cooked shrimp; \"asada\" goodness knows no bounds;\n--guacamole is plentiful (no melon-ball scoops of yesterday at $3/ea here!) and freshly made to order; NOW THAT'S what I'm TALKing about !!!\n--table salsa is spicy with lots of freshly chopped chilis and pureed onions; really good burn;\n--try the horchata (rice milk and cinnamon sugary goodness) or any of the featured Aguas Frescas.\n--no fuss over separate checks (and that was for our table of 10!)\n\n--pork was a bit dry; is \"gamey\" possible in pork?\n--server forgot our desserts and we gave up after 20 minutes (shucks! they were sitting right there on the pass!); the manager refunded us promptly and then packaged them to-go.\n\nAfter so many recent disappointments on rock-hard rubbery shrimp, I _finally_ found a place that grills properly, excellent marinade, and with the freshest ingredients. If you get the impression that you are amidst a food operation staffed by thousands, you are correct: several hundred are working in the kitchens next door making tortillas, cheese, asada, aguas and more!\n\nIf you don't have a filthy-rich Mexican relative with a hacienda (Mexican mansion) across the border, this may be the closest you'll get without an invitation. The mostly-abandoned courtyard is centered with a gigantic fountain, lined with what could be booths for a seasonal market, bodas, or other festival. In the corner a lush garden with a somewhat secret door leading to la sala, the grand room.\n\nDon't miss the Ranch Market next door; you won't see retail food sold in this quantity anywhere else in town. Take your camera.", "type": "review", "business_id": "vA8T8QXh78iSXhxShLNgQA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "XK3jzcg2pibsHm6nlCn08w", "review_id": "dMjfTRryNVk2_8JRgRH4eA", "stars": 4, "date": "2011-04-24", "text": "They have plenty of equipment so there should never be a wait for anything. They offer great classes, although they tend to get too full sometimes. It would be nice if there was a restroom up front so you don't have to walk through the entire shower/locker room if all you need to do is pee!", "type": "review", "business_id": "yRga-WpyfZRz8Es4OpyMhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JkHm-xBNa8KKNvWH5TKk4Q", "review_id": "9KEu3HIsAuFr5F8lNFnLkg", "stars": 4, "date": "2012-03-03", "text": "Omg! So good! So fresh! Great burger joint. Ordered the tri-tip steak sandwich with grilled onions. The steak was tender and perfectly pink. Husband ordered the Original with fries. The burger was juicy and a good size. The fries were perfectly seasoned and fresh. We split a drink. Total bill was a bit over $14. Not a bad dinner price. Place was empty when we got here at 9:00 on a Saturday night but quickly filled up. Great service and great food. We will make The Habit a habit!", "type": "review", "business_id": "H91jZ9BiQZZ4_7OlEd6eQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A7p8fnVMFQ5GuMY2Szb81g", "review_id": "08RHBfJ0zyko1-J_GxlokA", "stars": 5, "date": "2012-01-21", "text": "i love this place. very rarely do i get to go out and tie one on. when i do, this is were i want to be at some point in the night. where else can i go and request the cramps? i...love...this...place, it makes me happy. i suppose i should go on and on about what it's like, but i won't. go and experience it for yourself.", "type": "review", "business_id": "cqIHyZ3Q0D4vBi-vb4mi-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FW5o1j_WytQAT6vGgs7tvg", "review_id": "EO9HN49LdsxzAIKc-deVEQ", "stars": 5, "date": "2012-05-01", "text": "Hands down a great lil joint! Gotta get the guac, staff is awesome, way cozy and great food!", "type": "review", "business_id": "W1JyjDzetDVPpnXdpr-l7w"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "9Z05mtXrXJ-22PElwp1ahA", "review_id": "EuHMyw814oxWS_NExJmp4Q", "stars": 5, "date": "2006-01-11", "text": "Maestro Chris Bianco whips up addictive sandwiches at his laboratory on Central Avenue. Ingredients are local and super-fantastic. Check out what today's market sandwich is -- if it's oven-roasted pork, buy it immediately. Don't miss the rice pudding.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 27, "useful": 23, "cool": 22}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "YAXPKM-Hck6-mjF74Zy9tA", "stars": 4, "date": "2009-05-09", "text": "Tandoori Times\n\nVolume 1, Issue 1, Number 1. Limited run. Copyright 2009, Mejimbo Enterprises. All Rights Reserved. \n\nDateline 7 May 2009\nScottsdale, Arizona\n\n Yelpers Jim W and Audrey W were reportedly seen enjoying lively conversation and delicious Indian food with Donald S and Carin S. Witnesses claim the group was laughing loudly at times. One bystander reported, \"That was a guffaw. That outburst right there was definitely a guffaw. Wild stuff.\"\n\n Sources have related to this publication that the group dined on two appetizers, one known as a bread basket which consisted of four types of naan bread. Jim W was overheard to say, \"I really like the onion naan.\" The other appetizer may have been Aloo Tikki. This has not been confirmed as yet. In any case the plate containing the reported Aloo Tikki was cleaned by the foursome, several even going so far as to swab at the remaining sauce on the plate.\n\n The above sources also reported that the table was served an order of the Friday daily special of Kahari Shrimp. It was overheard by a nearby table that the shrimp was \"...flavorful with strong notes of garlic and ginger.\" This has not substantiated, however.\n\n Audrey W reportedly was served the Lamb Korma which she was rumored to have noted was \"Yummy.\"\n\n Carin S apparently was served the Chicken Masala and Donald S may have been served some sort of Vindaloo that included potato. It seems there was considerable sharing of the dishes around the table and the main dishes may have been spooned over what some experts have suggested was a basmati rice with various herbs and spices.\n\n An unnamed source has informed this publication that while Jim W claims to have particularly enjoyed the food and festive atmosphere which included a belly dancer and some swordplay, he was displeased with the excessive sound level produced by the in-house sound system and even requested that the music be reduced.\n\n Jim W's blog had a statement this morning that read, in part; \"...ears haven't hurt the next morning like that since my last rock concert. I really liked the food but I wouldn't go back on a night when they have dancing again.\"", "type": "review", "business_id": "V9i9LnTg9H2XvzqCVBSOXg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "55-K5KXdbrUGQCNF8z3hHQ", "review_id": "ZPdAsJQOE50mgxgziI4gkw", "stars": 4, "date": "2011-08-20", "text": "Good drinks, great food, and cool music. There is a stage right behind the bar. We tried the Fingerling Potatoes in Tomato Jam and it was fantastic.. I recommend.", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KzFTp00JdzuggUHaRn_uzQ", "review_id": "ZsrfHa0bnNXQn87ZRboPAA", "stars": 4, "date": "2012-08-20", "text": "Apparently I'm late to the party on this one, but my first visit to Sierra Bonita Grill was last weekend for brunch. I'm hesitant to add another good review of this great place because I didn't have to fight anyone for a table, and I would like to be able get one in the future.\n\nAnyway... I'm a huge fan of brunch (and especially of Mexican/Latin American-type brunches), so I was thrilled to try this place. My friend ordered the Verde Vaqueros, which are their verison of biscuits and gravy. But the biscuits are no ordinary biscuits, they're Green chile beer biscuits (!) with smoked sausage gravy from Schreiners. The biscuits were delicious. I could eat them with anything... or really without anything else. My friend cleaned his plate. I got the stacked chicken enchiladas because I'm a sucker for anything with hatch chiles, and they did not disappoint. The sauce was flavorful, and the crispy tortillas were a nice texture contrast to the rest of the dish.\n\nWill definitely be back, and would definitely recommend that people check this place out for brunch... just don't take my table.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TwK4rCo5Q_OnEP3874xTLg", "review_id": "h3vM0J9MuqpLscQAPp5hfQ", "stars": 1, "date": "2012-06-27", "text": "We went here for Mother's Day based on the positive reviews and had a pleasant experience. Good food, good service, good ambiance. We came back here for Father's Day and had a very unpleasant experience; the worst display of management I have ever encountered! Apparently our order was never put in from the server or there was some sort of \"computer malfunction' they claimed, but we waited at the table for 45 minutes after ordering, no food, nothing. The server obviously recognized the mistake and kept checking in with us and apologized for the unusually long wait, (did I mention the restaurant was half empty, I wonder why!) and she did offer to comp our coffee drinks. But the infuriating part was when we finally complained to the manager because we could not figure out why the ridiculously long wait, she came over to our table, did not properly introduce herself, sat down and pointed to the man-held computer system and TOLD US we had only been waiting 15 minutes. Really?!? You're coming over to tell us how long we have been waiting??? It was so rude and disrespectful, she was trying to argue her point to us which clearly showed that the server did not put in our order immediately which is probably why the server apologized to us umpteen times!!! It was the most ridiculous display of what NOT to do as a manager. I have been in management and customer service for over 12 years and this was clearly a Management 101 mistake. She never apologized or tried to rectify the situation, but when you come out to your customers in fighting mode you really cannot rectify that! \n\n Needless to say, unless this restaurant starts to provide better training to their managers and team members, or hires a new manager, we will NOT be coming back here again.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 4, "useful": 7, "cool": 8}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "wBGJfwLCFIIli9X5LRoHpA", "stars": 4, "date": "2008-02-10", "text": "After SMOCA opening night, I just wanted to relax with some friends and not go get wasted or have to wait a long time to get a seat at a trendy bar on a Friday night. Oh yeah, and get something to eat. I had remembered some generally good reviews of Drift, had noticed it when going to shows at Martini Ranch, and really wanted something with coconut (?).\n\nAfter a terrifying short-cut with a walking GPS that I was sure was leading us to our death (or at least led us to dog-shit on the sidewalk at one point), we ended up here with a nice enough door guy. Inside I was really impressed. It was a lot nicer than I thought it would be, more sophisticated and while it was Tiki-themed, I thought it was very tongue in cheek COOL interpretation of tiki (very hard to pull off). \n\nWe asked for a booth and got one near the door (which lead to superior people watching later). Our booth was creamy, spacious, left us with no ass swamp, (although the acoustics were a little bad-I had trouble hearing someone two people away) and showed us more intimate tables in very Ikea-esqe and mod black leather. This place is surprisingly classy. The giant aquarium at the bar was goregous and if I ended up here with one other person, I would def. sit there.\n\nOur waitstaff was extremely sweet, the food (veggie spring rolls, coconut shrimp, and pot stickers) were not that expensive (5-8) and surprisingly good. Kristin and I got two orders of spring rolls. We took the longest time deciding drinks-I got the old fashioned Pina Colada in a coconut shell (YUM) and Erica got the Evil Bastard which was set on fire and it was damn potent. I was very giggly the rest of the night. \n\nLooking around, this WAS not a pick up scence. Groups of friends just sat around chatting. On the way to the bathrooms, a small open lounge was dominated by one party having a lot of fun. The bathroom sink blew my mind and I still don't know what sets it off...although my theory is some dude needs to flush the toilet for water to come down and vice versa. I started freaking out in my drunky state, saying \"I have soapy hands goddamit! And I'm smart! How does this shit turn on!\" wiping my hands on the sink with tiny amounts of water.\n\nOverall, a very chill scene with a bizarre assortment of people (bro dogs, homely couples, musicians, barbies, and just regular folks) perfect for a second or third date for a casually romantic drink or two.", "type": "review", "business_id": "o4DsvwwD2kIbF-EM4r9G8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tcWQQaDc0BH1dwhyl6ynaA", "review_id": "IP-mkqqLSLJp9IVd7VaHSA", "stars": 3, "date": "2011-02-14", "text": "Been here several times for lunch and had the pizza. Today my friend & I decided to try the sandwiches. Very disappointing! I had the Roast Beef & my friend had the Turkey. Both were lackluster and smothered with slimy roasted red peppers. If you go to Humble Pie, go for the pizza (and the Happy Hour!)", "type": "review", "business_id": "yypKLRJxSjR2uNaTS_O6pw"} +{"votes": {"funny": 5, "useful": 15, "cool": 11}, "user_id": "WEuIqh8ygm-bH81s8lwD0g", "review_id": "6BVDp3xFEJr7vgHyWyFr6g", "stars": 5, "date": "2010-09-22", "text": "Okay I have found my new favorite \"home office!\" I don't have an office for my agency yet so coffee shops tend to be where I get most of my work done.\n\nLast week I checked out Echo Coffee for a client meeting and we both really liked it. Today I returned and spent a few hours working at Echo Coffee on their wi-fi. It was such a nice break from my usual home office at Starbucks. Walking into Echo Coffee you can instantly tell its a different type of coffee experience. The environment is very relaxing, music is not blasting so customers don't have to scream over each other, and they have great big couches in the back. Of course atmosphere and great coffee needs to be in balance and it definitely was at Echo.\n\nThe coffee is really good and love very fair price for the quality you get (my 2 favs are Cappuccino at $2.75 and $3.75 for large Chai Latte). My chai latte came in a big ceramic mug. I don't know about you but there is just something special enjoying coffee out of big mugs and not recyclable paper cups.\n\nA surprising first for me is getting actual lunch at a coffee place and was pleasantly surprised to find the food was also really good. Can you tell I am a fan yet? I ordered a Curry Chicken sandwich and it was huge and delicious so finished the whole thing. There was a nice bonus on the plate - Mango Chutney so make sure you get that if you order lunch at Echo. I would have loved just a bowl of that and bread as its flavor was so good. I need to find out where they get this from as I want to have it at home. About $12.50 for my huge Chai tea and curry chicken sandwich.", "type": "review", "business_id": "F-ZOeAK1v7e5Rt2Mv5rVMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FFfBjFZWkjMnlZPwbufAkw", "review_id": "Rl1gotAIgb8wHCi48puewQ", "stars": 1, "date": "2012-11-29", "text": "I never got a chance to try the food because I was so turned off by the way I was treated. My family and I will be waiting for a table across the parking lot at The Cheesecake Factory.", "type": "review", "business_id": "P5a2hK5G64J7DcNwLAPhuA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "k3yuawPEvzlAJPj_RMO0MQ", "review_id": "METLCA4XTWdH2kZJ05JTIQ", "stars": 3, "date": "2011-06-12", "text": "A-OK is right and the hype is not always worth the wait. I will keep it simple since there are probably 500 reviews on the place.\n\nPros:\n\nGreat Hashbrowns, and made from scratch food\n\nGood specials to keep things mixed up\n\nGreat company and service\n\nCons:\n\nGuy up front says a little over 35 minutes but really means an hour and 45 minutes\n\nPricey for some dishes\n\nInteresting people around while you wait to get inside (street walkers, etc.)\n\nthe fresh squeezed orange juice is enough liquid to maybe fill up a double shot glass\n\nOverall I would love to give this place more stars if I could get in there without wanting to eat a finger due to starvation, and leave a bit more satisfied. Anyone who has eaten at Bryan's in San Diego would know what I mean.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ske6pb78p1AeeBh0GulEJA", "review_id": "5_mXBgsLxVqs8Yaa3Qvbbw", "stars": 3, "date": "2011-12-05", "text": "Was super annoyed by this Sephora. The first three times I was asked if I was \"doing ok?\" was not bothersome. By the tenth time I was asked, I really felt like the employees were going to frisk me. I had a baby with me! I really hope I don't have to do any holiday shopping here. I'd rather go somewhere else.", "type": "review", "business_id": "pdxyZdnwltQXcu-kD5rpXQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PDFku3Ozng656CxAWH1kVQ", "review_id": "v09iUodtcoCJxyqSLEdibw", "stars": 3, "date": "2011-08-06", "text": "Went there last night for their monthly free planetarium show. It was a really cool show that was unfortunately set to Pink Floyd music. After the show the science dept professors had a huge telescope set up and we were able to look at the moon. First friday of every month!", "type": "review", "business_id": "XKrEnL9yCtlhhIa6efbtGQ"} +{"votes": {"funny": 4, "useful": 8, "cool": 7}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "LtjtyM0CcVWBNRJ-mfsC_Q", "stars": 4, "date": "2009-05-23", "text": "I've gotta say, Nordy's (as my aunt refers to Nordstom since it's her favorite department store ever) is always a safe bet if you're looking for quality selection, customer service, and a very pleasant shopping experience. Whether you're looking for shoes, lingerie, cosmetics, apparel, etc... you'll likely find it at Nordy's.\n\nI'll have to take Samantha O's and Julia T's advice and remember to go to Nordstom's next time I need a new bra.\n\nIn the meantime, I've gotten lucky with shoes, all kinds of clothes, accessories, and perfume. This weekend is a big sale. I ran in earlier to return something and walked out with a new pair of shoes. Oops. Take that as a warning, Nordstrom can be dangerous for shop-a-holics.\n\nThe only times I have not gotten lucky at Nordstrom are when I've been on a mission for something specific - such as Converse Sneakers in Jared's size 7 or a certain shirt or bathing suit in my size. But I'll overlook these times and return again and again... Keep up the good customer service and selection, Nordy's - and I'll be a customer for life.", "type": "review", "business_id": "c7VgGP8xT25OSReok6fwcQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sA0sK9l9VxsynxvrOgmBXQ", "review_id": "a2swmdqJKVM_yEGS9QWZsQ", "stars": 4, "date": "2009-10-19", "text": "I really liked the experience I had at Marcellino's on Friday night. They had opera singers from the Phoenix Symphony performing which were very good. I enjoyed my handmade ravioli with spinach and yummy cheese (not fish yay!) filling and the wine and the mouse. It was good!! \n\nBut then something happened....my date gave the server his card to pay for the meal and it was brought back as not able to be processed (yikes!). The server also informed him that they'd been able to process someone else's but one other didn't go through. My date checked his account on line and it had plenty to cover, but had just enough cash to cover the tab, not really enough for a tip. So he asked the server if they would try to put a lesser amount on the card to cover the tip and take the cash. This is when the server informed us that the machine might be down and it wasn't just his it was everyone's! So he kinda lied earlier, which wasn't cool. We then waited another 30 minutes without an appearance by the server to explain what was going on, although I could see Marcellino working on the machine, even trying his own card. My date got up to go speak with him, and the server tried to divert him, but he was respectful and wanted to speak with the owner. No attempt was made to really apologize for the delay or make up for the wait...so they wrote down his information and address to mail him a receipt.\n\nThen, the next day, he checked his account and he'd been charged twice!! :( sad, because I thought I might like to go back at some point.", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BtQVxFotHFK3T2FtIrBWmg", "review_id": "Om_B3VbViUp9hzk42Xn20Q", "stars": 5, "date": "2012-05-21", "text": "This my favorite Chipotle ever!!! It's so consistent and good! No hormones in the meat makes this \"fast\" food an A+ for me!!! Yum!!!", "type": "review", "business_id": "R2IWbpUgJQ3NRRjKQy6O_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "edy9zILE5uaa0B6HXEekLw", "review_id": "7m3c59swF7eH2DGV2OTShA", "stars": 5, "date": "2010-08-19", "text": "This place is amazing. Absolutely LEGIT. Some of the best shawarma and hummus in the US (Zankou Chicken in LA is a close competitor). The pita sandwiches are stuffed with delicious fresh meat, traditional pickles, and tahini or garlic dressing (depending on preference). Ask for their hot sauce to help spice things up even more. And the Jasmine infused lemonade is crazy sweet, but really good. \n\nI love this place, and have been a die-hard fan for over 4 years now.", "type": "review", "business_id": "IPsG_71MD8pwB9i3TKOJYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_2oYcAukTIaexAnsjUo9tg", "review_id": "OSxnYPxv__h3IIONka_I0g", "stars": 5, "date": "2012-05-30", "text": "Stop everything you're doing and go get one of their brownies, warmed up, with an ice cold glass of milk. I'll never be the same.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "0ouMuScWJ3GuNtWEmmsziw", "review_id": "EcvD8MPKPYKWtKl4L5pf-Q", "stars": 5, "date": "2009-11-12", "text": "Suffered a senior moment today! Did the yelp check and thought this sounds good...the drive was very dejavu and then I discovered why....see previous review! lol .....but to update....the volcano appetizer, sedona roll and Mochi Icecream (which I am becoming addicted to) were all wonderful. Our waitress was also fantastic bringing plenty of their delicious iced tea and keeping the ginger bowl full....a necessity for me. The place was full tonight and I can see why. Question is will I remember?", "type": "review", "business_id": "DxUn-ukNL27GOuwjnFGFKA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "LMlBCXFVAHdPnSA94jc6PQ", "review_id": "QGe-BFFgDnVJ2l3jHXq0eA", "stars": 3, "date": "2009-03-09", "text": "If Star of India (SoI) is named after the historic ship that set sail from Great Britain to India then it is best to declare at the beginning that there is nothing worth remembering about this place and there is little that keeps you afloat in the morass of ordinary fare. \n\nLike many other Indian restaurants in the valley, the smell of Indian cooking hangs in the air and permeates every piece of furnishing. The place does not disappoint when it comes to service, it is warm, quick and attentive. The complimentary papadums (Indian flatbread) with homemade chutneys (condiments) is usually the high point of a meal at SoI. \n\nExperiences with the order could be as follows: \nGobi Parantha (Indian bread stuffed with cauliflower)- The real thing is meant to be fluffy and served with butter but the SoI parantha resembles a topping-less thin crust pizza. \nLamb korma- The gravy is thick, nutty with a lot of authentic flavours but the meat tastes pre-cooked. \nChicken biriyani- it is difficult to describe the God-food that is biryani but SoI manages to serve a new variation which is nothing more than chicken pieces thrown into a mishmash of rice and vegetables. \nDisheartenment with the over-priced, sub-standard food could lead to a decision of not ordering dessert. \n\nFinally, as observed in other reviews and the menu, if you visit this place then stick with the tandoori stuff and Chef's specialities. However in that case the excitement of an extensive menu will be lost.", "type": "review", "business_id": "d_8bMNQd0mesbEUeq1U2kQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "_vzqn2kve9Mp05Vsm_c7ow", "stars": 5, "date": "2011-07-11", "text": "great 3D Imax theater,,,see the Transformers...very spectacular", "type": "review", "business_id": "gXkv89nyNlFyrEdblB3MKw"} +{"votes": {"funny": 4, "useful": 4, "cool": 1}, "user_id": "zzmRKNph-pBHDL2qwGv9Fw", "review_id": "6-Bd6EH7f4iOClnPi3R5pg", "stars": 1, "date": "2011-03-04", "text": "Here's the 1. 2. 3...\n\n1. Great Food. I love hot New Mexico style food. Good job.\n2. They have a little brewery and make 3 house beers. Unfortunately, they're all shitty.\n3. They could REALLY improve the service. No Bueno! \n\nWe'll be back for the food. It might be take out next time though!\n\n4-17-11 Update: Some asshole who was clearly affiliated with Arribas contacted me via private message to slam me for my review. I hope the yelp police find you and pull you off the site. More importantly, I hope more people read my review and stay away from this restaurant. Good Food folks, just get it to go! To Bryan L. and the rest of the gang over at Arribas....Go EFF yourselves! You get one star and NO more of my money!!!!!!! Learn how to work, Kid!", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a89BrWkaBblvdBGdFy1YUg", "review_id": "ZQ2S7QL9ubt_zZdcE4Kz9Q", "stars": 4, "date": "2012-02-09", "text": "I love that this place has top seafood plates and choices. The services is hit and miss but once i went in with three friends and we sat at the sushi bar and they saw we weren't getting service they grabbed our order right away. Happy hour is good and drinks aren't expensive anyhow so drinkers celebrate! Cherry roll (i do it without sauce), octopus, anything with their eels, i love the quality of salmon as well. The best part is that FOOD IS SERVED TILL 2AM!!", "type": "review", "business_id": "nXKwzVKJCtIGd4HxXgjdnQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ScR4Kp6zM9QYpi7pEE3pVQ", "review_id": "h6_uHLM-j0vKLjkRmKSNlg", "stars": 5, "date": "2008-03-12", "text": "This is my favorite haunt. Whether it be St. Patricks Day, before a sundevil game or just a place to meet some friends for a quick drink. Gavin and the rest of the peeps are great. The food is the good, whether out on the patio eating bar food or inside the dining room indulging in dinner. \n\nThis place will always be the primary place to grab a Guinness for me.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "Vyl9tU5OeDcZND37iObmOw", "review_id": "vtHTJAz77K6uucwV51Cg0g", "stars": 4, "date": "2011-04-18", "text": "3+ meals for $10.75? GREAT DEAL! Ask for your meal to go, so you don't have to pay 50 cents for take out box :)\n\nHow do you get 3+ meals, you might ask? PACKING & SMUSHING! First, add some meat, and use the wax paper to pack down the meat all along the sides and the bottom of the bowl. Try to avoid empty spaces in between every piece of meat. Then add your vegetables, and smush it all down with the wax paper with each layer of veggies you add. Make sure to add enough meat and veggies so that your have a flat surface up to the brim of the bowl. Add lots of green onions for extra flavor.\n\nI recommend using the wheat noodles, because you can create a taller mountain of noodles and it's healthier!\n\nAdvice for the sauce: ADD LOTS OF IT. Since you're now a packing queen/king, you can't use the recipes on YC's wall, either double up or triple up.\n\nAsk the nice Mongolian BBQ chefs to add pineapples and cilantro, and then when they finish cooking up your food, add some sesame seeds for that lil extra somethin somethin!", "type": "review", "business_id": "chFzObJSoxAbVlFfgk5JRg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3Zi1udoY2iT9s8Q3X6tgZQ", "review_id": "JpmTOGXZYOwEY3tV7x2OoA", "stars": 3, "date": "2011-05-04", "text": "Not bad. Not super amazing. My cafe rumba burrito was okay, line was moving a little slow but the employees were nice.", "type": "review", "business_id": "Agz-gMJfjCsK5tdKC6FBYQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "gnkpry4OZrNA_4Y2t_XXtw", "stars": 3, "date": "2008-08-11", "text": "I came, I Kiltlifted til the wee hours, caught up with a friend who was in town for a few days and staying nearby. Decent enough bar, was able to talk above the music without yelling, no asshatness witnessed and they have Kiltlifter. Service was attentive, a team effort, yet a bit robotic. They seemed a bit overstaffed, and well , just bored. Did I mention the Kiltlifter?", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k5U-0FBwvWUob8dlT6RvmA", "review_id": "Rq_CS4yv-0x8odT4BMYnAw", "stars": 5, "date": "2011-06-21", "text": "I had Thai coffee and thai fresh rolls. It was good. The vegetables were fresh and delicious. Plans to visit again.", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 2, "useful": 8, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "5rzUPtAk7rR5EK8x_WszwA", "stars": 4, "date": "2009-02-23", "text": "I really don't consider myself a Neiman's type of girl...\nAs a matter of fact, I don't really feel comfortable in Neiman's - it's extremely 'fancy' and high end for me. But, I've gone in a handful of times and even bought a dress or two on sale at Neiman's in the past. I admit, the quality associated with the designer labels at this store is pretty amazing.\n\nAnyways, I felt some major pressure to register at Neiman's from my mom, so I met my mother-in-law-to-be at this Neiman's location on Sunday. The housewares / registry department is extremely small... and although the woman working was sweet, she botched the spelling of Jared's name in the process. Needless to say, i was not so impressed.\n\nFancy sums this department store up in my eyes - I'm much more of a Nordstrom's or Macy's or Bloomingdales type of girl!", "type": "review", "business_id": "h8rqIokh6EkM4flR9CjxbA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "TmC0qdyUgXCkKK47vwLRPQ", "review_id": "YdrffsqmsOZX81hYvK8Qwg", "stars": 5, "date": "2012-11-17", "text": "Delish & authentic! The serving was generous (meat combo fed 2). The injera was good (not too thick/doughy). Spicy and yummy. I would like to return and experience their coffee ceremony.", "type": "review", "business_id": "1udzLbeQxmLTbOtgyVP0kQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "Qm44BhvzVRN5ugsJWK_Svg", "review_id": "SuHlTdX-4q-mXkXD_H0m7g", "stars": 4, "date": "2009-05-12", "text": "Well.. i love the space. It feels like a fresher, newer LUX. EVerythings \"newer\"..that's the only real difference (oh..and it;s 3 blocks over). Same varied array of mid-century modern tables and chairs. Original artwork spread thru-out. I've heard it the same original owners of LUX so it makes sense. Even the espresso tastes like LUX.. which i don;t care for really.. tastes burnt. I love my espresso... but not here nor there.\n\ni love the space, its convenient, evreyone was friendly but (BIG BUT).. they close at 7pm Here's why i find it a problem... .Near a big High Rise, off the light rail (central and c-back).. so I would assume the majority of the crowd would prefer showing up, having a copa de cafe', enjoy some wi-fi surfing, mingle with friends.. but... how can I if i get off work at 5... i;m home by 5:30... freshen up at home.. it';s now 6.... i walk to Lola... its now 6:15... I order my coffee... it;s ready.. i sit down.. it;s 6:30, I now have 30 minutes to enjoy my espresso read the paper or check my email. \n\nbut hey,,, that;s just me. \n\nwhy do I give it 4 stars u may ask... again.. i love the space, the people, the art.. the furniture.. and most importantly I love small local business.\n\n\nPLEASE STAY OPEN LATER! (and reconsider your espresso bean)", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "8SFpYIJed0i6NMr_2rYJhg", "review_id": "nTem0s2r5HX74DXs25WXaQ", "stars": 5, "date": "2011-06-02", "text": "Amazing clothing and fantastic deals! As a photographer this is my first stop for designing shoots when I need amazing wardrobe items. The owners are really nice and friendly and very helpful.", "type": "review", "business_id": "w8D3DAby1nVgU8a4s3z88w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "KuPscbI0KPxudSMPZIcrCA", "review_id": "XIW7sy-FBHx6W0pyjv3Hgg", "stars": 4, "date": "2012-01-16", "text": "Ordered the pork ramen and a rainbow roll. Both were great, sushi was like every other good sushi place and pork ramen was tasty and spicey. Good service from waiter but the hostesses weren't able to keep up with everyone and forgot we were there and had us wait awhile. Other than that, experience was good and would come back.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bc8w3CYs70_EgwTxQHVjQA", "review_id": "1KhtNOyfDXCYVdLRQ0SjgQ", "stars": 3, "date": "2010-10-03", "text": "The sign also bills itself as 'Santa Fe style' food. Having lived many years in New Mexico, with a family - generations of which are from New Mexico - the cuisine was decidely not New Mexican. It was standard Sonoran.\n\nWith that said, the meal was quite enjoyable. The enchilada sauce had a nice flavor. The dulce de leche was fantastic. The service was very good. The decor was a little non-descript, but that's OK, All in all, a nice addition to the meager choices for Mexican food in Surprise. We would probably come back.\n\nI had to give it 3-stars because of what it is not. If you are looking for Spanish food - there is none here. If you are looking for New Mexican style-cuisine, you won't find it either. \n\nHowever, if you are looking for a decent, enjoyable meal at a local family-owned establishment, this is a good choice.", "type": "review", "business_id": "JGpl_nv5hHKGEOdphj-9-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "bvYk98zUE61KoWifshskpw", "review_id": "IolU9r-B-NBp-rDRso6GaQ", "stars": 1, "date": "2010-10-05", "text": "My husband and I have Been meaning to go in here and see if it was anything like hong kong gourmet, so yesterday for lunch we decided to give it a try. Huge mistake! The food was literally inedible, everything was either too cold or burnt to a char, nothing tasted good. We decided to try the desert and the cream puff (I'm unsure how you can mess that up) was petrified and the cream was so gross I spit it out. The smell of the flan actually made us gag, we had such an awful time I complained to the manager. She didn't even seem to care, and gave us 20% off of a lunch we didn't even eat. We were disgusted by this place, and we will never, ever go back. Don't do it, you will regret it!", "type": "review", "business_id": "z5r8zD7vGPCMpKljERvKqg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RknsoxpICgtuuv46uaTpyw", "review_id": "DdeLB3snAlRh2qtZVss9LQ", "stars": 4, "date": "2008-11-20", "text": "My wife and I visited LGO a while back and we were both impressed and enjoyed our meal. The WINGS were by far the best I have ever tasted. Our pizza was great, we had the pepperoni and ricotta. It does get kinda crowded and chaotic on weekend nights. The grocery store in pretty cool but didn't buy anything. Like a previous review, it did feel like a upscale Cracker Barrel. All around a great place to eat. Also, Take a camera so you can take pictures of all the lame hipster clowns that try to make it all about them. They are the only downside to LGO.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "Cq9HM6xD-y-qA-nKoOOPtA", "stars": 2, "date": "2012-07-13", "text": "They're really slipping now. With dinner, you get cole slaw - you can \"upgrade\" to soup or salad for 2.50 more. Really? I've never heard of cole slaw being a pre-meal before. I got the French Onion Soup, its actually better at Mimi's. They put way too much cheese, the bread is pathetic and there's hardly any onions in it.\n\nThe prime rib comes with horseradish - very weak and cut with butter. Never heard of that before either. Luckily I had some sour cream with my baked potato and I asked for some raw horseradish so I can concoct my own. Wasn't the best, but way better than the butter! \n\nThe barbeque chicken was ok. I've had better at diners. They didn't really season the bird, just threw some barbeque sauce on it. At least it wasn't terribly dry...\n\nI don't think I'm coming back to this one. Nooooo..", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "p6Os13EIOkUOUK5pzd0-ag", "review_id": "2Vykbm0AO1_KjK2XB8W-KA", "stars": 5, "date": "2010-06-12", "text": "This will be a simple post...I love indian food, and this is HANDS DOWN the very best in Az. The Chicken makhani is so buttery, so savory...the Chicken tikka masala, the best I ever had. Service is always good, the food comes out fast. It's not super cheap, since you have to pretty much order everything ala cart, but it is worth it. If you go on Friday or Saturday there is also belly dancers. When in rome!", "type": "review", "business_id": "6VRbbNQe5ouWmwsMebUMkg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "LiBeWMVMk4pI3hRrsYiAJQ", "review_id": "x7_1l-zEcADww6KwO1-LIg", "stars": 4, "date": "2009-03-17", "text": "We love this restaurant. It's a family-owned place and you always feel welcome. The food is excellent, especially compared to On the Border, etc.\n\nOrder the guacamole.\n\nA tad pricey but it's North Scottsdale, so what do we expect?", "type": "review", "business_id": "TAlmdEr0RNWZh9IiUS_BLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "hduuRwJpz8gukqbFC26rcA", "review_id": "hfPUZTSCEACNP8d1FYUKCQ", "stars": 4, "date": "2011-12-12", "text": "If you have dietary restrictions or are insanely health-conscious (like me), YOU MUST TRY NOURISH.\n\nThis is an amazing culinary experience for two reasons. \n\nFirst, if you are looking for exceptionally healthy food or have dietary-restrictions, you have a multitude of yummy choices. The organic-y menu ranges from special dietary needs (Gluten-free, Egg-free, Dairy-free, etc.) to proteins from Vegan to Free-Range Meats. All foods are well marked for dietary-restrictions. Yesterday, we had a great roasted chicken and hamburger (gf bun--burger was a bit bland and dry but wifey was happy just having meat, since I do the cooking for us.) The quinoa is quite tasty too. The sweet potato-avacodo salad is great, as are the fries. The 'free' cucumber water is very refreshing, to which I have adopted having a pitcher in my own kitchen.\n\nThe second reason the kitchen is REALLY COOL is that it is a COLD kitchen, with no ventilation. Food is pre-cooked in kilm-like ovens, then when ordered, the prep work is to put into 800 degree Air-Fryers (and yes, no oil is used, it's an air dryer that looks like a jet-turbine engine). It makes awesome fries and crispy skins on chicken. Some done-ness variation does occur in this process; nonetheless, it works well for restaurants with not exhaust.\n\np.s. Thanks for the tour.", "type": "review", "business_id": "ItMihRR-t810HgctGofF3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NHAIwjKa8RfSzlwATIsAHA", "review_id": "A0-FUf6-Q-NI8iWxF857lQ", "stars": 5, "date": "2009-12-20", "text": "The BEST of the BEST!\n\nI agree with Daren C. Killer Burgers, Steaks, Prime Rib and of course ribs.\n\nFood melts in your mouth. Make this your next restaurant stop. You will not be disappointed.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "xg4AdOGHFxJyWByFbG8stA", "review_id": "PxcSbgfDs6yBh_6nBeNcQg", "stars": 3, "date": "2011-03-28", "text": "I was hoping for a more adult friendly place. I haven't been here in years, it used to be a gay-friendly hotspot. Now it seems to caters more to families and children. I've heard the restaurant is good, but I haven't visited yet.", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 4, "useful": 6, "cool": 3}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "3zMROSt7HNbyq7Lp-MzaWA", "stars": 4, "date": "2008-06-10", "text": "I used to live off this place. They cut their meats and cheeses fresh like a real deli, so already it kicks the shit out of Subway, Quiznos, and every other fast food deli chain that offers up pre-packaged meats. Their bread and cookies are fresh as well. For some reason, this location has better tasting food than any other Port-o-Subs I've been to. Don't know why.\n\nThere's always a long line at lunch, but it moves fast. There's some good people watching to be done here - cops eat here, firemen eat here, doctors and nurses eat here, and you also get the entire spectrum of downtown Scottsdale folk... sometimes you would think you arrived at a costume party or they are filming a new Village People video. I don't know what it is and I don't know that it matters either, but good looking people eat here. Whatever you want to make of that... \n\nMost of the people that work here are really nice and competent. They keep this place pretty clean as well. Once I noticed some fruit flies buzzing around by the soda machine and was told they sometimes come with the fresh fruit they get for the smoothies (which are fantastic). Outside of that, I can't complain about this sub shop and I eat here all the time... it's almost just about as good as a non-chain place.", "type": "review", "business_id": "cof7qW-PD0M7Jykclg48oQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "jdeNI5TTTuM6mj3HTgstRA", "review_id": "Wke6QDpOcszhU5EHL2bC1w", "stars": 3, "date": "2012-10-01", "text": "Like anyone else with good taste, I think this place was better when it was called \"The Library\". IDK when their specials are, but the first jager bomb was $2 on a Tuesday night, and I'll love them forever just on that alone. There's plenty of space to sit throughout the bar, a restroom attendant, and usually a DJ.\n\nIt reminds me of sports bars you find everywhere in Glendale, just with a younger crowd.", "type": "review", "business_id": "FGTbFEyNmsPoDoD93T8iSg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "r-zwGpl12La0MQn4Jf-2hw", "review_id": "T5uA9SW0saB8wuFMs9IsyQ", "stars": 4, "date": "2009-03-19", "text": "I like these sort of \"mom & pop\" spots, small and intimate setting. Great pizza! I always enjoy the veggie pizza with jalapenos, oh so good! And mu hubby loves the suicide wings, but we've tried almost everything off of the menu and you CANNOT go wrong. Prices rock too!", "type": "review", "business_id": "c2_iUhnFqctffbBCSVMEbQ"} +{"votes": {"funny": 0, "useful": 6, "cool": 2}, "user_id": "oHn52UJAeJQJxDOob4FEAw", "review_id": "yCB0PVMgHBCJYaAN7ZIAzg", "stars": 5, "date": "2011-01-31", "text": "One of my new favorite lounges to go to with the girls. 1. I am a HUGE champagne fan 2. You can smoke on the patio 3. the drinks are great and 4. I LOVED the decor and atmosphere. My friend and I were at Salt next door for a friends birthday party on a Friday night and decided to sneak next door for a drink to check it out. The staff as a whole were awesome, everyone was very polite and sweet. It has that chic feel with all the servers wearing cute corsets and dresses. The DJ was great as well, fun music that kept the energy level up without making it too clubby and easy to still cary a conversation. Definitely a great new place to sit back and lounge in a place with a fun atmosphere and good service. Yay!", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "5RxpP2Woo7CpOGUmKgDyAw", "review_id": "R3Dndbcc0jEAlXyr4JV1EA", "stars": 5, "date": "2008-05-08", "text": "After reading the great reviews and getting plenty of recommendations to try Fez, I had the awesome opportunity to test it out last night at my first Yelp event and I am in love! From the bright decor to the delicious food to the amazing service (I mean everyone who works there actually looks like they enjoy their job and are having a good time!) this place is 5 star. \n\nI love the cozy lounge feel and could easily see myself enjoying several hours of delicious cocktails and conversation with friends. This would be a great spot for dinner, drinks, or even an event (another Yelp event please!).\n\nHighlights:\nTasty drink menu\nFabulous wicker tables and trendy IKEAish style\nGreat part of town\nSexy servers...dang\n\nImpress someone: Take them to FEZ!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "uQcl8Usm1cK9bQYbpXYdiQ", "review_id": "YlAdlU2f1Fumt7U6OGUs0A", "stars": 2, "date": "2013-01-01", "text": "Tried this for the first time today. While my hubbies french toast was wonderful and the kiddos enjoyed their meal, my biscuits and gravy tasted much like bacon grease and flour. Sending it back and trying something else is what I would have liked to do, but the server never returned to check on us until my family was finished with their meal. The owner did apologize and asked us to give them a try again. Maybe I will, if the staff gets some training. Everyone seemed completely overwhelmed. It's too bad~as I love going out for breakfast.", "type": "review", "business_id": "VDzgxHjMJj-1nMfJMtcSPQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "NMNiUVcUFLPWjQme5Fo6Dg", "review_id": "jWvzWKC2AM-enanyY0rOjw", "stars": 2, "date": "2009-10-16", "text": "People used to rave about this place - I never got it...and I find it interesting that several other folks said the SAME thing in their reviews. The parking lot would be full if you didn't get here before 7 PM, the service was always terrible and the crowd was overwhelmingly hipster morons. Yeah, sure - that's better than the popped collar frat boy meat heads on Mill Ave but not who I want to spend my time with.\n\nThis place is for folks with too much to prove.\n\nI'm pretty sure I only went once - maybe twice...I won't be back.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "POFRAQRX9UY4BF6faAP0jQ", "stars": 4, "date": "2010-12-18", "text": "AZ88, the cousin of Hanny's, brings more glitz and better food selections than is Downtown relative. My friend had a killer salad with buffalo chicken and I had a tremendously delicious burger with avocado, jalapenos, and salsa. They were able to accommodate my desire to skip the fruit and veggie sides and go all waffle fries for me. When I asked for dipping sauces beside ketchup, I got three choices. I would only complain that their water glasses are far too small, especially for some of their spicier dishes. I think the expectation is that you have cocktail to help you wash away some of the heat. Speaking of their cocktails, the martinis, which I have had on a different occasion, are quite good. This place definitely provides for an evening out and makes you forget that you live in Phoenix.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pcYFt1EjfOizhvRJDiz3AA", "review_id": "mf3osxL0XKEwcJ37tWzOMg", "stars": 5, "date": "2010-05-05", "text": "Yes, it is small, yes, it takes time to get your order, but the quality of the food serve is excelent !!! Celina is the name of the owner (not Selena) of this fabulus resturant. She takes your order, runs to the kitchen and then she serves your order too. I wouldn't say that this is a one person resturant, because she has help in the kitchen. \nVery few Mexican resturants in Phoenix serve food as good as this one. The Menu is limited but whatever you order you will not be disappointed.", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IESg-R-NaG8yQwNdxxftyw", "review_id": "RfpcyW2C579dHixRbwa9XA", "stars": 4, "date": "2010-08-07", "text": "If you like beer, you'll love Papago. They have a huge beer selection and the prices are very good. When ever I'm in Scottsdale, I make it a point to visit them.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ur1hCrzqzOLB0vCnjONTzA", "review_id": "pXuWwfsLqMhNBRG_MLsBGA", "stars": 1, "date": "2012-09-18", "text": "Service was horrible and food was mediocre at best~ won't be going back", "type": "review", "business_id": "GlfwqH2dY3MKxrRirKeueg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wB7YiVcqEWyL7arlVLsa-g", "review_id": "1WupnSzzotzuhjkyl7yTEA", "stars": 4, "date": "2011-08-25", "text": "La Grande Orange is great......at certain times! I used to work by there and the curbside pick-up is fantastic. Other than that? I find myself hesitating to go there now because of the atrocious parking situation. This place is an absolute zoo on the weekends and when I can't find a parking spot by the restaurant, I find myself parking in the surrounding neighborhood worrying that my car may be towed when I come out! \n\nNeedless to say, their homemade English Muffins are amazing. I really could just survive on those happily for the rest of my life. The grape preserves on the side are fantastic as well...and I don't even like grape preserves! That, paired with their coffee, makes for one of the best breakfasts in the Valley. And, if you're splurging? Go for the salted chocolate chip cookie if they have it. It makes me happy just thinking about it. :-)\n\nThis place is great if you have a weekday morning available to come here..or an hour or two on the weekend. The little shopping area is great to browse around - when you can figure out a way through all the people in line! Don't get me wrong..the food is fantastic. I just like a little more relaxation on my weekend than fighting through the hordes just to get that amazing english muffin. It's worth it, but then I just feel tired.....annoyed. And that's really not how I want to start my weekend off. \n\nIf you can....call in the order for Curbside Pick Up. That way, you can enjoy LGO without the frustration of finding the mythical parking spot, standing in a long line (albeit trendy) and searching for a table with everybody else so you don't have to eat the wonderfulness standing up.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ehCtzkedHa4Oq5c0IJ9X8A", "review_id": "hAWU7LKCKdeM0lYyYfY3fQ", "stars": 5, "date": "2010-12-28", "text": "Can't go wrong with an iced gingerbread latte, hot waffle with Nutella spread and free wi-fi - especially shared with my beautiful wife. :)", "type": "review", "business_id": "Qr232ykh-d73aAKQqfdu8Q"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "4OFp34tCTh9Pps5nsjt_lw", "review_id": "5luYHSisIHcx7YtZohJPaQ", "stars": 1, "date": "2012-07-01", "text": "Refused to call me a cab because I had a phone.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "BX9K5JMU-NnjxJaNKxImpQ", "review_id": "INhnWFbTOFOil3Q_Is0RGw", "stars": 5, "date": "2008-01-24", "text": "Yup, I'm reviewing a gas station. I like the Quiktrip chain in general and this station in particular.\n\nI find Quiktrips to generally be the cheapest gas in town. Sure, the Arco sign down the street might say it's 2 cents/gallon cheaper, but then you get whacked with the ATM surcharge, not to mention there's all those bums loitering in the adjacent bus stop.\n\nWith Quiktrip, the place is well lit, there's always a trash can and window squeegee at every pump, the convenience store is better than most, and unlike most other gas stations, they don't charge you for the air compressor. Oh, and the person at the register will actually greet you when you step inside the door, while managing to sound sincere about it. Is that the coolest thing for a convenience store or what? \n\nBonus: for those of you who enjoy shopping at the Hot Chick Safeway down the street, this is the Hot Chick Gas Station.", "type": "review", "business_id": "MHy50GRrcXxMORpF_-kNCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a8gpBi7biN9VAoJwKgl3Xw", "review_id": "Q79BryA9gKNujzm39jpDKQ", "stars": 2, "date": "2010-11-28", "text": "As a pretty devoted Fry's shopper, I have to say this is one of my least favorite locations. Unfortunately, it's the closest one to me, so I end up there often. It's almost always crowded, the layout is less than intuitive, and I've gotten questionable produce on more than one occasion. The employees are friendly enough, but it's just no comparison to other locations.\n\nBy the looks of it outside, it seems like it would be pretty large, but once you get inside it's cramped and the selections seem limited. \n\nI suppose this is mostly things they can't change, but it's enough to make me drive a few miles out of my way to avoid it if I have the time.", "type": "review", "business_id": "0COaKgRuDzBisc2AxcLzMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8qSr4B1NJL99rlylewUjOw", "review_id": "XThJY15-3koNSfynPQTJ_w", "stars": 4, "date": "2012-07-15", "text": "The view from the top is quite amazing! I took my fiancee up here for a sunrise as part of her proposal, and she loved it!! You really can see the whole valley. As you're driving around Phoenix and have an unobstructed view to the south, you should be able to see all of the radio antennas at the top. You'd be surprised how high you are when you finally up get there. The rangers up there are friendly too. Just as some of the other reviews state though, do WATCH OUT for random bike riders, runners, and various pedestrians on your way up and in. The roads are a little narrow and there is not much room for error.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "u2OXOYGUcKilQf8ndpbSkw", "stars": 3, "date": "2011-02-14", "text": "A perfectly good place for a chill Friday night dinner. I absolutely loved the atmosphere. Matta's has an upper level where every table is set up like a balcony over looking the main level, it feels like your in a courtyard. The only thing it's missing is an open look at the sky. There was also a mariachi band playing during the night which added to the appeal. And to make things really cool (at least to me), they did a Mexican version of the Godfather theme song. Loved it! \n\nThe chips and salsa came out right away. The hot had a kick to it, but wasn't very flavorful. The mild was excellent, but I prefer my Salsa hot. I tried combining the two, which was only okay. The menu isn't really anything special. It's a lot smaller than most Mexican restaurants, and is loaded with the standards. My girlfriend had a chicken burrito which she enjoyed. I had the chicken fajitas, which were good as well. The food was good, but not great enough to make me run back out. \n\nThe service was excellent. Our waitress was on top of everything despite the fact that we were on the upper level. We watched and felt a little bad as she had to run up and down the stairs (she usually took the stairs that weren't as visible, but you know what's going on) to get everything for us. I could imagine that if a server were having a bad enough day, they would just make people up there and wait. \n\nWe just randomly chose Matta's because we happened to be at Mesa Riverview. I enjoyed my experience there. While it's not a place that I'm dieing to try again, if someone suggests Mexican, and we're nearby, I'd recommend it.", "type": "review", "business_id": "qBc36uFI7orWS8NpYZCv_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VaLglvhXegtW1OMF6_Xfag", "review_id": "gNepvdQlS4feEB92g33qVw", "stars": 2, "date": "2011-12-27", "text": "Not impressed. Beer was cold, but bar keep was disinterested in assisting us, atmosphere was drab, place was small, and the to go order was TERRIBLE! There was no BBQ the day we were there and I just wasn't feeling the place. \n\nMy hubby and I have been missing this place since it closed its original restaurant in Cave Creek. We heard it moved to Phoenix and we found it and went there this past week. Unfortunately, it was nothing like the old, hopping, smell good, smokey, fun filled environment of the original SF. \n\nI can see that they have a lot of regulars and the barkeep knew everyone that walked through the door, which to me, was very cool, but it just wasn't gelling for me this night I suppose. \n\nWe ordered the deep Fried green chili's and there was soooo much batter on them, I had to really concentrate hard to find the chili. I ended up peeling all of the batter off of the chili's just to get a small bite. icky. \n\nI would give this another chance just because I hate writing a bad review. So, after the holidays, may check it out on a Friday night and see where it stands then, Also, I will hope that when I arrive next time, the smoker out back is kicking and there is some REAL BBQ to be had.", "type": "review", "business_id": "UUssRgBCO_riWg3chbv9Zg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "PgSPQE9n-c3FqUhmSoJHAw", "stars": 4, "date": "2012-05-26", "text": "Here last night with friends. We had to wait a little longer to be seated than I would have liked but we were a party of five so I understand. Once we were seated service was quick and pleasant. We shared a couple of the flatbreads to start, so by the time we ordered entrees I was already pretty full and went with a salad, the strawberry balsamic, which was delicious and just made me feel all ready for summer. We were there quite a while talking and enjoying our meal, and the staff never made us feel hurried although it was a pretty busy night. We tipped well enough that I don't feel bad about taking up space for that long, that's something I always make sure to do in that situation.", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "FabrQiKKx83aiG4PNdd_hA", "stars": 4, "date": "2011-02-23", "text": "Don't be confused by the Yelp definition, \"Yay, I'm a fan\", Lowes gets 4 stars because they have great employees that get me out of there fast! I'm not one that would typically be classified as \"Handy\", so the fact that I can go into Lowe's, and get someone to give me DIY instructions in about 5 minutes, makes me happy. I've been to several Lowe's/Home Depot's in the past, but I feel compelled to review this location, because after 10+ trips (mostly on the weekends), I have never had to wait for assistance or behind more than one customer in line. Also, they get bonus points for not only allowing my pups in the building, but complementing them on their cuteness =).", "type": "review", "business_id": "d-wxvpytpGuvSp8w1M4FzA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "g45j6zxyjTmEy6nhf42o0g", "review_id": "olF_c_Lv-MCdFrfb6ixILw", "stars": 5, "date": "2012-12-29", "text": "Tried going there for my 1st visit and they were closed during hours they were supposed to be open. Have tried calling them a few times during normal business hours and did not get anyone to pickup. They may be closed for good. Not sure.", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 11, "useful": 6, "cool": 5}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "s6Gx6KvpjEdbNK_yYVSyhw", "stars": 5, "date": "2008-02-01", "text": "Piestewa and Camelback Peaks are the two boobs of Phoenix. They're real, and they're spectacular. \n\nOf course, being all-natural one is just a slight bit larger than the other, but this is barely noticeable. Camelback is barely 100 feet higher than Piestewa, whose nipple... er... summit, is at 2608 feet. Climb either one and you can enjoy great views of the other at various vantage points, not to mention views of the city. \n\nAlthough Camelback strikes me as a funner climb, I give Piestewa 5 stars because for what it lacks in the intangible fun factor it makes up with being just a tad less insanely crowded. Piestewa Peak Park also has a number of really cool looking trails that don't go up to the summit, which look to me to be worth exploring some day.\n\nSpeaking of female body parts, the former name for this peak was \"Squaw\" Peak. This has inspired one of the most ridiculous controversies in modern times in our state. Native Americans are offended by the term \"Squaw\", and regardless of the linguistic origins of the word, it is basically the equivalent of terms such as \"Negress\" or \"Jewess\". In the 1990s, the State of Arizona proposed ending the controversy by renaming the peak after our greatest political leader ever and the father of American conservatism, Barry Goldwater. The whining dipshits who apparently constitute our voting population rejected the idea. They'd rather continue using a stupid name that has no historical or sentimental value whatsoever just to spite Native Americans, rather than honoring one of their finest citizens.\n\nAnd so, in this decade, Democratic Governor Janet Napolitano put an abrupt end to the whole issue. She gave the sqaw-apologists the finger and ordered the renaming of the peak to Piestewa, after Lori Piestewa, the first US woman soldier to be killed in the 2003 Iraq war and a member of the uniquely-Arizonan Hopi Nation. A fitting end to the debate.\n\nNOTE: Even more fitting, the original name of this peak was Squaw Tit Peak, and I swear to God I'm not making that up to be funny.", "type": "review", "business_id": "vZBYSQtTbY9MaYu5qNuU8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JPdGiAA8qNS-9Re2RN5qVA", "review_id": "jw-Hqj5F0SO33vRhw0W5zA", "stars": 5, "date": "2012-09-07", "text": "I just love Chipotle. Fresh, yummy, spicy (if you want it to be). And the restaurant was clean a HUGE plus! My personal fav is the chicken burrito, no rice, no beans w/ fajita veggies, pico, cheese, sour cream, and lettuce. Guacamole and hot sauce on the side. So delicious!!! The person who did our order was so nice! It was my friend's first Chipotle experience! She was impressed by how big the burrito was. I'm glad I only live a few blocks away... because I will be back.", "type": "review", "business_id": "UAATzhTdfd43S8F0SwXDcw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "eL2AbD_vXdP57eewFH21lQ", "review_id": "mIhNUhDZqzUM6xstFv7lGg", "stars": 5, "date": "2011-03-25", "text": "I love you, Marquee Theatre. \n\nJust last night I saw Dashboard Confessional here and it was packed. \nI have seen many shows here and I have not a single complaint about The Marquee. The bartenders are really friendly, the bouncers do a great job, and the bands they have play here are always phenomenal. Not to mention, the sound guys do an awesome job. \n\nI love how big it is in the Marquee, because it allows for tons of people to see a great show. One thing that most venues fail at is keeping it cool inside of the venue, The Marquee on the other hand does a tremendous job of keeping the temperatures bearable in there. \n\nThe only thing I hate (and this has nothing to do with The Marquee itself) is that I am always standing next to belligerently drunk, annoying girls who can't seem to keep their mouths shut during a set.... Please don't speak... I am listening to Chris Carrabba's angelic voice, thanks. \n\nAll in all, I think that The Marquee Theatre is my favorite venue of all time.", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "mRAPMBM3dbw8KXNit1aDCw", "review_id": "yHkvJxOyBbGT3MG-d487zw", "stars": 4, "date": "2012-07-12", "text": "Great drinks!!!\n\nGood atmosphere\n\nFantastic food (the bbq chicken pizza is a must)\n\nNice people to conversate with\n\nWhat is not to like?\n\nOh yes, the creepy guy that kept staring at me. Oh well, he will not be there next time I go...I hope :)", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "fm77arZHyksGfjdRoSB5Zg", "stars": 4, "date": "2012-06-12", "text": "This location has been so many different restaurants in the past few years and now there is finally a good one! It's basically a fancied-up paradise bakery with better food, bread, and condiments. Oh and better prices too. I had a small Chipotle Chicken salad and a small tortilla soup and that was a good amount of food- with a drink, for only $10.58. The soup was great! And they let me sample several kinds before making my decision. I also loved that they had at least a dozen different kinds of hot sauce bottles on the wall that customers are free to use as they please. I tried three because I like to bring the heat and because they were available. \n\nMy only complaint was that the dirty dish bin was overflowing even though the place was super slow. Can't someone handle that? Its gross to have to move other people's dirty dishes around in order to fit yours in there. Ts seems like an easy thing to fix- someone pick up dirty dishes every couple of hours or something.", "type": "review", "business_id": "0lEp4vISRmOXa8Xz2pWhbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k7hlbzPqiyNRDSKDNsevRg", "review_id": "ZosKIEfjUXP64RIg6bCmyg", "stars": 2, "date": "2012-02-21", "text": "I've only been here once, and for good reason. To put it nicely, the service was seriously lacking. I walked in and nothing. They didn't ask if I needed help looking for something, greet me, or even acknowledge me until I was about to pay. I guess the magazine the cashier was reading was VERY important. I've been to several comic book stores and I don't need someone to hold my hand, I would just like common courtesy. On the positive it was a organized place and the selection was pretty good.", "type": "review", "business_id": "W6TgqysHj-5rFryJ2IIyfQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RqfHaelhNMn-UpTRnAtw8w", "review_id": "SOUAXFGLrvunLJQNXQcgCA", "stars": 4, "date": "2011-09-28", "text": "Tucked in a quite plaza In Chandler AZ, is an un-assuming, little Thai restaurant with BIG flavor. Despite the lack-luster curb appeal from the outside, the inside is quaint and clean. \nGet things started with some spring rolls. The sauce isn't mind blowing, but those 6 dainty morsels of fried goodness have got some real flavors goin on. (especially when dipped in your curry)\nI recommend their signature dish, \"Thai Basil,\" for those who haven't been here before. \nI prefer an extra spicy, KANG-DANG (red curry): Your choice of meat, simmered in coconut milk with bamboo shoots, bell pepper, broccoli, carrots, green beans and Thai basil, Served with jasmine rice. \n\nI will say, some menu items are hit and miss. So don't judge this place based on ONE dish you don't like. (You can find something you aren't going to like on every menu across the country). \nFriendly service, fresh ingredients, and an authentic \"je ne sais quoi,\" earn Thai Basil 4 stars. \"I'm a fan.\" \nEat well, Live well, and surround yourselves with ones who do. - Cheers", "type": "review", "business_id": "ujLZmyy11g1JHCQTxRA3Dw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "RgqU8dg9zaSSkwAlyB5Isw", "review_id": "KnBBQ-r_eP9h3MNEBhhNrA", "stars": 4, "date": "2012-03-23", "text": "We arrived at US Egg on St. Patrick's Day at 10:00 am before the A's vs. Giants Spring Training game and only had a wait of 15 minutes. Not bad to start! Promptly seated we were brought a pitcher of water and ordered our breakfast. The Denver Scramble is delicious! My husband ordered the Hash & eggs - reasonably priced, quick service and a ton of food to start your long days off right!", "type": "review", "business_id": "zruUQvFySeXyEd7_rQixBg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "AKfF9LglCfrV6SKoIDgnOA", "review_id": "WZsnJvHQoXIRlYA0c9XmQQ", "stars": 5, "date": "2012-01-27", "text": "Their food was GREAT! I had the pancit, lumpia, and that purple rice! The price was not bad for the amount of food that they gave you!\n\nEven though they had a very long line they were still very fast with service!", "type": "review", "business_id": "1_WD7kvNQAbscw1c7CFH3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z5QQGDqErjMKD8XtM00s7g", "review_id": "1lfLTA62ZTVTRoAeXC7EXA", "stars": 4, "date": "2013-01-04", "text": "We were staying at a local hotel and used online ordering to feed our crew. The ordering went smoothly and the pleasant surprise was the food arrived early and warm. We ordered two of their usual pizzas and one of our custom orders. Could have had a few more toppings on one of them, but overall nice value and timely service with warm food. We looked for the specials on-line and save a few dollars. Worth the time to do so. Would order again.", "type": "review", "business_id": "3Df6ICj0rHROVH4xUlb7Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0H9ne5frm1GjO6TjUwbxlw", "review_id": "hxX_83ihwWyWE_p8mO077w", "stars": 4, "date": "2009-02-16", "text": "My family and I love this place. Yummy food, great service, kid friendly, rarely a wait, great prices, nice beer selection, food always comes out hot, and people around you are having a good time. The boneless chicken with raspberry barbecue sauce is so so yummy!", "type": "review", "business_id": "xmjv8g356v8Qo55ICjG8rg"} +{"votes": {"funny": 13, "useful": 16, "cool": 17}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "-0d1TTyKmgknAYVEDLaqgQ", "stars": 5, "date": "2009-02-12", "text": "FINALMENTE!!!\n\nAndiamo....\n\nFOOD\n--------\nAppetizer: Fritto Misto, which is a trio of fried appetizers. For the day, ours included a cheese, a stuffed olive, and whole leaves of broccolini. The cheese wedge was great (I wish I remembered what it was), and have you ever had a deep fried veal-stuffed olive? Very interesting. The flash-fried broccolini took a little getting used to, since the leaves kept crumbling as I was trying to eat them, but still tasty, if subtle.\n\nMain: Orecchiette alla Puttanesca. Man. This is the real deal. Orecchiette is the \"little ear\" pasta and \"alla puttanesca\" means it's made \"whore style\". \n\nAnd what a beautiful, classy, yet very vibrant whore she is.\n\nThe pasta was cooked just perfectly, and even though puttanesca sauce usually goes with a stringier pasta (spaghetti, linguini, etc.) it worked really well with the orecchiette. \n\nAnd the sauce. Holy mother, this streetwalkin' hussy of a sauce with its 12 ingredients: capers, breadcrumbs, anchovy sauce, garlic, olives, basil, olive oil, and, uh, the other 5. The flavors were a perfect, clear-heeled harmony. Nothing overpowered the other. Subtle and humble home food. It really tasted just like something my Italian friends' mothers would cook in their kitchen.\n\nAs for the servings, when I first got my bowl I was thinking, \"oh ok, this is a European serving. I'm still going to be starving after this.\" And, um, nope. Why? Because I slowed down. I savored my meal, and took my time with the dish. And by the end, was I hungry? Not at all. I really enjoyed this meal. And the serving was just right. Complimentary packs of long breadsticks are also found on each table. \n\nSERVICE\n-------------\nVery friendly, efficient, and willing to go through the menu in detail and answer any more questions about the restaurant. Dishes were brought out in a timely manner and there was never any rush after the meal was completed to clear the table. \n\nAnd the mood inside Pastabar was palpable. Everyone looked happy, excited, and relieved that the restaurant was finally open for business. And I felt the same for them. \n\nSETTING\n-------------\nI would say the space was just the right size. Not a cavernous place in the least. Probably the same size as Sens, maybe even a little smaller. It's tucked away in the very back of the hallway of the building, so much so that I completely missed it when I was IN THE HALLWAY the previous afternoon looking for it. But I like it a little hidden off, actually. \n\nThe colors inside are warm, with a modern bistro feel. No windows looking outside but I didn't mind that. There is seating at the bar, a few two-tops up front, and larger tables in the back. Selections from different Shins albums made up the soundtrack throughout the dinner, and while the music sounds like it could be incongruous with a bunch of little ears cooked whore-style, it worked. \n\nI definitely don't think this is going to be as \"scene-y\" as Sens. It has a completely different vibe. \n\nEXTRA CRIB NOTES\n-----------------------------\n* the main courses of Pastabar are pasta and ONLY pasta. No veal parm here. And no hoikey sauces like Olive Garden-y alfredo or a jar of sugary Prego.\n* It's great\n* Prices for antipasti range from $7-$11-ish and mains $11-ish to $18. I spent around $26 with tax and a nice tip.\n* it's great\n* No liquor license (yet). For now, sparkling waters, lemonades, a number of sodas (including root beer & cream soda). \n* it's great\n* complimentary valet awaits the diners, if you're averse to parking close by yourself.\n* it's great\n* It's open till midnight on weeknights and 2 am on weekends! What more could you ask for?\n* did I tell you it's great?\n\nALL IN ALL\n---------------\nAn awesome asset to the area and I'm very content. And as much as I loved my whoreish little ears, all the other pastas on the menu sounded incredible and I can't wait to try them all. \n\nI'm wishing these guys much success and giving them gratitude to finally being open. A few minor kinks to be worked out (and I wasn't as into the appetizer as I was my entree) so it's not totally perfect but they have started out very strong, and it's only Day 2.\n\nAnd here I was thinking my days of giving out 5 stars were over (ok, more like 4.55 and rounding up)...", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MBLcbQ_miC1c11cfXQRKoQ", "review_id": "hfUpkVDfarhfaogS_Y0YOA", "stars": 5, "date": "2010-02-21", "text": "This has by far been my favorite movie theater and favorite movie chain in Arizona. This location is better than the others I have been to - quieter, friendlier staff. The theaters are clean and usually not packed either.\n\nI love the t-shirt and cup program - and buying tickets at Costco. I went to AMC last month, and spent a lot more money all the way around and did not like the theater either.", "type": "review", "business_id": "fi5TM0p_6es4QEw8SKRSfw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "ZKuevUayT2eqkGNrJm2nAg", "review_id": "GOQUvL0xb-Bqj_79TvyudQ", "stars": 5, "date": "2009-04-14", "text": "If you've read some of my other reviews you'll see a trend. \n\nKohl's Department Stores.....Brewers spring training...... \n\nYep, I'm a cheesehead. (But if you EVER actually catch me wearing a hunk of fake foam cheese on my head, shoot me. Really.) \n\nWhat can I say? I like Culver's. It reminds me of home. It's total comfort food. \n\nGot one of their Wisconsin Swiss melts. What other fast food joints offer burgers with Swiss on rye? The crinkle cut fries are always hot and fresh. And tasty. \n\nCulver's is known for their frozen custard. What Wisconsinite has not driven past a Culver's, looked at their sign, checked out the 'flavor of the day', and gone, \"Hey, that sounds good!!\", and quickly pulled into the parking lot? \n\nIf you're from Wisconsin or the Midwest stop in for a Butterburger and some custard....it will bring back lots of good memories. \n\nLike another reviewer noted when he said he felt like he was in Iowa or something.....well.....that's the whole charm behind Culver's. You DO feel like you're in Wisconsin or one of the upper Midwest states. \n\nGranted I'm not the best person to review Culver's....I'm a little biased towards it. But if you want a 'different' kind of fast food experience and you've never been to the upper Midwest, it's a heck of a whole lot cheaper than flying there. \n\nGive it a chance....see if you like it.", "type": "review", "business_id": "Y_Y91oeUrIwYa18F8ey5NQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "q3Fa0PhTGzRl-05fXHIi4g", "review_id": "LNAnF5YqVMh91A3eSsoVpQ", "stars": 5, "date": "2012-10-05", "text": "Let's be honest, when you walk into a tanning salon if you have high hopes you'll expect to see a nice person behind the counter who is friendly and can tell you the prices for packages and the max times on the beds. If you have low expectations you'll expect a bored teenager who hands you a price sheet and stares at you looking bored.\n\nWalking into the Total Tan I had pretty good expectations based on the reviews and even those were blown away. Dallas was the person who helped me (I think he's one of the owners?) and he was sooooo friendly and knowledgeable I spent more than I was originally planning but I feel good about it actually.\n\nI had looked at the pricing online so I had an idea of what I wanted but he explained things about the beds that I never knew and that none of the other salons I'd been to had ever told me. He was super personable too, even asking for my name just during his explanations of everything before I had committed to buying anything. He made sure I knew every detail of the beds, the differences, gave recommendations and was never pushy with any of it. During our conversation several people came in and he always asked my permission first to take care of them and I don't think he had to ask for their names once, a good sign that he pays attention and remembers his customers.\n\nI could go on and on because I was so impressed with his service and also the location itself (super clean, trendy, nice extras in the rooms like baby wipes and extra towels) but I think you get the point by now. Just check this place out, you'll be happy you did.", "type": "review", "business_id": "xxSq7BBoCwUHnaxMMgF5mg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PWtlBs3PCH1l0DdypgEszw", "review_id": "lI8Bo4AMQT7C-zNLgvRasw", "stars": 4, "date": "2013-01-05", "text": "My husband surprised me with a stay-cation at the Westin Resort for the weekend and we ate here on our first night!\n\nLet me just say, I LOVE MUDDLED DRINKS, I am not a fan of cosmos or martini's or anything that just tastes like strong alcohol - BLAH! For me stronger isn't better, flavor and uniqueness is better! This place has by far the best muddled drinks I have ever had! If you just want to go for drinks they have this cute little drink bar right before you enter the restaurant - separate from the main dining which I thought was nice. The decor is romantic latin! I love it! \n\nWe started our dinner first by receiving these potato rolls. OMG where have these been my entire life!!!!???!! They are just fall apart in your mouth good! We both ordered mambo mango drinks - STELLAR! We then got the tres ceviches (lobster escabeche / mixto clasico / ruby red tuna) the lobster was the best! But all very good. However the crab empanada was my favorite! YUM!\n\nMy husband got the jidori chicken and myself the adobo pork. Both were good but not GREAT. Too much seasoning on my pork. To me this place is a MUST go to for drinks and small bites. I would have given this place five stars but the entrees just didn't do it for us. However, it was not horrible - just okay. The rest of our experience with dinner - service, restaurant ambiance, overall feel and all of our food and drinks before the entrees was AMAZING! So we will be back just for a more small bites and drink night!", "type": "review", "business_id": "29hR24tcAM3JZaXfA5xCxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "My9DUYlhgwARA-6JJ8_Y6Q", "review_id": "bcJsF2Snj2SZx2uGZBGJMQ", "stars": 4, "date": "2011-04-15", "text": "This is a great dog park. There are two sides, a big dog side and a little dog side. There is a little bit of seating but you can bring a chair if you want. There is water for the dogs and pooper scoopers as well. Everyone that visits for the most part is pretty nice except for the occasional crazy lady who tries to discipline other people's dogs. \n\nThe only thing that would make this dog park better would be if it had lights so you could come at night and if it had more shady areas for the hot summers!", "type": "review", "business_id": "jPsSPQpDd_x1AFw6Ts4wKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GF6IArfVHEFAQmwekt7wug", "review_id": "sBms4XMlA7ynZoPpfrhM5Q", "stars": 5, "date": "2011-01-24", "text": "This place really made a terrible situation as easy as possible. Our cat was hit by a car or beaten, and my husband found her immobile and crying horribly in pain. We rushed her to the clinic, and the doctor saw her right away. She told us our options, but was very upfront about the liklihood that our kitty would pass no matter what we did. She didn't pressure us one way or another, and left the room so that we could talk privately and make our decision. My husband asked if they could give her some pain meds while we talked about it, and they gave her some immediately.\n\nOnce we made our difficult decision to put our kitty down, she brought the cat into a private room with us so that we could say goodbye. She left us alone and gave us as much time as we needed. She also let us be present in the room when they gave her the final shot. At all times the doctor and the techs were compassionate and very respectful. I was crying and they were very sensitive to my feelings. They treated my little kitty so gently even after she had passed. They even sent a sympathy card to our house a few days later. I really appreciated how they helped us through this difficult time, and I would definitely reccommend them if anyone else is in a similar situation.", "type": "review", "business_id": "Yet-ozuhwfG5NLeLqeKcWg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "EbnK9Tb1iE8Svz2z-QPxNw", "review_id": "x08RjoY6FzKBAqLWIw5psg", "stars": 5, "date": "2011-03-29", "text": "OK, yeah, everyone LOVES teriyaki, we know!\n\nWell, don't so quickly dismiss the other absolutely AMAZING dishes served here! It may look like a little pre-processed Japanese hole in the wall from the outside, but they're a die hard home-made mom and pop your mouth full of great food establishment!\n\nI'd highly recommend trying the Katsu bowl! You can hardly find ANY kind of Japanese katsu in AZ, yet they have an excellent one that's very traditional, but not too expensive! I'd love to explain the mystique of this dish, but too many people think that fried egg with onions and leeks topped over a diced pork cutlet that's coated in panko bread crumbs is too strange to be palatable. Well, to them I say you should educate your tongue, and expose it to some delicious culture! \n\nThere's also Orange chicken... This dish is completely the bee's knees. It easily and without remorse makes Panda Express look like a burnt out oil can that a homeless person decided to cook some chicken in over a pile of burning newspapers.\n\nTheir house beef? Spicy garlic brown sauce and beef with mushrooms? Heaven. Simple and delicious.\n\nAnd I haven't even mentioned their coup de grace yet. Their fried rice might seem a little \"heavy\" on the surface as it's lightly fried with some garlic oil, but it outclasses all competitors. Paired with their lightly fried shrimp, it's sweet garlic love. Seriously, their fried rice is the Sean Connery of fried rices.\n\nAs I've been eating here for far longer than I'd like to admit, I'd have to say I might be a little biased. But, for the great unique quality and cheap price, I guarantee you're not going to find any better in AZ!", "type": "review", "business_id": "l1kqHWtICTNk8TdCNisf5A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "gZV-8mMVVaNx1jwm_7h9HA", "stars": 3, "date": "2010-04-30", "text": "From the outside the place looked alot busier however, Not a bad place to go for lunch on Friday afternoon. Especially when it's close to 1pm as the place was pretty empty. My coworker order brisket tacos and they came out stuffed with tons of brisket. She said they they were very good and I will take her word for it as they looked pretty tasty. Now me, I am not an enchilada person however the enchilada de avocado sounded pretty good as it had two of my favorites stuffed in in, avocado and artichoke. I must admit that it was pretty good. I only finished a little bit of it as I had filled up on the warm chips and salsa that was served when we sat down. Yum. \n\nSo why only three stars? Well It's actually 3.5 stars as although the food and the company were great, the service was a little off. Like I said the place was empty and yet our server either forgot about us at times or was busy doing something else in the back. Nicole, our server was sweet enough but still.... hmmm. Oh well no biggie. It was empty and we did get in and out in under an hour but not 5 star worthy. Will I be back again? Probably as the food was pretty good. Heck the chips and salsa alone are worth giving it another shot.", "type": "review", "business_id": "EGiGWZp_zSqdeftiFQ7MbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qyy2X0sjuwcikplzdATfGg", "review_id": "oYcKDHrZ8ziPdX9ORRoJUw", "stars": 4, "date": "2011-05-02", "text": "Enjoyed sitting outside and the barra viejo shrimp dish. I didn't find anything \"to die for\" but it's good. More importantly it was a nice evening and I enjoyed the experience very much. My waiter was very laid back and friendly. I didn't feel rushed and was able to have a relaxed dinner. Case in point- I'm usually a one-drink girl, but I had 2 that day.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zS4hmZxiOa7gA5yndaC4EQ", "review_id": "YWiQJBrXTuSYgkv1y7QaRw", "stars": 5, "date": "2009-10-06", "text": "I first heard about gangplank at the Arizona Entrepreneurship Conference last year. Since then I have been a regular there and the people that co-work or work there are some of the most inspirational ones I know and are passionate about bringing start-up culture to Phoenix area. \n\nThe companies that anchor Gangplank are always working overtime to plan events from Gangplank Jr. for kids to learn programming to the Wednesday \"brown bag\" talks that have ranged in topics from how to pitch to angel investor to a local news anchor talking about how they are using Twitter as a resource for news leads.\n\nGangplank rocks. Nuff said.\n\n@iamtimhardy", "type": "review", "business_id": "_bsTEMjThKNd8CfiHBX6wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Br9mpMhkVunsp8Un5GpYWA", "review_id": "BeTsdc7abK_c6QIZPV3o7g", "stars": 4, "date": "2012-02-24", "text": "I am not a beer drinker, so this is not rating the beer, but the food and atmosphere.\n\n1) Atmosphere: sweet - great patio and nice bar scene inside\n\n2) Food - pretty good for bar food\n\n3) Hit it up if you are in Tempe, its just one of those places you need to go", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NlZE2Oir3HLV0XdELgkjcg", "review_id": "2ezengWz-lYIDWRCX5cfPQ", "stars": 5, "date": "2011-01-22", "text": "I'm President of the Local scooter club so I know and deal with most of the dealers Valley Wide. Tylor the GM and team run a good shop. Very friendly. Don't get me wrong, they are there to make money but they are not push. You are free to hang out and ask lots of questions. Good assortment of accessories and they can pretty much get anything.\n\nThey know bikes and parts inside an out. Service on my Piaggion BV500 has been fast and fantastic. I did not say cheap, but fair. Actually they had a Buy 1 tire get the 2nd for 1cent event this week. In the past they had a 1/2 price on all their helmets. Got a Scorpion $220 helmet for about $110. Just ask what and when they are having specials.\n\nI don't buy the review below about bait and switch, pretty serious accusation. However, GoAZ and Gina over there are good people as well.", "type": "review", "business_id": "kzZJjm56gG0aSpyA-dS3eA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "TFkWpWEpcioVVV-iKU3fdw", "stars": 4, "date": "2010-05-16", "text": "I've been here a million times and usually have lunch at the bar. This is the classic french brasserie style restaurant. With a nod to Balthazar restaurant in NY's Soho this is a fun place.\n\nThis visit I sat at the bar and had the curry chicken sandwich on toasted sourdough. I think that toasting the bread on any sandwich makes it better. The sweet curry flavor make this sandwich a winner.\n\nSean may be the best bartender in Scottsdale. He is always friendly and very efficient.\n\nDefinitely stop in here the next time you're at Kierland Commons.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZXTIFYJPsqBDeBaoGKJc_Q", "review_id": "_dO-XDY5X_R0cp53bEGnPA", "stars": 4, "date": "2011-03-28", "text": "Finally! A non-corporate place in Chandler that doesn't try too hard, yet knows how to please with high-end ingredients: local and organic when possible!\n\nI ordered the Chef's Burger from their lunch menu. Grass-fed, ground in-house 8 oz burger with arugula, Gruy\u00e8re, and onion rings. I personally would have liked the arugula melted under the Gruy\u00e8re or tossed with the Russian dressing. It was too ordinary undressed on the top bun. But, it IS the Chef's Burger and if that's how he likes it, then that's the way it should be enjoyed. Oh, and the onion rings are awesome. \n\nThe service was genuine and friendly. The food came out reasonably fast and HOT!\n\nIt would have been nice if you could hear the music...it was just too quite.\n\nI will definitely come back and try other menu options and I highly recommend BLD!!", "type": "review", "business_id": "M0Ulu3PzwBumgOZJL-6KnQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "mD0e-9jhmbG13jNxYcIg7Q", "stars": 3, "date": "2009-11-11", "text": "For quick fast food.. this is my choice.. I usually call ahead and get take out.. Dont expect super friendly.. but its just take out.. not clear table service.. even if you stay.. I always get the chicken salad with sesame vinagrette on the side but I will say, Im not a fan of the pungent dressing.. I get the chile sauce instead.. vietnamese rolls.. and its not so unhealthy.. NOW my friends that usually nosh with me.. hate the foods they get.. they say it every time I suggest this place.. who knows? Since I havent really tried anything from my norm salad.. I cant say.. but for me its a strong 3..", "type": "review", "business_id": "9Vu9KhK2-kBSM-FXvxXGNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VcN9i7sPrGSOn4BnpOJ9tQ", "review_id": "ZceWozc1QEY0c3K4Xz5HYg", "stars": 4, "date": "2010-05-18", "text": "Recently \"discovered\" Rosati's in Ahh-wuh-too-key. A friend (a former New Yorker no less) ordered us some thin crust, and I was surprised to find good ol' squares instead of slices. I was even more surprised to find that it's the best Chicago style thin crust I've had in my 6+ years in the valley. How have I not run across this place sooner?\n\nI wish they had a \"junk\" or \"garbage\" pizza special, but the Classic Sausage will do. Nice spicy hunks of sausage in almost every bite\n\nAvoid the wings though! Horrible. Wings should be deep fried or grilled . . . maybe I got a bad batch, but I think they actually BOILED them? Is that possible? Irregardless, they were terrible. \n\nIt's a huge kitchen with a small counter area for takeout, so don't plan on eating there. It's in the strip mall with CK's . . . I wonder if CK's would let us bring in Rosati's pizza while we drink and watch the games . . . ? Wings aside, it's my new Go To for pizza", "type": "review", "business_id": "QHyqYUZ0WdxHYPAenIuLjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "yj_LYhizV601mC2Y9ql55A", "stars": 5, "date": "2011-09-09", "text": "Yep -- still my favorite hole-in-the-wall eatery awesomeness. The brisket sandwich with cheddar and slaw and dippin' sauce was to die for. I ate at the bar and just enjoyed my visit. Can't wait til I can walk here!", "type": "review", "business_id": "18TUn9oiW0k0yB6lheiOvw"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "E-Bd5r6Z3zMGA75_D4IRKw", "review_id": "HqepGdfaKNmtNmdkkeuJVA", "stars": 4, "date": "2009-07-12", "text": "I recall my first visit to Carolina's...\n\nThe time? About 1 PM.\n\nAs my GPS says \"You have arrived at your destination,\" I frantically look. I see nothing that looks like a hole in the wall restaurant!\n\nWell, I review the exact address, and note that the address (1202 Mohave Street) matches the \"ghetto\" building with all the nice cars parked afront.\n\n\"Well, that must be it!\"\n\nI park. Then I walk up to the door. The entrance reminded me of a homeless shelter or food bank.\n\nAs I entered, the restaurant was filled with people.\n\nSince then, I have repeated visits to Carolina's with a few favorites...\n\n- Chips and Salsa\n- Shredded Beef Taco (Crispy)\n- Cheese Quesadillas\n- Cheese Enchiladas\n\nThe food is low-priced. For example, tacos are about $2 each. Burritos are about $4 each.\n\nAdditional Notes:\n\n- Closes relatively early in the evening.\n- Serves breakfast.", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kFhzv2iDyBrqvfMZHt-yYw", "review_id": "lOYV0P8kCp8ll8bI12nmxQ", "stars": 2, "date": "2010-12-09", "text": "The manager at this location is a pretentious jerk, he is condescending and immature. I will never return to this place or recommend it. The food is delicious, the atmosphere is sophisticated but the crowd is lame and the management is even worse. Spend your evening and your money elsewhere.", "type": "review", "business_id": "vwZ15OkVO6PemAe87k0M-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ru6uX6w_ms7B_Q3U7wMYbQ", "review_id": "mRAbu8Oidt88_MST5GoQTg", "stars": 4, "date": "2011-01-08", "text": "My friend and I decided to try this place for happy hour around lunchtime since it's such a short walk from ASU. I ordered a glass of the crossing, which was tangy, and a little on the dry side with a fruity aroma. Going off of a college student's budget, we shared a plate of the bruschetta which was a bit pricey for 4 slices of baguette with toppings, but delicious nonetheless. Pulled pork and salmon were my two favorite! The atmosphere is great and it's always lively and full of people- plus it's a great location.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hy8FHZmJIRP-WNMjQZqeMw", "review_id": "nTCK1ssbAbyZlAYFJAaZZw", "stars": 3, "date": "2010-03-20", "text": "Big fan of their SW Chicken Caesar salad and fire roasted tomato soup. My favorite sandwiches are the chicken panini, the turkey cranberry, and the teriyakki chicken wrap. I love both wildflower and Paradise but Paradise Bakery has the best cookies. And although I do not get it very often because its a killer in calories, the chocolate cheesecake brownie is to die for!", "type": "review", "business_id": "SLLRCOUiq-WY0nmePLQAYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PimB4yUetjP2ylJGMpK21g", "review_id": "r20BS868J_pNak2trwNoqQ", "stars": 5, "date": "2012-03-18", "text": "Having lived in Chicago for most of my life I was more than nervous of what an Arizona pizza experience would be like. For the most part my assumptions were correct - but Grimaldi's is great! We get the margarita pizza and it's amazing. I'm normally a deep dish pizza person but Grimaldi's is slowly winning me over for thin crust. Also, this place has amazing cheesecake - the best I've ever had in a restaurant.", "type": "review", "business_id": "x4L42igQPv4TFlqGR2Wthg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "n1h87EmG_HBlp33v3X_QuA", "review_id": "YKSDT60LP_Rvmpvj97CFQw", "stars": 3, "date": "2007-08-26", "text": "Scrambled eggs, toast and hashbrowns. Simple, basic and just what you want for an early morning breakfast. It's kind of like having breakfast in someone's kitchen. I'd recommend starting with (and sharing) one of their cinnamon rolls. They're big and covered with frosting! Good stuff!", "type": "review", "business_id": "7WGBi29_vj_7RcPVxpLNHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PQOk3AaaODhSykbqYsSgEg", "review_id": "CLegdxmPfC1u9IU-r_uGMw", "stars": 4, "date": "2009-12-02", "text": "Come with an appetite!\n\nI went for a work event which was real nice. We had the private dining room and the whole 9 yards.\n\nAll I can say is if you're not a fan of red meat or have a cholesterol problem don't bother. The ambiance is not as format as I assumed it to be due to the location and hype. Although, the meat and presentation is great. Anything you want sent right to your table and cooked however you would like. Just don't leave your card on the green for too long otherwise you will have more meat than you can handle.\n\nOn the other hand, the specialty drinks are good. I don't recall the name of it but they served a traditional Brazilian drink that was wonderful. Not as strong for my liking but good. The salad bar was great too. Everything was fresh and there sure was a lot to choose from. Probably the best I have seen in a while.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6gt6iJB1hiFvSrms5RWxgA", "review_id": "915mO7l6Lmz_vWqfnIgwkg", "stars": 5, "date": "2012-12-05", "text": "Everyone here is very helpful and friendly. No matter who I come in contact with I can tell they love animals and care about me and my pet. The vet calls me himself to discuss my cat's test results. They also made sure to give me a lot of information regarding the medications they are putting her on. I feel that my family gets good care from this vet. We ended up moving about 15 minutes away, but still make the trip to see this vet.", "type": "review", "business_id": "UuAxFxxabj60OrMFdurShw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Ui00Ci0DO3TCElTJ1rVY6w", "review_id": "7D_iPgl-pNRJjYq4O9G24w", "stars": 4, "date": "2011-02-21", "text": "Q. How do you fix a broken pizza?\nA. With tomato paste!\n\nOk, that sucked.\n\nSpin-at-O's pizza is actually how it's pronounced as the owner learned to make pizza in Baltimore MD home of the Orioles or O's for short. Ok, I just made ALL that stuff up but it would have been cool. Right?\n\nSpinato\"s pizza and calzones are amazing. Very heavy and sauce rich. If you're on a diet STAY AWAY. If you're not calorie counting-COME HERE. Their thin pizza is very thin and very good! We got the baked spaghetti w/meatballs calzone and it was what you'd expect but wow was it great. \n\nOnly downside after eating here: FOOD COMA ZZZZZzzzzzzZzzzzz :)", "type": "review", "business_id": "PZv6SPORD9ivj4jwKvGgjQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "pIuRwWH-mVwJeD1m8W2yng", "review_id": "bopymn8kouD2GHzrca84cw", "stars": 5, "date": "2008-08-14", "text": "No matter where you go in the World if you are wearing an in and out shirt or hat some big guy usually yells out \"In and Out Man I love that place\" I think that says it all.", "type": "review", "business_id": "eZyqa81qS0LuH0Bv8vfvrw"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "5vaFU2g9t88ge4Fm_JnM2A", "stars": 3, "date": "2007-01-20", "text": "Had lunch here today after hearing all the colossal raves about it. However, once I walked in, I realized that any semblance of having an authentic Chinese meal went out the window (no offense, my hungry white friends!). \n\nI decided to try it out anyway, was seated by a friendly waiter and ordered the hot & sour soup (they were able to sub in chicken instead of pork - bonus) and the waiter recommended the house chicken to me. I asked for it to be made really spicy, knowing full well it wasn't going to be (no one EVER listens to me when I demand the food be spicy - listen, dammit, I'm brown, people). Anyway, that's my issue.\n\nThe hot & sour soup arrived, and it was excellent. I was happy. Nothing mars a Chinese meal more than beginning it with a bowl of shiteous soup. Then came the house chicken (with string beans added for $1). Steamed rice costs another extra buck - I get annoyed when Chinese restaurants don't make it complimentary, but again, my issue. Anyway, the chicken was just ok. Nothing amazing and it still ended up feeling pretty heavy. So that dish I'm more willing to give it 2.5 stars. \n\nSo why did I bump up the star wattage? I guess the service. \n\nThe waiter:\n\n* noticed I wasn't devouring my dish and offered to switch it for any other dish of my choice, no extra charge. Who does this nowadays - in a Chinese restaurant no less? Extra star.\n* is from the SF Bay Area like myself, so he gave me the lowdown for good Asian food in Phoenix (for dimsum he recommended Golden Buddha first, Great Wall second, C-Fu third - then for Vietnamese he recommended some place on 19th Ave between Indian School & Camelback.) He agreed that Thai, Korean, and sushi in Phoenix is kind of a letdown compared to California, but almost all the Asian restaurants (he admitted, including China Chili) cater to their core customers, who by sheer demographics are pretty much not Asian. That said, he told me that China Chili is THE place people go to for Chinese food, including Chris Bianco (of Pizzeria Bianco), the mayor, folks from Channel 10 news, the owner of the Diamondbacks, etc. etc. So take that for what you will.\n* When I asked if this China Chili was affiliated with...\"oh, the one in Fremont? No. But people say that place is good and fancy and has an electric piano.\" Bonus points for knowing that.\n\nAnyway, he recommended I come back and get the Mongolian beef next time, which I'll definitely do, plus the hot & sour soup. I didn't mind the big open seating area - many Chinese restaurants in SF are like this, loud and raucous. \n\nAll in all, China Chili is a case where service overcame the food (again, how often does that happen?) to come back and give it another shot. \n\nAnd there you have it.", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r8xfTpifZ7gP5Cd5CSQaIQ", "review_id": "4GN4dKHBVHEMzWyAGkZ6bw", "stars": 3, "date": "2010-10-02", "text": "a bit too sweet (sweeter than Yogurtland and Red Mango), but liked the skinny mango and blueberry flavors, excellent spread of toppings (incl. green tea mochi) and great quality fruit. perfect stop-in on Mill.", "type": "review", "business_id": "1eJiyKXx_ruNu6F36BJQCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JeBi1WOHYnCW7Jmi3-nrWw", "review_id": "yG7p1fhb0q8Pz_oUGU834g", "stars": 3, "date": "2012-11-03", "text": "Very VERY average. Actually disappointed in the braciole. Kelsey with the pretty smile and form fitting shorts would probably make me think about going back and trying something different.", "type": "review", "business_id": "91n02N35x38nvR1XH-jOAw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "G72ULY3aYWnsBh8V3GHnTw", "stars": 5, "date": "2008-08-19", "text": "Video Paradise is great. For those who aren't financially comfortable enough for the monthly payment to maintain a NetFlix account, or when you don't feel like buying something from Amazon.com, Video Paradise is a wonderful substitute if you want to get something that you know won't be at Blockbuster or Hollywood Video.\n\nThe selection is staggering. I remember the first time I stepped in, I was amazed. The only movie I really wanted to see and they didn't have was The Helstrom Chronicle, but that's okay. I'm not going to ding this place because they didn't have it. \"You didn't have The Helstrom Chronicle? Lame!\" I mean, come on. No one else has it. \n\nThis place had it all, from little indie films to gross-out horror films I had long forgotten from my disturbing adolescence (Cannibal Holocaust, Faces of Death, etc.). They even had the worst movie I'd ever seen in my life: Hard Rock Zombies.\n\nThe d\u00e9cor is that of sheer, unbridled love for cinema. You can easily spend hours and hours browsing through their selection.", "type": "review", "business_id": "F78kWIJw1PrfS4CbB3qk4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C5N_L46b_EYU_0WQJt3iwA", "review_id": "JngfXIeZ16IEVs9q05TOaA", "stars": 3, "date": "2010-04-11", "text": "Finally tried Sucker Punch Sally's today and I think it has promise. They are still on the small opening menu so the lunch choices were limited but I had the pork tenderloin sandwich and must say I was impressed. Obviously made in house and not frozen, nice sized portion and very tasty, almost like a German schnitzel. The fries were so-so, I don't care much for fresh cut fries as they are usually limp like these were. Will definitely give them another try for breakfast and when they get the full menu going in a few weeks. Nice vibe and the waitress was very friendly. If you live in the area and have been thinking about it, give them a try.", "type": "review", "business_id": "fjHUnUP1Lt-YAbeWUx2LrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ykg3-2C-8Vv3K4mVj1iSfA", "review_id": "yJhmdViCBXMpPtIwT1UbBg", "stars": 2, "date": "2009-07-28", "text": "This place could be great, and I've always wanted to like it more than I actually do. Occasionally, I have stopped into Mill's End for breakfast, specifically because they have crepes on their menu; in fact, their breakfast menu is actually fairly extensive for a small cafe. For reasons explained below, lately I've found myself just walking past Mill's End, no longer considering giving it my business. The general issues that I have with this place involve just a couple of basic things; if the owners made the effort to correct these, I believe Mill's End could be a great cafe.\n\nI have always thought there are three factors that can make a cafe stand out from its competitors. It is with all three of these that Mill's End falls short: \n\n1)Ambience. This means that the environment must be suitable both for studying/reading, as well as relaxation. So, the music playing needs to be something that is non-intrusive and that the customers can generally ignore; sometimes Mill's End has this covered, but other times not at all. Onto the seating. It seems that this cafe was decorated back in 1995, in an attempt to capture the coziness of the cafe on the TV show \"Friends;\" unfortunately, they didn't come close, but there is usually plenty of seating open. By the way, what is up with pseudo-sexual ice photography on the walls?\n\n2)Price. This is actually my number one problem with Mill's End. The coffee is reasonably priced, but the food is too expensive. Anytime I tell someone that I ate there, it's always the same response, \"yeah, their food is good, but it's really pricey.\" Considering that this place is literally ten feet from a major light rail stop, I imagine that their business has gone up, but those prices sure haven't dropped.\n\n3.Customer service. The staff has always been just lukewarm. Look, I don't expect the staff in cafes and restaurants to be smiling like idiots all of the time, I only want to feel welcomed with a bit of hospitality; this has just always been kind of lacking at Mill's End.\n\nHonestly, I think this place has a lot of potential, but it seems to be awash in complacency.", "type": "review", "business_id": "fLtUF61A5WrKIRIaWlf9wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0Sunr838_CEnkDRSAgaz3Q", "review_id": "rHFrTHicKvplYqoAUl__FA", "stars": 4, "date": "2010-11-14", "text": "Really nice jumping point for a good night in Phoenix. Crab Cake Sandwich was great!", "type": "review", "business_id": "t_0576Esa58pcLHCEpj31A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qQns9dP75RNOWOVWI_ZKZw", "review_id": "3mXMYCWEhQMGSaTk7tvTGw", "stars": 3, "date": "2011-11-12", "text": "We visited for the annual Local First Fall Festival. There was no parking available, so we had to go across the street. There were also too many people, so crowding and navigation were problematic. There were a good number of tents offering free samples. It was great to try food from several local places, since we got to discover new places to visit later. Unfortunately, none were selling food, so we couldn't also get lunch on the spot and had to go elsewhere for a full meal. I like this event as a way to try food samples and explore potential places to visit in the future.", "type": "review", "business_id": "HIiVx2mseVWKtx8TKfWC_A"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "nK6jxzqS5pVVTDYtva_Lew", "stars": 5, "date": "2012-05-22", "text": "Weekend plans prevented me from kicking off AZ Restaurant Week on Saturday. So on Monday, Venyse and I headed to White Chocolate Grill where we both had our cherries popped.\n\nWe started out with the spinach artichoke dip. The blends of cheeses made this perhaps the single most spectacular dip I've ever had the honor of putting in my mouth. O.M.G. Venyse and I were practically clawing at the bowl to get the last of its creamy loveliness. But when you hit a home run so soon in the game, the rest of a meal can seem at odds.\n\nHowever, I was not daunted. She ordered the New York Strip with a side of mashed potatoes (with good gravy...what exactly is that?) and roasted carrots; I the blackened Mahi [*back story to follow] topped with crab and a side of Israeli couscous. We didn't share our protein, but we sampled each others sides. All were very good, but the carrots really stood out. The gravy and the potatoes were good and I loved my couscous. But halfway through here steak and by the last few bites of my fish, we both hit the wall. A food coma was certain. I persevered but Venyse relented and boxed the rest of her meat and carrots.\n\nThen came the white chocolate brownie. So sweet, so rich, so topped with vanilla ice cream. It was all we could to to make a dent in it. We both felt bad, because isn't white chocolate supposed to be their signature ingredient? \n\nRegardless, this was a terrific first restaurant to go with which to begin. And we both agreed it would be a place in our future dinner splurges. I also must admit I love LOVE the belt buckles. Having about 42 myself, I was intrigued when I first noticed what I thought read \"SWAG\" after staring for perhaps too long in that general region of one of the staff. (Really super sorry if that creeped you out.) It's actually WCG.\n\n[* When a group of us went to Key West one December to escape of the harsh winter of NWOhio and Detroit, we went to a restaurant the listed \"Dolphin\" as one of its menu items. I asked in a slightly shocked voice if it was really dolphin, to which the server responded it was actually Mahi. 'Oh,' I responded. 'Then I'll have the veggie burger.' Because even in 1998 I was a food bitch.]", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "OCsrk-5wLPhFMMGZUQasrA", "review_id": "Jp1Qz-v1T8l26EPpYb7Iow", "stars": 1, "date": "2011-07-12", "text": "I waited 45min and ended up with a tiny gross little serving of tortilla with vegetable scraps thrown in it, served in a aluminum take-out box. The tables are folding tables, like the kind you play beer pong on. And they have pictures of kids and babies on the walls and signs asking people to send in pictures of their kids for the walls too, which has nothing to do with Asian/Mexican cuisine, it creeped me out.", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n1ZKHhVozfzCDLEgsZTrkQ", "review_id": "DrFU7tPfdY-95Pm47r72nA", "stars": 5, "date": "2011-03-22", "text": "I am so not a fan of the dentist. But Dr. Ito and his staff changed that. Professional, yet relaxed attitudes. From the moment you book the appointment to the time you leave you feel like are well cared for and that you aren't just a number or a dollar sign.\n\nWhile in the waiting area I flipped through Dr. Ito's \"Smile\" book that shows some of his work. WOW! He makes teeth look real, not like Chiclets. He does some fabulous cosmetic work! \n\nI went in to have a crown put on and it was quick and painless. So quick that I didn't get to finish watching the movie! Each chair has headphones and a flat screen that shows a movie (he keeps a good stock of the latest movies.). Who'd have thought that going to the dentist would keep me so entertained?\n\nI've had to bring my son to each appointment as I haven't had anyone to keep him. Does that matter? Nope. Dr. Ito's office is equipped with a children's area in the back where the kids can watch a movie, read a book or play a game. He thinks of everything.\n\nI have been recommending him to everyone I meet. I can't say enough good things about Dr. Ito and his staff. You won't regret going to the dentist if Sonoran Hills Dental is your new dental office.", "type": "review", "business_id": "jVaujSVCpH9c2qb7XkvpnA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JnRT9i2d71pY8D8ngzCz9Q", "review_id": "BkTIVrr0ghwYSOIwBmnk0Q", "stars": 5, "date": "2009-02-19", "text": "The best tai in downtown for the price! Masiman is the most tasty dish here!", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "dVJ_y1NGSA_g6rc-NDDWHQ", "review_id": "MsfsufTolTGqp8e1odn0fA", "stars": 4, "date": "2012-07-29", "text": "I have never had a bad meal from here. I can't say the service is quite up to par considering the menu, interior and pricing, but sometimes the food is all you need to be won over. This restaurant is within walking distance from my work and when I have gone for lunch, I have never had to wait. The host is professional and poised. Unfortunately, the hostesses are not as much. But again, you can quickly look past that. The menu has already changed at least a couple of times which makes the dining even more fulfilling because you can keep trying new things! The food is definitely not average or casual cafe style, yet you can find things on the menu such as homemade chips, baked macaroni and cheese and a buffalo sloppy joe. The bar is beautiful and they have live jazz on Saturday nights.Great for a business lunch, a romantic dinner or tasteful happy hour.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "xg4AdOGHFxJyWByFbG8stA", "review_id": "LgEe0Ryq099i2O8BhK5Nfw", "stars": 4, "date": "2011-04-09", "text": "Very pleasant hip restaurant. Try as many Bruchetta options as you can; each order comes with 4 pieces (potentially 4 different toppings), and all the ones I got were delicious: Brie & Apples with Fig Spread, Tomato Jam & Fresh Sheeps Milk Cheese, Prosciutto with Figs & Mascarpone, and Fresh Mozzarella with Tomato & Basil.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L8NC1S3O0AgBwrysvG1wfw", "review_id": "cY55iO5GK4nsY4-4eCSHyQ", "stars": 1, "date": "2012-09-09", "text": "Totally dissapointed. I had purchased a coupon from TravelZoo, to try out this restaurant, which given its location I would have thought it was going to be very upscale and we were expecting a WHOLE LOT MORE. \nThe Service was great, but the food, not worth it. The restaurant itself is very outdated, very 80's. \nMy husband and I had the crab cakes for appertizer. They were cold when they were served. We told our waiter, who in turn told the chef, and the message was passed back to us, that she appologized. \nMy Husband ordred a 12oz New York Strip ala carte for $29.95, 6 oz of that was pure fat! and for the price you would expect to get more meat than fat! I ordered a wild mushroom pizza, which was OK. This place needs an over haul in a major way, if they want to make any money at the restaurant, which for a Saturday night at 7pm when we went, was empty. I think the highlight of the meal was the bottle of cabinet!", "type": "review", "business_id": "6P2DqisDHtmD4Lvs2sMP-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "4jZwjy_SE1LOmYFN9IWibA", "review_id": "23K_F9_k9LaWI44jw31qDA", "stars": 5, "date": "2011-12-25", "text": "Man, I love Southwest. Best airline ever. After a bunch of holiday delays on my way home from a business trip they comped us all a round of drinks. It's nice to have an airline that can give you a glass of wine to compensate for a one hour delay. Cheers to that!", "type": "review", "business_id": "dpbY5XypBdeFmo8DsZ-DNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aidmFfjOjpVKD-5L4J6X7w", "review_id": "8u4Zx8HOdKGIUdFzjqqXFw", "stars": 3, "date": "2011-10-28", "text": "Really mixed feelings here. Met a friend here on a Thursday about 6:45. Place was busy, but we were able to get seated immediately as it wasn't totally full, and even being not at capacity, it was insanely loud. Naturally I expect a beer bar to have a relatively high volume but this place was ridiculously loud to the point of being annoying.\n\nThe beer selection was good though I'm not sure that makes up for the loudness and atmosphere that seemed a bit off: really brightly lit, and the decorating was of the signs-bought-new-but-made-to-look-old variety. Almost like a Bennigan's, kind of fakey-like. And why oh why does a place that specializes in beer and seats so many people have just a single urinal and single stall in the tiny men's bathroom? I hate standing in line to pee but than again maybe I'm just getting old :D (as an aside, obviously I have no experience using the women's so can't address that, sorry ladies)\n\nI'll try it again though. Food was OK, not great. Probably won't be a regular hangout since it's not close by to where I live and it didn't seem worth going out of the way for considering how many other beer bars/breweries there are around the city with better atmosphere.", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "6K6GvIJZ_G_luOrVZDwrZw", "review_id": "zAlqvp4Jz3ImkkEaUjDuOQ", "stars": 4, "date": "2011-02-06", "text": "Sweet Potato Tater Tots..................why are you still reading? what more needs to be said? Yum Yum getcha some!\n\nThe only thing keeping them from 5 stars is their unwillingness to enforce rules with parents who bring kids and think everybody else wants to enjoy watching them run around the place like its a playground, its NOT - keep your kids at the table or at home.", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L3XWX_dd8_pYnRSMdppjDg", "review_id": "PIDUqvrJvHE0dBUYThQwag", "stars": 3, "date": "2010-03-07", "text": "I went to Susie's for lunch the other day. I got it to go, as I was alone and don't like to eat at restaurants by myself. There was only a few people inside and the food seemed to come pretty fast if you eat in. \n\nI probably waited about 20 mins for my to go food. I thought the restaurant was in need of a remodel. But they don't seem like they have the greatest hours, as they close at 5pm. So it is a lunch place, not a dinner place.\n\nI got my food and took it home. I live not even a mile from this place. I ordered Sopes. They had shredded beef, lettuce, cheese, tomatoes and salsa. I thought they were very comparable to the ones I have had before, which were homemade. \n\nI would like to go back for lunch, but as I'm not home much for lunch it might be difficult! Definitely worth a second chance!", "type": "review", "business_id": "-d1I0dwtCg1IIjnI3DZ38Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IEFyvGVxFKhYJDyEV5Erog", "review_id": "CIcYQfeXAHpGHcb78HLdJg", "stars": 2, "date": "2011-03-27", "text": "We arrived at 7:00, had a party of six, and were able to be seated within 15 minutes. Fabulous, considering the number of hungry people coming into the restaurant that evening, but we have always had good luck getting right into Grimaldi's, regardless of the location.\n\nThe new Scottsdale Quarter location has great ambience and service going for it, but I was sorely disappointed by the quality of the pizza. One of the reasons my partner and I keep going back to the Old Town location is for the consistently tasty crust: crisp and thin, yet chewy and moist as well. Our pizza last night had a thicker crust and too well done, by comparison. Maybe the QC will improve as time goes on--I'm sure we'll be back to see.", "type": "review", "business_id": "8lKiCgPn_eonn5CNsffabw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "8ex-QTfinXgYqxBsjv5dcw", "stars": 4, "date": "2007-03-04", "text": "I've been to corporate events, concerts and Spring Training games here, and I've been consistently surprised at how well they do what they do. \n\nFirst the field. At Spring training games you are so close you feel like you're watching a little league game. The grass is go green it almost looks fake (it's not). And the backdrop of office and apartment buildings is decidedly suburban. I finally get the big draw. \n\nNext - the vendors. Taco in a bag (must experience to believe). Strawberries and banana dipped in chocolate on a stick. Great pizza. Amazing choices of beer. Oh, if only they had a selection of soda the way they had a selection of beer. \n\nParking is plentiful and the grounds are always kept neat. Folks who work there have all been helpful and friendly. It may feel like it's forever away from our Phoenix core, but it's not to far for an experience that BOB or Chase Field could never provide.", "type": "review", "business_id": "oajNY_oTIMb7YZsor7Xonw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "-yaUMGgbVm1iOG_j8CmBtA", "review_id": "eepsXJKHhETXXU4fFgm8aA", "stars": 1, "date": "2012-12-24", "text": "This store is banking on the hope they are the only place to buy what they are selling. The mgr at the cash register was not only snobbish and unhelpful but down right rude. It is 12/21/12 I know Christmas time is tough for retail employees but I was at many other retail stores today and their mgrs and employees were extremely friendly. I spend approx 1/2 hour talking to a sales assoc who was very friendly and all was good until I got to register with the mgr and I ended up walking out without purchasing anything. I then went to my car and purchased desired items on amazon while in this stores.parking lot. I know business is good this time of year and maybe this companies business is always good. But the post office and Sears also used to be the king! I could explain all the facts of the situation but I am sure it would make no difference as I am confident this is the culture of this store.", "type": "review", "business_id": "z8eZR3tKIXIo2X9rEd9p2A"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "ebCOe-Bavz5fYCVL716KIA", "review_id": "8RdvpQ1dFAUE8kIZvbtbcw", "stars": 5, "date": "2012-03-11", "text": "Excellent burger", "type": "review", "business_id": "4AKcmN--0hbF0kX9pg8scg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "8Xt2fKbgEujyRojTmP8tbA", "stars": 5, "date": "2010-09-08", "text": "Came here instead of Starbucks to get some much needed study time... It's too hot for coffee.. Close to my university ... Has all things berry healthy... I personally ordered the Berry Fulfilling w a free energy shot... Free!! I'll take berries and free any day.. My drink : all berry and only 150 mere cals..& filling.. Actually felt like dessert.. Awesomely sweet staff..", "type": "review", "business_id": "GXFGmNCR4jgT8toUBQp2Hg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "X6RfPfjHFBkA2UB3QotYSw", "stars": 4, "date": "2010-03-07", "text": "I was actually really impressed, even though I didn't think I would be. I headed here for lunch last week when Chipotle was super busy.\n\nThey have a great and fairly affordable lunch menu with lots of options, including lots of vegetarian options. I also really appreciated that my waitress went back and checked with a vegetarian staff member to see if the tomato soup had meat stock (it didn't, but minestrone did).\n\nI got the pasta with the soup or salad combo with this delicious Mediterranean pasta - olive oil, feta, pine nuts, tomatoes and red peppers. The pasta itself was surprisingly bland, but with a hint of salt and pepper, it was pretty tasty. The bread that it came with was also delicious, all on its own. I got the tomato soup, and man, it was definitely one of the better tomato soups I've been lucky enough to have.\n\nMy server was great about the food coming out quickly, and was on top of my refills. Very friendly, not over-crowding.\n\nI'll be back in the future with my partner to get a better feel for the beer (which I don't drink) and meat dishes (which I don't eat), but I'm happy with my first visit and will be back!", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VlpwSHJnXruY2nWJMcvg7A", "review_id": "RlJ_E3O9p9QGjrQEsChm2Q", "stars": 4, "date": "2011-01-02", "text": "I found this place in Yelp, so I at least started with some optimism ;) I wasn't disappointed. Great portions and plenty of variety. Got egg rolls, mu shu pork, house low mein, Mongolian beef, rice and 4 fortune cookies, soy sauce, and hot\nmustard for about $30 plus tip. Plenty of leftovers after stuffing myself ;) Everything tasted as expected, though the egg rolls and Mongolian beef were better than most... Not crazy great, but really good for take out/delivery. Now if they only made Chinese turkey for Christmas!!", "type": "review", "business_id": "xhwp_bACX0017Qxu8_AVbw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "cHQXswil4gewZ--z-wtc8Q", "stars": 5, "date": "2011-03-28", "text": "I have found my new favorite breaksfast/lunch spot! I love the much cozier and homey feel this place has as opposed to chains like Panera and Corner Bakery. We stopped in at Wildflower Bread Company over the weekend because I had heard great reviews about their freshly baked loaves of bread. We were just going to pick up a couple specialty loaves since we needed bread at home anyhow. Instead, we ended up staying for lunch after we got a peek at the menu and the dessert case. \n\nMy fiance ordered the salmon alfredo and he loved it. This said a lot to me because he's normally not a pasta person. The salmon itself was really good - soft and flavorful. I had the butternut squash ravioli - one of my all time favorite pastas - and WBC's version did not disappoint. I loved the nutmeg flavor it had - perfect complement to the creamy sauce and the butternut squash. Both dishes came with big slices of grilled toast. The pasta portion sizes itself were perfect. Just the right amount to feel satisfyingly full but not overly stuffed like the portion sizes at Cheesecake Factory or Macaroni Grill. We ended our meal by splitting a lemon bar which also was devoured down to the last crumb.\n\nIt was a later lunch for us (around 3pm) so it wasn't crowded inside but there were still a good amount of customers so it seems to be a favorite. Service was pleasant and fast and the menu has a wide variety of items that we're excited to go back and try more.", "type": "review", "business_id": "ojjtPlnSmCX1zCzWL7JoNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hpuc-b9xxcrOWluFYmCLoA", "review_id": "0zaH6wDCTDs75jxXnXV51A", "stars": 5, "date": "2012-04-21", "text": "I saw this place on a Food Network series in November. When my family went to Phoenix in March for spring training, I knew we had to stop here. It was the first stop after getting off the plane and getting the rental car. It was in a sketchy area in the town, and far enough from the freeway. When we were there, the workers gave us samples of the different foods. I got the chicken fried rice combo with jade red chicken and the pollo diablo. The pollo diablo had a nice spicy flavor, and the jade red chicken was also very good. The snickerdoodle was very soft and chewy, which was a good thing for me. This will be a permanent stop in Phoenix for Spring Training trips.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "vTvxsif_dlYJOtFxS-t2RQ", "review_id": "OHEPhyLR6NoadE9BlBcPkQ", "stars": 4, "date": "2012-03-28", "text": "Congratulations on opening the Gilbert location. Glad to see you guys making the shift to the far East Valley. As to be expected, the bruschetta was great. We really enjoyed the Syrah and the Sangiovese. It's really hard to beat the $5 glass/pitcher deal before 5pm, and the board + bottle ($20) on Monday and Tuesday night make for the perfect date night, though it can prove to create a long wait.\n\nIt was nice to see staff from the other locations making the move out here. Small mishaps and things that get confused in the midst of opening a new restaurant are bound to happen. No worries though, we've been 5 times in the first 10 days, showing that you guys are right on target. Looking forward to getting to know the staff and becoming weekly regulars.", "type": "review", "business_id": "ss5gVggeSmAgMUeL65UvYw"} +{"votes": {"funny": 5, "useful": 1, "cool": 3}, "user_id": "IdcwNulMu2xQN8JDvm67SA", "review_id": "MtTbbSSKXimJCjvhEl6BIw", "stars": 2, "date": "2008-04-18", "text": "Terrible food. Pretentious service. Stale bread brought to table. Mole was grainy and tasteless. On the upside, great tequila selection! At least you can get loaded and pretend the dinner you just waited too long for and paid too much for was worth it.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PlYBocPQMxzbDWLGIGAa4g", "review_id": "xmXoAQdtynpoI0fQvtQsZA", "stars": 2, "date": "2012-01-27", "text": "This place loses out due to poor customer service, which is a shame, because the food is good. it didn't used to always be this way. It used to be good food with a friendly, attentive staff, but then they changed management. \n\nOur first experience with the new management and staff wasn't great. Service was slow, but we figured they must be busy so we let it slide. Then we bought stuff from the market. They have two registers side-by-side--one for the market purchases and one for the restaurant bills. We went to the restaurant register so we could pay for our market purchases along with our meal. First of all, we got ignored and had several customers taken before us, despite the fact that we were there first. When they finally decided to acknowledge us, they told us we couldn't pay at that register since we had a market purchase. Rather than just sliding over to the next register and taking care of the purchase there, they made us wait in line again. Finally we checked out...and were overcharged. We didn't realize this until we got home and by then it wasn't worth going back. \n\nWe decided to give them another chance and went back a few weeks later. This time the service was even more slow. 15 minutes passed before we even got our water. 45 minutes later our food still hadn't arrived. The waitress kept speeding by our table and ignoring us. We snarfed our food down fast when it finally got there since we had to get back, and went to pay. Long wait again as we got ignored for other customers who came after us, and then they overcharged us. Again. Fortunately we caught it this time. They hastily made the correction, without so much as an apology. Rather, they acted annoyed that we were holding them up. How about getting it right the first time if you don't want to do it again? \n\nSo that was it. I don't think we'll be going back. It's really a shame, because the food is delicious and this used to be one of our favorite places. It's just a shame that the new staff sucks. I can get good food elsewhere and not be treated like garbage and overcharged.", "type": "review", "business_id": "TsmBNiwMMeb8aRrZs00JBA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "CuLj9-1BYbK7KkmO2dC7Aw", "review_id": "hw7z9Y1Hvr9sXwKqUxMO3Q", "stars": 2, "date": "2012-01-03", "text": "I love German food, and as far as the food went at Bavarian Point, they had some good eats. The *only* reason I'm giving the restaurant two stars instead of one is the food. Their rindsroulade was very good, and the red cabbage and spaetzle were excellent. But the quality of the food was undercut by the poor service. It was bad enough that I wouldn't return, and certainly wouldn't recommend it to anyone else. As others have noted, there was no-one to greet or seat us -- not even a sign saying \"seat yourself\". Our waitress took a LONG time to make it to our table to take our drink orders, and when she did, she was complaining about something and looked put-out in general. When my wife ordered a beer, the waitress told her that it would be more expensive because it wasn't available on tap. Now, that could be useful information, but the manner in which she told my wife was defiant rather than helpful. Believe me, we gave her no reason to be so sour -- it was clear that this particular waitress was clearly unhappy -- whether with her job or life, it's hard to say. It's too bad, really, because the food *was* good. But why would anyone want to eat at a restaurant whose workers are either nowhere to be found, or miserable? Not me.", "type": "review", "business_id": "Ih1TGSZyu2Q8htn2JA4tIA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "jDfW8sYmK9-JNcZoyY_naA", "stars": 4, "date": "2010-10-23", "text": "One of my earliest memories of Phoenix concerns waking up under the eucalyptus trees that used to cover most of what is now the business park and shopping center next to what I will call the \"new\" Duck. The old one was far larger and would have been about where the Starbucks is now. Of course, I'm talking about 1973 here, so I digress. . . .\n\nAnyway, the current abbreviated Duck remains one of my favorite places to relax and hang out in Phoenix. Now I have a little one who enjoys running through the grass near the patio and socializing with the other youngsters that frequent the place. The bar features interesting wines by the bottle and glass. Most nights the by-the-glass happy hour special is something rather interesting, in contrast to the \"red\" or \"white' found in other joints. The interior of the small bar is dark like a cellar. In fact, you can find a variety of atmospheres in and out of the Duck.\n\nAnd the sandwiches! Yes, try them all. Very, very good.", "type": "review", "business_id": "7Jmri1RCl9Ksmpi5EoIOZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Aj7Gx0gmjb-tX9tJ4IvqKQ", "review_id": "63pmCoLKOMVRBkI-kI4W-Q", "stars": 1, "date": "2011-11-30", "text": "I was so happy to see another station in the neighborhood. I went in to fill up as I usually do at any station unaware that I was paying TEN CENTS MORE PER GALLON (than Circle K) because I wasn't paying cash or using a Shell credit card. Yes, there are signs on the pump but, really, who would think to look for such a requirement? I've been buying gas for over 40'years and have never seen such a non-cash penalty. I, and my children, their spouses and our friends will not be getting gas there ever again. How disappointing and dishonest.", "type": "review", "business_id": "jiuXlfRHzpi9DLzdx9yqvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XaSDZk_rE3D7WI4EKtXM2Q", "review_id": "A8LQr-i0lN5x_tts8mwXdg", "stars": 2, "date": "2010-04-17", "text": "Our group was not pleased with the quality of the seared tuna salad (everything about it was low quality and just not tasty) and the quality of the grilled cheese (Velveeta cheese?) sliders. The cuban sandwich was pretty good, though it's not enough to make us want to go back for more. On the good side, our server was really nice and sitting outside was very pleasant and breezy. I hope the food improves.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V4VW69mBsRzfa3mLmyBqLQ", "review_id": "pKmFVKVA5GQN5dqU8QblAA", "stars": 4, "date": "2011-04-25", "text": "Stayed here for a friends wedding and it was excellent. The rooms are expensive, but they have been redone. This hotel was built in the 80's and the grounds are above par. They have a 3 level pool with a bar in the middle. Works for me! The golf course is really nice.\n\nThe staff is excellent and the rooms were really nice. Make sure to use your Starwood Guest Number. If you like cactus, stay here.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "Lf5qRPFFlsrpT8IN2RYe6w", "stars": 4, "date": "2009-12-29", "text": "Being a stranger to town, it took a while to find it, but well worth the search. I was hungry for cajun food and thought I would give it a try, and am glad I did. I tried both the gumbo and jambalaya and both were excellent. I sat at the bar, and the service was friendly and attentive. Although it is a long drive, I will be going back as soon as I have another craving for cajun food.", "type": "review", "business_id": "XeoeF0twXRV4mUZJgIjc8A"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "JS6RZ9f1NDo1QcbpEoA-bg", "stars": 4, "date": "2011-07-18", "text": "Very nice, classy decor all around, cleaner than most places I've seen. Seems like a place you'd wanna dress up for.\n\nDrinks could be a little cheaper ($9 a shot), but I figure it's Scottsdale, so whatevs..\n\nMusic ranges anywhere from old school hip hop to top 40's music you hear straight from the radio.\n\nNo cover, so that's always a plus.", "type": "review", "business_id": "4juYmq_YpvdV8HZ1r0AWBw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "8h5EXsiEuK5_igQ0cgxPZQ", "review_id": "U70RIBj0LRe7E68XGsGURg", "stars": 4, "date": "2010-01-19", "text": "Great soup at a great price.\n\nI go for the veggie soup normally, since I'm a bit leery of the raw meats and strange meatballs you can get. Their vermicelli is also quite edible.\n\nService could be a little quicker.\n\nBring cash if you're spending less than $5 - with pho and water you will pay 3.50 + tax. Cheapest lunch in town.", "type": "review", "business_id": "CMTDZRDnv_O0rwAvRVbjvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "ysINNe8YpbOW_-5T5CSyhw", "review_id": "0UBnLhVxAfBI8e36wTupXA", "stars": 5, "date": "2012-09-22", "text": "This is the only auto repair place I've ever seen with 5 stars solid, and they totally deserve it.\n\nMy boyfriend has a 1969 Pontiac Firebird that hasn't run in several years. After sinking lots of his own time into tinkering with it and $1000 to the awful Meineke down the street, he gave up... until my car's transmission went for good, and he decided to fix the Bird (yeah!) so I could drive it (yes, I am super lucky!)\n\nWhitey's diagnosed it as the carburetor dumping fuel (which is what Meineke charged $500 to replace.. hmmm...). Upon hearing the story of Meineke, Whitey's told him to order the part himself to avoid the markup and they'd put it in for just labor. Awesome!\n\nWe took it home, but it wasn't running quite right still, and then failed emissions. Back to the shop it went.\n\nWhitey's took it back, spent ALL WEEKEND on it doing various minor things. At one point, they called and said \"We've done this, this and this, and it's still not quite right, so we're gonna keep it another day.\" I was glad they were admitting they actually felt it to be not right and were determined to fix it, versus just handing it back again... but I was dreading the repair bill.\n\nWe picked it up Tuesday. The bill? $7. That's right - SEVEN DOLLARS. They only charged him for a spark plug and oil filter. That is amazing to me - I was expecting several hundred dollars for their time. \n\nThe car runs beautifully now, and they were extremely pleasant the entire time. I'm taking my alleged defunct car to them for a second opinion next week. I HIGHLY recommend Whitey's!", "type": "review", "business_id": "tenKOmTRi2rjZAWwNCDv6w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "47lUbqC14ufZJYEG5-RcOw", "stars": 3, "date": "2011-01-15", "text": "Westgate has a few more restaurants now but stil need more shops for shopping to come along. It is starting to build up but slowly. It was nice to walk around from dinner, but the amount of teenage kids there were a little annoying. Guess I am not the mommy type!", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8Uuzc8YpvQgGLeB0X-Ferw", "review_id": "mtKGyWW1YFniTYzIFendBg", "stars": 3, "date": "2012-08-14", "text": "Pizza crust & toppings are excellent. However the pizza sauce was too salty. I'm willing to try again later.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "oKzkyfGalJC3-BOeLLCcIw", "review_id": "YR-RzwSMkn5XIcX47kiT_w", "stars": 4, "date": "2012-07-24", "text": "Their rolls are super inventive....and they stay open later than most Sushi Places in the Valley (2am). \n\nTheir Happy Hour is insane! Ex: 99 cent beers on Tuesday!\n\nI've never had a disappointing meal here, and I am pretty hard to please when it comes to sushi.\n\nRecommendations:\nSignature Roll\nSquid Salad\nYellowtail Collarbone\nDrinks, Drinks...drinks.\n\nThey have a little karaoke room, and full bar you can make use of as well.\n\n1 Thing: When it's busy, be prepared to order everything at once...or you will be waiting.", "type": "review", "business_id": "nXKwzVKJCtIGd4HxXgjdnQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bkRfY8jHdFxf7k8vLX4buA", "review_id": "64oFbcXXvvr18fPZi9rREg", "stars": 2, "date": "2010-06-12", "text": "I believe this place is over-hyped. the menu is overpriced. the portions are small. the meat is low quality. slow service. sterile decor.", "type": "review", "business_id": "UIGFrEcoDsw05I1UOrxdOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "04xW5mhSBaCzpjbcf2VSZg", "review_id": "uGTQAJ9h3WfqoHif_DbDKQ", "stars": 4, "date": "2011-03-12", "text": "This place is sweet. They are not big on china, glassware or silverware. They use recycled products plates, plastic-ware and drinks in the container they come in (ie a coke in a coke can). The ambiance is awesome. Sweet and funny signs everywhere, reading material, classic rock playing. They only have the radio on but there always seem to be great songs on! They have a large patio out back that is difficult to see from the front but is really nice on a sunny morning. \n\nI haven't gotten past the breakfast bowls yet. $6 for 6 toppings, potatoes, buttered toast, and jam. Go ahead and eat carnivore, omnivore or herbivore style (not sure if there are vegan options). Seriously, this $6 breakfast bowl would be $12 at other places served on fine china and with silverware! I don't care about accoutrements like that. Especially when the food is so tasty.\n\nThe location, midway point of the Melrose District, is stellar. You can spend hours walking up and down looking at retro shops and cool little places. Two Hippies sets a perfect tone for hanging out on 7th Ave!", "type": "review", "business_id": "fJx0N4N0NbyHEeoDU9nH8g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "V1k7XMUX4qHVUi-3IUYzhA", "review_id": "t9ngnScZDCF1QTkYKGgEsQ", "stars": 4, "date": "2009-04-11", "text": "This is a great staple of Tempe. I try to stop by here before spring training and Diamondback games. If you're looking for a grill dog I would say this is the place to go.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bGvtW70L5c2SBp6mwAvqLA", "review_id": "ABF9gU7feK6obdFDeBq0vQ", "stars": 4, "date": "2012-01-01", "text": "This is about a 3.5 star mexican place to me. I've always had good service but watched other folks get like 1-star service, at a level I might not come back.\n\nI like the White Chimichanga here. The Chili Verde is decent, and the Hatch Chilis are nice too, if you haven't had those.\n\n4 Stars - White Chimi\n3 Stars - Chili Verde\n3 Stars - Cheese crips with Hatch chilis\n\nI'm sure there are better places around but I've been coming here for several years when in the area, and I definitely enjoy this place.\n\nSometimes they have hot chicks working up front. If you keep up this practice Arriba, I'll five-star you sometime soon!", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aqmtZa9o9K4casagyyfpyA", "review_id": "kKGlFLRIgvpil-uRw8CjtA", "stars": 5, "date": "2012-02-13", "text": "I've rented from Captain Ted many times, and even gone on one of his guided trips down the Salt River. He is helpful and very knowledgeable and I would highly recommend renting here.", "type": "review", "business_id": "6PQZz7xe2VoWNjhPQhoPjA"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "QiR2X306Yzd9fuJdKDhkGg", "review_id": "7X9CV9e3PS_q-a_024kosA", "stars": 5, "date": "2010-09-07", "text": "Have I got a place for you un-health conscious, frugal foodies out there! Rocket Burger and Subs serves up huge sandwiches and fried delights for astonishingly low prices, and much of the food is home-made. There's also an enormous section of unusual soft drinks; for instance, there's over two dozen brands of root beer to choose from. Dennis, one of the owners worked for A&W for 8 years, so he probably has root beer running through his veins by now. \n\n I saw Rocket Burger in a listing of new valley eateries, then did a little research. The reviews I saw were all stellar, so I knew we had to give it a try. It doesn't look like much, inside or out - it's in a little strip mall tucked behind Churches Chicken at 35th Ave. and Cactus. But it's clean, and everybody is helpful and pleasant. Ken gave a happy whoop when he saw Cheese Curds ($2.49/$4.49) on the menu. We decided to get an order while waiting for our friends Randy and Marty to join us. The curds came quickly out of the kitchen, piping hot, served with some tasty homemade marinara. They were a touch greasy, as they should be, and the oil was fresh. Marty and Randy arrived in time to save us from ourselves by helping to finish off the curds. Then we took a while trying to make our selections from the extensive menu. Eventually Randy and I both went for the New Yorker: pastrami with homemade slaw and thousand island dressing ($2.99, $3.99 or $4.99). Ken had a homemade-meatball sub, with more of that good marinara and some provolone. It was the same price structure as our New Yorkers and all the rest of the entries under Classic Subs and Sandwiches. Marty went with a double burger ($3.89, the singles are $1 less). He could have opted for a Rocket Burger - !0 inch sub with three burgers and the fixings in either plain, cheese, bacon, teriyaki, or chili style ($4.99 to $5.99). Of course we had to try the fries and onion rings.\n\n Again our food arrived quickly, served in plastic baskets. It became very quiet, except for the occasional growl of pleasure. The onion rings ($1.99) had been dipped in a thin cornmeal batter which made them nice and crunchy. The handcut fries ($1.49) were skinny, the way I like them. Randy thought they were undersalted, but I thought they were fine - our usual disagreement. At any rate, they disappeared quickly. Unlike the sandwiches. They were so big that we all ended up taking half of each sub home. The slaw on the New Yorkers was delicious, as was my whole wheat sub roll. The meat balls were nice and tender, and there was plenty of cheese on top. Randy had found a bottle of ginger beer imported from Australia that had a wonderfully refreshing true ginger taste. There seemed to be actual pieces of ginger in it - instructions on the label said to invert the bottle before opening. It never did tell you to turn it right side up again - the Aussies give us more credit than we deserve. \n\n Other food items available: Hebrew National hot dogs in several styles ($2.49), Pizza \nBread with various toppings, Gyros ($3.69), salads ($1.99 - $3.99), a fish sandwich ($2.49) served with homemade tartar sauce. And lots more. I don't know how Dennis and Steve manage to turn out food of this quality for so little money, but I surely do hope they continue and prosper!", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "BRHJDnT-kLosTfUWhRBQ_w", "stars": 4, "date": "2010-08-16", "text": "Being a fan of the infamous Roscoe's Chicken and Waffles in Long Beach, I was totally down for some chicken and waffles this morning. The bestie found this place because it was close to my new home in Arizona and was sure to be a hearty brekky after all the physical exertion of packing, moving and loading/unloading a Uhaul. So off we went...\n\nThe place is easy to find and pleasant to walk into. The staff was friendly immediately upon arrival. Service was quick and attentive. The menu is simple but appealing...so are the prices. We decided to go with the traditional chicken and waffle plates to satisfy the savory and sweet tooth. Waffles are big, maple syrup is warm and the chicken is perfectly southern fried. \n\nI'm afraid I have to admit that I may now be thinking of LoLo's first whenever I hear chicken and waffles. MmmMmm!", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wvsMlpa6U9RV4-_pU4gBJg", "review_id": "7pDu262vEGm7Avr9QeghAA", "stars": 1, "date": "2012-04-12", "text": "not clean, worst gel manicure ever and ruined my nails--Jimmy finished it --his wife started it. Nails sanded too thin and they talk to other people and look away while they'e filing, sanding and cutting. They cut two times now into the side of my thumb nail, which causes it to catch and tear off the same day, or soon. Their 10 or 12-yr old daughter brought the colors to pick (she is much too precocous to be customer focused--she's narcisstic and I want an adult waiting on me). They have to open bottles to look at gel color--no samples. Gel drying machine is sitting on a priority mail box on top of chair in customer wait area. Pedicure okay. Won't come back. This place like many with Vietnamese want your money, they don't understand service (or cleanliness in this one) and why we really come to these places. They also try and nickle and dime you on price, for instance give you a deal to take off gel from previous manicure, when you're getting a new gel manicure. They want to use the dremel to sand your nails down to the quick. How about healthy nails and return visit. This place I'm surprised stays in business. Sadly it's not in a category by itself although the others are cleaner. Jimmy should stay away from nails and customers, and just keep quiet. The girl might be cute to some customers but I am not coming to have a 12-year old wait on me. No thank you.", "type": "review", "business_id": "sDGjlZV3SqYGWG9BO4ZpMA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DOJM58OkGSsIdk2qCUZnLQ", "review_id": "DdGcTKaN7G1TbMZ5rbEWqQ", "stars": 3, "date": "2010-08-04", "text": "Today I was ready to be beside myself with glee as I took my daughters out for lunch. I've been here several times for breakfast and lunch, and have never been disappointed. They have the BEST eggs! I also love the layout and of course, the free wifi. August is their \"Burger Daze\", a different burger every day for the entire month. Today's burger was the wasabi burger, and being a fan of foods with kick, I was thinking about this burger since yesterday. It almost makes me cry to say I was underwhelmed by it. It was a burger with a creamy horseradishy sauce on it, and you got a little wasabi flavor, but it lacked that kick you get from eating wasabi. It also had an Asian salad mixture on the burger as well. Don't get me wrong, it was tasty, but when I think that I paid $11 for that and a side of potato chips, I feel a little slighted. If you eat ten of their burgers over the course of the month you can get a $25 gift card (save your receipts). The burger just wasn't good enough to get me to come back 9 more times this month. \n\nI'll definitely return to Liberty Market again- as I said I do love the restaurant and would recommend it to anyone looking for a place to eat. However I think I'll stick to their breakfasts and other sandwiches. The three stars is for today only- next time I hope to come back here and give them a 5!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VnOtsJ2514YIAd0fM2O8oQ", "review_id": "k1Z_y1mV3of8Jsl0AsibFQ", "stars": 4, "date": "2010-02-03", "text": "Great cleaners, open weird hours, always polite to me, anyhoo.", "type": "review", "business_id": "RMcSaSsKiIRTO-OO-6kW3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VcIlVWhLQLlKoHfVhsA97w", "review_id": "5E83rtbNiOHzRhvBXBpaog", "stars": 5, "date": "2010-04-08", "text": "I've been going to La Canasta for as long as I can recall. I live in Tempe and can't go as often as I'd like but I go at least once a month. I love this Canasta because they have a green chile salsa and menudo every day! Always quick and fresh. I either get the ground beef tacos (yummy), the red chile burrito (watch out), or the menudo (got a hangover?). It is very consistent and prices, well it adds up, but it is worth it. I have yet to have a bad experience after 28 years!", "type": "review", "business_id": "LM9d5wQcVqh97g7qpCQ88A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tueZZgG49lLPMj1gRkM2Ag", "review_id": "N4fLnV6utcZyMzPraZbOFg", "stars": 5, "date": "2011-08-03", "text": "It cannot get any better than this my favorite is mix of banana , hazelnut and lemon. It is quality stuff. If you want something better fly to Italy.", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KnutNOkfu5t1XA8rEhiq2Q", "review_id": "wUcCDY7qrFPvdi5IJnorFg", "stars": 4, "date": "2010-04-03", "text": "Been here twice and enjoyed both of our experiences. The setting is pretty urban feeling for far east Mesa--grateful for that. The wine list is pretty unusual...lots of wines and grapes you've never heard of since the owner is from...Hungary? Can't remember, but the wine selection benefits from his extensive knowledge of that region. \n\nThe fried chicken--patented, no less--was really something. Spicy and brined to fall off the bone. The pasta dishes are good as well, with portions expected in a urban restaurant (don't expect Claim Jumper portions). \n\nAll in all a great place to sit, savor dinner and talk. Waitstaff is on a learning curve, and you benefit, since the restaurant is new and they bend over backwards, service-wise. Highly recommended!", "type": "review", "business_id": "hzHyNCc3WijMVOzPcCuRJg"} +{"votes": {"funny": 0, "useful": 5, "cool": 5}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "bUry2lOH49ZiLa6689F6Qw", "stars": 5, "date": "2012-04-07", "text": "Visited the phoenix public market - open air market - farmers market they have on saturday mornings and decided to give mojo bowl a try! They are at the market for food truck fridays also. Check out their website for their usual schedule. They can take cash or credit (with square).\n\nI tried their strawberry banana smoothie and my wife had the Funky Monkey (peanut butter / chocolate blend). They were both great quality with fresh ingrediants. They serve salads, yogurt parfaits, and soup also (which I didn't try) but Ive heard their smoothies was where they shine and they did not dissapoint. Give them a try, at $5.00 for a 24 oz smoothie, you can't really complain about the price - its basically a meal itself.", "type": "review", "business_id": "IP_1LeKBGA5HYzNQrGqJGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gC9JZOzHYxJd8IxUlzoqtw", "review_id": "1cwNQX4UvihE4ylRyw_eog", "stars": 1, "date": "2011-07-28", "text": "Bad customer service! \n\nNo one at the front desk for thirty minutes. Plus they left the phone on the counter so when I tried to call their number, phone just kept ringing and ringing. :(", "type": "review", "business_id": "50cJrzHLMDQiazc-w0V2gA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DW15zMg6lrCiSGwo04uWkQ", "review_id": "y5WcIWT8SCTX2FfM6zjJtg", "stars": 1, "date": "2009-11-09", "text": "What's with the cheese? It isn't even Velveta. It's liquid cheese food and it belongs somewhere other than on my burger.\n\n$5 burger and fries is a great deal IF -- IF -- it's a great deal. This is just liquid cheese food on a hamburger patty. McDonald's will do a burger and fries for $5 that's tastier than this dump.", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "gOvKWYXobX_Pgzsz-K8auA", "review_id": "wIQ3fPSi6KhB24wmcpO6Ow", "stars": 5, "date": "2007-04-30", "text": "what is it with me and pricey phoenix hotels? i swear i don't just give out fives willy nilly or do i have any particular adoration for phoenix. (sorry phx.) \n\nI went to the Valley Ho on an amazing business trip that involved rock stars and the Oakland Athletics, which happen to be my favorite team. it was downright magical. \n\nthe decor was fantastic, the rooms were huge, with huge tubs, a poolside patio and a comfy chaise lounge. the flatscreen TV had an iPod doc! yaaaaay! (why don't more hotels do this?) \n\nthe pool was phenomenal. i sat around for days on couches drinking bloody mary's and frozen drinks. the lobby bar had a deadly but wonderful drink called the stardust. \n\nThe trader vic's attached isn't so hot, but i generally liked all the food i got from the pool bar and the restaurant ZuZus. (room service too- they make their own english muffins!!!)\n\nIf i'm comparing it to the royal palms, the other phoenix resort i raved about, it's tough. Royal Palms is better for chilling and families; Valley Ho is better for singles. Royal Palms is your wedding; Valley Ho the bachelorette party. Valley Ho had better food and more style, but Royal Palms had a bit more to it and better service. Really, you can't go wrong with either. \n\nWhat is it about Phoenix hotels??? all i know is i am no longer groaning when i'm sent on a business trip there!", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OOxLwlNadygUwL_aG8KnSQ", "review_id": "ICUGOXjzk8KaV54W0exmDw", "stars": 5, "date": "2012-07-30", "text": "This is my dad and I favorite lunch spot. Pho-real! Impeccable service and the freshest food. Their spring rolls ate immaculate, fried rice is pretty close to Peruvian friend rice, and their pho is truly unphoghetable. The servers are friendly, the owner always asks you how the food was. Nestled inside the Mekong plaza market this place will meet all your expectations in delicious Vietnamese cuisine.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 2, "useful": 6, "cool": 5}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "o6OaLBaDitDYi0HgIl18Bg", "stars": 2, "date": "2010-12-20", "text": "2.5 stars really. I've been holding off on the review because I stunned myself by paying $6.50 for a macaroon. Really? I did that! Ugh. It was tasty but $6.50!?! \n\nAnd, that's not even counting my breakfast: $9 for a wedge of quiche and a salad (that I didn't want - I just wanted a piece of quiche). \n\nI don't mind paying for good food (anyone who knows me knows food is pretty much WHAT I spend my money on... ) but I'm having huge buyer's remorse... over my meal! Something's not right with that.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JNfR68wvXOCt0Toy9OBfDg", "review_id": "twjAkn8Z7OlAemQfZexVrQ", "stars": 5, "date": "2011-01-08", "text": "CASH ONLY! But we easily feed a family of 4 hungry people for less than $20 and it's not Taco Bell. So with that being said... the Grilled Pork #5 sandwich... oh hell ya... it's good ringing in at only $2.85. The regular Turkey / Ham on a crossaint is about $4.25 and it's the size of a small football... great value... you could probalby get by with the small croissant sandwich instead for only $1.95... yeah... it's crazy cheap. Hot wings are generic prebreaded with a kick of spiciness. The steamed bun is sweet dough..however, not my favorite... my husband and sister seem to love the egg and meat inside. The ice cream is all homemade...also another great deal at $.99 cents for a cone... check out the icecream...looks crazy good. Don't miss out on taking home some baked goods... the baguettes are crusty-soft and warm when you get them. The croissants are delicious and some of the better ones here in the valley. I did try and Avacodo boba...had to send it back...not sure what the heck it was...it was green... but didn't taste anything like Avacado... so I did head across the way to Boba tea house for my bobas. The Viet coffee, also great kick for you mentally if you need a boost, very strong=very good. Don't miss out on this place... it's a good go to place for a great lunch or snack.", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M-d7R2GVDqUi8iBaLyXcwg", "review_id": "UYn6Kod4ZluHcuMZRG55jA", "stars": 4, "date": "2013-01-02", "text": "Nice place surrounded by many fast food places. No grease here! Breads are wonderful, but customer service was just ok. Great pastries and part of the Belly loyalty program. Super dog friendly as well with the outdoor seating.", "type": "review", "business_id": "j5HLcBru7FEirYJPbKFVWA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4aL1FgMljGIuDNksiLVKDw", "review_id": "JGefSV5LTpgH2tC4g-jtVQ", "stars": 2, "date": "2012-04-14", "text": "I got the banana nutella cupcake and love the banana bread-like cupcake. However, the frosting is way too sweet and overpowers the banana flavor of the cupcake. As many reviewers have already mentioned, the cupcake is also over-priced at $3.75 each for the size and the lack of creativity. \nWith so many desert/snack places in Scottsdale, I am unlikely to come back here.", "type": "review", "business_id": "6dqDSEMDqTA-wNOdWtshUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Jw3ocYlfPw3T7g0OknI-lQ", "review_id": "LZIPa3wJjIZZUw6khjk-zg", "stars": 4, "date": "2012-04-20", "text": "Good water pressure. $2 = 6 min. Cons- \"water pressure gun\" rubber tips come OFF -can scratch car paint. Had to back out since a car blocked me forward-then a hose (which I put back) caught my car. Hispanc guy gets angry/curses. The ceiling 360 degress brush holder gets jammed. 1 is bent. Stalls get muddy. Vacuums not strong.", "type": "review", "business_id": "yhe0HLEd6g-WCxF5rKVF_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x46c5z1ldZHuYcLlrIf1nA", "review_id": "lS0sRdDgeY0v4TKjjXj-7Q", "stars": 3, "date": "2011-05-10", "text": "Stopped in here on a Sunday afternoon for a milkshake when my sister was visiting from out of town. We browsed the racks of vintage clothing and costume jewelry before sitting down at the bar. It was difficult to choose our milkshake flavor, given the dizzying array of syrups and ice cream combos, but after settling on chocolate and wild cherry, we were very pleased. Plus it was a cheerful looking thing, topped with whipped cream, colorful sprinkles, and a cherry.\nI was not as pleased with the service... it wasn't busy until after we sat down, but no one took our order or even gave us a menu or a \"hello\" until we'd been sitting for about 10 minutes. A party of 8 or so, including a bunch of indecisive kids, sat down AFTER us, and were served before my sister and I... and no acknowledgement of the wait. While we waited, I did enjoy looking at all the cool decor from the past, though I think the whole place could be a little bit cleaner.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gst9ZZo44SwKzg9F1IHpSQ", "review_id": "PO6P1STqxLYNePwM4kvTUg", "stars": 5, "date": "2011-07-16", "text": "Had a late night plumbing emergency last night. Called a friend who recommended Kevin's Classic Plumbing. Within an hour the plumber was at my home repairing my problem. At 10:00pm my water was back on with kids taking showers, toilets being flushed, and my wife was talking to me again. Sounds great right? Get's even better! The price they charged me for the after hours repair was the most reasonable ever. Last but not least he was a heck of a nice guy. Kevin's Classic Plumbing will be my plumbing company for both home and work from now on.\n\nOn another note... I had called one of those companys that advertise on TV all day long. They were not able to come out last night and when they did call me they indicated that it was probably not something they could fix and would most likely require a two man crew. Thanks Parker & Son's.", "type": "review", "business_id": "7fdAFixba3JDk0pCCiAx8w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CC1INHcQo7eM-SST44UnVA", "review_id": "5LlWXd1r7nnCrSb_RWlU4w", "stars": 3, "date": "2011-03-18", "text": "I always just get one thing from Vietnamese places and its their rice dish with grilled pork chop and egg cake. This place does it goooood. You get a reasonable amount for the price and the fish sauce is just right.", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xAVu2pZ6nIvkdHh8vGs84Q", "review_id": "9pHuaXzP6gi_TQX0gnHIqg", "stars": 2, "date": "2012-04-21", "text": "I've really tried to like the Gilbert House. Been there several times; unfortunately, I've always left underwhelmed. The coffee isn't very good. The dishes are unique, but lack taste. I ordered a spinach and goat cheese quiche last Sunday. The quiche was cool (expected it to be a bit warmer) and only had a hint of spinach. Not what I expected. Prices are ok, but there are so many good independent restaurants in the area, that there is just no good excuse for bad food", "type": "review", "business_id": "R1ySBCVS2eQf-s0Z4ifIug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "VrYtuGimhq7UqBBmKtkfVw", "stars": 4, "date": "2008-05-22", "text": "Five stars, five\n1st star Culinary excellence,\n2nd star Service perfection\n3rd star Atmosphere and history\n4th star flawless operation \n5th star dessert\n-1 star, management need not say more., \n\nOld School Style fine dinning. This restaurant dates way back to the early days of downtown Phoenix.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZKz2htCNEjDUPqiImJhHrA", "review_id": "W31rbleIX9NdRdkEBdEO_Q", "stars": 5, "date": "2012-08-18", "text": "The best fish tacos, period! And I hate chain restaurants!", "type": "review", "business_id": "R4zcw0jq-gMgDtPyCjwnew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9F3ZmyGKIA6ALNWgEq3Log", "review_id": "3mz-4BcEktKFjSTPy_Zn9Q", "stars": 5, "date": "2012-11-05", "text": "This is hands down the best burrito in the East Valley! Fav's is always consistent and their prices are excellent! My standard meal is a California Carne Asada burrito, it comes with the most tender carne asada I've ever had. Also, their green and red sauce is a step above the competition, and they have great mexican rice, it comes with peas and carrots! Guac is exceptional, and they also have really tasty breakfast burritos that are available all day. Five stars for being consistent, clean and for having pleasant and professional employees! One more thing is that they close at midnight except for Sunday when they close at 10. Bummer but still the best!", "type": "review", "business_id": "1zDCfNgtfyh-Uw8j3JxhHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0q87nf1yJFv0GML2J64Ttg", "review_id": "HubRamXEv3IS3pW7x5oteQ", "stars": 5, "date": "2011-05-09", "text": "After a second visit, the chicken was a little dry and lacked flavor. Quite a contrast to my first visit. Still enjoyed the meal, but wasn't as impressed with the chicken. I'll have to go back to see if it was a fluke.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 17, "useful": 17, "cool": 16}, "user_id": "w6Vv-kldGpmvSGqXvTbAdQ", "review_id": "Aq6CcDYwQrFtL5nBJ-wHiw", "stars": 4, "date": "2011-02-10", "text": "Go Go here for happy hour! From 4-7pm you can delight in their half priced apps and specialty cocktails. Their sushi rolls are meh, but their teriyaki ribs are falling off the bone, finger lickin' good! The cocktails seem to be concocted for little Asian girls (which is odd since there are no Asian girls in Scottsdale, especially now that my BFF and I are gone) - fruity with cutesy names like \"Hello Kitty,\" \"Harajuku Lover,\" \"Shiso Horny,\" and \"Kinki Kooler\" just to name a few. My favorite was the \"Turning Japanese\" which was like biting into a vodka infused pear.\n\nService at the bar was wonderful - Victoria is the one of the cutest bartenders in Old Town (guys, go pay her a visit). Drinks were flowing and the food came out quickly.\n\nIn addition to the happy hour and Victoria, make sure you check out their restrooms and private karaoke rooms, complete with \"entertainment\" poles. If you end up spending a long time on their Toto toilets, people will understand why. Seat warmer and a bidet? You'll want to take your business there on a daily basis.", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 5, "useful": 6, "cool": 5}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "xh5iJ4WMi3WNGFI2fpawOA", "stars": 4, "date": "2010-01-13", "text": "Same great Lolo's fried chicken and waffles without the risk of getting stabbed or shot... and it WAS worth the risk to visit their South Phoenix location on occasion. The food is that good, it might even be the ultimate in comfort food! Lucky for us they have a new Scottsdale location where the most dangerous situation you could encounter might be a hungover Scottsdale \"clubber\" (who could scratch you with their Ed Hardy bling).\n\nThe only suggestion I have for them is to drop the prices about 25%", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2qnz2y_Z1nDo2HqqfxJxSA", "review_id": "BK4FpIlwDx2mAhk9qsK3sQ", "stars": 2, "date": "2011-06-18", "text": "Bland and lackluster food that is not worth the price or the wait to get it. We had lunch at Nourish a few months ago and while we weren't overly impressed, as they do serve healthy food that is in line with our whole foods, plant-based eating habits, we decided to give them another shot and went for brunch a few weekends ago. I ordered the egg sandwich, which is described as an air-fried egg, avocado, and tomato on a gluten free bagel with a side of sweet potato hash. As I have never found gluten free bread products to be very mouth-watering, I asked to substitute multi-grain bread in place of the bagel, as the bread had previously been the best part of the lunch sandwich that I'd had. The server informed me that they were out of bread (how does a restaurant run out of bread when half of their menu items are sandwiches? very poor planning by management) and that the only other item available was a wheat bun, which I opted for. My husband ordered the veggie quiche, which is described as zucchini, asparagus, caramelized onion, parmesan, and a quinoa crust. \n\nAfter an incredibly long wait (the restaurant was less than 1/3 full), our food finally arrived. My egg sandwich was by far the most flavorless breakfast item I have ever consumed. The air-fried egg had sounded appealing as it would be healthy and not greasy, which was the case, however I didn't realize that this also meant there would be absolutely no seasoning on it or flavor to it at all. The sweet potato hash was downright disgusting and I only consumed a cube or two of the mushy, flavorless heap that was on my plate. As bad as my meal was, my husband's veggie quiche definitely won the award for worst breakfast item ever tasted. The \"quinoa crust\" which we were looking forward to as we love quinoa dishes, was actually undercooked quinoa mixed throughout the entire quiche with no visible crust present, which gave the whole thing a granular texture equivalent to fine gravel having been poured into the dish. The vegetables almost appeared to be ground up as there was just an overall green appearance to the egg portion with no discernible pieces of the veggies described on the menu actually present. The dish in general had a strange taste and the off-putting texture from the quinoa was more than I could handle even in just the one bite that I tasted. I honestly don't know how my husband even managed to choke down the portion of the quiche that he did.\n\nWe also each had two bloody marys while we were there and while each took an incredibly long time to get, the first one was flavorful and seemed to be made \"extra spicy\" as we requested, however, the second one was flavorless and tasted like watered down tomato juice. While Nourish has a nice patio and offers a view of the lush foliage present in the complex, these elements are not enough to bring us back after we left with our tastebuds reeling in horror over the flavors, or lack thereof, of our brunch.", "type": "review", "business_id": "ItMihRR-t810HgctGofF3g"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "t79B56n8IeVrMNmM4QU2Ow", "review_id": "hlA2F8tM4UpeIq7Zy9EQ9A", "stars": 5, "date": "2010-03-19", "text": "I would be beside myself if Grinders closed. It's about time I wrote a review, since I'm a regular. I can be found sitting on one of the giant chairs surfing on the wi-fi many mornings.\n\nI'm the one who brought the plants in. I used to water them a couple times a week but nowadays I'm lazy and they really need to be repotted. I should get on that ...\n\nThe music is always playing and everyone knows my regular drink ... they've continued to memorize it for me even as I started to slowly decrease the fat & calories of my regular order. Now it's an ice skim latte with sugar free vanilla. I used to get an Everything bagel with egg, cheese and potatoes most mornings. Now I get it on multigrain toast. Eh, it's the little things.\n\nThe coffee at Grinders is really really good. It's not bitter and sharp, it's smooth. They grind their beans outside many mornings per week. Sometimes it gets too warm inside during the winter so we prop the doors open, but if the grinder is going outside, it'll blow coffee bean fumes in the door.\n\nThere's some retired motorcycle cops who meet up every morning and sit around the big round table. They often park their motorcycles in front of the place together. They call themselves the Geezerados.\n\nThere's sometimes a few right-wingers having conversations mid-day. One time I listened to their meeting and heard them trying to come up with controversial topics to get people to come to church. They spent a long time trying to figure out who could get them proof that global warming isn't happening, so they could use that as their hook.\n\nA lot of moms come in with their kids. Seeing siblings piled up in one of the oversized chairs together is common. There are a few regulars who come in specifically to sit on the internet all day. I'm not there all day, but I'm there at all times of the day because I have a home office, and you never know when you suddenly need caffeine.\n\nEarly in the morning and after 3pm the place becomes flooded with Sunnyslope High School kids. They range from ROTC kids wearing pickle suits to trendy girls in neon to the alternative crowd. They often lay around the couch splayed across each other or gazing into each others' eyes. \n\nOrdinarily I'm a real talker and I can't usually keep my mouth shut, but Grinders is the one place that I go where I barely make a peep. I just eavesdrop on everyone's conversations and sometimes run into friends I know. I usually go before my brain is fully awake in the morning, that's part of it. For the record, a couple months ago one of the girls there said I was practically invisible and she hardly knew I was there, because I was so quiet.\n\nThere's nothing pretentious about Grinders at all, and it's also down to earth without being ghetto. It has character. Some months the art is better than other months. Hannah has been there for years (they call her Big Hannah now, only because there's another girl named Hannah who is tiny and they call her Little Hannah) and Hannah rocks and makes the best breakfast ever. \n\nI can ride my bike in the morning and be wearing my pajamas and not have anyone really bat an eye. That's the beauty of Grinders. I've seen other people come in wearing their pajamas, too. It's a little bit like the cafeteria in a college dorm, except the people are of all ages and we live down the street from each other instead of down the hall from each other.\n\nGrinders has a location inside the John C. Lincoln hospital across the street, too. It's common to see the hospital workers walk in wearing their scrubs. I think they're also opening one at Devry, or they just did. I was frustrated to hear that they tried to open a location at the Art Institute but they were one week too late, Stupid Starbucks had just gotten there. LAME!", "type": "review", "business_id": "4eFIVmbeCvJGCrhzmd-VYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "J9u2d1P-nr937LGlZ3wmHQ", "review_id": "OuY0JQ1vSp5-SCVipZgl7A", "stars": 4, "date": "2010-10-01", "text": "Finally, a pizza place that satisfies the individual pizza taste buds of my family! We ordered the Rocky's Philly Steak Pizza along with a cheese pizza and both were delicious! Everyone left happy.", "type": "review", "business_id": "Jje3kP5CNasYDSpH0NPRGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2ARM6NFVciTzV21r7p8jiw", "review_id": "J5zQQjvwo-aodvxtw-HlzQ", "stars": 2, "date": "2009-08-07", "text": "Dropped by for a manicure, and as soon as I sat down, my manicurist started talking in rapid Vietnamese. I couldn't see her headset so I thought she was speaking to me, but obviously she wasn't. In fact, she never looked at me during the lightning fast manicure, except in confusion when I said I didn't want her to cut my cuticles -- just push them back. She really didn't understand that, and asked me in broken English why I was getting a manicure but not getting my cuticles cut. She didn't have an attitude about it, but was just really confused. I think after that exchange, she told whoever was on her phone about it.\n\nI also thought it was strange that she asked me to wash my hands after giving me a lotioned hand massage -- sort of defeats the purpose of applying lotion to my hands in the first place? \n\nThe whole experience was perfunctory, but didn't leave me wanting to return for a manicure. Not asking for a great nail technician, but it would have been nice if she acknowledged my existence other than doing my nails, and most importantly if she asked whether I wanted them cut round or square because I wanted them round! I would have interrupted her phone conversation to let her know my preference, but she was so fast to dunk my hands back into the soaking dish that I didn't see what they looked like!", "type": "review", "business_id": "JDFmfsK_i20VFXbGE1PRVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XFLeKAsj3UKv5VPoIQjdIw", "review_id": "748rZWrS3ZR4xhhvfGJUcg", "stars": 5, "date": "2012-07-03", "text": "In my opinion, one of the best steakhouses in town. My husband and I go here for all our special occasions and have never had one bad meal. The service is the best just like their steaks. I recommend the Caesar salad, fillet, creamed spinach, cream corn, garlic and lobster mashed potatoes. We will continue our tradition and keep coming back here.", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "dEMm29V7ktNHndxwXzhPfA", "review_id": "RC6FR0Ov1PWR64a_Hqhzfw", "stars": 5, "date": "2011-02-25", "text": "We have been here many times in the last 10+ years. The Stetson Salad is the best salad I have ever had. The combination of sweet, crunchy, savory and acidic is perfect to me. Lately, I have also tried the Scallops on Beet risotto. The scallops are great, but the risotto just doesn't work, though I love beets and I love risotto. I have, of course, had the mushroom stir fry, which is very good but very hearty and heavy. Soups have been excellent. The current best desert is that peanut butter brownie. But beware...it is really rich and sweet. I also enjoy the wine flights here. Most recently, I took my 8 and 11 year olds at lunch. Though they were the only kids there, they thoroughly enjoyed the Kobe beef burgers. This is still my favorite place in Old Town.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f4_0MTexPnmvuWwjTsR_mQ", "review_id": "cnXCw7hxnz1tytLG3y_kTg", "stars": 4, "date": "2012-06-15", "text": "First let me start by saying they're beer selection= heaven. The beer list, is not only in order of type (which makes it easy to find a beer you know you like and look Below it to find something similar to try out) but also alphabetical and progressive. \n\nThe food...DECENT. definitely not the selling point for this place, but for a place that's selling point IS a yard of beer...decent. \n\nService: very attentive, waters & beers always full, bartenders are great at making recommendations for beer (when your being annoyingly indecisive about which fashion you plan to get inebriated).\n\nBottom line, if your not freshly 21 and stoked about drinking a beer out of a yardstick then this place may notice be AS amazing to you, but it certainly does not disappoint when your in the mood for some grub and beer! Food can be pricey, menu is huge and so are the entrees so there's no harm in sharing an entree with a friend...more room for beer!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oXBahXJCXUEATm5IVexw8A", "review_id": "T4L2cqUhhDv7BJSs7wqg5Q", "stars": 5, "date": "2012-01-04", "text": "This place literally just opened. I didn't really know what to expect, but when I walked in the doors I was immediately greeted by Nick, and he was very nice and down to earth. This is a shop for people who like to garden/grow plants hydroponically or in the ground. They have all kinds of gardening supplies and Nick said they will be receiving their seed shipment from Seeds of Change any day now. I will definitely be back, as my green thumb (or lack thereof) has been sparked:) P.S. I was informed that the in the next issue of the New Times, Grotown will have an add to clip out and bring in to save 20% !!Yay plants:)", "type": "review", "business_id": "D5xdl1REXFeix3y1u-nXLw"} +{"votes": {"funny": 10, "useful": 20, "cool": 17}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "sA_wkvAZpt4Hm6AXGecKNA", "stars": 5, "date": "2010-09-26", "text": "FnB is how every restaurant should be. Unfortunately this will not happen because Pavle Milic, who runs the place, cannot be at every restaurant. \n\nThis is a small, friendly restaurant in my hood, that just happens to have some of the best food you will find. I always feel welcomed & taken care of by the staff. I've come here with friends, but I've also come alone & felt totally welcome. I like sitting up at the counter, and I've actually met some really great people to chat with there. Pavle & his wife run the place, & they are the kind of people who always make you feel like they are glad you are there.\n\nChef Charlene does things with food that make it amazing, & these are things that I myself could never accomplish. My main cooking skills involve a microwave or a menu. I just wish I had the funds to eat here more often.\n\nIn conclusion, fabulous food combined with wonderful service make me feel lucky to have FnB in my neighborhood. :)", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y9YW-BpDACEGytpX3NaeRw", "review_id": "MtFe-FuiOmo0vlo16_-tRg", "stars": 2, "date": "2008-08-12", "text": "I love Coldstone like no other but this place has really bad mixers. I came in on a late afternoon weekday, no other customers to be served. Placed my order and figured she would give it a good solid mix. All she did was poke my brownie into my ice cream a few times, sprinkle some nuts, and called it quits. It was sad that I had to eat all of my brownie at the beginning because it ended up all on top!", "type": "review", "business_id": "IykF45RvqD14rudLTDoigA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "61CTpBsZmaYbBO0qOZzROA", "review_id": "sygb6tDxewmncTsLdHFzkA", "stars": 4, "date": "2011-10-09", "text": "My first ever trip to Bass was overwhelming. Like walking into a Sportsman's Warehouse that had mated with Dick's Sporting Goods, and then gone on steroids. Bass Pro Shops is an outdoor person's dream. \n\nAnd it's good for the whole family, oddly enough!\n\nOnce you get inside this massive place, you have an upstairs and downstairs. There is a kid's area, a restaurant with fresh fish, a huge women's section and mens, and areas for fishing and boats and hunting and camping and survival and gear for any occasion. You can look at the giant fish tank, climb up a faux rock side for $3, and just be purely entertained for ages. They have snack foods and jerky and sweets. BBQ grills. Do they have guns? I don't know, probably! They have GPS equipment and water bottles and on and on and on. \n\nIt was exhausting in a great way. My camping/outdoors needs tend to be more mimimalist oriented so I prefer an REI. But I like it here a lot. I picked up some socks that have a lifetime guarantee, and a nice woolen shirt for almost nothing, and a couple of gifts for the hunter/outdoors people in my life back in Tucson.\n\nBass: it is an experience.", "type": "review", "business_id": "UU-kkvyX6pyrl_4fK6Qpvg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "omuO9FVYAVRTybkSc4a4fw", "review_id": "0GWbPY8bPMehWN73xvuOdg", "stars": 4, "date": "2011-08-26", "text": "Big fan of Hula's been a bunch of times, but finally was compelled to write a review. Just came back from a week in Maui, so I was still in \"Hawaii-Mode\" (which is soooo hard to get out of lol), so I insisted we go to Hula's to get my Hawaii fix. Mainly....that just means I was dying for a good Mai Tai.\n\nIf you go here, you MUST order a Mai Tai. While most of their drinks are pretty good and tropical tasting, the Mai Tai is the best in town (now that Trader Vic's is donzo). I'm a Mai tai snob, and cringe when most mai tai's here on the mainland are made way way way too sweet and fruity. The Mai Tai at Hula's could rival some of the best in Hawaii in my opinion. Mostly rum (white and dark) and just the right amount of sweet mixed with the right amount of tart/sour. They go down great and they hit you with quite the kick before ya know it, so be careful ;-)!\n\nAs far as the food...its good, but its not Roy's so don't except anything amazing. I usually get fish here, just to go with the whole Hawaiian thing. Most of the times I've had Mahi, it can be dry sometimes, but always tastes good. Ive had both the wasabi crusted and the macadamia nut crusted, both are decent. The Luau Pork plate is darn good, but my recommendation is get the Luau Pork sandwich instead. It goes so much better on bread, than just by itself. All the appetizers are great to munch on while you're enjoying your Mai Tai...all thats missing is Hawaiian music, and the sun setting over the ocean :)", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "mqueHx5CFC9IsZxLQb3H9g", "review_id": "nAJ0HvYhoUjo5wKMewK7iA", "stars": 5, "date": "2010-08-27", "text": "I LOVE Laser for Less (Chandler)! If you are going anywhere else for Laser hair removal you need to stop now and call to make an appointment with Laser for Less, Chandler. I wasted a lot of $$$ at another Laser removal place before I found Laser for Less and now I am kicking myself for not going to them first. If you pay to wax any part of your body you should be lasering that hair off. It works better, lasts longer, and in the long run is cheaper. \n\nPros - \n1. Free touch ups 14-18 days after your first appointment if they missed 1 hair they will touch up for free. Never had a problem with them discouraging me, in fact it was the opposite they give me reminder cards so I know when my touch ups are due. They encourage you to come in.\n2. They can also charge you by the laser shot instead of a whole area. So if you only have a few random hairs they will just charge 10 cent per shot on the legs or 70 cents on the face or smaller areas. You can't beat that deal.\n3. I am pretty sure they beat or match all prices in town.\n4. Once they laser the hair, all your hair will fall out and wont grow back for like 2 months, its better than waxing. Not all laser removal places use the type of laser that does this place does. That is why I recommend them, it works a lot better!\n5. They actually care about getting rid of unwanted hair and will go over all their policies with you. Kristen is who I go to and she is great. I have been to almost all their girls and they are good. \n6. In fact when it was my birthday month I didn't know I got some discount and they back credited me for it, I feel like they are always trying to get me the best deal. \n7. They always have deals. Just last month they had their underarm extravaganza where you can get your underarms done for $30!!! That is so cheap. They let you buy up to 3 sessions. I referred a friend and she loved it so much because she didn't have to shave her underarms the WHOLE summer. \n8. I love Laser for Less, CHANDLER!!!\n\nCons - never having to shave again, darn.", "type": "review", "business_id": "J-c25QK8xBqv1P-huUkoTQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "oY2weReylq-SmJUp3LBAvQ", "stars": 3, "date": "2012-03-25", "text": "= = = = = = CLOSED = = = = = =\n\nAfter having enjoyed this nice 3-Star place which we regulars called \"Eastern Buffet & Tacky Swapmeet\" for over two years, I was sad to come up here today & find them gone. :-(\n\nFor a similar place nearby I went to New China Buffet today, & enjoyed it. They're at 2939 N 24th St.", "type": "review", "business_id": "GrUh2Jo6sL3wllrtZY4zmg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "4lkTIhTuMhLprQprGlTRlA", "review_id": "zcOqzbvDrPY-kJvMMoaGDg", "stars": 4, "date": "2012-03-12", "text": "We had a very difficult time finding trail 201 which was noted as one of the more strenuous hikes. We took trail 100 and came across some extreme mountain bikers, several other hikers and a couple who gave us confusing directions on how to reach one of the highest sections of the mountain. We got lost and ended trail busting which is highly discouraged but give us rules and we will break em. During our run back down the trail I took a pretty hard fall face planting into the dirt, stabbing my right hand into a rock and banging up my knee. No broken bones or teeth, thankfully. We had just passed a couple of hikers when I took the fall so they saw everything. I laid there for about 10 seconds, jumped back up, noticed the blood, my torn tee and just continued on with the hike. We came across a park ranger who was standing outside his truck and asked if he had any medical supplies. Unfortunately, his first aid kit was about 20 years old and didn't contain anything that would help any of my wounds. We found a CVS on our way home and picked up some medical supplies and my wounds were washed and bandaged in the parking lot. \n\nProbably my most memorable hike thus far.", "type": "review", "business_id": "1nhug_rhFFtF9D61X_EVBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7MN4_lEG5yVFTaEHSfJMVg", "review_id": "-mx37da3WjhatYeOMqz9DA", "stars": 5, "date": "2012-04-21", "text": "Excellent service and food. Best tex-mex in the valley.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZcjSjT_7mQOx2LOhYq01bw", "review_id": "jhuJCBXos-g3xSWVky-NkQ", "stars": 1, "date": "2011-09-29", "text": "The organization is grand with a ton of selection but the employees could care less about costumer service. \n\nIt is very amazing with the amount of unemployed people in the city they have to hire the most incompetent individuals.... \n\nI'm not going to be ignorant and say they are ALL bad, but a few in the bunch seem to make it difficult to be a repeat costumer. \n\nTry talking to a manager at this location and you will be routed around the store till you finally get some one that states \"the manager is off till next week.\" \n\ni will stay a website purchaser until they change their policy at this location and hire individuals with a better standard", "type": "review", "business_id": "iWlaj4R-2BTsWR7PwL90BQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lcu7u9kSWMeSNq6j135BfQ", "review_id": "uddCuR6lHzMya-U4t6OzXw", "stars": 5, "date": "2012-12-26", "text": "This store has the most pleasant employees of any Forever 21 I have ever been to. The girls are always smiling and they take the time to esquire if you need help. The other day, I went in and an employee spent over 10 minutes helping me locate a particular skirt my sister wanted for Christmas.", "type": "review", "business_id": "7lbvsGKzhjuX3oJtaXJvOg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wEwU88bt18BUf7DhHDRbHw", "review_id": "-ORxBhgPdPF7wAUZMkwJSA", "stars": 5, "date": "2011-08-12", "text": "I love cupcakes. Its true. I really do. I have waited in an hour long line outside of Magnolia Bakery in NYC to experience the bakery that started the cupcake craze. That said, if there is a good cupcake to be had, I'm on my way to experience it. I must note- that I am not a fan of Sprinkles; as I think they are overly dry and waayy too hyped.\n\nWe just ordered two dozen different flavors from Mind Over Batter to celebrate our August birthdays (its a tradition we do once a month from baker's around town). Because of my love for all thinks coffee- I got the Carmel Mocchiato. Let me just say- i wished I took a picture. But I couldn't help but to dive in. Mocha Buttercream frosting-piled high, crushed coffee toffee and carmel drizzle. \n\nI also heard rave reviews from the office about the Birthday Cake and the Chocolate Red Velvet. The one I most want to try is the Lemon Drop (because I love lemon).\n\nI'll be back in very soon to check out more flavors and cake pops.", "type": "review", "business_id": "zofs5Ig8kgvtFyp3ySoSBA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w225lKHnX3jorkSXWgss0Q", "review_id": "eSoWi45YPFQYUz8fN6VdpA", "stars": 1, "date": "2010-09-12", "text": "This is my very first review and I can't say I feel bad for what I am about to write. I took everyones review hoping for a really good hotdog and onion rings like the reviews I read (best hot dog ever, amazing hotdog., etc) oh man were we disappointed. I'd have to say I'd go to cocstco for a hotdog for $1.50 with a drink.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "kBM2vv1yEDqByi5FvucHYw", "review_id": "hqpTT_eLPiQlb7-77zUo3w", "stars": 1, "date": "2009-05-05", "text": "I went today to meet my daughter for lunch. We are both big sushi enthusiasts. The interior and atmosphere was beautiful. Well appointed.\nThe service was excellent. We ordered edamame, was good...nothing to rave about. Not much you can do to mess that up. Drinks were well poured but exspensive for what you got. Ordered five different sushi rolls.\nAll five were bland, not much flavor and stale. The fish was not fresh.\nPaid $12 for a soft shell crap roll and it tasted days old. Will not go back.\nDid here they have good pizza and a happy hour at three. My daughter says to give it another try. We'll see... I'll let you know if I do.", "type": "review", "business_id": "oIkwj10HmUiognO68j7jOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V-gZC7GXA82mYfvWprtYJg", "review_id": "Tx4liSAgZDz9pNTRwXLAEg", "stars": 5, "date": "2011-07-01", "text": "I love this place! Everything about it! The great food, the grocery section, the cramped seating (it gives character). It all goes together perfectly. Haven't found one bad thing yet:)", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "EMYmuTlyeNBy5QB9PN1HWw", "stars": 2, "date": "2010-12-15", "text": "It depends on what you're looking for I guess. I was putting together a new household and needed housewares and the various crapstuffs to make my house seem more like a home. Also I would have liked to have found some toys and furniture for the boy.\n\nIt's pretty well picked over, and for the most part priced . . um . . . optimistically. \n\nThe Goodwills vary greatly from location to location. The store on Chandler Boulevard in Ahwatukee foothills gets some really nice cast-offs. I have a feeling this one on 16th St. is in an area where there's too much competition from other thrifts for good donations, and where shopping thrift stores is so well-accepted that they can still drive their prices up on whatever stuff they get. \n\nI think there's a condition in the DSM-IV called \"Thrift Store Delusion Complex\" wherein people willingly pay prices nearly equal to new and think they're getting a deal. I'm all for helping the disadvantaged, but the idea of a thrift store is . . . ahem . . . thrift.", "type": "review", "business_id": "fZWVI2Bjk6wJoRUB0s4Pzg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cZWYisGrQIuN7Guez4KGjQ", "review_id": "NVXB1Hzil7qSe6MpdD8oYg", "stars": 1, "date": "2012-08-19", "text": "35 minutes... No food. You be the judge.", "type": "review", "business_id": "umdxfhSlk67yGEi8-S-bEg"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "jt8jtEY1K6TD1FBzYa7HGw", "review_id": "ITCXnv7hHhq5VuUKDSdpLA", "stars": 3, "date": "2010-08-06", "text": "If you don't want to read the whole review, I'll sum it up in one sentence -- Via Delosantos only uses yellow cheese.\n\nI went here about 4 years ago for a celebratory occasion, and was afraid to eat the food based on the smell of old grease and the look of the entrees on tables around. We ate on the patio, which is directly on Central Avenue, and after the horrid smell of grease & exhaust pipes, I couldn't wait to flee the scene.\n\nLast year, I was unknowingly led back to this same place. Years had passed, and I had completely forgotten about my vow to never return. This time, I was pleased.\n\nIt probably helps that upon entering my expectations were very low. I immediately was attracted to the kitschy Mexican artwork, their vast tequila collection on display, and of course, the christmas lights.\n\nThe salsa seemed fresh and was just the right amount of spice. They keep the chips & salsa flowing so be careful not to fill up. The margaritas are really sweet, but they're cheap and will get the job done.\n\nThis is the kind of place where you stick to basics. Don't get fancy or try and order something healthy. Get a chimichanga, burrito, shrimp enchiladas, or a chile relleno, and if it's appropriate, get that sucker enchilada style. Be sure to have your Tums handy when done if you think you can eat a whole plate by yourself.\n\nThe portions are huge and totally splitable. Oh, last word of advice, don't get the guacamole. It's super gringo, and has a ton of sour cream in it.\n\nI'm giving this place 3 stars b/c it's a good value if you're sharing, they ambiance is very comfortable & amusing, and the service is very accommodating.", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eapbAr6Zi5G8rK62gaWT9Q", "review_id": "350wZFK1W9Hz1e9b-On3Hg", "stars": 3, "date": "2012-08-29", "text": "Sooo...if they ask you if you want to sit in the 'lounge'...just say no! Trust me... Artichoke brushetta is good but garlicky which I like", "type": "review", "business_id": "9dopZKjYiKwPiw7kEQsEag"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "GnZWh25MyJD1d5FMKl3QmA", "review_id": "2jEbztXAifOWzMMKHv58YQ", "stars": 4, "date": "2009-09-23", "text": "I can't dance..yes I can! Well tonight the hubby and I took our first dance lesson and what a hoot! Had a blast. The instructor's approach was clear and easy to follow. She did a great job at blending focus on the instruction with keeping it fun and upbeat. The facility is pleasant, immaculate and huge - and available to students for practice at any time, not just during their lessons.\nAs mentioned in a previous review, they have a great deal for first time students. The best thing for couples is that the price per lesson is the same whether for a single or a couple. Because I've only done one lesson, and my first dance lesson every (well since high school, but the dinosaurs because extinct since then), I'm looking forward to more lessons and the opportunity to add a star.", "type": "review", "business_id": "Dp9905k5BH4MsWHK_K01tg"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "fpWiDfJVWqDNWbfft22anQ", "review_id": "EnbCMn59AlRnxoIQjIAz9w", "stars": 4, "date": "2008-02-06", "text": "I know its gonna sound a bit foolish when I divulge that I was actually a bit scared to enter the Roadrunner Lounge, but the truth is that I was. Due to its lack of windows and barebones facade, I concluded that this bar had the possibility of being the sort of place where, when I opened the door, I might bare witness to a mob boss or two trying to decide what they should do with the man they just shot... but that wasn't the case.\n\nWhat I discovered was a long corridor flanked by mirrored walls and strings of multicolored lights, as well as ample seating and classic video games to boot. The games included PacMan and Golden Tee, accompanied by a dartboard and a pool table - enough to keep the gamer in any of us busy for at least a few hours of drink-sippin.\n\nThe drinks were cheap and strong, and the tunes were decent - however the digital jukebox put a frown on my face; I hoped for a Wurlitzer. Our barkeep was friendly and efficient, and our drinks were strong and low-priced. I think tap beer's only two bucks, and mixers aren't too much more.\n\nIn conclusion, the next time you're feeling a bit nostalgic, and you're looking for a watering hole off the beaten path, kick a few back at the Roadrunner. Bottom's up!", "type": "review", "business_id": "sxQiL_xBP0AuTWVWEQ9Lzg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gDl4dMYPpuuIaNAW_Bh3qQ", "review_id": "ALGhOlSh__RuRj-f7EHZyw", "stars": 4, "date": "2012-03-11", "text": "Horseback riding for an hour and a half, my @$$ hates me right now...but it was so much fun. \n\nThe terrain varies from dusty paths to shallow streams and rocky roads. I'd consider myself a beginner as far as horse riding goes. I don't count horse camp 20 years ago to count towards \"experience\". But riding a horse is kinda like riding a bike. Once you learn you don't forget how to do it, but every horse is different.\n\nWe had a successful ride, seeing wild horses, a roadrunner (yes, they do exist but look nothing like the cartoon one), bald eagles and their nest, roaming cattle and waded on horseback through shallow rivers and streams in the breathtaking desert. I wanna move to Arizona!", "type": "review", "business_id": "TKJ2qE4NQfTBvekYs7JkGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9NyCrQI8gvY73gz7hSNY8g", "review_id": "JMENONnRPKsgWj3lRHnh3w", "stars": 5, "date": "2011-04-29", "text": "Best Chinese food in the Valley. As others have said, salad dressing is addictive as IS available to take home in containers. Shrimp dishes are outstanding with large, plump high quality pieces of shrimp. I have never had even an average dish here. Go and enjoy!", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "2CdbmUXg7kkmbJ1XSDrY-A", "review_id": "dYw7WQkpVeK4e_A4Yxv0iQ", "stars": 5, "date": "2011-09-05", "text": "Here's the deal. I said I was done with OT, but a friend told me the management had changed and it was worth another shot. \n\nMy friend was right.\n\nEverything I had a problem with before was remedied. I went in unannounced, didn't tell anyone about a previous bad experience, and I was given some of the best service I've received in town. When we went in, we were sat quickly and tended to very well for our entire visit.\n\nNo texting employees, no indifferent waitstaff. The chef was in the food window expediting food, making sure it went out promptly and correctly. Not only was our server attentive, but there was a team service atmosphere and other servers came by our table when we had empty drinks, debris on the table, etc. \n\nThe decor has been refreshed, and although I didn't dislike the decor originally, it is definitely an upgrade as well. Now its much cleaner, but still maintains the character that was part of its charm before. \n\nProps to the new management. Well done. I'll be back.\n\nPS - forgot to order side syrup. Curious to see if they still charge $2.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "1uTS7hrpgphH7ZDK8EThzw", "review_id": "mGVU-oYnheibMlBjYOyhvA", "stars": 4, "date": "2007-02-03", "text": "Loved the atmosphere most of all. This is a converted bungalow house that should set an example for downtown revival in the future. Very respectable selection of beer and wine and a limited menu, but with creative selections.\n\n* The house beer, made by Four Peaks, tasted like something made by Four Peaks, which, if you've ever had a beer crafted by Four Peaks, is the sincerest of compliments.\n\n* The \"G Red\" blended red wine didn't suck. \n\n* The Ham and Eggs: Deviled eggs were quite tasty. The ham was medium-thickly sliced and put on a stick. Nicely warmed. How could you possibly f up ham?\n\n* Grilled cheese and tomato soup: Both quite delicious.\n\n* Cheese plate: Three cheeses with toasted almonds, crackers, dried apricot and apple half. I've had better cheese. Not the greatest selections. Could stand to include a nice blue.\n\nAn overall pleasant experience, but I agree with Omer K. that the music was distractingly loud.\n\nFortunately, our service was acceptable. No complaints about it. Matt even passed through checking on customers a couple times and chatted with us briefly.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "hTKFGpi3ltCV4B-XDFRT-A", "review_id": "0lAz-mLMpE9wb-SLK4f0sw", "stars": 1, "date": "2011-07-12", "text": "I am not a fan of this place. I like to try to stay positive though so here is my attempt a the proverbial \"positive sandwich\"\n\nTop Bun: The location is fantastic. I really like where it is, its a cute little place that is very easy to find.\n\nThe Meat of the Matter: The food here is odd. I am very open to trying new things and experiencing different cultures. As I have mentioned in other reviews, I love all types of food from all over the world. I didn't care for this place. I ordered an appetizer that was wrapped in a banana leaf and i honestly thought I was eating an ashtray. It wasn't good. The pad thai that I sampled was very lifeless. I had a friend get a big bowl of soup that looked good but i didn't try it. \n\nLettuce, onions pickles, tomato: The service was not good. I sat at the bar the first time I went here and we got ignored for the most part. The bartender (who i believe doesn't work there anymore, luckily) sniffed at me when I asked for clarification on something. There are also jars of really weird floating things at the bar (probably pickled/preserved veggies/meat/fruits etc.) it was unappetizing to be around....I don't have a weak stomach at all, it was just odd. The second time I went in, the service was equally as bad. there was a table of 8 of us for lunch and the place was mostly dead and I had to go up and ask them to take our order after we sat waiting for 30 minutes. Subsequently, the menu is small and the prices are high with not much room for substitutions or changes\n\nBottom bun: I like the owner, he is really nice and friendly. The cooks were also friendly. I like to believe that my taste buds merely didn't care for this place. I know a lot of people that have very positive things to say about this place. I will not recommend it as a personal favorite and I will quite frankly probably avoid it unless it is specifically requested by a client. I am completely fine with the concept that not everyone has to like the same things. I personally have not had a good experience with this place, but I respect the fact that a majority of the reviewers for it have.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Phj1jHdpcPPBE1hNg9-Tqw", "review_id": "0vCShkH7ldjJ9GXA4n7KHw", "stars": 3, "date": "2012-10-06", "text": "A bit disappointed so writing after only one exploratory visit and a revisit for the one dish that deserved an encore.\n\nThe Ossobucco was the major disappointment, A beautiful Presentation that lacked flavor and was past overcooked. One of my favorite dishes when prepared correctly, but they just missed - badly!\n\nOn the plus side the Gnocchi were little pillows of wonderfulness! Reminded me on our neighborhood \"little Italian lady\" who made it for me as a child over 60 years ago and was, until now, the very best I have ever had. This version was very close and was served with a wonderful four cheese white sauce (calorie free for certain!). The Caesar Salad was a decent rendition but nothing I have eaten here approached the Gnocchi, unfortunately.\n\nWorth the trip for the Gnocchi alone!", "type": "review", "business_id": "fmWyI5ec05F8PJpx3eNpLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3XyuBpNbvrHukaEJyWBAsw", "review_id": "RWQ44U4aLBnmxy8l_zrFEQ", "stars": 1, "date": "2009-03-18", "text": "If it wasn't for the bad food I would go here more than once or twice a year. The meat was dry and tough in my first entree and not edible in my second. Now when my wife drags me here to watch a movie, I order a salad only. Because they do catering, I have a suspicion that they serve up left over food from catered events to their restaurant customers. \n\nThe service is OK. They have a couple of generic draft beers. Everything is overpriced. Caveat Emptor if you order an entree.", "type": "review", "business_id": "-fsCfTYEnJ4s6yStgBnQig"} +{"votes": {"funny": 4, "useful": 2, "cool": 3}, "user_id": "2KNPtV5E44vAiEr5BvMkUA", "review_id": "sFxTS1_APzl9GCnn0E1LiA", "stars": 2, "date": "2011-07-20", "text": "Never. Again. *hork* \n\nI have been to this location a couple of times. My friends LOVE this place, and I really wanted to at least like it. But here I sit typing out my review and fighting the urge to double over the trash can at my desk. I can't remember the last time I felt so sick! \n\nA few things about last night's dinner stand out...as negative. But I'll start with the positive, which bumped the review up from 1 star to 2. \n\nPOSITIVE: \n\nOur waitress was very friendly and chipper. \n\nNEGATIVE: \n\nBut alas, it was not enough. We ordered edamame, 4 rolls and a couple of sake bombers...um...but the \"shot glass\" was too big to fit in the glass...so that no worky. \n\nThe waitress asked if we wanted everything to come at once or if she should bring them out as they were prepared...we chose the latter... \n\n1) we never got our edamame, \n\n2) it took 30 minutes before the first roll came out (with no wasabi or ginger??), the next 2 rolls took an additional 30 minutes, and the 4th roll was about 5-10 minutes after that... \n\n3) the spicy yellowtail (roll #3) had obviously turned, it smelled like bad fish, which I unfortunately didn't realize until it had already made it's way into my mouth...I felt instantly sick and haven't been right since then, which means I didn't even get to enjoy a taste of the 4th roll because I didn't trust it anymore. \n\nPOSITIVE: \n\nShe took the yellowtail off our bill...which seems like it would be a no-brainer, but you never know these days. \n\nNEGATIVE: \n\nNo apology for serving us bad fish, and no acknowledgment from the mgr on duty, which should be standard operating procedure at a restaurant. \n\nAlso, the acoustics are not conducive to having any sort of conversation. The music was at a decent level, but for some reason, the place is just REALLY loud. \n\nAnd finally, and this is just a matter of personal preference, I'm not a fan of the seating arrangement. It's set up in a way so that you are rubbing elbows with other parties and unable to avoid being all up in their kool-aid... \n\nPOSITIVE: \n\nFor the moment, I'm still alive (which feels like a negative right now, but I'm hoping that this current wave of nausea will be the last).", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "EabJsW5sDkfUx0WIhqlJeg", "review_id": "cHiH_DWMj_nrXiUR31kexA", "stars": 3, "date": "2012-08-22", "text": "Like many of my fellow Yelpers, I too take issue with the ladies at the MAC counter, but not necessarily Nordstrom's as the \"store.\" After using my pressed powder compact to the point of \"crumbs,\" I prepared for battle and a trip to the mall. But, before leaving home, I checked my email for sales and specials. What I discovered is the best thing ever! Yes, this is drum roll worthy - so start tapping! Nordstrom's offers FREE shipping & FREE returns! Every item on the website regardless of price can be shipped to your door for (in case you didn't get it the first time) FREE! Needless to say I put down the sword, took off my armor, and ordered my compact online. I am now \"crumb-free!\"", "type": "review", "business_id": "e1TRaM2GZq8qBFogZaNklw"} +{"votes": {"funny": 3, "useful": 4, "cool": 2}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "anNiMqPrpbsmxGaKpX3rRA", "stars": 2, "date": "2012-07-28", "text": "Hella, hella pretentious and offering food not at a level to back that up, imo~ No complaints, but nothing worth coming back for.\n\nReally bland tacos, bland beans with tacos, decent portions, nice martinis/cocktails. Lemon tart was lemony. Mushroom pizza was mushroomy. \n\nPretty stock Safe White Yuppie Food menu aimed at hitting every upper-class food trend on the map right now. Nothing gets people going like making them feel green AND worldly!\n\nGood wait staff, hostess was not on the ball so much, it was a Thursday night near closing time and there were toddlers crawling on top of some tables on the patio and other such perils of family dining. \n\nNot a place that I will go on my own or drag my husband to. I understand the appeal for some people, bless their hearts, but this place is just too boring to waste calories on.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "yGs16xQiN3dLo03OQyto8A", "review_id": "85TTjXjzjOej-M5EOLLbEg", "stars": 4, "date": "2009-07-31", "text": "So I started this review over a month ago, and I still can't get the Duck Breast Tacos out of my mind.\n\nI don't remember much else at this point, except I got the Lazy Enchiladas and they were great too. But M got the aforementioned tacos, and their tender smoky goodness haunts me.\n\nI need to go back as soon as M gets home.", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "ytr46wNbedr8-iqSZngl8g", "review_id": "l-EBLrFAVyESzYqbo5LKBg", "stars": 2, "date": "2008-08-28", "text": "We went here for the fabulous UYE. As the restaurant is often empty, Julia though it would be good to give them some business...but in the end it was our group that ended up being given the business. The words highway robbery come to mind, but I guess we weren't really on the highway. The prices listed on the menu really didn't seem that out of line, a bit on the pricey side but nothing alarming. Our waitress slyly sold us a kazillion dollars worth of appetizers that were not on the menu. We got 4 plates which consisted of 4 individual sauces with some stuff in them...one had shrimp, one had chicken, one had pork, and one had chihuahua. Oh wait, I think that was the cheese on top. Anyway, the plate with 4 tablespoons of sauce was not worth the $25...oh wait, we got 4 of them. The waitress also managed to slip two orders of guacamole in on us for $11 a piece. As far as the entrees are concerned, the portions were small and the food was kind of meh. The mole was way too sweet for my taste. The biggest bummer of all was NO BOOZE! The $120 worth of appetizers would have gone over much better if they were washed down with some frosty margaritas. A couple of pitchers and they could have slipped us some $100 flan.\n\nRegardless of the price and the mediocre food, it was well worth going for the amazing company of the awesome Phoenix Yelpers. I don't think I would go back for the food though.", "type": "review", "business_id": "eHC_xNrT1SkJyC2oncJlhw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "DRw2GfcyTo8wjx2G27NxlQ", "review_id": "TsFuefVgomHNrm_sQBJOdg", "stars": 1, "date": "2012-05-29", "text": "This was absolutely horrible. I got the supreme pizza with the mystery meats. I threw it in the trash. I will wait until I get to my destination to eat. Horrible!!!", "type": "review", "business_id": "_ISHH8x8Qe6IoVTQWegbpQ"} +{"votes": {"funny": 6, "useful": 12, "cool": 12}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "hYSsjM3d_IEZTHa2q62iNA", "stars": 4, "date": "2012-06-22", "text": "I'm a sucker for popcorn, so when I saw a \"now open\" banner along with the \"My Popcorn Kitchen\" sign today, my car swerved around the parking lot and grabbed a spot right in front. I swear, it was out of my control!\n\nIt turns out, today was the first day this adorable little popcorn/candy shop was open... so lucky me, I get FTR (first to review)!\n\nKim Brush, the owner, was front and center, and welcomed me as I walked in. She also had a team of people working there that I assume were all training. They were friendly although it was obvious that I was one of the first customers, so it took longer than necessary to package up my small bag of kettle corn. The customer before me appeared to have been waiting awhile on her large bag of Puppy Chow (which looked pretty amazing). The kettle corn I ordered was just the right balance of sweet and salty. I had to dig deep to exercise my self-control and not demolish the entire bag in one sitting!\n\nI took a menu to go as well, and now as I look at it, I can't wait to go back to try more of the unique gourmet popcorn flavors. Not only do they have the basics (Buttery and Low Salt), but they have all kinds of savory flavors including several different cheeses, Dill Pickle, Salt & Vinegar, and Southwest Jalapeno. If you're more of a Caramel person, they've got you covered as well, and of course there are a rainbow of Fruity Delights and Decadent Chocolate flavors too! Popcorn Bags come in all sizes from Mini to Party and range in price from $1 to $149.95. You can also order tins, boxes, and/or pots of popcorn and this place ships anywhere in the U.S.A.\n\nCongrats on your Grand Opening, My Popcorn Kitchen. Let the popcorn parties begin!", "type": "review", "business_id": "E0DwaRvT_QlMwBU679xSCA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "oIVsVM8H273aoT1JUmsDIg", "review_id": "HGlLM4J1U-xJBgP1-_jmXA", "stars": 3, "date": "2008-10-04", "text": "Maybe I'm being generous, but CPK is an okay place for unique pizza. I've always enjoyed their Santa Fe pizza, but this time I thought I'd try their Greek pizza. It was o-k. Nothing special. Too many veggies, without enough meat, cheese and Tzatziki sauce to counter-balance it. \n\nWhat really bothered me was that they sat my sister and me right behind the kitchen. I don't think they should even have a table right there. I saw everything that was going on in there. Plus, I kept hearing the servers complaining to their boss about shit. One girl was saying something about another server \"not liking her.\" I felt like I was in a high school cafeteria. And, to top it off, it was FREEZING in there. It is never a good idea to have it soooo cold, that your patrons want to get the hell out of there to warm up!\n\nBut, besides my few complaints, it is a fine establishment, although it could definitely improve. I'm sure I'll go back again. But, maybe the next time,I'll stick with my old stand by -- the Santa Fe.", "type": "review", "business_id": "ut-kla-EA23nJOij_dcL0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "soA1xb5ug18f0Mb_sDwaVQ", "stars": 4, "date": "2010-05-13", "text": "This was another stop on our pub crawl and I only had one drink here so I don't have too much to go by for rating, but they had a nice selection and the cider realler hit the spot. They had a nice big patio outside that accomodated a ton of us and when the birthday boy was ready to leave, the waitress tallied everything up nice and quick.", "type": "review", "business_id": "UL3OMN_c-NXHlyb97pDifA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OOYZNIBX1Qp7fUF7IVpXog", "review_id": "hyjUG1baYa-q25xsoLedqA", "stars": 5, "date": "2011-09-10", "text": "Have alread posted a review but had to add that a friend at work ordered vegan chocolate cupcakes for my birthday and they were sooooooo delicious!! All my nonvegan coworkers LOVED them.", "type": "review", "business_id": "OEWW22gUG_JADQ3h4ajXtg"} +{"votes": {"funny": 30, "useful": 20, "cool": 17}, "user_id": "g84VjttN28PWiv_WtdhnSQ", "review_id": "WRBYytJAaJI1BTQG5VI8oQ", "stars": 1, "date": "2008-06-10", "text": "Yeah...notsomuch.\n\nSprinkles is sooooooooo not worth the wait . Or the chaos. Or the hype. Or the attitude from the morons who work there. Other things that are terrible about Sprinkles include...\n\n- The cupcakes are not that great. I ordered two. The vanilla was okay, the cinnamon was dry and chalky and I really disliked it.\n\n- This place is a disorganized mess. \n\n- There is no rhyme or reason to any of the ordering process. My friends and I were carefully watching the ordering process and we actually think they decided to choose the dumbest and most irrational methods to take orders and dispense cupcakes. Just stupid.\n\n- The owners must have purposely only hired people who cannot think for themselves or make decisions. No sane person could possibly work here without being like \"um...there might be a better way to do this...\"\n\n- Also, the employees were rude. Did I mention dumb?\n\nSo get this: I attempted to order a bottle of water. I told the clerk it's 100+ degrees outside, I walked there and I'm realllllllly thirsty. The idiot at the counter told me \"You can order a water here but you must wait for your name to be called to receive the water and pay for it.\" I pointed out that the water was RIGHT THERE and there wasn't anyone currently paying or using the register. Couldn't she just sell me a water? She said \"NO\" and proceeded to WRITE DOWN MY ORDER (just the word \"water\") on a cupcake order slip. She then told me to stand there and wait for my name to be called so she could HAND ME THE WATER and then ring me up.\n\nI was all sorts of thirsty and all sorts of moody that day so I got really ghetto on her ass and was all like OH HELLLLLL-TO-THE-NO!\" \n\nI said \"It's quite simple. Just hand me the water and I will hand you money. End of discussion.\" (There are the actual words out of the mouth!)\n\nShe looked really mad and also possibly terrified of me and my 5'4\" 110 lbs of fury. Thankfully she handed me my water so I did not have to stab her. Which was good because I was waaaaaaaaay too thirsty to stab anyone. \n\nI must be properly hydrated in order to commit crimes of passion. And I'm mad crazy passionate about my cupcakes, yo.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "aXPNzAxz2JWrjelJdjdfqQ", "review_id": "4XqFXkL3cjd22fZH2KU-Hw", "stars": 5, "date": "2009-02-18", "text": "The BEST SPORTS BAR in chandler hands down!! A great place to meet friends and even bring the kids!! The owners are always around to ensure ur experience!! TV's everywhere, if you love sports and beer this is the place for you!! The nob has events all week and food specials to go along... the ribs are amazing!! however the GYRO is good as it gets!! The best gyro in the valley you can write that one down!! and the wings... once you pop u just cant stop!!\n\nHOB NOB SPORTS BAR & GRILL cheers to you!!", "type": "review", "business_id": "8lHJm7hAlfsUNbVb3YaSMA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "U4E0mci8eBfGlwFLWo2cIA", "review_id": "IZvHtSx-eeLZv0F6rimZzw", "stars": 5, "date": "2010-05-16", "text": "Beautiful restaurant! Terrrific service! \n\nWonderful, fresh and authentic cuisine - what more can I say but don't miss the Carpaccio!", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 1, "cool": 3}, "user_id": "rY0T1Sx-kSeSHgnPbLOA1g", "review_id": "VOHKdym9kQuC7etKBtXZvQ", "stars": 4, "date": "2008-01-14", "text": "I wanted to check this place out as I had got my mother in law a gift certificate for here... It is what appears to be an old farmhouse that was left standing in the middle of Scottsdale busy city life.. The inside is very charming, like stepping into someone's home with all the good smells of cooking. We didn't make reservations and since it was a Sunday, knew we were pushing it, especially with the after church crowds. But as luck should have it, was able to sit outdoors and was such a nice sunny day, was great. I had the Chicken, wild mushroom and leeks crepe..was that ever heavenly! My husband the strawberry chicken salad, which he also enjoyed.. One thing that drew my attention was that there were a lot of women senior citizens...very well dressed ones...obviously part of the Scottsdale upper crust..I think we were the youngest ones in there.. Next time I'm back in Scottsdale will have to go back..", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IbNzF_SIdZioYbLnL6F5Vw", "review_id": "-fX_t5IE1Ca_FqePEiNy7A", "stars": 4, "date": "2012-05-24", "text": "Lunch review: \nGreat quick lunch options. I'm a big fan of the lunch salads. They are very filling (paired with the free chips and salsa!!) My favorite is the Chipotle Chicken Salad (Mixed lettuce, black beans, roasted corn, cheese mix, pico de gallo topped with grilled chicken)-- it's only $6.99. The spunky chipotle dressing is delish. There are also several lunch-sized versions of dinner plates available for diners looking for a heartier meal. The service is always friendly and were are able to get in and out in less than an hour, which is very convenient during a busy work day.", "type": "review", "business_id": "BFZHdg2TRrgw56CyqkSryA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "bn2OLRVHRlquGcSp_9KNIQ", "stars": 3, "date": "2011-07-31", "text": "came out last night with a few friends. The bar was cool, but I'm really not a fan of the crowd in Old Town. The drink prices were not bad, but it was a blast dancing outside. Overall a pretty cool spot.", "type": "review", "business_id": "-9pVS__IliMA2aNEYzrQrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1m8rFe-BCr6qHSMoV5KkUw", "review_id": "-d5xJozQi6bNH1mchDjekg", "stars": 5, "date": "2012-10-05", "text": "I've always been treated well @ D'ambrosio's despite my not exactly being 'N Scottsdale plastic'. :)", "type": "review", "business_id": "0Xz7umPUtAxf6JMHwybnmg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "wExRQGQ_gdBRLwf5c28mhw", "stars": 5, "date": "2009-03-15", "text": "Ben & Jerry's is still the best chain ice cream shop! The employees are always helpful and polite, and their flavors are just outrageous! The smell of the waffle cones and waffle bowls wafts out the doors as you walk by, and you can't resist. Whether you go for new flavors or classics like Cherry Garcia and Phish Food, you can expect the most flavorful ice cream with the perfect consistency.", "type": "review", "business_id": "uf4AWTEI6RmRUXx-28MZsg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "idSvgXVCamuEwbL3sp9O_A", "review_id": "mMpcnn605-joiWZvMPlo9g", "stars": 4, "date": "2009-12-18", "text": "Sit at the bar, order tacos and sangria. you will not be disappointed.*\n\n*you might be disappointed if you do not like techno music and a wide variety of alternative relationships being showcased around you. If you like to eat/drink and have a little social interaction and have an open mind, then this place is for you.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Sve2h1r-jOyaoGY2GYL0WA", "review_id": "1i6z7SFTabmLRT_WAtUHbA", "stars": 2, "date": "2010-03-18", "text": "Not the WORST place, but nowhere NEAR the best place, I've ever been.\n\nWent in, back in January, for a dinner around 9:30, on a rainy night with my beau. It took 15 minutes for our waitress to stop, acknowledge our existence, and take our drink order. By that time, we had decided our food order, and gave her that, too. Another 10 minutes later, we received our beverages. another 25 minutes later, we received our order, and my chili cheese fries were decidedly bland, while his hamburger was worse than McDonalds. Minus that his regular fries were actually good.\n\nI'm pretty sure that will be my only experience at SPS's. The decorations were pretty awesome though.", "type": "review", "business_id": "fjHUnUP1Lt-YAbeWUx2LrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L-O1rmPXJ3ihCnfgJIigbQ", "review_id": "g5HDYPyaKomPtMTAAiAtGg", "stars": 4, "date": "2010-08-05", "text": "Went there for the first time today. Excellent burger, and all the extra's on the burger are free which is pretty nice. It was just over 10 bucks for a cheeseburger, regular fries, and large drink. The food was excellent. I ding it down to 4 stars though, just because anything this good has to be unhealthy, and its definitely greasy. The grease from the fries saturday my brown paper take-out bag. They also squished the top of my bun pretty bad when wrapping it up in tin foil. I'm guessing if you eat there, you don't have this problem as much. Still, 4 stars for an excellent burger and fries place. Definitely a step up over In-N-Out.", "type": "review", "business_id": "jqZKv-7F54guDLalXEjHxg"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "jkwsq63XsDOIx-lOHx-rHg", "stars": 5, "date": "2011-04-17", "text": "Did you know that Malee's on Main offers cooking classes!? They offer them twice a month during tourist season and once per month during the rest of the year. I attended two weeks ago, and it was OUTSTANDING! Not only did we learn to cook Thai (which, incidentally, it was significant to learn that Thai gets its flavor by layering is sauces), but we were given the recipes for some of the signature dishes, served tastings, a meal, and wine pairings, and we were even given goody bags. It was a great way to spend a Saturday afternoon with another foodie!", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iJUVamUkqL6VfEMfyQoujw", "review_id": "9xub6R8ZkVac--CiNEO3dw", "stars": 4, "date": "2012-09-08", "text": "You know......first when my girl dragged me here....i thought it will suck. Once I stepped in....well....BAM! Interesting colors fill my senses. I do appreciate the set up of this place and the quirky items I found. So yea it is a chick store but still managed to entertain me.", "type": "review", "business_id": "gFDTSqVdeuAGA-mzWEP2rQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "RxVtyynTn5_MrxKFZkvTaw", "stars": 4, "date": "2011-02-23", "text": "This review is for the cooking class...\nI was told about this class by my favorite Thai joint in Chandler. My mom and I went not really knowing what to expect.\nThe class is held on a Staurday. When Chris called to confirm our reservation he made sure to let us know that a cab my be needed to take us home...sounds good to me.\nThe classroom is small seating about 20 people at the most. There were mimosas waiting for us. \nThe class started with introductions to the variuos Thai cooking ingredients. I found this information so interesting. How do you know which fish sauce to buy, what the different pastes smell and taste like, how to grow your own Lemongrass and so much more. \nWe started by making Siamese Kisses. It was all hands on and really fun. The next was a fresh red curry paste. Then we compared the fresh to the store bought brand. What a difference!\nThe Arizona Heatwave was next. So Delish. The final dish was Asian Pumpkin Custard.\nWe tasted everything along the way and then they served us HUGE portions of the items for lunch with a Champange paring.\nThe Chamange paring was also very informative and the pours were never ending. He was right about having a DD lined up...\nThe staff really cares about the food they produce and will make any dietary adjustments you may need.\n\nI really had a great time.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "SWoWXML68esw-UhHRjLBQQ", "review_id": "PNHcsA9aGOjDQkT_lSSbmw", "stars": 5, "date": "2011-06-01", "text": "Even though I've rarely had anything else on their menu except for hummus, I highly recommend this little greek hot spot. They have tons of regulars because the food keeps them coming back. The hummus is to die for (it only comes with one pita however, so I always order 2-3 extra). I have also tried their veggie gyro which is great. I have brought many meat-loving friends here and I've never heard anything but great things about their experience with their food. \n\nThe staff is completely Greek. They are friendly in their own unique kind of way. Because I usually saunter in with a drink from Starbucks (same parking lot), the female owner assumes I work there and she always asks me how business is going at SB. I corrected her the first few times, but she continued to ask, so now I just keep it going and tell her it's going great but that I hate my job (because I'm assuming I would, if I worked there). I love her personality...very intense. Never smiles, even when a smile would be just right. But she is still very kind. Always look forward to seeing her and eating her food.", "type": "review", "business_id": "LxNehlnStQY_rxEwiPof_g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "_YFr0NsiulAoUOAtARP_Xw", "review_id": "REryGbDQ8raf84FpUCo7SA", "stars": 5, "date": "2012-08-12", "text": "I came here hoping to catch brunch but I guess it ends at 11:30am or 12pm. Luckily the lunch menu looked just as tasty. We ordered the Luau pulled pork sandwich (the jalapeno cole slaw gives it a nice kick) and the Monte Cristo (french toast instead of regular bread slices = delicious). Service was friendly and attentive. The dining area is decorated like a household- very comfortable and clean.", "type": "review", "business_id": "kfscAJnLVf6J2uEte7g-5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rj3LpeiJUPYBC8L_Xy6cBQ", "review_id": "MhQ19Fb3mbxL7fcrLjPNxA", "stars": 5, "date": "2012-09-16", "text": "My husband and I enjoyed a \"staycation\" here for my birthday. We had an amazing time! We took advantage of the great happy hour specials at the poolside bar and at the Sangria bar. The Sangria bar had billiards and a card table. They also had a wonderful Happy Hour menu where everything is $5. Excellent hamburgers and margaritas. We enjoyed a beautiful dinner at Palm Court and a breakfast buffet at Vista Verde. We took advantage of the free bike rentals and the exercise facility. The staff was amazing and very accommodating. They have definitely earned our business and will refer our friends.", "type": "review", "business_id": "AZq_SBJsqsleJkQCksYsjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ykg3-2C-8Vv3K4mVj1iSfA", "review_id": "30k1pU5P4EJYhIRxookf-w", "stars": 2, "date": "2008-07-07", "text": "First of all, the hours, this place keeps the most absurd hours for a restaurant serving 50,000+ students and faculty. I cannot tell you how many times I've walked over to get a sandwich and Sacks has been closed. They open sometime in the morning and close at about 2 or 3 in the afternoon, I can't report definitively what the hours are because they do not list them on Sacks' website, apparently they are trying to keep it a secret. I understand a sandwich shop in downtown Phoenix keeping these hours, but here is an update for the owners of Sacks: ASU students and faculty do not keep bank hours.\n\nThe quality of the food is substandard but the sandwiches are priced reasonably.", "type": "review", "business_id": "Y-NqaDy_1bb-Y5dQ33x-Pw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "K5oJ9aQth_Ltg3Awgjy-wA", "review_id": "mRYtZxroWxERkoDhEFnjTg", "stars": 2, "date": "2011-06-20", "text": "I had Smashburger for the first time a couple of days ago and I was not impressed. My burger was way too greasy. The smashfries were good but they were greasy as well. I'm not expecting for my burger to be dry but there is a major difference between juicy and greasy and they crossed over into the land of the grease. And they were heavy handed with the salt. Unless I want my sodium intake for the week in 1 day, I would suggest that they move away from the salt.\n\nThey are similar to Five Guys in that they have no combos but they have more options. I can see what the appeal is and maybe the cook was having a bad day but between the grease and the salt I will not be going back unless I have a death wish.", "type": "review", "business_id": "tr4L9VWmPGZtdBD-L2Pofw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "2-GIaS8Bc4MHqzXHLQY9Ew", "review_id": "GrF1BYTZl2mYjT0SjQNCyw", "stars": 5, "date": "2010-07-02", "text": "Okay, if you actually like the taste of good whole foods and fresh ingredients this place is an Oasis of goodness. If your looking for a place that says they make natural foods but uses 2nd rate ingredients and comes up with recipes to hide the fact by using spices to cover it up your better off going somewhere else.\nMy family took me here when we were visiting, and it is wonderful. I had the Pesto Presto sandwich and it was divine! I also tried my family's strawberry fields salad and Arizona rolls. They were all really good. The vegetables were fresh and high quality and the price for the portion and quality was a good price.\nI was amazed that they had a couple of options for people on the raw foods diet. The juices are different, but surprisingly refreshing.\nThis place is a great example that eating well and health can be tasty and satisfying.", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l2srZt-GNvF7tMotR_VyAw", "review_id": "J5kIrC9Sx8il8DZkOhVOgQ", "stars": 5, "date": "2011-07-27", "text": "Just perfect !!! For what it is!!! Down to the Edison light bulbs from rejuvanation!!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "3nUQ4xbLlySDbkE03nyp-Q", "review_id": "eRm_2IWGdWO8BgkAF1N78w", "stars": 2, "date": "2011-08-15", "text": "Years ago, and I do mean years ago, their Mill Avenue location in Tempe, was outstanding.\n\nAs they expanded, the food along with the total expierence has gone DOWNHILL, big time.\nWhy has this happened ... they're doing franchising. \n\nI'm suggesting a name change:\n\"My Big Fat Greek Disappoinment\"", "type": "review", "business_id": "niPFXq4r2mc0zFlOpWV3Eg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W9ZG5q-QIblXYeHgaPS5Uw", "review_id": "ghR3ui-7gHOk-Cq1BKNVWw", "stars": 3, "date": "2012-03-18", "text": "The experience we had was just fine. Food, service and wine list were all good - salad bar was good too. I am not sure if I'd go out of my way to go back though. There are a lot of trendy and fun places to dine in the Scottsdale area and this one seems to be like the \"Grandfather of Scottsdale Dining\" - older and almost antiquated.", "type": "review", "business_id": "q-qjZDKcBdDRuIUxj7b97g"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "3QWrztGoYGxma0yPV5wdXQ", "stars": 5, "date": "2011-03-30", "text": "It's a beautiful day. Clear sky and around 65 degrees in the late morning! What to do? My little guy had been riding his bike without training wheels. Woo-hoo! Is he ready to go on a dirt trail? We're gearing him up to go mountain biking up North. Hubby suggested Riparian Preserve. It was an excellent choice. \n\n\"This is awesome!\" my little one exclaimed, as he bounced up and down on the trail. Then, he'll just stop right in front of me without warning. Five year olds get distracted so easily. \"Is that a wasp? Look at that hover fly! What kind of ant is that? What kind of beetles live here!\" asks my little future entomologist. We'll be taking some tours and classes the Riparian offers soon!\n\nMy little one did bite the dust several times due to some excessively gravelly paths. He learned to either walk his bike over or slow down a bit. Such a sport! \"Let's come back here again., That was fun!\" It was fun for us too!\n\nWe're so lucky we live not far from here. It is a very well maintained park. As it gets hotter, we would walk and feed the ducks in the morning and spend the rest of the time in the Regional Library. I highly recommend you check this place out.", "type": "review", "business_id": "ZCE_ZHlZGpWPGICWpGNrdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yUrJNGlx8V10dRAvdh3ZFw", "review_id": "YpGfn3_39otBIklxjp1U2w", "stars": 2, "date": "2012-07-07", "text": "Not impressed. The young lady behind the counter aked like she could care less about my 15 shirts I had to drop off. I had used them before and nobody ever smiles at you. When I asked about pricing and how they protect shrinkage she said \" we can't guarantee anything\". Well, I can guarantee I will be goping elsewhere. You would think based on how expensive they are that they would care more.", "type": "review", "business_id": "ASfFd5hKoG6QF6H3id2l0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eqpoFHtDafP6XBv5ClufLg", "review_id": "rjL18zsmqUU00_cgQwcv-Q", "stars": 5, "date": "2011-06-15", "text": "The Thai menu is totally amazing! I had the Panang; and the coconut curry was to die for. I have been mistakenly driving past this wonderful place for a year. Do yourself a favor, try Na Rai, you will be so pleased you did. \nThey have a lunch menu as well.", "type": "review", "business_id": "qSLdUiI2edATC3KBT2zf4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SZN_eQkeLii4VUkjupS9UQ", "review_id": "3qfRlR1G3tea0oy-1BZUQw", "stars": 4, "date": "2012-07-25", "text": "First, and most importantly, every person I've met at QC Vet Clinic has been super! They are caring and wonderful with my dogs. They are never too busy to smile and give great service when I come through the door. They have even taken time to share stories and pictures of their own pets.\n\nSecond, they understand that some people must take a fiscally conservative approach with the care of their pets. They discussed all options thoroughly with me and I performed the care that was needed a little at a time -- as it was needed. This was important to me since many vets that we've visited in the past have handed us an estimate for hundreds or thousands of dollars and wouldn't budge -- insisting that we HAD to do ALL the work listed. At QC Vet Clinic, I didn't feel like I was judged for that decision.\n\nUnfortunately, we had a small mistake that I discussed with the vet. She listened and gave appropriate feedback to my concerns. This is really the only thing that is preventing a 5 star rating. Overall they are still the best vet I've visited and I will continue to put my pets lives in their very capable hands.\n\nBTW, we had to have a pet put down because he was ill. The team at QC Vet Clinic was absolutely the best! They were so empathetic and even sent us a sympathy card with a little surprise inside... I won't give it away, but it was so very special to my family. It's the little things in life that fill our hearts...thanks QC Vet Clinic!", "type": "review", "business_id": "1O4M8H5g3vdrzg9WcLeGsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d1vSOBq_RauHGpCh7VN7KA", "review_id": "QNX3-6wuBmVEggl7w084dg", "stars": 1, "date": "2012-08-23", "text": "I (like others) am at a loss as to why this place has such a good overall review. tasteless and awful", "type": "review", "business_id": "QxEUzbLfCTXF6gHWJegWgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "jfXT_8J_EQnJVa4sJ3z6hg", "review_id": "gjWVccNw6kB2UycZAEzyQg", "stars": 4, "date": "2007-11-13", "text": "I hate to find out that there was another location closer to where I was. It doesn't matter because it was worth the trip. I ordered pick up because I was by myself and wanted to a bit of exploring. The place has a nice casual ambiance. They also have an outdoor seating area. I ordered the pad thai that comes with chicken and shrimp as a standard. Since it was lunch time, it was part of the lunch menu that came with a choice of soup or salad. I chose the soup, but was too stuffed to have it because I jumped right into the pad thai. I ordered it medium spicy, and it was pretty spicy. I can't imagine what hot would have tasted like. Actually, I'm more curious of what it would have tasted like in a mild flavor. The noodles were slightly overcooked, but still flavorful. I also had the Thai Iced Tea here, and it was perfect for the weather and a great combination with the tangy pad thai flavor. The prices are expensive compared to Chicago, but I hear it's typical for Phoenix/Scottsdale area. My lunch speciai and drink costed me a little over $15. I guess if you are craving it that bad like I was, you'll pay the price...", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "GMkF0yJWwFRVO9kiGOcojQ", "review_id": "rqfTcaa2IvVUfeXituCqoA", "stars": 4, "date": "2011-07-21", "text": "I am a little finicky with pizza. I don't think Venezia's can be beat (for Arizona pizza).. Since bitches are crazy, and make you move out of the house you practically built for them... I no longer have a Venezia's near me. I moved to Chandler with eyes scouting for what could be my new pizza joint. Fox's Den caught them quickly. I ordered a large 2 topping pizza with 10 hot wings for pick up on a Wednesday. My order was 10 bucks! Now.. this is not the best pizza ever, but it kills your major pizza chain any day. I highly recommend trying these guys.", "type": "review", "business_id": "5weJ3DRKwvQ9claomkYq9w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cFoiVWF42HSXQEtqxDvdWQ", "review_id": "mJHnR7SYE54ObVjBoNdcEA", "stars": 4, "date": "2012-12-08", "text": "I went back tonite for more LFC. \n\nThis time, the chicken pieces seems to be a little bit bigger than last time. The menu now has a disclaimer saying that some sides may incur an additional charge. That was two of my gripes on my first visit, so check and check.. \n\nThis time, I ordered an 8pc with 2 large sides...As stated above, chicken was bigger, and it was hot and moist..perfectly seasoned. For sides, I ordered the sweet corn nuggets and mac and cheese. They had run out of mac and cheese and had to make more. It took about 10 minutes to make. Was it worth the wait? It was fresh, REAL macaroni and cheese, baked in the oven, not some \"out of the box\" variety. It was made with real cheese, as witnessed by the stringy cheese when eaten. My comment here is that I prefer a more creamy variety than what it was. But it definitely was better than Kraft mac & cheese in a box. \n\nThe sweet corn nuggets were incredible. Not sure if they are something they make fresh or if it comes out of a freezer bag, but they were delicious little morsels. Nuggets of corn kernals, surrounded by a light crunchy coating and deep fried. \n\nI wanted to try out their fried shrimp, so I got an \"add on\" of 4 fried shrimp ($1.99). At first view, I was disappointed. What I got were 4 very small (think MAYBE 45-50 sized shrimp). They were not even butterflied, which would have made them appear bigger). But upon tasting them, I really enjoyed the flavor. They appeared to be freshly breaded (is it the same seasoned flour used for the chicken?) and were very tasty. My suggestion here would be to 1) butterfly the shrimp and 2) get a slightly larger shrimp (even if it means a price increase).\n \nWith my second trip to LFC, I am becoming an even bigger fan..Tasty chicken, good sides, a clean restaurant, and nice employees.", "type": "review", "business_id": "DnA5Ec7DOvaaCxmnLx2iYw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "rXrJkICbrO7SEvKNZlrPkA", "review_id": "oaZpNjMgTYOaiAJ1I17zyQ", "stars": 4, "date": "2011-02-18", "text": "Attention margarita lovers- you MUST order the Chambord Margarita. Delicious (and dangerous) and oh so tasty!\n\nThe restaurant is always busy because it is at Fashion Square but the service is always prompt. The patio/bar area upstairs is open seating so you can usually snag a table up there even during busy times.\n\nThe cornbread they bring to your table is really yummy but sometimes you have to ask for it to make sure that they bring you some.\n\nI have had a large variety of of things on the menu and never been disappointed. The seasonal menus they offer are great as well and i definitely recommend branching out and ordering off of that menu every once in a while.\n\nDefinitely our \"go to\" place for drinks and dinner.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "fYob74usntFSxqgp8ycPjw", "stars": 5, "date": "2011-09-12", "text": "Tiffany @ the chanel counter. \nTana in the lingerie department. \n\nthese are my go-to girls for everything. i bring all of my purchases to them bc they are THAT much better than everyone else. except shoes because the shoe people know how to work that confusing back shoe room. \n\nbut everything else: make up, accessories, clothes....all to one of these girls. i recommend you only work with them as well :)", "type": "review", "business_id": "c7VgGP8xT25OSReok6fwcQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGuemQk8wCFyohPz3Z-big", "review_id": "p4T4ZN97CdkJ0KLAfq-uYA", "stars": 3, "date": "2009-02-05", "text": "I tried the shrimp and chips and they were tasty. The shrimp was a little salty, but with the dipping sauce they tasted fine. I liked the \"chips\" a lot. After reading the other review I'm nervous to try the fish and chips.", "type": "review", "business_id": "5UH0FGpE2Ge3FkUlS8MUMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nN3Ym_sgqI5EQuC4AIJprA", "review_id": "zy43GWc0gjbsUsGRwsPZzA", "stars": 4, "date": "2009-09-01", "text": "One of the best sports bars in the valley. Ton's of screens (although some of the big screen projectors could be updated). Nice big drafts and the food is always tasty. Try the teriyaki chicken sandwich with fries it's awesome. Upstairs they have shuffleboard and pool tables. Golden tee 2009 downstairs with another pool table. If you like loud sports bars where the patrons get into the game this is the spot to go. Plenty of fun to be had. People say too many kids but I guess I go later on at night and never have seen a problem with little kids.?. The service is on and off here, sometimes it's been great sometimes it's been useless.", "type": "review", "business_id": "uS2T2BMt7_EE7mhM3m3I7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "azj8vFl7JuSyHqamSVhd4A", "review_id": "I2KXAFlusCKgfuWEU9OZUQ", "stars": 5, "date": "2011-04-25", "text": "Yeah it was good. My wife & I went with 2 other foodie couples, who are good friends, for our monthly \"side dish\" function. The food was all fantastic. All 5 of the other people in our group were drinking martinis, which they all said were very tasty as well, but at $12-$16 per, I'm a little put off. I'm more of a beer guy anyway, so I had a couple of craft-brews that are not available everywhere, and then settled on a Firestone DBA -- a very very tasty beer -- and had several of those. Great food, great booze, club music atmosphere is pretty cool. Outdoor area is excellent. Felt like an idiot when I had to ask where the mens room was only to turn around and find that the huge wall of a door was right behind me and said \"he\" in huge letters on the bottom of the door. Oh and then (6 or 7 strong beers into the evening) I found that the mirror next to the (only) urinal in the mens room misled me into believing there was a second urinal, which I tried unsuccessfully to walk to. Why is that guy walking directly toward me? Oh, it's me. In the mirror. Dumbass. So then (after relieving myself in the actual urinal) I go back out to the table to tell the story about trying to use the urinal in the mens room that doens't exist, and somebody else says \"yeah the same fucking thing happened to me too!\" so I don't feel like such a dumbass anymore. Fun night.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "u1IC7xORIeAkJEt6n4p3_A", "review_id": "h0HT8EswtP2ROQf-nTODWQ", "stars": 4, "date": "2011-03-06", "text": "It is ALWAYS fun & enlightening to visit an Apple Store as their employees are ALWAYS so helpful!.....now this store is somewhat small and has \"sleepy Scottsdale\" hours of opporation.....opening at noon on Sunday???!!!!.... How 1965 of them.....used to the exceptional hours at the store on 767 5th Avenue in NYC and their 24/7.....but you CAN schedule genius classes as early as 9:00......so all in all another great Apple Store experience and Will be back for iPad 2 next week!", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "188v8fiXebMrsPAB4PJ_PQ", "review_id": "DBsqh6uvt5VvWSCGlWZpsw", "stars": 3, "date": "2009-06-06", "text": "If you happen to get lost and wander by the gun show at the Coliseum, be sure to stop here. A little whole in the wall of a former Wendy's, this place rocks the steak taco world.\n\nMy favorite is the \"jaz\". Carne asada + cheese + peppers/onions = yum!!!\n\nThe barbacoa and chicken tacos are tasty, but I wouldn't say they'd knock you off your feet. Definitely go carne asada and defintely try this place.", "type": "review", "business_id": "KVq-1WEJNKK2NqFC7nUoRg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "tZL60BEoU-NVHK8OsBiN3Q", "review_id": "PXDF0BsdQ3L_v0hMqXNLQA", "stars": 5, "date": "2009-03-31", "text": "I love this place! I love that it's to-go only (no 3 hour waits, like Pizzaria Bianco), and the mozzarella is mouth watering. \nPlease try the mozzarella, tomato, basil sandwich. You won't regret it!", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 10, "useful": 7, "cool": 8}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "ZucxvCvKaw7ViaKU00HYGg", "stars": 5, "date": "2010-06-21", "text": "Ice Ice Baby...\nIce Ice Baby...\n\nAll right stop collaborate and listen;\nIce Now is here and it's got my attention \nMake some drinks - not warm but frosty;\nAnd believe me when I say they are not costly\nWill it ever melt? yo I don't know.\nGive them a call and they'll show\nTo the extreme I yelp like a sandal;\nIce your drinks and get lit like a candle\n... Ice ice baby\n\nPS - not sure where the sandal line came in but writing a review in lyric form is a challenge! This is the best I can do for now...\n\nNeed ice for an event? Call Ice Now! They offer free delivery and their pricing is surprisingly cheap.\n\nAnd good luck getting the Ice Ice Baby lyrics out of your head... (sorry)!", "type": "review", "business_id": "6sELDdbWi_Cjwp5uZ8PmGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vcywddFwcXuE-cIlQfouiA", "review_id": "2EVZlVaf6LxUKWgF6SNLGA", "stars": 4, "date": "2012-05-09", "text": "I'm just glad that they brought back the Strawberry \"fields\" salad. Yummo! Fresh greens, goat cheese, fresh strawberries, bell peppers, onions, glazed pecans, chicken and this amazing viniagrette dressing! Wowwy Mowwy! Oh, and it comes with a crusty buttery cheesy bread. I have had a few run ins with bad waiter service, but the manager was always quick to come by our table to ask if anything else was needed. As long as I get what I ordered and I dont have to poke around their tables to make \"eye contact\" with my server I'm ok. They know they will get a mideocre tip if their service is so-so. It's on them. My mother got a red velvet cupcake on the house for her birthday! That was nice.", "type": "review", "business_id": "Sodko0hlMg7F5doNJGKcWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WPjR6viRLglxD_BMztch2g", "review_id": "-ElU8lXSX9Yz001EK2lG_Q", "stars": 3, "date": "2011-05-28", "text": "3/5\n\nthe sandwiches are huge. i'm not to bent on the whole freedom fries this and such on the menu, but it is AZ so i guess that is how it runs.", "type": "review", "business_id": "LRuIY8JFqadCSYLo242MGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "tVxzP18vBkMn6tMaxwv7LA", "stars": 2, "date": "2010-08-21", "text": "Good lord. I don't ask for much. I ordered a slice of quiche and an iced coffee. They didn't have to bake the quiche, just warm it up. I waited 15 minutes and then went to the counter to ask for it. The server looked confused and the Guy who took my order said he \"got lost.\" I heard the server apologize to at least three tables (but not to me). She told one guy the toaster burned his cinnamon raisin bagel (the last one in the shop) and insisted repeatedly that SHE didn't burn it--it was the toaster's fault. Quiche was tasty, though. The server said it was mushroom and spinach, so I had to wonder for a minute what the bright red things in my quiche were...then, I figured out it was mushroom and chard. Coffee was \"eh.\" The floor looked dirty. There was a paper towel in the toilet. Ok, I'm nit-picking now. The place was moderately busy; the small private parking lot was full. Fortunately, I was on my scooter, so I could squeeze into a non-parking space easily.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PoLTut88ZmgFsnFvsTy5XQ", "review_id": "M1LxHqmnzohCNyLamfbmow", "stars": 5, "date": "2011-12-08", "text": "I love Dr. Scott!! He is the funniest doctor I've ever met and he makes me feel good too! Dr. Scott is always willing to bend over backwards to make sure you are provided the best service and treatment possible. The massage therapists rock too! I will be a lifelong patient of Integrated Chiropractic.", "type": "review", "business_id": "621ZMZH68DilrRgBRw1R6A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XXVfsLunIiz3xDeK17aHFQ", "review_id": "tvp0cGaYy1n-u6OVnTJyLQ", "stars": 5, "date": "2012-03-07", "text": "Total wine totally takes a crap on Bev Mo. This store has everything! The employees are also very knowledgeable. The other day we went in and my husband insisted I try red wine instead of sticking to my usual Riesling (I don't like change). So we asked one of the employees and he asked me a few questions then suggested a bottle of Malbec. The Malbec tasted amazing! I was so happy. For those of you who don't know, it's not only wine! You can find everything else. Total wine has helped us stock our bar and entertain our guests. Also, don't forget to chill your bottles before you leave!", "type": "review", "business_id": "kUvJiI7teJ--m5i1ReG58w"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "E5qFR0RBQBoXx8FbrOkdbw", "review_id": "BBSQvT-lBFuiTBc80XummA", "stars": 5, "date": "2012-11-13", "text": "Try the Moroccan Chicken on the low calorie menu. I was really surprised at how great it is.", "type": "review", "business_id": "GjvIDOEhdQB1oPrFeSpxBw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "rmUJGvphy7GXY9Y_kGutgA", "review_id": "m6IduNPjU-3opMt-z9Zt4A", "stars": 3, "date": "2009-08-15", "text": "This is a decent place to go see various types of electronic dance music. It's not an insane place that will make you want to vomit or gouge out your eyes (i.e., Myst, et al). The times I've been here, the people here seem pretty decent, though there is the share of ridiculous folks. \n\nThe bar service generally isn't very good, and you can expect to wait a while to get a drink. The place is pretty small, so if you're seeing a big act, you will be tightly packed and wait a while to get upstairs (one up - one down when filled). And be wary, you're liable to get second-hand pepper sprayed from one of the neighboring bars/clubs. The bathrooms are small, and the Men's has no door on the stall (gee, I wonder why...).\n\nOn the plus side, the music is usually good, and they stay open past 2AM (wtf is with you people and \"liquor laws\"?).", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "k1ACFw3wmqkNGoiGeNLc0w", "review_id": "Q37beQah9GJQNRXLfTecCQ", "stars": 5, "date": "2008-11-11", "text": "Wow.\n\nBeen there 2 times. I wanted to revisit to see if it was a fluke, and to my pleasant surprise - it wasn't. I'm from NW Indiana originally. I know corn. Indiana sweet corn cannot be beat - well - until I had the corn from America's Taco Shop. This corn has cotija cheese, hot sauce, mayo, and I swear crack. There has to be crack in there... I have viscous dreams about that corn and wake up in a cold sweat. I need that corn... it's just so good. \n\nI don't eat beef and that's the only meat they serve but that won't stop me. Their vampiro's minus the carne asada, bean and cheese burritos, chips and salsa, quesadilla are all awesome. They also have delicious horchata.... but that corn.... \n\nI know where I'm going tonight.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "auVkTXPmA8o3oU8barlBSw", "review_id": "MRnetROe0f_zjMvjlL-fQA", "stars": 4, "date": "2009-07-13", "text": "Good things about the Merc Bar:\n It's dark inside and the decor makes it feel kinda swanky.\n The service is very friendly.\n They have lots of comfy chairs and couches for anyone to sit down.\n The location is good - in the Esplanade, right across from the Biltmore, where there's lots of restaurants you might be eating at (and includes free parking in the garage if you validate!) and it's kinda hidden, so you feel cool going there.\n They have a great drink menu with a wide selection.\n\nMinus one star because the drinks are a little on the pricey side.\n\nI know there have been some negative reviews about the old age of the regular patrons, but honestly, when I've been there, it's been a good mix of 20-somethings to 40-somethings. If you're in the Biltmore area, Merc Bar is definitely a place worth checking out as a start to the night or for a date.", "type": "review", "business_id": "peA3F-PnIfijYr8HuG-A-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Uf-jZhhEYRIFxzyT1d5R6Q", "review_id": "1T2IYVRiG0yz8u_DJgWJsQ", "stars": 4, "date": "2012-01-22", "text": "Going to keep this review short and to the point...\n\nService: Most of the time horrible. Typical waiting forever at the bar for a drink, if I can even get thru to the bar... Bartenders seem to be oblivious to serving patrons in a fair first-come-first serve fashion...Major dislike\n\nAtmosphere: Trendy and hip. Except for the excessive desperate looking cougars trying to cash in on fake rich or really young ripped Jersey Shore looking guys. The cougars are just minor annoyances, they don't get in the way too much. The majority of the people seem to be pretty cool though.\n\nPricing: A little steep, but it's Scottsdale. The place could offer a better happy hour. Sunday's bottomless bubbles (champagne) is a great value. \n\nFood: Portions are pretty small, but are decently priced.\n\nDecor: Outstanding! Job well-done in decorating and furnishing the place. It's really distinctive and luxurious. However, the rough plastic-feeling purple couches do not feel pleasant to the touch. They look like velvet, but are vinyl. Major fail on this! This requires immediate attention.\n\nPatio: Great views and plenty of seating. However, hated how many stupid old smelly cigar smokers were out there clogging up the air. I'm not sure what can be done about these disgusting people, but overall the patio set up is one of the best around...", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "377CDhtGrgoNNEnEhf6Ccw", "review_id": "bw3WAeRVXWnUbJvX5ibXcw", "stars": 4, "date": "2012-07-21", "text": "Every time I drove by this store with my brother I mused upon the social issues faced in a FOOD CITY. \n\nDo you suppose they have problems with segregation/integration? You know, the tomatoes CLAIM that the bagels could have moved into the produce department if they had CHOSEN to; they just CHOSE to occupy shelf space in the bakery department because they LIKED being with their own kind? Doesn't a bathroom cleaning product have the same rights to locate itself in a freezer case as a gelato does if that's what its little heart desires? Do the canned yams believe that there is nothing wrong with the candy in the bulk food section, they just wouldn't want THEIR daughter to marry one? I almost wanted to stick a carrot in the dairy section just to make the point. NO MORE SEPARATE BUT EQUAL around here. Nope, we're a modern day non-bigotted \"everybody deserves a fair shot around here\" kind of grocery store.\n\nWell, I finally had the occasion to stop in here over the the weekend I was visiting Phoenix and was surprised to discover it catered to a mainly Hispanic customer base. Being from Bakersfield, California, this made me feel at home at once! There was mariachi music playing over the PA system, and there were spanish language entertainment magazines by the checkout. \n\nI stopped in because a friend texted me to pick up a bottle of Pinot Grigio for her. Now, I know that those of you who shop here regularly are probably still rolling on the floor laughing, but remember - I'm from out of state and didn't know any better. When I discovered their tiny wine section, and that it was mostly Carlo Rossi & Gallo wine, I was momentarily downcast. But there, on the very top shelf, were a few varietals by a decent Australian Wine Cellar and - Lo and behold - one lonely Pinot Grigio. Ta - da! Cue cherubs descending Earthward blowing trumpets in celebration. And to make it even more exciting IT WAS ON SALE! Yes, normally priced at $7.99 a bottle, they were on sale for $5.99 each. I decided to bring her two bottles just to celebrate.\n\nThe checker was very friendly and spoke English with only a minimal accent so bonus there, too. The final kicker was when I gave my friend the receipt she discovered they'd only charged me $4.99 per bottle. Woohoo!\n\nThe store was very clean and I did notice they had an excellent selection of Hispanic themed items so if you're looking for that sort of thing, this place might be for you!", "type": "review", "business_id": "zpKmFI47BWUT-dUlTDSVug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bX5MJIMxOnfKd_Ex6V9gXA", "review_id": "m2DZbEyRue24jfUrk1l6vw", "stars": 3, "date": "2012-04-23", "text": "No way around it: this place is overpriced. From the menu prices to the plate-splitting charges to the extra ingredients to the sides. Food itself it good not great.\n\nBlue Burger confirmed to me that they use specials and happy hours when they first open to generate traffic, but take them away once they hit the critical mass they want. So don't get to hooked on anything you like about these places.", "type": "review", "business_id": "YUV08PQk7Vk96r9Q0b3XAw"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "xs_fnNe0hofd7ZOupCjesQ", "review_id": "IMcD-Py6d6YlZVpiGo4vFA", "stars": 4, "date": "2009-04-17", "text": "Okay...I have been going here for a while and I love the place and the food! I am surprise it hasn't had as many reviews as it should. The truth is I come back to support local businesses in my neighborhood...I would come here anyday than go to a Fast Food burger joint..\n\nThe trailor that the restaurant is in is the cutest thing you will ever see...straight out of a 50's picture! Its small but fitting...\n\nThe food is very fresh..I love their cheeseburgers and hotdogs..I sometimes even get some of their mango salsa/chutney on the side..they get it from this lady that homemakes it..\nNot the cleanliness place but I guess thats what makes it tastes so great!!:) Its the extra grease...I know that just sounds horrible, but true!\n\nAnyways, support locals and their businesses...go go go!!!", "type": "review", "business_id": "tb24fvNJfHhyKEXkKn12Xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "LcWp2WChE9HpqdMEM8D2VQ", "review_id": "FUQ-lJndG7xgxLrEFX-u-g", "stars": 5, "date": "2010-02-07", "text": "Expect no com TAM-foolery here....this joint is serious about their broken rice business! \n\nEndless options of different broken rice (aka com tam= deliciousness) dishes which typically include shredded pork and whatever type of meat flavors your fancy, all within your $6-10 wallet budget! Service is prompt and efficient, menu is ez to follow, focus your energy on the broken rice dishes; thats what theyre known for. \n\nI highly recommend the shredded pork + pork chop + steamed egg combo that comes with a light pork broth on the side. The portion is HUGE and each component of the dish is so flavorful and unique, bringing together a fantastic symphony for your palate. My personal favorite is the steamed egg; there's just something about the soft and moist texture that compliments the broken rice. Go easy on the fish sauce (ngoc mam) they give you on the side (try adding Sriracha to the sauce to add some spice in your life), the dish is by far no means lacking in flavor/sodium. All at a pansy $5.99, I could really eat this all day...everyday!", "type": "review", "business_id": "3H2ttTM2aSIaZ6FTjHwDQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5y0N0fTEg_ZGEGDGzzRTdg", "review_id": "Wlz_WpSO5aKXL8LIMYWHVA", "stars": 4, "date": "2011-07-07", "text": "I must say that for awhile now I have stayed clear of Subways because of the smell inside the restaurants making you smell just like it when you leave but ....\n\nI am completely impressed at how clean and non smelly this store was compared to the ones I've visited at in Alaska. The employees are freindlier and they didn't pile my pickles in one spot or squirt a huge blob of mayo in a particular spot! \n\nI'm not quite sure the names of the 2 guys working tonight but THANKS! I am now a fan of Subway again :-D", "type": "review", "business_id": "4t-W81Tpt1OER_p3mIgMDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nEL-_kLeN37CSR9fXFY4zw", "review_id": "-gldZntaKQdMeSIqQQJZBg", "stars": 4, "date": "2012-02-21", "text": "I dabble in vegetarianism/veganism here and there, and this place is awesome. This is a great restaurant for people who are not vegans/vegetarians and want to try it, or think vegan food is \"weird\" (in the words of a friend). Everything here is flavored so well, and the dishes are delicious. I love all the apps, and have tried several of the entrees and thought they were all pretty good. They also have a fabulous selection of creative drinks. I hope this place sticks around for a long time, since it never seems to be busy when I go. The staff is very open and friendly and knowledgeable about the food, so never hesitate to ask if you're unsure about something!", "type": "review", "business_id": "u-nMW__EKMYH_PVqacYc3Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "31tjiU793jocP_DKwn1V8A", "review_id": "-AIz2AvqHlnSNyD8O6cIVA", "stars": 2, "date": "2010-02-16", "text": "Uhhh...These are supposed to be carne fries? \n\nASU boys think that these are the best carne fries. Me thinks not. The carne fries consist of boiled meat AND the order is wrong. It's supposed to have the guacamole on top of the sour cream on top of the melted cheese over the meat, but they just dumped the boiled carne asada on top of the sour cream. I told some ASU boy about this, but he said that I probably had a different person making my carne fries the wrong way. What a disappointment, but I ate everything anyway because I'm fat like that. hahha", "type": "review", "business_id": "mQ6_slsCd8-c8WFNtESnqw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "8MiqqY2vjEmcBgA3btVnUA", "stars": 3, "date": "2011-10-03", "text": "After reading Lindsey's review, I had to think twice about my original review of this place. Yes, I had been back and gave it another shot.\n\nYes, perhaps, I was a bit douchy in my prior review. \n\nThis place is definitely a great spot if you need a quick lunch, and you are on the go. Its a fairly comfortable place to eat, and it's better for you than a Baconator (although, that does sound delicious right about now).\n\nThey tend to water down their Sriracha, but it might be more of a heat thing rather than a cost cutting thing. Sriracha can be a bit spicy for some.\n\nThe spicy chicken bowl is the way to go. Try it. Don't listen to my old review. I was probably having a bad day at work.", "type": "review", "business_id": "2E5iuTckRcbtJm2pC1tIlQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "kkUvJK-Y-Jb7nWjnTRZFVA", "review_id": "nXZtrJbq5QbSryV8KvE_jg", "stars": 4, "date": "2010-02-11", "text": "Ringo is a tri color beagle. Ringo loves the dog park. There are so many dogs at chaparral he can run around with. The park is really nice, a big wide open space and is kept pretty clean. They have an active dog area and a passive dog area. We start in the active dog area and Ringo can run and get all his goons out, then we opt for a nice cool down in the passive area. Ringo likes to sniff small dogs. During really busy times when there are a lot of dogs Ringo can get intimidated and has trouble finding a crew to fit in with.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MBLcbQ_miC1c11cfXQRKoQ", "review_id": "yHwQM9UtZ4lkMMEeS6ak8Q", "stars": 4, "date": "2010-06-26", "text": "Had a very delightful meal here the other day.\n\nI benchmark all Chinese restaurants by their potstickers. These were delicious and not deep fried. They were more toasted than anything.\n\nThe mongolian beef was delicious. Good quality, nice spicy flavor.", "type": "review", "business_id": "yOYFhiTjT-SM4spKtDk92w"} +{"votes": {"funny": 9, "useful": 8, "cool": 7}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "J1q-zeAespG5YRRSxalSfQ", "stars": 3, "date": "2010-08-23", "text": "Somehow while attempting to write an update to my original incredibly witty Sprinkles review, I edited the original review in error, resulting in the loss of my original incredibly witty review, worthy of many UFC's. Now my 18 fans are stuck with my incredibly less witty new review.\n\nBelieve it or not, I actually had not been to Sprinkles in well over a year. Unbelievable, I know, considering I live close by. Maybe that says something. Something along the lines of I'm not really anxious to pay more for a single cupcake than it costs me to make a dozen or two at home. But what do you do when it's August and the thought of adding any more heat to the kitchen just won't do, and yet you really need a cupcake? Well, you go stand in a line 12 deep to pay $14 for 4 cupcakes.\n\nI've been to Sprinkles maybe 4 times now, and they've been pretty consistent. I do like their frosting, but I find the cake to be somewhat dry and flavorless IMO. And I'm always surprised by the line here. Are people that much in love with Sprinkles, or is it that most of the population is not able to read the directions on a Betty Crocker box? I'm not saying Sprinkles is bad. It certainly has its place in my life for a cupcake fix, particularly when I know if I make 12, I'll eat 12. But I wouldn't go so far as to say I'm a fan. Unless they lower their price to $1, then I'll be their biggest fan.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cFC35FulkCpmFlVrhK8iHw", "review_id": "-EddE6xa2YBdiBllClqZ7w", "stars": 4, "date": "2006-02-09", "text": "A perfect way to top of an exotic shopping experience at 99 Ranch. The Taiwan Express has photos of many (not all) of their dishes. Very authentic. \n\nAlso try some shaved ice for desert (brought me back to Singapore!). My kids love the shaved ice, though they are more used to Asian foods than most kids. \n\nNote that the Buffet section (to the left) is better than any mall food courts, and may be more tame for some taste buds. \n\nAND - in between the buffet and Taiwan Express you can buy a whole roast duck for about $12.50, which they will cut up for you. Be sure to buy some Plum Sauce (elsewhere in the store) for a sweet dipping sauce for the duck (yummy!).", "type": "review", "business_id": "Bc5bgPG1MlTc75G0A-_7fg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "_GVAV2LjUWEs9fGjslex_A", "review_id": "FpH5-puFe_Bacmfua5oQZQ", "stars": 5, "date": "2011-02-28", "text": "Woo Hoo! Little Caesars opens in Fountain Hills! Yummy pizza.", "type": "review", "business_id": "YjURbuHKIAQrwQKE8jxszQ"} +{"votes": {"funny": 1, "useful": 6, "cool": 1}, "user_id": "qm5xGd3d47RfLWib0ryMAg", "review_id": "8OarB7g8DhPLtdG9qrgXFQ", "stars": 5, "date": "2008-07-09", "text": "Covet is an excellent clothing store.\nIn Arizona, there is almost nowhere decent to shop. \nunless of course you loooooove Juicy Couture, in the event of which, you should probably not even bother reading this review, because this kind of fashion forward clothing won't appeal to you. \n\nAcne Jeans? check.\nEndovenera? check.\nKsubi? check. \nNike? check. \n\nCovet starts off with an excellent men's shoe section, \ncontinues with an excellent men's clothing selection, \nand finishes off with excellent women's wear. \n\nIt really is a shame if you haven't been to Covet yet. Do yourself a serious favor and support a small business at the same time.", "type": "review", "business_id": "XqrgB_gIXDQQ2NLukgqD3w"} +{"votes": {"funny": 4, "useful": 3, "cool": 1}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "ukSAApxk4-vjK1Jt6NXRgg", "stars": 1, "date": "2009-04-19", "text": "Boy is the name a temptation.Seriously :) I'll try to be fair though but I'm writing at a time were this restaurant was truly life changing. So much so that I'm buying a dining room table, additional gear for the kitchen and not frequenting any chain while I'm in my hometown based on the strength of this experience. Even in a good mood this place wouldn't be breaking a 2.5 . I'm not in a good mood. \n\nTexas cheese fries. Pretty tasteless,mess of uncrisp steak fries that are meant to be Monterrey jack , cheddar and bacon. Either the cheese mixed itself together really well or that's not what I had. Bacon , mm that is a very generous term for the toe nail clippings of meat that ended up atop it. Saving grace was only ordering 1/2 an order.\n\nKid's meal. Holy crap dried and scraggly carrots accompanied the most basic hot dog imaginable on the most generic bun. No refill offered this time on drink, no straw either. By far the most cynical kid's meal I've met. Sure make a profit but don't take the piss! Fresh carrots are not hard to do , with white film on them.. sorry you've just earned a 1 star. Should have walked out, didn't. :( \n\nEntrees.\n\nCajun steak . Claims to be marinated in spices that I couldn't find. They may indeed have shown them a picture of the process in the recipe but I couldn't find it. Meant to be medium rare but was medium on one side , rare on the other, close though:) \n\nSirloin steak. Cooked as requested , a bit over seasoned. \n\nSides: Twice baked potato. If you ever want to open up a salt mine these guy will do it for you. You want an idea of what it's texture was? Twice chewed would be a better name. Warm vomit with bacon bits would be a slightly more colorful, and chunky, term.\n\nFried onions: came with whatever was stuck to the grill they came from.The mushrooms were the only thing that were as tasteful as expected. They looked very consistent though, canned? Never mind they were edible: \n\nSteak soup,really more a stew,but tasted pretty good. Overall service was ok'ish but walking the kid to the toilet twice the staff just seemed to want to get to where they wanted to go and not care for the toddler walking up the aisle to the restroom in front of me. ( that's for this occasion only , past two times it's been great fun for the kid,)\n\n1.5 rounded to 1 for the carrots.", "type": "review", "business_id": "Rx9WPIaYCBquFBC563RjYg"} +{"votes": {"funny": 7, "useful": 5, "cool": 0}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "COXIY5Om_HoDABhaZ-30UA", "stars": 3, "date": "2010-04-03", "text": "I'm not a woman and I don't read People magazines at the gym so I'm not sure I'm really the qualified demo for this place. Nonetheless, in spite of all the hype and hyperbole, it's a good cupcake. When the Olive Oil Vanilla Cupcakes from the Olive Oil mill are too far away, this becomes the cupcake backup. Especially the vanilla.\n\nI'd give this place a better review but I don't because I consider the cupcake to be the \"Rodney Dangerfield\" of desserts. Too many far better post meal options come to mind before I'd waste my valuable calorie allotment on a cupcake.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "_LEQt7oTVjiaXyVHK_MM7g", "review_id": "JiWZ9SA-Z67pgWOs3P4mpg", "stars": 1, "date": "2009-04-14", "text": "When I was in highschool various clubs used to sell Karsh's bagels around campus to raise money. I would buy a bagel and cream cheese and hide it in my backpack to munch on during class. Soooo good!\n I was feeling nostalgic one day and decided to pop in for a bagel and cream cheese. \nThe guy behind the counter was nice enough, I told him my order which came to $2.95 or something just barely under $3. I had failed to notice the sign which said they do not accept credit cards for purchases under $3. I apologized and said I didn't have any cash and offered to run the the ATM. The guy behind the counter very nicely asked other lady behind the counter (the owner? manager on duty maybe?) if she would let me use my card. She looked right at me all stink-eyed and said \"No\" and returned to what she was doing. No apology, no \"I'm sorry but there is an ATM at so and so....\" Very curt. \nThanks a lot personality plus! I will not be returning and I hope you choke on a matzo ball. \nShame too, I loved those bagels.", "type": "review", "business_id": "vaqmESluryt5i4Wbkb6KRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "N37cYLoF_BQf15fcid35lQ", "review_id": "vuC4L-2V3uxoto--Dz3XOQ", "stars": 4, "date": "2010-06-04", "text": "Nice spot, with a friendly staff. The sandwiches were very good, and the ingredients all tasted very fresh. The lady at the counter convinced me to try the cookies, and I was not disappointed. Oh, and of course, try the cider, it's no joke. Mmmm.", "type": "review", "business_id": "zw2iJahOnSxlzmRlF4al6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z-JC1S58qaW8WNiOzUh_TA", "review_id": "kw2u9SdTElQXJBNHKJde2A", "stars": 3, "date": "2010-01-29", "text": "As good as it gets for Chinese food in Surprise right now.", "type": "review", "business_id": "mjoxSQR7bFQtlIIjfNfaSQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "fWZirQBj1A_30Y2Jp9fJVw", "stars": 3, "date": "2012-04-09", "text": "This would actually be another 2.5 Star experience but I went ahead and rounded it up to 3 stars since I am in a good mood. We came here after going to Chelsea's Kitchen down the street which was super packed for the night. I easily get annoyed with complementary valet parking because I hardly ever carry cash and feel weird if I do not tip the valet boys and girls but I digress....\n\nThe concept and look of this place is really fun and different. I felt like I was in a modern barn. We walked in and put our name on the list and was surprised that it is all done by an i-Pad and you receive a text message when your table is ready. Good thing the bf and I remembered our phones or else we would have been out of luck. The wait wasn't horrible. We went to the bar and got a couple of glasses of wine, the bartenders didn't seem really in a hurry to help us which got me a little annoyed.\n\nWe were seated in a cozy, and I mean cozy 2 top table right in a main traffic way. My bf and I are not big people and felt uncomfortable in the size of the table. I know you want to pack a lot of tables in a small space but at the expense of the customer? Our waiter was friendly enough but not as friendly as he was to the group of women that was seated next to us.... nothing like treating all your tables equal huh?\n\nWe ordered an appetizer, the zucca chips, which had a decent flavor but were a little burnt. We ordered out main dishes which were a chicken dish and their version of spaghetti and meatballs. The wait for the food wasn't bad either but I hate when you as the customer have to ask for a wine list because your wine was empty for 10 minutes but the waiter didn't ask if you wanted anything else because he was focused on the table of 5 women next to us sharing an appetizer. \n\nI had the pasta and meatballs, which was me'h. The pasta was a little mushy and the meatballs really didnt have much flavor. My bf had the chicken dish with spinach which he loved! All in all the experience wasn't bad but wasn't good. Maybe they are still working out their kinks but this place probably won't be high on my list to return any time soon!", "type": "review", "business_id": "CSoURupWEyuyzkjMOExKPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YsTdL5RgU0qHHlsyFwDAaA", "review_id": "f1nRsYO1mmqg4NgB1unshg", "stars": 5, "date": "2011-12-07", "text": "Love, love, love! Service is always fabulous and every dish has been perfect. The local cheese plate and AZ wine selections are amazing. I think between the 5 of us we have had everything on the menu, and it was all delicious. This is my fave place in the country right now. Can't wait to go back over the holidays!", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "hSGAiCRmKSuNIuSsRq0nAQ", "review_id": "GG4crhXGZFSwSzpA52rt9w", "stars": 5, "date": "2012-01-25", "text": "This place pushes out some delicious food, Red chile burro with rice and beans is better than any I've had, and their Nachos are soooo freaking cheesey and good you'll want to order both for one sitting. Unfortunately only outside seating but cool art work on the building to enjoy while eating and don't be discouraged by there greedy practice of charging for extra hot sauce. But of all things to remember make sure you bring cash the place can't afford a card processing machine which is a good thing other wise I'd be there too often and a fat face looks weird on me", "type": "review", "business_id": "I20sRbcEK8Ib1YFQFMoERg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "CYXxynHL7F7kIdcQzWSxkQ", "stars": 4, "date": "2012-03-18", "text": "If you love pickles you'll love Old Town whiskey. We've been here twice so far, and both times, we've been very pleased. So far, I've only tried their pickled beets and pickled cherry tomatoes, but both were absolutely fantastic. The Cherry Tomatoes were so sweet and sour, they paired perfectly with the ricotta, olive tapenade and Crustini they were served with. This place is a gold mine if you're a whiskey drinker, my hottie loves some good whiskey and was really impressed with their selection... not to mention he said the burger was probably the best he'd had. I can't wait to get a taste of their Veggie burger, but I haven't gone hungry enough yet... Next time for sure! We went for Happy Hour this past Friday, and they had a lovely Agave Fizz cocktail on special, very refreshing. Their Happy hour is progressive, meaning that everything is $5 from 5-6, $6 from 6-7, and it runs every day.", "type": "review", "business_id": "qyqOfpsAC5ooVROm7fB0jQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mc5mitfrreuuf7eMe404Kg", "review_id": "5L2eDzr_eXI15l79i_3FnQ", "stars": 1, "date": "2011-10-16", "text": "First off, the restaurant is dim and dark.. I thought the decor was a little off because they were going for a tropical Vietnam theme with banana trees in there and a waterfall fountain. The waiter there did not have a smile and didn't seem freindly, it looked like this was the last place he wanted to be at. The service sucked ass. I mean come on, there was only two tables including mines and 3.9/4 of the time, he didn't check up on us or refilled our water and we had to walk up to ask for our bill.. like seriously...? Are you that lazy. Bun Bo Hue was skimpy on the meat and had little veggies on the side. Pho had a rancid smell. Noodles in my sister's bun thit nuong were hard and watery (seemed like they were super old) Overall, I wouldn't recommend to ANYBODY.", "type": "review", "business_id": "ESjWCcBpMeiRsvMYXWgdgw"} +{"votes": {"funny": 4, "useful": 5, "cool": 3}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "OjUCE0pCYjxgm8MkuLASjQ", "stars": 4, "date": "2008-04-28", "text": "It's brand new so it doesn't smell fishy yet. It will soon just like all other Asian markets.\n\nLooks like they will have another place to eat inside but it's still under construction from what I can tell.\n\nThey have Durian, I really want to try one because they are supposed to be so gross and stink to high heaven.\n\nBanana blossoms? How would I cook those things.\n\nFood is divided into \"Regions\" so if you want Japanese noodles you go to one isle, Korean noodles in another isle etc. It's a bit confusing but fun to look at all the different stuff.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GYUM5OpAH_7pJsvN5lw7wA", "review_id": "oYwffOl6EfzAqzCf6d_B2A", "stars": 4, "date": "2012-07-12", "text": "This restaurant = a great experience. Everything about this place is fabulous. The server was extremely attentive, the food was fresh and delicious, and the intimate yet casual ambiance is to die for.\n\nENTREE\n\nFor starters, they do put a rather unique spin on the typical 'chips and salsa' that's brought out to you in the beginning of most Spanish restaurants. They bake corn tortillas until their crisp and serve that with an interesting array of dips: black bean, salsa, and a tray of salt, limes, and hot sauce to stir in.\n\nI ordered a simple entree of carne asada tacos and black beans; my meal was yummy and filling, and I even had leftovers. Beware of spicy when choosing your dish, however. My coworker kept complaining about how hot her meal was (beer battered fish burrito). I don't know if she has sensitive taste buds, or if it was really spicy.. so proceed with caution.\n\nDESSERT\n\nThey have a wide variety of entrees, but unfortunately only have 3 sweet options. I'm a BIG dessert person, so it was a little disappointing but what the heck. I ordered the flan and it was scrumptious, incredible, delectable, etc.. all that good stuff. My coworker who complained about the spiciness called our dessert 'sexy'. So I guess sexy is the best way to describe it's caramel drizzle and chocolate bark yumminess.\n\nAMBIANCE/SERVICE\n\nThe waiter was incredibly attentive and friendly. He answered all questions we had, and gave speedy and praiseworthy service. The manager even came up to our table and made conversation; that, to me, is always a plus. The background music helped add to the overall appeal to the restaurant. \n\nI would definitely go back to SOL. Maybe tomorrow..", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sbNbxmGNodDJukgSXBFD4Q", "review_id": "qdmWiBaolhOnibLQh5W_Gg", "stars": 5, "date": "2011-07-08", "text": "My husband and I have been going here for a few years now. It is one of our favorite places. Really low key, affordable, amazing food! Between the 2 of us our bill is never more than $10 and we are always stuffed! I love how casual it is and the humus cannot be beat!", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "tQ5wiJ9TGUbmIqnO4-njWg", "review_id": "9XXSiKeqHm_Ey2owLZD-fw", "stars": 2, "date": "2011-03-29", "text": "The caramel ones were heaven on earth, but I agree with the other Yelpers that the standard brownie is on the dry side.\n\nI still have quite a few flavors to sample, but from what I have seen so far, they are not worth the price point.", "type": "review", "business_id": "E2F25cRcYf_bWtvbCht0EQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 5}, "user_id": "Ti86eeLrIhpNHDpjbla_fA", "review_id": "v6IC6e8S8R8-y_VpMTBG5w", "stars": 5, "date": "2012-05-28", "text": "I came here after receiving a free pizza at a Yelp event. Upper Crust had some of the best food at the event so I couldn't wait to have dinner at the restaurant. \n\nMy friend and I came here on a Wednesday and were pleasantly surprised it was 1/2 off a bottle of wine day. I can't remember exactly which wine we ordered, but it was a Shiraz and it was good. We shared a happy hour appetizer of mild wings and a large pepperoni pizza with basil. It was all so delicious! \n\nI also came here a different day with my boyfriend and we shared the meatballs with cheese on top and a large pizza with pepperoni, sausage, and basil. Again, it was very tasty! \n\n Everyone was very friendly and prompt. I will be back to Upper Crust!", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kk05snSafuIFK0lsxoMNzA", "review_id": "ruts-VngHxeB83K_t-_TdQ", "stars": 5, "date": "2012-04-17", "text": "Yes it is bad for you. Yes it is delicious. Great customer service. Clean, fast and predictable.", "type": "review", "business_id": "XJc9Ueb3avGpYaj5Ll92hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "viMBWEgaZ0gSUpre0W8rhA", "review_id": "forp4jF8zgMhcR9Zd6X1TQ", "stars": 5, "date": "2011-07-05", "text": "I love pita Jungle! Everytime I am in town, I make it a point to get here. The food is fresh and healthy(ish). There ice tea comes in a variety of wonderful flavors and is so delicious. I would recommend you eat here, especially if you like yummy food with a medditeranean flare.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n6LeAoIuDR3NfIBEsmL_zg", "review_id": "y9adq0MRVQmSxP7eiRWBYg", "stars": 4, "date": "2012-07-08", "text": "This place is busy, had live music in the bar, and the servers were trying to squeeze by. The seafood is flown in DAILY and I think our bill helped fund a grouper or two's first class seat. I ordered the grouper with crab on top (as an extra- you can ask for it this way). Ordered the lobster mashed again, and green beans (if it ain't broke- don't order something else.). Had a great night!", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_k1lZP9bVrmIYpfwLLtZZA", "review_id": "xis6VjTNGFiEYbZkrehz1g", "stars": 5, "date": "2012-08-10", "text": "I love the girls there. I get my eyebrows done every two weeks and I get my nails done there as often as I can. Recently, I just did the gel nails (just the gel polish not like the fake nail stuff) and I LOVE it. I can't tell you how happy I am that I did it. I always just did my toes because I'd always manage to goof up my fingernails in the first hour after I get them done- but with gels, you can't do that because after they're put under the UV Light, they dry immediately. No goof ups! Plus, they don't chip. The lady said they'd last around two weeks. I'm so happy with them. It's been a week and they still look pretty good. :)", "type": "review", "business_id": "XD7hxupuU3kkid0tqsD1nw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MZ2xyaW-hMOUzpUcHAUatA", "review_id": "Lp9eZPwIOq5SJw--9Ee0Hw", "stars": 4, "date": "2012-06-22", "text": "I've been hearing good things about this coffee house in Cave Creek so when a friend suggested we meet there I was all for it. Easy to see furniture store Big Bronco and Janey's is behind it. Very good coffee and I'll come back to try the food. Comfortable place to just hang out.", "type": "review", "business_id": "gZ3GVh4aER2q6_UdA6fTKw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "U_fAIe7CUaGMejwSdNvMgw", "review_id": "Sc6Y_tCh0nBfuTkrCY7w3g", "stars": 5, "date": "2012-02-14", "text": "An oasis of little kid fun in Phoenix, we hadn't been in over a year and came for a birthday party. They're always running a deal, so look for one before departing. One year we did an annual pass. It was a good deal. There are also lots of special events that include deals. One time we met spiderman.\n\nThere are lots of rides, mostly for shorter kids. Some have modest height requirement that exclude the very young and some that exclude the tall. There's a train, carousel, mini-coaster, tea cup ride, an up and down parachute ride, several rides that go in circles in different vehicles (e.g., planes, cars, and helicopters and futuristic flying machines), and a bumper boats ride that turns into a splash pad in the summer. Determining whether the adults need a wrist band or tickets is always a little tricky as adults are needed on some rides, but not others, and it also depends on the age of the child. The place has a little bit of a rundown feel, but kids don't notice and have loads of fun. The arcade is really rundown, but the ATM is really nice. There isn't much shade, so be prepared. All of the staff are really nice.\n\nThere are usually a few game and art vendors about: ball toss game, sand art, and/or face painting. All are a big hit with the kids, but also hit up the wallet for a few bucks a piece. Everyone is a winner at ball toss, by the way.", "type": "review", "business_id": "8frfhwRITfgjLaDBueU8iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bc1BST38H04S7wvL1SRniw", "review_id": "ZRkT5HbMisTWsVlcRLYUSA", "stars": 3, "date": "2009-01-22", "text": "This place is old but the food is good. The compliments arent that great...such as the basil and bean sprouts they give out. Their soy milk is made fresh and does not come from a Yeo's can.", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 8, "useful": 12, "cool": 13}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "vus5QnNLxuB7mqG6iqBFqg", "stars": 4, "date": "2009-05-24", "text": "My daughter and I sort of stumbled on this place a couple of weeks ago. We were at the Ulta just around the corner and she said she was hungry and she LOVES pizza. We have been here twice as of this writing. The second time around was \"Kids Eat Free\" night. That is Wednesay for those of you with kids and it's a good deal. I will eventually put together a list of Kids Eat Free places in the area. For now let me tell you about NYPD.....\n\nThe pizza is a winner! Nice crust, great topppings! They use paper thin slices of sausage instead of hunks of sausage. The flavore is great too. My daughter had a slice of black olive pizza and they were very generous with the olives....she loved it! I have had the ceaser and the house salads and both were good and fresh. \n\nSo for the Kids Eat Free night adults need to order an entree (I think this includes a whole pizza too, not sure though) There were several things to choose from including cheese ravioli, baked ziti, and lasagne. I chose the lasagne and it was delish! Piping hot with melted mozeralla over the top, I could not stop eating it!! The flavors melded together nicely and it reminded me of my Mom's lasagne. And did I mention the bread......OMG!! The little ibites of heaven are sooooo good!! I could have eaten ten of them!! They are homemade, the real deal, yeasty goodness!! Warm and just a little chewy, the flavor was amazing!! \nOh and the Desert Flower Ice Tea.....so refreshing!!! I keep thinking about it, that's how good it is!!\n\nTry the canollis.....you won't be disappointned. Kids get an ice cream sundae with their meal. On our first visit Lori, our server, was a real sweetheart. She gave me some coupons and signed me up for the email list. And on our next visit , Jessica was awesome and attentive too!\n\nThis is a small place but they also have an outdoor patio with misters. The bar is tiny, probably seats 10. Flat screen for watching the D'backs and some good beers on tap, along with Happy Hour specials makes this a great place!! This will be somewhere we will frequent!! Thanks NYPD!!!", "type": "review", "business_id": "TqHTtjPANCBKGsjGBjDoQQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "YMB29SPB8Z_a2be4O5gxOg", "review_id": "Pj5H3WucndmksGmc2Nwbqg", "stars": 4, "date": "2008-03-20", "text": "Another wonderful little counter joint. It's extremely basic, no frills, and cheap. The baklava isn't fabulous, but everything else is worthy of a special trip. Once again, the chicken shawarma draws me in, though I'll occasionally force myself into breaking out of that far too predictable mold (for falafel since I truly am stuck in a rut). The hummus is great. As mentioned, the salads mainly consist of iceburg lettuce, but they are not stingy with the feta and the dressing is amazing.\n\nThere is night, semi-scrubby outdoor seating and the drinks are bottled or canned. Last year I went with a group of friends for Valentine's Day and there was a musician who was slightly too loud for the environment. When something special is going on, the owner comes around and checks with the patrons to verify quality and whether or not the activity is enjoyable. This is always a nice classy touch for a little dive.\n\nIt's a rarer occasion that I find my way down there. Let's be honest: I only go that direction for SMoCA, the Venue of Scottsdale, and EZ Tattoo. It's not generally \"my scene\" and it's definitely out of my way. Any time I find myself doing something in downtown Scottsdale, however, dinner at Pita House prior to the main event is an absolute must.", "type": "review", "business_id": "kfveMaYeaqGVNHPitT4O9w"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "36LZ2UOhAwa8p-nyQgbN5Q", "stars": 3, "date": "2007-02-15", "text": "If you have been to one CPK, you have more or less been to all of them. I went through a stretch when I really liked it here and I still don't mind it, I guess I just don't get excited about it anymore. \n\nThe BBQ Chicken pizza is my go-to but the Thai variations are tasty, as well. The appetizers are ok, the service is ok, but it all just seems a little played out to me. \n\nI am waiting for CPK to make some moves, shake things up, add something interesting to the menu, because I feel like nothing has changed there since 1992. \n\nI'll still drop in from time to time, but I won't be as excited about it as I used to be.", "type": "review", "business_id": "ut-kla-EA23nJOij_dcL0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CoO7q1yFPVy-nRqPOYLglA", "review_id": "3X3r3YglV-zmp9hKV3KFkQ", "stars": 3, "date": "2010-05-02", "text": "I would give this place 3.5 stars. The service was excellent and the view of Pheonix at sunset was nice. I ate the wedge salad (nothing special) and the chorizo mac and cheese (yummy). The highlight for me was the pudding trio, the honey date flan was delicious but the portion was small...which led me to savor every bite. The other people in my party were satisfied with their food and there were no complaints.", "type": "review", "business_id": "4waggbCK-MSE9dbIdSMfPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FvSVsGNKBgQdQt-MYP3Kxw", "review_id": "wFQkyr7hXMHV1RbN4olXYA", "stars": 5, "date": "2012-11-24", "text": "Took us a while to find a good Greek restaurant. We have been here many times and have yet to have a bad meal.\n\nGyro combo this trip. Meat was very flavorful and great texture. Tzatziki sauce is one of the best I've tasted.", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "CpvQD8CxglFO6KhqX-MFAg", "review_id": "QWG4gF5yc0frf48XvPpn-g", "stars": 5, "date": "2012-06-01", "text": "Sushi ken I love you so much, I don't even know where to start! It's about time I write a review. This place in my opinion is the best quality for largest portion size in the valley.\n Let me just say now that if are one those people who A. Like California rolls B. like spicy whatever rolls C. Want to go somewhere trendy and have sake bombers then this is NOT the place for you, please just don't come and spare me your stupid review, just go to Ra or Stingray or somewhere like that.\nMy husband and I eat here a least every couple of weeks, I feel like the staff is our family. They are very nice and polite. A lot of families here, restaurant is decorated simply. \nNigeri and sashimi are very good. UNI here is amazing! Yellow tail belly is awesome also love the seaweed salad.\nFrom the regular menu I love the yellow tail Kama and the cold soba bowl.\nI also really like that they are open 7 days a week pretty late since most places in AZ close at like 9.", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CuzADeE8rkYwiWrIxTsNGg", "review_id": "dHD67wPzULlH3LIh66mwAg", "stars": 5, "date": "2009-07-03", "text": "Best BBQ ever. Go here and thank me later.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tKgDgXSkOklBb9tQVGkYhQ", "review_id": "hBOlBUtar9KmyF7SjioTtQ", "stars": 4, "date": "2012-05-07", "text": "Surprised to have a good sushi place like this in Fountain Hills. Can get expensive, but eat in or take out is always great. Fun to mingle with the chef while making the sushi.", "type": "review", "business_id": "mnJHxPTbAxhueeuh76ePZQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "xTNGA-ZJ8oYS0zA5_dla7g", "stars": 3, "date": "2008-08-04", "text": "On my way to the Airport, I decided to stop at Ted's for a bite to eat. Being that I live really close to this place, and have never tried it before, I thought this would be a prime time to check this place out.\n\nWell, it was alright. Nothing special on the interior, and even though I was not blown away by my experience here, I really did enjoy myself. We waited in line, and I ordered a jumbo beef hot dog, with Chili. Austin got a sausage, with some of the fixings, and fries. We both liked it, and I plan on returning again soon. Pretty good!", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zMhkzu9VXFULKQ8YCCsDVQ", "review_id": "YHvP_RM3pvYXbGRH-k0a3Q", "stars": 4, "date": "2010-04-25", "text": "Excellent service. Easy to access. Dessert is amazing. Husband loved Salted Butter gelato, I loved the cherry. he always loves his fish entrees here. I eat very unsophisticated so finding anything here on the menu is hard for me. I tried a pasta last night, it was salty and boring. \nI still recommend this place for people with grown up tastes.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V1_3yModtZm-WmHs1zbc7g", "review_id": "_RukVw-RgOuGGHo0j9Sn5A", "stars": 1, "date": "2011-02-02", "text": "We went to American Junkie after we found a 50% discount from http://www.restaurant.com. They couldn't pay us to go back.\n\nIf you like velvet ropes, not being able to talk to the person next to you because the music is so loud, and being around people who are really into themselves, American Junkie is your spot.", "type": "review", "business_id": "-9pVS__IliMA2aNEYzrQrg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uK9Oh-IgPT4MOCJ69KSRSg", "review_id": "cFQ37IRUM5OXjzUUFJEqIw", "stars": 4, "date": "2012-03-29", "text": "The food here is amazing! So full of flavor, not fat. Healthy, and delicious! Prices in the 10 range for a salad, and 20 range for an entree'. The resturant is very loud, because they are always busy. The chairs are too small for my hips, making it uncomfortable to stay very long. Oh well. I suppose they expect, if you eat here, you must be a size 6.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wysB0lvlJuSBwUAerJqjJQ", "review_id": "wR7N0nfzWLXY2s05BuYTuA", "stars": 4, "date": "2012-04-07", "text": "I'm on a low carb diet right now, so I had to pass on the pizza, unfortunately. I was expecting to order a house salad with chicken. When I told the server my diet limitations, she suggested a side of meatballs for about $4. It was perfect. I had the smallest bill at the table, and the meatballs were homemade and plenty tasty.", "type": "review", "business_id": "EZ7MD_hOsBZuWEvSjXr7DA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QB49hhSLpPMaZ_rqBjP8uQ", "review_id": "yzVPHvePW7Pe51Sn_mg6mg", "stars": 5, "date": "2012-01-18", "text": "There are many places in the valley and its surrounding cities to eat Mexican food; however, there is one and only La Canasta.\n\nIn the last two years the boyfriend and I have eaten at this restaurant location quite often. For the money, you get exactly what you pay for: a decent meal and generous portions.\n\nThe chips and salsa are ever-flowing and the salsa is some of the best I've tasted.\n\nThe wait staff are generally pleasant, attentive and very accommodating. Plus they frequently recall what you had during your previous visits. I recommend you try the Machaca dinner or my boyfriend's favorite dish, the number 5 lunch special.\n\nThere are multiple locations in the valley, but this one beats them all hands down.", "type": "review", "business_id": "9dn3AMdwvD2KXnTr6AJY1g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rdRJ3gejMIz8pB2zyR24oQ", "review_id": "Y9zRL8O92YetxmUIxSVmaA", "stars": 5, "date": "2009-11-24", "text": "I do a lot of traveling and during a quick trip to Phoenix, I was able to get two classes in at their studio. It was very clean and the people were friendly. I did think the studio was excessively hot my second class but everyone else seemed to be ok with it so perhaps it was just me. \n\nI would defiantly return if I were in the area again.", "type": "review", "business_id": "5EyT-ZbhJR6LwtVaPyE3bg"} +{"votes": {"funny": 1, "useful": 5, "cool": 4}, "user_id": "m7j9e53ycZxjWYBD7rZVng", "review_id": "CLxSYq-bqoMnnnVUL1Pp9A", "stars": 4, "date": "2008-03-30", "text": "It really was the perfect place to start our night. I was with a group of girls out for a bachelorette party and someone in our group suggested Drift. Loved it! It's totally cute, and I love the touristy Hawaiian vibe it's got going on. We had a few appetizers, a round of drinks, and a round of shots. The appetizers were simple and nothing spectacular. The drinks and shots were pretty good. Service was hit or miss. Our server was pretty attentive at the start but we had to hunt her down when we were done and ready to move on. I'd love to come back to Drift for dinner, the menu looked pretty good and I'd love to try another drink. If anything, I'd like to return to stare at the woman's bathroom again. Totally cool!", "type": "review", "business_id": "o4DsvwwD2kIbF-EM4r9G8A"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "jhNnYjPMfTTai4eX0siMew", "stars": 5, "date": "2010-10-28", "text": "Evil Place!!!\n\nThat's right.. I walked in there and I couldnt believe it. The people were nice to me, asking me if I needed help and by the end of the day, i had a new kitten!\n\nAll joking aisde, I love this place. I know you can buy food and other things cheaper at grocery stores, but I kinda like a specialty store like Petsmart. The staff is great and anything you need they are more than willing to help out.\n\nTo this day I have purchased two cats here and both are still awesome and amazing. The last kitten my girlfriend actually picked up and when I went in there to pick up some food, they remembered which kitten we got. Apparently she was among the favorites that was adopted. \n\nYou want good service and a great place for your pets.. Petsmart is the best!", "type": "review", "business_id": "z7q29LOjWMOy-ryBSeqgjg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "nRWHSp7rtXVPCjHxan_h8A", "review_id": "oempttImeHSIu46FNfAQYg", "stars": 5, "date": "2009-09-07", "text": "I love guerrero's! I worked in Mesa 15 years ago and we did burrito runs here all the time. I'm a huera, but my Hispanic pals all rated this place authentic. It's a husband and wife team that runs it. The best thing are the beans - incidentally, that's how I rate the authenticity of Mexican fare- They are the kind of beans I ate in Nogales during college (at a place I could only locate while intoxicated). Thinner, lighter colored, and delicious compared to any I've EVER had this side of the border. I live in PV now- super far - but after this I think I'm gonna have to take a road trip tomorrow to Mesa! Yum!", "type": "review", "business_id": "0yfN4bdKZfkFSXseB2kOBg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "XwEY9qjfXtdpNbmRY2p_bA", "review_id": "Mw0NRnvkpaEquVRFCitOmA", "stars": 2, "date": "2012-10-01", "text": "I really wanted to like this place, but the service just ruined it. \n\nI went on a sunday afternoon, when it really wasn't that busy. I was sitting directly at the bar and still got poor service. The server walked by probably 5 times while my glass set empty before she made eye contact with me. It was a bit ridiculous. \n\nI feel like the yardhouse had just as many (if not more) taps, with the same prices and better service. \n\nGreat decor though, very tall open ceilings and lots of TVs. Just don't expect good service.", "type": "review", "business_id": "NIuaxYvM_-dzmgGXwPJ1Gw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "33vUIil_GCaT92aUaZhRXA", "review_id": "P3OPFhL_QZAZh7YQBS4Owg", "stars": 4, "date": "2011-09-28", "text": "I love Macy's! My mom & I can spend some serious dough here on just a few tops, but it's so worth it! They have sales often, but it's funny how we always like the ones that are full price. Aside from the women's section, their men's section is decent (bought my hubby some denim shorts on clearance for $20 each), shoe section is just ok, Coach bags are to die for & we love their jewelry section (particularly Betsey Johnson stuff!). My mom has a Macy's card so there are usually great savings when she uses it & they send her coupons all the time!", "type": "review", "business_id": "G2Re2E5Jkv_UF1xrenSsDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "dQrlUUrCdc9heo4bUrFVcA", "stars": 2, "date": "2009-06-25", "text": "I had very high hopes for this place, after the very good reviews Fate got and that Sens has been getting, but I was terribly disappointed. The mango papaya spring rolls were dominated by the flavor of anise/licorice. The shu mai dumplings were so hard, even hard-core Italians would have said they were too al dente. The black dragon chicken was good, but not great. After we left, we noticed the dinner menu was much more extensive, especially without the tapas. Maybe dinner here is a much better experience, but I'm not sure I'd even be willing to give it a try after the lunch I had here. As for the atmosphere and decor - don't even get me started. Talk about trying too hard to be hip. The Vegas-y blue lighting in the bar area, the Northwest coffehouse style old-looking couch in the back, the Asian influence...I'm not a proponent of \"matchy-matchy\" decor, but this was all over the place. Service was just okay, too. I won't be back any time soon.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "qTuisLGKbQCXLlUZUeGciQ", "stars": 4, "date": "2010-08-04", "text": "Want a unique date night? Craving for something to do on your own? Want to have an avenue to express your inner artistic abilities? OK, here you go!\n\nVery interesting concept: Pick a piece of pottery, think of what you would like to design on it, you can draw your idea on with pencil, go grab your paints, brush, sponges, or stencils, and away you go. They will then fire & glaze it, ready to pick up your masterpeice in a few days,\n\nA great place to zen out and leave all your stress and worries at the door. \n\nGood for a keepsake, special gift, 1-of-a-kind conversation piece, or create a memory.\n\n1 star lost for the very annoying and extremely intrusive studio \"helper\" which I will leave un-named. Kinda ruined alot of the experience. I should say that if you need assistance, you can have it, but when you do NOT need it, well, please leave us alone - ie: i f you are in Barnes & Noble, you don't need a clerk to repeatedly come up to you every 10 mins to ask if you are going to buy that book or they read it, or do you want a better suggestion..... ect.", "type": "review", "business_id": "PkG9bV1SvfOydOCCnDUGgw"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "7oMqFG6Su53dtbkVnF80Gg", "review_id": "gSAQ9GMDO-aLL410pd-ThQ", "stars": 5, "date": "2008-10-02", "text": "I love the Superstition Mountains! It is the most convenient place to get away from it all. The last time I was there I hiked Siphon Draw up to the Flat Iron. There were a lot of people on the trail but I still felt like I was in the wilderness. Camping sites fill up fast here, so I would recommend checking out the Canyon Lake area as it is close and a pretty drive.", "type": "review", "business_id": "CTSuvTp8ymqtrM2t0lwAOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "upG0mzEpQFpoSZXRv2pfaw", "review_id": "ca_6nisikghrwKd9w0OAqg", "stars": 5, "date": "2011-07-08", "text": "I have never had BBQ in the South, Texas, or anywhere outside of California (except Bobby Q), but of all the places I've tried, Bobby Q is my current favorite BBQ place EVER! I found this place on Yelp and came here while on a trip to Arizona. The place was pretty crowded but we only waited about 15-20 minutes. We ordered babyback ribs, St. Louis ribs, corn, and mac&cheese. They also give you DELICIOUS AMAZING CORNBREAD!\n\nEverything was excellent. The St. Louis ribs were the best ribs I have ever had. They were extremely tender and had a nice flavorful bark on the outside with dark grill marks. Their BBQ sauce was equally awesome and the kind I like -- a bit more on the sweeter side, less on the vinegary side. The babyback ribs were also tasty, but not as flavorful (and less meat of course) than the St. Louis ones. The sides were good but more forgettable due to the sheer perfection of their ribs.\n\nI don't know if I will ever be in Phoenix again, but this place is a must-return if I ever am. Oh and at the end of the meal, they gave us complimentary, piping hot FRESH cinnamon donuts! That double-won me over. I want Bobby Q right now.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0H9ne5frm1GjO6TjUwbxlw", "review_id": "3sjhgrdp_kF-D-eAyZiQaA", "stars": 4, "date": "2009-02-16", "text": "I was surprised to see that this place has such low ratings on yelp- it is one of my favorite Mexican places in the valley. Favorite dishes include: mini beef tacos, Tapopo Salad (iceberg lettuce, cheddar cheese, chicken, peas, corn, beans, tomatoes and large amount of quacamole under it all), fresh salsa, and Tacos Al Carbon. All freshly prepared and wonderful tasting.\n\nIf you have kids, ask to sit in the blue room by the fish tank - the decor is fun and mysterious and will keep young children distracted thru the entire meal.", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z1tNqF5qJRpibGj-9_r9Ew", "review_id": "FSu-Gq7XZ9gQvGRmDKODog", "stars": 3, "date": "2011-07-15", "text": "This place is consistant with it's good Chinese food. The staff is courteous the place is clean. Want Chinese take out in Tolleson come here. =0)", "type": "review", "business_id": "9x0rvR9SSX5mO1vUqx_hnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WxeD74JGiwjljzHndYSvmw", "review_id": "g_1V2aRQLfu710YdiSVs0g", "stars": 5, "date": "2012-08-10", "text": "I am sad that Lucky's is so far from where we live. I worked near Lucky's last year and just happened to walk in for lunch. My lunch was so good I took a huge meat lovers pie home, which was so good my husband proposed all over again!\n\nThe employees were so friendly and explained that their pizza might take a little longer than normal, but they want to make sure it's right. I loved everything about my visit there, and was able to stop in a couple more times throughout the year. It's about an hour drive from where I live, but the more I think about it, I think we're going to have to go get some more Lucky's pizza. Great neighborhood pizza place!", "type": "review", "business_id": "RT06SJHkloqMvNn1aXdpBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AvjnPmsfQWsUFJ4-M9wI1A", "review_id": "riCVn_XNMpqMMtwint2NKg", "stars": 5, "date": "2011-11-06", "text": "Rarely crowded. 4 tables indoors, many more outdoors. Wifi is usually fast. Only downside is that it's next to a gas station, so the visuals out the window aren't exactly spectacular. But if you care about that, why are you in Scottsdale?", "type": "review", "business_id": "NFloHgUrC5kCTFybx_r-aw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g-lJlj7TNdfoNqtk3r3Ikg", "review_id": "zD3xBirR3eT998BDoJs4IA", "stars": 5, "date": "2011-10-25", "text": "Attended the Pink charity event at the Shade bar. Great time and the scene was fantastic.\n\nNeed to highlight the job that Jason and Halley do with VIP tables. I've worked with both of them twice now and the experience is always top notch. Always ensure that the experience is better than expected.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "9afF31qJRE6AVgEdTFdGHg", "stars": 4, "date": "2007-02-01", "text": "Good food, good drinks, fun bar.\nThere are quite a few Buffalo Wild Wings in the valley and they're a fun place to grab a quick lunch or dinner and watch the game. \nThey have a pretty good garden burger and their buffalo chips (french fry-ish things) are really good. \nIf you like bloody mary's, they have the best one. It's so good...really spicy and filled with celery and olives. \nBe careful when you come though, if there is a game on, you'll have to get there early or you definitely won't get a spot to sit.", "type": "review", "business_id": "trG1k-K6Nq4YKcexa1AGOA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "wLuDGMXytNVTF8ZU2gwUEQ", "review_id": "PKzziDJj5KLksknLXhzJWA", "stars": 5, "date": "2012-01-11", "text": "I can't add much to what has already been said....BUT I'll try, haha!\n\nUm, don't come here without a map, or some sort of gps device (NOTE: some spots in the mountain do not get good reception, so a map on your phone may not always fully come in). It is VERY easy to get lost!\n\nThere are many trails, I look forward to getting to know them better. So far, all I have really done is Mormon Trail and the Hidden Valley Loop.....Fat Man's pass is probably my most favorite spot...OH! AND there are some really cool rock formations on the way there (including a natural tunnel) look for the rock that looks like a big mushroom!\n\nThis is a good area to do a hike in the dark....but don't do it until you've done the trail a couple times in daylight. You can see what seems like the whole valley from up there! If you do the night hike, make sure the moon is full.....you can actually see pretty well with that and the city lights. Plus, it's GORGEOUS! (if you did mormon trail at night, you could start about an hour before sunset, then head back as the sun goes down)\n\nDon't forget water, it is a moderate level hike.....and flashlights would be a good idea too, just in case :)", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 4, "useful": 9, "cool": 6}, "user_id": "zTWH9b_ItSdLOK9ypeFOIw", "review_id": "BCfR-9xzSG3aDCGlV3_pTg", "stars": 4, "date": "2007-07-26", "text": "I'm pretty much in agreement with the previous five reviews. A great way to spend the day when it's hitting over a hundred degrees! It's about a forty-five minute drive from Phoenix.\n\nI went on a Saturday afternoon, around three or so. So, I missed the huge crowds and rowdy bunch, along with the sun at it's hottest point! It's about a two to three hour ride from the shuttle drop off point two to the pick up point four.\n\nRentals are $14/pp, which includes your tube rental and shuttle service. This is the all day rate, so if you get there in the morning, you can go back again and again. It's $10/pp without the tube rental. You can also rent a tube for your ice chest (styrofoam coolers are not recommended as they float away), which is a must as you need to load up on TONS of water and your beverage of choice.\n\nBring along tons of sunblock and reapply often. Bring a hat though because you'll be glad you did when you see all the sunburn faces around you. A few old bedsheets will feel like a godsend on your hot tube, so think about bringing those along too! And bring along a pair of cheap water shoes or old sneakers because it's definitely rocky and you will need to climb out of the river at the end. Flip flops or loose sandals are not recommended as you see them floating on by in the fast current. (Don't be foolish and bring your new expensive sunglasses aka 'spies' to show off because you'll look like an idiot when you lose it!)\n\nAnd yes, the river is dirty - with river grass, pee, marshmallows, every other kind of food possible, etc. But you hope with the quick current flowing, that it makes the water less dirty...you hope at least. And please take your trash with you! (The shuttle drivers offer decent plastic trash bags for free, so please take a couple with you on the river!)\n\nThey require that children be a minimum of 8 years old AND four feet tall before they'll allow you on the shuttles to take you down to the river. It can be a fast river, but also because of the mostly high school and college aged crowd frequently and dominating the river.\n\nIt's open 9 am to 7 pm, seven days a week. The last tube rental is at 4 pm, and lost tubes will cost you $20 each. You need a driver's license for every four or five tube rentals. And no glass containers! Your ice coolers will be inspected before you're allowed to board!\n\nWe're on the lookout for more rivers to float on!", "type": "review", "business_id": "l3WML3zeuotwUHzhbwCj_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sPEFql7fLp0oouFxnooGpQ", "review_id": "AJAd4q49arSXZmaB45KZFA", "stars": 3, "date": "2012-05-01", "text": "If I could eat a southwestern Caesar salad once a day, every day, I think I would. This is one of my favorite salads...ever. Paradise in general is a little overpriced but one in a while, I'll bite the bullet and splurge. My only complaint is their lack of vegetarian options. For a restaurant that specializes in soups, salads and sandwiches, it would make sense to have more than one or two options in each category suitable for veggies.", "type": "review", "business_id": "MFlkmsxlDloSiEd8SLjnAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CoQ5qnDp_rLqkBN3U3yxCg", "review_id": "xr-pPsKe487INePfJHqsNw", "stars": 3, "date": "2012-08-18", "text": "Their service was above acceptable, but kind of slow. It was Wednesday night around 9pm and only one section in the restaurant was open for just a few groups. Their business looked very slow there. But I suppose it was a probably typical week night situation.", "type": "review", "business_id": "OmxAvtMyIvCVm16NFIOOUA"} +{"votes": {"funny": 2, "useful": 11, "cool": 10}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "eFV6Dovl1CL3d6Ef0oqZvA", "stars": 5, "date": "2009-08-13", "text": "When Hoa called and said we were having a reunion of former branch employees at a Chinese buffet, I wasn't at all apprehensive. My normal concerns with such eateries--will the food be maintained at a proper food-safe temperature, is this seafood fresh, how long has the sushi been sitting out, will I be able to make it home before my intestines rupture--dissipated because Hoa knows good Asian cuisine. She is, of course, born to Vietnam and world traveled. \n\nLet's start with my happiest aspect about HKGB: the sushi. No, it's not the best sushi in the Valley, but they make it fresh for you on site. You can stand there and watch it being make, grab a soup or something else to munch on, or just sit at your table and chat awhile. Afterwards, you can head back for more sushi or veer over to the more traditional offerings of a Chinese buffet: sweet and sour chicken, fried rice, crab legs. \n\nNow let's review the not-so-shiny aspect: the price. Yes, it seems a little steep that we paid about $25 per person with tip (and I made only two rounds) but when you factor in the 2 hours we spent there, grazing, catching up, grazing, passing Lisette's daughter around, grazing and making plans to keep in touch, it's really not such an outrageous amount to pay. \n\nIf you find yourself in this part of town, craving Chinese and are wicked crazy hungry, give HKGB a shot.", "type": "review", "business_id": "-Ogv7rpcgUHkFaSy3vD8Sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "ZBrl8qRkHeYr3XLQw6_ZJQ", "stars": 4, "date": "2011-08-24", "text": "One of the better places to get some frozen yogurt, and since this is the location closest to my house, we tend to come here more than any other place we have been to so far. \n\nThere is no indication next to the names of the yogurts what ingredients are in it, so I am docking a star for that. I'm trying to avoid eating eggs as much as I can and it is always helpful when that information is available without having to ask. I have been on the website enough times now to know which flavors have eggs and which don't so its not a problem for me anymore, but for anyone else it would be. But the flavors I have had have all been good. The fruity pebble flavor I had awhile ago actually tasted just like the cereal. It was a fun flavor. \n\nThe topping bar is a good size. There are fruits, candies, and nuts among other toppings. My husband and I are generally happy with this topping bar. \n\nThe best thing about this location is on Wednesdays, if you come in wearing pajamas (or something resembling pajamas) you get 50% off your total! Its a great deal. The last time we only paid $5 for the two of us. It gets pretty busy on Wednesdays but its not too bad.", "type": "review", "business_id": "mM_sT64i46AKPQtz26PCcg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "MUHoBFzwRoXpCpgYSN8KRA", "review_id": "zVPF4RaGG7jpfQ63HRVGcQ", "stars": 5, "date": "2008-11-18", "text": "LOVE Chino Bandido. The snickerdoodle cookie they give you with your meal is heaven. Well, all of the food might actually be heaven, but usually by the time I get to the snickerdoodle I could die happy on the spot.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hb49IsEZltm85wLz3uMrmw", "review_id": "NcDrQYipok1104bqpIwS_w", "stars": 4, "date": "2012-10-18", "text": "The grilled yellow tail salmon here is out of this world! I have eaten here twice in last 8 weeks and the sushi is fresh. The miso soup is great. Everything I have tried has been delicious. The staff is fairly friendly. Looking forward to happy hour here in the near future.", "type": "review", "business_id": "AhpzPZH3b0PGT9mVoLCQDg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "g9s_yIDg9uA3RufY8-cqtA", "review_id": "M3jTv5NIipi_N4mgmZiIEg", "stars": 5, "date": "2012-02-10", "text": "I pride myself on being 'that girl' that tries out every restaurant I come across. It's practically a hobby for me. For YEARS I kept saying, \"I want to go to Cowboy Ciao\" but we never made it. Then, thankfully, the hubs' best friend had a big birthday dinner there, so we just HAD to go. (Thank you hubs' best friend!)\n\nI have to say that the service was incredible, and the menu was almost overwhelming. There were SO many interesting choices, but I had to stick to the tried and true chopped salad - everyone and their mother has told me about this salad, and I wasn't about to miss out. The hubs ordered the Tenderbelly Pork Shank. \n\nThe chopped salad has earned its reputation. That thing is de-freaking-licious. The Pork Shank dish was fabulous as well, but I couldn't get over how great the salad was! AND the server always came over to make sure that my wine glass was never empty. Seriously, can it get any better?\n\nFor dessert we ordered the spumoni- I have had better (no offense) but I'm not sure anything served after that salad would have made me happy :)\n\nI'm very glad we finally made it to Cowboy Ciao and I look forward to going back - SOON!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OmnXoXdLsXhOVHQCDX_nAw", "review_id": "cat5mQdwKeXF--LgMm1ESQ", "stars": 4, "date": "2010-01-11", "text": "This is our theater of choice in N Scottsdale. An older theater with no stadium seating, it is still kept in good shape and is clean. \n\nGreat prices at $5 a ticket before 6:00, it is the best bargain around since they still show all the new releases! \n\nOur main reason for going here it is never crowded and personally I only like sitting next to someone I came with :0). That's never a problem here!!", "type": "review", "business_id": "npNGjnLuB16sU_6T2b-5bA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "ZxabF5JQcKPM86L0qB4xGw", "stars": 3, "date": "2009-03-16", "text": "I could care less about being seen in Scottsdale, what my friends look like, and how cool we look when we hang out together. This is why I don't go to this place more than once every two years!!!! That being said, I do like their food. Its pretty good for sushi. But, the music is too loud, its pretentious as all get-out, the staff is too cool for their own good (Hey Bambi... You work in a frickin' restaurant), and its too much of a scene! Can I just have two of the Las Vegas' to go without all the crap?", "type": "review", "business_id": "nk6_ipMkmUvUtq6Xvncf0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yujwS7lAU_2e8z8yQdsqlg", "review_id": "lRlv4LVKxNg2au5k9lJc2A", "stars": 5, "date": "2012-01-23", "text": "The facility is a bit dated, but the service is great. Dr. Rios is patient and thorough, and his staff are friendly and efficient. Dr. Rios gave me several different alternative contacts to try in order to make sure that I was getting the right fit for me - it made a big difference. Who knew that they make bi-focal contacts now? They're great.", "type": "review", "business_id": "7hmTTGJHKfAw82uT4kIxvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "SwnLshF0NJBRK9UilGA80Q", "review_id": "fIlx7VKQuBmj0wBRTw4qjA", "stars": 2, "date": "2008-01-03", "text": "Ya know - I could see this place being very inconsistent and I was there on a ho hum day. The wine recommended was their chianti which tasted pretty bad, they have a weird assortment of imported beers, and like a couple other reviews the pizza had little flavor. We order a PESTO chicken pizza and we had to bite around on each piece to find the pesto, no flavor, a bit dry and the pizza was really late and warm - late and warm which means = sat there for a while. Our waitress was nice, cute, fun but hey that only gets you 2 stars. The salad was better than the pizza and the wings were pretty good. - Thats all folks.!!", "type": "review", "business_id": "ftdKj1p2Y0ABrr9uOPn97g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QqndsiMnOxuyhaSzIGmq7Q", "review_id": "NNyGfPeJOvTOMquOCOFg2Q", "stars": 5, "date": "2012-09-22", "text": "Went wed nite, wife tells me best gnocchi since Europe, were cooked perfectly . I had pollo erbe, terrific.\n\n \" wine tasting director\" very good, with tasty selections. Will be back, OFTEN. Highly recommend. Rich D", "type": "review", "business_id": "E6DnUFy3GoN4DxTqturtug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y1yGvKaf3XzQ-oLu-J4-3Q", "review_id": "TYCjT2hujpmarVzCDCCTuw", "stars": 4, "date": "2010-02-07", "text": "Nice restaurant and hookah lounge. The service is...as it is in every Middle Eastern restaurant I've been to-t's not bad, but not good; if you ask for something they take care of you, but otherwise they do the bare minimum. Nice people, though. I had the best falafel EVER the other day when I ate some late lunch at the restaurant. The market has a nice selection of hookahs, shisha, and accessories. I'll be back, for sure.", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "X8hjnv-PSuJ0ASItdwpzqg", "review_id": "7etNJc6oUiAJX-TAHcNXUg", "stars": 2, "date": "2012-02-16", "text": "Food was alright, nothing special, a bit bland. The water tasted so bad though, bad enough that you could still taste it through iced tea or tap water, do they not have a filter!?", "type": "review", "business_id": "N_zdv9ApM_RIk_80KsNX5g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "O0WWBU6acBCzzYjyXaouUQ", "review_id": "56VDT0x0FbAVyBp_oj1XgQ", "stars": 5, "date": "2012-05-20", "text": "Our family have used this Discount Tire for 11 years now. Amazing service and warranty on tires. Thank you!", "type": "review", "business_id": "TPbaVXcot4-MGFMi2gREJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hNs-x49UQmkN3GSAwKXUGQ", "review_id": "GAl0L7rhCUaPbKJtXGD1qA", "stars": 5, "date": "2012-09-30", "text": "I can't think of a better Thai rest. In PHX. Consistently good food and service. They have Thai staples like rice paper rolls, Tom Ka Gai and Pad Thai as well as more creative items such as Crispy Mango Fish. Average Thai food pricing, free parking. There are a good number of tables, so don't let a short line dissuade you. Like any rest., scope your table before you sit to be sure it suits your mood. Boisterous din in the main room when busy.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Bl9i_CBC9orZCmr2NxrlMA", "review_id": "cprXmVFzgCrni9gd-pyrxQ", "stars": 1, "date": "2010-04-22", "text": "Avoid at all costs. Awful service, slow as hell, only uses disposable plasticware/plates to add landfill insult to heinous food. Despite telling them we were in a rush to catch a plane and multiple reassurances that the food would arrive in plenty of time, they lollygagged around and I ended up paying $30 to be seriously pissed off and hungry with no food. BLECH.", "type": "review", "business_id": "tS12t_uuiCGAryiNaRmF9w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "8uV26l7-ktb4tZ5gRsIWWg", "stars": 5, "date": "2007-08-23", "text": "The new Harkins Cine Capri, one of the first things to open in Tempe Marketplace, boasts 16 theatres and offers more than the norm when it comes to movie snacks. Moviegoers can order brownie bites, mozzarella sticks and pizza.\n\nThe theatre is super spacious and the seats are plush and comfy. And the screen is huge. This is my new favorite movie theatre.", "type": "review", "business_id": "1pGC-0jvQ6vN5rzmCHjmfg"} +{"votes": {"funny": 3, "useful": 1, "cool": 3}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "3naXtoD6EkZ6PhWGb-elFA", "stars": 5, "date": "2012-01-09", "text": "Postinos a spot for high rollin' winos. \n\nYou woke up at noon and had breakfast during lunchtime, so the next logical step is to have lunch food during dinner time, with some wine. This is where postino's comes in. \n\nThe menu is full of salads, Paninis, bruschetta and a few apps. There is a large by the glass wine menu ($8-$14) and hipster cool ambiance. \n\nService here is great, the patio is quite nice with heaters, a fire place and even a few patio furniture loungers. Great for a date, hanging with friends and conversation.\n\nWe started with the Bella Postino $9 Crustini with a artichoke dip and a hummus. The artichoke dip was great as any fat laden dip would be. The humus was ok but I am a hummus snob.\n\nFor our main we had the Vegetarian Panini ($9.75) It was good and moist with hummus roasted tomatoes olives and an artichoke spread, the focaccia bread was well toasted from the Panini press.\n\nWe also had the mediterranean salad 8.75 which is a romaine salad with copious amounts of feta. Pretty good as I do like cheese but maybe not as healthy as one would want from a salad.\n\nFor desert we had a crem burle, simple not to sweet and well executed a classic.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XAYnVFLCV7i3iR4qs4eeQQ", "review_id": "qnJpKukeM1PiE_y3KHeqAA", "stars": 5, "date": "2012-10-03", "text": "Soooo this location is even better than the one in Superstition Springs. They also have a play place, which is pretty cool. I ordered the deluxe chicken and it was simply amazing. Fantastic service as well. I ordered and set my stuff down and within a couple minutes my food was brought out to me with a smile. Very polite staff, and delicious food.... what more could one ask for? I totally wish Chick-fil-A would sell thier Chick-fil-A sauce by the bottle cuz it's sooo good", "type": "review", "business_id": "Me6hKl5pjH2KCuxLZm6pzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1bV0I0j-YzDcfiXK2M-U8A", "review_id": "HjDpBri_flkD7obrtuxb9w", "stars": 4, "date": "2011-04-04", "text": "Brio is delish, plain and simple. I have yet to get something that isnt tasty. I live about 15-20 miles from one so I dont get out there too often but I do wish there was one closer to my area.", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "I9SVFf4llKx0RPWOuQFPhg", "stars": 4, "date": "2008-10-16", "text": "In all of my shopping adventures at The Rack, I've found each day can be hit or miss. Some days they have very little selection of high quality clothing and other times I've seen $700 high-end designer dresses marked down to $30. They key, I've found, is to go on the days when their new merchandise arrives straight from Nordstrom. \n\nI somehow got on the Nordstrom mailing list, which I don't mind because they send postcards with the dates of these fashion events when new shipments arrive. These are the dates when the best selection of designer clothing comes straight from Nordstrom. So, if you can make it a point to show up, you're bound to find what you're looking for at a bargain.", "type": "review", "business_id": "UkbiF2Y3FUDGPK5YdCGgIQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "IrTcXG-XwBcgrmcBxz2J-Q", "review_id": "ggHGaV87khLrOM6nxEOrMg", "stars": 3, "date": "2012-07-18", "text": "I was NOT too impressed with this place but... it was good for Phoenix, where I am starting to realize there is NOT an abundance of people who look like me. =/ LOL! \n\nFlavor-wise I thought it was pretty good. Don't be misled by the spring rolls... Even though it says they serve them in 3s... its 3 that are cut in half... so you get 6 pieces. This is pretty good if you're looking to share with someone. I did not get a lot of lettuce and mint, though and ate the last two pieces by themselves. I was a little disappointed by this.\n\nI had the combination Pho... (YES i braved SOUP it in HOT ASS ARIZONA) and it was not too bad either. The broth was nice and clear, just portion wise... was not as extra large as I expected it to be.\n\nWhen the bill came, I ended up paying about $18 total which included tax and tip and no drink. I think the Pho was almost $10.00 and the Spring Rolls were like $4 and some change?\n\nI think this place is cool but would not be my FIRST choice when it comes to pho. (Trust me... I've eaten a LOT of pho) I just don;t think the price vs. portion is worth what you;re paying. This saddens me to say too because, I am ALL about supporting small Asian businesses. \n\nOh well...", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "dCQfxVElqKdqEp6Nx5lL2w", "stars": 4, "date": "2008-04-29", "text": "Out of all of the Flo's locations, this is the one I've frequented the most over the past 3 years of living in the Valley. I've seen the menu change here and there, but I have to say, I've never had a bad meal at Flo's.\n\nI met my friend Melanie H for dinner this evening and we really enjoyed our meal... we had great service - our waters stayed filled throughout the time we were there, and our food was served promptly. Our server checked on us several times as well. We started with vegetable pot stickers and requested that they come steamed. They were delicious! Next, we shared 'Indian Curry Vegetables' (I ordered it with shrimp) and Indian Vindaloo Chicken. Both were extremely tasty - fresh veggies, chicken, and shrimp in really flavorful sauces with just the right amount of spice. The curry vegetable dish came with broccoli, mushrooms, carrots, snow peas, and long beans. The chicken dish had tomatoes and onions. We also had steamed white rice.\n\nNote to Flo: We were both disappointed that you took the Vietnamese Spring Rolls off of the menu and I miss the days of the green curry dish with calamari. One more thing - the chicken corn soup that you serve at the DC Ranch location should be offered at the others as well - I love that soup!\n\nFortune cookies came along with the check and we both were happy with our fortunes. The bill didn't break the bank either. See you again soon, Flo!", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qQns9dP75RNOWOVWI_ZKZw", "review_id": "JMsGNA3bc3CzqoOqb79dkg", "stars": 4, "date": "2011-12-12", "text": "I went for lunch with a large group and the place was pleasantly empty. The decor is very modern and has a comfortable lounge style.\n\nThe chips and salsa are a great starter. You get three tasty kinds of salsa: brown, red, and pico de gallo. The tortilla chips are fried perfectly. They are extremely light and crispy.\n\nI tried the steak tostadas. The meat had a food flavor and the tortillas were nice and crunchy. The red jalape\u00f1o and fresh cilantro on top brought excitement to each bite. \n\nThe dishes are small, but they are are also inexpensive at $6-10 each. Along with the chips and salsa, I got plenty of food, so portion sizes are only an issue for big eaters. It seems like a great place to share several dishes between everyone. \n\nI would definately go back for the food, but I wonder if this place becomes a standing-room only drunk fest when it gets busier and later in the evening (if so, no thanks).", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "E5QyEU6FCQwnTys0S73zNw", "review_id": "hMD_kV9jYdZ8PzCZoqtmMA", "stars": 5, "date": "2008-12-10", "text": "Just because i feel like doing something different. :P\ni'm just going to paste some song lyrics that i feel sum up Pei Wei on McDowell...\n\nTruth is here the truth is here\nTruth is here the truth is here\nTruth is here the truth is here\nI said the truth is here the truth is here\n\nI want more\nGive me more\nWe want more\nGod damn it I'm back to demand we get more\nWe want more\nI want more and more and more\nI want more\nWe need more\nI want more\nGod damn it I'm back to demand we get more\nGive me more\nI want more and more and more\n\n[Verse 1:]\nI stand here naked as the day I was born\nFace to the dawn and my faith in the song\nBlood soaking the pages I painted em' on\nAnd none of ya'll will take my place when I'm gone\nI'm the pure raw uncut, who the fuck want what\nHere to show you sucker ass mutts what's the fucks what\nBrother Ali vow solemnly not to die while the music is still inside of me\nIt's got to be allowed to breathe\nGot to let it out enough at least to let the monster flee\nI want more than what your offering me\nSongs that make me feel like I'm already free\nI'm a rebel in my own right\nYa'll don't want to write or think or speak a rhyme standing next to me\nWhen the game need it I'm exactly what it need\nPut the soul in the speech, let it go, let it be\n\n[Chorus: x2]\nI want more\nWe need more\nI want, god damn it I'm back to demand we get more\nGive me more\nI want more and more and more\n\nI said the truth is here the truth is here\nTruth is here the truth is here\nTruth is here the truth is here\nTruth is here the truth is\n\n[Verse 2:]\nNot nearly a single solitary soul\nStill put the kind of passion to the mic that I hold\nOne day it'll have to be pried from my cold dead hand\nUntil then the big man is gold\nGot one lone reason to go on breathing\nClimb into the zone of the evening, keep reaching\nJust to pull more out the core of the deamon\nThe people need to see them pure human being\nBlood, sweat, love, hate, life, death, joy, pain\nLittle child running wild striped to the raw veins\nRugged junkyard dog off the chain, barefoot balls out marching in the rain\nSacred war dance suspended in the moment\nWe throw the fuck down like our lives depended on it\nJaws of the streets with our heart on our sleeve\nThrowing shots at the law which is all I believe\n\n[Chorus x2]\n\n[Verse 3:]\nOur songs are supposed to be the voice of our soul\nNot bought and sold, not all controlled\nBring a little fire when the world get cold\nLet me shed a few tears and to me you went gold\nPeople need more freedom\nChildren need to hear more truth when ya'll teach em'\nDamn I want to hear a plan from the dude preaching\nGot new seeds with true needs and who's leading\nI truly believe every word I've ever uttered on a drum break\nRight or wrong, life go on but it wasn't nothing fake\nI demand you start listening to the crowd\nIf not - we gon burn this bitch to the ground\n\n[Chorus x2]\n\nI said the truth is here the truth is here\nTruth is here the truth is here\nTruth is here the truth is here\nTruth is here the truth is\n\n\nthe atmosphere is pretty hot here too..exposed brick always makes me Yelp!", "type": "review", "business_id": "7pxa5tueoEcmt6hztqsz2A"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "FRq9MZnoZltnwh_lAYiQAw", "stars": 4, "date": "2007-02-05", "text": "Holy manfest '07.\nI think I was one of the 20 women (not including the waitresses) in Tilted Kilt yesterday.\nIt was raining men. And I liked it. \nA few minutes after entering the bar, I knew exactly why I was surrounded by a sea of men- the waitresses were barely wearing any clothes. \nLet me clarify: they did have tiny skirts on, even tinier tops and their bras were hanging out, so I guess that constitutes as clothes.\nThe outfits were cute, but extremely revealing, so much so that even I had a hard time looking our waitress in the eye and I know the guys around me were having the same problem.\nThe bartenders (all men) were all pretty cute. And wearing kilts. All I kept thinking yesterday was that they must make some pretty damn good money to warrant wearing a skirt to work.\nThe food is pretty good too and their menu is extensive. You'll find the usual apps, sandwiches, tons of salads, chicken fingers, wings and so on. \nBut the real highlight of Tilted Kilt for me was when I found little purse hooks underneath the bar. I thought that was awesome. \nWay to look out for the ladies Tilted Kilt.", "type": "review", "business_id": "o9nCXNC14VScabiy2bftgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "j2Eno7wxttUkoeClhctwkQ", "stars": 4, "date": "2010-05-01", "text": "The place is nothing special, you can even think there is nothing going on there as it is almost hidden. Once you are in, you still won't believe there is something worthy. Sit and try one of their gyros, hummus or the vegetarian combo! All tasty and well served. After that you can check and buy some interesting to impress your friends next time!", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "smnXvsjJNqsCvEGbaNxulQ", "stars": 5, "date": "2011-01-16", "text": "One of my favorite brunch spots. Not the cheapest, but you come here to admire the Arcadia families/couples coming into have brunch. There is sometimes a wait but it is worth it. I have a hard time deciding between the lunch salads and breakfast. I usually cave and get the french toast or ginormous belgian waffle. Parking is plentiful but it is on a weird corner in the strip mall, if you are going, look for cork and cleaver.", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "die-1gtgzw5KcyUjKo-VSg", "review_id": "QGfkgls44HbbrPDTR_ct2Q", "stars": 5, "date": "2012-03-19", "text": "Seriously. I seldom give 5 stars, but it deserves at least this much.\nIf it wasn't for the location and the super scary after dinner club scene, I would go every.single.day.\n\nTruly one the best BBQ places in greater Phoenix. My mouth is watering as I'm thinking about the Hog Heaven special. In fact, my puppies mouths are watering too. Decent prices, giant selection. One of those places where the early cowboys of the SW would appreciate. \n \nIf you are a cracker family, I suggest going super early, like super early bird special early , like when the snow birds come out for the senior special early, because after dusk, the whole place transforms into a pulsating super loud, super dicey Mexican Dance Club, and the blue hairs are sure to have a coronary attack after indulging in such a lipid laden meal as they attempt to make their way out of the Club. \n \nAh the sacrifice for decent BBQ....", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TLxb5zxzXO-Y0bFB__i53g", "review_id": "PQRwGcpCCVYVIdluLmn0gA", "stars": 5, "date": "2012-08-30", "text": "I live in two cities in two different states and travel back and forth each month. I tend to use services where I find them and haven't really found a really great barbershop in the last three years. While I was in Anthem this week, I decided to give Vs Barbershop at Happy Valley Road a try. I rarely use chains and prefer a more intimate and personal hair stylist, but I was pleasantly surprised this time. I was able to make my appoinmtnt online and choose the services I wanted to have with the haircut--very efficient. I didn't know any of the barbers, so I just let the shop (?software) choose one. I was treated to a superb haircut, a very satisfying shave, and a facial mask and massage. My barber, Manuel, was precise, experienced, and he went about his business with style. I cannot imagine how many hot towels he used but I would not want their laundry bill. Finally, Manuel washed my hair AFTER the cut, which makes all the difference for the rest of the day. The overall experience was excellent and I am sure to return the next time I am in town. Yes, the package was pricey but the haircut was standard price for this type of service. This is no Supercuts or Hair Salon--trust me on that. If you are looking for that old style Barber experience with more than just a clipped head, please give Vs a try. By the way, it is just behind Paradise Bakery in The Shops at Norterra.", "type": "review", "business_id": "heszpsyNiT3i8MEOk04sUw"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "q9U8zvkHbEkMCABvBkQByQ", "review_id": "pX2ROPQLKnnnEU86JunAHA", "stars": 5, "date": "2012-08-24", "text": "Awesome place!! EXCELLENT food/apps(try the bleu cheese figs)! Ask for Dizzy Dre, he's AWSOME and listens to your likes and customizes drinks for you!! Very patient with women!! ;)", "type": "review", "business_id": "7tTK3VPlFtBGBHm8-LZIUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3xLRUt8wYKwkqE68Inz3uA", "review_id": "pmOExg5ab56RZjG0K6mJPw", "stars": 1, "date": "2012-04-08", "text": "I got my nails done there last Thursday for the first and last time. I would never ever go back there. The man who did my nails burnt two of my fingers really bad. The place was dirty and messy and talk about noisy he asked me to many personal questions. To top it off he answered his cell phone and talked on it about 10mins all load and on speaker phone . So rude and bad customer service. It might be a little cheaper there but as the saying goes u get what u pay for!!!!!!!", "type": "review", "business_id": "sDGjlZV3SqYGWG9BO4ZpMA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_nKsyDUIdoTimDPM9aG23w", "review_id": "-DkKPO2kj-6tobkQU3CU4A", "stars": 5, "date": "2012-07-04", "text": "Do not bother going anywhere else. This is the place to go for laser. No contracts, easy to get appointments, very reasonable. The staff is fantastic, every one of them. I usually go to Kristen, but all others are as equally friendly and competent. Location is very convenient also. I have looked, and I have received many groupon and living social offers from other places, but I never bothered. This is the one.", "type": "review", "business_id": "J-c25QK8xBqv1P-huUkoTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AZ8NDHmLWdZGzvMtZXzjkA", "review_id": "ALs-zIMXcUrH50Y-CaSMYA", "stars": 5, "date": "2011-03-06", "text": "I realize L&L is a chain, but I love their food. My favorites are the Loco Moco and the BBQ Chicken. I also enjoy their haupia-filled donuts. The family that runs this place is very friendly and do a great job in making sure you will enjoy your meal. Go there.", "type": "review", "business_id": "3u7-xGwUKyGHkSexwBd9Wg"} +{"votes": {"funny": 7, "useful": 5, "cool": 4}, "user_id": "v5k-__wHo2xPI25WO-dcQA", "review_id": "VH3eXyerwSofqISU5KqZzw", "stars": 4, "date": "2009-09-14", "text": "This review is for the bar ONLY! \n\nFirst time I came in here it was packed to this gills, and no where to sit so we left.. Next!\n\nSecond time I came here I met 2 of the strangest old women I've ever encountered who tried to reel me into a marketing scam, wouldn't shut up about how lovely I was and how both of them wanted me as their daughter, then performed Reiki on me and my friend, waving their hands all around us eyes closed and chanting.. in front of the everyone. I couldn't help but bust out in laughter. Bartender laughed too, then poured more bourbon in my glass and winked.\n\nI really liked this place aside from the geriatric nonsense. Great vibe & I loved the entrance, you walk right through the kitchen and can observe the chefs working their magic. The interior is dark and sexy, with some of the coolest wallpaper I've ever seen.\n\nI am hoping to write an update soon, because I desperately want to try the steak that I have heard so much about, but $60 for dinner is a little out of my budget, thanks to our economical crisis and being unemployed. *sigh*", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "n1KWJCpVeoTrzcN9iATfKA", "review_id": "BMJMZDdmWR8Qhf6J64XMeA", "stars": 3, "date": "2012-04-28", "text": "Huge portions of delicious pulled pork, perfect coleslaw, ice cold drinks, plenty of TVs, and friendly staff make this a fun place you should try! Ohhhh yeah, be sure to use the Yelp check in deal for a free desert! We went with the Death by Chocolate! It is built for two and ohhh so delicious! \n\nHowever, I am only going with three stars due to limited BBQ meat selection compared to the others in town, limited cramped parking, and dirty paper menus.", "type": "review", "business_id": "UUssRgBCO_riWg3chbv9Zg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lczLjHO7zIhrmSlOXI3ohg", "review_id": "TFOQStpfdozOP7Xy4y3nVA", "stars": 4, "date": "2009-09-26", "text": "When one course of a meal is so significantly better than the rest of it, it's hard to write a balanced review. I went down to Cheuvront with a few friends for Restaurant Week. The place is tiny, very relaxed-hip looking, and right on Central Ave. While the place doesn't have any distinct look or theme going on, there was a movie with french subtitles playing on a screen next to the dining area so...I guess it's supposed to be French. They have wine and cheese too, so, yeah, probably French.\n\nSo the meal didn't start out so great. The spinach salad came out to me on a dirty place. Sure, it's a restaurant. I know other people use the same plates and silverware I'm using, but things like that, especially when noticed, are off-putting. Unfortunately, the ahi tuna that followed was also overdone. Not in a bad way, and I almost didn't notice through the thick peppercorn crusting, but when it was pointed out, I was a little disappointed.\n\nThat was when they pulled out dessert.\n\nI'm not a sweets person. I don't know that I've ever been. Give me spicy or savory 10 times out of 10 over any kind of sweet-tasting anything. Although my dentist might argue evidence to the contrary, I really just don't have a sweet tooth. That being said, I wanted to die and be entombed in the citrus flan that was put in front of me. I wanted to lick the plate clean and then go back to the kitchen and demand they fill my pockets, one with the smooth, creamy, more-like-custard-than-flan flan and the other with the wonderfully sweet and subtle citrus sauce they coated the dish with. I'd also probably ask for some of the figs and berries to be put in a doggie bag.\n\nI have never, in my entire life, enjoyed a dessert as much as this one. I would happily drive the 20-plus minutes downtown just to have this again.\n\nBefore I forget or the keyboard shorts out from me drooling, the wine selection here is also amazing. I didn't take time to look at the whole thing, but I think most wine connoisseurs would be happy here.\n\nWhile it was a mixed bag, the place certainly deserves another trip. I can see (if I had a real life, not one that consisted solely of studying) sitting out on their patio, enjoying Phoenix, and making a dent in their wine and cheese stocks.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FXbDtMtmR3zF50ljxeQueA", "review_id": "mlg4QXm6F9RoRGqjHIRx3w", "stars": 5, "date": "2011-03-24", "text": "This is my favorite pho joint in all of Arizona. I have been to about 17 from flagstaff to mesa to central and Tucson! The owners are so welcoming and very proud of their business and it shows! The place is always clean and the bathrooms are immaculate! I always order pho Tai and water.. But I've had both their egg rolls and spring rolls both excellent! I love the broth! It's true pho broth.. It's not the beef bullion cubes other place use and you can defiantly taste the difference! The sprouts are the cleanest I have ever seen! I love this pho place ... try the greatest pho in Arizona!", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 1, "useful": 6, "cool": 2}, "user_id": "5cVACUA-5e1SYyQ_E2-9iw", "review_id": "hveo5L8uwJPGQgr9pt56aw", "stars": 5, "date": "2011-06-25", "text": "I have been visiting Mrs. White's going on 30 years, but after looking up the phone number this afternoon to verify if they were open and still had fried chicken, my wife started reading some of the reviews following a recent Food Network recommendation - I almost got cold feet.\n\nGood thing I didn't. The food is as awesome as ever. The service is much as it has always been. Be forewarned, trendy restaurant goers, who glom onto TV reviews, Mrs. White's is not trendy; there are no bubbly fresh blonde girls waiting to seat you. The service is matter of fact, no goofing around, you must get to the business of ordering and pretend you know what you are doing - this is the way it has always been at Mrs. White's. If you are looking for others to pamper you, this is not the place for that. Mrs. White's is where you go to pamper your indulgence for perfect soul food. If you want Scottsdale ambiance, again, this joint won't work for you.\n\nWhen you go, be prepared that not all dishes may be on the menu during your visit. There are no corporate owned semi-trailers that deliver two tons of food every other day. This is a small and very cramped operation that makes homemade food for those who know how to appreciate it. In these days of flash frozen prepared dishes that are uniform from visit to visit at chain restaurants, this food is made in a tiny hot kitchen. If they run out of your favorite dish that has been cooking for hours prior to your arrival, there is no way they can whip up another pot of green beans and potatoes in 20 minutes. \n\nI often call ahead to verify if they have what I want because years ago it was not uncommon that by 12:30 they would be out of half of everything on the menu, which was OK because if forced me to try new things Back then, Mrs. White's was open Monday through Friday from 11:00 till 3:00, but I'd swear you'd be lucky to get anything after 1:00 - and that was perfectly fine as you knew they were doing all they could with their limited space to do their best for us customers. I'd just come back on another day. \n\nTo say I have the utmost respect for the White family would be an understatement, today I was afraid I might have to lose that based on those poor reviews below. I do not believe those reviews are an accurate representation of The Golden Rule Cafe. They are the distortions and disappointments of people who have skewed expectations. Funky little hole-in-the-wall family-run operations that attract a loyal customer base may not be the place for everyone, but if you understand that wonderful stuff doesn't always come wrapped in a sterile designer package, then you might get along with Mrs. White's.\n\nI love this place and hope I always will.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "xH5ETGmT8IUaPjbwZmj-Ow", "review_id": "F9BTRx7yCar_sDVwoOx7NA", "stars": 4, "date": "2012-01-27", "text": "Pasand is under new ownership and the changes already seem good. I went there today expecting the same old stuff. What I got was some truely excellent tasting food. The food was leaps and bounds above the previous food. The spices were much more distinct and flavorful and especially fresh. In talking with the owners they were going to rennovate the run downinside and add some more buffet places. Overall I approve of what has been down to the place especially the food.", "type": "review", "business_id": "y3V2jqKmvWjyo9Mc-Ipn4g"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "1S7XdhbZWR17Wy4TBsIzaw", "review_id": "C-reF7nMYNitSPknENhr-g", "stars": 4, "date": "2007-10-19", "text": "Creamy, luscious, divine...just some of the words that barely describe the wonderfulness that is Ritter's frozen custard. \n\nShort of having real Italian gelato (never been to Italy yet, so I can't even begin to compare the schtuff we have here), this frozen custard beats everything this side of town.\n\nMix-ins, schmixins. The custard's yummy with or without. It's more flavorful than teeth loosening sweet and they have over 65 to choose from...although they rotate around about 6 of them per day.\n\nIt sure makes the moody blues go bye-bye with each spoonful. Okay, I'm being a little over-dramatic. But it really is good!\n\nPrice is right, service is great, and it would take a long time before you became bored with the flavors. You could literally go every day and try something new. Bad for hips, good for the little kid in all of us.", "type": "review", "business_id": "UFfYVoK3RwDVo9eb70Fh9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VL3-X2kM2u2Z7dFo-FXVIA", "review_id": "bGC4jifhIjxZq8-YmwfS6A", "stars": 4, "date": "2012-01-05", "text": "Some pretty decent mexican food, and quiet cheap as well. $5 for a burrito, though it's not as big as the $6/$7 burritos or taste as good as the ones in San Jose, CA, it was still good. if I was from here, I'd probably come here a lot.. maybe a little too much though. I tried an Arizona Burrito, which was potatoes, cheese, and steak burrito. Pretty good, though the potatoes seemed a little too hard, but it was whatever. Just tasty greasy food, my brother said it's the perfect hangover food, and they are open late so :).", "type": "review", "business_id": "IFKTsVSSguMjLBA9mo0x0Q"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "C7A-aZ0UsWaGgWXVUJfr5A", "stars": 4, "date": "2011-04-01", "text": "Formerly Sandbar, this is a great new spot in Central Scottsdale to chill out after work. Good Mexican food, good strong drinks, and a massive outdoor patio with pleanty of drinking activities. They also have plenty of TVs to watch the big game. FYI - It gets slammed on weekend nights...", "type": "review", "business_id": "7Vqrh77SOYwZ3_AOK-TTiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XtzSu8tDs_XDVAhO_J1VDw", "review_id": "9eUoNQ9z1QnoDZbfl2-G5A", "stars": 4, "date": "2012-01-15", "text": "Returned for another meal and the overall experience was excellent. Only negative was that the braised leak appetizer is now somewhat drenched in cheese.. Feels a bit \"pizza hut\".", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VChMRGEsIC675BAjnzq4ZQ", "review_id": "koqs0LrKatUyJz72pCJ1gQ", "stars": 3, "date": "2010-08-12", "text": "I've probably passed by this place a thousand times without ever stopping in before today. As others have pointed out, it's small and intimate, but I liked the charming atmosphere.\n\nI ordered the Seasoned Grilled Chicken on Cibatta and a Desert Blossom Iced Tea (lavender, hibiscus, apricot and rosehips). The sandwich was well balanced and moist. It was served with iceberg, roma tomatoes and a side of their house fries, \"Kilo Fries.\" The fries were seasoned with a cheese blend, which seemed a little dry to me. However, a quick swirl in olive oil improved them quite a bit. The tea was delicate and refreshing - a nice complement to my lunch selection.\n\nThe service is what stood out for me here. My server was friendly and attentive throughout the meal, even though I was dining solo. I certainly felt that my business was valued here. She even offered me a to-go cup for my tea, which was a nice touch.\n\nI will definitely be back to explore more of their menu. Prices are reasonable too, which doesn't hurt!", "type": "review", "business_id": "Eeonj15SXvfR6kgvh8BOWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BQrTHuaYJx-_KslhWT4pVA", "review_id": "tzjPEhNgrDDmTm_UZkR1nQ", "stars": 1, "date": "2011-08-22", "text": "I am DONE with Classic Car Spa, their sub-par car washes, and their shady business partnerships. \n\nWhatever you do, DO NOT get your windshield replaced by the Auto Glass Shop that Classic Car Spa allows on their premises. I am holding Classic Car Spa accountable for placing their customers in such close proximity to criminals. \n\nWhile these Auto Glass Shop men are friendly and seem helpful, it is a scam. They replaced my windshield (and hey, it cost me nothing b/c my insurance covers it) and put the glass in wrong THREE TIMES! After one week and many HOURS on the phone with them and my insurance company, they are still giving me the run around. So although it was free, I will now have to foot the bill for fixing their crappy craftsmanship. \n\nAfter trying in vain to get my windshield fixed by the Auto Glass Shop, I spoke with the manager of Classic Car Spa. I don't think I've ever met a manager with a more relaxed, \"who cares?\" attitude. That place is a joke. Except, I'm not laughing....", "type": "review", "business_id": "ncxBZxetREZ_jCma0c7mHA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "6670GGYK2G11s-D5JQbgzg", "review_id": "WK9m_30WJLrrBBtpXG7-1g", "stars": 1, "date": "2012-09-01", "text": "Don't waste your time...Arrowhead mall on the other side of town is so much better!", "type": "review", "business_id": "zKFX8BVTWYZNa2vJ46UdmQ"} +{"votes": {"funny": 3, "useful": 9, "cool": 3}, "user_id": "FHDI8M5sm6lrZXNUBZAOfA", "review_id": "tuvjALQppER6ij1F9yRTMw", "stars": 1, "date": "2012-11-08", "text": "I can overcome the hipster sneer and accept that I am an uncool blemish in a world full of cut-off corduroys and patterned leggings. What I cannot and will not get over is an unapologetic staff whose epic error led to me breaking 5 years of meatless eating because of an order mishap.\n\nI ordered the red pepper tomato quiche. After 20 minutes waiting for the quiche to warm in what appeared to be a 200 degree oven, I double checked to make sure my name was on the plate at the counter. When I dug in for the first bite, a wave of nausea and panic washed over my after realizing this was a piece of the bacon spinach quiche. I returned to the counter and explained that I had ordered the vegetarian quiche, and the chic who took my order asked the chic behind the counter which one she served, because she was sure she got it right. The chic in the kitchen said she put them out in the order she got them. Then they spent some time looking around in confusion and murmuring a bit, meanwhile all the quiche had been sold. So the counter chic simply turned to me and send, \"well we don't have anymore of that one.\"\n\nThanks. I told her I was more upset about the fact that I had just put bacon in my mouth after 5 years of no meat than there being no more quiche. She did give me my money back, but no one apologized or offered me any recompense. I'm over you being cooler than me, but I'm not over you having no soul.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aLTl_OkLo0BFRxdz1n6sYA", "review_id": "-_MguNFy09v8GeFS5NDIbA", "stars": 5, "date": "2012-06-14", "text": "Best happy hour on this side of town. The bartenders are very friendly and service is always prompt. I've never had a bad drink or a bad meal here. I only go in if Jennifer is working though! The bar has plenty of TVs too.", "type": "review", "business_id": "6v0vQm3wXzaFoEywvpbnqg"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "DeBT32JITXEey6oLIjVcfg", "stars": 5, "date": "2011-12-14", "text": "I have been to Mabel's a few times now and I think it is a pretty stellar place. The food is awesome (try the chicken lollypops and the deviled eggs) and the drinks are strong. The ambiance is nice and cozy and I think it works well for a romantic dinner or a big group of friends. The staff has always been pleasant and accommodating and that goes a long way for me in Snottsdale. \n\nLast night I was wowed by Mabel's. We had a fundraiser for a great friend who has cancer and they not only let us throw it there FOR FREE, but generously offered to donate 20% of the bar tab to the cause. The service was great that night and they earned a fan for life. Thanks Mabel's, for being so cool, you're a breath of fresh air.", "type": "review", "business_id": "vwZ15OkVO6PemAe87k0M-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "L56wgzkIBP5_zVPHQ9XQCA", "review_id": "RG_Twuw-RM9Rj5KsL3BR6g", "stars": 5, "date": "2012-06-23", "text": "Great place for Italian food. Very family friendly. Mellow atmosphere with friendly and knowledgeable staff. Never had a bad meal. My favorite is Sirloin Marsala and you can choose any pasta they have to go with it at no charge. Recommend to anyone who enjoys quality Italian for a good price.", "type": "review", "business_id": "rvHy0q0Gnqxy3G87BNluaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4GdN3itvzmFc_6kib2UzlA", "review_id": "jWOsUlUT5dJ9DFfKdYJ-jQ", "stars": 1, "date": "2012-09-24", "text": "Hey Thai Elephant! Stop sucking! You used to be so good. Why is my egg roll cold? Why don't I get a fork with my food.... after asking!? Why won't you make me the Tiger on Fire for lunch when I got it last week for lunch?... AND it's on the menu! When did you decide to cut my curry portion in half almost? When did your service start sucking? Hey every person that decided that my two top was not important enough to attend! Why did it take 10 minutes to order my drink and then an additional ten minutes to actually get my drink? By the way, Tiger beer is on your menu. If you are not going to actually offer it, then you need to take it off your menu. I can't believe it's come to this... I used to love you. You broke my heart for the last time.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "vuxnLRJLT7EjjwIwycDAoA", "review_id": "HeojLizkqjubh7JCduMipg", "stars": 5, "date": "2011-09-08", "text": "I never write these things. But I have to say that you will not be disappointed with Paletas Betty. Especially with the weather right now, it is a delicious and healthy treat, made with seasonal ingredients. I highly recommend the lim\u00f3n amarillo when in season. Delicious frozen lemondade/lemon drop on a stick, tossed in a sugar rub. It is for certain served in heaven. That is all.\n\nP.S. check out the hours, yo. You know what's up.", "type": "review", "business_id": "ZWbvjFC_qE21JUpGlAU0Cw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "y9IKf7VckFc-fesWuDwgxg", "review_id": "7IqWsRRug9CEF5Rohlr77A", "stars": 4, "date": "2010-03-08", "text": "I adore Radio Milano. Tried to hit it up this last Thursday evening and found it to be closed. I was really depressed by this as I have had my eye on the deviled eggs and the beautiful bartender boy the last couple of times I've dined here. (neither of which I've been able to try yet...booooo!!) \n\nAccording to the valet guy across the street at Postino they are scheduled to re-open in early April. Apparently with somewhat more of a \"lounge like\" feel or some such nonsense. Works for me! I hope they keep the Tuna Crudo around which is just insanely good. Drown yourself in some chocolate pudding for desert, you won't regret it. Ahhhhh, now I'm hungry... don't worry about me, he was too pretty to be straight anyway.", "type": "review", "business_id": "C1tH3sEQra33EOTk56Eu1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O5z9K7JNEWWWF5AjBj6ahg", "review_id": "qq2n7VzjTTxz1Y4v_Fnrhw", "stars": 4, "date": "2012-03-28", "text": "Tried Ling & Louies for the first time, different than the traditional for sure. Service and food were both excellent. We tried the duck sliders,lucky lo mein rice, orange peel chicken & beef & broccoli.", "type": "review", "business_id": "gI4jThFNwy73SzaNvi-1dw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "-5jtdmmE6PWZOzGRzO1j5w", "stars": 4, "date": "2011-10-02", "text": "I had a chicken panini and was more than enough! It was dinner and lunch!\n\nThey have this special bread that is like a big bun. The people is very friendly and patient to explain their different options. Nice place, and for sandwiches it was just good.", "type": "review", "business_id": "h53YuCiIDfEFSJCQpk8v1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "BQ_WTijKUVgP2x5FzR-paQ", "review_id": "BsCsjuTf5JmxqdjLjarkzg", "stars": 4, "date": "2011-08-12", "text": "Really cool, foodie restaurant in scottsdale. All the food was fresh and original. The service was quick and pleasant, and definitely a place to consider to eat. It's not the cheapest restaurant but worth the price. This place definitely belongs in Scottsdale as is more upscale and you could sense it from the decor and service.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "Y_EU4hN4MMMg2HJucHfPCw", "stars": 3, "date": "2011-09-07", "text": "Could have been 4 stars... \n\nI went here for the first time last Friday. \n\nIt was busy, but they don't have that many tables and there were at least 4 waitresses on that I could see. Our services was sooooooo slllllllow. Like painfully slow. We waited a long time for refills, a long time for our food, a long time for the check to come. It was really annoying. Our waitress was nice, but slow. \n\nOnto the food! We got an order of wings and an order of the fried zucchini. The zucchini was really good but holy hell she should have warned us that it had JUST came out of the fryer that may have been heated by lava. I popped one of those bad boys in my mouth and immediately felt the skin on the roof of my mouth start to come off. Once the burning subsided I was good to go. I hear the wings were tasty, They were really big (I just don't eat wings) \n\nI ordered the fish and chips. So yummy! Our friend got the grilled chicken sandwich with a side of grilled asparagus. LOVE that they offer grilled veggies as a side! I snuck a couple asparagus and they were tasty. Hubs got the ribs, it was a huge pile of meat on a plate. He loved it! \n\nI will for sure go back, the food was really great, I will just know not to expect quick service.", "type": "review", "business_id": "UUssRgBCO_riWg3chbv9Zg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AVCBC2G5RjJM8tu_PebFPw", "review_id": "dCMbp2vkcHfS05tKrNOSMw", "stars": 5, "date": "2010-05-14", "text": "I almost wish I hadn't discovered this place because it's so good! Ton's of flavors and every kind of topping you could want (even cake frosting) \nSo much better than MoJo and to top it off the staff couldn't have been nicer.", "type": "review", "business_id": "co8rv2zfOhMXc_TlEI9VrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "99Jm9c6QZjvElZznML2Y8A", "review_id": "twFUV4a-TFOem4JKIhMLTg", "stars": 4, "date": "2010-09-08", "text": "Tasty Kabob is kind of a throw away name, but the service and food are excellent. The hummus is good, not the best I have ever had, but it is better than many places I have been to. The chicken kabob was excellent, I am not sure how they spice the chicken shwarma, but it is excellent. I had the gyro platter and that was also excellent. \n\nWhat I really do not understand is why Pita Jungle is so packed and this place is empty. The food is more authentic and frankly tastes better in my opinion. No more Pita Jungle for me. When I am in the area, I will go to Tasty Kabob.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "u760qQnKAwRkRhq6Fn8yzA", "review_id": "93OcCc6MfpuuMRIr15YFbA", "stars": 4, "date": "2011-03-02", "text": "Loved the location at atmosphere of this place! Had a very nice business dinner here last night. We were able to sit outside thanks to the gorgeous weather, and I'd recommend this to anyone. The houses inside have their charm, but al fresco dining is great! \n\nWe had a few drinks at the bar before we started dinner - they have a fairly nice wine by the glass list, as well as a nice stocked bar. Something for everyone!\n\nThe menu contained lots of delicious choices, and it was hard to choose. Ended up going with Hapuku, which was a new-to-me fish from New Zealand, similar to grouper. It was delicious - tender, flaky, and the earthy vegetables with it were a nice complement.\n\nWe had very polite service, though not well-timed. I like when plates are cleared all at once for people, instead of taking plates at the table away when others are eating. OR, bringing the bill before we've finished dessert. Both of these happened here.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-q0RFaCkmT6TFxgk0a9dPw", "review_id": "4Jr7NZisSBxabb-lGLRadg", "stars": 4, "date": "2011-08-28", "text": "Food and atmosphere, it's excellent for me. We ordered the chicken satay with peanut sauce, my husband is generally picky and only praises the American comfort foods but this time , he liked it a lot. We ordered red chicken curry and two thumbs up! I cant wait to dine in at that place again. Winner!", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "XrCU7y6UPJ5Y1eITHaM8dg", "stars": 5, "date": "2010-05-18", "text": "Gotta love Sweet Republic.... great philosophy and great icecream and sorbets. I've loved every single flavor I've had there (peanut butter, brownie swirl, mint chip, salted butter caramel, mayan chocolate, and more). Everything is made from all natural, fresh ingredients (virginia peanuts, fresh mint leaves, etc). \n\nWhen I really want to splurge I make my own sundae, you get to pick two flavors of icecream, a sauce, and a topping. \n\nIf you haven't been to Sweet Republic, go! If you're far from Shea & 101, find them at First Fridays downtown, farmers markets, and more.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GkWuTgewni9bzPM4HUCO-g", "review_id": "6_ALmzg1PGrBG2fQ5Q2i2g", "stars": 1, "date": "2008-09-06", "text": "I took my family here and this was a disappointin experience. The service was snobby and rude. The waitress was condescending and the food was overprices. I have not been to the other Tomasos but I will clearly discourage anyone from dining at the Chandler Tomasos. The service is clearly substandard and snobby.", "type": "review", "business_id": "nCeeguQS-MHQRifOpKzwUg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7o6OfRHsmcv44R1CjAh8dQ", "review_id": "qRyganQ35aKuDiAhtp9Dcg", "stars": 3, "date": "2011-12-16", "text": "Food was good. \n\nI had the Choppino Fruittas de Mare. Apparently the serving is large as the server hinted that it may be too large for me, but the serving was typical for a Fruits de Mare type plate that I've had at other restaurants. Sauce was nice: spicy and good flavor. Pasta was cooked well and the right portion size, I think people add too much pasta to make the dish look larger. Other than the imitation crab (a disappointment but not a deal breaker) the seafood was cooked nicely between the calamari, mussels, etc. \n\nKid's spaghetti was very good. I taste all the kid's spaghetti since I have 3 kids and invariably someone doesn't finish or even start their bowl. The pasta was cooked well, the meatball was decent, but the sauce was shick and chunky (not watery which I hate) and covered all the pasta (which for some reason other restaurants can't seem to do). There isn't a specific kid's menu but the server said they make kid's portion size of anything on the menu but the price isn't available to be seen so you have to trust they aren't going to bend you over on those, which they didn't. \n\nBread, of course, was available prior to meals. The butter used is very tasty, some type of garlic I think. Bread was warm, soft, and not overcooked.\n\nNow I would have given 4 stars except for a few exceptions: the decor and slower service. \n\nDecor was dreadful, sorry. Old and dated. I think their target demographics is 50 years old or greater as the chairs, pictures, and everything inside screams 1970's. The chairs remind me of an old conference hall. The lighting is on the dark side. I guess if I was out on a date or with 4 retired couples, it would be a nicer decor, but with 8 adults and 5 kids it just doesn't fit quite right.\n\nKid friendly not quite, but kid accomidating is more like it. Since the ambience is darker and softer volume on conversations, having loud and obnoxious kids is not the right place for them.\n\nOverall, the food is good, servers friendly but not the family friendly place I usually prefer.", "type": "review", "business_id": "EfmR4e1tmjC5_ZQOgfnYrg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Ee6n17uyTOYFH39jvWDVCA", "review_id": "6TL4GU4a7p0MzsFT7eo4Ow", "stars": 1, "date": "2012-05-21", "text": "False ads, do not stay there. Unless you don't mind a dirty, smelly, overrated hotel. The sheets and towels that were supposed to be white were gray. The place is run down and poorly serviced. The front lobby is clean but once you head up to your room you quickly find out that the place is run down and not being taken care of. I stayed on the fifth floor \"cabana suites\" and as soon as my elevator opened up on the fifth floor, I knew right away I stayed at the wrong place. The \"suites\" were nothing more than a room with a tiny bit of extra elbow space that are on the rooftop area with a pool in the front of the room. The pool was NASTY! (see pictures I uploaded) It was green and looked disgusting and when I arrived to take a look, it had an \"out of order\" sign placed at the entrance. This place was embarrassing! I had told my brothers to book there with me because we thought it was going to be a great hotel based on their website but we were very disappointed again!", "type": "review", "business_id": "B30hnkwVSxvtem09QLgHiw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IYJg3a-NTaymcYPOfRrcsg", "review_id": "eSOmx01vY6hEgNdlRzw0FA", "stars": 4, "date": "2011-11-13", "text": "FAN-FREAKIN' -TASTIC!\n\nYes, it's a Great steakhouse... but they also have a Great wine selection... and Great bread to start... and Great desserts.... and Great service.\n\nRich and Richie took exceptional care of us. They were attentive and fun to talk to... too.\n\nI had the Prime Rib and it was huge and perfectly prepared. I ended up taking the rest home and having it for lunch the next day and it was just as good the following day. :)\n\nThe Bread to start came with 2 different flavored butters. You could easily fill up on bread before dinner.... so go easy on this as they will keep bringing out refills if you let them.\n\nThe Dessert.... we got the Chocolate Lava Cake... and the cake part was good... but the sides that came with the cake... they were Amazing. The Chantilly Cream they serve on the side of the cake is freshly made and it's a Little Pillow of Heaven. Rich brought us more when we ate all the cream and still had cake left. And then they have a little homemade pistachio cookie with vanilla ice cream on the side too... these were great too... So, net, net... I wouldn't order the Chocolate Lava Cake for the cake part.... I'd order it for the things that come WITH the cake. :)\n\nGood for special occassions and if you are looking to have a lovely evening out.", "type": "review", "business_id": "9AbyBqGWHYZC73GlyAuTrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7x9oYPGJUnUic47GJ_ewbg", "review_id": "EQhoWEG-vLVnqKg4W843Cg", "stars": 5, "date": "2012-05-05", "text": "This was our first time at Texas BBQ House. They gave us a sample and help us with our order. The brisket was fantastic. I got the moist and my wife got the lean. We both enjoyed our choices immensely. I will definitely go back. I wanted some spicy BBQ sauce and apparently they have it but I didn't see it.", "type": "review", "business_id": "ytpmoIty7loFB8kRYRtJHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6rkICkKa9RlOMy-L8g05fw", "review_id": "fJrQuzN05m9L-3C4pgP11g", "stars": 4, "date": "2012-12-06", "text": "Honestly I would normally go to a specific lady to get my nails done but she rides solo and my friend wanted to get her nails done with me at the same time. \n\nSo I went where my friend goes and I was pleasantly surprised. Not to be snobby but I have done the strip mall walk in nail salon and usually walk out disappointed. I was expecting the absolute worst to be honest. \n\nThe girl who worked on me NAILED IT! Pun totally intended.\n\nI got the gel because that is all they offer. I normally get Shellac but hey...I am a convert for now. I will let you know how the hold up over time. For now my nails are amazing. Not only do they look great but it was done in half the normal time. \n\nThe reason I gave 4 stars and not 5. \n\nThe place is a little on the not so new or super clean side. It's not dirty it's just not 5 stars. They also do not provide you with the nail oil my regular nail lady gives me to keep my nails hydrated. The only other thing is the lack of color selection for gels. If you are feeling like you need that electric blue, neon yellow or emerald green (color of 2013) then you are out of luck. \n\nAll in all I will probably be going here from now on unless I want a more trendy color other than Red. Walk right in and walk right out with great nails and zero guilt on how much you just spent. :)", "type": "review", "business_id": "MK7pf2TUDrd-ITXEYAAxOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kmtui6Q9md18Cqk7QHTBOA", "review_id": "Yt5oPuoVoTp2wrzn8b5Emg", "stars": 3, "date": "2011-04-06", "text": "As much as you don't want to like Wally World...it is what it is...crazy!!", "type": "review", "business_id": "seg5LOqFqUXKqJz-thKIKA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8D408fDn0twwIW6FZ42YWg", "review_id": "59jvJf_z2UnmFTewTUBseg", "stars": 2, "date": "2012-07-19", "text": "Disappointed. I'm from Jersey, everybody in my family raves about Jersey Mikes and they are all in Jersey. First off, I ordered the Italian sub that comes with the works (5 different meats) and is supposed to come with provolone. Got home to Buckeye to learn there was no provolone on my sandwich. That throws the taste of an Italian sub off, period. My second disappointment was the meat. The franchise contracts out to a provisioner to make all their cold cuts under the Jersey Mike's label, but the meat does not have the flavor of New Jersey's finest deli meats, Thumann's. Boar's Head doesn't come in close to Thumann's but I'll take Boar's Head when nothing else is available. Third place goes to Dietz and Watson. If Peter Cancro, the CEO of Mike's really cares, he'll get his meat elsewhere. \n\nThe staff was very friendly, the restaurant was clean, there were blown up photos of the Pt. Pleasant side of the Manasquan Inlet and Jenk's pier with surfers heading out, a nice touch of back home, but that's the best I can say. The staff was so personable I don't regret leaving them a tip even though they forgot my cheese. I just wish I had a good reason to go back and see them again.", "type": "review", "business_id": "ZlvVCqFKTMK4rBkTQzVBpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FLdun6KWwAh-gC8VHVZGCw", "review_id": "qri4f9_J7_C-W6zCYU3IiQ", "stars": 3, "date": "2007-01-28", "text": "It's three stars because I don't know how to rate it -- I didn't think it was very good at all when I went the other night during their grand opening, but maybe I just don't have a taste for it. Service was prompt and polite. The food? Eh. I had one of the house specials. I didn't think it was very special. I do think the waiter deserves bonus points for talking me into a half order rather than a full order. The lemon-lime beverage was strong and sweet.", "type": "review", "business_id": "b4hI0x_vgagZyF_D-OqCLA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "5RxpP2Woo7CpOGUmKgDyAw", "review_id": "VnXtKqjcxxVNwu_ngF5k_g", "stars": 4, "date": "2008-10-02", "text": "Yummy!!\nWent with my best friend last night for our weekly date and had a great meal! We enjoyed the sushi menu but everything looked quite delicious. I LOVED the welcoming sushi chefs and beautiful aquariums. Here is a rundown of the food...\n\nEdamame: solid...can't really screw that one up\nPhilly: Great distribution of cream cheese! I hate when sushi places over do it on the Philly...\nCalifornia: Solid but could have been a bit creamer and with some spicy sauce \nSome kind of Latino roll: Skip it...weird texture inside\nScallop roll: Yummm\n\nGreat experience and so far maybe the best sushi I have come across in AZ. I will keep you posted", "type": "review", "business_id": "Y2Lfzulh_D9nNcuH49UT4w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "6m324Co38HyL-Fh3NjWr_Q", "stars": 4, "date": "2012-12-16", "text": "Very good food! We ate some shrimp tacos and macaroni and cheese. They split our tacos up for us and didn't charge for it...the portions were great too!\n\nOur server was friendly as well. Would definitely return!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k6ZQA3DJ2EfZJMmadBlWNw", "review_id": "ohGv9HXmVxImPpfuQ24UHg", "stars": 2, "date": "2011-06-15", "text": "I ALWAYS pay in cash at this Panda's. If it wasn't across the street from work, I wouldn't go here at all.\n\nTwo separate times I have been double billed on my debit card for my lunch. I'm not saying it was intentional, but either way it is annoying to have to dispute a charge with your bank.\n\nFair warning.", "type": "review", "business_id": "wEsor9I2DcyYoR3brlqIMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yBz5KP3YC7ryiAef6FXNVQ", "review_id": "qcE6sfeP1hv2GJoI9FhKeg", "stars": 2, "date": "2010-07-22", "text": "I planned to order chocolate truffles from Truffle Trolley for our wedding favors. We ordered the sample box to try them out. They came in about a week and they were packed on ice which was really nice. However, when we tried them, we just found them WAY too sweet! We didn't like them so we are looking for something else. Just make sure you try the chocolate before you buy to make sure you like it.", "type": "review", "business_id": "j_MTYLfepzkYqdqHsfYwMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "EXZrHtmzdtDHtH9MPNEhkw", "review_id": "MzhxJ5AmpG4czwk98SEMEw", "stars": 4, "date": "2009-12-16", "text": "GREAT customer service! Bought a compromised food item and they assured me that this issue would be corrected immediately. \n\nPlus they insisted on comping me the BEST MEDJOOL dates I have ever ever tasted. I had been happy to pay $7 per pound for them because they are utterly superior when purchasing them before.", "type": "review", "business_id": "Ax11wyp-FudujeU9nejQbw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "raMSkwLdZ-kFea1fTY_-Ew", "review_id": "amf0jmbwOrCRQte4ev0miw", "stars": 5, "date": "2009-10-25", "text": "My husband and I have been here twice in the last week for dinner...it is a bit pricey as other reviewers have said (around $20 for dinner entrees), but for vegetarian and organic food, what exactly do folks expect? You get what you pay for. We were happily surprised after reading the reviews...the food was amazing, the portions are huge and we had leftovers both times. (and p.s., we paid with a debit card both times and have had no trouble, despite the review about only paying cash.)\n\nOur first visit, we were greeted kindly and given a plate of fruit to munch on until we ordered. My husband ordered the mint tea and it was delish! For an appetizer, we had the sabzi...which is a huge plate of green herbs, homemade wheat nan, feta cheese, and walnuts. The herbs were FRESH and the nan was delicious...just the smell of it was enough to get us drooling!\n\nFor entrees, we had the spinach herb stew and the vegetable stew with eggplant. I am currently pregnant and garlic is not something that's agreeing with me. I asked if the vegetable stew had garlic in it and the waiter said \"we can make it however you want...every dish is made when you order it\"....what?? the dishes are made to order?? I haven't heard that at a lot of restaurants! After about 20 minutes, our stews arrived...steaming hot and smelling delicious. They were HEAVENLY! So many flavors and so fresh!!\n\nOur second time here, we had the dolmeh plate and Mast Va Mosear (a spinach dip)...both were ok...but I like the Sabzi better. The entrees we had were amazing...I had a special of the day (pomegranate walnut sauce over tofu, which was blissful to smell and eat) and hubby had the vegetarian sampler to get his falafel fix.\n\nOverall, if you are willing to pay a little more for a nice, organic foods dinner, go here and check it out. Everything will be fresh...everything will smell and taste delicious...and the restaurant's atmosphere is perfect for a relaxed, decadent evening.", "type": "review", "business_id": "VGhMTZyqmGmM4Lrn9i6yuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bvvLS4Vz5yFuNvGKBV3-1g", "review_id": "IpgWj3_uS5s5x2L8MUkOOA", "stars": 4, "date": "2012-04-29", "text": "Funny how progress sometimes catches you off guard! My local Fry's is going through a revamp and now I have no idea where anything is. It's just momentary inconvenience- I will find my bearings again and appreciate the improvements!", "type": "review", "business_id": "dwUCKSSDh-gnmLWQ6nr8CA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ejy4fKodyYROIU3fH6SGZA", "review_id": "RWNPDwgtNuPx-kwQFqhnBg", "stars": 4, "date": "2012-02-27", "text": "I have liked every sub I've had there with the exception of one. Pretty good odds!", "type": "review", "business_id": "n-iA7O3vKAgCMk3Caf2Syw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "K1E4aftgIQ2gtsrVV4z10g", "stars": 4, "date": "2011-06-10", "text": "This is by far one of the best subways I've ever been to! 9 times out of 10, you go into subway, order a sandwich, and the employees either do a poor job of making the sandwich or they skimp on ingredients bc their bosses are cheap bastards! This Subway has a fun, laid back manager, and cheerful employees that make a BOMB sandwich every time, thus restoring my faith in Subway! They are true sandwich artists!", "type": "review", "business_id": "9lWwAw9u1IVlYKbGiVOTFg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "7u3eL3IodZLq4a1ORGJmrQ", "review_id": "SPmxZtNhj3XGD8zDh1CQ_g", "stars": 3, "date": "2009-09-25", "text": "My wife and friends went for lunch the the other day and liked it so I thought I'd give it a try. Nice place, nice menu - good selections. I had the meatball hero lunch special. Good meatball hero (meatballs with marinara + extra for cheese to make it meatball parm) - it was good; too big for lunch - I would have been satisfied with half with a handful of chips and a deli pickle spear or peperocini on the side vs. just the hero sitting on the plate solo (hope the owner reads Yelp!).\n\nI'll go back and try something else. Good food, good location should do well.\n\nWho mounted all those nice TV's in there? Shaquille O'Neal? You get a neck ache looking up that high!\n\nPS - hey food runner, when you deliver a slice of pizza and it starts to slide off the plate don't use your bare hand to move the pizza - gross! You know you saw me watch you do that too!", "type": "review", "business_id": "ImVx220_Pcp2iB5uworODw"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "zing3W2AVxcHwmBHid-Fcg", "review_id": "VehgopRJRc4LZ9UWWwQ_dg", "stars": 1, "date": "2010-07-19", "text": "No, I simply cannot put in a good review for Miracle Mile. \nA coworker recommended this place to me. Actually, two coworkers did.\nHowever, upon inspection of my pie right before I was about to eat it, I noticed that there was mold in it.\n\nYes, mold.\n\nSorry Miracle Mile, your fries were bland and while your chicken tenders were decent, I can't forgive mold in a pie. I did take a picture of it so I will be adding it to this review as soon as I can.\n\nWho knows if I will get my 2.95 for moldy pie back.\n\n*ETA\nMM has been notified and I am to receive a gift certificate for my 2.95. I was given the option of returning it but it's over a 40 min drive.", "type": "review", "business_id": "fmuj7u1gflmEjW-h0v9bwg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Q4c-HD4iycZGrAnNK6d0tw", "review_id": "rai0XuKom2GYz3qQ8lN9LA", "stars": 5, "date": "2010-02-24", "text": "I went here for lunch a couple of weeks ago with my bosses. It was packed on a Friday - we sat at the bar and our cook was fantastic! We got to sit and chat with him while he worked away at the orders. I had the chicken pesto pasty and it was wonderful! the bread used is similar to a pastry dough type...but not as sweet. The pasty was so filling, I could barely finish it.\n\nMy bosses have been there before and have always wanted to try the peanut butter and jelly pasty - so we all split it as dessert and it was so good. They put bananas in it and drizzle jelly over the whole pasty. It's definitely rich and gooey. \n\nI would totally go back here again and have told my friends about it too! Amazing place.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "xhqlSHTBbMACpLN7jU1Nrg", "review_id": "5HA7xJgPQJjcAuaA9j_PSg", "stars": 3, "date": "2010-12-01", "text": "Since I work @ a casino, I'm always checking out the others...Plus, I like to gamble!! \n\nThis place is nice, but seemed to be lacking personality. It's new, so it's very clean, w/all new machines. The few employees I dealt with, seemed extremely bored, and a drink girl was nowhere to be found. Because this place is new, and @ the edge of the Phx. area, they don't have to try very hard, and I think it shows.", "type": "review", "business_id": "8x9Mzb7gX6SEHQIlSDpU8w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "DSH3Fr9H0E_k33VkNwzjlQ", "stars": 5, "date": "2008-08-08", "text": "This is an adorable little gallery located in the middle of nowhere, Downtown Phoenix. My art teacher friend got fixated on bringing me here when she heard me complaining about Phoenix being chain hell (and thanks to her and Yelp, I don't believe that anymore). I think she chose wisely as I loved this little space. \n\nIt was a nice place to stop and check out, and then of course we had lunch at the attached City Bakery. A perfect activity for a half-day of school! Hooray creativity and uniqueness!", "type": "review", "business_id": "6apEKjkj5j1W1sS1dSwWyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DrWLhrK8WMZf7Jb-Oqc7ww", "review_id": "emiRMDbPxivUMVctFJ4uCQ", "stars": 1, "date": "2012-11-19", "text": "Food poisoning alert. There is no doubt in my mind that this incident was caused by the order of potato skins I was served at this un-fine dining establishment. First off, the cook looks like somebody off the street, at least wear an apron buddy. \n Now we are watching the games there and it's about 30 minutes after I eat 4 fairly large skins which I dipped in sour cream and the rumbling in the stomach started. Five minutes later, I was depositing those skins in their tiny toilet and trying to hold on while the games ended. Lastly, another stop was needed on way home to drop off some more skins. This place is full of local drunks, but a good watering hole (yeah literally). Go here to drink and stay away from all food. Also, it was 8 bucks for one order of skins. Why do places charge the same price for apps as they do for sandwiches. It's another sign of a clueless place with poor food and hygiene. Bad choice.", "type": "review", "business_id": "RIeWXLMHZQlYprYt1x2f1w"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "k_irkIDyZ9_bDeE4J29u0g", "stars": 4, "date": "2011-09-07", "text": "I went here last night with my wife to celebrate our 2 year wedding anniversary. We purposely arrived early to have a drink at their bar. There wasn't much of a selection on their happy hour drink menu so we just ordered our go-to drinks. Champagne for her and a martini for me. The hostess/waiter/waitress were very friendly and prompt. When we were ready for dinner we were brought to the main dining area and our bar tab was transferred without trouble.\n\nI made a reservation a few weeks prior and made a notation that it was our anniversary. Upon arrival at our table there was a card saying happy anniversary which was a nice touch. The table was smack in the middle of the dining room so my wife asked if we could move to another table. The host was very accommodating and gave us a better table.\n\nThe place is pretty sheik to the eye but uncomfortable. The 2-top tables are small, too close to other people, and I don't want to sound like a 90 year old, but the chairs are ridiculously uncomfortable. I don't know about you but I like to eat my too expensive meal in utter comfort. The noise level is also above where it should be but they were playing some pretty solid tunes throughout the night.\n\nOur waitress was excellent and knowledgeable but was taking care of way too many tables which made her unable to come around as often as I would have liked. I especially liked our sommelier who gave us an awesome wine recommendation. Also, I'm not sure if this is all the time or not, but all bottles under $300 were 1/2 price so we splurged on a more expensive bottle than we would have normally purchased.\n\nThe Food:\n\n* Fries - they give these to you instead of bread. They are excellent especially the truffle ones. My only issue is that you could tell they were sitting out for a half hour before being served to us. I would have liked them fresh but whatever.\n* Wedge Salad - just ok. The blue cheese and bacon were great though. It just wasn't the typical steak joint wedge I am used to and was looking forward to.\n* Burrata Cheese - this was very unique to me and pretty good\n* Truffled Mac n' Cheese - not the best I've ever had but still pretty good. Not as thick and cheesy as I would have liked and they use weird noodles.\n* Wagyu Beef Trio - My wife and I shared this. Perfect amount for the both of us to share. Each 4oz piece of steak was perfectly cooked, juicy and delicious. I still can't tell the difference between regular beef and wagyu though. The sides were also very good. We especially liked the mushrooms. The mashed potatoes were too creamy and just eh.\n* Beignets - we shared these for desert and they are fluffy, sugary awesomeness. The sauces are equally awesome.\n\nAll-in-all it was a fantastic meal and great experience. Good food, good wine, good company. I would come back any time to enjoy a steak or one of their burgers.", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cKEkbRkYcYtWymUF8Zxolw", "review_id": "vttXONTHncmzMcdBj9hZlA", "stars": 5, "date": "2012-02-09", "text": "Very very nice family owned bookstore that allows you to trade in your books and buy other books for half price. The owners have also recommended many books/authors to my family over the years.\n\nI came in today still seeking a book that I have gone to numerous libraries looking for. I found a copy on the shelf that was much bigger than an ordinary paperback. I asked if they might have any additional copies. The owner was so nice and went in the back room not once but twice to find me the book and it's sequel. I was so thrilled to have found the books!\n\nI believe that almost every year they have a book clearance where they sell off many books for only $1. I won't be in town for it but if anyone is, I recommend checking it out!", "type": "review", "business_id": "NSuT83Bl4LWtMP5nMfzHFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "rGFVSbE73Q4hPuGNVmqMUA", "stars": 4, "date": "2012-10-09", "text": "Our second experience here was much better. We knew to stay away from the traditional fattier foods and stuck with healthier options. We had:\n - Mussels appetizer\n - Stuffed mushrooms appetizer\n - Chicken flatbread\n - Salmon\n - Scallops\n\nEverything had quite a bit of flavor and was prepared well. We would return again!", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LXWAXIeYFIdgd2JVPF-9qA", "review_id": "14Sm7WUBIdqEhyNlFp3fTQ", "stars": 4, "date": "2011-06-20", "text": "I had not been to this location since they remodeled the inside it's really clean and nice... Friendly staff I was impressed. I ordered the chicken finger basket it comes with fries and two pieces of toast... For the sauces I went with the honey mustard and the gravy... I rate the food as followed.\nChicken Fingers - B\nFries - B\nToast - D \nGravy - B\nHoney Mustard - B\nI will be back again for lunch plus I really wanted a blizzard.", "type": "review", "business_id": "fRtuc2k17r6aZMJWEMcXFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "ZMl-Z7yrsiN9BmKDy-fBNg", "stars": 5, "date": "2012-06-20", "text": "OK, so this is how much I love this product. I first tasted Lee's at a Yelp Elite event and waited and dreamed a whole year to eat it again. When I was invited to the next year's Elite Pleydate it was the topic of the first question out of my mouth. \"Is Lee's gonna be there?\" ( Ok, maybe the whole French restaurant's Bone Marrow gravy came to mind too, but I digress) When I made it inside to Pleydate I literally ran to that booth having desert before dinner. I am all about the alcohol infused ice cream now. The funny thing about that is I am not even a big ice cream lover. I will have to visit the shop soon.", "type": "review", "business_id": "qB-qsaSnhbHCt18_AN4Quw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hb49IsEZltm85wLz3uMrmw", "review_id": "YbMpfJnxo7fMrF9q47XuWw", "stars": 5, "date": "2011-09-18", "text": "If you are a big tea drinker like myself then you must check this place out! They offer a HUGE variety of loose teas from all around the world. They have herbal, rooibos, green, black, and white teas. The selection is phenomenal and there is some loose teas here for every type of tea drinker out there. They also offer high quality tea accessories that are beautiful like the teapots and tea mugs which are very classy and not overly expensive. Great place for those looking to pick up a unique gift for a tea lover or for the tea lovers like myself it is like stepping into tea HEAVEN. The owner is also very nice and offers good advice if you are looking for a particular taste or type of tea since there are at least 50-60 loose teas to choose from. Hear my teapot whistling......gotta go!", "type": "review", "business_id": "i0d1RvC0RcjT53S-2GZsgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qdEXAYozQKtDeleky9NacA", "review_id": "uik4l22IUnNUyCK9f6SZIQ", "stars": 5, "date": "2012-07-17", "text": "I go to Regio's a lot; today I went and want to reiterate how great I think it is. I have been going there for a couple years - have never been disappointed in anything I've ordered. Their beans are delicious, as is their menudo (only on Saturday and Sunday, unfortunately), and eveything else: tacos, burritos, enchiladas, chile rellenos, etc, etc, etc. is great. It is so inexpensive it's hard to believe. Today my bff and I had 5 tacos and an order of beans (between us) and it was $10. HELLO! We had the mini-tacos, but we were stuffed and left there saying how wonderful it was and how full we were.\n Check it out next time you're in the mood for some awesome, authentic Mexican food. You will be glad you did. Yummy.", "type": "review", "business_id": "6cy2C9aBXUwkrh4bY1DApw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "04bgNBaA08GfHUndweJZSA", "review_id": "Ocn5WymC5o0Gajwnll1FGA", "stars": 5, "date": "2011-09-07", "text": "Every time I head to ABC cake supply I see this wonderful store on the way. I often say, \"I need to stop there.\" Today I did. It is a wonderful ecclectic store filled with unique items. From baby, wedding, kitchen and on! I picked up some of their mini cupcake stands! LOVE!!!", "type": "review", "business_id": "_4_84uCAFDI2VHHEQz5f2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9tVLD8PjH7Wwn_EAmCHzWA", "review_id": "WAJrBZL6RPM4JUVhCA5SJw", "stars": 4, "date": "2008-04-09", "text": "I think Fate is delicious and great! I love the remodeled house the restaurant is in....super cute! Fate's crab puffs are simply amazing,filled with cream cheese and crab goodness! The hong kong flat rice noodles are scrumptious! The sauce on the flat rice noodles is SO flavorful, I could eat them all day! I don't get all of the bad reviews on Fate. I think those people are simply crazy!", "type": "review", "business_id": "VsO_rhXi5lgbaGxNwoEZsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8eH7olqrxizIdscDZvE-Nw", "review_id": "2zCYD1tuTkHvwlUS9QDk2A", "stars": 3, "date": "2011-04-24", "text": "I only go here when my little cousin is in town and he adores this place. My cousin is 4 years old and obsessed with trains so he loves the small train display, the stationary trains you can walk through and the little train that goes around the park that you can ride on. A definite place to go with little kids especially if they like the trains.", "type": "review", "business_id": "X3icXUyW9vS4UXY6V_MR4w"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "ZREYKjErXkcoeqUw6gRQtw", "review_id": "zHWnS1D62pvrVMBViq1ZLg", "stars": 3, "date": "2011-12-14", "text": "I moved in here a few ago and I do like it for the most part. The grounds are kept clean and tidy, except for some irresponsible pet owners. Some of them even let their pets run around leash-less or cannot control them. But that is not the management's issue.\n\nPros:\n1. The apts are spacious, well-built.\n2. Grounds are clean and grass is maintained.\n3. Pool is well-maintained.\n4. Online system for rent pay and maintenance tickets is great.\n5. Price is great for the value.\n\nCons:\n1. Apts not sound-proof or heat-proof.\n2. Sprinklers tend to sprinkle more water over the sidewalks than the grass area.\n3. Covered parking is extra $$$ and not enough of them anyways.\n4. Uncovered spots are all just crowded in the parking lot at the back.\n5. Security gates are open most of the time from the front and have gaps that could let an adult through on the sides.\n6. Outer compound Walls are not high enough to actually prevent/make it difficult for an intruder.\n7. Fitness center is adequate at best. Most of the free weights and equipment (except the machines) are broken or missing. The machines work ok, but are not maintained well.\n8. Leasing office employees could use a bit more smile and inter-personal skills.", "type": "review", "business_id": "onto4zpPMd1fIfNLxzZcZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mCE9nD2NnYrokWMMMDoEdw", "review_id": "MNjiCQavIbMZpuBGSbGp9Q", "stars": 1, "date": "2012-04-27", "text": "Not worth the money. Food was average and the portion was small for the price I paid.", "type": "review", "business_id": "-PA_1J9JzxLcluTOw2gZjw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "eYtmkXM7xLwb0w-OpAqIIQ", "stars": 5, "date": "2008-09-21", "text": "I love me some Dobson Ranch. As far as municipals in the Valley are concerned, this is as good as it gets (Aguila is a close second). No overbearing marshalls. Rates that top out at $28 in the winter. Above average range and practice area, including two large putting greens. Cheap pitchers of beer. A long-time cart lady who will spray your face with water in the summer! \n\nAs far as the course itself, this is not typical AZ golf - there are no cacti, only tree-lined fairways and some water sprinkled throughout to pose as threats. But there are birdies to be had, and lots of them; #1, 3, 5, 7, 10, 13, 15 and 18 are the best chances in my experience (I consider this my home course). The greens are usually pretty moderate speed to slow - this is grainy bermuda, not some hybrid or bent grass, so prepare to run the putts into the back of the hole. #5 is my favorite hole, a short-par 5 that gives you the chance to hit over a tree left and drive the narrow fairway, leaving you a long to mid-iron into an elevated green that slopes toward you. #8 is a formidable challenge if you have the tendency to block (or slice, as may be the case) the ball from time-to-time, as your ball will face a watery grave. #16 is a tricky tree-lined hole with a tight driving area and doglegs right. And finally, #18, a short par 5 that is easily reachable and where a par feels like a bogey. A scant 6600 yds from the blue tees (but rarely plays it's full length), there are some low scores out there.\n\nA great course, value, practice area, and recently renovated restaurant and bar - 5 stars.", "type": "review", "business_id": "bRk44ShCT0osos-1xaTRyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GAW_mbLDbIoZQ0V0ZhWK8Q", "review_id": "KpnYRPGPVAAh3tl8NUuGHg", "stars": 2, "date": "2007-11-27", "text": "I don't know why i have been here more than once, but the parking is horrible, and the food is only so-so. lots of color and flare but not much going for it. the baja sauce is great but i seem to get sick later that evening when i eat it. i need to learn from experience", "type": "review", "business_id": "roTWGaU-RcJ06l8cjFw7xQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "pehsPum9iW6DVyWil6WhFQ", "stars": 5, "date": "2007-08-13", "text": "Mouth watering. That's all I have to say.\n\nThe food at this place is seriously amazing. Everything we tasted was better than the dish before it, and we had a fabulous bottle of white wine to accompany our meal. The scallops were a highlight, as was the potato pie dish (that's not a very technical name for what it was, but that's my best effort). It was all very, very good, and the only thing keeping us from returning is the cost! We genuinely enjoyed our evening here, and we will absolutely go back, but it is pricey, especially for the size of the dishes.\n\nThe atmosphere and ambiance are so fun, and this place is a little dressier and trendier than some other places we've been in Scottsdale. I highly recommend this for a night out with friends, or a cool date night. It seemed as though reservations would be a good idea, although we didn't have them and were okay (it was busy, though).", "type": "review", "business_id": "V2isTBBfO0NgLzXO9oq1Mg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "WxO2x4xGbHfeWfU_MbuzTQ", "review_id": "1v3rPVXx6RDWjgIUTfVLpw", "stars": 5, "date": "2012-03-25", "text": "IKEA is so much fun. It's a little bit of a walk up and down the store but with all the different items on display there is time to sit and relax on the chairs, couches, beds. I love walking around the store looking a new ideas for my own home. They have very good prices on all household items. When shopping for accessories for the house I highly recommend going to IKEA because you are bound to find something. Simple things such as Tupperware, trash cans, bathroom accessories can all be found at a really good price.", "type": "review", "business_id": "WUZxVr_CaRqEQgzvyeK5tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ltazFFclBfchSYlctX6iA", "review_id": "bmsk5foqmcBgQ_pylNDpCw", "stars": 4, "date": "2012-10-30", "text": "Great atmosphere with interesting lights (look like white jellyfish). Got a Chicken piccata which was delicious. TVs were conveniently placed so we were able to watch the World Series Games. Overall, a fun place to catch up with friends.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r9_tXmlmmm1OTtEzezcnRQ", "review_id": "JxEbBeCjFkREw_AkQ_5kLw", "stars": 4, "date": "2011-04-08", "text": "Service was great, Food was excellent...the down side was the tables were dirty! The place only had one table in use when we arrived!", "type": "review", "business_id": "rhOC6FyEpPuZxm563uwLzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WxqpkFekB8Zd9psbJ5GqAQ", "review_id": "7w6OeliWC3n3EvBEYwegBA", "stars": 2, "date": "2012-09-01", "text": "Not bad, but not great. Service was really friendly, and prompt. Food was \"meh\", maybe I just ordered the wrong thing.", "type": "review", "business_id": "GNZuoHxehd_3Kej7eXj8iQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "mqtQLXrVkEbiGvc9xCxlrg", "stars": 4, "date": "2010-05-08", "text": "This is probably one of my favorite spots in Oldtown. I definitely enjoy the the Thai food here and plus the atmosphere is really chill and homey. Service was never a problem here every time I go. My favorite is the Basil Crispy CK....so simple to make but I love it. Date place? Sure why not :)", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4-Nju_626eCGQRDmodHUug", "review_id": "YjKssTLX9NCT-5gwV5Pwmg", "stars": 4, "date": "2010-05-18", "text": "Friendly, knowlegeable, GREAT coffee, cute place where you can everything from meetings to weddings, take a yoga class, and meet great people on Monday nights for Leashes and Lattes!", "type": "review", "business_id": "bSFuJDDTj6BeKypgBNFBGg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gIEyHQJeyBQ8IhYusvTIGg", "review_id": "mErm3BC2S2I-dCjS6vSu3Q", "stars": 3, "date": "2011-12-09", "text": "Great for Saints and LSU games.", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "AeucYo8J-rZjcq09Wuqsjw", "review_id": "AEnFHfL0xiyAW6m4l3bIZg", "stars": 4, "date": "2011-03-07", "text": "I was impressed with their menu and drink selection. 3 different sized cups, all kinds of flavors. They also have these \"bowls\" which look so enticing! Consists of fruit, granola, acai, honey etc. they have a few different kinds but they look so good for being healthy for ypu :). Honestly, i think they have maybe more to offer than Jamba does. I had the Pina-cool-ada, and i feel in love with it. They break down the calories of each drink depending which size cup you get also. I'm all about information at my fingertips and they had everything I needed/wanted to know laid out nicely. You get a free boost as well.. fat burner, energy etc. They also serve different kinds of pretzels as well. \n\nIt was my first visit here so forgive me because i know i am leaving some things off...but this goes to show you the menu is extensive cause I damn sure cannot remember all of it.\n\nNext time you're in the mood to get your juice on.. Check out Juice it up... see if it titillates your senses as it did mine. :0", "type": "review", "business_id": "8SgxmzOgLUCnkuVMs2NOrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nYfpquFWxQC342RenTI3rA", "review_id": "1EesW6BrZb1sLDO-XIlplA", "stars": 3, "date": "2012-10-19", "text": "Came for dinner with a friend with the $2 off coupon. The service was attentive, friendly, and overall excellent. The english conversation is less than stellar but the fact they took off $2 from both of our meals more than makes up for it. Still a little pricey for two gals with small appetites but not bad. Pani poori, naan, mango lassi, hot chai tea, tikka masala, paneer makani, lamb curry, and many other options available. I would avoid the gross spaghetti noodle option and awkward as it sounds mango flavored other fruit custard. Overall a good experience. My favorite part is that the separators still have bears from when it was a black bear diner!", "type": "review", "business_id": "giyl3pyGo6sbvsnn94f4Hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xz1w0h7wDI22IZKi-CnrHA", "review_id": "bRXiWxnT46VElE8A3mDNSg", "stars": 4, "date": "2011-07-19", "text": "Went to Aiello's for my b-day and really enjoyed the food and service. Everyone was extremely nice and we even got to play their \"bingo\" game for a free dinner (we didn't win). \n\nI had the breaded chicken with marinara sauce which was HUGE! Portions at this place are insane, I don't think that I even ate half. The fillet Mignon is heaven in your mouth, it was butterflied and topped with mushrooms ( a little too much mushrooms though). \n\nOverall, this is a great place to dine at, small little romantic place with good music also. A little pricey, but I believe it's worth it for the atmosphere, food, and friendly service. :)", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "sfKMl7ERKuwxIh3HLXUg-Q", "review_id": "r9SHp4FJzcpob1XBe_YZww", "stars": 4, "date": "2008-07-09", "text": "Run by the Mormons, they keep it really well stocked and organized. I got a couple of cool chairs there, a pair of fake leather cowboy boots, 3 belted pencil skirts, 4 or 5 pairs of chunky 80's earrings, a man's plaid shirt that fits me perfectly, countless other things. It is a thrift store, so there are the usual things that would take away from the experience, but the prices are reasonable and not fixed by item, like Goodwill. I've seen some really nice living room couches, sets, even, but never had a need. At one point, they had 40 or 50 framed prints of the same 5 paintings, one is a Van Gogh floral still life with a green background. I'd never seen it, my mom picked one up, though. \n\nI am a masochist, so I love to peruse the \"As-Is\" and the yard where they keep a lot of bigger, crappier stuff.", "type": "review", "business_id": "_ZP5cN3wMmHlOEgP-yH9Gg"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "oAsNmwLYYaL0i6zaXkK2_Q", "stars": 4, "date": "2010-08-08", "text": "Well this is truly a hidden gem in Old Town Scottsdale. The wife and I visited this establishment last Sunday after church. There is usually a long wait here...but we arrived about 10 am and there was no wait. We were seated very quickly and the service was very good...there was a little wait for our food but no complaints about that though. I had 2 great buttermilk pancakes, turkey sausage, eggs, potatoes, and hash...the price....only 9 bucks plus tax...a really great deal. So if your ever in Old Town Scottsdale and need a great breakfast to get your day started...visit this establishment. Eat, Drink, and Be Merry my Friends!!!!!", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HQ5ocr3bT7TrZe8MT3DDSA", "review_id": "zPwtgoxIwCQNGXKIIqlKeQ", "stars": 5, "date": "2012-12-10", "text": "This review is for Gil's catering - which is fantastic. \n\nOur perfect event for a new product launch needed to be casual, but tasty and high quality. Gil's was all of these things. The food presentation is pretty without pretension. Everything was fantastic. Best of all, Gil worked with us to plan an event within our budget. \n\nFare is traditional with a tasty twist - our group loved the chimis, taquitos, enchiladas and especially the chips. \n\nWe expected 2 servers and 4 showed up - including Gil. They over delivered in every sense.", "type": "review", "business_id": "NBwPgX7L2D-EZedgo3A-pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n4Y05XFlXMWVi7xiY62jfg", "review_id": "tgkwWhT0dwlwx4S1MiuEIA", "stars": 5, "date": "2011-07-21", "text": "Enjoyed the egg rolls. So glad that they were made out of fried rice paper because I have food allergies. The entree of BBQ beef with rice noodles was also very good. I will be going back this weekend with the hubby for sure. Very clean and nicely decorated restaurant. Very nice waitress. The restaurant smelled really good too: spices maybe? A bit warmer than I would like inside. Maybe they need to turn up the A/C.", "type": "review", "business_id": "3OauvrqUU8nDLWcW6q9hGQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "fE2PDQ6wbT3M1ICH3-vmSw", "stars": 5, "date": "2012-12-09", "text": "My wife and I celebrated our anniversary here for the first time. I have nothing but good things to say. Food, wait staff and overall experience were excellent. This is an old school type of steakhouse with red velvet wallpaper, leather booths, etc. If you haven't been, I can't recommend it highly enough. Give it a try and you'll be glad you did!", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qz_WQ6blpBBSaEwsofbB_w", "review_id": "3jJ1SkAoPXmfXniRA6LzUw", "stars": 4, "date": "2012-03-16", "text": "We stopped here on our way back from Wildlife World Zoo after seeing they changed the restaurant there and it doesn't have very good reviews. This was a great alternative. Plenty of food and a nice variety. I enjoyed it.", "type": "review", "business_id": "OPKUjv6D5G46Lh2BHP20fA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k9cMboDc6uqa-6BggMxxaA", "review_id": "hew9a4Gi3x06fHnMXtKxjQ", "stars": 3, "date": "2011-09-18", "text": "I live in downtown Phoenix; Boyfriend lives in Tempe. After two years of getting our date on at places like Postino's, St. Francis, the Rokerij, Dick's Hideaway, and Padre's, we decided we needed a Tempe date place. Friday night we decided to check out La Bocca.\n\nIn short. it's okay. Nice environment, good service, pretty good pizza, and great ice cream flight for dessert. But this is tempered with over priced wine (almost $20 for two glasses of HOUSE wine?), small pieces of bruschetta (tasty - scratch that - REALLY tasty, but the slices are teeny tiny), and it's on Mill, so most of the other patrons are frat guys trying to impress sorority sisters, and if you're lucky, you'll get to see a couple of Greeks making out. Yum? There was a table of older people tucked into a corner who didn't seem to mind the age gap, but in my late-20s, I was not very much amused.\n\nThe good service, cool atmosphere, tasty bruschetta choices, and creative, thin crust pizza get this place three stars. The over priced wine and bruschetta (seriously, we usually get bruschetta at Postino's for the same price for 4 people, and then I am too full to order dinner, but at La Bocca I was ready for round two after my half of the plate), and the fact that it's on Mill keeps it from 5 stars. We both really wanted to like this place, but I think next time we want to get dressed up and go out on the East side, we'll try somewhere else. In the meantime, we'll stick to downtown.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "zG7NW5vCKJZRcBR95qEuMw", "review_id": "Udhg5DaC_2CLRYbnRhPnZw", "stars": 4, "date": "2011-03-11", "text": "I've been coming to this place since college, and I can tell you its definitely one of those \"an oldie but a goodie\". So, its not a fancy schmancy place with hip party music playing and it doesn't serve mixed drinks with cute names like \"hello kitty\", but it should be a staple to anyone's lunch place repertoire. \n\nThey serve bento boxes (basically a lunch box with rice, your choice of entree, salad and slices of oranges--a healthy dessert!) for $3.75. If you're feeling like a high roller, you can order the sashimi bento box, and that will set you back a whopping $6.\n\nWho says you can't eat good for cheap?", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pDSMS-IW5wyZK0XBi4jnDw", "review_id": "Q0bdZy0Dq6n-lzqDfpe6-w", "stars": 2, "date": "2008-12-16", "text": "Good place to go if you're hungry and don't want to cook breakfast. Not great due to the fact that most of their food is straight from the freezer to the frying pan and just so-so. Small portions of bland food. Great people and great service. Just altogether blah food.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "dxZf5rDCEDqgKSztAznYfg", "stars": 5, "date": "2012-02-20", "text": "We came here the weekend of the Grand Opening. I will say we were very impressed and there was so much to choose from at this new and improved Pets Mart. There is a Hotel here for Cats and Dogs. There is a Banner Pet hospital, and there is a Grooming station ,as well as a Dog training store as well. Talk about your one stop shopping. I even got to hold a beautiful baby girl Pug just 6 weeks old. She was absolutly adorable. We took a picture but have not figured out how to download it yet. Nice and Clean all throughout the store . We purchased a few items and then we were on our way. Lots of Parking in the lot. Plus nice clean human bathrooms.", "type": "review", "business_id": "jMqcipWlVtodzRFM3snKcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QqAL6vvUE_lJbAFSucWysA", "review_id": "Y5YaED054tq-jA2iQDIrMg", "stars": 5, "date": "2011-04-01", "text": "A great family owned restaurant! Their lunch specials are very reasonable. I recommend this place to anyone looking for good Japanese food. My only request is that they open a restaurant closer to Tempe - I would go so much more often.", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "ZAmRRDcDyioeAhqHx7f_Pg", "stars": 4, "date": "2011-08-21", "text": "When I called to place an order last night I was put on hold briefly, however, this time my call was actually answered!!!! When I walked in, the one girl at the desk seemed somewhat awake!!! Keep up the good work Cantina Laredo!\n\nMy queso and guac were delicious!!!", "type": "review", "business_id": "EGiGWZp_zSqdeftiFQ7MbA"} +{"votes": {"funny": 4, "useful": 6, "cool": 3}, "user_id": "VBKbZD9X4zruXYORIhJhhg", "review_id": "WxVChik_0ZMOceJWxukG6w", "stars": 1, "date": "2008-11-19", "text": "Glad this place has new ownership... I should probably remove the review below, Its really harsh and doesn't apply to the NEW establishment. You have been warned ;) \n----------------------------------------------------------------------------------------------------------\n\nShort Review:\n\nTHIS PLACE SUCKS BALLS\n\nLong Review:\nWe were supposed to meet a friend here at Draft House on Saturday night. We were excited to be out on a date-like experience cuz its been a while. We went to my in-laws for dinner and then headed to Draft... I knew it was going to be interesting from the sound of the music as we pulled into the strip mall. \n\nThe music: Good music, probably the only good thing about this place - if you're a hip-hop fan. All hip-hop, all night. \n\nThe crowd: Ghetto fab all the way! Seems like everyone there is late 20's - early 30's (and some older sprinkled throughout the crowd) and none realize its not 1996 anymore. Expect to hear a lot of fake accents a la Da Bronx and a lot of misuse of slang terms. It was entertaining until it became annoying. Oh and people WILL steal your seats or tell you they are saved - ugh!\n\nThe atmosphere: small, crowded... Small dance floor. A couple pool tables, but don't expect to get one. Some TVs playing various sports, which I guess qualifies this place as a \"sports cafe\"?? \n\nThe service: OMG, we had one beer each and the \"line\" was retarded, over 30 minutes to tab out. No line in sight, just people crowding together, trying to get to the front of the line. Oh! and LOL.. the bar tenders are total morons, one of them complained to the guy next to us about his crappy tip and the other argued with his customer about whether they ordered rum and cokes or redbull and vodka. The guy had already made the rum and cokes and was pissed that HE got it wrong. Weirdos!\n\nIf any of this appeals to you this is your place! \n\nBTW her friend didn't show and we ended up going to Skip n Jan's to play some pool :o) We had a great time there :o)", "type": "review", "business_id": "2qbajPD8M7PJlWWaHSRR5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mex8qXT7nR89uTKX_qtgSA", "review_id": "2_aftEi4GMt_tsKIQwheCw", "stars": 5, "date": "2010-12-21", "text": "My work got some Christmas allowance and instead of doing a dinner we decided to get a really nice lunch for our branch. We decided on Oregano's cause it was on the way. \n\nI had the stuffed Italian sandwich and it blew my mind. I couldn't believe how bug this sandwich was, it provided me with two wonderful lunches. \n\nIt looks like some of my coworkers got the sausage sandwich and the steak sandwich and one person got a pasta dish and couldn't even eat a quarter of it because they gave so much. \n\nAfter that experience I am going to make more of an effort to get to the restaurant instead of getting it to go.", "type": "review", "business_id": "LMG0zsAkUSscIvmV9vvm3A"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "BWo7K_QGZCO2PG1osiwRuQ", "review_id": "gCojMOY9-heb9eLIg3owcA", "stars": 3, "date": "2012-08-05", "text": "Do to have that ONE review you just keep putting off and dont care to write it? Thats the post office for me. You get what you get, and you get it here. It's like a review of a place that no matter what any of us write, it'll never change. \n\nOne thing I'd LOVE to see, especially once the Snow Birds return... A speed line. Just a basic line for basic transactions. I always use the automatic machines as often as I can, but it always seems the times I have to wait in line, it's always out the door and takes forever. \n\nStick to mornings and late afternoons. Skip on weekends!", "type": "review", "business_id": "GzVGqT454Ld3I1yrDmz5vA"} +{"votes": {"funny": 8, "useful": 8, "cool": 6}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "tB1RGzfF-wpGSA_6pXH88A", "stars": 2, "date": "2009-02-07", "text": "I needed an oil change reeeeaaaally badly (i know, but i have a honda and those things can run on gas fumes for 30 miles and oil resin for months) and had had an OK experience at the danny's family on HIghland (free wash with a oil change, who doesn't love that?)\n\nBut. I checked the Danny's site and saw no promotion of the wash and didn't want to drive out of my way for nothing. i checked yelp and this Jiffy Lube had the best rating i could expect for an oil change place and was up the road from work. Downloaded the coupon (thanks for the tip, Kym) and was on my way.\n\nPull in and i tell the guy i want the \"Signature\" change which includes window wash and floor vacuum, mentioning my $5 off coupon. He said that they were already running a special that was $13 off the $35 price so i said a-ok, cowboy. \n\ni wait for about 8-10 minutes in the small waiting room (bonus for having a Phoenix Magazine in the stack of Muscle Car Monthly, Oil Today and Antennas Weekly - look, just because i'm getting routine maintenance on my car does not mean i'm INTO cars).\n\nI get pulled into the garage area for the \"spiel\" everybody dreads but it was surprisingly short and non-pushy. (i'm glad they don't drag you over to your engine anymore, that's totally lame). i do have to note that he tried to tell me my right front blinker, my left back blinker and my license plate lights were out. i had JUST gone to Checker to replace my left front blinker light and went through some extensive light checking and so found this news odd. i kept saying as much, and he kept insisting and i was about to ask to see for myself when he calls out to another worker \"Hey, was that the honda with the lights or the jeep?\" the other guy says \"the jeep.\" however, there was no other car in the place. hmmmmmmmm.\n\nOK, so i pay up ($24 altogether with a tax or fee or something added in) and go back into the waiting area while they finish up. I decide to use the bathroom -- and this is where the they lost two stars (this was, up until then, quite possibly a four-star experience - wait, two stars for a bathroom, you ask? oh, you just wait...)\n\nthe bathroom was filthiest thing i have seen in my life, and i've been to some raunch truck stop pee holes. literally, piss, in the bowl... i get in closer and i shit you not (pun intended) four shit smears in the bowl as well (yeah, i counted). two rolls of TP hanging out on top of the dispenser, each with one square left on them. realizing i need to sterilize my hands from just walking into this mess, i discover no soap or paper towels (not very surprising). as well, hair clippings all over the sink, like the guys are trimming their moustaches on their break. un-freaking-believable. i am still haunted by this bathroom experience.\n\nbut car's running great!", "type": "review", "business_id": "Kau5iJl6VR-TJ20YGrL7MQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YnuPa08WRFw_VYQsb3rcoA", "review_id": "mYQUMTcBhBp_NTaj7gQr8Q", "stars": 1, "date": "2012-07-20", "text": "I will precede this lackluster review by stating the following:\n\n1)I have only been to this place once.\n2)I didn't get a chance to actually try the cuisine.\n3)I am a sympathetic person to servers, as I have been one.\n\nThat being said, I give this place one star for reasons of poor service.\n\nAbout six months ago, at around 4pm on a Sunday afternoon, we decided to eat at this place. The atmosphere was warm and cozy; typical college bar with college-aged waitresses.\n\nWe made sandwich selections and ordered happy hour beers. The beers came, the food never did, and we watched other patrons come in, eat, and leave. All the while, our waitress never came by to give us an explanation or even get us another round of drinks (we got them ourselves from the bar). \n\nSince my bf and I both worked in food service, we are always sympathetic when we can see that a place is under-staffed. But after an hour of waiting, we finally crossed the room to speak with our server. She said, \"I can't imagine it will be much longer.\" I think the more professional approach would have been an apology and admitting to forgetting to put in our ticket, which is what we gathered when we saw her speaking frantically with the cook.\n\nWhere was the manager that day? Or someone who noticed that we sat there so long without our food or any communication at all?\n\nWe left money on the table for our beers and walked out. I guess there is a first time for everything.", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 8, "useful": 7, "cool": 7}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "HwZKlZ4F3RH3adez4cC4FA", "stars": 5, "date": "2011-10-09", "text": "As I passed the velvet rope flanked by shiny, exotic cars I knew I was in for an experience. Some might call it a fine-dining experience, but clearly this was something more. A tribute to opulence and Regan-era excess, Dominick's is your seven-figure foodie fantasy come alive; from the moment you enter the swanky foyer to the gleaming 10 inch tower of tiramisu that finishes your meal. It's glittery, bedazzled, and oozing pretension - and I loved it.\n\nThe Service\nMy visit to Dominick's was the night after it's official opening. The service tried very hard to be as impeccable as the surroundings and, while not perfect, the charming staff and the sincere effort put forth made little things like missing napkins and bread plates instantly forgivable. Our server, Drew, let us know that the wait staff only had 2 - 3 tables each and it was very evident in the personal service we received. A few more weeks of experience for the staff should easily iron out the little wrinkles.\n\nThe Food\nWe started with the jumbo shrimp appetizer, which unfortunately came with 3 shrimp - hardly conducive to sharing - so we ordered two. And \"Jumbo\" they certainly were, accompanied by a kicky cocktail sauce which my dinner companion felt was spicy enough. Ever the daredevil, I added additional horseradish to mine because who doesn't like to burn the inside of their nostrils at dinner.\nFor the main course we both had the 9-oz filet, lobster gnocchi and steamed asparagus. My filet was a perfect rare-plus with a dark pink center, expertly seared and juicy.\nSurprisingly the lobster gnocchi really stole the show for me. I'm not big on starches or cream sauces so when it was suggested I wasn't particularly excited; I should have been. The dough was light and fluffy, the cream sauce not too rich and the lobster added the perfect amount of salt & texture.\nAfter dinner I indulged in a grand marnier while my companion ordered the tiramisu. He was presented with a 10 inch tall hunk of cake that could easily have been intended for 4 people. The tiramisu was spongy and light, with a lovely cool custard and only a subtle flavor of rum. A nice finish to an excellent meal. \n\nAtmosphere\nWe were lucky enough to score a poolside table which started off as very romantic but over the course of the evening became quite the place for people watching. The scene at the small bar area on the 2nd floor was bustling and both the waiters and I wondered aloud how long it would be before a guest fell in the pool. I bet they didn't make it through the weekend without someone making a splash.", "type": "review", "business_id": "WSHQ9qpL39g5xA3E5iBCmw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DFOHCl7siB7Jt7ggQ8fEyA", "review_id": "77pW4aInLqX4bX17tJCd6A", "stars": 5, "date": "2012-12-30", "text": "I Love this place. I eat here either take in or take out at least 2 times a week!\n\nI also agree with some of the others. I love the fact that I can try something new without committing! I love the revolving sushi. I also do not like that there are a lot of spicy selections. Why not offer the spice on the side. I would love some of the sushi, but it has that spicy sauce on it.\n\nSome of the best to offer that some people might not know about:\n\nHaru sushi - Tuna stuffed with crab and topped with avocado!\nHand rolls - YUM!!! Some are only 2.50\nUdon - Good!\n\nThe staff is great. The wait can be long on some days or eves.\n\nLove the baked scallops. Great mussels too.", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9wl224U7ZQrNggpWVsiLTg", "review_id": "veV0Ny77CkehL-71n8FJMQ", "stars": 5, "date": "2012-03-23", "text": "Very nice neighborhood spot. The mussels are great and both pork dishes we tried were outstanding. The Bacon-Cheddar biscuits make the meal and Fig pecan pie is the perfect finish.", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "s0yUJlCABN8oVjcNocRpxg", "review_id": "clNitliTZ7Cp0afx1RL-6g", "stars": 5, "date": "2008-04-10", "text": "I had a tough time deciding between 4 and 5 stars. Wish there was 4.5 stars available for me to choose.\n\nWent here on a business trip with a coworker and tried it out. I had at least one of the following:\nSapporo - Can it ever be bad? It was served very cold. Thumbs up.\nGreen Tea - Good. Good service on the refills also.\nEdamame - Good. Right amount of salt.\nMiso - Interesting wooden bowl and wooden spoon. It tasted good, tho.\nYellow Tail, Salmon, Tuna, Albacore, Uni, FW Eel, Kampachi nigiri. Good stuff on all of those. They also have \"Yasu style\" nigiri for some types, and they are good. It usually involves ponzu on top.\nSpicy Tuna and Softshell Crab roll. SSC was great!\n\nService was pretty good and sushi was also good. The bar was full but I wish I could have eaten there. The sushi chefs were friendly and talkative to the people at the bar, which is unusual (at least compared to LA). The base quality of the fish, outside of whatever ponzu, soy, wasabi and other ingredients were on it, was pretty good, but I wouldn't say 5 stars. Since I generally judge a place wholly on the food, I give it 4.5. Failing that, I rounded up!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onWc8uutW3q9q8KYdxqvZA", "review_id": "cpglG9iRJxmZYMTSh1h6_Q", "stars": 2, "date": "2011-05-09", "text": "I give up. When you can still see the dough through the sauce and the cheese and the $2.00 extra cheese, and when the manager looks at it and says \"yeah, that's extra cheese\", I won't be going back. Sorry.", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bYZN1gwIQRS_miEPqeV9og", "review_id": "qBqgN3dJWpa0YVg8lLmDJg", "stars": 2, "date": "2011-12-29", "text": "Very average. Food was overdone and waitress stopped chomping her gum only long enough to take our order.", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IMeUbv6u0uIIoMFKBOZhtw", "review_id": "33dp9suA85sOjSB99ee7jg", "stars": 5, "date": "2012-08-18", "text": "I love this place. The first time I went, I had my mom and my sister with me. We all got pedicures and by far the best foot massages I've had at any of these nail places. The thing that really impresses me the most is that after only one visit... the next time I came in- they greeted me by my name. How often does that happen? Hello, customer service- welcome back. It's husband and wife owned and operated and they are as nice as can be. Love it here. Great atmosphere, friendly, good service, affordable. You won't be disappointed.", "type": "review", "business_id": "atIp_n45JaHeY86-Gd4Xxg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZNG23JOioaJs6dbAVWRMfg", "review_id": "CI0J5Foz7teDOLqJGS6hig", "stars": 4, "date": "2012-06-30", "text": "I love this place! Authentic mexican food at inexpensive prices. Friendly and attentive staff. The cleanest Filiberto's I have seen. I visit at least once a week during the lunch hour. The Chile Rellenos are awesome, lightly battered, lots of spicy sauce... just simply delicious. Taco Tuesdays (99 cent tacos) are a great bargain. Complimentary salsa bar with multiple hot sauce type salsas, sliced cucumbers, and a fantastic spicy carrot/onion/jalapeno/chile salad... all free. My only complaint is the salsa bar, soda fountains and cashier area, which are all located up front, can get very congested... I wish they could rearrange that somehow. Oh, plus it would be nice to offer a chunky (pico de gallo) type salsa on the salsa bar, similar to Baja Fresh. Check out the website for coupons - great deals! You also will receive a bright orange (can't miss it) set of coupons with each purchase, to use on your next visit. I'm a fan!", "type": "review", "business_id": "suivIX2e8mQKGvbMvbcm2Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UpHMvyLaYYVPkt7YPnMkWQ", "review_id": "pFy_H_e8HMd6js-Vw6Ej7Q", "stars": 4, "date": "2011-05-30", "text": "We ate there last night and were very pleased our meals and service. The ribs were especially good. We would go back again.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "RQi82OtF2qvOBv6VEE0pyw", "review_id": "eoF-0QA3uk53E3TgM7ardw", "stars": 5, "date": "2011-07-18", "text": "Mid-priced dining with high end flavor. I ordered the special Yelp menu. Started off with mixed green salad with fig dressing. Very good. Moved on the the \"smart\" chicken. Tender, char grilled breast with corn risotto. Yum! Topped it off with a perfect chocolate de creme. Staff was friendly and very on top of things. Great experience. I'm definitely coming back. give these guys some love!", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rxNiJzemV2g9mxDEzpWetQ", "review_id": "DZheznh2w87MnVsDCLRwOQ", "stars": 4, "date": "2011-08-15", "text": "Coming from NY, I tried out the bubble tea to see how it compares to back home with kung fu tea and quicklys in flushing.\n\nits actually pretty good, but with one downside.\ni got the taro milk tea, and my friend got the honey milk tea.\n\nthe taro milk tea is very popular in flushing, so I decided to try it out to see how it compares.. and it wasn't that great.\nI don't know if it's how the drink is supposed to be served, or if its because the maker of my drink added too much powder. but my drink was really bad.\n\nbut my friends drink was outstanding, probably the best milk tea i've ever had.", "type": "review", "business_id": "3NqERLqdtQSe0w9540rZrQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "N1Q6HiZvnZHjNU712Gymqw", "review_id": "ajwVxL2kJwOiV5Fik-24gA", "stars": 5, "date": "2009-11-24", "text": "Still loving Sunflower after a year and a half. I actually moved houses to be closer to this grocery store. The staff have never complained about going an extra mile, the prices have stayed better than any store I've been to lately and they have been having great beer specials.\n\nSpecial note: They have a large selection of homeopathic and environmentally sound products for your everyday corporal adjustments. Tons of specialty soaps, herbal supplements and vitamins. Check for the solution here before going to chain pharmacies!", "type": "review", "business_id": "dsh91PoFIn_gHCFEM0okHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-7LfdqX286W8zJ01ljY_SQ", "review_id": "rRlTFCOFmRC7EhOMyiAGig", "stars": 4, "date": "2012-10-21", "text": "Excellent atmosphere, eclectic menu, and reasonable prices. Welcome to The Parlor! Pizza seems to be their specialty but the menu offers so much more. Friends swear by the duck club sandwich, and my wife loves the sausage pizza. If you visit during peak times expect a wait, but head to the bar for a drink until your table is ready. Staff is super friendly- our server forgot to deliver apps we ordered and made it right by providing free apps (equal value) for our next visit. He was apologetic and owned up to the mistake (he simply forgot to add to computer) - it happens but he handled it well. I'll be back!", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QEDVhdE7tK6aQp1WuJY69g", "review_id": "6tuNa-Z2Zw2I7zPBMbkZrg", "stars": 5, "date": "2007-07-24", "text": "Ace and fried mushrooms at Casey's. My version of heaven. \n\nThe food is good and the beer is even better, but what people really go for is the ambiance. The most awesome potpourri of people. Old, young, but always interesting.\n\nSay hi to Thomas the cat for me! He's chilling with the patrons when ever it's not too crowded.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "U0JnlmQGQpzybrHD4VscUg", "stars": 4, "date": "2011-12-01", "text": "Extremely friendly staff, very comfortable decor, and delicious food! I enjoyed a sampling of a few different mezes and a greek salad - just wonderful!", "type": "review", "business_id": "KLaxBc83JnxyGf7GP7enYA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "BUoR_PD2ZMlTEg5JhmtlLg", "stars": 3, "date": "2008-10-19", "text": "Cave Creek is a well-manicured muni, featuring a straight-forward layout, nice practice area and large putting green. There are some elevation changes and some bunkering that add some challenge, but overall it's a pretty easy course.\n\nSome of the better holes are #5, a dogleg right with no room to drive it left (slopes into a hazard), and large green with some tricky pin positions if the flag is in the back. #8 is a long par four with a narrow driving area and a challenging approach featuring a narrow chute to the green that will most likely need to be hit with a mid-to-long iron (#1 handicap). #11 is a par 5 that forces you consider fairway metal off the tee, as a driver hit over 260 yds and to the right could likely find a water hazard, and anything left is completely dead. My personal favorite hole is #18, a short four par with a carry over a ravine from the tee to an uphill, dogleg left fairway with a slope on the left side and a reachable fairway bunker. \n\nMost of the greens here are fairly large, so lag putting will come into play. There aren't any tricks here - it can suit fairway-green style and the bomb-and-gouge crowd. The driving range desperately needs new balls, but the course is a solid three stars.", "type": "review", "business_id": "AjHhlZJ7FSp7l6f2OBm3bQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IhcTLLWKS6ZiNyIX9oQQPQ", "review_id": "psmnvVPbuXMWIpO6HqvItA", "stars": 4, "date": "2010-07-31", "text": "I went again on Friday and YUM! I got the same ginger chicken and it was just as delicious as before. I need to venture out and try something else on the menu.", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 3, "useful": 3, "cool": 0}, "user_id": "34gJ_KlP3RM6jotNT6TcDQ", "review_id": "-hwao-SCJR_pFmQxZdRj3g", "stars": 2, "date": "2012-03-20", "text": "I have mixed feeling about the W Scottsdale. During the day the pool area is poorly run, but in the evenings the pool turns into a pretty fun nightlife spot. \n\nDaytime:\nThe pool is always jam packed with a fairly disgusting crowd and the dudes out number the babes by a 3 to 1 count I'd say. That's no fun. Oh, and by dudes, I mean douche bags. And Babes? More like gross skanks covered in makeup at the pool. Ok, I guess I'm being a hater, but spend a few hours here and you might be kind of disgusted with the scene too. It's just really amateur hour here with the piss poor service and their bad attitudes and obnoxious patrons. The only reason I came was because a friend likes to stay at the W when visiting and he too noted the quality of this place has declined over the years. He has stayed at four different W locations (NY, South Beach, Westwood) and said this one is the \"worst and trashiest\". It took an hour before any waitress came over to ask if we wanted any drinks or food. When started to get service it was always a long wait for our pitcher of margaritas or buckets of beer and food. Speaking of the food, the fries, fish tacos and club sandwich are all great. The grilled cheese, not so much. The first $42 pitcher of margaritas was weak, hardly tasting any alcohol. The second pitcher was stronger. To be fair, the Saturday service was much better.\n\nNighttime:\nMuch improved scene, but still not great. There are a lot of out-of-towners since it is a hotel, but still plenty of locals too. I think it's a good mixture. Pants and collared shirts are required, so that usually gets rid of most of the tank top, neck tat wannabes from earlier in the day at the pool. But really, you are just trading one group of wannabes for another. Man, I'm a hater huh? Oh well, you can handle it. Drinks are overpriced, but this is the W. Be ready to spend lots o' cash.\n\nRooms:\nI've been in a few rooms at this hotel. Each have been nice and clean, but pretty small.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "TdDAZBKQuNE-N7wr_IfF2g", "stars": 5, "date": "2012-12-14", "text": "Top notch cheesesteak. One of the best in the valley. This place has a large delivery area, and is located right by campus. The owners are really nice and friendly. I'm really glad something moved into this spot. It's so convenient. \n\nTheir desserts are great as well. I wish they had some chicken options, but they are new and said they would be adding to the menu as time goes on. My girlfriend said the turkey sandwich was fantastic. They sometimes carry Tasty Kake, so ask about that. \n\nI've had the authentic cheesesteaks from Philly, and this tastes every bit as good if not better. It's definitely in my top 5 local cheesesteaks.\n\nEdit: Just ordered delivery - Lightning fast! This place is incredibly legit. I went with a cheesesteak with White American cheese instead of \"wiz\" this time - So incredibly good. They tossed in a new dessert they didn't have last time which was awesome. \n\nTheir prices are really good and their food is so delicious. I'm a huge fan. I'm not kidding with this 5 star rating - I love this place. Rave rave rave...", "type": "review", "business_id": "pbVL3t783OyO701yK5W08g"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "_zZxNAdfBhduQTzH24ASzA", "stars": 5, "date": "2008-01-03", "text": "The Westin Kierland is a beautiful resort located in PHOENIX, not Scottsdale. \n\nSome close friends of mine from Canada stayed in this PHOENIX resort for a few days, so I've hung out in its rooms and generally lounged about the property. The rooms were impressive, beautifully decorated, and spacious. We especially enjoyed taking the kids out to small fire pits maintained on the grounds, where guests to our fine city of PHOENIX can roast marshmallows. \n\nThe Kierland has some tough competition, considering that the city of PHOENIX has every one of the most famous resorts in the Valley, from the Biltmore, to the Phoenician to the Royal Palms. It does pretty well in a tough line-up. No offense to Scottsdale, which also has some great resorts such as the Four Seasons. It's just that the most famous ones are in PHOENIX.\n\n[For further information, please visit: http://phoenix.gov/BNDMAPS/index.html]", "type": "review", "business_id": "SYqTY48DJa1cYhglvmgvsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UDBYhBP8avCa-2iZb71Ixw", "review_id": "vTCHP8Xv3bw4xA2Vc0JXqA", "stars": 5, "date": "2011-02-23", "text": "Sprouts is my favorite market to shop at! They are a great company who have a very friendly staff in their stores as well as their corporate office. They are also very involved with the community and with local farmers and businesses!\n\nThe prices for all the fresh and natural groceries they carry are the most reasonable out of all the grocery stores I have been too! The Vitamin Department has everything you could ever look for to help your well being and they are always extravaganzas in the stores so you are always getting the most out of your money, and in times like these I know people are very appreciative of that since groceries are becoming more and more expensive everyday, or so it seems!\n\nI most definitely recommend anyone to shop at Sprouts!", "type": "review", "business_id": "JXBdcBb3ivm89fhr6-yfSQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "28MSq7NWzcLCGYXkX2p9KQ", "review_id": "A-wOtYNvykVyHT8015Chtg", "stars": 2, "date": "2008-07-12", "text": "I've been to three Pizza Picazzo locations, and this one absolutely blew,. The reason? Service with a capital S. I invited a very large group out to lunch (made reservations the day before). The waitress was rude, rude, rude and completely incompetent. When someone asked how large the slices were, she answered 'regular.\" We kept waiting for her to laugh or smile, but she never did. It turned out \"regular\" was her answer to just about everything -- we now use \"regular\" as an inside joke at the office. She also kept us waiting AT LEAST an hour and a half for the check and was largely a mirage during the entire meal. Worst service EVER. \n\nFood was good (though I agree that it could be considered overpriced), but that was completely overshadowed by the horrible service.", "type": "review", "business_id": "Xbxve72Hp5cWWj96ThGNtg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dbgrCZFswU_5WrKmSTf_fg", "review_id": "5ExxIOu6P1OQ0Zg0OoQBeA", "stars": 1, "date": "2012-03-11", "text": "Went to Fatburger with our family tonight and will not return. \n\nAverage food. The burgers were average. The lettuce was wilted, the tomato was green, and nothing outstanding about the flavor. I'd say better options nearby are Joe's farm grill, In-n-out, or Culvers. \n\nCleanliness was average. The floor was a little sticky and the beverage area was kept very neat. The kitchen appeared clean. \n\nService was below average/horrible. The cashier was very unpleasant. We all ordered at the same time and the first half of the food came out about 15 minutes prior to the 2nd part. It was pretty slow. By the time we got the fries they were cold. The staff literally acted like they were a bunch of highschoolers who were annoyed that there were any customers who interrupted their hangout. \n\nI know this sounds harsh...it is. My experience was absolutely horrible. We will not be back and I don't recommend that you should either.", "type": "review", "business_id": "r3FHkf6lbmMUh3oPSrlIvw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e1ojEz8owjWsHsaxaRiFmg", "review_id": "1mIrLeJ8X1du1eKwnfNS4w", "stars": 5, "date": "2010-11-22", "text": "I love this place. Great food, great service from some of the nicest staff, and just a fun place to go. It is also a place I like to meet people for happy hour. They have a wonderful selection of beers, fantastic wines, and I have never once had anything but great food while eating there.", "type": "review", "business_id": "rVUEZpHQfWI_3kt0lBwaxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "UyhQoX5DDDtcR_7p3KHchw", "stars": 4, "date": "2012-05-20", "text": "This is by far my hubby's favorite lake for bass fishing. I am not a fan of waking up at 4am in the morning to get there by 5am...not for fishing. Yes, that is all my boys do here. It gets really packed on the weekends by 9am. When the water is low, it is not easily accesible from the picnic spots. It also gets super windy, enough to go windsurfing (too bad it's a long treck for us). You really have to have a boat to enjoy this lake. The absence of shade trees make the heat uncomfortable in the middle of summer, you might as well go to Canyon or Saguaro (my faves).\n\nI love the sharp edged cliffs juxtaposed against the crystal clear water. Good photo ops.\n\nWhy the 4 stars? Like I said, my hubby loves fishing here for the bass. For some reason, little bluegills like me. I also like the floating porta-john and porta-jane...weird, but cool! Whoever does the draining has a crappy job.\n\nAll in all, it is a nice big lake and by far one of the cleanest too.", "type": "review", "business_id": "sv8tYgFzIRKHHERURumyVQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "qrX3s0BfiHQTH_gmnyysjw", "review_id": "W7dfiS4G77DHIaNiVmT8oQ", "stars": 4, "date": "2012-08-19", "text": "There are bunch of different tours. I went on the hour long one (probably the cheapest one as well) where I didn't see the bedrooms or inside of the house.\n\nIt was very hot coming here on a summer day - I do NOT recommend it. They do provide you with water and a red umbrella though. \n\nI learned a lot about architecture from the tour and why certain things were done.\n\nI would recommend coming here during the fall seasons because they mentioned you can see the tents out there. \n\nSo quick summary - basically, Frank Lloyd Wright would live at this place during the winter months when it was warm in Arizona but super cold where he's from. He didn't come here during the summer months - way too hot!", "type": "review", "business_id": "rrd7NeAgARDNzPsxxsBJiQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "XpSZrY_Ym8GGx7SNEd0q9g", "review_id": "NiqLX8pW-R2OrnjUxgyXkQ", "stars": 5, "date": "2012-07-24", "text": "I had the pleasure of living across the street from this treasure for about 6 years. I'm still lucky enough to work close by. Let me be clear. I 'm reviewing Haji Baba as a GROCERY STORE first. Then I will give you some insight into the prepared food for take-out or in-store dining.\n\nThis is one of the few stores in Arizona where you have several choices for pita bread--it's also the ONLY place I've found for whole wheat pita.\nThere are several choices for Feta cheese. Danish, French,Greek...same with olives--there are choices.\nI ALWAYS buy my tahini here. All the prices are very inexpensive.\n\nNeed spices??? They have them all. At about 25% of the price you would pay anywhere else.\nThe best way to describe Haji Baba is that it is a REAL grocery store, with REAL prices, for REAL people. It is NOT a \"specialty store\" with trendy items and inflated prices. They sell food items that you will actually use. The bonus here? You won't find a 10 year old can or jar of something.\n\nOn to the \"restaurant\" portion. Haji Baba is better if you think of it as a take-out joint that happens to have places to sit and eat. They do have tables and they do perform table service, it's just got zero charm. You go for the food, that's it.\n\nOkay, food. The lamb tongue sandwich is to die for. Let me repeat. The LAMB TONGUE PITA SANDWICH. GET IT! Their baba ganouj is also darned tootin' tasty. Actually, I sometimes dream about their baba ganouj.\nI'm not crazy about their hummus, maybe because making hummus takes 5 minutes and mine is bomb? But it's not bad.\nGyros are good and not greasy. Greasy gyro meat is a pet peeve of mine.\nChicken shwarma? Yup, that's good too.\nI'm sure I've had something to eat here that I was a little disappointed in, but I honestly can't remember what, or when\n.", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "QT-7jpsEuCR-pFro59KBtQ", "review_id": "G4R9ZqwwY_eq2PeGcQlv4Q", "stars": 1, "date": "2010-08-23", "text": "I was looking into gyms around the area. Upon entering I was greeted by the front desk guy. I asked about memberships and then he said, \"Sorry we are sold out\". I stood there stunned. Then he snickered, \"Just kidding\". Trying to be a good sport I went with it. \n\nNext came the young sales guy. He was personable - at first anyways. Showed me around the gym and I was interested in joining. Next we went over to the childcare area since I have a little one. Children were in the room however the two girls monitoring the room were chatting it up with one another and ignoring the kids. Bad sign. I asked the girls if they were CPR certified and had fingerprinting and background checks. The world stopped for just a moment and they stared at me. I had interrupted their important conversation. Then they were both saying, \"Yeah, like, well, um, no, I mean yes,\". In other words, no straight answers. \n\nWe sat at the sales guy's desk and the wheeling and dealing began. I felt like I was purchasing a new car. \"If you choose option A, you then can go to all the gyms.\" \"If you choose option B, then only here\" . The whole time I could see the children's area and the kids were being completely ignored (and we are talking very little children). When I told the sales man I needed to think about it he switched into some type of Dr. Jekyll, Mr. Hyde routine. \"Well you only have today to make a decision, after that no price guarantee!!!\" From there he was down right rude.\n\nI walked out of there thinking what the heck just happened. Like Sarah G, I felt horrible when I left this gym. It was an awful experience. Ended up getting a membership at Tangible Fitness on 7th Street. They don't have the same amenities however it is locally owned, and the people are very nice there.", "type": "review", "business_id": "yRga-WpyfZRz8Es4OpyMhA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "h2AKBbrycz4bzJ6F8V7a_w", "review_id": "u0ZceqKcyZ8FoeaMrJ54FA", "stars": 5, "date": "2010-09-17", "text": "Great and has been for years. Lines out the doors at lunch but worth the wait. I recommend combo 'K'\n\nThis place is the where you should take someone from out of town that wants the best mexican food.", "type": "review", "business_id": "BESmH-lmMm34_EefL8X9fQ"} +{"votes": {"funny": 8, "useful": 7, "cool": 8}, "user_id": "tdNV2Wb0LrFpm1Yfov_Klw", "review_id": "_pmYOW52o5wenplbAcu5wA", "stars": 4, "date": "2009-01-15", "text": "Lame joke alert :\nOkay, I think I have switched over to Switch , I am finally making a switch to Switch whew almost over , after you try Switch you'll never switch. And done.\n\nThanks for letting me get that out of my system.Lunch today was delightful. Mom and I were downtown playing around and we tried Switch for something new. Glad we did. \n\nOur server Matthew was helpful, courteous and efficient. He really made the good food stand out . For being at the peak of lunchtime it was nice to see the restaurant wasn't packed but they were well prepared for the lunchtime crowd.Food was served fast without feeling rushed. Drinks were filled promptly without hovering.\n\n\nWe had the Beef Galletta , a puff pastry with mushrooms, tender beef, brie , onions and a light sauce. Great size not too much but definitely filling. Mom had chicken chop salad that looked fresh and tasty. She really enjoyed it. I look forward to coming back and trying other items here.", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 4, "useful": 9, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "lOvdXM6zXyzxpMxptY4PYw", "stars": 5, "date": "2008-03-07", "text": "Another great Italian find!\n\nMy BF and I went to Roma Garden for dinner last night because he was given a gift certificate there from a friend. We'd never heard of it, but we're always up for trying something new, especially with $50 towards our meal. We pulled up to their strip mall location without expectations and we were both pleasantly surprised!\n\nWhen you walk in, the lighting and decor are welcoming and the staff is friendly and attentive. It was a Thursday night and there were plenty of other guests in the restaurant, and there was a lively energy in the air. After browsing the menu, I ordered one of the few 'Chef's Specials' of the night - tilapia with fresh veggies and pasta in a lemon caper sauce. BF went with Pollo Parmagiana. He had a glass of cabernet and I had pinot grigio... and voila - a warm bread basket arrived on our table at just the right time!\n\nWe were both happy with our orders when they arrived as well... the fish was cooked just right and the sauce was tasty... good portions as well! Although we were full, we decided to order a dessert to share - the homemade snow white chocolate tartufo - yum! The perfect sweet ending to our meal. In addition, we were each brought an after dinner drink of amaretto on the rocks, on the house.\n\n****I just have to share that I was pleasantly surprised that the women's restroom was clean, spacious, and had a fresh fragrance to it - I normally don't notice that, but I was impressed by this!\n\nIn speaking to the waiter and the owner, we learned that this restaurant recently changed locations but they've been in business for over 15 years. Gotta love the local businesses that last in the valley... we'll be back to support Roma Garden and enjoy their fine \"Northern Italian Cuisine\" without a doubt. I suggest you go check it out also - bon appetito!", "type": "review", "business_id": "EfmR4e1tmjC5_ZQOgfnYrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0DDWHEWmcYWGIPQ6fvG_xw", "review_id": "cORMKcZsMAwTNyh-vfGXDw", "stars": 5, "date": "2011-06-06", "text": "Love this place...can't beat it for a healthy meal. Tons of good options that are tasty without all the cheese.", "type": "review", "business_id": "l-Xv5Kmg2gilJI3-DGVCqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C0vujI9rPTA30iHyBYKlfg", "review_id": "p3OxpFa318wTOMc_7SR6QA", "stars": 5, "date": "2012-03-10", "text": "Agree with those who describe this place as enchanting. The rooms are extremely comfortable, the grounds are picture perfect and the pools are very pretty. We had 8 people in our group ages 15-64 and everyone found something they loved about this place.", "type": "review", "business_id": "rLAeltELaGdQKh_LYIllEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QHRmdqfrZRlynmlL7k_v4g", "review_id": "Ur-wOKIT4qhMbu1LhX3kNA", "stars": 5, "date": "2011-10-13", "text": "I was sent to Amomi spa from my OBGYN for my first pregnancy to get all of my ultrasounds. I felt very at ease the first time I walked in because of the very clean place and friendly staff. Every ultrasound technician I have had has been really great and knowledgable. I really like that they have high tech equipment with big plasma tv's on the wall so I could see a big,clear picture of the baby. Also, the large spacious rooms are really nice. On a side note, they have great products to buy in the lobby.\n\nNow pregnant with my 2nd baby, my OB referred me to 2 different places this time for my ultrasounds. Without hesitation I knew I wanted to go back to Amomi spa again to get all of my ultrasounds. I have already been twice this time around and looking forward to going again in a few weeks.", "type": "review", "business_id": "zBPjqEKHcBJN9iNx-QWc5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7mXorwoYFPlBvU9qCNuoOg", "review_id": "8sZmxY20I7Z_ZtYCIRdNgg", "stars": 5, "date": "2011-11-16", "text": "We had a GREAT dinner there on Saturday. We were celebrating my aunt's birthday, and we ordered from the regular and special menus. I had a truly wonderful chicken Madiera, my hubby had meat loaf, which is always a \"tell\" for a good place, my uncle had fried haddock which was crunchy and not at all greasy, and my aunt also had the chicken Madiera, which was fork-tender. We also had great service - attentive without being too much, and we completely enjoyed our meal. We will definitely visit this location again.", "type": "review", "business_id": "1LSxfyNIUFbQb-Ej0FDGTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "crrp9oqSWsVnDHPKgy_bqw", "review_id": "Dla8VIa3kkGKIBVI0wazNg", "stars": 4, "date": "2010-07-01", "text": "oh my, these are huge gyros. somewhat scary looking at first. not pressed in their cellar but good enough to find on a food cart in nyc. simply can not beat the value if you are hungry for lunch. they do need some greek coffee though.\n\nwith all the i heart chicago wallpaper, you'd think they would have a plasma TV with my big fat greek wedding on repeat play,", "type": "review", "business_id": "bxpzP73A7gauvxFEyd_8xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "blgNUB-2AGkVOKHBJ_-1qg", "review_id": "HhbkWDna_ANmDHI_DlyDKA", "stars": 3, "date": "2011-08-22", "text": "Wow, what a busy place. We came here while visiting Scottsdale. We are always up for a good breakfast and it seemed that this was the appropriate restaurant to try. \n\nThis place reminded us a bit of a great small pancake house in Anaheim, CA called the Original Pancake House. It is much bigger and modern, so it lacks charm, but the food is better than standard faire. With that said, the creativity is good in their menu selection, but poorly executed. I had the banana french toast and was a bit disappointed. The banana bread used was fine, but too dense for french toast. It hardly had any egg coating to truly classify it as french toast. \n\nThey serve huge slices of raisin toast, but bigger is not necessarily better. Very dry and not flavorful. \n\nEggs were fine, and the service was good. I would come here before going to IHOP, but I would seek a different small hole in the wall breakfast joint before rushing back here. Avoid the Sunday brunch hour patrons, unless you're prepared to wait an hour or so. Enjoy.", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "4ZCt4Z2mMHxdvCnqtxBkGQ", "stars": 1, "date": "2011-03-08", "text": "Pho-yuck this place! \n\nI was tricked in to going here with promises of great Vietnamese. I was ready for a culinary adventure and what I got was a ride in the fright house. \n\nThe B\u00e1nh x\u00e8o was so greasy I couldn't eat it, it was literally served on a plate of grease. \n\nThe bun was about the same. It lacked flavor, the rice noodles were slimy, the spring roll was loaded with grease. \n\nI ordered some sort of plum soda drink and it had a cup of salt on the bottom of the glass.\n\nThe service was horrible and I will not be back.", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "XbC1i3lXYMDlHS94S-FHJw", "stars": 4, "date": "2008-02-21", "text": "Went here because of the reviews on Yelp, very good. Had the green papaya salad, great light taste and a very large portion with a few shrimp on top. Had two types of curries and both of them were very tasty. I need more of that green papaya salad so I'll go back and try a few different things.", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "db7t1HCsqxvwbe3kSoqtYQ", "review_id": "wzNZqy1ERk5dw0hGSYvu0Q", "stars": 4, "date": "2010-07-30", "text": "Love this place! Super fun you never know what you will find until you find it!\nSo here's the deal I just adore to browse in there and get ideas-seriously how can you go wrong?\nI found a ridiculous item which I'm not sure that I want to share online-oh well lets do it. So you know when you buy hot dogs and the package doesn't seal back up? So of course the container store would have something as silly as a hot dog container to hold the rest of your package. Plus they had great large jars, and shoe boxes, and lots and lots of containers.\nI think if I could get away with it I would build a room of containers! I love to have things organized and the container store if fun to look at.\nCheck it out!", "type": "review", "business_id": "dW0aTU2DcZI2FetaZXYsXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "aJNeEzPuss8qEl1sTe710w", "stars": 3, "date": "2010-05-28", "text": "Shaved noodles, shaved noodles, shaved noodles! Am I too butt lazy if I only go for shaved noodles? The dish ordered with the handpulled meant I had to hold chopsticks high into the air trying to separate a portion of noodles out onto our plates. Not bad but wasn't special... but the shaved noodles, loved the chewy texture. I unashamedly used my baby godson as an excuse to get a mini noodle pulling show at the window.\n\nI'm going to work my way thru the fresh fruit juice offerings... I used to drink that daily while working as an expat in HK. Speaking of which, the bathrooms are sooooo HK grand (Amy L, you and I think alike!)...\n\nOverall the stir fried dishes were a bit greasy and the flavors decent, but the draw here is the shaved noodles (can I plug this anymore?!) and the fresh fruit juice.", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 11, "useful": 10, "cool": 10}, "user_id": "du6KeE54IFbPiXpU3LOd1g", "review_id": "31Yf698M0Tz1fLeK5WQabQ", "stars": 3, "date": "2010-09-28", "text": "Meaty, beaty, big and bouncy!\n\nAdd \"beefy\" and you've pretty much summed up your 5GB&F experience!\n\nAfter detoxing this morning, I was really hungry...after all, I'm a pretty big and bouncy boy and when you lug this kind of tonnage up and down the canal, you're going to need some retoxing!\n\nAnd since it's Taco Tuesday, I thought a burger fest sounded about right!\n\nI needed to be up north anyway, so I texted my order (what a time and vexation saver that is!...two stars for 5GB&F right there) and it was ready, hot and juicy when I rolled in.\n\nThe burgers and fries remind me of nothing so much as Wendy's of about 30 years ago...you know, when Wendy's was actually pretty good (not like now when, they consistently screw up your order and figuratively, literally throw your bag-o-food into your car as you idle by the pickup window).\n\nThe burgers are OK, the fries are fresh and peanutty (no, really...fresh peanut oil...the fries taste peanutty!), and the Coke is, well, Cokey. \n\nThe atmosphere is nice enough, all red and white checked and tons of \"look at me\" crap on the walls (\"Best Fries in Hoboken!\")\n\nThe music was also reasonably pleasant (Men at Work...\"I come from a land down under\"...I shuddered a little bit at the part \"and men chunder\"...please, no chundering while I'm eating!).\n\nAnyway...\n\nI was able to purchase this little repast for a mere $11.83 (I saved a little by having the small fries).\n\nI know, Grind or Delux prices for a retro Wendy's burger!\n\nI'm no spendthrift, but I could feed a family of 6 at In-n-Out for $12...and with better burgers.\n\nBut, 5GB&F filled me up, they had my burger ready to roll and they very nicely didn't mess up my order (but then again, how could they screw it up...they were ordered to prepare my burger by a computer...we know what happens when you don't do what a computer tells you...you \"accidentally\" ride over a cliff on your Segway, that's what happens!)\n\n And, in a nostalgic sort of way, they reminded me of how Wendy's used to be (complete with 70's music), and for that, a reasonable 3.25 stars.", "type": "review", "business_id": "jqZKv-7F54guDLalXEjHxg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "9mjItdXixKECanLV6RBIrw", "review_id": "X6DYb34KHjiLdwGy4r74RA", "stars": 4, "date": "2009-06-07", "text": "I do enjoy this coffee shop, though admittedly it has largely subscribed to bohemian bloodletting since emerging from the former Willo House. They still present photographs, paintings, sculptures and more throughout the cafe, most, if not all, for sale. The clientele has changed, as has the interior. Regardless, it's still a nice place for coffee. For those who haven't been, it's set in an old house on the southeast corner of 3rd Avenue and McDowell. Personally, one of my favorite activities is to start here for coffee and take a walking tour in the area. It's one of the few neighborhoods in Phoenix with historic homes from the 1920s, which seem to be untouched by the authoritarian overlords of homeowner's associations so popular in suburbs. I could be wrong, as I don't live in the area. But, to stay on topic, the menu is a bit pricey but Hob Nob's has retained the Willo House's cozy, neighborly feel, though yes, over a few short years it transitioned from hippie to yuppie.", "type": "review", "business_id": "4sW8Z6NLXLRkruSKSKUEUw"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "fNfLXX_ce2TQPrdHCqPzZQ", "review_id": "xWEJNaXUQdlQe5J2aoZrTw", "stars": 5, "date": "2010-01-27", "text": "we celebrated my birthday all weekend. we made the trek to bobby q on sunday. I ordered the brisket sandwich with mac and cheese and let me tell you about that mac & cheese..it was amazing. Mr H went with the chicken and brisket and for his sides: beans and potato salad. \nThe food is sinfully delicious! I will NOT be coming here as often as I would like... I found it too indulgent. it is definitely a treat and worth trying! I love those little donuts they give you at the end!", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dKMzuhnwGh3hGxP0QH7m6Q", "review_id": "wtmUi6t17Rh1xQ2F0xQTOg", "stars": 4, "date": "2009-07-16", "text": "Wow, I am kinda suprised by the recent reviews of this place. My girlfriend loves this place and has been going for the past 5+ years. She would probably give it 5 stars. I really like this place, the atmosphere, we always get great service. The food is really, really good and the prices aren't bad. Sometimes, very crowded, but haven't ever waited too long. We love going back and can't wait till our next visit.", "type": "review", "business_id": "UCid2Tas6K4SB9sHO9gQ8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F8MIgcGzop_Mv0gFYJc4fA", "review_id": "SXxzqpZ-jp4NPc2-1-6hZQ", "stars": 4, "date": "2011-01-25", "text": "We had a wonderful four nights at Gainey Ranch. The rooms were beautifully appointed (although not enough drawer space), immaculate, and high quality bath products, bed linens and furniture. We had a 3rd floor garden view, which was very Zen with a natural pond and fountain, and access to their Regency Club (a must have). The spa was very nice and they carry high quality products. They also have so many options to hang by a pool, including a private spa mineral pool (sans children). We understand there is a great kids pool also. The food was delicious at their restaurant also.\n\nWe did not experience any construction issues (as they may be finished), but we certainly benefited from all their efforts. It is beautifully appointed and plenty of spaces that feel private. It is not a convention-like hotel, but I have heard (from a corporate event planner) they do a wonderful job for large parties. \n\nEveryone from the valet, to registration, housekeeping and wait staff were more than accommodating and very friendly. Kudos to their general manager, who when we brought up the issue of not having enough drawer space, immediately remedied the situation. (I won't say how, as I don't want to turn it into a precedent. I'll just say, he went above and beyond.)\n\nI would return to Scottsdale just to visit the Hyatt. Happens to be a bonus we have wonderful family that we can visit too!", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "LTX9pmF-zXPYB4wE8b9RZg", "review_id": "iQuKsiIwucQSJd-m0c4HBA", "stars": 5, "date": "2009-12-16", "text": "I'd been hearing about Defalco's for a while now. My husband, Jim W, and my youngest, Abby, raved. \"Best steak grinda since Baston,\" they said. So, on an expedition to get more raw chocolate, we went.\n\nThe first thing I noticed was that the tables were scattered among the racks of Italian foodstuffs. I loved that. The place screamed \"Boston\" from the moment we walked in the door. When we ordered, Jim found one of my favorite types of soda in the case, Doc Brown's diet black cherry. I was in heaven.\n\nSo we got our number and sat down. While we were waiting - a short wait - I got a brilliant idea which solved a long-vexing problem. Guess it was the east coast vibe.\n\nThe food came and I was in heaven. We split a steak sandwich and red potato salad. Jim likes everything and I just like onions so they gave him the mushrooms and peppers on the side. Lots of mushrooms and peppers. It didn't look like a ton of food but we certainly got enough to eat.\n\nWhat's not to like at Defalco's? The food is fabulous, the prices are good, the people are really nice, and they have all kinds of imported goodies. So I guess the only thing I didn't like about Defalco's was leaving.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z5QQGDqErjMKD8XtM00s7g", "review_id": "xUz7NWXlO6jXnZ7oaP7RtA", "stars": 2, "date": "2013-01-03", "text": "I've been to multiple Buca di Beppo locations in several cities. They are a good place to go with a large group. We went to this location with a group of nine. The menu was typical. We ordered the seafood trio, which was nice, and the fried mozzarella, which was also good. The Caesar's salad was also good. We ordered pasta entree's and chicken, all of which were served up warm and in plentiful portions. We left with a fair amount of food. I would give the food four stars. However, I would give the service one star. Two in our party ordered cocktails. Five of us ordered wine with dinner. All drinks arrived together with our entrees. We did not get enough dinner plates. We did not get enough wine glasses, and had to wait for three more. Three entrees arrived together, and we had to wait about five minutes for the fourth to arrive. We had to ask three times for boxes to put our leftovers in. We were never asked if we wanted dessert. If the service were spot on, the rating would be much higher, but, I can't justify it.", "type": "review", "business_id": "1oFvqm7eSpJbVpxpPxueaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "z5GWsidy0WT2CLxwhGiV5A", "review_id": "RA1yIXNVlS1uy3ptLB2nuA", "stars": 5, "date": "2012-04-17", "text": "Incredibly good calzones; friendly service, nice courtyard seating.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yrXCDuHsWLt14ql-aLOCYg", "review_id": "ox914gCFn8tM8KJf8hmSnQ", "stars": 5, "date": "2012-01-31", "text": "Nic-nacs galore!", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o6hksardqzx7jZwiNxoRDg", "review_id": "_jI6o9Dd-MDxXtOVxawOeA", "stars": 4, "date": "2011-08-05", "text": "This restaurant is in my TOP-5 favorite restaurants of all-time! ...The only reason I am not giving it 5-stars is because it is a real splurge, and it takes a pretty special occasion (and experience) to justify such an expensive meal.\n\nWhile in my personal experience at Posh, the quality (and \"deliciousness\") of the food I had definitely justifies the price-tag, it should - if the quality wasn't extraordinary, it wouldn't rank at all.\n\nYou really do have to be an open-minded, mostly omnivorous eater to fully appreciate it though. If there are ingredients or flavors that you don't much care for, it might be more challenging to assume that you will like everything you get. \n\nIt can be daunting, because you may get something that you don't like, but that is also part of the excitement (and the adventure of trying new things!) You also may get something that you've never had done well before and find that you are a newly converted fan. \n\nAlso, though the wine parings are wonderful, if you are on a budget, skipping the wine is a good way to trim the bill.\n\nFor the best experience, don't go when you are famished, and don't bring picky eaters with you - both will interfere with you having a completely satisfying experience.", "type": "review", "business_id": "_AvHni-xdRHmZ3XfYHwGkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IhcTLLWKS6ZiNyIX9oQQPQ", "review_id": "F4ce5Dgnb8opwBxE-JHR8g", "stars": 4, "date": "2011-05-13", "text": "This was a very nice place to take your mother. We both had a good lunch. The service and iced tea were very good. I felt like the food was high quality, but maby should have been priced 1 or 2 dollars less. The patio was beautiful and very peaceful to visit with your lunch partner aka Mom.", "type": "review", "business_id": "3EEVGDngt4DEhoOQZIUNUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EsH5xs6wMUQ11oleoPmKfQ", "review_id": "XmnwLZ4z_B72JCp-IyZXYA", "stars": 5, "date": "2010-04-09", "text": "After talking to a number of bartenders in the area -- and doing some fairly extensive personal research -- I feel pretty comfortable saying that if you want the best cocktails in the Phoenix area, you should head to the Jade Bar at the Sanctuary Resort. \n\nThis is off the beaten path a bit, and after a few miles down streets with no street lights, it felt a bit like driving to a ski lodge up in the mountains. It's worth the drive though. I had two excellent cocktails (\"The Last Word\" and a \"Pendemums Club\"), and one enjoyable and informative conversation with Jillian the bartender. Wish I could have made some of their mixology classes.", "type": "review", "business_id": "OSlTIcDNSSt_83ciKwT1Xg"} +{"votes": {"funny": 4, "useful": 5, "cool": 5}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "OmcoLT0j_RrCuU3cl_BdVw", "stars": 4, "date": "2011-11-04", "text": "There's a lot to love about The Mission. The experience comes so close to 5-star that it makes me want to nit-pick about all the tiny things that fall juuuust short so they can fix them for my next visit!\n\nThe Bar: What a lovely, refreshing Basil margarita! It was just sweet enough without being syrupy. But bartender, why is getting a recommendation out of you like pulling teeth?\n\nThe Food: Excellent table-side guacamole; it lived up to the very high expectations set by all the other reviewers. My dinner partner's Hangar Steak was very juicy for such a thin cut and the dressing from the tomatillo salad give the whole dish a tangy, acidic bite. My Chorizo Porchetta was very unique and flavorful, but a little more sauce would've saved it from being slightly dry. I love though how the star of the entrees really is the meat here, the portions were generous and the sides were an accompaniment, not a competitor.\n***Almost forgot about the pumpkin bread pudding we shared! He loved the scotch-carmel sauce which I thought was too sweet. I loved the moist, fragrant bread which he thought was missing pumpkin-y spice. To each their own!\n\nThe Atmosphere: It's a gothic romance come to life with beautiful dark metal chandeliers, warm, glowing salt bricks, and dim lighting. I just wish the table of 6 old men talking golf wasn't sooo close. A little more room between tables would complete the intimate decor.\n\nThe Service: I have no complaints here! Our server was excellent and never overwhelming, the lady who made our guac was all charm, and kudos to the chef who sent us complimentary street corn (yummy by the way). \n\nA note on the street corn: I felt like this was a dish that would've won the Top Chef competition where they had to re-invent convenience store food. The grilled, slightly salty & crunchy corn topped with creamy spicy cheese sauce beats any AM-PM nachos I've ever had! :)\n\nLots of wonderful food still to try here. I will be back very soon for brunch with mom!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "qkbiaiS8t8YHWx3J04NjSw", "review_id": "diYXQjM9GgvBZSLpvHTn7g", "stars": 3, "date": "2012-02-13", "text": "What's not to like? Stingray does stylish sushi and happy hours just fine. This is the only \"chainy\" sushi place that I will eat at. I can't stand sushi at Kona or, god forbid Ra. I have always found the sushi to be fresh tasting, especially the salmon skin roll, which for some reason, is absent in a lot of establishments. One of my other favorites is the summertime roll, it's tuna and avocado delicately wrapped in soy paper which I love. They also do a very adequate and lively happy hour where house drinks are half priced, and there is a nice variety of sushi rolls and apps that are between $3-$8, oh and sake bombers too! We went specifically for the fact that their happy hour lasts until 7pm, and they have a great patio. We have always received attentive service, and when sitting at the sushi bar, you receive complimentary edamame and miso soup (although their version is kind of salty and not my favorite). Friday the BF and I had 4 drinks, fried calamari, gyoza, 2 sushi rolls and salmon nigiri for $40. Not bad, not bad at all. The Biltmore location is where you will find me.", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f1EokGAtmy2OChSs1XbETA", "review_id": "-SyaHWUhaYTISZjiTzoe1Q", "stars": 4, "date": "2011-07-02", "text": "Great service every time. Food is excellent. Levi is the best server.Great place for a few glasses of wine, fun atmosphere & delicious food. The ice cream is amazing!", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FS_3j3S_QvIaQCAMFKl_7w", "review_id": "E6AjU_CgVAqVDl_ve9PnyA", "stars": 1, "date": "2010-02-19", "text": "omg...hands down the worst chinese food I've ever had anywhere. Stopped by for lunch with my wife. I ordered their cashew chicken dish and my wife ordered the pad thai noodles with shrimp. Barely edible. Makes Panda Express look like gourmet chinese food. Prior to Flo's, the distinction of the worst chinese food went to a chinese restaurant in Nebraska...but that's Nebraska. I'm chinese and live in San Francisco so know a thing or two about good chinese food.", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "hW2XQMGHy5_TW7dnijZR6Q", "review_id": "QWLWEXk6EV47edim1jR8eQ", "stars": 3, "date": "2008-12-17", "text": "Hit or miss. Pretty much the perfect definition of the \"HoHo\". \n\nMy friend and I like to come before shows and for happy hour (super cheap draft beers and wells), the well drinks are usually a little weak but being so cheap I can't blame them.\n\nTuesday's are taco day and they have some pretty decent deals. Each day of the week has a \"special\" as far as food goes, it's average to below average bar food.\n\nThere are some games and shuffleboard as mentioned in previous reviews. TVs scattered all along the sitting area and a sizeable patio for the smokers.\n\nThe bartenders are the real hit or miss part of the experience. I've been here and had great service, I've returned to have sub-par service (it wasn't very busy).\n\nAll in all, if you're looking for a place to grab some cheap beers (we're talking domestics on tap) before heading into The Clubhouse or heading to somewhere else to spend the night, stop in and check it out at least once.", "type": "review", "business_id": "GPAg6fpHEiYNDbd_QWTc8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uJVPMnfxx3lYX7kVHUTbTw", "review_id": "uHp4VoPz8GU0Qt4pCgPuLw", "stars": 4, "date": "2010-09-21", "text": "You'd think it would be easier to find good Chinese take-out but it's not.. Luckily, Great Wok fits the bill. It's not super expensive, they give you a ton of food and it's really good! I usually get the General Tso's chicken and it's hot, covered in sauce and cooked right. The beef and broccoli is good too. It's a typical small Chinese food joint in a strip mall so the dining room isn't anything special. I stick with take-out.", "type": "review", "business_id": "6FGwEHnoD-mM-PiXrhxOlw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0nCNOQv4VV2qYcqVno5ZrA", "review_id": "wMy2EDFQpkODuhiJVmyZLw", "stars": 4, "date": "2010-11-14", "text": "Every time going to this Best Buy I've had a good experience. The staff is extremely helpful, but not overbearing (constantly asking and asking to help like other Best Buys). They ask once, then give you your space. When you have a question, they're always nice and prompt to answer. Perfect customer service.\n\nIt gets better though. The most recent visit to this location I had bought a camera, and even with good reviews online, and the help of the BestBuy staff, I found out the audio on the camera was terrible. Just a problem with that model camera. We didn't know.\n\nThe next day I returned the camera with its plan, and had the easiest transition with customer service too get a different camera. Within 10 minutes I was in and out with a new and better camera, and didn't spend an extra dime. It was perfect, and the new camera is great! \n\nJust one of the many great experiences at this Best Buy. I would give this 5 stars, but the store itself is super tiny, so selection can be limited (the only drawback).", "type": "review", "business_id": "i-0DzAP50NT6fBsYl3Rqlg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "TstEnc6buaP6XLUPMgNH-A", "review_id": "s_gxH6jfyP-I8Lv05Osocg", "stars": 5, "date": "2011-11-15", "text": "What an amazing Mini Vacation. I went in August which was about 105 degrees but it was perfect. The pool was relaxing, the water felt great and I enjoyed all three nights of my stay. We decided it was so great we never left the resort. \n\nThe Room was very clean and very comfortable. \n\nTalavera had the most amazing Fish Entrees, the seabase OMG I can still taste it, the salmon was the best I have ever had, and I dislike salmon completely. The service through out the restaurant and hotel was amazing. The special drinks they had were very tasty and made the 105 degrees weather manageable. \n\nThe brunch buffet and breakfast at Crescent Moon is excellent all three days, so fresh, the pomegranate fresh juice was amazing I had three. The food tasted like the items were freshly picked that morning. I literally gained 5 ILBs on this trip and it was worth all of it. \n\nThe Lounge had tasty small Tapas which I enjoyed while it drizzled that night, the whole hotel has a great relaxing ambiance.\n\nThe nights were amazing to walk around the hotel or sit around the pool with the night lights on and enjoy the peacefulness of the resort. I believe we saw bats flying around in the middle of the night. which was very cool. \n\nWorth every penny. Just watch out for Camera Speed Traps on the way there. Enjoy,", "type": "review", "business_id": "QniH_NAABATeAx45mQ4ESQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RHWm_duEdCgWwtN1fBUkHA", "review_id": "jGqbHG0AUGFu95RUioNy_A", "stars": 5, "date": "2010-01-21", "text": "Delicious barbecue, we had 4 meats platter that we split with three people. The pulled chicken is amazing, the brisket tender and juicy, the ribs succulent and flavorful, best barbecue around. The sides were delicious as well, mac & cheese was great, mashed potatoes did not disappoint, ranch beans aren't anything special but they tasted good. \n\nService was great, waiter was attentive to our needs and accommodated a last minute switch after already putting in the order. Atmosphere is good, not too noisy/quiet, the lighting could be improved though, a single bulb above the table barely allows you to see what you are eating, though the food wasn't there long enough to be seen:)\n\nHighly recommended to someone looking for great barbecue ribs, chicken, brisket, etc.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "ZrUZtLgLOn15v2NIZl-oKQ", "review_id": "0Jbwi-38gafiegreugqeaA", "stars": 4, "date": "2008-09-15", "text": "Ate here for the first time a week ago. Had the fried egg with applewood smoked bacon on top of a crispy puff pastry and grape tomatoes. It was nice and light; didn't feel bloated afterward like you would after IHOP. I love the European cottage decor and ambience. Eating inside and outside looks equally appealing. Also, besides regular juice and coffee, they have hibiscus tea. My only wish is that the portions were slightly heartier for the price. But everything tastes fresh. I definitely plan to go back. Great local fare.", "type": "review", "business_id": "P1R-DyUyBeWCvPKrRkglsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OsYh3jArm6fgozczE85ZeQ", "review_id": "e5Ga90pFpQFhEe_vKlyhkw", "stars": 3, "date": "2008-11-23", "text": "I so wish you could do 3 1/2 stars. i would give it. \n\nNot bad chinese. NYC style. If you have lived in or around NYC you would completely understand.\n\nI LOVE the Fried Dumplings. SO GOOD!! Highly recommend them. Pork Lomein is good to. Take out for sure. Not really a place to sit and eat. you can do it but it is more geared for take out.", "type": "review", "business_id": "KDfmJTIG-z6W6cl4YC-WDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sYxD6VdrAaajp-gxim0I_Q", "review_id": "uMTrZsAO-U1IXZeMDo-U5g", "stars": 4, "date": "2012-05-28", "text": "This Dutch Bros had some of the best customer service I've ever seen from a young guy working on a holiday (Memorial Day). I ordered an Americano which was excellent and just the right proportions. My wife had a soy chai latte which was just a little too sweet, but still good.\nOverall, it was an experience I would recommend, and it's staying on our list of go-to places as we explore our new neighborhood.", "type": "review", "business_id": "v68yAIw0gpn15xwtcR_rKg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0rRTTYnjOtMDD32RvlxPow", "review_id": "RcLZ4nWKbVnrNHMQKk07AQ", "stars": 3, "date": "2010-01-06", "text": "Two and a half stars, really. \n\nThis place is really quite strange. Video coffee bar? I don't have much to compare it to, I guess.\n\nWe'll start with the coffee: traditional espresso macchiato. No microfoam, large bubbles in the milk, too hot to drink right away. The shot was good, but by the time it was cool enough to drink had lost quite a bit of flavor.\n\nVery friendly service, on the other hand. Given that Phoenix-foam tends to be subpar, I tend to think that service and atmosphere are almost more viable measures for successful coffeeshops than coffee. (in Phoenix) \n\nThe actual place was pretty odd. Large paintings of Mexican sugar skulls in the back, nice chairs and tables, an orange faux-finish on the walls... And then the video bar element. Three huge flatscreens on the wall playing pop music videos from the '90s. Very strange, in my opinion. I'm not sure that Cher and Madonna really mesh with coffee shop, but I guess they're trying something new. \n\nI had a nice time lounging and it was relatively quiet with regularly good lighting.", "type": "review", "business_id": "1xu5wFd0TeBg6xNBiRtknw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I4EIRTgGREZKTMThz1LihA", "review_id": "S1EvUj_NI7bjFhjLSZDhxA", "stars": 4, "date": "2011-06-21", "text": "Starbucks is Starbucks when it comes to the coffee and food, but the staff at this location are particularly helpful and nice. One offered to help me decide on what drink to choose, and promised that if I did not like it, he would make me another one free of charge. The seating is a bit limited because the place is somewhat small, but other than that, an above average cookie cutter Starbucks.", "type": "review", "business_id": "mWFA3S-h2_bEvjDJP-11wg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "31OZmHva7Q0dTNqpM4TKug", "review_id": "OcKg7311fpbZAP53cGd01Q", "stars": 3, "date": "2012-12-12", "text": "I had the Potato Balls, they were larger than i expected (i'm used to the likes of Portos) but i was not discouraged from attempting to take them in all at once, alas i failed.. but i was a happy camper.", "type": "review", "business_id": "GV1P1x9eRb4iZHCxj5_IjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iC7NVBmkzRl4rKEU5MWS0A", "review_id": "FgTpNPkTfwm4ILPreidgFQ", "stars": 5, "date": "2012-03-15", "text": "Lovely outdoor seating area, very dog friendly. Don't sit in the back of the outdoor seating area because it smells like propane back there. Had some coffee and just hung out for a couple of hours. It was a pleasant experience. Didn't order food this time but next time I will, because every dish that came by looked magnificent! All of the prices on the menu looked very reasonable for the portion.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "8-mw_aotUGmP0k0s6QKwOA", "review_id": "sKoWTT0MbmAnFJkKGU-BHw", "stars": 4, "date": "2012-05-29", "text": "A clean shopping center with many classy options for food, drink and retail therapy.", "type": "review", "business_id": "QAWdgDgWaFJYzJ2pGDjmdw"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "5zd678Uuarx_Xj-0NNSy7g", "review_id": "A1K4jqhMOPuCYJZcmmSWLg", "stars": 5, "date": "2010-02-27", "text": "Excellent in every way. Attentive and fun owners who tend bar every weekend night - GREAT live music, excellent wine selection. Keeping Fountain Hills young.... one weekend at a time.", "type": "review", "business_id": "0LCqaCnEGesFEhpa6qNauQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SJoMGpnY0DVtMlpjFK78-Q", "review_id": "R5i3jMW0vl2VLbRXyWdLnQ", "stars": 4, "date": "2012-04-05", "text": "Always my favorite coffee shop.\n\nToo bad the baristas remember my fianc\u00e9 but not me, even though we always come in together. Pfft.\n\nBut that's okay. I can take solace in their georgia peach tea and gluten-free/vegan english muffin. Toasted with just the right preserves, it makes my belly happy. I cheated on my diet but that's okay. Just don't tell my doctor.\n\nI have always been a fan of their food. I did knock this down to 4 stars because they seem to have dumped a lot of the vegan/gluten-free options they used to have. Super sad face.\n\nAlso, there was a very loud man in there asking for money, yesterday. But he quickly left. Loud conversation is very distracting. It is not the quietest coffee shop if there are many people, but it is still nice!", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "AHrqKpT07lviBm5PWtJwFQ", "stars": 4, "date": "2009-08-07", "text": "Old Town Tortilla Factory does a fantastic job with Mexican/New Mexican cuisine. The chicken pinwheels that were supposedly featured on the Food Network or something are phenomenal. There's a good variety of entrees featuring different types of seafood and meat, and plenty of southwest flavors. The margaritas, served with a little shaker of extra, are excellent too. My mom actually drank a whole one, which, maybe you don't know my mom, but, trust me, is saying something. The ambiance out on the patio (when it's not too hot outside) is quite comfortable and cozy, with the fountain and the strings of lights. Also, they have homemade flavored tortillas, with different flavors featured daily, but sometimes the waitstaff doesn't seem overly eager to give them out. Had to deduct one star for service. Other than that, I highly recommend this place.", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 7, "cool": 0}, "user_id": "U4j1MmMVZlts04OZxz87SA", "review_id": "UPmCFEhZwAKOX2__tYgxRg", "stars": 1, "date": "2010-03-16", "text": "We checked out RnR on Sunday (just a few days after opening.) In all fairness, I have to agree with many of the other reviews. Even though they are new, these things are fixable so hopefully the feedback will be taken in the appropriate vein. The building is very cool and the vibe was energetic on a sunny Sunday morning. There was an abundance of waiters but they seemed to be confused and frenetic without a real focus on the customer. The menu is very limited and our server had not eaten most of the items. He was struggling to explain. Our drinks took more than 15 minutes to arrive even though we saw them sitting at the bar for the entire time. Our water had just disappeared. Then the food. I ordered the grill cheese ( a rare treat and when I order it I want it good!). It was cold and overwhelmed by heavy bread. The cheese wasn't melted. I sent it back and they simply nuked it and brought it out. Icky. Our son wanted a kids cheeseburger and the staff kept coming back and forth not sure if there was a single burger or sliders for kids. It became comical after the third person came out. My husband ordered a salmon omelet with several additional fixings. The eggs tasted like box eggs and it was lackluster and flavorless. We even took the time to provide feedback to management but we got a weak smile and \"come back and try us again.\" He made no effort to \"make things right\" either by comping something else to taste or providing an incentive to come back. There are too many restaurants in town to have to go to one that is less than mediocre. The young crowd may enjoy it for the bar vibe it gives but the majority of the tables on Sunday am were families or middle aged and we saw similar responses at other tables.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "Ovac_Bws19DOy2_ai3WzeA", "review_id": "TaLnv40D99JimeXXt89-oQ", "stars": 4, "date": "2008-10-08", "text": "Whenever you want a refreshing drink, go to Tea Infusion. (+ positive, - negative, -/+ neutral)\n\n+ Comfy tables and chairs. It's a bit like a coffee joint, a place to sit, relax, and talk with friends.\n\n+ The tea selection is AMAZING. I don't drink too much tea myself, but I know my friends like it. They have fresh tea in boxes and have a very large assortment.\n\n+ You can do so much to your drink. Blend, ice, hot, boba. I like to get smoothies (they also put green tea in their smoothies) with boba. It's delicious.\n\n- Location. A place like this should NOT be sandwiched between stores in a crappy mall. It would be better in a shopping center, away from Tempe Marketplace.\n\n-/+ Food is alright. If you're looking for a snack, good, but if you're looking for a decent sands", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Od-H9HkTG4PgWGJP4_pFGw", "review_id": "r1zdRc_ZfYqu16BB6TlMdw", "stars": 4, "date": "2011-09-08", "text": "Love shopping here! It's pricey, so I don't do my regular grocery shopping at this place, but it has a lot of unique, gourmet options. It's a fun splurge!", "type": "review", "business_id": "08OcGan0xiT6I_oJ2loLMA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zgCO0TnkvfohTmwPTwP7Ew", "review_id": "-3j0mEzgdl57_PKfnmw3wQ", "stars": 5, "date": "2010-10-27", "text": "This place is such a delightful treat. Not only is the Barrio Cafe in what some Phoenicians would called the actual barrio, but it's non-descript on the outside and purely magical within. Not terribly difficult you keep your eyes peeled, Barrio Cafe is one of the best Mexican restaurants in Arizona and is a must try for any Phoenix local. \n\nYou really can't go wrong with anything on their menu, although their seafood offerings are my least favorites. I am in love with their conchita pibil, which is their slow-roasted pork and they have the best made-at-the-table guacamole in all of Phoenix. Their food is the kind of special occasion dinner that you and all your guests will be savoring every morsel, but save room for one of their delectable desserts! I'm a fan of their flan, in particular. \n\nService is spot on and it's usually pretty packed, so come as early as you can or face a semi-long wait at the bar. Don't worry though, they've got great margaritas. This is the place Tempe's Mucho Gusto wished it could be some day. But it probably won't.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 4, "useful": 7, "cool": 5}, "user_id": "BPde0dz-vM4_fZCNPRT8sA", "review_id": "9IoWmskJG2sz7hEFAfqV3g", "stars": 4, "date": "2008-10-29", "text": "House of Tricks is a great place for dinner if you're looking to go out for a special occasion. It's not somewhere I'd go on any given night, seeing as how the bill is about $100 for a dinner for two. \n\nI appreciated the menu having a good deal of seafood on it, as I don't eat any red meat. We had the scallops as an app. - while the serving was small (as expected), the scallops were the prettiest ones I have ever seen! For dinner I had the ahi tuna - it was WAY bigger than I expected, I couldn't even finish it - but my date didn't hesitate to finish it for me. \n\nWe sat outside as the sun was setting. The atmosphere was pretty much perfect except for one thing. We were seating next to the concrete wall separating the restaurant from the street. If you're sitting at the tables next to the wall, I'd say it comes up to your elbows. Anyway, there were ants crawling all over the wall and it made me kind of uncomfortable and itchy. \n\nOur server was a young guy who could have washed his shirt a few times before wearing it again. Otherwise, he was pretty cool - sort of a 'no sense of urgency' kind of server - but we weren't in too much of a hurry anyway.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 12, "useful": 9, "cool": 8}, "user_id": "pv82zTlB5Txsu2Pusu__FA", "review_id": "HQUI88wG-rKVwGuMkuhZZA", "stars": 3, "date": "2011-02-10", "text": "I am slightly confused as to what this place is.\nIs it a coffee shop? yes.\nIs it an ice cream parlor? well..yes.\nIs it an antechamber for the hair salon upstairs? kinda.\nSeemingly the Pink Spot *giggle* is trying to be a few things at once, and vaguely succeeding at those goals.\nI like the Pink Spot *giggle* for a number of reasons:\n-location\n-convenience\n-ambience\n-selection\nIn all honestly it isnt the best coffee shop that the area offers, but It's another option- and that my friends, is a corner stone of capitalism: consumer choice.\nNow I won't be making the Pink Spot *giggle*, my local haunt, that spot belongs to Lola, and I would never cheat on my beloved tranny. But for those special nights when I get the strange urge for simultaneous brain freeze and a scalded tongue, i'll go down on the Pink Spot...*giggle*", "type": "review", "business_id": "DmkTDze8ruJr6o2f5GAvJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6rAzupZ7IYIxkjxpV96A8A", "review_id": "IMvkZV_IRuPohmSW7VcGPQ", "stars": 5, "date": "2012-11-23", "text": "Very Hip Hotel and Comfortable ~ Amazing location ~Great Staff all is good at the Valley HO !!!", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "vN25DTdMDr718zMCAgJvQQ", "review_id": "s_Axvp77G4vYn-l86Y9qrg", "stars": 4, "date": "2010-09-10", "text": "I actually have grown to love this little place. Their coffee is good; their breakfast burritos are absolute heaven. Made with provolone cheese, these burritos have a more mellow and sophisticated taste than the average breakfast burrito you'll find drowned in yellow cheese.\n\nYou can get a Big Ass Burrito, or a Half Ass Burrito. Personally, I don't like to do anything \"half-assed\", so I opt for the Big Ass Burrito that, although adds circumference to MY big ass, is soooo worth it in the morning when you want a laid back spot to enjoy your meal and coffee (go for the iced).\n\nThey also have an art exhibit /sale right now for the month of September with awesome aviation pictures printed on canvas. Amazing art to enjoy as you sip your coffee.", "type": "review", "business_id": "vWnlScr9y2F6_ctDJZ6XLg"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "N1Q6HiZvnZHjNU712Gymqw", "review_id": "_Bqoydi_j47Nwj5eQS7QqA", "stars": 4, "date": "2009-08-15", "text": "Cartel is a coffee world unto itself for downtown Tempe, which is void of many non-alcoholic places to hang out. Situated in what seems to be a motel from the outside and a garage on the inside, Cartel can satiate your brass tax coffee fix and your espresso lust for reasonable prices. \n\nThe coffee is great. Period. They roast the beans themselves, know way too much about coffee and are proud. The espresso, in whatever form you get it in, is rich and nutty. The toddy (cold brewed iced coffee) is strong to the point of me jittering out the door from a small one. The teas are various and steeped in a cool manner and timed according to their type. The vibe can come off a little pretentious sometimes with all their rules and such, but they are selling a great product and the rules help distinguish them from the crowd.\n\nI like to hangout here for an hour every week or so, good people watching, the pretentious guy behind the counter is good to listen to if you want to hear people getting so-so advice that they didn't ask for and my professors come here so it is a good place to catch them not in work mode.\n\nMy only complaint is that they need to find a way to get a bike rack closer to the door. My only other complaint is that they could have more snacks available, I would love to dip something baked in their coffee.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HOleI3jz1MLNUJ6cc1x0Pw", "review_id": "QKwo9xyYIiI6gdbCnFCKhA", "stars": 4, "date": "2011-08-29", "text": "3 stars for a great happy hour. 1 extra star for having happy hour 7 days a week (from 3pm-7pm). If more places did happy hour every day of the week, I'd be drinking and eating all the time...oh, wait. \n\nAnyway, here's the happy hour download: \n-Wine by the glass: $2 off\n-Domestic bottles: $3\n-Draft beers: $4\n-Sangria: $4\n-Specialty Cocktails: $7\n\nIn addition, they also have multiple food items at the $4, $6 and $8 price points. \n\nWe sampled the \"Lemoncello\" (in quotes because it should be \"Limoncello\" - note to management) martini as well as the Grapefruit Basil Fizz. Both were delicious, although the basil one was definitely the best. For food, we had the spinach artichoke dip and the arancini (rice balls). Neither was amazing but a great value for the money. \n\nI thought the service was attentive and efficient, although the food runners needed to learn which spot at the bar was which table number since they kept delivering other people's food to us. \n\nFinally, while this has zero impact on my review, there is a very bizarre picture of a dark-haired shirtless man with dark chest hair in a very flirtatious pose hanging in the women's restroom. As my Facebook friend pointed out, it looks more like bad 80s porn than restaurant wall art. While entertaining, it probably makes sense to replace with some generic pic of the Colosseum or something!", "type": "review", "business_id": "qecLHHzAwgkkeA1bG81vmw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "D9aj6AjCyLp-zp8fozL8aQ", "review_id": "cq4ZcJwr-MUYgxLuWElA2g", "stars": 5, "date": "2007-08-04", "text": "PCG is the restaurant by which I judge all others. PCG is totally dependable, always excellent. Service is always good, food excellent. i have eaten here probably 20 times and have never had a bad meal. \n\nAlthough the food is not \"challenging\" in that there are no weird flavors or textures, if you want a great nouvelle American meal for a reasonable amount of money, you need look no farther than here.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DwU7KVfebA70AlVtX0iOWw", "review_id": "p95EFdew2gfMyJhC0IS2Nw", "stars": 5, "date": "2010-08-28", "text": "cant go wrong with a Double Double, fries, and a shake! Always good. Great service. I got some cold fries once, called the corporate office, they sent out some gift cards for our meals, then followed up with a thank you card as well. Not to mention they sent a coupon in a Xmas card that year. You", "type": "review", "business_id": "3Q7vtF_cdHGyp2JOlKcu-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j2eMum97Tm37YDRIFtQ44A", "review_id": "7kWWBMZnuesf4osMqvxHtg", "stars": 4, "date": "2011-08-03", "text": "Great great great tacos!\nI go to a restaurant for the food first. As long as it is clean, and Lulu's is, then sitting in, what looks like a used McDonalds booth, doesn't bother me a bit. Afterall, it's a taco shop!\nI like the fish tacos (the small ones) and I usually order 3 of them. I like how they are made and it reminds me of what you can normally find in Mexico, not at these chain restaurants.\nThe Ceviche tostada is really good too, but is difficult to eat, so don't wear your sunday best.\nNot in the mood for fish, then try the carne asada tacos or any other kind for that matter.\n\nLulu's is a great place and a break from the Americanized Mexican Food, we see everyday.\n\nEnjoy it for what it is!", "type": "review", "business_id": "CRvVvR6aE1eWVRtzQ0UC6g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QNzDmxyhQjS0wwS2zNACNg", "review_id": "IXEe6N49j-pY85wy9qkcFg", "stars": 5, "date": "2012-02-03", "text": "This place is very good. I have dined here for breakfast, lunch and dinner, but Sunday brunch takes the cake. Food is all extremely fresh, and tasty. The best time to go is when this place gets cranking, the style is smaller portions of the food, that have to be replaced very often when busy allowing for extremely fresh food. Asian food is always good, and the gentlemen behind the line can do custom stir fry for you. Italian station has fresh pizzas, that once again are made fresh for you, or order a custom calzone like I do. Mexican station always has the staples, but recently had crab stuffed poblano rellenos!!!! . Berto's gelato with like 16 flavors is a great way to end your meal. If you like buffets, do yourself a favor and make this your number 1!!!", "type": "review", "business_id": "Vn8qcaX64fkl8vByCsSvIg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ddr63wQ7CdByADPnHNr4-w", "review_id": "90K80SYtVN-blK3FrNqPNg", "stars": 5, "date": "2012-06-15", "text": "Pizza Venice has, hands down, the best pizza in the Valley. In my mind, they've got the best bang for your buck with the XL three-topping pizza deal. Get that with the garlic crust, and you're buying pizza nirvana. It doesn't hurt that the owners are incredibly friendly. Why would I even consider ordering terrible chain pizza when I can get a great pizza for a great price from a locally owned business?", "type": "review", "business_id": "s1IkTuTdWmPunObMizXxSg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "2XCsVpAMsGUykrM-BBFEXA", "review_id": "QhRnY1Rz-zvsY66mgrW2sw", "stars": 4, "date": "2010-07-01", "text": "I tried to give full marks to Lolo's having heard all the hype. Realize that I am coming from Louisiana and also New York City where one can obtain the namesake specialty rather easily and in variations.\nInstead of telling you all the cliche things that you will need to know about Lolo's, I am going to tell you why ultimately I did not \"drink the kool-aid on a 5 star rating. \n\nBetter pricing is the missing star. I found the place to be on the expensive side for what you get. It is perhaps a part of my relationship towards this home cooking that makes me feel this way. But please note: Service was great...but don't plan on being in and out for a quick lunch unless to do a to go order... Also, these waffles are wonderfully flavored. I detected a nice hint of vanilla and a touch of cinnamon. The chicken is nicely seasoned...nothing greasy about this batch. I will also say that if you are not used to Kool-Aid, or if you are like me and used to be able to water that thing down until the original colour had faded by simply adding batches and batches of sugar to it.... You will be in for a diabetic shock! Here's what to do: Ask for a side glass of water and then inject some of the kool-aid into the water. My favorite is grape drink!!! \n\nI am hoping to get back to Lolo's to try their gizzards. I had the basics on this trip and it is really worth the return trip. Bring your friends and go and eat late there on Friday night!", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 6, "useful": 7, "cool": 6}, "user_id": "-Dof9NwAoQwRM-GVPZk5zw", "review_id": "7tg3X6RPdDYiyracX4YIuw", "stars": 1, "date": "2008-04-17", "text": "We decided to hit up the \"Wine Down Wednesday\" that was happenin' at Tastings courtesy of KYOT. Here's what went wrong:\n\nThe event is from 6-8 so we arrived just a few minutes (3 maybe?) after 6 so we could get a spot just in case it was hoppin'. We walked in and the hostess (she looks like she's possibly the manager or owner) asked if we were there for the event and then pointed us towards the back room where the event was being held.\n\nWe walked in and there were about 7 tables and there were people at them all already. Talk about early bird gets the worm! We had to wait for about 3-4 minutes for the waitress to finish with a table to find out if we could sit on the patio for the event. She said yes and that she would be right out to help us. In the meantime another woman and her friend also took up at a patio table nearby.\n\n20 minutes later the hostess/owner/manager looking woman came out and asked if we had been helped yet. We said no and she left only to return with a small happy hour flier menu which she just handed from a distance and didn't even come over to our table. I know you're wondering why I would wait the 15 minutes, but I really wanted to see just how bad the service was going to be and frankly, I just wanted some good $2 wine.\n\nIt's been about 5 minutes and the same woman comes back with full, detailed menus and I asked if the happy hour flier was the deals for the event and she said yes and then asked if we were ready to order. Um, you just gave us the menus 10 seconds ago...\n\nBy now I'm ready to just order and enjoy the meal deals from the event. I look over the happy hour flier and I see some app deals. They said there was a specialty appetizer menu. Not so much, but whatever. I can deal with that. Then I see the drink section. The claim for the event was $2 glasses of wine. I was excited to try some nice new wines on the cheap, but again... not so much. In reality it was $4 glasses of house wine which only consisted of three different wines that weren't really what I was looking for. By now, the other women that were outside decided to leave having had enough of this shenanigans. We decided (after 30 minutes since we arrived) to go next door to Sprouts, get some apps, and have our own \"Wine Down Wednesday\" at home.\n\nI bet there are plenty of people that will have good experiences here and continue to visit happily, but this one experience has caused me to write them off for good (which I don't usually do after one instance). I wish that I could actually review their wine and food, but the service was so poor and substandard that it's not worth giving them my money. I understand if the food isn't good at a restaurant - some are just better or more talented than others. However, any business can and should have good customer service. I think this is where the cliched line of \"if I could give them less than 1 star I would\" comes in...\n\nOh yeah, and I slapped down a \"You've been Yelped\" card as I left.\n\nTake that Tastings!!", "type": "review", "business_id": "NleiJA9dpfKjhxe0cCD1MA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MhybZXjI3PrrJ2l9QJ5o2w", "review_id": "AOTSm0ttv6VTWYTHkOdSnQ", "stars": 1, "date": "2011-12-09", "text": "Bad quality ingredients. I ordered a red curry beef and the beef was awful, hard, I tried to chew it for a minute and decided to give up.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "byIGqd1Chrzuv8RT0al35A", "review_id": "-iEBSKeCRLo7xPww6C8T_w", "stars": 5, "date": "2010-10-11", "text": "My son comes here for the tacos but I am all about the chile relleno. I never had one with potatoes inside, but oh my, this was the best! My only recommendation would be to order it dry, with the sauce on the side. I am counting the days until I get back to AZ. The new location is so much closer to us, I plan on trying all of their menu, but....but... that chile relleno is ....calling....me.......! The tacos were very very good though.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Lsygjb8x4QDIFOY6mbNmrg", "review_id": "kHmQ4IJQGm7dOfOtSGrhnQ", "stars": 5, "date": "2012-08-01", "text": "I've learned to expect very little from airport restaurants. Now I've been ruined - I went to Blanco and my paltry expectations were blown out of the water. Prompt and attentive service, flavorful and delicious food, and a delightful assortment of drink options. I'll have to connect through Phoenix for the rest of my life. \n\nI had the grilled shrimp salad, which was fresh, flavorful, and filling. I also had the sangria, which was pretty good. My friends had tacos (fish and carnitas); they practically licked their plates clean. Try the rice - it is a rich and delectable treat. \n\nAn added bonus: They were patient as we sat for three hours waiting for our connecting flight. If I ever find myself in this airport again, you can be sure I'll make my way here.", "type": "review", "business_id": "8SjO3b-87uN2jXVXYNn47g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DfsrWRuuiET_-CEupb5NdA", "review_id": "5mWSXhdN8k6ZrTIWCBzD6w", "stars": 5, "date": "2012-06-28", "text": "What a wonderful restaurant. I can't believe each dish is 475 calories or less and the portions are still a good size. No sauces, no bread, no fries. The fish tacos were delicious, succulent, with just the right amount of spiciness. The grilled, boneless rainbow trout was fantastic. The pane seared, sushi-grade Ahi Tuna salad was to die for. And leave room for dessert....yes dessert. Only $2.50 but arrives in a shot glass size bowl. just enough to stave off the sugar craving.\nThe decor is elegant and sophisticated. Great for an executive power lunch or a date to impress. menu changes 4 times a year and features local, fresh, in 'season' food. Very inventive menu starting mainly around $9 (flatbreads and sandwiches) to $16 for lunch. Wait staff is knowledgeable and attentive.\nGreat food, great atmosphere, great for your waist line. But even if you're not a calorie counter this still ranks right up there for the food quality, taste and presentation.", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "MAcuAxaVOW7e7wg-phyUZA", "stars": 4, "date": "2011-03-28", "text": "This is a pretty cool store!\n\nI've recently found my artistic spirit through an old coworker, and I paid a visit to Utrecht one day to pickup some pastels and a sketchbook. They had all kinds of great stuff here, and the prices are very reasonable.\n\nThe staff was pretty friendly, and helpful. \n\nI am not an artist, and I have no idea what I am doing with any of the mediums, but I didn't feel ashamed to ask questions.\n\nThe location is a bit out of my way since I live in Scottsdale....and we found a store a little closer, Arizona Art Supply. BUT....this store is worth the drive and worth a visit.", "type": "review", "business_id": "rLqvHfvtojxd_DtM9kqw8g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "wZHpYsC1p07_zf6Grz8qrQ", "stars": 5, "date": "2012-11-01", "text": "Stopped in here for lunch today joined by Mike C. & Robyn N. This was my third visit ever to a CB & the first time to this one. I went with a Reuben Sandwich Plate, which included a cup of Cole Slaw & a cup of Beefy Cabbage Soup. The service was good at this location, the atmosphere fun, the food delicious & the prices reasonable. 5 Stars! :-))\n\nReuben Sandwich Plate $8.19", "type": "review", "business_id": "dGcVT0WGenhh8Np76ta6AA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "F6QsMoJdvtohlbnST-fDyQ", "review_id": "GIQgTbUtJQaxefMg-Q2n8A", "stars": 5, "date": "2011-02-16", "text": "I have not been bowling in 24 years,so you can imagine i was worried. But, this place is clean and fresh. On certain nights,(Monday)and a few others you pay a $5.00 cover charge,then everything is $1.00 .Food ,drinks , games and most important bowling games. The instructions were easy. We got shoes in our size then went and picked out a ball. Lots to choose from! Lots of fun!!! It was a $20.00 night for 2 of us. The workers are very helpful and Friendly. Bathrooms were also clean. I did not see them spray the shoes with Lysol so that was a little gross.But, other than that it was a great time.", "type": "review", "business_id": "9mx6uFh_lSj6SOSW4fMWWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Kyc_V-2G77tRfwJsBxwZ4A", "review_id": "RaWAU0yBTffXrOzPRAEnWg", "stars": 3, "date": "2009-08-17", "text": "Their beef gyro's are delicious! Great portions for what you pay. And their falafel is really good too. Not a great portion it seems for an order of hummus, we got like one piece of pita. Just didn't seem to be much there. We always do carryout, and either the bartender is really nice and funny, or just werent very friendly.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "318bjHL6yRQIo4hy4DzRPw", "review_id": "viX90WUMQ_jRTK_FTQYszw", "stars": 5, "date": "2009-09-27", "text": "Maybe it was the authentic Gospel music in the background, but our ears were filled with a heavenly chorus as we feasted upon the sacred, and until this morning unknown, pairing of chicken and waffles--a combination rivaled by only bread and wine in it's ability to induce a religious experience.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "hUIEsrEvC5L-0B45_8bMtQ", "stars": 4, "date": "2012-05-30", "text": "My home airport, so with work travel, I'm passing through here very often. I prefer Terminal 4 because of the variety of eating/drinking options for pre-flight enjoyment, and 2 and 3 are just OK and don't offer so much in amenities... but they're less crowded and that is a nice plus. Also, free wifi!\n\nI rarely get lost in here and to be honest, security here has never been an issue... lines have been long going to gates in Term 4 but they move fairly quickly.\n\nI don't do body-scans (my personal choice), so if you choose to do the same, when you put your crap in the conveyor belt and you note they are only doing body scanners, alert the TSA person and let them know you'll need a pat-down (or a groping.. feel-up.... whatever you wanna call it ;)). Electing to do this takes me longer to get through security, but I prefer it and plan ahead.\n\nAlso, if you have a digital boarding pass on your iPhone or Android and go through a *different* gate (they are mostly all connected via runways, etc) due to the line at the gate you're supposed to go through, note that they may not be able to scan your digital boarding pass... this happened to us once when we went to another gate with a significantly shorter line.. luckily they had the kiosk just there so I ran out of line and printed them out while hubby held my spot. FYI!!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "2-W8eFdPPLxS1nD50swCUA", "review_id": "lJBRh-p_pYQ_xXmw3aqV-w", "stars": 2, "date": "2010-07-23", "text": "Sorry. I'm from Southern California so I'm used to great Mexican food. We were excited to try this restaurant, since we had read some great things about it. However, the waiter was pompous and the food was mediocre. We were in a party of four and we all ordered different meals. The guacamole that was made from one avocado was $11. The restaurant is in a scary location. We had to park in a back alley. It was agreed that the experience was a bust. If you're in the area and want great food, go to Lon's at the Hermosa, Elements at Sanctuary or True Food Kitchen.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "09WZtQfWc2PO5LQ-uuUoag", "stars": 2, "date": "2010-07-10", "text": "Phoenix is lacking in good Indian restaurants, and that is compounded if you're in the mood for South Indian food. Cafe Krishna is a perfect example. I would come here again on occasion only because I often crave South Indian and there are no superior alternatives. \n\nI ordered the sambar-vada. The vada was not as hearty or flavorful as I would ordinarily expect. It was also served somewhat lukewarm. The chutneys were mediocre. The vada was a bit too soft for my liking. Dosa is harder to screw up, so I enjoyed that a bit more, but still nothing out of this world. \n\nThe service was poor, unprofessional and a bit chaotic. The environment and atmosphere were good. I was not impressed by the cleanliness of the bathrooms, which for me is always a bad sign for what must be the cleanliness level of the kitchen.", "type": "review", "business_id": "PLLM4iCYy_OrT-53IZ88Qw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "xxMoW5Xj8mvuqoawsK-l6A", "review_id": "2RYm11CFei503KuwXihT6w", "stars": 2, "date": "2009-04-10", "text": "What happened to my sunday love the Orange Table? First off I have been going to this restaurant for sunday brunch forever (they have delicious mimosa's). However recently a friend of mine and I decided to grab some quick and yummy dinner here. The portions of the appetizers they are now serving to their patrons is just sad. The brie app I so love at this place was enough for two bites per person,which i assume they thought was ok because they cut up like two apples for us. If i were interested in cut up apple for an app i would have stayed home and eaten one, not gone to a restaurant and payed $10.00. The rest of the meal was just mediocre to say the least, for a restaurant that only serves sandwiches you would think they would be absolutely incredible. The service that night was pathetic the staff there seemed less than eager to be working for Orange table. Will not be in a hurry to get back, especially when next door AZ88 has delicious food and the staff are happy and upbeat!!", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "fgEMK0d0upxfalu9JFOYTg", "stars": 3, "date": "2011-04-23", "text": "This place is solid...solid...solid...plus its right across the street from my job...the crunchy tacos with chicken, corn salsa, pico de gallo, green salsa, cheese, lettuce and guacamole...yum yum yum...I love their salad dressing so I like to put it on my tacos too! It is very busy during lunch so expect there to be a line...but do not worry they move quickly and it will not take too long! They are very friendly there and I cannot complain about a thing...I just cannot say it compares to some of my 4 and 5 star reviews.", "type": "review", "business_id": "K2_Hmmo5crTYWiT_1sWnfQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vmvCjcHVTFgLG7rFSuGQjw", "review_id": "pFZNL92ukdwwBUfxd1kD3w", "stars": 4, "date": "2011-08-17", "text": "If you're looking for a good meal with solid service you'll find it here. The menu has something for everyone, too. If you like to go out for lunch or brunch, this is a great place to go. Friendly, fast staff helps make the experience that much better.", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "lC4X2crUuxT9Ac9BlOX4Uw", "review_id": "exAq-cDua-q--O0TfaEtig", "stars": 4, "date": "2007-03-27", "text": "This is was, WAY out of the way for me. But when I heard about That's Amore, I just had to try it. What can I say, I love gelato! Anyway, one afternoon I talked the kids into a Sunday drive with cool gelato as the reward.\n\nWhile That's Amore gelateria is located in a strip mall (what in Arizona isn't?), the taste and style are pure Italian. Credit the fact that it is owned and operated by two sisters and their husbands who emigrated to Scottsdale from Italy. The murals of Italian cities on the back wall were even painted by their father, who they brought to the valley for just that purpose. How cool is that? It might not make the gelato taste better, but it almost made a ride to Pinnacle Peak feel like a trip to Napoli instead.", "type": "review", "business_id": "CKjcewWeWvdJ7TzOQbZOIw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "3x9UyudXapyrSJvNa-aPrQ", "stars": 4, "date": "2012-10-26", "text": "I've been going to this Costco location since I was a tyke, when it used to be called Price Club, and my parents carted me around in their giant warehouse sized shopping carts (Those were the days, and those huge carts were the coolest to sit in!). The employees here are nice and friendly for the most part, and there are employees I see when I'm here that I remember from when I was in junior high, a testament to the happiness of the staff here if they've been at this location for so long.", "type": "review", "business_id": "vH_WlMNtzx7Dq6Li5ecWEQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "xNPp5mEWC5EzUbu4fB2RPg", "stars": 4, "date": "2011-12-23", "text": "Mmmmmmm butterrrrr. \n\nI'm speaking specifically of the Edamame with truffle butter. We probably could have eaten a few orders of these. \n\nSugar cane pork. Ohhh yes. Falls of those teeny little bones right into my mouth. Very finger foody. Delicious. \n\nSpicy \"Sirring\" Shrimp. Comes out sizzling and spicy and delicious. As the server mentioned, \"Sirring\" isn't a real word, but who cares!\n\nThese three were the stars of the five tapas that we chose. I cant really remember the other two, so they clearly weren't that great. \n\nThe atmosphere is cute, artsy and pretty comfortable. The music was a little low, so we could hear the conversations of the couples on either side of us pretty easily. Kinda awwwwkwaaaard. \n\nI would for sure return.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "L3QJNJhvvq0dUGjLx8ZERw", "review_id": "Yn2priuHe62bh0IhqG68LA", "stars": 5, "date": "2011-12-15", "text": "If I were to ever get hooked on crack... I would want my crack to be these amazing donuts! They are delicious and addicting.", "type": "review", "business_id": "ytcm2DXuJWKPTqCtr6uJ4A"} +{"votes": {"funny": 10, "useful": 8, "cool": 7}, "user_id": "qwu5B9anH4AlEtau0K-6aQ", "review_id": "g2Pwq4ou4YW06jhPNM1o5w", "stars": 4, "date": "2008-08-29", "text": "I went to lunch with my buddy, Rob M., to a place called Uncle Bear's Bar and Grill. It was actually pretty cool! I was surprised because it is in one of the more LAME areas near my house. Namely \"Warner and Cooper\".\n\nWhen we entered however, it was anything BUT lame. Dog bowls on all the tables filled with mutant peanuts. Granted, it was lunch, but there really wasn't more than 3 other groups there. This led me to believe the food/service was bad. Not at all! This place rocked!\n\nWe shared some nachos in a heterosexual kinda way, and shared manly stories about football before shoving off. By the way, Rob, you owe me $15.00!!!", "type": "review", "business_id": "hnw-5xX7i4C1po5X9i686Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kRMZ5hV-3OVkxdSh6YNw0A", "review_id": "K_30eA1aj9scDye5f67XwA", "stars": 5, "date": "2012-04-09", "text": "Best donuts I have ever had.", "type": "review", "business_id": "Xq1FtLSV54Spf-HfONc1aA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "PxpTsxoOIB2j9WL_hg9yKg", "review_id": "M_1QFMdFgnp89R8o0jUqxw", "stars": 5, "date": "2012-08-16", "text": "Considering my experience with a previous dentist, I was hesitant to try a new one. But my experience was absolutely the best. Foothills Smiles is the best dentist I have been to in the valley!! They are professional, friendly, and reassuring allowing their patients to feel comfortable during the visit. Most people dread going to the dentist, but I feel motivated to continue going to my 6 month check-ups!!", "type": "review", "business_id": "YQDQyxrp3z6eyUKXwSD9hw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "x4eIi_YiwKj1pzcspeLt-Q", "review_id": "s1dMa-5CkwBQtWoedfXPdg", "stars": 5, "date": "2010-02-03", "text": "Vitality Health and Fitness is a small gym that offers personal fitness, group fitness and fitness classes. The classes and the training programs are all varied, challenging, unique and fun. The members are positive, full of smiles and easy-going. The gym is not intimidating at all, the trainers are kind and build programs that suit your personal fitness levels, and the cost is VERY reasonable. \n\nMy husband and I have been working out with Megan, and she's a doll. We haven't gone for very long so we'll keep you posted on the impending RESULTS!\n\nVitality also offers nutrition and massage -- which we both plan on checking out! The owner is delightful and easy to work with. If you have any questions or concerns about your costs or the way you are being treated, she works WITH you to ensure you are getting the level of service that you expect and that the club/program can provide. The owner is honest and respectful, fair and reasonable. I think everyone should contact this club and see if it might work for them - you won't be disappointed!", "type": "review", "business_id": "lquFtAcCRSpNYAN1qlxWhA"} +{"votes": {"funny": 0, "useful": 6, "cool": 1}, "user_id": "6SP-1gM4JV1tXGEe1Tu45g", "review_id": "ycqONNW2e-9wlmeI4PrtVA", "stars": 4, "date": "2011-07-09", "text": "we come here once every two months for date night. the serivce is generally slow because these are students, but everyone is super nice and tries their best . luckily every issue we've had has been with confidence for the front of house stuff (speaking up, looking at you in the eyes) -- the food is always excellent generally they don't always offer everything on the menu but it's generallty the cod or sole. the filet is always fantastic. desserts are yummy. really everything is good. the price cannot be beat $15 for a 5 course meal. don't expect to get a last minute reservation, it's generally for a few weeks out. we like this place and happily tell others about it every chance we get.", "type": "review", "business_id": "vwh496Ag4oRFgR6Dw3Hilg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V_9r9zTqfXl1YfXqkZ2krw", "review_id": "mfx1mMlppwU3Yz7wChT0eg", "stars": 5, "date": "2012-09-10", "text": "After 6 years of searching I have finally found Laura! My brows have never really been \"bad\" per se, but not great either...I have been searching for someone to show me the hidden potential of my natural arches, and Laura did just that. After only two visits she has groomed my brows into perfect shape and balance. Its funny how such a small change can make such a big difference! \n\nI also enjoy the quiet and private suite with the pretty chandelier to look at during my appointments...and she always has great music playing in the background too!\n\nThanks Laura!", "type": "review", "business_id": "Evg8IfqcHSyTPV9sLNhArw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XmpqbfSu9X7mjwJGUXTrAQ", "review_id": "2CkKyoydZDVLr4jHIWrcDg", "stars": 5, "date": "2010-05-25", "text": "Just the facts re: full dinner experience:\n\nAmbiance: Thinking about redecorating the house to look just like Trader Vic's - unbelievable.\nService: perfectly charming, informative and attentive.\nDrinks: I don't drink, so read every other review for a review of drinks.\nAppetizer: Beef Cho-Cho - amazingly tender, it melts in your mouth. Great flavor.\nDinner: Trader Vic's Calcutta Curries: good & better when you mix in the variety of garnishes. fun to play around with the flavors.\nDinner 2: Chinese BBQ Flat Iron Steak: Amazing. Crispy onions, mashed potatoes and tender/flavorful steak will make you close your eyes and wish it would never end.\nDessert: (don't know the name) vanilla icecream covered in coconut\n on a bed of chocolate sauce: simple, beautiful and tasty. \n\nOverall experience: the best darn dinner experience I've ever had.", "type": "review", "business_id": "uI4YqMarUpchI4I3ZWgOGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q-e5Kriu18oFX5orJkoNhA", "review_id": "hxWDhtiM9KTvRfXGOlIDpQ", "stars": 4, "date": "2009-05-18", "text": "I have been eating at Tokyo Express since I was teeny tiny. My fam used to go a few times a week. It's still the same and still as good. I have tried alot of the items on the menu. I like the regular terriyaki, the tokyo chicken, the sukiyaki, and the bentos. The bento boxes are a ton of food for only about 7 or 8 bucks. I would definitely recommend this place for to-go japanese or a quick rice bowl lunch.", "type": "review", "business_id": "EuNV8_SReV_3KeET2Ums6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "slp8VQWuW0Dq_azDCAshCw", "review_id": "7asKG4Bt_PXDE_5SZ1TxFw", "stars": 3, "date": "2012-12-06", "text": "The last three times I have been here, the hostesses have been so incredibly rude I have to update and ding them a star. The last time was the last straw and we just left turned around and left.\nYes, you work at a popular property. That does not entitle you to be rude and nasty. It's weird as it seems to limited just to the front of the house. The waitstaff is usually great, food is great, and cocktails are top notch.\nWhoever is running this place, its time for a sit down with your girls in the front.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Bmzq_nkjYqp8aWn12RJdhA", "review_id": "Ny3ex7Iu7l_ScfwsYMgpuQ", "stars": 2, "date": "2012-07-18", "text": "I really wasn't impressed with the service or the food.", "type": "review", "business_id": "x84ho2JtSqp3ZJ624Gj7kA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NoWhtugDv430JrfIFZLxmg", "review_id": "08d24-DGFhaGVqkI6TaqQA", "stars": 5, "date": "2011-10-08", "text": "Great Mom/Pop store! We've stopped by several times for some fresh produce and to get treats for the kids. We usually sit outside on one of tha picnic tables to eat gelato, while the kids love playing/petting all the animals. Thanks!", "type": "review", "business_id": "IDcXqa_9baqO286SdGHB7A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LIWGMn3Yz1LIUZXA-VzOBg", "review_id": "dzAwZL5AELxjhlP0fm7foQ", "stars": 1, "date": "2012-06-23", "text": "There was hair in the food. Not just 1 but 2 in the same Bhel Puri dish.\n\nThe whole experience was pretty bad. There is no indication of how you order your food and when you finally figure it out the food does not taste good. We checked sodas on the order sheet and when no sodas showed up we asked if we were supposed to go and find our own sodas from the front of the store and were told that that was the case.\n\nAlso the guy at the counter is down right dismissive.\n\nPani Puri was OK\nPapdi Chaat - boring, no flavor\nBhel Puri - boring and no flavor before we found the hairs\n\nNot worth the trip.", "type": "review", "business_id": "3YrW77yHkp3JIyTGYCS_Nw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "8CNEh7fSbLwDuAKhLjDPKQ", "review_id": "tB1IkP_HQyNeFVl_VJYFCw", "stars": 2, "date": "2009-01-11", "text": "Eh... the food was good but not something I'd crave? I had a chicken/swiss panini that evidently came with corn on it?\n\nEDIT: (actually it was the Adobe Panini: \"Mesquite turkey, fresh mozzarella, green peppers, corn relish and chipotle mayo\". I got called out that there wasn't anything on the menu I said I ate, got it a little wrong but the review remains the same regardless. Here you go Bob M.)\n\nSlightly surprised on it but, can't complain... it was good but nothing great.\n\nThey have subs and soups too - I'd go there again if friends were already going but def not somewhere I'd really mention when trying to think of somewhere to eat.", "type": "review", "business_id": "azBHKHqif0NXO3xcALo5VQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "XOxQEeYRZOPdJDqOHnhYig", "review_id": "nFGjVwIcpNi98KBzpUmF5A", "stars": 4, "date": "2009-05-20", "text": "During the work week I have to eat out for lunch quite a bit and I get tired of paying 10+ for lunch. I remembered hearing something about Boston Market having a $5 lunch special so I figured I would go check it out... Finally there is a place that has good, somewhat healthy and well priced lunches! Your choice of carver sandwich with soup/salad and a drink, they have soup and salad and I can't remember the others but it was a pretty nice selection. \n\nYou pay more at McDonald's for a combo and this is way better! If you are out and about for lunch I would highly recommend going here. I'm sure most people have eaten here before so the food won't be a big surprise but the price is GREAT! This will definitely be a go to for me.", "type": "review", "business_id": "eXxULzJRIutN6wF1mQH2Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "agNzBnuOmGqfDL2oMBRAYw", "review_id": "bw7qfhQvm6JFo-G_gChl5Q", "stars": 4, "date": "2012-06-16", "text": "Quality offering at a reasonable price? Check.\nBurgers fresh and cooked the way they were meant be cooked? Check.\nGreat fries- 2 kinds no less? Check.\n\nThis is a tweener restaurant-perfect for a great casual dinner. Not too expensive. Not cheap and greasy. Just right for that one day of the week when you want something in between.\n\nEnjoy.", "type": "review", "business_id": "H91jZ9BiQZZ4_7OlEd6eQg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "CJkY0WOCNfCuv0HAbB2cjw", "review_id": "LqkM8dWx3tnUnmWkrh6B0g", "stars": 4, "date": "2007-12-13", "text": "In today's environment of zero tolerance of drinking and driving (for millions of good reasons), its good to have a phone number programmed in your cell phone that is truly useful when you've had a little too much to drink. This ain't no 2 a.m. booty call. This is a call that gets you home safely and back to your car in the morning all for a few mere dollars that potentially saves you thousands in the long run.\n\nYes, you can also call a myriad of other cab companies, but the thing I love most about Execuar is the professionalism that they bring to my front door each and every time they pick me up or take me home. \n\nDo they make mistakes, sure. Have they left me waiting for an inexcusable amount of time before, yes. But they have done their \"fare-share\" in managing those few situations. There's damn good reason they are one of my top-five speed dials.", "type": "review", "business_id": "slO8j375ae2_Pd6PuyBLNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YeK95nGGvYsssVHzcWpmkA", "review_id": "F1k3kZgBBm2YMAY_5Mrqig", "stars": 5, "date": "2011-09-06", "text": "I went for brow threading. Yelena was extremely gentle and took her time making sure they were perfect! I just found my new \"brow lady\" and she's just across the street from my office! LOVE IT!!! Give her a try!", "type": "review", "business_id": "heszpsyNiT3i8MEOk04sUw"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "bazh3LiYydXe3hvx3bF0Cw", "review_id": "uxGRX_l3OgbAtBjUP9qu3g", "stars": 2, "date": "2011-05-17", "text": "This is a cool place for low key hanging out, killing time, chatting and relaxing with friends. It is NOT a good night spot and doesn't work as an event venue like they seem to be trying to make it.\n\nI've attended 2 events there and its basically a disaster in trying to make your way through the 200-300 patrons they bring in. You get funneled in past the food trailer into the bar area which is packed with people standing among several oversized tables. Only if you've been there before can you figure out that you can walk towards the boxing ring past the crowd to get behind the stage and into the retail area. Once there you have to get a spot among the wares to watch the back (or the side) of the show that is going to take place facing the bar. Both times I stood the entire night with my drink next to a display of $50 t-shirts. Very nerve wracking and annoying.\n\n1. The old timey way they make drinks is very cool and the drinks are delicious but I have waited now 35 and 45 minutes each on different nights to actually get a single mixed cocktail. Its insane how slow it is.\n\n2. There are rules to what you can get at which station. One spot is just wine. Another spot is just mixed drinks. Lemonade - oh thats a different place entirely. \n\n3. They use the boxing ring as the \"stage\" for shows. Very hard to view the show there because of the odd angle its at. Both times I've had to stand in the retail area while the performers faced the seating/bar area (which only seats about 75 people).\n\nTo pay more than $10 to see a performance at this place is outrageous. If the owners want to be an event venue they could do it simply by doing some rearranging and investing in some more seating.", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YuuzQtcqBpuOzi8ZJqfzTg", "review_id": "EnIeH7-Chvf2RKj3q2EHcg", "stars": 4, "date": "2011-07-05", "text": "I have been to RnR a couple times. \n\nOnce during the NBA finals/happy hour. It was easy to get a good seat in front of a tv, the waiter was super friendly and the drink specials and food were pretty good. Nothing to really write home about.\n\nThen I went to RnR for brunch and the waffles with apple butter has put this place on my Fav Breakfast Places list. Not only did it taste amazing but the portion size was perfect and it looked damn pretty. If only the mimosa price there was pretty, doesn't everybody have cheap mimosas?", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ghcW4xVywnbaAEq5eW2slA", "review_id": "ONeZqYTFWlmq99DgFeABEg", "stars": 1, "date": "2011-08-11", "text": "I had never been to Rainforest Cafe and I'm glad that I got to try it because I love trying things at least once; however, this will also be my last time going there. We'll start from the beginning: \n\nThe atmosphere was nice for the \"jungle\" but it was so loud that I could not hear my wife talking to me. I felt that I had to scream at her to talk. Our waitress was nice but didn't check on us often. We barely understood her either because she speak loud enough. We got our drinks (ten mins later) and my iced tea was good but my wife's chocolate shake was gross. Too much chocolate syrup and it was expensive!! We sent it back so she could get water another 10 mins later. Food delivery was quick and my burger was pretty good but it was plain and $12!! Jeez, so expensive for something so plain!!! I got onion rings for an extra few dollars (they were okay but worth the extra few $$$). My wife got an extra plate of fries and they were a few bucks but they didn't give her more than ten! I like the atmosphere of the restaurant and the theme but they are completely over priced!!!! Not worth it at all! The food was mediocre but left me sick that night. \n\nNot as amazing as I thought it would be after seeing it many times in Vegas...", "type": "review", "business_id": "CvRGjwCsrQs1DYYL3z8R7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5fPTQulecWNd_j787MFEKA", "review_id": "BuEbV3okQCWocCBYODgw_Q", "stars": 3, "date": "2011-10-20", "text": "I have to say I was slightly surprised when I went to the State Fair this year. Now I wouldn't go as far as saying I was impressed and it's a must for families or friends. My sister and I won free tickets to the fair and reserved seats for The Band Perry Concert off the radio and thought that was a good enough excuse to head that way. We got their around 5:30pm and it was relatively easy to find a somewhat secure parking spot (for $10). \n\nWe went on a Wednesday so I imagine it wasn't as crowded as a weekend tournament, but this day happened to be a day where you could get in free if you bought three canned food items to donate to St. Mary's Food Bank. Good way to save on admission. I think I would be a little irked if I had to pay $10.00 to get in on top of cost for game/ride tickets and food and everything else. The other nice thing about going on a Wednesday is most of the games and rides are half the # of tickets or 4 tickets per game/ride (not all of them but the majority). \n\nLines were short and you didn't have to wait much for anything. They sell some pretty strange fair food - I mean I can't even imagine eating fried butter, but I did have a fried Reese's Peanut Butter Cup which was pretty good. \n\nWe went around 7:00 into the Veteran's Memorial Coliseum and it was easy to enter and pretty full once we got inside. We got moved to seats closer than our original section. This is a one time adventure for me and I am glad we went but the fact that it was pretty much free is what made it appealing.", "type": "review", "business_id": "FkHhy6kWeoJf0xJTqzRWmg"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "ZLhToDLEyZmXZ40bh87XzQ", "stars": 5, "date": "2010-02-03", "text": "This is my go-to spot for mani-pedi's and brow waxing. They do a bang-up job on my poor feet because it takes a lot to get those pups looking good. I have never made an appointment but never had to wait more that 3-5 minutes to be assigned a nail tech. \nThey recently got new massage chairs that don't grind your bones or shake you to death like some chairs do. Also, this is one of the best places I have been for a brow wax. My sensitive skin has taken a beating at many other places but never here. I don't know anyone by name but the employees are all very nice and skilled at what they do. Oh, and they are typically $5 cheaper than anywhere else I have been for pedicures!", "type": "review", "business_id": "PEFUYmqfqy93_xyCnSfGNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "FyA9xkaXy_cjtYYYnCTY_Q", "review_id": "g1lY9x17jjc0MG304MTspw", "stars": 5, "date": "2011-10-30", "text": "In Phoenix for a concert and felt like Thai. Found this place on Yelp! and decided to check it out based on the reviews and the fact that it was near the friend we were visiting at the time. The restaurant is in a strip shopping center that we never would have noticed (or found) had we not been looking for it. Oh, but what a magical dining experience! The cashew chicken was the best I'd ever had (and we eat Thai a LOT!) and the chicken satay was exceptional. Loved the veggie Pad Thai and my husband got a vegetarian (tofu) curry dish he loved. Wish this place wasn't 400 miles from my house. I'd be eating here every week!", "type": "review", "business_id": "I1rvqU2k5UQGo2lGdY6hyw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "763n3ZAZvik0NhSJR-pB9Q", "stars": 5, "date": "2011-06-19", "text": "No attitude, efficient lines, clean, well stocked with flat rate boxes and other sundries????? Is this USPS or a dream? \n\nWriting Yelp reviews for post offices seems like... weird, or, something, but it feels so right for this location.", "type": "review", "business_id": "Sqt7_F2D1G2c_pwH_9R7ww"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "djv9d94qGF4ego_N41-I9A", "stars": 1, "date": "2010-10-18", "text": "I don't like the pizza hear and if you go for lunch there are no specials by the slice. The ranch tastes bottled and tastes gross. The ingredients are not fresh but rather canned (also gross). The chicken wings were not that great either. The atmosphere was nice for a casual place with a couple of flat screen TV's on the wall. I will not be going back to this place, so hopefully they get better soon since Barro's pizza is going in the area soon.", "type": "review", "business_id": "qK_nxiXCxjIP8Hd659bhvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1KQaefZNzcphPA-K28gHoQ", "review_id": "XE-YKyZ61oBfluP-XVddCw", "stars": 3, "date": "2012-06-18", "text": "This was my go to Vietnamese restaurant for pho and rice plates not because it's my favorite but because of convenience. Pho Avina is closer to me but that place is terrible so I end up going to this place. It also helps that LeeLee Supermarket is one street over so I get a Viet fix and my Asian needs shopping in one trip. The pho and com tam is average. The service is fast and friendly enough. I do find it a big stingy that they don't bring out the bowl of broth/soup before you get your rice plate unless you ask for it. \n\nAll in all this place is fine if you just want an average meal; nothing to rave about here. If I felt like driving farther, I'd definitely hit up Pho Van in Chandler for pho or Com Tam Thuan Kieu in Mesa for com tam.", "type": "review", "business_id": "2mcmuAvpNIJuV3gV0v9v2A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "pY4QTKUcH6bpBtl4yeOMaw", "stars": 4, "date": "2011-12-27", "text": "good selection, they had pretty good prices too", "type": "review", "business_id": "ycBa5cnSa6hgdB7rb9rdiw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MTu3hVSZkK8nkPhqT2FIDQ", "review_id": "TbhbsMrRtLijF7sysHELVw", "stars": 4, "date": "2010-05-15", "text": "I have to give major kudos to our server here. We rolled up at 9p per the Yelp listing happy hour times. Come to find out that 9 is the weekday happy hour and Fri/Sat's happy hour doesn't start until 10. We we're okay with this but our server spoke to the manager without us even complaining or asking him to and honored the 9p happy hour because of the Yelp listing. \n\nNow to the food and drink. \nIf you love cheese, their cheese menu was very large. We got several of the cheeses, the Tres Freres was my favorite (non-happy hour item though). The pork empanadas are a must and the happy hour drinks were very good as well. The strawberry sunset martini was very yummy. \n\nI'd say the happy hour items are where it's at overall. The food was great the drinks were good. Really given their menu and atmosphere I was really surprised that it wasn't more busy. It's kind of sad to see many of the Phoenix area restaurants kind of dead at 9pm on a Friday night. I'm guessing if it were located in Scottsdale that would be a different story.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "IGkoathSlJmIOBDGo9vUZg", "review_id": "yTkQwtKPDj1o4-5c47uFbQ", "stars": 3, "date": "2011-09-07", "text": "Person 1: \"So, where do you want to go to lunch?\"\n\nPerson 2: \"Hmmm. I'm not sure\"\n\nPerson 1: \"Want to go to Paradise?\"\n\nPerson 2: \"Naaah, we've been there three times recently.\"\n\nPerson 1: \"What about Subway?\"\n\nPerson 2: \"I'm so damned tired of sandwiches. . .\"\n\nPerson 1: \"Well, here's Qdoba.\"\n\nPerson 2: \"Qdoba? Okay, I haven't been there in a while. We can get in and out pretty quickly and get back to work.\"\n\nThat's pretty much how it is. Nobody really plans to go out and eat at Qdoba. It's one of those places you decide to go to on the fly or because you've eaten everywhere else.\n\nThe Mexifood is fair. Nothing special, nothing bad, nothing to distinguish it. There's tons of Mexican joints within ten miles that are better, but Qdoba's here in this strip mall. Haven't eaten here in a while and don't want to drive any further? This will make a nice alternative, and then you'll be good on this place for another six months or so. . .", "type": "review", "business_id": "Vak7jP7fu6LUxQDZmSZE3g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "VWhQ07IB_VvCTQJL0uEt-A", "stars": 4, "date": "2011-03-13", "text": "Oh god. It's like GOD'S VERY OWN HOT POCKET. Fresh, delicious, and cooked perfectly, though I have trouble bringing myself to get anything but The Pilgrim (served with turkey, cubed sweet potatoes, onions, and deliciousness). Cornish Pasty is great, though you'll likely want to consider takeout: it's TINY and finding a table can be a real pain.\n\nThe staff is fun and helpful, even though they're quite harried, and the oven-roasted potatoes are fantastic, as are nearly all of the pasty options, all priced damn well, to boot. If you've never been, they'll almost certainly have something you like. My only problem is that nothing is customizable: they're all served as is, which I understand from a production standpoint, but which frustrates for the number of menu items with just one dealbreaking ingredient for me.\n\nOverall, it's exceedingly easy to be a regular, and to feel VERY full, careful not to eat the crimped part of the pasty, just like the tin miners of yore so as to avoid the traces of arsenic from their dirty hands.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "POVio1iSAaPDCsxpp2EmMQ", "review_id": "O8bta2G4tjwBYG0KKf9qJg", "stars": 5, "date": "2011-10-09", "text": "Satori to Kaigen! (Enlightenment and Spiritual Awakening!)\n\n1st review. Nervous and working on an empty stomach, with the only exception being the half loaf of French bread and herb-butter I had consumed prior to dinner. Thinking Asian all day and being an incapable decision maker, I rely on Yelp and the assistance of a small list and a single 6 sided cube with dots on it. I jotted down 6 prominent businesses, held my breath and flicked a wrist. A \"2\" brought me to La's Thai Cuisine!\n\nPeeped the website and open til 9:30, score! My eye spotted closing time was at 9:00 though! Arriving on the scene at 8:49, poorly reverse parking my Honda in two spots because I was worried that they were closed. They weren't, I was met by a Thai beauty introducing herself as Lisa. I humbly asked for takeout, my adventure begins with the opening door...\n\nSmells are incredible. Having thought they were closed, I had forgotten what I was going to order! I rifled through the menu, feeling as if the whole kitchen was watching (they weren't) but she instructed me to take my time; So I ordered a soup, a salad, an entree, a dessert and a side of brown rice. They kindly ask me for my preference on the degree of heat, on each item, I asked for not the hottest but close to the top.\n\n#17 Mixed Vegetable Soup: Stellar\n\nCulinary Thought: Clear, piping, spicy and vegetable packed. \n\nNinja Eating Plan: Gently lay over white and brown rice, alternately.\n\n\n# 9 Papaya Salad (Som-Tum): Phenomenal\n\nCulinary Thought: I got shrimp on the side, due to allergies. This was probably the most awesome experience of the evening. They even \"fenced in\" the shrimp within a Masai-esqe cage of cabbage, to prevent their oceanic brine from invading the delicate papaya, sprout and carrot forest. Spice and crunch with every munch. Beautiful.\n\nNinja Eating Plan: Try not to be seen scarfing this down in front of a date, it's that awesome. Fortunately, my sister was only present and she knows I can eat like a pig and sound like one, too.\n\n\n# 53 Peanut Curry (Panang curry style, comes with rice!): Umami\n\nCulinary Thought: I don't like coconut. I do now. The lemon and coconut milk rises through the savory peanut curry. Tofu was my protein option, it was done perfectly. Green beans provided great consistency in this masterful crescendo.\n\nNinja Eating Plan: Laid over rice, alternately brown and white rice, interrupted by the occasional, gorgeous, curry-only spoonful. \n\n\nCoconut Ice Cream: Yum\n\nCulinary Thought: I was reeling at this point but I wanted to continue this experience. As I stated earlier, coconut is not my thing but I believe in giving things a fair try, so I did. Coconut ice cream is delicious. Coconut pulp, or meat, I still have a texture issue with, but the honey swirl throughout the ice cream made this delectable.\n\nNinja Eating Plan: Use the cooling ice cream energy to return your body back to normalcy. Perfect coda for the culinary symphony.\n\nI will be back. I plan to have every dish vegetarian style. Family-run places are truly number 1. \n\nOverall experience of the Culinary Ninja: PAVLOV\n\nDo you hear the sound of a bell chiming?", "type": "review", "business_id": "hwXFp8FKJ7ivQb8_f4X23g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "zbq9j56YHSa_WEEXtsEcBg", "review_id": "kNsD6Ui-aPIiLYfbilYp0Q", "stars": 5, "date": "2011-12-21", "text": "I went to the physical location the first time with my dog Foxy to scope out the place. The store inside is iitttyyy bitttyyy and not worth going to in all honesty, but the staff that work there are REALLY friendly, and helpful. Foxy eats Evanger's, which is really hard to find, and the only place I knew of that carried it was 20min away from me. \n A month later, I run out of dog food....so I call Goober (after research I find they sell Evanger's for the cheapest price) and they delivered it right to me. I wasn't home so they left it on my front porch along with a pretty large amount of free dog treats for Foxy ! They left their newsletter, some reference cards, and their product list (which is HUUUUGGGEEE) in a bag hanging from my door. The reference cards you give out will earn you discounts on your next purchase! Oh of course- I forgot to mention the delivery was completely FREE of charge!!! I'll never get my dog food anywhere else.", "type": "review", "business_id": "cIPzndsbagQGj9U1sLqLtA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "I7zvmDRYtsLUHsLi50wDNA", "review_id": "OT9779o629UEC8gmI8Fa4g", "stars": 5, "date": "2012-08-24", "text": "So yummy!! My favorite Mexican place!! Love the chips, salsa, and bean dip. The extra spicy green salsa is so good too. We are regulars here.", "type": "review", "business_id": "ScvhAJe5lIJ7_SIvNTDfgg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RvaQ6i9CdTpF_1MzKlUUaA", "review_id": "HK_VGoXkZmzmj2yrn8c_yA", "stars": 2, "date": "2009-07-13", "text": "I shouldn't have judged this place so soon. They are local to my apartment, they do deliver for $2.90, but I've been back 3 times since my first review and I'm getting bummed out here.\n\nA few weeks back my boyfriend and I wanted to get a little buzzed at home, so we decided on streets of new york to deliver us some grub. We went with pasta. My boyfriend got the spaghetti with meat balls, and I got the meat ravioli. Ah I really hate to say this, but I would have had a better time eating a can of Chef Boyardee. I don't know what is up with their \"beef/sausage\" but it always has a funny taste to it. Kind of like when you re-heat a hamburger in the microwave. That taste. I was less than impressed. The salad it came with was decent, and I'd go back just for the bread, but even with a buzz I wasn't enjoying my pasta. The boyfriend agreed it lacked flavor and was 'off'. \n\nThen yesterday we decided to have another one of these nights, and do the Pizza instead since our pizza was good the first round. I got chicken and pepperoni on mine, and he got sausage. They charge extra for chicken. Um.. I don't really understand why. The chicken is breaded chicken strips that they just cut up and threw on the pizza. I wasn't impressed AT all. The sausage on my boyfriends pizza tasted weird and sweet like.... I don't know what's up with this place!\n\nSo I say if you're going to go with one of their pizzas, definitely get a coupon and stick to the basics. I suggest the bacon, or pepperoni.", "type": "review", "business_id": "27hfvE5DcOY3J1-MWbTU9Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1f8_7NDng8w5CV7bshe63A", "review_id": "x6b0jru4OlUzfzeoNxvZEg", "stars": 5, "date": "2009-04-30", "text": "I have been taking vehicles to this place for 15+ years, mostly for routine maintenance, but occasionally for the other annoying things your car does to you. We have never had any problems with their service or repairs, and they have always been reasonably priced, fair and honest with us.\n\nThey also refill propane tanks.\n\nNote -- this business has outlasted at least two gas suppliers. Previous names include McClintock Unocal and McClintock 76 :-)", "type": "review", "business_id": "YSesarsmfOIKwx6eiRqFZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BfetZm9fa0zqyAFn8vo_6w", "review_id": "n-MKaPksVzxBoTlda0gYzA", "stars": 5, "date": "2011-03-28", "text": "Thank you Sunflower for having a decent selection of tofu and fake meats so I don't have to drive 25 minutes to Whole Foods. Also I would like to tell you that I really enjoy your produce prices and your friendly staff, especially the cashiers, they are always so pleasant and helpful. While I am at it I should probably apologize for \"sampling\" lots of your candy from the bulk item bins, those chocolate covered peanut butter filled pretzels are amazing, I promise I always use the scoop. And one more thing, it's really awesome that you carry beers brewed by Rinkukiu Alaus Darykla, the Lobster Lover is DELICIOUS!", "type": "review", "business_id": "5nahZe5bBYUbFWgEfwoNOA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "8gM0VBG-5vlS7teGszclKQ", "review_id": "fZ6ktQYONjrOcK4SjTxS8w", "stars": 5, "date": "2009-01-21", "text": "Private Karaoke at Geisha A Go Go is the coolest thing to hit Old Town in a while!! My girlfriends and I went this weekend and it was incredible. I have heard a lot about karaoke being the new trend but not until I actually experienced it for myself did I understand why, until now. We had a private room with a flat screen TV and drinks at the flip of a switch (um, can you say bachelorette party?!). It was so nice to have a night out without actually having to wait for drinks at a crowded bar or being able to hang out with your friends without random guys interrupting with a cheesy line to try to talk to you. It was $75 for an hour in a private room with 10 of my best friends. And by the time you split that between everyone it was well worth the extra expense. \n\nSeriously once you try it you will be hooked too! I can't wait to go back!", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "uBp2Jmip2qXQ0iWHUDY9sQ", "review_id": "vz4xCCersFRfDXl2qhvAWA", "stars": 5, "date": "2012-08-31", "text": "Yes, it's on the Northwest side and its tucked into a non-descript strip mall better known for being the home of Padre Murphy's Sports Bar, but don't let appearances fool you, this is a great gym. The gym offers a large selection of cardio equipment, weight machines, free weights, and group exercise classes. It also has a pool, hot tub, sauna, and steam room. But will really makes this gym special is its kids care facility. It has video games, pop-a-shot, and a giant climbing structure that my kids like so much, they are begging to go to the gym... and it's a lot easier to get a workout done when the kids are excited about going!\n\nDefinitely a great find and well worth the drive to the Northwest side.", "type": "review", "business_id": "lXUaypwLG_rIU4qnpBmF-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eI8_XqMTJ0OgVrpc33N8Uw", "review_id": "1CjzOocxElDQfpRkap2fcA", "stars": 5, "date": "2012-05-27", "text": "What a brewpub should be. The beers are great. The food, the Slingers (wow) & the service is all top rate. Lisa, the server was very helpfull. I need say no more.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vUM21g3cPEdSlI89oDttgw", "review_id": "uRRbRj5f7E0cfw6X4sDhGg", "stars": 3, "date": "2009-07-11", "text": "My first visit to Picazzo's is not what I had hoped it would be at all. A few of my friends who have fine taste in food raved about it and so I had high hopes. Let me start by saying, I'm not really a gourmet pizza lover. As a teacher, I have plenty of Domino's and Pizza Hut all the time, and can be quite happy with that, either that or I love a great slice of New York style pie. \n\nSince I am not a huge fan of gourmet pizza and the overabundance of toppings, I checked the menu for a nice plate of delicious pasta. I was incredibly unhappy to find that they had about 6 pastas and they all sounded bland and/or too strange to order. Then, I found their sandwich section. I decided on their Spicy Chicken sandwich that sounded perfect. But it took awhile for our waitress to come over, so I glanced at the pizzas and found a couple that sounded good too. Thank goodness I did, because as I ordered the sandwich, the waitress informed me that they only serve the sandwiches at lunchtime! What?! That really peeved me off. What is irritating is on the menu there is a clear line between the section that says \"Lunch Specials\" and where it says \"Sandwiches.\" I mean, there is an actual black line drawn between the two...to me, that says that they aren't a part of lunch. Don't you think? \n\nInstead I ordered the Popeye and Olive Oyl pizza, which has a white garlic sauce, spinach, artichoke hearts, garlic, Kalamata olives, carmelized onions, mozarella, Roma tomatoes, and Applewood smoked bacon. After I ordered it, I really thought how I truly didn't even want it. I was really irritated. \n\nMy husband and I both ordered our own pizza since we couldn't agree on what we wanted, so he got The Vortex, which basically had all the meats you could possibly think of. For an appetizer we ordered the garlic cheese bread, which was way too garlicy. It came with olive oil for dipping...I would have preferred some marinara sauce or something. After I had ate the bread, I really didn't want my pizza b/c of knowing that it had so much garlic. I picked a lot of the garlic cloves off along with most of the other toppings...there was just too much on it. I know for some, they would probably like that...but it just isn't my thing to have too much on my pizza. \n\nAll in all, the pizza was pretty good, once I picked off half of the toppings. The crust was really tasty and had the perfect crispiness and softness to it. I could have had just had that alone and been happy at that point. \n\nMy husband and I both agreed that it won't be a place we go to again, unless it is for lunch time, so I can try the sandwich my mouth had actually been watering for.", "type": "review", "business_id": "SDs4eWoV-cpJystzTAH0qg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MNd2kbG7OYxElc6xe1xexQ", "review_id": "ZTEuHLTnuP4WzO3k3KE58g", "stars": 1, "date": "2010-10-31", "text": "eeew. It started with a cranky waiter who told me that if I wanted to know the specials, then I should have read them on the board. The food was downhill from there. The entire place smelled like fried onions.", "type": "review", "business_id": "WxpCYziMlEy8mrEa_VcB1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fnO1oH3N5QMG-PvHA4F-VA", "review_id": "9kM1TcS3XWOYxe6-rYZ0PA", "stars": 4, "date": "2012-01-11", "text": "I love this place!! Great food and service..portions are Hugh..", "type": "review", "business_id": "c8XlQvVNwKhH9BOHEObtNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "rKVjF9XlDfW_mIf_n-VrIg", "stars": 5, "date": "2007-03-11", "text": "Brookstone is the Sharper Image's older and more laid back cousin. Yea, it's got a similar feeling, but it's more focused on keeping you relaxed and healthy than on funky electronic toys. The massaging chairs, pads and other devices are enough motivation to stop in alone. And if you're with a partner who's less interested than shopping, it's a great place for them to just hang out too! (Trust me - this works.)", "type": "review", "business_id": "wuYbkc2hMYli2dv6nONvKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xwTe8xDNEuQGUzk9peGnVQ", "review_id": "Wv2aN1KONDstohMR_lWWzw", "stars": 5, "date": "2011-10-05", "text": "There is no shortage of Mexican restaurants in AZ and this one is one of the tops on my list. It's not your average Mexican fast food. It's a little more pricey but well worth it. Their bean and cheese burrito is so good (they say no lard and I don't know what else they use to make it good). Their carne asada and pastor tacos are done to perfection. I stop by whenever I pass by this place.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KsrdgOiz8Woi1f8CV8sdXQ", "review_id": "-xSNmV9r8vzsi8OIBK-_QA", "stars": 3, "date": "2012-11-25", "text": "Excellent food, top-notch service, exorbitantly priced. Not for budget minded diners...", "type": "review", "business_id": "0ONypOKIhttBz9IJzBE8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jWvzAN1czxypi-GM1KY62g", "review_id": "aGjSwMpcgnjeAvIA3NF9Wg", "stars": 3, "date": "2008-11-09", "text": "I like this quaint little restaurant although the space is a bit crowded - especially during peak times. Too bad all they really serve is Pizza (there are other things on the menu - but not much else). I thought the Pizza was OK - but certainly nothing to rave about. Desert was awesome -- they have a selection of crepes to choose from which are ALL to die for! \n\nBottom line: Experience is nice and unexpected for Phoenix. Food is not disappointing as long as you aren't expecting a lot. Desert is special.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 4, "useful": 1, "cool": 1}, "user_id": "UoBfwbXaixelZBghbJ2cSg", "review_id": "jwaLD-4EJdk_mVIRZWP5ZA", "stars": 2, "date": "2009-09-08", "text": "My darling SO just looooooves this place, supposedly because they have a BLT that comes with avocado and a half-cooked egg on it. Ummm... OK. When he finally dragged me here, I realized he probably likes it because the waitresses hit on him. (Honeybuns, if you're reading this, they'll do anything for a tip. ANYthing...!?)\n\nI got a veggie egg white omelet, which had all my favorite components of caramelized onions and broccolini, but it tasted as if they had sauteed the veggies in the drippings from the burgers that just came off the grill. Uh, gross. This alone takes the rating to two stars, and I'm not even a super-strict vegetarian. It's just disgusting. The English muffin was this weird little hockey puck that really served no purpose other than to serve as a vehicle for the tasty, homemade apricot preserves that came on the side. The chocolate cherry scones were delish and the coffee quite good.\n\nThe booth next to us held three 20-somethings (two dudes and a chick) downing mimosas, still wasted from the night before, who thought it fun to play their cell phones and/or iPods at high volumes. Just annoying as shit. Later, when I visited the swanky bathrooms, I saw the girl out crying in the lobby. Guess the swordfight didn't end well.\n\nI'll go back, so my SO can continue to get his ego stroked and his cholesterol raised, but I'm staying away from things from the grill...", "type": "review", "business_id": "tdeHd2AVYlEnz9F1UGb84Q"} +{"votes": {"funny": 2, "useful": 6, "cool": 2}, "user_id": "To6VfMpjPuiixoT4uq_mIg", "review_id": "_2FCV5-xP7TdHmRS3mmV1g", "stars": 2, "date": "2007-03-04", "text": "My wife and I had reservations there last night. Poor choice! Not a bad place to eat, but a terrible dining experience. \n\nParking was an issue. Despite our early reservations, the only parking available was in the next lot over. One had to traverse an earthen embankment and a grubby alley to get to the place. Tell your companion to wear something other than high heels!\n\nI dislike places that serve olive oil in place of butter with one's bread. I know it's fashionable, but it gives an impression of economy. That's fine for Macaroni's Italian Grill, but detracts from the tone of a place with Tarbell's pretensions. I'd prefer it if they'd serve both, or at least give one a choice. \n\nThe soup of the day, potato and leek, was of delicate flavor but redolent of Potato Buds. Could it be possible that they're making this stuff out of a dehydrated product? The Caesar salad starter was a nonentity, and might have been improved by a little ground pepper, which wasn't offered. \n\nMy bride was mightily impressed by the grilled salmon....some of the best she'd ever had, she said. The effect was somewhat dissipated by the peculiar potato product offered as a side. If you like to peel off and eat the crust around the edges of a pan just used to bake scalloped potatoes au gratin, you'll like this stuff. \n\nI had the pork chop, which was very good without being memorable. It's served with a side of what they claim to be 'wild boar bacon' and unidentified greens. The pork, independently, was bland and without much character; but spear a bit of pork, add to the end of your fork a fragment of bacon, and then a green or two, and the dish is much improved. \n\nDessert was uninteresting. The sorbet was of the store bought variety....and not top shelf stuff, either....and the apple tart was bland and as dry as if it been left in the oven overlong. \n\nThe ambiance of the place leaves a lot to be desired for a celebratory experience. It might work for a business meeting, but it ain't no place I'd care to take a date, ever again. The dining room is crowded and noisy, making conversation difficult and at times impossible. The tables are too close together and I had to endure a face full of server's butt whenever he waited on, or cleared the dishes of, the folks at the table neighboring ours. \n\nI suppose I've saved the best....or the worst....for last. I haven't been as rushed by the waitstaff at a meal since my experience in an Army mess hall at Ft. Bragg, North Carolina. The place is being run as a money making machine and that means that they are trying to turn over tables as many times as possible in an evening. Services is overly rapid and one feels pressured to finish up and allow the waitstaff to get the next course on the table. The object, of course, is to get you fed and out the door, freeing up a table for another party. My wife resorted to the tactic of picking up her fork when she saw the bus-guy approaching....otherwise he'd be on us to clear the plates containing food over which we were tarrying, in his opinion, overlong.\n\nThe check was presented to us the moment it was ascertained that we had completed dessert but before the plates had been cleared. I returned it asking that she bring it on AFTER we'd finished our coffee. Which, by the way, hadn't been offered, either. \n\nTo his credit, the dining room manager did come over to apologize for rushing us, and comp'ed our coffee. He explained that \"the standard in America is to present the bill when dessert had been finished\". I beg your pardon? Not in any place I've ever dined, and I was born in Ohio.\n\nThis place seems popular enough on a Saturday night, but I certainly won't be gracing its dining room any time soon. At this price point ($175 including wine and tip for the two of us) I expect more than what was offered. \n\nSorry, folks, I know this sounds like a rant, and to some extent it is. It was an important evening for us....after all, twenty years only comes once in a marriage (well, most marriages, anyway)... and we had hoped for a gentler experience.", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NGIGvoHYuCXi8aYWvaKlCg", "review_id": "u9flSRrKJbLJu1cLLhVGWw", "stars": 4, "date": "2010-07-18", "text": "This is my first review on yelp. My wife and I were looking for a place we could take the kids for ice-cream tonight after visiting bass pro shops. Did a search on yelp found this place.\nI've got to say I've never tried gelato before but my wife thought it looked good. I got peanut butter and banana, the wife got PB and choc Oreo, and my kids got Oreo and choc chip... As my 5 yr old said, this place is off the hook. We will definitely come back.", "type": "review", "business_id": "gb-k4Z17XxuPkUmsevwBYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "yeMNAZKxXf4T2MgBMYAH4Q", "stars": 2, "date": "2010-08-20", "text": "Things I liked: The homemade chips (mmm), the red salsa, the tender chicken pieces in my enchiladas and the service.\n\nThings that just didn't work for me- The green sauce was so blah I couldn't eat it without dousing it in the red to get a little flavor. The beans and rice were disappointing as well. Perhaps it is my lack of familiarity with New Mexican cuisine, but I was not impressed.", "type": "review", "business_id": "NBwPgX7L2D-EZedgo3A-pw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Pv7DGHzZ-uqIUdOsqPpsVg", "review_id": "6WkUEkK28o0eQN_u5BmSJg", "stars": 3, "date": "2010-03-10", "text": "I really want to like MADCAP. I love the idea of playing old b-movies and some forgotten favorites. The boyfriend and I went to MADCAP last weekend to see their Chuck Jones presentation. Unfortunately, we were pretty disappointed, not that it was completely MADCAP's fault but still.\n\nMy biggest problem with MADCAP is the price of admission. $10! That's more than a new movie. Why should I pay $10 to see a movie that I could get on DVD for half the price? I know the money is going to a bigger cause - having a cool theatre in town - but I just wish it was cheaper. If it was $5 I think I would go a lot more. For $10 it has to be something I really want to see and after not being so impressed by the Chuck Jones things I'm a little wary. There wasn't even a screen in the theatre - just a white wall.\n\nIf they showed new independent movies for $10 and old movies for $5 I think they would really have something cool going on. I hope they can figure it out because I'd really like to see the place become what it could be.", "type": "review", "business_id": "CVkUxfuLx5AGLI6eDFU4RA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "oW0dmS7HNz3fILK-Z-MLSA", "review_id": "pibxf3JHyWa1CDmU1ykasw", "stars": 2, "date": "2012-04-20", "text": "The food was ok. Waitress forgot my guacamole. Wait staff continually bumped into our table. Great wine list. Nice decor. I may or may not try again. Not impressed by the food. Id go up to Narcisse or True Food instead.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "vNFxfUDTPgZRgV3EHnkmJg", "review_id": "O2szBGfOjIx0Gxqft0tk3g", "stars": 1, "date": "2009-04-26", "text": "Needs a new name - now. \n\nThe Pischke's of old had such a sad ending. I appreciated McGrath's effort to keep \"Pischke's\" alive. But it is nothing, nothing, nothing like the Pischke's of old. Call it \"The Blue Ribbon Cafe\" - take out the PIschke name - I can't imagine that Chris PIschke would have been honored to be remembered this way. If his restaurant was a reflection of who he was as a person - Pischke's Blue Ribbon Cafe would be the exact opposite of who he was. \n\nThe current restaurant is not a laid back, family friendly and yet a bar all at once restaurant that serves an unending array of crazy good sandwiches/salads/etc - the current decor is pretentious, and the food matches that.", "type": "review", "business_id": "5oIiBxbTYuWAtHx7-alXbA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "2AqetcqrCB8wINZEMGUPNw", "stars": 2, "date": "2011-07-31", "text": "Writing my 7/29/11 review prompted me to return to this establishment for a manicure. I got there at 9am, but unfortunately the sign on the door states they don't open until 10am. So I ran a few errands and returned at 10am. There was no one in the store and all the lights were out. Again, it is already over 100 degrees outside by 10am. I decided I didn't need a manicure that bad and left.", "type": "review", "business_id": "2nd4_b7-DFjI921Mtt7GrA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3dHAHbMesWcpET-D0zs-LQ", "review_id": "22EzOvEVs0U1nxbBx5z8EQ", "stars": 5, "date": "2010-03-01", "text": "I have been to this place many times and the food and service is always great. I am so excited to have found a place where I can get freshly made, good food out here in Queen Creek. My favorite is their home made mozzarella cheese. Its great on anything. I frequently order the tomato, basil and Mozzarella pizza and I recently discovered their vegetarian plate which was delicious. The staff is very friendly and the atmosphere is casual and comfortable. Don't forget to save room for the amazing ice cream they have.", "type": "review", "business_id": "TuuENwzxOFdDLY_oKCbFZw"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "Jb8p4tDOrq_IKjBJXM0GSg", "review_id": "_ZlHhTIn0aN-1AQvz6aeSA", "stars": 5, "date": "2009-01-21", "text": "Stayed here for the RocknRoll marathon like 80% of the guests and absolutely enjoyed my stay.\n\nthe hallways to the rooms were the only slightly blah decor, all other things such as the bedrooms, bathroom, lobby, restaurant and pools were great!\n\nAmenities included:\n1. pet fish (that someone else fed)\n2. complimentary granola for the race day\n3. smores for our firepit (next to the pool)\n4. nice wait-staff that was pleasant and chatted us up\n5. super fast towel replenishment service (4 girls use up a lot of towels)\n6. great cabanas -we never had a problem snagging one or two of them\n7. happy hour, decent food, delicious alcohol...\n8. cool lobby area with lots of places to looooounge at\n9. dog friendly\n10. heated pools\n\nlove it! I will stay here again for sure..", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vAZEQTXiDtM-64SXy9FUuw", "review_id": "jF1iUovQfBtIsQcQFhevyg", "stars": 3, "date": "2012-03-04", "text": "I wish I could love this place... It's just tough. \nI've eaten here several times and just haven't really LOVED anything. My sandwiches have always been dry and kind of bland tasting. Salads have been ok, but I usually feel like I can make them better. Hummus - dry. Dolmades - tasted like the ones from the jar. Ahh, so sad, because it's food that I do normally love. \nHere is why I gave this a three- happy hour prices are good ($2 or $3 for small plates). With prices like that, I can forgive some of the food quality a bit.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AYRv5k9H2w7VNI1X-9fM3A", "review_id": "2M_blXbHIPct5HT11gEhSg", "stars": 4, "date": "2011-03-22", "text": "I had a really good experience at this place. Started with the chilled cilantro lime crab dip. I wasn't sure about fried plantain dippers but they worked. If you go here you have to get the Thai bbq baby back ribs. They were awesome! Next best thing I had was the mac & cheese and also the spinach & parsnip gratin - good stuff. Ended with the guinness chocolate cake which was pretty good but next time I think I will go for the s'mores creme brulee. All in all a good time and would recommend.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "z393huZItap6YIZVcofLyQ", "stars": 4, "date": "2012-12-06", "text": "Great food at Rico's! The nachos are great, as is the green chile stew. You can actually make a meal out of either of those appetizers. They're filling and delicious. Decent beer selection--although I'd prefer if they had Four Peaks (Hop Knot) on tap. Sort of a casual/upscale atmosphere. You'll probably feel at ease no matter what you're dressed like. Very helpful and friendly staff. Overall, Rico's is a winner. If I lived closer, I'd visit often.", "type": "review", "business_id": "7LGjM8HKJTwqfYU3C7N_0w"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "y3d4v0x-vD10hw-O0YKa1Q", "review_id": "L3vNlx0BnuyL7QgHJJfVbA", "stars": 5, "date": "2009-03-27", "text": "This is one of my favorite places to take out of town guests. It never fails that we laugh so hard our sides hurt! Always fresh, always funny! Great place for a date night or family night! Even my teenagers love it! I never have to worry about offending my guests because their content is family friendly. \n\nTo finish off the night, head down the street to \"The Sugar Bowl\" for fresh ice cream!", "type": "review", "business_id": "IyldfEGfCVcEOb7SMlKs7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jPwveAVMfAtmAkT-9l83vg", "review_id": "rDD8usjaBlaMk1-vSWMxXg", "stars": 4, "date": "2009-03-23", "text": "El Paso currently has some recession specials that lower the price of several entrees. I got the brisket platter for $9 (reg. $13) and it was plenty of food for a good price. The brisket was juicy while hot, although when it cools it gets drier. I should eat faster next time! The brisket also had a very dark pink smoke ring and good smoky flavor. the bbq sauces are good but nothing special. The platters come with 2 side dishes and I was pleasantly surprised that the veggies were not boiled to death. The carrot strips were just the right tenderness and sweet, and the broccoli was slightly crunchy. My other side dish was the sweet potato fries. They were good and went well with the BBQ sauce.\n\nFor the price, I'd definitely go back to try some of their other meats.\n\nSide note - I don't know why, but all of the tables around us were filled with elderly people. Does El Paso put coupons in AARP magazines?", "type": "review", "business_id": "8nRXiNdt_8-aePTlVxKqmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U14IHoSXcztl-4PjyY0pug", "review_id": "c6le-YGgkN24XCxupfHIdQ", "stars": 5, "date": "2011-02-08", "text": "I was very sad to see this restaurant go. I wish Anthony the best and hope he opens up somewhere else!", "type": "review", "business_id": "2MHIzCgnuLrLJcorln_7WQ"} +{"votes": {"funny": 6, "useful": 9, "cool": 8}, "user_id": "waD2euOMPTnTzQ0thq3H6Q", "review_id": "d9X2rr2pTxaDwJ2H59zaNw", "stars": 4, "date": "2008-10-28", "text": "It's 4:00 am on a Friday, you've just finished listening to awesome music and drinking too much, you're starving and want some good comfort food to fill your gut and soak up that alcohol..... enter Jerry's.\n\nThe place was open. The place was clean. The food was good. The service was great. The prices were great. WAY better than a Denny's, better than most diner's I've been to, actually.\n\nI had ham and eggs and the plate was delicious. The ham steak was gigantic, the eggs perfect, and hash browns were done just right... crispy and good.", "type": "review", "business_id": "4rySWsfL5enT7t4XuVNJuQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "xkTbpCc-YhU8-EXZDA7u0g", "review_id": "Ug5Wzg4LNZe9t5qYXE02AQ", "stars": 2, "date": "2009-05-25", "text": "Let me say this: the bar at Hanny's is one of the best looking bars in Phoenix. This square-shaped sparkly thing gets an A+ on the presentation, and they make some great cocktails. The rest of the place... not so much. I agree with everyone else: Hanny's has a great concept for a place. They left the skeleton of an old department store intact -- complete with a completely unusable second story -- but the results aren't spectacular. The restaurant looks great inside, like it should be a real classy establishment. So why are they serving pizzas here? The pies are decent, yeah, but really? Shouldn't we be getting steak here? Prime rib? A nice grouper fillet perhaps? With such a nice space and a primo location right in the heart of downtown, I'd think Hanny's could step it up in the food department. It's like this place is confused about who it wants to be: a neighborhood fare spot or a classy dining destination.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mhy-dtosAuafEyQo04a0Gg", "review_id": "M7fqSgapGomLM7cha4j7VQ", "stars": 5, "date": "2012-07-16", "text": "Excellent Soutwest breakfast bowl. Great service. Very convenient to downtown hotels.", "type": "review", "business_id": "0nGjXTpUtpIJl10PL0eBGg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "sQwgFhirdCt6h_g1rbjHHA", "review_id": "tk2QSeGvq7iOASVnNqmU_g", "stars": 5, "date": "2011-04-28", "text": "I can't help but love this place. I've been going here since, quite literally, the day the opened. I move further away and I keep coming back.\n\nThe staff is friendly, the food is delicious, the beer selection constantly rotates to new and interesting beers... and this is basically the de-facto hangout for climbers and cyclists! Really can't go wrong with this place.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Qx6Kq92S72-tik94Hfn0UA", "review_id": "lsMdJrQXcs_0EMvRD8w8tw", "stars": 5, "date": "2008-02-14", "text": "I went to Peter Piper Pizza tonight to celebrate my daughter's 5th birthday! It is a great place for kids to have fun. Being a former employee of PPP I know that we could have had reservations for her birthday and had a party representative help with everything. Unfortunately, this was just a small family celebration. So I ordered the big family meal deal which consisted of two large pizzas and an order of wings. The pizza is always delicious to me, it is not greasy like some of the pizza places out there. We forgot to bring a lighter for the birthday candle so they had one on hand for us to borrow. Needless to say this is a place that the kids love. They can eat great pizza & play which is all kids worry about.", "type": "review", "business_id": "09dr3kXV8Ff42Ur3mCh3LA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "94-cnnPccqQixVhJkRwPnQ", "review_id": "aTFGLkEPU4UPhP-PTY7WbQ", "stars": 1, "date": "2010-12-13", "text": "OK. So I think that this may be the first business that gets one star from me. I just flew home from Israel on this airlines. Boy, they are pretty sad. I usually don't like to be too harsh on anyone, but this airlines deserves it. \n\nPlease, don't think of this review as complaining, but rather a warning to others out there to never fly US airways (Nobody likes a complainer right? Haha.). Well, not never, but if you have no other choice. I would venture to guess that this airlines is pretty cheap because of the full flight loads that i encountered. You could say that is good for them but the service on the planes was not up to par. I guess I have been spoiled with the likes of Hawaiian Airlines, Nippon airlines, shoot, you can even throw Delta in there. The flight attendants are rude. This is from both personal experience and from observation of my own. \n\nYou know what, I could go on and on, but I really don't like to cry about stuff. Would I fly US Airways again? No way. If it was one of the last airlines on Earth? Maybe. I just hope that their service of customers get better.\n\n Then again, maybe they didnt treat me well for the fact that I hadn't shaved and looked Talibanish. Oops.", "type": "review", "business_id": "bA-Cj6N9TEMlDlOh2aAnUw"} +{"votes": {"funny": 0, "useful": 3, "cool": 5}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "5KNRveSLv3bPAsyc-32JHg", "stars": 5, "date": "2008-03-12", "text": "I would not survive without Channel 8. i really don't watch much TV, but when I do, I want it to count.\n\nLet me see: Keeping Up Appearances, Coupling, RedDwarf, Antiques Roadshow, NewsHour, Nova, This Old House, Dr. Wayne Dyer, Frontline, Horizon, Scientific American Frontiers, The War, As Time Goes By, Red Green. Plus, tons of responsible programming for kids in the am and afternoon.\n\n(I don't think RedDwarf and Coupling air on PBS anymore - but thanks to PBS for introducing me)", "type": "review", "business_id": "o2rrTbAxGXrdQKQvKDcGiA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "rSKOHQi-NByjMIsul9WDLQ", "review_id": "vKOGdefx0bpG_EYe1q8XNg", "stars": 2, "date": "2012-02-13", "text": "The food is good here, ordered the Mole enchiladas with no complaints, however we also ordered a skinny margarita which was not very strong and $15 ea! The regular margaritas are fine and priced okay at $8, but to charge $15 without warning is usury. The service was okay, not great. The menu is also hard to read because the type and busy background design. I would have given 4 stars if the margaritas were $11, but $15?? This is not Modern Steak or the W !!", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "by2WhWockh5hh16y968WXg", "review_id": "-J17U4z18USof3QDECzr4Q", "stars": 5, "date": "2012-12-27", "text": "I had the Crispy Steelhead, and it was delicious! The sweet pea risotto and roasted tomato-chanterelle ragout were a great addition. If you're looking for a great restaurant with an original menu, this is the place to go! Friendly staff and they were quick to seat us.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zkhOTlhe6dn-jrwDpYDN6Q", "review_id": "vTWa1SoHKt2HYWsIq5u08Q", "stars": 4, "date": "2012-05-05", "text": "This review is a little late coming, but just got myself some fabulous chocolates and remembered how addicted I am to the passion fruit ones. It's a good things they're so pricey or I would probably eat an entire box.\nJulia Baker also did our wedding cake in 2010. The cake was a beautiful three tier red velvet. It tasted amazing, we still get compliments on it. Julia and all her employees were a joy to work with, the tasting appointment was one of our favorite parts of wedding planning. Would definitely recommend.\n\nLost a star because they are a tad bit overpriced. Also the design on our cake was the wrong color, our wedding color was an olive green and the cake design was a bright almost neon green and we had asked for an olive or dark emerald color. If there wasn't a million other things going on I might have stressed about it but as it were the cake tasted great enough to make up for it.\n\nThey didn't last too long at the Montelucia, which is usually when I'd stop in for a treat. I'm not sure where they moved but I know that you can buy the truffles and chocolates (seriously try the passion fruit) at AJ's Fine Foods in the area.", "type": "review", "business_id": "b7GM0x9zZU5gq1aXErUf7Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "u6iqjUjeQHsxCYmsF2m8jA", "review_id": "zJK2nPkflDAeb3sUwwgkaw", "stars": 1, "date": "2010-12-20", "text": "Called last night @ 4:30 and tried to do call ahead seating for 6:30 for a party of 9. We are in town and are here to see some friends. Explained to hostess that some in the group are seniors so would need to have assurance on reservation. I was told to call back in an hour, the thought process by her was that it was too soon to give me a time and they weren't that busy yet. So I did as told and called back and after about 10 minutes of confusion and other waiting I was told we couldn't be seated until 7:30 or we could have seperate booths. I explained that we needed to sit together and 2 hours was the best she could do. I was so frustrated I told her no thanks that we would find other arrangements. She said ok and that was it. Nice job Texas Roadhouse. NOT!!! There is no excuse for not having a reservation system in place, like Open Table. One day there will be no customers to disappoint, then maybe you will get it.", "type": "review", "business_id": "NA3tQYxR6Fq5O8nV6u41Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hO7qiLvCzzzf9O_hlpw7fQ", "review_id": "q4yypayig8V8lO3Qg7rb2w", "stars": 5, "date": "2010-11-22", "text": "Fantastic donuts! Great selection! Coffee was definitely above average!", "type": "review", "business_id": "XfgU_1_X8eVX8_CqofAeIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LdhwY7eudLlx1KFQQe9GwA", "review_id": "r2QA2-FuQk1Cn-WwQhBSzw", "stars": 3, "date": "2012-01-22", "text": "If you want to feel really bad about what you're eating, you'll love Rally's...\n\nI tried this place for lunch, after I heard about the \"Baconzilla\". I love bacon, so this burger sounded like a match made in heaven for me. The burger itself was OK, though I didn't love it. It was two patties, cheese, and about 47 slices of bacon. The bacon was the saving grace, as the burger itself was a little dry and didn't have a ton of flavor. You can also have different styles of \"loaded\" fries, I had seasoned fries with cheese and bacon. When I think about my meal there, it's amazing that I've lived long enough to write this review...\n\nIt's a quaint little place, you can either walk up and eat outside or do the drive thru, either way the food is ready pretty quick. In addition to burgers they have chicken strips and a double decker fish sandwich, so it's not all about the red meat. It's not high quality, and it's the furthest thing from good for you, but if you're in the area and you want a greasy burger, Rally's is a good place to try.", "type": "review", "business_id": "C42yP2SAQyit92zVyRAqMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "U3ZZ062j281VOBeCHEEHhQ", "stars": 4, "date": "2010-04-18", "text": "Handsdown, Anthro is my favorite store ... every major city I'm in, I map out Anthro to see what is in their sales racks.... Boston, Chicago, SF, Austin..etc etc. This is the closet of a roommate I've never had, she is so decadent cool w/out flaunting it.\n\nAlways adored the sales rack, but most recently the finds have been for home area... knobs, pulls, face plates for light switches as we refurbish a new home...", "type": "review", "business_id": "SlV4MCNrAC9slMyV5gf47w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "voUqX5ON9lMa80HRiO2jTg", "review_id": "FjpbxGCp0xhnZi4Ta4tRSA", "stars": 4, "date": "2011-03-12", "text": "We tried Mr Chao's Asian Bistro last night. It's a small place and they do a lot of take-out orders. The quirky interior works fine for me. My wife thought the single gourami looked kind of sad in the small, flat tank on the wall. They have a bar and a decent selection of wine for a small restaurant. I tried one of the specials, the Hunan Smoked Pork. It was basically kind of like bacon stir-fried with fresh vegetables with a spicy Hunan black bean sauce. I love bacon and I really liked this dish. My wife had prawns w/vegetables, we liked the freshness of the vegetables and generous amount of prawns but overall the dish was slightly bland. She liked it but thought that it would have been better with the lobster sauce. We were mixed on the iced tea, my wife felt it was too strong but I thought it was fine. \n\nOverall, Mr Chao's is a fine choice in Ahwatukee for Americanized Chinese food. It is a bit pricier than our usual stop, Panda Garden, but a nice alternative.", "type": "review", "business_id": "EWnSPExh_T5zTv6oMJOC5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kR86gUPgfUumFxtpm0VehA", "review_id": "2Lvtmi4k4HmEnqcHSSnTzw", "stars": 1, "date": "2011-12-17", "text": "Just had Daphnes for the last time. In the 3 times that we have ordered from them, they cannot seem to get a simple order right. One Kids Burger with Apple Slices (Nope) one side of hummus(Nope) But they are quick to charge you for the order. Then you call and talk to a girl name Liz and she begins to tell you that they are correct and you the customer are wrong. Even though I have all the food sitting in front of me nope still no kids burger or side of hummus. HMMMMM,.. keep letting her answer the phone and you will see your to go customer base decline. We are an office in Scottsdale that everyday is ordering lunch for the office, Daphnes has officially been removed from the menu book.\n\nNice customer service!!!!!!", "type": "review", "business_id": "t4pkeGscooStLjy-Js5Byw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GAW_mbLDbIoZQ0V0ZhWK8Q", "review_id": "Bpm3X6HGMzKH_xTcN52gVA", "stars": 3, "date": "2009-03-10", "text": "Pretty good food. The location is kind of scary, for a famous place. i was a little disappointed in their lunch menu. i am not a fan of paying $12 for a lunch plate. i don't need 10 lbs of food at lunch time, but a nice $4-5 plate of food at lunch would be great. I might return by myself, because the food is very spicy, and most people i hang out with don't like that. it was even spicy for me and i don't mind that too much.", "type": "review", "business_id": "9tSHBEoAhKu-tkU8n6SKjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vv89iM91KdciCALtg6hJtw", "review_id": "8fQX6iyf2GH2Tmy_69iN1g", "stars": 4, "date": "2012-03-19", "text": "I love this place!!! Lots of space and cheap, TASTY Mexican food. Not much more than that needs to be said.", "type": "review", "business_id": "1zDCfNgtfyh-Uw8j3JxhHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6ZXbTu3isjKoD42_iKOhqA", "review_id": "1tXqchOF3_3Vhp-ksT9a6A", "stars": 3, "date": "2011-05-29", "text": "Way too expensive for a hot dog. Confusing to eat there too unless you can speak Spanish. Last time I checked I wasn't in Mexico.", "type": "review", "business_id": "O-usNZUjADajkeYXIDAJiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BzDnXvrWm-EB7N5a9Nisdw", "review_id": "IIS5XNEHS29IVEV_QYoxIg", "stars": 2, "date": "2012-08-20", "text": "I was very impressed by their website and their services, and setting up my files for my cards was super easy and straightforward. I ordered samples before my cards...three weeks ago.\n\nHaven't received anything yet. Now I know that the turnaround time on cards is between 12-14 days, but I didn't receive any confirmation that they'd been shipped, or what method they were being shipped through. Luckily I was able to call them and talk to people who straightened everything out, but I really get a strong feeling that they're a very small company that's still trying to learn the ropes.\n\nThe biggest problem I had was that my shipping and billing addresses are different. There's a box where you type in your shipping address, then it takes you to the billing section. When I got my order confirmation, I noticed that my billing address and shipping address were listed as the same at the top of the order, then lower down in the order section was where I had typed in my correct shipping address, yet it was partially cut off. I called them about it and they assured me that it was shipping to the correct address, however once I called UPS and had them reassure me that my cards were coming to the correct address, I received another email from Taste saying that the reason my samples weren't delivered was because I didn't give them the correct address. I looked back at my confirmation receipt and the correct address was typed into the bottom of my order. It was a matter of not paying attention I guess.\n\nSuggestions would be to either pay closer attention to their customers entire order, or to work on the billing/shipping page instead of leaving it as a box to type words in, especially if it's not going to be read.\n\nPros are that they get back to you very quickly and make sure that your custom order is correct for print.\nCons seem to be the shipping and customer care portion.\n\nWill I order from them again? Possibly. But my trust has definitely been tested.", "type": "review", "business_id": "KXx5qUj5eevUAma8XEZzyw"} +{"votes": {"funny": 2, "useful": 6, "cool": 5}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "cUHSkzxw7yyZsp4V0TsJKQ", "stars": 5, "date": "2008-11-07", "text": "I have been here a few times but have to remember to come here more often. \n\nI LOVE it! \n\nI've never made it past the refrigerated and prepared foods section, but who needs to! You can find everything you need right there. \n\nThe meat section is beautiful to look at, they have a whole section of prepared heat and eat dinners, side, soups, sauces etc. grab a premade one or grab a few ingredients and make your own! \n\nMy favorite so far would be the Tub of Alfredo sauce, package of fresh pasta, and package of chicken breast strips ..YUM! \nDinner in 20 anyone? ;-)\n\nTheir Tomato basil soup is Amazing too!! \n\nI scored dinner for 3 last night for ......$7!!!! \n2 packages of their heat and eat mac and cheese and 2 packages of Tilapia, all ready and in about 10 minutes! \n\nSeriously if you are trying to save money and still want to eat good, fresh and easy food then this your place!", "type": "review", "business_id": "TqVESkM8cDQdTC1LL3RUSg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "55ecDCpJIXzTWjEzMQ11Vg", "review_id": "gCwZvHa_j4Vppn8aa8hjdA", "stars": 3, "date": "2009-01-31", "text": "3 stars - Yelp says - A OK\n\nThat means, sure, I'd go back and I should state here and now that the 3 stars might not be all their fault but my fault too.\n\nPlan to see mid-week movie with my daughter who teaches at junior high school and after school volleyball and we have plans for 7:45 movie which means time is compressed. Daughter has limited sense of adventure for foods so I figure this place always offers her bail-out choice of Italian. Enough background...\n\nProblem is, I had lunch too late and I arrived less than hungry. I'm equivocal what to order. I ask waiter for advice (mistake). I order cream soda and he comes back and asks me what flavor and listing too many choices. I order cherry and it seems to be a club soda with grenadiene (sp?) - mistake.\n\nOrders arrive - daughter shocks me by ordering Pad Thai which was quite good. I get winter special of Ishikari - Salmon, cabbage, tofu and rice noodles rather cleverly cooked in a miso based soup in industrial type mini-bucket with oak sealing lid and apparently brought to table from oven. The salmon infusion into the miso was an incredibly delightful broth. The salmon appeared to be generous, good quality but a bit undercooked and I didn't have the time window to do anything about it. The rest...the tofu / cabbage / etc. seemed to derive no benefit from the delightful miso broth.\n\nSo in the end...I probably could have given them 4 stars because there is nothing inherently wrong with CherryBlossom Noodle Cafe. The waiter wasn't all that helpful but he was available at the most important times and we managed to get orders, served and check paid in time for movie which by other reviews worried me because of our narrow time window and the fact that this place is indeed busy.\n\nI would definitely return a much wiser person and next time, I go with my gut instinct and order the Champon as I had intended to the first time.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M7B2A90idij3HDfCvfEBWw", "review_id": "vd_CtmjAoC8E5ax0PNqk3g", "stars": 5, "date": "2008-07-08", "text": "So, I now frequent The Vig. If you go, talk to Jason, the bartender. He's quick with the beverages and funny. Enjoy yourself. You deserve it! This place can get packed during dinner hour, though.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "b60JsTGYbVqUGYbI81aOsw", "review_id": "N8d7fWRRU5Y4lkYT7k_2qw", "stars": 3, "date": "2009-04-21", "text": "One thing is for sure: You will be full when you leave Harlow's. I think that the huevos are pretty good, but the biscuits and gravy leave a little to be desired, or so say the meat eating friends of mine. To be fair, this was in comparison to my very amazing freshly made biscuits and veggie gravy (biscuit recipe credit to Mark Bittman's How to Cook Everything).\n\nIt is a decent people watching locale on the weekends as long as you can stand to wait out in the parking lot until they call your party inside.", "type": "review", "business_id": "UI8iKvzhGn2qZCGIqtQqrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D9WIDdPgbOk8-ChvH_hUfQ", "review_id": "fBiJ5uefZEDIivBGJgVUlA", "stars": 4, "date": "2012-02-15", "text": "The food was what one would expect from the outside. Mel's is not a hole in the wall place with amazing food. It's diner with decent food for decent prices. I wouldn't go out of my way to eat there. It's nearby so I go. Sadly they had no T-shirts for sale. One would think that they would capitalize off the TV history.", "type": "review", "business_id": "lnX2gaGdO0fNtykyFrp1AA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IbNzF_SIdZioYbLnL6F5Vw", "review_id": "tMLsmKEgbprLQ2DVCxejUA", "stars": 5, "date": "2010-04-20", "text": "Honestly, this is the best pizza that I've had in Arizona. I'm a sucker for wood-fired goodness and fresh mozzarella--Cibo does both to perfection. Additionally, I've come to appreciate the character and charm possessed by this little gem in a sea of chains and strip malls. The wine list is not overly extensive, just efficient and thorough like it should be. The salad selection is full of variety and offers a bright way to begin their dining experience. Be warned: Cibo is pretty tiny, causing a wait on weekends.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "0TuOVaf4sM11UUbqGRL-4A", "review_id": "niMmA49Z07G1T-h5Gea4tw", "stars": 5, "date": "2012-04-12", "text": "I love the Madagascar coconut white tea! The prices and very reasonable, only downfall for me is they don't list the caffeine content;(", "type": "review", "business_id": "Gq7CbG8Gw4lGixXKIACB5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "julrXc7fBvyCa0Z8xJKkRg", "stars": 4, "date": "2008-04-07", "text": "El Taco de Chandler exceeded my expectations. I've driven past it almost every day for a year. My curiosity finally got to me, so my boyfriend and I went in to try the food. We waited quite a few minutes (easily 10 to 15) for our order, which is a good sign for fresh preparations. The joint is hooked up with a juke box, pool table, dining area with tables and chairs, and two benches near the register, for those waiting to take their food home. There were special desserts in a glass display cabinet, including coconut clusters and sweets I've seen in Mexico. The assortment of beverages is outstanding, offering both Coke and Pepsi products, juices, CapriSun, horchata, beer, and Sunny Delight! The menu is about par for Mexican restaurants in the Phoenix area, in terms of content and price. I got a fish taco, which was outstanding! No cheap tartar sauce here! I also got a cheese quesadilla, which came garnished with lettuce and tomato slices. The quesadilla was warm and fresh, on an obviously fresh tortilla filled with tasty cheese. For the two of us to eat a few a la carte items from the menu, the total came to $11.00. There are also combination plates available, as well as quite a few soups. Overall, I was very impressed! This looks like a fun place to hang out. The food is definitely worth the wait. I happened to ask the cashier, and they are open until 10pm on Saturday's. Muy delicious!", "type": "review", "business_id": "v1H45TVGiORapYHQyGdoFw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "00lByKsp1MLHSciAflZSmw", "stars": 5, "date": "2010-03-22", "text": "WOW! I am very sorry that it took me so long to convince Bri D. to go here. We went for brunch and it was amazing. Absolutely one of the best breakfasts I have ever had. The johnny cakes were out of this world! They have a granola-y taste to them, are filled with blueberries, and topped with yogurt and real maple syrup. It is this awesome combo of sweet and tart that is great. Despite being three pancakes, they weren't heavy and dense like normal ones. They made me feel satisfied but not \"stuffed\" and gave me lots of energy throughout the day. That's exactly what the awesome waitress said they would do.\n\nI love this place! It is beautiful inside, I love their theme, I love their concept, and I love the food. Can't wait to try more.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "huE7A2WBkTJTyEr2K8Owzw", "review_id": "xd0M51RYiFXDMeebWa0TdA", "stars": 1, "date": "2011-12-26", "text": "Considering what is considered the 'norm' for workout facilities... this place is WAY behind the times.\n\nThis place would be amazing for 1952- it would then be considered clean, tidy, and cutting edge. There are some actual perks about this place- they do have daycare and plenty of mirrors for me to watch my fat jiggle while I run on the treadmill ;)\n\nIt's just an utter disaster. When the BF and I originally signed up, we got a couples membership at a newly redone Glendale location and it was worth the monthly membership fee.\n\nThis place does not need a 'face-lift.' It needs to be gutted and TOTALLY renovated. You just feel a nasty moistness when you walk in the door- which just gets worse the longer you're there... and is even MORE WORSE during the summer. Guys always have the weight benches dominated. There's never any availability for machines (any kind) from 4-7:30pm, then it starts to thin out. Blah bla bla blah bla.\n\nConsidering this is the \"Biltmore\" location... huge disappointment. Fact.", "type": "review", "business_id": "yRga-WpyfZRz8Es4OpyMhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3s0K-1USEkGnA8de9GRrhQ", "review_id": "5o3cR2uPme47EXiqBsTU6A", "stars": 1, "date": "2011-07-25", "text": "This place was messy and loud. The food really wasn't great and the salsa bar looked like a three year old put it together. Overall the only plus was the tortilla chips that were free before the food. I will not be back unless one of my friends pays for me", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "BgY9LwHmY8BO_lPI3pNRFQ", "review_id": "wxJbkvhNEu0O9ghfFPE8nw", "stars": 4, "date": "2011-01-29", "text": "I really am a fan of this place. It has good food and good beer, and also is associated with some good memories here. This place is a great place to come to and watch a game or two. Or in our case, a great place to come to after watching out team win or lose the game. The parking here can be difficult since there is no lot or anything designated for costumer parking. The beer is really good here. I like the lighter beers, such as their regular peach beer, but their other beers and seasonal are awesome too. The food is delish; I always get a hankering for their beer battered fries. Eat it with their jalape\u00f1o ranch sauce and it's perfect. That and some loaded chicken nachos are easily split between friends; their portion sizes are fairly huge. It's really an awesome spot to get together with friend, have a pint, enjoy a game and some good food.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7b07TmlFDFej_r65H2wF6g", "review_id": "Pm7nvkGDpDDXYWQ7TDg2HA", "stars": 5, "date": "2011-06-25", "text": "great food... love the pad thai....awesome atmosphere...", "type": "review", "business_id": "I1rvqU2k5UQGo2lGdY6hyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P_LzcrlVXFdgBq_24UnlUw", "review_id": "OxvQeuyvUrEOUvpaSCo2Iw", "stars": 3, "date": "2011-07-02", "text": "Good Starbucks in the Happy Valley Shopping Center. Excellent AC in this place and a nice place to cool off from the heat and get a Frap!", "type": "review", "business_id": "_lDDgqKSwzYKNiCqdGQLHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "8rN8-3-ggG5dda2xOKnIsg", "stars": 2, "date": "2011-11-17", "text": "What's up with the premium gas in this state being only 91 grade? Where's the 93? \n\nAnyhoo, this is a very busy gas station at the corner of 16th and Highland. When the pumps are full of cars, it's hard to maneuver in and around the parking lot. The store looks a bit short on supplies, but then again I just went inside to pay. \n\nI may give it another try, we'll see. But I'll look elsewhere first.", "type": "review", "business_id": "InwM3QZtHxSGH0BheHr1uQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "8VN65nUBl22-g81bcSeLDA", "stars": 4, "date": "2011-08-07", "text": "The first thing to know about this Los Reyes location is that it is quite different from the one on 7th St! It's a different menu here, for starters! I had my heart set on my usual, a \"Torta Norte\u00f1a, & a 99 cent Cevich\u00e9. They don't have those things here, so I settled for the nearest looking sandwich, a \"Mexican Torta\". (My server did say the ownership is the same as the Sunnyslope location.) Anyhow, here's how it was for me here today:\n\n* This is a good sized place, & I managed to find both a parking space & a comfortable table inside to land at, even though they were ROARING BUSY!\n\n* My nice server almost immediately brought me a big basket of tortilla chips & two kinds of salsa, medium & hot! Both were good. (They don't even serve tortilla chips at Sunnyslope.)\n\n* I ordered, & it took a little while for my sandwich to arrive, but as I said, they were super busy! No problemo. Meanwhile, I ate about half of my chips, & Se\u00f1orita brought me ANOTHER big basket of them, & more salsa!\n\n* My torta arrived, & it was BIG & DELICIOUS! It comes with a side salad, which included some pimento & cucumber slices, lime halves, lettuce, & a fried quarter onion. All this was good too (& DID remind me of the other location).\n\n* Gripes? THREE TVs blabbing out a show in Spanish, fairly loud, & this place was noisy to begin with.\n\nSO? ...I didn't care as much for the menu here as Sunnyslope, & the TVs were a bit of a nuisance, but with that said, I still think this is an very good place to eat, & the value was AMAZING at only $6.50 for everything! :-))", "type": "review", "business_id": "-vaGR2CXNS4NZrMdctSkGA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "m7j9e53ycZxjWYBD7rZVng", "review_id": "NJ_kBNIQG6vSNBnrWxEyoA", "stars": 3, "date": "2007-11-16", "text": "I honestly feel a bit bad giving Wildflower a three star rating, but I'm honestly waiting for the time when I feel impressed with their food. \n\nI've been to Wildflower quite a few times, ordering something different each time. First time was the sweet potato and fig sandwich. Disaster. Next time with the BLT plus. Ick. Next time was Potato Soup. Eh. I don't know what my problem is, everyone raves about this place as being awesome. \n\nThe nice thing about this location is that I can meet friends here for a mediocre lunch and walk to the movie theatre or Target afterwords.", "type": "review", "business_id": "CV4DDFG6tII-ehzaWPXK4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "2ZBIhY405zvsqbZPQM9gsQ", "stars": 4, "date": "2010-03-23", "text": "I've been to a few Schlotzky's around the valley and this one is actually surprisingly one of the nicer ones. It's clean with plenty of space for even the largest working group lunch. Service comes quick, and they have this southwestern sandwich that is great!\n\nIf you're one of the many people who work for a large company on the Dunlap corporate freeway, this is not a bad place to grab a bite before the second half of your work day.\n\nOne quick tip - it's kind of tough to find, but it's a stone's throw north of Dunlap on the frontage rd. You have to go back and around a building to find it though.", "type": "review", "business_id": "4O8NrAHjO6Tb_Xa_YT-Xjg"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "2M3EkRUj-88W23ZmFO6Zzw", "stars": 5, "date": "2008-07-08", "text": "This store used to be closer to 19th Ave & Bell they have since moved and expanded a ton over the last few years. Everything is made fresh daily ceviche, guacamole, salsa's, they have pan dulce delivered every morning yummm. You can pick up the old school soda's here, and good Mexican Favs like Pinguinos, Gansitos, Duvalin, Pelon Pelo Rico, De Las Rosa, and even Bimbo bread just to name a few thing's they carry here. They have natural all organic small game hens that can be stuffed or bbq'd you can ask for their rub they have all kinds of meat most get the Ranchera here for some carne asada you just need to be able to say how many \"Libras\" (Pounds) and you want them to make it \"Preparada\" they will put in their special marinade w oranges, onions, and spices in the bag. If your a meat eater you cant go wrong here. I cant get enough of this place!!", "type": "review", "business_id": "HRjDpeJOL02ZqwrYgtHV_A"} +{"votes": {"funny": 8, "useful": 5, "cool": 6}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "Fd_7VBAR07qGHwLiMZstRA", "stars": 2, "date": "2008-08-16", "text": "I don't get it. Not the concept of a good vegetarian restaurant but the need to create mock this and mock that. The word mock appears on the menu no less than 30 times, and that made me want to flee pell mell at mach 1 out of there, sonic boom be damned. I understand it from a marketing strategy to appeal to and or convert the carnivores and omnivores I suppose. Do meat eaters feel better about eating something vegetarian as long as it is shaped like a chicken wing? Has anyone gone to a steak joint and had mock carrots made from pork medallions? I am also aware that we eat with our eyes, have preconceived notions of certain types of cuisine etc. However, I firmly believe that if an establishment uses veggies, legumes, tofu and such and gets creative instead of trying to reinvent the meat wheel, the end result would be much better. For Example the Mexicali burger, no mock meat reference here. How about listing something as \"whatever the hell it is\" served Parmesan style? \n \nI stopped here for lunch yesterday as I was in the area. Cool space, it was open colorful and inviting. A couple of organs line a small space up front. Nice mild funk flavor to the decor. Ordering is done counter style and they bring it out to you. You pretty much go behind the counter to get ice for your beverage which I thought was a bit of a weird queue. \n\nI ordered the spicy Thai peanut, a dish that offered mock choices, but I went with the crispy tofu. The brown rice that was the bedding here was ok, lukewarm at best. the dish lacked any real flavor and there was no spice whatsoever.The tofu tasted as if it was freezer burned, which really dumbfounded me. I think it may have been crisped long before it was served to me and microwaved, the texture was just off. Copious amounts of cock sauce, err... Sriracha saved it from blandsville.\n\nI am not saying I would never return, as I tend to give places more than one chance. I love well prepared vegetarian dishes, just don't mock me.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "SC_bFYaDgDub7tDjKCvV_g", "review_id": "nwDD285137wq3aaJr0Reow", "stars": 2, "date": "2010-03-10", "text": "I don't know why Sunset Clothing Exchange moved from it's way bigger digs at Southern & McClintock.. but I guess they wanted to be right next door to Buffalo Exchange...\n\nAnyway, this store is very take-or-leave it. If you are going to BE, stop by there, but I wouldn't go out of your way. I did buy 3 kick ass vintage dresses on a fluke once... and they have really cool art on the walls from local artists, including art by my bud Wiley. I think this place has good, if not great intentions - but just doesn't have the purchasing power to keep the store fully stocked/ or interesting.", "type": "review", "business_id": "HaenKnTNbXGowZBoYGY4Ow"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "5oLJL8ImlYLkFm05J6oKqQ", "review_id": "Kf2uRhhbjaGvNhkAmGd1dQ", "stars": 4, "date": "2011-01-29", "text": "Joe's is a Gilbert staple. They have the service down to a science so you can start your journey standing in the back of a line that is about a quarter mile long, and inside of 5 minutes you are sitting at a picnic table under the trees enjoying your grub.\n\nI have been a fan since before I knew why it was important to find and keep places like this thriving. Joe is cool, and a guy that people who want to succeed in independant business in Arizona should keep their eye on. \n\nThe food is quality, the location has been around forever, but keeps fresh with awesome and unique decor (like a life size tractor) and lots of space outside for families with kids to go crazy.\n\nThe menu is simple and doesn't try to do too much. The staff is usually very pleasant as well. \n\nMy usual is that potato that is as big as my forearm stuffed to the gills with pulled pork, sour cream, chives, bbq sauce, butter, cheese. \n\nand pickles on the side. \n\nIf you haven't been to Joe's, you should make it a point.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HFzJb1EnBsB6fD5s-9fXUA", "review_id": "9DPZSubMwYAsmnK5ui50Zw", "stars": 4, "date": "2011-07-20", "text": "#26, #1, #150 is my favorite. I go here every time I need something warm in my belly. They are open early too!\n\nI love this place and the dining area has gotten bigger :)\n\nHad the Bun bo hue. Was pretty good and cheap!", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "PHqfRoNsHKcvS24-yxxewg", "review_id": "LYtKdDmGDn0flUKCXlLdyA", "stars": 4, "date": "2011-12-25", "text": "Older clientele (don't go here for a hip salon) but solid professionals who know how to cut hair without messing it up :) \n\nThought it was a little weird getting water in a ceramic coffee mug...I think plastic cups or water bottles would be better.", "type": "review", "business_id": "0Xz7umPUtAxf6JMHwybnmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l5upkLok78p-NQN_3uurrA", "review_id": "PvrzzBYNlTWmz0gKyvazEg", "stars": 2, "date": "2012-03-08", "text": "TORTILLA SOUP = not the biz.\n\nthat's all I tasted so that's all I'm rating this place on lol", "type": "review", "business_id": "eHC_xNrT1SkJyC2oncJlhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "9ZbwFZhqWVwdbuYSP_FjWg", "review_id": "wM199bUIqy-2w0je2L5Ojg", "stars": 5, "date": "2010-12-22", "text": "Love. It. Awesome pulled pork, brisket, turkey. The sides are really good, too. I feel like it's somewhat expensive, but it's worth every bite, but then again, that's BBQ. If it's dirt cheap, that means it's not quality meat.\n\nAnyway, the 2-pound potato is great, too -- chives, sour cream, butter....", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F3slVCSkCvytxat4Trw3jw", "review_id": "74itj9az8k89zAGypfX4dg", "stars": 1, "date": "2010-08-19", "text": "Einsteins in general has mediocre bagels at best, and their \"schmears\" appear to be highly processed. I've generally given up on Einsteins all together because because their food has really taken a nose dive, as has the service. I stopped by this location recently because I was driving by and in a hurry, and wanted a bagel (they're supposed be a bagel store after all!). First, no salt bagels. Aren't salt bagels one of the standards? Second, I ordered my bagel with cream cheese (cream cheese being a $1.50 option) to go and that was my real mistake. Whoever made the bagel didn't even manage to slice all the way through the bagel and put an amount of cream cheese approximately equivalent to a pat of butter on one-half of the bagel. The other half was basically dry. Unbelievable. Needless to say, I was pretty annoyed when I got to work and opened up my bagel. Stick to any of the local bagel joints like Chompies or Kashmans - they have much better bagels, and they will dump a brick of cream cheese on them for you.", "type": "review", "business_id": "5Js9G0axfWhbYlB9UgXLww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "J5nb9AT1LDiGN4_hY0Au8Q", "review_id": "HD4qbc-7eGyXAUYnXdb0Sg", "stars": 3, "date": "2012-12-16", "text": "The Good: We absolutely love their wings and its becoming a regular for us to go every other Tuesday for their wing deal. We always get the honey hot wings and share a side of either regular fries or the loaded fries.\n\nThe Bad: I do feel the wings are a bit too pricey, even on the deal days. Also, what is up with their high school hostesses!? They are incredibly rude and give dirty looks every single time we have gone, which is now around 7 times. Someone really needs to put these girls in check. Goodness. This is the reason for 3 stars instead of 4. I would actually give it 3.5 stars if I could.\n\nWe like the atmosphere and it always seems clean and the servers have been very nice so far.", "type": "review", "business_id": "SgGINtDKQgoXoAnQgrDKDg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "9JpnM-xebt0343KkGR_HKQ", "review_id": "2ZhNA-xTjlr7RNwZpM5lqg", "stars": 5, "date": "2012-08-09", "text": "Dilly Dally My Willy Wacky\nBy The Rue\n\nWhy do I always forget this place,\nWhen deciding on where to eat lunch,\nHere I could really stuff my face,\nIt doesn't matter if it's dinner or brunch.\n\nMy wonderful, tasty Honey Do,\nAlfalfa sprouts, turkey on whole wheat,\nAdd a slice of cheddar for you,\nThis sandwhich cannot be beat. \n\nLocated not to far from the hospital, \nSo you get a great crowd of nurses,\nThe hotties who come here are pivotal,\nI'll stay until the crowd disperses. \n\nGet the soup in a bread bowl,\nOr a bag of chips if you please,\nAdd a cookie for your hole,\nI'll say bless you after you sneeze. \n\nBottom line is you cannot go wrong,\nYou'll love whatever you order,\nGo home and hit the bong,\nAnd then make a run for the border. \n\nDEEEES NUTS!!!", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "lmvohdrRD8SKitMVynzTcg", "review_id": "QUxMPdPKpAYreYTHI80LUA", "stars": 3, "date": "2011-12-12", "text": "Finally a place to watch local sports with sound. I always find it unbelievable that many sports bars here in town look past our local teams and support the foreign hoards from Wisconsin, Minnesota, NY, Illinois etc.. Not at Dukes...local first.\n\nPlease return to your frozen tundras and leave us with the Suns, Cardinals, Devils and Coyotes.\n\nThe food here is nice bar/pub fare and is always fresh and hot. Drinks are plentiful and service respectable. Would like to see a little more variety on the taps but other than that Dukes is a great place to catch a game.", "type": "review", "business_id": "qb4PzVr19bXXLBf71dd5kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pni4uLN1j4qwh_4dSUPnlQ", "review_id": "1ShyhjZOoavLH7LArfKwmA", "stars": 2, "date": "2012-02-18", "text": "I have been twice, both at lunchtime. Cute (trendy) place, sushi rolls are decent, not spectacular. Loved sitting out on the patio; however, there was a distinct smell of sewage wafting by every once in a while. Not sure where that was coming from. \n\nThe hostesses were unfriendly. Waitresses were nice enough, but wow, S L O W service. I mean, my God. I had nearly polished of a bottle of sake by the time the food got there (which may account for my belief that the sushi was good, lol!). Same embarrassingly slow service in getting our check to leave.\n\nOverpriced for a lunch menu, I thought, and the calamari appetizer was a huge disappointment. It was like ... TGI Fridays or something. Just very ... sportsbar-esque. Huge, rectangular chunks of calamari, heavily battered and deep fried. What happened to light tempura and calamari rings? Isn't this a Japanese restaurant?\n\nAll in all, it was okay. I was in good company both times, and had plenty of time to spend, so the slow service was not an issue, but it could be a problem if you have other plans. I will likely go back until I am able to find a comparable or better sushi place - I'm new to Arizona.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "EQZjeyvQRe0xnEYcV_eK0A", "review_id": "Ve5yd9rFYUtjHoAsqs-29Q", "stars": 2, "date": "2011-07-01", "text": "I was really looking forward to eating here because I had read good reviews. Maybe we went on a bad day. They were very slow but it took way too long to get our food and they screwed up my friends order. I got a chicken, carne asada and fish taco. The Chicken was the best. I didn't care for the carne asada or the fish. Guedos fish tacos are far superior. I don't think that we will return to Elmer's with all the great Mexican food choices in the area. Sorry.", "type": "review", "business_id": "qW9UysjJw3y3CwEbzruEEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kCc44Or_pDdKCmmRolQWeA", "review_id": "oYwWCGdemEwokONQWvRKyQ", "stars": 5, "date": "2011-03-07", "text": "Anything I write will not do justice to this awesome, awesome hotel. I've stayed here a good dozen or so times over the past three years and it's always fantastic. I love all the rooms. If you can get a suite, you're an extra lucky duck, but even the basic rooms are adorable with phenomenal bathrooms.\n\nThe bar and restaurant is also great, with fantastic appetizers, wonderful specialty cocktails, and fun rat pack music. Breakfast is better than most restaurants, forget about comparing it to standard hotel fare.\n\nThe location is also good, with plenty of shopping, restaurants and bars within easy walking distance.\n\nThis place is not within my normal price range at all, but it is worth every penny and I would never stay anywhere else in the Phoenix area.", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DaOKLm7KrCIdciwa3O6Etw", "review_id": "PIPXQ9N0ihcdd3xeaXdVcA", "stars": 2, "date": "2010-05-25", "text": "The buns fall apart so you end up eating your burger with a soggy bun. Staff does not seem to know what is going on and they are not well trained. Can't think on their own.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "GUdj_ur2gIyIOKN6EMlgNA", "stars": 3, "date": "2008-11-05", "text": "And now ladies and gentlemen, the category tonight: Things that make Siu-Wok A-OK in my book.\n\nHere we go....\n\n#10 - I can actually understand the people that answer the phone\n#9 - The sweet burn on my tongue after eating a mouthful of Kung Pao Chicken\n#8 - The lack of lasting gastral repercussions from eating said Kung Pao Chicken\n#7 - The friggin huge area to which they will deliver, for a minimal $2 charge (beware their website says it's a buck-fifty, but the gas crunch is effecting everyone)\n#6 - The pork fried rice that is literally one part rice mixed with one part tender / tasty pork\n#5 - The place is actually clean\n#4 - The coupons attached to the menus that they send to my home at regular intervals\n#3 - I can call in an order, hop in my car to pick it up, and be back watching quality reality programming within 15 minutes\n#2 - They have Mr. Pibb on tap\n\nAnd the number 1 thing that makes Siu-Wok A-OK in my book...\nEight... yes count 'em, eight, yummy soups that they will deliver to my door when I just can't bring myself to change out of my pajamas!!!", "type": "review", "business_id": "LbLVO7yqAJGEQ1nK6rEvHA"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "oC0kwGvgaAeT3ZIxdxTcJA", "review_id": "hIgF92olv5yRUdIvWJu0zA", "stars": 1, "date": "2009-09-28", "text": "Man oh man... I can't decide whether I want to review this place or not under the auspices of \"if you don't have anything nice to say...\"\n\nAll I have to say is this: \n\nWe ordered food. It came totally wrong. I asked for a vegan salad, not specifically, but that's how I ordered it, and it came with chicken and cheese. This just shows a complete inability to read the order. People make adjustments all the time. I have worked at a restaurant. I have fucked up. I should have been lashed 40 times! Read what people order! \n\nSo when I got the wrong salad and saw what an unbelievable disappointment it was going to be, I ordered a veggie sandwich instead, which, to their credit, they delivered and took off the bill. \n\nThe best customer service in the world could not overcome this sandwich. It was a monumental fucking embarrassment. I cannot believe they let that thing out the door. I ate it because I was starving but I would have liked to have driven it back there and go through it, ingredient by ingredient, with the preparer... Explain to me how this is appealing to the eyes, mouth, stomach, etc.\n\nI just hated it. A lot. \n\nSorry, I'm sure you're nice people with good intentions.", "type": "review", "business_id": "tHztlek7Ecs-5ZonXUATyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rz7qXI6Vu-fzuCViv7_veg", "review_id": "nhUvXrVPXxZhJ1xh3uH2pg", "stars": 5, "date": "2012-11-02", "text": "I brought in six pairs of shoes to Ariel to see if he could put new heels on them (I wear the spiky-heeled high heels). For $12, not only did Ariel put new heels that perfectly matched each color, size and type of heel (and even filed them just a hair so that they would wear smoothly), but he also put a lot of work into fixing the front of them. Many of my shoes had toes that were worn, shredded or faded; Ariel made them like absolutely new. Amazing!\n\nMy shoes are not Prada or Gucci. They are mostly Nine West with leather uppers and man-made everything else. :) However, Ariel took amazing care of them as if they were \"the king's\" shoes. It is so great to have my favorite pairs of shoes back. I will return. Thank you, Ariel!", "type": "review", "business_id": "GDSHvc_xW6HjrxMU-gC0uQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zjX3Bph1uSWtrhaLCuyC2g", "review_id": "q35wX6JC_tc3VyYeC9ULXg", "stars": 5, "date": "2010-11-06", "text": "Best nights to go to Postino's are Mondays and Tuesdays. They offer $20 deals where you get 4 slices of bruschetta out of the 12 that they offer and one whole bottle of the house wine. Each bruschetta slice is probably the size of maybe your hand with your fingers outstretched -- if you're a petite girl :) ... They then cut each slice into 4's. Perfect for sharing!\n\nWe went on a Monday night after 8PM and ordered 2 bottles of wine, the 2 orders of the bruschetta (which were 8 slices for those that can't count), and a bowl of olives. The total came out to about $50...that's a little over $13/person w/o tip!! AWESOME!! PLUS, they have complementary valet parking. \n\nEverything was just fantastic, I've never had fig before and they made my experience there quite memorable. I definitely recommend you come in, regardless if it's for their $20 deals on Mon/Tues or not. They've got GREAT food and I WILL be back.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "Aig77qNnNFDKFLiML6F5pQ", "stars": 4, "date": "2010-09-27", "text": "I went here Saturday night with a party of 4. It is a pretty neat place in a neat area. I felt pretty hip and urban being there. Anyway, I NEVER eat pasta because I \"try\" to stay away from those carbs, so even coming here was a giant step for me. I wasn't expecting the pasta here to be anything great but boy was I wrong. Each one that I tried was excellent. The ingredients tasted fresh and delicious and each was very flavorful. I don't remember exactly which ones I tried (I tried 4 of them), but each one was excellent. They probably don't make a bad pasta dish.\n\nSome of the dishes have some odd/random ingredients, but don't let that scare you. Order each dish as it is listed on the menu and you won't be disappointed. \n\nWhen I feel like I have to get carbed up for a big race I will return!\n\nI'm still a little pissed that they didn't have diet coke or any diet soda at all for that matter. Who doesn't have diet soda? I get that they are trying to be green, local, natural, organic or whatever else is hip right now but come on. I know I should probably stick to water anyway, but I always enjoy a diet coke with any good meal. I'm not sure why, but I just love it and it makes my meal a lot more enjoyable. Weird, I know.", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hZIBTTAHwnr-7n00pRNmMA", "review_id": "cePaDdq4KrlFJTOsn37TDw", "stars": 4, "date": "2012-02-06", "text": "Best Chai Latte- Great atmosphere and friendly staff", "type": "review", "business_id": "XU5Fb3TosXDUJcNRWQM5cA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "p4biT34WoS6rSnP28GdxwA", "review_id": "2t0mrli1ozlp6dpe9tTfwA", "stars": 5, "date": "2009-07-15", "text": "I agree with Tracy, my wife and I are big fans of Fiorella's. Definitely a treasure for the northwest valley. The service is great and the food is delicious. Prices are a bit higher than other dining options in the area, but the friendly people and yummy food are worth it.", "type": "review", "business_id": "wCi6nBXnXf5PAHqJZP9dqA"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "Wj9hXcWxlVi2TGAfU8tpcA", "stars": 5, "date": "2008-12-30", "text": "Best UNIQUE breakfast / brunch / lunch spot. This tiny place may look like a boring little bakery, but think again! \nSIt outside on the small patio area, ck out the GR8 crepes! savory, breakfasty, sweet - u pick or choose! \nHubby luvs lox & cream cheese & capers. \nI luv the chicken, aspargus, basil, feta :-) \nMmmmmmmm.", "type": "review", "business_id": "WbGyfSypHxJZPC18Kj5OmA"} +{"votes": {"funny": 1, "useful": 8, "cool": 2}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "z57cHVF0wrQlFsCLcGQ8oQ", "stars": 5, "date": "2008-07-05", "text": "Places like Made make me realize that there is hope for my life in Phoenix. It is a cute converted house shop that carries a wide array of stuff that you won't find easily elsewhere. \n\nThere is lots of cute baby stuff that I would laugh at if I ever saw a baby wearing. The jewelery is unique and cool- it made me feel like I had etsy right in front of me, live! They have some good books around and some key David and Goliath pieces. \n\nI heart places like Made, so therefore I heart Made.", "type": "review", "business_id": "c0zhbiffge6fGl_Nzgxbqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sBXm7wsHKkrkcnyYRlZlzg", "review_id": "x6isAcCQ13ITojUY3Enzhw", "stars": 5, "date": "2011-09-14", "text": "Lately I have been addicted to a good Caprese style sandwich and Pane Bianco's is AWESOME! I read the previous reviews so I went there expecting a crowd and nowhere to sit. This did not detract from the experience for me because the quality and freshness of the food was more than enough to get and keep my attention. The staff were very friendly and helpful, being from the Atlantic Northeast I have high expectations when it comes to Italian done well with personality to boot. I did not want to wait till I got home to eat my so good smelling prize so I went outside to find picnic style tables and benches. It was way to hot to sit outside and I was craving iced coffee so I went next door to Lux and was both surprised and relieved to find many of their patrons with Pane Bianco bags openly eating their lunches with drinks from Lux to claim patronage. Can't wait for a hopefully air-conditioned expansion.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IVb9YMopuGyt5jJ7rjwoqg", "review_id": "fu075k8dTKAQaBKAGSNuFA", "stars": 4, "date": "2011-03-10", "text": "I finally made it to this place after hearing nothing but great reviews from others. Now I can see why it is held in such high regard. If you are a fan of Paradise Bakery, this place is better...hands down. At first glance, it appears to be identical, but on closer look it wins in two important categories. First, the vast menu blows away the Paradise selection of \"like 3 items\" There are countless sandwhiches, salads, soups and deserts. Second of all, the prices are incredible. It is very affordable for the quality and quantity of food. Finally, the food is excellent. Not that I have a problem with Paradise, but given the choice, Wildflower wins every time..", "type": "review", "business_id": "06kfoeRs9Acj82Yl3i9p_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kAY3g4QY9TIX6aNQ-XnX0Q", "review_id": "LLMEBVFBVYem9MX8NvK0Fw", "stars": 4, "date": "2012-09-17", "text": "Tasty food, great deals at happy hour..", "type": "review", "business_id": "24OmQWFTnbfGv-e8GyEMAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3guuClGenXUxHmmHR7-VBQ", "review_id": "Duh0LdoFedFNUAQH0z7mgw", "stars": 5, "date": "2010-07-28", "text": "A great place for midday healthy food, thin crust good pizza ( try wild mushroom & arugula), salads are great too & the best part that serve pretty acceptable nice wines. It is not an average American food eatery, it is definitely for those who are looking for healthy low calorie lunch.", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "fTwKSY6PnO9dEr5AnpIdbg", "stars": 4, "date": "2011-12-21", "text": "Once again, family was out to try something new! I was in the mood for pizza. I noticed there were quite a few pizza joint in this area! So this was the first one we tried. We order a pepperoni and green peppers pizza well done, spaghetti and meatballs, and chicken Parmesan. The pizza was good, I enjoyed the flavors, pepperoni, cheese, and sauce was very good. I am not sold on the crust! But overall the pizza was still good. The spaghetti was very good, especially the meatballs! It takes a lot for me to like meatballs and these were one of the best I have tasted. Daughter hardly gave me a chance to taste the chicken Parisian, but what I did taste was really good, they do like to pile on the cheese, that's the way to get my daughters heart! Over all we had a great time, we love the small mom and pops atmosphere, and we will probably come back soon!", "type": "review", "business_id": "OXwKBaV74IM_VduC5OWV1g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JrNSIOrh7S7FmlAmxnk0Mw", "review_id": "aGsE6UcZ4T3CTlo5P_rMtw", "stars": 5, "date": "2010-11-27", "text": "The food reminded me of my mom's home cooked meals. The beef with red salsa was super good...and not to mention the warm, handmade tortillas. The prices were decent, the service was excellent and the food was great. ;-)", "type": "review", "business_id": "hZRLGfRrZTo9up2P-0aAHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "mR7LQurf_awsKqDK46NRew", "review_id": "7IYLYBTRrpvpIz-uC8wkfA", "stars": 5, "date": "2012-02-01", "text": "I've never been to this location before. My husband had taken his car here previously, and asked me to take it in today (there was a nail a front tire). The second I stepped through the doorway I was greeted, even though all agents were busy helping other customers -- excellent customer service to acknowledge I'm there! \n\nLess than a minute later I had a gentleman walk me out to the car and look at it. He tested to see how far in the nail was, and realized it didn't puncture, so he took it out and said the tire was fine. \n\nI went there knowing my husband is WAY overdue for new tires, so asked for a quote. He gave me a few options, and told me what driving habits they'd be best for. He also gave me the warranty information without me asking for it, and included it in the price instead of \"shockingly\" adding it in when I would pay like most places would. I never thought for a second that I was being oversold. It was amazing because I despise going anywhere having to do with fixing my car. \n\nQuick. Clean. Friendly. Intelligent. Honest. That about sums up this place. I'd recommend it to ANYONE and tell you to go out of your way to visit this location.", "type": "review", "business_id": "xun1GBrZzChBLHY6NrsnMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9JpnM-xebt0343KkGR_HKQ", "review_id": "tq-wwW15BvELO34P0wNqpA", "stars": 4, "date": "2012-09-11", "text": "Wild Child Bed For Company\nBy The Rue\n\nMy favorite sandwich is the chicken continental,\nThe toppings on here are pretty fundemental,\nYou can get something else, I won't be judgemental,\nWhen I give you a hickey I promise to be gentle,\nIf it's not on your neck it's not accidental,\nWhen I am done it will be something monumental,\nBefore work, covering up with a scarf is detrimental,\nBack to my review the rest is experimental.\n\nIf you want something different than chicken, \nI won't give you a hickey but something finger lickin',\nThe gorgonzola and roast beef will not sicken,\nI don't care if your from France or Great Britain,\nThe herb mayo on sourdough gets the pulse to quicken,\nIf it were up to me I would name your cat \"Mitten\",\nJim Carey was in a movie called \"Once Bitten\",\nThis is a great place to eat, hunger now stricken!!\n\nBeatnik!!", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "gN03qFYysM5DbgjuV6N0QQ", "review_id": "GTL4WBj1peHUgHaBUgrsgA", "stars": 5, "date": "2012-10-14", "text": "Tucked on the western edge of the Foothill Acres neighborhood in North Phoenix or what I would call \"The Slope\", Try Me Bicycle Shop has been in business for nearly 40 years and has been collecting the odd part for every type of bike over that time. \n\nThe showroom is filled with cruisers and comfort bikes, new and used. No high end bikes here but they do have an inventory of old and hard-to-find parts, good service and free air that makes this place.", "type": "review", "business_id": "bO-WvOxfPzNbwSD87KuiBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6ZXbTu3isjKoD42_iKOhqA", "review_id": "GvMTOOFBzGjIkbfdzC4YSw", "stars": 4, "date": "2011-08-24", "text": "My daughter and I had a couple of the beef and lamb gyros. They were wonderful. The meat was tender and juicy, the bread was soft and pliable. The only thing that I could find wrong was the tazeki sauce could have used some more spices, it was kind of blah. We would go back. Service was great too.", "type": "review", "business_id": "pvMeUi5Lw2O5vIXg9_EvDg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b48NAHm3R12f7nRJXHVnCw", "review_id": "vNlxlaz9qwj8VCYV0H_rVg", "stars": 1, "date": "2010-04-17", "text": "Maybe I should have had a hot dog but I crave Chicago's Italian beef, I didn't get it here just some greasy old beef of some kind, use beef broth if the meat gets dry, not a whole can of olive oil, YUK! It didn't have that good Italian beef flavor so I asked for giardinara to add some flavor, it was very oily too and I had to pay extra for any peppers either hot or mild. No stars for that beef, the only saving grace was it didn't make me too sick, I expected to be sick for days not just one day!", "type": "review", "business_id": "ZG4oIFBRlXyaF5F9L3dzxg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n3j5V4tqOB3KioGl6qOBcA", "review_id": "8kOvjFsHRFc4kcLDit489g", "stars": 5, "date": "2012-10-08", "text": "Ok, so iv been a Starbucks junkie for years....until i discovered dutch bros! This location is my favorite, although they are all good. My favorite thing about dutch is you can order ANY blended drink sugar AND fat free. You cant do that with any frappes at starbucks. You cant beat their customer service either, all the employees and incredibly nice and upbeat, always greeted with a smile! I once ordered a blended double coc coffee and it was too frothy for my liking so i stopped at the location in tempe since i was going that way to order a new one..they exchanged my drink, apologized and sent me off with a new drink at no charge. added bonus is the stamp cards, so if your an avid coffee drinker like me, you'll be saving some money to. Quick drive-through for on the go.", "type": "review", "business_id": "K4Oo7A5Kp5eSgBV7MgOu8Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z17u_U5WTe8KPAGiRjw7QA", "review_id": "BNcZZkyxTDMrGnCvpOTnQg", "stars": 5, "date": "2012-04-29", "text": "This place always pleases! Their sandwiches are always great, bread is great, pizza is AWESOME, and their short ribs are great. The food is SO fresh! The waiters are kind and friendly. When we asked if they had some of their awesome ice cream, she kindly told us the freezer broke. I heart the deli!", "type": "review", "business_id": "TuuENwzxOFdDLY_oKCbFZw"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "yaw_aNmYB-BNOoPTkzD69Q", "review_id": "vDUFw4zYIF-uxbUONBFDSw", "stars": 2, "date": "2009-03-23", "text": "I actually yelped this restaurant from my brunch table and my blackberry wouldn't post the review. So, will try to capture the original intensity of the yelp. I still love my blackberry and maintain it is better than iPhone, by the way!\n\nAnyway, anyone who knows me well appreciates the importance of toast in my life. When I moved to Phoenix to work for a catholic hospital, my best friend bought me a \"Jesus toast\" stamp which puts an imprint of the Mary which appears better when the bread is toasted. I guess she wanted me to fit in.\n\nSo when I told my waiter I was having a \"bad toast experience\" and he blew me off, you can imagine the impact. I ordered the oatmeal as well as the basket of toasted willow breads served with a variety of jellies, Nutella, honey etc. My oatmeal came out with over-buttered, grilled bruschetta-style toast; that's it--a plate with a bowl of oatmeal and 3 pieces of bread. I asked for flatware, then brown sugar and milk, then inquired about my basket of willow bread. The waiter said, \"this is the toast that comes with your meal. I reminded him of my order and he brought me some jam. I decided to stop complaining (cus I had been making ridiculous requests like being served what I ordered and having utensils). I put jam on the \"toast\" and it literally tasted like they had grilled it in bacon grease. Meanwhile the table next to us (the only other occupied table in the restaurant at 10 am on a beautiful Sunday) was getting their cranberry walnut and sourdough bread, perfectly toasted with all the accompaniments. I told the waiter I wanted toast like theirs and that mine tasted like pork (still a veggie after 25 years) and he said again, \"this is the toast that comes with your meal\". My friend was getting embarrassed, so I gave it up and left. How hard is it to bring a girl a new piece of bread?\n\nOk, now all the anger is stirred up... I must say that My florist is one of my fav weeknight spots and their pianist is first rate-amazing. She truly plays from her soul and her personality shines through in her interpretations of classic songs. I have been there since the \"toast experience\", but make my friend arrive first to look for the waiter with the ponytail!", "type": "review", "business_id": "vSWEXsXmJw5ozuF4zqE9ng"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "4muLyMlTP1ijRLACBBRcaQ", "review_id": "XfPv2QYkGyUoJrn7GruWjg", "stars": 3, "date": "2009-09-16", "text": "Yes, I've shopped here. DIRTY as expected, maybe it didn't start as a Big Lots. Service is hit and miss and usually they're great at helping. Sometimes when asking for a reduction on damaged items, it's a good answer from a rare on the ball, positive employee. Other times, even though it's up to the manager, the clerk is crying with a such a dirty glare that you can hear them thinking \"you cheap xxx\", that it's already reduced (on clearance). It's still damaged so what's your beef w/wanting a little more discount? What? We don't need no stinkin' discount on the discount???", "type": "review", "business_id": "Nc8BKRECkNItZBJIku5G4w"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "9eY0M7voV1g_cm4ddI4OCw", "review_id": "4-sDDVjEbdFaybDoER1K_w", "stars": 4, "date": "2010-06-30", "text": "The best fast food Mexican I have had in town, complete with super cold Mexican sodas on ice.\nI had a barbacoa, lengua, tripita and chicharon taco. 2 hours later and I am still full, and haven't made a made clenching dash to the bathroom yet, so I'd say it was a good meal. The chicharon was delicious, like a taco full of bacon!!!", "type": "review", "business_id": "adPVJMkRrS8_3VHQKw5-qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DevOUUL0hiC5fpdnsoiAjQ", "review_id": "RXpMSFNuTfVMEvBE_k74xg", "stars": 2, "date": "2010-03-01", "text": "Okay, this place has received a ton of slack from prior reviews. I am not a huge fan of the food nor the 1950's style decor, but the people are nice and I have been more than satisfied with the spinach queso dip. I actually do get a craving for it which draws me every few months to that bright turquoise and black decor. \nThe lunch menu is very reasonable and the lunch portion of the pollo magnifico was good! What this place lacks in food, is made up in quick, fairly friendly service, and an area that is convenient to downtown Scottsdale and the Giants Spring training stadium. I like the breezy patio area but the big black birds that stalk the fallen corn chips under your chair are a bit frightening. But after a game this March, I am actually looking forward to spinach dip and margarita at Julio G's.", "type": "review", "business_id": "uEW1NwL9h5N0zI2Ip9UKrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wx0tEyolozKNBimMkN0ixA", "review_id": "yihQlrlE0Hw9CFnC60w_qQ", "stars": 4, "date": "2010-03-25", "text": "Definitely one of the better Thai options in the Valley. This place is small and pretty casual - but they do have nice touches like carved wood decor inside. Got a green papaya salad with grilled prawns and a chicken satay. The satay was perfect. The salad was also tasty. The Thai tea was the ideal accompaniment. And afterward I could not resist the sticky rice with mango - which was fantastic. Prices were reasonable, too. I'll for sure be back. The location is quite convenient, including a huge parking lot.", "type": "review", "business_id": "IRxBQfA7FdHhzrPjtBxuuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "Q6mdVTEOjIL3ZE3jRrxAWg", "stars": 4, "date": "2008-01-22", "text": "Where else can you get a Chile Relleno wrapped in a tortilla to make a burrito? Super crunchy friend goodness with oozy melty cheese in every bite.. Oh the overkill and love every second of it!! Jen Red Pork in a quesadilla with a side of black beans and jerk fried rice.. this is some serious hybrid comfort food.. may sound strange but works very well! You'll leave super stuffed and change in your wallet from a $10!", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "GxsKp9Xa4hC2T7iAy7A6Kg", "stars": 4, "date": "2009-09-27", "text": "A Mexican friend of ours recommended Arriba's. We usually order take out, the 2 times I ate at the restaurant, service was poor and food was not as good. \n\nLuckily, every time we order for take out the food has been very good. The chips and salsa are always fresh. My husband likes the chicken chimi platter and we had try the carne adobada pizza, plate and sampler platter. I like the way they seasoned the food, not too salty and you can taste the spices. Leftovers taste better (though maybe mushy) the next day.\n\nSo, service and food at the restaurant will be a 2, but since I always have a great take out experience, I'll give them 4 stars", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "aklTOtGeeBxTh8s9CRseRg", "review_id": "WHo_1gd9tEKUD8E9l_9fhQ", "stars": 5, "date": "2012-02-19", "text": "Love Love Love! \nAll you need to do is order dessert here. It comes in small shot glasses & the flavors explode in your mouth..", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gdNJzMx9duSZCBdiU1QKFg", "review_id": "4bQV2vZy3aHcg65G2iaBmA", "stars": 4, "date": "2012-10-16", "text": "Went by this morning to grab a few donuts. The real star was the glazed cinnamon twist; pretty perfect if you ask me. Also had a chocolate glazed cruller and an old fashioned donut (I think they might be sour cream). GET THE CINNAMON TWIST!", "type": "review", "business_id": "AOLx-xr0JsFhle4K6xRHfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RdZwXJY6IlCcnLdJPH25yQ", "review_id": "7YZfA6cRVhvxuRZvKr9Q8Q", "stars": 5, "date": "2012-08-08", "text": "Loved my haircut. Walked in and waited for just a minute. The stylist cut exactly like I wanted and I walked out paying 20 which included the tip.", "type": "review", "business_id": "JoZsAxRCwzkBI6MAfjSu_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "myhod6THr8jGMsWUl6e2uA", "review_id": "lhzsqdaoq3Jpeov9N2ewkA", "stars": 2, "date": "2011-03-23", "text": "Consistency is an issue with the Chipotle chain. Some of their restaurants are clean and well run, some are not. They really need to trim the chicken of the chewy parts before they chop it up and throw it in a burrito. That really sucks.", "type": "review", "business_id": "qNqvJIH4_KENAajUfRZKoA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "TVMLSvdYuHK3BOwh-kafRQ", "review_id": "yBBF4WOOjpRuFBte9zx1lw", "stars": 3, "date": "2011-06-01", "text": "Whatza Culvers? \nI drove by this place as it was being built; didn't know what it was, but \"butterburger\" and \"frozen yogurt\" caught my eye..... so I decided to visit it on 2011-05-30 (dine-in). Looks like it just opened, and it was busy.\nTurns out this place is a fast-food chain based out of Wisconsin that I had never heard of before... kind of like a cross between an In-and-Out and a Dairy Queen. Menu is a bit daunting the first time - a burger or a sandwich? what side? smoothies, or regular drinks? You walk up to the counter, place your order, take your number to your table, and they deliver your order to your table when it's ready.\nThe burger patties are different... they're about 1/8\" thick and seem pressed/fried. The buns are nice and soft... ingredients are fresh or properly cooked. Flavors are there... but it is a different style burger than what we're used to seeing. I tried the cheese curds; just wish they hadn't breaded/deep-fried them. I like my curds natural. A fountain drink completes the \"value basket\" deal.\nTheir frozen yogurt or \"concrete mix\" sealed the deal.... we tried the banana split (nice) and their \"brownie cookie dough\". Kinda hard to screw up frozen yogurt! yum! \nOkay, so I now know what a Culvers is. It's a good change-of-pace from the other fast food chains. Not sure I'd go out of my way just to come here (unless I'm really in the mood for it). I'll have to try other items, but for now, its a 3 star rating.", "type": "review", "business_id": "Mysd5IypHqTFkmHlbQeOyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "kupytM_bndQwNuR482KxQQ", "stars": 5, "date": "2012-08-22", "text": "Great for young kids... tons to do and see", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sYe1DZYWnAHVfEzWlLkaAw", "review_id": "93ap2c64RAbxONxvA51cyw", "stars": 4, "date": "2010-12-29", "text": "Love the Vig Uptown's vibe, decor and oh yeah, food! The only thing that I tried that I thought was just ok, was the Pad Tia. The sandwiches are wonderful, would prefer large cut fries more, but I still enjoy the shoestring type. A friend of ours, a die hard foodie, Loved the pork chop with the polenta and cherry sauce... if we had looked away for a second I'm sure she would have licked the plate!!!\nAll in all, the only bad experience we had was the forced valet service. Just drives me crazy that a restaurant uses the main parking lot for \"free\" valet, when it should be for customers, and valet down to another lot. No such thing as free... then people sneak into lots down the way to save the tip. If this was Chicago, or New York I could see it, but not Phoenix. But don't let that keep you away...", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 5, "useful": 3, "cool": 3}, "user_id": "gEnU4BqTK-4abqYl_Ljjfg", "review_id": "sksXE8krD3WvqSOhtlSUyQ", "stars": 5, "date": "2008-08-28", "text": "Obsessed. Like, I've-got-the-Twangy-Tart-withdrawal-shakes level of addiction to this place. Please make one in Arcadia! Pleeeaaassse.", "type": "review", "business_id": "57-dgZzOnLox6eudArRKgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "frfPWeciPdetufUbQuoBbA", "review_id": "INkSw_fUeF1VyFQYCraAHQ", "stars": 5, "date": "2012-03-29", "text": "Loved the winkie! Eat your vegan meal next door at Green and stroll over to Nami for dessert.", "type": "review", "business_id": "ZEdaJ8mcMpPiFWgDuSPqeA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C5_Fe8CxYWLlxm44U1yrsQ", "review_id": "SOMcKk6XBy9fRwxtZUGZyQ", "stars": 5, "date": "2009-07-21", "text": "I have been patronizing Casey Moores for 10 years and have never had a bad night! Great for people watching and the service is always great! Get there early or it will be standing room only!", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "VRzQrrqpEonzull95pDCww", "review_id": "SjWAYNV79iT-j6NSUS1Rcw", "stars": 2, "date": "2012-02-17", "text": "No good", "type": "review", "business_id": "QSCeI8HdUluG-YmbDWo-fw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "iGus6wCenfh62PVeQrVcVQ", "stars": 1, "date": "2010-08-03", "text": "Every time I come here the staff is so rude! Its the closest bar to my gate so I'm kinda stuck. Hey staff, can you please pretend to like people????", "type": "review", "business_id": "OL9p2tme85Sd3d8mCiSOxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7jWmd57QoJnq2q4QyvVS2Q", "review_id": "Rzorh-nPKORglooFK3i4ig", "stars": 4, "date": "2012-06-18", "text": "Awesome Donuts! \n\nThe only thing is, I was expecting the light fluffy glazed that Krispy Kreme has. This is not the same. HOWEVER these donuts are homemade delicious and why not support small businesses?!?! \n\nSo why the 4/5 star instead of 5/5? Well the majority of our group LOVED the donuts and swears by them. HOWEVER, one or two just thought they were alright and preferred a light airy donut a la Krispy Kreme (lameeee). So thats why I am trying to represent all opinions here in my reviews.\n\nWe were headed there when they were closing the dining room apparently (the drive thru is 24 hours though), but the nice lady allowed us to come inside, we had a rather large group with us. \n\nTHE BUTTERMILK donut is amazing!! TOTALLY worth the late night trip!!!\n\nThese donuts taste fresh, delicious, and the customer service was so great when we were there that night. This place is the best donut place I have been to in AZ. No more KKreme or DDonuts (that place is not that good anyway). Just go to Bosa and you will never go to a chain donut shop again.", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rYH9_o2J2Y4DzvZYzE7qag", "review_id": "SLd_mXX26a5z3q9cSJ8eXg", "stars": 4, "date": "2011-06-12", "text": "Pretty good food, the selection was great the service was a bit slow and I had to seat my family my self but overall it was ok, all day every day 99 cent margaritas.", "type": "review", "business_id": "oiLe3lqMFaZtsSpRuIUChw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "SANIRivZOgHZKu5CCFB_9A", "stars": 5, "date": "2012-08-20", "text": "I have been saving my 100th review for my favorite restaurant of all time. \n\nWe found Thai Basil over a year ago now and have been loyal customers, going at least once a week and sometimes more than that, since last July. Everyone who works here is super friendly, and they know us now and know what we like to order by heart. We just walk in now and they see us and say \"Spicy noodle, tofu, hot, right?\" Its pretty great having a place that knows my regular order. I have tried most of the menu items. The garlic eggplant is also pretty great. The thai basil is also amazing. I have generally liked everything I have had here except the curry. I never have had a good curry experience. Both of the times I ordered it I ended up with long black hairs in it (which they quickly replaced with a new order) but I just wasn't a fan. Maybe it's because of the coconut milk and it makes it too sweet. \n\nThe spring rolls are also the best here out of every spring roll I have had anywhere. \n\nBefore I went vegan again last year we also got the fried banana ice cream pretty often. That is pretty amazing. If you eat dairy, you have to try it at least once. \n\nThai Basil is one of our regular spots to eat out, and we hope its here to stay for many more years to come. I don't know what I would do without my spicy noodles!!!", "type": "review", "business_id": "ujLZmyy11g1JHCQTxRA3Dw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "14kJj0ogLI1C0tQ1bakdQA", "stars": 3, "date": "2010-05-03", "text": "I reeeeaaalllyyyyy wish that I could give this a 4, but I can't do that in good conscience. The food was great, but the service was downright abysmal.\n\nIn a fit of random adventurousness, I thought it would be fun to try a new kind of food for me. I'm typically a weenie and afraid of anything \"weird\" so this is a big deal for me. We drove out here on Friday night and at around 6 or so the restaurant was about half full. We stood at the door for entirely too long while we waited to be seated. When we were at our table, we waited entirely too long to get menus. When we knew what we wanted, we waited entirely too long to place our order. You get the idea. Thankfully the food came out fairly quickly. \n\nI ordered the vegetarian plate that had collard greens, some kind of cabbage/carrot/potato thing, red lentils, and some bean/carrot/onion thing. As with all dishes, it was served with the injera, a weird sourdough crepe thing. I was a little weirded out that the bread thing was served cold, but I got used to it quickly enough. Everything on my plate was yummy, but if I were to rank it, my favorite would be the lentils, followed by the collard greens, then the potato, then the carrot/bean thing. \n\nEating here was a fun experience for sure, and not having any silverware definitely made for some creative feeding procedures. I would probably come back here if the mood for Ethiopian food struck me again, but I would really hope that the service would be better. Since everyone else mentions great service, I am going to assume we came at an \"off\" time.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7tA6O_H0uWtszsIbolpgsw", "review_id": "4k-ro-KmZiQw3xvRS5rHZw", "stars": 4, "date": "2012-06-24", "text": "great merch. great prices. \n\nalthough..it's a bit sketchy getting out of the parking lot. you have to back up in a major street. is there anywhere else to park?", "type": "review", "business_id": "mkOgGgniAgOng1s7tjhMrA"} +{"votes": {"funny": 6, "useful": 5, "cool": 1}, "user_id": "2sM4fCVg6FNdfq3FLDJbIw", "review_id": "LYT2pgW50hez3C-GUbc7Jg", "stars": 1, "date": "2009-03-31", "text": "I dined at this restaurant on a Saturday morning and was actually the very first guest. I got greeted by the hostess and was promptly seated. The service was phenomenal from when I walked over the door step and the ambiance is the restaurant was amazing . I ordered the smoked salmon as an appetizer and the daily scallop special as the entree.\n\nWhen my salmon dish came out I said to my self \"WHAT in the hell?\" Two extremely thin slices of salmon, little salad, and a piece of bread with some aioli on the side. Salmons cheap and they charged me $15 for this crap? I work in the food industry and the food was crap.\n\nNext, the entree. The waiter described the the scallop dish like it was heaven on earth. Explaining to me how delicious this special was. So I took his advice and ordered. When the dish came out I said to my self again \"What in the HELL?\" Four small scallops, 2 baby carrots, broccoli rabe, and cilantro sauce. The scallops weren't seared enough, the broccoli rabe was brown and mush, and the baby carrots were still raw. The funny thing was. The sauce didn't even resemble any cilantro flavor at all. I could of made this dish 1000x better and the entree took a big hit in my wallet, $32 for crap.\n\nThe meal came out to roughly $60 and I left that restaurant to never try it again. I could of gotten some pho for $8 would of been a hundred times happier than spending money that wasn't even mediocre.", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VXNqQAiFc95LNtONaimqhw", "review_id": "ayfcmgfmkqmjr8sO0Iqsuw", "stars": 4, "date": "2011-11-23", "text": "I absolutely love this regional park! The only pitfall is the cost of admission.....Seems to me that a park should be free to enter but I understand that there are costs for maintenance as well. Buying an annual park pass makes the most sense if you plan on making repeat visits. Beautiful views of the valley from any trail. All levels of intensity for hiking, biking and the like. Hard to believe the mountain is surrounded by houses because it seems so serene when visiting.", "type": "review", "business_id": "B_Ea839qdvPWa07YnpeIrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QpCdrAfqOvHjZ_sdNC4gWQ", "review_id": "Vv3NJShznZTFJq8-6VKNfw", "stars": 1, "date": "2012-06-18", "text": "Cool place but don't try to arrange a special event. The proprietor was arragont, unflexible and unethical when I held my friend's bachelorette party at The Duce. Be warned!", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ue9mYNOxPcicrU_UzhGluQ", "review_id": "R4aFJ8B1e4aSPge-vFHvjw", "stars": 4, "date": "2012-08-27", "text": "Great prices with great selection. Great for your everyday shopping needs.", "type": "review", "business_id": "StwBhPYVo-q-x1FccSmzwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P7Zcg73x8FzszGEiC9YPfw", "review_id": "YDGhV4Lakr4TDElnwvfy2w", "stars": 5, "date": "2012-11-02", "text": "I am in love with the cinema suite! Being able to stretch out your legs on the LazyBoy recliner is the way to enjoy the movie. The chair is spacious and the room is not crowded with viewers. The foods are at a reasonable price and the server is nice.\nFor movie that are 2+ hours long, watching movie on the recliner is the best experience. Also great place to go on a date :)", "type": "review", "business_id": "EmlgWjs1ZzZEpDjZCSPLmw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "Zkn45PKSC3Lj-o_ZnK35yw", "review_id": "emhHChKwAwRT0gm20hpXjg", "stars": 4, "date": "2011-04-20", "text": "Everyone knows about Pei Wei right?! I really thought so until my boyfriend admitted that he had never been. Challenge accepted. \n\nNow, I've been a frequent Pei Wei customer ever since I discovered Asian food did not always have to send to you running to the restroom. (Yeah, thanks for nothing Bing Heng and Great Wall Buffet). This isn't the best Asian food ever, but it is quick, accessible, and always pretty tasty. \n\nI've tried everything on the menu, but my favorite options are the Crab Wontons and the Pei Wei Spicy Chicken. I ordered these plus the Spicy Korean for my n00b boyfriend to try, and everything went better than expected. \n\nIn fact, he even commented that the place was \"classier\" than he expected. \n\nJust a side note: you can order and pay online, so you don't have to wait for the takeout line. You can also choose the specific time you would like to pick up your food.", "type": "review", "business_id": "zOJdahdaaLz7DpfdIucslg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "I4GolEA9L0k2RfH4CauL0A", "review_id": "wgDOy_o_T8qJUpFfH1eATg", "stars": 5, "date": "2012-09-03", "text": "Marcellino's was an amazing romantic dinner experience. I had their fresh pasta w/mushroom truffles and lobster. The combination was amazing. I also had the white wine that's made by a friend in Italy. It was tantalizing and really lingered on my pallet. The homemade tiramisu was a blissful ending to dinner. The staff is attentive and very helpful.", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YEp3lrsXDGDbLT3cFRHT7g", "review_id": "lXVF7nz1SdwRp3DW8zqnkA", "stars": 5, "date": "2010-02-17", "text": "Restaurant 28 is a solid hole-in-the-wall that's pretty easy to miss, but it's definitely worth a stop. On my visits I've gotten brisket and other barbecue, and my friends swear by the chicken and say it's some of their favorite chicken in the Valley. The hush puppies are great- the greens are good too.\n\nAnother review said it well when they said this place doesn't underseason food. Every time I've gone it hasn't been bland- it's got some great flavor and it's tasty stuff.\n\nIt's in a pretty dull area where there isn't much else to do, or I'd be out there more often. It's a tiny place too but I've never been in and had it be hugely busy or busy to the point that waiting was crazy.\n\nDefinitely recommended, and I hope they're able to grow and thrive.", "type": "review", "business_id": "xL7H-eMQDE-y23VL7MpLsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mQ6LzbfhBbLA5HUTKDVYfg", "review_id": "F21FB1A_XHfpvSdZPRo2Ng", "stars": 5, "date": "2010-02-28", "text": "The Renaissance Festival is a place where everyone and anyone can venture to in order to awaken their medieval passions and expose a side of them no other place can reveal. Here people can be themselves without fear of being judged. They can dress in clothing appropriate to the era, eat as citizens of the renaissance age would eat, and live a day in the shoes of people whose lifestyle consisted of these aspects every day of their lives, all while having a merry time.\n\nWhat's fascinating about the Renaissance Festival is it is an escape from the everyday bustling industrial environment known to people of the 21st century. Once you pass through the gates, you are immersed in a culture rarely seen these days. Men, women, and children of all ages absorb the spirit of the festival and change into someone only such a place can expose. Immediately you are compelled to have high spirits as people dancing, shopping, and just continuously enjoying themselves welcome you to the festival. From there the opportunities are limitless for there are twelve stages of continuous live entertainment, jousting tournaments, over 200 artisans displaying a variety of unique wares, and displays of ancient skills like glassblowing, leatherworking, weaving, woodcarving, blacksmithing, candlemaking and pottery.\n\nOne specific entity of the Renaissance Festival that stands out in my mind is the old coin striking mill tucked away and blended into in the strips of stores surrounding it. Here, a family of three (father, mother, and daughter) work to produce unique coins crafted into necklaces by means of a punch press. \n\nThe store offers some 100 different punch dyes each a symbol possessing its own special meaning. The categories range from mythological symbols, to astrological, to even ancient Egyptian. Once their customer has chosen two of their own special symbols they want imprinted on a coin, they place a blank, either bronze or silver, between each dye and clamp it to a press. Then a heavy weight is hoisted a few feet above the dyes and then suddenly dropped onto the head of one dye, eternally imprinting the symbols on the coin. \n\nWhat's distinctive about this certain store is they can fulfill the needs of any customer that they are presented with by owning such a broad spectrum of dyes applicable to anyone due to the meaningful descriptions given to each symbol. Additionally, what captivates people is the fact that the coin is formed before your very eyes three feet away, making the production a very personal thing for the consumer. \n\nIf you and your family are venturing to the Renaissance Festival in Arizona anytime soon, which I would undoubtedly recommend, be sure to stop in on this special experience not attained anywhere else close by.", "type": "review", "business_id": "pgz6IeaZgLuzqrk6HMPhzA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "VpnwO4DztZcFOskjO_VCjA", "review_id": "TJQ1R5b7qku-r7Ps6ew9Bg", "stars": 5, "date": "2008-08-03", "text": "In one word...excellent! My fiancee and I had an amazing time here last summer, when we were upgraded to a Spa Casita Suite because the hotel had found out about our engagement, which happened right before we left for our trip. The room was huge, the grounds were beautiful, the pool was awesome, and everything there was so peaceful. The concierge helped us with directions to anywhere we wanted to go and the location was great as well...not far from the main drag, but somewhat hidden from the outside world. We are hoping to return soon.", "type": "review", "business_id": "xm8F51qKjx0cfdOSukTDng"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "z06IHGXI_ofBc2DkAbCgnA", "review_id": "vbrsS_wrWA5VTe-85-jALg", "stars": 5, "date": "2011-06-20", "text": "Holy AMAZING. I went here this past Saturday for a baby shower in one of the private dining rooms and was absolutely blown away by the food. We had a spread which included Mac & Cheese, Sliders, Chopped Salad, some bread and french fries. I'm still thinking about those sliders and the french fries. I can't WAIT to go back and order from the full menu. \n\nAs is par for the Sam Fox course; the decor is over the top. I need to find out who designs these places and have them make over my house!", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kbE6ZgYaytswPn1n3fligQ", "review_id": "txYVk8AjUrNhAQuFBk4eZg", "stars": 3, "date": "2011-01-31", "text": "After hearing all of the hype on diners, drive in and dives and reading the yelp ratings, we decided to try it. We waited over 30 minutes for a table. The place is small and outside of a dungy motel. The service was extremely fast once you got in the door and the waitstaff are very friendly. I had a waffle and it was good but nothing memorable. My partner had an omelette with portguese sausage that he loved. The hash browns were so buttery and they were good. \n\nI wouldn't make a special trip back.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "mmJzZPMT06-4jRhf5L8laQ", "review_id": "9hldnPtKmCgVRA9Ro1L7dQ", "stars": 5, "date": "2009-02-22", "text": "Great experience at the Phoenician, specifically Il Terrazzo. We normally buy many loaves of bread from them at OTFM (Old Town Farmer's Market). They were absent yesterday so we called in an order & went directly there to pick it up.\n\nWas gorgeous of course & they were as nice as pie.\n\nAnd the important part is that the bread was fabulous as always (olive walnut, chocolate cherry sourdough, farmer's rye, wheat sourdough, rosemary sourdough, baguette).", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Pc-6iaUA1hPkTZP2g4G0Hg", "review_id": "Rfwj9pFfFejwr25d2buyRg", "stars": 4, "date": "2011-04-21", "text": "Pleasantly surprised, great drink specials and cute outdoor seating.\nFood was really good and I look forward to going back!", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fumqlFyxTEQIMi81uN-z2w", "review_id": "DfsdM_qT6kyzRa2MpfeuSA", "stars": 5, "date": "2011-04-24", "text": "Great Frozen Yogurt. Helpful staff, clean enviroment.", "type": "review", "business_id": "XhdMiSn0b3O929YpjVBMHw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2SAfpKiBCl4TQE0D3UhyTQ", "review_id": "pWGoMHOn51voA10_2fO4Sw", "stars": 1, "date": "2012-07-18", "text": "Yikes...I won't be going back. The ordering system is confusing. The staff also seemed confused. The food was very bland and pretty tasteless. THIS PLACE IS NOT EVEN IN THE SAME LEAGUE AS HONEY BEAR'S NEAR THE AIRPORT!! Skip this bland chain, and go to Honey Bear's!", "type": "review", "business_id": "ymSMV5wMjFwcusoGRaqDWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4M16MDakz-XK9t5MfLEwEQ", "review_id": "CWHbKK73_ejiG1IWRbwkHg", "stars": 5, "date": "2011-03-18", "text": "Excellent burgers and sweet potato fries", "type": "review", "business_id": "YUV08PQk7Vk96r9Q0b3XAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1iJ0AwkYqDKHYMdUVarN0g", "review_id": "ku_VObOYfuJ-qVB72KLFhA", "stars": 5, "date": "2011-03-12", "text": "Fabulous service tonight and it was crowded!", "type": "review", "business_id": "VN5gJKlXIBQzx_M32F_lkA"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "YMB29SPB8Z_a2be4O5gxOg", "review_id": "n00HCW6_X4U0esmFO_BbAw", "stars": 4, "date": "2008-06-15", "text": "Let's rewind four years:\n\n\"You've never been to Chino Bandido?\"\n\"No, what is it?\"\n\"How long have you lived here?\"\n\"About eleven years, but a bunch of those years were when I was a toddler, and I just moved back from a few years in Flagstaff.\"\n\"And you've never been to Chino?\"\n\"NO. What is it?\"\n\"Amazing.\"\n\"Take me there.\"\n\"Okay.\"\n\nYet we never went.\n\nOn the drive home from the Children's Museum of Phoenix, I realized that I was hungry, on a budget, and Chino Bandido was not too far off of path. I ran the plan by my father, checking to make sure that would be an appropriate Father's Day dinner. I received a confused look and thumbs up. He's not the most adventurous when it comes to dining experiences, but is generally a good sport.\n\nIf my friend and I had been on the ball, I could have been eating here for four years. Granted, I rarely have business around 19th and Greenway, but I could have made Chino Bandido my business.\n\nWe both ate a perfectly reasonably sized and delicious dinner for less than $10. Three cheers for Caribbean influenced burritos and homemade teriyaki sauce.\n\nStevey P mentioned the only reason I'm giving four instead of five stars: If the dining room weren't so disgusting that I had trouble eating in it, it would easily be a five star place. Wipe down the counters and tables, and perhaps give it a new coat of paint, and I'll be completely thrilled.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ATL4qZipZhzIMzVtweq2yA", "review_id": "gIbRhmD67FQpO1PJRlOZlg", "stars": 5, "date": "2012-07-04", "text": "I love Scottsdale Child Care & Learning Centers. My daughter started going there when she was 10 months old. The teachers are wonderful. Not only are they nurturing and kind they are also very interested in each child. \n\nMy Daughter has been attending for 6 months now and has graduated to room 2 for toddlers. She knows over 30 words and I attribute much of that to Scottsdale Child Care. She has loved all her teachers and welcomes with open arms each morning when I drop her off. \nI would recommend this center to any parent, especially if you are nervous about leaving your loved one for the first time.", "type": "review", "business_id": "gfj0gqRkvwn5-vkx8sFjdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "588oY8EejEFCr-ym_2TR0Q", "review_id": "4aqWnxcqh6C6lCLS7ZvlFw", "stars": 4, "date": "2011-02-13", "text": "Nice crispy crust. Came here the other night and ordered a pie at the bar, with a couple of beers. Definitely an Old Town Scottsdale institution. Their calzone looked pretty good, and enough for two people, unless you were the 135 lb guy sitting next to me, that scarfed down the whole thing himself. I mean if he ate it all, it had to be good. They also have some pretty good local beers on tap and by the bottle. I'll definitely add this my repertoire of AZ pizza haunts.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9mNlD64jqX7VjignlT9Efg", "review_id": "uvMlcMqLzLaHssmFSdLkVA", "stars": 3, "date": "2012-11-16", "text": "The Choice Hotel chain continues to be my preferred properties of the mid-$ range hotels. The only issue I had with this one was the noisy A/C unit in the hallway right outside the door. Other than that, it was clean with a friendly staff.", "type": "review", "business_id": "iyTQbU_XdznZ48AzeQfbdg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "Cxt0n_IohFGXncyomAEv0Q", "review_id": "vdfCSIa3KfwbgW9ytZxn4A", "stars": 5, "date": "2012-02-06", "text": "This place was a huge surprise and a huge relief!\n\nBeing a foodie, and quite the fan of healthy food, this place definitely lives up to those expectations. If you've ever been to San Francisco, then you'll definitely get that feel when you enter the cafe.\n\nIt's got a great atmosphere, and the menu is by far the best when it comes to serving healthy \"organic\" foods. I know that many places in the valley claim to serve healthy food, but serving \"all-natural\" and locally farmed foods doesn't necessarily mean it's healthy. People that are true foodie's know exactly what I mean.\n\nI ordered the Dragon Bowl with quinoa and it was delicious. I'm excited to try this place again.", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 0, "useful": 2, "cool": 4}, "user_id": "npOswlvP8Rz82d-dfy53-g", "review_id": "xOuqhNoA1Ol6BWYLUINQyg", "stars": 5, "date": "2008-09-01", "text": "Based on Yelp reviews, I went to check this place out while I'm working on assignment in Phoenix. As promised the food was great, the service was great and I got to meet the venerable Thomas.\n\nI sat at the bar and the boys took care of me. The Fez Kisra sounded good, but I should have listened to Russell's recommendations. I will definitely try those next time, which will be soon.\n\nThe wine selection was varied, but didn't blow my mind. I stuck with whites and found that the one that sounded the best wasn't nearly as good as the most popular (shockingly).\n\nThe place combines hip and tasteful decorating, good music, great food and a nightlife atmosphere. Definitely seems like a great place for a night out with the guys/girls if you don't want to be overly bothered.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TL46g36OKxmgSDYRFJdPRg", "review_id": "XdAtb3hIzydAmzdFy0Ubyw", "stars": 5, "date": "2010-08-05", "text": "Still solid, still delicious. I love this place!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "I3YhFIXT3TlNBd5DmeZGXQ", "review_id": "QHYmiInNzmfYUdzj1U9B0w", "stars": 3, "date": "2011-06-12", "text": "Third stay here in two years. It's o.k. But nothing terribly special. \n\nPros\nSpacious rooms\nBathrooms are nice\nBreakfast selection\n\nCons\nPaid internet\nA/C is loud and blower is in bedroom part of suite\nLong walk to room", "type": "review", "business_id": "sBxd1tZZtGJ8jDZZxHZiwg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "RMX11FC48KZTYIeExtGUCw", "review_id": "DXUAxm3Bw02tvdrdM5oxLA", "stars": 5, "date": "2011-11-28", "text": "I just wanted to add that in addition to party and catering equipment, they also rent heaps of tools and equipment. Think hedge trimmers, lawn aerators, cement mixers - stuff you might need for a once a year or special project, and so, don't want to invest in the equipment.\n\nIn our case, we needed a chainsaw to take down some dead stuff from last winter's freeze, an unwelcome sapling, a dead tree, branches encroaching the roof, and to tame some monstrous oleanders.\n\nI was just about to head to the tool rental department at that big box home improvement store, when a friend mentioned A to Z. I gave them a call, and their prices were competitive. Plus it had that feel good factor of being a local biz.\n\nThe process was pretty easy. We got a thorough tutorial on chainsaw operation and safety, and were on our way to some serious arboreal carnage.\n\nPro tip: rent on Friday after 4pm. You can return it Monday morning, and only be charged for one day (Saturday), since they are closed on Sunday.", "type": "review", "business_id": "f9eDYb3FXVdnHuOPrxpilw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "50kriCKOYEL6SXII96zs-g", "stars": 4, "date": "2010-03-29", "text": "This review will be short and sweet. I promise!\n\nI was able to have breakfast here with the guys as our weekend was coming to an end and it was pretty darn good. I ordered the pancakes with scrambled eggs and extra crispy bacon. YUM! Dennis ordered the Mardi Gras omelet with fruit and I swear the is the second time this weekend he had mardi gras something. The first was mardi gras pasta over at pappadeaux. Hmm I see a theme lol. JD ordered eggs and chicken sausage and let me just say I have never heard the word sausage sound as naughty as it did with these two around. Even our server Steven was blushing by the time we left.\n\nAll in the the service was good, the food was good and the company was awesome. I will have to come back and try lunch or dinner one day soon.", "type": "review", "business_id": "fd0iSXEhwz-foQdS8SCKYA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "opjBZ0ImnKv5eRNQZ-98DQ", "review_id": "ZgeVTjlTQYZsoI5pfVnYZA", "stars": 4, "date": "2011-02-07", "text": "Maui Dogs is great if you're looking for a dog that's a little out of the ordinary. Get the Hawaiian toppings, and both the polish sausage and bratwurst are good, I don't think I've had a regular beef dog.\n\nThis is one of the two places with good dogs I frequent that are like a block away from me. I go here if I want something unique, they go for a mix of sweet and spice here, and it works. I recommend the sweet and spicy dog, the sunset dog, and the spam sliders Maui style. Whatever I get I usually make it a meal with tots and either red cream soda or green tea.\n\nOn my visit today they were giving away free samples of chicken wings with every meal. I liked the crispness of the skin, and once again the sauce was a nice mix of sweet and spicy. If (when) I order them in the future I'm going to ask for extra sauce though. The only thing I've had here that I wouldn't get again is a burger with chili on it. The thin chili is fine on a dog you're going to eat with a fork, not as much in a burger. Thankfully the cook was nice enough to suggest that I should get the chili on the side if I was ordering to go, so I still got home with decent food and not a soggy mess.", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "8n4SarsuI9Km6lEtydiE0w", "review_id": "0SK9ESvxPiBj-tLvwvAFgg", "stars": 3, "date": "2012-01-03", "text": "I like perusing Buffalo Exchange, but, whenever I bring some clothes in for store credit, I end up disappointed. They seem to give you very little credit for good items, and they are very picky. So I clean out my closet, take it to Buffalo Exchange, and come back with 3/4ths of the stuff. Discouraged, I set it on my floor and it sits there making my room dirty for months.\n\nI would suggest going in to trade during an off time (not a weekend) when there will be less people trading. They may spend more time looking at your items. They also prefer the items to be in season, so don't clean out your sundresses until May-ish if you don't want to have to bring them back home.", "type": "review", "business_id": "JmEp4DxBEIrFD-rgbL8bvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mU5GwCA4uiD0-RH1qt3jrQ", "review_id": "YaE6ACqodfbnR7TvRw_D3A", "stars": 4, "date": "2008-02-06", "text": "Humongous flat screen TV!!!! That is the first thing I noticed about the room! Pretty awesome! \n\nThe room is cozy, and a decent size. The king size bed was comfy with fluffy pillows. The living room had plenty of seats that faced the flat screen TV. The room has a mini-fridge and a microwave.\n\nThe only gripe about this place is a very small closet and bathroom. There is barely enough room to close the door for the bathroom. The closet also had one sliding door. \n\nThe continental breakfast was average. No hot food. Guests can choose either cold cereal, instant oatmeal, juice and milk, fruit, yogurt, toasts or bagels. The seating area in the kitchen was convenient for guests to enjoy their meal.\n\nIf you need access to computers, they are located next to the kitchen. There is a printer as well.", "type": "review", "business_id": "P2zgRMywotyalwFGFwAJZw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "5q47UxwDj3aqwhEZfgW5XA", "review_id": "_b1OxYRklzmXxpbq4Wku1g", "stars": 5, "date": "2011-01-29", "text": "I can always count on Sacks. It is always fresh and always tasty and the sandwiches are so creative that years later I'm still not sure how they get those fabulous blends and tastes that they do. I try to hit lunch a little off the lunch hour and then the crowds are not so bad and I can find parking but, its worth it to eat a little latter when I know the meal will be so satisfying I can go back to work and be so productive. Sacks is my \"go to place\" when I have a guest or friend that I want to be well fed and satisfied too.", "type": "review", "business_id": "GqtMJxq5-7Xp1ZXXmahLaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "El1LXGcbyEZIalC-c9ydSQ", "stars": 3, "date": "2010-03-27", "text": "Decades ago when this festival was up and coming, and I lived in Tempe, I would go to this street fair as we called it then two or three times while it was going on. Today I went with a friend. The festival has grown by blocks now. It's pretty big, I think they claim 400 vendors! That has to include the food vendors. \nI had my fry bread taco. It was super good and $9 bucks. I looked for something to buy but left with nothing. The things I liked most were huge home items and big ticket prices. I saw a few handbags of interest but not within my budget either. It use to be that this festival would have jewelry, matted photography and pottery a college student could afford. That's still my budget this year, unfortunately - but such priced things could not be located here this year. So I'm disappointed with the festival offerings. \n\nParking covered & uncovered was $10 if you could not find free street parking. There wasn't enough ice cream vendors in my opinion but there was plenty of food vendors and the neighboring eateries were also busy and offering variety. \n\nThe entertainment was very limited. I hope they will seek more entertainment in the future especially since they claim its one of the top 20 street festivals in the country. Otherwise there isn't much to stick around for unless you have deep pockets or want creative ideas.", "type": "review", "business_id": "yJYQ5P3TxP8i-u_GK8NO_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tHz9cWxwSfcP4qRaPIHvww", "review_id": "ZUJaQ2OEfduzN3Xkq8WMgQ", "stars": 4, "date": "2012-12-24", "text": "We had our work holiday party here and we can't wait to come back and enjoy it again. We were greeted with a large wine selection and some appetizers on a back patio. The appetizers were mini pizza/bruschetta - some had mushrooms and some has tomatoes with cheese. Both were delicious. Another appetizer was a date wrapped in bacon - this was super delicious and easy to eat. I ordered a pineapple mojito and at first our server was confused, saying they don't have a blender but could make us a raspberry mojito. (I've had bartenders tell me they don't have blenders when I've ordered mojitos before, so I was used to this.) Luckily, our server came back later telling me she was confused and viola a delicious pineapple mojito was placed in my hands with a large slice of pineapple on the rim. It was amazing! So good, the husband had to order one for himself. Our party moved inside to a private room where we were given tiny menus with simple selections. The husband ordered the beef entree, steak with horseradish mashed potatoes and I ordered the scallops with corn polenta. While the scallops were delicious, the steak was super tender and moist! (Better than a fillet we had the night before!) For desert, I ordered the chocolate cake with coffee crema inside and the husband ordered the cheesecake. The cheesecake came in a cute mason jar and was amazing. I really liked my chocolate cake but the cheesecake was better. For once everything the husband ordered was better than what I had ordered! It was a fantastic party and such a great venue. Can't wait to come back!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "R8xAZICRKkz91tdMgXNGPA", "review_id": "EEPXlNaADR8wqmoiOHMYvQ", "stars": 5, "date": "2011-04-21", "text": "Best Mexican food in phoenix... very reasonable prices...", "type": "review", "business_id": "BM0-dgPJMBMmcmO9PVCJfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "rVk-_YJi0liaSoUyJkPgEw", "stars": 4, "date": "2009-09-01", "text": "Great food, fresh crispy veggies, excellent service. I love the luau pork, but it's kind of salty, even for me considering I love salty food! Mango iced tea is very refreshing and key lime pie is gooood. I have tried the tofu but it has been hit or miss the way they cook it.I like it crispier (or as crispy as you can get tofu:)", "type": "review", "business_id": "jj-K19oswZARMwCQK-b37A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "3uoZItEtW2WGjmYT-u-t-Q", "stars": 1, "date": "2010-01-17", "text": "After repeat visits it just gets worse - the service, that is. It was as if we were held hostage and could not leave for a full 25 minutes because that's how long it took to receive hour check after several requests to several different employees. Female servers might be somewhat cute but know absolutely nothing about beer and this is a brewpub. I asked if they have an seasonal beers and the reply was no, that they only sell their own beers! Even more amusing is their \"industrial pale ale\" is an IPA but it is not bitter. So, they say it's an IPA but it's not bitter, it's not a true-to-style IPA. Then people say \"Oh I don't like IPA's\" and want something else. Their attempt to rename a beer/style is actually hurting them. Amazing.\n\nThe menu was not the regular menu, just a small list of about 4-5 choices. To make it worse, the actual menu on every table was wrong, yet the kept the menus on the tables anyway. I heard 3 separate tables order the fried raviolis but they did not have them. \n\nThis place is *only* in business because of the location, location, location.", "type": "review", "business_id": "ZztUsJyGDwPySepmXRG13g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "dn8OpAemsZCUzbSwtulNHw", "review_id": "8UagcGX7JLewBcKhufv1Ew", "stars": 4, "date": "2011-04-18", "text": "This is a very pretty and very chic looking restaurant, and I hoped that the food was as good as the decor. My friend and I had the sangria and the mojito, and then we shared a bruschetta and the garlic pizza.\n\nI found the sangria a little on the acidic side, but drinkable, and it was fortified with something, because it was a lot stronger than it tasted. My friend's mojito was good.\n\nI LOVED the bruschetta. Not only were the toppings well-planned and delicious, but the bread had a nice crunch and a slightly smoky fire-baked taste to it. Ditto for the pizza, in which the crust shared the stage with the toppings. Don't expect cheese-red sauce-and-pepperoni type pizzas, as you might expect from the look of the place, the pizza is artisianal.\n\nNearly half the seating is out on the patio, and one unusual feature is that the seats were low and the tables as well. This makes it a good place to relax with your friends (as you feel like you're sitting on patio furniture) but harder to eat your food.\n\nWe had good service the night we went (a weeknight, around 8:30). Zero wait for our table, and prompt, polite service. I would definitely go here again.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ROr4DQ-gxlfUKmiDC-qSEQ", "review_id": "ahYBLDytup64H0br4tlZpg", "stars": 4, "date": "2009-09-23", "text": "Oh Mojo you won my heart from day one... I always thought I was a gelato spot kinda guy but no apparently I can swing both ways. But if Mojo and Gelato Spot were in a heavyweight championship of how to retain best customers, Mojo has won round one. Why? Simply because of the awesomest event that runs every week on a Tuesday of which I love and that is Twitter Tuesdays! On this day and as an avid Mojo twitter follower, I am rewarded *that's what I think* for my fan-ship and loyalty with a fun secret word of which I made aware of the day of, and upon learning the secret word, drive after work to the Mill Ave location and get myself some Mojo fro-yo goodness for half-off! Score!! =) =) \n\nI just love that at this location there are 14 flavors available to sample, and mix and create the best combinations ever! Oh, and the many toppings and mix-ins make the experience enjoyable! Love getting myself a cup of lemon fro-yo with a tinge of strawberry fro-yo topped off with blueberries -delish- on and birthday cake with choc fro yo mixed in with almonds, peanuts, and choco pebbles... OMG! Yes... I love you Mojo... I am a fan!", "type": "review", "business_id": "1eJiyKXx_ruNu6F36BJQCg"} +{"votes": {"funny": 2, "useful": 5, "cool": 5}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "t_aMvbqbr4T-TkxSm_8uVA", "stars": 4, "date": "2010-11-18", "text": "I'm in love. The festive d\u00e9cor charmed me the second I walked in the door. We sat down and were immediately greeting by a sweet waitress carrying a basket of chips. The chips were light and fresh and came with two salsas, a red and a green avocado salsa.\n\nWe ordered: Camarones aguachile hot drowned shrimp, Camarones culichi shrimps in a green sauce,tomatill & cilantro, rezongue enchiladas crab enchiladas in a red sauce. I also ordered a club soda and when the waitress asked if I wanted it prepared mexi style I said yes. What she brought back was a delicious mix of club soda, salt and muddled lime. It's my new favorite drink. \n\nWe patiently waited for our meal and remarked on the little mermaid scene in front of us. I almost expected the crustaceans to come to life and start playing music. Then to our surprise little fish tostadas were dropped on our table. What a nice touch!\nThe dishes were excellent, all were paired with homemade tortillas, beans and white rice with vegetables. The camarones culichi was my favorite.\n\nFresh seafood, fun atmosphere, great service.", "type": "review", "business_id": "Cp6JGY5YIRncTV_My9nf9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m_yUhRsYJ86K8cleWt9rNg", "review_id": "pS91RgbLkwWvVfUtSmTpEw", "stars": 4, "date": "2012-10-07", "text": "YUM! The flavors were great! Oatmeal cookie and caramel apple were great and tasted just like the real thing. The only reason I gave 4 instead of 5 is because some of the toppings such as the twinkies and baklava were whole pieces and I wish I could have just grabbed pieces of them instead of a whole one...toppings like those could add a lot of $$ very quickly so I skipped those ones.", "type": "review", "business_id": "co8rv2zfOhMXc_TlEI9VrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MU1JHF8Gj6tEjSc0gZw9Zg", "review_id": "WOPagb46YqI008S9C_vsmg", "stars": 4, "date": "2012-02-11", "text": "Innovative venue. Bleacher seating in the back is a bit odd, but it works. Dig the long bar at the far end of the hall. Excellent sound. Haven't tried the food yet, but I intend to investigate.", "type": "review", "business_id": "qw93CjlAZ6a4ff11Z-hF3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "alssDn2euFDd6rJApeSEvg", "review_id": "8kSRYat9LZwyNQsPMBfaNQ", "stars": 2, "date": "2009-10-25", "text": "Made the mistake of eating here on 10/24. Hostess and maitre de set the tone wrong with their completely haughty and unwelcoming approach when we arrived. Acted like they were doing us a big favor by letting us eat there. \n\nWine list is extensive but outrageously overpriced. We selected a good bottle (90 points WS) and when we asked the self-labeled \"wine guy\" about it, he said, \"I actually can drink that.\" A snobby comment. \n\nFood was completely uninspired and pedestrian. Nothing special here. \n\nService fair, pace was bad between courses - long waits. \n\nHad a meal the night before at T Cooks -it was extremely better in every single category. Lon's gets by on it's nice patio setting. The food is average at best. Go to T Cooks instead.\n\nIf you do go here, call long ahead and at least get a decent table on the patio.", "type": "review", "business_id": "EHi-lebXGWjSktl4WvSoow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1BNxg9rMcMD8M-t2XUTqfQ", "review_id": "HD1nAo1VffZZoUQH1ra5WA", "stars": 3, "date": "2012-02-28", "text": "Wanted a restaurant within walking distance of our hotel so picked this one. Was ok: Nothing major to complain about, but also really nothing to rave about either. There are better restaurants to choose from.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ndj0VsWFoIJQJV6p3zswzg", "review_id": "YQZ5QlvnE284x-sa1RM63Q", "stars": 5, "date": "2012-12-13", "text": "Just want to Say ThankYou Hawaiian Airlines for Making My Grandparents Flight Very Enjoyable. They Say Nothing But good things", "type": "review", "business_id": "zV_LBn9F_3jtx0bFgoGvOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JXjU9EVUCJ1rmYKxzDXSlQ", "review_id": "cANlH55ZBvFRzQ7A4iVwBw", "stars": 5, "date": "2011-06-24", "text": "Brought my parents here for lunch last time they were in town. Dad loved his gyro. Mom and I both got large salads, hers chicken and mine gyro meat. SO much delicious food for not a lot of money. Between my Mom and I's leftovers I had a full dinner to eat later. \n\nHooray for pleasing the parents!!", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "M7B2A90idij3HDfCvfEBWw", "review_id": "xytGQSaiuV7ghZZgoWqQYg", "stars": 5, "date": "2008-07-18", "text": "Okay, so I have a little bit of bias towards Nordstrom. I freaking love Nordstrom! \n\nThe store is always clean, and the staff are always friendly. I have never had such good service anywhere else. I especially love that Nordstrom will return or exchange an item with no questions asked.\n\nAside from the service, the selection is very nice. I always go during the half yearly sale, so that I can get some good deals on my designer duds!\n\nI am big on shoes and the selection is very good. They always have some cool shoes that I can't seem to live without. Also, the staff in the shoe department are very good on helping to make suggestions when I am not sure what I want.\n\nIf you go, go in June or January when the sales are great! Make sure you check out the shoes!", "type": "review", "business_id": "c7VgGP8xT25OSReok6fwcQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "syF-6VzPdjmCXbTye6N9Eg", "review_id": "09wV2L_fgTAqe-m68BP_Lw", "stars": 2, "date": "2010-03-01", "text": "Here is the thing about JoJo's, its in a neighbor were you eat at chain joints or you cook at home. It seemed like a safe bet, and who doesn't want to support their neighborhood pizza place?\n\nThey started off on the wrong foot with me by not accepting their free pizza coupon they had sent me in the mail. I had called before hand and asked if it was valid, was told it was, and then was not given a free pizza. Instead, I was given a discount on another pizza. So, instead of coming home with two, which was the plan, I got one for cheap. I didn't want one for cheap. I wanted two. \n\nThe food itself is typical. The crust, cheese and toppings are average, sloppy in a bad way. The sauce is a bit to sweet for my liking, but having eaten here twice, has tasted different each time. The service was alright, delivery took about an hour on a Friday. \n\nThe rest of the menu, aside from the pizza, is what you would imagine. Wings (not remarkable), fried items and some sandwiches. \n\nLets put it this way, if I was at someone's house and they ordered a pie from JoJo's, I would eat it. However, I wouldn't purchase one again myself.", "type": "review", "business_id": "EZ7MD_hOsBZuWEvSjXr7DA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rg8S_nurlsPwnLcnwWLwVQ", "review_id": "OmpMaKVUXTnybZQ1baiydQ", "stars": 5, "date": "2010-04-28", "text": "While I love that it is Native American owned and operated, the best thing about this restaurant is the food - as it should be. I don't go out to eat to be entertained or charmed - just fed better than I could be at home and that is exactly what this place does. \n\nThe food is amazing. The fry bread isn't greasy and I don't know how they do that. The meals are flavorful, filling, and reasonably priced. The only thing I would do is add some tomatoes to the tacos but that is a minor quibble. \n\nIf you want to go out for a delicious meal in a casual place and not pay a lot for it, GO NOW to the Fry Bread House.", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A7p8fnVMFQ5GuMY2Szb81g", "review_id": "KHj__WuHNdc15jFegl3u7Q", "stars": 3, "date": "2012-01-21", "text": "i dunno what the deal is...but i was not terribly impressed with the pretzel fondue. the food was actually nothing to write home about. however...the adult beverages were superb! bacon infused bloody mary? hell yes! if you're a gin fan (and i am) then you must try velvet death. that's it, end of review.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AeucYo8J-rZjcq09Wuqsjw", "review_id": "2aKJbAw_cjl8WKhSyh5MqA", "stars": 4, "date": "2012-04-16", "text": "Thai Basil is just delicious! I love Thai food but i try not t drag the bf along too much since he has not yet found a Thai place that has a dish he really loves but that changes since bringing him here ! WHOOP WHOOP! Really good and quick service for either eating in or taking to go ( we have done both). He is in love right now with their chow mein and i as always am a big fan of Pad Thai. their pad Thai is not as spicy as other places i have been which is ok considering i can spice it up myself if necessary. only downfall for me is i am not a fan t all of their sweet and sour pork which is a big deal for me, since next to Pad Thai that is definitely a second. \n\nTheir chicken sa tay and spring rolls are really good as well!\n\nCheap!", "type": "review", "business_id": "UE4h9OXNzNInmxseAkUihw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mRAPMBM3dbw8KXNit1aDCw", "review_id": "5Qh7s5q5RoHPZYHUh1faUQ", "stars": 4, "date": "2012-07-22", "text": "This place is where I normally go to get all the different loose teas that I love to drink.\n\nThey always have at least two or more samples of their 'tea of the day' which are both hot and cold.\n\nThe best part about this place is that you can mix different teas together to create your own special blend.\n\nI also bought a cast iron tea pot set that I absolutely adore.", "type": "review", "business_id": "wlftPhCaYn2j2LbcP8j3vg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "VAKSiuSInRXsWFEFo1g7lQ", "review_id": "dmKG6jTJx41xZUUVYHihSA", "stars": 4, "date": "2010-07-16", "text": "Who doesn't like a good carne asada burrito? No one doesn't that's who. It's rudunk", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "r4uTWH1905nfE4ZVp9lvIg", "stars": 4, "date": "2011-07-19", "text": "I love Target. This is a great one. Parking is decent and it's right at Desert Ridge next to everything else so it's a convienent location.", "type": "review", "business_id": "AGar9KVq_W7YcF76avbDTw"} +{"votes": {"funny": 0, "useful": 7, "cool": 3}, "user_id": "IijJvpe0DznIG_UMlmvI8Q", "review_id": "IDFpYyXoCUVLvdIv7Wi1mA", "stars": 4, "date": "2008-07-14", "text": "I live in a town where I can find 5 Filipino restaurants in a 5 mile radius. So when I came to Phoenix for work, I wanted to see what the Filipino restaurant scene was like.\n\nLike the previous reviewer stated, there are very few Filipino eateries. The supermarket that I found on my GPS was closed, so I found this one on Yelp. Overall, I would recommend to go to support the local Filipino restaurant.\n\nWhen you first walk in, you start in the bake shop area where you'll find cakes and pastries on display. I wasn't sure if I could seat myself, but I was greeted and seated. There were two other tables filled with about 8 people eating including myself. What concerned me is that 2 of the other folks were the only other Filipinos - as I tend to judge all ethnic restaurants by the number of people of the same ethnicity.\n\nBut that logic doesn't seem to work here were the demographics of Filipinos seems relatively low.\n\nI was craving Sisig (grilled pork - which is my favorite at Ongpin in South San Francisco) - but they didn't have that. On the whiteboard, they had Sinigang na Baboy (pork) - so I figured I couldn't go wrong with one of my favorites.\n\nSince I was here on business, I figured I'll order a few other things including the shanghai lumpia (eggrolls), Halo Halo, and topped it off with Hot Pandesal.\n\nThe Sinigang was served in a bowl with 3 pieces of boneless pork. The meat was very tender and you can pull it apart with a spoon and fork. The soup was a little on the salty side since they may have put a little more tamarind mix, but that I might just be a little oversensitive about my sodium intake.\n\nI couldn't help but think that I was eating at home or a family friend's house. Included in the sinigang was spinach, string beans, eggplant, a small potato, and cut onions. What was missing was dikons (those white radish things). It wasn't bad, and it wasn't exceptionally delicious because nothing compares to home made sinigang. But this would be the next best thing. I ate all the meat, and had quite a few eggplants left.\n\nThe shanghai lumpia came out shortly afterwards. The portion was pretty large and I could have shared it with someone else. I didn't care for sauce that it came with. I wanted vinigar, but a filipino family came in and there was only one server.\n\nIf you ever had Halo Halo at Ongpin, you'd find this lacking. It is served it a large plastic cup. What was missing is the ube ice cream. In fact, there was hardly any ube in it. There was a spoonfull of the leche flan, but I didn't finish it.\n\nI actually ordered the Pandesal later, this version was like two very large dinner rolls served with butter. The bread had a fresh out of the oven taste.\n\nThe restaurant section was clean, with standard fare dining. There was a large flatscreen tv with TFC playing.\n\nLast week, when I ate there, they were just written about in the local paper, but I didn't get to read the review.\n\nThey accept Master Card and Visa, but not American express.\n\nI would eat here again to try some of their other dishes not because I want to support my fellow Filipinos, but because the food is actually worth having again. I took some photos of each dish with my iPhone, so I'll have to figure out how to upload them.\n\nThis is actually my first review because I was hoping to read more about Philippine restaurants in the area, I only saw this one. So I figured, I should also contribute!", "type": "review", "business_id": "iJPG0GPcIirjOMlmzZWxBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BFRoUfAdeYyvITqZ8QhWfA", "review_id": "6wpACpeWHrucwsciJZYljw", "stars": 4, "date": "2012-10-14", "text": "This is a great place to eat and hang out with friends. I always get the pretzel appetizer and the angry chicken sandwich. When I am eating them, I believe there is nothing better I could be eating at the time. I crave those items. I also enjoy the games there- buck hunter, pool and darts. I recommend this place!", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HeNSYRvvt2p7f76Mv_wmNA", "review_id": "bNEamJDVe7MzNSVtPRXx7Q", "stars": 5, "date": "2011-11-21", "text": "My wife and I have made two trips to Roberto's from Dana Point, CA (400 miles) and we haven't been disappointed. Although its not the only reason for our visit, a stop at Roberto's is a must when we're in the Phoenix area. I have tried, and thoroughly enjoyed the al pastor tacos, beef chimichanga burrito, and I really like the way they crisp up the carnitas.\n\nMy wife judges a Mexican restaurant by the quality of its chile relleno and says this is the chile relleno she has been waiting for: two to a plate, great presentation and delicious. The light breading allows the flavors of the chili and cheese to dominate the palate as they should.\n\nShe also recommends the tortas she had at breakfast. The bread, light and toasted perfectly, hugs a generous helping of carne asada (with fajita style onions and peppers), and if you like, guacamole. Pair that with a cup of their terrific coffee, or if you have never had Jamaica, a delicious Mexican beverage brewed fresh from flowers, try it. Either way you have a breakfast you won't forget.\n\nOh, and by the way, the members of the local fire department showed up to order breakfast while we were there. If they are eating there, you know it's good. Just had to thank them for their service. \n\nThis is truly a restaurant where family meets family, Roberto's and yours.\n\nAnd for you insiders, we both love Roberto's homemade tamales. Although they're not on the menu, we have been fortunate enough to take some of their tamales home during both of our visits.\n\nI believe tamales are normally made for the sale in the store on Thursdays (check with them to be sure), but they don't last. On our first trip in 2008 to their old location, we stopped in for lunch (excellent) and were told that they were bringing in homemade tamales that afternoon. We returned that night for dinner and to pick up some tamales that they kept for us.\n\nDuring our most recent trip we stopped in for breakfast on a Saturday. But, fortunately for us, they were making tamales for a catering job the same day and sold us some of their extras. We again returned in the evening for dinner and to pick up some tamales.\n\nThese tamales are just like I wish my (Chinese) grandmother used to make. Check with them to see when they're available. They're really worth the extra effort.\n\nAlthough Roberto's delivers, I regret that they won't come to Dana Point.", "type": "review", "business_id": "uPDTnuR-sOi47blHH943lg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "SNH5L8QZ4kT9unURQUrYow", "review_id": "6Hcj5bOyAsqqNoPDAPdaLg", "stars": 4, "date": "2011-08-02", "text": "As my roomies put it:\n\n\"Finally a Thai place in Mesa that I actually like.\"\n\n\"This tastes like my Mom's Thai restaurant in Utah.\"\n\nThree of my roomies and I ordered the Panang Curry with Beef, Red Curry with Chicken, Tom Yum Koong, Spicy Chicken and 4 Thai Iced Teas. The curry was the right consistency, not watered down and too thick. And the best part was that it was just deeelish! What is great about this place is that the spices don't overpower the dish, and you can taste many different flavors with each bite.\n\nThis little place seats under 16 people max. It's a definite mom and pops store that makes tasty and very reasonable priced meals. We chatted how we wish we hit this place up sooner because its one of the best tasting ones in the Phoenix area.", "type": "review", "business_id": "o15PeOAUzpcCl8ngk0lMHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GjH8vpf6mBVtT3NJUb7siA", "review_id": "Ac0rdOM6YSbb_yI458J0bQ", "stars": 5, "date": "2010-08-19", "text": "When I mean 5 star, I mean 5 STARR...but this place is SPECTACULAR!! Pavle & Charleen are such a fantastic duo....they really know how to make your dining experience exquisite! The food, not to mention the service, is truly unbelievably delicious!! If you want to have some amazing food and get top notch service while doing so, the time has come for you right here in beautiful Arizona!!\nHATS OFF FOR FnB!!", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "d66FhQQZzFDKxklh6t63RA", "review_id": "7lBp1WB1V3rQU6fxmkUdyQ", "stars": 2, "date": "2011-08-13", "text": "Happy Hour Review.\n\nWe stopped by to try the much ballyhooed Happy Hour and were were pretty damn underwhelmed. First of all, I guess I'm failing to see what's so happy about a $6.00 spicy tuna roll and $8.00 drink. Secondly, like other non-japanese sushi joints in this town (cough, cough Ra Sushi), this is sushi for people who don't really like sushi. Thirdly, seriously attitudinous staff, but one look at the uber-douchy clientele explains that. Pass.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wk3JwAEeMuipzJBDTBivGg", "review_id": "jX14ytUgnYN33L5NCcMrmw", "stars": 4, "date": "2011-08-03", "text": "Sure, I'll pretend that the main reason I come here is the food and not the super cheap margaritas. It was the... uhh... food that is really good even if I don't remember what I ate. I think there were some fish tacos that were pretty tasty. Okay fine, I go for the margaritas- they are big, cheap and tasty.", "type": "review", "business_id": "cVejKU_SrdbvzIbQ4oPV0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eZ9OjseD4FHfZW-p70Rw-g", "review_id": "PKb8uHXaqMUg8Lt85g7OnQ", "stars": 5, "date": "2010-10-29", "text": "WOW! Great donuts! Honestly you can't eat just one! I loved the plain glazed and the old-fashioned! Not like the franchise donut shops, these have the real bakery taste!", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "tVVj-hfCKmMM3ntewxxP_g", "review_id": "NNU3SGvUadDMhrjJM9VXKg", "stars": 5, "date": "2011-05-16", "text": "Saw this place while I was picking up pizza for my kids. I didn't want pizza thought I would go in and give the tamales a try. I haven't regretted that decision at all. The chicken tamales are the BEST! They are super spicy, the way I like. The beef with red sauce is great too, not very spicy at all. The masa in all the tamales is flavored wonderfully. I am hooked on these tamales.", "type": "review", "business_id": "A9TCNsHFQvRcsZ6zOB7Xxg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "snd45oedwXxF9tsHUX_6dg", "review_id": "CRxXw0wWZWKZ-n1RnIUs6g", "stars": 5, "date": "2008-05-15", "text": "I was in Phoenix a few weeks ago on a business trip. Lucky me, Thai Elephant was right across the street from my hotel! This is a tiny little joint, maybe 20 tables. The menu is like a book, there is so much to choose from, rice dishes, noodle dishes, soups, appetizers. My coworker and I settled on a red curry dish with chicken and I had a sweet & sour dish (yeah, it sounds trite, but I was in the mood and it was so delicious!) We had tons of leftovers, which we shared with a homey down the street, I hope he enjoyed it. Highly recommended, and if I'm ever back in town, I will visit again.", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 7, "useful": 6, "cool": 4}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "Gp8BXuzWMIDZK9fsYo9PtQ", "stars": 5, "date": "2009-05-04", "text": "It was 3:45pm and I'm about to jump on a bus to the light rail. We have no reservations for Pizzeria Bianco, but a couple of friends just got in line and were waiting to get some wine. Useless fact: they're 26th in line. So in theory, at 5:00 we're in the first seating. And so it happens, the publicly-underwritten public transit arrives (my one-way trip cost $1.25, my gf's unvalidated parking fee was $12) and two Hop Knots later, we're sitting down and waiting. \n\nTypical order, one of everything, two Biancoverdes. At this point being almost review #200, the details are irrelevant. The crust is great, the cheese is great, the Sonny Boy is uber-salty and delicious, fruity olive oil, holy shit these roasted peppers, etc. Why is that person staring at me through the window?\n\nSo I guess the point is, if you make it your only point to go to Bianco, it's hard to be disappointed.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "hghI4qb8mDNGko2GSHx3Ew", "stars": 3, "date": "2012-09-07", "text": "I'm always on the lookout for a morning coffee place and decided to stop at the Coffee Bean. Since I am always interested in trying new places, it looked inviting and clean, and was close to where I was going.They had the usual items you find in a coffee shop, and there was ample seating, with outside tables. That said, it wasn't anything out of the ordinary. However, if I am in the area, and need coffee to drink while reading my newspaper, this is a good option.", "type": "review", "business_id": "B-FG89Jw729_i5rfA7FT7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Y1mij_XxGLcPogt1Wx8tsQ", "review_id": "bEUVx138esXExmoY2t0dbw", "stars": 5, "date": "2012-07-11", "text": "Dr. Greg Allen is the best doctor in the East Valley and probably the state! He has the best of bed side manners and is caring in his listening to the patient's needs. We have used him for several years and trust him completely.", "type": "review", "business_id": "2ra3NpFuk6hxh4TNPAj-Ig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xvw4kRnBNvOT4ZrpJHKifA", "review_id": "TEjpikAl-hfs5LHjapam1g", "stars": 5, "date": "2011-02-17", "text": "INCREDIBLE food, relaxed/great atmosphere, perfect to bring kids/family...the cheeseburger, shredded bbq pork sandwich, sweet potatoes- too die for! Must try! Worth the drive!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iq46mlqoLmNQzTR1z8oqUA", "review_id": "V2JcAEPTcjHqEexrD5lIBQ", "stars": 4, "date": "2012-11-04", "text": "Pretty clean dining room and clean men's room, friendly service, as good as any quick serve restaurant.", "type": "review", "business_id": "JRhbdbjWYsK0s3q2waoULw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yRalNhE4YSdOoKJ9n_a4uA", "review_id": "AM3fGS96uqfVoK9TP2_s4Q", "stars": 4, "date": "2012-01-05", "text": "Came to town for work and remembered coming to Thai Elephant the last time I was in town and loving it. Walked here with friends and the name had changed. The wait staff saw my confusion and quickly reassured me that the name and menu had slightly changed but the food was basically the same. I had the curry fish last time and was craving it so I tried it again and yes, still absolutely delicious. Tried the calamari and crab wontons as appetizers. The calamri was solid but the crab wontons were only okay. A little too fried and in a skin that didn't feel like wonton skin. The curries that came to our table looked pretty neutral colored and the noodle dishes, instead of being on the red side or the dark brown side was also very neutral colored. Since I didn't taste those dishes, I can't legitimately penalize the restaurant but I have to admit that I hesitate to order anything else besides the fish because of their appearance. I'm still going to give this place 4 stars because of the taste of the food I ordered, the good service and the fact they had brown rice as an option. If ever I'm brave enough to stray off the path, my rating may change. But in the meantime, check this place out and order the curry fish on their specialties menu. I ordered it level 4 - hot and it was just the right amount of heat.", "type": "review", "business_id": "tbrFsCEUuq2S5lraOln4nQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "jqjDuUnyshAzGQSIyQwdEQ", "stars": 2, "date": "2007-02-20", "text": "yeah, this is the place where pseudo sushi afficienandos go to feel like their really exotic food experts. if it's got cream cheese in it, it ain't sushi, and this place has cc is just about every roll.\n\nhappy hour is LOUD in the bar. not fun loud, but \"let's crank the bad early 90s alt rock and top 40 emo rock as loud as possible\" seemingly as catch all for the only demographics who will like this place- early 20s and late 40s and 50s who want to seem like they still know how to get down with the younger generation.\n\nbecause it's ahwatukee (a \"sleepy bedroom\" community that is pretty affluent all in all and likes to be reminded), the crowd can be obnoxious, even more than this bar already is.\n\nagain, i recommend it as a place to go and be rowdy, not to eat great sushi.", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "die-1gtgzw5KcyUjKo-VSg", "review_id": "fXHzQAUjOkOt7Ey10vKfAg", "stars": 4, "date": "2012-03-19", "text": "Nice ambiance, nice authentic spicy chinese food. \nAs good as you can get here in Arizona; it aint L.A or San Fran, but does a good job to satisfy the craving for real chinese.\n \nOf all the Cofco asian restaurants, this is one of the more presentable ones to bring business clients or a new date, if ambiance is key to scoring positive brownie points. \n \nFor some bizarre reason, on the weekends, it is filled with asian-women/white guy couples, which strikes me as hilarious. If it wasn't for this, I would eat there multiple times a week. \nAsian woman orders from real chinese menu; her white guy orders from chow mein menu.\n \nSide note: Get a grip; asian women check each other out, and usually not in a nice way--like in a sizing you up-comparing you to herself way--so I usually end up losing my appetite when I catch one of them staring at me (and my man) and whispering to her white guy or her girlfriends about me; yah, I understand the shit you say about me, asian girls, because I speak your language too, hello!\n \nSo I compensate for my chinese food cravings by quick carry out. Works like a charm every time. I'm happy, my own Cracker is happy. Owner gets lots of business and is happy. \n \nWe all win.", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Jp2x0JOXVdRBthyHoo6NWQ", "review_id": "mbhXq3Tg4VFOEm3kWpdhvg", "stars": 5, "date": "2012-09-06", "text": "GET. THE. CIDER. Just do it. I'm a huge cider fan and this is the best I've ever had. Not syrupy sweet, and nice and cloudy so you know that it's been brewed from actual fruit and not some secret sugar concoction. Their master brewer also brews all of their sodas. Grab a taster for the sodas and see which one you like best. My favorite is the vanilla. The staff is ridiculously friendly and willing to answer any questions you have and will have a nice chat with you if they're not busy. \n\nThe sandwiches are quite tasty as well. I've had the Mario's Monster Mill-wich, and my boyfriend has had the tuna and the French dip. All have been really good, but if you don't like a lot of feta on your sandwich I would suggest letting them know because they really pile it on (Mario's)! I love it so it was no problem for me.", "type": "review", "business_id": "zw2iJahOnSxlzmRlF4al6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y9YW-BpDACEGytpX3NaeRw", "review_id": "xcGov-ej12psx--6WmQVhg", "stars": 2, "date": "2008-08-12", "text": "The desserts are a little bland and are pricey given the small size. I've had better Japanese bakery items elsewhere.", "type": "review", "business_id": "IW9yHeqnFCEbO5s1UCrqeA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "XJEyJwH3GIkfNP-Voy-8gQ", "stars": 5, "date": "2011-01-06", "text": "I got the best KEEN hiking boots on sale here and they have a great selection of dog frisbee and dog boots and dog toys. I like this location, nobody bothers me and I can mill around without anyone bothering me.", "type": "review", "business_id": "ptH216EFNFLvF32EN-9tmA"} +{"votes": {"funny": 6, "useful": 5, "cool": 5}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "mrQDzovhhj5CPfHe2IeeKg", "stars": 1, "date": "2008-06-28", "text": "No offense to everyone who gave this place 5 stars, but the Tempe Cinema staff needs a swift kick in the ass. During school hours, this place is regularly crawling with hooligan truants. Maybe those who run this theatre want to ensure they will have a steady stream of staffing options from the dropouts who use it as a hideout. Losers.", "type": "review", "business_id": "gfhO1Q1c7QCigu7waVpeSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SstDhzlTcp7gvRum2KHwbg", "review_id": "NiYiXSGSMqd_JehbwG7txA", "stars": 5, "date": "2012-09-06", "text": "Everything here is awesome! I love the Kung Pao shrimp and the Hong Kong soup which has wontons and and egg noodles they make in house. The soup they bring out before your meal is delicious as well. Everything tastes made to order, always fresh never greasy, and is presented beautifully. The staff is very friendly and attentive. Definitely try this place! It's a regular lunch spot for my office. They also have great lunch specials. :)", "type": "review", "business_id": "IwhkOh4fPsiU7TThIsz6Og"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "7P9okhRRYG0hz02Fk7tRMw", "review_id": "2eYqEetOoqE0sfZ7l5ruHg", "stars": 5, "date": "2012-07-28", "text": "They have anything from salads, pitas, wraps, burgers, and wood fired pizzas. Although this isn't a 100% plant-based restaurant they pride themselves on having many vegan options. Not only are there options, but upon visiting their site I found a table of what items are vegan, what aren't, and what makes them non-vegan (which is always nice to know). Great to have so many vegan options that are spelled out on their website. \n\nWe expected a counter-service experience but were pleasantly surprised when we entered to find it was an actual sit-down restaurant. The vibe was a classy yet laid back, youthful feel. Most of the servers were high school or college age and wore regular street clothes (think Urban Outfitters style). I loved the laid back atmosphere of the servers even though it's a sit-down experience and really enjoyed the color scheme and tin plated ceiling.\n\nThe food was absolutely FANTASTIC. Oh my. For an appetizer we selected the garlic dip with two pitas. The garlic dip is a mix of olive oil, lemon juice, fresh garlic, and smashed potatoes. If you love garlic, you'll love this.\n\nMy husband chose the Falafel Pita which was topped with cilantro and spices, mixed greens, tomatoes, onions, pickles and tahini. He was very happy with his choice, although next time he'd ask for no onions.\n\nI went with the Veggie Garden Wrap that included zucchini, broccoli, cauliflower, eggplant, yellow squash, carrots, onions, tomatoes, brown rice, mixed beans, ginger, herbs and garlic.\n\nOne thing we quickly found was that our entrees were HUGE. This is not a complaint in anyway. However, next go around we may share an entree. Either way, this visit, we had leftovers to take home for lunch the next day.\n\n Will definitely return.", "type": "review", "business_id": "qwmHm3s8p7J12AIY6Co8HQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "fKYP2YKR5yp_cNHPzBxxKw", "review_id": "1AqE_z07w-kufK2wYA245w", "stars": 3, "date": "2011-05-08", "text": "Sorry, I really just don't get it. I didn't hate it and I'm not hating on it now, but I don't see what all the fuss is about.\n\n* Pizzas slapped together resulting in uneven, soggy crusts. Our party ordered 5 of the 6 available.\n\n* Psychological warfare of having to wait forever for just a few tables maintains an air of pompous superiority that tricks the famished patrons into reporting the pizza is a lot better than it really is. Waiter actually boasted about the 3 to 4 hour Saturday night wait, which we got around by having reservations!\n\n* Bottles of iced tea and other drinks bought in bulk rather than any alternative that would make more sense.\n\nGood? Not bad... Best in the Phoenix Valley? HIGHLY debatable, but personally I really can't say that I think so... Best is the USA? Impossible, there's just no way.\n\nLGO is better. Cibo is better. Spinato's is better.\n\nMost hyped? Most definitely.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "SRsofHYNavGfAuDtIJ_n2Q", "review_id": "Zq-p1AU512qs0tHDjB_0mw", "stars": 4, "date": "2008-09-07", "text": "Great sandwiches at reasonable prices. The bread is good, the au jus was flavorful and not too salty, and the sausages are made daily. It was nice to find a place to get great sandwiches. The line moves a little slow, but it's definitely worth the wait. I had the italian beef and my friend had the sausage, both were great.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NzlVca80ziZxANoTXxHfvQ", "review_id": "o95pGHKcvdzhor3au9M1ng", "stars": 5, "date": "2012-06-21", "text": "NO BETTER BREAKFAST IN AZ. From scrambled eggs to their blueberry pancakes. Top end. Yes, you pay for it. But it's special, like Valentines Day. Just pay out and enjoy the treat. Lunch is also nice, especially if you get a seat outside so you can people watch. Great wraps and sandwiches. Haven't tried anything later here yet. But I saw their happy hour specials and it is on my TO DO list.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SDwqxiWJCQqcXCCqysorow", "review_id": "xRB_UlukHW8Na6agxVHPEQ", "stars": 5, "date": "2011-04-24", "text": "Great tasting frozen yogurt, excellent customer service, very clean inside. Healthy choice for a sweet treat.", "type": "review", "business_id": "XhdMiSn0b3O929YpjVBMHw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uF0T47DU-I4rzgnTcCUkbw", "review_id": "nRpDYEtOhbXL2AISgF-8CQ", "stars": 5, "date": "2010-06-10", "text": "If you are looking for top-notch produce and organic goodies then NGD is the best. Pricing can't be beat and it's delivered as well. Always great quality, and a large selection. Easy ordering process and awesome customer service. One of the reasons I am sad not to live in Scottsdale anymore.", "type": "review", "business_id": "Z_KjmNp3sMwodUBTSgFZGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EdTOfyShPKmil_A-IWdTPQ", "review_id": "18gOxMXn3FHwzlx4dGAonw", "stars": 4, "date": "2011-09-10", "text": "Nice atmosphere, especially outside patio. Strange to see some people dressed gym casual on a Friday night, as well as some kids. They poured Chimay into a pilsner glass, so bad marks for that. Falaffel appetizer was nice, but Falaffel itself was too finely ground and flavorless. Salads were really outstanding. Enchiladas, also, were very good. Thai short ribs were pretty good as well. Great dessert options. Overall pricey, but fair.", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sgKj8sfJ0VqU_a4oxEk3OA", "review_id": "l2wR_gIHCfL8Id_PG6fLqg", "stars": 4, "date": "2011-01-25", "text": "This weekend was my first time back since they have done the huge remodel and under new ownership. This place still has the same comfort feel to it and is cozy. Havent tried the food yet but enjoyed the drinks and the ambience in the bar. Hopefully the food is better than what it used to be.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "3SIjo6vQIvxwHKEpIHfaBg", "review_id": "Apmt0bquoBr47PjWFUx1lA", "stars": 4, "date": "2012-09-16", "text": "We get a date night rarely throughout the year, so I try and find something new when ever we get that chance. Once we made it into the restaurant we were both quite pleased with the decor and the atmosphere, little did we realize that this was just the beginning! The wait staff here is beyond friendly and knowledgeable, our server Sam was what you would consider first class in every aspect. His attention and knowledge started our evening off in such a way that I feel indebted to him!! Then comes the food....! We had a four course meal that not only included a wine pairing for two of the courses, but also a pre-dinner cocktail. The food was exquisite, the pork chop with the kale and pickled onion main course was grand, and the paired wine could not have been better.", "type": "review", "business_id": "4r9-iKOagzn5oUvPE9Bz4Q"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "btlLxxNXWA6WQUezOfpW7w", "review_id": "qXSvJMsgP9c6BBZuxNbaxA", "stars": 2, "date": "2012-09-05", "text": "Sky Harbor is one poor gateway to the city of Phoenix and the Valley of the Sun. It is outdated, super crowded, it feels dirty and it is the home of US Airways, the biggest carrier in and out of this airport.\n\nTerminal 4 is configured rather poorly. The terminal reminds me of a backwards E, like the second E in EMIN3M, except that there is another prong to the backwards E. The concourses are not spacious at all, the seating limited, and consequently the crowds spill out into the walkway areas.\n. \nTo go from one end of Terminal 4 to the other necessitates using really narrow moving walkways which are on the spine of the E. It is really hard to maneuver if you want to pass the throngs given the limited space. The distances are long, the bruises will be many, either to you but most likely given by you as you negotiate your way between flights.\n\nThe other thing that must be mentioned is that Sky Harbor is not a business person's airport but rather a tourist airport. I think that contributes a lot to the chaos. When an airport is full of amateurs, like Sky Harbor, there are bottlenecks of humanity in all the wrong places. Further exacerbating the tourist nature of this airport are the snowbirds who flock here so that they can seek skin cancer in all months of the year, not just summer in their native habitats of the Upper Midwest.\n\nGet going on the remodel since it is long overdue and make sure you take in mind the tourists and the business traveler when updating this airport.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K6MrbZeqKG35ZiucFfucvw", "review_id": "VmlUmx2xl6o7bkFuBa_zmA", "stars": 4, "date": "2011-04-11", "text": "I frequent this joint often to relax outside on the patio and drink wine and/or beer. The service here is outstanding. My vegan friend particularly likes this place because they make her vegan friendly pizza. As a carnivour I love their italian sausage. And for all you cheese lovers their mozerella is made fresh daily! I am more of a beer fan than a wine person so it is worth mentioning they have an extensive beer list, including quite a few beers on tap.\n\nThe sign above the patio says 'Patio and Wine Bar', so it can be easy to miss if you are looking for the full name on the sign.", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UWhxz-hO6cYy1Y2pLowrJQ", "review_id": "ZfEemRGcK5n1rCaRyNnjCw", "stars": 1, "date": "2010-06-02", "text": "I was really excited to try this restaurant, and tonight my husband and I came and ordered food to take-out. The service was very friendly and the store was clean, cute, and colorful...but the food was very disappointing. My husband ordered the curry chicken, and although it tasted okay, he literally almost choked on tiny bones in the meat 4 or 5 times. I asked ahead of time if they used white meat and was told yes, but the \"Calypso Pasta\" I ordered had tiny, tiny pieces of dark meat jerk chicken...instead of the boneless white strips I was expecting, and really it was just mediocre. I'm bummed I wanted to like this place.", "type": "review", "business_id": "Tsff0UUVgrnawjI_xd2cKg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7cR92zkDv4W3kqzii6axvg", "review_id": "us79WZcTQ5lH_EticmhReA", "stars": 4, "date": "2011-01-22", "text": "Joined @SMUNCHPhoenix at @GalloBlanco.\n\nFor my first breakfast at Gallo, I ordered Chilaquiles Verde, and my girlfriend had the Chorizo and Eggs.\n\nWe were both very happy with our choices!\n\nThe chilaquiles was delicious, with the crispy corn tortillas providing a nice contrast.\n\nThe chorizo and eggs were definitely in line with what I consider to be authentic.\n\nI am definitely a fan of Gallo, and will return as often as time and money allow.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3XyuBpNbvrHukaEJyWBAsw", "review_id": "KsWX2prP6L6BopYqpxP3pw", "stars": 4, "date": "2009-01-19", "text": "I go here often. This is my kind of place for a leisurely coffee and roll. Big, open, airy, warm atmosphere. Only downside is it gets too crowded. So find your own place for coffee, this is mine!", "type": "review", "business_id": "B54ozdLlH5ozkwnweskhYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gTs3AALeNJhSbVrgamKQyg", "review_id": "dn2T5q5s4JTef4F31e-hkg", "stars": 4, "date": "2011-11-06", "text": "Bring an extra sleeve of balls when you play here for all the water hazards! \n\nI showed up today (Sunday) and was a little thrown off by all the people at the bag drop wearing football jerseys. Especially when the people wearing jerseys were the ones grabbing my clubs and putting them in a cart. Thought I was at Buffalo Wild Wings! \n\nI thought this was a very nice course but the reason it didn't get 5 stars was because it just didn't have that top notch feel that other Troon managed properties have. The greens were very inconsistent; some really fast, some really slow, and some were bumpy. The grass on gold was extremely long and it was very easy to lose your ball in the rough because the grass was so deep. Blue was cut much better but I had a couple complaints with holes 7 and 9. If you're playing the blue course in the late afternoon, you might as well close your eyes while teeing off at 7 and 9 because the architect made the course so you look directly into the sun. \n\nI sneaked on today for $44 bucks and was very satisfied with what I got for the price. If I didn't live 15 miles away, and could always get on for $40 I'd probably golf here a lot more. If the green fees are above $50, I just couldn't justify it with all the other nice options around the valley. \n\nOn a final note, I was EXTREMELY impressed by the staff and how friendly they were. I was not only asked how my round of golf went, I was also told how glad they were that I came out, and finally that they really hope to see me again. Definitely don't get that kind of service too often!", "type": "review", "business_id": "1zPhQ3_jdmQTn9_--IbYLQ"} +{"votes": {"funny": 22, "useful": 17, "cool": 18}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "YlqYJjUepiBlZV6GveWuRg", "stars": 3, "date": "2010-04-13", "text": "I was watching a Judge Judy show today and JJ was really giving the business to this loser (you know...had bad credit, met a chick, she took a credit card in her name, he didn't pay her back, she's shocked, now they're in court)...she was RIDING his ass. It was awesome. Finally she said \"what planet are you from?\"...Dude with mullet bows his head, darts his eyes from JJ and says \"Why, I'm from Wisconsin Judge Judy\".\n\nLMAO!\n\nCulver's, by way of the Dairy State, has settled on Camelback and Central. Rickie and I ate here after seeing Date Night on our \"date night\". Thought it was a cute, innocent, 1950s way to wrap up our afternoon. You know, kinda like Richie and Laurie Beth. Please, I need to check ID's on this reference. I'm sure Rickie wouldn't pass this one!\n\nCulver's was very clean with well trained and polite employees...think In N Out. We ordered the famous Butter Burgers along with various sides. Burgers. Yum! Sides. Ugh! Would rather have had Ore Ida. Cheese curds had a thick, icky overcooked batter with a Q tip sized cheese curd, fries were limp and sad (kind of like Jesse James career and life now) and the chicken tenders were standard fast food fare.\n\nRoot Beer! Outstanding! Smoothie was OK...probably should have went with a good old fashion malt. But who knew?\n\nWe had a fabulous booth across from a large open window with a fantastic Sunday breeze cooling our curds. \n\nI would go back for a burger and root beer. I might even wear a Packers or Brewers t shirt...just to see if I get some free stuff.", "type": "review", "business_id": "ykKSshfa9ANCZCuvM2LaWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ILGInX_7PgGBnur3d0Vx7Q", "review_id": "xVsnBJTFX-BsjJKi0yoMtA", "stars": 5, "date": "2010-03-14", "text": "I can't say enough good things about this place. \n\nQuick disclosure: When I was working for the Downtown YMCA, I discovered Local Breeze as I was searching for businesses to participate in our fund-raising campaign. Local Breeze was totally down to contribute. So on top of getting that delicious meal, know that your money is largely going back to the community. Awesome.\n\nBut the food (and drinks) are really what keep me coming back. The coca-cola ham is delish, and the serving sizes are pretty decent. You definitely get your money's worth. And there's a reason why my profile says that my \"recent discovery\" is \"spiced cottage cheese from Local Breeze.\" That was written months ago, but I don't think I've discovered anything quite as amazing yet. And I normally don't even like cottage cheese.\n\nThe last time I went was for my bday dinner, and again, it didn't let me down. We had good food, good drinks, and a good time in general. The bartender mixed up this killer cucumber martini, which sounds weird, but if you're a martini fan, go for it. If you're feeling less risky, you can't go wrong with their mojito.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 3, "useful": 5, "cool": 7}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "nG1b-1CxsE_ir-s4k6m0Bw", "stars": 5, "date": "2012-04-29", "text": "This place is literally within walking distance from my apartment, yet I have passed by it daily. This morning I was hungry for breakfast and had a lot of things to do so I thought I would try something close. I have noticed the parking lot is usually full, so I thought it must be good. I had no idea what type of food they had or what to expect.\n\nIt was Sunday morning just around 9:30 and I was fortunate to be able to walk in and instantly have a table. The server was very friendly and she checked back often always refilling my coffee. The menu is a little newspaper and it's a bit overwhelming with many options, but I finally settled on the volcano. It is described as three pancakes, 2 sausage links, 2 bacon strips, and an egg. The pancakes are three different sizes and stacked to create a volcano with the egg on top. It was under $9 and I was surprised at the size of it! I attempted but could not finish it. The big pancake was left uneaten. They do have a smaller option for around $6 and that might be the better way to go unless you have just returned from a month long trip through the jungle or plan to share with someone. \n\nThe server continued to check on me and even offered up a to go cup of coffee. I don't know how I have overlooked this place but based on the experience today, I would put it right at the top of best spots in town for breakfast. I will say come early because by the time I was leaving the lobby was full, people were milling around the parking lot, and the wait to be seated was 15 minutes.", "type": "review", "business_id": "1F-pelV0fTduYV_vCrvjLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FVSpUG2tCifMcs2sFTTzqw", "review_id": "_qTKFI_sRXSZ_D5m9sJ76A", "stars": 4, "date": "2012-07-14", "text": "Friendly and knowledgeable staff! They even have a nutritionist on site which shows their dedication to promote healthy living! I think it's great that they make the food daily and have appropriate portion sizes. I gave it only 4 stars instead of 5 because they didn't have as many vegetarian/vegan meals as I would have liked. What I did purchase though tasted delicious! I look forward to going back and checking out their meals again!", "type": "review", "business_id": "4hNjK7TpXjb86rfLDvL1lA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "zNvGIj1LefuBnBwCuqAGjg", "review_id": "iXiDZ0_T29qzmGkhhj1izA", "stars": 3, "date": "2008-05-25", "text": "Chino is a cool place to take someone who has never been there before. It's strange and fascinating. I live fairly close by and the food is fine, but it certainly doesn't blow your mind. It's the kind of place that I get that Chino craving then I don't need to go for another 6 months or a year. The snickerdoodles are great and come with the meal. Expect to pay close to $10 a person if you get a drink with your meal.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rO3WEI9L-_deUR9-JHuNQw", "review_id": "_6LWiRnz0RgKwlhf9eQ-fA", "stars": 3, "date": "2011-10-27", "text": "I personally love the other crackers so much more. I think it's the better customer service I'm never really impressed with the services here. It's either okay or a little below expectation something always happens when I come here. Something is forgotten or the wait is ridiculous just for the check to be picked up to be paid for or something. I can never tell you because it always changes. Food wise...good. this last visit the French toast was NOT as amazing as it usually is. So kind of bummed about that. And my skillet I must have ordered the wrong thing because I usually just get the skillet with carnitas eggs and potatoes this time their was chorizo in it so it made my potatoes soggy:( those things are another reason for dropped stars and also because I dont care for Chorizo and all its oils. For food and service to be off is unusual. But it happened so i always remember if you want the best you have to go to the best and this place is not it. Go to the one in mesa behind Home depot and beside Holiday Inn!", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U5C5ao1yVTDUfVBKfTYyUA", "review_id": "SLQ_A2o9wQHAMYcnuFZTvA", "stars": 5, "date": "2011-11-21", "text": "So perfect. The atmosphere is just spot on. I love going whether it's just to grab coffee and leave or if I am there studying or just want to chill. I love their Apple Harvest (?) salad. So delicious and beautifully prepared. Baristas are always very nice (especially Brianna!). Can't wait to hopefully become a regular and attend some of the live music events they put on every week!!", "type": "review", "business_id": "sF3k_ZSndah1OwduVlb8_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rIfvWHPWusWqff32L2D1BA", "review_id": "HHvUn1TB9XjtvL7qxWT7yA", "stars": 4, "date": "2011-06-20", "text": "Good & fast food. Prices are fair. They charge a fee for Bank cards.", "type": "review", "business_id": "PzbEhqo8uz2D-3OchHIPzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ewIzFWba8q9PBBZzNeDGdw", "review_id": "9qnmcoT5rsap2O6-MCPfbg", "stars": 3, "date": "2011-07-10", "text": "For the price, Xona is a clean, beautiful spot in North Scottsdale adjacent to the upscale Princess Resort. Place was virtually empty during our recent two-day stay, so we had a tranquil pool all to ourselves. Unlike some of the other reviewers, we received great service from the staff. Food from the onsite restaurant was tasty and convenient. Surrounding area safe for walking or jogging. We stayed in a king suite...comfortable and roomy. Thought this place was a bargain.", "type": "review", "business_id": "VmRmj-IspfzXZdVYCaOOMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ssrs_xgmEZh39R_Gk9QxpQ", "review_id": "cNIaPe1Cg4uHfEfa3meiWA", "stars": 4, "date": "2011-05-18", "text": "A yummy-in my tummy cozy spot! I met a friend for lunch here and was pleasantly surprised. The food is full of flavor and very reasonable. They give you huge portions, and the service is very friendly. I got a salad and the caprese bruchetta. What a perfect combo! The bold garlic taste of the bruschetta, washed down by a light salad. My salad had the perfect amount of dressing. I wish we had this place in So Cal, I would definitely come more often!", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 3, "useful": 8, "cool": 7}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "MfsiHiRvjITx6PN5dF0SKw", "stars": 3, "date": "2009-06-10", "text": "Breadfruit is a cool spot. The interior of the place is well decorated and they can only seat about 15-20 people, making a nice, intimate ambiance. I really appreciate that they serve locally grown organic produce and that their chicken is all natural and raised cage free. Any addition of a Jamaican restaurant down town earns at least three stars in my book. We arrived at 7:30pm and were the only people there throughout almost the entire meal..\n\nWe brought our own bottle of wine and there was only a $5 corking fee, not to shabby.\n\nWe started with the plantain and avacado spring rolls, I really liked that wonton was baked and not deep fried, the presentation was nice, the mango chutney was fresh but the rolls themselves lacked flavor. I really wished they would have paired some other fruit or spice to add more contrast to the dish. \n\nFor my main I got the jerk chicken and I was a little disappointed. Again they did an excellent job with the presentation, but the corn was mushy and what the jerk rub lacked in flavor they tried to make up for in spice. I like spicy, and can handle a lot of heat, but heat shouldn't overpower flavor...\n\nThe chef/owner came out and asked us how we enjoyed our meal, and explained his philosophy behind the food. The service was excellent, but in comparison to some other Jamaican places I've been, it really only warrants 3 stars (sorry)!", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8DTPxXrbbSB0HafilA2IrA", "review_id": "gZFxtexyA9cCxDVy7z8pCQ", "stars": 4, "date": "2012-12-06", "text": "I took my son who has been living in Sweden to Angels since he likes good beer. And he was noy disappointed. The price was right for the quality of the beer. We also enjoyed the food I had the sweet potatoe tacos and the were great. He loved that so many varieties of good beers were on tap. Definitely going again especially if all three of my son's are home. Good beer good food good people", "type": "review", "business_id": "41j3GB7M-Lwq284Pfb9zgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "CWyyvYCV-wzDjJVGbk5Mtg", "stars": 4, "date": "2008-05-20", "text": "Half of Bottles of Wine! Open 7A to 12A 7 Days a Week.\n\nMy Florist displays one of the Valley's largest sings and salad menus. The story of name comes from an old flower shop and the current owners of My Florist continued to use the sign and name.\n\nThe fresh products, from the bread to the veggies and fruits equals four stars to me. The service is friendly and the servers know their stuff but I have never been blown away by the service operations. \n\nDessert,\nAmazing, This is a place that I will drive to just to have a dessert and perhaps some wine to go along with it. The place takes reservations late so don't be afraid to stop in late. \n\nLIve music Tuesday - Sunday. Nicole Pesce plays the piano W-S ((Please Send me a message if you know of any other restaurants with live music))\n\nThe relaxed atmosphere is created by a very open dinning area. And don't forget to go next door during the day to visit Willio Grocery. \n\nI'm amazed how different the reviews are for the restaurant. Please see for your self and see why so many people yelp (good or bad) about the place.", "type": "review", "business_id": "vSWEXsXmJw5ozuF4zqE9ng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yoQAZWDdBW3kQH7geFEoWA", "review_id": "oC3NTNCTczDMrYQeTQO0Hg", "stars": 4, "date": "2011-02-22", "text": "EXCELLENT! What a fun time we had. Hubby and I went out for my bday celebration and were so glad that we did. What a fun and comfortable experience. We walked in and were greeted right away. We had made reservations but there was absolutely no reason to. It was a Monday night and really @ 7:30 there wasn't a whole lot going on. \n\nAlec was our server. We opted to sit in the bar area. Same menu available. We started off with the Haas Guac and the Green Chile Stew. We initially made the mistake thinking that the stew was going to be like the kind @ Roaring Fork. It's not. They would do themselves a favor if they called it hash. I suppose hash is not as appealing as stew. Nonetheless it was good. The little fry breads that they give were not my favorite but it was good with the chips that came with the guac. I had the pork tenderloin and hubs had the mac and cheese with chicken. Both good. Really good. \n\nIt would have been a five star review but there was something weird tasting in my diet coke. Like soap or something. Hubby thought maybe it was because they probably didn't sell a whole lot of soda product. I dunno. Could have been the straw, the glass, syrup ratio to C02. \n\nAnd by far which is probably the best part of the restaurant. THE BEST CHAIRS in the world. So comfy. So plush. You could sit there for hours and never leave. IF you had them in your home you would never leave. EVER!!!!", "type": "review", "business_id": "VKNl2-aF4n1x7lPVyU-Mag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "Q4xhIcWf9gqlmQsEcIRclw", "stars": 4, "date": "2011-08-19", "text": "Great mall. has pretty much everything.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yk3kUEPdNDuIcwdUF2yaNA", "review_id": "Kd53qk6QX2RxL8wt7GfB2A", "stars": 5, "date": "2011-10-29", "text": "Excellent customer service, super clean, and the food's not bad at all. Despite the fact that I asked for extra mayo on my sammy, but got NO mayo, was a little annoying. But, for some reason, something told me to pick up some packets of mayo. So I was in the clear and my annoyance never gained traction into anything that prevented me from returning. That, and the sandwich was pretty yummo. They also give a pickle and a free bag of chips to go with it.\n\nI do not, however, recommend the chocolate chip cookie. No bueno.", "type": "review", "business_id": "di2QHs2SrY0XFHcfAq_k2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ekMRQH5dkzB2mglNBcNh7Q", "review_id": "P9eUtYCx4TQCdAwZTd0bpA", "stars": 2, "date": "2010-10-15", "text": "The customer service here could be 100% better but then again not much around here is anywhere near the greatness of texas customer service!! Was not greeted when walking in and waiting for about 25 minutes!", "type": "review", "business_id": "8vLEHHZJ-dk8M32bYti7eQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "04IL-BzBN8WdOQEtYVoZ4Q", "review_id": "xnnqQAkpbRx9KrTyPDPmbw", "stars": 1, "date": "2012-08-11", "text": "From my door, it's a five minute stroll through the greenbelt to Dukes. They have a nice patio. They have enough TVs to show all MLB/NFL/NBA games. They have plenty of shuffleboard and pool tables. Yet, I've only been to Duke's a few times and I am not going back. This place is just bad.\n\nMixed drinks are poured short and use cheap mixers (such as bottled sour mix for margaritas). They offer a pretty basic beer selection. I think PBR pitchers might be more modestly priced, but that might be only when they're on \"special.\"\n\nThe food is pretty bad, even for bar food. And pricey. Sure, the menu is gigantic and I've tried many different items, but I didn't find anything good. Everything seems to be made from \"freezer to fryer\" or packaged products. I'm not exaggerating: the burger and fries for about $8 is a thin, previously frozen patty with a handful or supermarket fries. I could go on about salads, sandwiches, and ribs. In the same price range, you can get a much better version of anything on the menu at Four Peaks or Zipps or even Devil's Advocate.\n\nOne of the owners was there on a few occasions. I guess being the boss of (and drinking in) his own bar is some sort of dream of his. He treats the place like his kingdom. He'll ask patrons \"how is everything?\" and get mad at them if they have anything negative to say. I feel bad for the rest of the service staff; they seem to be above average, but when the overall situation is this bad it just doesn't matter.\n\nIn this city, sports bars are a dime a dozen. I'd rather go elsewhere.", "type": "review", "business_id": "qb4PzVr19bXXLBf71dd5kQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "YuY8MA5BaDpXROleb0RI2g", "review_id": "d3gYkRfYRlt2NTV-7eVzpg", "stars": 1, "date": "2010-10-08", "text": "Wow?! Is this the new Barcelona?! Yuck! Old scuzy men and middle aged women with fake boobs that are falling out of their painted on dresses. All bars were completely under staffed on a Friday night. We waited 7 minutes at the front bar until being ignored continuously and we became so frustrated that we made our way to the round bar and it seemed just as understaffed. What's the point of only having a few bartenders on probably the busiest night of the week for bar-goers? We even approached the blond manager to ask for service and she was completely rude and had a total lack of desire to help us. We will NOT return due to the lack of service and efficiency. This place has GOT to staff more bartenders and needs much more help. Welcome to North Scottsdale Barcelona.", "type": "review", "business_id": "QCxXYA13PtkD3wec47_r8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "rjFP1FUaabaAzCZMaGYxkQ", "stars": 4, "date": "2011-09-05", "text": "I went to the one in Mesa on Baseline. I loved the vibe, service, and decor. They have witty jokes on the walls and the whole place makes you feel like you are at a party on the beach. We ordered the carne asada burrito and the mushroom burger and the sweet potato fries. We got the dessert pear and blackberry lemonades. You get 1 free refill so we tried the blood orange and the guava flavors after. Everything tasted great. I would def go back and get the mushroom burger. The prices are super cheap and the portions are huge.", "type": "review", "business_id": "Xr2Qe7Se0WyH68nOxSn5aw"} +{"votes": {"funny": 3, "useful": 6, "cool": 1}, "user_id": "ZUx-B52hGRhmeUDVukmjrg", "review_id": "EqwQIojP46MwQVAwHpUrNg", "stars": 2, "date": "2012-09-10", "text": "I was not a particular fan of this place. Went on a Friday evening after work. A friend wanted to try it because we always enjoy supporting new, local places.\n\nThey do have a very large selections of beer but the process is very confusing. All of the beers on tap are written on a very large chalkboard above the bar. They use several different colors of chalk for each selection making it very hard to read. It may be easier if they pick one color of chalk for each type of beer, that way it is easy to find what you want. Or have #1-5 be one type of beer, #6-10 another and so on. My boyfriend spent so long trying to find a beer on the board because of this. Two of our friends were so overwhelmed with the way the selections were presented they just asked the server to surprise them with a choice. \n\nThe acoustics in the place are terrible. It was so loud inside that it was hard to carry on a conversation at the table. \n\nAlso, no happy hour. This would be a great way to draw in an after work crowd.", "type": "review", "business_id": "41j3GB7M-Lwq284Pfb9zgw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "g84VjttN28PWiv_WtdhnSQ", "review_id": "SC1ekCmjhYXbCvp1GBWAdg", "stars": 3, "date": "2007-11-25", "text": "My goodness this place has gone downhill. Yeesh.", "type": "review", "business_id": "5Feaj6aixO_QxKFnkHf3xg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jzNujHInKuFQCyf7UECIjw", "review_id": "VNRLp4NtaMJ5j5eEhqpWgQ", "stars": 4, "date": "2012-06-06", "text": "I was not a believer, but one of my friends said I would not be disappointed so I gave it a shot Happy Hour in the bar is $5 a person per section ($5 cheese, $5 chocolate, $4, salad, and drink specials as well). I was super surprised, it was all really good of course, and I was FULL!!! Also, you can have more bread and dessert for free if you have and of your cheesy or chocolatey goodness left! Took a lot of time, I think we were there for like 2 hours but I would do it again.", "type": "review", "business_id": "FOfhEC6rN23RQaUlsR2byw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0n6o5WIeiMUDtq3ayL3I-Q", "review_id": "z-7knCp-Roz694OZwAPcKw", "stars": 5, "date": "2012-01-02", "text": "I traveled to Phoenix often for work from the early 90's to the late 00's and the first thing I'd do leaving the airport was to hit the Pink Pepper lunch buffet, hence I've never ordered from the menu or had their dinner service, but their lunch buffet was awesome! Very reasonably priced, including an iced tea. It may not necessarily be the most authentic Thai food as I think they reduce the heat a bit but the flavors were excellent and the variety was good. Loved their eggplant dish (can't recall the name) and their crispy chicken with the creamy sauce, and of course the usual curry sauce dishes.\n\nIf I'm ever back in Phoenix again the Pink Pepper will be one of the first places I go.", "type": "review", "business_id": "Nz_AasmpsQ8MLSqhCTRVoA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "E9JBw3ztKUjs9A1sf7a5AA", "review_id": "l9xhdOFY4MerjyzXIVa7xQ", "stars": 3, "date": "2008-04-14", "text": "I feel bad for this park. Its nice. Really nice. The only problem is its in Phoenix where it is hot like heck. That means the roof is always closed. And with the roof closed, it almost feels like you are watching baseball inside of an auditorium.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 3, "useful": 8, "cool": 7}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "krz0GyZJ1HaGfzrGjnbF6Q", "stars": 5, "date": "2009-05-27", "text": "OK, being from Wisconsin (the land of the \"great lakes\") I was COMPLETELY surprised to be told that, yes, there are lakes here in the desert of Arizona. The Lake, Saguaro Lake, is a man made lake originally built as Stewart Mountain Dam...even so, its beauty is equal to those you would see in the glacier regions of the Midwest. I was amazed, frankly, at how beautiful this tour was. Sold for $18 for 90 minutes, you get your money's worth. But that is probably not what you want to hear...\n\nThe \"event\" is a combination of 1) the scenery, and also 2) the charm of the paddle boat itself. The boat is quite large with seating for probably close to 75 people! It's an event that you could share with family, but I happened to be there with friends. Currently, it's a pretty mellow type of event (great for Mother's Day!), although I am told that they are hoping to exploit its benefits to include comedy shows, Jazz ensembles, stargazing, and a variety of other events.\n\nP.S. They also advertise that you can rent the paddle boat for company picnics, weddings, and the like.", "type": "review", "business_id": "INHDFn2183h8xMCDj9B1iQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gc4rNAgbGydNMAPJ85FZag", "review_id": "G7f_vWLGMfkDenOTmamd9A", "stars": 4, "date": "2010-02-12", "text": "There food is pretty good here but they have a lot of different brews, I tried a pumpkin beer witch was very good. This place used to be real quite and unnotice now it's always busy and very crowded. It is located away from mill ave by about 3 miles so if your trying to bar hop make sure you have a dd and stop by this place.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "meBgdnN_Jw9MOwz3ZzqQEA", "review_id": "SZ3vNmTgzm-NbDDBDjt7zw", "stars": 4, "date": "2012-06-16", "text": "Been to a few different locations and this one by far is the best one. The food seems better than the others.", "type": "review", "business_id": "jqZKv-7F54guDLalXEjHxg"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "flpiiXKS4JmP6Yw5PLgj2w", "stars": 4, "date": "2009-07-20", "text": "Perhaps a bit on the pricey side, but sometimes you pay for atmosphere. This very sexy and trendy joint is located at City North (next to Blue Martini). I ordered the #1 sirloin burger with carmelized onions, gorgonzola, crescenza (soft, buttery cheese), arugula & thousand island dressing. OMG! It was massive and juicy and made me lose all dining diplomacy as the juices dripped down my arm! My friend built his own w/ hickory bbq sauce, cheddar and bacon. \n\nOn the side we had onion rings, sweet potatoe fries mixed w/ reg fries. Errrr....lemme make sure my gym membership is still active!! LOL\n\nPersonally, and I know this will cause a small uproar, I think the burgers are FAR better than Delux! I never understood the Delux cult following anyway. There...I said it! :)\n\nI even endulged in the Guinnes milkshake (Guinness beer/vanilla bean & chocolate ice cream)! You know the saying don't knock it til you try it??This would be one of those times. When's the last time you had a sugar high and a buzz at the same time off a desert....hmmm?? \n\nBon Appetite!", "type": "review", "business_id": "UIfORCz28cEGMr_9p0eJ5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "svlNoU7zTA6VmVsvtIedKg", "review_id": "EducGFK7bq0xWhdHLsd32w", "stars": 1, "date": "2012-09-23", "text": "So, what kind of place serves chicken fingers and NO Ranch dressing?????? The only sauces they had was honey mustard and \"Canes Secret sauce\" Can I say EEWWWW!! I thought that the sauce tasted terrible. I am not too big a fan of honey mustard but I do On occasion eat it if there is nothing else And that wasn't even good! The coleslaw was awful also. I do have to say that the chicken fingers were very juicy but also very bland. Those were the only 2 items that I tried, not that there were really any more items on the menu, Texas toast? And Fries I think?? Overall, I would never go back.", "type": "review", "business_id": "JbJDlfcnYiyZRXeHQcAVjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b9TcMqRXE0suDiBgNlOBdQ", "review_id": "m8JBuwO7H5M6uv-_1pNgbw", "stars": 5, "date": "2009-07-14", "text": "Had the pastrami sandwich. It brought me back memories of living in NYC and eating that first pastrami. It was good. Good food hAs the power of time travel. \n\nThis is a great place. Plus the coke is primo. Good mixture. The ice makes it over the top.", "type": "review", "business_id": "yTFdhqH9eLzaP05xXQa2rw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "C3SXTtxCtSvcJuBtV4TDdw", "review_id": "cnRKlXHSE0k8Ro7dHa94Cw", "stars": 4, "date": "2011-04-27", "text": "The Parlor is one of my go to favorites when I'm craving pizza, going on a first date or have friends and family in town. \n\nI always have a serious conflict between the margarita pizza v. the pesto pizza. They are both sooo good. Lately I've been going for the margarita with a side of marinara side. Usually pair it with caesar salad.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L3Jsd79upFBPk2z4EBOsVQ", "review_id": "qqHCqpE3dDnjFG9fA3MSHg", "stars": 2, "date": "2012-02-09", "text": "I stayed here last month. It's your average motel (since the doors face outside, not a hallway), and the breakfast buffet is okay (scrambled eggs, hash browns, sausage links, bacon, cereal, batter to make waffles, and toast provided). The walls are REALLY thin, so thin that the guy snoring next door kept us awake all night. \n\nThe room was clean and equipped with a mini fridge (like the kind you'd keep in your dorm room) and microwave, although lacking a safety deposit box. If you want to keep your items safe, you have to bring your items to the front desk, make a list of what you're dropping off, and then sign. I was uncomfortable making a list, so I decided to forgo this process.\n\nFYI if you call the front desk to order you a taxi, they actually order a car service. The car is an unmarked, dark-colored Lincoln sedan. To go to the 16th Street Sports Bar down the street cost us about $10 vs $6 for an actual taxi (which we ended up taking later). We didn't want to drink and drive, so not bad, but just know that the hotels in the area do not order taxis.\n\nMy main complaint is that we didn't have housekeeping service the entire time, hence the two stars. We left for lunch from 10:30AM - 1:30PM, returned, but housekeeping never arrived. We left again at 3PM for the rest of the day, and housekeeping, upon arrival back at the room after midnight, hadn't come. I called the front desk for someone to bring towels, but since there was no one to cover the front desk, we had to go get the towels ourselves. I also wanted an extra pillow, but the front desk person couldn't leave the front desk to get a pillow out of the housekeeping room. I thought this was very strange.\n\nI guess for less than $100/night (Hilton resort down the street much more expensive), it's not too bad. I would probably stay here again for the mere fact that the location is conducing to our activities. But, if I could find another hotel close by with a similar price, I wouldn't mind staying somewhere else.", "type": "review", "business_id": "6Ckmrpp6OW1pJ-3Pjg7VaQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Yqwt6k2s39cCrQzvTLM6lQ", "review_id": "aeXZGKD0_pgnHyZKxYU45w", "stars": 2, "date": "2011-04-01", "text": "Have been to the Garage twice now and they are batting 1 for 2. \n\nWent there on a Saturday for lunch and the food and service was excellent. I had the pulled pork sandwich with sweet potatoe fries which was original for pulled pork served on a pizza crust bun. My girlfriend had the buffalo chicken salad which was really good, grilled chicken in buffalo sauce on top of baby greens. Excellent beer selection.\n\nWent there on a Friday for happy hour and got there a little before 6, there was a 30 min wait for a indoor table or immediate seating on the patio, so we decided to sit on the patio. Hostess sat us and said a server will be by shortly, normal procedure. About 10 minutes later no server had come by and the hostess returned and asked us if we ave been helped yet, we said no so the hostess said she will get someone. Another 10 minutes and no server. It wasn't busy on the patio about 5 tables occupied, all with food and drink. We decided that they must not want our business, so we went next door to Sushi Eye.\n\nWill try again, just won't sit on the patio.", "type": "review", "business_id": "qRBeZAFiId0ainBtpFSGuQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OwgqvIcUSTwFJueBX9JmcQ", "review_id": "DufvlO5HC_GD2Y8PHidILA", "stars": 1, "date": "2012-08-19", "text": "I hadn't been to Fuddruckers for about 20 years... now I know why. Cashier was nice and very helpful. I ordered bacon cheese burger combo. Fries were only warm, not hot. Burger was not very tasty and it was full of gristle bits... you know the ones that stick between your teeth. Lots of trash on the floor. After we were finished, someone came to ask how things were. I told here about the fries and she offered to get me more; I declined. She offered a free dessert: I accepted. In all, not a good experience, will probably be at least another 20 years before I go back.", "type": "review", "business_id": "OEQMqI-duBA1gbBFzi7BPw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "6hRKotVFPYL7Ci0hipN9Eg", "review_id": "OHQj2xhSKlbL8nnNV5U4Jg", "stars": 5, "date": "2009-04-24", "text": "Eden's Grill has to be one of my favorite, and newly discovered Middle Eastern/Mediterranean restaurant in the PHX metro. Located in a sleepy strip mall, close to Artie's Ace, is EG. My partner and I had the opportunity to have dinner here a few weeks ago and we were totally wowed by everything! We started off with the hummus, followed by two orders of the vegetarian plate. The vegetarian plates were huge and featured dolmades, falafel, rice, veggie skewers and veggie patties (2). The vegetarian plate was massive and everything on the plate was delicious. Next time we'll pay the extra $5 and split one Vegetarian Plate instead of getting two. The pita and hummus were fresh and delicious, however, I find EG's hummus to be a a little thick for my preference and they use a heavy dose of tahini in their hummus. Overall, I would totally recommend EG to anyone with an itch for Middle Eastern/Mediterranean food but be warned, they aren't open for lunch on the weekends yet.", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cWg07SD9-PnDUglqtS5owg", "review_id": "6wFkP1odFM6CDCgJuX6R6g", "stars": 4, "date": "2010-07-23", "text": "If you are in the mood for pizza this is possibly the best pizza, no it is the best pizza that I have had thus far from tempe. This is a five star if Tempe was the only place in arizona.\n\nThey have amazing pizza that does not taste like a piece of hot cardboard with tomato past and a sad excuse for cheese. Unlike other pizza places the owners are some real italians and keeps the company in the family.\n\nRecommendation: To anyone living in tempe and enjoys a REAL pizza.", "type": "review", "business_id": "Mh85-BDqDHlngT8G2ZnRWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bvvLS4Vz5yFuNvGKBV3-1g", "review_id": "DEspvhnHjYXGx0RGxU_0PA", "stars": 4, "date": "2012-05-08", "text": "What can I say - I love this place! I was introduced to it by a group of 20 something friends so I was a bit worried going there (I'm no longer of that age group.) Turns out I had nothing to fear! Roosevelt is perfect for a glass of wine with the hubby or post dinner cocktails with a group of friends. Still have a the munchies after dinner - there is a great food menu selection as well.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "aUWLSsTqraEORdiNCpNq3w", "review_id": "4sV0vcNO0qyOxwxfbsG3Vg", "stars": 4, "date": "2010-05-02", "text": "UnPhogettable- a poem\nTrying new things can be oh so frightful\nso it helps to have owners that are oh so delightful\nStart out with springs rolls to begin the meal,\nI liked the peanut sauce so much that I let out a squeal!\nAnd ah the pho, the main show if you will, \nboth my tummy and soul it did fill.\nI've also had their chicken dishes a time or two,\nthose are quite good if soup's not for you.\nThe lighting is dim and the tables lack in style,\nbut once you get past that you'll be there a while.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k8vE4MWAvcAYjQ7EyZGkug", "review_id": "IFc6QJwtfCU20aVqVlmg4w", "stars": 4, "date": "2009-12-18", "text": "In my opinion, this is one of the best restaurants on and/or near Baseline Rd in Tempe.\n\nTheir service is great! You will be greeted from the time that you step a foot through their door. Unfortunately, per today's so-called standards this is not a very common courtesy. \n\nIf you a first time customer or a returning customer, you can ask the person behind a counter to recommend a meal for you or you can ask for a minute or five. As a very indecisive person when it comes to choosing an item from a menu... I really, REALLY appreciate it when I do not feel rushed when it comes to making such an important decision in my overwhelmed life. :P\n\nI haven't tried too many things from their menu because I usually stick to my favorite: Award Winning Gyro Lunch/ Dinner. A plate of delicious slices of beef and lamb, carved off the rotisserie, served with fresh toasted pita.\n\nLunch is served with your choice of the sides... Oh, and did I mentioned that their prices are extremely affordable! $5-$13 price range!!\n\nSo, enjoy your meal and make sure that you do get a chance to turn around as you are walking out because they WILL thank you for coming!\n\nKudos to you... my dear My Big Fat Greek Express owners and employees for making my oh-so-many dining experiences pleasant! I shall forever cherish thee!!", "type": "review", "business_id": "WyJRPTn2FCFdj2cYT9pqyw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "bJgt3IZajlpo_rpPtJ7tWg", "review_id": "qRVrMDcgEQ2J5p64bWAsNg", "stars": 3, "date": "2008-12-31", "text": "I only did layovers in this airport to and from Colorado from California, but I liked it. There were a ton of places to eat which was fantastic. Their flights left on time, which was kinda annoying when we got in 10 minutes late and ended up getting stuck there for almost 3 hours. Free internet access helped with that though. It's an airport I don't mind being stuck in for a bit.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hedOECpUoqK0wkodLk-rqg", "review_id": "wdxPFtg7yeGyzTI-CapaqQ", "stars": 3, "date": "2010-03-29", "text": "Tailgating here is something else altogether, but if you are doing ANYTHING near ASU, then you already know about the party scene. Let us get to the stadium proper... \n\nThis place is huge. Standing down on the field and looking up towards that blue Arizona sky will give you a little perspective on just how massive this place is. Sandwiched between two mountains, it's easy to get lost in your surroundings. \n\nThe only bone I have to pick is with the fact the bathrooms are like finding water in the desert. I was expecting a stadium of this size to have numerous bathrooms, but I had to do more then a little searching to locate one. \n\nIf you are looking to catch a college football game and get the \"big stadium\" experience, Sun Devil Stadium is a pretty good place to start.", "type": "review", "business_id": "qbCNlrrY5Ms0ehAMi3XX6w"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "GJl1qIvyQEs501rfw0hDBg", "review_id": "2l4P-VEwggoi7S5qELfKHQ", "stars": 5, "date": "2010-08-07", "text": "Consistent is a great word to describe this place. The food is consistently great; the service is consistently great; the regulars are consistently there. (they're great too). It has a comfortable smoking/drinking patio and great prices during happy hour. The staff and owner is always (consistently) accommodating and friendly. You feel like you are part of the family here. \n\nFood I'd recommend: Any fish served Greek style, the Prime Rib, the burgers and definitely the fillet medallions with the gorgonzola wine sauce. All the food is good though and you gotta love the salad bar!", "type": "review", "business_id": "r9sGMJ084n4IS9eGmlCKjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o9TIZgH9OdKpVSVk6CVCgg", "review_id": "yIVAO0dL8iDxoQM5U1pv7w", "stars": 4, "date": "2012-09-23", "text": "I've eaten at this Smashburger a few times and I'm always pleased with my food and the friendliness of the staff. On my most recent visit, I called ahead to pick up my family's order and we were not disappointed, once again. We ordered a variety of menu items (and in typical 'When Harry Met Sally...' style) - a grilled chicken spinach and goat cheese sandwich (subbing the goat cheese for American & changing the multigrain bun to egg), a build-your-own burger with an egg bun, spicy chipotle mayo, pickles and onions, an order of Smashfries, an order of french fries and an order of fried pickles. Everything was made perfectly to order and plenty of extra sauces (ranch, etc;) were provided without having to ask. \nOn weekends, this shop is jam packed and it's a wait to get a table, but worth it. During the week, everything flows very smoothly and the vultures \"circling\" for booths is at a minimum. \nI highly recommend this Smashburger location whether dining in or taking taking your meal on the go.", "type": "review", "business_id": "KT_r7qwU8sSfcR31zETGkg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "Xf24HAnLyLC-foz_F_SSPg", "stars": 4, "date": "2011-05-09", "text": "The food is good and the location is perfect. A solid breakfast spot in Oldtown. Everything on the menu looks fantastic. I went the healthy route this morning and went with the Quick Start Conscious. 4 egg whites, broccoli, tomato, fruit and cottage cheese. Phenomenal for a healthy breakfast out. Breakfast club also brews a pretty solid cup of coffee that gives me a pretty good buzz for only having two cups.\n\nThe only real negative is the outside seating. It seemed good in theory on a cool day in Scottsdale with temperatures only in the seventies. However, being right on Scottsdale Road, it was hard to hear the people I was eating with because of all the passing traffic. I'd advise that anyone dining here eat inside (where it unfortunately can also be a little loud since the place is always busy).", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "i4MKtZoii8WCSq518WvIkw", "review_id": "wZnZbXQeUooGnBHHntxBag", "stars": 5, "date": "2011-03-25", "text": "How have I gone this long without reviewing the lodge? Sheesh! I get all fluttery inside when I think about the lodge. The Mac and Cheese is not something to play around with. It is a dish of fantastic, cheesy wonderfulness. Also, please note the veggie wrap. HOLY SMOKES. Its a heavenly combo of sauteed veggies, feta cheese, and some kind of lemon/herb/heaven sauce all wrapped up in a pita! Really? Really Aaron May?\n\nThe other aspects of the lodge I enjoy involve the friendly staff, and comfortable setting. It's decorated all rustic and cushy, and true to form there are antler-chandeliers. You will also find pool tables, darts, several TV's, jenga, bean bag games...they have plenty going on at the lodge to keep you and your friends entertained. Check it out...", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iAD9GVUI8m5KaHgi1CnJBQ", "review_id": "W-9P2BYSk51_ftA1ho26Lw", "stars": 2, "date": "2011-06-20", "text": "This Safeway is nice and is close to my house, but after visiting this weekend I have to stay I am going to stick with Bashas. The prices are definitely higher on my normal items at Safeway. Also, I know Safeway can't really control this, but the vibe is not as friendly. The parking lot was packed, there were grumpy folks looking for spots. This is the same Safeway that my husband was at when a guy and his girlfriend walked up to him and offered him $5 to help get him a hair cut. My husband's hair wasn't even that long (maybe an inch or two). I don't know what it is that draws that type of crowd, but Bashas has a much more home-town feel.", "type": "review", "business_id": "Sm-KSR7qtHmP-Z1yBPxedA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zzhdnNeg65wupOXqYtGyJw", "review_id": "jui8bGOENuFTYH59aluhpA", "stars": 4, "date": "2012-10-07", "text": "in town for a conference and craving 'real food'/a substantial breakfast to start the day - breakfast club, walking distance to our hotel, completely delivered. our server was super friendly, though we were sleepy and indecisive; she recommended the french toast side we ordered to be made ala bananas foster - YUM. more like dessert but nothing wrong with dessert for breakfast... otherwise we had fairly standard egg dishes but they were yummy, fresh, served quickly, and exactly what we needed.\n\nthe *only* complaint i have is wayfinding - perhaps, since they were setting up for an event downstairs, it was moved - but there were ZERO signs on ground level, and while we could smell bacon/coffee/breakfast, we had to lap the block a few times and only found it because we figured we may as well try the escalator... a few signs would go far.", "type": "review", "business_id": "0nGjXTpUtpIJl10PL0eBGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2LdmDvRyrXgFsVL1KoRfRA", "review_id": "FPWS5DY5DNNyVl_Duu6cCw", "stars": 5, "date": "2010-01-23", "text": "Just went for my first time last night with \"the \"girls\". Two of us heard about it and after I read the reviews and checked out the menu it was slated for our next night out.\nAnyway we had a memorable evening with wine, the make-your-own cheeseboard and the to-die-for pear and gorganzola flatbread pizza. It was topped with fried sage leaves -- different and delicious. Afterward we were able to fit dessert and shared a huge slice of fresh layer cake filled and frosted with dark chocolate. Sublime! Can't wait to go back and try other dishes - definitely made it to my 'Restaurants to Frequent' list :)", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x67gqdKYmKD8YZ3j3wmW_A", "review_id": "Ay15hq7aTzBP_aT7XBNjXQ", "stars": 5, "date": "2012-12-20", "text": "I really enjoyed my mani/pedi with Trisha! She took her time and taught me about manicuring my nails from home which I loved.\n\nI went in for the Groupon basic mani/pedi deal and left feeling like I got a lot more! It was the most pleasant experience I've had at a nail salon. The conversation was easy and Trish is a great person. I will be coming back to Trish for nails again! \n\nThe entire staff was friendly and professional. Great Salon!!", "type": "review", "business_id": "qdbtpxgfYp0aBZdg4jEFIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_bYIJdwBzZhHGcDQjiFeEQ", "review_id": "jhJDITmMgBVoaafrSFPp7A", "stars": 4, "date": "2010-08-15", "text": "So much fun! In town for work and wanted to celebrate a colleague's birthday so following the great reviews on Yelp, we ended up here. We were exhausted but still had a blast. These are some seriously talented performers. The crowd was mixed from a lot of 20 somethings to 40's/50s and all were dancing and singing and just overall, having a great time. $6 cover but so worth it. Definitely recommend this bar if you're looking for a lively place to have some drinks.", "type": "review", "business_id": "Q_jHqufNoxdlgCtLbqrpsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GjNyOTcibcI_XKCzeMgO2g", "review_id": "mMR9QwwtDrQ9CBTAYp7pDw", "stars": 4, "date": "2011-02-20", "text": "The only thing you can say critically about the Thai House is the location isn't a home run. But get past that, and get inside because the food is top shelf and the recepies are authentic making this a fave five spot for my family. Start with a Thai Iced Tea, try a spicy soup, and don't miss the curry - but beware of the heat index and order according to your ability to enjoy flame in your flavor! My personal favorite is tradtional Pad Thai - the perfect balance of peanut and chili spice with sticky noodles & chicken...", "type": "review", "business_id": "17DI33J8TkcfzyoiIYLQIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vQ0aO_auGTuL000he02ikw", "review_id": "aluHwnhLGXIPanqHT9aX9A", "stars": 5, "date": "2012-06-15", "text": "Mister Softee is an all-star, he showed up on time, provided great service, and has great tasting ice cream... Give him a call !!", "type": "review", "business_id": "b-6GC5VpE3tHZTcWmZynfg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "uioGU4llZCstxsuy37IjuQ", "stars": 2, "date": "2011-11-21", "text": "uuuuuugh. What a sorry disappointment of a meal. The BF and I went here for dinner tonight and it was pretty not good. I got the pick two with the balsamic steak 'panini' and the chicken stew. The BF got a turkey 'panini.' Well....his 'panini' was barely toasted, let alone a panini. My sandwich was toasted but the steak was pretty gross....chewy and tasted like it came out of a bag. The tomatoes were mealy. The whole thing was sad. The chicken stew was decent, but had that plastic -y look to it. I always find that a little disturbing. It came with a biscuit that was really gross and didn't go with the stew at all. Both of our cookies were raw in the middle. Plus the meal cost 20$. Really?! 20$?!?! Are they kidding me? I could get a countless amount of better food for that money. Not awesome. Not even good. I won't be returning.", "type": "review", "business_id": "0_vMnSRqc5aZUg1eBk3l2g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UrXg7zOknA7WAHD60JnK9g", "review_id": "Vnr2wuBXEjbLtfQT_XuDSQ", "stars": 5, "date": "2011-04-03", "text": "Awesome food anyone??? Go check out Modern Steak in Scottsdale, AZ.\nGorgeous dining room! Excellent service (with our server Gabe)! And the food was AAAMMMAZZING!\n\nIt's located at Fashion Mall, but it's NOT a \"mall\" restaurant. A MUST go!", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "4Dqeb_NGFpLG1PJp7wqaJg", "review_id": "yU7W-WFau7IKNL-mu5Eo7w", "stars": 5, "date": "2009-06-12", "text": "Dude...a happy hour that is TRULY happy!!! \n\nThis joint is relatively swank for all the deals it has. Nice decor, good bar, FRESH seafood (seriously...this is some good quality). Starting at 4:00 p.m., they have $5 martinis AND $0.75 oysters. YUM!\n\nOn top of that, they offer discounts on other appetizers such as the bread and cheese plate, a GIANT crab cake, a salads, and shrimp dishes. All are tasty.\n\nFor all the Zoners out there (yeah, I said it), you have to check out this place. You will have a great time! \n\nNOTE - beware of dirty old men. They'll hit on your friends!", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "h5unSMFD5BKuods_Po_lsA", "review_id": "qCx6SePFqACM1CqTyXPpNg", "stars": 5, "date": "2010-03-15", "text": "So my friend and I stumbled upon this place on our way to Barb's bakery but WOW I have never had a better taco in my life. The carne asada street tacos are freaking amazing. They also have the bottled cokes from mexico that for some reason taste sweeter than cokes bottled here. The waitress was also extremely friendly when we were checking out we asked how to pronounce the name of the restaurant and she started teaching us some Spanish.", "type": "review", "business_id": "s87D-mtAuJ8BluKgYYsXGw"} +{"votes": {"funny": 3, "useful": 12, "cool": 8}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "LDEj_-lmUw9ug-AQxgitQA", "stars": 5, "date": "2010-09-11", "text": "I can now thank the Humane Society for not only giving me my dog Brutus when I was a child, but now my dog Harley as an adult. A couple of years ago, I planned a visit to the Arizona Humane Society to present them with a corporate donation on behalf of my old company. When I scheduled the meeting, they offered to give me a tour of the vicinity and as a friend of the helpless animals, I said of course and planned my visit. However, I knew that with a tour, I might be in some trouble in the willpower department. \n\nWhen I arrived to the center, I was greeted by a pretty view of South Mountain and a wide open vicinity. I walked inside and immediately noted how clean it was for being home to many a furry creature. The staff was warm and welcoming as potential new \"parents\" waited in the lobby to adopt a new friend. Kittens and bunnies greeted the guests and there was a special area for the cats being featured that week. The vicinity was a five star facility to say the least and I could immediately tell that the animals were treated well here and in good hands until they found a new home. \n\nTo make a long story shorter, they gave us a detailed tour of the complex. I walked through spacious room after spacious room full of dogs of all kinds just wanting a home. As I walked up to one of the cages, a furry ball of fluff looked up at me and placed his paw on the cage. I fell in love immediately. To make matters worse, the staff then took us into a room where we could make a kong of peanut butter and treats for our dog of choice. Of course I had to give it to my new found friend. At that point I knew I was in trouble and could very well be leaving with a dog. So to end that part of my story, I did leave with a dog and Harley has been happy in his new home ever sense. \n\nWhile I visited the Humane Society, I couldn't get over their quality of service for not only the clients but the animals themselves. They were clean, kept in spacious areas and they even had a huge playground for the animals to play in each and every day. When i found Harley and started to think about taking him home with me, they took me to a private play area where I could get to know Harley a bit more to make sure he was the right dog for me. A staffer stayed in the area and helped me with any questions I had. When I made the decision to take Harley home with me, they neutered him, gave me a couple free vet visits and sent me home with some treats, food and a leash. They even have a pet store to pick up all your essentials for your new friend. And did I mention that the proceeds go back to the Humane Society...a nonprofit? \n\nThis Arizona Humane Society is a five star pet resort that focuses on making the most of a pet's stay until they find a new home. I suggest just taking a visit to the facility to see how well-kept it is. They even have horses that they rescued. Sorry folks, they are not up for adoption though. So thank you Arizona Humane Society for bringing my little dog Harley to me and saving so many animals from the streets.", "type": "review", "business_id": "mQde7KRomOQoUyPGTqeXhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "wW5YgcJHKebkjKCMo5mSOg", "review_id": "Q1XN0L0P5evdBYZZNRUFCw", "stars": 5, "date": "2009-08-10", "text": "Awesome, awesome, awesome....everything was fantastic. The innovative drink menu, the pizza was out of this world and the bartender was very personable. A++ I would definitely recommend this place to everyone. Ban't wait to return!", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SRsofHYNavGfAuDtIJ_n2Q", "review_id": "wgEUSAcuqwQbgW90di2YiQ", "stars": 3, "date": "2009-08-30", "text": "This place confounds me...\n\nThey have an excellent beer and wine selection. As a matter of fact, their beer selection is one of the best I've seen in AZ. Tons of micro-beers and many different and unique bottles of rare Euro- brau. For the selection, to stop by and pick something up and go, this place is great. As a restaurant/Wine Bar bar, I give this place a big...Meh.\n\nThe service was terrible. Of the party of 6, everyone that ordered a glass of wine, only got one. They sat with their glasses empty for at least 30 minutes. Those of us drinking beer, just walked over to cooler and grabbed a beer. We also had an appetizer. We got the warm pretzels with gourmet mustard. It was frozen pretzels they microwaved with Honey mustard. They were still cool in the middle and a little stale. \n\nMaybe it was just an off night or something, I'll probably give it another shot.", "type": "review", "business_id": "eek3lFfNMKULpwTSHGwzQA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "LMqKXdbwYdCqCCF64QbVkA", "review_id": "hWMsdIfX662k1b0ZSUKbLw", "stars": 5, "date": "2009-09-26", "text": "Hole-in-the-Rock is a cave-like natural rock formation sculpted into the top of a sandstone butte in Phoenix's beautiful Papago Park. It's one of the most powerful scenic views in our city, and is the perfect place to showcase its exquisite landscape. Just a short hike up the butte and you'll find yourself in the amazing chamber sculpted over millions of years of wind and water erosion. \n\nAt sunset there are few locations that can rival its awesomeness. The hole faces south, giving a wonderful view over south Phoenix all the way to South Mountain. \n\nHole-in-the-Rock is truly one of the greatest attractions in our city and everyone would be blessed to experience it at least once. \n\nNo fee to enter. Bring a camera!", "type": "review", "business_id": "NXsw4z0AtaILgS4-UxSWUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sMgt2JAQ85nz59Woe0IAtw", "review_id": "5E9Q7R_vcAAcup3sdbip6g", "stars": 4, "date": "2011-05-15", "text": "This place has decent, prompt sandwiches, and I'll take it any day over every other sandwich chain in the Valley.", "type": "review", "business_id": "zmjWXerSZlB0eRLxrKevYQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ZZaPkWkk9NVTzNECzUTTag", "review_id": "7fRjOosRauMeC2FVE39L-Q", "stars": 3, "date": "2011-06-29", "text": "I may have to disagree with the majority of reviews of this restaurant. \n\nWe came here after my parents played a round of golf. With their round they got two free steak dinner, which they raved about... not sure if it was more on the fact that they were tasty or that they were free, which today can be just as exciting. \n\nI ordered the Coconut Shrimp with Sweet Potato Fries, and although this is a large plate of fried concoctions, it was delicious! I could not ask for a more crispy, summer-y meal. \n\nThere were some problems with the service, we had a dirty glass and a bad glass of wine. But they were very helpful in recognizing their fault and fixing the problem. \n\nThere was karaoke playing the night we were there, which was interesting, but not the creme of the crop participants if you catch my drift. \n\nSo if you are a golfer and looking for a great place to go after your round, stop by.", "type": "review", "business_id": "uU70AmVxV_OOgkumhUpu-g"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "34gJ_KlP3RM6jotNT6TcDQ", "review_id": "8sgxXIKV_t5VzNcmFcU3Qw", "stars": 5, "date": "2011-11-07", "text": "Flatiron Mesa is one of my favorite hikes in the Phoenix area. Like other reviewers have stated, once you've gotten used to Squaw and Camelback, give this one a try. It'll kick your ass. It's about a 2600' climb in elevation, so you're doing more like 2.5 Camelbacks. You'll be scrambling over boulders most of the way up since there really aren't switchbacks. I'd say give yourself about 5 hours to go up and down. It's inside Lost Dutchman State Park so you will need to pay an entry fee.\n\nMy one recommendation besides the obvious ones (being fit, pack food and water) is to bring some light gloves. Since you're climbing up and down on all those boulders your hands will probably get a little scratched up.\n\nDon't feed the wildlife.", "type": "review", "business_id": "CZBYYCb4xBwNlSIYNc6Eiw"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "rTMsw1YYYQhzrXX9ovtLJw", "review_id": "chnK3AbSFMZ5qCr5H3adDg", "stars": 4, "date": "2008-06-25", "text": "Being a total Asian bobaface in a generally boba-deficient state, I adore this joint. The chocolate mint smoothie is always on my mind if I'm in the Tempe area or passing through on my way north. I dig my boba firm and chewy, so I always ask for the drink to be made extra icy to chill the little pelotas to ideal suppleness. Eba has a pretty large menu and will gladly do flavor combinations. They use the proper plastic seal on the tops of the cups so you can shake the living daylights out of the drink (as one should). \n\nAlso, Eba has free wi-fi and is close to the airport; it's our favorite pre-flight stop to do a final check of email.", "type": "review", "business_id": "Oz1w_3Ck8lalmtxPcQMOIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8C-2oT1Tjiv6ewIUCksRpA", "review_id": "e4igIkKyhP60FsxRGCUjFQ", "stars": 4, "date": "2012-12-31", "text": "My fiance and I eat at Chelsea's about once a month. We love the chicken nachitos. Don't be fooled by the name; they are enormous. There is nothing \"ito\" about them. They come generously topped with fresh shredded chicken, silky melted white cheese, chunky guacamole, and sour cream. That appetizer is accompanied by a fantastic red salsa. Yum. \n\nAnother of our favorite entrees is the swordfish tacos. The fish is always tender and cooked to perfection. I love the homemade tortillas and kale salad too. \n\nThe service is always impeccable. They are quick to refill bevs and ask how we are doing.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XTYX5B23tXxKZUAz3pOi1g", "review_id": "YAi44VuskGKPPs-Ua8_I4A", "stars": 5, "date": "2011-07-15", "text": "I've been going to Lake Pleasant Dentistry for 2-3 years now and Dr. Sharon Bader is hands-down the best dentist I've ever had. I've traditionally had bad experiences with dentists and am always wary of any dental procedure, but I've never felt more comfortable than with Dr. Bader.\n\nShe is very accommodating, puts you at ease, explains all the options and does GREAT work and will stand behind it. She did a pretty complex crown for me when the tooth was borderline whether it could be saved and it worked out great. I wouldn't hesitate to recommend this practice to anyone.", "type": "review", "business_id": "nSCLWYT0irr4WSAYihvwHQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ryjqXdp68i2I9JPOpX9URw", "review_id": "K-HZAVyZ-m-RO1gUQd3PaA", "stars": 5, "date": "2011-09-13", "text": "What happened to this place? The food was good and seemed to have passionate folks who worked there.\n\nWhat a shame! I think many were only just discovering it.", "type": "review", "business_id": "FI4ns6iR4ZrhoaYjITf-Mg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "usQTOj7LQ9v0Fl98gRa3Iw", "review_id": "nMr9qXtf8Kb5JGQ79zBSyA", "stars": 4, "date": "2010-03-15", "text": "I have used The Parking Spot twice now, and am a registered card carrying member...lol. I have coworkers who use one of the other economy places across the street, but they don't get covered parking and I don't remember them being offered a complimentary news paper on entry and nice cool water when leaving. I get a government discount with ID and you can usually find a coupon online. Not to mention the prompt pick up. They are behind my vehicle ready for me and my luggage even before I am out of my car. There have been times when we wait for a few more people before we go to the airport, but never more than 10 or so min. I love not having to weave my way through the airport construction or get lost or delayed trying to park at the airport. \nWhen getting picked up the most I have had to wait was about 20 min. And as I was about ready to call, they showed up. Don't loose your ticket. I have seen others who have and it makes it really tough. You can pretty much expect to be the drivers last drop off, unless you remember where it is or see your car as others are getting dropped off. \n\nThe entrance is just W. of 40th St. and can only be accessed when heading W. bound on Washington due to the light rail. But the website has some good directions as well.", "type": "review", "business_id": "NCM64MnD1NCtBfJzgBIZKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ldYjw0QuCpUpeanIfdFecA", "review_id": "Xo90ReVlApKXchqM-hmr8g", "stars": 5, "date": "2012-02-25", "text": "Pleasant, courteous, low prices and your clothes are ready the next day! What more could you ask for!", "type": "review", "business_id": "efirwxiGfXc9avcO6c86qA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "ZKs7NR45Fi27wcIoAilEMQ", "review_id": "cJj6img2V3NofgtSmm9LAA", "stars": 4, "date": "2010-04-07", "text": "I've been to this theatre a fair share, but this time I went for the UFC 111 Georges St. Pierre vs. Dan Hardy. Who knew one could watch UFC at the friggin movie theatre?!?! They also show boxing fights.\n\nAt first, I was SO hesitant, I even walked back from DSW to ask if I could get my money back if I decided against going. Yes, as long as it's before the fight. It was $20, yeah kind of steep, but I thoroughly enjoyed it and I will go back when it's a big anticipated fight with a fighter I like.\n\nBut, come on, Georges fighting on a large screen!?!?!", "type": "review", "business_id": "dAJC97pUsxa1SucwFQE07A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "iw14LAmDOesphvxtPVKZFQ", "review_id": "fpb28HGGrE_yT234vzWwfQ", "stars": 5, "date": "2010-09-17", "text": "It's pretty awesome here! I was traveling in Phoenix for work and had to get my raw food fix (I eat a raw diet at home and as much as I can while traveling) and this was excellent! The portions were large and the price was good. The same type of food in places like Chicago are much more expensive. I got the raw taco's for lunch and the blueberry fields salad to-go. They were both great! I also had an appetizer but that ended up being too much food so I packed it, too. The location is actually fairly close to the airport (10 min drive) and so it will be my preferred place to go when I'm in Phoenix.", "type": "review", "business_id": "xIdyiVoX5woL8iKHYKoiWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NRBhz5ptfd_GNb0dArTggQ", "review_id": "BZuMZZQxcKlxlAS8pD-FbA", "stars": 4, "date": "2010-08-19", "text": "Five Guys is good eats. We've been eating at this location frequently (perhaps too frequently!) since it opened.\n\nHonestly, I don't think the food here is any fresher than In & Out Burger, but I like the selection of toppings (can you say, \"fresh jalapenos!\") and the great selection of sodas.\n\nThe peanuts are a nice touch to get you warmed up for the Main Event while you wait.\n\nI personally think it's a little over-the-top to decorate the place in nothing but rave reviews (WE GET IT ALREADY!!), but the cool music makes up for the lack of ambience.\n\nSince the Zagat announcement earlier this week, it's been mobbed. Try to avoid peak hours, unless you want to wait for a table.\n\nFive Guys is definitely pricier than In & Out, but I think the selection of ingredients justifies the premium.\n\n3 tips:\n\n-Our family of 4 (2 adults, 2 kids under 10) can make do with one order of fries, though the orders have gotten smaller than when they first opened.\n\n-Ditto for the burgers. Don't let the moniker \"Little Cheeseburger\" fool you. I got the regular burger...once. But the \"Little\" one is perfectly sufficient for me, especially after I load up on toppings.\n\n-Can't decide between the regular fries and the tasty Cajun fries? Ask for a 'half-half' order and \"POOF!\", you'll get it!\n\nEnjoy!\n\nUPDATE: Gotta drop 'em to 4 stars. The last several visits, the fries have been soggy. Once they were even opaque in the center --- not cooked! Ask for them EXTRA CRISPY!!", "type": "review", "business_id": "VsrvWdZL2993olnW3z8R3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XLO0gE99ur2fv7VmPBJb3g", "review_id": "JWdWLSE1CYNJ4cF1TSRyHw", "stars": 5, "date": "2009-12-28", "text": "Went here for the first time a few weeks ago and it was some of the best BBQ I've had in Arizona. \n\nThe service was great as well! The manager stopped by a few times as well as our waiter to make sure everything was good.\n\n*****UPDATE***** \nLooks like they went out of business. Haven't been open for two weeks now.....", "type": "review", "business_id": "R0TyGazD5a0Wc7QkIAUTJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WLTK-AW2ejX1dJVgfCi0RA", "review_id": "z3JC3wZkHdw2oyyVfw-JwQ", "stars": 2, "date": "2011-08-11", "text": "They must have had a slammed lunch as I came in around 1:30 ( by the time I found my way back from the old station) and for a new place the counters were dirty. \nI hate when the counter help is eating in the dining room, I feel like I am inconveniencing them. The vegetarian choices are limited and the Pho was good for 8 bucks. I have eaten Pho at another place in Mesa and enjoyed it more. \nI won't run back to this one but if someone else was paying and wouldn't cave to other suggestions I would not die of it either.", "type": "review", "business_id": "NLVcGseUhgQdABs1mIYk8g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "yJihBbisa05Yz6FUQtzE1w", "review_id": "G6YUVoYwRI1sQ6zjWuiFXw", "stars": 4, "date": "2009-04-16", "text": "I went for lunch with my mother-in-law, she had the veggie fajitas, and I had a chicken burro with green enchilada sauce. we both enjoyed our meals.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "D5I9x6Uun4-N37vCm30Mzg", "review_id": "v6h1q3YNe3aR-x3Yt0DXmw", "stars": 5, "date": "2010-10-04", "text": "I went in at 8 on a Thursday night, and the place was pretty empty except for a family of 4 eating. The layout is a little strange, it looks like you should order at the big window with the kitchen behind it, but you actually order in the back right corner of the restaurant. The girl who took my order was very friendly and made my fat ass feel welcome there, which is pretty rare these days. She suggested I do the slider plate, which I did with a side of green chili mac and cheese and cornbread. It took about 10 minutes for my order to come out, which is probably a good sign that they were at least spending some time cooking something back there. The sliders were awesome, all the meat was very moist and full of smoky flavor, my favorite out of the three was definitely the pulled pork. The green chili mac and cheese was also very good, which was somewhat surprising to me. I was expecting Stouffer's with pickled jalapenos stirred in, but it was far from that. For being the end of the night, it was very fresh and cheesy. The only part of the meal that wasn't great was the cornbread, but I don't think you can really do much to cornbread to make it wow you anyway. I definitely like this better than Honey Bears, and it doesn't even compare to the BBQ joke Famous Dave's. When I have tailgate this year, Andrew's will definitely be my go to place for everything. Also, my meal only ran me about $8.50 and it was very filling and worth every penny.", "type": "review", "business_id": "bQ1s5pqX_UVWVQ-k4e9rAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0im6WIvEj7MWfJSLCuZYaQ", "review_id": "EDxwfkAZnYJSHSLMnc6FiQ", "stars": 5, "date": "2011-07-14", "text": "Service is always great, and the waiters are plesant and nice to have serve you. This is one of my favorite breweries to come too. They have a good selection of beer that is made in house, and you can also get a growler of any type to take home (or home made root beer, which is also amazing) I have never had anything less than a great meal in the around 60 times I have ate here.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "iGtZCZEuow7pn6F7L1XYyA", "review_id": "2lw14kNEFhSpiyaxJGgS-w", "stars": 1, "date": "2012-09-28", "text": "Everything about this company sucks. Walmart treats their customers and employees horribly, I mean HORRIBLY! They destroy the communities in which they sit. I'm done, never shopping here again, I don't care how cheap something might be, there is a high cost to low prices afterall...", "type": "review", "business_id": "xYIFrDywauczSt_wX6s-cA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "8XD0BW-aU7MNj1sPUUZCuQ", "stars": 4, "date": "2011-02-01", "text": "Sub Factory is one of the better sub shops in Tempe - They have been around forever and have a reputation of using the highest quality, freshest ingredients. They may need to give this location a \"make-over\" soon though... it's getting a little tired. (FYI - their secret weapon is their bread)", "type": "review", "business_id": "-wwJIaO7-diyEqxGwZKVuQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PV5Lv_xl3DDAcAchFJCbXQ", "review_id": "m1a8UsK4JqeHo2qsEzrcCg", "stars": 3, "date": "2010-04-04", "text": "Someone already commented on the large Cow mural, I was not going to because it might just be me, but I have heard a few comments about it now. Yea, really odd choice, and kind of uncomfortable to be eating a burger and having Elsa the Cow, with very sad eyes, staring at you while your biting into one of her relatives. Other then that, I feel that they did a good job on the decor. Really nice in fact. \nNow I ordered the Zin Burger, and it was very good. I mean as I was eating it, it was as good as any burger that I have had. As good as Gallo Blanco, and Hula's. Very juicy, flavorful, I liked the bun. It was a 5 star until I stopped eating it. Yep, then it lost a star. How? After I was done, my mouth turned into the Salton Sea. Holy crap, easy on the sodium chef!!! Way too much salt. Now I know what salt does, but overkill. I actually tasted salt for the next hour. You had me with everything else, just don' t want to feel that I just sucked on a pretzel. \n\nOnly other complaint is the pricing. Like everyone else on here, I think the pricing is all wrong. Especially if your going solo. I mean as a single diner I have to order a basket of fries? I thought Delux was stupid for doing so, why make the same bad move. I also saw most people sharing a burger. If thats not a sign, when customers have to get creative on how to eat at your place without breaking the bank, take a good hard look at how you might make your customers more happy. \nLook at it this way Fox team.\n Zin Burger 10.00\n Basket fries 5.00\n Draft Beer 5.50\n Second draft beer because \n my mouth is a salt shaker 5.50\n Desert (are you kidding, I'm\n out of money). \n 25.50\n tax 2.25\n Total 27.75\n Wow, I am back in NYC at these prices!!!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YTw0hz4Y9z29xtd4axMcNQ", "review_id": "8evfajVpQcxcXftzKyHoPw", "stars": 2, "date": "2010-08-16", "text": "My experience was on a random Saturday afternoon, and I think that might skew my opinion a bit.\n\nDuring my visit we were the only guests dining. There was one guy at the bar that was friends with the employees. \n\nThe atmosphere is mellow. And I can imagine it being a pretty happening place on weekend evenings.\n\nThe prices were a bit high for what we ate. I had a pita sandwich and it was just under $10. The lunch prices are a bit steep.\n\nThe food was okay, but nothing I'd go back time and time again for.", "type": "review", "business_id": "IceZ4BtTz76eppjNWm-c6A"} +{"votes": {"funny": 4, "useful": 5, "cool": 1}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "-J7wig9QxiQkzpY71HPmBw", "stars": 2, "date": "2009-11-20", "text": "Came here one morning a couple of weeks ago. Had about 50 minutes alloted before my Mayo clinic appointment, so I thought a short stack of banana-nut pancakes would get me in and out fast. I thought wrong. Staff was friendly enough, but it took at least 10 minutes for the server to finally take my order. I asked for banana-nut pancakes, but instead of the pancake syrup (not pure maple), I wanted a side of the blueberry compote that usually comes w/ the blueberry pancakes. Would this be OK? Server said yes. The short stack (2 cakes) arrived 15 minutes later, but instead of banana-nut pancakes, these were blueberries, delivered by another server. My server came by to ask if I needed anything else, heard my complaint, and rushed back to the kitchen to correct it. I was assured that it would only take 10 minutes to get a fresh batch out, but another 15 minutes went by before the correct order arrived. Keep in mind, it's already been at least 40 minutes since I sat down. I only had 10 minutes to spare- not enough to savor these delicious cakes. The blueberry compote ended up containing corn syrup, the ingredient I was trying to avoid by not using the pancake syrup, but it's hard for me to resist blueberry compote, so if I must suffer...\n\nI most likely will visit Chompie's again the next time I'm out and about and craving for pancakes, but only if I have 90 minutes or more to spare...", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "wapnZrMhivxyy0djBaHoeg", "review_id": "-kmc5YSYJDEvFO9GiRQEQA", "stars": 3, "date": "2010-09-09", "text": "Jack in the Box, this one in particular, is busiest from 10pm-2am. It definitely a \"better when your drunk\" kind of place, or at least I think it is from the number of drunk patrons I see eating there. \n\nThe food? Well, it's JitB, what do you expect? You got the 99 cent for 2 tacos deal, which is a must add for any meal. You also have breakfast served all day. This means you can get a Extreme Sausage Sandwhich, 2 Tacos, and a Chicken Fajita Pita in the same meal. That's some good eatin'. Please note that nothing about the Chicken Fajita Pita is remotely close to an actual fajita. \n\nThis location specializes in making your food NOT look like it does in the picture. The picture may show a big fluffy bun with a juicy burger, however your burger will probably look like someone stepped on it then ran it over with their car. It doesn't change the taste, tho. Still tastes exactly like you would expect something to taste from JitB. I mean, it's good food and a good value. By \"good\" food, I of course mean greasy and unhealthy. That is the definition of good food though, right?", "type": "review", "business_id": "bqktAhYfTOXp8lNwghu1BQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Q6D3W-1jaZhui6yiHSl4Cw", "review_id": "K6h2ZtsisF5g5gUpMapHUg", "stars": 5, "date": "2012-04-12", "text": "Great little restaurant. The staff is super friendly, and their happy hour specials are pretty amazing. I got thePanko crusted Tipalia which was a little dry, but my girlfriend's stuffed mahi mahi was delicious. The Horchata bread pudding was really good too. They have a nice patio where most of the customers sit, I will be bringing my dog with me next time. \n\nIt is a bit expensive, so be prepared to drop some money, but it's definitely worth checking out.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sdUc66dpqO_tP3Lhof23tQ", "review_id": "ok6x_NB3KNDGITLR3bWOLw", "stars": 5, "date": "2012-06-01", "text": "The best bar in town.", "type": "review", "business_id": "yW4XOMS4biiSXOwkbZ6wpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0D0ypakiUxrN5c7gCUy_Xg", "review_id": "AhS7wfTI9GxjMsYvQmVbLg", "stars": 4, "date": "2011-05-11", "text": "LOVE LOVE LOVE the ambience outside! Love the fact the restaurant is in a old style bungalow and the patio is lit with string lights.\n\nI went there for the first time last night 15min before close and I dont know if they usually have music or not..but if they don't, they need it. \n\nFood was great but nothing to die for.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "tNpfNLjxS34wmsroFemoNg", "review_id": "3SdwdPIEFdXc2BSZN6VgTQ", "stars": 4, "date": "2011-04-30", "text": "I stayed at the Firesky Resort before taking my MCAT and have mixed feelings about my stay. Now granted, I had extremely high anxiety at the time so perhaps I didn't get to see the full glory of this place, but in my opinion it is somewhat overrated. For the price I paid, I expected more. \n\nThe resort layout is more like a fantastically designed apartment complex. In fact, I am pretty sure that it was an apartment complex prior to being a resort. With that said, however, the lobby and grounds are absolutely phenomenal. They are stylish, comfortable, and luxurious without being ostentatious. \n\nMy room was a little bit less impressive though. It had most of the amenities that I expected, but nothing extra. The artwork wasn't overly impressive and the linens were just average. Also, the TV was small. It certainly wasn't nearly as glorious as the common areas of the resort.\n\nThe deck/balcony area was very nice though and I was able to study in the fresh air without any distractions.\n\nIf you are wanting to stay at a reasonably nice hotel that is close to everything, the Firesky fits the bill. However, don't expect to be wowed by your room. It is an average room. Nothing less, nothing more.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "aJfAJPoynVj-CBLGaXE22A", "review_id": "HlIDj7Xj-rtJ6wELW9WfQw", "stars": 5, "date": "2009-05-13", "text": "I' m psycho for this place. The sell cupcakes now! (Ollie Cake) and have longer hours of operations I believe ( I want to say until 7?) NOM NOM NOM.", "type": "review", "business_id": "YkFBelUWinftlweJzuiIAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5xjcV1yQsBHIQ_nMphXfQ", "review_id": "1JwcUYZhkL5Ewpt_yzg3Kg", "stars": 3, "date": "2012-01-24", "text": "Ordered spanikopita and Greek salad. Spanny was doughy and Greek salad lacked a kick. Unlike any Greek I'd had before. Not going back.", "type": "review", "business_id": "VD8a_B589J_NlCirS8QA0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9ojTY6akKarpt1t0YeFJXg", "review_id": "-TnRg4vFH0HB7izhjega9A", "stars": 5, "date": "2008-09-03", "text": "Lived in house for 9 years and just thought was time to replace the carpeting, had used some of those \"$99 room\" services over the years for routine cleaning, met Ray Odom, Owner of Hydro-Pro, and gave them a crack at cleaning the carpets before I replaced them. I was Amazed at results, by the time they were done the carpets looked brand new, took their time and did incredibally throrugh job. Great service at reasonable price-well worth it. My carpet cleaner from now on.", "type": "review", "business_id": "x65HKjRIzTptg_cWSHwZ7w"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "okur9hFc00Qdp-RGiYevfw", "stars": 4, "date": "2011-01-29", "text": "This just in: Houstons is on steroids! Yup, it's true. \n\nIf you're familiar with Houston's you're familiar with Hillstone. But, Hillstone is better in my opinion. Why? \n\n-Wonderful outside \"first come first served\" patio seating with fireplaces \n-Indoor/Outdoor space for the bar area \n-A sushi bar (and shockingly really good sushi. We had the mango salmon roll - delicious). \n-No need to worry about Valet... lots of parking. \n-Great service.\n\nWhat hasn't changed is the menu and the crowd. Still your 40+ real estate suits - or should I say jeans + a blazer - and all the cougary women that come along with these men... Not knocking it, simply the truth.\n\nOverall, a great place for a good American meal, people watching or to take your parents. This isn't a place you'll be racing to take your friends who just came into town... it's a chain restaurant. There are way too many locally owned gems in the Valley to spend too much time here.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "x7Sr0kL1h_I9wQqLRF8ZIg", "review_id": "WbSuagIlBL8t51KhPe31-g", "stars": 5, "date": "2011-07-28", "text": "Let me start by saying that I love tacos. I eat lots of tacos. When I get hungry one of the first things to cross my mind is tacos. That said, I love El Nopalito for their tacos. I'm pretty picky about my tacos. I don't really like dumb-ass flour tortillas, dry tacos, unseasoned meat in a taco, taco bell is not tacos, the list goes on. I prefer authentic Mexican street tacos.\n\nThat being said, El Nopalito is the one place in town I feel like I am getting the most authentic street taco that I have been able to find in Phoenix. The only reason I am not here more often is the commute is a bit much as I live in the East Valley. However, if I am anywhere near the area it is almost mandatory to stop and have at least a taco or two. I recommend trying all of the tacos though my favourite has to be the cabeza (it sounds creepy but is buttery and delicious).\n\nIt does help if you speak Spanish as it will make ordering and asking any questions you may have easier.", "type": "review", "business_id": "s87D-mtAuJ8BluKgYYsXGw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "tjbp15UbZ0yziMsZEqwabw", "review_id": "vr8VGvLewoq0xkrit2SwvQ", "stars": 4, "date": "2009-05-15", "text": "Update: As of Feb 2010 this place closed because the owners got in a bitch fight.\n\nI live right next door to this place at Shade. I go often enough, great happy hour. Prices are pretty cheap ($5ish for the various happy hour sushi rolls), service is pretty fast, and it's great that it's locally owned and not a chain restaurant. \n\nOnly \"negative\" comment is it' is a bit small inside, hard to accommodate large groups of more than 8, and even that is pushing it if they are busy. If you can go before everyone gets off work, it's pretty quiet in there, and fun to sit at the sushi bar as well.", "type": "review", "business_id": "ogMsiOU3QA2671pFUvexUA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "EcgpGtxB5916NPqvXwMcjQ", "review_id": "5aWP_2EYbIZmtzXCNX2oig", "stars": 4, "date": "2012-10-03", "text": "What a cool store! the wife and I spent 3 hours poking around here, ended up ordering their \"cat mapper\" recliner (my new throne!). I don't hunt anymore and rarely have time to fish, but I still love this store!", "type": "review", "business_id": "UU-kkvyX6pyrl_4fK6Qpvg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "_1OTipGDKze-M0XaYh-kXQ", "review_id": "PtGXlsu91_otLUudUmM7kg", "stars": 3, "date": "2009-04-07", "text": "I tried a few different kinds of pizza and they were all okay. A few people had told me that they made \"incredible\" pizzas, but I didn't really think so...I'd say they were pretty good pizzas. What I liked were the fresh tasting vegetables which topped some of the pizzas. The cheese was a bit disappointing, especially since I don't think you can really go wrong with cheese...it just lacked flavor.\n\nAll in all, I probably wouldn't go back...it just really wasn't all that impressive.", "type": "review", "business_id": "TqHTtjPANCBKGsjGBjDoQQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "q_xk3xZ1JKwwFZk8HJd4MA", "stars": 4, "date": "2008-04-02", "text": "Even though I don't drink beer, I've been going to Rock Bottom since I lived in San Diego. And have always had a decent experience.\n\nI stopped in for lunch. I got the Mac and cheese with NO chicken , it comes with a salad.\nHuge portions, Cold plate and chilled fork for the salad was a nice touch. The Mac and cheese was piping hot and really good. (see pics)\n\nTwo people could have shared the mac and cheese, I couldn't finish it, even though I wanted to.\n\nFriendly waitress, refilled my drink and brought my check in a timely manner.", "type": "review", "business_id": "n4mfUCDXHsg0GH50HzJpug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TPqXQMBaRdn7wYUP_diphQ", "review_id": "nz7rsUgMK6X497NlsNUugg", "stars": 4, "date": "2012-05-30", "text": "Daaaaaaaaaaaaaaaaaaaaaang, their AC feels good here.", "type": "review", "business_id": "YRWuNpZHoSpy0zPpc7TzqQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ud43DdZ6PibSYEtsi18F4A", "review_id": "yeJSQXhPe7OK5JjZ8V_QtQ", "stars": 3, "date": "2012-03-16", "text": "Visited recently for the first time. Enjoyed happy hour appetizers on the patio. Cool place for outdoor dining, the waterfall added a nice background. They offer smoking and non-smoking on separate sides of the patio. Of course you know that if anyone is smoking, the entire area gets to \"enjoy\" the smoke. Being a non-smoker, I would appreciate an true non-smoking area but being outdoors was too compelling to pass on this beautiful day. Another small observation - the tables were too low for the chairs causing you to lean over to eat and the chairs were not comfortable at all. \n\nWe ordered chicken quesadilla & crab cake appetizer. The quesadilla was made w/ green chiles and cheese, served w/ green & red salsa. Didn't care for the red salsa but the green was pretty good, rather mild. A side of sour cream was all that was missing here. Crab cakes were ok, nothing special. Served w/ a nice side salad it made a very good small meal. A side of some kind of orange sauce (chipotle?) for the crab cakes that seemed really HOT to me - skip this next time please.\n\nJust based on the outdoor atmosphere alone, I would definitely come back again.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "jx104chvz7NbkVytXldUGg", "review_id": "VZA-Ghv3smBenqURzNiCyw", "stars": 4, "date": "2011-01-03", "text": "This was a great place to go with the parents for Thanksgiving. Dinner was served family style and it was a ton of food! Started with a plate of 3 different bruschetta appetizers that were excellent. Then had a choice of 2 salads, 2 meats - we had turkey that was served with a focaccia dressing and the tilapia served with a side of some of the best creamed spinach I ever had - then 2 side dishes in addition - mashed sweet potatoes and mashed garlic potatoes that were just okay - 2 pasta dishes - we had the signature Rigatoni D and the angel hair with pomodoro sauce/sausage - and 2 desserts!\n\nIt is a little pricey, but for the amount of food they serve and all the leftovers, I think it's worth it. The best way to go here is with a group and do the family style menu.\n\nI've been to other Maggiano's in Chicago and to me, they're all pretty much the same - good and plentiful food and fast friendly service.", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "pHmpxF9npF7LMIkhGfJ8lA", "stars": 4, "date": "2012-06-29", "text": "Their quinoa veggie burger is the best veggie burger I've had in a long time. It's not dry, it's flavorful and has texture to it. This is a place where I consciously choose to make room for dessert. The bread pudding is amazing, it's light, it's fluffy, it's sweet but not *just* sweet. You know how some desserts just seem to have only one taste setting and they might as well have brought you a huge pile of sugar? The souffle is delicious as well. Nice atmosphere, relaxed but classy.", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "mqyH3CqjMufsm5FccDrjLA", "review_id": "xq1RRWPcda-7oZWihqQU6A", "stars": 4, "date": "2011-03-27", "text": "Its haunted! Isn't that enough to get everyone to go check out Casey Moore's? Who doesn't like Casper?!\n\nSuch a great compromise... you are still right around Mill Ave and if you are an ASU student this is quite convenient. However, Casey's is not part of the typical 'Mill Ave' meat-market scene. Always is a whole slew of people from old timers, to angstful hipster, to stoic gothic, to average joe. \n\nDrinks are reasonably price with a great late night happy hour. Food is fantastic... the oysters really live up to the name 'Casey Moore's Oyster House'... besides they are supposed to be an aphrodisiac so bring your dates ;) \n\nLots of outdoor seating (picnic benches) so you can cram people at tables. The interior is as divey as you are going to get in Tempe ... so I'll take it. \n\nOnly downside is unreliable service.. its been quite hit or miss as far as the bartenders go... but the bouncers/ID checkers are undoubtedly hilarious everytime!", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gQMuqiadl4WXnB58fljphw", "review_id": "Vv0FeEOn7AMmw7iKutmnAw", "stars": 3, "date": "2012-08-31", "text": "Sometimes I really wish I could live in Scottsdale. I met up with two girlfriends there and we had a great time! This visit was a solid 3-4. We went in to take advantage of their happy hour (if you don't the prices seem wayyyy to steep for me). Anyway, if you take advantage of their happy hour you must sit either in the outside patio or the lounge. Now the outdoor patio was beautiful! Prettiest outdoor seating I have seen ever. But not when it is 104 out. (and there are no misters). Why did we sit outside do you ask? Because the bar area (which is tiny) filled up super fast (duh. its yummy!) The indoor ambiance is beautiful. (a little dark) The most awesome lights ever are in there. The service was good and the location is nice (right next to the free parking too!)\n\nI tried the featured white wine, and whatever it was (sorry I forgot) was good! My friend tried the sangria, but I was not a fan. Weird flavor compared to most sangrias that I can't describe.\n\n Now onto the food. People who raved about the flatbread pizzas...I have no idea what you are talking about. I had the margharita and it was just not good. Soggy and flavorless. The hummus was very yummy. Needed more pita with it. Now onto the star of the show: the bruschetta. The vine ripe tomato is yummy. The apple caponata is just as yummier, and the prosciutto and fig was also excellent! Ohhhh so yummy! This is the place to get bruscetta and wine after a long day.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jMyy4KU2SuJ6FhWtgLqRwQ", "review_id": "HeHeLUUaJwwkJgPSWLXowQ", "stars": 2, "date": "2010-05-23", "text": "I will agree with the others that it is a cheap sushi option. But I wasn't impressed. The sashimi was precut, tasteless and soggy (like it was just defrosted). Also, I saw that they had pre-made rolls on the back counter. Come on, how hard is it to make a fresh roll?\n\nI would have given them 1 star but we did get free miso and salad and I didn't get sick from the fish. We got what we paid for.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "khPlizt3ava1xkbtAxHQnw", "review_id": "Y3uVyBwuoydPOBuT72gYaw", "stars": 5, "date": "2012-11-17", "text": "This place is heavenly!!! I have dreams about it on a regular basis. The cookies are so fresh and you can choose two different kinds and two different ice cream flavors. TASTY!", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "8CNEh7fSbLwDuAKhLjDPKQ", "review_id": "BkZOHEAVnwTTdbBhcl3VUw", "stars": 2, "date": "2011-02-18", "text": "Stopped by one night late, only one guy working, probably the manager/owner based on him being on the phone and looking like he wanted to gtfo dodge attitude and not wearing anything quiznos related like most workers do... \n\nFood... subpar... it's a chain... it's hard to fuck up... but he did. There was no care in the making of the sub... I pretty much watched him throw it together, run it through the toaster tossed some lettuce on and wrap it up...\n\nI had chips in my hand... wanted a meal... he didn't ask and just rang it up w/o the drink... I asked what size cup to grab and he said \"oh you wanted a drink?\" Of course I wanted a fucking drink... I just stared at him like wtf man? Told him to keep his drink cause he'd have to re run my card... \n\nsrsly it's a chain that gives you all the stuff and training to make a sandwich like the other 1000's of quiznos around the country... and you can't do it. If you hate customer service don't buy a franchise sandwich shop.\n\nTwo stars... lucky it isn't one. I'm out", "type": "review", "business_id": "Uty42E_VZV_iGMYiY_WB5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x_XnF95v-Bwl3_n11FALoA", "review_id": "huPT-KNdfDmrSFNW1yYQhA", "stars": 4, "date": "2012-12-15", "text": "On a Friday night restaurant was busy, but the service was top drawer. Food was very good and we will be back. Prices reasonable.", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FdxUhQ2orufg_eMgWAoH6Q", "review_id": "8UGbKHQseX7Q1Bt02vPCww", "stars": 5, "date": "2011-07-12", "text": "Yum best donuts in Phoenix.", "type": "review", "business_id": "ytcm2DXuJWKPTqCtr6uJ4A"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "2JZqlmRzuAWuSZ6IwUHudQ", "stars": 5, "date": "2012-02-13", "text": "Alright we are going to say that this place is Awesome! The service is outstanding and the food wonderful! We came here for Breakfast on Sunday Morning . They were very busy ,but, we did not have to wait too long at all. Our server Colleen was great! She greeted us right away and brought our drinks very quickly. The food was very good and just love their Potatoes. The menu is fantastic! Lots to choose from. We like the decor and lots of parking in the lot. Nice Place and we will be back!", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YEVokKX9G9PgHJ_gK4gO_g", "review_id": "MDtjJub6L_2dgkSxF1lipA", "stars": 5, "date": "2010-04-20", "text": "This place is a gem. The food is amazing. It's cheap. The service is good. My favorite part? The place never changes. I can walk through the door and Ali already knows my order. The Chicken Shawarma special comes with their hand-made pita - so soft and delicious. The chicken is seasoned perfectly and comes with a yummy little dollop of garlic sauce. I've never found better hummus in my life. I've had it all around town, in New York, in L.A. (ick...L.A. *shudder*). SO good! The iced tea has a hint of rose water. OH and the gyro? Hands down, the best in town.\n\nDid I mention they have a market attached? Talk about the best price on spices in town! The spices come in little plastic sealed pillows, so get some spice jars from Ikea and stock up!\n\nI couldn't get through this without mentioning the lamb tongue. I am no connoisseur of organ meats, but this sandwich is like the most tender lamb you've ever had in your life. Shut up and try it.\n\nThe only sad part about Haji's is that they close early. Usually 8pm on a week-night, but totally worth getting to-go orders if you can swing in on your way home from work!", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bl6qTJt0UkFoHtLIm2PdPQ", "review_id": "Cl4HwB-TN7N3rp-bTPv58A", "stars": 4, "date": "2012-02-22", "text": "I went during the week with my two young children. We met a friend who also has a young child. Nice use of space. We didn't watch television, but it does have a few flat panel TVs that would be nice during football season on a weekend. The space was child friendly - nice menu although they didn't offer crayons to kids, which they said they were in the process of incorporating. \n\nMenu was huge and offered lots of traditional breakfast combinations. I had the waffle with eggs and sausage. I ordered the pigs in a blanket for my children. It is prepared with sausage that was fantastic. The perfect amount of spice and wrapped in pancakes that were also really good. My waffle was wonderful. Really light and fluffy but with the perfect amount of crunch on the outside. My friend ordered the French Toast, which was coated in captain crunch cereal (this sounds odd, but it was incredibly good and the bacon served with it balanced out the sweetness) and served with her choice of bacon. She ordered the applewood smoked bacon. It was excellent. They have five different types of bacon, including one infused with jalapeno, which I will try next time. \n\nThe service was a bit slow, but understandable given it was the first week of opening. The staff was very friendly and attentive. I will definitely be back and would recommend to anyone for a nice neighborhood breakfast spot!", "type": "review", "business_id": "fDZzCjlxaA4OOmnFO-i0vw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "QXwoSi_A4OpOBsyc1AdIgQ", "review_id": "iaJ-DFL3je6oxcutTxjzkw", "stars": 4, "date": "2010-11-14", "text": "The food is fresh here. The quality and taste is consistent. The service is nice and polite even though a couple of the servers don't speak much English. The building is a trip - the outside looks like a doublewide trailer on a foundation, but the inside has a homey Northeastern Mexico look. On the other hand, even though the guacamole was fresh, it's a little bright and lacks strong taste, and the red hot sauce is too watery(it's still got that kick). Overall, if you're not itchin over substandard guacamole and marginally inflated prices for the location then it's a great place to chow. I give it four stars because the food is good, fresh, fast and the service is friendly and quick.", "type": "review", "business_id": "cgNIBHS2mLdbTRiodAT6EQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "JDZNoAax4s1DAAbOK1JLJg", "stars": 4, "date": "2007-03-07", "text": "Avanti! Come in!\n\nThis place is cool, I did get a mild mobster vibe, but that's alright with me. And I think the food is fantastico. Really, really good homemade pastas and an extensive wine list filled with great choices. If you're uncertain which wine would go best with your meal, don't hesitate to ask because the servers are pretty friendly and knowledgeable. \n\nTry the crab and shrimp cakes for an appetizer and the tortellini portifino for dinner- both are delish.\n\nIf you're a dessert lover, get either the cream brulee or the tiramisu.", "type": "review", "business_id": "vvA3fbps4F9nGlAEYKk_sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "vly1KuEvBdRdQRVd2xY7og", "review_id": "bz-bfn67R8awWNI_2OYQIA", "stars": 5, "date": "2012-08-11", "text": "We decided to eat here on a whim. My husband got the burger br\u00fbl\u00e9e and I got the beach house burger. Both were fantastic. The buns were perfect and we both agreed these were the best burgers we had had in a really long time. The sweet potato tater tots and French fries were also amazing. For $27 it fed our family of five. I'm definitely going back. Friendly service, casual atmosphere, and clean. Thumbs up all the way!", "type": "review", "business_id": "pAHUC05ceak48e745i6G4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I62z57QNcj86cXxgSrHcOA", "review_id": "N8iWLV7rcfbfD_ahNzrkeQ", "stars": 3, "date": "2012-11-18", "text": "We arrived on time however our table was not ready. Offered a place in the bar but was told we cannot order for 30 minutes?!\nSomewhat bizarre thing to be told. Had a total of eight dishes, some were fantastic, others mediocre. Despite the fact that they are the hot new thing, a customer should never be told that they can't order for 30 minutes. That exudes arrogance. Cocktails pretty good. Might give them another chance.", "type": "review", "business_id": "Xk3inJcuBGLhavUcdlINZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Foe_x9I0OhY1hp62BtFSgQ", "review_id": "LahW2hidQK4L15RN9RPUPw", "stars": 5, "date": "2012-06-21", "text": "I have lived steps away from this place for years and a few months ago, my boyfriend suggested I give it a try. Since I'm very picky with mexican food places, I had doubts, but boy was I wrong! All I can say is wow!!! This place is amazingly delicious. I thought I would never find a place who served authentic Mexican tacos and out of the blue I found it in a hole in the wall strip mall and just steps from my house! This can be a good thing, but also a dangerous thing because I am trying to lose weight. \n\n\nThis place is so good. I got two tacos and I know I will be going back again and again.", "type": "review", "business_id": "flMu0Tz5RsaMzr6K8kg1EA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "8AT9WSphWIIC2k8lh__izA", "review_id": "PikrkILIWSQiT5Oyi3MZ1w", "stars": 3, "date": "2011-04-17", "text": "A bit surprised at the high prices but figured that the \"trendy factor in old town\" and the atmosphere was the reason because the teeny portions of the food and the quality is just GOOD, like the Good egg, not great, not bad, just good. \nNo happy hour?\nAnd Too dark inside. \nLots of pretty wait staff. \nMy first suggestion would be to fire grill the mahi tacos and not batter them, they were not that flavorful. The side dishes of street corn and some potato chorizo thing were very good. I wanted to try the guac, but 12 bucks for an avacado with some garlic and cilantro? How about trying to make a good ceviche?\n\nMy hubby and i thought that Rubios rocks in comparison, we love the shrimp tacos and the pablano and portobello tacos.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "u4ZlL_d-sZbs2uitBvQLUw", "stars": 4, "date": "2011-02-13", "text": "This particular Wal-Mart has gone a major renovation. It is really clean store and well kept. Unlike most Wal-Marts, they have put a Subway inside instead of a McDonalds. This is now Super Wal-Mart, so it has even groceries. The interior of this store looks much like a Target, but has the Wal-Mart prices. You can practically find everything here except alcohol. It is right next to the 101 Freeway off Chaparral Exit, so its easy to find. Most Wal-Marts are notorious for long waits, but there is self-checkout as well, which speeds up the process.", "type": "review", "business_id": "yewofYCtFEMQ6BKd5zwQUA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-ZVmHZcdn_OH52QWwSMimA", "review_id": "T70lUpub5MgNq6Ap-iulRA", "stars": 1, "date": "2012-08-04", "text": "Bad experience...Terrible service, terrible food.\n\nFirst of all, I was organizing a Happy Hour and Dinner for a retirement party that we had on Friday, August 3rd, 2012. Reading the fine print on the website it did say that happy hour prices were in the bar area, although because it was a party of 30 we could not fit in that area. One of the attendees called the restaurant and spoke with the Manager which he confirmed that we were going to have happy hour prices. It turns out when we got to the restaurant they thought we were another party for 40 people that booked the spot for happy hour, but the attendee that spoke with the Manager was misinformed and they only gave us one round of happy hour prices.\n\nSecond of all, our server was awful. There were a couple of servers that actually waited on us because there was a table of 10 people. Anyways, she took wrong orders and did not listen to our needs and was rushed, rushed, rushed. Then a new person came in late on our table, and she was not even served when she saw her. We had to track her down. I am sorry but the amount of restaurants that I have been to, this was the worst service ever. I mean I had servers that actually new who was new at the table and took their order once they arrived.\n\nI ordered full size of fried green tomatoes, 1/2 order of fried okra, and a plate of sweet potato fries. The server gave me my fried green tomatoes, but gave me full size of fried okra and the sweet potato fries was horrible. So I had the server take my sweet potato fries because it was awful. The server took it away without even asking me if I wanted another batch. I don't cook much, but I probably can fry those tomatoes alot better than the restaurant. I told the server I ordered 1/2 size of fried okra, and she said ok and brought it back to the kitchen then she brought the same dish back and said that she will just charge me for the 1/2 size order. \n\nAnd lastly, when the server gave us the bill, it was all separate checks and did not even do that right. The server was putting stuff on the bill that did not even belong on the check.\n\nSo needless to say...I AM NOT COMING BACK TO THIS RESTAURANT AGAIN.", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "-sNSP8_vSbyjDxeWu9oO6w", "stars": 2, "date": "2010-01-23", "text": "My wife and I were downtown with some friends, and decided to check this place out. I ordered a pasta lunch, and chose Penne Alla Campagna and another penne with tomatoes and Mozzarella. Meh, it was just okay. The food was just okay, kind of bland and a bit overpriced. I did snag a small slice of pepperoni pizza from one of the kids at our table that was actually the best part of my meal. Would I go back, nope no sir", "type": "review", "business_id": "ssSeK9MYRCUjoabppekwoA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vNFxfUDTPgZRgV3EHnkmJg", "review_id": "ygTUOgZn4aXyDMToOq6c6Q", "stars": 5, "date": "2009-04-26", "text": "One of my favorite places to go with the kids for lunch. Bring a small amount of $ - grab yourself a table under the trees and enjoy the afternoon away while your kids play within eyesight. The entire \"patio\" is really a large, fenced grassy, tree filled area with 2 volleyball courts, multiple gathering areas, ping pong, horse shoes, jumbo checkers and even another fenced in area full of sand and toys for the kids.", "type": "review", "business_id": "b3mfNkad2uxdlKLrS3hDCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "0FBHDK_lXbAdSRopnOwyVQ", "review_id": "CCMftMLcRYi6uQWSsNnelA", "stars": 4, "date": "2012-06-09", "text": "Best pizza Ive had in Arizona hands down. My best friend lives in AZ, my friends and I stopped by this place and enjoyed surprisingly wonderful tasting pizza a must try. When I went here they were playing underground hip-hop which I am a fan of. It made it a great atmosphere to enjoy my food. I highly recommend this place I live in California and this place still comes to mind. Great for college students and the fam bam.", "type": "review", "business_id": "Shl6PtJERnowSJSC4IHbYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8sPCbR5LCbCVOrQaAFR_QA", "review_id": "Avr8PwwX8YFTUMlhPpxwUg", "stars": 3, "date": "2011-03-11", "text": "The banana pecan french toast was great - order a 1/2 order and split it with someone else for \"breakfast desert\"!\n\nRest of the food was definitely better than ok, but dropped my review to 3 stars because restrooms weren't clean and had no hand soap -- where are employees washing their hands???", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AMTubqx4AT8ZnrFvvJng2w", "review_id": "ptaV9AQw_78TlKIohuwe1w", "stars": 4, "date": "2010-05-02", "text": "I had my first meal at Miele's last night, and was pleasantly surprised. I purchased a Groupon to the restaurant a month or so ago, and am glad that I did because otherwise may not have noticed this cute place amongst it's neighbors in the strip mall.\n\nWe started with the brochette, and spent the next 10 minutes raving about how amazing it was. The tomatoes were crisp and fresh, the chopped garlic was very complimentary, and the oil had a fantastic flavor. Definitely a good choice. For dinner I had the spaghetti and meatballs and my boy had the chicken toscana. Both had a very authentic Italian flavor that accompanies food made with care. The meatballs were everything I was craving...a little spicy and filled with flavor. My portion left enough for leftovers, but Brent ate his entire meal. We both left with a full belly and intentions to return again soon.\n\nI have no complaints about the food (delicious!), but docked the restaurant a star for two reasons:\n\n1. The lights are way too bright. While I appreciate that the restaurant is more casual than some Italian joints I've been to, a dimmer switch on the overhead lights could do wonders for the atmosphere!\n\n2. One of my favorite treats at Italian restaurants is bread dipped in tasty olive oil with fresh ground pepper and Parmesan cheese. The bread is delicious, but the prepackaged butter that accompanied it didn't impress me. I also would have liked freshly ground Parmesan on my spaghetti.\n\nWe noticed a lot of pizzas being picked up for takeout, and both thought the bar looked like a cute little place to come have a drink and a bite sometime.\n\nHighly recommended and a great way to support a local business owner in Tempe!", "type": "review", "business_id": "f7Xe9Xzoafhi_EY4xwEpSw"} +{"votes": {"funny": 4, "useful": 5, "cool": 4}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "6b5sifuzXWw0cMd_8c9how", "stars": 3, "date": "2007-10-23", "text": "Uh-oh. Where am I? \n\nThe view from atop the mountain is superb. The city can be seen in all directions. Look, there's Downtown 1 and Downtown 2. And a bunch of houses under construction. And look at that sky. Wowza. \n\nOk, so stopping to enjoy the view is one thing. Stopping to figure out where the hell you are is another. \"Don't worry,\" I told my friend. \"This city is laid out in a grid. If anything, we can walk down the other side of the mountain and cut back across on the street.\" Oh, little did I know. \n\nLet me give you the back story. I've been to South Mountain twice. The first time was Christmas Eve 2006 when hardly a soul could be found. I met a friend there and we blazed our own trail. He always had his jeep in sight, so no harm in getting turned around. I trusted him to be my guide. \n\nThe second and last time I hiked South Mountain was in February. My best friend flew in to Phoenix for the weekend (for my birthday) and since the weather was so great (in comparison to Detroit), she wanted to be out in the sun as much as possible. No problem. I knew where we could go for a good hike. Little did I know we'd get lost. \n\nWe parked at the 24th St. entrance and picked our path, the Mormon Trail. We were on our way to discovering religion, we joked, passing by several other hikers. When we reached a recognizable summit, we stopped to appreciate the view... and then ponder our location. Should we turn around and go back the way we came? Were we still on the Mormon Trail? Where were the markers, the loops, the signs from God? We looked at each other, each of us having a take-no-prisoners personality when it comes to conquering great piles of rock. \"Onward!\" we shouted, punching the air with our fists. \n\nA little while later, we were once again stopped, our eye squinting against the retiring sun. I wouldn't call us \"lost,\" as this point in time, but that's only because I'm too stubborn to admit such an error. \"Let's ask somebody,\" I suggested. So, the next hiker dude that passed by, we stopped to ask him, \"Will this trail loop back around?\" \"Where do you want to go?\" he asked. That's when I realized we had tied our tennis shoes tight only to march into a rocky labyrinth. I told him where we parked and he said it was a good 2 hour hike back to our car, yet about another mile or two to the 48th St. entrance. Oh, no problem, I thought, since the city was laid out like a grid. Little did I know there are exceptions to that. \n\nWe pressed on, thanking our impromptu guide friend. We hiked and hiked and hiked, passing by fellow hikers and mountain bikers. Finally, the trail opened up to flat land. We were close, or so we thought. When we reached the end of the trail, there was no parking lot and no street connecting us to where we needed to go. Instead, there was a long gravel road that weaved itself through a golf course. W.T.F.\n\nWe set out to walk the long gravel road until we hit Baseline, in which we were determined to cut back Westward and find my car, the only way we had of getting anywhere. The sun was setting. We had no time to waste. \n\nHaving hiked about 15 miles already, our feet were heavy, like cinder blocks. But, we continued on. \"Let's hitch a ride,\" I suggested. People were gathering in their wonderful Ford pick-up trucks and jeeps. Hikers are friendly, I thought; somebody was bound to accept our plea for help. We opted to just do this ourselves. \n\nThat's when a car slowed down. \"Ugh, creep,\" I thought. Instead, it was our helpful hiker friend from the summit. He asked if we needed a ride. My best friend and I exchanged glances. I thought, \"We can take him.\" After a 70-second long pause, we accepted. She hopped in back and I rode shot gun, leaving my seat-belt off and the door unlocked, in case of a speedy getaway. \n\nWe chit chatted on the drive down the road, which lead to another road, and then another and another, until we finally touched Baseline. Where the hell were we? That's when it hit us. We would have been walking another 7 miles on foot back to my car. All these windy, disjointed roads. Damn golf course. Damn South Mountain. Damn unmarked trails. It should change its name to the Moron Trail, for we just blazed it enthusiastically. \n\nThe kind hiker man dropped us off at my car and drove away. With a sigh large enough to blanket the skyline, we unlocked my car, got inside and drove away - away from South Mountain, nature's beast and practical joker. \n\nWe counted the miles and the minutes it would have taken us to get back to my car. Another hour, at least. The sun would have set by then and we would have missed our dinner engagement. Lucky for us, we stopped the right hiker friend at the right moment; otherwise, I may never have made it home to write this review.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Dngg6R24eGnEry89Tf926A", "review_id": "-cDLdPqZyJwslg500NjwOA", "stars": 5, "date": "2012-05-28", "text": "Love this place. Great Happy Hour.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1wIeo3yUIZ7g7OWdzQ0vfA", "review_id": "t7bWOojFVqeOtb-RFnxmAA", "stars": 3, "date": "2012-09-26", "text": "I ordered a cappuccino, my typical order at a new place and it was very good with a pretty heart design on top which made me smile. The espresso was perfect and did not require any sweetener. I also got a blueberry muffin which wasn't very good, perhaps it was low fat or something but I am very picky about pastries anyway. \n\nMy biggest problem with this place is the fact that they do not have a bathroom. Coffee makes me have to pee and when I discovered this and had to walk all the way to the baby gap because the place next door with a bathroom wasn't open yet requiring me to pack up my computer and leave my drink and food unattended, it was a bit undesirable. I know it's a mall type area but it still surprised me for a drink/food place. It does not set the tone for a place to spend a lot of time which may be their intention. Also, I love John Mayer but they played his same songs over and over again. Perhaps mixing it up or putting on a pandora station would be better? \n\nThe staff was nice and they have free WiFi. \n\nI will return for the espresso but get it to go.", "type": "review", "business_id": "3OF6i6LTzRXpwNgodv7aeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hCVIyb8z0vzGXxtn6V1b8Q", "review_id": "omFFL7IBSlHGMTwkijA-BQ", "stars": 4, "date": "2010-11-27", "text": "HARISSA SPICED FRIES. Need I say more? The wine list is exceptional, and they are open late, both of which are mandatory if you're a boozy creature of the night like me.\n\nOur server was quite attentive without being intrusive. Our wine glasses were never dry, and she instinctively sensed that it would be a three bottle sort of night and suggested additional bottles to go with our meal.\n\nThe food was of a generous proportion, so bear this in mind when ordering. My Fez Salad was fresh, crisp, and the combination of the dressing and goat cheese hit the spot. Our hummus platter was heaven-sent, and had just the right amount of garlic. The lamb kisra was also exceptional, and immediately devoured. The aforementioned Harissa fries were fiery and I often dream of them. No, really. If Fez was located in Tucson, I would gain at least ten pounds from just eating harissa fries every day. Harissa, for those of you who are unfamiliar, is a North African chili-based spice that has a lovely smoky quality. I highly recommend it!\n\nWell, Fez. I'm in Phoenix next weekend. Prepare yourself for round two.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "HE8AOm5mO_sgap7_coM0RQ", "review_id": "0bVf_Zx9qzKeOLu_CkrkvQ", "stars": 1, "date": "2012-02-04", "text": "Nasty workers and over priced trash", "type": "review", "business_id": "iWlaj4R-2BTsWR7PwL90BQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rg4gzsz3w00vRlIOXcGUIA", "review_id": "0lF4gUlgdFot80CAQdzd7w", "stars": 4, "date": "2011-03-24", "text": "Went there to photograph a concert. Great crowd and fun quirky locals. Loved the dive bar ambience without being trashy/dirty. The lighting for the show wasn't great but the sound was good. Great beers, too. Get the 99Shillings.", "type": "review", "business_id": "Cp5_NSJFNgylD5SUdmT8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oSqsvEHLxowiQiWNqsd7zA", "review_id": "eVkl8le195A8e1As21bWJg", "stars": 5, "date": "2012-10-02", "text": "Dr. Jones was very friendly and understanding!", "type": "review", "business_id": "m9i6aX4nmuTwqO5PjeLNZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Myya0TP7RshcuHm9HO4dPw", "review_id": "K-wADqFPVlhBRz0P16AuCg", "stars": 2, "date": "2012-06-18", "text": "The noise makes it almost impossible to talk. The staff looks like the customers or the customers are better dressed. Staff is wrinkled, sunglasses on the back of their head, it's hard to know who you supposed to ask for help. Once you know, they are responsive, friendly and willing to please.\n\nThe food is fair, dressings, sauced are too watered down. The food is minimal in terms of amounts for the money. It is a favorite among the neighborhood but these are now the adults whom hung out at the old Monastery behind Whitney & Murphy funeral home. I am beginning to think my fellow Az peeps have no idea what good casual food is about. The service in AZ is terrible, all of customer service in businesses here is terrible, restaurants and retail.\nwatch out for the Valets, they drive customers cars too fast around the parking lot, here and Arcadia Tavern!\n\n\nI am entitle to my opinion since I have worked my way through school as a waitress/bartender , valet service manager and service consultant.\n\nDeb", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8iCo1fXYvFPAPbL3cYBXlw", "review_id": "E8uqj0y_ShvN7cp9qvXeHg", "stars": 4, "date": "2011-11-11", "text": "Surprised by unexpected North Phoenix location. Attentive but not bothersome service. Antipasto platter shared among 3 people plenty for all. The Chianti was splendid! The entre arrived piping hot, very impressive. The food was delicious. Lovely intimate dining. Reccommend.\n Only down side was it became so dim, had a hard time reading menu. A bit more uplighting, please.", "type": "review", "business_id": "hqVbmZNLTdR2y7G7oJu9vg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "cr9gHsAoIxPmelFl8CpMfA", "stars": 5, "date": "2012-04-27", "text": "Great library...take your canned food to donate all during APRIL and they wave off your fines- GREAT cause, GREAT deal and now fine free!", "type": "review", "business_id": "rRSrENv9j_rLnehMlQEukQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "wpzKJORxvWVfXL7AdKjhvg", "review_id": "MLtzUWelRFIBJ3cV5JUeKA", "stars": 3, "date": "2012-11-16", "text": "Ok here goes. I'll start with the bad and finish positive. As far as Pizza goes, which is what we went for, I was not that impressed. I must say I'm more of a NY style, by the slice pizza kind of guy. So the pizza did not hit the spot. Maybe a little too fancy for my palette. (You can take a boy out of the ghetto, but you can't take the ghetto out of the boy, so for me simple food is always better.) Obviously, there are enough people who like gourmet pizza as this place has amazing reviews, so I'm just one simple man.\n\nThe obnoxious fat chick sitting right behind me proclaimed to her friend, \"I'm no longer investing time in men who aren't available!\" Put down the pizza and grab a dry salad and shut up!! That's not really the restaurants fault though but I did have to endure that convo through the duration of my meal.\n\nOur server was very nice however seemed very rushed and at times we had to wait for refills on water and for the check. The atmosphere is very romantic outside with light trees and live music. They even turned on one of the heaters on the patio for the lil lady. We has the Crepe with Nutella chocolate powdered sugar and ice cream and it was very very good. \n\nBottom line. I'd be willing to come here again and try something other than pizza.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "zHH2Iz49wCZYYDLBTv0YOg", "review_id": "NbP-kkjLbqHnlRzSPNQ-aw", "stars": 4, "date": "2008-06-17", "text": "I've never actually eaten in the restaurant - Swaddee is one of those places I used to pick up and take home when I lived in Chandler. So, first their take-out process: they've never botched an order, food has been ready within the time frame given each and every time, and I'm almost always in and out in a flash. The food: I've sampled various veggie and seafood options, and they've all been equally delicious. Since I've never been inside for more than a few minutes, I can't really vouch for the atmosphere or the service, but I stand by the food. A little pricier, perhaps, than the Thai Basil down the street, but totally worth it.", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "9OpjxLRhiV9YImoMVHlxLQ", "review_id": "TrYFsKx0SUj_NmZiyv4wFA", "stars": 5, "date": "2009-07-23", "text": "I have been meaning to stop in but keep driving on by. I am SO GLAD that I stopped. I was pleased the moment I walked in. The store is well lit and cheery, the books line the wall making you feel like you're walking into a oasis of knowledge. I found 10 copies of the book I was looking for (I needed 10 copies) and the owner said he will order me copies of two books he didn't have. Also, he offered his community room for my book club! So nice, very friendly, definitely the kind of place we want to encourage.", "type": "review", "business_id": "gf3hwItAL3ssLLa1rh8QIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SW5RpjVtyMhxdzuA8dOdYA", "review_id": "FqfWt22uSDgca4dRK4PIgw", "stars": 5, "date": "2012-12-20", "text": "The best gluten free pizza!! Absolutely loved the avacado pizza. So delicious. The wait staff was great, very friendly and invited us to a wine tasting while we waited. Parking is limited, but certainly not an issue to complain about.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "qJb1Z2tSTBu89IAE1mPx6A", "review_id": "ZvsS9z4uuL2yc7jtAyk-zA", "stars": 1, "date": "2012-04-06", "text": "The portions are too small, the plasticware just reminds me of Jack In The Box, the serving tray is right from a mall food court, and the menu selection is drastically reduced. You can't really enjoy conversation or relax at lunch listening to the kitchen scream out order numbers to the customers. The flavor mixing softdrink machine is fun, but gimmicky. The food quality and flavor are the same for the most part, but you do leave wanting more...\n\nI won't be returning to this location.", "type": "review", "business_id": "XvQDPOu2oTdNPx8kiiTYow"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "d1o01mHoY7Yv5hzDZE9VBg", "review_id": "5CtSOHNUgJ57bkBQZeX5tg", "stars": 5, "date": "2010-03-26", "text": "I went in to check out the new drop of denim that the boys at The Phoenicia Association got in and left with a new pair of Naked and Famous Raw Selvedge Denim, Weird Guy cut; and a shirt by Wrath Arcane with the sickest little pocket that drops from your breast to your waist (perfect for my lighter and cigs) with a little zipper at the bottom. Spent a nice chunk of dough but nothing crazy for such a nice combo I can wear to dinner with the parents or to Old Town/Downtown on a Saturday night.", "type": "review", "business_id": "aWFzJ5kGhEH5Dve_D8u-0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jAVKFq7iAE_IQYdRT--hiA", "review_id": "MPm_rk8IdBeOenP-kOvu3A", "stars": 4, "date": "2010-10-25", "text": "Food is good. Service is pretty good.\n\nIts a restaurant that definitely reminds you of LA, as it is very loud in there.\n\nDefinitely will go back.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fjD-bmdoT5PrdV0ryZ8IKg", "review_id": "anzXqMA6LR_YngiQJBrTgw", "stars": 5, "date": "2011-07-25", "text": "The best food I have found the area and the price is right. You get so much food you have to take home. Get there early to get a good seat fills up for lunch. Priced just right.", "type": "review", "business_id": "R7YlKfLpoFDAJQB9hBcQJA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "-kIvLyWpY17aRa0vPp-RmA", "review_id": "vM7LSLjxyH1RQ2xwYrXHIg", "stars": 5, "date": "2012-09-30", "text": "I love breweries and I love Four Peaks. One of e best breweries in Az. We came here on a Friday night but had no trouble getting a table. This place is huge and packed but still room to move around. We ordered the Hopshot IPA which is a great beer! I've been here a few time and always had a good experience. I can't wait till the pumpkin porter coming Oct 1st!!!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "bVm6S0tZ-XJ_WcsbNbWNSw", "stars": 1, "date": "2010-01-28", "text": "Cold, under done chips. If a Mexican food restaurant can not get this staple right how can I expect them to get much more right. I arrived for a party that my autocross group was having. Every table had chips and salsa on it. Sombreros were used as the server platters. Senor I don't think this even meets health code. \n\nDinner was served Buffet Style, one of the dishes was called \"fandito.\" I can't think of a less inspired dish. It was simple pasta with some Mexican flavors thrown it, a dish that your mother would make if she had leftovers from Mexican Italian nights. \n\nI like really like Mexican food, however I left this place hungry as I did not even want to try any of the dishes other than the salad.", "type": "review", "business_id": "MEOC6ng0jPhQOX_BzEzf_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qTJw91zBn696dxp8RpiZfA", "review_id": "riaWMmMx6n1IFAjfcgIzoA", "stars": 3, "date": "2011-04-19", "text": "Better than rubio's or filaberto's by a long shot open late and has a drive through. When i walked in it was packed and i noticed how cheap the beer and Margarita's were. Wait... I don't remember having ever seen a hole-in-the wall Mexican spot serving booze before (wonder if they sell it via drive through). The menu is like a Jewish Torah being that it has a 100,000 words and is very hard to read. The tacos and burritos also come w/ a side of toquitos that is buried under chiuaua cheese and guacamole. Shrimp and fish taco's are made on tortilla's are made in house. Food is super cheap and tasty. Its too bad that all their locations are in the middle of nowhere.", "type": "review", "business_id": "L8STRioAgDx-_FRFuuUU2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "yQq5eGvBj90w4O8NwvbCRg", "stars": 4, "date": "2011-02-09", "text": "Accidently discovered this place because of the Chinese New Year/Vietnamese Tet Festival of this year.. very nice surprise that the buns here are bigger and have more filling than the buns at Lee Lee's Market. I know, I know, there are probably many more places in AZ that sells these, but I honestly don't know of any other places that sell these other than Mekong Plaza (here) and Lee Lee's in Chandler. \n\nIt's around $1.30-1.40 a bun and they seem very fresh because the times that I've came by, someone is preparing and cooking them in large ovens in the back. Very nice that it is located by the Asian market and shops. They have a frequent buyer card you can pick up in the front (for every $100 you spend, you get $10 off your next bakery purchase). This is gonna be in use for me since I can see myself coming back countless times!!\n\nP.S. Please change your outdoor business sign to \"AA Wholesome Bakery\". Since it says \"Mekong Bakery\" on the outside, it confuses people.", "type": "review", "business_id": "WwFsYHahQIMzuilmOAfR8g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VCZ42oA9yRKB93DQI5cHuA", "review_id": "4-RIg_uFHneQch6Pvv45TA", "stars": 4, "date": "2009-10-03", "text": "It was a unique dining experience. The staff were incredibly nice. They are the MOST professional staff in the entire Valley!!! They remembered our family on our subsequent returns.\n\nThis is a fun place for foodies and out of town guests with adventuresome palettes. Depending on your family this can be a fun place for family outings. They were very accommodating and made a dish my 5 year old enjoyed!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "vWCksqJJfYjGGdD-yb9qGA", "review_id": "-z05Jx-_6dgvcnNQCz7o1w", "stars": 4, "date": "2007-12-27", "text": "\"Tanked Fish\" is one of my favorite places in the neighborhood and we frequent it often. \n\nRolls are of a great quality and there are some rather unusual and pleasantly different ones there. Price is very reasonable. And drinks selection, if not overly excessive, is \"Cool\". Place is not riddled with kids, like many other places are, and you can actually kick back and have a conversation there.\nOne one of the weekday evenings they have this special thing where you can request your musical choice from this rather large list. Its real neat. What else is neat - their happy hour on Wednesday (I am not sure what day exactly to be honest. Call them if you really want to know.), when drinks, starters and most rolls are 1/2! This really makes a huge difference. \n\nI gave this place 4 starts. This is pretty much as high as it goes for me for this. \n\n\"I like\"\nEugene", "type": "review", "business_id": "oMw1SaH_zEbOOufTsGuk6w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "-pN7vtnFxLOY-BEyWU2UHA", "review_id": "Vro4FDX0QmghJO4YA8uXmQ", "stars": 5, "date": "2012-09-18", "text": "Great service by Angela and their Doc\nFirst time I don't have to wear reading glasses as they switched me to a mono contact\nVery enjoyable experience and very quick\nHad a issue with a contact and they track a replacement done right away\nDefinitely recommend", "type": "review", "business_id": "Zpw07SfLkkzqKeRk07GWhw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "9D-RAOVRTnALk-GFvhbJcw", "review_id": "XnRtNrKAisgJQIxb9dQT7g", "stars": 4, "date": "2007-10-13", "text": "I was surprised here for my birthday and it is a very romantic, old-school, traditional great service kind of place. The low lighting and small dining rooms make for a great ambiance. \n\nThe dual menus, one french-ish and one southwestern-ish are sort of on odd pair, but it is Scottsdale. The appetizer, shrimp \"beinets\" were simply breaded, fried and very greasy while the lavender dipping sauce and salad that came along with were much more appealing. Both our entrees were wonderful and perfectly cooked - so well in fact, the sides were essentially meaningless, even though I remember them as fairly good also. So if you find yourself here, keep the Ahi Tuna and the Wild Boar in mind. The wine menu is extensive and filled with surprises. \n\nThe wait staff were classic in service, yet easily engaged in conversation and very friendly. They only acted snobby for the people who expected it, we on the other hand provided the Diamondbacks/Rockies scores and had a great time! We ended the night with great Grand Marnier birthday souffles. \n\nGreat place, people and food - we would go back.", "type": "review", "business_id": "VpSiOW1PapVmZyyRBK_GBQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "C0_XvWKIc6WU7Br95pvcNw", "stars": 3, "date": "2009-03-03", "text": "I am not happy with Sprinkles, but I can't really subtract stars because I make better cupcakes than they do. Let me first start with the location. It's very stupid. Very easy to miss and it blends in with everything else. No personality. I guess when you are so famous though, you don't need \"personality\" to get people in. Second of all, I hate Scottsdale. Again, I can't subtract stars for this, it doesn't make sense.\n\nAs for the cupcakes, they are really only okay. I will set aside my disdain for chains and judge solely on the quality of the cupcakes. I ordered a red velvet and a peanut butter chocolate. The red velvet was very plain. It lacked the subtle cocoa flavor and the lovely tangy flavor of the buttermilk that should be peeking through the copious amounts of red food coloring. It wasn't. I just tasted red and cake. Not really that great. To top it all off, my cupcake crown popped off the second I picked it up. This pissed me off. It essentially ruined my first bite. At least I could still eat it. The cream cheese frosting was so-so. I really like a big bold cream cheese flavor to pair with a red velvet, and this was barely tangy. It was super sweet, slightly grainy and it got that crust on the top from sitting out too long. The red velvet overall was kind of meh.\n\nThe peanut butter chocolate was definitely not what I had hoped for. The cake was very dense and peanut buttery, but lacking in sugar. It was studded throughout with chocolate chips. The frosting was chocolate, and it's texture was nice and smooth. It was covered in chocolate jimmies, I just love those. This cupcake was okay. The lack of sweetness in the cake made me wished it was saltier. A saltier cake paired with the delightfully sweet frosting would have made for a much more grown-up and sophisticated cupcake. It was just okay as is.\n\nSprinkles, I will not be back. I don't like you. Good luck in all you do though. I would never wish bad things on a cupcake bakery.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vC-9ROCPBhWuXtMcBNeDiQ", "review_id": "YCsB_ur8R6fQK9G5cH_0wQ", "stars": 2, "date": "2009-06-10", "text": "\"trendy, loud-music, ok-sushi!\" - 2/5\n\nWhen we lived right across the street from the Sushi Brokers, J and I used to go there at least once a month for its happy hour. We probably had been there at least 8 times with friends and family. I have to say that the quality was good for the start but went downhill since then. The price was right if you go during the happy hour. Other time, kinda expensive with the quality and service. It was a seen-to-be-seen place with ok-quality sushi.", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "RNSGaQSkC56tGPfKt9lHjQ", "review_id": "SJRnBlTtP_lasrYoKPhk2g", "stars": 3, "date": "2009-01-17", "text": "I had a good time at Monkey Pants, we celebrated a buddy leaving for basic training. I will have to go back again. And the one o'clock shirtless shot was awesome. Sorry I don't have more to report because I was drunk and don't remember much else, so that tells you it must be good.", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sUNkXg8-KFtCMQDV6zRzQg", "review_id": "Lqoidcyku8NoT-XOkxzNXw", "stars": 5, "date": "2011-08-27", "text": "My wife and I finally tried CPH and were greatly surprised by everything. The food, as expected, was superior along with the professionalism of the staff. The ambiance too was well set as the place could hold large parties very comfortably. \nWe began the nigth with a bottle of wine, the original chopped salad alons with the rock shrimp. All were exceptional! As out main courses, my wife orded the sea scallops and I ordered the short ribs. (Peter of Cowboy Ciao's must miss this guy.) Both dinners were cooked to perfection and the staff never left alone. For dessert, we had coffee and the evening's special, the donut holes with three dipping sauces. All were fantastic. The wife and I don't usually rate places with five stars, but this place actually gets how food and service are meant to be as one. Can't wait until we head back.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 9, "cool": 6}, "user_id": "ceKoQX0_IJZ6Lr9-9LGcbA", "review_id": "YftIN3drgo7Lzt1c4ODcrw", "stars": 5, "date": "2009-12-28", "text": "Some might say that Phoenix is a city without much culture. That may be true in some aspect, however we have to remember that Phoenix is a young large city compared to other cities that lie within the United States. So you can say that this city is a work in progress on catching up with everyone's culture expectations.\n\nThe Japanese Friendship Garden in downtown Phoenix is only seven years old. Very new to the park scene for this metro, I have to say that it looks great and will only keep getting better in time. That will happen if people stop saying there is no culture in Phoenix and become a part of the evolving city by visiting places such as this. The admission and or donations will fund a more desired park for all.\n\nThe grounds of the garden are very beautiful with a nice flowing stream, several waterfalls, coy fish, and many species of plants. I can't wait to go back in the next several years to see it become a wonderful masterpiece.", "type": "review", "business_id": "HiTpXu1BNE2DlvjyqpObjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EXBOkXWPNYZk5HFBg5NbTQ", "review_id": "xgTAQuozPxLAS7-8s5KpLg", "stars": 2, "date": "2009-08-12", "text": "just wanted to chime in & say that this place is so vegetarian-UN-friendly it's not even funny. I was dragged here with family & ended up ordering a chile relleno, which was just about the only meatless item on the menu, short of a fucking cheese crisp.\n\nit wasn't terrible, but this place is really just all kinds of lame. service was mediocre, food was mediocre. with as many awesome & authentic mexican restaurants as there are in the valley, there's no reason on earth to come back, except MAYBE to try a mango margarita.", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "fIvDzLhs-cXbTKWp8P3eIA", "review_id": "wd_d9GcxZ3D6dJwNYLH_yg", "stars": 4, "date": "2011-10-10", "text": "My husband's former employer said when we get to Phoenix we must go to In-N-Out. He said the last time he had one there was a line out the door. Not much of a beef burger person, we stumbled upon this burger joint as we left Ikea and decided to try it. The emergency granola bar I keep in my purse wasn't working.\n\nThere was no line out the door, who wants to wait in line anyway. We both ordered a cheeseburger (no tomato, no special sauce, no ketchup for me). It arrived in a card board container which was kinda cute and everything was hot and fresh. My burger has a thick slice of onion and several crispy lettuce leaves. The burger itself was just okay, but the freshness of the toppings won me over. My husband's had a big slice of tomato. \n\nDid In-N-Out live up to the hype from his former employer? Not exactly, but it came pretty close.", "type": "review", "business_id": "1OA1jo0GlK9sf68f00w8ZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YPmQEVEFZ0EwiDNJFVo2Sg", "review_id": "3gBIEXa78N4tpzGj3NFNzw", "stars": 3, "date": "2011-10-11", "text": "Not bad, I usually leave pretty happy and full.", "type": "review", "business_id": "sCv1wUWJhFmQEMw3A4lwXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "Uu9F8_mkuxCq6YVCwLCsaQ", "stars": 4, "date": "2012-10-02", "text": "= = = = = = CLOSED = = = = = =\n\nChina Star here has now closed. :-(", "type": "review", "business_id": "QAUDLYNxhHGdUn5YP7au_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ndDCHB7BGLklzzojEW4i6Q", "review_id": "PWv4dlKRiHu7tlFzDA7G4A", "stars": 5, "date": "2011-10-21", "text": "This is a very special medical practice with customer service and attention to detail that you hardly ever see in a doctor's office anymore. I started seeing Dr. Ross for Osteopathic Manipulation after having a few back surgeries. He has given me tremendous relief and I highly recommend OMT rather than chiropractic treatment since it works with the tissue and muscles as well as the bones. Anyways, He listens and takes time to treat your WHOLE body unlike most doctors that have one hand on the door knob as they speak to you. \n\nI saw a Naturopath in the past and saw Cheryl the P.A. for the first time the other day. She took a lot of time with me, going through my blood work line by line. I was so please that she suggested supplements and knew about things that I learned from the Naturopath...but actually, she knew about more supplements than the Naturopath! So I was really pleased. \n\nThis is a great office and everyone is like family....they also treat you like you are a part of their family. They make your children feel comfortable too. There are tons of Mickey Mouse figures and videos for them to watch. The nurses have always loved on my daughter since she was a baby. They make sure that all of us have a productive appointment! I highly recommend this office.", "type": "review", "business_id": "gpyWGG0U-yqnVKru6y8fNQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "YAqT_Y8UNjZQGkieq8ZHwQ", "stars": 4, "date": "2007-12-11", "text": "I wrote a review of this place back in mid-September and gave it only 3 stars... what the fuck was I thinking? \n\nThe food here is fucking brilliant... especially for a chain. Amazing burgers. Their Diablo Chicken pasta dish is to die for. The cornbread is actually good - I fucking hate cornbread and yet I'll scarf this shit down like it's crack. Their chips and salsas aren't that great - they'll do the job, but I'm still not convinced about them. I'm also unimpressed with the sides that come with the mains, but I don't come to this place to eat the sides. \n\nAs I've said before, their margaritas are awesome. They'll fuck you up though, so make sure you have a ride home or else go see a movie to sober up. \n\nThe atmosphere is low-end upscale and pretty nice and cozy - kinda dark inside and a bit generic, but generic is better than flashy, ugly and distracting. Service is upscale as well and I'm usually pretty pleased with it. They offer free valet parking for customers too which is perfect now that they charge an arm and a leg for the parking structure.\n\nHere's my old review for reference: \n\nGreat margaritas to be had here... really strong and tasty. This location isn't very busy ever it seems... perhaps with Fat Tuesdays around the corner, it's just too much competition.\n\nIt's a good place to grab a strong margarita before heading over to the movies or something. Their food doesn't inspire me to eat there, so all I've had are appetizers so far... mainly chips and salsa. Salsa sucks.\n\nIt's also got some competition from Macayos down the street which doesn't help. I don't know if this place can stay in business much longer unless it gets busier. It could just be the times I was there though.", "type": "review", "business_id": "hyff2JyqQgf85MaJZslHCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "focPnXD_bcIj1cDbcTbFxA", "review_id": "wSX8FEXtUYQRkCPrAens9Q", "stars": 4, "date": "2012-07-02", "text": "I love that Goober will deliver direct to your door!! The are affordable, convenient and include free bones with your order.\n\nThe only reason why I do not rate them as a 5 star is that several times they have had to call me to let me know they are out of a product I ordered online.", "type": "review", "business_id": "cIPzndsbagQGj9U1sLqLtA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5jO2RMO-MYZDWTIYzr3dSA", "review_id": "IoZjPWk2Xx6HiEXZD9TAug", "stars": 5, "date": "2012-04-24", "text": "Best prices and a huge selection. I love their single bottles of beer isle where you can mix and match your own 6-pack of beer. Some of my favorite beers I can only find here.", "type": "review", "business_id": "vlEsxOtkCrStCb52gJhG5w"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "LXWAXIeYFIdgd2JVPF-9qA", "review_id": "ihS3vJGm-437Nd4xHJMyiw", "stars": 4, "date": "2011-04-13", "text": "Met a group of people...great craft beer selection.. ordered Old World Salad w/House Dressing, excellent.. enough to feed 2-4 people..\nthen the Murphy pizza.. applewood smoked bacon and onions w/the thin crust, wood fired. This is an awesome pizza. The rest of the group got various pizzas and loved everything! Our waitress was great, and took good care of us..", "type": "review", "business_id": "RYZ08XAToBaN-bS5HHVEhQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "-nkYxSyYTQNIlj_D3fJGag", "review_id": "jouRCLiFuAHJQ_DQMaHx8Q", "stars": 4, "date": "2011-08-12", "text": "First thing - I felt compelled to write a review because the Android and Ipad app both state that Mokis is closed. If you are doing a mobile Yelp for this place, it is most defiantly open.\n\nSecond, I decided to give them a try for an early Friday dinner, about 5 in the evening. There were a few people dining in the restaurant, and quite a few people on staff for the evening. The dining room is pretty well decorated, more so than I thought it would be, giving a faux Hawaiian feel to it. Seeing some people there at that time gave me hope for a good meal.\n\nI asked the lady manning the counter what was good, and she took a bit of time to walk me through the menu. Emphasizing the plate lunches, I decided to try the Combo that would get me the most variety. I elected for terriyaki beef and kalua pork. I took the side of the 'potato mac' and got my meal to go.\n\nArriving home, my meal sat for about 5 minutes before I had it unboxed and ready to enjoy. Considering that fact, everything was in pretty good condition. The potato mac was a bit more room temperature than cold, but that was my own doing. The rice stayed warm, the pork moist and really flavorful, and the beef sweet and tender.\n\nHaving dined at a few places offering plate lunches in the past, the potato mac was probably what sold me as much as the meats on why I'll return. Potato mac's tend to have a pretty flat flavor, and when I find out how Hawaiian's garnish them, I will be excited to get some more flavor in them. But it was just the right amount of dry ... I've had many potato mac's that are just too wet, but this felt about perfect.\n\nI'll give the fish dishes a try in the future and report on those. But I really enjoyed what I experienced and well give it a second (and probably more) pass.", "type": "review", "business_id": "7LuKiasIyGUEo7uipN10Eg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E_1N6H102rr1YdZAakDLYg", "review_id": "AX4u1XaFo6hXsK4-2YZa7A", "stars": 5, "date": "2011-12-15", "text": "This is the old location. For current reviews, look up Karen's Kreamery Cafe'. Here is what I posted for the new location...please give it a chance. I do not know the owners, I just love supporting a good, local business...\nGreat ice cream, super cute store, extremely CLEAN! The ice cream is good, service is always great, and the location is fun (although a little out of the way). The prices are reasonable. I would rather support a locally owned business and pay more than McDonald's prices and less than Cold Stone prices. If you haven't been, and plan on visiting in the Summer, bring suits for the kids. There is a nice little splash area right next to a big playground. Karen's Kreamery is located in a big park/sports facility. There is also a medium sized skate park. We usually make a fun outing out it. My family loves this place!! Support local businesses!!!", "type": "review", "business_id": "Om3WtcK5qgwEW5-CojPMxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hE8cu6qYG474Gd2B9_qqog", "review_id": "O--Ov0YCveF9hl35eru6Rg", "stars": 4, "date": "2011-09-17", "text": "I like Pei Wei, its good when I want something fast. But the main reason for my review on here today was to say HOW AMAZING the manager was at this location. \n\nI came in at lunch and it was VERY busy. There was a line to the door. There were some arguments about someone stealing a seat (unhappy customer, complaining because a seat was saved and they had waited in line, wanted to be comped because of it.... so dumb if you ask me. I mean just deal with it people! Its busy!) But the manager dealt with it so professionally, and when I was next in line he did not act rushed, he was very helpful, and told me that if I did not like what I ordered to just tell him and he would get me something new. I work in the restaurant business (a much higher priced place) and this manager was awesome! Good job man!", "type": "review", "business_id": "9Vu9KhK2-kBSM-FXvxXGNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NsIoM2PlaL28E-jbrs4Zlw", "review_id": "-04V-J248jjwibqilfLePA", "stars": 4, "date": "2010-03-24", "text": "Tasty standard bar food.\nGreat bar service.\nSweet servers (90% of the time).\nHuge awesome patio.\n\nThe cherry on top is that it is NOT on mill ave!\n\nBest spot to be at on a beautiful spring afternoon in Arizona.\n\nWhat else could you possibly need?", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JCx3wTsBcN91i7uF1RM-aA", "review_id": "jMVxc5mZXK3MXfVUfUkIHA", "stars": 5, "date": "2012-01-06", "text": "All around great food. True Texas brisket experience. Meat has great flavor and tasty sides add variety to the offerings. Don't forget about the sheet cake for dessert!! I'll be back. \n\n***Read another review on here talking about wings. They don't have wings here!! Get your reviews right people.", "type": "review", "business_id": "dzncF6n6MHJLXUo4_J6eig"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "VlPalcT0hoEWwdUlEfKHwQ", "review_id": "8aftQwExSE9ZP8csK0pehw", "stars": 3, "date": "2010-08-02", "text": "The Nee House.......well I just wish they would get the concept of customer service! I tend to feel second rate when we go in for dinner. \n\nI really like the food but after 5 attempts at dining in with crappy service we have decided it is best for take out only. \n\nThe food is pretty good and they are super quick when it come to take out. I am happy to say that when I picked up our order yesterday the girl at the front actually smiled and chatted with me while processing our order!", "type": "review", "business_id": "ChmqODwuYP1ewjmWXtxtsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ofxlhi_HKp7myFDpwg9aIA", "review_id": "yVzM9GuUSSkD6NHLjqzeBQ", "stars": 4, "date": "2011-01-12", "text": "Coach house is your favorite dive bar...this bar reminds me of almost every shit hole in the upper peninsula of Michigan. A great little spot to throw back a few beers after a rough day. \nDrinks are cheap and the staff is friendly. Plenty of games to play and TV's to watch. \nIf you have never been I would definitely check it out.", "type": "review", "business_id": "cjjZt2oOkk0F152RkQMfQw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sPEFql7fLp0oouFxnooGpQ", "review_id": "MbBL1-CrkE-RteMYe4y7JA", "stars": 3, "date": "2011-11-23", "text": "I have to say that I'm not a huge fan of D&B's food. Typically if I'm here it's to have a couple beers and remind my husband how good I am at ski-ball. Overall, it's a cool vibe with many different games to play. The drinks are affordable and you can't beat the location (Tempe Marketplace.)", "type": "review", "business_id": "1CNKe3H07sLu6rigOpAYsg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uj2fHfOZ8_tR5kFGl9sV0Q", "review_id": "ty9eckTsSzGdjnyGFk4vPA", "stars": 4, "date": "2012-05-26", "text": "I had a serious craving for Roti. So glad I found this place. A very small menu selection but it had exactly what I wanted. The serving for $8.20 after tax is enough for 2 meals. I know where to go from now on for a great meal with leftovers. This is a noteworthy place to bring my Uncle T.J. who's a Trini when he comes to visit.", "type": "review", "business_id": "Tsff0UUVgrnawjI_xd2cKg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "KVYEjEFmaUd8bLJNnoj6uw", "review_id": "GU8qqwr2ufzGzsisc5VT5w", "stars": 5, "date": "2011-04-18", "text": "This is my neighborhood Chinese Restaurant and a family staple. I personaly like the roasted / peking duck. The Shrimp Lo-Mein is good, Fast, Friendly Service, No MSG.\nLunch Specials during the week are awesome too.", "type": "review", "business_id": "F3SEkW6v2LJ5y6Ldo5pPaw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "AjmdjjXYHrLgFjaSd2zx-g", "review_id": "zdslxeH4T2MhkDtE79RRnw", "stars": 1, "date": "2010-01-19", "text": "This was my second visit to Arriba's and believe me, it wasn't my choice. I spent the first 26 years of my life in Southern New Mexico and I miss the food like CRAZY, especially green chile. When you walk into Arriba's it's New Mexico this and New Mexico that and the dishes are named after cities and landmarks in the state.\n\nWhen we told the waitress that in New Mexico green chile sauce doesn't have pork in it she said, \"Well, we say that but it's not *really* New Mexican\" and walked off. What?!?!\n\nThe first time there we mentioned this to a Manager and got the same exact reaction. I also asked if I could get a side of plain green chile and was told no. Both times we were being super nice and just trying to start a friendly conversation, had these interactions been better this review wouldn't be here.\n\nI'm far from being a vegetarian, I don't eat pork or beef because I don't like it. Also, I didn't ask about the red chile sauce because I'm not a fan, maybe it's porkless and amazing but I can't speak for that...\n\nI ordered the Santa Fe Chicken salad. Iceberg lettuce, slimy greens, cooked onions and bell peppers, mushy tomatoes, half melted greasy cheese clumps and very dry chicken piled on a shell... yuck. \n\nIf it wasn't for the delicious fresh chips, guacamole and two 99cent happy hour margaritas I would've been VERY unhappy. I definitely won't ever be back and this time I mean it.", "type": "review", "business_id": "xI0UZH734lJtm39DbLf-Bw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "ZC4dA0KenvqDN3Ih--nwNw", "stars": 3, "date": "2009-11-11", "text": "We went on a Sunday afternoon, the wait was 45 mins for 4 people. We waited because everyone keeps talking about it. Man, was I starving to death when we were seated. I had the ham and cheese omelet and everyone shared an order of waffle with everyone else. The omelet was good. The waffles were light and fluffy. Good but not to die for. I personally think it was over hyped. It is good breakfast food, not GREAT.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hFP7Si9jvdOUmmMesg4ghw", "review_id": "Mzn47QcxO88k60qgXiO0Kg", "stars": 1, "date": "2009-07-11", "text": "Sadly disappointed. I've passed Lola's an uncountable number of times and each time thought I needed to try it. I finally did tonight and was terribly disappointed. For anyone that has been to Firefly in Las Vegas there is just no comparison. The sangria was decent but nothing special and the tapas were just \"so so.\" The atmosphere was busy and our service sucked, but it was a very unique and cool environment.", "type": "review", "business_id": "xdwPHc25l7_roZ9Kfea13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SzpPsfGGviCt_IURJMNs4w", "review_id": "VIWkzqhxIvtu58u35YeLDw", "stars": 4, "date": "2009-11-14", "text": "Older restrant but very good food", "type": "review", "business_id": "weCbIA8mCkVw7zmxPNT5sA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "4mILqmATFktvFYWqrpRAUg", "review_id": "CMe1I7gom1KiG3TuJi4pxw", "stars": 4, "date": "2009-08-18", "text": "I LOVE this place. The marijuana theme isn't kid-friendly though, so DONT bring your kids. Just bring it home to them.\n\nTheir subs are really tasty, the theme (for adults) is hilarious, the people are friendly, and are reasonably priced.\n\nAlso, the potato salad is fantastic!", "type": "review", "business_id": "KS2w8ychyieJbUqRa6kCHw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "rV-B4sIzTbnvsYZZi2Nyrw", "review_id": "qFPgS7gCTA2zM6vk937M8Q", "stars": 5, "date": "2008-11-14", "text": "I used to shop her constantly when I live right across the street and I still make the drive up there, even though the prices are higher than Safeway. Why?\n\n-The staff rocks. Need a certain type of wine? They know where to find it. Need a spice? That's covered too. Every employee is courteous, and most importantly, SPEAKS FLUENT ENGLISH.\n\n-Their deli rocks my socks. Always fresh and always tasty, I've purchased more than a few dinners and have never been disappointed.\n\n-The ready to cook stuff is delicious too. In the mood for some kind of meat stuffed with a vegetable and/or cheese? This is the place.\n\n-I also loved the fresh food cooked every day right in the store. From BBQ to MASSIVE Sunday omelets, the choices are a plenty. Again, not cheap, but you certainly get your money's worth. Go early if you want the breakfast, they run out quick.\n\nAnd you can buy good beer by the bottle! Dogfish Head rocks.", "type": "review", "business_id": "Mng1FUcW-xRSdsDkowQm2Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "rC3JBdYGn4l7opz5tSFs9g", "review_id": "rudZ-SWNx8x9bRIgWxeihw", "stars": 5, "date": "2011-02-14", "text": "Since moving to Arizona I have selected Fry's as my new grocer and am very happy with my choice! I immediately signed up for their VIP card and love seeing the many savings listed on the receipt after every trip.\n\nI am especially happy that I have moved closer to this Frys as it is open 24 hours and even when shopping in the wee hours of the morning can expect to see some nocturnal ASU students.\n\nAny interactions I have had with the staff have been pleasant and enjoyable.", "type": "review", "business_id": "b1d8nKDgizi3K8Jw6llksw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Ts6UNH4LQp4YIwATf-cqnw", "review_id": "8TBgbLGmeS0OLkmohx4pIA", "stars": 3, "date": "2012-07-09", "text": "Read all the reviews on Yelp and thought I give Chang's Chinese Buffet a try. With a 4 star rating, I was expecting 4 star quality food. Well, some of it was good, but some of it could be better. First of all the atmosphere was pretty nice. It almost felt like Cheers, where everyone knew your name. Even though we didn't know anyone there, everyone talked to one another. The T.V. in the corner drew most everyone's attention. You could tell who the regulars were. They were up front and closest to the T.V. \n\nMost of the food was fresh. The Shrimp was very fresh and tasty. The rice was also seasoned probably and tasted almost as good as back East Chinese food, it just wasn't brown. Orange chicken was good, but a little hard. Not as moist and juicing like I wanted. The chicken was dry. It was flavors well, but was dry inside. Seems like it was under the heating lamp too long. The sweet & sour soup was good, but I've tasted much better. The egg drop soup wasn't too good though. Spare ribs weren't bad. Also a little dry, but not as bad as the chicken. The Egg-foo-yung was not good. Hockey puck shaped or not, it was too watery and didn't taste like real Egg-foo-yung. Everything else was pretty average. For the price, it wasn't bad. I would go back and eat there just so I could have the rice and shrimp. So pretty much 2 stars for the food and 1 for the atmosphere, service and cleanliness. Place was very clean and service was decent. Not a 4 star restaurant. Barely a 3 star. I think my wife gave it 2 stars. If you go there and find certain foods you like, it's probably worth the $5-$6 to go back and eat as much as you want of those particular foods. Skip the bad stuff and eat all of the good tasting foods. Other buffets will run you $10-$15, so this place could be a gem if the food gets better.", "type": "review", "business_id": "HEI4WFai9zoixD5GhCnbeg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "qAbgwS6XmukTJlTDKKj23A", "review_id": "RUO0_QEKAvr_yNURIPV9NA", "stars": 5, "date": "2012-01-18", "text": "Great decor. Great food and very good service. You have to try the pork belly pastrami. To die for! Their version of the Manhattan was very good. As for the main courses you can't go wrong with the scallops or the smoked duck. For dessert go with the black & tan pudding. Oh soooo good. Highly recommend this place.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "0CRk-70pIHwk16iKGVCpxw", "review_id": "ChjUj0rjDRbFu_5Q3ZN4nw", "stars": 5, "date": "2011-06-23", "text": "Ditto what Kristi M. said. Thank you to my fellow Yelpers for helping me find this place.", "type": "review", "business_id": "YXp62JdXJDzX0EuRv_zgMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y4vDAMdI7NMpeuB_IhcpMw", "review_id": "BWpNXieyNRIxdW7hZTVEwg", "stars": 4, "date": "2010-11-06", "text": "1st..downtown Mesa needs to get its props. They have some really good places to check out and Mango's is one of them. Mangos is one of my favorite Mexican food stops. I love their taco salads because their tacos are homemade and soooo delish. \n\nI also love their 100% fruit juices, so simple and so good. You gotta get there before the lunch crowd if you want some though, they run out super fast. \n\nSimple, Delish, and fun. Oh....and here's a lil inside hint, going to the bathroom there is an adventure on its own....", "type": "review", "business_id": "FFHzFdyWgM-OdMghuXMPEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DZ7NafMn4ACDLcdCiWlllA", "review_id": "-8Ed9HuTraLTPb-dTBxoCg", "stars": 5, "date": "2009-06-13", "text": "Four Peaks serves up some great beers and great eats. This is no secret so no matter which day out of the year or which hour and minute out of the day you go you will see a full patio, and a populated bar. Plan accordingly. Try their Italian beer bread, the Carne Adovada, or the Southwest burger and wash it down with a pint of Hop Knot or Kilt Lifter. You will be happy you did. All of Four Peaks' menu items are appropriately priced and you will always leave satisfied.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "19z2sZCwjNveJf6koqlplQ", "review_id": "lr7ue4c2BjJIi3yXdAZTKA", "stars": 5, "date": "2013-01-03", "text": "Wow this place is fabulous. Everything is so fresh and tasty that you can enjoy a healthy and yummy meal without breaking the bank. The salad bar is huge and they have a fresh soup bar where you can choose numerous varieties of homemade soups. Great tasting desserts and frozen yogurt machine. Best Strawberry Lemonade I have ever tasted. You have to try this place you will not be disappointed. They need to open locations in the Midwest.\n\nAlso, I want to give a shout out to the server at the restaurant. His name is Oscar and he is so wonderful and funny. He made us all laugh and smile and Oscar is such a hard worker and everyone that visits this location has to say hello to Oscar because he is the nicest man ever!", "type": "review", "business_id": "5jazn-RZP2R6ZkCIPZsf0w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "pIEpiXF-08GoKZ7MeYnoOQ", "stars": 4, "date": "2010-09-26", "text": "As I mentioned in my previous review, Maizie's was my favorite spot with the first Urban Wine Walk. So it makes perfect sense that if the UWW Returns, so do I. Well, return to Maizie's that is! We started there this time and enjoyed all three wines they were tasting. Their pizza and bruschetta bites were great. And after we quickly inhaled the samples, we decided to get more food. \n\nThe menu is pretty huge and everything sounded and looked delicious. Yes, we were eyeing everybody else's plate as well; the bar seats are good for that! After ooh-ing and ah-ing over what we saw, we decided to split the spinach and artichoke dip that came with chips and pit bread. It was great!\n\nThe best part about Maizie's is that they just seem to do things right. Friendly, casual service so you feel like you're among friends. All sorts of specials listed up on the boards so 1) you don't have to feel dumb asking and 2) you don't have to feel even dumber when you forget and have to ask again. Beer of the month (always fun to try), 20% off beer or wine to-go (what is this, Vegas?), happy hour specials (you had me at \"daily\"), the list goes on and on.\n\nGood food, great energy, small, cozy inside and an nice patio space too. I have only been twice now, but have have fabulous experiences each time. A few more times, and they win the fifth star, easy!!", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "gx7gQMWkzoke3VPitU2hlA", "review_id": "Uaki6WdA6P65N35WbHI2pw", "stars": 5, "date": "2011-12-22", "text": "Always love the ALofts\nIf you've stayed at one, they're pretty much the same\nRooms were clean and comfortable.\nThere was plenty of room in the standard king room\nBathroom was nice, you don't have to deal with the miniature shampoos, they're in the wall mounted containers, which is nice.\nOnly thing missing is an iron and ironing board, but other than that, the room was perfect, especially if you like hip, modern decor, which I do. Rooms are a notch above TheStandard in LA, but not quite as roomy. The rest of the property was just OK, yes, they have a lounge, but need a restaurant. This location also does not have a DJ as some of the other ALofts do.\nAll in all though, probably one of the best hotels to stay in while in the Phoenix area, especially for the price. I heard from the bartender that the one in Tempe is more live than this one.", "type": "review", "business_id": "n25AWEdWRaNMdMI_uN_VOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "KvVxMBkrcOHW3DkdxUsquQ", "review_id": "PR5PA-5yAQF1w8v0dy3ZNA", "stars": 4, "date": "2009-07-10", "text": "One of those places that can not possibly serve bad food...! Lunch, specifically, is very nice, quick and affordable... All their curries as well as entrees are equally good and you can ogfcourse adjust the level of spice as in all Thai places... ( that's something I don't like but serves good for those who don't eat spicy food)... Thai coffee is one of my favourites too...", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rjZoXU3OOPJc0-_jqx1iTA", "review_id": "IZiaeiG5wXUf7-9HJsNH0A", "stars": 5, "date": "2011-09-27", "text": "I have always loved this place. Good Food, fair price, and typically a couple of cute girls working there. All around good place.. its a go to .", "type": "review", "business_id": "NWtC07BxIqQp76kugbvynA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ru8p3RTlk8f9LB_3zLXURQ", "review_id": "p71IfW6kt-gUjg0TkNkDIA", "stars": 5, "date": "2010-04-26", "text": "Sanctuary you've been replaced. Willow Stream Spa is my new fav spa spot. Loved. Loved. the service.\nRobe got slightly damp from use, helpful attendant appears and gives me a new one. Loved the waterfall treatment. Loved private rooftop pool. Loved the attendant walking around giving us sun bathers bottles of cold water. Loved the fitness classes, the facility.\nAll this for $50 during AZ Spa Week. \nThe facility and service is so f-a-b-u-l-o-u-s here that I would come here anytime and think every penny I spent was worth it!", "type": "review", "business_id": "AtoMSHZ-lO7kxHRBdioMtA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "vpovx0zYelOrU-4O9IYL1A", "stars": 4, "date": "2009-10-19", "text": "I enjoy some burros because it's a good cross between fast food and sit down Mexican food. The taste is always fresh, and good - the service is fast and friendly, even with a packed house. It satisfies my Mexican fix and does not leave me regretting life afterwords .... (like Filbertos does) I have only had this location, but have gone back numerous times and will continue to hit this place up and work my way through the menu ... I had the beef taco and been enchilada today ... see pictures ... you will want.", "type": "review", "business_id": "zXg2O_QnpHQVD7e1azAu_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2KNPtV5E44vAiEr5BvMkUA", "review_id": "smRJLdNn0C6FtzKhiuvBDA", "stars": 4, "date": "2011-08-17", "text": "So we went here on Monday to celebrate another milestone in my sweetheart's life. The staff there is awesome and even changed the channel for us to catch a little Monday Night Football as we did our unedited (and OH so funny) version of \"Oh My God What Is S/He Wearing, Volume 2\". \n\nI am a BIG fan of their Thai Sweet Chili Hot Vings. Those get 4.5 stars easily!\n\nWe also had the edamame with their signature spice rub (very yummy, but towards the end it was a teensy bit *greasy* for my taste), the flatbread pizza w/ tandoori chicken, and the banana-nut bread pudding w/ ice cream. \n\nI wasn't very impressed with the bread pudding, don't get me wrong, it wasn't bad, but I didn't think it was very flavorful, and I'm always on the lookout for the perfect one. (*note* If there is even the HINT of a raisin in the bread pudding, I will not go near it. I like raisins, some of my best friends are raisins, or something to that effect...just not in my bread *giggle*) \n\nI love the atmosphere here, it is a GREAT place to do some people watching, the patio is awesome, although I refuse to sit on ANY patio between July and September here...I'm already hot-blooded, I don't need to be reheated in any shape or fashion! \n\nGreat place, great atmosphere, I'm a fan.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C6Av_qoKe3H5-9BOnzi7yQ", "review_id": "52JX_qMCJBGnY-6ZzEBIQA", "stars": 4, "date": "2011-05-09", "text": "Good time. We sat at the sushi bar and were entertained. We brought my 9 year old very picky daughter and she had fun. She has some edamame and a plate of plain noodles. Sticking me for 5 bucks for a small pile of plain noodles I felt was outrageous. Sushi was good and rolls were fantastic. Asked the sushi chef to make his favorite and it was a spicy tuna roll with a sweet sauce that was awesome. We'll come back, but I'll give me daughter a hot dog before we go.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 7, "useful": 3, "cool": 1}, "user_id": "tlSSQwfHYJany7wPoTH46A", "review_id": "TO9DkR743eqaa0vs5kx8sg", "stars": 2, "date": "2011-01-03", "text": "I live a stone's throw from this Safeway and never end up here for groceries. Based on experience, if I cart my lazy ass down to the Fry's at Thomas and 44th, I end up spending about 1/4 less on my shopping trip than I do at this Safeway. Everything is ridiculously expensive, even after the \"club card\" savings. \n\nI have no idea why. Is it because it's in Arcadia? Is it the added expense of upkeep involved in over-stocking the wine section, or the fancy olive bar, or the gourmand cheese selection? Or maybe it's the added cost of employing cashiers by not installing self-check out lanes. Do I really have to stand in line for ten minutes behind a suburbanite with 2.5 screaming childes just to buy a couple sticks of buttah? \n\nAnd I understand carding, but do you really have to whip out the book to copy down my info and then make me sign my name like three times because my 16-year old self's signature doesn't match my 27 year-old scrawl? Come on, now. That's excessive. I appreciate that you think I'm looking foxy young for my age, but I'd rather hit up the crack pipe-selling liquor paloozas along McDowell than deal with this nonsense.\n\nUnless I am in desperate need of an ingredient *stat* or require something special like their amazing Mediterranean olive selection, I'm staying far, far away.", "type": "review", "business_id": "L7pERyEB70Vo_sb4T5dLrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "hvgYD6Pmyaa6hS39ymIQBQ", "review_id": "gYlJTm2iavYfY66JaCxKqA", "stars": 3, "date": "2007-09-27", "text": "I enjoy \"the BOP\" as my friend calls it on the same level that I enjoy pizza. It's good, but it's not my desert island bar. I go here to meet up with friends. I've never been there on my own because let's face it. I'm not likely to be caught dead trolling Scottsdale (even non-Scottsdale Scottsdale) by my lonesome. The atmosphere is cozy and inviting. Which kinda turns me off. I like my bars a bit seedier. But if that's your thing then I'm cool with it. I hear the food is pretty good for English fare, but hey who wants to waste time eating when you could be drinking?", "type": "review", "business_id": "9r5YLKGTdQz_Q29cBifePQ"} +{"votes": {"funny": 0, "useful": 7, "cool": 1}, "user_id": "x4eIi_YiwKj1pzcspeLt-Q", "review_id": "StAGDHDRzWw9JWkBp8KbkQ", "stars": 5, "date": "2009-07-27", "text": "I can't believe this wasn't reviewed yet! This place rocks, and Dr. Heather is the very best vet in town. She's reasonable in price, thorough in her evaluations, and super kind. She handled the life and death issues so carefully and warmly, and she talks about her own pets and has compassion! \n\nWhen our cat Everett died, she not only called us throughout the whole cremation process, but she sent a card and when we picked up the ashes - she had made a single footprint \"ornament\" with a ribbon and his name on it as a gift. Never had a vet do anything so kind. \n\nWe have had MANY cats and MANY VETS. I know a good vet. Go here. Please go here!", "type": "review", "business_id": "l5-Svx1dgLN661zx-ilLFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "2eVF68QkqhjPBFYI_4ErLA", "review_id": "9yrSYobZ9OlKCDNRtzTs1Q", "stars": 4, "date": "2010-09-12", "text": "It's really easy to write reviews about places like D'licious Dishes. This was my second visit since Petite Fromage sadly closed. This time, I was with my mother and wife. We each ordered a sandwich and a side salad for about $7.00 per person. Everything was really very good. I honestly think I would have been satisfied with only half of the cuban sandwich that I ordered, but it was so good, I had to finish it right then and there. My wife and I are moving into a house in the Medlock Historic District, directly behind D'licious Dishes, and we have decided to make this our standing Saturday lunch spot. I was too full to indulge in their beautiful selection of sweets, but I will be sure to dive into that area on my next visit.", "type": "review", "business_id": "G_2CWsU7GYwhNqptrLXUBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8fwK6mZbsX4VKz0X2TsLFw", "review_id": "5JNwatofp-E_-o5kNJXzYQ", "stars": 5, "date": "2011-09-06", "text": "probably my favorite restaurant :)", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FW5o1j_WytQAT6vGgs7tvg", "review_id": "RACmf5ZlaxqhmBcIsGzptQ", "stars": 5, "date": "2011-08-02", "text": "This is a great hole in the wall shop off of Val Vista Rd. I've been getting the chicken salad sandwich since 2006 and it's the same ever since GREAT! Cookies and bread are awesome as well...", "type": "review", "business_id": "jKHRI4bg4fP8zQVpE4jsIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vMZX1Br4TurxDAzgvvu5_Q", "review_id": "UgOy-JZPau5s83QkoyO3sA", "stars": 4, "date": "2011-01-31", "text": "what a great place. there were 4 of us and we all have something different. the ribs just melted off the bones. my wife had the filet and it just melted in your mouth. she had the special mashed potatoes, don't remember what they were called but she really enjoyed them.another party had salmon and it looked great. the son from OR had the meat loaf and it really left a lot to be desired. sort of dry and not much taste. The B 4 drinks were good and near the hi end of pricing,but hey its Scottsdale. This was our first visit and it will not be our last. Just a long drive from Surprise. don't forget the corn bread and request butter. A great meal would be a large salad and the corn bread.", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pg2fDQinZv-a4uvkiPGSMg", "review_id": "XvGByHtVvH5gplOEObwvFQ", "stars": 4, "date": "2012-04-24", "text": "This would be a \ngreat place to live at", "type": "review", "business_id": "531AqbFkCNO1lLJ4fTgE8Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xaEtXJM62xy-jdGyevR7VQ", "review_id": "NEcGg4OWpzRx3_Eo2hOptA", "stars": 3, "date": "2012-04-26", "text": "I am not going to complain about the quality of my manicure! They did a fabulous job...On the other hand their customer service was a little off. Very unorganized and they could just not get it together. It took them forever to assist us since we didn't have an appointment and are not regulars.", "type": "review", "business_id": "_L5kScT8_QCmFoHV6fmrqg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "UKjrGv2k8H_DbMW9EXmEcA", "review_id": "AyZ8VIpoJYFgouBwnHR9ww", "stars": 5, "date": "2010-07-19", "text": "This place had me from the moment our waitress asked us if it was o.k. if our water was infused with the flavor of cucumber. Heck yeah it was o.k. in fact I don't even want to order a drink, I just want the free cucumber water! My buddy and I decided to start with an app. order of sweet potato waffle fries with dipping sauce. Delightful! I ordered the sweet potato and garbonzo burger and the sweet potato and avocado salad side dish. Notice the sweet potato theme?? I love those crazy orange taters! The food was really tasty and quite flavorful. The burger was a little different than I expected because it didn't come on a bun..but no biggie. In typical girl fashion, my buddy and I split a cupcake...finger lickin' good! I am picky-picky but this place won me over big time! Also, I felt that, for the location, their prices were very reasonable. The prices for those condos located upstairs..well that's gotta be a different story!", "type": "review", "business_id": "ItMihRR-t810HgctGofF3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OroGqv0t7fy-Q3E2PzTEwQ", "review_id": "lLXh24KI8x0-ZGBlWoRDdA", "stars": 4, "date": "2011-02-27", "text": "Been parking here at least 10 times; fast, affordable and safe. Use your smartphone and YELP app to access the super check-in discount.\n\nWhile it didn't happen this time, at Christmas they were especially full, so don't be surprised at that time of year and make reservations (yes, make reservations at a parking lot)", "type": "review", "business_id": "U4IipLI4RsuBLmxTFEV2MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z1tNqF5qJRpibGj-9_r9Ew", "review_id": "BP5qPstHl30OCvXe_6L5Bg", "stars": 3, "date": "2012-02-21", "text": "This Pei Wei is consistant with it's orders being correct & clean. My one wish is that the parking lot it shares with Starbucks & Sidebar were about 15 cars larger. I don't see that happening but a girl can wish can't she?", "type": "review", "business_id": "7pxa5tueoEcmt6hztqsz2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LZ86tqJTvDdHHD68oluGQA", "review_id": "-w_ZTzt5EOH7MDXzvwwExA", "stars": 5, "date": "2012-08-20", "text": "If you don't love Guissepe's, you don't love Italian. Kindly find your way to a chain restaurant that serves bland, unseasoned, frozen-then/microwaved meats, sauces that are fit for an old folks home and an \"endless\" pasta and salad bar. Go to these places, because Guissepe's is not for you. It's for lovers of true Northern/Northeast American Italian cuisine. Chicken Parm that is fried, NOT baked, thank you very much. Meatballs that use beef, veal and pork. Sauce that use LOTS of salt, as it should be. Leave your dietary worries at home.\n\n In a word: perfecto.\n\nRobert's passion for music (he's a well known accomplished cellist in NY circles) and food is unparalleled. He is without peer in the state of Arizona. \n\nBut be warned... there ain't no endless pasta bowl here.\n \nTheir weekday lunches are equally superior. This is Italian the way we had it growing up in North Jersey.", "type": "review", "business_id": "VpW40mznMS43CqdbelX2wA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ETIAM78kYT_xPM8b2iqi7g", "review_id": "uERIDJypjod13_XVbn3COQ", "stars": 4, "date": "2010-11-21", "text": "Finally! A Chinese restaurant on the west side that's really good! Understand they've been here a year - on a Saturday night at 6:30pm they were packed - at 7:15pm, they were practically empty. Now you know when to arrive.\nJo had Asparagas with Chicken and Shrimp, I had Kung Pao Beef...both excellent. The spring rolls were very tasty.\nI'd consider 5 stars except for the waiter - too much of a hurry, put down the spring rolls without sauce or mustard, never asked if we wanted anything. I watched other waiters and they were much more thorough, so we just caught a poor one.\nGo back again? For sure!", "type": "review", "business_id": "5Va2HCh_R2fhdGI15K32XA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6POmMZXi6CMWPzj8eaWk6g", "review_id": "HHpWveXhw4rbntA9HN7XwQ", "stars": 4, "date": "2008-12-02", "text": "Our team ordered a pizza while we were in a business meeting and the guys were great in delivering it on time. As a bonus the pizza was great. I'm usually a stickler when it comes to crust, and this stuff was great. The only thing I didn't like was that the margarita had tomatoes on it and not tomato sauce. Just a personal preference. Also wish they added the basil leaves at the end to keep it from fully cooking/charing.\n\nWe'll be ordering from here again.", "type": "review", "business_id": "HQ8N_EwJA3NdF1UApsF-fA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "33T-R7e8y7st0PA2HRyHnw", "review_id": "xKAsktcvPTRe14pEeNwptA", "stars": 3, "date": "2011-10-04", "text": "I discovered this place on my way to a comedy show! It was a Saturday night with an ASU game on and was not packed so we stopped in to get a drink and a bite to eat. First impression was nice! Everything looked clean and open, which i didn't expect from the outside appearance. \nThe service was kinda slow. I have worked in the restaurant/bar industry for 10+ years and I understand how things can go wrong that the customers don't see so i am not going to be hard on these guys. (By the way, the girls are all dressed pretty skimpy and the guys are just short of guidos, so if you have small kids this may not be the place to bring em) So the drink service was slow and throughout we never were really sure who our server was. One girl took our drink order, another brought them, someone else took our food order, someone else brought our food, and someone else came over to see if all was ok... There had to be 15 employees and maybe 25 customers, not to mention the kitchen staff. \nSo the service was slow and not sure why because we were constantly seeing the staff goofing around with one another and as mentioned before it was not busy. BUT the associates were very nice the entire time so it was not bad service my any means, just slow and a little unattentive. \nIt seemed to turn into a club style late at night, which could explain the extensive staff. \nThere is a wheel that you can spin with different actions on it, such as, \"kiss a random' '50% off bill\" \"go plastic\" (which apparently gives you a chance to win plastic surgery). I would suggest NOT attempting this if you are not single. \nOverall, the food was GREAT!!!! The place was clean (bathrooms could use attention). The service could use some tweeking. But we were happy with it!", "type": "review", "business_id": "-9pVS__IliMA2aNEYzrQrg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "qfHkekpzM6EVI1mA_yZ1ug", "stars": 4, "date": "2012-02-21", "text": "I was hella skeptical that a Phoenix fast food Mexican joint could top a Mission taqueria. Rivas pleasantly surprised me. I chose the two burritos with chicken meal that came with rice and beans. Standard, but fulfilling rice and refried beans. The burrito was a breath of fresh grilled veggies. A warm tortilla filled with chicken, peppers and onions. So simple and yet so mouth watering. Best part was that the burrito was so big that I got to save the second one for my flight back to SF. Oh, and this whole package was under $7.", "type": "review", "business_id": "vSEFzop2GDXsIWTLxIGMiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8-InERGLhHGjX3DZPFXMqg", "review_id": "hs_EgRhQiwR-lXrhb36-jw", "stars": 3, "date": "2011-10-16", "text": "Beautiful Casino. I'm into architect. Yet, if you are a slot machine gambler for the fun of it or not. This may not be a place I would dump my hard earnings into even if it where just for fun. I was out her with my Uncle and although I didn't play. He was having a good time playing 2.5 hours straight. Yet, as I followed in from one slot to another after spending a lot of his money down the drain. I noticed that not only did he not get any winnings, but no one around was winning either during the entire time he played. Really?!?! Not only was he in the hole, but many others. Very ODD that I noticed this. Also, no one was working the floor asking anyone if they'd like a drink. Perhaps, I may be used to how Vegas does it?\n\nI'm curious for other feedback from other attendees at this place. Have you had any winnings? \n\nWe initially came out her for the Vietnamese Concert and Show. I would provide a rating for that, yet it's not a regular performance at this Casino. So I will refrain.", "type": "review", "business_id": "8x9Mzb7gX6SEHQIlSDpU8w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r2D6DUDgN2CCDVtqranHTg", "review_id": "46eplIuUE5l1GYi9dLZ-eQ", "stars": 4, "date": "2010-04-10", "text": "I enjoyed a pleasant lunch here with my carefree grandparents-in-law who recommended Tonto as a delicious place. When we first entered the I thought it might be full of retirees and rich Arizonians but I was pleasantly surprised to find a crowd of all sorts enjoying lunch on the outdoor patio overlooking a pretty view of the golf course and elegant Saguaros. Elegantly Casual American describes Tonto. \n\nIndeed it's pricey, but the food is fresh, creatively presented and delicious. (Extra pluses for using locally-sourced ingredients) \nI enjoyed the Mexican white shrimp tacos. The petite shrimp comes drenched in a sassy ancho chili green pepper sauce, complemented by a cool and zesty cabbage-carrot-cilanto slaw, avocado cream sauce and chewy homemade white corn tortillas. The fun is getting to assemble your own tacos. I ate nearly every bite and was stuffed for most of the day. \n\nMy companions enjoyed the Reuben sandwich (layered corned beef on crispy rye, served with skinny fries that don't need ketchup) and the Halibut served on potato cake with spinach and carrot salad. Grandma-in-law said the halibut was tender and flavorful. I can imagine a bunch of friends or foodies mingling and laughing, sipping wine in relaxed delight as you drink in the beautiful view. \n\nWorth a visit, whether you're a local foodie or traveler.", "type": "review", "business_id": "TehSM5JrMRikSnjnnfulbw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "nSLrExcVVphiNzvSf5H7vA", "review_id": "HHASTCkx31YiMeYb8-YMIw", "stars": 5, "date": "2012-01-11", "text": "BEAUTIFUL! Phoenix doesn't get much more amazing then when you're looking down at her from Dobbins Lookout.\n\nA few tips:\n1. Get there before 6pm. The park closes the entry but if you're in, you can stay as long as you want. \n2. Be ready for a drive up a mountain -- scary cliffs and tight corners. Make sure you go slow, watch for hikers and cyclists, and overall be cautious.\n3. If you're heading to the summit for the views (Dobbins Lookout) bring a jacket or blanket. It's cold and windy when the sun goes down, even in the summer.\n\nThere are bathrooms but no water fountains at the Lookout.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "gN03qFYysM5DbgjuV6N0QQ", "review_id": "j39bSuhgxfAwU1CK2o3sWw", "stars": 4, "date": "2012-01-27", "text": "Chloe's Corner, opened last week in the CityScape, Downtown.\n\nThe interior is modern, spacious and very comfortable. The design is not only admirable, but also very broad. Inside the restaurant there are various types of seating. Tables, counters even plush chairs to chill and kick it with a glass of beer or wine among friends. There is an outside patio too.\n\nThe first thing you notice during breakfast is a fifty cent cup of coffee. This is a bold brew in a paper cup and plastic top. Excellent coffee. For my morning meal I order Chloe's favorite, a six dollar 2 scrambled eggs, 2 slices of bacon, toast, wedge of fruit, plate. The swirled marbled rye bread crafted at John Anthoney's Italian Bread Company was perfect. Potatoes sauteed with fresh chili peppers were tip top. Bacon was thick and so good.\n\nThis is one of the areas newest restaurants, and even has a few groceries. Fresh ready to go pre-made lunches, fruit, wine, beer and soft drinks. I would love to recommend at least one bottle water that would come in a paper carton instead of plastic. I took home a bottle of Le Village, Sparkling French Limonade, tasty.\n\nAlso a big thanks to Malalay, a super svelte, very friendly gal that not only poured the coffee and brought the food, but laughed with me too. And ^5's to my cook.\n\nTotal bill today was $10.33. I will visit again. Happy Hour next time, to check out the beer garden.", "type": "review", "business_id": "Lo0dRIDKXc5mlE-coVZrtQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "iU8dIknYlPPOnYvCiZEM8Q", "stars": 3, "date": "2010-01-31", "text": "The parking situation is ridiculous, seriously. If you can, walk/bike/bus. It's not worth the energy/effort otherwise.\n\nAnother downside? If you don't make 6 figures, dont' plan on buying anything here. Seriously. Nothing lends itself to everyday people. Except for m aybe Borders (outside of food options).\n\nMy most recent venture there was on a Fri afternoon and it was PACKED and we literally could not eat anywhere without a decent wait and we were starving... so we were stuck.\n\nThe bonus is the MoJo, Borders & Paradise there. But nothing else lends itself to my medicore income.", "type": "review", "business_id": "QAWdgDgWaFJYzJ2pGDjmdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "n6LeAoIuDR3NfIBEsmL_zg", "review_id": "mym0Q4PzTZ2-2eyfKgUxRg", "stars": 5, "date": "2012-02-19", "text": "Took Travis here for one of our first dates and just LOVE Cibo. It's situated in a home from 1913 and has colored lights wrapped all around the trees. You can either sit inside or on the gorgeous patio. Brick oven pizza and cheese plates offered here and it's definitely a place for a cool date.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "usQTOj7LQ9v0Fl98gRa3Iw", "review_id": "F7_kvr01KHD9l2hckfXbnA", "stars": 2, "date": "2010-05-17", "text": "On the verge of just giving one star I, I figured on 2 only because I enjoyed the cool open interior of the main restaurant. As far as the food. That is one star. \nWhile having just stopped in at the Ranch Market to pick up a few groceries, I was going to eat at the Market itself but decided to maybe try a place I had never tried near by instead. As I took my groceries to the car, I decided that since I had not yet tried \"Tradiciones\" I would give them a try. \nI enjoy the food at the Ranch Market-- tasty and authentic. Since they are connected I THOUGHT the food would be the same. Boy was I wrong! I don't know who they have cooking here, but with all the great stuff they have next door it should be A LOT better. \nThe salsa should have been the first clue...it was just ok. Again, knowing what they make in house next door, made this salsa pretty sad. Wanting an Agua Fresca to drink and again knowing next door had like 7+ varieties, I was disappointed they only had horchata and pina here. I got the pina, which was probably the best part of this meal. \nI was really craving some tacos, and noticed they only really offered them under the appetizer menu as street tacos. Also wanting to have a sopito, I thought WTH I will get the sampler platter and add a taco. \n\nThe platter came with 2 mini chimis, 2 mini taquitos, 2 mini cheese enchiladas and a soptio each of chicken and beef. All looked good when it came out. I enjoyed the taco first...the last thing I was to enjoy on this culinary outing. Then, digging into the chicken enchiladas, the sauce was a \"mole\". This was not a good mole...way too sweet, someones idea of a mole. Yes, just because a mole has chocolate doesn't mean it's a chocolate sauce. And the chicken, stringy bland kinda tough. Everything followed suit, bland not very authentic, someones idea of mexican food. It all reminded me of something I would get if in the Mid-west somewhere and wanted Mexican food...not Arizona! \n\nThe only saving grace to this meal was that it was happy hour on a Saturday and the platter was 1/2 off and the taco was a buck so I left paying only $9 instead of $15. \n\nWhile I will continue to eat at the Market....I will pass on TRADICIONES...*blegh*.", "type": "review", "business_id": "vA8T8QXh78iSXhxShLNgQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0ZFxSVbJhiN06OJSXsWVxg", "review_id": "xUPi1IU3JlCnbuZgMqSj-g", "stars": 1, "date": "2010-10-22", "text": "The reviews were so good that my friend and I had to check it out. We were very disappointed this morning while trying to eat breakfast and swatting tons of flies!!! They were everywhere, on us, our food, the other customers - and this was inside. The egg sandwiches were served on hamburger buns shaped like rolls - I could have went next door to get one just like it at McDonalds. Not surprised people from Ahwatukee like this place, it looks nice but the food is so-so.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "i3P_fJi5tjzMOEutUwl_uw", "review_id": "3WHYWpKEp9UkPtX7agHV-Q", "stars": 5, "date": "2008-03-16", "text": "I don't think my husband will let me rate it anything less than 5 stars... \n\nParking for us was okay since we did not park in the lot, we parked at neighboring house for 5 bucks. Grabbed some towels from the hotel and staked out our claim on the lawn... People were very friendly. My hubby met some folks from Dixon, IL the day before and they came by to say Hi... and of course, watching the Cubbies - can't beat that!!!", "type": "review", "business_id": "WrMPN5glZGrbI3rvVtxJFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "uL8JCYexqWNs2Ewg4Cimiw", "review_id": "Nx7nZauAL79zkL7Ka55DEw", "stars": 5, "date": "2012-03-29", "text": "We were shopping at the Bass Pro Shop in Tempe and decided to go for ice cream to kill some time before dropping my parents off at the airport. I pulled out my iPad and 'yelped' ice cream. It brought up 4 options in the area and we chose Dairy Queen which was a few blocks away.\n\nAs luck would have it there was no left turn onto Dobson and we ended up going East on the 202 the opposite direction of the Dairy Queen. So I searched again and we came up with Yogurtland. It wasn't luck after all but some ice cream higher power at work to bring us to our frozen yogurt oasis in Yogurtland. Not only were the ingredients fresh and delicious but the price was reasonable as well. 5 of us each had a scrumptious & generously portioned sundae and our total bill was less than $20!\n\nWe all enjoyed our selections. One topping surprise was the Fruit Pebbles cereal my daughter put on her sundae. The fruity crunch they added was delish! \n\nYogurtland was a home run! Thanks For the Yelp!", "type": "review", "business_id": "djYFLq4Bkqpkd14-0IJfug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vzAvkSRois2VMqj_AT7xVA", "review_id": "TOlpNDa4ekkuooTXffP6QQ", "stars": 5, "date": "2012-12-27", "text": "Great product! I was on a mission to make homemade mozzarella with the absolute best ingredients I could find. Organic, whole, raw milk - this certainly did the trick! We'll be going back that's for sure!", "type": "review", "business_id": "p_4cUTxtMWToqUKCy11qcw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "EJu5peGoO4tzop0pQtgHgA", "review_id": "2PowKeFWzpjJA_OXMjwqaQ", "stars": 5, "date": "2008-08-02", "text": "I've been giving a lot of 5-star reviews lately, but (in my opinion) they all deserve it. \n\nMovies on Central RULES. They have 99.9% of every movie title we've looked for. Since summer started, we've been in there at least once a week. Bonus: they have a water cooler right by the door. Sweet!", "type": "review", "business_id": "4yrf5wPxntzJt5Iz-96OEA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "v26k4Bzy9GiLLlSmDk8LfA", "review_id": "KsRPq1cYZIIeXexZ5rBfKg", "stars": 4, "date": "2011-11-27", "text": "I really enjoy the food here. Great breakfast fare. Great prices. Great service. The pancakes are really good. I still wonder why people go to Dennys. This is wayyyyyy better.", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5xSIdC1tdsJPtJnWj3ofRw", "review_id": "O2YWgyNkbNFbYCO7XxVfkA", "stars": 2, "date": "2010-09-23", "text": "I was so excited to find this place, less than a minute down the street from home! Because I'm not a big panda express fan, but I love Chinese food. Sadly, I was disappointed. \n\nThe orange chicken was very stringy and tasteless. The sweet and sour sauce was runny and mostly sour. The wontons were the only decent thing we ate there. \n\nIf you want good, cheap chinese avoid this place and try Li's Bowl on 35th ave.", "type": "review", "business_id": "qVWR4NHU3NXlEIaCy67g2g"} +{"votes": {"funny": 6, "useful": 11, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "dW7kjEcQFt_ckvKXr2fNbQ", "stars": 5, "date": "2012-12-04", "text": "I can't believe it took me this long to visit Sportsman's but now that I have, I know I'll be making my way back soon enough! Sportman's is a combination wine bar and retail store for spirits, wine, champagne and beer galore. Plus it's locally owned by the Basha's family! \n\nI like Sportsman's because it's a friendly and warm atmosphere and they have a great variety of discounts for their different levels of alcohol. The walls are lined from the floor to the ceiling with every type of alcohol. The prices range from $10 - thousands of dollars! It's pretty easy to find any type of brand here. Since it's the holiday season, they are currently offering sales on several of their high-end brands which makes it easy to visit for the purchase of a gift! I also like the fact that guests can visit the intimate bar area and sip on some beverages to take a break from shopping. They also make customized gift baskets!", "type": "review", "business_id": "uL_kqSm8ZqJ_3U88uwA8tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rWFCaDU05dUelPe8gFtJvg", "review_id": "oXmhPVATH70xTdDBNrrcOw", "stars": 3, "date": "2011-05-29", "text": "went there for sunday morning hangover breakfast. the mariachi band, while maybe nice outside or not so loud, was so overpowering that we could not talk... the trumpet was terrible for hangover ears... not peaceful or calm at all- so we sat outside. food was good. service was decent. a little pricey but okay because thats what every downtown restaurant has to do. i would go back... just not near that mariachi band.", "type": "review", "business_id": "Y293fHh5SZ0_9BZm4M6BCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kpbhy1zPewGDmdNfNqQp-g", "review_id": "k1a70dZI5EABm-MW4asQGg", "stars": 4, "date": "2012-10-14", "text": "I enjoyed our dinner here although I think this might be more of a happy hour destination. We had the trio of dips which were lovely. I had the house enchiladas with grilled chicken and that was delicious. The rice and beans left something to be desired. Husband had the pork green chile mac and cheese which he enjoyed but felt was underseasoned. \n\nI ordered the peach sangria on the recommendation of a friend but found it to be too wine-y for me. I was expected a glass full of fruit as is customary and there was one tiny lone piece of peach clinging sadly to the bottom of the glass. The waiter was kind enough to swap it out for the passionfruit sangria which I enjoyed much more. I also tried the blood orange mojito and the coconut mojito. They were both fabulous and LARGE! If it were up to me, I'd make them slightly less sweet but they were still fantastic nonetheless. \n\nWe shared the macadamia nut brownie and ice cream for dessert and that was wonderful. The brownie was sort of like the bastard child between cake and a brownie. Denser than cake, not as dense as a brownie. \n\nOur server was wonderful. Friendly, attentive, and helpful.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SB37ySvE9n2GY0AJi47nug", "review_id": "voZHhgDuLxX1TmSq4Gd2tw", "stars": 4, "date": "2011-12-03", "text": "I didn't give this rating based on taste because I frankly hate Pizza Hut pizza. I think it's gross. The sandwiches and wings are great though. My fiance loves it all though. I like it because it is right next to our house and the staff are always friendly. I pick it up on my way home and if I get there early they try to get it for me as soon as they can.", "type": "review", "business_id": "4sE8irsM-l6Y-Npodmx9kA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DOJM58OkGSsIdk2qCUZnLQ", "review_id": "hIydalJ3IiaC60pAhLX__w", "stars": 4, "date": "2012-02-16", "text": "I've been here so many times, I can't believe I haven't reviewed Black Bear yet! This is me and my friend's \"go-to\" breakfast place. Ginormous portions, and for a decent price. A little slow on the service, but if you're not in a hurry it's no big deal. Basically down home cooking. You see diner and that is exactly what you get. Good eats!", "type": "review", "business_id": "1F-pelV0fTduYV_vCrvjLA"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "qbQunSvGEEaUkmwbBJiuyA", "stars": 4, "date": "2009-08-24", "text": "Was out on a date yesterday, and we had worked up an appitite. We were on the light rail, and decided to stop off on Mill to find food. Walked down mill for a second, and found silvermine subs. SCORE!\n\nI had never been here before but I liked it. Its not the fanciest place. Simple location, good food, decent prices. They seemed to have a good selection of hot and cold subs, with different side items and combo meals. I got the King Bullion, and it was tasty! I went with the small sub (5 inches) a large pop and some chips. Food was up in no time flat. Seems to be a college kid hang out, especially considering the location. \n\nWould return in a heartbeat. Tasty, reasonably priced, and right off the light rail on Mill.", "type": "review", "business_id": "OuGcrCgeTBrJnEGvLZ3JvQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "EFrh89jtPS9cf65O1AyyPg", "stars": 2, "date": "2012-01-26", "text": "Carl's has raised the price on its food so that the $6 burger is now actually almost $6. The big marketing ploy here was that you could get a burger for just a few dollars that was the same quality as what other places charge $6 for. Not anymore.\nAdditionally, they have not resolved the issue of employees that speak so little English that they are unable to either take or execute your order correctly. We have emailed Carl's in the past regarding this issue and are just tired of having to bring it to their attention when they get the order wrong (which is most times now). \nWe have now decided to just go across the street to the In N Out burger at Fiesta Mall for any future burger runs. You can get a burger for half the price and the employees speak English and can get your order right.", "type": "review", "business_id": "9BOeSWUvmh4rRhpQNgrdqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "YbhBATyRdcbY_Wg8gk0o_Q", "stars": 4, "date": "2012-01-06", "text": "I've only been here once, but I really like this place. There's a good vibe about it. It's clean and airy, with friendly people...oh, and the food is really good too!\n\nI tried the Chicken Parmesan sandwich. It was big and delicious and came with a scrumptious salad on the side too. I tasted the Salumeria sandwich too, and it was also very tasty. That one had a nice spicy bite to it; very good!\n\nI wish I lived closer to this Aiello's. If you live in the northern part of Phoenix though, this place is certainly worth checking out. I'm looking forward to returning anyway.", "type": "review", "business_id": "zSEknIqmkGL1pQt-ApEeoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e8xrkMtbKJTq33PvPQW37A", "review_id": "XVz-9sNx-Wj7Nh2x-L4rww", "stars": 4, "date": "2010-12-08", "text": "Dumplings, Chicken fried steak with gravy. What more can you ask for. The satff was friendly and fast, Cant wait to try it again.", "type": "review", "business_id": "mQUC-ATrFuMQSaDQb93Pug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "RJbbfty8gzR9j-_vDPE2XQ", "review_id": "qVT1Iy4Td4g74nW1ISzhdQ", "stars": 3, "date": "2012-04-01", "text": "Great coffee shop with tasty lunch and dinner options, very good coffee and cozy atmosphere. A couple of critiques - I found the lunch and dinner menu a bit overpriced for what I received. \n\n I frequently stop in early in the mornings for coffee and a muffin (I live in the area). The muffins are EXCELLENT, unique and tasty . . when they are available. \n\nIt doesn't seem like the pastry chef begins early enough in the morning to have pastries ready to go around 6:30 or 7am. Most other niche coffee shops I've been to in the Phoenix area have fresh baked goods ready to go early in the AM for early commuters like myself.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bQzLun5k4H7X8KCENbbfSQ", "review_id": "CqxF_JsKuq7YsW8NIBkGMQ", "stars": 4, "date": "2012-01-23", "text": "Yum! even though it is incredibly heavy and bad for you- YUM. we got the beef and hominy stew with fry bread and the ultimate taco. let's start with the stew- though it was just beef and hominy, the broth was so tasty and delicious. didn't even need the fry bread on the side. the ultimate taco was pretty awesome- we got the red beef chili and then it had refried beans, cheese, sour cream, and lettuce. it definitely wasn't gourmet but it was so delicious and so cheap! gluttonous, but worth it. we wanted to get a dessert fry bread, but we were just way too full to even go there.", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "VgFeoe5kTEBuiQt9MGDlEQ", "stars": 5, "date": "2010-08-04", "text": "Great views, great food, great service and great atmosphere! We thoroughly enjoyed our dinner here and couldn't believe the neighborhood special - 3 courses for $35!\n\nThe split pea soup was amazing as well as the bing cherry cheesecake...yum!", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "u1fxUYcCZsiazNmczJh0hQ", "review_id": "7vFs3GHFgxYR3mPP0t26Qg", "stars": 4, "date": "2012-08-03", "text": "Great Happy Hour ! Great Food ! I work in the building and many of us wish they opened for lunch.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Vk-hJ1i5ZagPM87Kv9FOnA", "review_id": "Gb1IFS9xd8mwMGjqZzyE0Q", "stars": 4, "date": "2011-02-02", "text": "Id say 3 stars but since the have menudo everyday and prepare it at order I'll go 4. Street tacos are good so is the carne asada. Typical gringo \"Mexican\" food.", "type": "review", "business_id": "FKbLmiEDKqDolWzMXeusUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T-fNA0Z-iEzRhSiIlxs38w", "review_id": "svaYvWFKqE9nHMhGOuPPcQ", "stars": 4, "date": "2012-04-10", "text": "I had never heard of this place until some friends from out of town brought us a bottle of the olive oil. So when I had out of town company visiting, we made a trip to the Olive Mill and signed up for the tour. \n\nThe tour is not really much of a tour, but more of a 20-25 minute lesson on growing and harvesting olives, and then a look at the equipment used to press the oil. Our tour guide was very entertaining and funny. While there was a long period of standing, there is very little walking so really anyone can get their $5 worth.\n\nWhile waiting for the tour to start, we wandered around the store and then enjoyed the wine and cider tasting outside. They also have live music every Saturday. \n\nAfter the tour we filled several sample cups with a variety of olive oil flavors, and bought a loaf of bread, and enjoyed figuring out what was in each cup. The line to order food was too long, so we didn't stick around for a meal, but everything looked wonderful. \n\nThe only less than positive thing I have to say is that they really promoted the Pork Shop down the road, so we went there hoping to load up on ready made food (since we had opted not to wait in line for Olive Mill food). It's actually a butcher shop that also sells a few cooked items. There were BBQ pork burritos, green chili burritos, and spare ribs. The pork burrito was alright, but the sauce overwhelmed the meat so that's all you could really taste. \n\nThe ribs were really a disappointment. They are around $6-7 a pound, and although they were meaty, it took way too much work to get the meat off of the bones. Perhaps a few more hours in the oven, and they would have been better - but I don't recommend going out of your way to check this place out.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3bpZ7LSFyaNy9q3SOaGCYg", "review_id": "8ktkceex_iE1UAW400dYSA", "stars": 5, "date": "2011-07-28", "text": "I bought the HomeRun offer for a bike tune up at Trailhead. I have to say that I was surprised at the quality of the service they did to my Trek hybrid bike. I could definitely tell the bike was riding better, smoother, more efficient. They even re-installed my bike computer, threading the wire around the front right fork very neatly. I definitely recommend this place. Oh, and the food is good, too!", "type": "review", "business_id": "oHjoahzL5F0m-OGDQouEGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "umftbZH3OI9gDXyC8suXQw", "review_id": "oMPUPWWt5Cb2rci5d9yPgA", "stars": 5, "date": "2012-09-30", "text": "Great food and even better beer. Staff are always friendly. My favorite microbrewery in the Valley.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "_7el1cOgnfkNfmZKi277bQ", "review_id": "8miGqaSSjPWu20c555ufRA", "stars": 5, "date": "2009-07-17", "text": "After writing the review the other day I had a taste for Pappa's. So I went last night and YA-HUMMEE! I tried something new the Hudson platter and this baby did not disappoint! Perfectly grilled scallops, 2 succulent and sweet lobster tails, 4 huge shrimp brochette. If you are not familiar with shrimp brochette it is shrimp stuffed with Monterey jack cheese and a sliver of Jalapeno, wrapped in bacon and char -grilled. DELICIOUSNESS! It is served with the fabulous dirty rice and sauteed green beans all for are you ready for this wait for it 22.95! \n\nI also indulged in sharing a little pecan sweet potato pie with Hagen daas vanilla ice cream and bourbon sauce. WOOHOO! FYI all deserts purchased until July 26th will have a portion of the proceeds go to a local food bank! \n\nDinner last night was sooo freakin good I may be back tonight! Bon Appetite", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 5, "useful": 9, "cool": 7}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "2SHqYQ3T4FQuP0sDGLMamQ", "stars": 5, "date": "2010-10-10", "text": "I'm glad I bought my tickets back in August when the event was first posted. I'm not sure the organizers knew what an amazing turn out they would have but the event was sold out so tickets were not available at the door. We arrived at 11:15 (doors opened at 11) and while standing in line to get in there was a staff person checking to make sure we all had tickets and letting people know that if they did not, the event was sold out. \n\nOnce inside it was a sea of cupcakes! Tiny cupcakes that were delicious! I didn't taste one that I didn't like. Liberty Market was my fave I think. Espresso Carmel and Red Velvet! YUM!!! Cruelty Free Cakes makes delicious vegan cupcakes too! I also liked the ones from Cry Baby Ranch. I'm going to have to find them again at the 20th street Farmers Market and Old Town Scottsdale Farmers Market. And everyone was so nice! \n\n$10 got you all the cupcakes you could eat and water AND milk!! And it was for two very worthy causes. Singleton Moms and Safe Haven For Animals. There were also raffles, a cupcake eating contest and cupcake decorating for the kids. So many festivals these days charge you to get in and then, once inside, charge for everything else. People can't afford that these days so it was refreshing to go to an event and not be nickel and dimed for everything. I appreciate that. And best of all my daughter had a great time! There were lots of people so it was a little overwhelming for her but she loved it. Both of us are just coming down from our sugar high. \n\nIt was great to see Gabi and Lindsey manning the Yelp booth and our very own Thomas S. helping with emcee duties! \n\nWill I be back next year? You bet!! And you should come too....just make sure you get your tickets early!", "type": "review", "business_id": "nBaXh8dRLsX_9Ndyvsnv5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "9QECdUlKowg20lRDo8FwTQ", "stars": 5, "date": "2011-09-27", "text": "Our administrative assistant at work is a big fan of Bertha's. And now, I am, too. She's ordered in lunch from Bertha's a couple of times. The first time, it was the Thai chicken salad, which I loved. Today, we had two salads and a sandwich tray. I don't even like sandwiches. I helped myself to both salads, and picked up a sandwich, intending to dismantle it and eat the meat and cheese. Inexplicably, I took a bite of the sandwich, and said \"OMG! This is so good!\" It was the turkey w/bacon and avocado sandwich. My friend seated directly to my left said, \"Let's go to Bertha's and order more of these after lunch.\" They were truly that good. The salads were both great, too. I think we'll be frequenting Bertha's a lot in the immediate future.", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BuwjlU6D4kcs1aGo7wSM4Q", "review_id": "KYs9AFn1CKKYTadbKXbNjQ", "stars": 4, "date": "2012-03-18", "text": "I used to work near here and we got take out a lot. \n\nMy favorites: spinach enchiladas, green corn tamale, chicken mini chimis ( they come with a green chile cream cheese dip, OMG). \n\nI loved their tex mex spin, not authentic Mexican, mind you, but tasty. \n\nI can't speak to the service, I rarely went in to pick up, even... I'm one of those crafty people who can get others to do that, lol. \n\nI liked it though.", "type": "review", "business_id": "DLOr9MYltjcu8X5kwDJgnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cHnlIFP5WwJRer7_C2NUng", "review_id": "hRVojRPSshD7h3VYdv_HpA", "stars": 5, "date": "2012-09-07", "text": "I don't know what I would do if this store ever closed. It's right near our home, has an excellent selection of both wine, meats, and produce. Note that wine is mentioned first... I can't help it! The service is always really good too. Everyone who works here seems like they really love their job. The only issue I have ever had was not being able to get basil a couple of times. I got over it. :D", "type": "review", "business_id": "SvhXjMn91ODnzkjjZY7j6A"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "JIdnF9vzN7XHaYsTvscnGQ", "review_id": "N7jK4Hp_i-3H0S5tXtTAZg", "stars": 2, "date": "2010-01-28", "text": "The atmosphere was nice what we saw of it. Our party had dined at this establishment over 20 times and we where placed at the worst table in the place on the second floor in the back. The food was good and the service adequate. when we left the valet asked us if we came in the old BMW it is four years old and cost over 100,000. I am never going back and will tell all my friends that this place is not acceptable.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "7F-DVLnGmC5hHPUVfSfxDw", "review_id": "ScNbWQ3HYBVfSYDP5QEauw", "stars": 5, "date": "2010-05-26", "text": "I always look forward to a haircut with my fave Barber, David. $13 always gets me the cut I want. I used to head down to a another Barber off of Central Ave but never got the haircut I wanted. Now I never have to worry about that. So if you're ever in need of a Barber shop cut, give David or one of his gals a try. Cheers!", "type": "review", "business_id": "JnCtEM8rrPcg6ME_ivcLBA"} +{"votes": {"funny": 3, "useful": 6, "cool": 7}, "user_id": "F9T6m1YdRFreyKDufcyoOQ", "review_id": "JJmqkq9_cylU0pm9n6kw_g", "stars": 4, "date": "2012-10-19", "text": "The Saguro is a bright, happy place in the middle of Old Town Scottsdale and I, for one, am a big fan of bright, happy places (people, too but that's a story for another time.)\n\nIt is set up more like an apartment and less like a hotel with lots of buildings scattered about, all surrounding a pool. (There is actually more than one pool to make this happen.) It definitely has more of a party vibe than some hotels, which is just fine by me. I can imagine during the summa, summa, summertime these pools are hopping. \n\nAnd, even though the feel of the place is fun, the staff of the place is nothing less than professional. Every single person I interacted with was beyond kind, helpful, and happy.\n\nWhether you need a hotel room for a night or a full trip, a place to hang out poolside, a happy hour cocktail, a casual meeting place, or breakfast or lunch I think The Saguaro just might have you covered. And all with a smile. \n\nWhat's not to like about that?", "type": "review", "business_id": "yZbPvIa_7nt7ekxi31SkUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4DXhDszXSHzhaUqOOc4RoQ", "review_id": "O7eW27kWQBOsdyY6YJF-8w", "stars": 5, "date": "2012-08-16", "text": "My van broke down and I needed a tow real fast because I had my kids with me in the heat. I looked up towing on my phone and just happened to pick Leyva's. I am so glad I did. I spoke with Chris and he was very nice and helpful. The driver was there within 20 minutes and was also so, so nice to me and my kids. He was very clean and professional and courteous. The whole experience was better than I have every had with a towing company. I keep their card in my wallet now and gladly refer them.", "type": "review", "business_id": "2jg5fV6orXdfBW6420mA3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "82vsbM8ggZV4BVrtLB9s3A", "review_id": "4CgoGDd236jY7VaSoFmB1w", "stars": 4, "date": "2010-09-13", "text": "There is absolutely no other restaurant in town that has better BBq. Their pull pork is just mouth watering.. Very juicy.. Great bbq sauce with a touch of spicy to it... Just perfect.. Ribs are unbelievable.. This is not a place you get a 5 star customer service.. if you are going here and expecting anything but great bbq, you will disappointed... It's a whole in wall and I absolutely love their food... I usually give a lot of points for customer service and treatment... but their food is so good that makes up for everything else they lack and I will keep going back just because of their good bbq....", "type": "review", "business_id": "asebFFgabg_lfoNpGJHZlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B_uj5v3CrnpU--3oswtPLQ", "review_id": "I72TB8lRvc4Jx8_nuqsjAA", "stars": 4, "date": "2011-01-09", "text": "Had just gotten off a long flight and wondered into Aunt Chiladas for the first time. Loved the food and the margaritas !! Will go back again.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sek3oLIIHtBSTSFh9z3pXQ", "review_id": "lwR1tL_ZmBRv7q5AIUTNtw", "stars": 4, "date": "2011-05-07", "text": "The place was dope! The only bummer was the half-assed sun cover offerings out on the patio, but we were lucky to find a spot inside for post brunch drinks! Food, service and atmosphere are all good! Definitely make it to this spot!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "aQ4wSvsatTj1_iW_YXxHJQ", "review_id": "0OSewGLXfkNzGZLNSnFkNw", "stars": 4, "date": "2012-05-03", "text": "Cheap and good, family type feel...", "type": "review", "business_id": "RQWliUrWic_b5FZEj3JThQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "6GJM8bWV3m2cOYPjDjohJA", "review_id": "TxB2nZN2ntdO5xrEirkpOw", "stars": 4, "date": "2008-04-05", "text": "FOOD: I tried the T-Rex (meat lovers pizza), and it was scrumptious. The Thai Peanut Sauce Pizza was a little weird, yet still tasty in its own way, and I could only handle one slice before growing tired of peanut sauce. The Buffalo Chicken Wing Pizza was also pretty good. The highlight of the menu was the beer. The Elsie's Irish Cream, a milk stout, was one of the best stouts I've had (better than the Left Hand Stout). It had a strong coffee flavor but in a good way (I don't drink coffee). The Orange Blossom (mandarin orange hefeweizen) was the best Hefeweizen I've ever had, and I generally don't like Hefeweizens. The orange flavor definitely made that drink more than tolerable. I tried several other beers from Papago's own brewery, and the rest seemed good. They have dozens of bottled beers in the fridges along the walls. But I never got a chance to try any of them. \n\nPRICE: Around $5 per beer on tap. Personal pizzas were $9 and large pizzas that could feed 2-3 people were $18. Appetizers were around $5. \n\nATMOSPHERE: Pretty neat place. Funny statues, tvs, darts and all wooden furniture. Drawbacks are very small tables, uncomfortable chairs, odd layout, and almost too loud at times. \n\nSERVICE: The place seemed a little understaffed at times. We would be helped my a couple employees throughout the night as one would have to run behind the bar to make drinks or clean. All the servers were very nice and patient, but seemed to be a little overwhelmed and, thus, forgot to bring me a drink I ordered. \n\nSKINNY: Papago Brewing Company Inc has its pros and cons, but overall its a good place. I would definitely go there for the beer, while the pizza is good but nothing to rant about. Some may disagree with me, but I still prefer Tempe's own Four Peaks. I feel Four Peaks' food is better, better seating, and the beers are just as good as Papago's flavors. Don't let this comparison discourage you! Papago's is still a good place to drink and eat.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aPyDfWvzoeBLYJpuz-OHSg", "review_id": "NMXfzmoPJgDlbF1x7E5Ppw", "stars": 4, "date": "2012-02-16", "text": "Had an opportunity to take our Canadian guests to Aiello's for supper on the weekend. It was a a moderate drive but we were not disappointed. We were rewarded with pleasant surroundings, attentive service and good food. The complementary hot pepper starter was unusual and tasty when coupled with the fresh bread. The Mushroom Ravioli Special was especially enjoyed by my spouse and the other entrees brought favorable reviews from our guests. All in all an enjoyable dining experience.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OsYh3jArm6fgozczE85ZeQ", "review_id": "JTlz3wfoh_zx__nOgoONKA", "stars": 3, "date": "2008-11-24", "text": "this may be the fastest I have ever Yelped and it proves that I am hopelessly addicted to this foresaken site!!!\n\nWas in the area and figured I would hit up this burrito place. i was in the mood for the slop that makes a tasty burrito. This certainly was not bad.\n\nHUGE burrito.\n\nlots and lots and lots of meat\ntons of sauce, guac, cheese, pico, and more of all that too.\n\nPretty tasty and now I am stuffed. \n\nI am in the area from time to time so I think I will go back and kill some more burritos.", "type": "review", "business_id": "M_GFrB5jq323JAIh9aU0Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EVN484M7GZxhVpp61JgQBA", "review_id": "SLgZGUP91wV06QT4pVrqNQ", "stars": 4, "date": "2011-01-04", "text": "Thank God that The Vig wasn't open when I lived just down the street! I would've lived there! I was back in town in the fall and after brunch across the street at Dick's we needed MORE post-brunch champers. Over to The Vig we went. \n\nHow darn cute! When I lived in Phoenix, this was a BofA training center and my standard ATM spot. I like it better as The Vig. We enjoyed many, many of the $5 mimosas with your choice of fresh juices (orange, grapefruit, strawberry or watermelon). Yummy! We stayed so long and drank so many mimosas that we had to order nachos. They were really tasty.\n\nSitting out on the patio in late October in short sleeves with friends and champagne was delightful for this Chicagoan.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "pwBby4MzhVmiBfUJasq0jg", "stars": 3, "date": "2012-08-07", "text": "This was my first restaurant in Phoenix. I was taken here for a lunch prior to an interview I had. I was pretty nervous about the whole situation so I don't remember too many details, but I would recommend this place if you're a sushi lover or on the go and need a quick lunch to eat at your desk. Service was great too.", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3VIRjR2V29TOaI9u64hMig", "review_id": "ZWzx7pQbIMNLxib-wZ0tNw", "stars": 5, "date": "2010-07-09", "text": "Delicious food, amazing martini's, and wonderful desserts. Every dish I have eaten here has been nothing short of awesome. First, to start they have house infused seasonal vodkas. You can see the vodkas steeping on the bar when you walk in. Appetizers are not overly filling - The frito misto is always seasonal so depending on the time of year you will get different things. The coating is perfect and light so you can really taste the vegetables but still get the crunch. The same is true with the mozzarella. The cheese was fresh and the crunchy crust of fried coating around it was perfect. \n\nAs far as entrees go, the portions are perfectly sized and flavorful. The pasta is perfectly cooked and coated with whatever you choose on the menu. I love the simplicity of some and the complexity of others. Finally, desert has always been good. Try the limoncello cheesecake or any flavor of gelato and you certainly won't be disappointed.", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K0euQLFAcKhQPZ6JxGAryg", "review_id": "DrZjmuK4w-eCFRdnZiOkyA", "stars": 3, "date": "2012-06-03", "text": "This is the FIRST Red Robin I had ever been to (earlier this year). The service is always really good. Good Veggie Burgers, love the bottomless fries (garlic & sweet potato), cool shakes and mixed drinks. One of the few restaurants to stay open late in this town!!! Great place to come after a movie at Harkins.", "type": "review", "business_id": "BRhKD4BEMg6NagsD3z-0YA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t0Z7kU8Wt4ouJ2qFO3vxow", "review_id": "uMD5efbewunrCU6LxqXzxA", "stars": 4, "date": "2012-07-17", "text": "This is definitely the best place for breakfast in Wickenburg. Loved all the cowboy decorations, photos of actors from the early Westerns days, and the \"cuckoo\" clock which didn't cuckoo but instead whinnied like a horse. Clean premises, very friendly staff, excellent service, and breakfast for the group came out in due time. Call ahead for groups of more than 4, as most of the booths are small.", "type": "review", "business_id": "0wRPvS-sG5x-pEMKVuDBJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yA77gvXdxFViK0mZcSiveA", "review_id": "gxwyUlAafPsd3Rz9GpYZIA", "stars": 4, "date": "2011-03-22", "text": "Sorry, had to deduct a star because it's freakin EXPENSIVE for lawn seats. Really Glendale? You're gonna charge $13 for lawn seats? \n\nIt's a BEAUTIFUL facility! Plenty of grass, plenty of seats, plenty of shade, and a plethora of food choices... all which perfectly align with the baseball experience.", "type": "review", "business_id": "IYYaa562PybzXf8tQnT17w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JCpQDETmyGtQ_PJbSnc47w", "review_id": "fnJQ1arn9sRH4RoQs8B3xQ", "stars": 5, "date": "2012-04-19", "text": "Perfect burritos, polite staff with a couple cuties working here. I love Chipotle!", "type": "review", "business_id": "zYCGmnEvORQ7pf4Lwfrc2w"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "uVU1FyUPPVxzZ8jbye-rFA", "review_id": "ObLm2Kw_Vyj0MthpgwaozA", "stars": 5, "date": "2008-09-25", "text": "A few years ago my husband bought me a gift certificate for this spa. Oh my god - it was the most beautiful spa I had ever went to! I had a facial and a massage. In addition to that - I got unlimited day usage of their spa stuff! They had a beautiful locker room that had a sauna and jacuzzi in it. An secluded area where you could lay outside - naked! They also had a huge pool out behind the spa where you could just layout and be lazy. Oh- also they had some sitting rooms with magazines, fire places -oh my goodness. It was awesome! AND - the prices weren't that high compared to other spa's in the valley. Check it out if you can!", "type": "review", "business_id": "qfFSS0A5OXUkCbTeC1fYLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QnIm5uXIvBQ8k4FGVSu3CQ", "review_id": "M6tdg-RPnkKG9AKaSHlo_A", "stars": 1, "date": "2012-07-14", "text": "Let me start by saying after my experience I surly wish they had half or quarter stars and I am not often found with a lack of words but this is going to take some effort to stomach.\n\nStrolled into this establishment at about 1:30 am, now to their credit I fully understand the crowd on mill at these hours so I lower my levels of expectations..\n\nPlace is moderately busy as we walk in, I get to the counter, order some pepperoni pizza and a pretzel with 2 drink cups. Second drink cup is forgot after they ran out of the dispenser, after I remind him he gets a fresh stock of cups to replenish his dispenser but first takes his hand, fingers placed inside the cup and hand me one. Yuck.. Gf didn't catch it so I gave her the first cup and took the lingering finger taste cup as my own.\n\n\nFast forward a few minutes, guy is in there , his friends are loud and his face is cut wide open from who knows what incident.. He is arguing and finally his friends get him out the door. Now if I ran this place that guy and his yelling and problems would have been asked to stay, his hands Nd bloody shirt bumping and squeezing past people was discussing . But.. Let's let that go because it's busy and again this is MIll and it is 2 am..\n\n\n\nFast forward 10 minutes.. Tell the guy the ice machine is out, several minutes later.. They fill it.. Again it's busy, no big deal on that one, and with the high temp in the place maybe it killed on the fingerprint bacteria in my cup while we waited.. \"I'm a wishful thinker\"\n\nSeveral more minutes go buy of people bustling past, smearing nastily cheese wish sandwich wrappers all o over the floor as We walked by \"place was trashed\" I go back up and ask the guy for our order.. He said\", oh sorry forgot\" I was amused but it's just sliced pizza and a pretzel.. He tosses them in the oven, and a couple minutes later I get them. Well pizza had obviously been there forever but it was pizza, pretzel was hard as a rock and couldn't eat it.\n\n\nThen the show starts.. there had been a few people in there, that obviously knew the gentlemen working the register, the flooding actions are the cause for this reviewing of the above..\n\nShort list\n\n-employee is wiping his sweaty face by hand, receiving money..then is prepping pizza with topping BY BARE HAND.. Placing it in the oven, all with out gloves. This occurs over and over, then when his friends arrive there is a round of hand slaps... Um.. Where did these guys come from, did they wash their hands?, eww. So in the 45 minutes I am in here,no hand washing, no gloves..his hands on food, toppings, money, hands, face, along with all over surfaces possible. Freaking DISGUSTING.\n\nBut it gets better.. His friends that he is conversing with are about to ice the cake.. One of them this red headed guy is reaching behind the counter near the pick up, and grabbing fries out of the Bin with his hands.. This happens no less than 10 times..\n\nAnother one ask his to meet them in the bathroom... Um what? Yes.. That locked bathroom father 1 am that is closed off to customers.. Hmm my imagination can only wonder what brief activity occurred in the restroom. could my dazed and non health conscious server and front man for this business also be doing drug's one can only speculate. His actions after reflected a very relaxed and dazed person.\n\nWhere I will give this guy a couple points, is end of the night he started picking up the place as it had slowed, well this obviously is his job and they have to clean up at the end of the night anyways..but was surprised at this point. \n\nAt this point and my food not eaten we are done being entertained by watching all this and he asked to take our plate at which time he noticed I didn't eat much. He asked if the pretzel was not good and I choose this time to politely tell him the reasons above as why we didn't finish. \n\nHe took it in stride, with no attitude but said simply they got busy and backed up. I do appreciate that but honestly there is ZERO excuse for even a small percentage of the actions to have taken place. I see this as a health risk and was more comfortable at taco stands in Mexico than this establishment. \n\n\n\nIn short, I'll be contacting the owner of this location. \n\nI do realize this is a late night food offering, I do realize the clientele, but I also know this is unacceptable and some poor guy who is mismanaging this place needs a wake up call.\n\n\nI will be back very soon, if anything just to see if changes are made after I voice my concerns. If needed ill be happy to forward my videos to the county health inspector.\n\n\n-Thanks for reading this little novel.", "type": "review", "business_id": "hebts_NucpamjCG2B9VY5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OqeEFFbXGi6KGg9UeN6AQg", "review_id": "6-d31tLaZEqF9mqYG6xlyg", "stars": 4, "date": "2012-04-28", "text": "Went in after a day of shopping with my mother. We walked into the bar side and decided we wanted to sit in the pew benches on the restaurant side instead. We ordered waters and sodas while munching on a side of chips. My mom got the chicken pot pie and loved the crust and the moist chicken. I got the Meat and Cheese. Although I wish the cheese was a bit more melty the sage pork sausage was great. The dipping gravy tasted of beer. Great addition. The music was fun and the bartender dancing to the music was fun. Great lunch! Will go again when I'm in Tempe. Another plus: enough for left overs!", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "epf_obhMpyZe4kIp4WAW-Q", "stars": 3, "date": "2011-06-21", "text": "Decent place for legit Chinese food with the usual fast service and decent prices. We were able to enjoy roasted duck, crispy pan fried noodles and honey walnut shrimp. All winners we thoroughly devoured. It's location is convenient and parking is readily available. Seating is plentiful so there was no wait when we arrived. Overall, a good find we'll probably go back to when we're in the mood for real Chinese din din.", "type": "review", "business_id": "ChmqODwuYP1ewjmWXtxtsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ssahHNGm1UDnR2XOYl2q9w", "review_id": "gMTMPAyZWUuYgvfq4eQkIw", "stars": 5, "date": "2013-01-02", "text": "We live by and love this place! Happy hour is most def the biggest bang for your buck! Try the shrimp boil but only if you like your shrimp a little spicy!", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "yV6rKdVT7E833ffE6UHwRg", "review_id": "zqbJKo1GmJ694PQ-M_4y3g", "stars": 5, "date": "2012-06-21", "text": "Gallo Blanco has the most delicious ceviche I've ever tasted in AZ. Portion size is plentiful and the chips are quality. I love the indie music selection it really adds to the vibe of Gallo Blanco. If I'm in the area I make it a point to visit.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pVDAcUrUBTz9RGselQfofg", "review_id": "7gOzR7vm5Pt-68-6k1dZ_Q", "stars": 4, "date": "2008-12-20", "text": "Very casual. Great white alfredo pizza. We get it with mushrooms, onions and ricotta. So yum! Very pleasant staff. Delivery - quick! Salads are just okay. Standard - w/ iceburge lettuce It's really for the pizza that we go.", "type": "review", "business_id": "pOQpwDJMikAgrM8BW3iHnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aGvpUCEKjKc4bqbVDiEhlQ", "review_id": "MOZDvsYt4ydT6gy4svMVsA", "stars": 4, "date": "2010-10-24", "text": "Great food with family! Good place to laugh and watch a game or two.", "type": "review", "business_id": "01cEFI5Pq_RyEwM3GSTopQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QzOLMG9OXmsHPUb6CYxuSg", "review_id": "gYoDVHH91Znp93jh2WiZKQ", "stars": 2, "date": "2011-12-29", "text": "Played today, course in decent shape for the money. Would be nice if they would educate groundskeepers on not running mower up to you when trying to play. Also would be nice if beverage service would continue after 4 oclock. Course was packed play was slow and no beverage service. Called in but pro shop phones shut off at 4 30 . No ranger on course either to keep groups moving ended up not finishing eighteen,teed off at 12 30.", "type": "review", "business_id": "14Ys8nYayXPpUouHsyTN1A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "87xBol0dUS8cWao8F-8P9w", "review_id": "ds9hTUUdsuE1dJGUEz6FMg", "stars": 2, "date": "2010-05-10", "text": "Ok, so we've been here a total of two times... the first was a pretty good experience... not memorable, but ok. Then we went again, last night for Mothers Day. My Dad wanted the Trout so bad, so us Mothers gave in. The only positive thing to say about them is how nice they were, we called to see if we could get in at for dinner at 8:30pm, (they closed at 9pm) they said not a problem. I was kinda impressed cuz we've called other restaraunts and they have turned us down in the same senario.... when we sat down, we ordered right away, it took awhile for us to get our food, i finally had to flag our waitress down and ask her to bring whatever was ready whenever it was ready. My salad was probably the best thing I had that night next to the water. Come on tho, how hard is it to mess up salad and a water! My Dad had the trout, he finished it but said it wasnt the best, my Mom had the Chicken Parmesean. She picked around the stuff she didn't like. I ordered a coconut shrimp apetizer, it arrived cold. The bill for two adult entrees and one appetizer a small ceaser salad and one childs meal was $80.... we still tipped $20, but $100 for one of the worst meals in a long time wasn't worth it. We won't be back at least for awhile.", "type": "review", "business_id": "rK9wysMZ3nh6b6dxiG-l_Q"} +{"votes": {"funny": 5, "useful": 4, "cool": 2}, "user_id": "TWjDnKexHSp0U3UQ3W01Kw", "review_id": "1iFwwhNZ8rAUkwtAMYV-Vg", "stars": 3, "date": "2008-10-27", "text": "I like F&E. There are some good things in there, but it's kind of like you have to play by its own rules. If you walk in with one specific item on your list, (Examples: pico de gallo. Not that uncommon, right? How about good hamburger buns? Only one kind? Really?) chances are you might not find it. But, you will be tempted by the premade meals and delightful snacks. Fresh chicken salad? I didn't know I wanted that when I walked in, but now I have it. \n\nDon't come here if you have a strict list that you need to shop for or if you're seeking hard-to-find items. Come here with a friend late on a sunday night when you need ideas to make meals for the rest of the week.\n\nThe store is indeed freezing cold and kind of has that sterile hospital feeling. Lots of really bright lights and WHITE everywhere. The 50% off stuff is great. I got a big package of fettuccine for a dollar. Their prices are a bit odd, though. $0.99 for a pack of four bratwurst, and $2.50 for a can of generic tuna? Well, alright. I'll be back! But now I know under what circumstances to shop here.\n\nHighlight: This location seems to be run by a rather sassy nun.", "type": "review", "business_id": "smWlFMgNgfDm8ZUKGvx65A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kuJKFidhXZ2Mv9R7_GFmiQ", "review_id": "ysA0OhPy5BCPJt5VsXEKiA", "stars": 1, "date": "2011-01-04", "text": "Rude, rude, rude. I will *never* go back to this place. I don't normally carry cash and when I went to pick up my son's pants for his recital that night, I was in a little bit of a jam (they only take cash or checks). When I suggested they might put this on the claim ticket, or at least mention it when people drop off their clothes, the owner pointed to an itty bitty sign and told me \"we have signs everywhere.\" The owner was hostile and argumentative and just didn't care about what I had to say. Then he hovered over me while my son tried his pants on, like I was going to steal something (the place is TINY). I went to an ATM and pulled out cash, it wasn't that big of a deal, but this place has no customer service skills whatsoever. I won't ever go there again. Steer clear.", "type": "review", "business_id": "et2RtW29FPTTFPgu4gsZfw"} +{"votes": {"funny": 5, "useful": 3, "cool": 2}, "user_id": "wEMn5U0mlTp3Td5n2ZgwKQ", "review_id": "k5pNPY-LKDpaCQ6F9BQD-Q", "stars": 1, "date": "2010-10-08", "text": "The Vine Tavern (i'll omit the word Eatery as i'm fairly certain this term can't be applied to the food they serve at this establishment) is a vortex sort of culmination hang-out for low-brow Fred Durst clones and future (day-shift) strippers. With that being said, this cesspool of a building hasn't burned to the ground yet so I feel compelled to warn others before they consider spending an evening there.\n\nBeing new to the Tempe area, myself and a small group of friends decided to drop in to check it out. As we approached the-dimly lit building I began to have second thoughts: my bloomy sense was tingling (more on this later). As we entered we were greeted by a lovely bouncer type gentlemen who begged us to pay the 5$ cover.... seriously. We were seated towards the back near a group of teenage mothers and their burly counterparts. We ordered food...\n\nThe food arrived in a timely manner, it may have been poisoned but i was too hungry to care. I ordered the mushroom/swiss burger.... 9 dollars-ish. If Mcdonalds ever begins selling their products in the frozen food aisle of grocery stores it might taste something like what they serve at The Vine. I had immediate food regret, my only consolation was the 1$ you call its and the poor old man behind the mic with his acoustic guitar wrapping up his set. Surreal. .. . .We regrettably paid and escaped out the back. \n\nGood: Cheap Drinks !!!! \nBad: You may be stabbed!!!", "type": "review", "business_id": "onwUqByAIhtkyJsEITV5lQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2BzcoI6Kiq-2RQ9EUFR5Tw", "review_id": "bpETPtrqZge1KjM0cbEIgw", "stars": 5, "date": "2011-12-21", "text": "What a joy to discover Thai Lahna with my friend Keith Galbut who has been going here for over 10 years. I can see why. Family owned and operated - and everyone is very friendly and helpful. Of course all that matters is the food, right - and it's marvelous. We tried several dishes and all were well spiced and wonderful. Highly recommended.", "type": "review", "business_id": "wct7rZKyZqZftzmAU-vhWQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "-txH2zJSBZQHO6RWvoWXuQ", "review_id": "Co24bDyiWK0XStIL8FzZGQ", "stars": 4, "date": "2008-01-14", "text": "Given its location and surroundings (Postino's, fancy little grocery, etc), LGO is surprisingly casual inside, which I actually enjoyed.\n\nThere seemed to be a decent selection of wine (sorry, I didn't pay attention to the beer list) and if they don't have what you want, you can grab a bottle at the grocery and drink that. I had the sangria, but didn't really love it.\n\nThe pizza though, oi, so yummy. We had just cheese and sausage, and it was delicious. I was a little iffy ordering sausage as I'm pretty picky about it, but it was great. Had I not been trying to be a little ladylike, I could see myself scarfing down most of a whole pizza. \n\nI also have bumped LGO to the top of my list of good places to take out of town guests, especially pickier eaters. Who doesn't love pizza?\n\nUpdate: The roasted corn pizza is FANTASTIC.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-2u23VxjDrJhHnPW8KxCyQ", "review_id": "o5KPIpdCtkfOgungohck4g", "stars": 3, "date": "2012-06-25", "text": "Cool atmosphere and good service.\nThe food is good but seems they are still working on their recipes. The complimentary bread was cold (a small but important detail) and the \"salsa verde\" was mediocre. I had the Orange and Fennel Prawns and there was too much orange and barely any fennel. My boyfriend had the Lobster Mac n' Cheese. Said the lobster didn't taste fresh and the sauce was too rich.\nErnie, the manager came over and introduced himself. He explained the remodel from the previous concept. \nWe'll definitely come back to support a local place at CityScape. I just hope to see some improvements in the food.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "weYT-xJwz8o7mLNWIhD6HA", "review_id": "QqZj1yJMmpf7BhdFB_sN9A", "stars": 4, "date": "2009-11-30", "text": "I know my 2 girlfriends that absolutely LOVE this place will balk at my 4 stars instead of 5. But honestly, I think this place is slightly overrated. Don't get me wrong, I like this place, and I oblige them every time they want to go, but I think 4 stars is just right for the rating. \n\nWe went there this weekend, and the typical scenario went down. Parking was cramped (lucked out to get a \"valet\" spot which I parked into myself as it was right out front by the entrance - no I'm not waiting for you Mr. Valet Dude to get into my car and pull it forward into the spot right in front of my face, thank you very much), and there was a short wait (maybe 10-15 minutes). We sat outside, which wasn't ideal since it was cold and drizzly, but we had patio heaters on both sides of our table so it was OK. \n\nSadly we didn't make their $5 wine special, which ends at 5pm, so we were paying full price for the glasses of wine - ranging from $8 to about $12-13. I don't know about you, but I really am not a fan of paying $10 for a glass of wine when I can pay that for an entire bottle. But alas, I had 2 different wines through the course of the night, both on recommendation from the servers, and both decent. \n\nWe ordered the infamous bruschetta, with the 4 choices being: smoked salmon (YUM!), warm artichoke (tasty), roasted red pepper (still good), and white bean with tomato (OK, but nothing to write home about). \n\nFor dinner, I had the half & half combo (where you get to choose 2 different items), and I chose the mixed green salad (REALLY delicious, with an awesome combination of greens, pears, grapes, gorgonzola cheese, pecans, & poppyseed dressing) and half of a turkey/pesto pannini. The pannini was QUITE boring. Didn't have much flavor at all. I think it was lacking on the pesto. \n\nAnd honestly, this is what I come to expect at Postino. Some things are just unbelievable and you want to lick your plate clean, and other things are simply boring and tasteless (like the white bean/tomato bruschetta and the turkey/pesto pannini). \n\nAnd hence my rating of 4 stars rather than 5. If the parking was easier, the wines were always $5 a glass, and the food was consistent, I would give it 5 stars. Fair enough? :)", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Uxnqej_rEAj-jUOXdk1Kxw", "review_id": "cTr84XfzGeUmYjNCxUWcWA", "stars": 3, "date": "2010-03-26", "text": "I went here last year when I was in AZ, I thought it was God's gift to Mexican food... I was a bit tipsy last year when I went there... I went again last week, it was \"ehhhh\". Don't get me wrong, still good, but not as wonderful as I remembered... not even close. \n\nWe had to wait an hour for a table, the waiter made us wait about 15 minutes (not kidding) for water and chips/salsa... Seriously, 15 minutes? You dumbass! \n\nThe desserts were super good though, that was the upside...", "type": "review", "business_id": "jnzROxEjNkgeo5Ju3F8qzQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "rlcJkEoYzuiS7iF5XfXCMA", "review_id": "w_luF8jbwLEqQZF0dxIiPA", "stars": 5, "date": "2011-08-29", "text": "My roommate came home the other night with a Chocolate Cream pie and oh. my goodness! It is AMAZING! The crust is this wonderful crunchy chocolately wonderfulness. I think she bought a Groupon and I don't know how much she paid but the pie was so good, regardless of full price, I'm sure it's worth it!", "type": "review", "business_id": "DDg0jSO9C8_FdOIcEq4dDg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "na7c6gMDyReSKu5Yz2BM3g", "review_id": "rBkXFIhljFRx6yXrjnD2AA", "stars": 3, "date": "2010-05-19", "text": "Hmmm ... where to start. Food was good, flavorful, no complaints; although for the price I did not think the portions were that great - but everything was tasty and everyone enjoyed their meals.\n\nIt's a big open place, with concrete floors and picnic table type environment. Patio with misters and big open doors to the outside. A good atmosphere for BBQ. Someone mentioned the parking being marginal (very true - same as when this was a bar in it's prior life). I think my biggest downside is how much I had to serve myself - go to the counter to order, pay, get to table, get drinks, get place settings (plastic utensils), for a beer have to go to the separate bar area, order, pay, return for more, etc. (can't order beer where you order food).\n\nWhile I enjoyed the food, not sure how often I'll be back - would not want to be there when it was crowded and have to wait in lines repeatedly.", "type": "review", "business_id": "4DhqZ0tyi2V2Mp8IqTREAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Jxy_Kcymck0Z0QN8XE7rmQ", "review_id": "5awuhFhKTGmU3dTYq5spRA", "stars": 5, "date": "2011-02-24", "text": "The Phoenix metro area is definitely not known for authentic Asian cuisine. China Magic Noodle House, however, is the real deal. This place reminds me of the Taiwanese delis that I used to go to in LA, as well as noodle houses that I've frequented in Taipei.\n\nThey have a great selection of cold noodle, hot noodle and soup noodle dishes. And, a variety of ways to have your noodles (I typically order the thick noodles or shaved noodles). There's always a veggie on the whiteboard to try and the fried tofu is very tender and tasty with the dipping sauce.\n\nIf you're looking for a reasonably priced, ethnically authentic meal in Phoenix (especially the East Valley), China Magic Noodle House should be near the top, if not first, on your list. the only negative that I would have about this place is that there isn't enough choices where chicken is the main protein.", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v_T4PoUlyE3kpBBXpmVWNA", "review_id": "Ljx8xFy2GwtQnu1_Ds4QGA", "stars": 5, "date": "2010-10-28", "text": "Was looking for a nice dinner place in Peoria to send my mom and step-dad for a birthday celebration. The people at Flemings were wonderful. They took my request over the phone and made sure they had a lovely evening. Mom raved about the service and the photos she sent made the food look fantastic!", "type": "review", "business_id": "JM6X0PJBcMkAjOuZqMaZsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "RL7JrAroxWw8kjrN2b_4IA", "stars": 3, "date": "2010-03-08", "text": "The food here is good. It's not outstanding, or anything to write home about, but it IS tasty. \n\nThe whole making a tortilla in front of your eyes seems a little kitch-y to me, but so what? Everyone has to have a marketing ploy.\n\nI've eaten in, and taken out, and the burrito quality is about the same. Personally, I like Chipotle better, as I like the dressing on their veggie salad.\n\nMy one beef (amusing, since I only get the beans) is that they were a little too light handed with everything. I got hardly any guacamole or sour cream, and that is really what helps to make a delicious tasty burrito of goodness in my eyes.\n\nWill I go back? Certainly, if it's on my way and I'm hungry. Will I choose to seek it out? Probably not.", "type": "review", "business_id": "136zvrfN6Kpr9tFj3OMNUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "deF_5OANi4UoW8PlIglz3A", "stars": 5, "date": "2006-12-16", "text": "great food... HUGE wine list (same as Kashmere)... whatever you do make sure to get there cob salad thing (stedson chopped salad)... I substituted the salmon for chicken, but it is still out of this world... i know people that have brought in chefs from out-of-town to figure out what is in it so they can bring it home to their city... don't remember much else... but i remember i have never had anything bad since i have been going there.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "buEkVuCaYnf--1OPUf_-EA", "stars": 3, "date": "2010-07-04", "text": "i know they're doing their jobs and i can understand that. but we couldn't shake our saleslady. we finally had to say that if she didn't leave us alone, we were going to leave. we absolutely couldn't discuss anything because she was CONSTANTLY THERE! we even said we'll come find you if we need any help. literally any piece we glanced at, touched, or came near, she was on top of us \"oh isn't this a great piece. we can set up financing and lock in the sales price, and if you buy 5k worth today with cash, we'll throw in...etc\". every single item. \nthey have nice stuff, no question about that. but i know this game. and it's not fun. it makes shopping miserable. and besides, it's too expensive for us. we got 3 of the same, exact pieces (same model, same sku) at pruitts for less than half we would have paid at Ashleys.", "type": "review", "business_id": "1JtBZRcuyLnFn9pGmwMddg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lJle0RtEcaRo41cVVRLv6A", "review_id": "f6f62rroMa4vSgK1Emmqxw", "stars": 2, "date": "2011-05-26", "text": "I have never written a review, but the food at Havana Cafe was so underwhelming (and not in the least bit good) that I feel compelled to share. \nI ordered the Pollo Ajillo which, in reality, was a pile of salt with a side of chicken and rice. I opted for Arroz con Gandules instead of white rice as it has been years since I have had this tasty Puerto Rican side. The whole thing was almost inedible... I came home and actually brushed my teeth immediately, it was so bad! My husband had the Pollo Cubano, which was equally underwhelming and nothing that we could not make at home ourselves. The restaurant gets an extra star for the wonderful Cafe Cubano and the extremely attentive wait staff . I had high hopes for this place but the next time I have a craving for Cuban food, I will be heading to Sabor Cubano.", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Wn4cr3qd67lYL_aya4I2TA", "review_id": "Aoi2mMoXLX_XX_NEip6Pog", "stars": 4, "date": "2011-11-17", "text": "This place is an amazing little find. It serves fresh, delicious noodles for next to nothing. The absolute best part of this place is that you get to pick the kind of noodle you want meaning you can try your favorite dish multiple times while changing it up!", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "j4Bk_hLCc6jpOD-Mb4F48g", "review_id": "cmq2sBWQoBvnJk4L0hXLyg", "stars": 5, "date": "2012-03-06", "text": "Very delicious food without long waits! The staff is very friendly and accommodating. I look forward to going back.", "type": "review", "business_id": "R2FuwuSjmyvzNWNfqzKUvw"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "Q55prN7JXMbndsHGr-O6Cw", "stars": 4, "date": "2010-05-03", "text": "Same as the others... \n\nClean, friendly and good. \n\nI was able to order a chicken legs and mashed taters for one kid, coleslaw and frys for the other, 2 kids meals for the adults and no one complained. They are always more then happy to help you in anyway possible.", "type": "review", "business_id": "U605aUo9MJn5vgLfP3yYKg"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "OHkVZtMNwwUoSThKHBzb3A", "stars": 4, "date": "2007-08-07", "text": "Byblos has some of the best Middle Eastern food I've ever tasted. Their falafels and Tzatziki are delicious. And the restaurant serves up an amazing tomato cream soup which will have you lapping up every last bite. This is a great lunchtime destination.", "type": "review", "business_id": "Aicnm12Zped8nQFXyRRFvw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "SIG_tdhVIapMsHzYjIFyAg", "review_id": "11dydAJbZItvNFkhIzzAGg", "stars": 2, "date": "2011-01-14", "text": "If I'm rating strictly on getting what I wanted out of the visit, this doctor is fine. He checked my eyes, did all of the tests and I walked out with my prescription.\n\nHere is why I can't give him a good review (and this is solely based on my personality and preferences while dealing with the service industry- others may think he's wonderful...)\n\n1) I purposely chose an early morning (7:30 a.m.) appointment so that I would get to work by 9. My office is less than a mile from his office and I was still running into work at 9:05 a.m. This is due to the very long-winded soap-box like speech that Dr. Greene gave me. I am a get-in, get-out type of person who hates small talk and hates self-promotion even more and if I heard him tell me how often he visits the gym or works out one more time, I probably would have gauged my eyes out right there to never need an optometrist again. I also learned all about his wife, friend's boat...you name it...he told me about it (completely unsolicited).\n\n2) I am an educated individual who does not need an hour-long explanation- filled with graphical references and cutesy anecdotes- about why I now need progressive lenses.\n\n3) The fear-inducing sales pitch by the staff and the doctor was a bit much. I realize that all optometrists and dentists are going this route now- \"buy this test (not covered by insurance) and be free from worry that you'll instantly go blind\"; however, if I want something, I'll ask for it...just like any other retailer. \n\nLike I said...I got what I needed, a solid eye exam and prescription. However, I purposely did not buy glasses there due to the doctor's cheesy personality and the \"hard-sell\" environment. Again, there are obviously (based on the other posters) people who are attracted to this type of personality...I am not one of them. \n\nHence, why I do most of my shopping online.", "type": "review", "business_id": "tHP-YGYtc5-t3MofXFgk2A"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "l4nJ5rCyw_qaFiO0-NLhtw", "review_id": "U6JvoV0WYiNgUANabXMQsw", "stars": 3, "date": "2009-11-23", "text": "Steak, yes, but 2 other words first come to mind when reminiscing about Modern Steak: Retail Therapy.\n\nNo, I'm not talking about the fact that Modern Steak is conveniently (albeit awkwardly) located in Scottsdale's Fashion Square. Instead, I think back fondly on a delightful little cocktail -- Belvedere, Grand Marnier, strawberry, basil and lemon juice, served chilled in a martini glass (as expected), but also with a little carafe of extr drinky-drink (unexpected), complete with a suspended ice-ball to keep your drink cold while you sip -- without watering it down. GENIUS. \n\nOk, ok, so you're wondering: why the 3 stars? Well, genius cocktails only get you so far. I like to think that I've sampled a fair number of steaks in my day, from frou-frou to straight-from-farm fresh, and I gotta say that the whole steak experience at Modern Steak was about a 3 -- not bad, but not amazing. Just pretty...average. And for $46, I'm not %100 convinced it was worth it. Let me elaborate:\n\n - 12 oz. filet: I ordered it three of their five sauces -- the Steak Sauce (which cost extra...bummer) and the House-Made Ketchup. Now, one of the sauces that I simply a-dore with a nice steak is a Peppercorn sauce...so I was a little bummed when they didn't have one. So after getting a recommendation for the Steak Sauce, I went with it, and it was...well, kind of a let down. I didn't love either sauce, truth be told. Granted, I haven't tried the other three, so I guess I'll have to go back and check them out, but all in all, my steak experience was lessened by these sauces, rather than heightened. Boo.\n\n - Sides: we ordered the Roasted Brussel Sprouts and Yukon Gold Potato Puree. The sprouts were...meh, but I'm willing to admit that I've been spoiled by the best brussel sprouts of all time at a little place called Larchmont Grill in Los Feliz, CA. They are fantastic. But even so, I'm not convinced these were really that great...I felt they were a definite let down. As for the potatoes, they were literally SWIMMING in butter, which made them very difficult to eat...and to top it all off, both sides were pretty small, even for two people. \n\nAll in all, I felt the level at which the meal was prepared was a bit sub-par considering the prices and what I can imagine they were going for...there are a lot of restaurants that do what they do, and do it a lot better, so if they want to compete, they're going to need to up their game. UP it. \n\nCombined with the fact that we were sitting awkwardly on the patio, which was really just sort of jutting out into the mall, I can't justify more than 3 stars. However, would I try it again? Absolutley. Get the steak? Maybe not. But I think that, for a relatively new restaurant, they're well on their way.", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gkCb6ngzXxSXREI2qCvXaA", "review_id": "2djiOpkUgFKJfMPfmg04ng", "stars": 3, "date": "2012-07-19", "text": "Very dated but clean. Fine for a one night stop on road trip. Free coffee in morning & cookies at night. Bathroom tiny!", "type": "review", "business_id": "ZRrIwqIUMII1b2keMI8QRw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Udj_a2KWaxqeOHu_1FrFAg", "review_id": "lYMhA9YpNOUswD2yKnJTGA", "stars": 5, "date": "2007-01-22", "text": "One word: PISTACHIO...\nin all its glory...\nno need to say more.", "type": "review", "business_id": "LjqY98zL96sem_PxC6ZG3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "GokYFMw-3hqTVfpAdaEB_A", "stars": 3, "date": "2012-06-30", "text": "Ruby Tuesday's salad bar and healthier choices (With caloric count for calorie counters) for entrees is what sets it apart from other chain restaurants that serve your basic American style cuisine. The salad bar includes 2 types of base greens (Iceberg and mixed greens), with various toppings (Edamame, peas, mushrooms, croutons etc.) and dressings (Italian, low fat balsamic, ranch, thousand island, etc). \n\nGenerally, with any main entree, you will have your choice of side and salad bar, or 2 sides. They also have more healthy side options such as roasted spaghetti squash and steamed broccoli. My husband had the chicken trio, and I had the creole fish on our visit. The chicken was nicely presented, and was fairly tender and juicy. Of the three different toppings (Balsamic and tomato, mushroom cheese, and mango salsa), my least favorite was the mango salsa since the mango in it, while fresh, wasn't totally ripe. The creole fish was presented in a Spartan way, with just one piece of fish with a mound of side next to it on a plain white plate. The fish (Some type of white fish, maybe carp?) was a freshwater white-flesh fish and had a decent seasoning and was cooked well. \n\nService was friendly, but we did not have any silverware on our table when we were seated and had to ask for it after our entrees were served to us. Drinks were refilled quickly as needed.\n\nI haven't indulged in a lot of the desserts, but I am a fan of the Italian creme cake. It's moist, and not too sweet. \n\nPrices are moderate, and entrees will be around 15 dollars, give or take a few dollars.", "type": "review", "business_id": "E4KKFmUsWzgv-pPISdi1BQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "wNqwKWaRjClmcKsoJJRFow", "review_id": "lpLwO739FKKNpP_k2oSqKg", "stars": 3, "date": "2012-08-08", "text": "It's Baja Fresh, what can i say? It's clean, they're fast and it's a hell of a lot better than McDonald's. I usually call in my lunch order from work and it's almost always ready and waiting when I get there to pick it up.\n\nI do have to say that their pico de gallo is great and I could probably live on just that for the rest of my life. I get extra cups of it and eat it all by itself.", "type": "review", "business_id": "XI-_Y2XRw03mozGx0Z90Gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xkTbpCc-YhU8-EXZDA7u0g", "review_id": "XmBI9fdKFhPx_6Firl9CtQ", "stars": 4, "date": "2009-03-15", "text": "This is obviously the mecca of the Phoenician mountain hikes, and deservedly so. Camelback is the perfect mix of central location, unparalleled views and, most importantly, a grueling workout. I love hiking this mountain because of the mix of rock types. It starts out as red rock near the base up to the hella scary rails, then very suddenly changes to a granite look-alike (Anyone know if that's actually granite about halfway up? It sure looks like it.) The last leg is bascially boulders that you have to crawl over, but the view at the top is an unbeatable 360-degree view of the Valley. Though South Mountain has a more centralized view, on Camelback you really feel on top of the whole Valley.\n\nMy only complaints: First, the parking is a nightmare, especially on the weekends. Perhaps it's just due to its reputation (and the surplus of multimillion-dollar homes in the area), but it can be hard to find a spot. Plus, people like to jockey for position on those rails, especially coming down, so be careful you don't take a tumble.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "8uq5VA6fxCz1BuEXel82Dg", "stars": 2, "date": "2011-03-07", "text": "I'm not a big fan of this place. I hate these \"centers\" where you have to park in a parking garage and pay to park. I'm already paying to go the shops and restaraunts, why do I need to pay to park too? Seems stupid and not a good way to get peopel to frequent your business. I'd rather go to Desert Ridge, Tempe Marketplace or any other one.", "type": "review", "business_id": "JIV4LF8KE8pAUnU28QAhIw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "7NF_JQ18tkXQqs_eSVWqKw", "review_id": "qVBgP1muzJcetre6j0SfLA", "stars": 5, "date": "2009-07-19", "text": "When I first stepped into Smeeks, my entire face lit up, I was figuratively (and quite literally) \"a kid in a candy store.\" \n\nIt's is a true one of a kind store, it's so entertaining to just walk around in. The decor is fun, the inventory is even more fun, and the photo booth is by far the most fun!\n\nThe walls are full of great novelty items, such as the Smoking Baby (that actually smokes!), Yodeling Pickle (that actually yodels!), and Fake Cigarettes that are surprisingly realistic! Plus, Smeeks has a lot of really cool, and delicious candy. My personal favorite was the Fat Pig organic chocolate bar (with Puntini coming in a close second). \n\nSmeeks is most definitely my new favorite store in CenPho!", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1F5G7Tdo14xzsGyISkHDvQ", "review_id": "R1FrxnJUmd2TOwBdF_IU5g", "stars": 2, "date": "2011-06-20", "text": "I always hate giving bad reviews, but our service left quite a bit to be desired. I can normally dismiss such things, but it became evident that our bad service was not a fluke.\n\nWe arrived around 10:00 and was told that food would only be served until 11. That wouldn't be a problem at all except that our waitress didn't return with menus until close to 10:30 and then returned to take our orders at only a few minutes before 11. The place had other patrons, but it certainly wasn't so busy as to take an hour to get our orders. Unfortunately, on each of our visits, the waitress was half listening and seemed easily confused\n\nThe food itself was quite good. The Shepherd's pie was hot and tasty and the bloody marys were actually perfectly spiced. Neither was worth getting excited about, but they were certainly decent and reasonably priced. \n\nConsiderably later in the evening, our waitress returned with the bill. There was one extra drink on the bill which no one ordered and she was perfectly friendly about saying she'd remove it, but we spent a good five minutes as she kept getting confused about our - apparently - very complicated instructions of \"$20 on the credit card. The rest in cash\" She continually read back excessively complex scenarios, and we kept asking her simply to put twenty on the card, that's all.\n\nWhen she returned, she had taken $20 of our cash towards the bill, charged $60 to the card and kept the remaining $55 in cash as a tip. That's just shy of a 75% tip she assigned herself. \n\nWe spoke to the manager, who couldn't find her for some time, and when she showed up, she blamed us repeatedly. She finally refunded the card and brought us our new bill, with the extra drink.\n\nIt wasn't worth arguing about at that point.\n\nThe sad part is that everyone at my table, and our surrounding tables started telling similar tales from past visits. I guess this kind of service is not uncommon.", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 3, "useful": 7, "cool": 1}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "OvWclW10lovDNUq8JwWKCw", "stars": 1, "date": "2010-04-17", "text": "Honestly the drinks are overpriced and have a hint of rubbing alcohol\nHonestly my lunch was just okay\nHonestly they have a drink called the stigmata\nHonestly I am dreading having to give them 2 stars given the hype\n\nBut, I am supposed to be honest.\n\nThis place has been the buzz since before I returned stateside. My coworkers had also been hearing the same buzz. We just had to go as the finale to our week of lunch. Yeah, I probably would've been better off at the Billet Bar across the street. I mean it is biker week. The people watching would've been stellar. The only people watching I had at RnR was the gorgeous server outside our window on the patio. But even his piece of art body won't bring me back.\n\nThe first hint should've really been the overpriced drinks we started with. I figured for that price they should be damn good so I ordered some lime concoction. A coworker got the stigmata. Holy strong... and not in a good way. I mean, I appreciate my drink as much as the next but not when I can't even enjoy it. \n\nOne of my other coworkers on the other hand, was enjoying his blue moon. That was until he held it up to take another sip and the entire bottom of his glass fell off.. yes.. fell in one piece.. onto our table. What happened to the contents do you ask? That went all over him, the table, inside someone's wallet, and onto an iPhone and my face. The waiter wasn't even really apologetic about it aside from giving us some extra cloth napkins which weren't soaking anything up at all. No wet rag, no comp, no apology, nothing but another glass of blue moon we were hoping wasn't bought at a prank store and a sticky table, faces, and sunglasses.\n\nThe chicken lollipops were not what I expected, but really weren't bad. I did enjoy those. I also enjoyed the presentation of my fries. Cute silver bucket. Tons of fries. Couldn't finish.\n\nI ended up getting a chicken sandwich that had brie and some other goodness on it. Totally forgot to order it without tomato, but I picked it off easily. \n\nI know what you're thinking, they serve breakfast here til 2pm, why the hell did the breakfast queen not order breakfast. Honestly, none of it wooed me enough that it looked delicious. They had a make your own omelet that was on my short list of things to order, but I'm glad I didn't after seeing a coworker's tiny ass omelet and bread with no other side for $10. Also, I highly doubt their Amish french toast is all that Amish. Just sayin'. I know a bit or two about Amish goodness.\n\nSo, back to my lunch.. it was just eh, which was sad. The description sounded so delicious I really was expecting to be wowed.. finally.. after all the mishaps I'd had up until this point. I do admit I loved the bread. It was delicious. I also appreciated that despite them not having honey mustard, aioli, or anything else to dip my fries in aside from ketchup and barbeque sauce (which was given with the sweet potato fries.. ew) they tried to make me honey mustard. Unfortunately it was just honey mixed in with bottle mustard ketchup. I ended up using the ranch dressing from the lollipops. \n\nWhat I paid for this was ridiculous.\nThe way they reacted to the beer mishap was ridiculous.\nThe food was meh.\nNot even I was tempted to try breakfast there.\nIt was like the beautiful model that has no brains.... and I want some brain thought going into my dining experience. Don't try to woo me with simple sex appeal.\n\nOne of my coworkers commented that maybe in 6 months when the pans are seasoned well after being used the place will be worth it to try again. I told him maybe.\n\nHad to edit that someone from our table got terribly ill too... oy vey!", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9JcWUImFT29_QrBO8mlcdA", "review_id": "mBNFVAj5Me5FDlzFY3ACMA", "stars": 5, "date": "2011-02-05", "text": "This review corresponds to my first Check-In to Oregano's. \n\nOutside of the wait times, I've not had a bad experience @ Oreganos. The food was good, the people were friendly and I had a good time. This visit was no exception. Even when my wife got meat in her minestrone soup, the situation was handled impressively well. I've known for years that my wife is a VERY picky eater when dining out, she left all smiles and so did I.\n\nIt's one of few places I go to with \"stuff\" on the walls that I don't find obnoxious. \n\nKeep up the good work.", "type": "review", "business_id": "o-OV2LkJxpcCHmI_d4TZiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D8Uf7blD-hozwcTCDAk1bA", "review_id": "S52X40bDwyYLRb_4x8LoyQ", "stars": 5, "date": "2012-09-01", "text": "Excellent brunch food and great Bloody Marys! They make their own bread onsite, which is to die for! Love it. Hate the valet parking.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0Kz7-hBrrtBTdKBpEqb6AA", "review_id": "Hw0IOfTf-SpkByFAG7BilQ", "stars": 4, "date": "2009-02-20", "text": "My friend who I was visiting and I went here for a fundraiser type of a deal. I don't know what I was expecting but I really liked the island concept of the place. My friend recommended a salad and I got a Caribbean chicken salad with some sort of coconut rice, chicken, oranges, pineapple, tortilla strips, etc. Well, the salad was huge!!! The honey lime dressing was very flavorful and complimented the salad well. We shared the rumbi fries, which were a combination of sweet and regular fries, and as aforementioned in some other reviews, I love the sweet potato fries and wish they all could have been that (do I sound like the Beach Boys?). \n\nThe decor was pretty cute and the music was great (Marley, Buffett type stuff). The rice bowls looked fantastic, as did the sandwiches. The prices were pretty good, considering the amount of food you received.", "type": "review", "business_id": "EOCQ5E0lakUyBvUH0L9--g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "G5vTGbTHvyg8J9xmLLBy7Q", "review_id": "huxJYY1CrRta2AZL6Gyoig", "stars": 5, "date": "2012-10-20", "text": "Chopped Salad was fabulous, as was the lamb burger. Service was top rate.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3d-h6xMt6aXb4MfXTMpAYA", "review_id": "g1jv4rFme2Y5UCSSi38cug", "stars": 5, "date": "2011-06-22", "text": "Visited this restaurant last week with a groupon special, not expecting their best service since I was using a coupon. I was pleasantly surprised on how great the service was! Our waitress was knowledgeable and friendly which made for a great happy hour! Their guacamole is great and their assorted chip basket made everything extra yummy!\n\nI'll definitely be returning :)", "type": "review", "business_id": "xz1fQwwVAhqA9MsmMaGyZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IsvpOkTel_AWtGTAapM6XQ", "review_id": "jby9csL18RfTe8oUpWFf4A", "stars": 5, "date": "2012-05-05", "text": "This is the most comfortable place to have a glass of wine, relax, and enjoy some great food. Their service is amazing. There are really comfy seats and couches inside and great outdoor seating. You could literally spend hours here. They have wi-fi, so you can chill out on your CPU or IPad. The bar super cool. Very nice bartenders that are knowledgable and accommodating. Their wine is killer, of course, or they wouldn't be named 5th and Wine right?", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "_U__5Z9XLC8LR3-3UdR3ww", "stars": 5, "date": "2010-01-18", "text": "Pita Jungle can do NO WRONG in my eyes! \n\nThe food has always been amazing! I have been going here for 10 years or so and have never left displeased. Also they are a home spun local business, which always makes me happy! \n\nYes, they do have hipper then thou hipster working there, but those hipsters can sure make a mean hummus! \n\nI have many favorites which is starting to make it hard when I go there, because I want them all! Pita Jungles portions are always so generous that I have never even finished what I ordered. \n\nMy new fav is the Lentil Fetoosh Salad, the mix of the lentils and rice with the caramelized onions over the fresh mixed greens with that lemon vinaigrette is WHOA! Its incredibly filling, split it with 2 or 4 friends, seriously! \n\nAnother fav is off the starters section, but its so much food that I never finish! The lavosh pita crisp! Its like a fancy spicy supped up cheese crisp! \n\nThank You Pita Jungle for bringing bomb diggity food to the valley!", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Capf_zG28-3Kx68BegCyAA", "review_id": "khrdbAbNc55KawLbyam7aA", "stars": 2, "date": "2012-06-15", "text": "I moved to phoenix from northern California where I would get my Dutch Bros. fix almost every day! Either I was spoiled by the great customer service in my area or the service here is really that horrible. I've gone a handful of times and they have all been extremely shallow and inattentive. Not to mention they've all charged me different prices for the same drink! One person charges me $3.50 and someone else charges me $5.25?? Get your act together and be a bit more friendly and real with your customers.", "type": "review", "business_id": "v68yAIw0gpn15xwtcR_rKg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "C_Mu2W625yJWgswDsp_dOw", "review_id": "tTGXjt1QZcBnfNmrYLCYKA", "stars": 1, "date": "2012-10-24", "text": "The only reason 1 star can be given is the flavor choices and taste. The SMALLEST wings I have ever seen, they must be off of baby chicks. I thought it was getting punked, actually LOL. Never to be back", "type": "review", "business_id": "WbeZe2BttJlZcHa3B9b_lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fLjjtm4beQfqPxLfeuqboA", "review_id": "JB22Hz08FvceJBiP0yt2XQ", "stars": 1, "date": "2011-04-03", "text": "I have so many friends that love this chain, but I'm not a fan. I've eaten at different locations across different states, but always end up sick. I think that I must be allergic to a seasoning that they apply to everything. I've gotten sick from salad, pasta, to steaks. Needless to say, if a friend wants to eat dinner here, it's tea or water only for me.", "type": "review", "business_id": "LuTLXVyJvgshMlXTBw-Now"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "eL2AbD_vXdP57eewFH21lQ", "review_id": "38g8SK5MYuRCWw5kvrk4_w", "stars": 4, "date": "2011-03-25", "text": "You are so clean, Sky Harbor. \nI don't mind flying out of this airport. The flight attendants are nice.\n\nSecurity is fast and thorough. I really dislike one lady that works in security, because she was rude to me for no reason. It probably wouldn't have bugged me so much if it weren't for the fact that it was 11:45 PM, I had just worked a double, and I was being forced to fly to Ohio....where it was cold and still had snow on the ground.. Oh not to mention on my Spring Break. \n\nAnyway, the stores are nice and have a good amount of nice items to buy for your flight to keep you occupied. \n\nFlights are on time the majority of the time, and when they aren't they at least warn you.. *cough cough* Cleveland Hopkins International *cough cough*.\n\nI suppose it could use some remodeling.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "FAyctGefcKSgWQQuL_QOSA", "stars": 4, "date": "2012-03-09", "text": "We had a pretty darn good time.\n\nDecided to take my two nieces to the festival. Our total cost for 3 of us w/ 2 bracelets before food and extras was $64 - and the girls got on almost every ride, even the big, scary ones! We went on a Friday at 4ish and the crowd was perfect and relaxed.. absolutely no lines. Come 6pm, though, that all changed. The lines got big and it started to not matter to get our bracelets worth of rides for the wait in line (plus the cold night air!). Also, come 6pm, it just got plain ridiculous with all these little high school kids wearing skimpy clothes and making out and talking bad (where are these kid's parents!?!.. who raised these kids!?!).. it got annoying real quick.\n\nThe shows:\n- Ostrich Race at 6pm was good - kinda funny, but not that entertaining\n- Monkey Show at 9pm was AWESOME - I saw this show last year when we went with the in-laws and I *still* laughed my butt off (easily amused maybe?)\n- Petting Zoo - LOVE this.. they had a lot of baby goats (my fave!) and the animals were never menacing and actually very docile.\n- In the past I saw the trapeze show and it was entertaining, though the motorcycles in the metal sphere was quite impressive and very entertaining\n\nOverall, the price was decent for the entertainment and the rides the gals got to enjoy; the food was typical fair food (FYI, DO shop around.. prices change across similar products by 2-3$ sometimes, so feel free to shop around for water bottles and other food staples); the staff running the rides were decent people (not creepy, which can be the status quo); the ambiance is good (not OVERLY ghetto) but caution that after 7pm, it gets more crowded with high school kids.. so more lines and more stupid conversations you get to listen to.. yay!", "type": "review", "business_id": "znk1y9lL5zbR1s3EpeojZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "d66FhQQZzFDKxklh6t63RA", "review_id": "LApGjBwHeNnKCvwwIxmDxQ", "stars": 4, "date": "2010-06-11", "text": "Yeah, it's a chain and while not haute cuisine, we had a very good meal there. We were there on a busy Saturday night and we had great, friendly and quick service and our food was quite good. \n\nNot only is it a good value for the neighborhood, I thought it was downright cheap for what you get. (It's probably roughly comparable to The Hillstone Group's Houston's or Bandera in terms of quality and service at about half the price.) \n\nGreat salads too.\n\nI wouldn't necessarily go out of my way for it, but it's a very reasonable choice if you happen to be at Fashion Square.\n\nDinner for 2 with drinks, about fifty bucks.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TYKa4QE3IkSndx80rhuH7Q", "review_id": "UVKtVQZgEIT-kNpEp5NqMA", "stars": 5, "date": "2011-08-13", "text": "I love the menu here it has many selections of many cultures including Italian!!!", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "MIvCXHgE_vcKz7lYS5FPvg", "review_id": "BnA5IJia3_hC1usM0rVLiA", "stars": 2, "date": "2012-05-15", "text": "We've eaten at Arriba a few times now. I really don't care for their food, and service is slow more often than not. The first time we went we were there it took a good two hours! And that's not because we're slow eaters. We did stop in for happy hour last week though, and although their margaritas aren't the greatest, they're decent enough! They ofter a 12 oz. house margarita for .99 or a 24 oz. grande for 4.99. Why people would pay five times as much for a marg twice the size, I don't know. We each had three .99 margs, ate the chips, salsa and bean dip and our bill came to 5.94. $6 and I left with a full stomach and a buzz. Nice!", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZD7ke0KAB8ptoQTlt3UG0g", "review_id": "hvWidq2AHQSa8nTkluvqMg", "stars": 5, "date": "2012-06-17", "text": "The shaved ice at Bahama Bucks reminds us of vacationing in Hawai'i! Lots of flavoring options, and a cheap date! Haven't tried the smoothies yet, but we heard they're great!", "type": "review", "business_id": "edDmYTcsClAL9XPR8YkvnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LKnsv1meIthvgdky00qkQA", "review_id": "rWRxG-XzihggwUCaOFc9Dg", "stars": 2, "date": "2011-08-27", "text": "I wanted to love this place so bad considering I've lived in Venezuela and hadn't tasted some of this country's food in over 17 years. However it pains me to write that I was pretty disappointed. The server, who is assume owned the restaurant, is a very nice guy but forgot my stepson's food and didn't realize until 15 mins after he dropped off our food. My cachapa was burnt and dripping with butter. Don't get me wrong, cachapas usually are rockin with butter but this was oozing everywhere. The arepa was pretty decent and the only saving light of the meal but overall this experience left me wanting more.", "type": "review", "business_id": "It8Q9-l1EEtTr9NPpTgGPA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "72OdAJ2eQYecT91OdJXyfQ", "review_id": "sim2cQ2QPXL4Y2A3mH4vbg", "stars": 5, "date": "2007-11-08", "text": "By far my favorite restaurant in valley. Deliciously spicey. A bit pricey if you're picking and choosing items but they're complete meals are a pretty good bang for the buck. \n\nNot actually sure about the service as I've only gotten takeout but if its any where close to the quality of food, then it must be awesome.", "type": "review", "business_id": "6SMQl2vR37HvjYWwSl1V3w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "nTCt6CV-qx3lHsHIMJqizg", "review_id": "tkomvYi0y5Do0XVwi0ZFBQ", "stars": 4, "date": "2011-08-07", "text": "Okay, the place is no frills, simple, would almost qualify for Triple D... Except, it TASTES good. We've been to a few Triple D joints and most have been disappointing, making me wonder how much they pay to grab Guy's attention and the publicity. Flavors of Louisiana brings it!!!! Flavor, taste, smell, appearance, and portion... All good. What would make them great? One thing... Liquor license... so I could have a beer with my fab fish!\n\nGlad I grabbed the 'go' box because I had serious craving the next day. It reheated perfectly and I learned that the flavor was really the ingredients and not over saturation of grease.\n\nMomma loved her Gumbo and appreciated that there were NOT huge slimy chunks of okra in it. The main man and I had oysters, chicken, and catfish... All worthy of ordering again and again and again. I enjoyed the tater salad but we both thought the dirty rice could have used more meat in much, much larger pieces. As it was the meat was so minimal and small it could not be tasted even though I could see it... That, and the lack of beer, were the only down sides to our kickin' Lous-E-anna experience!", "type": "review", "business_id": "mwiNm868yAo8Xh8hO7Ke_Q"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "8GccAq9PTpIWlp0gnCHoRQ", "review_id": "_UWKkz9dTM6ntfd1QY6-Sw", "stars": 5, "date": "2009-01-19", "text": "Hands down, the best breakfast I've had in Tempe/Phoenix. We arrived on a Sunday morning around 9am and had no wait for a table. The service was friendly and attentive. A few slip ups on forgetting things in the kitchen (e.g. bringing someone's toast), but our waitress was great.\n\nEveryone in our party loved their food. I had the Vatican skillet (which we still can't figure out why it's called the Vatican...?) and blueberry pancakes. Others had the three musketeers omelette and the breakfast burrito. All of the food was awesome.\n\nAnd then there was the brandied blackberry bread pudding dessert. Oh. My. God. I don't even have the words to describe it. At least not words that are appropriate for yelp. It alone is worth a trip to this restaurant.\n\nI'll be back. Not soon enough.", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HJm6lygitZwsl52yUwr-bw", "review_id": "5WSHeWRxZ91ACTBwkkWZ5w", "stars": 5, "date": "2012-12-13", "text": "Absolutely loved this place! My fiance and I came across the Arrogant Butcher while we were in Phoenix celebrating my birthday and our engagement. My fiance had found it on yelp and said \"we must go there for lunch one day\" while we were there. We ended up going here for my birthday dinner, after a \"higher end\" establishment couldn't accomodate my gluten allergy. The food, the drinks and the waitstaff were great! It was so good, we went back the next day!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "nRGoGMl-q2yz050--09MVw", "stars": 5, "date": "2012-03-27", "text": "This is one of the best Asian meals you may ever eat. They are amazingly inexpensive for lunch too. The house fried rice and the wonton soup are perfection. The Lincoln location is prettier but the food is the same.", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "eNf1gPW9hRslGcrqN_X0pg", "review_id": "0DxhgINXijG7V1LDyYXZ3A", "stars": 2, "date": "2010-12-28", "text": "I've lived at Mark Taylor properties for about five or six years now and I have to say, they have declined greatly in the last few years. When I first started living at my first MT property, the front office staff took the time to get to know you, knew you by name, kept abreast of any ongoing issues and were proactive about things. \n\nNow, they really seem to be nothing more than shills for what Mark Taylor has become, reacting to issues only when implored to do so. Rent constantly goes up, even for those of us that have shown property loyalty years over. Additional \"fees\" are even being added on for services that you may or may not even use -- either way you have to pay. \n\nThe only reason that I didn't give them one star is because of the maintenance staff. They are what the front office staff used to be. Friendly, polite and very responsive to your problems. They, in fact, have a pretty similar opinion of the \"front office\" folks as I do. That is pretty telling.", "type": "review", "business_id": "ZZP4c4epsE4j_SniQe6KnQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Oi4WNK_mL-h2Kc03Mj5ZHw", "review_id": "RzlQ8yLmE0h2pm_BuMJqow", "stars": 2, "date": "2012-10-05", "text": "As far as teppanyaki restaurants go this one isn't top of my favorites. 2 stars for good service and a nice setting... I'm docking 3 stars for my food being over cooked and not being offered anything to replace it, and our chef not doing any sort of classic teppanyaki cooking tricks (making oil light on fire, flipping shrip at people, bouncing his utensils around.. ect). Decent place to eat, but not a value for what you pay for.", "type": "review", "business_id": "TMZP6Kzkc-FytzgbgIC9JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2LdmDvRyrXgFsVL1KoRfRA", "review_id": "Bdfo3Nytyvd5fuV2D3C-Wg", "stars": 5, "date": "2011-08-10", "text": "Wow, love that a place like this moved in down the street. \nInexpensive, fresh, delicious - everything I want in a mexican restaurant.\nMy soft shell carne asada taco was fantastic -- freshly prepared and topped with guacamole, which by the way is super creamy. Basket of chips are free, as is the toppings bar -- every one of the 6 or sauces were delicious. \nI plan on frequenting Salsa Blanca ; )", "type": "review", "business_id": "x_mxrJALBi5No9CxRswEaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pJUdG8KPNfZOLdVqiWIpAw", "review_id": "E7-n_dzvhriH_3c3zOfe4A", "stars": 1, "date": "2012-01-06", "text": "This is the closest to a New York hipster style coffee shop I've seen in Arizona. They serve beer too. Problem is that the espresso was unbelievably bitter. Cookie happy hour is pretty cool though.", "type": "review", "business_id": "Hgbxen9iKGL4AH6kKgC8YQ"} +{"votes": {"funny": 4, "useful": 5, "cool": 3}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "Sp_zhACNYp_nD-gB2dELeQ", "stars": 4, "date": "2011-10-09", "text": "I'm kind of worried about this place. First, this is for the new location Downtown. I guess they have another one in Park Central, but I've never seen it. When you call for takeout, they remind you of which location you're calling. I like that because some people are idiots and will probably go to the other one.\nI loooooooove the curried noodle dish. I've eaten it in the restaurant and ordered it for takeout.\nThe service is super friendly and the place itself is really nice. \nCall ahead before going, though. I drove down there one night after checking their hours and they were closed. Who does that????? That's the main reason I'm worried about this place staying open. It gets a good lunch crowd, but they need to work on dinner, too.\nPrices are reasonable and on par with the 87 other Thai places Downtown.", "type": "review", "business_id": "SDetUVwhaCPGkQYqmUak6g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "KjlVjf3Rji33oiPnzAIqjQ", "review_id": "v2yYkwqf9KJ7i-DASIMegQ", "stars": 4, "date": "2012-07-10", "text": "Great customer service, perfect dining area! This lightly dimmed pizzeria is nothing like the other high top table pizza places, the staff and waitress' are really friendly with along great customer service! (and I am picky with people who serve at restaurants!) this place is great for family or even with friends to get a great bite to eat. I ordered the side \"Chef Eric's Caesar salad and thin crust cheese with pepperoni\" I highly recommend For GREAT pizza! However the guy who was going to bring my pizza dropped it...but made it up by giving me Nicole's Notable Chocolate Chip cookies :)", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "amv1I9D-4LaOvmL9fVa5sA", "review_id": "DZF0Ip31NM2nqvpqMOHleA", "stars": 3, "date": "2011-01-16", "text": "Dear Yelp: Why can't there be a 3.5 star rating? I wanted to give this place 4 stars, but will have to wait for another visit to bump it up.\n\nI have never been here before, so I consulted with my fellow Yelpers for their input. \n\nThe service was quick and prompt. Our waitress was friendly and on top of things. I was impressed by the selection of beer, although small, with an offering of Alaskan Amber Ale...mmmm.\n\nWe decided to keep things simple this trip. 12 wings, medium flavor, one large margherita pizza with garlic on 1/2. \n\nGOODS: I LOVE the mozzarella that they use! I have never tasted cheese this cheesy or this good on my pizza. NO JOKE. The wing sauce was also delicious and they provided you with a perfect amount of sauce to cover the wings. AND, the ranch was NOT watered down, which I am traditionally used to.\n\nBADS: The parking lot sucks. We had to park across the street from their main lot to find a spot. Also, the tomatoes on the pizza were unripe. Our pizza was soggy in the center, perhaps from the tomato juice during the cooking process, and it made for bad leftovers in the microwave the next day.\n\nSo, with the combination of the both, I will definitely say that I shall return to give them another sampling in due time, and perhaps bump up that star to where I think it should be in the back of my mind.", "type": "review", "business_id": "e_riFHMoJ1Yguvr0KtOkDQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "oASaTXSLIYXQUAev04ApKA", "review_id": "5aD_MsPpT8iTMEHycVbomg", "stars": 3, "date": "2012-12-13", "text": "Set in a restored 1913 bungalow, Cibo (pronounced \"CHEE-boh\") has hardwood floors, exposed brick, a stained-glass panel and a fireplace to set the mood while revitalizing the downtown Phoenix area with beautiful salads, antipasto, artisanal pizzas and housemade fresh pasta.\n I flew in for business on a Wednesday night. My friends picked me up and they decided to take me to Cibo. \n Right off the bat, I was impressed with the ambiance this place exudes. Every corner of this place is romantic. Great for small parties, or just two. \n We were seated outside at a table for four. The server was very well versed with the wine list, and the menu. She right away offered some appetizer ideas, and wine parings. All good offerings. We decided on a bottle of Vipra rossa. It was over all a good wine, and went well with dinner. Also we ordered the 3 Pair Buschetta. This little gem was awesome. It came to our table on a cutting board type platter. Three little buschetta slices each having a different topping. First was grape tomatoes and basil, the second had cannelini beans, and the third had prosciutto crudo and mozzarella. Ah Mazz ING. \n Being that I wasnt feeling super adventurous on the meal, I just ordered the Diavola pizza for one. Average pizza I'd have to say, was not very inventive. Good presentation though.\n Service was a five.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L4tR-pVG5rJMxp_ldxJLKA", "review_id": "Zxt3XJJKaG-hVjw6WND5sg", "stars": 2, "date": "2012-06-09", "text": "Not a fan. I know this isn't supposed to be authentic Asian food but the dish I ordered (can't remember what it was called) was inedible. The description of the entree I ordered gave no indication that it would be sweet in flavor. I'm not a huge fan of sweet entrees in the first place but this dish was sickeningly sweet. I had to send it back. The reasons why I give this place 2 stars is because of the nice ambiance, the service is good, and they were nice enough to swap out my entree for something a little more palatable.", "type": "review", "business_id": "zOJdahdaaLz7DpfdIucslg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_w4uNlrT3UMdtWc7w8Szlg", "review_id": "xOpk7K3xrHL_TXsiS7k1Mg", "stars": 4, "date": "2009-11-28", "text": "I am so in love with the exceptional level of service provided at this diamond in the rough naturopathic clinic! It may not look like much from the outside. Inside the unsurpassed warmth and tenderness is ideal for a deeply enriching, healing experience. I was gifted a 90 minute massage and was not disappointed. The masseuse was knowledgeable and hyper receptive to my needs. I walked in trapped in a bubble of negativity. When I left I was literally floating... I felt cleansed and utterly flawless. Another major plus was that the entire indulgent, spirit lifting experience was under $40. A professional, extraordinary 90 minute massage for under $40?! Seriously go for it!", "type": "review", "business_id": "iK6LQjFL4aMJzTS6Hf3F_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mSuXQZu5NsKXRPW81Llntg", "review_id": "lNENARxI5vB41ZczCjNUDA", "stars": 5, "date": "2012-07-14", "text": "My husband and I absolutely LOVE this restaurant! Anytime I find myself craving Mexican food, the first place that pops in my head is Salsa Blanca. We have always encountered friendly, welcoming staff and amazing, fulfilling food. What more could you ask for?!", "type": "review", "business_id": "x_mxrJALBi5No9CxRswEaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GwP7klR69owmP-y1XCuSsg", "review_id": "dc9QzMK5ngeWlser3yiQLQ", "stars": 5, "date": "2009-06-29", "text": "Best place in Arcadia to get a coffee or a tea. Lots of friendly locals and great place to sit outside to people watch and read the paper in the morning early lunchtime.", "type": "review", "business_id": "2h9LsLPdJ7OvZrYJZhVdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y2FcksTOoJWzq0Nf_sOwSw", "review_id": "UHdDGGscclU5kPCaDsL5Xw", "stars": 4, "date": "2011-03-14", "text": "for those who like dirt track racing, this is a place to go. it's a 3/8 mile oval clay dirt track that hosts the likes of imca modifieds, super stocks, pure stocks, sw modlites, bombers, dwarfs cars, sprints, late models. \n\nafter the races, go into the pits to meet the drivers and get an up close look at the cars. it's a good time hanging out. \n\nthey have concessions, souvenir stand, offer free overnight camping on race nights for self contained campers only, as no services are available. \n\nthere's something about the roar of the engines and the exhilaration of the race that keeps me going back. \n\ncheck out the website, www.canyonspeedwaypark.com for schedule, entrance fees, directions, etc. \n\nhope to see ya there!", "type": "review", "business_id": "DhjQHxJ9EX-l2QpimjWfEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0VfJi9Au0rVFVnPKcJpt3Q", "review_id": "XJHknNIecha6h0wkBSZB4w", "stars": 3, "date": "2009-05-09", "text": "Every friday, my dad and I eat here. We order the same thing... pizza wraps. they are good and fillng. iced tea hits the spot. Typical strip mall pizza.", "type": "review", "business_id": "j0Uc-GuOe-x9_N_IK1KPpA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "awNfKzVWjrhxCmRap-DeaQ", "review_id": "fGD06vpAuusuv3MNxWB95g", "stars": 3, "date": "2010-05-05", "text": "This place needs a face-lift, the whole concept and decor is outdated and needs some help. I think their sushi and other food items are alright, although they try to be so trendy and in reality there menu is pretty blah. Its a fun place to grab a drink and sit on the patio, but the excitement and trendiness of this place is completely gone.", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oysCTCXSQAK2eiXEVv-1qQ", "review_id": "sYO9odoEv84GSeIKmBfkow", "stars": 5, "date": "2012-09-20", "text": "Best Steak Ever. That is all. \n\nEverything on the menu is amazing. Go now.", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 6, "useful": 13, "cool": 9}, "user_id": "DglSIRnl69GUqHvVnG3QaA", "review_id": "ylkaE7_T-Nt4VdLh76P6PA", "stars": 5, "date": "2011-01-25", "text": "in honor of the impending superbowl XLV, i wanted to write my majerles review. \n\nthis year though, instead of hitting up a sports bar for the biggest day in football, i'll be going to a party. a real rager. if i wasn't though, i would definitely be pressed up against majerles front door bright and early superbowl morning. it's a great sports bar.\n\nthe weirdest thing about majerles is their name. someone finally told me it wasn't pronounced \"mah jer lees\" like i had thought.... it's pronounced \"mar lees\". so let me get that out first.\n\ni'm a big sports nut.... well, let me rephrase that. i'm a big sports nut when it involves REAL sports. i won't make fun of anyone, but if it's not football, baseball, basketball or hockey i don't wanna hear about it. unless of course we're talking about extreme sports like surfing, skateboarding, etc. \n\nbeing a fan of sports makes me a fan of sports bars. there are only 3 main things i need in order for a sports bar to be great in my opinion. let me lay them out for you:\n\na good selection of beers, happy hour specials and bar snacks--- yes, majerles has this in spades. large selection of beers and any sports bar that has perrier jouet, vueve clicquot and dom champagnes must be praised.(mostly because i think this is absolutely hilarious. WHO orders pricey champers at a sports bar? haha!) also, put me down as a fan of their reuben reuben and tenderloin sliders. yum.\n\nthe service--- there's nothing worse than sidling up to a bar, excited to watch your team kick some ass and ordering a drink from a bartender that seems bored and unhappy. every bartender i've come in contact with at majerles truly loved being at work (or they at least acted like it). bartenders attitudes really carry a lot more weight then they realize. happy bartender = happy bar patrons\n\nthe strategic placement of large TV sets for comfortable viewing pleasure--- yep. they designed this with real sports fans in mind. no matter where i sit, i can see a multitude of TV's with little blocking my view. \n\nso they have it all, and i likey. go here if you're looking for a good bar to watch the superbowl... or any sporting event for that matter. \n\noh, and GO PACK GO!!!", "type": "review", "business_id": "maB4VHseFUY2TmPtAQnB9Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SJKCDS0LfQelLR_fHRlkJA", "review_id": "t-Jg9rC5XTk0vQ2JbP8gxg", "stars": 1, "date": "2012-08-23", "text": "Great at first, then the bartender ignored me and my friends for a good 20-30 minutes, put everyones bill on my tab. I opened a tab so this wouldn't happen then they made us wait another 15 for them just to ask us who had what. Then they over charged us by quit a bit. We had to flag someone f=down from napkins and plates and it took a few try's for a water. And to make matters worse my friend got a parking ticket because they took so long. There were three bartenders for what I handle myself at a bar on a daily basis. No sorry from any of them and not even a drip of regret from the manager. He pretty much told us to chill out after this whole 45 min waiting or deal, just to close a check. Kind of a joke really.", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AVCBC2G5RjJM8tu_PebFPw", "review_id": "82cDFmXQkZH4Hti8Rp0hSA", "stars": 4, "date": "2010-05-06", "text": "It was almost impossible for me not to stop here on the cab ride back from old town for carne asada fries.mmmm sooo good! I really only went there between the hours of 2-4am but, los betos never let me down.", "type": "review", "business_id": "-xFO1E3OiDMmdqdjwUM_DA"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "HgDmQgsGpUhidPtaTEWh6A", "stars": 3, "date": "2008-12-28", "text": "playing the \"poor college student\" card here, i went to bookmans with a dvd player, computer speakers, a digi cam, an iflip, and about 90 dvds including some tv sets.\n\nthey took 4 of my dvds (2 seasons of l word, my nightmare on elm st. video set [including 3d glasses, in great condition - what a find, that bitch cost me $100!!!], and a family guy i think. and they gave me $12. what a load of shit.\n\nthey took the dvd player, digi cam, and iflip of course. gave me like $33 for those. again, rip.\n\noverall, kind of picky as far as what they take, cuz when i was browsing the shelves, lots of the movies i had/was turning weren't on their shelves.\n\nso instead, i took all my dvds to mo money pawn shop on 12th and indian school and got 85 big green bitchez. \n\nit looks like they have a ton of books, which is pretty cool, but i believe in a system of free literature, aka the library.\n\nscrew you, bookmans!\n\nhowever, you get three point five stars because not only did i find my favorite lez movie lola, but another great flick by the name of everyday people.", "type": "review", "business_id": "xLCbkTYQaP-nij6mEfaw7A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0ef9ECBuv5gghvcPxTI0Gw", "review_id": "J3S_YK1AQmj7fnjt5WqhMw", "stars": 5, "date": "2011-09-28", "text": "Excellent service!!!! I had to find a spa different from lavenders after they got rid of yet another excellent staff member, so I tried this place! I was SO HAPPY!! clean, pleasant, warm, comforting. The manager is actually on site and aware of the things going on in their spa! The staff is friendly and efficient! \nLavenders day spa can learn from this place. Send the owner from lavenders to sanity and TAKE NOTES. \nI HIGHLY recommend it here!!!!!! Go and enjoy!!!", "type": "review", "business_id": "nWLPuXTP6cunw86V1rJMAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kyDg10Hoxz9LdLniTNTIGA", "review_id": "qLs_bZnb6esDcXDVvbe68Q", "stars": 4, "date": "2011-01-21", "text": "So much food to choose from on the menu! They have so many options (healthy eater,unhealthy eater, vegetarian, breakfast, lunch, etc) for every kind of diner. I tried an omlet with turkey and brie and I enjoyed it very much. The orange juice was fresh. I was expecting very large portions but they are more than perfect for a super hungry appetite. Service was very good.", "type": "review", "business_id": "GhhpkAkGl4JE_M_Szwegeg"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "fFoRIzbwpMiv3BvfdtdlXQ", "review_id": "7ceH1q2lBT0EBHGbIcR-jg", "stars": 4, "date": "2008-12-30", "text": "the grilled chicken sandwich hold the mayo add ketchup and mustard and the fries - off the chain! minus one star because it should stay open later.", "type": "review", "business_id": "iNvY0zAlaD_ye7Z6rHu-Ug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UjKzJ78F4mUi1rNS0EjH_Q", "review_id": "QXvMbL1dwOwOMxOLP4CHqQ", "stars": 3, "date": "2010-12-29", "text": "Thank goodness someone took over what once was pink taco, aka yuck city, and turned it into something worth stopping in when in Scottsdale. Fox Concepts yet again has made a success and a place I think I will actually return to. \n\nTo start with we had a delicious plate of cheese and meats from the anti pasta menu, along side with some marinated olives and bread w/ olive oil. Just enough to get our taste buds excited and just enough to have my boyfriend (who is not into fancy smancy stuff) say \"give me some more\". These went nicely with our beers (they've got a great list), my mother's martini (which she seemed to enjoy), and my brother's gin on the rocks (he says they carry a gin that is very rare and delicious but the name didn't stick with me-sorry). \n\nAll of our dinner plates were delicious; fried chicken w/ mashed tatters & biscuits (skin on chicken was a little on the salty side but very crunchy), salmon w/ apple and rice, grilled cheese sliders(who could mess those up?), chicken salad, prime rib dip (served with onion soup instead of au jus, yum yum), and the patato ghesicuto (pasta- I know I can't spell but it was yummy too). Around the table, everyone seemed pretty satisfied.\n\nMy only criticisms would be that we were seating just to the side of the kitchen, enough to be able to look inside. I dig places that leave it open so you can watch your foot and the chefs are aware that the client is aware of whats going on BUT I did watch one man on the end prepare countless dishes without gloves on. He went from cutting and laying out proscuitto onto creating their carmel kettle corn dessert (scooping with bare hands), to setting out what appeared to be the fondue app. Yes, there can be worse things that happen in a restaurant but as someone who has worked in food service, it made me squirm a bit. I suppose that's why it's called Culinary Dropout.\n\n...oh, and the music was a bit too loud for me. Great joint for out with friends on the way to the bar or I would think for happy hour but not for a family dinner (my Grandma had to barrow a flashlight from the waitress it was so dark).", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GSZebDbIf0h_2MFv8xBGrw", "review_id": "N7j2J3V278BSyYBMXuSqcw", "stars": 5, "date": "2011-04-17", "text": "I live no where near this place & have gone out of my way to eat there MANY times! I haven't been since it moved (bc I had no idea where they went) but it looks like it's bigger so that's great. I even made it a point to take an out of town friend here. I don't know about the new place but the old place was kind of a hole in the wall diner feel (in a good way). It can get really busy at lunch, so I don't recommend it for a lunch break from work. I did that once, and got in and out just fine, but it's a lot more fun without the time crunch. Everything is delicious, but the mini red velvet cupcake is always a must!", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KtmnxDb0TtBM3Q3AogQmbw", "review_id": "bziSuhgla3vMf8qxcB2PeA", "stars": 2, "date": "2011-11-09", "text": "I'm generally very fond of Rubio's, but this location just isn't up to snuff. The food is good, but somehow not quite as good as other locations (it doesn't seem as fresh). The restaurant isn't as clean as it should be, the tables are always kind of sticky, and the restroom... well, it smells like swamp gas (and not just once). Also some of the seats are town and have been \"repaired\" with large amounts of tape (the tape is worn and sticky and if you're a dude wearing shorts, it will pull the hair right off your leg!) ...To be fair, I guess it could pull the hair off a non-dude's leg too, but let's just not go there.", "type": "review", "business_id": "-Y2rZMPttQqKXD_XJPQerA"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "JWF6vkqKTqwPP5ZYQd6GaQ", "stars": 3, "date": "2009-05-20", "text": "I like this mall. It's in a decent location, there are lots of good stores, and the clientele here is bearable. I've always thought of this mall as just below Scottsdale, but without all the silicone and snobbery. We went last weekend to kill some time and were a little surprised to see that it was overrun with screaming toddlers. I guess I should have known that when the AZ temperatures tip past 100 degrees, we have nothing better to do then hang out inside air conditioned malls or hang out inside air conditioned movie theatres, take your pick. Anyway, the store selection is pretty good here, I just wish they would add a Crate and Barrel and a LUSH, then I would never have to visit Scottsdale again.", "type": "review", "business_id": "8qL697NwICTc_ac0-26Ycw"} +{"votes": {"funny": 1, "useful": 3, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "_yhmq8UKS_qihUbVzc3MBQ", "stars": 5, "date": "2008-07-29", "text": "Quick update for Mama Java's since we had the Yelp Office Hours there last week... we lucked out and were able to take over the couch / chairs to the right when you walk in the door. It worked out perfectly! \n\nEven though I hadn't been in to MJ in a couple of months, Jensy remembered that I drank a soy latte - incredible! I felt so special (almost like a regular) when I walked in and she greeted me and asked if I wanted a soy latte! I did, and it was just as good as last time!\n\nThe atmosphere provided the perfect place for the yelpers to come and go, chat, etc... I think everyone felt comfortable and welcome. Thanks again to all of you who came by to visit! Looking forward to the next time... \n\nLastly, MJ created a yelper special of the day... the \"hold me closer tiny yelper' which i believe was a vanilla cinnamon latte. Now if that didn't make us feel special, what does?!", "type": "review", "business_id": "Mb46iSlA4qmTwXf-WrqtQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v6jF7qJOyzO2SZR_qyBXLQ", "review_id": "-ktx8fqFn5QuAoU9lIV4Aw", "stars": 2, "date": "2010-08-17", "text": "Went downhill. Not clean and the food isn't what it used to be.", "type": "review", "business_id": "mW1gB2DmBe__AEVgCoTgjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qBAaWZxyuFnSZU0NzFlNDw", "review_id": "MEzqi22MaWQV1LMSSPmh6Q", "stars": 1, "date": "2012-06-10", "text": "This dog park gets one star.Why?Because the last time I went,some piece of shit broke into just about every car in the parking lot to steal whatever they could.So much broken glass from side windows everywhere.\nIt used to be okay before this incident,but a busy parking lot in borad daylight and some vulture lies in wait?\nYeah,I'm done here.", "type": "review", "business_id": "eGj1NnvbIUVWgDYQWEOwQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6aLrBqbTXRRQLmMW5RHVJw", "review_id": "9QZCngJhrRZJv6Iee1Jj3A", "stars": 4, "date": "2011-09-27", "text": "great beer, great food, great prices and it's haunted!!!", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7B_LFcB6u1olDoWjd6fSiw", "review_id": "QZlnTcNHSKiTVKNfFpbajg", "stars": 5, "date": "2011-12-21", "text": "It's been a while since I was in Arizona, but I still remember the Olive and Ivy. I was in Phoenix on a business trip and went out for dinner at this place with a bunch of work people based on a recommendation from a local. We were not disappointed. Firstly I want to say that the decor and outdoor area in this place is just fabulous. We sat outside and enjoyed a delicious meal. The staff were professional, welcoming and accommodating. I enjoyed the experience so much that I brought the gf along for dinner when she arrived that weekend. Both times I was extremely pleased with the food, drink, level of service and the ambience of the place. 5-stars for mine.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e_MwXVPglyJIwE8t-Px-bQ", "review_id": "ruGmXKpLqTj_mTNeiv1rcw", "stars": 5, "date": "2011-01-15", "text": "Great little hole in the wall with authentic New Mexican food. Chili Relleno was awesome, and the red and green chile was flavorful and spicy. Rice and beans were good and the sopapilla was delicious. Atmosphere was cozy. If you want real red and green chile vs. sauce this is the place.", "type": "review", "business_id": "NBwPgX7L2D-EZedgo3A-pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XiuLpXucDuwabVkyhqAb3w", "review_id": "HhRPCCeoUBH9_KQt-oGODg", "stars": 5, "date": "2012-01-13", "text": "I just stopped at Biagio nail place today and got my mani and pedi done, it was fabulous. Tiffany gave me great feet and my neck massage. She does really job. The shellac manicure was really nice she gave me a lots of different colors so she actually helped me find the colors that i like and I was very happy that I got her. I will Go back and ask for her...", "type": "review", "business_id": "rE2InW2Jmjy6hzH3p4Iyjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8BxNrCQ400-Wri_-rjLQWQ", "review_id": "Nub4DaQLsxk9Y_7Fp6eS9A", "stars": 2, "date": "2012-12-26", "text": "Service. \nWas great until checkout.....\nMatthew, a twenty something with brown hair, was fine during the first few minutes of bagging but he asked me if I wanted my pizzas in a bag. I assumed it would be put in one bag per pizza. They were digorno pizzas with the bred sticks or wings.\nMatthew told us that they wouldn't fit in a bag. So my boyfriend said it was fine without a bag, but I knew they could fit one in a bag per box. So I asked for a large paper bag. Matthew held up the box to the bag And told me it wouldn't work. I just stood there and continued to place groceries on the line. When I noticed he put one in a bag and the inter in another plastic bag. THEN... Things were getting hostile between the cashier brittani and him. They kept discussing work related topics sucks as the time of the checkout. The cashier seemed irritated with the day that the bagging area was over crowded and backed up. Seemed like she wanted to say something. After that i noticed he was doing s terrible job bagging which caused bags to rip. putting a wide variety of packages in one bag Matthews attitude changed as well giving a sarcastic goodbye. \n\nStore\nClean but carts were hard to find when store is busy. \n\nOverall\nI like that I have a marketplace close to me but that was some surprising service at the end of my trip. I'll be back but hopefully I will be able to have a better bagger", "type": "review", "business_id": "PZUZH0vsLOy2AB1FubByhg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bucwbyP1wOxRJe_RwmmAqw", "review_id": "2uxq5PH3NoLUU6_h0cPmZw", "stars": 4, "date": "2011-04-20", "text": "I start at 40th st and Shea and I love this hike! This hike is HARD. I call it a sleeper hike, it starts off easy and then before you know it...BAM....it get's a little ridiculous. It will kick your butt but it's totally worth it.", "type": "review", "business_id": "1nhug_rhFFtF9D61X_EVBg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "TI88k_ezEWaj_XZSiuBNGA", "review_id": "Zuy62frkFzeO96_VGXfYmQ", "stars": 1, "date": "2009-07-31", "text": "I just had the ice cream. That was when I didn't know where to go for ice cream. It tasted artificial, much like how everything else looked. There was also a weird feeling about the place - too self-consciously \"cute\" suspension of reality - almost as if a crime was imminent like a bad TV show. Looking at the rest of the food was almost disturbing - like school cafeteria food, only worse. Oh well, it discouraged me from eating anything the whole rest of the day.", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "6PHSvn_G2Bh5ZEVT6mMwaA", "review_id": "NVw77_A30sALPJAniEYrPQ", "stars": 5, "date": "2011-04-14", "text": "This is one of my favorite places to go in Phoenix!! I love the $5 wine glasses during happy hour!! The bruschetta is out of this world!! The sundae with salted caramel and pretzels is probably one of the BEST things I have ever eaten!! :o)", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vQayPl7cix0BFaSiL_t5XQ", "review_id": "8TAlp1OVe95YSBzNqmeV2A", "stars": 3, "date": "2011-06-16", "text": "I'm not a huge sushi person (I know, I know...) but I ordered the tuna with lotus chips and it was very yummy. The server was friendly and the chefs were efficient. The atmosphere is dark and modern though a bit squashed and overwhelming.", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GjHXd24vZbWJbYuWlwQbDw", "review_id": "ATVM503VXnQlI9HdS360Zw", "stars": 5, "date": "2011-05-25", "text": "The food in this place is indescribably awesome! Granted, the place could be nicer, but if you're in the mood for great food without the frills of a great looking place: this is it. The service is fast, friendly, and the prices are great- especially knowing that their portions are typically huge. I can't finish my plate most of the time, so I always end up taking leftovers home. \nI love their Jade Red Chicken, as well as their emerald chicken. Their black beans are to die! Order a combo plate, if this is your first time here. You'll get a good mix of everything and you'll leave without regrets!", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 6, "useful": 7, "cool": 8}, "user_id": "5oLJL8ImlYLkFm05J6oKqQ", "review_id": "A8krd18p9ujOg1H7beHzBw", "stars": 4, "date": "2011-02-02", "text": "Right around the corner from my sister's ghetto-tastic shack, this place is bomb. Green chile tostada...hell yes! \n\nThe place is not much to look at from the outside, not much to savor on the inside, but the only people hanging out here are Chandler High kids escaping 4th period. \n\nYou stand in line, you get your paper bag of greasy goodness, you leave with a smile on your face. \n\nYou hope your sister has beer in the fridge when you get back to her place.", "type": "review", "business_id": "qW9UysjJw3y3CwEbzruEEw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "agWENQvyoHf3w-k5uu_3RA", "stars": 4, "date": "2012-07-10", "text": "Another new great place in the Arcadia neighborhood to grab some great food and select a drink from the extensive beer and wine list. I think there were over 60 beers and 40 wines to choose from. I thoroughly enjoyed the tomato and candied pancetta bruschetta and the lamb kefta...yummy! Definitely check this place out when the weather is cooler and you can enjoy the view of Camelback Mountain from the patio.", "type": "review", "business_id": "Cse5FvYuACIxljwaac2SZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vLMwisRi7IWPooI9YZ1znA", "review_id": "mSaa0X25WDBQYj5faxX1zw", "stars": 4, "date": "2010-11-29", "text": "While I'm a sushi fan, my husband is a sushi FIEND - we made biweekly trips to his favorite haunt in NYC (Monster Sushi) and if he was on his own for dinner, I could always count on him to be there for a bite. After relocating to Phoenix, he'd been jonesing hardcore for non-commercial, non-fussy sushi in epic proportions served with a smile. Our trusted source told us that Kyoto was their favorite and we had to indulge. The mixed views on Yelp made be a tad nervous, but I like to give places an unbiased chance. Very glad that I did.\n\nThe interior of the place is a little strange given the shape of the restaurant and lack of windows, but we made ourselves cozy in a table next to the sushi bar. I also did not notice a pre-club atmosphere - it was chill the night we went, but maybe it was because we went after work (which is probably on the earlier side for the see and be seens).\n\nNo teppan for us that night - it was all about the sushi. We started with a pleasantly savory miso soup, flavorful seaweed salad and moist, tender tako (octopus) salad. Next was my favorite dish of the night (and no, not traditional for sushi, but whatever) - a peppered, seared tuna with onion sauce. Divine! I could have had three plates of this and called it a day. Most of the folks in our party ordered rather classic rolls, while I ordered an additional three specialty rolls (Candy Cane, Ichi and Shrimp Tempura - I love to crunch it out). The rolls were so HUGE we struggled to eat it all. Keep in mind that those specialty rolls are massive, particularly the Ichi (should have been called Ichi the Killer Roll) which you could barely eat with chopsticks. I was a mess of dungeoness crab and spicy tuna by the end of the night, but I was happy.\n\nPrice was absolutely fair for the quality of the food - there are many (MANY) overprices sushi places in Scottsdale and many dirt cheap places in the valley. This one charges fairly and keeps the quality up. I don't ever mind paying if it's worth it.\n\nWill most definitely come back and hopefully take in some teppan next time :)", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zGz5NI4sscO4_6YYH-qVtA", "review_id": "sTbYSEAcDoZIY82PL5eYKg", "stars": 3, "date": "2011-08-21", "text": "Ate here the other day with a friend for lunch, it was my first time there.\nI had the Tom Kha Gai soup, my friend had the Thai fried rice with tofu, each was \"Thai hot.\" We shared. Scrumptious! The fried rice dish was large. We also shared some mini eggrolls. Mini.\nI think my soup could've been more dense with lemon grass and cilantro, but it was yummy anyway. I guess it's cuz I'm a sucker for this dish. I think it's much better at Mailee's in Scottsdale but you pay 5 bucks more.\n\nThe place is spartan, not fancy, has some damage, looks like what you would expect by looking at the outside. I'm not picky as long as the place isn't a complete dump. Thai restaurants for me don't have to be princess palaces.... I've enjoyed Char's for years, and it showed its age but wasn't in a state of disrepair.\n\nThey have some beers on hand as well.\nThe menu has a variety of curries, which I look forward to trying.\nI'd like to try this place again, I just don't have much more to say at the moment other than I spied a few dishes on their way to their enjoyers, and they looked appealing.\nConvenient location. \nWorth a try, not bad. You know if it was I'd tell you.\n\nGive it a try for weekday lunch, they have a lunch special menu.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "d2RAl63RTdfZF7kcuKcj-g", "review_id": "yYUDcq5u21JxyM9SqpJMhw", "stars": 4, "date": "2009-04-04", "text": "i used to come here with my roommate to grab an iced chai and do the crossword puzzle on our lazy, halcyon undergraduate afternoons, or come in for a warm breakfast and a cup of coffee, hungover after an amazing houseshow the night before back in the neighborhood. this is that kind of place.\n\ngreat, relaxing place to do homework or study. depending on the day and the time, you'll find professors, honors college kids, hipster bike folk - the whole gamut of the non-party-bro asu population.\n\nfood is good, but a little overpriced, i think. drinks, like any independent coffeeshop, depend on the barista, but i've never had a really bad drink experience here. i especially like the dirty chai.", "type": "review", "business_id": "10BgGvCMDH-JbYsg8KRLRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "M9zyD3urANpe6PoCnCJhDg", "review_id": "IUQzesgdMj9FtuwnAbddLA", "stars": 5, "date": "2011-01-25", "text": "everything, everyone has posted about this company is true! great service, friendly people, good pricing! highly recommend!", "type": "review", "business_id": "YXp62JdXJDzX0EuRv_zgMQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "1ylYrKcGNA8MDkhNBTjHMA", "review_id": "xcJoN7KOPVKtLTD3p_Eduw", "stars": 4, "date": "2009-02-09", "text": "As you may have read in a previous review, so graciously provided by Dally, that Four Peaks is our post-Tuesday night hockey watering hole. We normally show up stinky and limping or in some sour mood or another. Somehow we always leave a little happier, but still limping, well I do anyway. \n\nUnfailingly, we are greeted by the bouncer, who no longer cares to see our ID's, either because he can see the age in our strides or because he knows us now. I would like to believe the latter. Also, waiting for us is the lovely and nicht so talented Karina. Bless her poor soul for putting up with our asinine questions about her life and our requests for more water. She humors us anyway. \n\nWe are made to feel like this place is home, at least for a couple of hours on a Tuesday night. Karina knows what we order for drinks and never has to ask, just brings. I usually switch between a simple salad with a great balsamic vinaigrette or a plate of fries. I know, diametrically opposed. Just depends on the mood and how committed I am that day/week to my diet. I always get the 8th St Ale though. It is very good and for 3 bucks can't be beat. \n\nI have enjoyed the pretzels, the now \"famous\" nachos, with chicken mind you, the spinach-artichoke dip, some of the various wing flavors, and a pizza. For late night dining they are all very palatable. I have a funny wing story, but I think it is only funny to me, Dallas, Z, and our friend Peter. If we ever get the elusive Z to join, I will make sure he shares his story on here.\n\nUntil then, check out Four Peaks in Scottsdale. The late night menu satisfies and is not hard on the wallet. Tell Karina Brad sent you. You won't get a discount, maybe just a laugh.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3w-JiPus8k-BR5PQ7egDvQ", "review_id": "EaH-VbdgUGyPbAeEqFCoIg", "stars": 4, "date": "2011-11-08", "text": "Came here for my cousins rehersal dinner and the first dish out was the lobster bisque and it was one of the best things ive ever ate !!!!!! AMAZING, I could have ate 10 more bowls of this and forget the main dish.\nthe main dish i got some chicken dish that i dont remember that well. I do remember that it was over pasta and the pasta was great, \nI also had 2 GREAT dirty martinis ,", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "lkCq9JaJDMYA3DP3pA7lFw", "stars": 4, "date": "2011-08-29", "text": "I love the Salt Cellar for being the lazy woman's go-to place for seafood. If you get lobster or crab from them, the waitress will crack and de-shell it for you; it's such a great service since a lot of the time I am hesitant to get any kind of crustacean because I don't like getting messy and spending all that time getting the meat out of the shell. The lobster here, while technically from Maine, is flown in fresh from Boston, and they offer 1.25 lb, 3 lb, and occasionally a showcase jumbo lobster. When I went here they were touting an 8 lb lobster for those with the stomach (and coin) to spend a pretty penny on the Yao Ming of lobsters.\n\nWhile the sides are very basic, the seafood is understandably the real star of the show. While I was happy with my fresh lobster, I did try some salmon wellington, which was some of the best tasting salmon I've had in some time. It was very tender and moist, and very fresh. I'm also happy to report that they have soft shell crabs here this season, which is one of my favorite seafood items.\n\nThe ambiance itself, for me at least, is a bit lacking. They don't call it the Salt Cellar for nothing, for when you descend into the restaurant through a flight of stairs, it's very dark and a bit damp and chilly. The lighting for me is too yellow for me, and everything in general seems antiquated. I remember eating here years and years ago, and it seems like they haven't changed anything about the decor since then!", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vHoKL-4FCgGSfDrPr43Opw", "review_id": "1XLHHwLYDnQnLhMfBP5x4Q", "stars": 3, "date": "2012-03-20", "text": "Could be because I've never met a bowl of pho I didn't like, but I could slurp this stuff up all day. Viet Kitchen does a decent job with their pho; the broth is so delicious and soothing. I have only ever gotten pho at all the Vietnamese restaurants I've been to, and here's what I didn't like about Viet Kitchen's: the chicken is somewhat dry and tasteless. The broth has a ton of flavor, so when you eat a piece of chicken with the broth it is fine. But to eat it alone, is way too plain. All they need to do is season it up a bit before cooking it. Also, the spring rolls were very fresh and great dipped in the sauce. Without the sauce, they would have been a bit dry, too. Overall, this is my go-to place for pho since it is so close to my house.", "type": "review", "business_id": "3OauvrqUU8nDLWcW6q9hGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m2T71nxPgzrmXi-cKE3U2w", "review_id": "dAaXvILHexKJfDwbW66oJw", "stars": 4, "date": "2011-10-12", "text": "Amazing tour with a guide that was very knowledgeable and entertaining. The prize of the 90 Minute tour was a bit steep but well worth it after the fact. I will be back for the shelter tour.", "type": "review", "business_id": "rrd7NeAgARDNzPsxxsBJiQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "bPWCuFEaVL5F6dT3JgivLw", "review_id": "yiOoJBEy3Hpro9mwLnKadA", "stars": 4, "date": "2011-04-11", "text": "After my sixth or so visit here at Big Earl's I have to give them a four plus rating. My first time here was opening night and it was ok...the second time was improved...third time good...etc. Now when I come in the smoke is starting to impermiate in the walls leaving a wonderful smokey resonance in the dining room, and the food has become exponentially better!!!\n\nI am like most people in the serious dining population, a lover of all things pork. And while they do some real good pig here, I am thrice impressed with the beef offerings! I like to judge a restaurant on the dishes I would absolutely return for, and the brisket is for sure that item here. Actually, the beef ribs are also one of those \"return for\" items as well. They, much like the brisket, are perfectly smokey, wonderfully seasoned, and impossibly tender. I highly suggest either one.\n\nAs for the sides, I can honestly recommend the collards, potato salad, and the Mac and cheese...although it's not a creamy Mac, but it is gooey enough to pass my palate's stamp of approval. \n\nA huge selling point for me when I dine out are the drink specials, or selection. They are GREAT here!!! Being a total whisky slut, I am in heaven here, with dozens of delicious options, and the handful of beers on tap here make me happy for the change in libation after a few too many. Try the front porch cocktail, one of my top five here in town.\n\nBig Earl's has proven that with time, all things become better. Like I said before, each separate visit has been more fulfilling than the last. I can only imagine how the experience will be, come summer and autumn, my guess is pretty damn amazing!", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0beZngJ03EmIQfVcnlVK4w", "review_id": "ixloXRCwqDx9pIWuiXhdpQ", "stars": 5, "date": "2011-03-20", "text": "I don't love the coffee at Starbucks, but this place is getting 5 stars for their service! They are quick, ACCURATE, friendly, and they always remember my drink even though I only go there about once a week! Amazing! The staff is great and I thought I should leave them a nice little \"Good Job\" on Yelp!", "type": "review", "business_id": "uFR7CpDJlW-gNdmk-zhIGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YjyM32qgF9QQs7_GcqRsHQ", "review_id": "kWzxXRfFOC5SwY10mUWrhQ", "stars": 3, "date": "2011-09-04", "text": "Great dive bar. Great jukebox", "type": "review", "business_id": "679pJn1KyKr2X8NcQNyMzA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "brVRJisWkstW6Zlz5jxJ-g", "review_id": "sDTYQmj4KOfLCUDc6SBgpw", "stars": 5, "date": "2009-02-27", "text": "This place was incredible. The staff was friendly, not pretentious, and very knowledgable. I don't know what it was called, but our group ordered a tray which was a sampler platter and had a bit of everything on it. So fresh! We also tried the sushi with the caviar on top. Try the sake that they recommend (flown in from Japan - they are the only ones in PHX that carry it). I'm not a sake fan but I loved it. That's how good it was.", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IjhG-oFCGvOjP8kxoMZx0w", "review_id": "nW-rY1EgvzNFYHJCDDmCow", "stars": 5, "date": "2007-08-21", "text": "Monkey Pants has some of the best burgers in AZ. Great place for a long lazy lunch over some pitchers. I think one month my friends and I went there like 20 times for lunch. Never got sick of it. It's a dive bar, but it's a cool dive bar.", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "HjhR3u17OjxD4s8t3toTfg", "review_id": "EJi2hMav9tkYMnP4JrelUA", "stars": 4, "date": "2009-09-13", "text": "Known as \"The Jewel of the Desert\" and the \"Grand Dame,\" this beautiful hotel is the only one in the world with a Frank Lloyd Wright-influenced design. The architect was a man named Albert Chase McArthur, who had studied under Frank Lloyd Wright. Hence, the main restaurant's name is \"Frank and Albert's.\"\n\nCelebrating its 80th birthday this year, this unique art-deco resort is rich in history. Dozens of presidents have golfed here, Marilyn Monroe splashed around in one of the 8 on-site pools, and many more celebrities and industry magnates have called this their temporary home.\n\nWhen visiting here, it is important to note that on-site parking is costly. A self parking fee of $12 is imposed even on its guests, and the self parking lot is often located some distance from the hotel entrance. For those not wanting to bother with parking the car themselves, the price is$27 to valet. The package I purchased luckily had the self-parking included, but the car was delivered to the valet nonetheless. I was sure to speak to a hotel manager about how ridiculous it is to ask a hotel guest to pay for parking, and he happily credited our room for the valet fee.\n\nSo, my first experience was our dinner at \"Frank and Albert's\", formerly known as the \"Biltmore Grill.\" Local purveyors provide the ingredients for nearly all of its organic dishes. From Queen Creek Olive Oil to Shriner's Sausage, Mesa Ranch Goat Cheese to Biltmore grown Rosemary, one can taste the difference. The menu provided a range of selections from salads, pizzas, and flatbreads, to rotisserie and classic comfort foods. The wood stone baked filet of salmon was flavorful, tender, and full of tender feelings. I recommend their \"bloody rose\" cocktail. I snicker as I write these words, because bloody marys are my least favorite cocktail. However, this unique blend is made with crop organic tomato vodka and juice, fresh biltmore grown rosemary and spices. Service was attentive and timely, waiter was very knowledgeable, and we were very impressed with the quality and flavor of the food. \n\nNext, it was on to the newly added wing of the resort, the Ocatilla. The Ocatilla is essentially a new boutique hotel situated on the Biltmore property. It has its own pool, a concierge, and an executive lounge which offers daily complimentary breakfasts, a light evening fare, beer and wine, desserts, as well as coffee and soft drinks.Our package included a room on the third floor of this location, as well as access to its executive lounge. \n\nAlthough our stomachs were full from dinner, we made room for chocolate covered cheesecake, choc. covered strawberries, fudge brownies, tarts, and chocolate chunk cookies. We swallowed it all down with some prosecco, and headed up to our room.\n\nThe room was at least 500sq feet, and I believe that the rest of the hote has fairly sizeable rooms, as well. The decor was a blend of art deco and southwestern. The bathroom with its granite countertops, boasted a tub with sea salts and candle, in which we submerged ourselves comfortably up to our chins. Two plush robes were there for us to lounge around in. A snack bar was provided, although a package of nuts and dried fruit was $7. Biggest disappointment was that that there was no wetbar. I always look forward to these in any hotel room, especially to use them for storing leftovers from dinner. The king bed was etremely comfortable, with its pillow-top mattress and feather pillows, as well as the high thread count sheets. Silky soft...\n\nWe enjoyed peace and quiet all night, and were not disturbed in the morning by housekeeping.\n\nThe next day were were early to rise to enjoy the lavish continental breakfast spread in the lounge. Granola with local pecans and yogurt parfait croissans with spinach and boursin, ham and cheese, small danishes, assortmnt of fresh fruits and juices gave us the perfect start to our day. We grabbed some bottled waters and cokes and headed to the pool. We had an appointment at the spa an hour later, for seaweed wraps and massages, and it was wonderful, the service excellent and very personalized.\n\nRecommendations:\ngo to biltmore's website directly to book a room. you will find incredible packages. our package was $200 and included dinner for two, lunch for two, 50% off at the spa, and access to the executive lounge at the ocatilla.\n\nif you live locally, they will shuttle you - saves the parking headache.\n\nAbout Ocatilla:\nbasically an upgrade with your stay. For an additional $75-$100/day, these are the following amenities you will receive:\ncomplimentary beverages, wine, beer, breakfast, light evening fare, and desserts in the lounge\nbusiness center (computers, internet, printers)\nWii rentals \npressing service and shoe shine\ntherapeutic turn down bath\nneck and shoulder massages every thursday\npersonal concierge", "type": "review", "business_id": "5Feaj6aixO_QxKFnkHf3xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VQDgEiTWbiQ71Lnqp6IX6A", "review_id": "_vR8fLPVveZUpjZ5jjex6w", "stars": 4, "date": "2011-08-13", "text": "Just visited this morning and had a great experience. The staff was friendly, and the coffee was great. I had a raspberry muffin and iced toddy. Muffin was large and full of flavor. The owner was kind enough to give me a sample of the toddy (iced coffee brewed for 24 hrs i believe) My husband got the quiche which was light and fluffy and I'll order next time for sure. I loved the vintage plates they give you, and the atmosphere is inviting and airy. It is kind of a cramped space when busy, but worth any wait and maneuvering.", "type": "review", "business_id": "BLgkoO4MKq00V2o9jOf5zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "45_XilpsKrVRUWZmdL6hfw", "review_id": "FParXpOQ3fXqKfhykIdWJQ", "stars": 5, "date": "2010-11-18", "text": "We were in town for the weekend and I had a cigar at this lounge. The cigar prices are reasonable and I didnt mind paying $9 for a La Gloria Wavelle. Service was good and the atmosphere was nice and chill. My Wife doesnt smoke cigars and the air circulation was good, no lingering smoke. We met some nice people and the lounge singers were a plus. We will come back next time we visit, I wish we had something like this in LA.", "type": "review", "business_id": "_IwgdSjrIMwAcQdeLNhcZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "rL3dPeKDTybG_ct9OCXGAA", "review_id": "HNinCPxgoNU_whrdpZOYRQ", "stars": 4, "date": "2012-10-13", "text": "The Corner Bakery was A-Ok! To me it seemed like an elevated Paradise/Panera. I had the Cobb Salad and it was perfectly chopped and dressed. The desserts looked really good but a little on the pricey side for me to try that day. I'll be back because I really enjoyed the atmosphere and the great customer service.", "type": "review", "business_id": "di2QHs2SrY0XFHcfAq_k2A"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "gIhEoQQLLUHbKbn2_TS1hg", "review_id": "wg3N8cP7-C6qQtWVPDSt4w", "stars": 2, "date": "2012-01-02", "text": "I have lived here for about 5 months, the place is okay i guess, the ground are clean which I like, but the staff seems kinda disorganized.. they got our move in dates wrong which thank god I'm an early mover and didn't wait to the last min, then when we FINALLY moved in, we got a different apt than we were showed originally. The linen closet has a big freakin heater tank in it. Which okay whatever i guess is not that big of a deal but then I found out we pay more for our water because its not divided out between everyone else. Also EVERYTHING breaks our shower has broken twice, the closet light broke out the wall, the bathroom light fell out of the wall, the kitchen stove and the washer has all broke from the time we moved in (Last May). the only reason i give it 2 stars is because i do know there are a lot worse apartments out there but still my house is falling apart! When I go in the office i feel they always try and rush me out because i can finish my questions its really annoying. So be careful when looking at these apartments when looking for a place to live.", "type": "review", "business_id": "SspuGxPX7AEIh_0KqR3RqQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 4}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "Ej4huHvwrw4by7kTsXoWew", "stars": 2, "date": "2008-01-25", "text": "The only thing I like about Fez are the pomegranate margaritas. \nFood could be better...", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "anTtulQ9G2b3SipCEwGVHg", "review_id": "1hiA8UlYnmupJgb2waVXAg", "stars": 3, "date": "2008-11-19", "text": "you want a hotel, what really matters?\n\nCleanliness!!! 5 stars.\nFriendly staff.\nAnd they got the really good cylindrical candies... mmmmm. \n\nok, now that we got that out of the way.... some funky odors in one of the hallways and elevator at one end of the hall was out of order our entire stay.\n\ni would come back though. solid price performer.", "type": "review", "business_id": "ky3kuTeqTUOU4CsZ_2_LzQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "Hqgx3IdJAAaoQjvrUnbNvw", "review_id": "Gi-4O3EhE175vujbFGDIew", "stars": 1, "date": "2012-06-22", "text": "If you like the stuck up Scottsdale vibe this is a good place for you. The food isn't impressive. Nice outdoor seating.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "XpSZrY_Ym8GGx7SNEd0q9g", "review_id": "Zrxco2mFgSzMeWFNiY_dGQ", "stars": 5, "date": "2012-03-29", "text": "Where else can you get fresh lemon grass, fresh pork uterus, and avocado ice cream? Asian markets are the bomb, but Lee Lee's is the BOMB DIGGETY since they have EVERYTHING. Jamaican, Cuban, Vietnamese, Korean, Indian, Lebanese---you name it.\n\nIf you love to cook (and I do, I really do!) you can seriously spend hours here. \n\nONE CAVEAT: The seafood is fresher and better at 99 Ranch on 44th St. in Phoenix.\n\nLast week, they were giving a 10% discount off of your grocery bill and a free bottle of fish sauce or soy sauce. If you spent over a certain amount, you got a big bag of rice.\n\nGo! Now!\n\nAnd have lunch in the Vietnamese restaurant attached.", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "w3JoT0gxtaRtLaGrE_GfLg", "review_id": "fJjsZ9zBb6rELpejWpLyDQ", "stars": 5, "date": "2012-03-13", "text": "This is my FAVORITE place to dine out in the greater Phoenix area. The food (I recommend the steaks) is almost as good as the view and the service is impeccable. My boyfriend took me here on a date a year ago, and it was definitely one of the most romantic restaurants we have found in Phoenix yet. \n\nThe prices are a little high ($25 - $40 per entree), but it's well worth it and you won't leave disappointed. If you like American or French food (who doesn't?) and have a special occasion or just feel like doing something different, I highly recommend Different Pointe of View to everyone!", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ds-DFKb1rF9l7aq4OaJUpg", "review_id": "ly8U_mWxJ1kUX2HbgLIudQ", "stars": 3, "date": "2011-12-13", "text": "Well....it is what you can expect from airport food. Not that great but not terrible. All I wanted was a simple sandwhich to take on the plane with me. This airport does not have the best in choices, Starbucks, Wendys, Pizza Hut, etc. This little place is literally a kiosk in terminal C. It is good if you are in a rush and just want something cold for later.", "type": "review", "business_id": "2VpSPb8IVXNqyVY5n7caGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vPjrrDnE2cP7D8Gz1fCpeg", "review_id": "Lgn1k3g1CE044i1rMJD4Sg", "stars": 5, "date": "2011-08-01", "text": "Dropped into this joint just wandering around Old Town Scottsdale. Ordered the nachos and had a couple margs. WOW. The staff was friendly, have a great sense of humor (you gotta see the posted picture joke in person), and the food is...beyond good. Having only sampled the uber nacho plate, which is by the way, as big as a platter and slathered in layers of ooey gooey cheesy goodness, I can definitively say: \n\nBest. \nEver. \n\nI give this place the highest marks for \"doesn't suck\"", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "_JUAxvr5DSEcHTvvXnUsxg", "review_id": "QxajHgOFrRWNbDNHkB4egQ", "stars": 5, "date": "2009-04-04", "text": "If you ever want to instantly \"up\" your cool factor with a friend or date, meet them at the Lost Leaf. The mere fact that there is no external sign (other than the tacky \"open\" sign indicating that it is, indeed, the lost leaf) you would probably never have any idea that the best neighborhood bar in Phoenix is inside. When i am asked to describe the lost leaf to someone who has never been before, it is basically a big open house with the most well-stocked beer fridge you have ever seen.\n\nNo cocktails or draft, but for atmosphere and quality of beer selection, lost leaf is by far my favorite place to meet people in dtown phoenix.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "ngD5RF07pxwlq4euexSluA", "review_id": "2zJjXsb6wYQ239KpKabC1w", "stars": 4, "date": "2012-03-30", "text": "My previous review has the real details about what i LOVE about their food!\n\nUpdate: Doing mostly take-out here, but at least one of the grumpy girls is more friendly now! Yesterday when I grabbed our to-go order, she smiled, made small conversation, and did not exude a sullen disposition in any way. I'm happy for me, I'm happy for her!\n\nOrdered many of our usual items, plus Mongolian beef, which was very tasty. I'm stil partial to the Ginger beef, however.", "type": "review", "business_id": "ChmqODwuYP1ewjmWXtxtsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CBosnOS2STTS75a1ZsYLZA", "review_id": "eCDqROlxiUB6Njw-Nup4Tg", "stars": 4, "date": "2010-12-27", "text": "This is a very good Chinese restaurant, we have gone there for years. I am shocked by the bad reviews and would suggest you ignore them, this is good Chinese food!", "type": "review", "business_id": "6PFPQeCM-XDrZRy0DHV2Yw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "0NckJhx0qXykvvhsm-p7MA", "review_id": "ADzTrcqIKaB_idu0tzrdgg", "stars": 5, "date": "2010-01-30", "text": "This is my favorite restaurant in the Phoenix area. There, I wrote it...and I am sticking to it. First off -- fresh local, sustainable, organic are not just words on the menu and the website. Now, in places like San Francisco and NYC, this would be nothing notable, but in the desert, it is truly something hard to find. Aside from the practical, in the land of Fox Restaurants (True aside) and the big box store at the strip mall, there really appears to be little demand for a small, local restaurant on a farm. It's time to make new demands! It's time to say no to the next Zinburgergeist and try that little corner place run by your neighbor...but I digress. \n\nWe enjoyed the Farmer's Feast and it was worth every penny of the $65/person. First, the house cured meats, including the head cheese, were amazing. Second, how often do you get a chef's menu where each person's plate is different? Not often. Ultimately we each tried 10 different items. And each item, was amazing. I would come back for the pasta alone, let along the perfectly cooked scallops, and melt in your mouth sliced fillet. \n\nThe service was ideal. If you want to eat in 60 minutes, don't come here, but if you want to enjoy in evening of great food, do come here. I noted to the waiter that the previous night they had sturgeon -- something I haven't seen on a menu since N. California. I commented on how unique it is, etc...Of course, it was not available on the night I was there...or was it? When it came to our fish course, the waiter brought out sturgeon for me. The restaurant didn't have enough to have it on the menu, but the waiter clearly put in a special request on my behalf and made the effort to make a diner happy. \n\nMaybe if I offer to work on the farm I can eat for free...", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "lz6V_bpLpPI1-gxUZJU9Lg", "review_id": "ki2Lnci73UvAmuj9Pu7kGg", "stars": 2, "date": "2012-02-16", "text": "I received a buy one entree, get one free coupon for joining their fan club membership so my son and I went this morning for breakfast. Got there around 9am. Greeted and seated immediately in a nice booth. Waitress was quite knowledgeable and took our order after giving us time to peruse the menu. I ordered the Country fried steak and eggs which comes with OJ, country potatoes and toast as did my sons breakfast which he ordered the standard bacon and eggs with an extra egg. We both agreed that the breakfast was OK, both our potato sides were cold. I had a small thick dollop of gravy on my country fried steak, which was quite good but had to ask for extra gravy. Put in a serving bowl it was so thick it wouldn't pour so I used a spoon. I spread it on my Country fried steak with a butter knife much like you would a piece of toast. Weird! Watch out for the coffee. If you are offered flavored coffee it is extra. Hidden charges for everything. In other words, even with the coupon the total came to almost $20.00. for 2 average breakfasts. (tip, cancer donation, etc.) I had to do a double take on the check to see if they included the coupon. Nothing really bad but nothing really good either. I should have known better! Probably not coming back. My son seconds the motion.", "type": "review", "business_id": "fd0iSXEhwz-foQdS8SCKYA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "3eJ2M94guIOhVWexTM6iEw", "stars": 5, "date": "2010-10-31", "text": "Matt's was absolutely fantastic. Got there at 2pm on a Sunday, which is apparently the time to do it (half an hour before close), as we walked right in, sat right down, and had food in 5 minutes or less. Brilliant.\n\nI had the Five Spot which was simply the best egg sandwich I have ever had. Two eggs, two huge slices of perfectly cooked bacon, american cheese (my favorite with eggs when I'm not going fancy-style, reminds me of when I was a kid), and well grilled onions round it out, served on a fantastic roll. \n\nBy default, this item doesn't include the normal potatoes and toast, so I had them add homefries--they were magnificent, and entirely unnecessary. A huge portion of them, with a wonderful smattering of rosemary to punch them up, they were delicious, but I couldn't finish them.\n\nThe girlfriend got a waffle with bacon and it should just be said that restaurants who serve waffles without real maple syrup are simply criminal. Matt's brings the good stuff, and it's MUCH appreciated. Perfect for dipping both waffle and bacon alike. The waffle was fluffy, light, and had that good, homemade flavor.\n\nI can't get over how filling and delicious my sandwich was. Service was prompt and friendly, and overall, it was a great experience. Added a glass of OJ and a coffee to my sandwich with added homefries and her bacon and waffles bringing our tab to right about $21. Absolutely worth every penny. Will be coming back. Probably near 2 o'clock again, to avoid the wait!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZzxZZksMVxeOGcGfEFbfUw", "review_id": "CT7j5_WvUtIlMX7PfxJTdQ", "stars": 5, "date": "2011-02-05", "text": "This is by far the best Chicken Fried Steak around! Not to mention their mashed potatoe's, salad and biscuit! I've never been able to clean my plate here, which is great since I always have an extra meal! Of course you can always get the lunch portion which is smaller, but then you don't have the extra goodies for later! \n\nIt's a small down home place, dress comfy and go there to eat up! The wait staff is always the best and they know their stuff! \n\nI've had their T-Bone here, and it's good, but really hard to go there and not get what made them famous! Wonderful food!\n\nPrices for lunch are around $7.00 and dinner around $12.00 - really hard to beat for real down home cooking!", "type": "review", "business_id": "18TUn9oiW0k0yB6lheiOvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qsyO7LAgVVFoLhxkdBwzGg", "review_id": "oet4Ii22WUMa2kw8REVo1w", "stars": 4, "date": "2012-09-25", "text": "took my wife there last week. it is a really good. the food was great and the decor was really cool and the staff was very helpful and nice.", "type": "review", "business_id": "r4AG1WXCRWkZKQctrcy9FA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hlAkBrhXD5JfQS6CQn-9mA", "review_id": "A5Msw7_zF_36ya1GZ3WleA", "stars": 5, "date": "2010-06-02", "text": "I love the place. Was a bit hesitant at first but friends recommended it, and it turned out to be quite good. They even have a few choices for those that aren't into Asian fare.", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "y5_vrqIylhXMrejM_-x_vA", "review_id": "l7L95_bLqKhPCrTWo9aVRQ", "stars": 4, "date": "2013-01-01", "text": "While in the area we wanted something for lunch but knew we'd be having dinner out that same evening. Not wanting to fill up too much we ordered an appetizer and entree to share. \nThe lettuce wraps with shrimp were so good! Fresh and crispy veggies accompanied seasoned shrimp all wrapped in butter lettuce leaves. It was light and tasty. For our entree we ordered the Hawaiian mahi mahi which came with a pineapple, red pepper and onion mixture over a bed of rice. The fish was a little overcooked but still tasted pretty good. Star for the water glass test!", "type": "review", "business_id": "6v0vQm3wXzaFoEywvpbnqg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F2GEqt_mV95OQEiYPTQ4VQ", "review_id": "LLHGW8-jlgB92qmTJRw33A", "stars": 3, "date": "2012-05-21", "text": "I like the way they treat my dogs, really friendly staff. They are really good about getting your pet seen in an emergency. The facility itself is nice. However, it feels as if they are always trying to sell me something things I don't need. This place is so expensive, we can never get out of there for less than $100.", "type": "review", "business_id": "DLFsfN6SWtjZnE2ZbV9S_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OD5nkH4uJDDTJQdmaltDAw", "review_id": "Uzisz3l_LnK-kF34CDq5Nw", "stars": 5, "date": "2012-09-30", "text": "I ate here once while Crudo was still in its Scottsdale location. And I raved about it and vowed to come back (although the strange location in a salon delayed that return). Then Crudo disappeared. And I wondered how a place that fed me one of my best meals in Phoenix could disappear in a town supposedly full of foodies. Now it has reappeared, and in a better location. Oh joy.", "type": "review", "business_id": "Xk3inJcuBGLhavUcdlINZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "NUjmxyT96tdLIaet5uSQRw", "review_id": "1wvndcCwnvhB4eui7rV4cQ", "stars": 5, "date": "2011-01-08", "text": "BEST RESTAURANT IN AZ! \n\nNo but seriously, I could eat every meal here. Chef Becky is amazing and breakfast this morning did not disappoint. I decided to try the Organic Oatmeal and my friend ordered the Red Velvet pancakes. Ok, so you're probably saying \"with all that yummy goodness you ordered oatmeal?\" Well, what I really wanted were the chilequiles (eggs, cotija jack, pulled pork, tortillas, tomatillo verde? Yes please!!) but being allergic to eggs I went with the oatmeal, which was delicious. The oatmeal had a vanilla flavor to it and the strawberry and pecan topping gave it some texture. The red velvet pancakes are too intense for words. Rich, fluffy...they'll make you want to get up early on a Saturday morning. I also tried a side order of the banana bread which was slightly toasted....now if you've never toasted banana bread, you need to. This was the perfect buttery flavor combination with the oatmeal. \n\nThe service was fast as always--we never had to wait or ask for a coffee/water refill. The decor inside is warm but I think sitting outside on the patio is the way to go. \n\nLove the Herb Box and can't wait to go back and try the cinnamon buckwheat pancakes.", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Laas9Ip1BoMGMlli1K4XcQ", "review_id": "j4Ga7qT7RrHZuxegQy2hAw", "stars": 2, "date": "2009-09-10", "text": "Set up a VinVillage event at this place, sight unseen, which I hosted last night. After the glowing descriptions on their website, some of the reviews here, and knowing they are located at CityNorth, I expected much better! \n\nWalking in, I did not get the feeling of \"upscale\" restaurant. Sports on 2 TVs blaring out over the bar and into the open dining room did nothing for the atmosphere. They had a long table pulled together for our group in the center of the room, but I grabbed a seat at the bar since I was the first to arrive. Took a few minutes, but the bartender eventually gave me a wine list/menu, answered my questions, and proceeded to get my drink. They had a good selection of wines, and some you don't normally find on wine lists at every other place in town.\n\nA few others came in and we moved to the table, no problem transferring tabs. Seemed to take a long time between everyone (about 15 of us, though we initially expected 20) receiving their drinks and the time the first apps came out. Granted, they were complimentary (the deal I worked out for my group), and they were quite yummy - especially the spicy tuna on tempura eggplant - so once we started eating, we forgot about the wait. The pate was very rich and served with soft slices of raisin bread. Some were immediately addicted to the bacon-wrapped dates.\n\nEveryone ordered a burger of one type or another, some opting for the pre-selected toppings, other customizing and adding sweet potato fries. We confirmed that everyone was on separate checks. My burger came out not quite as rare as I would have liked, but what do you expect when the patty is only 1/2\" thick? I am not a big beef fan, anyway. Sauces were good, especially the pungent garlic parm, as were the fries.\n\nBut then, we waited for the checks...and waited...and waited. Seems the staff didn't begin trying to sort out who had what until at least HALF AN HOUR AFTER everyone had finished eating and plates had been cleared! And none clearly knew how to use the POS system. Those who had cash eventually tired of waiting and just left it on the table. Those of us with credit cards were not so lucky...and several bills had to be re-rung, as they did not include the right items. \n\nI had wanted to go back to try the salted caramel milkshake, but it will be a long time before I return.", "type": "review", "business_id": "UIfORCz28cEGMr_9p0eJ5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oXBahXJCXUEATm5IVexw8A", "review_id": "AU8rXv22KbxaMwK3_sY9BA", "stars": 5, "date": "2012-01-04", "text": "This review can be applied to any and all Quick Trip locations. I have, on many occasions, gone out of my way to stop in QT over other gas stations, because not only are they much much nicer, but they are very clean and offer a ton of gas station fare (drinks, shakes, coffees, juices, snacks, etc). I really appreciate how quickly they work, with cashier's that are able to take care of two customers at once. I usually abhor using gas station bathrooms because, let's face it, we've all been there and seen how putrid they can be, but whenever I visit QT they are always clean! They mop, sweep, clean the bathrooms, windex the doors...and for that I applaud you all, thanks for the cleanliness:D", "type": "review", "business_id": "EdPa3d82Dq_za2Wf7Dtysw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "i_dXLt7xSBQM8OGEjnTdlw", "review_id": "VzDUUDDRnuaWq1bVy6_Fwg", "stars": 4, "date": "2012-09-29", "text": "Jesse and I had a lovely evening out- we had great dishes and the owner was our server as well. He belts out a lovely Italian birthday song while playing the guitar. Very nice", "type": "review", "business_id": "FuqWdD44gYFhofESN6JD1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 3}, "user_id": "Lzug6WSdwzdGECzcgHPEyw", "review_id": "HDhmOIX6eZYQrvelvX3Czw", "stars": 4, "date": "2011-06-10", "text": "The only reason I'm not giving 5 is the misguided bus driver. After asking the driver if he dropped off at 'Pecos', not 1 but, 2 times, and he agreed both times, we wound up in Chanlder/Gilbert border NOT on Pecos. My mistake in thinking there was only 1 Pecos stop. Newbie me had no idea. It was easier when our parents pinned our bus stop destination on our shirt when we were 6!\n\nStranded, about 8 miles away from my park n'ride, I was advised to call their help number. So, I called Customer Service who transfered me to Wanda, the dispatcher. I've never talked with someone so nice, helpful and compassionate - THIS is how customer service is supposed to be...HP, Dell, are you listening?! \n\nShe not only tried to find me other buses to link and other routes to my stop, but in the end, tracked down a site supervisor Bob, down the road, luckily he was on a run, and took me to where I needed to go. He was so nice and understanding, I didn't feel like a total doornob. \n\nTell you what, I can't think of anywhere else where their customer service was actually helpful, and hope these guys at least get a bonus, stipend or something. They went out of their way when they didn't have to. Thank you and great job - wish more people modeled your service-oriented organization!", "type": "review", "business_id": "er20L6Wzviiin8OS9FqFmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gamYvJY-JaxQ0sV5Fkr3DQ", "review_id": "WLKcLVYCXduMlWJT6uW4rQ", "stars": 5, "date": "2011-12-05", "text": "What a place! I recently hosted a 25-person family party there, and both the food and service were impeccable. The staff were all very friendly and accommodating, even with the dozen children we had in the group. Leslie was the manager and she paid attention to every last detail, helping me to plan the menu and gauge food quantities for that many people. The restaurant itself was spotless, from the outside patio down to the restrooms. Thanks for making our family event such a wonderful success. Everyone left full and happy. We will definitely be back!!", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "Ll8KJ3EQqPqdg5nHCQNM6w", "stars": 4, "date": "2009-03-02", "text": "I had my doubts about Cream Stereo Lounge beacause I didn't like the name of the place and I heard that they played a lot of house and techno music. I've been sick of all the Scottsdale staples like Myst, Axis, SIX, PCL, etc.... so I thought I would give Cream a try and I ended up liking the place a lot. Everyone there was very friendly and the DJ played a lot of good songs to dance to. If you're sick of going to the same bars in Old Town give Cream a try.", "type": "review", "business_id": "3XG4-xRNCHPQs2sAYa66pw"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "VFTd1QaNvVVucagkq8ZJAw", "review_id": "EQZjeyvQRe0xnEYcV_eK0A", "stars": 2, "date": "2007-03-06", "text": "2.5, just not enough to give it three. \n\nFood was just OK and they ran out of ahi tuna by 9pm! \n\nThey have happy hour all night (pretty good specials too) but they close SO early (10pm last call on Sunday)!", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "98jhrpmyYcLLM0-9z-r2oA", "review_id": "rgkkCRoODa2FfBwBSHd7SQ", "stars": 2, "date": "2012-08-09", "text": "To sum it up, this place was just not the place for me. Maybe I am just a fuddy duddy, but it seems that the clientele are cougar-like women, aged 30-50, with bleached hair and sequin tops. I expected a quiet wine bar, but instead it is more like a loud night club.\n\nThe hubby and I visited The Living Room on a Saturday night, so maybe the whole \"we-wish-we-were-a-club\" thing was just a once a week occurrence, and maybe, just maybe, I am totally un-cool, but we don't plan to return.\n\nFood: Wine specials were fairly decent and priced well. Food was average (3 stars). We had a variety of bruschetta, a tuna salad and a strawberry salad - way too much dressing on both salads. \n\nService: It took a long time to get a table (~30 mins), but it was Saturday night and crowded, so expected. Once seated, our waitress seemed more concerned with anything other than serving us. She was not very attentive at all. She asked for my order and walked away. My husband was like \"uh, I kind of want to order too\"\n\nAtmosphere: The overall look and feel of the place is pretty neat. It is a smaller restaurant with lots of patio/outdoor seating. Decor is large heavy curtains and many couches, thus the name The Living Room. However, as I mentioned earlier, the music was ridiculously loud. They had a DJ playing music so loud, having a conversation was impossible (and we ended up sitting pretty far from the speakers!). We left a soon as we finished our dinners (didn't stay for more wine or dessert) because the music was just too annoying.", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "NT37ZZQBZkL0aI2dzDfUkw", "stars": 5, "date": "2011-12-01", "text": "Oh my God, Chompie's is the bomb and I'm so happy to have a location so close to my house!\n\nWhile this location has a steady customer base, I have never had to wait longer then five minutes to be seated, unlike the other location at 92nd Street, Win! Service has always been fantastic. Quick on to seat, quick to get drinks, quick on refills, and delicious food from breakfast to dinner items. As other reviewers have stated, the Jewish sliders are amazing, but I have also enjoyed different wraps and sandwiches. Prices are a little higher, but the food is well worth the money. There is a \"bar area\" with about six stools and two TV's that you are able to see from your tables/booths which usually has ESPN on. \n\nThe restaurant itself is all decked out in a NYC theme, well lit, but the acoustics aren't that great so it can get a little noisy. Bathrooms are nice and always clean. Oh, and don't forget to check out their bakery for delicious goodies to take home!", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 8, "useful": 4, "cool": 2}, "user_id": "jYWI9qJFCd1hDwF_dihPhg", "review_id": "WLZ98oKtIHJT9CfF7LrxbQ", "stars": 2, "date": "2008-11-29", "text": "Drinking + Arcade Games. This should be an obvious winner, right? Wrong.\n\nOh, how wrong. \n\nEating here is like eating in a casino, only less classy and with worse food. \n\nBeers are overpriced but absolutely necessary to make it through the event. \n\nThose combo deals that include beers and a game card seem like a good idea, until it's 45 minutes later, you're out of points, you're nowhere near drunk and you've already spent $40.\n\nIf you go late, try not to get syphilis when you walk by San Felipe's.", "type": "review", "business_id": "1CNKe3H07sLu6rigOpAYsg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "b60JsTGYbVqUGYbI81aOsw", "review_id": "8oLQLmDJdCXeJqSvYEpSGQ", "stars": 4, "date": "2007-08-14", "text": "The Yucca Tap Room is wonderful for the following reasons:\n1. They don't actually have taps\n2. They do have live band karaoke\n3. They do have table shuffle board. \n4. They do have the naked lady game.... otherwise known as Photo Hunt... the best bar game of all time. (A note to both ladies and gents, the naked ladies are much less distracting than the naked men... and hair, heels, and bra straps are heavily relied on as the sourced of difference between the image.\n5. It's a good mix of people and pretty cheap. Unpretentious and awesome!\n6. It's bikeable, but I feel like I've traveled long distances to get there (I think that is because crossing Souther is intimidating)", "type": "review", "business_id": "q9_N4b26UhGAYicjueUinQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CudlbVQsaP4d8LATjkgfFw", "review_id": "lE9cfDT-KpXPK8groYpYKQ", "stars": 5, "date": "2011-04-21", "text": "Great sushi place! Ample portions of sashimi. Unagi is the best I've had. And don't forget the Tako salad. The atmosphere is okay. It's not bad, but not exactly cool. Of course, if it were 4 miles south (in Old Town Scottsdale), you'd never get a table.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F5OGEH2jk5sA_R4xBp2TPg", "review_id": "JGIpGhojr7IavqUCAErwGA", "stars": 4, "date": "2010-12-11", "text": "My family comes here for cases of citrus every year. The navels and tangerines are delicious, and very reasonably priced. They also have lots of other interesting local products like a variety of honeys.", "type": "review", "business_id": "d_f2yIJ8mkRXD_BnQ-yA7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yeSRxEDtWpdI1Oc2TsX3xw", "review_id": "bBrWfrmif0hKB2eZ030dBQ", "stars": 4, "date": "2011-03-22", "text": "I was pleasantly surprised to find the Phoenix Public Market across the parking deck from the Cronkite School of Journalism and Mass Communication. It's too bad it's not located on the ground floor of the school, replacing the space currently occupied by Subway. It would be much healthier for the students.\n\nI had their breakfast protein shake, which was AWESOME! Even though it was $6, I ended up having TWO!\n\nWhile the shop is not as big as a Whole Foods, it does provide the organic and healthy staples, while serving fresh salads, pastries, and different types of chocolates. I didn't get to purchase the local bran of organic ice cream, which seems to be popular. Maybe next time I'm back in Phoenix.\n\nI also liked their little coffee shop in the back room, which is separate from the main shopping area, giving you a bit of quiet to read a book or check your email.\n\nLastly, all the staff are quirky, yet incredibly friendly. They offered up suggestions for local things to do, and were generally helpful.\n\nOverall, love this place. I wish it a long and successful life. The world needs more Phoenix Urban Markets.", "type": "review", "business_id": "Ax11wyp-FudujeU9nejQbw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "HITt6wNacTbmNudzNKy9Eg", "review_id": "przKjmzv7o3guyLstuDJmg", "stars": 5, "date": "2010-09-26", "text": "Careful! You'll get addicted.\n\nAngel Sweet is the best gelato this side of Italy.\n\nThe pana cotta and zupa flavors are to die for. Don't settle for just one either, you can get as many flavors as will fit in your cup!", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "fQ65oVUPQ3RXhm6qtjUTSg", "review_id": "J37jEakdUbzPzVe8QtgODQ", "stars": 4, "date": "2008-06-26", "text": "I think there food is amazing! However, it is a bit pricey which limits my trips there. I love the white decor but hate how expensive the drinks are! I ordered a Key Lime Martini and it was 15.00 for one and served in a tiny little glass! Come on!\n\nAdditionally, last time I was there we went to the bar afterwards and most people were wearing flip flops which drives me nuts! Take a shower, get dressed, put some effort in! Save the flops for the pub! Hopefully, it was just an off night because I really think it is a cool spot!", "type": "review", "business_id": "s1Z1GO4UZ-GDmRvSqpqDFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q3Fa0PhTGzRl-05fXHIi4g", "review_id": "f08dCX8AguuKrYEmAfeK1Q", "stars": 5, "date": "2012-06-16", "text": "I can't believe I hadn't been here before yesterday! Talk about a hidden gem! I was taking a friend around to cross stuff off her \"List of Stuff to do Before the World Ends\" and smoking a hookah happened to be on it. Therefore I googled places nearby us and Oasis popped up.\n\nAs soon as we got there the guy at the door welcomed us in with a smile and opened the door for us and once inside the waitress/bartender helped us pick a table and took our drink orders. We decided to get the peach hookah and an order of the Hummus and Pita Deluxe with beef. The food was delicious and the hookah was great! The staff was awesome the entire night as well. Everyone kept checking on us to see if we needed anything and they would just stop and chat with us as well. One guy was even helping my friend try to make smoke circles! I definitely love that they're open until 4 am on Fridays and Saturdays too because it's always nice to have somewhere to wind down after all the bars close!", "type": "review", "business_id": "bNu-PVXtfyLE6A1qv9bDcA"} +{"votes": {"funny": 1, "useful": 6, "cool": 4}, "user_id": "8RzsGBVrqLWLCE8sOSYQkw", "review_id": "v8rGYASn4jSu8qn_Wevx6g", "stars": 4, "date": "2007-08-12", "text": "I've been two Pie-Zanos twice now and I think my wife did the best job of describing the format of this unique dining experience: Subway for Pizza. Of course, this is not to imply that Pie-Zanos is staffed by mouth-breathing \"pizza artists\" or stocked with sub-par ingredients and generally filthy. On the contrary, this \"Subway of Pizza\" is staffed by congenial and hip 20-30 somethings who are eager to please by heaping tons of fresh and flavorful ingredients onto your individual personalized pizza. \n\nPie-Zanos allows you to pick from wheat or white dough and from up to 8 different sauces. From there you can add herbs and crust flavoring and then you can pick from 6-8 different cheeses. Then you select from the widest selection of pizza toppings you'll find anywhere. The fare is basically affordable as long as you don't go apeshit on toppings (55 cents each after the first). As a special bonus they have Pepsi products. \n\nI have also enjoyed the breadshits which are fresh and delightful and pair nicely with the traditional red marinara as well as the tomato-pesto. \n\nMy only complaints with Pie-Zanos and what keeps it from achieving 5 stars is how busy it gets at lunch, limited indoor seating and the fact that they allow children's birthday parties which, when mixed with ubiquitous bad parenting, quickly turns a hip and snazzy pizza joint into a Chuck-E-Cheese's.", "type": "review", "business_id": "Fo5O94HccxE4PvMQf-G_vQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "VxRPbgauDdOcA3eg1uazXA", "review_id": "H7tCJThvVA7a96c-x1mKnQ", "stars": 2, "date": "2005-07-03", "text": "Happy hour in Phoenix from 5PM to midnight on Thursdays? Yes, at Devil's! Hey, it's Phoenix; you need to escape the 100 plus degree scorching weather in a casual place. The staff is friendly and the atmosphere is fun and lively. Mind you, my disclaimer about Phoenix qualifies my prior observations of Devil's-it's good for being in Phoenix. Devil's is a fun place to get stupid and have a good time in a casual setting. It does remind of a frat party though.", "type": "review", "business_id": "7xbTnoyaai4JTkZ8rFPQTA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "P1qwZrslRv9KS9vPJNXe4g", "review_id": "C5AUgjPlyhsKuuXfcK5bqg", "stars": 3, "date": "2009-04-28", "text": "So Chase field you get 3 stars.\n\n\nHere's the problem(s) I have with the venue or CONS so to speak.\n\n1. Cash Only almost EVERYWHERE, for a stadium named after a bank, don't you think someone would have taken finacial practice into better concern, perhaps CHASE just wants to sucker you more by making you pay their ATM fees if your not a member which I see as \"Greedy Fat Cat\" practices. \n\n2. No real options in regards to \"regular\" ball park food, the Brats are a joke and at 6 bucks a pop, they don't even offer peppers and onions, strange that it shows it in the menu picture. Other than that it's just another typical \"let's capitalize all we can\" with your typical crap chains (Fridays, Panda Express, etc) which I find pretty disgusting. \n\n3. The \"Value\" beer stands..... Okay, when is a beer a \"value\" at 4 dollars, I mean seriously, being that I just paid 6 bucks for a brat that's pretty pathetic I'd at least like the decency of having a good size beer to help wash down the piss boiled frank I just overpaid the crap out of for. To sum it up, the value beer is tiny and the only one worth buying IMO is the 9 dollar 24 ouncer or even better, the 10.50 Corona, HA.\n\n\nHere's the PROS.\n\n1. Damn good deal on seating prices, we sat in section 140 (lower level outfield) for 15 bucks a person, Not too shabby! \n\n2. The stadium is rather beautiful, for a stadium that is. \n\n3. There's a pool in the outfield, cool idea \n\n4. Parking is rather cheap (12 bucks) and has never seemed to be an issue.\n\n5. Traffic control before and after games is surprisingly smooth\n \n\nOverall 3 stars, I just think they need more originality instead of what \"Joe Sixpack\" wants while charging him Paris Hilton prices.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "AYGHNy8gPxl2Q-etTT3hZw", "review_id": "sY3Dj0iuUDti4dSVR1L5Kg", "stars": 4, "date": "2011-07-16", "text": "Simply put, this place rocks. CleanFreak has a TON of vacuums, a debugging station, and a fast, very efficient car wash. Best of all, for a mere $17 you can have UNLIMITED car washes. If you have windows, you have probably noticed that it is monsoon season, and monsoons hate clean cars as much as terrorists hate freedom. While I cannot explain why we call monsoons 'haboobs' I can tell you CleanFreak is a great place to wash your car.\n\nCleanFreak has some perks I have never seen at other self car washes. For starters, the employees are outstanding. Somehow they are smiling and seem happy- even in the hot summer heat. They great you and explain how things work, and you get an armor all towel, to clean your interior. As you pull around and queue up for a wash, you are then given your choice of air freshener! Where else does that happen at this price?\n\nI highly recommend checking out the unlimited wash VIP fast pass. There is actually a separate line for people with the fast pass, and how it works is a bar-code sticker is placed on your windshield, and you pull up to the fast pass line, and it scans your pass- and you're in- just like that. This \nsaves time, and waiting in line, which is good stuff.\n\nThe one thing CleanFreak can do a bit better, is communicating how things are supposed to go. On my second visit, I was getting ready to start through the wash, and I asked an employee for an air freshener. He asked me where my receipt was, and I didn't know what he meant. I asked him what receipt and he told me that if you have a Fastpass, you need to bring the recipt that the machine spits out. I had no idea about that, and explained that to him, and he was cool I think it would save some headaches to either have some more signage, or give people a flyer with an overview of what/how to do things. Otherwise, CleanFreak will take care of you, and for the price of one wash somewhere else, you will have a month of unlimited washes.\n\nBring it on monsoons!", "type": "review", "business_id": "wGaFCroINBx3o4L_siYEtw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "ZxturuGk-mcM91Jj6VS_0A", "review_id": "aDNa_XOJlqE7MlPWpW8O4w", "stars": 2, "date": "2012-06-24", "text": "The ice cream floats were great! I know because we ordered 5 of them! \n\nThe food on the other hand was not so good. We ordered the kids cheese pizza, grilled cheese sandwiches, pastrami, pastrami ruben and a cheese burger. The pizza was not edible (too hard). For the price of the entrees, it would have been nice to offer fries or fruit instead of chips or lower the price. \n\nThe staff was attentive and nice!\n\nThe atmosphere was great for playing I spy.\n\nWould visit again but only for soda and ice cream floats.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4hR-tE1PYvp7Go5a8s8pmw", "review_id": "zEALlbBCcSk0eahDIt1xmw", "stars": 2, "date": "2012-05-02", "text": "It was just okay for me. Pizza was huge which was great for the price. I would eat there again.... But it would not make my top 10 favorites. It has nothing that stands out to me as a wow factor. Wings were good.", "type": "review", "business_id": "Dim6R6ki5Z_05bk_V1htbQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "xdhu_CZVomaGPD2qB0IQXw", "review_id": "4hYFxePCgQTbM1l2ZTjgfw", "stars": 4, "date": "2011-01-05", "text": "Alright, well seeing as I work right next door, my mouth has been watering over this place ever since I laid eyes upon the menu. And tonight, we finally had some yummy Rumbi take-out.\n\nFirst things first: they're a little pricey, at first glance. However, their portions are *enormous*. Each of us ordered a full size bowl(Honey Orange Shrimp for me, Jamaican Jerk Kalua Pork for Jamie, Honey Orange Kalua Pork and Teriyaki Chicken for Jamie's parents). The full size bowls were more than enough to last the average person through dinner, and then through lunch the next day; packed full of rice/noodles, meat, and veggies, with each bowl containing a ramekin of sweet teriyaki sauce.\n\nThe shrimp in my bowl was perfectly tender and succulent, the Honey Orange sauce sweet, but not cloyingly so. The bowl came with a lime wedge, which added the perfect zing to the mellow coconut \"Rumbi rice\".\n\nWe also ordered some of their Bahama Mama's Tortilla Soup, which was a creamy coconut-based broth filled with chunks of grilled chicken, tortilla strips, and melty mozzarella. It was a good, cozy soup, but could have benefited from more depth--some tang, some spice, something.\n\nFor dessert, we had some of Rumbi's Key lime pie--moist, rich, and delectably sweet with a lovely measure of sour. Only complaint? The graham cracker crust was too mushy, soft, and crumbly; it would have been much better with a crispy bed under the pillowy-ness of the Key lime filling.\n\nAll in all? Great place with reasonable prices, given their generous portions. They have a TON of salad options, as well, each more inventive than the last, and I'll be returning to try and test each one :)", "type": "review", "business_id": "jh9NywTvV-POnF1I6Pc9ng"} +{"votes": {"funny": 0, "useful": 5, "cool": 5}, "user_id": "-txH2zJSBZQHO6RWvoWXuQ", "review_id": "Kibj2ajzr5yyNrEkpIk_BQ", "stars": 4, "date": "2008-01-13", "text": "I absolutely love the atmosphere and vibe of Switch. I've been there 3 times, once for a latenight snack (before they were serving alcohol) and twice for breakfast. My favorite thing about it is that I feel completely comfortable going by myself with a book and lingering over breakfast and coffee.\n\nService is always very quick and super friendly, and prices are good. Unfortunately, as much as I love GOING to switch, I have to be honest and say I haven't been wowed by the food so far, although I still need to try lunch/dinner. Food's not bad, not at all, just nothing spectacular.\n\nHaving said that though, I'll still go back often!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "lZZjKaoCmoYZ0F1pzuQ56g", "review_id": "ct98FQE43aU5RqHxVLXMHA", "stars": 1, "date": "2010-06-19", "text": "This Jack in the Box location has the worst service & food that I have found in the Phoenix metro area. Every time I have gone through the drive through there my order has either been wrong or inedible - how hard is it to make a taco without frying it into oblivion? The wait times are consistently more than 5 minutes...I think I will be spending that 5 minutes driving to another location, just to get the correct order & food that is properly prepared.", "type": "review", "business_id": "_dVPzYGXKNg2rIsc40VtyA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "fM4dMVGeraQ-t9SDcP0bbQ", "review_id": "BTGV7LcDCspf3kmkcttiJg", "stars": 4, "date": "2011-01-31", "text": "I had a small fender bender in a hospital parking lot a few months back. No big deal, and the other driver's insurance company immediately took responsibility, so all I needed to do was get an estimate and get it fixed.\n\nThey were quick but thorough with the estimate, and when I brought my car back for the repair, they found some additional hidden damage, contacted the insurance company, secured a promise from them to pay the shop directly (so I didn't have to pay then wait for the insurance company to reimburse me), and still had everything done as promised, when promised, and they called me a few times to update me on the progress.\n\nThe only thing that I would like to see would be some courtesy transportation, even if it would only be offered within a certain radius.\n\nAll in all, they made the process as painless as possible. Strong 9 out of 10; if they offered to drop me off and pick me up at work at no additional charge, it'd be a 10 out of 10.\n\nI hope I don't need a body shop in the future, but if I do, I wouldn't hesitate to bring my car back to Brighton Collision Centers.", "type": "review", "business_id": "v8Tz2WYLTsD3HV3nu5hevQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "opjBZ0ImnKv5eRNQZ-98DQ", "review_id": "GH69vvp-BOEcOh8r-Hvd0A", "stars": 5, "date": "2010-03-03", "text": "My meal at FnB last weekend was one of the best I've had in Arizona. I love everything about this place, the food, the cocktails, the staff, the atmosphere.\n\nIt was a rainy Sunday. I knew the restaurant was right next to Cowboy Ciao, but managed to walk right by it (my friends noticed me go by). I turned back, and Pavle was nice enough to wait at the door, and said \"Ben?\" as I was about to pass by again. I agree with what everyone else said here, Pavle really makes you feel at home.\n\nI started with the slivered fennel salad and a ginhound. I split the order with a friend, and they were more than happy to bring the salad split onto two plates for us. I love citrus, and these were a very refreshing start to my meal. \n\nNext up was the trout. It was presented stacked on top of the sunchokes and caramelized onions, with some wonderful broth on the plate. The combination of flavors was rich, and amazing, and the presentation ensured that every bite was as good as the last. I could eat this every visit, but I sampled the chicken and lamb, and was just as blown away. For desert I had lemon cake with ice cream and strawberry compote. \n\nFnB has been receiving a lot of positive buzz lately. It's well deserved. If you haven't visited yet, you're missing out.", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WI4DyaHOz9SMhngG83QbNA", "review_id": "2pOUXf6XDO8a3uy2CjZ5tg", "stars": 4, "date": "2011-03-20", "text": "Stopped in with my two yr old granddaughter today after going to the children's museum, got some raised eyebrows when the cool people saw the kid but whatever I had to have one of there dirty chai's. Good as usual and the kiddo had a cupcake she thoroughly enjoyed on the drive home.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qc3mQL34qq0Eo6dbU00ZTg", "review_id": "LPJ1icmpCDZA8VQe7X8Fdw", "stars": 1, "date": "2012-04-08", "text": "Got a padi and the tech stopped for a while to eat. then i got a new tech to finish my pedi. my total was different than the quoted price. when paying my total was $25 i hanede them a $50 and they cashier tried to keep all the change for a tip. he refused to give me my change until i told him that is not gon to happen. My feet were so dry afterwards. I DO NOT recommend them", "type": "review", "business_id": "XuSSzunh_LnO7VIMKNc-eQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "ru2izNr8PLQ1IrGDJQTOJw", "stars": 4, "date": "2008-05-28", "text": "A ski-lodgey pizzeria. This says it all. Well, almost. While the decor may be a bit \"weird\" and \"puzzling,\" make no bones about it, the beer selection is great.\n\nLet's re-cap 2 of my experiences, shall we?\n\nDINNER:\n\nArrived shortly after 6 p.m. on a Saturday and sat in the bar area, which was littered with a few patrons. Live music started at 7 p.m. Since Saturday is considered \"All Day Happy Hour,\" I went with a $5 sandwich - turkey, with smoked provolone. On the side, fresh fruit. They call this their \"Half and Half.\" The sandwich was okay. Nothing I can't make at my own hacienda, though. I really liked the turkey, which like appeared freshly carved. The beverage: Sam Adams Summer ale, which was their seasonal at the time. \n\nMy family, who dined with me, thought the food was okay. When both my brother and my dad ordered beef, they weren't asked what temperature they wanted it cooked at. They were just given it well done. I would not have stood for that. \n\nOverall, the food is average \"bar style\" food. The menu is large, though. It may take you several minutes to narrow down your choices. From calzones and burgers to sammies, you have options. \n\nJUST DRINKS:\n\nNow we're talking. If you're looking for a low-key place to hang for a couple hours, play some pool, watch some sports or hear live music, I would suggest checking out this place. They have two pools tables: one downstairs in the bar area; one upstairs. They also have a video game machine at the bar. (Beware that the pool tables were probably bequeathed to this place. After all, balls disappear. Where did the que ball go? Hmm.)\n\nAs for the beer, well... Let's just say they have quite the selection. You may not find your fancy imports here, but you will find some really great beers from some Oregon and Colorado microbrews. For that, this place goes up in rating for me (hence the 4 stars). After all, there's not may low-key places 'round town - especially close to home - that offer quite the array of beers to satiate my discerning tastes. I recommend you try The Great Divide Raspberry Ale, which is made with real raspberries. It's not overly sweet, but it's unique enough that you may find yourself, like me, craving it from time to time. Or, if you enjoy Rogue beer, they do sell the Dead Guy Ale on tap! \n\nSure, I list out their beers here, but that'll take up my entire character limit. Let's just say that on their drink menu, THREE WHOLE PAGES are devoted to beer - what you'll find both on tap and by the bottle. \n\nSO WHY GO? \nUhm, that's easy. Go for the great beer. (That's the main reason for the 4-star rating.)\n\nIf you love good beer, like I do, and want to chill with some friends, while playing pool or listening to some live jams (though the live music stopped at 9 when i went), then check out Boulders on Broadway. You may even find yourself thinking you stumbled through an invisible portal into a 1970's Denver ski lodge. Good times!", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "x4eIi_YiwKj1pzcspeLt-Q", "review_id": "uX2ikFy4j5929NvjzBS5rg", "stars": 4, "date": "2009-05-03", "text": "I love the Lost Leaf for not ony becuase it's cool and hip, but because I am always made to feel welcome and relaxed - as I am not that cool or hip. The crowd varies, but I like to go on Sunday night and listen to Jazz. They have had some great bands there and I like how they prefer the local talent - the artists, the musicians, and the bevies.\n\nThere is no food, which is really sad. I wish they had packaged food to nosh on, or took the approach that SideBar did wtih the package nosh (hummus and chips, etc.) Too bad.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VW1zLVadNrWZgYBCueSFow", "review_id": "9HL3yiYKoO2hI8K8yB4GyA", "stars": 5, "date": "2009-07-08", "text": "So my coworkers and I decide we want donuts on a Weds. I know typically donuts are on Fridays but what the hay. In my search for a really good donut I go to the Internet and Google \"best donuts\" and low and behold Bosa Donuts comes up. They have 3 locations, and the one in Chandler has 12 reviews, which all raved about how great Bosa Donuts were. So I notice they have a location at 35th Ave and Glendale! I had seen it many times but never stopped in thinking it was just the average run of the mill donut shop. Boy was I wrong! \nBosa Donuts is by far the best donut I have had in a very long time, maybe ever! I stopped by for a dozen this morning and bought a little something special for myself. I got to the car and took one bite and was in heaven. The what I would call a Cinnamon Fry with crumb topping was to die for. What I liked the most was it was not greasy like some other donut shops. (I won't mention any names, you know who you are!) Lightly crisp on the outside and so tender on the inside. The crumb topping was just the icing on the cake. It was all I could do not stop and get some milk so I could utterly devour the rest of my donut on the way to work. I did have a bite of an Apple Fitter after getting to work and it was very yummy too. They have many varieties and some wonderfully looking croissants too. If you have not tried Bosa Donuts in Phoenix you are missing out!", "type": "review", "business_id": "DWvglLKvpKGyQOiVgGEPGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_6seymnSl8rS-pw801ENAg", "review_id": "edBjosp0Rk9qM1M5Vwlj7g", "stars": 4, "date": "2012-12-26", "text": "I purchased the introductory groupon they offered a few weeks ago, and was hesitant at first because I haven't had the greatest experiences using groupons. I was pleasantly surprised.\n\nI did look at some of the bad yelp reviews before going in, which made me nervous! So for those of you that only look at bad reviews, I hope you see this one and have a little more hope.\n\nI had a stylist named Annie, she had pink hair. Super friendly, and really appeared to want to get my style right. Since I had read bad reviews before coming in about stylists not listening to the customer when they asked for the curling iron to be used for better curl, I was concerned she would do the same. But, I let her know I was looking for good curl, and with thin/straight hair, it can be tricky to achieve. She attempted to curl with just the round brush and hair dryer first, and when she was \"impressed by her curling abilities with a round brush,\" she was \"equally impressed with my hair's inability to hold a curl.\" So she broke out the curling iron!\n\nWe made great small talk, and I let her know I would be back in a month when I go out to celebrate my birthday.\n\nThe salon is a fun, well-decorated environment. It was pretty loud with the hair dryers going, but not terrible. The less than perfect rating was that I saw people with mimosas/champagne, and while I had been offered something to drink, I figured I could just choose water or coffee, as that is usually is what at hair salons, I wasn't informed of my choices by the front desk staff. Now I know for next time to ask for some bubbly!\n\nAnother good tip is to plan for longer than 45 minutes if you are planning to do a style with curls. While I got started on my appointment about 5-10 minutes late, I was there for 1 hour (and I dont have super long, thick hair that takes a great deal of time).\n\nI will be back in January for my 25th birthday night!", "type": "review", "business_id": "LcAamvosJu0bcPgEVF-9sQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Qq_sUGEwyvG2vv6cJC0Zrg", "review_id": "ZMYqCMQL9xPjY7ygu2X3XQ", "stars": 5, "date": "2011-03-08", "text": "Papago has a great beer selection & awesome food. Try the Orange Blossom!!", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "rqVuVVQezQ6S_Fzaxf4Y6g", "stars": 4, "date": "2008-02-27", "text": "One of my lunchtime favorites -- a great bar menu under $10 (steak, shrimp, Italian sausage, etc) with good quality food and prompt service. \n\nFun place to have drinks at happy hour. Plus, they have a nice traditional dining room for dinner. \n\nThe bar area is always DARK (how it should be).", "type": "review", "business_id": "fPExBO1aXA5c4uwlHFyx2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NM09MXHEGiyK-cjyk1wiIg", "review_id": "EdZuhjeGmZAOeTaBJSDPUQ", "stars": 5, "date": "2009-02-23", "text": "YUM!\n\nI can never remember what it is, but order the salad thing on pita bread! It will change your life! My co-workers and I would always go in here and share one of those and then we'd each get a slice of pizza. Perfect amount of food- low prices- never too/disgustingly full. Their bilinis are wonderful as well!", "type": "review", "business_id": "oqQvCiG9FDbIdr6M4yen5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Jxc55V4D3iHAataiLpylDg", "review_id": "XDPXwd7STgbIPP4qAiEngw", "stars": 5, "date": "2011-11-30", "text": "Best Italian restaurant in the valley, as far as I'm concerned. Totally unassuming from the outside since it's in a strip center on 64th St. & Greenway (in the same center as Fry's and McDonalds). But this family run restaurant that has been here for years. Same friendly staff every time...especially love being in the bar area. A little on the pricey side, but definitely worth it. Must try the ravioli (either as an appetizer or main dish) and chicken Marsala with fettuccine Alfredo on the side. All entrees come with soup or salad.", "type": "review", "business_id": "gHKB66up5VluCWT4vuSZpw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cyWeHMyFKzhVJpb_kqtzsw", "review_id": "dW_qFUfUZpv3cp5DqfvKcA", "stars": 5, "date": "2012-02-27", "text": "Yelpers, have a question. If menus and prices vary by location, help this CA transplant figure out the best ones to try! Thanks, I've heard such good things about Sonic but have only been to the Anaheim and Hemet, CA ones while visiting.", "type": "review", "business_id": "po5FyERB4lUZNnBIwnhFlg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZFumpo95KdVjPkImxzSqVA", "review_id": "HZ4X7H0udSHqIHRUsjtHag", "stars": 3, "date": "2012-07-23", "text": "Descent food, of course it's not autentico. Free chips, salsa, & wifi though.", "type": "review", "business_id": "WM8sy8FjrU3PpxN_NI02ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "eBwBjylS66qPcHs2_ajLag", "review_id": "Rymd7AkDJPKevlqmPPMYOA", "stars": 4, "date": "2009-11-22", "text": "Scale of 1-10 (single visit):\n8 Food\n9 Service\n9 Atmosphere\n7 Value", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGYaT5sAuqKkd48dqX_2Kw", "review_id": "0nc87fm121sNx3-H5htBUg", "stars": 4, "date": "2010-03-03", "text": "Cheesy, beefy, greasy GREATNESS. \n \nThe burgers are made as you watch.. Sit at the bar and watch the grill cook (who also is the server, bartender, and cashier) grab a nice fat ball of ground and pound it out on the grill to make your one of a kind patty. NEXT comes the wine onto the grill and the patty... which gives the place it's name. Finish it off with a fat layers of veggis.\n\nPair this with some jalapeno bottle caps and a pint of draft, and your in BUSINESS!!!\n\nDon't mind the dingy early 70s decor....it is character.\n\nThe only negative...you will be jogging for weeks to drop those calories...a very guilty pleasure.", "type": "review", "business_id": "CNvPqN9pa5aJRn-Npcqgdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7W4egS-WyR0hRHMfQtPEOQ", "review_id": "WNfddsdJW2u3Cd9Mq06SEg", "stars": 5, "date": "2012-08-23", "text": "May I add \"family friendly\" to my past reviews? We love this place because we feel like we are home when we come here. The staff is kind and they always welcome us with open arms. The manager, Kaj, literally treats us like family. We brought our new born baby to Corbin's for her first meal out, and we were thrilled with the level of service we received, as usual. The food is excellent, and the service is divine. The happy hour is awesome! My favorite items are the quesedillas, burgers, feta and hot sauced topped homemade potato chip appetizer, and the excellent selection of beers. Corbins is just an overall great place!", "type": "review", "business_id": "UScgPn6pIHuOmQJTsZQIOg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "0XLDiFIZcO-Gm-Pv2smoSQ", "stars": 2, "date": "2011-05-14", "text": "My bf and I drove in from \"the city\" lol and met some friends here for brunch. We didnt have to wait long to get seated which was great. The waitress came and took our drink order and right away she didnt seem too thrilled. So I ordered an omelet and asked for turkey sausage instead of the toast or pancakes it came with, she looked at me like I was asking for a cure to cancer and proceeded to tell me that I would have to be charged full-price. Well duh, I kinda figured and since I asked it was probably ok. Needless to say, we waited 30 mins to get our food, which we had to ask her for. My omelet was cold, I didnt get the turkey sausage I had ordered but she did add it to the check. Thank god we had a groupon or else it would have been a total loss. The Breakfast Club in Old Town is better!", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "6uNeagh9ljbwV8XRUn_cYA", "review_id": "VYMhaQ4y3ZIjii43ntmdsA", "stars": 3, "date": "2008-11-07", "text": "While throwing a small get together, we were able to have a back patio with a buffet style table set up with some pretty tasty appetizers. The chicken sqewers were delicious and smoked salmon was also tasty but something seemed to lack. At the end of the day it was good and I wouldn't hesitate to go back, but nothing to make me a raving fan.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "NLrBhZojW5ink7eN1GrcGg", "review_id": "PUi38ibCuXQ9XGtZTsEMFQ", "stars": 3, "date": "2011-03-30", "text": "E-Z Buffet is a Chinese buffet that recently opened in my neighborhood. \n\nIt was about $10 for dinner . The place had a bunch of tables so seating was easy. You can also get take out.\n\nThey have a lot of food to choose from, typical Chinese fare plus sushi, fried chicken wings, roast beef, salad fixings, pudding & fruit. They also had ice cream for desert, not soft serve but hard ice cream. \n\nI like the General Tso's Chicken, Scallion Pork and their freshly steamed green beans. I loved their rocky road ice cream. \n\nThe wait staff was prompt and friendly. I really liked that.\n\nThis place is worth trying. If you go please write a review. I'd love to know what others think.", "type": "review", "business_id": "DuaoskPAVBV55px_cwxIVw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "3WiXbvYkrMHNFm1TauSKiA", "stars": 3, "date": "2011-05-05", "text": "I always feel a sense of guilt having to write a less than stellar review after meeting the owner of a restaurant. \n\nLucia was Beautiful and sweet, and a pleasure to meet, my lunch, however, was not fit to eat. \n\nI ordered the THE HUMM-DINGER VEGAN WRAP: Roasted artichoke, zucchini, red bell pepper, onion, fresh spinach and hummus with a balsamic reduction drizzle, with a side of fruit and the sun dried tomato wrap. \n\nNotice it says \"Roasted\", the cashier told me the Veggies were \"Grilled\". Unfortunately, to my dismay, they were neither. \n\nEverything inside was heated up, by either stove or microwave, I'd guess the latter, and the \"Sun Dried Tomato Wrap\" was thin, doughy and utterly flavorless, not to mention a shocking pink color, which I'm sure was due to being naturally colored with beet juice, but did not help make things anymore appetizing. The fruit was a soggy pile of your typical pre-cut cantaloupe, honey dew mix. \n\nIt was not what I was expecting AT ALL, when I think of a grilled veggie wrap, I imagine tasting all those veggies bursting with flavor after caramelizing on the grill, they had no flavor though. I also did not expect the temperature to be Hot, chilled would have been better in my opinion if the veggies had actually bee grilled that is. \n\nThis lunch to me was less than average and as I sat there will my full plate in front of me I was asked how my meal was, I clearly stated my concerns as I have here and was simply told that it was a \"Best Seller\". \n\nLucia did send over a piece of chocolate cake, which was appreciated, but unfortunately missed the mark since I'm Vegan and the desserts aren't. \n\nHonestly, in my opinion, aside from the market, most of the menu items are anything but healthy. \n\nThe 3 stars is for the market, my food would have been 1.\n\nAnd that folks is why I am the Lunch Snob!", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GdekSs5TvIHIe3157aOx3A", "review_id": "aEUcD9yBM11dUSrEhdzTDA", "stars": 5, "date": "2011-09-07", "text": "I was extremely happy that we chose Cool Cuts 4 Kids for my son's first big boy hair cut. He was instantly comfortable and drawn in by all of the friendly things they have for children. He was given the choice of a movie or playing a video game, of course knowing exactly what he wants went straight for the video game (Sonic on XBOX). It was pretty much a breeze from that point the little guy was hypnotized and didn't even realize what was going on w/ his beautiful, lovely long hair =( obviously they need to focus on distracting the mom's lol! Jessie who cut my sons long hair was a doll, she didn't seem to be bothered by the mother breathing down her neck as she hacked off my little's hair or the boyfriend taking a copious amount of pictures and video of the whole event. In the end my son looked great and I was a happy mama, I couldn't have asked for a better experience.", "type": "review", "business_id": "YDyN11CdbO0ZwTlPwa5KnA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qQns9dP75RNOWOVWI_ZKZw", "review_id": "5Pc6vYDAD_apWMAT1mpjGQ", "stars": 4, "date": "2012-11-12", "text": "I have stopped in here for lunch and drinks a few times now. The teriyaki beef/chicken and bulgolgi have great flavor (I prefer the spicy versions). Their bowl meals come with plenty of meat and rice, while the bento meals also come with macaroni and slaw. These are affordable dishes and excellent for a lunch of easy take-out dinner. In addition, the meals are big enough that two people could split one.\n\nThe other item that I really like here is the boba. The milk tea and Thai iced tea both have a nice tea flavor and are not overly sweet like some places. Hence, it's also a nice place to pass by for a drink.", "type": "review", "business_id": "OmJ283Un9mAbr_gc7v4N4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "vZogScun_jFpoIEbAOAqFw", "review_id": "ypWJ8P_xar8yvpVbmdRmNQ", "stars": 5, "date": "2008-11-13", "text": "Amanda at Butterfly Petals did the flowers for my wedding. I didnt want to spend a lot on them and shaved it down to only needing my bouquet, three boutonnieres and two corsages. I told her what I liked and didnt and my budget. She created a bunch of options for me based on my specifics so I had a number of choices. She also did all of this via email. which I give her total kudos for. \n\nOn the day of my wedding, there was a fabulous bouquet waiting for me as well as perfect corsages and boutonnieres for my groom and our parents. Amanda waited for me, even though I was terribly late, to make sure I was happy with her creations which really gave a personal touch.\n\nButterfly Petals is creative and affordable. I love my bouquet so much that I ended up keeping it and I am having it preserved!", "type": "review", "business_id": "bD3-686wN4ZApuDVXyTtGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r0nKFYzoSTBeD1f3qfBchg", "review_id": "qh4NX1gErJDLdnauYpUS6Q", "stars": 4, "date": "2010-07-25", "text": "It's like Paradise Bakery but with a more diverse and far better menu.", "type": "review", "business_id": "aBjWR-Mol58GMsRAdz2Tjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pV7C6w6rQLYl7BS9-J8cUA", "review_id": "RnhBH0hGPB9dBXP0BQAYBw", "stars": 5, "date": "2011-03-05", "text": "I loved this casual dining experience at the gorgeous Phoenician. I stopped in for happy hour with some friends, and we had a great time. We sat in front of the fireplace and sipped beers over appetizers. The location alone is worth going for, but the food was good and service was even better.", "type": "review", "business_id": "BO_TJFFJyXu8i2rW83hG3g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "4b5vmez0wDoAT4dn4VRuLA", "stars": 4, "date": "2011-08-24", "text": "luckily, i've only had to take my truck in for service once and had no issues with service or quality. it is always expensive to have something auto related repaired....wish i would've paid more attention during shop class in high school, but oh well...i can't be good at EVERYTHING.\n\nfriendly staff. they called a few times to make sure i wanted them to proceed with repairs and had my truck done in a few hours.", "type": "review", "business_id": "UEdKDUGcvXzR-0_Ow9K2Vg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ez3AXTDwueKEwwx3-8qJDw", "review_id": "ml6v9xaaZEDoDrD8xQakIg", "stars": 4, "date": "2010-12-30", "text": "AMAZING! This is the first time I ever got what I ordered!!!!! 140 degree grande peppermint latte! WOWZA! YIPPEE! Though the staff did not seemed thrilled to be there or had any sort of personality-it didn't matter because my drink was perfect:) FYI-this was the location outside of the B security check-point.", "type": "review", "business_id": "N1Dq9PyY1jDQdZcX4u8oFg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "DulkTT5d5KcSqYZAObP4-w", "stars": 4, "date": "2007-11-28", "text": "I had to chime in for JOT-C (yep, that's what I call it) because I know it very well, and it's gotten an unjustified bad rap from other Yelpers so far. I've eaten here for over a decade. I've brought friends, college classmates, relatives, and dates here. I lost my dad 3 years ago and I have fond memories of dining here with him. I distinctly remember spilling a Coke all over myself the first time I brought him here. I also remember coming here on my very last day of law school, with a bunch of classmates from Employment Law. The folks here have seen their share of special occasions in my life. Wouldn't be true if this were truly just a 2 star experience. \n\nI don't think it's fair to nail a restaurant with a bad review based on only a single visit, in most circumstances. Restaurants are run by humans, who are allowed to have a bad day now and then. I've eaten here a billion times. Occasionally something has annoyed me. Most of the time the service is prompt. And those things are true of every restaurant I've ever frequented more than once. At JOTC, even if it's not prompt, it has not even once been unfriendly. There is an elderly gentleman waiter in particular who I especially like. A non-Indian friend I came here with once asked him, \"So, what part of India are you from?\" The waiter look back puzzled and said in his typically mild and hushed manner, \"Sir, I am from Mexico City.\" We LOL'd. \n\nIt's #2 on my list of Indian restaurants in the Valley, which is pretty good. Since Tandoori Times is so close by it almost always wins out on a given night, over the past year or so. But the fact remains that JOTC is solidly #2. \n\nThe food is good, by my Indian standards. Samosas: awesome. Chicken tikka masala: very good. I tried the bhindi masala once and that didn't turn out too well. A unique JOTC feature is that dishes are served in very cute, traditional-looking, brass or copper Indian pots. \n\nLittle details like that lead me to say that the decor and atmosphere here probably beat out Tandoori Times and every other Indian place. Simple but elegant, with old Indian art on the walls and cool room dividers thoughtfully placed throughout. The outdoor seating is very pleasant, with heaters to warm you up during winter. The location only adds to the reason to eat here. It's in a cool space next to the Scottsdale Civic Center, a few yards away from AZ 88. It's a solid place to come with a group to eat, drink, and enjoy some good conversation.\n\nJOTC doesn't blow me away (thus only 4 stars), but it needs to be said that if you live in the Valley it is worth at least one visit if you like Indian food, which you wouldn't be able to tell from the other reviews. Judge for yourself.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UHOFZkgIvb8sn3RSPMXMSQ", "review_id": "k9AZS7Qp81c2ub0-2buEjQ", "stars": 4, "date": "2011-04-23", "text": "I had a great experience here and was suprised by how charming and clean the spa is inside, given it is right off of busy rural rd! I had Lana as my manicurist and she gave a GREAT pedicure. I used a coupon from the ASU Insider's book and got a relaxing, hour long and hot stone pedicure for $18. I think the normal price is still around $18...maybe $20 for the cheapest one??!! Lana was super friendly and sweet, and the owner was also very helpful and made me feel comfortable. I will definitely go back here for a gel mani!!", "type": "review", "business_id": "MLPUSpkbWAvr9gJOELKqmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WIp4lzMExKhs3MXfF92mWg", "review_id": "8CUu84mGh8t7GZ-ptY0P_g", "stars": 1, "date": "2012-06-11", "text": "I purchased a pair of Naot Paris sandals ($160 with tax) at The Shoe Mill. I considered buying on-line, but decided to shop locally instead. I ended up paying more, but assumed that I was paying for the superior service. I wore my new shoes to work on Friday. By the end of the day, I had developed blisters on both feet near my toes and my ankles. I was surprised because I had read many reviews stating how comfortable Naot sandals are and the salesman who helped me confirmed that I was buying the correct size. Sadly, I took them back to the store the next day. To my surprise, I was told that The Shoe Mill does not take returns. I have never tried to return shoes, so it didn't occur to me to ask this question when I made the purchase. However, as I stated, I expected full service from a high end shoe store.\nI will no longer shop at The Shoe Mill. It's been three days and my feet are still recovering. It's a constant reminder of how dissatisfied I was with my purchase. I will definitely shop Zappos next time.", "type": "review", "business_id": "eqSSrri7_E0eX296p8Ld5g"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "6uNeagh9ljbwV8XRUn_cYA", "review_id": "H5O3O191XcJWc3Vys4hIiQ", "stars": 5, "date": "2008-10-11", "text": "This place has the best wraps I've ever had. The smoothie's are good as well, but I go here because of the wraps.", "type": "review", "business_id": "LMjl-bvnCZKhMrc2OT9ptg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tXhlRAnR3_GoWvewfQni4Q", "review_id": "dI0OhAIYgWjkO_EwI1qL9Q", "stars": 5, "date": "2012-11-16", "text": "I stopped by a Friday morning a few months past and have been meaning to write a review. I've had donuts since then from other donut shops, but none compare to Bosa. The price and quality at Bosa are far superior to all others. You can't go wrong with the donut holes.", "type": "review", "business_id": "Xq1FtLSV54Spf-HfONc1aA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "injbO7hPQcusNziz6gyuIg", "review_id": "vbUI1pHeVTv0VAK2scZl-w", "stars": 5, "date": "2012-06-18", "text": "Amazing place wish i lived in Phx so i could have this EVERYDAY!", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tpOgdsqWcrlFyQSrRIua-g", "review_id": "azyMLujqH6LgAYZwRC90JA", "stars": 5, "date": "2011-10-18", "text": "One of my favorite places to eat if I'm looking for cheap and fast :)", "type": "review", "business_id": "UeWr0eT1KEoMSYwf0vXIKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "5LU-21bimh4DgdEthvf8iQ", "review_id": "ITc9NTB8U_hmY-ht3rrfEw", "stars": 3, "date": "2011-01-22", "text": "Stopped in and tried both their sweet potato fries and zucchini fries. Much fonder of the sweet potatoes & the others were a little heavy?! Like previous posts I was not to fond of their dipping sauces either.\n\nLoved their freshly prepared lemonade and the great outside spot to people watch!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ASenO-NcZyEoJJw_aO7C7A", "review_id": "N4dWz-SCUPan0eaNYzvVlw", "stars": 5, "date": "2010-02-25", "text": "I love this place. Just to hang out on a Summer day on the patio and have a beer is like...the perfect day. \n\nThe food is awesome. The Kilt Lifter is tasty and thirst quenching. \n\nThe area is definitely lucky to have such a place.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "Rx1YEuOcfclyg7OHnhJkwg", "review_id": "lqTl1i4uq09N2SajtR6nOQ", "stars": 1, "date": "2011-07-07", "text": "Once again, THE TROUGH SLURPERS offer far too many stars to this mundane eatery, proving again that they are truly CANAILLE of the first order.:\nSlow indifferent service\nMediocre food\nThe kind of wine that patrons of kokopelli swill with delight, calling it ambrosia when it's actually dishwater.\nBut..as with Kokopelli, it keeps the shit eaters out of the better restaurants! So, I say to you canaille..flock, flock there with your disruptive screaming children and your leathery palates.", "type": "review", "business_id": "2rMf09C5uXzF2qIlD5F5BA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "sPEFql7fLp0oouFxnooGpQ", "review_id": "Za_JNArZ2ix644LMTwh-YQ", "stars": 4, "date": "2011-10-13", "text": "Like many before me, I am trying to be sure to review only the venue itself. I appreciate Gammage for what it brings to the Valley. The arts don't have a huge presence here but this theater brings a little bit of Broadway to the dry, Arizona desert. They typically line up seasons that have something for everybody which makes an evening show now and then almost impossible to resist. \n\nThe building itself is older and does not have an elevator--meaning that anyone who has a physical disability which renders them unable to climb stairs, must buy tickets on the orchestra level. Out of the many shows I have attended here, there have been frequent issues with the sound system...disappointing when you are sitting further than 5 rows from the stage. \n\nHowever, being that this is the only stage in AZ that houses big traveling productions, I can't complain too much and will continue to be a patron here. Looking forward to the rest of this season!", "type": "review", "business_id": "ohxd8La86GdC_3vgwBWLHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DhmTnRzhuzOLgo_RdQcYtA", "review_id": "TVKXYYKMf1hTyZfjbH6exQ", "stars": 5, "date": "2011-09-16", "text": "Yes... I love Eegee's... I have to admit it could be a bit of a problem for me as I drove from Chandler to Casa Grande just for an eegee and sammich in the worse rush hour traffic. If that isn't love I don't know what is because we all know Arizona drivers are ... well you know. I always get the pina colda mixed with lemon eegee and a grinder / or turkey sub and don't forget the ranch fries! The one is Casa Grande is new and clean not that I can say the same for the ones in Tucson.", "type": "review", "business_id": "Nc2TtVj6py6dHH_XdWAKRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0VfJi9Au0rVFVnPKcJpt3Q", "review_id": "z7y85mjtSoG9TNheBe6sSQ", "stars": 4, "date": "2010-09-10", "text": "Unbelievable ahi. Service was adequate. Mood and ambiance was good. Background music was nice. Will go again sometime.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "hq0WUfau1Mh3GyHn8oVdNQ", "review_id": "GMm0xFMRArZX7lztrWPG8Q", "stars": 4, "date": "2009-07-01", "text": "One of my new favorite neighborhood bars! \n\nWe had a Canada Day shindig here and it's a great little neighborhood bar with fair drink prices and super friendly bar staff. You'd never know that there's a bar inside when you get to the parking lot behind the Ice Rink - just look for the signs on the top of the building. \n\nThey have lots of TVs for hockey fans and the bar looks right out onto the ice so you can watch people skate. They had a great jukebox and the Rockband kit so you can rock out with all your newest bar friends. \n\nFor food selection you have BBQ, BBQ, or BBQ...either beef, pork, or chicken, with a side for $6.50. Tasty stuff! Great beer selection including Molson Canadian or Labatt Blue.", "type": "review", "business_id": "yb17xHvhDJthJGS10uhFeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X74iDW0yAiEUEQzmWK39pg", "review_id": "imuDixqyVx3hZc6VSM0f3A", "stars": 3, "date": "2010-06-05", "text": "Yelp pointed me to this place while on a business trip-- looking for good pizza in the area. Kind of a mixed result. The restaurant is located in a strip mall, sort of hidden in one of the back corners. Walk in thinking fast food, but turns out it's sit down. Why does it seem all the burger and pizza joints in this area are sit down-- odd... Anyway, I got three slices. Quality was ok-- a bit doughy and filling, I couldn't make it through all three. Lots of free refills was a nice touch on a 105 degree day. Staff were really friendly, and, oh yeah-- it was cheap! Less than 6 bucks for more pizza than I could eat and bottomless coke. So, great value, nice service, just ok pizza, though.", "type": "review", "business_id": "TqHTtjPANCBKGsjGBjDoQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qa05pUVNapADHZXpHMPMeA", "review_id": "an5Jl49Z_dFDjxsL26s01w", "stars": 4, "date": "2011-05-03", "text": "Canteen is my new favorite happy hour spot. You can get two orders of wonderful pork and habanero tacos, two orders of their tender ribs, an order of quite good chips and guacamole and a couple of margaritas for around twenty bucks, it's amazing. Add in the cool atmosphere and HUGE selection of tequilas(all half off during happy hour) and you have a recipe for success. Canteen is a very welcome addition to Mill Ave, and while it can get very loud, you simply cannot go wrong during happy hour.", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "7zJeiY6YGosO7jakhlK91A", "review_id": "Xuw4BQM95mEm9Hy0Gl4MtA", "stars": 2, "date": "2008-09-21", "text": "This place is great - IF YOU LIKE TO BE IN A SNOBBY ENVIRONMENT! There are not too many places that I've been to that are more hype than anything. But this is one of them. When you try to go to THE PINK TACO, it's impossible to find a parking space. Once you make your way to the front, the hostess is always too busy texting her friends than interested in helping the customer!! If you are lucky enough to find a seat at the bar, you better have a rolex watch on or you will not be served quickly. Either that, or you better be a Hugh Heffner spouse. I tried the burrito and was grossed out by how rubbery it was.", "type": "review", "business_id": "erBoatMp1TFi_NPxTigp6w"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "6G8vLJUi1Ees2qC3RGA3Nw", "review_id": "oQ3ZMhZD9C4VF6DKX3gkpg", "stars": 4, "date": "2010-01-11", "text": "Okay, it almost seems a shame to burst the bubble of the positive reviews of this place, but I just have to. \n\nI'm not an Indian food expert, but I am a serious enthusiast and I've eaten at dozens of Indian places on three continents, not to mention my family being from the vicinity of that area of the world and therefore having grown up on curry and rice and all things spice.\n\nWe went here for lunch yesterday (Sunday), thanks to a Yelp/Aloqa recommendation after we'd had a romp at Estrella Mountain Park and were starving. The place was almost deserted at 1pm, with only one other table occupied - fair enough. We went for the buffet. And I have to say, it was simply \"okay\". The buffet didn't have a particularly wide variety of stuff - several items were cheap regulars such as the saag and the dhal - spinach and lentils for the uninitiated. They did have aloo zucchini, never seen that before - tasted okay, about as good as I'd have been able to make it (and that's actually not a compliment). No lamb dishes - disappointing, but unfortunately this is also rare.\n\nFlavorwise, I found it boring and unspectacular. Saag is saag, tandoori chicken is tandoori chicken, except their chicken was very light on the tandoori smoke flavour. None of the food left the slight zing on my tongue that it should have. Rice was okay, but then you typically can't go wrong with cooking basmati (although another reviewer's mileage apparently differed on this count). We had our almost-3-year-old along and he did have a little rice, chicken and beef - it was his first real curry and thus a pretty substantial milestone for us. Then the wife went to get a little kheer and a gulab jamun ball. The kheer was watery but tasted okay - compared unfavourably to the sabudaana kheer at India Palace. The jamun ball was almost completely solid - you had to press real hard with a fork to cut it, normally they're nice and soft and soaked. However, another one I got was normal - so it was just the luck of the draw there. Beef curry was nice, although the first piece I ate was mainly fat - whatever, you get that and I don't mind it. The fried pakoras can normally be cut through with a fork. These you had to saw through with a knife - not great, chewy to the point of almost being crunchy. No samosas in the buffet. The naan was unusual. I've had a LOT of naan before and this stuff was the uncommon kind, not thick and pita-ey but instead a little more like a roti. It tasted very fresh - we had plain and also garlic - and the wife really liked it. Kid did too. I personally prefer the other sort of naan - softer and a little more substance to it, but this one had merit regardless. However, it took at least fifteen minutes after our food was served before the naan arrived.\n\nAll up, middle of the road as far as I'm concerned, although the wife quite liked it. Note that this is for the buffet only - we did not have a-la-carte and perhaps the to-order cooked food may have tasted better. I've had better buffets - the best one in Phoenix west of the 17 IMO is India Palace - a wider variety, a lot busier (as a result, I'm sure) and more flavourful food. Admittedly, I haven't tried any other Indian places south of Bell but west of the 17 except for Sutra. Bell appears to have most of them?\n\nI would normally have given this place a flat three stars, but I'm going to give it an extra half and round up for a few reasons. Firstly, the waiter was real nice and very attentive - up to the standard of a typical US chain place, rather than the silent wanderers with the Easter Island statue facial expressions at other buffets who do no more than refill your water and clear your dirty dishes every fifteen minutes or so. He was asking us how we were doing, offered refills of my wife's iced tea at appropriate times etc. Spot on. Next, there's a buffet discount where all kids under 10 are $5 - however, we noticed that they appropriately knocked the price down to $3.50 for us, unbidden and I guess for the simple reason that he was set up in a high chair and obviously only ate 1/4 of a breakfast bowl worth of food in total. Third, the place had nice decor (although I was a bit concerned there were no tablecloths, with my kid banging his plastic sippy cup and spilling sh1t all over the tabletop) and thankfully they didn't have sh1tapple wudda-wudda-waa-waa pretentious bhangra muzak playing in a cheap attempt at making you feel like you're actually in India.\n\nI'd eat here again, but only if I'm in the area and DYING for Indian food. It simply didn't measure up, either buffet-wise or flavour-wise. For first-timers, I can see how they would have enjoyed the experience - clean seating area, Americanized flavours and a good waiter. My experience, however, has been burned in over almost four decades and I've kicked the tyres of more cuisines from this area of the world than I can recount, especially Indian. Three and a half, rounded up to four, Seacrest out.", "type": "review", "business_id": "PsKAMRgeydy54ytW8xWKCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UwD8Ho0PsEwxthdxrCrewQ", "review_id": "H71I6Rjyaegqxwz81hJG8Q", "stars": 3, "date": "2010-05-02", "text": "I will say that the weakest link in this restaurant is the maturity of the staff. We went for lunch and asked to sit on the patio. Most of the people we're eating but then they sat a large group right next to us that only wanted to drink and smoke. I know smoking it allowed on the patio but since it wasn't the only table available AND the rest of us we're eating food I think they should have sat them a little farther away from us.\nOur order wasn't right but couldn't get the server to come back so we just let it go. The food was great! Had a few items from the small plates and then we had the bacon grilled cheese and the chicken sandwich. Both very good. \nMy biggest complaint is that we we're ignored unless we we're actively looking around for someone and then snagged someone as they walked by. I will try again as this place is still trying to find its way but service needs to be stepped up for sure.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VqSCQCva71Q-ZVcMsYfQuw", "review_id": "pkPCg8x1kiZmOwlEeOJiOQ", "stars": 4, "date": "2011-09-12", "text": "This trip we rented an area over centerfield to have a conference for about 250. We got in the ballpark in the early AM with the intent to stay for the game as we had a separate suite for this. \n\nIt drizzled a bit, so the roof was open for much of the day, though temperatures we over 100. Walking around an empty ballpark makes you appreciate the size of Chase. Groundskeepers moved and massaged dirt all day as their #1 DBacks appear to be playoff bound. Who would have thought?\n\nThe catering service was excellent and finally at game time we enjoyed watching the DBacks come from behind to beat the Padres. The suites above centerfield have poor visibility because of the size of the ball park. \n\nEnjoyable, but get me the box seats else I can't watch baseball from the nosebleed area.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "Z_BCiHEYUlNtuBjg6AJ-Sw", "stars": 4, "date": "2011-12-01", "text": "Super friendly staff and smoothies come out so fast...delicious too!", "type": "review", "business_id": "a5N-FJqNPOmhoTV5JkQrww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "66tWp8ThwPATFUxYNPyYLw", "review_id": "Qm5zYFafWu9u2nD3HJHOuA", "stars": 4, "date": "2009-12-05", "text": "I was a little hesitant of Zipps when we pulled in - didn't look from the outside like it would offer an awesome time. Walking in around 7 on a Friday night revealed a place that was almost full. We chose to sit on the chilly patio, which did have a couple of heaters. The heaters were a little high up and less effective, but it was also one of the coldest nights this year. \n\nService was fast and friendly, we never ran out of beer. I got the BLT on Sourdough, and so did my friend, her husband got the Black and Blue Burger. The fries were good, but not as crispy as I like. The flavor was great and I ended up eating all of them. The BLT was awesome! Tons of crispy bacon, and they cut it so that you were able to eat the sandwich without bacon attacking you. The sourdough bread was thick cut and lightly toasted.\n\nThe burger was a little less than we expected - 2 nice size patties, but the blue cheese could have been done a little better, and it was very messy. The onion rings were nice sized and with great, fluffy breading on them.\n\nThe on tap beer list was a little heavy on the cheap domestics for my taste, but they did have an Alaskan Amber that went great with the food.\n\nWe were able to sit and talk for several hours, and the server made sure that we always had what we needed.", "type": "review", "business_id": "AMwr-IwwaamJ2l3Z8yce6Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "83wSOjFAUrSS98jygNAldg", "review_id": "h5MjXLjDEwBh9_ZL3d5KNA", "stars": 1, "date": "2012-08-18", "text": "I used to go here at least 3 times a week for Happy hour. The volcano chicken was my favorite meal. However, the last time I was in there I had a cricket in my water. I took a sip squeezed the lemon, and thought there was something wrong with the taste. I checked and at first thought it was a lemon seed but no, sure enough it was a cricket (in which i took a picture). The way this restaurant handled an insect in my water was repulsive. One of the male bartenders came over and brought a new water saying, \"It happens.\" No, sorry that's disgusting. If i hadn't been craving the volcano chicken I went there for I would have just left. And then on top of getting a cricket in my water there's no discount or compensation off of my bill.", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LJPvRgTZWHlwpaYBauOOkw", "review_id": "sphsn_-28eMd7lXvgtL0xw", "stars": 2, "date": "2009-12-21", "text": "the broth was too sweet for me. perhaps just personal taste though.", "type": "review", "business_id": "dipzJ5BExpm6BtJ91mXd4Q"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "O0AiwfWBTy9BcpJtCQweTA", "stars": 4, "date": "2010-02-23", "text": "This is a beautiful store. Its huge and spacious. The workers are friendly and helpful. You can't go wrong with cute, nerdy boys who help you fix things! :]", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 1, "useful": 5, "cool": 0}, "user_id": "2Zd3Xy8hUVmZkNg7RyNjhg", "review_id": "gDaookcsy_UR-8xUe8G0zA", "stars": 1, "date": "2011-06-27", "text": "I went here with Friends last Friday. All my friends and I use Yelp, at the end of the meal taking cost into perspective we all came to this is a 1 star place. It was a huge disappointment after looking at the positive reviews. Our 1st disappointment came because they had a \"limited\" beer list. My good buddy just wanted an IPA and all they had was the normal domestic beers and a few other quality ones. Then, the Spanish ham was not very good and once you take into account the price it was terrible. We had a sausage plate where the sausage was dry. The Calamari was extremely oily. The only positive thing was the lamb chops but once you factor in price that was poor too. We all came to the conclusion we would never go back.", "type": "review", "business_id": "sjCRI-lCh4KLO_RYQdlEeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hebXGQk5ggZSwTlUoEcTWQ", "review_id": "eDruO8J72RtZsW3yKSZCOg", "stars": 5, "date": "2010-08-23", "text": "Totally worth the drive from Scottsdale. The food is delicious, and is not pre-packaged, such a nice change for a coffee joint. Support local business, Starbucks has nothing on Lux; other than a million locations.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sQTvI2N_WT5m60ZUbTMCMQ", "review_id": "n1z0SyoHoPXBbJxOqSwtgw", "stars": 4, "date": "2010-11-06", "text": "Perfect patio for a Saturday!\n\nThis place walks a fine line between being too snooty and being just plain awesome. I've had a couple of experiences here, and overall the food is really tasty. I'm a fan of the gnocchi, even though it's a little different than traditional gnocchi.\nThe location is great, as long as there isn't a douche bag convention going on, and as long as the bartenders and servers keep their positive attitudes, I think this place will be around for a while. Thanks!", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Yoa2y89jR7tAnWRLSDca7Q", "review_id": "EZNnS44Ffk11dC_Tl1XGvA", "stars": 4, "date": "2012-06-15", "text": "Like every other Trader Joe's, this one also has a wide variety of products, extremely nice and helpful staff, and provides a great overall grocery shopping experience. I'll echo what someone below me said - their cilantro jalapeno hummus is the bomb, you have to try it! \n\nOne frustration is that I can never seem to find any handmade flour tortillas. Only handmade wheat tortillas...and anyone who has ever had Joe's handmade flour tortillas know that they are phenomenal for grocery stores! \n\nPick up some wine on your way out! There's always new ones to try out.", "type": "review", "business_id": "Rg2IrML03E10C2R5A9d9OQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oexyVjQSZ62qT7tpxgOcKg", "review_id": "MD9uv37WiXXXyh3sTWbAWA", "stars": 3, "date": "2012-01-12", "text": "Lately, I've been on the hunt for a good shrimp po boy. I'm not sure if this compulsion was spurred by homesickness for New Orleans, the food challenge show featuring 2 famous NOLA po boy joints, or both but I've it seems the last few weekends I've found myself dreaming of that crusty bread \"dressed\" with lettuce, tomato, and mayo, and golden deep fried gulf shrimp. I happened to notice Baby K's one day and decided to try it out. To be honest, I wasn't even really that hungry but I wanted the po boy and I didn't know when or if I'd have the opportunity to go back to Town and Country mall any time in the near future. The inside was empty but they have a French\nQuarter-esque patio complete with wrought iron fence. The bf and I both ordered the half pb with a cup of gumbo. I'm a bit of a gumbo snob bc I feel I can make it better than any restaurant can but theirs was really good! They had 3 different kinds which was nice and it was seasoned perfectly. There wasn't a bite that didn't have meat in and the broth was just right. The shrimp on the pb was succulent and almost tasted as if it was battered in beignet mix as the fried was light and airy. I didn't indulge in any libations but they do have Abita and a few other New Orleans beer classics. If I find myself in the area again I'd probably go back but this time I'm ordering a whole po boy!", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "dpnlV37wmNjA-0v9BP41Gw", "stars": 3, "date": "2011-03-09", "text": "Met some friends here for happy hour the other day. This is the old El Paso BBQ and they did a knockout job with the remodel. Great feel and warm colors to the place now.\n\nI had a couple of Coronas and some chips and guacamole. The regular menu looks better than the happy hour menu and think I'll try them the next time for lunch or dinner.", "type": "review", "business_id": "VKNl2-aF4n1x7lPVyU-Mag"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "p7dvahRPZIWL7T6pFA_0dg", "review_id": "9Jcxcm6noFZfl2RfoWRyQQ", "stars": 5, "date": "2012-01-21", "text": "The management thanked me profusely for my input on Yelp and graciously invited me to return as a guest to show me the true Latilla Experience. I was told changes have been made because of reading my YELP review.The changes are that dinner portions are more ample than before, the appetizer plate share charge is gone now and I noticed the web site has been updated. This visit showed little resemblance to the service I had last time. A full staff was on with staff working in sync as a team with all the tables not just mine.\n\nI was even more blown away with the food than the last time due to perhaps I picked foods that were more suiting to me some highs were-\n\nBeet salad- it was similar to others I had in other places but this one also had HOUSE GROWN BEETS ,Riesling soaked pears and the toasted hazelnuts made the salad pop with flavor. \n\nForaged mushroom rissotto-correctally made with a depth of flavor, it was good on it's own but this had an added embellishment of a SIXTY TWO DEGREE duck egg. \n\nNicely seasoned and prepared fresh branzino sat on top of ribbon cut caponata, an unusual surprise was the vinaigrette and the ribbon cut string less celery that was very good. \n\nWe also enjoyed the Kobe Flap steak with wine reduction and tiny marble size multi color potatoes and tasty spinach.\n\nSince we skipped the interesting desserts last time we had to try one this time and tried the chocolate hazelnut cake with jam-figs and mascarpone gelato this dessert was garnished with a chocolate sort of lavender crisp and roasted hazelnuts. This dessert was something Iron chef worthy for sure with all the flavors working well together.\n\nThe service we had was phenomenal.\n\nThe food at Latilla is masterfully done, the surroundings are majestic and breathtaking. The meal we had wasn't ordinary it was extraordinary!", "type": "review", "business_id": "jdStuaC_1leN_DNGcQ0yEw"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "YoBgKOdfpGH48LpIDSfoQQ", "review_id": "h_PHLbOedibeZkUfdb9IXw", "stars": 5, "date": "2008-03-25", "text": "5 stars for bein the only bar in Phoenix where I was first scared to order a drink. but- thats why I love this place. That, and its near the Trunk Space.", "type": "review", "business_id": "cqIHyZ3Q0D4vBi-vb4mi-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2IbMDQWmzM-kY7bhjS87zw", "review_id": "AHBjuEzhJs0NWZ44rFnVzA", "stars": 5, "date": "2012-07-01", "text": "Lux is a great place for coffee, bakery items, bites, and even cocktails if the occasion permits. The people are friendly, and it has a great atmosphere.\n\nI love coming here in the afternoon for a cup of their Americano, which is pretty damn top-notch. As I don't live in AZ, if I'm going to be away for an extended period of time, I'm always sure to take a bag of their freshly-roasted coffee beans from wherever with me.\n\nI was there last week on a Sunday afternoon having some darn good mimosas with a friend, and it wasn't too crowded.\n\nThe only downside I've experienced is it can be a bit confusing where to order for food and cocktails during the day.\n\nIf you go for the first time, don't be shy. Grab a cup of coffee and explore. As one of the earlier reviewers mentioned, you might get looks walking in like you shouldn't be there. Maybe it's your hair. Maybe you're displaying something that's not eco-friendly. Whatever, dude. Be brave, press on. It's worth it.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AeucYo8J-rZjcq09Wuqsjw", "review_id": "gpx2zQWXvnlYLGnl5i6i-Q", "stars": 5, "date": "2012-02-15", "text": "I was in the middle of a dilemma and needed proof of something faxed to me right away and stopped in here and got what i needed within just five minutes and was outta there and back to what i needed to take care of. The price for two piece of paper for the fax was almost $3, which while is not the cheapest considering you can get it for free at home, but beggars cannot be choosers and was happy to pay it.", "type": "review", "business_id": "KQVOXl91K79PbqAUK74elQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "o2CGc1kQHEFkYOECM3NFdg", "review_id": "T-KRbt7Hjct-CsB9ZUhrpA", "stars": 3, "date": "2012-03-02", "text": "Styles of pizza can be so different. I have a hard time comparing a place like Boombozz to Grimaldi's. At Grimaldi's, they refuse to carry ranch because they don't want people dipping their pizza in it. At Boombozz, they offer ranch as soon as they set down the pizza.\n\nSo no, Boombozz is definitely not the best pizza that I've ever had, but for their style of pizza, they are pretty good. Think traditional Domino's/Papa John's type crust with stepped-up, unique toppings and sauce. My husband said the crust tasted like a cheesy breadstick, and I think that's a pretty accurate description. We got the D'Sienna with an interesting tomato cream sauce, spinach, and tomatoes. The low quality cheese detracted from it overall, but it was still much better than the pizza at Oregano's.\n\nBoombozz is relatively new to town, but they seem to know their crowd well. It was pretty busy when we visited midweek. Big menu, lots of drink specials, TVs everywhere, ample seating... everything a chain restaurant needs to succeed. I'm sure we'll be back when we're eating with finicky family members who are too scared to eat anything ethnic.", "type": "review", "business_id": "k76odRRsXPErPzB0gjn-3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LIl5vcUHRkZlhBS5H5uzdQ", "review_id": "oVzrBaFvDRW-h9I3fxwfZQ", "stars": 5, "date": "2011-01-10", "text": "My mom had purchased a Groupon for this place back in March and yesterday we were all deciding what sounded good for lunch. I suggested Mexican so then we were thinking which Mexican restaurant sounded good. (Living in AZ, you know there's MANY to choose from) So my mom suggested going to Blue Adobe so all of us headed there. \n\nMy mom, my dad, my sister, my nephew, and I all thoroughly enjoyed our meals. I had the Triple Stack of New Mexican style Enchiladas. One shredded beef and two Carne Adovada. It was SO delicious! The red sauce at Blue Adobe is unparalleled and unlike any other. My dad had the Chorizo stuffed Chicken Breast and loved it. My mom had the seafood enchiladas with halibut salmon and shrimp and she inhaled those. And my sister had the Chile Rellenos and couldn't stop saying how tasty they were. And my 5 year old nephew loved his kids cheese enchilada. Our server was named Travis and he was great as well. Phenomenal service. Even if Travis had been sub-par, I would still give this place 5 Stars because that's just how good the food is.", "type": "review", "business_id": "qNoNkF1yJctEs3t40VkX4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mUYZbOJJVvPHaIsiXWjZ1g", "review_id": "R6VKu2LAo_HW71Ruij6BVQ", "stars": 5, "date": "2012-08-11", "text": "This place is excellent. Hands down, the best tacos I've had. Fresh and flavorful meats and great salsas. I see people raving about some of the \"salsa bars\" at all of the 'berto's and such but the salsa there is like water compared to what Tacos Atoyac has to offer. They care about what they are serving and take pride in their craft.\n\nIf you like the style of food here you must try Sonora Mesquite Grill on 46th Street and Thomas.", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "U8ayzBXrBzgjdrCYOzwNOg", "review_id": "TQ3whoVnYXdWmbA1hN8GTQ", "stars": 5, "date": "2009-05-29", "text": "I totally love this place. It reminds me of the old school hardcore Chinese restaurant my parents used to take us when we were kids :D \n\nThe decor is amazing- unlike more Chinese places in Phoenix. The walls are a teal blue, adorned with large carved pieces of artwork depicting scenes in China, golden dragons and more. The lights hanging from the ceiling are amazingly ornate. The place looks like its from a bygone era (doesn't help that its in a run down strip mall) but it is clean and charming inside.\n\nThe service was great- kind to our 2 yo, and very attentive. The food was the best part- I can't remember the last time I had such good Chinese food, and it's priced very reasonably. We got the Peking dinner for 2 which included the fried noodles, hot tea, wonton soup (with generous noodles, meat, shrimp and veggies, the best I've ever had), a pupu platter with eggrolls, bbq skewers, house wings and those cheese puff thingies (the presentation is pretty cool, too). Next came 3 entree sized plates of food: mongolian beef, fried chicken (can't remember the name) and the Peking fried rice. The meal concluded with incredible little desserts- sort of like eggrolls but filled with banana and then covered with crystalized honey. I could have eaten 100 of them! Adding in a beverage and tax, the meal was only $34! \n\nMy 2 yo can really eat, so I am surprised and pleased to say that even with sharing the dinner for 2 people with him, the 3 of us walked out with lots of leftovers. Highly recommended. Do it! DO IT!", "type": "review", "business_id": "lAGDe38li38fyf971CslFg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "q3gDMyDku0ihp0MDzXOcPA", "review_id": "GQlYcHJFA82Uj0lHuARUPQ", "stars": 1, "date": "2011-10-25", "text": "OVERPRICED & DECEITFUL & RUDE!\n\nI should have read the reviews before I came here! I took a bridesmaid dress in to have the top taken in like 1/4 inch, not much. I asked her, how much will this cost? She assured me it would not be \"much\". It was $60 and she hardly did a thing, can't even steam it there. I was irate but calmly asked her if she could charge less and she screamed NO! She said it's because the dress cost more. Yeah...like that matters A guy was there dropping off pants that needed taken OUT which is a lot more work, she charge him $18.50 for each pair. I don't know if that is good for pants a lot but her pricing scale seems way off!\n\nPreviously I've been to 5th Avenue Alterations and they charge me $50 for a floor length brdiesmaid dress that they took in the whole thing AND steamed it. They're also polite and will work with you on pricing and communicate with you beforehand. Definitely worth the few extra minutes of a drive!!", "type": "review", "business_id": "3BOGWi4iykpxxBSYHLrdOg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "7u3eL3IodZLq4a1ORGJmrQ", "review_id": "hczz-lyKKqFTVxF4-GTxrw", "stars": 4, "date": "2009-05-24", "text": "These guys are still delivering consistenly good, fresh food. It's a great little neighborhood place, good food, friendly owners. Just a really good place to go for a nice meal out - nothing fancy. Clean restrooms - always.\n\nGood limoncello after dinner - always a hit!", "type": "review", "business_id": "f7Xe9Xzoafhi_EY4xwEpSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XRjmRSO4XhkUVMKVJOSEIA", "review_id": "Oy0kqHnjDpCsm29Lh-fzsQ", "stars": 4, "date": "2010-02-12", "text": "Since I'm on a low-carb diet, I never imagined I'd be able to eat pizza without cheating like a vengeful ex. Then, thanks to my fellow Yelpers, I found Mamma Mia and its 10 carb pizza. For $5.95+tax. Sold.\n\nShow up at the store, where there are a few people on the \"patio\" happily chowing down on what looks to be some tasty grub. Once I walk inside, I feel the warm, home-owned vibe that makes my tummy smile. I pay my dues (under $6.50 with tax minus tip), wait 6 minutes, and voila! the pizza is ready. \n\nArmed with crushed red pepper and fresh parmesan from the restaurant, I dig in when I return to my office, savoring each pepperoni-and-cheese covered bite. This is not the best pizza I've had; however, I can't imagine a 10 carb pizza being any better. Crispy, thin, wheat crust, flavorful ingredients, and a short drive from work? Wow! \n\nI will return, and may upgrade my already high rating!", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "23zT_daU4O5VcFnajw8MTg", "review_id": "npPJ1oYuwEy2-lzenbi4og", "stars": 5, "date": "2008-11-24", "text": "Great prices and service. The delivery process could be improved but for the price and peace of mind with the Costco warranty process you cant go wrong. \n\nHigh quality furniture and very low prices.", "type": "review", "business_id": "XLwT4615x9rQHIfnu0J1QA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "St8bDCbyyftkKVhXUssPJg", "review_id": "ezT5Q_vqyYQ0vGg6AGwIjA", "stars": 5, "date": "2010-07-06", "text": "I have been going here for years. The staff is always very pleasant, the place is nice and clean and they offer a variety of services. I also like the $5 kids haircuts on certain days. Overall, a top notch establishment.", "type": "review", "business_id": "GCs6-N-8CalT4L2_nNas7A"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "QjsYLTJg_gytHvpzjbkj-g", "stars": 4, "date": "2012-09-25", "text": "Basicly i would let anyone know i like it, never heard a wiper of a bad experience here. \n\nDef a fan, i work very close by and if i really need they would deliver, yeah their that nice. \nHow can i put it Ladybug House of Sandwiches or Sandwich shop for short what a great place in phoenix to take care of the lunch fill with out going to Subway, (not saying i don't go there). \nWhen I need a real sandwich I stop in here. \n\nThey are a lunch spot so they close early and will have specail summer time hours. \n\nWhy ladybug house of sandwiches well, great meats choice of differnt breads and its like what I love the ladybug theme. and just what you think of ladybugs their nice not pests, pretty and would make a cool friend. \nSmall note, i put my business card in their bowl once and actually won! I got half off for the whole office, thanks ladybug ladies your the best. \n\nOnce again Kevin, lets you know whats real, kind of like me\n\nMcDowell right accross from the Banner Hospital right smack in the middle of the whole campus of medical buildings and offices.", "type": "review", "business_id": "JLrAD5J7O0xIdtUHb21jvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0lRPDROhoiXAIot7jM6xSw", "review_id": "OlY2bx0yWGjHYxJPVmXasQ", "stars": 5, "date": "2012-10-10", "text": "I have been going to Salon Mila for 12 years. I will never go anywhere else. My hair always looks amazing when I leave. The color and cut are always perfect! I feel glamorous and beautiful when I leave. First class salon! Beautiful surroundings! Always great service! They aim to please! Mila knows what it takes to make sure her customers feel welcome all the time! Thanks everyone!", "type": "review", "business_id": "laHph41d1nMBhCJJ9Kl8gA"} +{"votes": {"funny": 14, "useful": 6, "cool": 7}, "user_id": "SbzANP6hRVwDU5pbtz5ANw", "review_id": "QMU906B86pFCpp4lOUOteg", "stars": 1, "date": "2008-01-09", "text": "Buca Di Beppo is literally, italian restaurant hell. You know how all big box chain restaurants throw junk up on the walls in an attempt to make the space feel vintage? Buca Di Beppo throws junk, and knick knacks and statues and anything else 'italian' they could find in the chinese warehouse where they loaded up these goods. It's a terrible horrible mess and you end up sitting in a yardsale of italian paraphenalia while eating your very bland pasta.\n\n\nIt's embarassing how truly flavorless the food is here. Thin, flavorless alfredo sauce. Thick slabs of lasagna with less taste than what I can get out of the frozen section at Publix. I went with a large group and across the table, bland food.\n\nWhen they seat your party, they guide you through the kitchen area where the cooks play along and say a welcoming hello. Deep down you know they hate this. Why are we in the kitchen? Sure it's nice, but I'd rather have them concentrating on making the food, and making it good. Of course, the food at Buca Di Beppo seems to be far beyond any point of return to tasting good. It's just dead. Dead food. No life, no flavor, not emotion. I get more flavor from the $.99 Michelina's frozen lunch package.\n\nFar from claiming anything authentic Italian, Buca Di Beppo even pumps out bread with no taste. Eating at Buca is like eating food from an assisted living facility. No salt, no sugar, no butter, no fat, it's all gone along with anything resembling taste. Sure, Buca has huge portions, and the setup is nice for large parties and families - but they might as well just buy the family-size pasta packs from the frozen section and bake it at home, even that would be better, and they wouldn't have to the mandatory gratuity. Say what you will about other italian chains like Macaroni Grill, or Olive Garden - at least their food taste like something.", "type": "review", "business_id": "1oFvqm7eSpJbVpxpPxueaA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "_cfetEw0dU8MRPpxMReHNg", "stars": 5, "date": "2012-03-30", "text": "Just did take out. Great experience. Easy to place my order over the phone, friendly service. Nice that they have special pick up parking spots and entrance. Made it an in and out operation. Ordered the gluten free pizza with pepperoni and sausage. My husband and son loved it and have already been asking to get it again. I had the spaghetti calzone and was in HEAVEN. I highly recommend it.", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "B8HTR0tC1NFe4yAuUV3tGw", "review_id": "1D8buGjiJ6lZ5ZvvAjVOfA", "stars": 4, "date": "2010-06-04", "text": "I am a fan of big and tasty sandwiches but have had very few really good ones as of late. That is until I tried this place. I was in the area and decided to give the them a try after spotting their sign. When I first walked in I noticed the place was empty (normally a bad sign) but it was a Thursday afternoon so no big. This was my first time eating here so I took a few minutes to see what they had to offer. The sandwiches here come in different sizes from a small 5 inch to a 2 foot extra long, which makes it easy to decide what to order depending how hungry you are.\n\nThe 8 inch sub is easily enough for one really hungry person or two not so hungry people. Seriously it is about the size of a subway foot long and taste way better to! You have three choices when it comes to bread. They are white, wheat, and sourdough. I chose sourdough for my sandwich and it was chewy and seemed to be really fresh. Like most sub shops they also have a selection of pre selected combos (18 to be exact) with toppings like Ham, Turkey, Pastrami, Salami, Capicolla, Roast Beef, and Tuna. The cheese selection includes Provolone, Swiss, Smokey Cheddar & American\n\nWhat makes this place so different from most sandwich joints is the fact that they hand slice your meat when you order it. No more slimy meat that has been sitting in a case for hours and floating in weird juices Yuck! Finally a place that understands that it is OK to take the time to slice meat for each customer because it makes for a better tasting sandwich. One that a customer will want to come back for over and over again\n\nFor me this place set the bar so high most of the other chain places will never be able to compare with the quality of not only the food but the great customer service that I received from this place. It is not often that a place is able to make such a great impression on me (read my other reviews) but I will definitely make sure to give them my business the next time I am in the mood for a sandwich. The only thing that brought their score down was the fact that they had no customer parking and I had to pay to park in the garage. Yes I understand it is Tempe but why not at least offer to validate my parking LOL.", "type": "review", "business_id": "SX0pCDRvuTEoXobTovJEIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U5JyHRVayfHRHipogAq84A", "review_id": "hVcICtxo4arSv8n1iPHWiw", "stars": 4, "date": "2012-06-06", "text": "I dug this place. Got a great deal from Priceline, and I pretty much knew what to expect going in. I've stayed at places like this before across the country, and I can definitely say that this was a very pleasant experience. Everyone has complained about the beds being hard, but I didn't really find this to be the case. I like a firmer mattress, so I guess that's just my personal preference, but it wasn't like sleeping on a campus futon or anything. The towels were nice- nothing fancy, but definitely not the thin washed-out wisps of cloth that you might have expected at other places. The setup of the place was great- it's just like having a little studio apartment. Even had a coffeemaker, and an ironing board, which is strangely becoming a rarity these days.\n\nI have to make special mention of one thing- the pillows, for some reason, were absolutely amazing. My girlfriend and I both agreed (and we're both flight attendants, so we KNOW hotels) that these were some of the best hotel pillows we've ever slept on. Couldn't exactly tell you why, but there was just something about them- proper amount of spring, cushioning, support, punchability, etc. \n\nIf you need to be in Arizona on business, you couldn't pick a better place. The convenience is amazing- you're right near the highway and there's quite a bit of stuff within walking distance. We got some DELICIOUS takeout from some of the local restaurants, and it was SUPER Handy to have a microwave and kitchenette available within the room for our use!\n\nSo yeah, I gotta say, I didn't mind this place one tiny little bit. If you're used to Marriotts, Hyatts, and other fancy hotels, then you need to know that this isn't one of them. But for a relatively no-frills \"home away from home\" type of place, this is perfect!!", "type": "review", "business_id": "CYMG5AsrhkhUPro2c6NSUA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "io5b3aooPSgC0gFpSSrqNg", "review_id": "B7Mm_FUBsBVRHti8CXTg5w", "stars": 5, "date": "2012-03-15", "text": "As a previous reviewer stated: \"This restaurant is like no other\". We had a birthday celebration and we couldn't have chosen a better place to eat. \n\nFirst of all, the service is second to none. Every staff member that we encountered was very professional and happy to explain the food and answer any questions we had. They obviously like working there because they were all so upbeat and smiley. You feel welcome as soon as you step in the door.\n\nNow for the food - fantastic! I ordered the four course tasting menu and everything was superb. My husband ordered the ribeye steak and enjoyed every mouthful, although the portion was a bit on the small side. But, in between each course came a little treat of creativity from the chef so that's something we've never encountered before. For example, we each had an espresso sized cup of a creamy soup that was so delicate and delicious that we were wishing for more. They also served us a little savory doughnut, about the size of a dollar coin, that was oh-so-good as well as little cranberry \"shooters\" that had little teenie squares of jello (not really jello, of course, but a fruit gel of some sort). Somewhere in between everything else we were also served a prosciutto mousse that was smooth and delicate. As the meal drew to an end, they again brought out a little taster and this time it was piping hot mini cinnamon souffles with a creme anglaise on top. For dessert, I ordered the goat's milk panna cotta that had a marmalade bottom and alongside were orange, grapefruit and strawberry segments and to top that off the server drizzled honey over all. Fantastic!\n\nWe didn't consume any alcohol but we did have a nice bottle of water and purchased two coasters ($10/each) that flash colored lights when a glass is placed on them. The total was $169, including the coasters but not including the tip so it wasn't an inexpensive night but it was well worth it. I can't wait until the next birthday celebration!", "type": "review", "business_id": "yJMLD-6AggZNdC-GonVBsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GuRU8N7gKPNBnWCuUrLOGw", "review_id": "2Lb0yQc5VRT5JTMYnqH4Cw", "stars": 1, "date": "2012-09-05", "text": "I want to like this place as it is in the neighborhood and there aren't many other options around here, but this is probably the worst restaurant/bar I've ever had the misfortune of going to. \n\nMy last trip I sat down to order a beer at the bar. The bartender takes about five minutes to get me a beer, despite the bar being nearly empty, as he was too busy for me with his time and focus instead spent flirting with one of the servers. \n\nI drink my beer and want another. The glass sits empty for about five minutes while he paces around the bar. I try on three occasions to get his attention and ask for another. The dude is just ignoring me at this point. I guess they don't want my business and I just leave. He can have the 8 cents he owes me in change for a tip... I just want out of here. I feel bad when I leave that he even got the 8 cents from me. I hope he spends it well.\n\nOn other trips here my wife and I have had the food. It's not any better than the service sadly. I have an English Bulldog at home with a poop eating problem and I'm not sure he would even find this food acceptable. Overall just the worst restaurant around and it's no surprise why the place always looks so dead out front. Nobody's there because it's simply horrible. Avoid at all cost. I wouldn't eat here again, but would give the bar another shot if I heard the replaced all the help. Whoever owns this place needs to clean house. Looking at other reviews on here, I see I'm not alone in my feelings about the service. Get rid of these people already... just sad!!", "type": "review", "business_id": "aHGcI-KGitnGRco_D_I9Ag"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "yy8vNTtESId44OcGyaVnbw", "review_id": "V8MQK2HLoaFrdj6tfe3Yhw", "stars": 3, "date": "2007-03-28", "text": "The Orange is a popular, well-reputed joint in my neighborhood. The Pizzaria is connected to a small bakery and deli. IMO, it's overpriced and over-rated. The parking is usually impossible and often dangerously full of gargantuan SUVs and expensive sports cars. \n\nThere is valet parking available at times that is also overpriced, pretentious, and unnecessary. The parking lot is tiny and I need a valet to park my car? What a racket. Overflow parking is available on street in the bicycle lane (thanks a lot folks!)\n\nI used to have coffee here in the mornings week-ends in the outdoor cafe', but the place has become a neighborhood nusiance. The orange caters to a clientele that largely appears to regard itself as quite UMC. Probably they should be located in Paradise Valley instead of eastern Phoenix.\n\nI give it three stars because the food is good. That can't be disputed. The facilities and the company leave much to be desired though. If your idea of an enjoyable experience includes good food surrounded by SUV-driving soccer moms with ears adhered to cell phones, this place might just be for you.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 2, "useful": 8, "cool": 7}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "m9n76yM_vlXLFJUXQegEkQ", "stars": 4, "date": "2010-04-12", "text": "Stopped into this good-sized place for lunch today, with Mike C. It's a little worn, but comfortable, & I counted up 81 regular food items. All that I tried from the soup, salad, sushi, hot dishes, & dessert selections were good, & I particularly enjoyed these items:\n\n* The Hot & Sour Soup!\n* The Kim Chi!\n* A tasty salad topping with broccoli, mushrooms, & more!\n* The Seafood Salad!\n* The Egg Foo Young!\n\nA good solid 4-Star place here! Lunch Buffet $6.99, $6.29 Sr.", "type": "review", "business_id": "WxLMUX59m6sSszVNLnHDEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X6RyZWTWZNIVEwes5T3WGg", "review_id": "v1P47gNxPMPC0TNNiztiUA", "stars": 4, "date": "2010-10-19", "text": "Went for my birthday and anniversary, and I was pleased by both the service and the food. The waiter let me try a piece of Prime Rib, since I'd never had it before (I know, what have I been missing?!?!), so kudos for going out of his way.\n\nAnother nice touch was the manager personally coming over to introduce herself and ask about our experience. \n\nOverall the service was great, and the food, while tasty, wasn't spectacular or terribly distinguished. I probably wouldn't come here too often, mainly due to price, unless I have more birthday coupons.", "type": "review", "business_id": "-tBiXT917wKlr6n9wSqViw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UY-Vo1HErkyMa1R5PxDrTg", "review_id": "tQmgYx1VAz98Q6l4woKHbA", "stars": 5, "date": "2012-01-15", "text": "Been here a few times and the food is always fresh and tasty. I am Chinese from northern China. This is authentic northern Chinese cuisine. Food is not fancy but extremely delicious and satisfying. Highly recommend the Zha Jiang noodles (meat sauce with hand made noodles), the chives and egg pocket, and dumplings. Good prices and comforting home made Chinese food. Owners are very nice.", "type": "review", "business_id": "jgWAgT7LWPTf5wju9Q-kiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EHI8th4wH7et9Ezk20d-KQ", "review_id": "pNF4Ic_rfs85Rxu_pH34uw", "stars": 2, "date": "2010-03-21", "text": "I really wanted to enjoy my experience at Indulge, but didn't. From the website, local magazine reviews, and driving by, I expected it to be a slightly upscale neighborhood joint, but it really is no different than a Fuddruckers.\nWe were underwhelmed by the food and hated the environment. Two of us built our own burgers, and one ordered a pre-made pick off the menu. We had the dill chips (fried pickles) as an appetizer. I can't say that any of us loved our meal, and as soon as we walked out we all agreed we weren't interested in going back. It was just no better than you could make at home (and I burn soup). \nThe tables were crowded, too close together, and the place was uncomfortably noisy. Our servers were trying to clear plates as soon as one of us set down a fork (no one was waiting for our table), and asked for our dessert orders while we were still eating. \nThe whole experience was rushed, loud, uncomfortable, and not \"indulging\" in any way. I'm so disappointed.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RyhQ25rEbRFPbnxfLXZGBA", "review_id": "vqC-X-kvSIaWEFW0AmbQ6w", "stars": 4, "date": "2011-10-06", "text": "I really like the facial I had done. I was able to choose what I wanted and I could see the results when I left. Very nice.", "type": "review", "business_id": "q7MXrL3K5COL51o_bxDLDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1vIg1iRDdx8RokPAFNkFEw", "review_id": "kbE8egnIGXP_Ze031ZK2Cw", "stars": 2, "date": "2010-11-18", "text": "Cool atmosphere. Very laid, chill environment. Good price on beers, but thats all I can say. The server was pretty awful, not continually checking back with us and not friendly. There were 4 of us and 2 of us order food initially and the orders came out about 5 minutes apart. My friend order 1/2 dozen oysters (its an oyster house) and from his experience the person that shucked those oysters obviously was not a lover of them. There were small broken pieces of the shell around the edges, and the bottoms were absolutely filthy dirty. For being an oyster house you would think that would be the thing they take pride in, but not that night. Then the remaining of our group ordered food and both those orders came out at separate times (almost 10 minutes apart) and one order was just a side of fries. It's a great drinking atmosphere and a cool place to chill, but I wouldn't go expecting great service of great food.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "jnMII2mt0V6AM4_oMECyIQ", "review_id": "7Ivl3Fikr0IZjPkbrz538w", "stars": 4, "date": "2008-11-19", "text": "This place has been my weakness since childhood. I still get food from here once a month or so. Probably the only fast food place I visit often, other than Five Guys when I lived on the east coast. If you're preparing for a trip to Mexico, just dine here once a week for a month or two before your vacation. You'll probably be introduced to much of the bacteria of delicious real-Mexican street food.\n\nPerhaps it's not that bad, but it is delicious. Especially their \"pastrami dog\". You can be a self-proclaimed \"foodie\" all you want, with your \"oh, ha! ha!, but I admit that I do on the occasion dine at the selected In-N-Out\" pompous asshole who thinks you're still down-to-earth, or you can come down and gorge on some real disgusting, real fast food. What are you afraid of? Your arteries will expand enough to still allow the blood through, don't worry. Sure, they may drop your hot dog on the ground and forget to use sanitary gloves from time to time, but how else are you going to break in your immune system, you sissy?", "type": "review", "business_id": "6NAOp61ozWlO6KCxTlgCkw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "lCVLT95VUnlZfboVoZJCZA", "review_id": "o205X1jGfSqjQXRVkPvRsg", "stars": 4, "date": "2011-06-22", "text": "BYOB and you can get a flaming boat of sushi?! #winning\n\nThis is an awesome neighborhood place with reasonable prices and delicious menu options. Plus, it's BYOB - a rarity it seems.\n\nI attended with a party of four and we spent about $110 and were stuffed on tons of food. The noodle dishes and sushi were great and our server was a lot of fun.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wvtg5Dfw0wTYmhn14VkzwQ", "review_id": "zhMr_eIxcQWzMGCUVsnnFQ", "stars": 5, "date": "2012-12-17", "text": "Much more organized than the last time I was there, and I noticed more price systems vs having to ask. The even had the new Color Club halo hues I have been hunting for!!! They had 5 of the 6 colors and they were the highest priced polished in the store at 6.50 a pop!! Still MUCH cheaper that the 11$ everywhere else. No striping tape!!! Although the owner did say he had ordered it before and it didn't sell well...... I just went down the street and got some...:)) yay candy cane nails!!!", "type": "review", "business_id": "nBh7RAqeGq2Y2vH-s8Aw9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ea0QvMihI7UmWBrYUy0sYw", "review_id": "gX9B5L-BDVK34m5mCli-QA", "stars": 2, "date": "2012-02-06", "text": "I had every intention of giving this place a chance. Mostly because it doesn't look like the kind of place that people RAVE about after a meal. Sometimes making a snap judgment is completely justified!\n\nWe were intially given a server that was not at all confident in her ability to perform her job even at the most basic of levels. When she was asked about the \"specials\", she shrugged her shoulders and told us she didn't know about the ingredients or sides that were available. I was still hanging in there and giving this place my all. Afterall... she could have been new, having a terrible day OR goodness knows what she was going through that day? Then the baby started screaming in the booth next to us and every server in the place ran for the hills, leaving the issue unaddressed. PEOPLE!... if you have a crying baby, FOR THE LOVE... take the poor little thing outside and deal with the problem, don't force unsuspecting strangers to listen to it. We opted for a changed of scenery within the restaurant after five minutes of non-stop crying and were moved into the main area of the restaurant and reassigned to a new server.\n\nShe no sooner finished warming my coffee (I use this term loosely, as it was more like colored water) before I glanced into the grill area which open for the whole restaurant to see. This was the nightmare... I saw a rather large female cook with a tissue paper plug in her nose. Anyone who's ever had a bloody nose knows that this is one of the few things you can do to passify the DRIPPING BLOOD!! You would think a bloody nose would qualify one for a break until the bleeding subsided, wouldn't you??\n\nI don't think i'll be able to bring myself to visit this place again!! In the mean time... might I suggest some food safety training??", "type": "review", "business_id": "H03D-h5UwPXOv64W5Iqn_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jtT3RFcI8isonLupfH7RwA", "review_id": "qO4kC74xeNNOqBTm3NezPg", "stars": 5, "date": "2012-12-10", "text": "Stopped by here for lunch today... I saw the Burger sign outside and thought I would try it out. WOW!! This place is amazing. The owner/chef was taking the orders and was super helpful and friendly. I had a Paradise CHZ which came with 2 patties, smoked mozzarella lettuce, tomato, caramelized onion as well as cucumber. I also ordered Sweet Potato Tater Tots I was blown away! BEST BURGERS IN PHOENIX! Our bill came to $18 for 2 cheese burgers, 2 sides and a soda. \nIt was so amazing I went back for dinner. I bragged to much when I got home that my boyfriend just had to try it. I had the special which was a Roasted Duck Burger (2 beef patties, topped with roasted duck, caramelized onions, bacon, fried egg over easy served with duck au jus) By far the best burger of my life. My boyfriend got the Beach House (2 beef patties. roasted green chili, smoked mozzarella, pico de gallo and jalapeno ranch) He also ordered the seasoned fries. I don't care for fires and I think I could eat 3 orders they were so good. His was so good he ordered another burger. \nFor Desert we shared a Maple Pecan Bacon Milkshake, also to die for. I really think I need one of these every night.\nFrom the atmosphere, the music, the staff to the food every thing about PV Burgers was a hit.\nThis is a must go!", "type": "review", "business_id": "pAHUC05ceak48e745i6G4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9g_ARKx0eJmNH8oO1TR9rQ", "review_id": "9Z_bU2xRCzD3AERtnOjKqg", "stars": 5, "date": "2011-12-08", "text": "This is place is a weekly trip for us as my girlfriend loves the salmon and martini's they serve here. We have been frequenting this place ever since we moved to the area versus the rare trips we would take for the awesome cream cheese chocolate cake made by Caroline or the lunch Caesar chicken sandwich. Here are my ratings of each dining point I consider when going here:\n\nService: 5/5 Fast and very helpful, Even the chef will dig up custom stuff and cares what people think of the new entrees.\n\nAmbiance: 4/5 The place used to be a home so it's a little cramped but nice nonetheless. Not as comfy as some others like Ticoz but we like it. As it is small\nin seating ranges you can't get too loud so keep the rowdy folks to the Applebees locales.\n\nDrinks: Ginger ale and the kiltlifter is nice as well as the blackwidow and black / blue martinis.\n\nrecommended Food:\nFish 5/5: My girl's favorites are the halibut,swordfish,miso salmon with basmati rice, she also loves the spinach and asparagus.\nSandwiches: 5/5 for roast chicken with green chili, side of coleslaw or balsamic salad 4/5 chicken caesar is good but sometimes is hit and miss\nmeatloaf: 5/5 best I have ever had, it is a beauty.\nTacos: 4/5 One time I had pork tacos they were the best ones I had tasted, the next time they were ok, then the last time they were great, not sure why but still recommended.\nCream cheese cake: 5/5 Made from local baker who used to do deserts for Circa 1900 but now does it for them and Urban Bean to name a few.\nSteak,chicken, pork: 3/5 I have tried each and every one here and while you wont be disappointed there isn't a wow factor like the meatloaf. The sauces seem to not match or compliment the specific meat in my opinion. I would love a bordelaise sauce or onions and mushrooms with the filet for example.\nAppetizers: ?/? I am not a fan of the bruschetta but haven't tried the rest. I have heard the crab cakes are awesome but have yet to compare them to Fez's awesome versions.\n\n\nPricing is on par with Sophie's but less than Christopher's and more that Ticoz. I am fine with it as the food I order is totally worth it.", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "87dFLz3no7v3jKgtX5pbBA", "stars": 3, "date": "2010-10-25", "text": "I've actually never set foot inside this restaurant, so I can't comment on the place itself. But every now and then we've picked up orders from Old Spaghetti Factory at work, so I can comment on the food itself. \n\nThe food is as basic as it gets. This is definitely \"family food.\" Most adults won't complain about it, and kids will enjoy the simplicity. I recently had the Old Spaghetti Factory's Chicken Parm. I won't call it bland, but it's nothing that the average home chef couldn't cook up for their family. \n\nI will give the place credit for the portions. It's not expensive and you get a lot of food. While the chicken itself was not huge, it comes with Spaghetti, an entire loaf of bread and butter, and a side salad. The salad was way too plain for my taste, but at least I had a little bit of vegetables to go with my meal. It's also quick. Take out orders are almost always said to be ready within 10 to 15 minutes.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SGXahHRReksq3m_Zk9V20w", "review_id": "fUPyltvyHqgmzftT4VhWvA", "stars": 1, "date": "2012-03-16", "text": "D-scust-ing.", "type": "review", "business_id": "WM8sy8FjrU3PpxN_NI02ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8jLwlohHK5Lka4tSdwfjqA", "review_id": "C4zN4vdqJkBdhXDpmbFI0w", "stars": 5, "date": "2011-09-04", "text": "I LOVE THIS PLACE!!!! I have tried several of their subs and although they are all delicious the Chipolte Cheese Steak (it's the # 43) is my favorite! It is the MOST DELICIOUS sub I have ever had!!! The bread is always soft and fresh, it is extremely filling because it's stuffed full of steak, peppers, and cheese!!!! To make it absolutely the BEST sub ever have them add some of the little red chili's to it (I think they call it chili relish)....OMG!!!!!", "type": "review", "business_id": "1_43FZHx3P5D7X-CpIR9WA"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "KgnQz4WFT892AXmimnP4jg", "review_id": "fjAbI8cUVaEFoe-vGnFwow", "stars": 1, "date": "2012-10-01", "text": "Walk the other way, just walk right the hell the other way...\n\nHere was how this played out. Oktoberfest a few days ago. Starting the night off. I walk past this place and see a place that sells a slice of pizza for $1.99. Good, right? No. \n\nme: \"Hi, one slice of pizza please\"\nguy: \"you buy drink with it, 4 dollars.\"\nme: \"no, just one slice of pizza\"\nguy: \"we do not sell one slice, you have to buy a drink. 4 dollars\"\n\nI should have pulled a flag on this play at this point, but knowing I was going to be drinking I move forward wanting food in me. Not a wise move.\n\nme: \"so, I can't buy one slice?\"\nguy: \"no, you buy a drink with slice, 4 dollars.\"\nme: \"It doesn't say that anywhere on the menu or walls\"\nguy: \"No, do not sell one slice.\nme: \"what the... O.K., give me 2 slices of pizza\"\nguy: \"you buy two slices then.\"\nme: \"yes, Jesus Christ, yes\"\nguy: \"toppings?\"\nme: \"no, no toppings. cheese.\"\nguy: \"we have toppings.\"\n\nwhat is this guy, fucking deaf? \n\nme: \"no thanks\"\n\nI give him the money.\n\nguy: \"it take 10 minutes, you wait.\"\n\nI don't think they run the air conditioner in this place, so I wait outside.\n\nPizza comes out. Tastes like absolute crap. I eat it outside because in September in Chandler Arizona it is cooler outside then inside this place. I think they had the thermostat set to \"HELL\" Guy working or running the place comes outside and stares me down as I am eating. I'm sure if you want to eat here you can check the dumpster for plenty of slices to try beforehand to avoid having to pay for one. Excuse me, avoid having to pay for two. However after what I had served to me I'm pretty sure they will beat you to the garbage cans and sell it back to some other unsuspecting soul. I was the only one dumb enough to finish all the food. Wouldn't eat here if there was a natural disaster and this place was the last to be ransacked for provisions. I'd keep walking.\n\nFAIL.", "type": "review", "business_id": "zRqU9_TTVNSo9d23fL8qgQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "kdVVlmyKFPC2aCBTLNpaVQ", "stars": 3, "date": "2010-08-29", "text": "The main reason to miss a star is that the one that we ordered (the mint-lamb) was a bit dry to my taste and no mint to taste at all. For desert we had the apple one and that was much better. I'd like to try a different one some other time and compare :).\n\nGood environment, and for groups, friendly staff who would explain you what they are cooking!!", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Jr11o_s3zIkKtOM8a8H8rw", "review_id": "GkoBNcDM_08BNCWTRuoD3A", "stars": 1, "date": "2012-12-07", "text": "I love how all other Yelpers reviewing this company have discovered the same issues that would never permit me to use their services again. Company is a disaster and should be reported to the BBB.", "type": "review", "business_id": "mKtHJOe1rtf-zGewKpAqrw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JEHGgY_fGtRCXur03C9fQQ", "review_id": "ldOnZ0of0M2MrR2EQTqX7g", "stars": 1, "date": "2012-02-14", "text": "if you like terrible service and overpriced food you've come to the right place. If I knew before I went in there I would be paying $16.00 for macaroni and cheese, and had the pleasure of waiting around for an hour to get it, while my glass remained empty, I would've stayed away (which is what you should do). Food wasn't awful, although 2 members of the party did cut up their mouths eating the hard as a \"Rock\" bread on their sandwiches. The mac n' cheese was nothing special. The service was beyond poor. First and last time I will eat at Hard Rock Cafe.", "type": "review", "business_id": "gkv2XvXpFgiq4Bb2XK7YmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onHakaxo9xOWtzLZtif9nA", "review_id": "fX8DkfV6uXNbanxyfpp5Ig", "stars": 4, "date": "2011-07-07", "text": "Clean, fast, fairly cheap. I had the Orange chicken and it was good. Liked the brown rice option. I enjoyed this $6.19 meal much more than the lame sandwich/soup I had at Great Grains yesterday and that cost me $12.25, I'll be back to Tott's.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "z-JC1S58qaW8WNiOzUh_TA", "review_id": "Kjtu2HXWQQX1Ww1Ob5mAag", "stars": 5, "date": "2011-11-24", "text": "Great food. Great ambiance. Great for a night date on the patio. I can't wait to go again.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 11, "useful": 15, "cool": 17}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "hka-nUBLnJpxOy6YAvwm2w", "stars": 5, "date": "2008-08-16", "text": "You know that scene in Fast Times at Ridgemont High where Jeff Spicoli takes one of his Vans off and hits himself on his head? Well that's what I did when I went to this place for the first time. Why haven't I been coming here for the last 10 years, this place is great!!! \n\nI would say this is the best non-Pizzeria Bianco/Cibo pizza in the valley. The crust is awesome, sauce and cheese just perfect!\n\nThe really impressive part is is how picture perfect the pizzas are made.\n\nThe lobster ravioli were huge, easily enough for two. Baked Ravioli's were better that average but needed more basil or something.\n\nYou really can't dine here, so it's take out or delivery. They have one table and a few other seats inside if you had to eat here I guess you could.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ugoqDrn6cPPD63Pt_CLi8A", "review_id": "3ZHH5fSxzMLVmVK9vaCdwQ", "stars": 5, "date": "2012-07-29", "text": "Jeremiah is great! He is very friendly, patient, and knows what he's doing! \n\nWe started off with the Drunken Cheesy Bread, it's ok. Not something I would want again. Nothing wrong with it, just not my taste. \n\nFor lunch, I had the Chicken Parmesan sandwich, along with a house salad. The sandwich is great. Loved it. \nThe house salad... I mean, I could not stop eating it. I have no idea which kind of dressing was on it, but it was AMAZING. I am craving it just thinking about it. \n\nThe interior is very clean, roomy, very casual. I heard they have great happy hour, so I will be back again.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 7, "useful": 7, "cool": 7}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "DFjpEBuLU5Wu4cJ8JAeX8w", "stars": 4, "date": "2010-03-17", "text": "\"You smell like smoke.\" That's the greeting I received when coming home from a terrific UYE organized by BBQ lovin' Deb L. And at that point, if my stuffed self didn't already know it, I knew I had just eaten some damn good food.\n\nUpon arriving, I had a deja vu moment of being there before...a long time ago, sipping a virgin strawberry daiquiri (I told you it was a long time ago), and thinking I was all that. Yes, it was Bobby McGee's at one time! So flash forward 25 years, and I'm having a strawberry lemonade \"adult\" beverage, which was quite tasty btw, in the company of 20 fabulous Yelpers!\n\nWe were given corn bread pretty quickly, and it was devoured pretty quickly. A little on the crumbly side, but delicious nonetheless. Because my husband could not join us, I went with the 2-meat combo (brisket and pulled pork) so there would be some left to take him. Yeah, that's my story. I was a happy eater to find I could order my meats sauce free! The brisket was good, but a little too fatty. The pork was really good, however; adequately seasoned and smokey. I tried the spicy sauce on the table, and found it to be just right, just a little kick to it. For sides, the mac and cheese was creamy and not lacking in sauce. Yum. The roasted corn was really really good. If corn always tasted that good, I would move to Iowa.\n\nOur service was great and they were accommodating for our request for separate checks with a 20% gratuity. Our service was actually good enough, especially given a party that size, that I tipped extra. And I did refrain from eating all of my meal, so that I could have a nice lunch the next day when my husband refused my offer of the leftovers. Only problem was he didn't refuse. And I went hungry the next day, wishing I had eaten all of my meal when I had the chance.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "YMB29SPB8Z_a2be4O5gxOg", "review_id": "wPa3peOXdMf6LYnfskFUYg", "stars": 1, "date": "2008-05-31", "text": "Mediocre, bland, low quality food topped off with painfully slow service. I worked in the neighborhood and continued to return occasionally \"just in case it's gotten better\", for reasons I could never fathom once the plate of abysmal food was placed on the table. The salsa and rice are usually good, but that's the most I have to offer.", "type": "review", "business_id": "i41M_To0DAxuzZIGvU1wyg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "z2QYfopPGuL2h9mJ1icrJQ", "review_id": "6WZ9XwBdRXQi-AH3V4lHVg", "stars": 2, "date": "2010-09-26", "text": "We came here on a Friday night. My husband ordered a dirty martini and it was so dirty, it came out looking like a glass of olive juice with some grenadine in it - it was actually red - WTH? It was the first time in his life he had sent something back. The waitress was cool about it though. She had to be, she has eyeballs too. We ordered the mozzarella and heirloom tomato appetizer. It was ok, nothing special. I have a pet peeve though - if you say heirloom, I expect heirloom and heirloom tomatoes, they were not. If they are not in season, that's fine, but tell people when they order. Then, we had the cannelloni special with sausage sauce. Again, nothing special. Here's the kicker - they charge for bread (not special bread, just plain ol' bread) and for parmesan cheese to put on top of your pasta!!! In fairness, they do give you one piece of bread with your pasta, but if you want any more, you are paying $3. Let's be serious - the name of the restaurant is Pasta Bar and you charge for grated cheese?? That's like going to a sushi restaurant and paying for soy sauce or a burger place and paying for ketchup. The cheese actually on the menu as a side. Are you kidding me? We're not talking special grated cheese. It looked like the stuff from a green shaker bottle. I wanted to add some salt to our appetizer, but there was none on the table. I didn't ask for any because I was afraid they'd charge for that too. I'm actually surprised they didn't have it on the menu as a side. We won't be going back.", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0z6CbySSyUrRi-qK5Edqng", "review_id": "53uEchUGkTw_DmIXGULZ8A", "stars": 3, "date": "2012-09-12", "text": "I give this place 3 stars because of how friendly the lady that worked there was and how amazing their prices were. It was pretty unorganized though and I am sure that it is due to people moving books to where they shouldn't be and there just being too many books to keep organized. It is not a bad book store at all, just be prepared to have to dig and dig for what you are looking for. Worth it though for the prices :)", "type": "review", "business_id": "DHt6YEtuGWQtewpByra2sg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5U0InJlG-CoZeikFUUl1Dg", "review_id": "zpatQBj8m2UAECkMi-SXZg", "stars": 3, "date": "2011-05-19", "text": "I tried Rare Earth for the first time as a solo diner. Often a good way to get the take on a new restaurant. I sat at the bar which has surprisingly uncomfortable seating. Really hard seats that cut me in the back of the knees. The wine selection is nice. Not big but two or three choices of each variety.\nI ordered a glass of wine, a small House salad and a pizza. \nThe server behing the bar was \"professionally friendly\" \nThen the wait began. Fifteen minutes passed and I still had no salad. I was able to get the servers attention and asked about my salad. She didn't check on the status of the salad but gave the excuse that several people had come in around the same time that I did.\nJust about 3 minutes later both my salad and my pizza came out at the same time. Very disappointing. I wanted to eat my salad but I didn't want my pizza to go cold. Note: This is extremely thin pizza...like a cracker crust...so it goes cold very quickly.\nThe server offered to send the pizza back to keep it hot but since it had fresh tomato on it, I didn't want the pizza to be ruined.\nThe house salad was fresh, good mushrooms and shaved pecorino cheese. There were lots of red onions and the dressing, a house vinaigrette was very strong \"and vinegary\". For me the onion and vinegar were just overwhelming and I would not order that particular salad again.\nThe pizza had a good amount of toppings and held together pretty well, even considering how thin the crust is. \n\nI would like to try this restaurant again because there were several things on the menu that sounded really good.\n\n4 stars for the pizza, 2 stars for the salad that I ordered and 3 stars for the service.", "type": "review", "business_id": "3QhPvyen9kSiAxduT8g3bQ"} +{"votes": {"funny": 6, "useful": 11, "cool": 9}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "STevB88V3RZuighli4qkQg", "stars": 5, "date": "2008-09-04", "text": "I was in Bomberos for breakfast this morning, and I was told they now carry Coca Lite! So much better than Diet Coke - I had no idea I could find it anywhere in the US! How great is that?\n\nAlso, Bomberos is now using MJ Breads and Tammie Co pastries... not too shabby, huh?", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aQQn3GztQ_gTb0QOEnxyCg", "review_id": "HBzIraUgYdV6_AOLJppLAg", "stars": 4, "date": "2011-09-17", "text": "This place is strictly a dessert place. While they serve food, I would skip the food and go right to the dessert. At least that is what I do, being that I have only eaten dessert at this place.\n\nI have been here 3 times, all of which have been very good. My only complaint is that the sundae's are a little pricey and the decor is pretty dated. But it is an authentic retro, ice cream parlor.\n\nThe sundaes are always made up to perfection. They have many unique flavors and I have enjoyed each one. \n\nNext time you are in need for a sugar fix, give this place a try!", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "2FiNCj5rM3nF0qgaWf86Gg", "review_id": "zxjv7d1rAZO4vyHxPDExBQ", "stars": 3, "date": "2009-05-25", "text": "Food wise, this is my favorite Lenny's location. They make the perfect jalapeno cheese burger. The fries are really good too.\n\nThe location kind of sucks. Its surrounded by a greyhound station, a liquor store and some kind of AA hall. Need I say more?", "type": "review", "business_id": "cPmbPQepAatet3QMUZaSeg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "n0bn_DJxCj2m9y5AMhnA1g", "review_id": "OViAJbHgoeY85nm6JiOEbA", "stars": 5, "date": "2008-12-15", "text": "I recently saw a Coyotes game here and I was seriously impressed. This arena is super nice, almost mall-like and clean on the inside. What also impressed me was how much stuff there is around the arena. Where I'm from, you'd have to drive somewhere else if you want to go to dinner before or hang out after the game. Here you can just stay in your cozy little free parking spot and hang around. Probably my only gripe is that the screens on the inside could be a little bigger, but other than that. this arena is right up there.", "type": "review", "business_id": "F0ZXhPJD8yNS3xzTxsichg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EaBSxpcf3S128Ncrtt95Zg", "review_id": "w6a4k8b5H0X2rS5SphCrSA", "stars": 5, "date": "2013-01-01", "text": "What a place for brunch. $4 drinks are fantastic. Their tenderloin egg Benedict and sea food sandwich is heavenly. Wish we had such a place in Los Angeles.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gN4JuiRC2sIssc1qijg4Zw", "review_id": "lIZE03FZc_Sh6t4uCI_GBg", "stars": 4, "date": "2011-03-04", "text": "Never had any complaints about this place, except it smells like death when you walk in. I've always been well taken care of when Im here.", "type": "review", "business_id": "IfMwqincIFlyj4L0qa5BRA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "Q5dlLCEni_my05az9wIptg", "review_id": "WpAmwbpzZTJOtqu3bBVrvQ", "stars": 4, "date": "2008-07-28", "text": "Tonight was my second time dining at Yasu's. I was really excited to score a seat at the sushi bar, eagerly hoping to chat it up w/ the sushi chefs. However, they seemed too flustered w/ all the orders that they made a minimal attempt to talk to me besides asking, \"is everything ok?\" And I think the Mexican sushi chef is new so the Japanese sushi chef had to instruct him on certain things a few times. \n\nI started off w/ an order of kampachi sushi, per one of the recommendations of the Japanese sushi chef. While it tasted fresh, it was very blah to me... nothing special about it at all. \n\nA few minutes later, the waitress arrived to take my drink order. I decided to just stick w/ water and told her I was ready to order a few items off the paper menu. I had decided on mirugai (giant clam/geoduck) w/ mixed mushrooms, hamachi sashimi w/ jalapenos and ribeye sumibiyaki. First up was the hamachi sashimi w/ jalapeno slices. Nice thick slices of buttery hamachi, but all the seeds were scraped out of the jalapeno slices so they weren't packing much heat. After I ate them all, I remembered that there's a freakin recall on jalapenos in AZ and there wasn't a sign in the restaurant stating that their jalapenos are safe. JUST. EFFIN. GREAT. I hope I don't get salmonella. If you don't hear from me in a few days, pls call for help.. I live alone! And tell them, IT WAS THE JALAPENOS FROM YASU'S THAT DID ME IN!\n\nAnyhow, next up was the mirugai w/ mixed mushrooms dish. Very small portion, but it was tasty. They were a bit skimpy on the mirugai to mushroom ratio so that was a little disappointing. About 10 minutes later, the waitress asks if I'm all done.. I ask her about the ribeye and she asked the sushi chef & kitchen in a frantic tone.. They reassured us it was almost ready. Another 10 mins later, it arrives.. I guess it was worth the wait.. it was soo tender I was able to \"cut\" off the fat w/ my chopsticks. DEEE-FREAKIN-LISH. It could have used a lil salt, but that's just me being picky. The 3 sweet dipping sauces helped. Next time, I wanna try the duck sumibiyaki. \n\nSince I had a $50 gift card (that I purchased from the radio promos for $25), I had another $10 to use up so I ordered the shrimp skewers wrapped in crispy noodles. The crispy noodles were like deep fried chow mein noodles. Interesting, but good. \n\nStuffed like a pig, I paid and waddled out w/ my leftovers in tow.", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "i-kPcHFEXraUB77-0u60uw", "review_id": "UJh5uWBq-wi8rWXdyO1c2w", "stars": 3, "date": "2010-02-23", "text": "I've heard about this place being \"the best\" burger joint so i had to check it our for myself. My boyfriend and i went on a saturday afternoon and to my surprise most of the seats were taken, people were coming and going so my first thought was they must be good since they were so busy. Severs were really nice and prompt.\n\nwe both ordered their 1/3 lb arizona smashburger which has: habanero cheese, guacamole, lettuce, tomato, onion, chipolte mayo and fresh jalapenos on a chipotle bun, we also had an order of their smash fries.\n\nfirst thought, the presentation of the burgers and fries looked great, after putting mustard and ketchup on it and TRIED to pick up the burger everything almost feel out. It was messy and greasy totally ruined the experience of enjoying the burger. It tasted like any other burger, nothing really special about it. Their fries however were amazing. \n\non a scale of 1-10 i would give this place a 6 just for the food presentation. my boyfriend said he wouldn't go back but i'll give it another try one day.", "type": "review", "business_id": "tr4L9VWmPGZtdBD-L2Pofw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6YdlDDgPGTToXm5vTKh6iQ", "review_id": "AcAejpKnMrFZva9pKCQ8Rg", "stars": 5, "date": "2011-03-28", "text": "Fast service. Great burgers and fries. So far the Arizona burger coupled with sweet potato fries is my favorite.", "type": "review", "business_id": "TuCAYZ89lP_s6D7Y78xNhQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s1e7gVzxaC8uryJVordhvQ", "review_id": "ezFQPLUBegqcb4YGPeSDTQ", "stars": 5, "date": "2010-11-17", "text": "Island Terrayki is a great place to eat at. The owners are nice the prices are right you can't go wrong with that. My coworkers and I have been going there for a few years now and we all love it. Highly suggest eating here if you are in the northwest valley and want some good quality food.", "type": "review", "business_id": "GfMRsE7rYqNyfC6wUYZkzA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "m5cQ7Vsqt1KgpJ5ZqyofwQ", "review_id": "5VnleLYRYb-41ksgsdiFng", "stars": 5, "date": "2011-02-23", "text": "Whitney walked into Renegade Canteen and never had a chance. Nor did any of her previous favorite Scottsdale spots. \n\nThe green chile pork stew is enough to make a good date great or a bad date totally tolerable. Tender, juicy, sent from above...having this dish once is not enough. You won't have the heart to inform your mother that after tasting McGrath's bowl of deliciousness, any pork dish she's ever prepared seems dry and flavorless. \n\nWe can only hope that the clouds in heaven are made of the mashed potatoes. I get them every time. The filet was the best steak I've ever had (I've thought about it, trust me) and the Dr. Pepper braised short rib will give you something else to think about the next time the Kiss \"Dr. Love\" commercial comes on. \n\nyummmmmmers.", "type": "review", "business_id": "KgTb63IZHFn_rhLG-cpm_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LRblz3w7ngMUnbDWZzB_Hw", "review_id": "vB5V5gTnYlwjRO34PcYRMA", "stars": 5, "date": "2012-07-13", "text": "This is a Mom & Pop Mexican restaurant on Tempe's east end, the food is awesome\nand of the good \"Homemade\" quality. Known the family for almost 30 yrs now.", "type": "review", "business_id": "0yfN4bdKZfkFSXseB2kOBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "cUMxaIaeZovQTYBBxcQKzA", "review_id": "Rdbh5Djh6nd5C0GDm-xHQQ", "stars": 4, "date": "2010-01-30", "text": "Good chips and salsa, excellent service. Friendly folks who greet you well and say good-bye when you leave. MY staff love this place and I gave them gift cards for Xmas from here so they could go to lunch and talk about the boss!\n\nFood is good but not great. Not high-end Mexican but decent ingredients put together with care. I highly recommend asking about their specials. They are thinking about what they prepare and have some excellent dishes they have created themselves. The spicy roast pork is very good - as an example.\n\nParking can be tough at peak hours. I had to use the street last night and the place was absolutely packed. Large lot but at peak hours...\n\nVery good value. You will leave knowing you have eaten something!\n\nDecor is basic Mexican restaurant but comfortable.", "type": "review", "business_id": "I7IfnWW1nXljC4ZGqwPe-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OCiyaqz1BlfgddS6Lp0S6g", "review_id": "WyJhYnlpQTfnuaoPs-FEVQ", "stars": 5, "date": "2009-08-05", "text": "ABSOLUTELY ADORE THIS RESTAURANT!!!! Amazing location and such a great food !!! Been going there for a long, long time! I have yet be even slightly annoyed. BLISS! They wait on you hand and foot, food presentation and TASTE is Fantastic...Always make you feel very special.. the hostesses are not rude nor snooty and are always smiling- GREAT Managers! LOVE them all around! ( and I AM SUPER PICKY ( and Proud of it!) DO IT!!! GO THERE!!!!! #1 rest. per me in AZ for beautiful location and food!", "type": "review", "business_id": "2OY8xs4aqOt8eTnYokdrww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "eSbl3Q1HxQuZTmu5dqpn-g", "review_id": "DygrWmhDiuxZbnXqOxnT4Q", "stars": 2, "date": "2012-02-13", "text": "5 Stars for the delicious food & flavors. \n\nNo stars for the tired, drab & dusty interior. Very disappointed. Needs a complete interior update overhaul and face lift. \n\nThe food is great quality, but their portions are monumental, and rather unappetizing with the amount of food on the plate--although this could be appealing to others of a unsophisticated palette. \n\nQuite disappointed, but gracious that the quality of meat was outstanding.", "type": "review", "business_id": "fMcI0fOLmUwSvgVCmGA9Rg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kAw0HygRTr8QJ56Vsc_6WQ", "review_id": "RM6sKStyROJflS4GBIVIOQ", "stars": 5, "date": "2008-11-06", "text": "Had a family style meal and everything was delicious. Rigatoni in a cream sauce with chicken was outstanding, as was the pound cake dessert. Appetizer stuffed mushrooms were also really good.\n\nOn the pricey side, but nice for a special occasion.", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pvkLLX9n2hanP9QfHex6pQ", "review_id": "pgOrQ_YAcauscW-bWmwOlQ", "stars": 2, "date": "2010-08-15", "text": "The place was pretty busy when my husband and I visited one night. \nThe decor was ok but very kitschy.\nMy husband and I split the pear salad although the pears were the ones out of a can. \nThe special that night was beef cheeks which if you are familiar and like them, they can be amazing. But I could barely find them on the plate because they were drowned in a heavy overpowering sauce.\nMy husband had the lasagna which was decent and I honestly had more of that then my entree.\nFor what we had, it was totally overpriced. I could imagine Olive Garden would be just as good.", "type": "review", "business_id": "hoDG7g0Qxqje0dP_7MqpHQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "M3R4oIrJaHDDHbhbzwCLrA", "review_id": "YvQe-wF-QA7Db9jyOrHuKg", "stars": 4, "date": "2011-09-06", "text": "Over Hyped ??... Yeah a little but its definitely worth checking out !\nThe pizzas are freshly baked and very minimalistic but extremely tasty ! I particularly loved the ROSA - Red Onion, Rosemary, Pistachios sprinkled with just the right amount of Parmigiano Reggiano on a thin crisp crust ! \n\nThe classy brick wall and the gorgeous brick oven give a rustic feel to the d\u00e9cor and you feel transported to another time.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v3IrMAMxz9ScN0dtU_eS8A", "review_id": "JCUxqiNAtAPmHi6DHi3I9g", "stars": 3, "date": "2010-08-06", "text": "yet another phoenix joint w/ hip decor and a solid menu. \nnice gold on brown color scheme, soaring ceilings. cute marker board to write all over at whim. \nthe food? some of the best glorified bar food in town, albiet pricey. sampled several top notch martinis, the smoked salmon app, good chicken burger and sweet potato fries. \nplace also has bocce ball which makes for a fun diversion. \nmy biggest complaint is the terrible acoustics. It was so loud my ears hurt and I felt that a hundred people were simulaneously shouting into a steel drum. Can we put some softies on the wall or something? \nBut then, again, it's a bar.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "wt6585C8WtScTX-bqq84hw", "review_id": "6LbKHp4BGuS3JiYTwFh9NQ", "stars": 4, "date": "2009-01-30", "text": "This place is absolutely delicious but you'll want to stay away on Friday and Saturday nights. It gets packed and the service declines. My boyfriend and I went a couple of weeks ago and if the food wasn't so delicious, the service would have kept us from returning. Kind of like the soup nazi on Seinfeld; you'll do whatever it takes to get what you want!", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "rK3e_J8VcBtrvo75aOCpSQ", "review_id": "WrdNidNnDuKRVOQUzPBRSw", "stars": 4, "date": "2009-03-27", "text": "I know that all Melting Pot locations gets mixed reviews... usually the price turns people off. It is a little pricey, but it's all about the experience. Also, since it's a time-consuming experience, one tends to be there about twice as long as at a regular restaurant. So I don't really mind the price for a once in a while kind of thing. My hubbie and I have been 8-10 times... twice at the Scottsdale location.\n\nThe husband and I always order the \"Big Night Out,\" generally the \"Lobster Indulgence.\" (We figure if we're going to spend a pretty penny, we might as well really make it worthwhile.) Maybe since we always do the lobster thing, the price doesn't bother me as much.\n\nDon't remember the specific themes the times we went to Scottsdale, but the \"Big Night Out\" meals go like this: Cheese Fondue (you can choose the special or any from the regular menu) with assorted dippers, Salad Course (again, the special or off the menu), Main Course (if you get the \"Lobster Indulgence,\" it includes twin lobster tails, usually a couple kinds of beef (e.g., filet and sirloin), shrimp, chicken, salmon, and/or pork, often a stuffed pasta, and lost of vegetables) with assorted sauces, and the best part... Chocolate Fondue with fresh fruit, brownies, marshmallows, Rice Krispies Treats, etc. Yummy!\n\nI must say that your experience also really depends on your server. If you get a bogus one, you might not have a great time. We've had good experiences for the most part, some absolutely awesome experiences.\n\nAlso, check out each location's web site prior to making reservations. They sometimes offer really great deals or promos, especially on weekdays. This info might be helpful to those who feel like the regular price is over the top.", "type": "review", "business_id": "pQAIM21Yw4eNdbha2Rxkcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-3HkgwyxVPf49MXM4dT8Tw", "review_id": "mzFQpwhn_AC6-fdVgVOhBA", "stars": 3, "date": "2008-05-14", "text": "I went out here tonight with a couple of clients. I had heard some good things about it, and they were from back East, so I thought to myself, \"why not?\" I must admit I was not that impressed with it all.\n\nWe came here for dinner. Started out with some apps, and ordered the Monster Platter. Complete with \"sliders\" on it that rivaled a Jumbo Jack for shear size, this could easily feed a family of four for a week. Thank God there were 10 of us. Most everyone ordered steak for dinner, and most were impressed. I, on the other hand, was not that impressed. All I could taste on my steak was butter, not meat. I almost had to reach for the A1 Sauce, a cardinal sin in my mind with steak, just to make it edible.\n\nSince we all had a round of golf in the morning, none of us opted for the giant 3-liter beer option they had. But the booze selection, including wine, was quite impressive. Service all around was very attentive. And for those of you that love your barely-18 and barely-100lbs servers that Scottsdale is serving up on a daily basis, this is a great place for you.\n\nThere were a few people in our group that opted for the bull ride, a nice little touch that gave this place that little something extra to set it apart from the other Old Town places. All things considered, I don't think I'd head back here. I can get a better steak at a Chili's-type place, and the atmosphere (comprised mainly of your younger Scottsdale-types) didn't really do all that much for me.\n\nA couple other things of note: their happy hour only goes until 6:30 (boo!!) but they do have a daily brunch that, strictly reading off the menu, did not look half bad. I may have to check that out some day.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "snBHXvENp0MNfw4wuEbtIg", "review_id": "Ra86Qp1ssr2G6J7zZw_TfQ", "stars": 4, "date": "2010-03-10", "text": "If you're a local, check out their spa's slow day specials (most often a Tuesday, Wednesday or Thursday). It's a nice little spa in a great location and the staff was pretty good too!. It doesn't hurt that Trader Vic's is so close by and has tropical happy hour specials for afterwards :)!. Great Staycation location! \nHere's a sample of the newsletter spa specials: \nhttp://www.returnity.biz/images/email/VHO/wVHO_020210.html", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "v9YeR-dpv2FPyUn7Hg248w", "review_id": "fmvEirpy6Xi8N5OdhPZt7Q", "stars": 4, "date": "2011-12-18", "text": "When I found out I was going to Scottsdale for a vacation, I signed up for Groupon and was excited to score a tequila tasting at Cien Agaves! Well, I didn't read the fine print and it was only for the last Thursday of every month. Not a problem - the owner/manager was great when I told him I had kind of skimmed over the fine print, and he still honored the group on. We had delicious tacos, yummy margaritas and left thinking how great people in AZ are :)", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nYfpquFWxQC342RenTI3rA", "review_id": "l8i0L2v4UzUQyZ_p8jLkQQ", "stars": 4, "date": "2012-03-19", "text": "More expensive than some of the other nearby locations ($5 military lot next door) The shuttle was nice and quick shuttle despite odd hours of the night. Nice enough, they also accepted competitor coupons when the lot with the deal was full. The boyfriend and I had a great experience and prompt service at all hours of the night. It also seems more secure. Loved it!", "type": "review", "business_id": "NCM64MnD1NCtBfJzgBIZKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zof_qo5X5tRQXvkuuR1RzA", "review_id": "vM0ahTjVJo6DdjFs9AvgKA", "stars": 3, "date": "2012-04-16", "text": "The staff is friendly and will give you a smile. The store is clean. The plaza is very nice and a good place to shop for all kinds of things. That said, the food is typical of a chain style and reflects my 3 rating. I'm sure many people will enjoy the food. I just prefer a Pollo Asado Burrito from one of the local \"mom & pop\" shops. Overall, it's OK.", "type": "review", "business_id": "YL_EiYALmGUd1lm5HZgL3w"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "OvGwAmRJnUWBx9cy_bn5Qw", "review_id": "IYke8Lz-ukiHEox0Q201jg", "stars": 4, "date": "2008-02-21", "text": "I love eating at Byblos. The food there is great! I love their hummus w/meat & pine and their pita bread has always tasted pretty good to me. The tomato soup is awesome and the rest of their dishes are SO good. The one waiter everyone is talking about? I've never thought he was rude, he's just quiet and old. Gosh, give him a break! I don't know how most of these reviewers have never run into the owner. He's awesome! Half the time he's the one who will wait on you and he's super nice and friendly. He's always willing to make recommendations. Sure it's not in some upscale neighborhood, but the food is good.", "type": "review", "business_id": "Aicnm12Zped8nQFXyRRFvw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VA5zvXwaaj81_tjiQCH2mg", "review_id": "Fy_l9paD0RBj-bhidCcfUg", "stars": 4, "date": "2008-12-20", "text": "Tott's is this amazing little neighborhood Asian restaurant that has quickly become a favorite of mine!\nThe simple yet effective decor is vibrant without being tacky. The service is very friendly and helpful. They are always smiling and it actually seems sincere!\nThis is one of those places where you order your food from a cashier and they give you a number and you choose your seat from one of the 16 or so tables. There is a nice little patio as well. There are a couple of tasks you must do before they bring out your order. \n1. Fill your cup with your beverege of choice (Soft drinks and Tea only- no alcohol, hence only 4 stars). Do get a beverege as the food can be very hot if you like that way-AND I DO! And because I am a fool thinking it will never be hot enough, I grab a jar of the hot mustard and one of the Hot Chili paste to bring to my table. You can, of course, choose chopsticks or a fork. I usually start with the good intentions and select the chopsticks. I pretend I know exactly what I am doing. But these never work as I cannot get enough food into my mouth quick enough so I end up with at least 1 fork.\nI am impressed how quickly they bring your order to your table. I barely have time to do all of the above and get back to my table and they are bringing out a gorgeous plate of steaming Hot Korean with black bean sauce and tofu, or the yellow curry \"panang\" also with tofu. You can aslo get chicken, beef or fish. The meats are hand trimmed and do not have that grisle part that is such a turn off at other places. The vegetable are as bright and fresh as the smiles on the employees' faces.\nI must also confess my longing for PF Chang's or Pei wei has certainly diminished after discovering Tott's.\nTott's even has excellent Won Ton soup. Now if they could only get a beer and wine license.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "ca_Q9OGfyjwOnfvXqmhdIg", "review_id": "Q-rFjI37_DYuyZc_rFuCng", "stars": 3, "date": "2009-04-20", "text": "Let's start with an SAT-type question:\n\nScottsdale Stadium :: AT&T Park is like _______ :: Oakland Coliseum.\n\na) Oakland A's\nb) Rickey Henderson\nc) Phoenix Municipal Stadium\nd) Yankee Stadium\n\nIf you answered C, you, my friend are correct. And you're pretty smart, too. Give yourself a pat on the back.\n\nMuch like Oakland Coliseum, Phoenix Muni won't amaze you with state-of-the-art facilities, breathtaking views or spectacular nightlife nearby. What you get here is a functional, simple, 40-year-old ballpark that serves its purpose. The crowds here are much smaller than you would encounter at other parks, but it fits 6000-7000 people comfortably. Unless you are in the premium infield seats, you will be sitting on the aluminum benches or on the grassy knoll. Pick your poison, so to speak.\n\nWe always get the infield seats, because you can sit 12 rows behind home plate for under $20. I don't care how bad the economy is, it's a steal! Even if you sit directly behind home plate, you will most likely struggle to see the tiny outdated scoreboard screen in the centerfield. \n\nThere are no fancy food choices at Phoenix Muni. If you're not intimidated by enormous wieners, a footlong hot dog might be for you. Believe me when I say, you will not be able to eat more than two, no matter how much you love hot dogs. I am also a fan of the little dining area by the left field foul pole. You can sit there at a table with a giant umbrella, hide from the sun and sip your beverage of choice. If you're lucky, you can even watch the game from some of those seats.\n\nThe people who work here, from ushers to concession stand clerks, are incredibly nice. They really do want to make sure you have a great time at the game, and it shows.\n\nParking here is very easy. For $5, you can park in the lot right across the street. The lot rarely gets full, and you can always almost find a spot. I hear there are ways to find free parking if you are willing to walk a little more, but at $5, why would you? It's important to know, though, that the walk from the lot \"across the street\" from the ballpark will take you about 7 minutes. There is no crosswalk on the street, and you have to use that ridiculous pedestrian bridge they erected with the sole purpose of annoying most baseball fans.\n\nSo, +1 star for great seats, +1 star for cheap parking, -1 star for horrible scoreboard, -1 star for the pedestrian bridge. A-OK, 3 stars.", "type": "review", "business_id": "n-Q7d10K0h6PyNewmiHLyg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XqDh0QDMoMAaBvJcakze5A", "review_id": "SMTjk42KnUfJn1vLh8Y_eA", "stars": 1, "date": "2012-01-19", "text": "Prices are often way too high!", "type": "review", "business_id": "z7W0sUbrVi2k6R2BR5jtzw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "YMNY-K0D1DCe9pmaHRoiKQ", "stars": 4, "date": "2009-12-11", "text": "At first I was hesitant about trying Prado out because of some of the reviews. I got the impression that I may in for a hit-or-miss experience. And it was my fear that I'd catch one of their \"miss\" days. I was pleasantly surprised when I had an absolutely sublime meal! \n\nSince the menu changes nightly, I won't bore you with details of the meal. I'm a huge fan of restaurants using local, organic produce &/or meats....and I'm a bigger fan of Prado b/c of this! \n\nThe resort and the restaurant is extremely sexy! You really do feel as if you've traveled to Spain. I encourage people to take advantage of the local gem!!\n\nBon Appetite!", "type": "review", "business_id": "RLjA7TBXJfyqDfPuVCcrtQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "mu6AXWXmUiE2FVw_pYxHdA", "review_id": "NFW7WImcuAzYGO0P0BUmKA", "stars": 5, "date": "2010-04-22", "text": "Simply an AWESOME tuna sandwich! Great service, and the atmosphere was really cool. Just wondering what the difference is between pickles and cucumbers in brine. (50 cents, apparently)", "type": "review", "business_id": "UWrB5H3G-hhiHMy3iKV2ew"} +{"votes": {"funny": 17, "useful": 0, "cool": 0}, "user_id": "2UPPp-p0Yk7l56o75ZCIBg", "review_id": "Nr-6xqBN9XqBJXnCToYYKA", "stars": 1, "date": "2012-08-13", "text": "I brought my sweet sister in law shopping at this Forever 21 location. She had a bag full of goodies (several hundreds of dollars worth) from H&M. She stopped at Forever 21 and sat her bag on the ground right beside her while she tried on a pair of shoes. Her H&M bag was stolen during that brief moment that the bag was not in her arms.....and while this certainly was not the responsibility of Forever 21....we were so disappointed in the way the Forever 21 staff reacted. They did not call security, or the police, or even offer any condolences. They just shrugged their shoulders. My sister in law did love some of the fashions at Forever 21....but the store was such a mess. There were clothes all over the floor under each and every rack. There were way too few staff members working, and many who were working were \"socializing\" with one another instead of helping customers or maintaining the store inventory in a decent fashion. The only employees that were on task were: 1 at the checkout, and 1 at the fitting rooms - there was a band of 5 girls dressing one mannequin while the store was amidst in chaos (including someone stealing bags from other customers)..... So - if you choose to shop at this store - hold on to your bags :)", "type": "review", "business_id": "7lbvsGKzhjuX3oJtaXJvOg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ft-i74HyCpMDi3R7EDAUWA", "review_id": "LtAsU-F4DE0dhUWTL51YpQ", "stars": 4, "date": "2010-01-02", "text": "I love Zoya! She does a phenomenal pedicure and eyebrow wax. I never have to wait. It is very professional there. The decor is beautiful and I always relax when I'm there. Zoya told me today that she does Swedish massages at their sister salon which is right across the way in the same parking lot. They have a hair salon in the other location as well. \n\nI have been going there for a while for the Happy Feet pedicure. Best exfoliation, great neck massage and paraffin wax for the feet. \n\nAhhhhh...my feet are so happy right now!", "type": "review", "business_id": "UGogpZhk0pkBNdvigzTvng"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "_j4PdUTEw7N3NXQM628ZKA", "review_id": "9b55G_rAfvQIKc-MaOOLVQ", "stars": 4, "date": "2010-12-15", "text": "Made our way here last night for my Birthday Dinner. THANK GOD. I have been looking for a restaurant like this since I left Chicago 5 years ago. The style was perfect, the prices were not exorbitant, the food was delicious, the service was tremendous.\n\nWe had a table at 7, and even though we Happy Hour had passed, they still let us order off of the happy hour menu, so we had four courses for $30 a piece. We started with Spinach Artichoke DIp, each had a salad (I had the Bacon/Bleu Cheese/Walnut - YUM), then I had the Balsamic Ribeye... It was so delicious. \n\nOne complaint, half of my steak was medium, a quarter was rare, and the other quarter was practically blue, but it still tasted great. Oh - and the carrots were a little too sweet for me... They tasted like sweet potatoes....\n\nAnyway... For dessert we had the bread pudding which was the best damned bread pudding I have ever had. Add in the drinks (which were tasty) and our bill was still nothing too crazy.\n\nOur server was just the right combination of hands off and hands on, and i dug her big time. We ended up having a long leisurely meal, were there from 7-9, but it didn't feel like we were there a long time. It was just a nice relaxing meal...\n\nLoved it - best restaurant experience I've had since I moved here three years ago. Can't wait to go back.", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "-GuI1BlfyPGhvgYXA4LhSA", "review_id": "iL4a5Bzhv0FnpDLDP0Agbg", "stars": 3, "date": "2011-09-04", "text": "I went to Five Guys for the first time (North Scottsdale) to see what all the hubbub was and why everyone was comparing it to In 'N Out burger - a place I love and have been eating at for over 25 years (CA and AZ). \n\nPros: wider assortment of toppings and menu items, including the veggie sandwich (not a soy pattie - just veggies and cheese, if you want; extra menu items like jalape\u00f1os and hot sauce, grilled mushrooms, etc.; Cajun styled french fries (their small size is enormous).\n\nCons: more expensive than In 'N Out. \n\nNeutral: Thick burgers are more like your home grilled burgers, all well done and crispy on the edges - not like In \"N Out's thinner patties.\n\nI don't know why people compare the two places since the prices are not similar. Five Guys is good, but should be compared more to places like Fat Burger, regarding size and price of burger.\n\nI still prefer In \"N Out for taste and value.", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zGz5NI4sscO4_6YYH-qVtA", "review_id": "rl1D3Hsc4jwsEauUmAv-jA", "stars": 2, "date": "2011-10-02", "text": "So you already know it's a 50's diner with outdoor seating, and we're in the time of year now where sitting outside late night is nice especially after the club. I've come here a lot with friends late night, and the food was always scrumptious and service excellent, but after last night I MUST PROTEST.\n\nI ordered the Bourbon BBQ Wings, a promising title appealing to my tastes exactly. They arrive with a generous bowl of ranch and a few stalks of celery. I know most people don't eat the celery, maybe that's why, so I guess carrots were out of the question.\n\nTHE WINGS WERE FROM BABY CHICKENS!!!\nI was shocked. some of them (both sections) were not 1.5 inches long, I swear. The sauce was yummy BUT I'M ANGRY ABOUT THE WING SIZE!!!! \n\nCome on 5& Diner, you're better than Long Wong's, ACT LIKE IT and serve up goodness on all fronts!\n(See my scathing review on them as well.) I want so much to write a glowing review here but NO.\n\nSo my friend got the Southwestern eggrolls. They were sliced open diagonally and nicely presented on the plate. I tried one, and eventually my friend let me have the last 2. They were hard and irritating to eat, and tasted fine for tourists as it reminded me of Rubio's or Arriba's standard. I think Jack In The Box could've put out a better product overall.\n\nAnother friend got the chicken quesedilla.\nAlthough I didn't taste it, presentation looked nice with the pico and guac on the side. The quesedillas were a good size and thickness. My friend took half of it home.\n\nI can recommend the burgers, onion rings, and breakfasts.\n\nPrices went up a couple of years ago to an average $9.49 for a burger plate, and slightly less for appetizers and other things. Service is always good, but don't go if you're in a hurry and the place is packed.\n\nBOTTOM LINE.... choose wisely. Last night I chose.... POORLY.", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "OpjFNuQiyqh9Sms5Ex8Wxg", "review_id": "9mBDDkxKpuZ-bD3TmbaV5A", "stars": 4, "date": "2009-06-16", "text": "This could possibly be 5 stars. Driving by you would never know this restaurant serves excellent Italian food. It is rather small and has a very different decor from other Scottsdale restaurants. I went on a Friday night and there were not many people there and I have walked by on other weekend nights and it was the same result. \n\nRegardless of that the food was outstanding. I ordered a special, lobster risotto and it was superb. There are many other things on the menu which I would like to try as well. It is rather expensive, but well worth it. The service was also very quick, and it should be when there are not many people dining.", "type": "review", "business_id": "VGvieeQwktJPxLMq6I3tkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X0V2GK2cr2lDzttQKXD4JQ", "review_id": "7NHcsID9ZTebvaxm5NumoA", "stars": 2, "date": "2010-05-28", "text": "I recently went to The Breakfast Club for the first time with a good friend who I hadn't seen in awhile. It was a weekday and so, while it was still busy, we didn't have to wait to be seated. The food was good, but slightly over-priced. My biggest problem with the restaurant - the service. They were slow to deliver our drinks and food, yet once our food came, they were swarming around like bees every five minutes to take our plates so we could get out of there. I felt like they didn't care at all for the fact that I was having a nice morning with a good friend but instead wanted us to pay and leave. After we had been there for just over an hour and fifteen minutes, out waitress actually told us to leave the table and finish our conversation outside so they could seat other customers. We were mortified. I have NEVER been asked to leave a restaurant in my life. Needless to say, they didn't win a loyal customer with me.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ywFAzVgeC_taqNIY-b-awA", "review_id": "ih2Jw9TX1VRjnwDL21HbqQ", "stars": 5, "date": "2012-10-04", "text": "Recently was invited to this restaurant & found out that they have children's plates for adults or any age.\n\nIt was SUPER CHEAP & it included a drink with refills like tea or soda etc.\n\nWhat a deal!\n\nUnder 5. bucks including the drink.\n\nI will definitely be going back to any Cracker Barrel who has this deal because it is cheaper than fast food etc. or just about anywhere.", "type": "review", "business_id": "bDR6kF5Aw9guBkaahSAchw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ks5lPe_E14_-GheoA1A3UQ", "review_id": "l7dGGo2VxzLS0jQ9LCBlEQ", "stars": 5, "date": "2011-02-11", "text": "Oregano's is my FAVORITE restaurant in all of Tempe! The food is delicious - I've never been disappointed by a single appetizer, entr\u00e9e or desert! And since they've recently add Blue Moon beer on draft I could stay here on the patio all day. Bonus: The wait staff is incredibly fun and friendly. Just a really great place to dine!", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "sKXvBM91tMQZTS4bDsyZcg", "review_id": "YhkWc4Fdbb7zTyCKU2SOhA", "stars": 4, "date": "2011-10-10", "text": "So the other day, I was in the mood for sushi at my usual spot (Sakana). \n\nUnfortunately, they were closed for lunch, so the next choice was some pasta at Caffe Boa next door. Also closed for lunch. Double Shit!! \n\nPasta Pomodoro? Their tortellini alfredo rocks!! Then I find out all of their AZ locations closed. Triple shit!! \n\nStomach is growling and quickly getting pissed off. Okay, Haji Baba then. \n\nBessie gets me there in record time but alas, the place was PACKED, even for a 2pm lunch. What to do? \n\nWait...there's that little Vietnamese joint a few doors down, that I've always wanted to check out but just never did.\n\nWell, I guess they say better late than never for a reason. I popped in, grabbed a seat and was quickly served up one of my favorite Vietnamese dishes. Deelish is all I can say. Now I've got a new little spot to add to my local list of favorites.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Eo0o6m0gKBMgmooN_ZeFGw", "review_id": "wsL6xjTh8VTpDH1e85pwfw", "stars": 2, "date": "2009-05-15", "text": "Just not a great Sushi Roku location. The service was okay and the ambience was too - but the food wasn't fabulous and the sushi chef knew very little of the food he was serving. When sitting at the sushi bar in a 'fine dining' japanese restaurant you kind of expect the chefs to be spot on and knowlegable about the food. Not the case here. If you want to spend this kind of money, go to Roka Akur - it's fantastic and worth every penny.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zs9EphhkXylrxHCzxhC_ag", "review_id": "VkAofxxE0DgvQNZlKF3gEQ", "stars": 5, "date": "2011-03-20", "text": "I love this place. Every time I visit I come here. I did miss out of Bucket of Crab night :(", "type": "review", "business_id": "hkKvb6oXxn8ygoP5fFln1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "qA2FQ0aeKqZSnN2fKwHbcA", "stars": 4, "date": "2011-08-26", "text": "I really like this place! Plenty of room, very organized. And is willing to help you out. Price is very acceptable @ $7.00 a day. They have ear plugs, targets and beverages to purchase at a reasonable price. If it's your first time there is a 10 min video they want you to watch. It's diffidently a great place to go, just have to watch out for dumb A$$ like myself. I tend to have a major brain freeze. But the workers there are nice enough to let me know what I did wrong in a polite way. Give me time! I promise I won't shoot anyone! I'll get better.", "type": "review", "business_id": "kVHEdvgO-UyxfXC-2f7KuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r25GXBdaCjcBld3PrfDi5Q", "review_id": "yo4xovBRZsqd6pl8oMQ9Yg", "stars": 4, "date": "2012-12-21", "text": "I'm huge fan of this place. Its tough for me and my wife to Love this place due to the Gilty feeling of bad eating we get after visiting this establishment. The food is Outstanding and I've liked everything except the Catfish fried. My wife enjoys the catfish, but I think its lacking flavor, however they fry it to a cripy golden brown crust. I could just eat the crust and forget the fish. \n\nWe've been twice now and I'm sad to say that we pretty much ordered the same things twice. The garlic parmesan wings and honey habenero wings are our favorites (of course we haven't tried any others, so take it with a grain of salt) catfish, corn nuggets, fried okra, french fries, and coleslaw. And to finish it all off...the best Biscuits of all time, if you consider a biscuit a French dougnut.(beignet) a biscuit. Seriously the best thing ever, but you feel pretty guilty afterwards. \n\nMy recommendation is to hit the gym prior to going so you don't feel so guilty! \n\nBut what ever you do, GO......", "type": "review", "business_id": "a12JKFiqBVyaUfTWNaAzQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "MmaNK7CTSnO54uVi6te05A", "stars": 5, "date": "2011-04-09", "text": "Talk about one of the best burgers in town...in fact i think houstons and this place have the best burgers in phoenix!!!! I took one bite and i was in heaven...it was a whole new take on a burger but not too crazy!! I love the fries especially when you mix the sweet potato fries with the regular ones OMG!!! I like to dip them in ranch but you can select what you want to.dip them in...i have to thank.my sister for this place she introduced me!!! Its a great place to.go for lunch and dinner but it.is not very big so you may have to wait but its worth it!!! Its a fun place do not miss it...", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2EJbfAHmwxm_G6800s1nLw", "review_id": "hu1izY3YrDlr5C-VI08EmQ", "stars": 4, "date": "2012-07-17", "text": "Hungry and footsore near the end of a marathon shopping trip for the 13 year old, we decided to pause here for a bit of rest and refreshment, despite the low yelp ratings.\n\nWe had a decent experience here. Maybe they have made some improvements recently?\n\nI really enjoyed the little bit of complimentary bean dip that I was able to snatch between the giant scoops that my oldest son kept shoveling into his mouth. The salsa had a tasty kick to it, and the chips were extra large, thin, and crispy.\n\nThe eldest ordered the poco chimis off of the appetizer menu. Much as he liked them, he was full with 2 chimis left. My husband (who received the leftovers) found the filling a bit dry, and the jalapeno cream cheese too bland to deserve the 'jalapeno' in its name.\n\nMy green corn tamales were a tad sweet for my taste, reminiscent of El Torito sweet corn cake. No problem though, since the youngest gobbled up half! \n\nAmbiance was comfortable and service was polite and efficient. My only complaint is that they never refilled the chip bowl even though it ran empty before our orders came out.\n\n3.5 stars", "type": "review", "business_id": "J3INwTy4KZJ8aJwVoOqAJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "CB8dEDNiVqsTsfBIXYDAlQ", "stars": 4, "date": "2010-12-24", "text": "Great lunch buffet, for the price, you get a ton of different types of food to try. The naan is great and piping hot. I will say that their chicken tikki masala is not my favorite but overall for the ambiance, this place is super pretty and delicious!", "type": "review", "business_id": "_RBUU1y4yJrK0SPAd8z0-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6F-5GaueiVKkRg7LYTCfxQ", "review_id": "SnQMstxml4y7VBW8P0vyMg", "stars": 3, "date": "2012-10-20", "text": "We finally visited the new restaurant 3 1/2 years after the Richardson's fire. It is quite amazing how similar the new Richardson's looks and feels like the former landmark restaurant. Their service is great. We ordered a pizza and salad. I should have known better to order a pizza from a New Mexico style restaurant... roasted tomato sauce with New Mexico sausage and mozzarella. It brought back memories of conversations with my Papa debating whether Prego or Ragu was the better canned tomato sauce.", "type": "review", "business_id": "IdnYOlL9aDfMu_S2kcaUkQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 6}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "QG86VEqtP2eBN_UWc-LBjQ", "stars": 4, "date": "2010-08-11", "text": "My sister took me here last week its crazy that I haven't been yet right? This is her regular go to place. Not much I can say after so many reviews here already. The patio looked very nice I bet its the place to be when its cooler. It was kind of empty in here but it was late afternoon. My sis ordered us some Drunken Italian Sodas they were made super strong though usually this would not detour me however I had my child with me and had to drive all the way back home after. Basically it tasted like straight vodka in a giant glass it was a bit much for me mid day and after adding Sprite to it which I stole from my daughter I still couldn't drink it without feeling like I'd be a drunken Mexican after. I didn't understand this drink maybe someone can explain it to me? My sis told me their Sangria was good but I had no idea they made Caipirinha's next time that's what I get no question.\n The food: We had the garlic lemon hummus it was really good the ingredients separately didn't have much taste to them but together it was really nice the pita bread was excellent. The kid couldn't stop eating the hummus she got so full she barely touched her mac n cheese so we brought that home along w all the leftover hummus. Now on to the Tejano burger we decided to split. OMG it was so delicous I couldn't put it down and we both regretted having split it w each other. Extra star just for that burger alone you best try it if you haven't son!!!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wwykkLVCFm1tlNZdlEJQhA", "review_id": "rrac4n5rVenpMxZJYQJMOw", "stars": 5, "date": "2012-01-11", "text": "Dr Brodkin is one of the greatest doctor out there. She was voted two years in a row for arizona foothill top doctor and it shows!!! She is caring, and overall great doctor. She moved her office last year and wow did she change for the best. The staff is great her new nurses i love love love....i recommend Dr Brodkin to anyone who need a GYN....", "type": "review", "business_id": "SAjXnxuyScAsahI8p4D-UA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IqdFvfcjqZXuuomsyGyTsw", "review_id": "mdKlE62dlSTZZjo1Tw4KsQ", "stars": 4, "date": "2012-06-23", "text": "Good buffet, albeit it's a tad on the more expensive side in my opinion. We came here for dinner on a Sunday night for their \"Super Buffet\" which was $15.99 per person.\n\nThis buffet offers a large selection of food...hot entrees, made to order sushi, Mongolian BBQ, soup, fresh fruit and salad, and dessert. I liked the fried rice, chow mein, broccoli beef, string beans, and this dish with tofu. The egg drop soup was really good and the hot and sour soup was decent. \n\nFor a Chinese buffet, they offered some quality desserts since some of their offerings probably came from Costco like the red velvet cake and cream puffs. \n\nService was friendly and polite. Our waitress did a great job with clearing our plates and offering to refill our hot tea. (Hot tea was $1.60 per person, by the way.)\n\nThe restaurant is spacious and appeared to be well maintained. Parking is easy since there's plenty of spaces in the lot out front.", "type": "review", "business_id": "-Ogv7rpcgUHkFaSy3vD8Sw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "4Zk_SPnvJ8Ybdjwo4BOJ5A", "review_id": "a_3K4EHta-2rsTk9srS3GA", "stars": 5, "date": "2012-09-28", "text": "After shopping all over town and visiting every single shop in the phx area I stumbled into this little gem. Store was clean and only stocked with desirable items and lacked the items that just arent used by the majority, but I am sure could be ordered if needed. This planning I found easy to make my purchases in a quicker manner since I dont always have the time to sort through typical store junk, there just isnt any here! Only quality sought after items. Management is second to none and the business is family owned and operated. When you walk in your greeted and after a few visits by name even. This is a huge plus and isnt found anywhere else in town that I have seen. There is a prefered customer program and most livestock is local grown and special items are taken in a wish list and you can get called once available. After my month long search for the perfect store to set up my custom order that could also fulfill my stocking needs I couldnt get my order in fast enough for a complete custom setup installed and delivered. Pricing was fantastic and cheaper than anywhere in town and the ability to come in anytime and get advice no matter what the need is makes this shop feel like home when you walk in. If your looking for a one stop shop that is friendly, knowledgeable, and isnt out to empty your wallet in a bad way this is your place. Thanks again Reef Monsters for the help in sorting out what was an overwhelming amount of information into a custom tailoring to what I could handle and needed to continue in this hobby.", "type": "review", "business_id": "LjjcWJtE9RKdUMd25EsL5A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Obtx8kRJAwV8AlmNH3x0Rw", "review_id": "OmzL9YJufS2qzMcxd98vrA", "stars": 4, "date": "2010-04-07", "text": "We were staying at a hotel nearby and found the reviews for this spot. Boy are we glad that we did! We are constantly on the hunt for great tacos in any city, this was definitely one for our list. \nWe ate here for dinner both nights we were in town. The majority of the meals ordered were the 3 taco plates. One carne asada, marinated pork, and carnitas, served with yummy rice and beans- the tortillas were very good too. This is definitely the plate to get here. I think that the carne asada ones were the best. \nNormally we order all of our food medium spiced, but beware of the red hot sauce that they put on the tacos. My daughter somehow got an extra dose on her tacos and was having a hard time getting through the burn. This somehow justified the obscene amount of Fresca's ordered. :) If you are remotely sensitive to heat, order your sauce on the side.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "5j7qmDZTAetaH0yXFnAFyw", "review_id": "6oFiNU-pzlmkCtbTlkazFw", "stars": 2, "date": "2010-11-05", "text": "Nothing spectacular about the food...service was good and the fruity adult beverages/margaritas were tasty. Somehow, between 2 people, we ended up spending close to $50. We thought the waitress was being friendly, but after ordering drinks, it seemed like all she wanted to do was sell us more random crap to get a bigger tip. \nIt was a nice change to see hockey on the big screen...", "type": "review", "business_id": "EzAen1_nwVuiWPKBj9HUpQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "o3FDn0YCRJpGHMPrpuUUpg", "review_id": "dcW4NqwQR-YyfLHIf2H3EA", "stars": 5, "date": "2011-07-10", "text": "I absolutely love Chompies! It's the closest thing to a New York style deli that I have found in Phoenix. They have a very large and extensive menu and everything I've ordered has been really good.\n\nThey also have an amazing bakery that offers a very large assortment of tasty treats such as black and white cookies, red velvet cake, enormous \u00e9clairs, napoleons, and New York style cheese cake.\n\nI'd say that my favorite thing on the menu is the pastrami sandwich, although I recently tried the Jewish Sliders after seeing them on Man vs. Food. The sliders were really good, unlike any slider I have ever had. The challah bread and potato pancake gave these sliders a very unique flavor, very tasty. I also tried the Western Sliders and those are good as well. \n\nAlthough I live closer to their new location in Chandler, I still go to the Tempe location because of the hot ASU waitresses.\n\nChompies is the best!", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "9tVLD8PjH7Wwn_EAmCHzWA", "review_id": "GVYSUw4R2oPVyYF05AF69A", "stars": 5, "date": "2008-03-27", "text": "This is the best Asian restaurant in town! Previously Shanghai Palace, this out of the way restaurant serves up some of the best curry and pad Thai, that I have ever tasted in my life! The Panang Curry is so savory and aromatic, literally one of the best things I have ever had. I honestly crave this dish about twice a week.\nAlso any thing on the menu can be made vegetarian this is a huge bonus for all veggie's around town!\n The Chef-owner Tottie Kaya, is always very hospitable. She walks around to each table making sure everything is up to standard. I have never once had a bad experience at this delicious eatery. So if you love Asian cuisine, you must dine at Tottie's!", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "-eIsz3-MIQT6ueiM4MusHg", "review_id": "3uErFjbijWBFL9xGb__m5w", "stars": 3, "date": "2010-05-14", "text": "Mulligan's is that place in Scottsdale you don't think of going to when you're in the mood for dancing, which is mostly why I go out in Scottsdale at night. But I always find myself there either before or after my dance trips. I totally dig the atmosphere at Mulligan's - it's chill, unpretentious, and never obnoxiously crowded. The prices are decent and the location is pretty centralized. The DJ isn't always the best, but when you're with good friends and good drinks, Mulligan's makes you feel at home. \n\nMulligan's kind of has that dive bar feel but doesn't make you feel like you might get mugged and stabbed in the eye.", "type": "review", "business_id": "3g2ofV7mhEoPyfF7vFMObA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uRgzENYa6NhmTZ4wfJq77w", "review_id": "VSjXQh390mZuo8ioXZpzDQ", "stars": 5, "date": "2008-12-28", "text": "Best pizza I've had anywhere. Perfect, perfect and I mean perfect crust. Thin, chewy, smoky and sweet. Lots of interesting toppings that center around fresh, local produce. I deeply envy the regulars here.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Bmzq_nkjYqp8aWn12RJdhA", "review_id": "1QNTfkvcNNJgoIU140upLA", "stars": 4, "date": "2012-11-12", "text": "Though not the cleanest Denny's I've been to, the service is really nice so I'll keep coming back. \n\nThe dirty that I'm referring to is in between the double-pane windows is soap film that makes it look like the windows are really dirty, but I know it really isn't on the inside of the restaurant.", "type": "review", "business_id": "6I3FdazyK8qnqIYm11x9fQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rfay6nTu98uvRAZhVV4oVw", "review_id": "TZ3FBZBd98gYEd_N8veCAw", "stars": 4, "date": "2012-12-10", "text": "This place is a most see must do during xmas time! The staff is always friendly, drinks are reasonable and the place is always packed on the weekends. It is a must because of their un beatable holiday spirit. This place is top to bottom decked out with lights wrapping paper and anything shinny and colorful.", "type": "review", "business_id": "cjjZt2oOkk0F152RkQMfQw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WcTVz9XL7iRO9CcaNVhFBA", "review_id": "vvNDkB7OOjB5eReAau1xJQ", "stars": 5, "date": "2011-11-21", "text": "I have been going to the Matador since I was little when it was a little hole in the wall on 2nd Street. They have always had great Sonoran style Mexican food! It's always our go to place when we attend events downtown or have business to attend to. They also have the best hot sauce in town! As far as the service, the food comes out quickly and we never really have to wait long. If you're downtown and looking for great food I would highly recommend this place.", "type": "review", "business_id": "Y293fHh5SZ0_9BZm4M6BCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XqDh0QDMoMAaBvJcakze5A", "review_id": "RXjEzaESWb0vHXh6LobGDA", "stars": 5, "date": "2012-06-06", "text": "What an awesome neighborhood bar. I brought my little brother here when he was in town and the service was spectacular. For entertainment they have pool, darts, games and music. Our waitress Chris was more than attentive. I will defiantly be coming back!", "type": "review", "business_id": "vYvT8J9uEh4Fqt7f9ILKlA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "Fmvb3iCwRTocFTsJeC3zyg", "stars": 3, "date": "2011-02-27", "text": "This used to be my favorite fro-yo place. A couple of years ago, I would have given them a 4, but lately I am noticing there is no real rotation on the flavors. Always the typical cookie monster, chocolate and vanilla. My favorite is Pistachio, I haven't seen it here. I am addicted to fro-yo, but if I am going to indulge, it better be special. The location is nice, and I know I will be back if I am in the area and one of the cravings hits.", "type": "review", "business_id": "FkFjSrQx33Xn3yC-IUNjUQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "hjJPKQ1Ah91h3fVbc8GsOg", "review_id": "bDjE7tLwM2Ad21LfngonFA", "stars": 3, "date": "2011-06-06", "text": "After hitting up the bank to sign some paper work, I wanted to stop by the Biltmore for a quick lunch and had Paradise Bakery in mind. As I was making my way through, I encountered a new facade with Southwestern designs that I have never seen before. \"Cool!\" as I exclaimed to myself. \n\nIt looked intriguing enough that I went in to ask the hostess for a menu. After gazing around for a few minutes, the Chimichanga Entr\u00e9e caught my attention! Content I was! j'adore Chimis!\n\nAfter being seated in the, rather blandish, outdoor patio area with mistifiers cooling away, I put in my order: a Chimi and an Arnold Palmer.\n\nNot too long, my waitress brought out some cool, fresh salsa and chips. Nothing too dazzling, quite ordinary. Chips were crispy, oily, and a tad salty. Arnold palmer seemed to lack both the sweetness and citrus.\n\nNow come the Chimi with a side of rice and beans. Typical Mexican, you would think right? Well, up until I took my first bite into the rice! Puzzled face I was--like an Anime character. I steadily kept taking small bites after small bites, analyzing what in the heck I was eating. Generally, it was just sweet and overpowering what I would think a Mexican rice should be. The corn bits probably only enhanced the sweetness further! The waitress confirmed honey was used but I initially guessed coconut!\n\nThe beans with pieces of bacon was just simple and watery. At first, it seemed to have that smoky, cowboy-ish hint to it, but fell short of a decent side.\n\nThe Chimi was quite underwhelming in its overall taste. What blanketed this deep-fried burrito were green chili (tasteless for the most part), drizzle of this sweet white cream (unsure of what), and some white cheese (unsure). The tortilla shell was crisped enough and the chicken shred lacked the savoriness that I would have expected from a true Mexican joint.\n\nNothing made sense to me! Where was the Mexican? I tried very hard to find the positive in my meal. I quit half way to be honest. I hate to mention this, but I did garbled some of what I chewed back out to my plate. Overall, it missed the savoriness that would have saved the meal. I desperately wanted Tabasco sauce like it was the end of the world, but unfortunately it was too late.\n\nI explained my calm, analytical dining experience to my waitress and she was very understanding and was fine with removing the item from the bill. 5-stars for that.\n\nI really am unsure of returning as first impression is a pretty big deal to me. The happy hour menu did not look that appealing either.\n\nI guess the question is, how much can you expect out of Mexican-esque establishment that sits on a Fashion Park? Heed, heed, heed this review.", "type": "review", "business_id": "_-9pMxBWtG_x8l4rHWBasg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SSUp9ZVTgaxQ2SweskkO0g", "review_id": "QXL1CTFKnL52fAWeHgbMiA", "stars": 5, "date": "2010-09-02", "text": "unless you hate ice cream and friendly people you will love Papa Ed's! It's tucked away in Caitlin Court in downtown Glendale. Walking towards the front you can't help but notice all the love and care that went into the garden and flowers - the flower bed still makes me smile! Walking through the front door it's easy to forget where and when you are - the wood floors, Vintage coke machine and friendly staff all most made me forget why I was there... ICE CREAM. good selection and great ice cream.. \n\nNow let's talk about ice cream pie... Papa Ed's makes to order (with advance notice) ice cream pies. I love the Peanut butter cup with Oreo cookie crust. The lemon and Raspberry sorbet swirl in a graham cracker crust and my Holiday Favorite - Pumpkin Pie Ice Cream in a graham cracker crust!", "type": "review", "business_id": "nLL0sjLdZ13YdvhXKyss7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7brf9WC0Gr_7bUBXEHs9FA", "review_id": "brjKvcxggrZNmpguzUUT1w", "stars": 5, "date": "2009-12-31", "text": "I have been shopping at Lee Lee's for over ten years. The store stocks Chinese, Malaysian, Korean, Japanese, West Indian and other foods. You can usually find what you are looking for here. \n\nThe fish selection is vast, fresh and reasonably priced. \n\nThey have the finest selection of noodles and yerba mate tea!!!\n\nEnjoy", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "Kj6R_McnhgnZ-jOmVsnHRA", "stars": 5, "date": "2011-11-27", "text": "Y'know, rarely do I buy the \"extended warranty\" that most places try to peddle on you nowadays. If you buy the item from a reputable manufacturer, it should be unnecessary. \n\nIn the case of tires, I have to make an exception. \n\nYou can control the quality of tires you buy and put on your car, but not the quality of construction workers who don't know how to secure their nails, screws and bolts for travel on highways, streets and other local thoroughfares. They're a nefarious bunch for the most part. I'm not for extra taxes, but I'm contacting my local elected officials to institute a tax on all businesses who transport these little metal devils on the streets we drive...and stiff penalties/massive fines if they get caught dropping a load of these on the highway. \n\nFor the second time in a year, one of my tires caught one of the little buggers -- this last one was not a nail or screw, mind you, but a BOLT. I pulled my receipts from the glove compartment, used Yelp to find the nearest Discount Tire, and called for a tow. \n\nThe replacement certificates I got were $16 per tire (back in NC, but they're good here too), and worth every penny. The folks at this Discount Tire location were extremely nice, and had me in and out of there in about 30 minutes (with no appointment). There is even free water for customers. They were able to fix the tire instead of replacing it, which is fine (as long as it holds). \n\nEvery Discount Tire location I've visited has been great as far as the transparency of what you're getting, the quality of customer service, and the wait. In a town of 4.3 million people and never-ending road construction, I have to recommend the free replacement warranty on your tires, no matter where you buy them. I prefer getting mine from DT.", "type": "review", "business_id": "9mNTkR5w-47cG7gGIprT4A"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "-wwNJ0zd82_q8Gh5XXqAEw", "review_id": "aqcX3eFZTxAkm99iQKre2w", "stars": 3, "date": "2010-08-21", "text": "Came in with high expectations.\n\nWonderful surroundings, I love the New York concept here. And the area attracts a higher quality of person, which appeals to me.\n\nPlace was packed on a Friday night of course , drinks were good, lots of attractive people, and a FABULOUS band playing.\n\nHowever, the energy/vibe in the room didn't match the band's energy. There were many 40+ something men going after early to mid 20s girls/women. That resonated throughout the place. I actually walked around the entire venue to see if I \"felt\" differently, but nope it was all over. \n\nNot only that but people were indifferent about dancing in groups with strangers. I was there with my wife and she doesn't really dance so I tried to casually get into a group of 3 or 4 and there was no welcoming. I was disappointed.\n\nSo we left after maybe 30-45 minutes, probably never to return, unless people start raving about the venue, which will mean either the people changed or new people have discovered it.", "type": "review", "business_id": "ttLtsY1S2Angj6hvEdzwDQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "vWCksqJJfYjGGdD-yb9qGA", "review_id": "LE84qZ4F9Q4PeNiIHy0PNA", "stars": 3, "date": "2008-06-17", "text": "So, my eye has been bothering me for months now and i decided to go there to have it checked out again. Yes - Again! I went there when it started first and had it looked at - \"Nothing wrong, here are some artificial tear drops.\" Humm ok. Months later i am still in pain. So, i call and ask for appointment with another Doc. I show up there fashionably 10 min early, check in, put my ass in the chair and wait. And wait. And wait some more, for the total of 40+ min. Aaaaaalright, i had worse waits before. So i go in and some super unpleasant lady asks me some questions and leaves. Then Doc comes in and does whatever they do there. Sure enough there is some other elderly chick there in tow for some reason. Just standing there glaring. Geesh What is up with that?\n\nSo, anyhow - 3 stars! For the long wait and super unpleasant stuff. Where they found those witches anyhow? \n\n\"Its alright\"", "type": "review", "business_id": "lgbKg9Nnqa4n3waMex2etg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZqLf-FPtyNpnkYoHOH490g", "review_id": "yKY_1a3ZKrVmPOEK7MluIQ", "stars": 3, "date": "2008-11-17", "text": "I had lunch at Villalpando's with a group of co-workers and this place is A-OK. The food wasn't spectacular, but everyone was satisfied with it and the prices are reasonable. The restaraunt was not very busy which makes it an easy place to go to with a large group. The service was friendly and had no problem with making substitutions to the menu items. I do like that they offer chile relleno that's not breaded and fried!", "type": "review", "business_id": "LsHqtkdZPorIC9xOZEpz6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "acOfAooftS7jdWlhyI0CQw", "review_id": "IS2G_age9UkbygBMZ_sZfQ", "stars": 5, "date": "2009-06-08", "text": "Best whole in the wall Chinese food in the west valley! I have been going here as a kid and I would go there again and again. Take out is great and I would recommend getting take out there. Now, eating there I might not suggest, taking the food home is awesome!", "type": "review", "business_id": "C0Oax-LBEFf0mmPSugymEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tmenRuxwRehYPOYOPjO6uQ", "review_id": "ApUoLY9j4GB4UCZQKCl2tA", "stars": 5, "date": "2012-09-03", "text": "Beautiful hotel, great rooms, best views out of the resorts in the immediate area. Service is comparable to a Ritz Carlton. Very understated and clean feeling, yet still over the top luxurious.", "type": "review", "business_id": "Jc_DTEvDNo0jQiYjJt_BCw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "XB0bnayqaDoCuiJI6P503g", "stars": 4, "date": "2011-04-10", "text": "My super close, local taco shop. For me, consistency is key, and Filiberto's is always a step above most other restaurants ending with \"to's\" in that regard. I'm fairly mental for their Chicken Soft Tacos on corn tortillas. Larger than a typical street taco, they are almost sized more like a mini burrito - Shredded Chicken, a red pepper sauce, lettuce, and melted cheddar = AWESOME. Tuesdays they are only $1, all day! Finally their Adobada tacos are a bargain at thrice the price. Avoid the Chili Relleno burrito, however. It may be one of the worst things to ever get passed through a drive-thru window.", "type": "review", "business_id": "1HNEj6kcEw369RX9Vlcixw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Bq6IP1DqzchTmpePXnOfvA", "review_id": "HOeqfwT3dhxxxBoWi6CETg", "stars": 2, "date": "2010-06-04", "text": "Stayed for a few days. Was not impressed. I prefer Marriott, but was not available. The room was clean and check in was good. The pool and fitness center sucked. I had dinner in the restaurant, a hamburger. It was good. Over all downtown Phoenix sucks, nothing to do after 6PM.", "type": "review", "business_id": "V7Da92RVtaWGTL6GNkPT8A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "zNboC5RhzoDLh-CffdIMzA", "review_id": "eJoSw-0dNiEkJVBSEV2inQ", "stars": 4, "date": "2011-06-14", "text": "I'm a bit of a sandwich addict. This place has the BEST tuna in town, hands down! Cheaper than Jimmy Johns, a bit more than Subway - but the fresh, locally sourced ingredients make up for it. It gets a little packed at lunch hour, so I recommend calling or faxing your order in first. \n\nTry the #4 or #10! The potato salad is also amazing. I have not had a chance to make it in for breakfast, but I want to. A few times, I ended up going down the street to the second location because they ran out of bread (they are that good). The other location is a lot less busy and you might get hit on by one of the dudes there, but this one has Renee behind the register and she rocks (and also owns).", "type": "review", "business_id": "YqcPBiZMeCjZFlJlA28zwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "-2jevGd5B6dqAT7AwBW6lA", "review_id": "5OS9zcOMFxDHemh5VIzIyQ", "stars": 2, "date": "2012-06-21", "text": "Beer Selection 10/10 however service is 1/10. Staff lacks product knowledge. Specials are not mentioned. Wait time is long. Staff makes you feel like they are doing you a favor by taking your order.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U3uT-Phb8iL2iuZpAROZlg", "review_id": "cMiI02mYDrr7fWJyTEz1YA", "stars": 3, "date": "2010-02-16", "text": "I went here due to a Restaurant.com coupon. The menu was expensive, which made me think that it was a fancy place, but it turns out that the food was expensive because it was a restaurant inside a hotel! It was inside the Sheraton and I didn't see any signs outside indicating it was there. We'd made reservations since it was a Friday night, but they really weren't necessary, as there were only two other families in the restaurant. We'd dressed up. We were the only ones.\n\nThe restaurant area was really very modern beautiful. They'd made good use of lighting effects and there was a large, full bar wrapped along the back portion.\n\nWe ordered the Pan-Seared Cheese (which were basically fried cheese poppers - delicious, but definitely overpriced considering only 4 of them came on a plate) as an appetizer. My date ordered the Baron's Burger (your basic burger), and I ordered the Valley of the Sun Ribs. The ribs were a little dry, but I really loved the \"Arizona croquette\" that came with them. It was fried crispy on the outside with creamy mashed potatoes on the inside.\n\nWith the restaurant.com coupon, the meal was reasonably priced, but without it, I would have felt a little ripped off.", "type": "review", "business_id": "1DjRf3AdYpdlC1Df9KD6rA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "6OWHDbEq23f24Vki_veHBA", "review_id": "Q-DQal55CVKqAvAhRZkWMQ", "stars": 4, "date": "2011-02-24", "text": "This was my second time dining at this Benihana (not my first teppanyaki experience), and we were out for one of my bf Sarah's birthday. We had a 7:30 reservation, and were seated at around 7:40 (why they make reservations, who knows?). \n\nThere were six of us, and another couple was seated at our table. One of my gripes with this style of cooking, is that the dining space is super tiny. With all of our drinks (one each) at the table, there was hardly any room for error. Either way, our server was super nice and took very good care of us. The meal was good, albeit expensive, which is what one should expect when going to Beniana's. Everything was cooked great though, very fresh and yummy. This is definitely a place that you come for the experience as well as the food.", "type": "review", "business_id": "TMZP6Kzkc-FytzgbgIC9JA"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "FM-uVqNpzz1X4N9u5X4IAQ", "stars": 5, "date": "2012-07-19", "text": "I'm in (puppy) love with the new Wag N'Wash in Scottsdale...\n\nI'd been to the Phoenix location years ago and remember wishing they were closer to my home, and my wish was granted... this new location is less than a mile from where I live!\n\nMinnie and I popped in a few weeks back for a self-serve bath. I initially called to see if a groomer was in, but they were booked out for weeks. Doing it myself was actually not only cheaper, but it was fun... and a good bonding experience for me and Min as well. Sara helped us out and explained our options. We decided on the ultimate wash which included an extremely efficient shampoo and conditioner, brushes, towels, cologne, etc... It was easy and quick - bonus! Minnie was clean and fresh within 20 minutes or so!\n\nOf course we spent a tad bit more time at the store doing some shopping and I was impressed with the dog food selection, homemade treats, eco-friendly collars and leashes, etc...\n\nI'll definitely head back to Wag N' Wash again really soon... so psyched that they moved to my 'hood!", "type": "review", "business_id": "LEQUQuNEByxWNpv4eWYq1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8U6I0GuBasZa9rapy2H-8A", "review_id": "w8tpt4mg3nlYXoG7LC6cVg", "stars": 5, "date": "2011-08-15", "text": "Great food, great Sangria, great live music, great vibe, great service EXCLAMATION MARK. Overall it was a great way to spend a Sunday afternoon.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aom-4my104ueMEqRBf3log", "review_id": "jqgQg-i2lxWVKFN7ciZmjA", "stars": 5, "date": "2012-07-07", "text": "Amazing. Romantic!", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "-qEO4PkRNlkmQKvpB0Im2Q", "review_id": "JnF3vwi8TB-H07oS41AKbA", "stars": 4, "date": "2011-03-28", "text": "I have been here three times now. Each time I brought a different guest. I have become a huge fan of their Green Chili Burger (I cant remember the correct name). Sweet potato tater tots and the sweet potato french fries are great. The chicken sandwiches rock, as well. \n\nI like the venue. And, I have always liked the service. I keep coming back here because everyone has enjoyed it, found something on the menu they like, and I often crave that burger. Give RnR a shot!!", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "4Q3pqQ-WR7kSBJyhQvRipw", "review_id": "coQQbIXXnMPwHWto9j-XrQ", "stars": 4, "date": "2012-02-29", "text": "This place is pretty darn good, if your into bbq. My husband ordered a burger with bacon, brisket and cheese, this was very tasty! I ordered the bbq chicken salad, room for improvement here. It was plenty big, but lacked in significant flavor. Mostly lettuce, a small amount of corn, almost nothing else to speak of. The reason I gave it four stars is because of the burger and fries that were pretty awesome. I guess it's just not a place for salads. The customer service was great as well. They were training a new girl, but she had a wonderful attitude.", "type": "review", "business_id": "sMO71vGV8wkKujOle3-v7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SqE440A80WYwajn_qTM9SA", "review_id": "-anI_3FEizR1wNUkXRRmcg", "stars": 5, "date": "2012-05-29", "text": "Absolute greatness!!!\n\nService: friendly\n\nFood: TRY the faux chicken wings (I crave this)\nKung pao noodles\nVegan chilli fries\n\nAmbiance - A+\n\nTip: don't order the faux chicken wings Togo. Soggy experience plus they add the carrots, cucumber, celery in the box and close it. Equals the case of raw cooked veggies. \n\nGo next door to nami for dessert!!", "type": "review", "business_id": "0dORc6ckZw5HezR3BuSsqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "Jz3RU93vI7YWcfOpbe9tQw", "stars": 5, "date": "2011-05-17", "text": "Tried the Restaurant Week special, and chose the Stetson chopped salad, mixed mushrooms with polenta, and bread pudding. The Stetson chopped was amazing. The preparation is beautiful when they bring it out, and then the taste is the perfect mix of sweet, savory, crunchy, soft once the salad is mixed up. I tried some of the testosterone salad, which was decent, and filled with a lot of well prepared beef, but it didn't quite compare to the chopped salad. \n\nJust as a general side note, if you choose the restaurant week menu and have the chopped salad and then the mushrooms, I think the flavor of the chopped salad is more bold than the mushrooms, so the mushrooms will taste bland to you. This happened to me as I transitioned from the salad to main dish, but when I took the mushrooms home in a to go box and ate them later, the more delicate flavor showed through and I appreciated it a lot more. \n\nThe bread pudding was amazing. Perfectly moist, with lots of flavor, and not too sweet. \n\nService was excellent (Thanks Owen!), and along with the extensive selection of wines, they also have some more unique beers such as lambic, as well as a nice selection of non alcoholic sodas (The cream soda is locally made and very tasty!)", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5RxpP2Woo7CpOGUmKgDyAw", "review_id": "BTI97Zws3dNdwM-u6uJxhw", "stars": 4, "date": "2008-11-01", "text": "Some amazing friends of mine surprised me and set up a whole birthday dinner at Jug 'n Barrel! This was my first time here and was shocked at how cute the place was. Even in a strip mall it actually had a fireplace which gave it a very cozy feel. The wine list is great and not too intimidating. We had a great server who even put together a wine flight to match my sweet tooth. The only thing that knocks a star (More like 1.5 stars) off the rating is the completely average food. We had a group of about 12 and ordered several appetizers and all of us ordered entrees. I don't think any of us were blown away by our meals. \n\nAlthough I will not return for a meal, I would return for wine with friends.", "type": "review", "business_id": "-_Ke8q969OAwEE_-U0qUjw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "hShE1Px4tDIo0B1eMG92vw", "stars": 3, "date": "2011-01-05", "text": "I see one word come up again and again in the reviews for this place: \"Cute\".\n\nWell, it is cute. The lighting and furniture and concept are happy, kind and appealing in an innocent way. The patio is cute, too.\n\nAnd it's not Applebee's. Oftentimes I'll be with a group of people trying to decide where to eat and drink. Someone will say \"Applebee's at Central and Camelback\". There will be groans. Then someone will think of Maizie's across the street and the response is \"well, it's not Applebee's\". Then we go there.\n\nAside from that, ummm . . . well . . . . .", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KsQQOQ3ngmh_Yk6RmTo2ug", "review_id": "QqGwjNJQZudq6lOLF3PWHg", "stars": 4, "date": "2012-02-18", "text": "Went here tonight with a friend and we had a wonderful experience! We decided to start with the calamari which was just ok but I am more partial to the fried versions so that could have been part of the problem it was a little on the rubbery side and wasn't packed full of flavor. The bread that came with it though was absolutely amazing, hands down one of the best breads I have ever had. It also had a mini salad with it that had a wonderful dressing so we focused more on the bread and salad as opposed to the calamari. For dinner I decided to go with the lamb and potatoes which was 3.5/5 stars. It had decent flavor but I definitely have had better. The potatoes were very delicious though :) My friend had the duck and potatoes and it wasn't gamey and fell right off the bone which was great. It had good flavor but once again I have had better. For desert I got the pear/almond pastry(tart? can't remember) and it was absolutely amazing!! Soooo delicious and had a great balance of sweetness and was the perfect size. My friend got the blueberry and lavender desert with red cake and white chocolate which was very good as well and you could taste the lavender which was delicious but overall I don't think I would have been able to eat the entire thing myself as the sweetness level was very high.\n\nThis was a very cute restaurant and the staff was wonderful and very helpful. We had a great experience here and are looking forward to returning! I definitely recommend people try this!", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qX-uubS-40UXci2goy4LGA", "review_id": "bHBpN81urn3DhZfDrx9L8g", "stars": 4, "date": "2009-02-13", "text": "Cool stable up in Cave Creek where my wife and I took a sunset ride. Very casual environment with some folks who seem to like what they're doing. \n\nI got a horse named Sox who wanted to move forward all the time, but was easy to control. Our guide was very informative and casual at once, had fun with us and did a great job including everyone. \n\nThat pig is humongous! Easily the biggest pig I've ever seen. I can't believe that guy can walk around. I want a pig like that.", "type": "review", "business_id": "OzX6PCBFBAwqyTCN_EACtg"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "bHoKy2Dt9lPdZRLJc0NGTA", "stars": 3, "date": "2008-06-30", "text": "Side Door, West on Hayde, a small location that does it right. \n If you respect the Chicago area you will recognize Vienna beef right away. \n\nI really enjoy the italian beef at this location, its hard to find a place that serves Italian Beef (see Defalcos Scottsdale Rd). Bianca was our server and was very helpful for my first time, at the restaurant. If you live in the area check this place out for a quick bite to eat. \n\nWhere are all the other reviews?", "type": "review", "business_id": "IGrp61aiyR-PtL581brrcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oJTwHtNlipl1iqaFV7HHZA", "review_id": "hiF2ACdSzB-08TIiBls1lQ", "stars": 4, "date": "2011-10-01", "text": "This isn't your typical bbq place, where you wear bibs and there's country music playing and bbq sauce flying everywhere - that's how we do it in Texas. At Bobby Q's, its more formal; there's a nice ambience, there's a full bar, and you eat with forks and knives. \n\nThe Pros:\nThe great service\nThe 10% off by checking in on yelp - yay!\nThe complimentary cinnimon sugar donuts at the end which are HOME MADE - dayum, those things were awesome\nThe pineapple drink - its a real pineapple filled with a ton of alcohol but guess what? It tastes like juice...which means its dangerous. Drink at your caution.\n\nCons\nTheir sides could be better - The mac and cheese was way too thick and unfortunately, didn't match the rave reviews. \n\nAnother interesting fact - there's a club next door so you can get your grub and then dance it off", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "2dZwxXz1ULr_SQ7ZDCAoRA", "stars": 3, "date": "2011-12-01", "text": "I came here with a friend for a Groupon dinner. We got an appetizer assortment , an entree each, and a house margarita. The app plate came with mini chimichangs (yay), chicken taquitos (yay), cheese quesadilla (nay), and wings (ok). I had a decent chicken fajita, and my friend loved her steak fajitas. The drinks were a little too strong in my opinion. Overall, I would need another try at this place without the Groupon deal, and see if they can execute more flavorful food.", "type": "review", "business_id": "BFZHdg2TRrgw56CyqkSryA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "7z6uuJ3fuaurG4dmdGidJw", "review_id": "8BiDORbHvGzhrPGbVKiTEQ", "stars": 2, "date": "2011-05-02", "text": "Get the White Chocolate but leave the Strawberries and Cream flavor, too faux-berry/chemical tasting.", "type": "review", "business_id": "sAwxt4I4gTiL-08nyarJbg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "BkdQfuEXY8k1karD0R9T1w", "review_id": "dpycAue1wVYLP0_Js18Avg", "stars": 5, "date": "2009-04-27", "text": "Being English and missing a lot of the things we can't get over here we were delighted to have found this place. I have not tried all of the pasties and have stuck to the traditional ones that we get at home, i.e, cheese and onion and cornish and they are very good!! I sent my husband there to buy their half baked ones so we could freeze them and have whenever we get the craving and I ended up ordering $80 worth without any regrets. Needless to say my freezer is full of pasties and I even have a couple of ones I have not tasted before, so looking forward to trying those. Have not eaten in the place either but quite frankly the food is that good I don't it would matter what it's like inside. Also just noticed this is the Mesa shop we have only bought from the newly opened on in Tempe.", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WnrKtdSeJhh_H1XM3oOXgg", "review_id": "_7hvqxBUo009MXtcBnE4AA", "stars": 2, "date": "2009-02-21", "text": "Had a couple of happy hour apps here, all flavorless. Bacon wrapped scallops: bacon undercooked, scallop overcooked. Seared Ahi Tuna: flavorless. Pork sliders: Not bad, but not memorable. Service was good. Go to Tutti Santi in the same mall instead.", "type": "review", "business_id": "cU6u5Plu0fD2fIvLig7z1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D2NKLp8yrK-49RKslrOnpw", "review_id": "Ij3tYiITRFl6RyMT7lHvwQ", "stars": 4, "date": "2011-02-09", "text": "I had my rehersal dinner here for my wedding. I had a lot of people coming in from out of town and staying at the Vally Ho so we chose this place because it was within walking distance. I must say I was hesitant because I went with my then fiance (now husband) for dinner one night just to check it out and I was not impressed with the food. However my very large group was so well accomodated, I couldn't have asked for more. I would hightly recommend getting the hors d'oeurves packages that they offer. A great price and something for everyone, they can get a plate and munch at bar tops with drinks while talking to everyone. It was like having a bar with drinks and food just for my wedding party and family. A truly great experience and I look forward to using this restaurant in the future for any event that requires a great atmosphere with great food and great service, for a large party.", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "CEwceGp5g2Qg1pMFkiMuaA", "stars": 4, "date": "2011-05-07", "text": "Last night was my first adult play experience. I have been to the theater to see the Nutcracker when I was a kid and I saw the Lion King in New York when I was a kid as well. I remember them being fun, but that's about the extent of my memories of the theater. There happened to be a groupon for the play \"The Mystery of Irma Vep\" that my mom purchased for the four of us (mom, myself, husband, sister) to attend. \n\nWe got there a bit early after dinner and walked around the theater looking at the art that was up around the building. There were places you could grab a drink and relax before the show. At our call time we went in and found our seats. We were up on the balcony in the fifth row pretty much right in the center. We had really good seats. The only thing about this theater that made me uncomfortable and keeps it from attaining that fifth star were first of all the seats. The backs were extremely straight and having a back condition it makes sitting up that straight difficult for long periods of time. The second thing that was a bit uncomfortable was the temperature of the theater. It was a bit warmer than I would have liked. I left coated in a film of sweat. Not pleasant. I was nervous I wasn't dressed appropriately having never been to the theater before, I went in jeans and a t-shirt, but I am glad now that I did because it would have been much more uncomfortable in one of my nice silk dresses than in jeans. \n\nHowever the show was hilarious. The part that made it for me was when one of the characters started singing the Rebecca Black \"Friday\" song. Classic! Most of the people in the theater didn't get the reference so there were only a few pockets of young people laughing when it happened. But I found it to be a nice touch and after a play full of references I didn't get, I liked that there was something for us young folk thrown in. The rest of the show was funny, and I am glad that I got to experience it. \n\nAfter coming here I am interested in becoming more active in plays and am looking into seeing a ballet soon. All of us really enjoyed this, and I was surprised my husband liked this as much as he did. A good time had by all!", "type": "review", "business_id": "RA2EuX04SHqmayKpLhpNvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jXGaZVodhyHZ_5r7GzxrUg", "review_id": "9VoFyB96a1e9kgrTSpqOXg", "stars": 4, "date": "2010-12-19", "text": "We go to Fresh Wasabi a lot and usually it's the same thing...the service is not the fastest on the planet, but when you are there with good company you hardly notice. Their sushi is amazing and they have a perfectly priced menu. Love it!", "type": "review", "business_id": "0qUesn1TBPpPjW20h5Lqfg"} +{"votes": {"funny": 10, "useful": 4, "cool": 5}, "user_id": "y9IKf7VckFc-fesWuDwgxg", "review_id": "cb34fx-bkonWhxJ5lBHQ9Q", "stars": 4, "date": "2008-09-23", "text": "Ok, so I've just come to the conclusion that it's not me....... it's YOU.\n\nI just don't like other peoples used, worn, busted up shit. That said, I really like My Sisters Closet. I've only been in a couple of times but I know potential when I see it in the form of a $400 Louis Vuitton bag. ( I wouldn't purchase it but I liked that it was there) I did pick up a pair of designer (not sure which one, don't really care) sunglasses for $14. Sure, they are probably *gasp* \"last season's\" or whatever but I don't care. They look hot and they cover almost my entire face which is something I look for in shades.\n\nI will be back soon to see what other goodies I can find. That $400 Louis really made me nervous though. Who has so much dough that they can just drop a perfectly good $1200 bag at consignment??........ and are they interested in adopting or marrying me...", "type": "review", "business_id": "OkRzw22eDg45do8i-1jHow"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "k7gP5z86RNFQuYAOTDAjXg", "review_id": "QOKN3doQrjNcLI9PbNXegQ", "stars": 5, "date": "2009-01-02", "text": "Even though the new place is limited on seating the food more than makes up the difference. \n\nI took my wife and kids for lunch. We had some pulled pork and beef brisket sandwiches, fresh made slaw, and mac and cheese made from scratch like mom used to make. The kids gobbled up the mac and cheese. The meat was definately cooked with love. \n\nGrady's makes their own signature sauce in several varieties. They sell bottles of it as well. I liked mixing the Hot with the Super Hot to make that pork melt that much better in my mouth.\n\nI also noticed they do catering. I've had events catered by some other BBQ joints before, but this food is much better quality and I think I can woo the crowds with Grady's BBQ.\n\nI fully recommend stopping into my new favorite barbeque place in Arizona.\n\nThanks for making good food Grady. We all enjoyed it and writing this made me hungry for more.", "type": "review", "business_id": "Pju_pKfvEnUYV9wMVNsacg"} +{"votes": {"funny": 6, "useful": 5, "cool": 5}, "user_id": "5kJYTUtFUJT24dWNs6eW8w", "review_id": "mbWqhyCAB9kb9VS837WPMA", "stars": 2, "date": "2008-09-28", "text": "Jewish girls in Chinese dresses serving Japanese food. If that isn't a recipe for confusion, I don't know what is.\n\nToo bad, really. Because when they first opened up, they had a real Japanese chef who had a respectable career and was trying to make actual Japanese cuisine. He naturally didn't last long in this 1980s pseudo-asian theme park environment. Remember when the owner used to intermittently drop the screens down and fire up the THX system and play movie trailers from last year? The chefs couldn't even see their hands. Now that's setting your priorities!\n\nHappy hour and late night patio is this place's saving grace (for others, not for me). But it's so far from Japanese food/sushi as to make them guilty of false advertising. See my Stingray review for a similar take on the food experience. If you FAIL rice, you FAIL sushi.", "type": "review", "business_id": "NDKkce5Au-o_OhIt5f2ZBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "_DYMS_Mi0ddx_XL5XOy7VA", "stars": 5, "date": "2010-06-30", "text": "I love love love the chicken & hummus appetizer. Its served w/ sauteed spinach and pita. Although its an app, its large enough for a light meal. Most times, I get that w/ the beet salad and split it w/ a friend. Perfect. \n\nFor those of you who avoid beets, I think you'll change your mind w/ this salad. The beets are sweet like candy. Served w/ feta, mandarin oranges, candied pecans and a very unique pear dressing, you forget you're eating healthy. I've been trying to harvest the pear vinaigrette recipe forever!!! They won't give up the secret sauce! :( \n\nEnjoy!", "type": "review", "business_id": "XeoeF0twXRV4mUZJgIjc8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OhaT3fcYxY1bFdXapGzHag", "review_id": "j86wTgJqxuIm-6jtMnQlEw", "stars": 4, "date": "2012-11-25", "text": "Cheap and delicious! Can't beat that.", "type": "review", "business_id": "qrapwnls-3IMg-iaXhkQKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yLUMLAo-qh8-g54wGxZClg", "review_id": "dboSdSJdr0X0aPYlH3anbQ", "stars": 4, "date": "2012-11-01", "text": "Consistently great service. Pretty standard food quality for a high end chain. Have really enjoyed this location both when busy and quiet. Cocktails aren't particularly exciting or strong, but a great wine selection makes up for it. Best way to describe the experience, 'consistent'.", "type": "review", "business_id": "sbjb1qNUcqQomJvcgPuJCg"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "waD2euOMPTnTzQ0thq3H6Q", "review_id": "svcg6kHypVP3hipG722Lrg", "stars": 3, "date": "2009-05-13", "text": "Their food isn't bad, it's pretty hard to mess up gyros, rice, salad, and fries. When it comes to this type of food it really comes down to preference. For me, I didn't care for this place. I like crispy fries, their fries are soggy. I like Beef & Lamb gyros, theirs are Beef only. I like a mixed green salad with light onion, they serve a shredded romaine salad with heavy onion. Their prices are fair, portions large, and service friendly, it's just not for me. They did have a lot of sandwiches and burgers that looked good, if that's your thing.", "type": "review", "business_id": "uyuiIvQ3aWZxc1-2i_dQtQ"} +{"votes": {"funny": 6, "useful": 3, "cool": 4}, "user_id": "gq_G5VCDziyEV2-bzGuqzw", "review_id": "rba5dGcJrTPuaA4ScMiRIQ", "stars": 5, "date": "2008-01-08", "text": "I have shared many an awful, hungover morning with my favorite stars from the Gay Corridor. The service can be on the scary tweaker side, but it's a good, simple breakfast that doesn't stress my dehydrated mind to find deliciousness. They've also many different healthy options, not that I've ever done more than glance at those, but it's wonderful nonetheless. It's the crown and glory of Park Central, and the only reason I still consider Park Central an actual place, as opposed to the reality of it just being a bad idea.", "type": "review", "business_id": "4meJyPOhuAKzywUJTmu2hw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "d2RAl63RTdfZF7kcuKcj-g", "review_id": "_q3Mrk2eZpVREwmTle635Q", "stars": 2, "date": "2009-06-23", "text": "Five bucks for a bottle of Miller Lite says pretty much everything you need to know about this place.\n\nAlso, if you are planning on attending a show here, plan on paying for parking.\n\nI have seen some terrible sound guys here, but it's hard to say if that is the fault of the Marquee - a lot of bands that would play here tour with sound people.\n\nThe majority of the problems here are problems with venues of this size everywhere in the country - the parking, the over-priced shitty beer, the strip-search upon entry, the lack of re-entry.\n\nStill, if there was any competition for a venue in that part of the Valley that could handle bands that are as popular as the bands that play at the Marquee, they'd be hard-pressed to do a less-enthusiastic job of it.\n\nAlso, the sloped floors make it easier to see a band from further away, but they also can KILL your back.", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "btTx6B1JDp0cAiGtJ21xsQ", "review_id": "23OvLE4OnBydhUSaFDWP1Q", "stars": 3, "date": "2011-09-20", "text": "The pizza here is average. It's not bad, but it's not the best pizza I've ever had, either. Was it worth $9.75 for a 12\" personal pizza? No. I paid with a Fox Restaurants gift card, so I can't complain too much about a \"free for me\" meal. I would probably not come back again if it was on my dime. Also, my pizza was a little bit burnt on the crust. It was edible, but I was surprised that they served me slightly burnt pizza at the price of $9.75. My fiance's wasn't-- in fact, they remade his entire pizza and didn't even send it out to us because it had a hole in the crust.", "type": "review", "business_id": "bO2rQLEntQLcg675LjEqaA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "AnNg4KAEPHCR13369YKZgw", "stars": 5, "date": "2012-08-05", "text": "...the customer service alone gets 5 stars, but when you factor in the semi-annual sales it is more like 6. Having been to a number of Nordstrom's in multiple cities I'd put this particular location on the same level as those in San Francisco (without the assinine traffic to contend with) and Seattle and only a notch below the best of the best in Chicago. \n\nLiving in a city with a Nordstrom and a Nordstrom Rack is going to be a daily exercise in resisting temptation.", "type": "review", "business_id": "c7VgGP8xT25OSReok6fwcQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qT17WVkJi0RvQ4nNPN6NDw", "review_id": "RtcByaIHK678WXT-2TP3nQ", "stars": 4, "date": "2011-04-25", "text": "Good coffee and they always take care of what i need in a timely manner. Never mind the fact it is literally 20 yards from my front door, but that may play into my liking of the establishment. Either way you should check it out and enjoy some free Wifi.", "type": "review", "business_id": "2FudHUhV9U54dm0S1ePuCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FmBpiDp6KMjlP3mKKp8vGA", "review_id": "LV_EtbE7K_5zZ6-XU1pHkQ", "stars": 1, "date": "2010-12-06", "text": "The absolute worse service I've encountered. My boyfriend, son and I sat at a tepan table, we were ignored for a good 15-20 minutes until my boyfriend had to ask the manager to please have someone get us something to drink. Once we had our drinks, it took another 20 minutes to order our food. By that time, another family sat at our table. My son & boyfriend ordered a meal from the tepan menu, I had sushi. Everyone on that table got their meal and I still didn't get my sushi. I asked the server to please bring it and she brought someone else's order, I had to wait another 20 minutes for my sushi. The family on our table were so upset for us as well. \n\nThe food is excellent, the service is so poor I am disappointed. I advise anyone who comes here to sit at the sushi bar and deal with the Chefs, they are great. I talked to the owner and she was just as bad as the servers. \n\nI then gave it another try. I met my girlfriends there. We had dinner, spent over $200. We then moved over to the bar area and were completely forgotten about. We asked the manager/owner to please have someone come take care of us and we were told that they were concerned because we were drinking and had kids with us. One of my girlfriends had her kids but she was not drinking. I was offended that she tried to cover up the poor service with her so-called concern. \n\nAgain, food is great service is lousy. I am so disappointed and will not go back. I will look elsewhere for my Caliente Rolls. I hear Blu at the Wigwam is really good and servers are hospitable.", "type": "review", "business_id": "MAXKQMjuOQ17EAbKoTfUwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hf49J3TgNaiCmgcY3ehOjA", "review_id": "XC4rh_9jtl27QK4bu7a58w", "stars": 5, "date": "2010-12-09", "text": "I am a huge fan of Saigon Nites. A friend and I regularly eat here (once weekly) and we have NEVER had a bad experience. The Steak Pho is amazing. Typically when I Have Pho I load it up with hot sauces, chili oil, etc...not at Saigon! Their Pho is ready to rock and roll the second it leaves the kitchen. Two thumbs way up!", "type": "review", "business_id": "jf4RUa9EQO37hqxRCxbEXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-Fi7zyYkdWrrChGRF4mIBQ", "review_id": "_HibfwML2alOCvvgqgzKvQ", "stars": 5, "date": "2012-05-27", "text": "Food is good to the tummy. To me this is better than in and out burger. Place is spotless, friendly service, and wide selection.", "type": "review", "business_id": "_yW2zLQAmqhj2m7rBbpFPw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NxqcDEUm4FNDSxMYXlV6gA", "review_id": "RyVBraOxcGl4zNraQkLP9g", "stars": 5, "date": "2011-08-07", "text": "Last night we met friends at Hillstone's and we truly enjoyed a great meal and great atmosphere. \nWe were met by a very friendly and helpful server who took great care of us the entire evening. We started out with a wonderful wine recommended by our server, she let us taste 3 kinds before we chose what suited us. We went on to enjoy the savory spinach and artichoke dip as well as fresh baked bread served with some olives and olive oil. The caeser salad was a very large portion almost could have been my entree and the dressing was so fresh and light. The croutons crisp and fresh baked. We all ordered the hawaiian ribeye, OMG!! So moist and so juicy - the flavor was so fabulous and I could only eat half of it. The loaded baked potato was also wonderful and very large. I ended up taking half my meal home and was really happy that they let us sit quite awhile to chat with our friends after our meal was over (we were way too full for dessert however the server brought us a complimentary slice of key lime pie which my husband and friends said were fabulous I just was too full to try it) we never were rushed out and they kept refilling our drinks I can't wait to go back. Was always a fan of Houston's in NYC and this was very much the same and enjoyed the jazzy low music in the background and the dim lighting that was warm and relaxing.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "qUdXbLXXMjvFmf0_DTODiQ", "review_id": "-o_qtnxf_3upxkltWeGcLg", "stars": 4, "date": "2012-06-18", "text": "I was here over Memorial Weekend with my friend. We waited 10 minutes and got a great table outside.\nOur server was so friendly and helped up with suggestions. We probably ordered to much, but some how we did manage to eat it all.\nI highly recommend their burrata. It was the 2nd best I've ever had. And we had 2 different meats & the olives. The serving sizes on the meats was very generous given the price. the olives were delish too.\nGive this place a try if you haven't yet. Also, the decor is really cool.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LxgdyviWGbgvVp_L0DABpg", "review_id": "apRnl5ZS2FvbehoqSuOTqg", "stars": 1, "date": "2011-11-18", "text": "Sadly with new owners comes changes on menu. My fav Barbecue chicken salad\nno longer has a hint of the same taste. It should now be called flavor of tomato. \n Also sad to find out that the most outstanding veggie sandwich now tastes like it comes from another country. Again not a single hint of similarity of same flavor. Im sure many people will love these new changes. Yet, Im sad it's not the same. I woke up today dreaming about the old veggie sandwich! No joking!!!!!!!!!", "type": "review", "business_id": "nInabwjYRoTe8nc6X_dYkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NWbiPd4AhbIKjep_vgasog", "review_id": "jhQmEtAS-2m57ie0cVzMzg", "stars": 4, "date": "2009-09-14", "text": "At first I was disappointed with Padre's menu. I usually get tacos, rice, and beans, and they only had soft tacos. But then I ventured out and got this amazing beef burrito that came with rice and beans. Really glad I tried it.\n\nI was also pleased to see that they had Sol beer on the menu. It is my favorite Mexican cerveza, and I usually can't find it in restaurants.", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Znu5KKqytHfmjbXfQo3f4Q", "review_id": "0_4XOZ-O239bx04chvU_ug", "stars": 4, "date": "2010-02-14", "text": "Wings are not my favorite type of food, and I find most \"wing bars\" to be about the same. So when the East Valley Friday Night (#EVFN) Tweetup headed here I didn't have high hopes.\n\nThe wings were good, the beer was even better. I was honestly impressed by the excellent selection on tap, including some crazy stuff I had never head of before. It satisfies both the Pickiest Vegetarian and Pickiest Beer Snob I know, so is on my list of places to take just about anyone to relax and have a good time.", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "oanHCNCLByQdW_TIgJKzjg", "review_id": "G-aG9nPvovalTDJAFqZNPQ", "stars": 2, "date": "2012-11-13", "text": "I am from NYC and have been in Phoenix for a few months! This Native NY'er is within walking distance from my hotel. I've been going their for about two months on Friday and Saturday nights for food, drinks and the karaoke. The food was OK, the drinks specials were good and the service was also good. The problem is that when a confrontation erupted at the bar the staff did not respond quilckly to notify the police. So, I ended up geting injured and when I asked them to call the police the did not, I had to. And after the episode they said they hoped It would not affect me not coming back again! Not even a comp or something! Just an I'm sorry what happened! I will not be returning at all. I looked over my nine charges on my statements and seen I had spent over $300 their. There loss!", "type": "review", "business_id": "rLv5DPLnO67TCHIbbBWYPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FgkmsIAmA3uKx5bLNkXF9A", "review_id": "2mNEeGfjmHVt5tRh58Awxw", "stars": 3, "date": "2011-12-24", "text": "Tip: If you know how to play poker...go sit at a poker table, and order the fried rice. You get your meal for half price while playing poker.\n\nThe filet mignon fried rice(ask for it rare and it will come out medium) is excellent!", "type": "review", "business_id": "fRCZktDIBu9-uJ1wOYB3bA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "4n23hhnN38BXQna8DynvWQ", "stars": 2, "date": "2012-02-15", "text": "So I am an occasional shopper here at this market.. for a few reasons: we love their in-house made corn tortillas; they have a good selection of mexican treats (Bimbo breads and coconut bars) and if I'm buying conventional produce, their prices can't be beat. Also, their pan Bolillo is really good and cheap and their cakes (3 Leches) are pretty damn good.\n\nOK, so here is where the minus comes in.. the BIG minus.\nMy husband and I used to go occasionally for breakfast (I'd usually order simple, straightforward things like carne asada tacos.. don't get much simpler than meat in a corn tortilla).. well, the last time we did this, I found my meat... ready?... wait for it... to be the color blue and purple. I had brown meat, but I had pieces of it that were blue and purple... no effin' joke. I thought it was a trick of the eye, but I closely examined it and ... sho'nuff, that shit was blue and purple. I immediately threw away my dish and never have I since ordered meat from their kitchen side.\n\nThat being said, I've also become more cautious in buying meats here... not to sound like a snob, but you bet I'm not buying my next cut of beef here! I'm cool with their breads and their cakes and tortillas and such, but if it comes to meat, I'm out the door.\n\nI much prefer Pro's Ranch Market - the REAL Ranch Market.", "type": "review", "business_id": "j0mNAIzwRH1QHTuMQaYX1g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZJ6MUaj6z5Hgtnxzu-QG5A", "review_id": "xHg82RqrCuNCUIColUmzfA", "stars": 4, "date": "2012-05-19", "text": "I'm from California and every time I visit Arizona I have to make a stop here. The ambiance is very nice and classy and located in a great/fun area. The bar and drinks are great and the food is fantastic. Like i said, I'm from California and live in the Bay Area, so I thought I knew what great seafood was - wrong! Who knew that the desert had better (well almost better) seafood than San Francisco or Monterey Bay? \n\nI had the Vanilla Battered Sole with Gorgonzola Mac & Cheese - Amazing! Never tasted anything like that - I recommend that this place be the first stop to anybody looking for a fun night out.", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iI7NSXGiUoY9sPdAUE8J0w", "review_id": "eX2xmJE_yRxEw0MK-sjxDQ", "stars": 5, "date": "2010-12-14", "text": "The mozzarella tomato and basil sandwich is the BEST sandwich in Phoenix, hands down. If you haven't been to Pane Bianco you are truly missing out.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BpixBbjot5Wl8brVj5hT-Q", "review_id": "sfiGruMcgQigquvfOyrdPg", "stars": 3, "date": "2011-07-19", "text": "I've had this groupon for Padre's that had been burning a hole in my pocket for a long time! Finally as it neared expiration date I ventured into Phoenix to try it out. It's a cute little restaurant with a really cool red door!\n\nFYI - there's a check-in deal here! $.01 margarita! Mmhmm you saw that right! Certainly not the best I have had by any means but you can't really go wrong for that price right?\n\nAfter ordering our drinks we decided to splurge on an appetizer so we started out with the Queso Fundido. I was so excited about it because hey it should be all about the cheese and as a Wisconsin boy, I'm all about it! Unfortunately it was more about the spinach and not so much about the queso - it tasted really good, just missing a lot of the main ingredient in my opinion...\n\nHe ordered the Mexico City Fajitas! Really well cooked chicken, with the right amount of everything! Super good! I ordered the Pollo Rellano. The chicken (as in the previous dish) was really well cooked but was lacking on the stuffed part. So it was good - just nothing wow worthy. My dish came with side of guajillo mashed potatoes - which look like a pile of mashed sweet potatoes - I personally wasn't a huge fan of the taste but as usual I'll finish my plate anyway :)\n\nThe service was pretty good, it was just a very laid back environment, which I wasn't really expecting for some reason.\n\nI'm not dying to go back by any means but if someone wanted to try it out I would go again!", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bkRfY8jHdFxf7k8vLX4buA", "review_id": "9XwL2ENfB_1wS2xXrZgMwg", "stars": 1, "date": "2010-01-15", "text": "This place is closed. Good riddance.", "type": "review", "business_id": "WV2UObiT3EknPaAvo1GVYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_Ng6CqgQbZJ3c9ZhWGCu_A", "review_id": "V_KiwceE5IUmlEv4GCoXgQ", "stars": 5, "date": "2011-06-19", "text": "Was looking for something refreshing for a nightcap on a hot Scottsdale night. You will not be disappointed. The sorbet was really tasty and refreshing.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "DvQ09Ieg_d_PgrAdQy71Qw", "review_id": "WWIDk0nUo4H2nROGeVHE7g", "stars": 4, "date": "2009-04-01", "text": "I love a place that lets me do whatever I want. I can go to this place and scarf down a whole bunch of pretty good tasting frozen yogurt for 160 some-odd calories. I can pig out on Thrifty Brand Ice Cream - oh joy! I can pretend I am in Hawaii and have shave-ice (snow cones to mainlanders). I can get a puppy cup of frozen yogurt for my dog. How COOL is THAT??? I can get quarts of stuff to bring home. AND - here's the big one....the people are actually really, really nice! Okay - I've read the other reviews - the frozen yogurt is good - nothing that will drive you to ecstacy - but good enough to hit that \"I need something cold and frozen\" spot. My dog loves the lo-cal treat. So, depending on the Length of my hike, it is yogurt, ice cream, sometimes both......you get double punches on Wednesday and the puppy cup is free if you bring your puppy.", "type": "review", "business_id": "XhdMiSn0b3O929YpjVBMHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DnwHp_A92KvllfaUIdFraw", "review_id": "xwtg_u6SUTwo7n9smSJaHw", "stars": 5, "date": "2009-03-08", "text": "still a big fan, wonderful pizza!!!\n-- Remember to join their birthday club!!!-", "type": "review", "business_id": "r4AG1WXCRWkZKQctrcy9FA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7WO1DSyx-0FP0cBkaCISAA", "review_id": "BJ29byDvNAvqsAdlQngeYw", "stars": 3, "date": "2012-08-01", "text": "The best thing was the dessert. Shrimp was alright. Nothing to write home about. Wesabi chicken was lacking.", "type": "review", "business_id": "QzXFdjIbFRGhzL83goPPLA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ehtcnF3Ebvq23p107LcsuA", "review_id": "tPgHu1UT0ZW23vVKuC5y7g", "stars": 5, "date": "2012-12-27", "text": "You like hotdogs? Motor (thats me) says get in your Mommy's oldsmobuick and get over to TEDS! AND you sissys that like \"sonoran\" style dogs talking smack about Teds, go back to Tucson and eat your fru fru pineapple topped dogs with peanut butter. This is old style, 4th of July chargrilled hotdogs and hamburgers. Makes my mouth water. Ok so visualize and taste this in your mind. First the juicy hamburgers that have the hardwood charcoal taste that makes your mouth water. The crispy ice berg lettuce, juicy tomato and onion make this a purist burger lover's dream. Real good home made taste. So now act you like you always do on the 4th of July and get an all beef hotdog. First a warning. You will crave their hotdogs after you eat em. The crispy plump skin that cracks in your mouth and the taste is like when you were a kid and watching the fire works on the fourth. Add the spicy brown mustard with their ketchup \"hot sauce\" and buddy you got yourself dilemma. The dilemma you ask? Is do you order one more hotdog cause they are soooo goood! Try the Italian for a spicy dog. Don't start with me on the fries and onion rings. Just make sure you wear your fat pants. Motor out and going back for another dog.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 5, "useful": 9, "cool": 7}, "user_id": "yAy_yq9pcp4YiotWEsTOpQ", "review_id": "pDcWm7nc4_bt-_Y0o2MK6g", "stars": 5, "date": "2008-06-24", "text": "i have 2 words for you: passive. active. dividing the dog park into sections based on tempermant isn't smart, it's f'n brilliant. \n2 gates upon entrance and exit safe it up so i have no worries that my shelter dog will hit the streets again. \nthis dog park is clean, the people are friendly and so are the dogs. finally, a place where we can all get along.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "4zinPJ38-WxjPPomn7CPAQ", "review_id": "uwGWwL5FLlNZUdokJlVbYQ", "stars": 4, "date": "2007-09-09", "text": "This place is right up my alley.\n\nSmithwick's on tap- check\nAwesome fish & chips (award-winning for a good reason)- check\nGood pub vibe accompanied by live music- check\nA nice soccer following (the unofficial bar for Glasgow Celtic supporters- not my club, but good enough)- check\n\nI'll go with 4 & 1/4 stars.", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r2j-1IIRt9-cxT8z0sPr3g", "review_id": "8skcfVFQq5S3FyS4Ew6q2w", "stars": 5, "date": "2012-03-19", "text": "I've ordered pizza and wings three times and the have consistently created perfection, seriously.", "type": "review", "business_id": "QSCeI8HdUluG-YmbDWo-fw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "h4oJEDoK6LWyFwAf2GyNPw", "stars": 3, "date": "2010-09-21", "text": "I've grown to like Apple, though I've always thought their products were priced on the rich side. When we lived in Seattle there was a Microsoft bias, but a large group of us all had Apple iPhones. And that is a key part to the Apple story. You buy the iPhone and then the next thing you know, you're looking at iPads. \n\nThe Genius Bar is fun and very helpful when things go wrong; like when my new phone duplicating one calendar entry 341 times. I had to bring in my Win-Tel PC into the Genius Bar and in the end we had to delete MobileMe to fix it. But, absolutely great, GREAT customer service!!!\n\nI love my new iPhone 4, and I've had Blackberries for 14 years! Maybe when they add FaceTime to the iPads, I'll belly up to the Genius Bar.", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QfnKAXo0aOk0AFPPRa-WIw", "review_id": "KEQh_cm_yvdFQYFpNFcNPw", "stars": 4, "date": "2009-09-24", "text": "I came here with three other friends. We were all on business trip together and walked over from the nearby Sheraton. \n\nThe place is modern styled for the gen y's with loud music. It's bad for the boomers with inflexible ear drums. In fact, there was a DJ there for Thursday night.\n\nI ordered Pork with Pineapple Ginger Sauce, Oyster Mushroom and Clams with Lemon Grass Claypot. The chopped pork was nicely deep fried, wrapped around a skinny stick of sugar cane and the pineapple ginger sauce was very tasty, maybe a bit on the sweet side. The Manila clams were really fresh. I was hoping that the broth was broth but it was just liquid used to boil the clams and it was not salty or tasty enough that I just abandoned it. The oyster mushroom was very fresh and good. After these three small plates, I was still hungry. I had to scavenge my friend's Tofu Curry and some of his rice to get satisfied. The food is definitely good, fresh and tasty but if you are really hungry, you could spend $25 and still feel a little empty.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "YjcxAKMU-OnDZc-ybpGZ0A", "stars": 5, "date": "2010-06-26", "text": "I was inspired to visit Casella's after a coworker told me about their authentically Italian goodness. As my tummy growled today, I was in the neighborhood so I knew just where to go. I walked into a simple yet clean deli. Immediately, I was welcomed by the entire staff (I believe they are all related or at least family through friendship). They asked me if it was my first time in and I said yes, so right away they started giving me a history of the shop and the tasty cuisine. Celebrating their 33rd anniversary (congrats!!), I learned that everything is homemade -- from the meatballs to the chicken salad. The owner said he goes through 40 lbs of chicken a week. He gave me a sample and the chicken was chunky and delicious. I'm not surprised he has to prepare so much chicken every week! The meatballs and freshly cut meat for Philly Cheese-steak sandwiches looked great too! The owner mentioned he is from Philly so better be ready for some authentic Philly and Italian style cookin'! \n\nWhile I was there, the owner was slicing some fresh provolone, so I added that to the warmed turkey sandwich I ordered. The turkey was tasty, the provolone was yummy and the sourdough roll tasted like it was fresh from the oven. It was $8 for a sandwich and soda but the sandwich was hefty enough that I saved half for later. As I walked out, everyone said goodbye to me and I felt like I was leaving a family dinner. \n\nIn summary, here's what made Casella's stand out: \n\n- The very friendly staff\n- It's a local family-owned neighborhood deli celebrating their 33rd anniversary. Gotta support the local businesses! \n- Clean decor \n- Tasty, homemade food that's on display for visitors to see \n- A good family-style atmosphere that greets you the second you walk inside. \n\nI'm not sure how it's taken my so long to find this local treat, but now that I've found it, I plan on becoming a regular. \n\nDirections: Note that this is hidden in the Basha's strip mall (on the side of Granite Reef) but don't let that fool you!", "type": "review", "business_id": "kEyCMHBnohaWc81omLDfYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k2u1F6spBGhgk2JtAe97QA", "review_id": "ftTgregq0XLWbANHpKVuMg", "stars": 4, "date": "2012-10-23", "text": "I FINALLY tried Fuego Tacos and I really really am a fan! \n\nSo here I was with a Yelp deal and an upcoming national taco day. I do like I do and text some of the InstagramAZ honeys to meet me up at the esplinade for a mini sunset photo walk and an excuse to have some margartias. \n\nWhat an amazing combo for a Ladies Night! First off the starter chips and salsa was bomb! BOOM! the salsa has like chipotle flavor, not runny but hearty like steak! hahaha! We also ordered a few Queso appetizers. Dang... Let me say we could have been fine with that and our margaritas. \n\nJust kidding! Of course we all order food! Tacos galore and delicious! Seasoned to perfection and sided with really good rice and beans. I am super picky about my rice, 'cuz you know, no one makes it like Nana used to. Not even moms. But I was really impressed! I am definitely coming back to this spotty and checking out all the other Fuego restaurants!\n\nOh! And they had no problem honouring my Yelp deal. Over all a very pleasant experience!", "type": "review", "business_id": "KBKDl08flVw1AqvM5ucVpA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Fu_2qxs9bKgFf133uvnsmw", "review_id": "mBM0uQzbnrkoQoNl0LDcnA", "stars": 5, "date": "2011-04-05", "text": "Very very good lunch spot! Was a little disappointed when I found out they didn't have pizza on their lunch menu. But when I tasted the prosciutto \"sandwich\", I didn't mind anymore. It was a great meal with a relaxing & great ambiance!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "58YQSpx5Ct8W3HxFhNs-Lw", "review_id": "6RdVTsl-UaWEv80hYhS_3w", "stars": 5, "date": "2011-07-18", "text": "My fav Mexican place by far! They make the most delicious chicken tortilla soup and tacos I've ever eaten. Fresh ingredients and the owners are super nice. Love this place!", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "yETtApEyYQAmUQVOBgUjhw", "review_id": "POIrOqAbF51D21TSelUQHw", "stars": 1, "date": "2012-09-06", "text": "Bad shop, rude owners. Pro-tip: If you want to \"enhance\" the Phoenix community you could start by not playing music loudly when it's obvious that there are musicians trying to perform their sets that people paid to see at the well-respected venue next door.", "type": "review", "business_id": "Gl4TouO2_CCz2nFPS9fGlA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "3ONPPazUH-Q3XblYJIaA1A", "review_id": "FqREFhToDVD7PQBRJxdfUQ", "stars": 4, "date": "2012-06-24", "text": "Ok reviewing the Waffle House is kinda lame, but here goes. If you have lived in America at any point in the last 50 years you know they have good waffles and hash browns. Is it the best breakfast option you could possibly encounter, well no. It's just every once in awhile I find I just want Waffle House. ( Fond late night memories from college I would guess. ) It can be for breakfast, lunch, dinner, whenever.\n\nSo what does this location have going for it that makes it better than the average Waffle House?\n\n1. Lots of parking\n2. It's not in a shady part of town\n3. It has a really nice staff \n4. They are fairly speedy\n5. The restaurant is clean\n\nSo there you go if you have a craving for waffles and hash browns then this is one of the better WH in the area.", "type": "review", "business_id": "0kZ4aYmqf5fzTt9Yvz8Kvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "SJ0eHg5JpJRhDlmZU4c0cw", "stars": 4, "date": "2010-12-19", "text": "I'm not a sushi expert by any stretch, but suffice to say that the rolls here are well-priced, fresh-tasting, and overall pretty damn delicious, with good presentation. \n\nI'm not a fan of their tea, but that's just a personal preference, I think. I enjoy the Las Vegas, but the Spank Me roll was really good as well. We usually mix and match our way around, and right now they're running a \"happy day\" 4pm-9pm special on a lot of their rolls which makes them cheaper by $1-$3, each. Definitely worth it.\n\nGood service, laid back vibe, even if the decor is a little \"college dorm\" with the lighting, but overall, fun, good food, and affordable.", "type": "review", "business_id": "PlcCjELzSI3SqX7mPF5cCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Bl7aJQcBgOj3Looi8GoYQ", "review_id": "OOAy8__OXk7fsLN4x-IHHg", "stars": 4, "date": "2010-09-21", "text": "This is now Amore Sports Grill. Try the sausage & peppers, they are to die for.", "type": "review", "business_id": "DvPsl-CtYj3Q5GnOgClyew"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "juB4dIllPpM4Mt4_x2SErQ", "review_id": "ucvMSywUrCWOPoYL1M2plg", "stars": 3, "date": "2011-06-17", "text": "ive been here 100 times for all types of events and its a great place to eat, drink, and watch sports. I love the parmesaean garlic, teriyaki, and habenero sauces. The monthly beer specials isnt a bad deal for a tall domestic. Fries are also pretty good.", "type": "review", "business_id": "ZJxs1L4oMhX9GW00ty0aAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VtCCL2QTKxQ50uOlZZ3n8A", "review_id": "OuiIPI6PSHl_3-dYeu5LzQ", "stars": 5, "date": "2011-05-04", "text": "Great food!!! Everything on the menu is good. The bacon guacamole burger is next to perfection.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "g6rlp5No6GjEDXkrjvg1kQ", "review_id": "2BmDTRmjKp5YEQdm5dLA_g", "stars": 1, "date": "2009-10-06", "text": "Pure Fitness as a whole I like. No contracts, the people going there are actually there to work out and not to be seen, (ex. LA Fitness). Plus you get complimentary training sessions. However, this location I will NEVER return to and its all because of their new GM Adam. I had a free pass and he was the one that I had been assigned to for my fitness test and 1st training session. I had already explained that I planned to join but he wouldn't stop the full court press of selling which I didnt like at all. I wanted to use my weeks free pass THEN join. He wanted me to give him money right then and there when he hadnt so much as given me a tour yet! Anyway, I told him I wanted to wait and then he starts asking when I get paid, is it a money situation, etc..if made me VERY uncomfortable.\n\n I went ahead with the training session and he knew in advance that Im not inactive but going to the gym is not something Ive done on a consistent basis in a very long time. Now I enjoyed the workout but from what others have told me..he pushed me way to hard for my first time out of the gate. My arms weren't sore, I know sore, Im okay with sore but they became weak for FIVE days, that I had trouble sleeping they had that irritable and restless feeling, and it hurt to use a freakin' date stamp at work! \n\nBut the reason Im not going back..I was surfing them online and saw how easy it was to sign up online so I did. That way I wouldnt have to worry about remembering voided checks etc. Well I called Adam to let him know and he went off on me.. just short of yelling. \"Great, now I lose the commission the gym loses the points.. you can understand why Im upset right.\" and he went on for about 5 minutes. I was stunned at how unprofessional he was and he's the GM??? If they work on commission they should give you a heads up \"hey I know its easy to sign up online but we work on commission so I would appreciate it if you went through me if and when you choose to sign up\". I would have respected that. OR if when you sign up online it allows you to put in the name of the person you have been working with so it doesn't circumvent them. But I was floored and pissed that he came at me like that. \n\nPs. Of all the Pure Fitness this one is the smallest, visually unappealing and has the worst customer service. I did sign up and I love the one I go to now...but this one I will never step foot in again", "type": "review", "business_id": "u_F86yMy2iOVQXhLJoxj2A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EGlqOFCbnrAEIvd86BS2_A", "review_id": "qUJiEs-lG9x8faXMKXipbA", "stars": 4, "date": "2012-07-07", "text": "I have eaten here four or five times. We always get the mussels to start, and they are always delicious and cooked just right. The broth is great for dipping the bread in, although I could probably just use a straw. The fish of the day was halibut. It was very flavorful, but maybe just a tad overcooked. The scallops were wonderful. Great wine selection. This place a lively atmosphere. Not too noisy to hear across the table, but a good vibe. The service was excellent.", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "aw3NdtzanMHUT4FIv1lCzQ", "review_id": "363TEYAQ7YOUXq1MhiRRpg", "stars": 4, "date": "2012-03-19", "text": "Ordered the King Carlos IV. It was HUGE, two of us ate half of it. I thought it would be smaller than that. It had all the major meats plus hotdogs, cheeses, and a siracha type sauce. I think this was featured in diners, drive-ins, and dives. It was very good but just wow huge. It came with a side of ruffled chips. Very nice people. The fruit smoothies were good the horchata decent but not the best I've had. Great bang for your buck though. I'd go again and try something a bit more sensibly sized.\n\nThere was a wait of about 15 minutes or so. Very popular on a Saturday for lunch :)", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0rI5H6cZ3sUt3llaOqLJkg", "review_id": "SmEXyv2RXZHQsLVjfh0jkw", "stars": 1, "date": "2011-12-30", "text": "Easily the worst \"burrito\" I have ever had.\nIt amazes my that anyone would choose to eat at this chain. I bet the rations they serve from the back of UN trucks to refugees is better.", "type": "review", "business_id": "SYHatptm7gpcmYjW1d-o5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "-KQF0w78TeG7xhT1DrWtnQ", "stars": 4, "date": "2008-11-23", "text": "Awesome atmosphere and a unique place to go. I ordered the habanero burger and it really lit me up. As I was nearly finished the waiter remembered it is supposed to come with a free glass of milk (which I didn't get).", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "33vUIil_GCaT92aUaZhRXA", "review_id": "alOgydV6AcU8MIe6wazV2g", "stars": 4, "date": "2010-12-27", "text": "The hubs & I have been coming here for a couple years now. We usually hit the drive thru. Always get the same thing, butterburgers w/fries/onion rings & a concrete mixer. The employees are always super friendly & always offer our doggy a treat. Definitely our go to spot when we're in the mood for burgers & frozen custard.", "type": "review", "business_id": "8T8B_xK10FuO6MBOFcVQ3w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OsD0cwqmg4JHheV7O17UDg", "review_id": "OZxAQ6dlqcX4RTmc9M04vQ", "stars": 5, "date": "2012-08-12", "text": "Love all their dishes!", "type": "review", "business_id": "GfMRsE7rYqNyfC6wUYZkzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wM7VQJ2SXIQWEDTEokG99g", "review_id": "zo2_AAke2oMQqblhF-YsRw", "stars": 5, "date": "2009-12-21", "text": "To say this place is super rad would be an understatement!! We for las noches de las luminarias. And I wish we could've stayed longer, also seeing the gardens during the daylight is added to the 'to do' list! \n\nHaving never been there the staff was super helpful in guiding us, not to mention really friendly! The music was entertaining and a good variety. They also have a synthetic ice rink and you're allowed up to 15 minutes of skating, if you're not shy! The buffet they offered was a joke and I don't recommend doing it. For 16.50, you're only allowed one trip through and other such silly stipulations... no thanks. \n\nOther than that, what a great place to go!", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6G_83_F0CQ9XJZdYdeE7Hg", "review_id": "8yc9Xgd_ZWKSFJg_0Woc-w", "stars": 4, "date": "2010-10-18", "text": "Pretty new building and they have a pretty good selection in books. As Steve mentioned they're pretty nice in finding you a book. They have the usual Starbucks inside which is also pretty good. (Staff is friendly and the service is great)", "type": "review", "business_id": "SOvF2IM9LwgBYi1uGnUwrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IhcTLLWKS6ZiNyIX9oQQPQ", "review_id": "4MCFckgRwcYP7O-TS_xOGA", "stars": 5, "date": "2012-02-18", "text": "This is really worth taking the time to see and experience. The cost is very low - $5 per adult. The garden is beautiful and peaceful with many areas where you can sit by yourself and reflect or just people-watch. Also, the lady in the gift shop is very helpful if you are a first time visitor.\n\nMetro Light Rail stop at Roosevelt and Central.", "type": "review", "business_id": "HiTpXu1BNE2DlvjyqpObjw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "d6y3GGhsQ7sJQf49u02hLQ", "review_id": "hIKce9nWq7VuZ_z7JpD3lw", "stars": 2, "date": "2011-01-24", "text": "Highest gas prices in the valley!", "type": "review", "business_id": "uPRz5JI11QQpwgNnSZZzaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sc_Kcz2apQ1IJa9moO8qvA", "review_id": "bping773Iiq2-21KfHt7FQ", "stars": 4, "date": "2011-03-27", "text": "The contemporary and American art sections of this museum are 5 stars, outstanding! I also loved the overall museum layout and architecture.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uTyIIbOvXH_XZw7OEiTiNg", "review_id": "29xSkJ1Dc7myBWgLFi21TA", "stars": 4, "date": "2009-11-30", "text": "We went to Central Grille on Thanksgiving for their buffet. Good food, excellent service and very nice ambiance. We asked to sit outside and the weather was great for it. Great place to sit back, relax and enjoy some food. While I didn't drink they had a pretty good wine and beer list. I will go back, enjoyed the experience.", "type": "review", "business_id": "GeHwru6TVDyVErFc92Nn2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "h3aJjV87gtjgVvxiopsrjw", "review_id": "xbboe-eF8p2iu5xOppdj9w", "stars": 2, "date": "2011-09-11", "text": "I agree with the other guys. The towels here are gross. Staff is not helpful. When i checked in there was no vehicles in parking lot. When I asked for a room I could park in front of because I wanted to be able to keep an eye on my truck they said none were available to me. If you don't get much business maybe you should be nice to the people who do show up.", "type": "review", "business_id": "c0iszTWZwYtO3TgBx0Z0fQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "QvlIKmMpqF2wnChlRaNmUA", "stars": 4, "date": "2012-04-10", "text": "The boy and I finally check this place out last night. \nIt was everything I imagined it to be. Great view from the semi-outdoors bar area, lots of beers on tap, and nice patio area. It was a Monday night so they weren't very busy, which was nice, I wasn't in the mood for a crowed. \n\nWhen checking out their menu online I saw they have my favorite beer on tap, SeaDog Wild Blueberry. It was delicious! Completely different on draft, but yummy all the same. They also had an Apple Cider on draft, my pick over a pear cider any day, that I could have in my Black Velvet (cider and Guinness). I was a happy camper. \n\nOnly downer was that they closed a bit earlier than we would have liked, but no worries we will just have to come back again soon to try some more beers. \n\nThe bartender was great, she let us try anything we wanted before committing to a full on pint. I tried to get the boy to be adventurous, but he stuck with the Stella, not bad at all, just a little boring. Oh well ;-)\n\nI am looking forward to checking out Stand-Up Live soon as well, and the live bands they have at Copper Blue. I also hear they ahve a pretty awesome Ladies night on Thursdays, saweet! Menty menty more trips in my future, I can just see it. :-)", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hPidlmUa8VQ5FEv37TQgWA", "review_id": "bixk3FHce0aPJatX0wOZ9Q", "stars": 5, "date": "2009-05-27", "text": "Yum yum yum. Husband and I first went there early on a First Friday night and were pleasantly surprised to be seated right away. We didn't want anything too heavy since we were planning on doing some walking so we split the Spanish cheese plate which was delightful. The fig cake is delicious!! Splitting the plate made the bill pretty affordable and it was just enough to fill us up without overdoing it.\n\nThe server was very helpful in suggesting a champagne for me and red wine for husband. Don't remember what we had but my champagne had a strawberry in it and was perfectly bubbly. \n\nAmbiance and decor is nice and mellow. We've since been back with friends and it has been enjoyable for both a date night and chatting it up with people. Enjoy!", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6wkKxBVwQmB2DnjllZvk0A", "review_id": "6NrJfwC73Mj0GN2vWCFt2Q", "stars": 3, "date": "2011-06-26", "text": "It's a hotel bar, so expect typical hotel pricing on drinks. They have some good tapas to choose from, ask for the calamari, but a grilled version (off the menu)... it's REALLY good. I've had a few of their drinks there, but I stick to the mojitos, but had plenty of others that were just as good.", "type": "review", "business_id": "SG-bV3OZizne2MZ-zQSmRg"} +{"votes": {"funny": 7, "useful": 9, "cool": 8}, "user_id": "du6KeE54IFbPiXpU3LOd1g", "review_id": "RK1zTs73vTwlS0tmpKSJmA", "stars": 2, "date": "2009-06-19", "text": "The rap on Starbucks is that they \"over-roast\" or \"incinerate\" their beans.\n\nAnd I think that might be right...sometimes at Starbucks, it seems like I'm drinking something brewed from charcoal briquettes...it doesn't taste good:(\n\nNow, I will tell you that I am really no connoisseur of coffees...I like coffee, you know...a good dark roast, made with freshly roasted beans:)\n\nBut the beans don't have to come from a specific plant , grown on the southern side of a special hill in Columbia and then eaten and pooped out by a badger of some sort.\n\nNo, I just want a decent cup of coffee at a decent price:)\n\nWhy can't Starbucks do that?\n\nI occasionally need to meet someone for business, and Starbucks comes up as meeting place (and I understand that...they are almost annoyingly ubiquitous:)\n\nI have sat at a cafe table on a street corner in San Francisco, having a cup of coffee at a Starbucks...looking at the Starbucks across the street...Lewis Black calls it \"the place where space and time folds in on itself\"...I say \"why build the Hadron Super Collider to open a black hole?\"...Starbucks did it a decade ago with a combination of charred coffee beans and vats of money to open a Starbucks for every adult in the United States:)\n\nIn and of itself, that's no reason for a 2 star review...Gordon Gecko said it best...\"Greed is Good!\" and Starbucks exemplifies that credo...they are a generally very successful corporation grown up from the Bay area defectors from Peet's Coffee...I have no problem with success:)\n\nNo, my gripe with Starbucks is that they seem to be all about the marketing and not about the product...their coffee is crap:) So is most of the stuff they serve...it's second or third rate, at best.\n\nAnd just because it's convenient doesn't mean we all need to stop in.\n\nThere is better coffee and better tea and better everything around...at much better prices...it's worth looking for another meeting spot:)", "type": "review", "business_id": "nDdfN6onfb0JoxKKYwCnjA"} +{"votes": {"funny": 2, "useful": 1, "cool": 3}, "user_id": "CQVPwymzvS01Re6O4DATGQ", "review_id": "RKXoQcfWnfut6f079zZN5Q", "stars": 5, "date": "2006-02-23", "text": "I hardly ever get past their carne adovada. It's simply amazing. Add a couple of extra homemade tortillas to it? Can't be beat! I have had their pecan crusted sea bass also, along with lamb chops (chipotle?) both very, very good. Great atmosphere, friendly, competent staff...a winning combination. Get there early! Long waits after 6:00pm!!", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "TN6ZI_NNUw8OAvODoxTKCg", "review_id": "ncIrgCWBN8Emik4mtdoWPw", "stars": 1, "date": "2011-12-10", "text": "Refused to give water to young teen & referred her to PF Changs. Olive & Ivy handled this poorly, unprofessionally & pathetically. \n\nPF Changs didn't even hesitate to give her the water. That's why I ate there instead.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ehVMHDvELiKBg1Mn5H9dMQ", "review_id": "dfOxbp4WxFHiNWUtzbOu4A", "stars": 5, "date": "2011-01-24", "text": "Great customer service, nice owner. The broth here is actually the best ive tasted in Arizona.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wnadMe8lJEVWNsN5bVJ3Ww", "review_id": "KpN9kZeDJwovSXvUCWNWMg", "stars": 4, "date": "2009-01-30", "text": "The Capistrami is the best thing ever. Hot pastrami, swiss cheese, cole slaw and a russian dressing. I'm addicted to this sandwich, but of course, there are worse vices. This sandwich screams 'eat me' even when I'm completely full. It's okay, the pain I feel later is justified by how amazing it tasted earlier. They have a good selection of chips and also make fresh baked cookies. Service is on par. Love it. If I had to pick one gripe, the bread could probably be a little bit better, but that's minor in light of how great the food is here.", "type": "review", "business_id": "STv-ED3M2xmRFMSvQbWGaw"} +{"votes": {"funny": 3, "useful": 7, "cool": 1}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "cP_4PFlGG16qLa5tCeTnkg", "stars": 3, "date": "2012-04-10", "text": "A nice place to shop, but I wouldn't want to live there. \n\nI never used to be a department store shopper, but recently Ive discovered that nicer cloths just seem to fit better. Go figure. While I still like getting a deal, I usually wait until there is a clearance or sale or some type. The macy's at scottsdale fashion square seems to have more selection, such as more size options for the items you seem to like and a few more items to choose from also. For guys, I would suggest checking out the Dillards at fashion square; the mens dept is about the size of this entire macy's store. 2 or 3 times a year dillards has an awesome clearance event and you can pickup 65% off clearance prices; which are usually already 50 - 70% off the original price.\n\nI digress; this is supposed to be a review of macy's. If you're in the biltmore area and looking for higher end quality shopping go ahead and check them out, then travel down camelback to fashion square mall when they tell you the item you like is only available in your size at a different store.", "type": "review", "business_id": "Vm9GQUptdZmBM9R7tZ9_Tg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DBAg7I65F1lVwKU7UaScag", "review_id": "OxXv1VCFhhsV158mFgN7Zw", "stars": 3, "date": "2011-04-30", "text": "I liked the fish. It was delicious. The cole slaw was also very tasty. Not too sweet. A bit tangy. I like that.\n\n The shrimp was okay. A bit rubbery, but then what does one might expect for a seafood place in the middle of a desert?\n\nMy biggest problem with this place was the price of the food. It is just too expensive for what amounts to frozen food plopped into a deep fryer. I could buy frozen fish at the grocery store and then come home and plop it into my little deep fryer and it would taste about the same and be a lot cheaper. \n\nI just wish it wasn't so expensive. Especially considering this in the hood. If you know what I mean. I don't mind driving down to the hood for some fried fish, but only if it is reasonably priced.", "type": "review", "business_id": "YxMnfznT3eYya0YV37tE8w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "GP-h9colXgkT79BW7aDJeg", "review_id": "Ahc76drU_s4y_9UQzSfuVQ", "stars": 5, "date": "2012-12-03", "text": "Yup. It's all true. Great food, super charming place, very intimate. \n\nWe sat outside on the patio under a heat lamp. Enjoyed the olives as a starter, as well as some fried raviolis (yes, please) and a caprese salad app. Outstanding artisan pizza, with as good a crust as I've ever had, and homemade mozzarella. Wine was just ok, but very reasonable. Server was attentive, helpful and friendly. Owner came by a couple times to check in on us and was absolutely delightful. \n\nDeduct a point for the proximity to the Handlebar J Saloon and the faux-cowboys arriving in limos with 10-gallon hats. Then add a point back for the near-fight we got to watch between a biker and the faux-cowboy who almost hit him with his Cadillac.\n\nWe'll be back, and with more friends.", "type": "review", "business_id": "VSPuvNSDUvlTl670lVAkkw"} +{"votes": {"funny": 7, "useful": 4, "cool": 3}, "user_id": "vhAn390OgR1H4DwacJdc7w", "review_id": "TJR-Q8_09ae1bICoTLk6_w", "stars": 4, "date": "2009-07-02", "text": "I really expected crappy food, because, after all, that's what sports bars generally offer. Then I was told that the food was not bad, but good! Which only made me eye my table mates suspiciously. I ordered the tacos al carbon which comes with cilantro lime rice. these are three street taco sized dealies that have steak in them and come with a little shot of pico and queso.\n\nNow like I said, I expected crap. But the tacos, with pico and queso poured on them, and grease dribbling out into a glorious puddle on the plate, were really amazingly good. The steak bits were really tender--ordinarily in such a taco they'd be the tenderness of jerky. Really: the tacos were totally sensational.\n\nAlso, we ordered a buffalo chicken flatbread which is essentially a pizza. And it was great! even with the bleu cheese, which I detest, this was a culinary delight.\n\nSo why the four stars, you ask? two reasons. One: the cilantro lime rice is offensively bad, like straight out of a box of rice-a-roni bad. I would have preferred kibbles and bits as a side item.\n\nAnd one other thing: it was happy hour and for a while they were serving beer OUT OF PITCHERS THAT WERE IN THE REFRIGERATOR INSTEAD OF STRAIGHT OUT OF THE TAP! Capital crime. Felonious. In fact, Dante wrote about a circle of hell where all they did was serve beer out of pitchers instead of straight from the tap.\n\nSo you should know that although the beer serving would usually be a four star deduction and I'd never look back, I didn't drink beer tonight and so I really don't care if my table mates suffer. But if you try that shit on me...\n\nFour stars. The food is really damn good.", "type": "review", "business_id": "14K90G-hbfk795NY7cKxMA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "3BddvFu894h9jHKneItueg", "review_id": "nkt4pe1T4YLQJ9kCVkA_GA", "stars": 4, "date": "2012-04-24", "text": "I always find good used records at Zia. I know I'll come out with something. They're pricing is usually pretty high on records/artists/genres that are popular or trendy. That's pretty standard for anyplace. The Ghost of Eastside keeps their prices slightly lower with more obscure selection.\n\nHowever, the flipside is that Zia will overlook gems in their used stock and price them pretty low. Probably because they don't know much about certain band line-ups, labels or releases in general. I've found quite a few gems for two or three bucks in the used section. \n\nUsed records are where it's at. There is no rationale in buying anything new because they'll press those things in such high numbers that they're not rare anymore. I'll still buy some new things from bands and such. Not a lot.\n\nAnyhow, I inadvertantly went to this Zia on record store day. I was eating with my kids at that Chinese place around the corner.\n\nI found a bunch of shit (not all rare but stuff I wanted): The Shit Licker's EP \"Cracked Cop Skulls (total early swede crust/dis), Orchid s/t 7\" on Hand Held Heart, The Automatics \"Golden Hits\" and \"Makin Out\", Chubbies \"Im the King\" 7\" on Sympathy, The Tie That Binds \"Adding Machine\" 7\", Gravy Train \"Hello Doctor\" LP. \n\nAll %15 off for record store day.\n\nI'll always check out Zia. I'll always check out anyplace that sells records but I have to say that I do like Zia.", "type": "review", "business_id": "6vKgpermKi8PNDYD5mkpKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "4HauhOnomrQxb3KPvIm_cA", "stars": 4, "date": "2008-06-06", "text": "True, you throw your peanut shells on the floor. And yes, my Asian family has gotten some curious looks when we've ventured here. \n\nALL worth it. Great steaks, the sides that come with the meal are SMASHING, and the sweet bread rolls and cinnamon butter? Those are worth the trip alone, for reals. The portions are huge - and you know how sometimes food tastes worse when made in large quantities at restaurants? everything is still really good (I recommend the house salad and the chili). Did I mention that bread? We always ask for a basket refill and then take it home. haha.\n\nMy family's go-to restaurant for a good steak dinner. I could do without the hokey Western thing, though. Yeah, not much for theme dining.", "type": "review", "business_id": "NA3tQYxR6Fq5O8nV6u41Tw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ltGh04bjEBhwItWVVG7UJg", "review_id": "nq0Qf0od9lWKXsE3EwwWEw", "stars": 4, "date": "2012-08-01", "text": "Looking for good Philadelphia street eats? Well, Forefathers Cheesesteaks & Fries is the place for you!\n\nWhile Forefathers' is light on Philadelphia decor like the Liberty Bell, the sandwiches would give fan favorite Philly restaurants like Pat's, Geno's or Jim's a run for their money. And you don't have to be a Cheese Whiz fan. The gooey provolone on my sandwich left my mouth watering. The sweet potato fries were equally good. Be sure to sample the available dipping sauces like ranch, honey mustard, or (my fave) fries sauce.\n\nThe next time you're in the mood for cholesterol count busting goodness, be sure to check this place out. Even Ben Franklin wouldn't need his bifocal specs to see that Forefathers is worth a fry...oops, I mean, try.", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HHlIOuuImgBq7Gbn5smaRA", "review_id": "1z8Z2VJUXl-6psEVGXyqIw", "stars": 4, "date": "2010-07-30", "text": "Friendly staff, clean restaurant, good food. Our favourite - filet & chicken kabobs. Patio seating with fans - great with a Blue Moon when the weather is nice.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QHguW0BNdNF4lr8YyNmXkg", "review_id": "sYvIF5BHPK7L-DeHmwl8SA", "stars": 5, "date": "2012-02-07", "text": "Had a celebratory lunch for a colleague today. We had a group of ten. Service and ambiance were great. I had the best burger I can remember. It was Lon's special burger; expensive at $16 but worth every penny. Highly recommend.", "type": "review", "business_id": "EHi-lebXGWjSktl4WvSoow"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "3BvSyX9kVKVRqRbpz-eqEw", "stars": 4, "date": "2010-03-18", "text": "Well it was St. Patrick's day and I could not think of anywhere to go but here, that might be celebrating. Oh the were definately into it up in here! haha patrons and staff were both decked out for the day in green and with hats, tee-shirts, plastic jewlery and just about anything you can find related to the day.The crowd was happy and I talked to a lot more people than on the average stop in. The dining room and bar were both filled. The Irish music was filling the place, the green beer was flowing as one might expect at a discounted rate. There was a corn beef & cabbage plate special being offered up as well as the usual menu items and the Wed .40 cent wing deal they now have started. There was St Paddys day decoration and give aways from happy hour into the evening. A fun and lively pub it was. My only complaint was that drinks were all being served in limp little plastic cups; mixed drinks and the beer.", "type": "review", "business_id": "F-ykHfGY9lWr12OJ_Ofy7A"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "qNANO9sFNVPMPfuogtBZXg", "review_id": "uIayR5rIp73fB_1k01s6Qg", "stars": 2, "date": "2009-10-14", "text": "I'm always searching for quality food at a fair price for lunch. There are tons of sit down expensive lunch places and lots of fast food (junk food) places too. When I read the reviews on Chestnut Lane I hustled right on over. The concept is right on but the execution leaves a LOT to be desired. \n\nFirst challenge is getting a parking place and I was lucky. The line to order didn't look too bad when I arrived so i was feeling lucky. However, the line took forever to move forward causing the people waiting to shuffle back and forth in a very confined space as there was lots of foot traffic trying to enter and exit. The woman at the register took each order, processed the payment, and then proceeded to prepare the drinks and sides for each order. The drinks are somewhat specialty items and are kind of labor intensive, especially considering that the order line is at a total standstill. SLOW! After way too long a wait, I finally was able to order...then the real wait began! It was a good 25 minutes before my order came up and it was just a TURKEY SANDWICH! I felt lucky, though, as the woman ahead of me in line was still waiting for her SANDWICH after I had finished mine and was driving away!\n\nSometimes a long wait is mitigated by the awesomeness of the food. Well, at Chestnut Lane this is unfortunately not the case. I mean it was a decent turkey sandwich, but when I saw the almost $16 charge for a TURKEY SANDWICH and ICED TEA I was expecting something fabulous. It wasn't all that. \n\nIf you decide to go to Chestnut Lane, maybe you could park in the spacious Jack-in-the Box lot just to the east. And grab a Breakfast Jack to hold you over during your long wait!", "type": "review", "business_id": "JW6fDZOuUKtJyZGeldh0xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SveiOSU6AHrjAY5cbewRvg", "review_id": "OCtlAqr3igeU2sv5I1u-cQ", "stars": 4, "date": "2010-12-13", "text": "Yummy, this place is great. Good burgers and you get to choose everything yourself the meat the cheese what type of sauce or veggies you want. Your not tied to a box at this place and it shows the meats are all fresh and the cheese and veggies are all top quality. I recently ate here with my family and at first thought it was a little expensive about 11.00 a burger after cheese and stuff. My personal burger was like $15.00 after I got kobe beef and horseradish cheese but the burger was very good. After thinking about it for a while it dawned on me that a Whopper is like 6 dollars and this was easily 3 to 4 times better then a Whopper. I recommend it if your looking for a good burger all natural no hormones and an entire gluten free menu.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "lyGntT95a-OlXAI4Y7SyUg", "stars": 3, "date": "2011-04-25", "text": "The Family and I went back here on Saturday night. \n\nThe food is just as spectacular as it was the first time we went! \n\nThe service however was just not good. Our waiter seemed dazed and confused the whole time we were there. And slllllow. He also forgot stuff, I ordered a second glass of wine mid dinner and it never came, and I was never given the option to remind him because he did not come back until it was time to clear the plates! We sat at our table, all of us with empty plates for a good 10-15 minutes with out anyone coming by to clear them. We just sat there. Not cool, and its not like he was in another section, there was a table he was at 3 separate times that was directly behind ours, he just chose to ignore ours. \n\nWe will go back as we do like the food and atmosphere and hopefully the service will improve.", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QRJ4DiRAWQ0kbJV6yLT8WQ", "review_id": "PsfM9FGL96Ac7TWXUvzAtA", "stars": 2, "date": "2012-07-25", "text": "I got a quick to go Asian Salad. Read the ingredients, no bell peppers (i'm allergic.) Awesome. Run like Oj to terminal B to catch my connecting and sit down to eat. There were at least 15 slices of red bell pepper that i had to pick out. This usually does the trick. I guess since it was packaged, it tainted the rest of the salad. Yep. Instant allergic reaction. Would not have wanted to sit next to me on the plane.\n\nIt was tasty fresh and fast. Please check your labels, Blanco. Spare me and others that might be allergic to unlisted ingredients.", "type": "review", "business_id": "8SjO3b-87uN2jXVXYNn47g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xj8_uH9j98szzpcM_9E6Pw", "review_id": "iZmySSvFpqwTAGlcld47Ng", "stars": 4, "date": "2010-09-25", "text": "Great beer selecton, and the white pizza is delicious! Good hang out spot wit sports on the big screen and board games/darts if that's your thing. \n\nThey also have a wide selection of exotic beer for sale. This is a beer paradise!", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vzwS0Hy3J5r3URvQ3eJr5A", "review_id": "UjcA-veGAIoheZjz_3WeQQ", "stars": 4, "date": "2009-10-22", "text": "A great place for group celebrations, Fajitas serves up its signature dish in 1/2 pound increments, including chicken, beef, pork, shrimp and vegetarian. Served with sides-- lettuce, salsa, cheese, pico, etc-- and warm tortillas, the fajitas always taste great. There's little reason to stray elsewhere on the menu, other than appetizers and additional sides.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WK2Jh-uBmeqH7oI9IxfSHA", "review_id": "fg7q0GxO-jwTJhmijzVrhQ", "stars": 3, "date": "2009-12-03", "text": "So I went here twice and I hated it the first time. I don't know if I got a bad cut of meat or what, but my burrito was a bit too fatty. I think it was the red chile burrito, or something.\n\nHaving said that, I recently gave it another shot and and went for the carne asada burrito. Very, very good. The cut of the beef is a little thicker than the usual Salazar's or Filiberto's burrito, but it was really good regardless. Oh, and the beans in there were awesome, too. It didn't have guacamole and I didn't notice till it was too late, but I'll be sure to get some in there next time.\n\nOverall, I give it 3 stars because i really hated my first visit, but their carne asada is completely legit.", "type": "review", "business_id": "166feddAL9YETnzTSUJ8aA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "28i9BnGOUpL4z4HJC18gfg", "review_id": "LWob6jdkvZa_aGsifYQLEw", "stars": 2, "date": "2011-10-30", "text": "I was expecting more since there are so many 5 star reviews on yelp. Three friends and I tried Rokerij for the first time on Saturday. We had a reservation for 6:30. The specials are on a blackboard above your head behind you if you are seated in the booths. You have the practically get out to read them. The paper menus have a lot of abbreviations so you have to keep remembering what the letters mean. I don't want to work that hard. Can't you just spell out the words? I ordered the surf and turf from the Richardson's side of the menu. What was delivered was an unappetizing mess. The plate and everything on it was covered in a chili sauce. It looked like dog food with a piece of steak in the middle. Really it was a terrible presentation. My husband's plate looked the same. The other two at our table ordered from the Rokerij side and at least it looked a lot better. The two bacon wrapped shrimp were flavorful and my steak was over cooked for medium but OK. I could have skipped the messy beans or at least they could put them in a cup. I may try them again but just for happy hour and I'll keep the Rokerij side of the menu.", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "b1k4tWoA_ISD7wqu82l8rA", "review_id": "u54Z1UZCi4vflPf5OmVrMQ", "stars": 4, "date": "2012-04-16", "text": "I was last at this place in 2004, and it was great. My favorite band was playing and I had a great time dancing, drinking and just listening to music. It's a must-see for any rhythm and blues fan. Of course, it wasn't open when I just visited. Ah well. But still a good place to catch a show.", "type": "review", "business_id": "JZJqJadk9pSoCGT7VTwBvg"} +{"votes": {"funny": 5, "useful": 4, "cool": 5}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "VFVYYw7c13CmoUIseHXlTQ", "stars": 4, "date": "2010-04-29", "text": "How have I not sang Scott's praises yet? Well, here I go! \n\nDo you want a place for a good, solid, stick to your ribs breakfast without being too frou frou? Scott's is the joint! It's a Jewish deli in the middle of my neighborhood! I was so surprised that I hadn't noticed it before! Chrissy P invited me to join her for breakfast one morning and I was just blown away! On my first visit, I had the eggs Benedict. My only complaint was that my eggs were a tad overcooked, (not runny) and I wished for more hollandaise sauce. \n\nFor my second visit, I brought my little sis and her BFF and we chowed! I had the Hash Mash and we shared an order of the french toast. I don't know why I challenged myself to my own personal \"how much breakfast can you stuff into your stomach\" contest, but I think I won. Everything was so good! There was nothing to complain about. \n\nI wish I could go to Scott's every day for a hearty breakfast! The dishes are simple, the service is straight forward, and I have NEVER walked away hungry. I will return very, very soon!", "type": "review", "business_id": "PxeX1M8WtyPxX1MuuGIh-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HvaVgP0S0dFaCbBDIQIkag", "review_id": "8kg8PJWeltCQxvqgEAadig", "stars": 4, "date": "2010-06-13", "text": "We were gifted a Groupon for Fuego and had the pleasure of dining there on Friday night. We did not have a reservation, which would have helped us sit outside, but we were seated inside right away. The host was very pleasant and welcoming. \n\nMuch has already been praised about this little gem, and I agree with all of the accolades regarding the atmosphere, the service, the food...it was all wonderful. \n\nWe had the Fuego salad, which was huge and lovely (although I would have liked some diced onions on it; maybe I'll ask next time), the tortilla soup (husband raved about this), the Pulled Pork with cheddar chipotle mashed potatoes and maple-glazed carrots, and the panko-breaded chicken breast with creamed jalapeno corn and maple-glazed carrots. \n\nIn all it was delectable. The entrees were succulent and nicely plated. I particularly loved the creamed corn, which was perfectly spicy and helped clear by sinuses (I succumbed to a bad cold the next day, so maybe I need some more!).\n\nThe only thing I would not order again is the carrots. I didn't feel these added anything to our dinners. The maple taste was pretty subtle, to the point of being nonexistent. Also, I think that if you're going to put yourself out there as an upscale restaurant, go the extra mile and use real carrots instead of the bagged \"baby carrots\" that you can find so readily on cafeteria lines. It will look better. \n\nOur waiter forgot to charge us for the soup. I pointed this out, and he comped us anyway. I will definitely continue to patronize an establishment that empowers its staff to make decisions like that without worrying that they're going to get a dock in pay.\n\nWe'll be back, probably first to try out the amazing-looking Happy Hour!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLZZpwBNB8hWson5dKXEtg", "review_id": "sjcP6BpAr80mXlUfD7f2dA", "stars": 4, "date": "2012-01-04", "text": "Great! came here with my girlfriend and my mom and left very satisfied! We ordered some of there apparently famous bruschetta, some panini and a bottle of their Zweigel wine from Austria and it was all fantastic! I highly recommend going there and at least getting some wine and bruschetta if nothing else, it is well worth you time!\n\nKeep singing,\n\n-Jerron", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "rOGsQLINCnMHjogRuAFhHw", "stars": 4, "date": "2008-08-17", "text": "Best Thai I have found in Phoenix, so far. This is not just excellent Thai food for Phoenix, this is excellent Thai food for the Bay Area. It's that good. Thai Lahna's food will intrude into your thoughts for days after you eat here. Like gustatory flashbacks, you will find yourself thinking about how wonderfully flavorful everything was.\n\nWe had dinner here with Christine O & Myles (+1) and shared 2 appetizers and 4 entrees. We had Chicken Satay and Angel Wings. The Satay was the least interesting item we had, it was merely good. Everything else was great.\n\nOur entrees were Phaht Thai which we ordered with no spice and Khung Nahm Prik Pow which was sauteed shrimp with roasted curry paste, onions, chili, bell peppers and mushrooms. Our friends ordered a spicy pineapple fried rice and a beef dish which I can't recall the name of. All of the dishes were richly flavorful and had plenty of sauce to carry over to the steamed rice.\n\nOne enjoyable highlight was the point counter-point going from the spicy heat of the rice to the almost sweet sauciness of the Phaht Thai. We can't wait to get back here and try more dishes.\n\nMy only complaint about this place is that they need to put some sort of tinting on the windows to a height of about 3 feet. When cars are pulling into the spots right in front of the restaurant some diners were blinded by the headlights.", "type": "review", "business_id": "wct7rZKyZqZftzmAU-vhWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CkwbQmJTc4uiCbVBZO8iIQ", "review_id": "FHo3Zk0LJ6REZ4bLoDBIQg", "stars": 4, "date": "2012-05-29", "text": "This location has 2 businesses. A bar and a grill. I never entered the bar. I only eat at the grill for breakfast. I love the food though. This is a great, greasy spoon when you don't care about exotic \"gourmet\" concoctions an upscale location or an eye catching electronic sign. This place serves your standard menu items. Quality food, reasonable prices and low overhead. Just the way I like it! The other reviewers commented on the owner and her abrasive nature. I agree she is abrasive but only at first glance. She is funny and sweet if you give her a chance.", "type": "review", "business_id": "-6O53B-ksqSKzWM6Y9moEQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "MIvCXHgE_vcKz7lYS5FPvg", "review_id": "U-lP9UlO9B_vMYPY0jh1EA", "stars": 5, "date": "2011-08-31", "text": "This place is great! I called at 8:30 am to make an appointment for that afternoon for 3 people. The place wasn't open yet, but the phone was forwarded to I think the owner's cell. He told me he would be at the store at 9:30 and he'd call me back when he had the schedule in front of him. Sure enough, at 9:30 he called me back and was able to schedule our appointments for 3pm.\n\nWhen we got there we were immediately brought back to a small room that had 3 big, comfy chairs. We sat down and a couple minutes later they brought in 3 tubs of warm water for our feet. They reclined the chairs and started at our heads. They massage your face, head, neck, shoulders, arms, hands, feet and calves. The they tell you to turn over, as they quickly turn the recliner into a massage table and proceed to massage your whole back side....all fully clothed. It was just wonderful....and all for $30! I definitely recommend!", "type": "review", "business_id": "x-QxnXWvV9m8FNAeIsnoFw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "soz3rgTDeV_WjUcPkEXJrw", "stars": 4, "date": "2008-08-02", "text": "Fecking Great. \n\nUpdate:\n\nWent for lunch: This time I thought the corned beef taquitos even better than last, curry chips tad saltier. Still loving the appetizers and the cider. This time had the cottage pie, it's really nothing to write home about, specially if you are from the region and your parent's wouldn't appreciate you seeing other cottage pies;) Spend the extra on the sheperds it's really much better. This was ok , really really nothing special and the heat could have been better. Service is good, but pedestrian , the last time I had no time pressure, this time I did. We're sitting at 3.5 - 3.75 now with the round up till 4. Still I'll return\n \n\nOriginal Review:\n First thanks to Julie P for pointing out that this place exists. That it's within stumbling distance of the house ( think prolonged zombie stumble over an hour versus a quick trip and recover) is even better. \nCider on tap is Strongbow and you get it in a real pint., Yay. Sadly that's all they have and there's no bottled ones to try , Strongbow is the Bud of UK ciders and while it's way better than no cider or what passes for beer here it's not that hard to stock more of a common drink for a themed bar. \n\nOnto the Food (I'll get to it as a venue some other time) \nAppetizers. Curry and chips was exactly what it should have been and a generation of Irish and UK kids have grown up with this for lunch at the local chip shop. \n \nThe corned beef and cabbage taquitos I think are moving up to be our #1 appetizer that's not a hot wing. Taste of these and the hot mustart / tomatillo salsa on the base compliment each other nicely. Not heavy on the fat and delightfully crunchy. For once an Irish restaurant trying to do something other than name US staples with cute regional names. \n\nMain: Salad and the sheperd's pie. Let's not get into the salad it's a waste of time reviewing vegetables. The pie is pretty good and none of the flavours overwhelm each other. Not sure the champ ( mashed potatos ) atop them live up to what lies below but it's more a personal texture issue than it spoiled the overall dish. \n\nBread and Butter pudding is really good but please if you have any trouble sleeping after reading nutrition sheets as to the fat and carb content of your meal DON'T just eat it and run round the block four times before getting back in the car. \n\nOddity? parsley flakes on all the plates to make it green , please just buy green speckled plates , it's classier:D At the end got a coupon for 25% off the next bill which I will certainly take them up on. It's as good for food as any of the valley's Irish bars ( better imho) but have to get back on pub quiz night to really know.\n\nWere in too early to hear the band but you can look at the pa, the space and know it's going to sound bad ( place looks like standing wave city) with anything electric and full drum set. The jukebox played \"i'm too sexy \" by Right said fred WTF that really messed up the ambience.Country bars don't have NIN on the box after all.", "type": "review", "business_id": "BpSLpzq_NRYghGSsb10G3A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "pU2lBD_W3VNvpzKZsRzi2A", "review_id": "ePrwqwZ0w8RmeMcxym3EpA", "stars": 5, "date": "2009-01-24", "text": "i miss this place so much, it's insanity. \n\nten high kentucky bourbon is all i can say.. and i never really cared how bad i felt the next day.", "type": "review", "business_id": "GpM75HH17EN6T8-Zoz93AA"} +{"votes": {"funny": 7, "useful": 8, "cool": 5}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "88pcmUu2Lsv_6vOKH81lHw", "stars": 3, "date": "2010-05-02", "text": "I had business downtown this morning, so I stopped in here for lunch, right around the corner. I used to go to OSF in Newport Beach, CA way back in the '70s, & I was somewhat amazed that they are still around & that there's one in Phoenix!\n\nStepping inside, this is the most junked-up restaurant I've ever been to!!! Ok, except maybe Bahooka Ribs & Grog!* It's a big place, with soft lighting inside, & rooms all over the place stuffed with tons of furniture, barrels, & so on, cluttering up every one of them! It's all on purpose, of course, & my booth in the midst of all this craziness was actually completely ok. (The floor elevation is up & down all over the place, too!) \n\nOk, so for my first time (in about 35 years!) I just ordered the \"Pasta Classics - Rich Meat Sauce\", which is their way of saying, \"Spaghetti.\"\n\nSome good things:\n\n* I started with a cup of coffee, & it was excellent!\n\n* Pretty soon came a mixed lettuce salad, which was simple, but the Ranch Dressing was really tasty!\n\n* The next thing to hit the table was a little loaf about three by eight inches of hot Sourdough bread, with a cup of whipped garlic butter, all on a breadboard with a suitable knife for cutting it. It was great!!\n\nA couple of less wonderful things:\n\n* Some girl (from the kitchen?) brought my spaghetti before I was finished with my salad.\n\n* I thought the spaghetti sauce was ok, but not great.\n\nBottom line: They give you plenty to eat here. My meal included the beverage, salad (or soup), the hot bread, entree, & dessert. It was nice & filling, & a good value at $9.99 for everything. :-)\n\n* Rosemead, CA (& formerly also West Covina).", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "8VikyrWXFKL8GU1a9t-o6Q", "review_id": "75WRKGIQMMXhKMeUuCIY3w", "stars": 5, "date": "2010-01-07", "text": "Unlike other reviewers, I didn't like the buffet, though my friends from work think it's a good value. However, I've been going for dinner to Flavors of India for nearly three years now, and have ALWAYS liked the food. FOI is my first choice for Indian cuisine in Phoenix, out of the four other Indian restaurants in the valley I've tried. \n\nYes, FOI is in a strip mall, but once inside, the ambiance is pleasant. It seems quite clean, I never got sick from anything I ate there (that's saying a lot, as I admit to being a fussy eater), and the waitstaff is helpful. Bollywood videos on the large flat-screen wall display in the corner are an unusual feature, but the volume is low or completely muted, so you can watch or choose not to, it isn't distracting. (Here's a footnote about that: I ate at FOI on the night of the presidential primary election. My dining companion noticed that most of the waitstaff was gathered around the TV in the bar, watching electoral results, so he asked our waiter if we could watch too. After getting the enthusiastic okay from the two other occupied tables, it was quite late in the evening, silent Bollywood was replaced by live news coverage with volume turned on).\n\nRegarding the food: I love their mattar paneer (cooked peas in a tasty curried gravy, with small cubes of homemade mild-tasting cheese). My super-spicy friend gets the lamb vindaloo (super-spiced as he requests). Tandoori shrimp, chicken and tikka masala are good though a bit pricier, the samosa appetizer (lightly battered and deep-fried cut vegetables) is fresh, warm and crunchy. Regular and garlic nan bread are everything they should be, biryani rice is overpriced (I'd stick with basmati rice as a side dish), and sweet lassi (a well-chilled dairy drink, similar in taste and consistency to a vanilla yogurt smoothy) is a nice treat. My spicy friend says his gin-and-tonic was weak, and they don't have ingredients to make a Bloody Mary, but hey, FOI is an Indian restaurant, so I can't fault them too much for that! \n\nOther pluses: open a bit later than many Phoenix restaurants (seating ends at 9:30 pm); very fast with takeout orders; there's lots of parking; the 16 North bus stop is nearby; silverware, glasses, white cotton tablecloths and napkins are always spotlessly clean.", "type": "review", "business_id": "LYyGQgL60VKdV-p_9OxmWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1lNo1hVxPsTLHWfQoiORSQ", "review_id": "jL4VbnAphrhZTfrH_WJM9g", "stars": 5, "date": "2011-09-06", "text": "Just had takeout from here. Amazing as always!!! Had the carne asada torta. DDelish!!!!", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tVoCVBUg-ubBMLQlX5_SVQ", "review_id": "aKDiEOhSMwcq0IHH8Ra7WA", "stars": 5, "date": "2012-11-29", "text": "The chicken was unreal good! And, the cornbread, just as reviewers stated was heavenly. It was light and very good!", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cXZFEVY_mEb0Itn9fyxN5A", "review_id": "VCyJyiitF6UjJIIeaTuuuQ", "stars": 2, "date": "2012-10-28", "text": "This is a some what conflicted review. Again, I wish Yelp would allow us to review multiple things. The staff was extremely friendly (maybe a tad too talkative), the location was nice and clean. The food LOOKED great.\n\nThe pizza just wasn't that good. It's just way too sweet. And when I say sweet, it's so extreme that it overshadows anything else about their pizza. It's so different in taste, it makes it seem like the wrong sauce was used. (I know it wasn't)\n\nIf you don't like sweet sauce, then order something else as their was nothing else remotely wrong with the rest of my dinner. It's just I've had about 1000 other better pizzas.", "type": "review", "business_id": "PZv6SPORD9ivj4jwKvGgjQ"} +{"votes": {"funny": 4, "useful": 5, "cool": 5}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "GoMNItcEppD35cWj2QZFew", "stars": 4, "date": "2007-07-19", "text": "I went to Saba's feeling a little scared. Fast food Greek in a strip mall? This could go one of two ways...surprisingly good or health code violation bad. \n\nI am very glad to say it didn't end being the latter. In fact, the food here was pretty damn good. I did expect Saba's to be an order at the counter joint, so I was a little disappointed to see it was actually a tiny restaurant. I like my Greek fast and cheap, okay? But I got over it, got a table and began the interminable wait for our server to stop chatting with other diners and take our order.\n\nThe menu has all the normal Greek items, including falafel- little fried balls of joy I might add- gyros, vegetarian platters, spanakopita and dolmas. Prices for the sandwiches and gyros are pretty cheap, but when you venture into the platter territory, you're going to pay for it. Platters start around $10 and go up. I ordered the falafel, of course, and so did my boyfriend. The pita sandwiches don't come with any sides, so we ordered a basket of fries to go along with our meal.\n\nThe dcor was pretty cool with big pictures of Greece all over the walls and the classic Greek music piped in. Unfortunately, not even the Greek music could mask the hideous, loud tool of a diner that was sitting at the table in front of me. He was one of those idiots that has to talk so loud, even the half-deaf cook in the kitchen can hear him. He was so loud I felt like I should respond to his questions. Hey moron- saying things like \"I like it loose, like my women,\" is just not funny.\n\nAnyways, when we finally got our food, it was really good. The falafel pita and the fries were tasty, but our server sucked. He obviously knew the loud tool, and kept chatting with him while we waited for our check. That was a little annoying, but overall, Saba's is a good choice for a quick Greek meal.", "type": "review", "business_id": "qXQ3ZBdwI3GlbR5-eYWqNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E_6QWOFzPdGhIzaV3MlBXw", "review_id": "5FSz9K2wb8P6fpCfhAglkQ", "stars": 4, "date": "2011-02-22", "text": "I love the Penang Curry at the Thai House! Better than any other place I've had. Too, the lunch special is one of the best deals in town. The spring rolls are pretty good, although I'm not crazy about the sauce, it's a bit too thick and sticky for my liking. The service is okay, during lunch they could use additional help, servers are literally jogging to service their tables. Overall, it's a great spot - I'm definitely eating there a few times a month if not more.", "type": "review", "business_id": "JiLK9QPjd53pOBEAaY83lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B_leEp0XWSNi5_HQ_BLAAg", "review_id": "t0Wn9BP_22VXDjG997hmXw", "stars": 3, "date": "2011-11-12", "text": "4 stars for the patrons that attended. good looking, generally friendly, and hardly any douchebags.\n2 stars for the cleanliness. I was there last night for a reserved, catered party and even though the food had run it's course on the patio, nobody cleaned it up. fantastic decor coupled with disgusting expired looking food\n2 stars for the bar service. ordered drinks three times and despite being at the barfront, it took 15mins each time to get a drink - which was generally underserved and overpriced. and this wait time wasnt just because sex girls were getting served... the bartenders were just that poor\n3 stars for the ambiance. music, staff, mood of the club. \n2.75 stars overall. with places similar to this such as mabels and az88, i prob wouldnt go back to this place unless invited.", "type": "review", "business_id": "qfDYECGmZmc4ofVpXNyFJQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ajrx5XuFoBqZk3HKAm76-w", "review_id": "rR3hTIr3wxCLZ8FzU9Keng", "stars": 2, "date": "2012-10-10", "text": "Well what can i say, if you like a club atmosphere and girls have naked walking around at night this is your type of place. It felt to me like this hotel was trying to be a hotel that you would find in vegas. the rooms are overpriced, there is no storage in them and they give you like 5 hangers total. The water here is awful so dont drink it. The pool area is nice, and the room service is very quick. So those aspects of this hotel are nice. I am not sure i would spend 300 buks to stay here though again. I am not really into the party scene but if you are this might be your kind of place. Id rather be at a pub bar or sports bar personally but to each their own!", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3VIRjR2V29TOaI9u64hMig", "review_id": "3BiFRC-W8IY2QQbx7v8cWA", "stars": 4, "date": "2010-02-16", "text": "If its cold, creamy ,sweet, and I can put many a topping of choice on it and its fat free and low calories, I'm all in. Golden spoon is this and more. Simply delicious flavors and all around good. Need I say more?", "type": "review", "business_id": "DRuE7KNz8vGR1_X1h9fiSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PO_Q5sx5AlY3HKGsSa1hmw", "review_id": "b6wmNM-d15ii_VAdEmstZg", "stars": 4, "date": "2012-01-23", "text": "My wife and I ate here when we were in town for the B&J auto auction. The food was good and affordable. We liked the fact that they had a full bar and we were able to have a couple of tasty Margaritas. Staff was friendly overall we had a good dining experience.", "type": "review", "business_id": "MAFjNfDWJRgWCw8IOC7mew"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JXjU9EVUCJ1rmYKxzDXSlQ", "review_id": "1DRD_FQ836VScS_AEBJLgg", "stars": 5, "date": "2011-05-20", "text": "I am a big fan of this place, either to stop in on a slow Sunday just to see what they have. Their stock rotates pretty frquently so always new interesting things to find. So far I've bought a vintage print, an awesome dress that I have received tons of compliments on, cool earrings, and some other kitchen items. The staff are always friendly. When you go, make sure you check out the Burt Reynolds beefcake poster they have behind the counter.\n\nGreat strore!", "type": "review", "business_id": "WwIBWuyavda4DggXh8pPNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q4Yy0RkFVtyqsYig8dyg3w", "review_id": "YPNq_oUyl5MKRjGShanEEA", "stars": 5, "date": "2012-09-11", "text": "There are 3 choices at ASU for game design. Which one you choose depends on why you want to study game design.\n\n1. Polytechnic = Games are an engineering problem. If you are interested in the engineering of games - go there. The college of technology and innovation http://interactive.asu.edu/?q=hom\n\n2. Tempe = Games for (Education, Medical, Legal etc) They are closely tied with the education department and the Games for Impact initiative. http://cidse.engineering.asu.edu/\n\n3. West = Games as Art (Fine Art) If you want to explore games as a medium and art form this is where you want to go. You can either get a BA -http://newcollege.asu.edu/harcs/degrees/majors/interdisciplinary-arts-and-performance-program or a BS http://newcollege.asu.edu/mns/degrees/computing/applied-computing-program", "type": "review", "business_id": "JJDaF4yFPLgQ3u678qyL2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0CIP-nma5yM9HY1OOBS2yA", "review_id": "RCFkvo1K8NRYlz_Wag1ZDw", "stars": 5, "date": "2011-07-12", "text": "Dana, there is no other like Dana! Even my kids ask to go visit her! I have 4 children, 2 boys ages 3 1/2 and 5 1/2 and 2 girls ages 8 and 19 months. Dana has been cutting their hair for quite some time. They all have a style of their own and have always been happy every time we leave. She has a great shop in Downtown Scottsdale, convenient and is very accomodating. Highly recommended by this Mom and her children!!", "type": "review", "business_id": "8z7NiCGUWVXj-Wg9rMJJ_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6K6GvIJZ_G_luOrVZDwrZw", "review_id": "RA2JIZ-n4MIqcbENT0LFsg", "stars": 4, "date": "2011-12-23", "text": "Finally made my way up to this little joint. Owned by a couple of people who live in-State, not a corporate chain but they do have multiple locations. \n\nHad the DeeZee. Tasty lamb,garbanzo,potato mixture in a thick stew with a side of flavorful broth \"soup\" for slurping.\n\nSon had chicken kebab, very tender, very juicy, flavorful and served with basmati rice which went well with my lamb too! Came with a cool roasted Roma tomato, spicy red onion pieces and more pita than we could eat.\n\nHad the hummous, its simple & tasty but too \"chilled\", next time I will ask for an extra plate and stir it up real well before we dip.\n\nGOOD SERVICE. Friendly order takers give input on the food. HAPPY with my selections. We'll be back. Two full meals with leftovers, hummous and 2 drinks for under $25!", "type": "review", "business_id": "pvMeUi5Lw2O5vIXg9_EvDg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "uGsL74xWb-vDbXCn8u1LkA", "review_id": "R26jQ_9xBU8tk9j3ysLI7g", "stars": 4, "date": "2007-03-29", "text": "I love this place because it's right next to my dorm and also, it's one of the few Mexican restaurants that I've found that actually sells a Mole (molay') dish (chocolate and poblano chile's if I'm not mistaken). Try the chicken Mole and you'll really like it... very authentic.\n\nChips are great, as is the salsa. You can tell its family owned... you can ask for Mexican cokes too I think. I've gone here twice and I'd go again whenever the stomach callers.\n\nSometimes they have a wandering mariachi guy. I always feel awkward when they come around because then you feel like you have to tip, but I think he sensed we were poor college students so he didn't come by.\n\nI'm not sure what you ordered that you didn't like (to the first reviewer).", "type": "review", "business_id": "EZox45JjYxhwYFbL70wPIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IGVVkUvKZsmWAPzbketgjA", "review_id": "FuRD5928_S2gpmGpRG8gyw", "stars": 5, "date": "2012-01-08", "text": "Great little place in a great little neighborhood. Food was great, service good and friendly and sitting amongst the rose bushes and garden made one feel as if we were having a nice relaxing Sunday breakfast in our backyard. Love the place.", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "vBnGjrTvITilgRQ6_8W16g", "stars": 4, "date": "2008-02-05", "text": "There's not much more I can say about Rula that hasn't already been said. Except, I guess, I can tell you why I like this place. I like it for two glorious words: HAPPY + HOUR. \n\nYes, those two words matters so much to me. Rula offers 1/2 off all appetizers and discounts on pints. What could be better? I say try the brie, for it comes with an unbelievable apple chutney. If you're looking to split an entree with a friend, opt for the lamb stew - served with a side of soda bread. The stew is hearty and the serving is huge. I've also had the shepherd's pie, which was pretty tasty. Way too large for one person, though. \n\nAlso, I discovered that Rula can make ya a Raspberry or Chocolate Guinness. I don't know how either tastes, for I went with a plain (but satisfying) pint. I asked to sample the concoctions, but was told Rula doesn't let people sample liquors. Fair enough. \n\nIf I could change one thing about this place (ok, maybe more than one thing), I'd have a larger beer selection - even sold by the bottle. I'd also make it less noisy and crowded at night. If you don't get there early enough to stake your spot, you're likely to be standing the entire time. That doesn't make for a very comfortable experience. Word to wise: take advantage of Rula's casual atmosphere and leave your ridiculously high heels at home.\n\nIt's great that Rula offers live music. I wish they offered more. Sure, the outside patio is great, but what if I'm in the mood to play darts? I guess I'll have to go to another bar for that... and for the beer I'm really craving.\n\nWORD TO NON-MEAT EATERS:\nTry their veggie burger thingy - with mushrooms, peppers and such all heaped between two soft and delicious pieces of bun. Yum. It comes served with fresh, crispy and DIVINE 'tator wedges. These ain't your normal french fries, people. I STILL have cravings for them!\n\nRula Bula's food deserves 5 stars!", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "NeLthtGs80ad0BFE7yjv0w", "stars": 3, "date": "2012-04-22", "text": "I don't know why I waited so long to try this place when it is literally right around the corner from my house. I think its because I went to the one in Ahwatukee a long time ago and didn't care for the food. But I don't think they have the same owners since the websites are totally different. But anyway, on to the review.\n\nWe ordered takeout and I was very impressed with how nicely it was all packaged and how quickly it was ready. Also, the woman on the phone was very friendly, easy to understand in spite of an accent, and patient in explaining the menu items that I was unfamiliar with. All the appetizers sounded so good, we decided to get a bunch so the hubby and I could just pick at them since he was sick and didn't have much of an appetite. However, the portions were bigger than expected so we ended up with quite a lot of food. Lettuce wraps were very tasty, I loved the dressing on them. Eggrolls were good but a little too much \"wrapper\" and not enough filling IMO. Sweet potato chips were not what I was expecting, they were the white sweet potatoes that really don't have much taste to them and they were deep fried with I believe a panko breading on them. A little bland but the sweet/hot dipping sauce they came with was fantastic. I loved it so much I would order this again just for the sauce. Also got some chicken soup for the sick hubby which I didn't try but he said was quite good. I threw in some pad thai noodles since that basic dish is always my test when evaluating a new Thai restaurant. I asked for a four (out of five) on the spiciness scale and that was perfect for me. I was very pleased at the heat level and overall flavor of the dish. So many places hold back on the chiles if you are American, even if I insist I want it hot, and I have never understood why. The only thing missing was a squeeze of lime and garnish of fresh cilantro that I like on my pad thai. Presumably you could get that upon request if you were dining in, it was no big deal to me since I had some at home.\n\nI still prefer Yupha's as the best Thai in the area. But I will definitely be back here for takeout because of the friendly, speedy service and convenient location. I noticed some wine bottles in the back when I was picking up my food so that may entice me to dine-in at some point as well.", "type": "review", "business_id": "ujLZmyy11g1JHCQTxRA3Dw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3gUcAKxaPfUlJIHqNRMGHQ", "review_id": "C8cgoIpYOQ34M2aQviePcg", "stars": 4, "date": "2011-10-26", "text": "Food is consistently tasty and people are way cool. Take care of your bartenders!", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "Yik3_gi3e2F5WsKOFm14QQ", "review_id": "mB17dzreCHZs4QhnHRAp3w", "stars": 5, "date": "2009-07-30", "text": "Why am I trying to hide my love...\n\nI'm at Gallo Blanco Cafe at least three times a week. Yes, it's totally convenient. But then again, so is that Rice Stick in a Bowl place around the corner and I'm never there! \n\nI'm trading in my four stars for five stars. I never get tired of the food (which is totally delish), the drinks, the jolt in the coffee, the servers...and THE HOTEL!! \n\nYou guys always treat me well, and I can see you treat everyone else like a rock star too.\n\nThanks for being a great 'light rail convenient' local business!", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VgdDYz0-i1kDszfEu5nFdg", "review_id": "y0hIX_5HWANLM0keAUqe-Q", "stars": 3, "date": "2012-09-25", "text": "It was nice but not a great experience. The music was very loud. The waitress was very helpful and knew the menu and the wines and made some good recommendations (love the Newton Chard). We split a salad and a pizza. The watermelon salad was an incredible medley of complex flavors - the red chili giving the watermelon, avocado and goat cheese some kick to offset the sweetness. Very interesting. We got the funghi trifolati pizza and it was just ok. After the first wonderful taste of mushrooms, it was all very bland with nothing to make it stand out. I think next time I would try sitting on the patio as that looked very inviting and relaxing.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "RTTXp5yKNSKFDg70nIagJQ", "stars": 4, "date": "2008-04-01", "text": "While my partner and I don't normally like chain restaurants Ling & Louie's is an exception. They're a small chain of only two restaurants they are franchising. \n\nWe both started with Miso soup which was okay. Then we moved on to Potstickers, on of our favorites. they were very good, but not outstanding. For our entree's I ordered Firecracker Chicken with Broccoli and my partner ordered Meatball Sliders. The Chicken was VERY spicy, but also very good. I didn't have room to try the Meatball Sliders but here they were also very good. All-in-all it was a pretty good meal and the service was perfect.", "type": "review", "business_id": "gI4jThFNwy73SzaNvi-1dw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "u5wb4pqK-yCNR9hdRcAiDA", "review_id": "ns6TGzpmxMsv8TIFg4-kpQ", "stars": 5, "date": "2011-04-05", "text": "love the food and the services ,but you neesd to weight at 350ib to eat the burgers for free, the burgers are big and jucey", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HKZkXR96W6UgAexpX-cKFQ", "review_id": "9d2yxnG3UQf8RuSxqEdz3Q", "stars": 1, "date": "2012-03-05", "text": "We found a bandaid with the panang. We ordered panang with chicken, not panang with bandaid. \n\nWhen we told the waiter, he argued that it wasn't a bandaid. I'm sorry, there's no mistaking a bandaid! The icing on the cake was that they charged us for it!!!\n\nIf you like bandaid on your dish, this I the place to go!\n\nToo bad yelp doesn't allow 0 stars. This place definitely was a ZERO.", "type": "review", "business_id": "cT_rocMh92B9t62Disp6gA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iqP9cGJIVakQfaW3QL3WFA", "review_id": "XEAemMRWs3hMalYqQcyl3w", "stars": 5, "date": "2011-07-30", "text": "I love to come here from time to time when I'm in the area and I am always highly satisfied with the food and service. The menu is great and there's a variety of dishes for every taste. The service is great, everyone is always really nice and the atmosphere is quiet and relaxed. Definitely a great place to have dinner/lunch with friends. I read some other reviews from people who complained about the food, mostly these were meat eaters, I'm assuming, so of course they were not satisfied. This is a %100 vegan restaurant, note it.", "type": "review", "business_id": "u-nMW__EKMYH_PVqacYc3Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "PMNbT3Y8KDt7E979AJMyng", "review_id": "w_xsHHKXmcmcfjy2qYg3Ow", "stars": 5, "date": "2009-06-05", "text": "T. Cook's continues to be my go-to spot... with or without my fiance. It's like my home away from home. I feel comfortable going in for a drink or a bite to eat any night of the week. Let me be clear about one thing, however - I always sit at the bar!\n\nIn addition to the regular menu items, the burger at T. Cooks is consistently amazing. This sizable delight is carnivore candy for the soul. Ten ounces of tenderloin burger with white cheddar cheese, bacon and Guiness tempura onion rings on a ciabatta bun with a grain mustard aioli. My mouth is watering just thinking about it right now.\n\nAnyone up for a burger?", "type": "review", "business_id": "fVgrpVyp-nPLTac9YIjTug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eJSohFKrMPXVHjOLEcK4_g", "review_id": "kJqVszekNb3F0yanBVnNzw", "stars": 5, "date": "2010-07-26", "text": "I just started taking my car here a few months ago. Someone from their business stopped by my office building with donuts and coupons for a 60,000 mile check up, and that's how they got my business.\n\nI brought my car there for a routine oil change, and they did the 60,000 mile check up which was very useful. Of course there was the usual list of things I should fix, but they never made me feel like an idiot or that they were taking advantage of me, which I can't say for most mechanics.\n\nThe other thing I really like about them is they give me a ride to and from work, so I can get maintenance done on my car without missing work or worrying about how I'm going to get back to the shop.\n\nBill and the other guys that work there are all very friendly and I definitely trust them with my car needs.", "type": "review", "business_id": "65ujBUIwQ3iGBjymj268IA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "zSz_nb1y0fYwfsBOdWCW6Q", "review_id": "g2eIDF_bxq6j23rXwlO5vw", "stars": 5, "date": "2009-04-22", "text": "I love Lulus cupcakes! They always have a perfect amount of frosting and alot of their cupcakes are better than the ones at sprinkles. This is because they seem to be moister and hold themselves together better. \nI love the raven! The Sales people are nice.\n So yummy! And I love that the place is pink!", "type": "review", "business_id": "IKDPP8onhaxbM12drBWCKQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "kk05snSafuIFK0lsxoMNzA", "review_id": "siLUMKPdCZUBAAKv7HTeHA", "stars": 5, "date": "2011-05-07", "text": "I recommend this to everyone. I have never had a bad meal here. Inexpensive, great service, off the beaten path. Love this place.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "H4HyYjNt9Vcu-a4ZMugdeA", "review_id": "2jBdsDsQ3sKxa9JGDFVhMg", "stars": 5, "date": "2012-02-25", "text": "I've been going to Orange theory for awhile and I can't believe how much I've toned up and slimmed down!!! I haven't bulked up and now I'm on my way to getting my bikini body back!! I highly recommend this work out!! It's so awesome and I can't believe I can get my full work out in an hour!!!", "type": "review", "business_id": "TtLsZgjqIzWe-OapFGa_aA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rKiKokChTSYQaoZAkU9kEQ", "review_id": "h5smYAVKZfIGJH09RBNJ_w", "stars": 5, "date": "2011-08-06", "text": "Oh my gooooooooodness! I love this store. I have been a tea enthusiast ever since I received a cast iron tea pot for Christmas. A few weeks ago, I purchased a Groupon for $20 worth of merchandise for $10 and headed over to the store. The experience was amazing. The varieties were intriguing, the prices were reasonable, and the owner was very knowledgeable and friendly. Also, the layout of the store was appealing and inviting. \n\nWhen we visited the store, we received a packet of tea for the stores 1st birthday. I hope there will be many more to come.", "type": "review", "business_id": "4K7nR-e9staGTNJk1ez7MA"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "394ECIL6M0w8S-nJypi7Kg", "review_id": "x2QYZVAWKCx3VPvBtmiBTA", "stars": 1, "date": "2012-03-15", "text": "After looking for a car wash & vacuum in the area I selectioned Francis & Sons. I checkeed thier priced on thier website, but when I got thier the price they wanted to charge was much more, they kept trying to sell an upholstery cleaning, and then said I don't take care of my care so there would be an additional $20 to clean the black plastic exterior pieces. I only wanted a qhick exterior clean and vacuum. They refused to honor thier website pricing and insisted that what I read on thier website was not on there. Needless to say I didn't get my car washed there. I would highly recommend AVOIDING these crooks.", "type": "review", "business_id": "fdhydw4SV3rSjq06IL9LVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J2L8E6dYS66cKkV6SHujuA", "review_id": "AG-WoV2KNZd60LGyQA-mpQ", "stars": 4, "date": "2009-01-15", "text": "great product, cool concept and atmosphere, would get the 5th star if was more welcoming to hanging out and enjoying with a cup of coffee, but i also can respect the fact that this place is strictly business. like any place if you get there during a rush you are gong to wait, but the trade off is fresh product neatly packaged a for sure spot to check out in old town", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 4, "useful": 2, "cool": 5}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "P4V_MGc-hA6iBRajU4Km4w", "stars": 5, "date": "2011-08-14", "text": "I violated my rule of avoiding grocery shopping while hungry and decided to venture over to Whole Foods. Whole Foods tends to be the indecisive individual's nightmare (that would be me). Yet, this store is a foodie's dream. \n\nThere are aisles upon aisles of glorious, wholesome products (pun intended). Everything is meticulously organized and there are at least ten varieties of every type of item. No joke. It took me fifteen minutes to decide which brand of bottled tea would be suitable (and economical). \n\nI roamed the freshly prepared food section like a vulture circling it's prey...strategizing which choice would be the best taste sensation. Did I want a made-to-order wrap? Or a glass of wine and a couple tapas? (the live music was alluring)...Maybe sushi? Pizza? Salad bar? Soup? Maybe something from the smokehouse...oooh! A cupcake from the cupcake bar? \n\nOn and on it went. \n\nMy final decision was sushi. The spicy tuna roll tasted fresh, and the Pacific salad roll was very crisp. I also grabbed a container of ginger for $1.99--not the artificially preserved pink variety--all-natural pickled ginger. Bliss. I purchased some cucumber salad from the salad bar as a side/palate cleanser. All in all, a very satisfying meal. \n\nPrices are a tad higher than your average grocery store. Then again, it is Whole Foods. A word of advise: come with a game plan (e.g. a shopping list). If you don't define what it is you want prior to entering this store, you'll end up spending two hours and twice as much money than you anticipated.", "type": "review", "business_id": "2e1jzfiHFGCRpV66gYNVbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E9rN5N6_39vyBVmqwZDqGw", "review_id": "52CzJDb4EakSjEQOUys77Q", "stars": 3, "date": "2009-08-27", "text": "The sales people here are very knowledgable and helpful. They are also very friendly and great with reccomendations.\n\nI know it is a comic store but I only went there for DnD books/suppliments and ocassional Anime.\n\nI am pretty sure their Anime is bootleged, but due to how cheap it is and the fact that you usually can't find it anywhere else I don't care. They often come in complete sets for like 30 bucks which is great for a whole series. I have had problems watching them on PS2/Xbox sometimes but due to the price I keep coming back. \n\nNow then if it weren't for this next part they would have a 4 star.\n\nThey no longer sell DnD books, or Dice sets which breaks my heart. They always had the best selection when it came to dice and I haven't been able to find another place that carries more than 5-6 at a time.\n\nOut of all the Atomic Comics I have been to I like this one the most, the people there are always fun and inviting I can't stress that enough.", "type": "review", "business_id": "fa776KC8le1MHOOws_1PNA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Up6DnMZnFw2RRjZHkt9Fug", "review_id": "hPBa2_LPhYphpx7XpOKlew", "stars": 4, "date": "2011-09-24", "text": "Went to Blanco for our 3rd restaurant week meal. Been here before and it's great. the hostess really was having a bad night and just needed to go home. Not one smile or even a hello. When we walked in just a blank stare. Great! (sarcasm) Food and service were otherwise really good. I had the green chile pork enchiladas and I love a good tomatillo sauce. The tres de leche cake was also wonderful! It's kind of loud place and we got to hear the conversation about blow jobs from the table next to us.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2Oxg0Iwe6BwgrlofA3f21g", "review_id": "nSe5tNvfDBjSkUAX2Q_M7g", "stars": 5, "date": "2011-07-19", "text": "Beautiful little gem of a restaurant. Great outdoor seating, amazing-truly amazing mussels. Wholeheartedly recommend, perfect \"date night\" too.", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O-Offow2UVaab04Wwv9g-w", "review_id": "CyVYUFnUHGo5TafWoP1azg", "stars": 5, "date": "2012-12-29", "text": "The restaurant itself is not fancy and does not have an amazing atmosphere, but I really love the food here. I've eaten in the restaurant a few times and frequently get takeout. I love the Gobi Manchurian, Vegetable Vindaloo, and Special Vegetable Curry. I also like the weekend buffet - it's a great way to try several different things. Delicious!", "type": "review", "business_id": "lhRUPA28pRIN1MnllN-o9g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "_7DelOvcAaPrP-eUXIt-Cw", "stars": 2, "date": "2008-05-16", "text": "I know this place has been around forever and is well established in the Valley. But I think its about time for some CPR! Everything about this place inside and out screams old school...all the way down to the service staff's uniforms! Ummmm...has anyone else noticed that this place used to be their parent's old stomping grounds? That's cool but how but making it inviting for the 30-40 yr old crowd? \n\nI had prime rib that was barely warm and I swear had the flavor of a dry piece of toast! The most bland Prime I've ever had. The \"fresh\" horseradish I requested on the side was even bland. My friend had the buffalo meatloaf (half buffalo/half ground sirloin). Now that my Dear Reader was a home run! Tender and full of flavor! \nThe ribs were decent and the \"baseball\" fillet was par at best also. \n\nWe went on a Friday night and were 4 of perhaps 20 other people in this huge place! The website reads like its scrumptous. When in fact, the experience was more like waiting in line at the new hot club only to find no one inside! \n\nOh....the only redemption was the desert. Pecan pie and their citrus creme brulee....Both make you rub your belly!!!\n\nBon Appetite!", "type": "review", "business_id": "7U8TYNW4Mvx6m3zexsO0sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x5hR5zfQiXBqlYubgv375w", "review_id": "e99_YVWJESEqFfXHZMjdMg", "stars": 4, "date": "2012-06-27", "text": "Spectacular view and great beer on tap. The atmosphere is one that makes you want to hang out all day and enjoy the view.", "type": "review", "business_id": "l39y6WX-S6Hh2h35Bv4oNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gVgbIRT9mJkeWSAzBA9i6g", "review_id": "aa73X0bZaJmA0SPuu0BDrA", "stars": 3, "date": "2012-03-20", "text": "Beyond the attractive decor and nice food-presentation, I wasn't all that impressed by True Food. Certainly the concept of healthy, sustainable, locally bought food is great (albeit in the form of an upscale-chain), but overall, True Food didn't live up to the hype.\n\nOn the positive side, the edamame dumplings with daikon radish and white truffle oil were extremely tasty, and my Ginger Margarita was excellent. \n\nOn the not-so-positive side, the raw ahi tuna app-special was just OK, and the tiny slivers of fish (maybe 8 total?) were more of a \"taste\" than a full appetizer. Even worse, my chicken sausage pizza was slightly burnt on the bottom, and tasted bland and uninspired -- the sausage was finely ground and lacked much flavor, and the fennel was invisible. Added to the long wait (weekend dinner reservations are a must even though the restaurant is huge) and the pay-parking lot (if you stay more than two hours, which we did because of the long wait), we all came away mildly disappointed.\n\nWith many other excellent Phoenix-area restaurants to choose from, we'll head elsewhere next time.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdl61MWMguYRSunH8CniQw", "review_id": "qKwNZzXPniKiQyDdIhNBEg", "stars": 4, "date": "2012-12-29", "text": "Oh my... Delicious! Lunch plans with the girls led us to Windsor on a lovely Sunday afternoon. I had the crab cake BLT ... Crab cakes, yum... add bacon? Amazing! You have your choice of sides and I had Jo's Church Potatoes. This was a really yummy potato casserole. I was wickedly full and incredibly satisfied leaving Windsor (didn't stop me from getting ice cream next door, but that's another review.) And like their parent establishments, they have happy hour every day until 5pm. Woohoo! I highly recommend this for a CenPho lunch or happy hour. Yummmeee!!", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "scUmhhh16tMpv2vVKw9lqw", "review_id": "uj_bMO6nm-fbghj8EMG-WQ", "stars": 4, "date": "2011-03-29", "text": "I was in Scottsdale from California with some friends to catch the end of Dodgers spring training and to get in a couple of rounds of golf. We came here wanting to watch the Lakers game, but unfortunately, they don't have the NBA package so we had to settle on watching the Suns game on ESPN.\n\nMy friends and I ordered the fried clams, a salad and three burgers. We all thought the food was good as well as the service. Drinks were tasty and our server Heather was very attentive and was always coming by to make sure we were well taken care of. We'll definitely come back!", "type": "review", "business_id": "o9nCXNC14VScabiy2bftgw"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "AHu5r-41HYmM-0Ddjv6HZw", "stars": 3, "date": "2008-07-10", "text": "This place does not need another review, but I'll chime in anyway.\n\nI have been dreaming of coming her for several months after countless hours of drooling over their website.\n\nI went for a late lunch with the Gorgeous Gabi. \nWe had the restaurant all to ourselves, it was quiet and comfortable.\n\nI ended up just ordering a salad, it was so hot out (surprise) and I just wanted something light. \nI got a Diet Coke and the Caesar Romero Salad (see pics) it consisted of; mixed greens with cilantro dressing, grilled lemon/herb chicken, fontina, cherry tomatoes and toasted pepitas. \n\nIt was really good, I like the mixed greens in place of the usual romaine and although I didn't taste much cilantro it had great flavor.\n\nOur waitress was not very attentive at all, when she did come around to grab my empty glass of soda she did not ask me if I'd like another, instead she brought me a glass of water.........with a bug in it! \n\nI'm giving 3 stars for now, but I will go back because there are still quite a few things on the menu I'd like to try.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "77UjgOU5vayzFUCFUhykgQ", "review_id": "KMixZiFAIsgbFtfCDxJttQ", "stars": 1, "date": "2012-02-28", "text": "This has to be the worst restaurant in terms of hygiene. Two of my friends had food -poisoning after having dinner here. The food is just unhealthy with tons of oil floating on the top of curries, and I am not sure if any health/hygiene code is followed here. \nThe service is poor and the information on its website is incorrect, the owner does not allow dine-in after 9 or 10 even though it says that the restaurant is open till 11. \n\nOne night I saw the owner cleaning the place without gloves and she was nice enough to give us a to-go parcel without cleaning her hands (great example to the servers!). I had a peek inside the kitchen when the door was ajar, and it definitely looked dirty.\n\nI have been a lot of hole-in-the-wall places around this restaurant, including Haji Baba, the Vietnamese place and others, but neither any of my friends nor I have fallen sick coz of the food. If you need a spicy-food fix, i strongly recommend you do not try this place, lest you want a visit to the doctor the very next day.", "type": "review", "business_id": "x3ws2L-TlI-JPcEQjjEC9g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "w98TrmskPMlMQLpz-Z8EVg", "review_id": "DbD5Anjjk64oC9uPW-0onQ", "stars": 3, "date": "2012-04-03", "text": "Been closed for a long time.", "type": "review", "business_id": "SMaed6DT2GCRlM-kFIl-eQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "16GhsZiS_ybqfHO-7Av07g", "review_id": "U3cCw_QbYPRH41HxhbYd3g", "stars": 5, "date": "2009-07-19", "text": "Once we went to Grimaldi's in Hoboken, NJ and weren't all that impressed. Yet the first time we ate at this Grimaldi's, we were blown away! \n\nUpon entering, you are enveloped by the aroma of pizza baking in a coal-fired oven. This is swoon-inducing---and I mean that in a good way. The smell almost has you believing that you are in a pizza joint with a coal-fired oven in the Northeast.\n\nWhen ordering pizza baked in a coal-fired oven, I like to get a plain cheese pizza. IMO, this is the best way to fully taste the sauce, cheese and crust without anything else get in the way. \n\nThere's nothing like a thin crust pizza from a coal-fired oven with that char on the crust. The crust has just the right balance of crispy and soft. The sauce is well flavored with proper proportions of basil and oregano. The amount of cheese is just right. I love to savor each and every bite.\n\nThere is more to this Grimaldi's than the one under the Brooklyn Bridge. This one has other items in addition to the pizza. We like their antipasto. It has sliced mozzarella which is fresh and creamy, black and green olives (the black ones are pitted, the green ones have pits in them), roasted red pepper slices which are bursting with flavor, and a good, flavorful salami.\n\nEverytime we're in AZ, it is so worth it to us to deal with the heavy traffic in Old Town Scottsdale to dine at Grimaldi's!", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "ca2Sa9Enqg2GlWFQ95p8bw", "review_id": "9uwKBawK2GF_awBTteNt2g", "stars": 3, "date": "2008-01-21", "text": "Ok, this is coming from sombody that is not a fan of the Cheesecake factory.\nMy cousin, her friend, and I walk into the the restaurant and decided to eat in the bar area. We had a very sweet waitperson, Summer. She rocked with suggestions and her personality was great. I had one of their smoothies, just like the one at Cheesecake Factory. It was good, but I have had better at Jumba Juice. I ended up having their angel hair pasta, my cousin had a chicken salad, and friend #3 decided that he would just mooch off our plates. The reason why I hate these types of places is that they give you WAY TOO MUCH FOOD! Why do they do that? Especially with people, like me, that learned that they better clean off their whole plate? I just gained 10 pounds.\n\nFood was nothing spectacular. My cousin then ordered the Splenda Cheesecake, that she said tastes horrible. (She had the one at Cheesecake Factory, which she thinks is awesome)\n\n5 stars to the lovely Summer (or was it Winter...I can't remember now...crap!) My cousin actually left her money on the booth. She called the restaurant and Summer actually said she found it and was holding it for her just in case she came back for it. Extra plus for honesty that I didn't even think existed in the world anymore. 2 stars for the mediocre food. And 3 stars to the host stand...a story that I don't have enough energy to even type here.", "type": "review", "business_id": "VO13q-11lh7St1gd7JPI3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RzHNDCGLrGtlB_gRWiOXEQ", "review_id": "XeFRi_pCUoEw-TfuhBANtA", "stars": 1, "date": "2011-04-14", "text": "Terrible service--they replaced my phone screen and it broke within 2 wks. Phone was not dropped or mishandled, just cracked and \"owner\" would not honor their warranty. They only accept cash--that should be a red flag if you are considering a business like this!", "type": "review", "business_id": "HvCIOs3WQiycBk_3VqdGYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LHQ2fuC2RDS-Md_dN2O1IQ", "review_id": "OvHF6-irwMIcZcwPXLb7lQ", "stars": 5, "date": "2010-11-09", "text": "Championship establishment here.\n\nI walked in with my significant other and was surprised at how busy it was on a Tuesday night. At first, it didn't click but the entire volleyball team from a nearby high school decided to come so it was extremely busy.\n\nThey have some really good specials, but what really caught my eye was the specialty burgers that are $6. Big misunderstanding, most $6 are single patty and have some special toppings. Zipps decided to do a double-stacked specialtly burger. Yes, two 1/3 lb patties on a bun with some special toppings. We got two burgers and split them half and half, green chile burger and sweet jalapeno. Both were extremely awesome. You can get salad, fries, onion rings or half-half (half fries half onion rings). The fries kind of taste like In-n-Out fries, and my significant other would describe them as being better. I don't agree, and I don't disagree. Overall, good food, I can't wait to come back and try something else from their special menu. The $6 specialty burgers are available Tuesdays from 8-close and weekends from 11-4.\n\nThe service was really awesome. They definitely cared about us and went out of their way to make sure we were doing okay. I think they felt guilty that we were there when a huge group was there as well. Apparently, they also were understaffed, but it honestly did not feel like it. Seriously though, it was some of the best service I've ever had at a Phoenix restaurant. To top it all off, the manager had checked up on us a few times, and at the end after we paid the bill he brought us a cookie platter (pizzookie, or cookie with ice cream).\n\nNow, I'm not a fan of pizzookie, but wow, their cookie platter was awesome. It wasn't on special that night, but I know its on special some other night and at $4 its probably worth a go again. Might I say one more thing about the cookie platter? It's just as good if not better than BJ's.\n\nI am actually excited to go here again. With some really good food specials almost any night, I think if I ever run out of ideas this might be the first place I think of. The food is a little greasy, but I think that is expected when you go to a sports grill. Want to lose 50 lbs, go to subway. Props to the owners for such an awesome establishment.", "type": "review", "business_id": "7TMf1NuuAdvhG7IojZSKnw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "xfo0J6gri7wQJ2S_tYc6BA", "review_id": "1NXx__E4lfMzoVUIdCFpsQ", "stars": 5, "date": "2012-09-10", "text": "This place is amazing! The food was delicious, the waffle was like no other. The service was great, very attentive and nice. I will be returning.", "type": "review", "business_id": "JMZfcwARQ68n7GGsqmtdaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WczdDqTWfFbk9P0db2J3YQ", "review_id": "aAonWkbUIzw3q-TOp_npNw", "stars": 3, "date": "2011-10-26", "text": "It's Pei Wei. The service and food are always satisfactory.", "type": "review", "business_id": "gFGldPLVQdqbHQodU5TeUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hyf725qMfNI5T-52UK9tpw", "review_id": "3RPDdb3Pupa9Rdus7gMDRA", "stars": 4, "date": "2010-05-18", "text": "For what Pei Wei is...I love this place. Casual fast dining with great food at a great value. If you've ever been to P.F. Chang's, this place is owned by the same company and offers similar fare. \n\nBe prepared to wait during peak hours as this place always does a steady business (at all their locations). I often call ahead and order take out. I've had nearly everything on the menu. The Vietnamese Salad rolls are really light and yummy. Can't go wrong with the orange peel chicken. Oh, and the honey seared shrimp is great too...however that one needs to be eaten at the restaurant...it's like an In & Out burger & fries...best eaten ASAP.", "type": "review", "business_id": "WixkMVXXFCx-lYsr6JoF6Q"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "fJSbP73QyGHkA1TmT6I71Q", "review_id": "Cov-gwfxQF8KuXrT6vWNbA", "stars": 2, "date": "2011-12-23", "text": "Jerry's... Ugh! I try to like you since we live so close to each other but... Ugh!\nI have had numerous irritating experiences at Jerry's. In a nutshell...\nI use red Prismacolor pencils. I run out and go to Jerry's, they don't have them, don't know if they carry them and and nobody can tell me when and if they might reappear. Why? The (seemingly) canned answer is because the order comes from corporate, in North Carolina or somewhere far, far away where there is no phone or email access. I go to buy Sculpey... OUT! Same answer as to when it might return. I need Faber Castell PITT brush tip markers... OUT! The same story with some airbrush materials. \n\"Come back Tuesday or Thursday or just give us a call and we'll check if it's in...\" \nI can walk to Jerry's in less than 10 mins but I would rather go to AZ Art or anywhere else than have to call everytime I need some stuff. I can go to AZ Art in Tempe and when something is out can order from their mother store and it's there the next day. \n\nThe clerks I have dealt with there are part of my rant. Of the handful that I have dealt with, (mostly morning and daytime) it seems like they don't really know the store well or give a crap to give some insight on their products or company.\nThey do have a big store and I understand that there is alot of inventory to know about and be able to locate but that is your job. It just seems like nobody that I have dealt with there is really keyed in on knowing their stuff.\nI spoke to a gal there who was really chatting me up on her recent art night where she painted this huge piece and blah blah blah but when I asked if she knew when they might have more of the brush tip markers she was mum. \"No clue.\" \nJerry's, just clean it up and have your people act toward you and your customers with the same passion they have with their own art. Do this and I will try to like you again.", "type": "review", "business_id": "cqXv3w9Mf-aVi4PPRspfFQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "waD2euOMPTnTzQ0thq3H6Q", "review_id": "OxDuLpG3t4IjgZAqX6VRLQ", "stars": 4, "date": "2008-11-23", "text": "Great neighborhood sports bar. They've got something like 35 HD TV's all arranged so you can get a good view no matter where you sit. The staff is friendly, drinks are inexpensive (like $10.00 for 1 beer and 2 vodka/soda), and their food is tasty. They have a large comfy outdoor seating area if you want to catch some fresh air.\n\nMy only complaint about this place is on the weekends they usually have a cover band... not that the band is terrible or anything (i think they switch it up so it's not always the same band anyway), but they're loud and if you're there to watch a game, forget about hearing anything relating to the game, including the people you are with. I can see how this could go either way with people since it does add kinda a rockin' environment, which is nice, depending on your mood.\n\nOh and they have those satellite speaker things so you have this box at your table and you can tune the sound to whichever game you're interested in listening to, not that it matters when the band is playing, but every other time it's cool.", "type": "review", "business_id": "4NpEP2sTOxm4Cw1SuXuGRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "eTa5KD-LTgQv6UT1Zmijmw", "stars": 4, "date": "2011-07-19", "text": "Very cool neighborhood restaurant and wine bar in North Scottsdale. The bartender was extremely friendly and helpful and the selection was great. The pizzas looked fantastic, so we'll be coming back to try them out!", "type": "review", "business_id": "3QhPvyen9kSiAxduT8g3bQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BaHlhZ4dUO1AUY87ZXY6Tg", "review_id": "GvmiObAQEc9af2hY0vmChw", "stars": 2, "date": "2012-11-08", "text": "Not very impressed. Burger was ok, fries Looked great, but mushy\nTry Smashburger!! Sooo much better", "type": "review", "business_id": "8SvCSiGwtaGL2Z78tRSSlQ"} +{"votes": {"funny": 4, "useful": 1, "cool": 3}, "user_id": "iwUN95LIaEr75TZE_JC6bg", "review_id": "749N8txx9Nd_JqU6X7qAAA", "stars": 4, "date": "2012-07-08", "text": "This review was posted over a year ago, however, it was removed by Yelp HQ only last week.\nI'm reposting it after making some minor modifications, mainly since the response and comments were so positive.... by everyone except Yelp HQ.\n\n\nWhole Foods Market.\nLadies, you're young and vibrant...today. \nBut as the years drag on, you notice changes. Subtle changes, such as:\n\n*crow's feet\n*saddlebags\n*sagging butt and or tits, \n*and orange skin from all the tanning products, your complexion now resembling that Louie V handbag you've been toting your Shitzadoodle around in.\n\nYou've got a choice to make.\n\nSpend all your money now on organic, free range shit, this in an effort to remain healthy looking, or, shop for a lot of the same stuff at Costco, where you can load up, get twice your money's worth, and have a shitload of cardboard boxes you won't have a clue what to do with. \n\nBut the real bonus will be how in only a few short years, you'll have saved enough money for a good plastic surgeon, which you're going to need anyway if you have any plans to remain living in Scottsdale for any length of time.\n\nMy opinion?\nI highly recommend the latter and here's why.\n\nScottsdale has a serious shortage of fish-lipped women with feline looking facial features, who routinely wear yoga pants telegraphing their hiked-up thongs. \nPoor thong....how sad that your fate...to be cast to a fifty-something, saggy-butt host.\nLadies, is that what you want?\nTo idly standby, watching, as the ranks of this bass-cat looking oddity dwindle in population?\nI didn't think so.\n\nThe choice is yours.\nBeautiful and broke from shopping at Whole Foods today.\nOr, aging not so gracefully with the help of medical science, an overzealous plastic surgeon, and Victoria's Secret, which I assure you with one of her thongs in yoga pants will be anything but. \nA lot of good all that free range organic crap did. \n\nIf you do come here, try the hot deli, where you can get every kind of ethnic food, save for Ethiopian. It helps after a late night at work, on your way home, when you don't feel like eating fast food. They also have a taco and pizza bar, fresh bakery, and a smoked meats section where you can get some of the worst barbecue and smoked meats I've ever tasted. \nThe only thing I'll recommend in this place other than the hot deli, is the chocolate and coffee bar, which seems to have a ton of delights that are supposedly good for you. \nI doubt it.", "type": "review", "business_id": "qTx2IZG66_B2US3L_4TnDA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "VNEqps27mp8-gTqTfzg7yw", "review_id": "OXmGQvOqiULJlLPGgGW0jA", "stars": 5, "date": "2011-01-01", "text": "We make it a tradition to come here whenever family is in town. So I've probably been here atleast 10 times.\n\nLove their steak with buttered plates. We've had it before where the streak wasnt cooked to our satisfaction. But after being there so many times I know how to order it. Sweet potato casserole is excellent. Cesar salad is the best I've ever had. On this occasion the wait staff was very friendly, but I've had it before where they are like buzzing bees. I usually like to have tea after dinner which is always nice. \n\nThe atmosphere is good. It is nicer to sit in the main dining area near the windows instead of the side room.\n\nAlso people if you are going to spend hundred dollars on dinner, don't cheap out on a babysitter. Nobody wants to listen to your whinnying little brat kids who can't sit still. Ruth Chris should have an age requirement!\n\nI've been to Mortons twice. Once in Chicago and once in Phoenix and both times it wasn't as good as Ruth Chris.", "type": "review", "business_id": "iDoigI3605ixHl_qHly3Tg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "HP_xZYNC5XK-VyNrnHbtRQ", "review_id": "QDLI0C8YCppB5hFjLFhFYg", "stars": 4, "date": "2008-06-04", "text": "my husband and I started going to Keegan's on Sunday's for their brunch, which is pretty decent. If you get there after 10am, the bar is open, which is a plus in my book. \nWe've eaten lunch and dinner there a few times as well. They have a really good french onion soup, another soup I think was chicken pepper jack and the cobb sandwich is good. Their chicken fried steak is pretty good as well. They give you two decent sized steaks covered in mashed potatoes and gravy.\nThe bar is good as they have a great selection of beers. \nI also love their ice tea, it always hits the spot.", "type": "review", "business_id": "SgTjnyElc26gPUghVuCuSQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SLtSL-N1RfTcDUdW5I4z5w", "review_id": "U2LlqjEFA6XYzADd-BkqLQ", "stars": 2, "date": "2011-03-20", "text": "Hostess staff were a few unorganized morons-- it appeared as if it was literally their first night on the job. Maybe too many of them? The service was fast but I wouldn't say friendly. She made a few mistakes with our order-- gave my daughter a cheese pizza when we ordered pepperoni.. She put a glass right in front of my 22 mo old who grabbed it right away of course-- few other rookie mistakes like that. Calamari- gross. Lobster/crab tacos with white bland rice-- don't order it. My husband was happy with ribeye and atmosphere is cool and clean.", "type": "review", "business_id": "GjvIDOEhdQB1oPrFeSpxBw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "mDJucjHAjoxhDHXd9MvCDQ", "stars": 5, "date": "2012-11-26", "text": "Postinos on the East side!?\n\nWhoa, you like to think that you're immune to Postinos, oh yeah\nIt's closer to the truth to say I can't get enough \nYou know I'm gonna have to face it, I'm addicted to Postinos \n\nThanks Robert Palmer and let's just say I wouldn't be surprised to see the fashion models around here. Very attractive crowd! I am honor just to be here! \n\nAnother bottle of wine and you'll be mine, a one track mind \nI can't be saved \n4 flavors of Bruschetta is all I crave \nIf there's some left for you \nand don't mind if I do \n\nI might as well face it I'm addicted to Postinos\n\nI've always enjoyed attending Postinos on the West side of town, but the East side adds a new flavor. The place still has a great deal on Monday and Tuesday nights. Bottle of wine plus a large plate of bruschetta's for $20! The ambience is always chill and low lighting. Quite romantic and add some pretty ladies and I'm golden here! Service is always great at Postinos. The staff is definitely well train in the knowledge of wine and their service is spectacular! - Enjoy!", "type": "review", "business_id": "ss5gVggeSmAgMUeL65UvYw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "XMEBJp8mmpz3vsSkvg9T9Q", "review_id": "-NZSTwgm1d03JjIDZWq01A", "stars": 5, "date": "2010-02-20", "text": "Rula Bula gets five stars from me for two reasons:\n\n#1 Perfect fish and chips.\n#2 One of the only correctly poured Guinness drafts in AZ.\n\nThey could punch me in the neck when I walked in, and i would still give them five stars for those two reasons.\n\nAlmost all the food is good (though I can count the number of times I've had anything other than the above on one hand). The happy hour is great, with half off appetizers, including the fish nuggets, which are the fish 'n' chips I eat before I eat the fish 'n' chips.\n\nThe world's most competitive trivia night. These people STUDY for trivia night. \n\nGreat outdoor seating, good service. Decor is interesting, especially if you like this particular famous race horse that I currently forget the name of but is the subject of approximately 90% of the wall art.", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mwt1AlYH5p5eNss-2ai5OA", "review_id": "vJ8Pz1HHH-srCcatKvx5Uw", "stars": 2, "date": "2012-04-25", "text": "I used to frequent the Buffalo Wild Wings on Litchfield and Bell and never had a bad experience. Whether it was fight night on a Saturday evening or a lazy Tuesday dinner, I never was worried about the overall experience at that location.\n\nThis location, on the other hand, could take some hints from there now defunct location to the west. I have been to this location 4 times with each visit hoping the previous one was a fluke. I always would get their flagship item as well, wings. I like the spicy garlic which I find as the best balance between flavor and heat. Each time the chicken was either overcooked, under sauced, or both. Why can't they do their staple item right each and every time? Major disappointment, times 4.\n\nI won't elaborate on the other shortcomings of this location because they are too many. The bullet points are that the service is very lackadaisical with anything. You sit down waiting longer for the service to take your order than it takes to get it out to you. On multiple occasions a buddy of mine who I went with each time felt compelled to recite Reservoir Dogs lines when it came to drink refills. They were few and far between. Finally, I don't sit at the bar because I like to speak with the company I am in, but that was virtually impossible. This wasn't just on event nights either. The volume of the speakers didn't vary anytime, not even in the middle of the week during lunch.\n\nI want a good Buffalo Wild Wings in my area badly. I have to travel to get to this location and would happily if they delivered on what I was used to. I guess I am off to find another of the few that are actually still open until I see this location pick up its game.", "type": "review", "business_id": "h1kwVr1eTpBK0rWfcm5QSg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pWdtEqtIb9YD_rdogPG-DQ", "review_id": "KakKzsqS2FLLo1M6GDT8HA", "stars": 4, "date": "2010-08-14", "text": "Ok, so this business is currently run from a mobile kitchen. Now I do mean that it is a kitchen. The crepes are made to order, the ingredients are absolutely fresh and delicious. They are currently going to various farmers markets, Old Town Scottsdale and Awatuke, and going to private parties when they are asked. \nSo when you have the chance to find where they are and try them. You won't be disappointed at all. They are great. \nAlso check then out on twitter.", "type": "review", "business_id": "4gxZ5tPEqm0QnRkILa9cNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JEHGgY_fGtRCXur03C9fQQ", "review_id": "uB1JFooxz56eewl4kT71Pg", "stars": 4, "date": "2012-01-09", "text": "Probably go to this location, or the one at Arrowhead, once a month. Very much a fan and rarely disappointed with each visit. They usually have coupons online and they take them from your smartphone! The only gripe I have is that their bananas at breakfast are usually still a little too green to be tasty. Although the donut muffins make up for it! Recommended for all meals, but lunch and dinner are usually a little better. Screw Flanders.", "type": "review", "business_id": "NQhPkGeHiljeg7tXPTHJeA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "90lIhRatefq0kwwKu0ceCw", "review_id": "3-qrOeFDNh7L9P3Ksg9aGw", "stars": 5, "date": "2011-11-25", "text": "One of my favorite places to come. Their salsa and guacamole is to die for. I like that they bring each person their own individual bowl of salsa. \n\nI ways get their huevos rancheros with beans and rice + homemade flour tortilla. Delicious!!!\n\nI eat the entire plate every time.", "type": "review", "business_id": "HUR7B6X_f_V_50w4pfoyyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9ojXl2cwWhK2U92Kbc0qzw", "review_id": "LuflJdPvkuCA2qUiwFBwUA", "stars": 5, "date": "2012-09-01", "text": "Great place, enjoyed the amenities. Pool was great and view on the property was very picturesque. Food in the property restaurants were very good. Definitely would stay there again if ever in Scottsdale again.", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s7Tm9oYWqRlBm5ex2OQ1nw", "review_id": "osscZipO5QVterKGsewH_A", "stars": 5, "date": "2011-02-15", "text": "What would I do without this place? They pretty much anything you need to make any Asian home cooked meals. Very clean. Fresh produce, fresh seafood, fresh meat. I love how they have pre sliced meats. This is definitely one of the largest Asian supermarkets in the valley. Avoid the the 2 asian restaurants in the market though. They're not very good.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ProoN4h8kx-OSez1zBCYgg", "review_id": "3uNHhkulmHBHkcjAW8K0wg", "stars": 4, "date": "2012-04-12", "text": "A great experience every time we make it here. Where else can you slide into the dining room? We always have large groups and they are very accomodating, every table we've been at affords a beautiful view at sunset. They try to make it a complete experience.\nServers are always very helpful and attentive. Steaks are good and the sides are good if not very inventive. The birthday dessert and cotton candy really cap off the dinners.", "type": "review", "business_id": "wZwZcte4lcbu51NOzCjWbQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "Aczfhjkc5Wfsw1ghBkPHSg", "stars": 4, "date": "2011-12-07", "text": "Went in to pick up lunch. I ordered the bean & cheese burrito (per Yelpers recommendation).\nIt took a LONG time for my order to be ready, next time I will definitely call ahead. The price was awesome and the food was really good. \nI anxious to try more items on the menu!", "type": "review", "business_id": "qW9UysjJw3y3CwEbzruEEw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "6wwOvRPdxRvnzeSmPcKmPw", "stars": 5, "date": "2010-03-23", "text": "love. Love. LOVE.\n\nHow can you not fall in love with this store the moment you walk in is beyond me. It's like entering that magical fairy tale land your mind goes to every time I start to sing or sit down at my piano. And that's exactly what a music store should be. It should bring you to that creative center where the outside world doesn't exist. \n\nFirst and foremost, the staff is extremely friendly, both on the phone and in person. I've spent I don't know how much of their time having them assist me in finding sheet music and they've always been a gem and even gone so far as to go google searches for me while I was there and give me some additional leads. It's just an awesome amazing experience. \n\nThey also never seem to mind me going in and gawking at instruments for hours on end. I always tell myself someday I am going to learn a new instrument, and going in there causes me to think of at least 10 I want to play... especially when I stare at the drums.\n\nGo to Milano and experience what a music store is supposed to be.", "type": "review", "business_id": "Epw24kOK4s9kvnf9I6XoCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iAXUAPxzKXxWMCiXLjY-ww", "review_id": "wmeQoT0hHwlmuzN58azzzg", "stars": 3, "date": "2011-05-16", "text": "I've decided to up the rating of this place to 3 stars because I went back for a second try. (it was close to work) This time the burger actually had juices left. They still wont cook it less then well done which puts me off but at least it had flavor this time.\n\nI still dont recommend this place when you can spend a bit more and get a real burger at FEZ, Zinburger or Delux.", "type": "review", "business_id": "TuCAYZ89lP_s6D7Y78xNhQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "Syn0IvWg-M7I4G2t_XyHoA", "review_id": "rnvpABw_FY1zoaWpl9c9tg", "stars": 2, "date": "2008-05-27", "text": "In a word: Kitsch.\n\nThis 50's palace of pink serves up a number of ice cream dishes, including favorites such as banana splits and brownie sundaes as well as build your own creations. The ice cream itself was underwhelming, I was expecting a homemade recipe, but was a little surprised when I saw tubs of Dreyers being brought into the front dining room.\n\nGiven it's location in Old Town Scottsdale, a venerable dumping ground of knick knacks galore, Sugar Bowl was exactly what I expected in terms of decor and atmosphere, kitsch, kitsch and more kitsch.\n\nWhere is Gelateria Parmalat when you need it?", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "PYtryNSk30ytqOc_36sLPw", "review_id": "Jck18cBsBbzBlJs7tTGT8Q", "stars": 2, "date": "2011-09-04", "text": "I feel sad to write this...but Vincent needs to improve things or his place will be only a past memory. I'm ok with that based on the dinner I had there recently.\nThe restaurant was packed...but with people who had Groupons...I only wish I had because my dinner would not have been 177.00. Too much for a weak and sad plate of out of date food.\nWe had the Foi Gras, small portion and so/so:(...Duck chimichangas they were decent. The wild boar was a tiny serving...we were fine with that because it was tough and difficult to chew. It was accompanied with a hospital style vegetable medly of green beans with carrot shreds and minute white rice. We also had trout..it was covered in a heavy white sauce (French) and had the same veg medly and white rice...seriously like the hospital food...or a big banquet service. It was edible...but not great...We each had a glass of wine. No dessert for us...it was hot in there and the arches and decor reminded me of a taco bell. I wouldn't even go back if it was a free meal:(", "type": "review", "business_id": "VpSiOW1PapVmZyyRBK_GBQ"} +{"votes": {"funny": 10, "useful": 10, "cool": 10}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "GhXVv7ri0uzwTE58Y8-Xxg", "stars": 3, "date": "2009-08-17", "text": "I'm going to have to work through this review before I decide on 3 or 4 stars. I've been thinking about this since my visit and I cannot seem to come to a conclusion. Another one of those times I wish we had half star options.\n\nThe Parlor is definitely The Vig's little baby sister. It Aesthetically looks extremely similar, it has both the same Scottsdale-esque vibe and crowd, both are in weird, out-of-the way locations, and both are really loud. \n\nEven for a new restaurant with lots of buzz on a Saturday night, I thought this place was crowded. There was over a 45-minute wait for two of us, so we ended up grabbing a beer at the bar. I'm glad we did because our bar tender was smokin hot. Nothing better for the self esteem of two broken-hearted girls than a cute, flirty bartender. \n\nAfter a while we just decided to eat at the bar and skip the whole table idea. Good choice, even though the bar area was REALLY loud. \n\nOn to the food... we started out with the cheezy cauliflower appetizer. OH MY GOOD LORD. It was amazing. It was topped with bread crumbs and baked... it was just absolutely amazing. It was good later as a midnight snack and good as breakfast the next morning. \n\nFor dinner we shared a Pesto and a Margharita pizza. I loved both of them, but the Margharita had more flavor and I preferred it over the Pesto. Both had great quality ingredients and were extremely tasty.\n\nI'm pretty stoked that the prices are so reasonable. Two hours, five beers, an appetizer and two pizza's later, we ended up with a bill for $50 plus tip. My solo bar tabs are normally higher than that!\n\nMy major complaint, though, was the whole entire time I was there I had a stuffed nose. I don't know if it was an allergy to something they were cooking, the wood, flowers, etc but I could barely breathe. The second we stepped outside it was like I had a new nose.\n\nMan.. I still don't know... three ... four... three ... four... okay .. my decision is made: if the 6' tall snobettes coming into the bathroom as we were walking out didn't smash rudely into my dining partner and act like she was Antichrist for trying to inhabit the same place at the same time, I would definitely go with a 4 but it's a 3 for now until things settle down a bit.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "KOig7-X_TKXrnCJYJZib5g", "review_id": "OGsYXIxtLkeIkyLoSvpQ-g", "stars": 4, "date": "2009-12-04", "text": "New Taco shops seem to be opening at a fast clip and America's stands out as one of the best. We absolutely love the quesadilla and the tacos. The corn is also a must have. \n\nIf you go with two people, don't miss their meal for two deal that includes two drinks. \n\nWe can't wait until their 7th Ave store opens in January. Hopefully the quality will stay the same.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "eRhqwWWYneA3Wr_WYbmVGw", "review_id": "45frOWOmibZX4v9y01aujA", "stars": 4, "date": "2010-01-10", "text": "Obs, a great location in the quaint Gold Spot next to the soon-to-be Pita Jungle. I really like what they did with the space. The vintage elementary school chairs bring me back to the days of learning cursive and pasting cotton balls on paper to create a snowman. Lots of natural light, too! The coffee is spot on, and they have pastries as well. -1 star for not having a punch card. They need to get on that!", "type": "review", "business_id": "MMLEhoPYQif2PEIVxAfIKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "enxR6S4K0RI-tN3-wILbQQ", "stars": 5, "date": "2009-04-04", "text": "What else can I say that hasn't been said already? \n\nI'm weirdly glad that they're not closer ( in fact very far away from me) because I'll be there every day = gaining tons of weight!\n\nMy baby loved the mango lassi flavor! So much he did the sign for \"more \" for the first time at the store:)\n\nI do want to try the bacon flavor....so a trip soon is in order", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "r0CGfp7yGtirXYZLDRaBfA", "review_id": "5QDhx75ulwaDHGNIqeOcDg", "stars": 2, "date": "2012-12-26", "text": "We had a mixed experience at Happy Hour (HH) and dinner. Quick summary follows. \n\nHits:\n\n+ Food was tasty.\n\n+ Ambiance was nice.\n\nMisses:\n\n- Waitress was never able to bring the \"last call\" round of HH she offered. No explanation or apology. \n\n- Asked if I \"minded\" anchovies on my salad. I said \"no,\" but didn't realize there would be an upcharge until the final bill came.\n\n- While in the bathroom, observed one of the staff go straight from the stall (not the urinal) to the Kitchen. No hand-washing, not even a pause by the sink. \n\n\u00a1Buen apetito!", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 7, "useful": 9, "cool": 8}, "user_id": "nYa0GRbjizzzKoVOm9-lsQ", "review_id": "CX2jGM3K1dW1X_827Xmaqw", "stars": 4, "date": "2009-05-13", "text": "Ok so who goes from California to Scottsdale and ends up at a Sprinkles? That would be ME. \n\nIn search for a cute independently owned cupcakery to test how AZ cupcakes stack up to SF Bay cuppies... we headed to downtown Scottsale. WELL, not really for the cupcakes, but just to check it out. However, seeing there were a handful of cupcakeries nearby, we had to try one.\n\nBUT the reviews of 2 and 3 stars for some of these places seriously put me off. I hate dry cupcakes and I was not eager to spend precious calories on something that would not satisfy. Sprinkles had the better reviews and whala it was open after all the other places closed. (Note to self, who closes a bakery at 6pm? Cupcake freaks come out at NIGHT!)\n\nWe have a Sprinkles about a 15 min drive from us@home, but have I ever gone??? NO. So yes here we are at Sprinkles in AZ. The gals are friendly, they answer my questions tirelessly. I end up with 2, lemon and chocolate marshmallow.\n\nThey stay overnight in our hotel room since our dinner left absolutely no room for cupcakes. I was worried they'd be dry and stale the next morning when I busted them out at 7am before my workout. Gotta get some carbs in so I can burn them off right?\n\nBottom line... Sprinkles may not be a cute little indy shop any longer but their stuff is solid. No mixes, the dark chocolate cupcakes are the perfect combo of dark, bitter, and sweet. The lemon was dense, I think mine is better, but the chocolate marshmallow OMG. It was like a grownup version of a Hostess cupcake, MY FAVORITE. Despite their overnight rest, they were not dry, the result of a fair amount of oil if the residue on my fingers was any indication.\n\nPlease send me three dozen of the Chocolate Marshmallow please. I will love you forever. Thanks.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o4mzRnNMeLIvWeCRM78cGw", "review_id": "iT60w_XiOX14tvHr3VwQSg", "stars": 2, "date": "2012-05-18", "text": "The pizza here is very good, but i would warn anyone who is thinking to have it delivered, to think twice. Their system seems to be manual and we were actually asked \"are you in our delivery zone?\" After 12 minutes on the phone i gave up and decided to save the $5.50 delivery charge and pick it up myself. \n\nThey are one of the best pizza's in the tukee area, but if you are going to go to a place that charges the max for their pie ($85 for 4 pizzas) , i would suggest Florencia in this area. \n\nThis is our second time trying them, first was eat in, and now pick up, i would rate the overall customer service very low, enough to bring a 4-5 star place down to a 2.", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hi7VohxSS5OBt98w4j8t4A", "review_id": "GiP3aNuA5XepHT9m6q3awg", "stars": 4, "date": "2011-12-03", "text": "The Vig Uptown has its hits and misses, but the hits definitely outnumber the misses.\n\nFirst of all, the building and atmosphere is awesome. I think it used to be a Bank of America? They really outdid themselves with the renovations and decor. \n\nThe drinks, while pricey, are really good. I had the basil-gin-strawberry drink and it was deeeelishhhh. My husband had a tasty IPA he has never had before. \n\nService was good. Our server seemed to have a zillion tables and still was attentive and pleasant. \n\nWhen it comes to food, my husband and I had different experiences. He had the Vigazz burger which he thought was outstanding. It is now tied with 2 other burgers for his favorite burgers of all time. \n\nVegetarian entrees are limited to a couple salads and a veggie sandwich. I had the veggie sandwich which was decent but I wasn't impressed. Although the grilled veggies were tasty the sandwich was dry overall. The foccacia was a little too doughy. And the caramelized onions were more raw than caramelized. The french fries were good but the barbeque seasoning on them annoyed me slightly. I think next time I will ask if I can order a grilled cheese off the kids menu. With a side of their yummy spicy mayo.\n\nTalking about kids menu, that was another miss. Having a stepson myself, I appreciate hip establishments that are still kid friendly. However there was a very obnoxious group of kids and parents that looked like they just came from the kids soccer game. The kids dominated the bocce court and were loud, rude, and obnoxious. The parents were enjoying their cocktails and ignored their kids behavior. It kind of ruined the mood for us. I wish they would have just gone to Peter Piper like most kids teams do after a game...\n\nWe do really want to return. Maybe for happy hour or brunch. I want to try their bloody marys and the Amber Scramble. We might even take our kid. But don't worry- he will be well supervised! :)", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8_nmcrZX28dC654priVVMA", "review_id": "Gs13sUvDWIfavz77wb4vQw", "stars": 3, "date": "2010-08-04", "text": "my husband and i stayed on a monday night just as a 'stay-cation' and it was busier than i had expected. HUGE bed and very comfy. the AC buzzed off and on all night and we didn't have the bathrobes that were advertized online. BUT the rooftop deck had a nice view and the breeze was welcomed. we got a drink from the bar and took it up to the roof with us. the pool looked very inviting but there were too many kids splashing around for us to want to venture in.\noverall it was a good experience and not bad for the discount rate that we found. we were definitely impressed by the huge bed.", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 5}, "user_id": "hq0WUfau1Mh3GyHn8oVdNQ", "review_id": "qm7XZ40KNqh2cJTlnXy91g", "stars": 4, "date": "2010-04-03", "text": "Went for the free \"Movies in the Park Free Family Movie Series\" last night and really enjoyed myself. The park has a giant inflatable movie screen where they show family movies every Friday night at 7 in the early spring months. \n\nGet there early to get a spot closer to the screen and bring a picnic blanket to relax on. It got a little chilly later in the evening, I would bring a blanket to snuggle under too.", "type": "review", "business_id": "whAFYa0ZyTIRe7GamYAmsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7pBBfBnUwItMi-11d1_JOw", "review_id": "IlbIDkPNO-kxgHSOqxRqaQ", "stars": 5, "date": "2011-09-05", "text": "LOVE THIS PLACE! We eat here every Saturday as long as we are in town. My husband eats here during the week too! Weekday lunches are a great deal and quick! The veggie soup is delicious. The golden wings - Delicious... chicken satay is good too. For an entree... we always get Pad Prik King chicken or sometimes shrimp but its always always delicious! Have been trying to find a thai place with this dish closer to home (east valley) but haven't found one yet! Service is terrific! FYI for those of you who just order Pad Thai... it is very sweet here so if you don't like it sweet... order something else. Other things we've tried that were good... pepper steak - very good - just dont eat a lot of red meat, massamum curry with chicken good... also we order everything medium to thai hot... like very spicy!", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "z1tNqF5qJRpibGj-9_r9Ew", "review_id": "VYNmgvN61pjoOyUKU9ztKg", "stars": 4, "date": "2012-01-24", "text": "I heart Harkins. Have for years. Love the loyalty cups & t's.", "type": "review", "business_id": "fYP6ug4T80HpWbVJmkDP1w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "hie8AIcS7Ex-gkXxFnfqZQ", "stars": 4, "date": "2010-02-23", "text": "This place was never attractive to me, until it was the only place showing a good documentary I wanted to watch. Nice surprise! I only expect to see other good alternative movies here more often.", "type": "review", "business_id": "Zu93JuSKbponnD3Mx5zpEg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "u-IdKmC7u9AFlypEPi_16g", "review_id": "BcGrfDqefEA4s-TLHVhYTQ", "stars": 5, "date": "2011-09-18", "text": "Prices are good nobody is down your throat when you enter and its the best place for produce in town literally would suggest this place over trader joe's for sure", "type": "review", "business_id": "2e3v5rl80j4pI3L2135xYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FPWwCD73C0PlRdDfJ6Tuqw", "review_id": "xDqnQ7gc5gjDko6AZqmgxw", "stars": 2, "date": "2007-03-31", "text": "Your typical Tempe boozatorium.\n\nIt has a generic and unmemorable name likely because the name describes everything about this place.\n\nIf you wander into it, you won't remember much more than that.", "type": "review", "business_id": "sDozh6iTylTJD26d7xcgGw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "zt7Yfeld6yR_bD4EKaOMjQ", "review_id": "ybnwGGyEXmIAthlqZQqmdA", "stars": 5, "date": "2007-10-17", "text": "I found this place via Google while in town for business. It's tucked away in a non-descript strip mall next to a Salvation Army.\n\nI've had dinner and lunch here, both times were good. For dinner, I had the special turkey sandwich with fries (fries weren't pipping hot when they were served, but still good); for the lunch visit, I had the original \"g\" spicy po-boy and chose the curry pasta salad as a side - tasty!\n\nService was friendly and efficient.\n_______________\n\nUpdate: \n12/10/07 - What's the first thing I do when I arrive in Phoenix? Punch in 2240 N. Scottsdale Road in my GPS and head to Green! This time around I had Thee Argentine Po-Boy with fried - Mock steak fried with onions and peppers, vegan mayo and a spicy sauce. I couldn't get enough! Very delicious\n\n12/11/07 - After having a veggie burger and fries for lunch at a Hard Rock Cafe, I thought I'd balance it out by having something healthy for dinner - I ordered the Diablo Rice bowl with chicken and brown rice. The description looked good: veggies in a spicy sauce - but it was a little too salty for my taste and didn't finish it. Oh well, can't win them all.\n\n12/12/07 - I was working close by, so decided to run in for lunch. I ordered the No Harm Chicken Parm sandwich with a side of tahini coleslaw. It was a little bit messy to eat by hand, with the tomato sauce and soy mozzarella oozing everywhere - still good nonetheless. The coleslaw was a nice compliment to the sandwich.\n\n12/14/07 - I'll miss you Green!", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KAlrXgWYcNrwoQOvnGtgtg", "review_id": "vGvxWzW7fXMPPaad36OvrA", "stars": 5, "date": "2009-09-01", "text": "No need for a long review.\n\nEvery In-N-Out I have ever been too has been amazing.\n\nGreat Food\nGreat Customer Service\n\nLove this place", "type": "review", "business_id": "1OA1jo0GlK9sf68f00w8ZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5oPwG66useXJo9opoFokgQ", "review_id": "Ag8qFw1LbvmAu_wv6ElSaw", "stars": 4, "date": "2011-02-24", "text": "Great flatbreads and atmosphere", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OSDR_W4vE3e2-kFvrlrknw", "review_id": "asABAhRieJgASD2EsOpK5Q", "stars": 5, "date": "2012-10-30", "text": "I love Petco! The only place I go to get dog food. I feel like the employees generally know what they are talking about and are always willing to help!", "type": "review", "business_id": "8Lf_SZFuVhOe9rrAgC_pAQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "mN_EemgH6uMD9QwDUEXPzg", "stars": 4, "date": "2010-09-21", "text": "While we were finishing up at Forefathers, I checked my mobile Yelp app to see what else was in the area. Zoyo popped up and the reviews were good so I asked my daughter if she wanted dessert. Silly me, of course she said yes! It was a short drive to Zoyo. I passed it the first time cause my GPS said it was on my right but nooooo it was on the left. We made a quick u-turn and there we were. \n\nIt was clean and well lit and nicely laid out. If I remember correctly there were either 10 or 12 different flavors. I had Red Velvet and Banana. YUM! The Red Velvet was delish! My daughter had RV and Cake Batter. They had all the standard toppings and the topping area as well as the yougurt area was very clean. The young people (oh god I sound old!) that were tending to the counter were pretty efficient and friendly. There was pleanty of seating too. Some nice larger, round tables and then what looked like a hallway had some smaller tables for two. There were also tables outside. It was a Saturday night and there seemed to be a steady stream of people coming in while we were there. Some stayed, some got theirs to go. They also had two flat screen tvs on the wall . One was playing The Bee Movie and the other had Soccer. Overall our experience here was a good one and we will be back. I may even bump it up to 5 stars after I try more flavors. Although if they always have Red Velvet......but then again it's good to try new things. Thank you Zoyo!", "type": "review", "business_id": "upzSExkcvYMX9dJMgNARXg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Jegks7c-o66A9LaxWYQLsQ", "review_id": "nfYAVLPJjhwaOW6tF5HUTQ", "stars": 5, "date": "2009-11-25", "text": "Wow, is this some fantastic food! It was the first non chain restaurant we ate at during our vacation and I couldn't be more pleased. Not only was the staff friendly and attentive, the food was phenomenal. Presentation and taste were top notch. The Tai fried rice was the best fried rice I've ever had. I will definitely be back the next time I'm in town.\n\nVisit Date: 11/18/09", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_N-DeS909pOyryxC0mMAjw", "review_id": "gpglwWWqnxkrF32vubJ3bg", "stars": 3, "date": "2010-08-20", "text": "I like this place because of how original it is and the menu has something for everyone.\n\nUnfortunately it is tucked away in a hard to spot location and therefore continues to be a great secret.\n\nI would recommend to anyone in Arizona to make a trip over and see what this place is all about. I think everyone will be happy with it.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vJZtiMtXJL0GHl8AzsKAFg", "review_id": "eqAVn_2A-x8mbNNxIkrIww", "stars": 5, "date": "2010-11-01", "text": "LOVE this place. Great food, high quality ingredients (which is why i was told the prices are a bit more than your typical pizza hut), and fun service.\n\nI love this place, and always leave happy and full. Authentic italian food is my weak spot! :)", "type": "review", "business_id": "ImVx220_Pcp2iB5uworODw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Hac8HebtWiR0H2WmPg9AOg", "review_id": "Fuw98dnuakyLKQLlGZjKSA", "stars": 3, "date": "2011-04-08", "text": "Really good prices but I would stray from the wings. It is very greasy so beware!", "type": "review", "business_id": "BT2Vls7h6sWrCKa5gGXbKg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YPk47NcyWSkk-541OxyzMQ", "review_id": "7BbBFpBImt877RXkgxMcvw", "stars": 2, "date": "2011-04-14", "text": "They have great specials and if you like dive mexican take out......its ok.....there are much better places that are not a chain.", "type": "review", "business_id": "Ddsln32r-uA7hq_0ksaNZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "YatPH-LLGvJRCEsDjSEnHg", "stars": 2, "date": "2011-10-02", "text": "We just stopped here as Slices no longer exits at TMP :(\n\nFor JUST cold meat sandwiches...they are over priced. Short variety and more than $3 for some salame, cheese in average white bread.....no thank you.", "type": "review", "business_id": "OkO7zRnvV2NQR5aPmbRZeA"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "dBt9em8zuiBmi0afyDGPbw", "stars": 4, "date": "2008-05-10", "text": "I really love Pita Jungle. My first experience was at the one downtown, and now, I have to get my fix. I found this location since it is close to my home, and wanted to check it out.\n\nUpon entering, I was pleased with the location. Well decorated, clean, good lighting, ample seating. I was greated by the hostess, and sat at the bar. The place was pretty busy, and I was by myself. I was greeted in a quick manner by a nice server from behind the bar. I took a moment to review my menu, and decided to skip a full meal and go for some lentil soup.\n\nNow, here is where things get dicey. I won't hold it against Pita Jungle, but I have to put this in the review. First, after being seated, I noticed that it was a little toasty in there. I think they could have turned up the A/C. I am sure if I had been drinking, I probably would have broken a slight sweat, as it was warm in here. \n\nSecondly, after I ordered my lentil soup, it took what seemed like forever to get it. I did not time it with a stop watch, but it took a long time for just a bowl of soup. Secondly, when I did get the lentil soup, I didn't care for it. It looked kinda gross and didn't taste all that great. And, in case you were wondering, NO, I didn't send it back or complain. I was to tired and didn't feel like being a sourpuss.\n\nThe other problem that I experienced, was the server girl brought out my check WAY before I was ever served my food. I hate that! At least bring my bill with my food, not before!\n\nAside from that, I dig this place.", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1LGGCsEF3jYXMKcgRObZJA", "review_id": "_Kx3qkda_bcgTJNAUPxgjQ", "stars": 4, "date": "2011-12-24", "text": "Excellent food! I always get the 3tacos! Best bang for your buck!", "type": "review", "business_id": "fJ5raoVcN-nD8vFswMFXzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bZmcUH_zMK9h8c2hbfSywQ", "review_id": "Vz6K-_m6CBcpkQVCuVeDug", "stars": 1, "date": "2011-04-08", "text": "Have been an Ulta customer for a long time, but had never tried the salon until recently. Was a HORRIBLE experience. My stylist, Delia, ran 45 minutes late to start me, and on several occasions during the hair cut, stopped and kept looking around. She made various odd faces as if to say my hair was a mess. She not only didn't listen to what I wanted, but shot down the only thing I did ask for. She said I wouldn't look good. At the end of the painful ordeal, she then charged me for a conditioning service I didn't ask for. At that point she directed me to the line at the front of the store, after which I waited in, they then sent me back to the salon to make the price correction. (happened twice, then I asked for a manager) Was very unprofessional all around and would NEVER go back!!!", "type": "review", "business_id": "LMjCZH50S4xjKBuFVl2xEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mFuo-10DMYljWZcAXj9XHg", "review_id": "f031RjkwqbRG4_kxYmxrMg", "stars": 4, "date": "2010-03-22", "text": "I'm 31 yrs old and I've come to the Dub since I was an 18 yr old with a good fake ID. I actually havent lived in Az in over 10 yrs, but when ever I come back to visit friends and family this is our spot. My buddies have been the local crew at this bar for over a decade. The bartenders have all worked here for years as well, and even tho i may only come in a few times a year, the bartenders always remember my face. A fun atmoshphere, plenty of room, a non-stuffy, non-scottsdale type crowd. When I'm in Az, I always visit the Dub...", "type": "review", "business_id": "noLH_u4MJzfXYYHqcByjnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o6hksardqzx7jZwiNxoRDg", "review_id": "c9IRlU9vSmKU4m3ioQ4csA", "stars": 4, "date": "2012-01-28", "text": "I still really like the Studio Movie Grill, but sat in the \"General Admission\" seats last night for the first time, and found that they were not nearly as comfortable as the \"Reserved\" seats with their own little tables. Unfortunately.\n\nThe GA seats are also quite tightly shoved together, so if it is a full house you are bumping up against your neighbor, and it is distracting.\n\nBest bet: Go to a un-crowded movie and sit in one of the reserved seats that is not pre-reserved (not pre-sold, and doesn't have the little \"reserved\" sign on it) to enjoy the reserved seats at the GA price.", "type": "review", "business_id": "Yhfp_vgnh_GirZGeVhj7Gg"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "W4fBHIRoNh_qAJwORXKPpg", "review_id": "4nmQWtOENRFPteGAqXeLKQ", "stars": 1, "date": "2011-03-30", "text": "Sadly, I have to join the crowd on this one. I was hoping that Kitchen 56 would make my memories of Vatra go away, but instead just reminded me all over again. Food was WAY overpriced and just OK. Kudos to Eddie the Server who brought with him the only charm available the second time we tried K56; I'd give him 4 stars if the review were based solely on his service & personality. I will say the interior is much better than the previous incarnation, but the spots (lights) at the counter-height 4 top shone in my eyes and made me feel like it was last call...and I don't drink.", "type": "review", "business_id": "GHYOl_cnERMOhkCK_mGAlA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "re__adaHUa4jKA17v7dmDw", "review_id": "JVh7fgEnkkEnqBZOtZZraQ", "stars": 2, "date": "2012-06-05", "text": "I've been here twice for lunch. It's okay but I won't be coming back. The portions are small. I had one of the curries and it was good. But I had the pad thai which the menu said contains chicken and shrimp. Not a single shrimp on the plate. Cheap bastards. One of the lower quality Thai restaurants I've been to in Phoenix next to Thai Hut.", "type": "review", "business_id": "VbXy3tH5RAu7HjT7VeMMgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K0euQLFAcKhQPZ6JxGAryg", "review_id": "FqJdIkHSHx63Mt8BXOkUHQ", "stars": 4, "date": "2012-01-19", "text": "I came to this location in Tempe after visiting the Picazzo's in Sedona. I ordered the Puttanesca Pizza (no olives) with Garlic Butter Crust again because it really is THAT good!! I think the crust was even better this go 'round! The Chocolate Chip Skillet with Coconut Vanilla Ice Cream is great and big enough to share! We enjoyed sitting outside on the beautiful outdoor patio on such a beautiful day!", "type": "review", "business_id": "3jqOv6re-xPYOg7srmi7tg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X0rIm60JC6ek2FrJ8fUtbQ", "review_id": "RR8Tz9pS8k08ugC1U8jlPA", "stars": 5, "date": "2011-05-06", "text": "We loved this place.", "type": "review", "business_id": "LfvQnSv2MbIplgAfpXkUQw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "K_ZAORjuL80YUhV1HC4PGQ", "review_id": "KvpOzSomyCurq7qJFQVy1A", "stars": 4, "date": "2009-08-21", "text": "My wife and I have stayed in many hotels both domestic and international. From cheap hotels to very expensive resorts. For the price this hotel was a great deal. Very clean and friendly staff. Very close to the airport and provides FREE shuttle to/from airport.", "type": "review", "business_id": "ky3kuTeqTUOU4CsZ_2_LzQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "TQ5eVGOFr_qB5_BbEd3Sow", "review_id": "pIbeU9-t9ZWHw3TJCChe0Q", "stars": 2, "date": "2010-06-30", "text": "I wasn't that impressed. The machines look old and rusted, there didn't seem to be any air-conditioning and it had to be in the 90's inside since it was about 110 outside. They did have overhead fans. The price was cheap--45 cents per load to wash in a top loader but we only found one top-loader available that actually worked. Half of them were Out Of Order. Instead we dumped everything into two front loaders that claimed to do double loads and were out of there in pretty short order. We took the clothes back to my daughter's apartment building to dry in the laundry room there so she didn't have to stay with them.", "type": "review", "business_id": "V0WyXBZqOI_Rpq0m7drylQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vUn91MER1jV-jT4crd3pOg", "review_id": "bZ8oV8K8DJFaQSl5xe9ALg", "stars": 5, "date": "2010-05-19", "text": "One of favorite happy hour places in town. If you get the wings here it shouldn't matter if you get anything else. Great location and nothing else needs to be said. Maybe a renovation on the parking lot.", "type": "review", "business_id": "CqhsIZ7TzCfJTrZqg5-gqQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "0zReLtQj_Nf2-bwIOPTmrw", "stars": 4, "date": "2007-06-18", "text": "This is a really cute Greek restaurant located in an obscure building. You'd never know from the exterior that a great Greek restaurant is hiding inside. The place has a family owned restaurant feeling to it, and you'll find all the Greek classics on the menu.\n\nThe menu is pretty extensive, and a lot bigger than many of the other Greek restaurants I've been to. They have gyros, sandwiches, pitas, plates, appetizers- but my favorite is the hummus appetizer and the falafel plate. They're both soooo good. They also make a pretty mean spanakopita. \n\nFor dessert, get the home-made baklava- you'll be very glad you did.", "type": "review", "business_id": "Gw8DsQQCO5m1hggXqwynFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tiyg_cQaPdUuSG95Xpi_sA", "review_id": "yoD-T4N7qi1YI3PR3wJRDQ", "stars": 3, "date": "2012-06-21", "text": "I visited Carly's for a weekday lunch when I was downtown for work. Here is the rundown:\n1) parking is horrid - common downtown, so take the lightrail (the stop is on Central and Roosevelt) or bring a fist full of quarters for the meter\n2) it is crowded! well it was when I was there\n3) the service was pretty good considering how swamped it was and I told the nice server I was in a hurry and she was able to take my order from soup to nuts in maybe 10 minutes even though their credit card machine was down\n4) I ordered a gyro and their orzo pasta salad, the gyro was mediocre and bland but the pasta was wonderful\n\nI will definitely try Carly's again when I am not rushed, the interior is hipster, funky, low key and the staff was very friendly.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "smuPvImE3OoRYD6hL-if6w", "review_id": "q2rOTgUwwh4mcZ-ItqIzyQ", "stars": 4, "date": "2011-02-13", "text": "I've been meaning to Yelp for a looong time now, and after having brunch at Scramble today, I thought it only fitting that I give them my Yelp virginity.\n\nMy boyfriend and I arrived around 1pm and it was pretty quiet. There was a young lady at the counter, taking orders, and another stocking juices nearby. Both were very friendly. \n\nI requested a vegan menu (the vegan options didn't seem to be listed on the large menu near the door), which was quickly furnished to me. There were 2 tofu scrambles, a soy chorizo breakfast burrito and french toast as possible choices. I couldn't decide between the veggie scramble or the french toast, so... I ordered both! My boyfriend went with the bacon and mushroom omelet (off the regular menu). We were offered bread options of white, wheat, rye, or an english muffin. The side dishes were fruit or sweet potato hash... and I think a lot of the menu items come with rosemary potatoes, but we both opted for the hash. The cashier gave us our number. It was a beautiful day, so we found a table outside.\n\nIn a matter of very few minutes, our food had arrived. I noticed that the vegan items were on red plates to differentiate them. My scramble was yummy, with a good enough amount of veggies in it, and a bit more wet than most other scrambles I've had. I did find myself wishing the portion was a bit larger. \n\nThe order of french toast came with 3 good-sized pieces and was super duper good.\n\nThe highlight for me, was the amazing sweet potato hash! It's served in a patty and is chock full of onions, zucchini, carrots (I think) and seasoned with rosemary. I've never had anything like it. I highly recommend it.\n\nMy boyfriend did seem to enjoy his omelet and definitely agreed with me on the hash.\n\nScramble is a great place, especially considering their vegan breakfast options, which are far too few-and-far-between in the valley. We will absolutely be back!", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f01B5tRtqf3k6ak1pPSAWw", "review_id": "Zq2xs91QNmR3ApnJa_1bKg", "stars": 5, "date": "2011-12-01", "text": "Love the wings!", "type": "review", "business_id": "0dORc6ckZw5HezR3BuSsqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nFnMOEJPy98wdEKAVzFs3w", "review_id": "aZ_69NXdogm7Q9FLVPRLpQ", "stars": 4, "date": "2010-12-10", "text": "Grab a cup, grab an outdoor chair, enjoy the show!", "type": "review", "business_id": "5yT-0wF-QK_xAnFkymam6g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "ZmCfwDMuYkhpyr-hWKgiaw", "review_id": "sEpffpL6SPsu4vUlI9la1g", "stars": 5, "date": "2012-02-25", "text": "Simple but really great cajun food prepared in steamers right in front of you. Selections include gumbo, pan roasts (a tomato-based broth with chunks of seafood), or seafood creole all with your choice of shrimp, crab, chicken, crawfish, oysters, or all five, with rice. They also have fresh oysters, jumbo shrimp cocktails, salads, and tasty seafood chowder, as well as the occasional lobster special. I've been probably 20 times and still never had a bad dish. The staff is friendly and helpful, and will adjust the spiciness of the dishes to your taste. By far the best option at the Talking Stick resort.\n\nAs another reviewer noted, this restaurant is really just a bar with a couple of tables, stuck right off the casino floor. This is definitely not a fine dining spot, with the clanging of slot machines and dead-eyed gamblers shuffling around fifteen feet away. Still, it's definitely worth a visit to Talking Stick. At $10-12 for lunch portions and $17-19 for huge dinner servings, and $25 for a massive platter of oysters, shrimp, crab, mussels, and clams, it's a fantastic value for the quality and tastiness of the food. Good, reasonably priced seafood can be hard to come by in the valley, but this spot is a gem.", "type": "review", "business_id": "e8Eke5v8pXw-PuRCu2uPjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sG3_fRCEROn0-9TzlawdlA", "review_id": "kaGay5W1MuM6dXoHMWU94Q", "stars": 5, "date": "2012-04-28", "text": "Sometimes it's difficult to really feel satisfied with a raw vegan diet , but every time I go to Pomegranate's I leave more than satisfied. The atmosphere is welcoming and delightful, although very busy during the lunch rush. I did have to share a table with a stranger last time I was there but the stranger turned out to be a great lunch companion. This is a must for anyone who is considering (or already is) a raw and/or vegan diet. Everything is so yummy you won't know it is good for you!", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 3, "useful": 0, "cool": 0}, "user_id": "GFfBMrKu2puUTJaW4gVs_g", "review_id": "lIMcJl51NcGSQvLZ5d9JHg", "stars": 5, "date": "2012-09-10", "text": "Simply awesome! Great beer and great staff! Will try the food next time! Only complaint is a bartender named Adrianne she is crazy! Ha! G\n\nThe food was excellent from the great hard boiled egg dish to the peanut butter and jelly with banana and marshmallow fluff oh and add bacon. Elvis just did a sommersault in his grave. The sandwiches are not huge but they are all made like the beer served and the people hosting, of finest quality! \n\nReally enjoyed and will spread the word!", "type": "review", "business_id": "41j3GB7M-Lwq284Pfb9zgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4D-8OaHKOJmNZzgXSqXjJQ", "review_id": "tMHh3ATehmHppSvHkxzk3g", "stars": 4, "date": "2012-11-15", "text": "I saw their ad in the College Times and decided to check it out. Had a coupon for free earrings (little stud dice ones) and I lost it; they still gave them to me anyways since they knew I was legit :) Stormy the co-owner is really nice. Lots of cool bargains to choose from; some really nice stuff I had to pass up since I am on a budget :) I did in-store trading too and got around $24 worth of store credit, which I used all at once. Overall a fun hunt. It's also a small little place so not too hard to get lost. :)", "type": "review", "business_id": "wNm84v3I4ZONS9H8Vs-wkQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jMyy4KU2SuJ6FhWtgLqRwQ", "review_id": "Pviwc4jGf2dia6zKYc9CAA", "stars": 5, "date": "2012-10-16", "text": "Best breakfast in west Chandler! I love their crepe eggs and calorie/nutritional info printed on the menu.", "type": "review", "business_id": "oSDf6BHiMlKGZdFFmIo6NQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "880ToOAcX6JgCdHnyLNnIw", "stars": 3, "date": "2008-12-28", "text": "Not that good, not that bad. So-so, more or less.\n\nStopped by here for lunch the other day, I had the BBQ chicken lunch. Overall a pretty bland taste, but maybe that is just the style. If I ever end up here again I may try something else, but I won't be going out of my way to do so.", "type": "review", "business_id": "MhH1kl9faN3RvIO4ptumTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ApFSkeGhx4zZJSfxy9C6SA", "review_id": "zJf8tEBQrQ1Bl9HSKyjrbg", "stars": 4, "date": "2012-03-29", "text": "Awesome place! I like the memorabilia on the walls.", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cQWuuzv2NLGrScs6m-xrpg", "review_id": "nZPZ8WRGQN0ZTOLxSxTi-A", "stars": 5, "date": "2012-05-23", "text": "While we were in Mesa AZ for a holiday we found Alessia's on Yelp and we are so glad we did. The food was delicious and the host was terrific as were the servers. We are not big wine drinkers but they have a very good selection of wines and the host knows his stuff and can make good recommendations. Nicely appointed little restaurant with a great menu.", "type": "review", "business_id": "E6DnUFy3GoN4DxTqturtug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BXRWIUONLsTvpG-ESWLEBQ", "review_id": "eVZKDT7EJIazL90bTtitfg", "stars": 5, "date": "2011-06-17", "text": "I used to go here about once a week when I still lived and worked in Arizona. My office at the time was within walking distance.\n\nThis is a very good Hooters location...located smack dab in the middle of Mill Avenue right next to ASU. Plenty of stores all around. \n\nI used to go mainly for lunches during the week with co-workers. It usually was quieter than evenings or weekends. The serving staff were great and many of the ladies would stand and chat for quite a while...as it was pretty slow.", "type": "review", "business_id": "wOvAbdVYDaguotpdSALsfg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1RzVTIr6nxAwPV7RB7-U0Q", "review_id": "68xRQp0YEMfKgwXI6WqRgA", "stars": 3, "date": "2006-06-24", "text": "Despite it's name (which gave me moment for pause when deciding if I wanted to check it out), Xtreme Bean is a hip coffee house with a college feel (they even have a \"study room\" with quasi-cubicles that is ironically placed in what used to be a bank vault). Further, for those of you that spend hours on end in coffeehouses, THEY HAVE FREE WI-FI :-D\n\nThe \"coffee flavored coffee\" and tropical ice tea are good (I personally tend not to stray into more interesting coffee drinks, so you'd have to check those out yourself) and the entire selection of both food and drinks is very reasonably priced (compared to corporate coffee).\n\nAs of this post, there is ragtime piano on Monday nights as well as performers on the weekends.\n\nThey have a drive-through window.\n\nOh yeah, they don't appear to have updated their website in quite some time... most importantly, their hours of operation. The website says they are open 24-hours on the weekend... but I *think* they are closing at 1am in the summer.\n\nEDIT: Go for the pumpkin muffins... they are most excellent.\n\nEDIT 2: Due to the recent rise in popularity of this coffeehouse, I can no longer get my beloved muffins as they all sell out long before I arrive at night. *tear* Oh yeah... and all the employees probably think I'm that crazy muffin guy. *shrugs*\n\nEDIT 3: I'm officially downgrading my review from a 4 to a 3 as it's now difficult to get a table indoors and I have no interest in sitting in the smoker's lounge which is their patio area. *sigh*", "type": "review", "business_id": "IoFggnoj1P4EcmNEP2K6Ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qwr3X7DIOlviqhJ-1Gt1_Q", "review_id": "dXtNl37cJPApWjquAABDyw", "stars": 4, "date": "2011-05-26", "text": "This place is gem behind the Central Phoenix library and next to Walgreens. They have great lunch specials that are worth a visit. My favorite dish so far is the spicy noodles. The noodles were flavorful and pretty darn spicy, just how they should be. If you're in the mood for some authentic Thai food, you gotta give this place a try.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 5, "cool": 4}, "user_id": "r_5slEuf2V8ab3SZMHVfgA", "review_id": "xY5EfOYdXcF8XFeL5Dn5Vw", "stars": 5, "date": "2009-04-30", "text": "After visiting family in Scottsdale last weekend, hubby and I spent 3 wonderful days at the Boulders Resort in Carefree. We arrived a little tired and stressed; we left tan, relaxed, and rejuvenated.\n\nThe resort sprawls beneath the boulder formations, but you can walk all over on the paths that are well marked. Our room was spacious and clean, with his and hers sinks in the bathroom, shower, tub, king sized bed, and walk-in closet. We were located near the main lodge, and a brisk walk from El Pedregal and the Golden Door Spa. We made great use of the wonderful fitness center and took a few classes as well- yoga, bosu, and water fitness.\n\nWe tried both pools during our stay, the spa pool and the main pool. We preferred the tranquility of the spa pool; food and drinks at both locations were exceptional. If you meet Madonna at either pool, ask her to make the \"Madonna Special\" for you. A very refreshing smoothie.\n\nDuring our stay we ate dinner twice at the Spotted Donkey Cantina at El Pedregal- fabulous margaritas shrimp tacos. Our last night we dined at Rusty's Chop House at the golf club. It was a lovely meal on the terrace with a view of the golf course. \n\nEvery person we ran into was exceptionally friendly and genuine, making the trip even more enjoyable. I hope we return someday!", "type": "review", "business_id": "WFDxa8r0sT2ZnehYTyT1LQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jGsPOCaHCiBUJhBdFOe9-A", "review_id": "pWP9WnRagQw7SccNG7DpiQ", "stars": 5, "date": "2010-11-30", "text": "They have the BEST Pad Thai! I've had many other dishes of theirs which are all delicious, but that Pad Thai haunts my dreams at night. (In a good way) I've recently had Touch of Thai which is a highly rated Thai Food restaurant. Of course, I had to try their pad thai. Honestly, It was just as good, but they used the thin, stringy noodles and Dara uses the wide, flat noodles. You wouldn't think that would make much of a difference, but that's what makes me drive 20 miles more to go to Dara Thai to get their Pad Thai than driving 5 miles to go to Touch of Thai. \n\nIf your not watching your calorie intake I highly suggest getting the cream cheese wontons and Thai Tea with your Pad Thai! Now that's what I call delicious!", "type": "review", "business_id": "5nrEG6lFlKfr-OluekbsTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tjWy0c2Q0BrcBmWihorDTw", "review_id": "Sov2blOTUTUgqjrOhflxQQ", "stars": 5, "date": "2012-09-09", "text": "Baffled by the unfavorable reviews here. Easily one of the best burgers I've ever had is the Zinburger. Truffle fries are also delicious. Always have good service here and leave very satisfied. Atmosphere is slightly upscale I suppose, but not snobby as some complain. You can wear shorts and a T-shirt and feel right at home here.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "jFeo-mVwa1-MHQauk4k1ow", "stars": 5, "date": "2010-02-01", "text": "This place is what Desert Ridge wishes it was! Its great for groceries (Wal-Mart), bargain hunting (TJ Maxx), fast food or dining in (tons of places!), catching a movie (Harkins), stocking up the wine shelf (BevMo), new panties (Vicky's Secret) and a zillion other things. I love that this is close to my house! The only thing that would make it better is a Costco or Sam's Club.", "type": "review", "business_id": "W4lcMQudkcx7sTabnWaOqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UQUXdHJx2XmRMdXtMR6dtQ", "review_id": "DccfWDQOIKe4Cp8uuDwtjw", "stars": 4, "date": "2013-01-05", "text": "It appears that the service kinks have been worked out as our server was very attentive and the food came out quickly. Guacamole was tasty and fun and tacos were innovative and delicious. I don't want to argue the point of whether Barrio Queen aspires to be authentic street food or Mexican fusion, consensus at our table was that it's a bit of both and the experience was so pleasant that honestly we don't care and we will return soon. Of note, automatic chips and salsa at the beginning of the meal would be a nice touch and more opportunities to add serious heat (habanero, serrano, jalapeno) would have been a wonderful adjunct.", "type": "review", "business_id": "bOB11LVavtN9PWTNwR52Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rUYz1AFeKlhdQyw4JOi5Iw", "review_id": "ME2NNq2m9igLFN9962HIkw", "stars": 3, "date": "2012-05-22", "text": "We got the Wiseguy with Wood Roasted Onion, House Smoked Mozzarella, and Fennel Sausage. I was very underwhelmed. The pizza was really greasy and just not all that great-tasting. Also the crust was burnt in several places, making it taste even worse.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "7aQvAhgpdXqkTQEp8b8Szw", "review_id": "nVBewvCuv-YWRTkDwMay_A", "stars": 4, "date": "2012-06-08", "text": "This place is super darling. That's right, super. \n\nI've only been once and it was to quickly grab some cookies to curb a serious pastry craving. I had never heard of Churn and found them via good old Yelp. I snagged a Chocolate Chocolate Chip cookie and another fabulous cookie that sadly enough I can't remember exactly. It had cranberries and it was heavenly. \n\nI love how they have old school candy displayed through out the store! Good to know for when I'm buying goodies for events or holidays. Their ice cream selection is killer and I will be making a special trip out there one of these smoking hot days to enjoy some!", "type": "review", "business_id": "tAmevVP8B7PiWxcJ0PlYVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qGFt3x-OK4rbMT6B_Y6cPA", "review_id": "rGgNyp-tqFrrpbK-AWHiww", "stars": 3, "date": "2007-07-31", "text": "When I'm on vacation, I try to go to restaurants I try to avoid chains because what's the point? I want to eat local eats. As I walked in, I realized I've been to the one in Long Beach, CA though the menu was completely different. Or perhaps it was the late night menu but it was decidely more \"Southwestern.\" Ah well, it had been several years and it was quite late at night so it didn't matter at this point.\n\nI ordered the green pork tostada which the waiter assured me was very small and the hot wings. The tostada was huge. What a liar (yes, I called him that to his face). \n\nI ate a couple of bites and finished the wings. I would have the tostada cold and congeal-y in the morning before flying out. Surprisingly, the flavors were locked in this way and acceptable as a 5-minute scarf fest. \n\nOh, and my vodka tonic was very good. Not bad and I kind of dug our picnic style bench high top table.", "type": "review", "business_id": "d7V3ykQHqChv0KtXEanKLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "J_Wqa5tUZ6pen_OD1ikCEw", "review_id": "PfPV7R1DoWKe-ufucipKzw", "stars": 3, "date": "2012-04-27", "text": "I eat here often because it is close to where I live. Good clean Chines food but it is all starting to taste the same like they use the same sauce on many of their dishes. It didn't used to be like that. I will keep going because it is still good and the best in the area IMHO, but it is time for a menu change to get some new flavors for those who eat there often.", "type": "review", "business_id": "CqKiF2X0_4erH02-CUiweQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a2KLTknquBFq3HFHMJBEaQ", "review_id": "S4cNP1aE0CN_uefIRrMvSQ", "stars": 4, "date": "2012-01-02", "text": "We eat dinner here often, usually with exemplary service and delicious food. If you get seated in Tanya's section, ask to be moved immediately! She was nice, but a terrible waitress.", "type": "review", "business_id": "nZ0mUQEdez-CHrykD2nNLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O_gd75OCbEbBhZrAJZ5ebQ", "review_id": "8XUAC_AxKKxewCl0fT48zQ", "stars": 4, "date": "2012-02-07", "text": "This surgery center was quite nice and my girlfriend's septoplasty/turbanoplasty/sinus surgery went off without a hitch and the doctors all seemed amazing, anyway, I didn't get a surgery, but my girlfriend couldn't be happier with her results.", "type": "review", "business_id": "3i_8kdBQ4ex1o25BGQ9OvA"} +{"votes": {"funny": 8, "useful": 6, "cool": 1}, "user_id": "UoBfwbXaixelZBghbJ2cSg", "review_id": "I_1CgHj93GhRcOsWTwsm5A", "stars": 1, "date": "2011-02-07", "text": "Can I tell you how much I despised Fate with all its pretentious, snooty bullshit? I should have known the second I realized that Bliss/reBar was in the same building that it was probably tainted from all the leftover evil.\n\nAnd so it is. We showed up and the restaurant was practically empty. There is no hostess or even a hint of one. We stood there for many minutes on end before even being acknowledged by one of the many servers who were rushing around (perhaps serving to invisible people? The place was dead.). We were told there was a 15 minute wait, or we could eat on the patio. Um, it's 40 degrees... AND THE PLACE WAS DEAD. I guess we'll wait. We go back outside because there is zero point zero extra room to stand. The server comes back out and says they have two large parties coming in an hour, but we can sit inside now if we can be done in 45 minutes. That's sure inviting, isn't it.\n\nSo we hustle on inside and make some hasty selections. $9 faux comfort food shit like gourmet mac and cheese just offends me, so I go with the veggie sandwich. That sounds innocuous enough, right? The food came out straightaway - too fast for a burger to be cooked medium well, like my companion ordered. Sure as shit, she cut into it, and it was bleeding and mooing all over the place. My \"veggie\" sandwich arrives and it looks like a Filet-o-Fish from hell, some huge block of something unidentifiable due to extreme deep-frying. I couldn't help it - I asked the server what the hell it was. \n\nEggplant.\n\nOhhhhkay then. \n\nIt was like trying to eat a deep fried brick between two pillows. Impossible. The pretzel bread, while yummy, is totally unyielding. Only Jenna Jameson can fit that thing into her mouth. My companion was suffering a similar fate with her bleeding burger. There was mayonnaise and shredded cabbage and boiling hot eggplant juice going everywhere and it was goddamn ridiculous. Neither of us got through even a half of our sandwiches. I wolfed down the side salad just to get something remotely healthy in there after the onslaught of grease, although I almost choked on the buckets of sugar syrup they call salad dressing.\n\nSo, while we are attempting to recover from this mess, the server goes MIA. You'd think if they were trying to hustle us out of there, we'd get a damn check. Nope. No. Nada. Had to chase someone down and ask for it. When it finally came, there wasn't even an itemized receipt, so even though the total seemed a little low I couldn't check it out. I was so over the whole experience at the point I didn't even care. I left a shitty tip and we escaped to the bar next door, where the cute bartenders gave us some free drinks and we sucked down innumerable $3 vodka specials for the next four hours. \n\nJust UGH in every way.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GksCsVyXSABI9DNpJbFpTw", "review_id": "6P-j7u82hGHgN87OAcCwhA", "stars": 5, "date": "2012-06-17", "text": "Had the mahi and it was great. Very reasonably priced also. Definitely a repeat.", "type": "review", "business_id": "qwmHm3s8p7J12AIY6Co8HQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BuwjlU6D4kcs1aGo7wSM4Q", "review_id": "5aFfl9_fkLUw_T9DZYwBEw", "stars": 4, "date": "2012-03-22", "text": "This place has been around forever. I started coming here when I was 5 or 6, especially when my grandpa came to town from Cincinnati. He loved it. \n\nThe whole \"wild west\" theme prevails, and it is fun to think about cowboys and times gone by. I liked the sasparilla when I was a kid, I don't think I've ever had it anywhere else. \n\nLast time I was in Phoenix we went again, and while the quality of the food has maybe slid a bit since I was 5 ( um, I'm kinda a LOT older now), it is still cool. I like the good mood of all the visitors, it's a place that inspires laughter and happy shared experience. \n\nIf you do wear a tie, wear one you don't care about, ok. Trust me on this.", "type": "review", "business_id": "GaeokhqmZYuPr7i1EZtnHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2Mm0BC0bN7BJiOUWf9GW3A", "review_id": "gK-blxjfcUVrPNlKNTbJ0w", "stars": 5, "date": "2011-12-06", "text": "I have been living in Arizona for 4 years and have yet to find a decent Italian Beef Sandwich, until now. I even gave the same statement to the owner. I had ordered an Italian Beef for carry out, and while I was waiting, I let him know my frustrations. He gave me his card and told me to call him after I ate the sandwich because he wanted to know what I thought. Well, it was FANTASTIC! Of course, I called him back to let him know. \n\nThe service, and the time and effort put into the food cannot be beat. This is what you get for a mom and pops type place. \n\nThere are plenty of other sandwiches and foods there too. I can't wait to go back and try some more!", "type": "review", "business_id": "kEyCMHBnohaWc81omLDfYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "G_6pOq1gA4jyJ3j8mjOyJw", "review_id": "ZicqVp7QzEQGHcxWBIXXig", "stars": 5, "date": "2009-12-31", "text": "This place is just so so rad. It was about time that AZ has a high end sneaker boutique.\n\nThe selection of sneakers as well as clothes is above all. No kidding. I bought a pair of limited edition Jordans as a gift here. All of the sneakers here a so unique and fun, and it really puts the fun in sneaker shopping again. \n\nSure, you can go to finish line and get a pair of sneakers there. And you will see various other people wearing the same ones. If you really want to find funky stuff to express yourself with, this is the place. AND to make it even better...they sell for retail! So markups? Not an issue.\n\nDo yourself a favor and check this place out...", "type": "review", "business_id": "jF7R5nxyGiwPM5Q7xLfD5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JvyJa5TFSNK3VAeEPElRMQ", "review_id": "6JyCek_n05_IpMgZGOA_EQ", "stars": 3, "date": "2010-12-23", "text": "3.5 stars. Needed a place to avoid the rain before going to see Tron with my mom at the movie theater next door. We didn't order food, just drinks. There's an OSF in Seattle, and having gone a couple times, while not super familiar with the menu, I know what they serve. Our waitress was actually really awesome- she got us our drinks quickly and was super friendly with our touristy butts. Yeah... it's a chain. I know the food isn't the best and the service can be hit or miss. But the stars are all for our waitress, whose name I (of course) can't remember. I got the OSF version of a Jack and Coke, which had a cherry infused whiskey (it was dangerous, and at 7 dollars, doubly so), and my mom got a virgin Daquiri- our waitress put extra whip on it. A little touch, but one my mom really appreciated.", "type": "review", "business_id": "1ggcLvWPBDWnp5MVTRnoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bpgpImWo7JBvZGJCN33mSQ", "review_id": "3ubU0rv1beJTbfSy9zalsQ", "stars": 4, "date": "2010-05-08", "text": "Things I loved: \nThe Thom Kha Ta-lay (med) was creamy, spicy, and FULL of seafood and fresh kaffir leaves. The chicken satay had a nice char but was still juicy (so rare!). The cucumber and onion relish was surprisingly sweet and a great counter to the heat. \n\nThings I only liked:\nThe Pork Kwediaw Kraphrao (mint and pepper stir fry with egg noodles) was not as mediumly spiced and could have used a touch more mintyness. They were out of Pumpkin Custard, which made me very sad as it sounded awesome.\n\nVerdict: \nI would go back to try a curry or rice dish, for sure!", "type": "review", "business_id": "wct7rZKyZqZftzmAU-vhWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7E7QOpXnt5s51Pfj0TWejw", "review_id": "1IwsfCWj32Q_rHtghr_EEA", "stars": 5, "date": "2012-04-13", "text": "Dr. Jason Kanarish is absolutely amazing. I am a Physician Assistant in surgery, and appreciated his \"bedside\" manner as well as medical knowledge, which was phenomenal. He spent AMPLE TIME with me and answered EVERY QUESTION I had. Not to mention, he was fantastic with my scared min pin. I cannot recommend him enough. The staff is also extremely friendly and helpful!", "type": "review", "business_id": "zLhfnbcnGg01_lltvrHVBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "6hRKotVFPYL7Ci0hipN9Eg", "review_id": "18eds-Q5M-UZAk9UF4bUsw", "stars": 4, "date": "2011-05-22", "text": "I have been to this Mojo fro yo location several times now and really enjoy their yogurts! The yogurt tastes great, is light and refreshing and somewhat healthy if you avoid all of the chocolately/candy toppings yet they offer tons of fruit options. Priced by weight, a great stop after retail therapy at Saks or dessert after Stingray Sushi or True Food at the Biltmore. A must try, plus they have punch cards for free fro yo after a couple of visits! :)", "type": "review", "business_id": "nFBse3YXN8CP1cDieyLz6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r9xKvhIFjW8Nopvjm15y6A", "review_id": "T6042sKoernzO80kb6_mgA", "stars": 1, "date": "2011-10-04", "text": "Nice selection of stuff, but they have so little help available you will wait for darn near forever to get fabric cut, THEN wait in line forever to pay. For such a giant store, it appears there are 3 employees. That's it. I miss Hancock Fabrics, THEY knew how to treat customers.", "type": "review", "business_id": "5yRChLjoF31e46CttFK9fQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "bcnAYXA0axwRwxo5wt287Q", "review_id": "ogQyq7ve4Yqi4OI3G89ixQ", "stars": 4, "date": "2011-04-29", "text": "I think this is the best frozen yogurt I've ever had. Even better than Golden Spoon, which is saying a lot cuz I love that place. I tried the peanut butter, triple chocolate (not my personal fav but my coworker loved it), cake batter (to die for), strawberry (tastes like a strawberry malt), snickerdoodle, and prailine. They have the best toppings of any yogurt shops I've visited. Favorites include choc chip cookie dough, mini gummi bears, mochi, yogurt chips, cheesecake, and boba... not to overlook the fresh fruit....", "type": "review", "business_id": "4-qDkltBuJ_Lbj3nyxvUlQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mYq8-BrNA6OVTXkFClH9yQ", "review_id": "yejqmMXQQaSvvBTEx7DY-w", "stars": 5, "date": "2011-05-07", "text": "Just open. I had the roast beef sandwich and my wife had the turkey and stuffing sandwich. Both were excellent, modern interpretations on classic lunches. I highly reccommend this place.\n\nP.S.: iPad driven POS system is way cool.", "type": "review", "business_id": "Bm2PBs_AZEtx93zdtwqUJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AivhZeFM9EivrtQTc0iz_A", "review_id": "N8i_-UP7gDa6VHBCO6giHA", "stars": 5, "date": "2010-01-30", "text": "I don't frequent Tempe too often, but when I do, I try to get a Tea Infusion run in... everytime I succeed, I literally have a grin on my face after every sip. \n\nIt's the least strip mall-esque dining option in the whole of Tempe Market place and that is a BIG PLUS in my book. Add to that that they make Boba Smoothies the way I like them... how could I resist?\n\nCase in point: The Pumpkin Chai. Based off the rattlings of fellow yelpers, I decided to try the chai and asked if it could be boba-fied (which makes me want to say Boba Fet) and they said \"SURE!\" It was delish, but that was summer and now it's winter and so warm sounded yummy but I had never had a hot boba drink before. So I asked them if I could have it with boba and hot and what did they say? \"SURE! But be careful it's hot.\" And oh so YUM!\n\nI think they deserve the taglines \"Have it your way\" and \"Any way you want it\" more than Burger King! Because out of all the Boba places in Metro Phoenix they are the only ones that have never said \"No\" to me before with Boba Juice coming in a close second.... but only because their range of options is less.\n\nAdd to that that they have a Boba Smoothie called Carribbean Colada and it is a pretty comparable alternative to my favorite Pineapple Lychee flavor that only the now defunct AZN of Mesa could prepare for me... so with just 2 of their drink options I am in Boba heaven... wonder what else they have in store for me if I ever tire of my usual options and try something different... don't know if I can... I might have to do a gluttonous double order or sip-taste from a friends selection.\n\nBut wait... Boba's not all they've got, they've got a tea list comparable to that of Cheesecake Factories menu... it is a long one... I've had a blueberry tea, strawberry and a coconut one and they were all pretty tasty. I've also had a panini there and it was quite tasty and filling--I took leftovers home.\n\nMy only wish is that the space Tea Infusion is housed in was more spacious with lounge seating in addition to table options so one can really settle in and work or chat with friends, but heck, I'm just happy they're here and serving the valley some tea-tastiness.\n\nI'll tea back REAL SOON!", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hTwheafW_kAvf-33U2Tr8Q", "review_id": "GD6730TWOxLJYOPEXGRS6g", "stars": 4, "date": "2012-11-22", "text": "Yummy breakfast! Enjoyed the pancakes.", "type": "review", "business_id": "Pr9rQKypHgC_J1AfufxzIw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "vlsQs-8TNsNJnrL-7Rj2YQ", "review_id": "uLHy84c3g1FADkIOpxMtxA", "stars": 5, "date": "2012-08-18", "text": "We purchased a Groupon deal and went and tried this restaurant . The food is excellent and the service is very good . If you are wanting real Texas BBQ then this is the place to go!", "type": "review", "business_id": "dzncF6n6MHJLXUo4_J6eig"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9zx6afVX3NYLuVYzJz-XKw", "review_id": "Zr50sINJKYnWhnqLShzI8Q", "stars": 3, "date": "2012-10-29", "text": "Hmm, a bit disappointed. I had been here several times when I used to live in Scottsdale, but that was 3+ years ago, and I must say that I think things have gone downhill here. The bruschetta toppings on the combination platter were odd for the most part, with the exception of the traditional fresh tomatoes and basil, which was delicious and worth mentioning. The provolone on the sausage bruschetta was excessive and the overall combination of flavors just didn't work. The pesto bruschetta was SUPER garlic-heavy, even for someone like me who loves garlic. I couldn't finish either of the latter types of bruschetta. \n\nOnto the main course - pizza. Had the Toscana, which has mozzarella, tomato sauce, mushrooms, and sausage. The crust was burnt and flavorless and the toppings just seemed kind of bland and strangely old-tasting. I mean, not fresh. Weird, I know. \n\nI sort of liked the red sangria, but it was a somewhat odd twist on sangria, as it was pretty sweet and not very strong. \n\nI am sorry, Grazie. I am spoiled by having had the best pizza on earth in Chicago and am too excited to try the other acclaimed pizza joints in Phoenix/Scottsdale to return to your restaurant.", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NAfU5nspEdZW1CBge0rxKw", "review_id": "TVZlTtdql6DmtPtSsdytgQ", "stars": 5, "date": "2009-07-08", "text": "As close to a real, east coast deli as you'll find west of the Appalachians. Delicious sandwiches, egg creams, etc. Pricy, but kids apparently eat free in summer, so we kept it at 5 stars.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "na9NcTh3l12ZlsXXyJc6Lw", "review_id": "BHudENKdbPmHnT0M3jT94w", "stars": 4, "date": "2011-05-23", "text": "Good food, friendly people. We like the Gold Strike Burger -- we get it almost every time. Also try the shrimp appetizer and the bread pudding dessert. Appetizer and dessert, plus a Kiltlifter Beer or two, is sometimes all you need. \nThe only sad thing is, because they are a bit off the beaten track, they will have to close for the summer, until November. We will miss them until then.", "type": "review", "business_id": "W1Fop9T-u4RGuF36DtZ6ng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fEvspU2v4_c8Hy7hRIlIFw", "review_id": "rWuwYNwnOkhk6INuOd6KDg", "stars": 5, "date": "2012-04-28", "text": "We searched our phones for a place to go to have some Ceviche. This restaurant received some good reviews so we drove down from NE Phoenix and were a little skeptical on the location... but our concerns were immediately set at ease once we stepped inside. What a great little place with very friendly staff! We really appreciated the cleanliness too. We ordered the shrimp ceviche, shrimp in green sauce and shrimp and broccoli in cream sauce. Everything was outstanding! Even the simple rice and beans were absolutely delicious! And the tortillas, uh-mazin!! Danielle was wonderful and we truly enjoyed her service. We will definitely come back and bring friends next time! Between the two of us, we already texted half our friends about this place and we haven't even finished eating yet! RECOMMENDED FOR SURE!!", "type": "review", "business_id": "Cp6JGY5YIRncTV_My9nf9g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "obTixVBziFCH0e-EUnAvtg", "review_id": "ngmjKL06ypxUkDqpFCPedQ", "stars": 5, "date": "2011-11-05", "text": "!!!!!!! *** O M G ......So GOOD *** !!!!!!!\n\nMy family & I keep coming back to this place. We drive over 10 miles to get our fix. I think it's safe to say that we are officially hooked, and when we are jonesin for Tacos Atoyac there better not be anyone or anything standing between us and our Food!\n\nToday we all came aways lickin our chops and yummy in our Tummy. I might not brush my teeth tonight!\n\nHere's what we had:\n\n~ I had scrambled eggs with chorizo (dry), cheese, onions, potatoes, and Jalapenos. Served with side of refried black beans and spicy rice, and a little plate of grilled onions (sweet & tastey) and jalapenos.\n\n~ The little woman had a Spicy burrito:al pastor, cheese, onions, jalapenos, mayo, avocado, \n\n~ The kid had 5 mini carne asada tacos with cheese.", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 6, "useful": 2, "cool": 3}, "user_id": "FPWwCD73C0PlRdDfJ6Tuqw", "review_id": "nI5Cc73DTLDjPNJ4Z-1VVA", "stars": 2, "date": "2007-03-26", "text": "Divorced? Desperate? Have a new corvette? You've qualified for a trip to the lovely Martini Ranch where your next future trophy ex-wife is waiting for you!", "type": "review", "business_id": "1mhywrdsgdqJM3OGZIpVtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "ieumu7u7duQBUy5IT66WbQ", "stars": 5, "date": "2012-02-03", "text": "I love the owners. Very friendly and accomodating. One night we had called after they had closed, and were pleasantly surprised when someone answered. Turns out they were hosting a private party. They agreed to take our order, which made us pretty happy.\n\nI adore their Greek fries. Olive oil, lemon, and the perfect amount of fetta. Been here several times for lunch, and always leave happy. Looking forward to meeting friends here for happy hour.", "type": "review", "business_id": "TVJT7Xknd-ikf4vskcjKQw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "8wTya9Ijcf775vSofnfdGw", "review_id": "FnhRPqDQheoKHcPqzlELJg", "stars": 3, "date": "2009-07-08", "text": "I stopped in here at 6:45am one morning and was told I was a bit early. I'm used to coffee shops opening earlier I guess, but they were nice about it and invited me in to sit and wait. \n\nI liked their stacks of Latin American Vogue, and the artwork on the walls was nice. They also had ice water out for you to serve yourself. \n\nI ordered my usual americano, and was pleased. They have raw sugar you can serve yourself by the heaping spoonful out of a pretty candy dish. That was lovely.\n\nAlso, they are now the only place to carry Sweet Peas Bakery items. My favorite thing to do was walk down to Danielle's shop downtown and pick up some coffee at Royal and some of her Rosemary Shortbread cookies. It doesn't sound yummy, but believe me they are! Be sure to ask for some. \n\nAt the time I went, the place was obviously not crowded and I received attentive service...", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VD5XVYIA2644upO0z9-ZSw", "review_id": "oZLdCAwPUiX-xS7zbixZiw", "stars": 5, "date": "2010-04-03", "text": "Awesome resort. I was able to stay there to celebrate a birthday in July, and fortunately it wasn't as hot as it usually is. I am a wimp when it comes to heat, but the resort was wonderful, even with many things being closed. The summer is off season for this spot. We had a great time at the spa, and lying by the pool. Be sure to have your food and drinks served there. It feels so luxurious.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "OSCOZBMl_miGbRd4h-6azw", "stars": 1, "date": "2008-02-27", "text": "Goddess got it right. This place is pretty, and it looks so promising. Big disappointment. There was nothing for vegetarians. The food was mediocre at best. I'd choose Pho Nhat over this pretty restaurant any day. Don't judge a book by its cover. No good.", "type": "review", "business_id": "juzATNnxyBWEdQoDoKrEuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0ST1KniOKB9Evq-IuUyMIA", "review_id": "bM80ahZ8nPM-ClAu1FdDbQ", "stars": 4, "date": "2011-06-04", "text": "When I'm looking for the more mature, laid back version of Lux, I come to Copper Star. Coffee is not as good but service is great and place is inviting. Great neighborhood favorite.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9Xt-8aPXCRBJetIoVWQT7w", "review_id": "A0q4UfDmv-PJi9gU_FfSTg", "stars": 1, "date": "2012-08-14", "text": "This is a sad excuse for a gay resort. Sort of like a worn out version of Palm Springs. We found the Zen Yard up on Maryland Avenue a much more agreeable experience in a better neighborhood as well. Zen Yard is a far better value, with full breakfasts included and warm, helpful hosts as well, not to mention particularly reasonable off-season rates and hosts who are actually there for their guests.", "type": "review", "business_id": "XaSV2CimMDKOuNrfP8F6CQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9QnSv_ORlutCyOORsJC8qA", "review_id": "xWshnS43YZzfMMRSHXEEtQ", "stars": 5, "date": "2011-03-05", "text": "In times of big corporations it was nice to find such a warm and friendly coffeehouse in the valley. It is just a great place to hang out, set-up your laptop or read a book. I thoroughly enjoyed my Joltachinno, a much better version of the Starbucks frappacino which is just too sweet. \nWe came back another day for lunch and all I can say is yum! I have never had food like this at a coffeehouse.\nAmazingly, for our second time there, they recongnized us! WOW! I am glad that I have found my new hangout when I come to the valley!", "type": "review", "business_id": "I2_yeLfTzXHGwi8an0tL4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tMR534A8JM8lc2GWRQ1hcw", "review_id": "9fRpuRDigQEQCKyukeMNTg", "stars": 4, "date": "2011-04-25", "text": "Went Saturday and got there just after opened at 11:00am as suggested by other yelpers. Glad we did as filled up quickly. Rate 4.5 stars as I'm a big fan of pub grub and atmosphere that goes with it. Would have been awesome if had a more brit/euro style feel by adding sports tele/bar music but that's being awfully picky, especially for such a small venue. Food was great, huge selection but could have been a tad warmer (my choice). Beer choices good, unfortunately out of my first pick but can't knock 'em too bad for that, and a bit warmer as well (again, my choice). Wait staff very friendly and efficient. Didn't have any unusual wait for service considering crowd. Prices I thought were reasonable, and we left full and satisfied. Definitely will be back again.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GJ_Uj-QZcQbEm5mKAj7eUw", "review_id": "Yh8V1ZVt3vCssaoT6PAm6Q", "stars": 5, "date": "2011-08-13", "text": "Great food and service. Normally a wait on the weekend, but what would you expect.", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7jWmd57QoJnq2q4QyvVS2Q", "review_id": "n320KwKZsuBn9IKem77FtQ", "stars": 4, "date": "2011-04-07", "text": "I first saw this place while I was on light rail going to basket ball game. The stop is nearby and it makes it easy to get to. The food here is very good! Everything I get here tastes home made and offers just the right amount of spice. Their salsas are very delicious! I always get the enchiladas or the bean burritos served enchilada style. Both the red and green sauce are very tasty. The service is always very fast and helpful. We came here late one night and were one of the only people left, but the waitress never hurried us and was very courteous.", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0rRTTYnjOtMDD32RvlxPow", "review_id": "aULZki22oNRlfUMyxzJxsg", "stars": 5, "date": "2009-10-18", "text": "best coffee in phoenix (so far). experienced and friendly baristas, a large sitting area inside, nice decorations, community conscious, promotes local art and artists, outdoor sitting area, easily accessible location from the light rail and from the portland park neighborhood. \n\ni had a short vanilla cappuccino and the thing that made it the best insofar to my search for phoenix's best espresso was definitely the milk. it was properly steamed microfoam. the shots were right on, too.\n\nthe milk i've had elsewhere in phoenix doesn't compare. thumbs up to fair trade.", "type": "review", "business_id": "2FudHUhV9U54dm0S1ePuCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DR16G5ON682bdXrcFUjVOw", "review_id": "WrMiCe97wEFgkJlb0OfYwQ", "stars": 5, "date": "2010-12-22", "text": "this place rules, plain and simple\n\njust wish they had a cheaper jukebox", "type": "review", "business_id": "9mQj65SmYj2pcehH339aEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FX9273MUWSM_LxtmFVriaw", "review_id": "TjRguiiYR-pZZJ_F_SAE7A", "stars": 1, "date": "2011-05-11", "text": "If you have to be some place on time, don't use them. I called at 2pm for a 4:15 taxi to arrive. At 4:25 they were calling me saying he was right around the corner, and gave me his location. Estrella called a couple more times to \"verify my address\". At 4:35 I called them and cancelled the cab and got a ride from my neighbor. As we pulled out of my neighborhood, we PASSED the cab. He had taken a street that he thought was going to be a through street and got himself lost. This is a TAXI service, they should know how to get around the valley!! Don't these people use GPS, or MAPS at least?!?!?!? End of story, I was still late for my class that I paid 250.00 bucks for. I was not allowed in, and the money is non refundable. So thanks Estrella wasting my time and costing me money. WORST TAXI SERVICE EVER.", "type": "review", "business_id": "0x0voDMo5yMQI2601ovjOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "dSa-IKXBjz0YInXDBXx5kQ", "stars": 4, "date": "2009-01-04", "text": "When Sen. Ken Cheuvront opened this restaurant, I was living in Midtown phoenix and it was at a time when a lot of restaurants in the area didn't exist. I was beyond excited of it's creation. \n\nIt's a very trendy urban feel, with a nice patio on Central Avenue. Located at the bottom of Artisan condos, it's not a terribly easy place to see if you're driving by. They feature an incredible selection of wines and cheeses, of which you can purchase and take home as well as nosh in the restaurant. They also feature smaller sized entrees for those who are not looking to get stuffed on greasy messes and feel sick all night.\n\nA particular favorite of mine are the ancho pork empanadas which are fluffy and crispy with a little orange in the pork. They are definitely delicious. Also great is their white pizza featuring sea scallops. \n\nThere is nothing here that is oddly unique, but everything is interesting, and it is a nice spot to hang out with friends and have a nice night out. Especially during a first friday.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "BDQjq30H2gFncFvaapvm6A", "review_id": "VNUPyOCkKH-pVKLty3qTPw", "stars": 5, "date": "2012-09-10", "text": "There are certain people in your life that you should have & trust. A good mechanic is high on that list. \n\nI found out about Whitey's Auto through twitter. Many of my friends were communicating with Scott, the GM, and I started following him too. His tweets were funny, authentic and relevant- and not always about auto repair. The most important aspect of his tweets? They're immediate.\n\nAt the time, I had a warranty through the dealership on my car so I didn't need to go to Whitey's for service. However, when I got into a car accident and tweeted about it, Scott responded for me to call him and he'd help me out. \n\nAlthough Whitey's doesn't do body work, their neighbor 1st Class Auto Body does. Scott personally walked me over there and made sure they treated me right. He had made me a lifelong customer at that point. \n\nWhen my boyfriend's truck kept leaking oil and he wasn't getting results at the shop he was taking it to, I took him to Whitey's and introduced him to Scott. With one check, Scott could tell that the previous shop had NOT done what they had charged my boyfriend for. Scott told him if he didn't mind the leak, he could put off the service work as it wasn't something imperative. And he didn't charge him for the assessment.\n\nRecently the belts on my car fell off, causing my a/c to go out & lights to come on my dash. My warranty was over, but I didn't even hesitate. I just turned right around and took my car to Whitey's. Replacement belts and labor (plus they checked my battery and charged it for me) cost $80 less than it would have at the dealership. \n\nThe inexpensive cost, along with piece of mind that comes with dealing with a mechanic and shop you can trust, make Whitey's irreplaceable. Don't hesitate to take your vehicle there first when you need service!", "type": "review", "business_id": "tenKOmTRi2rjZAWwNCDv6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8n--xRBQ9eLDi0vpQ5fGFQ", "review_id": "C1kdmZkPlIsRcrSxiL69CQ", "stars": 5, "date": "2010-12-08", "text": "I would never have picked a museum cafe for lunch, even though it is practically in my own backyard, but with my friend's endless ravings about their Dreamcatcher Salad, I relented. And I'm glad I did! It's now become a staple for lunch meetings!\n\nThe dining area is bright and cheerful, but the outdoor patio is truly a delight on a beautiful day! It is serene and is surrounded by a plethora of desert plants and a lovely water feature.\n\nThe menu is rather short on items, but long on freshness and flavor. Many of the offerings lean towards Southwestern style. I have found my favorites on the menu, in particular, the Hummus Veggie Wrap which is filled to the brim in a healthy spinach tortilla with Tepary bean hummus, tomatoes, roasted red bell pepper, grilled red onions, pepitas, smoked gouda, and romaine. (I've tried to duplicate this wrap at home with underwhelming success!) Each sandwich comes with the choice of salad or chips. The portions are hearty.\n\nThe service is attentive, but not intrusive.\n\nAn absolutely divine dine!", "type": "review", "business_id": "MeC8jb8n-9VR5wgBj_7PEw"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "GJ81EquQfQKvS-eLRdr6aQ", "review_id": "GlFyloK36QBo7Qwn1DVarQ", "stars": 2, "date": "2012-01-16", "text": "After stopping by Gallo Blanco for breakfast our second and last time, I have to wonder when the last time was that Doug Robson set foot in his establishment? We have been going to Gallo Blanco since it opened on a regular basis and finally decided to try breakfast a couple of weeks ago. We showed up about an hour after they opened, requested coffee and OJ, and were told that they had no OJ because \"no one worked last night, so no one made it.\" Uh, okay, what have you slackers been doing for the hour that you've been open this morning? Fast forward to yesterday, when we decided to give it another go. We showed up about 45 minutes after they opened, desperately wanting a Bloody Mary. Guess what? The bartender hadn't showed up yet...we were walking out to go elsewhere (we REALLY wanted a Bloody Mary--don't judge) when she did arrive and we popped over and ask if she could make them--then we would have sat back down and had breakfast. Nope, she said, she needed 15 minutes to get set up. It wasn't the 15 minute wait that made us leave--we had to drive somewhere else, after all--but her response sent us to the door. F you, Gallo Blanco, for hiring a parade of unsupervised, couldn't-care-less-hipsters that are slowly ruining the excellent reputation Robson worked so hard to earn.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Df9kAosCVSIzl06qwhmBmA", "review_id": "wLH_lWJ9og4uJuPciEiJLQ", "stars": 4, "date": "2012-04-21", "text": "Huge burritos for $7. Enough for 2 people. Fresh and tasty! Plus very friendly service. I prefer going here vs the Taco Bell in front of them :)", "type": "review", "business_id": "lk-6NXfpSgvNw7zm0xtUVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Wy7f9DOuBEOenhnA7KIKoQ", "review_id": "KFa70lcfuDBF0nL3Cvvb6g", "stars": 4, "date": "2008-04-02", "text": "LOVE LOVE LOVE riding my bike through here. Especially on our way back, with all the down hills!!!! It's like a roller coaster but better!!!!\n\nI also drive through here every morning to get to work, so that is a nice, relaxing, pretty way to start my day.", "type": "review", "business_id": "_lanRtzQGRkbhd2b6pQleQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "Y0aovX_kbraKpdLYCzVHKA", "review_id": "8zw-XQNUZMRWMSDXA1nMXg", "stars": 5, "date": "2010-04-21", "text": "Pizzeria Bianco: Before and After \nCited as \"the best pizza in America\" in numerous on-line reviews as well as on Good Morning America and as published in, Slice of Heaven, to most pizza lovers the three to four hour wait for a table is so daunting that they push on to a more open table atmosphere for their pizza experience. But to the true pizza enthusiast, Pizzeria Bianco is as much about the experience as it is the food. This place is best known for the owner Chris Bianco, hand tossing each and every pizza pie served every Tuesday through Saturday, from 5-10 pm for nearly 15 years, of which I was one of those fortunate customers. However, early 2010 Chris was forced to retire due to illness and turn over the pizza paddle and oven duties to his prot\u00e9g\u00e9 of 15 years, Horatio Hernandez. \nMy decision to try Pizzeria Bianco for the first time came from a challenge I put upon myself: Find the best food in metropolitan Phoenix. After hearing about Pizzeria Bianco from a friend, I made gourmet pizza my first battle in 2009. I knew about the long lines forming an hour or more before the restaurant opened, and this beautiful fall day was no exception. I arrived 60 minutes before opening and my date went to Bar Bianco to start us off with a couple of pale ale microbrews while I held our place in line. Seeing that there were only about 20 people ahead of us, we assumed we would make the 5:00 seating with no trouble. However, just as we were holding a place for the rest of our party, so were the 20 or so people ahead of us, and when the door opened promptly at 5:00, there were now over 50 people ahead of us. Needless to say we were left waiting another hour since the restaurant seats only about 40 at a time. \nWhen we were seated at 6:00, the four of us started with the homemade mozzarella, local tomato and sweet basil starter with extra virgin olive oil drizzled all over as well as homemade crusty bread with a dish of EVOO with a touch of balsamic added. We ordered three pizzas, the Sonny Boy providing salami, marinara sauce and gaeta olives, the Wiseguy a sausage and mozzarella taste explosion and the Marinara with Prosciutto di Parma. All three pizzas were piping hot when they arrived, just crisp enough around the edges and loaded with the most amazing flavors your mouth has ever experienced. We left the restaurant without remembering the nearly 3 hour wait and were fully satisfied, eager for the next opportunity to drive to 623 Adams in Phoenix for another \"slice of heaven\". \nAnd so, after hearing of the departure of Chris from the kitchen, curiosity got the best of me. I had to challenge this place and find out if the changing of the guard made any difference in the wait time, the food quality or the overall experience I had truly fallen for. April 6, 2010 again I ventured down to 623 Adams in Phoenix to see if a Tuesday night or a new head chef had made any difference at all. My date and I arrived at approximately 4:00 pm, one hour before the doors would open. We found a line of about 25 people and looked at each other and said, almost in unison, \"Well, the wait hasn't changed\". \nBob trotted off to Bar Bianco to find our pale ale, Four Peaks to help pass the time. We caught a glimpse of owner Chris Bianco and I told Bob how I would love to chat with him seeing as I was writing a comparison review, I also wanted to find out who was cooking tonight. Bob stalked Chris into Bar Bianco and asked him if he had any time, would he be willing to take a picture with me and answer a couple of questions. When Bob returned with another beer and Chris Bianco in tow, I was star struck and could barely speak. All I could muster up was, \"Are you cooking tonight?\" To which he replied, \"No, I have Horatio at the oven. I can't cook anymore.\" I explained my evaluative writing topic and he assured me the experience would be the same. We took a picture and off he went, back to the bar. \nAt 6:15pm, after 2.25 hours of complete social enjoyment we were called to our seats at the bar. We ordered the same items we had enjoyed last fall with the exception of the Marinara. The overall experience was better for me as I got to enjoy personal time with Chris. As for the meal, it was just as amazing as I remembered it from 6 months prior with Chris tossing the pie for every customer. The flavors were exactly as I remembered and the service from the staff was top notch, just like the first time. From the wait to the taste, it didn't appear that anything had changed! \nSo what makes for the \"best pizza in America\" and how did Pizzeria Bianco get the tag line? Well, my opinion is flavorful ingredients, a phenomenal social experience, and an owner who lives by what he serves. To Chris Bianco and the Pizzeria Bianco staff, you haven't skipped a beat!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "AYc9uXZLg_x9IH40RS7oHg", "stars": 5, "date": "2010-08-03", "text": "OK ok ok. I'll have to agree with some of the below reviewers that this place isn't dead-on authentic Mexican food. That being said, I love it! The place is huge, sporting a bakery (said many times before) with unbelievably dirt cheap pastries (not said as many times before), a little carniceria (not as good as Carniceria Sonora) and a huge dining area. \n\nThe dining area with all its painted mural glory is so goddamn cool that I find myself wanting to just hang out there for hours watching La Primera Division de Mexico on TV and enjoying a nice $2 Dos Equis. \n\nThe food - that's probably the only tougher part. Keep in mind it's still pretty good, but there are better places in the area for getting your Mexican on food wise. The potato taco is worth getting because it's fairly unique, but it came out so soggy that I had to eat it with a fork. I grabbed a couple of the Yelp-Advertised taquitos as well - keep in mind these are not the Circle K, rolling taquitos. They are literally just smaller tacos, but they were damn good.\n\nI guess when it comes down to it, I'm an atmosphere buff. There were so many cool things to check out in this multi-plex, and the atmosphere was so warm that I'd love to head back again soon.", "type": "review", "business_id": "apCfJVnRyaw6oVUBKujpUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "obZR7Hn_XTXPOtnynW4H5w", "review_id": "pyx9sSmkoISU6kWWXC-7gw", "stars": 5, "date": "2011-10-26", "text": "Being my first review, there is only one place I've always had a 5-star experience. Hoodlum's is the ultimate music/cd/vinyl/DVD/used music store in the Valley. ZIA and Stinkweeds are a distant second in terms of selection, price and overall experience.\n\nSteve and Kristian are two of the nicest local business owners I've ever met. They know a ton about music and the local scene. They'll help you find anything you need.\n\nTucked in the SW corner of Guadalupe and McClintock (next to Traders Joe's), this is a special place to find that CD/DVD you've been waiting to purchase. \n\nThey also have a wide selection of used CD's and DVD's to are at bargin prices, be sure to check that out too!", "type": "review", "business_id": "RS6V9TGTLQmBRuXsmWCOTg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jdeNI5TTTuM6mj3HTgstRA", "review_id": "7UGJemr1kgLqxF9IqbHF6A", "stars": 3, "date": "2012-12-26", "text": "Truly a neighborhood bar. Didn't know anyone here, and didn't leave without catching everyone's name. Maybe not as wide of a beverage selection as the pizzeria-turned-bar in the same lot, but definitely lots more fun. Will return.", "type": "review", "business_id": "-r0wNFCnAkK8DjMnv3L6Zg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vNx7F5bTO_rnh2ZlBUJ1Bw", "review_id": "DAHiLsxKFch-pt9K47D2Gw", "stars": 4, "date": "2012-09-14", "text": "I would give them a 5 if the service was better. The food is always great. I've tried 6 or 7 different versions of the calzone and the stromboli is awesome. My boys love the pizza. The price is great for the portion. Great family spot and the delivery is on time.", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "XhyaLLIA-T8xR1-DfZPGlQ", "stars": 4, "date": "2010-05-05", "text": "Its pretty expensive.. Everything's about 4 dollars minimum but the food is quality. The flavors aren't very new and exciting, but you can tell the ingredients are quality and they don't skimp. The texture is good quality. Love the whole almonds in the rocky road! :D", "type": "review", "business_id": "wzP2yNpV5p04nh0injjymA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7Pyi-M7MfO3R2PHTuVY0TA", "review_id": "CboKiJv0GmNBNcVPrsTmeQ", "stars": 2, "date": "2008-06-22", "text": "I went to Gordon Biersch for a birthday party at the beginning of the month. I had fun, but it had little to do with the establishment. We had a special \"deal\" of $17 because we were such a big party. There were soft drinks included in the price, but alcohol was more. I have no issue with this, but the food was not very good. I had a pasta dish and it was fine, but I am not dying to eat it again. Then, we get our bills. The price was not $17, there was additional tax and tip added on (which again is fine, but deceptive when we were told it would be $17 per person). Then, my pregnant friend had a cranberry juice and sparkling water. This apparently was not on the included menu and she was charged a $2 alcohol fee for her non-alcoholic beverage. It just seemed a bit fishy to me. Had it been an excellent meal, I wouldn't care about a few bucks, but it was just ok.", "type": "review", "business_id": "_oBxfuBd2qDEWaYsdvP_dg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hW2XQMGHy5_TW7dnijZR6Q", "review_id": "E3mDKGf2YqORQEbkBlXrnw", "stars": 2, "date": "2009-11-16", "text": "For a chain or restaurant in general with \"wing\" in the name, this place really doesn't impress.\n\nIf all you're looking for is standard draft beers, mediocre wings and sports, sure it'll fit that bill but it won't stand in any discernable way.\n\nWings are just average sized. Selection of sauces is good, the hottest is pretty hot but not extremely flavorful. I suppose it's just there to burn you twice, you know what I'm talking about.\n\nI won't go on promoting a bunch of local bars or chains locally that do the same thing with wings, beer and sports. Oh okay, I will; Hazelwoods, Native New Yorker, Zipps and Tweakwoods all do some/everything better than Wild Wings.", "type": "review", "business_id": "ZJxs1L4oMhX9GW00ty0aAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yDiCXOYJbbi5k1clMwo9Tw", "review_id": "jycfGaeb7QPZfDg-YScNUA", "stars": 5, "date": "2012-03-26", "text": "Great groceries and fantastic service, keep it up.", "type": "review", "business_id": "ZhMlXLXuZf5z7lxunHk2ww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gw2sxzQrSTo6NpMSp_gVNQ", "review_id": "VCVLFApxJL4_MRv1nVhdJQ", "stars": 4, "date": "2011-01-19", "text": "I stayed here with a group of friends for a 1/2 marathon that we were all registered in. The room that I had faced the In and Out burger but I didn't hear anything. The pool area is small but if you want a bit of sun I think the best place is in the small grassy area behind the HUGE wicker chair. Grab a lawnchair or toss a towel down and enjoy. \nThe biggest complaint I had was that the Bar didn't open until 5 p.m. Early, I know but it was my weekend!\nThe room itself was modern and clean. \nThe bathroom was nice, and so were the complimentary magazines.", "type": "review", "business_id": "OkxO2FoKMxVCFzskLeI37Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mmZk-DnajPfiCDu67CWrKg", "review_id": "rBmMnP_H0tiSiL_galXD5w", "stars": 5, "date": "2012-08-31", "text": "If you really care about your health and want a sincere doctor who honestly cares about his patients and believes in his practice, then this is the doctor for you. I am a 40-year-old woman who couldn't be happier with the care I have received and how I feel after seeing Dr. E for the past year. I recommend Dr. E to all my friends and family and the ones who actually listen have been very happy with their care as well. \n\nIn response to Lisa N., it is possible that you are one of the few people who is immune to Botox and similar products, which is to no fault of the doctor. I too was extremely unhappy with subsequent treatments given by another doctor only to find out that no amount of the toxin would ever be effective for me because my immune system works too well. Ironic, isn't it? \n\nYou should always do your homework when looking for a new doctor, especially when you know exactly what type of treatment you are seeking. For example, if you are simply interested in the HCG diet program instead of overall health and you had been elsewhere for less money then likely that place is a better match for you. \n\nWe don't live forever, but we can live better while we are here. Take control of your medical care, it's your body and therefore your decision. Dr. E at Carefree Health Path is a great place to start your empowering journey to health.", "type": "review", "business_id": "HhJbJjdw8vuxYT4QpLIW6Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "au98D2-Op6Dq0ShyYAgjBQ", "review_id": "LHZpeTeAHibycnPbQr3exA", "stars": 5, "date": "2011-05-15", "text": "When we first moved to Ocotillo the first thing we did was peruse yelp for the best local eateries. Mikado was one of the first things to splash onto our radar and we had to check it out. Luckily for us Mikado is literally a 2 minute drive from our house. :)\n\nThe restaurant is low-key and I like how the lighting is a little dimmer than usual to create a more mellow ambience. The servers are all very attentive and kind which makes the eating experience so much more enjoyable. \n\nSo anyway, on to the sushi! I adore sushi rolls with some kind of crunch in them which is why I love anything tempura. The Big Shrimp Tempura Roll is my favorite and it could stand alone as a meal because it's so ginormous. They stuff 3 large tempura shrimp in there with avocado and cucumber then drizzle it with eel sauce. LOVE! And while I'm on the subject, Mikado has mastered the art of frying up a perfect tempura. Their tempura shrimp is super crispy, isn't greasy and always fresh out of the fryer. The Crunch Roll is superb, the salad dressing is addictive and the chicken noodle udon soup is delicious. Their prices are great and you still get so much food. How can you go wrong? If you're within a 20 mile radius of Mikado you need to stop by.\n\nAlso, I can't say this enough: Please support your local businesses! They depend on your patronage!", "type": "review", "business_id": "cfy-C6XNFt-F-dCQfK7EDQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "2bGMR2P9ZWR-mJn5aEE1EA", "review_id": "OWzyKHPnTuE7PAGFvlbv9A", "stars": 2, "date": "2012-10-20", "text": "One word: bleh. I know my Thai food and this place was about 1 star, an extra star for the nice service. I came here with my mom, uncle, and aunt and being my first time, I opted to order my usual pad see ew. We also ordered coconut fried shrimps, the mango papaya salad, tom yum soup, and fried rice. Honestly, the best thing about our order was the coconut fried shrimps. It came out hot a crispy and flavorful. Everything else needed help. \n\nThe fried rice was too overwhelming, it tasted like too much fish sauce and was very salty. The Tom yum soup was a little bland and we had to add fish sauce to it, and the pad see ew was way too darn spicy for being a \"mild/medium\". It was full of this unpleasant pepper flavor that I definitely wasn't use to in my pad see ew as well. My aunt and uncle think that the place hired a new head chef or something, because since they're regulars, the food this time around was definitely not worth the bill. We ended up to-going 60% of the food untouched so that we can tweak it ourselves at home to our liking. \n\nAll in all, there are other places around town with better food - 1 star. 1star for the friendly staff.", "type": "review", "business_id": "shCdCHRbnY5FTMJbWl-myQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3xVwlgww4Pw5wc_twrfOwA", "review_id": "clAGZ3XaBhvZ6cJFO3aTEQ", "stars": 4, "date": "2010-07-20", "text": "Ok so there are plenty of great reviews of this place already but I'm going to throw mine into the mix as well. \n\nThe food here is fantastic, but if you've ever walked in there around lunch time you could probably figure that out from the crowd. Everytime I come in I try a new one and I'm always happy with it, I've yet to come across a pasty I didn't like here.\n\nWhen it comes out you might not think it's that much - but portions are deceiving because the food's pretty heavy. My main tip to you is only eat half and then pause to let it sink in - take a break to drink your beer or something. I always force myself to save the second half and it makes me much less sleepy when I head back to work after lunch :) Plus it makes great leftovers.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5XZ9gYbA-L4GXWQlMtftjQ", "review_id": "V_FNJIEmKCvkq4n4om1NJw", "stars": 1, "date": "2011-04-23", "text": "Went with three others. My first & last visit. The menu did not properly describe the item and instead of a bell pepper dish, I got a port dish. It was dreadful. The other three I went with were not very happy with their meals either. The restaurant was extremely noisy. Not pleasant at all & terrible food. Will never go back. A big disappointment. They can't even describe their items properly so you never know what you are going to end up with. They called it a pepper dish and it was a pork dish. The sauce apparently contained pulverized peppers. Are they stupid? I should have trusted my instincts & not the commercial. It's a third world country. They can barely afford to feed themselves. They have no history of cuisine. I wouldn't waste my time and money on this place again.", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "uEG5uD9wMJixGWxaq34IEw", "review_id": "_i9Z-qlRbg9sOnwRKGtKFg", "stars": 4, "date": "2008-07-08", "text": "The quintissential downtown scottsdale club. As snobby as it gets, but in an endearing way. I talked to Ice T and Coco at this club one time. For some reason I felt like I always was on the verge of punching somebody when I was in there. This place reminds me of the club in the beginning of American Psycho, reserved tables, the whole deal.", "type": "review", "business_id": "zff_uz9k60UwNi3etN39uQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "1S7XdhbZWR17Wy4TBsIzaw", "review_id": "YiSRd6J0XkY7oAcFPNPLAQ", "stars": 4, "date": "2008-01-12", "text": "Thanks to Fry's, I felt like I was on vacation today as I traipsed around in the rainforest with the Aztec computer geeks. There's something just cool about walking into a snake's maw to listen to stereo equipment. The outside is just as lovely to look at.\n\nNow as far as the store itself...\n\n...the cafe was a joke - out of cream cheese for their bagels. Who runs out of cream cheese by 10am on a Saturday? Coffee machine broken...don't they sell those things? Couldn't they just 'demo' one from off the shelf?\n\n...it felt like at least half of the workers knew what they were talking about - which is actually (maybe even sadly) better than some electronics stores I've been to. They didn't try to talk down to me because I was young or a girl.\n\n...prices were cheaper for some of the items I looked at\n\n...no restocking fee for returned electronics.\n\nSo in the end, the unique look of the store boosted it up to a four, silly enough as that sounds. It was refreshing to be in there, and my bullsh*t radar didn't go off as loudly as it did when I was in the Baseline location. Good thing I wasn't rating just the cafe, they would've gotten a two.", "type": "review", "business_id": "iWlaj4R-2BTsWR7PwL90BQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BFi1UUUHJwnu0EJIWHhNRg", "review_id": "MJAPmVi4w5kqPoTDbHv4gA", "stars": 4, "date": "2012-11-11", "text": "I was blown away at the sheer NUMBER of books and magazines. Then when I looked at the prices- that was even better. There were books I found that were brand new and had no markings or tears, and they were still at half-price! Not to mention, if you're nerdy like me it has the 'old book' smell throughout the store. Reminds me of a rainy day in the library. My only complaint is the grumpy employees.. I get it- your job might be boring, but at least smile and return the \"hello\". As for their product knowledge, where everything is located, etc... I cannot complain. I will be back again and again. Let's just say books are an addiction of mine, and I don't want help quitting.", "type": "review", "business_id": "9Mg5BoR-u0zPfcInLUcpaA"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "uM-Vc-yM0Gr3MJRfZPeIwA", "review_id": "-ymlEhTIjPx3Bdf7-mmP-w", "stars": 5, "date": "2010-07-13", "text": "Loves the recent Cezanne show. In fact I've seen it twice in the last week. I need to find out more about who curated the exhibit as it is very fine. The Oriental collection is very nice and soothing. \nThe Downtown Chamber Group gave a wonderful concert in the great hall on Sunday. I wonderful and unusual program of saxophone and harp. I think it is great to have music in the galleries. I liked the musicians being on a platform. since the room isn't banked one can see the performers.\nA few things I'm not so crazy about:\nThe great room is this awesome space for large art. Sunday I sat and looked at it for several hours. You know, not such great art. I find the Terrill boring and the other pieces uninteresting.\nThe cafe never quite lives up to its promise. My lunch companion barley touched her lunch and the waiter never asked why or offered a box.\nEnough grousing I love the place and go often.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "WF-a95N2wBbqtaKpeCLS5Q", "stars": 4, "date": "2011-03-24", "text": "Great organic fruits and veggies....very clean store...great customer service....fantastic deli dept....fresh fruits and veggies (non-organic)....and outstanding deals every week. I know some people say it is overpriced a bit and that is true to an extent....but the sales ad that comes every week is a must see and you will always find plenty of affordable items. Eat, Drink, and be Merry my Friends!!!", "type": "review", "business_id": "hHE4OHAc8dONTV8QsGLbWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OMC3DRyGrDbq-oMtdRAH8Q", "review_id": "Rz-ge0_MhJAVarqOBGAIlA", "stars": 4, "date": "2009-09-07", "text": "If you are a beer snob, stay at home trying to make it yourself. If you enjoy a decent local beer in an old chandler building with a nice atmosphere give this place a shot. The owner used to be a brew-master at Four Peaks Brewery which is a local favorite in Tempe. \n\nI am not a fan of the over-the-top Hops that a lot of folks enjoy. A few of the offerings here have a bit too much bite for me. The red ale was my favorite until they changed the recipe and over did the bitterness. Right now I get a Sun Devil Ale when I go in and it is pretty good. They will bring you a taster if you ask and will explain the offerings to help you choose. \n\nThe food is always good. It is a bar so don't expect 5 star cuisine. The fries are great and the sandwiches and salads are good as well. I haven't been disappointed with a meal yet. Even when busy service is decent. Enjoy the beer, watch the game and let it all unfold.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "V0bPYyqjQ0-PZpl2vxU2VA", "stars": 3, "date": "2010-06-29", "text": "Decided to check this place out for lunch yesterday. The decorations were very modern and I really liked the outdoor atrium you can eat in. I ordered a burger and wifey had the Hot chick sandwich. My burger was good, nothing to write home about but good. The wife enjoyed her sandwich, all though she overlooked the fact that the guacamole was spicy. I think this could be a great place to come and get some wine and appetizers, looking forward to coming back on the weekend! Late open kitchen is a bonus!", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TX6A15C9djhFfHpAUAOLmA", "review_id": "Aocud5UUS8z_S-Dh3EMZbw", "stars": 1, "date": "2012-12-09", "text": "Not only was the music the worst I have ever heard the wait staff was as annoying as ever! Like a wanna be swanky place in a strip mall that smells like fish and plays horrible music. Food was so so but over priced for what it was.", "type": "review", "business_id": "GDmue1oJaem9ilywDtA4_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7eahxWN26Zfcv7Ta3DkH7g", "review_id": "T-PlEklG_M3ZQ1l4WKqm_A", "stars": 4, "date": "2007-10-26", "text": "My boyfriend and I ended up spending a long weekend here because his grandmother had a week expiring on her timeshare with no one to use it. So here we were!\n\nWe aren't golfers. We came to see AZ. We were in an interesting spot to do it ... we spent most of our time in the Superstition Mountains and Phoenix and then did one day trip into Sedona. So from a proximity perspective, if you are interested in seeing more than just the Grand Canyon, it's a good spot.\n\nRegarding accomodations, we really liked our little condo. Although the furniture selection was a little random (like why have a love seat but no sofa), it was definitely adequate. The beds were comfortable. And we LOVED having our own private hot tub. We discussed several times that we should maybe install one at the house!! It was just great to get in a soak after a long day of touring.\n\nWe also really liked the restaurant on site. There's not much to choose from in terms of eats in Apache Junction but the Kokopelli's was really nice. I had a delicious salad with strawberries, blue cheese, and grilled chicken one night and fish over pasta the next. Both were fabulous. There was live music and the service was really good. We met some super interesting people and so the conversation was flowing. It was just a really enjoyable place to spend a night under the AZ sky!\n\nOne kind of crazy thing that happened was there was a huge mud slide that wiped out part of the golf course and filled the parking lot. We couldn't drive into the resort for a couple of hours one evening as a result. Luckily, they reopened the kitchen to serve us since we were late arriving. I'm just glad we got locked out, not it!", "type": "review", "business_id": "_kL4evOcRHHEquKnndUTkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-B8fZ8mrYkP6jt4SqSNivw", "review_id": "Q8B7GQTmz68kPKqvU73HHg", "stars": 4, "date": "2010-01-02", "text": "As the mom of 2 kids (a 3 year old and a 8 month old) it seems to be very difficult to find a nice place to eat that is very comfortable and casual- and somewhere that people don't give you evil looks and comments for bringing kids (Carraba's). We have been here a few times for lunch and the food has always been good. Not great, but pretty good and inexpensive. I will say though that their french fries are some of the best I've had! I would much rather come here than IHOP", "type": "review", "business_id": "VNJMoQAzJFWBYclBOSDPOA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "BKtc3zuVpiRwuSt6E0j5mA", "stars": 5, "date": "2011-04-06", "text": "I've always been partial to Harkins Theaters because they have the best seats. I used to say, \"You know what would be the best theater? AMC experience, with Harkins seats..\"\n\nGuess what.. AMC Westgate is the birth of the spawn of just that. I love this place. It's frigging massive to start with and has everything inside it. Not to mention an IMAX. The experience is great and the chairs are super comfortable.\n\nNothing really more to say that it's a theater. I do like the new Stubs card that they put out. Yeah it sucks that you have to pay for it, but it's only $12 a year. Not bad for all the free stuff you get.\n\nAnother cool thing about this theater is the location. If you are going to grab dinner/lunch before hand, ther eis a ton of places to choose from.\n\nNice work AMC on making a great theater!!\n\nOhhh big big big heads up. Be sure to see a movie before Noon or ya get to pay nice big money. that's probably the draw back. I'll still give you 5 stars.", "type": "review", "business_id": "K13dEvg4uimGQ1OcE5vGZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_ZXThWhgLL94mAXOntLDXA", "review_id": "_qpRLiuEEXY8DB9tiC9DSQ", "stars": 4, "date": "2010-11-08", "text": "I did not expect to enjoy a meal inside a mall. \nI stopped here to fuel with fish and sake as shopping is such very hard work (sarcasm!). I sat at the bar and the sushi chefs' company absolutely made the experience. \nI have certainly had better sushi, but the experience as a whole was great and I recommend stopping here if you happen to be shopping at the Fashion Square and need to recharge.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ayHh6jD9Fpb-PDDp51gTwg", "review_id": "7u3iR9MelrWy6QWBaqaDYg", "stars": 3, "date": "2012-04-01", "text": "This place is fun for drinks. Although, I wouldn't suggest eating here... My friend and I had the grilled cheese and tomato soup. I love tomato soup - even cheap stuff in a can... but what they served us didn't even resemble soup at all! Without any exaggeration, it was literally pizza sauce. I hope it was some sort of mistake... but who does that? Puts straight pizza sauce in a bowl with a spoon? I had been drinking all night and was starving and still couldn't eat it. That being said, the staff here was great and the service was really fast.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "FWGwWnjBrrQroO3RWRC7gQ", "stars": 3, "date": "2012-01-16", "text": "Once again craving sushi/Japanese food but since Iron Chef didn't met my expectations I decided to go elsewhere. Eastwind was farther away from me but I decided to try it out.There was no old fried food smell, already a plus. I can't eat raw fish yet so I usually ordered eel rolls. Also got the shrimp and veggie tempura. The Caterpillar roll was not my favorite. I hate when they fill the rolls with fake crab, plus it didn't tasted freshly prepared. The tempura on the other hand was delicious! Light batter, not oily, with 5 pieces of shrimp and several vegetables. Gyoza was pretty good too. I'll definitely drive a little farther for Eastwind.", "type": "review", "business_id": "3N__CAwM5VZOhRKmxMtImw"} +{"votes": {"funny": 10, "useful": 15, "cool": 14}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "BUYweJ7ca-HZRv95Ged5iw", "stars": 5, "date": "2009-10-11", "text": "I attended a UYE (Unofficial Yelp Event) here and I have to say that Haus Murphy's pretty much wowed all 20 or so of us!\n\nIt has taken me over a week to get to the review. I was still reflecting on the German meatloaf, red cabbage and Weihenstephaner Hefeweizen.\n\nHow do you say, \"Damn that was good!\" in German? I have new found respect for German cuisine thanks to Chef Hoffman (not sure about the spelling there).\n\nThe fubar of Yelpers (I am pretty sure that is the correct term for a large gathering of Yelpers) dined on the patio which is a great space. Service was very good throughout the meal.\n\nThere was quite a bit of sharing going on and although I don't remember everything I tried, it was all really good.\n\nIt was great to see so many friends and meet some new Yelpers like Norm!", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "_Jb-l7CZH6qcDUjzk_CEdg", "stars": 4, "date": "2012-11-26", "text": "Cevapi and Burek oh my!! Plus I got to hang with my fabulous friend Amra! Score! We wanted something extra good to eat after finishing our Mud Factor race on Saturday and lord knows I have been craving some Cevapi so off we went to Euro Bakery. It was already bookmarked as a place I wanted to try so this was a win, win in my book. \n\nEverything is made fresh to order and once you walk in, you can smell the fresh baked bread that they have made throughout the day. There is also a mini grocery store for you to buy items as well. My Cevapi (little beef sausages with fresh bread, onions and a sour cream like dip) came out piping hot and piled high. My friends Burek was huge (hmm not sure hot to explain so you will have to look that one up) and we both dived in like it was the last meals we would ever have.\n\nWill I come back? Hmm heck yes, but alas this treat can only be saved for when I burn off and absurd amount of calories so that I can indulge and not feel guilty at all. Hmm Cevapi and Burek = one VERY happy woman!", "type": "review", "business_id": "0Llpzg85OhJF2CqJPU08Ew"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "d9t-5lNTjoqFoevQ1sk5jQ", "review_id": "w-n_6zj3FQ-pvh7hc9gcaA", "stars": 1, "date": "2009-06-28", "text": "Avoid this einstein's at all cost. I have been laying in bed puking for over 12 hours because I ate at this garbage dump. The reason I know it was them? My girl is laying next to me puking as well. And the only place we both ate together less than 24 hours ago was there.\n\nThe incompetent staff that happens to grace this poorly operating business cannot tell the difference between a large drink and a medium and take over 10 minutes to make two identical sandwiches.\n\nAfter we got home and ate them, fast forward 6 hours and we are both puking our brains out.\n\nThe most common reason for this to happen is when an employee does not wash their hands after getting feces on them. Then they touch my food and I get sick. Based on the staff that day, it does not surprise me one bit.\n\nI would recommend starving over going here. Never again. Now I will go speak to Ralph on the big white telephone some more.", "type": "review", "business_id": "G27f2NAq05CkMaoiXBPY_A"} +{"votes": {"funny": 8, "useful": 12, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "K3I63jIcqoAc8425XClp_A", "stars": 4, "date": "2008-11-28", "text": "La Bocca was on my radar since it opened earlier this year... I cannot believe how long it took me to finally get there, but it was worth the wait. I went with a group of four on a Monday night. (1/2 Price Bottles of Wine from 5pm - close on Mondays; needless to say, we took advantage of that special!)\n\nWe let my friend Anthony do the ordering since he'd been many times before and he also has a vested interest of sorts... We started with two salads: the prosciutto, zucchini, and artichoke (my favorite) and the goat cheese and pear... also quite tasty. You can't go wrong with either one. We then had the truffled harvest mushroom and the spiced pepperoni pizzas. Yum! The thin crust and the combination of fresh ingredients on both of them were perfect! \n\nAlong the way, owner Julian Wright sat down with us to share some wine and conversation - he's fantastic! While he was completely engaged in talking to our group, I could tell he was also constantly surveying the restaurant to make sure all was running smoothly. Every patron that walked in the door received immediate attention including our group. Our waitress was sweet and I liked that she gave some attitude back to Jared when he was joking around with her.\n\nWe had a blast on top of a great meal and ended up staying for hours enjoying two bottles of wine (maybe more than that as I lost track) during that time. One of them was a La Crema Pinot Noir, but I think we had a merlot as well and maybe another Italian Red. I guess I'll have to go back and take notes next time. Another reason to return will be to try the brusschetta - it sounds amazing. \n\nI have a feeling it won't take me as long to return to La Bocca as it took for me to get there in the first place. You can't go wrong at La Bocca if you're looking for pizza, salad, wine, and all in a warm, welcoming atmosphere. Check out their other daily pecials too - I know I will!", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "JlYyxi5NDlX911vCt5iojw", "stars": 5, "date": "2010-10-14", "text": "I LOVE love LOVE Coffee Bean. I have been in love with Coffee Bean for years. I am so bummed out that they are not all over the place like the \"S\" coffee store. \n\nOne of my favie drinks are the Pure Cholocate Ice Blended with whip cream and Green Tea Latte. The service is always friendly, perky, and fully of sunshine.", "type": "review", "business_id": "BdSY-BHmH0BCCv47mOOS0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mJYDA1COTEzU6LI-sZIgsw", "review_id": "jX2VkpXLdidPJ0cFTMVnJQ", "stars": 3, "date": "2010-05-19", "text": "Really like this place, wound up there one night by accident, as my friend and I got disgusted with the lousy service at the \"other\" bar in the same shopping center as Tony's.\nThe place had a good vibe, jukebox playing, people shooting darts, we felt totally comfortable, and found a table, to sit and catch up.\n Service was really good, The bartender, while waiting on another customer, made eye contact, to acknowledge me, and said she'd be right with me. I like that in a place, ---nothing worse than standing at a bar waiting to order drinks and feeling invisiable.\n\nMy beer was good and cold, my friend ordered a vodka and orange juice, and commented that it was a nice \"stiff drink\" - \n\nWe both said we were glad we stumbled upon Tony's and will be back.", "type": "review", "business_id": "HKr_xfeyrv2Bh7urZsQEVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tpOgdsqWcrlFyQSrRIua-g", "review_id": "nOXl-dm2KwapAistQ_2gjA", "stars": 4, "date": "2011-10-18", "text": "Way over priced but great food", "type": "review", "business_id": "7XfT2w9Eb2Xbu-iP4xulPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RzpxUogiBp00GtyeMAQ8GA", "review_id": "xepfl0ovCnIcMN9OATS8PA", "stars": 5, "date": "2011-11-23", "text": "Very good place to eat.. I go here atleast 3 times a week and the owners are very good people, they always interact with their customers. I pretty much know the owners and everytime I go there they already know what I want. I highly recommend this place.", "type": "review", "business_id": "vjhOjeoKL_TGPXON6XDEsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xz1w0h7wDI22IZKi-CnrHA", "review_id": "M02b5MTdhiOneijWtSOFdA", "stars": 5, "date": "2011-10-09", "text": "Taste buds went CRRRAAZZYYY!!\n\nFinally made it to the much raved about Pizzeria Bianco and happy I did. It was absolutely delicious. Thankfully we made it at a good time where we didn't have to wait at all for a table (YES!). I ordered the Margherita and was deliciously pleased. However, my sister opted for the Biacoverde and boooy was I jealous. It was awesome and my favorite by far.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mj_Y09zsj3hmOKCfYpM1uQ", "review_id": "7nkaTMfgRf5_Ug_FA9rTzw", "stars": 5, "date": "2011-11-14", "text": "Dr. Ford is great. She came highly recommended and I can see why. Very focused and caring assessment of my Dog. Bring your animals here, they will be taken care of properly.", "type": "review", "business_id": "DLFsfN6SWtjZnE2ZbV9S_Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "bWn6P7aSu9lipoVOe8VkUw", "stars": 4, "date": "2009-03-26", "text": "Mosaic is a gorgeous restaurant in North Scottsdale, near Pinnacle Peak. I imagine that they have magnificent views of the desert and mountains when it's still light out. The dining room is pretty small, so I'd recommend reservations. If you can't get reservations, I'd caution against dining in the lounge. Although they serve the full menu there, the lounge is actually in its own room and usually pretty empty, so it would detract from the whole experience. The service here is pretty close to perfect - these are professionals, the kind of staff that's trained to stop and step aside as you walk past them, even if they're not in your way at all. The gourmet cuisine here is great - not as inventive as Binkley's, but just as well executed. The menu changes often, so I can't really recommend any particular dishes, other than the amazing Thai shrimp and coconut soup, the one dish that's always on the menu. I would not recommend ordering their foie gras, if it's on the menu. It was the only dish that really missed the mark. I've only had foie gras one other time before, at Picasso in Vegas, so I don't have that much of a basis of comparison, but the foie gras at Mosaic was way inferior to Picasso's phenomenal foie gras (my understanding is that the best foie gras should be firm, smooth, a little buttery - there's here was watery and blubbery). However, that was the only \"miss\" of the night, out of our many courses. For a special occasion or a splurge night out, you won't be disappointed by Mosaic's beautiful restaurant and surroundings, excellent staff, and wonderful food.", "type": "review", "business_id": "45Vj6a0LX4B2a7loTJyb4g"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "GAhcw5tBlDxuXAclqz6GVg", "review_id": "4QdAw2rjR5JHMKPmnYH_yg", "stars": 4, "date": "2009-05-01", "text": "Shame on me for not writing a review sooner. Dined here with three other friends during our Spring Training trip at the end of March. We had to make reservations about 2 months prior as well. We arrived for our 6:30pm reservations and the place was packed! The bar was flowing, both dining areas were filled with people and the entry area was bustling. \n\nAs we waited for our table, Muhammed Ali walked in with his wife and family members. That was a huge highlight. This place is rich with sports memorbillia and players often eat here after a game. Only odd thing was our waitress told us after that the Brewers Manager was also dining in the next room and that we could walk over there if wanted to. I am a super fan of baseball, but even I know the limits of someone's personal space. \n\nWe each ordered a few appetizers, bottle of wine and some salads before our entrees. I ordered the 10 oz ribeye and it was delicous. We ordered a side of mac and cheese and it had lots of flavor. This place is fun because of the sporting atmosphere, fans, players, coaches, etc. and it's walkable from Downtown Scottsdale. \n\nI'd definitely go back here again next year. For all the ladies, this place is a must visit for some great eye candy.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "_2oYcAukTIaexAnsjUo9tg", "review_id": "_OR2oO7bjDtTQ_b1H3Dnmw", "stars": 5, "date": "2012-02-26", "text": "Everyone point and laugh at the nerd reviewing a convenience store.\n\nOh yeah? Stuff it. Like donuts? Check this out.\n\nGet in your car and drive here around 3AM and try their donuts. Had every single donut place in the area, and nothing can hold a candle to the QT donuts. \n\nMy guy begrudgingly takes me here every couple of weeks for the donut stake out. It's so worth it. \n\nThey get hard during the day, so seriously - 3AM or bust.", "type": "review", "business_id": "1HqmlbLCoFBEF_V77oJTnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "K8tXedC2NMBEZ8p77zg23Q", "stars": 1, "date": "2006-08-23", "text": "My co-workers and I refer to this place as \"Pizza n' Ants\". The staff will be happy to serve you with bare hands, right after using the till. Also, as the nickname suggests, there has been a noticable insect problem. \r\n\r\nAs if that could all be overlooked, the pizza isn't even good. If you are in this part of town, go to Z Pizza or Slices for great pizza instead!", "type": "review", "business_id": "3Srfy_VeCgwDbo4iyUFOtw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "oFKT8GB3NxkhDiEx4Xy49Q", "stars": 3, "date": "2010-06-28", "text": "First of all, I have to give Dos at least three stars just because it's Dos. I mean did going to Dos make me feel old, yes, were there some interesting people there and not in a good way, yes, did I spend more money than I wanted to, yes, but all in all you always have a great time. Nothin' but laughs. The giant jenga didn't suck either. \n\nDos Gringos is a staple among the youngins, as I like to call 'em. In college, one will totally fit in, however, now'a days it's a place meant solely for people watching. And boy do you get an eye full. \n\nDrink's are cheap, tacos are good, and the bathrooms aren't as scary as you would think. Go! Have fun, get drunk.... but don't expect anything classy.", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cX8yJPjbJFrmSGsEUpSwtw", "review_id": "2uryep6-TL9KdAuvSq0ieg", "stars": 5, "date": "2013-01-05", "text": "My daughter and I really love it here. I always walk in without an appointment and I never have to wait more than a few minutes. The staff is very friendly, talented and professional. Highly recommended!", "type": "review", "business_id": "eP0zC_-MxPkM3ft8XbQeag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rWhikEEkC8iuc5DFlTHXVA", "review_id": "wQUNcLxr-0wVQZzVMJYnKw", "stars": 5, "date": "2009-03-26", "text": "I am giving Ajo Al's on Shae five stars because I've been there regularly for about two years and it's always good. Now let me point out two issues: I'm not a huge fan of Mexican food, and I only get the Tacos Del Mar or Ono Fajitas which are versions of the same thing. The chips are fresh made and great as are the salsa and hot salsa (more peppery and hot). For appetizers the Chili Con Queso Dip and Nachos are good sized and tasty. For a friend and I this location is somewhat out of the way but we still go regularly. Try it.\n\nDetail:\n\nLike I said I'm not exactly a fan of Mexican food. I like the Americanized fast-ish food chains: Qdoba, Chipotle even Baja Fresh. I've eaten at actual Mexican restaurants in Mexico and had home cooked Mexican fish tacos and tamales. It's growing on me but these are not tastes I grew up with.\n\nI have a friend who loves Ajo Al's, she lived next to it or something. So I pretty much got dragged there about two years ago and I liked it right away. Like I said, I've only really eaten the fish tacos but they're the best I've had. The fish is good, the sides are good, idk what chipotle cream is but it's good, good service, the chip lady is nice, all the wait staff have been good.\n\nIt's typically not crowded but sometimes your go there and the place is close to full. I've never waited to be seated though. I've never tried the bar area. The water seams better than tap water...a dumb observation but I usually drink water rather than soda so I mention that. They give you a pitcher of water on seating and refill if needed. The chips and salsa are endless and excellent. Service is always good.\n\nTwo friends typically get the Pollo Con Queso and swear it's the best ever. I've had it as left-overs and it's good but not really my thing.\n\nThis is the only Ajo Al's I've been to...no comment on the rest of this chain.", "type": "review", "business_id": "QxEUzbLfCTXF6gHWJegWgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SfDerUF2N2Hx9D84VrXpug", "review_id": "6DaBsuW5csc00HOZRHxH_w", "stars": 1, "date": "2010-06-05", "text": "No no no...do not go here, now I'm not talking about the fact that the place looks crappy, or the bathroom is suspect but the fact that the food is nasty. It was completely empty when we were there and that should have been some indication on what to expect but no I am a glutten for punishment. I ordered some tacos and didn't even finish the meal I ended up just tossing the food and still got a tummy ache from what little I did eat. This place is definitely not a good look", "type": "review", "business_id": "mQ6_slsCd8-c8WFNtESnqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "fhV21-QB6n402-J9vR-7cQ", "review_id": "zPaFcO7Z34dXbxNoLhtWZg", "stars": 5, "date": "2009-07-12", "text": "Wow, Chill rocks. Frank and his lovely wife, the proprietors, are fantastic. The prices are super low and the gelato/sorbet is awesome. While we were there, a little kid dropped the top part of his cone on the ground. Frank replaced it for free. \n\nThen he gave us a sample of the fat-free, sugar-free chocolate sorbet, which made me want to buy a pint of it... after I had already eaten a baby sized Mango/Pomegranate mix. Yum. \n\nHow about this: Go have dinner/lunch/breakfast/whatever at Pita Jungle, then walk across the parking lot to Chill for dessert. That sounds like the perfect evening.", "type": "review", "business_id": "tV97OH1LK00kUcX0Jig-sQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "d1Z1i2nIW8hI7wl3XLFxzA", "stars": 5, "date": "2007-02-23", "text": "Ok, technically this is not Mexican food, it's spanish and puerto rican food, but has a lot of the same kinds of spices and is WAY, WAY, WAY good.\n\nfirst off, they have plaintains, which look like bananas, but taste like potatoes. if you've never had them, try them here, yum! this is definitely the place to go with a big group of peole and share a few different dishes. good luck, because the menu is HUGE. the dessert menu alone has two dozen items!\n\nseafood like ceviche and paella (supposed to be to die for), tapas, tamales, soup, salads, egg dishes (not breakfast),...the list goes on and on and that's just lunch!\nplates top off around $12 for the most expensive for lunch, but you can easily make a meal out of two apps.\nthe mojito is their specialty, and they have i think a dozen rums to choose from, along with sangria. on the last monday of the month, every bottle of spanish wine is half off- you cork it if you don't finish it. i can't give this rest. a more glowing recommendation!", "type": "review", "business_id": "vlKuU9Jvo88EuaYQodElQw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "fn1TYXMG0_sE28xzMTHsAQ", "review_id": "qAp8dZmAMV-AjKj3wQazaA", "stars": 5, "date": "2008-06-16", "text": "Durants ROCKS.\n\nI love the red velvet walls.\nI love walking through the kitchen to get to the restaurant.\nI love the garlicky cheesy bread that probably has a million calories in it.\nI love the steaks.\nI love the decor.\nI love the bar.\n\nWe all ordered different items when we went here for dinner one night, and all raved about what we had. I don't think you can go wrong, no matter what you order. It's amazing, delicious, and very very unique.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "qb3S29JP8CxHo8ubyRB0HQ", "stars": 2, "date": "2011-06-22", "text": "I don't get what people like about this place. It's generally crowded with rushed service and the food has yet to impress. I've tried at least twice -- maybe I'm ordering wrong but I really just don't get it...", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dUDzN6zl3j12zhByOrnF9Q", "review_id": "L5tu22TsPaI6pgVkg9fSpQ", "stars": 4, "date": "2011-08-22", "text": "They came to my house the same day that I called which was a pleasant surprise. I'm glad that I didn't have to wait a week for them to fix our fuse box.\n\nWith labor at $65 per hour it's pretty affordable depending on what you want them to do. Be aware that there might be two guys coming out to you though- so it'll be $65 per hour x2.", "type": "review", "business_id": "YhBFM3xy2G6DQC2VKXVkTA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wY2VLg5yidDK2VIbDamcuA", "review_id": "YESh1HscrQFt5wNJIvJHGw", "stars": 4, "date": "2010-09-28", "text": "What can I say...the food and drinks were delicious and the atmosphere is sexy yet comfortable. But the real stars of the show where the staff! Everyone was exceptional, funny and charming: a dashing maitre'd, a handsome and truly helpful waiter, the chef was warm and happy to explain their signature Chinese oven even though I'm sure he has to do that a thousand times a night and the support staff...wonderful. The water ninja is not to be missed...this guy sneaks in and fills your glass with such speed and accuracy that water tension alone keeps the glass just slightly more than 100% full. This guy amazed us with his serving mastery again and again while his plate clearing partner in crime delighted us with a quick coin trick. Wonderful!", "type": "review", "business_id": "uI4YqMarUpchI4I3ZWgOGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "n75WJuU8ygsDzEGdE7SvIw", "review_id": "MS1fSscL6tfKdRAK3ngBuA", "stars": 4, "date": "2010-03-19", "text": "Perfect location for breakfast before SF Giants spring training game. Also, Perfect location for drinks and snacks after the game. Enjoyed 3 meals in two days and will recommend to all my friends.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "bZFRqP7s0Vszxeu8_IwYow", "review_id": "lVdmJGrvqQeioCREdEMOyw", "stars": 4, "date": "2008-05-22", "text": "The first thing that sticks out in my mind was the service. Our waitress was all smiles and incredibly adorable!\n\n\nEdamame was perfectly steamed\n\nSushi was tasty\n\nSalmon Teriyaki was delicious\n\nsake and kirin washed it all down\n\nprices are reasonable and the atmosphere is calming.", "type": "review", "business_id": "9VYZA4vEKtT_SXHj-ZK_1Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "-VAF4FC-WKd39_t_RV8XdA", "review_id": "QP_NUNRJyydZBabTsvYDQQ", "stars": 4, "date": "2009-01-10", "text": "I'm rating this place as a Music Venue and Bar, not as a restaurant. \n\nUB's seems to be hosting a slew of Metal shows over the next 3 months, which is good to see a place open it's arms and bar to the metal community. \n\nAs far a heavy metal venue goes, its run of the mill. It has enough room to either mosh or sit in the booths along the back wall. \n\nAs far as the bar, the prices seemed slightly on the high side, especially for the \"dive-ness\" this place exhibits. \nTheir beer menu had 4 or 5 typos on it, just something to chuckle at, such as Rolling Rook beer, O'Dools, and listed Fat Tire as an import. (Cuz Colorado is SO FAR way). \n\nLuckily, beer and metal go together, so people tend to pay. \nThe old man in the Bolo tie checking ID's was definitely a good sport.", "type": "review", "business_id": "qgVS6sBe7JNEI8otg0Y3dg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A9qIKLrClq0vxVElqMZf_Q", "review_id": "i2efFNVtrViQA2HOMijt5g", "stars": 4, "date": "2010-01-18", "text": "I love this place.Their italian beef with hot peppers is a must. I have also tried their sausage and pep sandwich which is just as good.Their prices are as good as you can get. So if you're hungry stop in & get full!!", "type": "review", "business_id": "Tk2dSL0TwQeI_zNJmb442A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mp8QDJwRlZE8xxyFRVGoKA", "review_id": "gr_HGDcjPeJEHHKk87Pt1g", "stars": 1, "date": "2013-01-02", "text": "I had the misfortune of stopping by this establishment today with two things, a skirt and a cloth handbag. I asked the woman at the counter if I could have some very minor stitching done on a cloth purse. She looked it over for about 3 seconds and said 'Oh no I don't see how this could be repaired'. (what I wanted sewn were two little pom poms attached to the cloth strap that were loose and I wanted them to be stitched on there tighter). Not a difficult task. She then told me that she could maybe 'send it out' and have it stitched but it would take a week or more to get it back. WHAT??!\nI then asked her about the skirt which I wanted cleaned and/or pressed with the tags attached (because I'm selling it). She said no that the tags would be destroyed in the process. \nSo I went to another dry cleaners and asked the same things for both the skirt and the bag. I was informed that what I wanted done would be no problem and that I could pick it up the next day.", "type": "review", "business_id": "G6suEhxjMV8cdwSI-oQIZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZWgo8S-QugczbH2BN2GL6w", "review_id": "9t24cezR92wSo-i0R3Eq4Q", "stars": 5, "date": "2011-07-16", "text": "I love this place. The Las Vegas roll is amazing however the crispy California roll isn't that crispy. Their sake is in fact bomb and the restaurant it always a good time. Their prices are reasonable for sushi places in Tempe and the service has always been awesome. If you've got a party bigger than 4 though, call ahead.", "type": "review", "business_id": "PlcCjELzSI3SqX7mPF5cCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "og8YUfd6U1eaZO2wrrBjeg", "review_id": "pX6ZLIZcRbLreYMRfLL_qw", "stars": 4, "date": "2011-09-11", "text": "Not a bad theater. The staff is friendly and the sound is ok.", "type": "review", "business_id": "CD6LrK1fb-imps49u_cD8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GNCh2HzSVYsS12o76qtUiQ", "review_id": "Ch0mWyWE724wyQYumh4IRg", "stars": 4, "date": "2011-05-25", "text": "If you are in need of any kind of battery Batteries Plus is the place to go. They'll test your current battery for free, upon request, and I haven't found a battery that they didn't carry. They'll even replace the batteries for you in watches for free. I take all my watches to them rather than to a jeweler who is not only going to charge me for a battery, but will charge me for their labor as well. I even buy my regular batteries here because often times they are way less than at the grocery store.", "type": "review", "business_id": "aDHziRAigxuE6RIdH5csnA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9-HYfV6NlnYgGk8s0wywJg", "review_id": "0r-3lTahS8BjNvVlCnzn7Q", "stars": 4, "date": "2010-11-15", "text": "Have been to Pita Jungle twice before. Feel the wait staff do a good job. Always friendly and good service. Best hummus in town. For s dollar more get the bigger plate of hummus but ask for extra pitas (39 cents each) and some extra cucumbers and tomatoes (99 cents). Not a fancy place but certainly someplace you want to try out.", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oUGmoziFCwNi2oUHB54SGg", "review_id": "sLmWtcpY0CtBlbBhyLsiAQ", "stars": 5, "date": "2011-12-27", "text": "Some of the best coffee I've ever had -- and I lived in Portland. Insanely good selection & product. Tanzanian peaberry off the charts. Owner gets beans from multiple sources to ensure that his selection is the best.", "type": "review", "business_id": "4eFIVmbeCvJGCrhzmd-VYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uvQ40rims7sY3O5yl70caw", "review_id": "3jviFxMFlJtC-thrvzH-Dg", "stars": 5, "date": "2012-11-10", "text": "One of my most favorite coffee shops! Location for sure. Soooo cute here. Inside and out. The patio is beautiful and you feel like you're in a diff city for a moment. Coffee is pretty darn good. Not the best, but good. And the menu is great. I am a vegetarian and they have many options for us. The treats are amazing. The staff is amazing. And they always seem to play great music too. Love this place. Wish it were not so far away in Mesa...", "type": "review", "business_id": "bSFuJDDTj6BeKypgBNFBGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "chECojA5tp0NzBxMgQIfgQ", "review_id": "oikMvKmReasmH57Ckc7Yww", "stars": 3, "date": "2011-08-28", "text": "I had heard they were spiced just right but for me it was too salty of a burger. It was also expensive considering a I had a burger, hot dog, fries and a shake. Not a favorite but wouldn't mind coming again.", "type": "review", "business_id": "R1kKjAO5kZO6d0gQGqrvGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "_LEQt7oTVjiaXyVHK_MM7g", "review_id": "IjiVIKST3c4L1Kd3Jj19qA", "stars": 3, "date": "2007-11-07", "text": "Meh..not particularly memorable.\nI've eaten at this location and the one by ASU, though I like this location better. I would probably only eat here if I was walking by and I was starving. \nThe cookies ROCK though, I like that you get one with your sandwich. And they have my favorite flavor of Jones Soda (Sugar-free Black Cherry) which kicked ass. \n\nWarning: The roast beef sandwich (Overture?) comes with horseradish sauce and it is hot as a mother. I like the spice but it was almost unbearable. My nose pretty much turned into a snotty waterfall. \n\nGo to Opa Grill next door instead.", "type": "review", "business_id": "S8R5c7-plWe3NtmijYAJvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eEo1W07PkjR0jLRkMF5m1g", "review_id": "oi5KXTTdCrryJS8OetlORg", "stars": 3, "date": "2009-03-31", "text": "Now that this place is under new management it's gotten better. i went once before and it was kind of nasty, now it's cleaner and has a better selection.\n\nIts hard to find edible chinese food in Phoenix, this one is one of the better ones now. I think it's renamed Fuji Buffet. It even had a sushi bar (not a sushi eater, but it had one) and everything was as fresh as can be expected. Large shrimp and chicken selection, and pizza and things for the kiddos.\n\nStay away from the desserts tho', not so great.", "type": "review", "business_id": "t30Ua_mSiClnpBqud84ygw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yYiz0euR3HriuBlGhan46A", "review_id": "iej6KUhOh7PPyJm7O5Whbw", "stars": 5, "date": "2011-04-08", "text": "I love this restaurant. Very cheap, very clean, the food is sooo good. My mom and I eat there once every couple of weeks, sometimes twice once a week. The staff is very friendly and attentive. The environment is very comforting. I recommend this place to anyone who loves cheap but tasty Mexican food.", "type": "review", "business_id": "qgJZUKNVY-LbGKk6XEP3JA"} +{"votes": {"funny": 3, "useful": 2, "cool": 3}, "user_id": "X-EV080aSeC5V00YBwxR1Q", "review_id": "knulGcZvJ3vdJ3cpXK68RQ", "stars": 4, "date": "2010-03-03", "text": "Lam's Seafood Market is a rare Asian gem in the Westside.. sort of like me ;-) haha just kidding. \n\nI love this place! Great prices, fresh seafood :-)\nThey also have a wide assortment of Filipino products which is a MUST for my kitchen. \n\nThe parking lot is a lil shady and could use some covering for the potholes.", "type": "review", "business_id": "vNqZefvRyaqfa_QJEd4wXw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "7LNMaPogQ66p50tOXTHw9g", "stars": 5, "date": "2011-03-02", "text": "I'm giving this Office Max five stars for convenience, friendly service, competitively priced products a stocked shelves. \n\nThis Office Max is a great in and out shop. On one side there is the detailed supply store and on the office side, there is a complete copy center. It's open until 9 on the weekdays and they don't make you feel rushed if you get there at oh let's say...8:50. In fact, they are helpful! They walked me around and helped me find the random items I needed. The copy center staff was also very friendly. \n\nThis Office Max has your complete supply of office items but their prices are very reasonable! I purchased the same item at another shop that I did here and it was significantly less expensive here. \n\nSo on that note, I end my review on Office Max but I will report back with any new findings.", "type": "review", "business_id": "JksZiHb_Vj1tYRTpuTg-uQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "ZXenZaKVMZ8FVOLe1Sbbhg", "stars": 4, "date": "2010-11-26", "text": "I'm a sucker for sweet potato fries! Any place serving this yummy delicious ingredient deserves my love. I think I can survive off this for 30 days....any reality TV show takers...huh..huh? Well, over food was really excellent. Gourmet burgers are to die for aren't they!? Sorry Carl's Jr...your $6 burger -- really? I had the number 3 here - yeah sounds like a secret Chinese sauce, but better! My burger was cooked just right - juicy and medium-well. The service was good and the atmosphere tries to re-enact modern hip fine dining. Though you probably wouldn't know the difference after a few bottles here :) - enjoy!", "type": "review", "business_id": "UIfORCz28cEGMr_9p0eJ5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JxytDdximBz9C1phOrd7pQ", "review_id": "EpIQBIBC_pSLHL5iPymguQ", "stars": 5, "date": "2012-10-22", "text": "Tasty Thai- is. But it could also be called Delicious Thai. And the service is always great!", "type": "review", "business_id": "wyxsEFTGC1MuadT2SpTE3g"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "UG0gkwl621U29BWpgSYRlg", "review_id": "M6f3hxIjgi8B4HQxm4stbg", "stars": 4, "date": "2010-07-22", "text": "In 2006, I returned to the P A M after a long absence. I went to see a locally produced exhibit, (Judith Leiber,) which I thoroughly enjoyed and so I renewed My Membership. Now at the time I was spending a good deal of time with My new granddaughter, Jade and started to bring Her to the Events and Exhibits. Her first time was to the Cowboy Artist of America and at the time She did not speak much, Yet by the end of the event, She could say; \"Cowboys!\" (and the Artists always make an effort to, Draw Upon Her.) Since then I have seen Rembrandt, special guests; The Tudor Tailors, Diego Rivera (with Frida Kahlo), Author Michael Blake (with His Son) and much more. As far as being, Good for Kids?! My granddaughter, Jade's love of going to the P A M has made Me a bigger fan than ever. ~Please View Pictures~", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JGGXT447a5zVfanaIUb8uQ", "review_id": "Mdz_bofx87BWzCZsbW2DkQ", "stars": 4, "date": "2012-07-08", "text": "I am glad I found this place but it is a bit far from where I am staying at in Phoenix. Their dumplings are really good, spicy cold potato salad was super good and refreshing but their green onion cake was a bit thick and starchy for me. I prefer Taiwan's thin and crispy green onion cake. Really clean inside and it is fresh, full of Asians!", "type": "review", "business_id": "jgWAgT7LWPTf5wju9Q-kiw"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "VHlEeajmQg6oVBHYmaoUvA", "stars": 4, "date": "2010-02-22", "text": "3.5 stars\n\nFast friendly service and the food was good. \n\nI ordered Hung Pao rice bowl, while it was not huge and loaded with things it was plenty for a lunch size. The food tasted good. \n\nWe ordered it Sunday evening for dinner. Orange chicken, General Tso chicken and chicken fried rice. ALL with white meat. While I really like the fact you can get all white meat, it was a little dry. Perhaps the way it was sliced and not in small cubes? All the food was good but not the best I have had. \n\nI would order again.", "type": "review", "business_id": "pa_Ft6pLLWo-w_iopBsu0g"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "ovvWjSlkAt2lUeaFajvOvg", "stars": 4, "date": "2011-04-02", "text": "Imagine this, a swanky new Scottsdale restaurant that has down to earth prices, fantastic food and attentive top-notch service? Sometimes it's hard to believe that this kind of place even exists, but its no mirage, the Spotted Donkey Cantina is everything that I had hoped and more. \n\nStarting with the service, there are details that just go to show how the owners and management are in tune with training of the staff. Everyone we encountered was pleasant, seemingly happy and genuine. \n\nI have to tell you though, when it comes to eating at SDC, you'll be in good hands, Chef Patrick Bolls hands to be exact. His background includes years working with local chef-lebrity Robert McGrath, which has paid off in chiles. The southwestern influenced menu is well balanced with just a little bit of something for everyone. I mean who doesn't love the addictive crunch of La Canasta Corn Chips ($6)? Along side are 3 different salsas including a smoky charred tomato, a deeply flavored red chile orange and finally a tomatillo green chile salsa. All were surprisingly mild though these seemed more about flavor rather than scorching your face, that'll come later.\n\nThe \"Shooters\" ($8) seemed harmless enough. A chubby jalapeno pepper stuffed with cheddar cheese and bacon then encrusted with a coating of tortillas and deep fried. At fist bite your mouth is filled with a creamy spurt of hot cheese followed by the pork-tastic flavor of bacon. Then it hits you, the burn from the jalapeno is scorching but a quick dip into cilantro buttermilk sauce helped cool the flame. \n\nIf you're still trying to cool the flavor induced fire one of SDC many salad choices will do the trick. The Spotted Donkey \"Chop\" Salad ($12) is prepared table side with you controlling the amounts of roasted corn, cucumber, queso fresco, cilantro, warm smoked bacon, and avocado. Then tossed in a luscious jalapeno buttermilk dressing and served with crispy flour tortilla chips on the side, it cools and satisfies. Composed into tidy rows of tortilla crusted chicken breast, avocado, bacon, chopped egg and manchego cheese and dressed in chipotle vinaigrette, the dinner sized Southwest Chicken Cobb Salad ($12.50) was almost big enough to share. \n\nThe center of my universe, at least for a minute, was the char grilled Big Ol' Jack Ass Angus Burger ($11.50). This is a seriously tasty burger, topped with cheddar cheese, caramelized onions, avocado, jalapenos and horseradish mustard, fries on the side. Continuing with the meat parade, a sizzling iron skillet filled with Fajitas ($16) was placed in front of me. While you have your choice of chicken or shrimp, the idea of beef tenderloin mixed with sausage, sweet onions and tomatoes seemed like the hearty choice. Along side are the usual accompaniments like guacamole, salsa, crema and warm flour tortillas, what was unusual were how quickly I scarfed these down, delicious. \n\nWhile the space feels decidedly modern and upscale there wasn't one moment where I felt uncomfortable or out of place, even with burger juices running down my face.", "type": "review", "business_id": "VKNl2-aF4n1x7lPVyU-Mag"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "ZrUZtLgLOn15v2NIZl-oKQ", "review_id": "BArcyDITvBmLuE-v83SJLA", "stars": 3, "date": "2008-11-18", "text": "I'm so glad this corner has been revived again--though I never got to try Willo House. The biggest plus for me is that this place is only like a 7-minute walk from my work. I met a friend here for lunch a couple weeks back. I had their walnut chicken salad. The portion was pretty good for the $8. But the chicken had a tuna-texture I wasn't expecting. But the greens tasted fresh and there was just enough dressing for my preference. I haven't tried anything else beyond a chai latte which was pretty standard. Some of their pastries look good but I wonder if the muffins are from Costco. \n\nI give this place one star for atmosphere. Each seating area is decorated a little differently. Love the stain glass and the blown-up photos of spots around Phoenix as table decorations. This place really does feel local and one of a kind.", "type": "review", "business_id": "4sW8Z6NLXLRkruSKSKUEUw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "FPRVeUVWhiUe-hvDOlHhgQ", "stars": 2, "date": "2009-08-19", "text": "Monday night attract a bros and hos crowd that thinks they are better than everyone else with a few cool people mixed in. The bar is small and there is nowhere to sit so prepare to stand all night. I will only come here on a Monday because there is nowhere else to go.", "type": "review", "business_id": "qcylQLL-fXdFHrdXC2jZFw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "POHQEtLi_u1MkysI7Hn0DQ", "review_id": "AlinOQjaTdEFrW6tun1Xhw", "stars": 2, "date": "2010-01-02", "text": "This was just ok. I got the steakhouse salad, which came with four pieces of meat the size of quarters. I'm sorry, but that's no $13 salad. I had to send it back, because I asked for the meat to be cooked through and it was rare.\n\nMy dining partner said her pizza was tasteless.\n\nIt was very loud.\n\nIn all, it was too much money for what we got. We won't go back.", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "QofDFNqDBV3fdVb8hhwDXA", "stars": 2, "date": "2009-09-09", "text": "What a lame store. The employees didn't say hi to me once and were totally unhelpful. Their dog food selection is decent but their dog toy selection is worse than PetSmart. Too bad too because good quality pet stores are hard to find. There has to be something else around here and I would go out of my way to find it.", "type": "review", "business_id": "Rfp9HX_RhdcMwiKA8Wfl4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B4K5ruafil9RSDiTIL-1Bw", "review_id": "SJWeFwy7y0d9oEoYNj2vAw", "stars": 5, "date": "2010-03-10", "text": "If this place only served chips and their salsa bar, I would still give it 5 stars! As a salsa and hot sauce (they're different, people!) fanatic, I tend to judge Mexican food joints based on their quality of salsa - and La Condesa ranks high! Last time I was there, I counted 10 different salsas and 2 or 3 different condiments (limes, onions, etc.). They offer a wide range of salsas from their exotic strawberry salsa, to spicy chipotle, or creamy cilantro. It looks a little silly with 8 little cups on salsa at your table, but you have to try them all! \n\nThe horchata here is also 5-star material. Don't be a cheapskate - shell out the $4 for it! Its giant, it will make you happy. And, when you're done with it you can eat the fruit and nuts - the drink keeps on giving! \n\nI have been here twice and have only eaten the veggie tacos, 2 of them are enough to fill me up and they are very delicious! I must say I am not a huge fan of their rice and beans, which seem a bit bland to me. But, the tacos, salsa and drinks all make up for some plain 'ol rice! \n\nI was very happy to see a decent sized crowd here on my most recent visit and that La Condesa is applying for a liquor license. This place needs to stick around for awhile!", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "cTQOEKBVSqrsyVl2Ssyolg", "review_id": "yUk0l8oOpN5UpzSKswNslA", "stars": 4, "date": "2008-02-24", "text": "Sports Chalet is the most complete sporting goods and outdoor store I have ever seen. They have a vast selection of sports equipment and exercise gear. Their Mountain Shop has a very good selection of climbing and camping gear. Although the gear section is not as extensive as REI, the prices are slightly better. And they do SCUBA. \n\nI took my PADI course through a dive shop before I found out about Sport's Chalet's prices. They are FAR less expensive than any dive shop in the valley when it comes to the PADI open water certification courses and dives. The dive instructor at the Tempe store, Dan, leads the dive classes and is highly competent. (I give the dive program five stars).", "type": "review", "business_id": "9Woei-yx8GFIOeZ3eo_ElQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_GVAV2LjUWEs9fGjslex_A", "review_id": "XsFCbidWcFmpcHrJFSolWg", "stars": 4, "date": "2012-04-16", "text": "These guys have some yummy donuts and the prices are great. Their donuts seems to be more authentic... they feel more hand made than machine made. I'll be back.", "type": "review", "business_id": "Xq1FtLSV54Spf-HfONc1aA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "X_m9AySkNyZCsnxCuYZ2qg", "review_id": "12bupTNyycNPXhf9JXXyzw", "stars": 5, "date": "2011-03-26", "text": "Tarbell's is top notch in all areas! Food quality, service, ambience, amazing! I recently took ten business associates there for a meeting, and I got nothing but compliments the next day on such an excellent choice of restaurant! \n\nDefinitely try the Spaghetti & Meatballs as well as the Mac N Cheese, and even the Pizzas are to die for. And the burger too! You really cant go wrong here. Warning the deserts here are HUGE (yet amazing). One desert is enough for 2-3 people!", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X6GycoLMzQaocXBANVnB4Q", "review_id": "EGehz7FYTyT1LVpkIxfBvg", "stars": 5, "date": "2009-03-05", "text": "Amazing cheesesteak.\n\nOne mile from my home is Corleone's. About 15-20 minutes from my home is Capriotti's. I never go to Corleone's. I go to Capriotti's all the time.\n\nThe workers here are nice and the cheesesteak is terrific. The large is 20\" I believe, so if you're ordering for yourself and in no mood to eat until you have a stroke, get the medium. Also, try it with the hot peppers. It adds the slightest bit of spice without becoming too overwhelming.\n\nThat's really all I can say about this place. Wonderful cheesesteak. I haven't tried anything else because the cheesesteak is too good to pass up when I make the drive down there. The patrons rave about the other sandwiches, though, so I absolutely would not be afraid to try something else. There's maybe 5 or 6 tables inside and 2 outside? so be prepared to order to go if you arrive at prime dine-in lunch/dinner hours.\n\nDo yourself a favor and go to Capriotti's. Help this place attain the reviews and ratings it deserves. The fact that there's only 8 reviews is criminal. I understand it is in the heart of the suburbs, but it's worth the drive.", "type": "review", "business_id": "STv-ED3M2xmRFMSvQbWGaw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-UyNlq8TwNTY0faXlAgJOQ", "review_id": "TMgkOvM1iBpkiZADCZdT2g", "stars": 2, "date": "2011-11-18", "text": "Two stars for bad service and, damn, I have to the tell the truth, a lousy appetizer. Had the braised leeks to start, which appeared to have been made less of leeks and more of a white cheese that I can only assume had been allowed to congeal into a rubbery mat beneath a heat lamp. It was literally impossible to cut into bite-sized pieces, and was tasteless besides. \n\nThen, after at least a half an hour wait, pasta with chanterelles. The shrooms were great, and I have to say I enjoyed fennel for the first time in my life, but the pasta was enormous in size and there was an awful lot of it.\n\nBut one of my friends had the fried green tomatoes, which were wonderful, and another had the brussell sprouts, also wonderful, and the butterscotch pudding dessert with the nutmeg whipped cream was simply divine.\n\nThey were very busy (our reserved table was 20 minutes late and the seats were still warm when we sat down), so I'm thinking they were just run off their feet. I'd give them another chance.\n\nOh, and a delightful Arizona sauvignon blanc. I'm told they serve only Arizona wines, which is kinda cool..", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d1zJj49Q5ikgvqQX0534RQ", "review_id": "0Z8DEk7NkirK1k88GMaerQ", "stars": 5, "date": "2011-01-10", "text": "I have been exploring more of the park recently. I want to add that the National Trail (which is almost 15 miles long and goes from one end to the other) is a real gem. The views on this trail are outstanding, and on the western half, you will find far fewer people than on the eastern half. Highly recommended.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B7McDYDrf4R814OT3xwInQ", "review_id": "d8_hIfyaU8ldWWBPr5yQKw", "stars": 4, "date": "2009-04-08", "text": "We popped in here for a brew while walking around heritage square.\nThe waitstaff is very friendly and attentive.\nNote: if you just want a brew - you can order it inside!\nWe went with a local Hefe and it was great!\nThe options for noshing look great, but we were headed for dinner so we didn't get a chance to try them out!\nSee you there soon!", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kG8jkVFgOAOq6Ht6RvAjEQ", "review_id": "w3HePDmt2PJEinnJiB50fg", "stars": 4, "date": "2009-05-11", "text": "Went with a party of 10 this past weekend for my best friend's birthday extravaganza. We had teppanyaki and our chef was terrific. He was very funny, inviting, and did a great job with everyone's food. We had a range of dishes from seafood to chicken to very well done steak and our chef handled it all with his silly little giggle. \n\nThe happy hour prices can't be beat, but man once you get out of happy hour, the drink prices are STEEP! We had drinks, appetizers, sushi, and then teppanyaki. The calamari was chewy, but the bbq chicken egg rolls are great. The drinks were yummy. I have no idea what kind of sushi we had, but it was pretty darn tasty too. \n\nThe only reason this isn't a five star review is that our server had the personality of a rock. If he cracked a smile, it might have killed him. We spent collectively close to $500 and I don't think he could have cared any less about us. Too bad too because it reflected in his tip and generally we are pretty generous tippers. \n\nWe'll go back to Sapporo in a heartbeat though. The people watching is tremendous!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QwO4LVCiPZZdg5URrQfYpw", "review_id": "qSLByPSKUzX4iDZ0X9GA7Q", "stars": 3, "date": "2008-11-29", "text": "Decent food at not unreasonable prices. The service is good. What is up with the hyper aggressive pigeons on the patio? The waitresses actually pass out squirt guns to the the customers to fend off the ever persistent waves of the foul fowl. At the end of your patio experience there is a certain sense of camaraderie shared with the other patrons.", "type": "review", "business_id": "4meJyPOhuAKzywUJTmu2hw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lfx2ppICJdX-rjT8Z8anXw", "review_id": "Sa8YTz2qAVH9FZHuWTVxuw", "stars": 4, "date": "2011-08-08", "text": "Went on a recommendation from my brother...I owe him a beer or something! Great, great food. The bbq is the best I've had anywhere, hands down. The prices are great. \n\nWe tried all of their sides while there (Group of 5, and you get 2 sides with each meal, so we did it on purpose). The potato salad was pretty disappointing, and is the only thing holding me back from 5 stars. The rest were delicious. DO not miss out on the BBQ beans or the mac & cheese (I know, \"mac and cheese--really?\") YES. Little bits of their smoked bacon mixed in makes it so, so good. Sweet potato fries were really, really good as well. I did not try the waffle fries, but my husband liked them & he is a waffle fry snob.\n\nHad the pulled pork, spicy sausage, beef brisket, ribs...all of it delicious. They have a wide variety of sauces you get to pick out & add yourself, or just eat the meat straight up.\n\nMy 12 year old daughter said that \"the food tastes like the air smells when you go camping\" (she was referring to that delicious smokey flavor...it was cute to me).\n\nThe place is small, but I don't blame them for that--you have to be able to establish yourself in this economy or you'll go under. Hopefully they will be able to expand someday. Driving out from Mesa won't be easy!!", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ykTUd9nIYDkQYhpntgcTVw", "review_id": "25bhK5sNDc2SheiNknIWKw", "stars": 4, "date": "2010-07-07", "text": "Chambord margaritas are killer!", "type": "review", "business_id": "24OmQWFTnbfGv-e8GyEMAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W_h8ZrIS6mpO4bCqdmbCZg", "review_id": "A7-GTixssxJw_WCwx0jNQQ", "stars": 3, "date": "2010-02-26", "text": "Been going to Pita since they were a take out only in Tempe. Fast forward 15 + years. They are getting too big for their britches. They started franchising, hired some corporate goons and that is where it started to fall off. \nThe chicken has always been great but is faltering. There was never any better hummus on on the planet until they added all the red oil? Be very careful of seafood. I love the seafood dishes here, absolutely fantastic, but they have made me ill on more than one occasion. I was even hospitalized once from the shell fish.\n I have some good friends that are still managers so I go back occasionally to see them. They are not as thrilled either. Too bad. All good things come to an end. This was the best unknown gem in Arizona for years.\n\nUPDATE. No more red oil! Pretty solid but not what it used to be. Lentil salad still kicks butt.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "vAbAUUNnbl236hKAFPk25g", "review_id": "EH1uGYFPiksUOCMc_MtvIQ", "stars": 5, "date": "2012-02-08", "text": "I have been going to Physical Therapy for several weeks working on Plantar Faciatis (ripped tendons in the foot), I was not getting enough massage to make much progress, I switched to Massage N You and they focused on my calves and now we are making good progress on healing. They had the right touch, pressure and listened to what I needed. Going back for more...", "type": "review", "business_id": "5TqcNDDrx2MKBBG_1cm2Jg"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "RHX2qpUTOv2usuckZIil8Q", "review_id": "mRtpQtc1CDnFvNaQf7D_Jg", "stars": 3, "date": "2009-06-14", "text": "FEZ... The two times that I went it was in the afternoon on the weekend. Both times, I was able to enjoy a great lunch with my sister and cousin and then again with my sister. The two dishes I liked were the FEZ burger and the Casa Blanca Chicken. The berry shortcake was good, however the water from the strawberries sort of killed the whipped cream and the shortcake (biscuit) was very good.\n\nOverall the environment during those times were peaceful and quiet. The staff offered advice on the menus. The price a little high for my wallet but I would definitely come back to splurge with great company in tow.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Z0_C4HRVvkLkyEsVGGMnkg", "review_id": "2qjP7DdoQaH92LIArCJ8Kg", "stars": 4, "date": "2012-12-19", "text": "A bit pricey, yet one of the best breakfast sandwiches you will find. Parking is slim.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Pl4fs0QWR8FbnVNCzqF9lg", "review_id": "RORa5kdk2IqCvaut7hCueQ", "stars": 5, "date": "2010-12-06", "text": "Recently bought a house and had issues with the speed and interference with the very many wifi networks around me.\nI decided to go wired so after I did a lot of research on how to get a wire from my second floor to first floor for the entertainment center. I bought a lot of tools from Fry's electronics and then after I started actually looking at what I had to do, I realized it would not be something I can do myself.\n\nI called good guys electric and they came over and ran a couple of wires using CAT6 instead of the CAT5 I would have used through the (nail-ridden) attic and through walls without any wires sticking out while they kept away from the electrical wires to prevent interference.\n\nI returned the tools and wire I got from Fry's electronics and that made the install very affordable.\n\nI'm very happy with the quality of my network speed now, being able to stream HD content from my server upstairs to the TV 200 feet away.\n\nAfter completing the network-wiring job, I had them install a new chandelier on a remote-controlled dimmer switch which was done quickly and works great", "type": "review", "business_id": "YhBFM3xy2G6DQC2VKXVkTA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "TqkBwRmoEgECElxeY0OgKA", "review_id": "oumDKass1inZmpqJhFAgiA", "stars": 4, "date": "2009-12-04", "text": "Nice bowling alley. I liked it alot and the staff was very helpful when we could not figure stuff out! The flatscreens with the score were nice and the animation of Pros were a nice upgrade. We came when their was a deal which was nice. Thursday- 5 buck cover and free shoes,dollar games, popcorn, beer, and hot dogs all night.... all I gotta say it\\s that I did my damage! The set up for finding a v\\ball was far nicer than any other alley I have been to! Very out of thew way and easy to find what you need!\nVery well lit alley with a fun atmosphere!", "type": "review", "business_id": "9mx6uFh_lSj6SOSW4fMWWg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "s7_1a2QHEQIoSffJvyPb8g", "review_id": "d5BGT5xkJcJO1H8QzOh-Zg", "stars": 5, "date": "2012-10-14", "text": "Been here twice. First time to fix a broken window regulator and the second time to get a checkup. All the techs have been extremely honest and I've never felt taken advantage of. I spent over a grand on updates to my car there and I could've spent more but again, they're honest and didn't pressure me to do everything that they said. It's family owned & run (they're originally from the bay area so of course I've got a soft spot!) If you have car problems, need a check up, or need a second opinion, they won't steer you wrong (pun intended).", "type": "review", "business_id": "quzkSK2uZEl-j_24vZmdMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WOvk1xbVe-F_FrZK5fEKQA", "review_id": "ZKB3gAS1nkx4PdcuQMbpxg", "stars": 3, "date": "2011-01-28", "text": "So following the previously reviewed experience I received a phone call from the Dr. who was very intent on making the situation right. He did all the right things to make sure that we were certain that he appreciated our business and was very apologetic about the unacceptable wait the day before. This is precisely how any business should react to a bad customer experience. The subsequent visit to complete the wisdom teeth extraction consult was very expedient as was our visit on the day of the surgery. \n\nIn short, the office resolved our very unsatisfactory experience in a very impressive manner.", "type": "review", "business_id": "WImuwx-hNX3_bbIAAFh7zQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IhcTLLWKS6ZiNyIX9oQQPQ", "review_id": "IuGDOM0RoT5mewUia4jGCQ", "stars": 3, "date": "2010-08-07", "text": "The food was good - nothing extra special. I like that you get guacamole with your meal and that they have lingua on the menu. I will have to go back and try it. \n\nThe things I did not like were they sat our group of 10 right by the server station. It's awkward to overhear their conversations. \n\nThe service seemed a bit lackluster. It was almost as if they were not intrested in a big group coming in. Our server was pretty good, but not overly friendly. I will definately try this place again and update.", "type": "review", "business_id": "Y293fHh5SZ0_9BZm4M6BCg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "q904xpWOBDPkHqxZm9YulQ", "review_id": "OVMAPAqvIsSEpqenBXwS8w", "stars": 4, "date": "2009-05-23", "text": "This place would have gotten 5 stars for the food, but I deducted for the decor. In my humble opinion you have as close to authentic as your going to get. The place is close to being considered a \"DIVE\" but hey, you don't eat the building and furnishings. I like the fact they give generous portions and you can buy their home made tortillas and other items in quantities to take home and prepare it to fool your guests....did I say that out loud? LOL.... when I was in Nursing school (not far from there) I ate there a lot...gain a ton, but enjoyed every delicious minute of it!", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "paVPYjJfqMXEOkXwhpRDKg", "review_id": "Q_GsLJ8_my78QyD2mZkv-g", "stars": 5, "date": "2011-12-30", "text": "This is like a little sanctuary on the West Side with a few amazing therapists. The LMTs are pretty different from each other so ask some questions before you book. It is so awesome to walk in and be addressed by name and with a smile. The owner is seriously the nicest lady I've seen running a business in a long time.", "type": "review", "business_id": "YWu5xMCsAkC9saRWAZAk1Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "vC-9ROCPBhWuXtMcBNeDiQ", "review_id": "FxvbsDJFS4zJ7M36SqBITw", "stars": 5, "date": "2008-06-03", "text": "Japanese chefs, top notch sashimi, affordable neighborhood sushi place! 5/5\n\nI'd lived in Japan before and this place can beat those in Tokyo! If you go to Hiro, you have to order their sashimi. We always order scallops sashimi, yellow tail, salmon, toro sashimi and uni (sea urchin)! Their rolls are amazing too. All sashimi comes in a big-fat-lap portion! Very fresh! The service is great too.", "type": "review", "business_id": "DxUn-ukNL27GOuwjnFGFKA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DfJ8B8T1fgNA6_ZT-aeUlQ", "review_id": "RK0roqYbTA-phbBM0EHUWA", "stars": 5, "date": "2011-01-08", "text": "I couldn't wait to get home and yelp this place. Five stars, too! \nAfter a (raw chicken) bad experience some 13 years ago, I hadn't been to Bandera until tonight. WOW! It was a GREAT experience!!! \nWe started off with a grilled artichoke which was fabulous! \nBoth of us had the Texas Hill Country Ribs which came with cole slaw (not your ordinary cole slaw) and the most delish matchstick fries. \nUnfortunately, I don't eat seeds and nuts (peanuts in the cole slaw...my husband loved it) but the very polite and wonderful server, Sarah, offered some other sides and I picked the braised red cabbage, which came with a little goat cheese on the top which was to die-for delish!! Home made wonderful braised red cabbage! \nThe entire meal was SUPERB! The service was phenomenal, and we were lucky enough to sit by the kitchen and see all of the dishes come out...they all looked YUMMY! \nI am so happy that my neighbor suggested Bandera's ribs, and will go back frequently as you can tell this place is run as a tight ship. Everyone is polished, polite and efficient! The food is an experience in perfection, and the service tip top!\nNext time, I'll take some pictures (if I'm not too hungry)... \nI don't think it's a shorts and jeans type of place but a dressy/casual type of place, if you know what I mean...\nREALLY EXCELLENT FOOD!", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "gJEJg1fPVDPnkdcVFbVlBQ", "review_id": "vrC4G-RulTSwLkKr6Pq9Wg", "stars": 5, "date": "2011-07-19", "text": "Located in the space formerly occupied by LGO's short lived Radio Milano, the north side of Campbell has been reincarnated as the Arcadia Room, a private dining facility operated by the aforementioned restaurant group.\n\nI dined here recently for the hubby's work dinner. Unlike so many private facilites that feel like a corporate conference room, the Arcadia Room is a cool, casual, restaurant - all to your self.\n\nWe had about 60 in our group, and had plenty of room to mingle at the sleek bar lining one side of the room, or gather by the open kitchen.The weather was blazing hot when we were there, but there is even a lovely little patio outdoors for guests.\n\nI think this would be an ideal location for any work or social occasion where you want an intimate atmosphere combined with reputable fare.", "type": "review", "business_id": "c4y8FA6XmGxxPhv0PNtU5g"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "7zJeiY6YGosO7jakhlK91A", "review_id": "WuclF2kuNH_5OBIXEhKkNg", "stars": 2, "date": "2008-09-21", "text": "This is not that great of a place. It's very upscale but the folks behind the sushi bar don't really seem to know what they are doing. It took forever to get a beer and a sake here. The worst part was the sashimi yellowtail. It looked like it was purple on the edges. If you want to play it safe and get a tuna roll, it will be safeway quality but nothing too special. This place is more about atmosphere and where to eat if you have a glittery scottsdale shirt you need to show off.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HnlVxMJUFt0senwi9mYzuA", "review_id": "vttwuoRKX_LJ1FOW0qCyEg", "stars": 4, "date": "2011-12-28", "text": "Love their salad bar, so much to eat, not as much as sweet tomatoes but good nevertheless! Only suggestion would b if they can get the labels on foods, bcs for people like me who don't eat meat its very difficult to figure out that there's tuna in one of their salads without a label! I almost ate it, so I hope they take this into account! My best is the whole boiled eggs though :)", "type": "review", "business_id": "8kunNClZ1AD0Rj5bDiFdrQ"} +{"votes": {"funny": 4, "useful": 9, "cool": 9}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "N2q3TaeGPf-u4hbQOSZ13g", "stars": 4, "date": "2009-09-11", "text": "Since The Mission is getting ready to celebrate their one year anniversary, I figure it's time for an update. I went in for my first visit last November, shortly after they opened, and I've been in countless times since. The atmosphere is amazing, the staff welcoming, the food unique and tasty... oh, and the drinks go down easy too!\n\nThe Mission has become Jared's second home - he's there much more than I am! I go for an occasional drink or dinner. My favorite menu item is the tableside prepared guacamole. It's fantastic! I am also a huge fan of the white bean puree, the street corn, and the salmon. I wish they had some lighter options on the menu though - just a suggestion on behalf of those of us that are health-conscious!\n\nIf you enjoy Latin-inspired fare, for sure go check out The Mission... Or at the very least, go in for a drink and some guacamole. Look for Jared at the bar when you're there!\n\nI\"ll for sure be excited to celebrate The Mission's one year anniversary in late October. I'm sure it will be one helluva party! It always is at The Mission!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gvLzuWRhEyFcfF-RymhhFg", "review_id": "jIDokYgWG1ZlkdUrWIsq0A", "stars": 4, "date": "2012-05-21", "text": "So we have passed by this place many times. I've been into the Ace Hardware right next to it several times. Don't know how we have never seen this place. Fortunately we searched yelp for something new and gave it a shot. The street tacos are awesome. Looks like I'll have to go back for a carne asada burrito, but based on the size I saw (and what I've read), it's gonna have to be a one item meal! They're huge! I tried the street tacos to sample a few things...carnitas, pollo and pescado. All excellent. I would have to lean to the carnitas though. Definately going back!\n\nOnly reason it didn't get 5 stars is there was a kid sweeping and mopping the floor and we were having to get out of his was several times. Just kinda rubbed me wrong. And while I loved the music, it was a bit loud and I don't know how much it was there for the ambience, the customers, or the staff. Everything else about the staff was great. Friendly and positive. Mabe my next trip will kick it up to 5.....", "type": "review", "business_id": "lk-6NXfpSgvNw7zm0xtUVw"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "gJEJg1fPVDPnkdcVFbVlBQ", "review_id": "XHhgUe4mnwTU8hqZHk9ZMw", "stars": 4, "date": "2011-06-07", "text": "Mostly rave reviews on Yelp led me to Le Chalet, a unique little indie restaurant amid the strip malls and Super Targets of the West Valley.\n\nDespite the fifty-some-odd write-ups, I wasn't sure what to expect. I read something about an ice cave, live comedy, hanging man meat, and surveillance cameras, but despite these oddities what drew me in was the promise of expertly crafted crepes and the opportunity to see the chefs do their stuff on a closed circuit TV.\n\nLe Chalet did not disappoint. Sit in the front dining area to view the chefs at work in the open kitchen, or take a seat in the dining area by the bar where two flat screens showcase the action at the crepe griddles. The Bretonne crepe with ham, mushrooms, Swiss cheese, and a sunny-side up egg was superb, and I can't wait to go back and try the La Landaise, blinis topped with seared fois gras, apple, and balsamic glaze.\n\nI also tried La Potence (the \"hanging man\"), filet medallions served on a medieval looking mace, seared tableside with bourbon and served with a pineapple slice, rice, and some mayo-based dipping sauces. Thoroughly enjoyable, but next time I would opt instead for a cheese fondue or the melted Raclette plate with cured meats, which looked delicious.\n\nThe ambiance seemed a bit strange to me, but homey and comfortable. And yes, there is a sculpted ice cave for performances, The night I attended was slated for \"clean comedy\" and I made it a point to get out of there despite some morbid curiosity (I'm not an amateur comedy fan, and the idea of family-friendly comedy made me even more anxious).\n\nThe handsome server was very attentive and knowledgeable, and I loved the half-carafe option when ordering wine. I wouldn't classify Le Chalet as a \"fondue place\", where the experience often outshines the food; it's more of a casual cozy spot that serves up thoughtfully prepared comfort cuisine - all the ingredients for a lovely dinner out.", "type": "review", "business_id": "Az69nueCy94SVKkWaNNR0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "p4SNP70HYUpK_wXhRpIcFQ", "review_id": "6eiIToYaP7GXb4KZU8-ESQ", "stars": 5, "date": "2012-04-26", "text": "I love Tasty Kabob! Their food is always excellent, and I try to make it back there whenever I return to the Valley. I always order their chicken shish kabob entree, which comes in a generous portion that includes rice and grilled vegetables. The chicken is always tender, well-marinated, and equally well-seasoned. Their beef shish kabob entree is also very good. Try shaking a little sumac spice onto the rice and meat for some extra flavor, or just enjoy it as is. It's difficult to choose from their list of appetizers and side dishes, but their hummus is always creamy and smooth, and I love their shirazi salad. Their spicy beans dish, however, is, by far, my personal favorite, and I always make sure to order it. Just as important as the food is the friendly service I encounter whenever I visit. The couple who own the restaurant always make you feel welcome. Good food and service that makes you feel at home, what more can you ask for? Simply put, Tasty Kabob is one of the best.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "--65q1FpAL_UQtVZ2PTGew", "review_id": "vhzntcVEkAer_AYzkLs4Gw", "stars": 4, "date": "2010-08-03", "text": "Throwing the picture of Sheriff Arpaio on the wall aside, I really did enjoy the burger from here. After reading reviews, I decided to go with the sweet and spicy burger. It was just as good as the other reviews say it is. The burger was juicy and every topping on it melted together in my mouth perfectly. The fries were good, but they were just fries, nothing too special. The sweet potato fritters, on the other hand, were super tasty. They had a sound consistency and were loaded with rich flavor. It you like sweet potato fries at all you must try those fritters! All in all I had a pretty good experience here, and it's worth checking out if you're in the Arcadia neighborhood.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "qGT5H6MpoKn5_LlDlpCwPA", "stars": 3, "date": "2010-03-10", "text": "Dave's has a good BBQ sauce and reminds me very much of KC style BBQ and side's. I have eaten here a few times and found that the portion sizes are immense! \n\nService has always been efficient and no reason to complain about anything. I think this BBQ place would be the best option for a large group.\n\nIs this the best BBQ in the world? No, but I sure wouldn't turn it down!\n\nEnjoy!", "type": "review", "business_id": "sMO71vGV8wkKujOle3-v7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "NMz3gC5nOSbKZJG_UjpASg", "stars": 3, "date": "2009-07-22", "text": "I have been wanting to eat here since it opened and finally got the opportunity. The ambiance and service is excellent, however that was not the reason why I was there. I was there for the food that a lot of people have been raving about.\n\nI read somewhere that the hanger steak was their specialty and I don't disagree. I had a taste and it was indeed very tasty. And if I go back I will definitely get it. And at under $20 it is a steal. However, I ordered the 8oz filet for myself. It was cooked properly and tasted good but not memorable. The individual sauces that you can order on the side were also nothing special. And yes, the fries were just as everyone on Yelp said they were; good but just like In-n-Out's, but cooked a bit longer. The sides dishes were ok at best and were a bit on the smaller side. However, the potato gratin was amazing and better than I have had at any steak place thus far.\n\nWhile it is less expensive than Mastros/City Hall, I think that for a few extra dollars it is worth going to a better place. In my opinion, Mastros/City Hall have much better steaks and better/bigger side dishes. However, J & G does have a better ambiance.", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "BjwXX-sChcjx2E55B_7rXg", "review_id": "SYeNPJ-4E8X0Kuu1lxrQfA", "stars": 5, "date": "2012-05-14", "text": "Dim lighting. Fleet Foxes. Beautiful upstairs seating that almost seems secret. Band of Horses. Benches that are less cushy than you anticipate them to be. The Shins. Black board specials, just because they look cool. Beirut. $13 vegetable dishes. \n\nIntimidated yet? Fight through the angst. Once you take your first bite of food, all the hullabaloo will be well worth it.\n\nOrder the forbidden rice bowl. Tell them to make it vegan (the vegetables are usually cooked in a bit of butter)... after all, you're a pseudo-hipster for the evening, and it's fantastic. If you're depressed by the idea of black rice as your main carbohydrate, the flat breads are taste-gasmic. That crust... the things I'd do for unlimited amounts of that flat bread crust. Top it off with figs and ricotta, and there's no way I'm passing up a square or two... or seven. If you're still not sold on the idea of carb-loading, the salmon \"superfood\" is delicious and nutritious, and who's not into a little super(food)iority now and then?\n\nBut on to the main event... the chocolate stout cake + spiced ice cream + espresso ganache was the best chocolate cake I've ever had. It was just so damn... moist. There, I said it. Moist. Moist. Moist. Ew. But really, yum. If caffeine, chocolate and alcohol don't suit your fancy (wimp), the cheesecake in a jar was equally delightful. Cookie crust + strawberry compote + cream + cheesecake. Layered. In a jar. Who thought of that? Someone with adorable thoughts, that's who. \n\nAnd let's be honest, you've earned dessert. I mean... you ordered a healthy, vegan entree over the french onion cheeseburger, right? Right. Of course you did.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Is4eAXtc2oaUMZ57_QXP8A", "review_id": "n4rbpFifo6e6xOPr2TgLNw", "stars": 3, "date": "2008-02-16", "text": "Went here to meet up with LA friends during Superbowl weekend. The decor is pretty unique here and the bathrooms are quite the trip. Bartenders are ace, cocktail waitresses are good looking, and the music is a healthy mix of bangers and decent indie hits. Tip for the door guys there don't let in 6 dudes at a time, even if they are Persian dudes with tons of cash who want to buy bottles. Boo!", "type": "review", "business_id": "X7r9ogduV4JAaO_20nkZgg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VV3UzNU2D5OkDpwgxtoj7w", "review_id": "WmUCpGxZc0gU1XqQce8jfQ", "stars": 5, "date": "2012-11-17", "text": "Yes, it is a biker bar. And it is packed with them at certain times, especially weekends. I don't ride. But if you roll in on a weekday around noon you might not see any, and if everyone seems to know everyone it's because they are all friendly local folks. So if you're visiting Cave Creek don't assume the Hells Angels are there looking to kick ass Most of the \"bikers\" probably drive BMWs during the week. I stop in at least once a week for a bite. The food is the best bar food in Cave Creek and the service is awesome. I've been to every bar in town. Harold's , The Chip, Toad, etc. all are good, but The Hideaway is the best.", "type": "review", "business_id": "4pC4jMoanLySaOgGRwyXLQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "nTCt6CV-qx3lHsHIMJqizg", "review_id": "H1oJiN5CU3nRAbt1FtawrA", "stars": 1, "date": "2011-08-28", "text": "Tried a couple Tammie Coe cupcakes and a mini muffin two weeks ago... Unfortunately for them, I also sampled Ollie Cakes... No wonder Ollie Cakes, aka Urban Cookie, won Cupcake Wars and Tammie Coe sits in high rent selling pretty sugar disguised as a cupcake.\n\nDrive a few miles north, get whatever the special cupcake of the day is along with a Brown Velvet and Lemon, and save saying you enjoyed Tammie Coe for impressing snooty folk who wouldn't know yummy if it bit them on the butt!\n\nReally, the TC cakes were just cakes... No flavor, no texture, dry... And I can't say how impressed I was that the clerk shoved all my selections into one, tiny, flat bag meant for cookies or sandwiches! Apparently presentation and flavor preservation mean nothing... As their products now do, at least to me.", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "aCktH-ZuS2KwaScos8xNSA", "review_id": "9lvCdbf3fKr5O5bhvz90AQ", "stars": 1, "date": "2010-03-29", "text": "Just because this place is called \"Maria Maria\" doesn't mean they sell Mexican food. Their menu actually says \"Mexican inspired cuisine\" which should have been my clue to leave. The food is border line Nasty! \n\nThe restaurant is cute and sort of romantic but it's so loud in there that it ruins the \"romantic\" mood. I was excited to see they had live music until they started playing some weird pop music. Why would they do that in a \"Mexican\" restaurant? I wanted to leave but our waitress was no where to be found 20minutes after we finished our meal.\n\nI don't recommend this place for any meal! \n\nI have only been living in Scottsdale for two months but it seem that Arizona is \"Cougar\" town. The bar was full of them. I'm beyond annoyed with all this ladies acting like they are 21 wherever I go. I'm embarrassed for them. They dress and act young but with that face and hands who are they kidding besides themselves? gee.", "type": "review", "business_id": "KIgkwPEOxbfdeCk0ltycOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "M9cZwNoSKQDUVwO0R8UwIA", "review_id": "sPH0GRqMNOhp7IIxhK1M3A", "stars": 4, "date": "2012-07-18", "text": "Had the super burger and fries tonight... excellent! \n\nI like that while they do have some tv's on with sports on them... the house\nmusic takes front stage. Might be different on big playoff nights.\n\nAlso... the tequila thyme drink... delicious and actually had some \nalchyhol in it! Fantastic!", "type": "review", "business_id": "GHYOl_cnERMOhkCK_mGAlA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "YeK95nGGvYsssVHzcWpmkA", "review_id": "_jQYXSdXmVs1IWrld0jpLg", "stars": 1, "date": "2011-03-14", "text": "I work right across the street and a few of us went here for lunch one afternoon. I ordered a salad to go. As soon as I saw the guy grab shredded sandwich lettuce to make my salad I almost told him to stop but I didn't. I regreted it when I started to dig in and realized the lettuce was brown and yellow. Very disappointed. $6+ bucks for nasty lettuce tomatoes and green peppers. I ordered a salad thinking I was getting something like the picture on their website. I won't be returning here. I'll be passing on lunch next time the co-workers opt for this place.", "type": "review", "business_id": "1_43FZHx3P5D7X-CpIR9WA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "ydC7lfTH9PsDBxfPHo8ZEw", "stars": 4, "date": "2012-08-13", "text": "Things Evolve over time, so has La Condesa, There now is a big fancy bar and a somewhat different menu.\n\nWhat really matters is that the flavor, ans salsas are still here.\n\nI had a burrito with Mahi Mahi in it, it came loaded with spinach, mushrooms, cheese and rice. The cheese was a bit much but was still great at 10.59 with tax it should be.\n\nWhat really mad it great was the salsas. Everything from a peanut salsa, to a strawberry to many of the classic favorites. I really enjoyed the roasted peepers and onions salsa.\n\nYes the inside is small and the parking is suicidal when you leave, but if you need a flavor shot give this place a try.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KJ46NF0zN0lMDg6fhWrPdA", "review_id": "9JIIMd4KvnjBaHSOL8wsOA", "stars": 4, "date": "2011-11-14", "text": "Great food and friendly staff. The chips and salsa were very good. So were the chicken chimichangas. Great prices too!", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "2NpYVMsQeyg7rIOkSHvP6Q", "review_id": "qJJi0hlub1z7RuPooLYGkg", "stars": 5, "date": "2009-04-11", "text": "R.T. O'Sullivan's really hit the spot! The service and the atmosphere were outstanding. We were put into the back room which was perfect for our large group of 45 plus. The server kept track of everything even as people moved around and socialized. The food was wonderful. \n\nWe will be going back!", "type": "review", "business_id": "TwMfahsPHFnkLiqqvyalAQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "TWf1hVrosPKBgFHkoujoXQ", "review_id": "KTSW37UG6hvABl3-lLpWEA", "stars": 3, "date": "2010-02-16", "text": "Tilted Kilt is alright. I have been here a few times and what stands out in my mind is nice decor with many tvs, good beer selection, but crappy service and food. I am really big on service, coming from the industry for over 7 years, so when I get bad service, I get in a bad mood. The girls are pretty lucky they are hot because I don't think it would fly otherwise. The fish n chips I had were not good, obviously just poured from a bag, which is disappointing. I felt the server was really flaky and inattentive, she was sitting with a group of guys pretty much the whole time, while I was waiting for my napkins, then my malt vinegar, ugh. Then she came to tell us she was going on a smoke break and I don't think I saw her after that. All in all, I can appreciate a cute girl in sexy kilts (I was actually hired to work here when they first opened) and I love me some good beers and flat screens, but I will pass on the whole dining experience.", "type": "review", "business_id": "drqCrnSqtGffJ1z60aWkxg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "h8WBkAyR6fXKBChqmsXbkg", "review_id": "1K8lpoRO5UCXwPOoezpWtg", "stars": 3, "date": "2009-12-10", "text": "Bizarre location with good food. Don't expect an \"environment\". It's poorly decorated but looks as if there is a rockin karaoke setup there. Still, I liked it.", "type": "review", "business_id": "ggBkO170QkYZAezFGMKYjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J9u2d1P-nr937LGlZ3wmHQ", "review_id": "0hA3HG4cGDjEP4IFzIKVWw", "stars": 3, "date": "2010-09-12", "text": "Good fish fry place. I've also had there Monster Burger- delish.", "type": "review", "business_id": "tcxNX3YiHNbaobEpPFyOtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LuYDMWuZ51mMl32PVmsnpQ", "review_id": "9bJQt6514h9cg3xmxVDjLg", "stars": 5, "date": "2012-03-17", "text": "I have been going to Nails 101 for a long time, and I love them! I had a manicure done there about a month ago, and it lasted for 8 days without chipping! Love Nails 101!!!!!!!!", "type": "review", "business_id": "s1c4bXeV08ml2_iH4XLzhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "Ne_bcSSfG1hFPhw-ZnaYMw", "stars": 5, "date": "2012-08-22", "text": "I love Fuddruckers because I can put my own toppings on including gooey, melty fake cheese! Also, they have frings (a combo of fries and onion rings). Very tasty.", "type": "review", "business_id": "0m0KmAYGvC34MfwJIEgCEA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8ZepxUnCcLRZ0NAE-YVy7g", "review_id": "yLuHYUPAmoAWyXUw7hmQXw", "stars": 4, "date": "2012-06-13", "text": "If you like a juicy sub and you don't mind onions... Ask for your sub to be made Mike's way! It's excellent.", "type": "review", "business_id": "vA9dAPd9fQt_3HqZylKfVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kBlISlM0QgdkS_a15aRMkA", "review_id": "HLzVLxTmp0DUb_Dg8D42vA", "stars": 4, "date": "2012-04-14", "text": "Kudos to the manager for reaching out to make our next visit here better!! The wings still rank high in my book, alongside the buffalo chicken dip!!! Our waitress was super helpful & gave terrific service! Thanks for making our 2nd visit to Half Moon one which makes us want to return again in the future!", "type": "review", "business_id": "5tey93wPQOb7z6jOLJZ30w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "2FiNCj5rM3nF0qgaWf86Gg", "review_id": "AJ8SBbwlIAY05Ka2e2nshg", "stars": 5, "date": "2009-05-02", "text": "The food is fantastic, the staff is helpful and the atmosphere is comfortable. \n\nThe food at El Bravo just tastes better than the food at any other Mexican restaurant I have been to in Phoenix, regardless of price. The cheese is amazing! \n\nI love their flour tortilla flautas , crispy beef tacos, cheese crisps, enchiladas (I could go on and on). \n\nI really can see no reason to go anywhere else in Phoenix for Mexican food. \n\nI highly recommend El Bravo.", "type": "review", "business_id": "flUKBy7WHqYdfOrwU1A2SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rjsx6_pSqwl0zuiwa_tI2g", "review_id": "uuJ5SQQs3WQBFtMU8GVbRQ", "stars": 5, "date": "2012-12-02", "text": "EXCELLENT CUSTOMER SERVICE! \n\nEven with Happy Hour in full swing and the place full of parched Winkies, the service at our large table was spot on. We barely had time to settle our bums and push the silver out to claim our table territory before iced H20 was before us, our drink orders were taken . . . and one quick blink of the eye and the \"peacemakers\" were before us! \n\nNow that's what I call HAPPY HOUR!\n\nBravo Thirsty Lion!", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QfdqvcKtLBr15pMggtAjHg", "review_id": "zXsomljbtmS2Wd4pRlhI0Q", "stars": 4, "date": "2009-03-31", "text": "holy crap. try the side order of garlic mushrooms. they are little pieces of heaven that are such a delight to pop in your mouth.\n\nalso, on the special menu right now there's a salad called the mediteranian chicken salad, which really truly may be the most incredible salad i've ever eaten in my life. i wish i could drink the dressing that topped the impressive mix of greens, corn, roasted red peppers, cilantro, raisins, pine nuts, red onions, parsley, well-seasoned chicken, and i can't remember the rest. omg. beautiful.\n\nservice was fine, not exceptional, but the staff was friendly enough.\ni'm so HAPPY i found this place. go there.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "v721TYO7DMiU5Dfd8tOnmQ", "review_id": "EC_QTFsffVObxBTN2Cu-Jg", "stars": 4, "date": "2011-04-14", "text": "Stopped in for a business breakfast. I had the Chilaquiles with scrambled eggs. It was great. It's not really on my side of town but I'd really like to go back and try some other dishes. Hefty portions at great prices. All four of us ate well for under $40 including drinks.", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "w42rGXoCgnuRdAiNqgQY6Q", "stars": 1, "date": "2009-09-21", "text": "What. The. Heck. ?? Be prepared for sticker shock! I walked in, through the store, and made a hasty straight line back to exit. And over and across the road to Crate & Barrel - Ahhhhhh - much better! Whew!", "type": "review", "business_id": "LzSF8rvlsxqF-0qcHU7ikA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CtuoM6_Im-xBZMAqPKMQ8A", "review_id": "J810oYDsd7pnavQ4X03Trg", "stars": 4, "date": "2012-07-23", "text": "They built a Sauce in Minneapolis & it only lasted three months. I'll never understand why, but I'm excited they are in Arizona & plenty of them. \n\nThe Turkey & Feta salad is almost identical to my favorite at True Food Kitchen, which is a great thing. The paninis I've tried have always been good & come with a side of seasoned chips. I've never tried any of the pastas, but they all look wonderful as well.\n\nGreat place for a quick, affordable, good meal.", "type": "review", "business_id": "JxVGJ9Nly2FFIs_WpJvkug"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "--65q1FpAL_UQtVZ2PTGew", "review_id": "hvvV_dMgmH8dj3JlhdEc4w", "stars": 5, "date": "2010-09-29", "text": "This review has been waiting and waiting for me to get it out there, so here goes...\n\nBaiz market reminds me of Chicago. There are so many great Middle Eastern markets back there that I felt spoiled when I came to Phoenix and didn't know of many. If you think of Lee Lee as the goto spot for all of your Asian cooking needs, then Baiz is the place to go to for all of your Middle Eastern cooking needs. And, with Al Hana (check out my review for that too) right inside to satiate your hunger, Baiz is numero uno in my book! \n\nThis place is fantastic, the food is fantastic, the prices are fantastic and being able to grab all the ingredients I need to make homemade baba ganoush while snacking on an amazing kufta sandwich, is pretty okay too! =)", "type": "review", "business_id": "cOUS79i4vltKIc_hy4OZBg"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "d1CvzllHCEC0GoZohwgD3w", "stars": 2, "date": "2010-10-10", "text": "I started a new job and the bosses brought us here for lunch. It was ok. I got a lunch combo meal, but I didn't pay.\nThe service was really great but the food was not. Just kind of plain. \nIt's convenient to work, so I will probably be back, I just won't have very high expectations.", "type": "review", "business_id": "-lOSaCuBRAvX5JBifx-EMw"} +{"votes": {"funny": 9, "useful": 7, "cool": 8}, "user_id": "vhAn390OgR1H4DwacJdc7w", "review_id": "6rN-B5QvWjlGOXMCpjCfxQ", "stars": 4, "date": "2009-08-16", "text": "This may be fiction. I don't know for sure. Here's what I pretty much think happened.\n\nThe other night I was at a bar. two days later I heard that it was Turf. So I'm gonna go with it. In body I was there, however my mind was suffering under an oppressive weight called alcohol that blurred pretty much every little thing that happened.\n\nFor example: did I really find myself screaming piano man at the top of my lungs, to rapturous applause from the rest of the bar? every time I tried to stop, I was goaded forth into the next verse? (did the piano indeed sound like a carnival?)\n\nWas I really and truly told assuredly that I was gay? Did I really have an argument for what felt like hours with a fair-eyed girl who has severe trust issues and one fucked up gaydar? despite the wedding ring and total pudgy married-guy look did I still come across as gay? (my wife tells me that it can only be the broadway rendition of a billy joel song. I begrudgingly concede)\n\nDid I really hear someone who claimed to be a teacher misrepresent the very definition of a parallelogram? Did she really say that a parallelogram could not have right angles? Did I really scoff right at her and throw down the argument-crushing example of the square (QED biatch!)? Evidently I did, because I do remember her backing me into a corner and beating my ass with a relentless barrage of haymakers, both rights and lefts, that left me bruised like a second-rate (albeit mathematically-savvy) prizefighter the next day. Her-110 lbs at the very most, me twice that and then some on the most gravitationally-forgiving day, and I had no response but to cower in my own fucked-up rendition of the rope-a-dope.\n\nHer: \"flex your stomach so I can hit you.\"\nMe: \"Are you joking? that's me, flexing.\" (#fat)\n\nso I can tell you little to nothing about turf--I genuinely can't say for sure if that was the place we were at. But since I asked right when I got there if I was allowed to yell, and the bartender said yes, yell to your heart's delight! I have to say four stars. I would have said 5 but that looks really out of line with the rest of these reviews...", "type": "review", "business_id": "FeI75xIG8PF_XZ6P80gLBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "El-nrOv6QtsmsOnkXQDknQ", "review_id": "mqGVLqaIVln0_-f5F1aVPQ", "stars": 5, "date": "2010-11-17", "text": "I recently stayed at the Sheraton for two nights while attending a conference in Phoenix. I was blown away by the services. This is by far the best service I have received while staying at a hotel in recent years. I received a room on the 15 floor. Room was what you expect from Sheraton. The view from the room really sucked!! I got the room with a view of the hotel satellite and communications towers. TV quality was good and room had Starbucks coffee. Room also came with a refrigerator. I would like to see Sheraton move to Nespresso machines. After a long day attending a conference was great to relax at the hotel lobby bar. The desserts are yummy. I didn't get a chance to try the restaurants in the hotel. Hooters and Starbucks are directly across the street. My work colleague used the gym. He said the pool was really nice and gym had everything you need. Next time!!! I would definitely stay here again!!", "type": "review", "business_id": "FgyBmc-XS_ViFAf8Wy25yA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qYOtHoVCMkdmh73wvUohIA", "review_id": "wiOFzFx_gL9yF7Qn_TAG8Q", "stars": 5, "date": "2012-08-07", "text": "This place is still open, but the name has been changed to Juba, and it is under new ownership. Same spot though, and the food has pretty much stayed the same besides a few changes in the menu. \n\nAnyway, I absolutely love coming here. My friend, Molly, is one of the servers, and I love her for introducing me to Ethiopian cuisine. It's definitely a very interesting blend of flavors, but now I come here about once or twice a week and stuff my face. I recommend trying both the vegan combo and the pita sandwich with chicken or falafel. The coffee drinks are delicious too and since they're made with Ethiopian coffee, the taste is very unique. \n\nIf you've been hesitant about trying Ethiopian food, just get over it and go try the food at Juba. You won't be disappointed!", "type": "review", "business_id": "fb9eLHJ4S--TyXsarJJo-g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "a821uPZmO8R2w9R6BlrDRw", "review_id": "Dp9NBDSc7sydckMeAM_H5w", "stars": 2, "date": "2010-02-09", "text": "I was in Mesa for a workshop over the weekend, and this was a convenient place to eat. I wasn't overly impressed. The food was ok, and there was nothing wrong with it, but I expected more from Mexican food in AZ.", "type": "review", "business_id": "J3VvIU1ZDqg9a9e7zK-QSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kq5Pdsy8Znyh9KEkxWT_QA", "review_id": "XABPPSphqJ4PVrZbZ_AjtA", "stars": 4, "date": "2010-05-17", "text": "Haji-Baba is unique by being both a restaurant and a store! As such, the restaurant is fairly small- so if you're up for some delicious middle-eastern food on a Friday afternoon, make sure you arrive early!\n\nThe prices are good, the selection is better and the food is great! I ordered the falafel plate which came with 4 falafels, a side of hummus, and I subbed the tabooli out for a salad. The portion size was pretty big, so I left quite full, and it was all delicous! I'll definitely be going back soon!", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "obNXmSNJ-DjzJC3nzfVkDg", "review_id": "ZpHwEE5ohvRJhE9-BwMS7Q", "stars": 5, "date": "2011-02-17", "text": "I want to preface this review by saying that I'm close friends with one of the sushi chef's in training, so we got a seat right at the sushi bar and really had a great opportunity to chat. That being said, I will review this strictly on the quality of food, since we received some deep discounts due to being VIP guests. (C'mon now, you know you all get discounts too when you personally know the staff/chefs, so quit your whinin'!)\n\nThe quality of the fish was excellent... some of the best sushi I've had in my existence. The key to getting good sushi is to trust in the chef, and ask them what is fresh, and what they would suggest (omakase style). \n\nWe had a sashimi appetizer platter to start which featured blue fin, yellow tail, o-toro (yes, the good stuff!), and a few other pieces. Served with fresh wasabi root (not the hydrated green powdery stuff), this appetizer really woke our stomachs and senses.\n\nWe had a few different rolls per the chef's suggestion, and all were spectacular (including some off the menu rolls). The kim bap roll was highly recommended, and the quality was definitely memorable, better than most Korean-mom kim bop rolls I've had in my life.\n\nWe asked for ama-ebi (sweet shrimp), which was soft, tender, and sweet, with perfectly fried shrimp head to back. This was the first time I've had such perfectly made ama-ebi, and it's made me want to continue my search in Chicago.\n\nSome tasty mochi desserts, a few bottle of sake, and all in all, it was a very enjoyable night for my compadres and I. \n\nI'm sorry for those that have found a bad experience at Otaku, as it sounds like most of it is waitstaff issues... but as a sushi fanatic, my advice to you is this:\n\n1. Don't ask for a table if you're party is smaller than 4... ask for a spot at the sushi counter, because that's how sushi is meant to be served. Getting to know your chef, the chef getting to know you, having drinks together, etc. \n\n2. Ask the chef what he/she recommends. Not all fish are equally fresh, and the chef will know what's best for the day. And if you can provide them with your own past experience of what you liked/didn't like, they'll likely craft a sushi experience for you that you'll love.\n\nVerdict: If only Otaku were in Chicago... I might go broke. Delicious sushi, and worth a visit!", "type": "review", "business_id": "BINYfrtGp3A4w0d5E7kbYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MHqOB1BNjO2VhvbsMQCaHA", "review_id": "z7rZQ68udUddHny084Yh0g", "stars": 4, "date": "2011-09-28", "text": "We came here using a groupon or living social or one of the thousands of deals now available. I can't keep track. \n\nWe were there the day the deal expired, and I think everyone else was too! The place was packed, which was really nice. We sat at the bar and had a beer before the movie, then grabbed another to drink during the show.\n\nThe movie was SUPER interesting. Not anything I'd seek out on my own, but definitely worthwhile. I think a lot of the films here are like that.\n\nWe didn't even see the big loungy area until after the show. Bummer! I'd definitely come back and hang there before or after a movie, very neat looking.\n\nFilmBar is definitely recommended for a fun, unique night out!", "type": "review", "business_id": "MYj5f-QxtGeKlhVVx1RD4g"} +{"votes": {"funny": 7, "useful": 12, "cool": 11}, "user_id": "hq0WUfau1Mh3GyHn8oVdNQ", "review_id": "AfyUX0Vqmrpbi3I3Zi_f2w", "stars": 4, "date": "2010-04-25", "text": "My eyebrows definitely needed some love...I've ignored them so long that they're starting to resemble 2 fat caterpillars and I'll soon risk a uni-brow if something isn't done stat. \n\nDid you say FREE waxing? I'm a sucker for free stuff. \n\nThe center is very sterile - not only in a clean and sanitary way, but also void of any personality. It's a chain though and they're trying to go for the 'European' vibe so I'll let them off the hook. \n\nThe gal who did my wax was really nice, wore surgeons gloves, and carefully applied this purple gooey wax to my face, waited for it to dry, then pulled it off. It hurt a lot less than regular wax, and the fact that it was purple made it just seem cooler all around. I walked out 15 minutes later with clean brows and an appointment for my next wax. Definitely a good find.", "type": "review", "business_id": "iXT19WQLq_5ua6uFNuVKpQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LN_Y01b4W9hgtDade_XM4w", "review_id": "8Ehxz8wqmg6Ypw36X19edA", "stars": 4, "date": "2012-01-29", "text": "Went there today for lunch for the first time and had the del Reyes torta. I was full after one half of this monster. But was very good.", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0EtZMnRQF2YsXvWBQ7FauQ", "review_id": "nLelxbl1xv_3Xc32rBrkHQ", "stars": 1, "date": "2012-08-09", "text": "Rental car review.\n\n118 degrees. Standing outside in the heat waiting for a bus. 10 minutes go by and I have seen 3 busses leave with out of service signs. Another 10 minutes pass and no active duty busses. Finally, a bus! We have a packed bus and the driver is just standing outside. 5 minutes later he comes back on the bus and we drive 10 miles an hour the whole way to the terminal.\n\nPHX...pay attention. Business travelers do not appreciate being left in the heat for 20 minutes watching out of service busses pass by.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bITqkdi9OIsQXUpowk_saQ", "review_id": "DMCubsRz36lGnz3QM8WKLA", "stars": 3, "date": "2012-09-27", "text": "Okay.....so....I have this thing about going out in Scottsdale in the first place because I'm always like \"that one natural haired black girl\" in a sea of blonde, tan, slim chicas! But that's neither here nor there. \n\nThe Lodge was OKAY in my opinion. For it to be in Scottsdale where everything is super expensive for no reason the drinks are pretty cheap. I had a couple of shots and a drink and spent under $20. The bartender was SUPER sweet and she knew my name by the time I came back for my 3rd drink. \n\nThey have AH-MAZING food deals. Like, get a burger and a beer for $6. Of course it's not a top notch beer but.....who doesn't love burgers and beers??\n\nThere is music...coming from somewhere and it's always pretty legit, a good mix. \n\nThere is like an intimate, cabin sort of corner with flickering romance lights when you first walk in if you want privacy but we usually go outside to the deck and people watch and/or play cornhole....Either way, I wouldn't say this is my favorite place ever...but I dont hate it either. \n\nPlus there is always a line of cabs outside waiting if you are too schwasted to get home :)!", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "e6iM8wQzEv7bb8jXVOQjQA", "review_id": "aPkgxX7cBTD3JdGpmPIXjg", "stars": 1, "date": "2012-03-15", "text": "Every time I've been there they have messed up my order in some way. The first time I ordered a sonic blast w Carmel. They charged me for Carmel but there was none in it plus the bottom of the cup was busted and my ice cream was leaking out. The next I went I ordered a reese sonic blast and a snickers, they were both snickers. Very upset I haven't been back and I love that place.", "type": "review", "business_id": "BtX9mA5dYDzULGVPC4-I-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0KXxuKxlspsO6CrDLgQJ-w", "review_id": "rVqYA41K85_Y-ZpsvT09dw", "stars": 4, "date": "2010-05-03", "text": "Lots of awesome packed in a cute little restaurant. Visited here on numerous occasions and never had to wait for a table. Service is excellent; friendly, and witty waitresses are a breath of fresh air. As is the patio, which is a perfect venue to enjoy a meal next to the fountains. The view of the gardens at lunch time is also a nice tidbit. \n\nLoved the chips too. Chimichanga is A-okay!", "type": "review", "business_id": "e5kc0CQ4R-PCCDgb274gSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xV59HB14hq4XTecr3dFibw", "review_id": "OGliW0Iolmdz8B-uJrDbDw", "stars": 4, "date": "2012-08-26", "text": "I cannot speak for the food, (though the menu looked unique and tantalizing), but the beer selection was great, as was service. We arrived on Saturday night, the first weekend Angels Trumpet was open, around 10 p.m. for drinks. There was a large group of us, 9 people... though there weren't any tables to accomodate our party we were able to stand/be seated comfortably around one of the high-tops.\n\nThis place is great for smaller parties who enjoy a good beer. The selection cannot be beat in downtown Phoenix -- 31 craft brews on tap of every taste and style... and they're always rotating. I had the Biere Blonde & White... 4.5% alcohol, light, sunny taste. Reminded me of Four Peak's SunBrew.\n\nThe selection ranges from hoppy IPAs at 10% alcohol/volume to the lighter, summer brews and everything in between. There is literally something for everyone, even a few wines on tap for the non-beer drinkers.\n\nOur server was very nice and accommodating.. and though the place was packed she got us our drinks pretty quickly.\n\nA couple reasons I didn't give Angels Trumpet the perfect '5' star rating:\n\nDisorganization-- Seating was sort of a nightmare... and we kind of waited around for one of the high-tops to open up and just snagged it.\nAmbience-- I enjoyed the nice, open floor plan but the restaurant-style and dozens of tables/chairs was a bit puzzling considering the kitchen was closed when we arrived. I couldn't hear any music above the conversations in the room and the huge, 60\" TV screens weren't turned on. It'd be nice for weekend nights to boast something a little more special. If you're going to close the kitchen, allow people to walk around and mingle more.\n\nOverall, if you're looking for a nice place to kick back with a small group of friends and try some awesome, unique beers on tap, Angels Trumpet is it. Their prices are reasonable for the quality offered. Haven't tried the food, but the menu is pretty diverse offering a spin on traditional bar food like flatbread pizzas and sandwiches.", "type": "review", "business_id": "41j3GB7M-Lwq284Pfb9zgw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "gN03qFYysM5DbgjuV6N0QQ", "review_id": "7e5jVB1D6nmONQgM6loaeQ", "stars": 4, "date": "2012-07-22", "text": "My GF says Take me out for a rum drink, I says your wish is my command. \n\nBeautiful little restaurant opens at 5 downtown. A very kind sir welcomes us in. I see the rum punch and I order up. Now this rum punch is delicious but I would have liked it to be stronger, ya know 'Punch' $5. I decided to add a shot to our drinks with a Haitian five star rum.$8. \n\nWe also had an app of Cuban style pork tenderloin sandwiches using fried plantains. My Gf enjoyed them I just am not crazy for plantains. Anyway cozy seating and we had a good time.", "type": "review", "business_id": "mpdl2_v3MDJVzTaxvlEGTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sq2Ggj2UgbPH1wLS3tNZEg", "review_id": "pQTYqf5JwTqDDoU6oeA4WQ", "stars": 4, "date": "2012-10-21", "text": "We really enjoyed lunch today. Very good service and many choices. Coming early in the day - when the buffet is at its freshest is usually our m.o. ... especially ones with so many choices and slower turnover. That said, we came late afternoon, and were not disappointed. The stew-ish type dishes were flavorful, all the spices bold. I would like to try their fresh dishes from the menu some day - like the Tandoori chicken. I agree about the noodle dish. I got a little bit on my plate, but it just didn't feel right. Everything else was pretty authentic, based on my experiences. Our first time with the Chaat bar... I really don't get it. But, we will definitely be back for the lentils, masalas, curry, rices, paneers. It was worth the $30 for a Sunday Brunch for two with coupon. tax and tip. And a free glass of champagne!", "type": "review", "business_id": "giyl3pyGo6sbvsnn94f4Hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RKo6f-phN2wcmjYjZQC9cg", "review_id": "6Jhav65PlxHavnAPmZdZVA", "stars": 4, "date": "2012-11-17", "text": "Our first visit. A bit quiet on a Monday night. Service was fast and friendly. Wife and I shared a hommus appetizer and Greek fries. We like our hommus with more zest i.e. garlic. Main courses were the gyro dinner and chicken souvlaki meal. Both were tasty with generous portions. We'll go back.", "type": "review", "business_id": "TVJT7Xknd-ikf4vskcjKQw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "JJnS30Cjv5CBa1JXyZU5yw", "review_id": "t4a_bUuC9r0MokdXveEKTQ", "stars": 5, "date": "2011-10-26", "text": "Stayed here one night while traveling to Phoenix for business. What a cool hotel! I've never stayed anywhere like this.\n\nI didn't experience the 50's personally, but this place has really kept and captured that essence. (And yes, it's been renovated. This place was built in the 50's but it's not run down or anything like that.)\n\nThe room was nice, the pool looked great (never got to go...), the service was impeccable, the food at Zuzu was very good. Old town Scottsdale is right around the corner, with great restaurants and bars. What's not to like?", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 3, "useful": 3, "cool": 1}, "user_id": "gq_G5VCDziyEV2-bzGuqzw", "review_id": "V0EsJ8gw-NUFoiJcjcHb2Q", "stars": 3, "date": "2007-07-20", "text": "Pomeroy's and I have a really ass backwards relationship. \n\nTypically, the purpose a bar serves me is to quench a thirst brought on by numerous factors, the most typical one being the uncanny excitement I have for making poor (but fun) decisions. Because of this, the purpose I serve bars is not only the obviously fiscal nature of the relationship, but I often serve as the harbinger of good times.\n\nSo here's the problem with P-roy's.\n\nI never want to come here. Ever. This is the place I END UP at and it's typically the result of somebody else's negative circumstance that I don't really want to deal with (friend meltdown, death, crashed vehicles), and I almost always have to leave a place I like to come here. I know, weird, right? But I've been here more times than I can shake a stick at, and while I am usually the omen of good times to come, I always know that if I am on my way to Pomeroy's, not only will I be saving copious amounts of cashola, I also always end up having a blast and not doing something stupid. \n\nSo the role reversal always sends me for a loop, and the bathroom always smells like fresh poop, but I can't help kinda liking it.", "type": "review", "business_id": "_GS1R0LTwr6h8rMWY_8U9Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "gvXV0RHOxI_WhT91LMPNNQ", "review_id": "ES4-S0n_LN5PmtJHmiwf8g", "stars": 4, "date": "2009-03-04", "text": "I was toying with the idea of going on the wagon for a few weeks when I met my friend at The Mission, but the Sophia Loren cocktail caught my eye. My friend was intrigued by the Mexican Painkiller, and I couldn't let her drink alone. And oh, I'm so glad I'm such a good friend. \n\nThe Sophia instantly made my list as one of the best cocktails I have ever had - fresh strawberries and mint muddled in rum and another liqueur I can't remember. Just sweet enough to be refreshing. And plenty strong enough to make any hour happy. This drink defines the word elixir. It is as intoxicatingly unforgettable as its namesake.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VcN9i7sPrGSOn4BnpOJ9tQ", "review_id": "YE6RDG_LjkmYfJ8qvDPiAg", "stars": 3, "date": "2010-03-21", "text": "Some family were in town and are Blackhawks fanatics desperate to watch the game. This was the only place in the east valley that we could find had the NHL Center Ice package (though the girl who answered the phone had to ask somebody else (\"What's NHL?\")). Not only were they kind enough to put the game on, they put it on a flat screen in the corner of the patio and we were able to have the sound on. He shoots, he scores! \n\nThe shepherds pie was good, the beer was cold, and the waitress was very attentive.\n\nI'll stick with CK's or the Baseline Pub for the NFL games though. While RT's had plenty of TV's, most of them were small old tube TV's. My uncle asked why they weren't showing the score of a basketball game, and I told him it's just being cut off by the old TV's screen", "type": "review", "business_id": "TwMfahsPHFnkLiqqvyalAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7x6qY_vu6PQ4yvOoFurbMQ", "review_id": "nGGMwf0mWvUMccsIOmA3gw", "stars": 3, "date": "2012-10-31", "text": "I took my family here using a groupon and it was just ok. We tried to go on Monday however we arrived at 4:30 and the employee working the counter informed us that league play was going to begin at 5:30 so our hour would be cut short. I was a little irritated with her \"um, yeah sorrry\" but whatever. We opted to come back the next day to get our full hour. When we arrived we were greeted by a very friendly gentlemen who provided us our shows and assigned our lane. We were one of 3 groups in the alley and they placed us side by side instead of giving us a little space. My wife asked for a glass of water that never came. So the bowling was fun. The service was marginal at best. The lane assignment was awful. Since we only paid $15 for 4 people for the hour including shoe rental I will go back again for the same deal. I would never go there paying full price which is outrageous.", "type": "review", "business_id": "IAA95OWwU-MRnhFQD8t3JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "Ik8YH1kSuT6yzuvlsfgtbA", "stars": 3, "date": "2011-12-16", "text": "I have been to Butters on numerous occasions - the latest being with three senior golfing friends from out of town. Over the last few years, we have tried numerous breakfast places on their trips, searching for a breakfast that would satisfy all of their different tastes. After trying six or seven different places, I brought them to Butters, since it was on our way to the golf course. \n\nWe all ordered something different, including a skillet, bacon and eggs, pancakes, and an omelette. The service was fast, and friendly. In fact, we have one picky eater, who always sends his bacon back, because it isn't as crisp as he demands. The waitress handled his grumbling very nicely, and even had him laughing about it.\n\nThe atmosphere is somewhat trendier than Butterfields, which was a very big plus for my senior friends. They also commented on the friendly service, and the reasonable prices. It didn't surprise me that when it came time for breakfast on the final three days they were here, they all voted to come to Butters for breakfast.\n\nIt should be noted that we came on the weekdays when it isn't as busy on the weekends. I have been in the area on weekends, and it always appears that there is a waiting line.\n\nThe only thing keeping it from more stars, are the hash browns. They are obviously prepackaged (or at least taste that way) - and a real breakfast place should have signature hash browns. But all in all, a nice addition to the area.", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wY1vTvfdwAL1CgDcn2GhdQ", "review_id": "P_5y1Vb4NHLqbe7EWczxQg", "stars": 3, "date": "2010-04-20", "text": "Fast and a drive thru. What more is there?", "type": "review", "business_id": "VwONNCUI93Qb4SgxvuBd-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "khPlizt3ava1xkbtAxHQnw", "review_id": "rjtqtwPHnhekeaz2_JBftQ", "stars": 5, "date": "2011-01-23", "text": "This place is so great! I am a nanny and had to bring in a dance outfit to get the straps shorten for the girl I care for. The woman did this for no charge! It was only the second time I went there. She said it would only take her two minutes so no charge. She was super sweet!", "type": "review", "business_id": "gR6kAJiEfIf3MMELxFX1gQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "Kum4rrB2ZBGWXmlOXTTq9w", "review_id": "2byDePm0U244ESYBbjY-qg", "stars": 1, "date": "2012-12-23", "text": "Waste of time. I could not even get in there today because there was a football game. The wanted me to pay $10 just to park. How stupid is that! 2 days before Christmas. I noticed all the prices were the same and somtimes more than any other mall. Goobye and good riddens. I have better things to do with my time and money.", "type": "review", "business_id": "n4kQBw7XX1tSJMPhM5SyAQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 4}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "3nlkj_AG2g33nyQerIX6Rw", "stars": 5, "date": "2008-06-13", "text": "How can you go wrong with tortillas and pastries in one location? I honestly don't understand how this little Mexican bakery stays in business given everything is practically free. My hubby and I bought two empanadas for me (like a little pie or turnover), flan for him, a dozen tortillas, and 2 red burritos. I guess you need to get there early because they were out of red tamales at 2 pm on a Friday. \n\nThe empanadas were baked just to golden brown and the crust was so flaky and delicious words cannot describe it. I had lemon and cherry, but I wanted to try one of everything. The red chili in the burritos was mild but very flavorful. Luckily they are wrapped in foil because I couldn't wait to get home to devour mine. They could double their prices and I would still come back!\n\nI forgot to mention the bakery is spotless, so clean I would eat off the floor if I had to.", "type": "review", "business_id": "towWd9z7YuGHdAezQtrkTQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "34gJ_KlP3RM6jotNT6TcDQ", "review_id": "3BK8kCE1JwH_537_2t4gSQ", "stars": 2, "date": "2011-08-05", "text": "Yelpers giving this place four or five stars are either seriously misguided, don't have refined pallets, or simply haven't tried Bianco or Cibo. This place was over priced, had fairly poor service, and the pizza just wasn't that good.\n\nI ordered the sausage pizza. The sausage was pretty bland. They also screwed up my order by adding onions when I didn't ask for them. I've had my order messed up on pizzas before by having toppings left off, but never added on that I simply didn't order. Found that strange. I would have sent it back, but the waiter didn't check to see how everything was until about fifteen minutes after the food was brought to the table.\n\nI'd give Humbe Pie 1.5 stars if I could, but rounded up since it is better than Dominos and Pizza Hut. I went after buying the GroupOn coupon, but won't be returning.", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jXp0eFDh_LNO8JfcGlV3pw", "review_id": "FyZfuAb5dcou0g6f_S9pQQ", "stars": 4, "date": "2010-03-11", "text": "Popeyes yes that's right Popeyes, after recently relocating from Chicago to Phoenix I wanted some fried chicken and Popeye's is what I like. Now Fried chicken competition is pretty stiff in the Chi you have Harold's, Uncle Remus, and Mac Arthur's but here in Phoenix I am not so sure of the local spots. There are not many Popeyes locations near my current residences but ahhh.... one is near my work location. Score and this one has the \"Tuesday Special\" 2 pieces - leg and thigh for only .99 cents. Talk about an awesome deal, especially if you like dark meat which I do. I did the drive thru cause I wanted to get home on the 51 before the traffic got bad and the window person was very nice and efficient. This is now my chicken spot here in AZ unless you know of another one that can get me tasty and spicy chicken I can't be persuade differently.", "type": "review", "business_id": "D0tHnskAgaRjCBdoXVev_g"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "LSf-IajkL99JQBZ3PzXnjQ", "review_id": "fwdbRIFrGS0jQT4GbiDTjA", "stars": 5, "date": "2012-11-18", "text": "Exactly what a hole in the wall Pho place should be like! Totally reminds me of LA, SF or any authentic Pho place in any multi-cultural city. Congrats Phoenix for not being completely white bred and redneck- must give thanks to center city.\n\nAnyhow, portions are large, ingredients taste fresh and prices are inexpensive. If you're one of the sheltered folk out here that gets freaked out by rude bums or the lack of decor- stay in the shelter of your HOA tract home or go to the mall.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LwbCh2rhnfaFOhzw7gE1TA", "review_id": "Bi1EnyIyy5RrNZcbK5ajSQ", "stars": 3, "date": "2010-03-20", "text": "I have never written a negative review but unfortunately I think this place needs to get it together. It is in a location that never seems to be successful. I drug my husband over excited to try it and hoping to see an improvement. No such luck. No vegetarian entree, not really kid friendsly, small portions, pricey. Not what we were looking for in an evening. Love to support new restaurants but wont be back. Hope they figure it out and make it work.", "type": "review", "business_id": "GeHwru6TVDyVErFc92Nn2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "j57HR3gaS5X1DrfalZ3W-g", "review_id": "bPNpGEqz6d90zkIw3in3cw", "stars": 4, "date": "2010-04-30", "text": "i've been a mojo fan since... well, since mojo first became mojo. when yogurtology opened right up the street from my house, i arched a skeptical brow and decided to give the mojo-wannabe a try. \n\n*long sigh*\n\nmy newfound love of yogurtology has me feeling a little guilty, as if i've replaced an old love with a new one. such is life, i suppose.\n\nthe facts:\n\nyogurtology has a wide range of excellent flavors of frozen yogurt that seem to rotate daily. i've seen chocolate mint, oreo, cupcake batter, red velvet, chocolate peanut butter, mango, blackberry, oatmeal cookie and vanilla bean, to name a few. each and every one delish. they also seem to always have at least one non-dairy option available...\n\nthe toppings are plentiful and varied. choose from fresh fruit, chopped candy bars, m&ms, nuts, baklava, brownies, truffles, cheesecake, sprinkles galore, ginormous marshmallows and gummy candy... i've never seen so many topping options in one place.\n\nstaff are very friendly and attentive. a little TOO attentive for my taste, but hey, i'm the kind of person who likes to be left alone unless i ask for help...overall, they rock!\n\nloyalty punch-card? you betcha. so eat and eat and eat and score yourself some free yogurtology before starting the tasty process all over again.\n\nlick a spoon and feed your grin.\n\nlola", "type": "review", "business_id": "co8rv2zfOhMXc_TlEI9VrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mSGCYGJB3TIjE92zVDmo0g", "review_id": "aCTQnVsRUt9JBQkzJxAKMQ", "stars": 5, "date": "2011-08-09", "text": "Love, love, LOVE this place! Eugenia is a genius! Macarons = amazing. Croissants = soft, buttery, flaky, delicious goodness. Iced mocha is one of the best I have ever had. My only complaint is that this place is not closer to my house or work, but that's probably a good thing because I would weigh 1000 lbs if it was.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lViWWAZLMGz_TMKfrLon-w", "review_id": "zAbuVOUpQhQ1KafDFoVhlg", "stars": 4, "date": "2010-01-18", "text": "I loved the concept of this yougurt place. It is much better than Pinkberry in California. You can serve yourself a variety of flavors of yogurt. I got white boy vanilla and acai along with Mango. You pay for your yogurt by weight. This was a great place!", "type": "review", "business_id": "WfYQE-MZCQb_BOyW7lWh9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "jxiX6oOomJXJBzK82Wpusg", "stars": 2, "date": "2009-03-08", "text": "It's not that I don't like this place, it's just that it's very run of the mill. Bison Witches does the standard sports bar cum college drinking hole thing. That's all that can really be said about this place. You can't really hate this place for that because it is what it is. A milquetoast spot at its most average..", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 12, "useful": 9, "cool": 8}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "fBh8nGMOjsZ1DOYQKNxfCQ", "stars": 1, "date": "2009-01-31", "text": "F724 \n\nShe didn't even look at me, didn't bother asking why I was entering her place of business, didn't reply when I spoke and in no way acknowledged that I was even in her presence. Just handed me a ticket and was done with me. If this happened anywhere else, I would make an effort to never return, tell all my friends how horrible this experience was, and write a scathing review about the deplorable customer service of this business. Sadly, this was my Saturday morning at the DMV, a place I think is modeled after the agonizing depths of Hell. With the same musac score playing...and the same voracious stench in the air..and the same spastic children running around (only in my version of Hell, it's politicians campaigning around me). \n\nSo, I was already running late because I had to complete my emissions test early. Those nice people there not only told me there were only three DMVs open on Saturdays, they gave me a map. How precious. I was fortunate enough to be near one of the only DMVs open on Saturday (Seriously? Three DMVs open on Saturday for the entire Valley?) After receiving such a magnificent welcome, I knew this was quickly going to be among the most painful experiences of my life. To simplify what was so bad, let me make a list of what I feel constitutes acceptable behavior in public: \n\n1) Bathe. The combination of water and soap, along with massaging the skin, creates an outcome that is most pleasing. Be sure to scrub behind your ears and reference this website about another notorious spot : http://www.craigslist.org/about/best/htf/755891987.html \n\n2) Sit still. Yes, I know we're all waiting here for about an hour. But tapping your foot, rocking back and forth in your chair or bouncing your leg aren't going to make time go any faster. Trust me, I was watching the clock. If you feel anxious, get up and walk around. \n\n3) Leash your children. If they cannot sit quietly, leave them in the car. It's winter, they'll be fine. It's not cute when your little monster is running up and down the aisles with his honey bun squeezing out between his fingers. It's even more not cute when he fake-falls five times in a row right in front of me. \n\n4) Maintain quiet tones and ensure appropriate conversations when taking/making calls. To the lady behind me, I'm sorry you're not that experienced in stripping. The first thought that popped into my mind was you had a failed audition for Le Girl. Thanks to your continued conversation, I was able to figure out you were a woodworker. \n\n5) Acknowledge the humans around you. Yeah, I get it. I'm not that big. In fact, if I turn sideways I disappear. But, I'm still right in front of you so pay attention, quit bumping in to me and hitting my leg. Unless that was flirting, in which case you really need to find someone more your level. \n\nOh, the DMV: You have a brilliant recipe for dashing dreams and gutting humanity. And you manage to do it in a painfully lit room that reeks of a combination of my brother's old gym shoes and my dad's dirty underwear. There has to be an award for that, but I don't have the motivation to research it. \n\nOh, and F724 was my number upon entering. I spent and hour and 15 minutes looking at that slip of paper. Just so you know, that one star is for the website (which should probably get 3-4 stars but anchors like this oft sink the ship). \n \nLe sigh... \n\nOpen T-Sa 8:00am - 5:00pm; information only after 4:30pm", "type": "review", "business_id": "DTFy9-NuZBjBEd9Zcoo94g"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "CQEOzdAPHNEbnxdgUzT32w", "stars": 3, "date": "2008-04-11", "text": "I am a bonafide book junkie. Libraries are my mecca. But, I'm picky. \n\nGetting a SPL card was a cinch. I only needed one proof of residence, although I brought the recommended three, including a Netflix envelope. \n\nOnce I had my card, I was ready to explore. I headed first to the public computers that help you locate books... yes! With scraps of papers and mini-pencils handy, I was good to go, once I had selected a couple books to hunt down. \n\nSo far, so good.\n\nBut then the library got tricky. Running out of the alphabet before I had found my book. Turning into another section - from Fiction to Large Print. WTF? I decided to turn this hunt into more of a tour, so I wandered the aisles, studied the names of sections and eventually re-acquainted myself with the library system. \n\nDon't get me wrong. This isn't rocket science. It's also not pop rocks. \n\nHaving found my books and a couple DVDs, I proceeded to check out. Super easy, too. I can renew online? Bonus!\n\nMy first trip to the library was GREAT. \n\nThen the second one came. The library had NONE of the books I came looking for, and I was prepared to find AT LEAST ONE of the books on my list of 5. Nope. So I put some \"on hold\" for me and wandered about, very disappointed. That's when I began to dislike this library. None of my books? Really? \n\nThis library isn't browsing-friendly like others I have seen. Even the ol' library in Stillwater, Oklahoma was more comfortable than this one. In fact, I miss that ol' library, with its shelves of poetry, psychology, magazines and literature... so easy to find, so easy to browse, so easy to sit for hours and read. \n\nI couldn't leave SPL fast enough. On my way out, a man working (volunteering?) there showed me how to use the self-service check-out system. Nice! He was a friendly ol' man, who assumed I knew NOTHING about self-service machines... and probably doubted my ability to read, for he explained step-by-step what I needed to do in order to check out my books. At least the lesson was in-depth enough for me to fully comprehend - and then some. \n\nSo, the next time I went to SPL - to pick up the books I had put on hold (score!) - I used the self-service check-out. I was in and out in like 7.46 minutes. \n\nSo, let's recap:\n*SLP has books!\n*SLP doesn't always have the books you want. (Sad face)\n*You can renew online, create a profile and share reviews. \n*You can place books on-hold from any computer, if you're logged into your account.\n*People working there are friendly.\n*It's easy to get a card. Just bring in your SRP bill, like I did. \n*It's not an easy place to browse.\n*SPL doesn't make you feel like you want to spend hours there.\n*There are private rooms; just not sure how you reserve them.\n*There are monthly activities at the library - but mostly about old-fart diets and how to use Microsoft Word. \n*There's FREE parking in THE SHADE! \n*You can check your items out yourself, with their self-service check-out machine. \n*It's pretty ugly inside - brown, biege, dull and lifeless.", "type": "review", "business_id": "oFW8Fjszgsmy39a5hUnoBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M168taumyl7t35jWGT4brg", "review_id": "WSnjO7TD2Qe9EDwGsmG-VQ", "stars": 5, "date": "2012-09-19", "text": "They are the best! 99% of my pain in my back is gone, thanks to Patrick O'Brien and assistant Joshua.\n\nBonnie Wills", "type": "review", "business_id": "MGTBiJ8upecnlG2rftHn9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kmx0MxQDVWizT9HvBvearw", "review_id": "k1dwoqavwJUgFTsj1ujH4A", "stars": 2, "date": "2012-04-16", "text": "I have to admit the quality of food here is better than your average berto's restaurant, However the girl who works the drive-through during the late shift makes some of the strangest mistakes with the food. Warning if your ordering 2 items don't be surprised to find them in one box combined into some strange hybrid. I honestly don't think she understands the word \"And\". This has happened to me several times int the last month. Always make sure to check your order here.", "type": "review", "business_id": "o3TruOSgOwNgx08QosuWTw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6K6GvIJZ_G_luOrVZDwrZw", "review_id": "jDmTrmhSeqDJ-vwEGIQ-Uw", "stars": 1, "date": "2011-06-30", "text": "Lazy Q CLOSED in 2010. New Owners cleaned up the place and its called JESTERS BILLIARDS. Tons of beer, AC smoking patio with pool tables. Re-did tables and got new cues. Its rockin now.", "type": "review", "business_id": "iwN90973uPSLsx5w1_GQog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "epqjmEm2SOuNmQi15XrOYw", "review_id": "H_KNjqgSSupaxKEyIL686Q", "stars": 4, "date": "2012-09-02", "text": "Great place to go for a walk or bike ride.", "type": "review", "business_id": "qkX9CmImtW97GHmt9NXKog"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "5LU-21bimh4DgdEthvf8iQ", "review_id": "FY2MLRyEV-9Rqcdxuc3WEg", "stars": 4, "date": "2011-01-22", "text": "Bought a great pair of their 'eddie' ballet flats here on sale...deal. This store gives good...customer service that is. They noticed my sunglass case was a little too old and gave me a new one of theirs...lovely. I returned a few weeks later during their friends and family night and purchase a different color of the same shoe...perfect for traveling and the lovely shaded purples ones will be a great pop of color with my comfy and neutral travel clothes!\n\nHey if you see that girl walking by the Seine in Paris with the purple shoes...it's me!", "type": "review", "business_id": "q_7Rs640owOOrAo6CV-jYw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "-vRFUY8ixuNniCCNVvmkRQ", "review_id": "7VsG6-m3wNhuoMUeHQ8Vcw", "stars": 5, "date": "2012-06-03", "text": "It's called America's friendliest airport for a reason- it truly embodies world class service to all. I love it here it's clean, great places to eat and smiling faces to great you esp at TSA!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4WyOI4x62W2EsvZO-RV-MQ", "review_id": "txznAo63BtHBLAjFEYHKEA", "stars": 5, "date": "2009-06-30", "text": "What a great surprise stumbling across this bank! Open 7 days a week with lobby service\n\nI have banked with the Mega Uber Banks and have been nickeled and dimed (literally) with service fees.\n\nI opened both a savings and checking account here. Since my company does not offer direct deposit the associate told me I would have to have a traditional checking account with service fees. I'm thinking - here we go again. But it was one of those think on your feet moments. Off they went (I'll assume to get approval). They let me open up a type of checking account that only charges you for check printing - No other fees and pays interest. In fact, if you use a non-MidFirst Bank ATM, they will refund you the service fees. How refreshing with the current state of banking.", "type": "review", "business_id": "s7BZ4tD3q62-OTSYp7Djdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "lCVLT95VUnlZfboVoZJCZA", "review_id": "qywwnkQMHDZ29sefIffeoQ", "stars": 4, "date": "2010-12-06", "text": "Let's start by making it clear that my dogs are my life. Completely obsessed pet parent here! I went here for a second opinion about one of my dogs after being fed up with my regular vet. I was really impressed with the premises and doctor. She was incredibly caring and helpful, and they did not try to get me to pay for anything additional. I really appreciated the authenticity and the follow up. I am now a regular customer (patient?) and definitely recommend this place for your furbabies :-)", "type": "review", "business_id": "jUQpIF_bhhF_XQqScrt5yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XvRFOE5-d32wLTrleI9Utg", "review_id": "uOVl50PKs9Y0G2VDnyQw5Q", "stars": 3, "date": "2012-05-10", "text": "Lavelle's just opened the end of April. So far I've been twice once for lunch and once for ice cream. Both times I waited about 15 minutes. Understandable considering their new. I wanted to make my own type of sandwich and the older women said they don't do that. Okay. So I wanted to get the arizona sandwich with a different bread, she says the bread change is 1.00. Really?! Sandwich also had no mayo/mustard. All in all it's good to have new restaurants out here, but this one is just okay.\n\n**Update: I have went in on 2 different dates to get ice cream. Only to find out the 2 flavors I want are gone. Should get back-ups of their items.", "type": "review", "business_id": "A5jJS6lNQbJXjPzBkTnjNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "duTeTiNX__zYcznMX5CgMw", "review_id": "4kqwCLbvCBpeTv7fUdxTBA", "stars": 4, "date": "2011-06-19", "text": "Stop by today for California Burger and I also their chocolate brownie delight sundae. It is probably one of the best sundaes I have ever had. If you are a chocolate fan, this place is definitely something that you will want to try. The help is friendly and helpful.", "type": "review", "business_id": "X-dpycbo5fy8AyoHCUCryA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "UpStsEqOOeV_2_4n5PZzjQ", "review_id": "VOlzILk599dShFuG5gwVbQ", "stars": 5, "date": "2010-09-19", "text": "short leash is awesome! we tried the sample platter and they delivered it to us inside the bar. we were also given an additional sample tray to try for free. everything was delicious and had a very unique take on a common american snack. \n\nI can't wait until they come back!", "type": "review", "business_id": "xHI3saK0sAJEHeMK4IGVvg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "Tdi8gTd8dZBsIMSTZEgpOw", "stars": 2, "date": "2008-06-23", "text": "Nothing great. The salsa was very soupy, like you'd get from a jar. The hot salsa was even more liquidy and just tasted like chili oil or chili paste. The tortilla soup was served like French onion soup, with a whole layer of melted cheese on top, and the broth underneath was really salty. My friend who normally loves tortilla soup sent it back. \n\nI went with the corn tamale. According to the menu, you can choose either red or green. I ordered the green, and the tamale was served in the middle of a sea of red sauce/salsa. So I asked the server, \"Is this the green tamale?\" and she said that normally just the beef tamale is served red or green but I could have some green salsa if I wanted. umm...okay.\n\nOn the plus side, the service was very prompt-- our drink orders were taken immediately and chips and salsa were delivered 2 seconds later. And the lunch menu was very reasonably priced, including $2.50 margaritas. The food was just nothing special. I guess the name should have been a warning not to expect anything too authentic.", "type": "review", "business_id": "qHjUo2foq-IXF6Tk1Iz3WQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qbLkttEOyztRMYRtSLBo4w", "review_id": "EzYzG14T2GUKHKcktfWUyg", "stars": 1, "date": "2011-10-11", "text": "So I had this important event to attend in California and I've already spent a lot of money preparing for my trip. Earlier in the month I had received a coupon for $40 off any service at Epic salon. Wow, that is a lot of savings and I could sure use to save some money. Epic uses Goldwell products which is my product of choice. I just needed a tint touch-up (about 1\") so I went to this salon... I had already had an awesome experience at another salon in town, but I couldn't pass up the savings by using the $40 coupon) I was second-guessing the idea of trying a new salon since I had already found one I absolutly loved. .Again though, the coupon lured me in. Anyway, I walked away with the worst experience ever. Not only was my color wrong ( I am a golden blonde and she colored my 1' outgrowth to a 3\" ash) when I went back in to explain what was so wrong with it (5min later), the front desk lady was rude and cut me off as I was speaking to her. Not the best way to handle a pissed of lady expecially about her hair! I gave them a chance to fix it and the only thing they did was put a gold glaze on my hair, which did not help at all. The style sucked too. I just left. I did not have time to see if they could fix it again. I will not be going back to this place for any services. Noy only because the hair experience was bad, but because the front desk gal made a bad impession of the place even worse with her nastiness. UGH! I will give this place 1 star only because on the coupon was also a savings of 30% off products.", "type": "review", "business_id": "YmhskhHArN4CHTG49kC_hQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "avzVuoEUSiaB6t7a1cf5HA", "review_id": "QVvfpA4CZg2eGOk9BgA-gw", "stars": 4, "date": "2012-08-02", "text": "I love this place! Great quality food, great service, large portions and fare prices. In the Fry's parking lot. Try the bbq pork egg foo young, mongolian beef and get the lo mein instead of rice. Good stuff.", "type": "review", "business_id": "Dj4glvoFwKypLjUr9F01Sg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "ExZbcPE9I3j4gYkXFjHU5w", "stars": 4, "date": "2012-05-06", "text": "Came in for my birthday burger, and decided on the garden-burger. I hadn't tried it before, but I'll be trying it again, many more times. I may even go vegetarian now that this baby is in my dietetic arsenal. Love it!", "type": "review", "business_id": "zoHCkEiIKfXiLTKUqKEojQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d9NiFsAxY-ktixPKHiFo1g", "review_id": "Gc7fvwgilDyfTYDv0cNLDg", "stars": 5, "date": "2012-08-18", "text": "Visiting a friend who insisted we come to Carolina's on my first morning in town to get a breakfast burrito To Die For.\n\nShe was totally spot-on.\n\nThese delicious hand-made tortillas are fantastic! I wish I could take a bunch back to Seattle with me, but since they're freshly-made, I'm guessing the lack of preservatives will make that a better idea than reality.\n\nI enjoyed the chorizo, egg, and potato burrito with plenty of salsa. I loved the spicy/smooth combo with the sour cream in the burrito.\n\nI hope I get a chance to eat here again before leaving town!", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "eQP0jA1qHQ7dnsvah_gEuw", "review_id": "iVymYsNYzjNxKwcV1rvUxA", "stars": 5, "date": "2011-01-13", "text": "I've passed by prestige nails in walmart 100s of times but never really thought of having a pedicure there (even though they are always busy!) As I stared at my feet, long overdue for a pedicure, I thought it was about time to try them...since walmart rarely let's me down why should the nail salon inside?\n\nTo my surprise I got a wonderful pedicure or $23 not too bad this day in age...my to mention it was just as good as going to the more upscale salon just across the street! \n\nI'm glad to be the first to review them they deserve it! Now if only they did facials at walmart and hair I'd be set!", "type": "review", "business_id": "v4vMWnv-oQWVBe7MkRQDrA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "_jjIaczpcVDpHlH6l334rQ", "review_id": "-K4Sq6SPrYwN7cNzq3wDeA", "stars": 3, "date": "2009-11-02", "text": "Stadium was REALLY nice... the MORONS in control of the parking...not so much. I understand that you're not going to get doctors/lawyers/rocket scientists to control parking and move traffic in and out of the game. HOWEVER, it would be nice if Glendale would pull their heads out of their butts and build a new on/off ramp for the stadium. It took over 30mins to get out of the parking lot!! To make it worse..the Cards lost :(", "type": "review", "business_id": "V-mvhyX6lxu5l2euYatlrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "am3CSEfTmUxi-vMZ4MSXlg", "stars": 4, "date": "2010-08-16", "text": "VOODOO Chicken was fantastic! Most of the entree selections were available over rice or pasta. They had many gluten free options and they use brown rice and brown pasta. I stumbled upon Jaspers Peak Bistro on accident and I am glad I did. Cajun inspired food cooked well. Very satisfying and delicious.\n\nThe server was a bit neglectful, but we were loving our food so much and the company of friends that we didn't mind so much. The neglectful server did recommend the food we ordered and we were very happy with it.", "type": "review", "business_id": "XeoeF0twXRV4mUZJgIjc8A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Hj8GsWV3454SmqhhK-LCAg", "review_id": "5JVIkHaT8zb3AB9UzdcAuA", "stars": 2, "date": "2012-06-28", "text": "Last summer when I was in AZ I ate here a few times and it was always great! I love the pulled pork sandwich. I ate here while I had family in town a few weeks ago and it was nothing like it used to be. The sandwich was lacking in flavor, they didn't have the same sides they used to. We got these fried potatoes which had way to much seasoning on them, none of us ate them. This place has gone way down hill, I won't be going here anymore.", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5dVErm0rBACCdS1p4eXGBg", "review_id": "6uNrrkI9KSI2CXU7LGY62g", "stars": 4, "date": "2012-11-19", "text": "Went back for a 2nd go-round. This time I got the B&G also. It really was fantastic. The gravy was about as perfect as can be with one exception - there weren't any sausage chunks. \n\nI opted for the country potatoes which I did not like at all - they were WAY too onion-y. The hash browns are great.\n\nThis place gets high marks for the service - the owners are very friendly and welcoming.", "type": "review", "business_id": "3oLy0rlzRI_xiqfQHqC4_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pkxjf3sDPOXO5U8qSBoHgQ", "review_id": "4HbEsB78iOfNfVitZhVT6w", "stars": 5, "date": "2009-03-11", "text": "First hole in one on #3. I'll always love you Vistal.", "type": "review", "business_id": "-8IvK1VBMRqYY6CQzD6arg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AFo7Qm-C4qspc5uDUUKkdQ", "review_id": "PIYswsMSN8jKNfwNWO93kw", "stars": 5, "date": "2012-02-13", "text": "I would typically never write a review for strbucks because it is all the same. I mean that in the best possible way as i have come to expct a certain level of service and quality. Starbucks is amazing for kids as my dzughter oly drinks warm milk and so anywhere i see a starbucks i can ge a kids milk. I have had great serive at this location. Since i could not find the starbucks at the asu bookstore location, i am using this review too but really the five stars is for this location. I wanted to give the asu location one star. My barista NOEl today was exceptionaaly rude. She did not know how to make nor ring up a kids drink and when it came up wrong instead of offering to fix it told me that is how it is done. If my other experiences weren t so good with starbucks i would have switched over to petes. If you happen to be the starbucks manager at the asu bookstore location too, NOEL definitely could use some more training in both drink preparation and customer service.\n\nSorry for the spelling areas but i am typing on my iphone and havent found the pellchck option yet.", "type": "review", "business_id": "5yT-0wF-QK_xAnFkymam6g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "y7sq26EXGz7XG7DSo8TOuQ", "review_id": "wR7BvZACd4WPpL2NpKhM_w", "stars": 4, "date": "2010-12-22", "text": "So if you like to (seriously) cook or bake then this is the place to go. They have all sorts of professional cooking/baking goods that places like BBB will not have... Like the professional Bosch cooking tools (mixers, grinders, etc).\n\nI can't say much for the place as I've only been there once to buy my mixer... however one of my friends is seriously into cooking loves the place. They also have cooking classes all the time and I think a lot of them are free but are subject to availibility.", "type": "review", "business_id": "5zrVZnla81bH9eh76d5GVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QH06_d6pEJHljM4vzJ-Dxg", "review_id": "FAyTHykiq2BPP_f4v5hKdA", "stars": 5, "date": "2011-04-23", "text": "The place was just your typical stable, but my wife and I had a wonderful experience here. It was our first time riding, so the staff took great care to show us how to mount and maneuver the horses. We then followed a guide through an orchard for an hour's ride (just the right length of time for us as beginners). The horses were very tame, and were easy to ride. The best part of the experience, however, was our interaction with the staff. They couldn't have been more friendly and more helpful. We're excited to go back.", "type": "review", "business_id": "BvbByaAkIfSYfcX9P5zPgw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "d2RAl63RTdfZF7kcuKcj-g", "review_id": "9yD4TOWlbdk6F1LJYAYkSQ", "stars": 5, "date": "2009-06-03", "text": "As a sissy vegetarian, I feel compelled to mention the soup that no one has yet mentioned at Da Vang - THE TAMARIND BASED SOUP HOT POT IS AMAZING!\n\nI don't know if they use any other animal broth in it, because I am willfully ignorant of such matters. Regardless, if you are a meat eater or a vegetarian, try the tamarind soup, and bring friends. It is super yummy.\n\nThey also have a rice-based soup. And, if you talk to your server, they can likely recommend some vegetarian/tofu based dishes that will be wonderful.\n\nEverything else is as good as everyone says it is. Wouldn't be surprised if people got an occasional bowl of sub-par pho; every family restaurant makes mistakes. I'd recommend everyone try it again.", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "q5nFaw9isjD_01PpVAR7hg", "review_id": "JvsnVPQaFU8YVkOE-XO0og", "stars": 2, "date": "2008-09-14", "text": "The only reason this place isn't getting one star is because the last time I went the chips and bean dip really satisfied the fact that I hadn't eaten all day. Too bad the enchiladas sucked (thick, soggy tortillas???? and beef with too much black pepper???????), the rice sucked, and even the cheese on top of my refried beans sucked.", "type": "review", "business_id": "Eq3gzgiRIGYtubbZw1mDlQ"} +{"votes": {"funny": 6, "useful": 15, "cool": 4}, "user_id": "DPsmPEPp-TfNDaHiz7czSQ", "review_id": "BozQJOS97qEXy-3dp4e9ww", "stars": 1, "date": "2009-02-12", "text": "One of the WORST experiences of my life. My friends and I decided to go and check this place out as the local radio kept talking about it. So the day we decide to go, the guy from the Colbert report was there mocking the restaurant also. We go in and we thought, \"hey wow, this is kinda cool\" as they talked about monster proportions of burgers and fries fried in lard. However, once the food arrived we sat down and although the wait staff was scantily clad, all of them had \"cottage cheese\" legs and thighs. We sat down, and my friend decides to take their super burger challenge, she said if he finished his 2 lbs burger, his meal would be on the house. He kills it, and when we ask why his burger wasn't free, we could no longer find out waitress and the owner says to us \"you either pay or i come over the counter\" he threatened us with violence, which is stupid as all we were doing was asking what about what the waitress had told us. We will never ever go there again. Being Asian, he also spewed racial slurs at us, calling us to go back to where we came from. ALL of us were born and raised in Arizona so I don't know where we would go. Anyways, don't go here. \n\nAlso, all of the patrons, ALL of them were middle aged men, who instead of paying attention to their wives and kids were hiding away at a nasty restaurant who's burgers aren't even really grilled. the frozen patties from costco are placed on a machine that rolls the burgers through, so you can't even want a medium burger, they are all torched. The fries although fried in lard, are crap. All in all, if you're a lonely loser, this is the place for you. If you're a classy kinda guy that wants REAL food, go to any other generic burger place and you will be more satisfied.", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "JoeU6upNzo-GCEFM4Nn1PQ", "review_id": "cF_Bgtp3mO_TrzJn10unyA", "stars": 5, "date": "2007-01-12", "text": "I totally agree with L.C.'s review. Going to XCP made college seem like a breeze. Yes, there were the typical high school dramatics, but I feel like the teachers were able to take a harder line on discipline, since they weren't in fear of getting in hot water with the public school district. I had an overall great experience here, and I love meeting people all over the country that have gone to Xavier. My last flight home, the person in the seat next to me went there, and we had tons of people/things to chat about. It's fun to see where everyone has ended up, and it is fun to get together with fellow alums for drinks here in Chicago, and when I am back home in AZ. I think it is so sad that the girls don't get to do freshman swimming, sophomore dances, or go to dockers anymore - those were some defining moments of my XCP career. I don't know much about other private schools cropping up in the growing valley, but if I had kids, they would be headed to Xavier and Brophy!", "type": "review", "business_id": "XfQelffgasSjLr8DeyGqHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TCHjDUFtXR8s-UJyfdl1XA", "review_id": "rmpp1NYLbZEDIwiZ5WPbEw", "stars": 4, "date": "2010-07-25", "text": "I'm probably at TMI too often. Everybody is so nice, though, and the beer is so good. I have to admit, I really don't eat anything here but the appetizers. And I rarely stray from drinking a pint (or two) of Humboldt Brown. So, yes, I am predictable and limited. Despite my limitations, however, I love this place. It's my \"Cheers.\" I am its Norm.\n\nWhat rocks: Best happy hour around. Seriously. $2.50 for some of the best brews in town? Although the hemp-seed infused Humboldt is my go-to brew, I've tried the raspberry ale (refreshing without being cloying), and the yummy \"Inebriator\" Stout (which, believe me, will knock your socks off).\n\nGood vibes, hip decor, comfortable without being pretentious. How can I not return on a regular basis?", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "jlXbohgL1d8Yg4uPY9KOvw", "review_id": "LIcRAM4tN6hhY39ON6cOLg", "stars": 5, "date": "2010-08-06", "text": "I've been going here for 10 years. My relationship began when I needed a bunch of clothes tailored for my first trip to Europe. I needed everything quickly and was very specific. She got everything done in time for my trip. \n\nOver the years I've brought dozens of clothes. She's done everything from changing a dress into a top to adding bra pads to a cocktail dress. She's hemmed and taken in. She's shortened straps and helped me change out fabric in clothing to create a completely different look. I can communicate anything I want and she'll have it done exactly the way I envisioned it. We've been able to change things so much we sometimes recreate new looks. \n\nHer prices are a little high but well worth the quality. Every single person I've recommended has been extremely pleased with her work.", "type": "review", "business_id": "swR70ahUv5Mp5i6jirJ2IQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "jAVKFq7iAE_IQYdRT--hiA", "review_id": "MbiJ_voD5DrIqUlNyCF_EQ", "stars": 1, "date": "2010-10-25", "text": "I wish I could give this location a big fat ZERO.\n\nBut you can't. But I can let everyone know how horrible it is.\n\nFor starters, their automatic doors do not even work. I just find that appalling. How can your doors not work on your store? How are people supposed to get in there to shop.\n\nThe manager of this location is nothing more than a jerk. I asked for help and all I received was attitude.\n\nFor a struggling supermarket that filed for bankruptcy, I would think service would be one thing you could promote at no cost. But, not here.\n\nI don't think it will be long before this location closes. RIP!", "type": "review", "business_id": "4F9cOLQUpVB_7H8IksKcNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bhETvq4n4oo6aa6w_dSMLg", "review_id": "fcmL8bEGB9TXyXrZdP8EfQ", "stars": 3, "date": "2011-08-09", "text": "A group of us were there for drinks late Saturday night, the bar is really cool, well thought out and decorated. Drink menu, cocktails and draft beers are all exceptional. Only challenge was it was almost impossible to get the attention of the bar staff, I am not sure that since we were a large group and had a tab running that only one batman could serve us but it was really frustrating having bar staff just ignore us! Other wise the place is great........", "type": "review", "business_id": "vwZ15OkVO6PemAe87k0M-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wUEp87FqOB9ew27Iz6zk_w", "review_id": "_ElIIVS6FSE051k9qKD8vQ", "stars": 4, "date": "2012-09-26", "text": "came here last Saturday night with a friend. the food is very good and you get a large portion - I had leftovers for lunch the next day. my only gripe is that the naan was a little more burnt/crispy than I like. I will be back to try their weekend buffet though.", "type": "review", "business_id": "_RBUU1y4yJrK0SPAd8z0-w"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "79LOudEmAcxSYVA1SF5Ayg", "review_id": "tuCLwDvEJu1Op_tZUKVpeQ", "stars": 1, "date": "2009-02-09", "text": "YUUKK!!!\n\nThat pretty much describes this place. We went there on Sunday afternoon for lunch. Only 1 person in line in front of us. I ordered the 2 meat combo, rib tips and hot links...sides of mac & cheese and potato salad. \n\n...it took about 40 mins to get my food. But I told myself if it was good...then it's worth the wait. But by God it wasn't good at all. The mac & cheese had no flavor at all...i mean none. The potato salad was very flavorless as well. The rib tips would have been good if they weren't covered in 5 gallons of bbq sauce, nasty bbq sauce at that. Their sauce is like a sweet and sour sauce...was not good at all. The hot links were mixed in with the rib tips and covered in the same sauce. So couldn't tell if they were any good, cause there was so much of that damn sauce.\n\nThe funny part was that the couple that ordered right after me, got their food and took it right back to the counter and straight out said that the food was just disgusting. I wish I would have done the same instead of spending $15+ on nasty bbq.\n\nIn short. I will not be going back here.", "type": "review", "business_id": "JUlwoai_WikznIEQ7XCENA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h3MWqj3CCZdt9yTBKHkOZg", "review_id": "6UhpdZkuYcrVwkKpxHtL3g", "stars": 2, "date": "2012-02-18", "text": "Maybe the bagels are good, but i made the mistake of getting a chicken sandwich.. Yuck!", "type": "review", "business_id": "AAGO39io2Ko0fgr6BhH-yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LRJV4PJ1l3B7BdZo1tWruw", "review_id": "HEMXe5SMT-dFmd2-IZPW6Q", "stars": 4, "date": "2012-10-24", "text": "First time at YC's, had been to other Mongolian BBQ style places, none as \"upscale\" as this. Most of the Mongo places I've been are in the mall fast food court, or in a small strip mall. This place made us go WOW as to how big it was and all the food you get for about $11 a person for dinner.\n\nTo go boxes are 50 cents, super reasonable considering you can really cram a lot of food into your bowl to get cooked. I was actually shocked that they suggested you pack the food into your bowl to get more space! Staff was friendly and even helped us out with mixing the sauces.\n\nThis place is super close to our house and we will definitely be back frequently.", "type": "review", "business_id": "chFzObJSoxAbVlFfgk5JRg"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "lC4X2crUuxT9Ac9BlOX4Uw", "review_id": "ERGur9ORKj-ES7neGnQ-fg", "stars": 4, "date": "2007-03-08", "text": "Camelback Mountain is a well-known landmark and popular hiking spot. And for good reason. The mountain boasts spectacular views from the highest point in Phoenix. Even though the mountain is easily accessible from almost anywhere in the Valley, it can feel like a million miles away from the city's teeming malls and freeways. \n\nThe 1.16 mile Summit Trail is one of the most popular hikes in the area. It therefore may surprise you just how steep it gets or how winded you may become when hiking it. Just bring plenty of water and don't overdo, unless your path to 15-minutes of fame includes a sheriff's department rescue on the evening news...", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "h8WBkAyR6fXKBChqmsXbkg", "review_id": "14gFAk_31T1zn3Z8g9ZW-w", "stars": 5, "date": "2009-08-09", "text": "Can't say enough about this place. We were amazed by the room and it's stylings and even more amazed with the pool and the view from it. We were on a mission to chill and found the perfect place. Views of Camelback Mountain and a staff that knew what they were doing. Try the brie quesadillas and the Sanctuary lemonade.", "type": "review", "business_id": "xm8F51qKjx0cfdOSukTDng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "uUr6meezb22Ig40LtvfYyA", "stars": 2, "date": "2010-03-25", "text": "What kind of sports bar doesn't serve SLIDERS??? Nachos, quesadillas, and celery/carrots options but NO SLIDERS??? Guess that just goes hand-in-hand with the NO MALIBU RUM option!! At least the bartender asked me if their fake option was okay first. Hello... no!!!! \n\nWait service was crap after a spring training game as they did not have nearly enough staff to serve people. Had to wait 15 minutes in a booth before anyone acknowledged us. BUZZ KILL!! \n\nOn the plus side, patio is pretty cool and the pool tables when it's not a busy time!", "type": "review", "business_id": "sYZt3f1YFlg0ycDMyO-vJw"} +{"votes": {"funny": 6, "useful": 8, "cool": 3}, "user_id": "2rlBbFPHyZjXSFSE8r551w", "review_id": "tcboKNNDWS3lVmJehQ0pBA", "stars": 3, "date": "2008-11-14", "text": "Do you want to eat Chinese Food in an elegant environment on a Friday night in Phoenix? \n\nBe entertained by classic, quiet standards being played live on a piano while you dine?\n\nAre you 50 years old and Caucasian?\n\nThen the Golden Buddha is the place for you! \n\nIts in the Chinese Cultural Center Mall on 44th, and a popular weekend spot for Dim Sum. For a DIm Sum starved Valley of the Sun, Golden Buddha's is decent. \n\nFor dinner, though, it is awfully Americanized and not very authentic Chinese. But with a bunch of American customers coming for dinner, what do you expect? They probably think they are getting \"real Chinese\" food by going to the Chinese Mall, but then again, they are used to PF Chang's or Stix normally in their neighborhood, so this is a step up.\n\nThe best thing about this place is the decor, which is clean and nice, with a Hong Kong Junk boat design covering the ceiling from the bar into the dining room. The next best thing is the Piano interludes on weekend nights. The service is next, which is a little overly eager to remove your plate, and the last thing is the food. \n\nThey do give decent portions. I ordered Guo Teh (potstickers) and got 6 fat ones. But they weren't served with the usual soy, chili oil and vinegar, but a soy and green onions mixture. The Mapo Tofu was ok, as they used a nice silky tofu, which was nice, but no green onions, and sliced black mushrooms instead, which I like, but not in this dish.\n\nCome here for the ambiance and music in the evenings, or on the weekend days for Dim Sum.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fbxlboEmXOv6TiznpXgdyg", "review_id": "RVwRifohk5iAh2vNYgmudA", "stars": 3, "date": "2012-12-29", "text": "My experience at Old Town Tortilla Factory is probably very different than that of the average patron. I dined here with a semi-private party with 40 other guests and we were served buffet-style.\n\nOur group was seated in their outdoor dining area, which I absolutely loved. I thought the atmosphere was great and brought an authentic Southwest feel and vibe to the restaurant. The food was as decent as you would expect sharing buffet-style with 40 other people lined up outdoors: nothing mind-blowingly memorable, but nothing too bad, either.\n\nMy one complaint would be the servers. Especially at our single table of 8, it did not seem the server we were assigned was equipped to take care of a large group. There was much unnecessary confusion at the end of the night when it came down to settling some bar tabs. Overall, it did not ruin our experience, but definitely took away from the overall positivity. \n\nRegardless, I would love to come back here with a smaller group and enjoy a fresh plate of food! The outdoor dining is definitely something you can't pass up...", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vMR4rbIcpQ3d_inCmlLJlQ", "review_id": "5_uAbm6t-5-k3viakl_TuA", "stars": 3, "date": "2011-12-21", "text": "I'll check this place out, despite the whinings of a few.", "type": "review", "business_id": "5kuZhkdpKKu9d_dTflOh4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "dZiUjwZrAEen4CgNhYvLWg", "stars": 4, "date": "2011-02-07", "text": "I finally tired another dish. The Panag Curry with tofu. It was great too. Rich thick curry crisp veggies and tons of flavor.\n\nOne thing I am upset with its the new $1 fee to use a credit card for bills that are less than $10. So get a drink or bring cash...", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CWYHXKPXqP4KgY3TyI54lg", "review_id": "3xMVX19Mhxb_JM60gUf_sQ", "stars": 4, "date": "2009-10-01", "text": "I didn't really \"get it\".\nI was expecting more Island style food, or more adventurous treats.\n\n* Bar was great.\n* Tuna Poke thing was fantastic.\n* Cajun burger was terrific, but the bun was too dense and troublesome.\n* Chicken CocoaJoe was a bust. Chicken a little dry and under-seasoned, rice and beans were bland (needs a giant ham-hock and about 3 more days). The Plaintain was overflavored, but underseasoned (they don't neem much more than salt and time).\n\nAwesome location.\nMenu will expand I am sure.\nRepaint the bathroom please.", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mlBC3pN9GXlUUfQi1qBBZA", "review_id": "Ie3mRf8R25KMrg3AZGIfYQ", "stars": 4, "date": "2011-03-13", "text": "I don't usually shop at AJ's unless I am looking for something very specific that I cannot find anywhere else. The item in the past has been canoli shells. I like to make home made canolis occassionally but I am never daring enough to make the shells. I can never find them anywhere other than AJ's. I would say that if you are looking for something special that the average grocery store doesnt have, try AJ's. They are a bit expensive though so I would go here as a last resort. Now normally, I would give this place only 3 stars, however, yesterday, I discovered their dessert counter. OMG, I was in heaven! I knew they had cakes and fruit tarts (which btw are outstanding although 30.00 apiece), however, they also have a vast array of mini gourmet desserts for when you have a major sweet craving and want something special to satisfy it. Im talking mini carrot cakes, mini fruit tarts (yes!!! I dont have to pay 30.00 whenever I want a tart from them), mini tiramisu's rounds, brownies, canoli's (WTF?) and even mini creme brulees! Additionally, they have home made chocolates which looked equally delicious. I opted for the tiramisu which was not only tantalizing but light, creamy, and honestly, one of the best Tiramisu's Ive had in awhile probably since the wine train in Napa. My best friend said that her praline chocolates were very good as well. I got a brownie for the hubby which is enormous and I will post an update once he tries it. What's even better is that the mini desserts are really reasonably priced so if you are looking for a dessert for someone to celebrate a birthday, anniversary, whatever, this is a great place to go.", "type": "review", "business_id": "nDHyino_t7O94ZzRHGUApw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RyKKn7lV7StxDngkGt_6_w", "review_id": "6WX3nATO26tqd8NhQivvLQ", "stars": 5, "date": "2010-04-14", "text": "Always a marvelous experience. The patio area is simply lovely if the weather is permitting. The menus are always excellent and they have an excellent staff. The cheese plate is always great to start and the servers will help you pick a good selection of cheeses and suggest very good wines. The food is always very good and also unique -- rabbit is one of my favourite proteins they prepare here. I have been there for Valentine's Day and also for our wedding anniversary and the always make the evening special. It is pricey but worth every penny you pay.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "YRLKAGlfuIULco4PTZnLqA", "stars": 5, "date": "2010-03-02", "text": "I just stopped in tonight after the gym, I was a bit stinky and what better way to fix that than 16 bars of soap.\n\nIt was late 8:15 when I walked in :15 before close. This is a great time to shop when you are in a rush. It was empty, and the lines were short.\n\nDespite benign the end of a long day the low turnover staff was great and personally recognized me and greeted me.", "type": "review", "business_id": "vH_WlMNtzx7Dq6Li5ecWEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mliMzOBpJEWYZ7Sn_pBPjw", "review_id": "MtQM34pRalH-Uk5-vPC8QQ", "stars": 5, "date": "2011-02-07", "text": "This place is so good! I have eaten almost everything on the menu. It is not the fanciest of places but it is great to go with friends and buy a ton of delicious food for very little money. I would recommend this place I go often.", "type": "review", "business_id": "47A3pWsdYNhFFy9gUEVcYQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "y5_vrqIylhXMrejM_-x_vA", "review_id": "17LymRTNTAyGS9mFKFJncA", "stars": 2, "date": "2011-05-02", "text": "We got an online coupon to try this place and went on a Sunday around 7pm for dinner. The decor is very cool-neat floral booths with plastic overlay, beer taps at the booths, amazing mural on the far right wall. \nWe both enjoyed our margaritas, which for the size were fair on the $8 price tag. \nThe food was tasty, but not original. We ordered the ceviche app (which we liked the best), the mushroom tacos and the house salad with shrimp. Although our waitress came back and informed us that they were out of shrimp so we opted to try it without as there aren't too many non-meat or fish options on the menu. The smashed plantains and pumpkin seeds were a nice touch in the salad, but it was lacking something special. \nI can see coming here for happy hour or for a fri/sat night drink. They had a DJ booth which was cool, but (and I may sound old for saying this) it was just too loud for a Sunday night dinner.", "type": "review", "business_id": "qiFTZ7aJz-FXt1wz8YigAA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "LtAXYqKkZS7IEzOXqS6j3g", "review_id": "lVCshRbtkBRY0vdYY4yyWA", "stars": 1, "date": "2012-04-25", "text": "I'll start with the positive. They have some friendly members of staff. That's it. You might catch a staff infection here, so watch out. It's like a shack that somehow got a bar licence. I have a friend who drags me here on occasion as it's his favourite dive. It's one wrong glance away from a fight, every time. If you like the danger and excitement of drinking a beer in a building that may collapse on you, go for it. If not, avoid the dregs of society and go somewhere else.", "type": "review", "business_id": "_BO7_ulfZdLbknZBc1Tj0Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "dWwaTl_Fmvl8djX0bVVTMQ", "review_id": "eyeX5HXBXZAmfJfuC2l7sg", "stars": 5, "date": "2008-09-01", "text": "The new location is big, open, and a bit more like a dinner spot rather than a mish-mosh diner. But that's just aesthetics, I realize.\n\nThe food is great. I had the pad thai and tried one of the duck dishes. I'm not a huge fan of duck, but this was nice and tender and the sauce was amazing. Whatever sauce it had on it was composed of peppers, mushrooms and ground pork, if that helps you find it on the menu. The drunken dragon is also fabulous, and at $7 for lunch and $10 for dinner, Yupha's a steal. I just finished the other half of my pad thai a minute ago. Yum.\n\nI think it's my favorite Thai in the greater campus area, but then I thought about it and, isn't most of the good food in the Phoenix area in the Tempe area? I think so. \n\nAnyway, Yupha is one cool lady and you can tell they're trying hard with this grand opening. A little ass-kissing is nice, but then again, places like these are for regulars, so I guess they don't have to be overly nice to me. I'm just here to grub.\n\nEAT HERE. And ask for twice the spicy you would normally. The medium is not spicy and the thai hot is medium.", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YK2rodQfBU2Oe9H6jmlTFg", "review_id": "OjIQzKRtaGMX3DFArLSmBw", "stars": 5, "date": "2012-10-29", "text": "This place is too freaking cute!!! The OJ is literally one of the best glasses I've ever had. I had the typical eggs, bacon, and toast and it was amazing. The bacon was crispy without being burnt, the toast had just the right level of buttery goodness and the eggs were folded such as a crepe and fluffy goodness. I also tried a bite of the pulled pork burger which was amazing, and the touch of apple put it over the top. Another plus was the garden patio area that feels homey like someones backyard. I will definitely be back to this cozy establishment!", "type": "review", "business_id": "BLgkoO4MKq00V2o9jOf5zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qeVLQCePbacAwFL9mBaRbQ", "review_id": "BRNy8KTrMa-MzYDotZuSbg", "stars": 3, "date": "2012-07-10", "text": "Great tourist fare. When we have family in town that appreciate a 32oz porterhouse more than a delicate sashimi, this is where we head. It is quite the drive from Phoenix, but portions are large and service is always prompt and friendly.", "type": "review", "business_id": "GaeokhqmZYuPr7i1EZtnHA"} +{"votes": {"funny": 5, "useful": 5, "cool": 2}, "user_id": "5mnhUiRWi-q6nX7TkicE2A", "review_id": "ts_AFOdE6cMr9I8DnzqrxA", "stars": 2, "date": "2008-12-23", "text": "I don't know how this place stays in business. The menu is so limited. Would you like chicken or chicken? Chicken in a pita? Chicken on some lettuce? Chicken rolled in a tortilla? And the pita chips are bland! Yuck! And the potato salad has something in it that is way too tangy. I've only been twice and tried different dishes both times but I just don't get anything greek about this place.", "type": "review", "business_id": "trAvQPp7gps0Btk-2AmLpw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I9gjrh4nnrlp78nxEfIntQ", "review_id": "ddPclyIcWY_zT9H3zX80kA", "stars": 5, "date": "2010-10-29", "text": "This is a great relaxing spot to stop for breakfast. The food is always amazing and the atmosphere is something that will send you into the right mood to enjoy the rest of your day. I wish there where more spots like this on the civic center park it's such a great location.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "dvu9jhoAg88OIKRxuaTKpA", "review_id": "iHIY4wvrRJ6bBkUXs-2C1A", "stars": 4, "date": "2012-04-03", "text": "The food and cocktails at this place are amazing - beyond comparison. I have not eaten one bad thing off of their menu. I am not a margarita person AT ALL but my friend insisted I try their primarita (essentially a skinny margarita) and it was amazing. Probably what all margaritas are supposed to taste like. I crave them.\n\nTheir guacamole is phenomenal - fresh and made right in front of you to your taste. You really can't get any better without going to Mexico and eating at at a mom and pop restaurant. The pork shoulder is great and the skirt steak is to die for. This is also a great brunch spot - the green chile chilaquiles are outstanding. \n\nThey are on the pricey end but their entrees are shareable. I love the dark, candlelit ambience. Perfect for pretty much any occasion: date night or bachelorette party. \n\nCautions: it seems next to impossible to get a weekend dinner reservation between 6pm and 9:30pm. I don't know if these are blocked out by default on Open Table. Your best bet is to make your reservation well in advance and call them directly. I have never been to this place as a walk-in for dinner. Service has also been hit or miss. I seem to get an excellent server or a really bad one.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wvSoHwvcMaZop922gaxwrw", "review_id": "_dJQfEtgn9A1OOHEgDNmvg", "stars": 5, "date": "2011-10-27", "text": "I found this restaurant when they were located in Buckeye. I have tried everything on the menu probably more than once and have never been disappointed. My favorite is the Red-Chili Frybread with cheese added. The service is excellent there. You always get treated friendly and with a smile!", "type": "review", "business_id": "jkULHBAZBM3s5DQJkM-6RA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DN5GgGgpr4Fy7TFe41QLrw", "review_id": "OyeCwTBytSU4f6-j7GI2yA", "stars": 3, "date": "2009-07-27", "text": "Not a bad place. Pizza was good but stay away from the wraps as the flatbread wasn't meant for that.", "type": "review", "business_id": "cc9KFNrcY9gA7t9D1a3FpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ok25QJsvVz04sK2dw5Mksg", "review_id": "HLJqO3AVz_7xJkS0KkpA1w", "stars": 1, "date": "2011-05-29", "text": "Like watching a train wreck in slow motion will definitely be going somewhere else for bagels from now on disappointing have been going there for years. The eight day old cream cheese was a nice touch (yuck!)", "type": "review", "business_id": "EQxR8CKkKSmHW0fgtqVosg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "11WMiRoB2sQxo61aJdSg6Q", "review_id": "8snYIT32wPSq2b6n8NH4nA", "stars": 2, "date": "2012-07-25", "text": "This place has not gotten any better over the past 10 years. The service is still bad and they are always running out of food and the food isn't that great either. Will have to say that I will not be going back to this location or the one off of Glendale and 19th ave.", "type": "review", "business_id": "bU4ZRr07Y6DFayPK3kKFsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vDpNMIiwVIBmO8kbucC7oQ", "review_id": "VOnAZMeKz15AYQxaJSu8dQ", "stars": 4, "date": "2012-02-02", "text": "Really great finds. Helped me stock a vintage 60's bar. Ron is very helpful and knows where everything is in the store. Great at finding knick nacks such as distressed wood, door knobs, irons, kitchen wares, etc. Something for everyone.", "type": "review", "business_id": "mkOgGgniAgOng1s7tjhMrA"} +{"votes": {"funny": 1, "useful": 5, "cool": 5}, "user_id": "SBbftLzfYYKItOMFwOTIJg", "review_id": "UOv5FwBa7h4zUoJLL7927Q", "stars": 5, "date": "2008-05-11", "text": "Unfortunately, my birthday always falls right around Mother's Day. Which means that every time I want to go out to eat for my birthday it is packed. We thought we'd celebrate early by going on Saturday, but it was still packed. We called ahead and the earliest reservation was 9 PM, but the person on the phone said that if we just came down, they would fit us in.\n\nSo we sat at the bar for maybe 20 minutes (IN YOUR FACE CHAIN RESTAURANTS!!!) and our beers came with a small appetizer of cheese and salami. These people think of everything. And the wait staff is pretty damn attentive. The hostess heard me say something about my birthday, which was passed on to the waitress so my super huge and yummy meal ended with a delicious dessert of my choosing. \n\nThe bread and relish tray would have been more than enough of an appetizer for me, but my partners in crime also wanted the spinach artichoke dip, which was soooo tasty. My steak was SOFT but cooked exactly how I like it. These are true professionals. Asparagus was cooked perfectly. The chicken pot pie soup was exactly what I expected and so yummy. And the dessert? Triple creme brulee - kahlua which tasted like a caucasian, chocolate which managed to be super chocolately but not too rich, and a mixed berry that would have been fabulous if I was a normal rasberry eating human.\n\nYes, it's a little pricey, but you easily get 2 meals if not more out of one dish. Especially with the yummy bread and relish tray that is also presented before the meal. The atmosphere is cozy and a little crowded. If you are wierd about personal space, this is probably not the place to go.\n\nOverall: I love this place and go every time I get the opportunity.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9EVx_OlZwFmen6KmHHIGpQ", "review_id": "BB_obI2gx8zUQQrGxhKsFQ", "stars": 4, "date": "2013-01-04", "text": "It has been quite the challenge to find good Chinese food in AZ. But I love this place. From the customer service to the quality of food, we are never disappointed. I am a huge fan of their fried rice and wonton soup. My 5 year old loves the sesame chicken, and their beef skewers are good. We find that the best value is either the dinner for about 19.99 or getting the food to go. For some reason, we get more to-go than eating there. But either way the quality is good. The servers remember your names and family. They are genuine provide great reasons to return. We eat there about every other week. If you want to try them, go lunch. You cannot beat their prices.", "type": "review", "business_id": "9x0rvR9SSX5mO1vUqx_hnQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ghoBw5923PH-03Rly2hRJg", "review_id": "EVAddATvNqUFEZBaCMHukw", "stars": 4, "date": "2012-03-03", "text": "We went to downtown chandler to walk around and we took our dog Buddha with us since its a great outdoor area. Well we decided to grab lunch and saw that Santan Brewing had a great patio that was dog friendly! The server was very nice he even brought water for Buddha which we greatly appreciated. I ordered the Cochinita Pork Pibil served with rice and black beans, it was super tasty the pork was moist and tender and the rice and black beans had great flavor. John had the Fredo Shrimp N'awlins and wow it had such great flavor, it was a new orleans style pasta that had a cheese based sauce with a kick! The portions were very generous and we didn't have to wait long at all. Overall we will definitely be coming back!", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lTyX2QAWiGda3HQLZkS9xw", "review_id": "HNqonQQQGi9u8YgvvKdTdQ", "stars": 2, "date": "2010-02-26", "text": "So even after staying here, I still don't know the real name of the hotel! It's something like Hotel Tempe/ Airport Inn-- InnSuites... with the word Boutique thrown in there somewhere. But, the hotel is NOT boutique... at all. \n\nThe price was great--as was its proximity to places of interest--and this is why we stayed here. But the free internet and breakfast was not worth the inexpensive price. I would definitely pay more to stay at a nicer place that feels a lot safer. The hotel is neighboring a strip club and the acoustics are terrible. We experienced this fully when our neighbors next door got into a huge verbal altercation at 5:00 AM, where the police were called :( not fun. \n\nThe staff are friendly, but the hotel feels like it is under new management or still opening as everything is very unorganized and unfinished. The lady would not give me a printed receipt for our stay. Another example: they have microwaves in the rooms, but not microwaves safe plates to use. A little strange? There is a Residence Inn down the street with similar amenities that I would be willing to try if I am in the area again.", "type": "review", "business_id": "90EMYSgCnZvW2wOH2M8j2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "R75rQfzSeXzO9LVh0MFjJg", "review_id": "c4bT9tmkLK4KaBR8OxInzg", "stars": 2, "date": "2011-07-24", "text": "This is a top sushi joint? Really? I had kinda forgotten what less than medicocre sushi tastes like. Most conveyor belt places serve more flavorful sushi.\n\nFirst of all, what's with the mayo on everything? Rule of thumb: if it has mayonnaise or tomatoes, or if it's cooked and lacks an exotic name like ankimo, it's probably not real sushi. My tekkamaki had a funny color and sour taste to it and for goodness sake, why can't they call it tekkamaki?. The scallop sushi was not very sweet. The softshell crab roll was greasy and without texture, not to mention the white mayo-laden crab salad that accompanied it...shudder! This place averages 4+ stars on Yelp. You're kidding, right? You people must not get our that much. Whats the criteria for a 3? It stays in your stomach?", "type": "review", "business_id": "Sqr_te9U9Y6RpnmBx0iYNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8B5pqCDFglMvfW7qj5W8TQ", "review_id": "NUBVYfBsSPshgpcWtOnFhQ", "stars": 3, "date": "2011-10-21", "text": "I always said that my last meal on earth would consist of the AZ88 Chicken Sandwich and a dirty martini. That was until I went there again the other night after a couple year hiatus. The magic, was gone. I was so disappointed and sad that it wasn't as memorable as I previously remember. I will go back and try something else because I didn't have a bad experience and never have.\n\nI recently sat at the bar and had 2 different bartenders. Both were great and entertaining. And, it doesn't help that they poured a strong and delicious drink. Get a martini!!", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wWTPOKaUgcB0z6uWZOqpLw", "review_id": "Nc2N_IHswh70gTIGeSu6Qw", "stars": 5, "date": "2011-12-27", "text": "We were here on Wednesday, 12/21/11. We had been at a Rubios in CA recently and was extremely disappointed. Not this time!\n\nJacob was our order taker and was VERY courteous and professional. \n\nMy husband got two fish tacos that were a good size and yummie. I went with the grilled veggie burrito and man, it was huge and tasty!\n\nThis is what Rubios is about!", "type": "review", "business_id": "pONHXroA2O7grj5iZ7dksQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "F1OpDFuXYiK5LIS1Ghhnmg", "stars": 5, "date": "2009-05-30", "text": "This place is the best place I've found so far for sushi in the Phoenix area. The wait staff is always attentive, the sushi isn't overpriced and their specialty sushis are actually good. They stick to the basics, and don't veer too much into the west for their ideas. The plates and silverware are clean, which is more than I was able to say at a different place I'd tried. The sushi prices are similar to other places I've seen - except you get 3 pieces, not 2. They don't stick too much rice in the rolls. The pieces can sometimes push the limit, but most are manageable. All in all, this is a great place that I will come back to time and again.", "type": "review", "business_id": "0vzZ_Bcb02rJljeMU9XkBw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "hfgzp4Gb0ssUHZD-6pjMHA", "review_id": "rXUWPTbFMA5_W4fGsRhT_A", "stars": 5, "date": "2012-12-13", "text": "This company is Awesome!!! I was recommended to go here by a friend and was hesitant since it was my first time going to a salon. I was extremely impressed with how welcoming they are and how dedicated they are to making your experience unforgettable. They gave me a facial massage treatment thing that was out of this world. The entire day I walked around with my face forward and could not stop talking about how great I felt. I will be visiting quite often. Thank you so much!\nJohn Paul D.", "type": "review", "business_id": "2fAbmJQxsV-DBHLRQ75O6Q"} +{"votes": {"funny": 5, "useful": 7, "cool": 5}, "user_id": "IGkoathSlJmIOBDGo9vUZg", "review_id": "Z4LDLAScw3lissrx9DQxXQ", "stars": 4, "date": "2011-09-08", "text": "There's different kinds of Mexican places around. \n\nType A: Pseudo-Mexican fast food (Taco Bell, El Pollo Loco, Del Taco, etc.)\n\nType B: REAL Mexican fast food (whateveri-berto's, Baja Fresh, Rubio's etc.)\n\nType C: Various traditional taquerias (Los Favoritos, Rivas' Mexican Food, etc.)\n\nType D: \"Mexican Denny's\" or chain-type sit down Mexican Restaurants--traditional-style or not (Chevy's, El Torito, Macayo's, etc.) \n\nType E: REAL formal or semi-formal Mexican restaurants (I don't know any in the Valley yet, but in the Bay Area there is the now closed La Michoacana in San Mateo, CA, etc.)\n\nValle Luna is a Type D, and a pretty good one as well. Delicious traditional-style Mexican food. The interior looks like what you usually see in a Chevy's or Macayo's. It's visually pleasing, and service is friendly and helpful. They have all the beers, margaritas, and tequila that you usually find at places like this (you know what I mean). It's the kind of Mexican place you take someone for their birthday--exactly.\n\nDo you check in to places on Yelp using your iPhone? Come to Valle Luna! Show them the check-in on your phone and you get $5 off of a meal costing $20 or more. Perfect for lunch with your co-worker.\n\nValle Luna means good Mexifood. If you're in the mood for a Type D, bypass the \"Fresh Mex\" and come here.", "type": "review", "business_id": "NYIyTj2AZJpAo7XIM-Z7lw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "U8kEzlPZ0yvMdO0HrZ6QCw", "stars": 3, "date": "2010-08-12", "text": "A very nice pizza. I haven't made up my mind which is more authentic, NYPD or Ray's. Both, have the thin NY style crust, but NYPD makes me feel like I'm waiting for an E train to Queens; whereas Ray's feels more upper east side-ish.", "type": "review", "business_id": "h762dZ33uhSKtLZ-21u6Jg"} +{"votes": {"funny": 19, "useful": 18, "cool": 21}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "sUE2sWcJ6fBz4_vvCT7wKA", "stars": 4, "date": "2009-06-17", "text": "I'm going to keep this one general and not too detailed; we all have to keep something private from the rest of the Yelp world, right?!\n\nI will say that last night after the Ignite event and post Ignite event, Jared and I stopped by this Fascinations store... we were pleasantly greeted by the staff but since we were not looking for anything specific, they let us wander and be 'fascinated' by all of the sex toys, party favors, under garments, games, videos, and more... (they do have a decent selection!)\n\nNot that I go into these types of stores often, but when I do, I like having the comfort of being with someone I am close to and/or not being harassed by the salespeople. (Yes, I'm shy, what can i say?!) Luckily, I had both of these things during my visit last night. We did make a few purchases, and I even tried to sneak in a package of 'nippies' since J was paying. He caught it though, and decided to take those off of the bill (they were $14). I thought they would be perfect for getting a nice tan line - I may have to return to make that purchase on my own!\n\nIf you're in the market for anything that you think Fascinations may carry (and believe me, if you think they do, they probably do), go pay them a visit! Enjoy and remember to practice safe sex!", "type": "review", "business_id": "svFHdh6ahq52dWxGqOMMsg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "ACAXB8aI4DxKD8tUYCc3gw", "review_id": "lsUBxzQ0UtIVozMCwfK3Pg", "stars": 4, "date": "2012-07-27", "text": "Great food! The FEZ burger is a real winner. The staff and clientele are friendly. Great place to meet people for drinks and hang out.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4df7r89VQLe2U4FWPvOeiw", "review_id": "L2NIFHpkykMg21g-a7lOpA", "stars": 5, "date": "2012-11-13", "text": "This place does it right, but hold on to your walet! U have to try the Yellow butter cake, its over the top.", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ogarUFxySoD9nF5aPx2XWQ", "review_id": "MMlK0ve7rGjZ8nXFSNM4Zg", "stars": 4, "date": "2012-02-19", "text": "Very good battered dipped fish, cole slaw bland, fries came barely warm. Service is fast for crowd, very nice and friendly staff. I'll go back for the fried cod. Did have to exchange coffee cup. It had some funk dried and stuck to the inside wall.", "type": "review", "business_id": "Oif-dEqMVS3ee_p5ZhYyqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rwj_uBFy66Uxzq9GHA_Ayg", "review_id": "SaSnGdY60ibecazmK31NNA", "stars": 4, "date": "2011-09-10", "text": "Not a bad visit. I regularly visit the Location in Columbus, OH. I have developed a certain expectation as to the type of service that should be implemented in this concept. Compared to Hooters, this place will eventually put Hooters out of business. The food is consistent and delicious. I am a huge fan of the shepherds pie and Quinlans 5 cheese pizza. The service at this particular Location was a few notches below the service provided at the Scottsdale and Columbus Locations. The servers seemed under trained in how to communicate with the guests. That preferred to fraternize amongst themselves which was the only fault that was noticed. The place was clean, restrooms well maintained, and the food was expeditiously served. Prices are a little high but who are we kidding, commodities are up everywhere. I will always stop by when passing this concept. Compared to it's competition of sports bars it is among the top of the list.", "type": "review", "business_id": "WiAY7lyT-DC7Zk3StMMp0g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "1bnJhTIy1DAPQXsVJ353aw", "stars": 4, "date": "2009-03-16", "text": "Had the thick crust Sicilian pepperoni 3/14/2009, took it to the drive in movies, and while it was expensive (23 bucks), it was worth it! This baby could feed 6 people, and it was pretty good as well. I wouldn't get this on a regular basis because of the price and the calories, but I think its the best pizza they have.", "type": "review", "business_id": "h762dZ33uhSKtLZ-21u6Jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vt0y5E2LUFeG0_PZ1b3d_Q", "review_id": "ExR82nFB6qg5xvc9kU0bnw", "stars": 4, "date": "2012-03-28", "text": "Stayed here with my girlfriend for a Radiohead show and a get away weekend from work. Got the hotel for the amenities which were great, we played tennis, enjoyed the fantastic people watching at the pool, great cocktails to include the Tequila Sunrise, and some light putt putt outside our cottage. The room was not ready when we got there so we got a cottage which was supposed to be an upgrade with a semi private patio. The room was actually very nice and had a great tv which we might have watched for a grand total of 30 minutes in 4 days. Our room was made up between 4-5 each day that we planned to stay there and then on the day we plan to check out, they came by at 8:30....not sure what the problem was there. We also had to call about our A/C after we sweated the first night but it was fixed and no problems after that so maybe it was just a glitch which happens. You are probably wondering what if anything was wrong, the only issue we had was the concierge.....nightmare, no help whatsoever. Called several times, both girlfriend and I and got the reply on two separate occasions to just check google. I have stayed at less nice hotels and had much better service with concierge, this hotel should realize what their clients might be interested in and do some research. \n\nAll in all, great trip and a nice and above par stay. I would certainly stay here again if I can get my girl to go with me!", "type": "review", "business_id": "5Feaj6aixO_QxKFnkHf3xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "omoEjYFKVV7e-DtnezeUOw", "review_id": "gdqdr3ZcL_oMxSYuPLl4Zw", "stars": 5, "date": "2012-08-12", "text": "Amazing selection of beers with great tabs educating you on them and often ratings. Wine and booze selections are great too. Killer store like candyland for adults. Prices are excellent and so is service if you need help finding something. Great place!", "type": "review", "business_id": "RZS7pdeB3xOyHwYgT7VYGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EG1CvRUKbP3Gh82sztMKyQ", "review_id": "_2irBRNM0-wg3ss8UDtciQ", "stars": 5, "date": "2012-01-28", "text": "Just have to rave about Becca and Todd's Zoo tour on a Segway. It was the highlight of our trip to Scottsdale. I had never been on a Segway before but it was so easy and Becca taught me all the tricks. We never would have visited the Phoenix Zoo if it was not for the Segway tour. It was fun, easy and worth every penny.", "type": "review", "business_id": "CxeEW32ufIL3k4fMW1Zg3Q"} +{"votes": {"funny": 1, "useful": 5, "cool": 4}, "user_id": "SEDFpR4oMPKqXMjbJiMGog", "review_id": "dkcWEpXAeiqvus3yyAzLAw", "stars": 4, "date": "2012-12-28", "text": "Live music, plenty of beer on tap, and a very happening place. This place was packed with people however with a group of 6 we still found tables and chairs. \n\nI enjoyed some beers on tap, but wanted to try some food so we ordered the Copper Blues Burger. Very good burger, fresh tasting and the bacon and cheddar hit the spot. The fries are good, which I normally do not eat at all. \n\nNothing like enjoying a nite out with friends. Live music, great food, and plenty of drinks and beers on tap to enjoy. We all had a great time out. Service was great and everyone seemed pretty friendly there. Great atmosphere here.", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o4CAGmcD-voehPNOb5tLPg", "review_id": "7zQIbZPUPfHBcRazUV-pjQ", "stars": 4, "date": "2010-12-23", "text": "Great Thanksgiving meal. I had a similar meal at Busters on the Lake for cheaper last year but that doesn't take away from the good spinach and sweet potatoes. Good service, good bread, good view...", "type": "review", "business_id": "q-qjZDKcBdDRuIUxj7b97g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "yZEz7ZHDt9MU7ehH9ecCQA", "review_id": "v2HYxvgDqne6iq2SAKyLuw", "stars": 4, "date": "2012-08-09", "text": "I love the Humble Pie on 7th Street. Great staff who always remember us and are very nice and attentive. The food is always good. One of my favorites is the burger. I know the is strange since you wouldn't think of Humble Pie for their burgers but they are fantastic! Also love the tempura green beans and the veggie salad! Drinks are great too. My favorite is the Pomegranite Martini which I have to limit to one per visit! They have a great happy hour and a super relaxed atmosphere!", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9zp_JEmUScBI1lx9RuxGiA", "review_id": "5Ytbypu4GBiZEG_lf-G0CQ", "stars": 4, "date": "2011-07-20", "text": "Smaller than the Chandler location, but definitely a great place to find bargains. Come here prepared to do a bit of digging (especially in the shoe section) and expect to wait in line.", "type": "review", "business_id": "WowrRUKvjiLX4zT12xU_yw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "LI1em8rbUaQvCc2vj7Sp-A", "stars": 4, "date": "2012-09-24", "text": "My daughter has been attending Gold Medal Swim School since February. \n\nThe instructors are great! They always take the time to say hello outside of class and they are very caring. \n\nThe class ratio is fantastic - with a max of 3:1 in each beginner (Starfish) class. \n\nCurrently the price is $72/month, which includes 1 class per week during the Spring and Summer and the ability to schedule unlimited classes per week from October-February. The school also routinely sends emails for a free class when there is same day availability (usually with newer instructors).\n\nThe only reason I am leaving this at 4 stars is that my daughter has struggled with swim lessons in the indoor pool because some of the sky lights are not covered/filtered. She is very sensitive to light and I am concerned she may not be able to progress with the way the skylights are currently. Only time will tell! \n\nThe management at Gold Medal is top notch, which is probably why they retain such happy employees!\n\nOverall, I am very pleased with Gold Medal. And, yes, the owners were Gold Medal Olympians!", "type": "review", "business_id": "GVg4GHHRblwY1MFlV1ubAw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "uZ-vivMs1ShNceIqsfhBPw", "review_id": "lvwxXZKlIxK_AGpWHFlwLQ", "stars": 1, "date": "2009-08-30", "text": "Absolutely disgusting. I had enchiladas and a taco, just to give them a chance. This was the worst mexican food I've ever had. Waaaaaay too much government tasting cheese on the food, and hardly any meat. I do have really high standards because I grew up on Tex-Mex but this was just pathetic......", "type": "review", "business_id": "zWl6V8-L6m9Xfmpq_MqkKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hLU5Od-sff-BXigMYm2rlg", "review_id": "Kj7RbTknAWYtEoDWxrg7ew", "stars": 4, "date": "2011-11-07", "text": "We'd heard that this place was really tasty, but learned that the original location had shut down recently. We found their second location and gave it a try.\n\nIt ended up being so good that we went twice in one week while visiting the area. We had a chicken quesadilla both times and on one trip added a large nachos with chicken. Great flavor, good-sized portions, good value.\n\nWould have been a 5-star rating had our server not forgotten our drinks and had the restaurant been cleaner during our first visit. We were directed to sit anywhere we liked, but it took us a while to find a clean table even though there were only two other tables occupied.", "type": "review", "business_id": "AW1uq13zFslTBoD6vL99Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "75NhZ5Wf1UN7o7v1UsnfdA", "stars": 4, "date": "2008-08-26", "text": "I really love their sourdough bread. I get the veggie on sourdough and really love the taste.\n\nDrive through line is a little long and sometimes the bread hurts the top of my mouth, but this is my favorite fast food place.\n\nOH.. the pizza is great too! I always get cheese with jalapenos. The bread they use for the crust rules. \n\nIndoor and outdoor seating. Staff does not speak English very well, but I have never had an issue with my order. Been there at least ten times.", "type": "review", "business_id": "2dJ_UPPCpcjo5JeYPnjaYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rL-OqUZbMwKUKuUHasBU3Q", "review_id": "r7p_sGv5K1tRPA3lfgIlng", "stars": 5, "date": "2012-05-31", "text": "Fabulous! This was my son- in -laws Restaurant Week choice and an excellent one. Lots of menu choices, a drink included and excellent service from the moment we arrived until we left. We will return soon and often.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "52bR56y1BntpDh-AQEqkiw", "stars": 4, "date": "2012-05-03", "text": "Great addition to the Indian School corridor. I love the location along the canal and the patio has great views of Camelback Mountain. There is an extensive beer list and the drafts are reasonably priced. The vibe is very cool and the bartender was extremely friendly and helpful.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7i14F52gOUBqlRudUCwPsA", "review_id": "2_dHopH9x1zi8X9axgwWHg", "stars": 4, "date": "2009-08-07", "text": "Confession of a landlocked seafood lover: I'm a fan of Sakana. I know, I know, it's not the Most Perfect Sushi Ever but all things considered, the prices, variety, specials and service are far above average. I'll take it! There's a great \"Customer Appreciation\" sushi menu offered Thurs.-Sun. and though there's often a wait, it's a quick one. Don't be afraid to order an Ichiban in the lobby. They'll happily deliver.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "QPYhhRExQX4f1fhoNsTw6Q", "review_id": "chgNRxKwSmSnbLHbXN7B3Q", "stars": 3, "date": "2012-05-07", "text": "Just OK. But like pizza and sex, there really is no bad BBQ. \nI think there is something lost in translation from its Texas roots to AZ. Gone is the appeal of the gas station dive. Atmosphere feels a little phony in a pretty, new building. The biggest problems I have with the food is the overpowering mesquite flavor and mediocre sauces. The Texas roots explains the loyalty to mesquite, which is understandable and you cant fault them for staying true... but a little hickory or less creosote-tasting smoke would be nice for a non-Texas palette. The sauces seem a little amateur. I know Rudy's is no amateur in the business, but I think they settled too soon on their signature sauces - they taste like the first ones I made in my backyard. If a true amateur (me) can evolve into better sauces, so can Rudys. Now I need to stop at the new BBQ joint next door to see which one will get my BBQ dollars... stay tuned.", "type": "review", "business_id": "IWwt0vm8lYbVoyGSPd2Z9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Wy7f9DOuBEOenhnA7KIKoQ", "review_id": "hQ1SdNcpf5okNhco2MyWQw", "stars": 5, "date": "2008-04-02", "text": "Oh Rhythm Room, how I adore thee!\n\nI have seen some of the greatest Blues legends play here and have never been disappointed. Whenever The Rhythm Room All-stars play, I definitely try to make it. They are rockin'. \n\nI dig the dancing, the bbq (mmmmmm) and I enjoy when the f*ck the police guy is roller skating on the dance floor!\n\nI do recommend getting there early if you want a table and a chair. For bands I really want to see I get there before they open, get in line, get a table, then someone in my party goes to grab us some bbq and we start drinking and eating and waiting for the music to start! \n\nI always have a great time here! And now that you can't smoke it's even better!", "type": "review", "business_id": "JZJqJadk9pSoCGT7VTwBvg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "lAngRi4lwBIHmjCBVLd-8Q", "review_id": "lyVcqcmA23jqSxMXod_Vuw", "stars": 3, "date": "2012-05-09", "text": "I was here for a business dinner recently and loved their new hummus plate. They put grilled zucchini on it and had some fresh jicama which was awesome. I wasn't in the mood for BBQ at the time but so I ordered a turkey burger which came on a whole wheat bun and some steamed broccoli. I love the healthy options. Thanks to Red Robin for helping to fight the battle of the bulge. Just make sure you bring lots of will power when come here because it's easy to blow it...especially with the desert menu!!", "type": "review", "business_id": "AgJbkqR-wre409if4fTbWQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "4zinPJ38-WxjPPomn7CPAQ", "review_id": "FbAGK5T8Ks-YHP2YaOCIHw", "stars": 5, "date": "2008-02-24", "text": "Very good place for breakfast & lunch tucked away in the crowded shops at 44th & Camelback. I kinda found this place on accident. I meant to just run into AJs and grab a salad to go, but was forced to park basically across the driveway from Taylor's, and, being closer, I opted to go there instead. \n\nTaylor's is open 6-4ish (I couldn't really tell, they probably just changed the hours and scratched off the hour number on the door), and they serve breakfast all day- well, all day they're actually open- which is always good with me. \n\nI was in the mood for corned beef, and , bingo, there it was. Nice mound of lean tasty beef with melty cheese (no saurkraut or thousand island, please.). And the bread- oh the bread- grilled to be crispy on the edges but still soft inside. How in the hell do they do it? I don't know, but I'm in love.", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 4, "useful": 2, "cool": 2}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "hG5zbjZZ3YYG5dTz0_S2AA", "stars": 4, "date": "2010-12-30", "text": "Considering how douche-y it could be, it's really not that douche-y.\n\nDrinks are expensive but prepared right. Service is good. The seating is comfortable and the atmosphere relaxing. \n\nNote to the single guys wearing chin-strap beards and Affliction t-shirts while looking nervous and sitting at tables alone and not approaching women: Try \"Hello\" or \"Nice outfit\" or \"Those martinis are great, aren't they?\" or something. I'm old and fat and dress like I'm teaching a fishing class, but I'm not afraid of girls. Just talk to them like they are people.", "type": "review", "business_id": "peA3F-PnIfijYr8HuG-A-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iEuLOmNVXgwrn1fkqRedsA", "review_id": "ZAl_aYiWtewOAUZxOGMSCA", "stars": 4, "date": "2009-08-29", "text": "I'm apparently not as big into Greek as some of the others have posted, but I can honestly say anyone who's given this place less than three stars probably just expected too much. I had the best Greek salad that I've ever had, and I will agree with one review that it was definitely too light on the feta. \n\nThe service was great, food was excellent, and while it may have been a bit on the pricey side I felt as though it was a great value. Not one of the places I would take out-of-towners and rave about, but a great little spot to hit for lunch.", "type": "review", "business_id": "Gw8DsQQCO5m1hggXqwynFg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QfRmDp4obVNSfFneMfFMNQ", "review_id": "D6UH98Mc7S5IyY0NbnlDMw", "stars": 4, "date": "2011-02-09", "text": "Outback is a chain resturant ~ so they have their formula perfected. Each time we hav eaten at OUTBACK we have had a great dinner and good service.\n\nLately each time we try to eat at OUTBACK there has been a 20 to 30 minute wait ~ we don't always wait . . .but it's wonderful to know that things are picking up and that there are quality resturants that have waiting line ~ to me this is a blessings.\n\n: )KC", "type": "review", "business_id": "ufKmcpK6OTaWzeBGWNOa8A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Bc2UjSePEGvqSdHvz2HKGA", "review_id": "Gdjz1GexBlMvf2_Flaflmg", "stars": 4, "date": "2011-06-26", "text": "This place is so cute. To begin, it is trendy but comfortable. The service is fantastic and the food is really good. We were a party of six, and ordered a few appetizers (the deviled eggs were good) and for lunch, many of us did half flatbread/half salad..for a reasonable $10. Mine was delicious. I had a blueberry salad which was really tasty, and my margherita pizza was great. The sun-dried tomatoes were perfect. I will be back for sure when I'm up for drinks....a wee bit early for drinks today as we ate at 11:15.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1XVucFSI-0gvE-V7RBVOSA", "review_id": "hRGIrrFnfHGnjAUjvmrvXQ", "stars": 5, "date": "2012-02-10", "text": "Man oh Man! Since leaving New York six and a half years ago I have been in search of good Chinese Food. I had gotten to the point where I would have even settled for \"decent\". A work colleague suggested that we dine here on the way to a corporate meeting. While I realized that he was a native to the Phoenix Metro Area and had probably never even had the real thing, I trusted his palate and restaurant sense. I was so pleased when we walked in and saw that the diners were predominately Asian. I knew that a great Asian market was next door as well and these things were the first things that signaled to me that I was probably going to get good food. I was thrilled to see familiar Dim Sum carts rolling through. We were a party of 7 and shared around. The food was fantastic! Dim sum was fresh and succulent. Our orders from the menu were equally delicious. The veggies were fresh and brightly colored. The tastes distinctive and delicious. The Hot and Sour Soup was perfect filled with all kinds of Chinese mushrooms etc. I was delighted and reminisced about the many fantastic dinners in Chinatown NY. This food was comparable. I do not live close by, but I will be a regular there. Chandler is clear on the other side of the World from me but I figure if Marco Polo could do it, so can I! Phoenix Palace is the REAL Thing!!! Friendly prompt service rounded out the experience. Hooray for Phoenix Palace!", "type": "review", "business_id": "9Qt1pt0pk2VWz0chdGk-jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IXpLR3rC4TKeYyvQTHlLjA", "review_id": "CbLUWvNkepZKqsPnJCwtMQ", "stars": 3, "date": "2011-09-09", "text": "More than the food, the place is cute. What it looks like from the outside does no justice for the inside. \nVery Americanized Asian food so if you're looking for authentic... don't come here.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 10, "useful": 9, "cool": 10}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "O63iVcL62BuSoqwtB8Qnmg", "stars": 4, "date": "2012-08-21", "text": "Shopping around TMP made me thirsty for a cocktail. There is some type of Cantina I passed by that did not look relaxing so I went to my Yelp app to see what else was around when I saw the Thirsty Lion. I was expecting an English pub-like atmosphere and I was pleasantly surprised when I walked in and saw the clean and modern decor. I sat at the bar, a great thing about this place is that it has HH on the weekends! The bartender wasn't that great. He just threw down a drink coaster and walked off.... uh... really? When he came back around I ordered a specialty drink - mint and cucumber cooler or something like that - I was hoping for more cucumber than mint but the mint was overwhelming, it tasted more like a mint julep. They did have a great selection of beers on tap but I really wanted a cocktail so the next round was a jack and coke. \n\nI wasn't planning to eat but I noticed some hard-boiled eggs wrapped in sausage on the HH menu, I had to try those, it's not often that I see something unique on a menu. They were pretty good actually.\n\nI can't wait to come back.", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pfwmCVwb1Lhsq4pbxh30Ww", "review_id": "DcMPVUltzJd9Py9BK7VrvQ", "stars": 1, "date": "2008-11-18", "text": "We use to visit this Pub 10 years ago because they had a nice English waitress and excellent fish and chips for the price. However, we went back a few weeks ago and boy were we disappointed. The price of the fish and chip dinner went up and they cut the portion in half. No one assisted us in putting two tables together, we had to do it ourselves. Two guests wanted a good English hot tea and they didn't brew it in advance, it was just thrown into a small metal tea pot and we had to ask for cream and sugar. So we've decided there are newer and better places to eat fish and chips, especially up in north Phoenix.", "type": "review", "business_id": "9r5YLKGTdQz_Q29cBifePQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U9yEiMEK72iROMPdWzqOfA", "review_id": "AHbVHXUZwDGYa5GV2_NmeA", "stars": 4, "date": "2010-11-14", "text": "I am not only new to the area, but to the southwest. I'm so excited to try food from as many taquerias as possible to find my favorite. Taqueria Los Angeles is yummy and super inexpensive. $5 for \"your choice of two\" with rice and beans. I will certainly return.", "type": "review", "business_id": "7LbqRnM6DPbLuBV4DGi5iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mge-pOpNNuO4IL2o-mXB-g", "review_id": "3Nn-d5CGzV2scaxDRHhAFA", "stars": 1, "date": "2012-09-08", "text": "My rating is based on the fact that as a vegetarian, they charge $8 for a small mediocre bean burrito. Maybe if this bean burrito were exceptionally good or large in size, but it was neither. I'm not saying that if your idea of Mexican food is Chipolte, you will not find what you are looking for and be happy here. But if what you offer your vegetarian customers is deleting the meat and not adding anything else and charging full price, I can get MUCH BETTER elsewhere and pay way less. \n\nGRINGOS: Take off the Chipolte blindfolds! Go to a real Mexican restaurant and see what real food is supposed to taste like!", "type": "review", "business_id": "cQZcWeIDKEF-7nWU3gJMUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Vibtr-_DiDbwZqaxKK8SYw", "review_id": "RUUg3ZEjPzYKN97VG2fBSA", "stars": 1, "date": "2012-10-23", "text": "This place has gone so downhill. If I hadnt gotten my chips, salsa & water immediately, I wouldve walked out. Margaritas are always awesome. But the service and food is straight up AWFUL. Microwaved enchiladas, no rice, rude, cold, unfriendly, uninviting service...If you're looking for a fabulous, neighborhood mexican restaurant, try Las Glorias Grill. The location isnt as great, but the food, service and drinks, blows this place outta the water. After years of going to aunt chiladas, Im NEVER going back again. They dont deserve your money either....", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H8Iol3uAHtbycO9MJ4i3lA", "review_id": "k79glb4ggVAYj9pE_WKraQ", "stars": 4, "date": "2011-01-14", "text": "Fairly typical Walgreens. Sell beer and wine now. Photo and pharmacy. Redbox movies.", "type": "review", "business_id": "MdwoM1Qf87nmdA6Ma6tnMQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "rgMMUa7c4fbgsP8YFCWZBw", "review_id": "lzABdhPeBbBEYaFrf7ynqA", "stars": 5, "date": "2011-04-16", "text": "First time here, new favorite. You can create your own antipasti plate, and the pretzels and fondue are AMAZING. Also the ricotta gnocchi is the best I have ever had. Service was good, Liz was our waitress and she was very friendly and helpful. Monkey bread is also stellar. I cannot wait to go back.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "fGMaltkx1S55k3GpeLpTyQ", "review_id": "8iRQBqpE455Zlj7gR2mFOg", "stars": 5, "date": "2011-01-11", "text": "This little spot in the art district of Scottsdale is as good a lunch restaurant as I've been to. I had the mahi mahi tacos, and was blown away by the attention to detail in the flavors bringing the dish together, as well as the wonderfully tasteful presentation. \n\nOf particular note was the attractiveness level of the waitresses, about which I don't have sufficient words to do justice. Both my father and I were hard pressed not to buy a condo in Scottsdale just to stay and have all our meals for the rest of our life there solely to appreciate the view. They were dressed tastefully, not in the slightest bit 'slutty', but holy god.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WHi6um_c1RaFecYZ-TlRfQ", "review_id": "Ql2ocTbNwTlRiaBFuxj2kQ", "stars": 2, "date": "2011-07-17", "text": "I went to Arriba last night with my wife and another couple. I have been to this location a handful of times and always had the same result. The food was okay but the main problem here is the super slow service. \n\nIt took us nearly two hours to eat dinner here. It took forever to get our chips and salsa. It took us nearly as long to get our drinks. Forget about refills. When our food finally arrived we asked for an additional plate but never got it. I asked for a water when our food came out and got it after I was 3/4 done with my meal...and I do not eat fast. Our waiter was friendly but hardly ever checked in with us. When we asked for the check he said he would bring it in five minutes. His five minute deadline was not met.\n\nI don't think I will be eating here again. I have given them too many chances.", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7DerHvOIX_t9xLFyXFEbCA", "review_id": "A7z1x4xUaVSSgJXIHk49hg", "stars": 5, "date": "2011-01-06", "text": "I have been frequenting this spot since they opened and have always said they were better than Starbucks but Iam in a special kind of heaven after the change in menu and addition of pressed tea lattes!!! Yum, yum, yum!!! Far better than Starbucks powdered green tea latte and roughly a dollar cheaper than the high priced cup there as well. The early morning staff is great and free WiFi is an added bonus. I can honestly say for the New Year, I'm quitting you Starbucks......and mean it.", "type": "review", "business_id": "-x_jL2OCWPdObGTOwIpN4w"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "h_sy6uDQ3F3peMVccSThsg", "review_id": "ZpFH0PzAqZbh-wAtSUmF1g", "stars": 1, "date": "2010-11-06", "text": "I'm never shopping here, I don't wanna shop somewhere where associates think if u can afford it in just goona purchase the bag online then looked at if I could afford it", "type": "review", "business_id": "-fIGHIUdHX-T_ZGh2IQz4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ydXHK-xdFzo0T_tNNCwijw", "review_id": "D-SmuWWgk03wVWaErvLE8Q", "stars": 3, "date": "2011-04-09", "text": "Food was good. Slow service. First time that I've had to walk outside through a parking lot to get to the bathroom.", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Q43j4rd_K0YEjGAb7qB8MA", "review_id": "88HOcrO0GLBNLUteN5h0DA", "stars": 5, "date": "2011-04-27", "text": "I have totally fallen in love at Tuck Shop. Everything here is fantastic. My friend and I come here about twice a month and enjoy some snacks and wine. The beer battered Cheese Curds may just change your life for the better... we are seriously tempted to each get our own order. \n\n(I am not very good at sharing and i always get what I want! ...No i'm not an only child... well, maybe I was until i was 11, how did you know. WAH!) \n\nOh, and Laura is fantastic. She always takes great care of us as we enjoy a glass of wine on the couch in the reading room. \n\nThursday's special is meat loaf... don't deny yourself, just indulge. :)", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "4muLyMlTP1ijRLACBBRcaQ", "review_id": "UOUayuNj1fsk5Wiw4mKqVw", "stars": 1, "date": "2009-05-11", "text": "Your reviews are hilarious!! (shoot--who was this referring to??)\n\nI try to avoid WM. I'm always warned about the possibility of TB or now, pig flu. I think the hub just doesn't want to go shopping--not that I LIKE shopping.\n\nI know someone who worked WM in WA and she says the conditions are just horrible for employees. I've spoken to at least one cashier that is actually FRIENDLY and LOVES his job benefits and bonuses. He's a minority I guess bc as you all said, YOU CAN'T FIND ANYTHING and CAN'T GET HELP without attitude, usually. \n\nI'm standing there staring at 2 mgrs, and they just ignore me for a few minutes? I didn't want to interrupt the conversation, so I waited. FINALLY, one asks if I need help??? NAAAAAH, I was just admiring your huge body and wondered how long it might take me to look that way. FOOLS! \n\nOn my last visit, a customer said \"excuse me\" to the 3 employees behind me in the aisle. I glanced at her and she sighed, rolled her eyes and shook her head as they all ignored her. I chuckled and acknowledged her frustration. Then one employee pipes up with \"OH, I'm sorry ma'am, can we help you?\" She asks to find an item, the customer thanks them, they say \"You're welcome\", the customer leaves and they sarcastically continue to each other: \"THAT'S WHAT WE'RE HERE FOR. NO, THAT'S NOT WHY WE'RE HERE. We're not here to find stuff for stupid people, we have better things to do.\" That's why, when I walk by an employee working, if they lay eyes on me, they immediately look away and pretend to be engrossed in their job, to avoid stopping to help. WT? What's wrong w/this management??? \n\nI agree, you can find some deals and save some money, but the attitude is over the top. There are a FEW employees that actually smile and appear friendly, at least when I see them, and I can point them out. If not for the more often than not occurences as mentioned above, I stay OUT of WM as much as possible, which is a lot. I've drastically reduced my trips there, but more importantly, I've cut out a huge chunk of purchasing from WM.", "type": "review", "business_id": "89yv89wcF_-ehN7_pUnl6w"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "VXUIEbW9_xbCqs12EYD8QA", "review_id": "lnibY6BckqyirtIWSzPSJw", "stars": 4, "date": "2009-03-21", "text": "I love this Starbucks. We all know every Starbucks is expensive, so forget that. But these people have our drinks memorized, if you go there alot anyways, they're on top. Good Starbucks.", "type": "review", "business_id": "IBrQEBb6_MFtCEiulodXeg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZIiZ0-bwrus3wIfPNDYevg", "review_id": "kOgY3bcATt9haPKxbVyWWw", "stars": 2, "date": "2011-12-01", "text": "I used to be a Los Sombrero's local. Started going (1998) before they were in their current location. The past few years Los Sombreros has gone hill. Increasing prices and food not as good. Marg's are subpar now. Los Sombrero's is no longer living up to what it used to be. Food is still good, just no longer great. All great things change and I am sad to see Los Sombreros change for the worse. \n\nThe original chef/owner Jeff Smedstad has left and started Elote in Sedona - I must try there as I here it's what Los Sombreros used to be.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 4, "useful": 4, "cool": 1}, "user_id": "_LEQt7oTVjiaXyVHK_MM7g", "review_id": "U6s0evfxbYhqVX_sOVfFdA", "stars": 2, "date": "2007-11-05", "text": "Being a Phoenix native, I almost felt embarassed that I only ate at Pete's for the first time seven years ago. \nI had gotten back from England and was trying to recreate the orgasmic fish and chips experience I had there. Pete's was around the corner from my complex and after all, I DID see so many of those \"I'm Addicted to Pete's Fish & Chips\" bumper stickers all around Tempe. I had to try it.\n\nI ordered the two fish combo, and my reaction was...what the..?..are they serious? \n\n1.) The \"chips\" suuuuck. No salt, overcooked and stiff. I couldn't even eat them. \n2) The two squares of fish I got were alright, but I may as well have gone to Safeway and bought a box of Gorton's fish sticks. \n3.) The red \"special sauce\". Wtf? And you have to pay extra if you want tarter? Lame. \n4.) No malt vinegar. Enough said. \n\nWhy there is such a collective hard-on for this place is beyond me. It's a laughably bad example of Fish and Chips.", "type": "review", "business_id": "AzNRSPu8LcsedsfZ694uCw"} +{"votes": {"funny": 4, "useful": 6, "cool": 4}, "user_id": "F5NvOP5YeKetvkYo1W4t3A", "review_id": "xXAiifY_2jgs9xlAmvjwfg", "stars": 5, "date": "2011-05-21", "text": "I am one step closer to completing my goal. I want to visit every Grimaldis in the US before I die. After tonights visit to this one, I have most of AZ taken care of.\n\nWe decided to come here because we had never been to this one. We arrived and were seated right away. Surprisingly this one wasn't crowded at all and that was fine by us. \n\nWe got a small caesar salad, a small pepperoni and garlic, and a personal white pizza with roasted red peppers. A few minutes later we got our salad. It was really good. Just enough dressing, lots of cheese and croutons. It was a good starter. A few minutes after that, our pizza came out. If you have read my other reviews, you will know that I think Grimaldis is the best.....this pizza was no different. I really liked the white with roasted red peppers. Everything was delicious and even though there was some doubt we could finish off 2 pizzas, I turned on my inner fat boy, and finished off all the pizza. It was tough, but someone had to do it....little kids are starving in Africa somewhere....lll be damned if I'm going to waste some slices of this amazing pizza. Down the hatch it went....my stomach doesn't like me right now because its so full, but he will forgive me once he doesn't get any of this delicatessen back in San Diego LOL.", "type": "review", "business_id": "QbqJEXdngh_9fwqVTI0CJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q3Fa0PhTGzRl-05fXHIi4g", "review_id": "mk2DDzC295Y7NuW1dP-RcA", "stars": 4, "date": "2012-12-07", "text": "This is a great dog park to have in the area. It has a ton of room for the big dogs to run around and there are baggies and trash cans scattered all around it so you don't have to go far to pick up after your dog. I also love that there are a couple water stations in case you don't bring your own water bowl. The area for the small dogs looked to be a pretty decent size as well. The only downside to this dog park is that the ground is pretty muddy so I'd recommend wearing shoes you don't care about and bringing extra towels to clean up your pup after they're done.", "type": "review", "business_id": "lQpdn4RvgG9vT5CHv3qj9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_LGc_12v8LaaOdz0mdYkXQ", "review_id": "R6E8_VsNpIpwTNDxs-ltoA", "stars": 4, "date": "2008-09-13", "text": "Good food and really good beer. In fact, on certain days their own micro-brews are a dollar a pint. That's right, one dollar a pint for liquid sunshine. The pizza is ok, but the beer is why I go. Try it for yourself, I'm pretty sure that you'll agree.", "type": "review", "business_id": "NlxvN9wUw14qIS6ledk15Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9-6uPVp5Lr9HBJtCJGAukw", "review_id": "MTog75VPgARPOVDGVFAgUA", "stars": 5, "date": "2012-03-13", "text": "As good as I always remember it to be.\nTheir fries are way better than In-n-Out (I am a fries connoisseur)\n\nTheir burgers may be getting smaller? Still delicious as ever.\n\nI pass on the drink though, an extra $2+ makes the meal quite expensive..\n\nPrice: $9+ for the cheeseburger (double) and Regular fries\n(in-n-out: $6+ for double-double and fries - half the size)\n\nI would eat here every day if I had the option.", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vQtiYv_KYj4ucNKv5iRfQA", "review_id": "E2fr0LyYRX344sFJIy_baA", "stars": 3, "date": "2011-10-01", "text": "Went here on Wednesday to take advantage of the $30 certificate. It was quite busy, which probably shouldn't of been a shock, location and all, so had to wait awhile but that is the risk of not getting reservations right? =P. \n\nAnyways, spent time in the bar which was nice, the bartenders were willing to answer questions, though not always the most chatty, but I think that was due more to how busy it was then not being friendly. The happy hour prices looked pretty good, $2 hot sake, $3 beer, $4-5 cocktails. Sushi was also on the cheap, Nigiri was from about 1.25-2 dollars I believe, and the other rolls ran from 3-5 dollars at the worst. They also have some non-sushi appetizers on there. \n\nOnce we got a table, we were paired with another group, which was actually a nice experience as I do like the communal type seating stuff. Granted if you have a small group and not a fan of eating with strangers, might not like it much. \n\nSince it is a place I always consider more about a show then the food, going to start with that first. The show was eh, they do some of the knife play stuff, and a few things here and there, but honestly it wasn't all that exciting compared to the other place I've been (Sakura). The chef was friendly though, and the server was personable so that is a plus. Otherwise was a bit disappointed with the show portion of the meal. \n\nAs for the food, I had the Filet Mignon and lobster tail. The filet was supposed to be medium, but came out more medium well in my opinion. It was lightly seasoned, leaving mostly a beef flavor then anything else. Now it had a good beef flavor, so by no means complaining just like a bit more seasoning personally. The lobster tail was good, buttery from the butter, but more importantly nice and sweet. How it is to other lobster tails? can't really tell you as I don't eat it that much (college students don't exactly have that sort of cash you know? =P). But again thought it was good, wasn't fishy and nice and sweet. \n\nAt the end it came with a choice of ice cream, I tried the green tea ice cream which about the same as any other green tea ice cream I've had. Basically its sweet, with a hint of green tea taste, and that is about it. \n\nThey have to sing to you of course, and they take a picture which they give you with a code you can access for up to 60 days (I believe) to download it, which is a nice touch. \n\nFor the money, I really wouldn't go unless I had the certificate, however I would go back for the happy hour, probably my favorite thing of the whole night.", "type": "review", "business_id": "TMZP6Kzkc-FytzgbgIC9JA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "IEzFV69twVlvXhhOsUGYmg", "review_id": "_Dx1-0gLz_-9FElMBr605Q", "stars": 1, "date": "2011-08-07", "text": "This was the second time I placed an order over the phone that was delayed over an hour. I was told over the phone that it was going to be only 15-20 min for me to pick it up. I showed up 30 min later and my order was still delayed. I ended waiting for another half of hour to receive my order. The pick up service was the worse I have ever experienced.", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2h0A-NirfNl2p2SquFWYHQ", "review_id": "eANvQ0h7HnfLn5wKwFD_qA", "stars": 4, "date": "2011-05-11", "text": "Best latte ever!!! I missed my local coffee shop in Phoenix and I stumbled upon Echo. I am so happy I found this place. Free Wi-fi and AMAZING lattes have won me over! I recommend the Turkey & Brie sandwich. The pear made the sandwich. They have a great music selection and they don't crank up the volume. Check this place out!", "type": "review", "business_id": "F-ZOeAK1v7e5Rt2Mv5rVMw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "5W6WBEosZH2-atKjYDTVFw", "review_id": "YV6DpBlgJqt7S5xucCdsjg", "stars": 1, "date": "2012-04-09", "text": "Great in its day, now leaves a lot to be desired. Deserves credit as a Phoenix landmark Chinese restaurant. \n\nThis restaurant has been here for 38 years. I've been going here off and on for 35 years. I go here more for sentimental reasons, and not so much for the food. \n\nThe interior still retains some of the original decoration style from the original restaurant established nearly 40 years ago. The rest of the decorations have been torn out. I believe the decor is modeled after the Forbidden Palace in Beijing - see the vault-of-the-heavens style crenelations in the ceiling. \n\nI have this restaurant - in its former self - to thank for this: Back in its day, this restaurant was really great, and the entire atmosphere lent to an ambiance that actually inspired me to study Chinese and then later go live over there for some years. \n\nSadly, the food here is not all that good. The fryer oil they use here is pretty old. The fried rice arrives looking almost black (from the fryer oil? too much soy sauce?) instead of a rich golden brown, and tastes overcooked somehow. The eggrolls are just OK. Definitely not fresh.\n\nA lot of the menu items from the original owners are no longer on the menu; for example the special \"Chinese cakes\" served on a plate topped with a delicious gravy-like brown sauce and shallots - probably some form of Cantonese food. All of this is gone, and replaced by very plain fare, and not very good at that. \n\nIf you like salty, greasy, plain-tasting yet somehow edible Chinese food not far from the $1-per-scoop variety, then go here. Golden Phoenix's heyday as a great restaurant is long-gone. Let us bow our heads in sadness to a place that once was very good - now passed on...", "type": "review", "business_id": "a8yzGF79KcfyRye2R6wt3Q"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "AYRv5k9H2w7VNI1X-9fM3A", "review_id": "g7_wDRTTHFJsVI6WQave6Q", "stars": 4, "date": "2009-11-05", "text": "Machaca Burro is ridiculous and the butter tortilla will take you to the promised land", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "5j7qmDZTAetaH0yXFnAFyw", "review_id": "N8kwZfU1LJoeh2BlRrFw2Q", "stars": 2, "date": "2009-05-30", "text": "Food was decent, not too sure how this place is getting such rave reviews though...\n\nProbably the most expensive Mexican place of it's style. $25 for a burro, two tostadas, and two mini-tacos. Seriously?! Also, no free refills or chips/salsa.\n\nAre we going back? No.", "type": "review", "business_id": "CRvVvR6aE1eWVRtzQ0UC6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dkKLIozpkfUm6f_8RwsEvQ", "review_id": "5dX8hhkcgFfVZaSaWkV80Q", "stars": 5, "date": "2012-05-27", "text": "Love this place, it's on our dinner rotation. The owners and wait staff always greet us since we are regulars. Great place and cheap too. Try the #100 its the best ever.", "type": "review", "business_id": "2mcmuAvpNIJuV3gV0v9v2A"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "4SL9WftOYkbA2V0xmN2YuQ", "review_id": "YHAcbIm2CCRDiLIFSfH_lA", "stars": 3, "date": "2012-03-06", "text": "Took my daughter to Mendy's Place 4 times. Treatments, doctors, nurses and other staff were great.\n\nMy complaint is that the ER physicians are not in-network (participating) with most insurance companies. Even though the hospital is participating, the physicians are not , thus resulting in larger physician bills.\n\nUs consumers pay dearly for our health insurance. I don't like being overcharged by greedy physicians.", "type": "review", "business_id": "8rMSbtMFVtEien-2EfFu6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jk_P-yYspg7uz-8xSCRdGA", "review_id": "BedRV23Sb9fE03Y9eH7Jzw", "stars": 4, "date": "2013-01-05", "text": "I was a little bit scared to eat at this place but I was pleasantly surprised. I got the chicken egg foo yung and boyfriend got spicy shrimp. The portions were humongous and it was very delicious. The Buffett didn't look very appetizing. I would definitely only order from the dinner menu. Can't wait to go back. Food is dirt cheap and so delicious.", "type": "review", "business_id": "9PrgqakLyqlxTTqvvfYNyA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "8leoUQELdWao6zLgRlAt3A", "review_id": "1MOAO0KIm38LNFg3FSgCMg", "stars": 1, "date": "2012-11-20", "text": "I don't know what's up with Eddie??? I always found him to be pleasant, and really taking care of the customers. However on the 17th of November we had a birthday party of 19 people, and they gave us one waitress. We sat down at 7:00 pm and our main course came at 9:15. No real big deal but one person can't handle a table of 19, and we were having fun. So one of the guest's had ordered the $12.00 burger along with a salad and told the waitress no Mayo because he can't stand it at all. The burger comes out and it has Mayo on it, and he tells the waitress. She was not at fault, and had written it down clearly. He asked for a new one, and she comes back and say's Eddie cooked the hamburger and refused to cook a new one but would make him a new bun. He didn't want that because he hates Mayo that much, so there was no problem taking it off the tab, but Eddie would not make a new one. LOL. What's up Eddie??? I don't understand at all, you take it off the bill because you screwed up, but refuse to make another burger that you would have been paid for. Then you end up looking like a fool in front of the other eighteen people. My daughter has even taken one of your classes, and said what a great guy you are. Really, Really bad PR that night and the next birthday party wont be at Eddie's House. Great time that night, but the ending leaves a very bad taste in 19 people's mouth.", "type": "review", "business_id": "He9Dar4bk2vyeiPC7TkUgA"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "UIUfEDc62fpMxWCW3Lc5PQ", "stars": 5, "date": "2012-09-16", "text": "Owned and operated by Eugenia Theodosopoulos (an Ohio native, fyi) and considered by many to be the best patisserie/bakery in the state I approached Essence with a note of skepticism largely assuming much of the hype was derived from Tempe's plethoric college crowd but arriving at the doors of the small shop on a particularly lovely 80 degree morning I gathered quite quickly that my original conceptions were misplaced; not only does Essence not look like a college haunt, neither do its prices or products - a vast selection of at least twenty items aside from the posted menu sitting beneath and atop a glass case forcing me to make more than one tough decision that was not helped by my server's accurate assessment that everything was really good.\n\nNow bearing in mind that the original impetus to visit Tempe on this particular morning was to visit Caffe Boa and that Essence was more of 'pre-meal' activity what follows may seem slightly gluttonous, but to be fair once I took my first bite of Theodosopoulos's \u00c9cole Len\u00f4tre trained almond croissant I knew I was in good hands and everything else just sort of followed. Without a doubt my favorite breakfast pastry and perhaps my favorite French pastry overall, Essence's $3 twice baked option arrives slightly smaller than the average but with a shell that crackles to the tooth and an interior that is at once yawning pockets of air and nearly overloaded with butter and light frangipane there is no doubt that this is a case of \"big things in small packages,\" and particularly in its still-warm morning state the flavors and textures rivaled those at Dominique Ansel and Payard Las Vegas for best I've had stateside.\n\nMoving next from the baked goods to one prepared from the menu my second taste of the morning aside from the slightly earthy and lightly leather accented coffee was Essence's \"Signature\" French Toast, a $7.25 selection featuring three griddled slices of eggy brioche and a sidecar of what I can best describe as banana infused caramel. Rich but thinly sliced and therefore nicely saturated each piece of the French Toast was exactly as it should be - the exterior crisp and the interior custard-while the sauce provided a pleasant balance of fruity notes and intrinsic sweetness that complimented rather than overwhelming the bread.\n\nAt this point submitting to the fact that I was going to eat even the items I'd bought 'for later,' my next two tastes were a pair of $2.95 macarons that, much like the croissant, rivaled those both here and abroad in terms of taste and texture while opting for a much more rustic approach terms of size and presentation. Beginning first with Pumpkin Spice and then proceeding to Vanilla with Dark Rum each palm-sized cookie was exactly what one would expect from a well trained pastry chef as the exterior shell provided a slight crackle on bite subsequently giving way to a soft meringue followed by dense cream that slowly dissipated on the tongue - the cinnamon and nutmeg notes of the former particularly notable while the rum in the second was appropriately understated thus serving to highlight the vanilla of the shell.\n\nIf there were any 'misstep' on the morning, it *might* have been the \"Summer Berry Croissant Bread Pudding,\" though when I say misstep I must temper the comment with the fact that my quibble is only that I prefer the French/English take on the dish while this one was more based on the French Custard style, a rich vanilla bean pudding without a lot of crunch or textural variance but instead laden with blackberries, raspberries, and strawberries plus a sidecar of lightly sugared strawberries. Focusing more of the natural sweetness of the fruits and aromatics of the vanilla than the typical overly sweet versions served stateside it was more panna cotta than bread pudding to me, but chalking that up to personal tastes it was still delicious.\n\nMoving last to the one dish that gave me trepidation, the \"French Napoleon\" gave caused pause not only because the name clearly skewed towards a subset unfamiliar with a proper Mille-Feuille but also because so many pre-made versions of this layered pastry have failed to wow in the past...thankfully this was not the case at Essence. Featuring light and crunchy layers of choux easily withstanding the tines of a fork without turning into a smooshy mess (see \"Mille Feuille New York\") intertwined with rich pastry cream speckled with dots of vanilla bean and ripe raspberries what truly made this version stand out was the manner in which Theodosopoulos caramelized each layer of choux, a technique reminiscent of Pierre Herme and as good as the French icon's version was I'd be hard pressed to say Essence's was any less impressive. It would be awesome to see what they could do a la minut like Savoy, L'Arpege, or Genin and given the names I've dropped in the paragraphs above plus Essence's proximity I've no doubt I'll be returning to see what else the small shop is capable of soon.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "LhSKiNsXSItau9tgmRfzyw", "review_id": "n9JTbyHVsl_awFDig-1Abw", "stars": 5, "date": "2009-10-30", "text": "I'm on a community social action committee and have spent the last year planning a community-wide service day. We were each responsible to lead a team of volunteers in a different community service project and per my passion I chose the Humane Society. We arrived on Sunday afternoon with a group of 12 people at the Campus for Compassion on Dobbins Rd. Kathy - the head of volunteer services - met with us and gave us a thorough introduction. She included the history of the AZ humane society and the process and procedures by which they take-in and shelter animals. She really focused on promoting spaying and neutering pets and cited some very impressive statistics. Did you know that over 7 years un-neutered cats can breed to reach 420,000 in numbers??!!!! and dogs 67,000??!!! thats CRAZY and so compelling. \n\nKathy proceeded by giving us a very educational tour of the facilities... we saw dogs, horses, cats and bunnies. It was very eye-opening. First off it shattered any stigma you have about a shelter. The animal accommodations are so impressive!! The dogs have BIG size kennels with indoor and outdoor spaces that are really spacious. I was nervous to go in and see the dogs in kennels but I really wasn't as heartbroken as I thought I'd be bc they really had nice size spaces. \n\nThere are sprawling lawns in the back where animals can run and play which even include a public dog park! There are also private puppy rooms. The cats have big crates as well and even private bedrooms where they can hang out in groups and the facilities were squeaky clean w/o any odors. \n\nThe volunteers were so nice, kind and devoted to the animals. We got to feed horses, play with cats and bunnies and put together leashes for dogs. The most encouraging thing though was that the place was busy on a sunday! buzzing with people wanting to adopt pets and several cats were actually adopted during the 2 hours we were there.\n\nIt was a wonderful and meaningful experience and I encourage anyone who is looking for a pet to adopt from the Humane Society and to look into volunteering with them", "type": "review", "business_id": "mQde7KRomOQoUyPGTqeXhA"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "UqRsXvlnI3ioAY6DxJsRcA", "review_id": "wxg_JFaOExsvE2UJQSI4Jg", "stars": 5, "date": "2012-05-29", "text": "Every time I go in this place it's always a great experience. My wife and I have been going to Lucille's pretty much every other Sunday for the last couple months. Her favorite is the pulled pork mine is the Kansas City ribs, but we always have to start our meal off with the fried pickles. If you're on a tight budget even buying one meal and sharing it is a definite option. Sometimes I get full on the biscuits and spread the provide in the beginning.\n\nThe bar area is a great place to have a meal and watch a game. I would highly recommend this establishment to any of my friends. But make sure you get the fried pickles... you will not be disappointed.\n\nOh yeah.....please please please order the Mac 'N Cheese as your side. You will thank me later.\n\nQ", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k6xDCakturvYo1afdPMP6g", "review_id": "DJ2epxidXnFdLtFmjQBgwA", "stars": 1, "date": "2010-04-10", "text": "How very disappointing! Nello's had a delightful menu with an array of salads, pizzas and sandwiches. Not Jac's. If the new restaurant wants to be a \"pub\", it should have a wider variety of selections. The menu was sad.\n\nDue to dietary restrictions, I asked for a plain garden salad. Lettuce, tomatoes and onions. And it wasn't very fresh either. Sad.\n\nGuess we'll be driving up north to Pima Crossing to visit Nello's.", "type": "review", "business_id": "eRb0wjIVlj0bbfmePKZLng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HK35ai8frY75iMYBVdD_Pg", "review_id": "EnAdKZ_u_wj9ifTRwkfVwg", "stars": 5, "date": "2012-02-12", "text": "I highly reccomend this place. They helped my girlfriend and I figure out our taxes and deductions so that we could get the max refund. We both had been doing our taxes online and missing out on hundreds in deductions. Ill never use another online service to do my taxes again as long as these guys are here.", "type": "review", "business_id": "rncjoVoEFUJGCUoC1JgnUA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XuVeswVBiG7bye8-k731ag", "review_id": "QDhIuFU2ADUo27CHfM2_jQ", "stars": 3, "date": "2011-07-13", "text": "Food is just ok, but the problem is it's way overpriced! I mean $9 for loco moco? Outrageous!", "type": "review", "business_id": "RSOppDX3TPNbBtrWuIMElA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "a2KLTknquBFq3HFHMJBEaQ", "review_id": "VcOep9CYExczLxDzxweWmA", "stars": 5, "date": "2008-10-18", "text": "My absolute favorite coffee shop - I'm a regular!\nFriendly atmosphere & staff, buttery fluffy muffins, ooey gooey danishes, tasty coffee, and support for local businesses and entrepreneurs. The only negative for me is the mysterious disappearance of the corn tortilla bagel (much yummier than it sounds)!", "type": "review", "business_id": "-hWSt4JO2zT7zd7QzLZY9Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cH1lLTHReO6uDTif9bfOBA", "review_id": "V9vUMqEgMx_nQwOBQozj9g", "stars": 4, "date": "2009-03-07", "text": "This place made me feel comfortable about moving to Arizona. I just moved from L.A. and was totally worried about not having access to Asian stuff. Of course it is not comparable to L.A. but this place has all the essentials.\n\n*Vegetables = fresh\n*Meat = frozen\n*Fish = frozen\n*Dried food = plenty\n*Bread = they bring in baked goods from Olive Bakery in L.A.\n*Cooking supplies = half of the store is full of them", "type": "review", "business_id": "8yxuxxKHRtyIzwE4cIVRiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "CQ83yS0S2xxnvdT6CCPQ5g", "stars": 5, "date": "2011-03-20", "text": "There's no business like show business. As any of my friends will tell you I am a theater junkie. I could sit in a theater all day, all week, all year long and do nothing but gaze at live performances of theatrical talent. lol! Well in actuality, hmmmmmmm I really could. I am not even joking on that. I probably would if someone brought me water every now and again. LOL! Ok, seriously now, Childsplay is my favorite organization in Az for a host of reasons. \n My dear friends of Childsplay know who they are. This is children's theater at it's best! The Q and A sessions after each show is a plus. The kids love it. I have to admit I do too since I get to go say hi to my friends after each stage-show. I also learn more techniques that I can steal when I teach drama to my inner city students. Teehee! ( Yes I am a teacher and yes I would die to have some of their costumes and sets) \n I have seen so many wonderful plays, literature remakes, and original scripts performed At TCPA and by Childsplay. Fernidad, BFG and New Kid were only some of the most amazing masterpieces I have had the distinct pleasure of viewing from these talented actors. Debbie, Scott, Katie, Jodi; well all of them! LOVE YOU!\n Childsplay also has an artist in Residence program for schools. We have had an artist at our school for several years. It is wonderful to note that the teaching techniques classroom teachers are learning are helping tomorrows future. Time after time I have seen struggling kids blossom under their tutelage. \n Of importance to note, TCPA is a beautiful facility. You can enjoy a nice venue along with the superstar talent. What more can you ask for? \n The only negative I can possibly imagine is that in today's hard times the cost may be inhibiting to some families. But if you like them on Facebook they sometimes have discounted tickets and contests to win free tickets. A great way to start viewing them and get involved.\n I do hope everyone continues to support the arts here in Az. As I have stated in my other \"ARTS\" reviews, I do worry about cultural program survival in Az with recent state budget cuts. Soooooooo, as a famous circus/rodeo person once said, \"Go, On With The Show\".", "type": "review", "business_id": "Vy3GlkRt1svQ-mkZ6r8W4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "rxrJEIqrcB6RTpihDfTMcw", "stars": 4, "date": "2012-01-26", "text": "I do not typically go to chain restaurants & then yelp 4 stars but I was genuinely impressed with our server (Cliff) and Carrabas kitchen. I have been doing a food detox as of the first of the year and the waiter AND the kitchen were so accomodating, even going as far as asking if it was OK with me if they could add certain vegetables to my salad I had ordered (they wanted it to look nice and taste good) to make it more filling.. who does that!? They do! Went with my bro, his gf, and my hubby and they had a great old-vine Zin (bottles of wine are on special on Wednesdays) and they seemed to enjoy their meal (though my bro thought his veal marsala was a bit smaller than it should be). We were seated promptly, the staff (Cliff & kitchen guys) was very attentive and I have to give them 4 stars for going above and beyond what chain restaurants usually serve.", "type": "review", "business_id": "cKxXBvOithS-Ic5KnhEKrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZYBhxMZk32e6DF77jjprhw", "review_id": "WmqJq8o116G97hcpgS-SnA", "stars": 4, "date": "2012-09-21", "text": "Came in mostly based on the name, as it is a great one. The decor and feel were really cool, and our server was very friendly and accommodating. I had a burger with bacon and cheese. The burger was very good and the fries were as well. They had some happy hour deals, and I got a beer on tap. I came in around 4, so it wasn't too busy, but I look forward to coming in again at night time and checking out some of their other drinks and food.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "VD4rjZ7FhQ18k_qAxwaPXA", "review_id": "Sl0t9JZTz_WWtgDaikcdEw", "stars": 1, "date": "2012-05-10", "text": "Great donuts but horrible service... Didn't get anything we wanted due to a language barrier between us and the limited English speaking employee. She claimed, in broken English, to only speak Spanish. She understood ONLY the word \"dozen\" and we got a dozen of what ever she felt like giving us, then proceeded to ignore us while using her cell phone!\nDonut shops are a dime a dozen and we will never again return to Bosa.", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KdIVljQs1D1A8-pyfS4teg", "review_id": "bWC9_aTNgBc6U1wgxxRdvw", "stars": 4, "date": "2007-12-19", "text": "LOVE IT! Food & Service always great!", "type": "review", "business_id": "i2gLXa-MSAS-9oU8K_rnYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XoAyhKIQsCDwwDFzC900Fg", "review_id": "XI7cL6UlNRdxZtQH7BCpCA", "stars": 4, "date": "2012-04-30", "text": "Stark white, steel bar, dark wood beams....modern and chic. The chopped salad is wonderful...i've never seen anything like it. It was rows of different ingredients and tossed together in front of me. Apparently, it has been imitated by a lot of other places, which I saw later in my trip. This version was the best though...smoked salmon, sunflower seeds, large couscous, sweet corn, arugula, tomato, and the creamy basil dressing is better than everyone else's...i'm guessing the ingredients may vary depending on what is fresh and available. The bar staff was friendly and made me feel comfortable dining by myself. The drinks are phenomenal...I got the Citi-zen, which came with rock candy that I can stir until my desired sweetness is infused in my pear ginger martini. I had a great weekend visiting wonderful places while in Arizona, and this is one of them!", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "THlXIiMQZksyqhFhg4SP7g", "review_id": "vQFKXr1VZUfmej4UBU3OrQ", "stars": 5, "date": "2010-08-09", "text": "Great great food. Best meal I had all week in Scottsdale.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sR_mlVzYpvpunzwjRGJknQ", "review_id": "MZZdewXdPGIu9MQAXRvLWw", "stars": 3, "date": "2012-07-17", "text": "The felt that the food at Organ Stop was just So-So! Nothing special! The Music there is great! You defiantly go to Organ Stop for the Organ! Not the Pizza!", "type": "review", "business_id": "VRxelK__tuQD0KBxx2LzeQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "t_UypW8fx5e8_GB6Hu3Shw", "review_id": "V0gkEPBrngn76QV1lXx3Ag", "stars": 4, "date": "2008-10-08", "text": "This place is a gem. It's a bit tucked away. It kinda felt like I was going on a bit of adventure. The restaurant was very small and oh so cozy. Just they way I likem. We had the Rock Shrimp breaded in coconut accompanied by a Thai Chili Dipping Sauce it was delicious. My main course was the Chicken breast stuffed with goat cheese, apricot, basil, spinach, shrimp and crimini mushrooms finished in a balsamic reduction glaze it was yummy. Service was on Point. I would so go again.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qkbiaiS8t8YHWx3J04NjSw", "review_id": "3jS8EBYtnOc_nOYXTWkvzw", "stars": 5, "date": "2012-03-27", "text": "I would suggest that anyone who lives here and has not been come, and if you're in town and looking for a great local non-chain restaurant that has quality food prepared the way it should, then try Cibo! \n\nI took my man here for \"mystery date night\" as a surprise since he had never been. No wait at 8:45 on a Friday night (yes! take that Pizzeria B) and the atmosphere of this house is super intimate and cool. I love the atmosphere of the patio also, lit with those great off-white lights, and fire pits. We shared the burrata which was gynormus, easily enough for 4 people or a hungry us. The wine was tasty and reasonable. I was drinking a pinot grigio, and my guy had the house chianti which I never usually order anywhere since it almost always reminds of grandmas table wine - until I tried Cibo's house version. It was very good, definitely not from grandmas! Now for the pizza - it is just perfection. It has that amazing combination of char on the crust, crispy on the outside, chewy on the inside with the right balance of sauce and toppings. It almost melts in your mouth, it's not heavy at all. It's nice to go out for a pizza dinner with and app and dessert and not feel like you have to roll yourself out of the joint! So we finished our romantic mystery date night with a crepe filled with nutella, ricotta, AND a scoop of ice cream on top. I don't typically die over dessert, it's my boyfriends thing. I'm an app girl - but this, it wasn't too sweet, it was so gooey and delicious and the ice cream added just the right amount of sweetness. I would never eat here without dessert again! \n\nI have been for lunch and they can get you in and out in a little less than an hour, but they don't fire up the pizza oven till supper which is why I prefer that here. You will feel at home at this spot in a group or on a date - hell, maybe even a mystery one :)", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w-7lJmMib10WNuMpnrmKUA", "review_id": "_cmlPi0Q2IXmel_7SuEbJw", "stars": 4, "date": "2012-05-16", "text": "This place might have one of the best beer selections at a reasonable price in all of Tempe. Possibly in the East Valley. Their food is great too, service is decent, and the daily specials they offer are just plain awesome!", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "OsYh3jArm6fgozczE85ZeQ", "review_id": "-csSSJh8hTSsx5__K62xyQ", "stars": 2, "date": "2011-12-20", "text": "K.. I don't get it. I go there every now and then. I have only had the pizza. It is a step up from supermarket frozen pie. I like it because I like frozen pizzas... but I think the ratings given are a bit misleading. \n\nIt is \"cost effective\" and if I think this place might be amazing for stoners.. But if you are looking for high quality pizza this is not it. I would however get it over the chain stuff.", "type": "review", "business_id": "5weJ3DRKwvQ9claomkYq9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OPACptBR7tu608O10JY2hA", "review_id": "5RGS1U1Q07nm0GRON3W7Gg", "stars": 1, "date": "2012-10-02", "text": "So far my restaurant experience in Phoenix has been subpar when it comes to service and this one took the cake. Everytime the server came to our table it was just to do one thing and we would be left in the lurch with our mouths silenced in the middle of asking for something. Finally the food came and it was actually quite delicious, I ordered the turkey eggs benedict with potatoes and fresh fruit. However once again the food was dropped off with no silverware, no condiments and no refills on the coffee. I truly hope the restaurant re-trains the staff or hires a whole new batch, because I am afraid food alone can not keep a business afloat.", "type": "review", "business_id": "0nGjXTpUtpIJl10PL0eBGg"} +{"votes": {"funny": 3, "useful": 2, "cool": 4}, "user_id": "z1c8uQv7tfgrP4-sVggbTA", "review_id": "fgSYR0bdfR6Z1Hm0PkYorw", "stars": 3, "date": "2008-09-01", "text": "I went to Genghis Grill one evening while the Beijing Olympics were being aired. My experience eating here was probably a lot like Shawn Johnson's experience at the games -- not quite the showing I expected, but GG still managed to eek out a medal or two.\n\nMy favorite Mongolian places include soup and salad bars in addition to the ingredients to be grilled; Genghis Grill does not. I missed being able to snack on a salad while waiting on my first bowl. \n\nThe ingredients were all fine; most seemed fresh, but I had to avoid a couple of the less popular offereings (for the life of me, I don't understand why bok choy hasn't captured the hearts of the American public). The sauces were generally tasty...think Trader Joe's bottled dressings and you'll get the idea. \n\nThe highlight of the night was when I realized the shredded cheese that given to me by request came free and clear. Of course, this made me wish I would have asked for sour cream, too. \n\nYou won't see a picture of my experience at the Genghis Grill on a Wheaties box any time soon, but the meal was pleasant enough for a solid three stars.", "type": "review", "business_id": "pzPbg_B2uSVJ72LIa2G3sA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "0NckJhx0qXykvvhsm-p7MA", "review_id": "DHoMwRFxU7ff2cvwDBcRrA", "stars": 3, "date": "2011-02-11", "text": "I've been visiting, and thinking, and visiting again, and thinking, and finally, after a long deliberation, I am ready to issue a verdict. \n\nRuling: It's OK and a worthy stop in Scottsdale for a pre-dinner beverage. \n\nSure, I could front load my review with spicy adjectives, overinflated superlatives, some forced humor, and throw on an added star and hope for a ROTD (come on, don't pretend that you don't know the formula), but I am not selling my stars for a day on the big screen. \n\nIf it's been said once, twice, and even thrice, need I repeat it? Yes, because it is true -- this is not Postino, and for that matter, this is not Kaz. It is a good, local spot to grab a glass of wine, maybe even with your mom, who may not be hip enough to chill at Postino on Central (which really requires little hipness, I mean they let me in), or your dad, who may not be able to read in the dark at Kaz, or maybe for that friend from Gilbert, who you know, wants to walk the wide straight path of predictability. \n\nPredictability isn't bad...in this case, that means a good wine selection (could rotate more), full bar, usually one good draft or two out of 5, decent cocktails, and decent food. The food is not really what you come for. The bruschetta is sub par, but the salads are above par. And, I have to add, hummus with no flat bread or pita?? No. No pita for you! \n\nService runs from friendly (read, management) to disillusioned and inattentive. The latter tends to happen if you sit outside. The last time I was in, I think grapes were crushed, olives were pressed, and chickpeas were ground...at least they could have been. \n\nOften they have live music too, which runs from the somewhat awkward jazz guy who keeps talking to you to the Motown wedding singer -- which on at least one occasion brought out near Elaine Benes-style dancing -- now that was worth the visit and waiting for the grape crushing.", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "kNO6w6EIKo8u6GSykOHBLA", "review_id": "kZsO87tYXkjCGZlrmwN-jw", "stars": 4, "date": "2012-07-24", "text": "Talk about options! It's almost unfair to have so many items on a menu. Especially when the food is so good. I have gone to the Cheesecake Factory several times and have not been able to even put a dent in the menu.\n\nSo, I wasn't too hungry this time, so I decided to order from the small plates menu. We started with the corn fritters. Then I ordered the shrimp and grits and my husband ordered the hibachi steak. \n\nThe only reason I didn't give them five stars is because we didn't get our appetizer until the our food was ready. And by that time, we had already stuffed our faces with bread and butter (which is delicious)! The server apologized for delay in bringing our app and the manager came by and didn't charge us for the corn fritters. That was much appreciated! We only had one of the fritters since our other dishes were in front of us and we didn't want those to get cold. \n\nI really like the shrimp and grits. I think the dish came with a little too much sauce...but that's just me....I just really liked the taste of the cheddar grits. My husbands steak was really really good! The hibachi steak is what I normally ordered. \n\nI will go back again!", "type": "review", "business_id": "ADJIoHN3uLx-JalYl3r3Dw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UfPzhC27R744fh2GWvdkkQ", "review_id": "U_Rg2MYraPbMPmX6LRKjdQ", "stars": 4, "date": "2011-06-07", "text": "I have to say they are better than Subway, that's for sure. At least they put meat and cheese and the fixing's on your Sub not like subway where they measure everything and you get home and you pretty much just taste the bread. The staff is young but very polite and helpful. Maybe a little suggestion...if you can make homemade salads like Macaroni, potato salad it would be alot better.", "type": "review", "business_id": "rRe2eLIQ4MQ7d6vFL26Qdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7vQnlpDaZaUshuhUG8pzpw", "review_id": "lQNfrHME2aPQWKPTTI_kqQ", "stars": 5, "date": "2012-03-01", "text": "I am always comfortable in Michelina's, the service is excellent and they are not rushing you to \"turn the table\". Michelina's cooking is fantastic! Her daily specials are so inviting that I rarely order from the menu. The drinks are excellent, bread just right, and the after dinner complimentary cordial is a nice finish. One of the best kept secrets in Phoenix!", "type": "review", "business_id": "DIYHTgM-YGKWOWLzQ4XVhA"} +{"votes": {"funny": 2, "useful": 0, "cool": 1}, "user_id": "9JpnM-xebt0343KkGR_HKQ", "review_id": "I7XAjsgpq6eTB-IZD7UIng", "stars": 3, "date": "2012-05-21", "text": "Mark-Keyed My Car\nBy The Rue\n\nIt's Friday night with nothing to do,\nHow about a show, maybe The Who,\nGot in the Jeep,\nHit the street,\nDrove out to Tempe,\nAnd went to the Marquee.\n\nPsychostick was the band I went to see,\nThey sing a funny song about boobies,\nTacos and Beer,\nBoth songs I did hear,\nWatch out for the Narc,\nFive dollars to park.\n\nFully stocked bar is good to know,\nGo with friends, take home a ho,\nSteal toed boots,\nDyed hair with roots,\nGet into the pit,\nDeck the guy who hits.\n\nSnoogen!!", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jli9G-mRzOGuN18DpZGw1A", "review_id": "prxVVaazcKTVoV2t0wMJkg", "stars": 4, "date": "2012-07-23", "text": "Everything about Coronado Cafe is charming and scrumptious. It's my go-to place when I want to have a nice, but not fussy, lunch with a friend. The menu has a lot of variety but not so much that it's overwhelming. I've never been disappointed by the food. The raspberry iced tea is delicious too! I like that they don't have any fried food, though my male friends don't so much appreciate that as they prefer fries with their burgers. \n\nConversations can be challenging when dining inside-- the acoustics in an old house aren't the best to begin with, and then you cram it full of people and it gets a little noisy. If you can't tune it out, the patio is a really lovely alternative. \n\nAll in all, you really can't go wrong here!", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "5-Gs3DpLZk6FjviyeXvR-A", "review_id": "33215ggRaESx7Mc8mSOtmA", "stars": 5, "date": "2009-05-27", "text": "I am a hot dog lover. \n\nFor the past five years I've found no greater joy in Phoenix than hitting up Nogales Dogs for the best meal on the planet. Each evening when the Keyboard City on 20th St. and Indian School closes, the parking lot is converted into a quaint little dining atmosphere. I most enjoy going around six, the sun is setting and the buzz of traffic makes Phoenix seem more alive. This is my own preference and I know many people who hate going at this time because of the loud traffic. The bacon wrapped dogs are made to perfection with your choice of mayo, beans, tomatoes, onions, jalapenos, cheese, mushrooms, and lettuce. And to top it all off you can wash it down with a Mexican Coca Cola, mmm so sugar filled. Don't forget to bring cash and your appetite.", "type": "review", "business_id": "jFfrM1y-L1icUZXjBpxmeg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AIvZS_tQ7y-ADNji1KM9Bg", "review_id": "OAlf6-j4AS4add4-ZGs4wA", "stars": 4, "date": "2011-12-10", "text": "nice and trendy restaurant with great food!\nwill definitely come back again!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "h-4y7lXX2vbu0S4IJ7OSiA", "review_id": "3SOFMqIxZMFuVhvF6mF_7Q", "stars": 4, "date": "2011-07-03", "text": "I'm very excited about their authentic and inexpensive menu. We just had appetizers today, but can't wait to come back for dinner. The mofongo and alcapurrias were beautiful.", "type": "review", "business_id": "BojnLUPz5IzZKyQocGc7uw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "Pl4fs0QWR8FbnVNCzqF9lg", "review_id": "kW99ou1rgbj2FnzMGYh7NA", "stars": 5, "date": "2009-10-18", "text": "Best Greek food I had in Arizona and excellent entertainment.\n\nThe dolma's were the best I've had, their version of Babaganoush was very good and they had many lamb-based dishes.\n\nThe entertainment was great. Live music, belly dancing, greek-style fun, broken plates, and dancing.\n\nSince I had the sampler plate I can tell you that if you're vegan, vegetarian or any other wacko thing like that, you might not enjoy the food here (Greek Lasagna?....really?) Also, the chicken was no good but I don't really like chicken anyway.", "type": "review", "business_id": "t54zAs7IftAVb9SKcCRotw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "HHqdz6xvmz3c_XQV6MPLkA", "review_id": "z97QQcbKhUsgO8XowYhR6A", "stars": 2, "date": "2008-07-06", "text": "What has happened to the Coffee Plantation? I've been out of the Valley for 8 yrs. and the Coffee Plantation was always such a good place for food, bakery items, and of course coffee. On my last visit the store was dirty, the full menu of food was gone, and the coffee was burnt. I went to the Biltmore and alas that location was gone. Where did my old Coffee Plantation go?", "type": "review", "business_id": "BZbW0vha5fg4qTfwHMnYjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pGaRAiCRfGs715VbgXf-yg", "review_id": "fQvwelk-AnTMcmkcfEkc2A", "stars": 4, "date": "2012-07-18", "text": "Great fast service! Friendly girls that carried on fun conversations. Beautiful salon with nice pedicure chairs. Great prices too!", "type": "review", "business_id": "EFFIduf9WaUNbDy_O7yQjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1uwqR1r9nMDgI6RZT_bL2w", "review_id": "v1EPSrG6zRUhd41Jt2ZTHA", "stars": 3, "date": "2011-02-24", "text": "Last night after developing a huge craving for Panang Chicken and browsing Yelp for a good place nearby, I decided to call Papaya. The guy who answered the phone said that due to a downed gas line in the area they couldn't operate, but their Mesa store would deliver to me for no extra charge since I couldn't come pick it up like I wanted to. I said this would be fine, placed my order, and the guy said it would be about 45 minutes. An hour and 15 minutes later the food still hadn't arrived, but I figured it was just because it was coming from Mesa. \n\nWhen it finally arrived, I was starving, so I opened the food immediately, only to find out that my Panang CHICKEN was nothing but sauce and a few carrots and bell peppers. On top of this, I had been charged a delivery fee when they said I wouldn't, and I was charged for chicken when I got none. I called back immediately to tell them my food did not have any chicken in it, but was only sauce and a couple vegetables. They informed me that they were very busy and would not be able to bring me another order that night, but I could call back the next day (today) and they would bring me another order. I was upset and hoped that for all the trouble the food was at least good. Well, it was. The panang sauce was very delicious and perfectly spicy. Although it was not made the way I ordered it, I could still tell that it was very good and I would definitely order it again. \n\nToday, I called back and they brought me a new order, this time of Spicy Eggplant with chicken since I had already had to eat the panang I ended up with last night and didn't want that again at this point. They were very nice about making it right, and they delivered it to me again at no charge and credited back the charge they made last night. Delivery took about an hour and 15 minutes again even though he had said 45 and this location is about a mile from where I live, so if you order delivery expect a bit of a wait. As for the Spicy Eggplant with chicken, it was REALLY delicious. The eggplant tasted like some of the best I've ever had, not mushy but not firm, and I finally got my chicken and yes, it was very good. SO in conclusion, the food is great but I hope that they are more organized when they aren't having technical difficulties. Probably won't have them deliver again but I would definitely order from here again. If there hadn't been all the problems I would give them 4 stars but the fact that I couldn't even get my order corrected that night was upsetting.", "type": "review", "business_id": "km3g-wDO2KfhfnTvJrLJig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1sLwaXtQpwg4sMWHnh4IuA", "review_id": "gIPQQHC-L3okQJVY9fuJtA", "stars": 4, "date": "2012-01-03", "text": "Mole sauce was amazing! Chicken was a little dry, but searously the mole sauce was good enough to eat with a spoon.\nSkip the fundido. The waiter could not explain some of the items on the menu, which was funny. The hicima tostado was great! so was the mango crab salad.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "q9BKnyqR9roAsWnxAIaWVA", "review_id": "m6UYld-4pFluBlpHV-FgcQ", "stars": 5, "date": "2008-11-11", "text": "Clean, organized, and well-stocked (for the most part), Fujiya's carries my favorite car freshener, chips, bread, and iced coffee (in a can) among many other good things. Reasonably priced and extremely courteous customer service, I am always happy to shop there. The bentos, I wish, are kept in warmers like Suruki in San Mateo, CA, but Fujiya has an area adjacent to the register which includes a microwave to heat your purchased bento, so you can sit and eat and relax after shopping. What I love so much about their service is that I can place my order ahead of time and they'll have it available and ready. I think this is the only Japanese store that has just about everything I need to stock my pantry. It's no wonder I've been coming here year after year.", "type": "review", "business_id": "Kur7YGwuw6CqnqEypNrOvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DOJM58OkGSsIdk2qCUZnLQ", "review_id": "4Y2-0uelB_2L3UQQVj4h0w", "stars": 4, "date": "2010-10-02", "text": "I go here for the free wifi and the bleu cheese crumble salad. That's it. Bleu cheese, craisins, sunflower seeds all on a bed of romaine. LOVE IT. I don't think I've ever had anything else on the menu, now that I think about it. Free wifi will get me in every time, that's for sure! I chose this location because I was in Phoenix in-between activities, and didn't want to drive back to Gilbert. This was at the Biltmore, and yeah, you knew you were in a Paradise Bakery at the Biltmore. Kind of funny actually. What can I say? I like to people-watch. :-)", "type": "review", "business_id": "Y-PnvV-q4HYLIy19ubVmXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "P0pSbTN4PE2Qk1Krdfb3nw", "stars": 4, "date": "2010-01-27", "text": "It is always nice to find a place that can make just about any dish with tofu as the main protein. This means a vegetarian like me can choose from any dish on the menu. Despite this flexibility I tend towards the red curry. I get this as hot as they will make it with out an argument ensuing, which is usually pretty decent on the heat scale. It is a great medley of crisp vegetables in a creamy coconut milk base red curry. The tofu is the fried style which adds an interesting textural variety to the standard tofu.\n\nThe lunch specials come with a small salad, a small soring roll and a little slice of watermelon all in the $7 range. \n\nService is decent, my water received frequent refills as i tend to drink quite a bit with spicy food. \n\nParking here can be a bit tight at high times, and there also may be s small wait. If there is a wait go to the liquor next store to find an amazing beer selection.", "type": "review", "business_id": "0udEgNqy5rLR5pZ4kD19Og"} +{"votes": {"funny": 5, "useful": 14, "cool": 7}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "2GD6pVlCaEk1_oOgLSyGQQ", "stars": 1, "date": "2009-06-14", "text": "Sorry Banana Leaf... I'm usually not picky at all but the Thai Curry Tofu and Vegetable dish I picked up last night was awful. Really... it was almost not edible. The packaging was not great, so it kind of spilled a bit in the bag - not a good start.\n\nPerhaps the curry is the 'yellow curry' that Jenny R refers to in her review - maybe the chef should taste it before serving it - it was nasty!\n\nSeriously, I've had better Asian food from the food court at the mall before!\n\nI will say, you did listen to my request to add eggplant to the dish - thank you... but if someone requests eggplant, perhaps you should make sure it's cooked fully next time. I had a bite that was barely cooked - it was crunchy. \n\nSo, needless to say - I don't think I'll be giving you another shot. First impressions sometimes last a lifetime. Sorry Banana Leaf!", "type": "review", "business_id": "LGAmOIbwXPgC5z87vI5fcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YrYxEQmacf0KN6pUuACCFw", "review_id": "tHj4BbPn9wqmnKu28C41AQ", "stars": 1, "date": "2010-06-08", "text": "I would absolutely not recommend living here. I lived at these apartments for a year, and wow was the management staff a MESS. When I moved in, my mailbox was broken so I couldn't get mail for a week. They didn't give me a pool key, they gave me the wrong apartment keys, they would mix up all my information, and they just weren't very nice. I can't remember how many times they lost my work orders so I'd have to call and call to make sure things got fixed in my apartment! The neighbors were loud--I had to call the police maybe four times because they wouldn't turn down their music and I had to study for school and finals, and random people came banging on the door looking for some girl who had obviously p'd them off. The police came to my house in the middle of the night looking for her, too. One time, they gave my garage to somebody else even though I was still paying for it and when my husband came home in the evening with his pick-up full of expensive equipment, we had to wait for the cops to come and figure out whose car it was who was parked in our garage! it was a total nightmare. Shortly before I moved out new staff came in and they seemed somewhat better organized. But---I wouldn't take the chance. For the same price, you can definitely find somewhere better to live.", "type": "review", "business_id": "CpRO_EC8sbn93UE8Jx7zDw"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "IzMeF5f2043jgDjhzNeDbg", "review_id": "j-sgX6lA1nIsh7iFZ-R6Sg", "stars": 4, "date": "2011-02-26", "text": "You my new found friend are uber popular! And, I can see why. Your restaurant is ridiculously friendly to families, girls day out and boys at the bar. I rolled in for a late day brunch with a girlfriend and was immediately seated and got to ordering right away. The menu is pretty straight forward and not real complicated. \n\nI was in the mood for booze, really when am I not in the mood for booze, and Francis, you saint you, you delivered this fantastic gin cooler. It was excellent and I made me think I should have a pool party and serve them to all my friends, or just sit at your bar and order another! With my booze, I needed some food and I went with the eggs benedict. Hollandaise sauce is the true test of a good eggs benny. Your hollandaise is really good. Fabulous in fact. The eggs were nicely poached and I have no idea what you do with the english muffins but there was something spectular about them....All around tasty. \n\nAll and all, I can definitely see myself coming back the only draw back is the parking....more parking please!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lCq45LZbHpZXD72GJ7YOXQ", "review_id": "4t8qdFnxaDy2TuivniAyVg", "stars": 5, "date": "2010-12-15", "text": "What a great find! Located off of Yelp after a business meeting in the area & we were hungry before we hit the road. Very comfortable space, lighting is good so you can see each other & your food which is not always the case. The decor is not overwhelming but extremely comfortable, some TV's, Thai decor & more pop music on the overhead. The staff was extremely attentive from the moment we walked in through out the meal. My Jasmin iced tea never got to the bottom. The menu has great variety. The pad Thai was excellent as were the vegetarian rolls. The Tom Ka soup was excellent. Every member of our group got something different and they were all extremely happy. We will be back. Pricing was very reasonable. There is patio seating available. Check it out.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SRlh4J85Js9ozC1eco6DQQ", "review_id": "mJgy2lgZsZTtWv5kjG-Alw", "stars": 5, "date": "2011-08-28", "text": "Today was the fist time I have been to Chino Bandito. My friend has been there several times and loves this place. After having a few beers, we were pretty hungry and decited to go here. This place is mixed in a sort of industrial corner behind a Walgreens and a transmission shop. Walking in you will notice how big this place is inside. Customer service was excellent. The counter person was great in explaining the different options on the menu which is a mix of Mexican food and Chinese food. Great concept for something different. For ten dollars I had the Carnitas burrito and a Jerk chicken burrito with Jerk fried rice and black beans and a large iced tea (all you can drink). It also comes with a Snikerdoodle cookie. Wait time was minimal and the food was brought very quickly to our table. I really enjoyed the items that I had order and I found the carnitas had the right flavor and tenderness in a burrito (you can also get it in a bowl). The Jerk chicken burrito had some zing to it. Enough to make me sweat a little. One thing that I noticed was that the employee's were really good about keeping the place clean. Sweeping, cleaning the tables, wiping up around the drink dispensers. I also noticed that they wrap all of the highchair trays in plastic to keep the clean and dust free.\nOne last thing, they have free wifi!", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "0VptqMr6enVCnqRjVYs4NQ", "review_id": "WQSp8voaezCeBhpl-hMoYg", "stars": 5, "date": "2010-11-08", "text": "Too long.......it took me way too long to make it to Sens. Sens is what we need more of in Phoenix!\n\nSeated promptly on a Friday night by Johnny Chu himself, Johnny Chu really has put together a winner here, Johnny Chu.....alright, I admit it...I like saying his name!\n\nThe Asian tapas idea is new to me, having dined at some great Tapas places from Chicago to Vegas, but alas never an Asian tapas joint. I must say no Spanish tapas place ever made me feel like Sens did (except the time I drank a pitcher of Sangria)!\n\nThe Tofu dishes are amazing. How do you learn to love Okra? Get it at Sens. The Hong Kong rice noodles were not what I was expecting so I was a little taken back by them looking like a plateful of water chestnuts. One taste was all that was needed to cure my trepidations about the flavor - fantastic!\n\nI will be back to Sens Tapas & Sake Bar soon - do you think you could invent an \"Asian Sangria\"? C'mon Johnny, I know you can do it!", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uYecHRyGu6zbLP5NRnNFyA", "review_id": "CRXQ6kZve81A0QF4BHwEUw", "stars": 4, "date": "2012-03-27", "text": "My mom and I stopped by for a late lunch yesterday. The menu and the food were the same as other Paradise locations. This location wasn't nearly as busy as the others which provided a nice and quiet meal for my mom and I. The onlt downfall was that I have experienced friendlier staff at the other locations. But overall, it was a decent dining experience. \n\nThe thing I love about Paradise is their consistency. The food always tastes the same each and every time. And I have yet to find anything I don't like.", "type": "review", "business_id": "MFlkmsxlDloSiEd8SLjnAQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "pfLmiemhstIIdX8WjnUIOQ", "stars": 3, "date": "2010-12-12", "text": "Being the B, L, and D (breakfast, lunch and dinner) restaurant of a major valley resort takes allot of versatility. From scrambling eggs to grilling a piece of meat the new Rico's American Grill at the Point Hilton Squaw Peak Resort shows that all this can be done and more on a daily basis. \n\nWith two massive patios, a large bar and lounge area coupled with a fantastic selection of locally made beers on tap, just beckons you to try them all out. This is easily done by ordering up a Beer Flight ($7) which gets you 4 5oz glasses of their best brews, though this will be tough to chose, they're all good. Then you can order a capped 64oz growler ($20) to go! A growler is simply a large glass jug filled with your favorite beer, your choice. These are all the rage in other cities so I was excited to see Rico's making this offer. Id fill it with my latest favorite, Left Hand Milk Stout Sweet Stout. Think rich flavors of chocolate and coffee blended with milk sugars to give a sweet and creamy taste. \n\nIn the large dining room you'll notice a wood fired oven. Unfortunately Rico's doesn't take full advantage of this, only offering a handful of menu items cooked in it including the BBQ Chicken Flatbread ($12). Covered with pulled chicken, red onions, Rico's BBQ sauce and mozzarella, this paired well with our beers though could have used a bit more salt, easily remedied. Another glimmer of what could be was the Wood Oven Baked Penne ($13). Several large meatballs, roasted tomato sauce, fresh mozzarella and pesto ricotta cheese and al dente pasta made for a hearty satisfying meal. \n\nA bit lighter but bold with flavor, the Chopped Salad ($10, add grilled chicken $3) made with grilled corn, black beans, bacon, tomatoes, cucumber, avocado, and BBQ-ranch dressing was shaken, not stirred, literally. The salad is brought out in a large martini shaker, dressing added on the spot then shaken well. Kind of a neat twist on table-side salad service, what's old is new again. \n\nThe Wicked Meatloaf ($15) could have used some of Rico's BBQ sauce for a sweet contrast instead of the semi-boring-more-like-brown-gravy cracked pepper demi. The meaty slabs were paired up with roasted garlic mashed potatoes that were well seasoned and comforting. \n\nPerfectly cooked and perfectly tender, the New York Strip Steak ($21) had a warm poblano and bacon relish that I could have eaten by the spoonful. The smoky sweet relish made the need for any sort of steak sauce not necessary. Along side was a heaping helping of green chile mac 'n' cheese, so creamy and so gone, delish. \n\nApple Skillet For 2 ($7) takes apple slices simmered in a brown sugar and cinnamon, thanks to the wood-burning oven, then topped with cake crumbles and served with cinnamon vanilla gelato. If the skillet weren't so hot I would have licked it clean. \n\nWhile Rico's may not have yet achieved culinary greatness, what you do get is solid Southwestern influenced American grub.", "type": "review", "business_id": "7LGjM8HKJTwqfYU3C7N_0w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l2zoX2M4OBuAE_q2A5qW8A", "review_id": "Hc2DVjBd07gNVEH3fp-90w", "stars": 5, "date": "2012-09-27", "text": "Great home made taste on the meatballs. Also they have diet coke. Shop was nice and clean. Friendly and fast service", "type": "review", "business_id": "0ylC0tsPUY3yaoXRaCDL3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PvhTkEHEGTwB65KN_IUkPQ", "review_id": "yvM7ClgYNMYWipu5fTA4qw", "stars": 1, "date": "2012-01-23", "text": "I had received an email from a student retention telling me that I still owe money for the time that I had taken classes (two weeks) although these fools canceled my financial aid. I will sue this school if they even attempt to collect money from me and I have withdrawn from the classes on the right time, but this rep. told me that the withdrawal period was Jan. 11.", "type": "review", "business_id": "JJDaF4yFPLgQ3u678qyL2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GnfhkMo0Y5qDsEOGSpvD7A", "review_id": "80E33s58TisNvlyjDUUfwg", "stars": 5, "date": "2012-06-07", "text": "What can I say except that Jodi is incredible. I had purchased an online deal because I've always wanted to do something like this and thought it to be a great gift for my other half. I sent her a message and she quickly responded. Almost everything I needed to know for the shoot was emailed to me. You have the opportunity to do your own hair and makeup or have someone she works with do it at a reasonable rate. I highly recommend that you get it done by her ladies. That day I saw Erica. She was really fun and got me into the mood (the glass of wine helped too :-) ) and she did an incredible job with the makeup and hair. For those who feel a little nervous I do recommend bringing some wine along with you. It really loosens you up a bit and allows you to be more comfortable. It was perfect since my first photos were the nude shots. Note: wear loose fitting clothing, nothing elastic and be sure that you do not have a sunburn on your body. Let your hair air dry and it is OK to put on your own serums and moisturizers prior to the shoot. Make sure nothing with sunscreen gets on your face and while it's not necessary, I made sure to use a primer. I thought it really helped out with how my makeup set. Be prepared to pose in positions that may be a bit awkward and also note that you will likely be sore the next day from the different twisting that you have to do. Jodi really knows how to make you feel comfortable and at ease. I don't make a habit of being in the buff in front of complete strangers and for me to drop my robe without feeling shy was a big deal for me. It helped that I had my own music mix on my iPod throughout the entire shoot as well. The overall whole experience was incredible. I felt sexy and confident. I went back with my honey to look at the photos. He really really liked them and had a hard time choosing which he wanted to go into the album. I can't wait to see everything finished. I can't wait to do it again :) Thank you Jodi for making it such a memorable experience. I highly recommend her and her ladies!!!", "type": "review", "business_id": "cWnISQaO33CwpQRPcq6nIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aU4fCjkwP6Z8aR5azt9pSQ", "review_id": "N-eGD9Zs9zb5tkrifBfa-g", "stars": 4, "date": "2009-12-06", "text": "Good clean Chili's. Friendly staff, although that can be a bad thing... since I have to tip them extra because they refill my cup every 5 minutes. I have been going a little bit more than usual because of the \"2 for $20\" deal. Never had a bad experience here, just wish there was more on the 2-20 deal.", "type": "review", "business_id": "DpVZRn15Trc4oBU6MIxr3g"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "bDPFpoB-Uaf_nPBS5tF6Jg", "review_id": "CdnEXfmpUTxkTVmZJTeUIw", "stars": 5, "date": "2009-02-02", "text": "The best burgers in Phoenix. The owners are great and am on a first name basis. Forget about fast food and support this local business. \n\nGo double.\nAdd bacon.\nPark at Circle K if in a hurry.\nPlan on holding it until you get home.\nStick to the burger and fries, genius.", "type": "review", "business_id": "lvpXyfTDF5WZnjzc36r5Wg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XpSZrY_Ym8GGx7SNEd0q9g", "review_id": "5PTxfrfT3QM72BBgDeb_cA", "stars": 1, "date": "2012-12-07", "text": "I'm sorry to be what seems to be the lone one star review. Either I got there on the worst day in their history, or everyone drank the Koolaid, or I just have different expectations and taste buds.\nIt seems like a great idea. It's a build your own burger joint, $7.00 gets you a cooked to order burger with one cheese, up to 4 toppings, and 2 sauces with fries or onion rings-or some other choices. They also claim that the beef is local, hormone free, etcetera....\n\nI chose a rare burger with American, grilled onions, sauteed mushrooms. tomato and lettuce, with mayo and mustard on a potato bun. I added bacon for a dollar.\n\nFirst, let me point out that if you are in a hurry, DON'T GO HERE TO EAT. I waited exactly 39 minutes for my food. This would not be a big deal if:\n1. I had been warned before they ran my credit card--what if I only had 30 minutes for lunch??\n2. They had places to sit but it's tiny and full.\n3. They had magazines, a jukebox, ANYTHING to entertain you for 39 minutes. You can't even get your drink early to sip on that.\n\nAt the 30 minute mark, I'm ready to eat cardboard with a little ketchup on it, so maybe they make you wait so everything tastes even better?\nAnyway, before my burger comes up, I notice that the lady behind the counter is saying that the orders overwhelmed the kitchen. I look in the kitchen---they have ONE GUY TRYING TO DO ALL THIS?????? He'd better be getting a share of the profits!!!!! Now I'm jsut feeling really bad for this guy back there.\n\nI finally get my burger! YAY!! I'm SO excited! All those 4 and 5 star reviews! I take a bite and....the patty shoots out the other side of the bun like it had been shot out of a cannon.\nWTH? I look at the patty. It's clean as a whistle. I mean there is no mayo or mustard or cheese smeared on the patty. I turn it over and it slides out of my fingers back into the basket. The other side is clean too. The freakin' burger was so greasy, it slid all over the place! Then a greasy glop of what must have been the mushrooms and onions slid out. Still not seeing any cheese, mayo, or mustard anywhere. Just oil. Tons and tons of oil. I open the bun, On one side is a heavily oiled slick of lettuce glued to the bun by (I am guessing) a slice of cheese. The other side of the bun has some mayo and mustard residue--and more oil. I'm grossed out, but hungry. I take a bite. It's not rare, It's well done and oddly, tastes very faintly of liver. BTW, remember the bacon I paid a dollar for? Not there. I'm really puzzled that instead of cheese. or beef, or SOMETHING, I just taste that faint livery taste. So I take another bite.There isn't even any salt or pepper, or anything on the burger patty. This is perhaps, the worst grade of meat available for human consumption. I take a third bite because that second bite brought back a memory of when I worked for a meat company here in town. Now I recognize the flavor. I'm not saying that what I ate that day at Two Hippies was old dairy cow, but that's EXACTLY what it tasted like.\n\nAt this point, I turn to the fries. The are shriveled and DARK and taste like they've been fried and then microwaved.\n\nI couldn't get out of there fast enough! Forget my danged dollar! just get me in the car!\n\nExactly one hour and 20 minutes later, I had vicious diarrhea\n\nI haven't had that trouble even with eating junk food at the fair!\n\nNo. NO. A thousand times NO!\n\nRed Robin is my next burger stop. Period", "type": "review", "business_id": "tfVKzEDu8XYyP8KO1dsNvQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "K__Nk3SBWWCZ072dBzmmog", "stars": 5, "date": "2008-04-10", "text": "So, for my date tonight to the Compass Room, I needed to get my nails done. I removed my acrylics myself last week. \nI read the reviews here and decided to try DV.\nYou know, sometimes when you walk into a nail shop for the first time, it's almost like the Soup Nazi. Not this place!\nThere were two girls ahead of me, so I waited a bit, but only about ten minutes. \nIt's bigger than the place I had been going to! Really clean and I heard ENGLISH being spoken by the nail techs! That was nice. Yeah, there were still speaking Vietnamese (or so I think) to each other, yes, probably about us gringas, but it was refreshing to hear actualy conversations.\nI had Le. She was so sweet! I told her all about my date, too.\nShe was quick, and made some suggestions about what to get. Usually I like clear tips that they have to paint. I was kinda short on time, so I went with her suggestion of white tips. Plus, it was about $5 cheaper.\nShe was quick but *really* methodical. \nI think this may be the nicest set of acrylics I've gotten out here in the PHX!\nShe even called me by name throughout the conversation.\n$25 for a new full set. Not bad at all", "type": "review", "business_id": "BIYvJTxDQQdwMEBh4Ltw4A"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "I8uia6nqcsPirdHKSPs7Hg", "stars": 5, "date": "2009-09-05", "text": "Feeling yucky one day and wanting nothing but some reminders of my bay area asian food... My search began with my iPhone for Pho.. AND I wanted good Pho.. (Im skeptical of some dishes in the desert, just sayin'!).. I drove a good 20min from my loft to find this place.. worth it. Usual toppings you will find with real Vietnamese Pho.. but awesome! I asked for a variety of tofu and seafood.. I couldnt finish it all.. but never can with Pho.. its a big bowl, and filling! \nExtras on tables to get your Pho on.. \nOrdered the Vietnamese Shrimp Rolls too.. left feeling not so stuffy! AND full.. OH yeah, and I still had money for a bit of shoe shopping the next day... :-)", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "WUw1InpA-ZoN306hrLyEjQ", "stars": 5, "date": "2012-12-09", "text": "My wife's work had their Christmas party here last night. Although the customer service was slow and average at best, the food was outstanding. I had a burger and my wife the steak salad. I was the DD, but my wife said the margaritas were excellent. Dessert was tiramisu and sweet potato cheesecake. Great little place with a nice vibrant ambiance.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "SYK_LgV8wDoezdu9acfz2w", "stars": 1, "date": "2007-11-29", "text": "Ok, so I have to share my morning experience. But first I must start off by saying this: I'm no moron. Honest. \n\nSo, this morning I stopped for gas. My tank was getting dangerously low and there was no way I'd make it to work. That's okay, for I allotted time this morning for re-filling my tank. From my casa, I turned East on Indian School, vaguely remembering there's a Quick Trip nearby. Perfect. I had stopped there before. \n\nBut it wasn't a Quick Trip I saw at the corner of Central and Indian School. Not wanting to risk running out of gas, I opted to stop here, at this ampm station. \n\nI pulled up to the closest gas tank, got out of my car, took off my gas cap and reached for the gas nozzle. Only then I discovered there was no pay-at-the-pump option. The short notice on the pump said to select my grade and start filling. \"Wow,\" I thought, \"It's so odd for a station to trust people - especially in this area - to not drive off without paying.\" \n\nSo, I followed the instructions, but nothing happened. I kept hitting the grade button. It kept beeping back at me. Still nothing. To top it off (no pun intended), the nozzle was wrapped in this huge rubber tube thing that compressed when I applied pressure to the handle. I had never seen anything like it. \n\nThinking my particular pump was fuct up, I pulled my car up to the next one. That's when I saw it - this strange machine, like an Amtrack ticket dispenser. I approached with curiously. That's when I realized. You swipe your card at this central machine (or deposit cash, if that's your preference) and then go back to your pump. Ah-ha. This is how this station works. So, I did just that. I punched in my gas pump number (4) and went back to my car to re-fill the tank. Already annoyed at this point, I figured I'd pump enough gas to get me through the next couple of days. \n\nOnly, it wasn't pumping. The long rubber thingy was hindering my ability to hook the nozzle up to my gas tank. UGH. So, that's when I flexed my muscles and applied enough pressure to squeeze out $12 worth of gas. Then I re-hooked the nozzle on its perch and walked back to the strange machine for my receipt - it told me to do so when I swiped my card. Only, no receipt came out. I punched the keypad with defiance and walked off. \n\nStupid ampm station. Since when does any gas station benefit from being different? I'm so used to pay-at-the-pump; you just swipe your card, select your grade, pump your gas, grab your receipt and go. Quick Trip doesn't torment me like this. There is no rubber nozzle thingy in my way. Grr. Screw this. I'm never going back there again. \n\n\n(Disclaimer: Said writer of review graduated high school with a 3.98 G.P.A and attended a well accredited college of her choice, where you went on to graduate with honors, having made the Dean's and President's Honor roll more than once. Said writer of review also has street smarts and is able to saddle and ride a horse, do unimaginable cool things with a twisty tie and throw some mean Muay Thai elbows.)", "type": "review", "business_id": "m5i2s4k994c8QumJPRNjGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YoBgKOdfpGH48LpIDSfoQQ", "review_id": "GnTHZqUcie_2EbR9I7O9RA", "stars": 4, "date": "2008-07-14", "text": "This place is a little pricey- but you get what you pay for. Johanna's flow class is great. The only con I have is that classes can be packed, they don't offer tons of early morning classes- but this is the best place in the valley, by far, for yoga.", "type": "review", "business_id": "mWG80MfKn-uRv-RCA_UJDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8fTTvS499XCz4oP49kxq8A", "review_id": "2_EhDKYWR5Pq0fg1fbcDQQ", "stars": 2, "date": "2011-07-11", "text": "They close earlier than most large book retailers, 10pm ... Major bummer for those who like to hit up a bookstore late at night instead if the club! Lol. It seems I usually can't find what I want at this particular location. It's in my area or I'd probably pass on it altogether. This review is location specific. I do love bookstores in general...", "type": "review", "business_id": "A7A97vyr5t7e8zrkGCKndw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "bgu-8nC_yGtxyOeKmiFOMg", "stars": 4, "date": "2010-08-16", "text": "Duke's is the top place in Scottsdale that my friends and I like to hit up to watch a game, or just grab a drink and bite to eat. The place is huge, the food is priced well for a bar, and there's almost always a decent beer special.\n\nIn addition to several TVs placed around the bar, there's plenty of pool tables, dart tables, and shuffleboards to keep everyone entertained. \n\nThe menu is big for a bar. The odd, also very good, part about that menu is the salad selection. Duke's has two pages of its menu dedicated to salads. While not something you'd expect from a sports bar, it's nice to know that there still is a healthy selection I can choose from while watching a game.\n\nAnother cool feature is Duke's \"No DUI Car.\" It'll take you to your next destination. How can you not like that?!", "type": "review", "business_id": "qb4PzVr19bXXLBf71dd5kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o8J-ergbGYjrUy85I_rxzw", "review_id": "cp20maH9XtsB-9776xPBmw", "stars": 3, "date": "2011-01-26", "text": "This place is great to go in and have a look at the plethora of neat toys and candy they have... but that's about it. The prices are way too high and a lot of the items aren't things you can't get anywhere else. They also have a real lack of imported candies/chocolate which is something I would drop more money for. Be prepared to buy more than you wanted if you only have plastic - they have a minimum of $6 to use your card so I had to buy two sodas I didn't want in order to get my handful of candy. \nWith all that said, this is a really nice, unique local business and I love the idea behind it, but I don't have a lot of free cash to spend on a bag of gummy bears I can buy at Circle K for $2 less. This is definitely a place for gifting only and not just when you want something sweet to eat.", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "E0WWNXVze_sfDCbM0oMYvw", "review_id": "I7Jdf9LNuDfjun9bQG0J1g", "stars": 5, "date": "2007-09-05", "text": "Sauce is my kind of place. Great, inexpensive food, casual yet trendy atmosphere, perfect location. \n\nLocated right by Urban Outfitters and Olive and Ivy at the Scottsdale Waterfront, I like Sauce as a pre or post shopping bonanza meal. I always have the same thing: the mozzarella and tomato salad (which you should know is mostly greens with chucks of each, drizzled in balsamic), and the artichoke and portabella pizza. This is a huge meal so I always have leftovers which make for the perfect 2am after-bar treat. \n\nIf youre feeling particularly saucey, you can have yourself a glass of wine as well.", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eebh5dSAeB3KQz6mraPGng", "review_id": "Fq0hEKLCu_vkKRGWX5oJiQ", "stars": 4, "date": "2011-07-23", "text": "Great early bird specials on wine and mini-pitchers of beer before 5pm, only $5. The food is very good and taylored to a wine menu. A very nice place for a date with your wife or significant other.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "A8e50wVP7xcz1sWOE6gEbQ", "review_id": "vCzrQ5MIs-SBnCU5opxSzA", "stars": 1, "date": "2012-06-11", "text": "Wow. Worst food poisoning of my life. Ate here Saturday night for my birthday. Started to just not feel right about 20 minutes afterward. Sunday I never left the bed except to go be sick. I lost a full FIVE pounds in one day. Stay away from the salmon. I for one will never go back. I'm really sad too because I decided on it from the reviews. Another reviewer said they were disappointed in the recent quality. I should have listened!!", "type": "review", "business_id": "Oc-F6O91vOe3T8iOsCBB8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yrjYaNwH2lA3-xOAtwvKDw", "review_id": "IuBsG-8VvN8ksUflnrNRQw", "stars": 5, "date": "2011-03-17", "text": "Loved it! Best French toast ever!", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "g3maenY9AgoZ6koLJZibpw", "review_id": "A5IvvLYkcSeYd7-qGawsIw", "stars": 5, "date": "2012-05-14", "text": "I used Harvil's Auto Body after a fender bender. They were one of the auto body places that was included in State Farm's program. They were efficient, friendly, proactive, highly-responsive, and helpful. I especially appreciated that they kept me updated on the progress of my automobile and advocated for me/my vehicle when needed. This level of high-quality customer services is hard to come by. If you have a choice, choose Harvil's. You won't be disappointed.", "type": "review", "business_id": "Rga1ZkAyy-mFQmICQ2akVw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "8Y5ETV2Xf91biKj_sajB2A", "review_id": "lgNrXPBDKbyTQxE-w7Fvcg", "stars": 5, "date": "2012-06-06", "text": "Came for the beer, stayed for the scenery.", "type": "review", "business_id": "CEswyP-9SsXRNLR9fFGKKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "t6DQoyEm5tRkKQLQhv6lkw", "stars": 3, "date": "2011-04-15", "text": "Two stars because there isnt a drive thru.. and Im a lazy American who forgot that when you live abroad you walk for coffee and your needs.. Three stars because the peeps working are as friendly as it gets.. but the sugar/condiment bar is dirty.. clean it up Starbucks!", "type": "review", "business_id": "mVqw4ktkXhmpbTichSzuIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rotKO3R8h23YbiLFaZ-BLg", "review_id": "4dyAnJ4EW-4DOUmkFilOSA", "stars": 4, "date": "2012-12-22", "text": "Great breakfast and lunch food in Scottsdale. Very cool that you can do drive-thru and come in for a quick, delicious meal.", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vys5F5J7LyQ9pt1fiJCRCA", "review_id": "jTihSlg34X_9hwZJf6DUTw", "stars": 5, "date": "2012-04-04", "text": "Great subs, the Club Supreme mike's style was really good", "type": "review", "business_id": "CQDxI8giIc6Kg9hQFLC6Uw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V3ITtKg7jkHNWOU0aod7eA", "review_id": "K_owB_2fPQtaWQNMPJAQNQ", "stars": 2, "date": "2011-01-13", "text": "The only thing that this Krispy Kreme location has going for it is convenient location and a drive through. You will not see any dough-nuts being made here which is sort of part of what the Krispy Kreme experience should be. Seeing them being made; ordering them as they come out so they are still warm for your first bite.\n\nNow then let's consider this review then as if this was a regular dough-nut shop and it also does not stand up. The mom-and-pop shop I have closer to me makes better tasting ones, but it is probably because they make them right then and there.\n\nI am assuming that they are hauling the ones they do sell here from a different location or a centralized place where they make them, which completely explains why the glazes, etc. taste as if they have been sitting for a while. They are still ok dough-nuts.\n\nThe other thing that this place lacks is in the coffee. I ordered a coffee and the person had one of those Super-sized Shamrock farms half-and-half containers and asked us if I'd like some in my coffee and to tell her when to stop. I am sorry but, who puts anything on their coffee without even tasting it first. Not me that's for sure. Worst experience getting coffee here.\n\nBottom line: The dough-nuts here will not be what you would expect from Krispy Kreme and forget about ordering coffee that will be to your liking.", "type": "review", "business_id": "Tgk_OouuTX4UreQcHbem4A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Hqgx3IdJAAaoQjvrUnbNvw", "review_id": "F-RmBa4oOdKV6OT5bjT9-Q", "stars": 4, "date": "2012-06-22", "text": "Awesome pizza, great cocktails, and salads. Friendly staff. A favorite!", "type": "review", "business_id": "ZeHShnkhjkBvGi5BbYTJOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "N-0qJ-03xPg2t5lYu0z6BQ", "review_id": "MTksC2ZIaypyLRzE5fIcdQ", "stars": 4, "date": "2011-02-02", "text": "Great girls night out place. Wine selection was extensive and we DEVOURED the Bruschetta! Try to get there for the Happy Hour prices or you will be paying a minimum of $9 per glass of wine. \nOne of my new fave places :)", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9v-aHckN0L0r_7pC2Azvrg", "review_id": "q_tLyg64QtRtAI4lRGhz3g", "stars": 4, "date": "2011-05-24", "text": "The hyperbole around this restaurant is unreal. \"Oprah flies in specifically to eat there.\" \"New York Times and Bon Apetite rate it as the best Pizza in all of the U.S.\" \"Jimmy Kimmel hired Chris to build a personal brick oven in his own home\" \"I ate their once and my eyesite was restored.......praise jesus!\"\n\nThere is no denying this is great pizza, All of the ingredients are delicately chosen and prepared by the man himself, and he manages to pull flavors out of each that should not be humanly possible.\n\nIf you live in AZ you owe it to yourself to try it at least once. Steel yourself for a long wait, however, 3 hours isnt much if you've got friends and wine with you, just dont get too drunk to taste your meal when its finally time to eat.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IwZkZmCpc2D7DslEogiBYg", "review_id": "AFOyom3A0V44-QNPA4zdOg", "stars": 4, "date": "2012-09-22", "text": "Great hh prices. Like to go and unwind. Definetly give it a try", "type": "review", "business_id": "2qbajPD8M7PJlWWaHSRR5Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8z2mKSqTW-4pLobAUNvrsQ", "review_id": "fv882z_mNmkejPzFczNUJA", "stars": 4, "date": "2011-03-01", "text": "Friendly staff.\nFast check-out. \nGreat selection.", "type": "review", "business_id": "V2ZVpEceFXxeyurZudgUyQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "CcdJ_VhU_zqe2fL7G3eXug", "review_id": "jK5z012Yvl-8hM10SkgR6g", "stars": 3, "date": "2011-06-08", "text": "Not bad, but not my first choice for the area. The staff are friendly and the food is good, but it just feels too much like a man's club. \nThat being said, it is a great place for guys to go for dinner who are really looking for dinner. I think I need more... of something.", "type": "review", "business_id": "QdbZyl-LWFS54u93Vjd5SA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0JC7aBkxhV8by4iVGCU5Wg", "review_id": "0S58fs0VizdsvomrbgtkJw", "stars": 4, "date": "2009-06-18", "text": "Mmmmmmmm Saganaki!\n\nThis place is a very good value, delicious really!\nKind of a cute little dive with AMAZING food.\n\nThis place makes me think of a few close friends who brought me there.\nGood times! Good place!", "type": "review", "business_id": "0dIChGWBs9ueUXl0hhkw2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "S1FBiIPZ8qsGVhV3LCCzkg", "stars": 4, "date": "2011-06-12", "text": "Tasty Mexican food with reasonable prices. Their breakfast burritos are quite large and filling. I had the chorizo burrito, which also comes with potatoes and eggs. It was pretty good, although I wish there were more chorizo in the burrito for the flavor of the meat to fully manifest itself. I also tried some chimichanga, which was equally large and filling. They also have very refreshing horchata. The other nice detail about this restaurant is that they are open until midnight every day except Sunday, which is open until 10 P.M.", "type": "review", "business_id": "1zDCfNgtfyh-Uw8j3JxhHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "o_LCYay4uo5N4eq3U5pbrQ", "review_id": "p7eoASLgX8BZROQGhCpKhA", "stars": 4, "date": "2007-09-14", "text": "This is a cool venue to catch a show. I actually played a show here and it was good times. They have a large dance floor or an area where people can gather to watch performers. They also have a nice sized Bar which can handle a good sized crowd. We all know that is a must when it comes getting a drink in a crowed venue. I really enjoyed this spot and had a fun time rocking peoples face off!", "type": "review", "business_id": "4WcxnNv_lzCIG2eb8O5Mlg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ShQZSh_0Be48sy-JQOb5dg", "review_id": "D1GP4Mr250jmOpq0205qYw", "stars": 4, "date": "2011-10-04", "text": "Their sandwiches are excellent! I like to get the slider trio with bbq chicken, brisket, and pulled pork. Their potato salad is pretty decent but not as good as grandma's ;). Also, their coleslaw is quite nice but just a touch of too much mayo. Now comes the bad part: the ribs. I absolutely love bbq ribs and unfortunately their's were dry with very little meat on the bone. I would not recommend the ribs here to anyone. Stick with the sammy's and you'll be all good.", "type": "review", "business_id": "xfk9eY8gmwn8qsbyd-W6lQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Lmgv46LyI1PlLs0KNIfYFQ", "review_id": "u86A4P5mPKIQNir48-TUlQ", "stars": 4, "date": "2011-08-22", "text": "Oooooh, I liked it, very much so! Just sad that I didn't get to try more of its myriad offerings, especially the pizza. We enjoyed a lovely brunch here on a Friday. Cute little place, lots of ambiance, good people watching (quite the hopping place on this midsummer day), tasty food. We had a round of Bloody Marys, and those were nicely done, as well. A great spot to just hang and nosh and chitchat with friends.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "amQEh_9FAG-7aogTBHnTpw", "stars": 4, "date": "2011-05-06", "text": "Chill coffee bar. That is the best way to describe it. Very unique. All the plates are different. Comfy chairs. Desks. Fresh flowers on the tables. I sipped on hibiscus green ice tea and munched on the best coconut macaroon on my life. Yes, I am willing to go there. Must try. Stop going to Starbucks and start supporting coffee shops with personality, unless your a boring dud.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "li8_bnaT7C0yUaAvYTKmrQ", "stars": 2, "date": "2012-10-22", "text": "Finally tried this place after passing it weekly for the last year or so. Atmosphere is pretty cool, but food lacked any special quality. Large glass of orange juice was nearly $6.00...WITHOUT the vodka (lol)! Hash browns were kind of burned, and small portion to boot. Probably won't go back, as there are so many other breakfast places nearby that are much better.", "type": "review", "business_id": "Cz0McL5lUaihqOIw0_Yo7w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l_6XDatGLHfkGxl8BjI2Ag", "review_id": "610bQ6gopW_nd0Q0RNo0BA", "stars": 3, "date": "2011-05-01", "text": "Great atmosphere, friendly staff, and good food. Dined with a large group so we had a set menu. I requested no butter with my crab stuffed chicken breast but they served it on the side just in case I felt the chicken was too dry. It was de-lish!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "raMSkwLdZ-kFea1fTY_-Ew", "review_id": "vGQveIADS7CzFTEqWZAXAg", "stars": 4, "date": "2012-10-10", "text": "LOVE it here. Small, homey, and yummy food. Great patio! I love their veggie quesadilla and the beans are great. It's nice to know they are lard free...which means you can eat vegetarian or vegan here easily! The kid loves it...especially the beans. They have jamaica, horchata and tamarindo fresh made to drink too. YUM!", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "fSLyFeOWXc1Th_yY1BMYfw", "review_id": "9j6iM7rqNweZfotNMLr9fA", "stars": 5, "date": "2012-05-06", "text": "This is a car wash that I would highly recommend. They do a great job, and pay attention to the details. It costs a little more at Hot Shots, but it's worth it. It takes a bit more time, too- but worth it. The main reason I would recommend this place- they do an outstanding job and are consistent every time.", "type": "review", "business_id": "4nco5mjBAix4kp_7mZuc2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RHrIZMRw_5tq2l69Phr55Q", "review_id": "d-PhxOevXjJdzs5RUMB5uw", "stars": 5, "date": "2010-09-28", "text": "Nadya is one of the nicest people you will ever meet. Part of her personality is what kept me coming back.\n\nRecently she altered a bridesmaids dress for my girlfriend and did a terrific job. Flawless. In years past, she has altered all of my \"work attire.\" I have since moved, but whenever I return home, if I ever need any work done I will bring it with.\n\nNadya, you are a wonderful person, and any recommendation I can send your way I will!", "type": "review", "business_id": "CEWLmBrkM_a214RaGqUbRw"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "--65q1FpAL_UQtVZ2PTGew", "review_id": "JnvruYg_pQgzHdqBchOyug", "stars": 4, "date": "2010-12-20", "text": "I knew when I was heading to Papago Brewing that I was going to get some good beer. What I didn't expect was some pretty decent bar-style thin crust pizza as well. \n\nMy table ordered the T-Rex, which is basically loaded with every pizza topping made from a pig. My friend was in from out of town, so I said F it, and ate plenty without worrying about it. The pizza was thin, crisp, greasy and delicious. It was everything bar-style pizza should be. As for the beer, I got to try a few of Papago's own brews that I hadn't tried before. Their beers are either very flowery or have a bold coffee bean kind of aftertaste. Good stuff all around, but go with some of the other beers on tap if you're looking for a classic tasting brew. \n\nAlthough the food and beer were good, the service kind of sucked. The server was helpful for sure, but he was all over the place and the food took a very long time to be served. I'm not sure if they were short-staffed the night I went, but if the service was more consistent, my experience would have been better. \n\nThat being said, Papago is still a pretty great little spot. I'd definitely head over there again the next time I'm in the mood for some pizza and their beer.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "01pI8lIEwSAzzfPxUby-yw", "review_id": "nBRFJ9s-IAB0d9KhpR9KIA", "stars": 4, "date": "2010-08-10", "text": "Fun atmosphere, great H/Hour prices. We took my 89 year old padre there and he had a ball looking at all of the stuffed animals. Had the fried shrimp, curds (what are curds really?) and the burger/brats and beer for only $6. Asked for med. rare on the burger, but it came out medium, no pink. I will try rare next time. 3 Blind Moose house wine for 3 bucks. 3-7pm everyday, life is good in Scottsdale.\nStay thirsty my friends!", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1RJORk4w9jxxWBKzOvOptw", "review_id": "9JJJ9QYx_5GP9TZB3v28ng", "stars": 4, "date": "2009-01-04", "text": "Ticoz is not a bad place. The menu is eclectic-american and the service has always been friendly, consistent, and attentive. All the food I've had there has been decent and the prices aren't bad either. This is a gay friendly restaurant so it's a good place to consider for a same-sex date. It's also a good place for large groups.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "LqqxEGLPbpwd2Hr0fRF9fw", "stars": 5, "date": "2008-05-26", "text": "Taylor's has such a refreshing cafe menu. I've been for breakfast far more often than lunch. I hope to try dinner soon b/c I think they feature live jazz on Wednesday nights. \n\nI've never ever had a bad meal. In fact, I always have a hard time deciding. Some highlights in my opinion are the huevos rancheros, eggs Benedict (with a choice of meat), waffles & the Mexican omelet. \n\nI never liked Bloody Marys until I had one at Taylor's! I tried a friend's once and have been hooked ever since! But if you want a less intoxicating beverage, try the iced chai latte. Careful, its so good you'll be ordering another before you know it! \n\nBon Appetite!", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uTyIIbOvXH_XZw7OEiTiNg", "review_id": "Mq8zmdocaX6tp5kIf_88dw", "stars": 3, "date": "2009-12-17", "text": "It was ok, there was a large group of us and we all enjoyed the appitizers, including the table side guac. Biggest complaint was how poorly their bar was stocked. No Chivas, no Sambuca, weak margaritas, etc. So while the service was good, the food was just ok and the bar needs to be stocked better. There is room for improvement.", "type": "review", "business_id": "qb1o61d_qrwEpxAm16dZCA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "mavwphmn_T_u_J4Pcmocbg", "review_id": "JLrQJPs0S5aWhToqmsc9Gg", "stars": 5, "date": "2010-09-17", "text": "LOVED THE SWITCH WITH JENNIFER ANISTON what is wrong with film\ncritics today????", "type": "review", "business_id": "9gdQm_wucTIr57ffeT7aYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DIhY93zwQZy_RUg64t77SQ", "review_id": "OA0hYmnnu-Bj_LbCafdOtQ", "stars": 2, "date": "2012-06-23", "text": "Service was great, food was ok, restaurant was clean, but the price was more than it's worth.", "type": "review", "business_id": "x737irkRUs8ABGRc2ILLAA"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "U_fAIe7CUaGMejwSdNvMgw", "review_id": "JgS1qrkODVhBkWA2j_pdIQ", "stars": 3, "date": "2011-09-18", "text": "In the office, Fiesta Burrito is aptly known as \"across the street.\" Kind of like, \"How about across the street?\" \"Yeah, I could do across the street, today.\" If I ever said, \"How about Fiesta Burrito?\" I would get, \"Where's that?\" Then I would have to say, \"You know, across the street.\" And the response would be, \"Well, why didn't you say so in the first place.\"\n\nThe primary reason we eat at \"across the street\" is because it is convenient - it's across the street. And in the immortal words of my most quotable co-worker, \"It is fast, cheap, and good -- no questions asked.\" The part about it being good is debatable. I could do with a little less greasy. Fast, no question. And despite that fact that \"across the street\" charges 60 cents for spicy carrots now, the prices are low. I like the chorizo plate with a side of sour cream, although I might start branching out as we eat at \"across the street\" way too much, and I'm getting tired of always having the same thing.\n\nAt just above a dive, I would call it a hole in the wall, but really, it is just a generic Mexican joint that hides in plain sight. Even the name is rather plain as no one can seem to remember it. There is a smallish, generic inside dining area, which is accompanied by a small, generic patio for outside dining. Some high school students seem to come by for lunch leave. The staff is polite. Until they move or I no longer work across the street, I'll be a regular.", "type": "review", "business_id": "h7hr0v3E1ulU2sXNItD5UQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ANTrWPSoOqbXkvLvxes-aA", "review_id": "uu2Uffx5eTd_7UJ9Jo-uqQ", "stars": 5, "date": "2012-07-15", "text": "For so many reasons, Costco is top notch but I'm going to review their Opto department. They are equally as stellar! Dr. Tieu is super friendly, knowledgeable and very approachable. The retail part has the best pricing on contacts, frames and lenses compared to any competitor. Lucky me they take my insurance and my yearly supply of contacts came to a big fat $0 after rebates. Always ask about rebates for contacts, both the Dr office and the retail desk will usually have some that you can combine!", "type": "review", "business_id": "uVMKdpleBePeFKjixU6AMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cwEl6BD63N_3ICW_hRqkrQ", "review_id": "w-zJeaQ9_plROuy3ufj_Ig", "stars": 1, "date": "2012-09-02", "text": "Horrible experience. We had a home emergency which forced us to move out for 15 days. We referred to them by a friend. We explained to them we're Seniors on limited income but assured them they'd be paid in full. We paid the medical and our insurance co verbally told them that once the bill was submitted they would be paid. But, No, No, NO!!!! \"Not our policy\" They were holding our two kids for ransom!!!\n\nHorrible, uncaring staff to deal with.", "type": "review", "business_id": "d_PxwGvQz9dQ3kHrLK-zAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B931mipLDJYQvYuH0gnJHg", "review_id": "VTgyv4Gx8LZVSIRpEmSC5Q", "stars": 4, "date": "2009-11-19", "text": "I read the reviews on Charleston's and decided to take the plunge even though there were a few negative reviews. I am a visitor to AZ for business and have grown so tired of restaurant food. \n\nI love salad and find most places don't know how to make a decent salad, the one at Charleston's was so good with fresh tomato and egg and the creamy garlic dressing!! Yummy.\n\nThe filet was medium well and I not being a steak fan usually need some type of sauce (except for Ruth/Chris), but this steak was really good. I took my meal to go and couldn't wait to get the hotel because it smelled so good.\n\nLast but not least was the baked potato. The salt on the outside, I quote someone else, \"genius\". \n\nI used curbside to go - AWESOME.\n\nIf you haven't tried this place, go - despite the few bad reviews. I am now a fan and will do something I rarely do - eat the same meal two days in a row (I am not kidding, it was good!!)", "type": "review", "business_id": "VZG8spL8Tqffg9KYbBrDvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "zDDQl3sy4uOClk7a7zYGxQ", "stars": 3, "date": "2009-08-21", "text": "The place isn't have bad. I got a sweet and sour lunch combo, and it came out fine. Their menus pretty thurough, and prices are really fair. Its chinese food, and if your in the area, it should get you where you need to go.\n\nPlace is clean, staff is friendly. Would return for lunch here again soon.", "type": "review", "business_id": "4l3eeM1sOACwdJAz4UyIPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bll2HbgcSl2eXWE7E2uXaw", "review_id": "tSePYTPN6D_krV-luDQzYw", "stars": 1, "date": "2012-10-04", "text": "This place is the classic bait and switch joint. I ordered through the drive-thru and told the person I was ordering that I had a coupon for a \"buy one-get one free\" Chicken Tender Sandwich, The bun was hard and not at all like the picture on the coupon. The two small tenders were extremely rubbery and looked like they had been retrieved from the trash can after they had been tossed for being under a heat lamp too long. The lettuce was the part that most people toss when cleaning and the tomatoes were thin and pale and looked like they had been genetically mutated . . .uhh, I mean grown. This wasn't the first time the server manager did this to me. I should have known better. I used a coupon a while back there for a buy one, get one free breakfast burrito and asked that they prepare it to look like the picture that appeared on the coupon. My bad! When I got down the road and reached into the bag to take a bite, the cook had apparently taken an onion and diced it up super fine and threw that in with it. If you want a decent hamburger or chicken sandwich without attitude and that looks as advertised or better, go to smash burger. As for this place, never, never again. The only good Carl's Jr. I have found in the valley so far is off the Superstition (Hwy 60) and Tomahawk. From the Manager down, they strive to live up to their advertising.", "type": "review", "business_id": "UdXn5e3o_biQoUNv0L-RYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F5Gri8cauLK3uOaZtQV2VQ", "review_id": "uGSPFnhoSqJri_czHfVH_w", "stars": 4, "date": "2011-03-13", "text": "I visited Smeeks this weekend as part of Carmelpalooza. Amazing! It's a fun little store with darling treats and trinkets to drop your cash upon. \nBacon belt? Yep.\nWomen's mustaches? Of course!\nButterscotch Peanut butter cups? Yes!\nVery fun. A bit pricey, but I couldn't resist buying some monster finger puppet key toppers.\nYay Yay Yay!", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t2YBANsJYySOXvHyOjcZkQ", "review_id": "8h2SKY5IM9qCdKlKZxbv-w", "stars": 5, "date": "2012-02-18", "text": "Great posole - and the kids love their bean and cheese burritos. That's all we have eaten no need to venture further on the menu. Great hangover food. The staff is always very friendly!", "type": "review", "business_id": "E6HzAdx2vyZVyuNoa4-Xaw"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "6-cOlCHG9gTu1iwLVm0C8w", "review_id": "ZoQ062IDTg5QpjXyoNsQ8w", "stars": 1, "date": "2012-06-05", "text": "I have heard so many good reviews for this place, so who wouldn't try it? I should have taken the hints before I got my meal, that this wasn't a good choice.\n\nHint 1: Location - It's right next to a smoke shop and a gas station across the street from a mobile park.\n\nHint 2: Food test - It was nice that I got to sample the food even if the first sample wasn't up to par, the guy wouldn't leave me alone about sampling.\n\nHint 3: Decor - I know this should never have anything to do with the food, but it felt like I was eating at a cousins house on the bad side of town, wobbly chairs, wobbly table.\n\nI ordered the teriyaki chicken (didn't think it would be bad, I mean who can mess up teriyaki?) With chicken fried rice (once again, how on earth can you mess up fried rice?) \n\nThe chicken tasted like it was frozen and thawed out all day. Such a horrible taste. The fried rice tasted like it too was thawed out, kind of had a gross tangy after taste. There also wasn't any spices or egg in the fried rice, just a bunch of green onion,which technically isn't a fried rice. This meal can be related to something you get in the frozen section at a grocery store.\n\nThey also give you a snickerdoodle cookie, that looked like it could be the best thing on the menu, until I noticed it wasn't cooked all the way through.\n\nBut the icing on the cake was the gross pube like grey hair I found floating in my teriyaki sauce. \n\nSo the expensive $8 meal was so not worth it, and I 'm sure when Diners Drive Ins and Dives visited, the food was great, but today it was the grossest thing I've ever had.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "i5YFwxft6L08woEmDnBzFA", "review_id": "fuhhZQljBfcNBM0g0NhQLw", "stars": 1, "date": "2009-03-31", "text": "Not good. And it's not been for a couple of years. There are advantages: good location, rarely busy, good for larger groups. But last few times we've been there have experienced average food and lousy service. When joining my already seated group on Saturday (3/28) the high-school hostess wagged her finger in my face like an East German border guard, the waffle house waitress poked me in the shoulder to get my attention and the wife's chicken dish had to be sent back as there were only 2 measly pieces of chicken in it. Only 2 beers on tap. Garbage.", "type": "review", "business_id": "Uov4o_7gRqQKQyjVhWOpVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K9dSPbFhxbLPNZBTp7uOMg", "review_id": "wt2yshWscqnboVKX8SfYtw", "stars": 4, "date": "2011-09-30", "text": "The workers here are SO friendly. The minute you walk in the door you'll here a \"Hello, welcome to paradise!\" \nand if you stay to eat/study/chat you'll probably hear it every few seconds.\n\nI love coming here to study. They have lots of chairs and booths that welcome it and the staff, of course, does not care how long you sit. \n\nFood is decent. There are better bakeries in general but I can say that their cookies and salads are worth trying.", "type": "review", "business_id": "B54ozdLlH5ozkwnweskhYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yn7u-2stfeJNCP06ssw3Rw", "review_id": "DfCfuy_hvcN2PRE7VmFfYA", "stars": 5, "date": "2010-04-25", "text": "Put it this way: Every guest I have in Phoenix, I force to get the Monte Cristo at Morning Glory. It is just that good.", "type": "review", "business_id": "MLcXtnpzygZvQ9BtseLLlw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O2sVDiZ4q3vIikQEF7Gfbg", "review_id": "9a-OeCBGvMuog2Xs9T_QMQ", "stars": 4, "date": "2009-01-25", "text": "All of the restaurants are excellent: Houston's, Bandera, Rutherford Grill (Napa), and Los Altos Grill. Service has been excellent every time. All the food is excellent, however make sure you get the Tortilla Soup if available. The ribs, french dip, and hot fudge sundae are great too.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M6mXcFQa3ELYdOqVR2ffdg", "review_id": "oQ5fkmS176ASF2Uu0U9pnA", "stars": 4, "date": "2010-07-24", "text": "Sun Up is my favorite craft brewery in AZ. Brewmaster Uwe is German and brews creative - quality American ales with a euro twist. While there are regular beers, the cask conditioned and strong ales change regularly. Recently they had 4 different kinds of IPA. Central Phoenix highlight - must visit. Order off of the chalk board - seasonal ales are the highlight here.", "type": "review", "business_id": "3UMcsN9IjoeV8JZvC4apag"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "BzU_wtN6tOVY7PR39Ob_iQ", "review_id": "tPbdG5o477dzOcjRDQr55Q", "stars": 5, "date": "2010-12-17", "text": "My fear and avoidance of the dentist has been building for years. However, I simply couldn't put it off any longer. With trepidation I scheduled an appointment at Downtown Dental and promptly received an email back with available times. I went in not knowing what to expect. Not only had the staff already found my insurance information they made a point to call me by the name I go by rather than my formal name and that put me at ease. I sat down with Heather, the hygienist and she was so warm and friendly that I instantly felt fine confessing to her my fear of the dentist. She allayed my concerns and told me not to worry. There was no guilt trip for not flossing or drinking too much soda, which is always annoying. Then the scary part... the dental work. It was uncomfortable and I hated it, but soon it was over, it wasn't that bad and I felt a thousand times better. Dr. Berschler came over and examined me and pointed out a few cavities we needed to take care of. Then the even scarier part (or so I anticipated)...the price! But I was pleasantly pleased and relieved that the total cost after insurance was literally thousands less than I'd been quoted by a dentist a year ago to take care of my problems. In fact the total cost is very reasonable; this isn't a dentist looking to take advantage of you. I couldn't have been more pleased and delighted at the friendliness and helpfulness of everyone in the office. The convenient downtown location only makes it better. I will never go to another dentist again and I'm actually looking forward to my next appointment. I can't recommend this office enough.", "type": "review", "business_id": "-_0Dx-cEvnQ0w2mauUpyXA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "oovShYF-Qz0twrwngcGqHg", "review_id": "V1Ksr1hq2_ilYnh8vQ-X-w", "stars": 5, "date": "2012-06-30", "text": "This review if for their happy hour because that's all that I've experienced. Love that they have happy hour all night on Sundays and Mondays. I live close by and used to frequent Wildfish often for happy hour. I usually get the crab cake and lobster bisque.", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_QrW0F17JNDfgao-bpz9Ng", "review_id": "5kmDKV6A3CZjLYvpYY7L6Q", "stars": 5, "date": "2013-01-02", "text": "Good food", "type": "review", "business_id": "WYj43z0qmlKklhcvV75mwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "exefpuK6O1ctUUqTxq5XLg", "review_id": "4E1EXHAPrRsYCK_gUC2OtQ", "stars": 3, "date": "2012-02-02", "text": "4 star service 2 star food = 3 stars.\n\nThe bfast potatoes were undercooked and obviously microwaved, not grilled.\n\nThe bacon was just OK.\n\nThe prices are HIGH, both for the menu & the grocery.\n\nWi-fi is unreliable. When it goes out, it takes them 15-20 min to reset it.\n\nGreat friendly service. Nice, sunny outdoor seating.", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JOG-4G4e8ae3lx_szHtR8g", "review_id": "-k_WwJwBXcZg4gFl8a0gfw", "stars": 4, "date": "2012-05-29", "text": "After living oceanfront in Mancora, on the northern coast of Peru, for 4 months I became very accustomed to eating very fresh, excellent ceviche on a very regular basis. I had no idea I would miss it so much when I returned to the states. Luckily, with one internet search I came upon Villa Peru. It was EXCELLENT. I did not expect ceviche in AZ to be so fresh and delicious! And not only that, but they also served it with proper cancha and Inca Kola is a beverage option (which of course I had to order). \nUnfortunately, I have to give my experience 4 stars instead of 5 because they were out of Aji de Gallina, which is what my brother had his heart set on for dinner that night. And also because it took a little longer to get the check than it should have due to an apparent disagreement between the owner or manger & server.\nBut all in all, I highly recommend Villa Peru to anyone who wants to enjoy delicious, traditional Peruvian food.", "type": "review", "business_id": "EFJAVVBQQqftuqY5Wb3WtQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "5Ht4W7Vu2j6E31UN6Y2zww", "review_id": "AxYFUB2yD6uPH5shecXK4w", "stars": 3, "date": "2010-03-05", "text": "Sometimes you just want to give an A for effort...\n\nOr maybe more than three lame stars. As the two other previous reviewers have pointed out succinctly, the man who I assume to be the owner was extremely nice. I made the 1.5 hour drive from Tucson to watch Avatar at Arizona Mills, and my friends and I decided to grab a bite before heading back. We randomly drove down Baseline and pretty much stumbled upon this place. Traffic going westbound towards the 10 was insane. I mean it was bumper to bumper past Rural. Anyway, I ask the guy who I assume is the owner why the traffic was so bad. At first he didn't know, but then realized that the 60 was closed. He politely recommended that we head south then cut across to get back to the 10. \n\nI ordered the Jerusalem Falafel sandwich. It was pretty good. Though, in all honesty, falafel is not one those kind of dishes that one can gush over. In my opinion, it's pretty hard to mess up deep frying ground chickpeas. I ought to point out that the ingredients were very fresh. This also applied to the side salad that comes with the combo meal. My two friends opted for the gyros, and it looked good. The meat was thinly sliced, which is somewhat different than others I've had. They seemed to enjoy the meal, but I don't think they were quite overwhelmed by it either. In fact, we didn't mention anything about the food during the hour and a half trip back home. \n\nThe food is by no means bad at Pita Shack. It's adequate to serviceable in terms of Mediterranean food. The positives regarding the food have to be its freshness and price. In fact, I spent no more than $8 for a sandwich, salad, and drink. The service, as noted previously, is undoubtedly the most shining spot of the place. As we were finishing up our meal, the guy who I assume is the owner offered us lentil soup on the house. We declined after being quite filled and satisfied from our respective sandwiches. I believe another reviewer had the same thing happen to him, and he had positive comments about it. Now, for me it's was the food that really matters. Accordingly, I gave three stars, as opposed to the four that I was close to giving. Should I ever return to the Tempe area hankering for food in a pita, I would most definitely give Pita Shack another shot; if only to support a genuinely nice guy's business.", "type": "review", "business_id": "zonV2F6YNVn2_sI5dK82eg"} +{"votes": {"funny": 6, "useful": 13, "cool": 10}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "4gZStn31t8tz2Qva_oa3Zg", "stars": 5, "date": "2010-10-06", "text": "Let me tell you about my first crush in Phoenix. It happened to me when I least expected. I was sitting at my small cubicle during my first job. Birthday cake graced the break room practically everyday but today was different. When I walked inside to sing an out of key version of the birthday song to my coworker, I noticed a masterpiece in front of my eyes. A white cake topped with the freshest of fruit and the creamiest of white chocolate morphed into a piece of artwork. One bite into the white cake filled with fresh strawberries and I was in lust. It later turned into love and I've been happy every since. \n\nI silently thank the coworker who introduced me to Honey Moon Sweets because I can't imagine life without knowing about this sweet Phoenix treat. Over the years, Honey Moon Sweets has been my go-to bakery for a special occasion. I've purchased the \"basic\" cake for birthday parties. Let me just note here that a basic cake from Honey Moon Sweets is practically a masterpiece in any other bakery's mind. When planning my sister's baby shower, I knew exactly where to go. I wanted the perfect cake and a work of art to grace the baby shower table. And behold the Honey Moon Sweets baby cake. It was three tiers, blue with rattles, pacifier, building blocks, a crib, a teddy bear...you name it filling the top. Some of the pieces were frosting creations and some were real toys. It was almost too gorgeous to eat, but we couldn't resist it so enjoyed every bite. It was just as good as it looked if not better. Honey Moon Sweets does a fabulous job of using the freshest of ingredients and you can tell upon the first bite. The scariest part of this cake adventure was the travel time from the bakery to the Biltmore for the baby shower. One wrong move and the cake would have been toast so be prepared to move lightly with this cake in hand. As you can imagine, cakes from Honey Moon Sweets are not budget-friendly, but for what you get from the cake, it's reasonably priced. Just save your coins for a special occasion because it's worth it. I promise.", "type": "review", "business_id": "YgqexscIgNoMBAO__J97zA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "Jubdf4YjHmVvi2GSmR_iIQ", "stars": 3, "date": "2008-04-27", "text": "It's unfair to review this mall on what it was - since it no longer is (and what it is isn't as good as what it was). It's also unfair to review this on what it will be - since it isn't that yet. \n\nToday, it's a mall I rarely visit. Apart from a few stores I would visit out of convenience or necessity, there's not much to offer compared to what it used to have. The fantastic movie theater, Jutenhoops, Alpine Ski Keller, Bear Cover, and even Ed Debevics are all long gone... oops, there I go bringing up the past. Seriously though, these were painful to lose - one by one.\n\nSo today, there's a Linens 'n' Things which is hardly unique, and a Trader Joe's which is nice to have in the area, and also a Sister's Attic and Closet upscale thrift stores which add a bit of much-needed flavor. The Chili's, the Bookstar, and Black Angus are still around. So is the jewelry store that has never really offered a compelling reason to enter. They've wedged an LA Fitness here and they've also added a Blimpie and an Arby's... all very healthy choices. \n\nBesides all of the generic shops and eateries and standard offerings, there's still a few unique experiences - though nothing like it used to... shit, there I go again. Anyway, so there's a few places that aren't screaming \"standard mall\" such as Pita Grill, a pipe and tobacco shoppe (you have to spell it that way in this case), a place to get eyewear, and some other small and uninteresting businesses. \n\nIn that sense, I suppose this is has become a decent and convenient neighborhood strip mall. This is a shame really since it's lacking most of the key elements that made it really special. It's still a beautiful outdoor mall and the architecture alone makes it a unique alternative to the cookie-cutter malls that strategically litter the landscape of America. \n\nI'm worried about what they'll do to the architecture when they renovate this place someday, but I think the fact that this mall isn't terribly interesting anymore in general means it won't be so terribly missed when they lose that last remaining bit of \"special.\"", "type": "review", "business_id": "qPfX87VuYeBMgM2B0Zr1hQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "olTE1QJ6rReeE83bT4ON1w", "stars": 4, "date": "2012-02-29", "text": "My guy and i decided to try this new salon that just opened a couple months ago. The man and woman working there are so friendly! We were chatting the whole time. As soon as we sat down they offered l us water. The chairs are great and the water color changes as you sit there, kinda cool. The pedicure includes a hot lotion and rock message that is awesome! \nGreat place, we will be back!", "type": "review", "business_id": "y2JQM4ptGJmAhPhafclUsw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "0VptqMr6enVCnqRjVYs4NQ", "review_id": "UF-i9hn6vlIgxQgBFfS9zw", "stars": 4, "date": "2010-01-27", "text": "Ahhh.... Whole Foods, John Mackey's little baby he has turned into a behemoth within the industry. I am so torn by Whole Foods, of course most everything is more expensive. This could stem from when Mackey started the business as a democratic socialist and was not making any money, yet people were complaining about pay and high prices so he then turned into a free market libertarian - you can blame your high prices on that if it makes you feel better. Mackey is also a Vegan, but has said if he didn't sell animal products it would be bad for business(if the business even existed), yeah I get it, but I don't like it. Does anyone even care about the innard workings of the company CEO of the store they love/hate? Ok I'll cut this short.\n\nThis Whole Foods is an older store, not the real old school hippy-esque store, but it's nothing like the newer flagship stores around the country(like the one on Mayo). This obviously means they have to cut back on their selections to a degree but they still do a good job of cramming everything into this much smaller, albeit more \"quaint\" store. If I go to the Mayo store I am gone for 2 hours but only come back with a bagful of stuff because I was lost in a trance \"browsing\"; this makes my girlfriend very angry.\n\nI don't buy all my groceries here because I don't think some things are worth what they charge but in all honesty you can only find certain things at Whole Foods that you can't find anywhere else(Trader Joe's, Sprouts, Sunflower, etc). The Vegan/Vegetarian selection is massive compared to those other stores, they simply carry all the latest and greatest - it may not be the cheapest, but they carry it. \n\nOne last item, and this is for pizza loving vegan fools - Whole Foods was one of the first places to carry Daiya cheese. They actually sell shredded containers of it in the refrigerator section, but they also have it available at the deli. The usual counter worker isn't that friendly which is a shame and always seems put out but that doesn't make the pizza any less tasty. You can get one of their \"surfboard\" pizzas which will feed 2 for 2-3 days with a couple of toppings with Daiya cheese for $15.99. This may be the best deal going at Whole Foods and make up for that $8 bar of dark chocolate you just bought.", "type": "review", "business_id": "wepFVY82q_tuDzG6lQjHWw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "_ki8TQWep4CJTfF4kzyMtw", "review_id": "t4EZ_AK9UH1t51BjSLC6dA", "stars": 4, "date": "2012-05-22", "text": "Sprinkles has amazing cupcakes! The cake is always moist and the frosting delicious. I have had cupcakes from other bakeries where they pipe the frosting on using a pastry bag, and there is wayyyyyy too much frosting. Sprinkles does it by hand, so the frosting amount is always perfect for the cake size. I love the simple decorations they use as well.\n\nThe only downside I have noticed is that they use a lot of oil, and if the cupcake is touching the box the oil will actually seep through the cardboard. But I guess it's the price you pay for extremely moist cupcakes! Also, the frosting is super sweet and it sometimes makes my teeth hurt. It's so worth it though!\n\nMy favorite flavor ever is Chai Latte! They only have them on Fridays though, and they often run out before dinner, so get there early if you want one!\n\nThey also have amazing seasonal flavors: salty caramel, dark chocolate raspberry, eggnog spice, chocolate peppermint, and the best: brown sugar praline! That one is an Easter flavor and I love the crunch of the praline combined with the brown sugar! YUM!\n\nYes, it is a bit pricey, but if you like the \"Sprinkles Cupcakes\" and \"Sprinkles Cupcakes Scottsdale\" Facebook pages they each do a daily whisper word that will get the first 50 people a free cupcake! I always try to buy another cupcake when I use them, so it's about $2 a cupcake then. Many times the whisper word will get you an off-the-menu cupcake, either a seasonal offering from a different part of the year or a cupcake creation. I had a lemon cake with strawberry frosting once, and it tasted like strawberry lemonade...delicious!", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "fpSkzjWTXCSTg3FNVZBhOQ", "stars": 4, "date": "2010-11-13", "text": "I have lived by Wally's for years and I finally hit it up the other day ravenous for some yummy food. I expect great things from a restaurant near AJ's and the Arcadia crowd was definitely representing but I was still a tad skeptical. \nWe started with the calamari which was lightly battered and not like chewing on a tire. So far - I was pleased. \nI then ordered the pesto caprese pasta which was soooo good. I'm not big on Italian food but I've always raved about it to like five people since I went two days ago. I'll go back and order the same thing - I'm so boring. \nLots of other yummy dishes are served at Wally's such as burgers, other pasta dishes, salads that looked so good, soups, and they have daily specials like pork chops which that night came with a salad, some sides and dessert. \nThey also have a good happy hour. I believe she said all apps were $6 and beers were $4. \nWally - I'm not keen on your restaurant name but I dig your food so I will be back!\nThe staff is really attentive (not in a 5 sec filling up water way either) and really nice like we've all been pub buddies once upon a time. \nPerhaps we were... cheers!", "type": "review", "business_id": "To5CjntVFawXM_hpAhvVdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w9r2bDWydh3HSwZBTlHOFQ", "review_id": "mnV2lNnDUYQGQ_2lXMM4cA", "stars": 5, "date": "2012-06-24", "text": "Food is outstanding! Rebecca rocks!!!!!!", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_uWc9mBsSXz1gQw3rf-1fg", "review_id": "aRpiL6tqMxiI1ORhEYpBPw", "stars": 3, "date": "2012-06-12", "text": "Came here for lunch for the 1st time...and the line was long. Was briefed by the server...p/u your sides...pick your meat...tell them how much weight of meat you want...also get unlimited slices of bread (white/wheat). Boom you got your meal. So I figured...instead of getting the sandwich...I can just make my own with the bread they gave me. Liked how they weighed all the meat before you. 1/2lb of brisket didn't seem like a lot in my basket...but seemed liked what everybody was getting in around me. So figured that was enough and if you eat it with their bread it'll fill you up. Lean Brisket taste good...sauce was good...nothing that wowed me. Wouldn't drive out of my way to get here. Average BBQ joint.", "type": "review", "business_id": "IWwt0vm8lYbVoyGSPd2Z9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AF1FkKODDmXFbVhlNIp4vA", "review_id": "6D44Kh87e_bVh8u2hglwzg", "stars": 5, "date": "2012-10-17", "text": "I'm sure most people don't go to a fancy steak restaurant for the Mac 'n cheese, but as a mac aficionado, it's practically my duty. And the mac here, well it's high quality. I like to order the lobster mac sans lobster (not a big fan of seafood), which without the seafood, is actually quite inexpensive. Now be warned, this is real heavy mac 'n cheese. It's so cheesy, and thick, and delicious; don't plan on being able to wiggle out of your booth any time soon after eating it.", "type": "review", "business_id": "wqIB7hUTQnCswJV4UyYyEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "pQbyx3VDl52eGR2mKd7Qag", "review_id": "8vCQgSfd1R9CFHpGqukt4Q", "stars": 5, "date": "2008-09-16", "text": "FEZ should stand for Fabulous Exotic ZExperience. I was planning on making it here for ages but couldnt until I found out the new metro rail is ride outside!! I needed a quiet place to read and was much obliged when they turned off all music by my request. I was able to read my Nancy Bartholomew novles with great intensity. The staff left me alone for hours and the intoxicating rosemary smell really opened my buds. The atmosphere is definatly trendy, After I finnaly soaked it all in, I would def give this place 5 stars although I didnt try the food or bar.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j4Bk_hLCc6jpOD-Mb4F48g", "review_id": "UUAAh-BTXIMgDlSfsfqpCg", "stars": 5, "date": "2011-05-29", "text": "Better than Starbucks anyday! \nThe staff encourage their customers to get creative and provide new drink suggests to add to their list such as \"The Annihilator\"..\nMy personal Favorite: \"The Cookie with a little raspberry\"", "type": "review", "business_id": "EXmWz2eaKTGNIf3FJUlVZA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "yp90PduP1gD7kgCLWuQg4w", "review_id": "BiG7e5vi2US6fzbxxj_YIw", "stars": 5, "date": "2010-12-23", "text": "Get ready to get meat drunk, then fall into a meat coma!! Although this is not a nationwide chain, this is what a chain restaurant can and should be, it's great. You begin with an immaculate salad bar. Definitely the best one I have ever seen or tasted for that matter. Hell you have to love a salad bar that has a whole wheel of Parmesan cheese for you to enjoy. Enough with the salad lets talk about the star of the show, the meat!! Transcendental might be too strong of a word, but it is pretty damn close. \nIt is endless amounts of meat prepared 15 different ways, all seasoned perfectly. You have to love something that is seasoned so well that if adding salt or pepper to it at the table would over season it. This place is pretty much a buffet that comes to you and after trying several meats its great because you don't want to move, lol. And the best part is, is that you tell them when to come to you!! I could go on and on but if you have about 60 bucks to spend and want to enjoy a great meal just go here and leave in physical pain from over eating like I do!!", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "5j7qmDZTAetaH0yXFnAFyw", "review_id": "iQiY4iRdVjYH9ktqpzddjg", "stars": 5, "date": "2011-12-10", "text": "Yum! I was a fan of Grimaldi's...but this place surpasses them! We had half chicken tuscana (garlic cream sauce) and half chicken artichoke (pesto sauce). Amazing! Great flavors! Usually, I'm a fan of ranch on pizza fan (don't hate)--not needed here!\nComes with the traditional crust, which was really enjoyable, but also available w/thin crust or wheat crust ($2 extra for wheat).\nServer (Zach) was nice, offered suggestions, and was on top of things. Kind of soft spoken, given the tv's and other restaurant noise. Hostess seemed like she was pretty excited to be there and everyone was polite.\nPrices weren't too bad--$18 for a large pizza, $8 for an individual. Variety of toppings, salads, appetizers, calzones, and drinks. Beers ranged from $3.75-$5 for the 16 oz. \nExcited to go back and try some more pizza!", "type": "review", "business_id": "k76odRRsXPErPzB0gjn-3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4Nc0DPLqeSZuqvr1gBTy3Q", "review_id": "xWAvESbLyNmdpdvK32zz5g", "stars": 4, "date": "2011-12-31", "text": "Good food and able to manage a large group easily. Our party had 11 and there wasn't a long wait at all. Highlights: spinach and artichoke dip, onion rings, and tortilla soup. Total tab was only $160 for the whole group.", "type": "review", "business_id": "01cEFI5Pq_RyEwM3GSTopQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9wdAOSpQU2Kmll1V5uAgSg", "review_id": "lT7Js0hLn6axOv0B2bnmlg", "stars": 4, "date": "2010-02-17", "text": "Right down the street from Four Peaks, this liquor store rests in an unassuming strip mall. Nothing notable or special about the outside. You would have no idea that there is such a wonderful beer selection inside.\n\nThe inside has about 1/3 of the store devoted to individual (mostly) bomber bottles of beer first organized by country and in the case of the US by state. A wide variety of several hundred varieties. The staff was helpful and knowledgable about their inventory and quizzed me about the beers I was buying at the register. OK I was a little annoyed about the quiz but at least they knew what they were talking about. The place has several beers in coolers along the walls as well.\n\nThe prices were reasonable and probably a little cheaper than other regional stores. I would recommend this little diamond in the rough for people in Tempe looking to bulk up their drinking resumes.", "type": "review", "business_id": "oYLfNKc6Q_XKG9ixiMiumQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "3NepghaRKgIIU_E5KV_nFg", "stars": 5, "date": "2009-01-20", "text": "I cannot recommend Phoenix Knife House enough. \n\nThere are very few places where you can go and physically put your hands on so many different Japanese knives, which is obviously key in any knife purchase. If you've ever spent hours in the kitchen doing prep and chopping, blisters are a very real possibility if the knife doesn't fit. I've discovered over the last several years of cooking at home that I prefer a lighter and bolster-less knife for high speed chopping, which ultimately led me back to PKH for a purchase. Last year I purchased a Fujiwara 150mm petty for less than $60, and it's been a great knife; my girlfriend also likes it because it's light and maneuverable. She bought me a Misono UX10 for my birthday, which will ultimately replace my Henckels for most uses. Bottom line, go in, tap into Eytan's knowledge of the knives (and care and maintenance), and get better tools for the job. It's well worth it.\n\nI bring all my kitchen knives here to get sharpened, either by hand or on the grinding wheel. Today I had four knives sharpened, three on the wheel, one by hand, and two with tip damage. Total cost = $13. \n\nBonus: purchases are tax free. Highly recommended.", "type": "review", "business_id": "BVo6wBuFwPH3QVqs8-JEDQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "lcoH6YO-cG3wT003bEvvOw", "review_id": "Fz9aX8NFZV9V6qrNxsvpSw", "stars": 5, "date": "2012-03-07", "text": "WOW what can I say... our friends have eaten here for years and we finally got to eat at Don and Charlie's for the first time in all the years that we have been coming to Spring Training. \n\nWe had an excellent dinner i was in the mood for fish and had the Macademia crusted Halibut.... WONDERFUL!!!!! My hubby had the prime rib and finished off every last juicy bite... the scalloped potatoes were the BEST I have ever had at any restaurant.\n\nMust make this one of our usual stops during our yearly visit to Az.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tMcsJoxQuJGBsQNI3p_UdQ", "review_id": "N4kD09LGHR6UquOSuhbyFA", "stars": 2, "date": "2010-03-20", "text": "I've heard when better waitresses are there, service is better, but if you go on the night she isn't there, service sucks.", "type": "review", "business_id": "a29C6sg39V2HP_tq3m8nEw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TODYSp4aWM5pP3J1R3-HcA", "review_id": "GIYbf-N9Wn1IQORBzCnOrg", "stars": 2, "date": "2011-11-09", "text": "If Einstein Bros is the benchmark at 3 stars, then Bruegger's barely earns 2 stars.\n\nCustomer service is mediocre. Only one gal (who I've seen a few times) actually smiles, makes eye contact, and seems pleased to be working here. Everyone else acts inconvenienced that I am there.\n\nIf you order a simple bagel w/cream cheese, you will be O.K. They are not bad, but nothing special. If you order a bagel sandwich, be sure to bring a towel as they leak a lot and turn soggy after a few minutes.\n\nCoffee is O.K., but nothing special. \n\nStore cleanliness? It could be better. The beverage counter (with the lids and coffee creamers etc.) is often messy and sticky. \n\nI noticed that there is a duplicate entry for this location, so I'm pasting this review on the other as well.", "type": "review", "business_id": "sN1D1gv_m-KflQ-PlCUbRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZIzRvYhfrMgMVmVILaT-yQ", "review_id": "AUwzWXSonX_ZR-mLvb_cEg", "stars": 4, "date": "2012-07-15", "text": "Great place to meet friends for a bite and some drinks. Very social atmosphere and the food is really great. Service did not disappoint and the prices are really fair.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "atGMs2cdm5kzM2dFmSHtrg", "review_id": "g4byLEBKR_gI-nXlO6hOxw", "stars": 4, "date": "2011-04-27", "text": "You don't come for the run-of-the-mill pizza. Nor do you show up for the cheap pitchers of beer. No, you make it here for the show. A massive organ fills the entire building, incorporating dozens of intruments, and the virtuosos playing it take center stage. Sit back and watch then perform your favorite songs, from Star Wars to The Little Mermaid. Don't let the average food dissuade you from a one-of-a-kind experience.", "type": "review", "business_id": "VRxelK__tuQD0KBxx2LzeQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "x5O9o6yikw8tO4bB7ziOgw", "review_id": "YsgjOe5_0j9Jjt5fhv-1RQ", "stars": 4, "date": "2012-07-12", "text": "I have to laugh at the person that stated the service was bad. I have now been three times (can you blame a gal for craving a burger?) and each time everyone is almost too overfriendly. They ask if you have been in before and if you state no, they offer to go over the menu. Now this might stop after this location has been open longer, but it's helpful since there are only a few locations in the valley. When your order is ready, you are paged and you go up to grab your meal, and they always find it necessary to read back your order, when right in your hand is a tray with a juicy burger begging you to take a bite... so I am always a little feisty for them to read it off, since I want to chow down! They also seem to want to check in on you while you are eating, which is nice... but can be overwhelming if you are on your lunch break and trying to catch up with a friend... but I won't complain about good ol' polite customer service. \n\nI order their original char burger without cheese and without the onions (I did try them with the onions and honestly, I liked the taste of the burger better without)\n\nI like their crispy onion rings, they seem healthy if that is even possible for an onion ring... but they are crispy and not greasy. Try them, you'll understand what I am saying better :)\n\nThe fun item I always get \"to go\"??? Their coffee flavored milk shake. It's light, it has nice flavor and is a little bit of heaven.\n\nPS: Parking is not like it was with \"My Florist\" there are many more available spaces now, which is totally awesome.", "type": "review", "business_id": "lK35BgpjOMXwchPzqYWomg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0wudtUcAW7jpufwV2xB3kw", "review_id": "k1ZBs68QktWpk7dBL5IM7g", "stars": 1, "date": "2012-08-06", "text": "Will never eat here again. Sandwich was meteocre and overpriced. On top Of that I was charged more than I was told the total was. Horrible first time experience!", "type": "review", "business_id": "NtmLlKfCFfM0K5j6WWKxQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CjL3FtpiDzhNXTQPw0-RBw", "review_id": "qz0NSRCNkL-zFbu2NmdtkA", "stars": 2, "date": "2011-02-24", "text": "This place is not that great. Shogun express has way better chicken teriyaki rice bowls and beyond.\nThe chicken is what really bothered me here. It was really tough and extremely chewy. And that was the white meat. They're bowls are around 5 bucks which I like, but they're not even filled to the top. \nAll in all I came here because Shogun was closed and there aren't any other rice bowl places in Scottsdale that I know of. Eh.", "type": "review", "business_id": "EuNV8_SReV_3KeET2Ums6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TESe3g-BJSdZ5H4KC7yr9g", "review_id": "7lRJMM8zL3aKthsNIGgRmg", "stars": 4, "date": "2011-12-30", "text": "Zia always has a great selection of both cd's and dvd/blu-ray. And the great thing with zia, is you can trade in your old media - cd, dvd, video games etc, for credit toward buying new stuff. I usually go thru my cd's and dvds, then head down to zia - trade it in and come home with something new. If they do not have it, they order it and call you when it arrives. The staff are always knowledgable and helpfull. I have been going to zia in tempe for many years - and the chandler location is just a good if not better.", "type": "review", "business_id": "6vKgpermKi8PNDYD5mkpKQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "pJK1iS2seiKKNpigBHw8tA", "review_id": "5FUQ9wO_oKjhmbGoQmHa4g", "stars": 5, "date": "2011-07-28", "text": "Saw this place in the Yelp email. Needed to take my son to Toys R Us to use a gift card and it occurred to me that Habit Burger was right there, so I suggested we have lunch there rather than the usual McD's. I temped him with the offer of a chocolate shake.\n\nI was amazed with the cleanliness and brightness of this place. There was a line when we got there, but it moved quickly. The tables were packed but we managed to snag a 2-top pretty soon after getting in line. My son had the kids grilled cheese meal (something you don't find at your standard fast food place) and I had a charburger. We shared his fries and the shake.\n\nOMG - the burger was heavenly! The roll gets a little grill to it so it has a little crunch on the inside. It was not greasy at all, just tasty and soooo good! The fries were equally ungreasy and good - crunchy too. The chocolate shake - my son only had about 3 sips which left me to drink the rest of it (dang it) - was absolutely delish. And the prices were outstanding!\n\nIts a good thing there isn't a Habit Burger closer to my house. I'd eat there all the time! Five Guys? Forget em!!!", "type": "review", "business_id": "Cr2JNnewX53TYd9w6qw6Jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n5PtmHO-PSHiyseG56XZtA", "review_id": "fpBxt3O6Lf1UeLJNKUI7Ag", "stars": 2, "date": "2011-02-27", "text": "Great margaritas, but kinda pricy for what they have. Their food isn't all that special :(", "type": "review", "business_id": "-IEBe1UpCz8-dTAp8_fClw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "zygQKLaNi9X1iBOQyg7QfA", "stars": 2, "date": "2008-07-02", "text": "Let me start by saying I have never had BBQ I didn't like. I've had BBQ I could do without, but never that I didn't like. Went in for lunch today and I was the only customer, so I figured cool I will get good service no matter what. The girl sat me and was very pleasant and indicated my waitress would be right over. About ten minutes later, watching the waitress talk on a personal phone call at the bar the whole time, the girl who sat me came over to take the order. She walked up, didn't say a word, and just stared at me. Ok I can live with that it was only a minor inconviencence. \n\nGot the #4 lunch chopped pork sandwich with beans and a lemonade and it came out very quickly. Possibly because the beans were Bush's or the like? They tasted like canned baked beans heated up in a microwave. Not cool. The sandwich was ok at best. Thinking back on Stacy's, Honey Bear's, and other great BBQ spots, this one was not even in the same arena. I'll have to go back though and try a sandwich with the correct sauce on it. There was one sauce on the table which after reading reviews here I had assumed was the BBQ sauce. It looked a little watery but I thought whatever its NC style, and it may have been because it was a bit vinegary. On the way out I noticed every other table had a red sauce labeled BBQ, so I guess they have two different ones. I would have preferred the red one I assume. \n\nThere was no atmosphere, the place was run down (doesn't appear to have been remodeled after Shish Kabob House vacated) and was generally a dirty feeling place. Seeing as they didn't have any customers at lunch time, I'm assuming the place is going to lose money today. Don't know about other days, but they better get their act together quick or it is going to fail.", "type": "review", "business_id": "xL7H-eMQDE-y23VL7MpLsA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "CYKz4de61gfOfZEB7MbaDg", "review_id": "fRfafaJw6pJpApH7bJepZg", "stars": 1, "date": "2011-06-20", "text": "Went last week, and ordered a dozen variety. I didn't care for any of them, very dry, the frosting wasn't very good,even my 9 yr old daughter spit her cupcake out!", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "65GC-tdQLtOEaFieHKaG-g", "review_id": "r8XAVBZfl2IxrDmGEEgEOA", "stars": 4, "date": "2012-04-26", "text": "drove past and saw the sign, and after having spent several years in Texas, had to try this place -- and was extremely impressed. I had the moist brisket, and even without sauce, it was awesome. Nice pink smoke ring, moist and tasty. They even had the sides of dill pickles, jalapenos, and onions -- yum!\n\nI also had the cole slaw, and it was very good as well.\n\nI definitely want to go back and try the hot links and the turkey -- but both my friend and I really enjoyed our first (of many to come) visits.", "type": "review", "business_id": "4ic-c1LquBiT0IuvKXuEyw"} +{"votes": {"funny": 5, "useful": 7, "cool": 6}, "user_id": "zHH2Iz49wCZYYDLBTv0YOg", "review_id": "nrkXHqkzu7Afg6yaAGfraw", "stars": 2, "date": "2009-01-27", "text": "So I've been back to Ra a few times now, and while the food is always acceptable, the service has gotten progressively worse each time. Today my co-worker and I actually waited an unbelievable 50 minutes for our food, which - if your waitress stops by, checks in with you, apologizes, lets you know she knows you've been waiting - wouldn't have been nearly so bad. Still extremely annoying, sure, but forgiveable. Not this waitress - we had to call her over for every thing we needed. Serioulsy, not once did she just stop by to check on us. We had to call her over to place our drink order, ask for sugar for our tea, to place our food order, to get the check, everything. So by the time the food came, I had to scarf down my grilled apple teriyaki salmon brick in 5 minutes to make it back to work on time. That's it, Ra - you've lost another customer.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ggWX3saEBUwrsitDlV0Qrg", "review_id": "gd4z7EXE8Wcs1fJHbW4suA", "stars": 5, "date": "2012-10-06", "text": "We recently had a pleasure trip to AZ and I booked at the Fairmont Princess and I must say I made an AWESOME choice! \n- Room was I guess a standard King but it was so large and spacious with a couch and seating area as well as a very comfortably appointed bath and patio. The decor looked fresh and new as well. Very contemporary. Lovely. We were in building C and overlooked the rose/aroma garden which was quite quiet and pretty. Might have been a little better to overlook the lagoon with the firey fountain but we were pleased none the less.\n- Pools were the best. We swam in the main south pool, the east pool and used the slides the kids area as well. Did a lot of night swimming as it was hot and gotta tell you...night swimming rules! We rarely get to do where I live.\n- Restaurants and bars were very good...if a bit pricey...as well. We had dinner at Bourdon Steak by Michael Mina which was very tasty and nice ambiance. Ate at Hacienda Restaurant and also at the bar at an outside table. Kinda liked eating at the bar better. Yum of the drinks. \n- Great trip....great place...we will be back!", "type": "review", "business_id": "9mfec4ySQpW8doGs3FUP2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0b_ehtfJXDNSBJMW1hSQ_A", "review_id": "yGwurUrumf-00Pw7PPeagQ", "stars": 5, "date": "2011-11-26", "text": "My husband called the chicken fajita burrito one bad ass burrito. The carne asada burrito and quesadilla were equally yummy. Nice stop for a quick bite.", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XW-KGmN0Rdg5kw1SSSFkew", "review_id": "M3XDIFh75hHNQ_Q-LkPT2A", "stars": 4, "date": "2012-09-02", "text": "Pretty delicious -- very tasty sashimi platter. Loved the ambiance too -- a nice respite from the very toasty desert outside. :)", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "RGjPRM5VcsY7yb98nih9mg", "stars": 3, "date": "2006-06-12", "text": "Eh, lukewarm feelings about this one. I had lunch here and the service was exceedingly slow even though the restaurant was not at all busy. The server looked at me like a martian when I asked a question about the salad. It may have been an off-day... The food was good. Inventive salads... it didn't exceed my expectations, though. Hip mid-century modern decor... I'm not sure that I would go back on my own nickle.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 5, "useful": 4, "cool": 3}, "user_id": "eEo1W07PkjR0jLRkMF5m1g", "review_id": "savQkEzV0BKpAOhA9KNR0A", "stars": 2, "date": "2010-02-27", "text": "Can i just say, i hate everything about this store. If youre too lazy to go to goodwill and dig it out yourself for a third of the price, then i guess this is the place for you. \n\nIf you are trying to sell anything, good luck. Their askew sense of fashion will make most of your goods obsolete unless its tacky 80's regurgitation. The chick actually told me that the band t-shirts i was trying to pawn were too outdated while i had a bay city rollers and rockos modern life shirt in my hand off their rack.\n\nThey are incredibly overpriced, the staff has an elitist air for some reason (which you think would be hard to pull off in a tutu, leggings, and cowboy boots).\n\nSaving grace, they have some killer old punk and skateboarding t-shirts on the cheap for guys and gals. But the only time i even go here is when the boyfriend decides to go thru eastside records vinyl catalog in its entirity. \n\nits like a plato's closet for lady gaga.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "_qIE1IZwp5L9MIi0Yf3YeA", "review_id": "1BYPdZDFh-8ud_mdLz9Gyg", "stars": 4, "date": "2009-01-03", "text": "Unlike Cassandra, I love kids and brought 4 of my own to Joe's. We all loved it. Fresh tasty food, great outdoor seating and lost of room for the kids to play with all of those dogs etc. The ahi tuna was cooked right and the slaw on it was amazing. The french fries might be the best I have ever had. The Chocolate shake was good but a little too rich for my taste. My wife said that the Buffalo chicken sandwich she ate was the best chicken sandwich ever. Her ice tea was amazing. My eldest daughter had the grilled peanut butter and banana split which had chocolate chips, pineapple, strawberries and of course peanut butter that was very different but great! The only drawbacks were the sweet potato fires ( not bad but I have had much better) there was only one condiment and drink area and that was clear on the other side of the fairly large area of land and the lone garbage can was also quite far. The pluses obviously are the tasty fresh food and of course plenty of room for kids to play and bother Cassandra.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "gpNC9L-UNqlmtGxXtOgHTA", "stars": 3, "date": "2008-10-01", "text": "Typical unpretentious dive bar where you can meet a friend after work, play pool, watch sports, whatever... There's a pretty big food menu too. I had the nachos once and they were quite filling and tasty. Nice happy hour specials also. I heard it was a place to watch Ohio State sports but it was pretty dead when I went there to watch a football game. However, it was kind of nice getting a prime spot in front of a huge tv and the service was really good.", "type": "review", "business_id": "BJfjd8oEMW_zq8KTkixyig"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Pv7DGHzZ-uqIUdOsqPpsVg", "review_id": "yMboDemlUcUz8EwxCuBw0g", "stars": 5, "date": "2010-08-25", "text": "I'm a girl who knows her way around a donut. The boyfriend and I would usually venture out to Chandler to get our Bosa Donut fix so I was super excited to discover they had opened a location closer to home. I was also super scared for my waistband.\n\nBosa is hands down the best donut shop in the Valley. Not that there is a ton of competition but still. They're really good. They offer a wide variety from your classic cake to puffy glazed, filled to fritters. My favorite is the glazed twist. So chock full of sugary sweetness my teeth kinda hurt just thinking about it. Their donuts are always fresh and they keep a good stock available so you're not stuck with only the coconut donuts.\n\nI brought in a bunch to work the other day and my co-workers gobbled them up. Who doesn't love being handed a frosted piece of donut heaven?\n\nI'm sure I will become a regular of the Tempe Bosa in no time.", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "RIWcAFp201eWn0fCKd-Jew", "stars": 3, "date": "2012-07-23", "text": "This is great if you are in a hurry, they have slices and salads ready to go. Above average quality and a nice open space too. Perfect stop before or after catching a movie next door.", "type": "review", "business_id": "lNlVwSKqaxE7agiGKfCaAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DFM3LAHhn9O-9Eu8cnqG6A", "review_id": "QVDJ42NMJHgwkeHqYB2_Ow", "stars": 5, "date": "2011-04-21", "text": "Next Door Realty is fantastic! Daradee Murray handled the short sale of my home recently and the entire transaction went unbelievably smooth. From start to finish she was an excellent communicator. She took all of our concerns into account and made the process a breeze for us. I would highly recommend Next Door to anyone looking to buy or sell a home. The personal attention you receive is unparalleled!", "type": "review", "business_id": "fy4tLkVZd4Nhqqrs4ojXnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "dLQ9fi3iR05j6mLQvMW4_A", "stars": 3, "date": "2012-01-28", "text": "I went here this morning for breakfast with the BF to use our living social deal. We had been to black bear before about 6 years ago in glendale and then again maybe 4 years ago up in Washington state. The last time we went, we were not terribly thrilled with the place. Anyway, we decided to give them another shot and it was pretty decent. I had the shasta scramble, which has avocado, onion, bell pepper, and spinach. This was good, it was not the most flavorful scramble I have ever had, but the veggies were fresh and I liked that this was an option on their menu because most places only have one veggie scramble and it has tons of veggies thrown in with no reason for those veg to go together...anyway, the breakfast came with a ton of country potatoes which I liked more than the typical hash brown. The BF got the one biscuit and gravy breakfast and he said it was alright, not the best ever, but not bad. I thought breakfast here was better than Denny's or Ihop, but clearly not as good as the Farmhouse or Liberty Market and the like of local breakfast places. The service was also good, but I thought it was so weird because our waitress kept calling us 'kids' and calling me sweetie, princess, and honey. I find this somewhat condescending, not that I think that was her intention, but I think that is unnecessary. I know this is kind of a diner thing, but I have never really cared for us, but maybe that's just me. The waitress was good at her job and attentive though, so that is what's important. Also, the portions are huge and I wish they had more options for half meals because I don't like to waste food, but I know people like the giant portion thing.... I would probably come back here for breakfast again sometime, however, because it is decently priced and has decent flavor.", "type": "review", "business_id": "1F-pelV0fTduYV_vCrvjLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PXlvgzU25CBGA0JHzzpmOQ", "review_id": "8qrEtyJXwzK9CqKWpSeoRg", "stars": 4, "date": "2012-07-23", "text": "My husband and I were in the Staples parking lot, looking for somewhere to eat. I popped up my trusty Yelp app and found this place, about 30 feet from where I was parked. It's pretty unassuming from outside, but what an amazing dining experience. Not only is the food amazing (well, of course--you make it exactly how you like it!) but the portions are such that you should be able to get two meals out of it. In general, this is a healthy alternative to fast food and an eating experience that your whole family will enjoy. We plan to take our out of town guests here when they come to visit.", "type": "review", "business_id": "CdOb17NMdQpagyHSxv5mHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QT-7jpsEuCR-pFro59KBtQ", "review_id": "-OOIrs-TfIRG1HF-fdiWNQ", "stars": 5, "date": "2010-07-14", "text": "We happened upon this place on Sunday. We had our 2 1/2 year old with us and she was yelling about being hungry. We quickly ducked into Zinburger. All three of us had burgers. The kid's burger was huge and it came with fries. We also ordered the sweet potato fries. The people around us had milkshakes and they looked delicious. I also noticed fried zucchini and figure next time I'll order those instead of fries. \n\nWe were in a rush and had something at 6 pm. We told the waiter we were in a hurry. He was great, friendly and accommodating. We were seated next to the hostess stand and my daughter kept trying to engage the folks standing there. Everyone was so nice. \n\nMy constructive feedback would be that I ordered my burger medium well and I received it medium rare. It still tasted yummy and I ate it. Had it been served that way to my hubby - he would not have been able to stomach the red juice flowing from the burger.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kszQavQ4dPVYzx0lfIlWJQ", "review_id": "oUw363cdW8aSYQUG5vmPMw", "stars": 4, "date": "2010-04-22", "text": "Came here for lunch and had the calzone and salad combo and it was very good. The portion sizes are just right and the food is tasty!", "type": "review", "business_id": "QbqJEXdngh_9fwqVTI0CJQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FB5y4CbqJzX3r7zELc7SqA", "review_id": "W14paJGcOv-PhHd3GkPnbw", "stars": 4, "date": "2012-05-02", "text": "I only go to ihop for pancakes because I don't really like anything else on the menu. Ordered chocolate chip pancakes and a hot chocolate. Everything was great and I left full and satisfied!!", "type": "review", "business_id": "SNpVV5viJ2aPylP6bkAx8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uCfdp7AH45qanhjzWhYZsw", "review_id": "pGHp2ORQZZkb2_Q3HCAIHw", "stars": 4, "date": "2011-01-31", "text": "Thanks to all of you Yelpers for recommending this place! It was just what I have been looking for in my neighborhood- fresh and tasty Chinese food for a decent price unspoiled by trendiness. Thanks! I will definitely add Deserg Jade to my regular rotation.", "type": "review", "business_id": "m9Wqqma30o-hH2fAX7dnug"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "0I5bCtHHGZsMvE8QqrtlgA", "review_id": "yu9h3obZb712CCNoSc62oQ", "stars": 5, "date": "2011-02-17", "text": "Addicted to duck fat fries! Curry mayo is a perfect complement to duck fat fries. Did I mention how awesomely delicious duck fat fries are? You know what, forget that I said anything about duck fat fries. They only make a limited amount and I don't want you to go. Nope. Don't go. \n\nI guess I should mention the rest of the menu. Everything is awesome. Nutella rules! Seriously.", "type": "review", "business_id": "4gxZ5tPEqm0QnRkILa9cNQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "2fBIkj0y15lcd5z4eNVgGQ", "stars": 5, "date": "2010-02-16", "text": "This is another work lunch takeout place for me and it always does me right. I always get the Jerk Chicken bowl with rumbi rice and have never been disappointed by it. Good flavor, lots of chicken and veggies and rumbi rice is simply delicious. I personally like to add hot sauce and also sometimes splurge on a cup of tortilla soup -which is pretty freakin great. There's alot of cheese on top of the soup so lactose intolerants beware!", "type": "review", "business_id": "vujjKuD4Vls4xKLe5MJ63Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "FktbKOzznpoKTNXMVtc8EA", "review_id": "RKyAbz7d5g6IvUdmvBLoiQ", "stars": 2, "date": "2012-05-01", "text": "Strange layout that makes you think you got the worst table in the house no matter what table you're at. Wait staff and the General Manager (WTF?) standing around doing nothing in a mostly empty restaurant while customers wait and wait. It all comes off as the biggest tourist trap on Stetson Ave, even though the original Barrio Cafe is a local institution, and the prices are actually very reasonable. Food and margaritas were all amazing, but when the front of the house doesn't seem to care if I'm there I won't be back.", "type": "review", "business_id": "bOB11LVavtN9PWTNwR52Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "infC_5J8sA4NiL_QBJpWag", "review_id": "5E7zYtYb4ieE3AskNSraQQ", "stars": 5, "date": "2012-01-29", "text": "I seriously can't get enough of this spicy goodness! All I ever wanna go is SIAM and nowhere else. I've been to so many Thai restaurants in AZ the past month and NOTHING compares to Siam! BEEF MA SA MAN curry is so addictingly amazing and the pad thai is always cooked to perfection. I'm actually craving it as I type this.", "type": "review", "business_id": "I1rvqU2k5UQGo2lGdY6hyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GNCh2HzSVYsS12o76qtUiQ", "review_id": "TfbLkWdYyE6De6rRNFPSCA", "stars": 5, "date": "2011-09-07", "text": "For some reason these self serve frozen yogurt places have popped up all over the valley and they are all very similar. What I like about this place are the choices. I usually don't have any issues, I'm a mint chocolate chip man, and that's typically what I order. My girlfriend on the other hand likes to mix it up and try new flavors and toppings. This place has the largest selection of flavors and toppings of any of the self served frozen yogurt places we've been too. For those of you who are calorie conscience, as I am, they post the nutrition facts right buy the flavor so you know exactly what you're getting.", "type": "review", "business_id": "-73hx2hut_2KPcGpCTO5YA"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "UXlI002lWvHNK4Q35W1EEQ", "review_id": "EFA0oWhDAyjHkK0pF0rwBw", "stars": 3, "date": "2010-03-12", "text": "OH T.T. \n\nat first you were intimidating...all these crazy people fumbling out of your doors....the odd screaming coming from the patio. Not to mention your lack of elbow room that causes your patrons to drunkenly shoulder check each other all night...but now i've grown to accept you. I don't love you yet...i'm still seeing other people...but i feel that we may have a future. see you soon T.T. like in a couple hours....", "type": "review", "business_id": "679pJn1KyKr2X8NcQNyMzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AangeOfIV7Mtviy__ht6xA", "review_id": "_qvTmOLg6av2OgHwcD5rDA", "stars": 5, "date": "2011-07-21", "text": "John did a fantastic job on figuring out my overheating issue on my Infiniti after Grelichs failed to fix my car properly. John is more than fair with there pricing and are extremely knowledgeable. He has a customer for life from me.", "type": "review", "business_id": "9qFaZ7N4MFB0AjdBffiEzw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "NGFk3rOFXXii9glKLoZQHg", "review_id": "WqIQtj1A2eJJkqsgZDhufQ", "stars": 4, "date": "2010-01-27", "text": "This place is a good go to when you're looking for a mexican infused panda express. Haha. Yum! I got the combo meal with the Jade Red chicken made into a quesadilla and the diablo chicken. Really good! I also got jerk fried rice. The beans were also very good. Yummy in my tummy. I really enjoyed Chino Bandido's, but don't think I could go more than once during a trip to Phoenix (I'd get very large from eating like this!). :D Oh yeah, if you want something more than a snack, don't just get a quesadilla by itself. My poor brother thought the quesadilla would be huge and good enough for his dinner (thinking taqueria size), but it was pretty sad and small. Luckily, my combo wasn't that small and I had extra food to share.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8iKbL_CSXD1mRGYXRk2Syg", "review_id": "tVIvAjz2nGPt7_cDr3vOJg", "stars": 4, "date": "2012-07-03", "text": "Outstanding service and food , drinks are not bad. Service can't be beat.", "type": "review", "business_id": "RqbSeoeqXTwts5pfhw7nJg"} +{"votes": {"funny": 5, "useful": 5, "cool": 6}, "user_id": "FnV57D-raoRHJ10OKNT7wg", "review_id": "B00KZRrechVCzEVdvhYlqw", "stars": 5, "date": "2009-03-23", "text": "The obsession started about 2 yrs ago and I haven't looked back since...\nStarted with getting them catered for lunch, then a trip here or there to the restaurant. SO. GOOD. The bread is amazing, but the love, sweat, tears and what ever else they pop in there is addicting. Hmmm, now I am wondering what it is they put in there?? Anyway, I won't think too long and hard about that one. But tomorrow I'm definitely heading back for the Vermonter, gotta feed the addiction.", "type": "review", "business_id": "eJpr6Ks8pr4bmvDVPTN-Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "lND1_sIXaA1GYDxVduyMsA", "review_id": "XIhLk79RWIb1pp1mQf4uoQ", "stars": 1, "date": "2010-07-29", "text": "We've been going here for 25 years and I had my first BAD meal recently. A rotten chicken tamale, the corn meal might have had rancid fat in it or the chicken was rotten, either way it was stinky. The wait staff didn't seem outraged and shrugged it off as though this has happened before. I may go back here in another year, but Rosita's Place is off limits for me now.", "type": "review", "business_id": "hWhVP-28LYP3llaMlAJ_JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QGHqcWMrAQg7d1rwY1Xyuw", "review_id": "9gqBCVCZqOMQPlQT5durWg", "stars": 4, "date": "2012-05-28", "text": "I booked this resort through Priceline like so many other reviewers. I had seen this resort from Scottsdale road many times and always thought I would like to stay there sometime. Now I am so glad I finally got the chance. We stayed for 2 nights over memorial day weekend. Upon check in I was asked if I would like to up grade to a king suite for $20 more a night. I said sounds good to me. I figured it couldn't hurt for as cheep as I got the room through Priceline. I cant say enough about how well we were treated at this resort. Some of the other reviews said that this resort didn't have a resort feel. In my experience nothing could be further from the truth. I was treated better here than I have been at many 5 star resorts that I have stayed at in the past. Our suite was part of a 4 plex of suites and while the decor was a little dated it was very plush and comfortable in every way from the couches to the king size bed. The bathroom was very clean as was the entire room. The ground around the entire resort were impeccable. There are either 4 or 5 pools through out the resort and the main pool has a small waterfall. The jacuzzi tubs were all very warm and in working order. We didn't order room service but I did browse through the menu and the prices were really reasonable. Everyone we met that worked at the resort was extremely friendly with the exception of one bartender at the poolside cabana bar. Overall I would have rated the entire experience with 5 stars the reason I gave it only 4 stars is because of our experience at the poolside cabana. On Saturday afternoon we walked down to the poolside bar area to have a drink and we sat at a table near the bar. We were ignored by the bartender for over 15 minutes while he talked to some young girl in a bikini who was already done getting her drinks. When we were finally acknowledged we asked him if he knew how to make a certain drink he quickly replied no what else do you want in a very rude manner. We each ordered some Orange drink that was on special and it was terrible. So I am taking a half star for that experience and a half star for the extremely high price of wi-fi. It would have cost nearly $13.00 a day so we decided to pass. Thank God for our smart phones. Overall we really loved our weekend at this resort and would definitely return especially for the great price we got through Priceline although I never did get a chance to see a regular room and I wonder if our experience would have been as good if we hadn't upgraded to the suite.", "type": "review", "business_id": "dJvUc4ViWEJ0NJfQtYo7xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kNjopydrBFBTXPN_6aYA8g", "review_id": "W6tV_9XYTDMS3bqKp9H2Ng", "stars": 5, "date": "2012-04-02", "text": "If you're at all a \"Foodie\" you can't come to Phoenix, or anywhere within 50 miles and not visit Matt's Big Breakfast. The wait outside is just part of the ambiance and culture of this tiny little place. I hope they don't very enlarge this place....it would so spoil it.\n\nFood....have anything. Its all cooked to perfection with love and kindness from a kitchen staff that really cares about freshness. My personal fav's are the Waffle and Bacon and the multi grain toast with the fresh jam typically made locally....changes frequently. \n\nThis was on Diner, Drive-ins and Dives a few years ago and its still the same bustling place as when Guy was there.\n\nSide note...this was way cool. On our last visit there were 4 of us, and if you've been here you know there are only a couple of tables that seat 4. So we're waiting outside when the server comes out hands us menus, takes our orders. When we're seated about 15 min. later our food was delivered within minutes of being seated. Helped us get in and out and helped them move a table. Much appreciated service.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9bP3urjM__IP5csFh9ZsuQ", "review_id": "Bm7APgv4PApljYRTUoSOcQ", "stars": 2, "date": "2011-08-08", "text": "Went to this place with family for a birthday party and tried various items from the menu. Wasn't impressed with the food and the quality of the items. I've had better and will not be back since there are better places to dine at in the valley. Sorry for being kind of harsh but I am only being real.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "x4thcv_eJg2FBsb_E8P4sA", "review_id": "qT-_Zyx1JQrpY1YYJPBkUg", "stars": 4, "date": "2012-07-04", "text": "So much better that 5 Dorks, I mean guys. They have salads and great chicken selections!", "type": "review", "business_id": "qAORECtABjr_FsvSzy1apw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "R50WCEHhvycn6OzoEkA2Zg", "review_id": "Bnl_5_Bkg62EJXlOqoT4Cw", "stars": 5, "date": "2012-03-01", "text": "What can I say... we eat here once a week for lunch cuz we can walk here. We come here for happy hour twice a week cuz we can walk here. \n\nSo, yeah it's pretty convenient... but we STAY here after hours to play poker because the servers know us by name and the food is priced right and the poker crowd is really cool and it's a great place to eat-n-learn.\n\nAnd we LOVE Tony because that guy says hello to EVERY CUSTOMER EVERY TIME. \n\nTrust me on this one... jump off the freeway for happy hour... you'll know what I mean when Tony says hello to you, too.\n\nPS get the three meat calzone. You look great and can afford the calories...", "type": "review", "business_id": "fWPg3tjv0hZ_yKR670UtSQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "u-hjbWO4-kvfF0c03q8JOA", "review_id": "jhEB8w-A8_nGSJ7DnR_TwQ", "stars": 5, "date": "2012-03-26", "text": "What an awesome business! Friendly, knowledgable people that make you feel like family when you come in. I can't to tell you how refreshing it is to walk into an audition and feel welcomed! Auditioning is a scary enough experience without feeling intimidated by your environment and the people auditioning you. Here you'll find great people who love what they do and have an extensive amount of knowledge and experience. Oh, and I also recommend taking one of Faith's workshops... I took one recently and I learned some very valuable tools that will definitely help me in future auditions :D", "type": "review", "business_id": "qFPJ_bHbS13PoEEKNexnBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WNCNmynlYmIkz2VeTlfVRw", "review_id": "o54n8xoxJ15KNsLHXVuiwQ", "stars": 5, "date": "2012-06-25", "text": "Delicious food and excellent staff make this small French restaurant worthy of five stars. We began with a glass of fabulous wine that we brought (it is byob) and ordered the onion tart as an appetizer. The taste of the leeks coupled with the cheese, buttery and flaky pastry made this one of the most tasty ways to start a meal. I ordered the marinated chicken. This dish came with a juicy chicken breast with a light pesto sauce, mashed potatoes and sauteed spinach. The flavors intermingled to create a sensuous bite, time and time again. My girlfriend got the filet, which was juicy and flavorful and came with perfectly roasted potatoes and tomatoes. For dessert we ordered the tart of the day, which was fruit and coconut cream on top of a shortbread-tasting tart. Just delicious. The service was wonderful, very efficient and friendly. It is not cheap, it was $99 for the appetizer, two entrees and dessert...but for the experience and the exquisite flavors, I will go back for any special occasion... guaranteed.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "PfuPTOzx5u0vucw4fLllKw", "review_id": "TYBDtiPcJ5YBRpzyJcFLpQ", "stars": 4, "date": "2011-10-09", "text": "Nice little find for casual sushi", "type": "review", "business_id": "nKrK1aK2uWtL57Q3ShH6Hg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "lQ2SU7-n12S2tQT8HaKaNQ", "stars": 4, "date": "2010-05-25", "text": "Blue Martini hosts \"Take The Stage And Be The Lead Singer Of The Band\" on Monday Nights. Usually there is a band that sings top 40 but on Monday nights anyone can go up there and sing. My friend loves karaoke and was dying to get up on stage and have her moment so I went for moral support. BTW she rocked! Most bars are dead on a Monday so I was surprised that there was a decent crowd here. No cougars in sight the whole night! The drinks specials aren't that great but you can get $7 specialty martini's or if you go with a group of people you can split a bottle of vodka for $100.", "type": "review", "business_id": "ttLtsY1S2Angj6hvEdzwDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vDpNMIiwVIBmO8kbucC7oQ", "review_id": "eME05gkT5_MGrerhnEgwdQ", "stars": 5, "date": "2012-02-29", "text": "Everything you need to feel like you opened a time capsule! Place makes me want to have 5 houses to slather in vintage odds and ends. The place is very well organized and themed which makes it easy to find items while you're on the hunt.", "type": "review", "business_id": "WyTiZGv0edFH-J6cDwTp9g"} +{"votes": {"funny": 1, "useful": 7, "cool": 1}, "user_id": "_caYjV_hptPhQTYCxUaqzA", "review_id": "1DmZ5gHhff5CgZ_lqaPyHQ", "stars": 1, "date": "2012-09-19", "text": "Love the idea - vegan Mexican. Have tried to eat there twice. Both times checked their FB page for hours, both times they were closed. Called their phone number, no one answered. No sign, no explanation on FB. Pathetic.", "type": "review", "business_id": "-UT6IHfVW_2yzz1bf8WI5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vktGo1HGeFVoIvZ1K34a_Q", "review_id": "AXMWYfXONosWnIEgjrpqgw", "stars": 4, "date": "2011-02-26", "text": "The food here was great! Wish there was more indoor seating, but the seating both indoor and outside is nice, live music sometimes, nice decor. I've tried a few of the specialty drinks, some are good some are so/so but isn't it always that way? Just preferences. The prices are a bit high, but the portions are worth it, we can split a meal typically. The Deserts are awesome too!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "5RJ2Zycslp8cLyAJl4pUNQ", "review_id": "0KriGr38Pcu1EqHolt1wjQ", "stars": 3, "date": "2012-09-03", "text": "Decent airport with a limited variety of food choices and a strange layout. It feels a little outdated but I was only at the airport for a quick layover.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 9, "useful": 15, "cool": 14}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "e0JP4LgxMad5c1kmEYAGOQ", "stars": 4, "date": "2009-02-04", "text": "Happy hour was hopping today, unlike last week. Bartender Ryan wasn't there, but no worries, as Stefan was just as able and gracious. I selected the cab to go with the RF \"Big Ass Burger,\" even though I wanted to try the zin. Did I choose wrong? I'll try the zin next time.\n\nSince I enjoyed the chile-pistachio bread last week, I asked if I could have the commercially-made burger bun swapped out with the new-recipe chile-pecan bread. No problem. Ordered it medium, no pickles. By the time I had thought to take photos of the burger (I was starving so I dug right in!), the scene was a mess! From the very first slice, the longhorn cheddar-topped patty crumbled into many pieces- I kept wishing I had a spoon to scoop them up! No matter, as it was still a wonderful meal- loved the smoked bacon, and the chipotle mayo worked well both as a burger condiment and as a dip for the wonderfully crisp and seasoned fries (see photos).\n\nIf only there are more happy hour meal selections (only two, excluding the salads) for me to enjoy. Guess I'll be forced to try the Huckleberry bread pudding with creme anglaise and vanilla bean ice cream next time... woe is me ;)", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4fJQVV3r8dTCIaXAVbBEbw", "review_id": "TFE69NF8XEhhK8iHo90k8A", "stars": 2, "date": "2011-10-03", "text": "I'm giving this place 2 stars because it just doesn't have it. \nFirst off, the energy in this place is lacking.....the food isn't anything to write home about and seriously, I could of made better in my own kitchen. The SPINACH CON QUESO DIP was ok, but the chips that came with it were stale and the CHICKEN AVOCADO SANDWICH was dry and came out like a burger not a sandwich......The Skinny Margarita's are horrible and lack tequila and the bartender doesn't know how to make a good martini to save his life!\nAs for the staff? Well our first waitress was a little too friendly and just about sat in my husbands lap....oh, I know that a little flirting comes with the job and is what you do to get a better tip, but come on honey, how did you know that I was not paying for that dinner? If I was, the only tip you would of gotten would of been a 'back off a little on the whole, I have daddy issues in flirting'! I have to admit though, once we changed seats after our dinner and went into the lounge area of the Bungalow, our waitress knew exactly what she was doing when it came to her job and her flirting was exceptional.....she knew how to work it while still being a classy lady, and I respect that! \nAs for the clientele of this place, it's a younger crowd full of loud drunk guys at the bar watching the football game. What you expect in a sports bar.....Outside the crowds quieter and more tolerable.\nAll in all, I won't be back and I won't be recommending this place to any of my family or friends!", "type": "review", "business_id": "E7nk0lC317pGxMX56gvaVQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mUUy72UfqmFj_krWclKELw", "review_id": "AouuOZiVWTySQAD6FIgUDA", "stars": 5, "date": "2008-08-22", "text": "bank building turn to a coffee beanery is way cool. \n\nplenty of seats to settle yourself in and crack open your books and do your homework. the free wi-fi is helpful too, but the connection lags sometimes when their a bunch of people hopping online to check their myspace.\n\nit gets chilly at time, i suggest bring a sweater if you're the unlucky one seated underneath the A/C vent. \n\nthe vault room is great when trying to escape the loud chatter in the main room, just don't forget to turn off your cell phone when you're in there, it's kind of rude...\n\nif you wanna be shaking out of your pants, i suggest the Iced Toddy. it's strong and it should keep you up all night if you have a big project the following day.\n\ncustomer service is very nice and helpful.", "type": "review", "business_id": "IoFggnoj1P4EcmNEP2K6Ng"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "B4K5ruafil9RSDiTIL-1Bw", "review_id": "88PBEqEtElumaEXXEXb5AQ", "stars": 5, "date": "2010-07-06", "text": "I think its about time I wrote a formal review for this establishment, considering I have recently bestowed it as \"My Favorite Restaurant\" - that's a big title to carry. \n\nI often judge Mexican restaurants based solely on their chips and salsa and Gallo Blanco passes that test. They have a delicious green tomatillo and smoky chipotle - as well as the typical hot sauce and fresh pico. Their chunky guac is delish and summery, as they put orange slices in it. \n\nAlthough the chiccharon gets a lot of buzz (I think it taste like Cheez-Its), their best appetizer is the Elote - grilled corn-on-the-cob with cheese on it. It literally melts in your mouth! Oh, and it doesn't get stuck in your teeth like most corn-on-the-cobs tend to. \n\nThe orange cake is AMAZING and reminds me of my beloved red velvet - except, you know, orange. \n\nI love everything about this restaurant - salsas, food, drinks, atmosphere, prices, entertainment (on Wednesday!) - they just need to get rid of that damn giant, ugly, silver air conditioning thing they have running through the bar.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "vhAn390OgR1H4DwacJdc7w", "review_id": "ok-4zBAxaoHwpiSZSjorNg", "stars": 4, "date": "2009-04-25", "text": "A very tasty place for breakfast. I strenuously object to any place that doesn't serve hash browns, but really that's my only complaint. They have a ton of different omelets/scrambles (you choose) and you can make your own. Example: spinach tomato sausage bacon with american cheese. As a scramble. With salsa. The coffee is good (I hear from my wife) and the cinnamon roll is a real treat. Not the best cinnamon roll ever in a million years but a good 8.5/10. \n\nIt is true that there can be a very long wait so plan ahead for sure. You'll be waiting outside. \n\nThey grill their wheat toast-solid.", "type": "review", "business_id": "7WGBi29_vj_7RcPVxpLNHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "khVKfwUxmqz0L_d3Cm1yOg", "review_id": "Rcq_vWK_dAidSNi8Psdi0w", "stars": 4, "date": "2012-02-20", "text": "Superb service and food. Better than average wine list. Steaks and seafood were cooked expertly, sides were just right. Seafood tower was put together appropriately for our 6 person group. I gave 4, not 4 1/2 or 5, stars because it was just tood darned dark and noisy. But still an excellent experience. Pricey as expected, but not overpriced.", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 4}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "5OAeIMIb52Bz6nCp8u2WVw", "stars": 4, "date": "2011-07-19", "text": "I am excited about this place, even though I have not had many opps to try northern style Chinese food. Think dough, and don't mistakenly believe it's the same dough steam/cooked/fried/stuffed in different ways. \nThe kind owner lady proudly told me each of our 3 dishes was made w/ a unique dough recipe... \n\nAt first I was worried all the dough would overpower my tastebuds, until I asked for some dipping sauce... they kindly made me a black vinegar, ginger, and scallion sauce... that just upleveled everything. Who knows if it's traditional or not, but I implored the owner to start dishing this out when Americans like me (smiley face) come over and eat.\n\nThe off-menu items are written on a small whiteboard sitting atop the freezer stuffed w/ to-go dumplings... luckily the folks there speak English, so I'll be working my way thru this secret menu and who knows.. this might go 5 stars!\n\nSW corner of Ray and Alma School, next to the JCC.", "type": "review", "business_id": "jgWAgT7LWPTf5wju9Q-kiw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "DeOc5jG7hJxEmv02zegICw", "stars": 4, "date": "2011-11-20", "text": "What The Duce!?\n\nFor starters, where the heck is this place? At first, I wasn't sure if I should be walking in simply because the factory workshop look threw me off! Um ... hello? No worries, once we walked into the store area that's when the fun started. This place really got my interest. Seems to me you can purchase some vintage items and clothes. They had stadium-seating area with a projector screen, an ice cream shake area, boxing ring, and a small gym -- where the heck am I! \n\nWe finally found the restaurant area shortly. The kitchen is an old school food truck, then again everything about this place is old school; chairs, tables, etc. I ordered the sliders because it was a recommendation - meatball, chicken sausage, and bbq brisket. A bottle of coke -- yep it figures. Meatball sliders were the best of the 3, the sausage was definitely and acquired taste. My sis, had the eggs and avocado one and it was okay. \n\nI enjoy my visit to the Duce simply because of it's odd ball nature. It's definitely an experience wortha visit. - Enjoy!", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "1ylYrKcGNA8MDkhNBTjHMA", "review_id": "hXWYiRqo4iiw21NAkc6srA", "stars": 4, "date": "2009-04-16", "text": "Been to the Rose and Crown a couple of times now and have sampled some food. They have an extensive beer selection, including Sessions. It's an American lager. Very tasty! They also have Carlsberg, which I am told is the Bud Light of Europe. I still love it! The french fries are the TITS! They are so good I was unashamedly eating them off of someone else's plate without asking. I have had the Reuben and was uninspired. The corned beef was good, but overall just lacking. I guess that is what I get for getting a Jew sandwich at an Irish pub. \n\nThe decor is cool! There are futbol kits and scarves along the walls. Ya know soccer? Wonder if they show games there on the weekends? Do they have TVs? Oh well. The place is a little small, but quaint. They do have a nice patio that has ample space. Cool place to hang out on a spring night. I think they had live music too.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "o_Onywa5PRrXHwmrdBZ1PA", "stars": 4, "date": "2012-08-29", "text": "Very good coffee! I get my iced Americano here with room for cream. The coffee is so much better than the Starbucks down the street, but not as convenient...shamefully to say, there's no drive-through. When you have a vehicle full of kids which one would you pick? So, I come here solo right before I wander around the little shops. A must try!", "type": "review", "business_id": "O02Z6r9mO3tORhD5ynWPeg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Gzh93lma7vWTK2WiENHd4w", "review_id": "Zcd6w1ThPZgPNDcT26QApQ", "stars": 2, "date": "2011-04-12", "text": "Atmosphere is like I'm at a Mexican/Chinese/Jamaican restaurant..... cuisine could be better.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vnCCj16sP7BjdyRue7QcdA", "review_id": "2oymozYB2jGQhbOiLTjM8g", "stars": 5, "date": "2012-08-05", "text": "Bobby Q is GREAT! We enjoyed EVERYTHING: brisket sandwich, baby back ribs, brisket with spicy sauce - yum!!! Blooming onion - just right! Baked potato crunchy on the outside and fluffy on the inside withe barbeque pork and the fixings......mmmmmmmm! Our waitress perfect - Go - now!", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "AtAqiWzU_ifXyMvTQhjy9Q", "stars": 5, "date": "2010-07-13", "text": "This store made me feel like I had died and went to fabric heaven. There is just so much beautiful, wonderful, amazing fabric. I dropped a pretty penny- but I've already used some of my perfect fabric for great projects.\n\nThe place is clean, the staff is super friendly and patient- especially with newbies like me. When I brought 10 different reams of fabric up and had to stop and really think about how much I needed- patience came with a smile. It seems like everything (even the high end designers) are around $10/yard.\n\nIf you get bogged down with all the fabric that you are falling in love with, they have a cute little table set up with these funny little signs that say \"get your paws off my fabric\" which made me chuckle. Maybe I'm turning into an old lady who loves silly stuff like that.\n\nDespite the somewhat sketchy location, 35th Ave. Sew and Vac is my new go-to for fabric!", "type": "review", "business_id": "LTG4CxnXElBi7R7vZUbeHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yoa2y89jR7tAnWRLSDca7Q", "review_id": "jbFnxorx2UoV1CfIGOcmfA", "stars": 3, "date": "2012-11-02", "text": "Niro's is a staple. Quick, easy lunch that hits the spot when you're feelin like gyros. I'm not saying it's the best gyro I've ever had, nor am I saying it's the cheapest (around $9 total), but it gets the job done. \n\nI usually get the single gyro meal when I go. The fries are the thick cut super crispy kind, and the gyros are cooked well, with plenty of sauce (not sure what people are saying about it being dry, my hand's are always a mess after eating one of these), and onions and tomatoes to boot. Great in-and-out spot if you didn't bring lunch to work on any given day. Plus, the owner is always really nice and friendly.", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 4, "useful": 2, "cool": 0}, "user_id": "OMqlb9paqHOSOPGiVeL6Qg", "review_id": "CCw0OX1RwsyxFYUwzMxS8g", "stars": 1, "date": "2010-07-12", "text": "Bad music, slow service, disgusting overpriced drinks, and annoying patrons. Definitely wouldn't come back if someone paid me to. I can't even drink this margarita.", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CsNfHqlc5ppb9qk6XUDdFw", "review_id": "tf2OEJPkTFBXSdx_rXjTEw", "stars": 4, "date": "2012-12-11", "text": "www.tiltondevelopment.com supports our local community newspapers!", "type": "review", "business_id": "YfHIg4GabWy-IysbzeocTQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RIFHoJhOqVlhIfUoykg89Q", "review_id": "DY2CnXnnlOV2IZM3jwm_qw", "stars": 5, "date": "2012-05-01", "text": "Anyone who tells you this place isn't amazing is cu cu for coco puffs. The owners are equally amazing. They will remember you and tell you amazing stories and the cocktails are always amazing. My favorite is the lychejito made from lychee infused vodka made in house. The spring roll bar is amazing and they always change it up for me if I ask for substitutions. There really isn't anything on the menu that isn't good they offer everything from Vietnamese sammies to amazing clay pots. I always go for the soup but that hasn't stopped me from trying everything else. Everything is always fresh and delicious. Their happy hour is awesome as well.", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "4jzZIXcXOub2k1cvrlFemQ", "stars": 3, "date": "2009-10-19", "text": "So I'm apparently oblivious to the fact that anything with the name Joe is owned by the same person. Luckily for me, I wasn't stupid enough to order bbq pork again. Joe's Farm Grill is a pretty cool concept and probably the only decent place to eat on this side of the 202 (since Mobsters INC closed, at least). There are enough review here that clearly he is doing something right. Suburbanites love to feel like they don't live in a city and, I'm sure, love the idea of a restaurant with picnic tables and trees. They must because the place was a freaking day care when we went, with snotty brats running all around and climbing on everything.\n\nAnyways, back to the food. I ordered a BBQ Bacon Burger. I didn't bother to specify how I wanted it cooked and it was, surprisingly, cooked to a decent medium-well. I subbed some sweet potato fries with it and they were pretty good. Little more pepper would have made them great but oh well. The wife had wanted to sub the veggie fries with hers but they made us order a side of them. That side was literally 3 pounds of fried veggies and was way too much for any human to consume. They weren't really my thing but the wife enjoyed.\n\nThis place does a lot of things well but they suffer from a lot of the logistical problems that Joe's BBQ does. The line is better and it keeps people from getting backed up but they seem to run out of menus quickly. People grab them, carry them in line, and leave them at the window. As a result, there are no menus left when people walk in. I refilled the thing twice while I was standing in line. Also, the condiment/drink counter is outside and all in a row right by the door into the restaurant. These weird clusters of people trying to get a drink or some sauce develop and creates an obstacle course for people going in and out of the restaurant. This leads me to my final problem - the indoor pickup window. While the summer is long and hot (and I'm sure leads to a lot of people usually sitting inside), the day we went had tons of people sitting outside. When their buzzers went off, they had to go inside to pickup the food. The single door seemed to be all sorts of hazardous for people going in to get food and people coming out with food. Finally, and I know this sounds stupid, but the trash can outside has the smallest opening ever. You cannot actually stick your plastic basket inside the trash can and turn it over to dump your food out. You have to pick the stuff up out of the basket and throw it away with your hands. I just finished my meal, cleaned my hands, and now I have to wash them again because I had to handle a greasy, sauce-covered piece of paper to throw it away.\n\nI know this sounds nitpicky but it turned what would normally be a 4-star peaceful lunchtime experience into a logistically stressful nightmare for me. When you make it hard for me to get in and out with my food, it makes me feel like you don't want me there. I know they are going to read this and I know they are going to dismiss it just like my gripes about Joe's BBQ but do me a favor, when you build your next restaurant, hire someone with a degree in urban planning to help with the layout instead of just cramming things wherever you think they will fit.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "MWII9qY_SqMPvFE3sV9zGw", "review_id": "RageAhURc94P-u6HXDwAVg", "stars": 4, "date": "2011-03-15", "text": "Pretty good. Excellent deals for happy hour. The vegetable tempura, miso soup, salad, beef teriyaki, chicken teriyaki, california rolls, and crunch rolls were very good. The spicy tuna was a little bland. Our children even enjoyed the food.", "type": "review", "business_id": "cfy-C6XNFt-F-dCQfK7EDQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Rl2ODhGKQ4VCueH6rzqBIA", "review_id": "R3JKmqYQxqCv5cWH9vMnbg", "stars": 4, "date": "2011-08-12", "text": "As far as Peter Piper Pizza's go, this one is pretty awesome! Yes, you have the kids running around everywhere. Yes, you lack gourmet pizza. But, uh, HELLO. It's Peter Piper Pizza. I happen to like (not love) the pizza here, maybe it stems from it being rooted in me as a child. \n\nAnytime we go dining with children under 13 in tow, this is always a great choice. The kids eat, they play, they tire themselves out and they come home with a bunch of cheap crap they bought with their tickets that cost me triple what it would of cost at the dollar store with regular grown-up money versus tokens and tickets. Anyhow.....\n\nI'm a fan of this particular location because:\n\n1) The place is spacious enough that you are not run down by little people on your way to pick up your order. \n2) They keep tables, play areas and restrooms very clean.\n3) Service is satisfactory.\n4) Play area, arcade games, carousel are all in great condition - nothing torn, falling apart or borderline condemned like other Peter Piper restaurants.\n5) They have several 32 inch TV's hanging in case you want to catch a particular game while the kids are playing.\n6) And, again, the pizza is really not that bad.", "type": "review", "business_id": "oAxR0TJhPHMrN_hjQWBWMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kNzDEbEdnbdFgnaYD8r6nw", "review_id": "MbC5AQEsbY54Pg-GIuf5Ow", "stars": 5, "date": "2009-01-08", "text": "I originally came here because I heard they have a gluten free menu--i expected one or two pizzas, probably cheese and one other choice. But they have a FULL menu of pizzas, salads, and appetizers that are gluten free. and they are DELICIOUS! \n\nPizza was my absolute favorite food in my past, gluten-filled life. Anything from Slices to Pizzaria Bianco. I have tried gluten free pizzas almost everywhere you can find them, and they are always too dry, too thin, too soggy, or completely different flavor than what pizza crust should taste like.\n\n Picazzo's gluten free pizza is delicious, the crust is pretty thick and has a good texture, not like a big saltine cracker as most places tend to be. the flavor is true to pizza crust! my friends even like it so much they will split a gluten free pizza with me instead of ordering 'regular' crust.\n\nThere is also a range of appetizers that are delicious, caprese salad with gluten free bread and the spinach dip are my faves. \n\nThe employees are all very nice and aware of gluten intolerance--they check with you before they bring you additional food items or before putting GF and non-GF foods together in your to go box. \n\nI love it. If you are gluten or wheat intolerant and you like pizza, this will be your new favorite place. Totally worth the drive, and the money. But the prices are very reasonable for GF food!", "type": "review", "business_id": "sM7kdQ7lL7-oe3DNaJvGrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "7Ztf1LMEz5Zm0njxc46jLw", "review_id": "3AZHdOPpk7TUAtDjKbex6g", "stars": 5, "date": "2006-01-14", "text": "Mastro's serves up the best steak in Scottsdale. They also offer delicious seafood and excellent side dishes. Prices are steep. After 10pm this place becomes a pick up joint for gold digging women seeking sugar daddy's.", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "Hvp74O477vJYmlL45614SQ", "stars": 4, "date": "2010-12-30", "text": "This is a great place for grilled cheese and tomato soup. They also have a great selection of beers on tap. Parking is hit or miss, but you can't miss a cute house that has been converted to a great gastropub. Always a friendly face and you will always run into good folks.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "dj-vs4rukH6dXWVpPOq0_g", "review_id": "EDUz1xofgr13M85fxJ0lXg", "stars": 5, "date": "2012-09-17", "text": "I will start this review off by saying that I would normally have given this place 4 stars, but for a large dog-friendly patio, and immediate water bowls the minute your dogs butt hits the ground, they get the extra star. \n\nWe went today, a Sunday, and sat down next to people that had the exact same dog that we have (a female harlequin Great Dane) and knew that it was fate. We sat by them, because they seemed awesome and in great company, the food flourished in my eyes. \n\nThey have a pretty decent beer selection, they had my favorite Sonoran White Chocolate ale and my boyfriend had something he loved on tap called the Bell's Two Hearted Ale (but apparently it's an amazing IPA). I knew I'd love mine, he LOVED his.\n\nWe had the Mac and Cheese, which was awesome, but not as amazing as others I've had. So order it if your a Mac person, but don't if you're not. \n\nWe had two sandwiches for dinner, I had the Acapulco Cheesesteak (UNBELIEVABLE!!!!!!!!!!!) and Seann had the RB&C (an equally impressive Roast Beef concoction). Those were both devoured with great beer and great conversation with others.\n\nLastly we had the Triple Chocolate Brownie, per a recommendation from our fellow dog owner and it was delish. VERY VERY chocolatey and too much food after an app, a sandwich and two beers, but it was definitely worth trying.\n\nOverall the food would have gotten a four, but the experience with cool people around us, and a great waitress really sealed the 5 star deal. Now being added into the rotation. Thank you Main Ingredient! : )", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7jOAowWbwD-ER1hJE_GAeQ", "review_id": "F_yx0V5rG5H-cLQYnYjQyw", "stars": 2, "date": "2009-03-19", "text": "I used to go all the time when I was in HS and last trip I noticed some change over of the stores from what I remember. The food court has okay variety, but not a whole lot. I think that the management company neglected this place for too long, it definitely needs its facelift. It's great for its convenience if you need to pick something up real quick but I wouldn't be spending all day there.", "type": "review", "business_id": "akCEmlqxFOTpn2oxSPDLkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fBUX2UDQQDrrYNq9Bxft4A", "review_id": "-Thtk_OBDRvDPBpLFq_ZsQ", "stars": 3, "date": "2012-12-04", "text": "Ok. Not great for what is supposedly a good steak joint. Not much ambiance and food was good not great.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F6B-A5coQW7gGhi4sd_mkg", "review_id": "Wk8ta6FpCUduQ21bMzFZRA", "stars": 5, "date": "2011-12-10", "text": "Yummy yummy yummy! Absolutely loved it - kick back, quiet, people nice, not crowded and breakfast was crazy yummy!", "type": "review", "business_id": "Lfm0zMACRFYpUZR_xGMYAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ILxnPlGmSetxekgmEi15Rg", "review_id": "rtc78teedDhKsolGw65sGg", "stars": 5, "date": "2012-09-10", "text": "My boyfrind and I attended here this past weekend on Serptember 8,2012 to celebrate our one year anniversary. Every employee went out o their way to tell us Happy Anniversary. We were seated quickly after entering the restaraunt. Our waiter was knowledgeable, friendly and very professional. We were given our own privacy to celebrate intimately. The food was amazing and we both enjoyed our selves so much!! Thank you Meling Pot. We are going to make you our annual celebration spot!!!", "type": "review", "business_id": "FOfhEC6rN23RQaUlsR2byw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "acOfAooftS7jdWlhyI0CQw", "review_id": "BFN9bmI9H0LIYaKt1fU4mA", "stars": 5, "date": "2010-07-31", "text": "Cute busy place in Central Phoenix. Not hiding behind gimmicks to make themselves authentic. Simple and sweet. Staff is well versed in Japanese food, if you haven't had it in years ask. Great staff, great food, great times.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "H2jcFGSS1n60jcKPBb-IoA", "review_id": "jGxgko-vayEnO4axbRatdA", "stars": 1, "date": "2010-04-01", "text": "I think they need to hire a better chief; the food doesn't taste right.\n\nMy mom said she can teach them how to cook for free.", "type": "review", "business_id": "8ZQc4awuK6_yvcERvczR5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FL1xj5qKFZkU5GXVBj5TUA", "review_id": "pUElvYJztnBdefNiXs7OIg", "stars": 4, "date": "2010-01-04", "text": "I'm shocked to see there aren't many great reviews for Maria Maria. My wife and I have been there several times, including a breakfast stop and always come away very happy.\n\nThe steak fajitas are so good my mouth is watering as I type this. They give you several salsas with your meal and my favorite is the chipotle style creamy sauce that comes with the fajita. This is the stuff that dreams are made of. \n\nAlso their guacamole is so good and fresh. Love the salsas as well! Everything else on the menu, though is a little off. Don't bother with the mole, it was just gross.\n\nVery cool decor and sometimes they have live guitar. Very classy Mexican restaurant. Go for the steak fajita, guacamole and salsa.", "type": "review", "business_id": "KIgkwPEOxbfdeCk0ltycOQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "EAvzjtPx7kBk83GCWiaSDA", "review_id": "eKxfvd2BbCWTRSSlZu_Wcg", "stars": 1, "date": "2010-07-12", "text": "Never Again,\nI brought my Mountain Bike in (which I bought 1 week earlier from Walmart) to have them replace my flat inner tubes with puncture resistant tubes.) I came back 20 minutes later when they said it would be done and as I rode away, the back tire rhythmically rubbed against the back brake. When I returned and told them about it, I was told the back wheel was not true. It was true for the whole short week since I purchased it from Walmart. I plan to take it to their competitor (Landis) and pay the extra $15-$25) to have the wheel put back to the straight condition it was in when I brought it to Slippery Pig in the first place. I would never give a shop another penny for an extra service I should never have needed on a brand new bike which coasted perfectly when I brought it in.", "type": "review", "business_id": "42Ai9wcFPE2HZ_aADGXI9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqVGNGqI7m0KIkFrYDr9Eg", "review_id": "5B6ZAITvJV1D5L9rUhtEIA", "stars": 1, "date": "2011-12-16", "text": "Went in for acrylics on Friday and it was horrible! I've been getting acrylics for years and it has never been a problem to have them filed down...until this time. The tip of one finger was filed down so bad that it's blistered. (At least the nail tech put some antiseptic on it so it's not infected.) Also, when I put some lotion on my hands Tuesday a lot of my nails started getting sticky and filmy like they were going to disintegrate. NOT NORMAL! I removed mine today and found that my nails were finely filed, so it looks like they would have fallen off soon anyway. I'm not going back there again.", "type": "review", "business_id": "w2PHq5wfGuqWmHAruLtZ0A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "DeEl8Wv1AF8oFTBKazp5Mg", "review_id": "mbt2MgcB9Ue2paJ6Kf7TYQ", "stars": 4, "date": "2012-11-25", "text": "Angelina's Pho and grill was very good! excellent appetisers; which were very fresh and brought to us in a very timely manor. The service was very good! restaurant was very clean, as was bathroom! the pho was good, not the best best in the valley but very good! the broth was a little bit too salty for me. we will defintely go to this pho restaurant again!", "type": "review", "business_id": "G-_YjR1YrlkgIo2iavJoew"} +{"votes": {"funny": 1, "useful": 5, "cool": 5}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "Q4wTVVEnkN-tPuspO0FQTw", "stars": 3, "date": "2009-10-22", "text": "I have visited Tokyo Stop twice now for an a-ok lunch. There's nothing really bad about Tokyo Stop, but it just hasn't blown my socks off. On my first visit I had the bulgogi plate. It was HUGE. Full of hot marinated beef and a large serving of white rice. I've had bulgogi several times before and this bulgogi is a-ok. Again, not the best I have had, but not bad! I poured Sriracha all over it and I was a happy girl! The second time I visited, I ordered the teriyaki chicken combo. Again, another a-ok dish. Nothing fancy! The prices for each dishs is VERY reasonable. I don't think I've paid over $7 for anything.\n\nI would most certainly visit Tokyo Stop again. They offer a solid lunch at reasonable prices.", "type": "review", "business_id": "CO8UjN6WXsDJqo5qJx8nFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2N6lSx6em9TI7Y4Krysj2g", "review_id": "60iylZdBq3RunFH9p7-C_g", "stars": 2, "date": "2011-05-26", "text": "I soooo wanted to love this place after reading the great reviews. I must admit the decor is far better than the typical nail joint; I too don't understand the point of pictures of really long red nails holding $100 bills...super cheesy. This place does not disappoint with decor; it is like visiting a spa as opposed to a nail salon. Also, I live nearby so this location is really terrific for me. Unfortunately, I have been twice now...really, really wanted to make it work...and it just doesn't. The first time, I paid extra for all kinds of services like a hot stone massage for my feet and extra callous remover,etc. I left spending $90. No big deal if the product is good. However, I had to go home and clean up the polish left gooped around my cuticles, file the hard edges of my nails down to something that wouldn't injure my husband, and the massage was like being tickled and then rubbed with a rock....basically no massage at all. Today, I just tried the manicure to see if a different person would be better. The standard massage was better, however, the gel polish application was no good...again gooped around my cuticles, and each nail of mine is filed into a different shape. I now have to redo the whole thing myself. Perhaps it is because I have not requested a particular nail person? Possibly...the reviews I am reading that are 5 star seem to reference a particular person. Maybe I will try one more time and request Kevin who seems to get good reviews. If so, I will post again...hopefully with a better rating next time. Right now this place is truly not worth more than two stars and those stars are only for good location, reasonable prices, and nice atmosphere. I'd give zero stars for quality of manicure (gel polish) and pedicure.", "type": "review", "business_id": "rE2InW2Jmjy6hzH3p4Iyjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-CyBQG3dc4UnpluY7UdMOA", "review_id": "0Xyt9XGeImU7AjiwVOp3ug", "stars": 3, "date": "2011-01-23", "text": "i visited on jan 19 and ordered the thai basil (their signature dish) with calamari, which had a very unique flavor that was a bit masked by the spiciness. i'm a wimp when it comes to spices, and i was overwhelmed by the medium i ordered. though the dish was very good, it was, for a dish dish consisting mostly of vegetables, on the scant side for 11.95. \n\nmy friend ordered a curry, and it was a sizable portion, presented in a clay pot. i sneaked a bite, and it was very good too.\n\nthe place is comfortable and intimate, with booths and tables, and the wait staff is very friendly.", "type": "review", "business_id": "ujLZmyy11g1JHCQTxRA3Dw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5c4p-A1sLBlpS1cPaMpdBg", "review_id": "qw9o9KNudG_aWcujmc5qMg", "stars": 4, "date": "2012-06-19", "text": "Not your typical deli meat-this is the real deal with the shredded turkey. Very good.", "type": "review", "business_id": "DBoebGeuz91QAP3tSFYs6w"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "m-p9ILrmc-g2YN_vfT9WXQ", "review_id": "zQWAQlRIQmN-nJmBPrbB5w", "stars": 4, "date": "2008-06-19", "text": "Love this place. Quaint. Nice owners. The meatloaf is fantastic. Reminds me a little of home in Mn. .. . old house.", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sgb91Hc4rVeLqehNy7Pvnw", "review_id": "oWLh_cqC97TUvRq_JjRUzw", "stars": 5, "date": "2011-09-29", "text": "In town for business, and came to Pappadeaux's for dinner...what a great experience. Hostess, wait staff, and servers were all outstanding. The food was amazing. Perfectly cooked vegetables to accompany the Costa Rican Mahi. Ice cold beer on a hot, 102 degree day was a welcome addition!\n\nAlthough we later found out our waiter was in training (it was his first day), he was attentive, professional, and available to answer any questions we had.\n\nHighly recommended.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 6, "useful": 8, "cool": 4}, "user_id": "bL5rii_pSxU3jfqesmxMaw", "review_id": "kEBSBvCgJ70qjZTTwzBYKQ", "stars": 4, "date": "2012-02-24", "text": "Strolled in with a posse of 14 people for a birthday party. The staff was accommodating in getting everyone seated and served with drinks, especially as people funneled on in throughout the night. The place isn't huge, it can really only accommodate one large party at a time.\n\nFirst off, if you are a vegetarian or Muslim, be aware that you are going to an authentic italian restaurant - meaning that 75% of their menu items will have sausage/ham/salami/etc. Being cognizant of that, it was a smart idea to peak at the menu before arriving. We got the Vegetariana Pizza ($14), which came with Mozzarella, Provolone, Caramelized Onions, Roasted Peppers, and Parmigiano Reggiano. I thought it tasted great, it was crispy, thin-crust and had plenty of cheesy to it. I thought it was an above average pizza, but nothing that would have impressed Emeril.\n\nIn addition to the pizza, we split the Spiedini al Forno ($16), which was Marinated Beef Tenderloin in a Shish Kabob style with Onions, Bell Peppers & Tomato. The waitress advised us in ordering the beef \"medium\" and no higher because it may get too dry or overcooked. I don't usually do medium, but she advised us correctly. It came out with only a little bit of redness and packed a good flavor. The onions, bell peppers and tomato are Kim Kardashian, meaning that they are all show and no substance. I didn't think they added anything to the entree and in fact, I didn't even eat them - which is rare for me to pass up on food. It wasn't like I was full, they just tasted bland.\n\nFor dessert, they brought the birthday boy a Dolce Della Casa ($12), which is a slightly charred sweet calzone filled with chocolate hazelnut sauce and topped with bananas and vanilla ice cream. Everyone shared and It hit the spot. However, once the ice cream runs out, you're outta luck. The dessert is really complemented with the sweetness and coldness of the vanilla ice cream. \n\nThe environment was kinda noisy (probably because we were a group of 14), and the wait staff was kinda slow (once again, because there were 14 of us), but they had a TV playing the knicks game so I was happy being able to watch LINSANITY, and the woodfire oven was blazing away for some good ambience. Overall, this place would be much better for a date or small group gatherings, otherwise you may be waiting for your food too long or feel a little crowded. Oh and just beware, the bill can become a little pricey if you aren't splitting entrees....", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "tGDivFYsOuK8zL8N0zlMxQ", "stars": 4, "date": "2006-11-29", "text": "not a bad place for pizza... it is very infomral and the pizza is good... they have a nice beer selection... if you want to get a pie, beer and salad in Old Town and that is all you really want this is the place... the menu is baiscally pizza, beer and salad... but all good...", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WK2Jh-uBmeqH7oI9IxfSHA", "review_id": "_MWsMpQQ-OLlswTR9b67tQ", "stars": 5, "date": "2009-11-19", "text": "I've been to a ton of Pho places here in the valley, and this is the best one I've been to, by far. The prices are reasonable and the Pho was fantastic. The rolls were pretty good, but not the best I've had around here (that honor belongs to Saigon Pho, not too far from this place. BBQ beef rolls there are fantastic, but I digress). I haven't tried anything else at Pho Van, but it all looked pretty good too. \n\nThe place is super clean and the service was ridiculously fast (I don't know if it was just my luck or if that's a regular thing).\n\nI want to come back, but it's not close to my house. However, it's worth the drive if you ever get that Pho craving.", "type": "review", "business_id": "dipzJ5BExpm6BtJ91mXd4Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "2FiNCj5rM3nF0qgaWf86Gg", "review_id": "fTNYFogBZnYsiEe7CFC_Fw", "stars": 4, "date": "2009-09-05", "text": "We came here because we figured it wouldn't be busy; we were right. \n\nBut, to our amazement, the food was really good. I had an extremely flavorful cheeseburger that was as good as any burger I have had in Phoenix. \n\nThankfully, herd instinct will keep the masses flocking to lesser establishments like Lenny's, In-N-Out and Lucky Boyz so we can have Village Inn practically to ourselves.", "type": "review", "business_id": "qP1qB2BZRmrdsh3ZScttiA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "AuQ28IMcqAloDmlFI7CKoA", "review_id": "HrYFhIcSH9WyhAKPLilnGw", "stars": 5, "date": "2008-08-10", "text": "Count us in for a #5 Combo, a Oaxaca Special & two hard tacos....maybe some chips and salsa to go!\n\nBest Mexican fast food around..and cheap!\n\nAlways busy at lunch, but they get through the orders in a timely manner. Seating can be tricky, so have one order and another stalk tables! :)\n\nYou can park behind the place and walk through the back door....little FYI.", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "UNIPxnKpzAbL4iSIXSQ31g", "review_id": "XZdGeOwA88zd7iL21EO2QA", "stars": 5, "date": "2012-04-25", "text": "My boss asked me to find someone to clean the office windows (about 50 large panes) inside and out, so I got in touch with Brad. He was very professional throughout the experience, and his mastery of this craft is phenomenal. The windows were crystal clear within a few hours; he did a very thorough job. Punctual, efficient, and easy to work with--his rate was very competitive, and his work is worth every penny! The office looks brand new.", "type": "review", "business_id": "8lTdJA9GK59-NzJwleSJBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Dc3nvTY7eWjOFWM3lvAztg", "review_id": "L9_xjQS761v69XRrywlwdQ", "stars": 5, "date": "2012-07-25", "text": "Ladies in the flooring section are very knowledgeable and helpful. Though I do think they are a bit understaffed, they were gracious and friendly. Fairly large in stock flooring section compared to other stores.", "type": "review", "business_id": "vxlYflN5Uuy83wufcw1BEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6u_JYePyYlIKOCZ4hVXfRg", "review_id": "-ND5YhB3B8bAgcl-xSU_2Q", "stars": 4, "date": "2010-11-02", "text": "Had an outstanding lunch here. The view is amazing, their cheese fondue dip was delicious, and they serve up a tasty burger.\n\nI definitely recommend it and would come back in a heartbeat on my next visit to Phoenix.", "type": "review", "business_id": "2OY8xs4aqOt8eTnYokdrww"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Gh1EXuS42DY3rV_MzFpJpg", "review_id": "f5uUoW5O6sGoZiSMewPxJA", "stars": 4, "date": "2012-04-22", "text": "This place was AWESOME!!! My wife and I have been driving by this location for a couple years and finally decided to go in, I had a yearning for Ramen. It did not disappoint. We got there just before happy hour, which is always a bonus, but would still go outside of happy hour. The menu is quite extensive, the bonus is they have Italian noodle dishes as well. We have been told that this is authentic to Japan so I was impressed to see this in the valley, having been to many \"Japanese\" restaurants.\n\nWe decided to try many different dishes, and were equally impressed with all. I had the TanTan-Men, a spicy Ramen with pork, delicious. We shared some tuna sashimi, which was fresh and tasty (looked like real pink, no added color). We also shared the Seafood Delight roll, which has tuna, 'krab' and is topped with a scallop, fantastic. The last thing we ordered were the Spicy Korean Ribs, this was my least favorite, but still good. Of course the Kirin (on draft) was flowing as well as the house Saki.\n\nOverall the CherryBlossom Noodle Cafe impressed us to say the least. We will be back to try more. Thank you CherryBlossom, keep up the Great Work.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IWFh0VOLDKOQbhW357eiYg", "review_id": "89P7AvbG1OWeu1x-ucHfzQ", "stars": 5, "date": "2012-02-15", "text": "Just moved to AZ and this is my local Petco. Everyone's really helpful and friendly. We just took our dogs here to get groomed and they came back smelling fresh and looking clean.", "type": "review", "business_id": "KpFRiwFhgdVM3eOzwIKCXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "66tWp8ThwPATFUxYNPyYLw", "review_id": "fHCJqMjvtxuGdRT8UC3vsw", "stars": 5, "date": "2010-08-07", "text": "Enterprise Pools keeps my pool looking PERFECT for swimming! Not only do they preform top-notch weekly service, sweeping, clearing the baskets and making sure the chemicals are right, but they are great at communicating.\n\nOne of the tough things about owning a pool and not being a pool expert is knowing what's going on. They always take the time to explain what's happening in a way I can understand.\n\nBroken pump or filter? No problem! They do repairs too. They'll even fill you in on what you need to do as the seasons change, or how to handle those pesky, pool destroying, monsoon storms!", "type": "review", "business_id": "UiHx6YjnD9swZrUreuCu5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GhCA6N7sRYZHBr5QKAcCWg", "review_id": "Lg-OgHLpderrDxUxh2uRhg", "stars": 4, "date": "2010-12-13", "text": "I walked here from Tempe Center for the Arts for a coffee during a break in the dress reharsal for Breaking Ground this weekend.\n\nVery comfortable vibe, engaging barristas.\n\nTruly excellent coffee.\n\nI wish there were a place to sit outside though.\n\nInstead, I drank mine while walking back to TCA.\n\nDon't get to do that often enough in this Valley.\n\nI'll be back to Cartel whenever I want sit-in coffee.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "lbIfQVEb9Ljl4eyRwuhr7A", "stars": 5, "date": "2010-08-07", "text": "Two words for you. Mouth. Orgasm\n\nWifey and I decided to eat here for our 5 year wedding anniversary. I have to say this is one of the best meals I've ever eaten, hands down. We bought a Restaurant.com gift certificate that cost $10.00 for a $50.00 Gift Certificate. They also have half priced bottles of wine on Friday nights as well.\n\nI went with the 5 course menu. I chose 2 of the dishes, and let the chef pick the other three. We started out with the Crudo Cheese plate that was phenomenal! It had goat cheese, goat feta, goat mozarella (sooo good), cherry compote, roasted dates, tomatoes, cured lamb jerky, smoked olives and truffles with toast. If that doesn't give you a food stiffy, your not human. The first dish I had, which was one I picked, was the butterfish crudo. It was served with oven roasted tomatoes and lardo with some sort of escebeche type sauce, hands down my favorite plate in Phoenix right now. Holey cow! Next, I had the albacore crudo with truffles, apples, black garlic and pepper. Another amazing dish. My next dish was one the chef selected as well, it was their Japanese Fish Market Special. I don't recall the type of fish, but it was good. I felt bad for this plate though, it had to follow some illlll dishes. The 4th course I had was the mushroom gratin. It had hen of the woods, crimini, potato and was topped with an egg. I felt it was just too much, a little clunky. That's probably just my taste though, there was nothing wrong with the execution of the dish. I finished with the roasted veal served with parmesan creamy polenta. Friggin amazing, I wanted to whisper sweet nothing into it's ear and smack it on the boohiney. \n\nWe went with a great bottle of Nebbiolo, that was exceptional. The service was excellent. At first I was kind of weirded out with the restaurant being inside a retail shop, but we moved to one of the high top tables and it felt more like a quaint little cafe. What a great meal, fargin amazing!! Pics to come", "type": "review", "business_id": "iRg16D8dWjmv70NF68kgRA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "H4ewd_HH1DE0Y8RbC_7HbA", "review_id": "ByWalHNPMpcsxH36NjH-dQ", "stars": 4, "date": "2010-02-03", "text": "I never used to like Chipotle - pretty much the same way I never used to like gyro's, but now I can't get enough!\n\nI don't go for the overstuffed burritos - the cleaner and easier to eat burrito bowl is the way to go. I always get double steak, rice, pinto beans, and the medium tomatillo salsa - best...combo...ever! I guess I should branch out and try new things on the menu, but I ALWAYS order the same thing from every place I frequent. Ok - next time I'll try something other than the chicken - since it's super bland.\n\nThe staff are always super helpful - even got a little tip from the cashier once. If the line is long (as it always is), just step outside, place a phone order, then hop around the line to go pick up your called in order, because she said they make it nearly immediately. ahahah I've made an order with my iPhone twice now, and it couldn't be easier.\n\nThe only reason this place got 4 stars was because even though the steak is awesome most of the time, from time to time it's kinda tough - it could be that much better if the meat was a little bit better quality. Also - the chicken is always dry and lacks flavor.", "type": "review", "business_id": "Cv4kZH9zN0wpN2Drn0qkLg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "dgX04RZOxtoipH9Dwf3MXQ", "review_id": "5fDeOuiTHTLnOFWao74zlw", "stars": 4, "date": "2009-03-30", "text": "This review is for the Chandler location.\n\nThe food here is pretty good. We came here twice during my last visit to AZ. We tried the nachos, the 7 layer dip, the guac and chips. The nachos were really good (make sure to add steak or chicken, both are great), and they give you a lotta guac too. The 7 layer dip was kinda dull, like they scooped out the filling of a microwaved bean and cheese burrito. Either way, all their food is pretty cheap, and during happy hour, drinks are a great deal. Also, I like the way the place is set up; most of it is outdoors/patio, so it makes for a different experience. There's also a lot of games and things to do. We saw a group of guys playing beer pong on one of the tables, and by the women's restroom there's a lobster catching game. We'd spent like 12 bucks on that game and didn't win ourselves a lobster but we got close one time, and it was pretty damn fun.", "type": "review", "business_id": "bfDQai9X59uWK-XgP0t6rA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RvZks2VBHdym25_d6I8YGw", "review_id": "uljrlJicLaQJOn4KmqYpLw", "stars": 5, "date": "2012-01-14", "text": "Best TexMex in the valley! The chips and salsa are home made and probably the best I have ever eaten. I had shrimp tacos which were delicious, staff was very friendly and down to earth.....if you ate downtown give them a try.", "type": "review", "business_id": "e5kc0CQ4R-PCCDgb274gSg"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "3L2DRtOEJo4Mxn928JYrLA", "stars": 4, "date": "2010-06-28", "text": "This was stop numero uno on our group's light rail bar crawl. None of us had ever been there before so we were excited to see what this place was all about.\n\nSituated about a 10ish minute walk from the light rail station, it is a nice walk through a part of town where I wouldn't normally be. You wouldn't think this place is a brewery because of its small size but it is. The inside is very quaint and taverny. It has a very relaxed vibe going on.\n\nI ordered the sampler and all their beers are pretty decent. I decided on the Amber for my pint, but they were all good so it was a difficult decision. Not bad for a little local brewery at all. For a quick bite before we moved on we ordered the calamari and the bratwurst splitter. The calamari was pretty standard and the aioli had a nice kick to it. The bratwurst was excellent and unique. Each was perfect to split among 4 people. The rest of their menu looked good but is pretty much typical bar food. Well probably a bit better than average bar food. Anyway, it is perfect food for the place and looking back we should have probably eaten dinner there instead of only an appetizer.\n\nPro Tip: Cross over to the north side of the street at the light as soon as you exit the light rail station. Otherwise you will be dodging traffic as you try to cross because the place is located on the other side of the street far from another crosswalk.\n\nAnyway, I would like to come back for a few beers and food. I would also like to do the brewery tour.", "type": "review", "business_id": "3UMcsN9IjoeV8JZvC4apag"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "m2uaBX3VmZZSc3NyD1qyoQ", "review_id": "BijeD2f2YIowWPsmQmyZpw", "stars": 5, "date": "2012-06-23", "text": "Tried Roy's for the first time last night when we met some friends who rave about their Aloha Hour (Happy Hour). Always avoided going because we tend to not like restaurant chains, but this place is a gem and exceeded our expectations.\n\nThe bar area is relatively small, but very classy. We were able to have few drinks at the bar ($5 for beer, wine, and their signature cocktails) before we were able to get a table in the bar area for 5 people...thanks to Leah and the hostess staff (you guys are great). Didn't have a bad drink -- loved the The Original Hawaiian martini was delish, as was the mojito, jalapeno margarita, mai tai, and wine. A friend was sad the cucumber drink she liked was missing from the menu, but sounds like the menu changes often so diners/drinkers get a chance to try new concoctions throughout the year. \n\nFor food, we tried most of the HH specials. Everything was spot on -- excellent flavors and beautifully presented. The tuna roll and tempura shrimp rolls were my favorites (sushi rolls), with the lobster pot-stickers being a close second. Some friends ordered dinner...and were able to speak with Chef Bray about his recommendations for fish. She ended up getting the Crab Dynamite Baked Barramundi, which was so yummy! The happy rice on the side was great too. My hubby got the Yellow Fin Ahi Poke -- something we have looked for since trying some fresh poke in Kona, HI last year. I couldn't believe the flavors...eating poke in the AZ desert! Its preparation with the Wasabi Cr\u00e8me Fra\u00eeche made it a meal we will seek out again in the near future. Ended our meal by sharing the chocolate souffle, which was a perfect ending to a great Friday night gathering. \n\nDefinitely recommend Roy's for seafood that is excellently prepared. Aloha Hour is a must. Extra props to Matt, our waiter, and Leah on the hostess team for their accommodations and service. We had a great night.", "type": "review", "business_id": "mhLN_oiJd7zq6eaOS1Nw1A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "o2CGc1kQHEFkYOECM3NFdg", "review_id": "1nzHCM13zYPBQMDwFfc1Eg", "stars": 5, "date": "2011-05-22", "text": "Troy, the owner, is a brilliant businessman! Being a pharmacist myself, I am familiar with the quality of his products and his facility. Trust me when I say his sterile compounding areas are more advanced than many hospitals in the Valley.\n\nAfter spending a day at his old facility when I was still training, I felt comfortable enough to send my mother to Troy so that he could help her with hormone replacement therapy. The docs around town trust him enough to let him dictate what a patient needs; they simply sign off on his recommendations. My mom has had a huge increase in her quality of life since seeing Troy, and I feel the compounded HRT is safer than the Prempro she used to take.\n\nDo not hesitate to consult a compounding pharmacist if you're having health issues that aren't being adequately addressed. Troy is one of the best in the Valley. It's worth the drive to consult with him, and further prescriptions can be mailed to your home.", "type": "review", "business_id": "0ROrgaauL7hmivzyd34iKA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KNKcc5vF5k-vbAVIaZ-mGg", "review_id": "mGvXy9ieIOwG6LNaiA7RXw", "stars": 5, "date": "2011-08-14", "text": "I love this restaurant concept. It makes for a fun dinner between friends and family. I wish there were ones like it in Central Phoenix so I don't have to drive a half hour for good food and a good dining experience. \nThe veggie options offered are plentiful and fresh, which is important to me. The broth is so flavorful. But be warned weak tongued restaurant-goers, the spicy broth has a kick that will stick!\n\nSome are saying it's too expensive? I think it's worth it.", "type": "review", "business_id": "28ycqW56i70yM_C0ejNv9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Df_GDATOdDbdS9Z0aEHK_w", "review_id": "Ysisum90f6Bg_CtkTOwDuQ", "stars": 5, "date": "2011-02-22", "text": "Don't let the slightly sketchy neighborhood put you off. Baiz market has some of the best food in town. The small deli (cafe? Not sure what to call it) located in the market has all of the staples such as shwarma and falafel. the prices are cheap, The service is snappy and friendly, and the food is exceptional, especially considering the price. Wash down your meal with any one of many exotic drinks (or, just choose a diet coke) in the beverage cooler. Even if you've stuffed yourself silly, wander on back to the bakery. The assortment of traditional Middle Eastern sweets can't be matched anywhere in town. Come early and wander around in the market to pick up your selection of hard to find ingredients.", "type": "review", "business_id": "cOUS79i4vltKIc_hy4OZBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ioTLeBk0Kw7H95g-rtzXrQ", "review_id": "igKKRD1Zl4k_8DSmXB47Gg", "stars": 1, "date": "2012-07-06", "text": "This used to be one of my favorite restaurants but the service went way down hill. The new owners hire lots of college students with tattoos everywhere as well as lots of piercings. Seems like tattoos and too many piercings are a job requirement along with disrespect and a lack of desire. The staff is what made this place the worst restaurant ever and doesnt seem to matter how often you let management know I just dont think they care. Also in the past few years there is a growing number of homeless that sit out front begging for money. They sit so close to the outside patio that you have them dining with you or at least it feels that way making you incredibly uncomfortable. Our last visit we sat on the patio which was next to a bench just outside the restaurant where a few homeless were stationed. One girl had a huge rat on her shoulder and it was beyond disgusting. Management obviously doesnt care and does nothing to improve anything so we go way out of our way now to eat at the other Greek in Chandler at Chandler Mall.", "type": "review", "business_id": "XBm9ffI2pK-A_HcoHXAbcQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "zJurvQwVqI5ripRGQaTIlA", "review_id": "rZgzXT5oirl2jBYEpr_isQ", "stars": 2, "date": "2012-12-30", "text": "I have two thoughts on what to write for a review so here are both and you can take your pick.\n\nDear Mr. and Mrs. Postinto,\nWe regret to inform you that we would like our menu back.\nSincerely,\n2007\n\nor\n\nStale bread - YES Please!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "JkHLxF7VYgfLRQ6DTUSewQ", "review_id": "NCuT3jrIqXy7sH3T9qc4AQ", "stars": 4, "date": "2011-05-30", "text": "I ain't from around here. Where I come from, restaurants located in strip malls are not to be trusted. \"Feed me but be careful.\" Speaketh my hangover and we rolled back the stone to the pasty-cave.\n\nSo the hangover and I find ourselves inside the pit as The Soledad Brothers play and smoke rises from the narrow kitchen. Ten pounds of onion simmer on a grill. A beautiful woman hands me a menu. Oh god, they are everywhere! That man making the food has an immaculate beard!!! Am I in Chicago?! What's happening hangover?! \n\nNo. I'm In Tempe, where there is a kickass restaurant that serves kickasser beer, and great comfort food to cure what ails you. Bangers and Mash. Mmmm. Mash.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "Dox74ekWFkcBJmkHkJxeEQ", "review_id": "yeUaGFvw-3gJ0N8abwN4wg", "stars": 3, "date": "2010-12-06", "text": "Went to this place for lunch. I've spent a lot of time in Greektown in downtown Detroit, so I'm very familiar with good Greek food. The atmosphere is fun (like most Greek spots), and servers were a young, attentive, and attractive group. The food is pretty good and there was a large enough crowd to justify the 18 minute wait for my meal. All in all a pretty good lunch spot...heard that the expanded happy hour really packs 'em in, so naturally I HAVE to go back to get my OPA on!", "type": "review", "business_id": "TQhP4vCMjvX527YMxPfuUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S4jPvmZU45O5bDaCzSrfxw", "review_id": "OfMrI_HAd5ble9nzpFZ2Bg", "stars": 5, "date": "2010-09-11", "text": "The service has always been really good.\n\nI love LOTS of things on the menu. The dixie pan fried chicken is great. There's a great little sticky bun that comes with it. The Del mar salad is great. I've had great experiences going to chelsea's kitchen. \n\nOverall it's in my heavy rotation on places I always say YES, let's go there!", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "eJGh4UF0zHIPPLZG1NkpgA", "review_id": "wO-nCN0jVTT_UEZ6om6BEQ", "stars": 5, "date": "2009-04-30", "text": "A very reliable local garage. Bill is all about great customer service, and goes the extra mile. He deflated my fears about \"being taken\" by other mechanics playing on my automotive ignorance. He's a truly good guy, knows his stuff, and will work to save me money if he can find it. I trust Bill, and 25th Street Automotive. Thanks, and we'll continue to bring our wheels into your shop.", "type": "review", "business_id": "65ujBUIwQ3iGBjymj268IA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "s0FsZIfO-aqQnecLv3Q88A", "review_id": "n3_MeL2wxId_5OdZEX48Dw", "stars": 3, "date": "2012-04-03", "text": "I, like another reviewer, was not willing to fight for lunch at McDonald's... and so I travelled up the road to Burger King. I haven't been to a BK in years and have heard several quips about their \"new and updated menu.\" \n\nI got a Whopper Jr. meal (no update there). Their fries are good, more satisfying than other fast food restaurants-- \"now with sea salt\"-- as if that makes them more appealing. \n\nThe Whopper Jr. itself is just... meh.. I'm sorry, I don't do mayo. I do appreciate the fresh (?) veggies on top though. \n\nSoda seems syrupy here to me.\n\nIf McDonald's is busy, head here. They DO have a nice outdoor patio, though. And Iike their workers' uniforms better. Does that count??", "type": "review", "business_id": "DQY3RlqV7LlD3w4UJXiPeg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "3TGup17SCV6uHsifmTKirg", "review_id": "qdkjDNuSUVLekIXwxya4eQ", "stars": 4, "date": "2010-10-31", "text": "This review is specifically for my experience at Trader Vic's last night (a Saturday night) for Happy Hour (4pm - 7pm).\n\nMy wife and I and two friends had a great time! We spent the Happy Hour in their outdoor bar area - so cool - which is slightly shaded and very calming. The apps were tasty, especially for their low, low prices, and my wife really liked her vodka cocktail on special. They didn't have any beers on special, but I had a draft Stella anyway.\n\nNeither of us cared much for the fried calamari, but it wasn't bad, just not our style. Everything else - the edamame, mini-burger, and sweet potato fries - was awesome. Oh, and speaking of awesome, so was the service. The waitress was friendly and helpful, and the bussers were very attentive!\n\nWe will be back for Saturday's Happy Hour again soon.", "type": "review", "business_id": "uI4YqMarUpchI4I3ZWgOGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ryjqXdp68i2I9JPOpX9URw", "review_id": "ZTPy5A93V7Ydx6pk1_G3ww", "stars": 5, "date": "2011-11-27", "text": "Of all the Chipotle's I really like this one. The staff is exceptionally friendly and I don't think I've ever been in the place, and I've\"ve been a lot, where they weren't meticulously cleaning the restaurant with soapy suds.", "type": "review", "business_id": "K2_Hmmo5crTYWiT_1sWnfQ"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "-7nluosclwW3csCCh8PKQw", "stars": 2, "date": "2008-07-23", "text": "Q: How many people and how many minutes does it take to make a \"toasty\" sub?\nA: At Quiznos? A LOT.\n\nThe food is decent, especially the tuna melt, and $5 for a large is a great deal. But this place is SO incredibly slow, every time I go there I swear it's the last time. Alas, living across the street from it I have caved and gone back a few times... But seriously, don't come here if you've got groceries in the trunk, kids waiting in the car, or anywhere you need to be in the next hour. \n\nAlso: I can't stand the oregano powder crap they dump on every sub. Come on, Quiznos, there's gotta be a better-tasting distinctive touch. I always tell them to leave this stuff off, and half the time they put it on anyway. \n\nFYI - once the sandwich is out of the toasting machine, toppings are available by request only. No one's gonna ask what you want on it like at Subway. You really have to speak up if you want onions, olives, or whatever else they've got hiding back there.\n\nPlease God grant me the willpower to stop coming back to this Quiznos!!!!!!", "type": "review", "business_id": "g--Qvh7JzgsX6B1gdEJ1SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6TnX7mzI-jfgK6teWqIS9Q", "review_id": "lSF7ILNpdHLdJBrvIHvjzw", "stars": 5, "date": "2011-07-20", "text": "Dig it! Good beers on tap. Tasty food. Friendly servers. Cool place to hang out and relax. My fav pasty is the cajun chicken with the spicy sauce. Don't forget to check out the desserts. Towards the back is an iPad where you can pick a few tunes to be played..kinda neat if you're in the mood for something in particular. If you haven't checked it out, you should. I like this location better than the Tempe location because it has more seating and a better scene for visiting with friends.", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HR_Lxh2ycv0t745Ohiziew", "review_id": "Lja31nq6KERYwYUi9f8a0A", "stars": 4, "date": "2012-06-10", "text": "If you got a craving for pizza and don't want to feel too guilty about eating it, this always seems to satiate that fix. The pizzas here are ultra thin and there are many varieties available. Bryan and I always get 2 pizzas because we would still be hungry if we just order one without an appetizer and we can always take the extra home. Today we ate the pepperoni and mushroom pizza and the potato and feta cheese pizza with olive tempanade. Both were yummy in their own way! We ate the tomato, mozzarella, and pesto bruschetta as an appetizer which came out unbelievably quick while waiting for our pizzas. Sauce's pizzas are unique in their own right that I crave when I want something lighter than regular hand tossed pizzas yet don't want to spend as much for gourmet pizzas. It's a comfortable yet yummy in-between compromise!", "type": "review", "business_id": "R2FuwuSjmyvzNWNfqzKUvw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "-e3z8TMTub7v9pVxzEHO-A", "stars": 5, "date": "2008-08-26", "text": "How can anyone not give these guys a 5 star? Cafe Rio invented the sweet pork burrito and nobody...and I mean NOBODY can do it better. I moved here a year ago from Utah where Cafe Rios are as abundant as Micky Dees .... and I was so happy to see the Cafe Rio sign. \n\nI eat there to much. Its a 30 min drive to get there from where I live, but I love that I don't ever have to wait in line as long as I did when eating at the Utah ones...\n\nLet me help you with what to order: No serious if you are reading this...go there TODAY and order this - \n\nSweet pork burrito with black beans, hot sauce, enchilada style with pico and guac ... no lettuce (unless you like lettuce ... I don't)", "type": "review", "business_id": "TbaAnzOTX2-boTbAp3e8Qw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lSB6eL4Tf1ot7S2dy9sKEA", "review_id": "Y983pjmasC5VTRsz-ChKEw", "stars": 4, "date": "2012-12-20", "text": "Love this place, sushi is good and great customer service!", "type": "review", "business_id": "hiXt1iC9nJh3--kz80zRtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "BvXTRXYZtbTunoi59CexUg", "stars": 4, "date": "2012-10-01", "text": "My roommate and I went here for drinks before going to see a show in Phoenix. Pleased to see their happy hour menu still counted on Saturdays, we took advantage of their amazing margaritas. \n\nI suggest ordering on the rocks with salt. \n\nGall Blanco is at the base of the Clarenton Hotel in downtown Phoenix, and is in the most perfect spot for admiring the building from a far. We choose to sit outside which wasn't the best idea because the hostes couldn't figure out how to work the fans and the misters were creating small great lakes on the edge tables, but we weren't uncomfortable.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Tz5ZshU7NC7VTXWvLm_kJw", "review_id": "ild-FcbbQ1rgqk4LIzoWPg", "stars": 4, "date": "2011-04-16", "text": "Loved the spinach salad. I'll have to find out what kind of dressing that was in it. Yumm The beer selection is the first thing that I would come back for. We ordered the Gourmet White pizza which has:\nOlive Oil and Garlic base pizza with Sun-Dried Tomatoes, Provolone, Mozzarella, Feta, Roma Tomatoes and Onions.\nYummy. Especially the crust, which is a wheat crust that compliments the pizza very well. Nothing left on my plate! Hope to try the meatier, yes, I made up that word, pizzas next time!", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "8CNEh7fSbLwDuAKhLjDPKQ", "review_id": "f7I-Gm8md45qtJYP3ARi0g", "stars": 4, "date": "2009-03-03", "text": "I've heard way good stuff about this place for a while and finally had the pleasure of sitting down and having some lunch there.\n\nThoughts: Staff was friendly and quick, nice place, very clean and some hi-tops and lots of tables and outdoor seating as well.\n\nChicken salad bagel sandwich wasn't too bad at all, except for the nuts in it - I'd probably eat it again however. Had a tomato basil bagel toasted with it... yum! I'm wanting to go back to try different menu items now :)", "type": "review", "business_id": "8H1DwdAAgSBtwDeb2R-hmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fU8x-3qi65tX19KAyvT4vw", "review_id": "LJAjbiOtbtjEsubQmQF-Cg", "stars": 4, "date": "2011-03-22", "text": "I have attended several performances at the MCA and enjoyed them all. The physical facilities are top notch and the outdoor areas (when the weather is accommodating) is lovely.", "type": "review", "business_id": "Pt667RuH8g5tue8KcCShtQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PDRWbCZa92irf8mK5X_Kig", "review_id": "axDHHOtVjvznMl1OnKLUng", "stars": 5, "date": "2011-10-19", "text": "Mill Ave has been missing a good breakfast nook, and it has made me very sad. Until now! The atmosphere is very modern. The color scheme is gray, orange, and black and boy do they stick to it, down to the orange frosted cupcakes. Impressive. I had the best french toast I have ever had in my life right here at NCounter. I have only eaten here once, and usually I don't give five stars out after the first visit, but this place is THAT good. So happy to have such a fabulous breakfast restaurant so close to home.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8T0evnkvRaTomru7ghPGeg", "review_id": "xIPXFIDUtmMUXSToOkV7GA", "stars": 4, "date": "2012-10-21", "text": "As best as I can figure out, there are 3 German restaurants in the Phx metro area. Two of them are in the same parking lot in Mesa. How does that happen?\n\nSo anyway, what about Zur Kate. Good food but an oddly small menu with no appetizers listed. \n\nAs for the restaurant itself its a pretty small place. Not sure how the busy they get, but if they ever do you could be in for a wait.\n\nBack to the food for a moment. While it was good, and somewhat German in composition I'm just not sure of German food it was. That being said, I could say the same for the other German restaurants here in Phx. So, not so much of a knock as an observation.", "type": "review", "business_id": "GzWiVvE6JDdBNowNVshItA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oihlMiEtvAnUru5_BC1KwQ", "review_id": "DbExg3pHbi59h-vJCHmj8w", "stars": 1, "date": "2012-05-10", "text": "1 star for service and attitude.The food was delicious , but the staff was very hateful. I am writing this review. I don't remember the waitresses name but I do remember that she was short , hispanic , and she was pregnant at the time. She was incredibly hateful.So hateful and rude to me and my parents. I do know why she did this is because I am transgendered. I was wearing leggings and I was carrying a black polo purse. \n\nSo I thought that this happened because of how I was dressed and how I looked , but that really wasn't the case.I went back 2 weeks later and I dressed differently. More \"manly\" (ha). Different waitresses , same great food , same hateful attitudes. I will stress to everyone reading this to save your time and money and go to a different pizza hut or a different pizza joint to get better service.", "type": "review", "business_id": "ST0fLT0ZDqKNUxeY0unV8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "jPl_fIm16CLiV7M6yYigSQ", "review_id": "ozgYLhjZFCfPHxXJ4qUTww", "stars": 4, "date": "2009-08-16", "text": "I do not eat fast food. i do eat at in-n-out. mmmm double double animal style", "type": "review", "business_id": "g9jX2oXQr8zrOQgynYnYjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DG_0Y_cp5x0PB7yhZDZyYw", "review_id": "j2HrC274fTmGHeIwD0U6rw", "stars": 4, "date": "2012-10-05", "text": "In a town with arguably dozens of grocery options, Baiz is a unpolished gem. It's on an unassuming sidestreet and the exterior is a typical desert drab, but inside you will find high quality and very reasonably priced international groceries. Greek, Middle Eastern, Ethiopian, Indian and more. Most of the brands aren't immediately recognizable by Americans but that shouldn't be a deal-breaker. We're talking 99 cent hummus, 99 cent fresh baked pita, condiments of every type and price, and great options for coffee and tea drinkers. This store is very awesome, and I would actually prefer to give this small business my bucks over national chain grocers. \n\nThey also sell hookahs. Just saying.", "type": "review", "business_id": "cOUS79i4vltKIc_hy4OZBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wtn-JNypbM7IupJm9t40Hw", "review_id": "747-H8tvuxXOEMMviYBXiA", "stars": 5, "date": "2010-12-20", "text": "Great Job!", "type": "review", "business_id": "AIaEFC65T7BKVl03INm1eg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "WuPgnh6V9icOYUzcSRdeRA", "stars": 4, "date": "2011-03-22", "text": "I needed to grab a bite on a day in the office, so I thought I'd take a little trek over to Sandwich Club. Lots of my former co-workers would tell me that they loved the food here.\n\nAs soon as I walked in, I was greeted by the owner. A super cool dude. He promptly asked if it was my first time there, and he asked where I was from. I like a little small talk before a sandwich.\n\nIn any case, I ended up going with a no-mayo tuna salad sandwich.\n\nDo you remember that time in junior high when you saw a pretty girl and you never had the guts to go talk to her? But your friends dared you to do it? The no-mayo tuna salad is the pretty girl. I dare you to try it. It's amazing. The capers and lemon juice make this so flavorful. You'll be holding hands with this, and it will grace your lips in no time....unlike that girl from Jr. High who secretly despised you because you were fat. Oh wait.\n\nThe menu seems quite diverse, with many sandwich options, and they also make crepes.\n\nThe food tasted great, the service was great. I'd definitely come back for more and try something else.\n\nAfterall....who doesn't love a good sandwich!", "type": "review", "business_id": "KO9CpaSPOoqm0iCWm5scmg"} +{"votes": {"funny": 4, "useful": 5, "cool": 6}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "7dqQJWr3W-CdREv0-BDuoQ", "stars": 4, "date": "2008-07-06", "text": "Oz is a great local bar and a nice change from the bumping Charlie's (which, don't get me wrong, is still a good bar). Booker, the bartender, is the coolest and will bring you any of the toys on the back counter, so long as he has time. The cheap prices, awesome juke box (sorry Korina, we were probably the ones playing all the Madonna) and a chance of spotting Stephanie Ann--the most fabulous drag queen around who really knows her vodka--are but a few of the reasons why I love this place. It's also walking distance from my BFF's house.", "type": "review", "business_id": "BjznUPL2h5-vOkPHsnF40w"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "vkFZfxjmbFfOgbVToyWsBw", "stars": 5, "date": "2012-09-03", "text": "Wait a second...I have not written a review! This is nuts!!!!!\n\nAnyways...I adore this place. LGO and the pizzeria are my favorite places in the world...lol...I am here at least 4-6 times per week. It is nuts! Anyways..the reason I am here all the time is because it is FABULOUS!!!! This place can never go wrong! The orange and fennel salad it amazing! It is the perfect mix and each bite and a delight in your mouth and to your taste buds! I often get this salad through out the week. I love the kale and quinoa salad too! It is my go to salad. I am obsessed with the avocado pizza with prosciutto and goat cheese and the roasted corn pizza with prosciutto. I wish I could get enough but I cannot! The ambiance is awesome! Mr.Lynn is a genius and made this place so welcoming and open. I love how its so laid back and romantic at the same time. The parking is difficult, but you expect that since it is so popular! Now the Peanut Butter Pie!!! OMG OMG OMG!! There are no words...it is DELICIOUS!! I try to refuse every time but I cannot. I really enjoy the sangria. The wine selection is great! I just love this place!!!!", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "YwjabNYLHBFOS2AABYQFsA", "review_id": "AN7wQPa5ZHx-I7SgcJy6fw", "stars": 5, "date": "2012-04-17", "text": "The place to go during spring training after a game and see a baseball player (will be crowded for sure). the experience is just really neat though, the place is covered head to toe with sports memorabilia, definitely the place to go if you're a visiting sports fan in scottsdale", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Bq4o8L-bmu58H42WM3iCqw", "review_id": "f-DWOMaffPReV-Yb7Wg28A", "stars": 5, "date": "2012-09-30", "text": "Came here on a Friday night after a bike ride. As an Irish bar, there is a lot of whiskey on the wall, but they can make whatever you need. The food was a hell of a lot better than I thought it was going to be. \nOn the encouragement of the bouncer, I ordered the wings which were meaty but I've had better. What I should have gotten was the shepards pie. 2 of my friends got it, and it was VERY good. I'm going to go back, just get it on my own. \nLastly, this place dishes out cheap, strong drinks. Good place to get sauced before hitting a club.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kASDrzMXITaZdYoLRekVFw", "review_id": "yZryHhZq8tyq8pv7aPfDQw", "stars": 5, "date": "2012-03-11", "text": "We attended this event today and loved it! The grounds are beautiful and spread out so it didn't seem like it was overly crowded. \n\nThis is a well thought out event with food trucks located throughout so if you get hungry, there will be food near by.\n\nThe admission price was $7 and we felt it was a bargain. \n\nThere are a variety of artists so there is something for everyone to look at and/or buy.", "type": "review", "business_id": "8c2ZwD42Q30eUjxG2SgYNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "dVJ_y1NGSA_g6rc-NDDWHQ", "review_id": "pricAMxsyx3ohBt2LrA85Q", "stars": 5, "date": "2011-05-17", "text": "I should have done this so long ago, but we forget our Doctor's need reviews too! I've sent my boyfriend, my family and my friend's to her. You should know about her too! I've been going to Dr. Bradley for 10 years! She is my all time favorite doctor because she is always bright, smiling, genuine and just overall warm! You want to thank her and hug her at the same time. Her staff is professional and friendly. Mandy at the front desk is wonderful at her job. I've followed Dr. Bradley to 2 locations and would never think of going anywhere else. She's helped me with everything from migraines to pnuemonia to well woman check ups to getting my gall bladder removed! What a versatile and knowledgeable woman she is! I take my son to her now and he isn't afraid to go in. Peace of mind knowing we will be treated well, and taken care of is all I could really ask for in a general doctor!", "type": "review", "business_id": "7wo9ZA7adxw1_8v4wmRCjA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "KICFDhBX25ruK_iW6gLgTA", "review_id": "cDnoAoysSDEiSwyswOAbDA", "stars": 5, "date": "2010-08-25", "text": "Just had my first hot dog at Short Leash Dogs and quite honestly, I can't call it a \"hot dog\" because that just conjures up images of, well... a hot dog. And Short Leash Dogs are so much more and better than \"a hot dog\" the way most people know hot dogs. Know what I mean? No? Well, go have a Short Leash Dog. \n\nReally unique combinations, various dog options (all local meats and produce) - bratwurst, beer hot, veggie... \n\nMy friend and I shared an Aiko (we chose the brat as our dog), with mango chutney, red onions, cilantro, mayo and jalape\u00f1o on a naan (you might have read that in other reviews, no traditional buns here!). \n\nYou can find the Short Leash Dogs truck at the Phoenix Public Market on Wednesday evenings and Saturday mornings, and if you follow them on Twitter (@shortleashdogs) you can find out when/where else they make regular stops... scottsdale, central phoenix... Track 'em down and eat their food. And talk to them - Brad and Kat are smart enthusiastic folks with a great sense of humor and offer superb food and service! What's not to love?", "type": "review", "business_id": "xHI3saK0sAJEHeMK4IGVvg"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "exefpuK6O1ctUUqTxq5XLg", "review_id": "SOqL6tKlFOpoUVqQGJY3-w", "stars": 1, "date": "2012-06-19", "text": "Normally have had great service & food here, but on Father's Day, Nicole H was simply horrible. Rude, slow, non-helpful, etc. Just a total fail. \n\nA different food-deliverer brought out food and \"auctioned it off\" (didn't know who got what), and I asked for a refill on my empty water glass, but he didn't bring it after 15 minutes, and Nicole didn't notice, so I had to bring it up to her.\n\nTheir bloody Mary's taste just like tomato juice with tobasco. Nothing special at all. And for $12???!?!?!??!?! SHAME.\n\nThe coq au vin was great.\n\nWHY IS THERE NO \"CONTACT US\"/e-mail address ON THEIR WEBSITE?????", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 10, "useful": 9, "cool": 6}, "user_id": "0CRk-70pIHwk16iKGVCpxw", "review_id": "AMAWmuGqhvfEX-JT8o46tA", "stars": 5, "date": "2010-10-06", "text": "Southwest blows its competitors so far out of the water I actually feel bad for the other airlines. \n1. Of the countless times I've flown with them, my flight has been delayed only twice and both times less than one hour.\n2. NO BAG FEES. \n3. Nine times out of ten the lowest price.\n4. Killer customer service, laced with sarcasm, veiled cynicism, and high efficiency. I love it.\n5. They never give me an inquisitive look when I order a cocktail on the super early morning flights. Thank you for not judging me, SW Flight Attendants.", "type": "review", "business_id": "dpbY5XypBdeFmo8DsZ-DNQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "qnz40iZiloR4Yadx0CoIzw", "stars": 4, "date": "2010-08-18", "text": "Our dinner club ended up at Maizie's this month after the other pick was closed.... we lucked out! We were unknowingly there on $3 burger Monday, so pretty much everyone ordered the burger. They had told us the wait would be short, 15-20 minutes. It ended up being about 45 min, which was a little frustrating. But our waiter was awsome and fast and we received our food very quickly. I think us ravenous girls had a turnaround of about 30 minutes once seated. \n\nFirst I have to give homage to their fries... Both the regular and sweet potato are excellent. Well seasoned, with potato skins, and a nice balance of crispy and soft. Their chipotle dipping sauce is reminiscent of the yummy sauce at Delux. I got a basic burger with cheddar cheese - it was cooked perfectly to order and tasted great. Total bill: $5.00 ($3 burger + $1 cheese +$1 fries= amazing deal!)\n\nMy friend's salad was huge and delicious looking with all kinds of good stuff on it. I want to go back and try a salad, and maybe pizza and sangria night (Tues & Wed) or, ooh, one of their stuffed burgers. I think I'll be back a few times...", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ACCUr3Ydw5XyPCmoIEdnpw", "review_id": "lZs33WvY-jdJgXDebwCOBA", "stars": 4, "date": "2010-01-18", "text": "I have not liked one bar at all in Scottsdale, AZ. This was the first one! A semblance of a normal crowd. We ended up talking with some weirdo local chick, thought they were trying to do some kind of bizarre swinger plot, and they kicked rocks. Some friendly people in there though, all enjoying a good time singing and dancing. Maybe it was because I was inebriated, but the Karaoke was outstanding. These two chicks really belted it out last night. I had a really good time drinking here with my friend. They sell Heineken 22 oz bottles here. I thought that was pretty cool. My friend said \"Headband is the best\" about this place, I have no idea what the means though.", "type": "review", "business_id": "fjAQGf-iJlVjD2vizzuORQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "fVJnUOJT9qvUJLU3iHUNvw", "review_id": "7sJ6XV4KEz6Q5FKEe19Z6A", "stars": 4, "date": "2008-05-20", "text": "Pei Wei is a family favorite, especially for take out. I can call Pei Wei while I leave the house, order my food as I drive, and when I arrive 9 times out of 10 the food is hot and ready to roll. The food is always tasty and at a fair price. We love it.", "type": "review", "business_id": "ghzksdgNztTZA49PqMvPkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "IXSD2vCFI-RlMidmGRuMCg", "stars": 4, "date": "2007-05-18", "text": "C'mon, it's deep dish Chicago-style pizza in Arizona. I'm not about to complain. Forgo the appetizers, unless you can eat alot of food. \n\nMy friend and I came here after our 5K run. I packed away three mouth-watering slices of their signature pizza. It was so worth it. If I could have eaten more, I would have. \n\nForget thin crust or flat bread. Thick crust pales in comparison. There's nothing else like deep dish, and I'm glad there's an easily accessible joint in my 'hood that I can go to when I need my fix.", "type": "review", "business_id": "S7f-B7KNSTU_akRQGeft6Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "DJIwm4UCnM-SOxXbARjPsQ", "review_id": "jQeGf8gee0-Jq_b3wxzsdA", "stars": 4, "date": "2007-01-19", "text": "The Good Egg is a breakfast spot I frequent on a regular basis. During the week it's hopping with folks on their lunch breaks and the weekend crowd seems to be most predominant during brunch hours.\n\nThe menu offers a wide variety of items to choose from. They are only open for breakfast and lunch, but you can order any of them at any time during business hours. Pancakes of a mammoth proportion are often seen zooming by on the arm of a server. Instead of hashbrowns, homestyle fried potatoes are served on the side of most dishes.\n\nThe serving staff have always been very friendly and accommodating and it makes the experience a very pleasant one every time I am there. The patio is very large and can seat many. This is especially nice during sunny days, but not so much on a cold January morning even with the large heaters operating.\n\nIf you go on a weekend morning, prepare for a bit of a wait. You can sip complimentary coffee outside while waiting for your party to be called. It's always fun to give a fake name for your party as it is eventually announced over a very loud loudspeaker for the world to hear. When you hear Captain Caveman's party being called to go take their seats, keep an eye out for me giggling somewhere nearby.", "type": "review", "business_id": "4meJyPOhuAKzywUJTmu2hw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "Ez_JC0CJlOF7jpt2KJIH9Q", "stars": 3, "date": "2011-01-01", "text": "I've swung into Echo a few times and haven't ever had a bad cup of coffee. The cappuccino is pretty solid and the zucchini bread I had for breakfast one day was a win. If I recall correctly it came in a cute little box too.\n\nFor some reason I've never been able to feel relaxed and at home enough to chill and enjoy an afternoon or evening there. Not sure why, but just haven't.", "type": "review", "business_id": "F-ZOeAK1v7e5Rt2Mv5rVMw"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "BV8c4QZEzvPWA00ZqJp-jQ", "review_id": "H0AqAh6DBmMsZD5F87nYeA", "stars": 4, "date": "2011-02-28", "text": "Southern hospitality? Yes ma'am (or Mister) :)\n\nThe first thing that struck me was that my server had a lovely accent. \nMy daughter looked at me & asked me if it was part of her job to fake an accent,,,, I went with no. I'm not sure where it's from, but it's a 'honey & y'all' accent :D She had a very friendly disposition & made our lunch experience a pleasure. She made her mama proud. \n\nThe food was decent AND you can have breakfast all day. I love having breakfast for dinner, so that's a big selling point to me :)\n\nThe building is fairly new, not too brightly lit & clean. \n\nIn all honesty I would have given them an A OK rating, 3 stars, but our server pushed them to a 'yay! I'm a fan', 4 star rating. \nGood people make the difference!", "type": "review", "business_id": "VNJMoQAzJFWBYclBOSDPOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "3w-JiPus8k-BR5PQ7egDvQ", "review_id": "dSl1uFP6jmN1bNsQ-Wg-PQ", "stars": 5, "date": "2008-07-22", "text": "i hate going to places that i can goto near home, in Phx for the Cubs games.. but my daughter wanted pizza and we saw Z and had to go becuz we know how good it is. I like this one alot better then ours.", "type": "review", "business_id": "Shl6PtJERnowSJSC4IHbYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "N6q91wGo-JY1yo-fMycjGQ", "review_id": "Vki4HM-R9t7xK0g8iFIuUw", "stars": 5, "date": "2010-07-10", "text": "BACON, people! Spicy Italian sausages, brats, even heirloom veggies by the pound? Locally raised hogs and none of the extra chemicals the corporations and grocery stores use? I have found my personal piggy promised land and it is The Meat Shop. \n\nI headed over here with some buddies after hearing that some local restaurants and patrons have been taking notice of the flavor and quality they offer. We were quite pleased. The staff were helpful and knowledgeable about the meats, cuts, and preparation. We grilled up everything that night - the sausages, the brats, the veggies... even the bacon... because, why not? I think we spent a grand total of $20 and we still had enough leftovers to throw in with some sunny side up eggs and toast the next morning for breakfast. This place is fantastic and surprisingly the same cost as most of the stuff you'll find in the grocery store. I can't wait to head back over for round 2!", "type": "review", "business_id": "H010pkpCls0M-mjIzSCVlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u56KJdva4Fu0_7GoVEJ1-g", "review_id": "DA2oraXl6n40J5N-yAiKFA", "stars": 4, "date": "2012-10-27", "text": "Awesome place. Staff is very helpfull!", "type": "review", "business_id": "PUrKfTrHofG7dO55jZaPfg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "8J_nS3TAVVCLFINX29wi3g", "stars": 4, "date": "2011-10-19", "text": "Good food, nothing super delicious that makes me have cravings. I haven't been here in a long time, as in when the fries didn't come with the burgers (you had to order them as a side item). However, now they do come with them and are still endless, but I did notice the burger prices went up to allow for the burgers to now come with fries...something that is always expected at any burger joint. They do have sweet potato fries that you can order, big plus. \n\nService has always been great, they are really quick with getting drink orders in and served to you. I've ordered a bunch of items from salads to fish tacos, and of course, their burgers. Everything has tasted decent and I'm not really sure what qualifies as having \"Fine Burgers\" in a restaurant title, but I don't think Islands has it. The restaurant itself is very clean and the bathrooms are well kept. The only downside is the acoustics in this place. It can get very loud when its busy and almost annoyingly loud when there are a few kids in the joint.", "type": "review", "business_id": "hNVcBhJSD5HyLKMf_Z7TaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uWr21MBjmfojZ4MFaVlong", "review_id": "a9D98PtV4qRUk2i5FC8crQ", "stars": 4, "date": "2012-03-09", "text": "There are so many good things to say about AJ's, it's hard to know where to start. Amazing meats and seafood. Great deli items. Great sushi bar. Knowledgeable staff. Fantastic produce. Gorgeous flowers. And the pastries... the list just goes on and on. \n\nThere is usually a somalier on staff to help with wine selections to go with whatever cut of meat or seafood choice you've gone with. A good mix of everyday grocery items as well as specialty items. If you can find the marinated garlic, try it! It's so so good. Try the butternut lasagna if the deli has it. And the pastries... The pastries. Cheesecakes, mini red velvet cakes, Boston Cream Pies, cupcakes, croissants, bagels... All of the highest quality. You will never have a problem finding something sweet to curb that craving, except that you may have a problem narrowing the field. \n\nNote: not every AJ's has a sushi bar, so keep that in mind if you head to a different location with a hankering for fresh sushi. \n\nNo matter what you're going in for, the friendly, helpful staff will help ensure you get exactly what you need.", "type": "review", "business_id": "nDHyino_t7O94ZzRHGUApw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YK-g0g4HbI6uVegt2ac8xA", "review_id": "hk7c8MKNSXQKbre7zyAFcg", "stars": 5, "date": "2010-11-10", "text": "Love this place! Their slices are delicious (and HUGE) and a great deal. Service is always fast and good. Their loyalty programs (frequent visits and VIP card) are also great. The fact that they're locally owned and support the local community doesn't hurt either. :)\n\nIt's basically the only place I go to for pizza nowadays. 1 slice is more than enough, and I love that I can get it just the way that I want. If you're a member of their VIP program (free to join) you can also get the slices for dinner too.", "type": "review", "business_id": "yKbXWo_6VlS3mD_RcPquog"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "9yYmdZw5ehjBAVQ187kxXA", "review_id": "sj3YyLFa2tFbv3NvwLyvvA", "stars": 2, "date": "2010-11-09", "text": "I read the two good reviews here on Yelp, so I was looking forward to a good Italian dinner. Unfortunately, it must have been an off night. The waitress didn't want to be bothered and the meatballs and the tomato sauce on the spaghetti didn't have much flavor. That's the test of a good Italian restaurant for me. If the sauce is good, they usually get thumbs up. This sauce wasn't \"bad,\" but it was bland and watery. Even the bowl of spaghetti wasn't drained properly so there was a dripping, runny mess at the bottom of the paltry bowl of pasta. This place is right around the corner from my house and Dominic is my brother's name! So I was really disappointed.", "type": "review", "business_id": "G1_uulnhkAUBsaMAlJFc_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "U7fjG9u4iFAg0RaR3j0zNA", "review_id": "fMUVnCuQKwPHChzN_DY5FA", "stars": 3, "date": "2010-12-28", "text": "As far as basic burgers go this is an OK option. The flavor is ok and basic toppings give everyone enough choice. Better than McDonald's yeah and similar to In-n-Out but nothing really special. Price is not cheap for a burger so I would expect a little more, but not more fries because they give you a bucket full and more.", "type": "review", "business_id": "A7Soqlerr3L8mNq3YuIqAA"} +{"votes": {"funny": 8, "useful": 8, "cool": 7}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "tRE_MmGyDQBCp6GsX7xUkQ", "stars": 4, "date": "2009-08-15", "text": "I think for my sesquicentennial review, I've gotten to a point where I'm letting the food direct the show of stars. Sure, we have the servers and cooks as producers, the location as our stage, lighting, sound and supporting staff. But the meal, ah, that is our celebrated lead actor. Without it, all other pieces may paint a pretty picture, but what good is a painting when it medium is missing? \n\nThe Mission really delivers its lines well. Almost too well. Like Dakota Fanning well. Each plate has a spectrum of flavors--bold and smoky with subtle and delicate undertones of fresh herbs. Each dish is skillfully plated and ready for its closeup. My steak tacos were so intensely flavored, I didn't really dwell on the fact there were but three petite tortilla shells mounded with strips of magnificently grilled flank steak and slices of fresh avocado. And the papas y chorizo, which I ordered as an accompaniment, helped balance the palate yet was still a strong item on its own. Robert M's pozole was as unique as it was flavorful, delicious, satisfying and, ironically, humble. The bread pudding he ordered at the end of meal was, according to him, a premature ejaculation. Apparently, that means it was good, so I'll take his word for that. Those who joined us for this meal seemed to share some of the enthusiasm over the dessert, but I don't eat sweets so will have to believe their accolades worthy. \n\nWhat, pray tell, denies The Mission of the much clamored five-star rating? Primarily, it's the associated fees. On one hand, I was blown away by the sensuous flavors apparent in every edible item. On the other hand, I was blown away upon seeing the bill (especially since I had nothing but water to drink). Does one negate the other? Perhaps. Am I at a place in my life where such a statement rings true? Not necessarily. While my initial response was, I wouldn't likely return to The Mission if it was my decision, I confess that I would, willingly, give myself back to The Mission if only for the sublime sins of doting on sustenance.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "geyb5IUTkwWBwpXPx5maZw", "review_id": "p9GNq76C05Vvudj0C_HsKw", "stars": 4, "date": "2010-06-02", "text": "We were on our way to the Heard Museum...but diverted to Sabor Cubano. I was in the car with my mom-in-law (married a Cuban), sister-in-law (1/2 Cuban), and aunties. And we kept talkin' about Cuban food. Mom mentioned a Cuban restaurant nearby, but couldn't remember the name. Thanks to yelp and my droid, we found it!\n\nI had the signature Cuban sandwich. This might have the been the best one I have ever had in my life. The bread, the pork, the ham, pickles, cheese was delicious. I finished my sandwich and felt really guilty that I brought none back for my hubbie. To top it off, I had a cortadito and thick creamy flan. Bad wife - hee hee. (We will come back here, definitely before heading back to the OC.)\n\nThe only drawback...service was slow. But it was well worth the wait.", "type": "review", "business_id": "BojnLUPz5IzZKyQocGc7uw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SVw1pW_7t0YmnvyAEOovoA", "review_id": "xzDqK4ejkJHItZxETcFzzQ", "stars": 5, "date": "2009-09-24", "text": "I love the Tempe Library. The Culture Pass is a great program, the audiobook selection is good, and the seemingly unlimited resources are wonderful.", "type": "review", "business_id": "MJBkq0blIF7qbbxn4AJTzA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3_RjaHskXCu83x1tDhoUBA", "review_id": "r-aZWGZDwHbDYWTlv1cTHQ", "stars": 5, "date": "2008-12-09", "text": "Really good food, fun atmosphere, great experience and totally unique and fun. \nI would way rather spend my money at a one of a kind, family owned shop than a cheaper- dime a dozen corporate mcdonalds.", "type": "review", "business_id": "KS2w8ychyieJbUqRa6kCHw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "37UFAkFO0kyHSr363EdKWA", "review_id": "mRZKb0JsomMi_pbX5KoLQQ", "stars": 3, "date": "2012-07-10", "text": "This place is too loud. It would have been nice to have a meal without some lady yelling 'meatlog' across the room. Also the waitstaff was somewhat incompetent and snobby. The food was delicious but it's not something anyone can make themselves at home. They are stingy with their bread even though it is now free. Lots of annoying things that will probably persuade me not to come back.", "type": "review", "business_id": "BPi1Q5wX0_o5VlO_XRyYuQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "N1Q6HiZvnZHjNU712Gymqw", "review_id": "0xbZFcKtf7DiQlex9f0Nag", "stars": 5, "date": "2009-03-07", "text": "I am in love. This restaurant does everything a good restaurant should. Ambiance, service and product were good. The only disappointment I had was with the hour wait on the Monday we went without a reservation.\n\nMy party of four had an excellent time celebrating a birthday. Two had the short ribs. Tender to a fault, served with delicious Bar-B-Que sauce and pecan grits. One had the fillet with a spicy aioli and delicious potatoes.\nMy meal was a huge pork chop, stuffed with Maytag bleu on a ancho bread pudding. \n\nFor an app I split the chop salad. It deserves special mention and I do recommend it, but it is not a sustaining salad, more of a amuse-bouche. For dessert we split the peanut-butter cheese cake, delicious.\n\nThe beverages deserve some mention. The wine list is this restaurants' only fault, it is tooooo long. There is a smaller, delicious by-the-glass selection. The beer selection is well crafted. I had two of my favorite beers, Dogfishhead Chicory Stout, something I had only had by bottle, wonderful.\n\nI normally don't like high-priced eateries b/c there is often a lack of creativity, Cowboy Ciao doesn't disappoint. Recommended over any Capital Griller or Flemmingsery for creativity and value for dollar.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "CdAkiPi_KKLjHo5l2cK4Og", "stars": 5, "date": "2008-06-11", "text": "OK, I went based on Tim C.'s Yelp review of this place, and I am so glad I did. I rode my bike up there around 1PM Wednesday afternoon, and I have to say I was not disappointed. \n\nEven though it was hot out, the outdoor table was surprisingly cool and comfortable. I got an iced soy latte and it was so good. I don't know how to explain it, but there is great tasting espresso and there is bland espresso. This place just has great tasting espresso. I found out while I was there that Ted (the guy who made it) had roasted the beans himself. You can buy the beans from them if you are one of those industrious people who grind and brew your own espresso drinks...I am not. I prefer to leave that to the professionals. He actually ground the espresso when I ordered my drink. If you get the chance please go see what I am talking about. You will notice how much better the espresso is.\n\nThe place itself is so beautiful and relaxing. If you sit outside like I did, you are basically sitting in a big outdoor garden. It is kept cool by the overhead canopy and the swamp cooler air blowing out from inside the coffee shop. Ted was really friendly, I felt comfortable just hanging out for a while reading my book. Unfortunately, the coffee shop closes at 2 PM, otherwise I bet it would be beautiful at night. This place definitely looks like something that would be in a cool little town somewhere, and not off of a busy street like Hayden Rd. \n\nTed also told me he makes the lemonade himself fresh squeezed, something I love and will definitely try. When I go back, I think I will go a bit earlier. I may do a bit of plant shopping as well while I am there...\n\nBottom line: Great atmosphere, drinks, and service!", "type": "review", "business_id": "NB6o73F05lw23zpC79qoUg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Gf8NVQxc4Q9dzwgSzGvAWw", "review_id": "qOurY6U8v9-5Ec_vh0Bncw", "stars": 3, "date": "2010-09-23", "text": "Good, fresh chinese food, a little pricey.\n\nThere are two types of chinese food. Cheap, greasy, satisfying chinese food in a questionable joint. And upscale atmospheric chinese food that aspires to captivate the same audiences that enjoy places like P.F Chengs. This would be the latter: an awhatukee hole in the wall version of P.F chengs. Very clean restaurant, nice atmosphere, and good service. You can tell their motif is such that they cater to the tukee types with a little more coin in hand :/. This is the kind of place you'll find a lot of older families, or much older groups of friends dining together in. \n\nBoth the orange chicken, and the almond chicken were good, and were made barring on the side of caution when it comes to grease. They were big portions (for $8), with big fresh peices of white meat, fresh vegetables, and no MSG. There is no chance of this meal offending a pickier type with grease, textures, or flavors (which makes it less interesting in my opinion).\n\nBoth dishes were good, but nothing amazing from the 2 dishes I tried. \n\nThe green tea ice cream was good, but I've had better green tea ice cream :/ . their version was a little too heavy with cream, and could have used some fruit, or something creative to go with the ice cream. \n\nThe only other dessert option was another flavor of ice cream.\n\nThe service was great, very polite and friendly waiters.", "type": "review", "business_id": "EWnSPExh_T5zTv6oMJOC5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8OzpagCTdZJgdwudKPPtyA", "review_id": "e0tUH64EzCBgHCf44jXmww", "stars": 5, "date": "2011-08-21", "text": "These guys are great. I had an old Craftsman mower, probably 8yo, that even sat unused in a basement for a couple years. It coughed and wheezed, barely even turning over. I brought it to them and now it works (and even looks) brand new!", "type": "review", "business_id": "6ZjiNJ8-MIaEDY5bm_5upw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ykTUd9nIYDkQYhpntgcTVw", "review_id": "81sTvcZ05tgMhZaGICnAEw", "stars": 3, "date": "2010-10-20", "text": "Love the atmosphere and how trendy rhus place is, reminds me of Nip/tuck kinda, the way they have it set up. I had thd NY strip steak and i don not think it was worth the price. The steak did not come with a side. Sides are ordered seperately. Great customer service, however I don't think I will be eating here again.", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "FKF0vsPI8PYmOmTF48RE8w", "review_id": "bMIMClZHCc93eAHSbiKCRg", "stars": 3, "date": "2011-12-27", "text": "Was visiting Phoenix and wanted to try some of the best place. Tacos Atoyac kept coming up so I decided to give it a try without reading all the reviews (was recovering from the cold a week before so did not want to do much reading) . It should not be bad if the reviews are all 4 and 5 stars. \n\nCame here on 12/23 evening close to 7pm. Parked the car right in front and seemed no one was in there. It turned out they were closing early that night. The menu was small and don't offer much explanation (I guess they figure everyone knows what's taco and burro) \n\nPlace was clean but smelled like smoke when we walked in. \n\nLooking at the price, I figure the taco was small and confirmed with the big, tall white tattoo guy behind the cashier, so I know how many to order. My parents wanted fish tacos (they only know Rubio's fish tacos and burritos *roll eyes*) and I ordered some al pastor and asada tacos. Since I am from LA, I am spoiled with cheap, good tacos. The ones from Tacos Atoyas was only a okay compare to the ones in LA. Usually the tacos I have are overflow with meat, but these are only half way filled. Taste was a okay too. \n\nThey also ran out of beef tamale that night which my dad wanted to try.\n\nAnyway... 4 1/2 stars? I don't think so.", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ay1eY5gVFFBUhuhl036vVA", "review_id": "VU8LHv59saLWummncIWxug", "stars": 2, "date": "2011-02-15", "text": "It's ok, quality . Service was below par, although they were really busy. Fries were good and endless I guess that's good.. But, I was looking for a good burger, too bad I didn't find it here.", "type": "review", "business_id": "ASNxwg9dD4-_F4H1uNN2KQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "mRAPMBM3dbw8KXNit1aDCw", "review_id": "2pMxoxw9ZGb1W1aOiAnQ7w", "stars": 3, "date": "2012-07-12", "text": "The people who are either stocking the shelves, cleaning the floors, or behind the counter have all been polite so far. I have nothing really bad to say, but nothing really great either. Keep perservering...maybe I'll write another review when something outrageous happens :)", "type": "review", "business_id": "nqD620A6r3hcysgkQ6w30g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "clWfsHVPgeSEusg-W6ybVg", "review_id": "0zfkrAdu1SE3ZbTO3_bN_A", "stars": 5, "date": "2012-08-20", "text": "Super!", "type": "review", "business_id": "rRXGdtqUTBtczey1DGenEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vmilZ7O_00r7rja-3bbxPg", "review_id": "lPIZKu-HCjnWhjoOpWN-hQ", "stars": 5, "date": "2012-07-07", "text": "Best value for your money, Clean, comfy beds. Quite. Great breakfast that is included.", "type": "review", "business_id": "NmtZuT8p4vNk259dvozbvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "e5YZvlSRknGmROE209SF3Q", "review_id": "gBwZ-D70fD3N1HofAky2Fg", "stars": 3, "date": "2011-04-17", "text": "I have a love/hate relationship with Costco. I love to support local businesses, but this is one of a couple of exceptions I make. It seems they treat their employees fairly as most of the employees at this store seem to have been there for years if not a decade. One thing that gives me comfort in my purchasing is they have a terrific return policy and take about anything back.", "type": "review", "business_id": "XLqnjlLYt0_q_NG7l_BpMA"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "mEMun-MSV-Rke3oB8qD_Cw", "review_id": "-lEGHZa8ak_c-kYCvN-30A", "stars": 3, "date": "2011-02-09", "text": "If you have to travel to Phoenix (Yay!) then chances are you have to travel through Sky Harbor (Boo!). There's also a decent chance you'll consider traveling on Southwest (Boo!) but as airlines (Boo!) in Sky Harbor (Boo!) go, you can do worse than Southwest.\n\nI'm not a huge fan of Southwest, although I'll give credit where credit is due, and that bags fly free thing is genius. Combine one of my least favorite carriers with what is probably my least favorite airport and you've got a recipe for disaster, but somehow it works out in Southwest's benefit. The gates are just as hard to reach for SWest as other carriers, and you're not banished to the edge of the universe for check-in or for baggage claim. They've got a decent presence here, so you may actually find a human who can help should you have a problem.\n\nYes, they may leave you stranded on the runway for a while in 100 degree plus weather (check) or force you to dash across the airport with late arriving flights (check) but every once in a while it's a painless operation.", "type": "review", "business_id": "EYRqt6hDb2Y9gl0si0NdXA"} +{"votes": {"funny": 2, "useful": 0, "cool": 1}, "user_id": "fqpgzgVVnxlkSoAY2aS4Dw", "review_id": "7RqVVhpubP77UsUE4AT49Q", "stars": 3, "date": "2012-01-03", "text": "British pubs aren't my favorite places to eat, since I am a vegetarian (who eats fish occasionally), but this place was pretty good. The building was cool and full of character and the service was very friendly. Kim was a great server, even though she was doing it all alone on New Year's day! She was very nice and efficient. \n\nThe food was pretty good. I got fish and chips, but I don't prefer eating fried stuff often. I do have to say, they were good though. The outdoor seating is nice, but man....those birds are lethal! We got pooped on over and over and even our water was tainted! Not The Rose and Crown's fault, but it kinda ruined our experience. \n\nThis looks like a great place to drink, hang out and even watch the game. I am sure it's a fun place, but just not my favorite.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "JbFwn1v8at7nxiBl43KeHg", "stars": 3, "date": "2012-01-17", "text": "After our fav Mongolian place closed I was set on having Mongolian the night we came across AJ's.\n\nIt was decent. \n\nIt seemed a bit over priced. \n\nThe soft serve was kinda gross and the chocolate was out of order. \n\nThe all you can eat soup looked like it had been sitting there for a good 8 hours. \n\nWill I go back? Maybe. \n\nWas I impressed? Not really.\n\nDid I leave full? Yes.", "type": "review", "business_id": "IfqYtKTV6_smGY8gbuYKkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YrBun_Gx0wt3bTRCUNEH4A", "review_id": "v3XjLWzWCNr4hXfjzqbQyg", "stars": 4, "date": "2012-08-16", "text": "3.5 stars\n\nCame here for HH on a Tuesday. Loved the ambience, sort of a beachy type feel. We ordered all the appetizers listed for HH, including the sliders, grilled cheese sandwich, wings (buffalo), and bruschetta. Food was decent, my favorite being the grilled cheese sandwich. A nice place to wind down with good company.", "type": "review", "business_id": "E7nk0lC317pGxMX56gvaVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V9Uqt00HXwXT6mzsVCjMAw", "review_id": "CrkKhtPW4_b7uNJ-yvXuAA", "stars": 4, "date": "2009-12-10", "text": "There have to be some considerations made when attending Frank and Lupe's: First off, you have to understand that it's not GREAT Mexican food. That is to say, it's not real high quality, but more of what you would get at your buddies grandma's house. The second is that the service is somewhat spotty at times. You give your order to the \"waiter\", who then disappears as you are serviced throughout the nite by the \"bus boys\". Getting the check is the hardest thing there is. \n\nHaving said all that, this place is TAST-TEE! I can't get enough of their enchilada's. If you're lucky enough to be there when they are doing their Poblano Chile enchiladas, get them! They are amazing. The chicken mole enchilada plate is also incredibly delicious. And sopapilla's??? WHERE THE HELL HAVE THESE THINGS BEEN ALL MY LIFE?!?!?! Drizzle some honey on these bad boys and enjoy throughout the meal. \n\nLike I said, you have to understand what you're getting into with Frank and Lupe's and if you can look past a few of their shortcomings, the food, atmosphere, and prices here are some of the best in town!", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "0j9BH_ymVlCqm3qqFWwoFg", "review_id": "hA-x-cWjVYL26TohzzPjyA", "stars": 4, "date": "2010-08-16", "text": "Went for drinks and appetizers to help benefit Friends of Animal Control and Care and was not disappointed! I am not a big fan of alcoholic beverages but this place made them fantastically. Got the Dr. Funk while my companions got Zombie and Hurricane. All were very tasty especially the Dr. Funk. MmmMMm. \n\nThe appetizers were well portioned, I got the sweet potato fries and the others got calamri and other fishy foods that I don't eat. No complaints from them so definitely a good sign. \n\nService was great, even though we were doing the special we still received plenty of attention.\n\nI will be back but this time to try some food!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KD2t6YxMPCdwtCpHt-HT8w", "review_id": "m7Mj9f6ncn0lfZ43yfCLgQ", "stars": 2, "date": "2012-01-08", "text": "To even admit to serving tex-mex is the first clue about how bad the food is there. And whoever that nit wit was that said Arizona has bad Mexican obviously knows nothing about Good Mex food. Ill admit right from the start that I don't want authentic Mex. food. Go on down to Nogales and get some authentic Mex. food Ha! What I want is authentic valley of the sun sonoran style Mex. food the way its evolved for a hundred years from the early Mexican Legal Immigrants. Ihave been all over the USA and true you can get some decent mex food in cal, new mex., west texas. But to get the best Beans, enchiladas, red, green, chile, tamales tortillas you have to get it right here in AZ. Here are a few great places. Don Joses, Matador, Carolinas. Manuels, Some Burro, Juans, Ajo Als, Macayos. The two best are Ricardos and Papagayos, oops, They closed because the new management wrecked the food and drove away the faithful. And thats THE TRUTH, from \"The Truth\" Ciau!", "type": "review", "business_id": "WM8sy8FjrU3PpxN_NI02ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AYSDnMdm1-LDyhUtMq6_dw", "review_id": "kRp4Xwa8AlhH96Bnsnbc8A", "stars": 4, "date": "2010-12-26", "text": "I had a lot of fun playing this course today with my 12-year old son (who hits in the low 100s.) We also played this course back in November when we were here in town and had an equally enjoyable time.\n\nThe course is in great shape and we were able to finish our round in around 4-5 hours. The staff here are very friendly and accommodating and the beverage cart came by around 5 times during our round. The price they gave us (as return out-of-towners) for a Sunday morning tee-time was incredible - 2 adults at $89 each + $40 rental + FREE junior fees + $15 junior rental. Other similar quality local courses wanted to charge full fees for juniors for the same tee time, so I really appreciated the gesture. If they keep this policy in tact, this will be my regular course when my son and I come back in town.\n\nAs for the course, the early holes are typical resort style holes followed by 5 or so residential public course-style holes. The beauty of this course is the back-9 desert-style holes that wrap around into the south mountain before returning back into the resort with the final par-3 that provides a breath taking semi-panoramic view of the valley from downtown Phoenix to the Superstition Mountains. I found the back-9 to be short, but very technical, constantly testing my course management abilities - i.e, thought I could hit onto the green (from the whites) on every par-4, but came up short every time.\n\nWould definitely recommend this course for other out-of-towners like me who want to get in a quick round on a nice course. The pro shop is small but well-stocked. The restaurant has patio seating overlooking the first tee and serves some decent food. However, they need to get better beers on tap (IPAs and microbrews would be nice!.)", "type": "review", "business_id": "vwOLtv-8syrddAstFmnwCg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "e8ZXaLh79xm9h5OKLavILQ", "review_id": "YGGumXo-X9w0dIwgt6x7rQ", "stars": 5, "date": "2011-04-05", "text": "They don't serve food, they serve sex on a plate. At first glance the place looks like a hallway but it's really a flavor factory hidden away between two buildings no one cares about because those places don't have Pasty's. The service is fast , friendly, and the music is off the chain. The food is not to be forgotten though, there are so many selections of Pasty variations that anyone with any craving will loose all control of there facial expressions. I only wish the place was bigger, there have been times when I've had to wait for a space to open up but that's not necessarily a bad thing. That time allowed me to prepare myself for the nirvana inducing flavorgasm that is The Cornish Pasty Company.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mP1tArLg-SrDmsW0ch8NPw", "review_id": "xL6QBZjegVkzlp3KaC7whg", "stars": 5, "date": "2012-08-27", "text": "This is a great breakfast stop! Gotta love the homemade biscuits... are you kidding me! Awesome! CB is a huge chain but they do some great things. \n\nThe only thing is the way they have designed the space the servers are in the back a lot... too much. They need to be on the floor more to make sure the cups stay filled up!", "type": "review", "business_id": "jqbrMBRsByyVBm8OoQ9dWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IO7stvN7CLfqPrQSXW6wFA", "review_id": "DxytTlXMmp71oKhWanBFKA", "stars": 5, "date": "2012-09-09", "text": "Kindred Spirits has closed their doors. It is a sad thing that we on the west side of Phoenix cannot support such a friendly and community oriented business, AND one that gave you the option to drop by for a quick coffee or for a more complete dining experience. The live music on the weekends was also something a bit rare for our side of town, and will be missed. Richard and Debra did a marvelous job updating the space, and making it a warm and welcoming place. I am sorry that Youngtown has lost this business.", "type": "review", "business_id": "EeqCebn8ulIywYIvtnH0Lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PmDHdnS-EkD4mOIsHD-dVQ", "review_id": "oLJM3G13k13xdzZB2i_CTw", "stars": 5, "date": "2012-03-11", "text": "Wife and I had the large burgers. Many options as to toppings, whole grain bun is also an option. Store is spotless and staff is young and cheerful. I had sw style w/guacamole and jalapeno, spouse chose classic american cheeseburger. We ordered sweet potato fries to split. They are awesome and the single portion was large enough for 2 1/2 people. We were advised (in advance) that burgers would be pink inside, which we prefer. If you want yours well done, ask. You order at counter, and the food is brought to your booth. This was our second visit, and we would return. Store is nnear movies in food are of Tempe marketplace, so expect to spend some time looking for a spot.", "type": "review", "business_id": "211DetkFdxd8sQ54CMU35A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yGs16xQiN3dLo03OQyto8A", "review_id": "8k0A0YzQci40Q0hCEz9WTA", "stars": 4, "date": "2009-01-08", "text": "It's called \"Babeway\" for a reason people...\n\n\nBut I go here for the Deli, they have the best panini. I like to stop in for the 3 cheese panini with mustard and tomato. It's also a good choice to pair up with the Italian wedding soup.", "type": "review", "business_id": "OfNQed4MVoSyY31YJkJWqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ddr63wQ7CdByADPnHNr4-w", "review_id": "1SM3zDv_jraWiRuKEn-35Q", "stars": 1, "date": "2012-01-09", "text": "The service at this location is absolutely atrocious. I went to the Starbucks to get a Frappuccino, as I've done many times at this location without issue. The employee working the counter had an absolutely revolting tattoo near her collar bone and a scowl on her face. She asked me if I had a membership AFTER I had swiped my card, then said \"Too late,\" when I told her I had one.\n\nThen, the idiot with the spiky blonde hair made me a Frappuccino that was basically brown water. I told her to make it again. She made it again, then informed me that she put extra shots of chocolate in it, and I should ask for extra chocolate if I don't want it to taste like water. I have never had a problem with the way my drink tasted until that day, but apparently the problem lies with me.\n\nI'm not the one who chose a career in customer service. If the coffee slingers at this branch can't pretend to enjoy their jobs, they should be put out on the street.", "type": "review", "business_id": "HGOsJ1-GXCk5_8RmwKxomA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "wK1bQxCNs6U3VGj-j5rb7w", "stars": 4, "date": "2011-08-02", "text": "There really isn't a better time to go to Sapporo than RIGHT NOW to enjoy their every day summer happy hour for cheap, good quality food & drinks. There are great discounts on beer, wine, and cocktails including the awesome mango martini, and several very popular appetizers, rolls, and sushi. I adore the chicken skewers and sliders, but my favorite are the diver scallops. I don't think they are on the happy hour menu but they rock!\n\nTeppanyaki here is also very fun for a group and the N Scottsdale crowd is great for people watching. Whether for a date or girls/guys night out, Sapporo's energetic vibe has a lot of fun to offer.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ggEHaGGCiUVmE2N5iZy6DA", "review_id": "F2V_g-0jcmTfG6DL_SoeuA", "stars": 2, "date": "2010-09-16", "text": "I was actually really excited to eat at the Saguaro Grille the first (and last) time I went there. Finally, a reasonably priced casual restaurant not owned by a corporation. Or mad persons\n\nFirst of all, the waiter had no idea what the soup was or what kind of bread they had available since apparently their actual bread inventory bore no resemblance to the one printed on the menu. The waitress berated him for not knowing, and then went on to make it obvious she hadn't a clue herself. She tried to talk us into getting croissants. Neither of us were ordering things that belonged on croissants. My dining companion got a portabella burger that's a burger with a giant mushroom cap instead of meat for people sans veggie friends -and I got a chicken sandwich and Italian wedding soup. We had to repeat the order two or three times before the waiter got it.\n\nThe waiter subsequently returned my dining companion how she wanted her burger done. She gently pointed out that portabella burgers have only two possible states- done and note done. Such is the dichotomy of mushroom burger kind. \"Wait, you wanted a what?\" slurred the waiter. He had put in for a regular beef burger. Turned out, they didn't actually have a portabella in the place. \n\nWe waited. The soup showed up in one of those skinny coffee mugs and the waiter tried to pawn it off on the wrong person. It was pretty good soup, but there was simply no way to adjust the seasonings without making a sloshy mess. \n\nMy sandwich, well, it was OK. Nothing to write home about. I was very hungry and it didn't strike me until I was almost done the promised buttermilk ranch dressing was regular ranch with buttermilk. My dining companion's fruit was on the old side, and her tuna melt not particularly tuna-tastic.\n\nWe are masochists. We decided to have some dessert. The one thing on the menu we wanted was, of course, not actually available, so we decided to just go with coffee. Mum ordered cold coffee. She specifically said, \"I'll have a small iced coffee.\" I ordered a double shot of espresso. Not too complex. \n\nThe waiter came back a moment to make sure I really wanted a double shot of espresso in my iced coffee.\n\nAbsolutely not worth the price or the obligatory trip to the twilight zone.", "type": "review", "business_id": "c4FLMLP7hMnAbSiW2o_o3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4nl3_uBJlJy0PUyyoRSxxw", "review_id": "euIHPaEcb2ZMq55PBesytA", "stars": 5, "date": "2010-09-26", "text": "This is the best restaurant in Phoenix. My wife and I have been eating out here for years, Their servers are great and the food is always delicious. The entire menu is very good and the specials are always unique.\n\nCheck out their website at http://www.phoenixcitygrille.com", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 11, "useful": 11, "cool": 8}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "oDPyYEVguTnZlh9ZvDq5IQ", "stars": 4, "date": "2009-06-15", "text": "Let me qualify my review by stating that I have not been to Butter & Me. I have had their yummy mini cupcakes at a Yelp event.\n\nI tried the red velvet mini cupcake. It was really good. Moist and flavorful with a rich creamy frosting. Yum. I chased it with few sips of Cruz tequila. Hey, it was in my other hand.\n\nI also tried a chocolate mini cupcake. Yummy. Again, moist and delicious. I don't know how they keep the mini ones from drying out. When I make mini muffins at home they dry out easily (that is if any survive the first half hour...the survival rate for any kind of pastry in my vicinity is exceedingly low).\n\nI also garnered a few extra cupcakes to take back to my wife and a friend and score points. Mini cupcakes=brownie points.", "type": "review", "business_id": "MRgTo4MA3f1MB_VL3IVh5g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "aqRUK2zHaExwwhwMpPDvgg", "review_id": "YgUkgAGIcQaWRESHQ__3RA", "stars": 3, "date": "2012-12-08", "text": "My hubby&I were in for lunch-approx 1:30PM. Was just us and 1 other customer. Ordered tuna salad sandwich&potato salad. Hubby ordered the cheeseburger&fries. Refills on my tea were not fast enough for me,I had to find someone. Hubby loved his burger,Angus I think. My homemade potato salad was not seasoned-loved the texture, but had to add salt&pepper for any flavor. A few \"quotes\" written on the walls was part of the decor. One from the class of the local high school has a misspelled word!!!! \"anticipate\" They put it up last Sept and its still wrong. Everything we ordered came as we asked for;server got it right. We might be back another time.", "type": "review", "business_id": "i6b8U1rKrH_3DE_AoODoeA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3am2PwtajoR3LIlP7XZtbA", "review_id": "7ZfnlDkDfZ8P3ltsKz9-Xw", "stars": 4, "date": "2009-02-18", "text": "I dig the Vig. Good food and a great atmosphere/patio. If you like Bocce Ball, then you should definitely check it out, but go soon before it starts to warm up again and be sure to take the Vig Rig home if you're blasted.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eO-je5q1YejxFnOKSAUQUg", "review_id": "wdxakKwu82ehONvNMdairw", "stars": 3, "date": "2012-09-24", "text": "The facility is very clean and I got in and out quick. However, the staff lacks personality and friendliness.", "type": "review", "business_id": "yZ-qb1oJzlTXG_b1EPX4TA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "96W42CrBaDxpyHKYit9CtQ", "review_id": "5gPbyQHu-szhyRNtkt7s3Q", "stars": 3, "date": "2013-01-05", "text": "Food is great, but service is horrible. The servers are rude and it took a 30 minutes to get our drinks and another 30 for our food. I really liked this place when it first opened. We live in the area and had hoped for this to be a regular place for us to come to eat, drink and meet friends. I hope the management fixes the problem with the service. If you are going to try this place, I suggest you sit at the bar for better service.", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "c_XZwsOmiy4tc0Mmk_F2xw", "review_id": "-TNKAnYJRBqVgNMz-nPVXQ", "stars": 4, "date": "2012-04-24", "text": "The pizza was crisp and delicious. The place is super casual and very comfortable. The staff is down-to-earth and friendly.\n\nI loved the live music from Tom Mein on the patio. It felt great to be able to sit on the patio and enjoy a downtown Phoenix sunset in the spring.\n\nHaving beer and wine for sale was nice as well. I will be back to try more of the menu.", "type": "review", "business_id": "SAEr_2rJLNFr3aPv0DlSWg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "PVIJ0S6sVxGYstpyWAUciw", "review_id": "z8UtDMNUoazx1b69dxx2OA", "stars": 4, "date": "2009-06-25", "text": "I consistently enjoy Chelsea's Kitchen, even in uncomfortable circumstances (long story). This last time was no exception.\n\nWe started with \"white\" sangria, which none of us had heard of before, despite prior visits. The \"white\" is a pinot grigio so it was an easy decision to order the pitcher. The sangria was delightful - we didn't quite finish the wine, but the pitcher-ful of fruit was polished off.\n\nMy swordfish tacos were delicious and filling. My friend's fried chicken (a special) was good but a bit dry. I suggested gelato after dinner; no one had room.\n\nService was a bit inattentive. The table seated after us received menus, waters and had their order taken before we had a server approach the table. After the first server, another seemed to take over and things got better.\n\nThe atmosphere at Chelsea's is good, as others have pointed out. It's a great place to hang out. The setting is beautiful. I will return.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "myqNiZDq6XzJerk8uXkw1A", "review_id": "7uoQEHDj2pLxov60OkiOaQ", "stars": 5, "date": "2011-12-04", "text": "I stopped in with a friend on a Saturday night after a friend had recommended it to me and was totally thrilled we did. We sat at a table for sushi and waited no longer than 10 minutes for a table - amazing for 8 pm on a Saturday in old towne.\n\nUnfortunately, they had sold out of the oysters, but the other dishes we'd ordered were fabulous - starting with a seared tuna dish, then softshell crab roll, rainbow roll, and the green mussels. The seared tuna was cooked and cut perfectly - just the right temperature with a peppery \"rub,\" the rolls were a decent size with thick cuts of fish and plenty of flavorful crab, and the mussels were a tad overcooked for my preference but the creamy texture and buttery flavor still made it a winner. \n\nThe thing I appreciated most was actually the service - we weren't rushed or hassled, and the food came out a dish at a time, giving us a chance to eat and enjoy before getting our next dish. At other sushi joints, I am constantly feeling rushed while trying to fit all of the dishes on the table (and I'm not what you'd call a slow eater!). This was a happy medium for me. The server confirmed that we were ready for the bill instead of just dropping it off without asking - it's the little details that make a big difference to me.\n\nMy only other con was creepy old men leering at us from the bar...but that's what you get in Scottsdale.", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "dTvhBR0ObL3SAIUZYoKfOQ", "review_id": "fU9-1p_bZIBrpD_6FKlj3A", "stars": 2, "date": "2012-07-22", "text": "First time experience. Tried turkey burger from the skinyalicous menu. Burger was ok but greasy. They served me a salad that has gone bad. You donot serve a salad with rotting vegetables. Also Shepard pie we ordered had extra ingredients such as zuccini, so they should have warned us about not being a proper Shepard pie. Gordon Ramsay would have been mad. \nService was good. Only saving grace.", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LoSifdxmrOj-a8xcDrRJDw", "review_id": "ujtHr8BSjWAn-itkm_CfcQ", "stars": 3, "date": "2011-04-15", "text": "I loved the old menu, but the changes gave me a change of heart. They had the best sandwiches & it was always quiet from 5 until 8 so you could sit & eat. The new menu is okay & we liked what we got, but we would've left if it wasn't happy hour. Even though the servings are big(maybe too big) the prices are retarded now. The buffalo chicken tenders were pretty good, but perhaps too spicy in the wrong way. I used to go & send people all the time, but without those yummy sandwiches & with the higher prices, we prolly won't make it back again. The servers usually are slow & fairly unattentive, but the menu was bringing us back. :( sad to see it change that way.", "type": "review", "business_id": "qcylQLL-fXdFHrdXC2jZFw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "RGnODSWkk6lYIlAzlP0EBQ", "review_id": "UL_p-UCP11u-ePcMGi5oBQ", "stars": 5, "date": "2012-09-01", "text": "My boyfriend and I went to Film Bar last night to see Iron Sky. Neither of us had been there before, and the decision was made quickly, so we had no idea what to expect. The bartender was incredibly nice, friendly, informative, and genuine. The prices for the bar were very reasonable, and I thought that $7 for tickets was MORE than reasonable. We were there more than an hour early, and it was so nice to just sit back on the low booths and chat.\n\nI gotta admit, I totally fell in love with this little place, and I can't wait to go back!\n\nMy ONLY concern is that by the time our movie was done, there was a DJ playing music so loudly that you could hear it in the theater and you couldn't talk without shouting in the bar, so we had to go outside to converse with our friends. I would bet that the place doesn't have a DJ all the time, though.", "type": "review", "business_id": "MYj5f-QxtGeKlhVVx1RD4g"} +{"votes": {"funny": 5, "useful": 5, "cool": 3}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "6DOPdFlis83p8FRx64QIiQ", "stars": 1, "date": "2010-08-18", "text": "Treachery! Seek it out:\n\nLet me begin this review by saying that mine is not an indictment on this particular location but on every single P.F. Chang's I've had the misfortune of being dragged to.\n\nP.F. Chang's is effectively the Cheesecake Factory of bad Chinese food, with the disadvantage of not being as capable of delivering passable food. They bill themselves as a \"gourmet\" Asian experience, which is a bit of a laugh when they turn around and sell you their equally horrible frozen entr\u00e9es right from the convenience of your local Wal-Mart. Everything is bland, overcooked, and ridiculously priced. \n\nOnce you've paid nearly $14 for their \"orange peel chicken\", you may privately hope to yourself that they might have the audacity to include some fried rice. This is your second mistake. Sadly, the bistro calls you on your bullshit. You get white or brown--fried rice is several dollars extra and not at all worth it.\n\nEverything seems to be cooked just wrong--things that shouldn't be are too crispy, things that should be sauced are too dry, things that should taste good make you question the will of the gods, all the while you find there's no way to escape the treachery.\n\nThings get more and more frustrating as you dig deeper: P.F. Changs, while sounding vaguely Asian, is a wholly American creation. It was founded by Paul Fleming (in Scottsdale, actually) with SOMEone with some Asian influence to spice it up a bit, named Philip Chiang. (They literally cut out the poor bastard's \"i\" so that it would \"fit on the signs better,\" or, as I like to believe, not scare away the flyover-states-white-folk so.) It's highly Americanized (and yes, I've had Chinese food in China, but I've also enjoyed great \"American Chinese\" food here) to the point of regrettable blandness and it is SO VERY EXPENSIVE you may find your credit score taking a ding after eating a plate of \"wok charred beef\", listed as one of the saltiest foods in America.\n\nThe decoration is clumsy and their famous inclusion of terra cotta warriors are literally symbols of death. From Jennifer 8 Lee's Fortune Cookie Chronicles:\n\n'But not everyone finds the terra-cotta warriors charming. \"Chinese people would never put that in a restuarant,\" Jim told me, pointing at the statues. \"It's not lucky. It's something you put at a burial site! But in America, they think it's a Chinese thing.\" From a Chinese perspective, P.F. Changs is decorated with death.'\n\nWhich is just fine, because everything there tastes like death anyway.", "type": "review", "business_id": "xcOncADGPr9eki8OU5Ln7g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "VqSCQCva71Q-ZVcMsYfQuw", "review_id": "FrUT9VYLb7WvaVdCwT86ew", "stars": 5, "date": "2012-03-18", "text": "As a frequent traveler into Scottsdale, I was looking for something new and different to celebrate with a young up and coming professional baseball player---who happens to be my nephew. We were forewarned this place had no prices on their online menu and appeared to be owned by Mastro's which consistently has excellent food. \n\nMichael Dominick opened Dominick's Lincoln Avenue Prime Steakhouse last fall after baseball season in the small, but excellent Scottsdale Quarter. (I'll admit to frequenting this Nike store in travels to Phoenix.) The ambiance is that of an elegant steakhouse. The rooms are dark with huge crystal chandeliers. Very opulent without being ostentatious!. \n\nWe both ordered the bone-in filet which is an excellent aged prime cut. Supposedly, according to our very professional server, this cut is about 16 oz with a bone yielding about a 14 oz serving. My limit on steak is typical 6-8 ounces and I ate my entire meal, making me think (1) This place really is THAT GOOD, and (2) I doubt this is more than a 10 oz serving. \n\nWe started with a warm assortment of breads and in deference to my guest, we minimized the veggie's ordered. (I'll go back during baseball season :-) ) \n\nAfter ordering a glass of of the extensive, but reasonably priced wine list, we looked at dinner entree. The steaks come with a choice of rubs and sauces. The house rub was described as \"cajun-style, but not overwhelming\". My theory is sauces on steaks are useful for poor cuts of meat, but take away from great cuts; hence, I went no sauce. \n\nThe result was an incredibly great dinner of Bone-in filets ordered medium rare, no sauce and a loaded mashed potato side. (This side comes pre-prepared or you can ask for ramikans of cheese, chives, bacon and sour cream and build as you like at the table. We finished with a scoop of ice cream and a cappuccino for desert. \n\nExcellent steak spot and a welcome high-end addition to the Scottsdale food scene.\n\nOne comment: The \"Branding\" of the restaurant is confusing. Either call it \"Dominick's\" or \"Lincoln Avenue\", but not both. This actually caused confusion in trying to locate this spot and diminishes the feng shui and brand loyalty you'd want to keep and associate. (Qualifier: I'm not a branding expert and this is strictly my opinion.)\n\n I would love to see Mastro's try a southwest cuisine spot!", "type": "review", "business_id": "WSHQ9qpL39g5xA3E5iBCmw"} +{"votes": {"funny": 5, "useful": 6, "cool": 5}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "0bC_8ixSQJaqRl9wChUfPQ", "stars": 4, "date": "2008-08-08", "text": "I worked here when I was 20 and I couldnt fully appreciate what they have to offer.\n\nIts unfortunate I didnt take advantage of my 30% employee discount, but I was poor since I worked there. \n\nI really enjoy this place now, the dining room tables are the best buy ever! I was shopping fore like 5 months for a table with bench seats instead of chairs. \n\nThen I remembered how many Cost Plus had.\n\nI went in and they have 4 different kinds for 199.00\n\nI dont know if you have been bench shopping lately but I find them ion the price range of 700-1200.\n\nI liked a lot of the tables but they didnt match my style so got a table somewhere else and bought the benches here. \n\nThey also have walkers shortbread cookies on sale all the time. Ok the ingredients on that: Butter, sugar, flour, salt\n\nSooo Goood\n\nBut yeah great buys on tables, but they have midget couches.\n\nThey are for like a childrens playroom.", "type": "review", "business_id": "0Gu2cpJ5x9ZZfDDHohBY_A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "8PMmN9gi7sLs0Z9U86Pq3g", "stars": 4, "date": "2009-10-30", "text": "Tacos and enchilada today. Good flavor & fresh salsa. Fast service and very friendly staff today (even though they were understaffed). You will enjoy Rudys lf you have never been. Authentic AZ mexican food.", "type": "review", "business_id": "lem7XGgKM5a4pAgop2mQqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bPWCuFEaVL5F6dT3JgivLw", "review_id": "x_EfKdGvBYJuE3xwzSeNZQ", "stars": 5, "date": "2010-12-30", "text": "Great theatre! Super clean and nice sound in all theatres. Only caveat: I can read the prices on the beverage and popcorn menu sign thing, so when I order a medium, I want a medium, I can see that for 50 cents more I can get the large. I just don't want to pee myself when I get caught up in a good flick. But thanks anyway.", "type": "review", "business_id": "AI16w9Hsiq9xFyUnX8x9qw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZzXsskFHBYlHigIC0mX9lg", "review_id": "NC1faskKJbf11rZ1lIau1A", "stars": 4, "date": "2012-08-12", "text": "Went on a Saturday night using our Entertainment coupon (which listed old address, had to call for new, they gave a nice apology). There was a party going on behind screens, all Pakistanis, women & girls in traditional wear, balloons, lots of children that were literally running though the restaurant, squealing with delight. Very glad we were not expecting a romantic dinner... We approached it as cultural diversity, chose to enjoy the loud, festive atmosphere. OK... A little annoyed when one of the little girls did a few particularly high-pitched repeated squeals, & one kid bumped my chair as they chased each other across the restaurant...\n\nIt was less than an hour of closing, so we asked if the buffet was not such a good idea (been out a while, no fresh coming). The kid waiter went to ask, and we appreciate that he returned reporting that the menu would be a better choice to insure quality.\n\n Ordered lentil soup & sesame naan (new & listed on back pages). Lentil soup was soft yellow color, not darker lentils I'm used to. It was creamy with very small pieces of lentils. The flavor was more mild than I'm used to, but a subtle spicy. It was nice, no complaints. The sesame naan was fresh, crisp bottom, soft top layer, added a bit of salt and WOW delicious!! Lots of sesames on top, yum.\n\nThen ordered chicken tikka masala, as I'm working my husband into such foods, and he for sure likes this dish. Nice white breast meat which he prefers, simmered in that divine red creamy sauce. I'd call it mild heat at best. I'd prefer a bit spicier, but perfect for my husband. \n\nWe brought our beverage with us, after calling to make sure it was okay. Nothing is mentioned on the website one way or the other. They were very accommodating for this, brought us glasses, and offered an opener to use. I am under the impression there's a seating size limit to such places & not sure they don't exceed it, so I'm going to stay vague so they/we don't lose this option! It was GREAT - kept our bill nice and low.\n\nIf it wasn't for the Entertainment coupon, we wouldn't have known to try them... Now we will be back!\n\n4 stars not five because it was really good but not mind-blowing... It would take a big wow to have me give 5. Children thing doesn't affect score, as I know that was a celebration exception, and again chose to see it as a cultural experience. Omar works part-time, very nice, friendly, good customer service. He apologized for the chaotic environment, which was nice. \n\nSaw grumpy uncle at counter, no smile, but we didn't have any interaction with him. We were waited on mainly by a nice kid with puffy black hair, seemed a bit timid but did fine with everything. Omar came to us and chatted at the end of the evening.", "type": "review", "business_id": "15JZ0ME6eOtShdLctzfR6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XXASa63lj7XotC4e2HZeFQ", "review_id": "C3OBBfVMOK2O5L5cpcWMsg", "stars": 5, "date": "2012-02-03", "text": "Aaron Has Been My Tattoo Artist for a long time and the quality of Aaron and all the artists in this shop are amazing very clean,sterile and safe. \n\nBe Back soon need some work done", "type": "review", "business_id": "YtxYtZNgz2CilYWx0ycaBg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "917tdP8KxwU_HO8Neaqbwg", "stars": 4, "date": "2010-07-25", "text": "Sometimes, a girls wants to splurge on going to the hair salon and sometimes, there is not enough time or money to do that. That is what I love about Great Clips. For the most part, I can stop in and be seen within 5 minutes like today and get a $13 haircut. You can't beat it. Most of the time, I just need the end of my layers cleaned up and why would I want to spend $60 on a haircut to do that? I have never had any problems with not getting what I wanted. Sometimes, I'll also spend the extra $20-$25 and have them shampoo and blow-dry my hair straight. My hair always looks great when I do that, too. Today, I spent $38 on the cut, shampoo and blow-dry. The blow-dry took alot longer than I wanted today, but Keeyla (sp?) also took the flat-iron to it. Clearly the girl takes pride in her work and my hair looks really great for someone with very coarse, wavy hair. Every once in awhile you can get coupons for an $8 haircut in the mailers. They also give you a free haircut after 11 or 12. I haven't hit that milestone yet but I'll get there. The employees also seem really happy and the girl who did my hair today said alot of them have been there for at least 3 years. She said they love working there and I think it shows with the amount of regulars they get and their positive attitudes.", "type": "review", "business_id": "dxNWxLzBAoFV4MdtztCUFg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "u1KWcbPMvXFEEYkZZ0Yktg", "review_id": "GYz9O3nJuGt70IBlUlXZiw", "stars": 4, "date": "2010-04-17", "text": "we to the amazing Thai bistro on a Friday night. the food was great. i had gluten free seafood curry. very spicy. we had a large party and they were very accommodating. we sat at the bar waiting for our friends and some how they handed out free shots! bonus for my friends that drink. \ni will be going back and enjoying this great place! they do have a gluten free!!!!", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HZWylxuUvP9DZ5U2nFyffQ", "review_id": "uBarwj3YP-ebRwTMeC2-xw", "stars": 5, "date": "2010-04-03", "text": "I am a huge fan of this place. I haven't ventured outside of the teppen tables, so my viewpoint may be limited. The atmosphere is quite loud and lively, but definitely fun. It is great for a nice dinner with a group. The food is simply outstanding. The soup, salad, and chicken are all excellent, but the fried rice is the absolute best. I have never had better fried rice anywhere. After you have enjoyed the main course, get the green tea ice cream. I hate green tea, but for some reason, this ice cream is amazing. \n\nIf you like teppen yaki and don't want to deal with the bland food they serve at Benihana, definitely give this place a shot. You won't be disappointed.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BJUyckLaDyb1SZ1PD1GIZg", "review_id": "UQIbBk5GVgSZwjWl6vwyFw", "stars": 4, "date": "2011-10-08", "text": "Pleasant restaurant with a variety of rooms. Farm fresh food is always better than frozen. Great place to relax and talk with your table mate.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a9J2ezUfTEBp9LEFDhgiRg", "review_id": "jfuuHrlKJlF8rElLYsGgxg", "stars": 4, "date": "2011-03-02", "text": "Today was our first time eating here, so armed with great reviews from other Yelpers, we sampled a bevy of appetizers from the happy hour menu (daily from 4:30-7p) and shared a pasta entree. Of the apps, we had toasted ravioli, a platter of antipasti, and by recommendation from our lovely server, Amber, the stuffed eggplant. The toasted ravioli was delicious-crispy and battered with a crust of parmigiana, melty cheese on the inside. A dip in the flavorful and slightly spicy marinara sauce finished it off. \n\nThe antipasti platter serves about 2 light eaters, but for me and my spouse, it was a nice compliment to the two other shared appetizers. \n\nThe stuffed eggplant was covered inside and out with gooey, cheesy goodness and marinara sauce. This was to be the main portion of my meal while my husband had gorged on the appetizers, but after a taste, he started sneaking bites while I wasn't looking! I added some chili flakes for a little heat, but It was very flavorful. I'm not a huge melted cheese lover and would've preferred a little less cheese, but it was perfect for my husband.\n\nThe restaurant wasn't super busy when we arrived at 6pm, but by the time we left around 8pm, the main dining room and the adjoining small rooms were about 85% filled. The prices were higher than what we normally spend, but we had been given gift cards by my brother and happened to come during happy hour, so it wasn't that bad at all. Our bill came out to about $17 without tip and we didn't order drinks. \n\nYou do have to sit in the bar area to receive the happy hour specials, but we didn't mind. We'll be back!", "type": "review", "business_id": "waOHPeROjKPz-KXqlSsoWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LSf-IajkL99JQBZ3PzXnjQ", "review_id": "ppxreefKiNED_eY_fRAo1A", "stars": 3, "date": "2012-07-29", "text": "I like the idea of Sidebar, but I don't really love the place. The drinks are decent, so I would go there for that- though I just have never found it to be very fun. Once I went in and had an amazing bartender from Sanfrancisco- I really enjoyed that visit, but then the next time I had this bartender guy and he was really uptight and condescending whenever anyone asked him a question. It really bugged me, and it made it a less fun experience. I have never gone back.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "YXQwYMCJvoLccRDqz6FZPA", "stars": 3, "date": "2012-10-30", "text": "Wow, what a blast from the past! I hadn't eaten at a Sizzler since it was popular in '80s, so when we saw that they opened up again where Taco Tote used to be, we had to go and check it out!\n\nWhen we walked in, it was like reliving my childhood, when we went to Sizzler as a special dinner, to gorge on the salad buffet and the unlimited fried shrimp. Seeing that the salad bar itself was $8.99, and that for only a dollar more I could get a half dozen of fried shrimp, I figured I might as well! The shrimp comes with your choice of side: either some incarnation of potato (fries, baked, etc.) or veggie (Such as steamed broccoli). The shrimp looked just how they did in the '80s, pounded then battered and fried. They were decent, nothing too special, but not bad.\n\nThe salad bar has various salad greens, toppings, and dressings to choose from. There's also an area with cold shrimp and halved avocados. I was excited to see that they had such high quality items, but unfortunately the execution was something left to be desired. The shrimp was deheaded, but whole, so if you wanted de-veined shrimp you had to de-vein them on your own. The shrimp was also overcooked, and a bit tough as a result. The avocado was a nice touch, but unfortunately many of them were slightly under ripe, so they tasted a little sponge-like rather than creamy.\n\nThe hot foods section along the corner area of the buffet has items such as buffalo wings, meatballs in marinara sauce, and a taco bar. There are also desserts here, like brownies, bread pudding, and soft serve ice cream with various toppings to choose from. The taco bar was probably the best part of the hot bar. There are various outer shells to choose from (Tostada, hard taco shell, soft tortilla, taco salad bowls), 2 meats (Ground beef and carnitas), and veggies (Such as pico de gallo, jalapenos, guacamole, cheese, lettuce). There's also gooey nacho cheese and refried beans at the counter. The carnitas was probably the best out of all the taco toppings. It was slow cooked, and had a rich, deep smoky flavor. \n\nService was good, drinks were refilled and dirty plates were removed as needed. One thing to note is that you cannot add tip to your receipt since you pay for your meal first, and then sit down, so cash will help for tipping your waiter!", "type": "review", "business_id": "TQNDCD50mkXwySB_qXmrXA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qcXpyzzkQmfn5MPXXe9wWA", "review_id": "tMCpkH6WAINsWfqZwb8Tlg", "stars": 4, "date": "2012-11-03", "text": "I tried out Corleone's today for lunch and I could not believe the size of the lunch. For the money it was a great value. I thought the bread was a little soggy but it was good. The place was crowed but the guy working was working hard. I would definitely go again.", "type": "review", "business_id": "cIAd1K3INw6se9MX7Usi7A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "aNUT2kJqD0h38WbXuGMpKQ", "review_id": "opouR8VhMDWofic-RCTsMw", "stars": 5, "date": "2011-12-15", "text": "I got to stay here for work and had the best time! They have so many pools. I would spend my afternoons in the smaller pools and have the pool all to myself. It was great! They let me send free postcards which was fun, too. My room was beautiful. It was large and had great amenities. \n\nFood was disgusting though. I didn't have access to a car so I was pretty limited to eating hotel food for a week. Everything I ordered was gross and I tried it ALL!\n\nI thought customer service was fine--not great, just adequate.", "type": "review", "business_id": "5AsVHsqADuurv7NqG-RFLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "mEgD2AGWGKD_gs-Jf3Ypew", "review_id": "7LAiM2OEC3Hl3DbEXDgKrw", "stars": 2, "date": "2012-03-03", "text": "Took almost 45 mins for a oil change (they told me 20 mins when I got there) and it cost something like that as well... Slow and expensive, not 2 things I like associated with my lube jobs.", "type": "review", "business_id": "huxYC5ZvUwJdJE3tfhnpIQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "EoTooNBcxu0Hy0-XeZI8aw", "review_id": "4fUpRGenwMO_vmu0sY_35A", "stars": 4, "date": "2009-12-28", "text": "Brand spankin' new...customer service with a smile.\n\nGood selection, good prices, friendly customer service. Bought some stuff to make the house better - garage door opener, some hooks to finally hang that darn 65 x 78 painting up...\n\nNothing at all like Home Depot, either. I found the fixtures for kitchen improvements here to be of higher quality as well.\n\nThumbs up from me...plus, it's so close to the house - not sure if that's a good or a bad thing. Time will tell.", "type": "review", "business_id": "8-OxtKNGZAy9UBiSnNcubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H_JsAwjiGEOr_RlZmwfNsA", "review_id": "pJvIn--GYx2WT5JIRflksw", "stars": 4, "date": "2011-11-06", "text": "The food is really good. I can recommend like 5 dishes that anyone would like. If not, try the soup and salad bar. My favorite dish is the Chesapeake Catch, but their Ultimate Chicken Sandwich and California Club Quesadilla are amazing also. The staff works well together and the managers know the value of loyal customers. The GM was GM of the Year before and he wants to make sure every customer who leaves is happy. The kitchen staff is also great. Keep up the good work!", "type": "review", "business_id": "rRaiIoDbmPt1NzFxL_1vsA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pwil2kkb1mNO6jVsAI84wA", "review_id": "liVW_Bg-7v0vp6j3B1JxCw", "stars": 4, "date": "2010-05-06", "text": "Take the whole family and get a nice table outside. The burgers are good, the fried zucchini is better and the the barbecue chicken is amazing...", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "THr8peJ3dxCXVgPlKjagHA", "review_id": "vJStEy9x9YOwI9oeCxzT0Q", "stars": 4, "date": "2012-12-13", "text": "Let me preface this review by saying that for the past 2 years I have lived in Boston, which has some decent Chinese restaurants, great food, but rude/curt/abrupt service. I had learned to keep my head down, not make eye contact and not ask any questions. Eat as fast as possible and get the hell out before someone starts yelling at you!\n\nSo understandably my guard was up when I entered Mu Shu Asian Grill. However, complete opposite here. Mr Mu Shu welcomed me to his establishment, asked me if I had ever been here before and took the time to explain the stir fry/salad bar station.\n\nI was in the mood for Mu Shu, and a place named Mu Shu must have great Mu Shu, right? Mr MS described to me his version of MS, I heard him say something about a burrito, but I really wasn't paying too much attention as I smugly thought I knew everything there was to know about Mu Shu! Boy was I wrong! When I get it, it's bigger than my forearm. It's packed full of shrimp, veggies and fried rice. Wow, what a great flavour!\n\nYou've heard of Asian fusion? This is Mexasian!", "type": "review", "business_id": "enbTOcl7WNgsjsAtmhvDRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CKqEh7wAUOBw07LXYCQrfw", "review_id": "w6sh4vqLOUKB74wCFaQKCQ", "stars": 5, "date": "2012-10-04", "text": "We went there yesterday a I enjoyed it. The atmosphere was fantastic, because they had a tv, plus they have a lot of pictures of Man V. Food, when Adam Richman came here. The service is good, because they waited for us to order, and were very patient. I ordered the Jewish Slider like Adam did, but I didn't take the challenge. 1 order of Jewish SIiders are 3 sliders. The sliders were awesome. The meat was tender and really juicy. The cheese didn't really make a difference, it just added a little flavor, but the bun soft and chewy, and buttery which tasted like pancakes without syrup, and it was fresh. The potato pancakes put the lid on the jar. The potato pancakes aren't just a creative idea, it was very crunchy on the outside and soft on the inside. There are 3 reasons why this isn't a normal slider. Reason number one is the Potato Pancakes, reason number two is the meat isn't a patty, and grinded beef that made that slider interesting. Reason number three is that the cheese is melted. REALLY melted. I will go again, because the sliders are amazing.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GJl1qIvyQEs501rfw0hDBg", "review_id": "1dQKhJho86iAK4Ows1vWPg", "stars": 4, "date": "2012-05-10", "text": "This is a new neighborhood breakfast joint in a building many think is \"cursed\". The turnover for businesses at this location is high. But I think Oink is going to make it! They were very busy when we were there so it took a little bit to get refills on coffee (need bigger cups) and the food took a couple minutes longer, but no worries. Who I think is the owner was not just standing by and watching everyone else run around like chickens with their heads cut off, they were serving, clearing plates, filling coffee. Love to see that! \n\nThe menu is decent. I'm not a huge breakfast person but there were quite a few items on the menu I was interested in. The funny thing is my hubby and I ended up not ordering any bacon and didn't realize this until after we finished eating! So we definitely will be going back to try the bacon they are known for....jalapeno bacon anyone!", "type": "review", "business_id": "fDZzCjlxaA4OOmnFO-i0vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hOXXu0S4G4wJWv3cE1Tceg", "review_id": "rwy4l81PGlO0t5QU7L2RzA", "stars": 4, "date": "2012-02-20", "text": "This place is great. The Pizzas are single serving or post salad and some of the best Pizza Ive ever had. Salads are good and and service is excellent. \n\nKeep it Simple Stupid\nKISS", "type": "review", "business_id": "yypKLRJxSjR2uNaTS_O6pw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "i_GGKzPs5t31yJE_HTCp-Q", "review_id": "TmoJw79_wE9KtxV5dpx_uQ", "stars": 5, "date": "2011-01-17", "text": "Bison Witches is a bit religious for me. The hearth is in Tucson, but they did a good job of transplanting the same food experience to Tempe. Their filling sandwiches offer a sort of primitive bliss with the roughly-cut thick slices of bread - best tip is to go with the half sandwich/half soup (their half is really a whole) - Their chili is the best thing going...", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TfaTfDdqmc6cf_MAUBJUQQ", "review_id": "zknUr3i_3-okPe16ewXtJA", "stars": 5, "date": "2010-06-30", "text": "Great iced tea. Terrific Roast Beef and mashed potatoes. Love the biscuits. You can't go wrong at Cracker Barrel.", "type": "review", "business_id": "jqbrMBRsByyVBm8OoQ9dWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "c3JbRoLoYj5wi_r-yZdmdA", "review_id": "R_wTpXKH3zkHzrleYGtUUg", "stars": 2, "date": "2012-07-30", "text": "My boyfriend and I were so excited to hear that there was a yogurt place going in. We were even more thrilled to hear that they stay open until 10 in the summer! We are definite night owls so we were more than ready to appreciate the later hours. Unfortunately we've driven by around 9:15 - 9:30 several times now and every time we do they already have the stools and chairs picked up and the couple times we ignored the signs and went in anyway we've felt less than welcome. If you want to close at nine then close at nine! \n\nAlso really frustrated with the lack of water availability. Can't believe they don't offer free cups to quench your thirst. Not worth it. Definitely not somewhere we feel like we can go to detox and chill at the end if the day like we hoped it would be.", "type": "review", "business_id": "7NKBHVMIjnsO2OmcAfsC_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mlBC3pN9GXlUUfQi1qBBZA", "review_id": "bRQQZvDBEBFaLzmQonjCtQ", "stars": 4, "date": "2011-07-23", "text": "If you work in an office and have to dress business casual, NY & Co is your place to shop. Some of their stuff can be a bit plain but more often then not, they have modest, cute, stylish, business casual clothes at an affordable price. I don't think I have ever been bugged by a salesperson when coming to this store which is actually kinda nice. I can't stand salespeople following me around chiming in about how cute something is (see my review on Coach in LV). Lastly, they have a great display of accent jewelry which is my weakness. Everything is always really different and fun so I can't resist and usually walk out with several pieces. The next time you are trying to find a place to shop, try NY & Co. There is something for everybody :)", "type": "review", "business_id": "sSJeLgg3bQTR3vHkkJd9rQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lKAr9jH7rfpN8YuOOZyHDw", "review_id": "Wy83ICVrJnvH_PlqA0TCfQ", "stars": 2, "date": "2011-07-28", "text": "Margaritas were good, tacos were fair (small), guacamole was wonderful. after ten it gets really loud here. They need to have tequila flights.", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mLfjeWUJnNiqHEye3I6qug", "review_id": "aODCfMLUBcm6ROzybl-9vw", "stars": 4, "date": "2009-01-06", "text": "I went to La Boca two night in a row, Sunday/Monday, when I had to be in Tempe. The first night our party of six were enjoying our pizzas when I casually mentioned that we'd ordered one pizza without mushrooms and some had found their way unto it. Within a a couple of minutes the manager was at our table with an apology and an offer to comp a couple of deserts. Geez, it was just an errant mushroom! In fact, the pizza here is very good and they clearly go the extra mile in trying to accommodate their customers.\nI was please enough to return the next night with my wife and share a Margarita pizza (which is very good). Wanting something sweet to finish off our meal, we opted for the chocolate mousse. While it may not have been the ultimate dessert it was quite good and we enjoyed several bites before deciding we'd had enough to satisfy without adding unnecessarily to our growing waistlines. Seeing we'd only eaten a bit, the waitress comped the dessert. We explained we'd been happy with the mousse and were just full but she took it off the bill just the same. \nNow, there are a lot of choices where to eat and a whole lot of pizza joints, but for my money a little extra courtesy goes a long way. Couple that with good food and reasonable prices and La Bocca is sure to see more of me.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "XyaIK2hN3SNMohT5AbKxbg", "review_id": "l9TvJWbvlSXgTychPzX7Yw", "stars": 4, "date": "2010-12-23", "text": "Is it worth the trip for a Chirico and Egg sandwich from Chaka Chaka, heck yes!!!!", "type": "review", "business_id": "DVYTS0ZLO-3ClAhMd99VYA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "U73hI3TqgLEzZ_h0NJKI0A", "stars": 4, "date": "2009-09-21", "text": "being a rather simpleton, i like my salads with lettuce, tomato, and oil and vinegar...my fish simply baked...my veggies raw....\n\nthe ice cream here was very tasty. full of fancy flavors and bits-o-ingredients. but i guess if you want plain ice cream, you go to the supermarket and buy a gallon of store brand. we were cruising the greenbelt at night and saw their sign for \"voted best ice cream\" by the new times, so we decided to hit this place up. it's super cute and modern, but what's so great about this place is the staff. \nour \"server\" was completely into the concept of \"artisan\" ice cream (only in scottsdale can a word like artisan be applied to ice cream...it's not simply \"homemade\"). she was super passionate and lively and gregarious, which i really like...because i know she's serving a product she enjoys herself and also wants others to enjoy. \n\ni had the peach cobbler one and my girl had the basil sorbet. both were very delicious, but at over 6 bucks for 2 small cups, we'll probably have to save our dollars for the supermarket next time. if you have the cash to spare for a snack/dessert, check this place out.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TIZvHaRMMph2udRx3yJ5dw", "review_id": "LK5iJrGc_ahJizoMCiOH1Q", "stars": 5, "date": "2011-06-04", "text": "Wow! This place completely rocks! Very professional, courteous, and very good at what they do - make cars clean again. The price was very reasonable and I will be back again many times over! Thank you, Stewart Detailing! Job well done.", "type": "review", "business_id": "LrJlLdQYdSvdqr25gX4ZjA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tGZPH2vrrxp20oA3fESE1g", "review_id": "7jjswzK5bVu19AjlxTx4bQ", "stars": 1, "date": "2011-04-05", "text": "I got on the internet and looked at the menu and called in the order. I informed Brother's that I had a $3 coupon also and would pick up the perpperoni pizza and sampler and they said it would be 20 minutes. At the register I was charged $12.95 for the $8.95 sampler. I told the cashier that the internet menu had it listed for $8.95. She just smiled and said \"Oh, we get that a lot but we don't have a menu.\" I said, \"but it's on the internet with your address/web page\" and she said, \"yeh, I know we get that a lot but here's our menu\" and she handed me their copy-machine menu which did not even have the sampler listed. I politely told her that they should take the menu off the internet if it's not right. The sampler was 4 pieces each of wings, mushrooms, cheese sticks, zuchinni. The sampler was just like frozen generic small pieces \"out-of-the-freezer-bag\" deep fried. \n \n I live near and our family had hoped to make this our weekly outing for pizza; however, I'll go elsewhere for better food and prices. I also don't like false advertising. \n\nA customer's frustration should be a business owner's learning opportunity to make their business better. They can learn a lot from their customers.", "type": "review", "business_id": "Dim6R6ki5Z_05bk_V1htbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2bBBL7obIuO5Aiz5gSuVJg", "review_id": "dnZElD-j2kg6U6vNlJLzPA", "stars": 5, "date": "2011-11-07", "text": "Awesome awesome awesome!!! Our table all ordered a 5 course tasting and it was amazing!! The flavors pop in your mouth!! Very creative chef. I don't think there was one course we were disappointed in. By the end of the 3 hour dinner we had a total of 21 courses. Each one full of flavor making you want more. The staff was excellent, always there when you need them but not hovering. I would definitely go again. Pricey but so worth it!!", "type": "review", "business_id": "yJMLD-6AggZNdC-GonVBsA"} +{"votes": {"funny": 1, "useful": 2, "cool": 4}, "user_id": "tDqvTbunSbk5pmpd2Ot_Jw", "review_id": "zQ7t9tYGRJJbEIj8jdU7Vw", "stars": 5, "date": "2007-07-09", "text": "If there was a Cantina Laredo in my home (Los Angeles) I would dine here regularly despite the multitude and variety of Mexican dining options. Needless to say, when I'm in Scottsdale, I often find myself drawn to Cantina Laredo. \n\nFrom the moment you're in, to the moment you're out, Cantina Laredo takes excellent care of your tastebuds. The chips are salsa aren't filler but a real treat. Their homemade salsas are worthy of bringing in your own jars to export back home -- some of my favorite salsa anywhere. I believe they have three different kinds. Their tequila options are wonderful allowing for creative margaritas or a fine neat glass of 100% pure agave goodness. (I promise to never use that phrase again, sorry Readers.)\n\nThe entrees aren't just your common taco/burrito fare. Using juicy meats, creative homemade sauces, and interesting pairings, Cantina Laredo professes its love for Mexican food and culture -- reminding diners how lovable these things are.\n\nThe decor and various areas are all quite nice as well. An excellent complement to what always proves to be an excellent meal.\n\n_C$", "type": "review", "business_id": "EGiGWZp_zSqdeftiFQ7MbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mmZk-DnajPfiCDu67CWrKg", "review_id": "-1sIFaleJ_Z-DGBp4jSBXg", "stars": 5, "date": "2012-08-30", "text": "It is a 110 mile round trip for me, passing who knows how many salons along the way, and it is well worth the drive even during rush hour. Ask for Ray if you want an amazing hair experience. You will go home feeling beautiful/handsome.", "type": "review", "business_id": "5WdUZlkiDYLgPL1OertCUw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "ky5-mOk8-9M-NlLr8Jh8rA", "review_id": "BeP1fTHC5MYKbULtJSMpug", "stars": 1, "date": "2011-09-23", "text": "I can't even believe I actually went to this restaurant. My feeling was that if the Tommy Bahama clothing and its wearers were any indication of the dining experience, it was going to be unoriginal and in poor taste. Alas my friend wanted to go there was his birthday lunch so.... Let me be clear that I'm not a food snob at all. Just last week I enjoyed a lunch of Nachos Bell Grande and a bean and cheese burrito at Taco Bell very, very much. That was far superior to this lunch at Tommy Bahama. \n\nThe decor was comfortable and breezy. Everything else - not so much. 1st it's nice that they bring you bread and butter, but a sweetly flavored butter? Why mess with the pure goodness of butter? The glass of lemonade I ordered was sickeningly sweet, and I am a notorious for my sweet tooth. It was undrinkable until I cut it with water. The coconut shrimp also had an overly sweet sauce. So much so that we could each only eat 1 of 6 shrimp. I got the crab bisque which was crazy salty, and in my opinion, contained previously frozen hence rubbery crab meat. \n\nAs it was my friend's birthday, they brought him a complimentary dessert. Very nice. He got the newest one which was some sort of chocolate/caramel-filled cake with oreo crust, chocolate mousse topping, sprinkled with crushed Heath bar. Sounds good, right? Vile, absolutely vile. Overly sweet except for the oreo crust that was saturated in butter. On an update note - it was not the nasty sweet butter they serve with the bread though. \n\nMy final issue was with our young, highly attentive server. He was very sweet and well-intentioned. However I feel that every server in the world needs to stop speaking to customers in the collective. Don't say \"are we enjoying our coconut shrimp?\" or \"are we ready for dessert?\" Unless I've badly misinterpreted our relationship, \"we\" aren't doing anything together. Just a pet peeve - I still tipped him 22% and kept my mouth shut about this odd little quirk. \n\noh and the bill for coconut shrimp appy, quesadilla, cup of crab bisque, lemonade and glass of white wine? $52. for lunch. \n\nTommy Bahama and I just didn't work out at all.", "type": "review", "business_id": "E28ht8IEiO6FZbKktSo0Xw"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "waD2euOMPTnTzQ0thq3H6Q", "review_id": "Cobm9lynyhhFIo3ACeXdrw", "stars": 4, "date": "2009-07-29", "text": "Good food, good service, good price, shitty location.\n\nI had the carne asada plate which came with guac, beans, and corn tortillas. The tortillas were amazing, the carne asada was above average, as were the beans. Unfortunately, as good as it was, it's still Mexican food. Not that I have anything against Mexican food, it just, for the most part, all tastes similar. Nothing really stood out as AMAZING. If I'm in the area (god forbid), I'll def. eat there again, but I'm not going to drive from the E. Valley to go here. Bonus points for having 7-Up in a bottle, made with sugar.", "type": "review", "business_id": "cgNIBHS2mLdbTRiodAT6EQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bEJMn_jbXWHTmDPzPOflRw", "review_id": "y4rwrjev_v-8KNPWE1enUQ", "stars": 4, "date": "2010-09-12", "text": "My husband and i went here for our 2nd wedding anniversary..We wanted to goto some place that was romantic, quiet and served gr8 food & drinks...We were so glad we came to Chritophers..The food & drinks are expenesive but you get what you pay for...The food was gr8..We ordered escagort ( snails ) , seafood and a duck dish...Tasted really good and so did the wine..I will recommend this place for special occassions..You will not be disappointed !!", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "33F7fHr65M-JUAOLxeCMtw", "review_id": "IimIwg0yzMr1LqygsxJ8nw", "stars": 4, "date": "2011-04-28", "text": "Flavor was good and it was very clean. Only complaint is that it melted very fast, but if you eat it there (as I did twice), it's not a problem.", "type": "review", "business_id": "-73hx2hut_2KPcGpCTO5YA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2TX0Gv0k6ZtEfVyImcvnNQ", "review_id": "oO6nC6WCwKkIgqyCKt7Maw", "stars": 3, "date": "2010-11-06", "text": "The food is as good as the Coronado location but the ambiance is seriously lacking. The inside had a funky smell so we opted for 100 degree heat and ate outside instead.\nThe main reason for three instead of four stars is that they screwed up our order. Not a huge offense, you say? Well they put their uber spicy jalepenos on my toddler's quesadilla instead of on my burrito. They replaced it but still... \nBottom line: their food is good- love the carne and pork. We'll eat here again but I'll be double checking to make sure the order is right.", "type": "review", "business_id": "zSzE4rW9FE3fGqiEzZ91Vw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "pWTUeXZKI6oJ78WTET5y2A", "review_id": "_DMaf7C5vIT0xXCGKsLRDg", "stars": 3, "date": "2009-10-07", "text": "Came to Blanco Tacos during Restaurant Week 2009. The guacamole they served with the chips was so yummy! The flan was also delicious. I will come back just to eat the flan! \n\nThe scene was pretty cool. Fun people watching environment.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qa05pUVNapADHZXpHMPMeA", "review_id": "txzDzmWMNe7gNK_gIEZkCg", "stars": 3, "date": "2012-08-28", "text": "I love Harkins Theaters in general, but this one simply doesn't seem to be kept up as well as most. It's a little dingy, the bathrooms aren't typically in great shape, the screens themselves are good sizes and the chairs really are comfy, but the concession stand dosen't seem as clean as it should be and it typically has the movie theater sticky floor going on. Harkins AZ Mills really is A-OK, but there are enough other theater choices that I typically make this one my la", "type": "review", "business_id": "gXkv89nyNlFyrEdblB3MKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lzFLY7LhrwWEonCRdrYdVg", "review_id": "gVf9VqVVK7BM5HNTcDbakg", "stars": 4, "date": "2010-07-28", "text": "Got a pretty decent HAND car wash for $15.00. They asked about extras but weren't pushy about it. After I paid I noticed their gas prices. They were about $0.20 less than the going rate in the area. The frosting on the cake was that I got a $2.00 senior discount.", "type": "review", "business_id": "wKXHOkQropo-YG60OvN6Uw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vUPDYpf-7N_Shy5EZrKv_g", "review_id": "2JvmyrkXq9kPMTZUT1M2lw", "stars": 5, "date": "2012-08-18", "text": "Steve is one of the few shops that can still do a decent flat top. He is in my neighborhood, so it is great for me - convenient. Steve is personable and the shop is inviting. I love the hot towel and back-vibrator massage. I have been going to Steve for years, great service product!", "type": "review", "business_id": "LBCu6fZIcsv5PDFXOOEodw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "gdzmrSqphtyaOuSVVJzZEA", "review_id": "fBkhISo4CsyCuHOswKjpZg", "stars": 2, "date": "2010-11-13", "text": "waitress wasn't good with service.\nmongolian beef dish sucks.\nfish is just ok.\nrock bottom is usually pretty good, but this one in scottsdale is not that great.", "type": "review", "business_id": "n4mfUCDXHsg0GH50HzJpug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UMq89piQvpAVFVfiGc6ndA", "review_id": "5gvYyhnZfXGV4sG6v0B98w", "stars": 5, "date": "2010-02-12", "text": "I love the Ranch Market! The atmosphere is great, the produce prices are very reasonable, and the civiche is excellent! I never go down the center isles, as they appear to be filled with typical grocery store packaged foods What makes Ranch Market special are the fantastic offerings all around the center isles. \n\nHere is my advice: First, make your way to the fresca bar to get a fresh fruit drink, it's just past the bakery at the front door. After you pick up your favorite fruit drink head over to the grill for some carne asada street tacos, but only order two because you'll want to save room for the seafood bar where you will find a deliciouso shrimp ceviche at a very reasonably price. I usually order a half pound of the regular shrimp civiche and a half pound of the civiche ensalda; eat a little at the bar on a tostada and take the rest home for lunch the next day. Yummy! After you have filled your belly with the tasty carne asada and civiche, stop by the tortilla factory to get some fresh tortillas to go and don't forget to hit up the bakery for hot cream filled churro for desert.", "type": "review", "business_id": "VXIkI9_EbDbYHeO9IzKjJg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "64thrreKpvpjTVLszJd_qA", "review_id": "1x9J3i-p-bxko2L6AVbOew", "stars": 5, "date": "2012-03-13", "text": "Since the Gilbert location has closed. The Tempe location has had more things to offer. The staff has really stepped it up on customer service. They do there best on helping you find whatever it is your looking for.", "type": "review", "business_id": "kIO1aDo0-80SW18CsdTJ9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "sz5Y8ChwPI7jJRaHc-1cJA", "stars": 3, "date": "2011-05-18", "text": "This club has great bands. I saw 68 Guns and Metal Elvis here. Also at the Metal Elvis show was a Van Halen tribute band called VH Too. The music is top notch and it is usually not too crowded so you can go right up to the stage. However, there are only a few tables, which is annoying if you need a place to put your drink or coat or something. I also wish the ceilings were a bit higher. Would be better if they could combine an indoor/outdoor area with the stage. Overall the building seems cramped, small and old. The prices are reasonable though. The location is kind of strange however. We took a cab there but when we wanted to leave we couldn't get one to come pick us up despite the staff saying they called one. Finally we walked to a gas station and called from there. This reminds me too much of Club Red. Great bands, crappy club. I hope that someone opens a brand new club for bands of this caliber. Or else I will need to open one myself.", "type": "review", "business_id": "f_leeIRar8uNCkk5sAmHRQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "e9HWnHUYlt9758oileaISw", "review_id": "ml4fHYRxcHH9Ul_93lEA9w", "stars": 4, "date": "2010-09-19", "text": "Wow! This newly opened little food shop in the Mekong Plaza is fantastic. Very authentic Hue Food. Although I'm not a Vietnamese, I have been to Hue in Vietnam and had their famous Bun Bo Hue. Must say that this store was very close to the authentic Bun Bo Hue. The pork hock and the other meat used was very tender, the noodle was perfect. The broth is lightly flavored so that you can use the Shrimp Paste for those who like it a bit more salty. The veggie was very generous.\n\nThe Banh Beo was another neat Hue snack. It's a very thin rice cake snack which is steamed. You dip it in Fish Sauce. It was very nice and moist.\n\nTheir menu is pretty limited as they only have about 6-7 items, but they are definitely featuring the best of hue to serve. Very impressed to see. \nThere was a good crowd too, so lot's of people have been dying for some nice Hue food.\n\nOnly thing to note is they were a bit disorganized the opening weekend as their register was not even working, and the service was a bit slow. I'm sure after a few weeks, this place will be running smoothly.", "type": "review", "business_id": "tpJjVxyor9OOQfYgvAtdRA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e9HWnHUYlt9758oileaISw", "review_id": "4VIFaT_UzgvQ1CICcHBxWA", "stars": 3, "date": "2010-10-08", "text": "Not a big fan of the Boba Tea House by Lee Lee. I like their decor, very hip. However, their milk tea mix was not that great. It felt like basic sugared water. I've had better ones over in Lollicup or Quickly in LA. It's a pretty busy location as it is next to Lee Lee's, but unfortunately they definitely aren't quite there yet with the competition.", "type": "review", "business_id": "HhNY3X0kyrN5682La6N6Cg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "jXp0eFDh_LNO8JfcGlV3pw", "review_id": "UcnkWyPd2MmLSjtmk-W0Kw", "stars": 4, "date": "2011-02-12", "text": "Go for the food and you won't be disappointed, great middle eastern dishes served up nice and generously whether you get it to go or for dining in. I went here and ate in and there was initially no one in the restaurant but me and then it quickly filled up with people. So I know that this is a neighborhood spot. The gyros and tzatziki sauce are very good but so is the hummus, falafel, kibbi and shwarma.", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "jK5mzt25I1NKnjyK_fJeJQ", "stars": 2, "date": "2011-05-07", "text": "Meh.\n\nMy standards for quality froyo are high since I frequent Yogurtology (Shea and Scottsdale), Yogurtland (I'm the Duke in Scottsdale), and sometimes I go to Mojo in Tempe. \n\nThis place has \"ok\" flavors. I had the original tart, that was quite a bit tart. The toppings are ok. My friend really liked the fact that they have banana chips, but that's because we usually eat our froyo at home and we were far away from home, and she didn't have to use her personal stash. \n\nSince it made her happy, I gave this place an extra star. I'm cool like that.\n\nHmm...let's see. They have a snow machine. Not really sure what this is for. It seems out of place. \n\nIt's far from my house, and not really worth my drive. I guess if it was by my house, and I had no other options, I'd frequent this business. \n\nThis is the one time, and one time only that I will say this.....Thank God, I live in Old Town Scottsdale.", "type": "review", "business_id": "iBYvoQ4lj35DYL24fYcmGQ"} +{"votes": {"funny": 5, "useful": 10, "cool": 9}, "user_id": "uTc1puvwUpFYryEHo4DNaA", "review_id": "Yk1qYlKFKyNFZaPDZ2ov3A", "stars": 5, "date": "2010-01-05", "text": "Wow... i don't think I've ever been in a more narrow place.. ever! \n\nbut it was just perfect in ever way!!! \n\nThey have tables along one side and a bar with tall stools along the other side... you can watch them make your food.... \nits like the food network... but live and you can smell it :) \n\nmy coworker and i sat right in front of the oven... every time they would open the oven i would only get hungrier!! :) we could see all the fresh and yummy ingredients!! \n\ni had the Reuben (Pastrami, corned beef, homemade sauerkraut and Swiss with a side of 1000 island dressing) \n\nWOW... it was amazing... for their sauerkraut they use red cabbage... it was more sweet than bitter... and the crust of the pasty was flaky and buttery... so delicious!! and i honestly forgot how much i love corned beef! over all it was very rich... but great to share.... \n\nMy Coworker had the Italian.. (pepperoni, salami, ham, mozzarella, basil, tomatoes and marinara sauce) it looked great... he loved it... you could see the fresh basil and tomatoes... it smelled divine \n\nwe didn't speak for a full 20 minutes... just barley loud enough mmmmmmmms and o-m-g this is amazing... said quietly to ourselves.... \n\nall of the employees were so outgoing and laid back at the same time... just really cool guys... i loved the atmosphere and the attitudes that filled this place... \n\ni cannot wait to come back!", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E-ZCs-ZmPoann2QEA-Y9vw", "review_id": "BrHSmKn7ErcpI2F_EvD6Vg", "stars": 4, "date": "2012-05-05", "text": "Always fresh and friendly.\n\nFood is priced just a skosh above the actual value but, the place is clean, people are nice.\n\nWorth trying? Yes!\n\nLunchtime sushi is great. Teriyaki bowl is good. \n\nBrown rice extra...booo. Overall worth the very close the the $9.00 you will spend on lunch at Yogis", "type": "review", "business_id": "dGp5V3aG5qw2RJI8tC3tBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "otQccYbeW2y35AHjsX2k4A", "review_id": "4HGEigB9foiXvaC5ggUsYg", "stars": 4, "date": "2012-12-31", "text": "I was in phoenix on business and im allways looking for some good eats , I found this place with the help of yelp and food network app on my i phone . \nI originally planned on getting the waffle that everyone raved about , but ended up getting the Special Andouille sausage scramble ( spicy!) but very good . Hash Browns were good and i also liked the sour dough toast . \nWhen i go back im definatly gonna try the waffle \nBe ready to wait for a seat , it doesnt seem very big . \nSingles get seated faster because they have counter style seating", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "Kxq8CUBtcaTvJL3xdCuPwQ", "review_id": "98jEdLrIdiWm6LlPrN8gKQ", "stars": 5, "date": "2009-09-23", "text": "Of the 3 sites - this is the Kindergarten.\n\nMy daughter is attending here and I simply love it. She's five and is repeating kindergarten. She attended kindergarten last year early at the encouragement of her preschool teachers who thought she was bored in their classes. We are having her repeat because she's a little young for first grade, but this isn't an issue because the curriculum rolls every two years for that very reason. \n\nIn her first year - she learned to read, write, do simple math, know all her sign language letters, and has more Spanish knowledge than I do. this year they will build upon all of that and take her further.\n\nThe staff is great and care a lot about the kids. And when issues arise they work with the parents to get them solved both at school and at home.\n\nIt's pricey. But so very worth it.", "type": "review", "business_id": "LzvmdiJFMGM1Z25S4Sm3bw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "y4JCKsEm0KlwtmHpZhbA4A", "review_id": "uQGpCZ7D5NgFbYDzWXzYaw", "stars": 3, "date": "2006-08-23", "text": "If you're heading to a show at the Scottsdale Center For The Performing Arts, this is your best convenient bet for dinner (if you like Indian food). It's average but can probably satisfy your curry craving.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "mAdp_FFkbW4tWifttdT5kQ", "stars": 4, "date": "2010-11-02", "text": "Ah, good 'ol standby Village Inn, where else could I, a quasi-nut case get great food at such a late hour? \n\nThe manager misses us when we are not there to envelope the place with our gloominess. The service is really great and the food is always good. This is a much better choice over Denny's because they are cheap and the food portions are better than Denny's. Good place to wander over to after coming out of Shirt's 'n' Things.\n\nI recommend the pie. It's free on Wednesdays", "type": "review", "business_id": "dbh72sNyNeHUgJqQye9Vbg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "5ey8y2ozI-0JepcPgq59PA", "stars": 5, "date": "2010-02-10", "text": "LOVE LOVE LOVE this place! Had the buttermilk fried chicken with the mashed sweet potatoes and asparagus and it is to die for. Comfort food for sure. Not too crazy about their brunch menu because you must order off of that and not the regular menu. Their guacamole and warm chips are also a yummy must! This is a great place to take out of town guests because there is nothing like it anywhere else.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kEmpzMZZ424ToaT9fBf2Zg", "review_id": "Np4PFQm2vpE-YmJwS25jcg", "stars": 4, "date": "2012-05-16", "text": "My wife and I had visited this restaurant a few days ago with my father in law. He is in from Chicago and watched a show on this place. At his insistance we traveled there and ate lunch.\n\nI have to say I was pleasantly surprised. The food was amazing as was the staff. The location left a little to be desired but hey, some of the best places are in the most odd locations.\n\nOne thing that separated them from the rest was the ability to try the food before you buy it. Let them know you are new and they will gladly let you try samples of there main dishes.\n\nOverall a great time and great food!", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 3}, "user_id": "_L2cdicSee0N72-uilgHyg", "review_id": "kpKc8UFI4dHjsVzPKarx2A", "stars": 3, "date": "2008-03-12", "text": "Just returned from the Phoenix area and so my friend insisted we check this place out. Well basically the place serves an alcoholic versions of \"Slurpees\" in a variety of flavors. If you've been to Las Vegas it's the same as those slushy alcoholic drinks but made in a small Arizona-sized portions.\n\nI was ok hanging out on the patio but I don't think I would trek here as my destination. The prices were ok as well as the scene. In fact we saw a table of 8 people apparently just walk out without paying their bill so we watched half of the staff burst out the door running in different directions trying to apprehend the suspects. Weird huh?", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7GPWvigPED4hwy0tJqN64Q", "review_id": "hAMC__CBKQ_hEBwCHM3yxA", "stars": 5, "date": "2012-05-26", "text": "Absolutely sensational food. We had the evening buffett. I will be driving 40min one way to eat here again. Wow I just really enjoyed my meal.", "type": "review", "business_id": "rbeBreN9KOWipTUQsmiQ9g"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "7Ps9NObKdJpnTQXL9JqvGQ", "stars": 4, "date": "2011-05-03", "text": "How can I not show yelp love for the original fro yo shop that kept my addiction fulfilled in the early days of the fro yo phenomenon? Yes, that is what Golden Spoon is to me. \n\nWhen I first moved to Phoenix from college, I was coming from an area that was overloaded with frozen yogurt shops for the college girls who shared my love of the frozen treat. Unfortunately, Phoenix hadn't quite yet jumped on the bandwagon and so the only choice was Golden Spoon. To make matters worse, the only locations were north on Shea or South in Awatukee. So, since I was living in Old Town, the Shea location was typically my choice. \n\nI can say that I added several miles on my car very willingly to treat my taste buds to Golden Spoon. Yes, it was the closest shop to me but it's also creamy and completely delicious. The frozen yogurt is served by staff and comes in different sizes. You can choose from multiple toppings and it's just your \"old fashioned\" frozen yogurt shop. I'm using old fashioned very loosely in this sense, since frozen yogurt is anything but old fashioned, but with the self-serf trend, Golden Spoon is \"old fashioned\" compared to that. \n\nI don't visit Golden Spoon as often as I'd like anymore because it is still a bit of a drive, but anytime I'm in the area, I know just exactly where to stop for a sweet frozen treat!", "type": "review", "business_id": "T35GMi7R4XtJ84W0Y_nDAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DowPyTFtqen32BuOmzuBXg", "review_id": "RZz-6NxFntEwlbNlg5OD2w", "stars": 5, "date": "2011-09-11", "text": "I eat here frequently as I stay at the adjoining Hilton when I'm in town, and the breakfast vouchers are generous. The steak and eggs ($15) features a good cut of meat (I think it's a flank steak), 2 eggs anyway you want them, with corn salsa and toast and potatoes. The servers are always amenable to allowing me to change out the sides for lots of fruit. I love the mustard available at the table, the fact that they have Chilulah hot sauce on hand, and will bring out some salsa at no extra cost. The staff are pretty attentive. I call ahead to avoid having to wait in the breakfast rush. I have also had an omelet which was substantial in size and quite tasty, with unlimited ingredients for about $12.", "type": "review", "business_id": "7LGjM8HKJTwqfYU3C7N_0w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WRxE6GQbYSNJqLNaZ46Hsg", "review_id": "ycya-AuFZ9iLozjCvEIwWA", "stars": 1, "date": "2012-10-03", "text": "My office moved to the area so I was driving around and saw the sign \" Best Sandwich....\" Um, no. If you want, I can come in there and show you how to cook a Chicken Cheese steak. First, don't wrap it up and let the sandwich sweat and make the bun soft and chewy. Second, put some meat on there. It was 50% bun. It should be toasted and crunchy. And price, a 12\" chicken cheese chips and drink was $13..are you kidding me. For that price, I was hoping for the best I ever had. Change it up Capriottis or the word will get out and it will all be over in this very tough market.", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sPEFql7fLp0oouFxnooGpQ", "review_id": "WVzANE3yU6Nna-K7kpvw0w", "stars": 5, "date": "2011-11-04", "text": "I'm a big fan of Silver Mine. I have been for a long time. In fact, I would venture to say that this is my favorite sub place. Ever. I can't quite pinpoint what is so appealing about it to me. I do know that it was a dangerous decision to decide to live within a mile of this shop. The employees are super friendly, the restaurant itself is clean, the food is cheap and oh-so-good. \n\nPersonally, I recommend the Pikes Peak or Bust which is a veggie cheese sandwich. I love it and have turned into the type of person that gets the same thing every single time...yikes! \n\nP.S...They also deliver until the wee hours of the morning and it doesn't get much better than a tasty sub when you have been out and about in Scottsdale on a Saturday night :)", "type": "review", "business_id": "f9xITzdfPbqQUoBxmSNymQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mxViYcGg-RerE7_qr8aKuw", "review_id": "9lk-5ImZZz6Q8EIcmRvzig", "stars": 1, "date": "2012-09-06", "text": "Cummings took over the company that we originally used, and since they have taken over we have had nothing but problems.\n\nI haven't seen a single bug in years in my house and as soon as we started using Cummings we've found a bug almost every single day and not just 'bugs' but cockroaches. I called Cummings to ask them about why this was happening and the receptionist was extremely rude saying they didn't do anything wrong. I would NEVER recommend this company to anyone. \n\nNeedless to say I will be finding a new pest control company today.", "type": "review", "business_id": "07UqHgBkJ4Kach2sVT2FdQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "oS5RnCDQxNS85NbnqvPXzw", "review_id": "BYB87k4Xz_uU09JA7bq97w", "stars": 5, "date": "2010-01-03", "text": "Andrea is absolutely wonderful. She's pet-sit for me several times over the past several years and I've never had a single issue. On her first visit she stopped by to meet the animals and go over details with me. Now I just call her to let her know the days I'll be away and she arrives without any problems. \n\nShe's very responsible and trustworthy - her copy of my house key broke off in the lock and she called me right away and we figured out a solution. She even came by on a day she didn't have to in order to get it fixed - all of this while I was gone. On another occasion my travel plans changed suddenly and she was able to continue watching my animals. \n\nI highly recommend Andrea as a professional house-sitter. She can't be beat.", "type": "review", "business_id": "CbqO2LA7PWp4kbuZBPEa_w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "k5Qp3va9jlWVOuXY_pJDLQ", "review_id": "iAMyylgz85tvjOjYQXPa6w", "stars": 4, "date": "2012-05-26", "text": "Beer is almost a 4, food is a 3, service was a 4.5. + Check in deal makes it a 5. Add that up and divide by the hungry fellow and you get a 4. \n\nI got a pretzel and an oatmeal stout pulled pork burger. Forget the pretzel, it's a essentially a utensil to enjoy their amazing sauces. Even if you don't like pretzels or the sauce, it makes for a great palate cleanser between beers. The burger was nothing spectacular. I don't know where the oatmeal stout in the sauce, but it might have been in there. \n\nBest part of the trip was getting a got a complete education beer mixology. WHAT PEOPLE MIX BEERS! I learned about the Stumbler and the Snake bite; ask and you shall receive. \n\nSampler note: Make sure to bring another mouth to finish a sampler, unless you plan to taxi and walk home. \nBeer Recommendations:\nLady friend who hates beer: Snake Bite\nHop Head: Pale\nComplex Beer Drinker: Stumbler or MonkeyShine\n\nPilsner. light and amazing wheat finish, I can drink this all day\nBlonde ok little citrus, Pilsner was better\nPale. Light with dry bitter finish, not for average drinker \nRed. Simple hoppy red \nBrown. a bit darker crispy red\nOatmeal. Not smooth enough for a dark oatmeal, surprisingly a bit hoppy \nOld Monkeyshines. Simply intriguing\n\n If you are looking for a clean cut safe beer place with decent food and some beer geeks, Nimbus is your place.", "type": "review", "business_id": "MLAnvEcvDfOWELHUN_0xEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "koTB0T-WJWKmu9YS56GxVA", "review_id": "xVJYZX0aZki4gp5zWd5VIw", "stars": 5, "date": "2012-01-07", "text": "If you are a tea drinker, you have to stop by! The variety seems endless as you read over the menu so it really comes down to which tea fits your particular mood at that moment (mine right now is the \"cookie monster\" which is awesome!)", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "JsDEng5uMkoUwwVYvD15oQ", "stars": 4, "date": "2012-05-24", "text": "I like harkins. This isn't as good as some of their newer ones, but it's still good. Seats were comfortable, sound system was OK, screen was a tad small (but maybe I'm getting spoiled). Staff seemed friendly. It was a good experience.\n\nLast time we were here we did the IMAX, and it is a great IMAX.", "type": "review", "business_id": "gXkv89nyNlFyrEdblB3MKw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "TiXFnVfDWM1N8w6TMtE_pQ", "review_id": "8Lut0gtgnap27ShxDO3mbw", "stars": 1, "date": "2012-11-27", "text": "For the past three months I've been receiving unsolicited spam text messages from these clowns, so regardless of how nice a place this might be, I'll never stay with them or any other affiliated property for that reason alone. I've complained to the hotel (I was blown off), blocked them from my cell phone account, and filed a complaint with the feds. So...since the hotel continues to find it appropriate to light up my cell phone at 3 am with spam texts, I hereby award them a generous one-star rating.", "type": "review", "business_id": "8x9Mzb7gX6SEHQIlSDpU8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4HA7OCSUWYHgFBsyQXkYOw", "review_id": "sYr1di9nrjJ516O3AMz9LQ", "stars": 5, "date": "2012-05-22", "text": "I love this PHO and spring rolls, and for the friendly and fast service plus it's cheap! Oh it's truly a must try place.", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "QJ0KJ1pIieCdeyMPdKWbww", "stars": 3, "date": "2009-08-06", "text": "My wife raved about Delux. She said this was the best burger she's had in the area. I finally went with her and by no means was overwhelmed. The burger was fine, but not the BEST I've ever had. \nThe burger was not much better than something you might get at Chilis, Red Robin Cheeburger, Cheeburger etc (my opinion). I think I actually would prefer a burger from these places over Delux.\n\nMaybe my expectations for this place and burger were set too high and I was disappointed with the final product.\n\nPros:\nThe sweet potato fries and dipping sauce was very good. The service was excellent.\n\nCons:\nLimited seating and basically rubbing shoulders with the person next to you because you are packed in so tight. T the lighting in the bathroom is very dark. I'm shocked techno wasn't being played when I walked in. I didn't like the trendy nightclub feel of this place.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bKKVpwp1ERdWUl4lqc8ChA", "review_id": "sekntwm3twVFifAPNBbJPQ", "stars": 2, "date": "2011-09-10", "text": "Had dinner there the other day. Again - I love the design and atmosphere. Service was good but the food... not worth the $$$ they are asking for. Starting with the kids option - I ordered the pasta with marinara sauce which the server told me will have short noodles for easy pick up by a small toddler, it was made of long wide noddle, even after cutting it was not fit for a child. I ordered the grilled cheese which was okay, really not tasty as it should be. \nMy friend and I shared the rock shrimp which was awful, tasteless and the shrimp was not cleaned through so we had some crunchy sand like experience. Then we shared the corn flat bread which looked and tasted like airport food. \nWe decided to leave and got our check - for what we got paying that much was a big disappointment. They didn't even take the kid pasta dish off... $5 people... really? \nI will not go back unless it is for drinks only. The two stars rating is for design, location and an okay service. Food deserve ONE.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "1_zj7B1bRgE7dC6tywUcTQ", "review_id": "lzSjJafXh1eGE0yaYJQkuw", "stars": 5, "date": "2012-03-12", "text": "The waiter got the drink wrong: \"up\" means served strained without ice, not on the rocks, but I was happy about the mistake, The Salmon melted in my mouth and the bread pudding made me fat for hours, but was so worth it. Great atmosphere and none of our plates were empty when taken away. I would definitely go back. Good service, great food, fun atmosphere. Great flexible hours on a Sunday. GO !", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "yyWWvQcm1xi3HjMFtlM7HQ", "stars": 3, "date": "2012-09-19", "text": "If you go prepared and early, you can be in and out within an hour. If your not 100% sure what you need, go online and check BEFORE you go. Save yourself the time and hassle of making that second trip. Not bad overall.", "type": "review", "business_id": "NM2j6Y5NEyAseOi2sKzwGg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "02DZtjEKdg9BcDePaDpYLw", "stars": 5, "date": "2012-02-18", "text": "We tried the caviar before our appetizers this time, a choice between two types - we picked the Osetra. Caviar is served with mini toasts, minced shallot, minced hard boiled egg white, minced hard boiled egg yolk, capers, creme fraiche, and I'm sure I'm forgetting other items served with it. What a treat. \n\nAs usual, we enjoyed chopped salad, fillets, scalloped potatoes, asparagus, espresso, butter cake, and a fantastic Cabernet.\n\nAnother A++ experience at Mastro's!!!!!", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "318bjHL6yRQIo4hy4DzRPw", "review_id": "VSvsXXdJZkyQ8pbUJtrUbw", "stars": 4, "date": "2009-07-22", "text": "Possibly the best Pho soup I have ever had! I can't believe I ate the whole thing! Well...yes I can, actually. \n\nWhat clinched it for me was that I ordered it To Go, which is almost never a good idea when it comes to the pho (do not attempt to assemble at your desk! I repeat! Do NOT assemble at your desk!). But everything was securely packaged and well-presented. Plenty of everything (noodles, meat, herbs, sauce, jalapenos, etc) and oh so tasty. \n\nI've got my sights set on the BBQ Pork & Rice noodle bowls for my next visit, which will be soon. \n\nGo get your pho on!", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "-Be0UUGYuiDJVAM_YqeQuA", "stars": 4, "date": "2011-02-25", "text": "Since Im big into breakfast foods, Im always on the look out for a new place.. and whadda ya know. .I found \"The Place\" How convieeeeent.. \n\nI read the reviews and when asking a few people on Facebook about it, I heard nothing good good responses, so why not give it a shot. I heard that you have to be early or it gets insane. We showed up about 9AM and waited for maybe 5min. Not too bad. \n\nThe menu looked incredible and as I watched the servers take food to the tables, I could see that the amounts of food give were enormous. I couldn't wait. Checking the reviews on Yelp, I ordered a chorizo omelet with avocado, and all the fixens. I thought I'd love it, but I think I was more overwhelmed with spice than anything. and I love spicy food.. what gives? \n\nThe second time we all went, we got there at 8AM and sat right away.. this time I was told to order biscuits and gravy.. Damn were they good. I got an order of those along with a huge pancake. Here's what I loved about their pancakes.. they tasted home cooked. Like when your mom takes out the old griddle that still has last weeks charred food on it, yet still cooks on it, and it has that home yummy taste? Yep.. that's their pancakes. Downed that with some iced tea and it was one awesome breakfast. \n\nIve been here three times now in two months... I think Im hooked.", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gjigz7a2hA5_XJeIxiwzTQ", "review_id": "LBXlcAhRuEQOUzKczTWxRQ", "stars": 4, "date": "2011-06-13", "text": "If I had a higher salary, I would shop here. I love this store, however the only reason I come here is if I am looking for something you can't get at a large grocery chain like a Fry's Marketplace.\n\nThey have a great wine selection, fine imported cheeses and the pastry counter makes your mouth water. When they are having a sale on steak I always buy it here.", "type": "review", "business_id": "nDHyino_t7O94ZzRHGUApw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "NvDR3SPVPXrDB_dbKuGoWA", "review_id": "kU396jnL_0P7bT9vxIjU3A", "stars": 3, "date": "2011-03-04", "text": "I created a monster when I brought my family to Chipotle for the first time many years ago. I am constantly taking one for \"the team\" when I am dragged here by my wife and one of my sons. \n\nI usually get the carnitas tacos with the salsa that has the little tomatoes, onions and cilantro. I even pony up an extra $1.80 for the guacamole. I just wish there was the option of adding tomatoes to your taco without the onions and cilantro. How can you eat a taco without tomatoes and guacamole?", "type": "review", "business_id": "UCjtaUCtJPbTUouHtQURvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "33vUIil_GCaT92aUaZhRXA", "review_id": "QjsNRYFSkHnrdcXaE3pjeQ", "stars": 3, "date": "2010-11-29", "text": "After a movie at AMC, my mom, dad, aunt & I decided to have an early dinner here. I have been here a few times in the past but it's been a good 3-4 years since my last visit. I forgot that they have paper on the table so you can doodle on it. That's always fun. Our server was Dan & he was really friendly.\n\nFor starters we ordered the calamari, by we I mean my mom because she orders calamari whenever we go out. It was good & so was the dipping sauce. Their rosemary bread is tasty too, especially with a lil olive oil. My dad ordered red wine (not sure which 1) & I ordered the ultimate leaning bellini. Dad enjoyed his wine, had 3 glasses & I loved my cocktail, so yummy! For our entrees: my aunt-shrimp portifino, dad-aged beef tenderloin spiedini, mom-originally wanted lasagna but they were out for the next hour, ugh, so she settled for chicken scaloppine & myself-lobster ravioli. My aunt loved hers, dad liked his, mom didn't care for hers & kept eating off of our plates & I liked mine as well. \n\nNot sure how authentic their Italian is, but hey we overall enjoyed our dinner & would definitely return!", "type": "review", "business_id": "UexMw8s7B1J-RtFOQtCCsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "OF4cqiyDIFR0HQ9W6JFHDA", "stars": 4, "date": "2008-03-22", "text": "yes I agree! Fellow NY-er here says this restaurant has some of the best NY pizza in town! They also catered my brother's rehearsal dinner and all the food was great. ( sausage and peppers- yummy!)\n\nUpdate-6/25/11 - Walked in last night to catch Steve Benson spinning the CD's and drawing caricatures-hello? Not missing that gig. Me- \"Wow you remodeled the place\" LIz- the wonderful, superstar waitress- \"Yeah, nine years ago\" -hahahaahahah! PWEEWWT!!!! I guess I have been eating mostly take out or catering from them over the last few years. LOL! The place looks beautiful and the food is outstanding. The owner is from Smithtown, NY and I love her and this place. Manga!\n\nPS- Hello did I mention Steve Benson was there?- Again did I mention Steve Benson does first Friday's there? You can get a caricature done by none other than Steve Benson. Oops, I'm sorry did I mention Steve Benson is there once a month on Fridays Dj'-ing and drawing -(D and D-lol) Being politically motivated/involved and an executive member of AEA I was in heaven! I love my teacher caricature! Check it out. Fun times!", "type": "review", "business_id": "a9Wk44qJLWoJQT-_H8MB-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "C8MhrBVAHN_zeQpZLmgBag", "review_id": "q2_Zxpd7g8Hv10E3j9Os2Q", "stars": 5, "date": "2012-04-18", "text": "Lolo's is one of my favorite places to eat in the valley. Their dining room is very small and sometimes there's a long wait at the door but their staff is always super friendly and there for you if you need anything.\n\nThings I've tried there:\n\nLoLo's special which is 3 piece of chicken with 2 waffles, Stupid fries, side of potatoes smothered, Chyna's honey hots (which are their hotwings), Ivan's chorizo and eggs, and their banana cream pudding.\n\nTheir chicken is perfectly cooked. Nice, crunchy, juicy, and very flavorful. Their waffles are fantastic as well, but my all time favorite has got to be their Stupid Fries. It's a basket of freshly cooked french fries smothered in gravy with bits of bell peppers, onions, and chunks of their fried chicken. I have no idea how they do it but even though their fries are smothered, it stays extra crispy under all that sauce. That's what makes it so darn delicious. It's definitely a meal in itself. Their banana cream pudding is so large you guys can share it. Banana cream anything is one of my favorites so of course I would say that it was amazing!!\n\nTheir koolaide are awesome as well. You can't come here and not have their koolaide. I love their blue but I sometime switch it up to red. My fiance and I have tried their Scottsdale location as well but I feel that the cook at the Phoenix location (which is the original) has got it down packed. My food always arrive and taste just as good as the last time as to their Scottsdale location, the food doesn't taste the same to me. Maybe I'm just trippin' but that's how I feel. \n\nOverall, this place is pretty awesome. I can't wait for them to finish their expansion.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "k5Qp3va9jlWVOuXY_pJDLQ", "review_id": "Tpe6SQ8KxpwL5wjAQJ0QQA", "stars": 4, "date": "2011-12-01", "text": "The rumors are true, this place was an awesome continental breakfast. It's not the usual Costco Danish + some small cereal boxes. They had 4 hot buffet trays with eggs, sausages, potatoes, several coffee flavors and a waffle maker with all the condiments and more!\n\nThe service was quite good and the rooms were clean and not cheap looking. My family booked it the night before and we got a surprisingly fair price. Its right next to the Glendale Stadium stores, so be wary when the Cardinals are playing at home. The location is ideal for Glendale and downtown trips. \n\nStop by for an superb breakfast on a budget to start a fun day in Phoenix.", "type": "review", "business_id": "y_GScq9tMmspo0UA4RPjPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pMM6od8ZfgtyRfvEkOfgNQ", "review_id": "c_PmezFGd_VxXwM6978q4g", "stars": 5, "date": "2012-04-08", "text": "That's Amore is awesome! I'm glad to see that a nice, clean and friendly local place is being supported and recognized. It deserves the five star ratings- the gelato tastes fresh and you really experience all of the flavor. It's a nice place to ride your bike to and get a refreshing treat when it gets hot.", "type": "review", "business_id": "CKjcewWeWvdJ7TzOQbZOIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SrbrETd68iNaYscH6jjgRg", "review_id": "niOH6LV3MNRAnr-mJqLldw", "stars": 2, "date": "2012-04-21", "text": "Not impressed. Tried them for the first time ordering takeout. Quick delivery, but the pizza and garlic knots were not cooked completely. Raw dough was not very appetizing. I called the manager to let them know, he offered to give me credit, but a better solution would have been to cook another pizza and deliver it again. Not sure if we'll order from them again.", "type": "review", "business_id": "l6EcX0blOzMqHWSdTHXLLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ODyaekriMPJ4Pk8TcX5g2g", "review_id": "lWYFNLeYniWi9XxrBVPTjg", "stars": 5, "date": "2012-01-02", "text": "When I met some friends for dinner at this restaurant at the end of October, I liked it so much that I made a mental note to write something later. I've just signed onto Yelp, and this is my first review.\n\nOur group of friends hadn't seen each other for a while. Busy catching up, we didn't open our menus for quite a while. I was impressed that our waitress (her name might be Mel) kept coming back in the nicest way to check on us, but didn't interrupt our conversation. She kept letting us know that she was ready when we were. \n\nWhen we were finally ready to order, she asked: \"Separate checks?\" Terrific. That was exactly what we needed.\n\nI hadn't expected to like the food, because I had heard and read that it was all the high-calorie \"comfort\" variety. It was a nice surprise that I was able to get low-calorie substitutions for the sides that went with my entree.\n\nOverall, it was a very nice experience.", "type": "review", "business_id": "1F-pelV0fTduYV_vCrvjLA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "xopO03gWwnEe0JNkHBV8Kw", "review_id": "QnJkfL8GchAapP0Uv-0Gpg", "stars": 3, "date": "2011-02-21", "text": "Although they didn't have what I was looking for, the help was friendly and the store was very nicely kept. And they had a decent selection of course everything is a dollar. So I said \" you guys are okay in my book (A-OK) one of the good ones\" so I won't rule them out when I'm looking for dollar deals.", "type": "review", "business_id": "YK-QsFBiLRy-dt2o-x_SRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mm1-8hxSTbQH9iUAIkML4w", "review_id": "tsjCK9HICs11H11L-tLqVg", "stars": 3, "date": "2011-11-28", "text": "No bad for a chain.", "type": "review", "business_id": "yA9gOueRPoQ4-Y8Xdu8k3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "K6MrbZeqKG35ZiucFfucvw", "review_id": "225481-Ln-fp8XpQ4Rrbmg", "stars": 3, "date": "2010-12-16", "text": "It is a total dive bar...If you need a drink go get one. There are pool tables, shuffle board, video game or two, and a jukebox. The bartenders know their stuff. Enough said!", "type": "review", "business_id": "vUmCtldBjn_AuHW4tg2LZQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fMBKxKHsZ2Vmw04Np8GEPQ", "review_id": "_8ZzhuKAe4_qS8VbrfZYXg", "stars": 5, "date": "2012-06-18", "text": "Great food and service. It will only be for special occasion for us because its pricey, but it is worth it. They made us feel special.", "type": "review", "business_id": "uVbt9dOe6qJgBBI4_XsXRA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "sQwgFhirdCt6h_g1rbjHHA", "review_id": "aCwCu9dHcYDjnuddrIRTbw", "stars": 4, "date": "2011-09-01", "text": "Fantabulous! That's the best way I can describe the food here.\n\nI really wanted to get a photo of my dish, because it was a work of art, despite just being pasta et al piled onto a plate. Unfortunately, between my hunger and the amazing aroma wafting off the plate, the camera never made it out. This dish, by the way, was the strozzapreti. I could go on about how wonderful it was, but I'll spare the reader. Oh, there were also the Zucca chips. I nearly bit the waiter's hand off when he tried to remove the scraps.\n\nIn truth, I would love to give this place 5 stars. The food, without a doubt, warrants that rating. However, the place was pretentious to the point that it was palpable. The acoustics of the restaurant made for a very loud experience. Oh and the server was actually a bit too attentive. She was great, very nice, on top of everything... but just a little too much.\n\nOverall I'd like to go again and try out some more of what they have to offer! (And of course, have more zucca chips...)", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Hfhu0ZYnoMOVa9WWr6y3Iw", "review_id": "ZgvLkQDSQCmM8rw5qbbfYw", "stars": 4, "date": "2011-12-19", "text": "Had a great time staying here for a few days. Golf course was amazing (payed twilight for $75 on the desert course starting at 1pm). Was able to do a nice long 3 hour hike Camelback mountain.\n\nService is excellent here and accomodations are lovely. 24 hour pools and hot tubs are nice. As are the fire pits... But nothing is cheap here for sure! $22-27 scotches by the firepits. $10 bagel sandwiches at the ice cream parlor by the lobby. Don't come here if you don't like to spend money! Also, i would avoid eating the meals here. Food is not the best and it costs an arm and a leg. Would love to come back for some more golf and hiking. \n\nYou def. get more perks staying at Canyon Suites (free wifi, free access to business center, nicer and more private pool and hot tub area, better free wine tasting, and nice amenities like free cider, arnold palmer, fruit, and cookies throughout the day.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "doMDzniAOl1AaS34G63daA", "review_id": "nQR1nzL_kjk5wrREOC_X4w", "stars": 3, "date": "2010-02-14", "text": "I like frozen stuff. Ice cream, frozen bananas, mountaintop snow, icebergs, glaciers, frozen caveman lawyers - all good.\n\nA friend introduced me to Golden Spoon this afternoon. What a great treat! They have convenient little portions for the sensible and great big portions for the more gluttonous. It tastes great, costs little, and really hits the spot.", "type": "review", "business_id": "DRuE7KNz8vGR1_X1h9fiSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3TGup17SCV6uHsifmTKirg", "review_id": "-8UWqon-jBdys6wMRsh8vA", "stars": 4, "date": "2010-10-31", "text": "In my opinion, Zipps is the king of the local sports bars. They've got decent bar food, great beer specials on Sundays, and I've always had attentive, friendly service. What more do you want?", "type": "review", "business_id": "hGQsnkndreW7b26XC2HVRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vynHUkNRnqlWyuaCM9NZcQ", "review_id": "IuO1HnfccQDzJ7upwOaE5g", "stars": 5, "date": "2012-08-28", "text": "Friendly group. Great specials....Try THE BASIC breakfast. It's more than enough.", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "nIQV_n9EVzOO6yd2vqrqvg", "review_id": "2d0Cyzu3Ol36mgNXQGyTKw", "stars": 2, "date": "2008-05-27", "text": "Not bad food, combined with so so service. I tried the firebird chicken pasta and i have had better at chilies. I also don't drink soda so i ordered a lemonaid and since it was made at the bar (non-alcoholic) they were 4 bucks each. it sounds like im cheap but 4 dollars for some sugar, water, and lemon? then 4 dollars for a second one? ok. the place was nice and huge on the inside, if i was taking a client out i would go there for the appearance but for my son, wife, and myself i think next time ill pass.", "type": "review", "business_id": "8dEJ_o0UgGrNX1ejHcuZjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o2J22OK7xXL-sDPzANxy5g", "review_id": "fdvuKm4JIKrcn5nWxqpX1A", "stars": 4, "date": "2011-07-23", "text": "Great all natural selection, if you are looking for some fruit or veggie that is hard to find, try here, they will probably have it. I also love that they have organic roasted chickens (yummy). The stores often have wine tastings and demos going on, check their website for listings of events.", "type": "review", "business_id": "dC6rDLGRoch_DOZk5kLkWw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "ag_CtK-W76RfwV7bVVFo-A", "stars": 3, "date": "2011-06-02", "text": "with airlines, always hit or miss. delta by far my worst experience on one flight, excellent on the next. american airlines....for our most recent vacation, just run of the mill. \n\nwe were boarded quickly and efficiently. in the turks and caicos, our flight was cancelled due to a mechanical issue, but then we got to spend an extra night at the Beaches resort (free food and alcohol anyone). although it did take them 5 hours in the crappy providenciales airport to let us know the flight was cancelled, but 30 minutes later, i was happy as a pig in slop with 2 mixed drinks in my hand and 3rd on the way, with 4 or 5 more to go. \n\nairlines...unless you're in first class, you're nobody.", "type": "review", "business_id": "oQ5jjVF-LtRnGNC5SGZQ9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "dUQ1uMNmLt2vwpx8gLWWcw", "stars": 3, "date": "2007-03-08", "text": "The food is good, but I think the prices are too high for what you get. Considering there are plenty of other places to go for good subs, salads and fruit platters that would be much cheaper, it's hard to choose Duck and Decanter over them.\n\nHowever, I will go here when I don't have to pay. Why not, right?", "type": "review", "business_id": "7Jmri1RCl9Ksmpi5EoIOZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uDLMclVv5a7MKT62I5ow8A", "review_id": "5AOvCoxBZSs4DK0YV7LfVg", "stars": 5, "date": "2010-12-09", "text": "I'm very happy that I called Enterprise Pools. They have friendly service and worked with my schedule when I asked for an estimate. Mike was knowledgeable and quickly determined what the problem was and even told me how I could fix it. He offered service at a reasonable price and never tried to sell me something for the sake of sales. It was definitely a relief to find an honest business man after dealing with sub par service from Leslie's for such a long time!", "type": "review", "business_id": "UiHx6YjnD9swZrUreuCu5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HP_xZYNC5XK-VyNrnHbtRQ", "review_id": "dmOrlvoG6VG1zWsYSIwaMw", "stars": 3, "date": "2008-06-03", "text": "the food is decent and fairly cheap. The only complaints I have about it is the place is pretty small and can get crowded, they don't serve liquor (eh, but there is a liquor store next door, so I can eat and then get a beer, but sometimes it's nice to have a margarita with your burro) and not always, but sometimes one particular lady that works there can be kind of rude and can mess up your order. \nThough I do enjoy their food and it's within walking distance of my residence.", "type": "review", "business_id": "6Tt0mGKbMoAz1GsjkVhbMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "cAmALWTTej6W5Rr5xcg4DQ", "review_id": "Zb6qK9ORkoIJslTVC1kEVQ", "stars": 1, "date": "2012-03-05", "text": "I really wanted to like this place. For starters, I paid cash for my take out. I was owed back five dollars and was told \" we don't have enough change\". So I had to settle for $2.50. What kind of restaurant doesn't have proper change? Especially on a Saturday night. \n The food: Chicken lettuce wraps had a strange fishy taste. Gave up on them after a few bites. Vegetable chow mein: In my opinion, a broun sauce is thick and flavorful. This one was very liquidy and flavorless. Dumplings were edible at best. \n Do yourself a favor and stick with China Chili.", "type": "review", "business_id": "a8yzGF79KcfyRye2R6wt3Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "XrD_RUiFeKsQ63WL3l_crQ", "review_id": "KETr5UiBNvFX9xSxX5aHqw", "stars": 5, "date": "2010-10-04", "text": "I read about Scramble on line so I thought I would go there for brunch and I loved it!! The Santa Fe eggs Benedict are amazing! The staff is friendly and the ambiance is incredible. I would highly recommend this place to anyone!!!", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q4c-HD4iycZGrAnNK6d0tw", "review_id": "QPQrw4Z3RuD36yFMibywzw", "stars": 4, "date": "2012-07-26", "text": "I almost don't even want to write a review for this place. It's so near and dear to my heart and I basically live here that I just don't know how to NOT write a novel of a review for this place. So I'll attempt to bullet point my feelings on the joint:\n\nA. Friday Happy Hour - need I say more? Pretty sure all the homies would agree that we've spent thousands of dollars here over the years. You're welcome Lodge. \nB. Cheese Curds - FRIED cheese balls and ranch. nuff said. \nC. Best server ever, my homeboy Michael (you guys need to give him a raise. I haven't seen him around much lately and I'm pretty sure that's why I've been at Kelly's more recently)\nD. Black-outs\nD+. I have a scar on my left knee where I ate shit playing cornhole. How do you eat shit playing cornhole? No clue. Probably because of the above point listed above. \nE. Lodge stimulus package - $6 for a can of PBR, a shot of nasty ass whisky, and a cigarette. BEST DEAL IN TOWN. Pretty sure the ex got nice and hammered a few times off this lil package - great deal ladies. Get your man sloshed and then take advantage of him. Always a good idea. \n\nThe only reason why there's not 5 stars is sometimes when you sit on the patio, it takes about a year for a server to come around. Best bet it to hunt one of them down and start a tab that way. \n\nOh The Lodge. Such great memories here...and most of them are just hazy bits and pieces.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "lmiDCrmas8TxRsbIGZX9Pg", "review_id": "ZU5v2t_hwBktzOI_A-nDVA", "stars": 4, "date": "2011-10-20", "text": "Great hotel- though it's more of a condo. Got a room for my mom this past weekend and she liked it so much she didn't want to leave the resort. Our room was very large. Had s dining room, living room, fully stocked kitchen, 2 patios, and a large bedroom and bathroom. There's like 3 or 4 pools in the resort, a nice restaurant and bar with live music. It's Close to Desert Ridge, and the Quarter so good location for out of own visitors. Got an amazing price through hotwire. Service was also outstanding. Nice job Xona!", "type": "review", "business_id": "VmRmj-IspfzXZdVYCaOOMA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "9J2qULE0Fn56Wy1yK--frA", "review_id": "TD0AUwaxILhgrK37MduxQg", "stars": 2, "date": "2011-07-03", "text": "We planned a happy hour here this past Fri night. I had heard good things so I was really looking forward to some fun with good friends and good beer. Unfortunately, I was drastically disappointed. The service was absolutely terrible. \nThe question of \"What do you have on tap?\" should not be a difficult one to answer. Our server didnt feel like answering and instead pointed to the menus with attitude as if we were making her night miserable. \nStrike One.\n\nOur group quickly turned from 4 to 8. When we turned to our server to assist us in relocating to a larger table, she told us we could look around if we wanted to, but she didnt think it was possible to accomodate a party of 8. We asked about the upstairs and she told us there was a private party and no room. A friend of mine went up anyways, to see a perfectly open table with 8 lovely chairs. He asked the private party, which was paying the check and getting ready to leave, if they minded we sit at the other table. Of course, they didnt care at all and we moved ourselves.\nStrike Two.\n\nDespite the bad attitude and completely unaccomodating service, we managed to rack up quite a bill between all of us. I waited tables for four years and consider it a given with such a large party and hefty bill to offer separate checks. Before we could even ask, the SINGLE check was dropped with 18% Gratuity added to it. \nStike Three.\n\nThe food was average at best. I've had better Potato Skins at TGI Fridays. Its a shame, because this place is a $5 cab ride from my home and I really wanted to like it. \n\nI will make the drive to Rula Bula over this place any day.", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "turPLVMfH1YH-2kMtM9LLw", "review_id": "P5ohmZhj5qvNM284nLndOw", "stars": 4, "date": "2011-08-25", "text": "If you're looking for a board game, card game or, well, ANY game you can't find at GameStop, try here! Their selection is huge, from games to figurines to key chains and novelty candy. Better yet, they're friendly and really seem to know what they're talking about. \n\nThey also offer in-store tournaments and competitions. So much fun!", "type": "review", "business_id": "LoFX3XAun814ZHwfKj7xYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JF05ffi0qdheB9Ti1kACOg", "review_id": "T5DdmVBSCqenlU2i85B8UA", "stars": 3, "date": "2011-12-28", "text": "I use to LOVE Kazimierz so I am trying to be fair in giving it 3 stars. Most of my experiences have been 4 stars but the last two visits here have been a 1 or 2 star so...\n\nKazimierz is a hidden, fantastic wine bar in Scottsdale, which use to be very intimate and was a great spot to cozy up to a date. Lately though they have been packing people in to this awesome bar which has so much potential. It's elbow to elbow now, with pretty bad service but still a great wine selection. \n\nI'll still come here whenever I'm visiting the area because I have a soft spot for it, and I am hoping it returns back to the awesome, secret cozy wine get away it use to be, and I know in the area, there isn't really any other spot, no matter how bad the service, that compares to it.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0fOPM1H03gF5EJooYvkL1Q", "review_id": "8yfOlQGxQlCgQL9TnnzQkw", "stars": 5, "date": "2011-12-05", "text": "Unfortunately Out of Business.", "type": "review", "business_id": "PwtYeGu-19v9bU4nbP9UbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LJPvRgTZWHlwpaYBauOOkw", "review_id": "dxXCzzobAXTS3XAazirJcQ", "stars": 2, "date": "2009-11-29", "text": "had the bulkogi mini plate. very cheap at $5, but it's not really bulkogi - more like a thin steak with very sweet barbecue sauce - and the rice was too sticky. the lone bright spot of the meal was probably the potato-mac salad.", "type": "review", "business_id": "vIDQO_9Ytf10vEndDOih8Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "8AK1DvZXMz9ZyxKnJNcRFQ", "stars": 3, "date": "2010-08-24", "text": "The coffee at this location is awful- please go get lessons from the lady at the Thunderbird and 40th street location.\n\nHowever, the primary morning guy, Shawn, is awesome. He is friendly and chipper, but not so much so that he's annoying as your first human contact of the day. He is generous with the toppings and speedy.", "type": "review", "business_id": "rua7dvP6-SUXL4N8RTY--A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "QdJW9eSWxlmydFVBS9ibZQ", "review_id": "-p-8BsPj43Z3MpCu-fZazA", "stars": 1, "date": "2011-05-15", "text": "This place has NO clue when it comes to pricing men's items, and I would not recommend them at all. I consigned a leather briefcase worth close to $600, and they priced it for $90, giving me a whopping take-home of $40. I understand the need to move merchandise quickly (and naturally, this sold in a matter of days), but cannot fathom why they would not attempt to get more money for the item. I can only assume they did not do their research before setting the price. Consigner beware!", "type": "review", "business_id": "gc4Rd41QgWQia_J6gWpTtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "rq46hVxWltv4OmgWN4_2hg", "review_id": "UBbKOItU5xQPv3GCR1om1g", "stars": 5, "date": "2012-04-22", "text": "Tried a little if everything. The bars are worth the drive across town unbelievably good. The bars have a moist short bread crust, it is absolutely addictive. The strawberry cupcake was perfection. Cookies were very good but the bars and cup cakes stole the show. Thank heavens it is not closer to home :)", "type": "review", "business_id": "YkFBelUWinftlweJzuiIAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "N4h_3ZR-7slX_BeaokL7kg", "review_id": "X4cEQgYfVUF96fheEgzSDQ", "stars": 5, "date": "2012-09-03", "text": "This place makes me want to learn German every time i go.\n\nI would get my Polka clothes out any day of the week.\n\nGreat food, great prices, great atmosphere.\n\nThe fall months are great to sit outside and enjoy the weather to a Brat sampler. LOVE IT!", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_xt9upq-UIMNFFFbklranw", "review_id": "3DAW1fjSnMCU_srXyeYcXQ", "stars": 5, "date": "2011-10-12", "text": "I love this place!!! OK. where do I start.. Great place to stop in for a quick lunch. AMAZING outside grill, everything is good. Best cheeseburger I've ever had. I don't even like Salmon and theirs is good. Good salad bar and salads ( pasta, tuna etc..) The pizza and sushi.. again amazing!! And........ they have about 10 different iced teas to choose from. Also, they have a great breakfast. Omelet station and all. I suggest the chorizo and egg burritos. GREAT outside patio", "type": "review", "business_id": "9CqxDNPWlkJW1ZCM8Gu_nA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PuTmcfPDLNUAKo68LmdZOA", "review_id": "mvOvePiaWhfJINDspYoHmA", "stars": 1, "date": "2011-08-01", "text": "Currently having a liquidation sale, but it's not really worth the trip. I found that most books were cheaper at Amazon then the sale price. A few were even cheaper at Barnes and Noble then the liquidation sale price! Which just made me say to myself well that's probably why you're going out of business try some competitive pricing! The place is an absolute disaster they've moved a lot so the sales staff doesn't even know where everything is. Also the place just smells dirty and old, it's very unwelcoming. It's really no surprise to me they couldn't get customers before.", "type": "review", "business_id": "0NKRV1kMtzHNpNbl8TYPDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0Nzq2vv8FoGEGosfZDP4Vg", "review_id": "KSCvWJ6HWuOkxubMh4G1aw", "stars": 4, "date": "2009-08-30", "text": "Great city atmosphere with lots of bright open windows looking out at Central Avenue. Nice place to relax as the world rushes by outside. Comfortable seating areas and great beverage assortment. Danielle Librera's baked goods are the stars here as far as i'm concerned, i went in at 7 am one morning and was delighted to see the entire front counter filled with her creations (scones, muffins, fruit tarts, quiche, cookies and still warm from the oven coffeecake). It was like a bakery buffet, danielle is right there baking away behind a corner of the counter on most mornings. I often go to Lola in the evenings (they close at 7 most nights, so sad) and by that time of day there are only a few cookies left, so obviously the regulars are tuned into the best time of day to get the baked goodies. A guy in front of me on my 7 am visit scooped up half a warm coffeecake to deliver home to some lucky partner/roommate. \n\nThe morning we visited, the 7-8 am hour was peaceful and calm, a great waking up time. It was nice to see an assortment of dads and their young 5-7 year old sons come thru the door and spend time hanging out together at the start of the day. At 8 am the business commuter crowd started arriving in full force and the place got a whole lot more buzz from all of the conversations going on. \n\nGreat location approx 1/2 block south of the Central/Camelback light rail stop. Definitely worth a visit!", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yp90PduP1gD7kgCLWuQg4w", "review_id": "U93-ihU3kKeQzJLy75TpGQ", "stars": 5, "date": "2010-12-25", "text": "Unfortunately I don't get enough chances to come here but, I'd say I have been here about a dozen times and each time I have never been let down. The beer is great, the food is great, especially their french fries and the crowd is OK. Yes it is in Tempe and you're stuck with all the ASU kids but I like to come here in the summer time or when ASU is on break because it is the locals that are here. It is not the nicest brewery that I have ever been to, but what they lack in aesthetics they make up for in beer. A must go to place if you're in the Tempe area!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pKk6NoBezFylhIz9JM0zdA", "review_id": "DYZOrnz2jIWISdM13TMRfg", "stars": 5, "date": "2011-03-09", "text": "Love this place. Bring some patience because the wait is sometimes long and there is little seating. The outside patio is excellent in the fall and early spring!\n\nBut I gave it 5 stars for a reason - and that is because the awesomeness of the food absolutely outweighs the wait time. I acknowledge that this is a personal choice - but if you go and try any of the sandwiches, you'll likely agree.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zLZZpwBNB8hWson5dKXEtg", "review_id": "Nkqaix6Rw9xQN6EBqvsfaA", "stars": 5, "date": "2011-12-01", "text": "Absolutely incredible. It appears the young lad who works here seems to be the go-to front-desk man everyday for this shop. He was very helpful and told me exactly what my shoes needed and didn't suggest pricier repair options that my shoes really weren't in need of! I brought in two pairs of dress shoes; one of which I had the heels replaced ($22, free shining included) and another just for shining ($8) and they made them look near-brand new again! I will certainly be bringing all of my shoes in for repairs/cleaning within the near future to this fantastic little shop!\n\n\nKeep singing,\n\n-Jerron", "type": "review", "business_id": "7O2an_4z_AHg3oczNf7oig"} +{"votes": {"funny": 9, "useful": 3, "cool": 6}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "Xh30S1PXth2UZjiNOTwQ3g", "stars": 5, "date": "2007-09-22", "text": "I'm a regular at Lux. Haven't reviewed it out of sheer laziness. And it's usually laziness that brings me here: when I have a major thingie to get done by Day B but I spent all of Day A at the office surfing the Internet instead of working on it, I pay the price with an all-nighter, which I like to start at Lux. (Damn them for not being open past 10). This is usually the story when anyone spots me here. \n\nI'll grab a small table for myself, plug in my laptop (free wifi), spread out my papers everywhere, then go up to the counter for a large and extremely delicious Velvet Latte. When it's done right, there's a perfect swirl of white cream that forms the shape of a leaf on the surface of the caramel-colored coffee. Mmm.\n\nSince I am ADD I take frequent breaks of course. Like every 3 minutes. Whenever I hear a strange piece of music I really like that I've never heard before (this happens often), I strain to catch part of the lyrics, stick it into Google, find the name of the band, stick it into iTunes and download it. I'm not making that up. Like half my music collection was created through this method. The last few bands I downloaded tracks from are... let me open up my iTunes... Kasabian, Feist, and the Detroit Cobras. I'm not even remotely hip enough to have heard of those before on my own.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 4, "useful": 5, "cool": 3}, "user_id": "nZ9XFVETN4hxdK4qPb-T3Q", "review_id": "B_3FCW7AKYciwHh78WAXWQ", "stars": 3, "date": "2009-08-07", "text": "Sam's Club is having a ground beef recall. Call the store for details. I am just all about the FYI today! ;-)\n\nThey said they sent paper and electronic mailers - but I did not get one. I just got lucky and happen to be returning the brown ground meat that I just bought.\n\nI am rarely able to find fresh ground meat or chicken here, but their roasts have always been fresh and very reasonable. I can get double the size here for the price I would pay (for a smaller one) at Fry's. \n\nAnd, if it is not quality meat, just return it for a 200% refund = one of the only reasons that I will try to get meat here. Although, for the hassle, it is really not worth it. \n\nAlso, if for any reason you don't like the club itself, they will refund your membership. Look it up; it's on their website.\n\n\nThey are trying - but be wary of the ground meat and chicken there. It is often not very fresh. But.... I can sometime find fresh ORGANIC produce here - nothing much really - last time it was spinach. It was really cheap however, and getting organics at wholesale prices is rare.", "type": "review", "business_id": "7U3DYmZLYN-pbQi1GIJXUA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "-uPDXzRPWVbSk1eyXup75Q", "review_id": "FSPxRJlPTzNOocARaC8QdQ", "stars": 1, "date": "2011-07-08", "text": "I give this place NO stars. They have karaoke which would be good except for the co-host is NASTY! The rest of the bar is typical with darts, pool and poker. The food SUCKS! don't bother to go here unless you like being whined at by a wussy faggot at night long. I know that is harsh but the co-host really is nasty.", "type": "review", "business_id": "n_wZriiakBT7sVn87dpcEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "AeucYo8J-rZjcq09Wuqsjw", "review_id": "YZrcLUxlEBeuU5Mb6ofV8w", "stars": 4, "date": "2011-07-13", "text": "had a wonderful experience here from first drink to last bite. Atmosphere has a nice chic upscale feel to it and the lighting is nice and cozy. We waited in the nice bar while we waited for our table. The orange martini they have is just heaven. After a few of those down the hatch i tried a \"keg\" size glass of wine and was great as well. \n\nThis is def a steak joint, so about 90% is all about steaks but there are some salads, fish and crab options. (they are also having a lobster special right now). Lover had the prime rib and crab combo and loved it( they are apparently really known for their prime rib) i went with the crab off course and did not disappoint. \n\nThe staff was very nice and very patient and i noticed that just about everyone that works here is good looking also. just a pretty place filled with pretty people and good food!", "type": "review", "business_id": "xMK01ZbVUYLLoyqoeWAIVw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "mEFozJbPZHUm6YQo-uGG2g", "stars": 5, "date": "2011-04-19", "text": "This is my favorite seafood place in Phoenix!!!! I have loved this place since it opened when I worked at Nordstrom years ago! They have a great happy hour. There are not many places that you can get a $5 cosmo, appletini, and lemon drop martinis...not many!! They are not Grey Goose martini but they are delicious all the same! They offer greta choices from their menu on their happy hour menu as well...of course they have a fabulous happy hour its because its the same owner as Roaring Fork and their happy hour is to die for...\nAnyways...their menu...\nThe potstickers are just something different that you would not expect...and they are delicious! I love the crab cake too! A guilty pleasure is the bacon wrapped shrimp with goat cheese and the onion rings!! OMG!! I cannot get enough of the lobster tacos too!! I could just have the appetizers for dinner! I do often! Also, I love the Fuji Apple Salad because the candied walnuts just make you want more and more and more...the dressing just tops it all off...\nNow the entrees that I love are the Crab stuffed shrimp with the vinaigrette...It is FABULOUS!! Of course...if you love lobster tail this is the place to get it! You get two of them! Now make sure that it is the right season because they are not cheap, but they are so worth it!\nThe sides to get are the twice baked potatoes, truffled mac and cheese, and sauteed spinach! They are fantastic!", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3mestfetw_JLoxjm-kApqQ", "review_id": "Rb3i9xejEgBT77nVutnqoA", "stars": 5, "date": "2012-07-02", "text": "I am for out of town and came here to celebrate my Birthday and it was a blast. The food was delicious and our Tepenyaki chef Robert was hilarious and very on point. This place is definitely a must when going to Scottsdale. I do go to Arizona a lot and will definitely be back soon.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OFXscP6sh-6YlDvFH2DgJA", "review_id": "mbBSGmsZ4SSca1fQwPqYtw", "stars": 5, "date": "2012-08-29", "text": "I had several mothers tell me about Eduprize and how great it was. I was a little nervous when I was told there is a waiting list and you have to agree to put time in the classroom. Now that I am in the classroom volunteering, I realize why it is so great. I can see first hand why my daughter struggles in some areas and does great in others. I can see how the others are struggling too and I can be apart of helping them, even if it is just for a day. This school's requirement to have parents volunteer is something ALL SCHOOLS SHOULD DO!", "type": "review", "business_id": "6qDTvUzoy-O-7TWQjwzqcQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "Ex_aRk89hnrPF5lsMt-SiA", "stars": 3, "date": "2012-02-19", "text": "This is your run-of-the-mill sports bar that caters to the not-so-blue-collar 30something crowd of Chandler. The ambiance is nice, darker, big screen TVs everywhere... the waitresses are attractive (a staple at these types of places) and they are friendly and attentive... ours was on this very day. \n\nIt's Beer Week in AZ this week and they had just hosted a SanTan event (pub crawl) today as part of Beer Week, so they were understandably out of SanTan Devil's Ale and the place was quite quiet when we arrived at 5pm. We got seated at the patio where the have a nice little Bocce ball area and it was nice to enjoy the great Phx February weather.\n\nAlright, so we ordered burgers as we were both in the mood for a sizable piece of beef, hopefully topped with bacon and other yummies. They did a pretty good job for being a sports bar, but not impressive. They claim their meat is fresh ground, though when that's the case, the patty has a different type of form and is less flat and compacted.. okay, maybe they grind it in the AM and then stockpile patties for the day.. that's fine. The bacon (I ordered the #9 All Star - cheddar, bacon, beef) was lame... thin, a bit stale-tasting, and not crispy. The cheese was fine. I did like that the meat was char-broiled and so it has a good taste to it. Also, the inside wasn't over cooked and the bread they served it on was kinda sweet and giant... tasty, actually.\n\nThe sides were blaaaah.. cole slaw was really boring and had literally 3 ingredients (white cabbage, carrots, sugary mayo) something I would expect from Chili's or Denny's.\n\nWell, the burger hit the spot but the rest was plain and boring. The Stella was not as cold as I prefer. Our staff was very good. So far, an OK place to visit, but a 4 star place is somewhere I will likely go out of my way to visit.. this didn't make the cut.", "type": "review", "business_id": "maB4VHseFUY2TmPtAQnB9Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "Xafv2eDKqe_iSx3QhJv3KQ", "review_id": "cN561PehOTfZnNc5Ksl4jQ", "stars": 5, "date": "2012-03-10", "text": "I'm married to a Japanese and work for Japanese company. I've been to Japan I don't know how many times and have eaten well there. This is simply top class, I'd even say special. The style is a kind of fusion ranging from basically pure Japanese to Japanese with some very tasteful western inflections. I'm not in Phoenix often. But this will be on my list every time I go if I have anything to say about it.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "C36PV6x0gNdSdy_rV32vbA", "review_id": "kAg3gEwre_q8KB4xJH4CRw", "stars": 5, "date": "2008-08-29", "text": "I love their menu! The garlic mashed potatoes-amazing! Steak-melts in your mouth! Service - great! Big fan of Applebee's!", "type": "review", "business_id": "9pGs5hcA-13x5o97XcMt_g"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hvgYD6Pmyaa6hS39ymIQBQ", "review_id": "gsB9PLtJ2QFDKiuiBvKZUg", "stars": 4, "date": "2007-10-19", "text": "There's something deliciously seventeen about drinking in \"The Alley.\" Of course, real seventeen year olds can't get in. This place is legit, but the vibe is very Lloyd Dobler in a gas station parking lot asking a bunch of punk kids why he just can't win with women. (Don't worry Lloyd none of us really have that figured out and most of us who seem to be doing it successfully are really just faking it.)\n\nThe crowd here varies but I have always felt welcome. Drinks are ok. Sometimes they're great but it depends on who's tending bar. The good thing is they're fairly cheap. As a music venue I give it high five. It's dirty and dark with a one foot high stage that's obviously meant for performance but not so far removed as to make you feel like you're not connected to what's going on. The sound is ok. It depends on the show really but I've always had a good time and that counts for a lot.\n\nI like the pictures on the ceiling. They're fun to try to decipher when you're setting yourself on spin cycle. The pool tables are usually full so I can't really vouch for them other than to say that they're popular. All in all, it's a decent place to pummel yourself in the face with your beverage of choice.", "type": "review", "business_id": "Cp5_NSJFNgylD5SUdmT8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vWCksqJJfYjGGdD-yb9qGA", "review_id": "vJ6Y-zvhpYgQU_F5DxPbcA", "stars": 5, "date": "2010-02-20", "text": "Yes, it is probably as good as it gets for a SANDWICH place. Very tasty. All 3 of us liked our different sandwiches. I also ordered pasta salad but it really was not any good, but it does not matter as i did not come there for a pasta salad. Real good besides that.", "type": "review", "business_id": "HMUvbAHRnbAczNrYy8e5MA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j0Nw9lLD8c_jLcY6uSmN_w", "review_id": "M-0GTZ6TtO5ejNiX44me2g", "stars": 4, "date": "2012-04-16", "text": "Very fun atmosphere and really good tasting food. Portions were large but not overwhelming so. Banana walnut pancakes were fragrant, tasty, light, and just the right balance between salty and sweet. Eggs Benedict was also very very good. Definitely a place to frequent often as long as you don't mind a line, counter ordering, and finding a place to sit without a hostess.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "mQRd9mdpBCEjzIPe_c4k-w", "stars": 5, "date": "2007-09-07", "text": "I am proud to say that I sent Kristin S. here for her awesome hair transformation (8 inches is a lot, girl!) I just had my second hair cut here today, and I was just as happy this time as I was the first time around. First of all, the service is top notch - they take care of you quickly, kindly and enthusiastically. They are not snobby, which is a welcome relief when living in Scottsdale. I have always felt welcome and comfortable here. \n\nMoreover, the prices are amazing! I have very easy and basic hair, and they charge me $45 for a hair cut - if you want to spend more, you certainly can, but I am fine with the \"stylist\" level (who charges $45). In Tampa I paid more like $65, but I much prefer Par Exsalonce. This place is a well oiled machine, and they know how to run a salon. They carry B&B products, which are fun every once in a while.\n\nI really love this place and will not look for another hair place in the Valley. This place knows how to treat customers, style hair and create a pleasant experience. The Market Street location is a bonus, too, because you can even do some damage shopping when you bounce out with your new 'do.", "type": "review", "business_id": "3398Ccw-mUHbzYcIToDi6g"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "TA6CcCUag4lftPJDuhhFuw", "review_id": "XuXVGu-vAt3SUcbYxiEWiA", "stars": 3, "date": "2012-06-25", "text": "I still really love coming to LGO...especially to relax on their patio with some good food and good drink. I love that LGO sells Framboise and I love the hectic and busy atmosphere. \n\nHOWEVER, the time has come for me to drop a star. I am a regular fixture at LGO and lately have noticed that they seem to be running out of some of my favorite items on a regular basis. For example, the MJ Cookie...it is one of the few items that makes my mouth water at just the thought of it. It's like a brownie and cookie rolled into one. So heavenly. Unfortunately, LGO has been out of the MJ Cookie 4 out of my last 5 visits. And these visits are at all different times of the day/week. I know they get busy and I know a restaurant can run out, but it seems to happen so frequently and every time it's a big, BIG let down. And sadly, the cookie is not the only item that they run out of regularly. Lately, I've had a hard time finding the pre-made salads that I like too.\n\nMy other issue just occurred and I cannot seem to pull myself out of the depression that it has caused. They no longer serve the green chile mac and cheese! Seriously. When I stopped in recently for lunch, I was so disappointed that this has been removed from the menu that I thought about walking out. I know that seems like a silly reaction to macaroni and cheese, but their green chile mac and cheese was by far one of the best items I found on their menu. \n\nTheir sandwiches are tasty, but almost impossible to hold together. Their pizzas have great fresh ingredients, but always seem to be lacking something. And now this...no more mac and cheese. And they're always out of MJ cookies! It is a sad sad day at LGO. =(", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-L0i4tIcOIbAq_gPvykkLA", "review_id": "mV5EJAOJENL7SBOkFm_HJg", "stars": 3, "date": "2010-12-20", "text": "Sure the place has atmosphere and a good drink menu, but I prioritize the eats. \n\nWe went on a Monday night for a friend's birthday with a semi-large group and they did a prixe-fix menu. I left hungry after paying more than the meal deserved. \n\nThe bad: Shumai was just ok, duck mint salad had an unharmonious flavor and I refused to eat it, chicken with wasabi sauce was dried out, lychee wrapped bacon was soggy and a strange proportion, cream and goat cheese dessert with peach was not fun. \n\nThe good: the Hong Kong rice noodles and fried tofu with pinapple sauce were the highlights and only things I would eat again. They were really tasty. But I won't be eating them again, because I don't plan to go back. \n\nI'm sure there's some gems here, as we found a few, but I need a better batting average and, oh, I dunno, to leave full with a few bucks left in my wallet?", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-wwNJ0zd82_q8Gh5XXqAEw", "review_id": "eKgzpZGRMGVHVD1FdB18jw", "stars": 4, "date": "2011-05-15", "text": "My family was on the west side of town yesterday and since we don't know that area quite as well we wanted to try a restaurant that had a track record, as we didn't want to take a chance on a local-owned shop.\n\nI certainly wasn't disappointed. The restaurant is clean, as were the restrooms, and I loved the island theme - it give the place a coastal feel, which is nice if you live in Arizona!\n\nI had some kind of combo burrito that was good sized and gulped down every bite. I was in the restroom when my wife ordered for me, so couldn't comment on the friendliness of the staff.", "type": "review", "business_id": "EeQlS9VLlfWT25-MeYsJTg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Q-kw41pmxwNCBQ63Y-FIpA", "review_id": "kOwWyHcSZeq6ndRB1CGoiQ", "stars": 5, "date": "2010-05-18", "text": "How could you not love this place? Not only is the food fantastic and consistent, it has a great atmosphere and an adorable \"grocery\" shop next door. It's a great place to people watch! (Don't forget to check out the wine section--not only is the wine random, it's affordable and a great conversation starter with all the cute names and labels)\n\nAfter moving here from San Diego, I've been so unimpressed by all the breakfast spots in Phoenix. This is the one place that I LOVE! I think it offers something for everyone, however my go to is the Venice Beach Burrito. It's such a casual spot--you order from the counter, find a table, and wait for them to call you to let you know your food is ready to be devoured. There's tables both inside and out, and you can peruse the store while your stomach rumbles!\n\n\nThe only thing I've ever been disappointed by is the sangria, but then again I'm not a huge fan of white sangria. I will not be ordering it again but I have girlfriends that love it.\n\nI had never been here for lunch until this past weekend--it was always my late morning brunch spot. Technically, I believe its a pizza place, but I've never had a pizza. Although, they look quite good! I ordered their tuna sandwich this past weekend, which came with a side of fruit and pickles. The bread was thin and grilled panini style, and the tuna salad definitely did not disappoint!", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "P6EBeMvWH6R66FptYfxEvA", "review_id": "3La41DKKqkiKi9D5AQc81A", "stars": 1, "date": "2011-02-07", "text": "I will never go back to this establishment because all of the bouncers and wait staff are unfriendly, unprofessional and disrespectful.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WavzQE_0yoy05hF-637EoA", "review_id": "N7VgHM5HuwPS3aIOF4yuMA", "stars": 4, "date": "2011-04-15", "text": "It's an airport, and what exactly does one look for/expect from such an establishment? Currently I want free wi-fi most. Free wi-fi at Sky Harbor... Check. Secondly, convenient economy parking is a must. Convenient economy parking at Sky Harbor... Check. Not to mention the shuttle drivers are always friendly and small talk-ready.\n\nThe TSA folks here also seem to smile and playfully banter with travelers more readily than at other airports. Perhaps this is due in part to Sky Harbor's \"America's Friendliest Airport\" marketing ploy, but in any case it's certainly something to remark about.\n\nI doubt Phoenix will turn into any sort of true travel hub in the near future, but more non-stop international flights would certainly be welcomed. But until the demand is clearly defined we'll have to be content with a few flights to Europe, Canada, Mexico, and the lone wolf to Costa Rica.\n\nI am very excited to see the Sky Train completed and operational with Stage One scheduled to be up and running in 2013. This will allow connections from the light rail and offer a new mode of transportation from the east economy lot to terminal 4.\n\nI've seen previous reviews complaining about having to go back through security when changing terminals, which is actually the case in many airports throughout the world. The terminal is the secure area so whenever you leave it you naturally have to be screened again. There are a few exceptions, but the easiest way to circumvent this is to fly the same airline from point A all the way to point B. If you're connecting at Sky Harbor you should only be flying US Airways/United or Southwest so as to avoid a terminal change. If you're not flying these carriers then you're over-complicating things for yourself and you should look for different routing.\n\nThe central location of Sky Harbor makes it extremely accessible for people living in most parts of the valley, which is a huge plus considering the location of other airports outside of their corresponding metropolitan areas. All in all, there's really nothing significant to complain about Sky Harbor.\n\nP.S. The Fox Sports Grill at Sky Harbor is a true embarrassment, not that one should expect a great deal from airport restaurants, but if Kraft Mac-N-Cheese (this is probably a poor example as KMNC provides a perfect vehicle for some truly delicious creations) is far superior to what you're serving, then you should just end it all. Fact.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xd0fvWA4yAed6MclXzxBdA", "review_id": "9gziD5EgGr_kaVpjaJSgCA", "stars": 5, "date": "2010-09-15", "text": "I think my fellow Oreganymphos would agree; this is single handedly one of the greatest places on earth to gorge yourself with some of the most delicious pizza, pastas and desserts AZ has to offer. \n\nIf you wanna take my word for it, dont even look at the menu and order my usual orgasmic order:\n\nAppetizer: Calimari\nDinner: Big Rig Pasta w/ Chicken \nDessert: White Chocolate Chip Macadamian Nut Pazookie\n\nFYI: Whenever your taste buds feel like going on a culinary roadtrip, make sure you hit up any of the various Oregano's locations located around the state; my personal favs are the Flagstaff and Tucson locations.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "BKAV9e4amTl7t2kd5vENSg", "stars": 4, "date": "2012-08-04", "text": "This by far has to be the best Filiberto's location. I have been to the Phoenix, Tempe, Chandler, Prescott, Mesa, Gilbert, Tucson and Casa Grande locations. \n\n-Clean salsa bar with chunky and smooth salsa options.\n-Free chips, most places will charge you for a small order.\n-Gold Peak green tea!\n-Smoothies and juices\n-Video games, tv's and free wifi\n-Fruit filled churros \n\nThe tortillas are fresh and the place was actually clean, shocking. For what it is, this is a good location to stop by at if you are in the mood for this type of mexican food.", "type": "review", "business_id": "fON48rwmABedlUu0DWVEiA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "vOUAEFEgHsCrMoilDU5X7A", "stars": 3, "date": "2010-07-28", "text": "I finally tried Spicy Pickle last week. I like the name and was intrigued about their menu. Paninis, soups, salads, pizzetas, nothing out of the ordinary. I had a half sandwich ( Sausalito Bandido?), half salad combo\n( Spinach salad). Food was fresh and good. The sandwich could have stand a little more meat, it was truly flat. The salad was crisp and dressing was on the side, which I appreciated. \nOn my way out I got a chocolate chip cookie that was OK. I love cookies and they have to be pretty bad for me not to like them. This one, I kid you not, must have had maybe 3-4 chocolate chips? So if you're craving chocolate, this is not the cookie for you.", "type": "review", "business_id": "azBHKHqif0NXO3xcALo5VQ"} +{"votes": {"funny": 7, "useful": 10, "cool": 10}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "12WTzFGli-YX9zvoTXs0ow", "stars": 3, "date": "2012-08-05", "text": "On an evening walk through Roosevelt row during the monthly First Friday event, I overheard what could only be Jazz funk pouring out from the door just up the way. I walked by and someone sitting out front invited us in for a listen to their free music event. Once inside, the wife and I were greeted by the snack bar ladies asking us if we would like one of their cookies, candies or sodas in the bottle; we got a diet coke for a $1. \n\nThe Nash a decent sized venue with about 12 or so four seat tables to sit at, none of which are particularly better than another, with the tables in front being the only exception. The music was good, if you like Jazz music as I do, but I think the band playing this night put together an oddly slow paced set with more of a blues and 'experimental' Jazz than I would have liked to hear. From the amount of people walking out during their set, seemed like others also harbored the same opinion. I usually like my jazz with a little side of funk; a thick base line, Jazz guitar, and complimentary piano and horn of some type. We stuck around for about 5 songs and decided to move on. It was First Friday after all.\n\nThis place could really use some Kool, and maybe even the Gang. I imagine the music is subjective and changes on an event by event basis. I feel they really could step up the quality of foods, snacks, and drinks. The venue seemed more like it catered towards a teenaged crowd, especially considering their food choices were chips, candies, etc, and no adult beverages in sight. Although I can't see many teenagers running out to listen to a night of Jazz, I could be wrong though.\n\nIf I find that someone worth listening to is playing at The Nash, I will likely head out again; but I don't think I would plan on just dropping in randomly for an evening of Jazz.\n\nHappy Yelping Phoenix. I can't get enough of that funky stuff!", "type": "review", "business_id": "yFmBMNsuOIe2u5kh7NtA0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qa05pUVNapADHZXpHMPMeA", "review_id": "pK6oTa9CMVEFd0qJ4foNYg", "stars": 3, "date": "2012-08-31", "text": "I hate being disappointed by bars bragging about their \"huge\" number of taps... while I can't dispute that they have 52 beers on tap, I can tell you that very few of them are worth drinking.. and that the prices here are on the ok to high side... I would never come back if it's not happy hour or late night pricing. I asked general questions about not discounted pricing, nine dollars for a Manhattan made with Jack Daniels and beers ranging from five to seven dollars... if I'm paying seven bucks for a pint at a sports bar in Tempe it had better be something from Russian River or a Stone anniversary brew... and a nine dollar Manhattan seems out of place... this isn't Scottsdale or a hotel bar.\n Well the good news, Thirsty Lion is quite lovely inside, plenty of seating and dim lights, really not a bad place to relax and mellow out. Plus, the food was great, everything we've had has been very tasty, now it's all been off of the happy hour menu, but that's the only time I'll probably be here, the scotch eggs are delicious and my main recommendation. I'm hoping that in time prices will drop a bit and more craft breweries will get represented, but aside from the nice interior and spot on happy hour menu, Thirsty Lion just doesn't stand out enough to steal me away from Boulders or Taste of Tops...", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "HQsxUh2gNKVJpm3qMBIkMg", "review_id": "3aJa3Pm7G9W3noE7tHHoIQ", "stars": 5, "date": "2008-10-31", "text": "Best chocolate ever! I tried Leonidas for the first time in Europe and have been looking for it ever since in AZ. I'm so surprised they opened a store here, would recommend it in a heartbeat. Also, staff was very friendly, a great place to get gifts! I just got an assortment of chocolates and was very happy with my choices. The banana creme was surprisingly good and so was the champagne flavored...", "type": "review", "business_id": "I2tzm9Xex2Aa8wBuRsqskg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "YxRKHhhuWxX96_quP9Tgyg", "review_id": "TULOIrshtok9WcZpnCvXXw", "stars": 4, "date": "2009-01-27", "text": "we thtumbled into thiths playth a few monthths ago and it waths aMAYYYYZthing!!! totally gay but the decor waths awethsome and retro, like for therial. they had tonths of gaymths and it waths thso good! \n\nif you voted yeth on prop 8, you're stho thupid.", "type": "review", "business_id": "UPm6y8qsD6l-cX_fxl0SPQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "vYmM4KTsC8ZfQBg-j5MWkw", "review_id": "aDzPkWD2l5g_OlrWxUb65g", "stars": 2, "date": "2010-08-05", "text": "Best in Phoenix??? I hope not. Now, don't get me wrong. What I had was pretty good but that's about it,...\"pretty good\". Here's what I tasted and thought:\n\nPulled Pork : Tasty. Sauce was OK (not fab.), Meat was of good quality and was cooked appropriately.\n\nPulled (sliced) Beef : Meh., Meat had been a good cut but was dried out and a bit tough, Again the sauce was just OK. \n\nBeef Ribs : Tasty , Large & Meaty, Sauce was again... OK.\n\nMac. & Cheese : Most disappointing item of the meal!, Tasted like Kraft out 'o the box. \n\nGreens : This was the best part of my meal, Cooked appropriately and spiced very well.\n\nBanana Pudding - Ick!!, It was partially frozen and watery, The cookies were a soggy & watery mush.\n\nFirst refill on the sweet tea was .80 cents and then you have to buy a new cup if you want more!! What the.....?!?!?!? We're already paying a premium for everything and you're going to gouge us on drink refills??\n\nHonestly..... there's absolutely no reason for me to go back. I don't know if this place USED to have outstanding Q, and is now just serving this mediocre stuff and rakin' in the dough, or what.\n\nPretty disappointing and I wasn't even the one paying!!!", "type": "review", "business_id": "asebFFgabg_lfoNpGJHZlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cUxq5nIUp7S_t4Tlaz46YA", "review_id": "09Pf-RkN8Xh0dc7vLly2pw", "stars": 4, "date": "2011-10-12", "text": "There is nothing quite like Persian food; it is complex, delicious and sometimes like nothing you've ever tasted. Apart from dad's kitchen and sit-down places in Tempe and Scottsdale, there are limited places to find it in the Valley. Do yourself a favor and don't order a gyro; you can find one anywhere. Order one of the daily specials at their crazy cheap prices for Persian food and enjoy! I've had nearly all of them and they rock! These dishes take all day to make; believe me I know and you can taste why. And do not miss the saffron ice cream with rose water and pistachios.", "type": "review", "business_id": "6lcay-E_ssmzpGanKbColg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1PWFPOmqvLx3sGKuuKQr9Q", "review_id": "K69kzo4APea9EPsHllby_w", "stars": 4, "date": "2010-12-18", "text": "Yucca is a great neighborhood library, if I may say so. It's not huge, but you can place holds on anything from any Phoenix library, get on the internet, read the paper, and any number of other things.", "type": "review", "business_id": "oY8cUWaYUsGjkapcKADLRw"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "xVt7R-T_317Xi8WUCbgUsQ", "stars": 4, "date": "2008-06-13", "text": "Dear Weather & Coffee,\n\nI'm really sorry you had to close. We had a lot of good times together. Every time I came in, you always seemed really happy to see me... even though you knew me by the wrong name. \n\nI may be Kelly to everyone else, but I'll always be Aubrey to you.", "type": "review", "business_id": "QQ-lSbz4ARm1MQA5z8-nAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-kIvLyWpY17aRa0vPp-RmA", "review_id": "JCNfra6DrpT9-tAsyo2uXQ", "stars": 5, "date": "2011-03-03", "text": "We have been here several times and each time has been excellent. Our first time was in Hawaii and we were happy to see one in phoenix. \n Me and my Fiancee had a four course Valentine's day dinner here. Dinner was great. Food was timed right and our server was on top of it. Our server sent us a personal handwritten post card thanking us. Dinner came to be a little over $200 with drinks, so yes its pricey, but my fiancee and I loved it so it was worth it.", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "_yXQDvpgEdn6wheL09yfOA", "stars": 3, "date": "2012-04-30", "text": "This place was just 'eh' to me! I was just whelmed, not over or under! The service at the bar leaves little to be desired! I am not sure what it is about Scottsdale restaurants thinking they have to be snobby to people. We ordered drinks from an un-friendly bartender and then waited another 20 minutes to even be acknowledged again! \n\nThe food was ok! The bf had the berrimundi which he liked but wasn't wild about the side it came with. I had the meatloaf, which was good. The gravy and mashed potatoes had a great creamy flavor. My sister had the lamb burger with fries that were cold and not very tasteful. There is not much on the wine list either.\n\nI probably would not come back here because I dont think it was worth the hour wait for the crappy service at the bar. I would rather venture down the road to Olive and Ivy.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3iuZFgxUFKLxOplkDrFmyg", "review_id": "4i4kjVnODPRRFacN5wNqHg", "stars": 5, "date": "2012-10-29", "text": "Back when I lived in Phoenix this was one of the only places I bothered with eating at. Started by a Chicagoan who moved to Phoenix, they get deep dish right and make just about everything else in the style of delicious. I was in town last week to hike the Grand Canyon and stopped in. Man, I miss their food. Thank God I live in Chicago and can get something similar! Be warned though. Their food is BIG.", "type": "review", "business_id": "ML1RJdeZ7bbfMrHvJ7m99A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "674VW1R9LJb_jJIfX2tcRA", "review_id": "_tKYcXeHxRCkKk-9WSxwSw", "stars": 4, "date": "2012-09-04", "text": "Based off of these great reviews i decided to give Z's Greek Restaurant a try. From my experience I give this restaurant an overall four stars derived by their Greek styled atmosphere, great food selection, and customer satisfaction! Z's is a family friendly zone which is good for all ages from kids to adults. There is barely any waiting line plus, the food is dished out quick. Best of all, there is a drive through window which allows easier pickup especially on the go. I would recommend this restaurant to anyone who has never experienced Greek food and is willing to taste a different styled recipe from their original comfort zone. Everything is prepared tenderly, juicy, and well seasoned! Give Z's Greek a try!", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b2XPhXPQ41qWysIK6RTsFw", "review_id": "-hqEQUxefQSjHMcMpqIHHg", "stars": 4, "date": "2012-08-17", "text": "I finally went here, after reading the reviews and pouting about how busy I was with work and how it is hard to find someone to be my Designated Driver, since Arizona is way more strict than NJ when it comes to people drinking and driving. \n\nSo, I finally arrived at Casey Moore's last night and was impressed. This is an upgraded Irish pub/bar with a great beer selection, yummy yummy yummy crab cakes, and a cozy atmosphere. \n\nIt was Thursday night in which they have a special on Kiltlifter (sp?) and I was pretty excited. The music was not that good. I wish that they would have a DJ there on busy THursday nights. That would really enhance the atmosphere and probably their people traffic as well.\n\nI vote for a DJ on Thursday nights, heck, I have amazing music, I could just be the DJ.\n\nI will be back very soon to try their oysters and some of the other seafood dishes and of course more beer on tap.\n\nSeriously, you need a DJ on Thursday nights.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6wkKxBVwQmB2DnjllZvk0A", "review_id": "smEx1ifslt1J2TTO4NauVg", "stars": 4, "date": "2011-06-26", "text": "We had a group dinner in one of their private rooms... the wine room, which as decent, obviously wines all around us, but a nice room for a group of 10. Anyways, the food we had was amazing... be sure to try the the appetizer - DRUNKEN BREAD (Cabrales fonduta', White Wine, Garlic, Herbs). For my entree I had the RIGATONCINI w/ Sweet & Spicy 'Schreiner's' Lamb Sausage, Heirloom Legumes, Local Greens, \nCharred Tomatoes, Chili, Pecorino. It was perfect with a nice kick to it. Definitely recommend it. And for dessert...PRADO SUNDAE\nHouse Made Vanilla Gelato | Apple Wood Bacon | Caramelized Bananas Amarone Cherries | Warm Chocolate Sauce | Roasted Almonds |\n Whip Cream | Biscotti Crumble... amazing... my first bacon dessert and it was worth it. Also, try the 'DULCE DE LECHE' BREAD PUDDING \nBourbon Caramel Sauce | Vanilla Anglaise | Chantilly Cream. And get yourself a mojito while you are there, surprisingly good. Of course this is the main restaurant at the Montelucia Resort, so expect \"hotel pricing.\" The menus are also seasonal, so my recommendations now might be completely different when you go there.", "type": "review", "business_id": "RLjA7TBXJfyqDfPuVCcrtQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "wttePGxhTumTTUinL5tlTg", "review_id": "nXYrr7wiLpm7_C5ySBjoTw", "stars": 5, "date": "2011-06-13", "text": "Consistent offerings of service, food, atmosphere and drinks is what makes this franchise successful. \n\nNo matter whether I've been to Fogo in DC, Baltimore or here in Scottsdale, I get the same gut-busting food and well-made drinks in a place where I could either wear a suit and tie or jeans and a t-shirt.\n\nA specific note on this particular location- there were a lot of families with small children on this particular Friday night. No judging, but I've never seen that at any other Fogo. Fogo back east is really \"date night\" or the kind of place to pre-game for a bachelor party or a business dinner, but not to bring infants and toddlers. Possibly a by-product of its location on Scottsdale Road in a strip mall near a few hotels. IMHO, this is not the place to bring kids, but I respect the rights of anyone to do so. If I was traveling w/ kids in tow and I didn't have a Fogo in my city, it'd be hard to pass up. In any regard, it did not bother me in the least. I was too wrapped up in my company and the food and those drinks. \n\nYou will easily spend over $75 per person here including tip, so prepare to camp out, eat slowly, enjoy your meal and be treated like royalty.\n\nThe house special sirloin will make you rethink how to prepare sirloin at home, it's that good. Don't fill up on salad at the salad bar- you can do that at Olive Garden- but do enjoy the cheeses, mushrooms, vegetables and cold cuts which raise the salad bar. Did you see what I just did there?\n\nNice wine selections here. Ask for a Brazilian red to enjoy with your meal if you have the coin.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0s__8hD0Y_JUp6obKz5hxg", "review_id": "ZZSVxJ6N-_e4kayRgXxaKA", "stars": 1, "date": "2012-12-27", "text": "Let me first say if I could have given 0 stars I would have.\n\nMy wife and I went to this place and were EXTREMELY disappointed. We had gone to a different Pancho's many years ago and were hoping it would be like that. The choices were very very limited and basic. There are so many amazing Mexican dishes yet my only choices were a tamale,taco and some horrible tasting enchiladas. How does a Mexican food place not offer burritos...have you guys heard of a bean burrito? Its pretty popular and would be a good choice to offer.\n\nThe only food here that is worth eating is the baby churros and the Sopapillas, which actually were good. Unfortunately I didn't go to this place to pay $20 so my wife and I can eat Sopapillas. \n\nPlease listen to my advice when I tell you to avoid this place. Take your money to taco bell and get a lot better Mexican food at a fraction of the cost.", "type": "review", "business_id": "od49_DFUJY9louGx80My-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cTQOEKBVSqrsyVl2Ssyolg", "review_id": "Gf-Vm7zIjC63hmHSCEN4vQ", "stars": 5, "date": "2008-02-24", "text": "Their frozen drinks carried me through last summer. They have free air (for your tires) and water (for the radiator) at every location I've ever been to. Their hot sandwiches, though greasy, aren't TOO greasy and actually taste like food. The coffee is pretty good, and they have more ways to tart it up than Starbucks does. QT frickin' rocks.\n\nAnd BTW, the QT stands for Quick Trip.", "type": "review", "business_id": "EdPa3d82Dq_za2Wf7Dtysw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2bnbXgguLNwvqsfVFaO0Ow", "review_id": "CuwRm6GZsUkX89QwWlg4sw", "stars": 5, "date": "2011-06-14", "text": "North Glendale's cool new hangout. Formerly Cactus Willy's. Completely remodelled! Follow us on facebook at Justin Willys!", "type": "review", "business_id": "hZyl8ShUo-D0ahqJXTYWAg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "MfZszvOQNY_xdbA9ruz_zQ", "review_id": "lwtZkNLdOKmCtJOYNui0QQ", "stars": 3, "date": "2011-08-06", "text": "Chicago style hot dog?! Sign me up! I just moved here from Chicago, and I've been dreaming of Portillo's since I left. Where am I going to find something even close to that in AZ?! I was hoping this would be it. The hot dog wasn't that bad. The fries on the other hand, weren't so good. My husband ordered a beef with hot peppers (giardiniera), and they were far from hot...almost tasted pickled. And the sandwich? TINY!!! It was like a 4\" beef sandwich! I didn't taste it, but he said that it just tasted like a roast beef sammy...not the Chicago beef that we are used to. One of these days we'll find a decent \"Chicago-style\" restaurant out here in AZ.", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l6ipqaprwapROa8sG6IfdA", "review_id": "BVaxlHHbj9T6Y9ES-IZkhg", "stars": 4, "date": "2010-09-16", "text": "My awesome musician lovergirl wanted to bring me here specifically to see Nicole so we could have some kind of pianist bonding session. Unfortunately, she wasn't playing when we went, but I am thoroughly convinced that she is extraordinary. \n\nI ordered the sirloin steak salad and mushroom-brie soup. Our server was exceedingly friendly and helpful, and service was prompt. And the food! The soup was worth the visit in itself. It was creamy and mushroomy, and oh so delicious. The steak on my salad came out a little rarer than I would have preferred, but I still enjoyed it, and it was a huge portion at that. I love that my salad wasn't over-dressed, and I was definitely a fan of the candied walnut-blue cheese thing going on up in that sucker. So good.\n\nBesides the fact that they serve great bougey food, have incredibly witty and awesome wait staff, and sometimes have half-off bottles of wine, I totally fell for My Florist Cafe's atmosphere. We had a late dinner here, and the whole place was lit in cool blue. It felt very accessibly hip. This is a place I'd definitely come back to. You know... the next time I'm in Arizona. I'm actually very much inclined to visit the Ventura location, which is only about one hour from my home plate--as opposed to five.", "type": "review", "business_id": "vSWEXsXmJw5ozuF4zqE9ng"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "TRl5jiNFI2m0wfH6CqO3_A", "review_id": "-lpKpakzDQ0ecnkx0X9R4A", "stars": 2, "date": "2012-11-26", "text": "Concept is great. Stores are cool, but expensive. Lunch was a bummer! Ordered chicken salad sandwich and the tiny sandwich on a great roll with the tiniest amount of chicken salad was disappointing. For that money I expected at least a regular sized sandwich. Glad we tried it, but won't eat there again.", "type": "review", "business_id": "amIKbXtk8TCoySw_xBjFKg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "KFDHF6MHippK_SP9TI0bxQ", "stars": 4, "date": "2012-05-29", "text": "We moved here from Northern NJ where a NY style deli is worshiped right along with any big religion yet in our last few years there, all the great NY style delis by us were closing in rapid succession. Going into NYC just wasn't an option each time I wanted some half sours and a knish. It took moving to Scottsdale, AZ to find a solution - go figure.\n\nThe gigantic menu you'd expect, pretty good bagels, great breads, not to mention the grilled cheese/Jewish sliders/patty melt/kosher dog with kraut/knish/fresh chips/potato salad/macaroni salad - all are awesome. I did not care for the Reuben I tried, however, I am crazy picky about corned beef and I realize that a true NY deli serves the meat a little fatty so that's my hangup. Husband had an omelet today that could have fed 4 people - he loved it. \n\nIf you are going to Chompies with someone and it is their first time, force them to look at the menu online first or you will be filling up on half sours for some time as they decide.\n\nGreat service, efficient but not pushy.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "E4HbTIHd9PVjUnEKpysaLw", "review_id": "U3TIW2d5KIsyGi5SknNpiA", "stars": 5, "date": "2011-12-29", "text": "Very good place for breakfast and their pies are to die for. We've been here about five times and they never seem to be crowded, which is a shame. Their staff is always friendly and the food is always good. It's like a Dennys-type place, but I think the food tastes better. I've honestly never had a lunch or dinner item but I don't think that's what you go here for :) The prices are very reasonable. Once again, pies are TO DIE FOR! We've had their strawberry pie (x2), pumpkin pie, peanut butter chocolate pie and most recently, their mixed berry pie. We're going to be moving across the valley and I'm actually a little upset this location won't be coming with us.", "type": "review", "business_id": "VX2Jw-AxnE87KS385HDuWQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 3}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "5lVXHeAoMhQqpqq9gQxFWg", "stars": 2, "date": "2009-02-23", "text": "I've been back a few times since the last review but the most notable was to see DJ Z-Trip. He was awesome, no complaints there.\n\nBar Smith though? They failed on so many levels. \n\nI got there sometime between 10:30 and 11:00 and there was about a 20 minute wait out front. Not the end of the world or anything but after finally getting in, there was a sea of bodies and another very long wait. About 50 people were lined up by the stair case waiting to get upstairs. There was a bouncer not allowing anyone up there until people would slowly trickle out. Why they put Z-Trip on the patio, I don't know. It's the size of a shoe box and was clearly to capacity before 11 PM. FAIL FAIL FAIL FAIL FAIL!! \n\nI was in various lines roughly 50 minutes and still hadn't made it upstairs. Forget about stepping out of line to get a drink because you'd lose your place. The short of it is I paid for pre sale tickets, managed to get there at a decent time, and still had to wait close to an hour just to get in the same room as the guy. It was a total let down. \n\nAt that point I was so ready to just walk out and ask for my money back. They clearly oversold the event and didn't give much thought about their patrons who paid money to see this DJ. They were going to fit every last body into that place if it killed them...and everyone else in there. \n\nAfter finally getting upstairs there were so many bodies, no one could move at all. It was a total clusterfuck. I finally made it to the back bar and stood in line for 10 minutes just to find out their card reader broke earlier in the night. Fantastic. No signs saying it was a cash bar, that would have been a nice gesture. \n\nAlso, the bathrooms were downstairs, so forget about having to pee AT ALL during the 2+ hours you're there. If you had to go, you better hold it, otherwise you'd be waiting in line for another 30 minutes just to get back up. \n\nBy the time Z-Trip came on, the sound was bass heavy and mildly distorted. I inched my way to various parts of the patio but the sound didn't get any better, so my partner and I said fuck it and went downstairs for the rest of the night. Thankfully they were playing his set downstairs and upstairs. At least people could move more easily downstairs. Plus the sound was better. And the bathrooms were actually accessible. \n\nEven at the end of the night, there were people standing in line waiting to get upstairs. Bar Smith gets a huge \"F\" as far as I'm concerned. I won't be back to this place for any headlining DJ. They obviously don't know how to run an event.", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VeycloT_I8xSjUdHP-EHyA", "review_id": "2jBIqSC4ylNihVdn2b7PaA", "stars": 5, "date": "2010-08-14", "text": "The best breakfast place, bar none! I love that it is a local, non-chain place and they do everything delicious!! The french toast is to die for and the plain and simple (eggs, bacon, potatoes) is perfect! My husband and I split these two dishes and it is plenty. We always leave stuffed!! Be sure to make reservations for a Sat or Sun morning breakfast, otherwise you'll be waiting at least an hour!!", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "xFdK5lgUdeT3bWC7_MvcyQ", "review_id": "_51nwhuYZBM5HQI0DazosQ", "stars": 4, "date": "2008-08-30", "text": "Seriously, their happy hour prices can't be beat. A beer, a spicy tuna roll, calamari and avocado egg roll for under $20 including tip. Service was attentive and friendly. We had to lurk around the bar area for awhile to get a table, but that only speaks to how popular this place is. If you are looking for an inexpensive dinner out that doesn't involve Denny's or Olive Garden this is a great choice.", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3uEbewOQqdsvIoswNgdQ9Q", "review_id": "Ovzfaz-aDGIJRTUg5uNMBQ", "stars": 4, "date": "2011-11-15", "text": "I stayed at the Montelucia for a long weekend and went to Joya Spa for a massage and for the nightly blow out special. I wish I would have taken advantage of the spa each day since we were staying at the resort. It is a beautiful spa. Although it is pricey compared to other spas I've been to they pay attention to every detail and the staff is great. My massage was unbelievable. I should have requested the longer massage. I also got a deal on the massage through a separate website since they did not offer any discounts on services. The reason I did not give them 5 stars is because they automatically add a 30% gratuity to your service. The prices were extremely high to begin with.", "type": "review", "business_id": "XTIIAZspxssIF7WenlXmrA"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "ptPHGqr1MmmF6Dd6vlYkEg", "stars": 2, "date": "2011-08-03", "text": "Not impressed and probably won't be back. I came for lunch and was immediately turned off by the lighting and d\u00e9cor. I sat down and began to peruse the menu when I saw \"Ask server for bento box selection\". I asked the server and he looked at me as though I had grown a third eye. He told me they didn't have bento boxes.. I showed him the menu to which he said \"hmff that's weird\". \n\nNone of the lunch items on the menu struck my fancy so I ordered the lunch special. I got the chicken katsu, it was over fried, hard and dry. The accompanying mammas roll had an overwhelming mayo flavor. And guess what? It came in a bento box. \n\nThere are a ton of great sushi spots in this area so Shogun really needs to step it up to be in line with their competition. (Thank God for Yasu's!)", "type": "review", "business_id": "r7Ge8_c5Y2TXthb4CSjzaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "PDRWbCZa92irf8mK5X_Kig", "review_id": "2TVbs6123FVz0HCi-iLc7w", "stars": 2, "date": "2011-10-18", "text": "I may make a few enemies in writing this review, and I may even get kicked out of Tempe completely, but seriously, Four Peaks is not the love of my life. Granted, I don't care for beer, so this is more or less a review of the food, atmosphere, and non-beer-like drinks. I have been here a few times with the husband (he loves it here) and I just don't get the hype. The food is bar food. Straight up bar food. I like the outdoor seating much better than indoor. Inside the place feels a little dreary, much like many bars I have encountered. The servers are friendly enough, although sometimes the service is a little slow. I get something different to eat every time, which if you know me, is not a good thing. When I like something, I get it every visit, but here, I am just searching for something - anything - that I like enough to order next time. Sigh. I know I'll be back, and I can't say I dread coming here - I usually have fun. I just feel like there are many places I'd rather spend my money on.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1fFt8FJ8rMQC4loPztBHkg", "review_id": "BOpuA5b14L5O2IoYkYO2-A", "stars": 4, "date": "2011-05-17", "text": "This was my first time \"hiking\" and we did it in flip flops. We were here on a Saturday afternoon after going to the zoo. There weren't really any signs telling us where to go and some of the parking was blocked off. There also wasn't a trail head (which I thought was normal) so we just parked randomly in some ramada and walked up. \n\nThe view is amazing and probably only took us10 min to walk up there. Definitely recommend going for a \"hike\" up here if you are in the area.", "type": "review", "business_id": "NXsw4z0AtaILgS4-UxSWUg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "OWeLkbeU0Gq3zamP-SjtfA", "review_id": "eUm7AAXNuBtYqGIqvEGBpQ", "stars": 5, "date": "2011-06-24", "text": "My husband and I eat out a lot and we had the best dining experience ever the other night! We sat at the bar with the bartender AJ and he was such a delight! We had happy hour which was probably the best deal in town! 5 dollar glasses of wine and half priced appetizers!?! My favorite was the steamed mussels. We loved it so much we also had dinner. The classic pasta deal was the best. Getting to take one home gives you at least two more meals, the next day. It's hard in this economy to get more bang for your buck but Maggianos they are doing it right! We will defiantly be back for more!", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7RZ0mJJ00IiT56sloLBd1w", "review_id": "Bu5Gn5x5XDfy_ClrtKwaDA", "stars": 2, "date": "2012-02-28", "text": "As far as the sandwiches go, the place is fine but just thought I'd mention that if you are trying the broccoli-cheddar soup late in the day you may find it \"overcooked tasting\" bordering on acrid and burnt like we did.\n\nI guess they assume everyone is going to order a $5 footlong because pricing for six-inchers is not quickly established by looking at the overhead menu.", "type": "review", "business_id": "g8DDgeadYPdtGfkszQ60iQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ng3hl9D1EzsmSDHnXXfGBg", "review_id": "xmaPWd66NNDzZTUa1seCVg", "stars": 5, "date": "2011-10-23", "text": "My dear love and I went to the museum on a romantic date, and had such a lovely time. I hadnt been to the museum in years and it was a lot of fun to see some paintings I remembered from my childhood like the Frida Kahlo. They firefly room is utterly transporting as well. Frankly, I dont know if it was the art or my dear love that made the evening so wonderful, but we will go again soon. I strongly recommend a strolling date here. Wednesdays and maybe one other night are free. Oh and here's a tip-if you cant find a space, park across the street at the Viad Tower. Its free if you exit from the north side.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "lk2kaOszLpP7tnVtCJclww", "review_id": "pHQxVgno8JnzsjTY_us-Fw", "stars": 2, "date": "2012-04-01", "text": "The only plus to this place was that the bartenders are on their game, otherwise leave it for the Jersey Shore wannabes and slooters that get turned on by extra extra medium Tap Out t-shirts.", "type": "review", "business_id": "qiFTZ7aJz-FXt1wz8YigAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rg5pRVVh-mtBjNqKB1N2Tg", "review_id": "htyDdBpf7jQds5NU6veOMA", "stars": 4, "date": "2012-04-29", "text": "My wife and I went here and sat on the patio near the canal. The temperature was perfect for being outside and the view of Camelback was sublime. My only complaint about the seating was it was difficult to read our menus when we were there in the evening.\nOur waiter was friendly and helpful.\nThe chicken salad sandwich I had was very good and my wife loved the burger she ordered.\nAll in all a very nice and relaxing Sunday evening dinner.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "4vSGcZyNfIuKYUP6z9Cbyg", "review_id": "CNuixieP6B-BRKGZyWpcGQ", "stars": 5, "date": "2010-01-09", "text": "This is a great dog park. Plenty of grass to run around on, and there is always a good crowd to play with. And drinking fountains and places to sit. The majority of the dogs are nice, but there are a few Scottsdale poodles who think they are the shit and their owners just ignore their bad behavior. I just stick my gum in their curly hair and go on with my day.\n\nThe best part of the park is when I get home and the dog takes a nice long nap, and I can do chores in peace.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "6W8g1cFTauSG7GsZGNhIjw", "review_id": "v-fRwuECMwW4BI2ppTnEcA", "stars": 2, "date": "2012-04-08", "text": "We've been here several times with our kids and grandkids. It's a good family spot, but the service is just okay. We love the fresh chips, and the wings are good. Salads are 'meh'. We'll come again because it's a good spot for the kids, but we'll come expecting not great service.", "type": "review", "business_id": "7K3xiP-5sj_x3QWHlIFFxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jYQTTrMMRTBJvrNNSPIAfg", "review_id": "C3F0kLSSEteBvx97qtUrfw", "stars": 3, "date": "2011-03-31", "text": "Good food, but very expensive for a simple breakfast joint ($8-10 for most breakfast items). Also, the menu has very few healthy options...which isn't a problem for me, but is for my wife! How about putting an egg white omelet on the menu?\n\nSeems to be family owned and does have a good atmosphere. But at these prices, I wonder how long it will be around. There were lots of empty tables on a Sunday morning, which has to be the bread and butter of a place like this.", "type": "review", "business_id": "pqkwR2me0LhEZulRcQpOuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "-F32Vl8Rk4dwsmk0f2wRIw", "review_id": "vvBCur_XASLeCeNZesI5sw", "stars": 4, "date": "2008-01-31", "text": "The two things that jettison my brain into a Barrio Cafe daydream are:\n\n1) The Sangrita\n2) The Churro dessert\n\nIn fact, if this place was called \"Barrio Sangrita and Churro Shop\", i would still want to run up to the building and give it a big hug.\n\nReally, enough has been said here about the food, or atmosphere, or whatevs ... but if they're hoping to leave a legacy in Phoenix, its with these two items.\n\nI prefer going to BC for brunch on Sunday. I enjoy that menu the best. Oh, and the table side Guac is a nice touch.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xCY9C6KN9xTDzKrow9iivQ", "review_id": "bIN2sPTvZ17dSzrfkzx7pA", "stars": 5, "date": "2012-10-22", "text": "I was told to see Greg after a local shop diagnosed my exhaust problem. He took a few minutes to look at my car, told me what I needed and what it would cost. I went back a week later, he did the work in the time he told me it would take and there was no surprises and my car is doing well. I would recommend this place over ANY muffler shop. Plus you support local business and not a chain.", "type": "review", "business_id": "6FECmOLQSICW1ykyBbEHng"} +{"votes": {"funny": 4, "useful": 7, "cool": 4}, "user_id": "waD2euOMPTnTzQ0thq3H6Q", "review_id": "Uzk3NU0zmL8Q7d5iHWIQhg", "stars": 5, "date": "2009-01-19", "text": "My experience here was awesome from start to finish. I was greeted by an extremely friendly, smiling man (I believe to be the owner) who helped me with my order decision, took my order, then asked me to \"please, sit down, be at home\". Awesome.\n\nI inquired about the salad and asked if they put any feta on the salad (they don't), he followed up informing me the sauce they serve has dairy, but that he would substitute garlic sauce instead.... now this might not seem like much, but to someone who has food allergies like myself, having someone with intimate knowledge of the ingredients and the care to make sure they don't serve you anything that might not agree with you is really a blessing and gives you assurance when you eat there. Huge bonus.\n\nI had a half chicken shawarma and half gyros plate which came with hummous, salad, rice, cucumber (substituted instead of pita since I don't eat wheat... nice touch) and a side of garlic sauce. I do not normally enjoy chicken shawarma, but he insisted I try. Well, he was right, I will say now I love chicken shawarma, Aladdin's chicken shawarma. Their gyros was awesome too.. homemade, not the typical Kronos Meat Cone variety. \n\nI paid after my meal and was welcomed back with a handshake. Service was awesome, food was awesome, and they were able to easily cater to my picky food needs. A+!", "type": "review", "business_id": "1zdwPAgiJFJhPeS3YIY09Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "l5upkLok78p-NQN_3uurrA", "review_id": "rMjOGresCVz2dvJXJl5-MA", "stars": 4, "date": "2012-03-07", "text": "I love the feel of this cute restaurant! It was a beautiful day and we decided to sit outside. Their service was very fast and the staff was very attentive. It was lunch time so I expected them to be kind of slow but it was the total opposite. We had the ceviche for an appetizer and it was quite tasty. Also the chips and salsas are so good! I love how spicy their red salsa was! I had the chilaquiles with over medium eggs. Apparently it had pieces of shredded chicken and cheese. It wasnt your traditional chilaquiles but their own spin on the dish witch totally worked! My friend got the narco torta and he said that the egg was too over powering so he just simply took it off his next half lol Overall, I had a good experience and will definitely come again.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "4oBViNYcsWpPexC405Gh2w", "review_id": "TpyFIYraap3rnZj18NbHkw", "stars": 5, "date": "2008-11-13", "text": "I am disgruntled by the reviews I have read about Sapporo. I have a few things to say.\n\n1. I am tired of people complaining about the prices at Sapporo. When you compare price vs. quality you will always be in a favorable position. If you cannot afford Sapporo perhaps you shouldn't eat there. I am not trying to sound arrogant, but you truly get what you pay for. Sapporo consistently prepares the best sushi I have had in Arizona.\n\n2. I understand wait time may be an issue. I suggest that you arrive early and anticipate a wait. Honestly, is thirty minutes on a Friday night going to bother you? The food is well worth the wait. \n\n3. Please stop wearing flip-flops and bathing suits. Perhaps this is the reason you are experiencing \"rude\" service. A pair of jeans and a polo is fine. \n\nSapporo is a Phenomenal restaurant. In my opinion, Sapporo serves the best Sushi in Arizona.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vQayPl7cix0BFaSiL_t5XQ", "review_id": "X6epQQ8ehvvHoQfbBDcVlA", "stars": 3, "date": "2012-01-10", "text": "I love Greek food, but I need to stop letting my friends drag me to this restaurant. The staff is extremely friendly and the place is comfortable, but for me the food is always a disappointment. I know I know, it's a chain... and maybe I just have high expectations, being that I'm from back east where we have small family-run Greek restaurants on every corner.", "type": "review", "business_id": "XBm9ffI2pK-A_HcoHXAbcQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LFFcpdIUCSRpOlII8hWK_A", "review_id": "_37x0HOMHnlKUdhkrrCcTw", "stars": 4, "date": "2011-09-16", "text": "I'm not a coffee snob, but I love a good Americano. \n\nThis place has the charm you'd expect from a locally owned coffee shop complete with eclectic decor, artwork on the walls, odds-and-ends of gaudy lamps and stained-glass windows. The coffee is pretty good from what I have experienced. The air-conditioning is right where it needs to be as well. \n\nMost important factor for this business: very nice staff. That alone makes me want to come by more often.", "type": "review", "business_id": "dewq6aevfoNFvJBqM7PG5A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "C4lduID0NZMqzjQuIWlnbw", "stars": 5, "date": "2011-08-08", "text": "Falafel is outstanding here, dark exterior with green interior, and a nice spicy peppery taste that is satisfying. Cooked just right too for texture. Fries are a nice side. Prices reasonable here, plenty of parking, and a few atypical sodas available in the fridge. Note that there's just a few seats inside, since this is also a grocery place. To-go will probably be my main strategy for this great Falafel destination.", "type": "review", "business_id": "doEZAj-NSnoEMOJl5yXcNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "m21EE2_CqPzpXdKsYsbVIA", "review_id": "Vz5_KiTQtoZO9xU7NqQzvA", "stars": 5, "date": "2012-07-14", "text": "When I'm casual but want to feel NYC I go to Christopher's. We go here for a special occasion dinner or on the fly happy hour...which is the best HH food in town! Let me repeat that - best in town!!! \n\nHamburger with truffle fries, brick oven pizza or a perfect salmon salad plus a beer or glass of wine for about $10/person. Can't beat it! Sitting at the open kitchen makes me appreciate the setup and organization required to run a restaurant as well as the chef's tatts!? If you dont want the blaring heat of the brick oven, don't sit at the corner next to it...Phoenix is HOT enough in the summer, so cool off and let someone else do the cooking!", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QjDrAX6vHqewbWDAGj7upA", "review_id": "h_S9WcGCYJm1U961sZEkqg", "stars": 5, "date": "2011-11-24", "text": "I love this store! They have an amazing staff and the most modern clothes! I set my appointments with a few of the employees and I always get compliments on my outfits when I go out!! Hats off to the Ted Baker team in Scottsdale Fashion Square!", "type": "review", "business_id": "IRE33Q9XQMgWy92akbVCoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2uz3B-11DieFlELzqUCAlw", "review_id": "czxg5GD9WsnzdLB4Pgrykg", "stars": 5, "date": "2010-10-13", "text": "This is our neighborhood restaurant.\n\nWhenever I want Margarita Sunrise and desserts, I went to Switch. I never disappoint.", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LX23Z1Qnjaif9NBjhmXeVA", "review_id": "n86fus8Fhe-PTold5cQDVA", "stars": 4, "date": "2011-06-20", "text": "When dining out, I am a big fan of steak, and great service...Fleming's offers plenty of both. \n\nHaving dined at Fleming's on more than one occasion, I can confidently say that they know how to cook a steak to your requested temperature. At these prices, this should go without saying, but plenty of chophouses still don't meet this criteria.\n\nAll side dishes are a la carte, and on the large side, so I'd recommend sharing. The potatoes and vegetables are always great dishes.\n\nMixed drinks are poured well, and not priced too crazy, relative to the entrees. My staple, a Jack & Coke, was $7.50...I've paid more. The wine list is extensive if you so choose.\n\nService was excellent, if a bit methodical...could be a bit more personal.\n\nFour stars instead of five, because everything is just done well...nothing stands out as above and beyond, especially at this price point.", "type": "review", "business_id": "uVbt9dOe6qJgBBI4_XsXRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "FktbKOzznpoKTNXMVtc8EA", "review_id": "FubrebQ3LpIG9UFBC7DtFg", "stars": 3, "date": "2010-03-02", "text": "The best example North Scottsdale has of traditional Phoenix sonoran mexican food. Los Olivos restaurants have been around forever - at least since the '60's. The food is great if not fancy, and the place is pretty free of gimmicks. You can get your fix of cheese crisps (aka quesadillas for you CA transplants), deep fried tacos, chimichangas, combination plates with so much sauce and cheese you can't tell what's underneath but it all works together to taste so good. Los Olivos still plops down the free chips and salsa right when you sit down so you're good an full when that combo plate comes and glad for it. The atmosphere is more like a nice mexican diner than mexican cantina and service is solid. They often have mariachis playing on weekend nights. Margaritas aren't great, but the beer is cold. Don't bother with dessert. Cheap eats for all the food, especially since you won't be hungry for another 24 hours. If you're in North Scottsdale and in the mood for traditional Phoenix style mexican food, Los Olivos is a great choice.", "type": "review", "business_id": "AeoJkr_dlNshB078OepP8w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fR6Vch-D0L6OBnLMl8f9Sg", "review_id": "mdu-pasxgPiT2m5ZqcEk9A", "stars": 3, "date": "2011-10-24", "text": "I'd read about this place before (on blogs written by people from Utah) so when I was driving down Baseline and hungry and saw it I decided to try it out.\n\nIt is set up a lot like Chipotle, however the process of ordering is somehow not quite as clear. Additionally I wasn't sure what went with my meal and what cost extra.\n\nThat aside the salmon tacos I got were really tasty. I don't think I've had salmon as the fish in fish tacos at a restaurant before and I enjoyed the change.\n\nThe price seemed a little high, but not so high that I won't visit again if I'm in Gilbert and looking for a quick meal.", "type": "review", "business_id": "TbaAnzOTX2-boTbAp3e8Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gdNJzMx9duSZCBdiU1QKFg", "review_id": "62RkOn0aW7EG5TGFb1rK4g", "stars": 2, "date": "2012-10-04", "text": "I went here a couple weeks ago and got the sesame chicken. I was disappointed when I saw that it wasn't chunks of chicken, but a boneless piece of chicken that was breaded, fried, and then sliced into strips. The sauce wasn't that good anyway. I won't be back.", "type": "review", "business_id": "VQtMFcgkRz7MCIo9sPDaeg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "IAZt6MmGAkybHg7hu8OEhg", "review_id": "9xeE1dlGPjgWaZn0yijfLg", "stars": 4, "date": "2010-08-21", "text": "This place has good fast food, it's always clean, and the staff is super nice. SUPER nice. \n\nMy kids love the play area and it's a lot cleaner than any other fast food play area for sure. We love this place.", "type": "review", "business_id": "j-_jKQ-5IE4hqQzA-hsApw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9BiiY4Ga2PR7y35BQg0VCQ", "review_id": "YYXQzmY1XqN52M_K0CPtmg", "stars": 5, "date": "2011-09-05", "text": "The Phoenix Art Museum was a day well spent. The atmosphere was inviting and it was like around every corner was a surprise waiting to be discovered. Admission was free for me. How you may ask? Our local library has cultural passes for various museums, try checking out your library next time you go. The museum was inexpensive adventure that took me across the world. \n All the different exhibits kept me intrigued and interested. There were paintings, drawings, photography, and sculptures galore. There were even some animated pieces. I even stumbled upon a piece you could actually walk through. The layout of the museum is very easy to follow, as they give you a map and everything is labeled. You can go from the Asian culture, to English within a matter of feet. It is mind blowing. The whole world seems so much smaller, and it's brought together so beautifully. \n They offer guided tours, or you can walk around by yourself. There is also a children's section to the museum. I have nothing bad to say about the museum itself. I am extremely happy that I went, and would recommend that anyone go. It would be a great date, or family day, or even a day by yourself. The Phoenix Art Museum is a place that I think everyone should visit while in Phoenix. It will really open up your eyes and make you think.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "WVvu15Qem7gpNOzCpYc0Pw", "review_id": "P2iv1UOJTvg5zuzbxzgH-Q", "stars": 4, "date": "2010-10-01", "text": "This hole in the wall quite possible has the best Chinese food in Phoenix.\nDeffinitely the best Wor Won Ton soup and pork Egg Foo Young.\nGreat for carry out and they have a large delivery area!", "type": "review", "business_id": "Pv1H9KIGZTDgSaCDuTUjdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "V4LSqpWQyiTrJ4nJX4LJpg", "stars": 2, "date": "2009-11-27", "text": "I stopped in for a quick lunch and I wasn't impressed at all. I heard that the food was good but I've had better subs almost anywhere. They have very limited toppings. I wish I had gone to Mr. Goodcents down the street much better quality subs.", "type": "review", "business_id": "wzQAmzQopWcfoCG8lfiE_w"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "0QXFyiXyCFUdD0wm7ingtg", "stars": 5, "date": "2012-12-17", "text": "As much of a sweet tooth that i have (dark decadent chocolate is my weakness)..Toffee was never my thing ,never on my mind ..\n\nAnd then i sampled Goodytwo's toffee ..wowzer !\nSweet and salty toffee is regoddamndiculously good ..seriously good !\nThey have a toffee topped popcorn ..these gals are killing me ..oh ,oh the twozels sinfully delish magical pretzel mix with kettle corn ,nuts and chocolate .\n\nListen ,you can't put a price on happiness ,ha ha \nEveryone i love is getting their stockings stuffed with a box of salty-sweet love from Goodytwo's.\n\nNothing more delicious or sexy ,ya sexy then a salty sweet combo ..it is a heavenly pairing ..Goodytwo's has perfected this,worth every penny !\n\nRock on ladies !", "type": "review", "business_id": "gAwoeSYoyVjp5rcwnaTz2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o1_XGLgDbNqUUO7OSszShw", "review_id": "Ai6qY5AvVBqQm_PoCT4Ccg", "stars": 5, "date": "2012-12-24", "text": "Doesn't get better than this, the guys at the Chandler Mall location do it right, every time!", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "zlprnJhxUBgAYorZ_ZGyqg", "review_id": "ObLY-BzVMtLv5ZdlWE2mIw", "stars": 5, "date": "2009-09-04", "text": "Whenever I start leaning toward being a vegetarian like my daughter is, I remember the smell and taste of that scrumptious, melt-in-your-mouth filet mignon at Durant's. And the hot fudge sundae for dessert? Dang, just can't beat it. The bartenders are old school--not too aloof, not fawning, just professional and classy. The best.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 4}, "user_id": "-zzhFGw6I9wA5EtivKn89Q", "review_id": "aCiVSjDFAOvrM34TwNb8TQ", "stars": 4, "date": "2010-07-12", "text": "I have been a member here for a little less than a year. We go about 2-3x a week & love it! We bought the year pass because it was cheaper that way & we wanted to be more committed than the daily or monthly pass. I have been a member at other gyms but not as impressed as I am with the atmosphere here at Tumbleweed. It has an indoor track to get out of the AZ heat. The gym also offers racquetball which is a fun alternative to workout. They offer an array of classes (Zumba, Yoga, Pilates, Core Conditioning, etc) which are included in your membership!!!!. You can't find those options for the same rate anywhere else that I know of. The people are professional & friendly - there is no haggling over membership price, commitment, or being approached by personal trainers. On that note, they do not have any personal trainers, which if you are someone who needs motivation or accountability, this probably wouldn't be the place for you. But for the price & option of the daily pass - you could bring a workout buddy anytime!!! The other side to joining a Rec Center is that you are supporting your city & giving back to the community - not supporting some big money hungry corporation! Check it out!!!", "type": "review", "business_id": "fbQMfbq2edOFxPFHwnH3zQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uTyIIbOvXH_XZw7OEiTiNg", "review_id": "FeqOzQnZqa9t7zQOi0nJCA", "stars": 4, "date": "2011-12-19", "text": "I'm on a Outback kick. I can't help it. We ended up here one evening by chance and I love their steak and loaded mashed potato. The service is good, the food is good, it's not too crowded. Like I say, I'm on a kick.", "type": "review", "business_id": "kJ2aJFIJIK_Hnr8aj043kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-rutaYKpWZoWcupIJ2OkHQ", "review_id": "hfqeCxt_VukpqfOymZgs8Q", "stars": 5, "date": "2011-11-01", "text": "Got to love the concept, coffee, art and a co-work space friendly for start-ups. OSP has that feel of old college dorm meets painters loft. The coffee is good, the WiFi is fast and the staff is friendly and they don't harass you, I couldn't ask for more to get work done!", "type": "review", "business_id": "x5zpnLM73TCnsRcII7uzAQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OYpsdMcpdCdlkknpgpFMLA", "review_id": "mPfQyadgoANUGLjtfwT9YA", "stars": 5, "date": "2008-05-05", "text": "I came here on the opening night when someone from Gin Blossoms played on a makeshift stage, the beers were 25 cents and there was no food (but you know me, we ordered a pizza from a neighborhood pizza place.) Since then, they have added a full kitchen and the food is amazing (chicken strips that were designed for diners who appreciate tempura-like batter and are over the age of four), the beer is astounding (one word: Kolsch...makes me swoon) and the people are great. It's worth the walk wherever you end up finding a space to park--even better, ride your bike over like we do! The Sunday brunch is great. All of my friends sit and wish they had a student loan that would enable them to spend at least half of the day drinking here daily. I don't blame them.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "6V69RcsiXe5dkq82y6oeXA", "stars": 3, "date": "2012-04-18", "text": "The classic example of why we need half stars. Doesn't merit a four star endorsement but slightly better than the three star Meh. The hot dogs are decent but you'd expect more due to the pedigree of the owners. The place also doesn't feel well put together and like it's been neglected in recent times.", "type": "review", "business_id": "FX5mDx1QR31IoCZznjJJ5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "YyV0513rpYMXETvciIXfkQ", "stars": 3, "date": "2011-01-20", "text": "I think the Living Room is fine! Like another reviewer said, it's nothing particularly exciting or mind blowing, but it is a nice neighborhood restaurant that has solid food. I like some of their bruschetta options more than Postinos. \n\nI do agree that the music is too loud! The atmosphere is more ambient and I wish the music was commensurate with that. I always forget my server's name but he is very nice and helpful - no complaints there!", "type": "review", "business_id": "coXomDOValXzks6BwMHG1A"} +{"votes": {"funny": 6, "useful": 3, "cool": 3}, "user_id": "wNqwKWaRjClmcKsoJJRFow", "review_id": "XegKJ8EfOWOCYqZ7WzAvbw", "stars": 4, "date": "2008-07-19", "text": "This is one the best venues in Phoenix in my opinion for live music. Wonderfully low-lit, divey atmopshere, Great drink prices and down-to-earth crowd with no pretense or attitude. The bouncer/doorman was ALL pimped out and welcomed me with a handshake. This is really a great alternative from hitting a bar or a club. A true gem in The Valley. Only downside is parking. The neighbors don't like it if you park in front of their house-my friend was yelled at by one of them. And they \"punished\" me by positioning their trash cans in front of and in back of my car. If said neighbor is reading this review, know this: Next time, I'm going to take out your stupid trash cans. I understand it sucks to have people park in front of your house, but I was not loud, nor did I puke or urinate or your lawn, so chill!", "type": "review", "business_id": "ybXlbfOjrKDdz5NoC-G9Gw"} +{"votes": {"funny": 0, "useful": 4, "cool": 7}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "0UwHyz54cumPuLtoNDAD3A", "stars": 4, "date": "2007-12-14", "text": "When I think of Richardson's, I feel warm and cozy inside. I've been on several occasions and I love the atmosphere... I always have a good time at this hidden little gem of the city.\n\nThe 'Cuisine of New Mexico' is unique... they are known for their green chile potato as well as several other pork dishes. I usually go for the fish or seafood specials... they have a standard menu and then specials posted on chalk boards around the restaurant.\n\nMost recently I enjoyed the blackened scallop appetizer as my entree along with a huge house salad. The scallops were a little bit salty but cooked just right. They were served on a tortilla with rice, beans, and a yummy spicy sauce. Their salads are really tasty, and many of the entree specials come with a starter salad. I went with a group of 4 and we had a couple of bottles of wine and a plain pizza as an appetizer to share. Needless to say, none of us had room for dessert!\n\nBe prepared for a crowd whenever you go, but enjoy your company and the people around you. Call ahead and make a reservation if you can... if you do have to wait, sit at the bar or by the fireplace; you can't complain once you have a drink in hand and the scent of the fire mixed with hot food and good energy. I'll be back again soon, Richardson's!", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "NlvWKd0eF3QEpgd9mlcOaw", "review_id": "kKDcRJQzj58WgRE-8zEReg", "stars": 3, "date": "2008-12-07", "text": "It is absolutely no fun to have a connection at this airport! It was definitely not designed to be \"post-911\" friendly. Let me give you an example so that you will know what I mean: \n\nWe fly in from San Francisco and are told that we will have to go to another building via a bus. We get off the plane and walk...and walk...and then walk some more, looking around trying to find where to go to in order to catch this bus. Finally, we found someone who told us where to go. We walked and walked, and then walked some more until we finally caught the bus. We then had to find the correct gate and go through security again... \n\nFlash forward 8 days. We fly in and go through customs. (This, BTW, was a great experience because we were the only international flight going through customs.) We rechecked our luggage and are told that we have to go to another building. Yep, you know what I am about to say...we floundered around, having to ask where to go several times. Finally, we found the right place and got on the bus. It then proceeded to go to various parking lots, dropping off and picking up other passengers. My husband and I looked at each other, worried that we were on the wrong bus. Since it was already 4 p.m. and we had not had lunch, we were getting very worried that we would not have time to grab lunch. \n\nFinally, my husband asked the driver and he indicated that we were indeed on the right bus. We continued going around parking lots until we came upon another bus. The driver told everyone on our bus that we could sit around and wait for 10-15 minutes, or we could get on the next bus and get there quicker. Of course, we all grabbed our suitcases and boarded the next bus, which proceeded to take us to the correct stop (after picking up additional passengers along the way.) \n\nNext ,we entered the terminal and jumped on an elevator to take us to the security line. There were only 2 lines and of course, we got in the line with the family who had to go back 6 or 7 times because they kept trying to go through the security line with belts on, shoes on, liquids in their suitcases...you get the picture! \n\nAnyway, we finally got to our gate and were able to grab a slice of pizza before boarding our plane (not before enduring the antics of a 70-year-old United Airlines power-hungry granny who couldn't seem to get her act together, but was determined to show everyone who was boss...)", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z63UkzjGh91ERnOgamVarw", "review_id": "K4HmpijSXCZL5QGIoomYzA", "stars": 4, "date": "2011-04-07", "text": "Great food, great service, very nice ambiance!", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rotKO3R8h23YbiLFaZ-BLg", "review_id": "j2G9iV9c8uBC0Y5I6ykhvw", "stars": 4, "date": "2012-12-26", "text": "Great place for all your favorite kinds of Asian food. Wonderful service...it's a big place and they were busy, but since someone in our group was in a hurry to get to a flight they still managed to hurry things along. Overall good food and huge portions. The Happy Hour specials are great, too, so be sure to come during that time.", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HXBsqnlIBO61cg2yT5qafQ", "review_id": "he0KPDdijxinW5Rk6DXp8A", "stars": 4, "date": "2011-08-24", "text": "This location is clean and efficient. Our waitress was awesome and had our order in and food out VERY quickly. The food is all fantastic and of good quality.", "type": "review", "business_id": "dGcVT0WGenhh8Np76ta6AA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "NVZ_DCjzJhflzwsMtcF9PA", "review_id": "FnkNSPLmrj2aqdEXqX-Cqg", "stars": 1, "date": "2011-09-14", "text": "One word to describe Over Easy: disappointing. \n\nIt would've been an OK breakfast place if it wasn't for all the hype. I've been trying to visit this place since I found out it was on Diners, Drive-ins and Dives, so when I saw the deal on Doozy of a Deal, I purchased it right away. I made my own omelette with chicken, garlic, and spinach. The chicken was overcooked and the omelette and my hash browns were terribly greasy. My cousin ordered The Wolfpack and was also disappointed with her meal. It just didn't seem up to par with a place that was on Food Network.\n\nThe icing on the cake was the Over Easy Ice, their iced coffee. They could've given me a cup of water and cardamom and it wouldn't have tasted any different. We couldn't wait to get to the car to get some gum, to get the taste out of our mouths and even that didn't help. After reading other people's reviews, it looks like they hardly had any caradmom; so looks like Over Easy needs to figure out a way to uniformly make their coffee.\n\nSorry Over Easy, you were quite disappointing.", "type": "review", "business_id": "Cz0McL5lUaihqOIw0_Yo7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IGWmrl24TF2qDbuZE8JWcg", "review_id": "SNdIpkhGN7qKCPbBcnQgLw", "stars": 4, "date": "2011-07-30", "text": "I took my 6-year-old son here for his first taste of frozen yogurt. There is only one size of cup to choose from, and that is a little inconvenient. You have to make sure you don't fill it to the top. I had chocolate, and my son had a mix of cake batter, red velvet cake batter, and oreo. They were all good. In addition to those flavors, they had vanilla, tart, butterfinger, pomegranate, and a couple others I can't quite remember. There were a lot of toppings to choose from. Chocolate chip cookies, cut up moon pie, dark chocolate, white chocolate, and milk chocolate chips, karob chips, sugar free chocolate pieces, mochi, colored mochi, every crushed up candy bar you can imagine, lots of fruits, 4-5 different syrups, gummy bears, gummy worms, sour gummy twizzlers, gigantic marshmallows, and whipped cream. There were many more things, but I can't quite remember them all. It was the largest selection I've seen, but I'm pretty new to AZ and haven't had experience with that many frozen yogurt shops. The employees were really helpful. Everything was spotlessly clean, and the yogurt was really great. We will be back.", "type": "review", "business_id": "FWvEeULc-ItQTENPlIyfuw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "X9TPgFqs_ME-Vyp00IW_4g", "stars": 5, "date": "2009-12-08", "text": "As a regular shopper of Last Chance, I must equally love The Rack. I am a cheap shopper, so Last Chance has the lower prices, but like I have said before, the product can be a bit beaten up. \n\nAt The Rack it is a much more relaxed environment, way more organized, and the staff is so much more help full. I usually like to shop for shirts, dresses and jackets here. They also have a great selection of shoes, underwear, and pants, all a bit out of my price range though. Last week I found the greatest find! I found the best pea coat ever! It is black with double buttons and a belt, not too long and it has pockets in the perfect place. The best part, it was originally $160, their price was $59.95 AND all their wool coats we 25% off. Score! Now I will be warm in this Arizona winter. Haha \n\nCheck them out. The parking lot can be crazy this time of year, but what parking lot isn't. There is a rumor that Santa is stationed right outside the store as well. :-)", "type": "review", "business_id": "WowrRUKvjiLX4zT12xU_yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d1HQAouAzU27WCcSJLHYBA", "review_id": "vXmlEVvfdxTdIFmmQ5cCPQ", "stars": 3, "date": "2012-01-06", "text": "A bit slow for an airport setting and the staff were blaming each other for an order gone wrong for the customer in front of me...tacky.", "type": "review", "business_id": "sDXINrHrs8phlkzkwQNiBQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "tE--Ghpkni8cVY7mgKFVvQ", "stars": 4, "date": "2010-12-31", "text": "Who doesn't like Costco? I can only see two drawbacks. One - do NOT go on a weekend. It is crazy unless you go when it opens and get outta there quick. Two - you only have two people in your household so you don't really need a 20 lb bag of broccoli or a whole box of strawberries or tangerines. Other than that it's a great place to stock up. They have great deals on most frozen foods (try the all natural fish sticks). Great deals on bottled water and cases of soda too. If you buy a giant pack of Q-tips you won't run out for years!! I love the \"Wipe and Clean\" individually wrapped cleaners for your glasses. They come in a giant box of either 200 or 300 and last for at least six months. They have good deals on books, DVDs, CDs, boxes and bags of snack foods like Doritos and Sun Chips, pretzels and microwave popcorn. The bakery has some good stuff too. I don't typically buy meat here because I do not have a large family nor do I have occasion to feed many people. I hear the meat department is quite good though. And Costco usually has the cheapest gas around too. It's usually almost 10 cents cheaper then the closest gas station to me and I can stop by Costco on my way home from work. Now if you're shopping and you require a snack, hit the snack bar. Pizza by the slice, hot dogs, and these yummy things they call chicken bakes are pretty inexpensive. So where else can you stock up, get cheap gas and get a snack for cheap? Costco! It's worth the membership and that membership gets you other perks too. They send coupons in the mail every month. If you don't have a card, you should get one and check it out. I believe they only accept Amex cards but they do accept debit cards and cash of course.", "type": "review", "business_id": "ZAd2hniecnqH00t01ODQ3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "bKumNMH_bvUt0PGq098dcw", "stars": 2, "date": "2011-04-01", "text": "Maybe it was an off night - it happens to the best of us. I've hung out at AZ88 before several times, but on the night I plan to review the place they were so off. AZ88 Buffalo CK Sandwich -- I'll eat one or two buffalo CK wing, but to make it a sandwich, I can't recommend. Too much sauce! Also, make sure you chew fast because after a while the buns begin to go soggy - umm mushy bread with CK cover in buffalo sauce.... (Toast the CK it'll dry some of sauce and give a crispier texture) Service was off too! I had 1 beer and 2 waters -- that's all. If you know me I like a few bottles and at least a jug of water with my meal :) - I know I can't get enough H2O! I understand the place is popping, but after being seated, there was almost no direction for the wait staff. Ambience is always cool and love the layout and the feel of the place. Better luck next time! - Enjoy!", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "15cUUq1KnmjYOPoEbbydqA", "review_id": "pivgUkTYRnQsadoomaatcw", "stars": 4, "date": "2009-10-28", "text": "This is the go-to place for me and and a few of my co-workers. Why? Because it's somewhat healthy (one of my co-workers is vegetarian and they have a lot of vegan offerings) and we all love the food here. Not everything is perfect, but the meat is always very well cooked and lean, they sometimes use too much garlic (but I like garlic) but the portions are healthy sized, and you don't have regret later for eating badly. \n\nThe gyros here are great btw.", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 2, "useful": 1, "cool": 3}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "weQGB0li8vCZKHX_YbOaNw", "stars": 4, "date": "2012-01-20", "text": "I don't know if I should say I love this place or really dislike them. They are dangerous. It's like they know my number. I was supposed to just passed by and head to another store, but I couldn't help it. I saw the shoe sale, they have it every few months now. Tons of shoes for 65% off. I guess a girl cannot have enough shoes. Hey, my pretty shoes don't care if I gain or loose a few pounds. Today, I got 3 more pairs. Danny helped me out, he has been in the shoe department forever. I remember him helping me since 2006 at least, wow, that is 6 years now.\nI love some of the Gianni Binni Dresses, too (that is the house brand). They are very well made and if you are lucky enough to catch them on one of the big sales you can score a great dress for under $80.00", "type": "review", "business_id": "Y5waQA6SfhtHfwkahI4ytQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S4jPvmZU45O5bDaCzSrfxw", "review_id": "1H8fvMopPcKmNihI2QnjvQ", "stars": 1, "date": "2009-01-29", "text": "I've been here 3 times. The first was fair, so I gave it another shot, second time fair again, third time (kyoto was closed soooo....) let me start by saying, I've been in the service industry for awhile. I know the difference between good and bad service. If they had been busy this would be one thing, but there was us and a few people at the bar. NEVER HAVE I WANTED TO THROW MY BURGER AT SOMEONE AS MUCH AS OUR SERVER. The server was an idiot and the food was ALL burnt... medium burgers are not CHARRED on the outside and RAW on the inside. Steamed veggies are not CHARBROILED asparagus... everything was so horrible. We didn't complain, but we did ask about the charcoal that was our veggies.... Which we were given a crappy attitude in response. We weren't even looking for it to be taken off our bill, just a recognition that the food was TOTALLY burned and half our orders were wrong. BTW there was no offer made either to fix anything... in times like these SERVICE SERVICE SERVICE AND QUALITY / CONSISTENCY will get you through. if you don't know what a good meal is and you want to think you're cool cause you hang out in a place that looks like it was furnished by IKEA, you should try it. There are better places to spend hard earned money.", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "k7lKu0DYaMngcn9XW7yibA", "review_id": "x7_j5hVUCh_g3o9M5Q8-1A", "stars": 2, "date": "2012-06-21", "text": "This 2 stars is extremely generous. Wanna know why? Read on.\n\nMy party of 7 and a baby got to Pappadeux's around 6:30. We were told that it would be a 30-minute wait. It ended up being more than an hour. We were standing right in front of the hostess station, yet no one ever came to give us updates on how long it would be for our table. We would go check about every 20 or so minutes. One time we were told that our table was ready. When we went to check on it after about 20 minutes we were told that they were waiting on a busboy to clean it. A few minutes later they were still waiting on a busboy. In what universe does it take a restaurant 30 minutes to find a busboy to clean a table? We watched group after group after group get seated. A group of 7 that came after us was seated before us. We ended up being sat next to them; by the time we were getting our menus, they were finishing up their meals.\n\nOnce we were finally seated, we waited almost 10 minutes before someone came to our table to introduce himself as our waiter. When he asked how we were doing, we kindly told him that we were a little frustrated because it had taken more than twice as long as we were told, and we had been told twice that they were waiting on a busboy to clean the table. The waiter said that it was a busy night and said that he didn't get paid to deal with unhappy customers. He asked, \"So are you gonna do this or what?\" WHAT?! It was so rude - I don't know how he meant it, but it came across as sounding extremely annoyed. We were appalled and my boyfriend asked to speak to a manager.\n\nThe manager came over and spoke with my boyfriend. Not sure what was said, but after that things got much better. The manager brought us an appetizer plate on the house. Our food ended up being really good - including the alligator. I got shrimp etoufee, and it was great. The gumbo wasn't so fabulous. Overall, everyone was satisfied with their meal. We got three different drinks, and they basically tasted the same: like cherry Nyquil.\n\nThe food was good, but it's not always about the food. The service was horrible. Don't think I'd ever go there again. There are too many other places with great food and equally great service.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0KXxuKxlspsO6CrDLgQJ-w", "review_id": "fbL2z1wk-_fChGy2T35zNg", "stars": 3, "date": "2009-11-11", "text": "I think Zipps is alright. I fully remember this being the only decent restaurant near where I lived in North Scottsdale, so it was this or nothing.\n\nFood here is good, though they messed up my order and put sour cream on it...ew. But that's a common error, whatever.\n\nI'm not really a fan of sports, and it was loud in here, (which is to be expected), so that's not particularly my taste. However, I found it to be staffed with friendly people, which brings it from 2 to 3 stars in my book.", "type": "review", "business_id": "Hd6Kh_BcorPhCWVn6pMu4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xQyx6TU1r8lVeCspzYdrAQ", "review_id": "Drqi2rzZVtQZVSMYC7rTtg", "stars": 4, "date": "2012-08-18", "text": "Beautiful church!! We started attending mass here after they brought Jay Soto on as their music director. He has beautiful voice and also plays piano. We like Fr. Robinson the best - we've heard all of priests except for Fr. Sullivan. This is not a cookie cutter church - it feels like a real church with the stained glass and the stations. My husband is of the faith - not me and I'm not given a hard time for not taking communion like the other church we used to attend.\n\nI attend to hear the music and companionship for my husband.", "type": "review", "business_id": "WVwnnx8Cut5Wih2KYtXKcQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "bUv99Lua3zgkSXEJ2-KjzA", "review_id": "rWkM4DYhNIQJAhfabD7_qQ", "stars": 4, "date": "2012-03-18", "text": "Pretty good. Oxtail was awesome. Plantains were just like I remembered them in the Carribbeans. The jerk chicken was okay... Needs a little more heat. Beef patty good (I'd eat it again). The workers were outstandingly nice.", "type": "review", "business_id": "iDga4CEpgHTaS4VEQ0fQTw"} +{"votes": {"funny": 8, "useful": 15, "cool": 11}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "eST39HnrZsFukdXIOreGww", "stars": 4, "date": "2011-04-10", "text": "I'm a huge fan of Grimaldi's Pizza. The Better Half and I stopped in here for dinner and we had a huge appetite.....which is dangerous in a Pizza joint for me.\n\nI ordered:\nCaprese Salad - $7\nPersonal Sized Pizza ($9) with:\nSundried Tomatoes - $4\nRed Peppers - $4\nRicotta Cheese - $2\nMushrooms - $2\nJalapenos - $2\nhttp://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=DZ7xu0LF2IIg2_dI1c_CrA\n\nThe Better Half ordered a personal sized Pizza ($9) with:\nPepperoni - $2\nMushrooms - $2\nFeta Cheese - $2\nBasil - $2\nhttp://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=1PaOTe8Ys9uJUP3u4DjHiQ\n\nYeah, all toppings are al la carte here....so it's not cheap. The Pizza was awesome! I enjoyed every bite. The combination of the sweet taste of Sun Dried Tomatoes combined with the spicy kick of Jalapenos mixed in with Ricotta, Mushrooms, and Red Peppers hit the spot!\nhttp://www.yelp.com/biz_photos/mz48xdVWcCu463U3Lm7lhA?select=l4mZAt7mXpslp4LqexFy5g\n\nThe Better Half enjoyed her Pizza too. Since I'm on my no Meat diet, I took her word for it....as much as I was tempted to give it a try, I resisted....maybe next time.\n\nTo wash it down, she had 2 glasses of Brazin Zinfandel $8 ea, I had 2 O'douls $4 ea. All in, the dinner was $72 before tip.\n\nOverall, it was a nice dinner. I finished my food, she took home 1/2 of her Pizza.\n\nReturn Factor - 100%", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ok473RVQpmfPzTSoije-5w", "review_id": "wOKT8hx_C9nmXrYgABYVnw", "stars": 5, "date": "2012-01-13", "text": "I thought this place was outstanding! The staff was awesome, the food was excellent, overall appearance of restaurant was nice!", "type": "review", "business_id": "k76odRRsXPErPzB0gjn-3g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "eXG-j8bL7Qi7JsKtwndilw", "stars": 2, "date": "2011-03-02", "text": "I went for lunch on a weekend recently.\nKimchi pancakes, spicy pork bbq lunch special.\n\nThe seasoning on the pork bbq wasn't what it used to be.\nIt seems like the texture is dried out and the flavor is bland.\nThe sauce is probably watered down.\nIt lost the yummy sauce/ flavor/ seasoning it used to have.\n\nThe kimchi pancakes weren't that great either.\n\nI used to be so loyal to this place but after being let down the past couple times,\nI think I might as well just cook at home (and deal with the dishes later)", "type": "review", "business_id": "6Y-6Y6sy6qOQHrWI37zR1Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "7brf9WC0Gr_7bUBXEHs9FA", "review_id": "85470uspsJ5u6Qq5rHMytA", "stars": 4, "date": "2012-01-24", "text": "I finally tried out Valle Luna on Sunday. I must say that the food is authentic and one of the better Mexican restaurants in the Valley. The salsa and chips are homemade and simply tasty. I had the fish tacos that were fried and came with cabbage and soft shells - delicious.\n\nThe waitress that served me was attentive. I must say that the seating did take a while and I was one of two people in line, hence no five star here. The portions were decent, the tacos could have had more fish in them.\n\nOverall I am pleased with the restaurant and you will be too.", "type": "review", "business_id": "BD74uSwDe175zEqfppDRvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1KfR6yCS4aRbR8CKCNOJNA", "review_id": "GbLFo44D1DIiEs37pHO05w", "stars": 5, "date": "2011-03-28", "text": "We have been back several times since my initial review and the service and food have been consistently excellent for both lunch and dinner. Love their green chiles!!!", "type": "review", "business_id": "EreqxAEKm62XtDMRYXglDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JDVbRaxrjJaLX75UQ8Q3Ng", "review_id": "aYjwrhDseptZ6lF0KmNVvg", "stars": 5, "date": "2009-03-04", "text": "Great beer, Good atmosphere, Non annoying music and great wait staff make this my favorite place to spend an evening.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "WPnoGr_ukB5BubC3bITkjQ", "review_id": "Rpzq0qslMQzu0mm-brqwJQ", "stars": 4, "date": "2010-07-21", "text": "It's hard for me to rate this place because its a little run down.. but the groomers are amazing, so for Groomers- 5 Star, for actual facility-3 Star. \n\nI've used Janice for awhile now when she was at Fido's on Bell Road and followed her to this location. The location is right next to Subway and is a hole in the wall by all means! They have two groomers from what I can tell, Jennifer is the other one and my bf's dog has been groomed by her and she did a great job too. \n\nWhy did I follow my groomer to this new place? Well 1. Fidos Closed and 2. So many places just shave the dogs down, but Janice really takes the time to get to know what you want and takes good notes so when you come back she knows exactally what to do. \n\nIf you are in the market for a new groomer I highly recommend making an appt with them just dont be shocked by the location!", "type": "review", "business_id": "vtbGnxCCj2I9M9QoHXpoEw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "x9Wgd0eZFmnT29_RVARA6w", "stars": 4, "date": "2008-10-10", "text": "This is a great venue other than it being in the middle of nowhere.\n\nWent to see Rockband Live (The Cab, Plain white T's, Dashboard Confessional, and Panic at the Disco). A good lineup for what was pretty much a promotional event.\n\nThe concert was great, the sound system and acoustics are pretty much perfect. I highly recommend seeing your favorite band play at Jobing.com arena!", "type": "review", "business_id": "F0ZXhPJD8yNS3xzTxsichg"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "MfBHBiSNol6fsNU46AlhgQ", "review_id": "wd68gPA7zFNXqOmxOzEg7A", "stars": 3, "date": "2008-05-13", "text": "First, I'm a regular here. Sunday afternoons at Charlie's are something like church for me in the Arizona springtime. Cold beer, good friends, warm sun and boys playing volleyball in the back court (although it troubles me to see so many of them playing barefoot in what amounts to an oversized ashtray. PLEASE keep your shoes on, boys! It reminds me of playing volleyball in an enormous cat litter box.)\n\nCharlie's is NOT for the gays who like to put on their tightest T-shirt, gel their hair up and pretend like they just saw someone they know so they can do anything but make eye contact with another human being. \n\nIt IS for the gays that are comfortable with themselves and enjoy talking to other gays that sometimes are cowboys, sometimes are drag queens, but are almost ALWAYS friendly (even if they're a bit tanked). \n\nThe small pitchers on Sundays have kind of become a tradition. And it's fun to watch people two-step on the weekend nights. \n\nDownsides? Sometimes the crowd looks like the crowd at the rescue mission. The Arizona anti-smoking law somehow doesn't apply to the COVERED patio in the back, therefore making it uncomfortable to breathe back there. \n\nAnd, PLEASE take a cab if you've had too much to drink. Cops hang out waiting to nab ya later on at night. \n\nOverall, it's a fun, if somewhat tired, staple of the gay nightlife in Phoenix. Also have \"branches\" in Chicago, Denver and Las Vegas.\n\nAnd, it's always a sure-fire hit with straight sisters, brothers, kids and moms (yes, I said moms) that are in from out of town. \n\nEspecially if they two-step.", "type": "review", "business_id": "eFK2QePKvAowH-uX-0V4hQ"} +{"votes": {"funny": 1, "useful": 6, "cool": 3}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "g1vOR0-ys2f_csvkk7evgA", "stars": 4, "date": "2008-06-16", "text": "Me and my sis were greeted with a pleasant smile and I like the whole $5 part with the coke and fries. I dont really enjoy drinking soda but I'll take it anyway especially if its fruity, they have all the old school pop in cans Shasta and RC I should learn to take more pics but this place is cramped inside and I may be claustrophobic. I had the portabello mushroom burger see pic it had rice and all this other stuff that just kinda fell out all over the place it was super messy but pretty tasty. The fries are soggy which ordinarily we wouldnt eat but they were really good we couldnt stop eating them. We sat on the back patio and got checked on by I am assuming was the owner she asked how we liked it, was way nice I love the friendliness of the place we left hekka full and happy! Next time we go we will probably just share an order of fries though.", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7Wr91hSKfgkKnkyhLOlwww", "review_id": "5cjsStpbdxdvFF47A9gOfw", "stars": 3, "date": "2012-11-01", "text": "I really just come to the fair if there is a concert I want to see. It is fun to walk around and see all the sights. I did like that if you got in before 6pm it was half price. More money to spend on goodies. The piggly wiggly currly cheese fries are good. Loved the kettle corn and fry bread. But you can't beat the really cheap concerts and usually every year there is one person that you are like eh 20 bucks is worth it to see them!", "type": "review", "business_id": "FkHhy6kWeoJf0xJTqzRWmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "NmSjR-oql5BKxoB1dZQWLw", "stars": 4, "date": "2010-01-30", "text": "I went on a Friday night after work with 3 of my girlfriends. It was raining, cold, and we were HUNGRY! Got a good spot right across from the front door, very surprised. The parking lot was parked with cars. Must be our lucky night! Found a table on the other side of the bar, where the music was blasting. It was still all good! \n\nWe ordered: Rosie's Chili Con Quezo Dip, Patrick's Irish Potato Skins, Jimky's Famous Chicken Wings Mild, Quigley's Quesadilla, Rosie's \"World Famous\" Pulled Pork Sandwich, Corned Beef & Cabbage, & Sweet Potato Fries. And of course drinks!!! Yes, our eyes are bigger than our stomaches. The waitress warn us that it is ALOT of food.\n\nThe girls said the drinks were weak, but I only had ice tea. All the food was great! The service was wonderful. She was very nice! \n\nLoved the central location and the pub atmosphere!", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 3, "useful": 7, "cool": 5}, "user_id": "hq0WUfau1Mh3GyHn8oVdNQ", "review_id": "qqsrGLV53Ccib6l0sp6XOw", "stars": 4, "date": "2010-02-28", "text": "I've been a Da Vang devotee for years and wanted to try a new Vietnamese place tonight and Pho Thanh didn't fall short. In fact, I think I might like this place a little better than Da Vang, but I'll rotate between the two since they're both so good.\n\nFirst off, the portions are gigantic! The Bun bowl could easily serve two and I had tons of leftovers for lunch tomorrow. They use the fat rice noodles instead of the vermicelli, but I think it made the dish a little heartier and certainly easier to eat with chopsticks.\n\nHubby had the Pho and the broth was amazing! Savory, a little salty, and the spices were perfect. Perfect to warm your bones on a rainy day.\n\nThe restaurant was more of a cafe style than family sit down, but exceptionally clean and the service was great. There was quite a diverse crowd in there for a Sunday night and everyone's dishes looked fantastic.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x0r-IamYgKMgF3v7tJ_PTg", "review_id": "WEAnCtYW4DN4rdh_yiQm1g", "stars": 4, "date": "2011-05-09", "text": "there is one problem with bagel nosh: it's not close enough to tempe! went there on a sunday a little before closing-the bagel selection was sparse but they offered to get us any kind of bagel we wanted. the garlic,feta, and dill cream cheese was amazing and the breakfast sandwich looked hella yummy! went to get a refill on our way out and the owner offered a free large glass of iced tea since they were about to close. the service was great andi might have to make the trip out there very soon!", "type": "review", "business_id": "8H1DwdAAgSBtwDeb2R-hmA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "w4suxL1zlxsihVlugZZDAQ", "review_id": "Zq97qvYd_CSchS_ixk25pA", "stars": 4, "date": "2010-11-30", "text": "I'm not generally a fan of restaurants located within a mall, especially if it's a chain restaurant. I just don't care for the mall dining atmosphere. However, Kona Grill really surprised me! Especially the seafood. For a restaurant located in a mall... in Arizona... the seafood was awesome.\n\nThere are 3 important things you need to know about Kona Grill:\n\n1. The Sea Bass is melt in your mouth, oh my god, foodgasm, amazing. Our waiter recommended it to us and I was highly skeptical. I thought that he was pushing this dish just because it's the most expensive one on the menu. Well, aside from the fact that it's the priciest item at a chain restaurant, it tastes more like a 5 star dish that would cost double the amount somewhere else. I'm telling you, YOU MUST TRY IT! It has this pan seared taste that is to die for. (I also can't forget to mention that the Salmon is super tasty as well).\n\n2. The Cool Cucumber Mojito is not only refreshing and delicious, but it is also less than 100 calories! It's pretty strong too. This drink is pure heaven for a mojito lover like me, and it gets extra bonus points since its low calorie! \n\n3. Happy hour!!! It's the best and it's always packed. Kona Grill has great deals with always changing specials (I suggest checking their website before heading over).\n\nJust try at least one of these 3 things and you'll see why I'm such a fan of this place. Overall, when it comes to dining at Fashion Square Mall, Kona Grill is pretty impressive.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 5, "useful": 8, "cool": 4}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "8w_Rje56c4KaCPL2HgHkBQ", "stars": 1, "date": "2012-07-03", "text": "Can someone please tell me why people go here???\n\nWent to breakfast with Deb L, and she had a Living Social deal or one of those deal thingies. The place was packed, probably because it's a holiday week.\n\nThat doesn't excuse the EXTREMELY poor service. We sat down and waited. And waited. Servers walked by every few moments, nobody stopped to fill our water glasses or take our order. Finally, we both said something to a girl who walked by. She seems mystified that there was a job to do. With that many people working, getting a cup of coffee shouldn't take 15 minutes. Yes. 15 freaking minutes.\n\nFood? Mediocre at best. I got the traditional eggs benedict with home fries. The only saving grace with the amount of ham on it. The English muffin didn't seem to be toasted. The eggs were *ok* but nothing great. The home fries? My 9-year old niece could do a better job. My burps right now aren't even good enough to brag about.\n\nI'm sure if the service had been better, I wouldn't be so miserable right now. My food coma isn't satisfying. I will *never* go here again. Ever. I felt stupid leaving a tip, it was THAT bad. \n\nTotal. Fail. Blech.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6lik3VpQTL273Cy0iS8n0w", "review_id": "FfxBgCZw7ZaBrBxrV3Sh4g", "stars": 4, "date": "2010-09-20", "text": "Tum Nak has so many good reviews and they deserve every one! Far east Mesa can't be the best location for a place like this, but they seem to keep customers coming back (I definitely do anyway!).\n\nThe Yellow Curry (hot) is my favorite, but I've tried just about everything on their menu and I've never been disappointed.\n\nThe only negative is that the place is super small, so as the popularity gains, the more I find myself ordering to go :)", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "HMMm7LFFEOoMMonk32mEhg", "review_id": "os80wX-Dms7AYlnyGsY4vg", "stars": 5, "date": "2008-07-28", "text": "Holy crap is this place good. With the gazillion milkshake flavors to choose from, I had vanilla....... kinda anti-climatic I know. Next time though. The burgers were huge with 20 some odd topings to choose from. I had onions and pickles...... I know, another let down. Next time I sware. Also the onion rings are tops here. Fries looked good too.\n\nThe decore is a nice 50's diner type with very friendly staff. Outdoor seating is nice when it's not hot out and it's very close to the theatre which makes it the perfect stop before seeing Mama Mia........ J/K on that one. Saw Batman.", "type": "review", "business_id": "kS0EzDlPx_Mdm_qNHU2gdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "W7Wyu4Fau5w6TKHQpmPM2A", "review_id": "MDV50jR62a1CnLL_TBgzXg", "stars": 4, "date": "2011-04-11", "text": "Was in Phoenix for a softball tournament this past weekend and stayed here cause it was one of the host hotels for the tournament. \n\nFront desk staff were friendly and fast so check in was a breeze. The room was great. Had 2 double beds in a separate room and a queen size pull out. Beds were comfortable and linens were above normal hotel quality. Bathroom was big...though it contained the closet which was kinda weird. Towels were over sized and very soft. Small balcony was nice. Parking was in a structure next to the hotel and we never had a problem. Loved the atrium like interior of the hotel. \n\nThe only cons I can think of were\n...the elevators were kinda slow.\n...the toilet didn't flush right away and you had to hold the handle down a few seconds.\n...and the hash browns at the breakfast buffet were extremely dry hahaha\n\nOver all this hotel is a very nice one to stay at and I would definitely stay here again if I am ever in Phoenix again.", "type": "review", "business_id": "urBWfXQjyyWIO5B7FvnOpg"} +{"votes": {"funny": 5, "useful": 2, "cool": 0}, "user_id": "KgnQz4WFT892AXmimnP4jg", "review_id": "A1gxmVcXY3IopTYe4AGNHw", "stars": 4, "date": "2010-07-25", "text": "Let's make it very clear that this is not a country club, but if you are a golfer like me and play \"slightly\" over par, this is a good course to play.\n\nHere are the pro's:\n-Cheap green fees (summertime, it is only 10 bucks for all you can play, I believe after 3 p.m.. I've shown up earlier than that and they still gave me the same price, with a cart. Awesome)\n-The staff is pretty cool\n-You almost never need a tee time, you can show up and they will usually fit you in no problem\n-No dress code (a huge plus while playing in the summer)\n-A pretty forgiving course, wider fairways\n-Cheap hotdogs in the snack area and they pump the AC pretty cold in the lounge\n-No doglegs on the course (I fucking hate those)\n-They don't seem to give a shit when you smuggle your own beer on the course\n-No punk kid cleaning your clubs 2 seconds after you are done playing so you feel obligated to give him a tip\n\nThe Con's:\n-A good portion of the grass is fucked up. I've dinged the piss out of my clubs having to hit from the dirt on this course\n-The greens are in bad shape. You throw away a lot of shots putting from the \"mud\" or \"dirt\" I played there once where some asshole carved a pentagram in the green next to the cup. It always makes me feel better knowing Satan is watching how shitty I am playing\n-No bathroom on the course except for the port-o-shitter half way through the course. It usually has so much urine on the floor and walls you are better off pissing in the bushes or out of the cart when you are driving it. I was there one time where someone actually shit on the floor of the fiberglass shit house\n-There seem to be a lot of homeless people between holes 7 and 8 asking for change and/or beers set up by the dumpster next to the golf course \n-There are a bunch of cats that run out of the brush in the wash. I almost hit one with a chip shot the last time I played there. \n\nAll things considered, this is a good course to play and have fun at. Plus you can't beat the price. Just don't expect Judge Smails at Bushwood Estates.", "type": "review", "business_id": "BQZXVris6SgxAvwuxw1ASw"} +{"votes": {"funny": 3, "useful": 7, "cool": 10}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "yYKZ2NwTLLTLtKAIkmzdUA", "stars": 4, "date": "2012-10-21", "text": "Located in the W Hotel in Old Town Scottsdale, this hipster hangout is always busy. I recommend a reservation if you're planning to dine here. The Better Half and I drop in here from time to time. Since I don't eat Sushi, I order:\n\nJi-Dori Chicken Skewers withTeriyaki Sauce - $10\nhttp://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=x_60nAIMvJX9k_s9HAPiOA\n\nFilet Mignon wrapped Asparagus with Soy Mirin Sauce - $15\nhttp://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=19cHPtx8ahwZTPC5xIARFQ\nhttp://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=_4XhXTuYKQnypHmylm-mQg\n\nAnd for Dessert, a warm Chocolate Cake...yum!\nhttp://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=KoyBtoSTBrhM2dLD8zs_PA\nhttp://www.yelp.com/biz_photos/DwP10iEz5LGf3fhcVQZm0Q?select=iKBiwthdGtENIqWfGK1V1A\n\nThe Chicken Skewers are very tasty. The Teriyaki Sauce they are glazed are sweet and have the right amount of \"sour\" kick to it to balance the flavor. The Filet Mignon wrapped Asparagus is awesome...the Filet is tender and juicy and the Asparagus compliments it well. Of course, the Chocolate Cake dessert is a nice ending for the meal.\n\nThe service can be a bit slow at times, depends on the server. Generally speaking, it's pretty good considering how busy they are.\n\nThe people watching here is pretty good...watching all of the hipsters is hilarious.\n\nReturn Factor - 93%", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zi9UXJ81qMtzXRZ8mp7PxQ", "review_id": "ZlqtUST4KfrOTrH0jcKbQQ", "stars": 5, "date": "2012-03-02", "text": "I love this place. Food is ALWAYS fresh, cook correct and service is great. Not to mention their lunch specials!!! My husband and I always spend less than 20 bucks and get full and satisfied EVERYTIME!!!!", "type": "review", "business_id": "mjoxSQR7bFQtlIIjfNfaSQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xAVu2pZ6nIvkdHh8vGs84Q", "review_id": "A0gAq2VLnsniqzhM9Kcylw", "stars": 3, "date": "2012-04-21", "text": "The Jury is still out on this cleaners. Took in 6 pieces, I expected to pick up six pieces the next day. They did a nice job of 5 out of the six garments, ranging from mens slacks to sports coats to dresses; but destroyed one dress. Shouldn't have run it through the dryer - who knew - I expected Catalina to know. Still don't have the problem resolved. So - this is a mixed review. Very happy on 5/6ths of the job - never have had a sports coat done for $2.50 before - but still looking for closure on the last item. Who knows - they may delight me.", "type": "review", "business_id": "CLJ0Bb2AEAOSlQeBk-yqyQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "hTau-iNZFwoNsPCaiIUTEA", "review_id": "ZzfRdoxVm9d5iH1bpmtzgQ", "stars": 2, "date": "2011-07-27", "text": "Well, let me start off with a look of confusion at the exceedingly rave reviews of this dining establishment. (Raised left eyebrow, and a smirk, but you already knew that)\n\nSo, initial impressions: Seemed like a confused ambience. Kind of clubish, with a little hubristic haze. The music was the only positive part, reminding me of HGTV's 'Selling New York.'\n\nThe waitstaff seemed somewhat confused, as we had 2 waiters at one point, but the bussers were top notch!\n\nWe were also sad to hear that the \"Happy hour\" menu was only in the bar.\n\nNow to the food: The menu and the prices associated gave me a bad feeling right quick. I am too used to excellent sushi, at fair prices, as well as happy hour menus with all the favorites. (Especially dragon rolls! YUMZOID!) \n\nWe proceeded to order a couple appetizers, and a handful of rolls. None of which were memorable in any positive light:\n\n The avocado roll was insipid with a strange clash of textures and flavors. (Soft avocado, and carrot sticks likeyourmompackedinyourbrownbaglunch and a strange dusting of what tasted like bread crumbs...) The spicy tuna had to be the only one that was acceptable, and it was interesting to have chunked tuna vs. the usual frappe. The softshell crab was weak, and the spicy yellow-tail was spicy, but pretty one-note, and not satisfying. \n\n ***Bottom line: We decided to pay our bill, and then go straight to one of our favorite sushi spots to satisfy the sushi craving that we definitely missed out on: HIRO sushi. Man, let me tell you, I threw down a D-backs roll and a Crazy roll, and Hiro sushi was indeed the sushi Hero of the day ;)", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "4M_KDwTdcQ8Ju-kPKMYu3A", "stars": 2, "date": "2010-11-10", "text": "I am only reviewing it with 2 stars because my waiter was too busy and I don't think that was his fault. We showed up and was able to sit right down which is great because when we left there was tons of people waiting. We had a coupon for joining their mailing list that gave us a free meal with the purchase of another...which is awesome because who eats alone? They also recently remodeled the interior and it looks pretty good. My wife ordered the usual broccoli quiche and it was only a little warm. I usually order the bacon and eggs which is awesome but today I ordered the Florentine Benedict and it was very good. The food is always great here....when its warm and the service is usually awesome except today, but I wont blame Kevin since he was obviously over-sat. I hope they get their stuff together because I WILL go back and I know that I WILL be able to write a better review afterward since I have been here 100 times and this was the only poor experience I've ever had.", "type": "review", "business_id": "_wrA7CMbMqcWEDCNghi5cg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "mB7533hZM30GIULkWFBfhQ", "review_id": "ejs2WFrw9-lBWAGlpvKP3w", "stars": 5, "date": "2011-01-19", "text": "I've eaten here twice, and both times enjoyed myself immensely.\n\n First, note that this is the smaller location; the one in Mesa has more tables and space. This one is closer to me, so this is the one I go to, but if you are looking to have a large group, you may wish to go to the Mesa location.\n\n That said, I really like this one. The mood is very raw, because of the small size, even at a table you can see the cooks behind the bar, hear the clatter and clang of the kitchen. That said, you can still have conversations here without issue; you just have a bit of background noise.\n\n The food, though...the food is spectacular. Seriously, look at that menu, look at those pictures. The first time I was there I had the chicken tikka masala pasty. Not as good chicken tikka as a straight up Indian restaurant, of course, but still phenomenal, and the pasty just made it that much better. I also snagged the bananoffee pie. It could easily provide dessert for two people; I ate the whole thing. It was just that good. Not too sweet, very banana-y...\n\n Eat here. It's really that simple. \n\n Also, as a tip, there's a parking lot 'round the back that is usually not full, unlike the one on the front. And, though the address is off of University Drive, the front is really facing Hardy. Threw me a bit the first time I was looking for it.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "HPDJ0zoxkN01Mf4tn2Irkw", "stars": 5, "date": "2007-05-24", "text": "Great Italian food with portions designed to share.\n\nAnd it was a good thing our waiter brought that to our attention (he must have heard our comments on the prices). We ordered 2 half portions and one full (lobster ravioli, a brick of lasagna, and something else I couldn't pronounce) and it was just enough for the 4 of us. After the alcohol we even kept the bill under $100. I would definately recommend this place, just be sure to bring a few friends and an appetite!", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qw9bEL0ylJ2UVvQpCxFv0Q", "review_id": "ei37AD0SWCF85kNH3eOGUA", "stars": 5, "date": "2010-12-30", "text": "Sometimes things happen, and when they do this is the place where you want them taken care of. The orthopedics department and trauma department have some of the best, and nicest Doctors you'll find in the state.", "type": "review", "business_id": "Aq6lSh0dfAYMsLoJf17BJQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "nFCa6DPO60ZGns67Z74BVQ", "review_id": "9sGe3ZfCoTk9DsohmADuAg", "stars": 5, "date": "2009-06-08", "text": "i absolutely LOVE maxim and i have eaten there approximately 2 times a week since i learned about the restaurant a year ago. the atmosphere is pretty awful, but the food is amazing. i get a #86, which is a noodle, tofu, and vegetable soup (the broth is meat based). it is comforting and cheap and always improves a bad day. everyone i have taken there has enjoyed the food as well (though they tend to enjoy the vietnamese dishes more than the chinese ones). highly, highly recommended.", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gJ3neu7zF9a8wi-fUV0zIw", "review_id": "5FUcAzlliTBz5FKLoeyaUA", "stars": 4, "date": "2012-07-22", "text": "Delicious kosher food in Scottsdale? Vegetarian? Awesome!\n\nWe go to this restaurant regularly. The food is always great. The service, as many other yelpers have mentioned, can be excruciatingly slow some times. I will say that in the last month or so, they have hired some more waiters and those boys are hustlin'. It's an improvement, but I agree with others who have said this might not be a good choice if you are short on time.\n\nI like the Ginger Soy Beef, Veggie Hot Pot, Kung Pao Chicken and so on and so on. The food is very good, but not super spicy how I like it. I would recommend this spot for the great food and the improvements in service.", "type": "review", "business_id": "znmvCpcwxYk_kYCqtUFt5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "-UFyjmPUAnSLG6qGzAfMXw", "review_id": "szs-SDBYTva7Gq2AjTE3UA", "stars": 5, "date": "2012-04-16", "text": "Pet smart did a better job at grooming my dog than my last mobile groomers. They cut and wash my dogs hair just how i like them. Service was nice the young ladies were always helpful since two dogs on a leash can be difficult. I shall return to get my dogs groomed here. Would recommend.", "type": "review", "business_id": "rXokveEDu3PEtmd_-_4IIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O9HXzHNjieCQM9ne3A6TQQ", "review_id": "Ni9SgtkVtZkwkLrUGy6wDg", "stars": 5, "date": "2011-11-04", "text": "If you are looking for a great location for bulk specialty flours and grains, beans, Freeze Dried fruits, vegetables, meats and dairy...they have a wonderful selection. They also have water storage and emergency supplies like solar ovens. I'm a big fan!", "type": "review", "business_id": "fYv4xwoPt3a8QKBNhEJfDg"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "Q9Nm34SRrTJDieiG40bTCA", "stars": 5, "date": "2007-10-27", "text": "I was looking for a place close to where I live for eyebrow waxing and I was referred by About Face Salon here. (According to AZSpaGirls, About Face are the eyebrow experts but they no longer offer the service....) They were great about squeezing me in the day I called. Angela was fantastic, she worked very quickly and with a very light hand. She is so good with the wax that she doesn't need to tweeze at all, which for me is always the worst part. (Granted I don't have very um, complicated, eyebrows). She was very sweet and for $15 I will be returning to her.", "type": "review", "business_id": "igvATKdi31Ve7Jd2B6-g9g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "04xW5mhSBaCzpjbcf2VSZg", "review_id": "f8RaRBVeiM0dMYLI200SPQ", "stars": 5, "date": "2012-02-17", "text": "Now open on Saturdays!!!! Yes!!!!!", "type": "review", "business_id": "jB1fFl1eIEPYe5FLpCZ5Jg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "k0-S9vOCLquje8TMKmjVDQ", "review_id": "3-SyHzfbwbVYh77QQ6FLBw", "stars": 2, "date": "2011-08-25", "text": "This was my first time visiting Tandoori Times. After seeing it advertised on Groupon, I thought I'd give it a try. My friend and I decided to go for lunch to celebrate her birthday. It was very busy, which was promising. The waitress was on her second day working there and was unfamiliar with the menu, but she was friendly. \n\nThe house salad was mediocre, the entree (Algoo Gobi) was delicious, but the desserts were AWFUL. The \"mango\" ice cream was a neon orange and tasted nothing like mango, or any flavor of ice cream Id ever tasted actually (kinda vanilla, kinda puke). YUCK. The rice pudding was not worth eating either. \n\nThe worst part of the experience was being followed out into the parking lot, after leaving the Groupon and cash tip, to be told that we needed to come speak with management about not ordering at least $40 worth of food! Really? I told the waiter that we had spent just over $30, and we obviously didn't expect any cash back from the $40 Groupon. He said his manager was \"fussy\" and wouldn't like it. I basically told him that was too damn bad, and that I wasn't ordering $10 more in food; I was actually kinda saving them $10! \n\nHe finally figured out what I was saying and left us alone. I did end up calling the manager though, who was not pleased to hear about our experience with the dumb waiter. \n\nI don't foresee returning there.", "type": "review", "business_id": "V9i9LnTg9H2XvzqCVBSOXg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "F6aqWYlqmMed3WJEJqqgtA", "stars": 3, "date": "2009-09-28", "text": "Decent sports bar. Don't get me wrong, they have tons of beer choices, decent to good service, and plenty of pub fare... Few things that bugged me last time..\n\nNo waitress for about 5 minutes after I sat down\n\nSouthwest egg rolls, while good, were tiny compared to other places\n\nToo many tv's had the volume on.. the football game was impossible to hear..\n\nI'll be back though..", "type": "review", "business_id": "TwMfahsPHFnkLiqqvyalAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "UoqPzTb-vSsbZRZg3G_qKg", "stars": 5, "date": "2012-05-29", "text": "I've been using mineral makeup for a couple years now and Bare Escentuals is the best in my experience. You can order their stuff online as well and it's free shipping after a certain amount, but I like being able to ask questions and compare things side by side before I buy, and the salesgirls are always really helpful with that. Once I find a product I'm loyal to, then I do the online thing. This stuff just feels much better on your skin and doesn't clog your pores. It seems like an initially pricey investment when you're first getting started, but mineral make-up keeps much better and I can use less of it to achieve the effects I want.", "type": "review", "business_id": "DrG1ShT9meH9wpJ26aUj_Q"} +{"votes": {"funny": 14, "useful": 15, "cool": 16}, "user_id": "u5bvcT_3Go0O3Xk4Am8CWQ", "review_id": "MExqiQcg4Yfg7HRyjnxskw", "stars": 5, "date": "2010-12-07", "text": "When I say a certain food contains ingredients such as blue cheese and bacon, what comes to mind?\nNo, I'm not talking about a salad, I'm talking about an ice cream sundae!\n\nSweet Republic is an awesome little ice cream parlor located in a strip mall in Scottsdale, Arizona. This amazing place makes all their ice creams and sorbets in house. Sweet Republic makes some pretty creative flavors. These are just a few examples of what we sampled:\n\nBasil Lime Sorbet\nSalted Butter Caramel\nApple Pie\nDessert Honey\nMaple Pecan\nAlmond Buttercrunch\nCashew Turtle\n\nAll of these flavors were wonderful but there was one more that really got me all hot and bothered, and that was their Honey Blue Cheese. That's right, Blue Cheese ice cream. When I first saw it, I did not know what to think but after my first lick I was hooked. It tasted just like a sweet vanilla / honey ice cream with blue cheese crumbles mixed into it. I know it sounds weird but this ice cream is phenomenal. It was sweet, tangy and somewhat salty, all at the same time. Instead of just enjoying this ice cream alone I decided to make my own blue cheese sundae. They have many toppings to choose from, including bacon brittle. When all was said and done my creation contained two scoops of their Honey Blue Cheese ice cream topped with a salted caramel sauce, bacon brittle and a homemade marshmallow that was toasted with a blow torch. This sundae was exploding with flavor. Every bite was crunchy, salty, sweet, tangy and delicious. \nMy fianc\u00e9 had a waffle cone sundae that contained Salted Butter Caramel ice cream, Almond Buttercrunch ice cream, salted caramel sauce, brownie bites and a homemade marshmallow. Hers was also amazing.\n\nThe service and prices here were both great. The girl working the night we visited allowed us to sample as many flavors as we wanted and was really friendly and patient with us. The prices here are similar to Coldstone's. \n\nI'm absolutely in love with Sweet Republic and would seriously make a special trip to Scottsdale just to have their ice cream. I shouldn't be telling you all this, for fear that you all would think I'm a pig but I liked their Honey Blue Cheese ice cream so much that after I finished my sundae I ordered a Honey Blue Cheese milkshake to go. It was so yummy!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "GPchh5Jw7Go8nhI7WqF-ug", "review_id": "TWP5yC2ukn3IBZW_l6B3Wg", "stars": 4, "date": "2012-05-31", "text": "Great happy hour deals here! I loved the Cotija grilled corn and BBQ pork cheese crisp and was extremely jealous of my friend's order of the shrimp and corn cheese crisp that she enjoyed. Drinks were yummy and reasonable. I can't wait to come back to order that shrimp and corn cheese crisp and maybe some fresh guacamole.", "type": "review", "business_id": "_-9pMxBWtG_x8l4rHWBasg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FqxQhk-JyEQjvYp_nK1DNA", "review_id": "0nPmsfz7kK24oNEW8GI_Pg", "stars": 4, "date": "2011-02-13", "text": "After moving here a few months ago the search has been on to find a decent sushi place in Phoenix, after all, it's Phoenix. I don't set my expectation too high because I know how difficult it can be to get fresh sushi here. \nI enjoyed Moira because their creations are simple and they don't drown the sushi in sauce like some other American sushi joints. Sushi is about the rice and the fish. Both were pretty good here. The salmon and the white tuna nigiri were fresh tasting and soft and the rice was great as well. The kamikaze roll was also delicious, but maybe could have used a little more spice.\nThey have the best miso soup I have had since living in Japan. Very tasty, not watered down or flavorless like most other places.\nThe drinks creations are fun and tasty, I went for the favorite karma. I like my drinks like a like my women, spicy, sweet, and filled with booze. Our waitress said she would even be open for a new creation if we gave her some ideas.\nThe service was great and friendly. We were there on a Friday, but surprised it wasn't loud and bustling. I can see how it could be at times as it is a little small. Fun and modern decor, clean place!", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "IDtzyrrXyIFp-4gERJQElw", "stars": 3, "date": "2011-05-31", "text": "This airport is the most confusing airport I've ever been to. Obviously it was meant to be small and was originally probably very efficient, but since they have added terminals it makes no sense and you will see the sign you need as you are passing it, instead of having a sign a mile or so ahead telling you were to go.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ixgYqRHucl21_3-qtPcVoA", "review_id": "3VY7iN1LIqFX_CsM4gHMTg", "stars": 4, "date": "2010-08-03", "text": "I am not a fan of american mexican food, good thing they don't serve that fare here. The taquitos take me back to the streets of tijuana without the risk of \"after effects\" :)", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "1prjit4TbpBBN9y2qlS_8g", "review_id": "zW0VZdS0Lkg7vm63grzjFA", "stars": 4, "date": "2012-01-10", "text": "Burritos and Bodybuilders\n\nThere's not usually much decor in Chiptole. They keep their decorations and their food simple and to the point. But if you're in the age range of 15-40, there's plenty of male eye candy. I think I saw 3 men who's muscles were 5 times the size of mine. In fact, most of the people in the restaurant were men. I'm not sure why or how, but it made my tacos a little tastier. ;)\n\nEnjoy!\n\nNo five starts because I watched them put sugar in the rice. There's already so much sugar in everything, we don't need more in the rice please.", "type": "review", "business_id": "lciZhyp_xwKNBOVyzxqhbg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hdaZx2uwc7Vy9M8VG1N0aQ", "review_id": "isxuG_ZeYiYszaEZJxEMmQ", "stars": 1, "date": "2012-01-23", "text": "Soggy flavorless pizza served on unwarmed ceramic plate. Carbonara was watery and made with cream instead of eggs. Gnocchi was tough as opposed to light and airy.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "3FRzcb41y7LYr5yRMQSoqw", "review_id": "zJnv1OuJGvLUSok-XS3rfA", "stars": 4, "date": "2012-10-26", "text": "My best friend and I found this place via yelp after a horrendous experience at Mimi's Cafe... so happy we did! Food is great and everyone is so friendly. You can eat out on the patio with shaded tables, or you can eat inside while they play great music (we were dancing to James Brown while ordering our food). It'll be our new breakfast spot from now on!", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wfvmwhhadHfpM9UoTV0OMA", "review_id": "kbZaFBKI7GxW1ft1aJS1nA", "stars": 4, "date": "2012-03-17", "text": "Like the other reviewers have said the service is really not that great. Luckily they're saved the really good food that they have. We ordered so much food that our little two top table couldn't possibly handle it all. The mussels might have been the best I've ever had. We also shared a Frito misto, which is really good except they're pretty chintzy with the shrimp they only gave us too. The pastas were clearly handmade which appreciate and they're quite good. The owner came over to check on us a couple times which I appreciated. I'm definitely coming back soon.", "type": "review", "business_id": "UmhTiNOKareQDP7D9aAnKw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "mRTY_S2IQyAweG0pLNOgLQ", "review_id": "1XkRFWAtNIMphRIyco_dqw", "stars": 5, "date": "2009-06-28", "text": "Special. Not on menu. Chicken strawberry raspberry blackberry blueberry goat cheese salad with raspberry vinagerette. This was THE best salad I've ever had, and probably top 5 best meals in my life.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s1uMhsAjfU_IwOMUEaOuSg", "review_id": "lewi0wJfkpdXkrQWdEY8Vg", "stars": 5, "date": "2012-07-22", "text": "Good food at a good price.", "type": "review", "business_id": "A5jJS6lNQbJXjPzBkTnjNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MqKtiMUnd1CdvNKUIlNspA", "review_id": "1Mee6UeaNePlpuhdPHOk1g", "stars": 3, "date": "2008-09-29", "text": "Beautiful church. My husband and I were registered members and regularly attended mass here. Fr. John Auther gives excellent homilies. The Marian gift shop has beautiful religious gifts. \n\nWe got married at this church, but unfortunately had a bad experience. Communication with church staff was poor and we got little support during the stressful planning time. \n\nWe have since moved to Gilbert, so now we are attending St. Anne's.", "type": "review", "business_id": "WVwnnx8Cut5Wih2KYtXKcQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0beZngJ03EmIQfVcnlVK4w", "review_id": "dSK7-vZtHO35lfoY3L-bFw", "stars": 4, "date": "2011-02-03", "text": "I have been here a couple times now, so I thought I should review it. The ticket prices are a bit higher than other theaters, but the drinks are cheaper....a wash I guess. I saw the Mechanic there this week and had an overall pleasant experience. Usually I hate going to the movies because of all the sick people coughing on my head but this time the theater was relatively empty and I had a blast. The sound system in the theater we were in was great. Clear and crisp. The movie quality was also good. The concession stand was quick, in and out with my food and drinks. Yep, definitely one of the better theaters in the valley.", "type": "review", "business_id": "BFNxp4o6gJEO5PjD13PFKw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "Ybfbv1XZA9hLffm8PrbcPg", "stars": 2, "date": "2009-03-29", "text": "Best beer selection in Arizona but the good features end there. It's the only reason I return and put up with the following. Service is often horrible, even during the day when there are few patrons. Often you have to go up to the bar to order even when there is a server in your section. It makes no sense that a mug of beer should be empty for more than 10 minutes before it is noticed.\n\nFood is subpar and wouldn't get such a pass from most people if this place didn't have the beer. Prices are reasonable. Website is often inaccurate re: what is actually on tap.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "7NToyNVtRIgJOBz5iggR4A", "stars": 4, "date": "2012-07-03", "text": "I am really surprised by the previous reviews here. This has been at the airport for many years now. There is a lot of other places for food, and this is one of the BEST!\nThey have a huge menu, i think and you can even get breakfast.\nThe prices have even gone down. You can get a full meal for under $6.00.\nThat is a screaming deal at Sky Harbor airport. Hard to choose a favorite, but Chicken Delight is really good!! With red or green sause. \nTheir Salsa is excellent as well. We sometimes get it to go, when through with a trip for our journey home. Hey then you don't have to cook!", "type": "review", "business_id": "3QtWG5sN3HJNBVKn_wHQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8uFr-CYB9C5lldTGaJg7SQ", "review_id": "6U2SXBvjOuk4SCYZ_cJDbA", "stars": 3, "date": "2009-04-18", "text": "I didn't go back again. The haircut turned out to be worse than I thought, being quite unmanageable. I ended up going back to the local Mexican barber, who charged 12 bucks for a pretty decent haircut.\n\nI think they gave better massages than they did haircuts. Still, it wasn't a bad place, and one could do worse.", "type": "review", "business_id": "YNHPzgdHVpAsvHcvCBQzow"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "TR2YFVnIM5UM38RuMy6dcw", "review_id": "5VTL17RelaRxdkjx2wcDaw", "stars": 5, "date": "2011-04-17", "text": "I went with my sister 2 days ago. It was my first time eating Famous Dave's. I got a hamburger and got some mac & cheese. They were both okay, I tasted better. Now the hot wings & onion rings were better. the place was packed we sat outside.", "type": "review", "business_id": "sMO71vGV8wkKujOle3-v7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "z6Bk_H0uHpPbNqymdPAHpw", "review_id": "Jqo6v2xy6ZbOUTVZHMoNFQ", "stars": 1, "date": "2011-08-13", "text": "Water park is OK. However, the parking lot has ZERO security. No security patrols, no cameras. My catalytic converters were stolen off my truck in the parking lot at Big Surf Tempe today. Sawed right off in broad daylight. According to the cops, car break ins and catalytic converter thefts happen frequently here. BEWARE! The water park management doesn't give a shit. Even the cop laughs because they always say the same thing: \"Our camera is broken but it's getting fixed next week\". What a joke. If you go, have someone drop you off. You've been warned!", "type": "review", "business_id": "81SLnb1zdCzRs2dj_PobOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gxpYTCTO-EqDfzn9RyX7XA", "review_id": "BeIBk8REbghmEp2qk2VJ9A", "stars": 4, "date": "2012-04-18", "text": "I have been going to Top Shelf for almost 30 years. I grew up eating their shredded beef burritos at the Scottsdale and Shea location which has since closed. I don't live in Mesa, but any time I have a chance and am in the neighborhood, I stop by the Southern and Dobson location. The shredded beef has not changed and is probably some of the best shredded beef you will find in AZ. Their margaritas are tasty and their chips and salsa are amazing. This is a great place for a tasty Mexican food dinner.", "type": "review", "business_id": "J3VvIU1ZDqg9a9e7zK-QSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1E13KtzbFzo2mXB0hZm1EQ", "review_id": "zEnDoQkZcpulTYiDiUqbeA", "stars": 4, "date": "2011-12-16", "text": "This is my parent's favorite froyo place, and with a pretty convenient location, we tend to automatically go to Kokomo when we want frozen yogurt. The atmosphere is fun, with a modern vibe and the frozen yogurt is pretty good. While I usually have to taste all the flavors they have (gotta weigh my options!), I tend to only find a few that are above average and worth making it into my cup. They also have the typical toppings you'd expect. Prices are consistent with other local frozen yogurt places.", "type": "review", "business_id": "zp5k6funVelIOVuqdY0mDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1MGIoKLw1oq8HR15DsIUXg", "review_id": "XMQX3MqiRV1g4ArCojS6aA", "stars": 4, "date": "2011-04-03", "text": "Great chai lattes and friendly service!", "type": "review", "business_id": "K4Oo7A5Kp5eSgBV7MgOu8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KdeUy-TKeRNznRtQ8e2YPQ", "review_id": "9f0wDo7wy_F5wZQMIV4yag", "stars": 4, "date": "2011-08-07", "text": "For my first time it was pretty decent. Just as everyone said it is pretty pricey. I had the taco plate which consists of two tacos, seasoned rice & refried beans. My bill was 11.57 for that. Pretty steep considering that usually runs $7 most places. But I can say 3 hours later I am still full as if I just left the table. The chips, salsa, & refried beans appetizer was a great start to meal as well. My friends have already planned the next visit in which I will try the swirled strawberry/mango margarita which is 24 oz for 6.99. Sounds like a steal. I hope the flavor is above the price.", "type": "review", "business_id": "ib-y5nsfn3unE0lLY1vfAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xAVu2pZ6nIvkdHh8vGs84Q", "review_id": "6-SRiZwaTTgh5MfiOvVHxQ", "stars": 4, "date": "2012-01-28", "text": "Secreto is under a new owner, but the food hasn't suffered from what I can see in other reviews. We stopped in the grab a late lunch and order the Tortilla Soup and the Roasted Elephant Garlic starters. Both were out of this world. The Tortilla soup was far richer than any I've had before and extremely flavorful. Don't know how to described the Roasted Elephant Garlic platter, damn good though ... a must have when you eat there.\n\nThe menu is very tight without a lot of fluff. The beer selection is strictly premium (although the manager said she does stock the ever present BUD LIGHT in bottles if someone is really hankering for one). \n\nThe service is great - unrushed for sure. The place has high backed booths that offer a bit of privacy. Nice intimate restaurant. Definitely a repeat", "type": "review", "business_id": "2rMf09C5uXzF2qIlD5F5BA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "fhV21-QB6n402-J9vR-7cQ", "review_id": "gS_cpr4aTV5nE-3iyKtnVQ", "stars": 5, "date": "2008-04-15", "text": "So, I have to admit that I once threw up in the Pita Jungle bathroom, but it was not Pita Jungle's fault - it was definitely something I ate the night before. It certainly made for a memorable first date experience with my now husband, and we have been back many many times.\n\nOh, how I love Pita Jungle. I haven't tried anything that I wouldn't have again in a heartbeat - currently I am hooked on the Potato Pizza. yummy!\n\nTheir breakfast options are wonderful - definitely try it on a lazy Sunday morning. There is usually no wait.\n\nThe ambiance is fantastic, casual and arty, with a little bit of crunchy granola thrown in.\n\nA++ for vegetarians and meat-eaters alike. \n\nEat hummus and pita. Try falafel. Try anything on the menu, because it is all good.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9z4sGAL1hu9rLJhcFZR8ng", "review_id": "ktS-4TF6S5mLLYOyTwDGQg", "stars": 4, "date": "2009-12-14", "text": "This is good pizza every time I get it. I've never eaten in so can't comment on the service but when I go to pick it up it's always ready and the cashiers seem friendly enough.", "type": "review", "business_id": "3Gsex5Dyhnoul9l_914MGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SgnKnkhRnPy_duzAZ7QKdA", "review_id": "1Lr-eEJEm2MK2LeBHC2Ksw", "stars": 5, "date": "2012-10-23", "text": "I absolutely love their personal hotpot room! \nI tried it for the first time Sunday...and went back Monday again!\nTheir item portion is big and fresh! \nOnly downside is that there isn't any sauce that is pre-made...\nOther than that, this place is AMAZING", "type": "review", "business_id": "wH_kpDuTE6ChDAp5AlMfJA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "br7jwXG7TaWC1-vrZxResg", "review_id": "LSL6FAB_G2lnCHN-POckxg", "stars": 4, "date": "2010-05-06", "text": "Garlic roasted potatoes *check*\nAmazing hummus and baba ganoush *check*\nCute waitresses, some of which are babes *check*\nInexpensive menu with quality ingredients *check*\n\nThere are many Mediterranean restaurants around Tempe that vary in quality and service. Pita Jungle seems to break the mold. There's something for everyone on their menu, be it the Mediterranean Chicken Salad or the Glazed Chicken Lavosh Pizza (both are awesome). \n\nPita Jungle is located off of Apache Blvd very close to the campus of Arizona State University. While this location is a favorite along the student body, a good mix of locals and students come here. The waitresses are very friendly and especially professional for a restaurant that serve so many college students. Like I mentioned above, many of the waitresses are super cute.\n\nHere is a meal of champions that I personally recommend\n\n1. Start off with the baba ganoush with chicken. This is not on the menu, but hummus with chicken is, so just as for this. You get a large portion of freshly made baba ganoush covered with chopped roasted chicken. This is DELICIOUS.\n\n2. For your main course, order the Lavosh Shawarma Wrap. This is chicken breast with grilled tomatoes and onions with garlic sauce in a crispy pita wrap (lavosh). This comes with a Greek Salad, but they'll be happy to sub the salad for the garlic roasted potatoes for no charge.\n\n3. Finish your meal with the Baklava coupe. This comes with 3 types of ice cream (I remember it comes with pistachio ice cream!), and it comes with pieces of baklava. So delicious. Even if you feel full, once you see this, your stomach will magically make room.\n\nPita Jungle gets a solid 4 stars from me. For a Tempe restaurant, I would give it an easy 5 stars, but with all things considered equal around Phoenix, I'll give it a solid 4.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "pQlQ5B6rkPjPdinD1BjuIg", "review_id": "6I__khh3OKxpuhM7w-PrRw", "stars": 3, "date": "2011-04-27", "text": "You've seen the storyline play out many times - great athlete in his prime signs a multi-year mega-contract, but eventually his body betrays him and he's parked on the bench, getting paid more than the starters.\n\nValle Luna, I'm looking at you.\n\nMy family used to frequent this place - you could get a nice meal for $8 or $9 per person, and their food was fantastic.\n\nBut Valle Luna has lost a step. You see it here and there - the chimi sauce isn't quite the same, the beans are inconsistent, and the fundido just isn't as fun. And to make matters worse, Valle Luna now demands superstar prices, asking for around $20 for a chimichanga dinner. I hate to break this to you, guys, but I can get that - and done better - for much cheaper. And don't even get me started on the rise of Rito's, Chipotle, and Juan's, all of which provide superior food for less than half the price.\n\nTheir prices have become ridiculous - and I think Valle Luna knows it, because this is one of the only restaurants I can think of that creates a version of their menu WITH NO PRICES for their website. I'm serious: http://www.valleluna.com/VL_Menu3.html It looks exactly like the regular menu, just without any idea of how crazy expensive their food has become. I suppose they figure that you can't (or won't) leave after you've sat down, ordered drinks, and eaten some chips?\n\nBut much like that past-his-prime athlete, Valle Luna still has one move that reminds you of those glory days, like Jordan's fade-away jumper. It was his best shot late in his career because it was the only shot he could cleanly get off. Valle Luna's fried ice cream is so delicious, and since it's dessert, they can't charge $18 for it. I wish I could tell you the exact price but that's censored on the online menu, too. \n\nSo go for dessert sometime soon and reminisce about the glory days, because I suspect it won't be long before the game passes Valle Luna by and they're forced to hang up the aprons.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "RueAtv9IGLLPoOtTyB4odA", "stars": 5, "date": "2010-08-12", "text": "I've gone back a few times since my last review. Every single experience has been fantastic! The burgers are pretty good, BUT do yourself a favor and get the pork tenderloin OMFG!!! Sooooo freaken amazing! \n\nAlso their onion rings are pretty much perfect! \n\nAnd the fried cheese curd...just get it! I was a little creeped out eating something called cheese curd, but holy deliciousness!", "type": "review", "business_id": "U605aUo9MJn5vgLfP3yYKg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mn6F-eP5WU37b-iLTop2mQ", "review_id": "oRug2W6dzB8CbXyz-7HsRg", "stars": 3, "date": "2011-09-25", "text": "We went on a Saturday night and the place was completely dead. There was only one other couple in the entire restaurant section. Very nice decor, but the food was mediocre at best. The only reason this place gets 3 stars is because the service was outstanding.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 3, "useful": 0, "cool": 1}, "user_id": "hvgYD6Pmyaa6hS39ymIQBQ", "review_id": "0Zc1K2z5pVyMM9IZO7s5BA", "stars": 4, "date": "2007-11-29", "text": "The time was 4:30am. It was dark and a little chilly with the sun not yet up. Perhaps that's why they call it Black Friday, but my money was on the delicate hint of malice in the air as I stood shoulder to shoulder with veteran soccer moms with steel and fire glinting from their eyes, Scowling teenagers and college students bubbling with nervous energy and the occasional hen-pecked dad who got talked into dealing with shopping insanity as some sort of a special treat before trudging off to the salt mines for the day.\n\nThere were at least five hundred infantry ahead of me and five hundred behind me and our numbers kept growing. There were scattered bits of conversation but most of us were silent, contemplating the chaos we were about to charge into for the sake of our families, our friends, our lovers. But mostly for the sake of savings. We glanced ahead and behind, sizing up the competition, mentally calculating our strategies for navigating the battlefield. We were at least a battalion strong. Perhaps a regiment by the time the doors would open. And it would be every man woman and child for themselves.\n\nOccasionally, someone would open a wallet or a purse, checking and rechecking their ammunition, occasionally running a finger along the edge of a bank card or bill to make sure they maintained their razor edge. Slowly, we began to march forward and the slow but steady trudge was a stark contrast to the sense of frantic urgency that crackled in the morning air. Not all of us could walk away victors, but all of us were determined to try.\n\nThen something happened. Something I would have never expected. As we approached the double glass doors, we were greeted by another army. With their bright blue uniforms, they could have been UN peacekeepers. They handed us each a large plastic bag and ushered us into the store with bleary eyed smiles. The fear and tension started to lift. I have been at Toys R Us on Christmas eve. I have seen the very worst of Holiday spirits and I was ready to face them again all for the sake of an (CENSORED) that (CENSORED) just had to have.\n\nYes the store was crowded. But there were so many helpful, indeed cheerful sales attendants on hand that most of us shoppers just melted into a gentle wave of requests which were quickly and cheerfully met before anyone could get bent out of shape or stressed out. A sales clerk simply asked me to wait for a moment while she located a reserve ticket for the doorbuster item I had stood in line for. One minute and fifteen seconds later she returned with a document which guaranteed me my desired item at the desired price to be delivered to me as I left the store. Another clerk helped me locate the other items I needed and I was done with my shopping within ten minutes. \n\nOf course it took another hour or so to work through the serpentine line at the checkout but all of us were so relieved at how painless and indeed bloodless the shopping experience had been. We were more than happy to stand in line waiting for the opportunity to plunk down our hard earned cash on the latest objects of technolust that had caught the eyes of our loved ones. We left tired. And we left poor. But I dare say most of us left happy and for that Best Buy and the entire Best Buy army have my eternal gratitude. Thanks for taking the ass out of Christm.", "type": "review", "business_id": "YKDyaK3TKoZRCEgwnhczkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DU0F18NBXFZ-hsPOmGhzQA", "review_id": "A0S67C98VAl6ZMXbjBBhDQ", "stars": 4, "date": "2010-11-20", "text": "Update: They now have Coors and Miller Lite on draft. Yay! They're a real bar again. I don't know the drama, but apparently the management has been \"let go\" and the owner is now managing the place.", "type": "review", "business_id": "zDfaNgSYLn-TwquB5A6AaA"} +{"votes": {"funny": 1, "useful": 5, "cool": 0}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "f7lw_jAAsKQ9aTHbiN1ntA", "stars": 4, "date": "2008-06-13", "text": "I love this place. I sit in the bar and as one other reviewer noted, there is always someone interesting there to start up a conversation. The burgers are top dawg, the condiment bar allows me to fulfill my jalepeno quota, the wings are perfection, and the drinks are reasonable. \n\nWhen the weather is nice, grab a table outside. The service is a smidge slower, but the courtyard more than makes up for it. If the weather is warm settle in and enjoy whatever game they have playing (if you aren't seeing your team, just ask and they will happily turn at least one set for you).", "type": "review", "business_id": "N_6bV3c3JagKW7sD3X9ldA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "C6BYesCiITaw_STVT1GI6g", "review_id": "rWhk6bFrAG2hBOmjUzd13g", "stars": 4, "date": "2009-03-12", "text": "Yes, I'm a fan this place but it definitely does not deserve a 5 star rating. First off lets start with the decor. While it was very nice when it first opened it's now getting a little raggedy looking and could use some updating. Food wise this buffet is above average and definitely worth a visit. If I could give them some advice it would be to get rid of the HUGE salad buffet section or at least scale it way down and put that money into even more entree selections. I've been coming here ever since they opened and hardly ever see anyone eating off the salad section. So why spend so much money to have such a huge selection??? Put that money into the entree selection and make this place an even better value. And for Gods sake bring back the Mayonnaise Shrimp !! You made one of the best versions I've ever tasted.", "type": "review", "business_id": "A4pL6j3e6JAtblmCUF2GZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RYrDLpVArGRTgZ_xDtccHA", "review_id": "Rd1-zDT8gg2zAJzA3incYw", "stars": 1, "date": "2011-07-24", "text": "Absolutely awful... these guys have NO idea what they are doing!", "type": "review", "business_id": "0L3qEjF0jkFQkDIT4linUA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KiD3w2SvwCSRjhEpI0Q2ZA", "review_id": "6pERjdHqg1s8xeVH-1NZQw", "stars": 2, "date": "2012-07-10", "text": "I came into this charming little establishment with a friend. We were sat pretty promptly and had drink orders taken. I had the iced green tea and she had water which was garnished with a slice of cucumber. I thought that was a nice touch. \n\nWe both started with spring rolls - she had the salmon, I had the barbecue pork. Both looked good and mine was tasty. Then we had both had a bowl of chicken pho. It was really tasty, however expensive for pho at $10/bowl.\n\nThat said, the food was good. Not the best Vietnamese food I've ever had, but yummy just the same. \n\nMy only gripes were the little things. I've worked in the back of the house for a long time. So I know how much it costs to put this food together. I just felt like everything was expensive for what it was. This is not a high end restaurant. Its a teensy little hipsterish Vietnamese place with minimal decor. Its a lunch spot essentially. My menu was printed on paper which is pretty commonplace these days so no big whoop. Unfortunately the menu looked like it had been used about 50 times. I understand re-using menus. Its totally common. To NOT do so would be environmentally irresponsible. It just looked really, really used and abused. Also, my dipping sauce ramekin had a huge chip in it. To be fair, I am hyper critical of EVERYTHING when it comes to service just because I come from a restaurant background. \n\nRice Paper gets 3 stars from me. It was eh... Luckily I had good company. I probably won't come here again though.", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "weYT-xJwz8o7mLNWIhD6HA", "review_id": "k8xCOodVYwingwv5CmUL5w", "stars": 4, "date": "2009-01-12", "text": "Although a bit pricey (hence the 4 stars), the martinis are GREAT, as is the food (the cobb salad is the best I've ever had). Good service, cool crowd... can't wait until I can go back, which sadly is not soon enough now that I live in San Diego.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3zKT-gMYsUmoOT7ffc76dQ", "review_id": "GEvx4rx6BGfB-zUbzIOBLQ", "stars": 3, "date": "2011-08-25", "text": "It is my favorite vietnamese restaurant.\nIt's small but clean. Their soups are great. They serve fresh and tasty foods.\nPortion is not big enough for me though.\nI wish they serve bigger size meals.", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EXZrHtmzdtDHtH9MPNEhkw", "review_id": "zV0WLn11pgrrHhvLuDDg5g", "stars": 5, "date": "2012-09-08", "text": "Great pecan apple pancakes! Superb decaf coffee. Servers and counter staff are bright and smiling. Restaurant was clean. I have already recommended it to another foodie.\n\nIF you park in the public lot, just west of the restaurant on 3rd street and eat within 60 minutes, it is free of charge to park.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vzAvkSRois2VMqj_AT7xVA", "review_id": "k1lyATqADD4kDqBYLS794A", "stars": 4, "date": "2011-04-18", "text": "Very friendly, warm atmosphere. We went for breakfast after hiking Camelback. We figured we'd earned some fried chicken after making it to the top in 85 degree weather. The food was really good. Everything looked great! We got one of the breakfast specials - biscuits with gravy, 2 eggs and potatoes and I got 2 pieces of chicken with one waffle. For once we didn't need any take home containers! We ate every single bite which is very unusual for us. I have to go back to get some more chicken and waffles but need to be sure I try the mac and cheese which I saw so many people enjoying and I need to try an order of their grits.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "C8MhrBVAHN_zeQpZLmgBag", "review_id": "fPst3k2avkYI_fge7_AP_Q", "stars": 5, "date": "2012-04-18", "text": "I LOVE LOVE me some Joe's real bbq!! They have the best ribs in town and their bake beans are amazing! There's little pieces of meat mixed in with the beans and it's sooo good. Their mac and cheese is great as well as their corn. Pretty much everything is great here. \n\nThe first time I went here was when I first moved out to AZ back in 2006. My fiance took me here because he knows I'm a bbq fanatic, and I swear I though to myself, \"What is this place? A cafeteria?\". I did not expect the food to be any good at all. Well, was I took quick to judge! Taught me never to judge a book by it's covers again! Even though you get in line, pick up a tray and order your food like you would to the lunch lady in HS, the food is the best. They even have an outdoor seating area with trees and lights. It makes you feel like you're at a nice park having a nice bbq.\n\nJoe's is hands down my favorite bbq joint in the valley. Nothing tops this. Anything you order is amazing.\n\nOh, and try their chocolate chip cookie. Soft and melty and so so good!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "0ouMuScWJ3GuNtWEmmsziw", "review_id": "TNxmy86nSpl3lyAvyW-H3g", "stars": 4, "date": "2009-11-15", "text": "Went to see Under the Sea in 3D......awesome on the big screen and the 3D was fantastic. The staff were helpful and friendly only missing a star because it could use a little upgrade......this however does not effect your viewing.....and there were no annoying advertisments before the show....so refreshing! There are two other nature shows playing at the moment.....African Adventure in 3D and Dinosaurs Alive in 3D. Great for the kids too as it is only 40 minutes long.", "type": "review", "business_id": "LDJhwZN14AZOJyHjg2lkRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "XhRn7EuKmK9zF_tfcn12ZQ", "stars": 4, "date": "2011-12-21", "text": "I recently tried OHSO. Nice layout and design... modern and casual. Their menu features cheese and charcuterie plates, flatbreads, burgers, and other comfort-style dishes. I had the grilled cheese with a cup of tomato soup. The tomato soup reminded me of pepperoni pizza, which was strange at first but actually pretty good. It was the perfect order for a chilly, rainy day. The 48th Street Fizz (orange vodka, pineapple, lemon, st. germaine, and beer) was sweet, but tasty (love cocktails with carbonation). They have an extensive list of local and regional beers. Overall, it's a nice little neighborhood spot.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "DQEdAMmwCXEPy_yZLC-8qg", "stars": 4, "date": "2012-06-16", "text": "It's a pretty standard Panda Express- cheap pre-made Chinese food with a few different choices. This one has always had good service, been prompt and never had a problem finding a place to sit. They are also clean inside. Good Panda.", "type": "review", "business_id": "wEsor9I2DcyYoR3brlqIMw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "npe364bdV_b7kRfYkgkRLw", "stars": 4, "date": "2012-01-09", "text": "I walked int0 Arizona Art Supply and fell in love. I moved downtown 2 years ago, and I've never quite gotten my craft room up and running. But I had a particular project in mind, and stopped by the shop on a weekend for some spray adhesive.\n\nI struggled to find a place to lock up my bike. They lose a star for this, as everyone does in my world. Ended up locking to a sign in the middle of the parking lot.\n\nOnce inside, I was dazzled by the available materials. I hadn't been in an art store for a year. To make matters even better, they were playing the soundtrack from Amelie, and the cashier was a handsome tattooed young man.\n\nI will regularly visit for inspiration and supplies. This place is a treasure.", "type": "review", "business_id": "PNQ7JyMNfC0jDA0-a4ypnA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "3sJ62Mkavx69FBec71agYg", "review_id": "9HTnUaoKN2ve0IJ1kbHpeQ", "stars": 2, "date": "2008-08-31", "text": "Not good. The patio is top notch for relaxing if the weather's good but I couldn't shake that chain feeling when inside. Table and chairs had a slightly sticky feeling to them (nice, eh?). Food was typical pre-cooked, oven heated dollop of too much grease and cheese. Not impressed. It's a shame cause the garden and even the nachos & salsa had me expecting big things.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "NPoOEAPspruMOik-9sKQtQ", "review_id": "62BFRSsUUCxsUBTHQy_ALg", "stars": 1, "date": "2011-05-29", "text": "Do not go to this car wash. I dropped my kids off at choir and thought I'd run in for a quick car wash. Oh no! They locked my keys in the car. I couldn't get On-Star to unlock my Suburban because it was under a huge canopy and couldn't get a signal. Instead of calling a locksmith, the car washers tried and tried to get in through the window. Thankfully my husband was able to leave work early, go retrieve the kids from choir practice, and then come rescue me at the car wash with a spare set of keys. I was trapped there over an hour! The manager then had the audacity to get mad at me because I was upset at their incompetence. They didn't even comp the car wash! If you go here, don't pay for your car wash until your car is done!", "type": "review", "business_id": "XMQQXhJWOGihXETq2HqNJA"} +{"votes": {"funny": 11, "useful": 15, "cool": 11}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "3zzn02xUj5BTDXXzKYakkg", "stars": 4, "date": "2011-04-26", "text": "Some colleagues invited me for lunch the other day and decided to pick this place. It was my first visit. After browsing the menu for a few minutes, I decided to order the California Wrap (Spinach, Tomatoes, Avocado, Feta Cheese, Sun-Dried Tomato Vinaigrette Dressing, Tomato Basil Tortilla, $8.95) with a side of Cole Slaw & Iced Tea.\n\nI took one bite out of the California Wrap and was in Heaven!!! The sweet flavor of Sun-Dried Tomato Vinaigrette Dressing was a perfect compliment to the Feta Cheese & Avocado....the Cole Slaw was amazing too! What a great combo!\n\nThe only knock on this experience is that the service was kind of slow. We had to constantly look for our waiter....to order.....to ask for extra napkins.....to get refills....to get our check. Maybe we caught him on a bad day? Because I enjoyed my meal so much, I'll give him the benefit of the doubt.\n\nReturn Factor - 92%", "type": "review", "business_id": "UVBPF4oYrb0QfgW_DMbLPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0O8zLqElJsR9yOmvcMsInA", "review_id": "lgg_dZFZuvV7zcHyw-GT5Q", "stars": 2, "date": "2012-12-31", "text": "$8.17 poorer after getting two dry cupcakes with hard frosting. Not sure if this is because I had refrigerated them for a short while until I finished my dinner, but I don't think frosting should make an audible, snapping sound when I sink my teeth into a cupcake. The quality of my cupcakes was comparable to baked goods purchased at regular grocery stores. Very disappointed. I wish the cupcakes reflected the charm and appeal of the storefront and its employees - the young lady behind the counter was very nice and helpful.", "type": "review", "business_id": "iJo2rZOjhWevF-OXP-FQgQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "Ip9XDe8g2SkJlNpkEVTXbg", "stars": 4, "date": "2011-08-31", "text": "It has been awhile since I have visited the Dubliner. The only reason I haven't frequented the place lately is because I don't live near them anymore so I can't just either walk home or call a cab for 5 min ride. However there drinks are strong and cheap! Either that or the bartender was being very friendly on the few times I have visited :) The food is not to shabby either. I mean you can't possibly mess up fish and chips. Hmm fish and chips. So go, check it out, but remember if you have too many, call a cab. Did I mention that their drinks are strong and cheap! #winwin!", "type": "review", "business_id": "noLH_u4MJzfXYYHqcByjnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rr1SwkDviA2vFE_755SWkA", "review_id": "40AO8elVU2Pj9d-SmVt-ig", "stars": 4, "date": "2012-10-21", "text": "My favorite place for fish fry. They perfectly pour pints of Guinness, too.\n\nThe ginormous chunks of cod with a crispy, light-to-medium batter is very tasty. I prefer it with the scalloped potatoes but you don't get a choice during Friday all-you-can-eat.\n\nIt's a small-to-medium sized pub with a nice scotch and whiskey menu. I had my first Tullamore Dew here and it didn't disappoint. It's a bit dark and some of the tables are wine barrels - makes comfortable sitting a bit of a challenge. The live bands I've heard were great and can be pretty loud. A couple of TVs dot the bar with all things football (soccer) and American football (if you're a Jets fan).\n\nService is friendly and only a couple of times it wasn't very prompt.\n\nIt definitely has a bit of character to it and I wish I had more time to stop by there.", "type": "review", "business_id": "BpSLpzq_NRYghGSsb10G3A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gkpMjWWEDKbiWSWzgubq3w", "review_id": "-YGJ39pz3szAEAdl6k63qg", "stars": 4, "date": "2010-11-25", "text": "Boyfriend and I went to try Lobby's after seeing the phenomenal reviews. He got the famous Italian beef sandwich hot with cheese and I got the little veggie sandwich and an order of the chili cheese fries. He got his in a combo that came with a side of fries and a drink. The owner was there and took our order and he was suuuuuuuper nice. He was really excited for new people to try his food. \n\nWe went and grabbed a table and just as we sat down, a rush of people came in. There must be a lot of regulars because he was greeting some by name. There must be something to this food for that many loyal customers. \n\nNot too long after we got our drinks, the food was ready. I decided to immediately dive into the chili cheese fries. The cheese was like the melty nacho kind (not spicy though) and the chili was actually kind of sweet. I wasn't the biggest fan of the chili. My boyfriend did like it and he doesn't usually like chili. I'd probably just get cheese or plain fries next time. The little veggie sandwich was so tasty! It was lettuce, tomato and pickles (I didn't want onions) with their house sauce on a sesame seed bun. I'd love to try a burger next time.\n\nThe boyfriend did like his sandwich except he didn't know it was going to be \"dipped\". He doesn't like his sandwiches dipped, so if he were to get that again, he would request it dry. The sandwich was hearty (I added a pic) and very filling. He kept stealing my chili cheese fries so I take it he liked those too. \n\nIt was really bright and clean in there and the owner and the guy making the food were really cool. I'd definitely come back. We both want to try the burgers next time. Although....the hot dog with all the stuff does look damn tasty too....", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dUDzN6zl3j12zhByOrnF9Q", "review_id": "vv8F2l1nctRKC4qXNFFtiQ", "stars": 4, "date": "2012-04-14", "text": "The place is good- the sushi is fresh and they have pretty awesome fish tanks (love me some puffers) in there. My only complaint is that the miso soup is a whopping $4! Is it just me? Or is that too expensive? Most sushi places that I frequent have it for about half the price... or it is included in the meal. Other than that- I'm a fan :)", "type": "review", "business_id": "Y2Lfzulh_D9nNcuH49UT4w"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "XuVeswVBiG7bye8-k731ag", "review_id": "4KSZBxowbs8digMxaVA0BA", "stars": 5, "date": "2012-05-31", "text": "What an awesome sushi place! I highly recommend How do You roll, if you want some sushi done quickly and freshly and without wait. what a novel idea. I want to thank the manager Amanda for taking good care of me, can't wait to come back again!", "type": "review", "business_id": "Qd0fyF-wB_1bQwSB34ggkw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7o7vuRkJtnnipRWw3kft8Q", "review_id": "egbaIr84Iwn2m2aTh4gt_A", "stars": 5, "date": "2010-04-13", "text": "Love the atmosphere, the patios, drinks and especially the chicken lollipops. If you haven't tried them, they are buffalo wings with a handy bone to hold on to while you eat. The sauce with blue cheese dressy is one for the record books!\n\nI am also a fan that they serve breakfast 7 days a week and have free wifi. This is a great place to meet for work or meet after a game. Not too stuffy, but nice enough that it isn't just labeled a bar.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f1-pIw_p0ifzu03TXjPRiw", "review_id": "ao5T4ltc0wvABji5xQsq1A", "stars": 4, "date": "2013-01-04", "text": "Before a Suns game recently, my Family and I stopped into Blue Hound for some drinks and appetizers. We attempted to go to Arrogant Butcher (been there many times), but it was packed. Having heard good things from another family member, we decided to give Blue Hound a try, and I'm glad we did. The inside decor is trendy and simple. We sat at the couch by the door (since that was what was available) and were quite comfortable - except for the occasional draft from the door. Our waitress was ok, she wasn't entirely too friendly, but she took care of our needs.\n\nAs for the food, we ordered pretty much all the appetizers. The biggest highlight was the scones with bacon jam. In fact, it was so good, it's inspired me to make these two things at home to see if I can replicate it. We also had the popcorn, which was good and the sliders, which were alright. The pizza with duck was great (could have been crisper) as was the other items we had.\n\nBased on the previous reviews it seems this place, being new, might be hit or miss. I'd say give it a try if you're in the area... why not? Trust me, it's worth a visit for the cheddar scallion scones with bacon jam!", "type": "review", "business_id": "kr3EFhoSwbJPrL_e_RD39g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ZnCGqeaJP5VDXnx_roIXQ", "review_id": "uaxOnMEBB1wcLfRsSsVY8g", "stars": 1, "date": "2012-11-06", "text": "i called them and they wanted to charge $30 for fingerprints!!!!! What a joke. I found a place on the other side of the air park who did it for $10. Caveat Emptor! If if could give them a zero rating, I would have.\n\nOn the other side of the airpark off of Greenway-Hayden loop is Global Pi Security. $10 for prints. Their address is 7807 East Greenway road, suite 9, Scottsdale, Az. globalpi-security (dot) com. Good luck.", "type": "review", "business_id": "ybrXM8JeI2x0brAFoEawuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hDANOMKLeEqwzytjxAuZWg", "review_id": "kxaG8Z1V9hfgGSwXG4JitA", "stars": 4, "date": "2011-04-20", "text": "I was definitely expressed with their buffet! I had been craving Indian food for quite a while, but since it can be a bit expensive having to order all the dishes separately I was determined to find a place with a lunch buffet nearby to give it a try. I was lucky enough to find this place, which I noticed had fairly good reviews on Yelp. This place is definitely nicer and bigger compared to other Indian buffets I'd been to. It has a wide seating area and nicely arranged tables. The buffet had a great selection and I was able to try new dishes that I'd never tried before. Everything was delicious. Tandoori chicken was dry, but then again I've yet to experience it moist and juicy at a buffet. The garlic Naan bread was soft and warm, SO good! Service was excellent! Server was attentive and polite - my glass of water was never empty. Will definitely be coming back!", "type": "review", "business_id": "Ew6YfU0XcFGM-S4zncZ5Dg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "asDONZzs6AdiY2asqk8Awg", "review_id": "BE6IHqolebzmGA4dbKvoyQ", "stars": 5, "date": "2010-03-09", "text": "So, my husband and I went to to Bombero's for happy hour. Neither of us consider ourselves wine afficianados, but we know what we like. I told the server, Tim, that I wanted a heavy red, and he delivered. It was a wonderful malbec that had deep fruity flavor and a nice hint of vanilla. It went very well with the chocolate dessert that my husband and I shared. \nIn the reviews, I see that many people complain about the bread and the bruscetta. I have to say that it was wonderful to have a bread with bruschetta that did not destroy my gums after eating it. The bread was flavorful, soft and didn't feel like it just came out of a toaster oven. The toppings were very tasty, especially the Tapenade, the Chimmichurri and the Brie with fig. \nOverall, I thoroughly enjoyed the ambiance, the food and not having to valet the car on Central Avenue.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 5, "useful": 9, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "8wUBpLGYJesL0ipr6Ye-5Q", "stars": 4, "date": "2009-04-16", "text": "I'm being on the generous side in giving MEBAD (as I've seen others refer to this place) 4 stars...\n\nIt's kind of a unique gem that you don't see anymore with the owner at the register and a slamming lunch business in addition to the grocery items for sale that are rare foods, snacks, and ingredients from the Middle East. \nI suggested this place for lunch with Amy D today after reading about it on Yelp awhile back... so happy I finally made it there myself!\n\nAs Amy said in her review, we shared the baba ganoush and hummus plate and we each ordered a Greek Salad. The salad was decent but nothing special, but the baba and hummus with the whole wheat pita was so damn tasty that we didn't even leave a bite.\n\nThe free cup of homemade daily lemonade was a perk and the owner was really sweet... and I really did like the flavor of it. I happen to love lemonade!\n\nI'll for sure return to MEBAD when I'm in the area to try more from their menu... this is the kind of place you want people to know about since you can tell how much work the owner and staff put into it each day. If you haven't been, stop by... maybe I'll see you there - but please don't ask me to share my baba ganoush and hummus with you - I'm ordering my own next time!", "type": "review", "business_id": "IPsG_71MD8pwB9i3TKOJYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3MSa_fdxgsaY9yF9vqmeUg", "review_id": "FfMZa-5j7YE-cPWwFAYqmQ", "stars": 3, "date": "2012-07-15", "text": "Average sushi but lots of fun. I love just taking things off the conveyer belt. Alcohol is also a bit pricey.", "type": "review", "business_id": "hDHYbekIzW-M5tljy1IP1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "auHGQcvYjB_-Ds8xC7mYmw", "review_id": "nyJBJ5nFK9uaYw6EG1DZBA", "stars": 1, "date": "2011-12-26", "text": "Just called at 9:45 to ask when they were open until. Woman said they were already closed but website says open until 10 pm. Really?? Obviously don't care about patronage...mexican is a dime a dozen in the new NEW Mexico...no thanks. Next!", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gu-us9D4ONg3ZROy4U25AQ", "review_id": "oieOEQv7z7r8Y95e9yY8nQ", "stars": 5, "date": "2010-10-22", "text": "I've been a fan of La Bocca for a long time because it served the needs of an underserved demographic on Mill Avenue. Canteen offers many things that La Bocca does...and more. What is that demographic exactly? ...Late twenties, looking for something chic and classy without paying a ridiculous premium for those qualities. Mill has plenty to offer for the ASU kids and the older adults, but for those of us who lie somewhere in between, places like La Bocca and Canteen are just right. \nCanteen one ups La Bocca, in fact, because there are menu items included in happy hour (50% off most drinks and select food items). Here are the highlights:\nThe margarita. It's a real margarita! (It's not a lime daiquiri masquerading as margarita. Loads of sour mix does not a margarita make.)\nThe chips and salsa. Both fresh and delicious. The pico de gallo is particularly fresh and delicious.\n The ribs. Sweet and spicy...the level of heat from the habenero is perfect and the meat literally falls right off the bones.\nThe ambiance. It's chic but not pretentious. My friends and I really enjoyed the Latin music. Our suggestion would be to emphasize that music and minimize the clubby stuff (it verges on Scottsdale).\nTo contextualize some of the other yelper's comments. I was glad to hear that one yelper didn't find Canteen suited to his beer and Jaeger shot needs. There's a bar (or ten) down the street for that. For the yelpers that found the portions to be too small, I suspect they didn't understand the Mexican take on tapas that the taco menu is going for (in fact, the whole valley suffers from a lack of tapas locations). Finally, the service complains...my service has been cordial and attentive, even when super-busy. Folks, this place is new, let's let it go through it's growing pains before issuing such harsh judgments that might jeopardize the success of a really wonderful place.", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8URuhYN9feJbzqxm_oVTdQ", "review_id": "ueSoHWVSPXUr2o3yEa9v9g", "stars": 4, "date": "2011-03-11", "text": "Chicken noodle in a bread bowl. Sandwiches are good too :)", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W9ZG5q-QIblXYeHgaPS5Uw", "review_id": "tGHMqFm_Po4FIWC1unfvMQ", "stars": 5, "date": "2012-03-18", "text": "Beer is awesome (first timers must do the beer flight sampler) and I have never had a meal that wasn't excellent! A quick note, there isn't a/c in the building so keep that in mind during the summer months - although that doesn't stop anyone from going, the place is always jumping!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WESBNCIvswTWh-Ak2uGf4g", "review_id": "NON-KIh7ta4ujaiZwC_x6w", "stars": 3, "date": "2012-03-25", "text": "Was in the area for a grad school interview and the BF was craving some red meat. Came here based on yelp reviews, left pretty full, content about the food. \n\nService was friendly enough, but we had some trouble communicating what we wanted. We settled on the kalbi, bulgogi and the ribeye? steak meats, with an order of the tofu soup. Everything was a-okay but I think the only thing that stood out was the ribeye. Normally we like to cook the meat ourselves but since we didnt want to stink on our plane ride back to cali, we decided to let them do it for us. Side dishes were standard with the different pickled veggies, kimchi, potato salad, etc. Waiters were pretty prompt in bringing out replacement side dishes for us. \n\nSince we don't know the area very well, the stars are good service, being open at odd hours (I think we got there at 4pm?) clean restaurant, decent food. -2 stars for small portions and no real wow factor.", "type": "review", "business_id": "6Y-6Y6sy6qOQHrWI37zR1Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nvHd5k9EZmKQG8Owq3pZlQ", "review_id": "h_vf3ggssAtLyYYV-2n_Bw", "stars": 4, "date": "2012-12-16", "text": "Decided to roll the dice on a Saturday night and try this place everyone's been raving about. Despite showing up at prime time to a packed house we got a table relatively quickly. \n\nThe food was delicious and came out promptly. I didn't any problems with the wait staff like others have expressed. The presentation was a little more than expected without feeling pretentious or like I had to keep my elbows off the table; not that I'm a slob.\n\nDidn't get a chance to make it upstairs but the main dining and bar areas were well-lit but still cozy and had a simple, modern feel.\n\nGood place for a date or toss back a few cold ones with your crew. St. Francis is definitely on my list now.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZHmI4LNm4WegnNr7Jo4C8w", "review_id": "59HAZ3DjM06AtblqoC9WTg", "stars": 4, "date": "2011-06-05", "text": "Best basic $12 in/exterior wash i got in a while. Didnt even have to tell them to wipe down anything.", "type": "review", "business_id": "iCEBW0cHK3jDUFXGni6n-Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Zz-lHlp5gJdPg3LgFRRrRQ", "review_id": "mWHdv5Y4Fc51kl7gwoidzg", "stars": 5, "date": "2012-07-13", "text": "Loooove this place! Yes it's pricey, but good sushi usually is. The guys making the rolls were friendly. The atmosphere is nice. Hubby absolutely loved the quail eggs and I couldn't get enough of the spicy shrimp roll. Seriously, try it. You won't be disappointed!", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gX3_58gfnFbkwt30rUta7Q", "review_id": "AEFlT82TpGqrO4VYjpXr2Q", "stars": 4, "date": "2012-09-10", "text": "Second chance at bolero's.\nAfter receiving a phone call from one of the managers regarding our visit in April, we decided to try again. We were told they would make things right and they were very apologetic for the horrible evening we had. (We were so irritated with the place, we waited 4 months to take him up on the offer)\nAs an aside, we were told we would be comped dinner due to the previous disaster.\n\nI called ahead and spoke to Jason, who does not work at Bolero's any longer, but stated that since he was the manager at the time the incident occurred, he would make sure the new manager was aware that they needed to adhere to his promise to make things right. Was told to call manager Desi, but no one answered. Proceeded to the restaurant and hoped for the best. \n\nWhen we got there, as before, we stood at the front desk for between 5 and 10 minutes before anyone came to seat us. Not a promising start. Luckily though, that's where the lame service ended.\n\nWe had Gage as a server and he did a terrific job. He was attentive, stopped by to fill our drinks often, checked to make sure our food was good, brought things out all at the same time, and was pleasant to deal with. \n\nWe started with the cheese plate and it was, as before, good although probably could use some more bread with it as there are a ton of meats and cheeses and 4 small pieces of bread. As far as the food goes, she had the spinach salad, and I had the reuben with onion rings. Both dishes were well prepared and tasty. We asked for a basket of bread, which was brought out with dinner. The bread was great, but they maybe ought to consider bringing it out early, maybe just asking people if they'd like bread with their meal. Just a suggestion.\n\nOur only other concern as far as the menu goes is that there are not a lot of vegetarian offerings that aren't salad. \n\nOverall, it was a much better experience. As we said before, Gage did a great job, and even though Jason is no longer the manager there, Dave (who was standing in for Desi, from what we were told) took care of everything. They put effort into making this experience much better and they did a good job. We both appreciated it and we'd go back.\n\nThere it is, an updated review. Bolero's is in a beautiful location and now we can say the service & food are worth a visit.", "type": "review", "business_id": "GavgziItjOIkqqf7zm5w3g"} +{"votes": {"funny": 9, "useful": 18, "cool": 14}, "user_id": "saiZmxzBIowJbMgPBW1Now", "review_id": "Kb6Fi3IuDVza8ei6KPNvNg", "stars": 5, "date": "2012-12-25", "text": "No rake, no annual membership or fees. Just a fun \"home\" game in a strip mall minutes from my parents' house. They have 1-2 and 2-3 NL games and the min buy is $40, max is $500. Everyone is friendly and they offered us snacks and drinks while we played. Since there isn't a rake or fee, don't be cheap (like one guy there) and tip the dealer generously.", "type": "review", "business_id": "XRkv1rz9BJmOFRSgjGHBSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PYtryNSk30ytqOc_36sLPw", "review_id": "FkiIrset0wUWcmW-HM7gtQ", "stars": 5, "date": "2010-08-16", "text": "Talk about an amazing experience...First off the office is well decorated and clean...the staff pleasant and helpful...Rene the hygenist is caring and gentle. Dr. Keith is really personable and excellent at what he does. They don't do extra work that doesn't need to be done, they are very honest. The office takes many kinds of insurance and they are great with kids too!", "type": "review", "business_id": "nreEQ3b-cSZgT0S5oxj7yw"} +{"votes": {"funny": 2, "useful": 2, "cool": 4}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "cRa8f9QYJ0GyHxNrDzECmA", "stars": 4, "date": "2008-08-18", "text": "4 stars based on the sangria alone.\n\nOrder this motherfucker by the PITCHER, without apology.\n\nIf you can sit out on the patio, so much the better. if not, grab a comfortable booth near the bar.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_KVtRkDSo-tdZ2JQ6iFmtQ", "review_id": "TbYplh9exegRgGUS55VBfQ", "stars": 5, "date": "2012-05-03", "text": "This has got to be the best barber shop I've ever been to in my 38 years on this planet. I was always getting terrible haircuts at places like Great Clips and Hair Cuttery (when I lived in Virginia Beach), and I just assumed it was because I naturally had jacked-up hair. After getting my first haircut from Israel (the barber, not the country), I know I'd have a hard time looking elsewhere. I don't know if these dudes were ever in the military, but their attention to detail is top notch.", "type": "review", "business_id": "Vpfkn8rj6s8FoS2qsMRWSw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "TKUWlu6fruJ_jEUEXY6n5g", "review_id": "A9PF5V9rW3BLdR8-l_aB0g", "stars": 5, "date": "2011-10-28", "text": "There are so many good things for me to say about this place that I have no idea where to begin.\n\nThe ambiance is so amazing no matter what time of day you go. The small, intimate bar area (with quite a few pretty men!) is lovely on a sunny day out, while the tables inside are the perfect place for a romantic date. The menu is so great, carrying lots of new age food items (quinoa, black forbidden rice bowl, kale,and lots of dishes carrying local food items). It does make me very sad that they do not have a lot of vegetarian/vegan menu items. One time I tried to order the wood-fired vegetables and the waiter *swore* it was vegan. As soon as I tasted it I knew it had butter on it, and the waiter subsequently learned he had no idea what \"vegan\" meant. We ended up having to call a manager over.\n\nThe cocktail menu is so interesting it's hard to decide what to get. My favorite is the Dark and Stormy, which has ginger beer. *the BEST* cocktail around IMO. Do not pass up dessert. The bananas foster is amazing! Not traditional but good in and of its own.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sFwYHxRMBuI29e989vEJkg", "review_id": "vOSncRbPwCrMJvmNrXMCqw", "stars": 5, "date": "2010-02-28", "text": "We had a great time. Had bottle service with Katie. who was super friendly. Our drinks were never empty, and that was nice because we were celebrating a birthday. The music and atmosphere were great.", "type": "review", "business_id": "4juYmq_YpvdV8HZ1r0AWBw"} +{"votes": {"funny": 5, "useful": 2, "cool": 2}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "1u8ROSDRkuZzqZEPCitoqQ", "stars": 2, "date": "2008-06-23", "text": "Things that might happen at Bikini Lounge:\n\nYou might watch your friends dance with a bum in front of the juke box.\n\nYou might drink far too many pitchers of PBR.\n\nYou might throw a fit when you realize it is cash only.\n\nThe Bikini Lounge is quite possibly the crappiest place known to man. I mean it's in a shitty neighborhood where you might die, doesn't take credit cards, and has only bags of chips for food. So why do I keep going back? because eventful things happen here. Don't go if you want to have a quiet night with a couple of friends and go home and go to bed. Go here if you want to show up to a bar full of low lifes, order pitchers of PBR until you and your friends are all sick, then go outside and forget where you are and turn left down Grand Avenue only to find out you are nowhere near home when you get to the burned down church on 5th ave and monroe and a bum asks you for money. After that, you'll get in a bike taxi/rikshaw and tell the guy you can only pay him in cigarettes and then when he agrees, have him take you to another bar, instead of home, and then you will be further than you were to begin with. When you finally do get home thanks to a caring homeless guy that actually does have money (you find this out because he has a car) and gives you a ride home. You wake up the next morning wondering why all of your cash is gone, how much you drank, and where your friends are.\n\nIf THAT is the kind of night you are looking for, Bikini Lounge is IT!", "type": "review", "business_id": "cqIHyZ3Q0D4vBi-vb4mi-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Qt6BOpwL1eTQgCzuZzwlxw", "review_id": "y_GcU023D-9OXFXlsA-mcg", "stars": 5, "date": "2011-06-10", "text": "So yummy! I got the low calorie yogurt with all kinds of yummy fruit in it & didn't even feel guilty. Such a fun place to go with friends or as a nice dessert after dinner. I can't wait to go again!", "type": "review", "business_id": "zp5k6funVelIOVuqdY0mDA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "DhrV7cw-5cJeIqRZDxD0Pw", "review_id": "HK2av9X141RxnrmGG4XnJA", "stars": 4, "date": "2010-08-09", "text": "I've been to many, if not all of the major \"Savers\" and \"Goodwill\" stores in the entire city of Phoenix, and none of them have compared to this Saver's store. I'm new to the area, and recently took a walk across the street to check this place out. \n\nOne of the very first things I noticed after walking through the door, was that everything in the store was neatly aligned, stacked, organized, and nothing was really amiss. Even shirts were color-coded on the racks. All of the wires and cables for electronics were sorted, nothing seemed to really be out of place. \n\nAs far as the staff, everyone in this store seemed genuinely happy to be there and seemed to be content with their work. Staff was very nice.\n\nI have no real complaints with anything EXCEPT that a lot of things are marked up a bit higher than they are actually worth. There was a desk in fair condition, some scratches here and there, that was marked to $90; The same desk is sold at Staples for $79.99. Another instance of this was with a love seat with some tears on the arms (cat scratches) that was marked to $115, but I was looking at the same love seat in Sears for $89.99. I had noticed this with a few other items here and there.\n\nSome things could be re-evaluated as far as price, but that's more about the people in the back or maybe corporate, I suppose.", "type": "review", "business_id": "P2hdIBaOhbDwYfFcyokpyg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ch-JeRygCmrXf4mwZ9JTg", "review_id": "6wz6dfsRPfQ1EZl2_Gz8Sw", "stars": 4, "date": "2011-03-15", "text": "Fun Saturday night music venue with good food & beer for only a few $. The music is fun and tunes everyone knows. The 1$ carne asada tacos are straightforward; meat, cilantro, onion, grilled jalepe\u00f1o - delicious! Saw some lucious burgers being served. Will have to try one next time. Will definitely be back!\n\nAs with any outside venue, as a non-smoking asthmatic I appreciate adherence to the 50ft from door rule. I'm sure other non-poluters would appreciate as well. As seems to be the norm, smokers only care about smoking. I can appreciate that its an addiction, but think of others occasionally please.", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "jB9lYNGbGUMGwB1O7NLfWQ", "stars": 3, "date": "2012-12-12", "text": "Asi-Asi ,Menza-Menza,Comme ci Comme ca...you get the jist .\n\nSo -so ..(a solid so-so ).\n\nHe liked the taco's ,i liked the steak salad ( it had a nice little kick to it) Service was good.The atmosphere just wasn't my cup of tea ,that said ,i can see why some people like it here .Drinks were solid,menu was decent .\n\nGood place to get hammered ,I suppose.\n\nI had a Pinneapple mind eraser that was ......", "type": "review", "business_id": "ilJiRYZgxjrEu2iexKu-pQ"} +{"votes": {"funny": 17, "useful": 15, "cool": 15}, "user_id": "GLMX8Is_Ur6aIVV86Ok0Lw", "review_id": "M5w8FYcnYDRRnWQriUe1Wg", "stars": 4, "date": "2008-10-08", "text": "Huh. I guess it's a love it or hate kind of place. Me? I love it. But put butter on a shoe and I might just kiss you. Oh butter, is there anything you can't do? Is there?\n\nThis is one of the high roller places in Scottsdale. I saw a guy take a wad of Benjis out of his pocket that seriously made me consider rolling him. But my boss might have objected. Damn boss.\n\nIt's all about service and steak here. And I'm down with that. We had crab legs for an appetizer. Quite nice for a land-locked state. Fresh and tasty. A tomato salad with sharp onion that I enjoyed. And shared a porterhouse the size of my... yes. My ass. If one could give a nice slap to a porterhouse, this would be quite a spankable piece of meat. I love the way you can hear your steak coming to your table in all it's sizzling glory. The first thing to hit your nose is the lovely perfume of the butter. Chanel # Yum. Then that aroma of the meat. \n\nI know we had a couple of sides. But I honestly can't remember because the steak was so freaking perfect. To a corn-fed born and bred midwestern girl this is perfection. \n\nThe service is near perfect too. Our waitress gave us a wine selection for the steak that was spot on. Not too tanic. Not too tame. Held up nicely against the butter and the porterhouse. At the end of the meal I was I nearly unable to move. And that says a whole lot. I've been known to out eat grown men without batting an eye. \n\nOh, and if you don't like butter on your steak? Three words. \"Hold the butter.\" May save you some pain.", "type": "review", "business_id": "sbjb1qNUcqQomJvcgPuJCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2RjxUP1CM0aL9yIzanAK1w", "review_id": "imky-vWinKwIovIKOLy4Pg", "stars": 4, "date": "2011-01-17", "text": "Had the Jalapeno burger. Great stuff.\n\nIf you have not eaten here yet, I highly recommend it.\n\nI've Had their Tri Tip, Beef & Pork Ribs, Pork, Brisket & Burgers along with most of their sides. All were excellent.\n\nTheir Drink specials were great as well.", "type": "review", "business_id": "4DhqZ0tyi2V2Mp8IqTREAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ygda3eaZvqGTguTJLTZp5A", "review_id": "2gfW7UgSeSAkxTXT60Ye_w", "stars": 5, "date": "2011-09-16", "text": "I've been meaning to try this place for months and I'm so glad that the temperature has finally dropped to less than 100 degrees so I could take advantage of the outdoor patio for lunch! \n\nThe service was kind of slow..not sure if it was on purpose so I won't knock any stars off for that cause the food was delicious! Got the chicken, goat cheese, bacon, apple, pesto foccacia and would def recommend it. Everything tasted really fresh! A perfect lunch spot :)", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HgngoaGyf2wr9OC4Gc-TNw", "review_id": "iOABod6-D0_5jcy0U1-7KQ", "stars": 1, "date": "2011-11-28", "text": "I am leaving this store angry and can't resist writing a review! \n\nThe staff is incredibly useless....if you can actually find someone to help you. The store is huge with very little signs to guide you. Therefore I always wander aimlessly looking for the one simple thing I stopped in for (even though I tell myself I will never go back) with no one to help me. \n\nToday they were out of an item I bought last week and need more of to finish my project. I asked the only 100 year old lady I could find to check the back and she told me they have nothing in back and to ask customer service. The lady at customer service was actually a reasonable age and when I asked her to call the Indian Bend store she handed me their number and said \"well you can call them\". I stormed out soooo mad and this time I promise to never go back. Hobby Lobby or Michaels is worth the drive!!!", "type": "review", "business_id": "RqmE46axGgrS9lrbge0CKA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iid3odH5o9YBDWIzcA0Ngg", "review_id": "uo2JYMyLjiDFI2A-W09P5w", "stars": 5, "date": "2012-02-26", "text": "My sister was leaving back to Texas and I decided to find a BBQ place that may have a similar taste and feel. I found this place through a Mesa newspaper ad.\n\nAnywho, as we pulled in I was like I hope this place is good. We parked in the back and walked along the side where you can order your food to go. As we waited we decided to head inside and as we walked through the dining area to the line, I was already eyeballing other peoples plates. I could see the ribs and at that point I couldn't decided on a plate, but went ahead with the plate that had everything.\n\nI ordered Ribs, Pork, and chicken and as I was ordering I seen some sausage come out of their bbq oven. So I didn't even hesitate because every since I've moved here from Texas, I have yet to find a place to have the yummy peppery tasting sausage we have back home. I asked for a piece of it for tasting and was granted a taste. Needless, to say I ordered a quarter lb with everything else I ordered.\n\nThe chicken was without a doubt great smoked bbq chicken I have always wanted. Great flavor with not an overbearing smoke flavor. Also the ribs were tender and packed with flavor and smoke taste. The smoked pork was smoke tasty but a little on the sweeter side, but that was nothing the Habenero BBQ couldn't accommodate. Which is offered on the side. Oh and the bread tasted like some homemade goodness bread. As if it was fresh out of the oven with a little garlic butter. Superb! The Mac and cheese was super duper great.\n\nIn Texas, we have bbq joints in every corner. I have tried it all and I will have to say this is one place I would have on my top list if we had it there.\n\nBIG bbq sauce thumbs up for this joint!!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SuM-5uuReJJY30J4widx1A", "review_id": "bGn4WdIjbAD8k8BW8ywTDQ", "stars": 4, "date": "2011-05-27", "text": "Huge fan of this bistro. Everyday or two there is a new exotic meat that you must try.\n\nThe staff is super awesome and Brant is my go to guy.\n\nI highly recommend sangria sundays, the wagyu and veggie burger are my absolute favorites. Not to mention, the sweet potato fries and Purple Haze beer. \n\nIf you like sliders, this is the best place to go in scottsdale.", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0NckJhx0qXykvvhsm-p7MA", "review_id": "23KaDK5hl3kgJahxvZSkww", "stars": 4, "date": "2010-03-29", "text": "Maybe closer to 3.5 but I am rounding up because I'm not opposed to being won over by \"smart\" bartenders -- when I ordered drinks she asked to see my ID and then followed it with, \"you look so young, you must get that often.\" Granted, she looked younger than me, but I am not opposed to having my reviews swayed by cute bartenders who know the right buttons to push. In addition, the house margarita was good, and I have been known to throw bad margaritas all over the bar in a fit of rage when I don't get carded...fortunately my vanity was satisfied. \n\nThe space is very nice and open, and despite the decent size crowd, it didn't feel crowded. Our wait was less than 20 minutes and there is ample place to sit and have a drink while you wait. Now, I must say, I don't know that the required staff uniform is unattractive, but it does seem like an impromptu tennis match could break out any moment. \n\nThe braised short rib enchiladas were good and the fish tacos were even better. The tacos were slightly overstuffed and rather difficult to eat as a result, but the taste was good (3 shells, as opposed to 2, with the same amount of taco insides would be better). \n\nWhile the waitress didn't attempt to win me over with flattery, the service was prompt and attentive.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "qX7PnzPkPt7Zg8be_sq-hA", "stars": 2, "date": "2009-03-03", "text": "I don't know of a single Phoenician who wasn't absolutely ecstatic about Hanny's opening. We were all excited for this cool new \"destination.\" The husband and I were the second pair of people to walk through their doors. There were literally hoards of employees working at the time. There were about 15 upstairs staring at us, about 5 at the bar, and 15 or so more servers just chillin around the restaurant. Somehow, with all these people, they managed to completely ignore us for most of our meal. Making a typical 45 minute to 1 hour dinner experience turn into a 2 hour ordeal.\n\nThe decor of this place is beautiful. Cool, clean, and modern. The music fluctuates from being too loud and inappropriate for the setting to being perfect with an eclectic but well blended mix. \n\nThe pizza is decent, but very appetizer-ish. It is cracker thin, which turns a lot of people off, but I actually like it. The onion strings are to die for when they aren't completely grease laden. That's an off and on thing, not really consistent. I don't like their sandwiches. They are unimaginative and bland. There really isn't a lot to choose from on the menu.\n\nUnfortunately both times we brought friends along with us, the place was a buzz kill, and I am not really sure why. Maybe we will try the place again now that it has been open for a while. Hopefully Hanny's has figured out what he wants to be when he grows up.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7RZ0mJJ00IiT56sloLBd1w", "review_id": "YxAY4OGkICTeVpy6o4wFLw", "stars": 3, "date": "2011-12-22", "text": "Saw a show here last night. Stage is raised to a proper height, acoustics are pretty decent and the sound system is adequate for live acts. Three trapezoidal speakers flown above the stage provide good coverage and nice clarity. There's a couple of subs tucked beneath the stage. They have some moving lights(mirrors move not heads), and some LED par cans. Monitors are on the stage floor, and are JBLs so they seem decent. If it were up to me, I'd toss about 12 more cans on the front wash and add some side wash. They have the trussing to do it .\n\nStaff is attractive, and friendly. Knowledgeable about the area and eateries too. There's a patio where you can smoke outside, and they have heaters so you don't freeze your *** off. Drinks are reasonably priced for Scottsdale - and they had some good specials last night which ranged from beer to cinnamon whiskey to vodka - so your bases should be covered.\n\nI'd go back. Go early, or good luck parking. Also - note that last night was Christmas week, so even though it was Wednesday tons of cops were out and about, pulling over all kinds of people as they left Old Town Scottsdale. So word to the wise - Don't Drink and Drive.", "type": "review", "business_id": "1mhywrdsgdqJM3OGZIpVtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fTo1Nf5hXSZqPC_qkvXlrg", "review_id": "qN1CK8eTejVE0D7rqtC5aQ", "stars": 3, "date": "2012-01-07", "text": "It is what it is. No frills. Fine front desk staff and general cleanliness. I felt safe and the bed was comfortable. I'll tell ya - my favorite thing about this place is the bar Baer's Den at the end of the parking lot! \n\nThe breakfast should not be $10, it should be included! I did however have a fantastic breakfast sandwich at the Safeway right down the street!", "type": "review", "business_id": "ky3kuTeqTUOU4CsZ_2_LzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eDB9tT3eaKJHHjoa2YRJEg", "review_id": "YD6Rk-7f6ERnYxaRHJ5LJw", "stars": 3, "date": "2012-12-02", "text": "This is a fun place. It is a great place for a fast, cheap meal. Is it truly authentic? It is probably closer to being authentic to many places around the country. Wagamama-like? Perhaps. If you know how to order you will do okay here. A great addition to restaurants in Tempe!", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "eqQUrSb55s2Lp-I4WCAxDg", "review_id": "gNS2bQwE1LMmKQmwfK4hFw", "stars": 4, "date": "2012-11-19", "text": "The main advice I would give anyone interested in dining at Postino Arcadia would be: \"Prepare to Fight.\" Prepare to fight for a parking space and prepare to fight for the bruschetta which is to die for. My favorites would have to be the Smoked Salmon and Pesto, Apple and Brie, Prosciutto and Fig and Warm Artichoke. Plus, you cannot beat a bottle of vino and 4 types of bruschetta for $20 every Monday and Tuesday after 8pm!\n\nI am also a huge fan of their Pretzel Pub Board and NYC Grilled Cheese that is companied by a Sierra Nevada Mustard, Pesto and Ketchup dipping sauces, washed down with a cold Stella Artois Lager Belgium. These menu items have sparked inspiration for me to make similar dishes in my own kitchen more than a time or two. So grab some good company, a bottle of vino paired with bruschetta and prepare for a relaxing-enjoyable night out.\n\nDon't forget the Affogato (vanilla bean ice cream topped with espresso) to give ya a jolt for your car ride home.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "ThPwlYBLLSics3bvRuNgJw", "stars": 4, "date": "2011-11-19", "text": "When you specialize in something, then you should know it and do it well. This is the Zinburger approach to burgers. Our server, besides being very attentive and friendly, was also extremely knowledgeable about the preparation and ingredients. It showed me that Zinburger really knows their burgers and takes the time to educate their staff. It also served to heighten my expectations...which weren't let down.\n\nThe quality of my burger was very apparent. The bun was fresh, the meat was high grade, and the other ingredients were also well thought out. I love when restaurants are meticulous with their creations. This is a superb burger, expertly prepared from the creation of the patty (not too compressed) to the cooking of it (a perfectly pink in the middle \"medium\" is what I ordered and received). Simply great.\n\nThe milkshakes are over-the-top rich and delicious--like eating whole pint of Haagen Dazs. We all shared one, and it was still overkill. Great tasting though.\n\nThe fries were a little \"meh\" to me. Not sure why. They were hot & fresh, but a little bland. I tried the Truffle Fries as well, and they were also a little boring. Maybe they should try a different kind of oil or potato...or both. They were decent fries, just not as \"top notch\" good as the burgers.\n\nLastly, for a \"burger joint,\" the service was excellent...to the point of fine dining type pampering. Very nice. Overall, I'm a fan. I'm looking forward to returning.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VTy78_cwc6stR_3fP5BnjA", "review_id": "cIlGYMW2yASdTIbKkyloEw", "stars": 5, "date": "2012-04-09", "text": "Always good food and good service. Best gyros around. I know I always get speedy service so I can eat my food and not be there for hours.", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hRv1EcyXnVWAo--BikySTw", "review_id": "b9ZiLzPSqc6vJcNgUft9Vg", "stars": 5, "date": "2012-03-13", "text": "Excellent food! Agree the sizzling rice soup is a must try. I had chicken pad thai 5 of 7 spicy level because I like spicy food. Great you can request spiciness level on each entree.", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Stpy2uWvI0k9rZkIrnWbtg", "review_id": "4gDaN2HcH5dLwZt8WuWGNw", "stars": 4, "date": "2012-03-11", "text": "Tasty, large portion, culinary delight appetizers.\n\nMore of a bar than a restaurant, but the food was good & trending artisanal.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-uYfeJs1HNUBRDEBYdv7zQ", "review_id": "LS4YZU6E_rOi4b1nO9j_3g", "stars": 5, "date": "2012-05-03", "text": "I have been here 3 times, and find it unique to Phoenix with a country French ambience without being \"cute-sy.\" The patio is one of the loveliest we have here in Scottsdale. My daughter and I celebrated an early Mother's Day here recently. We were seated in just the right spot on the patio to tuck my grandson and his stroller in a corner next to the table. We splurged on some white sangria for lunch.....so pretty it had it's photo posted on Facebook. The Brie and Carmelized apples also came with grapes and strawberries and it was a very large serving of cheese. It could easily be a meal or feed 4 as an appetizer. We actually ran out of bread, because the Brie wheel was a nice large serving. The smoked ham sandwiches on crusty baguette are so good that I am craving them a few days later ....we used the still-warm gooey Brie on them, too. This place is just special! Plan an event, take a guest. It is a spot that will make it memorable. This was my first lunch as a new Grandmother with my daughter. My daughter is from the beach area in SCal, and she was wow'd. Thanks for the memories.......beautiful day.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9bP3urjM__IP5csFh9ZsuQ", "review_id": "MvejZPX5LiPvy9nP_nKgWw", "stars": 4, "date": "2011-07-07", "text": "Located in the W Hotel in Scottsdale. Great sushi dishes and a great atmosphere. I've only been there once but the service was great and the food was very taste and fresh.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eTIs9usl24L8HOyt32cq8A", "review_id": "pH-guc8jRiGJjphkXW_jbQ", "stars": 4, "date": "2012-03-21", "text": "Teakwoods is the place to go if you are a \"wings\" fan! They grill wings for crisp perfection and the flavor is so good that I don't even need ranch to dip the wing in. I know - How can you not need ranch? I didn't believe it until I tried it. \n\nEverytime I go to a restaurant that offers wings, I will be comparing it to Teakwoods.", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cGB8QwXbA87QndyeqotxrA", "review_id": "3y0Qfsc-de5lF8RYlw9DBA", "stars": 5, "date": "2011-02-14", "text": "Just got back from lunch here, and I must say it was delicious! We sat outside on the patio which was very nice on such a pretty sunny day. I had the beef gyro which was huge and so so yummy! It came with a fresh greek salad and a yogurt sauce and I couldn't have asked for anything more.\n\nDefinitely recommend coming here!", "type": "review", "business_id": "PgcuQvFl76bx42xIFyhzVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U0jr6zPZM-EZRN5EFej6HA", "review_id": "j2WBSko-r3c2ciW7NtLBvg", "stars": 5, "date": "2011-07-30", "text": "We went here for my wife's birthday, and it's a rare 5-star review for me. They scored on food, presentation, service and atmosphere. We sat indoors - it's a bit hot out still - and loved the decor, including the fun pillows on our large booth seat. Service was prompt, friendly, and attentive - but we never felt rushed. They make a killer mango mojito that perfectly balances the mango, lime and rum flavors. The kurobuta pork was perfectly prepared. And after having some disappointing lobster (in Maine of all places) the Maine lobster here was done just right - firm but not tough. They serve it \"lazy style\" and did a great job with both claw and tail meat coming out perfectly. A special birthday souffle topped the evening off. Expensive but absolutely worth it for a special occasion.", "type": "review", "business_id": "H9wnP4BIctmRxMq43NPgAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GfW3R5sQpRqZLw-V7TIbVg", "review_id": "hCV6JuILuCEDJAFos3nTXQ", "stars": 4, "date": "2010-06-02", "text": "Great place to shop for suits, ties, and dress clothes at reasonable prices.", "type": "review", "business_id": "ks-hzHZApm0jvsi9M7s9lg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "snK_lEarSuDHlWwKfwSeFw", "stars": 4, "date": "2011-11-19", "text": "If you need any office supplies, furniture, printers, computers, or one of them fancy electronic book readers, then you should check this place out. Not being a teacher or office manager/employee, I only come to these stores for printer ink. I was greeted with a friendly \"Hello, can I help you find something\" by one of the employees. My friend was looking for a stapler which the employee quickly guided us down the aisle to find an extensive collection, although I didn't see a red Swingline stapler ;) \n\nThere is a huge print service station in the back and plenty of employees to help out with anything. Check out was super quick as there were three cashiers open and ready for a customer. Oh and I found out, thanks to my teacher friend, that you get a discount if you are a teacher. Pretty rad.", "type": "review", "business_id": "9zJbULB6K3nbo-2N5cKy9Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "9tzcfztV8Ab3w3VDe7ZNrg", "stars": 2, "date": "2008-08-25", "text": "What is with the guy working there? He is seriously pissed-off every-time I go in. Actually last time I was there I walked out because he was yelling at one of the workers and it made me want to cry. I wish she would have walked out too. The time before that he was rude, not just rude, but a complete jerk to the people in front of me, what an a-hole. \n\n2 stars because it is downstairs from my work, and it's cheap and if one of my co-workers goes to get a slice they always have my hawaiian pie.", "type": "review", "business_id": "cUaaIk_3UdeSJ54CLvrW8A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "FXbDtMtmR3zF50ljxeQueA", "review_id": "oGlJr_FFBA4zBiVNSxAEBg", "stars": 5, "date": "2011-03-24", "text": "I agree with the other reviewers.. Ink bomb is definitely a shop that has a family vibe. All the tattooers are down to earth and have you, their customer in mind. There are usually 3 or 4 tattooers there, giving you a wide variety on technique, style, and experience.. all of which are important when picking your tattooer. I suggest always going in and having a consultation and looking at each persons portfolio to choose someone who fits your style whether it be \"New school\" or \"Traditional\" This shop has on open layout and a friendly vibe which allows your to let your guard down a bit.. because we all know tattoo shops can be intimidating....\nI will definitely be recommending this to all my friends and family.", "type": "review", "business_id": "i1zU7n6vtDZfHBumPsHLFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vcfA6QjKXq898QLz7wf_bA", "review_id": "LT0IUJB2QFYLNLJq5dK-2g", "stars": 2, "date": "2012-08-29", "text": "I was not happy with the service department. Service writer had a poor attitude towards helping me. Repair work was done well and on budget but it is sad how a greeter can sour you on the whole place.", "type": "review", "business_id": "5pgzTBgt-HR_0s7TDXSL2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Tw5glDzhfWs54emzY05JYQ", "review_id": "FGVsHCT8DgeSAHd5va8FjQ", "stars": 1, "date": "2012-12-20", "text": "New N. Scottsdale location, Baaaaaaad! The were 10 staff members milling around and there was no manager on sight. $10.00 for a mediocre burger, with an uncooked, tasteless bun not large enough to encompass all the arugula. They forgot the sauce, which apparently is the main ingredient. The upgrades are ridiculous. $1.00 here for cheese on an already \"well priced\" burger (btw Flemings blue cheese/bacon burger $6, best in town), $5,00 here for fries. C'mon. And, it's the same two hispanic guys, who don't have any idea about chef inspired food, cooking in the kitchen as every other restaurant, there is no chef For the price, you want to see the chef/owner representing, especially at a new location, and, you want competent staff who treats you as #1, and not their conversing with the other staff members as #1, and you want to enjoy what is supposed to be one of the best burgers in town! What a disappointment. The lack of top down management care and supervision carries through in all elements of the poor experience. Take a pass.", "type": "review", "business_id": "SsL60j4ut59-v-gjmM5PKQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Z2G3xprEHqOgTSYto1tpfg", "review_id": "eig_QEv_BZcBlijoOnCCqw", "stars": 4, "date": "2010-06-13", "text": "I lived in Phx for 7 years and never heard about this place, but having to come back for a friend's baby shower, I needed to find a good hotel. This place was surprisingly awesome, considering it's right next to Old Town. \n\nWalking up to the rooms part from the outside/back is not very impressive, they kind of look kind of like converted apartments. But inside is contemporary looking, little older, but still nice. The landscaping is awesome. \nBeds are really comfy, the kind you sink into. Which is a huge plus for me, since i'm expecting and my stomach is pretty uncomfortable at the moment. \nNo dated tube TV's, yay! We had an LG LCD, and the channel selection was decent, they were all in analog though.\nI was worried about noise since this is right next to obnoxious Old Town, but it was really quiet. The only noise we had was a neighbor's dog deciding to bark at like midnight... (They are pet friendly and provide beds, bowls and walks for dogs)\nAll the rooms have patios so, if it's not bloody hot it's nice to sit outside in the morning, listen to the birds, and people watch. \n\nOur room came with a bucket'o'beer deal as well that we didn't use, esp since I can't drink. It was all crappy domestics of the bartender's choice. \n\nThe only complaint I have about it was that the pool was packed most of the day.. We went back to the pool around 10:30pm to relax and there was still 5-6 children playing in the pool and the spa. What little kids are doing awake and at the pool at like 11pm, I don't know. Those are some responsible parents... \n\nBut for $92 a night and all the stuff they include with it, it's definitely worth it.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QYgcusG-G0bwUOt0b5rT6w", "review_id": "a1P9XCKr5zw6ezfHsdWZqg", "stars": 5, "date": "2011-09-13", "text": "My go-to restaurant for very tasty, genuine Thai food. Great lunch specials. Favorites from the dinner menu: fish cake, tom kha soup, pad thai, hot basil, Thai iced tea", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fFnaNnsBfStQKXQ6ymYy4A", "review_id": "DTjcfZMid-26UmUd-_J5RQ", "stars": 5, "date": "2012-09-02", "text": "HELLLLLLLLO GOLFERS! What a sexy course this is. This ranks up there with some of the best courses I've ever played, and THE BEST desert course I have ever played! Yes it's desert links style golf, but you're in the desert so what do you expect? It's kind of a trek, but it'll be worth it. From the moment you arrive to the moment you leave you'll enjoy the service and scenery. A real private club feel.\n\nAs mentioned earlier this is DESERT LINKS GOLF! No adjoining fairways, and all the crap plays as PGA desert (lateral). The fairways are pretty wide for the most part, so you can spray the ball a bit, but there is definitely some carry involved on some of the tee boxes. Hole 18 is a very hard core par 4. Long carry on the approach to the green with a TON of water along the right side of the fairway and green. This is the kind of hole that can ruin a good day on the course real quick. Don't be afraid to lay up. :) Oh, and there are mens ratings for ALL the tee boxes, I'd recommend higher handicappers play from the forward tees, because this course could be really hard if you're a mediocre golfer... \n\nMaintenance was perfect, even in September after baking in the Arizona heat all summer. The fairways were well manicured, and not too hard. Nice rough, but not too tall. A slightly errant shot will be caught, but you won't have to worry about searching for your ball for 5 minutes either. The greens were also perfect. Nice and fast, and TRUE!\n\nOk, I'm done gushing about this course... Give it a shot, you won't regret it.", "type": "review", "business_id": "Inw6wqV6Jisv_k6Nr-M0VA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y7sq26EXGz7XG7DSo8TOuQ", "review_id": "aKOTtEvWwPcSimUPgRKvyg", "stars": 4, "date": "2011-11-19", "text": "I've gone here three times and each time with a different group. I have never ate here so I'm reviewing on games and booze.\n\nFirst off, I think every time I've walked in the door I was greeted with two things - a bouncer checking IDs and a nice strong whiff of beer. Hello, if you didn't already know it... you're in a bar.\n\nThe place is kind of broken in to 3 parts - a bar, a restaurant, and a game room (billiards, ping-pong, darts, video games, air hockey, shuffleboard, etc.). I've played them all and I've enjoyed all the games. This is a pretty good place to just mess around with friends and BS and quite honestly this kind of reminds me of bars in Ohio where I'm from, albeit a bit more upscale since there is more. There is a lot of pool tables, so I would say that if you did have to wait, you wouldn't have to wait long. There is at least 4 tables.\n\nI don't remember my bill total, but generally I get here and just play games or only have one drink. So I can't really even comment on the pricing.", "type": "review", "business_id": "BJfjd8oEMW_zq8KTkixyig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-ShGtYhJlQH_XQNjUcsU2A", "review_id": "cRSvUjo78f34_WAVWzPN1A", "stars": 5, "date": "2011-02-24", "text": "very laid back, very clean. This was my first piercing since I was a little kid. I had my tongue piercing it was very professional and they answered all of my questions. I went to this place specifically because of the good ratings they had online. My friend also had a tragus piercing here that went seamlessly also. I felt very safe and comfortable.", "type": "review", "business_id": "97Z7j4vH0kfzL10AONi4uA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B4JqOYmQHnffRn5JUVpCNQ", "review_id": "5qEbk0g7kLMab7b0JD4k1Q", "stars": 5, "date": "2012-06-08", "text": "We tried this last night for our date night. We were impressed. The waitress was amazing in explaining the menu and making suggestions. This is a great place to relax and talk. The food was great. I had the Tartiflette...WOW it was so good. My husband had the La Potence, which is their speciality. He thought it was great...We will be back...", "type": "review", "business_id": "Az69nueCy94SVKkWaNNR0Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "gg6KTSmKgevUB-IpGRub_Q", "review_id": "9tsvEP4o6y3hZmzAvJBt3g", "stars": 3, "date": "2011-05-21", "text": "Wanted some mexican that wasn't taco bell. The hotel recommend this place. The restaurant smelled like the inside of a tomato sauce can. I was turned off almost immediately. I decided to sit on the patio and try it out anyway.\n\nI ordered the Chipotle BBQ Chicken Chopped Salad with a light cilantro lime dressing. It was okay. The chips and salsa were okay too, nothing to brag about. The salsa tasted like it came from a can. I'm happy I ordered a salad. The redeeming factors were the Arizona Sunset Margarita and the good service. I think once restaurants turn into chains, they seem to lose their original character.", "type": "review", "business_id": "wzIPW_XyKc2DBWdOUM5hlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "4O6rzNFfHuESYX9jAWGu_A", "stars": 3, "date": "2011-09-25", "text": "The food isn't all that. I order an Ahi Salad, which was barely touched. On the other hand, the chicken Popsicle my friends ordered were quite delightful. all in all, that atmosphere was surely enjoyable.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yEzlmDFbVrTI9R4cZTaUrw", "review_id": "PzDtSkdatf6pJYKjL3WxAA", "stars": 5, "date": "2012-12-05", "text": "Best breakfast in the valley. Dinner sucks. Well, let's clarify a bit here. We've ordered blueberry pancakes, stuffed french toast, muffins, and a few other b-fast items. They were all stupidly good. For dinner, we've tried a couple dishes such as the recommended jumbalaya - SUCKS! Stay away from that canned garbage. Back to breakfast...dang, that's incredible!", "type": "review", "business_id": "-WZIxGXJHMGidZXRhKxP3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gnnJMMc5ZAkoJ8v4phFPQg", "review_id": "DtPIv-MSLEtjI9caKnQ1YQ", "stars": 4, "date": "2011-05-16", "text": "I've only had a baguette once but never again, it almost made my gums bleed!\n\nHowever, ever since they opened I've been a fan of their most delectable croissant sandwiches. Great prices and awesome drinks. Suckks they don't take card but still worth it.", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "YOxdPCAFcIQeeKgCNUcshA", "stars": 4, "date": "2011-07-31", "text": "Great place to see a show. Prices are the best around, and it's never too crowded.", "type": "review", "business_id": "kpzzEpXcHo9yzhUcz14chg"} +{"votes": {"funny": 1, "useful": 7, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "J_anYGV2NXZ3jsWkrSs2kA", "stars": 5, "date": "2008-01-22", "text": "I heart Sky Harbor Airport Parking...\n\nOf course, it's always nice to find a ride to or from the airport but when you're all out of favors and you have only yourself to rely on, it comes down to driving yourself or getting a taxi. Sky Harbor Parking to the rescue. \n\nFor $8 a day or cheaper if you print the coupons from their website, the folks at Sky Harbor Parking make it easy to drop your car and get to your gate in no time... and I've used them a handful of times solo and with the BF so I know it's door-to-door consistent service. \n\nIf you are interested in covered parking, call ahead, but otherwise, just drive over to Washington and 40th and they will take care of you from there. Also, I recommend calling from the airport once you have your bags and they are always good about picking you up within minutes to take you back to your car.\n\nI hope you'll find Sky Harbor Airport Parking as useful and convenient as I do... safe travels!", "type": "review", "business_id": "U4IipLI4RsuBLmxTFEV2MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S84E-NLNx2s2zyyJHjDD5g", "review_id": "Q6wHoDSBTujEHw11tFG6UQ", "stars": 5, "date": "2012-06-27", "text": "I LOVE Kona's happy hour. Amazing deals on great sushi rolls, and the diner can always count on fast and friendly service. I am always happy with my experience at Kona, and find myself comparing it to other sushi restaurants. None can compare to Kona. Kona is the only place that offers my cherished Skinny Cucumber Mojito, and I come here often for it. I ask for this drink at other places and am always shocked that most don't even offer a skinny option, let alone the cucumber mojito. I have dined in the Scottsdale location as well as the Cherry Creek location in Denver, and both have equivalent high marks in service and food quality.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kemtiwLut4qMqSZNXax_Gw", "review_id": "LnYQOFof6h0araZXPolJxQ", "stars": 5, "date": "2012-09-25", "text": "Wanna try it? Now is your chance! One more day of this LivingSocial deal: 12 days for $49\n\nhttp://t.livingsocial.com/deals/453990?ref=email-jp&rpi=85154658", "type": "review", "business_id": "9mpVVHcUfM3Ax1t08H79ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Fjs6c1PwzY1YbTcuAyubCQ", "review_id": "TwYCoiVHcdv8eHFl35UO4w", "stars": 3, "date": "2011-06-26", "text": "If you want a dog and are in the area, this is a pretty good call. Having said that, it is probably not worth a special trip. You can find a better hot dog or brat at a ballpark or in the supermarket.", "type": "review", "business_id": "SvZXOhA_hIuQgR34VfVqnQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "t3T5iCEXzcrayjclyklNDA", "review_id": "dN8JtaKaWAzBmfRKgaLHGw", "stars": 5, "date": "2011-11-04", "text": "Love love love this place. Great appetizers and cocktail menu. Must visit in Old Town Scottsadale", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VJZJ0_EHtqi46pWxr7XPbQ", "review_id": "-DIdBhvnQRAbHzdTB5001g", "stars": 5, "date": "2011-07-01", "text": "I love this place. I just tried the other Ethiopian restaurant in the Valley, and was disappointed, and my gratitude for Cafe Lalibela multiplied. The food here is fresh and authentic, and the staff are really nice. I'm so lucky to live down the street! Tons of vegan options, too.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MGVbnW9-eYx_DDXmWIpGRw", "review_id": "ODtau4AxqBoGeEW5JGlZPw", "stars": 1, "date": "2011-07-05", "text": "I wrote a less than stellar review about this place some time ago and decided that my prior awful experience might have been a fluke and as I love great BBQ, decided to give them another go ..... I was right the first time!\n\nAs before, the food was ho-hum at best, the prices too high vs the product quality but the death blow to me was once again, their customer service or shall I say lack of customer service?\n\nWe had to ask the bartender if we could get a drink (That's odd) and all the wait staff acted like they were doing us a favor by waiting on us.\n\nTo top it all off, they had little to no air conditioning so it was brutal to sit through a combination of bad food, crummy service and high heat!!!\n\nFor me, this place is officially off the books and we sure won't be back. Lesson # 1: \"Your in the service industry, try and acy like it\"\n\nAs a BBQ fan, I'll try elsewhere ...............", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PTTACvsRCsdawDqRDlW3EA", "review_id": "wql0DLMG1B4JdfyNJSgj5Q", "stars": 5, "date": "2010-06-12", "text": "I been to many stadiums and this is one of my favorites. I attended a game against the Atlanta Braves and it was a great experience.\n\nFood prices are typical for any MLB stadium but get the combo meals and it seems cheaper. The bigger the beer the cheaper it seems. There really isn't a bad seat inside the entire place. Get there early enough and you can go down tot he bleachers during batting practice to catch a homerun hit. The staff is very friendly and talkative.\n\nIf I lived in Arizona I would get season tickets. The merchandise pricing is pretty cheap too compared to most stadiums. $23 for a hat compared to $41 at Dodgers Stadium.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aaLAojJwjxV7NvaOvXzsbA", "review_id": "U7qNgkU50urGYS-ylHdVzQ", "stars": 4, "date": "2010-01-09", "text": "I like their chicago dog. It is delicious. I've had good service here because mostly the owners are almost always working and they are real nice. It's only when they are gone that you get the crummy service.", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 4}, "user_id": "lgAgkEspbjBm5fyq8aeRVw", "review_id": "NjRNpMO_bLIa0vW0_RCiAA", "stars": 5, "date": "2008-05-22", "text": "I enrolled my 2 year old son and 4 year old daughter into Hubbard. They've completed 2 swim lessons each and the results are dramatic. They have made huge strives in their water skills. Plus, it seems to enable them with confidence and self esteem after each lesson.", "type": "review", "business_id": "kk85ivM6MQUtH8u642p1Ew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gMcMvfkLvU7klifm-hFjHQ", "review_id": "_AnWAf4wNZ1Rysla68ZRew", "stars": 4, "date": "2011-08-27", "text": "My husband got back today from New Jersey (what a relief he isn't stuck in Hurricane Irene's path anymore!) and since we were in the neighborhood we figured we'd go to Over Easy. Read my most recent review on how that went (ie, a bust.)\n\nWe stopped at Starbucks at the Safeway next to Over Easy and got our kids a pastry each while we figured out what we'd do. I turned to trusty yelp on my droid and they said that not only was Taylor's Cafe open, they do breakfast, and they were only about a mile from where we were. We decided to give breakfast one more try, called Taylor's and put our names on the list.\n\nWhen we arrived it was a little hard to find, but we called and they told us where it is. The decor is cozy and inviting. We waited at the bar for a few minutes while a table was readied, the manager was very attentive. I told him what happened at Over Easy and he was horrified. We live in Avondale, we're willing to drive for a good breakfast and also pay a bit more for good food and good service. Let me tell you, Taylor's Cafe really turned the morning around for us!\n\nMy kids each ordered an apple juice, and one got chocolate chip pancakes, the other got strawberry waffles. Their kids menu is $8 each, but the portions are huge, it's easily something an adult would put away. I stole a bite from each, they were very tasty and there was enough for doggie bags.\n\nMy husband got a build your own omelet with 3 different cheeses and chicken sausage. With his omelet he got 2 choices for sides, so he chose hash browns and cottage cheese (he almost went with a bagel but was pleased to hear about the cottage cheese.) The chicken sausage was an interesting option that we had not expected. He also ordered a mocha, which at $4 was about the size of what you'd get at Starbucks, and my husband said that it was on par with their quality.\n\nI ordered the Joe's special, intrigued by the list of ingredients. It was flavorful and delicious. The country potatoes were very tasty. I ordered the homemade raspberry lemonade, it was tangy and sweet, really tasty on a hot summer day.\n\nWe came to the decision on 4 stars because the food was good, but not out of this world. They have fantastic options for the health conscious, and it seems to be popular with the patrons of a local gym because there were tons of people coming in work out gear. There is plenty of space (you don't feel like sardines in a can), the staff is polite, competent, and professional, and the ambiance is nice. We will definitely be coming back.", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "nlUIgx4bf0Apgl6aD1xO2w", "review_id": "Fg7nWFakcZUq6b_7SLUCTg", "stars": 2, "date": "2011-03-08", "text": "My favorite thing about this place is the decor. It is crazy beautiful.\n\nI also like that you can get better than average bar food until late and there are so many places to sit, you'll never have an issue with waiting.\n\nTheir food is okay, but nothing spectacular. \n\nI used to live in Arcadia, and I miss it every day. If I were to move back to Phoenix/Scottsdale- I would never even consider a different neighborhood. Across the board, it is the friendliest and most beautiful neighborhood in Maricopa County.\n\nThat being said- The Vig represents the lame element of the neighborhood. People with too much money and bad taste. I think someone else called it \"schmoozy\" and that's exactly it!\n\nAs a neighbor, we usually rode our bikes- so I can't speak to parking. Do they not still have the shuttle?\n\nGive me The Great Escape, JTs or Postinos any day.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PJY1J0xMPzMVvzC4R5b0HA", "review_id": "tyoq7zCRI2qYZSm1WYre1w", "stars": 4, "date": "2011-09-14", "text": "Nice location. Good outdoor dining. Moms Pot roast good and so are sausage ravioli. Interesting drinks an some local beers. I need to check out The Bliss Burger soon.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "RHV73wO2I9djxHJ6g3zbXg", "review_id": "OfDa57LfmI6piS6mNiiYSQ", "stars": 5, "date": "2012-03-22", "text": "You want to go to Four Peaks. Trust me.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "OLpNsrgsTSKjSgV0LLORdA", "stars": 3, "date": "2012-02-26", "text": "If it was possible I would give 3.5 stars. I rounded down because the first time I ordered from here they screwed up my sandwich (I ordered a cheese hero and they gave me a ham and cheese hero - ham-stink is permanent and since I detest ham, it was a whole sandwich killer).\n\nMeatball hero was pretty good though I would not rush back to get another. When I finally did get a cheese hero, it was delicious - this I would rush back to get. Husband loves the Bobby.\n\nThe service is a little slow so I'm going to try ordering through their website the next time. Capriottis has definitely earned a spot in my sandwich place rotation.", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 6, "useful": 7, "cool": 5}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "kl9krJzcMmzwpcgU1K6dZQ", "stars": 2, "date": "2008-08-04", "text": "I personally will never eat there again.\n\nThe chips are actually amazing though, I would eat those a lot if it didnt require me stpping foot in the ultimate bro/slut restaurant.\n\n\nThe food is gross, the tortillas are ok, I like the decor actually, but the employees are slutty (and by slutty I saw skirts soo short if they picked something off the floor you for sure would see vagina)\n\nApparently the uniform is jean skirts and heels.\n\nThis is the male glittery shirt wearing capitol of Scottsdale. The food sucks, dont eat here!", "type": "review", "business_id": "erBoatMp1TFi_NPxTigp6w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "oVWlHAwQBOqP0TuK6cifIg", "review_id": "sc51MxV56u9AZs4vUr4poQ", "stars": 2, "date": "2012-07-11", "text": "I like spicy. I mean I like to sweat from the bridge of my nose when I eat. When they asked how hot I wanted my green curry chicken, I did a double take. \"Isn't green curry spicy by definition?\" They told me they make it in varying degrees of spiciness for the ASU crowd. While I disagree with diluting the authenticity of the traditional preparation, I get it - they have a business to run. What I really don't like is how they do it. They make a mild green curry...er, no, green sauce. Then, upon ordering, they add a certain amount of red chili flakes depending on how spicy you want it. This is not only upsetting philosophically, but chili flakes need time to cook in a curry - you don't just drop in, stir and serve. I get the sense that this problem is rampant in Arizona; hope to find a solution soon.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cLYVXtfPdWGYf51hY9O3ow", "review_id": "ZCOOaurp2P9HX_9aZ71mrg", "stars": 5, "date": "2011-01-14", "text": "We went here once a week for the year my husband was in grad school. The food is a 4, but the waitresses are a 5. It was a half mile from our apartment and so we would walk there and walk back to work off the huge portions. This is the only restaurant in my life where I could consider myself a regular. We never really talked with the waitresses or knew their names, but they always knew what I wanted; I didn't have to order. They always gave me water with no ice no lemon, my husband's with ice and lemon, gave me my panang curry with chicken medium and waited for my husband to choose what he wanted. He probably ordered most of the items on the menu. They refilled my rice if I ran out without asking. Our bill always came to $19.53 for dinner more times than I can remember. We went maybe twice for lunch, but almost always for dinner. My husband graduated last month and we moved from Tempe but we miss this place dearly.", "type": "review", "business_id": "UE4h9OXNzNInmxseAkUihw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "8r534MSRuysYm-5nzXwpwQ", "stars": 3, "date": "2012-05-09", "text": "Service was great, and always an interesting time on a late Saturday night.", "type": "review", "business_id": "FKHv7FkblONv9qqBndJUrg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qFZkU_iO6KjU-_5BptIu9A", "review_id": "dWvYdwpbgF0l__Lnavfy7A", "stars": 3, "date": "2009-12-09", "text": "The restaurant has 6 tables which make it possible for you to eat-in, but this place is definitely more suited towards take out or delivery. Just don't expect service if you eat-in. You order at a counter and if you choose to eat-in, you will get your soup in a take out container, eat on paper plates and styrofoam cups, but get your entrees served on platters.\n\nThe house special won ton soup was pretty tasty and was loaded with a variety of fresh veggies, as well as chicken, pork, and shrimp pieces. However, one key ingredient was missing - won tons!\n\nGeneral Tso's chicken was fried and served with broccoli and sufficient sauce. The Mongolian beef was more Mongolian and less beef.\n\nOverall the food was OK, except for the disappointment of the missing wontons, and I would probably consider this place again for delivery.", "type": "review", "business_id": "nH4CEJwrRXPxhfdL2pz3MA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "FAxy_JuEOhhZl3C10LMY1A", "review_id": "pm53JoxSbYnVPfbbEn5cqg", "stars": 3, "date": "2012-11-16", "text": "Preface: I'm being nice\n3 stars is an OK rating and I don't want my opinions to skew the rating scale but a 2.5 star option if available would be welcome, again I'm being nice.\n\nThis place is terrible. (I might be exaggerating) I have heard horrible stories about the brewery in Tucson, how the beer is fine but the food is absolute crap. I figured hey they are moving to Scottsdale in an area with an insane amount of delicious dining establishments, they have to of retooled that menu ... they didn't. The beer honestly is good not great 4peaks IMO is at least 2x better (again being nice) but I respect a local presence and craft beer so I cant knock them for trying and building a successful brand.\n\nThat being said the food is really nothing special at all, they offer pairings like mac and cheese pizza (too gross to try) to things like salmon and steak (too fancy for here). I tried a burger, usually safe with a mix of sweet potato and regular fries. I also had the monkey shine which has the highest alcohol content (something I am supportive of) and even after that beer the food disappointed (how can that be?!). It wasn't that the burger was horrible but it just wasn't anything special, it was bland and I got the western that had tons of stuff on it. The biggest problem was the fries which ironically seemed to come out of the frozen food section of a local Frys Food and Drug (not even a signature, Kroger brand - house brand aka the worst). A friend joining me had the wings, the wings were actually pretty good but they were wings and wings are gonna be good in a place like this especially after some beer so I feel that we should take that for what its worth.\n\nWith mediocre food at best and OK beer I don't see any reason to go here over 4 peaks.\n\nImprove your menu and I'll give you another shot. :)", "type": "review", "business_id": "MLAnvEcvDfOWELHUN_0xEw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "QQUlKfw-MZGuOrf-B62wbg", "review_id": "31jBo2afBbzqvGePhchbTQ", "stars": 2, "date": "2009-02-01", "text": "I want to give the Cornish Pasty Company another star, but I can't quite do it...\n\nThe pasties I order are REALLY good... They have a fine beer selection (including Mickey's Big-Mouths) and a few cocktail options... Most of the sides and desserts are pretty solid.\n\nI tend to stick with and very much enjoy the more traditional pasties like The Oggie, and the Cottage Pie (OK, OK... I love the Royale with Cheese, too). However, some of the \"premium\" pasties like the Pesto Chicken and the Salmon pasty are a bit funky to me. \n\nEven that, I can write off to personal preference.\n\nWhat really keeps the CPC from getting another star or two is the restaurant itself. \n\nIt's a long, narrow space, 75% of which is divided by a bar. Seating is along the wall or at the bar, with a few larger tables in the back. \n\nOn the other side of the bar from the customers is where ALL of the restaurant operations take place; cooking, cleaning, prep, and bar. If one is sitting at the bar, this intersection of consumption with infrastructure is often a bit too much like watching sausage being made. \n\nI don't really expect a fine dining experience at a place like the Cornish Pasty, but I really don't need to hear the dishes crashing into the sink and i don't need to see all the potential for cross-contamination (food preparation right next to the dirty dishes and raw meat right next to the beer glasses). \n\nMy worst experience was arriving late and sitting at the bar while they were cleaning the \"kitchen\" area and still serving food. It was really noisy, the refrigerator light kept blinding me, and the smell of cleaning chemicals was so strong that it made it impossible for me to even think about enjoying the pasty. I walked out after about 4 bites...\n\nI've wanted to go back several times, because I do enjoy the food and beer options, and finally went back last Friday. The food was as good as it's ever been but the environment will still make me think 2 or 3 times before heading back.\n\nMaybe I'll just have to take advantage of their take-out and stop at Tops liquor on my way home for the Hoegaarden...", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "kq6xd1YK_FDIwDCSknmNzg", "review_id": "gh5sIOtS5Mnx5JVkAfkkCg", "stars": 4, "date": "2012-12-20", "text": "Yummy, fast, fairly priced, and great service! I'll be back!!", "type": "review", "business_id": "4_xxWpQKhBWhAOvfVPmFXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mODRlE6YB-qdmJPoJ-WcWA", "review_id": "2TjsAVEcQCTpX1rKQRq2HA", "stars": 4, "date": "2011-01-19", "text": "I would echo many of the positive things others have mentioned about Phoenix City Grille. Everything I had here was just downright good. Ribs were mouthwatering, fall off the bone, marinated fresh each morning and not overcoated, perfect. Really didn't even need the sauce they had such flavor already.\n\nBlack bean soup was nice and the chopped salad was real good too with a nice peanut dressing. Nice wine list with plenty of affordable by-the-glass options. And the server we had was nice too, my companion and I stumbled in after a hike to Piestewa Peak and were definitely underdressed, but everyone was nice about it and they clearly wanted out business and valued us as customers.\n\nIf I lived in this area of Phoenix, this would be in my rotation for sure.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "R-A_xfOHueyQ7D29-X5uVA", "stars": 4, "date": "2012-10-16", "text": "Surprisingly good! I tried the strawberry lemonade and the caramel french toast. Each had flavor through the cake and frosting, shockingly unusual to find in cupcakes, and plenty of frosting. I will bring my sweet pea back for a treat.", "type": "review", "business_id": "lEUsYkm-IHF8_hJTAJDjHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sjXubsgIJvL9tFIctrK5uw", "review_id": "5EbtfmMzlbJ61R_UiobVKg", "stars": 4, "date": "2012-12-30", "text": "Well, if you want California fancy cuisine, this ain't your place. If you are seeking down-home country cookin, this is your spot. Anyway, there are no Cracker Barrels in California. \n\nThe lunches for the two of us were great. Very good service on a busy day. Our meals were exactly as ordered (many choices at Cracker Barrel) and the food was hot. The prices are unbelievably reasonable, as inexpensive as a fast food restaurant.\n\nThe servers are super and extremely courteous and well trained.", "type": "review", "business_id": "mQUC-ATrFuMQSaDQb93Pug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Snr-iImWYYD_a_7Iar3E0w", "review_id": "xf0yOi1tdEFVKNeoJDBVXQ", "stars": 3, "date": "2012-05-07", "text": "Live very close to this theater so I go there whenever I can. Went to one of the grand opening movies \"Avengers\". The movie was great but when using the restrooms they are very small for the amount of people going there (5 stalls) there was no toilet paper, one was out of order, long waiting lines and one soap dispenser didn't work . Went to get popcorn and watched one of the wait staff take one cup, pour something into another cup then replace the used cup back with the unused ones. The seats in the theater do make you sore after about a hour. They don't rock back and the seats are starting to bow in from constant use so you feel like you are arching forward.", "type": "review", "business_id": "2UfTG6BpFgeMREXQdAd_TQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "g5QxNUDDU3iATH1H-vE8Og", "review_id": "S5klRJ_7SMjyKaOiXpMNhA", "stars": 1, "date": "2011-11-27", "text": "Groupon rip-off. Small salad, three extremely small plates of mediocre pasta desserts that cloyed the palate. All for an advertised value of $90. Will NEVER return.", "type": "review", "business_id": "vvA3fbps4F9nGlAEYKk_sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VqSCQCva71Q-ZVcMsYfQuw", "review_id": "JLWMqGRXyhFWCBgpW4i6nQ", "stars": 3, "date": "2010-12-18", "text": "The fish tacos were good and the trendy atmosphere was nice. But, the whole thing was a bit too formula...like \"restaurant in a box\" concept. No outlyers, not much spice, fairly bland, middle of the road.....but wait, its in Arizona! Ok, no political jokes re Arizona. I was so-so with Blanco and will continue to explore on the next visit.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fRexc9P14_3Rq7113synAQ", "review_id": "EGivUqw8wLXW0uXw_JVFlg", "stars": 5, "date": "2012-03-13", "text": "Dr. Kanarish was exactly how I expected he would be by the other reviews I read on Yelp and Google. His staff was very friendly and the facility is extremely clean. I have an 8 year old Boxer that needed a large tumor type growth removed from his paw and was given very high estimates from different hospitals. Phoenix Mountain Animal gave me a very reasonable price on the initial exam and the actual removal, stitches, etc... ended up being much more affordable than any place I had called. I was originally offered care credit( a payment plan) but I ended up not needing it because the bill was within reason. I just picked up my dog and he was a little sleepy from the local anesthetic, so we will see how the next few days go. A great first experience and am planning on transferring all our future visits to see Dr. Karanish. It's great to see there are honest and compassionate Doctors around. I hope anyone looking for an exceptional Dr. will consider Dr. Karanish.", "type": "review", "business_id": "zLhfnbcnGg01_lltvrHVBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oe_QopcqJ8RJMrW-DJLodA", "review_id": "xmq-rtHaUW0Z0apdzKEfqQ", "stars": 5, "date": "2012-11-07", "text": "I first saw them Saturday morning at the Phoenix Public Market and told myself that I would have to try them soon. I was too full from all the sampling with the different vendors. My coworkers and I went to check out the food trucks that gather on Thursday outside of Whole Foods by Raintree and the 101. I saw that Mojo Bowl was there and made my mind up right away to get their food.\n\nI decided to get the Red, White, and Kale salad. I love quinoa and kale so it was the obvious choice for me. I also wanted to try one of their smoothies out. I went with the Coco Coca. The description mentioned that it was like a drinkable Almond Joy and I was sold right there. The total came to $13, not too shabby considering the portions. I didn't even touch my salad because the smoothie was so fulling, definitely a meal in itself. Towards the end of the work day I was getting hungry and decided to try some of the salad. I was asked if I wanted a balsamic or raspberry vinaigrette to go with the salad. I told the guy whatever tastes better and he told me that would be the raspberry vinaigrette. The salad was delicious. The kale was chopped up so finely that it really didn't have a taste so if you're not a huge fan of kale you might still like the salad. The portion was huge, it was good for 2 meals. \n\nI try to eat healthy and like to support local businesses. Mojo Bowl definitely brings those two together for me. I can't wait to try more of their smoothies and food out soon!", "type": "review", "business_id": "IP_1LeKBGA5HYzNQrGqJGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hHimxg0RrR4--yOwj0mOGg", "review_id": "IBE1v0VGkiOa6U1vsOkuQQ", "stars": 4, "date": "2010-03-05", "text": "I had a date in January here with Jen. We got the meat pizza, which was great. I thought our date was pretty good, but wasn't quite up to the hype of our texting and online chatting. She was very talkative and definitely an adventurous extrovert. She lived in New York (Appropriate NYPD PIzza topic) for a few years to be close to theater, but moved back to Arizona because of lack of money. It was another unsuccessful first date, not leading to a second date. Overall, I recommend the pizza and the service was excellent.", "type": "review", "business_id": "fOup98Vso87ERYQ_6eYmeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GHHJi9AuaEPCZ8vvtQG3sA", "review_id": "DWNmN4B5gU1flemlxdKH7g", "stars": 2, "date": "2009-10-29", "text": "You would think with the economy being what it is today, it would be easy for any establishment to hire semi-intelligent people to run the register. \nI went into sprinkles to taste some of their fall specials and I walked into a scene that was beyond depressing. My first experience with Sprinkles is when I lived in LA. You couldn't get a cupcake without waiting in line at least 30 minutes. Scottsdale, you have 4 perky girls greeting you, with their cupcake themed baby tees the minute you walk through the door. \nThe trays were empty and the selection was bare at best. I ordered 4 cupcakes. NOT rocket science. 1-2-3-4 \nThere was one other woman waiting for a large order, a couple dozen at least. The dingbat ringing us up tried to charge me over $80 for 4 cupcakes!! Whoa! \"Are you sure those are mine?\" \nHer response was \"is your name Susan?\" No it is not. She gives me a blank look like she saw a ghost. So this is uncomfortable. I kindly nudged her by saying \"I think my total should be in the $13 range, I only got 4 cupcakes. \" \n\"The tag says you got 4 dozen.\" (i can't remember the exact qty) \nNow Red Velvet (remember the themed shirts?) is testing my patience. Is that still Susan's order? \nOh duh! Now we get it! \nAfter all that I get the cupcakes home, and they are dryer than a popcorn fart. Disappointing.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "meBgdnN_Jw9MOwz3ZzqQEA", "review_id": "ekGeAHD2C_tkQFvZj45YRQ", "stars": 5, "date": "2012-06-16", "text": "Went here and we had a groupon. The ambiance was awesome. Two stories down, you enter a cozy space. We were a few minutes early for our reservations and we hung out in the bar. Table was ready and I ordered the lobster dinner. It was delicious and they cracked it table side. We definitely will be back again.", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x8d65djxDZ_O3iJ7prpVDw", "review_id": "ODZIBk9fCzDz7Qlhjp96VA", "stars": 5, "date": "2010-04-05", "text": "First off, I am not a Cubs fan. But I came here to watch them play the A's during spring training and thought this park rocked. Its cozy enough get within heckling distance of the players, but it has a lot of the amenities of Wrigley Field...including Old Style beer and florescent green hot dog relish. All this and sunshine too! What's not to like?", "type": "review", "business_id": "WrMPN5glZGrbI3rvVtxJFw"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "De1m82c-hFBb6MNJVEgheg", "stars": 4, "date": "2007-05-08", "text": "I enjoyed our night at Suede. My husband I got there early and grabbed a few drinks ($4 Trump Vodka drinks- sa-weet!) and headed out to the patio. I really liked the design of the place, especially the huge outdoor area. Since we got there early in the night there wasn't a DJ playing yet and the only other patrons were two other young men. As the night went on the crowd grew ever more interesting- from the undergrads that shared a table with us to the large group of 30/40 something men at the next table to what I would call here in Boston \"fashionably challenged\" girls and meathead boys. The DJ started around 10 and man, it brought me right back to my sophomore year in college. (Circa 2000-2001) He was spinning all the hits from 7 years ago! Not that I didn't enjoy my sophomore year, it was awesome, it was just not expected. Once again, it was another place in Scottsdale where we only spent about $50 or so on drinks for the night.\n\nAll in all though I did enjoy Suede and my husband and I will definitely be returning.", "type": "review", "business_id": "AaYHMYoeOt-5nN32vTA_Dg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "_HxVPw7sjeKO8mdd8Z-7TA", "stars": 5, "date": "2012-04-08", "text": "we rode our bikes here today in search of a new place to try. the online menu looked like it had a few options for non-meat eaters (although it is very much a meat heavy menu). \n\nfor an easter sunday lunch, it was very empty, not a good sign. but we had no wait and they easily passed the water glass test. our server was very attentive and checked on us throughout the meal without being overbearing. \n\nthe decor is \"country\" but not like cracker barrel....more like neo farm dining. \n\ni had the blackened fish sandwich, which was cooked really well, nice and seared but juicy, topped with onion, pickles, tomatoes and butter lettuce. i had the jalpeno and cheese grits on the side and they were rich and creamy with just a slight hint of heat...nothing to burn your mouth. \nmy wife had the tuna sandwich, which was also tasty and seared just right. she did have to navigate a big piece of fascia which is not that delectable, but it was her dish, not mine. her side of gigantic asparagus tasted wonderful. \n\ni would love to come back here and hope they are able to make it here. well worth the bike ride.", "type": "review", "business_id": "3wLLf8wRqD1ZQowi9aZSoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Qiy7yvDJEmbGuFjvtW62-w", "review_id": "ssrgeWnGY_bb-TyrShidmw", "stars": 4, "date": "2012-05-09", "text": "The decor and ambience was very pleasant. The staff was very friendly and attentive. Granted, it was a Monday night and my wife and I were only one of three parties in the restaurant. \n\n We ordered the hot and sour soup, the puu puu platter (sp?), chicken chow mein, and the curry chicken. Everything was terrific. The hot and sour soup surprised me - I'm not normally a very big soup fan but I thoroughly enjoyed it both at the restaurant and as left-overs the next day. The portions of all of the orders were very big. We had left-overs for three additional meals.", "type": "review", "business_id": "-5rFC4EVrT-v8g1PSEf6Xg"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "OFb6qgUQryqZqrEZRXzs1Q", "stars": 5, "date": "2011-07-17", "text": "I'd leave my Scottsdale bubble for a few reasons (and yes there are additional exceptions)\n\n1. Nobuo at Teeter House.\n2. Fez.\n3. My friends in various parts of the valley\n\nand \n\n4. Mekong Supermarket.\n\nI consider myself to be a huge fan of Asian cuisine. Chinese, Japanese, Filipino, Korean, Indian. You name it, I'll eat it. I have my healthy moments, but I am a seasoned eater and I am not afraid of exploring the world through my palate.\n\nMekong is the perfect place for me to massage my senses. The aroma and sensations from the exotic product. The stunning visual of a catfish being bopped on the head, and then cut up and packaged. The cheesy elevator music on the loudspeaker. The delicious taste of a spring roll from the hot food bar. \n\nThis place has it all.\n\nI usually come here for my Asian condiments and live seafood. Want a live crab? Boom. Done. Want spicy mustard or sriracha in a large bottle for cheap? It's yours.\n\nTo me, there is nothing like taking the 10 mile drive in traffic to Mekong because I know I am going to get everything I want. \n\nMake the trek. You won't regret it.", "type": "review", "business_id": "XYhVyCbzJCrYclR6J4LYSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9uuPzUWC1m_TnMUV9kXu9g", "review_id": "jyVAxH_cInITZQ_Xvb5Biw", "stars": 5, "date": "2012-09-16", "text": "Okay, I will start out by saying that I just picked this place out because it was near a bar we were going to afterward. Boy Howdy, am I glad I found this little gem! Upon entering I was overwhelmed with the idea that we were in an Italian friend's grandma's circa 1980's dining room. It was quaint. It was old school. It kinda made me a little nervous!\n\nThe general feel of the waiter we had was extremely laid back. Traditional Italian dude who was a little tardy in checking back, etc. Our water glass was NEVER refilled. Got a little more nervous.\n\nThey brought out really good looking bread and poured some herbed olive oil out for me (I declined because I have celiac disease and can't have regular bread.). My husband said the bread and the olive oil was amazing. I had called ahead and they said they had many gluten free options.\n\nI ordered the Chicken al Berto. My husband ordered veal and a side of spaghetti with meat sauce. We started with a Tomato Caprese appetizer. The tomato was slightly under ripe but the mozza and basil made up for it...and in the center was a bunch of roasted red peppers which totally made the dish! Nom nom nom. The balsamic was excellent as well. I must now do peppers with my Caprese!\n\nThen our entrees came out. My chicken had fontina cheese, pancetta and spinach. There was a little line of mushrooms in a marsala sauce which I'm not sure if it was supposed to be there or not. I'm super happy it was! This is close to if not the BEST chicken dish I've eaten. The chicken was moist which is usually questionable in Italian restaurants I've found. The quality of the Fontina cheese was impeccable. The pancetta was crisp and plentiful. Then I tasted the mushrooms!!!! OMG!! Freaking amazing! I may have to try the Chicken Marsala sometime just to have more mushrooms! Divine. \n\nIt took a while to eat, mainly due to the waiter's \"chill\" attitude but we shall go back again and again and again. I don't care if you don't get anything included with your main entree. The portion of entrees were HUGE. My husband loved both his veal dish and said the meat sauce was one of the best he's had. Fresh, fresh, fresh.\n\nIt's on my new list of first priority restaurants. And I think the prices were pretty good. Less than $15 for my chicken, $20 for the veal and $10 for the Caprese. I'm so there next week!\n\nOh, and put your phone on vibrate. They kind of insist! And that's okay too!", "type": "review", "business_id": "MPziC5MO2QQiYVAMM3fdSw"} +{"votes": {"funny": 1, "useful": 8, "cool": 4}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "CxRq8G9OSbWuFMzHWkYdcw", "stars": 3, "date": "2008-10-07", "text": "I'm sad to say that I wasn't in love with MacAlpine's. The fact that the building has never been restored is cool, in a dirty kind of way. The floors will never be clean enough, because they are so old. That may seem ridiculous, but cleanliness is important to me when I'm eating somewhere.\n\nOur server was odd, but helpful and attentive. We spent a good amount of time oogling the random items displayed throughout and were entertained with our surroundings.\n\nThe food is where I saw the problem- my Mac Cheeseburger was bland and tasteless. My broccoli and cheese soup was below average. I wasn't impressed one bit.\n\nWe ended up having dessert. I opted for a single scoop of Chocolate Malt Krunch, which I'd never had before and didn't love (total personal preference as my friend loved it). MacAlpine's is cool, but I think purely as a place to get something sweet.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "76rbZBcgBt92PI6a2-9iGw", "review_id": "vrj-vMPiu9IuGOdggYAmMQ", "stars": 1, "date": "2009-07-21", "text": "I found Lisa G's while driving through phoenix with a friend. The exterior looked promising and we prepared ourselves for a treat. We were in for a a shock! We ordered the antipasto plate and while there were serious issues with it, it turned out to be the best thing we were served. I ordered the chicken rolatini (the special of the day) and it was just plain bad! The chicken was dry and under seasoned, the Rosemary potatoes were soggy and the veggie medley (squash, corn, green beans, etc.) was over cooked and the juices spilled over into the potatoes. It was one of the worst $17 meals that I have ever had! My friend ordered the veggie salad and it was one literal hot mess. Just horrible food! I see that others had the mini burgers and bowl of balls and found them to be tasty. I wish I had ordered those. As it is this is one place I would never revisit or recommend to a friend!", "type": "review", "business_id": "TCqkBVN84Ek0oLmZGAX5xA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AZNp2qEdKRkqO7DT2ggaAw", "review_id": "x1CLCNsuyTjeqifmc6cOeA", "stars": 2, "date": "2011-01-28", "text": "Burger was great, but the service wasn't so great. When thumbing through my wallet for cash, the owner rudely interrupted me and told me they don't accept cards, only cash payment. \n\nWhen my friend asked what he would recommend, he shoved a menu in his face and said \"I'd recommend looking at a menu\". \n\nI fought back the urge to just leave and go somewhere else and ordered the Good Ass burger, which was avocado and bacon, so you can't really go wrong with that. The fries were good and the burger was pretty good. \n\nService: 1 star\nFood: 4 stars\n\nAverage: 2 stars\n\nhttp://dietstartstomorrow.com/post/2983024079/two-hippies-magic-mushroom-burgers-phoenix", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "s7whfk-Dg9sXP5NTig1OLA", "stars": 4, "date": "2007-02-15", "text": "Whole Foods is awesome. They have a huge selection of organic and vegetarian items and a deli/bakery area with tables for a quick lunch or dinner.\n\nIf you eat any of the Morningstar Farms products, this is a good place to get them. Although you won't find them as cheap here as other places, they do have a really big selection.\n\nThis is also a good place to get vitamins or any alternative health products.", "type": "review", "business_id": "wepFVY82q_tuDzG6lQjHWw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "UFPdthvTipX6E7KEf-Stvw", "review_id": "bJAJyoT04GwOatS4UVX90Q", "stars": 3, "date": "2009-10-02", "text": "I found myself in Phoenix for a week. I prefer Marriott, but a co-worker insisted on Hilton....and then didn't go on the trip. Nice.\n\nAnyway, the stay was a hodgepodge of experiences. \n\nDownsides: The room was nondescript on the whole, but the neck of the shower was pulled partly out of the wall and the shower curtain was partly torn and had red (?!?) mold on it. I didn't have a car, so the parking lot didn't bother me, but the area on one side of the hotel was sketchy and had a fair amount of undesirable foot traffic. The nearest station to get on the light rail was 3 blocks either way from the hotel.\n\nUpsides: The staff was friendly and super-helpful in recommending EXCELLENT restaurants, including hole-in-wall, genuine Mexican joints. The hotel has a shuttle van that will, if you reserve it or can snag a ridealong, take you anywhere within five miles of the hotel for free, and then pick you up again. Naturally you should tip the driver (also a great guy), but it still beats taking a cab. The driver gets bonus points for letting us jump out and grab a coffee on the way to our destination! It also is only 1.5 blocks from Fez, a fantastic restaurant. \n\nI was not knocked out by the facility, but the people were great. I'll still probably stay a Marriott user when I return, but I'll sure consider the Garden Inn again.", "type": "review", "business_id": "KQzpjBmnAMXPqipeWTKG0w"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "qGl1xfS0okKRbSH8vvucGA", "review_id": "Fl0_VBXznLgmegwbNYU5wQ", "stars": 4, "date": "2009-10-24", "text": "My girlfriend has been craving a mushroom steak and cheese sub for the past couple of weeks, and while that's easy to find in New England where we're both from, it's not so easy to find in the Phoenix area.\n\nBut, now we know where to look.\n\nGreat sandwiches and a great looking menu that we'll be exploring for quite a while. And they also stock a variety of Wise potato chips products which aren't widely available here.\n\nFor a taste of home, we know where to go, and we'll be back.", "type": "review", "business_id": "STv-ED3M2xmRFMSvQbWGaw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "EKwGhgLrM18ErVKKeYE2UA", "review_id": "jH1IzSAl0CeiQ9_T5ha_zw", "stars": 3, "date": "2009-03-16", "text": "Went here Sunday for the Rockies vs Dodgers game. We got some great free seats just to the left of home plate. Love the awning that provides lots of shade to people who just want to watch the game from the top of the seat section. \n\nI heard that the game was sold out, but it looked maybe 75% full. Parking wasn't too bad for us. We actually parked maybe 4 lanes away from the stadium. The food was ok. This place just didn't have the spring training feel l've come to love. \n\nThis really is too far of a drive for me and I truly love the vibe and energy I get from the crowds at older stadiums like Phoenix Muni and Tempe Diablo and even Hohokam and Scottsdale. This just didn't seem to compare.", "type": "review", "business_id": "IYYaa562PybzXf8tQnT17w"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "c2YWVS2htxj3oEQkemZaUQ", "stars": 3, "date": "2008-08-03", "text": "So Weekends are usually hubbys choice and he decided on Rock Bottom.\n\nI don't mind coming here, I really like their Mac and Cheese.\nYou can get it with or without chicken.........years ago the chicken was this really thin shaved peppered chicken and I thought it was awful so I have since always ordered without chicken.\n\nHowever today Hubby chose the mac and chicken and I was surprised that now they use real chunks of shredded chicken breast!! YAY! \nWhat and improvement!! It was really good! (see pics)\n. \n\nI got the Turkey Bacon Cobb sandwich minus bacon =Layers of juicy oven-roasted turkey breast on grilled sourdough bread with sweet peppered bacon, sliced avocado, roasted tomatoes, sprouts and mixed greens. Topped with rosemary dressing and Bleu cheese crumbles (see pics)\n\nIt was better than I expected, they forgot to put avocado on it though and\nthe bread was really really good and for being grilled it wasnt over saturated with grease.\n\nThe onion rings could have been crispier but were OK.\n\nLame waitress today she was new but whatever...she sucked!!", "type": "review", "business_id": "s_cKw6m0Fw9jZbobRH0YSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z7PkDGuW38Evhw3uVEfT0w", "review_id": "O67YJygNyzYQGUqATIG_ew", "stars": 4, "date": "2011-10-16", "text": "Nice clean airport with lots of places to shop and lots of food options. Terminal 4 is nice.\n\nTwo things: \n\n1. The marathon walk from the Southwest ticket counter to the D gates...good God, they need a tram or moving walkway.\n\n2. The Security bag screening machines are old and tiny; my bag got stuck; it's NEVER been a problem at any other airport I've been through (SMF, LAS, SNA, ONT, SAN, BUR, SEA, LAX...)\n\nOh, and if you rent a car, be sure to allow extra time because the shuttle ride to/from the airport itself is at least 10 minutes. But it's a nice rental car area...", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "Qa2arVXyiHhxRM6HqUfEVw", "review_id": "yC7V2o2I78CRqHtYS1o-Ig", "stars": 3, "date": "2008-10-25", "text": "A buddy of mine takes me to this place for dinner, usually, and once for breakfast. It's an interesting place. As others have noted, be prepared to wait a while for service and don't be afraid to go get your waiter if you're feeling abandoned. Also, there may be a wait for a table, and the environment is loud, so be prepared to shout a bit if it's busy. \n\nThey have beer-tasting on certain nights. I did not partake, but my Dad (who was visiting AZ) did. The food varies in quality (or perhaps just varies in quality of recipe?). My Orange Table friend and I shared a 'special' pork chop dish, and that was pretty blah. However, I highly recommend their grilled cheese sandwich on some sort of yummy bread (the lower end cheese sandwich ~ I have yet to try the fancy one). \n\nAs for breakfast, I don't recall it being particularly spectacular, but I think it was better than your average diner breakfast. I may have to go back to try again... The flavored iced coffee seems very evil and full of calories, but it is really quite good. That did stand out!\n\nOrange Table is recommended if you want a place to chill and chat with your friends. Just try to find out what others are eating so that you pick something good from the menu. : )", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OjPYJxpkm_xDIiZAquMEIA", "review_id": "QyHVsAOYH-vIdiIqpYS8dg", "stars": 5, "date": "2010-09-21", "text": "I just celebrated my birthday at Oregano's. I had the best server I have had the pleasure of meeting in a lonnnnng time. ASK FOR ALEXANDRA. Knowledgable, adorable!, attentive, funny, and charming to boot! Amazing pizza and salad, fab cocktails we'd never heard of, and to-die-for dessert. All per her recommendations. Can't wait to come here again.", "type": "review", "business_id": "LMG0zsAkUSscIvmV9vvm3A"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "PShy2RYNadDUhJf4ErOJ7w", "review_id": "kS_arxl7MATDHQ8FhuooGw", "stars": 3, "date": "2009-01-27", "text": "There's just something about this place I don't like.\n\nI love the wine list\n\nI love dim lighting, caves, couches, sausage and cheese platters....\n\nJust can't put my finger on it, but I would rather sit at the bar at Cowboy Ciao then have to hang out here. *Shrug*\n\nThe bartenders were a bit snotty last time I was there... maybe that's it. Hmph.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PimB4yUetjP2ylJGMpK21g", "review_id": "YU9-0d4OeOEZuqFYs1xvPw", "stars": 2, "date": "2012-10-24", "text": "Beatiful setting and good service. However, that doesn't make up for the $14 burger which was average at best and all three of ours were over cooked.", "type": "review", "business_id": "FS7aGG1AOLbrVIGXTuA5EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "gxAsOY4jM85H_Tn6Jl3OJw", "stars": 4, "date": "2011-04-01", "text": "I went here the other day, as I had a Deal Chicken for this place. I used to go to a really good Salvadorian restaurant in Seattle, and was excited to see there was one right near where I live now. So the BF and I got here at around 8 at night on a Sunday and it was actually pretty busy. This place is in a tiny strip mall that does not look like it gets much business, and I would have never seen it from the road, so it must be good to still be in business. So I ordered a pollo pupusa, a carne asada pupusa, and a polla tamale, and the BF ordered two bean and cheese pupusas and a carne asada pupusa and we split the pastelitos con papas y queso. Well, the pastelitos were pretty tasty, like fried mashed potatoes, and they came with a spicier cabbage slaw which I liked a lot better than the regular cabbage slaw for the pupusas. All of the pupusas were really good, my real problem was with the sauce. The red sauce that came with them was just kind of flavorless. The place I used to go to had some really good red and green sauces for the pupusas... it was kind of disappointing. Also, about 5 minutes after we got the pupusas, the waitress came by and said 'oh I forgot to tell you we don't have any tamales.' Well, that kind of sucks, why did it take til we were already in the middle of eating to tell us? Also, it screwed up the amount I was trying to spend (since I had 20$ to spend on the deal chicken) which I guess shows that this place is cheap, which is good, but for this particular trip that wasn't good. So we decided to order a dessert to replace the tamale. We got the empanadas de platano with sweet cream. So this was a big deal for the waitress, she had already totaled out the bill and for some reason it was a huge deal to add a dessert at the end (which I thought was weird, but felt guilty about giving her extra work). Anyway, the empanadas were ok, but I've had better. The sweet cream is in the middle of the plantain and it isn't all that sweet. Oh well, I would definitely come back here for some yummy pupusas and maybe try a different dessert next time, the central american quesadilla looked pretty tasty....", "type": "review", "business_id": "vxPPpj5jJKO8DtapF5S-NQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cSAACR699NuLMqBPuKL8nw", "review_id": "7euWn51Q9A7-Nq2x8cSqtw", "stars": 4, "date": "2012-07-21", "text": "Neiman Marcus is a great addition to my shopping go-to locations like Nordstrom, and well, Nordstrom. I usually only shop at Nordstrom and Neiman Marcus, sometimes Saks.\n\nAnyway. Neiman Marcus has impecable customer service but know that you kind of need to \"dress up\" to shop here. At least I feel uncomfortable if I come in in yoga gear. The selection is a nice compliment to Nordstrom -- much more tailored and designer specific. My boyfriend loves their men's section. \n\nI love their selection of Chanel handbags and other great purses. Plus, the layout of the store is just luxurious and calming. They don't carry MAC here but I love the Chanel, Christian Dior, and Laura Mercier counters. \n\nMy ONLY complaint is their hours. Ugh. They close at 7 Monday through Saturday and 5 on Sunday. It's an hour earlier than the rest Scottsdale Fashion Square so there have been many times where I've trekked from Nordstrom to Neimans only to find they are closed. \n\nIf you don't want to go through the mall there is complimentary valet at Neimans. You can park in their private lot but it's on a hill and narrow so if I'm feeling rushed I just valet....but I'm also not the best at parking.\n\nNOTE: the only credit card they accept is AMEX. Otherwise it's cash or check. That's right, no Visa, no Mastercard", "type": "review", "business_id": "h8rqIokh6EkM4flR9CjxbA"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "GudUwh6EapiOn4umgKdJiQ", "review_id": "jYFVCkKTTQ4yKqvHtUAoJA", "stars": 4, "date": "2009-02-18", "text": "I had not planned on being a Mac owner. My family - oh so very sick of me constantly complaining of Vista - on first an HP, then a Dell, packed me off to the Apple store a month ago and well, now I have a MacBook. The sales associate helping me pick out the perfect Mac was good enough, even with two perfectly good (except for the Vista) PCs at home, to convince me I needed this computer.\n\nDo I love it? Not yet. I like it, like it a lot. I'm especially loving not having Vista issues that I had been having. \n\nI'm enjoying taking the one on one classes to teach me how to use my Mac. Each time I take a class - I've had 4 now, I have a different teacher and each one bringing a different spin to my classes. They are nice, friendly, patient, highly knowledgeable. They are teaching me so many cool features and applications that I can do on my Mac. My fave so far is the translator. I do some business in Mexico - my Spanish is limited - so in just one short month the translator has just been a god send.\n\nThe store here at the Biltmore is consistently packed with people, visiting the genius bar, taking group classes or the one on one class and making expensive purchases. I am amazed in this economy just how very busy the store is. \n\nI'm not totally convinced a Mac is the only way to go (almost though) but this store has some of the best customer service I've ever experienced.", "type": "review", "business_id": "l5vzFaqSjvxZiRn0MJeKkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QtnzOrQeMFiwiXevf34hyQ", "review_id": "DaaXKRspyY7-35Ix1RxoOA", "stars": 3, "date": "2012-03-24", "text": "The meat shop has 100% grass fed beef, which means that they also finish their beef with grass (alfafa) which cant be said for every place that claims to have grass fed beef. This is great if you are trying to eat food the way its supposed to be, none of that factory farming...\n\nHowever the same can't be said for the pork. The pork (or at least the bacon) contains nitrates which keeps me from eating it. The farm that provides the pork also feeds the pigs grain.\n\nThis place would be perfect if they were able to get pigs and chickens that are pastured centered and not fed grain as part of their diets. Until then I'll stick to their great prices on the grass fed beef and obtain my chickens and pork from somewhere else.", "type": "review", "business_id": "H010pkpCls0M-mjIzSCVlQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rC11FhTVhZsC4KXHvXelQg", "review_id": "VLzod0cVgMuY4eR1NdRC5Q", "stars": 5, "date": "2010-05-05", "text": "OMG try their breakfast burritos!!!! Habanero's has good, cheap, fast Mexican food.", "type": "review", "business_id": "kqGbGsG2p6Y3vkplCKyE9g"} +{"votes": {"funny": 5, "useful": 4, "cool": 4}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "kUzEnfV7gbnxz9VyP6bjHg", "stars": 4, "date": "2010-04-20", "text": "Great outdoor patio, couches, big bar, tables, great burgers, huge side of crunchy fries and they carry sweet tea vodka. \n\nDo not order the sangria, unless you like it super sweet. I don't, I'm sweet enough already.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QqAL6vvUE_lJbAFSucWysA", "review_id": "zi2VEl-63LSuJhXQF8UV0w", "stars": 4, "date": "2011-04-06", "text": "So I've been at Solo Cafe for about 2 and a half hours now writing a paper and so far so good! \n\nWhen I first arrived here I was greeted by a very friendly barista who was happy to discuss the drink options with a first-timer. I settled on a mocha and it was delicious! I like that it wasn't scorching hot - so I could enjoy it right away instead of having to sit and stare at it for 5 minutes. \n\nAlso I really like the atmosphere here. The place is pretty small (I like this in a coffee shop - at least until I get here and there's no where to sit). It's also pretty quiet, which makes it a good place to sit and study. My favorite part is that I have been here for a while now and don't feel obligated to leave like some places. \n\nThe -1 star is because the chair I'm sitting isn't very comfortable (hahah) but they do have couches, which is probably a better alternative. Also, they don't have a very wide selection of pastries/food. This is always a bummer when I go to a place to study. I'm generally pretty lazy, so I don't like having to stop working to go somewhere else to get food. Despite this I will definitely be returning soon!\n\n(Anyway, my Yelp break is over... back to the paper) :(", "type": "review", "business_id": "ABC57h7Dh1Vy9q3cztAm5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Hqgx3IdJAAaoQjvrUnbNvw", "review_id": "loESPTJLynNlqcLCwwysYg", "stars": 3, "date": "2012-06-21", "text": "Awesome pizza! Wednesday half off bottles of wine is great for a ladies or date night. Nice bar and patio area.", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PMz0ts-eI3QjZfKwkqvJqg", "review_id": "_1QxCOEAyONf_tUReOvChg", "stars": 5, "date": "2010-11-25", "text": "Went there last night with no expectations. From the beginning to the end, including the \"bread basket\" with blue cheese butter and pesto on top, the lamb chop appetizer, the sea bass entree, and the creme brulee in a flaky phillo cup lightly burnt on top, it was probably one of the best overall meals I've had in years. Thanks Eddie for stopping by our table and checking on us and chatting a bit. Very friendly wait staff and no attitude whatsoever from anybody and very comfortable. This place is a model for how it should be done.", "type": "review", "business_id": "He9Dar4bk2vyeiPC7TkUgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LeCbbDMAO2MS40MWWikLqw", "review_id": "WOaNJV0LuxkKzr92cz6g2Q", "stars": 1, "date": "2011-06-08", "text": "I purchased the Enotria groupon when it was released last year and had a horrible experience at the restaurant.\n\n1) I ordered a cheese platter. The platter was very much overpriced at over $18.00. The most problematic thing is that Enotria ordered the food from another restaurant on Mayo Blvd and had it delivered to them. The same is true with Pizza. If you order pizza there, it will be delivered from another restaurant in the Mayo shopping plaza. Enotria is taking a significant markup on the food because they are paying another vendor for it. AVOID THIS!!\n\n2) Another disturbing aspect of the visit was that we were served disproportionately small portion because we were using a groupon. We ordered two glasses of red wine. The waiter (who also happened to be the owner) served us a glass that was 1/3 of what is typically served.\n\nThe only positive aspect of Enotria is that they have a good selection of wines. To be sincere, you are much better off going to a more reputable establishment in the area like White Chocolate Grill.\n\nOh, also keep in mind that the current owner bought the restaurant over a year ago. It has changed ownership several times and the overall quality is suffering because of this.\n\nAVOID.", "type": "review", "business_id": "3-zvo4Y_Bagw6Yifvh1TPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NhbkTLXX2srey5kPtVOAcw", "review_id": "N0dBqIL2NnORl8bZ_GUP6A", "stars": 4, "date": "2011-05-19", "text": "Best pizza ever! The crust is amazing. I recommend the magical mystery tour with chicken and a frosty local draft beer. Will be back.", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "WxQysGZlxxfVXy73ldm5EA", "review_id": "JwyQp0Qvn2cQoE5c4eEfrQ", "stars": 4, "date": "2009-05-25", "text": "My wife and I were having a lousy day and we needed somewhere to eat. We happened to drive past Stax and decided to give it a try. Once we sat down, our moods immediately improved. Our waiter was friendly, funny and attentive, without being overbearing or annoying. I was happy to see a decent selection of beers with a healthy dose of local brews. I immediately ordered an Oak Creek Nut Brown.\n\nOur waiter quickly brought our drinks and glasses of water with cucumber slices. The cucumber added a nice cooling touch on a hot summer day.\n\nWe ordered the sweet potato fries and I ordered a seafood burger, which on that particular day was shrimp. The sweet potato fries were excellent, fried just right and lightly seasoned with kosher salt. Even without the homemade ketchup, the fries were a delight.\n\nMy burger was tasty, with the shrimp lightly breaded and seasoned with a kicky teriyaki sauce and served on the bun with lettuce and thin strips of carrots. Also, the bun was very soft and tasty.\n\nThe only issue with Stax is the price. The burgers are more like tapas, in that they're small (3 oz). But, each burger ranges from $4 to $7, depending on the type of meat. A hungry person could easily eat three burgers, so plan to spend a decent amount of money if you want a large meal here.\n\nOverall, a fun place to grab a lighter bite to eat.", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 3, "useful": 12, "cool": 3}, "user_id": "YzNZNgpOy9tthDnczS_ajg", "review_id": "f7iTklrfO8nW-MkVEDG8oA", "stars": 3, "date": "2011-07-12", "text": "Well, apparently Netflix just wasn't down with the whole \"Extraordinarily Happy Customers\" and \"Providing Tremendous Value For The Money\" business model that I raved about in my previous review.\n\nThey're now changing their pricing structure so the One DVD At A Time \"unlimited\" package is $7.99 and the Watch Instantly unlimited package is also $7.99. So $15.98 together. They used to be $9.99 together. \n\nI'm keeping the \"Watch Instantly\" package for now, but the $7.99 for \"One DVD At A Time\" is just ridiculous. Yeah, they have a quick turnaround, but it's still the mail. You'd have to be a pretty hardcore movie watcher to get a better value out of an $8/month \"unlimited\" Netflix plan than just renting 8 $.99 movies at Blockbuster or Redbox. \n\nSo yeah, I guess they're okay. The Watch Instantly service is still a decent deal. But \"One DVD at a Time\" is a total rip-off, and I never thought I'd use the word \"rip-off\" to describe Netflix.", "type": "review", "business_id": "9jBTMRNxvYyyHAlCGVO91Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 2}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "RdR_yIzUJZWLNkJRgVlxcQ", "stars": 4, "date": "2007-10-13", "text": "ok, so really. how can you go wrong with burgers? i guess it's a just little absurd to me that people dress up to eat a burger. or that people choose to drink a glass of pricey wine instead of say, a root beer float with their burger. speaking of which, their rootbeer float is too pricey for what you get....\n\nat any rate, i took my brother to eat here once upon a time, for kicks and giggles. see what all the hype is about. we were actually seated really quickly on a busy night, and quickly ordered our burgers. they were good. that goes without saying. and i really enjoyed the decor and the fries in the mini shopping cart! yes, something so ridiculous it is adorable. i don't really like having to order fries separate, because i think they should just come with your burger, but i digress. the burgers were juicy, came out fast and piping hot, cooked to our specifications, and surprisingly, not too much more expensive than my childhood fave, red robbins. ok fine, at least their fries had yummalicious dipping sauces.\n\ni'd go again, just not on a busy night. and maybe i'd dress up a little more. but then i'd feel crazy - like, why am i wearing a dress to eat a burger? but i do like those fancy-schmancy burgers... i guess i can suck it up.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "e_hp4eDtMAj-cvIG_vMuSA", "stars": 4, "date": "2007-02-05", "text": "What Whattt! Hip hop videos blaring as I get my strike on? Bowling specials after 9pm? Friendly staff? Cheap drink specials from the bar in plastic cups? ASU and working class stiffs co-existing one sweaty bowling shoe at a time? Teenagers making out at the arcarde section?\n\nLoooveeee you, Brunswick!", "type": "review", "business_id": "pS7XA-h0QnjButYIlU-cdQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "IFOFRBrl4Cm08xGQjrA7OQ", "review_id": "wdrz6UI1rfm-3sknDpWPbg", "stars": 4, "date": "2011-05-29", "text": "Very nice place with extremely friendly staff. The food was similar quality to other Mexican food places in the NW Valley....good but not spectacular. Very good portions for the price. \n\nI don't live close by but will certainly go back when I am in the area.", "type": "review", "business_id": "x_mxrJALBi5No9CxRswEaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TEs7S-ICJHD_aU7DQdsoIA", "review_id": "G3u-H_tzh-RJ1IDyvxoDCA", "stars": 5, "date": "2010-10-02", "text": "Husband and I have been trying to go to Urban Cookies for a while now. For one reason or another we kept missing its store hours. We finally made it today, and boy, were we glad. \n\nI had a vanilla cupcake and he had the urban cookie, which has chocolate chips and walnuts. The cookie was the perfect balance of moist and crispy. \n\nThe guy behind the counter told us that the vanilla cupcakes was a special, but when they rotated it out people yelled at them. After taking one bite, I totally understood why. The cupcake is the best I've ever had. The vanilla frosting is not too sweet, perfectly creamy and melts in your mouth. \n\nI just hope they get more business so they can expand their hours!", "type": "review", "business_id": "YkFBelUWinftlweJzuiIAw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "m3dRCU88YU9_GawEqX4gBw", "review_id": "3mIplkFA9zixeB-PcnNZlQ", "stars": 4, "date": "2011-11-10", "text": "Wow. Reading all these reviews makes UofP sound like a terrible, degree mill. \nI am shocked! I have learned SO much which getting my MBA. The vast majority of my professors have been knowledgeable, available, and thorough. My peers have been inspiring and helpful. \nWhen I graduate in June I know I will be leaving with much more than when I began.", "type": "review", "business_id": "T8zl1TQ-QuoATtcWSjnxeg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "usqkiMaReCzDY5LTjEIKBQ", "review_id": "XlXg9NvtEcg_hGA-n8hJ0A", "stars": 4, "date": "2012-04-26", "text": "Well, I live down the street from this park at 44 Monroe so it's just a block away from me. And it's a refreshing place given the surroundings of a semi urban jungle, that being in lieu of the handful of bums that live there shouting profanities at every passerby as if you've had a life long vendetta with them. \n\nFor the longest while I'd referred to the jellyfish but after the curiosity got the best of me I'd researched that it emulates the desert winds which cost about 2 million dollars to make. WTH is up with AZ and spending their taxpayers money on giant jellyfish at parks and teacups on freeways. However, the park is a refreshing patch of green color in such a monochromatic city. Plus they host cute little musical shows and food trucks, & who can pass up chilling in the grass listening to some jams while chowing down on some delicious, greasy truck food.", "type": "review", "business_id": "_P4wKLL6cyXWY1EQV2k8WQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PyXxP7T70j_jACcUKWDczQ", "review_id": "R-19mpFYuNoqBpJJxh-_vg", "stars": 5, "date": "2011-03-19", "text": "3 stars on any given day, my server PAT made this a fun experience and was the extra 2 stars. Pat is one of the few people in this world who really enjoys being good at what he does. I asked him, \"how long\" and with much joy he replied, \"I can get your food in 10-15 minutes\". Sure enough it took 9 minutes. I value time and in my business my word is everything. Pat understands this and when I eat here again I will insist on his table. I recommend you do the same. ASK FOR PAT!!!\n\nTop notch Pat. Don't ever change.", "type": "review", "business_id": "-zcZNlO0JwZHppan8rGkBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H_JsAwjiGEOr_RlZmwfNsA", "review_id": "Q64yM6VbjvwLhXfhDYaLJw", "stars": 4, "date": "2011-10-25", "text": "Outback is a great restaurant. You can count on the tasty food and good service. They are reasonably priced and consistently deliver a quality product. This location gets busy during dinner time, but I've always had a good experience.", "type": "review", "business_id": "ufKmcpK6OTaWzeBGWNOa8A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eBFXojgTo2SWLtzv7jJlxQ", "review_id": "S10xVi2N6A7CkA29F7774w", "stars": 5, "date": "2012-06-15", "text": "Five stars is truly deserved For Yasu. This is truly the best sushi in town and some of the best I ever had! I am a big seafood lover and there a lot of \"chain sushi\" places in Arizona that are decent and good for rolls, but if you want quality and authentic Japanese style fish and incredible Sashimi, you need to go to Yasu. There is really no way to describe it till you go, but once you do, you will become an instatnt fan! \nBest thing to do is sit at the sushi bar and ask Yasu to make whatever he wants! You won't be disappointed. \nThe area and building are misleading... However, if you are the kind of person that thinks RA is the best thing since sliced bread and nothing can beat it, this is probably not for you. This is real sushi...\nGo try and enjoy!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jOnE59WV2_CMZiuSPcZfTw", "review_id": "r_iFXTOtS2fSibuM6z0DEw", "stars": 1, "date": "2012-03-24", "text": "please please please do not stay here! \ni never do these reviews but i feel obligated to save someone the time and money and self respect by writing this review! the customer service is soooo soooo poor!! after having almost 500.00 held on my charge card after i checked out, i called to find out why this charge was on my account. i was hung up on and after calling back was repeatedly hung up on and refused to provide his name to me or his managers name! i told him i work at a four star hotel and casino in las vegas (which i do). he called me a liar! .. and as of right now still out 500.00! what establishment hangs up on their guests? this guy should sit through some of the forbes training i have received! what if i was a shopper? \ndo not stay here! save your money! they only received one star because you have to provide a rating. \naside from the horrible customer service, they stuck me with a 50 penalty fee when i had to change locations. that wasnt great, but whatever, the pictures do not resemble the motel. the \"game room\" is not a game room. its a room with an atari in it. the pool was small and dirty and if you like noise all night while you are trying to sleep, you can count on it here. all these things, i could get over. however, the customer service the man (i cant even say gentleman) on the phone was horrible and penalty should follow. he is an embarrassment to all of us who work in guest services. \ndo not stay here! you would have a better stay in a box outside on a corner.\ni should have known better for such an inexpensive place, but i was hoping if we cut back on the hotel we could spend extra money with the kids doing activities and going places... wrong! you get what you pay for... and worse!", "type": "review", "business_id": "TtdQtqjvN_K4449boXaU1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kXT3pVtElactR8nFmeLbbg", "review_id": "2vhvRIZzjrpipX3lC3mvpA", "stars": 4, "date": "2010-11-27", "text": "Pretty damn expensive, but I don't think I could ever get sick of the teppenyaki!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CCMCDyaTNy5nksVGKwARIQ", "review_id": "d4MnKrqf0jnSuIPAjL4ITA", "stars": 4, "date": "2012-06-13", "text": "Excellent breakfast. Portions were more than ample, service was attentive. You could tell the place draws it's regulars, but it's a good option for visitors as well. I had an egg sandwich on ciabatta bread, and my partner had pancakes. We were both pleased.", "type": "review", "business_id": "pqkwR2me0LhEZulRcQpOuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qcBEh_PFohFIJFcK9J23Sg", "review_id": "VkQ8eg6bdxAANJxQYUyRXA", "stars": 4, "date": "2010-12-16", "text": "Blue 32 has a really great atmosphere and terrific menu. The menu has everything from soup and salads to sandwiches to pasta. There is a great beer selection, and happy hour/reverse happy hour in the bar. They even serve a late night menu in the bar when many places are closed during the week. \nFor late night last night we had nachos, spinach dip (soooo good), veggie platter and wings. The beer was cold and the food was hot. \nThe server was nice and the bathrooms were clean.", "type": "review", "business_id": "14K90G-hbfk795NY7cKxMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Hb49IsEZltm85wLz3uMrmw", "review_id": "vjd07gFKxWtmBhQ-Q0Blcw", "stars": 3, "date": "2011-08-16", "text": "I have always enjoyed the quesdillas at Chili's. Try their happy hour where they offer bottled and draft beers. There chicken tenders are okay but they are breaded and I do not care for breaded chicken tenders but rather the grilled ones which they do not offer. The salsa here is not very good, I have tasted store bought salsa that tastes much better. The best thing Chili's has to offer is the happy hour.", "type": "review", "business_id": "e8bElXSntEcwQdq9ZG-rQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KK_2vxqNug1wQhVo22soQw", "review_id": "PSgVwQKsHFILnly7yaegYw", "stars": 2, "date": "2010-08-01", "text": "Steakhouses are competitive today and the typical Yelper probably has his or her favorite. My good friend and I were eager to see the type of energy that the new investors have injected into a local legend, the Wigwam in Litchfield Park. \n\nAs time was flying by, in the last 10 years, the AZ Kitchen (also in the Wigwam Resort) closed for dinner. This southwestern gem was also affectionately called the 'Snake Pit' by a friend but the service was top notch and it was one of the earlier restaurants that provided full view of the kitchen by diners. The Wigwam's ballroom dining has now been converted to Red's Steakhouse. \n\nService started out well with a nice touch of a choice of fruit for your water. The waiter had recommendations but also allowed us time to ponder the menu. We opted for the couple's dinner, essentially a prix fixe with a salad, choice of sea bass or steak, and the shared dessert. We also decided to try the crab cake appetizer - just to adventure through the menu a bit; this resulted in a stern warning from the waiter that the steaks were 14 ounces. \n\nThe crab cake was a nice presentation with fresh crab and a toasted crunchy top and colorful spinach bottom. The side avocado dressing was a bit heavy for the crab and appeared similar to the faux guacamole at cheaper eateries. However the crab was dry and the waiter brought more of this dressing out for us. \n\nThe service with the Caesar salad presentation began to falter. The salad is the craze of serving entire stalks of the romaine and a toasted slice of bread. Reminding the waiter for salt and pepper, he promptly provided a set and advised us the salt was also in a grinder. My friend determined that the pepper grinder was broken and did not provide a coarse grind and the waiter asked if we would like another pepper grinder. Actually, for the prix fixe price of $45, I really wanted the waiter to politely grind the salt and pepper over our salads. The crouton had no flavor. \n\nOur steaks were done as ordered but the NY Strip did not have a lot of flavor. The menu indicates the meat is grilled at 1600 degrees. However, my medium rare steak really appeared to be grilled on my a standard grill with no caramelizing or searing to hold in the rare juices. The steaks were true to size of waiter's tip. \n\nThe steaks were served with two asparagus stalks which appeared to be white asparagus with green tips, a unique veggie for the plate. \nAn au gratin potato patty also accompanied the steak and was quite yummy. \n\nAs the server boxed up our plates, they brought out a raspberry mouse. Its flavor did not impress either of us but my girlfriend did find the mascarpone center and it was addictive. \n\nService was not astute nor attentive and sometimes baffling. We were just into the meal when the waiter dramatically closed the drapes of the window near us. One of the other diner's called out in sadness to lose the evening sun but the waiter shushed her and said they would be opened intermittently to avoid blinding other diners. Could Red's should consider awnings or subtle window shades to preserve our dining views? \n\nThe Wigwam may not be hoppin' just yet; but as we left the restaurant, the three restaurants on Old Litchfield Road - outside the gates of the resort - were busy as locals may have enjoyed more reasonable fare and better service. These restaurants are our next adventure!", "type": "review", "business_id": "ZLVX6bQt8HJH5d4pq5EJGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I0DkvjOPosQJboR34P3AyQ", "review_id": "bQ4ibBlds7BcfypULsfUQw", "stars": 5, "date": "2011-03-10", "text": "Chicken wings and cheeseburger meal... Yummmayyyy\n\never since i've moved away from arizona, i can honestly say that china grill is what i miss most.. their chicken fried rice is really good and so is their cheeseburger.. their general tso's chicken extra spicy is my bf's favorite.. almost everything is good here!!", "type": "review", "business_id": "nLLs9fIiWw6WDku3_2NVVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hZ2RPn9VcfBHv8_cHG53nw", "review_id": "mX_Y_ObM6RWOh8jVhSilmg", "stars": 4, "date": "2011-12-13", "text": "Got a great deal from Home run.com and used it to find some good cigars.\nStaff is friendly and very knowledgeable.", "type": "review", "business_id": "IanyHrzHB6VHemc5C2Rv6g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "085TP4qzSt6sr2COT4lVCg", "review_id": "DiwXHl9QnIeNghmD5LdGAQ", "stars": 5, "date": "2010-01-20", "text": "I can't really say enough about Liberty Market. The place is beautiful, comfortable, friendly and the service is awesome. I haven't had anything that I didn't like. From the wood fired pizza to the delectable salads, everything on the menu is worth every penny. For me though, it's all about the Cortadito (espresso drink) and the pastries. These are completely off the chart awesome! You simply MUST try them!\n\nAnother great plus to this place is that on just about any given day, you can visit and see Joe (the owner), hanging out, chatting with customers and all around having a great time. Joe is truly one of the nicest and most sincere people I have ever met. Makes Liberty Market all the more worth visiting.\n\nOh! As weird as it sounds, you have to check out the bathrooms, they are the best I have ever seen. (seriously)", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AmCgnISliebEOoJuebWAqA", "review_id": "Zi7GvQgIExuBTGtC6O-Kvg", "stars": 4, "date": "2012-02-09", "text": "I am not a vegan, far far from it. I couldn't be a vegan if I wanted to cause I hate most veggies. My partner is a vegan however and I am always willing to try anyhting once. The meat-less meat actually has the texture of meat not mush. \nI get the original \"G\". It is a buffalo meat-less chicken between two pieces of bread with tomato, lettuce, buffalo sauce, and some mayo like something as well. I get the french fries with this. I actaully crave this damn sandwich now. It is spicy so if you are not a spicy eater I would not suggest to get it. If you like spicy this might be the perfect thing for you. The fries are awesome as well. Shoe sting cut, crispy on the outside and soft on the inside. Mmmmmm. Just writing this make me want it. I also get the egg-less eagrolls. These are yammy as well.", "type": "review", "business_id": "0dORc6ckZw5HezR3BuSsqw"} +{"votes": {"funny": 3, "useful": 3, "cool": 1}, "user_id": "zSQps4R-_w8YkjDtgIsfiw", "review_id": "8EYY48G3kfRQBiHkePActw", "stars": 3, "date": "2008-03-20", "text": "Eh.\n\nIt's alright. \n\nIf you want to have a couple of drinks and watch chicks make complete fools of themselves on the mechanical bull, be my guest. For food and other, don't bother.\n\nI suppose the crowd is a nice change of pace amongst Old Town's usual suspects but if you go expecting a bunch of cowboys (and cowgirls), best to turn around and go up north. Somewhere. Far.\n\nThe food's crap, the service (at least the server we had) was nice but a little slow (or deaf? or on something?). \n\nI will give it 3 stars, 1 for crowd, 1 for entertainment, and 1 for just being different. \n\nWord of advice, skip the nachos my friends.\n\n*** Edit: My boyfriend would probably give this place 5 stars for the music they play. Lot's of rock, some heavy metal, old hair bands, and some new stuff mixed in there. No Rap.\n\nI give it that much. It was definitely good music.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "szbTVEtATfn8f9GxbGGO5w", "review_id": "bs1gmyVKiByVfcjsOVczYg", "stars": 4, "date": "2011-04-04", "text": "Okay, judging a Vietnamese restaurant on the decor is a little jaded IMHO. Ambience is certainly a factor when dining, and if that's your most pressing criteria you're probably not fit to go into most Vietnamese places.\nPholicious does a great job with their food-went their for lunch over the weekend and tried their oxtail pho which was very good. My buddy had chicken & vegetable chow fun which was also delicious. Sizable portions and the most unique serving of Thai iced coffee I think I've ever had. Almost like a half old time Italian espresso pot on top of a coffee cup that holds the coffee and condensed milk. You're supposed to stir this then add the contents to the accompanying glass of ice. Unlike dummy me who just dumped it in the ice :)", "type": "review", "business_id": "2mcmuAvpNIJuV3gV0v9v2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TXJ8YldcRE_8RnjnwVUhXA", "review_id": "TrPBR853KTey53b9fXRz9g", "stars": 5, "date": "2011-06-15", "text": "Michael came out today and he was great! Our patio door was a bear to open and he put new hardware on and voila! It seriously opens with 1 finger. He was quick, affordable, knowledgeable and very nice. Scheduling was easy and the office staff was kind. A+!", "type": "review", "business_id": "A0-0oO2I-L4QF9BMi9duuw"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "ucpgqQEHq6EidRgqNjDPiw", "stars": 3, "date": "2010-06-11", "text": "I think the lady behind the counter didn't like me. Could've just been me. I don't know. It's just how I felt.\n\nWhen my boss first told me about this place, I thought he said \"Al Molina\" and I was like, \"You mean the guy who played Doc Ock in Spider-Man II?\"\n\nI've been here a few times, today was the first time I'd been to El Molino in about 8 months. I happened to be in the area, popping in to buy a backpack at Staples an decided to get a burrito to go to munch on when I got back to my office.\n\nOne thing I really didn't like was that you had to ask for the key to use the bathroom. That's something very typical of, like, a gas station that bums use to shit on the floor. I went to the bathroom and it said I had to ask for the key. I went back to the counter and the woman disappeared in the back so I kinda just did a little pee-pee dance until she came back.\n\nIt was a little too expensive for what it was. A thing of chips was like $4.50. That's crazy. Granted, the chips are really good and you get a lot of em, but... don't you have a thing of chips I can buy for a buck that comes with a much more reasonable portion? I got all these chips in the fridge at work that won't be edible on Monday, probably.\n\nThe burrito I got was very tasty. The salsa they gave me was also super good. Nice and smokey and spicy. Seriously. Man, that shit was spicy. I kind of have a soar throat today so that spiciness felt super good to me.\n\nI had to laugh when I opened up my to-go back once I got back to work because I actually thought maybe I didn't get ANY salsa, but when I took a look they gave me soooo much. I made a small tower beside my meal, like a Stonehenge of heat.\n\nThree stars: Good. Not great. Weird bathroom. Unfriendly lady. Good food. Too expensive.", "type": "review", "business_id": "68euKezXqyvsE49cIGdL2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4UmzR0mTv3_8JunST1kh-w", "review_id": "Q0iDQpaHOY2BvAr-JN3Qag", "stars": 1, "date": "2012-10-27", "text": "I had such high expectaions after reading reviews but I was so disappointed. The food was not good, the service was awful. They got all of our orders mixed upo. Will never go back and cannot recommend this place. PS one dish was good and some enjoyed the soup. There are 100 places I will visit before returning to this place.", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZRQdOIIhzrzE6sc3emgM-Q", "review_id": "HPJHQKDVttoNjsnlCNLn0g", "stars": 5, "date": "2012-02-29", "text": "Where else can you go in Chandler the will transport you to another country for free in a flash!!\n\nI like to shop here and explore the foods of other countries. This is not just an Oriental Supermarket, they are a World Market. Each aisle jets you to a different culture or country.\n\nI wish most of all their sake selection was better but oh well, they are bound by the limitations of their distributors.\n\nI will be there again soon for a mini-staycation!!!!", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 18, "useful": 19, "cool": 17}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "EVuIuqNBEkVZP3SWKPlQnA", "stars": 5, "date": "2008-12-22", "text": "This review is pretty much for the bra department at Nordstrom. They are amazing at their jobs. I finally found out that Victoria's Secret is that their bras suck! \n\nSo I bought a bra online to pick up at the store, but when I went in and tried it on, it didn't fit. I thought that sizes for that brand ran a little differently. I told the sales girl, and she asked me if I minded if she measured me. I said sure and she followed me into the dressing room. \n\nWhen we got in there she told me to take off my top! I'll be honest here, I thought she was going to measure me over my shirt, and I almost peed a little. I decided to pretend like it was no big deal to take my top off in front of a total stranger, and just took it off. Not sure if she noticed my slight hesitation, but she probably did, oh well. I generally like to go on a couple of dates before I take my top off if you know what I am saying.\n\nWell guess what? That is the best way to get a good measurement it turns out! The salesgirl told me to wait a few moments and she would be back with some bras. She came back with two of the most wonderful, comfortable, and supportive bras I have ever owned! So instead of getting one bra that day, I got two.\n\nI have to say, my hat (or my top) is off to Nordstrom for training their staff to be great at their jobs, and for having fabulous bras. \n\nLadies, please don't bother buying another bra at Victoria's Secret! Run to Nordstrom next time you need a quality bra to support your girls. :)", "type": "review", "business_id": "c7VgGP8xT25OSReok6fwcQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "di9IJXTJmCa4mO3bZVINDw", "review_id": "Th_G0VZLJuqrOa9VUj0meg", "stars": 4, "date": "2011-04-19", "text": "I've been a baseball fan my whole life, and I have to say that this place hit one out of the park! We had lunch at St Francis today and were thrilled.\n\nThere were only two of us so we had a limited sample of the menu, but everything was topnotch. We tried the baked goat cheese appetizer and were wowed by the creaminess of the melted cheese, the piquant flavor of the tomato salsa, and the crunchy toasted baguette to spread all the goodness on. This is a winner... just go ahead and order it and you'll thank me later!\n\nDining partner got the Red Wine Braised Beef sandwich, with the Red Quinoa side salad. Now I must tell you, I was all over quinoa ten or fifteen years ago, before it got real trendy, and cooked it often... but always had it hot, sort of as a substitute for rice in dishes where you'd use rice. Never ran across a recipe for it to be used cold, in a salad... REVELATION! the dressing and other ingredients in this dish are very cleverly combined, look very nice on the plate, and provide the double whammy of (light and flavorful) with (savory and satisfying)... you could make a lunch out of it and go home happy! The sandwich was good... grilled bread tasty... horseradish sauce brings zing and flavor... but all in all nothing to write home about. \n\nI ordered the Pork Chile Verde... gosh I seem to order that all over town don't I? this one is not a home run, it's more like a Grand Slam In The Bottom Of The Ninth! OMG so smoky good, with a healthy heat index (comes with a roasted jalapeno in the stew, eat at your own risk) A side of homemade corn bread is delicious, crumbly and just goes perfectly with the stew. Don't be shy, just dip it in there and get it all over your upper lip... no one will blame you.\n\nI definitely will return to this restaurant, perhaps at dinnertime... but whatever time you go, I am sure you'll enjoy it!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 1, "useful": 8, "cool": 2}, "user_id": "yy9fTfze8azIJsvWKvHefQ", "review_id": "Sqb1ojztVIpKnUFypeWuLw", "stars": 4, "date": "2010-12-10", "text": "Shortly after I wrote my 3 star review, Christopher contacted me. He was very apologetic about our experience and wished that we had enjoyed our meal more. He immediately offered to refund us the cost of the meal because we weren't 100% satisfied.\n\nAfter discussing his offer with my friends, we decided to take a 50% refund. Let me just say that I was personally a little uncomfortable with this because while I have received refund/free meal offers from other businesses in the past, I've never taken them up on it. I don't think it's about the money and I certainly don't write reviews to elicit free meals. However, since the 3 of us split the cost of the meal evenly, I felt that it would only be fair if I took my friends' suggestions into account. \n\nAnyway, the refund check arrived in the mail yesterday. I decided to upgrade my review to 4 stars given the overall experience. It's rare to find business owners who value their customers as much as Christopher.", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "lcgUBCrznwC0FohI4jgMyg", "review_id": "EeHx0TDXVPSv048y0LLjzg", "stars": 4, "date": "2008-07-31", "text": "This place is cleaner than Lee Lee. In addition, there is an authentic Chinese cafe, Chinese BBQ and Chinese bakery inside the supermarket and their quality is okay. The BBQ session is better than the one in Lee Lee.\nYou can get discount by paying $100 upfront for $110 shopping coupons, that is equivalent to about 10% discount.\nIn addition, this place does sell some luxury food that Lee Lee does not offer.", "type": "review", "business_id": "5x3aA0DSo8nqU13IZyH79A"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "7GAjxEA-OscXgPt7YFgkBw", "review_id": "ndlfmgS0TNEhrUlPpbHiXQ", "stars": 4, "date": "2009-05-03", "text": "I am a fan. But I would like to be more of a fan, and so I am here harping on the two problems I have with CC. One is the parking mentioned by other reviewers and the other is the bad service at the food court. I don't mean the samples handed out on almost every aisle and the hassle of the lines as stereotypical fat people line up like hippos at a rotten carcass to 'just try a sample'. I mean the little restaurant inside the store where the hippos line up to drown their peptides in sugar and grease. The food at any CC is outstanding fast food at an unbelievably good price. The pizza is fresh and really tasty and only 9.99 for a whole pie, the soft-serve yogurt is a huge portion in a plastic cup for 1.49. The hotdogs are terrific. Everything else is good and cheap too. There are no problems with the food quality and price. It's the service. The service is indifferent and inconsistent. Somedays it's ok to order pizza to be picked up later for a party, and somedays it is not ok and the workers will claim that it is not a service and never has been. Liars. Fat liars. I actually typed lairs by accident which works too. I'm done with this review due to boredom. I just can't stand it when a great business carelessly regresses to the mean. Brave the parking and the neutral service because when you need a good hotdog/pizza/frozen yogurt, it's a great spot.", "type": "review", "business_id": "XLqnjlLYt0_q_NG7l_BpMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o0PtCbKjXYaGZ6xQcw6m_g", "review_id": "qlES1y-e4DlxMJdKuS3rrQ", "stars": 1, "date": "2012-08-27", "text": "If you want a school that cares more about your financial aid money than you, this is the school for you. Education is horrible. If you are a democrat, don't speak your mind; you will be considered a reject from day one. I got 100% on my graduate papers and think I did not contribute anything to the fields. This institution is a joke.", "type": "review", "business_id": "JJDaF4yFPLgQ3u678qyL2w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "cvPZhN3vKRAXDg8Mhapouw", "review_id": "ewDKc4O7L0kKFWTPjpHCxA", "stars": 5, "date": "2012-04-27", "text": "I was there last week with my sisters and while we ordered our steaks cooked medium, all of them came out well done. Kind of disappointed, but oh well.\n\nSo last night my fiance and I had a buy-one-get-one-free coupon, so we headed over. When I ordered my steak cooked medium, I asked her to make a point of it when she put the order in because of the issue last week.\n\nWhen our food came out, she asked me to cut into my steak and make sure it was cooked the way I wanted. I did and, while it was a bit more medium-well than medium, I was hungry and it looked good, so I gave it the go ahead and we started our meal. It really was a good steak.\n\nWhen our waitress came out again, she double checked that my steak was cooked correctly. I assured her it was fine. A few minutes later a manager came out and apologized for my steak being over done and offered to replace it. I assured him it was maybe a little overdone, but it was good and I was happy with my meal. They were being very nice and showing some great customer service, though a little overzealous. :)\n\nWhen the bill came, they had made my steak the free one for the coupon, even though mine was the more expensive of the two meals we ordered.\n\nGreat customer service, and very good food.", "type": "review", "business_id": "WHd8fLeMeWKUK6sPyeB-UA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Ep2bE0lPEJMcJfts8r8NHw", "review_id": "YTa73nikmAV5ibPViRxo1g", "stars": 3, "date": "2011-05-21", "text": "They serve alot of food.", "type": "review", "business_id": "-6Roo-EHgSdUa4rP3tWyRw"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "gFpZacglRHhKUVvUXmIVtg", "stars": 4, "date": "2011-10-02", "text": "Anytime I locate a Subway with BOOTHS, I put it on my list to go! Yeah booths! Ok, so today after my haircut at (4 Star) Great Clips here in the center, I hopped on in here. \n\nThe \"SUButopian\":\n\n* Staff a little drifty. There was no soup on the menu sign, so I asked Mr. Drifty I, the cashier, what kinds they had today, & the price. He said, \"We don't have soup here\". Ok, so I asked him what was in the two kettles three feet behind him. \"Oh. I guess we DO have soup, but I don't know what it is, or how much.\"\n\nMiss Nondrifty appears out of nowhere, & I ask her about it. She agrees with me that it's not on the menu, & says they have Vegetable Soup & Broccoli Cheese Soup. Fine, but I'm a meatie! (Ok, the Broccoli Cheese is good, but I at least wanted Chicken Noodle which almost all Subways have every day.)\n\nAfter receiving my sandwich (& skipping the soup), I put my cup under the ice dispenser & it was empty! I gripe & in a few minutes Mr. Drifty III appears & pours a bag of ice into the soda dispenser. We're at 2 Stars right now, including a boost for the clean, comfortable cafe atmosphere & nice booth to sit in.\n\nOk, the good:\n\nBacktracking to just after the no soup/soup/no soup minute, & placing my order... The place is a little busy, but it's not too long a wait for Mr. Drifty II to go to work on my sandwich. I order a \"Subway Melt\" which comes with ham, turkey, bacon, your choice of cheese, & whatever veggies you want on it. \n\nI get it on their Honey Oat bread, & have him not toast it, but just nuke the four long slices of raw bacon. The bread gets a thin coating of mustard on one side & mayonnaise on the other. For cheese, it gets Pepper Jack (of several good choices), then a little lettuce, lots of tomato, some onion, Greek Pepper slices, & a squirt of Ranch Dressing.\n\nOMG, it was terrific!! ...and the October Special is ANY foot long sub (except 2) for only $5!\n\nSO, while this Subway doesn't come up to the 5 Star one down the street at 5130 W. Baseline, the great sandwich & value propelled this one up to 4 Stars (& I didn't need the soup anyway)! :-))", "type": "review", "business_id": "tLRNfwNm789XHWLNFvJcWw"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "bZFRqP7s0Vszxeu8_IwYow", "review_id": "Wpyem39YZE4AhTQ_r0k4Yw", "stars": 4, "date": "2008-02-28", "text": "This place is very cool and laid back. Apparently Unlce Bear was someone's dog b/c there are dog pics plastered all over this place. If you are a dog or even a pet lover in general you would appreciate the decor/vibe of this grill/bar. It is literally a \"throw your peanut shells on the floor\" joint (they come served in a dog dish) with very cold beer on tap and an eclectic mix of people that dine here. The Gilbert location is a bit more conservative versus the East Mesa spot. People in Gilbert seem to think it's ok to bring their small children to bars! \n\nI am a huge fan of the BBQ chicken quesadilla (or you can get it served as a pizza). I really haven't tried much else on the menu b/c I can't seem to stray from my BBQ chicken; It is yummy and when I lived in the east Valley I would dine there about once a week.", "type": "review", "business_id": "hnw-5xX7i4C1po5X9i686Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ddttP5OfCJTEl2VEtMfRag", "review_id": "0R2ykdiB0VEEYcN2Ut70gg", "stars": 5, "date": "2012-05-19", "text": "I love sprinkles cupcakes. I have also managed to go to every location except the 3 in so cal. Like every location, the taste and quality is consistent and delicious. I got the salt caramel, banana, and carrot this time around. Like always, it's delicious and lasts for as long as they say it does. My pup loves the pupcakes too. I would wait for these cupcakes any time.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "YoBu4TVcP5YHKOC35NPXQQ", "review_id": "uPcQ_NkDwP5HmgyjvyVAAg", "stars": 4, "date": "2006-04-23", "text": "the food is excellent but the waiters and waittresses need to get fired. some standouts on the menu are the hummus app, the greek platter (hummus, pita, and all that other stuff everyone knows but can't pronounce), the chicken wrap thing and the gigantor fruit salad. make sure you don't go on a friday night with a group of 8, otherwise you'll have to wait 45 minutes only to be sqozen into a table for 4.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "0Ke0iSAPYi8hUVxLocAlYQ", "review_id": "f5nmGyjAgziQjUfP6D1bJw", "stars": 4, "date": "2010-12-26", "text": "I'm glad I made a second trip to Papago before writing a review, because they have redeemed themselves from my original visit. The problem with my first visit was two-fold: 1) The beers that were most interesting to me had run dry; 2) The food I ordered was pretty hard to grunt down. And although I sat at the bar with my compadre and tried to make conversation with the bartender about the different beers offered, it was fairly one-sided. I did not get a dose of craft beer expertise from what is arguably a brewpub that showcases a true love for beer.\n\nSo regardless of the less-than-stellar first visit, I still was impressed with the selection of draft beer especially the regional offerings. The built-in beer coolers are also a testament to a great place to sample different labels. The one thing I must caution others against is the food. The steak sandwich I ordered (with special gardiniera) was pretty lousy. The beef had a precooked-then frozen-then reheated quality. The gardiniera was essentially all jalape\u00f1os and too fiery to eat... I had to scrape a fair amount of them off to make it edible. I had a good time drinking some decent beers with my friend, but we both regretted our food choice.\n\nMy return visit restored my faith. The beer list was current and updated. There was a large variety of new draft beers to choose from, and my group ordered two pizzas. This place has delicious pizza! Our waiter was especially knowledgeable about the beers being offered and was able to help us choose especially interesting ones. I like the atmosphere and crowd at Papago and intend to return. But I will definitely stick to the pizza.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4rIgZlwv3WQifoXwcFGcfg", "review_id": "wFRmUnUPsDuRQ5986G_-nQ", "stars": 5, "date": "2011-12-09", "text": "My favorite place by far and well worth the drive from Gilbert. Love the atmosphere, bruschetta, and of course the wine. Great place to catch up with friends. I can't wait for the location in Gilbert to open up.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E8FSWBUXArSJU7cWpBXF7Q", "review_id": "tuNdSzBSNmcwUXHLY0re0A", "stars": 1, "date": "2011-10-26", "text": "My husband and I went there for our first time today. What a mistake. First of all, the ladies bathroom had no soap or paper towels to wash/dry your hands. My husband had the steak sandwich and I had the chicken ranch. There was so little meat on the sandwiches that we were perplexed when we were finished. The inside trash was overflowing. I have been sick to my stomach the last hour....never again.", "type": "review", "business_id": "0VLZj0f3llL9IkL5GOT3lg"} +{"votes": {"funny": 1, "useful": 8, "cool": 5}, "user_id": "0Ke0iSAPYi8hUVxLocAlYQ", "review_id": "OY2NgNAM6TsKaPEu7JxO3Q", "stars": 5, "date": "2009-10-17", "text": "This place was the answer to my German grocery shopping dreams! I thank the Yelp community for leading me to Old Heidelberg. I was picking up a number of items for an Oktoberfest party I was cooking for and hosting at my house, and was able to fulfill most of my exotic German needs at this one stop. I picked up pumpernickel rye bread, authentic concentrated Maggi W\u00fcrze seasoning (not the soy sauce-tasting stuff you find in most American grocery stores) and Knorr zwiebel-kr\u00e4uter salat kr\u00f6nung. They also had lots of Knorr sauce mixes that you just can't find over here (for instance, sauerbraten gravy).\n\nI stuck around for a few minutes to talk to the two women who ran the place (Andrea and Chris). I volunteered that I had lived in Germany for years, including Berlin and Bavaria. They were totally friendly and even suggested some other places nearby that I could check out for German grub or rarer German beer selections. I promised I would be back... especially since I spotted that they had frozen leberkn\u00f6del (liver dumplings). I made these once from scratch years ago but that was a lot of work. Knowing that they carry such delicacies has snagged me hook, line and sinker, as I am now destined to return and once again indulge my German food fantasies.", "type": "review", "business_id": "fzHlul2mHy_jwJc-WBRvlg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "e6jqQ_YXlGiLPi1z2HO0Pg", "review_id": "ezDjHM0L32qsWcTpbPipAg", "stars": 3, "date": "2011-04-05", "text": "Oh Porter, how do I love thee? Let me count the ways... \n\nI had a, ah, as in just one, porter and was feelin' fine. And I was extremely glad to have the sweet potato fries instead of the regular ones with my sammie. Our waitress was pleasant, prompt and next time I'm going to ask to be seated outside or at a high top table. Our booth was great for chatting with my friend, but I like a little people watching at the pub!\n\nNow, if you are avoiding SunUp because you remember that there used to be something called the Sonora Brewhouse in that same space.... You're in luck!! The brewmaster, Uva, is still there, still brewing his witches draught. But now, you won't get them confused with the Sonoran Brewing Co. in north Scottsdale. Hooray!", "type": "review", "business_id": "3UMcsN9IjoeV8JZvC4apag"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "6uNeagh9ljbwV8XRUn_cYA", "review_id": "Rq0F5xyOkboPrXa36iC7oQ", "stars": 5, "date": "2008-07-22", "text": "Barrio Cafe is a favorite of mine, the margarita's before you get seated are a must. When in season the pomegranate guacamole is second to none. A refreshing escape from the cookie cutter chain restaurants. When you go go with friends and don't have a schedule as the wait can be long, but worth it.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "vF4B6eFdoDmyV_l7MLHMzw", "review_id": "Te0MEKdoGufnxK4DcoUwNA", "stars": 4, "date": "2010-04-06", "text": "In a sentence: Culinary Dropout is a foodie mecca with its plush and lux furnishings, amazing location in the heart of Scottsdale but away from the duche-ery of Old Town, on point entrees that range from classic to what I call contemporary chef-y food, and its trendy lil touches like dishtowels for nanpkins and placemat menus. \n\nAfter a short afternoon of shopping, I and the other Musketeers ventured into CD in search of yummy goodness... we weren't disappointed. We scarfed down the Pretzel and cheese fondue. Sorry, I can't remember the exact cheese used, but it tasted like cheez whiz without the nasty chemical aftertaste. \n\nMusketeer #1 had the Shrimp Po' Boy sammy and was overwhelmingly awesome! With its fresh baguette, crispy shrimp and cole slaw topping, this po boy claimed to have died several times. The fries were good, I'm sure they are awesome with the steak. Musketeer #2 had the truffle egg scramble. She said that it was good... not bad... but not terrific. We love the truffle, and this did deliver however... it just missed something... je ne sai quai... just something. I stole a bite and concurred... the low point in a overall great meal. \n\nand me, Miss Musketeer #3 had the coq a vin... a MUST! If that or braised short ribs are on the menu... they MUST be ordered! That's the rule my friends. My braised chicken was good, kind of on the sweet side, but over all very good, although the chicken did have an odd texture, it seemed to me that it could have used a few more hours in the oven. I think this is a dish best served before closing when all the flavors had their chance to really marry. We arrived at the top of dinner service and so the chicken was done... but barely.\n\nMusketeer #2 and I both NEEDED bread and butter, our cooler-than-thou waiter was happy to oblige, even though it took a VERY long time t find him to ask for it in the first place. We capped off the meal with their \"famous\" Monkey Bread, it was definatly worth going bananas over! Warm, gooey, delicious and crazy sweet with its pull-apart goodness it didn't need the ice cream it was served with, but we certainly weren't about to send it back! The three of us died over that one! \n\nTo my yelpers I say: if you have the cash to spend (three of us cost a lil over a hundred clams), a few hours spend on dinner (we were there a while) and a NEED to reach foodie nirvana in order to keep from jumping off a cliff into the chain resturant valley... then this is the spot for you! Bring your most expensive IT bag, a pair of oversized shades, maybe a sweater (the outdoor heaters really didn't work) and your most predestroyed designer deconstructed jeans and get ready!! It's gonna be a blast!!", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "Ooj3PxeY6HY_vS_vYEwP1Q", "review_id": "fMOpGwXRZwbU6DosBTTsqg", "stars": 1, "date": "2011-05-06", "text": "I will make this real easy for you. \n\nJust go to in-and-out Burger if you don't want to feel gross and poor.", "type": "review", "business_id": "ahKN6wh6z2vZsd8C7AyG5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RIVRgEWlDZ7KnfkOrnabtw", "review_id": "eabKaVJlR3YrPdJ4LeFcPw", "stars": 5, "date": "2012-09-12", "text": "I'm usually one to prefer chicken - but when the only option for tacos is steak you go with it. I ordered the taco and was rewarded with tender steak with lots of flavor. Our lunch crew has gone back several times and the service is always fast and friendly. For the size and price - order multiples. Love the salsa bar. Adding cucumbers is now my favorite treat.", "type": "review", "business_id": "eZXAQxBXReD78AWWf0_4ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "WWpp_Unu5IccxJU5Th2DVw", "stars": 3, "date": "2010-07-30", "text": "I have have given it 3 stars, but my partner gave it 4, just keep that in mind.\n\nI had wanted to check this place out from the first time I saw it, and when it came up on Groupon, it was fate. My partner is a sandwich lover, so it was perfect.\n\nFirstly, they didn't have a lot of vegetarian options, which I found disppointing. I'm so sick of my only sandwich choices being either tomato/basil/mozz or lettuce/tomato/cheese...and that's pretty much what they had here. I went with the caprese option.\n\nWarning; when they say fire roasted tomatoes, they mean WHOLE tomatoes on bread. Now, I'm ok with a few tomato slices here or there, but giant squishy tomatoes looming over a few spare pieces of (fresh) basil and (fresh) mozzerella? So not appetizing. I ate what I could, but was not impressed.\n\nMy partner, however, made her own sandwich with Turkey, cheese, and some veggies, and she loved it. I agree that the bread was good, and I enjoyed the popcorn chips (rather than potato). The staff was incredibly nice, although the service was a bit slow, and the seating options were a bit odd (and not very accessible for those with disabilities).\n\nI wouldn't PLAN on coming here, but if we were in the neighborhood, I'd stop by.", "type": "review", "business_id": "zw2iJahOnSxlzmRlF4al6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "raMSkwLdZ-kFea1fTY_-Ew", "review_id": "e9pc1PuidNPZzf25nxj7oQ", "stars": 3, "date": "2012-10-11", "text": "OH this shop makes me want to lose a hip or something just to fit into their clothing!! I found not one thing in larger sizes, but my friend, who's a size 8, found LOTS of awesome vintage clothes...including, yes ladies and gentlemen, a 70s JUMPSUIT! I am drooling and green with envy, but alas, I couldn't find anything. Go here if you're thin (or just want to torture yourself by staring at all the awesome clothes that won't fit you unless you chop off some body part you probably need).", "type": "review", "business_id": "w8D3DAby1nVgU8a4s3z88w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CGa9zqexmIINVYzviXYq2A", "review_id": "39ICyKwEw4TYd9ZuQaAgAA", "stars": 5, "date": "2012-06-29", "text": "I had lunch today at CASK 63 with a banker to discuss our collective power to create business in the Phoenix Market. I HAD THE ABSOLUTE BEST CRAB SALAD, I've had since leaving the Gulf Coast of Mississippi. Red Crab Salad....fresh, clean, sweet, crisp..light...in a very well appointed setting. Very good iced teas as well....hard to find in Phoenix.....Go there...Eat there...you will like it..and we might see one another...who knows...be like nike..just do it...:)", "type": "review", "business_id": "5o5MLNPmAeakGgdqeGyMvw"} +{"votes": {"funny": 2, "useful": 5, "cool": 6}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "AX3sLTFCOJRoJuCMho7L5Q", "stars": 3, "date": "2008-12-01", "text": "I woke up late on a Saturday, and I was craving Indian food! To my relief, it was almost lunch time! I remembered that there was an Indian restaurant close to me that I had been meaning to try. I headed to Flavors of India to try their lunch buffet. I walked in and I was immediately greeted. I noted the Bollywood videos playing in the background, I love those dang videos. The host was also my waiter. He invited me to help myself to the buffet. I'm not one of those people that knows the names of each and every dish. As I write this I'm kicking myself for not taking notes. As a whole, the buffet was a-ok. Nothing in particular knocked my socks off. I did notice that nothing was powerfully flavorful. It was kind of a \"safe\" seasoning restaurant. I would visit Flavors of India again. There was plenty of food, the buffet had a lot of variety, and the service was good!", "type": "review", "business_id": "LYyGQgL60VKdV-p_9OxmWQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "J3I2NClEbD1Xr8lOdjxlqQ", "review_id": "HoEbCttQ_69B6xIp85qkcw", "stars": 4, "date": "2012-04-19", "text": "Nice, clean store, well-laid out, has all the traditional TJ stuff - lots of organics - although the fruits and veggies could be a bit better stocked. \n\n Those little chocolate chip cookies are death to my diet - I cannot resist them.", "type": "review", "business_id": "Dsvx2LEC8jk9nuGsg1Kqhg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "U5JyHRVayfHRHipogAq84A", "review_id": "rbSKI8wJuzBYNxOaB74log", "stars": 3, "date": "2010-09-28", "text": "I really wasn't impressed. Came here with some friends to grab some takeout, and nothing really made me smile. The al pastor was 'meh', at best. The carne asada wasn't particularly noteworthy, and though the vampiro was tasty, there wasn't anything hugely redeeming about it. Nothing to write home about.\nSucks, because my friends in Arizona swear by this place. I'm giving it three stars more out of courtesy to them, but my own personal experience here wasn't anything over two. The people who worked here were very friendly... I've heard that the ceviche is the bomb diggity... I wish I could come back here and give it a better review, because I'm sure that next time would be better, but as it stands right now, I'm just not a huge fan.\nSorry guys!", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "IzMeF5f2043jgDjhzNeDbg", "review_id": "IvTP2fHcGOG_GkwLOhqh1g", "stars": 1, "date": "2009-04-20", "text": "\"The office space, layout, presentation gets 5 stars, the customer service you receive from the employees at Corporate Office Center is a negative 10. They will scare your clients off, scare your own staff and make your life a living hell. Their office locations and space is beautiful but if a say, a client shows up at a time other than their scheduled time, they will be told to leave. They will be told you don't provide any services at the locations and if anyone could single handedly ruining your professional image, Corporate Office Centers can do this for you! BE AFRAID!!!! They are dedicated to working against, not with you.\"", "type": "review", "business_id": "-1N0Z3uM8xbxKS8XiAnaog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a09ENYogqRn0sQ8J2D_rng", "review_id": "mYiFLzqd_cMB9B-HJ90K9A", "stars": 5, "date": "2012-09-01", "text": "been coming here since birth", "type": "review", "business_id": "jzPMl-NoB5F2fwoHX3hN8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3rp6DjEK0FC-zdDeoij1ew", "review_id": "qW5C8PGzKVMjLpWlkgYO4Q", "stars": 3, "date": "2012-09-17", "text": "This place is great but not if you have kids. It mentioned on yelp that it is kids friendly, but they don't even have a table changer in their bathrooms. I was there with my 2 year nephew and had to take him to the car to change his dirty diaper. If you call a place kids friendly, you might think about accomodating and have a table changer in your bathrooms both in Potino and LGO.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "eO1wIenYYlCg1xRU_A0CdA", "stars": 3, "date": "2011-03-23", "text": "This place is pretty good for a chain, and it's very easy to find something for everyone here. The staff has always been friendly, and the menu is huge! The food is just okay though. Would return with friends or for convenience, but we would not go on our own.", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wSSlEV1KRoKgxVNTz3A-oA", "review_id": "jN-O8-qaVLIslx-dc_s-CA", "stars": 4, "date": "2012-08-22", "text": "Skip the reviews that reference anything about bad service. Da Beau and I ate lunch, here, today and we had a very pleasant experience. Yep, a solid four-stars. \n\nIt was our first visit. I was familiar with Mia Francesca (\"MF\") as a friend of mine, who lives in Chicago, has, since God invented dirt, rated her local MF as an out-n-out favorite. And her word is the ever lovin' gospel when it comes to food. I mean, I don't even collect $200 -- I just go. KnowhatI'msayin?\n\nOnward, with the review!\n\nKyle was our server (and he might be the bartender, too) was very friendly, informative and attentive. Then we find out he's a fellow Texas boy...which classifies his attributes as hardwired. What's more, he treats his job like it was his own business; e.g., at the end of the meal he gave us a business card and added he would enjoy serving us the next time. And there will be a next time and a next time and a next time. \n\nSemi-quick facts, anyone? (It's rare a Texan has a short story.). \n\n-- Good, warm bread; accompanying olive oil was herbaceous and handily decanted from a table-set bottle\n-- Da Beau ordered a starter of (peeled!) asparagus with tomatoes and gorgonzola that was lightly dressed with a tangy vinaigrette. The leftover tomatoes and 'zola were a treat atop the warm, oil-dipped bread\n-- We both ordered -- and consumed to the point of making a happy plate -- the barrumunda atop lentils and sauteed spinach. This was our first tasting of barrumunda. A moderately white fish, it is native to the rivers of Australia and reminded me of good ol' Texas catfish. (Note to self: fry-up a batch of panko-crusted barrumunda at home.). The three fillets of fish, lentils and spinach were perfectly seasoned (read: a smidgen of salt). \n\nAgain, pay no attention to the reviews, here, about bad service. Yet, let's say those reviews make an impression. Ok, if you have any reservations about dining here, go anyway and ask to be seated in Kyle's station.", "type": "review", "business_id": "vnRwp-LUrxMdJC9je4q9Fw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Jw3ocYlfPw3T7g0OknI-lQ", "review_id": "L0nll0014emLg66DqoTLGA", "stars": 2, "date": "2012-11-18", "text": "A circus. Too many staff + distractions. I dont want staff (in training..) telling or working on my teeth. Dentist briefly dropped in but seemd focused on age & his opinion on past orthod wrk. A quick veneers consult but only have 2 pics of cosmetic work (flag). * No one talked TO me about a CRITICAL crown needed (crown options?) Had to TELL them about a cavity I KNOW I have. Not a real checkup. They briefly look at the XRays then let hygienist do the rest. Dentist? She was fine but wld be good if she informed on what she is doing & hve mouthwsh after. Flossing aftr a cleaning is a waste (what is that?) -put time into cleaning/ polishing. Never saw the full Xrays done--plusCANT get a copy if you move or need it. 1-2 days/wk the dentist is in..so if issus on major work..will DRAG on.... (nightmare-been thru that). Something is off here. It is all numbers.", "type": "review", "business_id": "OfwnPy6F_pSoKDJHsKPx0A"} +{"votes": {"funny": 3, "useful": 5, "cool": 2}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "T1fqlEsOS9SGkGSj20SW5w", "stars": 4, "date": "2010-07-21", "text": "Because sometimes you just want to flip the bird at calorie counting and healthy living. This valley landmark is the place for satisfying that once in awhile sinful urge to screw up your carefully laid out dietary plans.", "type": "review", "business_id": "cjFDprdEXbDDdraONMy5Pg"} +{"votes": {"funny": 3, "useful": 5, "cool": 6}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "Hv17NrzadO5oqmNHyIowEQ", "stars": 3, "date": "2009-01-24", "text": "Cute place! Nice drive-thru window. Adorable, really. Nice patio-dining/lounging. Noise-level inside was a little loud, but there were eight people, six of w/c were talkative yelpers (ha!), plus Kyle and Chad, owners of D'lish (who were, btw, easy on the eyes... a great asset for any business!).\n\nOne special request- please offer Maya Chai! While Oregon Chai tastes OK, I'm allergic (I suspect there are \"natural flavors\" involved), and organic Maya Chai is multiple-times better (and, most importantly, I don't recall feeling negative effects after)!\n\nGreat spot to unwind and rejuvenate. Will come back soon to try the food!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F9Lvy5LfkeYMF1r_Al-Fxg", "review_id": "baPkhhI-DmC8vSXg9jpPww", "stars": 3, "date": "2012-05-22", "text": "I've never had any real problems with this store. It is your typical lower income neighborhood grocer. \nWhat really bugs me about ALL the Fry's stores is their waste with receipts. Call me a hippy, but more than half of the receipt paper has nothing to do with my purchase. I buy 1 item and they hand me a receipt 12 inches long! With all the stores doing that it equates to many thousands of pounds of paper wasted every year unnecessarily! Hundreds of trees are dying because these guys just don't give a shit.\nYa, ya, I know, it's probably the least of this companies waste issues, but it's one that's handed to me every time I shop there, staring me in the face. I don't like it and I don't like supporting it.", "type": "review", "business_id": "tJplzQDIfCXFFO5wG50rpg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "X9wXPtXASKbqP28CcpM4Ig", "review_id": "lZn__xfMMeyACZHmi5iOIw", "stars": 5, "date": "2012-07-17", "text": "Well, what a pleasant surprise! I stopped by with my children to check it out - planning to eat elsewhere because my daughter eats gluten-free, etc., etc. Then I met Payton Curry and realized what he and the Brat Ha\u00fcs are all about. Great food and a desire to serve! Payton delivered on fantastic organic salads that were gluten, egg, dairy, and soy-free and tasted great! And he threw in a few organic surprises. Now I have a place to eat phenomenal Moroccan lamb hot dogs while my daughter can enjoy healthy food. On our second trip, Payton remembered us and came out to let us know he had made some falafel (in the shape of a sausage, of course) and offered my daughter one in a salad or a lettuce wrap. She chose the wrap (more fun) and loved it. I have NEVER had personalized service like this! Cool place, cool patio, great beer selection, great-tasting unique food selections, and, best of all, great people! Congrats Dave and Payton!", "type": "review", "business_id": "PWG28q4JFOc8FiRBjnfCkA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "tFyQbNbBQEyEc9oCr1pJUg", "review_id": "JYesIP4Uupgy-LOwkKupAQ", "stars": 5, "date": "2012-11-20", "text": "It doesn't matter which location you go to, it's all the same and GREAT!!!", "type": "review", "business_id": "eZyqa81qS0LuH0Bv8vfvrw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-_ilQMnX9m3hthIioMGNwg", "review_id": "ba02iPp9hBhoD9bVymsaPg", "stars": 5, "date": "2012-05-10", "text": "There's the sweetest (and cutest) guy who works there and one time, my total came to 5.45, i had a 5 in my hand as I was scraping for change in my dance bag but he was like \"its on me.\" and took it from his tips! I know its just 45 cents and i could probably find that under the seats in my car but he truly made my day with something so little like that! I LOVE this place!! :D", "type": "review", "business_id": "LYLGCIqNQQrpMwOxJ1hlrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8-2W5CmkDl9vrkxRpkiPRg", "review_id": "RVJLmdXEBnbIr3SQZIqt2A", "stars": 3, "date": "2009-12-31", "text": "Five Guys offers a decent burger, but it's definitely overcooked--they brag about serving them well done and there's no argument here: that's what they are. But I much prefer the flavor of Smashburger's meat. Five Guys seemed rather devoid of meaningful seasoning, or if it was there, it was killed in the well-doneing. \n\nI also didn't really like that it comes out as two carelessly charred mini-patties, instead of one, nicely cooked and seasoned burger.\n\nAs far as Mill-area burgers are concerned, I'm at the following:\n1.Smashburger 2. Chuckbox 3. In N Out 4. Five Guys 5. Fatburger\n\nAnd Chuckbox and Smashburger are awfully close. I've been a HUGE fan of Chuckbox for forever, so many I like the newness of Smashburger, but damn is it tasty. I also prefer the Smashfries to Chuckbox's fries, but I think I prefer 5 Guys' fries to both of them.\n\nFinally, the price is obnoxious. You're not getting that much in the way of a burger for $11 (drink + fries + cheeseburger). You get a MOUNTAIN of fries, but I don't NEED that many fries. You also get to top it with just about anything, but I don't want to subsidize other people's toppings. Let me pay $2 less to get mine with lettuce, ketchup, and mayo.\n\nOverall a meh burger. Not great, but better than Fatburger, if I don't want to walk to College for great burgerness.\n\nOh, as for atmosphere, it was like a club in there. I really don't need to be bombarded with music at lunch when I'm going to talk to someone. I hate shouting and the few times when the song would switch and the grill would quiet was like the eye of the storm. Turn that shit down.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w-7lJmMib10WNuMpnrmKUA", "review_id": "L1JdX3abRGXypXZs8VhEKQ", "stars": 1, "date": "2012-05-08", "text": "Door clearly says drive-thru open 24 hours and lobby till midnight. Drove up at 10:30 and was told the lobby was closed...lame...", "type": "review", "business_id": "Xth3AXjbQVpvsUBNSFcxtA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CJOjw2P9zkPxOnnmrY6KjA", "review_id": "GBzaJM_yoEWHTiNTbJlb6g", "stars": 5, "date": "2012-05-14", "text": "Oooh, this is my favorite lunch place by my office. Super nice staff, delicious bagels. Go for the lox special thing, it's amazing.", "type": "review", "business_id": "3vKhV2ELR2hmwlnoNqYWaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wB7YiVcqEWyL7arlVLsa-g", "review_id": "1yYqKCaM4pQSyVyK6NMAdQ", "stars": 4, "date": "2011-08-25", "text": "Wildflower really is a fantastic place and I feel a bit bad giving them only 4 stars. \n\nLet me say up front that this is a place that I go frequently and I love. However, they have some great food and some...not so great food. \n\nIf you like soup, try the Potato Cream Cheese.....even my husband, who's definitely not a soup fan, loved it. It's even better when you get it with the sourdough bread....it's comfort food, what can I say? Their sandwiches are mostly good. There's a few duds in there that I can't stand. I'm not a huge fan of the vegetarian one, it just tasted off to me and was a bit of a different combination of ingredients. Also, their Brie and Ham Frittata? I ended up searching around in it for the bits of ham and egg...I love brie, I just figured out I don't love it in a frittata. \n\nAll in all, it really is a great place to go. My husband lives for the braised beef sandwich when they have it and their desserts are fantastic - you can't go wrong with anything in the magic glass case up front!\n\nPlus, the Tempe location is right beside Changing Hands - it's like a two for one deal! :-)", "type": "review", "business_id": "06kfoeRs9Acj82Yl3i9p_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RHX2qpUTOv2usuckZIil8Q", "review_id": "PhmRVJ1w4QTSAZATYToH6w", "stars": 3, "date": "2009-08-30", "text": "I came here with me sister Cher, who really likes this place. I'm so used to food being prepared by cooks and brought to me. So, I'm not used to having to prepare my own food via restaurant. I love to cook from recipes, so why should this be any different, right? \n\nAs we arrived there wasn't that many people, I was relieved and allowed me to ask my sister 101 questions about what to do. I ended up making a concoction of beef, carrots, broccoli, rice noodles, sprouts with chef's favorite sauce. It turned out good but I know that I was missing something. I tried some of my sisters bowl and that was really good.\n\nSo, this place is a build-your-own bowl, piled high if necessary, and watch it cook right in front of you.\n\nIt was a little overwhelming at first, but if I continue to go there, I will get accustomed to the process.", "type": "review", "business_id": "CdOb17NMdQpagyHSxv5mHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LpUm2WFJDahp5ShRJ2F4Ag", "review_id": "W-5Mgk4Nxy5cKDvzs8si1A", "stars": 5, "date": "2011-11-21", "text": "BEST PANCAKES!!! We want the recipe. They're newly remodeled and better than ever. Always great bagels but now they have added more menu items, more choices. Great food, great people!", "type": "review", "business_id": "8H1DwdAAgSBtwDeb2R-hmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kWq7Imvce6pLqHaccV1zbw", "review_id": "txNFKQGKG1XDBa7h1u4hYg", "stars": 4, "date": "2012-09-03", "text": "Good Date Night Spot!!! Went here the other night for dinner and it was really good. I had the steak and my wife had the casa dilla of the day. Both were cooked to perfection. Sometimes nicer places have really small portions and seem to pay more attention to how pretty the dish is instead of how good it is but this place was spot on with both presentation and taste. We did not have a reservation so we sat at the bar which has full menu service. The bar wraps around and near the men's restroom there is some additional bar seats that nobody sits at. I thought this area might have been a little more private than some of the two person tables. I also thought it was cool to be able to see into the kitchen but that might only be appealing to me. The bartender was very knowledgeable and checked on us several times during our meal. This place has a good vibe for couples doing the date night thing but there was also a table of 6 near us who were also having a good time. Cowboy Ciao is a win win. The desert donuts are ridiculously good as well.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LhSKiNsXSItau9tgmRfzyw", "review_id": "Cp34L8G3vxXDXHrDqr_OHw", "stars": 5, "date": "2009-10-04", "text": "I have been trying to get into a consistent workout routine for years... I've tried it all! gym memberships, pilates, training for a marathon but was never able to stick with anything... until Karve that is! My husband found it for me on here actually and thought I should try it (not sure what he was trying to hint at with that... but i love my improved Karve body too much now to care :)\n\nAnyway, I went and am now hooked! it is the greatest work out ever - its hard but the results happen so quickly that its motivating... and its really the only workout routine that I've ever been able to stick with ever! and with going multiple times a week I found that it even changed my appetite - I no longer feel annoying cravings so eating healthier is easier for me (a former carb/chocolate fiend)\n\nIt really helped me finally get into a more active/healthy lifestyle - I know that sounds so cliche but I'm still shocked everyday that a lazyass/sweets-eating like me is actually working out on a regular basis - and its all bc of the great method of Karve.... plus the instructors are SO sweet and nice/friendly and supportive I'm honestly making friends there... all in all a stellar review for Karve Studio!! i'm a believer :)", "type": "review", "business_id": "fDST54IsKOGBVtaVN4V8ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fIvDzLhs-cXbTKWp8P3eIA", "review_id": "JruCzyEJTaY30BGbtVgCkg", "stars": 5, "date": "2012-09-05", "text": "Whenever my brother is in town he always stays here so when the hubby & I were looking for a place to get away for a night we stayed here. We are the not the party crowd which is why we chose to stay here on a Tuesday after a holiday weekend. Here is my take on Hotel Valley Ho: The Good, The Bad and The Ugly.\n\nGood:\n1) Gigantic, comfy bed. I slept like a queen.\n2) Private balcony with large chaise lounge and sitting area.\n3) Outstanding bathroom. The tub is separate from the shower which is and the toliet has a room all to itself.\n4) Cool decor both interior and exterior. \n\nBad:\n1) Bed pillows were too squishy. \n2) Toliet paper/bath tissue was surprisingly rough. I would expect a hotel of this caliber to have a softer tissue.\n3) The mini bar and console are fully stocked with an assortment of spirits, but no coffee or tea. Not everyone that stays here drinks his/herself into a stupor.\n\nUgly:\n1) Parking is $15 per day, but you have the option to self park which doesn't cost a thing so I guess that's not really \"ugly\".\n\nOverall, we had a lovely stay at Hotel Valley Ho and look forward to our next visit.", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jdfiORh60zOH7ERQ44WgFA", "review_id": "bKaoIxHPrCUXlH-VRFqj9Q", "stars": 1, "date": "2011-08-12", "text": "Coffee-meh. Not great, not horrible.\nScone-dry.\nService-ridiculously slow.\nThe night we were there (8/11), the owner came and asked a group of people (who were clearly having some sort of meeting) to stop talking because they were \"disturbing the guitar player.\" Chased 8 paying customers (at least I assume they were paying customers; they all had drinks) out the door. Weird!! Don't think I'll be going back.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hrM6sLyqz9b6yLHS2JV5MQ", "review_id": "jSd8zPDOQuQyktne9kP0tg", "stars": 3, "date": "2011-10-08", "text": "Took my family here for dinner. The hamburgers were really good. I had the regular charburger, and i liked it quite a bit. It was better than most of the fast food chains, but I'd rank it below the higher end burgers from places like Fuddruckers or Red Robin. For the price though, I was very satisfied. My 8 year old really liked her charburger with cheese, but my other daughters did not like the grilled cheese at all. I was not impressed by either the regular or sweet potato fries, but the onion rings were good. We did not get any dessert, although the sundaes and milk shakes looked really appealing. We'll try those next time.", "type": "review", "business_id": "Cr2JNnewX53TYd9w6qw6Jw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "fKYP2YKR5yp_cNHPzBxxKw", "review_id": "GudVZKdNtGic2R6yGvrJgg", "stars": 1, "date": "2011-02-08", "text": "I would've gone 2 stars if I were more forgiving. I could reason that it was the end of the day, that a big crowd of wayward children had just come through, or that a hurricane had blown out the back of the restaurant. But then, I tasted it.\n\nIt looks as if Yogurtini is pretty well-loved around these parts, and I'm sorry to report otherwise. It's was like a bomb had gone off. The tables were filthy, the machine handles were all gunked up, there was assorted debris on the floor. The two teenagers working were too busy gossiping about who knows what to do their jobs. When we walked in there were a few customers sampling flavors among the ruins, with no employees in sight. We grabbed some sample cups from the register and dodged napkins and froyo puddles (and other customers) to try some different flavors. The levers are the type that if you pull just a bit too far you make a mess all over your hand, especially when trying to squirt a tiny bit in a sample cup. This mess is then added to the greater mess of everyone else attempting this same operation, and no-one attempting to clean it up.\n\nThe stuff was real overpowering, to where instead of tasting like what it was supposed to taste like, it was bordering on medicine or like a bad imitation of what it was supposed to be. Like, cheesecake doesn't taste like that, good cheesecake anyway... And neither does cake batter, or banana. Where did the yogurt part go? And how do you screw up cookies and cream, exactly? The two that were the best (and most edible) were the Irish mint and the red velvet, and that's what we mostly ended up with.\n\nThe decor didn't add to our experience. Everything is a mint green, but it doesn't come off as retro or even minty, but more like dated and hospital-like. Some people really like it but I found it unappetizing.\n\nA surly teenager magically appeared as we approached the register, only to disappear again soon after we paid. We sat down at a dirty table and dealt with our choices while the two teens again made an appearance, half-mopping-half-attempting-to-clean while chattering back and forth about their dating woes. We finished our yogurt but both strongly considered abandoning the whole affair.\n\nI very well could have walked into Yogurtini at the worst possible time on the worst possible day, with all the factors stacked against them, but I won't be returning to find out if this was the case.", "type": "review", "business_id": "irVjrnurmB03bTaj9BXofg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8UN5ojieloDD4WvohQo77g", "review_id": "bVau6oHuidnqTgXJU2p-Xg", "stars": 5, "date": "2010-08-05", "text": "I had the Gnocchi in Shitake Dijon Cream Sauce, and it was unreal. Cute little place. I didn't sit to eat so I can't comment on the service, but they were extremely amicable when I ordered my take out.", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "x1PxZJvRo4tu-ruOXa5MqA", "review_id": "6WCg2xx-BKwq1y3WCs2_SA", "stars": 4, "date": "2012-07-14", "text": "Fun trivia! Food is mediocre. Crowd was cool and there is plenty to do there (video games, darts etc..) When I'm back in Tempe visiting friends I know we'll be back. Bonus for having the misters and a great seating area outside. We met some very nice locals who were up for a good chat.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UcdsKXNPHmVzi5qPQSCutg", "review_id": "4vdb34Xee5jwHwuuViMT9w", "stars": 1, "date": "2012-02-03", "text": "The 3 employees were so busy talking to each other they couldn't remember what we ordered, kept having to ask, and still didn't get it right. In the midst of the three employees continuing in their personal chaos, my husband finally said, \"ok, time out! I'm the customer. Make our sandwiches and then take care of your issues.\". They stopped for a split second, all three looked at us, then they actually IGNORED us, finished their conversation, then finished our sandwiches. We were the only ones in there and we really were shocked! Good thing I like avacado, because it ended up on my sandwich & I didn't order it, and after telling the girl, she said, \"I thought you said...\". Still had the order wrong! Whew!", "type": "review", "business_id": "4t-W81Tpt1OER_p3mIgMDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0SweAOS_ChLQVv7pb51J4Q", "review_id": "QmFjYvkpHAjSXzSRHCi5lQ", "stars": 5, "date": "2012-10-31", "text": "One of my fondest memories as a child is traveling to Alameda to visit my great-grandparents, one of which was Filipino. The food! Yum!!! \n\nIt had been years since either my mom or I had Filipino food. We both moved to Arkansas 20+ years ago but I recently moved to the valley. The first time I came across Hey Joe was last Spring when my mom was in town and we visited the Old Town Scottsdale Farmer's Market. Pancit? Lumpia? I was beyond excited when I saw the truck. Yes, I get excited about good food.\n\nEverything was fabulous. I have since tried the breakfast dish which was absolutely delicious. \n\nService is great, prices are wonderful. I will definitely be back.", "type": "review", "business_id": "1_WD7kvNQAbscw1c7CFH3A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "gIhEoQQLLUHbKbn2_TS1hg", "review_id": "o5WnqGiPo97Qf00eLGmU2Q", "stars": 1, "date": "2012-02-02", "text": "This place was the worst place to EVER live! I lived here from Aug 2010 to may 2011, i was always in the office see when the grates would be fixed?? the office always gave me the run around very rude. You would think after the gun shoots, assaults, and car break ins that they would fix the gates but nope and to this day they still aren't fixed. When we moved in they said they would be fixed in a week and they lied. Also the gym is huge but NONE of the equipment works! living here was SO gross! nothing worked our neighbors are Mexican thugs doing drug cat calling at anything that walks it was gross. I hated living here! \n\n But the worst part was a few weeks ago we get a call from collections saying we owe Scottsdale Springs $300 bucks over 10 months after moving out! I called them up like wtf, and they were SO rude said too bad pay it or your credit score will hurt, we even gave a fowarding address and we NEVER got a letter in the mail about any damages. They claim we never gave them a forwarding address which is bull. \n\nI really hope people read these reviews i would hate to see anyone else scammed by this god awful company!", "type": "review", "business_id": "TJ_wLPY8iScgJc641aQHxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "V3tKShhytJ7CflF3vqureQ", "review_id": "nfk2VvEua2c4qRdaimybrw", "stars": 5, "date": "2010-08-14", "text": "Thank you so much for the good reviews. I went here for a business meeting 8-13-2010. I ate soo much I hurt myself. Everything was great I especially loved the lamb and chicken curry. The staff was excellent and very kind. I will recommend my new favorite Indian food restaurant to everyone. ;)", "type": "review", "business_id": "NCbHGtOP5yJBJsPPaE3X5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SlRP0wlWohWkMgnVF2D2hA", "review_id": "RGWidgmFW5CtAA-Vfet2pA", "stars": 5, "date": "2011-09-06", "text": "This is seriously one of my favorite restaurants of all time. I've been many times and it's always fabulous. I LOVE their Mahi Mahi Tacos - they are so good! I also highly recommend the Pork Osco Bucco, Smoked Red Chile Pork Roast, and the Cowboy Beef Stew. The nightly specials are often very creative and delicious. This place is also good for Sunday brunch. Good bartender too - drinks are never too weak.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "nc1hZ4u65uRKG2aGOANKeg", "stars": 5, "date": "2008-05-24", "text": "This awesome park and recreation center makes me wish we lived in Peoria. We were here today for a FRAG (reef tank geeks) picnic and the whole area is new and beautiful with lots of different amenities. We saw sand volleyball courts, a spashground (with critters spouting water) for the little kids, a skate park packed with older kids, picnic ramadas, fishing areas, baseball fields, batting cages, and a duck pond. There is even a Starbuck's.\n\nWe were at the group ramada BBQ pavilion, the likes of which I have never seen before. It was a huge covered circle of about a dozen BBQ grills with ventilation hoods hanging above and a cement \"bar\" from which to serve on the outside circle and smaller cement \"tables\" behind on which to do prep work. There were also sinks in the center to wash up. Surrounding this circle of grills were corresponding ramadas with picnic tables numbered for your group. What a fantastic set up! \n\nGreat job, Peoria!", "type": "review", "business_id": "b_i5IvnPAv8Supc3p_e2Cw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XWGCBxSa_ZlDErwj6969Bw", "review_id": "FO8x2vxQeSzBbSS9zpatrQ", "stars": 4, "date": "2010-04-01", "text": "Tonight was great. I had a calzone, pepperoni and olive, Coppola Zinfandel, the wife had a pizza with nice and hot jalapenos. The staff was nice, so much that we made comments to each other about the quality.", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "PZ9FB1czAYXuxLH7eegBvQ", "review_id": "UVHO6sHyC9jFO_YD10hX9Q", "stars": 5, "date": "2011-06-30", "text": "If you like P.F. Changs, you will love Pei Wei! It's essentially the same thing in a less formal dining setting, & Take-Out! I can't tell a difference between their Orange Chicken, or the lettuce wraps minus the price tag!!!\nMy favorite dish here is the Dan-Dan Noodles! (It's Hot. Spicy, & Pure Indulgence Pleasure for under $10!!!)\n\nIf you have not heard; \"Pei Wei is not authentic Asian food!\" Well neither is Panda Express, but I'll tell you Pei Wei is better than Panda Express & most Authentic Asian restaurants in the US! \nYes I said most Authentic Asian restaurants! (NO MSG!)\n\n\"Can you believe the balls on this guy!?\"\n\nWe'll I have had Chinese food in China Towns in San Francisco, LA, NY, Vancouver & Dallas! I've even had Peking Duck in Hong Kong; don't be impressed it was not that good! I love Chinese food, but I really love Asian Fusion! Roy's, PF Changs, & Pei Wei really wet my noodle!\n\nThe other nice thing about Pei Wei is their take out! \nI have them on speed dial...\nSo when I'm on my way home from work I'll call, & as I pull in I pay, pick up, and go! It's freshly cooked & No Wait!!!", "type": "review", "business_id": "9Vu9KhK2-kBSM-FXvxXGNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CJWaJ8MfppMDGCiMXyl0pg", "review_id": "8-kxb-aC1BLteINrTrxrNw", "stars": 4, "date": "2008-12-27", "text": "The name says it all. This family owned restaurant (3 to be exact) specializes in tortas but they also carry your staple Mexican fast-food affair you would find in AZ. Everything I or anyone else has had has been solid. Just in case you don't know what a torta is, the best way I can explain what one is that it is essentially a toasted sandwich with a fusion of Mexican and American ingredients. When it comes to TEG's tortas, there are a few standouts. One would be the cochinita.\n\nCochinita which is marinated pork is absolutely delicious by itself, but in a torta, it is absolutely scrumptious!!! My best description of what cochinita is to think of pulled pork that is braised in a slightly sweet, salty, and spicy redish/orangeish sauce. In addition, it has American sandwich staples such as mayo, shredded lettuce. What makes it a \"torta\" are the slices of sweet and sour pickled jalapenos and carrots and slices of avocado (and they do not skimp). What completes the sandwich, I mean torta, is the bread. It's always warm and fluffy in the inside and the outside always has a nice crisp texture from the grill.\n \nThe other torta I would strongly recommend is the carne asada. The combination of the carne asada steak with mayo, fresh pico de gallo, and lettuce along with the warm bread makes this torta an absolute winner (my mouth is actually watering just thinking about it!).\n\nThe Cubana, which has your typical ingredients that come with any spin on the classic Cuban, is also good. If you are a big fan of Cubans, then this one may be for you. But in my humble opinion, this does not anywhere near come close to the yummy goodness of the cochinita and carne asada.\n\nThe Hawiiana (Hawaiian) is also a relative good choice. With the combination of Ham and fresh grilled pineapple along with other condiments, it also is descent selection.\n\nAs I stated before, they do have staple Arizona style Mexican fast-food here and there are a few I would recommend. One would be the flautas (large deep fried rolled tacos).\n\nThe pollo is the one I would suggest. If you envision your typical fried rolled tacos with guacamole and cheese, well this is not that, this is even better! The flautas at TEG are larger with much more stuffing then your typical rolled tacos. In addition, they make them with yummy flour tortillas, not your typical corn. The shredded chicken is well seasoned and moist. The tortilla is always fried perfectly, light crisp on the outside with the inside of the tortilla still soft.\n\nThe burritos here are good, actually better than average, but because the tortas here are the showcase, everything else takes a backseat. The rice and beans are hit and miss, especially at the Chandler location.\n\nI used to give TEG four and a half stars, but with the mistake of expanding too quickly, combined with quality and consistency falling a bit, I would have to give them three and half stars; four stars would be stretching. I'm anal so three and three quarter seems to fit.\n\nFor example, the Phoenix location, which the Son runs and where he started the chain has a few issues. For example, the Cochinita at the Phoenix location is always drier and saltier than the other two locations. In addition, they have certain items only at that location that the other two do not. One would be their Sonoran style hotdogs, which are excellent and an item I would highly recommend. When I have gone to both the Mesa and Chandler location and asked for them, and unfortunately they said they don't carry them. I was disappointed to say the least. \n\nAnother example of inconsistency is the last time I went to the Chandler location. I brought a couple of out of town guests, and I was a little disappointed because the bread was a little too bready (dense) and not light and fluffy as usual. When all the ingredients are in perfect symphony, you have one amazing torta, but when one ingredient is off such as something like the bread being too dense throws off that harmonious balance of flavors and textures. In this case, it made a difference from a four and half star sandwich to a 3 star sandwich (which is still good in my book, but not great).\n\nThe best and most consistent is their Mesa location. I think that it is because Mom and Pops run that particular location (well they used to anyways). Everything has always been consistently delici-oh-so-good.\n\nOverall, would I still recommend Tortas El Guero, and do I still go? Yes, but I wouldn't rave about the place like I once did especially with the inconsistencies I've experienced as of late.\n\nFYI. Chandler is the only one with a drive-thru.", "type": "review", "business_id": "dBMd0f09nJCHURtmGHQPIQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HR_Lxh2ycv0t745Ohiziew", "review_id": "Szd_Mqm_3Oa1mv-3mC9GLw", "stars": 5, "date": "2012-05-09", "text": "They finally just opened a Rita's location in Surprise!! I think it just opened yesterday or today, but it's just as good as the one on Union Hills and 83rd Avenue. I told my co-workers about it and we basically have been driving by during our lunch break just waiting for it to open over the past few months.\nIt's hard to explain the texture of the ice. It's thicker than the ice in a frozen margarita, yet it's not crunchy or unrefined like an Icee drink. Sonic has similar ice, but I feel like it's just not as good as Rita's. I guess that's why it's Italian ice. It's in its own category!\n\nThere are 3 main types: Gelati's (custard-ice-custard), Blendini's (custard-ice-custard with mix ins like Oreos, M&Ms, etc), and Mistos (ice-custard drink). You can also get just regular custard alone or flavored ice alone. One of their most famous ice flavors is Swedish Fish. There's also a sugar substitute version of their ice and today's sugar free ice flavor was Pineapple. I tried a Red Velvet Cake Gelati today with vanilla custard and it was nothing less than amazing!\nThe menu is a little confusing since there are so many choices. There are mainly only 2 types of custards though, vanilla and chocolate, that can be mixed with the 12 flavors of ice that consistently change. \nBefore, I was solely a fan of ice cream and yogurt. Now, I am grateful that my sister-in-law dragged me here, because there is nothing quite like it yet! Now I will always compare Italian ices to this place.", "type": "review", "business_id": "liXaSXrIXjikvdSEI2inxA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "K5owfRSgd1e7ds7-Oj3GVg", "review_id": "-6kOZZNnfdESbsfdSxNgTA", "stars": 1, "date": "2011-02-13", "text": "After several hundred professional massages over the past 20 years, I encountered today a first -- a massage therapist who explained that she could not do a massage involving any but mild pressure using her hands. It was an issue of \"protecting the thumbs.\" When I told her I didn't like forearms and elbows, she explained that she'd never worked without using her forearms (and, I assume, her elbows, too). After just five minutes, when I asked for more pressure, she suggested we stop the massage -- that she wasn't the \"therapist for [me].\" She was right. What are they teaching these people these days, and why doesn't an excellent outfit like LifeTime Fitness insist on better skills among its massage staff? I won't offer her name, but, if considering a massage at this establishment, I suggest Casie as the only therapist here worth the money.", "type": "review", "business_id": "pkAxiGlb5VIYtlSj2PM5Eg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3v992z7jD9ao-HHherEcVg", "review_id": "hZd27oTxuwk1UGagz5YqqQ", "stars": 4, "date": "2009-06-22", "text": "It had been a few years since I last gave this place a try. It hadn't blown me away as I had remembered, but I was still up to giving it another shot. I must say that this place is much better than I had remembered. I stopped in for lunch and there were several people eating in there at the time. I ordered the Luncheon Special #3 (Cashew Chicken served with an egg roll, fried wonton, fried rice, and a fortune cookie) for myself and a #1 special (Qwik special chicken which also came with all the additional stuff mentioned above) for a friend to go. Each dish was only $6.25 a piece and were both ready in about 7 minutes. I guess the Qwik part wasn't just a clever name, they actually do cook stuff up pretty fast there. I brought the food back to the office and tried my lunch. Yes, I also made sure to give my friend his lunch as well. It was a dark meat chicken, white meat can be substituted, in your typical brown sauce with veggies and cashews. However it was done well. No one ingredient dominated the dish and there wasn't a ton of sauce. The egg roll was crispy and flaky and filled with veggie goodness as well. I like the fact that they will deliver as far south as Camelback, north to Cactus, east to 60th street, and west to 96th. They are open until 9:30 pm seven days a week which is nice as well. I went back to try some of the soups and the dumplings and I have to say that while the soup was good, the dumplings may just be in the top 3 that I have had in Arizona. They don't have that \"just unfrozen\" taste that many restaurants have. I think I would have given them that fifth star had they had both scallion pancakes and noodles w/ sesame sauce on their menu, but alas they do not. I look forward to going back and trying many of their other dishes.", "type": "review", "business_id": "oOehX_l0odQc-tu81VUkIg"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "obTixVBziFCH0e-EUnAvtg", "review_id": "cAmBkhhWS3Mwq7HGUIH4GQ", "stars": 5, "date": "2011-05-16", "text": "This place has to get all five stars. Ok, the area is a little suspect I will admit; that can be countered with the excellent food and excellent prices. This is the kind of food that goes for $12 - $15/plate if it were located in an upscale area. They have done a great job with the interior and the food is really wonderful.\n\n5 Top reasons I love La Condesa:\n ~ Beautiful food. Unique flavors. \n ~ Great salsa bar: aver a dozen lovely hand made salsas; I liked them all\n ~ Price: you can spend under $7 and have a really good meal\n ~ Convelient: It is only a 2 minute drive from 24th & Camelback.\n ~ Atmosphere: the interior and the service create a great place to dine.\n\n***We eat out several times a week, and this place is now at the top of the list for my wife and I both.***", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "v_2tGk5Zv-WpthdCxPwfQA", "stars": 3, "date": "2010-11-29", "text": "Don't go to Dos for authentic Mexican food or stellar service, you'll be disappointed. Go to Dos for a fun atmosphere, good Happy hour and cheap \"bar\" food... then you'll be pleased! Dos usually hits the spot after a hot day at the baseball game or for a first stop before a night out on the town. It has all the essentials, food, ATM, toilets and a huge selection of booze!", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ai2W745a8wrLHJr7TY0FCA", "review_id": "m1wH46ROB2_P90sp0S1FDw", "stars": 5, "date": "2008-07-20", "text": "LOVE it and so close to home! Since Pita Jungle open in Glendale I have been at least once a week (Yes, really!) The hummus and garlic dip are to die for and on my last trip I tried a Greek Pita-Oh my! The fruit on the Caribbean salad and the fruit and cheese plate are amazing and the chicken combo plate is so large it's two meals!\n\nThe ambiance is slightly different than the other locations but I think that is mostly due to the fact that two sides of the restaurant are glass. Pita Jungle Glendale still features a revolving collection of art work and you can see the funky style of the other locations in the hand painted chairs and the cool artwork painted in the bathrooms. The staff is also extremely friendly.", "type": "review", "business_id": "qwmHm3s8p7J12AIY6Co8HQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DqekGNe2lrLV4UI0V5-gcA", "review_id": "8BB5C8WvDPn2DaqwEzSzVQ", "stars": 2, "date": "2012-11-20", "text": "The mojitos are good and $13. Nice atmosphere. Still not the best service for a \"5 diamond\" property. The group we were with ordered about 6 servings of nice 15 yr old scotch (straight up) which they didn't have. They replaced it with 20 yr old at twice the price totaling $270. They really should have been made aware of the price first, they WEREN'T happy.", "type": "review", "business_id": "oB-vwbo10DIjK01Zakp39A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DwU7KVfebA70AlVtX0iOWw", "review_id": "cXucNZJJxfJIzIcoPkQrgw", "stars": 4, "date": "2011-02-21", "text": "Never busy when I go there at night. Very nice staff, good solid food, you got to love Filiberto's. I just wish they had a Drive-Thru! 2 Thumbs up for being very clean and friendly.", "type": "review", "business_id": "fv2WqPvS4YfxCm6YWqrvLg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "z15pgm-EX7AThy9DR0BpKg", "review_id": "fMCj4wzgPb9zbJCY0UnM2g", "stars": 1, "date": "2011-05-15", "text": "While the menu looked promising, have no idea if the food is any good since the hostess failed to even acknowledge our presence when we walked in the door. We patiently stood there for several minutes while she walked around us to greet and seat two other parties. Since we were still unable to get her attention, we left and went to Tommy Bahama across the street.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JfezQ-BqHOE7pnW2DkhxIg", "review_id": "MEdGp-pkf6DAxAsgUXpbqg", "stars": 5, "date": "2012-05-15", "text": "Awesome food and service!", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9bfryXyHC9-hZyuibVWQlw", "review_id": "Bo4BReIExS-IRgeO3vcCMA", "stars": 5, "date": "2008-10-26", "text": "How did I not know this is right across the street from my house??\n\nI woudn't describe myself as a crafter or DIYer, but man this place has all kinds of fancy papers, from traditional to fun and contemporary! I bought these vintage anatomical papers that I plan to make posters from. The best part is that they were only $3.50!\n\nThey even sell Japanese Copic markers, take that Az art supply!", "type": "review", "business_id": "v1vi2ph9YLAXGqV2WTuN7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iwZ_7QuZ1tzT6pIZmOlDQg", "review_id": "7pmzWcmgKwl-XVyPERBWoQ", "stars": 3, "date": "2012-02-21", "text": "It was a little expensive. $65.80 for two apps, one drink, two sodas, two entrees, and one shared dessert.\n\nHighlights:\n\nThe Grilled Wings were very good. Nice and crisp, charred but not burned, and not too fatty. I could have eaten two dozen of them.\nThe Cheddar Potatoes were a hit at the table, liked by all.\nThe Creme Brulee was excellent, and about twice the size that Torched Goodness offers, for 5 cents less than TG charges.\n\nLowlights:\n\nThe hummus was just plain, and there was something else they put on top of it, something a little bitter - ?? Not sure what it was, but it was not impressive.\nThe \"half rack\" of ribs were pretty tiny for $14.95. Not a lot of meat.\nThe Flatiron Steak was also tiny, and overcooked. Not very tasty at all.\nMashed potatoes and Mac-N-Cheese were very pedestrian.\n\nAll in all, I might go back, have 2 orders of the wings app, and finish with Creme Brulee. But I won't go with the kids again, not for $75 with tip. We could have eaten 3 times at Los Taquitos for that price.", "type": "review", "business_id": "SgTjnyElc26gPUghVuCuSQ"} +{"votes": {"funny": 6, "useful": 8, "cool": 9}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "-qqrl4101KbQKIdar1lMRw", "stars": 5, "date": "2009-12-19", "text": "Cashew brittle, almond brittle, bacon brittle! Go now, before it's too late!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "i4wvVOpvemDoCVs_4UbQlQ", "review_id": "GAaNXk8R3Yhb8pSPz_eTEw", "stars": 5, "date": "2012-07-11", "text": "Delicious gourmet crepes. Friendly staff. Awesome environment. Price is right. Eat here, it's good.", "type": "review", "business_id": "vaabk6CYXX1dYVQ1xkyPUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wttePGxhTumTTUinL5tlTg", "review_id": "7mIvGqsIvQo_IIzeJa-YUg", "stars": 4, "date": "2011-08-03", "text": "One of the best lunches I've had in Phoenix.\n\nI'm still thinking about the fried egg sandwich and fries. A fried egg- yolk just barely runny. Barely. Two thick-ass slabs of good-ass, smoky-ass bacon. Arugula and aioli on a really tasty ass bun. Damn, son. Good as hell. The french fries were so damn good, too, and you have to dip those in the remoulade to really enjoy them all the way. \n\nI would come back for this sammich every day if I lived next door. Don't be afraid of it being called a fried egg sammich, because it's a whole nother level.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4YzRc68mopn4s6s8KZx7Ew", "review_id": "gFtgPCsTAfwjt89ilwPkJw", "stars": 5, "date": "2011-02-01", "text": "Upon first look Pearl does not look like my type of place. Trendy location/atmosphere often equals mediocre food. Pearl is an exception to the rule. The sushi is creative and tasty and the drink specials rock. I love that they have different flavors for edamame, cheap bombers and did I mention the fish sticks are way to good. All of that would equal four stars in my book, fifth star is given to the staff. Steve is the type of bartender that others should aspire to be like. Knowledgeable and observant without being intrusive. Always goes the extra mile, I really appreciate how he makes my husband and I feel so comfortable. Overall great value and relaxed attitude.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "UrJSPcSii2LyKViKotQ_Kw", "review_id": "hRMY71CxeLRz2zEzX8uk-A", "stars": 4, "date": "2012-10-29", "text": "Come here if you are \n\n1. a sun devil\n2. too young or too old to go to be at the breakfast club\n3. want to go to the breakfast club but are too drunk to drive, walk please.\n\nits located downtown, its crowded, its youthful, its noisy, its got decent food, creativity is decent, food taste pretty good. \n\nu go up and order and pay, they bring the food to you. the crew is energetic and would do their best to fight thru the crowd to bring your food to you, bring your sauces to you :) U get your own drink, just be careful not to run over anyone thats hungover.\n\nfor old farts like me, this is quite a nice place because it captures some of the ASU campus spirit when you are here. it kind of reminds U of the MU at lunch time (I am sure its still busy as hell now)\n\ncome here, order some coffee, eat an omelette, oh but bring a friend, so someone can watch the seats while the other go order. its very crowded and mostly first come first serve. try to limit your party to like 4 or 8 people or 12, u get the idea, the tables seat 4, so if worse come to worse, you can split up to 2-3 tables but still fit everyone in.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TVE5WWrjDfvKLU7bl3zdcw", "review_id": "TZC6MpBIRYUIwpZNsuZiTw", "stars": 5, "date": "2012-02-21", "text": "Excellent. Fresh and yummy!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 11, "useful": 5, "cool": 6}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "uNDtuggIRGIpjhstv6y9Rw", "stars": 1, "date": "2008-07-27", "text": "When I was growing up we called this the canal. In other parts of town it is still called the canal. In some places people actually fish from it. I think they die right after they eat their catch, which is why you don't see them very often. Over the years you periodically hear about dead bodies being found in the canal as well. Google it.\n\nWhat is so annoying about this is that Scottsdale, is trying to make it seem like this isn't the same heinous canal that's always been there. When I heard about the development around the Scottsdale Waterfront, I couldn't figure out what they were talking about. What water? Then I started cracking up when I found out it was the canal.\n\nCome on Scottsdale, you can put a dress and lipstick on a pig, but it is still a pig. You are not fooling anyone.", "type": "review", "business_id": "c_Hgu6zirKI2l71TAhrTRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zYacR6Qq9gHuOXhIyLEPiA", "review_id": "_X7TbFAly-QwuZUtatQ3oQ", "stars": 1, "date": "2011-03-21", "text": "Service was slow and horrible. Got the steak and eggs. Steak was half fat. Waiters response was \"Oh! We have a new supplier\". He didnt take it back and charged us any way. Eggs were cold. Stay away from this place for eating. Bar looked happening.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rKiKokChTSYQaoZAkU9kEQ", "review_id": "NjH_pEZ3nrByZ2oBq98kEA", "stars": 5, "date": "2012-01-17", "text": "This is one of my favorite bars in the area. The bar has a good vibe, the food is good, and the bartenders are attentive. The prices are reasonable so you can have a good time without digging too deeply into your pockets.", "type": "review", "business_id": "CqhsIZ7TzCfJTrZqg5-gqQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VA5zvXwaaj81_tjiQCH2mg", "review_id": "gkfxkY7FjFymM7U_hA9zag", "stars": 4, "date": "2010-06-06", "text": "This deli style restaurant has everything you want. Good service, inviting atmosphere, super clean appearance and most of all freshly prepared food that is attractive and delicious!\n\nI had the Salmon BLT. I did not even have to ask the friendly order taker to make the bacon crisp or the salmon to be slightly charred. Everything about this wonderful sandwhich was perfect. To be honest, I would switch out the the shredded iceberg lettuce for spinach leaves. Still the sandwhich was terrific with it's nice proportion and the aioli sauce to bring it all together.\n\nMy dining comanion had the spinach and sirloin salad which was also completely finished at the end of the meal. By the looks of the empty bowl it came in- it must have been really good!\n\nThere are some other items on the menu I look forward to trying out next time, like the wood fired pizzas and the burgers.\nGreat location in the heart of old town Gilbert. Galleries and other small businesses are in the same area.\n\nA great find. I will definitely go back!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4q4GBS0Uj04ZKAwHGAJzug", "review_id": "by5iKTRD77HaeH4z6Ltl-A", "stars": 3, "date": "2010-10-02", "text": "We really wanted to like Honey Bears. As far as BBQ goes, this was a perfectly average meal. My side salad was ok, corn was very good, pulled chicken was very dry and the roll it was on (got sliders) was store bought. No amount of sauce made the chicken juicier. Unfortunately the sauce had no character-was just sauce. While we are on that, flies were all around the sauce. My husbands ribs were ok but not very meaty. We are hitting all the BBQ joints in the area as we just moved here. We won't be going back here unfortunately.", "type": "review", "business_id": "wQXqj3GTHsF3AcWB3LTxMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Laas9Ip1BoMGMlli1K4XcQ", "review_id": "Ca8HxfewMlsvQ2lRcM-2Rg", "stars": 1, "date": "2011-06-22", "text": "Wow! I can't believe this place gets so many good reviews. \nI was hauled here once by co-workers looking for a cheap meal. But, how much value does your lunch dollar have when you don't even want to eat the food? Dry and sticky rice; \"white meat chicken\" unidientifiable as such, and a sweet glaze that provided the only flavor. Quite frankly, it was disgusting, and none of the dishes my co-workers had looked any better (though they seemed to be fine with them). I should know to stay away from restaurants that have pictures of their menu items on the wall. The one star is only for the fast and friendly service.", "type": "review", "business_id": "kaIue7GRCmkPzDeHDBTttQ"} +{"votes": {"funny": 5, "useful": 7, "cool": 8}, "user_id": "mWFC0NDzJh27ku3G_ILNwg", "review_id": "MSjF-293AP0XeoybtLHd9w", "stars": 3, "date": "2010-05-18", "text": "I liked the tiki theme and torch lights in the patio area. During the past few times that I came here, it was normally packed inside and I always ended up finding a seat outside. Since it was packed the last time I came, getting drinks took a while, but it wasn't too bad. Drinks were cheap and not stingy compared to CA. Music was not the typical main stream songs that you hear on the radio, which wasn't my favorite and the crowd consisted of older professionals. Definitely not a dress up type of lounge, everyone was dressed casually.", "type": "review", "business_id": "o4DsvwwD2kIbF-EM4r9G8A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "txQd0uc0WuSh3lcpxKTF8A", "stars": 4, "date": "2011-10-15", "text": "Right after I wrote my first review of this place, a groupon deal popped up that would let me try the pizza. I jumped right on it and used it today for lunch. \n\nWe came in about 3pm and it was pretty crowded. The pizza oven was going, and there were lots of people sitting around eating gelato. A lot more crowded than the last time we came in, that's for sure. We ordered lunch, I got the marinara pizza and my husband ordered the chopped salad. The wait time for our lunch was pretty minimal. A little over five minutes. My pizza came out first and it was pretty delicious. The crust was thin, with just the right amount of fluffy in the edges, and with a nice char on the bottom from the pizza oven. The sauce was tangy and had a nice array of spices in it. It was also covered in garlic and fresh basil leaves. I really enjoyed this pizza. My husbands salad was lettuce, chopped carrots, cucumbers, roasted corn, cherry tomatoes, parm, all in a very tasty vinaigrette on top of a piece of flat bread. His salad was also very delicious. Our coupon covered our whole meal plus two small scoops of gelato, but the prices of our lunches was pretty reasonable. I would come back here to eat the food again.\n\nThe gelato on the other hand, is still not my favorite. I had strawberry today and didn't finish it again. I don't know what it is about the gelato here, but I am just not crazy about it. Hence the four stars. The pizza and salads are great though. Come try those.", "type": "review", "business_id": "LHzVPddSPzMECho55zCf0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T8HM9hiSVvmBy3tJYIqBuA", "review_id": "GKLDF2kKMaIUXIUCV_bn3Q", "stars": 1, "date": "2011-11-22", "text": "This was a terrible experience. You can not reach anyone via phone, you have to book online, which I did and also requested a phone call. I rcvd no call and had an email in my email confirming a time for cleaning. I requested a call then and got a reply stating someone would call me in 15 mins. Still no call. The cleaners arrived & I had someone let them in. When I returned they were to clean the bathrooms & they were TERRIBLE TERRIBLE! The sinks were dirty, with tooth paste splatters on sink, the inside of the shower had brown marks from some sort of un rinsed product. I am so unhappy about this. I have tried to reach them every day since & have not recieved a call back from a voice mail or email. DO NOT USE THIS COMPANY THEY ARE AWEFUL!", "type": "review", "business_id": "MMMHmbfq3nxUQREU4hKOKg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q8ejru0KDzS1qcAVAD9dVQ", "review_id": "dkHPrjxQ5ZADWvVH3AhBbw", "stars": 4, "date": "2012-11-16", "text": "this place will kind of throw you off when you first step with the wall nic nacs and the display that sells body wash and toothpaste next to chop sticks and such but the food is surprisingly delicious.. my husband order the chicken curry friee rice with orange chicken and he loved it. i had the chicken and beef chop suey and was not disappointed. kudos to this joint could do with some spring cleaning and a little sprucing up but good all the same", "type": "review", "business_id": "z0xEfgr1-lDqVatrX-rf-A"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "18uXgzZnJRCfBeP3V3tKqQ", "stars": 5, "date": "2011-03-08", "text": "I had an amazing facial here! \nThe space is clean, inviting and relaxing. Park in the lot south of the building, it is less crowded. \nAfter an hour of pampering my skin was glowing! \nThey offer many of different services including laser treatments. I will be back for some more aggressive treatments to fix up my flaws (not that I have any)! \nAnyway, the staff is very professional. \nBefore or after your treatment go next door for some great Thai food!", "type": "review", "business_id": "fJ46ok6poCuLGT1O2M3xBA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "Ap5atWJUGnJ6B-XCzbZjWA", "review_id": "eAZtg2Q2EJbpURx4yUqZOw", "stars": 5, "date": "2009-01-28", "text": "Bliss, Delight, Contentment... words to describe our evening Monday night at Sens. I could go into a very fluffy review, but, with a nod to the simple zen-like restaurant, I will only address and highlight. \n\n~Spa Like atmosphere - welcomed and enjoyed.\n~Attentive, but not aggressive server...great attitude! \n~The Bar Menu I expect to see if I go to heaven. \n~Homemade infused alcohol.. finally in Phoenix! \n~Open kitchen, I was able to watch the chef CRAFT my meal. \n\nAll items served \"tapas\" style... great opportunity to try many items! \n\nFood is prepared and served to allow the diner to choose the experience... either enjoy the food natural, or enhance with dipping sauces. These are not the heavy, sticky sauces of Pei Wei fame. \n\n~Mango Spring roll.. light, fresh items in rice paper 2 rolls sliced \n\n~Soup Gyoza, 4 little light dumplings filled with pork and a delicate broth..divine! \n\n~Volcano Beef sear your own tender beef strips (5) on the hot stone, then wrap it up in a lettuce leaf with herbs and peanuts,... try a dip of the accompanying sauce...ecstasy, prepare to order 2 they're so good! \n\n~Panko Shrimp - liken to little shrimp \"hushpuppys\".. very good, but not the highlight of the evening.. Mr Chu could improve upon these in my opinion. \n\n~ Red Thai Curry - 4 unique, yummy curry / coconut milk dipped wings perched on a Asian \"slaw\" \n\n~Spicy Wontons - Americans will love these.. familiar flavors, with wonderful dipping sauces. \n\nNo-one in our party was disappointed... everyone was very pleased and anxious to return. \n\n** Personal Suggestion *** \nHave a food allergy ?? .. Use common sense when dining. Take personal responsibility and ask questions of your server BEFORE ordering.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d1zJj49Q5ikgvqQX0534RQ", "review_id": "NgYwRhl39AsTi4FExDJMHg", "stars": 4, "date": "2012-07-12", "text": "They do small engine repair here, so I took my lawn mower in. It needed some attention -- a new carburetor, spark plug, bulb, and gasket. Dropped it off in the morning and picked it up in the evening, very reasonable price.", "type": "review", "business_id": "G6EKYSP1RMbaBDlU8F72ww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Wn47EMhtvJQZTsfvvcnkJg", "review_id": "osl1TFnmplk4bxFS8AdVOw", "stars": 3, "date": "2011-03-28", "text": "Picazzos is not very big and was filling up fast by the time we left. There is indoor seating, outdoor seating and a bar area. No exciting decor. Looks just like your standard Italian eatery.\n\nThis place prides itself on it's organic and local ingredients. Which is great, but the price definitely reflects this. \n\nAccording to our server, both the regular crust and marinara sauce are 100% dairy free, so I did a create-your-own pizzza with veggies and non-dairy cheese (I believe they use Daiya).\n\nThe pizza was good, but not amazing. I like a lot of Daiya on my pizza, so when I go again I'll definitely ask for extra. Also, I ordered spinach on my pizza and I felt that the spinach wasn't fully cooked, just a little wilted. I like my spinach fully cooked because I feel that adds more flavor, but that's a personal preference.\n\nOur drinks took a while to come out, and for what we ended up paying we didn't get a heck of a lot. I'll definitely be coming back soon and see if I can't get them to veganize one of their specialty pizzas.", "type": "review", "business_id": "3jqOv6re-xPYOg7srmi7tg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "n1h87EmG_HBlp33v3X_QuA", "review_id": "JAlqyPZ7z92RLQrYfHSFqQ", "stars": 3, "date": "2007-06-28", "text": "Why review a fast food chain? For me, this particular Sonic is close to where I work. Because there aren't many options when pressed for time I'm able to walk or drive here and grab a quick bite to eat. Like most fast food chains it's about consistency, knowing what you're going to get and getting it quickly. That's what this Sonic location does well. Plus, who can pass up hot and crispy Tater Tots??\n\n3 stars because, on principle, I think that's the most any fast food place can reasonably expect.", "type": "review", "business_id": "4vz9I9b6bGEEuRGr3Ry5bA"} +{"votes": {"funny": 2, "useful": 4, "cool": 5}, "user_id": "1ylYrKcGNA8MDkhNBTjHMA", "review_id": "Q72dd5Ej9PSRntnc7WfBig", "stars": 4, "date": "2009-10-24", "text": "This is our new post-hockey game hangout. It helps that it is in the rink and that our usual server Rachel is prompt. It helps that she is cute also. We came the first time on one of it's first nights and it wasn't very busy. The manager let us play the virtual sports game. It has hockey, football, soccer, baseball, and golf. We played for free, but it is rather pricey to use. It was fun, but I don't think it would be worth using your dollars on. The bar is owned by the same people who own Overeasy in Phoenix.\n\nI have only had the Black Bean Burger so far, but I tell you what. It is f-ing good! It has tomato, lettuce, red onion, and avocado. I don't normally like avocado, but it's creaminess adds to it. It has just a little bit of spice too. It comes with fries that are good enough.\n\nThe bar itself has cool interior and has lots of TVs around the place. The booths even have their own televisions. There is a large monitor at the front with a Wii hooked up. I strained my shoulder after last weeks game bowling and playing ping pong. \n\nSo if you find yourself cheering on the Rubber Mallets, enjoying an ice skating session, or watching someone at a figure skating competition at the Alltel Ice Den, be sure to stop into 18 Degrees for a brew and a bite.", "type": "review", "business_id": "_FgyuDnyDCXmWBy03Tq8TQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "aYUKalPdxhJsa3FQJLUrNg", "stars": 3, "date": "2007-07-22", "text": "This is a great place to have a casual meal. It's obviously a pub atmosphere but it's large enough to accommodate a lot of people without it getting crowded. They also have many well placed flat screen tvs. (I just wish they would turn on the closed captioning! Its one thing if you're watching a sporting event but when they have on an analysis show I want to hear the analysis!) My husband had the beer sampler and enjoyed most of the varieties, the Raj IPA was his favorite (the 8th Street Ale and Kiltlifter are the more popular ones). We had the soft pretzel appetizer which was ok, but I'm spoiled when it comes to pretzels having lived in Philly and lived on them for my entire college career. I wish it came with a honey mustard to dip in and not just regular spicy mustard. I had the French Dip which was solid - not the best I've had but still pretty good. My husband had the Tap Room Tenderloin sandwich that he enjoyed - the onion straws and bleu cheese were a nice touch.\n\nNow this is just stupid. (Saturday, 4/13)\n \nRing ring ring. . .\n\"Hello, Four Peaks\"\n\"Hi, will you be showing the Red Sox/Yankees game?\"\n\"Yes, definitely.\"\n\"Even though it's being blacked out?\"\n\"Blacked out?\"\n\"Yeah, Fox won't be showing the game because the Diamondbacks game is on at the same time. You're getting an east coast feed? From NY or Boston?\"\n\"Feed?\"\n\"Yeah, you know, you're getting the broadcast from the Fox affiliate in NY or Boston?\"\n\". . .Um. . .we'll definitely be showing the game. . .\"\n\"Ok. . .\"\n \nDrive to Four Peaks\n\"Hello! Welcome to Four Peaks! Table for 2?\"\n\"Yeah, somewhere we can see the Sox/Yankees game.\"\n\"Oh sorry, it's being blacked out\"\n\"What?! But I called 15 minutes ago and you said you were showing it!\"\n\"No sorry, that Diamondbacks game is on at the same time so we're not getting the Sox/Yankees game\"\n\"THAT'S WHAT I SAID ON THE PHONE AND YOU SAID YOU WERE SHOWING IT!\"\n\"Oh, well do you know who you talked to?\"\n\"It wasn't you?! I don't know! Some moron who said you'd be showing the game!\"\n \nYou're not getting my business if you blatantly lie to me just to get me in the door.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qVxY6p2mvAqoCjAGQMyszQ", "review_id": "4yHWOKXlunpH8u77WZRAQQ", "stars": 1, "date": "2010-01-14", "text": "So the food at this place is good. Well the sliced turkey sud. But when it came to delivery and internet ordering. Oh my god the incompetence of these people. After and hour, 15 mins after the food was suppose to be delivered (the order was 2 turkey subs and garlic cheese bread.) I called and was told that there was no delivery guy and if i can come pick it up that they would knock off 25%. But the foods not ready yet, how long does it take to make 2 subs. So i pick up the goods and damned if i didn't check the bag they didn't give me the 2nd sub. Ugh they never checked the order. If you have online ordering you need to follow though. So with a second phone call and a second trip to the place and 2 hrs after the original order i FINALLY get home and eat. The only good thing i got was a free lunch. For that I give them a 1", "type": "review", "business_id": "AvaV8EHR0m06uiNxikJabg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "I61D8y6ae0rJdnAhK5RBhw", "stars": 4, "date": "2011-03-07", "text": "This place is so damn tasty. I love a good burger and I recommend this place highly. I don't know why I didn't give it 5 stars.. 4.5? Ok, there we go.\n\nI ordered a mushroom Swiss burger and the thing literally melted in my mouth. You have to be careful cause you could literally inhale these things in a matter of seconds. They are that good!\n\nA big plus that his place has is that they sell fried pickles. I don't know of another small place like this that does. Veddddy goood. \n\nThankfully this place is two blocks from my house, so easy access.. lol.", "type": "review", "business_id": "2e4LeI46Mo9YF24RnnJadQ"} +{"votes": {"funny": 2, "useful": 7, "cool": 5}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "BW4EXlUnFF21xbDCgb_REQ", "stars": 3, "date": "2008-11-08", "text": "Cibo is a really adorable place, but I can't say that I think it is extraordinary. The atmosphere and ambiance is totally five star, but too much goes wrong after that to give it an overall five star. \n\nFood stuff: I've been twice and both times I liked it, but it wasn't love. We got the bruscetta plate and I wasn't really thrilled. The traditional tomato one was the most solid choice, the bean one was strange and soggy and I don't eat pig so I can't comment on the third one (though everyone else seemed to enjoy it). The pizzas are pretty decent except that they lay out the toppings in a weird way, for example, if you order the vegetarian rosa pizza, if you like zucchini, it is all chopped up on two slices and so on. It doesn't really make sense to top a pizza in such a way, to me. I prefer draft beer over bottled beer, and all they offer is bottled. I did enjoy a couple glasses of the Rossi Cabernet Sauvignon which was a solid wine choice.\n\nService: The host/ess was a pleasant person, and the time quoted was less than we actually had to wait so that rocked. While waiting, we attempted to get a drink. The bartender was cool about getting our drinks in a timely manner despite the fact that it was busy. Our actual server was super attentive at first and then lost for a good chunk of time as well. Too hit or miss. \n\nCibo is an adorable spot with awesome ambiance but it isn't quite that awesome when it comes to food and service.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "55RWJtlz_5NBl69UbT5U-A", "review_id": "DBGg_mzoTi89VSqKE4MhiA", "stars": 5, "date": "2012-04-15", "text": "I love their beef sandwiches and thin crust pizza. It is just like being back in Chicago. Love it!", "type": "review", "business_id": "OXwKBaV74IM_VduC5OWV1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YMsY5ZZQ5bmTp-c6fkPjmA", "review_id": "j9c_Jcq6fY7kYK_x-bm5ow", "stars": 4, "date": "2011-03-08", "text": "In from out of town ..... Really glad we stopped here.... Excellent food nice atmosphere if I was planning to be in AZ more often I would bookmark this place.", "type": "review", "business_id": "PlcCjELzSI3SqX7mPF5cCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "lX4JnDlOi2bWWWhQVD_Stw", "stars": 4, "date": "2007-02-06", "text": "I think Macaroni Grill is a great place to take the fam, little ones included. It's not so much a romantic date spot, but it's still a fun, lively place to have some good Italian food. \n\nFor apps, they have a really good spinach and artichoke dip as well as some tasty mushroom raviolis.\n\nFor lunch and dinner, they have tons of pasta, pizza, sandwiches and soups to choose from as well as a pretty good wine and beverage list.\n\nThe kiddie menu isn't bad either and if I remember right, they give kids placemats to color on or something along those lines.\n\nIf you go, promise me you will try the dessert ravioli! Yum yum yum!", "type": "review", "business_id": "GlfwqH2dY3MKxrRirKeueg"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "zJlzNkIngaIV_crtUKdykQ", "review_id": "z5DWuWiYaZYmzI0T-bi0eg", "stars": 2, "date": "2011-08-19", "text": "This is tough, because I REALLY wanted to like this place! What killed it for me? The lack of professionalism that was presented when my fiance and I came to look at this venue. I will admit that we were 10 minutes late to our appointment, however I do not think this warrants being treated like a herd of cattle.\n\nFirst when I called the venue to make an appointment whoever picked up the line sounded as if they were in a rush and not even interested in making the appointment which was the first turn off. Upon arrival, we walked into another entrance thinking it was the main entrance, then we were re-directed by an employee to the adjacent door. As we walked out there was (I don't even remember her name), the wedding coordinator waiting. She quickly greeted us then had us sit down as she began to talk about the venue. \n\nUsually when you want to sell the venue you run, you'd think you would see someone with a little enthusiasm and fire explaining why their venue is so amazing. Well, we didn't get that from this individual. What did we get? A quick 10 minute spiel about what they do and the services provided and 3 wedding books shoved in our faces as examples then a quick 10 minute tour of the place. That's it, no effort, no emotion, no interest in wanting to get to 'know us' and get a feel for what kind of wedding we would like to have, just a quick, here is the place, goodbye. She was very snooty and acted as if she was not in the mood to showcase the venue.\n\nSo why two stars instead of zero? One star is for the venue itself. It is very chic, modern, yet elegant. The reception area is beautifully decorated and where the ceremony is held is beautiful as well! There are many ways one can decorate this place! The other star is the PRICE. This venue offers all inclusive packages at unbeatable prices. I mean an all inclusive package where they provide virtually everything for roughly 100 guests is $9495.00 taxes and gratuity included!!! That's a steal, trust me, I've looked into a TON of venues, you will not find an all inclusive price as cheap as this. \n\nHonestly, if my fiance and I were the only individuals funding our wedding, then we probably would have considered this place (more than likely, VEGAS). However, given the type of customer service that was displayed, we took our business elsewhere.", "type": "review", "business_id": "cTirJGp4NdxpbjzBovs8Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "N2sImKomBF0sMzqJkzS2TA", "stars": 3, "date": "2008-04-26", "text": "The food is moderately priced and good, but the drinks are outrageously Scottsdale expensive. I'll admit that they key lime martini was very delicious. The Hell's Fire chips and Asian shrimp were perfect, and I would definitely recommend the food. The lighting, more like a glow than a light, was quite awesome. Service was pretty slow but professional. The dj was great! No one was wearing jeans, but there was a mixed crowd of some people in their 40's and many in their late 20's or early 30's.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ToIcMshsBV7T63EAq59Sog", "review_id": "dBMYtMMYNLbD8ZYO61P6VQ", "stars": 5, "date": "2010-05-27", "text": "Zin, zin, zin - Yes, yes, yes!\nSeveral weeks ago five of us had a wonderful Monday evening at Zinburger with our delightful server, Candace. I arrived early, inquiring about the Left handed Polestar Pilsner, Candace offered a sample, very tasty - with three of my party eventually having it with dinner. \nWe had a great booth - giving us a vantage point, watching the parade of customers & employees. I really like the airy, roomy, high energy vibe.\nWith our drinks we had the delicious zucchini fires with two sauces an\na subtle breading on the zucchini.\nWe all tried different burgers, with some of us tasting each others, Candace made the split arrangements prior to serving us - nice touch. The meat is flavorful, melting in your mouth with a freshly baked bun.\nFun, cool atmosphere & great food - made for a great get away, early in the week.\nMy hats off to the Sam Fox team, another winner at ZinBurger.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4-HMi76m6TpJrZ0G-xL1CA", "review_id": "kDnLIrb1EFeX8txcDFDT3Q", "stars": 5, "date": "2012-05-08", "text": "Visited the restaurant tonight and was very pleased. I found the decor charming and elegant. The atmosphere is amazing sans the hustle and bustle of most of the local chain like restaurants. The place was devoid of the stereotypical Scottsdale element we prefer to avoid. I found the prices easily justifiable in fact I though them quite reasonable. We had the three onion tart appetizer, which was spectacular. For entrees we had salmon, filet, and a pair of lamb shanks. Everything was wonderful. The presentation was clean and the freshness and quality of the proteins, produce and accoutrement's was immediately evident. Everything was cooked skillfully. Had three of the four desserts on the menu. The chocolate raspberry tart definitely stood out followed closely by the berry tart. Delicately prepared and presented these were really an unexpected treat. The environment is wonderful for Dining and chatting with people you actually like. The interior is intimate and it lends itself well to the cuisine. I found the staff courteous, knowledgeable and professional. We will be frequenting often and I encourage others to visit.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZUx-B52hGRhmeUDVukmjrg", "review_id": "PbGQFM-Y4kSbu5l2qllUTA", "stars": 3, "date": "2012-07-23", "text": "This place is a hoot! A friend wanted to go to a movie that had been out for a while and it turned out that it was only still playing at this theater and one other. \n\nThis is typically a $3 theater, we happened to go on a Tuesday and it turns out they have $2 Tuesday so it was even cheaper. You definitely get what you pay for...this theater has been around for a while but it's a great deal compared to the average movie gong cost. The concessions are also reasonable cost. Not the most comfortable seats in the world but you get what you pay for.\n\nThe reason this place is a hoot? There are crazy decorations, life size figurines, games, etc, everywhere. I am sure I only really saw about a third of the decorations because it is just sensory overload. I hear they really deck it out at Christmas.\n\nSo if you are looking for an affordable movie night and don't mind the seats from 20+ years ago this is a good option.", "type": "review", "business_id": "gfhO1Q1c7QCigu7waVpeSg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zlprnJhxUBgAYorZ_ZGyqg", "review_id": "J_IZEMQ-ZCxelJcL-8fVTQ", "stars": 4, "date": "2009-06-09", "text": "I ate so many samples, I downsized my order! Some selections are a little too sweet for me, but others--giarduia, vanilla, pistachio, that dark chocolate stuff--are really good! We rode our bikes there at night. Made up for the calories. You've gotta have a little wholesome, yummy sweetness in life now and then. OK, it's not Anderson's Frozen Custard, but it's fine for Chandler.", "type": "review", "business_id": "r_0k2yqAo1Z4tg_IgXr7Jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cHoC_bpAfmsgdRhe04A3lw", "review_id": "eVct1WGgYVRPPewEsOir3A", "stars": 5, "date": "2011-01-06", "text": "This place has amazing pizza and great service. I've been 3 times and have not been disappointed. We've come for mostly group events such as bdays and going away parties, and you can do family style and share or get individual portions. Bruschetta and breadsticks are great starters, and I love the signature spinach pizza. Our waitress suggested getting it crispy to avoid getting soggy spinach and I'm glad I took the suggestion! Coworkers got Chicago style calzone with au jus and raved about it. Since there was a bday they comped a canoli and gave us an extra one for being cool :) pitchers are also half off on Thursday's so 7 bucks for 4+ glasses worth of fat tire made us all extremely happy!", "type": "review", "business_id": "PZv6SPORD9ivj4jwKvGgjQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "QK1UbfpA1VSjnxNSgyWb0g", "review_id": "L8hufI699HT9ZgbbLR1sYA", "stars": 1, "date": "2010-06-18", "text": "The staff of this \"establishment\" are some of the rudest, most condescending individuals I have ever met in my life. They will not give you ANY money, and you will have much better luck at Sunset Clothing Exchange, which is right up the street (Plus they actually have friendly staff). The people who are buying the clothes should not be buyers; judging from the way that they style themselves, they know nothing about fashion whatsoever. Everyone who has stated that you will not get any money from them for designer items is right... they would much rather have trite, \"trendy\" studded vests from Target than a pair of Miu Miu sunglasses.\n\nI was there about a year ago, and one of their young female employees was laughing, snarking and making faces at me. I had no idea who she was. It got to the point where my friend actually pulled her aside and said something. Today, their manager called me something that I can't even print on here. I had never seen him in my life, either. I have never done anything to these people except for sell my clothes to them.\n\nAvoid this place at all cost, they should change the name to Juggalo Exchange.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "iBn8GUVgKHPQ42lIkSk5Aw", "review_id": "45GHPeibqVByT74CGH560Q", "stars": 5, "date": "2008-07-11", "text": "Simply the best Ethiopian I've ever had. Grew up in VA with DC as my stompin grounds (home of a large Ethiopian population) and even had a good amount of Ethiopian home-cooked meals by friends and none was as good as this place. \n\nI go to AZ once a year for work and each time I am sure to stop in. I usually get the veggie or meat-lovers meals since they tend to be such a good bargain, but have also ordered separate items as well. \n\nThe vibe is casual and the service is excellent. The staff have always been very friendly --- another reason I keep going back.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "CJkY0WOCNfCuv0HAbB2cjw", "review_id": "tjqfVRjQ9kE1p_JykZXlqA", "stars": 3, "date": "2008-01-06", "text": "I'm somewhere in between three and four stars. And, I know there are Yelp \"Talk\" events taking place right this very second as I sit to type my review, and it is for this reason I appreciate what anonymity I have so I won't be egged as I walk out my door in the morning. And, it is possible that I expected something earth shattering within the vicinity of so much greatness (read: Pizzeria Bianco)\n\nFirst of all - I had to approach the bar for service, refills and a check. Granted there was one guy running the place at 3:30 in the afternoon, but my friends and I were three of five people at the entire property. They weren't busy. \n\nWe sat out on the patio and watched all the folks across the walkway start to congregate outside Pizzeria Bianco in the rain. It was an unbelievable an hour and a half prior to opening, they have at least two seatings of Guests waiting in the rain - I swear there's got to be something addictive in that crust. I love Bianco, I do, but I am also (sometimes) very logical. Show up at 5 p.m., go find a great patio table at the Rose and Crown, or Bar Bianco and have some wine for a couple of hours prior to dinner - don't stand in the rain for an hour and a half!\n\nBut, I digress...we're discussing the Rose and the Crown. Okay. Cute, compartmentalized rooms, yes. Homey feel, yes. Good selection of beer, yes. Good wine, no. Well made cocktails, yes. Menu, eh, okay. Service, eh, poor to okay. Patio seats, rocking good! The trees changing colors, yellow leaves everywhere, perfect. People watching, phenomenal. Fish and Chips, pretty good. The friends I shared the experience with, too good to be true!", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "phcbQqoiRrjld9hoFUzU9Q", "review_id": "cYY46r2RQfXaVilTb57QwQ", "stars": 3, "date": "2011-10-09", "text": "Very run-of-the-mill, solid, nothing-exciting-or-surprising type of place. It's the kind of restaurant that's not your first choice, but when all your other options are closed, or too far, or too crowded, you come to Village Tavern and you end up not being disappointed.\n\nI was there today and had the $3 mimosas with the crab-cakes benedict. The potatoes that accompany the eggs are way too mealy, but the eggs themselves and the sauce are spot-on. Wished the crab-cake had a bit more flavor.\n\nBread service is by request only, which I really like.\n\nOur hostess and our server were polite and efficient. \n\nOverall, a good place to bring mom and dad to on a lazy Sunday afternoon.", "type": "review", "business_id": "2JZv-P1lDKOPKvefQlYDEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uvx_mL5S4MlOf2Oq5owltg", "review_id": "DQqvAXdREMvT9ghVXwSobg", "stars": 5, "date": "2012-06-15", "text": "Very impressed! $5 pitcher until 5pm, and excellent healthy food at a good value. Free valet parking. I look forward to coming back.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w1R5lmPnximZas0T2DBH1A", "review_id": "pAKqvizzCjpfj8OXOL64UQ", "stars": 5, "date": "2011-01-31", "text": "This is what I've come to expect from Waffle House. Great food with excellent customer service. My new home store since the one two blocks from my house is run by a cranky, sarcastic non-clean district manager (Kyle I was told is his name)", "type": "review", "business_id": "nY2QBNMEfT3j68j-DHOGyg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l_gYq9wGIHzihot_AmqeIQ", "review_id": "Ss_xpXlEBJCfJvcVAQXGvw", "stars": 4, "date": "2011-03-01", "text": "I've been twice now. When it first opened and then went a long time before going back. I was impressed both times.\nThey're busy but not too busy that you can't get a table. \nThis las time was for lunch. We sat outside by the fireplace. That made for nice ambiance cause it was a bit nippy outside. \nThe server was pleasant and attentive. The food was so, so good. We had 2 cheeses for an appetizer and split a large salad. It was plenty of food for 2 and only spen $20.00.\nThe salad was not just \"a salad\". It was special :) Roasted sweetened pecans, chicken, PEARS!!! It was delish.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "SGJwQVGj3oKvVZuEjWmMww", "stars": 3, "date": "2010-09-22", "text": "The ever evolving menu changes again, But a coupon made it a decent buy.\n\nI will admit my co workers 2 for 1 coupon is why we went in. This means ~3.25 per burrito vs the usual $6 range.\n\nWhat I didn't like was that my vegetarian burrito did not have vegetables in it, it was just a bean and rice burrito with guacamole. I don't know how one gets the grilled veggies in their burrito but it is not by ordering a vegetarian burrito.\n\nThe drink and napkin station here has always been a bottleneck, getting a refill or more napkins is nearly impossible.\n\nI do like the fact there there is Choula sauce in addition to the red and green tobascos. And I also like that the chairs are not nearly as bad as those at chipotle.\n\nThe best tip this time is get in before 12, otherwise be prepared for a long long line.", "type": "review", "business_id": "WPSM_oTPceoSnwqQWfAsdg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "Lp_Ykqfbv5Q-oyGYlMGJRg", "review_id": "x7azs1q-sKDK1oneUgc30Q", "stars": 5, "date": "2009-09-08", "text": "This place is absolute perfection. From the setting to the service to the food, I loved every moment of it. The only way I found out about this place was through Yelp. You seriously are my trusty sidekick. From the previous reviews I was a little worried that it might be packed, but then I remembered it was a Monday night so no worries.\nWalking in the restaurant, it is quite small, but just absolutely adorable. It really does feel like an upscale country home. Wood lines the whole restaurant and they have mini chandeliers hanging over every table. Even the touches of place setting are just perfect.\nOur server was Gina and she was a complete sweetheart. We started off with the Bohemian Sidecar and the Cucumber Vesper. Both were absolutely delightful! Then we moved on to appetizers, because while getting drunk is fun, I was really excited for the food. We had the steak tartare and mussels in the saffron and white wine sauce. I loved the steak tartare with the potato chips and fried egg on top. Put fried egg on top of anything and I'm sold. Put fried egg on top of raw steak and I'm in love! The mussels came out just as we were finishing up the steak tartare, perfect timing! The mussels were equally amazing if not more, and I am so sad that they only give one piece of bread! Well that, along with the bread and butter. But that still wasn't enough for me! I wanted to soak up all of that saffron sauce goodness!\nAfter Gina cleared that out of our way, she brought out the glass of Bordeaux and Rhone blend. I hate when I don't have a drink in front of me, and she made sure that never happened. Then the entrees came. The pork shoulder with the bacon for my bf, and the stuffed chicken with the pome puree and mushrooms for me. Again, absolute perfection on both accounts! I loved the mushrooms that were slightly charred and crispy, with the sauce and the puree and the chicken with goat cheese. I'm getting hungry again just writing about it. My bf loved his, but I still maintain that mine was better. And both of these entrees were incredibly reasonably priced at $15 and $17. Could life get any better?\nWell apparently it could! After we polished off our entrees, then came dessert and after dinner drinks! We had the souffle which was amazing with the creme anglaise. And the berries with the creme fraiche. Heaven in my mouth! We finished that off with the chocolate martini and the pear tini.\nThis review cannot do this place justice. This is truly a unique experience that is far above any of the restaurants in Scottsdale. Please go in and experience this for yourself, you will not be disappointed!", "type": "review", "business_id": "no_FXjscklz1SEzM_XnVgw"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "et-pH8B6AF7Suj1PDwbt3Q", "stars": 5, "date": "2012-08-14", "text": "Amazing work!\n\nMy dentist referred me to this place just down the street from her. I was super scared, as I always am at the dentist, but the staff made me feel very comfortable. They treated me like a patient at the hospital. They were my angel nurses. \n\nWhen Dr Amin came in, the \"nurse\" was holding my hand and telling me when to breathe. I was, of course, shaking like a leaf. The Dr \"popped\" me three times in the cheek, and I was all numb. When I say \"popped\", I mean it was an electric shock wave pop flowing through my face to my freaking eyeball that made me tear up a little. (this was done by the needle of course going into my cheek) It was the craziest feeling, but relieving at the same time. I just breathed through it, and it helped. After about a min, the Dr was working his magic. In about 45 mins, he was all done, and I had like 4 canals. And I didn't feel a thing!! :)\n\nI was very pleased with the staff, Dr Amin, and the work they did. I highly recommend this place if you need a root canal done. Plus if you're a scardy cat like me, this place makes you feel comfortable.", "type": "review", "business_id": "3M_I_L68pt68TgZ7k7RXjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "baqx7ZJ3GHt47I6dnLmPrA", "review_id": "lkM2gpP8VBl10wmpPeE7pQ", "stars": 5, "date": "2010-03-05", "text": "Just off University, but manages to feel like a little hide-away, and pulls off an enticing mellow atmosphere, suitable for intimate conversation.\n\nFish Tacos and a Margarita again please! How many times before I can force myself to experiment?", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "CCHwJoIWLRhxqIcwRJW6ag", "review_id": "se1d6FOlldXb1LpZw15GTg", "stars": 4, "date": "2010-05-19", "text": "-Biggest Joann's store\n\n-Great fabric selection\n\n-Clean store, good layout (different from other Joann stores)\n\n-Convenient location (parking is not too bad).\n\n-Employees are friendly.\n\n-Restrooms are blah and smell.", "type": "review", "business_id": "KJr8lTqqStOpFzT8XD97gQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "npkwGaYHQIFj_pl_qjnX6w", "review_id": "pDJ8M2pM3F5OgjAZSkD8Dw", "stars": 4, "date": "2010-07-05", "text": "One of my fave spots when I'm hitting up the late night in Scottsdale. And yes, the Old Town location is SO much better than the one in North Scottsdale. \n\nGet there early for 2-for-1 martinis - they have a ton to choose from, if you're a frilly martini drinker - but also make a mean dirty martini with olives, which is my own personal indulgence. \n\nMultiple rooms for multiple scenes - a dance floor, a more chill bar room and an outdoor loungey space - so whatever you're looking for you can find it here. Just make sure you've got cab cash to get home - three of these martinis can definitely get the best of you!", "type": "review", "business_id": "7xbTnoyaai4JTkZ8rFPQTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iLQzLLo9q_Zx6FpgmVgA-w", "review_id": "HqlAA6nGo6dVrlNpLC9Vng", "stars": 3, "date": "2011-07-25", "text": "This place is cute, affordable, clean, and tasty. I would recommend this place for a quick lunch since the service is fairly quick and has a simple menu. Or you can bring your date here for a cute dinner date. The place is a fairly quiet place, and the lighting is very nice.", "type": "review", "business_id": "3N__CAwM5VZOhRKmxMtImw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "08fQ03TquEkERny-5YcYCg", "review_id": "KgaUQGbIB6kJWmY8YXHCYQ", "stars": 4, "date": "2008-07-05", "text": "This is a nice asian take-out style restaurant (you can order and sit down too). The portions are pretty big, and they have a good selection. WAAAAAAY better than Pei Wei which is in the same shopping center. \n\nThe only downside is their breading is a little heavy, but other than that I have enjoyed everything I have tried there.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qz_WQ6blpBBSaEwsofbB_w", "review_id": "17uNXHilhHcuHlYIpLIBaA", "stars": 4, "date": "2012-03-16", "text": "My sister in law and her fiance took us to Jimmy Johns after discovering it. The location is really convenient to us, which is great.\n\nI enjoyed my sandwich. The branding is a little intense. EVERYTHING, right down to the chips, is branded with the Jimmy John's logo. It's all good but it's a little crazy.\n\nThe sandwiches are big and the cookies they sell by the register are huge! Prices don't seem too bad either. A nice sandwich stop.", "type": "review", "business_id": "boxO5rTwArJqyjOQyBYxcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "EAJjMgKIjiaVb_2Q9ROeCQ", "review_id": "3r2JNzbUylH8-LTfaQe_bw", "stars": 4, "date": "2010-03-23", "text": "Finally Biltmore gets a sushi place after the departure of Ayako! Well if you have been to Stingray in Old Town Scottsdale, this is same menu, etc. But I happened to like the atmosphere at this location better!\nCame here for a happy hour, had a drink called the Tokyo Tease(delish!) and since I love sashimi sushi (which isn`t on the happy hour menu, no big deal), ordered my sashimi combo, which didn`t disappoint!! Included tuna, salmon and yellowtail. Did enjoy the bevy of assorted rolls that went by. I like the outside/inside seating bar- great on beautiful weather days! I will be back for more!!", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UClt23BswTNFAfs-_yq0BQ", "review_id": "QVnQR2FQ26qUpd2EBKKeww", "stars": 5, "date": "2008-07-26", "text": "This place is great! Just opened up on central just south of camelback on the west side of the road. \n...AMAZING gelato and the coffee is just what I need! Family owned, really friendly staff, free wifi, flat screen tvs,....also just saw a flier for a monday movie night...I guess they are gonna have double features on mondays...even made a specialty drink for the night....sounds like fun!\n\n...cool little spot, dont hesitate to check this place out!", "type": "review", "business_id": "zsApK-QhjBm2mTqq4VWYPQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "7WO1DSyx-0FP0cBkaCISAA", "review_id": "AU1oha0Z1rAYNZzF8RtLeQ", "stars": 5, "date": "2008-12-26", "text": "Really? Because it doesn't get any better than this. For what it is and for what it's worth this place is truly unique. A slight step up from a hole in the wall type of place, this quaint spot serves up good, tasty, and satisfying food hot from the kitchen.\n\nWhat is a pasty?\n\nA pasty's history can be associated with the tin miners in England. The story goes that these miners were covered head to toe in dust and other nasty stuff and would eat these calzone like dishes as a means to have nourishment without the need to return to the surface. Supposedly, the miners were able to eat the pastry like food by holding onto the \"handles\" and when done, discard the tainted remains into the mine thereby appeasing the spirits that haunted the mines.\n\nAt the Cornish Pasty Co. I can first hand recommend the Chicken Pesto. Very good flavoring and filling. Or you can go with the more traditional route with beef, potatoes, and swede. The sauces that come with your pasty are there to accent the flavors and are highly recommend to try as well.\n\nPros\n* Good food\n* Originality\n* Portions\n* Customer service\n* Coat hooks at the bar\n\nCons\n* Small interior", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "pVotArwt147sjzy8hww66A", "stars": 5, "date": "2007-07-13", "text": "Coming from a French family on my mom's side it is ingrained in my genes to love cooking, food, and shops like Sur La Table...oh and also wine and cheese...what a tough life I live!\n\nSur La Table is a classy cooking shop which offers high end cooking ware, appliances, and also dishes. Somethings in the store can be pricey, but you can also find good deals as well. They offer many cooking things you wouldn't find at your average Crate and Barrel for more complicated cooking endeavors. I have also found some cute cookie cutters here for my mom's collection. The staff was all very helpful and knowledgeable. and many Sur La Table's now offer cooking classes!", "type": "review", "business_id": "eXSkr4GNwFkKJF0gNnqO7Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "d1AMVlPkP3iMIgRS0l0dMQ", "stars": 4, "date": "2009-10-25", "text": "Most of my excitement and \"love\" of this place has more to do with what it represents -- not what it is right at this second, but I fully expect that to get better. TFM representing a place in Central Tempe to get basic groceries (all the better that they're local and organic!) without needing access to a car. \nWhen I looked up the location, I felt heartsick at the thought that this is right across the street from where the Co-Op used to be. What's there now? An empty dirt lot. The Co-Op was driven out by an over zealous real estate company that, in the boom of condo building, bought the location, driving Co-Op to another spot where it eventually failed. Know what else failed? That condo endeavor. Now, a few years later, we have this budding marketplace with a lot to live up to.\nMy first trip in, I didn't have anything particular I needed, I just wanted to check things out (though I was making enchiladas later that day, so had a few items I was on the look-out for). \nIt's pretty small right now, and in the former building of Jake's Shop, which is also another Tempe staple now gone. But it had the basics such as milk, peanut butter, a small selection of produce -- local, of course -- cheese and even some gift-type items for sale in the back. \nI picked up some green onions (99 cents for a bunch) and red peppers ($1.29/ea), and thought those prices were exact with a chain grocery. And bread - this is my favorite part of the store! A big selection of sliced wheats and grains, and rolls and longer Ciabatta styles too. And the favorite of my favorite? Fresh \"Made this morning!\" tortillas! They looked delicious, and were HUGE. The size of a large pizza, they came in flavored varieties for making yummy wraps.\nWhen I checked out ($5 minimum for credit card purchases, and a sign said \"EBT coming soon\"), I was offered another red pepper from a basket by the register because this small batch was about to go bad. So instead of letting them and then throwing them away, they *give* them away with each purchase - wonderful! \nOh, and I was surprised and pleased to see a small corner of the store set up with a couple small tables and a couch, all within view of a large flat screen playing Alice in Wonderland. Sure enough, a kid sat there, out of the way and quiet, while is parents shopped. Both parents and the childless thank the owners for THAT kid haven, I'm sure.\nI really look forward to coming in again and again and watching this place grow and thrive.\n\np.s. I highly recommend becoming a fan of their FB page, so you can get daily info about what they just got in, specials, new additions, etc.", "type": "review", "business_id": "6yuY73ycyyPiIG3zWkXqPQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "s9P8JRH74CzfFSjJkEfNtg", "review_id": "t1uMbzK-n1Pm7vvoRH_3Zg", "stars": 3, "date": "2010-01-31", "text": "Why do people love this place? MommaKat insisted on snacking here after a hard day of shopping, and I am not impressed. AT ALL.\n\nI had to coerce the boy behind the counter to make a salad my way, not the normal recipe. It was like pulling teeth.. no seriously, no cheese. and I want this dressing not that dressing. \n\nWe stood in line for over 20 minutes at 4pm on a Saturday. There were 2 couples in front of us. LAME.\n\nThere were no forks, and the cashier forgot to give me my brownie, and i thought he was going to have a conniption when I asked twice.\n\nBathrooms were very nice and clean though. Outdoor seating is very limited. \n\nLame excuse for a panera-", "type": "review", "business_id": "ix0DXMpqXzT1JBDfeYuvEA"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "ddQXjoXAb7k1aQ6RmC5A2g", "stars": 4, "date": "2008-07-21", "text": "For those who gave this place low marks, forgive me. I really like this place. Now I haven't tried various dim sum places so I'm reserving the right to downgrade the place as needed. The variety of food is plentiful, and the carts just keep on coming. I love the steamed pork buns, and the shiu mai (not sure if I spelled that correctly). Yesterday, my favorite pick was the deep fried rolls of taro and shrimp. YUM! I have never ordered from their menu so I can only talk about their dim sum. My friends and I try to go eat dim sum almost every Sunday. It's a cheap way to try new foods, and if you don't like it, well.. you can get away with pushing it aside with minimal guilt. Give it a try! You might be surprised.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "PINoAXjJQpl3yobdDzy0Vg", "stars": 3, "date": "2011-06-16", "text": "Today I went in for lunch and it seems the quality actually has gone down a bit it is still good pizza but the salad was a bit smaller and pizza just didn't have the same flavor. You don't get that wood fired smoke taste which you would crave at a wood fired place. I'll go back maybe today was a bad day as usually I like this place a lot.", "type": "review", "business_id": "v6zRA0WqOODJjmpvstrpGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "a4LJJU26cSE7k12-0sEw0Q", "review_id": "rXKpkODuqrS6h9fUBseezQ", "stars": 5, "date": "2011-07-06", "text": "These guys have the tacos and nachos thing figured out. Great decor and hot, hot waitresses. \n\nWe had lunch and it was pretty quiet. Good service. I'm sure things get crazy at night, though!", "type": "review", "business_id": "qiFTZ7aJz-FXt1wz8YigAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rKMJaCa-hUjeZDXEa6rKMg", "review_id": "PZ2PuMGQaJl8bGA_IAGPsA", "stars": 4, "date": "2012-09-06", "text": "Grilled tofu sandwich was pretty good. Quiant little cafe with a lot of vegetarian options. :)", "type": "review", "business_id": "GbEOmf5k73r_UJWjchrHOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FcRfAHSQkWZNcc6tpuhoFg", "review_id": "y1953NJN-bDDbfTA9HYdIw", "stars": 5, "date": "2011-02-06", "text": "Truly a hiden gem in Chandler. Located south of Chandler Boulevard, just off of Roosevelt (next to Archery HeadQuarters). Wanda's is a small yet quaint, twelve tables inside and 5 outside. Outside is for sure seasonal, as summers are too hot and dead of winter can be too cold. Wait times on a Sunday or Saturday can be 10-15 minutes during the \"rush times\", which is a quarter the wait time you would experiece at the near-by chains. The menu offers a variety to satisfy and hunger (except if you want lunch on weekends, it's breakfast all day, lunch from 11-2 during the week). The burritos are awesome. Ladies, I guarantee you will take half home! My husband likes the Biscuits and Gravy. The bacon is amazing and addicting often I have to smack my families hands away from grooping a piece. French toast, cinnamon raisin french toast and pancakes if you brought your sweet tooth =) Build your omeltes are good too (tip, add a side of salsa, you won't be sorry, it is made fresh daily and goes perfect with a ham and cheese omelete). Service is exceptionally friendly, a lot of regulars and the servers know what you usually drink and sometimes can have your order written unless you throw a curve ball and veer from your usual. \nA+ Wanda!", "type": "review", "business_id": "bEQjf7c-9qkNWgXvriSGZw"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "rkgPZ6z27v0DxYMZo5haKg", "review_id": "UKYgzyt7npM2N0M15580Jg", "stars": 5, "date": "2010-01-09", "text": "I have been coming here since discovering them after their opening week last year and I haven't stopped coming back. The food is predominantly Filipino; the Filipino-Mexican fusion comes in the burritos, flautas and quesadillas filled with Filipino meat dishes. A great starter would be the Chicken Adobo burrito. Karey's does it right by not dumping rice and fillings inside the burrito; they're served on the side. \n\nFor those more interested in rice plates and combinations, Karey's serves daily prepared dishes such as Pork Adobo and Chicken Adobo (pork or chicken simmered in garlic and soy vinaigrette) and Beef Mechado (a type of stew with beef chunks, potatoes, and onions in a light tomato gravy) with either white rice or Garlic Fried Rice (yummy). There are also specials that rotate each day, which can be checked out on their Twitter account. This is a great idea as one can find out when they are serving Lechon (roasted pig)! Yum!\n\nThere are dishes that can be prepared fresh but are not part of the combination specials. The ones I've tried that I highly recommend are their Lumpia (fried eggrolls in chicken, beef, or vegetable) and Pancit Canton (stir-fried noodles with vegetables). The pork lumpia was great when they used to serve it, and I preferred it to the beef lumpia that they serve now...but it's still good ;)\n\nNot only is the food delicious but the warmth of the staff is something to always look forward to. Karen and Rey make you feel truly at home. The best thing about Karey's Kitchen is having a Filipino restaurant in Phoenix and not having to drive all the way to the East or West Valley!", "type": "review", "business_id": "sZAzeccYUVPjlkrlMooV-g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "p1FB2z28hWKYU5dCJJQpIQ", "review_id": "I_MAX3SfLIGoMF4__-mMKw", "stars": 4, "date": "2012-12-18", "text": "Check engine light came on in Wikieup late on Friday night. One of my family members has had work done here before and recommended them. They got me in on short notice and stayed late to finish the job. Was reasonably priced too.", "type": "review", "business_id": "qwhBg6QpRgL6GgdMB8wpjQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "SFh6DmbyGGCbHrsVTd-kLA", "stars": 3, "date": "2008-11-10", "text": "I love supporting such local businesses in my neighborhood- and you should too! If I worked in the area, it would be in my lunch rotation.\n\nThe customer service here rocks- it appears as if they actually care if you enjoy the food you have ordered. I appreciate this and think they deserve a huge kudos on that one. The hours are pretty ridiculous- they close at 5 on weekdays and are open from 10:30-3:30 on Saturday's.\n\nI've had the Route 66 (Buffalo chicken) and the Ringo Starr and have enjoyed them, but it wasn't true love. Don't get me wrong, fair choices but no real excitement. The Sirachi chili sauce helps out- but I love that stuff.\n\nA solid choice, although not mind blowing in any stretch of imagination.", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hVkQbDk61hmIi5iVm3IkZw", "review_id": "HUWF0S8zxEG9L4ilr3snwg", "stars": 4, "date": "2011-10-08", "text": "Feels a lot like That's a Wrap (which used to be in this location). I love the overhead door; I love fresh air. Lots of seating and a bike rack (that doesn't really properly serve a lot of bikes, honestly).\n\nFood was very, very fresh. I expected (per norm in most places) corners to be cut where not noticeable (see: frying something often masks it's lack of freshness) - corners were not cut. The three things ordered were all well prepared, fresh and delicious. The things I oversaw on other tables were also looking mighty tasty.\n\nI'd love to see a few bottles of craft beer here - that's my personal opinion. Part of the issue is local laws, the other part is those running the show.\n\nWill return, for sure.", "type": "review", "business_id": "0dORc6ckZw5HezR3BuSsqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2uz3B-11DieFlELzqUCAlw", "review_id": "W5AZ0Tl2nzZda34ZufD9ag", "stars": 5, "date": "2010-10-13", "text": "Sundae for Sunday.\n\nPink spot helps me go through the summer heat.", "type": "review", "business_id": "DmkTDze8ruJr6o2f5GAvJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "J6ak2UPmjxpt3RFR1NT2TA", "review_id": "HBOsKHMxqvJwWc_ITHmObw", "stars": 5, "date": "2012-05-07", "text": "This place has a top notch tuna tataki app! Great rolls out quick regardless of how busy they are. Excellent service all the way around and very reasonable on price. Green tea ice cream for after dinner treat, I think so!!!! I forgot to mention I was in and out during lunch time spending 20 dollars.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "WDPzijEd9mctEVIW55DyMw", "stars": 4, "date": "2009-06-07", "text": "Went to a party where they had Stacy's cater it. So good-- it was the BBQ beef, BBQ pork and BBQ chicken. All of them were fantastic but I enjoyed the pork best, which is odd b/c I am not typically a fan of pork.\n\nAnyhow, it was all perfectly moist, well seasoned and was a big hit at the party. \n\nI would order from them for catering and I need to stop into the actual restaurant sometime to try the other items on the menu.", "type": "review", "business_id": "asebFFgabg_lfoNpGJHZlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d9DsbPMNod0rScSQQxwJIQ", "review_id": "mxRy3Hf9xpNxgwMqHWHJUg", "stars": 2, "date": "2012-11-27", "text": "i think reviews for this place are based on happy hour experiences. the food was SHOCKINGLY hot and fast out the kitchen. methinks there's some heavy microwave usage going on. the interior of the restaurant is and dark and fancy, but the food is mediocre and overpriced. in fact, the roaring fork became both a barometer and a joke for the remainder of our visit in scottsdale.\n\nif you want an equally priced meal with amazing food, yelp something else closer to oldtown (might i suggest something from the Baratin/FnB empire)?", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0gMAvqyMl5b4oWqq1HokaA", "review_id": "GJMOXc16S9Yxo8VVHycqaw", "stars": 4, "date": "2011-03-29", "text": "As a mom of two, Jason's Deli is awesome. \nThe ingredients are fresh and healthy, and the kid's meals are huge and priced right. For my young kids (4 and 2), one meal is enough for them to share. For bigger kids, it seems they could be eating off the kid's meal longer than at some places. \nAdd speedy delivery of food and free self-serve ice cream at the end, and this is one happy mom!", "type": "review", "business_id": "8kunNClZ1AD0Rj5bDiFdrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "pgSa_swO38T9xbV70BbWrQ", "stars": 3, "date": "2008-05-25", "text": "Earl's is Earl's - not great - not bad. If you're in the neighborhood and don't have anywhere else to go, go to Earl's. By far there are better choices, but Earl's will do when you're in a pinch.\n\nTypical bar food with no particular edge to make it memorable. \n\nThe staff is very friendly and the service is very good. \n\nJust average, not memorable.", "type": "review", "business_id": "4xofmDvGh2aD8Lgd0PH8GQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "qaKzkFaZtqWIXCGQ-GStQw", "review_id": "4VOh5eguD9aLB-BoX16OWw", "stars": 5, "date": "2011-12-13", "text": "Half the fun is the wait.....If you are going to go, you may as well get into it. We get into it, at their Italian place next door and drink tons of wine. L and I later that night had a hot kiss and she lost her precious earrings. I even drove back the next day to look for them somewhere against the wall. Just kissing, but hot, if you lose earrings.\n\nWe went twice once alone, and the 2nd time with her sons and friends. We ordered every pizza imaginable. It seems almost every high end pizza now, is brick oven and more about the crust. I like everyone else will mention, I am from the East Coast and know pizza. Best in the United States, we have several that are at that level. You can flip a coin on which one is better.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hduuRwJpz8gukqbFC26rcA", "review_id": "6GA9ufLKgGSFqU6MsQaqlA", "stars": 4, "date": "2012-02-02", "text": "Consistent. Fresh Mint offers a very consistent product. \n\nThis is a vegetarian restaurant with a Kosher designationl. The menu is Asian, with traditional dishes served with tofu or just veggies. The tofu is flavored/shaped as with it's more traditional dish (i.e. Kung Poa has chicken-flavored tofu, Beef dishes taste more like beef). Personally, I prefer plain tofu over flavored and they will substitute to your taste. Also, for GF'ers, they do have some dishes that are GF (no soy sauce--such as curries). No upcharges for any subs or even brown rice...\n\nAt lunch, hardly a seat is available. It's nice to see that this is more crowded than the fast food joint that is closer to the street. A slight tention can be felt for the business of the staff; however, this restaurant is consistant every time...it's worth trying folks.", "type": "review", "business_id": "znmvCpcwxYk_kYCqtUFt5Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-2XA34d6OGYEUuzqC7yhBg", "review_id": "N0C8-h1iVfooA855Y71ZWQ", "stars": 4, "date": "2010-02-18", "text": "Fantastic, order anything off the menu and you will be pleasantly surprised. Best gyro I've ever had hands down and the falafel is equally amazing. Owner paid special attention to my boyfriend and I and made sure we were happy with everything. Only downside is that they close for a couple hours during the day before dinner time (I believe its 2:30 to 5:30 or something like that) so I can't eat their delicious food whenever I want, haha, keep on doing what you're doing Sahara.", "type": "review", "business_id": "tyETqrYijm3cY4noCwl9Ww"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "0dgQa81w5it1PMpGpC_L0A", "review_id": "AzdMdNssldGFjALwpojcyg", "stars": 2, "date": "2011-01-04", "text": "Bleh. \n\nI have been anxiously awaiting the opening of this spot, since I frequent the other spots on the same corner. I had some pretty high hopes that this might end up rivaling Postino's or Bomberos... or well... something other than a drive-thru.\n\nI ordered the daily flatbread pizza. It was a Chicken Teriyaki with prosciutto, pineapple and red jalapenos. The ingredients didn't seem to be of the best quality. The chicken was a little gristly (sliced breast meat would have been nice), and the cheese was unspeakable. It was straight-from-a-bag mozzarella... which was congealed into a huge mass of grease. The pizza was so wet with sauce and grease and heavy from too many toppings, that I couldn't even identify the crust... it was disintegrating before my eyes. The prosciutto was all in one large clump, instead of being sprinkled throughout. So disappointing. My friend's caprese salad was mainly a plate of tomatoes with a garnish of cheese and a sprig of basil. I love a good caprese - and especially enjoy when there is a fairly equal amount of all ingredients. Helps balance out each bite, you know? No such luck with this one! \n\nOur service was fine. Helpful enough in the beginning, but I think once she sensed we weren't thrilled with our food, she just tried to get away with a minimal amount of interaction. The waitress never asked me how my meal was... even though I was clearly picking at it, and only ate half of it. She offered to clear it away - not box it - so, she must have realized I didn't enjoy it.\n\nI will definitely wait a while for a return visit. Since it is close and has a great layout/atmosphere, I am hoping that they work out these rather large kinks and become the kind of place that I would like to revisit.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tpOgdsqWcrlFyQSrRIua-g", "review_id": "Wj-W5pTJkjJ8udx7y4zZeA", "stars": 5, "date": "2011-10-18", "text": "Love chickafila :) they're pretty pricey for fast food though", "type": "review", "business_id": "ihMUU9D2mcgrp7fi8lmqJg"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "TA6CcCUag4lftPJDuhhFuw", "review_id": "z8AbzHsI6EabHdH3T4QHMQ", "stars": 3, "date": "2011-02-09", "text": "Marcella's does have its downside, but today I'm in a good mood and I am recommending you stop in for the following three reasons:\n\n1.) They bring absolutely delicious bread (including olive oil) to your table almost immediately. I love this and I love their bread.\n\n2.) You can sit on a \"patio\" inside the mall and have the most amazing people-watching experience. Fashion Square shoppers can be quite entertaining.\n\n3.) The Amalfi Spritzer might just be my favorite cocktail of all time. Vodka + passion fruit + basil = HEAVEN. Plus, they use those cute little cylinder-shaped ice cubes that somehow make the drink even better.", "type": "review", "business_id": "qecLHHzAwgkkeA1bG81vmw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tIuXIDONwCTp01qAsJWPWQ", "review_id": "qm8uwRl8xZZS8rS0EgGxjQ", "stars": 4, "date": "2011-04-10", "text": "Food was delicious, portions were great, and price was very reasonable! Highly recommend", "type": "review", "business_id": "-5rFC4EVrT-v8g1PSEf6Xg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "eBFm-lABQiKpaUcPDfYOgA", "review_id": "aR-UGCJCHqF3kB_DjWKrWQ", "stars": 4, "date": "2007-07-26", "text": "this is my favorite music venue in phoenix. it is a smaller venue best for local or indie bands, but every show i've been to their has been far more memorable then any show i've been to in phoenix.\n\nthe place itself isn't too stunning, it is just a rectangular brick building with a bar area on the right when you walk in, booths on the left side of the wall, some high tables in the middle, a stage and standing area at the back, and an eclectic mix of art on the walls. however, the place has a really good feel to it and excellent sound that leads to really wild and memorable concerts.\n\nthe two that i remember the most were the presets/the rapture and spinto band/art brut/we are scientists. i thought the presets were pretty lousy until i saw them play there and the rapture played an absolutely amazing set that lasted almost 2 hours and inspired an epic, comfortably out-of control dance party. the other show was equally long and boisterous, highlighted by eddie argos coming out into the crowd to sing 3 songs.\n\nthe bad things about the place are that last time i went there was still no alcohol because they lost their liquor license. however, i heard that they have got it back now, but i'm not sure. the shows i went to i had to go down the street between sets and drink at alice cooperstown which isn't cheap. \n\nit also doesn't have a patio at all where you can hang out and hear the music or what is going on inside and drink or smoke. the venue reminds me alot of the lounge in the back of Plush in tucson except for the lack of a patio which is really important in a state like AZ where the weather is so good at night most of the year.\n\nof course the worst thing is just the lack of bands that go there. most bands come to either marquee (heaven help us poor phoenicians) or even worse, the clubhouse. if you happen to be a tour manager reading reviews on yelp, please book your band at the brickhouse.\n\nUpdate - 8/31 - Had to downgrade to 4 stars after my most recent visit. Its hard to believe that I'm downgrading them now that they have liquor available, but it's happening. \n\nThey normally have local draft brews at this place for 2 dollars, but apparently when they have a show they don't sell it at all. Only bottles for 3 or 4 dollars. What's worse is that every bottle I ordered wasn't cold, tasted like they just threw it in the ice bin 30 minutes before. AND they kept running out of beers. What's even worse is that the mixed drinks run 6 DOLLARS for a really tiny glass. This place needs to get its act together. I'll be drinking beforehand and elsewhere in between sets from now on. I don't get why the music venues in Phoenix don't understand how much more money they can make at a show with drink specials.\n\nThey also apparently haven't invested in air conditioning which makes summer shows not even worth it. Okkervil River still put on a great show to my surprise, which is the only thing (along with the other great shows i've seen there) that kept me downgrading this place to 3 stars or lower.\n\nThey are also in the middle of remodeling so the place looks kindof like crap right now.", "type": "review", "business_id": "4WcxnNv_lzCIG2eb8O5Mlg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OQPPH3MMG7paqfw1THYGsQ", "review_id": "MHphXJLzm1_yZx0PEQklMQ", "stars": 5, "date": "2012-06-05", "text": "Let's face it, junk is the antithesis of glamorous. When you've got a big pile of crap you need hauled away, any guy with a truck will do, right?\n\nWRONG. You want someone that will be on time, is willing to clean up the area where the junk is after they've picked everything up, is polite and fluent in English, thinks of value-added services like emptying your trash bin, and represents a local business that you can patronize.\n\nJunk Guys ticked all these boxes for me. THe guys were great and helped me out when I needed some items hauled away from a house that I had sold. I'd highly recommend them over an unknown entity or a big corporate junk removal company. So go get your crap hauled away by the Junk Guys - you'll thank me!", "type": "review", "business_id": "-vBrVSZBtqbDgPAbGQ4ZYQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "9vU6HUPSRg2p5dO4YZdS_A", "review_id": "GMmp0qSqEYot420vx_iIrw", "stars": 5, "date": "2013-01-02", "text": "Nello's is the best! Great local feel, great food, love this place.\n\nYou have to have: (Gluten Free) Pizza, Garden Salad with Turkey and House Dressing. It will soon be your go to feel good order.", "type": "review", "business_id": "RYZ08XAToBaN-bS5HHVEhQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "LUGzqMjU1p8we9ldBnzVPA", "review_id": "5QgVJ6enX5r0jQcf5wNnNw", "stars": 4, "date": "2011-04-14", "text": "Back again. Still thinking about the flatbread pizza w/ tandoori chicken. I told my friend not to order it as an appetizer b/c I felt it would be too much food intake. One of the best things I've eaten in a while. I can't wait to order that as my MAIN dish next time. Soooooo good. You gotta try it!\nThe chutney and all the flavor combinations were perfect. It didn't sound so special on the menu, but it is!", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "hV225B_UgT368FKzOk2daw", "review_id": "3uqeEpLC0uLIxO8hFimkmQ", "stars": 4, "date": "2009-06-07", "text": "Being from NJ I am always on the prowl for my hometown pizza and Italian food. They have absolutely the best cannolis like my grandmothers! The pizza droops like Ray's Pizza in NY. I'm not a big fan of sauce that has any sugar in it which most do so to many their sauce is awesome. I prefer unsweetened everything.\n\nThe service is great and they are from New Jersey! It's a great place to grab their special 2 slices and a coke for $4! YUM!", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 10, "useful": 8, "cool": 7}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "T3kWEIgAz9c98uTelDSO2Q", "stars": 4, "date": "2011-04-21", "text": "I met fellow Yelpers Brian S and Shannon M here and learned that it's all about the sandwich. And feeling like you have walked on to a set for \"That 60's show\" or \"That 70's Show\". It's pretty clear the owners of Casella's are focused on the sandwiches, not updating the decor.\n\nI had an Italian beef sandwich. It was great. And I sat and soaked up the 70's decor as the bread from my sandwich was soaking up the juice.\n\nThis place is old school all the way - old school awesome. F#%*ing A. Now where's my Trans Am?", "type": "review", "business_id": "kEyCMHBnohaWc81omLDfYg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "6f9pb2-bUdxlsQqJs8-cSQ", "stars": 4, "date": "2012-01-28", "text": "I'm on the constant hunt for good Chinese food in Phoenix. After many disappointing meals, I found Desert Jade and haven't looked back. The restaurant is super clean and quaint inside (even a big fireplace) and the service is great. Each of our servers have been super friendly and attentive. The food is really good. It's not going to blow you away, but it's fresh, portions are just right and I've never left unsatisfied. \n\nI really like the Kung Pao Chicken, the Mu Shu Pork, Spicy Chicken with Vegetables (lots of them), and my husband loooves the glazed walnut shrimp.\n\nIf you're looking for an easy, casual Chinese meal in Phoenix - I promise you this is one of your best bets.", "type": "review", "business_id": "m9Wqqma30o-hH2fAX7dnug"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "u4SUSUr_QNv6qwOgXkoMxQ", "stars": 3, "date": "2007-06-12", "text": "Wow, it must be a first-time mall experience for the reviewer before me. Five stars for Arrowhead? Are you kidding?\n\nI find this mall to be average and boring with many middle of the road stores (Dillards, Sears, Gap, Tilly's, Forever 21) you can find elsewhere at other Westcor malls in the Valley. \n\nNothing really strikes me as distinctive at this mall - other than the fact that it's the nicer of two indoor shopping malls on the Westside. So for 500,000 people this is the only game in town unless they're willing to drive east.\n\nThe store mix and food court are pretty typical. In fact, I rarely go here unless I am in the area, need socks or undershirts and/or I'm trying to avoid the lines of the other Arrowhead Paradise Bakery.", "type": "review", "business_id": "9ggd0DySEZNw990JGaFSQQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "j2_4VhaUsH9Agv1soMbtYw", "review_id": "gvhOoOdgQydEctRJFDxY_g", "stars": 5, "date": "2013-01-01", "text": "When I was recovering from surgery, I received of one of their arrangements. It was marvelous. The quality was unbeatable, with gorgeous blooms and fantastic presentation. They lasted for weeks. I am really pleased with this company and wouldn't hesitate to use them again!", "type": "review", "business_id": "JnKJa7e6dd4G7wAKhg8e2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g6rlp5No6GjEDXkrjvg1kQ", "review_id": "Vok1GHE3K514z6PBehJRTA", "stars": 4, "date": "2011-11-26", "text": "Yummm. Love The Lady is A Scampi.. it's all I ever seem to order from this place. Can't get myself to stray. HUGE shrimp, pasta i perfect and full of flavor. As for everything else.. service was spot on, wait was only 30 minutes on a Friday night which is unheard of. One complaint.. ordered a dirty martini and there was no olive garnish :( But if that's the only problem..we're in pretty good shape.", "type": "review", "business_id": "LMG0zsAkUSscIvmV9vvm3A"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "PI0QBRy4Bj9DggN5mDLCEg", "stars": 3, "date": "2011-12-23", "text": "I remember when this place first opened. I was very excited since it seemed so \"humbling\".\n\nI came here for lunch and thought this place actually looks \"okay\" at best. Chicken Sandwich was excellent. The bread was toasty and crunchy, while the Chicken and toppings were warm and buttery! However, the soup can improve. They only gave to you 2 options so I guess I had a 50/50 chance of getting the good one! \n\nThe place was loud and popping! Not sure what to make of it since they had wine racks and wine, but then teeny hot pink tank tops hanging from the wines. Is this supposed to make me want to drink more wine or should I buy a shirt for my GF? Though I don't think anyone would appreciate a shirt that says PIE. \n\nService was good, I guess. Our waiter was very nice and helpful, but he seemed flustered with a smile. He didn't do anything wrong by any means except he was going about 100 more miles than I was. - Enjoy", "type": "review", "business_id": "Lbue8gqRiBPEnA7g7H1qdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RYno4pKPnFpHwLs1EoPVjQ", "review_id": "_QPvVf1oT_3xMloxLrBYAQ", "stars": 5, "date": "2012-11-07", "text": "I would just like to start off by saying that I love egg salad sandwiches. I have probably tried an egg salad sandwich anywhere that serves egg salad. Sacks is BY FAR, the BEST egg salad sandwich (entitled \"The Dali\") I have ever had in my life. I live in North Phoenix and I will literally drive many miles just to eat at Sacks. On top of the wonderful menu, whenever you order a sandwich from them, the meal comes with a little chocolate chip cookie, which is amazing all in itself. If you like their cookies, you can purchase the cookie dough. They also make other delicious dessert bars and salads that are for sale as well. I have been eating here for at least 14 years, and I hope they NEVER go away!", "type": "review", "business_id": "GqtMJxq5-7Xp1ZXXmahLaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BncUtrl2bphVTu12y5fTlQ", "review_id": "YxGBDfR4BWP7cF7kib_hAg", "stars": 5, "date": "2011-06-06", "text": "I have found my new favorite sushi spot.\n\nI wish it was closer to Tempe, but it's worth the drive.\n\nYou can tell by their menu that Hana strives to be an authentic Japanese restaurant, as opposed to the sake bomber joint that only has food so they can call themselves a restaurant. You know the kind; the Phoenix area is plagued with them. Hana is BYOB, and there are only a few ridiculous fusion rolls on their sushi menu: most of it is authentic, real sushi. \n\nOn my first visit I started with my usual appetizers, and was immediately struck by how unusually fresh and tasty they were. The seaweed salad had just the right amount of sesame oil, giving it incredible flavor. The veggie gyoza were indescribably delicious. They made me realize I'd never had a fresh gyoza before; every one I'd eaten previously in my life was a pale imitation of these little bits of Heaven.\n\nThe sushi came out fast, even though it was fairly busy this particular Thursday. The first thing I noticed, naturally, was that someone put a burning sugar cube on the tray. \"Hey, fire!\" I thought. It was a nice touch.\n\nThen I saw, nestled between the flaming sugar and the wad of wasabe, a small pile of what looked like pickle relish. I guessed what it was, and our waitress confirmed it: it was FRESH wasabe.\n\nReal, fresh-grated wasabe is something most people never experience. Most people don't even know the pasty green stuff that's standard in every sushi restaurant is just normal horseradish dyed green. The real stuff is just too expensive, and too difficult to keep on hand. But there it was, no extra charge. It adds a little spice and a wonderful, fruity complexity to the sushi. \n\nThe sushi was great. They also have a large menu with all the other Japanese dishes you'd expect, but I didn't try any of them. Next time.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "tuG5kN4ZpLyBv3n2FGbEmQ", "stars": 1, "date": "2011-04-08", "text": "Well...no worries for the continued bad service...awful prices...average inventory....and just overall bad experience....because the store closes forever this weekend. I have never cared for the place....so I definitely won't miss it. However if your looking for some decent electronic gear at 60-80% off....then this is your weekend to go. Eat, Drink, and be Merry my Friends", "type": "review", "business_id": "37TCTrXk2kFZ07hSSd5PHQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "ZK_WcbPcxO7ZgHAbIoqFpw", "review_id": "sqYOnOGlKDe5f0QVm5u3xA", "stars": 5, "date": "2011-09-28", "text": "This little taco shop gets 5+ stars! \n\nThe fish tacos were out of this world, breaded and fried to perfection. I also tried the al pastor taco that was marinated well and you can taste the marinade in every bite. I also tried molotes for the first time. The cilantro salsa and red salsa was homemade and oh so good and spicy. The quesadillas are like cheese crisps. I am so disappointed that I did not find this place earlier since it's so close to home. \n\nI have to try the other items in their menu soon. Price is very reasonable as their tacos range from $1-$1.50.", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DU0F18NBXFZ-hsPOmGhzQA", "review_id": "G6ptV9LUiPR5y9p3zo3afA", "stars": 3, "date": "2010-10-14", "text": "I love a greasy burger joint so I wanted to try Smashburger. I took my order to go. The layout of the store is different than most burger place...a rather minimalist front counter. The service was quick, and I received my food in a reasonble amount of time. It was hot and fresh. I ordered the 1/3 Smashburger with everything and Smashfries. The burger was ok. It was spiced in the same way that Hamburger Works or the Chuckhouse does their burgers. The veggies on the burger were fresh. The bun started to fall apart about the time I finished the burger. overall...it was just ok. It ain't no Lenny Burger. I'd rather go to Fatburger then Smashburger. The fries were crispy and flavored. They were good. When I first saw them I thought the portion was rather small, but when I took it out of the box in which they came, it appeared to be a normal portion.\n\nI won't avoid the place if people want to go there...but I won't make a special trip.", "type": "review", "business_id": "R1kKjAO5kZO6d0gQGqrvGA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "TPj2H2OD4mEyxIjRTbFagw", "review_id": "0CjTvBKt7-_dgnm-YQWbBg", "stars": 5, "date": "2009-01-06", "text": "I like to think of Trader Joe's as a \"specialty food/health market.\" It is simply in a league of its own when compared to large commercial grocery chains. Honestly, there is no comparison! \n\nWith that being said, this is the BEST Trader Joe's I have been too! (and I have shopped quite a few in my travels across the US) The sheer size of this store, in TJ standards, is IMPRESSIVE! The isles are plenty large enough for TWO people (with carts) to maneuver through. And more importantly EVERYTHING looks fresh and delectable! \n\nSome of my fav's are: \n\n$3.99 Trader Joe's Coastal Cab...FABULOUS for the price! (Quite honestly though, I haven't EVER had a bad wine at Traders...they have an amazing selection that isn't overwhelming but isn't sparse either.) I also LOVE that they CLEARLY label each of the wines and/or regions so they are quick and easy to find! \n\nThe Haircot Verts (French Green Beans) are simply delicious! Their Brussel Sprouts are the perfect size and quantity; just enough for two people at two different meals. They even have Nulaid \"Ready Egg\" (i.e. egg beaters) for $3.69! At the grocery store the SAME stuff will cost you TWICE that!! \n\nTheir cheese selection is delightful with almost ANY kind of cheese imaginable! Their artesian breads are so yummy...although not a \"low fat/fat free\" food, so that is a once every few months splurge. (and even then we only get the small loaf (which I want to say is called a \"little bastard.\" That name CRACKS me up!) \n\nAnd although I am not a \"sweet\" eater, my hubs is...so he has a dozen or so goodies that he constantly gets here. The one I can think of off the top of my head are their Chocolate Covered Joe Joe's with Peppermint Crumble (or something like that.) I'd go look at the box but we are fresh out because the hubs thinks that eating one box over a two-three day period is acceptable! \n\nIt also fun to be rewarded for bringing your own reusable bags; as any good eco-friendly shopper would do! There is a weekly drawing for a TJ's gift card (I think the value is $25) and you get a ticket when you bring your own bags. (not one for each bag...just one ticket for bringing them to put your goodies in) Then they draw a name out of all the tickets (which you drop in a box on your way out of the store) once a week. \n\nIf you shop more than once a week, you can \"earn\" a ticket for each time you shop there in a week therefore increasing your chances of winning. (although I am PRETTY sure the majority of Surprise/Sun City Grand shop there so maybe the odds aren't THAT great! )\n\nRegardless, this is just a great little \"market\" through and through. I used to get excited to shop at TJ's...now I am always looking for an excuse to buy something just so I can go there! (and it's not just to try and win the gift card either..that's an added bonus!)", "type": "review", "business_id": "OzrOuMIig4Zvq1qyFutH2Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "0N0ngSQ8Njxfuvdxm1RpFA", "review_id": "BrivsV-4VPzB6XOvUHNbqw", "stars": 4, "date": "2011-06-05", "text": "This is just overall a great place! It's tough to do this review, as I can probably only remember 1/2 of my times being here, and that is being generous. \nThere's something about the atmosphere here that just makes you want to tie one on and knock back giant beers and spend money playing songs, darts, and Golden Tee. They also have pool and other games. \nIt's a BIG bar. There is a more \"game side\" and a more \"table/eating side\". They have a ton of TV's that are large and high quality. I have never seen it \"slow\" here. It seems no matter what the day or time it's pretty happening! \nThe food is really good. I love the diverse menu, happy hour specials, and quality ingredients. I also have never once had bad service. The staff is fast, friendly, and has never seemed irritated or overwhelmed. \nThere is a large patio out front that you can drink on that has misters and heat lamps (depends on the season). \nThis is the absolute perfect place to go have a blast with friends, or even come alone when you feel the need for a night out. Always friendly, attentive, and..... oops I forgot the rest because I always end up giggly and drunk. Sigh.", "type": "review", "business_id": "DHk8is9rvfnATsW1AudWQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "grXqYN-Wh7plSsivDEfgEA", "review_id": "wHVD494Wy1HXc_L-ElU7ig", "stars": 5, "date": "2012-06-13", "text": "Great Brisket. There has not been good BBQ in south Scottsdale for a long time. There is now!. The food is wonderful and priced well. Stop in and grab a bite.", "type": "review", "business_id": "4ic-c1LquBiT0IuvKXuEyw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "45V7-1r79DEG0HbuaKYIlg", "review_id": "J89x8F6oHM8uE6SoH574jQ", "stars": 4, "date": "2011-08-14", "text": "Is this great sushi? No. Does this food reinvent the sushi wheel? Not even close. Will I have a foodgasm? Not a chance. When I am craving an amazing sushi meal, I'll go to Yasu.\n\nWhy I really, REALLY like Teharu:\nThe food is fresh. While it's not amazing fish, there's nothing wrong with it - nothing here to get sick from.\nAll the standards are readily available and if you want something not already on the belt, they'll gladly make it for you.\nThe conveyor really feeds into my lack of patience. I sat down, ordered an iced green tea, and started pulling plates off the belt. Yes, I was eating sushi within 90 seconds of sitting down!\nThe price is a HUGE plus! I met a friend for lunch - we each had iced tea, several plates with 3 or 4 roll slices, seaweed salad, sunumono salad and a couple nigiri and I was out of there for less than $20, including tip.\nThe place is kept incredibly clean, staff is friendly and Teharu fills a nice niche for a super casual, quick sushi place. When it comes down to it, I can't always afford to spend what that quantity of food would cost me at Yasu or any of the other great places in town - I like that I am not committing to a whole roll - I can sample from 5 or 6 different ones.\n\nFills the need for the sushi craving on a buget and/or when strapped for time.", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uLtmw0t-GvXUuIVRIVhotA", "review_id": "ZXRSnxeLFXYV88KUEZC7Sg", "stars": 4, "date": "2011-08-15", "text": "Best gyros I've had in the East Valley so far. The place is nice, but the service was very slow when I went there with a group of people for lunch. It was my first time there, and maybe I caught them on a bad day? I'll definitely be back again...", "type": "review", "business_id": "9em_vfSjwcPqQgU8Zj-hzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UgttlReSB8g9YF3URK8BPw", "review_id": "ra1cu1_ilRpKWe5m7-Apqg", "stars": 4, "date": "2010-09-19", "text": "A hidden gem in downtown Phoenix. I loved the design of the restaurant and was so excited to try the food. The menu isn't large at all but there is great substance in their offerings. I had the chili lime chicken which was really delicious. I don't think I managed to eat even half of my order but it made for great leftovers. :) I noticed they had a very reasonable take out menu too!", "type": "review", "business_id": "hZRLGfRrZTo9up2P-0aAHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "KppFIU4j8U-8p90FqUm2-Q", "stars": 4, "date": "2010-08-19", "text": "\"6 inch tuna on white bread, with everything including spinach, but NO pickles\".\n\nNot even joking, this THE only subway that ever gets my sandwich right. Thank you for the $5 meal deal, it beats the other chains in this shopping plaza as far as price for lunch.", "type": "review", "business_id": "7AHd-F65U_ikSsHxhIaBQA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "ND95DgvN7ba8MabfXE3lsw", "review_id": "0K2VKSSnXc6p2suu58WtWQ", "stars": 4, "date": "2011-03-24", "text": "My return trip to SaBai was excellent.\n\nI stopped in due to an irresistable craving for something with shrimp. I was in a take out sort of mood, so as I sat at the bar the friendly owner gave me a glass of water with a cucumber slice in it. I was pretty floored at how refreshing something so simple could be!\n\nI quickly got my order of Garlic Shrimp (extra spicy) and headed home. The shrimp was perfectly cooked. So perfect that I can't think of any other shrimp to compare it to.\n\nI was happy to see a decent crowd in the restaurant. I know I'll be coming back again.", "type": "review", "business_id": "cInzGnaFZ3EIItvFXl1MvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "twZoTvWG92ntMVfEvbCnIg", "review_id": "hQXhKJcQ7-bwSOEPGix3Wg", "stars": 5, "date": "2012-01-02", "text": "I had initially checked this place out a couple of months ago. Once again we found ourselves needing some quick, delicious breakfast and decided to try this place out again. As before it was absolutely delicious. The one thing that surprised me this time around however was the little play area toward the back of the restaurant. This is very impressive to me as it gave us some much needed peace prior to getting our food. Thank you Bertha's Cafe for not only being so accommodating, but also for having such wonderful food.", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 4, "useful": 6, "cool": 4}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "vRYLelechgRU4VNlB4MKcA", "stars": 5, "date": "2008-05-05", "text": "Feeling a bit weary from a steady stream of travel, we decided to head over here for my favorite Rx, Pho.\n\nA couple of summer rolls filled with shrimp, pork and vermicelli, dipped in the sweet peanutty sauce, a dash of their house hot sauce(a tad more fire than the \"cock\" sauce) and we were off to a fine start. I was feeling better already.\n\nThe Pho arrived, and the aromas were simply intoxicating. After a short interlude of vaporized euphoria, we dug in, adding the usual lime, cilantro, basil, sprouts and aforementioned hot sauce. Commence slurping.\n\nThe broth was simple yet complex in layered flavors. Noodles were perfect in abundance and texture. My companion chose beef and shrimp and declared they were cooked perfectly. I selected the special beef which included shank, brisket, tendon, tripe and meatball. Outstanding.\n\nService was with a smile, prompt and attentive. I honestly felt like I was sitting in someone's home enjoying what they might eat on a daily basis. I do not think that Cyclo can compare, while good, this just seemed more authentic.", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t2YBANsJYySOXvHyOjcZkQ", "review_id": "jltxtw_jD8dzhqR4zK_ttQ", "stars": 4, "date": "2011-08-13", "text": "This was our third visit and I have to say the service is impeccable. They are attentive, friendly and helpful. \n\nI can't remember what we had our first visit, it was right after they opened and during the awkward stage. The second visit we had pizza it was good, we were looking for deep dish which they don't make but it was good and great service. \n\nTonight we all had different things: Mostaccioli for my older son he was very happy, cheesy and flavorful sauce. Spaghetti and meatball off the kid's menu for the younger boy, sweet sauce and a big meatball another happy boy. Husband had the Chicago Grinder hot and it was gone in a flash and he said it was really good. It looked great on the toasted bread. He also got a salad instead of fries, lots of fresh veggies. I had the Italian Beef with peppers and onions, it comes with Giardiniera and au jus and french fries. The bread was yummy soft yet substantial enough to withstand au jus. The bread was stuffed, stuffed with meat, the peppers and onions were good but the giadiniera made it. It was a really good sandwich. San Tan Brewery on tap - yum.\n\nI could give them 5 stars but I've had better Italian Beef though I will admit I'm not an expert. \n\nA great dinner and I hope to return soon.", "type": "review", "business_id": "91n02N35x38nvR1XH-jOAw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "bRhF_oqWpycPjb5acrIKIw", "stars": 5, "date": "2008-04-13", "text": "Owner Daniel M. is one of my most favorite restaurateurs in Phoenix. His stamina and passion for the business of serving fine cuisine is a rare find. Daniel is from South America but you wouldn't know it; his knowledge of the secret kitchens of Tuscany, Umbria and Amalfi is uncanny. I know this because I traveled with him and his chef one year on their odyssey through Italy.\n\nDaniel takes special pride in personally choosing a very select few bottles of wine to fit any budget. OK, it's not Etienne's Different Point of View's list of 4000, but know that any choice you make is going to be a good one. If you're not sure, just ask for Daniel and tell him what you have in mind -- likely he has (with a wink) a special bottle in the back.\n\nWhen we traveled through the Italian countryside I was constantly astonished by the warm greetings and special invitations we had from local proprietors who shared with us exquisite homemade wines and dishes made with pride from the finest vegetables and livestock. We frequently stayed long past closing with the owners and into the night sampling rare port and grappa. At one restaurant in Orvieto the owner took us deep into the dank recesses of the wine cellar for a special sampling of cheese and wine. Talk about knowing people? One afternoon while drinking our 5th bottle of wine, who walks by but Jan D'Atri! Wow. (That's another review.) And speaking of reviewers, I also ran into Phoenix Magazine's Nikki Buchanan (also extremely nice).\n\nWhen Daniel first opened in this location with that little stone oven in the corner, it was a pizzeria and guests could belly up to long tables in a casual environment that was made easy by his banter with the heavy Italian accented waitress (name?) who made a comeback some years later. For quite some time the restaurant was Il Forno; that is until corporate giant Il Fornaio entered the fray and sued him to change the name. After much rigmarole he changed to aqua e sale -- and notice Il Fornaio has since closed its doors? LOL. Again after much hoopla, he made it Daniel's. The current wood-paneled decor makes me think of a city club in San Fran or London. Very posh, yet understated. Selections of sculpture and art from his travels dot the restaurant's three small dining rooms.\n\nThe menu is a very difficult one. I say that because it has all of your favorites and it is difficult to make your final selection. Great for steak, ravioli, the best carpaccio in the city, best buffala mozzarella, mmm.... I could go on and on. So does the menu, page after page.\n\nSome might call the preparations simplistic. This is the Tuscan way. Simple ingredients and simple preparation. Let the ingredients make their own magic. Grilled rack of lamb is not drowned in some Smucker's lime jelly, but gently brushed with rosemary and garlic, tickled with salt and pepper and finished with a squeeze spray of lemon.\n\nUnfortunately the artful one-of-a-kind plates and bowls handmade in Vietri chipped at the edges over the years and the health department made him throw them away -- UGH!! -- they were a beautiful motivation to make you lick your plate clean to see the painted pictures beneath your scrumptious dinner. Not that you needed an excuse to dab every last bit of sauce with the wonderful mini loaves of bread cooked right there in the hearth that started it all.\n\nDaniel himself is a wonderful host. He loves to give his guests a wonderful experience. There are many choices for Italian food in Phoenix. Most of it is just American Italian. Daniel's is a unique touch of the simple yet elegant. Enjoy.\n\nP.S. [post edit] OMG. How could I forget the Tiramisu? It's a generous portion, so you can share with your guest, but after your first bite you may not want to. Light and airy, yet fantastically flavorful, the quality of the coffee really makes this dish a reason to go back again and again. I'm not going to tell you the secret ingredient. You'll have to ask Daniel.", "type": "review", "business_id": "IpqgfODLFPww-6TxCk-LJQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7W4egS-WyR0hRHMfQtPEOQ", "review_id": "cgzsnrOmW2zX4hTB6FFJQw", "stars": 3, "date": "2011-11-13", "text": "This place it hit or miss for me. I have always ordered the feta gyro and either fries or a small Greek salad. Why is the soda machine always broken? Makes me wonder what else is broken and not fixed in the kitchen. I ate here for the 5th or 6th time on Thursday. The gyro is excellent, but the fries were overcooked and the oil didn't seem very fresh, as the fries had a brownish, oil soaked feel. I will return for the gyro, but I may skip the fries and stick to the salad.", "type": "review", "business_id": "odhXwWaYZvD_icIN6f_DbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X6GycoLMzQaocXBANVnB4Q", "review_id": "eeZLCm4v-dtSH0x3KoFUBw", "stars": 5, "date": "2009-02-09", "text": "Changing Hands is the perfect bookstore. These types of places just don't seem to exist, but Changing Hands has managed to survive.\n\nAllow me to begin by saying that this bookstore does not have anywhere near the selection of a Barnes and Noble (or probably a Borders, but I don't go into that garbage store and cannot be sure). With that said, there are a few reasons to shop here.\n\nFirst, and most importantly, they have well priced used books. I believe most of their used books are $7.50. They are also all in pristine condition. Now, $7.50 used isn't always that great for a paperback. You can do better online quite often. What's notable, however, is that their hardcovers are typically $7.50 as well. This is a fantastic price and is hard to beat.\n\nSecond, the location of CH is perfect. This is one of the best plazas out there. Wildflower, Trader Joe's, Mac's, Jamba Juice--you can't go wrong.\n\nThird, and finally, Changing Hands is a local store, and many good things come with that. The staff is extremely friendly. From what I can tell, they are all hardcore book nerds and you have to love that. The store also has a very welcoming feel to it. Once you're in, you will realize how extremely friendly everyone is. No, not just the staff--the customers. Everyone is talkative, friendly, and just seems to be happy. They are all indulging in one of their hobbies in one of the most inviting stores I have ever seen. Someone will ask the staff \"who wrote such and such?\". The staff will almost assuredly spot a regular and ask him or her \"who wrote such and such\". If he doesn't know, someone else will probably pipe up. It's this type of thing that makes it a great store. Overall, it just has a great atmosphere.\n\nThe only negative comment I can make about Changing Hands is how hippy it is. There's a ton of books on spiritual techniques, new age methods, buddhism, and whatever the hell else hippies/hipsters think makes them look more cultured. Of course, this just goes along with the Tempe, Trader Joe's, and book reading demographic, so I can't blame them for meeting the inherent demand.", "type": "review", "business_id": "GwSdGrvaXi4BdXNSWKn-EA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "Q35fzO1VUcU5pxB_5INOrw", "stars": 3, "date": "2012-07-16", "text": "So, if I rated The Grind based solely on the Sweet and Spicy Burger, I would give it a Woohoo, five star rating, but, I'm not , just thought you should know, you need to get that burger if you come here.\n\nI was a little surprised to see how small this restaurant is when my mom and I decided to come here for lunch (she was wanting burgers). This place reminds me of a narrow cave that happens to have a long bar with about 18 stools, six larger booths that can fit five patrons comfortably, four table tops, and three double occupancy booths. The bar is pretty cool, its lined with red lights and has eight rather large flat screen TVs you can see from the stools and the larger booths that we were seated at. I opted for the Sweet and Spicy burger ($12), thanks to Yelp, and my mom went with a plain ole cheeseburger ($11). Knowing that the burgers do not come with anything, we decided to order the sweet potato fries ($5) and both got iced teas ($2.5 each). My burger was delicious and was everything the title said it would be...sweet and spicy thanks to the sweet glazed jalapenos. I also enjoyed the crunchy, deep fried ratatouille, yum. My mom wasn't impressed with her simple cheeseburger and said she would order mine if she were to come back and we both enjoyed sharing the sweet potato fries.\n\nBrent, our server, did a great job with suggestions and service. As lunch time got more busy and he got more tables he was always checking in with us and even put our iced teas in to-go cups. This place was, as the default Yelp display states, a-ok. I'm glad I tried The Grind, but probably wouldn't suggest this place for lunch, but wouldn't hesitate to come back here if it is suggested by friends.\n\nBreakdown:\n\none star for being a narrow cave\none star for the Sweet and Spicy Burger -and-\none star for Brent, our awesome waiter.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vCvtdiwIR52fnByQH7ciZA", "review_id": "e3YCq3wHU9vuhXiYs28YcA", "stars": 5, "date": "2012-09-13", "text": "I used to work here so it had to be good;) Honestly, I would say it is the most friendly place I had been to. Cashiers are willing to except all coupons and work with their customers. The prices are great and the gas rewards system is very useful. I just wish it was a Marketplace instead.", "type": "review", "business_id": "d4GSh1BalxvQCU7zLe6Lzw"} +{"votes": {"funny": 3, "useful": 3, "cool": 1}, "user_id": "Ib8kGCGfUqubl0u2NNLiuQ", "review_id": "OZeuTjKy_8HA4p_TiJ_kCw", "stars": 1, "date": "2011-05-25", "text": "I have been to a buffet like this before, but I will never go to this particular one again. \n\nThe food all looked fresh as we went through the food line selecting our favorites and stacking our bowl to the sky. We selected our sauces and turned it over to the grill. \n\nThe cook doused our dishes with water, quickly cooked the ingredients, and returned them in a new bowl. \n\nThere is a selection of crispy wonton bits, rice and soups for you to add to your tray at no cost. I selected no rice as they were all old and burnt to the pan. I chose the hot and sour soup because it is ma favorite. \n\nFree-range and refills on beverages. \n\nSat down to eat, was not impressed. I could not muster to try a second spoon of the soup as it was absolutely disgusting. The bowl of ingredients were all bland, perhaps from the overuse of water at grilling, and I am almost certain the tofu had gone bad, The slivers of meat that my husband had selected tasted fowl as well. We obviously did not get to far into our meal before leaving. Had we not already paid there would have been several complaints from me, and changes in selections. \n\nWe could have taken the left overs home, but opted to leave them instead. \n\nSuffice to say, I do NOT recommend.", "type": "review", "business_id": "L-bpJXpA5875dLb7A4wh6A"} +{"votes": {"funny": 10, "useful": 12, "cool": 15}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "CAiTtv7-SI8C-Kz8jSw1hg", "stars": 4, "date": "2012-06-30", "text": "This place needs no more great reviews really but damn was it good.\n\nRecent Sat night: first time. Busy, hour wait, unless you sit by bar which was zero wait. We sat by the bar. \n\nVery cool, hip place. I remember the Clarendon but had no idea it got all cool and modernized, when did that happen?\n\nAnyways, ordered 2 house margaritas (excellent, very fresh, perfect), then ordered 2 more..... buzzed alert***\n\nElote, teeth sunk in, amazing alert***\n\nSpit shrimp cocktail, oh yeah.....its on.\n\nTacos carne asada, so fresh, so good. Great chips and salsa, the thick kind of chips, authentic type, like in Mexico. \n\nFor some reason I ordered a burger? Huh? It was a hasty decision and the burger was just OK. Next time, no burgers, just tacos etc for me.\n\nEven as busy as it was, the service up at the bar was perfect. \n\nI will certainly go back at some point. Maybe not rush back just because of the busy factor, but hey what isn't busy at these hip trendy little places in town, right?", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "AGUzvg1XorMJpcVG-N0ZOw", "review_id": "vVab30K-86rOik7DaAY6NQ", "stars": 2, "date": "2011-03-18", "text": "New and big yes... but not my favorite spring training park.\n\n5 stars for being big and roomy and also lots of grass in the outfield\n\n2 stars for being almost like a major league park. Feels like you are attending a MLB regular season game. They lost out on the small spring training feel and intimacy.\n\n0 stars for being the only cactus league park I visited this spring not allowing you to bring in food like candy or peanuts or sunflower seeds. You realize why when you see the pricey beer and food vendors inside.", "type": "review", "business_id": "PO2JBrCFcxd5ne-7ewDwdw"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "P1XofswxyEb90r2bVN4LJw", "review_id": "u4bg1tw6IPFxjNKMSTrUTQ", "stars": 5, "date": "2011-04-11", "text": "Walking in was like seeing a rainbow for the first time. UH-mazing! Every type of candy ever created and more candies that you've never even heard of. Best part about it was that it was super affordable. It was like a mini-costco of just candy. \n\nI ended up going twice on Saturday. Love it!", "type": "review", "business_id": "7tPe20uDErh-iSkfNEWzVQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cFoiVWF42HSXQEtqxDvdWQ", "review_id": "MV3HbtZTE2DpxMdv9tdqWQ", "stars": 2, "date": "2011-01-30", "text": "Returned here after a year's absense. I understand they have had a change in management. some for the better, some for the worse. new general manager and now the service seems much friendlyer and efficient. New chef and now food is slow to arrive and not as good as it used to be. steak was charred, mashed potatos were lukewarm. Took over 30 minutes for our food to arrive. hopefully it was just an off night for the kitchen. but the general feel was that they lost the attention to the little details", "type": "review", "business_id": "8dEJ_o0UgGrNX1ejHcuZjA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "F5OyWS5O4S3gmNeMc8mz2w", "stars": 3, "date": "2011-07-05", "text": "We were going to movies when the skies opened up. \n\nThat is when we first noticed we needed new windshield wiper blades.\n\nKinda dumb, right? But, the only time we use them here in the Valley is after a car wash? Think about it. \n\nSo we stopped at this location on Northsight, next to former site of \"Al's Beef\" which is now closed. The folks who work there stopped me as I walked in and asked for the make and model of my car. Within ten seconds we were over to the aisle and had the correct blades for our car. WOW! What a great group!\n\nA funny aside. As we left, I started taking out one of the blades and began throwing away the plastic and cardboard in the outside trash bin. Another shocker. It was filled to capacity with old blades. Great minds, Eh?", "type": "review", "business_id": "loj-LzdcfSlCWUXRQEN7iA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "3LmlnHoIFMx0M5j97cJFGQ", "review_id": "p9lSvv1xlKNzUb4_rtq5rQ", "stars": 1, "date": "2012-10-29", "text": "Seriously?! With grocery stores like Fresh & Easy, Trader Joe's, and even Safeway around here, I wouldn't go to Whole Foods regularly, for ANYTHING, unless I was a bajillionaire. 1. It's wayyyy overpriced. I'm not sure if there's a Central Market around here as haven't seen one yet, but even that is better than this in terms of price! \n\nWe got a few items here, specialty items in bulk foods, for example. The wine and beer bar is cool, but unlike the Whole Foods in Austin, Tx, which was the epitome of awesome, (2) one can't walk around with beverage in hand here. Too bad the rules are so stringent about that, because if I were shopping with a glass of wine, maybe I wouldn't notice the horrendous prices quite so much.\n\nMy 3rd complaint is that when we ordered coffees from the coffee stand there, my mocha and my boyfriend's latte tasted like motor oil, after taking forever to be made, and the girl saw me swipe my card but THEN told me she \"didn't have a register person\" and I wasn't able to cancel the transaction....so then we had to go back through the main grocery line again. Grrr. I left unsatisfied, uncaffeinated, and feeling like I had just wasted ten bucks on coffee that we ended up pouring out. \n\nThey get one star for having a wine/beer bar at all, but then I have to take that star away because the bar tender said they sold the most beer and wine of any Whole Foods in existence (I call bs - the one in Austin is twelve times busier and people can shop with their beverage of choice, and they have a bunch of restaurants there too so it's truly an experience - it dazzles). This leaves one star for the supply of bulk and specialty items they carry. We went to Trader Joe's after, got twice as much stuff, and spent half as much money. Sayin'.", "type": "review", "business_id": "dC6rDLGRoch_DOZk5kLkWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "ufCWA2XlR7fS4rC-Y6y4uw", "stars": 5, "date": "2007-07-20", "text": "I love Coach.\nStylish and trendy without spending an obscene amount of money on a bag. Sure they are still a bit more pricey than a purse at Target, but you are paying for name. The sales associates are really nice and won't hesitate talking to you. I only have a few things from Coach because usually I can't justify spending to much money to accessories, but anything you buy here you can use forever. A coach bag will probably never go out of style.", "type": "review", "business_id": "qzGYgpNThpVDuwYDYbU5pA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "w-7lJmMib10WNuMpnrmKUA", "review_id": "ep_K1iMFgQHVk_ZzWdDwFA", "stars": 5, "date": "2012-05-08", "text": "Amazing place for exceptionally good beer and time with friends! Minimal menu but great collaboration with other local vendors and ordering for delivery at their location is encouraged! Their beer recently passed Four Peaks as my favorite too, not an easy feat! If you're on the fence at all about checking this place out, do yourself a favor and just get yourself there!", "type": "review", "business_id": "c2WLZLpvNG2VLOfjjqKrkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r8nJMwYV5rxutGgm1_QtpA", "review_id": "ap_Xq0JA7MIkLhf0CnojeQ", "stars": 5, "date": "2012-08-30", "text": "Humdinger! \nWhat more is there to say. It's the best sandwich ever. It tastes even better on the weekends when Kids Eat FREE! If you have a larger family ( more than 2 kids ), this is the best deli in town.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "Db5IKqE1M2iP5EnZNDroRQ", "review_id": "J60wdy1q0L9dFGg9YUXscQ", "stars": 2, "date": "2007-09-23", "text": "Based on the reviews from some of the people, I would have to disagree. The gelato is not that great. I'm a little perplexed by the near unanimous 5 stars. I seriously don't think these people in Phoenix haven't ventured past AZ state border. I've had gelato here, and I thought I was eating Coldstone.", "type": "review", "business_id": "LjqY98zL96sem_PxC6ZG3g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "3dno9Y7mtvi2tq6IfMpDeA", "review_id": "ceJDF9JUVMcC409tkStYMA", "stars": 4, "date": "2012-07-13", "text": "Sorry for my lateness but I wanted to update everyone that after my review I was contacted by management, apologized to, and asked back for another chance. I WILL be back just as soon as it cools down and update my review then.\n\nEveryone deserves a second chance to make things right.\n\nI appreciate the professionalism and attention to customer service. I'm looking forward to it.", "type": "review", "business_id": "2OY8xs4aqOt8eTnYokdrww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V9vStLuNc4aqZO_GK2VTuA", "review_id": "JMByv-CJjPsZwy3jVxVsaQ", "stars": 3, "date": "2011-06-28", "text": "mid-afternoon is definitely different than dinner. still tasted good.\n\nwe usually get the layered dip, it's totally messy and not as good as i think it should be, but i like it anyhow.\n\ni get the durango burro and matt gets some combo monstrosity.\n\nservice is...meh, average. queso is tasty.", "type": "review", "business_id": "jCOTob1avPH52RNuniylkg"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "WaFiEBO5YcbwhthmYplNGQ", "stars": 4, "date": "2007-07-02", "text": "This would typically be a 3 star review, but it gets another star for the following:\n\n* Great air conditioning\n* Arizona's only Neiman Marcus\n* Hilarious people watching\n* Great happy hour haunts in the basement\n* Everyone here has a better tan than I do \n\nScottsdale Fashion Square is large and in charge and is definitely a sprawling spectacle to see at least once. There's no denying that it's a local institution -- even if the store mix is a bit too pricey and exclusive for some.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zqfNAOCE1s_z-21Qs1wdeQ", "review_id": "JpW0P8SMMDpMiKXNVwOVrg", "stars": 2, "date": "2009-11-16", "text": "Its was just OK!\nLiked the fresh jalapenos option, fries hardly had seasoning, was a bit pricey, but filling. Free peanuts, but wasn't sure if it was ok to throw on the floor. They use the same color scheme as In N Out which I thought was humerous. I'll still give it another try in a few months.", "type": "review", "business_id": "ahKN6wh6z2vZsd8C7AyG5A"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "clTYUJCL-rHnVIS2WePRwA", "review_id": "8YWzrY18uC2yx3sM-cPqWg", "stars": 5, "date": "2008-02-27", "text": "I was initially going to give Riva's 3-stars, as they're really just like any other Filiberto's/Umberto's/Roberto's/Ernie and Berto's out there, except for a couple of small differences.\n\nFor one, everything seems to be just a little bit more fresh there. It's probably not, but it tastes like it. And secondly, their little salsa bar is killer because their green salsa has plenty of flavor and they always have fresh pico de gallo out there, a must for any burrito.\n\nThe California Burrito, with carne asada, potatoes, pico de gallo and cheese, is a must, as is the standard Carne Asada Burrito. But the real winner here is the Carne Asada Fries. A metric ton of carne asada piled on top of freshly fried french fries, sour cream, cheese and guacamole for only $5? Can't be beat, especially if you're hammered and it's 3 A.M. \n\nNot a classy joint, not a place you go if you're wary of stupid crap like \"health code violations\" (the best places never are), but definitely a late-night hot-spot for the Mill crowd. Lovely.\n\nAnd it's not for sissies that don't like ham in their beans either, damnit.", "type": "review", "business_id": "vSEFzop2GDXsIWTLxIGMiw"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "fhV21-QB6n402-J9vR-7cQ", "review_id": "PALOuX3DpRD7VjbXnclzKg", "stars": 4, "date": "2008-04-15", "text": "We stopped by Switch the other night after getting raped by the IRS and while we were still feeling quite sad and pathetic. We wanted something casual, inexpensive, and fast, and that is what we got! \n\nService was great! We were one of maybe 3 inside tables and a full patio, and our waitress was fantastic. She was very attentive and kept our drinks full.\n\nWe had the wedge fries, a weakness of mine, and they were pretty good. Not great, but definitely good.\n\nThey had several vegetarian options, and I chose the Chop salad, which was SO yummy. So yummy in fact, that I have been trying to duplicate it at home for days now.\n\nMy husband had the turkey berry sandwich, which I didn't try (no meat for me), but he said it was good. \n\nWe would definitely go there again. Try it!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "FU9C7AyE3ddFQEUUxgnGvQ", "review_id": "9tarrykdGGshFz6hpRfrFw", "stars": 5, "date": "2010-07-15", "text": "He's been the top vote-getting General Dentist in Phoenix Magazine for three years in a row for a REASON, folks. He has an office in Chandler and in Mesa but even if you live in Minnesota, he's worth the drive.", "type": "review", "business_id": "vFOdpkM03mQdoQ7zP7FqpQ"} +{"votes": {"funny": 7, "useful": 8, "cool": 9}, "user_id": "fYuX1PTENpzA7uMyFQzOsA", "review_id": "7yzwfbO6Pwd3ViD9rKbRIA", "stars": 5, "date": "2011-11-27", "text": "I have long been a fan of AJ's and lucky for me, they didn't open a location on the West Side of town until after I moved back to California. If they had, I would have been more broke then I was as a single working mother.\n\nThe daughter and I stopped in before her hair appointment for some coffee and pastries and then I came back in once her hair was getting done. The first thing I did was order some iced tea from their coffee counter. It was absolutely delicious iced tea and very reasonably priced. I want that tea now, I think it was pineapple or something yummy. \n\nI perused around the store, picking up some Goldwater Salsa and a stuffed Cornish game hen to cook later in the day for my Grandma from the butcher counter. I was thrilled that they still had the stuffed fresh hens for the same price I used to pay $4.99. Something inflation hadn't touched.I also picked up some huge honey crisp apples (something again Grandma can afford but won't buy for herself) and a small bunch of flowers for her. \n\nNext time I am in town, I am going to hit up AJ's right away for some iced tea!", "type": "review", "business_id": "UWc8_M-ecCNLfrkIzwwRQA"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "WpOXBiNf7vmRxZf1oTDncg", "review_id": "qmkpZSuY2zvAQwn4fQqfIw", "stars": 1, "date": "2008-08-12", "text": "I went in once looking for Canidae. Which according to their website bold print they carry, but not the fine print. They don't carry it in all of their stores. My dog has food allergies so I'm cautious about changing her food quickly but since it was about 7 pm and I was pretty much out of food on this day, I figured some food would be better than no food. \n\nDuring my visit I learned many things. Apparently Canidae is a inferior brand and ripped off its ingredients and packaging from Innova. Innova is a far, far superior dog food. Innova is awesome, Canidae is for chumps. Innova is also more expensive and a smaller bag. Nothing I couldn't afford but annoying none the less. Not wanting to create dog food controversy I bought a bag of the morally superior Innova.\n\nBut when I checked out I was asked about four times whether I realized I was buying nibbles instead of bits. \"You know you have the nibbles. Are you sure you want nibbles? We have bits if your dog prefers bits\".\n\nShe's a 70-lb lab that will eat anything except for vegetables. I mentioned that the nibbles were fine.\n\n\"Are you sure you want nibbles? We have bits if you want bits\"?\n\nDude, just ring up the freaking food and get me the hell out of here. As expected, my dog ate the nibbles. She felt superior for the month supply of Innova that she ate. Then she went back to the ghetto and ate her inferior Canidae.", "type": "review", "business_id": "lBRCMN7wNn-BKUsaOXJRow"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3CcA1joMyDwWw3en9H6ecg", "review_id": "9gA595Ij6IUdecVwBMgI6A", "stars": 5, "date": "2008-08-22", "text": "I love this place! it's a cultural experience! I think even if you are Mexican, this place delights all the senses!\n\nI love the tortilla department! 36 freshly made yellow corn tortillas for $2.50!!! \n\nthe ladies at the meat dept were fantastic!\n\nThe wall of spices, herbs, and chilis was incredible.\n\nI did not have enough time to sit and eat there but that's the plan for the next trip.\n\nI came home and made shredded beef tacos with all the fixings.\n\nMy rec is come and linger and enjoy the sights and then have a great lunch either at the food court or at the restaurant next door.", "type": "review", "business_id": "VXIkI9_EbDbYHeO9IzKjJg"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "nifQuBZYwHNnGLUU105EZQ", "review_id": "3NzDi8_xfY9BxKWMbeudPg", "stars": 4, "date": "2008-03-09", "text": "the things I liked:\n\nthe cart.\n it was much smaller than a regular shopping cart, but somehow our baby carrier fit in it with-wise. * Update ( they got rid of the small carts.)\nYou can fill it up and not spend $300. This has happened to me before at Fry's, and its a bummer.\nSince they are new, they are the cleanest they will ever be. I have a huge dirty cart handle issue. F&E like most grocery stores have the disinfectant wipes but that grosses me out more for some reason.\nthe steering on the carts was easy like ikea's carts with out the crazy hydroplane maneuver.\n\nThe food.\nEverything F&E brand had very minimal marketing on the packaging which made me feel like i was purchasing it for the quality of food, not how nice the fake prepared image on the front looked. \nI have yet to taste it though, ill update when I do. * Update (Prepared food is kinda hit or miss)\nThey have only 1 or maybe 2 brands of the same exact item which makes decisions easy, either you want it or don't, no comparing labels and whatnot. which makes you end up buying less stuff.\nIt also makes for a shorter trip to the grocery store. No more putting off going to the market. Even though I have managed to make myself only shop the outside of the gigantic grocery stores (Produce, meat, dairy bakery) it still takes a long time to trek through the store.\n\nLast grabs.\nIf you needed they have a small pharmacy aisle grocery brand pet food, and baby care/household aisle. shampoo.... whatever.\n\nOne of these things is not like the other...\nso the chip aisle has F&E brand chips and cookies and all nicely packaged and then at the end were flaming hot Cheeto's? maybe thats the part where they sell local goods. frito-lay is the best we have?\n\nThey do not take American express and watch out for the fine print on the coupons. * Update ( They now accept AMEX)\n\n$.\nSomethings cost much less than at normal markets, and some were the exact same. \nthey also discount Items that are close to their expiration, so you can go ahead and grab that milk instead of pulling 3 out looking for the latest expiration. same thing with baked goods, meat products and produce.\n\nyou will definitely see me there again.", "type": "review", "business_id": "Zw5fzZhYmrLgdM0CVmGTeA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vYSCKlHb-hBhI2EClhX41A", "review_id": "MCx5Huqvz4riDCz6NVB-lg", "stars": 3, "date": "2012-08-15", "text": "Not super impressed. The food was just ok. My friends said the French toast was good, but my Goat cheese, tomato and mushroom omelette had maybe had an oz. of goat cheese. At 9$ it was a rip off. The potatoes were good,but nothing special. The mimosa was excellent, but made from Andre, so after consuming it I had a headache. The service was slow, but they were good about refilling my coffee and water. Just an ok experience.", "type": "review", "business_id": "b1rF_Y3xbdPwP_z9NHFMjQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "t7riYnvm8v4LjawQ14YaeA", "stars": 5, "date": "2008-07-10", "text": "*** I gave this 5 stars based on the best Mexican food I've had in AZ, not based on white linen and waiter service, just an fyi***\nI won't write too much as it seems that everyone already has. Both locations are GREAT. Some of the best \"homestyle\" Mexican I've ever had. I usually get the double wrapped enchilada combo that is pure saucy heaven! A great place to call ahead on a friday night when you're exhausted from work and not doing jack, pick up your food, pick up a six pack of Pacifico and head on home. Happiness is a sure bet!", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pzlW6_R3eloYVQKnDAP1Ow", "review_id": "7FGx9bmNvfUzm4Aqv2kpag", "stars": 1, "date": "2012-08-27", "text": "I was very disappointed in my encounter with them today. I have been going there for years and thought they have done a good job. Today I picked up my Tori Burch purse that I brought in to have a shoulder strap repaired. The thread they used for the repair was a light cream color. The purse and the stitching is a mustard yellow color. It looks terrible!!! They tried putting some cream colored shoe polish on the tread, no improvement. Now the thread just looked dirty. I told them that I was not at all happy with the repair. They just kept saying in thick accent. \"It's good, I fixed it good\". They would not refund the amount I prepaid, (prepay only store), or redo it with the correct color thread. Just kept saying. \"I fixed it good\". Looks like I'll be finding a new shoe repair place.", "type": "review", "business_id": "5llLE472tXsK620Hw14bqQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "7jWmd57QoJnq2q4QyvVS2Q", "review_id": "rDFViMA2UzKNCAJP40JqOg", "stars": 4, "date": "2012-06-18", "text": "This place is always a hit. Even when you don't know what you want, they will help you decide. The baristas always have great recommendations. Often times I tell them what I am in the mood for, often times I let them know I love Nutella, and they give me suggestions. They also will make just about anything on the menu and mix it up for ya! This past time they mixed up a mocha freezeacino with nutella. Pretty darn good, tasted less watered down than sbux.\n\nI have gotten a S'mores coffee (not that great) but you know what? Its the thought that counts, what other coffee shop has a drive thru, local bakery items, friendly and helpful baristas that dont rush you in ordering, and unique drink ideas? HMM 32 Shea does. \n\nCome here, check out the variety, and the local flavors. You wont be upset that you did.\n\nLocated over on the Northwest Plaza on Shea and 32nd just past the 51 freeway. Go there. Tomorrow morning..", "type": "review", "business_id": "XU5Fb3TosXDUJcNRWQM5cA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ezxgXFeFA15ooTd1d_rdeQ", "review_id": "HxINioRtsV4FsMCmubjiig", "stars": 1, "date": "2010-09-03", "text": "pretentious and bad service - attendants are totally clueless (though I feel for them if management makes them wear the costumes they wear). overpriced fashion brands. if you want to spend $200 on a flannel, there are MUCH better options out there. run in and glance at the sale rack, otherwise avoid this place like the plague.", "type": "review", "business_id": "gMMAz-WbNpl_825lWbMnkw"} +{"votes": {"funny": 17, "useful": 10, "cool": 12}, "user_id": "du6KeE54IFbPiXpU3LOd1g", "review_id": "_UdpFKVDGxie0oAMHajvEA", "stars": 1, "date": "2009-09-12", "text": "I play squash racquet's, a sport favored by the east coast \"elites\" from them Ivy League schools, those snooty Britishers and the Pakistani leisure class:) \n\nWhy they let me play, I'll never know:)\n\nLast evening, we had a little tourney in which a group of us from the Village traveled to the outer reaches of Tempe to play a group from Lifetime Fitness:)\n\nIt was a jolly good, show, ever so much fun and our Village group gave the Lifetime group a bit of a \"Rodgering\":)\n\nSo it was with happy hearts and high spirits that we headed down the street to the post tourney repast at Skip & Jan's...let me start by saying that the Lifetime group picked this place, and it's almost like they knew they were going to lose and wanted to select a venue that would be the grimiest, greasiest, grubbiest, grossest spot to try to eat...they succeeded:)\n\nWhere to start...I know...the parking lot:)\n\nWhen we arrived, the total Kelly Blue Book value of the 50-60 cars in the parking lot was about $832...we raised that by several orders of magnitude, just by driving in...this parking lot hasn't seen a lot of traffic from the Mercedes/BMW/Lexus/Jaguar crowd (and may never again:)\n\nAfter I safely parked a block or 2 away, I went inside and took in the look and feel of S&J...crappy old wood paneling...tables and chairs from a circa 1955 high school cafeteria...an intriguing mix of flat panel TV's, regular TV's and OTB results screens (yeah, you can bet the ponies here...the sport of Kings, in a slightly less than \"regal\" atmosphere:)\n\nThey must have 20-25 pool tables...faded felt...and a whole bunch of people playing pool (and frankly looking like they weren't enjoying themselves...extremely tight and serious expressions on the faces of the people playing and watching...aren't games supposed to be fun? :-)...I suspect there was gambling going on:)\n\nThe smell in S&J can only be described as \"extreme humanity\"...the place smelled like it has seen a century's worth of spilled beer, cigarette smoke, BO, vomit, urine, spoiled food and every other aroma that humans create for themselves...remarkable, given the fact that this place can't have been here for more than a few years...how did they do that so quickly? :-)\n\nS&J has menus, they have some sort of kitchen, they have Jagermeister on \"tap\", they have a bunch of beers on tap and they had a buffet (or \"boofay\" for my friend Ryan C) set up for our group.\n\nIt was supposed to be a Taco Bar:)\n\nS&J provided a table full of taco \"fixin's\"...the centerpiece of which was the taco meat hot tray...Holy Crap, was that disgusting! :-(\n\nThey told us it was ground beef, but I know my beef, and I don't think this was it...this was ground \"creature\"...possibly some sort of unfortunate non-distinct animal which happened to be near the kitchen when duty called.\n\nI kid, of course...as far as I know, this was indeed, \"beef\"...just not very good \"beef\":(\n\nThe hot tray holding the \"meat\" looked like a relief map of the Hawaiian Islands...small mountains of \"meat\" rising out of the ocean of brown/orange grease that was the real body of the dish:(\n\nBut, I was starving (a banana for breakfast and nothing else) so I tried to make a taco.\n\nI decided to forgo the slotted spoon that everyone was trying to use to fish some meat out of the soupy brine, and use some tongs instead...my idea was to try to squeeze as much grease out of the concoction as possible...I was sort of successful, but in doing so, I probably squeezed any flavor out as well:(\n\nI got back to the table and tried a bite...not good...I added several shakes of Cholla and tried another bite...and that was that:(\n\nOne of my buddies had decided to forgo the mystery meat tacos and ordered wings from the menu and offered me one...I'm not sure what the deal with the wings was, but the wing I tried seemed to be boiled (no, not \"broiled\"...boiled) and then dipped in buffalo sauce...not crispy, just wet...all the way through:)\n\nThen they announced that Karaoke was going to start soon...and that was enough for me:(\n\nAdding amateur singing to this tableau would have just been too much:)\n\nStill, it's not all bad news...the tires and wheels were still on my car when I was ready to leave...I didn't become immediately ill (although I had kind of a rough morning, this morning).\n\nThey say shared adversity can make teams grow together, so I think I should thank S&J for making the Village Squash group nearly invincible:)", "type": "review", "business_id": "ht17atGW3tP8dFeiJkXI_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RvaQ6i9CdTpF_1MzKlUUaA", "review_id": "YWJJ14UU6t1DYPnZwtVJmQ", "stars": 1, "date": "2011-01-11", "text": "Pop the Soda Shop has closed its doors last month.", "type": "review", "business_id": "lwaLY3V7FyG_e9QUTP_N_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4HFgiEBxnR4jh1diIvszDQ", "review_id": "hsnYdZvp03XaUq3LS5D_Pg", "stars": 5, "date": "2012-04-18", "text": "The \"Cheers\" of central Phoenix.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "lu3ehH0xw46KwwtsErX8vw", "stars": 3, "date": "2012-10-19", "text": "I think I went the wrong way, but I ended up doing a very isolated trail that wasn't too scenic, but at least it was quiet. It sort of just \"ended\" though and didn't wrap around. So then I walked the same way back which was kind of boring. I like trails that are on loops.", "type": "review", "business_id": "WbcGeIwJ3wq0tb1-3z9pig"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "Tyi5MvquA5Hbf4t2WLoDcQ", "review_id": "8sQrB4IBmIWnh6pLDArtOQ", "stars": 5, "date": "2012-06-22", "text": "We just sold the car we bought at Carmax that spawned the original review here almost three years ago.\n\nAs with the purchase, the sale was ridiculously simple. The appraisal took about 20 minutes, and came in ABOVE Kelley Blue Book \"excellent condition\" trade in value -- and the car was in good - very good condition, but certainly not excellent.\n\nA fair price, and no hassle. At a car dealership. Who'd have thunk it?", "type": "review", "business_id": "cY4R1DvFA5iuM07D11p-WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Br9mpMhkVunsp8Un5GpYWA", "review_id": "8FwqFcl2Ez1NoovZr1XoHA", "stars": 5, "date": "2012-01-31", "text": "Welcome to Downtown! Finally a little area with a few great chains. They also have PARKING! The parking is located on the east or south side of the building. We grabbed Jersey Mike's on a Sunday afternoon and took it home to eat. They are the best subs we have had. They are packed with meat and cheese. Might be little pricier then blimpie, but with it due to the over load of meat!\n Check out a Jersey Mike's near you!", "type": "review", "business_id": "ZlvVCqFKTMK4rBkTQzVBpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bz-Ju0oa06-var9NnVl1vg", "review_id": "S31ug5pvWwQpG7WpN8Cnyw", "stars": 2, "date": "2012-03-05", "text": "Ok so wanted to try this place out since I heard they were really good so I did and man I should have gotten the whole scoop on how long there wings take. After 45 minutes I asked what was wrong with our order especially cause there was only three other customers in there the employee went ahead and told me they threw my wings away cause the other ones were too small. I was like really I would have taken it by the end of the hour we finally got our wings and compensated by giving me one wing extra. Needless to say we ended up going to another restaurant and getting served fast. Call ahead an hour and you'll be ok there wings are good but an hour for ten wings maybe not...", "type": "review", "business_id": "a12JKFiqBVyaUfTWNaAzQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ar7DM2UX6e7LPsNfZlhJfA", "review_id": "YQDaR2OU0lDOOLAyaWWJrg", "stars": 5, "date": "2011-08-13", "text": "Ok, these guys get five stars from me for many reasons. Before my visit today my other experience with them was for my wedding cake. They were very courteous and helpful, although I ended up going with a cheaper option. Today, however, they definitely earned five stars.\n\nI was there for a meetup event. We got a tour of their facilities. The owner personally did the tour, and did a great job considering I brought my toddler, who screamed through about 75% of the tour. At the end, he gave us a cookie and thanked us for coming. \n\nI know that some people think toddlers should be locked away so as not to annoy the general populous, but it's nice to know not everyone feels that way :)", "type": "review", "business_id": "YgqexscIgNoMBAO__J97zA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "N8espxAsXtnQwrV1N6bTEg", "review_id": "ujJQzYdRFiD4gOiaG_WLMw", "stars": 2, "date": "2011-03-10", "text": "I've been here four or five times and never been too impressed. The atmosphere, art installations and eclectic seating gave me high hopes. The location is also unbeatable, walking distance from my place. But the service has always been sub-par, like it's a bother to take my order and converse with me. Everyone here, including most of the clientele, seem way too cool for school. The iced tea, my usual, is good; the iced coffee is great-tons of flavor and plenty of body. Espresso drinks are pretty standard for your indie coffee shop. I've asked for their vegan pastry (which changes daily) three times only to be told that they ran out for the day. I know that this happens, and I love that they freshly bake their goodies everyday and have a rotating menu, but I would also like to try the vegan scone sometime please.\n\nToday, I ordered a strawberry-raspberry-cranberry smoothie ($5 for a small!) and confirmed with the boy behind the counter that the smoothies are vegan/non-dairy. He said yes then informed me that they use Naked juices for the base then just add fruit and ice. (Naked juice! So that's where the $5 price tag comes from!) Three minutes later, I was handed a delicious looking smoothie topped with...whipped cream...?\n\nReally?!", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "acOfAooftS7jdWlhyI0CQw", "review_id": "or8IcCkFhvwb7nZJYkuB5w", "stars": 3, "date": "2010-12-01", "text": "Decent Chinese food. I go often for take out. It is easy and convenient for those in central phoenix. I have had times where some of the food is great and other times it was bad. Support local restaurants, this beats panda express!", "type": "review", "business_id": "tyHtzC4k-MvsTZOBZ8YaWw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "CwNFSTYMitNBkw0k2tHWtg", "review_id": "K7MZYm_yL65WzvjKaWaoOA", "stars": 5, "date": "2009-05-20", "text": "Pure Bliss - I haven't had a quality meal experience like this in a very very long time. \n\nThe full 4 course dinner was stupendous and well worth every cent. \n\nYou MUST try the Yin & Yang Martini! It was a very creative and well presented drink that had me all smiles. \n\n\nI had the Smores & Chocolate desert and it was hands down my favorite (I've tried at least 5 others).", "type": "review", "business_id": "FOfhEC6rN23RQaUlsR2byw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGuemQk8wCFyohPz3Z-big", "review_id": "Jlscuo6QCLcntzxKYU-6IQ", "stars": 4, "date": "2009-02-05", "text": "I hate food shopping. Okay that is probably an understatement. When I go to a big market I am so overwhelmed and usually end up with a million things I don't need, while forgetting the things I do need. Fresh & Easy is small, but it has most things I need. I like that they have meats and chicken that already have seasoning on it and are ready to cook. This makes shopping extremely easy. I also really like their brand of food, especially the pasta. I think it's some of the best tasting store bought pasta I have had. Don't go here if you need to buy kitchen supplies like cake pans or cookie sheets. They simply have food, drinks, wine and beer here.", "type": "review", "business_id": "thlCF7B2DIhkOuyQXj6liw"} +{"votes": {"funny": 12, "useful": 3, "cool": 3}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "kzDJ496oQJupxnwxSpBL2w", "stars": 1, "date": "2008-05-27", "text": "Come on now, let's call a turd a turd on this one.. Waterfront is a stretch, its a canal, a stinking fucking canal.. leave it to the Scottsdale developers and planners to put a Scottsdalian slant on the turd.. kudo's to them! However, with its chain stores and restaurants on one side and pretty lame so far on the other (Southbridge) this has become quite a giant and over priced turd. \n\nThose skinny Scottsdale bitches that hang out at Pink Taco, words of advice.. Fucking eat something!", "type": "review", "business_id": "c_Hgu6zirKI2l71TAhrTRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qTkUpkvALOBP4HEmnNFy4A", "review_id": "jjikxZjxt-7cyXJ_wG92PQ", "stars": 2, "date": "2013-01-04", "text": "I rather go to Native or Zipps... We have had bad expierence after bad expierence here. If you are craving wings, this isn't the spot for you.", "type": "review", "business_id": "7-4FxYXhNUS2lhpUb_q5-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ePduC-tSwrMQRjKI4Suh7Q", "review_id": "hh-QPFiZVCMgRA4mdQ50eA", "stars": 4, "date": "2011-11-28", "text": "Always good beer and good food. Well let me say the food is not super fantastic but it's better than a lot of brewery food out there. Spinach dip is good, nachos are always a staple, burgers could use a re-do. Salads are pretty good, pizza is mediocre. Wings are not half bad!! Sauce is pretty fiery! Nice!! Not a wussy sauce here! But I do love this place and the patio. Beers you can't go wrong with. Very flavorful good beers. All I ask is just a bit more quality in the food. Thats all thats wrong IMO or not really wrong but something they could improve on.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "RAWy3YCE-jwfyuGvwzUaqQ", "review_id": "MS0zCVCzwz1Bl2rzSI-15w", "stars": 5, "date": "2009-01-11", "text": "This is the best Seafood restaurant I have ever eaten in. I have to say it is not my kind of place. Very Scottsdale. But Man they know how to cook. I had a Special Shrimp dish of the night that was much better than expected and a very nice portion. The Calamari was 1000 times better than any other I have had. I am not a big fan usually, but this was different. It was not fried but pan cooked and even people that didn't like Seafood tried it and loved it. The Wedge Salad was good. We shared the Mac & Cheese, Mashed Potatoes and Peas. I felt the sides were the only things that could stand some improvement. I had one of the tasty Mojitos and some Yummy Creme Brulee for desert. I am super glad this place is far away because I would want to go all the time. It is a bit pricy, but I felt it was worth it. The servers were really cool. Not uptight at all. The only thing I hated was they have rest room attendants. Maybe it is just me, but come on. I should not have to feel guilty for not tipping someone just for handing me a towel that I could have easily gotten for my self. I have little respect for businesses that do that.", "type": "review", "business_id": "JEreQgso7MH_Io3DXGsEOw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gGNAr-cmCQUgA9B0QjVqAg", "review_id": "29gIHgYHr5qrHDgvohnqew", "stars": 4, "date": "2010-04-10", "text": "This park is always a pleasant experience. Honey and I like to drop by the dog park and then take a walk and make a big loop around the lake. It isn't the greenest park in Phoenix by any stretch of the imagination, but it does offer a pretty nice view and lots of space to enjoy the outdoors.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 2, "useful": 6, "cool": 0}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "2UK3nY_-cBhcsNIG0j3dMA", "stars": 2, "date": "2009-08-10", "text": "i am so disappointed with this place. they consistently do a half a--ed job. after many disappointing visits i decided no more wasting money on crappy car washes from there. alas, i ended up with a free car wash (fill up your gas tank 9 times, get a free wash!) so i gave them another chance. upgraded it to the vip (the \"best\") wash for $8 more. also had the floor mats shampooed at $1 each. the floor mats were filthy when the car went in and spotless when they were replaced in the car - what a bargain! if only the rest of the car turned out the same. \n\nwhen returned to me a good 40-45 minutes later, the inside of my little car was still quite dirty, a good amount of dog hair remained, and the center area where the cupholders, change tray and gear shifter are weren't wiped down. let me tell you, there was definitely reason to clean those areas. danny's started the job, but never finished, and lucky me! i got to spend more time on sunday to complete cleaning my car. i paid $12, but should have paid $22. at either price this remains a very poor value.", "type": "review", "business_id": "G12nLnHLETf2E2pPW6grxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EMc72I5KbhP76GI365zLaA", "review_id": "j9NJMtwT6XfjjGTq7VmIuA", "stars": 4, "date": "2011-09-28", "text": "Foodie from Cali here on business. Nicely done dishes with authentic flavor. Ling Shrimp to die for - at ridiculous bargain prices. 5 stars if they expand menu. Very nice family setting.", "type": "review", "business_id": "nlFlIeziD-4nNUF2B337Yw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "8T0evnkvRaTomru7ghPGeg", "review_id": "DhCil3hVnLpP19AyhFYEFQ", "stars": 4, "date": "2012-06-12", "text": "Given the dearth of German restaurants in the greater Phx area, this is about as good as it gets.\n\nHad the sausage sampler. The krakauer wurst was pretty unique. The bratwurst was good too, but brats usually have a pretty low bar to clear to be good.\n\nHad the Schweizer Schnitzel as a main course. Very good.\n\nThe meal came with a cup of soup of the day, which in this case was mushroom. Very good.\n\nYou can't eat ambiance/decor so I generally don't care about things like that but if the owners have a spare dollar or two they may want to paint the place and replace the drop ceiling. Neither of those things will keep me away but they may want to look into those things.", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "uOdEsOgPW48Ky4j8U8CEcw", "review_id": "rdYrEv2q__-rikfS54m36A", "stars": 4, "date": "2011-03-26", "text": "Only 4 stars because I have seen better. Nevertheless, AJ's is a great runner up to my personal favorite which is the thriving local business of Portland, OR called New Seasons. If you have been to a new seasons you know that AJ's is the close primo of find food grocers.\n\nI will one day visit the the other AJ's in town.\n\nThis place is a nice bike ride to from my house and has really nice employees...AND THE ONLY place near me that sells kombucha\n\nRelax and pleasant atmosphere. [like]! \n\nR\\_", "type": "review", "business_id": "Mng1FUcW-xRSdsDkowQm2Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9UK28WYQvS7aXyNfa_hLCQ", "review_id": "A4b-_Ja4o8AZu3ODZWrXwg", "stars": 4, "date": "2012-05-21", "text": "Like this location, fairly close to my house and open late. Whenever I'm in the mood for some fresh dogs, I jet over here. Highly recommend their ALL BEEF mustard and chili dogs. Check out the fries too, super salty, always fresh and leave you wanting more! Not a big fan of their pretzel or corn dogs- expect a little bit of wait, perfect hot dogs don't take minutes to make!", "type": "review", "business_id": "ZoyAoSEuihp9XDJrFrSgfg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eMmo2Fsn-CdGSd7pn-UeSQ", "review_id": "mqCgkT6BlvxFxoPrwqVsaQ", "stars": 1, "date": "2012-11-26", "text": "Hands down, the single worst public mass transit system I have seen ANY PLACE I have ever lived or traveled to (and I am an avid world traveler). \nI've been riding this system on and off (I vaccilate between non-Phoenix-metro cities and here a lot) for roughly 10 years, and yeah, for a few of those years I would also drive a car here and there, so I have a sound basis of comparison. \n\nThis is a joke compared to other cities in the USA (and abroad) that have equivalent populations. Hell, in NYC and LA, it's SOOO much easier to get around even though those places are larger and more densely populated. Phoenix is easily 30 years behind every other city-size comparable mass transit system that's out there. Get with the times!\n\nWe need: busses that run MORE than once per 1/2 hour (and that's at it's current fastest), busses that are ON TIME (DAILY, they are never on time. Always way too early without waiting, or way too late without apology), more stops, stops that have actual BENCHES or SHADE or POSTED INFORMATION of any kind. I cannot even imagine how travelers get around on this thing, nothing is ever posted with any relevant info or signage.\n\nEtc, etc, etc.\nBut seriously, just god awful and a complete joke to anyone who has ever experienced public transport anywhere else.", "type": "review", "business_id": "er20L6Wzviiin8OS9FqFmg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "lwppVF0Yqkuwt-xaEuugqw", "review_id": "Ue1JRuKUbAIgEjxNa_Eimw", "stars": 4, "date": "2009-05-10", "text": "This is one of my favorites stores to head to when I need the motivation that comes from new triathlon clothing and accessories. The staff is knowledgeable and helpful, without being intimidating. \n\nThey have a decent selection of women's items that are high quality and come with a high price - so I normally head there when I'm looking for race wear/accessories and go elsewhere for regular workout clothes. They do have some sale items, and recently I found some great Pearl Izumi tri shorts for half off - woo hoo!\n\n\nIt's great to have stores like this geared towards triathlons!", "type": "review", "business_id": "o0snahBUg0DYC5PIM0bz3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kk05snSafuIFK0lsxoMNzA", "review_id": "kyiRmJfVvZWBfwXq1NRm9w", "stars": 5, "date": "2012-09-03", "text": "Had a great experience. DId not feel gouged or pressured and our dog got the proper treatment for dehydration. Friendly staff. Prompt service. Special attention from Dr. Heinritz appreciated. Very professional.", "type": "review", "business_id": "s-jfTJnAIdyvIw2Fh2QcGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sdeN4Dj0GI4uXoxrFqxs2g", "review_id": "odTTd7Ym2kuHDSHxeMMOYQ", "stars": 2, "date": "2012-04-25", "text": "I heard nothing but praise about the food and atmosphere of this chain restaurant. \n\nI loved the look of this place inside and out. Great rustic barrels and old barber chairs in the bar area gave a unique look.\n\nService was friendly and fast. \n\nFood was less than desirable. Salad was nothing but iceberg lettuce (and I got a stump) with some shredded red cabbage. My pasta dish was spaghetti with a white clam sauce. It was too salty and there was a sprinkling of microscopic clam bits. \n\nI always take leftovers home, this time I didn't. While the prices are good it's not worth a less than average meal. Husband was equally disappointed with his chicken marsala. Chances of going back are slim to none.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "cTeWfsM-BLjmOHjhq3CoaQ", "review_id": "ZH9ZTGk56ZLkGtx2hM8GGg", "stars": 5, "date": "2011-12-01", "text": "awesome iconic eatery! whenever i visit az i make it a point to stop off at this ultra friendly, fantastic tasting joint. \n\nyeah, it takes a while to figure out the ordering process, but the staff is super helpful, and after the first or second time, one can figure out the system. it's just that everything is abbreviated which requires some thought. \n\ni usually mix 2 entrees to get different flavors. love the jerk chicken and fiery pollo diablo.\n\nalthough they are known for their snicker doodles, my dessert is usually ordering another entree to take home for later! \n\nhands down one of my favorite eateries. i wish we had one in minneapolis, mn...i would probably eat there daily for lunch, ha!", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "yi_jGkfR9r3ebTNrGyNHyQ", "stars": 4, "date": "2009-09-27", "text": "Well, our initial plan was to go to Tuck Shop as I've been wanting to try it out. Unfortunately two ladies got there 1 sec before us and got the last table, the waiting area was packed with a group just hangin' and they had a 16 ppl reservation for later. There had sitting available right away at the bar but I'm pregnant and my back is killing me so bar stools were out of the question. They were very apologetic, which I thought was nice considering if wasn't their fault. I'm glad they're doing well. So I asked my husband if he wanted to try District and off we went. Actually, I made a reservation in case something happened and well, we ended up there.\n\nNice and spacious, not crowded at all. They were part of AZ restaurant week and we ordered from that menu.\n\nShrimp sliders- I loved them! They should have a big version of it!\nDuck quesadilla- Very good as well, but I'm partial to anything with goat cheese.\n\nWe both got the country chicken steak and it was really good. Mine came 1 med, 1 small pieces instead of a big one. The med piece was a bit dry and the breading was slightly burnt. The smaller one was perfect, juicy and crispy. The breading flavor was really good, slightly spicy. The biscuits were awesome!! More of a cake-bread texture, light and fluffy and kind of sweet. Green beans were tasty as well.\n\nStrawberry shortcake whoopie pies with lime basil sorbet ( I think it was a sorbet)- It was good, but not something I'll order again. The pie filling was too sweet, even the tartness of the sorbet couldn't help it.\n\nService was prompt, no hovering or having to wait for too long and our food came at a perfect pace.\n\nGreat dining experience and it made me forget about Tuck Shop. I still want to try it though.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 9, "useful": 5, "cool": 2}, "user_id": "E0WWNXVze_sfDCbM0oMYvw", "review_id": "8BBl5FFZIacaNYjqFmvFww", "stars": 2, "date": "2007-09-12", "text": "Are you stalking me? Heres a hint: I'm not at Myst. Ever.\n\nThe crowd is too young (think ASU's entire Greek scene), too wasted (think puke-your-face-off drunk) and too retarded (think OHMYGOD we SO just got into a club and were only NINTEEN!!). \n\nI freaking hate this clucterfuck. \n\nHouse music is not my thing, watching underage girls snort coke in the bathroom is not my thing, and fighting through people who are under the false impression that they are cooler than me is not my thing. \n\nThey have world-renowned DJs in there every once in a while and a pretty decent chance of celebrity sightings which brings Myst to a whopping 2 stars.", "type": "review", "business_id": "hCS5eV0SCAY9LeeL36lz8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xgqxRjWRQvGPr8h3IA8OwQ", "review_id": "wTSwC4Ay7f2eEHBQ0tL9yQ", "stars": 3, "date": "2011-11-14", "text": "So.... our teenage daughter ran out of toilet paper.\nNo problem, right? I'll just use paper towels... for 2 days.\n\nYeah, it was a mess and Roto Rooter fixed it. \nFor only $400.00.\n\nso then... they come back the next day to snake a camera thru the pipes.\n\nI think maybe they were looking for problems because well, they found them.\n\nPrice quote.... between five to eight thousand dollars to repair some pipes.\n\nErrrrrrrrrrrr..... I don't think so.\n\nDid they do a good job with the problem at hand? Yep.\n\nWere they expensive? Yeah.... I guess\n\nDo I think they're now looking for an extra paycheck? \n\nWhat do you think?", "type": "review", "business_id": "7MgPdPftHcoxeZlmPTewTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vr6mx8xKm_FyBUkmLweRIw", "review_id": "XUcbXq5_eScUH3sRiVM6Qw", "stars": 3, "date": "2009-12-31", "text": "I have been here for breakfast twice. Both times the food was very good (love the biscuits and gravy!). It is a bit of an older building and everything looks a bit run down. Service has not been phenomenal. Last time we arrived the host person had just left to seat the couple that walked in before us. The manager and FOUR additional servers were standing at the cash register chatting. As the entry way is small..I could hear their conversation. It was just chit chat...not a meeting, nothing important....but apparently not one of them could see fit to either acknowledge our existence or walk us to one of the many open tables. After a few minutes the host came back and took us to our table. I assumed the manager just felt that taking a group to their table (or asking one of the wait staff to do it) was beneath her. But then as soon as we were taken away, she promptly seated the family that walked in behind us. Grrrrr... \n\nI enjoy the food, the portions are large. The food is very heavy comfort food. Service is so-so and the manager does not seem to care about her customers. If not for the service I would give them a 4.", "type": "review", "business_id": "y0weNFCIJF9bTgBbFST86A"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "x0x4lsz_9BT-Hjr7TrzMKA", "stars": 2, "date": "2011-05-21", "text": "I went to Eddie's House last night with the BF and two friends for restaurant week and it was a terrible experience. First of all, I had made a reservation for 7:30 more that a week in advanced and we waited until 7:50 to be seated. This was a bad omen, because, as it turns out, the whole night was made up of waiting. Our waiter (who did not share his name, unfortunately because I would tell anyone to avoid him at all costs) was terrible. TERRIBLE. He came by 4 times before taking our order when we were ready after 5 minutes. Each time was a weird excuse. First time he came by I asked for a restaurant week menu, he said 'a restroom menu?' Why would I say that, then I ordered a glass of moscato and he's like the XXXX (whatever brand it was) and i looked down and it was the ONLY moscato.... I was like ya... WTF? So I screamed what I wanted and he's like oh.... sorry.... I can't hear. Then he said 'Oh hey, I'll be back to explain things.' Explain what? we're clearly ready! 'Oh hey, are you ready to order? Well let me go take the order of that big table back there and I'll be back to take yours' (real quote) WHAT? Seriously? We waited over 40 minutes to order. What's worse, is that we looked over like where the ef is this guy, and he was chatting at the bar!!! What, were we not wearing the right clothes? Were we not hip enough to be served? Or was it that we were ordering off the restaurant week menu, are we not ordering enough to get service? Come on.\n\n So he finally took our order, and we each ordered all three courses at once, because who knew when he would decide to come back. We got drinks, everyone got beer, except me who ordered the moscato. This was good, but was served in basically a thimble, it was the smallest glass of wine I have ever seen. Then we waited... and waited... and waited. We ate the whole basket of bread (which was great, but overshadowed by our terrible service). We got our appetizers, we had at least one of each available (a peach soup, a salmon flat bread, and a fetoush salad). The soup was really weird, not bad, just different. The salad was overpoweringly oniony, but still tasted good, although it was supposed to have toasted pita and had one tiny piece... and supposedly the flat bread was good, but I don't like salmon, so I didn't try it. Then the waiter came by and said 'oh we're really busy tonight, that's why it's taking a long time for the food) Notice there was no apology or accommodation of any kind. He also asked if we wanted bread with dinner, we said yes, but no bread ever came... weird. \n\nWe waited and waited and finally out food came. I ordered the chili chicken, the two boys ordered the meatloaf, and my other friend ordered the shrimp. I thought the chicken had a good flavor, but was really dry. The meatloaf was fantastic! It was really quite delicious, with onion strings, mushroom jus, and mashed potatoes... yum. Supposedly the shrimp were really spicy, but again, I didn't try it. We ate everything, so again, the food was good, the service was awful. \n\nSo then the waiter comes by (about 10-15 min after we had finished) and says, oh do you still want dessert? um.... yes, we ordered it and it comes with our meal.... he says 'oh, cuz I think we just ran out of the pot de creme, but I'll look' Well two people had ordered the pot de creme TWO HOURS AGO!!!! Why weren't they left aside? 'Oh we had 200 more people show up tonight that expected' Well, We had a reservation, so it is not our fault that you cannot staff your restaurant appropriately or turn away customers when you are too busy to handle new diners. It does not make sense. What kind of greedy restaurant is this that they can't refuse a table when people who told them they came to eat there can't even get anything off the dessert menu. It turned out they had one left, then the other person who ordered it said, oh ok, i'll have the peach crisp then....'oh, well we're out of that too cuz like it's made fresh from peaches and we didn't buy enough for all of the extra people....' \n\nMaybe if we had been served in a TIMELY manner instead of over two and a half hours, they wouldn't have run out. Oh, and maybe if the jerk who was our server had put aside the desserts for us when we ordered it over TWO HOURS before the time when we actually got dessert, that would have been nice too. The desserts were good, the pot de creme was the best, the rest of us got a 'tiramisu' which tasted like cookie dough ice cream.... not exactly what I want in a tiramisu, but fine, I guess. \n\nFinally, we get the check (around 200$, so clearly we didn't spend enough money to warrant any service) and we right out how we want the bill split between the two couples, The waiter comes by, and the BF starts saying, oh we wrote down the amounts we want on each card. The snarky jerk waiter says 'Oh, you mean follow the directions, ok.' So much attitude! So rude. I wish we left no tip, cuz that's what was deserved. NEVER AGAIN.", "type": "review", "business_id": "He9Dar4bk2vyeiPC7TkUgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vm3gOJgj0vm7LcPbCy81jg", "review_id": "LcM1Fv1KH8HObAF3S9wc9w", "stars": 5, "date": "2012-12-14", "text": "Love Sam's Club! Especially those little red velvet cupcakes and Chocolate wine ... the best! We always do most of our grocery shopping here. Always a treat.", "type": "review", "business_id": "X8tfJzFU-pNxWnZk1la03Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ho8wr8j_v1eUIR7ql-IZqw", "review_id": "lui8As2bSMnGyfylWuWymA", "stars": 4, "date": "2011-05-13", "text": "Excellent cheap Mexican food that tastes as good as any Mexican restaurant.", "type": "review", "business_id": "qgJZUKNVY-LbGKk6XEP3JA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "oSeZjRZ4fW1jRBqCLbXw8A", "review_id": "71vU5dwqlNFw1BgBIdHpug", "stars": 4, "date": "2010-10-28", "text": "Breakfast. The best crispy chicken fried steak and eggs this side of Texas. Served with country gravy, hash browns and garnished with a slice of cantaloupe and honey dew melon for under $7. The green chili cheese burger is also one of my favorites, served any time of day or night. Only down side is getting past all the unwashed morons gambling and chain smoking cigarettes.", "type": "review", "business_id": "oRqBAYtcBYZHXA7G8FlPaA"} +{"votes": {"funny": 6, "useful": 2, "cool": 2}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "HevVsp4bXL6mK0WL9HTciA", "stars": 2, "date": "2009-06-23", "text": "I liked them a lot until I had to call them to get the discount fare for the toddler but since I was booking our tickets together (because a two year old legally can't fly alone so I HAD to) on the phone, I wasn't getting the lower internet rate. That's extortion! I'd much rather do the entire thing on the internet. Then he tells me that the child's fare goes off of the regular rate which is only one dollar less than the internet rate. What the hell? Why would I ever want to sit on hold for 25 minutes to book a flight to get this crap? Then they tried to get me to pay $15 more for the next class up (I know, upper class on Southwest - strange). I asked what I got: 1.25 times the miles (yeah, you heard right 25% more - that's going to get me far), first boarding and a free drink. I clarified that with a child I get to board first anyway (they confirmed this). Then I asked how much a drink costs. $5. So essentially they are asking me to pay $15 instead of $5 for a drink I may or may not want (then again, I'm traveling with a child so who am I kidding, I'm going to need a drink). And to top it all off, they tell me we can't do on-line check in because Beckham doesn't have a picture ID. I tell them but he does have a picture ID. He has a passport, in fact he has two. The Southwest person tells me no one has two passports so I tell him that no, it's true. The toddler and I both have two as we have dual citizenship. (Not that we would need them to fly to California so the whole conversation is entirely pointless now.) The Southwest man being the all-knowing scholar he is tells me that's impossible and illegal. I take a deep breathe, tell him he's right, I'm wrong, how stupid I am. I must be thinking of my library card. Why are things so difficult sometimes?", "type": "review", "business_id": "dpbY5XypBdeFmo8DsZ-DNQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LycBOkA2piDMQTdpkY5YoQ", "review_id": "-RZOjwTx2zuzDScS6PAJ6A", "stars": 5, "date": "2011-04-10", "text": "I have been eating at this Waffle house since I was a teenager and it has never failed to provide good food. The employees are courteous and the service is fast. The portions are good for the price and the small dinner feel is great to eat in. I have gone here many times with my disabled brother and have never had any problems with the staff or employees. I also like the fact that they are one of the few 24 hr restaurants available to eat at and this has come in handy many times.", "type": "review", "business_id": "eONS7DP6U9BV3lkqGAUbOg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "yDlBXvcE-QDrvwz1GkkGWg", "review_id": "TBiRPB5omVfLnxdLH0OrKg", "stars": 1, "date": "2012-11-15", "text": "Don't do business at this unethical business. My $25 savings account from 2009 was recently stolen from $5 a month for \"account inactivity\" fees. They are a bunch of crooks.\n\nIt appears you now need to nickle and dime your customers with BS fees in order to stay in business. \n\nAccount closed.", "type": "review", "business_id": "Xk41spRMMo2C7Nn8YQIL0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "z-JC1S58qaW8WNiOzUh_TA", "review_id": "knrnhQgymzmGa7PdA20hqQ", "stars": 5, "date": "2010-06-11", "text": "Can't wait to go here again. Had the shrimp po-boy and some homemade banana pudding. I'll write more as I try different things on the menu, but what I did have was delicious.", "type": "review", "business_id": "mwiNm868yAo8Xh8hO7Ke_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ptZHJS6B2bQBGadUbPpZVA", "review_id": "gcCqSFBKlWVMYZvpo6jiiw", "stars": 4, "date": "2012-07-02", "text": "Reviews are dead on good food good service in a little bit of a strange out of the way location.", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MgCaRW7WA3qcEnKqFLzJpQ", "review_id": "y2z2ITDv-VbeUcjeKWYqeg", "stars": 5, "date": "2011-02-21", "text": "I love the urban feel of this place, and the swanky Apple Store is a big enough draw for me! The place is brand new, so not too many things are going on yet, but more stores are opening all the time! There's now a really high-end iPic movie theater, a frozen yogurt place, a great Nike store, and much more to come in addition to H&M, West Elm, and the delicious Oakville Grocery Co. \nParking is fine and it's easy to navigate. When you're done here you can walk to Kierland across the street, too! :)\nCan't wait to see what they do here in a few years!", "type": "review", "business_id": "yIRwXAtC3zLGy0_FaBecpQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "4dnDsoHuxUtzhaumxbpR5w", "review_id": "H2hDhhaxkqbQ3R2vnLfnEQ", "stars": 5, "date": "2008-07-03", "text": "The hubby and I stayed here on our wedding night. We didn't arrive until midnight or so (we partied late :)) and the service was still impeccable. After our car was valeted and we were golf-carted down to our casita, we were left to enjoy our night of solitude. The room itself was beautiful; king sized bed, fireplace, patio overlooking the golf course, vanity, ipod dock, jetted tub, separate shower, and plush robes and slippers. \n\nWe ordered room service probably close to 1 am and it arrived promptly. The boy ordered the veggie wrap (he said it was delish) and I ordered the tossed greens salad with balsamic. For $13 the salad was a total miss. Just a few mediocre lettuce leaves, tomatoes, onions, and cucumbers thrown on a plate. I was hungry though, so it worked.\n\nThe next morning we slept in as late as we could. I woke up with the worst heartburn (thanks, balsamic!) so I called the front desk for some Tums. No problem, they arrived pronto. We packed up and called for a ride, and although they said they were busy, they arrived shortly after. \n\nI would love to come back here and stay a little longer. The service was great, the place was beautiful, and for the one night we were there it was damn perfect.", "type": "review", "business_id": "WFDxa8r0sT2ZnehYTyT1LQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "NqcLDh324mINcicHKspQaA", "review_id": "MIsgATnbThCXCW4rkeusFw", "stars": 1, "date": "2010-11-06", "text": "If you're looking for a dining experience at Fry's deli area you're better off going to an actual sit down restaurant. Fry's \"dining style\" food in the deli area is very substandard at the best.", "type": "review", "business_id": "LWtoosGlzTOp8A73Jh7cQw"} +{"votes": {"funny": 4, "useful": 6, "cool": 1}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "wOZFAHNrN5n_eKMpq_tBSA", "stars": 3, "date": "2012-07-02", "text": "Meh. As my fellow Yelper said to me a few days after we ate here: \"No Brio review, I'm shocked!\" \n\nI didn't jump on writing this review because I was pretty underwhelmed by the experience. The ambience sucks, the service wasn't very good and the food was totally average. \n\nMy cursor is blinking at me and I still don't know what else to say about my time spent here. \n\nAmbience- looks like an Italian cheesecake factory. Why are the collumns so huge?!\n\nService- the bartender kept interrupting us to take our order when we STILL weren't ready. Jeez, does it look like I've moved my menu in the 53 seconds it's been since the last time you checked? And then disappeared when we were finally ready. \n\nFood- \n-carpaccio, not bad but does it seriously need to be that huge? The two of us didn't even come close to finishing it. \n-Mediterranean pasta, pretty much the only one without a cream sauce on the whole menu. They split it for us which was nice and it tasted all right with mushrooms and chicken and stuff. \n-tiramisu came out frozen. They were super apologetic and didn't charge us for the replacement, but it was still awkward. They obviously just heated up a piece which made it melty and just not that great.\n\nSo yeah, that's that.", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "kaPlVg8eKyQRaiIBvKn8bw", "stars": 3, "date": "2009-06-22", "text": "RIP\n\nI drive by here every day but looked over and saw the place dark inside and the signage ripped down. They never did quite recover from the roof collapse thing. Was the only Vietnamese place by my work, now sadly, there are none. They should have offered Banh Mi for lunch. Woulda-coulda-shoulda.", "type": "review", "business_id": "PEOP7kZ1E4BJx3YzLMrmpA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Kt9NwDONle_mc0QHTud9jw", "review_id": "u7z8eIS1XIS6evTZCI5y_Q", "stars": 2, "date": "2012-05-26", "text": "A very inadequate meal and expensive for the low quality food you get. Ordered the veal sorrentino and it was not enjoyable to eat. Very dry, tough...just gross. Caesar salad was also disgusting and unpleasant, saturated in dressing. I did like the atmosphere, laid back and comfortable. Knowing that Pasta Brioni is down the street, I won't go back.", "type": "review", "business_id": "fPExBO1aXA5c4uwlHFyx2Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PnEAXZ7WyJMYBr9IIulh5Q", "review_id": "hWlg-33v0VuSgHPYw20sBg", "stars": 5, "date": "2011-03-07", "text": "The first couple of times I ate here I wasn't sure why people were always so crazy for this place. It's been about two years since my last visit and in the past couple of months I've already been here like three times and wanted to go back more. I've decided that it's all about what you order; for example the first time I went I probably felt overwhelmed with all the choices and decided to go for something really plain like turkey with hardly any toppings, have fun! Their menu has a wide variety of yummy sandwiches and lots of new tastes to try. Also, don't be afraid to speak up. I was a little disappointed by the lack of lettuce and veggies on one of my veggie sandwiches but I also didn't pay attention. Now I ask for lots of lettuce and they're happy to make it the way I like. They make their breads fresh and they have garlic-herb bread that has lots of flavor. I won't order a sandwich from there without a side of ranch dressing. I am a picky ranch eater...I hate mayonnaise so I am always super careful that ranch doesn't taste or resemble mayo. I usually like restaurant mayo that is a little more runny in consistency with lots of flavor. They have the best home made ranch dressing here! Pair it with the garlic-herb bread and your sandwich is going to be booming in flavor. OMG! Wipe...sorry I just started to drool a bit. Service is good...everyone runs at the same chill pace which seems to go well with the theme of this restaurant. My current favorite is the Humboldt sandwich...I get the Pinner (8\") but I swear some days I am so hungry I think I'm going to order the Blunt (12\")...maybe someday soon. All sandwiches get toasted. Okay so toppings: Guacamole, sprouts, lettuce/spring mix, onions, mushrooms, tomatoes, black olives (I get mine w/o), cucumbers, pickles, your choice of cheese (I get Swiss), with their house goodies (EVOO, vinegar, herb mixture on top). Now that I found my sandwich, I crave it all the time and can't wait for my next visit. Oh, be sure to check their daily specials too! If you're lucky enough to be in their delivery area...well, darn you then! :-)", "type": "review", "business_id": "KS2w8ychyieJbUqRa6kCHw"} +{"votes": {"funny": 1, "useful": 10, "cool": 6}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "v2pJ8c_jHYNOs975wrzXLA", "stars": 4, "date": "2011-09-18", "text": "Having been to Dave & Buster's in California, I was pleased to see one nearby in Phoenix. Our family enjoys the games and food offered at D&B's. It's not the best bar food you ever had, but it's alright.\n\nSome of our favorite dishes...\n\nChicken Sandwich & Fries\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=pL9gMcMhSu66djzRs0EE0g\n\nSliders, Wings, & Fries\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=duqkD08yPYfZzK2BdwXSOw\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=gmI2y1_o4YxyNsuhu4-PGA\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=-SYnpluFm_tcBObKnYpR1w\n\nChicken Sandwich w/Bacon & Sweet Potato Fries\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=EkZL6PdNv4kkgopmT6IK8g\n\nBesides the video games, my Son and I enjoy shooting pool on their championship size (9 ft) pool tables.\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=_L7O1ZhQ9EDnO1LHv9b10g\nhttp://www.yelp.com/biz_photos/f2z4RM_ungk_zQwcpZcpcQ?select=6IveT3g9EW-lLEjwbrblZQ\n\nOverall, it's one of our favorite places to go where the entire family can enjoy a night out. They serve alcohol at the bar and restaurant, so the adults can enjoy themselves while the kiddos play games, bowl, shoot pool.\n\nReturn Factor - 100%", "type": "review", "business_id": "PdWe3jF9YEu5fWBiQXZIgg"} +{"votes": {"funny": 2, "useful": 5, "cool": 0}, "user_id": "lyESkeFLTfHNwTCH5H5jnw", "review_id": "9CliOMtR7Os75O8gQpd2NA", "stars": 2, "date": "2011-01-16", "text": "I used to frequent this place when it was Long Wong's. The food wasn't good back then but it was open 24/7 and always available.\n\nSince the change in ownership, I have been repeatedly disappointed. The size of the menu has gone down drastically (which is understandable, Long Wong's menu was way too big). They only serve slices of pizza at certain times of the day now (noonish until 3pm supposedly I think? and again some time in the evening) and you never know if they will actually have slices. I understand that maybe they don't sell that many slices in the off hours, but I would gladly take a slice of pizza that was an hour or two old over none at all. Not to mention even at 3pm it is not uncommon to get a pretty old slice anyways.\n\nThe burgers are so-so. Better than McDonald's, but just really not that good.\n\nI've only had the cheesesteak once, and boy was it a disaster. I bit into it and what must have been a full cup of liquid poured out of it. I'm not sure how this was possible, but it was almost like it was sabotaged. I'm sure this was a one-off problem and that they are not normally like that, but I was horrified and have not tried another.\n\nThe owner is eager and you can tell he is really trying to make the business work. However, the staff he hires can be very rude sometimes. I've heard some snotty tones of voice saying they had no slices when I've tried to order a slice of pizza during the off hours and have been refused a simple refill of my soda when my order took far longer than expected. That said, I have not been there in a few months so this may have changed.", "type": "review", "business_id": "lPAHpSIc2MvY06bWxrFRiw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "H2jcFGSS1n60jcKPBb-IoA", "review_id": "0t2VuH_Dc9US_jMxg-B-dw", "stars": 1, "date": "2012-07-03", "text": "Staff is nice, and that's it.\nThey use very cheap tires that only last for a year.", "type": "review", "business_id": "9U9wBfux57bQm1wUSuviWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IX0FwVlVJCofw066Gm3OPw", "review_id": "YzF--NlN0I1D73ZF-kZ3lQ", "stars": 5, "date": "2011-09-24", "text": "The customer service at this Macy's was seriously out of this world. Both my mom and I (who were visiting from out of town; me, San Diego and her, Baltimore) have never ever experienced such friendly and helpful customer service at any department store, anywhere, EVER! We were there late at night- probably for the 2 hours right before closing on a one day sale day. In every single dept. We went (ladies dresses, ladies shoes, men's etc) EVERYONE was soooo nice and helpful. Most of our visit was in ladies dresses. Those reps did everything possible to help us find dresses in different sizes (which can definitely be challenging at the end of a season and at the end of a one day sale when things are haphazardly placed everywhere) and to call other Macy's stores when we were unsuccessful in finding a dress at that location in a particular size. Sure, they wanted a sale, but to be so helpful so late at night, right before closing, after a long one day sale was shocking. We must have encountered at least 10 different sales associates while wondering through the store and each and every one was soooo nice and helpful. The selection (at least in women's) was better than most other Macy's I've been to, to boot. \n\nI wish this was my local Macy's! Go here- hopefully your experience is just as good as mine :)", "type": "review", "business_id": "Vm9GQUptdZmBM9R7tZ9_Tg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9vxUUOoasnu8gtoXRwAhYw", "review_id": "yE_xCqhT1F338Y7G2ZfGbg", "stars": 4, "date": "2012-06-23", "text": "We keep coming back! I love this place. The food is always so good and even when I ask the kitchen for the naked cheeseburger, they make it pretty. And its delish and I love me a cheeseburger. This last time I ordered a vodka tonic and asked the bartender to surprise me - either Belvedere or Ketel. Back came the most frosty delicious Belvedere vodka tonic. Perf. The lovely, as prefers, mans up to the filet. And is always happy, sipping his pinot alongside.. \n\nI just wanted to say, yum. And we'll keep coming back. Thanks PCG.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "--DazeDpOApabZnIOIPSrQ", "stars": 5, "date": "2011-04-18", "text": "I don't know why I waited so long to visit Yogurtology; it's located conveniently next to my Safeway. Why did i wait so long?!\n\nYogurtology has perfected self-serve froyo. The flavors are spot-on...lemon meringue, birthday cake, NSA coffee, peach mango tart, cheesecake, mango, rootbeer...the list goes on...I always end up getting oatmeal cookie. It's made in-house with real oatmeal cookies. We're talking oatmeal cookie literally IN the froyo, none of that artificial flavor crap. It is incredible. \n\nInstead of having little placards for the flavors, there are digital Sony TV screens that describe each flavor and a brief nutritional run-down. Very high-tech!\n\nThe selection of toppings is unparalleled--baklava, three different kinds of twix and milky way, brownie, chocolate chip cookie bar, chocolate covered waffle cone, premium fruit and nuts...anything you can imagine, Yogurtology has it. \n\nNot only that, but the shop is impeccably clean, and the staff are consistently cheerful. This place blows Yogurtland and Yogurtopia AND all other Yogurtology locations out of the water!!!\n\nThis is where you want to go.", "type": "review", "business_id": "N84LyJdpPLoGc6Pg2Y46iQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "kQeE0069xdN0OSPi-OWqGg", "stars": 5, "date": "2008-04-06", "text": "I grew up at this library. And now I am old and married and hope to someday take my very own kids to this library. They have a great selection of audio books. I am a major audio book fan and this is the place to be! \n\nClean, safe, you are not bothered by stranger dangers. I dig this library.", "type": "review", "business_id": "NtRs2Xd64mRLe6jGUTXziw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bcAxFAPQrsLAQV0w4GpFBg", "review_id": "AdHAs38Gc8yRragQootP1A", "stars": 1, "date": "2012-08-20", "text": "Terrible rolls. The Dragon was so so. The California was bland and the Spicy Tuna was cat food. Seriously, it looked like canned cat food and tasted horrible.", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9eeqmxfVfAT4oyA4y2WcNg", "review_id": "y2mMYEcV2hWCNMdq8BYx8g", "stars": 5, "date": "2011-11-14", "text": "Having just moved to Scottsdale, I had seen Four Peaks brews at local restaurants and couldn't wait to try it. My bf and I visited the brewery after a long day at the Phoenix Zoo. The location was easy to find with plenty of street parking (although it could be difficult during peak hours). We found a nice table on the half-indoor seating area. The ambiance was very cool, with a converted loft warehouse sort of feel.\n\nThe bf had the beer sampler, which I helped myself to some sips of. I ordered a pint of the Kilt Lifter, which was a great deal during happy hour. Next, I tried the Pumpkin Porter (full price, even during happy hour). Foodwise, I had the pub fish and chips, which are battered in Kilt Lifter, and the bf had the french dip. Both items were on par with good quality pub fare.\n\nKilt Lifter: great medium brew, very smooth. The type of beer you could drink every day and never tire of. Pumpkin Porter: we loved it so much, we purchased a growler so we could take some home! Note: there is an extra charge for filling up a growler with a seasonal brew. $4 for the growler itself, $10 for beer, and $5 seasonal charge. Normal refills of growlers are $10.\n\nI am a beer lover. I have spent time living in Munich and drinking some of the best beers in the world. You can't go wrong with Four Peaks brews. Next stop, North Scottsdale location. Closer to home and hopefully just as great!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 13, "useful": 9, "cool": 12}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "ybdnA5ohyA1lj3C0FRYK7w", "stars": 2, "date": "2008-10-19", "text": "Oy ve iz mir!\n\nNot to be a kvetch....but I consider myself to be an expert on Jewish delis. As a New Yorker from a predominantly Jewish area and married to a Jew, I've had more than my fair share of experiences at them. My husband and I woke up this morning with a burning desire for a good bagel, corned beef on rye, and a knish. So I schlepped all the way up to the PV Mall to get it.\n\nOk, first of all, the decor is terribly schlocky. Its kind of like the tourist trap Jewish deli you find in Times Square. Its like a Disney version of a NY deli. \n\nI take my number and head over to the cold case to get some drinks....of course they didn't have regular lemon Snapple (and why should they? Its not like every deli, pizza place, and convenience store in NY carries it....) but they did have Dr. Brown's Cel-Ray which is always a welcome sight. Another thing they had in the cold case which I found to be odd were jars of Nathan's pickles. Nathan's, like the hot dog place. I would imagine a Jewish deli would have Ba Tampte pickles....I didn't even know Nathan's made pickles! It was a little lame to be honest.\n\nAnyways, I go up to the counter where there doesn't seem to be anyone working. There was no organization to it. So I waited. And waited. In New York, the deli is a finely tuned machine designed to move people quickly. Chompie's? Eh, not so much. When I finally did place my order, the guy who took it had a hard time punching it into the computer and asked me to repeat it several times. Despite saying I wanted my bagel toasted several times I was given a cold, untoasted bagel. I waited a little longer for my order to come up and went on my merry way. \n\nHere is the breakdown of the food we ordered-\n\nMatzoh ball soup- Surprisingly good. I have never had matzoh ball soup with carrots and celery...so much chazerei! Just give me the matzoh ball! Although, I will admit, it was solid. I wouldn't go all the way to Chompie's for it because I know that I can make it better in my own kitchen. \n\nPlain bagel \"toasted\" with cream cheese- Terrible. The bottom of the bagel was entirely too thick and was very hard. They didn't even cut it all the way through, probably because the crust is too thick! \n\nCorned beef on rye- Meh. The corned beef wasn't very good, it wasn't corned enough. If they make their own they didn't use a piece of brisket that was fatty enough. The rye (which was not marble rye...) was lackluster. It couldn't handle the corned beef, became soggy, and eventually fell apart. The pickle it came with was the grossest thing I've ever seen. And it was definitely a kosher dill, even though I asked for a half sour. The potato salad was actually really good though.\n\nKnish- Terrible. The knishes in my elementary school cafeteria were better than this. First of all, the outer crust was way too flimsy. It should have been much, much, thicker, especially considering the gargantuan size of the knish. We essentially ate a large plate of mashed potatoes. The potato inside itself was unremarkable. Not only do I have this Jewish thing going on but I'm also Irish....I've never met a potato dish I didn't like. Until today. I didn't even finish my half of the knish. \n\nNow for the prices. What's with this meshugas? $2.29 for a bagel with cream cheese is a tad much. In NY they run you about $1.35. The corned beef sandwich was $12.50! Now, I've paid that much for sandwiches in NY before but you get 2 lbs of meat and several layers of sandwich! This was not a $12.50 sandwich. I was also going to get us some whitefish salad to sample but at $15.99/lbs it wasn't happening. \n\nWhy anyone should schlep all this way, in this heat, schvitzing all over, for this dreck? I don't know!", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Y7Jxglm9zeHipx8zrhULiA", "review_id": "uDqM0NuqhYu1UnzChVNW6g", "stars": 5, "date": "2011-11-11", "text": "Love this place! Just went here and ordered the petite filet and lobster tail, everything is so good here. I also love the pork chop! My favorite dessert is the lava cake hot and yummy.", "type": "review", "business_id": "0ONypOKIhttBz9IJzBE8jg"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "JD5B2a9nDCdp8vjV2q-Kog", "stars": 3, "date": "2008-02-24", "text": "Ok, so, I finally ate at Wanda's. It is located right near the Chandler Harley Davidson, and its alright. The seating is really intimate, and rather small. The largest table in this place is for seating of 4. I didnt care for how small it was, in regards to limited seating. They do have outdoor seating, but again, they lost points with me for only having tables for either 2 or 4. What I DO like about it, is that the service was quick, and its not the usual chain resturants like IHOP or Waffle house. Limited menu, only open a few hours a day (like 7-3) and primarily have a breakfast and lunch menu.", "type": "review", "business_id": "bEQjf7c-9qkNWgXvriSGZw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "nooJP5h3eeNyT8tcKaeHhw", "review_id": "D5ZJQkX64e87RJrHG7PENw", "stars": 2, "date": "2011-05-31", "text": "I think Matt's has had its '5 minutes of fame'. Note to owners: Your food is good enough, your staff is great, so please save your money and move to a better location. Right now, you're next to a rundown hotel with police baracade tape all over the place.The local residents(?) pan-handling all the waiting customers outside your place. Seriously? Just sad. Won't go again, won't recommend it either. Good luck this summer, the heat will melt all your 'waiting area' customers out .", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "xNWo90CDMVG4ZPo4zty20Q", "stars": 1, "date": "2011-03-14", "text": "The cheesy breadsticks were delicious. Everything else, not so much.", "type": "review", "business_id": "1ggcLvWPBDWnp5MVTRnoRg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w_e0D3ON-y5-gd5UTNyQFg", "review_id": "6jZO73k130ncwGjsdH_Xxw", "stars": 2, "date": "2010-09-21", "text": "I have been a long time customer at this car wash with this location. I have been going there since it Changed from Weiss Guys to Diamond Car wash and now its known as Francis and Sons. It seems the service has declined for each change of ownership.\n \nToday was the tip of the iceberg and I will not be going there again. The past 2 visits have proven to me that their customer service has rapidly declined.\n \nI understand that every business needs to \"Upsell\", but it becomes an annoyance when they keep bugging me 5,6,7,8 times after I have said no. Don't even get me started on their glass repair salesmen....\n\nI always get the Premium auto wash, a few weeks ago I went and when I got home I noticed they had not cleaned my dash or center console (which is included in premium). I also noticed they had not wiped down my tires after applying Armor All and it all splattered up to the sides of my vehicle after driving away, I wrote these off as a simple mistake and that it probably would not happen again.\n \nToday's experience was worse. I took my truck in for a wash and I told the guy I did not have time for a hand wax (upsell) I was then pressured into buying it in advance so I could come back another day and get it waxed. No was not an answer to this guy, I had to actually walk away to leave this Pressured UPSELL.\n \nAgain, I purchased the premium wash. They called for the vehicle and I noticed that there were little black spots (mud?) all over the side of the truck. I told the guy about this and he said \"its ready.\" I explained that it wasnt and started using my finger to poke at what was probably 20-30 little black spots all over the side, he gave me a disgusted look and told me he had to go get a clean rag. I asked for a manager.\n \nThe manager came and had the guy wipe the spots off, but did not seem to care at all and walked away before the guy wiped down half of the spots. I had already given a tip to the first guy and this guy stood there expecting a tip, I am generous with tips, but will not tip more because I had to ask them to fix their mistake.\n \nUpon entry of my vehicle I noticed there was still some dirt on the floor and my center console armrest was not cleaned. I only took the truck in due to my dog leaving paw prints on the center armrest and hair all over the place...\n \nI got an oil change at Danny's Car Wash at Tempe Marketplace a few weeks ago, and was so Impressed by their service and car wash service that I will make the 20 minute trip to go up there for my car wash from now on.", "type": "review", "business_id": "fdhydw4SV3rSjq06IL9LVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xkrHJJFvgmlOozo61gISWQ", "review_id": "F3EtWCgS6YDBnnXK3dl33A", "stars": 5, "date": "2012-09-30", "text": "My favorite restaurant in AZ, No Contest!!! Awesome staff, delicious food and the best salsa!!!!", "type": "review", "business_id": "FFHzFdyWgM-OdMghuXMPEQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "ISm8JIelDBN_O7L1QVRYAA", "stars": 3, "date": "2011-05-09", "text": "This is a huge improvement over the last bar that occupied this spot. They obviously put a few bucks into the renovation and added pool tables. The rub is that when a band is playing here it totally dominates the conversation, and if the band sucks... \n\nPlease put in a smoking-friendly patio, right now customers have to stand by the parking lot sans drink! They have another less-noisy bar in the front, which I was pleased to discover was offering $1 well drinks from 9-10pm for guys - we took full advantage.", "type": "review", "business_id": "KqPY02NlTaM8YALIhsswGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "u-yTiUI58ojOjmkMifMCTA", "stars": 4, "date": "2010-03-28", "text": "I have been dying to go here since a coworker's spouse is one of the chefs. We finally went last night before the Symphony and it was a very good dining experience. The food came impossibly fast. The shrimp and Sausage Po Boy sliders were heavenly. The bread is this roll type of joy like break back east. Yum. You know the type of bread you can't find in AZ or west of the Rockies as Al Pacino would say-lol!They also served the bread basket with a veggie type of garnish if mixed with butter and put on the bread it had a very pleasing taste to it. Innovative menu- Lobster Potpie and Duck Quesadillas. HMMMMMM! Interesting. I had a side of Mac and cheese which is what I had heard about for so long and a Caprese Salad. My friend had divine Salmon. I am not a Salmon fan but i tasted it and it was yummers. My Ice tea was tasty and my friend had a Basil Mojito that was mixed well. I don't like them usually because they are so strong mouthwashy tasting, but this had a nice blend to it. The restaurant decor is beautiful.We did not get desert but I want to go back and try those Seasalt sticks. All in all I loved going here. DT was packed last night due to Wrestle-Mania but we were in and out in an hour at 5ish, so try that time to avoid crowds. Service was great despite other reviews. I know great service and I had it.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "yhxayqEQsU4M0DNxtLtrzw", "stars": 5, "date": "2009-10-06", "text": "This isn't your typical Mexican restaurant that puts cheese and sour cream on everything. The food here is light, simple, and fresh. We started out with the guacamole which was amazing. My sister doesn't even like mandarin oranges but it tasted so good in the guacamole she was eating it like it was going out of style. The salsa that came with it was the bomb. One was a spicy red salsa and the other one was a tomatillo salsa. The green one was so good I wanted to drink it. I ordered the chorizo and eggs and my sister ordered a couple of tacos with rice and beans. Everything tasted great and I even had room for dessert after my meal. We had some kind of carmel, banana, crepe thing. It doesn't look like much but it was one of the best desserts I've ever had. Gallo Blanco is my new obsession.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "4j06pkKJRrZMNmodbddQsw", "stars": 3, "date": "2012-02-05", "text": "I agree with Rachel C. & Luciana L. on the parking situation and the logistics of the whole place. Although I will probably go again because my kids do enjoy it and I was able to get the last paid parking spot (at 11am). I have been to this event and others in downtown Glendale and they can't handle the volume of people that go to these things. Downtown Glendale is similar to downtown Scottsdale but 1/10th the size and capacity. There are tons of little shops in a historic district with ONE parking garage and whats worse is you will pass many empty lots that they pay cops to stand around just to make sure you dont park there. I finally ask a police officer where CAN we actually park. Anyway, the event was cool with lots for the kids, it is a farmers market that sells food you would find at the fair thrown in with some chocolate vendors, jumpers and carnival type rides for the kids in separate areas that require separate tickets for each area (this was way annoying too). Glendale could do better by putting up directories everywhere for people to know where they are, where bathrooms are, and they could spread things out and offer more space per human being (I am sure this place is stupid in the evening). Plus they need to do something about parking, even if they build a HUGE garage and charge $20 a car at least there would be options for people who dont want to walk a mile before they walk around for miles....\n\nAll that said, we will probably go next year because we still do not know the definition of insanity.", "type": "review", "business_id": "TCi5dyUUVHvFctgkstc1Kg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "xdhu_CZVomaGPD2qB0IQXw", "review_id": "4K03F_FYndOXottOgnbrkw", "stars": 4, "date": "2008-02-25", "text": "This place is very off-the-beaten-track, I'm sure most people overlook it....I only came across it whilst searching online for somewhere 'different' to eat...and when I came across the review on the Phoenix New Times website(http://www.phoenixnewtimes.com/2005-02-10/dining/sultans-of-shish/), I knew this was it...\n\nI only docked a star for the (extremely) sparse decor and atmosphere...this place could have been any other type of business with just a change of sign and omission of tables...\n\nanyway, the food was great! my fiance ordered skewers of beef and lamb(I'm not too keen on lamb, but the beef was tender and succulent...very well spiced!)...I had a cucumber salad(diced, along with onions and parsley, and soaked in vinegar-lemon juice), which enchanted me so much that I created my own version at home and make it every time I feel like doing a bit of dicing(msg me for the recipe--it's a bit death-breathy and labor-intensive but delicious!)...\n\nand, during dessert, I could see why Samarkand was voted 'Best Tea in Phoenix'...the black tea was easily the best I've ever had(besides a special brand of blue ginger tea I make a point to keep my cabinet stocked with)...it was strong and rich...absolutely incredible!\n\ndefinitely make it a point to search this place out--it's worth the effort!", "type": "review", "business_id": "dnfSnHElLXntC6lWjomWPw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r9xKvhIFjW8Nopvjm15y6A", "review_id": "m5Q6NkcyibtTHpCrS3DvGw", "stars": 1, "date": "2011-11-02", "text": "When owners/staff changed we kept hoping for the best. (The friendly owners/cooks of the previous restaurant were top notch, hence the good reviews). But now, alas. . . Lemon chicken that turned out to be pork (and bad at that), wontons in soup that fall apart, greasy greasy lo mein and eggrolls, it's just not worth it. Prefer to give locals the business, but this is truly awful, even after many hopeful tries. Panda Express it is until someone else does a better job.", "type": "review", "business_id": "7KB3eQJASverUUah-I_0ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YzUAzn4NkLxk8FbwXa1rNA", "review_id": "T7Qbj7s5Jxp3vq_sak_piw", "stars": 5, "date": "2012-07-11", "text": "We have been taking our dogs to All-Star since they opened. The staff has always been great and remembers our girls by name, and the Vets are fantastic! Any Dr who will get down on the ground and love on my doggies is ok in my book. They have squeezed us in for emergency visits many times. We have also boarded our dogs here and they take awesome care of them. Just wish they were opened on the weekends", "type": "review", "business_id": "EVR7ss3gCgRmXZT7TvZgzA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_JUAxvr5DSEcHTvvXnUsxg", "review_id": "ojN4uLh7VofqqhLbVDla2w", "stars": 2, "date": "2010-03-22", "text": "I almost moved up to three stars because Nicole, the pianist, makes dining here such an amazing experience, but the food just never is up to par, so 2 stars it is.\n\nI was here with the Downtown Friday Nights (aka #dtfn) crew, and started out with a glass of AZ Stronghold Mangus, which was a delight.\n\nWe were noshing along, so I ordered the spinach dip, which was so salty that I couldn't even eat it. Yuck. I asked the waiter to take it back , and he said \"yeah, we've been hearing that a lot tonight\"\n\nNews flash, if you are getting a lot of complaints, maybe you should stop serving it for the night.\n\nI'm glad I had a friend's cheese plate to snack on...it is hard to mess up brought-in bread and cheeses.\n\nMy Florist is all atmosphere and no substance. The space is great, the piano is awesome (she will even take requests by text message, while she's playing)\n\n**Correction....the GM sent me a message pointing out that all of their bread is not, in fact, brought in, but is baked fresh daily. Duly noted**", "type": "review", "business_id": "vSWEXsXmJw5ozuF4zqE9ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "eOVVMnFC5jeAInwiG3uNEw", "review_id": "PJK8YQ3zsyRkKx33l5wc9A", "stars": 4, "date": "2011-06-11", "text": "Tonight I finally tried this place. I went during happy hour (unknowingly) so I was VERY happy to see that drinks were 2-4-1. WOOT! What a great deal. I ordered a half and half order of their spicy and cinnamon fries. My God they were tasty! I LOVED the decor here too. Only 4 stars because I didn't really get to try the food, but it definitely had me intrigued. I will be back, Fez!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "s1RecwNZLn-haImfWMhSPA", "stars": 4, "date": "2011-08-01", "text": "Coconut and carrey heaven", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "rxUbJlVLtcmi0RHGmVKJpg", "review_id": "qq6nxekcC8GwkDEAA7w4Lw", "stars": 3, "date": "2012-11-14", "text": "I enjoyed my nights here. The facilities are clean and very well maintained. Housekeeping staff is fantastic also. They were not intrusive and they were hospitable. \n\nHowever, the ONE thing that bothered me was the reception staff. I was mistreated. I say this because I asked the reception staff a question about the pool hours and the response I received was \"Are you a guest here?\" Followed by \"because we get a lot of people around here...\" While that response is completely understandable, I must point out that I checked in an hour earlier with the SAME staff at the desk. This may be me sounding like a self-centered, remember me-type of person, but no. I felt that the receptionist was categorizing me because of my age and because of my look. I guess I just look like the type that would crash into a hotel pool? Mind you, this Residence Inn is adjacent to the Mayo Clinic and desert land. Yes, the only two things around walking distance are this hotel and the hospital. So apparently, this hotel pool must be the hot spot for pool crashers. Must be all the sickly patients that want to take a dip in the pool. \n\nThen on the same occasion, the same reception staff told me that they did not have a bottle opener at the desk. There is a small convenient store next to the reception desk that sells wine, beer, water, soda, snacks, etc. I purchased a beer and asked them if they had a bottle opener so I could drink my beer by the fire pits and they said no. It had been misplaced. Some time later, the nice gentleman that helped me open my beer got beers at the reception desk and somehow, they magically had a bottle opener. Strange how they had one for him, but not for me. \n\nRegardless, I was a bit bummed that the reception staff was childish and rude to me. I felt like I was individually singled out to be discriminated against. It's a shame too because I love my Marriott Rewards card. \n\nThe rooms are large here. The elevator takes forever! I suggest that the hotel adopt elevator music to distract the sluggish speed of that elevator.", "type": "review", "business_id": "u3_amLppmBrfBYUfaI0nVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "G_EF7WnaLjMduDasUlm4hw", "review_id": "rJG8b8F1-1V_gBMKdDwdRw", "stars": 4, "date": "2011-12-11", "text": "Good boutique hotel with nice amenities. Clean and contemporary I'd definitely stay here again!", "type": "review", "business_id": "-N6XWiSuFKv-AXT7C3n6Yw"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "VTw4hfSEfSEYG2uBPd3Wnw", "stars": 4, "date": "2008-04-27", "text": "Consignment... fantastic. It's a step up from a used furniture store. It's two steps up from a thrift store or a pawn shop. It's three steps up from a garage sale. The prices reflect all of this, but it's still pretty reasonable. \n\nSellers - as long as you didn't buy the ugliest couch in the world and you didn't let your dogs hump on it, then it'll probably sell here. They will look at your furniture first before allowing you to bring it in so you aren't wasting anyone's time. You can even bring in a picture and a pillow if that's easier. In fact, you can even email a photo to them that they will go by. \n\nIf it sells, they will give you anywhere from 45 to 55 percent of the money collected. To find out if it has sold, you can call. For security reasons, they won't give out much information over the phone, so you must bring in your paperwork to even ask how much it sold for. This is pretty annoying and inconvenient - they should do email notifications at least - but you can go into any location to get this information at least.\n\nI got the impression that they will let you set your own price, but typically they will price your items for you. Good. Compared to what you would probably get for them if you sold them yourself on your driveway, you're going to be happy (even when you realize you're only getting half the amount they set). They will also sometimes come pick up your items if you need help. \n\nBuyers - the store is laid out pretty well and they seem to only take quality items that would sell, so you won't find a bunch of ugly donated junk. Some of the items are out of date, but still in good shape. You're probably not going to find some grossly under priced antique that you could flip at an auction, but if you need to fill up a room in your house - it's a good place to shop. \n\nWeekends seem to be busy for them, so I imagine their stock changes constantly. You're going to be paying higher prices than you would at garage sales or thrift stores, but the prices here are flexible and you're definitely saving money over buying new.", "type": "review", "business_id": "dLBqf9QayF9eSUzz6BvmSQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "tBbZ4lu-NqTud6ZrO4ZR8g", "stars": 4, "date": "2008-05-05", "text": "I can't stop talking about the fried chicken at Chelsea's. It is sooooo good.\n\nWe went here on Saturday night with a group of friends, and we had a great time. We sat at one of the large tables on the front porch, which was perfect, although our friend was disappointed that we weren't on the back porch. Supposedly that's the place to be. Since I had never been, I didn't know the difference.\n\nI always feel that tables of 8 are a good test for a restaurant's service. I felt like our waitress did a good job, and I was actually shocked at how quickly some of the food came (I am sure they are popular dishes that the kitchen makes in high volume, but still - she did a good job of getting them to our table). \n\nI started with a caesar salad, which I didn't think was that great. It was fine, but it wasn't as good as I expected. I then enjoyed the fish tacos for dinner, which were really tasty. The dish was plentiful, and it was more than enough food. My husband ordered the fried chicken, which was absolutely divine. The chicken was so moist and tender, and the chicken was fried without being greasy. Yummmm.\n\nI tried the red velvet cake for dessert, and it was quite good. How can anything with cheesecake frosting be wrong?\n\nThis is a great casual upscale restaurant. I was disappointed that I hadn't been sooner. The atmosphere is great, and the location is good. Plus, there's plenty of parking (and valet), so it's just convenient. I sort of feel like that's what this restaurant is - a convenient staple when you want a solid meal. The prices are slightly high for what it is ($18 for fish tacos and rice?), but I am desensitized to the high restaurant prices here unfortunately.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kom_byw9fPdVzw7Mw_C4HQ", "review_id": "RjzcXGuhGFq4rl9OTG2GoA", "stars": 3, "date": "2009-11-04", "text": "Unique place that you wouldn't stop at unless you were recommended. Seriously, this isn't the type of place you drive by and say 'oh, let's stop there' -- word of mouth is what I'm guessing drives this business.\n\nWe were recommended to visit this place by the entertainer for the evening, a belly dancer. Efes isn't your typical sit-down restaurant -- in fact, you may have to kneel down. The environment is to set a casual Turkish dinner setting. If you have a big party, some of you may be sitting on the floor...don't worry, there are plenty of pillows.\n\nThe entertainment was good (if you like belly dancing) and the music was interesting. Our party of 4 opted for the super sampler to start and the Efes mix to share.\n\nI personally like this type of food. Exotic, full of spices, not your typical meats. My wife didn't necessarily find it great, but ate some and didn't complain :-). I think the Doner Kabob was the best. If you go with a group, the Efes mix was a great way to try a little of everything and was plenty of food for our party of 4.", "type": "review", "business_id": "c-qtFVPutboIiJASZYrwuA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "8o5esZFIReNEBBH2nfOeGg", "review_id": "oF1096o79dFRhsra4J2t0A", "stars": 5, "date": "2010-08-11", "text": "My first box of NGD arrived a few weeks and tears nearly came to my eyes as I removed the produce from the box. I haven't seen such beautiful, fresh, well packaged produce since I was a kid (and I'm no spring chicken). The carrots tasted like the sweet carrots I remember and the lettuce (with the dirt from the farm still fresh on the leaves) so full of flavor. The amazing thing is that I had come to expect most organic vegetables and fruits to be less visually appealing than the chemical type but such is not the case with NGD.\n\nThe medium size box has been perfect for our little family of four. It is delivered on our day like clockwork around 2am. The unseen elf that drops off the goodies is nice enough to open the carton and place all the contents in our cooler so everything stays nice in this boiling cauldron we call Phoenix. Furthermore, I live way out in Carefree/Cave Creek where we always expect to be on the list of places too far away for delivery. Not with NGD. It appears from the labeling they have optimized their routes so they can include many outlying areas. \n\nFinally, there is a gentleman named Ben that works for NGD. He has been very helpful in making sure everything is going smoothly and that we are using the service properly.\n\nWe think NGD is a great value for organic produce delivered to your door and HIGHLY recommend NGD!", "type": "review", "business_id": "Z_KjmNp3sMwodUBTSgFZGw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "gSBvJ5FqFeSKRJaPiamttw", "review_id": "3GKAAWUML-ixD-K7TArzYA", "stars": 5, "date": "2012-04-01", "text": "Went here for the first time today. Loved it. Becca was fun/professional and did a great job.\n\nI have been looking for a place to get a \"big boy haircut\" since I moved in the area a few months ago, so far Canyon Falls has impressed me. Normally I just settle for whats cheap and quick from an $11 haircut place. Yes, I paid more for my cut at Canyon Falls... but it was worth it. \n\nThe place is clean, the employees are clean, I was greeted right away when I came in and I left FEELING like I got a good cut. I was only in for a cut/shampoo so I cant comment on any of the other services they offer but, I think I might have found a my new place to get my hair cut...at last. Thanks Becca.", "type": "review", "business_id": "GCs6-N-8CalT4L2_nNas7A"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "3Lo5pPoCZTX2lDwl2UhO1A", "stars": 4, "date": "2012-12-16", "text": "burnt.\nchina china caught fire :(", "type": "review", "business_id": "eW-hTjKrt91NnQ9xzMYtDQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "anr3YEUMnFxGSwo7Ej4OeQ", "review_id": "5BcZ1d6g7q8pfQbjO4QjMQ", "stars": 2, "date": "2012-01-15", "text": "OK, so I haven't been to a buffet in a long time. When I reflect on the idea of buffets -- Sweet Tomatoes excluded, since lots of salad means lots of Good-For-You-ness, right?... -- I feel like I used up my lifetime maximum instances of buffet-eating in college, where the dining halls were all-you-can eat. Anyway, this place just opened and is within walking distance of where I live, so my neighbors and I decided to check it out. \n\nOverall I wasn't very impressed with the food, even in comparison to other Chinese food buffets I've been to in the past. In addition to a standard selection of Chinese buffet items (beef with broccoli, fried rice, sweet and sour chicken) they have sushi, pizza (for kids, I'm assuming), and a hibachi grill section where you can pick vegetables and meats and they'll stir fry it for you (included in the buffet price). The hibachi stir fry I made up was OK, but the sauce added to it was too salty for me. The sushi was bland and what you would expect from a grocery store. They only had regular high-sodium soy sauce, as far as I could tell. (I tried asking one of the wait staff for low-sodium soy sauce and there was a language barrier; he brought back another staff member to our table, who also didn't understand what I was asking.) The egg roll I tried was really salty (even without sauce) and nothing to write home about. Usually sweet & sour sauce can make even mediocre egg rolls worth eating, but the S&S sauce on the buffet was a downright-scary Kool-Aid-red color. However, the fresh pineapple and melon was a nice touch, as were the 8 different ice cream flavors on the far end of the line.\n\nI will say it was pretty cheap at $10 per adult, so if you're looking for a lot of food on a budget, it might be a decent option for you. Personally though, I just think I am past the days of eating foods with scary salt levels, artificial colors, etc., so I won't plan on going back (though if I had to return for some reason, there are enough edible options so that I wouldn't starve).", "type": "review", "business_id": "ckZVnb6gF3PPVWkoVhAiEw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "c0mwvQ68LadoOkf5NDQmhQ", "stars": 2, "date": "2007-02-22", "text": "Eh.\n\nI wouldn't spend my money to stay here ever again. The hotel itself looks nice. It's large, spacious and the bar by the lobby is impressive.\n\nBut the rooms...Well I feel as if they're nothing special and the heavenly beds were not as heavenly as I had imagined.\n\nThe pool service was awful as well. The managers don't know what they're doing and the pool is always overstaffed with lazy high school kids or severely understaffed with one or two servers for the entire pool area.\n\nFor the price, I'd go stay at the Four Seasons, where they actually know what good customer service is.", "type": "review", "business_id": "SYqTY48DJa1cYhglvmgvsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xvZE0Mak4SGXqFeT59qctA", "review_id": "lG0DbJb6m9DCXMQnKJpwCg", "stars": 3, "date": "2012-03-16", "text": "I go here a lot. Well...used to. Service gets worse and worse. Food isn't as good as it once was. Happy hour is amazing though!", "type": "review", "business_id": "nXKwzVKJCtIGd4HxXgjdnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bAWxcnQ9qCQQcOMn58nPtw", "review_id": "_ztWOr-oQMzVtvDyswUQOA", "stars": 5, "date": "2012-11-06", "text": "Great, fun atomosphere! Service was great! My wife and I had a wonderful date night here. The fillet was nicely cooked and the sides were just as good. Average prices but great value! Highly recommend this place for date night!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "zAIMYeEWNlL-jYzlWOxeuw", "stars": 3, "date": "2009-05-18", "text": "Manager got a little whiney when I insisted that he check his shelf before I drive out to pick up a rare item. Their stock has been in error before, and sure enough... it was wrong this time. But no apology of course, and no acknowledgment that I was right to have him check his stock. \n\nOtherwise, selection is good on the whole, but customer service can be a little \"iffy\" at times. Easy access right off Lake Pleasant Pkwy on SW corner.", "type": "review", "business_id": "lVXDmY6UQ2cCimhPXpnYZA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "gKL6lu1vN1wB2L0w9XMW4w", "review_id": "n1o13WF-KclmF7ceeT0_Hg", "stars": 5, "date": "2012-03-03", "text": "Family friendly and we love the soups and salads. Mushroom soup is our favorite!!!! We also enjoy their veggie sandwich but all of them that we have tried are delicious. Sunday brunch is great too. We do frittatas or banana pancakes, yum. Or a simple Wildflower capaccino and scone does the trick. We'be been going for years and will continue to go. Oh, did I mention the free WiFi? Great for some business lunches.", "type": "review", "business_id": "CV4DDFG6tII-ehzaWPXK4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kFTTt5Ny21viUUsjc-uFPw", "review_id": "kqoyJTXju-MtZGqsuNLkxQ", "stars": 5, "date": "2012-12-17", "text": "I've played well over 40 of the Golf Magazine Top 100 courses in the US. We're lucky to have many of them here right in our backyard. This course stands out! Exemplary service, and the driving range is the best I've ever seen.\n\nThe course is tough. No country club rolls here. Hit it right or left and you're undoubtedly taking a drop, and a stroke.\n\nCan't wait to get back for my next round!", "type": "review", "business_id": "jsvIv9NRRBXdmCe8b88b4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DfxzHI4TjGTUuFELonH5wA", "review_id": "aYNCL7GpM59NF9uJyeeTkQ", "stars": 2, "date": "2012-01-14", "text": "we had the back door pizza for a village and in a word...yuck. i think the spinach was frozen and not fresh, the prosciutto had an unusual bitterness or was it the sauce? we also paid 8 bucks for two tins of lettuce with either bland dressing on one or little to no dressing on the other and maybe a few shavings of cheese. soooo not worth the money.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JC7nd7_Vf3QL9-PAnEpU7Q", "review_id": "3G-S4u-1_LKq0GdFIj5ERw", "stars": 3, "date": "2012-09-06", "text": "Ordered the Philly Egg Rolls. They came out still frozen in the middle. It's hit or miss if the waitress will be decent or not.", "type": "review", "business_id": "PN3aQAH-RONnK-ahkNm0xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w52yAz_L3CTPsEzyUsDmDQ", "review_id": "SOSvQkisnm_wDu9H9k6SyQ", "stars": 1, "date": "2011-04-24", "text": "My love affair with Pita Jungle is a long one.....perhaps longer than any other restaurant, certainly longer than I can remember, and at least for the adult portion of my life, which is why it pains me to write this review. \n\nFor the last 6 months, I have ordered takeout one day a week from this location, typically on a Friday or Saturday. The ridiculousness that has become my adult life has necessitated a heavy reliance on takeout for my main source of nourishment. Although the food is always spot on at Pita, my takeout experience has been anything but. \n\nThe prior 3 out of 4 times I went to pick up my food, I ended up waiting past the promised time. Now I'm not unreasonable, waiting 5 or 10 minutes is not a big deal, but each time has been a wait of 25 to 30+ minutes past the pick up time, with no apologies or explanations. I was beginning to wonder if they had ever started cooking my food before I got there. The last time I must've looked really irritated, because I was offered an obligatory baklava for my wait. \n\nUsed to the wait, I started showing up 5 to 10 minutes past the promised time, just as preventative maintenance. Imagine my surprise when my order was ready as promised thie time. I left with my bag of food and a smile on my face. I get back to my friend's house, open the bag, and begin to realize just how badly the order has been screwed up. We ordered 4 items, 3 of which were wrong. I load one item up and head back to Pita. Making me wait a ridiculous amount of time for my food is one thing, but blatantly screwing up my order is too much. As I explain my situation to the takeout girl, she goes to get the Manager who proceeds to inform me that I ordered it wrong. As I struggle to keep my cool, I inform them that they must be mistaken. One item was ordered with chicken, my item was turkey, and the other two were salads. Everything came with chicken. The salads were for my vegetarian friends, and I'm allergic to chicken. There's no way you're going to convince me I ordered chicken for myself and two vegetarians. Sorry, try again. Without too much ado, the correct dishes were provided, and yet another obligatory baklava was offered. I declined. There is only so much wrong that baklava can right. Don't get me wrong, their baklava is amazing, but it's not going to make up for them screwing up my order, then trying to blame it on me. Oh, and did I mention that they gave me a coupon for a free appetizer? Too bad the coupon expires in a few days. \n\nI'm afraid I will be taking my weekly Friday takeout business elsewhere, until enough time has passed that maybe, just maybe, I can find it in my heart to forgive Pita Jungle. In the meantime, I suggest you try to get it together down there. In case you missed the count, that's 4 out of the last 5 takeouts you missed the mark on, including 1 you tried to blame on me. That's shameful.", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "1wMGLaMIH7CcmJ2htS1rmw", "review_id": "zu4RtnUaVU0oKdc1SNiMOQ", "stars": 2, "date": "2011-01-19", "text": "I just cannot understand why this place is so highly rated. Could it be that people have never experienced barbeque outside of Arizona, so they have no basis of comparison? But even that cannot be true. We have Joe's in Gilbert, and even Famous Dave's is pretty darn good. \n\nI work a block from this location, so I have been there at least a dozen times. While not great, it is something different once in awhile, so I put in an appearance now and then. The food is not bad, per se, it is just not that good. The prices, on the other hand, are far too high for what you get. $11 gets you a \"large sandwich\" which is not very large, an order of fries, and a soda--RC brands. For a couple of bucks more I could get a combo platter at Famous Daves. \n\nService is all business. I don't think I have ever seen a smile in the place. But it is fast. The place is usually dirty, but I am usually there right around lunch, so it might be better other times. \n\nJust not impressed at all. But...it beats the Burger King down the street which is the worst BK in Christendom. But that is another review.", "type": "review", "business_id": "q1nDSpmV-FdTBNj6UuZvTg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "WCBz-xTApNh4u1VA_HKNLQ", "review_id": "I-cEw05vJIc6_SfiYUsGcA", "stars": 5, "date": "2008-10-22", "text": "I went there last night with bf to celebrate our anniversary. After pre-yelp, we knew what to expect as to prices, so it wasn't so much of a shocker.\n\nTo the food, we concur with almost everyone here. It was impeccable! We ordered the ice tower for 2 and thought that it was very well presented. Ours came with 3 appetizers (raw oysters, crab claws and dungeness crab) so it wasn't too high. They are all fresh. Growing up I used to go to the beach quite often just to have fresh crabs, so I know what those taste like. And for 6 years living in the desert, Mastro's is the first and only one in AZ to deliver that. \n\nFor main course, I got Ivory Salmon \"Oreganata\", bf got Swordfish blackened. I am quite picky when it comes to fish, and bf isn't exactly a fish person, but both of our dishes \"surpassed expectation.\" I couldn't say much about swordfish except it was fresh. We had the same dish 2 weeks before at somewhere else, it was nowhere near as sweet and fresh as the one at Mastro's. It was my first having Ivory Salmon, it was sweeter, and white (hence the name) than normal salmon we get around here. Mine was good size portion, firm to the touch, but melted in the mouth. The flavor was subtle enough to enjoy by itself, or you can add one of the sauces provided. One of my favorite sauces of the night I think was made of minced tomatoes and olives, came with the main course.\n\nSides were Lobster Mash and Snap peas. I didn't really care for snap peas as I can make them at home. But lobster mash is a MUST for those who go there. I'm not sure how they prepared it, but it felt like mash potatoes made with lobster bisque (instead of water and milk) and added lobster chunks. It was much more flavorful and creamy than a normal mash potatoes. It was big enough to share and take home. One thing though, it hardened up after sitting out for awhile, so I'm not sure if microwave could make it all fluffy again after 1 night in the fridge.\n\nDrinks there are amazing, from the presentation, to the taste, and definitely the amount of alcohol in each drink. We decided to go with cocktail drinks rather than wines because of other yelpers' reviews. Total worth it!!!\n\nThe service was amazing. We had Robert. We pretty much asked him for recommendations for everything, yet he was nice about it and very knowledgeable. Next time we go back, I would definitely ask for him again.\n\nWe didn't order dessert since they gave us a dark-chocolate \"Happy Anniversary\" cake with the letters written, also, in chocolate. The overall experience was 4 3/4, just because it was a bit difficult talking to each other. The acoustic of the room wasn't very good and it got loud. Didn't see much of cougar/manther scene as we were in the dining room. And maybe it was during weekdays, we saw lots of \"expense account\" people though", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "YMB29SPB8Z_a2be4O5gxOg", "review_id": "WizhcCsow_6T8JZ9D354EQ", "stars": 4, "date": "2008-06-10", "text": "Cibo is positively adorable. I love the atmosphere. I love the little house, and the yard. I love the excessively busy yet amazingly friendly servers. I love the iced tea. I love the bread. I love the Antipasto plate. I love making ad-hoc bruchetta out of said bread and Antipasto. I love the margherita pizza.\n\nJust on a Thursday afternoon alone, I don't think I'd ever come with a large group of people. It just doesn't seem like a wise life decision.\n\nReally? It's love overall. Love, love, love, love. When I can, I'm dragging my family here.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MtwKgPbXr71HumNRtZ7YEQ", "review_id": "Il4ucX55JzITknDYn0nFVQ", "stars": 4, "date": "2012-04-26", "text": "I didn't think my experience staying there was as bad as previous yelp reviewers...my stay was short, but, quiet and nice...service was good, and I had a restful night, the only thing I probably will suggest is,turn off the A/C before you go to sleep, that helps a lot (not summer season I mean)...", "type": "review", "business_id": "KT0VXcl8J7Jes9xheZTqbw"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "Aaafbip-U2aeTXbvinBLiA", "review_id": "e4W65iJ--wLbhBfS-uSpZg", "stars": 4, "date": "2011-09-18", "text": "Chakra has a very cute little cafe which I really enjoyed my first time there. The day before, I had a steak for dinner..shhhh..however, really wanted a veggie filled meal for lunch. I ordered the Pesto Basil Focaccia (tomatos, olives, peppers, feta) with a mixed green salad with a zesty lemon dressing. I loved it. Lots of flavor and the bread itself was moist and light with a crispy bottom. Cost was somewhat high I thought ($15) when ordering, yet it was really good and what I wanted so I was ok with the price . It did take awhile for it to come out, however, I wasn't in a hurry though. The tea of the day was a strawberry green tea. Very good, light on the strawberry so it didn't taste like a juice. I did purchase some Vanilla rooibos tea and a cherry black tea. Only complaint and being a Tea Snob with over 3 years working in the Tea industry and 80 hours of training, the teas should be in air tight light tight containers; keeping the air out keeps the teas fresh (green teas will go badly quickly!) Chakra staff was very helpful and friendly. I will go back to purchase herbs and teas in the future.", "type": "review", "business_id": "xIdyiVoX5woL8iKHYKoiWw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "M1kFiEqVrC7Qa029ZBiwfg", "review_id": "IfUe9426omy2ACJPpFRBNw", "stars": 4, "date": "2008-04-04", "text": "I don't know if it's in Phoenix or Scottsdale (referencing previous posts), but all the Phoenician's literature has their address as Scottsdale. \n Anyway, it's easy to nitpick, but when they charge the prices they do, excellence should prevail. The setting is lovely, rooms are sumptuous (one year we did get one that was pretty rickety and needed a do-over,however), staff is very friendly and generally accomodating. BUT, we usually arrive about noon and I end up sitting in the lobby until the room is available. This time it was available at 3:35 PM. I'm glad we called the day before and asked for it to be expedited since we're Starwood members and have stayed there several times before and would be arriving early. I know they have a noon checkout, but, cmon, three and a half hours to clean a room?! They guarantee the room will be ready at 4 so I guess I should count my blessings that I got in 25 min. early. Food in the restaurants is always good, as it should be, again, for the prices they charge. I cringe at a fruit cup with yogurt for $9.00. The Center for Well-Being, their spa/exercise area is very nice. Friends and I took advantage of some of the classes such as water exercise in the pool, belly dancing, pilates, etc. Instructors all knew their stuff and were fun and friendly.\n I am always amused by the fact that you can stay at a cheap motel off any superhighway and get free wifi, coffee in the room and often free breakfast. At The Phoenician there's no coffee pot in the room ($4. a cup downstairs), extra charge for internet access, etc. \n It's a lovely place but could, and should, be so much more.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "vkH1XXs1GMwIKG4W-xD6lA", "review_id": "f5ZLrsT5VBhBNCLDEypttA", "stars": 2, "date": "2010-08-02", "text": "The price is a little high for me. They don't give enough bean sprouts without asking for more. The pho broth is a little too sweet for me also", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 23, "useful": 17, "cool": 19}, "user_id": "yNVGe_z9hHxbvpa2Ns2JIg", "review_id": "OW2Pj5-ExHxuFoCQtRfIsw", "stars": 5, "date": "2009-09-22", "text": "I have had chicken. I have had waffles. And now, I've had chicken AND waffles. \n\nPrior to today, I didn't realize the distinction. Prior to today, I never had cause to consider the combination. Prior to today, I didn't realize what I was missing.\n\nNow let's be clear: this isn't the place for dieters. It's not a place for any pretentious behavior. The place has \"Chicken & Waffles\" in the name, OK? And that's what you're going to get. In abundance.\n\nCheap as hell. I had the #1, also known as KK's. Three huge-ass pieces of chicken -- breas, thigh and mutant leg. All battered and fried to perfection. Two waffles the size of Vermont. A bucket of grits with some egg/cheese/onion concoction on the side. OK, I could have done without the last part. But hey, when in a chicken & waffle place...\n\nI'm still full. I won't eat dinner tonight. I crashed out for an hour in post-prandial bliss. And I'd have typed this review faster if I could have stopped sucking my fingers like a four-year-old.\n\nDamn.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "-zWN0m-ZAKWmNnzohrz5Gg", "stars": 4, "date": "2011-05-23", "text": "The best burgers in town at a fast food restaurant. Cajun fries are tasty too. They have the coolest soda dispenser at this location. Hey, I never knew they had Orange and Rasberry Diet Coke.", "type": "review", "business_id": "VsrvWdZL2993olnW3z8R3A"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "DueHdFSnn75LVHQmXM0x0A", "review_id": "QDtoaAn8i6imz8YRKEfEWg", "stars": 1, "date": "2012-06-12", "text": "Have been going to LGO since 2003 and have always enjoyed the cuisine. Several times - either when ordering in the grocery or dining at the Pizzeria - the music has been so headsplitting as to wipe out any ambience or semblance of a welcoming neighborhood restaurant. Last night the demographic in the Pizzeria during the course of our meal ranged from 30-80 years of age. Several pleas to turn the music down just enough to be able to hear the waiter standing next to me were greeted with \"it's just how we do things\" and \"there's no point in asking because they won't turn it down even a little\". The waiter, David, said many servers consistently relay complaints but that the owner \"really doesn't care\". Hubris is so unappetizing. I think the food is great but, because I have no desire to support a business that really doesn't give a crap about its clientele, I'll spend my money lavishly elsewhere.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 3, "useful": 4, "cool": 1}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "FPSRJaAp3PtsziUpTsXmxw", "stars": 2, "date": "2010-03-18", "text": "I decided to go to this location because its closer than the Scottsdale one where I originally got my contact lens prescription. Next time I will drive to Scottsdale to avoid the terrible service. Ended up waiting nearly 30 minutes just to get my new contacts. There was only one guy working the optical department and a massive amount of people and phone calls coming in. Obviously they need to staff better because you could tell he was getting flustered and was blatantly rude to a couple of the customers ahead of me. For my new (disposable) contacts it was $50. $50 for a two-week prescription! Are you freaking kidding me? Needless to say I went in with a headache and left with a migraine.\n\nOh and on top of that I thought getting a slice of delicious Costco pizza would help after such a crap experience but alas I was wrong. The lady at the food court (again there was only ONE person working) was rude and I felt I was in a drill line. She literally threw my receipt at me. Well, geeze thanks. Oh and the pizza definitely didn't taste like the Costco pizza I'm used to.\n\nFurthermore, what the hell is wrong with people who live over here? Not only were the employees rude but so were the customers.\n\nThree strikes and I'm out of there.", "type": "review", "business_id": "vH_WlMNtzx7Dq6Li5ecWEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DVnxcsSdUC_6BcCKL48LrA", "review_id": "dHjY9BmSMBcUHZL_2yNY6w", "stars": 5, "date": "2010-10-22", "text": "LOVE LOVE LOVE this office! During my high-risk pregnancy I spent a lot of time at this office and in the hospital. Both Dr. Hahn and Dr. Spieker were fantastic, very knowledgable and easy to talk to. I trust them completly as they did everything to ensure both myself and my baby were well taken care of. I have since seen Dr. Cyr for a quick appointment whom is very sweet.", "type": "review", "business_id": "eovEq5kDSdf0WF_P_bD2Uw"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "RKljCKqZkJhau8xDJwoLng", "stars": 4, "date": "2009-11-29", "text": "Oooh! A shiny new pizza spot! I have been told time and time again to try Barro's, so the opening of this location was the perfect opportunity to put it to my pepperoni and mushroom test. All I can say is What Took Me So Long!? This pizza is GOOD! Zesty sauce, ample topping coverage and a puffy pillow-like outer crust. It looks like it would be chewy, but it is not. How do they do that? Some sort of pizza alchemy, I am sure.\n\nThis location is brand new. The dark wood floors and high-backed booths (that don't yet have butt-indentations from previous guests) are not the typical plastic red/green/white decor what you would expect from a casual pizza restaurant. The staff is friendly, both on the phone and in person, which is nice. \n\nIn addition to fantastic whole pies, they also have inexpensive lunch specials (2 slices and a soda for $4 is my favorite!) until 4pm every day.\n\nMy only small sadness is that this location does not deliver to my house (even though it is closer than the Barro's that does cover my delivery area). Oh well, I like this one and will probably visit more than is good for me!", "type": "review", "business_id": "qVoWe3nVVkg5KSOmQpntIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PhiZFPxJbWBSHJ_z5EKCpQ", "review_id": "7JIG75mLro1rXueMHNucbg", "stars": 4, "date": "2009-07-21", "text": "I LOVE the Bacado. There is nothing better for nursing a hangover than the Good Egg. \n\nWe try to visit every few weeks. Yes, the wait for a table can be long, but it's totally worth it!", "type": "review", "business_id": "4meJyPOhuAKzywUJTmu2hw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Nz6Qv5ZCkFsSWW0OMNhAMQ", "review_id": "ZbX2MPUMhrOhPI_KS5vCTw", "stars": 3, "date": "2011-06-08", "text": "I hate walking in here because it always stinks. They really need to ventilate this place. My daughter loves it, always had a great time, whether she is skating or attending Club 54. Great place for birthday parties, she loved her party. She also got a butt-load of tokens with the party package.", "type": "review", "business_id": "M9t5569pgvJYurC8hX0E1w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "fNfLXX_ce2TQPrdHCqPzZQ", "review_id": "0TOeLCKCMT_JkxyauDBn0Q", "stars": 4, "date": "2011-12-18", "text": "went for an early dinner with my honey on saturday. we normally don't order apps but we we didn't have lunch so we needed something to get us through. we went with the hummus and pita bread and it was so fresh and yummy! server said that it's homemade in house. For my entree I ordered the salmon with mixed veggies and the hubster ordered the crispy chicken and subbed the creamed corn with mashed potatoes, he loved his side of asparagus... smokey flavor. our server did provide us a lit sample of the creamed corn because he raved how delicious it is. yes the creamed corn was very rich and in my opinion not worth the calories unless you've been good all day. we both ordered red cabs and we skipped dessert since we were nice and full. enjoyed our meals and the friendly service.", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h9FvuiV-YcvrAYBQhdSoEQ", "review_id": "lzWmjb5zIX2R1mWn0Y9b2A", "stars": 3, "date": "2011-08-08", "text": "Mixteca was OK. Kind of a cross between Baja Fresh and Robertos. The quesadilla was decent and the beef tacos were good also, just nothing spectacular. I would go up the street to \"Carumbas\" for something better.\nDoesn't accept AMEX:(", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VZmjh4DrycVfTw3WigMQaA", "review_id": "I4fXljiSAnumkG2tUsjFuA", "stars": 3, "date": "2012-03-13", "text": "This is a great alternative to national chains. \nGreat pizza at a great price and usually a coupon is readily available. \nThis location is no frills and the salad bar is basically extra pizza toppings. Yet its always clean and the staff is normally friendly even when phone swamped. \nBarros won't knock your socks off but it always has great, wallet friendly pizza pie.", "type": "review", "business_id": "U_CvxSM9epIi8u5A0jOUVw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "Ofxlhi_HKp7myFDpwg9aIA", "review_id": "jmRxrVZ7YJ2hXr6fGxwsBg", "stars": 4, "date": "2009-02-01", "text": "Cin Cin pronounced CHIN CHIN which means cheers in Italian! This is a great little bistro type lounge. It is a posh little lounge with unique little decorations and a small patio great for small groups.\n\nThe food here is excellent the service is good and this place is never real busy so it is a nice place to enjoy a quick bite before you do the club scene so you don't get extremely wasted on an empty stomach, a great little starter place for you and some friends.\n\nThe location is great too, right across from the W and and down the street from Axis N Radius, Suede, and PCL. This is definitely a good spot to meet at for before binge drinking in old town. \n\nI got a bottle of Pelgrino water and the stuff portabello mushroom, with the vinaigrette spinach. This was excellent probably one of the better portabello mushroom meals I have eaten around the valley.", "type": "review", "business_id": "3pFyhcGd4YykGI6tf07hmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XdhfTOCIUkfIua4icmQ8OA", "review_id": "xaK8EuMeNwN__dLLJVAu3g", "stars": 4, "date": "2010-05-08", "text": "This place has some EXCELLENT, LARGE, and MEATY burritos. They also have some pretty good horchata, and nice tortas (sandwiches). If you're looking for a drive-through, or are willing to eat outside, then Filiberto's is a great place to get some food.", "type": "review", "business_id": "IFKTsVSSguMjLBA9mo0x0Q"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "QGzJEV4IpIW-jsb49FyLpA", "stars": 4, "date": "2012-05-22", "text": "We decided to try out Rudy's last night, hoping the lines wouldn't be too long since it was still 107F outside. We lucked out! There were only about ten people in front of us, so we felt we scored! \n\nI am a big fan of Texas BBQ, namely beef ribs and brisket. I usually go for the lean brisket and light to no sauce (in true TX form). \n\nLast night we ordered the moist brisket ($12.98/lb), coleslaw and a turkey sandwich ($4.99) for DD.\n\nWith three fountain drinks, the price was about $21. DH also went back and got the banana pudding and the chocolate pudding for DD and himself. I think he spent about $6 on that.\n\nTHE FOOD: The brisket was DELICIOUS. It was perfectly smoked and not too fatty for my tastes. It had a good amount of char on the outer edges, which is my favorite. The meat stood alone on its own. Very good sign! I did try both the Sissy Sauce and the BBQ Sauce. The BBQ sauce was quite good. \n\nThe turkey was smoked, which is not my favorite, but it was pretty good. DD ate it after making me remove the \"black edges\" off and getting her two slices of bread instead of the bun it came on. That was fine with me because I put my brisket on the bun with some BBQ sauce and I was a happy camper.\n\nThe coleslaw was good. It was sweet, but not too sweet. It was crunchy and a little reminiscent of the KFC coleslaw, tbh. \n\nWe were disappointed that they did not have any mac n cheese. Mac n Cheese goes great with brisket!!!\n\nDESSERTS: The chocolate pudding was yummy and had an oreo cookie crust at the bottom. \n\nThe banana pudding was just okay. A friend of mine gave me a recipe for banana pudding years ago that is really simple and appears to use the same ingredients, but is far superior. I wonder if I should share it with Rudy's?! \n\nOverall, we will definitely get Rudy's again. However, we will probably just order the brisket to go. We can make the sides for a lot less and I am sure DD would prefer something other than the turkey for dinner. \n\nYes, that's right, will be back.", "type": "review", "business_id": "IWwt0vm8lYbVoyGSPd2Z9A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RvyTTpBLqd8yHomBTW_Kpg", "review_id": "rcIRJ7iVc0gm-NlkZeAKZA", "stars": 3, "date": "2009-12-21", "text": "I ate here after eating at the one in San Diego a couple times. I was a little disappointed. The place was kind of depressing and slow moving, but I was there at 8:15 on a Tuesday. Overall, the food wasn't that good. I had one of the soups and it was just okay.\n\nI would definitely be willing to give this place another shot, though. I really liked some of the stuff at the SD location and I would like to try it here.\n\nIf you have never been to a Loving Hut, it is worth a visit to see the crazy TV channel and some of the inventive dishes.\n\nI strongly recommend the things that look like breaded chicken legs but are really filled with mushrooms. That thing is tasty.", "type": "review", "business_id": "u-nMW__EKMYH_PVqacYc3Q"} +{"votes": {"funny": 6, "useful": 10, "cool": 8}, "user_id": "4lkTIhTuMhLprQprGlTRlA", "review_id": "Yp6cg1O5DzBVFDcBkI6y1Q", "stars": 5, "date": "2008-08-18", "text": "First, I'd like to send a shout-out to Irma, our server who has given me hope that there are caring hospitable people in the food industry. Irma receives 5 stars for taking good care of me and my sweetheart during our recent date at the Havana Cafe. Way to go Irma!\n\nWe step into a well packed restaurant on a Friday night with plans to try the Sailor's Paella Special and a few cocktails. We wait for just a few seconds until we are greeted by Irma and her warm smile and are led to our table. Our cocktail orders are taken immediately, 1 Mojito and 1 White Sangria. Both exceeded our expectations and were just thing to get our date started.\n\nThe ambiance is whimsical and charming - Reminded me of the movie \"The Bird Cage\" without the drag queens and dramatic dialogue. Bummer!\n\nNow on to the Paella. It was the perfect dish for the evening offering plenty of shrimp, calamari, crab, scallops, muscles, tuna and a healthy serving of saffron rice. This meal also requires a little handy work to get to the crab and muscles but you are given the proper instruments to do so. This may not be the best choice for those who do not enjoy this kind of food activity but we had a lot of fun with it. We will be back soon to try another interactive meal and partake of a round or two of Mojitos. \n\nSo if you are in the mood for something different, fun, and oh so delicioso, I recommend you try a night out at the Havana Cafe. I also hope you have the pleasure of meeting a groovy gal who goes by the name Irma.", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t5qFxYP2t6ltRbvhqJsZAQ", "review_id": "k6fuC6MOeYkh6QdMqXDD_Q", "stars": 5, "date": "2010-11-28", "text": "REAL NY STYLE CHINESE FOOD HERE IN ARIZONA!!! \nFREE HOT TEA AND FRIED WON-TON SKINS LIKE BACK HOME! (BY REQUEST)\n\nI am from New Jersey and so are the owners. They opened up shop here 1 year after I moved here (1998) and I was delighted i could get a real NY egg-roll and spare ribs in Arizona. Their best dish i feel is the Szechuan Garlic Chicken (or shrimp). Try it once and you may never try anything else on the menu it's that good!! Taste's the same as the best of NYC.\n\nTheir lunch specials are amazing. Comes with soup, spring roll, crab puff, fried rice, hot tea (by request) all for a very low price. Sunday is Dim Sum if you like dumplings. This place NEVER disappoints and I bring work clients here from New York all the time.\n\nthey all agree, REAL NY CHINESE FOOD!!!!", "type": "review", "business_id": "zxqvU415r_RtZRKDtdbIKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "KqC1_aa0jDh71L-Ofwlkcw", "stars": 3, "date": "2011-10-16", "text": "Bit over priced, but they're tea is to die for!", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hFoCstZ8DatlVmmkO_e4Ug", "review_id": "EEZAYKBxRPzEfCorbRkI8w", "stars": 4, "date": "2011-11-23", "text": "Our hotel was awesome enough to have beach cruisers you could borrow to ride around downtown. This is the only reason why my friend and I got all the way to Old Town on our one and a half hour break until dinner. It is such a cute little area. I loved all the little shops they had. It felt like we were walking around in an old cowboy town and I couldn't help but yell \"YEE HAW!\" I just had to get it off my chest.", "type": "review", "business_id": "4gIV5MYpCDbNI-bL3g_tSw"} +{"votes": {"funny": 6, "useful": 8, "cool": 6}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "UzlYykDGOzKcmfEMZSEyhw", "stars": 5, "date": "2012-04-12", "text": "This is a great place to shop, grab a bite, eat dessert, relax, or just hang around.\n\nEat at one of the many excellent restaurants like Christopher's, Seasons 52, Black Chili Mexican, and Capitol Grill. Swing by Royal for a cappuccino, iced latte, or your favorite coffee of the day. Savor frozen delight from Haagen Dazs or Mojo Yogurt -- ahhh my sweet Mojo, you and I have been in an on and off relationship for the past year now... by off I mean the 3 or 4 days a week I'm NOT there :) .\n\nMovies in the park nights are fun to go to; gasping, laughing, and crying with 200 of your closest (people you probably just met). Get there early for good seats, (about 30 min or more), otherwise you'll be stuck behind a tree or some tall guy you can't see around. Be sure to bring a lawn chair along or a blanket to throw down if you'll be attending one of these events.\n\nThe shopping is top notch - but be sure to bring your wallet. Most shops here will cost you at least your first born child, or an equivalent value.\n\nHappy shopping to all my yelping buddies!", "type": "review", "business_id": "QAWdgDgWaFJYzJ2pGDjmdw"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "eshIqohS-9FMLdKOhTr2Ng", "review_id": "AcmvLHTZVUn52lgq60vEtg", "stars": 4, "date": "2012-04-12", "text": "***** The service was fantastic, There was a nice warm lady attending the shop and the Gelato was awesome as always!!! \n** Yummy Chocolate Caramel Fudge Brownie!! :)", "type": "review", "business_id": "Hlg5GDrdDtjeD8XGwH1eFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nNdUiAj3sD_oLHHyPp2N3Q", "review_id": "6_ENksWBrtHnsx3NikmSYQ", "stars": 4, "date": "2011-04-04", "text": "Went for lunch with my family - my wife and I both ordered salad nicoise and tasted the food ordered by our kids - croque monsieur, the burger, and french fries (pomme frites). We both agreed that the salad was the best. We ordered it with salmon filet (chicken is also an option) and it was cooked perfectly - crusty on the outside while moist on the inside. The other salad ingridients complemented the salmon very well. For desert we ordered beignets which were served with a kind of chocolate sauce which the kids loved. Overall it was a nice lunch.", "type": "review", "business_id": "no_FXjscklz1SEzM_XnVgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NQGjnYaRodGqqVicG7cjAQ", "review_id": "nBuatV28cakFItwNMVOh4g", "stars": 5, "date": "2012-02-04", "text": "Best ribs in Arizona (besides my own)!!", "type": "review", "business_id": "sMO71vGV8wkKujOle3-v7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ooc298cJRTvQBTglxwIF1w", "review_id": "36lbjQM7j_pPKA8x7QISOA", "stars": 5, "date": "2011-11-04", "text": "We've been going here for years. Love the food (Happy Family is a favorite dish) and appreciate the community service outreach. Great to support locals who support the community ... and dish up great food along the way.", "type": "review", "business_id": "-mz0Zr0Dw6ZASg7_ah1R8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o2J22OK7xXL-sDPzANxy5g", "review_id": "Lp5zZSvzcJx3H-NswlthSA", "stars": 4, "date": "2011-07-25", "text": "mmmmm - wine \nmmmmmm - beer \nmmmmmm - well yes, I am a lush and this is lush heaven! Thanks Bevmo.\n\nOnly one not great experience here and it was customer service orientated, let's just say there is a lot to know about wine and just because someone is in flip-flops doesn't mean they want a $5 bottle...", "type": "review", "business_id": "obYD-4HxZ3gqhS5hPJKG_Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "TQ5eVGOFr_qB5_BbEd3Sow", "review_id": "mbhiMU4J8w2QHU0AKtWPEA", "stars": 4, "date": "2010-12-11", "text": "Dangerous place to shop! Lots of neat imported goodies, many in sample sizes so you can try them out before buying the bigger size. I got about 6 different flavors of hot cocoa, a maple sugar candy in a maple leaf shape for me (Michigan thing), and filed away a lot of ideas for gift-buying when I get home. I might even ask Santa for a gift card to World Market for myself!", "type": "review", "business_id": "DAOoaurZxekzu5ZrYAT8gA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "fJGWSgGsvb6leJzOuE2O3Q", "review_id": "P53JqzZo2mtV8UXo9oR7HA", "stars": 4, "date": "2012-01-02", "text": "My boyfriend and I came here this past Friday night for dinner as we had both drive by the place quite often and have been wanting to try it out. \n\nThe service was great and I liked the wide open space. We tried two different beer samples for a $1 each and settled on splitting a pitcher of Levitation which we both enjoyed.\n\nWe ordered the green chile dip appetizer. I ordered the shrimp tacos and my boyfriend ordered the brisket. He LOVED the brisket and after taking a bite of it, I could see why. It was quite good. My shrimp tacos however, were so bland that I barely ate half of my meal. And it was a \"small plate.\" I wasn't the biggest fan of our appetizer but after tasting my dinner, I decided I liked the dip a lot more and finished it off. Definitely do not recommend the shrimp tacos.\n\nOne annoying thing was our meals came out right after our appetizer. A little time in between would have been good - but I'll take that over slow service any day. \n\nI'm giving this place four stars because of how great the brisket was and despite not liking my dish, I had a great time and think this place has lots of potential. I'll be back to try something else!", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SAaJZJBuoAghlT_pFw8EIw", "review_id": "zvB3mOXVnby0i5iRiQaItQ", "stars": 4, "date": "2012-07-29", "text": "We had my husband's birthday party here. The staff could not have been more accommodating. They made everything easy! Our friends loved the place and the band (ReGroove) and had a wonderful time. Drinks are well-priced and very generous. The owners and staff truly want customers to be happy, comfortable, stress-free and to have a good time!!", "type": "review", "business_id": "8lMQrVQU-5iG9UA4KvcnsQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "du5qsKi8mf4Y8V_toLCGQQ", "review_id": "rFG0owQOcg-5snzvaiZVmg", "stars": 5, "date": "2011-09-30", "text": "Loved it. Pulled pork & pulled chicken, bbq sauce & the cole slaw were ALL outstanding. ONLY caveat is that GPS tries to send you to thhe wrong side of the highway. It is in the shopping center with CVS & Circle K.", "type": "review", "business_id": "1f0g466Geu4nDdJhYQ_Vhg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "qT17WVkJi0RvQ4nNPN6NDw", "review_id": "rmiwxR153IJHr9MTgsT-BA", "stars": 3, "date": "2012-07-31", "text": "it's an Imax theater, so unless you haven't been to one then it you know it is an oversized screen with wider shots and better sound. The location itself looks dated and in need of some repair, perhaps just some paint. The viewing experience was great and I will go back if there is another flick being shown that I must see in IMAX, but the fact remains the Mall, the Theater and much of the area looks dated.", "type": "review", "business_id": "LDJhwZN14AZOJyHjg2lkRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "w0gLpjMGW3OmVHEwm_gL_w", "stars": 3, "date": "2011-06-09", "text": "Service here sucks. Our \"waitress\" took forever to get our food, and then didn't bring utensils, plates or napkins. I had to keep going up to the bar to get a drink. Several times I waited too long. One time I went up there and there was no one working there. I should have just put on an apron and walked behind the bar myself and made my own drink. Still, they have an awesome set up outside for enjoying the warm Phoenix nights. I dont' understand why the band has to play inside. I guess people who live nearby complained about the noise. Then don't live next to a f*cking bar!!! Idiots.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "izOUjRwXReNSYtIl_AUR9w", "review_id": "xlrUsFsobQXN-Z4zrIexsw", "stars": 5, "date": "2011-01-23", "text": "Great new addition to the Old Town neighborhood. Citizen is versatile -- the perfect place for a romantic date, a small gathering, or for just meeting a buddy for a drink. A place with a great vibe.\n\nMy first impression was that they are intently focused on service quality. Lots of smiling staff to greet you as you enter. Every employee is attentive to every table. Our server was gregarious, accommodating, gracious, and highly proactive. We definitely felt the 'warm and fuzzy' atmosphere.\n\nThey pay attention to the little things -- such as house-made ketchup for your french fries. \n\nThe food: about as good as upscale bar food is going to get. For apps we started with the calamari and the crabcakes. Portions weren't large, but very high quality. The calamari was flash-fried and not greasy, and seemed very fresh. For my entree I had the wagyu burger, which was prepared perfectly and served on a fresh challah bun.\n\nOverall impression: Citizen will have staying power, unlike many establishments that open in Old Town. The formula is really pretty simple -- offer high quality stuff, equip the place with great staff, and don't go overboard with prices. I'm looking forward to returning!", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9eeqmxfVfAT4oyA4y2WcNg", "review_id": "hUZgkyZGyIfNC7FdTpxtmg", "stars": 4, "date": "2011-11-16", "text": "First off, I am not a science person. Unless social sciences counts, in which case, I have a bachelors degree. My boyfriend on the other hand was raised by two Phd holding physicists and studied electrical engineering in college. He has weird accelerometer-type machines in his garage and has conversations that would make the cast of the Big Bang Theory proud. Kudos to the Arizona Science Center for offering exhibits that appealed to the both of us.\n\nWe started on the 4th floor at the Solarville exhibit which focused on energy, the environment, and conservation. It talked about individual household energy usage, and ways to reduce environmental impact. The 3rd floor had the Forces of Nature and Technology exhibits, which both offered interactive and informative displays. The 2nd floor was all about electricity, so naturally my electrical engineer bf showed off his knowledge. The coolest part of the museum for me was the first floor at the \"All About Me\" exhibit. It covers the systems of the human body and even has a stomach you can walk through and a giant nose that blows out objects. The neuroscience portion was very interesting, and I enjoyed taking the interactive memory tests.\n\nAdmission was $14, not including special exhibits or films. We had a limited amount of time and didn't get to check out any of the extras (IMAX film, planetarium, pirate exhibit). We saw almost all of the museum in 2 and half hours. We were there in the early afternoon on a weekday, and it seemed like most of the school groups had cleared out by then.\n\nWill definitely be back, perhaps for the Adults Night Out. Nothing against kids, but I can only handle so many middle schoolers at time before I want to scream.", "type": "review", "business_id": "MwmXm48K2g2oTRe7XmssFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "N6q91wGo-JY1yo-fMycjGQ", "review_id": "xIxcJEIdZzUQdD52Bt2MqQ", "stars": 5, "date": "2010-07-13", "text": "While Calabria Italian Kitchen & Deli is at this location the Grocery portion has been CLOSED.", "type": "review", "business_id": "PwtYeGu-19v9bU4nbP9UbA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "3ix18AwLgVCEBMRoc_cMxg", "review_id": "_UeF6NX6eBLdV4gGKDmzYQ", "stars": 5, "date": "2011-04-04", "text": "Went here while on vacation in Phoneix based on seeing it on Man vs Food. Could not have been more impressed. Food was amazing. Far above expectations. The torta was huge and delicious. Would highly recommend it to anyone looking for a fantastic authentic meal at a good price!", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "M-j04kcOanazSntBzoD3ng", "review_id": "vpOkcK08T4Nvc0xHT4lE0g", "stars": 3, "date": "2010-12-22", "text": "Totally agree with the rest of the reviewers about this being the usual greasy, meat-heavy Mexican restaurant with no frills, but soul-satisfying stomach-filling food. If you're on a diet or if you're the lettuce-eating, fat-free-everything types, you'd do best to steer clear of Poliberto's--everything is unabashedly huge and dripping in lard here. I wanted to get the three tacos combo, but since I'm a recent beef-eater, I couldn't stomach the description of tongue and beef head being included in the tacos. Though I figure it must be tasty :P\n\nAnyway, I got the chicken taco and the carne asada taco and got plenty of lemon wedges and salsa. The tacos were huge. The asada was more delicious than the chicken. The chicken came topped with lettuce and shredded cheese and had a hard shell, which I was definitely not expecting, and didn't like. Other than that...Ok to eat at when you're hungry and want to save a buck.", "type": "review", "business_id": "O4GznwWobGqx01DUlijgZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MBLcbQ_miC1c11cfXQRKoQ", "review_id": "vGuotZXQZw0ztpTxcVmAVg", "stars": 3, "date": "2012-01-07", "text": "I thought it was ok, hubby thought it was spectacular. I tried to order my standard soy vanilla latte but they were out of vanilla - to me that's like a hamburger joint being out of ketchup. So I got a mocha instead - nice coffee flavor, but the chocolate didn't taste so special. Hubby had a cappuccino and would definitely get it again.", "type": "review", "business_id": "5ambRqdTJt9vGwFzVI9HBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ywaCFgUztQtnuZktOrbSaQ", "review_id": "TLMZDcoS2Ex4b9dC5orLVg", "stars": 5, "date": "2012-12-03", "text": "My mother and I were actually getting out of the car to go to Streets of New York next door when she smelled the Mexican food and suggested we try Roberto's instead. That should tell you what you need to know right there.\n\nIt's a hole in the wall place for sure, and leaves much to be desired visually, but the staff was exceptionally pleasant and the tables were clean. If you're looking for fine dining, this isn't your place. At $7-$10 for an entree, though, it was delicious.\n\nBeans, rice, and chips were pretty standard, but the salsa, fish taco, and shredded beef tostada were very flavorful. The food tastes homemade, and in this case, that's a good thing.\n\nThis place was also featured on TLC's Diners and Drive-ins show back in the day. One of Anthem's best kept secrets. I'll be back!", "type": "review", "business_id": "uPDTnuR-sOi47blHH943lg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "rXAGGokaD3Z0D4Zg_mhMrw", "stars": 4, "date": "2010-01-11", "text": "I love an Irish pub, and I love me some Fibber Magee's. My trips are fewer now that I live out in East Hell (Queen Creek), but when I lived in Chandler @ Dobson & Warner, I visited much more often. I still love the feel of this place - the dark wood, the high round tables. I feel like I am back in Dublin.\n\nI used to get the bangers & mash every time I visited, but the past few times my most recent time I went with fish & chips - one of my favorites. I didn't see the bangers on the menu this time, so it may have been changed. The full Irish Breakfast is exactly like I had back at the Tyrrellspass Castle Restaurant on my way to Galway, Ireland. Wash it down with a Guinness or a Black & Tan. Sl\u00e1inte!", "type": "review", "business_id": "57YV3wsiNBp-aK25qjUeww"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "argi5hRyyKKE3wu_vODCjw", "review_id": "4sK6WsKvJEI7jnnSOE9QRA", "stars": 5, "date": "2009-01-29", "text": "I have been eating here since high school, so i can safley say bout 35 years. The food is still as good as it was when 15 of us would jump into Smitty's vw van and drive down for our 30 minuet lunch break. (West high of course) It has been owned by the same family since it opened in the early 1800's!!! Yes the cheese crisp are awesome but the tacos not the shredded beef but the regular tacos are the best in town. Order a couple they are sooo good. Love you Los.", "type": "review", "business_id": "BM0-dgPJMBMmcmO9PVCJfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gt0tpFILcaTKZ27-pafRzw", "review_id": "H_-LLz_613jdSCaqbEQ2IA", "stars": 5, "date": "2011-11-17", "text": "I LOVE DIlly's! I always get the Dilly Club and Chicken Noodle Soup, which comes with a bread bowl that is oh so yummy!", "type": "review", "business_id": "1eBJyYf3JEccqXUFxG1VWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "M6Wi9pKDx-W6rGgmf9GVMw", "review_id": "_G_rFpfBDISUIlSLKDUOtA", "stars": 5, "date": "2012-10-27", "text": "Creative Healing Solutions is a fantastic naturopathic doctors office. I'm so grateful that I found this place and met Dr. Roxie Strand and her wonderful assistant, Melissa. My life has changed so much for the better since April 2012 when I walked into her office super frustrated with many previously unsuccessful weight loss attempts. Dr. Roxie was attentive and thorough, and suggested I consider HCG. I had never heard of it before then, so I went home and did my research. I was a little nervous, but never felt any pressure and when I decided to give it a try, I felt very at ease being under her supervision. Now, I'm 85 lbs lighter and feel better than I have in years. I could go on and on and speak to how wonderful the program, office and Dr. Strand are, but I simply suggest that you consider visiting Dr. Roxie yourself if you are seeking to address medical issues that you haven't been able to solve before. She does a free consultation and is genuinely interested in helping find a holistic health solution for you. I never thought I could totally change my lifestyle, but Dr. Roxie definitely helped me find a way to do it and has been a major supporter in my journey, which I appreciate so much! Whether you are in need of a weight loss solution or need someone to help with other medical matters, I fully recommend Dr. Strand.", "type": "review", "business_id": "u8KvEPDGbX4v8mC2kHD5WA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TLj3XaclA7V4ldJ5yNP-9Q", "review_id": "k97DYNM0OXUxtu4LEwi6CQ", "stars": 5, "date": "2007-11-24", "text": "After spending a combined seven years as a graduate student at ASU, imagine my dissapointment when I came to discover that there was finally decent Asian food walking distance from campus... two months after my departure for internship in San Diego. \n\nDragonfly combines what I like about Vietnamese food (variety, flavor, price) with what I like about a modern, trendy restaurant (good decor, modern music, attentive servers). \n\nThough everything on the menu is above average, one item really stands out; cha gio cream cheese. I believe at this location it's called tiger rolls. Completely inauthentic, and I couldn't care less. DAMN they're good. When I drive in from San Diego, I often head there on my first night in town, occasionally as soon as I hit the Phoenix area, before stopping off to drop off my bags. Honestly one of the best things I've tasted anywhere. Highly highly recommend.", "type": "review", "business_id": "Qa6Gmw6OcNKrqVDh80I_9w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "61FMUKz0Z0bCConUAOAIqQ", "review_id": "FbW4ckzkuKf_OjzEhC61MA", "stars": 5, "date": "2012-11-28", "text": "I had lunch here today with co workers and it was absolutely delicious! Cannot wait to go back gain.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xAFD6qLYBDxr8qwx68W7QQ", "review_id": "uatdmmiDdIl7RqIauygFGA", "stars": 4, "date": "2009-01-02", "text": "It's difficult to find good bagels in Scottsdale, so my roommate and I ventured to Tempe to satiate our cravings.\n\nWe both got the open-faced bagel, cream cheese and lox. It was excellent and fresh. The bagel was chewy without being too bread-like. The lox was fresh and high quality. I will definitely be back.", "type": "review", "business_id": "-hQ8iZygzi0iiTFUkHgiEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZkMwOom9fRaZvJxgjZOVXA", "review_id": "gm4m_n41DcA-ww5a-EEy7g", "stars": 4, "date": "2011-12-12", "text": "The Sport Chalet is a little bit of a playground for me because they have an assortment of gear and clothing for many sports and outdoor activities. Among the areas within the store that I've visited in the past are boxing, basketball, hiking, shoes, workout clothing, swimming, & kayaking. They carry high-quality equipment from well-known brands. \n\nThe store associates are helpful too without being too pushy. Specifically, they acknowledge your presense; ask you if they can be of assistance and then move along their way. The Sport Chalet also has a free membership rewards plan as well, which is nice to have, but not necessarily the selling point for shopping here. That is, you'd have to purchase a lot to accumulate a certificate for a few bucks off. Although, I probably receive a $10 off certificate at least twice a year just for being a member. \n\nFinally, the one aspect about this store and other Sport Chalet locations that sets them apart from other large sports stores such as Sports Authority and Dick's Sporting Goods is the scuba gear and onsite scuba training they offer. You are even offered the opportunity to try it out in their back pool, which I've experienced myself. You just have to fill out a waiver releasing the Sport Chalet from liabilities and acknowledging that you are in good health. Then, you change in your swimming gear and head out to the back to meet the PADI-certified scuba instructor. You don't have to put on much gear. It's just a pair of fins, a buoyancy compensator over your back, oxygen regulator into your mouth, and a mask. You're guided by the instructor as you first swim near the surface and then head deeper into the pool. I did feel really awkward at first, but that's to be expected. As I left the pool and was guided to the front door of the Sport Chalet, the other scuba instructor provided some recommendations on some equipment and indicated they do not receive any commission for the sale of certain products. I totally enjoyed my first scuba experience and recommend at least trying it out at the Sport Chalet. They offer these \"try-outs\" around the spring and summer.", "type": "review", "business_id": "3z4gm9x-CUpn6apB5GDmdw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "9JpnM-xebt0343KkGR_HKQ", "review_id": "fzZZKnVttkOYZRIx6iYxCg", "stars": 4, "date": "2012-05-08", "text": "You Say Potato, I Say Chicago\nBy The Rue\n\nOld Chicago is where I ate,\nI would probably by lying,\nIf I said it was great.\n\nLunch special calzone for $7.99,\nBy the time I left there,\nMy big hairy belly was doing fine.\n\nYou're probably thinking \"eww that's nasty\",\nLike Magnum P.I. it rules,\nThe waitress wasn't sweet or sassy. \n\nInside that finely browned bread pouch,\nI had it stuffed with pineapple and jalapeno,\nUnfortunately my mouth didn't say \"ouch\". \n\nIf you're reading this and rolling your eyes,\nIt's okay, I'm not here to entertain you,\nI'm just here to eat pies. \n\nEnd", "type": "review", "business_id": "_9h-jH3YOkAU9-2A-dy6YQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2qRPm3wpyAapzHLpQQm48Q", "review_id": "F6B9EGeunz_tt8hQ5YYGCQ", "stars": 3, "date": "2012-06-06", "text": "Food was decent, smaller portions which is GOOD, friendly service. Not the cleanest but a decent meal with good prices. It would get 4 stars if the food had just a little more flavor.", "type": "review", "business_id": "Cvs4FOqtYH1R4Qhiq4PgpQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S103dsmqYSMlDR2SxVm5cQ", "review_id": "DLHl_b298gR_Dj_m0pj7xw", "stars": 2, "date": "2012-09-27", "text": "The thing about CPK I've noticed over the years, if you want adequate service, show up when it's not busy, because when it IS busy, plan on paying full price for drinks and meals that are completely and utterly lackluster. CPK, do me a solid, if you run out of garnish for your $7.50 sangria's, let me know. I really look forward to that soaked pineapple and cherry, thank you very much! And please, don't think of it as audacious for me to request a dollar off for your mistake. Bottom line, won't return, and won't recommend this to anyone I love or even just moderately like.", "type": "review", "business_id": "ut-kla-EA23nJOij_dcL0Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "X-EV080aSeC5V00YBwxR1Q", "review_id": "wuaTVdgCiq9SFKzi6gpclg", "stars": 3, "date": "2012-07-09", "text": "Some highlights\n- Loved the special of the day: red velvet pancakes breakfast with cream cheese topping. YUM YUM YUM\n- Corned beef hash is canned and not homemade :( sad face\n- Fried Chicken breakfast is a huge portion- tasted really well but definitely sad that they only have sausage gravy. Would love it if they could offer a non pork gravy for the non oink eaters. \n\nOverall, it was delicious, simple menu, great service (Thanks to Waitress Kelly she was really nice) and would much rather support local eateries than Ihop or Denny's anyday.", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "57a1sTcwVkNVsxGO_h_3Yw", "review_id": "95ns-bXUmMN7O1FfVHModQ", "stars": 4, "date": "2006-06-22", "text": "This Chili's isn't a lot different than the one on Mill. However, not being on Mill does have its advantages with not being full of college kids all the time. The service is pretty good and it's crowded all that often. You can have a quiet dinner here more than at the one on Mill. Pretty good Chili's here.", "type": "review", "business_id": "HTpBzBg3OLU-lQUqRIqoiw"} +{"votes": {"funny": 2, "useful": 1, "cool": 5}, "user_id": "8dbRf1UsWp2ktXHZ6Zv06w", "review_id": "TzFNfe5WaVX9Oobtp0TbBw", "stars": 5, "date": "2012-06-04", "text": "OOOOOWWWEEEE!! Have yall tried ATL Wings yet!!! If not what are you waiting for! They are the BOMB Diggity!\n\nI don't know why I haven't updated my review either, so here I go! \n\n\nThe honey habanero are still my #1 but I also love the Cajun Hot! Holy Crap!! Get some of the Cajun Hot wings and some ranch and their hot sauce on the side, dip your wing in the ranch and then the hot sauce and watch out!! The only time you really feel the burn is when you're no longer eating, gums & tongue just be blaze hot and mouth just be water for more, yes my friends that's the heat I love!!\n\n\nLuv me some wings from ATL!", "type": "review", "business_id": "a12JKFiqBVyaUfTWNaAzQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kyXK79FRxnFgNfZP3GUrGw", "review_id": "_lyM92EDcAUjmBp1U5kHJA", "stars": 5, "date": "2010-10-30", "text": "Wow this place is great. The whole atmosphere is unique. Bowling, bars, dj - it's an awesome idea. Only thing is on a Friday, it's super busy and takes along time to get a bowling lane.", "type": "review", "business_id": "_OYlq2UoKPQO_ElqhC3a8w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "yk3kUEPdNDuIcwdUF2yaNA", "review_id": "UGv0o5DTUKjzQr_mKxPpjA", "stars": 5, "date": "2011-11-12", "text": "Perfect hotel for my conference travel needs. Clean, new, great bars, close to other food options across the street, super friendly staff. Great business traveler property. The bed was SOOO comfortable. Sometimes, Starwood beds can be too soft, but this was just right. \n\nAccess to the convention center is so convenient. Just out the door and down a block and a half. Can't beat that in the heat!", "type": "review", "business_id": "FgyBmc-XS_ViFAf8Wy25yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TJzZTQ9Wex5hbHFXFgiM_Q", "review_id": "ZrYOTkDk0kAwtyNnrkhJjQ", "stars": 5, "date": "2012-07-06", "text": "Duane is amazing! Reliable, Responsive, Reasonably Priced, i simply can't reccomend him enough! I've used him four separate times now and have been more than happy with each visit. I won't call anyone else!", "type": "review", "business_id": "vDYERdCM8Aj-MMJB9yW3-w"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "l81ILmOhky5bG7o4r3rkhQ", "review_id": "HxUZeH6L-RB6nbBdy7-WYQ", "stars": 4, "date": "2008-09-08", "text": "I have a long history with this place, which is where I worked my first job at 16. \n\nIt's run by two Sicilian immigrants and there 2 sons. Originally the owners had a joint in NY, but moved to the valley and opened this place.\n\nThey run a military style kitchen where cleanliness is enforced to a maximum. Almost everything is personally overseen by one of the two owners.\n\nThey offer a regular Italian menu... \nthe regular pasta choices, nothing too fancy and no Alfredo entree.\nThey have some meat entrees with veal and chicken.\n\nThe pizza is NY style and really good and rich.\nThey offer a Garlic and Olive Oil pizza that is so good. I get it with pepperonchinis on it. \n\nThe crust on the Sicilian pizza is the best I've had. \n\nSometimes I just crave a small cheese pizza from this joint.\n\nThe Eggplant Parmesan is in the house here, but everything holds it's own.\n\nIt's priced ridiculously well, so much so, that the senior citizens roll out from Sun City all the time.\n\nThey have a few beers on tap, all domestic, and some decent wine, but nothing fancy at all.\n\nThe bottom line is that the food is good and cheap and the place is real.", "type": "review", "business_id": "38G8LPiqECn_P6LQfUnfZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ZlmRMwWaoyYBGqy3IoMRg", "review_id": "Kq2s_cnQbhNCRf3cK2Whmw", "stars": 4, "date": "2012-05-23", "text": "Good food and great service. Staff is very friendly and attentive without hovering. I would definitely go back", "type": "review", "business_id": "Sq8wUe-kWZLkoM9vphwXpA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "Lp_Ykqfbv5Q-oyGYlMGJRg", "review_id": "Y151z4JLAGIM_I3IVNRC4Q", "stars": 5, "date": "2009-08-03", "text": "This place seems to get better every time I visit. The first time was a Friday night out with the guys. We met up for dinner and I had (and loved) the pulled pork and sweet potato fries. After dinne we got our drink on with a live band. The waitress was helpful in getting us drunk off a variety of liquors. And the shots kept on coming! It was a blast. The second time was more laid back, just grabbing a beer with a girlfriend. It was a Tuesday and the place was pretty busy. The next time me and the girlfriend showed up completely wasted and they had an Irish band playing. It was a perfect way to end our night after clubbing at the gay bar! We had a baileys nightcap and everything went dark from there. Awesome night!", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "_m5wKppyZ3IJEDzlHEYN7Q", "stars": 4, "date": "2011-07-17", "text": "The burgers here are pretty average. Thin, flat, kind-of greasy patties with lettuce and tomato. But what sets this place apart is their other offerings. My husband got the tri-tip steak sandwich and he said that it was delicious. The meat was very tender and cooked perfectly. I loved the fact that they serve sweet potatoes fries. Those have become very popular lately but this is the only fast food place I know of that has them. The ones I tried were cooked perfectly and very lightly salted. The onion rings were also cooked just right with no soggy pieces. I thought that the batter to onion ratio was slighly scewed toward the former but my hubby thought they were perfect. Their regular fries are also very good. I tried the chocolate shake and it was really yummy too. I think its great that you can get a veggie burger here as well as a tuna steak sandwich. The extra toppings they offer such as sauteed mushrooms, avacado, and teriyaki and BBQ sauce are all a big plus as well.\n\nThe decor is simple since it is a fast food joint. The booths were big and comfy and the faux leather looked slightly more upscale than you would expect. We went on opening day so the service was phenominal. We didn't have to wait long for our order and everything was to our specifications. Servers came by serveral times to pick up trash and offer to refill our drinks. The restroom was very small but clean. I try not to eat fast food too often but I will consider coming back next time I am craving a burger. Or maybe I'll give one of their salads a try. They earned a repeat visit from me and an extra star since they donated 100% of their opening day profits to Phoenix Children's Hospital. A big thanks to Sarah S for posting that on Yelp events page so that we could contribute... and fill our bellies!", "type": "review", "business_id": "Cr2JNnewX53TYd9w6qw6Jw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ysZSP646Ikjb9pPKxuBurw", "review_id": "PidSprgbp6iFCpsRUxpgOg", "stars": 5, "date": "2011-04-03", "text": "Amazing place. I had the swordfish with pasta and fresh veggies. Delicious great service! Although the check was a little late the waiter brough amaretto on the rocks to apologize!", "type": "review", "business_id": "EfmR4e1tmjC5_ZQOgfnYrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lw_Lj1XjPjOYrDIkDEcDzg", "review_id": "1PB20yqX74DsxLp7kFUVJw", "stars": 5, "date": "2009-04-06", "text": "Last time I went it was lunchtime on a weekday. Our server was very quick and attentive. The sushi lunch deal was *amazing.* Piping hot miso, delicate seaweed salad, crisp cucumber salad, flavorful sauteed veggies, fresh orange slices and the main attraction - tuna, yellowtail and salmon all absolutely fresh and perfectly prepared. I left totally stuffed and happy. One caveat - they should turn down the music a little during lunch; happy hour should be one level of noise and lunch should be several octaves below that.", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rs_SGdqbZ6uYCJyYaaGbnA", "review_id": "78DPfcFjDI1E1AblkJDE8w", "stars": 5, "date": "2011-12-27", "text": "My house is clean using pet-friendly products. They arrive on time. I know that some of the reviews talk about having trouble reaching them by phone, but I have never had a problem reaching them by email (which I prefer). The ladies show up, work quickly and efficiently, and are on their way. I couldn't be happier.", "type": "review", "business_id": "MMMHmbfq3nxUQREU4hKOKg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vyFYFsQMkHkN3vw5jPuCZw", "review_id": "iu8NI-lkXHNNVahvaQnerg", "stars": 3, "date": "2009-02-05", "text": "Hidden House has some things you expect in a neighborhood bar: lots of pool tables, giant circular bar, tagged restroom, friendly locals (somehow curious or maybe protective), cheap cocktails and specials on pitchers of beer. Then there's a few things different about this place: an usual mix of suits and sweat pant, old and young, some talented pool players and a really smooth bartender. Located in the \"new\" downtown and within walking distance from my hotel. The walk there and back was actually as much fun as sitting in the lounge, some parts of downtown are stunning especially at night when the lights are on and nobody's \"home\".", "type": "review", "business_id": "9mQj65SmYj2pcehH339aEw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "9YlXXAy6YpADI7v42UwWCg", "review_id": "ATAc9orpgu7VGWp6LcAjHw", "stars": 2, "date": "2008-10-02", "text": "I am changing my review - lately because of bad economy, they are not getting enough customers, their food quality has gone down. I won't waste my time or money on this.", "type": "review", "business_id": "6bjKi4wtIJWD24bFtPV4Ow"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Mc25_FATV3pNrELPIL5GOw", "review_id": "Y7clMC7cgKDpH1tHY3mgLA", "stars": 5, "date": "2012-07-14", "text": "Thanks fellow yelpers for brining us to Four Peaks! My husband and I were stuck in Phoenix for the night and needed a place for dinner. Ironically we ended up at Four Peaks (a Vikings bar) on our way back home to Minnesota. \n\nMy husband loves beer (brews a ton of his own) and especially enjoyed the beer sampler. Trying 10 beers for around $9, yes please! I don't really love beer so I had a cider and it was exactly what I needed. For dinner I had the turkey burger with fries. The turkey burger was standard but the fries were awesome. I think it was the beer batter. My husband go the carne adovada and he raved. I think he may try to convince me to fly back to Phoenix just for that dish!\n\nThe atmosphere was also great. It was very laid back and fun to be able to sit amongst the beer being made. \n\nI highly recommend Four Peaks whether you are a Phoenix native or otherwise!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wAFApQOeUZ_tEGnxro9XdA", "review_id": "qrhd-RHgqCa3xIoGE6mvCw", "stars": 3, "date": "2012-05-17", "text": "It was consistently the best carne adobada, now consistency is the one thing they don't have. Beer selection, menu, wait staff and most importantly quality seem to change every time I'm in. Please figure it out soon...", "type": "review", "business_id": "2rMf09C5uXzF2qIlD5F5BA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6ZihDtzHna8KhFzCRE8rHA", "review_id": "f5GQHjsvNcog0NFnVBPU9w", "stars": 5, "date": "2010-09-17", "text": "Ever since I was diagnosed with a Gluten intolerance, Chipotle's yummy burrito bowl has been my constant companion. The barbacoa is seasoned well and works even better with a kick of the Chipote Tabassco sauce!", "type": "review", "business_id": "lciZhyp_xwKNBOVyzxqhbg"} +{"votes": {"funny": 4, "useful": 6, "cool": 3}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "fFthHw2J55FRdI45khguDw", "stars": 3, "date": "2011-07-23", "text": "I stayed here for a night over Memorial weekend and had a pretty decent time. It's difficult to give a star rating here because some things were awesome and some things sucked, so I ended up with middle of the road...\n\nAwesome\n1. My first server of the day, a cute brunette, was all smiles & friendly. She wasn't hovering but just seemed to appear when I was ready to order another drink. Her recommended mojito was very good.\n2. Location, Location, Location\n3. There was a really cool bellman who helped me with my bags when I arrived and again when I checked out. He retrieved an item I had left at the pool from lost & found and was just all-around nice to chat with.\n\nSUCK\n1. My 2nd server lost my ID. LOST MY ID on Memorial Weekend. Can you imagine the fun?\n2. I had a lovely view of a rooftop full of trash.\n3. The pool was gross. WTF is with selling tickets to lounge at your pool when you already have a full hotel of paying guests? Thanks for screwing me out of a lounge chair, good service, some measure of exclusivity by letting every d-bag with $20 squeeze in your tiny pool. \n\nFrankly, I think 3 stars is being pretty generous for this experience.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "KuPscbI0KPxudSMPZIcrCA", "review_id": "tK-Mqf42lE1cX72RHoJnDQ", "stars": 3, "date": "2012-01-23", "text": "Great food, bad service. Does anyone speak english in here?", "type": "review", "business_id": "0db71MbrvcJnyk71COCJBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LHumHJvQGETuVdAS3jnyeg", "review_id": "xVuA-212xLIwLCpASEo2Zg", "stars": 4, "date": "2011-02-16", "text": "Met Josh, the owner, last night and have to commend him on this sleek lounge. Great beer selection. Listed included a number of IPAs which gets high marks from me, including the revered DFH 90 minute. Atmosphere was sophisticated and dark. The decor had a polished charm to it, think swanky NY loft. Great service and good music for mingling with other folks looking for libations. I will be going back to this little gem.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 5, "useful": 2, "cool": 4}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "M_y5AXTHKfuOT68ZJpUWYg", "stars": 4, "date": "2008-09-30", "text": "Daahhling, I'll have a gin and tonic. If you don't feel fabulous here, then you don't have any imagination. \n\nI love the decor, it's fun to hang out here and have drinks at night. I've also had breakfast here before too, it was pretty good and certainly a different feel from the saucy evening there before, but it still had the same effect on me, that I was ab-fab. \n\nHanging out by the pool is fun too, smaller than I thought it would be though. (that's what she said)", "type": "review", "business_id": "tdeHd2AVYlEnz9F1UGb84Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "-Mq3rKCHzz288lpDfpBxUg", "stars": 3, "date": "2012-01-13", "text": "The lemon grass pork is 2 stars on a generous day. Disappointing, since they tout their Vietnamese selections as being specialties. The pork was tough and the noodles were more like lo mein than the vermicelli type rice noodles I was expecting. Portions are certainly generous enough... I like that you can make your own rice bowl. That's the direction I recommend if you come here.", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4TA4x0bgELIZ-MCj7PaEVQ", "review_id": "TpCT7nTM2QEcqWYvDQESgA", "stars": 3, "date": "2012-07-26", "text": "Coffee is pretty good, but, well, I wasn't thrilled with the ambiance, or the barista. The first time I went, they were having a shift change and forgot to make our drinks. The second, the Batista was kinda brusque. Also, I agree with H C's comments... I walked in and everyone stopped and stared...not great ambiance,but good coffee.", "type": "review", "business_id": "ABC57h7Dh1Vy9q3cztAm5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "a2yYBmJxshUSJyDOqio5cg", "review_id": "e4T32rxCb_ZHoXP2uxMkHw", "stars": 3, "date": "2010-06-30", "text": "Went here for happy hour with the missus after work today and it was good enough that I'd go back but not the best that I've had. We ordered the tuna sashimi, spicy tuna roll, soft shell crap roll and at the recommendation of the waiter, the fake and bake roll.\n\nsashimi - Good, not great. Could of been a bit colder.\nspicy tuna roll - better than the sashimi but not epic.\nsoft shell crab roll - this was actually my favourite tonite. It had the right amount of texture and flavour.\nfake and bake - they must of used some sort of torch to brown the top, probably powered by lighter fluid as all I could taste was the burnt part on top. Would of been fabulous if they didn't try to set the food on fire.\n\nClose to work, I'll be back again. Prices and the all day happy hour are both great.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ayKW9eWwGFcrtJaHcwZUCw", "review_id": "-7yxrdY13ay15rGB7WibMA", "stars": 5, "date": "2010-12-16", "text": "I have been going to Arizona Auto Care since about 2002 when I worked in the same complex. I have since worked all around the valley and moved out of state and back and I have always only taken my vehicles there for service! They are honest and professional and always take excellent care of my vehicles. Jeff is one of the owners and a Subaru master tech and has worked on countless Subaru's for me, friends and family! Jeff and team will give you honest and sound advice when fixing your car and not try to oversell you just to make up sales and quotas like the stealerships. Thanks again Jeff, Chris & guys at AZ Auto Care for years of great service and to many more!", "type": "review", "business_id": "Lh9nz0KYyzE-YRbKuCYeUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "47VCrr83Tvtkp1FvDa0ftQ", "review_id": "Didhu6CE5kZnmty4kRDTtQ", "stars": 5, "date": "2010-06-03", "text": "MARGARITA time....I love their ritas on the rocks!!! \n\nTheir shrimp tacos are my favorite in town. I love the salsa bar. The wait staff has always been nice. The prices of food and drink are great. This is a great place to go with friends to eat good mexican food & kick back a few drinks.\n The patio area is nice all year round.", "type": "review", "business_id": "ObYf1kZVWfL8NocxUwGJKg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "Gkd5aVkqiMLeg35tTZdD_Q", "stars": 3, "date": "2011-10-29", "text": "I will preface this by saying that I went here a couple years ago for lunch and thought it was very good, which gave it an extra star over my true opinion of my dinner there last night.\n\nThe BF and I went here before seeing Louis CK for our anniversary. We were seated right away, so that was nice, but it was like 5:45 so that isn't too shocking. We sat outside, which was nice and had pretty christmas lights on all of the trees. The waiter comes by after about 5 minutes and asks us for drinks or apps and we ordered the burrata as an app. The menu said it was topped with a balsamic glaze, which sounded wonderful. We were also ready to order our pizza but the waiter disappeared immediately after taking our app order. So we wait. and wait. and wait. And I swear it felt like it was a half hour, but it was probably more like 10-15 minutes later (we were super hungry) the waiter came back to take our pizza order. We ordered the La Noce and he left. Well.... we waited some more. Finally got our burrata and it was a mess. Two giant globs of cheese with the lightest drizzle of balsamic dressing (not vinegar, because there is no way this weak stuff was straight up vinegar) surrounded by bread and prosciutto. It was large, so I'll give them that.... but too large in my opinion, because there isn't enough bread for the toppings. The burrata was good, creamy.... but it didn't taste like balsamic at all, which was the most appealing part of the app. The prosciutto was alright... it didn't have a ton of flavor, but it was fine. The bread had a burnt flavor... not my fave. Then we wait about 20 minutes.... waiter did not check on us.... Finally get the pizza. The pizza was good. That was the redeeming item of the night. It had arugula, walnut, ricotta, and mozz. It was a tasty combination.\n\n Now, the whole time we were there, there was a table of about 6-8 extremely loud, drunk, possibly old sorority girls sitting near us. All we could hear is their conversation, so much so, that we knew one girl was named rochelle and one was Tina and one had been divorced for 4 years and they had a friend named Lori who was just sooo crazy among many other details that we should not have gathered from sitting in their proximity, which obviously puts a damper on the experience. The waiter was so occupied with them, that we felt forgotten about all night. He was not attentive, he did not ask how things were, and he disappeared for long periods of time to go do who knows what for this other table (they had a bunch of ridiculous requests like splitting the bill 6-8 ways when the menu says they don't do that... hmmm). We sat down at 5:45 and barely got out of there around 7 to make it to our show (we were walking). So the experience wasn't a good one, BUT I would be willing to try it again, as I did have a very nice lunch there a few years ago.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "YoBgKOdfpGH48LpIDSfoQQ", "review_id": "5HLUbZHJpWvz9DndacoWTw", "stars": 3, "date": "2009-01-10", "text": "Ok first off, with the demise of Soma and the fact that Green is in Tempe.....this place is a welcome sight, and I know I'll be back. The food is excellent. However I feel that Dr Weil has has has the wool pulled over his eyes by Mr. Fox. Come one \"Anazazi Beans\" and a drink called the \"Medicine Man\"? Really- as an American Indian rights advocate you'd think we'd be past this. Actually, you'd think educated white men with lots of money would be past this --but ya know. Just because Anazazi really refers to Ancestral Pueblo people who lived mainly in NM and N. AZ and means \"ancient enemy\" in Navajo so that term isn't used by nearly ANYONE anymore...means that you probaby shouldn't call your dish by that name. Other than that- I give em props for trying.\n\nI recently had another experience there where EVERYTHING was going wrong that night, and the staff recovered....kinda. My advice, shape up if ya wanna last.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gbskKkumPmsjW0jGPtUgfw", "review_id": "N2643ul6bM5vJ8anXng-rQ", "stars": 5, "date": "2011-08-14", "text": "Went back, they appeared to have remodeled and noise level was greatly reduced. Food, atmosphere, everything still wonderful. In my first review, I stated \"the only reason I'm giving it less than 5-stars is because of the noise level.\" As the noise level issue appears to have been rectified, my review is subsequently being modified to reflect this.\n\nLast time I was there I had a salmon salad, which was good though in all honesty the salmon was the star of the dish. I asked the server to please ask the chef how the salmon was cooked so such perfection. I honestly did not expect for any type of response. Lo and behold, a gentleman came out and explained the procedure utilized to get that sear and texture without overcooking or under-cooking the salmon.\n\nRe: Another reviewer's issue with \"soggy fried calamari\"\nIt is tempura calamari, which is different from other ways to fry the calamari. I have never had any issues with sogginess unless I leave it to sit for too long. Hmm... Clearly, they prefer Zinc Bistro. Honestly, I haven't been to Zinc Bistro so I cannot draw a comparison at this time between the two.\n\nI will definitely go back as soon as I can to The Greene House -- Oh, loved the recent press on the Chef's high praise, it *is* well deserved!", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "McMS1Xw6qouR8M4pygTNDg", "review_id": "1yKxcFZSM-wh3vyIy7GSNw", "stars": 5, "date": "2009-09-22", "text": "I can't believe no one has talked about Pasta Tuesday. Definitely the best time to go but make sure you get there early because the pasta literally runs out. It is that good. They have this guy (Guido) come every Tuesday and he starts making hand made pasta early in the morning. He picks 2 unique dishes. It was one of the best pasta I have EVER tasted. I crave it all the time. I had a fettucini noodle in a alfredo creme sauce with herbs and pine nuts on top. I can't even describe the taste (wow what a good food critic i am). You just have to go check it out. I am going TONIGHT!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "2SCViG5YGt-VKkX2jsVphw", "review_id": "x7QF3Olbf3UAkaMTNYyw2w", "stars": 3, "date": "2012-11-27", "text": "Closed? Really? It seems this place just randomly shut down, after much less than a year of being open. Only went there once - we enjoyed the food, the ambiance, and the beer. We recommended it to others as well. Showed up on a Tuesday night for dinner and everything was packed up....? A little searching on the web (Facebook, specifically) shows that they're done. What a shame.", "type": "review", "business_id": "MLAnvEcvDfOWELHUN_0xEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0tYlK-FieQXAdmTQ9DWTbA", "review_id": "gMLI7DXAcr-jTheFH7IfHg", "stars": 3, "date": "2012-01-06", "text": "For mall food this place is great. Love the pitas, rice, and yummy potatoes.", "type": "review", "business_id": "-92fePI5W6MwOaxMxphFjA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kSmSz26adbfasuzOx6Beyw", "review_id": "kO4k4WDbaU0YmUW0YceTXA", "stars": 5, "date": "2011-01-31", "text": "I've brought my dogs here and met with both Dr. Holmes and Dr. Edwards and they were both extremely knowledgeable and helpful. Over the last 15 years of living in Phoenix we brought all 6 dogs that we have had in that time to come see them and I wouldn't go anywhere else. This past summer I moved to Boston and regrettably haven't found a quality veterinary hospital like Pecan Grove. Ashamedly, even after talking to my current vet and be unsatisfied with their answers, we called Pecan Grove and Dr. Holmes was very helpful and was even able to reference cases and articles to us over the phone. While the answer we got from our Boston vet sounded more like they were guessing than actually knowing the answer.\n\nPecan Grove and everyone there is amazing and I wouldn't go anywhere else (had I not moved across the country)", "type": "review", "business_id": "zE0bU4QMftkKzhZL7pZmJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "--rlgfAvvi0BtfRDA1p-VQ", "review_id": "W8OgtYmRGkwh55Pb4xLFqA", "stars": 5, "date": "2011-10-10", "text": "One of the few legit brewpubs around.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 2, "useful": 7, "cool": 4}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "1ZUaYX9vi4UyGF0M6I7fVA", "stars": 4, "date": "2011-08-09", "text": "On a mission to find some University of Michigan apparel that fit my pregnant body, I started my search with a phone call to Sports Authority. I struck out there within minutes as I was told that they only carry AZ team apparel. Shucks!\n\nLuckily for me, Lindsey F overheard my conversation and suggested I call Bischoff's Shades of the West. She remembered seeing a ton of college apparel during her last visit to this touristy store with all kinds of inventory including Western wear, food products, jewelry, etc... I skeptically called and sure enough, Bischoff's carries UofM apparel as well as all kinds of sports paraphernalia including hats, t-shirts, shorts, keychains, and more from the NCAA, NFL, NBA, NHL, and more!\n\nI headed over that afternoon and found what I was looking for... and now I know where to go when on the hunt for all kinds of random items from AZ novelty gifts to college football attire. Thanks Bischoff's, and \"go blue!\"", "type": "review", "business_id": "FMIHdl8QE0-gkaHvnAkEhw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vlxXm83oGWun_aQT73c8mA", "review_id": "_mYI51Rm2ExYIrroaSVMpQ", "stars": 4, "date": "2012-08-20", "text": "Great service and delicious breakfasts!", "type": "review", "business_id": "a1aFceRgC03yy3ENdynDnA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rZ8TvWAHA-avF8fwjrEmGA", "review_id": "65fLXeyBK-0AEaoSXyLmIg", "stars": 1, "date": "2012-12-27", "text": "Wow... After eating sushi from across the nation i have to say Scottsdale's Geisha A Go Go has surprised me for an ultimate low. Andrew, the manager, reassured us that we had something wrong with our taste buds for not tasting how fresh the fish was here. Insulting to assume. Not recommended!!!!", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "K7N-DrWgKiYySwHfP3sf8A", "stars": 5, "date": "2009-06-24", "text": "Agree with the previous review. Something nice about this super target. Leaving a review to back up the other!!\n\nMy only gripe is I spend to much at Targer. Or my wife does anyway!!!", "type": "review", "business_id": "W34RE9avBNLfkmiiZwPKiA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "9vSczdKtFuifQNbw-vtsMQ", "stars": 5, "date": "2012-02-04", "text": "burger heaven! I had THE PIG Burger... it. was. delicious. and it was served on a pretzel roll. mmmmmm\n\nGood vibe feeling in Circle H, I like the pictures on the walls, the bar look, the entire environment was relaxed and easy going. I came the day of the official ribbon cutting, so I got to see that happen (i had no idea those giant gold scissors were real scissors by the way. i guess, that is a dumb though b/c what else would they be??) and it was nice to see everyone gathered for this moment.\n\nThe french fires were piping hot and delicious, they have all sorts of sides like slaw, beans, mac n cheese etc. \n\nI also had a bite of the brisket sandwich. It was so very very good, I am ordering that next time I go back. \n\nLocal beers on tap, good price too.\n\nGreat start for a new restaurant, there were of course the new hickups, but those kins get worked out with more time. Nothing to worry about. That's how you learn!!", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DT_5ucHfprLoh78wgzY7zw", "review_id": "vQgvRiWUmzYP44pYeqPKuQ", "stars": 4, "date": "2010-08-07", "text": "Hubby and I have lived less than 5 miles from this place for over 20 years and never stopped in. Looking for good Chinese so yelped the area and Dragon Palace popped up with good reviews. Comments about the outside are right - little corner spot in dated strip mall but who cares if the food is good....and it was! We ordered three lunches to try out different dishes. Both of us loved the egg rolls along with the sweet n sour chicken and the house chicken. Not as thrilled with the beef and brocolli - nothing special on that dish so will stick with the chicken next time....and there will be a next time! Don't be fooled by the outside - step in and try the food - you'll be back.", "type": "review", "business_id": "lAGDe38li38fyf971CslFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LmCkhilB78gPm8uIU5nCWQ", "review_id": "8EAh9Yey12cNl8nV3AxnhA", "stars": 5, "date": "2011-07-27", "text": "We only come here for the water and in that regard there are no complaints about this place.\n\nThere is no chlorine smell, faucets are all fast and the guys find your water card fast.", "type": "review", "business_id": "Uj59qeEbO1cls-M5EkvLxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qrYoXi7nj9PqXFFy9p_XPw", "review_id": "b70tym0Ow8OaPcExpcGo0Q", "stars": 4, "date": "2011-02-15", "text": "My wife and I love to visit Sushi places to celebrate our anniversaries and hallmark holidays.\n\nOriginally, we dined at Akai-Hana a couple years back, and didn't have that great of an experience. We felt the food, service, and price just didn't add up. We then started to visit the Ah-So place right up the street because of their happy hour specials. We decided to give the Akai-Hana grill another chance after a terrible dining experience one night at Ah-So.\n\nIt's the only place we've been to lately. We've discovered their happy hour and reverse happy hour menus and they are great. The service has greatly improved and they have 2 sushi chef's behind the bar finally. \n\nIf you haven't been there in a year because of a bad experience, give it a try again. The staff has improved as has the quality of food.", "type": "review", "business_id": "x0NOgX6P4x-82cC0kcO1hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "YpyP7Oq8LMyognfgiJFTiQ", "stars": 4, "date": "2007-06-14", "text": "Buffalo Exchange aims to be a cool thrift store with only stuff people would actually want to buy. Although they succeeded, the prices aren't really at all close to thrift store prices. They have some unique things but I wouldn't go in there expecting to get a great deal. If you are feeling thrifty stick to Savers or Goodwill, and treat Buffalo Exchange as a regular shopping experience.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "4g0BSDfFUUPuDpJcdeqmAw", "review_id": "xsPo8uNVK20myJvPrzuPLA", "stars": 5, "date": "2010-04-18", "text": "My picks:\nDerby Smash\nGreen Chili Risotto\nPan Seared Escolar\nSticky Buns\n\nIf you are looking for Arizona charm, this is the place. Every Arizona resident needs to experience this hidden gem.\n\nThanks Jacquie, Kristy & Tim for continuing to believe in this historic restaurant and landmark!", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "6DoJl-yhjpDzrCFpwdq_Aw", "review_id": "BRsKUq1qQLrj0pLvzl3jxw", "stars": 3, "date": "2012-05-18", "text": "The Good: \n-Virtually any sport you want to watch, they'll have it on one of their many TVs for you. \n-Strong drinks, made correctly. Their bartenders are great.\n-The staff is very friendly and usually quite attentive.\n-Patio seating is plentiful, along with a firepit for the winter and misters for the summer.\n-Bouncers at the door know their stuff and will take out a crazy drunk before you even have to ask.\n\nThe Bad: \n-The food really isn't very good. Most of it is run-of-the-mill bar food that came out of a package and tastes like crayons (bland and boring). Their garlic fries and cheese sticks are delicious though.\n-It can get very crowded on big game nights, and as such service can get very slow or the servers may even not be told you've been seated (the hostesses aren't great).\n-Sometimes at night they play the music ridiculously loud - it's a bar, not a dance club. No one goes there to sit and not hear their company.\n\nGo There For: A sports game with your friends to drink.\nDon't Go There For: A hearty meal with grandma after church on Sunday.", "type": "review", "business_id": "5tey93wPQOb7z6jOLJZ30w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uVjawOYO0GajgEMYlAvq8Q", "review_id": "2OWrJo12SomPvra4SKfV_A", "stars": 4, "date": "2012-01-08", "text": "The margarita pizza is awesome. They use a delicious red sauce that I would be happy to eat on noodles- much different than a lot of pizza places that just use a tasteless red goo. Good crust too! The organic root beer is pretty gross though.", "type": "review", "business_id": "Zruvunhqw7cuyuoe7g09Gw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "ffetR-BMd0ehpf7aKYO5gw", "review_id": "BrSCykqUpcCGhUGq0jVlwA", "stars": 4, "date": "2011-12-05", "text": "I was put up here after not making a flight (the woman I talked to at the gate blamed Orbitz for not scheduling enough time to make a connection). True. But then a really nice man hooked me up with a voucher for this hotel accomodation!\n\nI didn't realize that ALL the Embassy suites do the Manager's happy hour in the evenings; this one was 5:30 - 7:30...But let me back it up a bit. My whole experience here was wonderful.\n\nA nice man, Terry, drove the shuttle from the airport and was very helpful giving me some \"things to do ideas\" around the area - movie theatre, shopping mall...etc. When we pulled up to the front he even pointed out a restaurant next door, 7-11 and CVS. I was super tired from my flight so it was nice that he took the time to point things out since I was not paying attention.\n\nI went inside and checked in- very fast and smooth. The FD clerk even offered me a beverage- hot coffee/tea/cocoa. She even told me how to access the internet free of charge. I found my room quite quick and going inside was so refreshing!\n\nI had an immense amount of space for just me, as these acommodations are suites. The little kitchenette was stocked with tea and coffee and ice machine was just around the corner, not too far of a walk. It was extremely chilly in the room so after I found the thermostat, I turned it to be warmer- I ended up turning it off I was so cold. I did a quick flip through of TV channels but didn't find anything I wanted to watch. And then I tried to connect to internet- fast and easy. I called to see about getting a bathrobe and some toothpaste and it was brought up in less than 10 minutes!\n\nI thought about going sightseeing and ended up taking a nap. I didn't realize how tired I was! The bed was great! Comfy and warm! I didn't want to get up! But I ended up getting up so I could go to CVS across the street for a few needed items.\n\nNext morning when I left, there was nothing I needed to do to check out and the shuttle service back to the airport was very prompt. \n\nI wouldn't mind staying here again should I be stopping through town or stuck overnight on an unforseen layover!\n\n\n#Yelp 365 Challenge - 124/365", "type": "review", "business_id": "-nWigG5EhFLjdSgGZthS3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RJX1E5_xwd5x15TYFOYv1g", "review_id": "ScnMz8HfacbcMtZ7lFbo-Q", "stars": 4, "date": "2010-03-17", "text": "My husband & I have been going to one Zipp's or another around town for the last 7 years...we currently live near the Old Town location...always our 'go to' place to eat during the week when we don't feel like fixing dinner at home. It's your typical sports bar with a bit better food selection. You can't find a big 32oz beer for $4 ($3.50 @ happy hour) anywhere around town & their onion rings are outstanding, you can order 1/2 & 1/2 ...fries & onion rings with your burger or sandwich. We have never had an issue with the wait staff at any of the 3 different locations we have visited. The new boneless buffalo chicken skewers are fabulous & on special when regular wings are. \nHappy Hour M-F 3-7pm\n$5 Wings & other stuff \nPlus nightly specials 8pm-close &\nWeekend specials 11a-4p\nWe love Zipp's!!", "type": "review", "business_id": "hGQsnkndreW7b26XC2HVRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "SxUdGXJbxMGR07nD_YIQcA", "review_id": "32ermwbl-qvbMWcdUkcRAA", "stars": 3, "date": "2012-04-06", "text": "Buffet is great, Good Selection of food even for me the picky Vegetarian. Naan tastes great, choice of plain or Garlic Naan. Food generally tastes good. Rating on Buffet alone, I would have given 4 stars.\n\nHowever I might not return there for Dinner or Take-out.\n\nDinner Entries are priced well above $10, and generally use frozen vegetables (Crinkle cut carrots anyone, god I hate those) \n\nThe last time I ordered take out, the quantity of my dishes was about half of what I got the previous time. (Fine, Can I pay you a little less than the bill?) and the food tasted sub-par and my naan was burnt. For this they get only 1 star.\n\nGood place for the lunch buffet.", "type": "review", "business_id": "xEg0-xrQywU5K-WQO7cy0w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k1ACFw3wmqkNGoiGeNLc0w", "review_id": "r8-11K8NPQ3_0BFK1KiAMQ", "stars": 3, "date": "2009-03-05", "text": "3.5 if I could, but just a 3 for now.\n\nI really like the location and I hope more businesses open up downtown. Their fish and chips are really really good. A good portion too, enough to finish without getting painfully stuffed. The beer list is decent as well, but pretty pricey for what they offer. $5.50 for a pint of guiness? I can get a six-pack for that. Hopefully they start a good happy hour price - if so - I'll be back often.\n\nI went during the grand opening and the live music was pretty good. They ran out of guinness at about 8pm, but got another keg within the hour so it was all good. The beer however is extremely slow. The waitress warned us that we'll get our food before our first beer, and she was right. My friends and I all ordered irish carbombs and the waitress had no idea what we were talking about... whaaa? So I explained what they were and she returned 15min later. 1/2 glass of guiness in water glasses, not the pint glasses. Was probably 1/4 pint of beer and the shots were in tall shot glasses. So tall, that if dropped in, wouldn't pass the beer level. So we had to pour them in. meh...\n\nSo all in all 3 stars for now. I'll give them another shot though.", "type": "review", "business_id": "FeI75xIG8PF_XZ6P80gLBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zqwR5M2gZGKUeRwIx_axpA", "review_id": "4mcta1E1LWpvTgbOKN89Og", "stars": 5, "date": "2011-11-06", "text": "We went today after lunch. I got my usual of lime basil and real mint chip (which I love for the real mint leaves) and my hubby got chocolate guiness and four peaks hop knot. Best ice cream in Phoenix! The staff is always super nice. They give us ice bags to take our ice cream home :-) Love this place", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T7QG8ge2ukcfvEosSkg8yA", "review_id": "lQLprkBt4W4XbgCHGe3HqQ", "stars": 5, "date": "2011-01-17", "text": "Awesome!!!", "type": "review", "business_id": "Zw4CvOwXJj1QA85SvB99Hw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aehtRFZ3zhj0M3meJoG8vQ", "review_id": "myFWn2GNkwqwe_BY9mUXyw", "stars": 5, "date": "2011-06-27", "text": "Last week, I had my first appointment at Pure Dental. Dr. Kang and the office staff were all really nice and helpful. Dr. Kang even did my cleaning and it was very thorough. I've never had the actual dentist give me my cleaning. I was wowed by their modern equipment to view x-rays and the doctor even took pictures of my teeth to show me. I will be going back to get some filings next week and was told I could watch a movie while I was getting them done.", "type": "review", "business_id": "NcNcgrtEjwLJh_a2WgdT8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V8W4ixzX0GCTQEK-xJbA2w", "review_id": "cA8uw6bA-hXuaKGDNy-EOw", "stars": 4, "date": "2012-08-24", "text": "Great food at reasonable prices in a good atmosphere. \n\nOur family has been regulars for over seven years at the W. Iron location. The food is fantastic, you can't beat it for breakfast and the lunch sandwiches are great. We've noticed a big difference in the staff since managment changed. Many of the new servers are not as attentive as they should be but the long time servers never disappoint. \n\nIf you go on the weekend prepare to wait, sometimes up to an hour. On Sunday if you arrive before 9:30 the wait isn't that long.", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "P0oMcxect43NE7QPw_AyKA", "review_id": "x3h3JziyT5SLgYalApzqRA", "stars": 4, "date": "2012-02-18", "text": "I am a huge fan of local coffee shops with free wifi. I am also a huge fan of iced lattes. I know, how trendy of me, don't judge, I have some weird phobia about drinking hot lattes...I can't explain it...getting off track...anyway! Cartel!\n\nI really like getting my work done here. This is a short walk away from J's place so whenever I'm in town and need to get work done, I head here.\nI like the decor, I like the music they play (I don't even need to tune out with my headphones and spotify like I normally do when at coffee shops), and the coffee is pretty good. The ambience is chill and very oddly conducive to me getting things done. The staff here is really nice and friendly too.\n\nNote: They also always have tempting pastries that one day I am sure I will break down and try. I'm nearly positive they'll be delicious.\n\nLike the 4 stars say...\n\nYay! I'm a fan!", "type": "review", "business_id": "Hgbxen9iKGL4AH6kKgC8YQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hGyKkRaJkOpl6jagEZAWcg", "review_id": "DhfKl8Hl9t_YisbOC7KAjA", "stars": 4, "date": "2011-07-11", "text": "After eating here I was actually pissed off that I didn't know about it before. The portions of sashimi are amazingly large. That doesn't mean crap if the quality is not there, but fortunately for Sakana, it's there. They even have house specials (like salmon smoked on the premises). AWESOME! My only complaint is the lack of fresh wasabi (they have pickled or the powdered stuff). \n\nFor the area, this should be 5 stars. I just can't compare it to Kiji in SF or Blue Ribbon in NYC, which are my 5 star benchmarks.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "i9v8_SyYMIkX5JwyTgI5Ww", "stars": 4, "date": "2009-04-15", "text": "charlestons is one of the few chains i actually enjoy. I love their croissants and their staff is always awesome. their chicken strips are awesome. i love their grilled chicken and veggies, too. \n\nThey have an awesome blackened grilled chicken, they don't use oil to cook either which is a plus! they no longer have it on the menu but have never given me a problem ordering it!\n\nyay for charlestons!", "type": "review", "business_id": "VZG8spL8Tqffg9KYbBrDvg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "YLE6GoJ61fb0QBF7JTkaJg", "review_id": "Jp8u3QJzqvc7-DBSmbOhOg", "stars": 3, "date": "2011-01-05", "text": "Rinaldi's Italian Deli is a very good place for lunch if your in this area and looking for something a little lighter than a burger and fries. They are conveniently located near the corner on Deer Valley and 19th ave, next to Dunkin Donuts. They are open for breakfast, lunch and an early dinner. \n\nI recommend going during breakfast or lunch if your interested in their \"Specials of the Day\" that are on their hot plates. These items don't look too appetizing if you go by in the late afternoon or evening. \n\nThey offer homemade soups and fresh cut salads loaded with just about anything you could imagine. They have a small selection of homemade pasta salads as well. \n\nI had their pastrami on rye with their spicey, nazzle opening, and horse radishy dressing. The pastrami was very good but had to be heated in a micro-wave. My sandwich was assembled very well so props to the girl behind the counter! Their Italian pasta salad was excellent. Their Cob salad was also very good, nothing fancy but a good balance of veggies, bacon, egg, tomato, blue cheese, avocado with grilled chicken.\n\nNot one of the better deli's in Phoenix but loads better than any chain deli! It's a nice alternative to burgers and fries.", "type": "review", "business_id": "i0W4TZcoRbOYeRfDfQEX8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iy-lnju3UY_eap5oztdkhg", "review_id": "NEbTwDe739m-92O6DuYdXA", "stars": 3, "date": "2012-08-10", "text": "I know everyone has raved about this place. So naturally, I was was super excited to try it. I don't know if it was just so hyped up or what, but it just seemed like a normal pizza to me... with a really long wait.\n\nI was meeting some girlfriends there for lunch, we got there a few minutes early and asked to be seated, but they won't seat you until the whole party is there, unfortunately (although understandable!). So we stood outside, in the 108 degree heat until everyone got there. After waiting over an hour, they finally were able to seat us. We had three kiddos with us, and they told us they only had two high chairs. (Not a huge issue, but definitely not convenient either.)\n\nI thought their menu was extremely limited, only have 6 pizzas: 3 with red sauce and 3 with white sauce and then just a few toppings you could add.\n\nWhile the food was alright, I didn't find it over-the-top or spectacular as I had expected. Needless to say, I'd have no problem going back but I probably wouldn't seek it out.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 7, "useful": 16, "cool": 11}, "user_id": "xs_fnNe0hofd7ZOupCjesQ", "review_id": "5HC-1puFa5K17sexADkjAQ", "stars": 5, "date": "2009-04-07", "text": "This is my first review on Yelp so here you go...\n\nI love Yasu!! This is by far the best sushi and authentic japanese restaurant in Phoenix. I have been there numerous times and it never disappoints. \n\nYou have to try their Sumibiyaki which are items cooked over Japanese charcoal, last time I was there I had the beef tongue..sounds weird but its so good\n\nNigiri/sashimi are a must. They always have the best selection and daily special, most important...its always fresh...this is definately important!! The sweet shrimp is my personal favorite and anything else you order, you will find the fish is sliced with great execution. \n\nRequest fresh chopped wasabi, you will never eat sushi with out it again! \n\nLove this place!!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "qis3040X__uozHkiy8eT7g", "review_id": "VobMHl_MnP1TkHOfc-qLqg", "stars": 2, "date": "2012-03-04", "text": "Yet another disappointing sushi restaurant in the desert. My date and I went here for their late happy hour on a Friday night. I noticed it was hard for larger parties to get a table. There isn't much space between tables. I played it safe and ordered a plate of salmon nigiri. I noticed there wasn't a large selection of raw fish. We ordered the peach soju and the spicy tuna tempura off the happy hour menu. I thought I would be getting a peach soju that's of a thicker substance, but it ended up being soju mixed with some peach sweetener that killed the alcohol. Maybe it was my mistake of ordering soju at a sushi joint. The spicy tuna tempura was a spicy tempura roll deep fried in tempura batter and then sauces drizzled all over each piece that was cut. I couldn't taste any kind of kick from the roll. STAY AWAY from the happy hour rolls. \n\nWhat i think might be helpful is describing what's in each roll, rather than listing all the rolls on a sheet of paper for you to choose and its quantity. I'm so used to going to sushi restaurants that give you free miso soup, salad, and gyoza. These tend to be the cheapest items on the menu to prepare. Giving these out might keep customers coming back. \n\nI won't be back.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CdgjX-SsYJZq7u162hCM1w", "review_id": "h7nbCkVnY4JfenUqzWjLhA", "stars": 2, "date": "2010-10-20", "text": "Try as I might I cannot give this place a thumbs-up. I've likely been in D&E 30 times over the last 10 years, always wanting to 'give them another chance'. They are close-by and the food is above average. But the service ALWAYS sucks. I seriously wonder if the servers are TRAINED to ignore customers. I'm not referring to when it is BUSY, I'm talking weeknights with a very light crowd. They all must be independently wealthy, is the only thing I can guess.", "type": "review", "business_id": "BJfjd8oEMW_zq8KTkixyig"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k-VWeodvIzQsWCqa-3Ymog", "review_id": "0jCDe4gCIhn8HblKELXF3g", "stars": 5, "date": "2011-03-29", "text": "Went here earlier this spring and WOW - What a way to watch spring training \nI LOVE the Giants stadium, and this is much better. It has twice as much lawn seating, the seats are wide and comfortable AND - aimed towards home plate, which didn't used to seem like a big deal but sitting in Scottsdale down the line, IT IS. \nThe food there is top notch, with an amazing pizza slice \nPlus, the ability to walk around to diff fields and watch other players work out is amazing - it sucks that the Giants keep fields separate, I think every team should do such a joint complex.", "type": "review", "business_id": "PO2JBrCFcxd5ne-7ewDwdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "AxSFGP5k725Vn9Kz6BFFhA", "stars": 4, "date": "2009-08-05", "text": "What's better than some refreshing, authentic Italian ice on a 115 degree day? Not much. Good variety of flavors, friendly owners, and a nice space. Enough said.", "type": "review", "business_id": "ZNXfCzzi-jkfTyb4WewOYA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "iPBdvOGcVmuSuiCEKrQoPQ", "review_id": "pVE8tXPTsOLwe0-WL9yCGA", "stars": 5, "date": "2011-03-11", "text": "They have the friendliest staff at this Whole Foods. They know me by name and always have samples ready for the little boy I nanny before we even walk up to the Deli counter. Maureen the checker, Kathy in vitamins, and Daniel & Paula in the Deli are all exceptional- go see them if you need anything they will be happy to help.", "type": "review", "business_id": "wepFVY82q_tuDzG6lQjHWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IBgAJmUpRFt7oxz0A7l80A", "review_id": "xgp_wJy777RhwFGnsjWUDg", "stars": 5, "date": "2011-08-10", "text": "I absolutely love the food here! the service is good, the food is excellent and as far as the price goes..I can't complain. this is one of favorite places to eat.", "type": "review", "business_id": "yMUVflS-2SnOGafXmdHy6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WJYJ4GHhDsnke86uOwRAvA", "review_id": "6Azoyp1EK3E8Mg6OSIGrgQ", "stars": 5, "date": "2011-11-07", "text": "My husband and I drove from LA to Scottsdale and almost to Scottsdale, one of our tires was going flat. We went to Discount Tire on Shea and they checked it and found it was a cracked wheel (the tires are new). They helped us get a new tire shipped from the east coast and put it on first thing the next morning. They were nice, helpful, honest and affordable. Absolutely great service! I highly recommend them.", "type": "review", "business_id": "wifoRjVr__Fj56jfe1_RSw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "TEGWADXt1VA1832jbVtSqA", "review_id": "EVJdHRuh8AVrRY0F_yoDSw", "stars": 2, "date": "2012-01-28", "text": "We have mostly had good experiences here but last night was so awful so here's my review. \n\nTwo $7 margaritas and I walked out completely sober. (Tried two different ones even!)\n\nThe waitress, Amber, tried to explain to me some frat bullshit she was told about having a drink that was cold, sweet, and sour and how you therefore don't taste the alcohol. I am usually toast after a half of one of the Top Shelf margaritas...and no joke, I could have passed any field sobriety test.\n\nShe was an awful waitress to begin with - although not intentionally - she just seemed to be way over her head and have some sort of short term memory problem.\n\nShe did however do what she could to make sure we left barely happy - but still charging me for $7 margaritas that I disliked was crap.\n\nWe are done with that place and that will be absolutely the last time we go back.", "type": "review", "business_id": "NA3tQYxR6Fq5O8nV6u41Tw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "VBKbZD9X4zruXYORIhJhhg", "review_id": "-JfdM95n9YbOj0kW0PP5ig", "stars": 3, "date": "2009-04-27", "text": "We decided to meet friends here Saturday night. Cant vouch for the drinks because I wasn't feeling well that day and decided that drinking wouldnt help things. My wife got pretty happy with some Red Bull and vodka's, yuck, but whatever floats your boat.\n\nWendy... well lets just say she's not going to be drinking Long Island Iced Teas for a while! But I'm thinking they were pretty good, cuz 4 drinks pretty much says \"i like these\" or \"i cant taste anything anymore\".\n\nMusic was good, dancing was hilarious and fun - as is always the case with K and C. I would go back, I enjoyed the atmosphere... Um... minus a few wanna be porn stars LOL.... but hey, like I said, whatever floats your boat! Good for a laugh at least!", "type": "review", "business_id": "M0Pch3_-Gvj45RN1U4I35Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X9wCpesGid6SD3nLF8O-8w", "review_id": "zmHdyOBXX_vLjSIoko5XSQ", "stars": 4, "date": "2011-12-14", "text": "Wife loved the ribs, BBQ chicken was ok. Service was awesome! We were served by trainee Dawn being trained by Samantha. They were very fun!", "type": "review", "business_id": "xDC-INBKuwl8PowsJ-02Qg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YuuzQtcqBpuOzi8ZJqfzTg", "review_id": "n05Zn_7DQa_SCn54sGF8-g", "stars": 3, "date": "2011-08-20", "text": "I moved to Phx about 6 months and since the beginning I have been hearing about Pizzeria Bianco. I also heard how freakin long you need to wait to get in. I tried it once at night and after an hour and 15 minutes I gave up. I couldn't help but wonder\n\n1. why don't they serve food outside?\n2. why don't they make the restaurant bigger?\n3. does the owner want to keep it small despite the negative experience for MANY people who have to wait for forever or just don't go because they don't want the hassle?\n\nWell, they they started serving lunch. Usually it's too far for me to run to during the work week but I happened to have a random day off and luckily I put this on my list.\n\nI was so happy to show up and see plenty of seats for me to choose from at the bar. Hallelujah, let's see what the fuss is all about. I had a tasty coke from a bottle (I'm rarely a caffeine drinker) and ordered the Margherita after debating whether to go red or white. 5 minutes after I ordered the friendly waitress told another customer at the bar that you could split the pizza and do half and half for yourself. Wish I woulda known!\n\nIt took awhile to get my pizza but it was damn tasty. Maybe a 20-30 min wait tasty, but not a 4 hour wait tasty. Still good, still glad I went, still want to go again, definitely not at night, but lunch is my saving grace.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "vHoKL-4FCgGSfDrPr43Opw", "review_id": "PRuShP2G6mbAraXf0fxSwA", "stars": 4, "date": "2012-06-03", "text": "Indulge Burgers got a few things right and a few things wrong, but overall, I was very pleased with my experience. We had a Living Social deal, and got the sweet potato and regular fries combo, as well as a side salad to start. The fries were good, but nothing special. The salad made me want to cry. I know you don't go to a burger joint to get a salad, but couldn't you at least try to make it a decent salad? It was all white lettuce and a few sprigs of sliced carrots. My husband wanted me to give the place 3 stars for the lettuce alone. But, the burgers themselves were good, and the Build-Your-Own was a really good deal. There is good variety on the toppings, cheese, sauces and buns to choose from. My turkey patty was huge - it was overflowing out of the English muffin. \n\nSome plusses: the service was really, really excellent. One of the best servers I've ever had. Also, while we were waiting for our table, the owner/manager came around and offered everyone samples of margarita. Since I'm pregnant and couldn't try the sample, he said I got a free milkshake. After we were seated and he was walking around, he made sure our server knew that he had offered a free milkshake and made good on the promise! That was so cool. I left totally stuffed and very satisfied.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7-32G6o785YHrI9VtRBliQ", "review_id": "sjQJ2jRjH5vVWprJq7N4XQ", "stars": 5, "date": "2012-07-27", "text": "This is by far the best and most authentic Mexican food I've had in this area of town. I try and get different dishes each time I visit and have yet to be disappointed. \n\nIf you're looking for an amazing location/view/atmosphere, this probably isn't the place for you. If you're looking for amazing food, then you've come to the right place. \n\nThe prices are great for what you get. The quesadillas are served on a pizza tray so bring your appetite!", "type": "review", "business_id": "scr5gHaPC_36GtaCxmJEHA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nSLrExcVVphiNzvSf5H7vA", "review_id": "ny6Jlfysm6VTYgqmm6l3PA", "stars": 5, "date": "2011-12-07", "text": "Fantastic venue! Province really adds a touch of class and elegance in a way that isn't pushy or over the top. Located in the Westin Hotel, the restaurant feels very modern! You can choose to sit inside in a beautifully decorated and spacious dining area or enjoy their fabulous patio with fireplaces and a great water feature. \n\nThe food was unbelievable! I sampled their tuna and watermelon appetizer and fell in love - what an amazing combination that I'd never have thought of.\n\nIf the food isn't enough, the service is superb. Every interaction with the staff was excellent - you can tell they enjoy their restaurant and are happy to be there. \n\nI cannot wait to come back to Province as soon as possible.", "type": "review", "business_id": "4r9-iKOagzn5oUvPE9Bz4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2JkQ9vGL1tZjVHRZGMuAGg", "review_id": "SxHl3pYOxO_N61AFj8Oh-Q", "stars": 3, "date": "2010-12-16", "text": "I was up for a cold sugary drink before getting onto my flight so I walked over to the Wendy's next to this place. The guy at this place looked bored so I walked over to his counter to buy the drink. He was quite friendly and very prompt to charge me for the drink, which was quite a bit cheaper than the same drink at Wendy's. He also said I could either use the Coke machine or the iced tea dispensers. He had two kinds of iced tea, regular and a green blackberry. I took a little bit of the green blackberry which was very refreshing and tasted pretty good. I then went over to the Coke machine to get that. The sign on the Coke machine basically said once you buy a cup, you can refill it again and again the same day of purchase. I'll remember this if I ever have a layover in Phoenix. The prices at the Starbucks in this airport would drain my wallet fast if I had to be in the airport for any amount of time.", "type": "review", "business_id": "JzoFgoeHRShw6BcMZVBA4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "49W0lI7hQgYihoIApZLhZA", "review_id": "OJ54xoZSHg6ZRHWYxH5nMw", "stars": 5, "date": "2011-01-24", "text": "I took a road trip with the fellas to watch the LA Kings beat the Phoenix Coyotes @ the Jobing.com Arena and I must say our experience at this hotel far exceeded expectations!\n\nNot only was the hotel suite very affordable when split between 4 guys (3 queen beds and 1 roll away all in 1 suite at no extra charge!), but the room was very nice, included a small refrigerator and microwave and was very comfortable! Very new and modern and all we had to do was walk across the street to the whole Westgate Center/bars/restaurants/arena which was a HUGE plus! At the end of a drunken debauchery filled night we stumbled back (a 5 minute walk) to our hotel safely! \n\nWe were going to stay a few miles away to save money but read some reviews about the hotels having \"bed bugs\" and being dirty. You won't have that problem staying here! The room was immaculate and the staff were beyond friendly and accommodating! That was probably the best part: Friendly staff! The staff literally gave off a small town feel, the only time I've ever been treated better was at a bed and breakfast! And the morning breakfast was another thing that made this hotel worth it. After drinking all night and being hung over, all we needed to do was stumble down to the lobby to get some eggs, sausage, ham, toast, bagels, waffles, apple and orange juice and we were re-fueled up for some more debauchery! They had something for everyone, including a variety of cereals and whatever you can think of for breakfast free of charge! \n\nSo if you're planning on staying anywhere near the Westgate center/Phoenix stadium/Jobing.com arena this is the place to stay! We will definitely be staying here again the next time I'm out in AZ for a game!", "type": "review", "business_id": "y_GScq9tMmspo0UA4RPjPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_y4Pa5ZFpz4ycpqevBr-gw", "review_id": "d4xvZqNV6UpeXx8IwQkIhQ", "stars": 5, "date": "2010-05-10", "text": "Finally, a great place to get breakfast that isn't Denny's or iHop in Gilbert. Came here with my family and we just made it before the change in menus. \n\nThe griddle bread pudding was AMAZING! Probably the highlight of the meal. We also ordered the veggie sandwich, All-American breakfast (?), a slice of red velvet cake. \n\nWe have definitely found our go-to Breakfast joint when my sister and I, both come back to Gilbert to visit the 'Rents.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 1, "useful": 7, "cool": 3}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "689S24YwupSbJztkgNbE6w", "stars": 2, "date": "2010-07-23", "text": "5/19/10\n\n2.5 stars.\n\nDidn't really care for the interior, and the tables outside weren't beckoning, either. It was very antiseptic and cold indoors, with only the menu handwritten on the chalkboard, the plain-looking pastry display case (devoid of any ornamentation or even a sign of any effort in making everything inside presentable), and, what looked to me, an antique-looking espresso machine on the counter to lend decoration to the all-white interior. It was also very noisy indoors, despite the fact that there were only a handful of people! \n\nOrdered the Mascarpone and fig jam on marble rye ($4) and the Lox w/ cream cheese and tomato ($8 or $9), as well as a latte, no sugar. The coffee came in a paper cup... why? Made me feel like she wanted me to leave. Loved the mascarpone and fig! (So much so, I soon acquired a jar of organic fig jam from Whole Foods, but I need to find good marble rye toast...) The lox, however, was disappointing. While I found the flavors palatable, I thought the lox strips were too thin (I had lox at True Foods Kitchen that were wild-caught and larger for only a couple of dollars more), and the cream cheese rectangles looked strange with its right angles (after seeing such a lovely presentation done w/ the Mascarpone and fig jam). Made me wish I'd had two sets of the toast!\n\nIt was nice to see that they still roasted the coffee beans on-site. I wish nothing but success to Toast, but I won't be going back-- at least not for a good long while...", "type": "review", "business_id": "kiB6ByG9PYQLHmGpg5SGZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K9dSPbFhxbLPNZBTp7uOMg", "review_id": "-2NDrcy9WM6KR05oN0xtzw", "stars": 4, "date": "2012-08-31", "text": "Pleasantly surprised about the cleaniness of the location, the friendliness of the baristas and just the overall atmosphere. Reminds me of a small town cafe with the general coffee condiments centered for easy access. Drinks were made to order and have never failed to keep satisfied! \n\nJust need to get a drive through and all will be perfecto!", "type": "review", "business_id": "BdSY-BHmH0BCCv47mOOS0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dc7qjNrtDoCBxZEPXmEuVA", "review_id": "pV4NjhOq2Z7HQt0rZ8aKBw", "stars": 4, "date": "2011-08-01", "text": "Location is key to this place. Sitting on the street side patio offers great people watching opportunities. An extensive menu provides lots of options for breakfast. The food was good, bacon had some spice! Potatoes were slightly undercooked, but the flavored coating masked it. \n\nThe granola was a honey crunch granola which was enjoyable.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fSRMo1gMhj89V_Av3KcCLQ", "review_id": "haaVtb7DSBXxjnagja8x-A", "stars": 5, "date": "2010-07-01", "text": "This place has negra modelo on tap. I would almost give them 4 stars alone for that. The food here is incredible, very reasonably priced, and is mostly locally grown and raised. Add in there musical taste, a mixture of latin and indie rock, and you have a place about to explode from too much hipster cred. I mean that in a good way. We live in the east valley, so this is a haul for us, but this is THE place we take our out of town guests. Everyone loves it.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "vc1jIREOCAcWYiQgUGhoGg", "stars": 5, "date": "2008-10-23", "text": "I took advantage of That's A Wrap for their catering services yesterday and once again, was totally impressed! I called around 10am for a 5pm delivery... I wanted to make sure that those of us who were working at the Phoenix Art Museum all day preparing for the pARTy had some fuel to get us through the evening. Sure enough, That's A Wrap delivered - literally and figuratively. \n\nI ordered a platter of assorted sandwiches, fruit, chips, cookies, and bottled water - it was perfect! Everything was delicious! It arrived right on time and it was all labeled so it was easy to figure out what you were eating. I had the \"Godfather\" wrap (Salami, ham, and provolone wrapped in a honey wheat tortilla with lettuce, tomato, red onion, sun- \ndried tomato mayo and a drizzle of olive oil). I don't usually choose salami and ham but for whatever reason, this is the one that sounded best to me yesterday - and it was!\n\nThanks That's A Wrap for fueling me and all of the yelper helpers for the pARTy... I'll be back to visit soon!", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "47VCrr83Tvtkp1FvDa0ftQ", "review_id": "AS_FxW-l6f_UW2IDHqnBkQ", "stars": 2, "date": "2010-09-30", "text": "I have driven past this place a million times and never stopped, so today I did.\nI basically was in an overpriced Subaway called Port of subs. The sub was ok, nothing special. They do not have a good variety of bread choices and none of their subs really sounded that good. I was SUPer starving, if I wasn't I probally would have left and ate somewhere else.\n\nThe staff was very nice and the place was clean. I do think I will eat there again.", "type": "review", "business_id": "Szc6Wvt1i8VqSAOb2-7BAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Aj5a_ik5B7sgaoJ6Jlj--Q", "review_id": "TSNYg0TTPZWVOcycZliKlQ", "stars": 5, "date": "2011-03-26", "text": "I personally like this Fry's. I think most of the people that work there are extremely friendly. I go there once or twice a week and I'm always greeted with a smile. A few of them even ask me where I've been if I haven't been in for awhile and ask me how I'm doing. Complaing about a grocery store being crowded doesn't make sense to me since that means people like shopping there. They have no control of it being crowded. If you don't like it crowded, go across the street to Safeway where there is no one shopping there. Then you will see a difference of why Fry's is better. Why is it so busy? Because it has better deals and everyone wants to shop there. It's a positive thing. You can either deal with it being crowded once in awhile and save money or go to Safeway across the street where you will be the only shopper and get ripped off. You have options.", "type": "review", "business_id": "3I8kUGzDOIKz95llTBhIjA"} +{"votes": {"funny": 4, "useful": 10, "cool": 4}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "qT8arKbR7ioofdeh6wJ3SA", "stars": 4, "date": "2011-08-03", "text": "Decided to stop by for breakfast by myself one Sunday morning. The reviews on Yelp were enticing, so I gave it a shot. I ordered the Sonora Potato and Sausage Hash (Eggs, Potatoes, Hot Links, Chipotle, Garlic, Onions, Peppers) w/side of Sourdough Toast, $8.\nhttp://www.yelp.com/biz_photos/nEyREad5GZd3RiEZA-Irpw?select=TKoW6UY1opAaH4wFxLkFpg\n\nI couldn't wait to take a bite of my dish as I love Hot Links and have never seen it in a Breakfast item before....it didn't disappoint, it was very good. The Hot Link was actually spicy, which is often not the case. The Potatoes were very tasty as well. My only complaint was that it was kind of a small portion...I was left wanting more.\n\nMy server was very friendly and welcoming. She asked how I found the joint and addressed me by name when I left....very cool.\n\nReturn Factor - 98%", "type": "review", "business_id": "E5dqlvxPw9Q4XFqOMw_lqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BlW0gNjR75Qmg6ArVlECww", "review_id": "FaxcMoLlZ1pevKy_WaQLRQ", "stars": 4, "date": "2012-02-26", "text": "The Valley of the Sun has it's prevalance of *Bertos taco joints--Filebertos, Humbertos, Rolibertos, etc. Way out in FH, the open late (til 3 am on weekends) and thought it's slipped over the years, there is no better deal in FH. Generally good to go with the Shrimp Burrito (even better enchilada style if you can handle that). Most of the rest of the menu is good, thought I was disappointed to find ham rather than chorizo on a breakfast burrito.", "type": "review", "business_id": "L8STRioAgDx-_FRFuuUU2Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "3cvyIzsgYgU1VgalhPbT8A", "review_id": "eaEvTcZA9nvfKi4mfY0uZA", "stars": 5, "date": "2007-08-29", "text": "love love love this place for a second i don't feel like i'm in fakville anymore. Live music and a diverse crowd. They make a great infused berry tea smoothie no dairy just juice and ice! Parking is great and the selection of food is appropriate and divine for a cafe. Very comfortable and not to image conscious inside! Love that it's independent and staff is so lovely. I would pay $10 for a latte just to support them! Punch card too!", "type": "review", "business_id": "Mb46iSlA4qmTwXf-WrqtQA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "B7mOEA-S2acoo1S4t8wZ-Q", "review_id": "prsJzXoAEfesTFmSBD8BhA", "stars": 4, "date": "2009-08-22", "text": "had lunch here today outside with the girlfriend and my mother. I have to say we were pretty blown away with the size of the hummus plate, 3 pieces of pita with a good 3/4 to full cup of hummus, for under 4 bucks.\n I had the chicken pita, tasted great had onion, tomato, cucumber, and tzataiki, freakin awsome! my girlfriend had the gyro pita and loved it. My mom had the lamb pita and says it was awsome... unfortunantly we were all being greedy and didn't want to share our pitas. I also ordered two falafel, best i've found, crunchy outside with a crazy mixture of being dense and light, you could taste all the flavor on the front of your tongue and the spice at the back of your tongue. We'll be heading back pretty soon I hope. \n\nAlso Lisa I think we spotted you there sitting outside. not sure it was you since you where sitting behind me and next to some folks with their dog.", "type": "review", "business_id": "Rg3INE2p4zQYvfMvJduEOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zf1f0Ir_zy7flsJVkXD-hA", "review_id": "11Gl-auPHoFE6KfcXitsfA", "stars": 4, "date": "2012-02-17", "text": "This place is for purists! Be prepared for a great deal of questionable textured items if you order the tasting...Great sushi and sashimi however I would go to sakana sushi & grill for a true sashimi / sushi experience.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KlBaLaF320i15g3tNUBvmg", "review_id": "XKyQ8rn3nLgVFmtXsBXeAw", "stars": 5, "date": "2012-09-05", "text": "I absolutely love this place! I've had my birthday here twice in the last 5 years, and they have been able to accommodate large groups (up to 20s). Their patio is super cute and great in the fall and spring time. My favorite pizza is the Di Notte. Cute atmosphere combined with good food = one of my favorite restaurants in Phoenix. Worth the drive to downtown!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iR1pShxMP5Aiwo1DZzGJlg", "review_id": "ByCPAgXbYaJzID7CrOMKvg", "stars": 5, "date": "2007-02-27", "text": "A hipster shindig- for day and night- make your meal with THE Burger au Poivre, Cobb Salad and best made cocktails around... One of the best places for brunch!", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "gNmlilLp1wiwY5M32i3eLQ", "stars": 5, "date": "2012-12-30", "text": "I had been wanting to come back for a while. I love this restaurant. Last night we had a magnificent meal. I started with the St. Francis Lemonade, a perfect cocktail to start your meal. There are so many wonderful choices. They are featuring a special menu for New Years, however you can order from it \"a la carte\", so we decided to start with the Arizona Citrus Salad. It was delicious. I love the combination of dates, goat cheese and orange slices. I also chose from the special menu the sea scallops. WOW, they were so sweet and tender. They were served over a bed of black lentils, so amazing. The portion was generous, 5 scallops, I am glad I didn't order the side of sweet corn polenta. I ended up ordering dessert (yes my hubby twisted my arm, NOT). I had the usual, Sticky Toffee Pudding and my hubby had the Chocolate Stout Cake. I had a bite of his and it was great. I cannot guarantee I won't stick to my usual dessert, but it was a closed one. I wish this restaurant was closer to where I live. It is such a great place.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 1, "useful": 4, "cool": 5}, "user_id": "4lkTIhTuMhLprQprGlTRlA", "review_id": "Nr7abBBN4um7PRkNjKAI3A", "stars": 4, "date": "2010-07-14", "text": "The crew at this location is very good. They're quick, thorough and will address redos without out any hesitation. I usually go with the Ultimate Package during the gentlemen's day special for $15 bucks. This package is the best deal (Wednesdays for the guys) with a full wash, super coat, extra hand dry, interior/trunk vacuum, interior/exterior windows, full interior and tire dressing plus air freshener of choice. I've only experienced top notch service here and I've been pleased with the job these guys do.", "type": "review", "business_id": "vvWx1pJvr3QuFb7IW4-KGw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AQg9sUF1kMfrOn9FucpCPQ", "review_id": "Vv9TCcaes1xBO6tnm4NUrw", "stars": 2, "date": "2012-09-08", "text": "When I saw this place pop up along the everyday path home, I had such great hopes. I was counting the days until I was able to hit this place for a nice weekday lunch.\n\nWith an such and ostentatious name as \"The Scottsdale Salad Company\", I was oh so stoked about a genuine alternative... I envisioned crazy vegan vigilance, staunch environmental activism and a ridiculous gargantuan AYCE salad buffet teaming with fresh usuals and exotic fare. I would stuff myself into lunch coma with all manner of crazy nosh all while maintaining some personal self-image of \"health\" under the guise of a \"salad bar\". Glorious.\n\nAlas, I was so, so disappointed.\n\nIt's basically a shell of a quick-serve Chinese restaurant very slightly skinned to be a basic eatery. The place was virtually empty at high-noon on a Tuesday. I ordered the large Parisian Salad and a soda. I was expecting a freshly tossed salad piled high on a plate with a flourish deserving of the name \"The Scottsdale Salad Co.\"!! Rather, I got a pre-packed romaine lettuce and cabbage bomb in a plastic clamshell. Oh, my soda was a nice styrofoam cup I filled on the fountain machine. All for about $10. Food cost couldn't have been more than $2 even if purchased from Costco next door. I certainly wasn't paying for the ambiance. Lame.\n\nA couple people there got a wrap, which appeared to be emaciated and a general poor excuse for a wrap which I'd like to pay money for at a restaurant. I could make the same lame roll at home for about $1.\n\nAs is, this place is simply another ticking timebomb of another indy resturant failure. If the owners take a risk and venture to be more than service station food, they might have a prayer...", "type": "review", "business_id": "YTOU3COVuBdABXb3Wci_IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gbSrqR-OLj6HbleayfAU0g", "review_id": "7mvhMWVfySqwfpgQBKg-Mw", "stars": 5, "date": "2012-10-31", "text": "Today our travels took us to the Chandler Mall on 10/31/2012. Therefore we were near to Abuelo's for lunch. Nothing like returning to a Restaurant that you found to be very good! We arrived after 1PM, so we were seated ASAP.\n\nWe ordered drinks first along with a serving of Guacamole. Nice way to start off lunch! My wife ordered the Dilla Lunch while I ordered the Grande Burrito Lunch special. Both item arrived on a very hot plate-wonderful! Whenever we are dining at another Restaurant, a hot plate is always expected but all too often the hot plate fails to appear.\n\nOur lunch stay hot until the last bite due to the hot plate service. Everything was great with the meal and no requested drink refills-always a sign of great service!\n\nBoth restrooms were very clean and serviced many times during the day. We highly recommend Abuelo's for a great lunch or dinner!", "type": "review", "business_id": "jCOTob1avPH52RNuniylkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5Td84D4oDkkgxsMeqcrTRw", "review_id": "cIZ9ki0uiyZXfhqP9UcyqA", "stars": 5, "date": "2012-01-14", "text": "Have you ever eaten somewhere and just can't get the craving out of your head and you have to go back! This is the place that does it to me. I've decided I need to try everything on their menu!\n\nYou have to try the Roasted Turkey and Stuffing it is to DIE for! And the mac 'n cheese so yummy. I've also had the Prosciutto and Fig Jam sandwich and I thought I had died and gone to heaven. I had that with fruit which was good. \n\nGuess where I'm going for lunch... yeah there because I need it after doing this review. :-) \n\nOh and before I forget... When the weather is nice sit out side! You will love it.", "type": "review", "business_id": "Bm2PBs_AZEtx93zdtwqUJA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "louB3kZJk_PKdNazm9iw_Q", "review_id": "l2vSWL_uMYbGL3g3RHmbsA", "stars": 3, "date": "2010-03-29", "text": "Decent bar food with all the servers dressed in Alice Cooper attire. \nI am being open-minded and starting this thing off with 5 stars. \n\nMinus one star for being a bit overpriced on the appetizer end. I ordered onion rings at $8 per order. Seriously, are 15 onion rings worth $8? \n\nMinus one star for not having any parking. You have to park a couple of blocks away in the ghetto area to find a spot. You will have 2-3 beggars asking you for change to and from your car. There was a dude who wanted to wash my windows for money. \n\nMinus half a star for putting the gratuity on the bill and charging for it. I hate that crap. \n\nPlus half a star for the waitresses who are dressed heavy metal-like wearing mid-riffs with the tramp stamp. I always wanted to date chicks like that, but was ummm...to busy with umm....other chicks chasing me down. Yeah, yeah, yeah, and I just umm...you know, didnt have time for them at that point in my life. \n\nI better stop my review now.", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "RDuTwR_jXpnw_3q-Z4yN4g", "stars": 3, "date": "2012-03-24", "text": "You can get a 3 course meal here for lunch for under $20. Most entrees are in the mid teens and include appetizer/salad or soup, entree, and dessert. A selection of bread and butter is available for you to snack on as well. \n\nComparing the other culinary restaurants I've eaten at, I'd say this one serves OK food, but the others are better in preparation and taste. I had the salmon and ravioli appetizer, which tasted OK, albeit too salty due to the salt crust on the salmon, and the ravioli innards leaked out of the pasta into the bowl it was served in, making it look less appetizing. The entree itself was (poisson rouge) tasted good and was well prepared, but the dessert (black forest cake) mousse was too runny. \n\nService from our main waitress was good. Our water server was probably the most awkward server I've encountered, and he forgot to bring out some items I requested but hey, I give him points for trying. One thing that was weird was that one of the instructors came over and made a snide remark on how I wanted bread for my dessert because I was trying to finish the last piece of bread on the table (I hate wasting food).", "type": "review", "business_id": "EgjFg_apjNerroqYiokcag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HRIT60jByaApDP-mndG0jg", "review_id": "J8kgvlNKC0qLVqX61dc5_w", "stars": 3, "date": "2008-12-25", "text": "So, going on Christmas, always a risk. There was a wait and 2 parties in front of my group left. There we people waiting for their pick up order for over 20 minutes. But when we asked how long it would be until we got sat and would have our food we were told 15 minutes. He was true to his word on that. \n\nThe food was good. The egg rolls were awesome. We didn't really have a waiter tending to us, but that was ok. the bus person got us more water when we asked. I would probably go here again if I was in the area, but I would just as soon have the Panda.", "type": "review", "business_id": "0QTn4pMzKv1mnQifcP9YoQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "S27F_1lgY5tkuzNZW7AkPA", "review_id": "TABd1JFLNWXBNotTV6ll2w", "stars": 5, "date": "2010-05-22", "text": "The best tacos in the city, amazing veggies, and indescribably great salsas. The tacos are like tapas, so you need to order two or three, but they are reasonably priced. Nice atmosphere and friendly staff with great art to view while waiting for your order.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-UxHWAdU1sjA1n4u0ToOGg", "review_id": "9rATH7YgVdnKSlBxJv0FKQ", "stars": 5, "date": "2011-11-16", "text": "I love this place! Great place to grab a quick smoothie or stay to hang out! (just let them know if you're in a hurry)\n\nP.S. The phone number is area code 480 not 490 :)", "type": "review", "business_id": "-8aZ0v511M1zpoZAC3N3VA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Sl9-42mecdhUYkF6KTtsmw", "review_id": "Fv1JBR9l3nRMzfinKoCrcg", "stars": 4, "date": "2011-12-16", "text": "Just spent two years in Austin eating BBQ from all over the state.\n\nThis place is legit.....for Phoenix.\n\nWORLD CLASS sausage and excellent brisket! \n\nSides were average. Nothing much exciting there.\n\nThe bread was killing both me and the quality of the meat.\n\nThe sauce is too sweet. It would be great for St. Louis style ribs, but this is Texas...put some spice in there.", "type": "review", "business_id": "ytpmoIty7loFB8kRYRtJHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sRPhEvUKjtP8V5YRFjkY_A", "review_id": "O_2dMVSDuSlDk8Obqh5fqg", "stars": 5, "date": "2011-03-07", "text": "The first time I went to YC's was in scottsdale. I loved how you choose what you like in your bowl and sauces. they cook it up right in front of you. you can stuff your bowl as much as you can. don't worry about getting alot because all you pay for a take out box is 50 cents. it is great for leftovers, the food tastes fresh still. The one in tempe was awesome as well. I love this place. I had one larg bowl, a bowl of rice, chicken soup, and a soda for $10.25 how can you go wrong with that???", "type": "review", "business_id": "CdOb17NMdQpagyHSxv5mHA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "N2sauZfbLwxnbUviLo43Jw", "stars": 4, "date": "2011-12-20", "text": "3 kids and myself.. 14 bucks.. gotta love a Tuesday kids eat free. While I still had to buy two adults to get two kids free... totally worth it. \n\nThe place was clean, service excellent. \n\nThe pizza was looking pretty bad when we goth there but after eating some ok salad, the fresh ones rolled out and were great. \n\nGarlic cheese bread type\nPep, ham and jalapeno\nChicken wing\n\nThey were all great. \n\nCinnamon Roll for dessert...yummy!\n\nReally if you have not been here for a few years come back with an open attitude and a hunger to pack in some pizza, chicken, mashed taters, spaghetti, salad, dessert and of course pizza...any kind you want, they will try to make it.", "type": "review", "business_id": "xczdDnDIUoVZ2ILT9nEvPA"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "eCtkMHrbM8j0R5yabfrRzg", "review_id": "RnHrwhbYViQ2Q6uZ_aCdMQ", "stars": 2, "date": "2009-08-13", "text": "When Tempe Market place was being put together...I though WOW a swanky place where college kids and laid back adults could get together and enjoy themselves. Cadillac Ranch was being built...and the hype was hot enough to make you buy a meal ahead of time. Read the reviews but thought...what they hey lets try it out. And now I see why it has two stars...should have listened to the other yelpers -_-... went there is Good ole' Rada, thought it would be nice to enjoy the day outside. Nearly Drowned by the ample amount of misters. Thought to self...hmm well at least the food should be good. Ordered the sliders meal... maybe they were scarce on meat, but the slider patties were the size of silver dollars, tasty but small. Yes the service was slow; my glass was getting refilled faster by the misters than the actual waiter. It gets two stars in my book for the service and the overall experience (for lunch that is). you get what you pay for..and for 11 bucks, a couple barbie sized patties in human size buns, a not so 'AHH' diet coke, and 5 oz of wine (and that's on the 2.00 happy hour deal) ... kind of seems appropriate. \n I recommend this if you are stuck hanging around Tempe Market place and you have just a few bucks and feel like getting close to full...\nand now I think that Tempe Market place took Mill Ave's charm...and they need to step up to compensate killing a once adorned chill out spot for ASU and Tempe. Shopping is good...we could deff replace CR for perhaps Sakana? Who knows...\nBye for now!", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UAEMfCfl_4PevtibdXpzmg", "review_id": "nPb1o62xrm9w03ONLd9BaQ", "stars": 4, "date": "2010-09-15", "text": "Worked around the corner for about a year anticipating this place opening. Finally got to stop in for coffee this morning (a year later) and had a piping hot Americano and a mango-poppyseed muffin. Big fan so far! Looking forward to having coffee on the patio when it's a bit cooler.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "R0J0Nm1H8zAfSSJzgekWPg", "review_id": "DtCEt8a-fNgfE1fk-o8BHQ", "stars": 5, "date": "2011-06-04", "text": "Just go eat here. Get the cheese curds, I think they may be developing CCA (cheese curd anonymous) soon, but until it becomes a diagnosable disease I will continue to indulge.\n\nOh yah, the Pine Steak, is also fantastic and will probably also cause addictive like tendencies. \n\nOh, oh, oh... the chicken and waffles are also a pleasant surprise in the other wise repetitive and ordinary dining scene that is so often found in Phoenix. \n\nJust do yourself a favor and go check this place out. And try the home made ginger ale, tonic or lemonade by them selves... or mix it up with one of their top shelve spirits.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "FN4XYGJ1-HTXgWXUmw5Kuw", "stars": 2, "date": "2010-08-23", "text": "I cook better pasta than them, and I am not much of a cook.\n\nThe pasta I had (I believe it was a marinara dish with penne pasta) was awfully bland.\nSauce didn't mix well with the pasta either.\nThe texture of the pasta was funky, hanging out on its own.\nIf I wanted bland pasta I would buy a can of Presto and penne pasta, boil them together and add some water :p\n\nThe server was attentive enough to notice and brought me more sauce.\n\nI did like the service and how they had the giant white piece of paper and crayons on the table so I could doodle while I waited.\n\nThe waitress was very attentive and friendly.\n\nAppetizer: calamari was yummy.\n\nI just wish they could kick it up a notch on the pasta with richer sauces, seasoning, texture, more tomato/meat/cheese and really blending it with their pasta.\n \nBut I guess that would raise costs/prices huh. :/", "type": "review", "business_id": "UexMw8s7B1J-RtFOQtCCsQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 1}, "user_id": "xQA8YYQ8wX_LzYaAdqqhfg", "review_id": "weGzVqe9iPRVeayqI6vShA", "stars": 2, "date": "2008-10-21", "text": "Being the only gay bar in Scottsdale aside from BS West, I've found myself at Forbidden a few times. Forbidden is an ambitious concept--a gay club with two rooms and two deejays in a city not known for its gay nightlife. Sadly Forbidden does not deliver. \n\nThe club is usually pretty busy on a Saturday night, but the crowd leaves a bit to be desired. The patrons are mostly unattractive, kind of trashy in fact, and not very friendly. \n\nI believe deejay in the main room does not change on the weekends, where he spins top 40 dance/pop to a drunk college-aged crowd. In the OZ room (the smaller room) they have different local deejays, who, from what I've seen, spin a variety of different types of music--sometimes it's circuity music, sometimes it's eighties music, it all depends on the deejay for that night. The OZ room has been pretty empty the few times I've been there. The sound system in both rooms leaves quite a bit to be desired from a place that calls itself a club. \n\nThe drinks are reasonably priced for a bar in Scottsdale. The d\u00e9cor is okay, but not very interesting. Forbidden isn't terrible. It is, however, just plain boring (bad music on a bad sound system, uninteresting d\u00e9cor, and an unimpressive and unfriendly crowd)!", "type": "review", "business_id": "U2C1t0sqK_3hMFEs67MBLQ"} +{"votes": {"funny": 5, "useful": 7, "cool": 6}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "7iUIThqzcZwOi7Xtu0C1jg", "stars": 5, "date": "2010-04-24", "text": "When I moved to the Valley, our first place was a rental in Old Town. The previous tenant/owner generously left a bunch of take-out menus for nearby restaurants. Defalco's was one of them. But not being a fan of the sandwich, it took me four years and a move to actually go in. What a fool I was. This place is fantastic! \n\nFirst off, it's not just a deli, it's an Italian market. Had I actually read the full name of the place, I might have known that. It's also got a somewhat extensive selection of wine available for purchase. So now we've moved from a deli, to a grocer, to a wine shop. Don't forget the pasta dishes and the pastry, too. \n\nMy fave sandwich is the tomato, mozz, and basil on a sub roll with olive oil and balsamic. Simple, yet perfection. I'm a huge fan of those sub rolls by the way. Crusty on the outside, but not so crusty that it makes a big mess every time you take a bite, yet soft and chewy on the inside. It's always about the bread for me. Great selection of prepared salads in the deli as well. One of the best red potato salads I've had in a long time.\n\nIt certainly won't take me another four years to go back. I think I've been there just about every week in the last month!", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "oCFQmDotqcyIYAY1JyKUPg", "review_id": "hCHpAD1tLDs_-XYe472Ujg", "stars": 3, "date": "2009-11-05", "text": "Yes, I'm a vegetarian reviewing a steakhouse, though I have eaten their steaks pre-veg. Their spinach salad is very good and filled with goodies such as goat cheese, dried cranberries, pecans, and mandarin oranges and is only a measly $6. I ordered the trio of sides which included some mushrooms, steamed asparagus and sweet potato fries. Our service was great, which typically it always is at The Keg. Big beers, nice sides, and for the meat eaters great steaks. Steakhouses should just offer a big ass portobello mushroom for vegs.", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YOZ6xwXXpxD0vxJiA6WC-A", "review_id": "lm7A7OcxFyojcWa2JlrIfQ", "stars": 4, "date": "2012-07-19", "text": "Kids eat free on Wed and now also Sundays with specific adult purchase! \n\nThe white pizzas are fantastic!! mmmmmm. The kids get slices (as a kids meal) and the cheese ones are good, too. The seasonal salads have been wonderful--current one I think is called Strawberry Fields? it has nice greens, almond slices, strawberries, apples, cheese, and 2 different dressings. \n\nGot the calzone last night--not recommended. The large (I ordered a small and she made a mistake) was HUGE---large enough for about 5 or 6 people, unless everyone has a huge appetite for a lotta carbs. The dough was uncooked on the inside, and the broccoli and chicken were cold :(. I guess that process needs some work.\n\nAt this particular location, there's always a gal that greets us and keeps calling us \"guys\" in every sentence. It's just a little weird, but the rest of the staff is great. Again with this place, like at China King, never sure why there doesn't seem to be many people eating in. They do deliver, so maybe lots of ppl have delivery?\n\nThey do have patio seating with misters, but right now, kinda hot to eat outside. Probably lovely in the cooler weather.\n\nKids meals come with a small sundae, so that makes them happy. \n\nThe fountain drinks are Pepsi. The diet pepsi tastes bad, and the diet dr pepper doesn't taste much better. They do, however, have filtered water. Your choice of filtered NYC water (tastes great!) or filtered Chandler water.\n\nBTW this location is in the same plaza where Outback, Nordstrom Rack, Famous Footwear, SAS, etc are, so the parking is a little cramped. Not much NYPD can do about that, but it's annoying.", "type": "review", "business_id": "YF6Z8PhNWN0ZR33hfvZRjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "vj_eJ-Ty5GyTU85jgRAgwg", "stars": 5, "date": "2008-10-13", "text": "Yo, this is my favorite AJ's here. If you gots a beef with the prices then go somewhere else. Actually, the prices aren't any higher than Safeway, they just carry better, and more expensive for them to buy, products. \n\nThey have been great to me as far as ordering Rambutans when I have a whim or a craving. The sandwich counter is awesome, and I love the slices of pizza that are as big as my head. The drink counter is stellar and they brew China Mist iced teas. Every once in a while the Prickly Pear flavor comes up and I'm so so so happy. \n\nThis store is much larger than the Scottsdale/Lincoln location, and the service here is friendlier than that location as well. Shot out to Gerri at the floral counter, she is teriffic, as well as the produce manager who takes care of me every time. You guys rock!", "type": "review", "business_id": "CgHcO651uEE3aalrkm4boQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cORx_hDvsVKcRY85SLCfyQ", "review_id": "vLSGKaUrpUivkunIWvkACw", "stars": 4, "date": "2011-10-22", "text": "Had a great time, very family friendly!", "type": "review", "business_id": "wTVgDIHonZITOqrFfVZ0gg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U5sTifscxQs8O5cifSMKLQ", "review_id": "qktabrtWf_M6KYDgoQx4EA", "stars": 3, "date": "2011-08-21", "text": "Stopped by to see what's new after the summer reopen. New merchandising is really cool with the mixed textures with the textiles, Some really great stuff and pretty good prices. I've been in this store numerous times and though I like to be left alone to wander, when I do make - or try to make a purchase the owner and her staff are borderline rude. There are many other great places where the staff is welcoming and anxious to help. I've decided not to include this store on my regular rounds.", "type": "review", "business_id": "mreFUEBcePvF0ovORu2qng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S_KBUw3Qqj88MbGtE-hcEA", "review_id": "w2rmBDeVcD_dUxYdvuSwgQ", "stars": 4, "date": "2010-01-31", "text": "Place is clean, staff is friendly...I love that it's kind of a one stop shop and the self serve yogurt shop connects to the water and ice next door. You can get what ever cold confection you are craving from Thrifty's ice cream, shaved ice, yogurt or smoothies...an added bonus is they stay open late 7 days a week!", "type": "review", "business_id": "clUb7fXNVPmFVET-hH7JiQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "nCK0bGdFMj8hVHC1uwbWVw", "stars": 5, "date": "2007-07-05", "text": "Camus is a cute little trendy bar/restaurant located in the Clarendon hotel. I came here for a business lunch awhile ago and really enjoyed it. We were one of two tables though, so service was top notch. Our waiter was extremely knowledgeable about the menu and was able to answer any and all questions we had.\n\nThe chef even came out to say a hello, which I found to be impressive. The calamari app was excellent and my dish of mushroom gnocchi was amazing. I definitely recommend this place!", "type": "review", "business_id": "WO8I1ab_MLQ-4M1wIEzTag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l_gYq9wGIHzihot_AmqeIQ", "review_id": "iRYfy67KxSYUO3471kV_vw", "stars": 4, "date": "2011-05-02", "text": "My husband and I loved it. The food was delicious. The ambiance very comfortable and child friendly. I needed to dip my fries in something other than ketchup so they came over and asked what they could whip up for me. Who does that? She brought out a yummy, very hot :) honey mustard. They should offer it on the menu.\nYou can also make reservations here on opentable.com", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9VmTOyq01oIUk5zuxOj1GA", "review_id": "M_GC_TG9TpSzMAUQ_TAimw", "stars": 5, "date": "2012-12-21", "text": "Great service", "type": "review", "business_id": "kkBMTNET2xgHCW-cnNwKxA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hV225B_UgT368FKzOk2daw", "review_id": "0CbilnyXmdtPc3-HdjrxsA", "stars": 5, "date": "2009-06-07", "text": "Looking a cutting edge, wanting the best for everyone type of pet boutique you must go to Oliver and Annie's. \n\nChris, the owner is amazing! He knows his stuff and has the best of the best. There is no pet boutique like his. Urban chic and healthy top draw. He is an amazing supporter of local artists and designers and an absolute delight to know and do business with. His loving nature is endearing! \n\nIt's no surprise he just received the \"Best of Phoenix\" award.", "type": "review", "business_id": "RowLTh09IOdyeZP-7BlMFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LSf-AF1UzGV4viB9LgoNjA", "review_id": "-As7S3ePBxFHu0-EJLyCQA", "stars": 4, "date": "2012-01-07", "text": "wow! what an upgrade from LA Fitness.. with that being said, you can already tell this review will be positive. \n\nI recently re-joined 24 hour fitness, after breaking off my membership back in early 2010 after moving away from home. I join LA fitness last January, and was less than satisfied with the broken equipment and that meatheads that seemed to frequent the south Scottsdale location. \n\nMan what a nice ass gym, It's free weights and machines are all located next to each other and not scattered around everywhere. The cardio machines are in great condition and It was not super crowded where you felt the need to shorten up your workout.\n\nStaff was friendly and not pushy like LA Fitness.. and Lockerrooms are clean.\n\nBasically, this is a nice new facility that anybody would be comfortable working out at and its close to my school so thats also a MAJOR plus!\n\n4 STARS", "type": "review", "business_id": "LaHyoyMfcyPJmdeHmGo9lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TObZs5bPfIw5u02e9XCPkQ", "review_id": "PkTfRlSeUpkRp_GfLokenQ", "stars": 4, "date": "2010-09-09", "text": "Went here on a Sunday night to celebrate a friends birthday. Glad we made reservations as even on a Sunday night, it was a packed house. \n\nHere is what I liked:\n*The food, appetizers, pasta dishes and warm bread (and the tomato/bruschetta like topping they give you with it).\n*The fact the owner/chef is present and wants to ensure you enjoy your meal. \n*Good location, plenty of parking. \n*Value, prices are in line with what I would expect to pay for the quality and type of food you get. \n\nHere is what was just OK:\n*Service, our server was nice enough but he got distracted chatting with other employees and customers and often forgot to check back with us to refill waters, remove dirty dishes, etc. On the plus side, he knew the menu and made excellent recommendations.\n*Atmosphere, I know they are doing the best with the building they have to work with but I felt a bit like I was in a remodeled pancake house trying to be an Italian restaurant. The one exception would be the bar area which was more elegant/traditional. \n*The deserts, we had several and I would say mediocre on all maybe even bland. That being said, however, every other part of the meal was delicious.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "zhVOlwBuEgdGlHjwgVf3Jg", "review_id": "3MOoCVffqpGjxzTjXPtJXg", "stars": 5, "date": "2009-03-20", "text": "Have you ever tried the chicken rotisserie here? They go fast so you have to be lucky to get one unless you call ahead. Its not so much about the rotisserie chicken as it is about the amazing and creamy and smooth and exceptionally well balanced Garlic Sauce/spread they give you that goes along with the chicken. \n\nHave I told you how amazing this spread is. If only I knew the recipe...I would eat it by the tub...okay maybe by the spoonfuls. Anyway...try the chicken rotisserie or the chicken taook. Heck if you don't want to eat either of those things...just ask for some garlic sauce on the side with whatever you are eating. You will not be disappointed.", "type": "review", "business_id": "_qTzOkbin2giDOrFsaxm8A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "grFAzzt3JfdXmgW-CL8rCA", "stars": 4, "date": "2012-01-01", "text": "Best burger I've ever had, and a great view from the patio. Enjoyed a wonderful date with my husband there.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NzYEA8AZo1KnNjjklUVFzQ", "review_id": "MUUGLCGGAk4P_4GLB4nAsQ", "stars": 4, "date": "2009-09-25", "text": "I have come more and more to appreciate some of there beers that I use to not be a fan of. I tend to like some of there seasonal's more then there regulars. I'm a big fan of there oatmeal stout and there bourbon barreled porter and pumpkin porter. \n\n I spent most of my college career randomly showing up here for family dinners, reverse happy hours, 21st Birthdays and everything else in between. There happy hour is pretty good with discounts on pints and pitchers, but I really wish they would add food to it. There food is good, I have yet to find something I didn't like on the menu. Overall, great place for dinner or even to hang out on the patio and have a few beers after a long day.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "tKuu-Rbr-F9gb3qOhNuntQ", "review_id": "5ZTOtdVpUaQygPGq-tR_ig", "stars": 4, "date": "2011-02-12", "text": "Fabulous. \n\nHoly Kobe Beef Burger with Avocado, Bacon, and Cheese - It was the special of the day. I didnt care what it cost, I knew I had to have it. \n\nCome to think of it, that was the FIRST time in my life I've never ordered off the menu and actually went for the \"of the day\". I did it with my wine too!\n\nI wasnt a HUGE fan of the parmesan fries, but I could be alone here. \n\nAll in all, great place for some burger lovin! The milkshakes at the other table looked unreal!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Bwhn1EVWzGNIQZTTgqeXNA", "review_id": "OvW8whGKj4bypw70HmIeeA", "stars": 4, "date": "2011-09-13", "text": "I have been here twice.\n\nThe fist time I went with my husband for dinner. It was the first place we dined after moving here from Chicago. As always we started with the oysters which were good quality and delicious. He loved his French Onion Soup as well. I had a special, the Halibut which had a lovely and inventive presentation. The only issue was the seasoning. I do not think it was seasoned at all. My husband had the same issue with the Short Ribs. Maybe the kitchen just missed a step. I do not like things over seasoned but this was bland. The Zinc Valrona Chocolate Souffle was simply amazing. I am not a chocolate lover, except for souffle. It was the perfect exclamation point to our dinner. \n\nI went for lunch with my mother who only eats plain burgers, plain chicken and pasta with marinara. I don't know how she manages to stay thin. We settled on Zinc. I had a grilled chicken sandwich with a lovely arugula and tomato and a light sauce. She of course had a plain burger which she raved about. We split an order of frites, that were crisp and full of flavor. I loved the spicy sauce! \n\nI love the bistro decor and the service was good on both trips. Glad I live close!", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_-oKt8pfqoQXbRZUi49cSg", "review_id": "bMhf5_GhbKCN7u7Ga8Kehg", "stars": 5, "date": "2011-12-01", "text": "I was thrilled to find my room huge, sheets crisp and clean, and the staff super friendly.", "type": "review", "business_id": "U-tiHSh0P38H-6-yDUHrZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1Ofs7rMHcd6UrbyF-QWk2w", "review_id": "LGw5H-uG-jys4CBr9y4jLw", "stars": 2, "date": "2009-03-16", "text": "I went to NOCA about a month after is opened and was wowed. I told all my fellow foodies about my wonderful experience, the innovative menu and all the little extras that made the meal a really special dining experience in Phoenix. \nI went back with friends twice after in the coming months and was pleased each time. \nI just went back this past Saturday though, and would have to say I would no longer suggest it for a special night out. It was as if the magic was gone and that the place was showing its age and loosing its \"specialness\". It was really just ok. The chef's talent shows, but too many other let downs. \nWhen we arrived for our 8:30 reservation the place was crowded. The host was friendly and told us that our table would be ready soon and it was. We sat down at our table and that's when things started turning out not as well as expected. Seated in a back corner--which I did not mind---I noticed the walls were filthy---scratched and beat up and dirty. That was my view, so of course its all I could focus on. The waiter did not show up for 5 min. to take our drink order, and when he did it took 20 min. to get them to us. He apologized, but at 8:45 on a Saturday night that waiting for a first drink is not fun. \nWhen then settled down with our menus and picked our choices. It was then we were told that they were out of the veal --which of course 2 of us had chosen by then, and that there was only one Skate dish--which of course the other 2 of us had decided on. They were also out of 3 other items. I felt I was back in the old Eleve (located in this same spot)--the food was great there as well---when they did not run out of many items on the menu. They may be ok when you have a larger menu, but with a small menu to begin with this is a real disappointment. \nGone were the pop rocks that I thought was so fun as an intermezzo, instead a spoon of something that was not described was set down in front of us. A simple salad--good--was $15---and most starters are at least that much. Good, but not worth the price. Otherwise, entrees were good--not special, but tasty and served with good presentation. The cotton candy is still there--and still an attention getter. And I still love the desert selections---especially the malt that I had with mini doughnuts in with dipping sauces. \nI think I am able to overlook the fact that its really not an attractive room--the energy from the kitchen and the close tables add noise and excitement to the room, but the art and lighting is ugly and now that its starting to look run down as well--there are too many new, beautiful places in the city with equally good food and equally as pricey that are not in strip mall. And they usually still have most menu selections on a Saturday night.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0MP5D8x7K_CpJXSYgyfSWw", "review_id": "_aGwS0SSPwj9eOLTSCJJIw", "stars": 5, "date": "2012-10-10", "text": "I dined in Sol this past week and was amazed. I am in the industry and have absolutely fell in love with this place. The food is not only original but good an healthy. I will say this though if you are looking for refried beans and mush on your plate this is not the mexican food for you. It reminded me of time i have spent down the coast of mexico, very wonderful. I can see them still working out a few errors but they are very quick to fix any mistake. the service i had was absolutely amazing, it was nice to see someone like the tall good looking gentlemen i had wait on me. he was funny and kept my table laughing and very informative overall, i really had a sense during my meal he wanted nothing but the best for my table. definitely somewhere i will be back too for sure, especially since im craving that taco vampiro again.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "q7Zn9s5wXAjhhSJMf7GiVg", "review_id": "gFTx52dbotsmHF0cfJsLvA", "stars": 3, "date": "2011-03-24", "text": "Came here last Saturday to see what it was all about but I really wish I had come on Friday instead.. The crowd was a little strange and consisted of mostly older people.. They played a mix of top 40s and hip hop whereas on Friday nights it's mainly hip hop.. The drinks run about $7-10 a piece and the bartender that helped me was very friendly! She even offered my friend and I a free shot.. The music wasn't very consistent so there weren't too many people on the dancefloor unless it was a hip hop song playing, so I spent most of my time sitting in their outdoor patio.. I love the decor and the ambiance but I really wasn't feelin the scene on Saturday.. I'm gonna have to return sometime on a Friday night to see how that goes..", "type": "review", "business_id": "hCS5eV0SCAY9LeeL36lz8g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HfwO9GnaP-9VdI0afwgmrA", "review_id": "7hYh_HXrvZLACWudwY6UZg", "stars": 3, "date": "2008-04-13", "text": "There is nothing special about this place to speak of, hardly a place I'd seek out to go to again. It's in the heart of Old Town, but doesn't feel Scottsdalian at all.\n\n I guess it's an OK place to hang out, they have a patio and a cozy interior, (like TT Roadhouse's decor but bigger, and not as cool) I thought the choice of beer was lacking, the service slow and obnoxious. I fell like I was bothering the bartender by ordering drinks. I really haven't had that experience too often in Phoenix, in Boston every bartender is annoyed to serve you, so I am used to it, but this is Phoenix damn it! One guy in particular just stood behind the bar with his arms folded, I am not sure of his \"role\" in the whole bar tending process. He didn't even pick up a glass, just stood in defiance of the customers. \n\nOverall, this place is decent, but I wouldn't choose to go again, I met some friends here and we proceeded to go elsewhere after.It seems as if the Coach House is meant to be a place you meet up have a drink, then bounce to someplace else. I kept wondering, where are all the fine leather couches, and handbags...LOL! ;)", "type": "review", "business_id": "cjjZt2oOkk0F152RkQMfQw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F5OGEH2jk5sA_R4xBp2TPg", "review_id": "hlyHIH1bx6u1_B3Bgd91ZA", "stars": 4, "date": "2010-11-19", "text": "Simple, well prepared food. Not the cheapest sandwich shop, but it is consistently high quality. The best part is the bread. It's all good, but I especially like the ciabatta. And being next to changing hands and trader joe's doesn't hurt!\n\nSome favorites:\n\nChicken continental, sweet potato sandwich for something different, roast beef and gorgonzola.", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "-la6YVHqiwf2fR8o617mBQ", "review_id": "bXzhNFGZ4ekD_NC_AZJi1w", "stars": 5, "date": "2011-02-27", "text": "Here's how to do Pizzeria Bianco the right way:\n\n1. Show up at 3:30 or earlier to get a good place in line. Make sure you bring some friends to enjoy the time together and the great food.\n2. At 4:00, the bar opens. Get yourself a bottle of wine and make the best of the 90 minutes you'll spend just waiting to get on the seating list.\n3. Order a few appetizers from the bar; they're light and fresh and yummy.\n4. When you finally get seated for dinner, don't hold back. Order salads, share different pizzas, and have a coffee after.\n\nThe quality of the food is ABSOLUTELY worth the wait. We tried eating here a few times over the past couple of years, but realized it takes commitment and two bottles of wine to make it through the line. Best pizza I've had since Italy. Bravo Bianco!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JTFAjb21Y5sbOHLyO_tyrQ", "review_id": "-1pSzIm-NgFzlJwiWn7nIw", "stars": 5, "date": "2011-10-29", "text": "Now that I have tried all the main bubble tea/boba places in the Valley, I can say that this place is the best and most consistent. It therefore deserves five stars!", "type": "review", "business_id": "3NqERLqdtQSe0w9540rZrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BMsToNr5jAzE_t1rk-0dMg", "review_id": "zwuGU0JwlG81ewuKZzfn_Q", "stars": 1, "date": "2012-04-12", "text": "We were so disappointed! We were on vacation in Scottsdale and wanted to try a Brazilian restaurant. It was nothing like the one we have had home. Actually it was completely worse than all three Brazilian steakhouses we have close to home. I tried about 12 different meats and I think there were only 2 out of the 12 that were tender. The rest were over cooked or hard as a rock. We really wanted to love this place as I kept trying more and more of the meats as they came around hoping the next one would be better. Besides being hard, the meats didn't have much flavor. The salad bar was okay and I don't know that I would even pay the cheaper price to just eat from their salad bar. This is sad that I have to say the highlight or our meal was the fresh bread and salami slice you get at the salad bar. :(", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UgCV-BHmf2VTGNXTQe97xQ", "review_id": "tLmW0Tk4Fzi6tDeDWdaDtg", "stars": 4, "date": "2008-10-20", "text": "This place is great. I met up with a friend there for drinks after work. I love the bar which has a garage type door that opens up so you can sit outside or inside. Great intimate vibe outside under a big tree with lights. Great warm vibe inside. Great mix of basics and mexi-cali items like ceviche and tacos and burgers and mac and cheese.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "GdWzRI8uzwO7W6qDtTVjmg", "stars": 3, "date": "2010-10-27", "text": "Changs has a good menu but this location still needs to work on their service. Each time I have been unimpressed by the consistency of service. Also, when refilling water, please do not slosh it everywhere. I know you are in a hurry, but points for style are awarded for not slopping water on the table, floor, and customers...(aka my guests). \n\nGets pretty noisy so I recommend getting there before the dinner crowd for a conversational meal.", "type": "review", "business_id": "Eq6HUYlnhF__d1ie-I2RMg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "E0WWNXVze_sfDCbM0oMYvw", "review_id": "iUZCQLczwaujAkJN2tlBlA", "stars": 5, "date": "2007-09-04", "text": "If its good enough for Britney, its good enough for me. Which I guess isnt saying much these days... But trashy ole Brit knew what she was doing when she booked a room at Sanctuary. \n\nThis resort truely is a Sanctuary--the pool, complete with negative edge, in-water matching rafts for guests, and a top notch waitstaff was my favorite spot. Had a gotten a chance to experience the spa, which I've heard is one of the best in town, I may have taken up residence there.\n\nI stayed here as a reward for work with a bunch of girls--we had a suite--a sweet suit eactually, complete with 3 bedrooms, kitchen living room, etc. We even had a cute bellboy who watched parts of the NBA finals with us. Now thats service. \n\nPlush robes, a balcony with a perfect mountain view, and egyptian cotton sheets. Loveitloveit.\n\nAt night we went to Elements which is the very up-scale restaurant and bar at the resort. It deserves its own review so I'll write a seperate one, but know that its exceptional and the view is amazing. A great date spot for even those who aren't spending the night at the hotel.", "type": "review", "business_id": "xm8F51qKjx0cfdOSukTDng"} +{"votes": {"funny": 2, "useful": 9, "cool": 10}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "oQOQmufJsZsQposGQEvvXw", "stars": 4, "date": "2009-03-31", "text": "I had the pleasure of visiting FBH with my fave Foodie Bear and Robert a while back. (Yeah I'm behind on reviews). All I can say is WOW. I have become a fan of FBH. We walked in to a small, clean space. You order your yummy meal at the counter and you have to be quick to grab a table! My advice, grab a table then go order. For my yummy meal I had the fry bread with beans and green chile. I was delighted to see that I could wash my guilt-ridden meal down with Big Red Cream soda...mmm.. When I bit into my fry bread it was crispy and light on the outside and nice and chewy in the middle. It was so good. I wished for a little more spice or flavor from the green chile sauce, but it still did the job. We also tried the chocolate and butter fry bread. It was so-so in my opinion, but I'm not much of a sweets person so definitely not a knock on FBH! \n\nI will certainly visit FBH again maybe after I do a giant work out or have been fasting for 5 days... it's just too good to eat on a regular basis!", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-CyBQG3dc4UnpluY7UdMOA", "review_id": "RKppcEKaf9zCZYf-ppCF8A", "stars": 5, "date": "2010-12-16", "text": "gotta be honest, i'm not a wine drinker, but came here to meet up with friends for a tasting. the space is sleek, yet cozy. the staff is friendly and very earnest and knowledgable in their wine presentation.", "type": "review", "business_id": "qr5MMPq-DliAgaSvG47tdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LvAr6xG-A40PGk1quMKxlw", "review_id": "AfDVtSpM6GvkqS1wJYAm8w", "stars": 5, "date": "2010-07-07", "text": "This is one of my favorite breakfast restaurants! They carry the best bran muffin I've ever had....it has a delicious brown sugar topping on it. I love coming here on special occasions!", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8N6y30aGVwtIYFraswbJeA", "review_id": "C5fmQYMOzCLOeHIKM5t0Ug", "stars": 4, "date": "2007-11-27", "text": "I'm staying at a hotel in Tempe so I decided to let Yelp direct me to a sushi joint for dinner. After reading several reviews, decided to try Sushi Eye since it was less than 5 miles from my hotel.\n\nI orered the following: Sashimi Plate (tuna, salmon, yellowtail), Hamachi Kama (grilled yellowtail collar), and Uni (sea urchin).\n\nPOSITIVES:\n-- Price was very reasonable. Total cost was $40 including tip.\n-- The food was fresh and the portion sizes were great. Even the Uni was extremely fresh and the amount was more than reasonable.\n-- The Sashimi Plate came with soup and salad. The dressing on the salad was excellent.\n\nNEGATIVES:\n-- The green tea was lukewarm and the waiter/waitress did not do a good job of ensuring my tea cup was always full.\n-- It takes a very long time for the food to come out. There were only 3 or 4 tables besides me so it wasn't a busy night. \n-- This is an odd one but I actually wished the Hamachi Kama didn't have so much meat on it. Due to the large/thick amount of flesh, it didn't not have the crisp chargrilled taste to it. Probably another reason why it took so long for it to be prepared.\n\nOverall, I give it 4 stars. I would definately go back and may tomrrow night.", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "xW5ajZ7ke4IeRmJylPKagg", "review_id": "6sNvmvr6zFTqzQipj6aeVQ", "stars": 1, "date": "2011-02-27", "text": "beware of the hidden 65 cent surcharge per person for tea even if you don't drink tea? really.\n\nThe crazy thing is, i'm sure no one even notices the extra cost because who checks the bill?\n\nWhen I mentioned it to the cashier, she was stuttering and stammering and started to back pedal and said \"oh, is this your 1st time? we can remove it from the bill\"\n\nI said forget it, keep it.\n\ni usually tip 20-30% but i'll just let them keep their meager 65 per charge.\n\n yeah, really worth losing a customer for?\n\nmy 4 year old daughter even gets the gratuitus tea party charge and she only drinks water.\n\ngone are the $2.15 per item flat rate (can you say bait and switch?)\n\n$2.35 PER so now they're no different from the rest of the dim sum places.\n\nas sneaky as C-FOO trying to strong arm the 15% gratuity (which failed miserably and lost us and about 100 of our friends as customers)\n\nso in a down economy, you're supposed to raise your prices and sneak in stealthy surcharges?\n\nit's the chinese way i guess\n\nback to china king for us. sorry china king for being disloyal with having a brief and sordid affair with the palace.\n\nwill you forgive us? haha", "type": "review", "business_id": "9Qt1pt0pk2VWz0chdGk-jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GjNyOTcibcI_XKCzeMgO2g", "review_id": "xfWeQpvrchWH3G5Kcwbdfg", "stars": 4, "date": "2011-02-20", "text": "We have tried this spot a few times and each visit we find just enough we like to keep coming back. The whitefish on bialy is a favorite and the selection of bagels is extensive. Try an oversized sandwich with a vanilla phosphate... All wonderful. The only downside is that most items are $10+ and that adds up for a family of 5.", "type": "review", "business_id": "El_0LAdJ1R0-nL_lHzBT-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xfX5LfEnBUWb8iL3B4VqHg", "review_id": "cOpDQF5WBk9OAyqaR6hWcg", "stars": 5, "date": "2012-11-07", "text": "Updating my review after several weeks. Appears maybe the managers read these reviews. In the last few weeks this store has improved 2 stars. The eggs in my BBs have been cooked perfectly, Diet Coke tastes better and they have not forgotten anything in all my visits. Added two stars because they have been consistently 5 stars since my last review...but I am still watching.", "type": "review", "business_id": "Jt1tVmCN1jwnXc3sSULqTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u5WxYdg6CIv_3UJTwS1C3w", "review_id": "VyVIb5N-5SOuLbZNhpG2Hg", "stars": 4, "date": "2012-11-06", "text": "Pretty yummy! I just went here for lunch and thought the pricing was the best feature. $6.95 for all entrees, which includes a bowl of spicy chicken soup (not sure of name). I ordered the Panang with pork and loved it. It had great flavor and the serving size was appropriate for lunch. Don't let the restaurant's outside appearance scare you - the inside is not too bad. The servers were very nice and efficient. I'll be back, guaranteed, because they serve quickly and it works for my lunch hour.", "type": "review", "business_id": "0AkoILvIy27Ss3UYxUGiHg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "jclv3W73jLmVvYohqE7alA", "stars": 4, "date": "2010-09-21", "text": "Cool place in downtown! I've been to all of the iterations of the restaurant and all of them have been pretty cool. The happy hour is a great deal and the bartenders are really nice.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tmTxuDadTVc-KFyhvPuseQ", "review_id": "soy_zcmzHJJ95bX5BhtCuw", "stars": 2, "date": "2012-11-21", "text": "Now they are using a hand held drill to buff toenails during their pedi instead of just a quick file. I can definitely see grow out difference on my nail bed. Not good.", "type": "review", "business_id": "vANCNdPMrB4niP_48_YP1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZNVaAWwEq5n3eSSFLKUigQ", "review_id": "EOMiwiG5bO21UB8VA5T0nw", "stars": 2, "date": "2011-08-25", "text": "I've been to Jade spirit a few times and Kim really does a great job and he has helped me a great deal but, the problem is the receptionist. It's Kim's wife and she is very forceful with sharing her sexist and crazy views and boy can she talk and talk and talk. It makes the whole experience stressful and not worth going.\nDuring the first visit she gave me this booklet asking for the patients to be quiet and to respect the peaceful place that it is supposed to be but, when I'm in the middle of my treatment I can hear her go on and on and it encourages the patients to go ahead and talk as loud as they want so it's not restful like it should be. It's not an appropriate place for her to do her socializing especially if she's going to try and force her views on the customers that are there to see her husband.\nKim is amazing but, not mazing enough for me to be willing to deal with his wife", "type": "review", "business_id": "XlrLoXFcKfw8CFoMLdKacw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "1awRe9ivcwXxu_ajluUmnQ", "review_id": "G1Ba4_IlrL8uZEYujuRKJQ", "stars": 5, "date": "2012-12-05", "text": "This is a true gem! I took my dog there after bouncing around trying to find the right groomer for him. I read the reviews and gave this place a try. I was really happy with the customer service, the service performed on my dog, the fact I got a same day appt, and most importantly....my dog did not seem to be anxious or uncomfortable. He normally leaves a groomer stressed and not himself, but he seemed to be at complete ease here!", "type": "review", "business_id": "OOOcDnF68bPvzWltI4Y0lg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "FbdB9KXyuvT8rC_zmqRSuQ", "review_id": "Cuq4w6MoidhEkSFzmghEPg", "stars": 4, "date": "2010-12-25", "text": "After finishing a round of golf at Wildfire, we came in for lunch since the restaurant had been closed for dinner since December 17th and was reopening on the 25th. I dined here several years ago for dinner and really enjoyed the dinning experience. \n\nMy order - the 8oz sirloin steak with garlic fries and an ice cold beer. My steak was cooked perfectly and the dipping sauce and garlic fries were yummy too! \n\nI love the decor of the place, it's part golf theme in the bar area but the dinning area is definitely Western elegance decorated. \n\nI'll surely return here in the future but next time it will be for dinner!", "type": "review", "business_id": "WwTK9w1qu4h28a63gFz25A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "laz_ok-lFKoTzQylQtwk3Q", "review_id": "xUejoCLtOE7I4C7Bz_Y_Ig", "stars": 1, "date": "2009-10-28", "text": "We had looked to buy a unit here & looked at several units, then decided to rent for a while first. We've been here almost a year & loved it at first, but have had horrible noise problems for about 8 months & management won't do a thing about it. The walls here are paper-thin & we our neighbor plays her music loudly at 3am almost every night. It's so loud that we had to move our bed to the other side of the room and run a humidifier all night just to try to block the noise, but that doesn't work. We've called security several times, but it never seems to help. The ceilings are also very thin & you can easiy hear any walking above you. Aesthetically this place looks great. The gym is great too, but the construction is horrible.", "type": "review", "business_id": "yle6HnTE7Ah9Omglor22bA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UMrusiywQ548OhlovQXyNA", "review_id": "8_Lg0Fau4JBuoVjm691A0w", "stars": 5, "date": "2012-09-01", "text": "Both of my girls have been enrolled in Marilyn's studio and it has been a wonderful experience for our family. The teachers are engaging and creative and as a result both of my girls love to dance and my eldest daughter who is now 11 has been dancing with them since the age of 3. No stage moms here, but rather a warm, friendly environment where girls can develop their dance abilities free from the high pressure nature of some studios. Our family looks forward to many more recitals to come. Thanks Marilyn Bostic Ballet Centre for helping develop our daughters' confidence and love for dance!", "type": "review", "business_id": "tbt86pwZAn_7lz0VrES9ZQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "PDRWbCZa92irf8mK5X_Kig", "review_id": "rX2wc4svZ8JW9Iqc-ZoE6A", "stars": 1, "date": "2012-02-23", "text": "I live down the street from Casey Moore's. I have been here a total of three times. The first time a group of us just ordered drinks, and the margaritas my friend and I ordered were so terrible that we sent them back. The second time I went with my husband and ordered a crab salad sandwich. Again, it was so awful I had to send it back. I am not a picky eater, nor have I been known to complain about food or service when dining out. There has only been one other restaurant I have ever been to where I sent food back. So, this place was already two for two. Alas, my husband begged me to go back once more. He was craving oysters and since this is an oyster house, I figured it wouldn't hurt to give them one more shot. It was last Thursday evening, and the place was hoppin'. This time, the food was decent. Not good, but decent enough where I may have given Casey Moore's a fourth chance had I been impressed with the service. But the service was HORRIBLE. Our waitress got us our drinks and didn't come back to take our orders for another 20 minutes. We sat there awkwardly waiting for her to stop by, and though she passed us quickly several times, she never even acknowledged us with a simple \"I'll be back with your orders.\" When she did arrive 20 minutes later, she asked if we were ready to order without even an apology. I am not kidding you when I say she acted like she wanted nothing to do with us. She was very monotone and never smiled with us. I would like to pass this off as her having a bad night, but when she went to her other tables (all full of men with drinks) she suddenly lit up, laughed, and had a blast with them. It was so awkward to the point that my husband asked if maybe we knew her and had upset her in some way in the past. But no. This was our first time meeting her. We were pleasant customers who didn't complain about the mediocre food or slow service. We were polite and left a good tip. We pride ourselves on being fun, engaging, and polite with our servers since we go out often. But let me tell you right now what makes me the most angry. We live so damn close to this place and would have loved to be regulars... It is such a shame that Casey Moore's has now given us three good reasons to never come back. And I can't find any information on their website of how to contact the manager about this, so I am left to rant here on Yelp, completely unsatisfied. Sigh...", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 6, "useful": 3, "cool": 4}, "user_id": "QcLcoQQgq0bEgx-lkh96qg", "review_id": "xqNBoDpFP7wEiftunn6HvQ", "stars": 5, "date": "2009-01-09", "text": "Chai is alive and well, and living at City Center at City North.\n\nI had been dating a gal name Starbucks for the past few years. She was a plain gal, generic if you will. She was dependable and available. I was feeling as if i needed more out of my relationship, as you can imagine. \nSo, at times, I would cheat on my gal with another gal named Coffee Bean. Coffee Bean was Kosher and a bit edgier, yet had a leaner list of qualities. \n\nI needed more out of my relationships. They say that when you're not looking for someone new, they appear. Well, that was the case with my new crush named Press. \n\nI had been to High Street for dinner Kona Grill, yet most of the other shops and restaurants were closed or not yet open for business at the time. \n\nI ventured back during daytime hours to give them another opportunity. I had heard about Press, so I was more than excited to give it a go. At this point I was still making caffeine a part of my diet, so i ordered something called a \"Dirty Chai.\" This was a Chai with espresso shots. Press uses a powdered Chai which, in my opinion, works better than the liquid or tea bag forms. I was also given the option to have my frothy delight in a ceramic cup. I opted for that. I felt like i was having the type of coffee house experience I had only just imagined. \n\nPress occupies a well appointed space, too. From the wood and granite, to the stained concrete floors, I felt as if i were in a European city, not a Phoenix strip mall. The free wi-fi is a major plus, in my opinion. \nPress goes as far as to have a \"dog friendly\" cart outside, in its ample outdoor seating area. \n\nI spoke with Steve, the owner of Press, at length. In talking, I asked how Press came to be, and he said that his wife had wanted to open a coffee shop one day. Well Steve, you have certainly exceeded her expectations, as well as the residents of the Greater Phoenix area. \n\nBy the way, Press serves sandwiches and soups, as well as an extensive list of wines. \n\nCheck it out, the staff will make you feel at home, or like you're on vacation in the cozy European city of your choice.", "type": "review", "business_id": "Kqn4J9NTgZdMAnV4HuYh5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DQURv5CKj7iRdiXyS_Eikw", "review_id": "fsv5cwqolkj4zneoJJPYhQ", "stars": 4, "date": "2012-12-19", "text": "I was excited to check out Sleepy Dog after seeing all of it's 4 and 5-star reviews, and finally made it in. I must say...both beers I enjoyed were delicious. Establishment itself is small but unique and modern, and their whole theme around dogs rocks. The only drawback, is they do not serve food....well, the whole reason I went here was to meet up with a friend for dinner and a beer or two. I was shocked at this. We ended up having a pizza delivered from a pizza place down the street, which went well with our beers. One great thing, was they have a ton of flat screens all around. One had a corny late 80's action movie playing which was very entertaining, and something you don't experience everyday. All in all, I did like Sleeping Dog, and would like to go back. I saw the popcorn maker as we left! Beer was just as good/better than the other breweries in the area.", "type": "review", "business_id": "c2WLZLpvNG2VLOfjjqKrkw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "B8w77rtCY8UWv-BKcOzCPQ", "review_id": "ONHPn93dc5FoqxXAriRy9w", "stars": 1, "date": "2012-08-01", "text": "I am a huge tea drinker, so when I found out about Teavana I was excited. I entered the store and an employee asked if I cared to try some tea. After sampling several different blends, I chose three to purchase. The employee asked if I wanted to get a large canister for a dollar more than the one I had picked. Not realizing this store sells tea by the ounce rather than per canister, I said \"sure.\" He chatted as he filled the containers, never mentioning the price, and once done took my debit card and rang me up. I didn't pay attention to the cost and when I looked at the receipt when I got home my heart nearly stopped. I spent $350 on tea. I returned it and they didn't give me too much trouble. Now I always check the total before handing my card over, and I won't go back. I feel like they totally swindled me.", "type": "review", "business_id": "wlftPhCaYn2j2LbcP8j3vg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OAES6IjJsW06P0rZdx3omA", "review_id": "mzefl5Hj5lwBTNJicvLmVQ", "stars": 4, "date": "2008-07-16", "text": "This place, to me, is just like Aloha Eats in Chicago. The menu offers pretty much the same options as Aloha Eats and is also about the same price. My brother recommended this place because my mom was craving some Hawaiian BBQ, and L &L hit the spot. L & L is located in a row of fast food places - think mall food court within a shopping center. What -- you can't decide what to eat and are in the area? Uh, no problem. \n\nMy mom and I shared the BBQ mix plate. I wasn't too crazy about the chicken, the beef was pretty tender and tasty. I was a little disappointed to see that the mix plate only offers one slice (?) of the short rib, which my mom loved. My dad enjoyed his Atkins version of the BBQ beef, but he loved the mahi mahi mini plate he had on our second visit to L & L. Yeah, I said second visit .... second visit in 4 days. It's pretty much on our \"to-eat\" places the next time we are Phoenix.", "type": "review", "business_id": "MhH1kl9faN3RvIO4ptumTg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "7jWmd57QoJnq2q4QyvVS2Q", "review_id": "FVs5XkP7kbmL22l6S03l2Q", "stars": 5, "date": "2012-06-07", "text": "Umm is it possible to give MORE than 5 stars!??! My girlfriend believes, Duane is AMAZING, and hands DOWN the best handyman ever. We stumbled upon him and had him come to the house to fix a ceiling fan that had fallen out of the ceiling completely. Yikes... His charge was reasonable for coming by about $40ish and he really goes above and beyond especially with quality and letting you know the facts. \n\nThis was a house full of girls and often times when they are clueless they try to pull a fast one, NOPE, not Duane. He is honest, and very caring. When he was leaving he noticed the door had a stick to it and brought back something from his vehicle and fixed it for free!\n\nMost recently, my girlfriend called him at nearly 9pm to tell him her disposal stopped working. He immediately remembered her as the house with the three dental students and exactly where she lived (even though he had last been there a year ago) and walked her through how to fix it over the phone, for free. \n\nThis guy really is the epitome of what everyone wants and needs in a handyman! Call him for ANY home issue you may need help with!", "type": "review", "business_id": "vDYERdCM8Aj-MMJB9yW3-w"} +{"votes": {"funny": 4, "useful": 8, "cool": 6}, "user_id": "mX3qMBnEhOJ6R80vfjQMYg", "review_id": "09lyA2ZEz2QH8R1ygE3TaA", "stars": 5, "date": "2011-10-22", "text": "I walked here in the heat and was immediately greeted with an ice cold beer. For free! It was a delicious IPA and the staff couldn't have been friendlier. There were even snacks. I also had another sample of their Camelback ale. Both were heaping samples, almost a full cup. The tour was fun and informative. The co owner George even gave me and my boyfriend a ride to the lightrail stop!! We didn't bring our bikes. So awesome. Definitely recommend. Lovely way to spend a Saturday afternoon.", "type": "review", "business_id": "edcGkJ6qPs3lUnSz9pqoGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y7Jxglm9zeHipx8zrhULiA", "review_id": "-0fImqvIf7zAVacU1BOg8g", "stars": 5, "date": "2012-06-04", "text": "One of my favorite places to take my 3 and 4 year old. Only drawback is it gets really crowded- especially with the school groups so we call early to see how many school groups there are and then we decide if its worth it or not. They sometimes host 500 kids at this museum and thats just not fun. Other than that this place is amazing.", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "3oeXOq5ul7_jE-cdZl4Cjw", "stars": 5, "date": "2010-09-26", "text": "I have stopped into Copper Star on previous occasions, during street festivals, but today was the first time I came to sit and study. Man, am I a fan of this place. I am lucky that I live in a location where I have a multitude of options (Lux, Lola, Hob Nobs, SBUX, etc) but I have to say I really liked the vibe here. The music wasn't loud, the people relatively quiet and chill, and I could actually focus on what I was doing without getting too distracted by everything around me. I liked that while on a busy street (7th Ave), the entrance and windows actually face the side street it is on. That added to the peace and quiet of it. Employees were nice, free wi-fi (internet key is needed but on a sign in the shop), and I enjoyed my small, mint mocha with a chocolate chip cookie (both just under $7). I was definitely eyeing the cupcakes in the bakery window but my tummy only had enough room for a cookie (which was soooo good if I might say). They are open until 9pm on Sundays which is pretty cool. I have yet to use their drive through for coffee, but they are open pretty early which is nice competition to SBUX. There is also outdoor seating which will be so nice when it starts to cool off....you can give your dog a bath at Wag-n-Wash next door and then sit outside with them while you enjoy some local coffee.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "dnzPwTR7iaGvgQ114tJvvg", "stars": 5, "date": "2011-08-31", "text": "Makes the job of shipping packages a lot less miserable.\nI can purchase any supplies needed, heck--they will even fill out the forms!\nI come bring all my packages here, ship them whatever method I want and get it all done without stressing.\n\nWhile I hate dealing with shipping things... this place makes it even a bit fun with their service with a smile and fun conversation added in.", "type": "review", "business_id": "1U__JyhW9eiZ2z4djki1WA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "xszBdzAT78I9g22A4hivMA", "stars": 4, "date": "2009-05-18", "text": "I love this quiet location right of I-10. Their selection is exactly as reported online, and the online orders I placed are always ready for pickup when they are supposed to be. Parking is wide open, service is good, and the area isn't overpopulated yet so it's always relatively quiet here.", "type": "review", "business_id": "f0y7I6oNPKdKNW4eQyZb3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GnTGApuhE3TBn8Lt05RfIQ", "review_id": "eViJ6w3rPo6SYfxnl3oy0g", "stars": 4, "date": "2011-12-14", "text": "Met for a business meeting, good happy hour menu, we had the flatbread which was great to share over our meeting with some of their house bread, which was excellent with the pesto.\n\nThe well whiskey was poured nicely and our server was nice.\n\nGreat for happy hour biz meetings on the waterfront, but only 3 tables in the bar, so you better get there early.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "X1TKtLkA02fVqKjyptwa4A", "review_id": "Us61PFnfQTMrX-xR3dd2jw", "stars": 1, "date": "2011-12-22", "text": "We came here for dinner for me and reverse happy hour for my wife, we ordered our appetizers and after finishing them and looking over the menu for a few minutes we were ready to jump into the overpriced entrees. We were then informed that we couldn't order dinner. Maybe when they see someone coming in and telling them they are...here for dinner...they might give them a heads up that the kitchen Is closing so we can order our meals and not be told five minutes after it did close..fourth time we've given this place a and got crappy service. Bartender got a buck tip and we had to go find another restaurant for dinner, Needless to say we won't be giving them another chance. Not good Gordon B. Not good.", "type": "review", "business_id": "xmtKVO7C7KYVqMBe2eQq3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7CkkiLWuqmeVWQE-pLaxIQ", "review_id": "KAMI42qFm1LJE404gO2Exg", "stars": 5, "date": "2012-10-16", "text": "I came in for a gift for my boyfriend's pleasure. The lady working there answered my questions thoroughly and professionally. Any shyness or awkwardness I might have felt disappeared. I was prepared to spend more for a different product but was steered to a better choice by this lady. Turns out, my boyfriend was very happy with his gift. This was around Halloween so there were a lot more items than usual like costumes, pasties... fun things. I can wholeheartedly recommend this Fascinations!", "type": "review", "business_id": "ELteSrWsLsF0S24gE3VDvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "glRhDPETR9sI7-lvGzjPPA", "review_id": "kc9RPU_MYMVKK8r_rbfuoQ", "stars": 5, "date": "2010-07-14", "text": "Yes, this place can be a bit pricey, however if you catch them at happy hour or on \"girls night out\" it can be very affordable. The atmosphere and the \"specialness\" of the melting pot is unbeatable. I have been there for intimate occasions, and family birthdays. Food is wonder, especially the cheese! The menu has changed a bit over the years, and there are some oldies I would love to see return (the mushroom salad), but there is nothing that beats this place for any special occasion", "type": "review", "business_id": "pQAIM21Yw4eNdbha2Rxkcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vM58jCpkDnjZ_Kn5zAkMhQ", "review_id": "QoM1UkjYKq9U8c_4lCUKaA", "stars": 4, "date": "2011-02-28", "text": "By FAR one of my favorite places to have breakfast. The intimate setting gives off the \"mom and pop\" breakfast joint feel you might find in a beach town. The menu accomodates for the health-conscious but breakfast-loving eater. The only reason why I knocked it down a point is the wait. Unless you go during the weekdays or early morning on the weekends, expect to wait upwards to 45 minutes. My suggestions... their egg white omelets and for those coffee lovers, you HAVE to try the BC coffee!", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_mXOwLl-ZntFB875PMHnsg", "review_id": "E7Xh3l0VZmyajWDZdBW6MQ", "stars": 4, "date": "2012-10-15", "text": "Great BBQ, although not a huge fan of the cafeteria style ordering. I have been twice, I got the brisket sandwich one time and ribs the next. Both were delicious. I added bbq sauce to the ribs because I thought they needed it. Try the homemade root beer at least once, too. YUM. We got there just in time ( a bit before 6 on a Friday night) as we were leaving the line was 3x as long...out the door and around the corner. Oh FYI...for sides I got the beans (loved them) and my kids said the macaroni and cheese was good. Dad wasn't impressed with the coleslaw.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Gcq-9mRx7lWkoHD4eo7sXg", "review_id": "QDEQysAG9cn2B_jOKho_zg", "stars": 3, "date": "2009-12-30", "text": "I ordered the gyro.\n\nTHE GOOD:\n1. Well spiced gyro meats, but a tad too greasy for my tastes. You also get a reasonable portion, which is always appreciated.\n2. The pita bread was rather tasty as well. Slightly chewy, though.\n3. Not too expensive.\n4. Friendly owners.\n\nTHE BAD:\n1. A little piece of tomato and a few paper-thin pieces of onions. If you love onions in your gyro, ask for some extra onions on the side.\n2. Again, it's a bit greasy. Even for a gyro.\n\nTHE SO-SO:\n1. The tzatziki isn't that flavorful, but I enjoy a definite garlicky presence to my tzatzik'. It was decent, but afterwards I wasn't lapping up every last bit from the little plastic container like a hungry dog.\n\nAll in all, I'll probably return if I'm in the area and crave a gyro.", "type": "review", "business_id": "mLH4DEWVcYVFHwsVNyb-uw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "L0t8ESj83JaYTtvq5Si2ew", "review_id": "Q1V7rSNBY9WWZq0F_xIj-Q", "stars": 2, "date": "2012-11-08", "text": "Over priced. Mediocre food. Service so so. We won't be returning.", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5cA75LSHU3YH8qx1wK8T9Q", "review_id": "NErfGicLetxP66ygY-38Ag", "stars": 5, "date": "2012-04-13", "text": "A must for us when we visit Scottsdale. Whole family finds what they like and the burgers are fantastic. Very well priced and easy to bring the family, have some wings, burgers a few beers and not break the piggy bank.", "type": "review", "business_id": "hGQsnkndreW7b26XC2HVRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ykTUd9nIYDkQYhpntgcTVw", "review_id": "9cDLzeuwYnreu03PE8rKsA", "stars": 5, "date": "2011-06-15", "text": "Love this place! I think this is probably the best Chinese buffet out here! They serve quality gourmet food. And they have a full bar too. Place is clean and service is great. Would go back anytime!", "type": "review", "business_id": "-Ogv7rpcgUHkFaSy3vD8Sw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "AV3qn49AJVn90B8I72ThDQ", "review_id": "mp4ADT1cYc9y6MGDdMR7-A", "stars": 5, "date": "2011-03-02", "text": "Great service, good beer, AMAZING burger and yummy sweet potato fries. This place is an awesome bar food venue with a cool interior design, not too pricey or pretentious.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hfxk47CObzTfaAXJ-4lMig", "review_id": "Wt5kA0qywDF3H3dOlCyznQ", "stars": 2, "date": "2012-08-14", "text": "Heed the negative reviews.\n\nThis restaurant can be summed up in two words: mediocre & overpriced. I wish I had gone with my instinct and given more weight to the negative reviews. The positive reviews of the spring rolls lured me in, however, much to my disappointment. One spring roll is $4.50, although we fortunately went for the happy hour and only paid $3.50, which was still too much, in my opinion. They were stuffed mostly with lettuce and had little to no flavor., and we tried 3 different kinds. The peanut sauce was overly thick and cloyingly sweet and added nothing positive to the rolls.\n\nI had the Lemon Grass Chicken for dinner. The chicken was overcooked and dry and absolutely flavorless and the noodles were overly sweet. I couldn't detect even a hint of the lemon grass. The presentation was unappetizing, with the overcooked chicken just slapped on to the side of the noodles.\n\nI'm not going to speak for my companions as they were there at my invitation and probably didn't want to be negative, but neither of them made any positive comments about their food. \n\nAs I said, pay attention to the negative reviews. If you like bland, overpriced food, you may like this place, but otherwise I can't see anyone going back for more.", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "N8Ts_GPpK3lHsTHBnsEdHA", "review_id": "YqUmUYgQ7_L4f8aUpTc3Eg", "stars": 4, "date": "2010-01-21", "text": "I am in town visiting and stopped at Shea for lunch. I actually had a breakfast sandwich/bagel even though it was 1pm (they said you can have breakfast anytime!). \nThe service was great and it was very cute inside. There are tables and they have free wi-fi so it would be a great place to meet clients for a casual meeting.\nThey also have a drive-thru if you want to grab a quick cup of coffee.", "type": "review", "business_id": "cdr4GB7ygDahg009p2nn5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xfv8_MeZi8Dev5hx5-ISwQ", "review_id": "Dmr1b9eAYoRO2_qxFse12Q", "stars": 5, "date": "2010-08-03", "text": "I can't believe I haven't yelped about the place yet. Several months (maybe over a year?) ago my husband read a newspaper article about the Clover coffee maker and the one place in town that had managed to procure one. I was skeptical (as is my nature). It can't be that much better right? You're just saying it's amazing because you want to talk about the new hot coffee shop you discovered, right? Well, maybe. But I love this place. And I don't think it has a whole lot to do with the Clover. They roast their own beans and they roast them way differently than that other ginormous coffee chain - all a light or medium roast. Never bitter, never oily, never yucky. The coffee they make there is, obviously, the best. But I send my husband in every week now to buy a pound of beans so that I can approximate the same coffee at home. Add an edgy (though sometimes intimidating) seating area, great local art (which we bought off the wall), and smiley service...I'm sold. Can't wait to try out the downtown location.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DPVfcERMYkzf10rd_ySr9Q", "review_id": "W2ni9HfUWDDELNjp0UPrGw", "stars": 5, "date": "2012-02-07", "text": "Heard about this restaurant from a friend and I was amaze by the food and their friendly service. I tried the chicken adobo and it was amazing! The chicken came apart with no effort and it had a great honey glazed taste. The portions were a good amount for their low prices. I couldn't get enough of their amazing dessert!", "type": "review", "business_id": "iJPG0GPcIirjOMlmzZWxBQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "vzAvkSRois2VMqj_AT7xVA", "review_id": "Zgk-UaN0x1_iVDUGaEMESQ", "stars": 5, "date": "2011-12-08", "text": "Had to update because we've now tried the pizza! For all the times we have visited we've never tried a pizza (too many other really good options to choose I guess...)\n\nWe ordered the Italian Classic (veggies & meat). We ordered it a little well done/crispy and were not disappointed! It was hot, fresh and cooked perfectly! \n\nService was great as usual even though they were completely SLAMMED with customers the day before Thanksgiving filing numerous growlers of their pumpkin beer which sold out in less than record time!\n\nWe were there again last weekend for the football games and made it in time to order our favorite breakfast items - eggs benedict and the braised pork dish with beans, potatoes, two eggs and fresh warm tortillas. It was fantastic! This dish, just like many others (possibly ALL others) is plenty for 2 to share. \n\nService was exceptional and the crowd fun and rowdy rooting for their teams and AZ won - so there were a lot of happy customers that day!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "3YQTmzhSAJqynPthcA3WNA", "stars": 5, "date": "2010-08-06", "text": "A big shout out to Mike, the stupendously stellar bar manager. I will be back to discuss the history of Vodka.\n\nThank you to restaurant GM, Anibal, who stopped by to see us not once, but twice. Enjoyed the education regarding the secretive life of truffles. \n\nAaron, the fantastically knowledgeable Sommelier, had me paired with excellent wine suggestions with only a few hints of my picky palette. \n\nAppreciated the Manger of Stone Rose, Sam, coming all the way over from the other side to dropped in and sat with us to chat about upcoming events.\n\nCan't wait to go back to try out there new bar bite menu in 2 weeks, and take advantage of the locals' secret 1/2 off bottle night on Tuesdays from there amazingly huge book of wines to choose from. \n\nThanks again everyone: you made a potentially disastrous date night from visiting an establishment previous which (to say the least) did not go well, into a very enjoyable and fun evening.", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "OPStKHloEOVxcBtFgkzh2A", "review_id": "Wyp7Ob0fZaCDgDVhWhlKQg", "stars": 1, "date": "2012-09-22", "text": "Disclaimer: I am a Thai person and a Thai food connoisseur. \n\nThis is supremely average Thai food and overpriced as heck to take advantage of White People. Sorry to be blunt but that's all it is. $18 dishes that are $8 at a real Thai restaurant. The spring rolls were very bland and came with only a tiny bit of sauce for dipping. They should also include on the table a selection of fish sauces and spices to add to your meals and appetizers. They dont have.\n\nIf you like spicy, skip it for sure. Again this is what we would call Tourist Thai back in Thailand. \n\nTiny servings.\n\nThe good. Friendly wait staff.\n\nIf authentic Thai is what you're looking for try any of these: Palees Crown, Tum Nak Thai or Royal Thai Grill.", "type": "review", "business_id": "mPGgxatANSPw9KbMluhXkA"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "ka0Zl3em2LMYX48FvJp33A", "review_id": "7DgPbW-s9aSBLqy73Ami-w", "stars": 2, "date": "2009-05-19", "text": "It pains me to write a negative review of PJ, but I just have to ... \nI was so excited for the new location to open because my husband and I go to the Indian School location any time we're down that way, and this is way closer to home. We were impressed by all the room up there! Not cramped like the other locations. Unfortunately, the food was not nearly as good! Both of our meals were not nearly as good as we've had before (at the other locations). \nAlso, our service was terrible. We asked another server if ours was new, but nope: She'd bee there since it opened a couple months ago. She forgot jalapeno our hummus appetizer (to their credit, they brought it out after our meal and gave it to us for free, but it was bland and not that good). She charged me for a side of tahini, even though it was supposed to come with my veggie burger, and she never refilled our drinks. \nOverall, this was a very disappointing PJ experience. I'll try again one more time, but if it doesn't improve, I won't be going back to this North Valley location. :(", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "JOG-4G4e8ae3lx_szHtR8g", "review_id": "K2O_4ArHi7oO5S4MpZJd7Q", "stars": 5, "date": "2010-07-02", "text": "I'm very new to PHX. I ended up talking to a cop at the airport who told me about Thursday Rockabilly nights at the Blooze. I had to check it out. My friend and I walked in and were instantly comfortable, excited, and impressed. The AC was pumping, beer was cold, the music; rockin, and the crowd; refreshing. The bathroom was great! \nThey don't have food there but they will let you bring in whatever you want. We went there pretty early, around 7:30ish. Unfortunately, because of ridiculously early work on Fri AM, I had to leave once it was starting to get really packed and lively around 10:30/11. I am so glad that I finally checked the place out though. I will definitely frequent The Blooze as often as I can.", "type": "review", "business_id": "f_leeIRar8uNCkk5sAmHRQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "c0QRCVqGQdRVPCFNGV_YAQ", "review_id": "vY9uNDrKcTFKlFrQULrcCg", "stars": 2, "date": "2011-04-21", "text": "The queso is ridiculously good... seriously. And the homemade tortillas are also outstanding.\n\nAside from that, everything is average at best. As mentioned by others, this is Americanized Mexican cuisine. This is not autentica comida Mexicana, mi amigos!\n\nWe had been once before and thoroughly enjoyed the food. Hence making it a point to visit again on our most recent trip to Arizona.\n\nWe started with the chips and salsa set for the table - delicious. I ordered a bunch of queso for the table, and I started with a Tortilla Soup. It was hilariously underwhelming. I made the joke that it was kitchen scraps, and it looked the part. It was light tomato broth with a bunch of vegetables, a gob of cheese and a small corn on the cob on top. Yes, a small corn on the cob is on top. It was lousy and I wouldn't recommend it.\n\nWe ordered a pound of chicken fajitas and a half pound of vegetable ones (thanks to the vegetarian fiancee). It went surprisingly far for five of us... but the veggies weren't grilled much, which is sad because they were otherwise delicious. Also, the chicken fajitas only had one piece of green pepper and one of red on top. It should be lush with peppers and onions that have been grilled or possibly even caramelized (the onions).\n\nDaniel E. wrote in his review the same concern, that there should be \"more than a pile of onions,\" that he expected at least some green, red or yellow peppers. The fajitas were good and quite filling. The accompaniments were decent - cheese, lettuce, sour cream and the like. Nothing fancy, certainly no frills.\n\nSo much potential, but it fails on almost everything. It's a true shame. This place needs to be on Restaurant Impossible with Robert Irvine... badly...\n\nThis time around... the service was really lousy. And my fiancee found a bug deep down in her water. Very disappointing. The waitress first replied confirming what size bug it was, and then explained it and claimed that \"we're not dirty, it's just the food smell.\" Then she apologized and walked away. We think she deducted a soda from the final bill... but nothing else. A bug!\n\nAnd the entry foyer smelled like a high school locker room... it was foul on the way in and out.\n\nSad to say that we may likely not return in the future. I'm not sure if our family and friends in the greater Phoenix area will either after the bug incident.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "Z7sg07ZVZBzuKPZstlX0vg", "review_id": "Jc-Edm1A-bhgjmNTDzRVOQ", "stars": 5, "date": "2008-03-22", "text": "Finally, well-qualified, well-established mechanics that don't talk to me like I'm a dumb, car-ignorant girl - even if I am. I was sitting at a desk establishing an estimate for my Honda within 20 minutes of calling them. The receptionist was polite and efficient, but truly the best part was their interactive, transparent estimate process. I was able to view the screen as my estimator drag and dropped the parts he suspected I would need into a spreadsheet. Then, I saw him calculate the labor hours - something I had NEVER been privy to before. Tracy's Auto Body was affordable, very quick and went above and beyond - alerting me to other pieces that were loose and fixing them for free. I highly recommended their services. They have a perfect record since the mid-1980s with BBB and with good reason.", "type": "review", "business_id": "yuLBsnvW2iMHPb8uit6TEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SMmsPueqnfVcZICvqBPsaA", "review_id": "Yd0g9ZKGT1aESnCSku2CDA", "stars": 5, "date": "2010-08-09", "text": "So I was like a lemming trying this after Man vs Food when recently visiting Phoenix. But...... the kid is right.... everything on the Del Rey torta works together. And it is HUGE. And it's great too. Wonderfully constructed, just enough of everything and not too much of anything. I also had the watermelon juice (interesting, huh)? One strange thing.... first Mexican restaurant I've ever been in that didn't have chips and salsa. Only real downside is that the service is a bit slow. But they're slammed and deservedly so.", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Oh6Dd5mQ9A9vBKVvgbl1xQ", "review_id": "3IntE4NdRd4caAgtmwnKSQ", "stars": 4, "date": "2010-08-12", "text": "Every sports town should have a bar like this (just outside the arena). It's the first stop for conventioneers wandering into town (for a drink, post show). This ain't the place if you're looking for a quiet spot.. However, if you're looking for a lively and well furnished sports-bar, with attractive waitstaff, this place is great. The back room has huge leather booths. The outdoor seating is nice too--it can get a little wild after the events let loose.", "type": "review", "business_id": "45puCRQ6Vh_IIAy7kkfFDQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "PR1RjMIy5ramcfn--tvLCQ", "review_id": "42czvmiCtceWfSJ_G87RYQ", "stars": 5, "date": "2008-01-21", "text": "are you joking? Where else can you get the best salami, ham, any cold cuts anywhere? I just moved here 6 months ago and have been searching for a place like this. Their meats are fantastic. I discovered this place after driving by it so many times. thought I'd take a chance. Location is awful. but worth the trip.", "type": "review", "business_id": "DE8UVNCCpOE0vTAbGaMoeQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "LdJzVbO6bYViUTamrvjkwQ", "review_id": "4q_LkgQ2lev1sLsUoxAnwg", "stars": 4, "date": "2010-05-13", "text": "Two trends that need to end. ASAP. Really, ahorita:\n\n1. Bacon mixed with everything under the sun. Bacon doesn't need an accompaniment, it's amazing all on its own. No more bacon donuts. Please, for the love.\n\n2. Overuse of truffle oil. Dumping truffle oil on a dish does not make it gourmet. Please stop. For real.\n\nCulinary Dropout is guilty of succumbing to these two trends. That being said, the service and atmosphere make it forgivable. Our server and the manager were hyper aware of how long we'd been waiting. Even though it was not that big of a deal to us, it was nice to know they cared.\n\nThey mean well when it comes to cocktails, but they were a little lightweight for me, relying heavily on simple syrup and mixers to dumb down the alcohol. Their beer list made up for it, though. I've never had a stout in a can, but they managed to find the brewery that pulled it off.\n\nYeah, my ricotta gnocchi was drenched in truffle oil, but the sausage and mushrooms made it actually a pretty good dish. And the beets were fresh and delicious.\n\nI liked it, I'm not gonna lie, but I wish they'd stop falling prey to the trends and branch out a bit. Culinary Dropout, you're better than that.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "X01EFxZ1-nNAXh5W5puMww", "review_id": "joyFEisyRn_pldQ4T09E9w", "stars": 5, "date": "2007-03-23", "text": "Excellent place. I have eaten here several times and the place is always busy. The sushi is good and you can order things that are not on the menu if you know what you want. I have a friend who works for Intel with a lot of Asians and they frequent this place a lot, which is how I came to discover this place. \n\nThe prices are good and are much cheaper than the RA or Kona when you take into account how big the portions are.", "type": "review", "business_id": "0vzZ_Bcb02rJljeMU9XkBw"} +{"votes": {"funny": 4, "useful": 7, "cool": 6}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "thXcPe-DmVV-eUO-seEa5g", "stars": 4, "date": "2011-08-03", "text": "At the recommendation of a friend, I met a client here for lunch. My client was arriving from out of town and this joint is very conveniently located near the airport. I guess once upon a time, it was an actual stockyard. Now, it's an old school restaurant that has a lot of character.\n\nAfter browsing the menu, I opted for a BBQ Pulled Pork Sandwich & Fries, $10. To wash it down, I ordered Iced Tea.\n\nThe Pork Sandwich was awesome, very tasty and a large portion. You will get full. The Fries were tasty as well.\n\nMy client was impressed with the restaurant and put it on his \"best place near the airport to have a lunch meeting\" list....+++\n\nThe service was great and we were able to have a good lunch meeting that left us both satisfied.\n\nReturn Factor - 100%", "type": "review", "business_id": "7U8TYNW4Mvx6m3zexsO0sg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Bhg8lIhB2PvsuXbjXK0vYA", "review_id": "nuy79SC7bynr-dyGwXTopQ", "stars": 2, "date": "2009-02-13", "text": "I think I would have liked the food if I actually ate it. Was seated quickly, which was nice, given a great table (booked on open table so was surprised). The salads came quickly, but immediately noticed my lettuce wasn't washed, but no waiter to be found to send back. \n\nA while later, after I noticed other tables getting served that were seated after us, the waiter popped bye and said that our food should be coming up shortly. A while later, the food arrived, and it looked good, but it was way cold, had been sitting for a while, which was a shame. All the food was sent back and we were given our bill for our drinks. Whaaaatttttt??? They wasted an hour of my time to serve me cold food only to drop a check for my drinks? I wouldn't have had the second glass of wine if the food had come in a reasonable amount of time. \n\nI would go to Houston's, better food and a quality wait staff / management.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "guT5ZW60rtlnsU15-DYoXw", "review_id": "ilJkWNsfa5IeY68_YXcC0A", "stars": 4, "date": "2009-01-16", "text": "modified is a great place to see a show. it almost reminds me of basement shows back home- intimate, smelly, people utterly engrossed in the music, all ages. it's good stuff.", "type": "review", "business_id": "YRJKTPc7Tkz1cbjGHmOHuw"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "6EK_J2U8SoE9xT8NZ67Exg", "stars": 4, "date": "2011-03-08", "text": "Still love their product, but their online ordering process just doesn't work. First time, my order was sent to the wrong market. Second time, I was shorted a package of chops. I checked the bag before I left the market, so it was only a minor inconvenience. Third time I ordered bacon, which was listed as available on the web site, and then contacted and advised it was not and may not be available for a few weeks. Since I paid upon ordering, I had to go through the hassle of waiting for a refund.\n\nI've also noticed inconsistency in portion size which is a problem considering you pay by product, rather than pound. Boneless chops should be roughly 6-oz each, yet I've received 4-oz chops at times, resulting in 50% less product for the same price. Not a deal breaker for me, but something to consider.\n\nI continue to purchase from these guys regularly, but no longer try to order ahead. And I do wish they would have bacon available more often!", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lMS9mDMkdKZQ79NBot8srQ", "review_id": "FcIL0kPumNkm-ks908FX8A", "stars": 5, "date": "2011-04-26", "text": "TJ was there for me when my water heater broke and started flooding my garage. He walked me through fixing it over the phone until he was able to send some help to my house. Very grateful, and I will continue referring!", "type": "review", "business_id": "Y_TtMiH_nx33FH4C48XhsA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GCOTDDAIrRIatqjxr642rQ", "review_id": "G5I9rLAwWb5cneIgY_Vo9w", "stars": 3, "date": "2009-10-03", "text": "We had fun but it is definately more for kids 5 and younger . \nThe pretend store was fun and we all had a blast playing in the noodles.", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KS5F2qrNoAdVrzpAU59RrQ", "review_id": "GPh4MiT3be_G6YnKN5wW7Q", "stars": 5, "date": "2012-08-18", "text": "\"Gosh-Awful-Gooey Banana Split: fresh banana split lengthwise, Turkish coffee ice cream blanketed with caramel sauce, red raspberry sorbet smothered in marshmallow sauce with delicious whip and a juicy maraschino cherry atop.\" Heaven!!", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "5AuHVpG7hxl1-OqDInP6fw", "review_id": "uhusdFKIr0WetwXpgWaoow", "stars": 4, "date": "2010-06-28", "text": "Valle is all about the ritas happy hour, chips and bean dip and an awesome patio, if you are looking to eat awesome pollo funditos well they have that too...", "type": "review", "business_id": "NYIyTj2AZJpAo7XIM-Z7lw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vipSiSxRH0fIo9qbfjsHpg", "review_id": "dz1HrU8KNaPb4BfCDO3BLg", "stars": 4, "date": "2010-05-10", "text": "This is one of the only places in Phoenix that carries legitimate book binding supplies like book cloth and all sorts of decorative binding papers (unlike the decorative kind for scrapbooking). I love that I can order online, and then they will call me when my order is ready and I can just head on down to Tempe to pick my stuff up.\n\nWhile I haven't taken any of their classes, they look pretty awesome. I have had experiences with old letter press techniques, and this place offers classes in it. I think I'm going to have to sign up!", "type": "review", "business_id": "v1vi2ph9YLAXGqV2WTuN7Q"} +{"votes": {"funny": 4, "useful": 5, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "gzeVndmm4XH3pUxKlVr7mA", "stars": 4, "date": "2008-08-26", "text": "I've been fortunate enough to stay at several Ritz-Carlton hotels around the US... San Francisco, Amelia Island, Atlanta, Buckhead, and Lake Oconee are the ones that stand out. I've also been to events at many of these locations and more and I've always been blown away by how beautiful these hotels are and how incredible the service has been. I agree with some of the other reviewers that the Ritz sets a standard for other hotels, and they are known for luxury!\n\nWhen I recently spent the night at the Ritz-Carlton Phoenix, I was not as blown away... the room was just ok - nothing so special, and I don't have any major complaints but I guess with my past experience and the reputation of the Ritz in general, I expected more. (Don't hate me, Ritz-Carlton; I'm still a fan, but maybe not so much of the Phoenix location compared to the rest).\n\nI will say that we did get a discounted room rate because I was being honored as one of AZ's Finest and that's where the black-tie gala took place... and it was quite the event as well - we had a blast! \n\nI took advantage of the fitness room for a quick workout after we checked in, and it was one of the nicer hotel fitness rooms I've seen in awhile. Unfortunately, the pool was closed for renovation during our stay, so my BF could not swim on site, but luckily they shuttled him over to the Biltmore to swim instead.\n\nSo, overall, it was a pleasant experience - I just can't bring myself to give 5 stars like I would at any of the other Ritz-Carltons I've been to... but stay tuned for my review of the Ritz-Carlton, Bachelor Gulch (which is where I'll be heading in December for a wedding) - that one looks like it may be the best one I've seen yet!", "type": "review", "business_id": "HLQUH1VAw4KbSV-IhxOPEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hq6Imcpu0tNIyiQF1kZw4g", "review_id": "8f2V7SM-umCFT3klETGJ_Q", "stars": 4, "date": "2011-12-29", "text": "This place is kind of foreboding to enter... it just looks like a dimly lit house. But I had heard good things and went a few nights ago and it was adorable! It's like a bar in your living room. They have endless selections of beer and it's a fun environment. I definitely want to go back when there is a show going on as well. My only complaint is that there's no beer on tap!", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bEd0_FyH-J1EtRpKefHSUg", "review_id": "2wdJKInKmwKgdyuzlhbxqQ", "stars": 4, "date": "2012-01-19", "text": "How this place has less than four stars is a mystery to me. I have been 5 times and have taken out of towners here 2 out of the 5 and they all left saying it was yummy too. The El Presidential Especiale is a MUST - i order 86 the onions and add machaca/shredded beef. They are a simple yummy combination with their rice and beans. This is just straight up classic mexican food - not for the snobby. So if you want a more classy joint that's less authentic - hit up Z'Tejas cause this place is not for you. The hot salsa in the ketchup bottles is always a sign of a great mexican joint (and it's hot AND tastey - a combination not many get correct). I will say their chips can be a little on the less crunchy, more oily side but they are more than happy to replace that with some that are a little more to your liking. And their margs are delish as well. This place deserves a 4 because of consistency, friendly and accomodating atmosphere and just downright solid take on enchiladas - red sauce is spot on. Thanks Tee Pee for being our go-to for Mexican food in the Valley of the Sun!", "type": "review", "business_id": "soiGohHtWOltGeomkSxzEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "7vcCMGQHuDmNw3qIjj10Dg", "review_id": "z8Lce5iaLK7W4KyYVJRVWg", "stars": 5, "date": "2010-05-13", "text": "\"Wait, we're in Arizona?\"\n\" No seriously, this is Arizona?\"\nI had to keep blinking cause I could've sworn we were still in the East Bay last Friday night as we waited for our faux meat meals to arrive at our table. \n\nMy hubster and I were visiting his mom for the first time since she had moved to Phoenix and admittedly, neither of us were too stoked on the visit. We totally wanted to see her but as for Phoenix?? Anyways... she knew what she was doing by taking us straight from the airport to Green. \n\nI LOVED EVERYTHING. From our appetizers (hummus + fries) to my entree- I had the chicken curry noodle bowl, to my beverage- a suicide mixture of their house green tea and house limeade (YUM) to my soy ice cream treat (I had the mint with paul newman oreos!) which I scarfed down after being totally stuffed. This place is ridiculously good. And reasonably priced. And fresh. And not stuffy or pretentious in anyway. Basically, this would be our new steady if we lived anywhere near... Tempe. Which fortunately we do not, but I have to say, you Arizonians sure are stoked to have a place like Green.\nAnd now we have a reason to look forward to returning to AZ!! :D", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pT5kaEJow8YG4G0avzLq5Q", "review_id": "Lz2431qwqC5VnkwsrkvKVg", "stars": 4, "date": "2012-03-31", "text": "This is a super cute restaurant with a simple yet delicious menu. They stick to basics which I love. They also have a vintage items that you can admire and purchase. Its a great place if you want a quick, simple, cheap yet delicious meal. Their shakes are amazing as well as their potato salad. YUM! If you are in the area, check it our for sure!", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "WJhAKYIAKyrdFnTnjuM44Q", "review_id": "hfmMPkOq-c4j3S7Q2owuHg", "stars": 5, "date": "2012-08-12", "text": "My six year old daughter and I enjoyed a fun and memorable date night at Melting Pot last night. It was her first exposure to fondue and we had a blast eating great food and talking about her first three days of first grade. We starteed with a fantastic spinach and artichoke fontina & butterk\u00e4se cheese fondue, then shared the \"Land & Sea\" (filet mignon, chicken and shrimp). Of course, when the dessert menu came out so did a bit more enthusiasm. She had never dreamed of seeing a pot of melted chocolate before. The looks on her face were priceless. She chose the \"Cookies 'n Cream Marshmallow Dream\" and it was crazy good. I'm looking forward to taking the whole family and to making this a more common stop on our date night calendar.", "type": "review", "business_id": "pQAIM21Yw4eNdbha2Rxkcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ch6CdTR2IVaVANr-RglMOg", "review_id": "rfU80jENO-izDExO_eBfaw", "stars": 5, "date": "2012-04-05", "text": "Have eaten here several times. Always amazing.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uQeOiwIoIn7sypJJm27ZjQ", "review_id": "pZcV3LEKEftdFpfRzDFgsg", "stars": 5, "date": "2012-09-24", "text": "Love the buffet, the folks that work there are great, we usually hit this at least once a weekend and our table is always ready and he knows what sort of naan we want. Small but worth it.", "type": "review", "business_id": "d_8bMNQd0mesbEUeq1U2kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "VCZ42oA9yRKB93DQI5cHuA", "review_id": "sHViya3zxFHH6lH1rOAl7g", "stars": 5, "date": "2009-10-02", "text": "Great selection of gelato! Friendly welcoming staff. Reasonably priced, deliciously rich gelato!", "type": "review", "business_id": "aGaoRZay5PRieFvTK6VkmQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bEd0_FyH-J1EtRpKefHSUg", "review_id": "nZ4sS2jTY9JUWtneA-CoCg", "stars": 2, "date": "2012-05-14", "text": "After reading all the raves about the green chili mac & cheese it was a must have - and then immediate regret. The green chilies were chewy and not peeled properly and the cheese in the mac was grainy and gritty. Yuck. Mac & cheese is by definition...cheesy and smooth. Not this. Horrible. The good side was the pulled pork sandwich and the hot BBQ was pretty darn good. All in all when I want good BBQ my choice would be Honey Bears first. But if I'm hard up and just gotta have some BBQ, I would consider Andrew's again.", "type": "review", "business_id": "bQ1s5pqX_UVWVQ-k4e9rAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pR6kbWnxhJXQ-pGPcWM-SQ", "review_id": "m_kR9bNVGxvQOfM9ARlH9w", "stars": 5, "date": "2010-04-03", "text": "The BEST brewery I've ever been to. Amazing beer and awesome food (I didn't think that combo was actually possible)! I daydream about this place all the time since I spent so much time here while going to school at ASU. Whenever I go back to Phoenix, this is always a must on my list!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mjP_3XwUXdptvOpQd0OjBw", "review_id": "B_2PVRyDRLMVf_nyMcvXpA", "stars": 3, "date": "2009-05-26", "text": "Bonkers staff at this small breakfast joints ... One totally overbearing and the other over the top nice but both in a frantic, hyped up on caffine kind of way. Still there was a huge line at the Breakfast Club so we gave The Dose a try. \n\nThe eggs over easy were broken and our server was confused at the request to have eggs on top of my toast. Turkey sausages were ok and the breakfast potatoes were excellent. So for a regular breakfast it was meh but then I ordered one single buttermilk pancake ... WOW! Perhaps the best pancake I have had in the valley!\n\nFor a regular b'fast show me to the 5&Diner but for pancakes only I would certainly go back.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 2, "useful": 7, "cool": 6}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "chPf9aP8iy_iGIGtGrLpmg", "stars": 5, "date": "2009-10-04", "text": "I have been here countless times since my last review and found myself here for a quick drink and some appetizers last night. I took a huge hiatus as I was in Michigan for a month and then have been crazy busy since arriving back in Phoenix and transitioning into a new job- I was sad because I thought they would've forgotten me. I was pleasantly surprised to see that they did not forget me at all. I love that!\n\nWe grabbed some brews and shared the patatas bravas (a personal favorite) and the mushroom appetizer. The mushroom appetizer was heavy on the cheese but still a tasty bite. The patatas bravas really never fail- they remind me of my Mom's version of french fries. \n\nI'd highly recommend this place for a date- it seems to pay off in more ways than one. Always great service and interesting eats- still lovin' Tuck Shop for being in my neighborhood!", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7zJeiY6YGosO7jakhlK91A", "review_id": "QQyjteVJ5BUVfcVLlAeZZA", "stars": 4, "date": "2008-10-30", "text": "I am a harsh critic when it comes to Mexican Food. My good buddy Paul talked me into coming to this place. When I asked him what to expect, he was correct in saying: \"Don't worry dude, just get the green on green with a taco on the side and watch the hood life unfold.\" He was CORRECT! This place is in the hood and they open at 10:30am for lunch. The lines get long at about 11am. They have a video game from the 80s while you wait. They serve drinks in THE CAN so I would suggest getting a 32oz thirstbuster beforehand. If you go in the summer, you will be HOT in the summer heat as the only place to sit are at the picnic tables located OUTSIDE of course. If you try to alter your order, you will be SCOWLED AT by the cashier. However, if you treat her with respect, she will say something in spanish to the old heavy hispanic lady in the kitchen who stirs the chili and the fat lady will either NOD or shake her head. All in all - a great place to eat!!", "type": "review", "business_id": "Xo9Im4LmIhQrzJcO4R3ZbA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "omoEjYFKVV7e-DtnezeUOw", "review_id": "M6r2_YZ8qpFb5FYBJoKRQg", "stars": 4, "date": "2012-09-19", "text": "I have been searching for a good Pho restaurant ever since Saigon Pho in Chandler went down hill. Pho Van is a very clean, well organized, and well staffed restaurant in the Asian Center that shares space with Lee Lee's and other shops. \n\nI had the traditional Pho Ga (chicken soup in beef broth) and Goi Cuon (Spring rolls). Both were very good. The noodles in the broth were perfectly cooked and had great texture and the chicken was all white meat and very tender. The veggies that accompany the pho were fresh and crisp. The Spring Rolls were perfect as well stuff full of healthy green veggies. \n\nThe prices were a little higher than I am used to in a pho place but it was not bad. They also do not accept AMEX so beware if that is all you use. \n\nOverall a great place and this is my new Go-To-Pho in the valley.", "type": "review", "business_id": "dipzJ5BExpm6BtJ91mXd4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kXT3pVtElactR8nFmeLbbg", "review_id": "8sMAwOrtAywYEwiD7L0lQw", "stars": 4, "date": "2010-12-09", "text": "I haven't been here in quite a while, but when I was coming here, they had a jazz band doing rock and alternative covers (their name is The Latest, though I don't think they play here anymore). The place is totally trendy, but I really see that as a good thing here.", "type": "review", "business_id": "peA3F-PnIfijYr8HuG-A-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0ouMuScWJ3GuNtWEmmsziw", "review_id": "pNhYfD8rHExoPXLvWj-LdQ", "stars": 5, "date": "2010-06-19", "text": "Was not expecting such a wonderful meal in a shopping center! After some shopping my husband and I were starving.....this was the first place we stumbled upon that was still serving their lunch menu at 3:30pm. For starters we tried the calamari....delicious....lovely deep fried lemon and zucchini pieces amongst the calamari pieces.\n\nFor mains we both tried the tomato and basil soup....very tasty. The veal meatball that my husband had and that I had to sample was also very good....smothered in a nice tangy, rich sauce. My vegetarian pizza was the best one I have had in years....super fresh ingredients on a very tasty base.\n\nFor dessert the gelato profiteroles smothered in chocolate sauce were simply devine!\n\nNeedless to say we loved this place not just due to the amazing food but also the atmosphere (may be in a shopping area but still nice and cozy) and the great staff who were very friendly.\n\nWill probably dine here every shopping trip : )", "type": "review", "business_id": "qecLHHzAwgkkeA1bG81vmw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "5bs9-7Fwjuv4HiQNFVZTEw", "review_id": "TeOHcNOhqCK31DXa5do3ew", "stars": 2, "date": "2011-04-21", "text": "burgers were terribly unoriginal. french fries came strait out of the safeway freezer section. the guy working was so hungover it was kind of sad to watch.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5-2JHDnSsoSaoRKDHPeTtQ", "review_id": "L8bosh7KwL8TwWNB-qos_w", "stars": 5, "date": "2010-06-05", "text": "Went back with some veggie friends of mine and wasn't disappointed. One of them ordered the regular flour quesadilla, and they loved it. It had veggie stuff on the inside and I tasted a bite which was delicious. I will probably order this next time I go. Also, the grilled onion which came on the side was a big hit. The other friend ordered the mushroom corn quesadilla. She liked it but didn't love it. I had the shrimp tacos and, wow, were they good. \n\nI don't know why, with all the tortas on the menu, but I just seem to prefer the other menu items. As always, the service was great, and it was very, very busy. We had to wait to be seated. \n\nLove this place!", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g6rlp5No6GjEDXkrjvg1kQ", "review_id": "xtbPGc8USrczIjVlz7CuRg", "stars": 3, "date": "2012-09-25", "text": "Okay.. I loved this place so much when I visited last year that I planned my Besties' birthday bash here in August this year. I flew in specifically for this event. There were 10 of us at 8pm. Called to put our name on the list a few hours before as instructed. They were so unorganized it was horrible. We didnt get seated until about 10 pm and by then 2 people had left because they were starving.. By the time we were seated our service finally came together and I have to say we LOVED the unique shots and had almost every one on the menu. As for the food. The Hamachi Popper was by far my favorite. The HUGE disappointment other than the horrible service in the first 2 hours, was the elimination of the PB & Jelly roll. It was the ENTIRE reason I chose this place and they no longer have it! WTF? Had I not had 10 shots I would have been furious. Management was gracious enough to take off a couple shots from our bill for the chaos we had endured. It was appreciated. All in all we had a good time even though it took forever to get to that point.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "67QGJdqABqaSEsQR4esrsA", "review_id": "nLkR_YYtbtEFqKZwKAif8A", "stars": 5, "date": "2011-03-22", "text": "How have I not reviewed this place on Yelp?\n\nI reviewed them for Check Please, Arizona!, a PBS review show. http://www.azpbs.org/checkplease/. I could at least do a written review. \n\nI've eaten at FEZ so many times, I can't count anymore. I think their burgers are some of the best I've ever had in the valley. Always juicy, I think the square patties are adorable. \n\nThe FEZ burger, with it's molasses bbq, cinnamon pears, feta, providing fireworks for the tounge. Their Douxelle burger, with sauteed mushrooms, provolone cheese & mustard, resulting in a subdued but delicious burger.\n\n Their fries, which include normal, sweet potato, harissa, & garlic are also great, but I love the salad that comes default, including their lemon dressing. \n\nIf burgers & fries aren't your thing, they have Kisras( think like pizza, minus the cheese), and their daily specials are amazing. \n\nOne time, I was lucky enough to score the mushroom risotto, and it was perfect. Sugar snap peas, \n\nDrinks are fantastic too. A margarita that doesn't taste like chemicals, perfect martini's, and a G-Spot(grapefruit, pom, and vodka), make FEZ a perfect place for lunch or dinner.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3FvZLg19icrnprA_PzSr9Q", "review_id": "nceYGnBrvfsze5jvShv_Ww", "stars": 4, "date": "2011-11-18", "text": "Cibo doesn't appear to need my review, since they have a lot of fans here and other places. This is a good lunch spot if you can get there early enough to avoid a wait. The patio is particularly nice when the weather permits. I work about five blocks from here and I've only been there for lunch. I've wanted to try dinner but something about coming all the way back downtown after I've driven home to Gilbert just doesn't appeal. Maybe on a day off sometime. The food is great. I like the speck sandwich. Speck, for the uninitiated, is just another kind of cured ham like prosciutto. The bread is always perfectly toasted. Currently they offer as sides a salad, fruit, or chips. An orzo salad, a la Carly's, would be a nice addition.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "yu32TrnceRwbGysd3_fHVQ", "stars": 4, "date": "2012-09-02", "text": "Hey hotel room snobs, I am totally with you that swank hotel rooms are the best. But when that's not in your budget & you just need a decent place to crash in Old Town, this is your place. I think my room was like $48 a night. That's cheaper than a cab ride home for some people.\n\nPlus they have free, albeit somewhat dodgy breakfast in the morning. I stayed for a few days, did some shopping & drinking. I could walk to Fashion Square, & cabs were cheap to anywhere in Old Town. Sure these places haven't been remodeled since the eighties, but who cares when there's free wifi!", "type": "review", "business_id": "UQq4E0TD2CWRLYOB1iGMig"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "HfwO9GnaP-9VdI0afwgmrA", "review_id": "VCCF4MSxZZGftkQo4gpKog", "stars": 3, "date": "2007-10-22", "text": "Enter your credit card information..chose your wash type....enter wash.....ahh clean.\n\nThe automatic wash at this place is great and touch-less! I used to have to get out of my car and remove the antenna, so it wouldn't be sucked into those heavy foam sheets that touch car washes use. I never understood the point of those, but as a kid, was frightened by them. It was like your car was being engulfed and swallowed, I felt like Captain Ahab, in the belly of the white wale. With this touch-less wash, no need to worry about antennas, mirrors, or anything else protruding from your car, or feeling like a character from classic literature. \n\nThe prices are meh for what you get, just spend the extra 2 $ and get the 8$ wash. It gets your car super clean, and has a full dry at the end. 6$ bucks gets you no dry, and 7$ gets you a mediocre wash, that will make you say \"did I get my car washed at all?\" With the 8$ you get this special Green Foam spray stuff, and extra rinse and polish deal. This place would be 4 stars if they wash options were better, but overall it's not a bad place to get your car clean. They have vacuums and vending machines that disperse air fresheners, towels, and small bottles of armor-all...in case you are too lazy to go to AutoZone (which I am sometimes) \n\nMy favorite car wash moment:\n\nAn unexpecting patron approaches \"change\" machine, in his attempt to get change for his 10 dollar bill, in which he plans to purchase the aforementioned green ever-green tree air freshener. He proceeds to insert said 10 bill into machine. Clang...Clang.... like a slot machine in Vegas the change drops from the machine, as he reaches down he realized he just bought 10$ worth of wash tokens! DOH!!!!\n\nHe proceed to swear in Spanish..as his girlfriend laughs at him. Little did he know that this Car Wash has it's own currency, and is a sovereign nation of the United States.....", "type": "review", "business_id": "ydhh9IME2xHQNVIRBbVBog"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_boBQx1hhICx8y4GWnivLA", "review_id": "lwLBZqTLw4nVgejDkcKVrg", "stars": 4, "date": "2011-05-05", "text": "Good, but not as good as Ocean Club. The new location is fantastic, and there is nothing to complain about here, but I'd rather dine at Mastro's.", "type": "review", "business_id": "ZhMlXLXuZf5z7lxunHk2ww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vwOlYL0OFnAOIZukgldHWg", "review_id": "0O_rz4j9E4ZEf1ZVv5KvIw", "stars": 5, "date": "2009-05-25", "text": "Great food! Good prices.", "type": "review", "business_id": "51qNc8sg9kCD5GEJ3TUrrw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "c6sX9OeQS1OnLJsbZ-3T5A", "review_id": "WPPd0Xm28qPQKY72hRUGVA", "stars": 1, "date": "2012-02-25", "text": "Look it upsets me that you have to give even one star. \n\nI can read the other reviews and I have been here more than a few times but tonight it was just beyond a bad dinner. \n\nYes, we were the table of 7 people at about 8pm, yes we were group at the high top tables that were pushed together. You would have to remember us because we were the table that had 1/2 of a waiter. It was so nice of you to take the time to take our order and then let the waiter go home because he had been there since lunch. \n\nYou know what sucks more than working 2 shifts? How about being the last table for the guy who worked 2 shifts, it was so nice of the manager to let him leave, but hey how about taking the time to have someone FINISH the open orders? \n\nSimply the food was not good and you are over priced.\n\nBut the worst part is that your staff is just not good at their job, THEY DONT CARE and that is a result of MANAGEMENT not caring.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "4C5wYoVdJL1tbQWbGAhJvA", "review_id": "XoPCekp4ZeBl0jlz7K_mlA", "stars": 1, "date": "2011-12-14", "text": "One star would be giving it a holiday gift!\n\nFor me Copper Star Coffee Shop has been a place where consistency and pride is taken in their food and presentation. Unfortunately, Circle H BBQ is nothing like the prior statement.\n\nMy first visit to Circle H BBQ centered on ordering a half slap of ribs. They were extremely over-cooked. There was more charcoal on the top, back and ends that was just not editable. Once you scraped away the charcoal, on the tops, ends and the center ribs, there was one that was eatable. \n\nThe company offered me a second chance to try their food, by giving me a complementary full slap. Nothing had improved.\nThey say they smoke the ribs, but there was no odor to that effect. In face the ribs I ordered the second time spend over 20 minutes on the grill after the order was placed.\nBtw...the waitress at the front counter couldn't even tell be the type of rub on the ribs and the type of cut they were. When I asked if they were smoked (cooked) daily, she said some are if you get here early - others were from the refrigerator from last night. The so called \"dry-rub\" seasoning was tasteless. The BBQ sauce is major strange!\n\nThe bottom line is the ribs were not worth the cost they were charging. ($14/Half for 6 bones and $26/Whole 12-13 bones both with sides) I have high hopes for the brisket, but it might be a while untill I try that endeavor.\n\nOverall if they don't change the way they 'burn\" the ribs, run, run or drive real fast to another place. The charcoal is not good for you and there is lots of it!\n\nHoney Bears, My Mothers or even driving to Famous Dave's is well worth the trip.\nSorry to burst your bubble, I too, had high hops for a centrally located rib place. \n\nI'm still waiting.", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YiuCu8bWN3moIhhhfvp0CA", "review_id": "Ooe_tO2xpCvjw6w7VoZeNA", "stars": 4, "date": "2012-11-18", "text": "So happy that DryBar opened a Central Phoenix location! Fun atmosphere, great customer service and high quality blowouts...pretty much an exact replica of the North Scottsdale location but at a much more convenient location for me.\n\nTook my sister-in-law here for a birthday treat. We were greeted by a friendly hostess and they accommodated our request to sit next to each other as we enjoyed our blowouts and mimosas. Great idea and great brand. Will definitely be back again for a special occasion 'do.", "type": "review", "business_id": "LcAamvosJu0bcPgEVF-9sQ"} +{"votes": {"funny": 9, "useful": 6, "cool": 7}, "user_id": "o1HQEND6cg-4SK0Z1ASBMQ", "review_id": "o22kERld_m3G7OkuglvtJg", "stars": 3, "date": "2009-03-14", "text": "I hate having to give out three star reviews. For me, 1-star isn't the worst possible rating you can an establishment, a 3 is. Because 3 stars means it invoked no reaction to you, neither joy or disgust, no pleasure or pain. \n\nI'd rather eat at a really shitty place that I'll remember than a so-so eatery that I'll forget the moment I get back into my truck.\n\nIf I want mediocre \"take it or leave it\" food I'll just cook for myself, kthxbye.\n\nAs BFeF's (Best Frienemies Forever), Clarice W and I frequently have lunch together in the Peoria area. The decision on what to eat is usually made using the following criteria: Where haven't we been that we can yelp about?\n\nOur last lunch involved us going to Hope Kee and getting all wrapped up in their cutesy snack section and coming in late to work. So we needed somewhere relatively closer with no Hello Kitty gummi lips to distract us from our voyage back.\n\nClarice suggested Casa Filipina, a Filipino place by the Lenny's Burger somewhere near but not necessarily 35th Avenue.\n\nWe were welcomed in by the staff and taken immediately to a nice cozy table by the window. We were given our menus by the excited and talkative waiter I would come later to know as \"that fucking guy\". \n\nAt first I was a little troubled reading the menu. I was once in a relationship with a Filipino girl that was so tumultuous and unloving that when I seriously thought of breaking up with her that my first thought \"but man, I love her mother's cooking...\". \n\nBut aside from the adobo and lumpia, I saw nothing else on the menu that I could recall from all those awkward awkward family dinners.\n\nI can't tell if this means there's more to the cuisine than I'm aware of or that said ex's mother was, as well as a good cook, a fucking liar. \n\nEither way, I'm glad I left her in the end anyway.\n\nI ordered the Dinguan, which translates as \"chocolate pork\".\n\nDon't be fooled by the name, all you saucy foodies out there thinking of that Iron Chef America where they made savory dishes with chocolate.\n\nChocolate pork is actually pork cooked in pig's blood. \n\nI'll repeat that.\n\nIt's pig's blood. It's called \"chocolate pork\" because the blood takes on a brownish-black hue after it's been cooked.\n\nAfter hearing this from that fucking guy, Clarice changed her original order (we even order the same thing! aren't we just the cutest!) to the Bistek Tagalog, which she was familiar with and knew she would like.\n\nAll the entries come with at CFB is a side of ride. I'm not sure if it's jasmine, white, or saffron, because I always opt for noodles when given the option. \n\nAnd if you get that fucking guy, that rice doesn't even come with soy sauce. After serving us, he disappeared into the bakery, talking it up with some of the other customers. Clarice didn't get her soy sauce until after we had finished our entrees and were on our second helping of rice. \n\nThankfully my chocolate pork came with a lot of sauce and I was able to dribble it on my rice. \n\nThat's right, muchachos. We trannies prefer blood on our rice. You think about that the next time you try to tell us what bathrooms we can use, amigo.\n\nI couldn't taste the pork. All I tasted was the blood. They could've just dumped a quart of blood on my rice and called it a day. The texture was nice though.\n\nClarice wasn't as fortunate with her dish. While I've tried to stay away from beef (it's enough of a commitment to keep my vegetarian brother off my back but not interfere with my eating habits), I had some of the Bistek, and it was passable. It reminded me of beef jerky, with its dry spicy roughness. Good, but not sure if that's how it's meant to taste.\n\nMoral of the story: Clarice's entree did NOT make its own gravy, which made eating her rice a little inconvenient. \n\nAnd seriously, JUST rice (really good rice, but seriously, how hard is it to make good rice)? Even my neighborhood so-poor-it-steals-its-recipes-from-other-restaurants Chinese place gives you an eggroll or wonton with your meal. \n\nAs the place is so fucking proud of its desserts, we ordered some. Clarice got the Creme Brulee and I got the mango tart. That fucking guy was in the middle of bringing Clarice her spoon when he caught the attention of another customer, so we sat for a good few minutes waiting to dig in. In the meantime, I managed to come up with a name for the color of the filling in my tart : burnt earwax. \n\nMy tart was about as tasty and edible as that term would imply.\n\nClarice's creme brulee was good, albeit a little cold by the time that fucking guy came with her spoon.\n\nOn our way out I learned that the bill had to be over 10 dollars before they would accept debit.\n\nAfter I imagined beating every one of the staff near to death with a rolling pin, I got an eclair to go.\n\nWhat I got was a bunch of whipped cream between two pieces of rock-hard pastry that you'd get at Fry's. Essentially, a diabetes sandwich.\n\nCasa Filipina isn't good. But it's not bad.\n\nThat's the proble", "type": "review", "business_id": "iJPG0GPcIirjOMlmzZWxBQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "4sIK_74UwkKU9YQXIfgCdg", "review_id": "6k10WTLws4YhK9h3evIJkQ", "stars": 5, "date": "2009-05-24", "text": "\"Fine dining\" is not just a setting. it isn't just good food. It is many things that add up to an attitude. I have had the opportunity to find it in different cities. I found it the other night at the Stockyards.\n\nWe were seated by a host who took us to our table and when we were properly seated gave us menus. Our server came to the table and introduced herself and said she would return shortly. It was nice to have a moment to chat before we had to think about ordering. When she did return, our glasses were filled-not something we should have to wait for her to do when the service is right. She knew the selections on the menu and all available options and could make sensible comments concerning them. Our salads were served promptly by two additional people and were as fresh as I could ask for. When my friend was finished with hers they asked if they could take her plate. I was pleased when they didn't ask me if I was finished with my salad and could they take my plate. If I'd been finished I could have told them. We were able to continue our conversation uninterrupted as I finished my salad. The salad plate was removed when it was appropriate and we had a few minutes before the entrees were served. All was in keeping with a relaxed dining. At no time did I have to think about having drinks refilled, it just happened quietly.\n\nAfter a few minutes our dinners were served by the two gentlemen and our server appeared to make sure they were to our satisfaction before we started. There was no room for error there that couldn't be resolved before we started. \n\nMy friend had ordered a small steak. My friend is quite elderly and Kathy, our server, discretely asked her if she'd like it cut for her. A potato also was served with her dish. I asked my friend which of the condiments she would like it prepared with. She look at me and said \"Prepared with?\" She didn't understand what I was getting at but Kathy did and was already reaching for the potato. She opened the potato and smiled while my friend said a bit of everything. One doesn't go to a restaurant like the stockyards to have to deal with opening a hot potato and preparing it. When serving is done properly, these things don't have to be discussed. Kudos to, Kathy!!!. That is part of the fine dining experience.\n\nI had a full rack of ribs which were so tender the meat fell of them. The sauce had spice to it but not so strong the flavor of the meat was concealed. I also can tell you that unless you are a big eater, half a rack would fill most people. My friend said, \"Yummy!\" and I agreed. I am used to getting a finger bowl for clean up after eating, but I can't complain about the two extra napkins and several ways of cleaning my fingers that accompanied my ribs. \n\nMy friend let them know we were celebrating the 17th anniversary of my 39th birthday so they served me a free desert. I can assure you the pecan pie is a delight! Warm and laced with brandy, it was perfect way to finish our dinner.\n\nThe stockyards, I might mention, is not inexpensive, but what an enjoyable way to spend your money. They do offer two dinner specials you won't find at most other places. They do have a luncheon menu that has lower prices. Don't expect chrome and music that is a bit to loud as many of the new places offer. Instead, just enjoy a time and place where they pamper you as you should be when you go to the Stockyards.\n\nI don't consider the stockyards to be a place you where shorts and Nike's, but of course there are always a few. I would say a nice shirt and slacks at least.", "type": "review", "business_id": "7U8TYNW4Mvx6m3zexsO0sg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ctZ2rmNfCEUXSmwS90wrYg", "review_id": "YGqmScDIiEtlFtpqwnE-lw", "stars": 4, "date": "2011-03-07", "text": "Found this place online and we checked it out on Saturday night. It was empty when we got there around 6pm so we were a bit nervous, but the hostess told us it was a late crowd usually and the place was pretty full by the time we left.\n\nThe food was superb. One of the reasons we chose to dine here was because they offer grass fed organic meats and we split a burger that was very tasty (in fact, neither my wife or I had eaten beef in almost two years!). We also split a great salad with a well cooked Ahi steak and had the bruschetta as well. The whole menu was interesting and we'll definitely be back.\n\nThe real surprise was the beer selection. Wow. I had a tough time choosing, and then the waitress told me about the special and it sounded so good I couldn't pass it up. It was an agave wheat beer from Breckenridge and it was very tasty. \n\nGreat little neighborhood place and we'll definitely be back. Hope it sticks around as the spot has had poor luck with restaurants.", "type": "review", "business_id": "vnffHkFJbmd-J3OaBbK2Eg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HFIuj45MwNx-cJkTamazSQ", "review_id": "ml2CpWn34S6JjWG0Kc7Tag", "stars": 5, "date": "2009-05-01", "text": "i love this place. i can always spent all my money here on something. they have great sales racks, but also reasonable clothes not on sale too. the atmosphere is always chill and the people working are super friendly. Also if you get bored of shopping for clothes, they have random stuff like board games and books you can buy.", "type": "review", "business_id": "l0c2pmxGYvCfeaCRiYGAvQ"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "Lp_Ykqfbv5Q-oyGYlMGJRg", "review_id": "Ve2uqRzmNYoOwmYpb0tV_A", "stars": 4, "date": "2009-12-11", "text": "Came here last night with the girlies to satisfy our craving for Indian food. We've talked about this place for a while, and I'll be damned if I was leaving AZ before stopping by this place! So luckily, I was able to convince one of the girls that finals are not as important as saying goodbye to me over a plate of curries.\n\nWe got their around 8 and the place had a good crowd. We were the only white girls, so we know we were in for a good meal. Going over the menu took us a while, because one of the girls had no clue what she wanted, and the server was polite enough to let us take our time.\n\nBefore we figured out what we wanted for dinner, of course we had to figure out drinks. So we all order and still continue to peruse the menu. Then our drinks came out...huge plus for this place right here, they were huge! My gin and tonic was in an oversized cocktail glass and my friend's Chardonnay was filled to the brim. No skimping on alcohol here! The waiter advised us the drinks were strong, which I was fine with but my girlfriend needed 3 more limes to take hers down.\n\nWe finally end up decided on dinner, with the shahih paneer, chicken saag, and vegetable korma, and an order of garlic naan. I was a little unsure about the paneer, but my girlfriends swore by it.\n\nWhen the food arrived, we were excited! Everything smelled so flavorful and the naan was huge, good thing we only got one order. I loved every single bite I had at dinner, and the feeling was mutual across the table. All of us ate beyond the point of feeling full, but we couldn't help ourselves! This food was too good!\n\nLuckily, we were able to stop ourselves and save some food to take home. I got the chicken saag and I am so excited to have some for my own brunch. Mmmmm...I'm getting hungry thinking about it now.\n\nOverall, $20 a person including tip, with strong drinks, good food, and extras to take home we were satisfied.", "type": "review", "business_id": "_RBUU1y4yJrK0SPAd8z0-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ia9D08hVd-RlqN1-wBo_Lg", "review_id": "LIsB9vw9uAzS0DKT10uWEQ", "stars": 4, "date": "2010-12-15", "text": "Great martini's and they even have Absynthe if you're looking to get crazy. Great looking modern style bar and lounge.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 5, "useful": 3, "cool": 4}, "user_id": "Y7CLCx9zWb8UzZKaIb7QmA", "review_id": "GuVqHfZH_nwAibNEyYagig", "stars": 3, "date": "2008-12-05", "text": "It's like a 50 inch LCD TV mounted in a crack den.\n\nSomething nice located somewhere shady.\n\nI ran to Circle K across the street for a late night Diet Pepsi (yeah, I know how to party) and I felt like I was on an episode of \"The Wire\" about to do a hand to hand drug buy.\n\nHotel is decent. Nothing special on the outside. \n\nBed was damn comfortable so I guess that's all that matters.\n\nFree wifi throughout but good luck getting anything over 1200 baud modem speed. (my inner nerd coming out)\n\nMake sure you stay on a Wednesday, there are free drinks and appetizers in the courtyard.\n\nBust out your flack jacket and sprint to the lobby and you'll be all good.\n\nFree shuttle to and from the airport.\n\nHood.", "type": "review", "business_id": "VS6eeO_IxSW0pQOWPtXSEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aAdWc-4NhK0js0szR6ku9w", "review_id": "_hc3vJz9Okknb75d7gVUfQ", "stars": 5, "date": "2012-08-22", "text": "I spent almost 2 years searching for a good nail salon in the North Scottsdale area and I will never go anywhere else again. It is very clean, the girls are very nice, and they always do a really good job on my nails. They are upfront about their pedicure prices - they hand you a price sheet that tells you exactly what you get for each upgrade - instead of pressuring you into getting something better and then upcharging you. I think their prices are super reasonable as well. For the best pedicure and a french gel manicure I pay $70. I usually make appointments (Sunday mornings are nicely uncrowded), but I've also walked in and been taken fairly quickly. I love this place and will recommend it to anyone who asks!", "type": "review", "business_id": "AydLCqa6veiY7-uYEczEGg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "D6f_3rWBlSGx1lvt1g49AA", "review_id": "smiy4CurSUDSGdaETNyY3w", "stars": 5, "date": "2011-05-01", "text": "I love vegetarian restaurants! I support them 200%. So glad this place exists in Phoenix. The quality of the food is beyond excellent. The meals are creative and super tasty. Never disappointed. The only qualm I have is the service. It...is...slow. Whether it's the time it takes for my meal to reach my table or the cashier taking my order to ring it up correctly. The length of time it takes should not be so long. Prices are a bit steep but most vegetarian/vegan restaurants are priced a bit higher than others. I don't mind paying more for quality. Overall this place is a favorite weekend visit. I can't wait for my next meal at Pomegranate Cafe.", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "f1-pIw_p0ifzu03TXjPRiw", "review_id": "DpzCyAUpygzGQxfkUROQdQ", "stars": 4, "date": "2012-07-24", "text": "Thoroughly enjoyed my recent date night at Pappadeaux. The Hubs and I have been dying to try this place out thanks to all these amazing reviews on yelp and boy are they right. The place was packed on a Saturday night at 5pm, which is a good indication one is in for a treat. We made a reservation just in case, since we were going to see a show later that night. Our waiter greeted us quickly and was very friendly and upbeat. He told us the specials and took our drink order while we looked over the huge menu.\n\nIn the end we got the lobster roll appetizer, halibut, and bread pudding for dessert. Everything was soooo... good and very filling. The lobster appetizer was full of flavor, especially the sauce it came with. The halibut was cooked perfectly and the grits on the side were amazing. We loved the bread pudding, which was HUGE for the price. I wish there weren't as many raisins, but all in all it was great.\n\nSo glad to have found this place! I know it's a chain, which I usually don't love, but the old-school vibe and good quality/quantity of food made up for that. We'll be back for sure!", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "6uNeagh9ljbwV8XRUn_cYA", "review_id": "XJqJCxM5h_Dl-Kzk44pMoA", "stars": 5, "date": "2008-10-23", "text": "Ruth's Chris, the only steak house I can fully endorse. 500 degree plates make the sizzle a memorable experience. The Ahi tuna appetizer is also a must have to start the meal off right. While every salad they have is a can't miss, I'll go there just to get the Chop Salad.", "type": "review", "business_id": "iDoigI3605ixHl_qHly3Tg"} +{"votes": {"funny": 12, "useful": 19, "cool": 13}, "user_id": "v5k-__wHo2xPI25WO-dcQA", "review_id": "dKEvK8eAssyJ03qHrRjU_g", "stars": 4, "date": "2010-03-24", "text": "This place is pretty fantastic. I actually felt like I was in a real life city when I was sitting here the other day on my laptop looking out the window. I sorely miss living in a real life city, specifically Boston, so places like this make me super happy. \n\nStaff are really cool and helpful. Its spacious and clean, and I don't feel like everyone in the place can see my screen, not that there is anything weird on there... okay there probably is, but bottom line is no one else is staring over my shoulder making me feel self conscious about shit I enjoy looking at on the internet. \n\nThe coffee is delicious and strong. Nothing worse than a weak cup'o joe. I had a pot of their Orange Detox also, which wasn't terrible, but I could tell they used tap water.. I loathe tap water and can immediately tell a difference because I think the tap here tastes absolutely fucking disgusting. I still drank it though, because the chick promised me it would help me feel better.. Guess what, I sneezed all night. \n\nO'well.\n\nAnother thing I liked about this place is that there aren't 500 hipsters or emo-assholes sitting around looking depressed.. maybe I was lucky that day because it wasn't very crowded at all. So yeah, I dug Lola, and the prices are CHEAP. Thankfully this is yet another groovy coffee shop in the valley that is there to help me avoid the Corporate Whore that is Starbucks.", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "1PWFPOmqvLx3sGKuuKQr9Q", "review_id": "_eoFiq0KTeF-o69nOR6uXQ", "stars": 4, "date": "2011-02-14", "text": "This place is still really new, so they're still getting the kinks worked out, but it looks great and the film selection is awesome! \n\nI went there the Sunday of their opening weekend to see Metropolis. It might be a little confusing the first time you go, but you pay for your movie tickets at the bar. They don't have paper tickets yet, they just gave me and my date little stickers.\n\nThe theater has 4 or 5 rows of comfy seats and a few tables in the back for people with drinks. Metropolis was in Blu-Ray and looked amazing. The showing went off without a hitch. They even gave us a free bowl of tasty snack mix to eat during the movie. I'm not a drinker so I can't comment on the bar offerings, but I think it's great to have a theatre showing rad independent and classic movies downtown. I really hope this place takes off, I can see myself visiting it often.", "type": "review", "business_id": "MYj5f-QxtGeKlhVVx1RD4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F1_EKp5Qc5u-m1o6NItJPw", "review_id": "AGzmaG1ho9HtdRNS5MIvDg", "stars": 5, "date": "2010-12-13", "text": "Place is always friend, and I LOVE THE PIZZA. It's by far my favorite pizza place. Sign up on their VIP newsletter or eclub and you get a free pizza on your birthday, get it for free and try it. Sounds good to me.", "type": "review", "business_id": "r4AG1WXCRWkZKQctrcy9FA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "NDkStqTVh-sTDKtKIZkDxQ", "review_id": "8b6tha9AeIn7yLk7sqMOhw", "stars": 4, "date": "2012-11-29", "text": "If you like a good burger then check this place out. They have so many options that you can choose from to make your own burger. I am usually not a fan of sweet potato fries, but these ones come with a dipping sauce that is amazing.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "EMkfNkrj5fXB_mGlkB416g", "review_id": "db_iZdCzoJqISXpaa_Gx1Q", "stars": 5, "date": "2012-04-03", "text": "Quite possibly the best place to eat in Mesa. Let me tell you what you are in for if you go. \n\nThe CPC has taken these pilgrim pockets to the next level. Personally I would recommend The Royale With Cheese or the Shepard's Pie. The pies take a while to make so now would be a good time to order drinks as well. If you are the beer drinking type I would suggest the Hoegaarden it's the best I've ever had. If you are looking for something more stimulating you may want to try their Irish Car Bombs. Or if you are you are up to it go with both.\n\nWhen your pasty arrives don't touch the plate! It could be scorching bloody hot. Your pasty is probably going to take a few minutes to become edible as well, just stay clam it will cool soon enough. \n\nWhen you have finished eating get the apple stuffed pasty for desert. By now you will feel very full, I know, I do it every time and the only thing I can say is that it was worth it.\n\nCheers!", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ClptG3R38wR_xM9XVR-bEA", "review_id": "NTyaLCYWUdBRmj0zm6MMgA", "stars": 4, "date": "2011-11-15", "text": "So great to see the occasional NY style pizzeria pop up amid all these chi-town \"pizza\" impersonators... Sorry, but if you think pizza is cut in squares, or it's crust should taste like a stale saltine cracker, perhaps this isn't for you.\n\nA great street style joint with friendly staff and always a great selection ready to go, and conveniently located right next to AMC 24. Bring a messenger bag or purse and get some Vincents to go, and avoid the concession stand. Just sayin...", "type": "review", "business_id": "ImVx220_Pcp2iB5uworODw"} +{"votes": {"funny": 3, "useful": 6, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "BXafEB9o2gHxFZxxXDW3TQ", "stars": 4, "date": "2011-06-04", "text": "If you are looking for a serious pool experience, look no further than this hotel. You stay at this hotel for the pool and maybe the surrounding restaurants like Rico's, but especially for the pool. This pool includes: a lazy river, super slide, pool volleyball, miniature golf (yes, mini golf), a western village, at least three pools and plenty of hours of family-fun in the sun. Oh and adult kids are more than welcome too! \n\nThis hotel provides the ultimate poolside experience, so if that's what you are looking for, this is your spot. You won't find \"so Scottsdale\" peeps with their stilettos and muscles popping out of their Ed Hardy. You will find down-to-earth people and families wanting to have a good time without worrying about what they look like in a bathing suit. \n\nThe Squaw Peak property itself is pretty awesome too. I really think you could stay here and have a weekend's worth of activities without leaving the property. Squaw Peak Mtn is just a hop away and perfect for a morning hike, I've already professed my love to the pool above, they have plenty of restaurants on property including Rico's American Grill which is delicious and Hole-in-the-Wall which is fun old-western fun. They have a gift shop full of fun memorable items, they have a creamery, a general store with breakfast and snack essentials and let's not forget about the multiple tennis courts! As I said, this is a resort. This is an old school AZ resort. It's not frilly but it's fun and I think I'd take fun or frilly when it includes a pool like this! \n\nPS - summer rates are incredible and start at only $89 a night. It's worth it for a staycation or if you're in town for the weekend.", "type": "review", "business_id": "N1xMSUfv1GmfHGa9a3VuJw"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "w20oGO8zTZIq9Zi_JXsxUw", "stars": 4, "date": "2007-07-05", "text": "Before all of you band together to burn me at the stake, let me explain. I have a reason for wanting to review a chain such as Del Taco!\n\nI went here the other day and was shocked. The staff is nice. And I'm not just talking fake friendly. They were genuinely kind and seemed happy to be at work. In fact, the guy at the counter asked me how my weekend was, so in return, I asked about his. You know what he said? \"Perfect.\" He said his weekend was perfect. I can't remember the last time I had a perfect weekend. Lucky him.\n\nThe food is pretty good too and I especially enjoy their spicy jack quesadilla. My nachos did not come with any cheese though- not sure if that was a mistake or not. Just chips. False advertising. \n\nAnyways, everyone who works there was exceptionally nice. Why? This has never happened to me before. Was I their first customer of the day or are they really just nice people happy with their jobs? They must pay well there... Is the secret to being happy in life working at Del Taco??", "type": "review", "business_id": "ZaS6zYn_Pb3QrGRZJfNyzA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hV2mUNpH3K5BvOyEwP5a7Q", "review_id": "tbCAL4A4TfnDJ37OfLMOtw", "stars": 2, "date": "2012-03-28", "text": "I had eaten breakfast twice at the Chandler Chompies and loved it so I wanted my husband to try them. However, we went to the Tempe location instead. Much older restaurant (pretty worn) and it took some time for me not to be grossed out by the nasty overall smell of the place. My breakfast wasn't half as good this time and my husband didn't like his either - just boring and not repeatable. Hoping he'll give me another shot and we'll make the drive out to Chandler next time.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 3}, "user_id": "wZMqQMYM9GKyjK1oP0C6TA", "review_id": "c4WMKfH4gjj3hg5mcroe1w", "stars": 3, "date": "2008-11-29", "text": "Just kind of there with nothing special about this convention center. And the Phoenix downtown area is pretty boring and sparse except for the baseball stadium right next to it with some cool bars and restaurants. When there isn't a game, this area seems pretty dead.\n\nBottom line: Ho hum. Baseball stadium nearby is great entertainment option but can be a pain with all the traffic if you are trying to get out of the convention center area in the evening.", "type": "review", "business_id": "F6BedoYgbAQHqwKX9F0zDQ"} +{"votes": {"funny": 8, "useful": 5, "cool": 5}, "user_id": "rjlb-7-JcmM6fR64ZpyTug", "review_id": "-LQKU7GKFbbboiwmx6buZA", "stars": 3, "date": "2010-01-08", "text": "I decided to give this place another shot. This time around I was sober, and thus have actual memories.\n\nAfter grabbing a drink my friend and I decided to head out to the patio. A group of 3 guys graciously let us share their table since the place was packed. A short period later one of the guys pours his drink into the candle holder and storms off. I made a comment about it being his time of the month and I'm not so sure they appreciated it because they all left. Although, the most sober of the bunch seemed embarrassed. Whatever, free table, woohoo!\n\nNext table starts having a beer fight. I'm not kidding. \n\nI then started feeling really old.\n\nAnd overdressed.\n\nAn employee comes by to clean up the empty bottles from my table and notices the candle holder full of liquid. I told him about the guy with PMDD. He made a little joke about the the guy being upset over my rejection of him. \n\nFinal analysis- Patron has some cool employees and some not so cool customers.", "type": "review", "business_id": "ilJiRYZgxjrEu2iexKu-pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T511TDQxa_BpnKT6O4XtVQ", "review_id": "hkfR8InqFd5AaHx8wwmwHw", "stars": 4, "date": "2011-05-23", "text": "I have been to this place a couple of times and so far each time has been a great experience for the most part. The food is awesome, and the atmosphere is fun and friendly (definitely family oriented, with a lot of outdoor seating).\n\nOut of the two times that I have been here, I have tried their fontina burger, the pesto chicken sandwich, the sweet potato fries, and the garlic fries. The burger was delicious, the chicken in the pesto chicken sandwich was cooked to perfection, and the fries were awesome (although, the garlic fries had too much garlic for my taste). \n\nThe only downside is that this place is always packed (or at least the two times that I have been here). It was featured on the Food Network, so I kind of knew that it was a popular place. But the funny thing is that I thought if going at a later time for lunch and on a weekday that it wouldn't be bad, but I was wrong and the line was still out the door. Also, I kind of wanted to try their milkshakes, but the line was way too long to get back into (sort of wish they had an express line for desserts). \n\nOh, and check out their restroom for a weird/funny surprise.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Wd79xttTkXmaBLSOkwwDIQ", "review_id": "LaE4wNi81TIDtqFjSeBUFA", "stars": 3, "date": "2010-07-22", "text": "This place has a lot of potential; I really want it to do well. I went there on Saturday night with my husband around 7 pm and it was jam packed. Good for them! We felt a little out of place since it was a much much older crowd, (in bad capris, shorts and flip flops...doesn't anybody make an effort anymore? This part of town, I guess.) Anyway, we had a nice booth, but it was directly across from the pizza oven, so we were quite warm. Pleasant server, good busser/foodrunner keeping our waters filled. We decide to try the Bruschetta for a starter and the Rib-eye dinner for two for $28...an unbelievable price. The Bruschetta was quite good (and at $6 also a good value) and with a nice mozzerella and balsamic drizzle...it was tasty. The Rib-eye's on the other had, were not so nice. But, I must stress, these meals were $14 each...what did I expect? The steaks were large and tough; my husband said his tasted old. Yikes. Mine wasn't that bad, and the potatoes and veggies were flavorful. Our thoughts, under the premise of \"if we were running this restaurant\", are: we would have offered a much smaller but higher quality piece of steak. Food for thought, Javino's. In our opinion, quality over quantity every time. As we were eating we were able to keep an eye on the drama with the staff...and watch how hard those boys in the kitchen were working! It was really busy, and they all did seem to work well as a team, manager included. At one point, a sweet, young server comes back with a couple of plates to the manager (I guess someone sent back there food) and burst into tears. Ah, we felt so bad! I hate it when customers make the server cry and if the food was no good how on earth is that her fault?! Well, major points to the manager who gave her a big hug and went to deal with the table. I was impressed. Also, live music going on... a very nice touch. We left feeling like it was an okay place, I liked better than my husband, but something was just kind of \"off\". Maybe they have an identity crisis? Are they a wine bar or are they trying to be fine dining? Either way, I definitely want to go back again soon to try something else on the menu. If for no other reason than how kind that manager was to the server. I have worked in the industry and have been treated like garbage in the same situation. So, kudos. Your staff looks happy.", "type": "review", "business_id": "CdWrHBOvTZ6i0Z37iFaV3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6OWHDbEq23f24Vki_veHBA", "review_id": "6Xj0WxMEc581c-UaczZhkQ", "stars": 4, "date": "2010-06-21", "text": "This is the only music store on my side of town and since I never can buy online early enough, is where I usually buy my reeds. The customer service is great and they appear to have a huge selection of almost everything a music student should need.", "type": "review", "business_id": "AB7uOYIMVc_TbIcYR8np2Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "wegf6OwzpKtA__H8_QiI1g", "stars": 4, "date": "2012-11-18", "text": "Clean, clean, clean! Everything about this place was spotless. The food itself was perfectly adapted to suburban American tastes. Somehow even the Sweet & Sour chicken seemed.. extra clean. ::)", "type": "review", "business_id": "xhwp_bACX0017Qxu8_AVbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jvwnIG5wEjdOsqkYJgN29A", "review_id": "mwoOdGi6RoZYnbXMxKToyg", "stars": 2, "date": "2011-07-07", "text": "Went there for lunch. Split a chopped salad and a deviled eggs.\n\nLarge portions. Salad was a bit heavy on sauce, but I liked it. Deviled eggs had some truffle oil which made them pretty good. \n\nBurger was gigantic. Ordered onion rings that were just not good at all... must be frozen pre-bought, which sucks. Burger kind of tasted oily bland. Tried to add mustard, and it wasn't terrible, but for an upscale burger at $12 expected just a bit better. Companion had sweet potato fries which were much better.\n\nService even though the place was dead was very slow. Not unfriendly, but they need to realize people that go for a mid-week lunch usually don't have 1.5-2 hours to eat.\n\nAll in all, it wasn't a terrible experience. I really like the ambience... love the modern look of brick and blackened steel. \n\nBut I'd probably be more interested in coming here for beers and drinks with a couple appetizers, than a sit-down meal. For a meal, there are just much better central Phoenix locations.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "06g-gOtLHg-WG2-5i4aT_g", "review_id": "Zy46nPR8fom_iwaMTNduXg", "stars": 3, "date": "2012-11-25", "text": "was super duper busy when i ordered. but then again, they were a fast food place, and i waited for my To Go order for 25 minutes. They have 5 or 6 people inside their kitchen. And a lot were waiting for their food cos there were some mixed up. Will go back though cos I know those things happen when it's a busy day. The food was bomb specially the hotdog!", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lRDGPTaQVLKe4NcGom-0Pw", "review_id": "oQ9_M-7-EUDVU8E5aRoOfw", "stars": 5, "date": "2011-03-18", "text": "We've been going to Santisi for close to 10 years since they are just around the corner from my house. We've never had a bad item here. It's a fun place to go and the food is great. We always order pizza which is consistently good. Their salads are excellent - all their ingredients are very fresh and there's enough for two meals if you're a lighter eater. And the wings are always excellent. \n\nWe've always had good service and the staff keeps the beverages coming. It's a great place to watch a game - if you can get in! Friday and Saturday nights are so crowded we often grab a beer while we wait for our take-out pizza. The parking can be a challenge since the stripes are laid out weird and there's a dollar theater next door. You can park in back (the side toward the freeway) if there's no room in the front.\n\nWe moved away in 2006 and came back in 2010 and Santisi was still there, and as good as ever.", "type": "review", "business_id": "DHk8is9rvfnATsW1AudWQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zqnAdayPsak5dbLF2gEvNw", "review_id": "80SKZ7vdPks9KzT2wKTg5Q", "stars": 5, "date": "2010-11-09", "text": "Oh Chipotle, I love you. Healthy options even when craving Mexican! My favorite is the chicken burrito bowl with fajita veggies. Served on a bed of rice with black beans and pico de gallo, with some spicy corn thrown in....ahh my mouth is watering already. I've been to many locations, and all are clean, food quality is excellent, service is friendly and professional, and I always leave satisfied. 5 stars to you, my friend.", "type": "review", "business_id": "R2IWbpUgJQ3NRRjKQy6O_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "hXp0JsuwJHJlnT-340Gvtw", "stars": 4, "date": "2010-01-31", "text": "I love this place, that is, the selection and randomness of the food. However, the prices I'm not so keen on.\n\nMy sugar snap peas were the same as Safeway and were fresh, so I'm sold on that.\n\nIt's also the only place I can find my Kettle brand chips in the flavor I crave, so I'm sold on that too.\n\nNow if only the prices could reach my income level, that'd be stellar.", "type": "review", "business_id": "Mng1FUcW-xRSdsDkowQm2Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "tVqlvc3klRmKMdCFfzYjtQ", "stars": 4, "date": "2011-01-31", "text": "My review is based on Terminal 3, Delta! Getting checked in at Delta was quick, security line was quick, and returning picking up my bags was quick too! The signs are easy to read and easy to understand. I was in Nassau, Bahamas' airport, the signs pointed everywhere! Crazy!!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V9vStLuNc4aqZO_GK2VTuA", "review_id": "cy1lA0PTgjblLq9oFrdfvA", "stars": 2, "date": "2011-06-28", "text": "i'd rather go to amado's!\n\nthe only thing that's good here is the bean dip, and i'm only saying that so that i have something nice to say.", "type": "review", "business_id": "rlQCMHmaMjPzEh3BeaDkIg"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "pk4y8PJdccJysYBpBA-gcg", "review_id": "lmqKpp9FDFo5EJr3XeEiBw", "stars": 5, "date": "2008-06-19", "text": "These are simply the BEST sandwiches and salads. If you like your food (a) locally grown; (b) freshly made; (c) organic/all natural; and (d) yummy - and who doesn't? - this is the place for you.\n\nNow, admittedly they have something of a soup-nazi routine set up and if you walk in and don't know the drill, it can be confusing. So pay attention: \n1. Look at menu.\n2. Decide what you want.\n3. Wait your turn to order.\n4. Order (give your name).\n5. Wait your turn to be called to pay the other girl for the order you placed.\n6. Pay her.\n7. Wait until your food is ready.\n8. Leave with your food.\n\nNote that there is no place to sit inside - so you can either sit outside, or, (if it is 157 degrees out that day), see if you can find a place to sit over at LUX, they are very welcoming of Pane Bianco diners. \n\nIt's all good.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "Ouus3lC3Xk3YRGx4ptd_4A", "review_id": "5r9GzwJrM6bpdpXsTu6y_g", "stars": 4, "date": "2008-08-03", "text": "This is a huge store and love that the clothes were sized. There is a separate room for housewares and a bit messy. Some of the housewares stuff was dirty but great deals. They were running a 50% sale on all items in the store, blue, red or white. Own parking lot.", "type": "review", "business_id": "8nbmu9fPdyNH0eRByCjRBg"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "mxS9VkpjPJy8lZBz66aByw", "stars": 3, "date": "2010-10-04", "text": "After a couple recent visits I can't help but notice that Mellow Mushroom just isn't the place it was when it first opened. I remember enjoying full pints of St.Berardus Christmas Ale at happy hour prices as well as other \"high gravity\" options that were served in normal glasses. Now they're in smaller glasses that look like a highball or rocks glass, but the price isn't smaller. When I go in prime dining hours somehow 3 of us can rack up a tab exceeding $100 and it just seems a bit extreme for pizza 'n beers. This isn't the Biltmore or Kierland. It's a very middle class area and I'm not sure how the prices are a good match for folks who live nearby and dine here.\n\nBut it's not just the prices I guess. It seems like a lot of the servers are not happy and give attitude, and I'm a very polite person in public so I know it wasn't me. \n\nAt the bar last winter I've chatted with a guy who knows a lot about beer but lately it seems the bartenders are just attractive females who don't really know craft beer, and the overall demographic in the bar isn't the same. Call me an old fart, but I'd rather talk about West Coast beers than have all the eye candy. Also they have all these wonderful beers but it seems like everyone around me was ordering Coors' Blue Moon. Why can't those people just hang out at TGI Friday's?", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mn9YYbeY_ydJ7NABALyYIQ", "review_id": "mKaYsddLjeY8GKlqP9Gczw", "stars": 4, "date": "2011-02-07", "text": "I'm embarrassed at the number of times I've eaten here since it opened. i used to live half a mile from here and was one of the first people in the door. The bruschetta is the best in town--period, end of discussion. The salads sometimes aren't my favorite, but there are plenty that are delicious. I'll admit that the cheese plates also sometimes leave me wanting, but that is a rare occasion. It has been interesting to see the wine selections evolve over the past several years. When it first opened, Postino seemed to have nothing above $35/bottle, and that selection was good. It stepped up its game in the past two or three years and now boasts a more diverse and more expensive selection (e.g., Sea Smoke pinot noir). I appreciate the addition of even better wine, and am happy to say that the glass list remains reasonably priced.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mECTORoeUYDA5ryP-vy5cw", "review_id": "aZhqHg0l2_FlyTvilCySBA", "stars": 4, "date": "2012-07-05", "text": "Always packed on wing night, which can sometimes make for slow service, but that is to be expected. I love their wings, even if they are kind of small, but who can complain for $0.39? Pizza is good too. And the pizza cookie dessert, omg, druelz.", "type": "review", "business_id": "U7jOpLoLXYphWFqS6JO8mQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "3-lKMNbXFrfLf82zfbXJLA", "stars": 3, "date": "2011-08-02", "text": "The noodles are delicious here. I had the vegetarian spicy noodle. It doesn't come with anything but noodles and the sauce. It would be great if they could add some veggies in there though. So you chose the type of noodle you want and then the flavor. The prices are super cheap and the service is fast. The portions are huge and I could have eaten the whole plate if I didn't stop myself. I am curious to know if they use MSG because it was that hard to stop eating.", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0viQKqum79DOfIARWm77Yg", "review_id": "Jzzy_q55Eq65MFzFSsOMTA", "stars": 4, "date": "2012-02-09", "text": "Grocery store was within walking distance for my hotel stay. Picked up my food stash for my visit.", "type": "review", "business_id": "C7UF87fLEJBA4Hkrk24k6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "POvdnaJ4O4mQo6Y0NzgESw", "review_id": "bVfW81IYD6lUWV2cMqfOOA", "stars": 5, "date": "2012-10-24", "text": "Delicious, clean, great service! 3 hours later and we are still talking about how delightful this place was. We had the pulled pork and chicken sandwich - both were moist and fresh. Dinner for 2 for 20.00!", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dHl8uHC2_NN-DiUr_QuOwQ", "review_id": "2uPnzLVwj3k0lABKzjfOcQ", "stars": 2, "date": "2012-03-26", "text": "Just o.k. We had the Italian Stallion, it tasted very good, but between 2 adults left us pretty hungry. For 14 dollars, it seemed to be more of an appetizer.", "type": "review", "business_id": "jgbEZzERVI4yvAAtXWW93A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Wd79xttTkXmaBLSOkwwDIQ", "review_id": "STRQ2YwE5rgg6K-Ws4f1Ng", "stars": 4, "date": "2010-07-30", "text": "I was out shopping with my 16 year old son, and we decided to stop in and try America's. The delightful young lady behind the counter highly suggested that we try at least one thing with the pastor filling so we ordered the meal for two for $20. That comes with chips and salsa, two burritos, two tacos and two drinks The carne asada was very good...but OMG...the pastor was amazing! We just wished we had ordered the burrito with the pastor and the taco with the carne asada instead of the other way around. The sweet young thing kept checking in on us...we were there at 3 in the afternoon so it was quiet...but gosh, the young girls had just been fawning over us all day! On the way home, I looked at my kiddo and realized he's pretty darn good looking...so maybe that explains all the delightful customer service that day! Anyway, I can understand some of the complaints about it being a little pricey, but I think you are really getting a quality product and that is worth it to me. Plus, I thought the burrito was especially meaty. And as a carnivore I totally appreciate getting my meat on! Cute place, yummy food, fun day out with the teenager. Really, you can't ask for more than that.", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wIi2J1UGRB2G_3vu5eNK3g", "review_id": "7PxXWoR2pGqz9lb0g2XxYA", "stars": 5, "date": "2012-07-21", "text": "I love this second location in the Royal coffee series as much as the one at the market!\n\nSince it's summer - I thought I should mention that the iced coffee is so smooth and amazing that you don't even have to add anything to it!! Don't believe me? Ask for a sample next time you are here and I guarantee you will be astounded!\n\nA quiet and chill atmosphere if you want to work/study/read as well as a great place for delicious grab n' go coffee in the Biltmore area!", "type": "review", "business_id": "6nH0DLfofTytTeZJSkprgw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "HOleI3jz1MLNUJ6cc1x0Pw", "review_id": "3JnlzxUVmAz0qt7_9jjV_g", "stars": 3, "date": "2008-08-02", "text": "Restaurants that are open 24 hours play an important role for certain kinds of people - ones that work odd hours, people who like to eat at non-standard times of day, and, of course, people who are out late partying and want to put something in their stomach at 3 am. Taco Felix is a godsend for anyone who falls into one or more of the above categories. It provides decent and affordably-priced Mexican food 24 hours a day and best of all, it has a drive-through. \n\nMy husband and I tried this place for the first time for lunch today. We went at a standard time of day because this place is just a few blocks from us and we wanted to see if it was decent before we tried it out one night after midnight after karaoking it up at Silver Pony (just a block or so away). We ordered 4-5 different items - rolled tacos, bean tostada, carne asada taco, quesadilla supreme, and a chile relleno - and a large soda, and it only came out to $12! As a side note, the credit card receipt didn't provide a space to leave a tip, so you should bring a few bucks to thank the employee working for their efforts. \n\nThe only major downside was that it took quite a while for our food to come, since the drive-through was hopping (lots of people getting menudo after a crazy Friday night, I'm assuming) and there were only 2 chefs and one server (who had to take and serve both drive-through and eat-in orders). However, the food was definitely decent and the portions really sizable, and we felt that it was a great value for our money. Now that we know Taco Felix serves good food for good prices, we won't hesitate to come back during one of those unusual times - to get a chorizo/egg burrito on the way to an early morning flight, to grab a mid-afternoon snack when most other places are closed, or to fill our stomachs late one night after a few drinks.", "type": "review", "business_id": "ZD8xAsXsj8FRunJOP4fSrQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "KgnQz4WFT892AXmimnP4jg", "review_id": "URTKHZUVN7-KZltLQ2XfMA", "stars": 4, "date": "2010-03-01", "text": "It takes a lot to impress me. I hate most everything unless a place is so awesome it blows my friggin' head off. Sign of the whale accomplished this task. Allow me to elaborate...\n\nThe first time I went here, I received awesome service. Did not have a bad thing to say about the place. Was waiting for my party to arrive and sat by myself. The bartender was awesome, started bullshitting with me and making me feel more than welcome. The owner is always walking around the place, making sure things are cool with ALL of his customers. Seriously, all of them. The guy kind of reminded me of Eugene Levy from the original vacation movie. I almost expected him to try and sell me a Metallic P. Anyway, the guy was cool as hell. Making sure everything was good with our food and drinks.\n\nNow the drinks... Wow. They don't cheap out on the pour with these bastards, and they are not overpriced for what you get. I have no complaints about the strength of these things, and that is always my first test if a bar is worth a shit. if you own a bar and I have talked shit about the strength of your drinks, I invite you to go to sign of the whale. I practically challenge you, like we should meet at the flag pole after school challenge you. Let them show you what having a dick is like and how a drink should poured. I hooked the bartender up on the tip, he deserved it. I would go as far to say that I would almost take a bullet for that guy. If I had a vagina, I would probably offer to father his children. Well, that isn't true. If I had a vagina, I would spend all day looking at it in the mirrior, but you understand what I am getting at. You are as sexy as a Ferrari, good sir.\n\nThe food... Damn. Goddamn. Who the hell is the cook there, Emeril?Only had appetizers because they were on the cheap but between three of us we had 4 orders of appetizers and left full. And I am fat. Not quite Paul Blart Mall cop, but more of a Corey Haim 2007 era. \n\nRegardless, want a great place without giving you any shit and keeping you drunk for less, hit this place up. It is like a high priced hooker for half off, you can't go wrong. The only gripe I have about this place is they seem to be a Green Bay Fudgepackers bar, but I guess no one is perfect!\n\nHit this bitch up.", "type": "review", "business_id": "1f_DXcxpAKfILKK6cDPLxQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "TWHcWgTz_2f_U1_FXV-OJA", "stars": 4, "date": "2010-01-22", "text": "4 stars because they don't take credit cards. Really? In this day and age? Yogurt and shakes were good, but not the best I've ever had, but a solid 4 stars.", "type": "review", "business_id": "7UAAkWZJnnHIpGdG0JfXqg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ZXCIIPlnGZtnjPacI1Nz2g", "review_id": "UM1pkMuqEB8sRFYbrbWjQw", "stars": 5, "date": "2012-12-04", "text": "TIP #1 to Mesa-Gateway fliers: This is the ONLY bar at the airport, so live it-love it. \nFood is great. The burgers can be made low-carb - especially great this gurl! \nTIP #2: Food can be ordered to go...", "type": "review", "business_id": "_jbeTDw6XSuvLaR1V_z8jw"} +{"votes": {"funny": 2, "useful": 9, "cool": 11}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "A-drtNIHmzknlD825OhCdQ", "stars": 4, "date": "2007-05-24", "text": "While doing a bicycle ride to the Orange Table, I pointed to a friend that LuLus Cupcakes was accessbile from our bike path. She immediately exclaimed- \"we are SO there tomorrow!\"\n\nToday, I get a phone call at 4pm, saying she is picking me up to go get those damn cupcakes. She was serious! Since I had off and she got off early, we were able to visit the holy mecca of cupcake land. She picked me up in what may be one of the most ridiculous blue convertables known to man and we zoomed up to Scottsdale, blasting bad hip hop, psyched about individual iced cakes!\n\nUpon arrival, the space was sparse and very IKEA-ish. Pinks and lime greens dominate the palate. To the right of the counter was t-shirts, rubber duckies and other merch. They do have a brown with orange stripes guy shirt...in XL. I guess big men love cupcakes!\n\nBut the real star are the cupcakes themselves...lovingly displayed under glass domes. Carrot cakes, german chocolate cake, mocha chocolate cake, blonde (vanilla on vanilla), chocolate on vanilla, and the special of the day key lime....oh man. MERCY. I kept dodging between the carrot and the mocha and went for the Mocha. All natural ingrediants and VEGAN sprinkles! (But very much all dairy icings, btw). Our lady, I think Melissa, was super helpful and even offered samplings of cupcakes to help us decide. She put each individual cupcake in a plastic bubble and in a cute lime green/pink dotted bag. She noted they do have mini cupcakes for events (OMG) and I would totally splurge for those suckers. \n\nThe only real negative (besides times..I mean if this place was open late, it would be HEAVEN) was the lack of drink choices. Coffee, milk or water. Um..I mean, I dont knew a bazillion options, but even tea would have been nice. I chose hot coffee which was fine. But iced coffee as an option would have been kick ass...or lime rickeys! OMG!\n\nAs an FYI, you can leave the strip mall complex and head down to the park and eat your delectables under a shaded tree on a park bench over looking a \"pond\" like we did. I savoured my 2.95 cupcake, and the icing and cake was perfect. I cant even describe how yummy it was. It was worth every cent. And they arent gigantic, so you feel perfectly satisfied with your cupcake.\n\n100% Natural, 100% Naughty is their logo...LOVE IT!", "type": "review", "business_id": "IKDPP8onhaxbM12drBWCKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W-W3uyV66alw5FJWFytqKw", "review_id": "csY87g-hqeBxwWhYsUMX1w", "stars": 5, "date": "2012-06-05", "text": "Truly a great owner who cares about his customers! I highly recommend a visit if you like one of a kind, quality pieces....young, yet classic, tasteful, yet funky. \n\n\n\n\n\n\"", "type": "review", "business_id": "OVGz4ljvfIslSFwgDEpw-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7jWH31u9tWQUeNAWnwakkg", "review_id": "RNW4dm1ORvpp1i1akmwjlA", "stars": 4, "date": "2009-07-01", "text": "This is my second time in Chandler for work, and I've been here about four times. I've basically come here every day during my visits. It's a great place to have a casual meal and get some more work done. I like the food and the friendly service, and also refuse to pay for the wireless in my hotel room (even though my employer would reimburse me for it). Plus, I like the relaxed, community-esque feel of this place.\n\nAs for the food, I'd recommend the Tuscan Chicken sandwich - the Ciabatta bread it comes on is really quite delicious, but make sure it's fresh. salads are simple, but pretty good, and everything tastes fresh. The chocolate chip cookies are to-die-for. \n\nThe people who work here are very friendly. One guy was particularly helpful and helped me as I contemplated for about five minutes what I should get. He then came to check how my food was, even though this is a self-service type of place. \n\nI would not recommend the half-sandwich half-salad combo if you're really hungry. Somehow a whole sandwich seemed more filling to me.\n\nEven though I avoid chain restaurants, I really like this one! Maybe it's because we don't have one in Northern California, so it still makes me feel like this is \"something different\".", "type": "review", "business_id": "ElqD819zpmOryvsLuzv-Mw"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "2qKgObPOV1kDl6U08Mjxyg", "review_id": "wtoqflE7K4XIx5njgt73EQ", "stars": 5, "date": "2009-07-22", "text": "I'm so in love with this place :) I tried the pepperoni pizza and I was AMAZED. i love that they have a fresh herb/vegetable garden in the front. It's all about the FRESH ingredients these days. I can't wait to go back and try different dishes. I'd like to try the cheese platters :) mouth watering as we speak. going again to day so I'll keep adding to this review. STAY TUNED! BTW, the decor reminds me of the VIG but definitely more spacious dining area.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sMIOqXFpm6XuBlaokNdpAA", "review_id": "KdZs2KdlfU8nEUa6GHdKEQ", "stars": 1, "date": "2010-10-08", "text": "This place was just... okay. First I'd like to say that my bridal consultant (don't remember her name - sorry) was really nice and helpful. But to me most of the other saleswomen had \"desperation\" all over their faces (don't know if they work off of commission, or if the higher ups are just slave laborers, or what, but I'm sure some of them would've killed for a sale). I found a few dresses I liked, but they were way too high pressure for me to be able to make a solid decision on the spot, so I decided to wait on it. I ended up finding a dress I liked better for about 1/3 of the price somewhere else. I notified David's Bridal \"thanks but no thanks\" about 6 months ago. To this day I still get calls to my cell phone asking me to \"come back in and try on the dress\"... they're like the telemarketers of the bridal world! So annoying. Plus their accessories are so expensive, and very cookie cutter. I'd go somewhere else, unless you're new to this and need some ideas.", "type": "review", "business_id": "Qxeh_4jjc9GfY5kSA8qwQA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "fNfLXX_ce2TQPrdHCqPzZQ", "review_id": "fAk-2RT5xat9MobuV-t_Aw", "stars": 4, "date": "2012-03-20", "text": "took mom here for a visit on friday. overall I like queen creek olive mill. I like that you can enjoy a meal or snack outside. I like the stuffed olives and even though i didn't do the tour this time, i think that it is a great idea. so, i have to say in general I'm a fan. \n\nwith that said.... mom and I had lunch already but the food I did see did not look promising but we did enjoy two small gelatos ( $5.00). I wish they offered some complimentary bread to sample the olive oils with. Its a little difficult to find but very cute place to take your mom or friend or anyone who likes olive oil!", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "ku6t_n29OWH87mddUeTLzA", "stars": 4, "date": "2007-09-02", "text": "Food? Awesome. Service? Sufficient. Layout? Not the best.\n\nWe stopped into Chompie's this past Friday morning on our way out of town for the long weekend. My husband and I have this obsession with breakfast bagels - in particular, breakfast bagels from one amazing joint that makes the absolute best breakfast bagel EVER in our college's hometown. We are always searching for a place as good as Bodo's...well, even 3/4 as good as Bodo's would do...and we never find it. Bodo's is about the most efficient bagel store on Earth (literally the line of 40-50 people is serviced in 10 minutes) and cheap, too!\n\nSo, we decided to give Chompie's a whirl. I don't love the location - like everything else in Arizona, it is tucked into a strip mall. However, there was enough parking and we found it just fine. When you walk in, you're a bit confused as to where to go. Then you realize if you want to eat a full service sit down meal, head to the left - we didn't want to do this, but the food that I was eyeing from afar looked good. To the right is their bakery, which has some pretty appetizing cakes, cookies and desserts. Then there is this counter where you deduce that you order \"to go\" meals. We were overwhelmed by the menu but managed to pull ourselves together in time to order. We both had that initial panic attack of \"oh crap, I have never been here and the menu is longer than a 5 year old's Christmas list and I don't even know where to start because suddenly I feel like I can't even read English.\" Deep breath. It's not actually that overwhelming, just a tad unorganized. After ordering, we were instructed to walk all the way across the bakery to a random counter to pay. It was so random the way they had it set up, but we did as we were told and then we waited.\n\nMy husband's sandwich took a while to make....again, I don't know how Bodo's does it, but Chompie's is probably 4 times slower. Or is it more appropriate to say that Bodo's is 4 times as fast? Whatever. Either way, Bodo's has the breakfast bagel process down perfectly. Waiting was fine, though...we weren't in a rush. When my husband's warm sandwich was finally ready, we got our stuff and then headed outside (there is nowhere to eat inside if you don't want to have a full service meal, which is one complaint I would make about this place). Who wants to eat their bagel outside when it's pushing 110 degrees? Not me. Even if I am under a strip mall canopy that provides some shade.\n\nAnyway, his sandwich was actually really tasty - warm and fresh and really yummy. My bagel was not toasted, which I had requested, which was slightly annoying. However, the bagel itself was very good. We will definitely be back for the food, and I totally recommend this place for grabbing some freshly baked bagels or desserts or whatever. They do have a deli counter as well (meats, cheese, etc). Our breakfast was less than $8 without drinks - fair enough.\n\nI just wish that the layout were a little better and that it was more efficient. I also wish I could have eaten inside. Next time we will likely just do the full service thing.\n\nIn the end, it seems that nothing will ever compare to our beloved Bodo's in Charlottesville, Virginia.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cGnaft9JhI10HUQdtHGvRQ", "review_id": "xrhUrlpNKIaAAOYcjHm2Eg", "stars": 5, "date": "2011-04-18", "text": "Tried this restaurant with a groupon. Probably would not have, if I didn't have the coupon. Don't let the storefront and decor stop you from going in. The restaurant is super clean and the wait staff is very friendly. And the food, WOW! We split the Shrimp Ceviche and the combination pupusa plate. The portions were very generous. I ordered the fruit drink. Everything was absolutely delicious. One of my new favorite restaurants . Will definitely be back.", "type": "review", "business_id": "vxPPpj5jJKO8DtapF5S-NQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mfo2amL38pGTX2jnFjddNQ", "review_id": "Gsft6Er8iVtf-3Ihnf1J0A", "stars": 3, "date": "2011-03-17", "text": "Needed to kill some time before catching our flight home and decided to check out Old Town Scottsdale. After walking around the tourist trap shops we decided to stop at RnR for lunch. It was pretty busy for a Thursday afternoon, but then again it was St. Pats day, and spring training was nearby.\n\nInside and outside the restaurant there were plenty of TVs going with the latest March Madness games. It did take a little longer than expected to be helped once we were seated, but after that everything else was fine, the staff was very friendly and welcoming.\n\nI had the seared ahi tacos. The portions were a little small (although I guess it was under the small platter section), but they were still very tasty.\n\nIf yelp offered it, I would give RnR 3.5 stars. It's not somewhere I would go out of my way to visit, but I would suggest it to a friend, and if the opportunity presented itself, I would go again.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "jI5LBKOabmKVqnOhkF_1iw", "stars": 4, "date": "2008-05-01", "text": "I really like this store. The customer service is great. I wish it weren't so expensive but I guess you get what you pay for.", "type": "review", "business_id": "e1TRaM2GZq8qBFogZaNklw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bIZiqk9KkgrnVizFB5feLA", "review_id": "8u2AsQlHNgNqNICRjbSqkg", "stars": 5, "date": "2012-11-02", "text": "Intense!", "type": "review", "business_id": "saiTvSpVRktGqgt1f4dQIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HnlVxMJUFt0senwi9mYzuA", "review_id": "Q3rDTDjzP5U9mrAMFiIVXQ", "stars": 4, "date": "2012-01-03", "text": "Very much my kind of a place, it reminded me of the places in Europe/Berlin that I loved so much. Its like a house setting & on the days that we went they had a live band playing great fusion stuff in the back rooms. Their Beer collection is amazing of course, one of the few places in Phoenix with such a huge beer collection.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "-jHdb0efMa4_1HQ7uapeDQ", "review_id": "mVfMb5E3B9HyMvNVFra3jQ", "stars": 4, "date": "2011-02-08", "text": "We stopped in for a snack between lunch and dinner and luckily caught some great HH specials! The restaurant was virtually empty on a Friday around 3pm, but I didn't mind much as we were in a hurry. We sat at the sushi bar and enjoyed the company of the chef. \n\nThe service was a little bit rock to start off as I think 3 different people tried to take our order, but once it got rolling- we were good to go. \n\nI had some Sea Bass Nigiri ($3 for 2 pieces), Spicy Tuna Roll ($3-4), Edamame ($1.50), and a wonderful house salad topped with sliced pears and a delicious house dressing ($3). The fish was all very fresh and clean tasting, but the salad was honestly my favorite!", "type": "review", "business_id": "xCryT3Vzk_RLIkhiuUJwjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TMVr4sJ1yAQoaR4h_C_C7g", "review_id": "tP5Wacl3_ar3qUH6a2UlDw", "stars": 1, "date": "2012-08-16", "text": "I really wish I had a dagger to stab myself in the face for trying to eating here. Absolutely the WORST PLACE in the entire valley. I would turn around and go ask for my money back but I am to embarrassed to even be seen in the drive through again. \n\nWas on my way home, thought I would give it a shot. I ordered random items; chicken taco and onion rings. The taco was like eating out of a horse trough.. It fell apart immediately and I found myself trying to shovel it into my mouth. After about two bites I realized the meat was questionably chicken. The onion rings were so blah I didn't even touch them. \n\nPlease do your self a favor.. Dig in the nearest dumpster for lunch, then go home and pound a bottle of vegetable oil. It sure beats the hell out of this joint. No joke.", "type": "review", "business_id": "mTjHcl-pkNO4iOKY8rVHPw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lPrPvEaQYEzS30Fzgra37A", "review_id": "0sW_a6lWGUe1QrzRaWCFDQ", "stars": 5, "date": "2012-12-17", "text": "A great little spot to find! Fresh, Fresh, Fresh Sushi and great eats! Be sure to try the green bean appetizer!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "Pm6FSpKiZ_kFk4c3ZFpufw", "review_id": "TpHS4UoCZJKZp5OUd45xuA", "stars": 1, "date": "2012-01-30", "text": "We had read good things about Over Easy, and were excited to try it out. We went a few days after Christmas, and were horribly disappointed.\n\nWhen we walked in, we were seated by one server. Then, a few minutes later, another host came up to us and asked why we stole a table and did we not understand how seating works? We were quite confused and offended, as we were seated properly and had done nothing wrong.\n\nThen, once we ordered, we waited over 45 minutes for our food. Finally, we asked about it, and then it was out within a few minutes. They had completely lost our order.\n\nWhen our food arrived, one dish (the Over Easy -- toasted brioche with spinach & an egg) was absolutely inedible. The brioche was so burnt that we could barely cut it, as was the bacon. The fried egg was very undercooked, even though we requested it completely cooked through. I was honestly shocked the server brought us the dish without saying anything, since it was clearly burnt.\n\nThe other 2 dishes (banana & pecan french toast, and the Loretta sandwich) were just alright -- certainly nothing to rave about. And, the 3 of us ended up splitting these 2 dishes, since the other dish was awful. We ended up leaving early because we were all so disappointed. At which point, our server asked if we'd like a box for our uneaten burnt brioche. It would have been much more appropriate for her to ask if there was something wrong with it, since it was obviously not eaten.\n\nAnyway, I'm not sure if we just caught them on a bad day, but I would never go back again or recommend Over Easy to anyone else.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "ilhtlvEAm_RMiToARqaXmw", "stars": 4, "date": "2010-02-15", "text": "I like this Sam's. I get my eye exams/contacts/glasses here and some groceries. It's almost always pretty dead and therefore easy to get in and out quickly and easily. They don't have nearly the selection that most Costco do, but I've never waited in line here.", "type": "review", "business_id": "60j3t0ptHJBTW9RXVl1Dhg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "oguZELseKCGWBFUjjH4CqQ", "review_id": "_MPtSZu8Y-YuuPRSsd-AkQ", "stars": 5, "date": "2012-08-09", "text": "This is place IS Beer Heaven! Over 100+ taps of amazing beers! This is the ONLY place I will purchase [several] beers at full price, not on happy hour. \nAmazing thing #2 ~ (for the girls) they have a \"shorty\" glass which is a 9oz glass instead of 12oz, it is a beautiful thing! Now I can order two different kinds of beer without getting overly full (er bloated), instead of the two big 12oz glasses! \nAmazing thing #3 ~ The food is delish!!! My boyfriend and I split a burger. Bad idea. It was so good we really didnt want to share it afterall ;)\nAmazing thing #4 ~ The staff are awesome! There are several staff behind the bar and ALL are happy and willing to help you if your initial server is MIA. They are very attentive, friendly and helpful if you can't decide :) \nAmazing thing #5 ~ The atmosphere is awesome and the music they play is great!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "QVe4g612ZZWvPTIkcOHYaQ", "stars": 4, "date": "2011-11-29", "text": "So we decided to come back and give this place another try and it was a lot better than our first experience! We had the fondue first, which was more than enough for 2 people to share. I had the chicago dog, again and my bf had a hamburger. The service was awesome and our waitress made sure we had more than enough wine! Looks like Windsor has been ironing out their kinks and really making it into a cool, fun space to hang out and eat!", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "duTeTiNX__zYcznMX5CgMw", "review_id": "Sg7qt8FX_QrtqoC9guw5Ew", "stars": 2, "date": "2009-12-12", "text": "Roads are good\nService not so good\n\nThis place is a tourist trap in every sense of the word. The restaurant and gift shop are overpriced for what you get and the ice cream isn't anything special. Service from the staff needs to be a lot better and treat the customers like you want them there. Always understaffed always waiting on food. Been there a half dozen time no improvement.\n\nDo come to the area for the beautiful views, not for the food or souvenirs. Great road for motorcycles ride.\n\nDuring the summer outdoor cooking.", "type": "review", "business_id": "wSNe7xnQ0OvJ1UTLjikJeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RHWm_duEdCgWwtN1fBUkHA", "review_id": "375FZOmt26F1U2CS1bz93Q", "stars": 5, "date": "2009-08-25", "text": "As far as fast Japanese food at lunch this is as good as it gets. They have a different Bento Box lunch special everyday. The box comes with plenty to eat, including Miso Soup which arrives shortly after ordering. The meal includes sushi, salad, rice, chicken (teriyaki or such), gyoza, some type of fried fish and an orange. For about $8-$10 it's hard to find a better deal. I would highly recommend CherryBlossom for those looking for a Japanese meal. It is small, quiet and a little hard to see from the street, which makes it a unique place with low traffic, but high quality.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "XHgeUEDhZeGyMepUB4ANLQ", "review_id": "tvBJH2ZKlHxdF4JWe0f3FA", "stars": 3, "date": "2009-08-07", "text": "I've eaten here one time, and I enjoyed a very decent meal. I'm not really sure if I'll go back though, and I'll tell you why. The place kind of gave me a strange vibe:\n\n-It didn't *feel* like a restaurant, it almost felt like a business that had turned into a restaurant.\n\n-The take-out menu/brochure was worded pretty peculiarly in places.\n\n-This one's hard to explain, but I sort of sensed some very subtle yet unsettling religious undertones throughout the whole experience.\n\nHad the China wrap. It was kinda good, even if it did taste like homemade American teriyaki. In a spinach tortilla. With a side of yogurt. --*sigh* Do you see what I mean? A funny vibe. I can't quite shake it. Maybe I'll give it one more chance.", "type": "review", "business_id": "Jd5sLVzE_p_LfJMBmbOhSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NWEKM2JBpPCtvGtIsRAgMw", "review_id": "vORvL230ao0qnbL390tH_w", "stars": 5, "date": "2011-04-28", "text": "I frequent RnR quite a bit for happy hour. I've been here tons of times since I moved to AZ. Definetly one of the best happy hours in old town. Happy hour from 4-7 LOVE IT (I get mad when places are 3-6- who gets off work that early??). And pretty every drink is on special during happy hour. Really cheap wine, beer, and liquor. \nYa their food isn't orgasm AMAZING but it's pretty good. I've havn't disliked anything I've tried there. \nI love the atmosphere and outdoor patio on both levels.\nI've been for breakfast too and the bottomless mimosas are wonderful. They keep em coming. The food is good breakfast food. \nI take family/friends from out of town here for happy hours.\nI love this place I don't get what the hate is about!", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uEWCVUTKLQ1ee444lCJ6ew", "review_id": "A3qBpfL5pjkYUYAzSePddQ", "stars": 5, "date": "2011-05-03", "text": "Nice casita that can sleep 6 for $99, plus free breakfast. What a deal. Service was excellent but the catered food was TERRIBLE!", "type": "review", "business_id": "Hgl5RjvLS_Yc8cqdw9uaOA"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "Y7UIAoAOd8BSLIO08jjJZA", "stars": 3, "date": "2008-12-16", "text": "I had a hard time even giving this place the third star. I had high hopes as I watched this place go through renovations during the past 3 years. We were there on opening night and fell in love with the decor. The place was stylish and cool. Concrete, leather, glass...very retro-modern. The people who refurbished and redesigned this place deserve five stars.\n\nThe people who work there, however, deserve one. \n\nOn opening night, I forgave the delay in service. I forgave the nasty arugula on my panino. I forgave the store-bought peperoni. Mostly, I forgave them because the onion straws were so good.\n\nWe went back a few nights later after being fleeced for $40 in return for table scraps at Sens. It took almost twenty minutes to order two pizzas and onion straws. Then, the pizzas came out before the onion straws. How do you cook pizza faster than deep frying an onion? The waiter lingered around the female members of our party and were just incompetent. \n\nWe finally went again after a night of drinking at the Clarendon. What a buzz kill. Not only was it too dark and the music was too loud but, again, the service was slow and dull. Then, the waitress got into an argument about the ingredients of the pizza with our group. Big no-no.\n\nI've had multiple people tell me that service is fine as long as you order from the bar. They say, just get up and go tell the bar tender what you want. Why should I have to do all of the work? How is it that they have ASU students at their disposal in a terrible economy and can't hire any decent waiters?\n\nFrom now on, I'm only going after a game when I want some onions and a Moretti.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8Fsd4yro0ymNLkkX0QyUOw", "review_id": "clNBE8mJlv6VwhG9r7j8Lw", "stars": 5, "date": "2012-08-24", "text": "I have had a couple of peels at A-Peeling Faces and they were the best I've ever had! They are not only very reasonable priced, but Darla Salem really knows her stuff. My skin has never looked better! I am very pleased.", "type": "review", "business_id": "ZwGYcfEZFUIHGti_7zpJPw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "j1kH6G4kj-8NRG4AiktFfg", "review_id": "5_WgMt1kinTHGHhIpyerDA", "stars": 4, "date": "2011-08-22", "text": "Wow. What a difference. I came here last year and was disgusted. Being German and moving to the USA as an adult I know how German food should taste like and this was an embarrassed. \nSince this place was still better than the other German place (Black Forest) we decided to try it again. What a pleasant surprise. The food was very tasty. \nSo I realized why the change...they now actually have a German chef instead of a non German chef which they had for years. Also, the staff was very friendly and attentive and prices were great. The only reason I gave 4 instead of five stars is b/c they did not offer a choice between soup or salad and just served Egg Drop Soup which was ok; however, on a hot summer evening I would have preferred a choice. What an improvement! We will be back.", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "lkV_WCqCbpA5gUIHD6wtOw", "review_id": "Ym0IMHvfOBJ3ZqmziTiNYA", "stars": 4, "date": "2008-10-19", "text": "Here is a place that we love to go with the family...We tend to remortgage the house ever time we visit but hey with the current economic crisis who doesn't???\n\nIt was a place we went all the time but lately not as often, not because the food isn't excellent but because it is quite pricey. \n\nThe service is great, Hudson the manager is great, very friendly and always comes to say hello. He knows us by name and enjoys our friendly banter.\n\nThe pizza is VERY fresh, the place is always immaculate and I've never had a problem with the food. If you are looking for great pizza this is the place, if you are looking for cheap well I'm afraid it isn't. \n\nThey do have a frequent stamp program and using that will save you a few bucks in the long run.", "type": "review", "business_id": "MagW3D2UDQaP6KHzhauUHw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ESrdXpT1yF7KZX52bPpnJg", "review_id": "rgcAxnDTJpitZal3Zifc_g", "stars": 2, "date": "2012-05-19", "text": "\"Meh. I've experienced better\" pretty much sums up my experience here tonight.\n \nI have a sneaking suspicion that this is the go-to sushi place for people who either\n A) don't know anything about good sushi or\n B) have no taste buds and money burning a hole in their pocket\n\nI didn't really know what to expect from this place before we arrived. I'd never heard of it before and the only reason we agreed to go was because it was close to my boyfriends house and our friend said it was pretty reasonable in price and quality of food.\nMy boyfriend and I arrived before our friends and we walked to in an almost completely deserted restaurant. There was some really bad techno remixes of popular songs playing in the background and an episode of Dr. Phil on the television. I sat down in one of their ridiculously tall bar chairs while my boyfriend went to grab us a menu we could look over while waiting for our friends to arrive. \nMost. Uncomfortable. Chairs. Ever! \nI couldn't have been sitting in it longer than a couple of mins before I had to get up out of it. The seat had an aluminum bar or something all the way around it that dug into my leg after sitting down. It's hard to describe how or why they were so uncomfortable, but if you've been here before you know what I mean. They clearly chose these chairs based on aesthetics alone. \nAnyway, our friends arrived and we all ordered our food. I decided on getting the ultimate salmon roll and I believe it was called the sun roll. I could be wrong on the name of that second one but it was something close to that. My boyfriend got a couple rolls and we decided to share a plate of tuna sashimi. For the 2 rolls I ordered and the plate of sashimi it was almost $40. My boyfriend got the sunshine roll and a las vegas roll. Those two rolls plus a drink was more than $20. So all together we spent more than $60. I love sushi. I would be more than happy to pay those prices for a plate of delicious fish. But what came out was not what I was expecting for the price we paid. \nMy rolls were pretty, but they were almost inedible. I pretty much choked down the ultimate sushi roll. 2 or 3 pieces into eating it I debated wether or not it was worth finishing. The little tiny bit of smoked salmon that was inside was dry and I could barely taste the fresh salmon that was conservatively layered on top. I moved onto the whatever-sun roll and that was a little bit better but it was still lacking in flavor and texture. The sashimi was just awful. It didn't taste like fish, it almost didn't taste like anything, and the texture of it was really weird. It was almost chewy. My boyfriend and I have been known to just down entire plates of sashimi in less than a min or two, but after one piece he called it quits and it took me the entire rest of our time in the restaurant to finish the plate.\nThe staff was pretty nice, I mean they weren't going out of their way to be pleasant with us but they weren't rude either. \nAll together I'd say this visit and the food was a total failure. I feel like this place's only saving grace is that it's clean and it's in a pretty convenient location. I would have liked to give this place another shot and try another couple of rolls before writing my review, but I was REALLY disappointed with the \"food\" (I am having a hard time even using that word because it was barely edible) I ordered. It wasn't the worst sushi in the world, but it wasn't anywhere near the best. And with the prices they're charging for these lack-luster rolls, I really don't see myself ever coming back here again.", "type": "review", "business_id": "rwQIBAM_kHtVl1Ks8Flexw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "aveRNR45cX_9CdIc0XtLUA", "review_id": "nsnGyJSRUFAx0crXgc3Yag", "stars": 5, "date": "2012-10-22", "text": "Had a fantastic experience! Hernan, our server was excellent. Knowledgable and charming. The food was fantastic. The chefs selection meat and cheese tray was insane. Crazy flavor. Well done!", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ftA5q-OQotBkm8cyKvKtBA", "review_id": "zmePdIzufdaq_Gt1G_GBLw", "stars": 4, "date": "2010-06-05", "text": "We eat at My Thai about twice a month. Sometimes we do carry out and other times we eat at the restaurant. There is usually the same couple of waitstaff there. And we are always treated very, very well. We usually have a lot of food modifications as well....like no sugar, completely vegetarian with no oyster sauce, fish sauce, etc, and VERY spicy. They always accommodate us and always get it right. While this restaurant doesn't have anything specific for kids, they have a nice attitude towards kids and are friendly. My 4 year old likes coming here and will often ask to go to My Thai.\n\nThe only reason I don't give this restaurant a 5 star rating is because I wish they could do some local sourcing for the food and/or organic.", "type": "review", "business_id": "le1VmOg0-REuXCFr_FeG0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lk9OBp3_I00LaSU_JXktTA", "review_id": "JPgmUy5n7lV8d0L18ULZ3w", "stars": 5, "date": "2012-10-20", "text": "Oh my goodness, Hank is awesome! We've had nothing but problems with landscapers and we finally found someone we'll be sticking with. Hank is very professional, knowledgeable, responsive, prompt, communicates thoroughly and is very reasonable. And by the way...he's actually there doing the work! Trust me, we've gone through them all and I had almost given up hope. Hank has been better than expected - we almost don't want to tell anyone so he doesn't get too busy for us! :)", "type": "review", "business_id": "wHUXiN4lnhRReWy2905UZA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cDQvCXmEVd311heTrERtaQ", "review_id": "SnNSgYttb-4_iwxleiWwHA", "stars": 4, "date": "2011-03-22", "text": "My friends and I were in Arizona for Dodgers' spring training a few weeks ago and were at the mercy of Yelp for finding things to keep us busy at night. After talking to a few of the bartenders at Bobby C's Lounge (LOVE THIS PLACE), which we found on Yelp, they told us about Char's. On a Sunday night, Char's had live music and a packed dance floor. With an awesome mix of Old School Funk, Reggae, Classic Rock, and even a little Santana action, the live band was ON POINT! We were singing and dancing to every song! The crowd was fairly diverse and everyone was friendly. I could definitely see this as a relaxing place to go after a long day, where you don't necessarily have to wear \"club attire\" to fit in. The vibe was very chill and the drinks were great. I'll definitely be coming to Char's the next time I'm in town. \n\nGO DODGERS! :)", "type": "review", "business_id": "ybXlbfOjrKDdz5NoC-G9Gw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "qKlJD43nB9fKaZEkMqiJQQ", "review_id": "ivYOWSI8f47UgibT0NQC8Q", "stars": 5, "date": "2009-09-03", "text": "Some of the best pizza I've had in Phoenix. I prefer to get takeout since the inside is a little...eh... but who cares if the food's good! I love the crust, crispy and slightly chewy. The pizza can be a little greasy sometimes (but hey, it's pizza), but as long as it doesn't soak through and make the crust all flimsy (which has never happened with the pizzas I get here!) it's nothing that a paper towel or two can't fix! I'm not a big wing person but my dad has had them and he says they're pretty good.\n\nThe staff has always been super-friendly, and they actually remember me, even though I only come in once every couple months!", "type": "review", "business_id": "5ErKAS0rHOfU33CYjDh2Aw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "lmaLHsoFbmSZLr45VEMjPQ", "stars": 5, "date": "2012-05-23", "text": "Los Olivos is a Scottsdale institution and I won't hear a word against them. Especially not when I have a few margaritas in me. They take good care of regulars, especially at Happy Hour. The chips and salsa are delicious and they keep them coming. I recommend the mini menu, they are a great way to sample stuff if you like to try a lot of different things, but my favorite meal is definitely the Chicken Poblano. Mmm, so good! The shrimp chimi is also fantastic. I never leave without feeling totally stuffed.", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5BpuzOKArniNYV3kpK4eiQ", "review_id": "a4F9muXMSVqwyhGbdH6pZg", "stars": 4, "date": "2011-05-26", "text": "I really like this place! I was surprised to see the other rating with one star. I have been 3 times in the last 2 months- always for lunch and ordered off the menu. The restaurant itself is clean and neat, and our food has always been fresh, hot and yes, \"simple\"- but really good. You don't feel overly full (take the rest to go) and it's not greasy or heavy. Good stuff.", "type": "review", "business_id": "9PrgqakLyqlxTTqvvfYNyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Asoc6yhjA6ijlLJjcI5ZCQ", "review_id": "zRTaR2DDRZSLVCj6cxjwoA", "stars": 4, "date": "2011-10-15", "text": "Great menu selection, food is hot and fresh and you can't beat the prices!", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "TFI0Ew5F_9x6LKN8Xp5Igg", "review_id": "Nr2U5gW1yLEK1qD_58b5UA", "stars": 2, "date": "2009-03-22", "text": "Would normally give this place 4 stars as I have been a regular here for about a year. Cheap drinks, great crowd and great music. Except I had my first bad experience here the other sunday. Granted, me and all the other people from my work were pretty loud after a sunday afternoon spring training game. Maybe it was the girls being a little too giggly or us just having too much fun for a dive bar...but I think none of that warrants the bartender calling us cheap and rude. Come on now, we are all servers and we all tipped you well. Whats with the attitude? Will still continue to come to this place once I stave off the embarrassment of telling people from work I know about this cool bar only to be so rudely treated by a way too snobby for a sunday afternoon bartender.", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "w2-LYY74W16RXCUYJa86MQ", "review_id": "yr3lgTX7MTJD2krxL5UXMg", "stars": 2, "date": "2009-10-04", "text": "Meh is right. This place was a big yawn for me...\n\nI went with a group of 5 (well, 4 adults, one kiddo). This is another one of those places that tries to be fancy and pretty much sucks -- for the price and portion size anyway. We ordered beef stew, chorizo stuffed dates, halibut, cheeze sticks, chicken and white cheddar waffles, and some beers. \n\nFirst on the beers... They have Four Peaks 8th Street on tap (privately labeled as Tucks Ale or something like that) and I was happy to see this -- I love this beer. However, halfway into my meal my glass was dry and it sat that way for a good 10 minutes. If you've read any of my other yelps, you know I expect a refill promptly, especially if you expect me for forget your marginal service and mediocre food... \n\nWhen the waitress came around, she asked if I wanted another beer, I said yes. Another 10 minutes went by, me parched, growing annoyed... When she came around again it was clear she forgot all about me, then asked one of my friends if they wanted another beer -- I assertively said YES. She looked at me and proclaimed her sorrow, said it would be right up. Another 10 minutes go by, she swings by and apologizes that they had to change the keg. I understand that -- but between the FIRST and second time I asked, I watched the bartender pour another 4 or 5 8th Streets. But I didn't get one.\n\nAs for the food? Super duper BLAND. Come on Tuck's! Fancy (read expensive) food should be an explosion of complex flavor in my mouth. If I have to put table salt and pepper on it just to taste something, you pretty much suck. If we pay $30+ per person and I leave hungry, you pretty much suck. The fried chicken was pretty good, but I've had the same quality stuff from the deli at Safeway.\n\nOverall, not impressed and see no reason to return. If you're taking a girl out on a first date who is more into atmosphere than food -- she'll probably think you are the man. But really, do you want a girl like that?", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aAQYtxiPJsmfKtqw8m56Lw", "review_id": "yaAp8IkVV0O8ixggea6TRw", "stars": 5, "date": "2011-02-01", "text": "I finally found a reasonably priced salon and a stylist who understands what I want. Very happy with the service. Also, the waxing lady is very nice...I think her name is Maria, does good eyebrows. Only downside is that sometimes it is hard to get an appointment on short notice...but that's my fault for waiting until I can't stand it anymore to get my hair cut.", "type": "review", "business_id": "y2CMEHwaKWz5RMUC_pcT0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ORXwvQ6F-sKggNz0PShkdA", "review_id": "6t93tUbHAeidQZIuh1RR6w", "stars": 5, "date": "2011-11-17", "text": "One of a kind place to experience all senses!! Food was great, service was great, AND they have a Moroccan Healer on staff. Ask to taste the Moroccan Black Stone (not on normal menu). I won't spoil how it makes you feel, but trust me when I say you will enjoy yourself! ;)", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "N4BnjZFAuuAUTjxs93SYlg", "review_id": "exQCBMA4c83PtQAiGS0-sA", "stars": 4, "date": "2013-01-02", "text": "Little Chicago Pizza is the best thin-crust pizza I think I've ever had. The restaurant is small, as they probably do most of their business carry-out or delivery. We did eat in one time, and someone came right out from the kitchen to serve us, even filling our water cups from the soda fountain that was perfectly accessible for us to do ourselves. Anywhere else I'd have expected a snotty \"the water is right there\" rather than real service. Everybody is very friendly, even when on the phone taking orders. Price is comparable to any other pizza spot around, but the pizza itself, if you like thin-crust, is just awesome. Add in the great service and you have a solid pizza place for the south Scottsdale area.", "type": "review", "business_id": "PJEJS5rNMRrIBVQDuU9qoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cBJqlNzyoJFak3_XRe2bvw", "review_id": "RA0syYhq9A0YV88NtnvjvQ", "stars": 3, "date": "2012-01-10", "text": "I've been to Bookman's a few times and have mixed feelings about it. If you're going just to look around, it's fun to see all the stuff they have in there. Between the movie selection, CD's, books and trinkets, it was fun to shop around. But, as someone interested in selling to them, I would never do that again. I brought in a huge selection of books I was interested in selling and they only took 4 of the books and offered me a few measely dollars. I was shocked. I understand they need to make a profit but I wasn't even getting $1 for each book they wanted. A total rip off if you ask me and a waste of time waiting for them to look through my stuff. I'm not sure if I will be returning anytime soon.", "type": "review", "business_id": "L9N4loWpY2bmQumLUv8r3A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B257Qcn1gRmsAOr4eM7w_Q", "review_id": "hiB6Plk6AN9S1j0YlFWZXg", "stars": 5, "date": "2011-09-16", "text": "This place is absolutely amazing. If you are looking for a quick sweet treat this is the place to go. It a little hole-in-the-wall looking place, but once you take a bite into one of their homemade ice cream sandwiches, your mind will change. I usually go for the mint ice cream with chocolate chip cookie, but when it's fall, I can't pass up the pumpkin ice cream with snicker doodle cookie. I've never found anything like it since.", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "zZxr7X10CDThXZbnkLmNVA", "review_id": "E1IK4cryThJ7o10kYVZOKg", "stars": 3, "date": "2012-02-27", "text": "Party of 7 please. Do you have a happy hour? Yes, handing me a placard with 6 appetizers that are 1-2 dollars off.. Ok, give me one of everything, please. I'm used to saving more than a dollar at happy hour but, the apps ARE good.\n\nOur waitress CJ then explains in Thai to my wife and daughter a couple of the dishes. We order 7 entrees and they arrive in a timely fashion and were all quite tasty.\n\nProblem 1 The sticky rice which came with the pork dish was about the size of two of my fingers, should have been at least 4x -10x as much.\n\nProblem 2. The rice which came with 2 of our entress was fine but, we ordered EXTRA rice and, that didn't show up until most of the main dishes were gone. Even after asking a second and third time, it took 4-5 minutes for them to scoop it out of the rice cooker and bring it, Not cool, guys.\n\nThis is my third time here and it is ok but, 5 stars?--not.", "type": "review", "business_id": "shCdCHRbnY5FTMJbWl-myQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "nGYaT5sAuqKkd48dqX_2Kw", "review_id": "fZWxxKzRNqiFPRvWmD0LmQ", "stars": 4, "date": "2010-05-12", "text": "ME: Of course I want to go to an Asian Topless bar. Are you feeling ok Ash...I thought you hated topless bars? AND ASIAN NONETHELESS....I never expected that from you!\n\nASH: Shut up...I said Asian TAPAS Bar! Not TOPLESS.\n\nME: Damn!\n\nDarn my luck...a guy never gets to have any fun!!! \n\nIt wasn't what I expected...but I was not disappointed. It was great.\n\nThe place was hip. The staff was friendly. The food was incredible. The bill...well the bill was a bit high. But overall it was a great experience. \n\nWe started snapping pics through dinner. This motivated the Exec Chef and Owner lady to come sit next to us at the bar. I felt kind of bad for drawing attention because the owner lady became very controlling with the staff and I was a bit uncomfortable for them.\n\nBut overall...I would say this place is aw aw awesome. Try it. Have a cocktail. Eat some Tapas. Have some fun. Don't expect anyone to be topless though :-(", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NWEKM2JBpPCtvGtIsRAgMw", "review_id": "96211mgJaStI46bRH8c1sQ", "stars": 2, "date": "2011-06-25", "text": "This place bothers me. I already everything about country so going to these kind of places freaks me out. I was forced to go here because the boyfriends parents were in town and they choose Cadillac Ranch due to their type of \"cuisine\". I have to say the foo d wasn't bad. Server messed up my order but when they got it right it was ok. I will not go here again however. Sorry.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2MPGdIbaaEdKuW9IpPxHfw", "review_id": "mtBSnfC6XPeKhfEw3p8-9Q", "stars": 3, "date": "2010-08-22", "text": "The food is good, atmosphere a little strange, and the prices a tad high for what you get. Got a sandwich and a salad. The sandwich was good, but it was just that, a sandwich. No accessories. The salad was also good, but it could have really used a meat on top. You had the option, but the salad was already a bit pricey to begin with and adding meat would have made it over a $10 salad...for lunch.", "type": "review", "business_id": "Ch_2Ye0w4Q9l3VeVW7VNHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "OKUmo2kiG5KgiZrTBE33Kg", "stars": 5, "date": "2011-02-22", "text": "Oh, where to begin..\n\nI stopped by Pappadeaux last week to grab a bite when on a Wed, they told me it was a 45min wait for two.. wow. The place was packed. The hostess recommended we make a reservation for the weekend, so we made one for Friday at 7PM.\n\nThe smells coming from the place when you first pull in automatically keep you wondering what delicious things are waiting inside. \n\nI'm so glad we did. \n\nWe showed up and they gave us a card with a number and once our number showed up on the screen, it was seating time. I think we waited maybe ten minutes.\n\nAfter gazing over the menu for a quick minute, we decided to try the fried alligator with creole sauce. Being one to enjoy new things, I was pretty excited. The waiter took our drink orders and and put in the appetizer. The place at this point was insanely packed, but it was nice to see a place like this. Made ya feel that something good was to come. Heck, a place cant' suck if it's this packed, right? So we order our food, I decided on the stuffed shrimp and the rest of my friends all ordered different things. It would be a share-a-meal night.. \n\nAbout 10min into drinks and conversation, they bring out the fried alligator.. Ok, if you've never eaten anything weird before. Please please.. you've got to try this. It sorta reminded me of a cross between soft pork or chicken. The taste literally melted in my mouth. To top it off, the creole sauce that went with it, only complimented it. I could easily have eaten the entire plate alone. Sadly, I had to share..\n\nAfter quickly destroying the fried alligator, we got our entrees. I took one bite and had to pause a moment.. the taste of the stuff shrimp with the crab, Alfredo, spices inside just floored me. There were only six pieces, but after sharing a piece or two and eating the amazing green beans, this was plenty of food. \n\nI can't wait for my next trip here.. fantastic food.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nURs-n-ucizNeoo280nmTQ", "review_id": "JeyALAmmeyLrvf3oUIas_g", "stars": 4, "date": "2011-02-03", "text": "What can I say? Like the rest of joes restaurants, this place is great! Keep them coming Joe!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 6, "useful": 8, "cool": 6}, "user_id": "eeEj90eJiwYMLJfPW9kdxg", "review_id": "rMDFqIjS5C2TkG7ARTOiWg", "stars": 4, "date": "2010-02-11", "text": "I feel like such a noob. We consider ourselves foodies to a certain degree, but before joining Yelp we had never heard of this magical mysterious place called Fez. So after seeing the sheer volume of good reviews on the place, it was pretty much destiny that a trip to Fez was in order. \n\nUpon first arriving there the first thing that'll catch your eye is how trendy it is. The place is drenched with a hipster vibe that's hard to shake. You'll also quickly notice a very skewed gay:straight ratio. I would usually never bring this up, but it was quite obvious the night we went that we were possibly one of the only straight couples there. This extends to the waiters too... don't get me wrong, I have no problem with it... in fact it made for a more fun and interesting dining experience; just be forewarned if you aren't comfortable with things like being offered a drink called \"The G-Spot\" by a feminine male waiter, this may not be the type of place for you. \n\nSo now... onto the food. The food was superb... starting off with those heavenly Cinnamon-dusted Sweet Potato Fries. Damn they're good... basically they're some of the best fries I've ever had, period. I bow down the God of Cinnamon and Sweet Potatoes... because the combination is heavenly. For our main dish we got a Fez Kisra followed by the Apricot glazed Salmon. Both were quite yummy. The Kisra is basically a healthier version of a pizza with some more adventurous types of toppings... the one we got had pears on it. It was good, but would be hard to eat one alone because the flavor is quite distinct and a little rich... so it's perfect to split. The salmon was well cooked and flavorful, no complaints there. \n\nOverall we had a great meal at Fez, we'll more than likely be back... if anything to try 'Fez Foodies' which we've heard so much about. What a cool place!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "bZFRqP7s0Vszxeu8_IwYow", "review_id": "lmQtoi8oz0p0yYRwG6drLA", "stars": 4, "date": "2008-03-17", "text": "I go to GB for the balcony and the hefeweisen. One a warm sunny day there aren't many places I would rather relax. Watching the people on Mill Ave as well as the planes flying into Phx can kill a few hours if you are bored. The food is ok. The hummus appetizer is usually a safe choice as is the pizza.", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "yoDfjwyLi8jfyghj-Z7IWw", "review_id": "NHBWvw5LNkBlqK7DNIE3_g", "stars": 4, "date": "2010-09-13", "text": "Roast beef sandwich at lunch is literally the best I've had. Cooked to order. Had mine rare.", "type": "review", "business_id": "7a8nSGq152yAkKVKmsqpng"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "TTP7l5g4QUVCpQZ9NTAWqw", "review_id": "BX_iL7m8Y6_J3nNFCbp_dw", "stars": 4, "date": "2011-06-02", "text": "Stopped in last night for a take out dinner. I wanted to bring home something different than burgers or a pizza or fried chicken. So I used my Yelp app.... And showed Yusefs nearby with good reviews.\n\nThe owner was a very personable person....and very helpful. Everything smelled wonderful, and it was pretty busy....all good signs.\n\nI order 2 of the falafel dinner plates, and the stuffed grape leaves plate. The only \"side\" for a dinner plate was the split pea soup. It was a generous portion....and VERY GOOD!\n\nThe falafel and grape leave were both generous portions....and delicious!\n\nI want to go back a do a little grocery shopping for some of the unique items that I think you could find only in Phoenix here.\n\nGood job Yusef! I liked it!", "type": "review", "business_id": "doEZAj-NSnoEMOJl5yXcNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZIcb9cCwcV4My87A-tPM7Q", "review_id": "QJ5CFg-9p8zvSeWD34ebcQ", "stars": 4, "date": "2012-08-24", "text": "It smells yum. Just your basic Italian deli/sandwich decor.\n\nThey offer sandwich, pasta, pizza, salads, buffalo wings, beer, wine, tea, pop..\n\nThey have cold cuts to take home, pre made pasta salad, mozzarella etc.\n\nI ordered ham and cheese sandwich. The dressing is very good, meats an cheese was good and so was the veggie. It doesn't beat my favorite sandwich from olean NY at tops grocery. But it's def going to be a spot I'll be at.", "type": "review", "business_id": "pmIJn8K3offcYUsrFCWAaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "HUZIEDKu2KrstsO9cOU_IQ", "stars": 5, "date": "2011-01-18", "text": "DV Nail, may I help you? YES! You can - and always well. I've been going to DV Nails for years and they're great. I've \"cheated\" on them a few times when I hear of similar nail shops in the area offering specials and mini hot stone massages with a manicure but I always end up back at DV Nail. \n\nTheir massage chairs are wonderful - strong massagers. You actually feel like you're getting worked on. They're clean, friendly and always do a great job for the price. It's not fancy by any means and I wish they'd turn on the radio instead of the fuzzy TV but they're consistently good. They carry every Essie & OPI color and my manicures always last a long time. A manicure & pedicure is $28 total + tip. I think that's great. \n\nI typically request Tina or Julie - they both take their time and do great. Don't be fooled by this place... there's often a long wait. I'd recommend an appointment.", "type": "review", "business_id": "BIYvJTxDQQdwMEBh4Ltw4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "B_leEp0XWSNi5_HQ_BLAAg", "review_id": "dWM6iaL4Sq-HBy4hlOrJ3Q", "stars": 5, "date": "2011-02-11", "text": "I will give this place a 5th star even though i wait for 30+ mins every time i go. that can only mean it's good right? Well, it's that friendly AND that good that i dont mind waiting. i hope it doesnt lose that customer service aspect that makes it so approachable. \n\nbest sausage gravy in town with a nice spice to it. i'm not fond of their potato has thingys... but their bfast nachos are fab and their white out omelette is also very tasty. my favorite item - turkey sausage eggs benedict... DD style (trade sausage gravy for hollandaise) - very filling as you can imagine. \n\nbreakfast club will still be the old town brunch location for when visitors come visit me but for week in and week out sunday morning brunch, this is my spot.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qis3040X__uozHkiy8eT7g", "review_id": "kwseo734U9LSQDCEqSNN2g", "stars": 1, "date": "2011-11-01", "text": "It's a supermarket. I just go in buy what I need and get out. It's convenient that there's a wells fargo in there, but there's one across the street as well. \n\nTo the negative experience.....\nMy sister was speaking to my niece, but not in english. Some caucasian lady walks by and rudely says, \"Can't you speak english?\" WTF?!? Is this taking SB 1070 in your own hands? It's like you're trying to make every race hate you even more. I will run into this arrogance wherever I go.\n\nI'm not done yet. Keep on reading....\nMy niece had a dollar in her hand and was pointing at the lottery scratcher machine. We know you have to be of a certain age to play it. One of the employees there rushes over and in a loud voice tells me niece she can't play it. Calm down. Kids are just innocent and don't need this extra verbal abuse in their lives. Don't you have something better to do like restock the shelves? Swear... Racial profiling.", "type": "review", "business_id": "kP_NxoI4DyQ1y60i5xsTCQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "OeF4ktJqY5Qf_gf494uE_g", "review_id": "iHt-yac8yo0uWZpAnotBWA", "stars": 3, "date": "2010-02-26", "text": "Stopped in, had a couple of drinks, paid and left. Nothing to get excited over, but a decent stop if you like Irish whiskey and need a fix.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "F6QsMoJdvtohlbnST-fDyQ", "review_id": "QvDNFZ0pUlwT-X5XqXQk3g", "stars": 5, "date": "2012-02-15", "text": "We came here Sunday morning for a wonderful breakfast. Our server was Colleen. She was very attentive and we had a great meal. The menu is so extensive with many ,many options. I got Florentine Eggs Benedict and my boyfriend had a fabulous omelet with potatoes and toast. They were both delish! Their Potatoes are fab!! The Decor was very nice, and even though they were so busy,we did not wait long at all for our table. Big parking lot and a nice waiting area as well. We will defiantly come back here soon.", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 9, "useful": 13, "cool": 14}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "y1N8np6nrguHEGsH7oIRrg", "stars": 5, "date": "2012-12-10", "text": "I love Christmas-time and I especially love it because I know that Luminarias is back and this year it's better than ever! The staff and volunteers at the DBG do an excellent job of directing guests through the garden. Between the well-lit paths (with Luminarias of course), helpful staff and amazing acts, this is an event not to be missed! I consider this to be the ultimate activity for adults. It's romantic if you're on a date, it's festive if you're with your family and it's just pure fun if you're with friends. \n\nYou enter the park to be immediately greeted by hundreds of meowganificant Luminarias lighting up the entire garden. Cocktail stations lie in every knook and cranny and they serve delicious festive drinks like my favorite, hot cocoa and raspberry vodka! If you're hungry, they sell food throughout the garden at two locations. Then there are the performers. The DBG does an amazing job of bringing in musicians of every shape and size. Whether it's a trio of Christmas carolers, a mariachi band or a lively Jazz band, they have bands in every corner lighting up the night! I am also continuously impressed with the acoustics of the garden. With so many live acts in one area, you can barely hear a specific act until you are in that area. Their event planners did an amazing job! \n\nLuminarias is my favorite Arizona activity during the holidays and I can't wait to go back next year!!", "type": "review", "business_id": "yeuy070bBkc4CD71M1VZIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ezJJB5XvFbWTsRh5BZrtjQ", "review_id": "NH7Vg6Q1jQ4U-DK4RQ61og", "stars": 4, "date": "2012-05-20", "text": "We recently tried this place, during lunch. The crunchy tacos are really good. The rice and beans are so so. Haven't tried the Ritas yet.", "type": "review", "business_id": "AW1uq13zFslTBoD6vL99Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ru8p3RTlk8f9LB_3zLXURQ", "review_id": "dB-vUKZDSXsX6bKwpeEekw", "stars": 5, "date": "2011-02-27", "text": "One word can describe the food here: perfection.\n\nAll the meals I've had here has been absolutely delicious served by the most charming waitstaff.\n\nSomeone recently told me their Chilean Sea Bass was the best he's ever had and I believe him . . . I can't wait to taste that dish!", "type": "review", "business_id": "9BJ5h9X1krpXFjKj0a6wbg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NvDR3SPVPXrDB_dbKuGoWA", "review_id": "-GJc7vv2RTBEo3k8hxjNYw", "stars": 3, "date": "2011-08-31", "text": "My wife stayed here while transitioning to Arizona and enjoyed her stay. The hotel seems modern and they are currently renovating the place; so far so good with the improvements.", "type": "review", "business_id": "UtW7T4VKA3E602Q0tNNycQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MM2oeJE5c3SNpVIfD5T5-A", "review_id": "w-wzwT3qsSDdaEif2uKifw", "stars": 3, "date": "2012-04-16", "text": "Mediocre food, mine was really really salty. Kind of an interesting place though, looks like a Colorado lodge but what's that decor doing in Arizona?? Looks like a good place to go after work for happy hour and hangin with friends, so-so for a nice dinner.", "type": "review", "business_id": "8dEJ_o0UgGrNX1ejHcuZjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sgv9qFkfyVtp72aad7ulXw", "review_id": "QMu74GhlDjHDmEOgU2l0XA", "stars": 4, "date": "2008-03-24", "text": "White tank is still an excellent place to hike. I hadn't been here in about 8 years. I was really shocked to see all the new construction near the entrance. A shame really. \n\nThe flowers were in bloom, so that was a bonus for sure.", "type": "review", "business_id": "B_Ea839qdvPWa07YnpeIrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-jgGsPzZ4W2TyGh7KOwl9Q", "review_id": "JRogEWoOLRXXnthCukcOrw", "stars": 4, "date": "2011-07-24", "text": "Very good traditional breakfast spot. I stopped in just as they opened during the week to make sure and grab a spot. I was treated with a really tasty plate of eggs and peppered bacon. One of the biggest pluses, Matt's actually knows how to cook hash browns, I didn't need to order them well done, they come nice and crispy as is. The real show stealer is the toast and home made jam. Nicely done breakfast at Matt's, go grab some!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 4, "useful": 1, "cool": 1}, "user_id": "BjwXX-sChcjx2E55B_7rXg", "review_id": "a2w8ZqnZmgOoxVY8HbT2LQ", "stars": 4, "date": "2012-01-29", "text": "If you can look past the giant Meth billboard right outside and the general uncleanliness of the entire establishment, it's pretty wonderful... especially if your intentions involve eating a whole lobster, like myself.\n\nGourmet House of Hong Kong has the cheapest whole lobster dishes I've ever found, anywhere. I don't mean a measly, mid-western, tourist trap restaurant kind of lobster, I mean a damn good, meaty, savory, juicy morsel of deliciousness.\n\nIt's served a number of ways, but I usually go for the black bean sauce style. Then, I eat like nobody's watching, vow to never let my boyfriend see me like this, and usually end up getting sauce on my face, clothing, table, neighbors, etc. Go messy, or go home.", "type": "review", "business_id": "ykfTh6HI219NoMsWBxulxw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "d95On_QNeQPr01pRNzHa5w", "review_id": "Uj-qZf2weBwg2KWLf93hIQ", "stars": 5, "date": "2011-03-08", "text": "All I have to say is WOW! This place is EXCELLENT! All the dishes we had were extremely fresh, authentic, and DELICIOUS! \n\nMy favorite pot stickers EVER. The skin is super thin, tender, not greasy, mostly steamed encased around a very light, delicate dumpling that makes me want to order 2 next time. 6 is just not enough, they are tiny, but oh so delectable! The sauce is perfectly balanced of sweet, spicy, and tangy and does not overpower the pot sticker. It also comes with a thin airy, crispy (rice chip?) underneath the pot stickers that give it an extra texture with scallions scattered about. MMMMMMmmmmm.\n\nThe green curry is more brothy than others than other's that I have had, but no matter...It is delicious with bits of vegetable, and whatever meat you prefer..we got chicken. I love sopping it up with rice and trying to eat it with chopsticks. You may need a spoon :) \n\nThe eggplant and chicken stir fry is also fabulous. The asian eggplants are cooked to perfection. Their sauces are spot on. \n\nBEST Coconut ice cream! It is light, fluffy, icy, dreamy, pea-nutty, coconut cloud confection that makes my mouth water! It is not sickly sweet sticky artificial coconut tasting at all...Predominant coconut flavor is not my favorite and I LOVE THIS! \n\nEven if you don't like curries, there is plenty of food here that will make you a fan! This is a mom and pop kind of place, they are really nice. It's a trek for us, but definitely worth the drive!", "type": "review", "business_id": "wyxsEFTGC1MuadT2SpTE3g"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "bZFRqP7s0Vszxeu8_IwYow", "review_id": "fzo5Lb_t9xaMRBHFagzItA", "stars": 4, "date": "2008-09-27", "text": "My friend refers to this place as \"Hitler's Bunker\" but I choose to see the romantic side of Kazimierz. I love the dark, cool interior with the large comfy sofas and chairs. \n\nIt can be daunting to find a bottle of wine since the list is incredibly vast. I usually settle for a wine flight like the French Kiss or I open up the book to a random page and swirl my finger around until I land on a bottle in my price range. The flat bread pizzas and fruit and cheese trays have been nothing but impressive. Some of the waitstaff can be a bit surly but most of the interactions have been quite positive.\n\nAll in all I think this is a superb place to take a date after a nice dinner so you can unwind.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ub1Nk-78ELccEIgGV6VGcg", "review_id": "Fi5SFwFG_62j5ou95vVLTw", "stars": 2, "date": "2012-07-03", "text": "Glorified Applebee's. I think they want the yard of beer to cover the lack luster food & services.", "type": "review", "business_id": "UL3OMN_c-NXHlyb97pDifA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4nk4dFA8pbIfBjdIFpP-fA", "review_id": "jnufTi_ZCIgI8U9zvgc5PA", "stars": 4, "date": "2012-07-30", "text": "Went to this place on the recommendation of a friend and definitely wasn't disappointed. The burgers were GREAT and the music was perfect for the time of day. There was a good crowd and the staff was very friendly.\n\nI would deinitely hit up this place the next time I am in AZ.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_bHzW18Vg1gxTMoR1fFZhA", "review_id": "sGg9KJyDx0zWzDPjVmQUNA", "stars": 5, "date": "2012-10-21", "text": "I really like this bar & restaurant. I usually come here to meet up with a friend and sit at the main bar. It is modern and clean. There are a couple bars to sit at and they even open a big door to a bar for the outside too. They have some good brews on tap and have flat screen tv's as well. \n\nI have only had a burger and fries here. They burger was really good, the fries were really greasy and were just okay.\n\nThe staff here is friendly & speedy. I would recommend this place for a good place for someone looking for a nice place to grab a drink and converse.", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4vECjx1eQSWCHfM3ZSbrNA", "review_id": "5LVkkPScwEpgywAIFmcD_Q", "stars": 5, "date": "2010-08-29", "text": "Really nice! I'm new to the area and I stumbled upon them. They are fast and not very expensive. I was a little turned off by the number of really old men working there, but they had their regular client list. It was like one side was \"old men\" hair stylists and the other side was the \"young girl\" stylists. The two sides didn't really associate, which I found rather weird. But, none the less, a great hair style at a great price!!!", "type": "review", "business_id": "teL2fc-Syit_0x89H4fCkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jt8jtEY1K6TD1FBzYa7HGw", "review_id": "d-V16MvLmyPG6UyHmKtTPg", "stars": 3, "date": "2012-04-07", "text": "All I'm saying is they need to do a better job at hiring their staff. The girl that helped us out last time was on something pretty heavy. It was a school night, and we had just finished up dinner next door at Windsor. We all wanted to get something sweet, but the girl working there was so blitzed out of her mind on something. She was barely able to interact with us. Within the first 2 minutes she must have asked us 5 times how we were doing. She never once made eye contact. I'm not exaggerating by saying she looked pretty filthy, and was really rude to boot. Maybe that's just how the poor girl is, but damn, you think they could do a better job hiring people to compliment the charm of a family oriented cutesy sweet spot. \n\nShe turned us off so bad, that no one in the party decided to order anything.\n\nI give it 3 stars because I've been before, and thought their stuff was good, not great. Churn is pretty damn adorable & local, so they get extra love for that. So, for now, until something better comes along it will just have to do.", "type": "review", "business_id": "tAmevVP8B7PiWxcJ0PlYVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OUdHM_gKTfTQ-hHZHqczsA", "review_id": "BDNBEPe9U7p8p1DlqXpTdA", "stars": 4, "date": "2011-01-10", "text": "We stopped in for lunch since we found a parking spot on Stetson Drive.\n\nI enjoyed my seared ahi tuna sandwich immensely. The bread had lots of sunflower seed on the crust. The tuna was perfect and the extras inside were perfect. The rest of the gang had short ribs, bacon sandwich, sliders filled with pork belly, and hamburger plate. Everyone was happy with their meal.\n\nService was quick and friendly.\n\nOn the way out, I had to buy a few bags of caramel popcorn with chocolate and bacon ($7 per bag). Wish I had grabbed a few more since the bags were on the small size.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bLiqSbQIxaRZvfn2TfkWOw", "review_id": "Z5brzCueAO3k6FiPMboS9A", "stars": 4, "date": "2010-11-08", "text": "we ate there this past saturday evening. arrived in time to take advantage of the 50% off wine price, which was great. they have an extensive offering of wines, with emphasis on chilean and argentinian. delicious. ordered the fig/prosciutto salad that was wonderful. my companion ordered the salami/proscuitto/olive plate that came with bread and crackers. he ordered sangria. everything was very tasty. we sat outside. the atmosphere is so welcoming. had a great waiter. really enjoyed ourselves. we will absolutely go back.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "TmBNGT7IWhADHUAiJc7lxg", "review_id": "0DHeh9w3d5A2CYWhOdyweg", "stars": 1, "date": "2009-04-29", "text": "This may be my worst dining experience ever.\n\nThe scenery was beautiful, we can't complain about that. The menu was decent, there was a good number of selections to choose from. However the prices were definitely high, we're just talking tacos & burritos here...\n\nI ordered a taco salad with steak. It was $11.99, for lunch...which I thought was crazy. When I got the salad, it was the cheap iceberg lettuce, with a couple tomatoes & a few onions. The steak was DISCUSTING. I wouldn't feed a dog that steak meat. I asked the waiter for some salad dressing, he gave me this funny look and said \"most people just use salsa, but I guess I can get you some ranch or something\". Great service, huh? I asked the waiter about the margarittas, and he willingfully told me that the 3 cheapest ones are no good and are too watered down. Nice...so I then asked about the Patron Margaritta (my fav tequilla). The Patron rita was $16!!! \n\nThe waiter was extremely unprofessional, and even gave us this pitch about how he's only working there until he finds a new \"gig\". The prices were ridiculous! I would NEVER go there again and hope to share my story with many people before they waste their money!!", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "3nUQ4xbLlySDbkE03nyp-Q", "review_id": "oQGOD6AqurJtRb4tn0J9wQ", "stars": 2, "date": "2011-09-11", "text": "If not for the aircraft landing and taking off, you'd be crazy to eat here.\n\nPrices are about the same as Denney's.\nCleanliness, really needs to be improved.\nWait Staff, isn't very efficient. \n\nApart from the menu, they do offer a Sunday Breakfast Brunch.", "type": "review", "business_id": "8FNO4D3eozpIjj0k3q5Zbg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "T7rrpUo71wlNCmq-_vai2Q", "review_id": "ExQvtydkR_hoxiT8yI801Q", "stars": 5, "date": "2012-11-27", "text": "Stayed at the hotel from 11/18 till 11/23/12. Excellent hotel and the stuff was great. Originally was supposed to come during Hurricane Sandy and couldn't fly out as I was affected by the storm.. The hotel staff had no problem changing my reservation and didn't even change the price. Everything was great. The room was clean. The pool was excellent.", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "woc9HK2NYBclfzcsN7Ld7Q", "review_id": "1xER43Aj36jn2Bt7KDXl4g", "stars": 1, "date": "2012-06-27", "text": "Completely shady. Towed our U-haul as we were moving in to our new Apartment Complex. Completely unethical and total crooks. AVOID AT ALL COSTS!", "type": "review", "business_id": "wdQyKSXd5biYmDUmlywbqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kJyR4gT1pfCcNjEY9-YMoQ", "review_id": "qrJiRfMeLGCAW1ZsSWOPkg", "stars": 2, "date": "2009-10-27", "text": "i decided to give this place a second try i went to one of there stores right after they opened and was not impressed.finding good seafood in az is always a chalenge so i thought that f&e might be worth a try again but i was saddley mistaken on the shelf sat a few lonley packs of sea scallops and some shrimp alot of hamburger and a few highly overpriced packs of lamb and a sh&^%t load of chicken. they seam to have alot of prepared food for people on the go or dont cook i think sprouts is a much better option", "type": "review", "business_id": "EoUWD6wATa-j_PagZSjYFw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "W10N7lgoG9YshvHUC7wSdQ", "review_id": "vxUUysiz14tenl9HWwUU9w", "stars": 5, "date": "2009-01-12", "text": "I just re-visited Cheese 'N Stuff this weekend after a while. I guess just eat during their limited hours very often. They close very early (4pm).\n\nI love their liverwurst sandwiches and the Bismark but this time I decided to try the Doughboy people speak of minus mayo as I do not enjoy warm sandwich lubrication. As ever the place is tiny, homey and spotlessly clean. I had some of the hot German Potato salad as a side and a ginger ale. All were yummy, delicious and satisfying! \n\n As I was eating I had a yen for a Celery Soda to go with this classic sandwich but I've only been able to get them at Chompie's in the valley. There are loads of interesting European cookies to get packages of as dessert so grab a couple of friends when you go but carpool as the lot is smallish. I guess they stopped giving pickles with sandwiches, bummer.", "type": "review", "business_id": "UWrB5H3G-hhiHMy3iKV2ew"} +{"votes": {"funny": 2, "useful": 0, "cool": 2}, "user_id": "1cR5-LZcSYcACxhGe3DEVA", "review_id": "ekMu36caVVn6w8UlA8DRfA", "stars": 4, "date": "2007-12-25", "text": "This is only a Review of there men's restroom....\n\nIt was like 2:30am X-mass eve...well really X-mass.....and\n\nsince I knew someone that once got busted for peeing on Scottsdale Galleria (I'm sure they weren't the first ones.)....I asked a bouncer if I could still use there restroom....and I was able too......PLUS one star\n\noh of course there was no \"attendant\" at this time to stare at your ass wile you piss.....so that's a Plus....still not sure why you tip them for that....\n\nIf your going to pay someone to watch you pee wouldn't you rather it be a girl? \n\nand how do you get the job to be the \"Attendant\" in the women's restroom? \n\noh cool Orange \"floating Sinks\" Black paint every where....lots of urinals...pretty thin between them.......\n\ncool little table things......wait wheres the trash?....\n\nalright well I definitely recommend the Bathroom....I wouldn't drive out of the way for it.....But I'm certainly going back.......", "type": "review", "business_id": "AxyWLgtC_MR8Y8i8YqtWHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wh5mqCxN7d1jlTQ4eIGmXQ", "review_id": "WYyYNtrjLOHT2aMXr9wVnw", "stars": 1, "date": "2009-07-20", "text": "OMG! what is the rave about? this place is disgusting! it's dirty and the food is not worth it! i came here with my family and we each order a little bit of everything that is suppose to be good and popular there. unfortunately everything is bad. i walked by the waiters and they were all cursing really loud in vietnamese to each other. the table is icky and it smell like my cooked up oil . ick! go to Pho ao sen instead at least it's clean.", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XoEwIVPoUNCM11D60o3lCA", "review_id": "SHY0nnyzIMm6HtfCb4-IDA", "stars": 4, "date": "2011-01-16", "text": "This is the closest Pita Jungle to my office. I love the food and often call ahead and just pick up because this parking lot is a damn nightmare during the lunch rush. If you are dining in though, things do move very quickly. I appreciate the staff at this location not being the usual apathetic hipster PJ is known for. The manager guy here, don't know his name, really knows what he is doing. My favorite to-go dish is the chicken shwarma wrap. It has PICKLES like all wraps with chicken should :) I also love the glazed chicken pizza...omg caramelized onion-y goodness with chunky feta, how can you go wrong. And it's huge so you get two meals. Other faves: hummus with chicken, black bean burger, cilantro jalapeno hummus with pita chips, tzatziki, broiled chicken salad for when I want something really light.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 7, "useful": 5, "cool": 5}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "TtiBQxsUem-VnKNkfSl8cw", "stars": 2, "date": "2010-03-07", "text": "I finally saved up the amount I am willing to spend to make my backyard not look like tent city. mind you, i have never been to tent city but i have a feeling they look similar. minus the pool. \n\nmy backard is set up where the pool takes up the entire yard and then a maximum of 5 feet surrounding rock space around the entire pool. welcome to my backyard.\n\nthis makes planting difficult. my original dream was to plant oleanders along every wall, let them grow super tall to block all of my neighbors and give me the privacy i've always wanted to skinny dip all summer long. don't judge.\n\nI wanted oleanders because they sounded like a match made in heaven for my lack of green thumb. they're cheap, they flower, they grow fast and they're impossible to kill. well, i found out oleanders roots are too aggressive to be that close to my pool so sadly, no go. (i only have 5 ft, they need 10-15ft) \n\nI called moon valley to get some ideas so I could do research root systems. the guy on the phone just wanted to get me there. i told him i was looking for suggestions before heading there on this rainy day and he just kept saying in the cheesiest voice known to man 'oh ya, come on down, we have hundreds'.\n\nyou have hundreds of plants that are identical to oleanders minus the roots and resemble in price? really??? please list them so i can find out if you're a big fat liar. nope, not listing them. only wanted to get me there. i decided not to go because 1. it's raining, 2. he lied and said oleanders are ok. i just have to have the drip system on 24/7. thanks for your freakin help. 3. he's a liar so even if i went they would lie to me. 4. i hate liars 5. i went in before in the past and told them what i wanted, they gave me a free backyard design and they completely didn't listen to me and created a backyard that cost 2k. who do they think i am? i live in mesa for crying out loud. not paradise valley. i wasn't going to let them waste my time like that again. \n\nif you're wondering why i could give them a 2nd chance after that- it's bc this time *I* was going to wear the pants in the relationship.\n\nyou could have had my entire (low) budget moon valley, but the unwillingness to help or be honest means i will be going elsewhere. someplace that will straight up say 'i can fulfill your skinny dipping in privacy dreams, while making your backyard look pretty as cheaply as possible and i won't destroy your pool while i'm at it'", "type": "review", "business_id": "jXmmmsGlhKhe0d0Z3LcIgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sjp6EYsqzdlTvymER6wBfg", "review_id": "yxKzkYk32FVD6PxJc9QKHQ", "stars": 4, "date": "2006-01-30", "text": "Have to agree with Timmy... located just off the 51, it does have a Roadhouse feel to it... Haven't been there for dinner, but the combination Texas/Arizona (hence the name) cuisine is pretty good fare...", "type": "review", "business_id": "18TUn9oiW0k0yB6lheiOvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "seIFb7p-2Mz67imAhou7NA", "review_id": "kgTY9VmlyWizINaBajFnPg", "stars": 2, "date": "2011-01-21", "text": "I travel a lot for business and usually stay in Hampton Inns. This one less than impressed me. First and foremost, it is a 'motel'. The door to the rooms open to the outside, which is not typical of a Hampton Inn. I was concerned to stay in such a hotel at first since I am a woman traveling alone. The area is ok, and the hotel area seems to be pretty safe and well lit. The lobby and pool area are very pretty, but again...the doors open to the outside so when I was positioned right near the pool, I could hear everything that went on. The bed was standard Hampton Inn bed (comfy) but the room was small. My biggest complaint, by far, is how bad the noise carries. I'm still sitting in the room and I can hear the entire conversation going on next door...I can make out every single word. Additionally, I can hear the person upstairs. Their sound insulation is terrible. There is a gap around my door (and remember, it opens to the outside) so can hear everything that goes on outside, too. They've done a nice job of spiffying it up, but I did not find it to be appropriate for a business traveler.", "type": "review", "business_id": "PH-KVHAPZBk8pTF4hsuVdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "085TP4qzSt6sr2COT4lVCg", "review_id": "N4TdLQU-iFuwX644zc-ygQ", "stars": 3, "date": "2010-12-21", "text": "Just great! The gluten free pizza crust is really good. Be sure to order it crispy otherwise it can be kinda chewy (unless you like chewy, then order it however you want). I really dig the BBQ Chicken pizza but I think that they might have recently changed the sauce or something. It's tasted different to me the last time I went. If they haven't changed the sauce, then I *COULD* be loosing my mind. Either way, it didn't taste as good this time around. Just saying", "type": "review", "business_id": "Xbxve72Hp5cWWj96ThGNtg"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "9uuPzUWC1m_TnMUV9kXu9g", "review_id": "2ujDDXw5C120WX3mKi1akQ", "stars": 5, "date": "2011-11-12", "text": "Food Truck Fav right here!\n\nI've been wanting to try Pizza People's Pizza for a while now. I found out they were setting up at 180 Degree's Automotive and I figured if Bogi was hosting them then I needed to check them out! I finally caught up with them at Local Fest.\n\nBogi was actually there helping them out and she told me that they were only sampling the regular pizza and the gluten free pizza was $8 but she assured me it was yummy! First of all $8 for a 2 item gf crust pizza is a deal! Secondly, Bogi said they were her some of her best friends in the world...and I trust her implicitly....so I ponied up my dollars and waited about six minutes. I ordered my pie with pepperoni and fresh tomato. I took it back to my table to share with my Mama (who is also gluten free) and we both said at about the same time: \" Oh, my gosh this is really good!\" Something I've only said about twice since eating gf pizza!\n\nThe sauce is fresh, the dough was the best gf dough I've had to date and the toppings were just divine. I need to put a GPS tracking unit on this truck so I can track it daily! (Oh, wait.........I can just check their facebook page!) Yeah, I'd eat it daily! It's that good!", "type": "review", "business_id": "N_n2jyCfpon3NzKERYT02Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HsU9Z1oblJ_ANCdE6Nmvcw", "review_id": "0TnqwIAzRVCdVrHcwgMXNw", "stars": 1, "date": "2011-11-12", "text": "Horrible service. Twice now I've gone there and they keep messing up my drink. I work for Starbucks!! It's not hard to get a drink right! Believe me. Horrible service. The people that work there All have bad attitude. One lady doesn't even look at you when your ordering your drink. I think that someone needs to go In there and fix it and make it a welcoming Starbucks that it's known for. Ya a few of the employees that work there are absolutely wonderful but when you get that one that is just rude it just makes you not want to go there anymore. I stopped going. They still get my drink wrong when my mom goes to get coffee. Horrible.", "type": "review", "business_id": "4bhJ2kl1WVnNQeH3xJgz6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mtRDbvRoS3NhuQbBQwixYA", "review_id": "nZgI0S2KaaPMfCnQnHNpAw", "stars": 5, "date": "2009-03-31", "text": "I'm currently staying at Camelback Inn for 3 days. A pleasant treat after a molar extraction last Friday afternoon. Although I've sworn not to be seen in public with a swollen face, I am truly enjoying this trip. There's a trail just behind this resort and a completely awesome view of the hills. Awesome and I mean it.\nMy hubby is out on his meetings and I'm juggling my work (the luxury of running your own biz, take it anywhere you want do it anytime you want, well not most of the time.. ). \nJust had lunch at Hoppins Jack. Excellent service, friendly staff (especially the handsome young german ;)). Anyway, ordered chicken sandwich with cashews and mandarin orange, delish. My lil' girl was pacified with a vanilla sundae with fruity swirl (raspberry or is it strawberries?) with peaches and berries.. I had a few spoonful, yummy.\nKids menu was dirt cheap, fries and 3 pieces of chicken strips or rather crispy chunks was actully tasty.\nI still have until tomorrow. Maybe if I have time, I'll head down to the spa for a desert rain loofah. Oh, as for the room, great decor, quite spacious and an outdoor porch with umbrella and seat to lounge around in the sun.\nSimply love the view. It takes me away from everything. I'm in heavenly desert.Highly recommended.", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "puY1mdD4w4AwIYPrIyEhWw", "review_id": "VljvTmRjzaRypzBTc7yzXA", "stars": 5, "date": "2011-08-30", "text": "This is the location I frequent most (it helps it is less than a mile from my home). \n\nI have been to a U.S. Egg (this and other locations) more than a dozen times (or two) since moving to AZ in 2010. I love breakfast food and the \"specialty\" won me over instantly; PROTEIN PANCAKES! As the timeless Tina Turner once said, \"Simply the Best!\". That describes these pancakes perfectly. \n\nBefore I go on and on about the pancakes (because I have been known to do so) some background information about atmosphere, staff etc. \n\nThis location is in a nondescript one story building in front of the offices at Mill Towne Center (or is it Mill Town Centre?). Nothing fancy, but I don't need a \"Jacket Required\" sort of feel to a place to enjoy my breakfast. \n\nThe staff is fantastic; hosts/hostesses, waitresses, busboys. I have never had anyone employed here be anything but 100% professional and attentive. To speak to something others have mentioned about getting the check early (while they are still eating); as long as you continue to be my waitress (i.e. refills, requests for jelly, etc.) I don't care if you bring the bill with the food. If I decide I want something else, I doubt any of the folks here would have a problem reprinting a corrected bill. Now on to the food!! \n\nThe protein pancakes are filled with blueberries, granola, cinnamon and silvered almonds. The ingredients aren't something exotic, but they are perfectly balanced in the mix (not too much or too little of any of them). The thing about any food item you like at a restaurant, it becomes a favorite because they are able to duplicate it time after time. I have had this item many times (more than any other item), and they are always spot on (knock on wood) :). \n\nAll the other dishes I have had (always breakfast, haven't tried lunch yet) were some combination of eggs and protein, and the eggs are always perfectly cooked to my specification (over medium), and the meat always juicy. \n\nI promise to write another review as soon as I don't get the protein pancakes (which will be when they decide to remove them from the menu - NEVER). :) Oh, or if I actually go in later than normal and feel like lunch over breakfast (not good odds :O).", "type": "review", "business_id": "OSL98Keoc2FSNx4a3ge5Uw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "9JU-23ho6xlXc0CfjRjiqg", "stars": 5, "date": "2008-06-20", "text": "Mesa Amphitheatre is easily my favorite concert venue in the Phoenix area. You can see and hear from anywhere in the place, and the grassy risers were such a good idea. The sound was excellent for the two shows I've been to there. Really just an overall nice, peaceful place to see a show and enjoy the Arizona weather. Parking isn't too bad and neither are the lines to get in where they check your bags. To top it all of, getting out of there was a breeze both times I was there.", "type": "review", "business_id": "lEGq4UveDPxikXcpwjtFow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jdPaIEMrUpzR4-dC-o5zSw", "review_id": "H8W9aUhwqWi__d4BuaDkyA", "stars": 5, "date": "2012-10-09", "text": "Kaley helped me get the best room in Mesa AZ, my view was awesome. The beds were clean, and the service was awesome, with a great cafe style restaurant. I am recommending to all my friends to call Kaley for a hook up!", "type": "review", "business_id": "NmtZuT8p4vNk259dvozbvg"} +{"votes": {"funny": 20, "useful": 16, "cool": 11}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "-XDVIXOrCYnUtjDiCpHRXA", "stars": 4, "date": "2011-09-01", "text": "Fancy ladies with a few gays sprinkled in. This is NM Cafe!\n\nPopovers. Prawn and avocado salad. Glass of Sauvignon Blanc.\n\nMake your reservation under Candy Spelling's name. You will get the BEST table. \n\nWorks every time.", "type": "review", "business_id": "q1D8gjMMV4RZU0kFnB5VwA"} +{"votes": {"funny": 5, "useful": 3, "cool": 3}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "DNJG4CuYg2M3OzsK4Wsl8A", "stars": 5, "date": "2009-09-01", "text": "Waffle Houses are bomb but this one is my favorite. Not only is it 24 hours but it is super clean and well lit. There are totally some seedy people who go here but their conversations just make for very interesting background noise. \n\nAs far as the food, the prices are cheap, the menu is semi-a-la-carte and the the waffles are amazingly crisp and perfect. This is THE Waffle House to visit. Go now, do it. How good does a waffle sound right now anyways? That's right, Pretty Damn Good.", "type": "review", "business_id": "sh1-BzB29lIOA2qQ_PxN-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UC3zsORq9TmlMCO0COD2pA", "review_id": "-A6TRm8otbL55DaywYGpTQ", "stars": 5, "date": "2012-11-14", "text": "Brie and Apple with Fig bruschetta....I dont need to say anything else!!!! (except $5 glasses of wine til 5 all week and $5 mimosas til 5 on the weekends) Best place to spend a Sunday afternoon", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 7, "useful": 4, "cool": 4}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "MNZyzIVY9mhTXH7w3D8gTA", "stars": 5, "date": "2008-07-28", "text": "Now worthy of 5 stars for replacing their toilet with one that actually flushes. It's always nice when a place that sells diuretic beverages has a working toilet.\n\n---\n\nThe baked goods are baked right there in the coffee house, by their employees. The coffee is roasted right there, on site. Iced tea refills are free, bitches. The baristas are hep cats who ride fixie bikes. Now, I like to coast, but shit... Gotta give them cred. If you go often enough, the other regulars will be friendly. If you hate Mac laptops, you probably should stay away. The new tables are great. There are power outlets everywhere. It's next to Pane Bianco. I run into my homies there on the regular. When it comes to coffee shops in CenPho, there is no competitor. Jeff, the owner, is a cool dude. The seating outside is nice. I have been known to spend all day there, and use it as my office away from home and my real office. I seriously probably spend about 16 hours a week there or so, maybe more some weeks, working on my laptop and occasionally people watching. Did I mention that I kind of like this place?", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VKiWDL608wBRQtk05ts59g", "review_id": "pJZVbLrLzhhRF0LxpA-DbA", "stars": 2, "date": "2009-03-10", "text": "Sorely disappointed. \n\nI used to be a fan, but this barely half-full(at high noon on a Monday!) restaurant just doesn't cut it anymore. \n\nWait staff was sub-par, food was average, and the prices still conveyed the idea that the management thought they were awesome.\n\nParking is a royal pain in the butt -- and has clearly had an effect on other nearby businesses. (This part is no fault of Uno's as far as I know).\n\nIf given a choice for a tasty business lunch, look elsewhere.", "type": "review", "business_id": "S7f-B7KNSTU_akRQGeft6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vzTqQHtC0lHzBYsl2Jbs8Q", "review_id": "1Vi5jE5a3JnEcl-Aydruhw", "stars": 4, "date": "2012-05-02", "text": "Outside atmosphere was really nice. This was my first time there and I enjoyed it. Our food was great. I had a salad and my friend had the filet which looked excellent. It was more pricey than I expected though.", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4eraKSgRK92ryGuAOBnLgQ", "review_id": "SnsmDXKX7F-pSHuppoP0eA", "stars": 5, "date": "2011-01-05", "text": "This is such a beautiful stadium to go to and relax at, everything is so close that it only take 10-15 mins to get where you want to be, and on top of that, there is westgate shopping center that is right there with all the bars and night clubs to go to after the games. I recommend UOPX Stadium over any other in the valley because its clean and any seat in the house is a great one.!!!!Plus the weather is always great!!", "type": "review", "business_id": "V-mvhyX6lxu5l2euYatlrQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "PeWTVqaIBsMYGOUGFH9yww", "review_id": "shjvGJh29IGZirdm6TLHBA", "stars": 1, "date": "2012-05-29", "text": "This address is for the one next to Panda Express, not the one in Walmart.\n\nThis place sucks and it doesnt even come close to any other McDonalds. How in the world can you have so many employees working and have a line of people waiting for their food? It's like there is retarded people working there and they all have special needs. This one guys was just waiting for a happy meal and had been waiting for 10 minutes before I even got there. It them about 15 minutes for them to give me my food. One mexican kid that was working was to busy flirting with this girl in front of everyone, while her father was asking why the food was taking so long to make. \n\nThe dining area was dirty after I got my food and sat down. They should fire the manager and everyone that works there. They take no pride in working there and its sad to see this. It shouldnt matter what they are being paid to be there, its still a job and they ARE being paid to be there. \n\nI will NOT be returning to this place.......", "type": "review", "business_id": "1TJItj9VfrCeh4TM_SKQZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_bHzW18Vg1gxTMoR1fFZhA", "review_id": "AQxXhSfS8srBJezx7aCT7Q", "stars": 3, "date": "2012-09-01", "text": "I ordered a thin crust for carry-out one evening. The place was somewhat hidden in an industrial area close to Tempe Marketplace. The staff was very friendly and it seemed like a laid-back, cozy place to eat a meal.\n\nI enjoyed my pizza. The sauce tasted very sweet so be prepared for that.", "type": "review", "business_id": "6md4A90THda31wTg1bB3hg"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "COfMgkFjxBwKD_RAmQ1BCA", "review_id": "HFJJuXBzbcIxWVEP0BojdQ", "stars": 3, "date": "2011-11-21", "text": "First off, let me congratulate OHSO on being open for business! I was thrilled to see another local watering hole open in the neighborhood. I frequent Arcadia Tavern and JT's often and will most likely add O.H.S.O to the rotation. Upon entering OHSO, I remember my first impression being \"Is this place really ready to be open for business\". I noticed a few unfinished details on the building (maybe intentionally) that left me wondering if this place decided to open overnight.\n\nSimple said, I appreciate good service. There was a lack of this at O.H.S.O. We were not greeted when we walked in. There was a group of employees talking at the host stand and I had to approach them before they recognized our group. They quickly said it was open seating and got back to their converstaion. We grabbed seats in a booth in the bar area. We probably sat there for about 5 mins trying to make sense of the various colored menus strewn across the table. As we were all very thirsty for a cold beer, we decided to finally order at the bar. Someone eventually came by.\n\nAfter some of our party left, 2 of us moved up to the bar and asked the bartender a few questions. No one seemed to know what was going on. Everyone appeared to be extremely busy with \"busy work\" instead of helping the patrons. Seemed like a lack of training with the staff. Overall, I think this place has the potential to be a cool spot and truly hope it does well. If I could offer a few suggestions, they would be:\n\n1. Have a dedicated host(s) greet people at the front door. Take a hint from Arcadia Tavern. I have never walked in there and not been greeted by a friendly smile.\n2. Get the music in order. If you want to a progressive/hip local brewery, you are going to have to do better than a \"killers\" album that was popular 4 years ago.\n3. You have something that people want...BEER! It's great service and attention to detail that will keep patrons coming back.\n\nI look forward to my next visit and I hope some of these kinks are worked out.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "P828sX-WbKmwehgh4xqwYw", "review_id": "r2nRxbxjh8uCWyVA9daF_A", "stars": 3, "date": "2011-04-08", "text": "On a recent Sunday night I was kickin it at the Vine, sharing a well-priced pitcher of imported beer with a friend, and taking in the scene. The place looked as though it was in the midst of some sort of remodeling project, but now upon sober reflection, my guess is that it just always looks like that. \n\nNight went like this: An order of spudskins from the bar-food menu? Sure! Hmmm- they're kinda dry and cardboardy, but looky there! They've smothered them in baco bits, so I'll bite...Hey- check it out! A guy's setting up karaoke! This might be fun. Oh oh- it's not karaoke, he's got a guitar. OK he's ready to sing. He looks like his name is \"Eric\". He's standing at the mic with his guitar waiting for the bartender to turn down the jukebox. People are pleading with the bartender to leave the jukebox on because \"I still haven't heard my Modest Mouse!\" and \"I still have 2 more songs coming!\" The bartender relents and leaves the jukebox on. Eric goes outside for a smoke. Maybe a drink at the bar. Modest Mouse plays. He gets back on stage and waits. And waits. Finally the jukebox is lowered and Eric starts to play and sing his original songs from the heart. I miss Modest Mouse. Eric sucks. Nowonder the bartender was so slow to turn off the jukebox. We're out of here! Bye!!", "type": "review", "business_id": "onwUqByAIhtkyJsEITV5lQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FopAKid3OBQQ-jVmY8HCPA", "review_id": "Kt7zu9XhNzFGVYTwifPWRw", "stars": 5, "date": "2011-04-28", "text": "I took the pole dance aerobics class last night, and man am i feeling it today! everyone there was really welcoming and had great advice for me, as ive never tried this kind of thing before. it's tucked away, and at first i had no clue where it was, but its worth the search! had a blast, got a great work out, and felt great afterwards, im definitely going back for more!!!", "type": "review", "business_id": "yMbHZ9Sok3wAtPy-ShSQHA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "qT17WVkJi0RvQ4nNPN6NDw", "review_id": "Qr7sipX6AZdBYOa0Pd8VHA", "stars": 5, "date": "2011-12-09", "text": "Hands down the best spa I have visited in the state and perhaps the nation. \n\nMassages were amazing.\n\nDrinks and brunch were amazing.\n\nStaff went out of their way to take care of our every need.\n\nWent at 11 am to relax for the day and stayed until 5pm which is unheard of for me at a spa once the initial massage has taken place, but this place kept me going all afternoon with the plunge pool, sauna and steam. Also, the pool and spa hot tube outside were amazing. I honestly cannot say enough about AJi and its wonderful staff.\n\nI will return", "type": "review", "business_id": "qfFSS0A5OXUkCbTeC1fYLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cnJr93p5lm7tppJvNXhQXQ", "review_id": "gY_mcCxRXRKNYzTpFhYjFQ", "stars": 5, "date": "2012-09-08", "text": "Good food, great atmosphere, great service and great prices! We will definitely be back! Can't wait to try the Sunday Brunch!", "type": "review", "business_id": "vak5DKpHttVwT0WDhD5Pxw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "gv6GLZ3-bgSs44PtPJR1Bg", "review_id": "iUOb28Ddl5t_wSxTJzGRrA", "stars": 5, "date": "2013-01-02", "text": "I really (REALLY) like The Lodge so I was gonna give it 4 stars. To be honest though, I really can't think of any good reason NOT to give it that 5th star.\n\nI've mostly been here for Happy Hour when visiting AZ, but I've also stopped in a few late nights, and have always had a good time.\n\nThe Lodge has one of the best Happy Hours (deal wise) in Old Town. All apps (except the mac & cheese and fried pickles) are half off along w/$2 cheap drafts, $3 Lodge signature drafts (which is a tasty beer) & $3 wells (stuck to beer on this last trip, but if I recall in the past they actually use a heavy pour during happy hour).\n\nI've tried quite a few of the apps, and they're all good. The pretzels & cheese are particularly tasty. I always get pretzels & cheese no matter where I am w/the friend I came here w/for happy hour the last time I was here so I can say I've tried quite a few in my day & the Lodge's ranks right up there!\n\nI admit I'm a sucker for cheesy theme bars, so I kind of of dig the ski lodge theme here. the dining room area isn't huge, but is clean w/comfy seats. The bar area is pretty big & the patio is nice, weather permitting. \n\nI've never had an issue w/the service here & both bartenders & bouncers are always nice.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_bHzW18Vg1gxTMoR1fFZhA", "review_id": "QxXZTYE3fDSOZwl0QPcuMQ", "stars": 3, "date": "2012-09-01", "text": "I ordered a thin crust pizza for carry out from this location. The staff was very friendly and the pizza was pretty good. I look forward to trying their pasta in the near future.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "2ddSTl9d-YYPRNoVRAEerQ", "review_id": "wyfqutBB1d6dl6Y8D2H2Zg", "stars": 2, "date": "2009-10-12", "text": "After waiting for over a month for this place to open, constantly annoyed by the sign on the door stating, \"Training in Progress\" I was expecting something spectacular. The name itself \"Revo Burrito, Revolutionary Mex\" set me up thinking I was walking into...a revolutionary burrito joint! My husband and I were disappointed to say the least. He had the Chicken Machaca Burrito, which the counter girl said was her favorite. And it was, well, just a chicken burrito, at best. There was so much liquid oozing out the bottom from the wet lettuce and wet pico that he had to move his chips to another plate because they were swimming. I had the Black Bean Burrito. The menu had stated the beans were slow simmered in garlic, onions & seasonings...sounded delish! However it tasted like they walked next door to Safeway and bought a can of black beans, heated them up and rolled them into a tortilla. It was also supposed to include their \"special cheese blend\" AND there was only a SLIGHT SPRINKLE of cheese...literally! I actually opened up the tortilla to make sure they didn't forget it. Call me crazy, but when I order a bean & CHEESE burrito, I'd like to have at least a small amount of cheese. I guess their idea of special cheese is magical, disappearing cheese.\n\nThe rice with corn & a drizzle of cream was especially delicious & the fresh-squeezed lemonade was tart & perfectly sweetened. We also liked the decor & the windowed kitchen.\n\nFor the price you pay for a very, simple burrito, that offers nothing revolutionary about it, their menu is over priced. I would rather go to Baja Fresh or any other neighborhood Mexican restaurant.", "type": "review", "business_id": "r2S4arkHyRcUroRhggMIoA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7_UYmMZqxM0kvCiPv4x80g", "review_id": "9kfqX0jlaCvU2rTeTMw7CA", "stars": 5, "date": "2011-11-12", "text": "So going on vacation in a week and wanted to get a brazilian for the first time. I gotta say the technician, Christine, was great! She tells you what to expect and tosses in a little humor to keep you comfortable. It was very clean, the wax isn't to hot, and the technician never double dipped. I found the place very clean and comfortable. Pricing is just right too. I like that there are options to buy it for a year and go anywhere they have a shop.\n\nI did get told about product as others reviewed. However, I didn't feel pushed because Christine explained how it can be used and why. In addition, she told me of other uses for the product. \n\nIt was an all around good experience that I would recommend to any friend wanting to get waxed.", "type": "review", "business_id": "ArjchfGWpXf3R8Ly9s52Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "h5TNT3-_yBa0IyvvHj39ag", "review_id": "WBy54v6qkx8lsq7Zuo-5yw", "stars": 5, "date": "2011-01-23", "text": "My dentist recommended this place to me five years ago and every since then, I keep a keen ear to any of her recommendations as Shimagamo is the best sushi I've had anywhere. I've had sushi in CA, NY, TX and HI. \n\nThe fish tastes fresh and the portions are generous. One piece of advice is to eat at the sushi bar rather than one of the booths, assuming you are having sushi. In my experience, sushi tastes better served as soon as each sushi piece prep is done rather than waiting for the entire sushi order to be completed. This place has the best Unagi and an awesome Escolar (which I haven't found anywhere else.) The Suprise Crazy Roll, served with a sweet wasabi sauce, is always on our Sushi order.\n\nThe only con is that this place is pricey, but they do have a daily 5-7 happy hour that contains some great options. However, the best stuff is usually not on the happy hour menu. Also, this isn't a place to have Sake bombs. It's a very low key atmosphere for those just looking for an excellent meal. You'll likely notice early on how many folks are regulars. I was told this was the spot where many Japanese baseball players come to have their Sushi.\n\nThe restaurant is very non-descript. It sits in a corner of a shopping mall and is easily overshadowed by it's neighbor C-Fu Gourmet.", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MMeNMCy0RWW4cM04IKZO4Q", "review_id": "eCN47RxL4BpOU03Gk-olkg", "stars": 5, "date": "2012-09-05", "text": "This hidden gem is located just outside of Mill Ave and is apparently the hipster home base of Tempe. If somehow you are allowed in without suspenders or nonprescription clear glasses, you will see exactly what goes on. to the left at least four people playing chess, to the right someone reading a book, but sitting next to someone writing a book, and did someone just walk in with a puppy? Yes. As you walk up to the counter you are already disoriented so you may be confused about what to order. Well, they are known for their cappuccinos, which I can personally vouch for but on a hot summer day in Arizona, I recommend their \"Dirty Horchata\" or \"Espresso Excellente\" a rice milk horchata with shots of espresso. It was good for the minute it lasted. See you there next time.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 4}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "lUA9sw7laDEHcFOY1HafiA", "stars": 5, "date": "2008-07-17", "text": "Mmm! Delicious Indian food and a great selection of vegetarian dishes.\n\nI LOVE the fact that each dish is mildly spiced, and left up to the individual to customize the flavor depending on which sauces they choose. I'm a spicy lightweight so it was great that I didn't have to worry about getting something too hot to enjoy.\n\nI had a bowl of brown rice, cumin potatoes and tofu masala with a cool yogurt-cucumber-mint sauce on the side. It was fantastic! I can't wait to go back.\n\n...also, I thought it was adorable that we were given a golden dollar coin with our check for \"making the drive to their location and to compensate for high-gas prices\". A memorable gesture!", "type": "review", "business_id": "3GAPcBG8SowgrpS6UHlDeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "AuQ28IMcqAloDmlFI7CKoA", "review_id": "C9zlaIrZqfxLIDfxKzOBKg", "stars": 5, "date": "2012-07-29", "text": "Many have started out with this and it should be stressed , this wonderful place is TINY! \n\nSuggest you make a reservation so you get he chance to enjoy the wonderful food that is in store. We started with the stuffed mushrooms , like many others raved about, and the Portuguese style mussels. Both were fantastic and left us wanting to come back to try the other mussel offerings and appys as well. The endless bread was the perfect tool for soaking up the rich juices the mussels were bathed in. \n\nWe're we're pretty full, but thought we would take a run at the Espana pizza. Hands down the best pizza we have ever had. The flavor could not be any better and the perfectly created thin crust let you enjoy the toppings as both a compliment and as a way to get it easily into your mouth! \n\nFeels more like you have been invited to a friend's house for an awesome meal as opposed to a restaurant. Great people and they went to all lengths to make ours and the other patrons meal fantastic (even the entirely needy, hard to please, and somewhat obnoxious woman seated near us)\n\nWhile I am sure they would make your super comfortable if you had to wait, suggest you make a reservation so you can enjoy this great little place", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JPAF4YSek6iDPuUEAgAJDw", "review_id": "zMlXtuxTHTxKBh2f-HdFHA", "stars": 5, "date": "2010-02-13", "text": "This place never ceases to amaze. One of the best breakfast places in Phoenix. The Sicilian scramble is a favorite--though the smashed meatball was great. We finally went back for dinner the other night and for the first time I had a burger. It should not be surprising that is was fantastic. Atmosphere is great, service is great, and the food is great--just go!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qaogVXIa3uEG8gnUZ4b2Mg", "review_id": "NgmAKDnHh7sAzOGXUy1edA", "stars": 4, "date": "2011-11-21", "text": "service was quite friendly and attentive, and the food was great.\n\nthe fig/goat cheese/mint bruschetta doused lightly with fig sambuca was delicious, though its relative heaviness and sweetness reminded me more of dessert rather than appetizer. \n\nroasted vegetable salad could be a meal by itself....very satisfying because it is not by any means a small serving and includes rich goat cheese and is served with wood fired bread on the side.\n\nnothing better than wood-fired pizza (and bread)! the pizza with artichoke, red peppers, and mushrooms was phenomenal. the rappini pizza i sampled was good, but missing something....more garlic and onion perhaps?\n\nthe bread here was heavenly (as good or better than bianco), as was the pizza dough on both pizzas i tried. crispy on the outside without being fossilized or burnt, and chewy on the inside. lamp definitely has a handle on the bread/dough aspect.\n\ni didn't try dessert, but the ones listed on the menu read highly tasty and unique in print....", "type": "review", "business_id": "s685YHkO3lcId41bjp5KOw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "yGs16xQiN3dLo03OQyto8A", "review_id": "4O8PIxA76i_zPpX-1R8YjQ", "stars": 1, "date": "2009-12-18", "text": "Just a quick update - this KFC shut down just a few weeks ago. \n\nThere still might be someone in line tho...", "type": "review", "business_id": "ZT4yweuACGHR9KtlqPJpiA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "pv82zTlB5Txsu2Pusu__FA", "review_id": "3vCkW5w6WrRms9Lon8jzHg", "stars": 2, "date": "2010-08-19", "text": "This gas station is like the bermuda triangle of gas stations!\nI came here w/ a friend on a first friday, she was DD'ing and i was her passenger \"and i ride and i ride i ride through the city's backside..\" until we eventually reached E and desperatly needed petrol. Like a suspicious siren this little green long necked demon sang to us, luring us in w/ his dino siren song. As we pulled in a car was broken down near the entrance and several dudes were milling around the engine, hood propped open, pondering their next move. I grimaced at their misfortune. We filled up, i strolled inside to pay for my friend Kathy's gas and get some munchies. I walk back out to her car and pump her gas, we chat and make jokes. All the while i notice Kathy is so sketched out, ( a case of white girl from the burbs out of her comfort zone late at night down town).\nGas pumped check. We climb back in, she turns the key in the ignition, and dead silence. A mere clicking and then nothing. SSSHHHIIIIIIITTTT.\nshe starts panicking, i can only help but laugh at our misfortune. Two cars in the same gas station broken down.\nOur situation only seemed more dire as time passed, and each car that came to Sinclair refused to help us, or just shirked us off w/ some lame excuse.\nIt was only until two young mexican teenagers came to our rescue that we were able to move. the other car had managed to start up, and the boys asked the men in spanish if they could give us a jump, reluctantly they agreed. The Mexican men swung their beater over towards Kathy's engine and we hooked up the cables and...LIFE!\nwe said our thank yous and shook hands, and then brought the teens back to their homes, much to the protest of my scared white girl associate. \nHad it not been for those wonderful people we'd have been stranded at the Bermuda Sinclair possibly till day break.", "type": "review", "business_id": "KCpBGuUFnOKEAS8gLAhyaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uBp2Jmip2qXQ0iWHUDY9sQ", "review_id": "vWzw8ZmK75BjKyz4FMPF-w", "stars": 5, "date": "2008-08-14", "text": "I don't actually hunt or fish, but after visiting this place, I'd like to take up those activities. This place is like a giant outdoors amusement park. Everything you could possibly want for outdoor activities is included in this store. I could spend hours in this store just looking at everything they have available. Plus, now I know where to buy the furniture if I ever get a hunting lodge.", "type": "review", "business_id": "UU-kkvyX6pyrl_4fK6Qpvg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "B63qAIvH3jVUlA6ssqVSnA", "review_id": "YCsc27ojakWvydasLcYAGw", "stars": 5, "date": "2010-10-14", "text": "Had lunch at Bliss again ... still yummy as always! This time I had the ceasar salad and their shoe string parmesan cheese fries. I still recommend this place for lunch or dinner.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "usqkiMaReCzDY5LTjEIKBQ", "review_id": "RElQ8_VGc41OamvxOLvbyg", "stars": 4, "date": "2012-02-20", "text": "Prolly one of the best and definetly one of the better Chinese places in town. they deliver pretty late which is always convienent and have the best house fried rice, wonton soup, beef lo mein, and their honey walnut shrimp is average. The white rice tends to be a bit dry, but overall they have always been pretty nice, and always throw in free crab puffs for free when you order over a certain amount. Definetly the go to place for fair priced, yummy Chinese food!", "type": "review", "business_id": "LbLVO7yqAJGEQ1nK6rEvHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iq46mlqoLmNQzTR1z8oqUA", "review_id": "Zq_veoPxDNazGHcRQZ8OxQ", "stars": 4, "date": "2012-12-29", "text": "I think they do a pretty good job here. I appreciate the doc's frankness.", "type": "review", "business_id": "EfOU_RyGYqVY1VYc7xsq9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "C-wX_YQwuNu4OwPsFTbzNQ", "stars": 2, "date": "2011-08-01", "text": "such a confusing airport", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "m9zDNvpl_9Cy3hEoYdyCzw", "review_id": "uZj6wfqE16tMySFaYt-5bQ", "stars": 5, "date": "2009-10-09", "text": "I admit it I eat donuts almost everyday and twice on Sundays. Today a I found a new addiction, french crullers, uhhh they are soo good. Melt in your mouth.", "type": "review", "business_id": "YQKZafMWvIVXfLrM_QjQ1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CE9WVIc83P-F1S0ZRF-Tfw", "review_id": "5H9t3bNfW3dNMSkqkVFZiQ", "stars": 5, "date": "2011-01-03", "text": "This is a great little hidden gem! From the outside, it looks like just a dive but the inside is surprisingly nice. \n\nThe food here is great and they are willing to make things to your taste when it comes to ingredients and spice level. \n\nThe waitstaff are also very friendly. They came by while we were eating just to make sure we were happy with everything even though this is an \"order at the counter\" place.\n\nAnother little bonus is that they have a drink station where guests can help themselves to free refills which definitely comes in handy in Phoenix!", "type": "review", "business_id": "uFwC7N9APy8oTjhda3p9lw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Ce2iRvcUWljeWZpiLbcizw", "review_id": "jMnOIh4R9nxKIbl5rPXC2w", "stars": 5, "date": "2010-04-11", "text": "This neighborhood sushi bar is one of the best in AZ! Fresh fish, good portions, and great service. A place where not every single roll is filled with imitation crab and drenched in sauce! Majority of their sushi menu is pretty traditional...but the sushi chefs takes special requests if you give them an idea of what you like. I especially like the Cucumber Fiesta, which is a salmon/yellowtail/tuna roll wrapped in cucumber instead rice.\n\nThe staff is also very attentive. They check on your need often and clear out empty plates promptly. The thing that stood out most was the number of customers who are regulars. As I wait for a table, I always see people greeted by name and received with hugs. There must be a reason why people constantly come back, right? Check this place out and judge for yourself!", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "dqbHEBseCXC8__D6WM2b9g", "review_id": "l4_gnulGIl1YiSRQU40P9Q", "stars": 4, "date": "2010-05-25", "text": "There are other places in town that are less expensive with better sushi choices, and not as loud, but I had an experience today that inspired me to write here this evening. \n\nI go to Ra (Scottsdale Rd) somewhat frequently for their lunch special which is a good deal: miso soup, yummy salad with addictive ginger dressing, a california roll and four pieces of nigiri. Good stuff. I usually upgrade to a rainbow roll and just pay the difference. \n\nA few months ago I went to a different sushi place in Tempe. I paid with cash and when my change was returned, the server had \"rounded up\" and treated himself to a presumptuous tip (he didn't return my coins). I called the manager over, went home and wrote a bad review on Yelp, tell people not to go to that restaurant and won't return to eat there again.\n\nThis afternoon I sat at the sushi bar, had excellent service, good happy hour eats, and good discussion with the young sushi chef. I paid with cash and my Ra server gave me back my change ... minus coins. I immediately got tense and thought \"great, here we go again.\" I called her over to explain. She said that she had rounded-up - in my favor. I counted my bills and saw that she had indeed given me back my change plus a little extra. She said that she didn't have coins, so she just gave me the difference. \n\nI thought that was very cool. I thanked her, and left a big tip.\nNow I'm writing about my good experience at Ra Sushi on Scottsdale Road and will definitely keep going there. \n\nIt's amazing how one little gesture will have such ripples.", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "irSUI5G3vKYd_1EQ865-Tw", "review_id": "vbKpJRLOfbqT7ORmWn3W7g", "stars": 4, "date": "2012-05-31", "text": "Relatively inexpensive, good solid mexican food place. I wouldn't drive 5 miles for it, but its a lifesaver if you live nearby. Better than the 'bertos.", "type": "review", "business_id": "I20sRbcEK8Ib1YFQFMoERg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WO6bMumFr4oZJwh_ZNXACA", "review_id": "KZM5Im7N8F8BVOXfMZDjSQ", "stars": 4, "date": "2010-08-03", "text": "Good food, decent selection, open late (for you partiers), decent delivery time.", "type": "review", "business_id": "udmb-UuD3xoueQ55INQFRw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "xE393FuR19kQFU50yQHeZQ", "stars": 3, "date": "2010-01-19", "text": "I'm not really a fan of Jo-Ann. They don't really do much to help you find what you need. There are never any helpful people, nothing is labeled properly, and the fabric counter is always a nightmare. This one is tolerable because no one is ever here. The people that they hire at this one are just people who need jobs, not people who love crafts. You better know what you need and where to find it when you go here because it is easy to get lost and there are no Jo-Ann Sherpas to get you back.", "type": "review", "business_id": "sQnIwxSmu3toihB-BCYjqA"} +{"votes": {"funny": 3, "useful": 2, "cool": 3}, "user_id": "1kED3-g-gqnc4JgHe89Xqw", "review_id": "8MO9f0lyCc5RJGQ0Lx5IVQ", "stars": 4, "date": "2011-05-12", "text": "A trendy looking bar...in the airport, hmmm. Wait, in the Phoenix airport?!? No way, impossible, not a chance. These were all the things I assumed before I actually arrived at Barfly before my flight to Mexico a few weeks ago, and I could not have been more wrong.\n\nI wish I was there longer and actually had a chance to sample some of their offered dishes, which honest to god sounded pretty decent. It's still the airport so plan on paying the awesome prices of $10 a beer etc but at least you can spend your pre-flight time drinking on a cozy leather couch watching tube rather than the alternative Fox Sports bar in every other terminal.", "type": "review", "business_id": "2VU7F1oqCxpVPVlvpwvacw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vmZh2hlUeC-18cbg544nyw", "review_id": "lS8yhfnUiR_kiaW_ZPoY3w", "stars": 5, "date": "2011-05-31", "text": "Amazing sushi. Fast, clean, fresh. Friendly staff. Favorites are Arizona, Beauty, Alaska, and Spicy Ninja, although everything here is some of the best around hands down!", "type": "review", "business_id": "Oc-F6O91vOe3T8iOsCBB8Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "cEIeuU0-4fX0Y4qCUW3PwQ", "review_id": "FwFptcCNvQKTnJ5RzSfEXQ", "stars": 4, "date": "2008-12-08", "text": "Finally, a pizza place that delivers to the Grayhawk area. Seriously, when I moved here over the summer and was unpacking I was shocked to learn that no one except Domino's delivers to Grayhawk. At all. Now, on my honeymoon in October I was in Giza, Egypt and saw that, if you stand with the Sphinx facing your back, you can see a Pizza Hut. Yes, that is correct, you can get pizza delivered to the Great Pyramids and Sphinx, but not to Grayhawk. \n\nBut, now we have Zpizza, and it is good. The pizzas range from the usual to more inventive things, such as the Casablanca, which has artichokes. They also feature organic and healthy selections, such as soy or low fat cheese and wheat or gluten free crust. They salads are also fresh and tasty and, while I have not tried them, they also serve sandwiches.\n\nOverall, a good pie, wide selection and it delivers!", "type": "review", "business_id": "MagW3D2UDQaP6KHzhauUHw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "TTP7l5g4QUVCpQZ9NTAWqw", "review_id": "cdlWXipuSxO31Z-dslXm4g", "stars": 2, "date": "2012-02-01", "text": "Ok... lets review this Walgreen. They sell drugs, and cigarettes. All they need to add is sex and rock 'n roll and they would have it all! :)\n\nI never really understood how a \"drug store\" (aka a place that one would think is interested in your well being) (they even have a health clinic in this particular location) could sell so much stuff that is really bad for you. \n \nTime to get off my soap box. \n\nI am not a overly big Walgreen's fan. I hate that they do not do the $4 generic prescriptions like many other large pharmacies do. \n\nThere also ALWAYS seems to be a long line at this particular location when picking up medication. Nothing like standing in line in front of the \"health clinic' full of sick people waiting to be seen by a \"health care provider\" (aka nurse), waiting to pick up my 3 month supply of Viagra... and a six pack of Walgreen's Brand Beer for $1.99. What can I say... I am a cheap drunk!", "type": "review", "business_id": "N0xJodW788eT7Dx0O-N-OA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cH1lLTHReO6uDTif9bfOBA", "review_id": "Ara0sTkxzal4mYe-ZE50fA", "stars": 3, "date": "2009-05-25", "text": "A little disappointed... We have been waiting for the right moment to visit this place and today turned out to be that day. First of all, the location is in the middle of what looks to be a ghost town. The interior had a lot of character with items like the family owned John Deer tractor ;) Anyway, we had the full slab with 2 sides, a bottle of ginger beer and a drink. Honestly, I expected more from this place. The meat was dry, bland and over done. My bf and I both agreed that our fav in Arizona is still Famous Dave's where pay pretty much the same price, get to sit and relax while they serve you, and the food is better. \n\n*Location = kinda out there\n*Price = for a cafeteria style bbq....I think it's a little much\n*Food = it's not all that...at least to us\n*Decor = very classic and full of character\n\n*** I just received a really nice message from the owner, Joe. I think it's wonderful that Joe cares about each customer's comments and reviews. Even though my review was not a very positive one, Joe was polite and very kind. Thank you Joe and I think I'm definitely gonna persuade my bf to try your restaurant again :)***", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OAhO2G3tOfMpO40UlMqbiA", "review_id": "Kvk3tN7_GYP0JbcGoCNs9Q", "stars": 4, "date": "2011-08-03", "text": "This Gamestop is nicely stocked and it is very clean. When I checked in here, I was picking up a copy of 007: Blood Stone. It is currently on sale NEW for $9.99. A fantastic price! \n\nHere's the catch. I tried their \"Pick-Up In Store\" service, in which you pick out the game online, you enter either your Rewards Card Number (which I have), or you enter your Credit Card number, just to make sure that you aren't making a bogus claim. Then you can go ahead and pick it up right away in store.\n\nBUT. They gave me a USED copy of the game, and wanted to charge me $22.95! Are you kidding?! I just saw the ad online, and I reserved a NEW copy for $9.99. The last thing I want is a colossal mix-up... I don't know how they could have messed this up. \n\nThis place would have gotten a 5 star rating, but with the colossal mess up with the pickup, I will only give them 4.", "type": "review", "business_id": "YPBD9sZX8YSd3Al_5jnoIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kBLRAhPq2H2duJQNtRqHTA", "review_id": "WbQy4R8MWCQSD__jHTLfFg", "stars": 2, "date": "2011-10-14", "text": "Fine for an overnight at the airport. Not a vacation destination. Needs a full restoration. Breakfast included.", "type": "review", "business_id": "LO3uvzhh3fUtEQD3AJUxWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HjeIsXfc6ZBq2qczSmuZIA", "review_id": "JKewmprAMD-uIp2mjOO9zQ", "stars": 5, "date": "2012-04-01", "text": "WOW!!! A real European bakery! This was awesome, after having lunch next door at La Buona Pasta we took home some kalachi's and walnut roll home for later. The cakes are varied and everything looks buttery good and sweet. Having grown up near a Swedish bakery it kind of remind me of that--donuts, cakes, cheesecakes, breads and other European specialties. The shop is also set up with a small section of Polish-centric groceries. mmmm maybe I will have to learn to cook some Polish dishes. Next special occasion my cake is coming from there. :-)\n\nThe one we visited is \n13331 W. Indian School Rd.\nLitchfield Park, AZ 85340 USA\n623-547-4655", "type": "review", "business_id": "xC3s402bu9HBJwvH0RUUZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HHlIOuuImgBq7Gbn5smaRA", "review_id": "ywin5PbLRvELRyg_hKjPpw", "stars": 4, "date": "2012-02-13", "text": "Great egg drop soup. Kung pao chicken - meh. Beef broccoli - yum.", "type": "review", "business_id": "Xh7lpLo9TxodWgV5VdWeiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GKzWSBv2Dpx3ziMFQ4S0gA", "review_id": "aggZ7uyuMeaYdel30NHQiQ", "stars": 3, "date": "2011-12-30", "text": "I think if you go to Wendy's you know what you are getting into and compared to some of the other Wendy's it's pretty good. I've gotten food poisoning at Wendy's in my home town, so when i tried this place in Phoenix it was pretty good and didn't make me sick. Granted, it's never going to be perfect, this is fast good not fine dining. In my personal experiences, I've never had a problem, but i think it varies from person to person.", "type": "review", "business_id": "bMqkyZZzfJ3CnmrgGBjJGg"} +{"votes": {"funny": 3, "useful": 2, "cool": 3}, "user_id": "pU2lBD_W3VNvpzKZsRzi2A", "review_id": "KPnIH4jRMIFXbhjd40iQ3w", "stars": 5, "date": "2009-07-09", "text": "this place is awesome. GO. & soon - already decent wait times. \n\nOH, pitches of pbr for 7 bucks. yeah, yeah. shut up.\n\nGO GO GO.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "lXxoslno8L2b9klBsdThhg", "review_id": "RwcmJv5jfloYM3T2druBRw", "stars": 5, "date": "2009-06-22", "text": "I was so happy when I saw this chain appear in AZ. I used to frequent it in CA and have never found another sub that comes close. \n\nI think the secret to their success lies in the freshness and quality of their meats and cheeses - always sliced to order. If you are looking for a veggie sandwich - you will be limited here. But, if you like a hearty cheesesteak or italian sub you are in for a treat. They also take a bit of a different approach in that they really douse their sandwiches in oil & vinegar. It is a different approach but seriously good! The \"Mike's Way\" option (lettuce, onions & tomatoes) is a bit bland, I love to add the mustard, mayo & pepperocini.\n\nTheir signature sandwich is the #13. It has several flavorful italian meats plus freshly sliced cheese. Don't judge this place until you have tried that sandwich! It is unlike any other chain's offering & really amazing. \n\nTheir sandwich sizes are a bit different from the regular foot-long, but if you order the largest size you are getting quite a bit for your money. I've visited the one that just opened in Chandler and was completely pleased. And, I'm happy to hear they are now opening one in Ahwatukee.\n\nThey also seem to have a high focus on customer service - I've always been met by very cheerful, helpful people. Not a necessity for a sandwich, but certainly a lot better than the opposite.", "type": "review", "business_id": "vA9dAPd9fQt_3HqZylKfVA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "E679YrWlyTpvkOBDhAssIg", "review_id": "0YWNnu19OM7nAn0q0hZKcg", "stars": 1, "date": "2012-04-10", "text": "I have literally never seen this place open and I live two blocks away.", "type": "review", "business_id": "lQ22GkzG0tIJRbzkpMbJxw"} +{"votes": {"funny": 2, "useful": 6, "cool": 5}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "KFKl7CzK-HnFy45miuvjQA", "stars": 5, "date": "2009-03-25", "text": "This place was once known as J Chew and Company. I loved that place and this new version is still great.\n\nSo comfy, so casual, so welcoming and so non-scottsdaley it's just the best.", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LTX9pmF-zXPYB4wE8b9RZg", "review_id": "KxNP1IschSc1nwhtPy19Zg", "stars": 5, "date": "2010-03-29", "text": "I'm not a fan of chains. I far prefer to find, and give my business to, new and interesting local fare. That said, there are a couple of chains I like and one is Texas Roadhouse.\n\nTexas Roadhouse does two things really well: steak and portions. I can go to a Texas Roadhouse anywhere and get a well-made ribeye at a very reasonable price. It made not be \"fork tender\" or the same quality as a $50 ribeye, but it'll only cost me $18 and I know it will be far superior to any other, more expensive, chain steakhouse. But before I get that steak, I'll get peanuts, bread, salad, and sides. So I'll likely have half a steak for lunch the next day.\n\nLike I said, well made steak and portions. I'm good with that.", "type": "review", "business_id": "YvQKDmSQqs-R7vPEWV2EiA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "s2JTkU5BbXg7-aHeLDIWLA", "review_id": "G93HpFhjWBhZys2vkhZCyA", "stars": 4, "date": "2010-09-23", "text": "Friendly atmosphere, cool decor, good iced tea and iced chai, great bagels and tasty cupcakes! I had some trouble logging onto their WiFi, but my computer tends to be petulant.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cQfnnQhGCFzd0P1MsJu21g", "review_id": "yumgsa9m02CACzq0dHZP7Q", "stars": 3, "date": "2010-10-18", "text": "I made it home for two nights, and I would do it again. It is extremely close to ASU's campus. It was clean, people were friendly and I got a free ride to the airport. It was a great price; normal mid-range hotel with no amazing views. It has the amenities you need for a quick visit-including a pool and gym. The free continental breakfast is ok, especially if you just want cereal. I would not order bacon-not worth $2 extra.", "type": "review", "business_id": "ky3kuTeqTUOU4CsZ_2_LzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fs3dWymMSrrNCB8X2HlWXg", "review_id": "-Cs7wUUU2SKve37cb5-_wA", "stars": 4, "date": "2013-01-01", "text": "Great work lunch. Valet parking, only. Waitress was helpful in narrowing down my selection (salmon salad) and listened to my criteria. 4 stars since wait staff seemed otherwise aloof.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "2vgAy9AE1XNkF0wPMyQ1kA", "stars": 2, "date": "2006-02-03", "text": "Terrible coffee. So bitter I would have to dump a quarter cup of cream and several heaping tablespoons of sugar into this cup-a-joe to overpower the flavor... but at that point, why wouldn't I go all out and find myself a milkshake or some other creamy sugary treat? \r\n\r\nThe muffins are the size of your head. Lots of calorie-laden treats. I had some carrot cake once and it had that stale refrigerator flavor in the icing. What a waste. \r\n\r\nMy advice, walk across the street to Starbucks. At least you'll get a mediocre cup of coffee instead of a bad one.", "type": "review", "business_id": "3ZzLRa20P219UWXIxMTXrg"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "IMsUuPGFQoNMeZzbhqtiCw", "review_id": "WzKupgCvkwcwEUBY7p0msg", "stars": 4, "date": "2008-01-26", "text": "Nearly half a decade ago, a man's fantasy became reality in a form never seen before: Scottsdale, Arizona. The motivation for overhauling the city's master plan was to create the greatest feast for the senses in the American Southwest. Everyday, reputations are on the line as master chefs pit their artistic creations against each other.\n\nIf my memory serves me correctly, and I think it does, the French first colonized Indochine in hopes of seeking access to rubber. And the greatest beneficiary of this decision would be the brothers Andre and Edouard Michelin, inventors of the world's first removable pneumatic tire. To encourage automobile sales, and by extension, their tires, the Michelin Company begin to print free travel guides at the turn of the century with recommendations and ratings systems for restaurants, hotels, and attractions throughout France. These ratings are still the most influential culinary grades in the Western world. It should come as no surprise that as controversy about the Michelin system has grown, Vietnamese cuisine has finally seen the rubber hit the road.\n\nA recent addition to Scottsdale's culinary universe is Andre Nguyen. Having migrated to America near the end of Republican Vietnam. Arriving in Seattle, Nguyen attended culinary school and met his wife, Noel. But despite the lure of of other cuisines, the chef stayed true to his roots and opened Andre's Eurasian Bistro in the suburb of Bellevue. His success was almost derailed by a fire that gutted the place. Ngyuen however used the time as a sabbatical, improving his craft, and re-opened his restaurant. Local journalists likened it to the Greek mythological creature of rebirth , the phoenix.\n\nBut as luck would have it, he and his wife sought out to leave soggy Seattle for arid Arizona for a different Phoenix. At the end of 2005, they took over a hole-in-the-wall called Pho AZ and named it \"Noodles Ranch\". Here today, Chef Andre rules the roost with impressive skill.\n\nThe interior decor flatters the otherwise mundane feel of the strip mall in which it sits. Andre has been careful to use color and light to accent various pictures, newspaper clippings and other decorations. But what will surprise the visitor is the degree in which Andre takes this so seriously as to neglect not even the bathroom from this regime.\n\nHis menu is a mix of predictable, authentic Vietnamese dishes and his own creations borrowed from other cuisines or his own imagination. Chef Andre is not a reckless auteur, but his more audacious dishes may have fewer fans than his bread and butter. \n\nAs the Chef takes many of the orders personally, guests often might assume the service to be poor, undercut by Andre's own seemingly curt personality. But this ignores the fact that in authentic Asian restaurants, servers often seem more distant and unpleasant than Denny's. Do not let Andre's intent become lost in translation.\n\nFinally, in standing with his other bretheren, the Chef achieves this all with low prices. Now Chef Andre, \"the Giant\", after years of success in the land of gray skies face your greatest challenge yet. Hold your own against the city's most eminent gourmands, not just for you but for the good of all Scottsdale.", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "K6MrbZeqKG35ZiucFfucvw", "review_id": "9pnDtSDFsll9uCU7GKqPFQ", "stars": 5, "date": "2012-02-08", "text": "I picked up a jar of fresh-made salsa and chips for the Superbowl party I was attending last Sunday because they are that outstanding! They were a big hit! \n\nIf you are dining at the Blue Adobe, definitely try the chips and salsa. I am not a big fan of chipotle seasoning... it is definitely one of the key ingredients, but regardless I think it tastes great. If you like it, you can buy a jar of the fresh salsa and take it home with you for about $9 (it is a good sized jar).", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "THYIqfnLV54VZ_v2hCfq2Q", "review_id": "o0Ge7nSnZ4l99O-Y06mZQQ", "stars": 4, "date": "2011-08-22", "text": "From reading previous reviews, times have changed. The jockstrap has evolved since previous reviews. This sports authority is #1 source of sporting goods. Check out the Under Armour athletic apparel in the mens section, as they have mens trunk underwear that will keep the jingle in your jangle and is as described. I've purchased a couple and its evolutionary. Like any retail store, when it comes to pricing you have to be proactive. To get a break, I check out the Wednesday flier that's in with the junk mail or sunday inserts. Usually you can find some good incentives. Also if you take a couple of minutes to do their invitation online survey you get $10 off of $50. That's 20% and if you are willing to succumb your online privacy and give them your email, they will notify you of employee friends and family promotions at 25% off. I used it to purchase a $399 Diamondback that I ended up getting for $200 after a sale. Staff are friendly if you ask and if they don't have a size will do a check to see if another location carries what you are looking for. I'm wondering where their Puma selection is as I would consider that to be just as popular as addidas. Due to the location it's my first sports stop, and even though I remember Albertsons, the last thing I'll be thinking about when I'm there is cottage cheese.", "type": "review", "business_id": "f0EBgORnWfcabOUhodvCGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kU7iQDW70gcCVBX9uQVFHA", "review_id": "pObvsF-jJruiT6ZmFhN2dA", "stars": 4, "date": "2012-10-20", "text": "Been to the Saigon Kitchen 3 times now. Once with a friend, another with my teenage daughter and other on a lunch date with my husband. Will have to say have been absolutely pleased each time. I ordered the Shaken beef (diced Filet Mignon) each time. Husband ordered the Chicken Curry (which he liked) and we enjoyed egg rolls. \n\nThe food has been hot, tastes fresh, excellent presentation and absolutely delicious. Portions, in my opinion, are definitely a good portion---just right. Entree is served with white rice, soup/broth, and a tasty shredded side salad with a great Asian dressing. \n\nStaff was polite and attentive, food came out in a timely manner. Have thoroughly enjoyed my experience each time. They play nice \"Global Ambient\" music, the restaurant is somewhat small yet cozy. It has a nice \"grown up\" simple Asian feel. Definitely a great place to meet a significant other or good friend to lunch. \n\nNOT a place I would recommend for children; tables are somewhat close together and it has a relaxing feel. Menu seemingly NOT designed with kids meals etc. Also a bit expensive if considering price. Hubby and I each had the Shaken Beef lunch with egg roll appetizer and drinks, it came out to $39. Worth the money, but if you are watching budget on a lunch date, just something to consider.\n\nWe definitely have listed this as a favorite place for us to dine sans kids!", "type": "review", "business_id": "YnWb8fRudnNkXc-VjrmKGg"} +{"votes": {"funny": 5, "useful": 7, "cool": 7}, "user_id": "vCqiNuf7iEK71ytGBzwkKg", "review_id": "WYjVHHtFYDX0PWucZ_AiZw", "stars": 3, "date": "2010-01-22", "text": "The owner of Vermont Sandwich Co. just contacted me and offered to make right what happened to me during my last visit. Nice gesture but I had to decline. I didn't write what I did for a handout but I'm giving this place one more star for the offer.\n\nVermont Sandwich Co is very highly rated. For the owner to try to make right by one negative commenter among a multitude of positive, says something about the owner's integrity.\n\nI think a return visit to Vermont Sandwich Co. may be in order...", "type": "review", "business_id": "eJpr6Ks8pr4bmvDVPTN-Xg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "2eVF68QkqhjPBFYI_4ErLA", "review_id": "_krbgG8nZW4ipJLfZ83Z0Q", "stars": 4, "date": "2010-06-28", "text": "I'm a fan of J.T.'s. Reasonable drinks and REALLY good wings. It's small, so it can get pretty crowded, but the people are friendly, service is good, too. J.T. 's is a great neighborhood bar, nearly free of any douchebaggery.", "type": "review", "business_id": "qz4ZOcv-840UjfCEYI4qZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "B84_jVH5SYE9NZn25IjbdQ", "review_id": "jr3tV_oCvt8mHq9VgyLORA", "stars": 4, "date": "2011-03-18", "text": "Step back into the 1990s and enjoy a workout! Nice clean facility. Equipment sort of jammed in at odd angles (in the large weight/cardio room) but its good stuff. Not sure the purpose of two weight rooms. I think the club is more tennis based yet they have do have group exercise classes, racquetball courts and a pool. \n\nI think the spinning room may have been a children's nursery at one time based on the wall graphics, the black light effect is unique. If this were my club I'd place the emphasis on spinning classes and convert the smaller weight room into a spinning studio. \n\nDropped a star because the women's locker room doesn't have a sauna. \n\nVery friendly employees! I am so glad to be greeted with a smile when walking in the door. Everyone on the staff is friendly. Quaint club. . . in a good way.", "type": "review", "business_id": "Kt0DIPfjR5WPVpEqyIGdBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "U1VhMJAKHaTqCSIp9RoRcg", "review_id": "5jqJpDe8P22HtS4GH4kZ_A", "stars": 5, "date": "2012-01-16", "text": "This is by far my favorite Indian restaurant in the Phoenix area and the best!\n\nThe food is very delicious and the owner, Preet, is very hospitable.\n\nToo bad I no longer live in Ahwatukee. All I could think of when I was at a restaurant down the street from my place earlier, is how mouth-watering Star of India's chicken tikka masala is.... Yumm!\n\nA must visit!", "type": "review", "business_id": "d_8bMNQd0mesbEUeq1U2kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Jc4riSibQf4xfxTQqX65Cw", "review_id": "NZ_DqNIqYTMLhVoCfkD2vg", "stars": 4, "date": "2010-08-02", "text": "love their food, great for lunch and breakfast....\n\nthe service is a little hit or miss but they always keep your coffee cup full-you will almost always have to ask for extra milk-but whatever.\n\nLove having the breakfast sandwich or their pancakes-my favorite ones are no longer on the menu though :( they had apples, sour cream and honey over them SO GOOD!\n\nNot a place for breakfast cocktails though, so don't anticipate a good bloody mary. their sandwiches are amazing, I've had several and have never been disappointed. \n\nDespite the shoty service it's a great spot for breakfast or lunch so definitely give it a try.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "y9IKf7VckFc-fesWuDwgxg", "review_id": "hYP_AplDFDy2qfZ0vi7TyA", "stars": 3, "date": "2008-08-25", "text": "meh...... I'm torn.\nI found this store to be a little bit of a walking contradiction.(okay, not \"walking\" but you dig what I'm saying) \nReminds me of myself in alot of ways....not all of which are good.\n\n You see, I recycle EVERYTHING at work because the cute little receptacles are provided for me by waste management thus leading me to not actually think about what I'm doing. Plus, I co-manage a 26 story high rise mid-town and with the whole \"green\" movement, we'd be setting ourselves up for some major problems if we didn't comply with demand and of course, it does just \"make sense\". At home, not so much and to be blunt I don't really think twice about it. (go on.....hate) \n\nThis is how I feel about Fresh & Easy. Hybrid parking (fkn ridiculous) but no bike rack?? WTF??..... Tons of bullshit organic produce and no preservatives but then everything has been super sealed in some weird plastic containers. The F&E brand crapola that I tried was mediocre at best, also, it seemed like everything I picked up was within a day of expiration. \n\nI don't know about you F&E. We could be kindred sprits.... but two wrongs don't always make a right.", "type": "review", "business_id": "opikDGSxDcfZwYWbk7dKtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tFyQbNbBQEyEc9oCr1pJUg", "review_id": "lM4HseCRr108Fe1vmTsp6Q", "stars": 5, "date": "2012-09-18", "text": "Great quality food, atmosphere, and location. This is a place to take a date to or just to have an enjoyable evening with great food. The meatloaf (When they have it) is amazing. Steak is also top ofthe line.. Definitely recommend..", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "UWvzV6C2kNFgwvkQSo2Pgg", "stars": 4, "date": "2006-05-12", "text": "best breakfeast downtown ... bar none ... it's far more \"healthy\" than I traditionally prefer but the place is beatiful, very cool and has an ADORABLE waitress ;) !!!!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "JG-HkjNDalM4L6wOkmJ_1A", "stars": 2, "date": "2011-03-14", "text": "I wasn't aware the hamburgers came with two patties until I bit into the large fatty food eating competition mess of a burger. It was good but my arteries screamed at me for the rest of the day. The fries were ok. I opted for the cajun fries which were a bit soggy. \nThe place it diner-esque. Music bumpin' and the coke machines are all high tech and fun to use. \nI don't plan on putting this place in my rotation of burger joints but I'm glad I tried it to see what all the hype was. Hype is usually just hype!", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "DnEn4DrIdhLqm9y6frQmvQ", "review_id": "9mQ72z_pidjXkSGc-gHI4w", "stars": 5, "date": "2011-12-06", "text": "What's all the fuss? I'm not sure what folks compare this chain too? The Dead Duck Inn? Joe's local Chinese Gag house? Are those places that great? Sooo fresh and delicious!? Not in my days? Pre-made sitting around and HEAVY oil is what I see from most other establishments. Even those touted by friends. Maybe it's because they know George from behind the counter. It's not Pei Wei! Pei Wei is a quick, fresh and inexpensive gift from heaven. Even the hard to please Yelper has to admit, the multiple options you have to modify your meal should give you no excuse not to love what you order. The food is fresh and prepared to order. Even fried rice is made to order. The sauces are made from scratch and are a combination of quality Chinese ingredients. (Chili paste, fresh garlic, scallions, bean curd, and a bounty of fresh Chinese vegetables). Go Yon China will serve you pre-made sauces with no punch and lots of giggle. The atmosphere at Pei Wei is great! Black and dark red with glossy graphics and all sorts of Chinese! Even with the \"stand in line\" style of dining. Makes me hungry just thinkin' about the joint. However, to me it's a take out Ferrari! Call in, swipe my card and off I go. Sure, it's not Chang's. Still, it's better than the local Dead Duck Inn's \"food\" stained art, with a Chinese New Year paper place mat. \n\nOf course! I'm looking at the healthier options a Chinese food place may have to offer, and Pei Wei lifts the bar in multiple sets! Get your chicken steamed, go brown rice, add extra vegetables or go vegetarian. Still you may complain...\"Oh, is it too salty? Or too sweet?\" Give me a break. This is CHINESE FOOD! And, you won't find MSG. So, if you don't want spicy, salty or sweet; have a meal from Bland of the Rising Sun. But, if you want a highly under rated treat...I ask you to open your mind to this familiar spot for clean, fresh, made to order and \"if you like\" healthy Chinese food!", "type": "review", "business_id": "gFGldPLVQdqbHQodU5TeUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "wha2RtvuIpEzekV4tmTFpQ", "review_id": "X-ZT6XrnXW0c1sbb6oTavQ", "stars": 4, "date": "2010-08-16", "text": "The biggest tip for Last Chance is to go in with an open mind about what to buy. Inevitably, if you're looking for rainboots and remember seeing a ton the last time you were there, there won't be a single pair to be found when you return. This happened to me recently -- but, instead of the boots, I found an unopened package of Spanx (marked down from $36 to $7.97), olive-colored DKNY tights for $.97, and a pair of Hunter knee-high boot socks for $4.97 (for when I eventually do find the rain boots). I wasn't really looking for any of these finds, but couldn't resist. You just never know what will be there -- I saw one woman toting around three life-sized cardboard stand-ups of Twilight characters. Go with the flow, and don't get too focused on one particular brand or item.", "type": "review", "business_id": "Nj6ITW0Zhl7LpovGIH6SAg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1-A_PLT-60EZ9MsfbkV9sw", "review_id": "D4PT0jk6d_Wsszh2mZsddA", "stars": 1, "date": "2011-09-02", "text": "AMC Theaters has the distinct disadvantage in Phoenix at operating in a town with a high-quality, local provider of entertainment (Harkins) and they really pale in comparison. Tonight we went to the AMC 24 at Arizona Center, which is literally right near our house, but we've been there only two or three times in as many years. Why? Because AMC doesn't offer a senior discount any longer.\n\nFor AMC Management -- Did you know that there is a huge population of older people living in condos in the downtown Phoenix location who go to moves three and four times a week? I think it is absolutely ridiculous that I could go to a Harkins and see a movie for $12-13 for two but when it's an AMC Theater, it's $20. Do they think they are so special that they warrant this extra \"tax\"?\n\nThe theater is generally clean and nice, but the prices on sodas and popcorn are too high, combined with the fact that they don't offer the discount to seniors. AMC, please just fold up your tent and go away. We don't need you here.", "type": "review", "business_id": "ZNi59SPFF2GXSmRrk-f5Rw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "dGuQDhH6NZnNCMuSwHx2jw", "stars": 4, "date": "2009-03-25", "text": "Customer service is always top notch - returns always easy, greeters always helpful. \n\nI have never had a problem using 2,3, 4 or even 5 coupons for 20% off or their $5 off discounts either. \n\nGreat clearnace, good end of season sales, amazing selection of colors for bedroom or bathoom. Excellent space savers & container suggestions for clutter.\n\nLove their glassware like Ridel & Elisch & Mikasa stemware.", "type": "review", "business_id": "rhxBsu0k_BddgjOP9MYdeA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "KFMmXJUCuIx-FnJu2wAh4g", "review_id": "m1xX6vf7XHJY7qWx29n5kg", "stars": 2, "date": "2012-02-05", "text": "I really like the ambiance here for breakfast but the service is TERRIBLE and they are always out of staple items, like English Breakfast tea. \n\nI had a morning business meeting breakfast here, paid the bill and tipped 20%. I asked for more tea and got charged again, okay, fair enough. I paid the additional bill but did not tip again on the $2.50, the waiter followed me outside and confronted me about why I didn't tip again on the second bill as I was standing with my client. Tacky. Also, they need to step up the menu. The menu is limited and not prepared very well, which is a shame, because it has a great Euro Cafe type of environment.", "type": "review", "business_id": "oc0Wl6ktfMLb5VZ2Uz6M2A"} +{"votes": {"funny": 4, "useful": 5, "cool": 3}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "r7KI7dCOCdeQA8D2yKuwCA", "stars": 1, "date": "2008-01-24", "text": "Bitzee Mama's isn't my mama! My mama wouldn't have kept her hungry son waiting forever for his lunch. She wouldn't have let my go thirsty with no refills. She does make a good bowl of salsa so that makes it alright, right? \n\nTook my real mama there for lunch.. I ordered the taco salad and ma ordered the cheese enchilada plate.. also a bowl or red chile. Taco salad was alright except the taco shell was so mushy from water it literally fell apart when I picked it up.. glad I wasn't eating the shell. She's old school.. makes a darn good cheese enchilada and refried beans. Struck out again with the red chile.. I swear, can no one except La Canasta make red chile? While the meat was tender and the sauce was smooth it had a weird orange color to it and the meat tasted, well wasn't any beef Ive ever had. \n\nOn the way to the counter to pay my bill I noticed that almost everyone was eating chimichanga's.. well then, looks like I ordered the wrong thing! Place is also uber cheap. \n\nBe careful what you order and mama will be just fine.", "type": "review", "business_id": "i41M_To0DAxuzZIGvU1wyg"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "ynagltjAr25JZ2Y8PNLYiw", "stars": 4, "date": "2010-04-15", "text": "The staff here made the place awesome. They were friendly, on top of things (including when I lost my cell phone), and didn't really blink an eye at the crazy antics of the adult webmasters.\n\nI loved how close they are to food, bars, and even adult romance store on Mill -- I could just walk through the court yard and hit Rula Bula and RA.\n\nHowever, I had two things I didn't like as much. A) there wasn't enough non-outdoor, non-sunny space to hang out in. Yes, it's Phoenix and people come here to get tan...but I live here, and burn ridiculously easily. Yet everything was in the sun, because there was no large, sun-free area. Also, b) while the lobby, courtyard and seminar rooms were nice, the hallways and actual hotel rooms seemed a bit outdated. Also, trying to find the pool with no signs? Not so much fun.\n\nAll in all, a nice hotel and the perfect place to hold a pervert conference. I'm sure I'll be back at some point!", "type": "review", "business_id": "I5ypI3aYbbTL8dAjnI3PDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GkWuTgewni9bzPM4HUCO-g", "review_id": "0Cl45wu_h16i2uNwMsDnpQ", "stars": 2, "date": "2009-11-13", "text": "With regard to AMber W.'s points\n\n1. I'm rating the food not the containers or the owners\n2. If it makes you feel better eating subpar food because of the American Spirit so be it. Others of us are more concerned with the food itself.\n3. I'm not downgrading it because it's not a sit down restaurant. Even among non-sit down restaurants or \"fast food\" style Indian themed eateries, this place is subpar. I've eaten at quick Indian eateries and they are much better than this.\n4. My review is for people who understand and can appreciate good Indian food. It's not for people who value text service, nice containers and chatty owners.\n5. I want to support mom and pop and locally owned restaurants but I also want to support good ones and not encourage bad ones to emerge simply because there is no competition for Indian themed restaurants here.", "type": "review", "business_id": "J7ZNnzbCoyMqd-y608wl6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AncVDK7eNz6c0pxLxAl42w", "review_id": "yn1NLnSEkQO2FDO2vcCG7A", "stars": 4, "date": "2011-11-21", "text": "oh these wings were freaking amaaizizznzng,\n\nel heffe i believe they were... the bartender seemed very cool and concerened on what i was getting.. great suggestions.", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "R50WCEHhvycn6OzoEkA2Zg", "review_id": "Dv1rz-5vdATqmlPFIGJ8Fw", "stars": 4, "date": "2010-06-03", "text": "I have been wanting to try Big Daddy's since it opened and finally today was the day for some lunch there! \n\nI was expecting cold mac and cheese based on some of the reviews, so imagine my surprise when it burned six layers of flesh off my tongue. \n\nThe mac was HOT, the sweet potato fries were HOT and my pulled pork was HOT, so I do not see what the fuss is about. The fries are a little on the heavy, sweet side so I could only eat a few but they are pretty good. The mac was dreamy and thank you for including some of the browned/burnt crusty stuff from the top... mmm I am a simple man and easily pleased, I guess. \n\nOverall I can't give it 5 stars because I think it's a tad overpriced, but I still think the value is good. I'll be back to work my way through some ribs and wings and wash down with beer next time...", "type": "review", "business_id": "4DhqZ0tyi2V2Mp8IqTREAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mex8qXT7nR89uTKX_qtgSA", "review_id": "iUZCOWobnyGQIuk9olHyrQ", "stars": 4, "date": "2010-12-17", "text": "This place just has a really good happy hour. I usually just stick to appetizers when I go but with free chips and salsa all night, I don't need much more. Their happy hour goes from 3:00 to 7:30, fantastic considering happy hours seem to be ending earlier and earlier now a days. \n\nThere are plenty of HDTV's around to keep me entertained, so I'm gonna guess it gets really busy on Sundays during football. \n\nThis is just a good place for pretty cheap drinks and decent Mexican food.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PVbcpvrSKv2GTBK9QiQgiA", "review_id": "jyUPscTxt0RxY2whqyPg7g", "stars": 3, "date": "2010-04-23", "text": "Is Jimmy single? Cause if he is, I'd like to introduce myself.\n\nNice local Italian spot. \n\nDecent prices.\n\nFriendly service.\n \nAntipasta salad was great, lots of goodies for the money. Meatballs and Italian sausage were okay bu the spicy sauce was great.\n\nI will be back to try the pizza, get another salad and ask if Jimmy is around.", "type": "review", "business_id": "91n02N35x38nvR1XH-jOAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TWtSLPNSif6AdhXTiFKNPA", "review_id": "MVhLlljYhksJJ-V2hbfLRg", "stars": 3, "date": "2010-10-21", "text": "Went to try it out yesterday morning. The service was so-so. It wasn't crowded, and it took awhile for me to be noticed (and I'm 6'2\", 275!)The Arbuckle's coffee was great. Ordered the #2.....2 eggs, 2 pancakes, 2 sausage patties and 2 strips of bacon for $5.99. Everything was fine except the sausage which had a peculiar flavor....the bacon strips were thick and tasty, the eggs okay, and the cakes were very good with an interesting touch....instead of the normal one glob of butter on top of the two cakes, there was one on top and one between the two cakes (made for easy buttering of the bottom cake). All in all worth another try (might have been just an off day for the sausage). Wish it were closer to home!", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0KXxuKxlspsO6CrDLgQJ-w", "review_id": "EZMUOLfNkyO1Hc83g1Ipqg", "stars": 4, "date": "2010-06-19", "text": "Why have I lived in the Valley for eight years and not been here until yesterday? Seriously was missing out. (And being such a Mexican food junkie that even my friends and family can't stand me warrants the trip alone). \n\nChimi = Good. Not as good as some other places I've been to. But good. \nEverything else = Really good. \n\nFood is filling, and its easy to indulge in...\n\nService bothered me. Don't get me wrong. Our waiters were very friendly. But its like...\n\nDude...this drink has been empty for 15 minutes...why is it not full?! Had to ask for things, refills on water, more chips and salsa (Which are fabulous, by the way), etc, etc. Maybe I'm overly expectant and believe that water glasses should be full at times. Either way, its not a big deal. \n\nCarlos O'Briens - you should expect my business in the future. I promise I'll be good and go the gym soon thereafter.", "type": "review", "business_id": "qHjUo2foq-IXF6Tk1Iz3WQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "n1h87EmG_HBlp33v3X_QuA", "review_id": "JajBITnpkrsojj-Hpq-0Yg", "stars": 3, "date": "2007-06-13", "text": "Other than at grocery stores, it's becoming more and more difficult to find a simple, decent donut shop. And for some strange reason, there aren't any Dunkin Donuts in Chandler or Gilbert (can someone explain this phenomena to me?). I know, for donut purists out there, Dunkin Donuts is just another corporate chain. But I happen to think their donuts and coffee are pretty tasty! That said, Bosa Donuts is nice alternative. It's a small shop with a good variety of freshly made donuts. I especially liked the chocolate frosted cake donuts. They were really good. The coffee was ok, let's say... better than \"breakroom\" coffee. Located just north of the Downtown Chandler area, Bosa Donuts has both walk-in and drive-thru service 24 hours a day, 7 days a week.", "type": "review", "business_id": "6HAwTnhNJoR5VNdfUrRoEw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "ADziQkUoHwIvM-qdFcHTvg", "stars": 4, "date": "2011-05-23", "text": "Good food and good service in a convenient location to South Mountain. Great place for a weekend breakfast!", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-7LfdqX286W8zJ01ljY_SQ", "review_id": "A97bcBk3chRQFLMlwiN4Ig", "stars": 5, "date": "2012-05-25", "text": "If you desire true Chicago deep dish pizza, then Nello's should be at the top of your list! This is a staple pizza location in the Valley- and my family has been going for years. Nello's offers a great menu, drink list, and atmosphere. They offer an excellent Mon-Fri lunch special - a large drink, salad and 2-topping personal pizza for $8.99- what a steal! Don't pass this place up, it's worth it.", "type": "review", "business_id": "69c7z9ySnlqV87tITDGENA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "7W4egS-WyR0hRHMfQtPEOQ", "review_id": "Aycn-UqYXiNZR8q6hovHNA", "stars": 5, "date": "2011-12-06", "text": "My house has never been this clean EVER!!! I am thrilled with the level of service and professionalism expressed by the women who cleaned my house today! I bought a Living Social coupon, and I am so glad I found this company. 5 women arrived and fully cleaned my house in 45 minutes. The women were friendly to me and especially my dog, which is the sign of a wonderful company, if you ask me. I am hoping I am able to use this service on a monthly basis. Angela scheduled my appointment immediately when I let her know I had company coming in town, and the cleaners arrived during the scheduled time. I am thrilled with the results!", "type": "review", "business_id": "MMMHmbfq3nxUQREU4hKOKg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "bwSkOcVrS9kXbS7UKBanRA", "review_id": "XUlXz5ovpIOgOuAcYIcFuw", "stars": 4, "date": "2011-06-11", "text": "I was looking for a place where I could get new tires and an oil change that was near home. Luckily there is an Advanced Auto Service and Tire Center south of Old Town Scottsdale on Thomas Rd. I initially went in for two new tires, but ended up getting four new tires since all tires were the original ones from when I bought the car. Fortunately, I am getting a $80 rebate on the tires which is a good thing considering the cost of the Goodyear tires.\n\nIt took about 90 minutes to get the four new tires installed in addition to an oil change. I worked with Jason and he provided excellent customer service from inspecting my tires to recommending the best tires.", "type": "review", "business_id": "bLPTtVgxxlDMUDp5AKPINA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e3i2J-cBKJoP9Mth5uolhw", "review_id": "vPBiVDeB2b6bca5Lthgl2g", "stars": 5, "date": "2010-11-08", "text": "The Flower Studio far exceeded my expectations at my wedding! Christine is an amazing artist, businesswoman and person. She made time to meet with me outside her regular hours and really understood my vision for my wedding. Her arrangements for my wedding were absolutely stunning and really took the event to the next level. I am more than thrilled with this company and would recommend them to anyone. Thank you Flower Studio for making my wedding so beautiful.", "type": "review", "business_id": "kjPNxaueXm5nm97aMxbg6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W_h8ZrIS6mpO4bCqdmbCZg", "review_id": "_W3jGFQVTosdaSUelaQArQ", "stars": 4, "date": "2010-03-31", "text": "The Good: \nReally good burger.\nGood fries.\nThe Bad:\nTerrible paint and lighting. Can't even hang out for long. (Maybe that is the idea.) Don't like high booth stalls much.\nJMHO of course.\nAlso a note to the sewage smell that others noted. That little area on that side of the mall has smelled like hell for years for some odd reason. It sucks for the businesses, but I assure you it has nothing to do with Smashburger alone nor should it cause any health concerns. Just luck of the draw on a bad sewer vent problem.\n\nUpdate: 4/18/10\nWent again. Really very good. Decor is still not my fav but the food is solid. Like I said, it is the juiciest burger I have had in a while. Shoestring fries are kill. Upped from 3 stars to four.", "type": "review", "business_id": "TuCAYZ89lP_s6D7Y78xNhQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V1TF9IrcxyZiebGigNCPWQ", "review_id": "OIXjpCqDmB_Ma3gryRhFlA", "stars": 5, "date": "2011-12-18", "text": "I dig the breakfast been to 7th and 38th and had Nan's breakfast, Plus have had tamales too so really is something to come back. In 13-years (I live in Cali) been here 26 times and not fancy (although 7th is the one with great pottery and colors inside. I ate 1 time for lunch of dinner and 25 times for brekafast", "type": "review", "business_id": "vz2zQQSjy-NnnKLZzjjoxA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LraJWu39nHCBlquYr6SsuA", "review_id": "-skX1HIaPx4K5EvXl-VABg", "stars": 5, "date": "2011-11-09", "text": "Hybrid class!! Did it a few years back and to this day it's the best workout I've ever had. Will be going back FOR SURE", "type": "review", "business_id": "i3ycWEmmDivp5TEnx20wVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "dUDzN6zl3j12zhByOrnF9Q", "review_id": "YoipuVfIKBuzcsTsSfKZSg", "stars": 4, "date": "2012-04-12", "text": "This is a place that you want to go to if you're looking for fresh clean food- not if you want a large meal. I left satisfied but not full. The prices are a bit steeper for the amount of food that you get- but you are paying for quality, not quantity. I opted for a salad which hit the spot- but could have been a tad bigger.... as a result we definitely had room for dessert. I recommend the apple crisp :)", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "Gdf8vpVrqNWjo02SUpT2rA", "stars": 4, "date": "2010-05-18", "text": "Located next to T-Mobile on the Southeast corner, the parking is terrible because of the \"always busy\" Paradise Bakery. \n\nGood prices (about $1-2 less than most other places), quick service, good manicure and decent arm/hand massage, clean place.\n\nI plan to come back try out their pedicure soon.", "type": "review", "business_id": "slpV71Ne8HC0uAzwKLMxVg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "k2u1F6spBGhgk2JtAe97QA", "review_id": "hF8W89cfKYZXnsxuwgBOMw", "stars": 3, "date": "2012-10-23", "text": "I am not the biggest fan of fast food ever. But I really like Five Guys and this location is superb! \n\nThey have really yummy fries and they give you so many! Like your bag overflows with the greasy buggers. Say what? Yeah they are really greasy. But good!\n\nThe burgers are really quite the bang for your buck too! Not the best burgers in the world but it is fast food not gourmet burgers. Be considerate for what you are eating and enjoy it for what it is. \n\nThe pop machines are radical. You can pretty much have flavoured any beverage you like. \n\nThe staff here is really friendly and that is a plus anywhere you go!", "type": "review", "business_id": "MpohnCC0uQNj7DZWaBFSgQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "oDnAAifb_2zj3Cekc5Kbeg", "review_id": "nlJ0UziX1OoRRrdl4DAufg", "stars": 2, "date": "2011-07-22", "text": "Boring. Uninspired. Generally sauce-less, which means the meat courses are plain and dry. The salmon tastes like styrofoam. The filet is flavorful but they use low quality cuts. The veggies are simply steamed. No doubt the options are healthy, but at the sacrifice of flavor. When I pay this much to eat out, I want to taste it and enjoy it.", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dX3MARllgeotUaoHAFFHRA", "review_id": "pTymuP6MJiTtAFm6yGz4YQ", "stars": 5, "date": "2011-11-14", "text": "Super cool coffee bar with a great outdoor patio for little ones to run around!", "type": "review", "business_id": "sF3k_ZSndah1OwduVlb8_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "ewnwxqKtpDv8erOIZkCpjA", "review_id": "jEOJX7yamUXjir-Sdr1fJA", "stars": 5, "date": "2012-06-23", "text": "I've been here three times and have had terrific food each time. The meat is incredible and their sauces are amazing. Portion sizes are generous and the mac & cheese is delicious! This is what BBQ is all about, definitely one of the best in Phoenix and we're lucky to have it here in the NW valley!", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "shAplOMYNkG5JnjZ05NQMQ", "review_id": "UQ3AnY78I-9gVwWNcuR5lQ", "stars": 3, "date": "2009-08-11", "text": "As so many others, I found this place because of Guy on triple d. The room mate and I made the drive down one afternoon for some lunch hoping that the experience would make the 30 minute drive worth it. I was kind of surprised when we pulled up. From the outside it wasn't quite what I was expecting. The place is located in a strip mall and nothing really makes it stand out from the road...but figured maybe all the awesome was on the inside. \n\nWe get inside and there are quite a few people. There aren't too many tables and almost all of them were taken. I grabbed the only one available that someone had been recently sitting at and just cleared some of the mess left on the table away. I stepped up to the counter and placed my order for a chicken chimi. It ended up taking a bit longer than I would have expected, but when the food came out it was pretty good. Let me say this now, I'm comparing this place to the Filabertos and Rudolphos and etc. With that in mind, this place is great. The flavor of the chicken is unlike any you would find at those other locations I mentioned. If you compare it to that of items found at other diamonds in the rough, I think it falls short. It is for that reason I give this place 3 stars. If I lived closer to this place I'd eat here on a regular basis I'm sure since the food is not at all bad and the prices are worth it, however I'm not sure why this place ended up getting a spot on triple d.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "kGkvgGnGMV7CpN6BtRaOlQ", "review_id": "2r_sO24zElz1w-VouGKZaQ", "stars": 4, "date": "2010-04-19", "text": "I have been to FEZ twice now, when passing through Phoenix. First, the decor is amazing, an oasis of urbanity amid the heat and sprawl of Phoenix. Excellent lighting and decoration. And I love the food, a mix of Mediterranean and American fare. This last time, I had a grilled-chicken sandwich with pomegranate vinaigrette, goat cheese, sliced pears, dried cherries, and field greens on ciabatta. My dinner companions had different sandwiches, and all were good, but one of my companions said he thought his sandwich was just a tad over-sauced. The sweet-potato fries were a real treat. I plan to make FEZ a regular stop when I travel through Phoenix again.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cXnWZPcrtHjKXbcNzulg2A", "review_id": "D4s4MtRWo_AfQHtPbjwH8A", "stars": 1, "date": "2011-09-14", "text": "Closed... GONE UNDER, OUTTA HERE.. See ya later, bye bye..", "type": "review", "business_id": "8WPCqC0Y-yszJi7eqfSllA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "e0Rls_7QxkVcFJtUXDaA0A", "review_id": "vVle8sHunAnYT79YKbn1mA", "stars": 3, "date": "2011-01-01", "text": "I'd recommend this place highly for two situations: 1.) You are on the west side of town and you want some reasonably priced grub, 2.) You've never had Vietnamese food and you want to try it out in a non-intimidating environment. For those two things, PA is awesome! \n\nNice people, decent food, and a very friendly environment. But their food doesn't stack up to the central Phoenix standard bearers.\n\nI suppose that their score is artificially low because of the category they are competing in. Were they the only game in town, I suspect I would have rated them much higher - just to get my hands on a Bahn Mi every now and again.", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RSBpPixPILehXxTyuGgEyg", "review_id": "zBM347XcsxjIPco78IbZIg", "stars": 5, "date": "2010-08-19", "text": "I have been going to Vatoci hair salon for over a year now. I've had the same stylist from day one and I highly recommend her. I've never had so many compliments on my hair! Ask for Marsha (Mirushe) and I guarantee she'll take amazing care of you. \n\nI love that she always remembers what we talk about and asks me about my job and my kids too. I am sure that Spiro and Vera also do a great job because the people who are in there when I am are regulars and everyone is always happy to be there. \n\nMy daughter loved going in to be pampered as well, and they are amazingly flexible on scheduling appointments even though they always seem to have plenty of customers. They know what they are doing. Highly recommend!", "type": "review", "business_id": "ll-z6OsHZnIYZqUJXC4Yug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "5c4p-A1sLBlpS1cPaMpdBg", "review_id": "cudUGNz0uh8NS9622mZGeg", "stars": 4, "date": "2011-08-17", "text": "The pancakes would be a 5, but the breakfast burrio would be a 3 and the breakfast torta a 4 so I averaged it out to a 4 star. A very cute little place and you have to try the pancakes for breakfast. You can order just 1 if you want, perfect for those of you with something else in mind but still have to try the 5 star highly recommended pancakes!!!!", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aIjx92U6ig4pQtHqPIHGsg", "review_id": "tWKRNEPCyxvMs8LZ3sZK8A", "stars": 4, "date": "2010-11-06", "text": "I ate here last week and I really enjoyed the burger, fries and decor in this place. I've always thought there is only so much you can do to gussy up a burger and fries. The Zinburger and double truffle fries with aioli had some unique ingredients and tasted great (love the onions caramelized in Zinfandel.) The meat used in the burger is fresh and high quality and they cook it to your specification. Ya you're going to pay more but for $15-20 you're getting a much nicer product than the typical $10 bar burger with fries.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "VBKbZD9X4zruXYORIhJhhg", "review_id": "U95yCrNQRWRGJk_63c18hA", "stars": 1, "date": "2010-12-02", "text": "It was family day (the ex and I like to see our son smile) and we were starving... after driving around for a while we pulled up to Arriba's and said \"what the hell...\"\n\nThat's also what we said when some of the food came, as in \"what the hell is this??\"\n\nSo positive first. The server was pretty quick and he gave refills without being asked. Chips and salsa were good. Chips were warm and salsa had a nice (suprising) kick. Kick... do I sound like an old lady? \n\nMorgan and I ordered fish tacos and beef tacos, respectively, so we could swap one for one. Fish was ok... nothing spectacular... but honestly I would rather pay for one at freakin Del Taco or Rubios. Not worth it here. Rice was ok, some flavor, probably converted rice though. Beans were... blended? I dunno about you but I like to see some actual BEANS in my beans! This stuff was like brown goo... YUMMMMMMMM... :P\n\nThe beef taco was just weird. I swear to God is tasted like gyro meat! WTF? I couldn't eat much of it. \n\nLast but not least, Dom ordered the White Sands Chimichanga. That sh*t looked nasty to be honest. Covered with some gooey white sauce, filled with pork. LOL, he said it tasted like hot dog. Um, yikes! He took about 2 bites and was \"full\". A.K.A., he didn't like it.\n\nI also had a margarita... it was HUGE and didn't taste very good. I'd rather have one 1/4 that size that tasted nice. Oh well.\n\nOne star for the chips and salsa. Like I said, the fish taco was okay, but every thing was just way over-priced! \n\nFinal verdict? We decided to NEVER go there again.", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "eeEj90eJiwYMLJfPW9kdxg", "review_id": "WcanVZ59nGwCLwIHObWSug", "stars": 4, "date": "2010-02-19", "text": "Jamba is definitely as good as it gets when it comes to chain smoothie places. We are big fans of the Acai antioxidant smoothie, which is unlike the other smoothies that we've tried there. It is super healthy and has a distinct flavor to it which we like because it's not as sweet as their traditional smoothies are. I like going to Jamba because they are always reliable, fast and friendly when we have visited, even if the smoothies are a tad pricey. But, you get what you pay for, and I would much rather pay a little extra for a consistently good smoothie that I know will be delicious than take my chances on an unknown place that most likely won't deliver the goods.", "type": "review", "business_id": "leg0kbfxBVksdt7qf5gXPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ahXmdKsanBCT6ImDa6dFhA", "review_id": "R4il0jtjeC4QXVHBQgtXiA", "stars": 3, "date": "2011-01-26", "text": "Meh.\n\nI went to Big Bang a lot during the peak of my ASU bar hopping days, but never fell in love with the place. It was (still is?) one of the only bars on Mill that charges cover. I don't recall any decent drink specials; domestic beers only. \n\nOf course, everyone's in love with the dueling pianos. Sure it's fun when you're inebriated, but gets old fast. I hear the exact same songs every time I go. I personally guarantee you'll hear 'What I Got' and 'Sweeeeeeet Caroline' at least once.\n\nOverall, a solid veteran of the Mill Ave scene.", "type": "review", "business_id": "Q_jHqufNoxdlgCtLbqrpsA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Bs-v1fTmq8dqJFQwo-JMWw", "review_id": "DE_WqNEFBzU1xhU1Kdi-7w", "stars": 5, "date": "2011-10-31", "text": "Kona grill is never a disappointment. Sushi, the regular menu, the atmosphere..... The staff is very friendly and the food is very good! We like to create our own sushi dishes and the chef is always ready and willing! I highly recommend Kona Grill for consistently good food!", "type": "review", "business_id": "oIkwj10HmUiognO68j7jOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E5qFR0RBQBoXx8FbrOkdbw", "review_id": "hsz4sKpkq79AbrlpYy8lMQ", "stars": 4, "date": "2012-10-12", "text": "Always clean and accommodating to any workout schedule. I work near by so it is very convenient to go at lunch.\n\nGreat amenities, even a pool, and classes. Wish there were a few more yoga classes or classes geared to those of us that are out of shape/beginners, but I'll get there.", "type": "review", "business_id": "werWnE_3k8GYVaMuUcWw4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "rSk9gydHUIp32_7emi2VJw", "review_id": "u3DH77aZIp5sM2el_211VA", "stars": 5, "date": "2009-05-18", "text": "I love this place, I want to go to Arizona just to eat here! The greek fries were really good and different. It was just really really good. \n\nWe're going next time I'm in town Fervor!", "type": "review", "business_id": "TsmBNiwMMeb8aRrZs00JBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B7mOEA-S2acoo1S4t8wZ-Q", "review_id": "cSM_tejSi_TBQkwUFIrtog", "stars": 4, "date": "2010-05-27", "text": "I mostly buy mountian house and other camping foods from REI, they have a huge selection to choose from, including biscuits and gravy. don't expect 5 star restraunt food, but on those long days at a Military range Mountain house beats the pants off MRE's not to mention you could eat 3 mountain house meals and be about where a MRE is. I've been drooling over several other items at the store, I'd like to go backpacking sometime and they have tons of little things that could make things a little more tolerable for either Military operations, or camping/ backpacking.", "type": "review", "business_id": "ptH216EFNFLvF32EN-9tmA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "ast7yCfvhIwaD53OFSXoag", "review_id": "u56OrC8Gas8Nr-0Gsm-Ftg", "stars": 4, "date": "2012-01-17", "text": "I flew out of (and into) this airport for the holidays. The process was painless once inside the airport, but their setup with the roads, ramps, and terminals is so absolutely convoluted. I've never been to a more confusing airport with regards to traffic.\n\nThat being said, once inside, it was quick to check-in and get my bags checked. I also was traveling with my puppy who was so warmly welcomed by everyone, staff and otherwise. They had no issue with him being out, unlike other airports.\n\nA huge perk is a dog park they have outside Terminal 4 to walk dogs before/after flying. Made me feel a lot less nervous about the 5+ hour trip across the country, and I'm sure it made my dachshund a lot happier too!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D1Q1me4EqtcK8g1pPG_OsQ", "review_id": "sQqvn2jozXIXJxrRkWICMQ", "stars": 5, "date": "2011-06-15", "text": "\"If you buy half a duck, you don't get to pick which duck.\"\n\nI lived in China, mainly Guangdong, for three years, and all it really took was a look at this sign, along of course with all the wonderful roasted ducks and pork, to know I had come across a place with bona fides. \n\nHope Kee has some of the very best Chinese food in town, in my opinion, and is worth the trip from wherever it is in the valley that you live. \n\nI don't know anywhere else in town you can get such good congee, which is actually called \"zhou\" or \"jook,\" and which is a soupy, delicious rice porridge. \n\nThey're also one of the only places you can get dried scallop soup, which they do an excellent job of. \n\nDried scallops, a specialty of HK/Guangdong, are one of the most delicious things in the world. \n\nEverything that they make is delicious, and sitting in there listening to the customers and staff talk in Chinese and Cantonese can really take you back to China, if you've had the pleasure of spending time there. Otherwise it's just about as close as you can get. \n\nIf you want to eat some real Chinese food that is both delicious and approachable, and very reasonably priced, you can't beat Hope Kee. \n\nGet some soup or some congee, some clams with black bean sauce, some greens and some BBQ, and you'll see why China and Hope Kee are such hard places to stay away from. \n\nIf you do decide to try your hand at duck-picking and buy a whole duck, fear not for wasted leftovers, because roasted duck makes for a very tasty soup.", "type": "review", "business_id": "EljtR0HL1PSNjm2CebisoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AOC3bEkZ7pTiXRdz0Tgp9A", "review_id": "sR81a-njwFCTj11j2y1xDg", "stars": 4, "date": "2011-03-13", "text": "Super cheap and good! I loved how large the portions were, the squid salad came in a large bowl and was delicious. We will definitely be returning.", "type": "review", "business_id": "BL3SqCfSJuDTNDR9_b9NdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lAngRi4lwBIHmjCBVLd-8Q", "review_id": "BAi0eV3p2zJNgVSYM5do1Q", "stars": 3, "date": "2012-05-10", "text": "We ate here last weekend and it was nice. The wait was long but if you've never eaten there it's worth waiting for. Once you get in there you'll see it's a fun place to be; a combination of hip/50's dinner with real all American food (especially breakfast). I had the salami and eggs breakfast which was ok. I thought the salami was way too salty. The hash browns on the other hand are amazing. They were made from real potatoes, cooked just right with plenty of grease and I loved every bite! I also had a cup of coffee that was average at best. My wife, on the other hand, had a glass of lemonade that was made from scratch and was sweetened with honey which we both thought was awesome. If you're going to come here bring a small snack you can munch on outside because the wait could be up to an hour and a half. Best thing is to call before you come and ask how long the wait is.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Dq0Qa-ahnaQh7n9UYP6B5Q", "review_id": "TQOetmHOc9HjqCUAum-q9Q", "stars": 5, "date": "2010-10-13", "text": "How can something so simple taste sooo good? I wish there were one more on the west side. I hate going to the fair to get my fix of fry bread. There needs to be one of these on every corner of the compass in Phoenix! As Rachel Ray would say, \"Yummy!\"", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "QllJeui2mmf03VltICAdjA", "stars": 2, "date": "2011-04-28", "text": "I have been here about 3 times, twice for the weekend breakfast buffet and once for lunch. The food is similar to Denny's, so nothing special here. Everything here feels dingy and dirty, there was hair in one of the dishes in the buffet. Service is average, but employees are just as dirty looking as the restaurant..will not be coming here anymore.", "type": "review", "business_id": "PUaNORt_B7Uim4JyClvPMg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "2nw-jvmele1gkJMuiMMRFQ", "stars": 4, "date": "2010-08-04", "text": "If you haven't shopped at a Fresh and Easy, the simple way to describe the store is it's like Trader Joe's. Only Fresh and Easy has a modern feel to it instead of the hippie co-op atmosphere. For being a relatively small store, it carries a very good selection at very reasonable prices. The thing they're best known for is the prepared meals that are relatively healthy, and only take minutes to heat up. \n\nOne of their best features is their reduced priced on perishable foods. Almost everyday you can get a great deal on steak, beef, chicken or fish that's a day away from its pull date. As long as you're not picky, it's well worth it. \n\nThe biggest problem I have is with their produce. For a place with \"Fresh\" in its title. I've notice that fruits and vegetables I buy from Fresh and Easy tend to expire pretty fast.", "type": "review", "business_id": "g-CiH6Pa-rClhDYlHGA-Mg"} +{"votes": {"funny": 3, "useful": 5, "cool": 2}, "user_id": "hq0WUfau1Mh3GyHn8oVdNQ", "review_id": "OYQKs3W86kQ1Osmxe8XiSA", "stars": 4, "date": "2008-12-15", "text": "My husband was born and raised as a British Expat in Hong Kong and loves the Chinese Cultural Center for its authenticity. There are some great, inexpensive and authentic restaurants there serving a wide variety of Chinese foods. There is a place called the Seafood Buffet on the west end of the plaza and the food there is fantastic and lunch during the week is around $7. Golden Buddha (next to the amazing wedding shop) has an inexpensive lunch menu and I've heard the Dim Sum is incredible. \n\nThe grocery store in that plaza has tons of authentic Asian foods that you won't be able to find anywhere else. Just the smell of the different foods and spices takes me back to my last trip to Hong Kong and really adds to the experience. I don't know what half the stuff there is, but if you wander through the candy aisle you should pick up a few random pieces and just try something different. \n\nThe Center has a festival around the Chinese New Year where they have street vendors selling all kinds of goodies including a huge selection of decorative Koi fish and various cultural performances. It's really a unique place, especially here in Phoenix, and is worth an afternoon visit if you're looking for something different.", "type": "review", "business_id": "PsuvqWNmLBU8ABkch2d9vA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "E_41DHXXwawTlhgNspNx9A", "stars": 2, "date": "2011-09-09", "text": "I think this Savers is getting their layout confused with Goodwill, which is like Target getting confused with Walmart; both in the same category, just one is more classier than the other. I used to live by this Savers and would frequent it every day yes, literally every day back when they used to have great items. Just pop in real quick. Over time they changed the layout and experimented with things. \n\nAfter visiting today I saw that now everything is so crowded based on the way they structured everything using the same space with the same amount of stuff. The shoes are racked above the clothes racks now. This is extremely, extremely annoying. There is no emoticon to express how annoyed I am by this move. I understand they are trying to make the shoes central to the clothes so they are in the same spot, the shoes are racked by size of course snaking down each aisle. Sooo to look at shoes you have to go down a couple of aisles waiting for people to get out of your way, rather than have them in one spot like they used to be. Of course people are not going to magically put back shoes where they belong so you might find shoes in the right place, or you might end of having to walk down each and every aisle looking at the shoe size stickers making sure they are not cute and your shoe size respectively. Savers, please correct this annoying inconvenience. \n\nAlso if you genuinely find an item with a tag missing they won't sell the item to you. Listen I get it, this is such a high traffic thrift store that there is a good reason for this but you must wait until the next day for them to price the item and put it back, they won't hold it for you. They don't call a manager over to simply price the item out for you, so how is this good customer service for the innocent ones? Why punish everyone? Why not do like some other stores do and mark the clothing label with a washable marker so that way if the price tag comes off, based on the color they have a pricing system set up? Either way, end up taking the time to re-price and re-stock it again. \n\nThey should also implement some type of buzzer at the jewelry counter, I don't know how many times I have gone there, not just this location, only to wait and wait finally having to ask a cashier to send someone over to help me because there is never anyone there. The service is always impatient at the counter too, I don't know about you but I like to make up my mind about a purchase! This place is just too picked over, it is nothing like it used to be in its heyday. Way crowded on weekends and busy in the evening. If you bring donations you get a coupon for $3-5 off your min $10 purchase with a tax deductible tag. I will say housewares are your best bet here, good condition and best prices. If you are looking for generic clothing fine, but diamond in the rough stuff like I am accustomed to? no, you won't find that here.", "type": "review", "business_id": "xLgPskx22Qj7kaq3KK_fxA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oYxo29sYpY87pFUpi3lh_g", "review_id": "ooyoTxBjzThPPZA0Z3XehA", "stars": 4, "date": "2011-07-02", "text": "My boyfriend and I looked up this place on yelp and decided to try it out. When we arrived, we walked inside and the line was to the door. Instead of waiting, we went to the take-out window outside, which we thought was very convienent. They were very fast and friendly. The ribs were tender and very good. The pulled pork and hot sausage had great flavor! Their bbq sauce is sweet with a bit of tang. The mac and cheese was EXCELLENT! The only thing that I was not pleased with was the cornbread. I feel that they could make it much better. We will definately be going back to eat bbq. Overall experience was very good.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "j-kShDJgp5acGhqJAkJHnA", "review_id": "PkSC__fIePPGpHnvvZWLEg", "stars": 4, "date": "2010-10-13", "text": "I have not been to the Outback in years as past visits have, well, sucked. I am not one to complain, I just never go back if I have a bad experience or two. Seriously, there are too many good places to go out to eat to return to business who don't focus on their food. \n\nSo my boss loves this place and she wanted to go and of course as she is the boss I agreed to return to the Outback with her. \n\nI have to admit this place has changed. Our server, Bree, was excellent! A server can make or break your meal and Bree was on her game. \n\nThe food was really good, OK, I am super picky and was ready to hate it as I have in the past but tonight was different. I ordered the teriaki marinated sirloin. It came perfectly cooked at medium with sweet potato, salad and bread all for $12.95. \n\nMaybe I got lucky and came here on a good night but I am glad I did and will definitely return.", "type": "review", "business_id": "0VyvlA1mZsDoYd3kkRjevA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "muMWQgGzTS3f8GidUyaS7Q", "stars": 4, "date": "2009-12-27", "text": "Went to the Rooste for a Christmas Eve dinner among a small group (9) friends. I had never been. Had heard the name many times over the years when I had previously lived in Tempe. \n\nBeen intimidated that by where it set that it was expensive and swanky. That's all a lie! It sets up high and has a wonderful view. It's not located where you are just strolling down the street and decided to pop in that is true. You wind through these grounds to the back of the property pass beautiful fountains and buildings until you come to the lite up restaurant. You can self park but why bother go for the valet. \n\nYou pass a smelly ranch steer at the entry that is probably wondering why the hell its there as much as I was. Inside the door the smell escapes you immediately, thank goodness. You see some young sap making cotton candy and wonder what the heck have I arrived at. A few more steps and you see you are in a western theme establishment, by the overwhelming amount of raw wood beams and flooring. \nFirst stop the bar. It's a limited full bar and for this it losses a star. \nFrom the bar the view outside is great and you can look down and see the country music band playing (it was a band but I wouldn't book 'em) but hey they gave the place a little extra pulse. You see the staff in casual western gear also and you instantly know you're welcome in your jeans. \n\nMoments later our table was ready and half of us choose to take the slide down to the dining floor and the others took the steps. Hey I went for the slide! It was short and fast and another reason to come casually dressed. \n\nOur waitperson was a delightful and articulate young woman. We skipped the appetizers to leave room for dessert (next time I'll reverse that decision). The menu was very good. Several steak cuts, enchiladas, fried chicken, BBQ beef & pork ribs, Seafood, a burger, pork chops, most plates $15 - $20. \n\nWhile waiting for the salad course a magician name Flash comes up and asks if we'd like some magic that night (he works for tips). He went about his tricks and blew our minds! THIS GUY I WOULD HIGHER for an event. Never figured out how he did what he did but would love to see him doing it again and again. So if he comes by your table take him up on his offer of magic. \n\nThe food arrives, the salad is good and fresh the main courses come and all are cooked to perfection. My medium rare T-Bone was actually medium rare for once! My steak was tender and taste fabulous. The food didn't hold it's heat well and they serve sweet potatoes or rice with the dishes rather than standard baked/mashed or fried Idaho's (extra charge for a standard potato - why? - Minus another 1/2 star). But over all it was a good meal. We barely had room for the dessert so we split a 9 layer chocolate fudge cake and another dessert among us. And we still had four or so layers of cake left to go home! It was so rich and such a huge slice no 3 people could have eaten the entire thing following a meal if they tried... 4 of us dug into this slice. \n\nAll in all it its a great steakhouse. Prices lower than Lonestar and Steak portions (ounces) bigger for your money, plus a better all over food and appetizer menu by far. Oh yeah I'm a fan and will be returning again and again when I want a steakhouse to fill my steak cravings and a bit of entertaining to accompany the meal. \n\nI highly recommend Rustlers Rooste.", "type": "review", "business_id": "wZwZcte4lcbu51NOzCjWbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6Jb6ho3Zsu8EX4W7LdaPPg", "review_id": "Vt5hnc6TM9jUOrL3MI7EOA", "stars": 4, "date": "2010-02-21", "text": "Went there for the first time a couple weeks ago. When I go for sushi, it pretty much consists of Nigiri Tuna and California rolls, I'm not a hardcore sushi eater by any sorts.\n\nService was good, was seated right away, took my drink order, came out.. My drink never got empty before a replacement came out (big plus for me). I ordered one of their sushi meal things and requested it all be tuna (you get to pick), GF orders something, I think it was Teryaki beef..\n\nCouple minutes goes by, another lady comes out and tells me I cant have all Tuna cause its too expensive. Hey.. I'm an easy going guy, I shrug my shoulders and say, \"cant you chuck another $5 on my bill to make up for it?\". I'm not sure what she said, but apparently that was ok :)\n\nFood comes out, I had a bite of my GF's meal and the beef was cooked very nicely and the sauce was great! My sushi was good, you cant really expect too much out of Tuna and California Rolls other then they just be fresh.\n\nI noticed they have some nice Happy Hour stuff. There was a flier floating around inside that said it was 2:30-4:30pm, looked like some good deals. When I was leaving, the window said a different time for the Happy Hour special, no biggie.. I might go back and check it out", "type": "review", "business_id": "MhkZLdUFaHt5SDcQcqOWQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jtT3RFcI8isonLupfH7RwA", "review_id": "NsiB8vUNVa95sOWr-wDQmg", "stars": 1, "date": "2012-10-01", "text": "This was the most HORRIBLE floor cleaning I have ever seen!!!!! We took before and after pictures and cannot tell the difference at all! The guy was not friendly and just wanted our money even though he did not do his job! I would NEVER recommend this company to anyone. We paid $1000 and got $20 worth of service. I mopped the floor the day after the cleaning guy was here and got a lot of the \"staining as he would say\" off easily. I have included a picture that we wrote in the floor with a paper towel after the cleaning....can you read the saying? That is exctaly how we felt after the service. REALLY?!?!?", "type": "review", "business_id": "6_fEp3GQ7X3fMfyZ18ZzrA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "eRtuJOuHBXoJ3GRlAe_eTw", "review_id": "Mip5sNSzUbmG1rnjzbYO-Q", "stars": 4, "date": "2010-08-24", "text": "This is one of my favorite theaters. \n\nIt's a little known fact that the first showing of the day for any film is only $5. This keeps my wife and I coming back. One of our favorite things is to see a movie at 9am and hit a great spot for brunch afterwards. And yes, they don't mind when you show up in pajamas with Starbucks.\n\nA great time!", "type": "review", "business_id": "4Pf9DQBcR23A6Lg2pDsrBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mTx0GhWWV6NOAd_crYJw8w", "review_id": "fsZ0aXmDKjUabrdnJ4KsnQ", "stars": 5, "date": "2012-10-04", "text": "This is my first time trying this place and I had a wonderful experience. The place was packed and yet they got me in right away. A young man gave me a pedicure and did a spectacular job. They even put on a timer for 15 mins to ensure I got a full massage during it. They offered the other services but did not force any on me. I will definitely use them again and recommend the place to others.", "type": "review", "business_id": "ISkukkcFdHgjy_Wnma9ZxA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HWi8ntFMy81BVjAsgAwbrQ", "review_id": "DgtXTp5dXqij9SQ9hI5Vdg", "stars": 3, "date": "2009-11-01", "text": "I'm in agreement with Anandita: If you've got to shop at a Whole Foods, this is the one. The only attitude I got was from a couple cougaresque velour-tracksuited shoppers, not from the staff (who were all refreshingly down-to-earth and friendly).\n\nIf you're straying from mainstream essentials, they are surprisingly price competitive (or even cheaper than) mass-market grocers. For \"normal\" food it's still Whole Foods and still often inordinately expensive. Their meat department usually makes me laugh.\n\nBut if you're looking for something weird enough even Sprouts doesn't carry it, chances are Whole Food not only has it but has an employee who can tell you all about it.", "type": "review", "business_id": "MWoM_zf75KD0VcOm8Yb58A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BRNVGPDi58XPDyxfxX39sg", "review_id": "SDsJ_HXaMOCUD5nid-kMww", "stars": 5, "date": "2012-01-08", "text": "The best staff around! Very friendly and always make sure you are satisfied with your food. The food is great as well. From breakfast to lunch, and healthy shakes like Fast Fuel, you can get it here. Very clean too!", "type": "review", "business_id": "tm-lmBXzrBeKUDj_eQVZYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_qQJEA45k_E6EGE7vuzUDA", "review_id": "vdxxUwuP9zROlGLQM5kDFw", "stars": 4, "date": "2010-05-23", "text": "*3.5 stars*\n\nIn the interest of supporting local AZ businesses, my husband and I had dinner here on my b-day (5/13). The first thing I observed is that they have a couple walk-up windows on the southside of the building so you can place your order and get food without having to go inside. Thought that was pretty clever! We arrived close to 8 pm and it was still pretty busy inside, but the line moved quickly. \n\nThe restaurant is set up cafeteria style with a kitschy country look. There is a huge mural on one wall dedicated to farm living and a John Deere tractor with accompanying bric-a-brac on the other side. Once we got through the line, I choose the meat plate with 2 sides...beef brisket and pulled pork for my meats, mac 'n' cheese and beans for my sides. I really wanted to get chicken instead of the pork, but they had unfortunately run out of chicken :( . My hubby got the full slab of pork ribs with sweet cut corn and mac 'n' cheese for his sides. We shared a piece of cornbread and for dessert, split the root beer cake. Happily I received a discount on my meal because it was my birthday (they advertise a \"free\" meal, though it's basically $10 off).\n\nThe beef brisket and pulled pork were so good! Tender, juicy, and delicious! Those meats really are the best reason to go Joe's. The beans and mac 'n' cheese were just ok...so far Fleming's beats everyone hands down when it comes to mac 'n' cheese! The cornbread was so-so, tasted like it came from a box, but the honey butter that comes with it made it pretty tasty. Regrettably, my husband's pork ribs were pretty fatty as compared to Lucille's (Tempe Marketplace). The root beer cake was good, but not as delectable as we thought it would be. Maybe we were expecting too much after reading how much fellow Yelpers enjoyed it? Another thing worth mentioning (some others have commented on it too) is how strange the beverage station is. It's smack dab at the front of the line where you get your food so you have to fight your way through the crowd (if there is one) to get a refill. Weird. \n\nTo conclude, Lucille's is still our #1 favorite place for BBQ, but we would still go to Joe's again.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "TDqE8xeg_fx2BqDO0jU3FQ", "stars": 5, "date": "2010-03-03", "text": "Im a sucker for great libations and the stores that can carry the works.. Zinfandel for me.. Magners for my boy.. ( a great Irish cider we fell in love with in SF)..\ngreat tequilas.. all types of wines.. you get my sniffster...", "type": "review", "business_id": "vlEsxOtkCrStCb52gJhG5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xa6MsSFkXmWp23Aq-zz-uQ", "review_id": "a9a2jQ1-hTK5c1sgZc7Thg", "stars": 5, "date": "2012-01-05", "text": "Wow! The Penang Curry (chicken) was absolutely incredible!! The portion was huge...had enough left over for another meal and tasted just as good the 2nd day. I will definitely be back! The Thai Tea was very good also. I just wish it was closer to Gilbert!", "type": "review", "business_id": "JiLK9QPjd53pOBEAaY83lw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "i-eCe-byLImKmbtv41PbnQ", "review_id": "pd0ekrEgnCwU0L1imreJpw", "stars": 1, "date": "2011-03-12", "text": "Donuts are really good, if they have any when you get there!!! Went in on a Tuesday morning at 1030, and they only had a total of 10 donuts. Drove out of my way to go there and still ended up at Dunkin Donuts. Very disappointed!!", "type": "review", "business_id": "XfgU_1_X8eVX8_CqofAeIQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gJEJg1fPVDPnkdcVFbVlBQ", "review_id": "hfpYR7L3LsG9yDpEVyQ4KQ", "stars": 4, "date": "2012-08-03", "text": "1 more star awarded: Upper Crust, you've grown on me. Reading through my previous review, I still have all the same criticisms about the ambiance, but three return trips and I keep finding more and more reasons to like you. \n\n* Excellent and attentive service, busy or slow\n* Michael David Petite Petit by the glass\n* Wine Wednesday: 1/2 off bottles\n* Great deals through social media\n* To-die-for yummy crust", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "oo71jAdnEKfYvlE6tSTZzA", "stars": 4, "date": "2011-03-30", "text": "I went to 2 Spring Training games at his stadium this year, and had 2 different experiences. The first game we parked ourselves and passed several incompetent lot attendants just standing there. As there were no barricades and they made no indication otherwise, we assumed it was ok to pull in. It was only at this time that they waved their arms and said we had to park at the back of the lot. This happened 3 times.\n\nThe second trip we opted for the free shuttle from Zipps, This took the pain out of their incompetence out of the equation. Once we got in the park we had a great time both trips. There is ample shade covering a good portion of the seated area for afternoon games. Beer prices were a little steep, but we were happy to pay $8 for a pitcher or 2 of Blue Moon at Zipps beforehand to take the sting out of the $8 cups at the field. \n\nOf all the stadiums I've visited in Phoenix, this one has been the best (aside from parking annoyances). It will be a challenge to top this facility.", "type": "review", "business_id": "PO2JBrCFcxd5ne-7ewDwdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cNU3hw0Gvm2iNGOOvrhWMg", "review_id": "15qQvYITFlzCtUkMaRf4Og", "stars": 2, "date": "2009-02-10", "text": "My least favorite sushi experience in a long time . . .I've had better from the grocery store in those plastic boxes. Took an employee on their recommendation. I guess it's quite different at happy hour and the evening. Very nice surroundings down to the fish swimming in the floor. That day it must have been a \"two-fer\" Sushi and attitude all for the price of the sushi.\n\nRachel T. sums it up well!", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9PmD9FdQ0bWflFMTr9DAMQ", "review_id": "woK2jGvYufSM0pU-ODAbiA", "stars": 5, "date": "2011-07-03", "text": "I'm a huge fan of Padre's! What food I've tried (I mainly just order tacos or their pork sliders usually) is delicious, the bartenders are awesome, and the owners are always friendly!\n\nOne of my favorite things to do: Order two tacos and half a bowl of guacamole with chips and salsa.", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bvYk98zUE61KoWifshskpw", "review_id": "8O5u-FtvID966OsQkKYZ3w", "stars": 5, "date": "2010-03-04", "text": "This place is absolutely wonderful. My boyfriend and I have been here for a few special occasions and have never been dissappointed, the food is amazing and the service is just as good, our waiter was so unbelievably nice. Their steak could possibly be the best steak I have ever eaten, and their creme brulee is to die for. This place even does complimentary filet mignon sandwiches for happy hour...guarantee you will love this place just as much as we do!", "type": "review", "business_id": "ar90fbRbQtiyZLtwjwwXUg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "ntQC5p8YSfnH9z4rIi11Xg", "review_id": "LQQHKedqBpd4JRyZgR_qQQ", "stars": 4, "date": "2011-03-28", "text": "We were at the AT&T store next door and had time to kill. I really didn't want to go to sushi brokers but she insisted that we go for edamame and one sake bomber. Couldn't hurt right?\n\nI am very glad I listened to her. We sat at the bar and placed our order for edamame and bombers... And I might as well throw in some yellowtail because it was good last time. After the gentleman takes my order another man walks up and introduces himself to me. He stated he was one of the owners and he read my review on yelp and would like to make my prior experience up to me. Boy did he ever.\n\nService was amazing my entire stay. He brought us one of their signature creations called \"sushi pizza\" which was absolutely delicious. Just enough spice and plenty of fish. He also brought his favorite bottle of sake for us to try which was good as well. At the end of the stay he had taken care of us with the bill to make up for last time as well. \n\nWe received the VIP service the entire time but all the handouts aside.. The fact that Chris not only read my review.. But also took it to heart enough to remember my ugly face and make right by me. To me, this shows the management cares about their customers. I didn't deal with the service I did in the past this time, but you better believe I will willingly be back within his establishment again soon.", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 4, "cool": 4}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "GSlL2bjH3HCoaRnyfrdbAw", "stars": 4, "date": "2008-12-20", "text": "Hubby and I were here tonight for a grand and glorious breaking of his diet. He had been before to the one in Houston, and had been looking forward to the new Scottsdale location. For being open only 3 nights, the service went quite smoothly and the staff and management we met were all great. We started out with drinks- a gin and tonic ($10) and a caipirinha ($8.25)- both were strong and very good. The wine list is extensive, for those who prefer the vino. Delicious little popovers arrived at the table, and we headed off to the salad bar. Far better and fresher than Fogo E Brasa's, it had a variety of cheeses (including chunks of parm and fresh mozzarella), smoked salmon, prosciutto, salami, sun dried tomatoes, olives, marinated bell peppers, asparagus spears, mushroom caps, and seafood and chicken salads, just to name about a third of the offerings.\n\nThen came a veritable torrent of meat. The beef was the best, and came in a variety of cuts and preparations. We liked the Ancho (rib eye), the Picanha (the classic sirloin cut in the half moon shape), and the garlic beef best. The pork ribs were really well done and juicy, and the sausage was quite flavorful. The chicken was a tad dry, and the lamb was too gamey for our liking (and we usually like lamb). \n\nSide dishes were brought to our table, in appropriately modest portions. There were squares of polenta, which I really liked but Hubby did not care for, and mildly garlic mashed potatoes, and yummy fried plantains. \n\nDessert choices were pretty typical: a creme brulee, a flan, 2 types of cheesecake, and 2 types of chocolate cake. Hubby wanted what he had enjoyed at the Houston Fogo before: the papaya cream topped with creme de cassis liqueur ($8.25). It was more runny than mousse-y, and the papaya taste was pretty subtle, with the liqueur being the top note.\n\nThere is a rather unnecessary valet parking service for $3, when the parking lot surrounding the place is huge. Not so huge, however, that the many douche-bags who double parked went unnoticed. The bathrooms are nice. The dinner, which is all you care to eat, is $42.50 per person. I'm sure we'll be back for special occasions.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KuSP1Mb3xq2Qbmk1n_-ZjA", "review_id": "h_WVAz5qg63BGNnv6OOzrw", "stars": 4, "date": "2010-07-19", "text": "Good place to have a beer, duck fart, or whatever you may fancy. I am absolutely in love with their fried pickles. They are so far my favorite in the valley. Long sandwich style slices with a crispy light beer-esque batter.\n\nThey also have some wonderful perogies on the menu. If you order a burger... you must try the red cabbage slaw as a side.\n\nI like going here to just have a low key night. Good place to watch sports too- that's just not really my scene.", "type": "review", "business_id": "eqdEOyNbEvl-Gne_w3_0jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_UHTCaa2p8U37B0u9vHzYA", "review_id": "U02XSuAbEJYNzF0vObHv6g", "stars": 5, "date": "2012-05-25", "text": "I am a Regus member and could get wait here since I could use my membership card.\nIts a great place situated on 3rd floor with awesome city view. \nComplimentary menu is refreshing. Cordial staff. Quiet and relaxed environment.\nMany TV screens and seatings to get comfortable with.", "type": "review", "business_id": "4bi6m2WWnSUnQzR4xLF5BQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KnsWpD1e_hMoAVcN0ftiGw", "review_id": "Ivq_JgGvV5M7JoLEYsyo9g", "stars": 4, "date": "2012-11-12", "text": "NEEDS A CUSTOMER FACING DISPLAY FOR THEIR POINT OF SALE SYSTEM. The staff here is WONDERFUL, and the OWNER IS ALWAYS HERE, yes that's right, if you come here often, you have the pleasure of meeting Lenny himself.\n\nBut one major flaw is that they need a display on their point of sale system showing you what you have ordered before you pay (just like their Glendale location), because I have had my order messed up more than quite a few times here, usually they forget my extra french fries, or place everything in the world on my cheese burger, when I only wanted the cheese, meat, and bun.\n\nOther than that, I don't really have anything negative to say about this place. I love the staff, and if the right person is at the register, they remember my order and the negative points I have made above is negated.", "type": "review", "business_id": "MJ6_uOT55dq5ALphFqMVkw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kA2OQAdbwOaGd3Q5ZnNIQw", "review_id": "tyUFvpCXXeORj2OghUgeOQ", "stars": 4, "date": "2012-11-07", "text": "Bar & restaurant. In that order.\n\nDanielle Ammaccapane was an LPGA player, graduated from Thunderbird HS just a few miles away...as did her LPGA-player sister, Dina. I went to THS and graduated same year as Danielle (1983), just sayin...\n\nI love this place. It's a great \"Cheers\" style bar, as much as one loathes hearing that type of characterization. Italian food here is solid, and the cocktails have a punch. Nice place to watch football at the bar when by oneself, too.", "type": "review", "business_id": "kvxrjOmicwb2njvXOJsZRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-vRFUY8ixuNniCCNVvmkRQ", "review_id": "2yx1q-80miLjR_wMvpxK8w", "stars": 5, "date": "2012-07-01", "text": "its HOTin the valley in the summer time and QT lives up to its name- \nONE STOP DRINK SHOP! \nHEAVEN in the summer time and the price is unbeatable!", "type": "review", "business_id": "91bPfWMwLMDg08KDcRdV-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5nbObhKPvaQDPdybkKE2jw", "review_id": "DK-c2Q_oq-fU9mOv0drzZg", "stars": 4, "date": "2012-06-18", "text": "I came here by myself because non of my fellow conference peeps wanted to walk 10 minutes to dinner. I'm glad I made that short walk to here because I enjoyed eating their prime rib. It was cooked just right and it was rested correctly. Needless to say, I was so stuffed that my 10 minute walk became a 15 walk back to the hotel.", "type": "review", "business_id": "P5a2hK5G64J7DcNwLAPhuA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YDXk0IqpwzfKwVf8E_4Z8g", "review_id": "af2sR_4I_KMr58ug71WIPg", "stars": 3, "date": "2012-07-26", "text": "I went to this place on a friend's recommendation, but have only eaten the custard. The lemon is quite refreshing and fluffy although I wish is was a little less sweet. This is a great place to visit after a light meal in downtown Mesa if you are looking to satisfy your sweet tooth, but not go overboard. The service is fantastic and the parking is ample as they have a private lot. The inside of the restaurant is quite charming and diner like. If you are really looking for the full experience of frozen custard, eat it outside in the never-ending, relentless Arizona sun...you will truly feel the refreshment!", "type": "review", "business_id": "9B_rnGpDieUnMr7szjuaQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "69O0iY3YOE_xs9WQt1Kw-w", "review_id": "Ypm0YDTek0ad_vBb_rqVhQ", "stars": 4, "date": "2011-01-01", "text": "Go for the 5 star food and setting, but be warned about the 3 star service. \n\nThe menu lived up to all the high reviews posted by others. Every dish was inventive and well done. The salads were particularly noteworthy with the interesting and tasty use of local ingredients. \n\nThe service was odd. They were attentive, but amateurish. It started with a request for a wine recommendation. The wine menu is heavy on Arizona wines, which we don't know anything about. I don't think our waiter knew much more than us, and the wine he recommended was barely drinkable. Next we asked a question about the tasting menu. The answer took some time because, we were told, the waiter wasn't allowed to ask the chef directly and had to relay the question through an \"expeditor.\" There were a lot of people helping us, but it was actually too much - it was distracting to have so many different people - and none of them seemed very well trained. For example, we got our entree and asked about the pur\u00e9e on one plate. Our waiter first guessed celery, and then said it might be cauliflower, and then someone else overheard the discussion and clarified that it was actually potato.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "eJGh4UF0zHIPPLZG1NkpgA", "review_id": "EXvJHqxPiq-BPhUTYLjEfg", "stars": 5, "date": "2009-09-08", "text": "As a frequent antiques consumer, I can honestly say that Lizabel's Treasures is my favorite antique store in Phoenix. I've been a customer for several years, and Lizabel's is my first (and often only) stop.\n\nWhy Lizabel's is such a treasure is because of these things: price, desirable antiques, and great customer service. John and Bette know what people want, and they go to great lengths to get the antiques that people want and to make their customers happy. I'm a believer.\n\nThey consistently have one-of-a-kind quality furniture and pieces that you would not normally find elsewhere in town. Pieces are priced very agreeably, so you can afford to stock up or furnish a whole room without busting the bank.\n\nJohn and Bette have created the kind of family business that is to be admired. They have a legion of supportive customers, and I'm one of them. I can always find them to be helpful and interested in getting me what I want, even if I don't always know what I want.\n\nLisabel's Treasures is the place to build a relationship with, because as one's life's needs changes, so does the need for different pieces and furniture. I can always count on finding something I really love at their store, and you will, too.", "type": "review", "business_id": "HwizZ6pGOfjHM8ypWfPXVg"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "g70-T0pdyb0pfyHcwDAhWg", "review_id": "5wzQERH5ZOe6woSx6Le66A", "stars": 2, "date": "2008-09-03", "text": "As a NY'er...I can tell you this pizza isn't THAT good...and it's inconsistent. I like Ray's far better.", "type": "review", "business_id": "oqQvCiG9FDbIdr6M4yen5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VccH0vPIn0ZgkseoRm5r5A", "review_id": "TwKSFBMGrbht3BuHD18-5A", "stars": 3, "date": "2011-08-09", "text": "Very typical mexican food. nothing special.", "type": "review", "business_id": "Obz3WGtDmcdgWN-r6mWc2w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "vF4B6eFdoDmyV_l7MLHMzw", "review_id": "5cL5OWLIRg8WvtT5kAFy8A", "stars": 5, "date": "2010-05-31", "text": "In a sentance: Four Peaks is DEFINATLY something to write Yelp about! From the moment I realized that there were more reviews about this place than I'd care to read in one sitting, I knew this was going to be good!! I realized it was going to be fantastic when i pulled up with my friend Darius and we had a hard time finding a parking spot at 3pm. We met a friend for lunch and the place was laid back, chill, clean, cozy and yet modern - perfect. \n\nI had the French Dip, thinly sliced roast beef on a nice hogie bun. Everything was good not too salty not too greasy, loved it! Darius got the Fish N Chips and it was incredible!! Crispy batter dipped big pieces of fish, iot was crispy and crunchy but soft and delightful on the inside. The chips were also batter dipped and had great flavor. I was in love! this is my best recommendation for a meal at Four Peaks!\n\nTo my yelpers i say: there is limited parking, so when you pull up and see nothing but cars lining the street, do NOT be alarmed! there will be a table available! Another thing, get the fish n chips! It's duh-vine!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "weYT-xJwz8o7mLNWIhD6HA", "review_id": "GDZm6iE0jYGcBZtU4X5SMQ", "stars": 4, "date": "2012-10-05", "text": "Over the last 3 years we've lived in the area, this place has changed 4 times. First Uncle Bear's, then Tio Oso's, then Thirsty Cactus (or Thirsty Cantina, whatever, it sucked), and now it's TC's Pub & Grub. The menu is typical bar food, including burgers, sandwiches, pizza, wings as well as some taco and quesadilla selections (which I always appreciate a good quesadilla so I will have to try it next time). \n\nThe restaurant section (which was always dead before) has now been opened up and TVs added so the whole place is more of a bar feel (thumbs up). The place was packed for Thursday night football (Cardinal's game!), but still got a good table close to a TV. \n\nServer (who admitted multiple times he was brand new) was very friendly but had to keep asking other servers for clarification on menu, etc. Still, nice enough and very attentive.\n\nWe ordered wings (\"medium\" but they were spicy!) and their \"ugly\" crust pizza with mushrooms and olives. The wings, very good, I would get them again. Pizza, I wouldn't order it again if someone paid me. The \"ugly\" crust basically is a thick hand tossed crust - too much crust (and half of it was burned) and very skimpy on the toppings. It was pretty horrible honestly. The actual toppings (although sparse) were very tasty... good cheese and fresh mushrooms and olives, so I would order pizza here again IF they have a thinner crust option. Otherwise, if you are coming here to carb load and really need your bread fix, by all means, order the pizza. I personally prefer a thinner NY style crust.\n\nAll in all I would come here again based on the good wings and service, and I'm looking forward to trying their other menu options. \n\np.s. text TCSPUB to 411247 and they'll send you a text coupon for a 50 cent draft. Score! (I'm a sucker for a deal) Cheers!", "type": "review", "business_id": "PG0itWTUdxdy39P9CTgAzg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3yc5JeWwQVhjx22Lx6OQ0Q", "review_id": "Svxdqr8rUAAhWcTs5HKjrg", "stars": 1, "date": "2010-11-20", "text": "I was so looking forward to breakfast here. What a disappointment.\n\nThe food is the only thing that rates any stars at all. Good ingredients cannot be completely ruined by incompetent service.\n\nThe space is nice, but crowded and loud. The counter staff were indifferent. After being waved over to an open register, the fellow behind the counter took one order, then wandered off, leaving the rest of us to get back in line at the other register to order.\n\nYou are given a number (or not) and left to find your own table, scrounge up your own silverware, and wait for your food to be delivered. Except that the napkins are at a completely different station than the silver, they were out of forks, and most of the tables were completely filthy. I watched a busboy randomly swipe the top of a table, sweeping crumbs onto the benches and chairs, then leave an empty drink bottle on the table before wandering listlessly off.\n\nBeverages are (apparently) serve yourself, although they didn't bother to say that when I ordered. I stood at the counter, waiting for iced tea, only to turn around and see that I was expected to get it myself.\n\nIf they happen to \"run out of numbers\", then they input your name with your order. Nothing irritates me more than to have my name shouted across a restaurant. Better yet, the waiters wander from table to table looking for their customers.... \"Lisa? Is there a Lisa here?\" while your food cools. Inexcusable.\n\nThe only bright point: the croque madame was tasty. Delicious bread, ham, and a perfectly fried egg. But the meager smear of bechamel and a thin slice of cheese were underwhelming. However, the \"side of fruit\" made me angry: a tiny metal creamer with 1 blackberry, a few slices of strawberry, and 2 chunks of green apple. Insulting.\n\nFast casual, order at the counter works well when tables are clean and set, and the food delivery is speedy and efficient. Unfortunately this place needs some work in order to make it worth your time.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lRAAwerR8ATxR9oppZ4I3w", "review_id": "8Bcu9kgNAQqrWKhI8mCVtA", "stars": 1, "date": "2012-07-28", "text": "May have great food but I'll never know. Ordered delivery and the chef who doesn't speak English couldn't find my apartment complex even when I walked out to the street right next to the 101 far away. He said he was there but couldn't tell me where he was. Talked to him on the phone for ten minutes then hung up on me when I guess he got frustrated and wouldn't answer my calls back. Called to order food for my visiting family and was glad to find this place but that chef is awful. The owner apologized to me profusely and that was a nice gesture but waiting an hour for a guy who hangs up on you and can't find a place looking at the 101 exit is ridiculous. Don't use them for delivery ever, call the Breakfast Joynt. Their owner is awesome and delivers to you himself. Plus, he actually knows the area. Cannot express my frustration with this restaurant's service. Do not use EVER", "type": "review", "business_id": "I2_yeLfTzXHGwi8an0tL4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bEEOlaSQrlPBZVQw4bjdUA", "review_id": "mh-YrAj1N5jWXHKfZke3gQ", "stars": 4, "date": "2012-01-31", "text": "Great down and dirty Mexican. Chips 1st quality: substantial. Salsas tasty and spicy. Chicken Victoria tender. Didn't have, but the Sopapillas look awesome. Fun colorful atmosphere, good mex music.", "type": "review", "business_id": "9tSHBEoAhKu-tkU8n6SKjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-a7d79eTKvmkpHZT7ePYDQ", "review_id": "dOTJWugStX0GDQA-6UpjVg", "stars": 5, "date": "2012-10-27", "text": "This is my kind of restaurant. I love everything about Buca di Beppo!\n\nI am fascinated by how this place was decorated. All the walls and various trinkets make this a fun dining experience. \n\nOne thing to note is that it can be kind of expensive to eat here, although I am always finding coupons for this restaurant so that helps!\n\nBeyond that the food is awesome! I go with my fiance and we love the calamari and the garlic bread, which we always get as appetizers. We switch up the main course when we go, but each time has had great results. We had dessert here once too and that was also good! We usually end up with leftovers, because they give huge portions, which we love. I can't wait to come again!", "type": "review", "business_id": "1oFvqm7eSpJbVpxpPxueaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mLfjeWUJnNiqHEye3I6qug", "review_id": "gtI9wjwKso24yZXtNU2kpg", "stars": 4, "date": "2009-02-11", "text": "Hey, art is very personal so I won't pretend to be objective about jordre studio. What I can tell you is that anyone who has the cajones to open their own studio and, more importantly, the staying power to be an ongoing entity is deserving of praise. I have a friend who owns several of Kyle's pieces and they look spectacular.\nIf, like me, you look for a personal connection with your art, you'll be hard pressed to do better than JS. Kyle is outgoing and personal and, if you're especially nice, he'll share a Schwann's ice cream sandwich with you. How about that for an artistic connection?!", "type": "review", "business_id": "05znNZZrJXlp64r-R3S7Ug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IibG_Dl9P24zExWisTEvMg", "review_id": "-GTEewT8L025ssHbvAK_mA", "stars": 2, "date": "2010-01-18", "text": "I have been eating at Wildfish since it opened and after my most recent Saturday evening dining experience, I must say, the quality of both the food and service have gone way downhill. \n\nI know....a busy Saturday night and so, perhaps I should give both the servers and chef a break? Sorry. The menu has changed and so has the quality of food - and not in a good way. Let me just give you a brief sample of our experience - the Ahi Tuna Tartare appetizer has been changed to a lackluster combination of flavors. The idea of tuna with mango seems lovely however there is a total and complete blandness to the way this dish is now served. The former tuna appetizer was far more tempting. Moving onto the Goat Cheese Medallion Arugula salad. My salad was served sans medallion and literally laden with a huge glob of cold goat cheese and some terribly prepared mushrooms. What happened to the warm, crusted goat cheese? Next, we both ordered the Parmesan Crusted Sole. While the sole was prepared well, I do not recall this dish having a cream based sauce in the past. If memory serves me well, the dish should have had a lemon sauce delicately balancing the flavor of the fish. Cream and sole do not make a happy pair! I am not sure if this was an error or part of the new menu. Okay, and for the piece de resistance we ordered a side of the Sugar Snap Peas which were actually drowning in a bath of some kind of soy and oil sauce. It actually made me ill to eat it - and my companion, as well. \n\nOur service was slow and unattentive - although I do realize service can be a very personal experience. \n\nI was sick with food poisoning all day Sunday - as if the poorly prepared food were not enough to bring down my joy. \n\nSo, I caution those of you who may have once enjoyed this restaurant like me - think twice before dropping a pretty penny at Wildfish.", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "DdkI8jaWEsdbXHhtW7cSxw", "stars": 4, "date": "2012-04-13", "text": "Oh....my 2am delivery staple.\n\nTheir \"til 3am delivery\" feature is one of the beauties of Silver Mine. Their sandwiches are always fresh and these people are fast. The Dodge City w/ a side of chili is my go to. So, so good.", "type": "review", "business_id": "OuGcrCgeTBrJnEGvLZ3JvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rL3dPeKDTybG_ct9OCXGAA", "review_id": "g4Dsi099wFSUCAo-bVYNQg", "stars": 4, "date": "2012-02-21", "text": "Excellent lunch specials here; $4 buys you two slices of pizza and a drink! The readymade pizzas are usually cheese, sausage and pepperoni (they have feature pizza's that rotate throughout the week). For a little more money you can even add wings or a salad. The service can be hit or miss (don't expect a clean table during lunch rush hours). The sauce is more on the savory/acidic side than sweet which I like and they're never stingy with the toppings. Warning- it may be a little greasy so don't be afraid to dab off the access grease with a napkin; your heart will thank you years from now.", "type": "review", "business_id": "7Z-1mLIoxCHUxCp54W1CGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PC7p9SsL0GLe1KXt1q06YQ", "review_id": "gZvDCapnQEo6Qe1UJS8q6Q", "stars": 5, "date": "2012-01-04", "text": "I hate ordering flowers sight unseen, but needed a local florist for a sympathy arrangement. Rachel immediately alleviated any concern when we discussed what I wanted in detail, and she even emailed me a photo of the final arrangement. \nGorgeous flowers, same day delivery and reasonable pricing - can't beat that.", "type": "review", "business_id": "23sB_DG-bQO3luNlZ-vi4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IVb9YMopuGyt5jJ7rjwoqg", "review_id": "hufoM03Um3_AS6l29Zk3Wg", "stars": 4, "date": "2010-10-01", "text": "Been wanting to try this place out for some time and finally had the opportunity today. I didn't expect much of a crowd on a Friday morning, however when we pulled in I was shocked to see about 10 people waiting outside. Typical for a weekend morning breakfast joint.....but a weekday? This place must be good. Suprisingly, the wait was short...they obviously know how to handle a crowd at this place. Once inside, I was impressed. Pretty small, but we had plenty of room in our booth. I ordered the eggs and sausage, which came with toast and potatoes. The food came out quick. The thing that really set it apart was the meat.... this was no Jimmy Dean. It was worthy of Abe Frohman, Sausage King of Chicago. Needless to say, I'm looking forward to going back and trying some more items on the menu.", "type": "review", "business_id": "7WGBi29_vj_7RcPVxpLNHA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7jWmd57QoJnq2q4QyvVS2Q", "review_id": "nW3SB8d1mpcrYB7Xy3zpAQ", "stars": 4, "date": "2011-03-14", "text": "I actually really liked this place. The yelp reviews seemed kind of mixed, so I went to check it out myself for Happy hour. First of all, they have Oak Creek Hefeweizen there, which is one of my favorite beers. Its kind of hard to find here in the valley, for me at least! Anyway, the beers on tap for HH were $3!! Thats a great deal in itself. We were with a group so we tried quite a bit of the food off the menu. Let me first just say the two best things are the Mac and Cheese (phenomenal and addicting), and the Buffalo Sloppy Joe sliders. The pork sliders were also good as well as the sweet potato fries. The fries came with this yogurt/tzatziki type dipping sauce which was really great too. After about 9 beers, and a bunch of food, the total bill was only $54! \n\nParking downtown is hard to come by, another plus about this place is that, because it is at the Sheraton downton, you can valet your car for free for 3 hours and just get it validated by the restaurant. I just gave them a few bucks for a tip. \n\nThe service is also pretty great here, the servers are attentive. It could also be because there weren't many people there. Oh well, I wasn't there for the crowd as much as I was the food/drinks.\n\nIf you are looking for a great value for HH, this is the place to go. Parking is not hard, prices are great, and food is awesome!", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "VF1zGpB1h5e3aoRIPE4llg", "review_id": "9NBBrLN4lcFXdTXQ-jkKww", "stars": 4, "date": "2010-01-05", "text": "Let's cut the witty intro and get right down to the awesome food recommendations:\n\nCilantro Jalapeno Hummus ... AWESOME!\nHummus with Chicken ... AWESOME and filling!\nSpinach and 4 Cheese Quesadilla ... TASTY!\n\nJust go there. Go for lunch with a bunch of people on a sunny day and sit outside near the lake/pond. Go for dinner on a first date with a cute girl. Just go there.", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e6mJ9slQCvvQDyiZYkwhOg", "review_id": "HushK5En0Fah7tXcpzHjOA", "stars": 5, "date": "2011-09-02", "text": "Well, I cannot believe I have waited this long to give an update on Morgan!! Especially since she is FANTASTIC!! Yes, I have been back to her for the 5th time now and I love what she suggested I do to the color on my hair (much better than what I was doing) and her haircuts are the best. She also has done some other treatments on my hair that have made it hold up under this hard, dry AZ weather. And, she is so sweet and caring. Oh, she has also gone out of her way to make an introduction to another of her clients (also from the South) who was new here and had not met many people and we really hit it off. Morgan knew we would. I mean what more can you ask for.........go for it...YOU WILL NOT BE SORRY. This from a HAPPY, HAPPY Client, Christine", "type": "review", "business_id": "O6fdmeu4Z_oei9MrgKuo2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AncVDK7eNz6c0pxLxAl42w", "review_id": "KNbOyHyPAcirLDDywvO4Aw", "stars": 4, "date": "2011-12-03", "text": "Waitress/ bartenders are cute. We didnt eat. We just got a drink and left. Only like 5 beers on tap but no worries. They even gave one of my friends a band-aid lol. Their mix drink prices are a bit outrageous tho.. 3 beers for 10 or so.. 15 alone for a double of jack and coke.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "2MTfcxdJpoKn8xmBn-6ulA", "review_id": "LYsbiZbN6rwdEyJAoUGrnQ", "stars": 5, "date": "2012-10-02", "text": "Beautiful parish, also home to the amazing Legacy Ballroom that is available for wedding receptions and events. The annual Middle East food festival is a wonderful family event with fantastic food, pastry, and entertainment!", "type": "review", "business_id": "ITcg0ABneVKWREfzx7v7Og"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XuVeswVBiG7bye8-k731ag", "review_id": "225K-pjlBV3kkJxpE2EseQ", "stars": 5, "date": "2011-12-31", "text": "Pancit palabok here is best outside of the Philippines. Anyone can enjoy a quiet peaceful dinner on a Friday night", "type": "review", "business_id": "AbS4rMXc19XJJcXVZDhy7w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zASARWgR6xyOt2cfRtM43w", "review_id": "tB4Kq-Jcp_zt8B-PCE226A", "stars": 4, "date": "2012-05-16", "text": "Great help!", "type": "review", "business_id": "sDXINrHrs8phlkzkwQNiBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Syc4pbEkL3bbzjO4X4HhQw", "review_id": "MLFEjC8jgnrhIAFGR0tg4w", "stars": 4, "date": "2012-03-04", "text": "Prices are reasonable and the food is always good. It may be a typical bar food type menu but the food itself is far superior to what you will find in most bar restaurants. I even like the food here better than the stuff they serve at some of the competition (chain places like TGI Fridays or Applebees). In addition to good food Four Peaks has great beer and drinks. I can't recommend this place enough.\n\nDon't worry about the line or the bouncer checking ID at the door. The service is always fast and friendly even when the place is full to the brim. There is always a big, big crowd. If you worry about the noise just sit outside under the misters...", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tB-m5XIYxirohhvvaoQw1A", "review_id": "TaQ2cz-a5cNzcdkg0-rT_w", "stars": 5, "date": "2012-10-23", "text": "My food was delicious and the waitress were nice! They didn't bother me every 5 minutes and I was able to enjoy my meal. Spicy does mean spicy here though!", "type": "review", "business_id": "1621ir5mjVgbHwxCbMAEjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZubK3U5PlTWy4VIQG_Wpzg", "review_id": "3e2H-bmoGb7JLknpawAZCg", "stars": 2, "date": "2010-03-06", "text": "I won't be back here.\n\nMost cheap drive through fast food Mexican places are alike. Of course there are slight differences. In this case it wasn't for the better.\n\nWe had to drive up to the window to order. The speaker box wasn't working? What was going on there?\n\nI ordered a chicken chimichanga with sour cream & guacamole on the side. The chimi was big, just like I expected it to be. There wasn't much guacamole. I would have liked more. They also put tomatoes in it. That's ok, I'm just mentioning it. All in all this chimi just didn't sit as well as others I've had. Maybe it was the spices they used that were different, I'm not sure.\n\nI also ordered a large horchata. I have definitely had better. It wasn't the worst I've ever had but it needed more cinnamon flavor, that's for sure.\n\nIt's cheap, it's easy, it's fast, it's literally right down the street from me. I'd still rather make the drive over to 7th St to my fave 'bertos though. See: http://www.yelp.com/biz/rolbertos-phoenix", "type": "review", "business_id": "Dcs_jLOlNXd96LarVInFgg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "J7GYNwMLHPBff2WT6szLlg", "stars": 4, "date": "2010-12-06", "text": "My favorite trail in South Mountain starts at the trail head just south of 24th st and Baseline. It's the start of the Mormon Loop and when you connect up to the Mormon Trail/National Trail it extends the hike to about 4 or so miles. Or at least that's what I have been telling myself. First part is stair master-esque, then descends very gradually (perfect place to add a run into your hike), then ascends again (catch your breathe) and then gets a bit boulder-y and you can either straight up hike this or run. If you want, you can take the offshoot to Hidden Valley and Fat Man's Pass. I wasn't too impressed with either, but it is definitely worth a view and will spit you back out onto the National Trail.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ek_t82OUnerdlO0D-GVcxA", "review_id": "PX8n_yicDyEhbCCTNEy_aw", "stars": 3, "date": "2012-07-12", "text": "I think this is the second time I've ever been to a Chili's...actually I'm not even sure if it's the second....it could be the first time I've been to a Chili - I think the other time it was Apple Bee's or something like that...anyways yeah well yesterday night my bf and his friend and I finally went to this place called JumpStreet - to jump our fat away - but after that we got really hungry and it was around 9ish and after in Arizona closes pretty early but luckily Chili's closes at 10 so we were able to get a table and eat a fatty meal.\n\nThey had a $20 dollar for 2 meal deal - in which for two people you pick a appetizer and 2 entree from their list - super good deal! We decided for the Tostada Chips and Fire-Grilled Corn Guacamole for the appetizer - it's good, however I didn't like the chips because it was very thin and was a bit oily - the guacamole was good and had a hint of spiciness to it. \n\nFor the entree I had the Quesdilla Explosion Salad - interesting name and very tasty too except that I forgot to tell them to put the dressing on the side cause they put a little more dressing than I would like. The salad consisted of grilled chicken, cheese, tomato, corn-relish, cilantro, and tortilla strips tossed with a citrus-balsamic dressing and on the side four triangular cheese quesdilla! mMmm super delish! My bf ordered the margarita grilled chicken served with rice and black beans, tortilla strips and pico de gallo - doesn't look really good but it tastes okay.\n\nDespite being a chain restaurant, the food is not bad and the prices are definitely a bit cheaper than other big chain American family restaurants.", "type": "review", "business_id": "nZBAnK1rOmV7bLVVDPJs0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Qw9bEL0ylJ2UVvQpCxFv0Q", "review_id": "9_rjfVvQdZNTw7mqmUiS5Q", "stars": 5, "date": "2010-12-30", "text": "Amazing facility. Scottsdale healthcare has done a great job, the people are happy to work here unlike some hospitals. They are very receptive and the ER operates like clockwork.", "type": "review", "business_id": "6G8FMxuYzz1ye4a386Rc_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "kpIyspui9fFLCzDccAxXaw", "stars": 4, "date": "2009-03-09", "text": "We tried The Turf for breakfast this weekend. We were definitely not in the mood to wait a lifetime for Matt's after perusing the market, so we decided to head over to the Turf. As expected, the place was empty except for one guy at the bar... considering it was like 9 am I am really hoping this guy was just drinking apple juice. Our server was very nice, and I am pretty sure we had her on our first night here. After explaining to us what black and white pudding was, ewww, and then running away, she came back for our breakfast order. I got the Bacon and Cheese Omelet and the husband got Biscuits and Gravy. My breakfast was served with hashbrowns and toast. The hashbrowns were thin and crispy, just the way I like it. My omelet was stuffed to the max with bacon and oozing melty cheese. It wasn't a big fluffy omelet like at IHOP but it was a dense solid little guy. I much prefer my omelets to be like this. The husband was a little less than pleased with his meal. We both agreed the gravy was pretty good and we really liked that there was actually sausage in it, the way it should be. The disappointment was definitely in the biscuits though. They were certainly not fresh and definitely not homemade. Considering how easy and quick biscuits are to make, this bummed me out. To the owner of Turf: If you want me to, I will be more than happy to come over and show you how to make a good biscuit. If there are good, fresh biscuits, this could be a great dish. Not the best for breakfast, but a good alternative for when we don't feel like waiting for hours in the hot morning sun.", "type": "review", "business_id": "FeI75xIG8PF_XZ6P80gLBQ"} +{"votes": {"funny": 8, "useful": 11, "cool": 5}, "user_id": "_266IoyNQPtof2akV9G4jw", "review_id": "i6h0ZCNGd7EHOSHwquhmWw", "stars": 3, "date": "2008-10-09", "text": "My street cred is that I'm from the South. You know, home of fried things. I think I know a thing or two about fried chicken and sweet tea.\n\nUnderstand the whole concept of being quaint and family-run, but seriously didn't think it lived up to all the hype.\n\nI ordered some sweet tea. I was mondo thirtsy and couldn't wait to wrap my hands around that mason jar. Holy guacamole! The sweet tea tasted like a cavity waiting to happen. I was tempted to order a lemonade to make an Arnold Palmer, but feared that it would be overly sweet versus tart. Instead, I requested a glass of water and some lemons to help with the sugar ratio. I still couldn't get it to taste \"normal\" and sort of just abandoned it. \n\nI had the Lo-Lo entree which consisted of 3 small pieces of dark chicken and 2 waffles. I also ordered a side of mac & cheese - cause I'm dirty like that. I thought for sure the food would be the saving grace...hells nah! Chicken was aight, but hardly any meat. The mac-and-cheese was just okay. Kind of reminded me of stuff you can get from Luby's. If it weren't for the waffles, I'd be hungry. I pretty much ate my waffles and stole my friend's fried okra - which WAS good. I dunked some of my chicken into her side of gravy and SHAZAAM it was like licking a salt mine!\n\nNeedless to say, we had a rather lengthy wait before our food arrived and while I do appreciate the hole-in-the-wall appeal - I was disappointed nonetheless. Sometimes you just can't believe the hype!", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cq2Vu3g1auTQ4nlNOVjegA", "review_id": "qTtW0j_nQETUAbpdFmbFBg", "stars": 5, "date": "2012-11-16", "text": "Amazing.\n\nThis is often called the largest mall in Arizona, and it shows. Each time I've done the usual \"mall walk\" I've easily lost a few hours trying to see it all. It's true that this isn't a place for anyone that doesn't care about fashion - but this is a mall that's true to its name. \"Fashion Center\" is no joke here. Lots of high-end designer stores, lots of mid-range affordable fashion stores, and a few random familiar stops like Hallmark and Pottery Barn-esque stores scattered through there. A decent food court, with a theater also conveniently down there. (But after spending so many hours at the mall, who has time for a movie?)\n\nYou can easily drop a few thousand here, so be forewarned if you're on a budget. Also, I almost wish I had a map in my pocket, because it can get confusing to remember which hallways you've already explored. And wear some comfortable walking shoes, because it's not easy to get in and get out of this one. But there's a good number of parking to use in a garage or few - when you remember where you parked the car. \n\nI'd take any out-of-towner here, unless they had a grudge against fashion, classy stores, or walking.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 12, "useful": 5, "cool": 9}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "6v2FC_CqcjqobxzsNgsfMQ", "stars": 2, "date": "2007-12-16", "text": "All the 47-year old men in the joint wearin' sportcoats hangin' out with your beers waiting to catch some hot young tail which won't even happen but you're still lingering around anyway in an awkward looking sausagefest - raise your hands up in the air and say \"What! What!\"\n\nTo the endless video loop of the Tempe 12 Girls trying to figure out how to best flaunt their mamms for their calendar photo shoots like ohmygawdtheresnowaythatIwillnotbechosenforKipWingerscomebackvideo - raise your hands up in the air and say \"What! What!\"\n\nTo the dumbfuck DJ who thinks spinning 15 seconds of every song from the 80's and 90's into some megamix is like cool but it's actually more akin to the sonic equivalent of Sybil, raise your hands up in the air and say \"What! What!\"\n\nAll our servers who were kind of friendly but more like passengers on that UFO named USS Space Cadet that you see on top of the Space Age Lodge restaurant while driving through Casa Grande because you couldn't get ANYTHING right nor understand what we were saying as if we were of a different species altogether, like as if we were human and you were the green hoochie that Captain Kirk got together with in Star Trek - raise your hands up in the air and say \"What! What!\" (if you can)\n\nAll those single bathroom stalls where the door doesn't become opaque unless you lock it all the way but I'm sure the ploy here is that as the night goes on and people get more and more drunk, girls will come in and maybe haphazardly lock the door but not all the way but they don't care because they have to pee so hard so they're sitting on the throne and watching people walk by and think that \"Ohmygodit'slikeaonewaymirrorthat'ssocool!\" but then they notice that guys are now just standing there and converging on the other side of the door looking right at them and all of a sudden the drunk girls realize that the door is not a one-way-mirror at all but.... - raise your hands up in the air and say \"What! What!\" \n\nTo my Yelp companions who made all that was Six completely tolerable and proved the point that whatever the case may be with a semi-retarded-but-really-cool-looking Scottsdale venue, if you're in good company, you'll still have a great time - raise your hands up in the air and say \"What! What!\"\n\nAnd scene.", "type": "review", "business_id": "zff_uz9k60UwNi3etN39uQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Lj4_96xu38YZHlS7k5xNQ", "review_id": "4Iyqy_59Q8Gtmbkl6f779Q", "stars": 4, "date": "2011-08-23", "text": "The food was good and all prepared as I waited. Looks like a long list of wide ranging bad foods that make you feel so good!", "type": "review", "business_id": "Xr2Qe7Se0WyH68nOxSn5aw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "g2D5QttnvZTX9yVzWWXYxw", "review_id": "ReVkmGmCWR6Lpx7DPuGVrA", "stars": 5, "date": "2010-11-15", "text": "This go around I opted for the bacon egg and cheese breakfast burrito (served all day!) and lengua (tongue), cabeza (head, and cheek meat), and carnitas (roasted pork) tacos. \n\nThe breakfast burrito was the tastiest, bacon filled treat I have ever had! I love bacon, and if you don't love it as much as I do, the bacon overload may be too much, I swear there might be more bacon than egg in this bacon bomb!\n\nI should have figured that with a price of $2.50 per taco they would be slightly bigger than the average taqueria taco. The size of these things are gAstronomical, and the flavor of each are equally proportional, the lengua, however, would've probably been better if it hadn't been sitting in the cold whilst I ate the other three items!\n\nI will no longer be eating carne asada at this place when I have the option of carnitas, cabeza, lengua, or bacon. I advise you to do the same!", "type": "review", "business_id": "VXg0O0vuuOgNTqTGp9j7gg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "dn9DSDp9CYCRffmL1voq6g", "review_id": "ZywLH03W9qCbRJSP2qkWbg", "stars": 3, "date": "2012-07-05", "text": "First of all, I have to say you cant beat the price here. $6 Pho, come on now!!\n\nHowever, I wasn't too fond of the food itself. I mean, it was OK but not \"I have to drive 45 minutes just so I can come here to eat lunch\" good. We happen to be in the area and Yelp showed us the way. \n\nThe spring roll was meh ... not super fresh but it wasn't unfresh either. Hard to explain but I definitely wouldn't get it again here and the peanut sauce was actually not good at all. I was really disappointed with the sauce.\n\nI ordered their meat pho and the flavor was good. I definitely think the place is good enough to try but when we are in the area - which is not often - we'll prob find another pho joint to try out. For the price and \"ok\" food, you will enjoy.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KkuCskeWo-Du_VQPciJO4g", "review_id": "d37voH8FNsdb4ewmSrLNWg", "stars": 1, "date": "2012-05-18", "text": "I eat a lot of Asian food (of different sorts). Asian is actually my go-to cuisine since I have a lot of food allergies. This place deserves a thumbs-down, unless you love Americanized Asian. The food was bland, breaded and just not worth any money. Next time I'm in Phoenix, I definitely won't eat here.", "type": "review", "business_id": "Dz7swOgFook-L89Y_M-aQA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "v8wYJo_RkYawDLQnIp63kA", "stars": 4, "date": "2010-09-22", "text": "Both of the previous reviewers are correct, actually. Yes, there can be a line to the door at times, and not everyone working there is 100% nice 100% of the time. But who is? And, once you get to know them -- and are courageous enough to give them the benefit of the doubt -- everyone working there is very cool to deal with.\n\nBecause this Post Office is tucked way back in the Foothills, it's not staffed as heavily as I've seen some others. But the remoteness of the location also means you get to breeze in and out on rare occasions too (seeing as this is too far out of the way for any non-Foothills residents). So, do like me: never go here in a hurry; be polite; be patient (it's not all about you). And you'll see this is really no worse than any other Post Office...and maybe even a little bit better.", "type": "review", "business_id": "iXQQtpxSlzFyQoE9u3w-vw"} +{"votes": {"funny": 2, "useful": 6, "cool": 4}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "dKrYrHocKNUuZsf32_zq4g", "stars": 5, "date": "2010-04-27", "text": "Followed a Dr. that I respect to this practice and I have to say I'm pretty impressed. As a long time multi-four-footed caregiver, I have seen more than my share of veterinary clinics and animal hospitals. I know the drill and have seen more than one vacation be sucked in to the great black hole of \"well of course I want to have the best care\". \n\nThe first thing I noticed is that there is NO odor. It doesn't smell like there have been decades of animals paraded through the doors that feel the need to pee as soon as they enter the room... just in case this is their one last shot at leaving something behind. \n\nThen there is the overall feel of the place. The office I used to frequent always had a frenetic sort of feel to it. Files were lost, techs were running, the waiting room was packed with stressed out clients, etc. This office was peaceful. Whether is natural or contrived, I could care less. My dog picked up on it immediately and her normal \"OMG what are we doing HERE?!!\" behavior was replaced with something I've never witnessed in a vet office before. She was calm! \n\nIt's clean! Except for the area around me that was covered in the undercoat that Zoe was stress releasing, there were no traces of other animals. \n\nThe staff was incredibly friendly and helpful. I had a HUGE file that I was bringing in and they patiently sorted through the entire thing. While I was there for one of my pets, the receptionist offered to set all of them in my household up for me with \"Client Files\" so that I wouldn't have to be bothered in the future. I thought that was a wonderful, time-saving offer and in the event that I ever have to go with an emergency and am not able to focus on paperwork. \n\nFinally, I was in an examination room at the time of my appointment and waited less than 3 minutes for both the tech and the Dr. I was in an out under 1 hour and that my friends is superior service IMHO. \n\nI look forward to a long relationship with Palm Glen and will happily drive the 5 mile difference from my old vet, in order to ensure both my pets and I are treated well!", "type": "review", "business_id": "5vbBmHljaHVcQS4k6VxGVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "SLvZfeCztX7QaNbJs_7ikQ", "review_id": "JECP6qR_PYJPWfG6S8KP1w", "stars": 5, "date": "2012-06-05", "text": "This place is pretty incredible. The california club and the breakfast buzz are probably the best items on the menu IMO... but seriously, you can't go wrong. The only thing I've had that I didn't really care for is the Breakfast Burrito, but that was because it was just a little boring compared to the other choices on their menu. It's a long wait in the drive thru 99% of the time, but it is absolutley MORE than worth it.", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D27LJyqNKSFogWjmtGRZsA", "review_id": "Zn5VfOeHVux42rEZzyxD-Q", "stars": 3, "date": "2011-06-25", "text": "even after 1.5 hours wait i loved the atmosphere and did not mind the wait at all. the service was good. not too friendly but everything we needed was on table. \nDisappointment was domestic Kobe burger. it was served overdone (just little pink in center after i ordered it medium - rare) it is served with Asian slaw ( peanut dressing) which is served on top of the burger. It was way too strong and it took away from the burger itself. it was hard to taste the meat with so much peanut sauce in the slaw. If i was to order this dish again, i would ask for slaw on the side. the fries were fantastic and fried cheese was very good. \ni will definitely be back for more for my friends loved their burgers. \nthe 3 stars is for the fact that burger was way overdone and i could not taste the major component to that dish - Meat!", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CEBxztFRW3wjLbEf-2rZEw", "review_id": "PBP5Q5zxoGB08oPnHaqcfA", "stars": 4, "date": "2011-10-26", "text": "Man of man this place is gooodd - I hurt when I leave from eating their awesome beef tacos, these are from god. They deep fry them and the beans are cheesy perfection. So if your trying to lose weight or looking for healthy, not this place, this is the place where you sin. Red cheese enchiladas hit the spot! \n\nThe service is great and the prices are low, of course the building could be better. Great for pick up also.", "type": "review", "business_id": "soiGohHtWOltGeomkSxzEw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "YwsP21V2ATnquSHJqQj00Q", "review_id": "iLgse98wFDqC1X4NVh0i_w", "stars": 4, "date": "2011-02-17", "text": ". Angel, daughter of the Lounge's owner Joy is a HOOT!! I love her personality. It's not a fancy place, little hole in the wall type place. They have been open for 8 years and have had a pretty steady following. There is art on the walls (LOVE the Dizzie Gillespie painting... thinking of buying it) painted by a local artist. Live music on Wednesdays/Fridays. Wednesdays step classes (the Al B. look alike) and they have another separate dining-type area. Wednesday nights they hold something called a conversation party. Random 5 topics are chosen (we had a peek at last night's conversations) EX: Are momma's boys a good or bad thing? What makes a partner in a relationship think they need to start playing games? What is most important to you in your professional career?\n\nApparently some of these discussions, as you can imagine - adding the alcohol ingredient - can get pretty heated. It seemed to be a big group last night... 15-20 people. \n\nSo after dinner, catfish, PORK CHOPS TO DIE FOR!! So tender, fried hot wings, mac 'n cheese, mashed potatoes, LOTS AND LOTS of hot sauce, we heard the band start warming up. YES!! GREAT music. People walked in wearing their Sunday best and others walked in wearing jeans. It's an everyone knows everyone's name type of place. Older people and the younger started trickling in around 8PM. \n\nDefinitely a fun experience. Good times.", "type": "review", "business_id": "RKOS92ptLgEU3BUNMtDHrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZVBvgWyq0ZP-Td2SXMeDAA", "review_id": "EXaVbv6kTqHXDy1Ji0fFSg", "stars": 2, "date": "2012-10-16", "text": "No credit, weird layout, not much fresh food", "type": "review", "business_id": "gWP6ofoyTbK0SZj1i_XqNQ"} +{"votes": {"funny": 2, "useful": 6, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "_MHCkD3REwlrVU3PVyxFrA", "stars": 4, "date": "2011-07-26", "text": "I'll preface this review by saying that I've never been a fan of hospitals. My experience with hospitals growing up was always to visit friends or relatives that were sick or recovering from accidents, and I've never felt 100% comfortable at the site of blood, dealing with disease, or \"scary\" situations. For these reasons, I really respect doctors, nurses, and all of the staff that work at hospitals to help those in need on a daily basis.\n\nAll of that being said, I've seen my fair share of emergency rooms in the last few years, and for the most part, I've had decent experiences, even as the patient. I've actually been to this Scottsdale Healthcare location three times already in the past eight months: twice for scares with the pregnancy and once for a breastfeeding class. This is the hospital where my OB/GYN delivers, so naturally, this is where I'll be heading when Baby Mess is ready to enter the world... and I'm confident that I'll be in good hands when the time comes!\n\nI've heard great things about the facility itself, especially the labor/delivery area, from other friends that have delivered here. And from my experience to date, the staff has always been great as well. Parking can be tricky, but they do offer complimentary parking during the week... and the breastfeeding class I took was very informative.\n\nBottom line: I don't think any hospital will ever be at the top of my list of \"fun places to hang-out,\" but if you or someone you know is in a situation where medical help / a hospital is needed, you can't go wrong with Scottsdale Healthcare. Fingers crossed, I'll still feel this same way after I deliver this baby!", "type": "review", "business_id": "xYEKBSjs--YSN02SUQ__Tg"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "FVtrmb-ieOkDM03_sKq2NQ", "stars": 4, "date": "2011-08-19", "text": "if a hipster bar met a dive bar, this would be their offspring!\n\ngood music and lots of kinds of friendly people!", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "ivGRamFF3KurE9bjkl6uMw", "stars": 2, "date": "2012-06-16", "text": "This review is for the chain in general. The location we went to is new so it isn't in Yelp yet. Once it is I will put this review there as well. We were there on Friday at 5 PM. \n\nThe reason I gave it 2 stars is because the burger was very good and it was made the way I asked for it. My husbands burger was not.\n\nBut, the server and the fries left a lot to be desired. Let me preface by saying that we had been to several other locations. I like my fries crispy. I ask for them well done, extra crispy, scorched, tortured hollow tubes. Whatever their buzz word is for well done. The location will comply. EVERY OTHER 5 GUYS HAS COMPLIED. But not the one at TATUM AND SHEA. She said that corporate said they are not to cook the fries that way. So if we were to put up with soggy fries - yes soggy, then we did not want them. \n\nShe also interrupted us several times which is rude. THEN she went and called corporate just to double check for us and she came to the table and said they said no they were not to cook them that way. Seriously? We did not ask for her to do this. She actually accused us of being undercover shoppers. We started to say something and then again- she interupted.\n\nListen, if you explain that our choice is not how the company wishes to present their product and we still choose to have them a different way, you should comply. It is after all our money and our decision. I was raised with the rules that #1 the customer is always right. And #2 if the customer is wrong REFER TO RULE NUMBER 1!!\n\nWe will not return. They have lost our business and I hope she loses her job.\nIf you want to try a really good burger AND FRIES place- go to Paradise Valley Burger Company at 40th Street and Bell. You will not be disappointed.", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "Vtj5M3zeo-TaFF4VZo8gOA", "stars": 3, "date": "2011-08-26", "text": "It's a freeway.\n\nTraffic sucks near downtown but the views are nice through Dreamy Draw.\n\nI think I just saw Kurdy passing by!", "type": "review", "business_id": "O36iUta8mR3XsbACp4nS3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zg_M3iwTqOgp-2i6Usyftg", "review_id": "AP4xUdvCnIFhGh0ixJv4LQ", "stars": 1, "date": "2010-10-04", "text": "Cadillac Ranch looked really awesome from the outside, this nice red cadillac out front, nice patio outside, and an enclosed bar and grill patio on the side. Upon entering it was pretty dead, well, it was a Monday afternoon after all.\n\nI ordered the Southwestern Country Fried Steak, huge plate of food that came with your choice of House Salad or Ceaser Salad. I dove into the mashed potatos, which upon their many options of how you want your potatos to taste (garlic, cheese, horshradish, etc), I picked garlic - always go safe at a first time resturaunt! The gravy was very bland, I ended up putting more salt on it. The potatos were the only thing salty and flavored on my plate. They had also put diced garlic in the mix, not roasted, but raw garlic. I love garlic, but I can't eat whole cloves (horrible headaches) like some of those awesome people can out there, so it was kinda a downer there. The two pieces of country fried steak was actually steak, but the very fatty piece of steak that you should never buy, cook, and serve.\n\nSince I came with friends and family, it seemed the only thing they could put flavor in was the deep fried dishes. My mother ordered the Fish and Chips, they were slightly on the dark side, the fish wasn't fishy but slightly bland, the cocktail sauce was the only thing that saved the fish from being totally neglected lol. The fries were really good though! My friend had ordered the same thing, I think she wasn't complaining was because she had ordered mamosa's lol.\n\nService-wise, it was slow, but don't expect to be waited on asap on a dead Monday.\n\nI think the only thing that tasted good was the Ice Cream Fudge Brownie, but that single dish alone won't help this review get to two stars.\n\nAll in all, eat at the other different eateries at Tempe Marketplace, I think Cadillac Ranch would be the last resort place if you can't get in to another popular resturaunt at the time.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "qFMmUME0hUc2H2MPGj70gQ", "stars": 4, "date": "2011-09-21", "text": "Very good Rubio's, very accommodating for my diet needs and the kids love their taquitos. It is in a convenient location when you are shopping and don't have time to go home. The management seems to be on top of things and keep the place very clean.", "type": "review", "business_id": "AjE4uM-VaGP3QPCjSjIEaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1fZrSKqNbXdwyvtAlcbtTQ", "review_id": "M1-RvIf3axA7mU1-csV_tA", "stars": 3, "date": "2012-07-03", "text": "Well look at that. We went to this Dunkin on Sunday and they didn't mess up our order terribly. I was greeted by the afternoon staff, and they were quite nice. Yeah, they couldn't get the order right the first time, but they worked with me to make sure they got it right at the window. That's all I ask for. Is that too much to ask? Apparently it is for morning crew. Not afternoon. Solid, not terrible experience.", "type": "review", "business_id": "F1-TX9MIXnhaNzUtg-yDNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D2NKLp8yrK-49RKslrOnpw", "review_id": "QPndBpV85CanakJbtFjg5w", "stars": 5, "date": "2012-04-14", "text": "Love this place! Went for a stay-cation with the girls for a spa day and stayed the night. I can't wait to go back! You are in the city but feels miles away! The spa is amazing! Wonderful adults only pool with great refreshing food and drinks. Then our rooms were clean and comfortable. Dinner at Kai was nothing short of superb, and breakfast the next morning on the patio over looking the golf course and pool area was also very good. Overall a wonderful night away.", "type": "review", "business_id": "p8yg26BbovkfL2iw7Pcg0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "B7O4D5rxNxER7-mN7q-jkA", "stars": 3, "date": "2010-07-26", "text": "Had a decent lunch here the other day with my co-workers. We go here often for happy hour after work.\n\nThe food was pretty decent. The lunch menu is oddly full of mostly non-mexican style food. That was odd.\n\nService was ok until it got a little busy. Then my cup was more half empty than half full.", "type": "review", "business_id": "FG_GRMLSj68ximzfrr9eWw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "FW4C9Hc-CR9tj112CCBCLQ", "review_id": "81U29zaz1aQNfaR7JL_hYw", "stars": 4, "date": "2011-11-27", "text": "We got in late and had an early departure the next day. The staff was very friendly and helpful. Our room was spacious and the bed was very comfy. The amenities were decent, however there was no shower cap or q-tips. \nThere was Wi-Fi, but it wasn't the best.\nThe outside was beautiful, being surrounded by green always makes the desert better.I didn't get the chance to use the swimming pool. I would definitely recommend this hotel. Next time, I will make time to be able to use the swimming pool.", "type": "review", "business_id": "CD-2yHTSObgvAhW-pYHfMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bbo-MGJYQPOXPUDuI-gV-w", "review_id": "QQC3oFZ8bf_gkVGs-p0iSg", "stars": 3, "date": "2012-07-24", "text": "just another big store with everything everywhere.", "type": "review", "business_id": "89yv89wcF_-ehN7_pUnl6w"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "__FXEOrWIjXMOElz2pGlBQ", "review_id": "jStvwAVYJz0j62km6FTlmQ", "stars": 5, "date": "2009-06-16", "text": "This is my favorite place to go for Greek food. The owners are from Greece and frequently several family members are present.\n\nThe food is delicious, large portions, friendly service. I wish they were located in Surprise, but they are worth the drive.", "type": "review", "business_id": "XGK7mKZJQtJa77Izhx6xyQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "tu21UQUb1uYaEZkYsIXPnA", "review_id": "pjIOtls3IonMGtupQ05aEQ", "stars": 5, "date": "2012-02-20", "text": "I have been here multiple times and each time the staff has been superb. Their selection is also awesome. I would highly recommend.", "type": "review", "business_id": "fYv4xwoPt3a8QKBNhEJfDg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "trGepkam5MTXDn4HBucdxw", "review_id": "lPGD4Ys57SpbC44_IqXwPg", "stars": 3, "date": "2005-12-16", "text": "decent. the potstickers were kind of good. I didn't really know what to expect. it met my expectation. the lychee pork was good and deserved the second helping. the selection was impressive. and the stuffed mushrooms had an interesting stuffing. spam, was it? some sort of sausage or other processed meat that made it quite a delightful surprise.", "type": "review", "business_id": "TnKMo7BnsbqFaeNL1GY3og"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IyQKx13mN0TcVhWhqwHirw", "review_id": "bVA2FD78rGQd5Mv7fo2kYA", "stars": 2, "date": "2011-10-15", "text": "Thai??? Really?? I love Thai food and couldn't be happier to try a new restaurant. Wow! It was a slap in the face on so many levels. The 2 hostesses were the rudest I have had the displeasure of having to interact with. We ordered take out and as we waited for out food from the kitchen the hostesses made us uncomfortable... As if we were imposing on there entry.\nThe food was not spectacular. We ordered pad Thai , was very dry but not horrible. The sweet or sour beef was watery and seemed more like fajita with way too many peppers. No sticky rice, green papaya salad, Larb...", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pOgrEdAaMBAJviSgqTCXiQ", "review_id": "iv7tfabvD7GijCt_4SBAgg", "stars": 4, "date": "2012-07-31", "text": "Had a terrific Breakfast Sunday morning with my niece from Los Angles. Great Breakfast Burrito, Outstanding Blueberry Whiskey Cake. Staff was so friendly, Service was great. Will bring all my friends and guest there. Enjoy!", "type": "review", "business_id": "qKBdXH1kZNU-c9BHQaTUag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PDRWbCZa92irf8mK5X_Kig", "review_id": "Ic-t_oLRMEEpmo0MfIvOwA", "stars": 3, "date": "2011-10-25", "text": "Okay, so I like Canteen and all, but dear Lord, let's turn that music down a notch! These guys have a great happy hour, but I realistically wouldn't come here if it weren't for that. I quite enjoy the small bites' baby back ribs - the portions are so small, but since they are half price during happy hour, I get two orders! I'm not a big fan of Tequila, but I know they have a big selection (obviously). I really like the atmosphere here, and the service has always been good. I may or may not come back, but we'll see. Three solid stars from me.", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "aEU-EIGl_do9y6-j1MEMNQ", "review_id": "B-sZnWmKM4nrkVZHHFtU9g", "stars": 4, "date": "2012-06-30", "text": "Bottom line: the new owners bring you better beef than Al's in Chicago. Yes-they really do.\n\nItalian food tastes better in Italy (usually). That meal on a dock in Sausalito is not the same even if you copy it exactly when you get home. Food is an experience that is altered by the location, mood, companions and results. So, being at Al's in Scottsdale is not the same as being in Chicago...that's obvious, so get over the fact that you're stuck in North Scottsdale, and not in the Windy City. But the new owner's seem to have this place clicking. The sandwich is awesome, and they work the floor to check on your experience. They care. I read a bad review about a hambuger here...are ya nuts? Al's...ditch the burger...who cares? and customer...what the heck brought you here for a burger? Sheeesh. I digress...again.\n\nI have always enjoyed a trip to Al's in Chicago. Portillo's, Johnny's, and don't even get me going on the Portillo's vs Al's debates, but even though Al's beef wasn't always the best quality, the combination of beef, grease, jardiniere, gravy (jus), spices, and peppers at Al's has always nailed it flavor-wise for my palate.\nWhen I worked in Phoenix, a trip to Luke's on Indian School every few months would deliver an OK time, but it didn't really satisfy my craving for great Italian beef.\nThe first franchise for Al's at this location, brought those flavors I was craving, but messed up everything else about running a restaurant, and I still went back, and was sad to see them not make a go of it.\n\nUnfortunately, that left a flavor void, and I kept waiting for new Management to get open...and just before they did, I went on a very serious training and diet regime. My latest race results and training schedule gave me a little room for coming off the regime a little, and I decided today was my perfect cheat day...I mean Al's day.\n\nThey really nailed it.\nMy fries were wonderful (I was eating them while they were bringing me hot sauce)....crisp, slightly browned, gooey in the middle, loaded with flavor, without being over-salted. \n\nThe beef was absolutely great, better meat than original Al's in Chicago, as good as Portillo's in meat quality, but with all those insanely fantastic flavors I remember from my best sandwiches at Al's. Definitely one of my best sandwiches so far in 2012...and I highly suggest the \"Wet, with a side of gravy\" method.\n\nMany may object, (oh, ye lazy masses) but, I think Al's tradition of fully-dipped sandwiches leaves you with a sodden mess, that takes the bread out of the sandwich equation. If you are indeed- lazy, well then the dipped style gives you more wet bread that has soaked up that insanely good flavor combination. So if you are lazy, and also-messy, get it dipped. But there is a better way- it just takes a little work and technique...so simple it's easily mastered by a hungry 7 year-old, but they can also fix a frozen iPhone, so....\n\nThe perfect compromise is to order the sandwich Wet, with a big side of gravy (no charge for that- thank god). You can pour large amounts of the jus into the end as you go (obviously held upright), pinching the sandwich down below your planned bite, so the jus doesn't just run through, but soaks the meat and that portion of the bread from the inside out. Lot's of the jus is what Al's beef needs to soak the meat and release that delicious flavor combination, absolutely soaking the bread too, but maintaining the sandwich integrity, while adding in a tiny little bread crunch on the outside. \n\n(As a caution: you can order the beef \"Dry\". My advice if that would be your choice: don't go here. This is not a sandwich that is designed to be eaten dry- the beef will be flavorless and without charm. A Roast Beef from a good deli will be awesome if that is what you are in the mood for)\n\n\"Wet, gravy on the side, sweet and hot peppers, cup of hot sauce.\". Spice the gravy up with hot sauce to your taste, pinch that sandwich, and pour as you go.\n\nFreaking awesome sandwich, that blows away the local alternatives. And I'm perfectly happy with a spotless, new interior in North Scottsdale. I don't need Chicago memorabilia or grungy atmosphere to enhance my sandwich experience when the beef is this good. Bring a few good friends, order up a few beef, try a combo with sausages, share and compare, and start your own great dining tradition. Very cool to think that I won't be jamming a daily Italian beef into every Chicago trip just because I couldn't get them anywhere else. \n\nGotta step up the training another notch so this can be a weekly lunch choice, because I am stuffed right now, and I still want more of that flavor!!", "type": "review", "business_id": "m3EKlucZuwnOazLrRfnWaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLgkT2QxH8aauHzeLb44-g", "review_id": "S_V5GqMBkuVBOzLT4T4XJA", "stars": 5, "date": "2010-03-11", "text": "Huge store, friendly staff", "type": "review", "business_id": "FBz4APP7xyIaUfwEHUBBYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o2-JGW-3pru6IK9o33oRJQ", "review_id": "-9QqRlAKuR2oERQNp8iQVg", "stars": 4, "date": "2010-06-28", "text": "Good stuff! Reminds me of a small pho place in San Jose I used to go to almost everyday for a while.\n\nThe pho is very good. Not the absolute best, but very good. Their fresh spring rolls are excellent as well. Cool, crisp and tasty. I also like their sandwiches as well, but could do without the tomato in them. Kind of strange.", "type": "review", "business_id": "L-GfuOmn9mv55571uXvf2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vNx7F5bTO_rnh2ZlBUJ1Bw", "review_id": "DqSgx-4kP_3xHFJyyZcbBA", "stars": 5, "date": "2012-11-01", "text": "My car looks better than it did the day I bought it!", "type": "review", "business_id": "vvWx1pJvr3QuFb7IW4-KGw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GeGDZ02UfARKBRl7LqKZuA", "review_id": "6fcnPIcE3WjOVd6hiwULzg", "stars": 5, "date": "2011-03-11", "text": "OMG this place is good. Great Italian beef. Great burgers. FRY SAUCE. I don't know how they're pulling off such good food with what they have but it's awesome and I will be eating here if I'm in the area and hungry.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lKze8Z4vzqgN5R8Bq8F_vA", "review_id": "RFcu-xmzE52r93kIO4CeEg", "stars": 5, "date": "2012-09-30", "text": "I love my eye doctor! Platonically, of course. The entire staff is relaxed, friendly, easy going, and personable. No one ever makes you feel rushed but instead take time to make sure that everything is okay, that you've thought of everything, gotten all of your questions answered, and had plenty of time to make decisions and think. The doctor takes time to get to know you and to talk about how you use your eyes (staring at the computer, sports, etc). The assistants try to think of things from your point of view so they can volunteer useful information and ask a lot of specific questions while doing so. This place treats you like family. There's a broad range of styles, but mostly, they're fashionable frames. When I go in, I see a lot of kids, young adults, and 20 and 30-somethings as well as the older patients who so often come to need glasses. Horwitz costs a little more than the mall chains, but my prescriptions have been consistently better thanks to the doctor taking time, the lenses are much higher quality, and the frames are worlds better in terms of availability of things that aren't ugly and durability.", "type": "review", "business_id": "itpHJcXW0PXNsdTbbKMfpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RUmnmK0e6gtk79psET9uQQ", "review_id": "xjy1Ww9gasHb848U6OUUOw", "stars": 1, "date": "2012-08-23", "text": "Treated with complete disrespect. Worst service I have ever experienced. After waiting to see the manager I was directed to an employee who committed slander towards me very loudly in front of everyone in the store. Then the manager stepped in, spoke robotically without listening and then was incredibly harsh in tone and told me to leave. He said, \"leave, get out, now\" \n****************Don't go to this store/don't use verizon******************", "type": "review", "business_id": "TcB2FSAwS5jeumxy99EvHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lesPm96KavoFJORoUOuWbQ", "review_id": "xzKwO0qKZ1rF7j5PDRR4MQ", "stars": 4, "date": "2011-11-07", "text": "I am not sure what the deal is with all the two star reviews.\n\nFor a casual dinner this place is doing a great job. The atmosphere is fun and friendly, the outdoor patio sparkles with all the little lights and the water feature is very cool to look at. \n\nMy husband had dinner here and found everything much to our liking. The server was friendly and knowledgable. Our drinks were never dry and the food was just was just as described.\n\nIt was a little cool the night we ate here but the dozen or so heat lamps did their job well.\n\nThe layout of the courtyard is such no matter the size of your group everyone can have a great private meal.", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xZE9fvrehWUGUmrZnZs5MA", "review_id": "08nAk1WzdtHyAIKEN2cO9g", "stars": 5, "date": "2011-09-12", "text": "Always treat me well, very honest!!", "type": "review", "business_id": "iGb3sQ4wCofUJOycrn0wQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3eit3w0zDbb-z57c9P60vg", "review_id": "n2AFOc65UHcO5mgkiI7NaQ", "stars": 5, "date": "2011-02-18", "text": "One of my top choices for downtown Phoenix. Always an upscale, posh vibe, but with very generous prices on entrees. Good looking people throughout this bar. \n\nThe Kisras are VERY tasty and a good spin off the typical flatbreads at many restaurants now. \n\nBrunch here on Saturdays or Sundays-- great drink specials too.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y-wRMqFtawAekwYQMoJ4HA", "review_id": "BOW7rFb17ehroxtE-2FDuA", "stars": 5, "date": "2011-05-25", "text": "Great atmosphere and food. We keep coming back!", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HEjEYwYkWLJK12oi19N9uw", "review_id": "zvY8ftT2XoXQ2Gr26BkK2A", "stars": 5, "date": "2011-09-13", "text": "Most amazing service! The food is common pho and buns but the main attraction is what drew me in it's not your typical Vietnamese restaurant it's a SPRING ROLL BAR!! Fantastic drinks! Great addition", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "noekNAqLa2L3az5_bnb3zA", "review_id": "QeTK_DS1i5lg4CHDCX4nKA", "stars": 5, "date": "2009-07-16", "text": "Ahhh, Four Peaks. By far my favorite restaurant in Phoenix. This place is fantastic as far as brew pubs go - great beer and great food to go with it. I can't believe I haven't taken the time to review it yet...\n\nThe Beer: pretty consistently awesome. All the beers are at least \"good,\" my favorites being 8th Street Ale and their IPAs (Hop Knot and Raj). I have to say the Kiltlifter is a tad overrated, but still pretty solid, and worth a try. I've been meaning to try one of their cask conditioned ales, but they always seem to be out, probably indicative of the quality of those selections.\n\nThe Food: fantastic! I can't say that I've ever had a bad meal at Four Peaks. The Italian Beef Beer Bread is the best thing on the menu, but you can't go wrong with the Chicken Fingers, Chicken Salad Pita, or really any of their sandwiches. The fries are also great here - there's a little crispy coating on the outside that is quite tasty. Oh, and the Spicy Thai Hummus is also a really good appetizer. A little more liquidy than your average hummus, but really good. It has a nice little kick to it that will have you reaching for your beer.\n\nBottom line, if you live in Phoenix, like beer, and enjoy eating a good meal, then you should be shot if you don't like Four Peaks. If you haven't been yet, do yourself a favor and try it. You'll come away happy, I promise.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wqR5v69DZy_qmaAfK8nZTQ", "review_id": "_eunk4VtGkufHgtTksXwwQ", "stars": 3, "date": "2012-01-02", "text": "Popped in for a quick meal before a show. Fun decor, brand new and sparkling clean, with a nice sized menu. We chose this restaurant because it advertised gluten free pasta. Unfortunately, no one on staff seemed to know what \"gluten free\" meant. When we asked which sauces might be GF to go with the GF pasta, we were met with blank stares. It took several questions to determine that the marinara sauce \"might\" be GF -not very confidence inspiring. When we did get our meals, everything tasted fine, not fabulous, about on par with a Pei Wei type experience. I had a small side house salad, which was not on the menu, but was offered by the girl at the register. The greens were nice, but not chilled, which was kind of yucky. The balsamic vineagrette was not able to be GF certified, so I had it on the side. It was just OK. My GF pasta was cooked properly, and the portion was large but not too large. I had the primavera with marinara sauce, and while the veggies seemed fresh, they were a tad overcooked. My husband had a pizza, seemed to be pretty good. My daughter had a kids meal of chicken tenders and fries--the tenders were a chicken breast cut into slices, which worked, and the fries were a tad bit reminiscent of Burger King's, with some parmesan thrown on top. The kid's meal also came with mini donuts, which we had to ask for 3 times, but there were fresh out of the fryer and covered in cinammon sugar--yummy. We ordered ice cream with a GF chocolate chip cookie--and what arrived was definitely not a \"cookie\"--more like a gluey, gooey chocolate chip amoeba at the bottom of a dish with 2 scoops of ice cream on top. Eh.\n\nI tried to order an espresso machiato at the coffee bar in back of the restauant--the coffee girl didn't know the correct way to make the drink, so I opted for a soy cappucino--this was tasty and well done.\n\n\nThis is clearly a new business still working out the kinks. I think it's a good option if you're in downtown PHX and need a quick, decent meal.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "FDPT0_apVVMKkmpK0T7jpw", "stars": 4, "date": "2010-09-28", "text": "Got there at 11am on a Sunday, it was packed to the gills. WOW! I should have listened to Michele M. We ordered shrimp dumplings, roasted pork, bbq steamed buns, turnip cakes, shrimp egg rolls, chicken feet, spare ribs, steam sticky rice with meats, fried tofu, egg tarts, etc... Everything was good. This is the best dim sum you can get in Phoenix.", "type": "review", "business_id": "0db71MbrvcJnyk71COCJBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4gIi4L7e870qFbnRemaoBA", "review_id": "qoymRFBljPuZamIpC9sYVQ", "stars": 4, "date": "2012-01-02", "text": "People that are rating this place low are nuts.\n\nIt's a greasy spoon sure, and yes, sometimes as you'd expect from such the service leaves something to be desired. That being said this is a super tasty burger. Very moist and delicious. The beer is also cheap and they have a great selection of local brews on tap and in bottle. The beer on tap comes in one size, FISHBOWL!\n\nAlso, get a fried egg on your burger, trust me, you owe it to yourself.", "type": "review", "business_id": "CNvPqN9pa5aJRn-Npcqgdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "gVkEHGYJ9d6FiohApDoqBg", "stars": 5, "date": "2010-02-14", "text": "I've been going here many years.\n\nThe food is always very, very good. Soups are fantastic, sandwiches are hearty and flavorful, and the service is excellent. Prices are reasonable and the food quality and quantity is probably the best bang for the $ you'll get in a place like this, anywhere I've been - and I travel a lot.\n\nI really cannot think of a single thing I can fault this place for.", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "N1ua3GlOkCratCdduSh4UQ", "stars": 4, "date": "2010-04-20", "text": "Well it's about time that I yelped about something already, it's been forever since I have! \n\nGot here on my lunch break, and find it surprisingly similar to the mongolian grills that I've tried back in CA.. piling on the meats, veggies, sauces and such. I'm a little surprised to hear people review on this place that placing the ingredients in the bowl grosses them out, that's what a mongolian grill is, right? Oh well..\n\nIf you like to customize your food, this is the right place for you, but if you don't like getting messy with your hands, this is definitely not the place for you. Definitely liked the amount of choices in ingredients and sauces, the soup and drink that's included in the meal.. but the 50 cent charge per to-go box is pretty stupid. Staff is really friendly, bathrooms are clean, pretty spacious....\n\nOverall it's decent, but will only come here if I am in the mood for lots of leftovers or willing to fork over $9 for lunch..", "type": "review", "business_id": "chFzObJSoxAbVlFfgk5JRg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "K6MrbZeqKG35ZiucFfucvw", "review_id": "XGbfw3oUgoJPtrZY4IeM5g", "stars": 4, "date": "2011-08-23", "text": "Surprisingly I had a blast at this place last night! For a club it is a bit on the small side, but other than that it is pretty nice. It was a Monday night(watching a DJ spin) so it was not jam packed; i am sure the weekends can be a bit ridiculous in here. I am not sure what I think about the voyeuristic bedroom that overlooks the dancefloor...meaning from the dancefloor you can look up at a staged bedroom (looks like a VS fitting room), where a chic pretends to put on make-up, write in her diary, lay around in bed, etc. while wearing lingerie. It is definitely entertaining for sure! I wonder how much those ladies get paid to 'do what they do' up there!!?? Anyway, they also have body painted 'topless' cocktail waitresses, which I'm sure the men love. If you are a bit of a prude this is probably not the joint for you. I am sure this place pulls in lots of Scottsdale's finest douchebagery and fembots, but I cannot deny I had a pretty rad time there on an 'off' night! I danced till the lights came on (along with many others) and I haven't done that in a while! The service was great and the drinks were well poured...did I mention the bartender wasn't too shabby to look at either ;) Whether male or female, it is not too hard to find something tantalizing at the PCL!", "type": "review", "business_id": "mHZXq1c6j1b5bKXTxKJ-pA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "d95On_QNeQPr01pRNzHa5w", "review_id": "GCrxp8a9tnbTe8T-knOW8A", "stars": 4, "date": "2010-12-19", "text": "If you want bruschetta, you cannot go wrong here! You get to pick four. Request to have them cut in fours, much easier to eat!\n\nFAVES\nProsciutto with Figs & Mascarpone\nBrie & Apples with Fig Spread \nFresh Mozzarella with Tomato & Basil \nRicotta with Dates & Pistachios \nSalami with Pesto\n\nThe green picholine olives ARE SO GOOD!\n\nRaspberry Chicken Salad is good. It's a little sweet, but I always ask for the dressing on the side and just use a very small amount. We usually share this as well. \n\nThe Brie and Prosciutto panini \n\nThe pieces of paper with 'your gum here' So cute!\n\nMon/Tue after 8pm $20 bottle of wine AND bruschetta! Awesome!\n\n\nCons-Loud. Really loud. Acoustics in this place are terrible when it's busy, and it usually is. It's a little better when the doors are open. I guess they can't really do anything about it since it used to be a post office. Hence the name 'Postino' \nDesserts are mediocre\n\nCrazy busy parking lot\n\nIf you don't want to valet, you will have to park down the street on campbell near the residential streets.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XLHDwNRYynxd8oiyIvk7DQ", "review_id": "JtpK-snl9zuOu6MTlNNRXg", "stars": 2, "date": "2011-03-19", "text": "The new Fry's in the burbs are awesome, but this old relic is pretty bad. Ugly with a with a smaller selection, plus staff who pass you in the aisles (when you're obviously looking for something) without asking if they can help. If you're in this neighborhood, head over to the nearby Safeway.", "type": "review", "business_id": "ePdWC_PsCuPVboQIje38Rg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_8eGLKjVpGK_mxwM8mlOgA", "review_id": "y0CuP0jacqkdRFPMDiwmaw", "stars": 5, "date": "2010-03-03", "text": "omg... I love this place the food is great, the selection is great, the staff is very helpful. This is a great place to go have a few drinks and great stir fry.", "type": "review", "business_id": "pzPbg_B2uSVJ72LIa2G3sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aI8UXirXvGbWGmMuQEai9g", "review_id": "0q_G6NKetlDEWxzoKDOYaA", "stars": 5, "date": "2012-06-12", "text": "I love this place. The family is very sweet and the food is real deal homecooked Cuban food ... as good as I remember eating in Havana. I love the Fricase de Pollo and my hubby loves the oxtail. The fruit juices/smoothies are delish too!", "type": "review", "business_id": "BojnLUPz5IzZKyQocGc7uw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "qHCEXMPiIuT8gyPCVce5AQ", "review_id": "10X6Nop4i1nTxm972opTag", "stars": 4, "date": "2012-06-27", "text": "Luci's is a great little neighborhood store nestled on the corner of 16th St and Bethany Home. They offer a full breakfast/lunch menu (order @ counter, then delivered to table), plus a unique variety of items that you would find in a boutique-esque grocery store. I've only eaten here once, but I have stopped numerous times for their coffee or a six pack of cold ones. The strawberry waffles were very enjoyable, and the Mrs said the hash browns (mixed with sweet potato hash browns..mmmh!) and the yogurt parfait were also very good. \nThey have garage style glass doors that are raised during non summer months that allow for a great breeze and view of this busy little intersection.\nThe parking is a bit of a disappointment but I guess you cant win them all. After breakfast or lunch swing by Dick's next door for a drink or wander over to Poor Little Rich Girl for some boutique shopping, great neighborhood spots, wish there were more of them.", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y_nk4KhoHlkd1WRKCfIhuA", "review_id": "8KMknGjoSO_hvnzb0da-ww", "stars": 2, "date": "2012-11-13", "text": "My wife and I almost always head in the direction of Bell Road for lunch or dinner. Today I decided to head west and south. Saw Taps they were new to this shopping center. \nTaps looks like a sports bar when you enter. Only thing there appears to be only 2 TVs or at least where we were sitting I could only see two both above the bar. The decor is appealing, fresh, lots of light coming in from outside. \nWe were seated and very soon offered drinks. When the drinks came to the table we had both decided on their special. Soup and Salad. With this you get a tomato soup, as much as you want and a choice of several salads again as much as you want. \nNot sure why but lately I have had a hard time getting soup that is hot. The soup came out at somewhere well below the state required 130 degrees. We sent it back asking to warm it up. We got it back it was warmer but still not hot. My wife's salad came out with her soup my salad came out a little later. I got the wedge. My soup and salad was very good. My wife also liked her meal. So the food gets a 4.\nThe service was very slow. It took over 15 min to get the first of our meal to the table. I did order a second different salad as well as did my wife. This also took about 15 min to bring to the table. For what was going to be a quick lunch we were there about an hour. There was only 5 other tables in the place with people at them so the reason for being slow was not that it was crowded. \nThe plates bowles they used to serve the food in is extremely small. By the time you had eaten you salad it was all over the table. It is impossible to keep in the small bowel it is served in. If you put the same amount of feed in a larger bowel it would be much better. \n\nThe food was good, the service was not so good. Soup needs to be hot not warm.\n\nEnjoy", "type": "review", "business_id": "OSsueRKTxM0MEbgIRsUebA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AZ8NDHmLWdZGzvMtZXzjkA", "review_id": "QjeWpXhukMX6pYmxr48sNQ", "stars": 3, "date": "2012-10-17", "text": "In short... great view, really expensive food.", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "xg4AdOGHFxJyWByFbG8stA", "review_id": "oZNFdkJUo9fHLzSpt8bP3g", "stars": 5, "date": "2012-01-09", "text": "What to choose, what to choose. Such difficult decisions! Seriously, this normally isn't a problem. Dispite the fact that I'm a libra, I'm very decisive. Friends usually look to me to make all sorts of decisions ::diabolical laugh:: Still, this place consistently stumps me.\n\nIs it Tuesday? If yes, then I'm definately getting the Pork Belly Tacos.\n\nOtherwise, I'll start with an order of Ceviche and Asado Salad.\n\nTo drink I'll have Agua Fresca de Sabor.\n\nYes, I'm going to have an entre too, I mean I've already broken my diet, might as well :D\n\nI'll have the Huevos Rancheros or 3 Carne Asada Tacos or the Verduras de Temporada or the Chilaquiles Verdes or the Carne Asada Torta. OMG, so many great options! Seriously, this normally isn't a problem. Oh well, I guess I'll just have to try everything.\n\nNext up, a euphoric food coma! Life is good.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 16, "useful": 19, "cool": 20}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "Xyu5ZtKC4zhDk9HVl6viiw", "stars": 4, "date": "2009-05-17", "text": "I was a dim sum virgin until yesterday! My wonderful wife Audrey W was there to share my experience with me as were Dottsy Z, Donald S, Marian and Kevin H. And Dottsy has pictures too! And wow did I get off cheap! \n\nThe best dim sum I have ever had! Honestly, the only dim sum I have ever had! I'm so glad I had other yelpers that were experienced to share it with and help me enjoy the first time!\n\nSeriously, Phoenix Palace has really good dim sum. I enjoyed nearly everything I tried, there was tremendous variety and high quality through and through. I was not quite as adventurous as some of the more experienced folks at the table. I did pass on a dish that featured tripe. Sorry. Maybe I wasn't ready to go all the way.\n\nThe review trend has risen over the last few months. I think I heard there was a change in ownership or management or possibly a new chef. Or all of the above. I don't know but it was good.\n\nFor 6 people and loads of food the total was just under $70. Unreal.\n\nGreat lunch spot for dim sumderful variety and a total bargain. Phoenix Palace is in the same parking lot as Lee Lee Oriental Supermarket so you can fill up on dim sum before you do your shopping. Then you'll spend less when you go shopping. Never go shopping hungry.", "type": "review", "business_id": "9Qt1pt0pk2VWz0chdGk-jw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kRbQXbWCjn3lwWyIQD9cXw", "review_id": "nGOyrBkFs6fF7NRm0XlDWw", "stars": 4, "date": "2012-08-23", "text": "I love Rubios. I can't really help it. The fish tacos with some lime and a Corona just hits the spot sometimes. I'd recommend it over any of the other restaurants on this particular strip in Surprise.\n\nEdit: Now closed.", "type": "review", "business_id": "ZXvxDxhNz8XSe59oj2QlZg"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "0CePh0RhDyOAdS7aZLnEsQ", "stars": 4, "date": "2011-10-26", "text": "I've got mixed feelings about at&t... just as I'm sure that most people have mixed feelings about their mobile carrier. But this review isn't for at&t as a company, it's just for the Scottsdale store where I stopped in recently to return a phone.\n\nLong story, but I had a temporary android phone and hated it. After hours (literally hours) on the phone with at&t customer service, I worked it out so that I could return my android phone at this store and then head over to the apple store with my upgrade eligible status to get the new iPhone. That part is another story, and took longer than expected, but luckily, I did have a decent experience at this store thanks to the help I received from Hasen, the retail sales consultant that helped me out. \n\nI hope there isn't really ever a need to return to this store, but if you must go, ask for Hasen... he was friendly, answered my questions, and provided the service I was seeking in a speedy yet attentive manner.", "type": "review", "business_id": "y09589YKY953yYzK4JxcRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PV5Lv_xl3DDAcAchFJCbXQ", "review_id": "HrKXwRLwt40uOlB42Z2KIA", "stars": 3, "date": "2010-04-01", "text": "I can say that I used to love the place. Not so much any longer. \n\nWent over there this past Sunday at 7pm. Crowded, but still room to sit 6 of us. Here are a few simple notes to sum up the evening.\n\nWaitress was on something. She was walking, but out of it. Forgot our order twice, and both times could not remember even taking them. Very bizarre. \nGirl next table fell over and out of her chair. No one really even seemed to notice, maybe that happens often here now. \nPlace looks tired, worn out, especially the fabric on the chairs and booths outside. If you squint, you can see the old Vig, when it seemed spotless, and shiny. Now a bit tattered, along with the staff. \n\nIf you are over 28, then I would have to say you might feel old in here. Reminds me of a spring break crowd being filmed by an MTV crew in Cabo. Very young, very drunk.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wxzGhHrqKrGYGN72vFyTAA", "review_id": "HTxbu6RbkoA-WjIvxnITcg", "stars": 4, "date": "2010-06-13", "text": "Ok seriously I don't miss Arizona but I sure in the hell miss this place. I daydream about this place....I miss everything on the menu because trust me I tried it...I was a hungry pregnant women on the prawl....besides I loved the live music and the hummus was out of this WORLD!!!\n\nIf you haven't gone....go you won't regret it...It's one of the few things about Arizona I miss.....", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DvrsD8rySf7fmJl2PVn6oQ", "review_id": "rZncl8tzjVStQuRnSPYMzQ", "stars": 1, "date": "2012-05-24", "text": "After reading all the good reviews, we were looking forward to eating here, but we were a bit apprehensive due to the couple of bad reviews because of the smell. Bummer...the smell just killed it for us right from the get go. Immediately, upon walking in the door, the pungent smell of backed up sewer hit us like a ton-of-bricks. We did a 180 and walked right out. No way I could sit through a meal here while breathing that funk. \n\nGet the smell worked out and we will give you another shot, Tasty Thai.", "type": "review", "business_id": "wyxsEFTGC1MuadT2SpTE3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "XfDBDEm2-HEcvYO_nso1Kg", "review_id": "kMsAdkzO4RI-y1f5vbXNvQ", "stars": 2, "date": "2011-08-20", "text": "If you're into smoke that reeks all over...this is the casino for you. It sure ain't Vegas where you don't smell any smoke. Peeee---uuuuu! Stinky.\nAnd if that wasn't bad enough: I went with a group of friends and we all ate at the buffet. Now, in all honesty, some of the food there was pretty good: the shrimp, the prime rib beef, the stuffed cheese lasagna, etc.\nSome was pretty bad like the ceviche and the desserts--OMG--how bad they are. \nMy cheesecake was, obviously, a day or two old and had that refrigerator slightly hard crusting over it--plus, ever so slight smell from the fridge.\nNot yummy. The pies were alot of filling and few pieces of fruit. Just cheap desserts, so stick with the meat and fish.\nHere is the coup de gras, tho. I was given a $4 comp on my player's card. I went to 3 different machines and they were all BROKEN! \nFinally I find one that lit up green so I knew the players card was working.\nAnd guess what? The $4 comp money never showed up on the card.\nIf this Casino thinks I would actually spend money to sit in their stinking cigarette smoke loaded casino, they have another think coming. Hell no!\nI also had a ticket to see their Showstoppers \"show\" which, if it sucked as much as their slots and crappy old desserts, I figured it wasn't worth it.\nOn my way out to go home, I pitched both their non-working player's card and their ticket to the \"show.\" I knew I would have more fun watching reruns of Sex and the City at home than boring myself even more.\nGoodbye, Casino Arizona. You have alot of people in that casino so you're making money off some sucker...just not this sucker.\nNever again.\n(2 stars because their fish and meats were really good)", "type": "review", "business_id": "v76uEBa0jkRl8AH28piX4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JVeCUlDmcwJ3pteEdmzeHg", "review_id": "6jIkly-coKd7ReOQcvRidw", "stars": 2, "date": "2008-10-27", "text": "Over-priced, over-crowded and every time I have been there...it has confirmed that they pour the worst martini!\nBut if you are looking to 'people watch' this is the place - the interior permits a great open ambiance with an open area overlooking the bar. I think the exhaust-system isnt strong enough for the Teppan tables because I smell like heavy fried food when I leave!!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0_Owni6-HjMGBUlt-i19Vw", "review_id": "_pNTs7YYxM_zHqi_4F5zTw", "stars": 5, "date": "2010-04-28", "text": "my husband and i LOVE this place! \n\nno, we cannot afford to get our weekly groceries here (although it would be terrific if we could), but we view oakville as an excellent alternative to dining out on the weekend. \n\nthe food is delicious (think deli, simplicity, quality ingredients), and the atmosphere is comfortable and relaxing! we found that if it's too crowded inside, then it's easy enough go outside to the awesome patio area to enjoy our beer and goodies :)", "type": "review", "business_id": "O510Re68mOy9dU490JTKCg"} +{"votes": {"funny": 11, "useful": 13, "cool": 11}, "user_id": "jqVeTSin5GeRm0ceSg-PBA", "review_id": "535byEwl2ysLSYX_ZfLG6A", "stars": 4, "date": "2009-05-11", "text": "My husband and I ventured up to BLT Steak at Camelback Inn on Friday evening to celebrate our third wedding anniversary, which was two days earlier. We sat inside and our corner table gave us a perfect view of Camelback Mountain at night. \n\nOur waiter was super nice and did a great job of suggesting items and answering questions when we had them. There was a seperate server who kept our water glasses full all night - we couldn't take more than two sips without having them refilled it seemed like. My only negative about our waiter was that when it was time for a new glass of wine for me, he didn't check with me first to see if I wanted another glass of the same wine. I think we all know the common saying about assuming things...\n\nOn to the food...here's what we sampled:\n\nPopovers - delicious. I was a bit skeptical about the butter and sea salt, especially since I don't like butter very much, but it was great! \n\nCaesar salad - good size and it was one of the best caesar salads I have had in awhile. \n\nCrabcake - my least favorite part of the meal. While it wasn't horrible, there was a bit too much celery for my taste and not enough crab meat.\n\nCowboy Ribeye - since it was 22 oz, I graciously told my husband that I would have some of it so he could order it. Now those that know me know that I don't eat red meat because I don't like the taste. But I sucked it up and had some...holy crap, I had a few bites and said, \"Wow, this is really good\". So that should say something about how good it was. However, my husband did think the outside was a tad too well done, although the meat itself was cooked perfectly. While he liked the ribeye, he did think his steak at SW Steakhouse in Las Vegas was better.\n\nMashed potatoes - is it possible to get divorced over mashed potatoes? I thought we were going to throw it down because one side of the potatoes was just not enough!! They were sooo creamy and delicious. \n\nChocolate peanut butter mousse - we got our dessert for free since when I made the reservation I indicated we were celebrating our anniversary. The dessert was a nice way to end the meal, although the chocolate on top was just a touch too rich for my taste.\n\nWith tip, our bill came to $162 which we did not think was bad at all for as much as we ordered. Unfortunately we didn't get to sit on the patio or enjoy the view at sunset, but I guess that means we'll have to go back which isn't a bad thing at all!", "type": "review", "business_id": "RRGRruNX4o6689EB48z3-A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "aFGLKBULCq-niW6xY17YrA", "review_id": "zfikxd-gcucaz2-l5Kz0Sw", "stars": 1, "date": "2012-08-31", "text": "HORRIBLE---no, NON-EXISTENT customer service! Which is a shame considering they have good pizza. I ordered 2 pizzas, wings, a 2 liter and extra ranch; an hour later, the delivery guy showed up with 1 pizza and wings. When I told him that the order was not complete, he just rolled his eyes and rudely informed me their online ordering was \"messed up\". Then shoved the pizza and wings at me without apologizing or offering to correct the mistake. Problem was, I had already been charged for the whole order so I was not about to take less than half of what I paid for. I told him to cancel the order and he turned and stomped away without another word. I immediately called the store to make sure I would be credited for my screwed up order that the delivery guy made no attempt to correct. I asked for the manager when they answered. The girl who answered said to someone in the background (without putting me on hold so I heard every word): \"Someone wants a manager. I guess that is you.\" The \"manager\" told her he didn't have time to talk to customers and proceeded to yell at her about all the work he had to do....uh- FYI buddy, customers are THE REASON YOU ARE IN BUSINESS so it would be a good idea to make time for them!!!! The poor girl came back to the phone after being totally berated by the manager, and I told her what had happened with my order. She offered to credit my card for the order. Only problem is, it takes 48 hours to process. So now I am out $40 for the next few days, I have waited over an hour and still have no dinner, and I was treated horribly by not one (delivery driver) but two (manager) Mama Mia employees. I told the girl on the phone that the delivery guy and manager should not treat customers so rudely, she apologetically agreed. I asked for the contact information of the owner; if this were my business, I would want someone to let me know if my employees were treating customers like dirt. She could not provide the contact information but offered to call someone named Frank and have him call me back to resolve the situation. I never received a call. Apparently, the \"customers are not important\" tone is set at the top in this business. There are lots of good pizza places in Phoenix, save yourself the hassle and the headache, order from somewhere that actually knows the meaning of customer service.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z_CkxSW81mOfphqk_20mcA", "review_id": "8EhYz0Ko2PR3sDzaCJWRzg", "stars": 5, "date": "2011-05-23", "text": "I just ordered the 'hamburger' then added my favorite toppings.\n\nAnother excellent burger, I have to say! Plenty of meat, freshly made - and hot off the grill!\n\nTop notch fries as well, overflowing from the cup they put it in. It takes about 5 - 10 minutes to get a great, fresh burger like this - but is very much worth the wait!", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "w1xiu0diVkPEyTH0ebmN6Q", "review_id": "iUVEVlJltJg-o-f0Dr0nnA", "stars": 1, "date": "2010-11-05", "text": "A friend was visiting from out of town and we decided we wanted a pampering experience. So, rather than go to my neighborhood mani/pedi place, we went over to old town scottsdale for lunch and a (we hoped) luxurious pedicure. This place looked very promising, and the lady at the front really talked them up, so we took the plunge. \n\nEverything seemed promising . . . we waited in a lovely outdoor area until they were ready for us. Then . . . disappointment. The pedicure was nothing I couldn't get for half the price, the massage chairs just vibrated, my feet were still a little rough afterward, and the paint job wasn't even that good. \n\nBasically, this was VERY overpriced for what was an incredibly unexceptional pedicure. We still enjoyed ourselves, but agreed we would never go back there.", "type": "review", "business_id": "R2Z-eHb0POFFVlFXlouLKA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6uiCxbxpNSt1bWYT2xwAsA", "review_id": "vUJMpMHjcwffl4tM4x2ITg", "stars": 2, "date": "2011-11-06", "text": "This pizza always tasted great but lately I feel like they have cheapened their ingredients. I realize its $5 pizza but it just tastes different to me now. If it weren't for the flavored crust I would not come back. \nBut the main reason I have not returned to Hungry Howie's is because the last time I wanted to place a pick up order I was turned down. I asked for a reason and was told that they received a very large company order and they were not taking regular orders at that moment. \nYou'd think they would be able to accommodate everyone even if a large order was placed.", "type": "review", "business_id": "KbN836a966ec6tEI0-wh7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XM6M-WWbCAeLy83jrABkcA", "review_id": "WiHBPGBL8eGSlSWArLgu9Q", "stars": 4, "date": "2009-03-27", "text": "Johnnie's Garbage dog is the work of the God's. You can't go wrong with any of the dog's here so when you can't make up your mind and everything looks so good - why not just have it all! Seriously try this one. \n\nBe forewarned it can be messy, so get a good grip because once you pick it up you won't be able to put it down.", "type": "review", "business_id": "FlZ5dTvuoPls8OuXfUAwqg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TU6stUlyKnf7z2RwdDGuzA", "review_id": "-ifi33JyW-GEX4lhGwdQQQ", "stars": 4, "date": "2012-09-04", "text": "Food- Amazing nachos! Best i've ever had. Plenty of toppings, well worth the 9 dollars\n\nService-The guy behind the counter is very nice and makes excellent suggestions and remembers me every time I come in and asks how his suggestion panned out!\n\nAmbiance-Nice little spot, nothing fancy", "type": "review", "business_id": "FFHzFdyWgM-OdMghuXMPEQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "_mo4LtybzPjvg-i6meN-tw", "review_id": "QGQKkZ3nHKjskPQUy_-LBg", "stars": 3, "date": "2007-12-02", "text": "Approaching the front of the building, I was instantly impressed with the theatrical lighting on the outside of the building, the foyer is large, ruby red and created a grand mood when I walked in. They even had large crystal chandeliers. \n\nThe theater itself is a nice size, not large, but sits on the medium scale. My seat for the Christmas production of the Nutcracker was on the third row, center and the view was nice. There didn't seem to be any room for live band or orchestra, but the sound system was full.", "type": "review", "business_id": "vF4d_jh3shJx8jU39AZdqg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "CtuoM6_Im-xBZMAqPKMQ8A", "review_id": "MssRanddUGkONS-WDywFtA", "stars": 5, "date": "2012-11-25", "text": "I went for both breakfast & dinner two days in a row. I got the commuter sandwich which was fabulous - didn't think such simple ingredients could blow my mind. I came back for dinner and got the kale & quiona salad - again - very simple, but amazing.\n\nI need to come back and get the pizza!", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uj79HTtyOdAdd_TaPcdxjA", "review_id": "c8-n8xuUnmmTguKIvR7RfA", "stars": 4, "date": "2008-03-02", "text": "All around great. Great food, great atmosphere and great location if you work in the downtown area.", "type": "review", "business_id": "9BH18avE46LlHMvJn67MaA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "9YlXXAy6YpADI7v42UwWCg", "review_id": "LoM4aVHd8zLjXdLuPuquag", "stars": 3, "date": "2010-08-19", "text": "Kimchi - 5 stars.\nOther side dishes - OK. there is no date on it so I really don't know how fresh they are. I went there couple times to get side dishes other than Kimchi. it was not as good as Paldo. I only go to Seoul Market for Kimchi now.", "type": "review", "business_id": "SsNGCAsXJpeUY3sS99XQpQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "yy8vNTtESId44OcGyaVnbw", "review_id": "8iBXk0QN83RDTshK--hXsg", "stars": 5, "date": "2007-04-19", "text": "Simply the best automotive repair place I've yet found in Phoenix. Honest, fair, and competent. I've taken three vehicles there for service over several years now and never been dissatisfied.", "type": "review", "business_id": "65ujBUIwQ3iGBjymj268IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IVb9YMopuGyt5jJ7rjwoqg", "review_id": "pyPccIqqotuaraLAPAMcsQ", "stars": 4, "date": "2010-05-21", "text": "Perfect place for b-day dinner with the family. Happy hour out on the patio, margaritas, sushi roll's, won ton's, pad thai. All very tasty, great prices, good service. Overall, I think this is one of my favorite local restaurants. Not a big fan of chains, however I don't really feel like it's in that category.", "type": "review", "business_id": "6qC2ATU4rVRRTKI-SScQOQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "36cqwYCD-JzwhoqCtI-dHA", "stars": 3, "date": "2011-01-25", "text": "On atmosphere alone I'd give Sapporo five stars. The restaurant offers a trendy, modern decor and its spacious enough to accommodate the vibe you're seeking, whether it's an intimate date, the bar scene, the sushi bar, a group hibachi table or a large party on the patio. And the servers are all gorgeous. Yes, this is the place \"to be seen\" in Scottsdale. \n\nFood was pretty good, although we just stuck with the happy hour menu. With half price wine and cheap rolls it was a reasonably priced meal. We had the tuna nigri, caterpillar roll, spicy salmon roll, veggie roll and the Kobe beef sliders. Tuna was decent, nothing amazing. The rolls were really small too. There was so much eel sauce on the caterpillar roll that when I went to pick up a piece it fell a part in a soggy mess into my soy sauce (which splashed onto my freshly dry-cleaned cream-colored silk blouse. Lovely.) Spicy salmon was standard--nothing special. I enjoyed the veggie roll the most; the biggest of what we ordered, it was crunchy and flavorful. Kobe beef sliders were delicious but, seriously, who messes up Kobe beef?\n\nThere is one thing that bothers me while dining at a sushi place: requesting more ginger & emphasizing A LOT more ginger and not receiving it (or receiving a puny pinch). I put in requests to two servers and, after waiting 10 minutes, was brought literally three pieces. Call me picky, but seriously, ginger is a freakin Japanese condiment. Show me the money! (or ginger, in this case). \n\nI do wish to return to try some hibachi. The aromas wafting around the place from the hot tables was intoxicating. Maybe they'll redeem themselves with more ginger.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lDUiT63wNEYbG39ijdQ7QA", "review_id": "DHw2RtwCwOa_1aNRElu8oA", "stars": 5, "date": "2009-06-30", "text": "2nd time I went to Grazie and both times it was excellent. The service is fast and attentive and the food great. The portions are huge so there is no problem to share the starter or the thin crust, wood-fired pizza ... So far I had the Dame Edna and the Roma pizza and both were very tasty. The wine collection is great and has some very interesting stuff which includes also less expensive wines. Haven't made it to the desert menu yet as both times there was no space left ...", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 2, "useful": 6, "cool": 5}, "user_id": "fPHLPrymsyb6WSFFKoMrTQ", "review_id": "vrjFUZ7II8Nnh-nHoLrqDQ", "stars": 5, "date": "2011-05-26", "text": "Review #800 \n\nI had to wait for a great place to feature for #800. \nEnter: Parent morning movies... in a theater that offers changing tables and dim lights in addition to their ultra nice seating, VIP rooms, 21+ beverages, good food service, incredibly friendly staff, and caramel popcorn. I'm in!! Oh, and did I mention it's a beautiful, clean theater, too?\n\nWHO: All mommies, daddies, and other care-givers\n\nWHAT: Go see a movie with your lil one!\n\nWHEN: Wednesday mornings and occasional featured nights. \n\nWHERE: Listings for participating Ultra Star theaters are here... http://www.ultrastarmovies.com/parent_movie_morning.asp\n\nHOW: Because Ultra Star theater is AWESOME.\n\nWHY: Because you deserve to get out and enjoy a movie... bonus that it's a movie with Early-Bird prices of $5.75!\n\nI wanna give a shout-out to the management, staff and... whoever thought of parent movie mornings to begin with. It was nice to get out of the house with my lil one, to do something that I used to take for granted when I wasn't a parent. haha And then to get there and have the theater so nicely set-up, complete with changing tables and dim lights... well that was amazing. All of the care-givers there were relaxed, happy and able to enjoy a movie without worrying about missing a part if their lil one fussed. We all had nothing but praises for your kid-friendly attitude and made plans to meet often. \n\nThank-you Ultra Star Cinema for a new, great experience. It's been a while since a place surprised me so much (in a good way)! \n\nSee ya there!", "type": "review", "business_id": "U6oNWTxVTnuuCL0BPRZCSg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "uA18GuF_ezOH6tXkrrykbw", "review_id": "_B2cGsY_V3GzWxVTjCTmEg", "stars": 3, "date": "2010-03-27", "text": "After all the raving I have heard about Matt's Big Breakfast and the long wait I was so excited to enjoy my food. The quality of the ingredients were high; however, the service was not so great. I felt that the waitresses were attempting to rush us out of the restaurant. I realize that it is a busy place, but their overt pushiness was not warranted. \n\nOverall I would not go back again. The food was made with great ingrediants, but it just didn't \"do it \" for me.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NOT62UqxXd_Y9xTfmKZl0g", "review_id": "uKlyjwZL324nMSKX3pXYqQ", "stars": 4, "date": "2011-10-19", "text": "I've tried 4-5 different reflexology places in the East Valley as well as numerous professional massage places (like Massage Envy which is much pricier and kind of hit and miss) and Relax Station is the place I'm sticking with. (See ya later Massage Envy!)\n\nIt looks unimpressive from the outside, but I like that it is very clean and unsketchy, and they have private rooms (some reflexology places I've been to put you in a huge room with like 10 other people which feels a little strange).\n\nThey've always done a great job, and the price is reasonable (30$/hour) compared to other places in the area (cheapest I've found is 28$ at other places with a coupon). They also give you a full bottle of water when you finish.\n\nThey also take walk-ins or reservations, and I've never had trouble getting in when I want to.\n\nRelax Station has definitely become MY massage place, I usually end up going every 3 or 4 weeks.", "type": "review", "business_id": "w-8M-VOHICthOgwpQL8UnA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "bTxF_dSqxvSO93nibrJJTg", "review_id": "sqtAlz4qop6JeQ42SHWLxQ", "stars": 1, "date": "2012-11-05", "text": "Went there first thing thing this morning. Ordered 2 simple sandwiches. Took over 35 minutes to make. 6 workers lounging around. Completely ignored. Totally disgusted with their service. Overpriced. Food okay and felt worthless when I left", "type": "review", "business_id": "YQz2fnfnL5eAWn1zOmKYnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "Gfv7fINVK_6_uLgR6z6gOQ", "stars": 3, "date": "2007-03-01", "text": "Food is ok. Pad Thai is sub-par. The happy hour is very cool baby suburban around this joint. \nIt's attached to Chandler Fashion Center, so it's busy pretty much all of the time. happy hour specials are just ok, specialty drinks are pretty expensive with little taste and even less alcohol.\nplus, i loathe happy hours that you can only enjoy in the \"bar\" area. the patio is the spot for HH, and it's LOUD. not just with vapid chatter, but with the constant scraping of meatl chairs on the concrete. it sounds like i'm being picky, but it's one of those sounds that makes your skin crawl and just kills your mood instantly - over and over and over.\nanyway, if you're a big time up-and-comer and want everyone to know, this is the place for you.", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zS4tNnZaHqZZamzo0mPExg", "review_id": "ohdh6e92lPDtIxXV6gaS1Q", "stars": 5, "date": "2012-11-25", "text": "I have been going here for years. I love the \"Hong Kong\" style pan fried crispy noodles!", "type": "review", "business_id": "ykfTh6HI219NoMsWBxulxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PmnXHiOiRqgjzEtYu4_46w", "review_id": "0qrQDlMuDX2Np93p7s0pEw", "stars": 4, "date": "2012-06-28", "text": "This is hip and trendy eating establishment fills up quickly around lunch time. I did not like the fact that the hostess attempted to seat my companion and I all the way in the back of the restaurant, passing up several unserved tables. Nope, not on my watch. We split the fish sandwich and a chicken sandwich. I really really liked the fish sandwich. The flavors were layered and intense. The chopped kale salad was a nice alternative to a traditional garden salad. The chicken sandwich was a little bland. Our waitress was on top of it, I think her name was Lisa. I was not loving the flies buzzing around while we ate, but what can ya do.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r4mNCiXIfuMdrzwQcIKUJA", "review_id": "1FIHZBjCyjkj5YU5FFeglQ", "stars": 5, "date": "2011-07-13", "text": "I've been a patient of Dr Lienau's since I was six years old! I usually don't care who my primary care physician is, but when it comes to my dentist, there's no way in heck I would switch. I even referred a co-worker to him recently! \n\nHe's very honest, upfront, and has such a great support staff. Colleen is the NICEST receptionist! One of the hygienists has been there for years (I forgot her name!!) and is also a very friendly woman.\n\nI definitely recommend Dr Lienau!", "type": "review", "business_id": "NcF7tZHe3p5wgQCKfHzhSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "kA7gZoPRQ33rD2T6_Uoh3A", "review_id": "DM_u9sH85Dr1pm2aJ9yBjg", "stars": 5, "date": "2010-08-16", "text": "dr. matsumoto and her team are the best! she came recommended to me by a friend who also goes there. they truly care about the WHOLE child and not just their medical care. we have seen 3 of the pediatricians in the office and they have all been great. we developed a special bond with Dr. Miller during a very lengthy health issue with my son. it's a 45 minute drive for us now that we've moved, but we still make the drive to see dr. miller because we trust her to make the right decisions and offer the best advice for my child's health.", "type": "review", "business_id": "uWAmlaH9xJbE3xyv3P8DWQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "tNpfNLjxS34wmsroFemoNg", "review_id": "Gtj1O8LDMztsP15kViUnIg", "stars": 3, "date": "2011-05-21", "text": "It is important to point out that Blue Adobe Grill is not a Mexican restaurant, it is a New Mexican restaurant. While that may seem to be an unnecessary clarification, it is actually fairly important to keep in mind as you visit. \n\nFor a New Mexican joint, it is pretty dang good and true to the region, but food a sit-down Mexican joint it would be disappointing. In order to maintain full disclosure, it has been a couple of years since I went here last, but it has been around for years so I can't imagine much has changed. Overall I would recommend it to people who don't have expectations of a certain type of food. It's good but nothing memorable.", "type": "review", "business_id": "qNoNkF1yJctEs3t40VkX4w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xeNYMmYXZSAXNJE_axDyBw", "review_id": "Dcc0hxwbfn2svzsUXTNZpw", "stars": 4, "date": "2009-06-15", "text": "Totally fantastic. \n\nI love to stop by here whenever I am in Phoenix for their pork sandwich -- which is great. I especially like the barbecue sauce that they use. \n\nI hear on good authority that many other menu items are good, but I can't tear myself away from the the pulled pork sandwich. They also do a really tasty potato salad, sweet potato pie, and cobbler.", "type": "review", "business_id": "q1nDSpmV-FdTBNj6UuZvTg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "jTwlhytPSEN76gmiF8tgfw", "review_id": "YLmFXPEWXvC3XBHCtwjDUQ", "stars": 5, "date": "2013-01-03", "text": "my first time here at blue 32 was great. i came for happy hour I had the chicken wings and a chambord margarita both are fantastic! service was friendly and fast.", "type": "review", "business_id": "14K90G-hbfk795NY7cKxMA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XmaKkzFR9E1UqH35IhP9Dw", "review_id": "pa-ZaltPxL6OYf6UDSwwqQ", "stars": 4, "date": "2011-02-19", "text": "Like I said with a double double you never go wrong", "type": "review", "business_id": "3Q7vtF_cdHGyp2JOlKcu-Q"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "XmpqbfSu9X7mjwJGUXTrAQ", "review_id": "6xx-aJ58nc7s876ztYPvOw", "stars": 2, "date": "2009-04-10", "text": "If you like Houston's, this is like Houston's creepy cousin that isn't quite right. It's Bizzaro Houstons. The food is just gross. I didn't like anything about it. You do get a TON of food...but none of it is good. I got the pork tenderloin...it was gross. I ended up sending the meat back and just ate the mashed potatoes with the sauce...that's all I could stomach. (The prices are about the same as Houston's, however.) I couldn't believe how packed this place was...no one at our table liked their food. A few of my coworkers went there as well and there were no good comments about it.", "type": "review", "business_id": "7m93HSBV1UrdHZBJwdUVJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "c7cRAAGVOovZIijQK7lwwg", "review_id": "7vmVBMt4Z02pJx_9WhLAQw", "stars": 5, "date": "2012-10-21", "text": "Best selection of raw and dehydrated food around. Very helpful personnel, friendly. Will shop here each time I vacation here with my dog.", "type": "review", "business_id": "JGaszk_Jm-iyxiIVPYdobg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gh2OwESXrgVyufGz_NPHxw", "review_id": "99NlDtaGOnbEy8_lFOO8ZA", "stars": 4, "date": "2012-02-10", "text": "I wish there was a half star, because truly I would give it 3.5. The food is good. The ambiance is good, but the service...meh.\n\nThe reason I go...The beet salad. THE BEST in the Valley I have tasted. The pistachios and arugula with goat cheese? Diiiiiiivine. But, truth be told, if they took it off the menu, I would never come back. Still. xoxo", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0CIP-nma5yM9HY1OOBS2yA", "review_id": "VP1JJW8VFbPVTLD5NXSxDA", "stars": 5, "date": "2011-06-21", "text": "We'll take this over Godiva any day! The staff is always so friendly and they're always nice enough to give my kids (all 4) a sample, too. Nothing compares to their chocolates, especially the the vanilla milk chocolate, Brown Sugar Milk Chocolate and Coconut Milk Chocolate! Don't forget the lollipops that last FOREVER for the kids!! Just make sure you have a few wipes on hand!", "type": "review", "business_id": "ng4_UnnYPqesby9C0WVz2Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "MUHoBFzwRoXpCpgYSN8KRA", "review_id": "CaOCxourQtrV33gm1cXoqQ", "stars": 5, "date": "2008-03-18", "text": "It's a restaurant in a gas station, but it merits five stars b/c it has glass bottles of soda, just like you find in Mexico. Good food too. It's actually not nearly as bad inside as you'd think, it's pretty well set apart from the gas station sales, so I wouldn't mind eating there. They have a few tables set up inside. I usually get takeout though (they also deliver). \n\nMANZANA LIFT ROCKS!!! I'm also going to be drinking the Sprite in the bottle, (cane sugar ftw) and the horchata. I don't care about Chipotle opening near work anymore, I've found a new Mexican fix for lunch. What a happy day.", "type": "review", "business_id": "uPDTnuR-sOi47blHH943lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lG6Q5OvamVHUSk9MPE6Q4A", "review_id": "gL2lRXFWSI34OAPM05n2rQ", "stars": 5, "date": "2012-11-13", "text": "I used to work here back when it was a Harkins. It's way better now. Comfortable, friendly, laid-back. Kind of decorated in a golden age of hollywood style. I dig it.", "type": "review", "business_id": "kpzzEpXcHo9yzhUcz14chg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Q_LkJOgIvNHq4v6lEHh_tw", "review_id": "cF4akO-bQ7lbM_H_1KzJKg", "stars": 5, "date": "2011-04-29", "text": "I stumbled across this restaurant several years ago after becoming frustrated with the generally 2 hour wait, (no matter what day) at a DIFFERENT pizza restaurant in Heritage square, downtown Phoenix. Although the pizza was terrific at that \"other\" restaurant in Heritage square, I had a pretty UNBELIEVABLE experience....I was with a date, we waited the 2+ hours, had a really good dinner, salad, an appetizer and pizza. We decided we wanted another pizza and when we asked our server for another, we were told that we could not because there was a line of people waiting to get in. I was amazed. We left knowing we would NEVER go back. I heard about La Piazza al Forno not long after that experience.....I truly believe things happen for a reason. The pizza was even better and has been consistant ever since. The service was very warm and friendly, literally like a family welcoming me into their home. I learned that night, that it was one big family run business. Oh and by the way, the best...did I say BEST pizza that I not only have had in AZ, but NY has nothing over them! Icing on the cake, the prices are VERY reasonable! I GOTTA have a fix every 10 days! For the longest time I didn't want to tell anyone about my secret, however, they DESERVE to be known! AWESOME!!!", "type": "review", "business_id": "jgbEZzERVI4yvAAtXWW93A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "SiFloh5xminiR6GopZINRA", "review_id": "i_a8Q5taAq2_s2bXmv4qFg", "stars": 5, "date": "2011-12-08", "text": "Wow! This place is amazing. So amazing I went there twice in a week. I will start with my dinner.\n\nThe ambiance was great. The place has a nice warm feeling to it and since it was cold outside it was really nice. They had a large fireplace inside and after dinner we stayed for the great crowd that showed up and went outside. It was pretty chilly but I didn't even notice as the fire pit was big enough to warm everyone around it. They also had ample heat lamps. \n\nThe food was fantastic. I had the tomato soup with the grilled cheese crouton in it and it warmed me up and prepped me for my main meal. I had the burger and tender belly bacon. This was an amazing treat for my taste buds. The bacon was not like any bacon I have had on a burger. It was a perfect complement for each other. I wanted another one when I was done but couldn't possibly eat anymore. \n\nThe drinks were great. They have an amazing wine selection. The wines we were drinking were affordable and it looks like they really spent some time picking the right wines to carry. They have some really nice wines that rival the selection of some of the really nice wine bars in Scottsdale as well. My friends said that the mixed drinks were really well made and they were very happy with how they turned out. They have just about everything you could want for mixed drinks.\n\nService was amazing as well. They were really attentive and the owner stopped by to talk to our table. \n\nLunch\n\nThe lunch was just as good as the dinner. I had a shrimp BLT that rivals anything in AZ. I was glad to see that had a variety of Dr. Pepper/Mr. Pibb on tap. It was really relaxing to sit there at lunch and enjoy the crowd. The service was excellent.\n\nOverall I highly recommend Vintage 95 for lunch or dinner. It is a great place for a date at night and you can enjoy the great crowd afterwards with great conversation and ambiance to fit.", "type": "review", "business_id": "FCcFT610nQBVcRdY-devQA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "RoOwAUD8CNZ2uFnR8qC2-A", "review_id": "pwMtFMyZRYAoA5mC70U5NQ", "stars": 4, "date": "2009-12-21", "text": "My take on Mill street is that it's your classic college-town main strip area with a couple bars with big TV's, a burrito place, a burger place, the quintessential late night grease-craving joint and a couple \"edgy\" \"boutiques\" selling overpriced Asian imports to tourists that will bite (guilty), and college students trying to reinvent themselves with \"hippie-chic,\" whatever the f that is. (Um, also guilty...)\n\nBut I way digress! Streets like this also always have a couple more decorous dining establishments for when the parental units are in town -- which is exactly what I happen to have stumbled upon in this place, and perfect because if there's anything I love as much as edgy \"hippie chic,\" it's decorum.\n\nI treated myself to my one sit-down meal during a week of travel/ being late for everything/ conference bagged lunches, and can't think of much more to have asked for than sitting outside on their little street-side patio with my glass of ros\u00e9 and my truffle oil pizza. Granted I've had better ros\u00e9 and more perceptive service, but man, truffle oil. Self indulgent afternoon success.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 2, "useful": 0, "cool": 1}, "user_id": "iz0C-p-48pqBfgA407WnKw", "review_id": "gWprFxdQ1JvnmkIIxSn-JA", "stars": 5, "date": "2012-09-27", "text": "Mexican places like this need to be judged based on consistency - here's what I mean:\n\n42% of the time I've been hungover\n30% of the time I've been drunk\n22% of the time I've been sober\n6% of the time (other)\n\nFood tastes great no matter what, and it's right down the street.", "type": "review", "business_id": "h7hr0v3E1ulU2sXNItD5UQ"} +{"votes": {"funny": 8, "useful": 6, "cool": 9}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "PCRfipf_sm_cRAMb8LlqfA", "stars": 4, "date": "2008-03-07", "text": "Lame name. Not so lame sandwiches. \n\nI like it spicy. Interpret that as you wish, but when it comes down to it -- it takes a lot more than spicy pickles to impress me - say gigantic and decadent choco chip cookies. Don't let the gimmicky name fool you, however, these are some serious sandwiches at Spicy Pickle, a franchise with only one location in the Valley in Chandler. I found the quality of food and scope of sandwiches offered to be comparable to Dilly's Deli. \n\nI had a lunch earlier this week catered from this place, and since they catered half-sized portions I was able to try two: the Santa Cruz sub and wiseguy sub.\n\nI found the wiseguy (with italian meats and cheeses) sub to be pretty tasty, but I prefer my subs to not swim in oil and vinegar. The Santa Cruz sub was pretty good though (and my favorite of the two) - with its ingredients of Mesquite turkey, lettuce, tomatoes, avocado, corn relish, cheddar and chipotle mayo.\n\nThe highlight of the lunch were these large thick discs that looked and tasted like chocolate chip cookies. Crispy on the edges and moist and soft in the middle. Seriously, one of the better cookies I have had in a long time.\n\nBTW, the pickles are sprinkled with some kind of chili powder and are ok, perhaps they're awesome -- I don't know, I'm not a big pickle fan.", "type": "review", "business_id": "azBHKHqif0NXO3xcALo5VQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iWh7h24DpKWFtKZGl81kxg", "review_id": "Pj03zKvP-Exrlox89s_QcA", "stars": 5, "date": "2012-03-27", "text": "Along with pretty much everyone else who has left a review for this place, I LOVE THIS PLACE. I grew up in the area and one night my dad and brother wanted to check it out (my brother is a Yelp addict and saw it had amazing reviews). I was skeptical since, driving past, it is your typical \"hole in the wall\" kind of place, but I was not disappointed at ALL. The carne asada burrito is amazing, even the salad it comes with is great. I think my favorite thing aside from that would have to be the aguas frescas, particularly the orange one...SO good. You probably will not regret ordering a single thing from this menu. I've gone back countless times, one time bringing one of my friends who was convinced that anywhere a blonde gringa tried to take her for Mexican food would be craptastic, but she loved it too.", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 4, "useful": 10, "cool": 3}, "user_id": "jdeNI5TTTuM6mj3HTgstRA", "review_id": "qcf2bIRTGrkCOxeud5xMaw", "stars": 1, "date": "2011-04-18", "text": "I wouldn't write a review on a franchise unless it pissed me off. I prefer Papa John's pizza to Dominos or Pizza Hut (by far), but there are some major service issues that have made my five ordering experiences pretty irritating.\n\nThey can't find my house. It's not hard to find, I swear. It's a piece of cake, and a stone's throw from a major crossroad. They had once taken two hours to deliver a pizza, saying they tried to call me (they didn't), only to return to the store and bring it back once I called. Naturally, I was delivered a lukewarm pizza, but in the nicest way possible was told that it was *my* mistake. Unacceptable, in the age of online ordering and GPS systems in our phones, there is no excuse for getting lost in what is essentially a three mile drive in a straight line. \n\nWithout complaining, I had received a coupon for a free large pizza. Apology accepted. Upon visiting the store, I got to keep the card *after* ordering because they gave me the wrong toppings. Suckers.\n\nAlso, they always take longer than the ETA, even in the middle of a weekday. Even now, I am waiting 70 minutes for a 30-40 minute order, and when I had called 15 minutes ago, was told it was on its way, but that construction was holding it up. Yes, there is construction, but you have taken this long in the past without it. Also, construction would not explain why it takes nearly an hour to produce one large pizza. I even tip nicely.\n\nI enjoy Papa John's pizza, but unless my complaints are addressed, I will never order from this location again. I will encourage my friends to follow suit. RAWR.", "type": "review", "business_id": "R7SVavAsjzN3wy825PiOEg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "ZW6J3hLaTgy7ygZ6V0ZXug", "review_id": "RvYjVXNy8N7HFpUDysZVww", "stars": 2, "date": "2012-05-27", "text": "Was dragged back here for the first time in a few years. It still sucks. On a Friday night, it's like 5:1 dude to girl ratio. \n\nMill Cue Club is probably fine during the day if you actually want to shoot pool. But if you want to see America's future losers, stop in here after sundown.", "type": "review", "business_id": "G7Q0Tm2XBI5rqd5wyUc0jg"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "k_WgOAhe6QWolkI2NLdnmg", "review_id": "gX0gfevySyXnndvGY3Trnw", "stars": 4, "date": "2008-01-07", "text": "Every once in a while, you just need to enjoy good southern cooking.\n\nI was taken to Lo-lo's while visiting Phoenix.\n\nThe Sweet Tea is served in a mason jar and comes with a diabetic attack. I had the Betty Bop - fried chicken breast and waffle. The waffle was really the stand out portion of the meal, but the two did work together.\n\nYou don't have to get the chicken and waffle combo. But come on, don't be like that.\n\nWe went Friday before lunch, and we were sitting and eating in 10 minutes, but from the looks of the other reviews, that isn't normal.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-cms2ELbzY2rSyGCVcioUQ", "review_id": "2nbE44fzQoLhcdLbYNc2RA", "stars": 4, "date": "2012-09-12", "text": "Take someone that matters here and you won't be sorry. The service is some of the best in the world, and the food is stunning. The menu changes once or twice a year, and if you can't wrangle this place on an expense account, it is THE place to impress a client. Destined for a Michelin star....", "type": "review", "business_id": "T9iBSa4pxYXP129pHlt5Sg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "frLdxQKCtofva9b0dA8Eqg", "review_id": "HceVI06uhbsxK8FbQkp8iA", "stars": 5, "date": "2009-01-17", "text": "By now you've heard the adventures at the Rustler's Roost ( http://www.yelp.com/biz/rustlers-rooste-phoenix#hrid:_gYib8eA4hDfylSs17Zc_g ). But my adventures in Phoenix didn't end there. \n\nMy BGF had been hounding me for days to find some great \"Q.\" He was convinced that AZ would have great \"Q\" on every corner. Now referring back to the link above, I admit that I had a wee hangover at the time. Anyway, I'll press on. We chose this place because BGF thought that this would be the spot. \n\nI ordered the roast garlic chicken and realized with my first bite that I had died (most likely alcohol poisoning from the night before) and was now in heaven. This was the best freakin chicken that I ever tasted. Of course I'm in heaven and BGF is grousing about the \"Q\" not being any good. \n\nNow I've listened to this all week from him. \n\n- This Q is too Spicy \n- This Q is too wet \n- This Q won't fall off the bone \n- This Q doesn't have the right flavor. \n\nI'll admit it, I snapped. (And I didn't forgive him for about 2 weeks). I went up one side and down the other. If you don't like the gosh darn (loosely translated) Q in AZ, the quit ordering the Blankity Blank (translation again) stuff. Needless to say, I got quite the look from BGF and boss. Boss was actually laughing at us. \n\nAnyway, I took pity on my BGF and shared some of my chicken, and he fell in love (I don't know why, it wasn't a rooster - oops, I digress). Anyway, it was decided then and there, this is the best chicken around, hands down.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "OsYh3jArm6fgozczE85ZeQ", "review_id": "qRmaL_bsTKWMYyPMpyly8Q", "stars": 4, "date": "2008-11-20", "text": "I gave an extra star just because it is so fun to hang out here. The waitresses are always cute and friendly and not afraid to pour your drink. Alot of my friends are in love with the food here, I have to disagree. I think good but not great. Still this place gets the nod from me just because it is so fun to hang out. Chances are you will meet some new friends there too.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nUyME-PXSm8O9CBQSYOSPw", "review_id": "F-50XrxDrnADFJaBisp9TA", "stars": 4, "date": "2012-04-23", "text": "We got the Gyro with fries and Spanikopita platter. Decent non greasy gyro and the fries were lightly seasoned. First time having spanikopita, but was pretty good. We'll be back to try some other options.", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "iuEQTk_iJTQ37Wq_TDOHhA", "stars": 5, "date": "2008-07-10", "text": "I love this restaurant. I really enjoy the reverse happy hour from 10pm-12am after I see a movie. The appetizers are 1/2 price and they have some really good drink specials- better if you are a lady. l like sitting out of the patio and relaxing.\n\nThe sushi rolls are good. So are the avocado eggrolls.\n\nBefore I was a vegetarian the only thing I would order was the macademia crusted chicken with mashed potatoes and a creamy soy sauce.", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "UbfZINSTQyg_pbqwhkbAEQ", "stars": 3, "date": "2007-08-02", "text": "The venue, which is close to campus, usually gets all the big shows from Hot Hot Heat to Incubus to Mickey Avalon to Brand New. The great thing about the venue is that you can stand almost anywhere and still be able to see the band. There's a big bar inside with friendly bartenders, although the well drinks can be a little pricey. There's usually a hot dog vendor outside and most of the bands performing can be found walking around before and/or after their sets, making it easy to mingle. The downside about the Marquee is that parking sucks. There's not a ton of parking in the club's lot and the nearby lots usually fill up fast so be prepared to trek down Mill to get to and from your car if you don't arrive early.", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cg4em4uXe5ab5qH7pB01gg", "review_id": "6W3KPPnYkYEcIb27CNq-yA", "stars": 3, "date": "2010-04-21", "text": "First time here, it's late night and I wanted something lite and healthy.. \n\nThe place is open very late, they had lots of options and the food was perfect.\n\nWhat a beautiful place inside, simple yet elegant. Oh, the service was great too......\n\nGo for a late night drink with a date and they'll be impressed.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "7fxHyk4gcfFePv4z7YvgZw", "review_id": "2QMr5vXCJbjfJ8Hk2AqPtQ", "stars": 1, "date": "2011-03-13", "text": "It is what you would expect from any themed place called \"Heart Attack Grill\". Mirrors on the bottom part of the bar so you can see up the skimpy outfits the \"nurses\" wear at the bar. Van in the drive through section is painted to look like an Ambulance. Hamburgers are named after cardiac events.\n\nThe food was bad, greasy unlimited fries and a giant hamburger that tasted as if they mixed in filler of some kind we had never experienced before.\n\nIf you plan on going, enjoy the experience cause the food will not be something you would head back for again.", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "sZp_7b83BDTWYeu5Qx0wFg", "review_id": "93I975BBPMLfrvngMr6fPg", "stars": 4, "date": "2009-08-01", "text": "Was there last night and had a good time. I learned several things: 1. Charlie's has a cover charge of $3 if you get there after a certain time, I believe this starts at midnight or 1 am. I got there after 1 am and the place was packed, absolutely packed. \n2. Yes, in Phoenix, some bars can stay open until 4 am (gasp!). Yes, I know, it blew me away as well. \n3. The little Mexican food place attached to Charlie's serves really good food late night, but now I understand why they can't sell water or soda through the inside window to Charlie's customers. That's because Charlie's wants to charge patrons $2.50 for a bottle of water than the Mexican restaurant sells for $1 outside. \nOther than that, I had a good time.", "type": "review", "business_id": "eFK2QePKvAowH-uX-0V4hQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GAW_mbLDbIoZQ0V0ZhWK8Q", "review_id": "GJDmG3DzExVEv5Q23iEECA", "stars": 3, "date": "2007-11-27", "text": "My wife and i stayed there for our anniversary and had a great time. little dissappointed in the cottage we stayed in. i know the place is old but you have to update and remodel every once in awhile (century). I want to give 4 stars but i also think that the price was a little steep for a summer rate. Now, i know that i should expect to pay alot for the biltmore but i am not the ritzy type of person. I am sure my wife would give it 5 stars.", "type": "review", "business_id": "5Feaj6aixO_QxKFnkHf3xg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qJh9SHpaO8H7ltyuJGoldw", "review_id": "BUUiVcfjIQUTC3lA34D78g", "stars": 5, "date": "2012-05-29", "text": "Great variety. Great price! Beats other buffets in the East Valley.", "type": "review", "business_id": "A4pL6j3e6JAtblmCUF2GZA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_TfzMPtfO1LZRHHedDsoVw", "review_id": "4_AXblDHrDLpt4WEwpkaeg", "stars": 5, "date": "2010-05-02", "text": "We just tried this out this afternoon following lunch at Pita Jungle next door. It's a self-service yogurt shop where you pay by the ounce once you've finished your creation. \n\nThe offerings included the standard vanilla and chocolate, but also less traditional offerings like Irish Mint and Red Velvet were also available. They offer a taste of any of the products, and you can mix multiple types of yogurts in your container. They also offer a variety of standard yogurt shop toppings for your creation.\n\nI had a combination of the Irish Mint and Latte yogurts, with a couple of toppings. The yogurt itself was smooth, creamy and well flavored.\n\nWe'll likely be dropping by here in the future.", "type": "review", "business_id": "iBYvoQ4lj35DYL24fYcmGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TnJkGewuDhD0Dr6e5f58lQ", "review_id": "1bCCHIy_JlbeTpexKElkTg", "stars": 4, "date": "2012-05-25", "text": "Such good sandwiches! The meat is cut fresh just as your Sammy is made. Desserts to die for. Plus the family that runs this joint is cute! Yummm!", "type": "review", "business_id": "W7UtoDde1ekOmsEeMl8XCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "1EThs7Vakny7bGBRQk6x2w", "review_id": "p-CVW-y62dvnocZU3FEdrw", "stars": 5, "date": "2012-10-17", "text": "Great place! I love that they feature wines from \"the little guys.\" You won't find most of what they feature at any Total Wine or Bevmo. Small business supporting small business... totally awesome in my eyes! The staff is knowledgeable and ooooh Chef Sarah - your food pairings with the wine in the wine 101 course were AMAZING! Katie, the sommelier, is fun and she knows her stuff, plus it is clear that she loves to share her knowledge of wine with everyone. I'll be back for sure!", "type": "review", "business_id": "Our6bzte5W1wlIeOu9luug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rzDxO-luZGAT9Qx8Dq_3ug", "review_id": "aWTMImGTPRqllqIJlCwWUw", "stars": 5, "date": "2012-07-23", "text": "I'd give it about a 4.5, but I like rounding up for local businesses! The owner has been in there every time I've shown up, and the food comes out hot. The prices are spot on what you'd expect to pay, and so is the quality. I'm not from Chicago, and have only been there a couple times, so I wouldn't be able to speak to its authenticity - but I can speak to its taste and the great customer service the crew provides every time. If you're in the neighborhood and thinking about a hot dog, burger, fried zuccini, italian beef sandwich, or chicken burger, skip Sonic and DQ - they can't touch this place with a 15-yard drive-thru window.", "type": "review", "business_id": "EqZl_lQdB3GVFHCoD7sOyg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "SgjR6pUm_mpmX0f-XH1Ztw", "review_id": "ja8Up9t41UlbF2eXNSuabA", "stars": 4, "date": "2010-07-01", "text": "We just moved to town and were looking for a place exactly like this. This bar is not posh, it is not shiny or pretty, it doesn't have a huge menu... and that is all fine by me. \n\nWhat it does have is a friendly wait staff, plenty of seating, good/ok live music, and a great bar selection. \n\nThe mix of people that was there the night we stopped in was entertaining... I can't really comment on that, as I still think everyone here in Phoenix is crazy... lol. \n\nEither way, it seems to have that good old suburban bar feel to it, which is nice and cozy when you don't feel like dolling yourself up and having a fancy night out.", "type": "review", "business_id": "noLH_u4MJzfXYYHqcByjnA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "qLCpuCWCyPb4G2vN-WZz-Q", "review_id": "0RzEWVxtgqbgV_yhLJPcSw", "stars": 4, "date": "2011-01-12", "text": "So excited to have another Royal back in my life! I worked in downtown Phoenix before, and I was sad to see Royal leave back in the day. I never made it to Royal at the Market - sadly I reverted back to corporate America coffee after Royal left downtown. \n\nLuckily, Biltmore Fashion Park has been really pushing the opening of this coffee bar at the Red Door spa. After waiting for it to open, I finally went down there today. Sure, they are just opening, so there's some kinks. Today they didn't have a ton of syrup selections, including my favorite almond rocca. However, they're getting them all in very soon! AND they offer almond milk - how awesome! They've got three benches inside too. Although it's pretty small, and awkwardly has an elevator leading up to the Red Door spa, I think it's a pretty cool space. Can't wait till they get up and running and bring some decent coffee to the Biltmore. Great hours too - open early! \n\n***If you've never had Royal before, please go try it.*** I think their lattes have a very unique flavor, something I haven't found in any other coffee joint. I can't believe I didn't drive to the Market location before this - but now I have something closer!\n\nSome tips - park by the Capital Grill and the big red door (duh). Luckily they have a Royal at the Biltmore sign on the window, or else I might have missed it. It'd be awesome to nab a 20 minute spot outside Mojo Yogurt too. They have a token validation machine, so don't be afraid to park in the token lot!", "type": "review", "business_id": "6nH0DLfofTytTeZJSkprgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "nfyKH18jt9UHkmuwBfkI5w", "stars": 4, "date": "2008-06-22", "text": "Me and my husband love to shop Nordstrom Rack on the weekends! While we usually go back during the week to make our purchases when the lines aren't so long the eye candy is great on the weekends. \n\nIf you look hard enough you can find some great bargains on shoes and men's clothing. The hunt is half the fun of it.", "type": "review", "business_id": "WowrRUKvjiLX4zT12xU_yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fCDsJINnhFsnJNHGp0nSsA", "review_id": "Nxq4fCkFYcFQ67P-5pqSvA", "stars": 5, "date": "2009-01-29", "text": "Best muffler shop in town. There are VERY few shops that I trust, and Mighty Muffler is one of them. Greg has worked on multiple cars and has always done a great job. If there is ever any issues he takes care of the problem, no questions asked.", "type": "review", "business_id": "6FECmOLQSICW1ykyBbEHng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xrPrQDtiZ4rTJq_EFYqumg", "review_id": "-xQPFjNELr0qMj6JD9ZYmA", "stars": 5, "date": "2012-01-18", "text": "Aiello's is my favorite Italian spot in the Valley. In fact, I day dream about the Mushroom Ravioli Special - you can taste the love in this dish. Great ambiance and a wonderful experience. The staff are always attentive and professional. The Owner makes a stop or two to make sure you're having a good time and they even let chance decide who pays for dinner, you or the house!\n\nHelpful hint: Try no to get stuffed on the tasty bread and hot peppers served before the entree, you're going to want to finish it!", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tFyQbNbBQEyEc9oCr1pJUg", "review_id": "6TFbTd5hSr5rgoDx8C2GhA", "stars": 2, "date": "2012-09-23", "text": "Good price for the location;however it's definitely outdated and appliances are extremely old.. Maintenance people fix things quick but some fixes are sub par.. My neighbor and good friend continue to have water intrusion in there home when it rains hard. They have to have their carpet padding replaced multiple times because of water coming in from under the building. I work for a property management company myself and this half fixed issue is something that I'm not impressed with. \n\nAlso, every year they increase rent, they don't work with you on price and don't seem to care about good paying tenants (Like myself). They are too corporate and only care about the money and not the longevity of good on time paying tenancy.. The only reasons I stay is because the location and price is good, but also because I hate moving around. I anticipate that rent will continue to go up and well over what other nearing apartments properties have to offer. This would mean that I probably have only another year or two left before rents over $1000 for a two bedroom... \n\nOne good thing is that the staff is nice and friendly but supposedly Equity Residential (managing/owning company) doesn't give their property managers enough power to work with their tenants. It's unfortunate really because I would imagine that companies would rather have long term on time paying tenants and negotiate on rental amounts and try to weed out the consistent late or non paying tenants. \n\nKeep in mind that no utilities are included..\n\nHope to see some change in Equity Residential but because of how corporate they are, I highly don't think that this will happen..", "type": "review", "business_id": "e_ePFIA4oX2K723YOLtZFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F9P--h4g6gA-C_nO7OPUnQ", "review_id": "4MBBnqQRWLrkthjfsvHH2w", "stars": 3, "date": "2011-06-13", "text": "Ok..seriously just ok. Green salsa was horribly sweet and gel like. It had no taste of tomatillo in it. The tacos were stuffed to the gills but average. The chimis tasted reheated in the microwave and oddly like sopapillas. Over all ok food but a bit pricy for ok food.", "type": "review", "business_id": "OVFcGSh4Wu-ss8Iq_fIC-Q"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "UC9eZI67PzxRiUwODAxOEw", "stars": 2, "date": "2011-11-18", "text": "Nothing like Capriotti's in other cities. They don't have the same menu offerings as east coast locations, and even though I ate here when not busy it took a very long time for the food to arrive. Parking is frustrating too because of the adjacent Starbucks patrons occupying so many spots. Very poor chips selection as well - only two choices. Really? 2 chips?", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ihzvFU9XCEZ7B2CQoTaORw", "review_id": "SePrR75B2rFzKG7qW4ooaQ", "stars": 4, "date": "2012-08-21", "text": "One of the best croissants in town, if not #1. I base my rating solely on this and the consistently friendly service.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqU1PB0XWjcr3sUyZZGaWQ", "review_id": "Jy-ufT32E7p_Utvr7Q72YA", "stars": 5, "date": "2010-07-17", "text": "I've been here a couple of times. The first time was on first fridays. I expected it to be packed, but I was able to walk right in and be seated. They had a table reserved and they must not have shown, so we lucked out. I got the Sante Fe, a roast beef panini, and it was great. They had some good beers on tap too. Its a cool little funky place to grab a good sandwhich. The second time I came here it was after a concert. There was some horrible band playing that I wish would have shut up so I could hear the people in front of me without having to feel sharp pains in my ear, but the meal was still good and I liked it. Any place that is open late close to downtown is perfect, especially since the kitchen doesn't close until 12:30", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BxLlwLX9iT1A59F9axrjSw", "review_id": "vkoWyRfcj7OsXEYbovXTMw", "stars": 4, "date": "2012-10-20", "text": "Great dive bar and great bartenders. Jester room is a must.", "type": "review", "business_id": "9SKdOoDHcFoxK5ZtsgHJoA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "EhKX4TIsVSpx7U5-iOQh7g", "review_id": "xDqo8BsdQGuELV1jAe4LFg", "stars": 5, "date": "2010-09-12", "text": "I still want to live here. It's quite possibly the only vegan restaurant I could see myself flying here to eat at then going home. \n\nI've tried a number of things, and have come to the conclusion that this is the combination that will satisfy me each time: \n\nGreen Burger with thyme fries and the Cookies n Cream Tsoynami. \n\nTheir Green Burger trumps The Plant Cafe and Roam in SF--the only two places I've been to that somewhat mimic it (at least in color).", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "5wN78N4K0a39C-uPzPmxDw", "review_id": "4JFWu2jASp-rsTVCNZD-Sg", "stars": 4, "date": "2008-04-15", "text": "I love love love Angel Sweet, I just wish it was not in Chandler! It's a little bit pricier than most gelato shops I have been to in Phoenix, but not a big deal. They have a nice variety of choices, but my favorite by far is brownie batter, but they only have it every once in a while.", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6N1qmSdYxhUsp2ouZDZlGA", "review_id": "tSAtMYT5E4Ya5_v7qp92hg", "stars": 5, "date": "2010-11-03", "text": "This place is a dream. Designer blouses for $17.00. Seven jeans and Hudson jeans for $20. Steve Madden shoes for $25. I could go on... the store is beautiful, well-organized and full of things that are in perfect or near-perfect condition. Some items are still quite pricey, but most of the store is extremely reasonably priced. \n\nIf you need something new very quickly for a date or an interview or a special occasion, you will probably find it here. The employees are nice, friendly, helpful and the dressing rooms are good as well. Love it!", "type": "review", "business_id": "fHrchaRB07DN0Dm-4Bk9dA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "D4-0xGve18qMPnWQgMTbyQ", "review_id": "hwzNoffAUmGX2pkdlPHoow", "stars": 4, "date": "2011-09-13", "text": "Great place to have sushi and there other great menu items. I go here at least once a month. A litte pricey but the qualify and preparation of the food more than offsets the price. Great place to meet friends and enjoy the atmosphere. The waite staff is very good. Highly recommend you try RA. I believe you will enjoy the experience.", "type": "review", "business_id": "s26P-jeVUH9TjnTPQttPag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zZmMSNkmFubw94Ob-DEnbw", "review_id": "YdyoB_CIok-yPmyAIVchLQ", "stars": 4, "date": "2009-01-18", "text": "I was very happy with the food and service. The service was wonderful and quick too.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "bpFyZ1yq6KCbQpFssFFRgg", "review_id": "_TiNhzf2OAmLMKSipt1Qaw", "stars": 3, "date": "2008-11-04", "text": "Hob Nob's Coffee House and Gourmet Deli is what has emerged from the dust and smoke that once was the Willo House (one \"w\", not two). Willo House was a Phoenix landmark beloved by many for its tremendous coffee, well-worn couches, and memories of Mary McCann's Poetry Slams--and loathed by others for its unmistakable smoke stench and vocally hung-over clientele. So, like many CenPhos, I felt saddened when I saw the \"closed\" sign hung on Willo's door earlier this year, and I've been watching for this coffee interloper to open its doors. I've been hopeful that we'd find a new funky midtown establishment to add to Phoenix's growing reputation for goodness. \n\nFeeling emboldened and optimistic after voting on November 4th, Baby Oli and I stopped into Hob Nob's for a morning caffeine treat. \nLet me begin by saying, holy moley, they got the smell of smoke out! I thought for sure that the odor of cloves and American Spirit would have permanently saturated the building's core. In fact, there was not much at all inside to remind me of the Willo-that-was. They've knocked down walls to widen the space inside and painted in warm hues . The place now has what you might call \"a d\u00e9cor.\" They said good-bye to funky and eclectic, and hello...hmm... Pottery Barn? \n\nI ordered an iced chai tea and a chocolate pastry. The chai was a chai, and the pastry was yummy, but not OMG-eat-here-this-instant yummy. The sandwich and salad menu looks awesome with sandwiches boasting of roast sirloin and \"the finest long line caught Albacore tuna center cut all white meat.\" They also have some pretty impressive looking hand-made chocolates.\n\nI'm not going to lie, I do miss the old, lovingly run-down, Willo style. Hob Nob's felt a little too Scottsdale to me. I may be 100% wrong on this, but I don't think the owners of Hob Nob's are Phoenicians. The man who made my Chai had clearly never been to--or maybe even heard of--the original Willo, and wasn't interested in any jovial chit chat about the old locale, they spelled \"Willo House\" incorrectly on their take-away menu, and the place simply doesn't have that Phoenix feel. \n\nRegardless of the Scottsdale vibe, I will go back to try those sandwiches, or maybe to test out their springy couches and fire place while grading essays. I'd love to toss them one more star! Fingers crossed that they'll relax a bit and make the most of their great location!", "type": "review", "business_id": "4sW8Z6NLXLRkruSKSKUEUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "G07phujE2YilP35GM_Ch-Q", "stars": 4, "date": "2010-08-14", "text": "Last week was my third visit to NOCA.\n\nSince it was a Thursday, I had the wagyu pastrami sliders. They were very good. Thick pieces of meat on nicely toasted bread. House made chips were great on the side.\n\nGood service. Top-quality restaurant all around.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "RCjuKSuPezW6qI3ZKgkncA", "review_id": "xI76FGhfAKMEdlygC6BRTA", "stars": 1, "date": "2011-04-26", "text": "I got a BBQ chicken sandwich and all the bones came complementary! SICK! I almost broke my teeth when I bit into it. The service was even worse, the manager (I think) stood in the way of me ordering while he was talking on the phone about football for about 10 min.GROSS!", "type": "review", "business_id": "vk7U4WeUKJWteORW5hba0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zNq2Xyg399kiAbTg5jBuyw", "review_id": "gKUsZQEEz9iqMpSQZNik_w", "stars": 1, "date": "2012-05-27", "text": "AWFUL!!! HORRIBLE!!!!!\nIT was just HORRIBLE experience! \n\nI made an appointment for mani and pedi and came in Friday morning at 10 am. There was only one lady working there (no bage with her name) She said she could take me earlier than 10. I said it's fine, she asked me to pay cash right away! only cash she said!! And ask me to go to ATM to get cash! I was surprised, but didn;t think anything bad. Later I realized that I didnt get any reciept so she just put my cash in her pocket because there were noone else there at that time.\n\nShe started with manicure and it took her less than 10 min!! everything was done in 10 min! She didnt even the nails, didnt remove the cuticule -she just polished the nailes with an old file. Her work was so nigligent in everything! Nail polish was all around the nails and my finger tips. I suggested her to correct it and remove an extra polish around and she did it only on few nails, repeating all the time :\"Pretty? Yes?\" It was so far from looking pretty!\n\nI'm a polite person by nature and never argue, but here it was just awful! And I payed her first together with the tips so she took 45 bucks from me\n\nHer pedi was not better at all!! She was always in a hurry! She didnt let my nails dry and started putting my shoes on me! I warned her that it must have been not done yet, but she didnt listen, she wanted to get rid of me as soon as possible, so all the nails went messy!!! She reapplied the polish but the whole procedure was just so frustrating!! I left the place more than just upset-I was really mad! \n\nThe next day the nail polish started to chip off on every other finger! OMG! I wanted to cry! It's the worse mani and pedi I've ever gotten in my entire life, and I do it every month!!\n\n\nI wish I had a reciept and could get back to talk to the manager -but this lady just took my 45 bucks and left me with ugly! really ugly work!!!", "type": "review", "business_id": "EFFIduf9WaUNbDy_O7yQjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rYZeLgKIoyAxhMdL12-wRw", "review_id": "TtKQt4fUF-KrCkPUyyun4Q", "stars": 4, "date": "2010-04-02", "text": "$4.00 for a lunch special in Tempe is pretty good, if you ask me. If you're eating two slices of pepperoni pizza for lunch, I don't think you can complain that your pizza is \"greasy.\" (That's what they invented napkins and dabbing for. Actually, napkins were probably invented for wiping your face, but they can be used for soaking up grease from pizza too.) \n\nI don't know that I'll go out of my way for this one, but I won't complain about it either. If I could give 3 and a half stars I would, so I'll be generous and round up (Barro's, if you're reading this and see my generosity, feel free to return in kind with free lunches for life. I think that's a fair trade.)", "type": "review", "business_id": "7Z-1mLIoxCHUxCp54W1CGQ"} +{"votes": {"funny": 21, "useful": 19, "cool": 12}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "XSRU6jL_XJyvLzvUU-hHng", "stars": 1, "date": "2009-12-29", "text": "Warning: Douche Bag level CODE RED!\n\nHere's how my experience went ... \n\nMe: \"May I have a Carmel Latte?\" \nEmployee: \"No\"\n.... dead air ...\nMe: \"Ummm why not?\"\nEmployee: \"We don't have carmel\"\nMe: \"Ummm I guess I'll just have a Cappuccino then\"\nEmployee: \"Just so you know it's a REAL Cappuccino\"\nMe: \"Okay\" (in my head I'm trying to figure out if I can legally punch this dickhead in the face or not).\n\nSo I sat down mulling over this experience in the dank dark atmosphere while listening to this ass wipe talk to his friend about living on other peoples couches for the past few months and about how he'll be moving to downtown Phoenix soon. To which I just chuckled to myself as this person was FAR from cool enough to blend into CenPho. What a complete and utter douche bag. Stay in Tempe poser (and keep your employer there to!).\n\nThis experience was months ago, and now they have opened up a shop downtown. Guess what? I'm not going to check them out. Fuck you Cartel. You'll never be Lux, so just stay in Tempe where you can be a complete poser with an attitude that you haven't earned.\n\nComplete FAIL. \n\nFor my two cents, skip this place and go to Lux in CenPho/Mid Town right off the Light Rail. Authentically cool with ZERO attitude, great coffee and no douche bag employees. \n\nAnd as for great coffee ... try Conspire WAY better coffee and authenticly cool.\n\n---- \nplease read \"owners comment\" below ... here's my response ... \n----\nWow so the coffee snobbery continues with the owner ... I guess my new job should be to \"promote good coffee in Arizona\" ... and I don't appreciate good coffee because I enjoy the combination of caramel AND coffee ... \n\nBy that definition I guess I don't know good ice cream because I like hot fudge on it or good pizza because I enjoy pepperoni AND cheese or good music if it's not acoustic or a good voice unless it's A cappella ... thanks for proving my point. I wouldn't go here unless you are a total coffee snob ... (I guess) they don't need your business you poser!", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "I342qODY_aOLCTczmHqxXg", "review_id": "TxuGsmj5E_kQ4mtca7DXoQ", "stars": 5, "date": "2009-12-31", "text": "This is the second time I've eaten here and it was as good if not better than the first. \n\nThe first time I had the meat lasagna and the second time I had the cheesesteak. Lemme tell you this is one of the best Italian places I've been to in Phx.\n\nIt's very Back East feel to it and I love all of the authentic Italian foods they have there, especially the meat, cheese and pasta counters.\n\nCheck 'em out you won't be disappointed!", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "zInU9Lr0IoWWVwfxy2Meeg", "review_id": "ab-Xw7vyU3zTiUtr4fcODA", "stars": 2, "date": "2012-07-08", "text": "The latest Consumer Report magazine gave this restuarant a higher point value that Houstons. We disagree. They tried to be but couldn't even come close. We were very disappointed in the lack of service, timing of food, and food. Hostesses were seen drinking from Gatorade bottles from there hostess stand, Sara our server spent more time chatting with her tables that serving and taking care of her guest. The manager on duty was checking his telephone and did not check our table. My chicken was very dry. Salad and soup were good. Will not return.", "type": "review", "business_id": "7m93HSBV1UrdHZBJwdUVJA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "kMiQnYFmAYbjHyyIPGSwoA", "review_id": "lsnqa7xgPsdDXfbIoS0vLQ", "stars": 5, "date": "2010-03-28", "text": "Open Range offers some damn-good home cooking. My family eats here often and has never had a bad meal. Not to mention that the portions are huge. \n\nI usually order the cobb salad. From a typical deli, I'd normally expect iceberg lettuce, a handful of shaved carrots, some egg, and a little bit of bacon. But if that were the case, I wouldn't be ordering the salad again and again. The field greens and romaine lettuce are served with avocado (I'm pretty sure they use at least 1/2 an avocado for each salad), artichoke hearts, tomatoes, bacon (no bacon bits here!), radishes, blue cheese, egg, cucumbers and I'm sure i'm forgetting something else, but it is GOOD. Sometimes, if I'm really hungry, I order it with a side of their twice baked casserole (twice baked potato in a cup, basically. It's unbelievable.) I'd also recommend the Arizona caviar (black bean salad) or southwest coleslaw.\n\nMy dad loves their BBQ sandwiches (with choice of homemade barbecue sauce - each one better than the last), my mom usually orders one of their other great salads with a side of potato pancakes (better than grandma's), and grandpa loves whatever is on special. Even my picky-eater brother loves food at Open Range - and that's saying something!\n\nBethany and Tom are the owners; Bethany does most of the kitchen cooking and Tom says that he's in charge of most of the barbecuein'. (He once gave my family a taste of some of their freshly smoked pecans and WHOA, they were GOOD.) The restaurant (as the name suggests) has a full service deli too, in case you need a pound of freshly sliced ham as well as a meal.\n\nIn the past, the service has been slow, but it has improved dramatically over the past year. The restaurant has a killer view of the Superstition Mountains, and is within 10 - 20 minutes of countless hiking trails. \n\nTo make this long review short: if you're looking for a tastes-like-home (or tastes-better-than-home) cooked meal and you're in the far east valley, make sure to stop in for lunch or dinner. You'll probably see my family and me chowing down too.", "type": "review", "business_id": "-I3Cu9rLQXtL5us5wdy8tA"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "EKR_maR6r561jYvXlJSVWg", "stars": 5, "date": "2011-06-26", "text": "One of the perks to being an only child, is \"me\" time. There is something special about having time to yourself, when the only obligation you have is to check in on Yelp, leave a quick tip, and grab a lemonade from the mall because it is 109 degrees outside.\n\nYesterday was that day. I had stumbled across The Art of Shaving. I've been in their stores in other cities before. Of course I have...because if you look at any of my pictures, you will realize a couple things: 1. I'm vain. 2. I'm hairless.\n\nAs soon as you step foot into this store, you are in a true gentleman's club. Not the kind that will take all your dollar bills. You won't make it rain here.\n\nThis is the ultimate shaving store. Soaps, creams, blades, razors, balms, brushes, and mugs. You name it, they have it.\n\nThe staff knows what they are talking about. I explained to them that I have a very old safety razor and a brush. Both were passed down by my Grandfather who passed away when I was a teenager.\n\nThey didn't pressure me into buying ANYTHING, although I did end up leaving with some shaving cream. They even gave me a proper demo on how to use it properly with my brush. I've been used to shaving soaps and the usual aerosol creams....so the little tutorial was nice.\n\nAlso, there is a master barber in the back of the house that does straight razor shaves, haircuts, and men's facials.\n\nRemember earlier when I said that \"me\" time is a perk? This is the best place to spend it if you are a dude.\n\nIf you are a woman, buy your man, or your man-friend a gift from here. This place is simply amazing.\n\nOne last warning. The store is pricey. but worth every single penny.", "type": "review", "business_id": "JAfPOKUAYK2_lSRnyKBgpw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j-kShDJgp5acGhqJAkJHnA", "review_id": "Od31Ea2shNz0ejB--dE22A", "stars": 5, "date": "2011-09-28", "text": "This location has closed. Went by today and found an empty restaurant.", "type": "review", "business_id": "i1GWM0MKxF3V5jveyCks7A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LvgCTnLlwEsSI0XrZtR05Q", "review_id": "eOEzsqOxaNXziP86S5ip-Q", "stars": 5, "date": "2012-12-13", "text": "Just left. I wanted to eat another pizza it was that good. The Biagga was fantastic. Probably the best prosciutto style pizza I've ever had. Owner and staff were very friendly. I will be back again.", "type": "review", "business_id": "VSPuvNSDUvlTl670lVAkkw"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "Wuk-ajsN4e7n1zBLIedQ-A", "review_id": "5tQcsWgK3qCuq3gTGiCLew", "stars": 5, "date": "2009-01-03", "text": "If I were ever to be executed, I'd want a Meat & Cheese pasty for my last meal. With two red wine gravy.\n\nIt's *that* good.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wcOqMTV92kxOornA42KyoA", "review_id": "2zxjhZvjYoMMzmlPjPLL-w", "stars": 4, "date": "2012-07-01", "text": "Well my first review of Over Easy; have gone here a few times; only reason I don't go more often probably because of the wait. The food is definately makes me want to return. The Hopple Popple, the Wolf Pack, and what I had today, the Loco Moko (only criticism is the rice); great lemonade (when I used to drink lemonade) and the hash browns & they have tater tots!!! I'll be back; when I can get up early...", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "9VaPHxvohl917I7bJU9InQ", "review_id": "xqgcXVbpObLdBrb0q0B1ug", "stars": 3, "date": "2008-12-15", "text": "Overall I liked this place and glad it is in the neighborhood. The carne asada burrito was good and the ceviche was pretty tasty. However, it seems that this is about all there is to the menu. \n\nI was not a fan of the set-up of the restaurant. It was way too crowded - yes it was lunch, but the flow could have been a lot better. Overall, I will return when in the mood for carne asada. Hopefully the kinks will get worked out over time and until then I look forward to supporting a local restaurant.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Q6FaSZpCtVv7PXECwDL1bg", "review_id": "b-llXU-mlKlF13TtzHvTFg", "stars": 4, "date": "2012-08-23", "text": "I discovered Taka Grill and Cafe while driving north from work on Central in search of somewhere different to have lunch. No line, no waiting. We ordered, sat down and our food was served with 5 minutes. We were out of there in 40 minutes, which is perfect when you only have an hour for lunch..\n\nI wanted sushi so I ordered the Shrimp tempura roll with deep fried shrimp, imitation crab meat, avocado and cucumber for $6.95. Of course I would have preferred fresh crab meat, but was ok with the imitation. I liked the meal presentation. Food is served on large rectangular plates. \n\nMy coworkers also enjoyed their meals, except one said the salmon was frozen and thawed. We work within a mile of Taka and will be back again to try something different. (A mango smoothie sounds delicious right about now!)", "type": "review", "business_id": "oe45XbxddG4EKhpWAHIk2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "YofsCwcSAuXs0FcE8T4dig", "stars": 3, "date": "2007-10-10", "text": "the food here is deeee-licious. i like the decor, the ambiance, the menu, the waitstaff. however, i hate the feeling that i'm being some trendy little scottsdale frou-frou by eating here.\n\nthe salads are totally inventive and yummy, but a little on the sweet side. i loooooooooooove that you can add an egg (genius!!!) and fresh garlic to your pizza. i adore the fresh and homemade ingredients, and i really like the cute little neighborhood-eatery feel. eating here makes me feel as if i'm in a bigger city than phx. \n\nLGO is on the pricey side, and definitely caters to those who want to eat gourmet/designer pizza. however, taste wins out with all the fantastic and fresh toppings. and if you ever get sick of franchise restaurants a la CPK, LGO is a great alternative.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CmVxtdhFW707wSEPwAZVRw", "review_id": "2WdBcv_4lpmEusrZOAN8eg", "stars": 4, "date": "2011-07-15", "text": "This Starbucks is located on a busy street, on a busy corner in Tempe. There are plenty of places to sit outside but who wants to in AZ in the summer right?\n\nThe weekend we were there, the women's restroom had plugged up in a an ugly way but no worries, I tend ot use either one if I have to go so I popped into the men's.\n\nThe place was clean (besides the toilet) very cool and even better, the staff was very cool. It's nice to get your regular drink at a Starbucks and it tastes as good as it does at your fave Starbucks in San Diego...thanks ladies!", "type": "review", "business_id": "KHdadnkfYm0OgyIF_fvL8g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "DHH8AsaIlcs4tpD1ZnSPHg", "stars": 5, "date": "2009-12-27", "text": "we keep driving by this place thinking it was just a coffee house. but after reading some of yelps reviews, learned it was much more. it's so cute and trendy inside. they have so many yummy and healthy options, we didn't know what to pick. so we decided to go with the veggie breakfast burrito.\n\nit was light and filling, much to our surprise. and superbly tasty. and best of all, not gigantic. more places should do that....offer reasonably priced food, that tastes great, in manageable portions. that way, you don't stuff your face with a giant food plate and then feel like an obese slob the rest of the morning. \nwe'll hit this place up again for sure. awesome staff too!!!!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "ie9dzIMGLHKaeq2ByLfrTA", "stars": 4, "date": "2011-10-16", "text": "Well, this is where I got my iPad, and I am hooked of all Apple products. Yes, they are expensive, but they are so cool. I am amazed to see little kids playing with the iPads and computers, I am sure they are a lot more tech savvy than me.", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "H0nYlvGjMA9szTaqIwTwpg", "review_id": "gFOmFa71CVAznWIiqxP7NA", "stars": 4, "date": "2011-03-01", "text": "I have been to many Thai restaurants in the Valley and this is the one that I aways go back to. Their roasted duck is consistently good. Get the Ped gang daeng (801).", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Um8eFxZBCxCR4FNGO0DeEA", "review_id": "1bKkX8OpDcm74n_zCBVeCw", "stars": 4, "date": "2009-06-01", "text": "You have no idea how happy I was when this place opened - and turned out to be good! I was really tired of driving into Scottsdale to get my hair cut. I lucked out when I booked an appointment and by luck of the draw wound up being styled by Maira. She's great at what she does, sweet as can be, and always remembers little details of my life that even I forgot I told her!\n\nI really like that they don't even try to push product on you, unlike many other salons, and they give you a mini-massage before your shampoo.\n\nI took a star away because of a bad experience I had with one of their aestheticians about 2 years ago. She put Retinol on my eyelids, which is a no-no. Lots of itching and pain for a few days afterwards. She also made like she was giving me a product for free, but wound up charging me for it. Like I said, that was 2 years ago and I don't think that aesthetician is still working there, but I haven't gone in for anything other than a haircut since. If you want a facial, Blu-Sol is just a couple of doors down.\n\nA shampoo, cut and style runs me $32 plus tip. Much better than driving to Scottsdale and paying twice as much for the same service!", "type": "review", "business_id": "mU33XNKLV_W01wJO8PoZBQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "2KyJLMY3jmASmwtnmlBuvw", "review_id": "dZ2hksnxNjKgkez1Ydg4Cw", "stars": 5, "date": "2008-06-22", "text": "Perhaps you've heard of the Library of Congress. Nice Library.\n\nBurton Barr Central Library has a bigger reading room.\n\nWil Bruder was the Architect. You either love his work, or you hate his work. I love his work! And, this library is as good as it gets.\n\nArrive in the sixth floor reading room a little before Noon *on* the Summer Solstice. Ask a librarian: They'll tell you why. [ah, the mystery....]", "type": "review", "business_id": "K04Sot5bwUk-BkOotkurmA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "re0DJDticmhO6240NfuwEA", "review_id": "DQb7W3I2rOLR1bsIybakRA", "stars": 5, "date": "2009-06-30", "text": "I've got two names for you: TYLER & MARCO - - superstar instructors at the Y!!!\n\nI've been an avid gym member at various gyms for years and I have to say, the YMCA downtown can't be beat for the 8-5 p.m. work schedule person who likes to attend the gym during lunch or right after work. I'm all about the group exercise classes and this Y offers an array of classes such as spin, kickboxing, Zumba, Yogalates, Boot camp, water aerobics, Hatha Yoga, etc., etc.\n\nBack to my fav instructors: Tyler and Marco. Boy, do these boys kick my ass every time I take their classes! Tyler teaches spin and offers not only strong knowledge and great tips on making your spin experience the best that it can be, he has a kick-ass playlist of music to motivate his class. Marco is a very intense and interactive kickboxing instructor who keeps pushing you with great music mixes to keep his class sweating the weight and stress away.\n\nThank you Tyler and Marco for making my workouts intense and fun! After years of going to different aerobic classes, I'm FINALLY seeing the results!!\n\nP.S. You can't beat the staff that works there. Erica who manages all the group exercise instructor welcomes any suggestions or comments with a smile. Freddie at the front desk is also very helpful and sweet.", "type": "review", "business_id": "6eax0w8j0tudDOkvWgmQ7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Y2R_tlSk4lTHiLXTDsn1rg", "review_id": "vhWHdemMvsqVNv5zi2OMiA", "stars": 5, "date": "2011-01-17", "text": "Love this place! Was in phoenix 3 weeks for work. Ate here 3 times. The squid salad is amazing! They also have sushi, bibimbap, and tons of other items. Must try!", "type": "review", "business_id": "U8VA-RW6LYOhxR-Ygi6eDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "82vsbM8ggZV4BVrtLB9s3A", "review_id": "7Y4BEfpFxFvaY3i3RugQGw", "stars": 5, "date": "2010-10-06", "text": "I don't think there is anything else to be said about Delux, it's been around and they offer nothing but great food; the Classic Burger and the Delux burger are both very delicious. I like Delux better and I do recommend medium rare; the quality of the meat is unbelievable. Love the sweet fries; I do prefer the mixture of both sweet and regular fries.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "iV9wn9PHZSziPC0XJ22UJg", "stars": 3, "date": "2011-02-05", "text": "Who would have ever thought, chicken and waffles combination? It is crazy, but it sure does. The location of hidden inside a big plaza of Albertsons, Aces Hardware, Gas Station, and much more. It is really hard to find unless you have been inside the shopping center. People here in AZ like to say something is located on the northwest corner of the street. This would make it impossible to describe.\n\nOnce you get there, the restaurant is pretty small. Typically there is a pretty long wait, but I was lucky the day I went. One good thing is they offer white breast chicken meat, which is always a bonus. The chicken was tasty, even though I am normally not a fan of fried chicken. I love waffles, but it seemed like the waffles came out cold, as though they were reheated or Eggo Waffles. I loved Eggo Waffles growing up, but I don't expect frozen waffles at an establishment. I would stick to the chicken and call this place Lo Lo Chicken House.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "2Qo8EXnxxfTtUWIqPPih6g", "review_id": "SP5f_grHktau5MTy4MGweg", "stars": 4, "date": "2011-10-02", "text": "A very unique restaurant in the old town section of Scottsdale. Very interesting menu and unbelievably the largest wine list I have ever encountered. A nice combination. \n\nOrdered several of the small dishes. All were cooked to perfection. and tasted very good. \n\nEspecially liked the chopped salad and scallops were especially good. \n\nNice setting. Friendly greeter and server. \n\nThe atmosphere is very casual with a touch of elegance. \n\nRecommended for sure.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 10, "useful": 13, "cool": 13}, "user_id": "4lkTIhTuMhLprQprGlTRlA", "review_id": "g-PgzDvYbs9JDcOyZ5s9gg", "stars": 4, "date": "2010-07-14", "text": "It looked like shrimp and it taste like shrimp but it wasn't shrimp. It looked like chicken and it taste like chicken but it wasn't chicken. It was all tofu and 100% vegan AND it was all amazingly great. Even Amy's mock pork was surprisingly very pork like and I love pork. You see, I love meat and it's very seldom that I go a day without meat in any given deal. However, this full \"mock\" meat experience was pretty cool and enlightening. Not only was the lil establishment very clean but the owner was super cool and informative. Although I don't see myself converting to full veganism anytime soon, I'll definitely be back to try a few more vegan-mock meat dishes. \nBoba Juice is also my new go to place for a much needed icy cold smoothie with boba of course. I've tried a few variations and my favorite is the taro/coconut smoothie, add boba. I swung by Boba three days in a row for a smoothie and that's a pretty solid indicator that I like the place. Yay, I am a fan!", "type": "review", "business_id": "Qn8vxCWqe8FL_5MNcc4tpg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y5TsYk1VTXgbNoYCWw-IPw", "review_id": "neUgSkrWVs-YsCzDRd2sow", "stars": 4, "date": "2009-12-22", "text": "There's a lot to love about this quick but hearty Mex Grill. I love walking in seeing that the guys standing in the open kitchen are roasting peppers and chopping tomatoes for their salsa bar. A lost art most would say in a place that seems like could be your typical chain, quick fix, \"Fresh Mexican Food\"... \n\nThe two owners are buddies as the name proclaims and they are a friendly bunch. The food though is why this place is a small gem in the NW Valley. The Burritoes are huge and would challenge Chipotle's size, but also put to shame the cold taste you get from Chipotle's burritoes, from ingredients sitting out cold like a Subway line... \n\nThe Burrito Especial is really good which has big pieces of shrimp and some nice chunks of zucchini. The steak served in their burritoes is also very impressive, nice grilled taste and definately not chewy. \nThe sides are generous when you get a combo and the salsa is nice and fragrant. \n\nOverall this is a great place to eat, period. The three flat screens hung up high always have football games on, on weekends. Awesome food that cooked right next to dining area has never seemed to dissapoint us.", "type": "review", "business_id": "kyWbn54rsIlS3vbpDo0qPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xAVu2pZ6nIvkdHh8vGs84Q", "review_id": "gDRbGhpTW3wO0a5OAH-EWQ", "stars": 4, "date": "2012-04-21", "text": "The pharmacist at this CVS really cares about her customers. Always surprised that she remembers me. Their new Minute Clinic is a bonus. I believe it is the future as more and more of us move away from company supported health care.", "type": "review", "business_id": "p-174arohcsitYIq19SsGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IDHrwv_RCildFvmfWTkj5Q", "review_id": "FY9nJO7BnhG3yeXicDgEjw", "stars": 4, "date": "2012-07-25", "text": "Very nice place with a great concept in Tempe, AZ. All I want to know is.......Where are the duck fat fries?", "type": "review", "business_id": "vaabk6CYXX1dYVQ1xkyPUg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "iR1pShxMP5Aiwo1DZzGJlg", "review_id": "3WfIzCGWLYnc5kpDP3opbw", "stars": 5, "date": "2007-02-27", "text": "Outdoor shopping at its best... probably not the best if its hot outside- but great outdoor dining and misters... :-)", "type": "review", "business_id": "QAWdgDgWaFJYzJ2pGDjmdw"} +{"votes": {"funny": 8, "useful": 2, "cool": 1}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "5fmJiJqeMUIKF-pMNAZ9NQ", "stars": 2, "date": "2008-05-28", "text": "This is a lake. \n\nIt has water in it. It's not very clean water. \n\nThe lake police will yell at you if you let your dog swim in the water.\n\nThat sucks. \n\nI think it's semi-retarded to review a lake.", "type": "review", "business_id": "qkX9CmImtW97GHmt9NXKog"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "IgN8zsAGe4_7uXDls3gM5w", "review_id": "EMVlI73VZmiYfvxqlYQmmg", "stars": 2, "date": "2010-11-01", "text": "The doctors are great, especially Dr Mouaikel but the set up to communicate is not patient oriented at all . When the office is closed for lunch 12-2PM you cannot even leave a message . You need to call back again and listen to the lenghtly preamble about directions , office hours, emergency numbers etc. You still have to press the correct number and leave a phone number for a return call. The return call is late that day or even the next day.\nThe recording suggests yiu use the website yet you have to be signed up for the website and I cannot find out on the website how you get signed up. \nI would rather go to the DMV rather than have to call the AIA office for other than an appointment..", "type": "review", "business_id": "i9LWPgDrCRaHfXpSk4TjUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GKzWSBv2Dpx3ziMFQ4S0gA", "review_id": "2vHszEHv6OS_g9zJxF703g", "stars": 3, "date": "2011-12-30", "text": "I waited months before finally getting around to coming here, and it wasn't all I had hoped for. Went for my birthday, and got the garlic bread appetizer, wasn't very good and got crumbs all over the table. It had an odd burnt taste. Got the mushroom and steak calzone, which was huge and filling, but very greasy and took a long time to actually get to the table. They claimed it was the Hoagie that one of my friends had that took so long, but it shouldn't take so long to cook a sandwich. Either way, delicious, but nothing too special for the price. I won't likely return here, since some of my friends don't like this place.", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 3, "useful": 7, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "uHuDxwKlw91tpwGQk4xGSw", "stars": 5, "date": "2011-12-29", "text": "You know the story about the cobbler who created all those adorable shoes for the elves in the village? Ok, so maybe that story doesn't go exactly like that. Regardless, I found Old Town Scottsdale's version of the magical cobbler who can do wonders with shoes and I found it at Tony's Shoe Repair! Here, Tony keeps shoes in spic and span condition and if you bring them in looking anything but shiny and new, you can be sure they will be returned as good as new. Tony's Shoe Repair also handles purses and belts. They do everything for a shoe including simple repairs such as widening and adding those little tricky bottom parts of heels that never seem to last, to giving your worn our shoes an entire face lift. The prices here are reasonable and he does the work for you in a speedy time frame. I dropped off my sad looking boots off and he freshened them up and added new heel bottoms to them in a day's time. The fairytales can keep their magical cobblers, here in the real world we've got something even better -- Tony's Shoe Repair!", "type": "review", "business_id": "W5_1OOIebSkPXAVeHJXf5A"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "M-j04kcOanazSntBzoD3ng", "review_id": "4POriD21PaZcq6LyrVWCqg", "stars": 2, "date": "2010-11-05", "text": "I found this place on Yelp, and went there for the lunch buffet. Having read the reviews, I had really high expectations of the place, but was sorely disappointed. Watery sambar and rasam, hard idlis, dosas with a miserly amount of potato stuffing, gulab jamuns that tasted nothing like gulab jamuns, inattentive and too few waiters, and disgustingly dirty bathrooms---in my opinion, Udupi Cafe missed the mark completely. Their a la carte menu items might be better, but I am not going back to find out!", "type": "review", "business_id": "lhRUPA28pRIN1MnllN-o9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zICF617F_kWyU2Z7WLRh1A", "review_id": "UaLLqDaBJN-xIB_q7MjyPg", "stars": 3, "date": "2012-09-30", "text": "Great concept my nephews requested I take them there when I was visiting from out of town. We really had a wonderful time, I just wish the staff was a tad bit more friendly for the amount of money we paid for being there. I get it, its annoying explaining how the process works for each person that walks through the door but, I never done this before so I was asking questions.. seemed the employee was a little frustrated which was annoying. But, I stuck it through because that's what my nephews wanted. Other then that this place was fun for adults and the kids. Very therapeutic, quiet and allowed your inner creative side to shine through. Great amount of colors to work with and supply. I would do it again with them but, hopefully the person at the front desk could smile more often!", "type": "review", "business_id": "Dk6BcoqQjdWJqhbXM8KzXw"} +{"votes": {"funny": 7, "useful": 8, "cool": 9}, "user_id": "v5k-__wHo2xPI25WO-dcQA", "review_id": "99PdZYD3wGhZRT0aP1koGw", "stars": 4, "date": "2009-09-02", "text": "So good. Oh so good. So good for a hangover, or, so good for brunch with mom. Quaint little establishment with cute little waitresses bouncing around in tiny little shorts. My coffee cup was never empty, and even as I was leaving, my waitress was filling up my to-go coffee cup.. she gets my vote for the most wonderful person of the day. Their breakfast menu was pretty excellent, I got the Western scramble with mushrooms and it was cheesy delicious excellence. Very clean, and lots of seating.. I had read about the lines, but we got right in and right out. This place is exactly like The Good Egg.. but not as many senior citizens or bonnet wearing geese used as the decor.. I am a fan.", "type": "review", "business_id": "OSL98Keoc2FSNx4a3ge5Uw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OFaAdHEBwPHel6ZdrKgc6w", "review_id": "Hh6hlyYT8Of_-mwiL7WhdA", "stars": 4, "date": "2012-05-04", "text": "This place was old school when it old school was in session. I can't spot any changes since it was one of the original Cork N' Cleavers - maybe new carpet, but that may be it.\n\nThe salad bar is so old school, it still has jello - not jello shots - jello. And since, I'm old school, I'm a fan of the salad bar.\n\nMonday 4 buck burgers with 2.50 salad bar is the only food you'll require for the whole day. Decent burger too.\n\nGood barkeeps - they remember your name or call you hon (old school).\n\nThe food is pretty basic, but they start with decent ingredients and prepare them well. Had the prime rib a couple of weeks ago and my view is that the only way to eat prime rib is to have it breath it's last on the way from the kitchen to the table. It was early enough in the evening that they were able to deliver a tasty hunk of meat that was as requested.\n\nIf you're into modern, contempo kinds of joints, Feeney's won't be for you - but if you're in the mood for dark, old school, slightly seedy (in a good way) - then Feeney's might just fit the bill.", "type": "review", "business_id": "r9sGMJ084n4IS9eGmlCKjg"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "9ellV9VrEOPA3vX2pZptSA", "review_id": "UrsK3pGDLRC2uu4L8k0rsA", "stars": 5, "date": "2010-11-02", "text": "How many great things can one say about the Cartel? Does Infinity work! Yes, that was a statement, not a question. I am in love with the CC, hands down. I have traded my gold Starbucks card in for this amazingly Delicious start to my day. The iced coffee ( actually, its Toddy, which is better) is amazing. They roast their own beans, and allow the iced coffee to sit over night, creating an extremely potent concoction. The hot drinks, A+++ as well. And, the food? A+++++ (5, yup its that legit). Grab the cheddar bacon muffin... its literally heaven. No joke. Heaven. Little clouds may form above your head; white clouds of course! Not those nasty rain clouds. OK, maybe not clouds. But defiantly your day will be sunny because you stopped into Coffee Cartel. And not because you live in AZ. Duh. \n\nOnly complaint I have is the hours. I live right next door, and their only open M-F (like so many places in DT-Pho). \n\nPLLLEEEEAAAASSSEEEEEE open up for the weekends!!! I'll work for free! Well...wait... I'll come visit.", "type": "review", "business_id": "O7fXh4ODsi--5LmJKTHn2g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5y0N0fTEg_ZGEGDGzzRTdg", "review_id": "M8mRgKOvNDU9AmVooK11Zw", "stars": 5, "date": "2012-10-11", "text": "Cute, cozy, pleasant and very friendly service. That is really all I have to say about them. The food was oh so delicious! Little bite sized tacos. Service was fast and just perfect! They even use the square card reader on their iPad to charge cards. Which truly shows its a small and quaint restaurant.", "type": "review", "business_id": "7vz3HGtHzvz1JjiphH9uOQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "ehQl6pGhoHErv8pgR1Syfg", "stars": 3, "date": "2011-06-10", "text": "Needed to get some keys made, so I dropped by here. The key machine is located at the front of the store at the customer service/returns desk. I popped in and they made my keys within minutes. The girl working the machine was really efficient and got me out of there fast......which is great because I hate waiting.\n\nWill have to drop by here for other home stuff another time.\n\nReturn Factor - 84%", "type": "review", "business_id": "PmZ3Ft4aOGpzhpPnF21loA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LXWAXIeYFIdgd2JVPF-9qA", "review_id": "tm64Vczr7rNwT91pYXT3Fg", "stars": 4, "date": "2011-04-18", "text": "Walk up to the counter to order... be prepared to want everything on the menu... we got the Carne Asada taco (extra spicey for a nominal cost), the softest corn tortilla , guac, chopped lettuce, carmamelized onions, and fire-roasted tomoto salsa, and the Al Pastor, (marinated pork), chopped cabbage, etc, JUST go there.. you can eat outside (weather permitting) or stay chilled inside. Not many tables. who cares. get take out. will go again..yummmm.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "vhAn390OgR1H4DwacJdc7w", "review_id": "dmeHFvlF4PvEQfTqqbFgYQ", "stars": 4, "date": "2009-06-19", "text": "Okay before I get into the drinks, I'll start with the food. My fave is the peppered turkey avocado sandwich, with these delicious fries. \n\nOr, (Amber: note the paragraph change) you could get the chili verde appetizer, or the grilled shrimp and guac tostada bites, or the tejas trio with guac, queso, and salsa and chips. \n\nBottom line is the food is solid, all the way up to the fruit cobbler for dessert. Settle for nothing less. \n\nFor drinks, Z caps you at 3 margaritas so make it count with the chambord rita before you switch to beers. It's good, you'll be flavored, life is perfect.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fwIXyM_7HFRfkVQMne79AA", "review_id": "wgJMS9ihQGPmciZFguF4hg", "stars": 4, "date": "2011-12-23", "text": "I come here about 4 or 5 times a year. It's consistently good. There is ample seating, so I've never waited long. It's off Central, so the parking is horrid. Their lot holds a good number, but it can be tricky to get in and out when crowded - I don't drive my van here.\n I am always pleased with the food. I find the salads ok - I really like their Balsalmic Vinigarette dressing - I'll mop the leftover with bread.\n I typically get spaghetti with meat sauce and sausage. The sauce has a good flavor.\n The Brown Butter with Mizithra Cheese is incredible - but very rich.\n The staff is always courteous, and I rarely have to wait for anything.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "YLcgm9PknLBAuWgo-d7MGw", "review_id": "TGQhowYcikYwERv2nWrVTw", "stars": 5, "date": "2012-07-05", "text": "I have used Todd on at least a dozen occasions. I am a property investor and I buy multiple homes. I need Todd for EVERY house I do and he is ALWAYS there for me. He even got me into my own car once. At the drop of a hat, he is there for me. His knowledge is excellent, his demeanor is fantastic and his service and workmanship is excellent. I would NEVER use another locksmith unless he was dead or out of town. In which case I would probably ask him to come home. :) Use this guy. Hes great.", "type": "review", "business_id": "y0_Yc9NS-nro-pDGKhiFjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Hv0mbeVlO2nB-6cYcfFMg", "review_id": "wYEZOP4jXWcL5DSDW87qxA", "stars": 4, "date": "2011-02-10", "text": "I love this store! very underwhelming, which i love being able to get in/ get out... their produce prices, and chili prices are amazing! The staff is funny and awesome. the music makes me dance in the isles LOL. literally. \nthey also give you free marinade with any meat purchase which is way cool.\nI don't like their prices on bread, cake mixes, and things like that, but their produce more than makes up for that, prices are awesome, and its absolutely fabulous and fresh.\nRonney", "type": "review", "business_id": "zpKmFI47BWUT-dUlTDSVug"} +{"votes": {"funny": 22, "useful": 13, "cool": 16}, "user_id": "pv82zTlB5Txsu2Pusu__FA", "review_id": "XS84w1vawB9q3RdLn1Dd9A", "stars": 5, "date": "2012-08-23", "text": "My pants get tight when I think about Pho Thanh.\nThere is little else that I can say that would more accurately convey my love for this restaurant.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bRPCxyEgxa6shqb_VTJ9Cw", "review_id": "AHnOaIGSFIrbx7qfT69WWg", "stars": 2, "date": "2009-01-15", "text": "This was real dissapointment because I really trusted the reviews but I realize there are couple of important factors. 1. this is college town 2. Az (no offense) isn't the capital of great food. 3. a 20 yr palate is different from a 40+ yr old palate.\nSorry to be such a snob but truly this food was just okay. If you're a foodie and really know great Ethiopian I would suggest you don't eat here. while the wait staff are really wonderful the food was just okay, presentation is nothing like usual Ethiopian fare (family style). The Dobo Wat was ordinary and my favorite (Gomen) was tasteless. they didn't include that grumbly cheese and my Doro didn't have the typical egg. The sauce lacked flavor.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O-ZSaBcNyYGY7UXp-4T7FQ", "review_id": "S9fMjBCwW0XCDfhnRRIjLw", "stars": 4, "date": "2012-03-26", "text": "Good steakhouse. My steak was great and the sauces and salts you add on made it mire interesting than a usual steakhouse. Almost all members of the party were satisfied and happy.", "type": "review", "business_id": "WwTK9w1qu4h28a63gFz25A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RYw9XJfFfl176jpxBMDgdA", "review_id": "plI5asUbXJwfrpcrVc_pWQ", "stars": 5, "date": "2010-02-09", "text": "This place is great. The first time I went in I didn't have change for the parking meter and they easily helped me out. Adrian cut my hair and did a great job. Everyone was friendly and made you feel welcome.", "type": "review", "business_id": "R5TyRxY46mrSKU3-42-Orw"} +{"votes": {"funny": 6, "useful": 4, "cool": 13}, "user_id": "mOirLg2h76o-dPn97XxzoA", "review_id": "kX8e5NsQu7fHf221kqbYUg", "stars": 5, "date": "2008-01-01", "text": "Indiana University went to a bowl game for the first time in a crazy number of years.\n\nAnd my big little cousin is one of their defensive ends. So it was my pleasure to end 2007 watching the Hoosiers play the Cowboys of Oklahoma State University. I can't think of any better way to finish off what's been a crazy year...though it was improved by being joined in the stands by Nadia C. (soon-to-be G.) and her adorable fiance Ben. \n\nI don't understand football, so the game was kinda secondary for me, but being amongst all those screaming fans, and the cheerleaders and the band was great. I'd forgotten that energy since leaving my sports loving home town.\n\nBut the game was pretty good. Would have been better if Kellen Lewis would have completed 60% or more of his passes. Or if the Hoosiers had won (hey coach....DEFENSE!). But football is pretty awesome from only 5 rows up. Add some people watching (guy in red pants and wig), constructive advice to the IU dance team (buy new uniforms...something along the lines of the sparkly orange dresses of the OSU girls), and the awesome Marching Hundred (who knew that mainstream marching bands play riding dirty). And we had a blast./\n\nThe only downer was not being able to visit with my cousin after the game. For \"security\" reasons, they wouldnt let family and friends see the players at the stadium. Since I wasn't staying at the hotel, and didn't know what hotel that was, I wasn't able to see him. I was terribly disappointed to come all that way and not be able to give him a hug and give him a hard time about growing up to be a big burly football player. In my head, he's still 12 and gangly, and trying to grow into his feet and his ears. But it's great to see that hes a \"grown man\", in college, playing football and playing for a team that's getting better every season.\n\nSo GO BIG RED! And hopefully there will be another bowl visit to kick off 2009.", "type": "review", "business_id": "hvg4NfkaV-aVqbMzKOEgVg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "jogb0sawSgmfv7MuIp2b5g", "stars": 4, "date": "2008-03-24", "text": "I don't quite get it. Am I naive, not part of the \"in\" crowd or not tipping the right people? Our experience at Masto's started off a little rocky, but wound up being okay. \n\nWe arrived 15 minutes early for our 6:00 PM reservation Sunday evening, no problem because the place is dead, right? Not so fast! We get taken to the worst table in the farthest corner of the restaurant while passing by 80% of the tables that are empty. Luckily we noticed right away the table would be a good fit for 12 people not a party of two which we were. They graciously reseated us at a small table for two which was much better.\n\nNow, after that you may think, why'd this guy give them four stars. Well they redeemed themselves a little later. My partner ordered an ice tea which they were temporarily out of. How does that happen by the way? Out of Ice Tea? But I digress, they wound up bringing him a complimentary Ice Tea once they had brewed a new batch.\n\nI guess you probably want to know about the food. I started with the Beefsteak Tomato and Onion appetizer which was excellent, my partner loved his loved his French Onion Soup. We both had the Bone-In Kansas City Strip his was a little undercooked and mine was just perfect. We shared the Au Gratin Potatoes and Creamed Spinach...both were excellent.\n\nWe'll give it another try sometime when we're in the mood for steak so hopefully we can have a Five-Star experience.", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CiMlibhkS4uezVaHuU5Khw", "review_id": "iWcEOvtExQD6jkFRtBUbww", "stars": 4, "date": "2012-07-03", "text": "Thank you fellow yelper's for this recommendation! Probably the best chinese food in the west valley!", "type": "review", "business_id": "GNZuoHxehd_3Kej7eXj8iQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "QYgcusG-G0bwUOt0b5rT6w", "review_id": "vF1RHDSW9ZufMclFyDgdWQ", "stars": 4, "date": "2012-05-04", "text": "This place is great to go to for a chill and low key atmosphere.\n\nYou can play billiards, cornhole, or video blackjack. \n\nOne thing I didn't like: one of the bartenders told me there is a $10 minimum to use my credit card and I think he was trying to hustle me because when I went back to close my tab (without buying another drink), the other bartender took my credit card.\n\nOtherwise, a nice chill place to go.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ux7a5tbceLU6anNycjwt_Q", "review_id": "AdijOXS_pDyUgZZab-iZKw", "stars": 3, "date": "2010-07-22", "text": "I enjoyed seeing the Cezanne collection. It's just like pictured in the book. I spent time reading about his works and his influence on composition and form. As in other museum I've visited, one really can't take pictures of their best display. It's really a place to walk around for a couple of hours when one doesn't feel rush.\n\nI wanted to be surprise to see Classical sculptures and hand made works of art and I didn't see any here as, I'm very particular about the historical eras and movement of interest . Leave that to the big city museums. The fact that they have high end borrowed art and a place like this in Phoenix makes it a must for resident to see once in a while what the civic offering provides. This place is half a block off the light rail makes it convenient.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fLjjtm4beQfqPxLfeuqboA", "review_id": "7H_WgekAbtgGvpyRuFKGsg", "stars": 5, "date": "2011-12-02", "text": "We've take our daughter to Dr. Ramirez at TLC since we were released from the hospital. I've seen all but one of the four doctors, and have been extremely pleased with all of them. They offer both a sick and well child waiting room. Our daughter loves the themed rooms. With small children, you will have the inevitable emergencies that require a doctors visit. My child is two now, and we have never been unable to get an emergency/sick appointment. Our phone calls have always been promptly returned on the same day. Anything they told us they were doing, was done as promised. I cannot recommend them highly enough!", "type": "review", "business_id": "uWAmlaH9xJbE3xyv3P8DWQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "_5DehTLyFIH5kQv18Iv_qA", "review_id": "lBXNKmr29rT3Mf0hqoOKhA", "stars": 1, "date": "2011-04-14", "text": "I ate at Scramble last Friday and I have to say that it was a horrible experience. What attracted me to this place was the separate vegan menu in addition to their regular menu - this makes things easier when dining with vegan and non-vegan friends. So I happily ordered a tofu wrap and added fried potatoes as a side and awaited my food. We started eating and my friend found a hair in his food...not good! He threw it on the floor and tried to drop it. Well moments later I found a hair in my food... I couldn't believe there was hair on both of our plates! I was so disgusted I could no longer eat my food (and I was ravenous). I told the girl working the register about the whole ordeal, she walked back to the kitchen then back to the register and completely ignored me (she said she'd come back to my table). Before we left I spoke with someone else and showed them the hair, clearly not one of mine. All I got was \"Oh, I'll check the guys in the back.\" Check the guys in the back??? What? How about, sorry may I refund you your money? Additionally, the few bites I had of my burrito were pretty bland, it needed seasoning or hot sauce. Overall, I wouldn't go back...unless I somehow develop a taste for hair, although I'm sure that won't happen. I did take a picture of my food before I attempted eating it and if you zoom in enough you can see part of the hair sticking out of my food - I'll be posting them.", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "2s8IB1FGuu4oyO8p2XLTOw", "review_id": "hlwHFGzh8jI_iXT2Ie5wKw", "stars": 4, "date": "2012-02-28", "text": "I always enjoyed coming here after a long night of work. The staff is amazingly friendly and always made my time here great.\n\nThe sliders are yummy and their appetizer platter they offer is great. You can choose between a variety of different munchies. \n\nOver all I recommend this place to anyone who is looking for a low key, bar atmosphere.", "type": "review", "business_id": "GwxCl1eT1lrC-PqtHTSObg"} +{"votes": {"funny": 1, "useful": 7, "cool": 3}, "user_id": "MmPOU8kbuwkE4NedXe-qZw", "review_id": "ME2ziJGfKh5eEUfShuryDA", "stars": 4, "date": "2008-04-28", "text": "The Goelet A.C. Beuf Community Center is located on 35th Ave. & Pinnacle Peak Road. This is an awesome community center with several ammenities including: classrooms, a gym/weightroom, indoor track, and dance/exercise room. \n\nThe indoor track is free to walk and is air conditioned - bonus for those walkers who dread the summer heat. Use of the gym is at a cost - I think around $60 for the year, so it's pretty inexpensive but the gym is pretty small. \n\nThey offer a variety of fitness/dance classes, at a cost, including: aerobics, ballet, belly dance, kickboxing, pilates and yoga + many more. They also offer specialty education classes including: oil painting, computers and spanish. I have taken a few of the classes and they are pretty inexpensive and last for a few months at a time - either once or twice weekly. It seems that they offer a lot of classes and activities for kids and seniors as well. \n\nOther amenities include indoor basketball court, softball fields, soccer field, basketball and volleyball courts, playgrounds, and picnic areas. \n\nThe center is always clean and the staff is incredibly helpful. If in or close to the neighborhood this is a great community center to have access to.", "type": "review", "business_id": "GV5kqyrnOTdVr1VEd-Ji5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3dno9Y7mtvi2tq6IfMpDeA", "review_id": "_3Bkr7242QwEsBzz6Q_Wqg", "stars": 5, "date": "2012-01-04", "text": "Oh AJ's... How do I love thee... Let me count the ways (BEERS)... 1...2...3...200!\n\nThey have so many different beers to choose from here. If you ever need an ingredient that is out of the norm they will have it. If you ever need an ingredient for a special dinner that MUST be fresh and ripe, this is the place.\n\nFrom 10 differnt types of flower, 15 different brands of pasta, to 20 different types of EVOO, if you're making a really great dinner, spend the extra couple of bucks and get your stuff here.\n\nOne day I'll be able to afford the prime steaks.", "type": "review", "business_id": "UWc8_M-ecCNLfrkIzwwRQA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "2h0A-NirfNl2p2SquFWYHQ", "review_id": "A25YcZo0OwgYvWzElQqq1A", "stars": 4, "date": "2011-06-23", "text": "A non-red meat eater walked into The Keg....that's how my story starts! I am not known for making trips to a steakhouses but I have to say I like this place. The staff are super friendly and are eager in helping you make a selection of drinks or food. I highly recommend the Strawberry Lemonade! Supposedly there's Gin in this drink but I did not taste a drop! I tried the Teriyaki Chicken with a yummy pineapple cilantro salsa! I chose the Twice Bake Potato as my side....omg there's bacon it! This was amazing and I need the recipe! They don't have a bad happy hour menu. I won't change my non-red meat eating ways but I will continue to visit the Keg. \n\n\n*Side note: Yes I eat bacon. I don't eat Red Meat by choice and not for a cause.", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bFVetbys5Z74h1fcihmvOw", "review_id": "rmEX8SzYICMjCi8wdbx_hw", "stars": 5, "date": "2009-08-28", "text": "This little joint is right down the street from my crib and I've had the chance to dine here on several occasions (take out and dine in). Each and every time its been great! Extremely fresh ingredients and even better prices!! Great local place to get some great grub on a small budget. Highly recommended!", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "f6q_pSwkHMNbRusrX5Pkfg", "review_id": "rw7Fo0nrEObyNpVKF0z6Cg", "stars": 1, "date": "2010-09-08", "text": "despite it's billing as the 'largest thrift store in north america,' i'm pretty sure this is the island of misfit goodwill items. the place is huge, but i've never, ever found anything good in this store. i'm not sure how that's possible. but i would never go out of my way to shop here.\n\ni have no bathroom report for this location because i've never been in there long enough to actually go.", "type": "review", "business_id": "Z3Ebz6iK7yLEMeTe-iSXlQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "zl0ZBtj3Vuj2ZZ8BI13g4g", "stars": 2, "date": "2008-07-18", "text": "After hearing for years that this is Theeee Best Breakfast in town I finally checked it out. Now I've been twice, and I just don't get it. I just found NOTHING special about this place at all. It's a cute breakfast dinner and the pancakes and waffles are ... well, pancakes and waffles.\n\nBoth times I've been we had to wait to be seated, and both times I didn't feel it was worth it.\n\nIn my opinion Palette, Over Easy and Matt's Big Breakfast are so much better. Of course your mileage may vary.", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0N3g3U02PR8iCyY7BdP0dw", "review_id": "P2jSIUphnPr11RyiEqT6xg", "stars": 5, "date": "2012-05-08", "text": "My wife turned me on to this gem. Her family has been eating here since the 70's it never disappoints. The machaca is moist not wet like many others. The Pepsi from the fountain is the best fountain soda anywhere.", "type": "review", "business_id": "BM0-dgPJMBMmcmO9PVCJfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YO7evzJc9HcoTJVE3FA4eg", "review_id": "OwPyykQcZeHpaVq9fqmGbw", "stars": 5, "date": "2011-10-02", "text": "I love this place! The owner is always there and you can tell he takes great pride in what he does. Great food and great customer service!", "type": "review", "business_id": "oOehX_l0odQc-tu81VUkIg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YmwVEGMrVxelz8IB9b-84A", "review_id": "rePYrDbIeRxlvwj3uIFUaA", "stars": 5, "date": "2012-04-05", "text": "The best fried calamari in Surprise! Delish pizza! Consistent quality and service, never have been disappointed since we moved here in June!", "type": "review", "business_id": "kN8792XEJfCtpD5GJLmI6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "_wGgKx5ijEXlU7q_Mp11fA", "stars": 4, "date": "2010-10-14", "text": "I don't know what else to say that hasn't already been said! I went here for my birthday and it was such a nice and special occasion. Having Christopher cook for you and talk to you is such a unique dining experience and I wasn't disappointed. \n\nHowever! I would have appreciated being told to have cash up front. Also, it got really smokey in the restaurant (it is so small) and everyone's eyes were tearing up towards the end of the meal. \n\nI would recommend this place to anyone!", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7H4P71XuPBDVhriA4RIluA", "review_id": "LULc2P8h_Zapr3kr0pkNkw", "stars": 4, "date": "2012-01-13", "text": "Efficient friendly service and good fresh-squeezed juice. I rarely eat breakfast food but I enjoyed their New Mexico skillet.", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Znu5KKqytHfmjbXfQo3f4Q", "review_id": "KIdwAIKdN6psIKBP2OWAfQ", "stars": 4, "date": "2010-12-17", "text": "Eh? How have I not written a review for Matt's? I went there a while back, but thankfully it won't be hard for me to recall the experience!\n\nPlace - Small.\nFood - Fantastic.\nWait - Usually.\nBathroom - An adventure.\n\nWe didn't have too long of a wait when we went, but that was entirely luck. I've seen crazy waits here, which is just par for the course when the food is good. Most of it is local and very, very good. Service was fast, and spot on.\n\nThe bathrooms are next door in an old motel. Apparently a separate room set aside just for Matt's. Just one more stand out feature for a very stand-out sort of place!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "EWWiBuidTJtHGSYM21i9iQ", "review_id": "q1QBWh2l2OTz84e5bxDtGA", "stars": 5, "date": "2008-05-16", "text": "I loved Joe's Farm Grill...you haven't lived until you have tried the Blue Cheese Burger..(not sure what it is named on the menu)...I fancy steak encrusted with blue cheese, this burger is the next best thing. Their garlic fries are to die for...heck, everything they cook is incredible...worth the drive...", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZUERBXNzvZMGyu02wlIKZg", "review_id": "GMQQaPqxjsjq5FlPiyfi_w", "stars": 5, "date": "2011-07-23", "text": "Best pizza in the valley that I've had (I've yet to do Pizzaria Banco). Great service, always made fast, and GREAT pricing...doens't travel well, so if you're gonna have it in your car for a while I wouldn't recommend it...I think that's why there's a lot of \"soggy crust\" comments etc...", "type": "review", "business_id": "B_fVPPUxw0TA9TfT5NB5AQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7lYUPgVDzJeJM7r5cyvumw", "review_id": "vR5o8fz6l9matgMcL5gqwA", "stars": 4, "date": "2012-04-27", "text": "The food here is consistently good. We tend to come here annually at Christmastime while shopping at the mall. Went last week with the ladies and had the ultimate food envy watching my cohort eat a chicken salad sandwich. Came back this week to test it out and it is the BEST chicken salad sandwich I have ever eaten. May have to add this to my rotation of dining spots. \nMy other dining mates had the Shepards Pie, which was delicious and the grilled fish tacos which were also exceptional. I always have a sense of trepidation when I pore over the such an extensive menu. But 3 out of 3 dishes were a winner. Yet another chain with multiple locations in the valley.", "type": "review", "business_id": "78IaYCf9ktUep4UhhjXbTg"} +{"votes": {"funny": 3, "useful": 9, "cool": 10}, "user_id": "kGgAARL2UmvCcTRfiscjug", "review_id": "lZMTuKJ8RzL6FHv_cOInjQ", "stars": 3, "date": "2011-08-01", "text": "You have to know what you're looking for to find this place. I've passed this location several dozen times and never realized that a restaurant & bar was located underground. A friend of mine invited me to have a few drinks and some dinner and I was intrigued, so I decided to go for it.\n\nWe sat at the bar and ordered glasses of Wine and some Oysters. The bar was packed, but we were able to comfortably enjoy our food and have a conversation. The food was OK. The Wine was the house Zinfandel, which was *eh*....but I didn't like the call options, so whatever.....now I know not to order Wine here.\n\nOverall, it wasn't too bad of an experience. Next time, I'll go with a Beer instead of Wine and try sitting in the dining room.\n\nReturn Factor - 80%", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 10, "useful": 7, "cool": 6}, "user_id": "K2TQ1HBU51Y8i6MCDI7gLQ", "review_id": "eawak5Zr_tyWWJSK_LvDWg", "stars": 4, "date": "2008-07-26", "text": "I will tell you exactly why this place is so great.\n\nThis place will blow your mind. Not only is the service good, but the food is amazing. \n\nHere is the rub, your friends are drunk and they start babbling on about wanting to go to some Mexican food restaurant that inevitably ends in the letters ____berto's. It does not matter which, they all are basically the same. You go and get your gut injected with evil and then are forced to deal with that for 10-12 hours. Talk about regret. Don't do it. Like a child of abuse, you have the power to stop the cycle.\n\nSay \"Nah\" Like the famous sunglasses kid, \"Let's go to Mi Patio and have some fantastic food, amazing service, and keep drinking to boot.\" You will be a hero. You will make Ironman look like AquaMan (He's a Chump. \"You sir, command that fish into this taco.\"). \n\nShort list of amazing things to be had here:\n1. Margaritas.\n2. Mi Patio Taco. Not a taco and not a burrito. What is it?\n3. The Chips and Salsa \n4. Chicken Tacos. \n5. Ice Tea. \n6. Pacifico", "type": "review", "business_id": "cVejKU_SrdbvzIbQ4oPV0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rbJ-qICYEbuuizlzAt29yA", "review_id": "S3eT0vq2Cd8PDld7_bcxMQ", "stars": 4, "date": "2011-09-01", "text": "At least one a week. Can't go wrong. \n\nMy family's favorite chips & hot sauce anywhere.\n\nWife loves the veggie burro.", "type": "review", "business_id": "zXg2O_QnpHQVD7e1azAu_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3gcWln_pMrg_Qt89BlfEUg", "review_id": "nDtHTuCxgTdsBzYc-wb8Lw", "stars": 4, "date": "2011-01-14", "text": "Alot of the items is presented neat and fresh. I like how they have fresh spinach and beef cube. Didn't care for the sushi or the mongolian BBQ though. But for $7.95 weekday lunch buffet I think the value, variety and quality is there.", "type": "review", "business_id": "-Ogv7rpcgUHkFaSy3vD8Sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lG6Q5OvamVHUSk9MPE6Q4A", "review_id": "mrzSMQKi4mYqvtvaV-L-pw", "stars": 5, "date": "2012-11-13", "text": "Best pizza in AZ, hands down.", "type": "review", "business_id": "GvwDppcJLm9lso9iS2hSIw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "9m2wQ0vU_nijlh09v4jgNQ", "review_id": "Le5HqwNVMGTXmELMxHRhRA", "stars": 2, "date": "2008-01-02", "text": "So normally I'm not that tough on places, but I think when you're serving Mexican food in Phoenix, there is a certain level of expectation.\n\nThey get one star for having decent service and another star for having quite good portions. \n\nOn the other hand, the food was crap, especially for the price I was paying. I had steak fajitas, not normally the cheapest thing, but for something between $12-$15 I expected something tastier. If they had been the most delicious thing ever, I wouldn't have cared but I didn't even take the half of the food I had left home. The steak had a funny after taste and a lot of my onions were burnt. The beans were mediocre and tortillas were average. \n\nOn the whole, it was a decent dining experience but not what I would have wanted for the price. You can get a lot better Mexican food in Phoenix (and for a lot cheaper). I'd recommend coming here only if it's the most convenient place.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OLtpWG394b4VVQhYht2cIg", "review_id": "UYScJVVc45vo6Cfg5ZuQjQ", "stars": 4, "date": "2012-11-26", "text": "Ate here twice while staying at the Biltmore. Ordered the breakfast buffet and Bloody Mary the first day, which would warrant 3 stars. Basic buffet with sausages, bacon, eggs, potatoes, french toast, omelet station, and desserts. Omelet station was one of the better ones I've had, but everything else was average. Bloody Mary had cheese, shrimp, and some other things on it and was quite tasty.\n\nOn the second visit, we had the lunch special which was chicken salad served in a tomato bowl and a pizza. The chicken salad sounds very simple, but was extremely delicious. The pizza was one of the best I've had in a LONG time. I'd definitely order the pizza again.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WVO0fhZlCZ2k05nnxnnyZw", "review_id": "FkgS1ApqSOt2rT0b5YmDSg", "stars": 4, "date": "2011-02-27", "text": "Met my friend Jackie to grab a cup of coffee and ended up staying for hours! It is a great place to relax with comfy seats and a great vibe. We plan to go there one night after a movie to sit and relax while listening to the live music. Very cool. They have delicious sandwiches and their baked goods looked amazing! \n\nThe baristas are so nice and helpful and very friendly. The place is modern and inviting. They offer so many organic healthy choices. It is located in Norterra close to the Harkins Theater.\n\nGlad she suggested this place ~ we will definitely be back.", "type": "review", "business_id": "sF3k_ZSndah1OwduVlb8_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kE2Dw1sKMeaDOpyZNVQKJQ", "review_id": "xDBJ3ydTHFIjZ0M8E84Z6Q", "stars": 3, "date": "2012-10-20", "text": "The food and drinks are blah, but the service is always great! Happy hour and trivia are always fun at Skip & Jan's.", "type": "review", "business_id": "ht17atGW3tP8dFeiJkXI_g"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ZC49A1K-if7KP8VJXoqELQ", "review_id": "-7qEdFzHUZqwn_g25tjReg", "stars": 1, "date": "2012-10-30", "text": "I was really disappointed with my local Baja Fresh tonight. The lobby, salsa bar and even drink station were very dirty and unkept. To top that off my salad had old dark colored guacamole and limp lettuce.\n\nI hope they read this and will do a better job at cleaning up!", "type": "review", "business_id": "dD2xiLM1_5Vg0pMvMIPZww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XLah_ynCwwYshCY9jc13tw", "review_id": "3R2Vfs6v84HIKzvYPKxZ_w", "stars": 5, "date": "2011-11-14", "text": "I don't think I've ever been to this place when it's not been crazy busy. It's just a small little eatery, but it's always busy. They have some great food and the peanut butter pie is delicious. Just a place to hang out and enjoy some breakfast, lunch, dinner or snacks at. Parking isn't the best and that is a problem, but if you live close and can walk, its ideal.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "AjWGxRkg3Yl_q18Y7J-kjw", "review_id": "ClTWi--5a2esHKDVDVmJmA", "stars": 5, "date": "2010-06-22", "text": "They have the nicest staff and the Dr. is always open when examining our dog! We have boarded her there as well and the staff is so kind, and when our dog gets there she cant wait to run up and play with the staff!", "type": "review", "business_id": "zEvJiYlqnRaIk77Kn4-_Uw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lBMCBwbAhfgb5oKqilA7CA", "review_id": "rFCyIolhH-ts2RSAcFx1lg", "stars": 2, "date": "2010-01-26", "text": "I went here on a pub crawl after being turned away from an overcrowed Majerles during one of the Cardinal's game. I was surprised to find the place nearly empty when just down the road Majerles had people falling out the door, but after ordering a few round of drinks I soon found out why the place was empty. The bar tender and manager were annoyed by the size of our group. When most empty bars would probably embrace 25 people walking in the door wanting to order drinks, the Stoudemire's staff seemed overwhelmed and annoyed. The restaurant is nice and clean, and the drinks were good yet overpriced. I would defnitely not reccomend it for large groups. For people looking for a good sports bar downtown head to Majerles because the patrons there seemed to be enjoying themselves and the staff seemed to enjoy having business.", "type": "review", "business_id": "Ydc74ermKp1L4fYOrPvzXw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JzcOAtuVYtP8Phih3v1CaA", "review_id": "BAkdOMnqQFrRP3ZC137sgA", "stars": 5, "date": "2012-12-18", "text": "Tried this place for the first time tonight, and was impressed with absolutely everything. Well-lit building in a decent location in the Arcadia area. I drove here from the Garfield neighborhood and it was well worth it. Juicy chicken and awesome cafeteria throwback crinkle fries, along with one of the best slices of toast I've ever had. All three of these foods were still crispy when I got home, which almost never happens with fast food. I wish I had gotten the girl's name who took care of me. She was cute as a button- very enthusiastic and happy to answer my questions. I'll be back here soon!", "type": "review", "business_id": "w7SrsFV4FL04bhQr-B6-4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X3URnrCzt9PLfTb2JbZqCA", "review_id": "FHsULLIn4bCvvV9DIdEx4w", "stars": 4, "date": "2010-08-18", "text": "Pf changs is pretty good, there changs spicy chicken is a really good dish, the service is great! I go there almost every two weeks.", "type": "review", "business_id": "UtUXhKh7vOVvWJF48IzJvQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "qwu5B9anH4AlEtau0K-6aQ", "review_id": "s9QLmuvRSmBZ_xKLl-Y55g", "stars": 4, "date": "2012-02-08", "text": "Great selection, and great prices! Get a customer card and rack up points... at the end of the year, they send you a coupon to use on your next visit. I spent $50 last year and got a $5 off coupon.\n\nStaff is knowledgeable and are always available if you need help. They have a self-production line of products that are great and cost much less.\n\nGo check it out!", "type": "review", "business_id": "fMqEPInEm9Fl5h8oJWPEjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FPljkW6R0DXXbMFfKtTCXQ", "review_id": "fneClVcJoxStK4l6RXUU-w", "stars": 4, "date": "2009-11-27", "text": "The customer sevice and ambiance here are always great. The managers have always taken care of any issue we've ever had.\n\nThe prime rib is really, really good! So is the Steak Au Poivre!\n\nThat said, I have to admit that the rest of the food can be pretty hit and miss. I've never had awful food here, but several disappointments. The managers and staff are so polite and work so hard to make things right that we keep coming back.\n\nThe pricing is a bit high for the inconsistent quality, but well worth the early bird and happy hour pricing.", "type": "review", "business_id": "P5a2hK5G64J7DcNwLAPhuA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "93CVZEe3_HTk_GdDZOHy6A", "review_id": "LP7_iFHFplJJ5IIofPM1rQ", "stars": 5, "date": "2010-01-25", "text": "Great spa... If you don't mind spending a few bucks, this is the place for you. Neat water fall room, roof top pool, and eucalyptus room! I've had multiple massages here & they were exceptional. Outstanding customer service too.", "type": "review", "business_id": "AtoMSHZ-lO7kxHRBdioMtA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "jB_tZ641WMpp1Hve7Jblaw", "review_id": "YgiclUnPI2T68-sPy46NRw", "stars": 5, "date": "2010-08-07", "text": "I cannot get enough of LGO.\n\nMy favorite time to come is very early in the morning to enjoy the sun coming up over Camelback Mountain while having some organic coffee and a blackberry bran muffin.\n\nThe breakfast at LGO has something for everybody, IMO. Try the Croque M'Dame if you want something really bold. \n\nThe lunch and dinner options are great too. This is the only restaurant I have ever been that I could eat all three meals and feel like I was being served from a different kitchen each time.\n\nThe only draw back I can think of for LGO is the tendency for it to become very crowded. That's the best problem a restaurant can have, so they're probably not too worried about it. The parking situation can become an issue too, but for my time and money, it's worth it.\n\nLGO is top notch in my book and you can find me there pretty regularly.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 7, "useful": 12, "cool": 11}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "m4mnk72il6rzdfkJqdQ_zA", "stars": 5, "date": "2011-01-04", "text": "4.5 stars!\n\nI've eaten at Liberty Market a few times already, but this morning marked my first breakfast- and what a fantastic meal it was!- of pancakes (3 in a stack; $6.5) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=Xg8U6Fz2E8hu0xQ3Hf7CZg#Xg8U6Fz2E8hu0xQ3Hf7CZg w/ added topping of \"market-made granola\" ($1), a side of Grilled Flattened Meatballs ($3.5) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=MMwKpMltbKCWNNlraI-tGw#MMwKpMltbKCWNNlraI-tGw, and a double-shot of espresso ($2) http://www.yelp.com/biz_photos/3N9U549Zse8UP-MwKZAjAQ?select=M1WrCuX3oouHHrynL8KJQg#M1WrCuX3oouHHrynL8KJQg. Service was in fine form-- I couldn't have the market-made maple syrup blend, nor any of the house-whipped cream, blueberry compote, raspberry and apricot jams, or any of the flavored syrups used at the coffee counter (my server patiently checked for those items we were unsure about), and when I asked for chocolate chips, I was, instead, offered a chocolate syrup made from scratch composed of chocolate, sugar, and coco oil... good stuff! This syrup would be excellent on ice cream sundaes, too. (FYI, I didn't really need anything extra to add to the pancakes and meatballs... the two paired well!)\n\nI've mentioned this once before, but I think it's such a great thing to yelp about again-- buy an espresso (or any of their specialty coffees), and you can have unlimited cups of regular coffee during your meal! Not like I needed more caffeine after the double-shot, but I did have some of the house-blend coffee. After 1.5 pancakes, the meatballs (watch out, they're very greasy!), and caffeine, I'll be good to go for a few hours, despite only having four hours of sleep! (I'm hoping, anyway!)\n\np.s. Despite tipping more than 20% at the cashier upon ordering, I thought Bruce, the server who took care of me at my table, deserved a couple more bananas for not displaying annoyance at my staying here so long. One more reason why I love Liberty Market so much! \n\nAddendum: After getting directions from Bruce as to the quickest way to 101 N, he asked me if I wanted a cup of coffee to go, gratis! Have I told you how much I love Liberty Market??\n\nHelpful hint: Free wifi can be accessed by entering the code printed at the bottom of your receipt.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xz1w0h7wDI22IZKi-CnrHA", "review_id": "S96nb5pz707U-VNGJOjPdQ", "stars": 5, "date": "2011-10-09", "text": "Delish!!!!!! x 100!!\n\nLove, love, love this place. This is the place that made me a Vietnamese fan for sure. My friend brought me here and I was blown away but the tastiness of their food. Their spring rolls are so yummy! The chicken noodle soup flavor is a winner in my book! Everything on the menu is delicious, though I haven't tried is all, I'm sure it is!", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "qcBEh_PFohFIJFcK9J23Sg", "review_id": "YYwSsNq89pf7cX0BpetAWA", "stars": 5, "date": "2010-04-20", "text": "Went here tonight with the padres and husband. This place is the whole Joes BBQ/Joes Farm Grill owners. We saw that it was the highest rated here on Yelp for restaurants in Gilbert. \n\nPaper menus are available near the counter where you order your meal. We started with the Hummus + olives appetizer. Mom and I shared the Apricot Chicken with mashed sweet potatoes, Dad had some steak sandwich with horseradish that was very tasty, husband had the Salmon BLT with avacado. I tasted everything and ALL the food was delicious!! \n\nThere were also very interesting and unique beer and wine offerings. There is an espresso bar that sells various coffees, as well as some sweet stuff. There is still a little market in the back selling local olive oil from Queen Creek Olive Oil Mill, as well as pasta, pure vanilla extract and other items.\n\nI highly recommend a trip to Liberty Market for a fresh, home-cooked meal.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fdoaD2Ed572jhZDl_xDbWw", "review_id": "-aQ5TwcD79345syt7LJg3A", "stars": 1, "date": "2012-11-09", "text": "I have been here once for lunch and sat outside only to get eaten alive by flies, nothing worse than eating outside on a nice patio and being pestered the entire time. \n\nI decided to give it another chance for happy hour, well guess what? flies followed me inside too. \n\nI don't know if it was the time of year (early spring) or what, but they really need an exterminator!", "type": "review", "business_id": "GHYOl_cnERMOhkCK_mGAlA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yOSz69afsE04ilUfAckLaA", "review_id": "9ipDNTQDEetRIs5x0f1v4A", "stars": 5, "date": "2010-07-27", "text": "Enjoyed date night here with the hubby. Try the gluten free pizza. A-M-A-Z-I-N-G! Mmmmmmm", "type": "review", "business_id": "7Z-1mLIoxCHUxCp54W1CGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l6eB_WbjS_0y2C1MArUiOA", "review_id": "VmsPyFQoy_2vQ3VkSCumUQ", "stars": 5, "date": "2011-06-30", "text": "As a vegetarian with a fairly adventurous palate, I love Ethiopian food. And now that I work in northern Tempe, I'm here all the time. It's filling, flavorful and inexpensive. I can have a pretty big dinner for less than $10. If you, like me, think spiced (though not particularly spicy) vegetables are the greatest things on Earth, definitely pay a visit to Blue Nile.", "type": "review", "business_id": "fb9eLHJ4S--TyXsarJJo-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tb4bpDnZQuDJI_2OP37iog", "review_id": "9fEyxyu_NV_sHtkVF7tjOg", "stars": 2, "date": "2012-05-20", "text": "The service was very slow. People at several tables were waiting, far to long for, drinks checks food. The table had no bread plate , no salt and pepper. No napkins. We had to ask for everything. The busser did not seem to understand how to set a table. We ordered the beet salad, it had no flavor and huge -hard as a rock beets, no cheese. Tiny orange wedges. No good. \nI ordered, for a main dish the Covina, white fish. It was so salty I had to send it back. The waitress then informed me that I ordered it wrong! Last time I checked you made sure your food tasted good and wasn't toxic with salt. She informed me that it was served blackened, blackened does not mean coated in disgusting salt. My hubby ordered capellini. The shrimp were undercooked and not fresh. There was very little tomato sauce. It was bland greasy and void of any redeeming qualities. Again , like the beet salad, the veggies were not prepared correctly ......\nhuge lumps of tomatoes, , mix yourself? How do you serve pasta with no sauce ? Overall I would say the chef is not talented. No one bothers to prep properly, no one is tasting the plates as they are so bad it is impossible to believe the menu is being checked and corrected. In the meantime to go back for a glass of wine and an appetizer may happen as there is some potential , just a glimmer ....and , in a few months, if enough people review, and finally .....if the owner is smart enough to stop this unfortunate cascade . The patio is pleasant, I hope someone cares enough.", "type": "review", "business_id": "YQ19y3LYgmAHfgNFa01vyA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "K4UmjxSpiHZohl2MnkBuKw", "review_id": "edwU6zh_H4PGuRc0N9N19w", "stars": 5, "date": "2009-10-05", "text": "This is an amazing taco truck just minutes from the airport. I ordered the amazing ceviche and a barbacoa burrito, while my girlfriend ordered three tacos. I've said it before and I'll say it again here: this truck is an excellent example of the inverse correlation between price and taste in Mexican food. Eat here before your next flight!", "type": "review", "business_id": "adPVJMkRrS8_3VHQKw5-qw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "VfbFSDYPgxJctTcIFmXAxg", "stars": 2, "date": "2009-10-17", "text": "What is the big deal about this place?!\n\nIt's not great, but pretty good. Not bad, but ok. Just is what it is. We had some wings and a stuffed pizza, and the wings were undersized yet pretty flavorful. The pizza, I just don't understand the hype. Maybe I've had Giordano's, Gino's, and Lou Malnati's too much in Chicago but this place just wasn't it. The pizza is okay, and just okay... if nothing else, WAY too salty. After a while, I felt like I was consuming a salt lick.\n\nService was weird, and I'm pretty sure our server was on coke. the restaurant was PACKED and the place was buzzing and he came and sat at our table and started shooting the shit. It was very bizzare. We got someone elses order of wings, and didn't know they weren't ours until the server told us (after we had eaten them all) so we felt kind of bad. \n\nI'd go back here again but I wouldn't really be too eager to.", "type": "review", "business_id": "ML1RJdeZ7bbfMrHvJ7m99A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "4U4609zQhL2LPnzb-_D08w", "stars": 4, "date": "2012-12-09", "text": "Just dropped off a pre-paid label package. A young lady was on duty. Very cheerful. This was a dead-easy transaction. Drop off package, get receipt. Other than having to wait in line (there was one person ahead of me), it was quick and easy.", "type": "review", "business_id": "UCbxctETCwDkyljuvC-9VQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zSQps4R-_w8YkjDtgIsfiw", "review_id": "UQIF-LcaZvaichyXhasrgw", "stars": 3, "date": "2011-07-09", "text": "Update: Unfortunately... the last two times we've come back, the food was just ok. Definitely not $140.00 great. We even went for their three plate combo for $40.00 / person, and the cupcake it came with, I only took 1 bite. I didn't even see the chocolate explosion on the menu... very disappointing. It would be good, if it was cheaper - but at $140.00, you really want to be wowed... and that hasn't happened.", "type": "review", "business_id": "sbjb1qNUcqQomJvcgPuJCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TtSaKKJ9obIgGTxwr4UK8Q", "review_id": "6pIVCpXej2sSods1vsM3Iw", "stars": 5, "date": "2011-12-12", "text": "I was truly impressed by the quality of service and the knowledge of the employees. I have had my ears pierced at Claire's when I was 4 (way to go, Dad!) and an industrial piercing performed at Club Tattoo. I went in to adjust my bar bell for my industrial piercing and they explained a lot of things I had no clue about, like the difference in threading. The place is clean and every one is friendly. I will ONLY ever go to HTC when I need to handle my current piercings or want to get another. Thank you!", "type": "review", "business_id": "97Z7j4vH0kfzL10AONi4uA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "q-CFs-eE3mu6aCOUohvALg", "review_id": "4wJTvlHg0XWKLKRV7VHrlA", "stars": 2, "date": "2012-07-07", "text": "I went there for happy hour. The chips and salsa were good. I was a little disappointed in the service. We had to ask for everything. I sat there with an empty glass for quite some time. The bartender could have been having an off night so I will give them a try again.", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "TGB0aeOg8K4GjcwyVTXsUQ", "stars": 5, "date": "2010-09-11", "text": "Check this out...I JUST HAD A RUBEN FOR BREAKFAST!!!!! \nI saw the article about this place in the Tempe newspaper. We were already heading to the Healing Field at Tempe Town Lake9/11/10 and wanted to stop for breakfast. We had the dogs with us so choices were limited. My boyfriend went into Stan's and they let us sit on the patio with the pups. \nThey serve their entire menu all day. I'm not a huge eggs and bacon kind of person so I love having something a little different in the morning. \nI ordered the Ruben and allowed Kelly the waitress (who was fabulous) to choose the side. \nThe food took a little while to arrive. \nWhen it did...Holy Cow!!! \nMy sandwich was huge and she brought all three sides so we could taste them all. That is great customer service! My favorite was the slaw, then potato salad. \nThe food was fabulous and the staff was more than accommodating. The owner stopped by our table and chatted awhile. \n\nI will no doubt be back. Thank you so much Stan's for the wonderful start to my day!", "type": "review", "business_id": "ptHERlqZTrluKh1DJUTz1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q5nFaw9isjD_01PpVAR7hg", "review_id": "-4ZKS14yOcFjFI8ejPhCXg", "stars": 3, "date": "2008-08-26", "text": "Pretty tasty dogs. Pretty long wait for a hot dog.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "3hPmlMAP3PfHMiwNW_RUZg", "review_id": "cw840e7aVNpAzB1d0eegrg", "stars": 4, "date": "2010-04-11", "text": "I am a huge fan of the Italian beef and of course everyone is going to have their favorite places and tastes. But this seemed like a place to satisfy a lot of different tastes. There are several sizes, extra meat is available and if you are getting it to go, I'd say go for it! Only order it regular if you are a fan of super dry sandwiches. I'd say go for wet if you are like lightly moist but if you are a big au ju fan like I am, definitely hook it up with the dipped!! They have american, cheddar and provolone cheese (pretty sad they didn't have the mozzarella). They giardiniera was pretty good as were the sweet peppers. It wasn't too greasy or hard to eat while driving.\nThey did have a variety of other things to eat so definitely check those out if you aren't up for a beef...but thats what they are known for!!", "type": "review", "business_id": "m3EKlucZuwnOazLrRfnWaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MBLcbQ_miC1c11cfXQRKoQ", "review_id": "ZZoCg2QSFA2iPDdJyplCnQ", "stars": 3, "date": "2010-02-19", "text": "Today was my coworker's birthday and this was his choice for lunch. All in all it was pretty good, some place I would go back to.\n\nThe chips and salsa - the chips were nothing special, but the salsa was very good - both a green and a red one were served.\n\nI ordered the enchiladas suizas, beef, with green chile. They were pretty darn tasty. The beef was a little dry, this was the only drawback. They had great flavor. I even finished the rice and beans - which I rarely do.\n\nI get very disappointed when I order enchiladas and I get a plate that is swimming in grease and/or enchilada sauce and/or drowning in cheese. None of that happened here, which was fantastic!", "type": "review", "business_id": "uTW9SVXqxgjbnCTlEf9ONw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fIL-xbhuBoUc1FaMvyb5iA", "review_id": "Csv1m80-VUEYVsdDsmuh0A", "stars": 5, "date": "2012-08-04", "text": "We have been here now several times. This Is one of the best restaurants we have ever been to. The food and service is absolutely the best. Most everything is cooked in their exposed kitchen. Everything off the grill is awesome.\n\nThe servers will patiently answer all your questions and appear as though they really enjoy seeing you pleased with your experience.\n\nSince we have been here several times here is a list of some items we have had:\n\nFor one, if you don't mind spending the money the toro \"tour\" is great. They have something like 5 different kinds of toro. From real fatty to a little less. Melts in your mouth. The presentation is very impressive. It is served on ice with different kinds of salt and (to us) a very unique way of presenting the wasabi.\n\nAll there other sushis are served perfectly prepared\n\nThe steak is excellent. The flavor is spectacular, grilled in view over an open flame and quite literally cooked, always and without fail, exactly to you specification.\n\nAll tempura dishes are great\n\nGrilled zucchini.... Very good and juicy.\n\nSeabass with miso. Cooked perfectly.\n\nI suggest you order to share and sit at the counter. It makes for a very good experience. This is the place where you should go in without worrying about cost. Just go for it, tske your time and experience it all. It will make for a very good experience.\n\nTry their very unique drinks, they are very refreshing.\n\nOr, if you are real daring, the tasting menu is literally a 4 hour experience. \nDid it once. It's a bit long for us and wont do it again.", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8RNm-Oft6BsUWsXIdiLAUg", "review_id": "wv0kt4QNleL3Ia2SfJRx5w", "stars": 5, "date": "2009-03-26", "text": "Love the pita jungle!!! My fave is the chicken and hummus appetizer. Definitely enough for a meal and super cheap too. Also love the chicken swarma sandwich and the chicken pizza. You can't go wrong here.", "type": "review", "business_id": "Ez2MFsVT5lJZ05yvK_0AXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D4-0xGve18qMPnWQgMTbyQ", "review_id": "FnVV0gaycJrOYxVgiGiA3Q", "stars": 5, "date": "2010-10-26", "text": "A must when you visit the Heard. The staff is very professional. James, Lora and Allison are excellent. The shop is first class. Great place for a collector. Some of the finest Native American art available. Highly recommend a visit. You will be amazed.", "type": "review", "business_id": "tUWLVIY6sbwLRheFJPYmPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TEGWADXt1VA1832jbVtSqA", "review_id": "7qbR49rGZawb-wZ1bDqmzA", "stars": 3, "date": "2012-01-03", "text": "Pretty decent food. Friendliness of staff is hit or miss.", "type": "review", "business_id": "Agz-gMJfjCsK5tdKC6FBYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3hPmlMAP3PfHMiwNW_RUZg", "review_id": "on6nBRNfAS-Yw4z0M1Zfiw", "stars": 5, "date": "2012-04-20", "text": "Great flavors even though there aren't many to choose from! Fresh fruit is such an awesome feature as most places are def not and limited to the healthy choices of topping! I visit as often as I can!!", "type": "review", "business_id": "MLkcik_rEYW_CtyrL3yhUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_dSomu2s3PuVar57Zrpu6A", "review_id": "HflRI4pPtjqOlNGVw6IR0w", "stars": 4, "date": "2010-07-25", "text": "The service here is wonderful. Let me start by saying that, our waitress (I'm mad I didn't remember her name) waited on us on the patio. She was so nice and our friend can be a little overwhelming and has a strange sense of humor. She made sure everything we wanted we got. Even modified the desert special so we could have a hybrid of the white chocolate chip ice cream and a brownie dessert. My filet was wonderful and at a great price of 24 bucks... Me living in san francisco where filet's cost 40 bucks a piece this was up to par. The corn salad is also worth mentioning, wonderful flavors. Anyway, I could have been happy with many items on their menu... Also, get the dragonberry lemonade it is on their specialty drinklist and is great on a hot day!!!", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3BvvoNFdTkzb8cqmxA6W3g", "review_id": "H8H5o-lJZ8X_Zhp964ygHg", "stars": 5, "date": "2012-03-05", "text": "Great facial great customer service\n\nOne Love Boutique Spa consists of the waiting room/reception area and the services room. Its small, cozy but super cute and inviting. I love the way it's decorated which is what drew me to buy a Groupon for a signature facial after looking at the website. The decor is white, clean, girly and classic.\n\nI was disappointed at first when my initial appointment was cancelled two hours before I was scheduled due to Amanda coming down with something that was contagious, I guess I was thankful too.\n\nWhen I came in for my facial I explained that I was one of the appointments that was rescheduled due to her illness and she upgraded me to the anti aging facial for free! She also includes eyebrow waxing with every facial which is awesome! The facial was AMAZING and Amanda is very knowledgeable about what she is doing and the products she is using. \n\nBefore my facial started I had asked her to mess up my hair as little as possible since I was going somewhere right after, she kindly obliged and when I left my hair looked exactly how it looked when I came in.\n\nAmanda is great and I will definitely be back!", "type": "review", "business_id": "qvi4WPA5e37J8xgKqjXerQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "2kZQi3pGOXFNewK0AI83Dg", "review_id": "RfSxm7Zylz80V2NwdFBAmA", "stars": 5, "date": "2011-02-18", "text": "The best street taco's i've had. As authentic and cheap as it gets...\n\nIf you do take out, pick up a bombaros burrito for lunch for the next day as well, its really hot, but tasty.\n\nDon't tell me ATF or any other spot is better, they dont come close unless you like your \"street tacos\" with sour cream, cheese and lettuce LOL.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "ut3yURTCq7V5alsWUksEjg", "review_id": "cfOrdnJ9zvnc7azAXHiXJA", "stars": 4, "date": "2011-09-22", "text": "Very good food. Our service was great--thank you, Heather. She guided us to some good wines and food recommendations. We'll be back", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mu2h8COMhAdnoQQ42TUTSg", "review_id": "rql2bB8VdgjNh5kejRytvA", "stars": 3, "date": "2012-02-22", "text": "My niece want to go here for her birthday, on a Friday night. The wait was about 30 min. \n\nThe onion blossom was not as crispy as I remember but still pretty good. Its horseradish sauce was stronger than I expected. I had to ask for a side of ketchup. \n\nMy steak was cooked as ordered (medium rare) but lacked taste somehow; the lobster tail was grilled right. The steak of my niece was on the dry side (overcooked). My daughter's steak was as she liked it (medium rare).\n\nFor dessert, we shared a gigantic scoop of ice cream and whipped cream and an Oreo waffle with more ice cream and whipped cream. We couldn't finish.\n\nThe service was good. Our waitress was very friendly.", "type": "review", "business_id": "ufKmcpK6OTaWzeBGWNOa8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "6lhAC_tkrYqVc7-CzLvRBg", "stars": 3, "date": "2011-04-01", "text": "Another \"do-it-yourself\" bridal shop with rows of dresses tightly packed on racks in big plastic bags. The woman was super quick swapping out the dresses in the room. As soon as I walked out in a new dress, she had the old one out and the new one ready to go and waiting for me in my room. I might have rated this store a bit higher, but I didn't seem to have any luck here. Dresses were either way too big or way too small and I just didn't find any that I liked. I have heard of many people having success here and the prices are reasonable, just didn't work for me. The dress shopping continues. . .", "type": "review", "business_id": "ksKCstSjAqxjpEj1dBZ3vw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wgyE92HRuM-Suxtwk2HONQ", "review_id": "TWjlo5NkFSGNwkx464NQnA", "stars": 4, "date": "2011-07-07", "text": "Cute coffee place located right near work, so I stop by for an iced chai and a muffin before my morning shift. The staff is super friendly and knows my order by heart, which I love. Pretty good chai, too! Not the best but much better than some other places, and when it's made like soy, it still tastes spicy and delicious (unlike a chai I had at Cartel which tasted purely like soy, super disappointing). I haven't tried their Avalanches yet, but I really want to, they look really good. Prices are decent too, about $5 for a medium chai and a delicious muffin. \n\nI think the decor is cute too, looks like it belongs up north in Flagstaff or Sedona.\n\nAll in all, if you're in the area, definitely stop by, but I wouldn't necessarily go far out of my way for it.", "type": "review", "business_id": "z2YTaHtGod3i3BBbKiMNwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bHFVi9iJ_sH6IiyQazdhQQ", "review_id": "uYDaI1vKEL-VcxbhvW3emQ", "stars": 2, "date": "2011-10-18", "text": "Blah...Very disappointing. I ended up at the San Carlos when it was the only hotel downtown that wasn't sold out. I don't think it was worth the $200 a night, but I didn't have a choice. \n\nThe shower was amazingly tiny. I felt like I was being frisked up against a wall just to wash my hair.\n\nThe walls are super thin. I could hear snoring from one room, coughing from across the hall and the TV on the other side....just awful.\n\nThe staff wasn't very helpful---forgot to program a wake up call, refused to assist when an alarm had been going off in another room for over an hour in the middle of the afternoon, etc. \n\nThe ghost lounge was very cute...I went down and it was a swing night which seemed to be fun. \n\nI'd be willing to come back to the lounge, but not the hotel for sure.", "type": "review", "business_id": "_yfprBETaYgySkKyl8ZWMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "XrrTxbKVGIuPwaM4lAt_Gg", "review_id": "NuU3hi3Bsm3sUcSzmE13rQ", "stars": 4, "date": "2011-03-15", "text": "We were exceptionally sun deprived by the time March came around, so that may have swayed my review to be exceptionally sunny. I was pleasantly surprised by the FLW inspired architecture (I didn't do any research on the hotel-my husband picked it) and by the beautiful grounds. Our room was very comfortable but we spent the majority of our time at the pool or on the patio relaxing. It is definitely not 5 star service across the board, but no one was rude. Our room wasn't cleaned the entire 3 days we were there, even after we asked the front desk to send housekeeping. That didn't get us down--after all, we didn't come there to hang out in our room. At Frank and Alberts, the staff gladly switched the TV to the game we wanted to watch and the food was great.", "type": "review", "business_id": "5Feaj6aixO_QxKFnkHf3xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U5TnaAf__Bn1wbe44T4c_g", "review_id": "zwKPh_Wjv-_6lHs3bkrV5g", "stars": 4, "date": "2012-10-11", "text": "A comfortable little wine shop situated just south of Old Town Scottsdale. Every Thursday they bring in a distributor or vintner to showcase a set of wines at their bar and collection of tables set off to the side. For $15 you usually taste five or six wines of decent quality, the best part to the price is that $10 of each tasting goes into purchasing a bottle of one of the wines tasted. The atmosphere is quite an eclectic mix of high-brow, with food and clientele from Atlas Bistro migrating in, and casual. The people running the place couldn't be more nice or more knowledgable in the wines they sell either. The prices may be a touch above somewhere like BevMo, but if you're looking for the perfect wine to go with gnocchi in a basil cream sauce, these are the guys to ask!", "type": "review", "business_id": "xKXahNKbBUZtOPWibwq94w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bd17-disjLNGxvnxdatsaw", "review_id": "2F2A1yoc4C36o4haEiwwUA", "stars": 4, "date": "2011-09-19", "text": "Great place to grab some quick mexifood. Service at this location has been great. Fast and efficent. Try the pick two for a healthier smaller portions!", "type": "review", "business_id": "Vak7jP7fu6LUxQDZmSZE3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hoUUGRG0Lr8QgI4CrNeGRQ", "review_id": "eofH2KzzXNe7wzNINgDwoQ", "stars": 3, "date": "2011-12-07", "text": "Found this place by accident. Not the greatest location.\n\nThe pulled pork rates about an 8 on my scale. Didn't need sauce, but the sauce (sweet) was good. The Ranch beans are a tad spicy but still good. The slaw needs a little help.\n\nI will definitely go back and sample the rest of the menu.", "type": "review", "business_id": "dzncF6n6MHJLXUo4_J6eig"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "8FvfywrS0X1QDn9wH8xCvQ", "review_id": "nPJtMwgjhsw6aYu8qW9b9Q", "stars": 5, "date": "2012-02-04", "text": "I love Jimmy Johns!", "type": "review", "business_id": "boxO5rTwArJqyjOQyBYxcg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "mxwQi0rr25dIvHUaCs7EFQ", "review_id": "QepAp9sN5TIzfefBKAoRiw", "stars": 4, "date": "2010-02-05", "text": "The naming of Asian themed restaurants is in need of a serious makeover. I think this is the next frontier for marketing gurus; a potential fortune could be made here. Most restaurants fall into the category of being painfully bland (\"China Food\"), vaguely insulting ethnic caricatures (\"Mr. Yings' Happy China Meal\") or horrific puns (\"Pho Sure\"). Names like these don't inspire a lot of confidence in the quality of their food, even though that's not always the case (for example, \"China Food\" was actually pretty good).\n\nSo when I saw Thai Elephant, my mind immediately reversed the name which sounds suspiciously close to a parasitic disease (elephantiasis). Plus the fact that it's located in a strip mall is a bit of a red flag. But a growling stomach can overcome these biases and so I pulled into the lot......\n\n......And was pleasantly surprised. This is actually pretty good Thai food. The inside is a little more ornate than you would have expected; there's the whitewashed walls that fits the strip mall theme, but the furniture is darker wood with slightly dimmed background lighting. A large screen TV was playing the Suns game in the back room and a small bar is present in the front part of the restaurant. There are a few tables as well as some seats with a mix of wooden booths and chairs.\n\nStill wary, I ordered the hot tea, Thai sweet potatoes and chicken Pad Thai. All of these were above average: the Thai sweet potatoes were perfectly fried and mixed well with the slightly tangy sauce. I may have eaten more than ten times my body weight in Chicken Pad Thai over the years, and this was definitely above average. \n\nAlthough I was just here for dinner, I did see that they have a Happy Hour which runs from 5-7 pm. \n\nAll in all, it's a pleasant place that belies its' strip mall exterior and is worth a visit for respectable Thai food.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DYC9uqPYAwI_q9J9RknWvg", "review_id": "-aP_4AMgkUzoWiK2WNom0w", "stars": 4, "date": "2011-03-07", "text": "They have Veggie Dogs! The veggie dog will run you about 40 calories fewer than the regular turkey dog. Happy eating :)", "type": "review", "business_id": "o0Sm7tDF8wx6w9F2ZbdG2w"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "XTFE2ERq7YvaqGUgQYzVNA", "review_id": "foLjJgYPM1ZySY0keP0DxA", "stars": 3, "date": "2012-11-08", "text": "NOTE TO SELF/OTHERS: Check zoo hours before going. Apparently they close at 4. On a Saturday. When it's beautiful weather. Maybe that's an obvious close time to everyone else but we sure were disappointed.\n\nI guess there is a whole slew of stuff we missed seeing, and some other exhibits we passed were closed for a wedding. I guess it's cool to get married in the orangutan exhibit. Or else the orangutans were getting married. (Maybe those anti-gay marriage folks were right in that it would lead to animal marriages??!)\n\nAnyways, we all know it's not the greatest of zoos because it's freaking hot half the year and it's not super nice to subject a lot of animals to 115 degrees. But it's a decent enough selection, they have friendly staff, it's clean, and they have free parking. GD I love me some free parking.\n\nLots of the \"learn more by pressing this button\" things didn't work. At least one water fountain didn't work (but hey- it was conveniently next to an overpriced soda machine!). Like most other zoos they make you exit through the gift shop, so your wee ones can spend the car ride home crying about how they didn't get x overpriced toy/stuffed animal.\n\nI do think if your kids are young enough, you could probably just take them past the ticket counter and check out the animals you can see below the bridge/in the water. Those ducks, fish and turtles are FREE to see, and what 1 or 2-year old needs the whole menagerie anyways?", "type": "review", "business_id": "1Ap6ZNCvyLLKHP0wvCk9yA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ClwvJsIns4ESympKrDaqGQ", "review_id": "dJ41ojtcx-folN8pqV6jnA", "stars": 1, "date": "2011-06-12", "text": "I used to always go here for tires until my mechanic noticed my tires were the incorrect size. Back to Discount I go to correct the problem, and they blamed me. I was told that I must have chosen the smaller tires to save 20 bucks a tire. I ended up having to spend a lot of money on five new tires (my spare is a full size as well) three weeks before Christmas. I wrote the company a letter to tell them how wrong I felt the entire experience was, and I never heard anything back. I will not be going here for future tire needs.", "type": "review", "business_id": "e0wJd1deF4Wl-etBC7nBgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "QT0oe040EXtdyd-WqgDKiA", "stars": 4, "date": "2010-03-24", "text": "Almost as good as the original Boomers. Wasn't quite there for me but maybe because I was there on a Sunday and the help clearly wasn't into working that day. Can't say I blame them though.\n\nAnyways, same good menu selections, good prices. Sliders were tasty but not as good as at the original Boomers. \n\nNeedless to say, I'll be back and try them again. These guys have awesome Chicago dogs and it would be a shame not to try them here!", "type": "review", "business_id": "eRhl0bBMEeCRaOJ8gbSw9Q"} +{"votes": {"funny": 9, "useful": 7, "cool": 6}, "user_id": "NqeD28GGg1Wdj9BfaHqr4g", "review_id": "K5NWVLyOtsQNSSORx13z9g", "stars": 1, "date": "2012-01-31", "text": "The music is pounding...\n\nIt reeks of ridiculously strong cologne masking young adult male insecurity...\n\nSome guy younger than my kid brother is walking around without a shirt...\n\nEverything is super overpriced for what you get...\n\nIn the grand tradition of overcompensation and brand whoring there is a name plastered all over everything...\n\nNo one is genuine either in their efforts to help or able to make real eye contact and stop texting...\n\nIs it a bar in Belltown in the late 90s? Is it a frat party? Is it a spring break trip?\n\nNo, it's Pimpercrombie & Bitch! Now I remember why it had been at least ten years since the last time I walked in one of these cesspools of humanity and child labor sweatshops. Maybe next time I will wait 20 years...if they make it that long.", "type": "review", "business_id": "dH3E5EBlXU5s2Ev86iv3Cg"} +{"votes": {"funny": 12, "useful": 10, "cool": 11}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "hOKYjPMOc5QoLgyy6g1mpw", "stars": 5, "date": "2009-05-24", "text": "Torn between review Fez Foodies, the periodic event that allows patrons to participate in sampling yet-to-be-added menu item and tweak them based on responses and the actual restaurant that hosts said event and providing a CenPho restaurant that combines innovative cuisine with ambiance and amazing service, I settled on the latter. Because without the brick-and-mortar there would be no former. \n\nSo, tonight for the first time Robert M and I joined the Fez Foodies for a sneak peak at a few items that will be coming to a plate near you. The raspberry spinach salad was wonderful. The steak with mushrooms and smashed red potatoes might need another consideration but was still a pleasant entree. Honestly, I look forward to returning and getting these items, because Fez actually takes customer input/suggestions and applies them. \n\nFez is one of those locations where I've never gotten anything but terrific service and a great meal. I'm fond of the garlic and rosemary fries but my coworkers and friends and strangers on the light rail think I should limit myself on these as some people don't appreciate the proven medical benefits of bucket-loads of garlic and shovelfuls of rosemary. Tools. \n\nNot surprisingly, Thomas was a peach of a host. Forgive me if I seemed disinterested in conversation: we just returned from Rim Country and that experience killed my ass.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ix2q3b4FcbeV7L52Lxj33g", "review_id": "qgaQ4_kZgku_QXEaiS4PKw", "stars": 4, "date": "2010-11-01", "text": "Very tasty. Had the pork which it typically dry but here it was really good. The only thing is that I got bored with the flavor. Quality of ingredients are very high.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "1RJORk4w9jxxWBKzOvOptw", "review_id": "xQtvW7xq5NGJoqwDxVwWMA", "stars": 2, "date": "2009-01-03", "text": "Atmosphere good. Food...not so much. I recently ate here for the first time and, unfortunately, I can't say anything good about the food. I ordered a chicken shwarma sandwich and expected a hot middle eastern sandwich filled with flavorful chicken sauteed with onions and spices and accompanied with crisp fresh veggies. What I got was FAR from what I expected. The pita bread was your typical crappy faux Wendy's style doughy flat bread 'pita', not a regular pita pocket. Inside was some flavorless, cold, unseasoned chicken (and when I say flavorless I mean indistinguisable from a mouthful of cardboard). They didn't even bother to put basic salt and pepper on this sorry meat. The remainder of the sandwich consisted of raw zuchinni (WTF?!), chopped tomatoes, 3 leaves of romaine lettuce, and some bits of red onion. None of the veggies had been dressed or seasoned. Oh, there was also some hummus/tahini 'sauce' mixed in there (presumably for flavor), but I have never tasted anything so flavorless. I imagine that wall spackle has more flavor and pizazz than this 'sauce'. Come on Paisley, does your cook even TASTE what comes out of the kitchen? Add some flavor to your food. You could start with salt, fresh lemon juice, garlic, pepper, and high quality olive oil. It's really not that hard.", "type": "review", "business_id": "IceZ4BtTz76eppjNWm-c6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7Jj3K9V8cTwnRHAjfxfaqw", "review_id": "MQ7qgrkKb98K8GI7UWPjbg", "stars": 5, "date": "2010-03-29", "text": "Ahhh Shady's...I am a little embarrassed to admit how often I frequent this gem of a place, but definitely not ashamed of how much I love it. Cool atmosphere, just the right lighting (very important to me), great bartenders, good prices on a really nice selection (Who else has Old Raj gin or Agwa De Bolivia?). This is definitely not a dive bar (not that there's anything wrong with that), but it's not an icey, blase Snobbsdale-ish joint either, and I've never felt ridiculed or snubbed here either by patron or bartender. I've seen all walks of life come through this place, but never felt that it was too 'hip' or pretentious in any way. Great jukebox, obscure, forgotten movies playing on the telly, bartenders that are nice to look at (male and female), have personality and actually remember your name (and drink). Does it get any better than this?", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 11, "useful": 24, "cool": 23}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "PWvLDC7tQWRoajYKcAqrxQ", "stars": 5, "date": "2009-01-28", "text": "I really enjoy this place. It's beautifully designed. It's hidden in a historic neighborhood, (zoning issues so no patio), and they make they own tonic! ---What else does one need? \n\nBut now the food. Rich, full flavored, comfort food. I don't think there is a cuisine style here as far as I could tell, just some of the best food around. \n\nHad the fontina crusted with pinko and walnuts, awesome. A potato side dish, damn good I tell you. For the main course the skirt steak, which was some of the best red meat I'm had in a very, very long time. \n\nThis is my vote for best new restaurant in Phoenix. Seriously.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pqnYZy25nEwGAAjShOpJGg", "review_id": "mNe2HH4iU7elpsYYGi-XDA", "stars": 5, "date": "2012-04-04", "text": "Excellent! I love this place!", "type": "review", "business_id": "-h1WpfgqAmJcJDqyXXJ2og"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "uZG-IiG2fE7LSoEtlWp2Sw", "review_id": "rgRw6--eiFEB_esfpO6U3A", "stars": 4, "date": "2012-09-23", "text": "I have been to this restaurant a couple of times and I always leave happy and satisfied. I love coming here for the view as it reminds me of home.\n \nWe came here once again for a special occasion which was a farewell dinner for my mom who was visiting from South Africa. I had made a reservation using Opentable and asked for a nice view as a treat to my mom on her final night.\n \nThe hostess reserved us a table with a splendid an unrestricted view. We had a very attentive waiter - Luis - who treated us with colorful and informative descriptions of the menu. He also took care of us with an exquisite after dinner treat seeing as how mom was leaving.\n \nThe dinner was exceptional - as always, so was the atmosphere, the company and the wine. Do go here!\n \nI suggest arriving a little before the dinner reservation to enjoy drinks on the patio while watching the sunset...always a treat! Call ahead of time to find out whether the patio will be open - it has happened to me twice that it was reserved for private functions. (Which was totally my bad - but maybe someone else can benefit from it.)", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fQ6h0-OZX2deMTwTHfHthQ", "review_id": "BvFYrSSJRDqJwSbVyQhPVw", "stars": 1, "date": "2012-05-13", "text": "Staff was very rude, bowling prices weren't displayed to the best of their ability, extreme bowling itself was over priced almost $20 per person. The only thing about their extreme bowling was that it was extremely hot, temperature wise. they had many ceiling fans and not one of them turned on. And the bowling equipment malfunctioned three times during our games. It was not a pleasant experience and I don't believe we'll be going to this facility again.", "type": "review", "business_id": "YEOnspVAXguZEJp0iKLq8w"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "7oMqFG6Su53dtbkVnF80Gg", "review_id": "aEVQJQK3Zpu9wAMnuHKw5w", "stars": 5, "date": "2010-01-03", "text": "Okay ya wanna know a little secret? I LONG for Green. Ever since moving back to New Orleans I'm surrounded by an embarrassment of culinary riches but our one vegetarian restaurant can never hold its own against Green. I passed through Scottsdale a few weeks ago to visit the Grand Canyon and the second I stepped off the plane at the Phoenix airport and secured the rental car we drove straight to the restaurant. Everything was just like I remembered it and slightly better. The staff was warmer and the food just as good. I'm still thinking about the \"crab\" puffs and the eggless rolls.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oijTMVRAYB6DrSkhLlaHjA", "review_id": "7CHo8pEvUu-I7Tmu10oqdA", "stars": 5, "date": "2012-09-07", "text": "As someone who LOVES Thai food, I can really appreciate a good Pad Thai, and Wild Thaiger's is my favorite hands down!\n\nJust like the menu says, their Pad Thai has a plethora of intense flavors, to the point where every bite is unique. If you love Pad Thai and haven't tried Wild Thaiger's, you need to. If you don't love Pad Thai, it's probably because you haven't tried Wild Thaiger's. :) Seriously, this is one of the best dishes I've found in Phoenix.\n\nTheir other dishes are consistently good as well. I love Chicken Satay, but most places only offer it as an appetizer, with a few skimpy chicken strips. Wild Thaiger, on the other hand, has a filling Peanut Chicken lunch, as well as a Peanut Passion dinner, both drenched in their delicious peanut sauce. Their curries are very flavorful and make for a superb and hearty dinner, but if you're going for lunch, you may want to consider Thai Basil up the road as their curry lunch combo includes a salad and other extras.\n\nTheir Thai Tea is strong yet creamy, just like it should be, and you can even add boba to it. A must if you're eating anything spicy.\n\nThe service is very professional and timely. The atmosphere is pretty classy, in fact, it's probably the nicest-looking Thai restaurant I've been to. It's also the only Thai restaurant I can think of with a patio. All in all, it has a very welcoming atmosphere. I would feel just as comfortable here in a suit as I would a T-shirt and jeans. It's a great place for dates, business lunches, or just some great take-out. You might spend a tad bit more here than at some other nearby joints, but the quality more than makes up for it, I would say the prices are spot-on.\n\nOne day I'll learn how to write a review that's short and sweet, but I kept thinking of good things to say about this place. Highly recommended!", "type": "review", "business_id": "KPoTixdjoJxSqRSEApSAGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4hrVQL0nc9JHfzW1OZV48w", "review_id": "8Ayrg5pY4bQ1TXr3dycFug", "stars": 1, "date": "2012-03-09", "text": "ok so here's what they teach: if you are a good person it is right and good for you to take from others and give it to yourself, because you deserve it and everyone else is a bad person. Stealing is okay, lying is okay, as long as it is done by you, but for the others, they have no place in society, so pillage and destroy them, it is your right and you will be rewarded for that. Wow.", "type": "review", "business_id": "eCZg35WoccS66WTl7W5TUg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MCMKCdq8V32mK7qP_MTZqw", "review_id": "PxOdJU4mMM8IBcgwzday7Q", "stars": 4, "date": "2012-02-21", "text": "This is a great family resort if you need a villa with a kitchen, washer/dryer and space. We have stayed at Marriott Vacation Clubs all over the U.S. and we really love it here. It's not too big but is in a perfect location for us. You can use the pool at the JW Marriott across the way, but my kids loved the pool here and it's easier to use. The pool was heated to a perfect temperature! Across the way is the Desert Ridge Marketplace with an Albertson's, 24 hour CVS, Einstein bagels, many other fun restaurants, AMC movies, big box shopping like Marshall's, Ross, etc. It's very convenient for shopping and dining as well as getting to the 101 highway for all of the fun places to go nearby. \n\nI also found a great nail place across from Desert Ridge called \"All About Nails\". Very nice and very clean - plus reasonably priced.\n\nWe will return when we need a Scottsdale base for vacation. Our only complaint was check in was 2.5 hours late (6:30 PM instead of 4:00 PM), and the lack of pool towels on 2 days. Otherwise a well-run vacation club.", "type": "review", "business_id": "o0W63qXx172aCiGf-CCWyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WhLEj4nXKeX3UBkj35WJwA", "review_id": "oboTO9C19L7ZG_Z5fByiBg", "stars": 2, "date": "2011-12-08", "text": "When I bought my house, my realtor recommended these guys for the termite inspection. They found a couple shelter tubes (old & inactive), so I paid them to treat the house and bought a 2 year \"warranty\". Included in the \"warranty\" is a free annual inspection and any follow-up treatments necessary. Sounded good.\n\nFirst, the good part: the treatment appears to have worked just fine as I have not seen any new evidence of creepy crawlies munching mi casa. That's good for three stars, I suppose. \n\nBut here's where I have a gripe. Last fall (1 yr in to the new house), it occurred to me in passing that I'd been here a year and that I should be expecting some sort of contact from the termite people to schedule the annual inspection. A call. A letter. Something saying 'Hey, you're due.' \n\n(I don't think this is unreasonable to expect from a service-oriented company. Shoot, it's been well over a decade since I bought my car, and the original dealership still sends me letters saying 'Hey, you're due for your 150k service!')\n\nI hear... nothing. And pretty much forget about it. Until...\n\nAnother year goes by. I receive a letter from them, \"Hey! Your warranty is up for renewal!\" I don't recall if the first letter contains (paraphrased) \"By the way, we'd love to schedule your free annual inspection!\" or if that came in the 2nd letter... or the 1st or 2nd call. Or maybe it was the 3rd letter and the 3rd call... \n\nIt certainly was in the 'Hey, your warranty lapsed but if you respond right away we'll re-instate it for you AND schedule your free annual inspection' letter, though.\n\nWhich, frankly, irritates me. A lot. \n\nI will not be renewing my \"warranty\" with this company as my experience has shown that I'd be paying for nothing. \n\nSummary: \n\nTreatment? Fine. It was effective. I have no more signs of bugs. \nService? Awful. They'll ignore you unless they want money from you.\n\"Warranty\"? I'm not saying it's a scam, but... um.... I certainly did not receive ANY value for the money I paid them.", "type": "review", "business_id": "ZYnvMVHDGqYJtX_Ikiq4hA"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "nZ9XFVETN4hxdK4qPb-T3Q", "review_id": "mgmIdP2b7r1NE2XNnbMrCQ", "stars": 5, "date": "2010-01-21", "text": "Wow, I am very impressed. The store is very big, and they seem to have it all - even the hard to find, odd items. It looks like everyone can shop here.\n\nThe store is mapped out and sectioned nicely too. Finding things is easy, and if you can't (or don't want to) the very friendly staff are there to help. It looks like they employ people who know a thing or two about the supplements also... so whether you are looking for: digestive health, immune support, weight loss, muscle building, herbs, beauty or whatever; they have it, and they can tell you about it! Pretty Good! \n\nYou can even get a customer rewards card and build up bonus points to get discounts and stuff. And they can track your purchases with it should you ever (like me) loose your receipt!\n\nWhat I am really impressed with though is their customer service and return policy. I did not expect them to accept a return and refund my money on 2 items that I purchased there because I lost the receipt. Especially, since I did not purchase it on a member card so they could not track my purchase either. I thought I would try my luck with it anyway and was hoping for an exchange. Well, the clerk was so nice to me. She said that it was no problem and would gladly refund my money (I didn't even ask for a refund)... and I had opened one product. I was speechless and felt a little guilty about it too - since it was almost a month that had passed (I really didn't think they'd take them back). Anyway, I told her that an exchange would be more than appreciated, and she said, \"No problem:-)\" again! So I very guiltily walked over to get some of the items I needed. They had them and they had them on sale - cheaper than I have ever seen and in more of a selection too. \n\nNeedless to say, I walked out of there very happy (but feeling a bit undeserving). But that is what good - EXCELLENT - customer service is all about - exceeding the customer's expectations! \n\nThis I my new store for all of my supplements and health & wellness needs. I recommend checking them out. They seem to have everything one could ever need. Plus, they have an entire wall (and more) dedicated to muscle, weight and fitness - if that is your thing! Also be sure to check out their website; they even have customer reviews & ratings! and product information/facts and ingredients. Really Cool!", "type": "review", "business_id": "z1weSx46iBHAqU6Srlfocg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GnfhkMo0Y5qDsEOGSpvD7A", "review_id": "tl7TszxB8L_l-gK0ohzhDA", "stars": 5, "date": "2011-04-19", "text": "I love this place!!! The first time I went I fell in love with their fries and their secret sauce. They have those great crinkle fries and they are made to order so they come out super crispy and hot. They alone can stand on their own but I have to have the sauce. It has to be a mixture of ketchup, mayo probably some chili powder and some other stuff that I can't figure out. No matter how many times I try to do it at home I never get it. Once before I got the Italian Beef but being my first time I didn't know that you could get it wet... Duh... and ended up eating a warm roast beef sandwich that was a bit on the dry side. After reading the Yelp reviews I realized that you can add all kinds of stuff to it. I think that the girl at the register should've at least informed me that I had options. The staff (girls at the register) weren't all too friendly which makes for a less than pleasant experience right from the start. Hopefully they aren't there anymore. Forward to today I decided to give it another shot and I am so glad I did. The owner is a really cool guy and is always super nice when I come in. He asked me all the questions about how I wanted the sandwich and put the dip in a to go cup for me so I wouldn't have a mush sandwich when I got home. I added provolone and hot giardiniera which absolutely made the sandwich. I didn't get to finish it because my other half smelled it and swooped in and polished it off and loved it too. Good thing I got the fries! I would highly recommend this place. If you do have the Italian Beef you should try to eat it there instead of taking it home. If you get embarrassed easily or worry about food all over your hands and face then don't eat this infront of other people. I think it once you eat it you won't even care if it gets in your hair. So I say get over it and get your butt down to Lobbys and eat til you explode!", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xaRsP-31LYKYuelTo7UHEQ", "review_id": "j5LVGF3dT8Zv0RFH08uGSw", "stars": 5, "date": "2012-01-08", "text": "Love it. Wish it was in my neighborhood.", "type": "review", "business_id": "RwlkbvZXQTpCRAR9PGJ1eQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "z4G1g3VcdfigCUtVDFRL1w", "stars": 4, "date": "2011-05-12", "text": "I had lunch here the other day. It was a bit before the noon lunch rush so it wasn't too crowded. You could tell they were gearing up for it so I can tell they get pretty busy. So come early to avoid waiting with throngs of school kids that undoubtedly come from the high school next door. \n\nI like that their menu isn't huge with zillions of burger combos and other options. It was pretty straight forward. I had the standard burger, fries and a drink. Everything looks like it is pretty much cooked to order so it took a few minutes to get my food which was ok. The cashier guy who looked suspiciously like Ray Liotta was very friendly and working like crazy so I'm pretty sure he was the manager if not the owner.\n\nThe burger was thick, juicy and cooked perfectly. It was a tad bit greasy but that made it that much more delicious. The fries were also pretty good. They are crinkle cut with just the right amount of crispiness on the outside and fluffiness on the inside. I wasn't exactly sure what to do with the little cup of sauce they give you so I used it for my fries and my burger. I think it was some chipotle mayo stuff. It was pretty good but an odd thing to put on burgers and/or fries.\n\nThis place isn't exactly cheap but it is worth it. I can't think of a better fast food burger/fries in the area. I would return to get the burger but I really want to try their Italian beef as well.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ux1nBPRbH_h9jl_wg04ROw", "review_id": "FnB0wRvAAbhmRMSULZ0_sA", "stars": 5, "date": "2012-09-28", "text": "I'm giving Yoli's 5 stars for the winning combination of great food for a great price at a quaint location.\n\nWent there on a Saturday late in the morning and we were seated right away. Great little hideaway in downtown Chandler. I ordered the Morning Monte. It was delicious. My family ordered various other items and we all sampled a bit off each others' plates and everything was excellent. My favorite item was the chorizo burro. Excellent chorizo with the correct combination of meats and spices. The waitress was friendly and we chatted with the owner and she was very nice also.\n\nAnother really great thing about this place is the prices. I don't think there are any items above $8 and most meals here are in the $6-$7 range. Very reasonable for the good quality food you get.\n\nAfter breakfast we took a walk around the courtyard and had a nice time looking around at the plants and exotic birds they have on site. We also got a chance to meet the owner of the property and she was super nice also. I will definitely be back to try out some other menu items.", "type": "review", "business_id": "kfscAJnLVf6J2uEte7g-5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PDpWGp4PVts0rxK_h_2ntg", "review_id": "NzMayD5frvx7wDa5dVtnrQ", "stars": 4, "date": "2011-11-17", "text": "During my five-day stay in Tempe/Phoenix, I honestly did not have a single bad meal. Every restaurant and coffee joint I stopped at gave me great experiences. I wanted to end my trip out to Arizona with a good dinner, and I found myself at Dos Gringos to hopefully find that last meal out west.\n\nHonestly, the name sold me pretty quickly. Obviously, I'm not going to expect fine cuisine and classy dining at a place called Dos Gringos, but being a fan of dives and being one with my fellow man, it sounded like a good place to experience.\n\nDespite it being chilly at night now this time of year, it was still an experience upon arrival. It's like the tacky, somewhat tasteless, lampooned Mexican version of TGI Fridays, with a whole bunch of crap all over the walls, and a whole lot of hand-painted placards with sayings that make all of our inner-14-year-olds chuckle and appreciate. The parking was free and plentiful, and I'm always a fan of the grungy, Christmas lights hanging all over the place kind of decor; my kind of style for relaxation and no-nonsense.\n\nThere were TVs everywhere, which was nice to watch some Sunday Night Football in the process, and I sat wherever I pleased. Service was from a cute petite blond waitress who was quick to take my order, deliver my beer, and bring my food when it was ready. I ordered an enchilada, and two \"street\" tacos, which were corn tortilla apparently. Don't take my word for it, being an uneducated in Mexican food, east coaster, but I thought it was great. Definitely different than the kind of \"Mexican\" food I can get in Atlanta.\n\nOverall, I can't say that I had a bad experience. The food was filling, not really expensive, and tasty to my tastebuds. Beer, football on a mild evening in a place full of 56 pieces of tacky Mexican flair and a waitress with a great smile, and I can't complain. Solid, adequate way to end my dining binging throughout the Phoenix/Tempe area.", "type": "review", "business_id": "bfDQai9X59uWK-XgP0t6rA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7HDDL2FWibF3rGOZBH2IHA", "review_id": "T6oH3f5iDHcRxEyjW2yXGQ", "stars": 5, "date": "2010-08-13", "text": "This place has amazing frozen yogurt! I had the strawberry with small pieces of fresh strawberries! It was a wonderful treat in this heat, since it's yogurt and not ice cream, it's a little bit healthier.", "type": "review", "business_id": "86rvPGDd0Vq2O1UNOtF9dg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "bAuKPiWTMtCoNNcPBGWssA", "review_id": "XnrlecBihrsDGGnh4hnaOA", "stars": 4, "date": "2012-10-10", "text": "This place has apparently been open for about 2-3 weeks. I headed here with some co-workers for a late Friday \"meeting\". Otherwise known as happy hour! \nThey have a good selection of beer on draft and bottle. I had a New Belgium Super IPA that they had on draft and one of their sausages(Chicken and Apple) topped with some sauerkraut and mustard. It was quite a good combination and was recommended by our server.\n\nIf you're looking for food, then you may be disappointed in the small amount of options, however, when you realize that their kitchen is the size of a small closet, it kind of makes sense. \n\nWith the cooler weather right on the horizon here in the valley, their very large patio area should come in quite handy.\n\nI will definitely try them out again.", "type": "review", "business_id": "_Ne4sL68IW6lEXYvrnkt-w"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "K9dSPbFhxbLPNZBTp7uOMg", "review_id": "DlaWFT9VEcWMgJTFgB8g_Q", "stars": 4, "date": "2010-12-30", "text": "Chance encounter on this little (well, maybe not soo little) gem of a place. Yelped it the moment I passed by it because of all the cars present in their parking lot. Although there are only 8 reviews for the place, what people had to say about it really made me want to visit. \n\nWas well greeted on a spontaneous adventure to the restaurant for dinner. The bar was packed so my party decided to get seated in the main dining area. Got seated right away and was introduced to our server in no time. Think she had to swallow a chill pill or something because it took some time for her to be nice (most likely the main reason im not giving this place 5 stars)\n\nThe menu was pretty reasonable. Starters dont exceed $10 and entrees range anywhere from $5-$15 (If Im correct, there is only one item on the menu costing $15) \n\nWe started off with three appetizers, thinking it would be the only dishes ordered (little did we know):\n\n- Grilled Spicy Chicken Wings: Some a little burnt but it tasted great. The portions are large and seasoning just right (or too bland depending on what you prefer). I liked that it was grilled, less of that greasy hell overwhelming the taste of the actual meat.\n\n- Homemade lemon garlic Hummus with pita : sooo delicious. It was only about $6, it comes with a bunch of pita. My party of 4 shared it and still had left overs =] definitely recommended.\n\n- Cheeseburger Sliders x3 on Egg Bun: The bun is delicious! and the meat is perfectly cooked (medium) and seasoned. The perfect balance of meat, bun, and cheese. Comes with diced pickles.\n\nWe were having a jolly time when all of a sudden someone notices a dish being served to the the table next to us. It looked so good, she decided to order it herself. We ended up sharing the Half Chicken entree and I was extremely impressed with how it came out.\n\nThe chicken is juicy and tender the entire way through. No parts of the chicken dry, every bite was well savored and just...mmm mmm mm\nCame with two sides (we chose the green beans/onions and mashed potatoes): green beans weren't my favorite, they were overcooked but the mashed potatoes. Perfectly cooked, tasted so fresh. They don't use a ton of butter or sour cream which was favorable to my taste buds. \n\nWould definitely come again\n\nFYI: \nhappy hour 3-6:30 pm. From what I could make out on the menu written in chalk: Half off appetizers and three 5.5 oz of draft beer for $5 (normally $6 for 3 - 5 oz beer sampler) oh and something about $5 wine", "type": "review", "business_id": "-Rj4yXguyZ06ZMPMmoR9tg"} +{"votes": {"funny": 4, "useful": 11, "cool": 7}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "oAYJ0ChS24wF9wfXd221TA", "stars": 3, "date": "2010-01-18", "text": "I was on my way into Sweet Republic just before Christmas when I spotted Painted Pretzel a few doors down. Since I love pretzels, I was imagining all sorts of delights. Hard pretzels in knots, twists, and rods covered with the finest chocolate. Freshly baked soft pretzels salted, or rolled in cinnamon and sugar, or butter and garlic. You name it. They were going to sell it.\n\nWell I was sorely disappointed. Upon entering, I realized this is probably more of a mail order type business. No soft pretzels, either. They specialize in pretzels dipped in chocolate and topped with nuts, candy pieces, etc. There were some boxes of pretzels already made up, and we purchased a few. The honey wheat pretzel rods were actually pretty good, the small bite-sized pretzels were nothing special. The chocolate was a nice quality, but not the best. \n\nAlthough they hand dip all the pretzels, they do not make the actual pretzels. So if you're on a local foods kick, which I'm not, this isn't the place for you. Not bad to have around the house and for gifts to pretzel lovers or corporate gifts as they are better than the products you would find in most grocery stores. I was just hoping for a little more.", "type": "review", "business_id": "oN8fAdw2monO8DTwntZKkw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "T3dnb2VW9IEE-aAYccG-rA", "stars": 1, "date": "2008-09-04", "text": "I do not like this KFC ...or any really for that matter. Every time I have been here the place is filthy. I know they remolded the place and I have not been since then, so I am not sure if the conditions are the same.\n\nThe food is just not good in any way anymore. Not that it was ever great, but you could get some decent chicken and some sides and be content. What the hell have they done to the mac & cheese? It is so gross..the color is just not appealing and the taste is worse. Food at this place has been served under temperature enough times to keep me from returning.", "type": "review", "business_id": "8HmSt7fRFe-uH6i4yCmJQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SSXLiQkrdPLd2YJhNyojhw", "review_id": "VHtSyQf8l3aNjBMhSQOBPA", "stars": 4, "date": "2010-05-28", "text": "I love this place. The service is absolutely amazing. They are always really friendly and never screw up my order - - things that are very important when it comes to fast food. Their Apple Walnut Chicken salad is amazing! I also crave their fried zucchini on a steady basis. Carl's Jr has some of the best fast food burgers out there... if you want something fast and GOOD then I think you should stop here.", "type": "review", "business_id": "22s5idshuEIPlEcf1ObbMg"} +{"votes": {"funny": 4, "useful": 3, "cool": 1}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "KFVnfSjq0xp-Yfq-6nd4Xg", "stars": 2, "date": "2012-04-27", "text": "Long ago, Salvation Army used to be the place to go when you thought of \"thrift stores\". Sadly, this place is WAY overpriced for being a thrift store. I have chatted with other random people who thought the same thing about this one - way too expensive! :(\n\nI don't know who is pricing this stuff, but they are out of their mind, probably watching too much \"Storage/Auction Wars\" or \"Pawn Stars\" thinking that everything is worth a ton of money.\n\nGoodwill is just up the street on Grand and has better prices.", "type": "review", "business_id": "pOurc7UleAr_LxLhrx7iSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ulwPQBaloxUSClqrNSiCiw", "review_id": "RBjDDI6DExxtqqRznhL4IQ", "stars": 3, "date": "2010-06-04", "text": "So I'm not a big Chinese food fan, but my husband is. Truth be told, it usually makes me sick. But if I were to go to Chinese food, Dragon Palace would be one of the places that I would go. The food is decent and there's a lot of it. I really felt I was getting my value's worth.\n\nThe waitstaff was attentive (always there asking if I wanted a refill) and the food came out quickly. It looks like every other Chinese food restaurant in the world (lots of red and gold, lanterns, paper Chinese Horoscope place mat -- save for the deep teal walls). I'm not sure I would make a long drive to Dragon Palace because chances are you have a comparable Chinese food restaurant nearby, but if you live in the 32nd St. and T-Bird vicinity, this is certainly a Chinese food place worth trying. \n\nAs for the food, we ordered the Peking dinner for 2 which came with won ton soup, a pu pu platter (consisting of won tons - yum -, eggroll, a small fried shrimp, a skewer of glazed beef and honey chicken), Peking fried rice (fried rice with shrimp, chicken, pork and beef), Mongolian beef and the house chicken. (as an aside and a disclaimer, I am preggers right now and I have developed a severe dislike for chicken which means I, of course, hated the chicken dishes). My husband thought it all was ok. I really liked the won ton soup and the Peking fried rice. After dinner, we got the requisite fortune cookie (\"Express yourself now.\" WHAT?) and a really yummy banana wrapped in a won ton and fried with a sugar glaze thing.\n\nAll in all, it was a good time at a pretty good Chinese Food Restaurant.", "type": "review", "business_id": "lAGDe38li38fyf971CslFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GMCchZHZT-5HXGu8kJJDoQ", "review_id": "GBq7TY4zn2o9H9oL5DKp6w", "stars": 5, "date": "2010-03-02", "text": "Just a quick review to reiterate how truly great this place is.\n\nThey've got soda, lots of soda. That's right, I said soda! They've got root beer, sarsaparilla, freaky foreign sodas, teas, waters and other things. \n\nI love this place, I have no complaints. The only thing that would make this place better would be the addition of beer. Man, if these guys hooked up with the dudes that run the beer section of Topps Liquors it would be unstopable!", "type": "review", "business_id": "lwaLY3V7FyG_e9QUTP_N_g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "SscGVHJx2Yl1cpEpHKTG-w", "stars": 3, "date": "2009-05-11", "text": "Dammit - I have been here a dozen times and it's been so \"mixed\"... The best of times, and the worst of times... though the last two times (for late night drinking with friends) have been pretty fun... Drinks are cheap and the crowd is \"lively\".\n\nSo, for now, I will suggest Dos Gringos to the college drunkard and/or professional drinker after 9pm. Bring some friends!", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MMhm7-5i5jZ554z-cUkAdQ", "review_id": "p2HqDU45InDqSqD8hd98mQ", "stars": 4, "date": "2012-10-21", "text": "We went to Milagro Grill for the 2nd time and it was delicious again. The ambiance and patio are very nice. The service is fast and friendly. And the food is fantastic. This time we had the chips and guac and pb&j appetizer. Wow, both are wonderful. We also had the chicken and chorizo mac n cheese-fantastic and filling! Last time we had tacos with pineapple which was also wonderful. Can't believe the place isn't packed every night We live in the area and will go back soon! You should too.", "type": "review", "business_id": "Q2FaJ3zB6ZuGgvqUqhdc_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "-il5mwq7l0kcPHfCSLUVHA", "review_id": "xB8hV6UIwJxEPuzyvHFLPQ", "stars": 5, "date": "2010-02-28", "text": "All I can say is DELICIOUS!!! Service was great, food was great ,and the restaurant looks beautiful.", "type": "review", "business_id": "no_FXjscklz1SEzM_XnVgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bX66Hej4j7Ej_5LtSwku9w", "review_id": "TblVN9pY-rhgGyDbrEuiDg", "stars": 3, "date": "2010-12-11", "text": "So, Jimmy Woo's. One thing that can't be argued is that they had a great interior decorator, right when I walked in, I loved the vibe. We were seated immediately, and promptly served. The service is excellent and efficient :) We started with the egg rolls as an appetizer which were dee-lish-ous! And I ordered off their fancy drink menu and got a Jimmy Palmer, yum! For entrees, which they serve family style, we got the Shanghai Delight (broccoli, snow peas, and shrimp in a sauce) and the Chinese Braised Short Ribs. It was pretty good food, a little less sauce though on both dishes would have been preferred. The shrimp was cooked alright, and the ribs were very tender with a somewhat smoky taste. Again, if there had been less sauce, I think I would have enjoyed it even more. \n\nLike a lot of other posh Chinese food places, as my mother said after we'd left, \"Jimmy Woo's is simply glorified American-Chinese take-out.\" It's true, but it makes for a pretty good dinner in Old Town.", "type": "review", "business_id": "xxyuGOeAWnKVwIfoKnfUNA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "G_WnFnEd6H5grE3Dr9zb2g", "stars": 5, "date": "2011-08-05", "text": "Fried Squash blossoms! How do they come up with this stuff? FnB gets 5 stars for creativity and service... oh, and the food is pretty amazing too! The menu changes with the season, so I apologize in advance for making your mouth water by mentioning food you'll probably never taste. We started off with the appetizer special, Fried Squash blossoms stuffed with burrata served with fresh tomato sauce, and an order of naan with eggplant puree. The Naan plate was nothing special, but the blossoms were fantastic. For dinner Hottie had the lab chops with couscous and I had the pasta with butternut squash and pesto. The pasta was amazing, I watched the chef make my pesto to order... mmmm basil! Hottie devoured every bite, so I would say he enjoyed his chops too. For desert we shared the panna cotta with cherries, it was the perfect ending to a great meal. This place gets 5 starts all the way, from the moment we walked in, the service was impeccable and the food was superb. Thank you FnB", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "6fboUxwhAsUMx1F9yCzlMQ", "review_id": "uh50pSuHlazjcNIn1qLc8Q", "stars": 4, "date": "2012-07-15", "text": "I was not in a hurry to visit Humble Pie due to the mediocre reviews here. The hubs and I eventually decided to stop in for dinner after a friend recommended it and I'm so glad we did. \n\nThe vibe at Humble Pie on 7th is definitely good, perhaps due to its proximity to the alterna/artsy Coronado hood. Relaxed, cool people, good atmosphere and tasty food. We decided on drinks (a beer for the hubs and some tasty tempranillo for me) and ordered a large salad and a pizza to split. Our server was great, always making sure our glasses were full and we were happy. The salad was tasty and our arugula pizza was so good. Who knew arugula on pizza would be so yummy? While I was a tad disappointed when I didn't find something super chocolatey on the menu for dessert, the apple crisp topped with vanilla ice cream was delicious. \n\nWe've since been back for drinks and pizza at the bar. The bar tender was very attentive and friendly and the brick oven pizza was delish. \n\nHumble Pie a nice place to relax and unwind with good drinks and food.", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "jIHaXo4-KR9kvh2J7eMkIA", "review_id": "KeKYdgf1gZmF1etC43-Tqg", "stars": 5, "date": "2011-04-01", "text": "best in the valley", "type": "review", "business_id": "9NT8Ne1DICkv0ebX-gVK5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F9hl4Dn1Ube3A6NShgfXmw", "review_id": "DvZIA-xzyABMfGZiHp5vlg", "stars": 4, "date": "2012-10-05", "text": "As promised, here's my \"make-up visit\" update.\n\nThings improved dramatically since the last time I went. Firstly, our server wasn't an upsell machine. In fact, she was very polite and concerned about our order (Mine was particularly attentive with replacing and putting on the side of some ingredients, and she and the staff double-checked with me before and afterward to make sure everything was hunky-dory). The food was great, as always; had my first MM calzone, and I actually liked it better than the delicious pizza they have. \n\nNo mention of this in my first reviews, as I don't recall going to the bathroom, but their bathroom is great! Ha, maybe TMI for a food review; however, really impressed with the privacy of the stalls.\n\nBack to more relevant things, I was confused (though I suppose not off-put) about the happy hour rules (we went after 10, which is advertised as HH); apparently it isn't half-price appetizers on some nights and instead is a slice of pepperoni or something for $3? Not sure I call that a deal, but I guess beers being half-off makes up for it.\n\nI was kind of disappointed they didn't have Fall Woodchuck as I went during their fall-themed beers time, but I guess it's kinda a pussy beer anyway (I'll qualify myself by saying I'm more of a straight liquor guy, but Woodchuck is my guilty pleasure). The waitress had a nifty hand-written updated list she kept with her, and while I'm not a beer man I can appreciate the effort in something like that.\n\nAnyway, like I said, they seem to have really improved here and I definitely recommend them; for the food if not the service. BON APPETIT!", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TRl5jiNFI2m0wfH6CqO3_A", "review_id": "nvguqMUVGh1t3yE7SK3k0w", "stars": 4, "date": "2011-01-01", "text": "Sliders, cheese firies, burgers and dogs are great! Makes us feel like we are back in Chicago without all the snow!", "type": "review", "business_id": "iNvY0zAlaD_ye7Z6rHu-Ug"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Aaafbip-U2aeTXbvinBLiA", "review_id": "8we4gbPkq4ORpUgH1UQhWg", "stars": 1, "date": "2012-07-23", "text": "So a friend of mine went here last Friday, and they were double charged. The bartender took advantage of the situation and threw out the receipt to avoid cancelling the $60 amount. Which she claims and assumes was her tip (on a $60 bill). \"I get a 100% tips!\" umm..yeah.. I think I will skip this place for sure!", "type": "review", "business_id": "bmtANWh8OrAB-QflXwI0xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hGyKkRaJkOpl6jagEZAWcg", "review_id": "Lw09WYlKjSw1-fa-sG1zSA", "stars": 2, "date": "2011-03-30", "text": "Wow, servers were a bunch of stuck up b's in corset's... that's original. Didn't eat, but wanted to check out the crowd on a Friday night. Bleh... typical NoSco crowd of gym jockeys in Affliction shirts two sizes too small... late 40's women with enough botox to look early 40's and a few lost 20 somethings stretching to pay $12 for a drink. The cover band made it an easy decision to bail and salvage the night at Eddy V's with some great oysters and live jazz from actual musicians.", "type": "review", "business_id": "QCxXYA13PtkD3wec47_r8Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "UoBfwbXaixelZBghbJ2cSg", "review_id": "lwUfijUTxGzT1XijZAaDWw", "stars": 4, "date": "2010-06-26", "text": "Carnivores and junk-foodies, don't be put off when your crunchy granola friends want to drag you to Green. This fare may be vegan, but it doesn't look it, taste it, or is healthy for you at all. Don't get me wrong: it is completely, totally, and utterly delicious. Their fries were far superior to many traditional burger joints'. But... they're still FRENCH FRIES, people. The jerk tofu salad was impressively spicy, but laden in too-many FRIED won ton strips and chunks of FRIED tofu. Do you see the theme? No wonder my SO nodded enthusiastically throughout the whole meal and offered to come back any time. \n\nI had the G po-boy, buffalo \"chicken\" on a big spongy roll, dripping and oozing in spicy sauce and vegan mayo. The fake meat they use is really, really, really authentic. Like, so authentic, I'm not going to get it next time because I really don't like meat in the first place, hence my vegetarianism. Stringy fibers in my fake chicken grosses me out as much as the stringy fibers in real chicken. The sandwich was tasty -- the bread surprisingly excellent -- but greasy. \n\nSo yeah. Two hesitant thumbs up. I'll definitely go again, although I'll have to dig a little deeper on the menu to find something not quite so artery hardening.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "FBeskxMa7mBMEKZGJ4Rl3g", "review_id": "5tCzkpglJGJ4ByR4ZcoVog", "stars": 1, "date": "2012-01-26", "text": "Terrible food, terrible service.\n\nI ordered chicken fried rice. The waiter brings me a bowl and says, \"chicken fried rice, right?\" I look into the bowl and it's a bowl of brown rice. This must be a joke. I tell him that's wrong, and next me brings me a bowl of rice, seemingly fried?, with vegetables and no chicken. I bring that back to the counter and say my order had chicken in it, bringing my receipt along. So finally, they bring me a bowl of chicken fried rice.\n\nOr at least their version of it.\n\nI didn't think it was possible to actually screw up something as simple as chicken fried rice. The rice itself was cheap long grain rice. It was inedible due to the how stale/hard it was. Like absolutely no water absorption. And the rice was all covered in something that made it very wet and practically slimy. Disgusting. I have no idea how people can eat this.\n\nOh, and that server who brought me the brown rice and claimed it was fried rice tried to bring lettuce wraps to the table next to me saying it was their salad. There's a nice picture on the wall which shows you what the salad is supposed to look like, and it's not lettuce wraps.\n\nThe best thing about my meal was the fountain drink, which cost $1.85. The Circle K in the same plaza has bigger cups for 99 cents.", "type": "review", "business_id": "VGYaXB8kJjqBBIg6bsx1Sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "sAt_1qUHwhcJe3lSMArzeQ", "review_id": "J9WKlQcv3nM-5u42IA4FfQ", "stars": 3, "date": "2008-07-07", "text": "When you walk in, it's dark and relaxing. The atmosphere is nice, quiet, with alot of dark wood highliting the place. The food is good, but be careful because the price can add up quickly. This will always be a restaurant I go to, with burgers and steaks and spinach dip. The best way to think of this place, is a lower grade of Houstons. It's almost there, but not quite.", "type": "review", "business_id": "Rus-ewyqLj2D1RlqK-je4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iq46mlqoLmNQzTR1z8oqUA", "review_id": "Xj6pS87BJ4B91-sFtoJstg", "stars": 4, "date": "2012-05-02", "text": "I love their wheat bread, and I love that I can get sprouts and avocado on a sub. \n\nFour different iced teas (unsugared, sugared, sugared green, and raspberry i think) is nice too. \n\nThe staff at this location always seems like they're having fun, which may not necessarily make the sandwich taste better but makes the overall experience of buying lunch a bit more pleasant. \n\nOf the locally available chain sub shops (Subway, Blimpie, Port of Subs, Goodcents, Cousins, and I'm probably forgetting some..), Silver Mine is easily my favorite.", "type": "review", "business_id": "lleBpckOoHmbQSmO7MWr4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rbq7lwE58hXlFWNJE03WAA", "review_id": "Nf6y0Qe6d9DMTPh7X1Xgvw", "stars": 5, "date": "2011-08-10", "text": "Dr. Koch and his staff are wonderful! I know that I am in great hands and being given the best care possible. They do a great job at working you in to the schedule if you have a last minute pain that needs some extra attention. I would highly reccomend Arizona Chiropractic to anyone!?", "type": "review", "business_id": "kOwq4cv3aFE4w8iihEWmEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "NcqFZT7ngEDHSJqRgpV8pg", "review_id": "ZbMf1v4WfNLzTXQlsteVOg", "stars": 5, "date": "2011-04-24", "text": "My wife and I found Four Peaks by chance. We got lucky. The food was great, service was great, and all thr beers rocked. My wife's fav was the Heff and the Arizona Peach. We got a beer glass to remember the occasion and plan to swing by on the way out and grab a growler.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BVx7_5ox_erPCm2Id3Ncmw", "review_id": "xHtr0HgHKKoe4HuQ7Dq7qQ", "stars": 4, "date": "2010-06-23", "text": "Ahh what a nice place to let your four legged friend run free! This park is huge, spacious, lots of trees, benches (for the two legged friends) and trash cans. One of the best bark parks in the Valley. Not too many complaints other than the jerks who refuse to pick up after the doggies. People please, they have pooper scoopers, baggies, and trash cans, it couldn't be easier. Oh, and if you have an aggressive dog, maybe take him for a walk outside instead of letting killer on the loose in the park. My Golden is notorious for being over friendly and ran up to a huuuuge bull mastiff (I shall not name names, but it rhymes with bing!) grabbed my golden by the neck and pinned him down till we removed the mastiff off. Anyway, point it... it's a dog friendly park... let's keep it that way. Oh and another reason to keep the kiddies out, I think there's even a sign posted up there. I see kids running up to dogs over petting, grabbing tails, etc... not a good idea. Read the signs parents, it's for your own benefit. So bring your dogs here, they'll have a blast playing, running, smelling this and that, good times.", "type": "review", "business_id": "81lmOzUBOrDE0kxvALxGRA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "33vUIil_GCaT92aUaZhRXA", "review_id": "h4If295CzxOlGgNajNcfhQ", "stars": 5, "date": "2010-11-10", "text": "I have been to Cherryblossom countless times for lunch over the past few years. I have to say the location kinda sucks, but that's because of all the traffic. Are they ever going to finish construction on Camelback?! \n\nAny way, I decided to get a to go lunch order today. Since it was actually chilly out, I ordered the cha-shu ramen noodles with a couple of their yummy bread rolls & also picked up a slice of their amazing blueberry bread. The rolls were yummy as usual & I ate half of the cha-shu, so good & a big enough portion for me to have it again for lunch tomorrow. \n\nService can be slow there sometimes, it's best to go at 11am or after 1pm, to beat the lunch crowd. Other tasty items I have enjoyed here are: cali crunchy roll, double shrimp crunchy roll, grilled chicken salad (w/ginger dressing instead), calamari, edamame & I have tried a couple different pasta dishes which were surprisingly good!", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onCVo3jNuKsSk8HcpDE1sQ", "review_id": "br18IgS6eK1cUFz22yZXAw", "stars": 4, "date": "2011-02-14", "text": "Okay, you know what's cute? A group of wholesome-looking teens dressed in soda counter garb and serving all-American treats to overheated tourists and locals alike.....that's cute! This place has a bit of that \"throw-back\" feel with the soda fountain options that you just don't see very much anymore. I had the Gold Rush, which consisted of orange sherbet, vanilla ice cream, and Sprite all blended into a 50/50 bar-esque sippable yumminess. My son really enjoyed his chocolate shake but wished there was 3 times more of it (teens...can't live with 'em, can't ever fill 'em up!) The establishment was clean and quirky and, frankly, over-staffed for that time of day...but, hey! better than the alternative, which happens all too often in this tourist town! \nIf you're so inclined, the PHX Big Entertainment Book has a BOGO coupon for any menu item at the Sugar Bowl :)", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "KWB9EDNG24BEJqeweMPWQQ", "stars": 4, "date": "2008-03-30", "text": "What a nice surprise! My car was actually washed at a car wash!\n\nSo I drove up , a nice man help me choose which wash to get on the drive up teller like screen.\nI drive around the corner and am stopped just before entry to the drive through wash, where a guy sprays my windshield with some pretty potent bug dissolver and pre-soaks the rest of the car and tires as well, I then drive through the tunnel of wash and when I exit, I get hand dried and armour-all jet sprayed on my tires.\n \nVery Fast and Very Clean! .........Very Impressed! \n\nMinus one star because they don't do inside, but that's OK I keep it pretty clean!", "type": "review", "business_id": "LnNQdWEbcYIbC6rjdFBpqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "C92dmVXrzul_R3ydjOeT2A", "review_id": "P1L2kvhlNoGRQkkluXWeNg", "stars": 5, "date": "2012-08-23", "text": "Navajo Food at it's best !!!!!! I loved everything there ! I guess I love \"BLAND\" food . :-) everything was terrific ... \n\nI ordered the bowl (12 oz) of Mutton Hominy Stew I got it with the Tortilla bread which was AMAZING ! I also ordered a side of Blue Corn Mush to dip into my stew ( which is an awesome combination) ... And I also ordered a Grape Shasta Soda :-D ... My Husband ordered the Vegetable Mutton Stew with fry bread and ordered Strawberry Shasta Soda. He loved everything !\n\nEverything was well worth the wait and the food was extra hot and tasted very FRESH !!! I LOVED IT !", "type": "review", "business_id": "P8YUA2bXP-wD3VOzWqKVyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bbOwzXS4WMBSHOSmnWkudw", "review_id": "Ot0gabeYmmHUvlbtFqP_ww", "stars": 2, "date": "2011-08-07", "text": "I have been to Las Glorias twice with people from work. Both times I was underwhelmed. The first time I went the service was good. They were great about bringing out chips with salsa and bean dip and refilling drinks. The second time I came the service was horrible. We were there for over 1.5 hours because we had to wait for EVERYTHING and it was not very busy. I was not impressed with the food. They seem to put raw onions in everything, including the cheese enchiladas. I really dislike raw onions and am a pro at finding dishes without them, but you cannot escape them here. The rice and beans were good, but I cannot say much else for a positive about this place. I will not be back!", "type": "review", "business_id": "oiLe3lqMFaZtsSpRuIUChw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9lJAj_2zCvP2jcEiRjF9oA", "review_id": "0mvthYPKb2ZmKhCADiKSmQ", "stars": 5, "date": "2012-01-22", "text": "Brought a friend from Louisiana here. She says that the crawfish etouffee here is the best she's had outside of Louisiana!", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F55sgaqHq2KE1LsixSKxAw", "review_id": "6SetJYf9DurnDijaSxzX2A", "stars": 4, "date": "2011-05-11", "text": "Had a very nice meal in there on 5/10. Bengan bartha was tasty and the only poor part of the meal were the nan breads, they were not at all fresh. Good prices though and good service and Fullers ESB to boot!!", "type": "review", "business_id": "NCbHGtOP5yJBJsPPaE3X5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5j7qmDZTAetaH0yXFnAFyw", "review_id": "Cc78ptiQqofJ8bg_mdWiIQ", "stars": 1, "date": "2011-06-04", "text": "UPDATE: This location is closed. Boo!", "type": "review", "business_id": "S-QjTijhGYvEKvDznUTqeg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "ZcEstCa4fDhNXrkZ8_Gh0Q", "review_id": "jAcgxixaiSa5bqxAk9cy1g", "stars": 4, "date": "2011-09-24", "text": "Being a native Californian-I never knew these existed till I drove from Los Angeles to Charlotte, NC in 2005 and realized they are everywhere!!! I kept seeing these bill boards every few miles and finally decided that I had to try one. Fearing it was something like a \"Waffle House\" which I'd had the misfortune to visit once at 3am, I was prepared to turn and walk out if it was disgusting. My first experience was a pleasant surprise and this location is pretty much the same, in fact, every location is the same, which is a good thing when \nyou are on a road trip and looking for a clean bathroom and somewhere to grab a bite, maybe get some entertainment for the road.\n\nThe front entrance is lined with rocking chairs and this location has water misters out there, which is good because the only place I have been that is hotter than Buckeye is Needles, Ca and i think Needles, Ca is right underneath a hole in the Ozone!\n\nAnyway, inside they have a little country store with every kind of candy you can imagine and seasonal cute stuff along with books, toys, gifts and such. The bathrooms are usually way cleaner than you'd find at a truck stop, rest stop or gas station and they have a full service restaurant with a \"down home\" menu. \n\nBest thing is breakfast all day long and they make great breakfast! \n\nIf you are on the road and looking for a clean, pleasant pit stop. This is a great place to spend some time and re-charge for the road.", "type": "review", "business_id": "fESObRt-YtkgeNS_TUBhlw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PvltIJdE3e0iyrEubJ8Rtw", "review_id": "8t1fPOrywYxw_fWgJo56Sw", "stars": 5, "date": "2011-05-04", "text": "Wow. Best breakfast I had on my recent trip to Scottsdale. Ordered the eggs benedict with a side of corned beef hash. Waitress sweet talked the cook into making a side order since they typically don't do side dishes. That sweet little angel of a waitress made my day! Best corned beef hash EVER! Have I mentioned how awesome the waitresses were? And damn pretty as well. Double score.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 3, "useful": 8, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "GwCbwuMj_2s1Ml4gt2PM2Q", "stars": 5, "date": "2012-05-06", "text": "The name says it all. This is one hot bagel shop! This could be one of the best bagel shops I've found in Phoenix and I would have never expected to find it way up in North Scottsdale. This bagel shop is delicious. The bagels are large, hot, soft and extremely delicious. This local eatery has a line out the door on weekends and it's for a reason. The breakfast bagel sandwiches are to-die-for. The cheese, egg and bacon combo sandwiched between a hefty bagel makes it worth waking up early on a Sunday morning! I will be visiting again soon for the deli because I hear that it's a must to stop by and experience their lunch.", "type": "review", "business_id": "lJe-zPM4U572nVI0eAN4Fw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WQyk2CwF6Uotflrl4ZEfyg", "review_id": "Tta9_ANEswGauqVvFjh97w", "stars": 5, "date": "2012-01-01", "text": "A great restaurant staff! They go above and beyond for their customer.\nTry the buffet you will not be disappointed.\nBacon is cooked to perfection. Fruit is fresh and the seating is perfect for large groups.", "type": "review", "business_id": "giZS_d2r7hMyYXCjCpkZTg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "j_sy22GXfzyTYZHHq5KenA", "stars": 4, "date": "2009-03-09", "text": "I really love this place. The girls that work there crack me up and they can get you in and out quicker than anywhere else in the Marketplace. Their prices are decent and their food is great. The orange chicken is some of my favorite. This place is very much like Panda Express but thankfully doesn't have that terrible Panda flavor (eww, panda flavor). Bri sums up this place pretty well.", "type": "review", "business_id": "BnVJmCTNrO8ZtbC1vkv9Zg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4vSGcZyNfIuKYUP6z9Cbyg", "review_id": "yCWg0koUiT4A21uX_aYMMA", "stars": 4, "date": "2010-03-15", "text": "Stopped by for a beer and a snack. Temp was around 70 so we sat outside.\n\nMy amber ale from Breckenridge was good, and my wife ordered the cheaper of their Pinot Noir's and it was also good. Waiter was friendly and genuine.\n\nI like their anti pasti menu. You can pick and choose what you want. We tried the 12-hour roasted tomatoes, olives, some almonds, manchego cheese, and sopresseta. It was all good.\n\nWe are eager to go back and eat dinner - the menu looked appetizing.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_d7JPhUHOhEYXwBVvifpHQ", "review_id": "hUXfJpShCgMru3ggO75zMQ", "stars": 4, "date": "2012-06-20", "text": "I'm in town for business and the guy at the front desk of the hotel recommended this place and it was a definite winner!\n\nDrove up, and frankly it's not in the best neighborhood but the guy in the parking lot keeping watch over the cars in the lot with a \"Security\" t shirt on put me at ease. \n\nSat down and was welcomed immediately and offered the fresh chips and incredibly hot red and green salsa. Although, I'm kind of a pansy when it comes to hot and spicy. I Just ate the chips plain and they were wonderful.\n\nHad the Chicken Mole Enchiladas which were undeniably the best I've had. The mole sauce was perfectly made with just the right amount of chocolate. I have the stains all over my shirt to prove it! The beans and rice were nice accompaniments. \n\nEveryone knows the traditional \"Mexican\" restaurants where you go in and order the # 13 and they're all the same right? Rosita's Place is NOT this type of eatery. The food is authentic as authentic comes and should not be missed.", "type": "review", "business_id": "hWhVP-28LYP3llaMlAJ_JA"} +{"votes": {"funny": 1, "useful": 7, "cool": 6}, "user_id": "fNfLXX_ce2TQPrdHCqPzZQ", "review_id": "qCLKgVsWaQiSqhfNg9-iuQ", "stars": 4, "date": "2009-09-17", "text": "I had the pleasure of going to the grand opening of Total wine and more! \nThey had penny wine tasting, they card you at the door and you put your penny into the hurricane jug. The place is Disneyland for adults, they have every imaginable wine, liquor, or beer that you would be searching for. \nSince I recently went to Sonoma, California in August, I was looking for a few of my fave wines that I liked, but they did not have some of the smaller wineries and plus they are limited releases. I did find one from Ferrari-Carano, Fum\u00e9 Blanc, for $10.97. Ferrari told me that you can find some of their wines in a grocery stores, but not the Fume Blanc, so they lied. I also purchased a Kokopelli Cab for $13.99 and Kokopelli is local to Arizona made in Wilcox. This place has excellent deals and glad to see this kind of store in San Tan Village Mall.", "type": "review", "business_id": "RZS7pdeB3xOyHwYgT7VYGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WiYbxN-JFksnFlv4kLhHOg", "review_id": "CgI-GEs5nh7l76XznJC3Ig", "stars": 4, "date": "2011-02-23", "text": "Usually stop here for breakfast and mimosas. Agreed the service is not always the greatest but who expects 5star service at a breakfast/lunch cafe. I say have a mimosa and chill out. They also have a fun drink/beer list. Or fresh squeezed OJ that is worth the trip. The food is bought locally and prepared fresh so the wait is worth the quality. I usually do the omelettes... mushroom garlic. I can't refuse that mushroom sauce!! I have had their huge a#$ burgers and a couple of their sandwiches. The Loki and the vegetarian stand out. What ever you try I don't think you will be disappointed.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "UuEv-7ZUO9KbSqxXrpz9zg", "stars": 4, "date": "2012-03-15", "text": "The part worth going to this event is definitely the ostrich race event. Imagine men sitting on plumpy ostriches and then falling off. It is hillarious. These brids are actually dangerous so props for them for sitting on them in the first place. The event was highly entertaining and they get participation from the audience. There is a petting zoo portion that has all sorts of animals from an ox to baby goats. You can even feed the animals for a small price. The rest of the festival was pretty usual. Over priced food and lots of crowds. I would recommend going the $10 paid was worth the hilarious entertainment.", "type": "review", "business_id": "znk1y9lL5zbR1s3EpeojZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "taqNNj59JWgmU_tEfwrd7g", "review_id": "mS9SiUCCK2ggA-KxPkpb5A", "stars": 5, "date": "2011-03-21", "text": "Found Indulge on a whim, based on their huge \"Gluten-Free Menu\" outside - I was not disappointed when we decided to try it!\n\nIndulge has a separate gluten-free menu and the server was very knowledgable walking me through their kitchen processes to reassure me. \n\nI ordered my burger on a gluten-free bun (!!!) the first time I was ever able to do this in a restaurant. That was EXCITING!\n\nI think Indulge is as good as you make it - you are given a menu to check off ingredients for your burger. They have SOOO many choices, that it's likely that if you don't like your burger, YOU made the wrong choice. \n\nI had no such problem - I loved my custom burger! It was cooked to the correct temperature, was delicious & best of all, was delivered on a tasty gluten-free bun. \n\nPLUS, though I was full (it was a LOT of food!) I was able to take a gluten-free cupcake to go - wow, was that ever heaven later! Thanks Indulge!", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YezFOG7KeGgZBF5HzU7wbA", "review_id": "FxMfn3wBppFkSLmFnCCPEA", "stars": 4, "date": "2011-05-02", "text": "We had a good experience there unlike the others. Service was very attentive and the food came in a reasonable amount of time. Husband had the WESTERN BACON CHEESEBURGER and said it was good. I had the TUNA MELT and thought it was very good. The fries were the frozen kind, so they got cold fast. Some restaurants you just can't expect a whole lot. I give them a 4 as the service was good, food was good and we were out of there on $21 with tip.", "type": "review", "business_id": "T2xiF9kMc_WRH0GeKAXC-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Lp2G664ePG-JFxwXZQtm8Q", "review_id": "hBA4eGWv-sIO_womp_shbQ", "stars": 5, "date": "2011-05-02", "text": "Mellow Mushroom - WOW\n\nAs you may tell from recent reviews, I have been on a Pizza crusade. Well, I took a friend to Mellow Mushroom today and the pizza rocked.\n\nWe shared the Thai Die Pizza which had curry chicken and tasted awesome. The crust was think and delicious the pizza burst with taste when I bit into it. I am a traditional pizza guy but this diversion worked.\n\nGreat service and a nice patio to eat topped it off.\n\nI'll be heading back...soon", "type": "review", "business_id": "MY0_6BAzQCu4sqXqwNEFfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qFZkU_iO6KjU-_5BptIu9A", "review_id": "I5zmmwLqhQ-_mWVijRNxsQ", "stars": 3, "date": "2009-10-28", "text": "Been here 2 times. Had I reviewed after my first visit, I would've given the place 4 stars. The server was nice and attentive and the food and drinks were delicious. Had I reviewed after my second visit, I would've given the place 2 stars. The server was quiet and not as attentive and the food was cold and bland. Since I'm just now getting around to reviewing, I guess I'll give it 3 stars. Really a bummer when you enjoy a place once only to go back and have a no-so-great experience.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "UKrOgGGcP3Wz2nmZnOwuOQ", "review_id": "-ntBhp2eyD5NXDADH13BGA", "stars": 5, "date": "2012-09-04", "text": "Pauli from ATL checking in here.... just for a bit of nostalgia...\n\nI used to live in Phoenix a few years back, and of all the places I miss eating at, this is #1 on my list. I remember how I first heard of the place.... I was over at a friend's house in Scottsdale having a few beers after work, and remember asking him what his favorite Mexican restaurant in Phoenix was. My friend, who had more than just a few beers in him, stared at me all glassy-eyed, got right in my face and said... \"Cheeeeno Banddddeeedo!!\" As I backed up a bit, thinking my friend had too much to drink (he had, for sure), I wondered... hmmm...the Chinese Bandit? What the hell is that place about?!? Or is he just f***ing with me? So, I asked him what kind of food they serve there... And, as he did his best to focus on me, when his eyes hit mine, there was this long pause.... and he had this expression on his face that I can't forget... I wasn't sure if he was having trouble putting it into words or if he was sh***ing in his pants. And then he put his hands together, like a nutjob working a Rubik's cube.... and said, \"They... dooo... things... like.... egg-foooo youngggg burrritos and jaaaade red chicken tacossssss....\"..... as he gave me another crazy-ass look (the kind that tells you it's time to say goodnight and get outta there - which I did)....\n\nSo, a few days later, I remembered his drunken explanation of Chino Bandido and thought I would go check the place out.... And from that point on, I was hooked. Egg foo young burritos indeed! And jerk fried rice! And those refried black beans with fire-in-the-bungholio sauce mixed in.... Yep, those will burn you twice... All served in a giant disposable aluminum baking dish... And you got that combo, along with a soda and tip for about $10!!! WOW!! \n\nAt that time, I had never seen anything like it before, and I still miss eating there more than any of my favorite old haunts in Phoenix.... I wish somebody would franchise one out to Atlanta - I would be the first customer in the door on opening day, guaranteed....", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7uNgGKRiljXLa_HokUrLjg", "review_id": "Z4IB35kF4-F0bPGWafItkg", "stars": 2, "date": "2009-04-09", "text": "After reading a lot of the reviews, my expectations were pretty high. I'm a pretty big burger lover, will even order one in a fancy restaurant if I think it'll be good in that particular place.\n\nThe burger was \"ok,\" a disappointment compared to what I thought I'd be getting. In fact, it tasted EXACTLY like Burger King. It even looked like a Burger King hamburger (which in my opinion is not good at all). The fries were delicious, plentiful and seasoned very nicely. They did their job quite well.\n\nThe interior of the restaurant is fun, light-hearted 50's retro diner for sure. It's a good time to look at the pics on the wall. They put a lot into the look of the place and it shows. Also, the staff was fast and helpful and my order was ready in no time at all (and I was there during lunch rush!).\n\nSo, in all - a good lunch place for cheap and a fun dining experience. But don't drive all the way down here for the burgers if you live far away. They are average at best. Frankly, if you're up for driving and want a good burger, you're better off at FatBurger (Mill ave) or try the burger at Jilly's up in Scottsdale (very good).", "type": "review", "business_id": "MJ6_uOT55dq5ALphFqMVkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QnIm5uXIvBQ8k4FGVSu3CQ", "review_id": "KLQxhuxdW5pm205LVa2m3A", "stars": 5, "date": "2010-09-04", "text": "Off the chainco's! lol\n\nToday my friends and I pondered what to eat.. a good sandwich was was we decided on but where? Looked right here on yelp and it came up.. most the reviews were good so we went for it. WOW.\n\nI like to ask for a knock my socks off never been here suggestion and he offered up the cheese steak, with peppers and mushroom. I went for it but was on the fence for my pasta side dish.. he handed me a sample of the tortalini and I was in heaven.\n\nService was polite, the place was busy but not crowded, it was clean, and very appealing to look around while waiting for our order. Took about 10 minutes to arrive, not bad.\n\nI thought the price was fair and i could have went with just a half sandwich as it was very filling.\n\n\nWhile eating my buddy joked the place was off the chain.. and should rename itself to \"off the chainco's\" lol\n\nHighly recommended and cant wait to take others here.\n\n\n-Shawn", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "p4IrODgI_QmO5M9Q7gdURw", "review_id": "AG7sLwy8lchVkUNgEI_Fmw", "stars": 2, "date": "2009-12-30", "text": "This review is based strictly on their burgers. Why?\n\nI had just downloaded the Yelp mobile app and Harlow's was among the top burger search results for Tempe.\n\nI know it's a great breakfast/sandwich/diner type place, but had never thought of it as a burger destination, until the Yelp mobile results. So I headed on over. Here's what I found:\n\nIt's not a burger destination. \n\nThey offer 5 or so, starting with a basic burger, then different variations based on toppings... green chile, texas chile, bacon focused, etc. I kept with the basic, plus cheese. For $8 you get the basic burger with fries, and the variations bump it another dollar or two. Drinks are extra. \n\nThe menu said theirs were char grilled, but I think they are steam table cooked - no char or smokey taste on mine. Likewise, I appreciate the regular menu featuring a lot of local product sources, but I'd guess these are from a frozen patty national vendor. It wasn't bad, but it reminded me of many tailgates where we bought the big pack of frozen patties and simply reheated and cooked them on a grill.\n\nThe service was good and fast. The fries were decent, though nothing unique (also from a frozen bag?). The bun was ok, and it came with pickle, onion and lettuce. But it's still unclear if they made them there or used an external source for the patty. \n\nBottom line: After tip, I paid $12 for a burger, fires and coke. There was no \"wow moment.\" If they produced something unique it might be worth it. As it stands, I'd definitely recommend the place for other things, but not burgers. It's not their forte.", "type": "review", "business_id": "UI8iKvzhGn2qZCGIqtQqrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5sTIqfZr45ZGEjanTXGZCg", "review_id": "rnrqpgo7JNMnuyW7nin7QQ", "stars": 5, "date": "2010-02-28", "text": "A chain, yes. But par for the course, no. \n\nFirst of all, they have an extensive wine list, which includes a rare type of sparkling wine, called Brachetto. In this area, DUI's are more common than a cold, and it's a light and tasty wine, with a low alcohol content. So it's option is great for me. It also goes great with everything they serve, because of it's unique flavor profile.\n\nLizzie was our waitress, and offered options and suggestions, which actually saved us quite a bit of money on the whole. Not that, by any stretch of the imagination, is this a place to go when you are not intending a big splurge. This is a place to take it slow and spend slightly over a decent amount. \n\nThe food, however, is absolutely worth it. We tried the Cheddar fondue, which could have used a bit more mustard powder and worstershire sauce, but on the whole was delicious. It was well prepped, and Lizzie explained what she was adding and why the whole time. The veggie selection is a bit mundane, and that's really my only complaint. We ate the \"big night out\" prix fix menu and chose the \"Fusion\" option which had lobster tail, shrimp, brats, ravioli, new york strip, sirloin steak, and a marinated chicken. We cooked it in the Boullion method which is just a flavored broth. Because it's not oil, you do need to add 30 sec to a min to the suggested cook times, but it was a lot lighter than using the oil and we didn't come home smelling like oil. The california salad was incredible. It had mixed greens, sliced roma tomatoes, chopped pecans, and blue cheese crumbles with a rasberry black walnut dressing. It's been a long time since I was able to truly enjoy a salad, and this was amazing. The chocolate we chose was the Smore. It was milk chocolate, marshmallow creme flambeed with grahm cracker bits added after the fire goes out. It's served with 2 types of coated marshmallows, pound cake, a slice of cheese cake, and a bowl of sliced strawberries and bananas. Just enough to fill us up, but we didn't overstuff ourselves. Our dinner was leisurely paced and took us about 2 to 2 1/2 hrs to get through. This is pretty normal for fondue. You do have the option of sitting at the bar and having just a cheese or chocolate, if you are on a time constraint though. \nIt's located in a great little shopping and dining area that wasn't too crowed last night, but I think that was more due to the weather, than the actual popularity of the place.", "type": "review", "business_id": "UHh2br86pxndWXELC6B8Cw"} +{"votes": {"funny": 11, "useful": 10, "cool": 11}, "user_id": "qhooXf7Uh8NP3mX6YG3Drw", "review_id": "8hHJ5yKjAMa4Nwvkxu1kTA", "stars": 4, "date": "2011-11-16", "text": "ROCK OUT WITH YOUR COCK OUT!!!\n\nAs a big heavy metal and hard rock fan I just had to make sure to hit up Alice Cooperstown on my recent visit to Phoenix. As I walked into this warehouse sized rock & sports mecca I was surely not disappointed.\n\nThis place is huge. There is an outdoor beer garden seating area on the side of the building and when you walk indoors you realize that this place is airplane hanger big. Rock and roll memorabilia is plastered everywhere here with a terriic amount of Alice Cooper posters, gold and platinum records, photos, paintings, guitars, and other stuff representing his Hall of Fame career plastered throughout. Even all the tables are covered in rock photos and images. Along side all of that is a mix of sports memorabilia spread throughout with flat screen tv's and large projection screens everywhere! Yeah, as you can imagine, they play some great rock music here, classic to current. This is the type of place that Hard Rock Cafe wishes it could be.\n\nThe menu here is pretty big with a mix of classic bar food, comfort food, and BBQ. Nice selection of beers on tap and in bottles. We ordered a mixed BBQ platter and it was actually some pretty decent BBQ! Great ribs and tasty brisket. Alas, what caught my eye was The Big Unit. Not just a regular hot dog, but 22 inches of Vienna Beef destruction loaded with chili, onions, jalapenos, sauerkraut, relish, tomatoes, cheese sauce, shredded cheddar, and bacon, along with a bunch of crispy fries. Oh Yeah! This is the dog that Adam Richman devoured on Man vs Food! They ring a big bell whenever this is ordered. I saw a few people give up on it and take half home in a box. Not me. Now I was going to join that fat ass and do some damage here myself!\n\nYup, I ate that whole damn thing! Honesty, it was pretty tasty and was not too hard to finish. Just had to pace myself. Drinking a huge cup of diet Coke while doing this was not too smart as my gut felt like it was going to explode! Still, I got the whole thing down my throat bit by bit and swallowed it whole. Heh-heh-heh! I sat there in euphoric bliss of my accomplishment. Boy, did I feel like a fat slob.\n\nOn the way out we had to look around the souvenier area and picked up a few things. Had a great time here and the food was pretty good. Nice waitress and all of them here wear Alice Cooper-like eye makeup while working which adds to the fun. Menu items are fairly priced too. This part of town is empty unless a game is going on and there is a parking garage across the street, along with metered spots on the streets but after 8PM they are free. Lots of available parking.\n\nMAN vs FOOD AIN'T GOT NOTHING ON ME!!!", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EmloVy5Bgbnv_VFm_oftKw", "review_id": "BNiUp5E4Sug_tLLYhH39Hg", "stars": 4, "date": "2010-07-17", "text": "I love both locations. It is a rare menu that has so many things I would actually eat without subtractions. I have only been 4 times (and tried something different each time) but I want to keep coming back. I am working my way through a long list of pasties that I want to try. Keep in mind, I dont drink alcohol so I am not eating this stuff just to accompany a Guinness or Strong Bow. I really like it. All of it.\n\nMy only complaint is that the Tempe location does not allow for groups larger than 2. OK, they have a couple of tables for 6 but thats really it. If you dont get there before the dinner rush, you dont get to sit with your group.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hVkQbDk61hmIi5iVm3IkZw", "review_id": "qJKuI71SPUSXQrAnKQmQFQ", "stars": 5, "date": "2011-10-29", "text": "Jason Silberschlag pulls off a pretty amazing thing here in the metro-PHX area. Three shops with their own quirky details, passion and identity. Each tailors specifically to the demographic at hand, which I can totally get behind. The fact that each shop has its own deal going on is awesome - I really dislike chains and the chain feel/look. I hadn't seen Jason in a while at the other shops, the times I'd frequented, and was happy to see him behind the bar when I came here for the first time.\n\nJust the same way the other Cartel shops have a selection of brewing methods, this one does as well. Pour-over, aeropress, Chemex and traditional espresso (La Marz GS/3).\n\nAs expected from him, our drinks were flawless. He transfers this knowledge and passion to the baristas, which is obvious even when one leaves his establishment to go somewhere else - they stand out in the crowd of many coffee-pullers. The beans, who can complain? Jason made his name with the roasting.\n\nI got a prepared sandwich here, and my was it tasty. Bread was fresh. Sauce, ingredients and overall creation was good. Big Ben: you stole my tastebuds' heart that morning.\n\nCasual lounge area (see: couches), outdoor covered seating (see: hallway - shaded and cool!) and plenty of seating inside. As normal, his handiwork shines throughout the shop. Somehow I've never reviewed a Cartel shop before, despite my years of patronage. My latest experience changes that.", "type": "review", "business_id": "Hgbxen9iKGL4AH6kKgC8YQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "gJl64qD4_DfxXtJv6UeQlg", "review_id": "zbyyQ7Z1Ts52vdePEmVJ4g", "stars": 5, "date": "2011-02-15", "text": "I'm happy to say that I've incorporated Guedo's into my weekly routine. The food is excellent and the atmosphere is spot-on. I've read several reviews where people complained about the food being overpriced but I really don't mind paying a little extra when it comes supporting local businesses; especially a staple of the community like Guedo's. If you're looking for a place with awesome food and an owner who cares to learn your name, come to Guedo's.", "type": "review", "business_id": "T_Kcz_bkhE9T6YejqFqPxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ajEWtu_h76FDdEDxwdTWmg", "review_id": "YgT-tUToprw7q_ocMDgJ3w", "stars": 4, "date": "2010-11-18", "text": "In my opinion, there is nothing better than a delicious salad chock-full of a combination of fruit, nut and cheese. The Organic Spinach and Cranberry salad with chicken is pretty much the stuff dreams are made of (well, delicious salad dreams at least). The salad is so flavorful that you hardly even need to use the dressing. I could eat this salad every day, but, alas, its quite pricey at nearly $12.00", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "GZ_rT-m462lOR9Wy1pAcyA", "stars": 5, "date": "2006-11-27", "text": "Overall I am a big fan of this place... first how can you beat a place that is BYO???!!! You never have to worry about a bad wine list or paying too much because it is your own stuff... I find the food excellent... they menu is not large and changes often... but I have never had anything that I have no liked... the chef is defiantly 5 star and since you bring in your own wine the prices don't seem that bad... but it is not exactly cheap... \n\nThe only down fall of the place is that it is real small and has funky hours... I think it is only open Wednesday to Saturday. I know that they take reservations and I would venture to say that is the only way to actually eat there... This is a nice place for special occasions or a date...", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2dRFso4q51RFKhxntL9vFA", "review_id": "1is-TkkED3KANgVKKrj9Rw", "stars": 4, "date": "2009-08-05", "text": "What can I say, this place is an Albertsons... \n\nDefinitely not high-end like Whole Foods, but not bottom of the barrel either. It is always clean, bright, and organized. The selection is vast, and since I've seen things behind the scenes, I know they work hard to keep only fresh and undamaged food on the shelves. \n\n\ndisclosure: I used to work here", "type": "review", "business_id": "m9_BUX-WkIi62jy3qa3tvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a9BNjvoWpFSL9yQa-eJlLw", "review_id": "0Wzdh7QgN888j6weY_Sc_A", "stars": 5, "date": "2011-06-01", "text": "Pizza has been delicious and fresh every time I've been there. The Chipotle pasta is absolutely the best though.", "type": "review", "business_id": "OkXpdUozVS3vjSRtCoSIvw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Z0ZFt2xLqar_t4taR1R2YQ", "review_id": "EYSjwj4_gVNgjLwoFfzd0Q", "stars": 5, "date": "2012-08-10", "text": "I love this place. They are so accommodating and the food is delicious. They made a special meal for my daughter and were happy to do it. Our server was helpful and friendly. I had the roasted beet salad and the ingredients were very fresh and tasty. I can't wait to go back.", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "Q96IRvil6RNgdLmGKuh81A", "review_id": "sg-cRsj2ySCemz4HuvgqbQ", "stars": 3, "date": "2009-05-12", "text": "Much better than the frozen variety. Sort of better than the quick serve shop in the Fashion Mall in Vegas- from what I remember. This place was just as I was expecting: way crowded at lunch time, over-priced pizza and drinks, and so-so service.\n\nThe pizza I had with wheat crust that included eggplant, roasted red peppers, and goat cheese was pretty tasty. I guess if you consider that I had a second meal out of the pizza, the price wasn't too bad.", "type": "review", "business_id": "ut-kla-EA23nJOij_dcL0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1isUdyg7SFk3_VHpZwLxpg", "review_id": "td62enu0kVGyulQ6krjiaA", "stars": 1, "date": "2012-03-12", "text": "The Management Group at this location need to make a better effort to control the number of people jumping theaters. My experience at this theater was one of the worst that I have ever had. I will never go back to that theater again. I felt that it was nothing but a complete money grab.", "type": "review", "business_id": "O2Fq4v8QW1EeULVvrnrnBQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "eA7hkwrrknhxhqs-dOhDYg", "review_id": "s-qpnhtNefm1_Y4V5uoTLw", "stars": 4, "date": "2010-02-14", "text": "After a bad experience at a Thai restaurant, I swore off eating Thai food. I don't like spicy food and I was thoroughly convinced that all Thai food is spicy (even if you tell them you want it mild).\n\nAfter talking to a colleague, he told me to try Lemongrass. He spoke so highly of it that I had to give Thai food a another try. So I did and to my dismay, I loved it. I checked Yelp before going and everyone recommended the Thai Basil. That's what I ordered and I loved it. I also got the Thai Iced Tea and that was yummy in my tummy sweetness.\n\nLemongrass rocks and I will be back.", "type": "review", "business_id": "puFrm8eNizztqaWr_e32pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B_leEp0XWSNi5_HQ_BLAAg", "review_id": "FsgySMO30fkfB589C2M7iA", "stars": 5, "date": "2011-02-11", "text": "i cant review restaurants in phx and leave out LGO. breakfast, coffee ambiance, service, pizza - 5 stars. happy hour 3 stars. Not very many places beat this place out for saturday or sunday morning coffee and or breakfast after a nice wrkout, run, hike or... anything else at home in bed with your better half. must see for my visitors", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "ANs4YACIYYoyAY6D7Xp4Pw", "review_id": "nIyLABhs3r7iD1R-2dZAVw", "stars": 2, "date": "2012-03-07", "text": "\"We wanted to take you out for your last dinner...so we got to thinking 'what place has specials on a Tuesday?'..and I remembered Chompie's has a special..AND A FOOD CHALLENGE.\"\n\nAnd THAT is how I ended up at Chompie's on a Tuesday. They were featured on TV (I think it's Man Vs. Food, but I'm not sure) bc of this food challenge of theirs. On Tuesdays, they have a special - AYCE Jewish sliders & fries with the purchase of a beverage for $11.95. (Keep in mind, a plate of 3 Jewish sliders + fries is $11.95.)\n\nI was told the specialties here are sliders. The sliders themselves are a decent size (I'd say maybe it's the same size as the tiny McD's burgers, but taller?). Jewish sliders have potato cakes in them; Western sliders don't; breakfast sliders are something completely different.\n\nEverything we ordered was ehhhh (befitting of a \"meh, I've experienced better\" rating). Two things that did impress me, however, were:\n\n1. They place pickles on the table right when you sit down! I'm not a pickle girl myself, but it's a nice gesture.\n2. Everyone here is so FRIENDLY (I mean genuinely friendly!!). Idk, I think most Arizonians in general are friendlier than the Californians I encounter on a daily basis hahahhaa. And our waitress went out of her way to split 5 checks for our party of 7...that was pretty cool of her.\n\nI'm glad I went here for the experience, but I wouldn't come back again. Lesson learned: Don't trust a bunch of post-gym, hungry, non-Yelping boys to pick a dinner spot ;)", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "n_lAaNGeWgspbbCJc0DqRg", "review_id": "Nlx4nFo54AI9uPVGd3gm8w", "stars": 4, "date": "2009-06-22", "text": "The drive to the top is really fun, and the view is worth it.\n\nI really enjoyed it here, but there's too much freakin broken glass on any of the trails down near the main shade/view structure that you should realy avoid it if you have your dogs with you and stick to the more wilderness areas.\n\n30 other reviews = TLDR (i just learned that one, see how I'm applying) so I'd rather be brief and useful than wordy and redundant.\n\nI did read Chuck R's review, and I have to say, I wish I knew more of the nooks and crannys that you do, but I can tell you that if you want to explore the Western reaches of the park, do so by starting in the center or east, and not to bother with approaching from the West side of the mountain range itself. All you'll find out there is a bunch of paranoid, possesive property owners who didn't stop to think that if they chose to own a home on a ribbon of private land that surrounds public land and restricts the public from getting to their public land, then they'll have to endure a little bit of traffic from said public. Here's a clue for any of those property owners, whether you're on South Mountain, Piestewa, wherever....the guy sneaking around is the one you call the cops on for being a suspicious trespasser, not the guy driving a family suv with 2 dogs in the back, who calls you from the street as he sees you in your driveway so he can ask directions on how to get to the park entrance so he doesn't have to bother you nice people in the residential neighborhood anymore driving around here. ah, duh.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PmL8qk1tFoOUluBdOLPxFA", "review_id": "0Ywd8qCzJWEkegAgX6oU0Q", "stars": 5, "date": "2010-10-26", "text": "I love the always smiling crew and food is delicious.\n50cents coffee in the morning outside tables with sun exposure and friendly clientele, all this in the beautiful kierland commons\nGood morning America", "type": "review", "business_id": "Oj79-vTnjQk_jLr6oNbT0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fMU6VEqB-vj4ouIZA_W6HA", "review_id": "nZRVg26CBq8iu5S4m1mJAg", "stars": 4, "date": "2011-05-25", "text": "The Camelback Barber Shop has very good service with a hot towel, shoulder massage, straight razor trim and, at least if you ask for Albert, get your hair cut with scissors. All for under $20 (plus tip). My Dad says it is one of the best barber shops that he has used--and they are very nice to us service dogs too! It can be a little hard to find, but it is in the breezeway between the two buildings, walk down through there and you will find it about halfway down.", "type": "review", "business_id": "lXhrVkDUsSHebKa2Aa0EYg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "zRHQTrKF7eeAOfQxamq6mA", "review_id": "5fM9hKq8Rz-t73PAfjWUbQ", "stars": 4, "date": "2008-09-23", "text": "I've only been once to the Thai Hut, and it was after the Museum visit, as it's right across the street. Combine two cranky parents and two tired kids and it could have been an unpleasant dinner. But Thai Hut servers were very accomodating, the food was delicious and they were friendly about my kids checking out the fish and stuff... I'd go back again, for sure.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7rhn21J5rBfmjgUZanogIg", "review_id": "t6gMx6mHPgq-OzdHIaRIRQ", "stars": 4, "date": "2011-06-01", "text": "Great service got there when they opened and hardly anyone was there. Our server mike was really nice. Tried the margarita chicken and I loved it. Tequila lime sauce was to die for. And the quesadillia was huuuuuge! Its a little pricey but hello your in scottsdale!", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g45j6zxyjTmEy6nhf42o0g", "review_id": "PDYzRjjA3SfJK3CxdYIOFQ", "stars": 4, "date": "2012-09-03", "text": "NO! The only good dim sum in town, however, yesterday we went and there was a sign on the door that the landlord had shut them down and changed the locks for failure to pay rent.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LA5SlWyJxM76zN7RbL6I0Q", "review_id": "lVpNzYWhyvopVJztVsapVQ", "stars": 4, "date": "2011-05-22", "text": "So I finally got a chance to go here for the first time, and YUMMY is the word to describe this joint. My advice get the challah French toast. My Wife got an omelet it was really delicious too. I need to come back and try the Amanda Burrito.", "type": "review", "business_id": "1_siFXaQbxck3tiKRwnq7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8JyI7UXoXW_7XzbXwfpAUA", "review_id": "wfTzCyVuUbZ9PNFuUsdAXg", "stars": 4, "date": "2012-03-27", "text": "Great, challenging course. Well maintained. Friendly staff, marshalls, etc.\n\n\"Club House\" is still a pretty-fied construction trailer, but they now have supplies, clubs, balls etc. available.\n\nThe view alone is worth the round. Unfortunately, porta-potties are only at the practise tees, holes 5 and 13, so it isn't so lady-friendly.\n\nThe bar cart does make its way around, however and you are given bottled water in your cart.", "type": "review", "business_id": "lD5Xn79OBBuDf0zyv_3cWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RknsoxpICgtuuv46uaTpyw", "review_id": "7ehgG9LKT0xSTenQptmLww", "stars": 3, "date": "2008-11-30", "text": "Honey Bear's is no Joe's BBQ in Gilbert but I actually enjoy it. I usually get the pork sandwich and potato salad and I find myself going here. I like the BBQ sauce and the quality of the meat is good. If I'm in Tempe and want BBQ I usually go here.", "type": "review", "business_id": "wQXqj3GTHsF3AcWB3LTxMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "S6NrF2WuiJXp9BbWEDpcHQ", "review_id": "GaoPGcUDZsKVWyh6F1KCRw", "stars": 5, "date": "2011-04-18", "text": "Alas...I've given up the idea of writing a review for a place if it isn't at least 4 stars. Sue me; I'm in the industry. \n\nFuego Bistro is by far one of the best places I've been to recently. I was introduced to it this last weekend on a date. Ironically, it's super close to my house yet I've never heard of it. When we were arriving, I was a little curious to see where the hell he was taking me since there aren't any signs really and it's pretty hidden. Once we were inside, though, it was like finding a little treasure.\n\nThe patio is welcoming & even though we didn't have a reservation (aka we couldn't sit outside) we snagged a table close enough to enjoy the beautiful weather. \n\nWe started off with a round of mojitos and even though it's been a few years since they've won best mojito...I can say the Prickly Pear was the best I've had in a while. The Ahi Tostadas followed & they were awesome...the sauce added a kick to it & it was a perfect start to the meal.\n\nAfter, we shared the Fuego Pasta with chorizo, chicken, mushrooms, peppers, & a chipotle cream sauce...huge! What I did eat of it was delicious. My favorite (and my date's I'm fairly certain) was the special...an herb crusted Mahi Mahi with a pineapple sauce, home-made cornbread, & chipotle cheddar mashed potatoes. Amazing. Even though the Mahi Mahi might be hard to come by if you visit, the two sides aren't & are so good, I'm droolin' just thinking about it. :)\n\nDessert? Try the banana burrito. Heaven on the tongue!\n\nKevin was an excellent server which just highlights the night. It's hard to have a great meal without great service but he provided just that.\n\nIf you're in the area...check it out. If you aren't...check it out. I'm pretty sure you won't be disappointed.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "KuPscbI0KPxudSMPZIcrCA", "review_id": "4fMdyzCS7iwYaNhF5YJLcw", "stars": 4, "date": "2012-03-03", "text": "Very nice views of Phoenix. \n\nNot a very challenging hike but very enjoyable. Gets steep at the very top but a couple of hard steps will get you to a nice view", "type": "review", "business_id": "vZBYSQtTbY9MaYu5qNuU8Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KTMqiNYmGBzenePbCVLa-g", "review_id": "yWIqxHTOfszPjBoy0q4-pw", "stars": 4, "date": "2012-08-02", "text": "Great stop for a fast breakfast - the hubs had the puffed pancake with fruit on top (I LOVED how much fruit they loaded on it - and I got to eat it all because hubs doesn't like fruit so much). I got the oatmeal and a pastry - so good! The price was reasonable and I loved that it was all fresh and the flea market vibe the decor and seating offered. Free wi-fi is a bonus too!", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XpejQYZqVcYGX7fYuYHzSw", "review_id": "LUPEqsBJ_1Dr3LqPbZe1bA", "stars": 2, "date": "2009-07-18", "text": "After hearing a lot about all of the MBFGR's that are around the valley, I finally got a chance to go recently as part of a family gathering (which was a planning fiasco and logistical nightmare, but I digress). This location was, well, let's just say, it wasn't crowded. And it showed in the service, very nice and attentive. They were very patient when our party was supposed to be 8 people, then ballooned to 12 people, then 13. Unfortunately, one of the solutions to accommodate us was to put a couple of square tables 'attached' to our eight person round table. I *hate* this. It's just awkward for at least half the people, and then the people that get stuck at the 'junction'...sucks...\n\nWe ordered some apps, though the only one I tried was the saganaki. It was definitely good and the pita bread that it came with was nice and warm. For a meal, I ordered a gyro pita. Now, I understand that this is a 'full' greek restaurant, and maybe I shouldn't have gone with a gyro, BUT, that's what I was in the mood for, and being a basic greek food, shouldn't be hard to make a good one right? Well, apparently not. I've probably gotten gyros at ten places around town, and this was definitely the worst one I've had. The pita wasn't particularly warm and the meat was kind of tough. The tzatziki was fine, but thought it was a little weird to be on the side.\n\nThe service was good and patient, but the lame decision to combine two different kind of tables (when we suggested moving and pushing several squares together) knocks them down a little bit. Though not as much as the not good gyro. Probably closed to a 2.5, but rounded down to 2.", "type": "review", "business_id": "bjUH-01t834CVg0Yl0CLWQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RWtDRHpLnPBDjDVdKWh6uQ", "review_id": "BxRUTEdKhHEmbyM7EECH-w", "stars": 5, "date": "2010-10-05", "text": "Wow!\nBeing a Phoenix native, we have enjoyed many a meals at the hands of Chef Gross. But this past weekend I was blown away.\n\nI was planning a large garden party for my friends bridal shower. The record temperatures left my garden ravaged by the heat and I did not want to have sweltering ladies unable to enjoy themselves. After a small response to attendance, I decided to see what some of my favorite dining spots could offer me.\n\nI had a small budget but wanted to keep it classy. Christopher's truly rose to the occasion. Alex, was my special event contact and this lady was \"on it\". Emails and phone calls were returned at lightning speed. She presented a delightful menu with plenty of choices (some even for the vegetarians attending) all with in my price range. \n\nWe had a wonderful time. We had a party of 18 in the beautiful private room that fit our festivities perfectly. Sundays can be quiet at The Biltmore Fashion Park so it lend-ed us to a bit of intimacy that was nice. Ben was our go to guy. He was right there for every thing we needed and his helpers were polite and attentive.\nAs for the food, well, it's Chris, come on! I had the vegetable risotto ans it was cooked to perfection. All of the plates came out of the kitchen quickly and all together but no one ever made us feel rushed. Wine flowed, desserts were gobbled up and the ladies oohed and awed over everything. the staff even offered to take gifts to the car for the bride.\n\nThanks for saving me Chef Chris and your team. You were all fabulous and I will be telling all of my friends what a great job you did. The holidays are coming and Ben reminded us that they also do catering! Hmmm, can you say \"Christmas Party\"?", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "R40oaWEavEF4FoBx70oDhw", "review_id": "6TVW7jAeQUfZzahMQzxBxg", "stars": 5, "date": "2012-11-14", "text": "The food on its own is very good, probably worthy of a four star rating by itself, especially considering how difficult it is to find even passable Italian food in the West Valley. I bumped Grazie up from four-stars to five-stars because the service is very, very good, ownership is attentive and the atmosphere is very pleasant. As for the pizza in particular: for a NY native, finding decent pizza in Phoenix is close to impossible. Good thin-crust (Italian-style, as opposed to NY- or Chicago-style), like what they have at Grazie, does happen to be a bit easier to execute, and Grazie does it well. Would I have loved to find a great NY- or Chicago-style slice instead? Sure, but good pizza is good pizza nonetheless.", "type": "review", "business_id": "L1ymPhPjisiSD6RI1NtnQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9UMZAdORkBx8u9e6wyEggA", "review_id": "kqPEQZStB4NY98dYxlHDrA", "stars": 3, "date": "2011-08-18", "text": "The 3rd star is because they have EVERYTHING. And you can't beat the prices. And as far as crowded, budget conscious mega stores, this is definitely on the cleaner side, even with their current renovation project going on.\n\nThe dark side... it IS a very crowded mega store, especially at the later hours. And as crowded as it gets from 9pm-1am, there's usually only 2 checkers, which makes for LONG lines. \n\nIf you can hit this place during a quieter time, earlier mornings or early evenings, then you can get what you need without breaking the bank.", "type": "review", "business_id": "uvEnqpFIAGIA-Absj8Sz7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "m7j9e53ycZxjWYBD7rZVng", "review_id": "Ir3ntynddTH_3HYSqgEh7A", "stars": 4, "date": "2007-11-02", "text": "I'm giving the trainers 5 stars, the store itself would get 3 so an overall of 4. \n\n5 stars to the trainers because they truly know their stuff. Our trainer was Holly. Holly was very knowledgeable about dogs in general and has a wonderful way with them. Our pup, and while I'm biased, got the basics in about 2 classes and Holly helped worked with us to make sure she understood completely.\n\nNow, 3 stars to Petsmart overall because while they have a great selection I've found their staff to be less than helpful at times and generally dumb about the products. The food they sell there is crap as well.", "type": "review", "business_id": "GZNEPuEPqs7JIswUhOttnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 3}, "user_id": "ADMub7n217L0nKnUm_liUQ", "review_id": "JE4qCKrv0447TJ6JN5wzOw", "stars": 5, "date": "2011-05-26", "text": "WOW! Carmel sundae was amazing!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "_8TiBVGCsIptJ9gPy3ZP_A", "stars": 3, "date": "2011-01-13", "text": "Me and three girlfriends headed to La Bocca for Happy Hour after reading all the wonderful Yelp reviews. I was really excited on my way there, but left feeling underwhelemd. \n\nFor me, it felt a little big, commercial, the decor was kinda cheesy - think red leather chairs, Pier1 Important wall sconces, even a \"VIP\" looking lounge in red velour. Hardly, original or intimiate enough to be considered an authentic \"wine bar\" in my opinion. If you're a regular at chain restaurants you'll probably think this is a cute place (call me a snob, whatever). Let's talk about the wine list at this \"wine bar\" --- it was okay but they were out of our first two choices of red - not ideal for a wine bar. Then, we ordered our bruchetta for our table of four and were annoyed when it came out cut in halves. Knowing we were sharing the plate, maybe the waitress should have clued us in? We ended up ordering a second board for the table so we could each try the variety. I do have to say, the bruchetta was good. \n\nWe were clearly there for happy hour on a Wednesday night (which I do love goes until 6:30pm) but found it a little rude that the waitress came by six minutes after the mark to ask if we wanted a second round. There was no grace period so we paid full price. We did notice, that our full price glasses of wine were filled to the brim - so maybe 1/2 price = have the wine? \n\nDon't get me wrong... the place is cute enough, would def seem like a \"fancy date night place\" if I were still in college. I'd go again with girlfriends but won't be racing back with my husband. \n\nI wish we would have tried more food because that seems to be the key to this place. Ambiance and service are good - not great. Oh, and the music could use some updating. The playlist was... eh... interesting \n\nMaybe it's my love of Postino or maybe its because I was on Mill Avenue I was instantly judging the place.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "NWEKM2JBpPCtvGtIsRAgMw", "review_id": "GNSpccxIQExXa_pkkM_e8w", "stars": 3, "date": "2010-09-15", "text": "I have been to Kyoto about 3-4 times in the past 7 years. I still hasn't changed a bit since the first time I went there when I was fifteen! I always eat at the grills. I love places with the tepanaki (I dont know how to spell it) grills. I have been to many many places like this and Kyoto is just ok. This place needs some serious redecorating. It looks like the place is stuck in the 1970's. The food is good though. Last time our grill cook was really bad and was droping things all over the place but hey everyone has an off day sometimes. I may go here again just because its so close to my home but otherwise I've had better.", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "35_ZCjAbIHr_YyvVipmkLw", "review_id": "RmvN6q8--gQtXAdC7Eoozw", "stars": 4, "date": "2009-12-22", "text": "It's a chain, but eating with my fingers, what's not to like. I'm a wimp in the spicy department so, I don't often eat buffalo hot wings because everyone I'm with orders the \"hot\" ones. I like the sauce options at Wild Wings and the and the wings are meaty. I had the Parmesan Garlic and the Asian Zing. It's also cool that small portions are available so I was able to order 2 versions. I was able to tolerate the Asian Zing, so maybe I'll try the mild or even medium classic versions next time.\nMy hubby ordered the Jerk Chicken Sandwich and he really liked it. The onion rings were pretty darn good, too. \nThe only thing negative on this visit was the sucky Berry Lemonade made with Minute Maid Lemonade, I thought for the price it would have been fresh squeezed, but alas I did not read the small type.", "type": "review", "business_id": "trG1k-K6Nq4YKcexa1AGOA"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "89tDmdrHEF5s7u9dBc6rjg", "stars": 4, "date": "2008-08-16", "text": "Three stellar write-ups pushed me over the edge and I decided that it was time to take my self for a much needed pedi. When I arrived, the place was packed, but thankfully they gladly take walk-ins and I had only a brief wait before I was whisked away to my massaging, bubbling chair of goodness.\n\nI have to echo the other reviewer's comments on cleanliness and down-right bargain for the service provided. Not once did I have that \"eww, you aren't actually going to touch me with that\" reaction. I didn't swoon from toxic vapors as soon as opening the door. And my attendant was super friendly and completely cool with the fact that I had clearly neglected my heals for the last two months (something that was hugely apparent after she started filing away - how mortifying... skin flying everywhere!!!)\n\nAnd for those of you that might fear the Elaine experience (Seinfeld reference), fret not. You can actually understand everyone one that works here and shouldn't find yourself sitting and wondering \"what in the hell are they saying about me now?\"\n\nTake your twenty-bucks (plus a little extra for tip - unless you get flowers you will need thirty) and go get some much deserved pampering. \n\nDear Paulene - my toes and heals thank you for the love! -- see pic ; )", "type": "review", "business_id": "FpnLEpRLtDvcJvmz2N1UdA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "lwppVF0Yqkuwt-xaEuugqw", "review_id": "z6y3GRpYDqTznVe-0dn--Q", "stars": 1, "date": "2010-12-22", "text": "My husband and I were really, really disappointed with our experience at Coulter Infiniti. We brought our 2006 G37 with barely 34,000 miles (and out of warranty) to have the moon roof looked at. The moon roof wouldn't open or close, but you could hear the motor working.\n\nAfter leaving the car there all day we get a call that the car needs a whole new moon roof track - which would cost over $3000. We contacted their corporate office to attempt to get some or all of the cost covered, due to the fact that it's a big repair and the car is barely out of warranty. We were flat out denied. Twice. \n\nWe were dreading the big repair, and decided to bring the car to a different auto shop (which will get a big, fat 5 star review) for a second opinion. Turns out the track just had a BUILD UP OF DIRT AND DEBRIS and needed to be cleaned out. Seriously?!?! Just over $100 later we were on our way!\n\nI find it VERY hard to believe that Coulter didn't know this was the problem. We are now searching for a new SUV, and will not be choosing Infiniti. How disappointing.", "type": "review", "business_id": "RBiiGw8c7j-0a8nk35JO3w"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ExN_cTg4mmbSTcSX2B4aeA", "review_id": "RsPe68HgQ0HkF5wY9mJ4Hg", "stars": 1, "date": "2012-10-19", "text": "I have have been going to Bosa off and on since they opened. Have a bad experience and stop for a while. Then I tell myself \" It's right down the street why not \" then disappointment again. \n\n1. Went in on a Fri at 630AM for their special curler donuts, that they ONLY do on Fri. Sure enough nothing was prepared. Was informed it would take another 30 min to finish the donuts. Noticeable very, very, very irritated I ordered 2 other donuts instead. Was planning on a dozen, but had to settle for what they had. Well staff made sure to charge me a credit card fee due to my purchase being under $ 5.00. When you don't have what you advertise, you might want to waive the .50 fee. Or you will really piss off that customer. Common sense.\n\n2. Customer service is horrible. See #1.\n\n3. When I get home I have never received the correct dozen donuts I ordered. I don't understand it ???? I'm perplexed ??? I don't think it's anything personal. I just never get the correct dozen. They close the box, I pay and go home. Surprise.\n\nThe donuts are OK nothing great and not bad they are donuts. They are convenient and close, but I must remember to pass on Bosa Donuts.", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DEG-E8qzmZb9dKafebiEfQ", "review_id": "F48k0rnwl5uB9aZ2pKdmsQ", "stars": 5, "date": "2012-12-07", "text": "Nobody likes going to the auto body shop..period! \n\nThese guys took a negative situation and absolutely turned it around. They immediately made me feel at home from the moment I approached the front desk; all the way up to the ownership of the shop. It was a professional experience with a family friendly approach. The work they completed on the rear bumper of my car was excellent. I HIGHLY recommend Impact AB for your AB repair needs.\n\nTom Butka was a pleasure to work with. Thanks Impact AB for everything!", "type": "review", "business_id": "I6lkxbQq0sSskDlt0jCs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mac3De6NAHvrkRY7FwKcxg", "review_id": "uMiXItSUJPOUjQ-kIl8FQA", "stars": 5, "date": "2012-02-08", "text": "Good service. Excellent value. I went for the \"All You Can Eat\" deal they have from 2-9 PM and was there for a few hours. I'm not fat or anything, I just felt like finding a good place to study and eat for a bit. The server was pretty attentive and the kitchen staff was pretty fast. I was kind of disappointed that the menu for the all you can eat deal was missing many of my favorites from the regular menu, but there were still quite a few good choices.", "type": "review", "business_id": "0kZ4aYmqf5fzTt9Yvz8Kvw"} +{"votes": {"funny": 0, "useful": 1, "cool": 3}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "ZuHLD_mgi8Gf_yfEjq2fEg", "stars": 3, "date": "2008-04-29", "text": "Must have eaten here a dozen times (used to work next door a few years ago). Nothing to amazing on the menu, the food is good overall but nothing I can remember really stood out. The best thing about the place is the location.\n\nI have noticed it has gotten considerably busier here as of late, maybe things are improving.\n\nThey do offer Free Wifi which gets them some extra credit.\n\n*I have just been informed that new management has taken drastic steps to improve the place - I will visit and update this review ASAP", "type": "review", "business_id": "6xDQaprsX-GMl6umXeILPw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "UgttlReSB8g9YF3URK8BPw", "review_id": "KUvoaiERjw4fqnDuSMzo4w", "stars": 3, "date": "2009-11-10", "text": "My sis recommend this place for our weekly dinner. We shared on of the large appetizer platters (hummus, baba ganoush, tabouli and dolmades and two pitas). Very good and perfect for a light dinner. I would have to say the best thing was the fresh lemonade...wow! If you like tart you'll love this. \n\nI thought overall the service was great. Not only was our waitress extremely attentive but the manager stopped by to make sure we were enjoying our food\n\nI give The Flaming Kabob 3 stars!", "type": "review", "business_id": "tLvaZcQ1BvgSyA8KU2qgxw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "kI1MoLcExqwmK7wcT5Vy1w", "review_id": "vkXeyfT27SgsnAkNpTW7Gg", "stars": 5, "date": "2011-10-10", "text": "This is one of my favorite go-to places in Phoenix, and I feel fortunate to live just a mile away. \n\nThe atmosphere is excellent - low-lighting, wooden floors, modern decor in a vintage-looking house-turned-restaurant. \n\nThe food is even better. I have never ordered anything I didn't love (with the exception of the cheesecake, which isn't made in-house - it was just okay). I crave their tuna salad on a regular basis - it's good both in the tuna salad salad and in the tuna salad sandwich. The grilled cheese is the bomb, and so is the cashew butter banana sandwich. The mac and cheese is superb, as well. Seriously, everything rocks. I highly recommend ordering the mixed greens as your side if you get a sandwich - the dressing is light and citrusy and smacks of homemade excellence. \n\nOh, and it won't empty your wallet, either. The prices are excellent for the quality of food you get!", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vggE8kitLHHhWeM7ZPdzpg", "review_id": "pc6IVFqe9T5fX-7yhWCSBQ", "stars": 4, "date": "2009-03-09", "text": "This charming little cafe made my day- the atmosphere is charming, clean, bright and warm....and the wait staff and cook were friendly and welcoming.... but the food? the food was the best part.\n\neclectic, delicious AND reasonably priced.\n\nI got an eggplant panini--called espaniclata or something- which came with a side salad. The quesadilla I split with my coworker was surprising and sweet- good for a snack or dessert. I wasn't a big fan of the chai (I stole a sip from a friend)---it was Indian, just not what I am used to- not as sweet\nAnyways, I went on Friday for lunch, and liked it so much I had to go back Sunday. Again, fantastic. I think I found a new love.", "type": "review", "business_id": "QPheu9dnwdlaPwXofP8ijw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "vuCa1VxgnyC3KP_oQ3jk5w", "stars": 5, "date": "2006-01-25", "text": "I hate to admit it (because I usually avoid ultra trendy places like an ex boyfriend) but I love Postino. It used to be an old post office, thus the name. It is now a wine bar that serves \"light fare.\" There are not too many places with this kind of atmosphere in the Valley -- very California. One of the walls is a giant garage door that they roll up so the whole place is open. Little couches and coffee tables are mixed in with tables and high tops for a variety of seating choices. The bathrooms are lovely, clean, and lit by candles. The salads are my favorite in Phoenix and the bruschetta is out of this world. Come early, get your table and enjoy!", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_4GKfTktcFobMsJwQ6YxHQ", "review_id": "ljl417Wggbrh4M2ImQOHTw", "stars": 5, "date": "2012-11-03", "text": "I'm usually not a big buffet fan, but this place changed my mind! It's very clean, good service, lots and lots of amazing dishes, AND really good sushi! Weekend lunch was $14.99, but during the week it's $11.99. Well worth every penny. One more comment, this isn't the kind of buffet where \"shifty people\" go. The kind where you need to Purell your hands and arms when you get back to the table : )", "type": "review", "business_id": "1sNa5oW9ZYX8MbMFkx9LzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "xKlCLPx09olhZsogLU-wJQ", "review_id": "cA7DFsKSgT6z3GtHA8bShA", "stars": 5, "date": "2012-08-18", "text": "This review is directly for Joe that works at this specific location. From the first time I entered the store with my boyfriend, I can't explain how much of a help Joe has been. Not only is he knowledgeable about every product in the store, his warm character makes it an absolute pleasure to shop there. If it were up to me.... Joe would be a regional manager!", "type": "review", "business_id": "0Gu2cpJ5x9ZZfDDHohBY_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mDS8rlDOcgRT3PMHGz3tug", "review_id": "EhnAIAz-fEuFCkne3ADfsw", "stars": 4, "date": "2012-09-10", "text": "I never tire of a deliciously hot bowl of Pho from this place. This service is efficient and the food tastes so very fresh. The veggie pho is my favorite along with the soft appetizer spring rolls. My son usually gets the beef pho or one of the fried rice dishes and we have never been disappointed. Good lunch crowd every single day of the week. Yummy.", "type": "review", "business_id": "JBCBlVaHfZUZrq-lQfryDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m5KX9g1npFPfn72Y3dzGEQ", "review_id": "oNwDrHblUgBYY8KcB9FiJg", "stars": 3, "date": "2011-11-29", "text": "The selection at this store is fantastic! But I've come to expect the worst from the sales staff, the only hello you get are from the girls standing at the counter when you walk in and even that seems forced. When I actually need help I feel as though I don't want to disrupt the employees in the middle of their very intense conversations. I've learned to do my own research on what ever it is I'm looking for before I go into this particular store.", "type": "review", "business_id": "kq7esIwZpYXLKPJhHMIZgg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ma-7afsMYNnQkIGxRwPxdg", "review_id": "obzCOJ40VrzwumqRZisXvA", "stars": 4, "date": "2012-10-24", "text": "Don't miss the carne asada! I love the carne asada mini quesadillas.", "type": "review", "business_id": "gc5gNHC8VJQ8px7bJJRiQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "FIjJC9GlS8B6gbwn64YNtA", "stars": 5, "date": "2012-03-15", "text": "I am not religious, but I will be the first person to admit I thank God for this place--and the neighboring Windsor. Seriously... a latte, ice cream on a waffle cone and a cocktail all within feet of each other. Dear Lord, I have reached bliss. I can die happy now.\n\nSome people gripe that the flavors are not strong enough. \nI prefer to gripe that they aren't open 24/7 because this is my bliss and damn it... I need it at all hours.\n\nAlways friendly.\nAlways clean.\nAlways awesome.\n\nYes, there is heaven.", "type": "review", "business_id": "tAmevVP8B7PiWxcJ0PlYVA"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "d8geeKYzPeGp8uSP8C6PTw", "review_id": "YpGJGJEZ2-O91z-SgSnsdA", "stars": 5, "date": "2008-07-27", "text": "\"One, two Feddys coming for you!\" \"Three, four better lock your door!\" \"Five, six pick up a crucifix!\" \"Seven, eight better stay up late!\" \"Nine, ten if Freddy Kruger went to Lush he'd have had great skin!\"\n\nDude, this place is AMAZING! All of their products are all natural, freshly made without preservatives, and are just incredible. My best friend and went here after a four martini lunch plus shopping, and we had a had treatment done with their Ocean Salt Cleaner and exfoliator. It is made with sea salt and smells just like a margarita! his was followed by using their dream cream, and now I am hooked! And it's not just the martinis! I have very sensitive skin, and I have never had a reaction. They also have a great men's line as well. I have been using the Ambrosia Shaving Cream for men as well on my face, and I have no razor burn. It is like a light cream that moisturizes while I shave. Wow! I have never felt good after a shave!\n\nAnyway, I could gush all day about this place, but the bottom line is it has incredible products that are all natural, and many are vegan, the staff is amazingly helpful and not at all phony, and even though it may seem expensive the products last for a long time, so the cost is really not that high. Get thee to Lush!", "type": "review", "business_id": "mWjlJ0Mvde4nBvM9nXlU-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U79smK_l4yT2lLXUPVa3TA", "review_id": "75e8OBS3l9MuNcMR7klrzw", "stars": 2, "date": "2011-07-09", "text": "I went here for a business conference. Granted, I just came back from a REALLY nice place in NYC, but I still expected something amazing since it was called the GRAND RESORT. I must agree with fellow yelpers that it seemed a bit outdated. I did not like the rooms. There was a baby sink and mirror area. A bazaar bar in the living room that just didn't seem to fit. The beds were mediocre. I did enjoy the kid free pool! I found it very hard to find my way around this damn place! I got lost several times :) I did appreciate their concierge service - very helpful. I needed a sewing kit to fix a button that came off - $7 later, I had one small thing of thread, baby scissors and a needle. Drinks and food were sky high. We ended up walking down to a little mexican food restaurant nearby. I don't think I would go back...", "type": "review", "business_id": "I941jBn1KURuN-2wygJ_5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "XN4C9E4Gj79bhbWwLshc_w", "stars": 4, "date": "2012-07-10", "text": "standard Target.", "type": "review", "business_id": "3r5V8n1sabGkueQFsqoC6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "nUGV1dVjO84ZI3nplRbwFQ", "review_id": "jGZOasdgtQ3dtuKtgpTKuA", "stars": 5, "date": "2010-02-06", "text": "I did not expect such a great find in a such a nondescript location. I went there looking for a very odd beer. Not only did they have it, they had tons of it. The guy behind the counter was helpful as soon as I walked in, and showed me exactly what I needed.\n\nThey know what they sell very well, and can give excellent recommendations on whatever you might be looking for. It was great to talk shop with someone who obviously knew his stuff.", "type": "review", "business_id": "oYLfNKc6Q_XKG9ixiMiumQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "z2aIK__6KMpQBx1czvv8BA", "review_id": "lu5L6oQVRoCFqdqc6LX7Mg", "stars": 5, "date": "2009-01-31", "text": "I crave breakfast food all the time, but I want something more than an Ihop or Dennys. Not only is Crackers & Co way better than a mainstream breakfast place, it's actually cheaper too!\n\nI ordered the breakfast burrito without meat and it was amazing. It had just the right amount of spice and the portions were way bigger than I imagined. Their country potatoes are awesome and have nice, brown, crunchy edges. I went with a group of 5 people who all ordered different breakfast items and not a single person was disappointed with their food.\n\nThis place was not only really cute but also great for the price and taste. Plus, they serve breakfast all day on Fridays, Saturdays, and Sundays.\nI can't wait to go back.", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fRuflKntKfMY62EyScXLhw", "review_id": "zVEfrp_uFWdcVLjOjpnjDw", "stars": 3, "date": "2012-02-08", "text": "Food is good. Coffee is too week and tastes like a lot of water added to it. They charge you if they add a shot to make it taste like regular coffee.", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A7B8l4bO15tVkpD-5TD2zQ", "review_id": "Dep1_xpMUYkoTXR8FB4dXg", "stars": 5, "date": "2011-05-04", "text": "Nearly 3 years after a Waikiki vacation, my longing for a Puka dog has been satisfied. Maui Dog is not exactly the same, nor should it be, but it has the same awesome concept, plus more! I've been here twice, once had a beef dog, the other a turkey dog. Both with mild garlic mayo & pineapple. These suckers are huge! And messy! And delicious! The dog has good flavor, mixed with the slightly sweet bun, spicy mayo and sweet pineapple...perfect! I think it would have been a better eating experience if my order was not to-go. The mess these things make all wrapped up is not pretty, but that absolutely does not deter from the taste. I can't wait till I have the time to eat-in and try the rest of their tasty-sounding menu!", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yjUhXi-YP4a6G48sK5kEpw", "review_id": "ok8vVPewenffLBxNoD9KkQ", "stars": 2, "date": "2011-01-27", "text": "I really wanted to like this place. I'm Greek and my family cooks a lot of Greek food. Their tzatziki sauce was runny and not flavorful. Everything was just real commercialized, nothing tasted right or even close to homemade.", "type": "review", "business_id": "t4pkeGscooStLjy-Js5Byw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "oa4zVQlqjG_3INGOp0HItg", "review_id": "jDnsD-Q4kMRZKnl8Jgx4wA", "stars": 1, "date": "2012-07-19", "text": "I will be moving to Phoenix in the Winter and I thought I'd scout out some LFS while I was visiting, which led me to Reef Culture. At first I was positive seeing some nice looking displays and LED use, however this soon changed.\n\n On closer inspection, lots of the tanks were infested with aiptasia and bubble algae, and prices of coral were hugely inflated compared to other prices in the area and back home. The people were very unprofessional and unfriendly and first ignored me entirely despite trying to flag someone down. When I did manage to get their attention, I was belittled and treated like a child who knew nothing about the hobby (I have had marine tanks for over a decade ranging from large 55 gallon+ to tiny DIY LED picos). \n\nAfter this rude and demeaning experience, I continued to peruse the last few tanks and came across an angler fish. I watched him and he followed me as I walked down the isle as far as his tank would go and I backtracked a couple steps, amused that he was slowly walking along the tank with me. There was a loud crack as the man behind the counter slammed the phone down, snapped his fingers at me, and told me to \"stop harassing the fish.\" Keep in mind, I was not tapping on glass or prodding anything as I am quite short and I could barely reach to the high up tank where the angler fish was, much less reach to \"harass\" any fish. After this rude treatment I promptly left. This kind of unprofessional treatment of the customers is shocking and unacceptable, not to mention the bubble algae infested tanks (one spore of that on the water that you get your coral in and your tank is infected too). \n\nI won't be doing business here when I move.", "type": "review", "business_id": "Nk-3m_BxXvqFq54r10mHlA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sBLRl_6gQ5HkUVQpmjE05g", "review_id": "3G45nTBR9hBZjga2L8p7ag", "stars": 1, "date": "2012-09-08", "text": "Very bad food!", "type": "review", "business_id": "Ih1TGSZyu2Q8htn2JA4tIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LUGSw8o04ghJe_-4-X5fbA", "review_id": "BlyKgXSxcrGOCf0oznphdA", "stars": 4, "date": "2010-02-04", "text": "The pizza's very good! Unusual in that you have to order and pay first but they different combo pizzas are good. My favorite so far is the spicy chicken.", "type": "review", "business_id": "7Z-1mLIoxCHUxCp54W1CGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tvYEFLAA5n0AaTAnPrCftA", "review_id": "yrpSLgjUZstd_GKf_N0beg", "stars": 5, "date": "2012-09-21", "text": "I love this place. I'm mostly here at dinner time to pick up my favorite roasted turkey artichoke panini and sometimes salad and soup as well! The staff is super friendly and recognize when my boyfriend and I show up, maybe because he can never leave without getting a dozen of their amazing cookies! The manager Kaylee is fabulous, she makes us feel right at home and is never unsatisfactory. They may have a smaller parking lot but I guess I have always had good luck with finding a spot! I know I will continue to come back for more.", "type": "review", "business_id": "euSK0uPFinytVDR_UROMTA"} +{"votes": {"funny": 7, "useful": 10, "cool": 12}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "P5dOTCCzbAgZeTzDcIdVAg", "stars": 5, "date": "2012-06-18", "text": "i dont know why i didn't fall in love with pita jungle sooner. \n\ni work right next to the mall so the food court is super convenient for us. let me tell you a story of how i ate here everyday for lunch for a week. \n\ni ordered a standard gyro with no pickles (they put pickles on their gyros and i find that disgusting) \nmy coworker, jen, ordered the pasta salad with chicken on top. \n\nmine was delicious and i tasted hers. hers was so good! i was like, that's what i'm ordering tomorrow.\n\nthe next day we went again and i ordered the chicken pasta. while waiting for the food to come out someone in front of me picked up their order of a hummus trio with chicken on top and a side of pita.\n\nthe next day jen asked where i wanted to go to lunch. i said pita jungle and i got my hummus trio. \n\nand the trend continued. their food is so good!!!! and its like $8!! and since i work nearby i get a discount! \n\ntoday i had a side of chicken breast with super fresh mushrooms. i watched them steam them, then put them in a pan with w tons of garlic, red wine, and seasoning. some of the best mushrooms i've ever had and it was a HUGE order of mushrooms.\n\n\ni love this place!", "type": "review", "business_id": "l-Xv5Kmg2gilJI3-DGVCqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IXpLR3rC4TKeYyvQTHlLjA", "review_id": "J8-ZDnjuafLMMDkALnnE6A", "stars": 3, "date": "2011-09-09", "text": "Love the DJ here! Good music & vibe. The servers are excellent! I love the decor and the lighting of the restaurant. However, food was... presentable but taste wise nothing special.\n\nLove their twist with cucumber water instead of lemon water! Two thumbs up for this!", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ws6BQnim4x2dqDeW5qyD3Q", "review_id": "WOLZSOYprSeS7CBMznKxng", "stars": 4, "date": "2009-12-31", "text": "This place is so good. I love the big sandwhiches and the soups are so delicious. The only complaint I have is that I went twice and I unfortunately got hair and a fingernail clipping in my soup in two different times I went.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nYfpquFWxQC342RenTI3rA", "review_id": "CKNCzJsi0UIKjEZn3zd-6A", "stars": 4, "date": "2012-06-23", "text": "Great find! The boyfriend and I were aiming to check out Geisha A Go Go's happy hour but no seats and loud music drew us to find a more intimate spot. Kyoto hit the spot! The sushi was great at a reasonable price off the regular menu. The staff was friendly and laid back yet still attentive which was refreshing. I loved all the rolls we tried: (in order of favorites) caterpillar, Philadelphia, Salmon volcano (warning it is salt that they light on fire), tuna maki, and another I can't remember. Although the boyfriend is still partial to Roka Akor, I think this is my new favorite location! I definitely cannot wait to come back and please open a location in Glendale!", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "ImZMYorfcOTJirQHQcN9Aw", "stars": 5, "date": "2008-07-13", "text": "MEOW! This place is great - super clean, loaded with an amazing assortment of natural foods for both pooches and kitties, and two fridges jammed full with raw diet selections! My four-footed kids were in heaven going through the bags!\n\nNot wanting to offend anyone in my bunch (it's impossible to travel anywhere with three dogs and two cats, while simultaneously maintaining any level of decorum), I went solo this weekend to support the latest AzRESCUE effort being sponsored by the store. In addition to them sending me home with a complimentary Yoghund for each of the kids, I got some great insight to private training that my youngest is in desperate need of if he ever hopes to be socially acceptable, and some great toys for the felines. The staff was unbelievably nice, they have some truly unique items, and the prices range from \"wow that's pretty cheap\" to OMG do I dare?!!!\n\nThis is a great option to the chains and big box stores, so grab your leash, wag that tail, and pad your way on down to the Noble Beast!!!", "type": "review", "business_id": "v_aTapvcfKRL6O5au6Ru5Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "PNzO2GTKhnBn1FiO5A6J4A", "stars": 2, "date": "2008-12-21", "text": "Hire a busboy! I had to say it. I had to take these pictures. This is my _third_ visit since my May update with the same result and I can't keep it to myself any longer. The staff neglects the dining room. Period. Dot. Patrons often have to move dirty plates, stacking them up on top of trays at another table, just to sit down.\n\nMy recommendation to the owners is to put up some garbage bins like all other self-busing fast-food places and make _us_ do it if you're not going to.\n\nI have to wonder what happens to all those half-filled salsa squirt bottles left on the tables unrefrigerated for so long. Do they top off and return them to service, or are they emptied and washed before refilling?\n\nIt is my sincere hope that very soon I will be able to update this review again and say that things are back to normal. Until then, I have to advise driving a bit further south to Mi Patio, or north to Sylvia's La Canasta.", "type": "review", "business_id": "BM0-dgPJMBMmcmO9PVCJfQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pEEEoOUp4OKZS41oIkRyxQ", "review_id": "xRYmB5vWMo7s7-Qc8vXAPg", "stars": 4, "date": "2012-05-01", "text": "Oh my mouth-watering BBQ goodness. Ignore the sketchy neighborhood and 30 minute wait, because the meal is worth it! \nMy boyfriend's favorite food is BBQ-anything so I left the ordering up to him (and the choice was easy): Whole Hog Heaven - 4 meat choices plus 3 sides. Settling on St. Louis and Baby Back Ribs, BBQ Chicken, and Brisket, with sides of mac & cheese, coleslaw, and beans - he was as giddy as a kid on Christmas. I was pretty hungry too - and I had to admit the smell of BBQ wafting through the back kitchen door had my taste buds excited. The meal did not disappoint to say the least. The ribs were literally falling off the bone, the chicken was cooked perfectly, and the brisket was melt-in-your-mouth tender. All 3 sides were the perfect addition, however I do have to say that the coleslaw was my favorite, especially paired with the brisket. \nWhat sent us over the edge of BBQ heaven were the extra special additions before and after the meal. To start us off - homemade, warm cornbread with whipped butter. To finish us off - complimentary mini donuts (yes, you heard me right).\nErg I would give 5 stars, but there was a hoard of drunken girls taking over the bathroom (there is a club attached to the restaurant?) that I found fairly annoying. Oh well.\nHighly recommended and we will be going back!", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3Lj4_96xu38YZHlS7k5xNQ", "review_id": "S3gUawCKKr0i-vPj43ChuQ", "stars": 2, "date": "2011-08-16", "text": "Found hair in my burger. While that is not completely horrible, I was put off by another thing I saw in the restaurant. They had red buckets of Sanitizer sitting on the food preparation counter. While I like to see a clean restaurant, I don't think keeping a bucket full of cleaners within a couple inches of the food preparation area is wise. Also the staff was spraying window cleaner on fixtures they were removed for cleaning. This again is a nice thing to see, but not when the overspray was going straight into the food.\n\nMaybe a one time bad experience, but it just looked like some serious lack of supervision of the staff.", "type": "review", "business_id": "r3FHkf6lbmMUh3oPSrlIvw"} +{"votes": {"funny": 4, "useful": 7, "cool": 6}, "user_id": "m7vtKWpZ9wdEQ95wJxrMrg", "review_id": "Rf8o9rtxmExVzfS_O6lXDA", "stars": 4, "date": "2012-06-04", "text": "What a find during my ongoing Vietnamese food trip - a Vietnamese restaurant which, unlike the others I've been to, is located in a charming converted little home rather than in a run down strip mall. But the food is just as good or better, and with run-down-strip-mall-eatery prices. Their banh xeo (crispy rice crepes stuffed with beansprouts and shrimp) is awesome, and the generous seafood soup with white asparagus is something I'd order even on a hot day. One of my favorite Vietnamese dishes is rice vermicelli with shrimp and pork or beef, and while their version is not as bold in flavor as Dong A's, it is definitely quite tasty. The courteous service complements the brevity of the wait between placing your order and receiving your food.", "type": "review", "business_id": "IC8no-tIdDWgkYzb5d-Nvw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fGi3Kg1FRFurq_2JBfw_Gw", "review_id": "towZn_ivLDIccp4Ej21YlA", "stars": 4, "date": "2011-02-25", "text": "I've been eagerly awaiting the opening of this place, since it's on the way home from work. \n\nI finally got the chance to stop by yesterday. They've been open about a week now. They are located on the north west corner of Guadalupe & McClintock, between the pet food store and Panda Express. \n\nSuper cute place, has a roll up/fold up door so the whole front of the building can be open, right onto their little patio. You can sit inside or outside! \n\nTons of different flavors! I tried the Peanut Butter & Jelly & a mint/chocolate one. Both were very tasty. I ended up going with their chocolate yogurt with some peanut butter sauce, a Giradelli chocolate sauce and peanut butter cups. SO GOOD. A decent sized cup cost about $3.30. \n\nThe girl who rang me up was super nice, and offered me up little sample cups. \n\nThe only suggestion I have is to label the toppings. Yes, most all of them are self-explantory, but a lot of those candy bars look the same all chopped up! \n\nI will be back for sure!", "type": "review", "business_id": "tqp42quHT1S_tgXQRXBx5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yqgUYpLefDUUacbZWmnGpA", "review_id": "h_oEhJF4Rx-ugn_DyecF-w", "stars": 2, "date": "2011-02-21", "text": "Not impressed. I'd rather have a Big Mac and fries at McDonald's. Can't understand why some rave about it.", "type": "review", "business_id": "LaRo1F0bOEZo4p11bfkshA"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "LNv5ydDujcmF3Hlk6AvIJw", "stars": 5, "date": "2008-07-10", "text": "I really Love this place!\nI stopped in for lunch and tried a couple new things. \n\nThe Ravioli di Zucca Appetizer (see pics) which is:\nroasted butternut squash ravioli with parmesan, brown butter,\nsage and crumbled amaretti...OMG it was just delicious but a perfect appetizer to share , it's available in two sizes I got the small one.\nThe sweetness from the crumbled amaretti is a very nice touch.\n\nI ordered the Healthy Fish again (see pics) and once again it was perfect!\n\nMy guest ordered the Penne Salsiccia (see pics) which had Italian sausage, caramelized onions and pecorino cheese! The sausage was really good and for just $5 you can't beat that!", "type": "review", "business_id": "VprXrZ01I5RxhJIyBl3YmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "u1fxUYcCZsiazNmczJh0hQ", "review_id": "X8sOlD8trk6LeOCIJcMwgw", "stars": 1, "date": "2010-04-25", "text": "I dont understand how a second restaurant was opened on Tatum . My husband and gave these place too many chances and wach time the food was not impressive. The margaritas come from a stolen recipe from La Pinata Nueva , but too bad they didnt bring the recipes with them. I hope they get it \" that maybe if you put alittle quality in the food people will come back\".", "type": "review", "business_id": "2MM1zXQotfBkW4YRMPY-ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EGlqOFCbnrAEIvd86BS2_A", "review_id": "uFt5bFpWpYFY9LZzRrZ97w", "stars": 3, "date": "2012-04-18", "text": "This place was good, just not as good as I had hoped based on the reviews. I would have given the place 3 1/2. Since I can't, I decided to balance out another reviewer who gave the place 4 stars but also thought it deserved 3 1/2.\n\nPositive notes: Hot sauce had some bite to it, chips were good, Camarones culichi had a wonderful sauce. Lots of fresh limes served with the meal. Full bar.\n\nNot-so-positive notes: Shrimp in the Camarones culichi was overcooked (cardinal sin for a seafood place). The shrimp coctail was just ok - good sized boiled shrimp, but not too much flavor. \n\nIf driving by and hungry I would stop in again, but not if I have to drive too far out of the way.", "type": "review", "business_id": "Cp6JGY5YIRncTV_My9nf9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T4SQzeJ_Xd22ynw_Kru7xQ", "review_id": "axyzXt5JJNXi9BCQlosC5g", "stars": 5, "date": "2012-01-16", "text": "Lee's is the best privately owned ice cream parlor in Scottsdale! Located in Old Town Scottsdale in the heart of some prime dining locations, Lee's is a great night cap in the form of ice cream, a superb place to bring a date or all in all just a wonderful atmosphere to enjoy some ice cream con alcohol. \n\nLet's start with the aesthetics; Lee's offers a very clean, small, cozy environment. A few table and chair sets dot the inside and a couple more to match on the outside. Lee has some awesome glass vases on the wall that add a modern touch. She has a few large clocks with different time zones so you know what time it is on the east coast while you eat? I dunno the clocks were kind of a head scratcher.\n\nThe Service is spectacular! Lee is the only help I've ever received there, so I am not sure if she works alone or has help. She is always timely and prompt to greet and serve you and automatically starts you off with TWO samples of which ever flavors you would like. All the young ones like myself be prepared to show ID, although you would have to eat a lot of ice cream to get loaded, Lee doesn't skimp on the booze either. Lee is usually a bit on the quiet side so you gotta listen up and be as patient with her as she is with you. The lady is running the joint by herself! \n\nThe Product is what makes Lee's so good! Her ice cream flavors are inventive and wonderful. There is usually new options as well a few solid customer favorites too choose from. As pre-mentioned Lee does pack a fair amount of liquor in her ice cream so some of the flavors have a stronger alcohol flavor than others. The Jack Daniel's chocolate swirl is my personal favorite and has the perfect amount of bourbon to chocolate ratio to make a unique, delectable treat. Lee does offer non-alcoholic flavors (at a discounted price, too!) for those opt to take there alcohol and ice cream separate. The cookie dough flavor may be the best ice cream I have tried with or without booze.", "type": "review", "business_id": "qB-qsaSnhbHCt18_AN4Quw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "envV6gVZ5UlNmkSrYhEFog", "review_id": "L55Iw7v_0QaeLcr0v1Du8Q", "stars": 5, "date": "2007-10-31", "text": "Juan Jaime's is where the simple taste of Mexico are served with delectable results. The kitchen produces vibrant fiesta flavors that left me wanting more. The simple menu offers approachable, exciting, delicious food that satisfies any appetite. The Margarita's flavor should be praised. And the staff is top notch. This is just what Chandler needed. If you go ask for the Grilled Mahi Mahi. You'll thank me later. I can't wait to go back.", "type": "review", "business_id": "ObYf1kZVWfL8NocxUwGJKg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "YhAxmxx9_-K5TPlIaacQQA", "review_id": "QmxxmJTsBTF8sH_Y1kAIgA", "stars": 4, "date": "2008-11-24", "text": "Have you ever been to Postino for lunch? I think of it as an after work spot, but the lunch is really good. It's peaceful and pretty at Postino at lunchtime, the bruschetta is just as tasty during the day as it is in the evening, and the panini are good, too.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XbR2Fx-waSWhLNPE5TK8Dg", "review_id": "7X9LXx1pBTKOD8zXJa4_hg", "stars": 5, "date": "2008-10-20", "text": "Coffee talk is a nice surprise nestled in the hum drum downtown of Mesa. I have been enjoying their coffee and live talent since I was fifteen. When I was in High School it was a ritual to hit the local dollar movie and then end the night with some coffee at coffee talk. I think the best part was hitting on boys and trying to pass as being at least eighteen years old. My reasons for going to Coffee Talk have changed over the past decade, but the atmosphere and quality drinks and pastries have not changed. There is nothing better than sitting on their back patio and enjoying the cool breeze of the fall. There is something about that place that brings me a sense of relaxation. If you enjoy artistic ambiance, coffee, and live performance's then I would recommend Coffee Talk.", "type": "review", "business_id": "xl22YMFWovBrvf4I0Cod2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GCjitbgKJGcyuEQ4brZptQ", "review_id": "vSlBvgb3e7HujjhXdlVdpg", "stars": 3, "date": "2012-07-22", "text": "My husband and I both rate this a 3. Food was good, but not great. Fresh veggies and nice flavors. Dont know if bread is made in house. The bread on my sandwich was falling apart, which made it difficult to enjoy. I think the owner or manager was there, and I expected him to be introducing himself or welcoming us in some way, but he seemed to be hard at work. I think as a new business, it would be a good idea to be more welcoming to people who are willing to try something new. Also, there was a girl working there with a really dirty apron and she cussed while we were ordering. Very unprofessional and unsanitary, especially if the owner was there. Also, wish they had a soup without a cream based broth. Maybe we'd try again for b reakfast?", "type": "review", "business_id": "xrs15F6cWdIXdLHyCUDjBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jk_P-yYspg7uz-8xSCRdGA", "review_id": "rjc0JQQ7GfI_rOLcYDsOWw", "stars": 3, "date": "2009-10-17", "text": "i was very disappointed in this place. i had driven far out to get here. i live in gilbert. i got the pinkbet, beef mechado and pork adobo. their portions are very measly. they are overpriced and their food wasnt very good or authentic tasting at all. the only thing i liked was the pork adobo.", "type": "review", "business_id": "sZAzeccYUVPjlkrlMooV-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "kTq7YLSYENe1iFe54im7FA", "stars": 4, "date": "2010-05-02", "text": "The shopping center this Rack is located in is absolute poison to my pocketbook. TJ Maxx, Ross and Nordstrom Rack all in a tidy row? Rock on! \n\nThere are great deals to be found here with patient and selective hunting like any other discount retailer, and that these great deals are on brands which Nordstrom's carries makes any awesome deal so very much sweeter. \n\nDon't go expecting to strike gold at every visit, or expecting Ross prices on Guess shoes, and you will fall in love with the store.", "type": "review", "business_id": "UkbiF2Y3FUDGPK5YdCGgIQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SW1qky1cct3B_gDcJUIY1Q", "review_id": "0e2F5HiTwsZpsxl-xeiZUw", "stars": 1, "date": "2012-11-20", "text": "Horrible! I had a gel manicure. The tech didn't let my old gel soak off long enough so she scraped, clipped and filed so hard to get it off that it left my natural nail extremely thin and flimsy. The new polish that was put on was thick in some areas and thinner in others. I didn't realize it until I got home. I grabbed my purse and almost broke my naturally long nails because they were so frail. I get the gel manicure because it has a thicker finish and makes my nails firmer. I called and told them about what happened. The gentleman who answered the phone told me that I was wrong and that they would not refund my money. I will never go back and I am sure sorry I ever did in the first place.", "type": "review", "business_id": "_wSjXbRK5TffUEkwpbD9GQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "3Sfk4NWP0hKyifotM_uO7Q", "stars": 4, "date": "2011-05-14", "text": "Love Sweet Tomatoes! My favorite is their Won Ton Chicken Happiness salad! Although it can be expensive it is a great alternative for fast food!", "type": "review", "business_id": "NQhPkGeHiljeg7tXPTHJeA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "JTFAjb21Y5sbOHLyO_tyrQ", "review_id": "kqbF62mRA0VEe1a7QPxwfw", "stars": 2, "date": "2011-10-29", "text": "After reading many decent reviews and seeing how close the restaurant was to home, I decided to give it a try.\n\nThe young lady at the counter was impatient and had no interpersonal skills. The food was just not good; this place is 'Chinese take-out' at best.", "type": "review", "business_id": "ChmqODwuYP1ewjmWXtxtsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HUIvjNdwRHthxFhLyadb0A", "review_id": "ge4uEJpcMU1jtjA5ajzvsw", "stars": 4, "date": "2010-08-03", "text": "yum yum yum. I love Oregano's Pizza! I've always loved Oregano's... but especially the last time I went. There was a long line outside and the wait for us was 30-45mins, which I thought I was going to dread...but the servers were really nice. We were able to order drinks in the waiting area and they even came by us several times to give out pizza samples.", "type": "review", "business_id": "o-OV2LkJxpcCHmI_d4TZiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lAV4kZLB6RWd8GOWaQ3mgg", "review_id": "iT_tWNsbyihzwEYZtPleDQ", "stars": 4, "date": "2011-11-01", "text": "Hate coffee. But love this environment. Best public wifi I've experienced. Staff are friendly. They even had a 3 star meal for this picky eater. Thorough enjoyed the comfort of my study session here.", "type": "review", "business_id": "n4bc44OGI6_IVd1apeifUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "szbTVEtATfn8f9GxbGGO5w", "review_id": "KRtDSoy6ZReYNFqU1T9KOg", "stars": 4, "date": "2009-06-04", "text": "I always find it reassuring when I pull up to a Mexican restaurant that there's a bunch of landscaping trucks parked and the guys are inside eating lunch :) I thought Mixteca did a pretty good job with my carne asada tacos, rice and beans were not a complete afterthought, decent chips and salsa bar. The staff was friendly (they actually SMILED).\nI was about to get a little p.o.'d when my taco platter and small Diet Coke was more than nine dollars but rest assured the portions are by no means skimpy. The decor was typical fresh-Mex beach type, I could certainly see myself enjoying a cerveza on the large patio when the sub-100 degree days resume!", "type": "review", "business_id": "Dka36Pw7ibbHV6xIimQAOg"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "SCFgPrGbxQWglgljsVLNzg", "review_id": "-cYf_p6uzVmo5hcWrw1oJg", "stars": 1, "date": "2012-11-02", "text": "We were excited to check out this new restaurant! We were left extremely underwhelmed. We sat in the bar to watch MNF. It would have been nice to be able to hear the game over the discordant pop rock music at a mexican establishment but I understand that you are not a \"sports bar\". It was Monday night and with the exception of a large group of blue hairs celebrating secretary's day the place was empty. The bar area managed to fill up, because the Cardinals were on tv and it seemed as thought the high tops and patio were busy as well. \n\nOur bartender Amanda was very polite and eager to up sell us their flavored tequilas and specialty cocktails. You can tell she was a little wet behind the ears but she was doing her best nothing a little training and experience can't fix. The wait time to receive a cocktail was excruciatingly long though being a former bartender I understand the complexity that new bars go though to develop new and unique cocktails. We ordered the pumpkin margarita. I applaud the attempt but personally it tasted like pur\u00e9ed baby food. \n\nI was feeling very open minded and wanted to experience as much as I could that TQLA had to offer so we ordered the salsa trio and chicken tortilla soup. \n\nQueso dip: cold\nHabanero dip: sweet with a swift kick afterwards: not bad\nGuacamole: good: but was gone after 2 bites. I guess they feel if they place the guacamole on a bed of green shredded lettuce it will look like there is more than delivered. Fail\n\nChicken tortilla soup: Thick tomato soup with dry dark meat chicken chunks. Maybe it is just me but I prefer a more broth based ck tort soup and juicy white/dark meat chicken. Bleh: Amanda offered to remove it off our bill but I insisted on finishing mine because I was hungry. My GF pushed hers to the side; DNF. \n\nMeanwhile; whilst experience our starters we managed without any silverware or napkins and at this point Amanda being the only bartender on managed to become flooded with specialty cocktails in the well; thus not being able to properly oversee her patrons at the bar. Needles to say our drinks were empty, our plates, monkey dishes, empty bowl of chips, 2 cups of bland tortilla soup, saucers and wrinkled up black beverage napkins (used in the place of the real ones) were all tattering on the edge of the bar eagerly anticipating a bus boy to remove them. \n\nOnto the Entrees:\n\nI ordered the carne Asada steak. My girlfriend tried the habanero chicken platter. They were delivered by TQLA manager \"Joe\". Whom decidedly pulled himself from enjoying the football game to expedite some food. He crept up behind us and shuffled the entree platters in front of our faces after we spread our dirty dishes closer to the edge of the bar and politely stacked them for our ficticious busboy/girl to remove them properly. Now in my history with management; a decent manager would offer to remove the collection of dishes but instead he decided to ask us if we needed anything else since the look on our faces was disgust. Instead we opted to inform Joe that we would enjoy our meal a little better with silverware and napkins. He acknowledged that was a novel concept and proceeded to fetch us a pair. Joe wasn't six steps away before he was interrupted by a member of the waitstaff who informed him that what she needed was more important than delivering two setups to some first time customers so they could enjoy their ever increasingly cold food. At this point my girlfriends temper got the best of her and she jumped up and retrieved her own silverware off of a table in front of Joe and eager waitress to salvage any heat that might have been left in our entrees. \n\nWe dig in: \n\nCarne Asada: was tender but lacking the Wow factor. \n\nHabanero Chicken: Tasted like a chicken breast smothered in their warm fire roasted salsa... What happened to the habaneros? Where is the heat...? Bland\n\nI hope they get better: but until then Nandos all the way. Never saw Joe touch any tables, never offered to help out a bartender who was swimming laps in an Olympic size pool. Occasionally the wait staff would come behind the bar and help out. This is about the time that our appetizers, chips, soups, and entrees were all removed from the bartop. FYI Joe, the hostess stand can hold itself up on its own. You don't have to stand there and hold it up. Keep an eye on your staff and customers and offer help where they need it so people will be happy to come back and give you a second shot.", "type": "review", "business_id": "Q5ZD7ZAs96NAVblFDV476g"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "DPMUGzrjTwX5uJtrmWCfTA", "review_id": "Q5tzwCvyTZBn6_5N1Rpy3A", "stars": 3, "date": "2009-02-24", "text": "The novelty of this place garners it some brownie points, and you definitely don't come here for the food. \n\nYes, scantily clad nurses will serve you your food, cheerfully chat you up, and be agreeable to a photo shoot at the end of your meal. You'll also appreciate the little things Heart Attack Grill does (i.e. conveniently placed mirrors at ass-level behind all the counters for any patron's ogling pleasure), and there's no shortage of little quirks that definitely give the place character (i.e. their refusal to serve any diet sodas).\n\nThe food kinda sucks, though. I'll admit I liked the huge and considerately chilled Coke bottle, but that's about it. The fries were quite...flaccid and stale, the burger didn't seem so fresh or special, and it was relatively pricey for the amount of sustenance you get. Even so, you don't need more than a single bypass burger, unless you're itching to be useless for the next few hours, or if you are a gorilla. \n\nYet the clever presentation of what might sound like a practical joke with poor taste makes this place worth visiting with some friends. You'll have fun, and you'll be plenty full by the end of it!", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bXJ9U9e_zn8K1xKwqTArzw", "review_id": "-Y4RTBiNDcWxQmweVzEN9g", "stars": 3, "date": "2010-03-24", "text": "I have only had their pizza once, to go. It was ok but nothing to write home about.;... would try again but will be more skepitcal....", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "bvYk98zUE61KoWifshskpw", "review_id": "2F_SeDJk1HBkUNd7utIQfQ", "stars": 5, "date": "2011-03-11", "text": "Amazing!, I crave see on a daily basis! They are absolutely delicious, it's weird, they are like cupcakes from heaven! Sure 3.50 is a little pricey, but they truly are the best cupcakes I've ever had. Everyone there is always so nice and friendly, my only complaint is I wish they had one closer to my house! Get the red velvet...you won't be sorry. The lemon, cinnamon sugar, and peanut butter chocolate chip are also very good. Yum!!", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IeUtPivGy-S9PX0EFKjqEQ", "review_id": "yJ9tBzPf_5glRDzWvwcliw", "stars": 5, "date": "2012-06-03", "text": "I cannot say enough about how much I LOVE We Care Family Wellness Center! I refer everyone I know to them. Dr. Ross, Cheryl, and everyone on staff are truly wonderful. They genuinely care about you as a person and always make you feel like you are the only patient on the planet whenever they are with you. They are never rushed and will take all the time in the world to listen to you and figure out what's going on with you. After having seen more doctors than I care to remember, I feel so blessed that I have found such amazing healthcare providers!", "type": "review", "business_id": "gpyWGG0U-yqnVKru6y8fNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3J9C11LIMawC46gJsGv1Sg", "review_id": "DLewTOVzdTOnnWyhJd5PCQ", "stars": 5, "date": "2008-12-08", "text": "I have been going to Elite Nails for two years and they have always been wonderful! People see my nails and always ask where I go. I highly recommend.", "type": "review", "business_id": "HC5ibF-Q5RRtUfPneZFQ6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2MPGdIbaaEdKuW9IpPxHfw", "review_id": "JwwZHnpfcDcamQcboLYYhA", "stars": 4, "date": "2011-09-17", "text": "Pretty good food. Place is funky, weren't many people in there for a Saturday lunch (especially considering the proximity to ASU) but the service was decent and the food was good. Very inexpensive, 2 lunches and drinks for $15. I'll stop by again when I'm out that way.", "type": "review", "business_id": "HkSyssTd5_QNNeGI0-ltTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OL-OR_j5QE_7tpo6Yh053g", "review_id": "IUda6Ka9cfh8p8MOe0a0wA", "stars": 5, "date": "2011-05-23", "text": "I had such a great experience with Love Carpet Care and Repair. They were friendly and courteous and enthusiastic every time I spoke to them on the phone, and their work was incredible. \n\nI hired them to clean a carpet in an apartment. The leasing office at the apt complex told me the carpet was in such bad shape they would have to trash it. (Quick aside: I did not live in the apartment, but I was responsible for the damage...) Love Carpet Care did such a good job cleaning the carpet it looked nearly new again. Truly outstanding. \n\nAnd, most importantly, the price they quoted me beforehand - when I gave them an honest account of the condition and size - was the final price. Love it! And it was cheap. I was desperate and upset enough that they really could have charged me anything, but they were wonderful. Honest, hardworking, helpful.\n\nI could never say enough good things about this company.", "type": "review", "business_id": "UsRKrw09d5Opu9afPCtVXw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "6OWHDbEq23f24Vki_veHBA", "review_id": "_UPchOt2beVTxwUXq1-WMg", "stars": 4, "date": "2012-05-20", "text": "I've seen this place come up on Yelp a lot, especially since it's near where I work, and finally had a chance to take Jon S. out for a sort of going away dinner the other night. I thought to make reservations, which was a good idea because it was very packed on a Friday night. We started with the taste of thai, which is their version of a pupu platter. My favorites were the thai toast and chicken satay. It was a little weird that the fried items were hot, but the pot stickers and siamese kisses were a little warm, but still good. I had the crispy basil chicken (level 3 hot) and Jon had the shrimp stirfry (level 1 hot). When our dishes were brought out, we both loved the flavors, but agreed we needed some more heat, and our server gladly brought out some chili paste for us which did the job. \n\nIt's a very cute restaurant and I'll definitely be back to try some other things on the menu.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 6}, "user_id": "ZrUZtLgLOn15v2NIZl-oKQ", "review_id": "VBP9ceHTaV8yFkUm7s5cLg", "stars": 4, "date": "2009-01-07", "text": "So, for more than a year, I drove by this place on my way to work but never checked it out. I wasn't sure what to make of a place with a walk-up takeout window. Last night, I followed a group of friends there for a late dinner. Didn't try any appetizers. I just split a 14' Italian special pizza--sausage, green olives and fresh garlic. The pizza was pretty good, not spectacular but definitely a couple steps above a place like Mamma Mia's whose pizza has a fast-food quality at times. Red Devil is very generous when it comes to toppings, at least on this one. I am an olive lover but haven't had green olives on pizza before. I enjoyed olives in every bite. But if you think olives are just okay, you might have found it a bit much. The pizza was kind of big for two people and with tax, it was about $18. So, I'd say it's fairly priced. \n\nI have to say that the service, more than the pizza, would draw me back. Servers who think of the little things before you even ask are much appreciated. We had a party of nine and our waiter was super patient. We also brought a birthday cake on the premises, which they allow. Our waiter started clearing all our plates and silverware and before I could ask, he said not to worry, he'd bring us clean plates and forks for the cake. He also saw someone with a camera and asked to take a picture. He just gave off a genuine vibe of being helpful. I would definitely consider it if in the mood for something casual but not carbon-copy fast food.", "type": "review", "business_id": "PEHJjxdw11TGFma9Zhz3ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qFZkU_iO6KjU-_5BptIu9A", "review_id": "Wqy2lrF4DQmF_S8H2qJb2A", "stars": 4, "date": "2010-01-04", "text": "I think ordinarily I would give this place 3 stars, but this review is based on my experience here on New Year's Eve. After attending a Coyotes game, we came over to the Yard House for a late dinner. Not surprisingly, the place was packed but we were able to find a couch to sit on outside during our 1.5 hour wait for a table. Yeah, that's a long time to wait for this place, but like I said it was NYE and we didn't have any later plans, so we didn't mind hanging out. Coincidentally, you can get full bar and menu service on the couches outside and we enjoyed some drinks while happily waiting for a proper table and chairs for dinner.\n\nThe food was OK; nothing really to write home about. My favorite part of the meal was probably dessert - the warm brownie with ice cream was a treat! When we finished our meal, it was about 11:15 p.m. - definitely too late to go somewhere else to countdown to the new year. So, we hung out. Our waitress, Jaime, was very friendly and surprisingly attentive for how busy the restaurant was. She gave us festive top hats, tiaras, and beads to wear to celebrate. We were also provided with champagne for a midnight toast. All of this was free, and there had been no cover charge to get in. I thought that was a really nice touch. At ten minutes to the hour, the music turned off and the volume on the TVs, which had all been switched to the big ball drop in NYC, was turned up. Everybody in the restaurant excitedly awaited the arrival of the new year and when the clock struck 12 there was toasting and cheering. Yeah, this may all sound very mellow, but it was a fun, relatively cheap (given that every other place had a cover charge and/or price fixe menu), safe place to bring in the new year.", "type": "review", "business_id": "cBpJIOrVXotDI0XAZH_k0g"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "rCQIGlVvL_aTQDlBKS-VVQ", "stars": 3, "date": "2012-11-30", "text": "Stacy's is so cute! I pulled up and its a little shack with some limited seating outside. Seems like most people take their food to go, but your more then welcome to eat at their tables if you like.\n\nWhen you pull up, you order at the window and they make the food for you while you wait. There were a few of us hanging out in the parking lot at the time, which was kinda fun! I got the BBQ Brisket to go, and it was a okay. I loved the fact that it was smoked, and the BBQ sauce was on the side, so I could put on as much as I'd like.\n\nMenu's kinda limited but good, and pricing is fair. So, I was checking out their make shift dining area, and I had to laugh because there was a spray painted sign above that said \"man cave.\" LOL.\n\nPlace is cute, I recommend carrying out, and parking is kinda tight. Definitely a cute spot, and not a half bad place!", "type": "review", "business_id": "qG3eRlKLXbnWc1unu-0Yjg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "1-A_PLT-60EZ9MsfbkV9sw", "review_id": "dGRk6DQFekFbDd2tNB0AfQ", "stars": 2, "date": "2011-05-15", "text": "We were very disappointed with this place. We drove over to Tempe, to a blasted out, deserted shopping center that looked like it closed due to a depression, and there it was in the corner, still open while everything around it was closed. It's a nice little spot inside, comfortable enough.\n\nThis is another one of those places that thrives on the Groupon phenomenon. Prices are jacked up to accommodate a discount. I bought a $6.50 bottle of beer (as one example). My pizza, a sausage pie, came out burned. I know that a good pizza has a \"flame kissed\" look to it, even at top places like Bianco's. But this pie was flame-licked, and there's a difference. I tasted charcoal more than I did sausage. \n\nThe folded and stuffed Calzone was not burned, but neither was it stuffed so full that it's busting its seams which is the way we like it. Lots of air inside this Calzone. I'lll take the dramatically less expensive Calzone at Mama Mia's on Indian School any day over this hot-air filled version.\n\nThe service was good, with a very friendly waitress helping us out. She should have noticed the burnt pie, however. If they reduce the inflated Groupon prices, I'd go back when they bring in some reasonable draft beer and start putting more care into their preparation of the food.", "type": "review", "business_id": "63oKTPacLDyd9D5XwmAlUA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "KESqUu5mz96ZqDzjM0_mmw", "stars": 3, "date": "2011-09-22", "text": "Great to see a Total Wine closer to where I live. Large selection and decent prices. Used the $10 off coupon from the newspaper to buy a nice Napa Cab this afternoon.", "type": "review", "business_id": "kUvJiI7teJ--m5i1ReG58w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PBxgmhVs6eW67xgL5sL85A", "review_id": "VI0NtsVXkl27FlgrIbe9XQ", "stars": 5, "date": "2010-05-28", "text": "Let me start off by saying that there are several Slices restaurants in the Valley. The one on Mill is by far the best. They have the most amazing and original selection of pizza. No matter what you pick, it will be good. If your favorite isn't available when you walk in, no problem! They will make it for you! If you are looking for a slice of heaven, you MUST try the salad pizza. No, its not lettuce on crust! It is simply the most unbelievable creation that includes artichokes, red pepper, and spinach. It is great by itself, but ask for them to put balsamic dressing on top. The balsamic takes it from being amazing to last meal quality :-)", "type": "review", "business_id": "cUaaIk_3UdeSJ54CLvrW8A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Tz9vaxf98pQqjVP6z4uSzQ", "review_id": "_H9NL49qkawLAnYUXNnnGw", "stars": 5, "date": "2009-09-03", "text": "Very authentic, excellent Thai food and soothing ambience. And they have delivery! My favorites are the Fried Shrimp Rolls, Egg Rolls, Clear Noodle Soup, Pad Thai Chicken, Phad-See-Ew Beef, Papaya Salad, etc.. I love the Sweet Rice with Thai Custard. It tastes exactly like the Filipino custard I grew up with.", "type": "review", "business_id": "AsX-6ECbV83zGJLUVMre9w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hw-9I3-vVeiGHQAOo0jWFA", "review_id": "-P3SH7R2npSRYaeoMq8ZJQ", "stars": 2, "date": "2009-09-11", "text": "The food is fairly good. That's why it's such a shame that the service sucks! Every time I have gone there, they take forever to bring you water, take your order, bring out food, everything - even when you are the only people in the entire place. They are always unfriendly. Out order has been incorrect on a couple occasions. I really wish they had better service. I just won't go there anymore because of that.", "type": "review", "business_id": "H-99nG_KfynWPXh84TKj8A"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "hFG1Lira7tL_PElq6bdAAw", "review_id": "LXY9EjFKr0qWfmPgI1Qgiw", "stars": 3, "date": "2008-06-24", "text": "This place wasn't quite up to scratch for me. \n\nI had the foie gras sandwich. It was pretty good, but I was still ravenous $10 later, so I top it off with a chocolate croissant ($2.75) which was also good. \n\nDefinitely a cute space with above average dishes. But in the end there just wasn't enough bangs for my bucks.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yb1kBNixPOHQc1jNWmgVNQ", "review_id": "f7m769p8mVGK8HRKxvelBQ", "stars": 4, "date": "2010-09-11", "text": "Surprisingly good food and reasonably priced", "type": "review", "business_id": "On_3zLdujQdvDbBYUirNWw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "GCXvlHhmRepW38gW6053WA", "review_id": "pI9Jl20-izVcBRFzKfm3Cg", "stars": 4, "date": "2011-07-18", "text": "This is where I get my gourmet cupcake fix! Love the cupcakes, lots of unique, delicious flavors! The edible glitter just speaks to my inner girlie-girl and makes me happy!\n\nThe coffees are great- I calorie splurged and had a Spanish Latte on my last visit. It was the perfect sweet-bitter combination! \n\nI've only eaten breakfast here, but the menu looks great. \n\nI love the atmosphere-very industrial meets antique meets country. It can get a little loud, but I blame that on the rude people who don't watch their children and scream into their cell phones more than the business. \n\nStaff has always been friendly and efficient!", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9Z05mtXrXJ-22PElwp1ahA", "review_id": "8cF97Xxh2U25wzrwVvWgjQ", "stars": 4, "date": "2006-09-14", "text": "I second Sarah's review. Try the 49er flapjacks and Ron's Special Southwest Eggs (they come with nearly diaphanous potato pancakes). Don't forget to hit the ATM -- there's a Wells Fargo at 68th and Camelback.", "type": "review", "business_id": "CEs_oJMtLsll3xBM9slBQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gyT87T0OC8nbrxnhP1KCpg", "review_id": "k0vnMakkga6iv2NJCHKw1Q", "stars": 5, "date": "2012-09-26", "text": "Delicious sandwiches!! its so worth the drive i just wish it was closer to home so we could eat there more. My hubby brought me a sandwich home a couple weeks ago and it wasn't the same, it was too soggy so id prefer to eat there. The regular ham with added bacon is the best!!", "type": "review", "business_id": "DUDr1kuGv6eh1_s2GWJVgw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "f_4u-Vk0NB_qknV3q8bUUA", "review_id": "V8WAgTIzDweAPaPU9MsjpA", "stars": 5, "date": "2012-09-28", "text": "I just purchased a new Sorento here and my experience was amazing. Mike Bergesson was super easy to work with and got me a great deal. I live 50 miles away and there are 4 closer Kia dealerships, but I would do business with Salazar Kia over the others any day. Thanks!", "type": "review", "business_id": "EYFZcfsrhdRlxoZVlgMIFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "-Seq69RSaEX7Iu02laCqjg", "stars": 4, "date": "2010-09-06", "text": "I was looking for a comforter for my new bed when I realized that this B,B, and B was close by so I stopped in to look around. This is a nice store, It was organized well and the sales people were nice, not pushy. I did not find a comforter but I did find several other things. They have a nice selection of quality products and those 20% off coupons I get in the mail aren't bad either. Prices can be a little high on some things but with that coupon they are about right. I spent about an hour browsing through the store. They have a great knife section, coffee pots, food processor and all manor of kitchen gadgets too. Just the kinds of things I love to look at. I'm sure I will be back since it's in my \"hood\". Thanks B,B, and B!", "type": "review", "business_id": "rkGPf4cbyUJqHgKZPvaTnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cUudtsHl6XFGyekzjZCUqQ", "review_id": "s5VzXC1r2qYpP37xa8xZkw", "stars": 3, "date": "2010-06-30", "text": "well everyone there is pretty nice i got gel tips from them and i do beat them up pretty bad at work and they are holding up as they should. they were reasonably priced. There is one Asian lady i like a lot i forgot her name though my fault. I also got a pedicure from them as well they did good.\n\nPROS:\n* inexpensive \n* good color selection\n* nice people\n*television available\n\nCONS:\n*Some of my tips are longer than others\n*When i got a pedicure the water was so hot it burned me feet and they came out of the water looking like cherry tomatoes\n*whenever i seem to give them the tip off my visa they seem almost disappointed since its not cash (i dont carry cash and im not starting anytime soon)\n*the language barrier but its no one's fault\n*the massaging pedi chairs are made for people taller than me *sigh*\n\nSince the cons outweigh the pros it gets 3 stars but you are still getting really good service considering how much you pay for it and i will continue to give them my business because the lady who gave me the pedicure was really nice and she did a really good job getting rid of my callouses and didnt torture me too bad (im extremely ticklish).", "type": "review", "business_id": "7_XCRrN2C71AHAj53offwA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "uEG5uD9wMJixGWxaq34IEw", "review_id": "qEAHEPexCsFu0b5BLsSiIg", "stars": 1, "date": "2008-07-08", "text": "Their alcohol slushies are undrinkable and are sure case of gut rot. As far as the place, its pretty small you'll probably want to leave after 10 minutes.", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "StYN5bcQ5tpX81JudhcKZw", "review_id": "4t1PoFnjZqt17irZRSGCew", "stars": 5, "date": "2011-03-01", "text": "I have been coming to this place for atleast 5 years. This is a favorite of my friend's whole family. \n\nThis place is so very consistent. They always have the same good things. If you're looking for buffet variety this is not the place. \n\nEveryone is so very nice. This place has been open for 30 years for good reason. I have never ordered from their menu because their buffet is so good. \n\nGo and try not to get hooked. \n\nEnjoy!", "type": "review", "business_id": "3fNGtIfuHwt0-DD9SSjO6Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "AUANnGJuuNBDlvoqx1uRyA", "stars": 5, "date": "2009-08-26", "text": "i stopped by here on a lunch break because the sign said appraisals by appointment. the owner (?) indra was there and willing to do the appraisal on my engagement ring while i waited (without an appointment ... yay!). he cleaned my ring at no charge, inspected it and provided the retail value at no charge. indra told me a written appraisal for insurance purposes is only $45 ... a bargain compared to what others in the valley are charging. the stock of jewelry was lovely ... a nice mix of new and used pieces. some very unique, one of a kind finds as well. i found a few things i would prefer not to live without! \n\nthey do all their own importing, and buy, sell and trade jewelry. i felt he was very honest about my ring, the cash value he stated was in line with numbers i heard from other jewelers and he was charming and helpful, answering questions and educating me while i ogled over diamonds and pearls. i will return to have my watch batteries replaced, a pair of earrings changed from yellow to white gold, and pretty much anything else i can think of. i trusted him immediately, which, when dealing with diamonds, is of paramount importance to me.", "type": "review", "business_id": "WSIr2hliGiJKaYQdODBbDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GHHJi9AuaEPCZ8vvtQG3sA", "review_id": "ZR6WfRL2CrXewN1Y12HE6Q", "stars": 5, "date": "2010-08-19", "text": "Heaven. Fuego is just heaven. This super small, yet charming place is our favorite!! The menu is unique, and delish!! The creamed corn is to die for, I am talking unbelievable!! \nThirsty? Their mojito selection is insane and they have an even better happy hour. \nOnly negative is, that because of its small size, it fills up fast. reservations are a must!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UM6ARMpyqvM2aJ3Wnzwcog", "review_id": "2vxPe652QNAcAcNqdyeKiw", "stars": 4, "date": "2012-12-11", "text": "I'm giving this 4 stars for the grande margarita. OMG, it was tasty. It is not cheap at $8.50 but it is soo good. One of the better margs I have had in a long time. It ranks up there in the top 5.\n\nWasn't real busy when we went here and I haven't been to this particular location. I decided on the taco plate. My only complaint was that the machaca was a little salty IMO and I like salt. The beans and rice were just ok nothing special.", "type": "review", "business_id": "MAFjNfDWJRgWCw8IOC7mew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kJyR4gT1pfCcNjEY9-YMoQ", "review_id": "qxeEFyVlNYgID-l97Hj11A", "stars": 1, "date": "2009-11-23", "text": "whole foods whole paycheck wholly sh$t i am sorry there prices are rediculous the only reason i went there is because since moving here from a very foody town certain products are nearly impossible to find and they do have them but you will pay, my search today was mushroms not button but chantrel/oyster/ect i was going to get every thing on my list but when i saw shallots at 4.95 a lb i bought my shrooms and split the i hit frys, shallots 2.49 a lb and of course theres always trader joes", "type": "review", "business_id": "dC6rDLGRoch_DOZk5kLkWw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "vC-9ROCPBhWuXtMcBNeDiQ", "review_id": "m-MWYcdOwY_yZJTpQMLh1Q", "stars": 4, "date": "2008-06-29", "text": "Creative menu, yummy and affordable vegetarian food! 4/5\n\nJ and I are not vegetarians but we were up for a new restaurant and adventure on Friday night. We met up with P and R (vegetarian) at Green around 8pm for dinner. The food was amazingly delicious and cheap! We all shared some non-meat 'chicken wings'... it was so GOOD! our food came out tasty too. J's 'chicken' sandwich was great with its yummy BBQ sauce... Would definitely go back again for other dishes.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mk8MMdquU5S_5EOWVA6k4g", "review_id": "t1mdvpsSIcHu8ZdtLsPicg", "stars": 5, "date": "2010-11-30", "text": "I have been going to Mesha's Salon and Spa for the past 5 years and absolutley love it. I see Michelle (the owner) and she comes up with some great new looks for me. \nI have gone from short hair, funky styles and colors and long and sexy hair. She is awesome and I love her recommendations. There have been times I have gone in and not knowing what to do... and she always comes up with something that makes me feel fabulous !!\nI will never go anywhere else.", "type": "review", "business_id": "dJ962_NkSc1bcvnBnFrd_w"} +{"votes": {"funny": 4, "useful": 12, "cool": 8}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "WG12ZAP1dSPVHw45TMiukg", "stars": 3, "date": "2008-10-30", "text": "This was really 3.5 stars and I'm rounding down to 3 for a few reasons...on which I will now elaborate.\n\nDistrict could be in any Sheraton, anywhere. In fact, it is strikingly similar to Rum Fire, the trendy restaurant in the Sheraton Waikiki where I stayed for a few days this summer before my family arrived and we stayed moved to the family place. The flooring, the red circular lounge area, the live music on Thursday nights...it was all the same. Heck, even the menu was the same. The difference was that in Waikiki there was a \"Hawaiian\" slant to everything and the live music was much, much better. (And of course the beach front setting). I get the impression that they are trying to market themselves as a \"downtown restaurant\" more than the \"place in the Sheraton\"...but to be honest, it is your quintessential trendy hotel restaurant.\n\nThe bartenders were really friendly. The wine list for a \"wine bar\" is incredibly lacking. Nothing interesting, nothing fun. The pricing is on par with what I would expect from a hotel. The space is modern and trendy, something that there isn't that much of in downtown. I love the charm of a historic home, but I also love sleek and modern lines.\n\nWe selected a few small plates, or appetizers, depending on which of their menus you are looking at. The crab cakes were good, if nothing short of predictable, and the chips and dip were surprisingly unique. A dill dip and a French onion dip provided a nice departure from the regular spinach artichoke. I'm not sure this is a place that I would come to for dinner, and it is definitely not a place I would come to for brunch. (The brunch menu is a typical hotel menu, with typical hotel pricing). I think that for me District will just remain a place for drinks and small bites. \n\nI'm not going to lose my mind over this place. It's not that great, I'd say it's fairly generic. But the staff was friendly and it's within walking distance of my place. I'm sure I will be back for drinks.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "H2jcFGSS1n60jcKPBb-IoA", "review_id": "NyGk1TmEc803qfmKWyV62w", "stars": 3, "date": "2011-06-17", "text": "Went there with my date on Thursday night; it was quite empty.\n\nI don't think the decoration is as nice as it said in other reviews; it's about alright.\n\nThe issue I found is waiter walks pass in front of you during the movie. The color of the screen is yellowish that makes movie look old. \n\nIt's more like watching a DVD at home. When watching movies, I don't like to be interrupted, so the waiter service during the movie really bothers me. \n\nThe good thing is it's very close to my house, I can go there on foot.", "type": "review", "business_id": "-fsCfTYEnJ4s6yStgBnQig"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "eXoGHusNWaL47Dd_Xbq2nA", "review_id": "HpPCa94vxHf6xjmhxXZZYw", "stars": 5, "date": "2007-05-21", "text": "had a great time here the other day! the food was delicious and the staff was just as wonderful.\n\ni can't wait to come back here and try out more of their dishes!", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "F9P--h4g6gA-C_nO7OPUnQ", "review_id": "-24M16FmVkS0N163hr7Qhg", "stars": 5, "date": "2011-07-01", "text": "I do not understand less than four stars. We had six different plates. Beet Salad, Rabit, Butter,Scallops,Strawberry desert, and Peach desert. All were brilliant. Our favorite (both agreed) was the Beet Salad. It was so fresh and had a perfect combo of flavors and textures. \n\nService was way more than perfect. One note they are now BYOB with a corkage fee for Beer and Wine. No fee if the Beer or Wine is from Arizona.\n\nOne note for FnB we were preplexed with the lack of pork on the menu :-)", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "CaP2S-hF9F_25nz4F36MmQ", "review_id": "p-hQTpFmdhny-QOIUFsIZQ", "stars": 5, "date": "2012-02-07", "text": "Good micro brew made right there. Food is good as well.", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_KUclCeH47THrV8FiKSzdg", "review_id": "R0-weuY9gNYpiCoEipP2ig", "stars": 3, "date": "2012-12-29", "text": "If they werent located around the corner, I would never use this store. I have taken back produce MULTIPLE times due to expiration so watch the dates when buying!!", "type": "review", "business_id": "i_PkfGnX3J4Zsipp0chvwA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "wSWDShwN69X58ydFJkIeDQ", "review_id": "HOIx-sPvPvLpSGgjrbMNaA", "stars": 3, "date": "2011-11-06", "text": "Well it was off to Brio last night for \"date\" night!!! \n\nThe last time we were at Brio was in September to celebrate our 16th Anniversary...yes consecutive years, and it was a great evening! Last night, no so much. In all the years we've been going to Brio, we have NEVER had such HORRIBLE service....ever!\nThe food was as amazing as it always is, but the terrible service completely overshadowed the tasty treats from the kitchen. Our server stood and waited for us to finish sitting and before we could even open our napkins was asking for our drink order, not a good sign of things to come. So I opted for water to come while we contemplated our cocktails. So the water came, then nothing....nothing....no one....nada. After about 10 minutes the server returned for our cocktail order. The longest 10 minutes in history I'll admit. So off to get the drinks....15 minutes later they arrived with the bread for the table...now mind you we'd been sitting alone at the table with no attention for 25 minutes now. That is a lifetime for a restaurant that makes their money by turning tables. When the drinks and bread arrived we opted to put in our dinner order, thinking we'd be in for a long bumpy night. So we ordered, I ordered the Campanelle Carbonara, but with the Spicy Pepper Sauce from the Spicy Shrimp and Eggplant Appetizer, as opposed to the traditional sauce. The server said no problem, you want the Angel Hair Pasta with the Spicy Sauce, do you want to add Shrimp or Chicken??? Well the Campanelle Carbonara comes with Chicken, Spinach, Bacon, and Parmesan Cheese. So I explained it is NOT Angel hair Pasta as the Campanelle is a 'trumpet' shaped pasta with curled edges. He said \"Oh you want the Lasagna Noodles\".....! Of course I just said ask the chef to prepare the entree as he usually would, BUT, substitute the sauces. Glenn ordered the same, but with the traditional sauce. We both opted for the wedge salad, and asked that our entrees not be fired until we were completed with our salad. After all, we all know all the ingredients are pre-made, and just needed to be assembled and heated.. Whew...I felt...that was exhausting! Then the salads arrived. Ice cold, yummy...! Now we are back on track. Boy that salad does hit all the notes that take you back to your childhood. Nothing is better than Ice Cold Iceberg Lettuce w/blue cheese dressing, bacon crumbles, and fresh shaved Parmesan cheese!!! \nThen it happened.....yes just as we thought, in order to speed up the process that started so slowly............our entrees arrive BEFORE we were even 1/2 way through our salads. So there they sit...all beautiful, completed just as ordered...and no Lasagna Noodles, no Angel Hair Pasta...just the wonderfulness awaiting our forks. But...yes...But, we'd not finished our salads. By the time we did, our pasta was sad, cold, and looked like it had let us down. It didn't, OUR SERVER DID....oh by the way were we EVER asked if we wanted anything else to drink??? You guessed it NO....were we EVER asked how our dinner was??? You guessed it NO... Now you're probably saying, 'why didn't you do something about it'? We'd have loved to, but there was no one around...not even someone to fill our water glasses. Only after we were finished with our sad, cold, entrees and had stacked all the dirty dishes in a pile on the edge of the table, did our server make an appearance to ask how our dinner is going??? Are you kidding me??? We just asked for the check. Upon his return we presented him with the discount that Brio had sent us for being frequent diners, he took that and never returned. After sitting there at an empty table, empty water glasses and nothing to look at but the crumbs left behind from the wonderful flat bread. We placed cash on the table and left to try to reclaim our evening. On the way out, Glenn finally spotted a manager and explained our evening and that it would be a VERY LONG time before we tried Brio again. He, the manager, just stumbled over his words and said he wished he's known about our evening so he could have done something about it. Well maybe if he'd been circulating on the floor as opposed to hanging out with the ever so cute hostess' he'd have known. Do we still like Brio...YES...are we extremely disappointed with our service last night...YES.....", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yQgnaOeVmIXU0ZLS81SPkQ", "review_id": "s0dRHCNMgMjDdlvG6XZ66Q", "stars": 1, "date": "2010-09-15", "text": "So i thought with all the controversy surrounding this place, I would support the first amendment with my wallet. Unfortunately our experience here was subpar to say the least. We came in on a 3pm on Saturday and there was only one other couple inside. We were literally outnumbered by the people working there. I say this because somehow, despite this fact, the service was HORRENDOUS. I mean we got our order out fine, but our waitress dissappeared after that. At one point I had to almost get refills for us myself. The sushi itself was so overpriced for what it was. The Philadelphia roll was decent, but the California roll was really bad. When it came to paying, I put my credit card in the sleeve and waited for awhile. Despite there being no one else in the restaurant at this point except one other table, the waitress didn't return. If it wasn't for the cash I had on me I'd be waisting away there at this moment because she had no intention of returning and I have no intention of ingesting there food ever again!", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "bGYakgpE9C1KAELoPDns9Q", "stars": 3, "date": "2012-04-24", "text": "This tiny sushi joint is in a prime location. That's the real draw.\nThe sushi is just okay (and you can get the same sushi at Geisha-a-go-go which is more fun). The hamachi kama is just okay. The steak is just okay. Overall, this place is average.\n\nI wish I had better things to say about it, but the service was not great (it was not bad, just average) and the bill was high considering the quality of everything we ordered.\n\nWould I come here again? Nah.", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 16, "useful": 15, "cool": 7}, "user_id": "Mmew2rqnwj8FW3qD9wsaQQ", "review_id": "g4SqLnSbxN6faOLi4heYMw", "stars": 5, "date": "2010-02-25", "text": "Let me start off by saying that if there were 6 stars, I'd give this place 6 stars!\n\n\"Last Chance\" is simply amazing, but only to those true bargain shopaholics. There are days when the store will be flourishing with dreamlike items fluttering all over the place, waiting to be picked up and finding a new home in your closet. Other times, you must dig deep, and then come out with a diamond in the rut.\n\nI visited \"Last Chance\" today and fell in love all over again. I got a BCBG dress, three name brand tees, two casual dresses, eight hair bands, a adorable pair of earrings, FIVE purses and a pair of lace leggings for $39.00. And they all still had the Nordstrom tag on it!!!!\n\nThey had so many things on sale (in addition to their already low prices). To truely love \"Last Chance\", you must have an open mind and realize that this is not your typical department store, therefore it will not operate like one, so get over the kids, crowds and messes, it's Nordstrom stuff at below yardsale prices!! You must also be fashion and brand savvy.\n\n\"Uhh.. Darn diggity goodness mother of Betunia McGrittles, these scary looking boots with a devil pointy edge are $29.99, and they look like they have been tried on oh fooey pooey, that is just too garsh darn expensive Gurtude, And someone wrote their name, \"Jimmy Choo\" on it. Uhh, why are there so many people ALL over the place, and grabbing shoes like crazy making a mess.. Oh goodness heaven no, this store is horrible.. Just like that \"Juicy Couture\" jumpsuit for $9.99 a piece up front, oh no another child making a mess, let's get out of here and go to Sears or JC Penny, they have such great elastic pants grandma jeans and they never have a mess there! I do not see why people like this place darn diggity..\" -Random \"Last Chance\" non-enthusiast.\n\nKey point, if you're not into brands and fashion, and are not creative and a bargain shopper lover, then you will not appreciate this beautiful place we are so lucky to have in Phoenix!! :)\n\n\"Last Chance\" tips..\n(All \"Last Chancers\" will put a hit on me after this, but I love my fellow yelpers oh so much lol)\n\n*Arrive EARLY. Anytime after noon all the goods will most likey be gone and all the damaged/ugly stuff will be left. \n\n*WATCH YOUR CART! People will take you 25.00 pair of Coach wedges lol\n\n*Don't make eye contact with anyone! Don't trust anyone! If you see a pair of Seven jeans for 14.99 DESCRETELY grab them and move on.. Any sense of alert will beckon a herd of jean hungry woman and you will get mobbed!\n\n*Move QUICKLY, if you have to RUN! Especially if you are there right when they open, set your mind to what you want and RUN to that department. This will assure first dibs on the that section's finest.\n\n*Don't start crap with ANYONE! It can get really ugly.. and there is a wall of pictures of \"banned\" people from \"Last Chance\" and that is no where you want to end up in for ANYONE!\n\nThe rest of the tips are too super insider to say aloud, sorry huns! but I will spill one super \"Last Chancer\" tip..Happy shopping! muaaah :)\n\n*Look in the size 10-11 in woman shoes, that's where all the BEST shoes are \"hidden\" or \"stashed\" by other people who will be back later that day or had to go to the bathroom upstairs and didn't have anyone to hold their shoes. No woman really wears those sizes so they figure to just stash them there for a few minutes.. I cannot begin to describe the designer glories I have discovered stuffed behind a size 11 pair of Pumas..\n\n\nNOTE TO EVERYONE: OVERALL, PLEASE BE NICE AND SHARE. THERE ARE A LOT OF PEOPLE THAT GO THERE JUST TO FIND DEALS AND RESELL THEM ON EBAY AND THEY CAN BE JUST PLAIN MEAN. REMEMBER, WE ARE ALL HUMAN AND MUST BE KIND TO ONE ANOTHER, NO CURSING, SHOVING, ECT. LET'S MAKE LAST CHANCE A NICE PLACE TO SHOP, AND END THE VIOLENCE AND ANGER OVER CLOTHES/PURSES/SHOES ECT. WE CANNOT SELL OUR SOULS TO THEM. TAKE CARE EVERYONE :)", "type": "review", "business_id": "Nj6ITW0Zhl7LpovGIH6SAg"} +{"votes": {"funny": 1, "useful": 6, "cool": 1}, "user_id": "5S9qsoHWUcMeahMtBwuX3g", "review_id": "odRs5g6bEmHacVc9jLZymg", "stars": 1, "date": "2012-07-10", "text": "Great food can be found anywhere. Great service is one in a million these days. This place gets an A+ in the most awful service I have ever received and if you have/had a Groupon for this place like I did, don't even bother going. You'll be treated worse than a bothersome fly on a hot and humid day.\n\nIt's simple. Businesses put their name out by working with daily coupon sites like Groupon, LivingSocial, etc., to garner new and potential repeat customers. Instead, after going there with my handy coupon, I can't help but drive by this place on the way home and think nothing but the horrible experience I received. \n\nI went with my boyfriend and bought the Groupon because I was impressed due to online reviews and decided to splurge on a good ole' prime rib. We sit down, am impressed with the old school decor, and then the server from Azkaban appears. We tell her that we'd like to order off the special evening menu where it's a little cheaper and tell her joyfully that we found this place through Groupon and that it's our first time. Wrong thing to do. I don't know if it's because past Groupon-ers don't tip well or something, but I could swear her smile immediately turned 180 degrees in an instant. \n\nIt took our food (the chicken and prime rib) almost 33 minutes to come out. All we did was nom ... and nom ... and nom on the watery coleslaw and gritty liver (which isn't to blame since I was never a liver fan). Not once did our server come by our table. We watched her run into the kitchen and either not come back out for a while or attend to other tables. It was another server that came out and gave us our food so we let our frustration go since it wasn't her fault and there's no use in calling her out for nothing. We asked if she knew where our server was, and she said she would look for her. 10 minutes later, nothing, yet it was the new server who kept coming back, asking if everything was alright like a normal server should. \n\nThen it was time for the check and we just wanted to get out of there since we were basically ignored. 17 minutes pass, no check came even though our table had been cleared. Our server was still MIA so we asked a random server to give us our check. He said he would tell our server to bring it back and we told him straight up that we didn't even want to see her face so another random server brought it back.\n\nWe had a table of 4 sitting next to us who even leaned over and asked us why we were being so calm when our non-existent server was treating us like crap. We didn't even want to bother waiting another 20 minutes just to talk to a manager since apparently the only way the servers here communicate is by playing Telephone so we just left after paying. The table beside us told us that they were going to complain for us since we wanted to leave, but whether they did or not I didn't even care at that point. \n\nTo be honest, I can't even remember what the food tasted like, which isn't quite fair in a review. I went here a couple of months ago, but I have never had an experience where service overrode the taste of food. I'm pretty sure prisoners in a cafeteria get more attention than I did.\n\nMaybe it wasn't even the Groupon. Who knows. All I know is that we ran out of there like Usain Bolt and tell anyone who asks about our worst dining experience that this is the place to experience it.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ux7a5tbceLU6anNycjwt_Q", "review_id": "i6lfw_cE40RlS1os6KpcQw", "stars": 4, "date": "2010-10-07", "text": "I returned to this place a couple of times, most recently was this week. Somehow the coffee hasn't tasted as good as the first time. What I really like about this place is that when I'm near downtown Phoenix on a week night, and need a spot with good coffee, a very clean restroom, not too crowded, decent current magazines to read, and definitely good funky yet nondistracting music that is turn on at a decent lounging volume provides an overall comfortable experience.", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RxX5_RP3hSGpMhGY6y6OiQ", "review_id": "b-YMLGkWaNq7vL5uVj3Ezw", "stars": 5, "date": "2009-10-14", "text": "I've been really impressed with John Skiba and his professionalism. He is always up to date on everything in bankruptcy law and I've enjoyed reading his blog posts. It really shows his expertise and passion for what he does. Hopefully I will never need his services but if I ever were to need an Arizona bankruptcy attorney I would go to him first for sure.", "type": "review", "business_id": "v-hvWEgA1M_A87IubGExOA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "9Nh6ae0UgBAMTwvfkuVqVA", "review_id": "eDr6SJxEe3dKRpJ7iclahw", "stars": 1, "date": "2011-11-20", "text": "My fiance and I tried the place because of a Groupon. We live in the same neighborhood and see the place all the time but the look of the place was never enough to draw us in. There is nothing eye catching about the business front at all. It's in a strip mall and looks old. At night, they turn on strands of tacky Christmas lights that only attract attention to the fact that the lights are so poorly hung.\n\nWhen we arrived for dinner we were greeted by an empty corridor, no host station and no host. We could see what looked to be a bar but it wasn't a bar that I'd want to eat, drink and socialize at. To pass the time until we were finally greeted we browsed the many framed publications touting how incredible the place was. I'm already here...I don't need any more persuasion. It's time for the Chef/owner to take down the \"look how good I was\" trophy wall and go with a more inviting modern look.\n\nWe were greeted by friendly gentleman who seated us on the main lower floor. He handed us our menus and asked if he could get us something to drink. There is no drink menu on the menu. No beer list, no soda list, no liquid period. We asked to see the wine list, which had only bottle prices and doesn't even hint that they sell wine by the glass. Once I asked if they had beer and sold wine by the glass it was like we made a breakthrough. The menu seems a bit outdated so I went with the Lasagna, the basics. While we sat waiting for our meal, the salads came. Weird...the menu didn't mention anything about a salad nor did the waiter. More lack of information from the menu.\n\nNow on to the decor. It is terribly outdated. Tacky, bland, pale paint scheme, brass fixtures, mirrors and cliche wine bottles. There were beautiful fresh flowers throughout which we really enjoyed. I was unfortunately seated directly in front of two paintings both with a woman and a little girl drinking what appears to be wine. I'm guessing they are personal family paintings but they are horribly out of place and bordering on creepy. I couldn't take my eyes off of them and that distracted me throughout the night. This place needs a makeover, new modern paint scheme and some updating on the artwork.\n\nThe lasagna came. It was OK at best. I tried my fiance's chicken genevese at it was horrible. The chicken tasted like it was boiled which is an instant dish killer for me. We did not take our leftovers. We asked for the check and it came with a after dinner cordial which was a nice surprise and tasted delicious. \n\nWe won't be back. To be honest Oregano's lasagna is better by far.", "type": "review", "business_id": "DIYHTgM-YGKWOWLzQ4XVhA"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "NrRS56Dv52m2BND-9v1qWw", "review_id": "stt3BbsaJa7GHX1jEA-Vxw", "stars": 1, "date": "2009-08-02", "text": "Total bait and switch sales department! Will tell you one price over the phone, then quote you another when you arrive! Happened to me personally 3 times. I bought from Scottsdale BMW. One quote, one price, done deal. Buyer beware...", "type": "review", "business_id": "kzZJjm56gG0aSpyA-dS3eA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VocJ2eKCB88wgnM5sw-LNg", "review_id": "e_ztX2LK4zBMpNSIkMyzTQ", "stars": 4, "date": "2010-01-20", "text": "I continue to give Golden Egg Roll 4 stars. I love the house chicken and schezwan chicken (I'm sure I misspelled that). I did not like the Hunan chicken; however, I despise bell peppers and didn't realize they were in this meal until after I got it. Golden Egg Roll became a regular place for me to go to because it was cheap and better than decent. Now that I've moved, I'm going to miss this place.", "type": "review", "business_id": "Y5clwKIHw8qTpy3pCH1BHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WEuIqh8ygm-bH81s8lwD0g", "review_id": "F6V61TngJ1P6DqmW4yQEOQ", "stars": 3, "date": "2009-09-29", "text": "Very good food but a little overpriced for the amount of food you get so the price is the only reason I am giving it a 3 star instead of a 4 star. Cost about $11.50 for a small sandwich side salad and an ice tea. All the food seems to be of the organic nature so definitely taste is higher quality.\n\nI have been there 3 times and each time left still hungry; however, did feel that I had a healthier lunch than other options in the area.\n\nIf you are in the mood for a high quality / healthy light lunch and okay with paying $10-12 per person definitely give Essence Bakery a shot.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e_F7A1KkgjPDqWDDw1cfpg", "review_id": "AV3-FlfTZE-x6hRnnGVpzg", "stars": 5, "date": "2011-12-22", "text": "I dined here last week with my wife and in-laws and, I gotta say, it doesn't get much better. Ambiance was dark but classy. Loved the music (no dated Rat Pack stuff here). Started the evening with their amazing Trio of Duck Fat Fries. The truffle emulsion may have been the best sauce I've ever had in my life! Only got better from there: Shellfish tower was loaded with goodies and all tasted straight from the ocean! For entrees, my wife got the Trio of Kobe Beef and I had the Fried Chicken for two. One of the top meals I've ever had in my life. The chicken was so moist an came with a truffle mac & cheese and onion jus. I did say it was for two but it was so good that i refused to share. My wife couldn't stop talking about the Kobe Trio. \n\nBut, I gotta say, the best part of the experience was the staff. Knowledgeable just isn't enough to describe the service here. They care about every single detail, never missing one. The Sommelier made excellent wine recommendations (and each one well within my price range) and never skipped a beat when it came to pouring for the table. The server was as professional as professional gets and the Manager seemed to always be there to pull out a chair or provide a fresh napkin. Flawless.\n\nWell done Bourbon Steak!", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "8tz7kuFdES02yksLIOGgAw", "stars": 5, "date": "2010-08-03", "text": "Love love love this place! Seriously, a place in Phoenix that is locally owned, has great prices, great food and buys local is pretty hard to find. My favorite wrap is the Gardin'n salad as a wrap. My only complaints about this place are the hours and the parking! But still well worth it.", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "7G6vKDbCrYGMZLnwk3RKYw", "stars": 4, "date": "2011-05-07", "text": "Another great Fox concept! So glad he opened something in downtown Phoenix!\n\nI hosted a large group dinner in the back room and we had an amazing experience. The service was phenomenal - they even took multiple photos of our group on 2 different occasions. \n\nThe set menu was fantastic. I really felt like we got a taste of what the restaurant had to offer. I highly recommend the beet and apple salad, the crab stuffed chicken and the salted caramel pudding or blueberry cheesecake - absolutely delicious!\n\nI went back a few days later for lunch and wasn't disappointed. I enjoyed the sweet potato tortelli - it was melt in your mouth good!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 2, "useful": 7, "cool": 5}, "user_id": "3f_-pGlAZi6a6ZySrsspVQ", "review_id": "Qk5lp15fIkZoWVPnY4e0eA", "stars": 5, "date": "2008-08-23", "text": "I rarely give 5 stars, as I believe it is very difficult to obtain a perfect score through food, beverage, service, ambiance, etc. Christopher's new venture is perfectly Christopher, 5 stars.\n\nFirst off a little background, Christopher is a native. That's right; he's a graduate of Central High School. He studied in France where he honed his craft and to this day draws his technique from. He has owned now three ventures in Phoenix, first his fine dining and bistro location on the northwest corner of 24st and Camelback (later became Eddie's by Eddie Matney, former hair dresser turned chef at Cous-Cous then Eddie's Grill) then after closing he moved to the restaurant row in The Biltmore Fashion Park, 2rd level to open Christopher's Fermier Brasserie & Paola's Wine Bar. Which in reading many reviews here on Yelp was unfortunately misunderstood. It makes me wonder if people understand what French is, it's not their fault though, there aren't many French restaurants in town, most have be closed, including Mary Elaine's at the Phoenician and John Claude's Petite Cafe. There are a few that still survive Sophie's and Vincent's, but in this town of chains few people venture for French. Now with Christopher's Restaurant/Crush Lounge he has passed on the wine bar and opened a lounge instead. Christopher does enjoy lounges as he is a regular at Merc Bar, but then so is his smoked salmon which is offered on the Merc Bar menu. So a lounge makes sense, I'm a believer in a chef should open what they are passionate about. \n\nThe new location has a different feel from his previous; his last venture echoed a French Countryside feel, as did the food. I think that was why many didn't understand it; yes it was French, but ALL FRENCH IS NOT FINE DINNING. I wish more understood that concept, but this is primarily a beer drinking state, not wine or rather more Mc D's not Mary E's! Hence there's a difference between filling your stomach and filling your soul and leaving a restaurant inspired with the feeling that life is wonderful. Christopher's is the latter. \n\nThe design is contemporary with long lines of brushed stainless, white linen and exposed wooden beams. Kudos to whoever designed it, great job! The tables are dressed with white linen, elegant silver and polished stemware. You can't help but feel that it's 'time to dine' when seated. The walls in the main dining room have many vases of fresh flowers that seem to be replaced whenever necessary, nice touch. \n\nThe food at Christopher's is exactly what you'd expect, French, without the super-high-end prices. He's still one of the only chefs in town serving Foie Grass and Duck Confite, both wonderful and worth the trip if a glass of juice (wine) is added! I've been there now on 4 occasions and everything is fantastic, flavorful and prepared professionally. Christopher offers daily specials and I recommend them including; Veal Chop on Wednesdays, Roasted Duck on Thursday, Lamb Shank on Friday and Rabbit on Saturday. But don't stop at your entree, get the cheese course for dessert or for something sweet, the Chocolate Tower is one of the best desserts in town, hands down, no question. \n\nService is another point were Christopher sets himself apart. It doesn't get any better than this. Again it's NOT fine dining, so you can't compare it to fine dining restaurants (but then again there's only one left in the valley - Different Point Of View). The servers know the food; they can describe anything on the menu and recite the specials as if their job depends on it (if you know Christopher it probably is). Food is coursed correctly with a few minutes in between, as well as wine service is as professional as it gets. The bread service is as always, French breads with a super rich, euro butter, perfect for lapping up to sauce or vinaigrette remains on your plate.\n\nNeedless to say, Christopher does it right, in my opinion, or is it just my opinion? Many of the valley's most celebrated chefs eat at Christopher's, he's know in many circles as the \"chef's chef\". But don't take my word for it, ask the chef at your favorite restaurant, who their favorite chefs are in town, and favorite restaurants, most likely Christopher will make the list!\n\nHere's the web address: http://www.christophersaz.com/\n\nThe website is limited; menu, wine list, press release and pictures of the restaurant...", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Na2Rb9qdAuB_RU-3RE9Hyw", "review_id": "_B69K4eaxoR5Y_1wx16QmA", "stars": 5, "date": "2009-02-24", "text": "Hands down, best slices in Scottsdale....", "type": "review", "business_id": "D_VXbq6sCuqXuBbdPo9zpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "RNow4E11pxrE3Davw9Gynw", "stars": 1, "date": "2010-09-08", "text": "Just don't.", "type": "review", "business_id": "kYkuqU9wJS01L8q4d2nTTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KJjwhXg7ZjeeHTo1oKIBhQ", "review_id": "2dUmtqe6mOtTZLgdWJNOeA", "stars": 4, "date": "2013-01-04", "text": "Excellent family owned business that knows how to make real Italian dishes! Their prices are a little on the high side but you get plenty and it's good. We had enough left over for next day's lunch. \n\nThe waiter was nice and attentive even though it started to get packed at around 7ish. They even gave us free Amaretto drinks after dinner! :) Going back for another romantic dinner soon.", "type": "review", "business_id": "EfmR4e1tmjC5_ZQOgfnYrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XNGgfUDUg0g6oE9s5XbxfA", "review_id": "JqOdSfdpjVfvjOY5LT8VvQ", "stars": 4, "date": "2010-01-09", "text": "Just got back from Carlsbad Tavern. It was good. Great service. Fun atmosphere. Kid friendly. Loved their black beans. My husband loved his fish taco salad. I liked my meal. I wasn't excited about my food like my husband was. My only suggestion to them would be to add more vegetarian options without relying on cheese.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yyKWtBoYjeZjq9OS0YgGQg", "review_id": "qWtULN5Td0AlBcME7825iw", "stars": 5, "date": "2010-12-01", "text": "My wife and I ate here last night and were extremly happy. We started with drinks at the bar, which started the night out perfectlly, then we had an appetizaer, which was a tower of cheese ( a sculpture of grilled cheese, like the hard grilled cheese on the sides of a grilled cheese sandwich). I had the tacos, they may be small, but they were packed by taste. My wife had the fish of the day, and that day it was halibut, my wife said it was the best fish she ever had. The service was great, overall a great smalll place to eat.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "9ybeeijTkLhy4Zc6GbR_lQ", "stars": 3, "date": "2009-03-16", "text": "Pricey!! Not my fave place to shop for vintage wares but decent to peak through.", "type": "review", "business_id": "RRWRvdziNs9S5zl4G39Fyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PHKe2H1tKwECKNSX4iTTMQ", "review_id": "NCMFtOCsU_oBGvHJg3zINg", "stars": 5, "date": "2010-09-22", "text": "Culver's is a must if you have not had the chance to try them out. I believe they have several stores now here in the valley. The Root Beer is a must as well as the Butter Burgers, Cheese curds, Frys, Frozen custurd....lol ...the list goes on... I have not found anything as of yet that I did not enjoy.", "type": "review", "business_id": "8T8B_xK10FuO6MBOFcVQ3w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "oIVsVM8H273aoT1JUmsDIg", "review_id": "JcSCs1prr4TD466FF72uSg", "stars": 3, "date": "2008-09-14", "text": "Even though I am officially in my 30s, I look like I'm still in college, which made me feel slightly less uncomfortable when I walked into The Clubhouse. Yes, it is near ASU, and yes, it is an all-age venue, so I should have expected that the club would be filled with 18-20 somethings. But just because I look 21, doesn't mean that my internal reality made me feel a little out-of-place. But, I was like, whateva!\n\nIt is somewhat of a dive bar trying to be a club but failing miserably. Like a nerd trying to be punk or a cheerleader trying to be emo -- it somehow didn't work for me. It felt like I was in someone's basement turned rocker's haven. Black walls, haphazard decor, and one sole stinky quasi-couch that looked like it had been salvaged from some dump. \n\nThe stage was at the front of the club, and the bar in the middle dissected the under-21 crowd from the over-21 boozers. Unfortunately, if you wanted to drink, you had to stay on the over-21 side of the bar. That sucked because you barely had a view of the stage. WTF?! Shouldn't the paying lushes get a better view than the youngsters who only paid to get in the club? Stupid. I have to say, though, the sound system was a helluva lot better than some of the other small music venues I've been to. That's a plus. \n\nFinally, this last annoyance will definitely show my age, but having to stand the entire time I was there was horrible. My feet hurt, dammit! And, I just wanted to sit down! But, I'll suck it up the next time because there are some great bands that play here, and for me, great music can make any situation better.", "type": "review", "business_id": "l3yL2rQ6PoFBQ06RLczn9w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "59pVYStY0yKpRmODFIfDww", "review_id": "jKPlvenibd6oMO4pqulaLQ", "stars": 5, "date": "2012-05-15", "text": "The scenery was amazing!! Wooooooooo!! - Well thats my biggest impression of this place. If you're looking for a great place to golf, i suggest you swing by this place. They give you 5 stars customer service and making sure that you're having the best time of your life.", "type": "review", "business_id": "Hgl5RjvLS_Yc8cqdw9uaOA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "XY_bQqhZfyyEi_W5n4kQNg", "review_id": "A2fpiFbT8HtwwsENElhXDg", "stars": 5, "date": "2010-04-24", "text": "AAAAMAZING.\nThey have the best hot dogs and corn dogs i have ever had. It is definitely a place to try if you love hot dogs.\nThey have good fries, excellent onion rings.... and very very reasonable prices! I have never met a single person who has said anything but incredible things about Ted's..... definitely a must try!", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "VnmZ7nBK0dqDVAgkmFsMxw", "review_id": "6gMWlmIT8VK-2VN6d9lc1Q", "stars": 4, "date": "2009-12-05", "text": "My husband and one year old son dined here on a Saturday night. Service was great, food was delicious, and the BYOB was much appreciated! Staff was very accomodating with our baby. :)", "type": "review", "business_id": "AX8lx9wHNYT45lyd7pxaYw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OxPJqrIpixmPlxyEyOwKzg", "review_id": "HD4zqA0r3ybBM0sWFY1ZTw", "stars": 4, "date": "2011-01-30", "text": "Fantastic atmosphere. Very Very friendly staff. Food presentation was spot on.\n\nWe had drinks and a Brick Oven Flatbread (cheese) and it was delicious. I can't wait to go back and try a full entree. They had a Salmon dish on the menu I am going to try when I return. I was staring at other dishes and they looked mouth watering.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "XJAtcMnQ1O7jTuFz3Kbpsg", "review_id": "Y60Ls8NWuHDiWOsu0Pyhbg", "stars": 2, "date": "2012-06-20", "text": "Okay, I have been to DryBar on multiple occassions and have been pleased once, maybe twice, but it wasn't horrible. Unfortunately, the day of my wedding was horrible. My fault that I didn't go in for a practice run, BUT I was assured by their ANSWERING SERVICE that I would get \"one of their best,\" because that's who they send out. The lady that came to our hotel room to do our (my mom and me) hair was rude and not talented. She barely spoke and when she did it was defensive and not from a place of yes. When a bridesmaid (who went to DryBar to get her hair done and wasn't satisfied) agreed with me that my hair style should be fixed, the stylist looked at her phone and said,\"well, what time is it?\" as she argued with us that she couldn't do anything else with my hair because it's fine. We were like \"we don't care what time it is, it's my wedding, and I will pay you whatever it takes to get my hair looking the way I want it.\" My mom hated her hair, took pictures to send to DryBar and then fixed it herself. The problem with getting a quick solution is that they have an answering service which makes problem solving an issue, especially when you have limited time and makes scheduling a large group complicated. Again, I've been happy once or twice, they have a few good stylists and a lot of very mediocre ones. I think I'll try some of the other blowdry bars in town.", "type": "review", "business_id": "7Y7p1NHDj0iGQN7IbBp5jw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IjafRfMSAQpInLlw-Vi0Cg", "review_id": "GiCWjlJBuJvgRCMCNphhOw", "stars": 2, "date": "2012-09-08", "text": "I mean it's a bar they have drinks. If that is what you are going for cool. You can catch a game there, its not bumpn like it used to. Its a little on the quiet side.\n\n\nThe crowd looks like its about a 40+ group. and a good handful of random creepers checking out the serve staff there. \n\nI wouldn't say i wont come back. But its definitely not first on my list for the kinda of bar scene i'd normally be looking for.\n\nService was good. but thats because there wasnt many other people to serve the day when i went.", "type": "review", "business_id": "5tey93wPQOb7z6jOLJZ30w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "66tWp8ThwPATFUxYNPyYLw", "review_id": "3dIUxjMa5wAeRmaVAl7fkA", "stars": 4, "date": "2010-05-08", "text": "I'm still a big fan of the light rail! Sure, I can't use it every day, but it's about the only thing that will get me to head to downtown for a night out. \n\nIt's perfect for pub crawls, you can gather a huge group, keep everyone more or less together, and make frequent stops. The extended hours mean more time for drinking!\n\nThe trains have stayed clean, they run when they are supposed to, and I've never had a problem. The people watching is awesome as well. Each stop is a mystery grab bag of the teeming masses of people here in town. \n\nI just wish it had a wider range, I'd use it every day if I could.", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "WTwRsZcGWd12VjAk4dirWg", "stars": 2, "date": "2012-11-04", "text": "...for selling broccoli at a good price I gave them a chance.\n...for selling celery that was already rotting I won't do so again.", "type": "review", "business_id": "90FMI917WPqmn_CIT31pyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_E8bCGlloqFYa-FDVmTMMw", "review_id": "n07mexjyE2-pb9oz77kXYg", "stars": 2, "date": "2012-12-21", "text": "Friendly service but food was just ok. Maybe an off night.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "q0IW1-twB0WY8UDtvt_zFQ", "review_id": "s-y30gCF8x6ffV8-Z37aGw", "stars": 2, "date": "2012-01-20", "text": "The night was dark and hazy, a midwinter's eve that started with promise. A quick trip to the Yelp site quickly revealed the #1 restaurant in Tempe to be, in fact, a brewery. This delighted my boyfriend, a beer connoisseur, and me too, being a fan of highly rated restaurants and anything that makes my man happy. So we headed to the Four Peaks with high expectations and high spirits. Alas, our hopes were dashed almost from the beginning. \nThe hostesses greeted us from the curb. They were extremely young and scantily clad in low, low, LOW slung jeans that did not cover their clearly illegal behinds. The place was crowded so we took a beacon and hit the bar for our first round. The bartender, despite a packed house, noticed us almost immediately and took our orders... the only quick service we received all night. The beers, well, the Kilt Lifter was a fine example of a 80 shilling Scottish ale... but the Raj IPA was heavy in diacetyls and but otherwise a reasonable attempt at an English IPA. Hopknot IPA was above average IPA with pleasing grapefruit aroma.\nBy the time we were seated we were happily woozy from the beers. Unfortunately, it took the bitch waitress nearly 20 minutes to take our orders and another 20 before our meals arrived. Food was decent, although side orders were botched... we DID notice the very nice disposable napkins, which were durable yet soft. Some of the nicest napkins I've ever seen of a disposable nature. \nOverall, a good people watching experience, very loud and crowded, with terrible service, adequate beer, and generic yet palatable cuisine. Would we go back? Not unless invited by good friends. Overrated.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0CIP-nma5yM9HY1OOBS2yA", "review_id": "-Va8sBiGpah_Zd0Qdw6gUQ", "stars": 5, "date": "2011-06-12", "text": "WOW! From service to food, 5 stars! Went here last night for our 10th anniversary. They never cease to amaze us. Husband had a Caesar salad, Rib Eye with crab legs and I had a salad with Balsamic Vinagrette, Salmon with Asian glaze with a carrott and swiss chard medley. Amazing!! Perfection. Kyle served us, we were impressed by his knowledge of the menu and attention to detail. Everyone we came in contact with was pleasant. If only more restaurants treated their patrons this way! If you have their VIP card you also earn 'points' which convert into $ you can use towards a future visit. Thanks Kyle and McCormick and Schmicks!!", "type": "review", "business_id": "a1hQlsTan_m8K3eTW7BNSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "DcfmUIBBfClOte8dTekVbA", "review_id": "rlb2_5zjhTtuvHefTgFggg", "stars": 5, "date": "2009-11-08", "text": "Just as good a Pizzeria Bianco! But with the added bonus of not having to wait for hours and hours. Granted there may still be a wait here but you aren't fighting tourist for tables at this joint. It's more of a local fav! \n\nFresh gourmet toppings and very good crust! Personally a big fan of the garden seating! There was a longer than normal wait for the food however, the server was very attentive and I thoroughly enjoyed the ambiance as we had drinks in garden. I would not recommend this place for a quick meal but it's perfect if you bring friends and want to have time to relax and enjoy conversation!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "LqPSYnqdXZSXBNbSV0pz_A", "stars": 3, "date": "2011-02-26", "text": "The BF and I went here this morning for breakfast after finding it on yelp. I thought it sounded good and I love trying new places, so we went. The place was busy, we almost left because there were no parking spaces left... luckily we made one more pass and someone was just walking to his car to leave. There was a little bit of a wait, but not bad. So the inside of this place is really cute, with the wood paneling and all. We got a cute little booth. We both ordered coffee, which was very meh. Really watered down coffee and cost 2.25 a cup. For breakfast, I ordered the spanish omelet and the BF got biscuits and gravy. The omelet was really good. It had a kind of spicy sauce on it that was tasty and I added cheddar which really went well with the sauce. The potatoes that it came with were nothing special, no real flavor. It also came with toast which was what it was. That cost 9$. The BF liked his B&G but thought it was a bit salty. It cost around 8$ with bacon. Overall, I'd say the place was good, but not great. For the 27$ I spent after tip, I could have gone to Liberty Market which is much much better, so I probably wouldn't come back here.", "type": "review", "business_id": "UI8iKvzhGn2qZCGIqtQqrQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "vzOZ8t6I2bVE9jP-ZFxp4w", "stars": 5, "date": "2012-11-28", "text": "Try the Larb, it is on happy hour and it even comes in tofu as a veggie option. This one dish alone ($5) at happy hour would make me love this place but there were many more delights that made my visit so great.\n\nI don't drink with dinner but here it was happy hour all day sat, and they had a unique drink the Curry Gimlet, IT comes in a martini glass has a orange hue, it is fruity but has a curry finish from cardamom I assume, truly unique.\n\nOur dishes of Pad See ewe and Dragon noodles were great, and huge portions. Rich flavors, well textured tofu and crisp veggies. \n\nWhen I made my reservation I let them know about the birthday of the person I was with. We were surprised with fried banana and ice cream along with a candle and signing it was great!", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "1VcKKccWPLsNOhyYGMkWuA", "review_id": "aTO_jhvagWnlU1-thJ1gTQ", "stars": 4, "date": "2009-11-01", "text": "My fiancee and I found this place on-line when we were looking fot sushi in the Central Phoenix area. Neither of us had heard of it but we decided to give it a go. We got there around 8:30 and the place was kindof empty so we were a little nervous. We walked in and were seated at a table by the window. We were seated with dinner menus but not a sushi menu. Ther server said they only give those out at the sushi bar. I thought that was a little wierd but the server was nice and the decor was hip and modern (it was metrosexual according to my fiancee) so we went with it. \n\nWe ordered lots and lots of sushi - ika salad, hamachi sashimi ($9), spicy tuna roll ($7), shrimp tempura roll ($7), and the sunshine roll ($11) (spicy salmon with lemon on top). We could not complain about anything! It was all very very good. It tasted fresh, yummy, and hit the spot. The total bill was $47.00 which sounded about right considering how much food we ordered! \n\nWe liked the decor, the service, and the food. I noticed they had a lunch menu so I will be taking my co-workers back with me next time!", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9vxUUOoasnu8gtoXRwAhYw", "review_id": "eVh2y5ABf-MB7163bmx77g", "stars": 5, "date": "2011-02-23", "text": "Um. YAY! Picture a girl hanging with her lovely on a Monday afternoon after what could be politely described as a terrible week before, looking to soothe her spirit with some lovely food and atmosphere [the company was already delightful...]. I saw a piece in the local rag about C4 and since we're already in Moon Valley I say 'how 'bout it'. Jeff agrees and we're off - \n\nWe arrived just before 4 - closing time and the bartender/waitperson was reeeeally nice. She told us we had only a few minutes to order because the kitchen would be closing and that the pizza oven was already off. No worries, we remain unfazed. We sat at a high top next to the bar, there were a few other people at tables nearby, some drinking coffee and one couple enjoying the bruschetta and some wine on a leather sofa by the large fireplace. The room hits just the right notes for me, warm and inviting, nice art but not overpowering - its a place I could hang out in. We both had a nice glass [generous pour] of a Voga Pinot Gris and a sandwich. I had smoked salmon, Jeff had roast beef. The smoked salmon was a generous portion with capers, cuke and tomato and a what seemed to be a seasoned mayo [not goat cheese as the online menu suggests but a nice and savory compliment just the same] on a toasted baguette. Roast beef was similar in scale, lots of meat with melted cheddar, greens also on a toasted baguette. Each was served with a side of chips and a pickle. \n\nIt may have been me or just the mood I was in but I really felt relaxed there and in spite of the fact that we closed the place for the afternoon, we didn't feel rushed or in the way. It was just a nice, shoulder dropping, ahhhh experience. Not the spa, but just what the doctor ordered. \n\nSerious yay, total digdom. We wanted to plant a place just like it of our own on the beach in Maui...its nice to dream...Totally worth the trip; we will be back", "type": "review", "business_id": "vWnlScr9y2F6_ctDJZ6XLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "UE1UIi95jSk5tAzOdtnjIA", "review_id": "U0afD_agmRIocRWnAtaBkQ", "stars": 5, "date": "2007-12-16", "text": "Best and most helpful hardware store I have visited. Thank God I live almost across the street!\n\nAfter many, many home projects and recently rebuilding my kitchen, I have frequented this Ace almost more times than I should. But I am always pleased at how quickly and smoothly my searches at this Ace are.\n\nTry it, you'll like it!", "type": "review", "business_id": "1UXockAOf9jZnHuMjYiA-g"} +{"votes": {"funny": 6, "useful": 6, "cool": 3}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "T23qqFD_poy31igG0o_HgA", "stars": 2, "date": "2011-06-13", "text": "The service at this location was great, until one of the servers managed to incorporate throwing up in into a conversation while I was nursing a hangover. Never a good idea to talk throwing up to a customer that is eating.duh!! This conversation led to more inappropriate words from the employee until he finally left....grrrrr!!!\n\nHad the biscuits& gravy special ( $10.95 ), no bueno. I like my gravy simple...just some gravy with a little sausage running through,thats it. Can't stand it when there is onions, peppers, celery, carrot...yuck!! And they served those generic potatoes that are big flavorless cubes that they put in the deep fryer. Should have just had the chicken and waffle, lesson learned.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "891_RDdfwKQYulBkEY_CcA", "review_id": "lRWXkCwzACWEc_0I-x4d0g", "stars": 4, "date": "2011-01-30", "text": "I love this place. Its cute its cheapish and has really good pizza and subs its also got a nice patio. Phoenix should have more places like this", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "omoEjYFKVV7e-DtnezeUOw", "review_id": "zaYzDL7A_-htgo2DzccZlQ", "stars": 3, "date": "2012-09-19", "text": "Not a bad sub which I find to be something I can eat almost daily. Prices are a little higher than a Subway but their meat is freshly sliced to order and they do a much better job with their bread. They are still lacking the hard crust french/Italian bread that I crave since leaving the East Coast but this is something I have learned not to expect out here in AZ. \n\nThe girls that work behind the counter are excellent and a few have been there for years. They know service and are fast and great at keeping the lines at bay.", "type": "review", "business_id": "JwkYf9wctZI0dSJsjHeVeA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tVUVDWC-RDaf8GN4-7-iXg", "review_id": "Ya1QU03ysxWG1zKaBXI0iQ", "stars": 1, "date": "2009-10-19", "text": "What ever you do don't waste your money here. I am not the person who likes to send food back, in fact I hate to do it. I had no choice here, this was by far the worst mexican food I have eaten. The food has such a horrible after taste. I not only hated my meal but tried my boyfriends as well and it was still terrible. The service compares to the food, we waited forvever just for a server to come over and greet us. I wouldn't even recommend this place to my enemies.", "type": "review", "business_id": "KIgkwPEOxbfdeCk0ltycOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rl_o0q8z-Rv9bneDafM0KA", "review_id": "APFDrleBB2BwIXwjTBVZ4A", "stars": 3, "date": "2012-03-16", "text": "Fat fries are good, but that's probably it. I had a turkey burger that didn't taste much better than something I could make in my microwave. I had \"everything\" but still could barely taste anything. 3 stars is because my brother had an L and it was really L. His also looked much better than mine did. All in all, it is better than most fast food, but really isn't worth it for the price you pay. Your wallet would thank you for hopping across the street to In 'n' Out, and your tastebuds would thank you for driving several miles east to 5 guys.", "type": "review", "business_id": "jN2NAKO5Rn5IT8udZ0imdg"} +{"votes": {"funny": 5, "useful": 6, "cool": 4}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "KY71Xi-INm78gGwYrJGJXQ", "stars": 4, "date": "2009-03-03", "text": "Super cool space, friendly host (owner?) making all feel welcome and at home. Went with a large group on a Saturday night prime dinner hour and it was a no hassle wait, perhaps due to the company, it was painless. The Four Peaks beer choices, games of skill and comfy waiting area eased it as well. Service was attentive as sometimes large parties are tough to handle, but I observed no glitch here. \n\nI do plan to return when excessive day drinking has not blurred my perspective, but I remember having some pretty solid food. I sampled the Fontina cheese appetizer, perhaps my expectations were askew but I was surprised to see cheese sticks. I suppose I envisioned a wedge of cheese, either way it tasted fine and the pair of dipping sauces were unique. Sharing the same dish a savory romesco balanced with a sweeter pear sauce, I enjoyed them both with the cheese. Skirt steak is spiced nicely with garlic, chile and cumin ,charred and sliced, smothered with tasty mushrooms comforted by a hearty scoop of Yukon mashers. Not my optimum presentation as I like to cut it myself. I think the beef, which tasted great, went beyond the medium rare request which seemed to just be ignored. Not enough resting time from grilling to cutting and plating I would guess, however the meat was still juicy .I also had the chance to sample the maple glazed pork with pear crisps. Yum. Well cooked ,juicy and chock full of smoky sweet goodness. The side of Gorgonzola grits was a bit loose, but the flavor was very nice. Portions were very generous. \n\nLooking forward to checking this spot out again without the world of beer fest goggles head start.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "1W6iemOzi3iR44jrlhWhyw", "review_id": "kdkpApwUU_fIBIMaAghWEw", "stars": 4, "date": "2008-11-18", "text": "Excellent Excellent Excellent... My wife and I try to eat here at least 3 -4 times a month. Owners are very nice to chat with. We planned a trip to Thailand this fall, and the owners help tell us where to go and what to see.", "type": "review", "business_id": "jQST5lkLGX9L52-A10TGTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "G4IR4Mqsg7kFLaruUpAP2A", "review_id": "R_O_mLd3PDh9hFTKqUhwwg", "stars": 3, "date": "2012-11-07", "text": "I've been to this location several times but I'd rather be more positive than nit-picky. The service has always been a bit slow and less informative. I've come in and on several occasions lost out on the specials till the very end when the server mentions \"next time you should do the....\" well I wish I would've known that earlier because I could've enjoyed more awesomeness! Otherwise I love the atmosphere and the seating. The space is really good, outdoor seating during this time of the year is jam and ambience are spot on for a group or a more datish type situation. I've tried a few of the dishes and the food is pretty good but nothing yet that I've built up a craving for. I'll be back soon for the Tuesday special of an app with a bottle of wine for $22 buckaroos!", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "BkV7dWkvlIZpOdxDXY3p4w", "stars": 5, "date": "2012-04-01", "text": "I woke up this morning craving a breakfast burrito. Fortunately just 3 days ago, a menu was left on our door for Cisco's Grill (with some great marketing I might add). Conveniently located right up the street from my house, I've been curious about this place since they opened! I strapped on my shoes and walked on over... upon entering I was greeted cordially and placed my order for a chorizo and egg burrito with cheese... The cook went to work and 5 minutes later I was holding a fresh hot burrito and a complimentary pineapple water! Cisco came out and introduced himself while I was waiting and chatted with me for a few minutes. Its clear to me that he's very passionate about his restaurant! The service is top notch!\n\nThe menu itself is fairly generic, typical burger and fries, tacos and burritos, but everything is so fresh and prepared well! I'd recommend this joint to anyone looking for a quick, inexpensive bite to eat!", "type": "review", "business_id": "LRxH8V5JaPt9mvav6F_1tg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "T46gxPbJMWmlLyr7GxQLyQ", "review_id": "S2yWibED33rqEHkgH91T9Q", "stars": 4, "date": "2009-04-04", "text": "not only do they have great sandwiches, they have one of the greatest sandwiches ever to appear on a menu: grilled peanut butter and jelly.\n\nbison witches (which, if you say it right, it sounds like buy sandwiches) is a great spot to meet friends for a casual lunch. its right in the heart of downtown tempe off mill and is also a great spot to watch ASU football home games.\n\ni believe the owners also own quinton's in iowa city, iowa.\nhttp://www.yelp.com/biz/quintons-bar-and-deli-iowa-city", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "G2HIOsIDyY9C3wjq_V5rQA", "stars": 5, "date": "2006-09-02", "text": "I walked in and uttered, \"I think I found my new home\".\n\n1) Miller High Life on draught and bottle.\n2) Buckhunt (the lil orange gun has even been taped together-double buck bonus!)\n3) Bowling videogame...god, I love these things\n4) Indoor smoking lounge!!! With a large screen TV, two tables and a lot of pleather seating, the large fan won't mean much but WOW-exciting! There is a french style door separating the lounge from the bar area where the stage is so you can still peak at the band while sucking tar.\n5) Well...even the womens' bathroom is pretty gnarly...which would normally subtract a star-but I was so happy to pee in the unmarked restroom I won't touch it!\n\nOther notes: all bartender, barbacks, security were extremely sweet and friendly; all other patrons were either pretty chill, excited to see the band that was playing or willing to strike up conversation; tons of televisions everywhere; they had a lot of beers on tap-cheap too; this place is HUGE. In fact I would consider it a liability since there are a lot of steps connecting each section-at times I found myself balancing precariously-and that is b/c I am a klutz-wasn't even drunk...ok, not that drunk. Most everyone had tats, black hair, laid back. This is def. not a scene-and I love that!", "type": "review", "business_id": "5BXNeSwzOy1nhU9PtCHvIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EQZjeyvQRe0xnEYcV_eK0A", "review_id": "9nMfYnM7WFbtWKBYEmhqYw", "stars": 4, "date": "2011-07-26", "text": "This is my go-to pizza joint. I've been here numerous times and the pizza is always delicious. My favorite is the Barro's Special (Pepperoni, ham, onions, green pepper and mushrooms). It's a nice thick and hearty style pizza with a great tasting crust. They have a play area with a little kitchen, legos and TV playing Nickelodean for the kids which is great. They also have ESPN on so I can chill and watch some sports while the kids play.", "type": "review", "business_id": "jBSx81vaJsakhNDnyv0Wpw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "19z2sZCwjNveJf6koqlplQ", "review_id": "-xh0KjR02VnvWbWt4in03g", "stars": 5, "date": "2013-01-03", "text": "I stayed at the hotel and I tried Tuscany and it was really good. Delicious Scallops and pasta. Also the pizza was excellent. The server was great and I would return to this restaurant when I visit the hotel again.", "type": "review", "business_id": "C7utE_DN2kgE-68_VF8ftw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "YoBgKOdfpGH48LpIDSfoQQ", "review_id": "roJ1hq2LQukluUaZZrcgFg", "stars": 3, "date": "2008-10-13", "text": "For some reason or another this macy's has a better selection of shoes than the one at Scottsdale mall. In the past year I found a pair of Calvin Klein sandals for half off, and they carry the higher end, younger brands- which is great Nordstrom's selection tends to be for an older crowd.", "type": "review", "business_id": "Vm9GQUptdZmBM9R7tZ9_Tg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1m8rFe-BCr6qHSMoV5KkUw", "review_id": "YH3J2COG_TonRxxRKfDN2w", "stars": 5, "date": "2011-12-12", "text": "OK: call me 'weird' here: but; I liked the funky (very) Old School ambiance of MacAlpines when my fiance and I went there this past Sunday for the Studebaker and friends car show.\n\nAdmittedly; I was there once before ca. 1999 and was NOT impressed but things have def improved IMHO.\n\nI had a Club sandwich and it was one of the best ones I've ever had, at least in recent years. Would eat one again. The chocolate milk shake was OK but could have used a tad more syrup but, I'd have one again.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PWa942b3WoOsr_T1PrZeVQ", "review_id": "1I1Xxs1u9OjvkfwdIR921g", "stars": 5, "date": "2013-01-02", "text": "My husband and I have eaten Chinese food all over Phoenix, and hands down, Big Wa has been the best. The BBQ pork with fresh spicy mustard is A-Mazing!! We have ordered about 6 different dishes from here, sometimes totally blind and the food is always great!", "type": "review", "business_id": "X6PFtUdbCIOrr0r5suKlRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z6OGpPPnGNDTOsLhf4KVzA", "review_id": "90M7tzesfXLK5q7HC48-Ig", "stars": 4, "date": "2009-05-07", "text": "I was able to get an excellent rate through hotels.com. $58 a night. Yes the room is small. But there were no bed bugs! A woman that was going to the same convention stayed at an upscale hotel near by and had bite marks all over her arm. :P \n\nI didn't get a chance to swim in the pool, but I checked it out and it was nice up there. \n\nThe staff was very friendly and helpful.\n\nThe bathrooms are small. For some reason I had to keep the hot water turned all the way off. Otherwise the water would be scorching HOT!\n\nThe cable needs to be upgraded to digital.\n\nDidn't run into any ghosts. Thank goodness!", "type": "review", "business_id": "_yfprBETaYgySkKyl8ZWMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "swJ6rmmGx4DCxosDfKTElw", "review_id": "Fq_RleJA6yvaTkb6xuoW2g", "stars": 4, "date": "2009-01-10", "text": "Well Sauce hits the \"spot\" for me. I was amazed how quick the service is and how fast we get our pizza (well their pizza does follow the laws of physics, THIN PIES COOK QUICK!). So if your're looking for deep dish....this is not spot. But if you like it thin, it's great. I tend to order the same item time and time again and it's the sausage with carmelized onions. Sandra K likes their salads, so it's a pizza and salad and we share. She likes a glass of red wine with her dinner. We share the pizza and salad (she won't let me drink her wine though) and I gotta tell you, it's plenty of food and I feel like I got real value for my money. Kudo's to Sauce!\n\nThis guy, Sam Fox, has a magic touch with most of his restaurantsl He is truly gifted by bringing his concepts to the greater Phoenix area.", "type": "review", "business_id": "w5XcgWwGAN21Ly2HeU48IQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XLHDwNRYynxd8oiyIvk7DQ", "review_id": "os-DcWvjGEFIZVBWaQ3r2A", "stars": 2, "date": "2011-02-06", "text": "I've been a CVS guy for about 15 years, spanning three cities across the country. Some branches are better than others, some regions are better than others - they're no better or worse than other national chains which also have some good branches and some bad branches. I picked them because they have a great \"rewards program\" and because they have heavy presences in places where I travel often.\n\nSo this is a bad branch. There's a couple decent check-out kids, but in general their employees are among the worst trained I've ever seen, in terms of providing polite, timely, friendly customer service. They avoid your eyes when they see you looking for something in an aisle, lest you bother them with a question. They never EVER greet you with a smile and a \"good morning\" or a \"did you find everything you need?\" while you check out. They have inconsistent policies about whether or not coupons can be scanned from iPhone or paper copies needed (the manager basically called me a liar when I said checkout people have scanned my iPhone coupons many times in the past).\n\nI guess if you sell very profitable liquor and meds, you make money no matter how bad your attitude is. It's not like Walgreens and Rite Aid are setting the world on fire with their customer service either....\n\nIf you don't travel a lot like I do, pick a nice local independent pharmacist...", "type": "review", "business_id": "Ynh4G_R0QAuzjY85TSXsVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "rn-S3h35NiiAvKvEMDbtZg", "review_id": "kO_wxDM35PUy6ukVEP_m-Q", "stars": 4, "date": "2012-01-26", "text": "Been a few times at various times for various reasons.\n\nFood - 4/5\nLove the bruschetta, sandwiches are good really no complaints, good alcohol selection. \n\nService - 4/5\nI always receive good service. \nValet is always youthful.\n\nAtmosphere - 3/5\nCasual, great place for meeting friends. can be a little too busy for my liking.\n\nPrice - 3/5\nAverage I can't really complain.\n\nOverall - I don't go out of my way to go here, but I certainly recommend it.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "-VtylxgCHrVrsSCn55e9QA", "review_id": "qvCZFBvb7tJHE0OM8-_wBw", "stars": 3, "date": "2011-10-09", "text": "Brunch Review:\n\nDYNaMITE BLOODYMARYS. Something special.\n\nExpensive. Tasty. Friendly staff. GREAT tomato relish on the side. \n\nI like to go to brunch here on Sundays. I sit at the bar, and there is usually a sports game on, a good looking bartender pouring me coffee, and a guy with a hangover wearing sunglasses wishing he'd ordered the breakfast burrito sitting next me. Most of the dishes have some southwest/mexican food influencing the cuisine. \n\nThe BIG 'ol Bistro Breakfast is delicious. I think it might be one egg too many, but the Cappicola and potatoes are delish.\n\nThe Rojo Chili de La Casa is my go to, unless they have a special like Machaca Tostada's or Country Benedict (with sausage patties in place of Canadian Ham)\n\nThey are really good about keeping the drinks topped off.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 2, "useful": 7, "cool": 2}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "-H-R2jvepiZ1AVWtRfrGJA", "stars": 5, "date": "2010-10-11", "text": "One bite and I was transported back to the crowded streets of Monterrey. I could almost smell the exhaust of the vochos and hear the distant conversation of the local policia extorting their prescribed mordida. Quite simply, this is the taco as the way it was intended by its creators. The pure and unadulterated classic enjoyed by the Mexican working class.\n\nWhat Pomo is to pizza, this place is to tacos. Authentic...absolutely authentic.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NFbAuokBjozSOoa2HseeHg", "review_id": "fUp8-jD6ePylcGbScqFtpg", "stars": 5, "date": "2010-02-21", "text": "Joe's has long been one of our favorite restaurants in Gilbert. The pulled pork is excellent, the sides are even better, and the service is always friendly.\n\nDon't be intimidated by a long line, even out the door, as it moves fast. The cheesy potatoes and corn are great. The lemon cake is very moist and a nice finish to a meal.\n\nBe sure to stop by on your birthday and pick up a free meal.\n\nThe kids love running around outside in the grassy area, and always enjoy going to Joe's.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5GVrtAbskHLJg7_Tni4I8w", "review_id": "4A6rNNWf6dBqfkPwi5wdvw", "stars": 3, "date": "2012-06-30", "text": "The food and service was excellent!, however, several noisy undisciplined children running around in the restaurant and yelling loudly made the dining experience less than pleasurable. Apparently, these children were either members of the owners family or one of the employees. Our requests to a server and another employee did little to rectify the situation. I hope on our next visit, we will have a more peaceful meal", "type": "review", "business_id": "DuaoskPAVBV55px_cwxIVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "38mFXGlsWdVGtWKNjpSSHQ", "review_id": "vY9lKtIJViXFpbw3P9h_xg", "stars": 5, "date": "2009-09-12", "text": "I'm sorry to say that they closed their doors for good just a few weeks ago!", "type": "review", "business_id": "106JT5p8e8Chtd0CZpcARw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0piFSvCKD4DygzQzewzdoA", "review_id": "ItXu8gCSnvF4zsTC3_yB8w", "stars": 4, "date": "2012-01-18", "text": "Oh dang! This place is GOOD. I am in love with the carnitas burrito, and the employees are so nice and make some damn good food. If you're in the area and don't want Taco Bell then GO HERE! They also give you chips, and the chips and salsa are pretty legit. Try not to stuff yourself with the chips though, cause the foods the real winner here. I will be back, and have been back many many times since my first experience. Why only 4 stars you ask? The breakfast burrito was just a-okay, I would much rather get a breakfast burrito elsewhere but the regular burritos are the bomb diggity! ;)", "type": "review", "business_id": "lk-6NXfpSgvNw7zm0xtUVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F2GEqt_mV95OQEiYPTQ4VQ", "review_id": "oZlQN_u6-F78748pUvdigw", "stars": 2, "date": "2012-11-04", "text": "Decent IPA, I prefer Four Peaks. Slow service. Food is overpriced.", "type": "review", "business_id": "d7V3ykQHqChv0KtXEanKLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "ptZOOyN6dcZPcBdWCI0TfA", "stars": 5, "date": "2011-09-05", "text": "I hardly ever give five star reviews. My experience at Culinary Dropout today prompted me to do so. The reason we checked this place out was because I had a 25% coupon from Fox RC for Labor Day. First things first: The employees are extremely good looking. There is lots of tattoos and bare skin. Our bartender was awesome. He answered all our dumb questions with a smile and made some killer drinks. I had the Bacon Infused Bloody Mary and my friend had the Acai Mojito. I will be going back again to have that Bloody Mary. It was SO good. We started out with the homemade chips and onion dip and it was delicious. We pretty much filled up on those before we got our meals. I ordered the Havarti Burger, my roommate got the chef salad, and my other friend got the canneloni. Everything was super good, but it was too much food! My burger melted in my mouth and I kept stealing bites of my friend's salad. So, in a nutshell:\n\n- Great vibe.\n- Great food.\n- Great drinks.\n- Hot employees.\n- Clever menu titles/\n- Great experience!", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Wse8fzq2b0rCgO6s-ZtWJw", "review_id": "hYGWhzZtfwR8Ygt0l-2iNg", "stars": 4, "date": "2009-06-28", "text": "This is a really nice coffee shop and restaurant tucked away in a corner toward the east end of City North. They have great food, wine and, well of course, coffee. We were there last Saturday and they had live music as well as an artist. April Howland from Howland Studios was there painting and giving a live demonstration. I am not certain how often they have music and an artist but if you managed to catch them one of these nights, you won't be disappointed. Also, make sure you try one of their fruit smoothies. They are simply amazing.", "type": "review", "business_id": "Kqn4J9NTgZdMAnV4HuYh5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u-yh_ENUSE3Ap4rAmYRw_w", "review_id": "Rck9pUHqUIxIxDkJ1Ang0Q", "stars": 4, "date": "2011-08-08", "text": "Good food, good service! We go here a lot!", "type": "review", "business_id": "9x0rvR9SSX5mO1vUqx_hnQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "a-5c6Co8swgwUu4joh9t4w", "stars": 4, "date": "2008-02-29", "text": "I LOVE IKEA\n\nI really don't understand how or why some people just hate this place, but for me it's the only nice way to interiorly design on the cheap.", "type": "review", "business_id": "WUZxVr_CaRqEQgzvyeK5tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7MJJ4dacV5wzslKT3izK8Q", "review_id": "J0TY52OsoEV0gKNQzECopA", "stars": 5, "date": "2010-03-03", "text": "I love this place: look for the specials and the different events they always have going on. It's a great spot in the Valley.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 5, "useful": 4, "cool": 2}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "Rp49hhNDWHpd2r7HxgpTnA", "stars": 2, "date": "2011-07-01", "text": "One of these days I will learn NOT to take out of town guests to places I haven't tried first. \n\nI was pretty excited for one of my favorite people to come and visit. Her only request? Sushi! While I have my list of absolute AZ favorites (Tokyo Lobby, Toyama, Sakana, Hiro, Dozo) foolishly I decided we should try somewhere new. Having read many good things about Hana, the choice was made.\n\nWalking into the BYOB place with our Kirin Ichiban in hand, we were ready for a great evening. Too bad that isn't what we experienced. After being ignored for a few minutes by everyone who passed by and even the person behind the counter, I found someone to tell that there were two of us and we would like to sit at the sushi bar. Although there were spots open, we were left standing there for quite a while. Do you want to stand around holding a 6-pack and not even be offered a bottle opener? Me neither. Once we were finally seated, we weren't told about any specials, offered water or even glasses for our beer. \n\nDeciding to make the best of it, we ordered:\nYellowtail sashimi (good, the best item we had)\nSpicy scallop nigiri (good)\nAlbacore sashimi (dry, not sliced through, leaving us top pick off overcooked bits and pieces)\nFreshwater eel nigiri (dry and crumbly rice, falling apart at the touch)\nScallop dynamite ($15+ for 'krab'? Really?)\n\nThe female sushi chef was nice but our waitress was nonexistent. Other tables and customers at the sushi bar seemed to be getting decent service (water, getting their beer/wine/whatever from the refrigerator) but we were left without water refills (once we finally got any at all) and don't even think about getting another of those BYOB beers we brought. It even took a while to get the unused bottles back when we were trying to leave. \n\nLackluster food and nonexistent service at a premium price. No thanks.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "qO_DIl7_a_MrzmYp7JtmYQ", "review_id": "idFgvz9xzEtefAP8m_vynQ", "stars": 3, "date": "2011-03-21", "text": "Loved the room and its functionality but this same room made me want to punch myself in the face. I'm a young professional in his mid 30's who likes to party and understands what the W brand provides (especially on the weekends during moneymaker time) but when their DJ on Saturday night sounds like he's spinning from your bathroom, it makes for a tough stay. Got home at 12:30 a little buzzed and had a rave in my head until 2am. Finally got to sleep and loved the room and hotel otherwise, but this will leave you with a bad taste in your mouth. Maybe it's just a few rooms but 205 is a bad number here.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "180tLY4YhUAuckejm5v53A", "review_id": "aLcjuPveeRgdbOv0H6608A", "stars": 5, "date": "2010-09-05", "text": "Always great, fast and consistent! The service is excellent, the staff has worked there for years and is speedy to run around and refill drinks and clear dishes. It's nice to have the counter service so you don't have to wait to be waited on...because if I am at the mall I am there for serious business:) If you like a home grown grilled cheese and some tomato soup or a salmon Cesar salad or even a gourmet pizza this is the place. The brownie and the red velvet cake are hard to resist ...get both!", "type": "review", "business_id": "NOq_vpCfCfYdMRPbaUG53w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QskaYxlEeRuZdBXtwV8KBg", "review_id": "oR8V6mERkrejkcJMMnNFWw", "stars": 3, "date": "2012-11-26", "text": "I think Marcellino's will get a second chance for a special occasion. I visited the restaurant based on seeing it on Check Please Arizona. The food is obviously made fresh and was excellent but I felt a little overpriced based on other excellent restaurants in the area. Although the atmosphere was romantic, I had a hard time reading the menu and the bill using just the votive candle on the table. There has to be a better way!", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "KEAM0GdTr7XyKZYBk-S7KQ", "stars": 5, "date": "2012-01-04", "text": "I have long liked Tempe Maretplace since it has opened. It is a good location, lots of parking all around. Since when live in the extreme heat it is a bit nice that it is outdoors. There is a major selection or stores ,restaurants and services here. My girlfriend likes it as well. So it is a win win set up. They are decorated really well and they have a multitude of events here. Even a Barnes and Noble,which bookstores are not that easy to come accross now days.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ayXTZqaRdXE9lTYKEgOKmQ", "review_id": "28r6XQ-nPvGSkQ7-9t3hIQ", "stars": 4, "date": "2010-02-22", "text": "Walked into this place on a Saturday night (i am from out of town) with my 4 girl friends...this place is HUGE! Very packed and loud but in a fun way. Love the decor and ambiance.\nHuge bar in the middle with a nice wine list and a variety of drink options.\nThe wait was a little annoying, as we had reservations and still had to wait about 40 minutes.\nThe menu had some vegetarian options, not a whole lot, but what i ate was really good. The vegetable Crostini appetizer was amazing and the Hummus was not that bad either.\nI had the margarita pizza which was good, my friends had a pasta with chicken and they loved it as well.\nThe sangria we had was ok, I've had better in Chicago. The crowd was upbeat and lively, seemed to have quite a few out of towners as well, and the age ranged anywhere from college to seniors...price wise it wasn't the cheapest place but it won't rip a hole in your pocket either.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jhHmx7VoIM-MU9WZ8uGlyw", "review_id": "42rccUvqoRY9CLpo7_x2gA", "stars": 5, "date": "2011-03-28", "text": "yummy.. you will love this place. I love to sit on the patio on a nice day and enjoy! the sangria is amazing.. and lettuce wraps soooo great!! give it a try!", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zyd78OiKPAqaMSC6OWLb6w", "review_id": "aR3TyPBDWw0tGlReONIrhQ", "stars": 4, "date": "2012-04-27", "text": "yummy food, friendly old guy-slow, but funny.\n\ncant go wrong with fried goodness of empanadas here. get the flight of empanadas if you cant decide...the one with cheese and vege is good!\ntamales are yums too! again, get the tamales sampler for a taste of each.\n\neverything else on menu is delicious...and huge portions! love the plaintains!!! yuca fries...eat them while they hot!\n\nyes, they take a loooong time, just because if you peak behind in the kitchen, theres only 2 workers! the old man is trying his best to entertain in the front, while the two in the back are trying to cook as fast as they can.", "type": "review", "business_id": "_oQN89kF_d97-cWW0iO8_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "njEydjx43XGUVptxzviN4Q", "review_id": "PWr7_iQ-WcZI3yN9U21oqA", "stars": 1, "date": "2011-01-10", "text": "After bad experience, I will never return. It is terrible since they didn't meet my expectation and the price is outrageous. The most difficult part of the Pho is the broth (req 16 hours of preparation) and it tasted like water. I had to add all kind of condiments to rescue it but can't even eat it. The restaurant is very slow now and it confirmed what I meant with Asian restaurant. If your fellow Asians don't patronize the place, it is because your food did not meet our expectation. Try across the street to the Rice plate Kim Thanh for their rice dish. It is night and day.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1PWFPOmqvLx3sGKuuKQr9Q", "review_id": "Z25kEjnNtqwLum5LbFH6Ug", "stars": 2, "date": "2011-02-19", "text": "I've been here a few times with my mom because she really likes it, but overall I wasn't impressed. The food was tasty, but the service was atrocious.\n\nIt was busy the last time we went, but we stood around inside the door for probably 10 minutes before an employee even noticed us. There were other parties waiting, too. You just had to stand around and wait for someone to bother seating you in one of the open booths.\n\nEveryone was satisfied with their meal. I've had the spinach tacos, which were very tasty, and I appreciate having a veggie option that wasn't a run-of-the-mill bean and cheese or chile relleno. (I've had their chile relleno and wasn't impressed by it.) But no one refilled our drinks the whole time or checked on us. Not even once. \n\nMaybe this is better when you go at a less busy time, but the food isn't mindblowing enough to make it worth the lousy service on a Friday night.", "type": "review", "business_id": "oiLe3lqMFaZtsSpRuIUChw"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "EiJ_9SMGu0JeHwZAWzVxcw", "review_id": "jJRQGEuTR262h9yVObrx0w", "stars": 5, "date": "2011-11-13", "text": "Bike cabs beware! You've got nothing on this rig! \n\nTour de Tavern is a tribute to tipsy teamwork and a perfect way to host a unique group event. As \"pedalers\" on their inaugural tour, we enjoyed the celebrity treatment of cruising down the winding streets of Old Town Scottsdale as onlookers snapped photos and cheered us on!\n\nWe rocked out to top 40 hits and, by special request, our Lonely Island favorites on their awesome sound system. Our guides were flexible and let our party run the show. If we needed more time for let's say...... an impromptu horseback ride in front of Shotgun Betty's, they were more than happy to wait. \n\nAs an added bonus everyone gets to burn off some of those unwanted cocktail calories in between your favorite watering holes. If you are concerned that after a few stops (and a few shots) your legs might lose some of that forward momentum, there are a few coveted \"non pedaling\" seats in the back of the bike. We all compromised with a friendly and fair rotation system. \n\nOur tour guides were helpful, accommodating, and entertaining. They even proved to be exceedingly patient upon discovering that we did in facts have \"that guy\" in our group. \n\nIf you're saying to yourself, \"Such a marvelous experience could only cost an arm and least the majority of a leg\" then you would be wrong! With the cost of gas being substituted for sheer earth friendly man power, our group of fifteen people spent less than $30 bucks each for the experience.\n\nBut wait, there's more! Included in this price are all the amazing special deals that Tour de Tavern exclusively brings you at select bars along the route. On our tour we were offered drinks specials ranging from $3 to ONE PENNY! I say this in all caps because it's ONE PENNY!\n\nSo next time you are planning an event, I recommend Tour de Tavern 100%!\n\n\"Look Ma! No hands!\"", "type": "review", "business_id": "gi0bK6z2CC-hXgO5MKrnPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MJI4PpvkzHhcxNOyAK0GxA", "review_id": "7f_Izm-keJEK8tVDgTqyow", "stars": 1, "date": "2012-04-04", "text": "Was in town for a business meeting and tried to catch a movie with a friend. First impression of the place was that it needed a total make over. I mean TOTAL MAKEOVER. Walked up to buy my ticket, and the lady was a total jerk! She had no idea when the movie times were, and she clearly thought we were stupid. She messed up our change, and didn't believe us when we told her. When we walked in they ripped the tickets out of our hands. When it came time to order our food, the butter on the popcorn tasted like cough syrup. The theater was extremely dirty, and kids were screaming throughout the movie. After the movie I politely told the manager about our horrible experience. He was not understanding at all and even threatened to kick us out. I was appaled by this whole endeavor and that is why I am writing this review. It was a complete waste of time and money and I recommend everyone to stay away.", "type": "review", "business_id": "dAJC97pUsxa1SucwFQE07A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "UBIeuiLY9PobybSgo0qhWw", "review_id": "eKCyt4_80v4E_Bkdl0M__Q", "stars": 4, "date": "2010-08-09", "text": "I remember my first visit to Delux,it was before heading over to shop in the craziness that is Last Chance. Anyway my friend suggested this spot because of their sweet potato fries...that's all she had to say, I was down!! It's a trendy little spot inside of a strip mall, it kinda looked outta place but it stood out in a good way.\n\nI ordered the sweet potato fries they were yummy (I like mine a little crispier, but they were still delish) and the CHINESE CHICKEN SALAD...Mmmmmm the flavors were amazing, the red peppers, cilantro, romaine and that peanuty vinaigrette is too die for! I was a little worried that I wasn't going to get full but this salad was easily large enough for 2.I'm ashamed to say that the 3 times that I have been to Delux I have had this salad, I'm hooked. Next time I promise I will venture out and try one of these burgers everyone keeps raving about...maybe.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CUIX6FcoHYQvsijPNTAwrw", "review_id": "EABMAdFptkWwSv1mOkYZGw", "stars": 5, "date": "2012-10-15", "text": "Costco Travel - My husband and I recently returned from a trip to the Big Island, HI that we arranged throught Costco Travel. After shopping around I found that their prices were the best and after one phone call I was able to make all arrangements for airfair, condo and car. They didn't have arrangements with any B&Bs on Hilo but were able to adjust our travel dates. Everything went according to plan with all arrangements being accurate. Condo was outstanding and a great value. We got gas and did some souvenier shopping at the Costco in Kona and again saved $$. I've shopped at Costco for years - now becoming a groupie!", "type": "review", "business_id": "ZAd2hniecnqH00t01ODQ3w"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "pa5aGV_Fc6KW99Lac265QA", "stars": 3, "date": "2011-09-16", "text": "I got the chicken burger today, it is pretty good. Grilled, juicy, and cooked just right. The fries are always hot and crispy. The wait for the food took a little longer than normal, but I know they are very busy. \n\nBummer our service this time was a totally miss. At first she was great, check came took our drink order and food at the same time (we were ready). She checked on us after our food arrived and we ever saw her again until the bill. We both were so thirsty, NO REFILLS. She offered us later that she can bring our refills in a to go cup. That is great, but I would have liked a drink with my food instead of choking it down.", "type": "review", "business_id": "FdAi2yvDJC1LPZOLhaoo6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "n1jU9uP2QuL0JaPlZFInMQ", "review_id": "uYqdRTb0wzzmo4lOYPjOZw", "stars": 4, "date": "2011-11-07", "text": "It was so hot on the day I went to this place, they were baking the pizzas on the roof! hehe! I was pleasantly surprised with the quality of the pizza, pretty damm good. I have 2 slices and one of Sicilian; all were just like NYC. The service was good too, unlike in NYC. :)", "type": "review", "business_id": "TqHTtjPANCBKGsjGBjDoQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "1NnBWHGaNinvJEeGWBCu9w", "stars": 4, "date": "2009-01-04", "text": "I visited the Keg in Tempe on a Satuday evening to reconnect with an old buddy from high school that I have not seen in years. Overall, the meal was good. Service was prompt, and they had my reservation. The Keg has gone out of their way to have hostesses who could double as the models on the Howie Mandel Deal or No Deal gameshow, so initially I figured confusion would ensue. It didn't. : )\n\nBeer was served cold and quickly when ordered, so no delays on the service.\n\nTheir appetizer choices were mostly seafood which doesn't help me out. We got some kind of bowl of cheese and \"stuff\" and a plate of chips to dip with. It was ok, but not exceptional. I hope they turn up the appetizer department to take care of non-seafood eaters.\n\nAnyways, the Wedge salad I got was very good. Drenched in a bit more Blue Cheese than I would have expected even for a Wedge salad, so if you are adverse to too much dressing, you may want to get the dressing on the side. \n\nThe steak I ordered was supposedly bacon wrapped, but I could not taste it if it was. It was a good filet though, and they did cook to my ordered temp on the first order. Always nice to get it right the first time!\n\nThe loaded potato and vegetable sides were good, served fresh and hot, again, no complaints.\n\nWater refills were well timed and the service did not rush the meal or annoy.\n\nThis restaurant would only hit a 3 for me, but the manager called next evening following up on my experiences. (They had my phone number from when I made the reservation.) I think that puts these guys in a good class since they are clearly working on the most important element of any restaurant, the customer service. And oh yeah, the steak was good!", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "NDnDR9GdBwQh6NPrVDzUDw", "stars": 4, "date": "2011-05-15", "text": "They say its bar food done right - I'd have to say I agree. Got the burger and wings - both very solid. Love the beer choices. The prices are very reasonable for specialty beer and good bar food. All in all, I am definitely going back regularly!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "7i8MGa7zyWmaQli6o2-29g", "review_id": "-WDXYJ5BL60JK-cS9oMV7g", "stars": 3, "date": "2012-06-26", "text": "Okay so lets clear one thing up.. this place is a dump. \n\nBut for under $20 a night it is a-okay for me. With all the money we saved I've got some extra cash to hit the strip club that sits directly in front. \n\nAll kidding aside this place has impeccable location and is pretty much only a couple miles away from anything you can think to do. Of course the rooms are a little outdated and boring but its only a place to rest your head. And you can do that in peace. This has to be one of the quietest hotels I've been too. Almost seems like everyone is scared away from Christie's out front..", "type": "review", "business_id": "eBslbGvlDI92ppOi6CnTDw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XmpqbfSu9X7mjwJGUXTrAQ", "review_id": "KzpUj8PrwEWeT4EIHh31BA", "stars": 3, "date": "2011-04-10", "text": "I don't drink, so my review will not be intoxicated by anything except the building. I gave it two stars for the building. They did a beautiful job with the remodel (I'm a mid-century and Haver fan.) The food wasn't anything to write home about. I have to admit that I'm particularly tough on restaurants filled with...I don't know what to call them...scenesters, I guess. Service was ok. Its not BAD, mind you, its just that I don't get it. I guess if you're paying with credit cards all the time, you don't care how much mediocre food costs, as long as it makes you feel cool about eating there.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QKCyMJB9hH-HbiQvAgBfiQ", "review_id": "yUeXJqYayK6LVFHMP2NXoA", "stars": 4, "date": "2012-03-27", "text": "There is a huge menu for this restaurant. Only tried sushi and noodle soup combo dinner so far.\n\nLots of options on noodle soup dishes. Each noodle soup has a different soup base. The combo dish adds another small side dish option. Lots of food for your money.\n\nSushi is decent and reasonable price. Great Japanese family-style restaurant.", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "CMkgRY8pylURlTIcazJwAg", "stars": 4, "date": "2008-09-05", "text": "The food's been covered before so all this review will be is further social proof that this place does indeed rock.\n\n I've missed good veal cannelloni for a while now , looks like I wont need to anymore:) For once it's not the processed grey stuffing that has one texture throughout surrounded by an inner tube ( Cough famous chain) Erin's Pollo Piccata was excellent and the accompanying pasta was perfect.\n\nSadly they fed me too well since I was dying to try the tiramisu but the afternoons plans didn't involve refrigeration. Lastly thanks to all that saw the excellent reviews and kept piling them on it really makes a big difference on how likely we've been to try new places.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yKwixep2z46EoUVRU0oSPg", "review_id": "a_IP7XU48mvAjUJw3ndqJQ", "stars": 5, "date": "2012-07-19", "text": "I joined a friend for a two hour evening ride at CCO. We were the only two riders, may be because it was a Sunday eve and all the tourists were drinking their mimosas by their hotel pools.\nThe horses looked very well taken care of. Mine was 17 year old Sundance, a beautiful brown male. I've never ridden before, and he was easy to control. Our guide Ed was patient, funny and awesome company. He showed me the basics and was always there with a word of encouragement and a tip or two.\nTip for the guys, if you plan to trot, wear tight jeans, you will be thankful at the end of the day. The city slicker that I am,\nI left my phone in my shirt pocket, ended up dropping it while on the ride and Ed helped us go look for it. The desert, sun set over the mountains and the sandstorm about 30 miles away all made this a very memorable evening.\nI highly recommend CCO.", "type": "review", "business_id": "5ILGSRh_dKKCl-sRgQBsUw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "SSXLiQkrdPLd2YJhNyojhw", "review_id": "rDx51E3lGkco_J_YXSFcXQ", "stars": 3, "date": "2010-03-27", "text": "Last night (Friday night) was the first time I had been back to Myst in years. The club is nice, but the promoter for Friday nights is urban... and not classy urban... like kinda hood urban.... BUT I must say that it's a fairly mixed crowd. Black... White... Hispanic... I was surprised to see all different types of hood folks out. Now, this usually wouldn't have been my crowd of choice, but my girlfriend and I were feeling adventurous. \n\nLong story short, the bartender was awesome and the wait for drinks wasn't too bad. They averaged about $10/cocktail. The cover was $15 and $35 for VIP (which allows you access to upstairs... not worth it. It's a recession and the dance floor is downstairs...) I'm not sure who the DJ was but he was really good. It was like all the best of Gucci Mane and all that Southern type club music... very good stuff. \n\nI gave a rating of 3 stars b/c while this isn't a place many of my friends would want to go to in the future on this particular night, it was a decent night IF this is the crowd you're looking for. Hey folks... I don't judge lol...", "type": "review", "business_id": "hCS5eV0SCAY9LeeL36lz8g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "9PSk0p0cUOllZYlLFCcQsw", "stars": 4, "date": "2011-09-06", "text": "I went here with a party of 6 on Saturday night. Our table was ready and waiting when we got there which was nice. It is an older place with tons of charm. The place was pretty busy and you could tell that the waiters/servers/busers were clearly over worked.\n\nAfter sitting for about 10 minutes we had to flag someone down to get bread and place our appetizer order. After that we only saw our waiter every 20 minutes or so so it was difficult to order additional items or to get soda refills.\n\nThe service was pretty blah but the food was excellent. Everything I tried was top notch. Everything was freshly made and delicious Probably some of the best Italian cuisine around. Definitely some of the best gnocchi I've ever had.\n\nI would definitely return but hope the service is better.", "type": "review", "business_id": "MPziC5MO2QQiYVAMM3fdSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qAZUqkoRybZ_mS0ORO_0Tw", "review_id": "emya0c2njgYClVsUqxE2Jg", "stars": 4, "date": "2012-10-22", "text": "I was just thinking how long it's been since I've been to trivia on Tuesday nights and it made me sad. I definitely need to get back into my trivia groove!\n\nOther than missing trivia, I'm seriously craving some Jamaican Jerk Wings. YUM!! Not to mention the delicious guac that they'll make at your table if it's not too busy. \n\nGreat bar, one of my faves. Great servers/bartenders and fun, come-as-you-are atmosphere. Not a typical Tempe bar which is quite refreshing.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yw45IPdSZtICxMY0Tnu8sg", "review_id": "1tIvinjuCskAJfoF6Zlunw", "stars": 5, "date": "2009-04-27", "text": "SIMPLY AMAZING! WE LOVE IT!\n\nMy hubby and I stopped in one day after deciding NOT to go to NYPD. \nThey were next door, and we thought lets try something new. We have been there 3 times since. You sit, and the food comes by and you just grab what you want off the rotating bar. ITS GREAT! Especially if you can not decide what you want until seeing it. We ate like King and Queen for $20.00.\n\nThey have simple pricing, and it is affordable for a date or family.", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W5Pd_GmMem2LdHZkoxQCtw", "review_id": "4vvdwQyS5uCSo74iw81irw", "stars": 1, "date": "2010-02-11", "text": "I'd have to disagree with the person who said this restaurant is dog friendly. I was told off by the owner because I had a little dog outside table and that was right after I finished paying for an overpriced breakfast dish and coffee. I went here before that on several occasions and many times my order was forgotten, after paying....and the staff is real unprofessional blasting music at nightclub volume at early breakfast and lunch times. I'm a neighbor, but will never go here again!!!!", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q1i41qr-zNBDj42dhB16Ww", "review_id": "-E230CTjTphOKzr0P2BDxg", "stars": 4, "date": "2012-12-09", "text": "I love their boneless wings! They also have a good burger, but I wouldnt recommend their chimichanga. Good beer and good service.", "type": "review", "business_id": "xmjv8g356v8Qo55ICjG8rg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EQ2pm01gowMVsFzjXtWOGQ", "review_id": "L7tMXkVoYKILEv3d7fftVw", "stars": 5, "date": "2012-11-19", "text": "I have been going to Tish's studio for years now! When it comes to choosing a studio to practice at, the environment and the instructors are crucially important. Hegel Yoga provides an incredible atmosphere to practice yoga, and the variety of classes available leaves little to be desired!\n\nGreat energy, great instructors, great studio.", "type": "review", "business_id": "d7_jkx0VPx3uHsUl18iHMQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "KLke3fXGe0lWgBvgWEHygw", "stars": 4, "date": "2010-04-11", "text": "Time flies when you're having fun...\nIt's been almost a full year since my initial review of Bacon, and I've been back probably ten times or more.\n\nI've seen a lot of transition with the employees but I can say that their service has gotten much better since the beginning. The casual atmosphere is right up my alley for a weekend breakfast, and my yogi omelette / protein pancake orders have stayed consistent too. \n\nI was there earlier today and while the service was spot-on, I did find a piece of ham in my otherwise veggie omelette - but I overlooked it and enjoyed my meal nonetheless...\n\nMy husband has been to Bacon even more than i have, and he told me he recently sampled what's to come on their new lunch menu (think pastrami sandwich). So, go for breakfast, go for lunch, go for a Bloody Mary or a Mimosa... just kick back and enjoy your meal!", "type": "review", "business_id": "BK51tV_XtCm3UHwRVyCuqQ"} +{"votes": {"funny": 4, "useful": 2, "cool": 1}, "user_id": "jQxxHLXLbFsNYNWNdSjRKQ", "review_id": "EHpwtXCYq8uIlxGjdcRfuw", "stars": 5, "date": "2009-06-09", "text": "DUDE..where is the manga....where are the card tables. .....What the heck is this place doing selling comics! This is outrageous! And why are you talking to me and trying to help me comic clerk! Your job is to give me a huge sigh and exasperated look as if I asked you to perform surgery. This being helpful and friendly is really bothering me. You guys are just too weird. I need to go back to Atomic.", "type": "review", "business_id": "y9cQ0DBC0qFNgkpTXHzokA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xYck-XrZR_FUSbVHAEiQVg", "review_id": "qEacLxi02hb_ZJf4Xb-JVw", "stars": 3, "date": "2012-11-15", "text": "Good food, clean, with a friendly helpful staff. Price seems a little high for the caliber of food. Would give it 3.5 stars.", "type": "review", "business_id": "i6FVePCt5MHmXswAL2c2sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "370JyOQfFcPSB9_jk641gA", "review_id": "f_Tcz7mZ6dELW_qNWCrLeQ", "stars": 5, "date": "2012-10-16", "text": "Best happy hour in north Scottsdale! Get there early to beat the crowd. Amazing cuisine and atmosphere.", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "kos4MkM2h0UAdupVDuTziQ", "review_id": "Kco2SmvnlFN5OgdQ2LwCoQ", "stars": 4, "date": "2007-05-03", "text": "I have gone here several times and have tried the pizza, subs and the calzones. I have not had anything there that I did not like and the only reason I don't give this five stars is because everytime I am in there it seems a large group with lots of young kids has just sat down (or come to run around me while I try to eat) at the same time as my date and I. I admit, I wish restaurants had sections for families so that those who do not like watching kids run around or spitting food out of their mouths on to the table could eat in peace, but that is just me and that is why I have dogs and not children.\n\nAnyway, this place has awesome food, good service and if you can handle large groups of families then I highly recommend you take the drive out here to give it a try.", "type": "review", "business_id": "a9Wk44qJLWoJQT-_H8MB-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "89H9-Ius_EWMhAQ4zZuvOw", "review_id": "tJ40zwu59uXmTh_PmWg7-g", "stars": 5, "date": "2012-08-07", "text": "Love this lake. Went paddle boarding a few weeks back here and had the best time. Lake water is so clean you can almost see the bottom. Highly recommend this lake if you love water sports and fishing :)", "type": "review", "business_id": "sv8tYgFzIRKHHERURumyVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6o_ztIbYH6H8hY76pH0L7w", "review_id": "qhri1v7dF3tHHbPLLUbxIQ", "stars": 5, "date": "2010-04-12", "text": "This gym is great... I joined because it opened only about 3 minutes away from my house. I keep going back because every person who works there is so nice and greets you with a smile and a friendly hello. It is not intimidating at all, which is a big step up from the LA Fitness that I used to go to. The staff gets to know you by name and most of the other members are quite friendly as well. The gym is open enough that you can do free weights on your own without bumping into anyone and there are always plenty of cardio machines available. I've been going there for over a year and plan to continue doing so!", "type": "review", "business_id": "LaHyoyMfcyPJmdeHmGo9lw"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "fkZ_t7co7VxO2jPI9bD5bg", "review_id": "_Vgu_sOtO34R6YyVtkn_HA", "stars": 2, "date": "2008-07-24", "text": "Oh god.. I use to love this place its the closest store to me, and I have my safeway card so I'm good to go.. place is a mess. \n\nFirst the parking lot.. too small for the amount of things going on at this complex, I am shocked that there isn't a daily accident in the parking lot. People are impatient, driving down the middle of the rows instead of one sides.. I just got back from there and I was making my exit and three cars tried to go for my parking spot created a jumble mess, so much so I had to pull back in the spot so they could move.. ugh. \n\nInside the story, they seem to always always be stocking and never seem to be stocked.. When I go I can never fully complete my shopping list, there is always something not stocked so I have to come back or just go with out it.. But today took the cake.. Its just after one in the afternoon, every single row there was at least one person stock, blocking half of the row.. its 1pm! Usually by 1, stores are stocked up, maybe one or two things to go.. \n\nThere was also a cockroach.. and not to sound snobby but the type of people that tend to go to this on, I feel I need to carry mace or have a buddy.. \n\nSo I may go back for quick in and out shopping, but for big shopping trips I'll drive out of my to somewhere else.. even with the gas prices..", "type": "review", "business_id": "7Z7IkR_-94AjUuDw0fbI7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P1XofswxyEb90r2bVN4LJw", "review_id": "LaxqD3cR2nIJAQoqVS_j4g", "stars": 4, "date": "2011-03-14", "text": "Okay so the only reason I'm giving Rigoberto's 4 out of 5 stars is because I'm currently on a diet and it's not diet friendly. So I'll write the rest of the review based on my pre-diet dining. \n\nThis place is some serious mexican food. Not the fancy stuff, the good, mexican-at-home style. It's good at 6am, lunch, dinner, midnight, and even the 2am drunk-I'm-hungry meal. I have three favorites here.\n\n1. Bean and cheese burrito w/sour cream - the beans are refried with good ol' grease. It's delicious and the cheese is legit cheddar.\n\n2. Super Nachos - I don't understand how you can not finish this one. They give you a ridiculous amount of chips with a mexican buffet on top, but once you get the hot sauce on it, you can't stop.\n\n3. Carne Asada burrito, no pico, with sour cream and Guacamole - Cooked fresh on the grill and wrapped in the biggest tastiest flour tortilla. They even will sell you the tortillas by themselves if you ask. \n\nEnjoy!", "type": "review", "business_id": "Lfn_7TNBPNu9c2v_d2nE4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "7t7DjEMt8w1xltTqpDtuNg", "review_id": "hPnOsZw09pvp7NuQ1reN5Q", "stars": 5, "date": "2012-01-04", "text": "All I have to say is get the California Club. I live in the East Coast and I still crave for the sandwich. I wish I had the chance to try other things on the menu. The drive-thru concept is pretty neat, but there was a bit of a wait. Guess you can't rush perfection.", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 5, "useful": 12, "cool": 10}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "uMQ4juin9OVWjvOnLn--NA", "stars": 4, "date": "2009-05-05", "text": "Someone asked the question in the Yelp talk threads where the best place was for fried things, like french fries and onion rings. Several people said Ted's had great onion rings......so off I went! \n\nI expected a smaller place but I was pleasantly suprised when I pulled up to a medium sized store. I was greated with a smile and asked what I would like. It was a Sunday afternoon so they were not very busy. I liked the fact that you tell them what you want and they toss it on the grill right in front of you. Everything is freshly cooked. They did the same with the onion rings and french fries too. Everything was fresh and hot. My daughter had her favorite....a hot dog, which she loved, and fries which were fresh and crisp. I had a burger and onion rings. Yes, the onion rings were delicious! The batter was great and the onions were a little on the sweet side. My burger was cooked to perfection. \n\nThis is another great little place we will go back to. It's also sort of near my work so maybe I'll get out one day and go here for lunch. Thanks Ted's and Yelpers!", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YIiQx-XtRVKWVQ4LCaEuLA", "review_id": "Zb3bRkJp4JzN1E7fL26xjg", "stars": 2, "date": "2012-06-02", "text": "Way over priced. They replaced the valve below my toilet, the float in the tank and the small water line going from the toilet to the new valve. It took them less than 30 minutes and my bill was just over $400. I priced all the parts at a plumbing shop and it came out to $35, and thats my retail price!! They also charged me $69 just to show up at my house. The plumber was knowledgeable I will give them that and if you really want to use these guys try and get a quote over the phone first.", "type": "review", "business_id": "nMm5NomMHQgWHAtmvVCHlw"} +{"votes": {"funny": 9, "useful": 11, "cool": 10}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "PuLN4Y3O8L3OazUDu7Iu4g", "stars": 4, "date": "2007-07-06", "text": "I'm a little bit country. I'm a little bit rock n roll...thank you Donny and Marie. Pinnacle Peak General Store is all country baby. 100% U.S. grade countrilicous! Well, ok, it's in North Scottsdale so it's got a pretty yuppified clientele. Part gas station, convienence store, cafe and post office....this is the cutest place ever. Was kinda my morning hang when I lived at DCRanch. Cup o joe, and the #1 Breakfast with 1 pancake, 2 eggs and bacon. I'm tellin' ya...it's good. Hard to screw up bacon and eggs so I'll rave about my pcake...a bit crispy around the edges and full of buttermilk flavor. Syrup is heated just right and comes in a squeeze bottle the waitress pulls out of her apron pocket. Is that a squeeze bottle of syrup in your apron or are you just happy to see me? Coffee is sturdy and aromatic...like my lesbian cousin Rita. I haven't eaten off the lunch menu...to me it's all about breakfast. My friends have ordered and enjoyed canteloupe with cottage cheese and some kind of omelette which escapes me now, cuz, frankly, I'm not a big fan of the omelette. Childhood trauma and I can't go into it now. The funniest thing about this place are the copper pots and other bric a brac hanging from the rafters that are all for sale. Some of the pots are like $100! OMG....They also have a gas pump that's like $5,000...I guess that's where North Scottsdale meets the country general store. So hitch up the wagon and skeedaddle on up to the Pinnacle Peak General Store. Tell 'em Thomas sent ya", "type": "review", "business_id": "AyvyWENKpPBOFnFFkZuAyQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fy64dq8l5iHNZ3cpYShjng", "review_id": "LZ5kntM1-goTrwBSs9U7-g", "stars": 5, "date": "2012-03-15", "text": "This is the BEST hit or miss bargain spot for everything. I frequently find great deals on quality body care products (be sure you know how to read the labels, there's a lot of low quality products in the mix), designer sun glasses, shoes, clothing, housewares, baby shower gifts, pet gifts, and guy gifts. It seems I go at peak hours, where lines are incredibly long. I see it as a small price for Macy's quality at a Walmart price.", "type": "review", "business_id": "yLJeaZrH826Udsh_G8ZP2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "aCEIROtbwx0Tdl3LPqSwUg", "review_id": "QvfMLI7O9FVg5GbcoJormA", "stars": 5, "date": "2009-08-19", "text": "A prospective customer at Sakana must check out the Customer Appreciation Sushi Roll menu before ordering from the \"main\" menu. Customer Appreciation rolls are the full size rolls at most Japanese restaurants in California and tastes just as good if not better.\n\n$7 for 5 large cuts of Hamachi sashimi. Add $2 for a bowl of sushi rice and you will be in sashimi heaven. The Ikura at this restaurant are the best I have ever tasted anywhere.\n\nBeers for as afforadable as $3.25. Sodas with free refills for $1.95.\n\nCan you find this quality at these prices in Scottsdale? I didn't think so!", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cZbpUFLE2A6DOEglucSMWw", "review_id": "DoZ5B3tIhv_kCUXavlvGGg", "stars": 4, "date": "2010-05-18", "text": "Recommended by the hotel I was staying at, this place rocks! Open seating and fantastic food... perfect set up! I had the Hot Chick, which was a perfect grilled chicken sandwich with arugula, roasted tomato and smoked mozzarella served with spicy avocado spread on ciabatta bread. Topped that off with their sweet potato fries and you will be in heaven!", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "clTYUJCL-rHnVIS2WePRwA", "review_id": "EQu1fQG8Qd9QJ5Jw4-u90A", "stars": 5, "date": "2008-03-25", "text": "Ted's rules. Great char-grilled hot dogs, killer onion rings, and a great atmosphere all add up to a good old dog-eatin' experience.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xDB5RW_smkOT39BY2SEchg", "review_id": "ej_e4nAPqFtbUfHPoXjoBQ", "stars": 2, "date": "2012-03-13", "text": "I just moved to the area so use Yelp but was very sad that the experience here was not worth making a return visit. The only reason I am posting is because it has not been reviewed in so long. \n\nI did not like how the spa pedicure was one price and then things you would expect in a spa pedicure was \"upgrades\". I want to ask for a pedicure and then lay back enjoy the chair and some reading. \n\nAfter the pedicure, the woman left me in the chair for my nails to dry and think she completely forgot about me! I would have left if she had put my flip flops on before painting my nails. \n\nTheir child was cute, but I do not go to get a pedicure to play games with other peoples children. \n\nThen to top it off, when I paid she asked for my pin as she was walking away (again)....no pin, it was a credit card....usually this would not bother me but I was already frustrated at this point.", "type": "review", "business_id": "BeFfCEwVRn9tDlqsiD6jvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qgisS_mAaeipEH5kxL2qGQ", "review_id": "M6Y_nw3iEluIzTTbMzCeWw", "stars": 2, "date": "2012-08-31", "text": "2 stars all because the hot sauce sucks now. 2 stars: 1 for a Buckeye Icon and 1 for most of the food is not bad. \nService is bad and slow. Servers are not trained in good service skills. Dirt parking lot sucks, be carefull not fall into one of the holes.\nHope you are not handicapted and have to use the bathroom.....it's outside and to the left, suprised the Building department OK'd this place.", "type": "review", "business_id": "7KCLeDNdFDkdoA6MUavxwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "2KyJLMY3jmASmwtnmlBuvw", "review_id": "o-d96DiKIKvMjLOAGe_UJQ", "stars": 1, "date": "2007-03-02", "text": "I'll be charitable - this place sucks!\n\nI went there because a friend had *exactly* the piece of furniture I needed and he got his from Ikea. After wandering around the store forever, I finally found the right department.\n\nThe people working there were cold. uncaring. not helpful. no concept of customer service. I left in disgust!\n\nCouple of days later, I was in Cost Plus World Market @ 18th St. & Camelback. Voila! I fould what I wanted - for close to the same price. the BIG difference: Warm smiles, friendly people, volunteered to go out of their way to help me. Felt like I was among long-time friends! They even delivered when they said they would.\n\nAnd, no need to drive half way to tucson and back!\n\nIkea? Don't be foolish. Cost Plus? Now, there's a place that earned my repeat business!", "type": "review", "business_id": "WUZxVr_CaRqEQgzvyeK5tw"} +{"votes": {"funny": 0, "useful": 76, "cool": 77}, "user_id": "73eZuIuXVD5sif7GrIMfuQ", "review_id": "1kc50TqtMsIHDGR8yQgF8g", "stars": 5, "date": "2011-10-03", "text": "Love this place! Amazing Happy Hour Specials!!", "type": "review", "business_id": "gqLWBFxOKag8dXwVxEvTrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4mr5Ys9VKe87c_kgpRbQ0Q", "review_id": "g2aCQ84DUNbhZjk1CCMCWA", "stars": 4, "date": "2011-03-24", "text": "Pretty yum! Some friends and i decided to bike here last Saturday afternoon and this was one of the places we ventured! I only had the drunken geisha during happy hour and it was delicious! Others grabbed some food and i didn't hear any complaints. Our server was awesome and even put our last round of drinks on \"hold\" for Happy hour pricing, which was extremely kind of her! Nice patio, and great happy hour prices.\n\nP.S. i would not come here during regular pricing hours.", "type": "review", "business_id": "BL3SqCfSJuDTNDR9_b9NdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "V1k7XMUX4qHVUi-3IUYzhA", "review_id": "ehB-hp-aOwcpk_9d9M4RTw", "stars": 4, "date": "2009-04-20", "text": "I give Riva's 4 stars because of the secret top burrito in town which is the California burrito and have them put a chilli relleno in the burrito which is the best of all worlds. So basically this burrito consists of carne asada, potatoes, pico de gallo, cheese and a chilli relleno all wrapped up in a delicious tortilla. Once you add some hot sauce to that it equals one of the best burritos in town. I learned of this only because of one of the employees telling me to get it this way because all the people that work there eat it this way. You have to try it!", "type": "review", "business_id": "vSEFzop2GDXsIWTLxIGMiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1diI7PX0AxbbtiUB7nPbuQ", "review_id": "trszp57AKwKd3LnSidU3aQ", "stars": 4, "date": "2010-11-14", "text": "Nice people, great food. A really nice white linen place. Loved the chicken karachi, naan, samosas, chicken pakora. Wife had a lovely red, I had a nice premium margarita.", "type": "review", "business_id": "49RRQ0nE8XugVuvowiVv2g"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "3WyS2BN2QWzUi-VuPk8kFA", "review_id": "gC2iatP_SR0iclkCRXTLjw", "stars": 4, "date": "2007-11-12", "text": "What an incredible little hidden gem! I have lived here for 10 years and been to Richardson's a number of times, but I never even knew that Dick's Hideaway was around the corner hidden away behind those beautiful bougainvillea's. The dcor was warm and woody with a very nice rustic feel. This little place has the all the charm of the guys working inside. As cozy as it was, I immediately felt like I just walked into that place 'where everybody knows your name'. My friend's and I met for breakfast. High top wooden rustic table or belly up to the bar? Very comfortable, either way. I was expecting the typical two egg breakfast, but to my delightful surprise, they have their own spin on breakfast. Not sure if any of you had been to Richardson's (same owner AND same owner as Rokerij), but I swear they have the best red sauce on the planet. I had 2 eggs, over medium, next to some rancho beans topped with a little bit of cheese, and some breakfast potatoes, ALL on top of a fresh flour tortilla. The best part? My eggs and beans were topped with their famous red sauce. OH YEAH. We were in heaven. I think we have been there once a week ever since. Highly recommended! A +++", "type": "review", "business_id": "9BJ5h9X1krpXFjKj0a6wbg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ngU1vdwjT2lGOsdTq1JK5A", "review_id": "IwujucKW_I4Hd-D47N3jWQ", "stars": 5, "date": "2012-08-09", "text": "Perfect place for a hot summer day. Amazing paletas! Friendly staff and fresh ingredients. Welcoming environment in downtown Chandler.", "type": "review", "business_id": "_TekkyyFeX_8MBepPIxuTg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "g2ihR0ZFKCEnKB7YPviuJQ", "review_id": "tMI1PZPk6WzZjhUmY3RCMw", "stars": 5, "date": "2010-08-16", "text": "This is by far my favourite department store, hands down. I have had nothing but perfect experiences in this store, without exception, no matter what department I'm in. The shoe SA's will bend over backwards to help you find a specific shoe, and the staff will even go so far as to send out hand-written thank you cards to your home address after you make a purchase - big or small. Tim & Anthony in the shoe salon are fabulous beyond words! \n\nI am not completely sure that I understand why people complain about the amount of merchandise on the floor or the lack of crowds in this store. Frankly, I would rather not be bombarded with merchandise and other people. One of the things I love the most about Barney's is not only the prompt attention of SA's, but the fact that they aren't rushing around trying to help 35 people at once. The SA's at Barney's are incredibly friendly and will stop to have an actual conversation, regardless or whether you are purchasing something or not. I have also never experienced a \"high pressure\" sale situation here.\n\nAll in all, Barneys is pricey, and there is no getting around it. But, um, so is Neiman's and that place is a crock. Anywhere that ONLY accepts American Express or their charge card and then treats you like scum if you aren't carrying neither is no place that I want to spend my hard earned dollars. Yay Barneys!", "type": "review", "business_id": "gMMAz-WbNpl_825lWbMnkw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "51-53fVvMVBTwQQaUZSozg", "review_id": "3CtI_7Pset9_IqD49kkYog", "stars": 4, "date": "2010-06-30", "text": "Eaten here a few times (7th street-Coronado district). I can say the place is small but has a cozy feel to it. It's an old converted house to restaurant. \n\nThe food is a little pricey considering the portions are not huge (like Filiberto's or Carolina's (Extra Yummy). But the food was decent. \n\nI've eaten the Vampiro, Carne Asada Burrito, Chips n Guac/Salsa, and America's corn (yummy!!). My eyes are always bigger than my stomach :). I will say that the last time I did get the corn, it was a little under-cooked. So it was a little harder to chew...but regardless, it was still good. Smothered with mayo, butter, and cojita cheese I think...how can you go wrong with all of that yummy-ness!!\n\nI would visit this place again, if I am down in that area. They also allow you to order online which I think is cool because that line gets very long very quick.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2-xLV_tit_LV75rYOPdtYw", "review_id": "EDw6iljkLMSePlIPYo_D0A", "stars": 5, "date": "2012-02-10", "text": "Guacamole was best I've had!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "V3_anXw_FidnGWa1hqQV2g", "stars": 4, "date": "2008-07-02", "text": "So I e-mailed East Maryland the same afternoon as my visit, explaining that I was disappointed that the coupon I had given them was not honored, and they e-mailed me back before the end of the day, apologizing and letting me know that my Visa would be credited the amount of the coupon. \n\nThen they called today to see how the boys were all doing after their shots, and acknowledged the bill issue again, and hoped that everything had been settled to my satisfaction.\n\nThis kind of immediate and friendly follow-up redeemed them and gained them another star.", "type": "review", "business_id": "jUQpIF_bhhF_XQqScrt5yg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ITBs8txD0Zu-YuxXCGqokA", "review_id": "TDgU176i8wejwZ-tBQLrxA", "stars": 5, "date": "2011-09-04", "text": "Love Bakers. I live in Glendale an it is worth the drive to go see them. They know their stuff and am always pleased with my purchases.", "type": "review", "business_id": "7p0OI2Ld46-EzJkRHGQEJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e-89w7FUWyUKgAELA75E3w", "review_id": "lfP-h9GlmgqqAlqcPgvXhQ", "stars": 5, "date": "2012-11-25", "text": "Excellent.", "type": "review", "business_id": "iV7D7fHKb-bF9fCL_bEMtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kE2Dw1sKMeaDOpyZNVQKJQ", "review_id": "gGc-oCOCbqn1qiP5lCmtvw", "stars": 2, "date": "2012-10-20", "text": "Food is always great! Tootsy Maki is always awesome. The music is always great. But the service... The service could be so much better. I came here with my daugther, sister, and some co-workers. I had surgery that restricted me to a certain type of drink. The waiter said I had to throw my drink away do to health code. I was fine with that so I put my bottle in my purse. I asked for water so I could add my protein powder in the water provided. I was mid way finished with my drink and instead of her asking could she refill she reached across the table and refilled my protein powdered water with lemon water. WTF? Also the booth we were in smelled funky, like dish water... eeek! I will still come for the Tootsy Makie and Tempura Shrimp but I will make sure I always sit outside.", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "HW7FkQO5C-Ln3koaN9adDQ", "stars": 4, "date": "2012-01-12", "text": "Truly don't appreciate the pathetic TEASE they have by naming this place with initials, yet refusing to tell us what they actually mean. If there isn't a clear meaning, then you're lame for having a name like this. Please, drop the act.\n\nThey don't brew their own beers as of now. They're contracted out by someone else (Grand Canyon I think, which doesn't have a good reputation for award winning beers).\n\nLarge tap selection, but sadly it is heavily skewed heavily towards Arizona beers which are not exactly highly rated, nor sought after by those really into great craft beer. Luckily they still have some of the better regional beers from California & Colorado (among others) on tap as well.\n\nFood is extremely high in price, excluding happy hour. Maybe they'll do better than the failed German places in this location before it.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "HDu0xxgrcsU8acetpFXwzA", "review_id": "oJ3ABX0TfGrWnG_QMowz4Q", "stars": 3, "date": "2010-02-27", "text": "3 stars is being generous.\n\nWent to Tesoro tonight with my husband and two teenagers based on the glowing yelp reviews. It is a very small restaurant, 9 - 10 tables with a small waiting area out in front, facing the strip mall parking lot. We had a reservation for 7:30. Arrived on time and were apologetically told that our table was not yet ready. Had to wait out front for 20 minutes shivering.\n\nAfter we were seated, drink, wine, and appetizer orders taken, we relaxed and began to settle in. Problem was, it is a very loud room. Conversation was a challenge. Looking around, we realized that we were the youngest table in the room. Average age appeared to be 60+ years old. Oh, well, young and hip it is not. Hopefully the food is good. Bruschetta and antipasto were tasty. For entrees, we ordered the homemade Fettuccine Bolognese, Spaghetti al Pomodoro, the Chicken Saltimbocca and a special, Farfalle with shrimp and asparagus. Flavors were good, not great, but none of the pasta was homemade. Very much a disappointment.\n\nOn the upside, service was very attentive and friendly. Unfortunately, food is only mediocre, and the strip mall location is a definite detraction in size and ambiance. Would I return again? No.", "type": "review", "business_id": "UVEnZjATEGkKLFdzV_dTvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hm8mxRyPSQqTPq0JVWNSpw", "review_id": "Kw3g_nAZEW3bsKxW_bC1aA", "stars": 5, "date": "2012-11-17", "text": "Terrific food and service. Happy hour from 3-6 is totally worth it for the free children's meals and half price drinks. The french onion burger is delicious!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "dc3XOXCmEwhdjKwVSiEaPw", "review_id": "11ynKWMTn639vhilKeNfEw", "stars": 4, "date": "2012-01-29", "text": "It seems to be a constant challenge to find a bar and restaurant in the east valley that is not only NOT a chain but that also has a great atmosphere, an attentive wait staff, a fabulous wine list, and a unique food selection (without being too out of the ordinary). Vintage 95 has all of these! Not to mention how refreshing it was to deal with a hostess, Jocelyn, that wasn't 16 years old and actually knew what she was doing! When we were seated our waitress, Emily was friendly, knowledgeable, attentive, and never rushed us. The wine list is extensive, however, I think they should add more low range wines in the $25-$35 range to their list. The warm and cozy decor of the place makes you want to stay and eat and drink for hours. The outdoor patio in the back has a great fire pit and romantic lighting. I HIGHLY suggest making a reservation or you could be waiting a long time for a table. There was a problem with one of our entrees and the manager took care of it immediately. I look forward to my next visit to Vintage 95.", "type": "review", "business_id": "FCcFT610nQBVcRdY-devQA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rK9w3-3GJqnerxejMCbLLg", "review_id": "60Tt5o4gk9FxKzB4yacVbQ", "stars": 2, "date": "2012-01-14", "text": "I rarely disagree with the average yelp ratings... I tried Blue Adobe based on great reviews but was greatly disappointed.\n\nI really can't find a redeeming quality about the night... I had their \"killer margarita\" which is a cheaper house margarita, it was lousy, i was a bartender for some time myself, there is no reason to make a margarita that bad, you can do better, especially here in AZ we are a mecca of citrus!\n\nThe bean and cheese dip appetizer was uninspired, nothing special... I saw lobster tamales on the menu and couldn't get past them, i could not think of a way that someone could make a tamale with lobster and make it well, so i was really excited to see how they do it... poorly was how they did it, lobster was over cooked there was very little of it in the tamale and the biggest issue was exactly what i thought it would be, the corn masa just overpowered the little lobster that was in the tamale... they could have put imitation crab in there and saved them self a bunch of money and it would taste the same... it just doesn't work! There was a raspberry chipotle sauce on the side that was very good, but again this too took away from the whole point of the dish: the lobster. \n\ntried a chimmichunga, whatever, not special. \n\nservice was no good, our waitress was very frantic, I felt like i was a burden or a bother to her (and no, I'm not. I've spent years in food service, makes you very kind to your server)\n\nIt seems like snow birds keep this place in business, the restaurant was full of them... they must forget what their experience was like over the summers...", "type": "review", "business_id": "qNoNkF1yJctEs3t40VkX4w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "pvMePbPNRThg5-yb-GvLyQ", "stars": 2, "date": "2009-03-16", "text": "Years ago when I lived in Berkeley, California, this was THE place to buy camp gear and outdoors stuff. Now, there's competition, and I don't shop here any more. Why... Prices. Yes, they have a lot of stuff here, and their employees are very knowledgeable. But, I can get the same stuff cheaper elsewhere, and its also a lot more fun to check out gear at Bass Pro or Cabelas! I don't buy into the whole co-op thing either- Prices are still too high for me.", "type": "review", "business_id": "vNQn_2P3lJh_-uBhRuSc3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gBTEAlR4UdxiVOF_3oui0A", "review_id": "3-gf8Z8qZ-qzok4fEwq_Hw", "stars": 5, "date": "2012-01-28", "text": "Some of the best pizza I've ever had. The sauce is amazing. Every time I'm in town I get the sausage and pepperoni with extra sauce.\n\nThere's nothing else to say, really. Go here for good pizza.", "type": "review", "business_id": "QbqJEXdngh_9fwqVTI0CJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KA-GVrDP0huPS7zs5tmS1Q", "review_id": "KDx1RJ_SaK75KF4mIvHc5w", "stars": 4, "date": "2012-01-18", "text": "I love love love St. Francis!!! The food is very delicious and the staff very attentive! Our party was never dry on drinks, we had bread brought to us.\n\nMy only nag is the seating...very cool the way the set up is of the restaurant...but i really didn't like have my back being brushed up against by a complete stranger...i got a little claustraphobic. But other than that, i love it! I'd prefer the patio seating next time i go:)", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VO_L_lbT7v6ni0El2Tp1ng", "review_id": "3EefslA0RHT9gVyePIZ3Ow", "stars": 5, "date": "2011-05-18", "text": "Great Pizza. Great Service.\n\nWe've been here a few times since it opened. And always look forward to going. We have never had a bad experience. Each time has been great. Our waiter Dave was perfect, always on the ball.", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TVL1e0NHhxAE6PpeXGfTOA", "review_id": "yxRrRKfcfHkZll32Ts-BCw", "stars": 1, "date": "2011-11-04", "text": "I just had a pretty unfortunate experience at Bison Witches in Tempe. I remember liking this place when I went to ASU but not anymore! It literally (no exaggeration) took 1.5 hours for our lunch, which was 3 people eating soups and sandwiches. Our order took 45 minutes to arrive at our table (again, soup and sandwiches!), and several tables around us that had come in AFTER us, got food before us. I normally am pretty easy going about stuff like this, but the server and a guy that appeared to be a manager/owner didn't even acknowledge the long wait time, no apology, nothing. They weren't even that busy! Our server barely even spoke to us when she came to the table, and acted like we were inconveniencing her. I also saw her roll her eyes at another one of her tables as they got up to leave. What kind of service is that!? I wish I could say the food was any saving grace, but it wasn't. Mediocre soup in a bread bowl, less than mediocre turkey on a bland sandwich. I will NOT be going back, there's no point! Save your time and money and hit up another one of the tasty places on Mill Ave. Trust me, you'll be better off!", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zGz5NI4sscO4_6YYH-qVtA", "review_id": "V1Fln_9ExGbglhYfn3isPw", "stars": 5, "date": "2012-12-06", "text": "DECEMBER 2012:They still have the ANGRY WHOPPER!!!!!\nBest whopper EVER.\nMine goes no lettuce, heavy onion, heavy tomato, and BBQ sauce on the bottom bun.\nIt's THICK.\n\n55 year anniversary --- second whopper 55 cents!\nDEAL!!!\n\nReally, have you ever had a BAD whopper? :)", "type": "review", "business_id": "dhk7wnnmWP3Fr9rj9p39dw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gM0sIR19KRNp7Rl5KK1mZg", "review_id": "bhGUG6-Of6O-1ONfUuvcvQ", "stars": 3, "date": "2012-10-26", "text": "I've been coming here for a little over a year and I can't say that I've ever been really all that impressed. \n\nYes, they \"hand wash\" your car but I feel like that's the only pro on the actual cleaning of my car. I've never really been happy with the vacuuming, not sure that they really do anything other than the mats. When I get in my car all the old fuzz and hair is still on the seats. The last 2 times I've been there they've missed cleaning parts of my car and I have to say something. The last time they cleaned 3 out of 4 of my tires, even a stranger commented to me about how he found it odd they missed it. Also, asked for air freshener and when I got in my car it still smelled like ummm, well it didn't smell fresh and clean. I just left there and again I had to ask them clean the inside door. It was covered in dirt and dead grass, how do you miss that?!? When I called someone over to clean it he then noticed that the wind shield was still dirty. I mean, really?? And again, no air freshener even though I asked for it.\n\nI gave 3 stars instead of 2 because I do appreciate the fact that this is not a chain. I'd rather give my money to a family owned spot instead of some corporate junk. The tall, blonde woman who greats you is always very nice and helpful. I like that I'm not hounded about getting my windshield or cracks fixed a million times and sometimes they offer deals on LivingSocial which is great. \n\nOverall I feel like this is a good place to come and just have the surface of your car washed unless you want to pay big bucks to actually see a difference in the inside of your car. Make sure you check your car before leaving to ensure they have actually cleaned everything.", "type": "review", "business_id": "Li5LOL873Ep8HoPRML18sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "lWJt5OVDUqqfX4gRXwVUug", "stars": 5, "date": "2009-09-06", "text": "this was our first breakfast hit-up since we moved back, and gotta say it again....the protein pancakes are still da bomb. so lucious, cruchy yet soft, sweet yet salty, healthy but so much syrup...mmmm! go at an off time or you'll be knocking elbows with the elderly.", "type": "review", "business_id": "zruUQvFySeXyEd7_rQixBg"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "MqKtiMUnd1CdvNKUIlNspA", "review_id": "1liuCe8NFn4G1pQCoXe-fA", "stars": 5, "date": "2008-09-15", "text": "AWESOME!!! \n\nI love this place! I am from Seattle and I've been struggling to find a good pho restaurant since moving out here. Khai Hoan reminds me of some of the restaurants I used to go to back home. I love hole-in-the-wall family restaurants like this one. No fuss, no frills. Just good food and fast service.We were greeted, seated, ordered and got our appetizer in 10 minutes. Food was delicious!!! Definitely go here!", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 2, "useful": 5, "cool": 1}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "Z6A9dBAZG1aBm2OCCphJLg", "stars": 2, "date": "2010-11-18", "text": "It's cute. It's homey. However...\n\nYou close at 6pm on a Wednesday night \n+\nYou were going to charge me 50 cents to process my debit card\n=\nI left with one drink and won't be back\n\n\n\nToo bad too since my best friend lives around the corner. We would have lived here ...", "type": "review", "business_id": "Mb46iSlA4qmTwXf-WrqtQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "7kRN8IkOWlLblEltNlnfRQ", "review_id": "6EDCixSnNJCoKqhjp1p8lw", "stars": 4, "date": "2008-01-14", "text": "This place has great food - some of the best \"bar\" food around. But you really go for the beer. It's a brewery, right? \n\nI haven't tried a beer I didn't like here. There should be one that fits your taste, even if you're not a big beer drinker. The prices are reasonable and even better during happy hour which has two convenient times during the day (regular and reverse). If you're unfamiliar with the beer choices try a sampler and then grab a pint of your favorite!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CrOoT6cjYJfIAVaxCUEaXg", "review_id": "eRCQPBqtEDRcMCi6ZKtcFg", "stars": 4, "date": "2012-07-17", "text": "Just had a couple beers and some appetizers since it was late.\n\nThe rock bottom ipa is a fairly decent ipa compared to the numerous I have tasted. Just had the one beer though so can't speak to the rest of there drafts.\n\nThe chicken quesadilla and the ahi appetizers were very good. The ahi was a sushi type appetizer with a soy based sauce, garnish, and chop sticks. The quesadilla was good and I had no complaints about it. Service was good for a Sunday night and they are open late. Kitchen closes about 11 though. \n\nI will be coming back.", "type": "review", "business_id": "m34siNIv_F15LIzkmxP7-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Iq_2tq-f_NyhcAa6Yim-fA", "review_id": "HWpeQV8xJ-WBrSUQfDKfog", "stars": 3, "date": "2012-06-23", "text": "They have on campus night classes for MBA students, which works out well for people looking to continue their education. Some teachers care, others just use it for the pay check. The accounting classes have been great, some of the others have been terrible. There is a ton of counselor turnover, but they put too much stress on those people for the amount of work they do. If your employer will pay for it, an MBA on the resume can help a bit. At least they are quick to provide information on their programs and admissions process, unlike ASU who just want you to pay the application fee.", "type": "review", "business_id": "da4sxvGynhpDOGiBtbMYxA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "q-g75q4Xl-_ODWSuyugwAQ", "review_id": "cxoH2luKdFD76UCkjdKlJQ", "stars": 5, "date": "2009-02-25", "text": "I had a facial with Jennifer and it was fantastic! She used all proper techniques and overall it was a very relaxing and wonderful experience. Would definitely recommend this spa for anyone living or vacationing in the area.", "type": "review", "business_id": "QGFdc1xfKIX0BOZO1mKTuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "bK2A0OKfyDtrOzk_cdESew", "stars": 3, "date": "2010-02-06", "text": "Pretty good coffee. Nothing special but better than starbucks by far.", "type": "review", "business_id": "iwzHQ7aBPrxKybarW5q5TA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "o2CGc1kQHEFkYOECM3NFdg", "review_id": "vLYR6S8agEOkOfE0L4xVXg", "stars": 3, "date": "2012-06-18", "text": "Perhaps if I waited outside in the heat for an hour plus to the point that I became starved and dehydrated, I too would have thought Matt's was worthy of 5 stars. Or maybe the 5 star reviews come from people too ashamed to admit that they wasted most of their morning on a very average breakfast.\n\nIn my case, we came here before 7am on a Friday and got the last available seats by the window. Service was great; I didn't detect any attitudes from the waitstaff that has been mentioned in some reviews. They got our meal out quickly and made sure our coffee mugs never got empty.\n\nWith the exception of the toast and jam, the food never rose above \"good.\" Isn't that pretty sad that the best offering from a breakfast diner is the bread? I liked my waffle since it was a bit crisper than what I can do at home with my geriatric waffle iron, but there was nothing noteworthy about the flavor. My husband said his eggs were cooked perfectly with his chop and chick dish, but the pork chop was under-seasoned. He found the hashbrowns way too greasy to be enjoyable, and the bacon suffered from being overcooked.\n\nMaybe we're spoiled since we have two great breakfast places within walking distance (Joe's Farm Grill and the Coffee Shop). Matt's just isn't worth the drive or wait.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7u3eL3IodZLq4a1ORGJmrQ", "review_id": "0myOXJI9m2gKPkxF7A7JTg", "stars": 3, "date": "2012-05-20", "text": "First time there the other night. Friday night, not very crowded for 7:30pm. We were shown to a table in what looked like a back room - the table was not set, there was just a tablecloth and that was it. The room is to the right as you walk in. There were only 2 other tables in there and the windows were covered (no view) - it was weird so I immediately asked to be seated in the main part of the restaurant. Decor seemed 'cheap' - just my initial impression. Food was pretty good. Pancetta wrapped shrimp app was good; Service was good. Entrees were pretty good - Chicken Parm, Fettucine Bolognese all tasty, but not sure I would go back. Caesar salad was a bit disappointing...asked for anchovies on the side - never delivered.", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zpFyNx7UId-nFl-FUAlOGQ", "review_id": "M55Sei3wMVobnGQESnpTVw", "stars": 5, "date": "2012-03-26", "text": "Yum, yum, yum. \n\nI have put this in my regular rotation for every time I'm in Gilbert. They have great sandwiches, sides, and burgers and for the most part we have had some fantastic service (my friend has had one or two iffy experiences but mine have all been great)... this past weekend I had one of their burgers of the week which had some white wine grilled onions with Gruyere cheese and it was KILLER, probably my fave burger I've had there. I've also tried their soups which have been great and their grilled cheese. The Caprese Pasta Salad is so refreshing and a fave side of mine!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "I66DLxK1Nk_JthEShOWKUA", "review_id": "xRW_1aHFX_8NZ1Zo5CLAwA", "stars": 4, "date": "2008-12-02", "text": "Neat!!!!!!!!!!!!!!!!\n\nThis place is like a trip to a non-petting zoo and aquarium and aviary while you dine on fairly decent Mexican food. I was here for a late brunch and didn't wait at all. I was near a window that right on the pond, and just about every turtle in the pond crawled out to come on over and see what the Rock was cooking and how I was enjoying it... no joke, see pic!\n\nThe ducks and geese were very active in the lagoon, showing off for all the diners, and it thrilled the kids to pieces. The guacamole is decent and the 3 types of salsa you're given were all good in their own ways. \n\nIf anything, swing in here for the atmosphere. I bet its awesome at night.", "type": "review", "business_id": "jnzROxEjNkgeo5Ju3F8qzQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "0i8V6-ze_yQ2JlIRev0JUA", "stars": 4, "date": "2012-06-29", "text": "Looking for something refreshing to escape this crazy AZ heat? Rita's may be your answer! I stopped by yesterday with Lindsey F, and was pleasantly surprised by all of the unique flavors of ice and custard to choose from: Swedish Fish? Check! (and it tastes exactly like the candy). Lemonade, Cherry, Mango? Check, Check, Check! I ended up taking home a quart of half lemonade and half cherry. My husband and I dug into it last night.\n\nNext time I'll have to try the custard... or perhaps the Sour Patch Kid flavor that is coming out this week! Mmmm!", "type": "review", "business_id": "xymCilKjW4I64hMIt2TouA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "dwEYcR1Lu9TCcL_QuM5tNQ", "review_id": "JXsiOjFZ-keOuFLTDEHnAg", "stars": 1, "date": "2009-12-30", "text": "Filthy place. Bad tasteless food. Rude waitress. Yuck!!!!", "type": "review", "business_id": "QxEUzbLfCTXF6gHWJegWgw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "4wrWwXn81EKt7ODuq6D1Uw", "review_id": "-EtZp6H9Mee44tQ0ijjFxA", "stars": 5, "date": "2012-05-12", "text": "I love this place!\n\nWe weren't sure what to expect since the restaurant is in an office building plaza. Kinda weird, but the employees in the other businesses are lucky!\n\nWe went in here on a whim after reading all the awesome Yelp reviews. Our first impression was a girl at the front and she was super nice and didn't rush us while we were checking out the menu options.\n\nI ordered the pulled pork sandwich with macaroni & cheese and my husband ordered the brisket sandwich with a side of baked beans. He also ordered a side of ribs to sample. The wait wasn't too bad -- it took about 10 or 15 minutes and it was ready to go. They are cool with their sauce and let you fill up the small plastic cups and take as much as you want of it (which is awesome, because the sauce tastes SO good!). It's a nice, thick sauce and they have several flavors to choose from.\n\nWe go to a nearby area to have a little picnic by ourselves and notice that they forgot to include the side of ribs. We pack everything up and go back to get those. The employees were really nice about it and apologized and gave my husband the side of ribs. We repeat the same process and realize that they also messed up my husband's order and gave him a pulled pork sandwich instead of the brisket sandwich. We decide to let it go and eat our food.\n\nThe pulled pork has great flavor. The meat actually tastes like it has been smoked for several hours and is good enough to eat on its own without any sauce. However, we weren't going that route, because the sauce is too damn good not to eat. The baked beans and macaroni & cheese were not anything special, but they were good. The ribs were our favorite part! We absolutely loved them. Very tender and the sauce they chose to slather them in was delicious.\n\nThis place is pretty far from where we live, but we would definitely go out of our way (again) to eat here more.", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "e_IJkG0zdh-bbKkiwHeXog", "stars": 5, "date": "2011-01-13", "text": "I love the fish tacos from Rubios, I always order them. Well sometimes I get the shrimp or Salmon tacos and I also love that black salsa chipotle sauce and the chips are delish here.", "type": "review", "business_id": "N13sN1m2zZNJDgRBlP8RYA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "r-t7IiTSD0QZdt8lOUCqeQ", "review_id": "mwzFakEUj14_kD32WRAylQ", "stars": 4, "date": "2011-02-11", "text": "Great bar, great atmosphere, great service!\n\nCitizen crafts classic old-school cocktails courtesy of Thomas and Rich. ON top of that they have a few beers on draught, by the bottle and a pleasantly surprising wine selection. \n\nFood-wise the menu is kinda geared towards comfort and southern style offerings including mac-n-cheese, scallops with bacon and corn grits, dungeness crab cakes with complementary slaw, pork-belly, etc\n\nAgain, overall good place to go for a casual and relaxing drink or two. Will be back for more...", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "pOim-Tccfc6Aw0ynGdPmYw", "review_id": "T4ShrEom-NqrSAilhCJh1Q", "stars": 3, "date": "2011-07-06", "text": "Tried this for dinner one night. Had the hot and sour soup, which was good. Partner had the won ton soup, but had to ask for crispy won tons to add to the soup. I had a diet coke to drink, but I swear there was alcohol in the glass - I sent it back and the same happened again. i tasted my partners and her's was fine - not sure what was going on there.\n\nI had kung pao beef - it was a little too crispy. My partner had the shrimp version (she wanted scallops but they were out !) - she said it was excellent.\n\nLiked the decor, but a bit pricey for what you got.", "type": "review", "business_id": "xxyuGOeAWnKVwIfoKnfUNA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "XOyeZ9-OIgyDHxybKv__dA", "review_id": "PwpPR5T-lAslnWZw0eNJlA", "stars": 5, "date": "2011-01-05", "text": "Every time I visit Arizona I love to eat here to food is vary good and I have my wife to thank for turning me on too this restaurant I wish they would have some in Georgia", "type": "review", "business_id": "Q-dsvMlhEr9TgvX8FxW4uQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "P0oMcxect43NE7QPw_AyKA", "review_id": "CrSAVT3jxqdJT9iQW2Kq9g", "stars": 3, "date": "2012-02-17", "text": "I've been to happy hour here on a few occasions now and I have to say that I'm becoming more and more fond of Geisha. The prices are pretty decent, but what really makes this a great happy hour place is the ambience - it's lively and fun!\n\nHappy hour is 4p - 7p every day and is half off sake bombs, appetizers, house sushi rolls...and I just realized specialty drinks as well! I need to go back so I can try the Hello Kitty and Harajuku Lover specialty drinks! Both look delicious. \n\nNot the most amazing sushi and appetizers, but definitely not bad considering the price. And for me during happy hour anyway, it's really more about the company and drinks than the food.\n\nHappy Happy Hour Hopping!", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "ypgVd9A6WNXyxDMmQB9NEw", "stars": 5, "date": "2011-09-21", "text": "i always forget about this place when we do a party. they carry costumes and party gear year round...even halloween stuff. \n\nstopped in today to look for a flintstones costume but they had no Fred's and the wilma they had for 50 bucks, we bought on-line for 30 bucks. i had an online coupon for 15 bucks so i only bought house decor for halloween. but if you need any kind of prop for a costume/theme party, bike pub ride, or just feel like dressing up, this place is perfect!", "type": "review", "business_id": "Zw1tNtyXA1kLABiZU0pa_g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "6uNeagh9ljbwV8XRUn_cYA", "review_id": "NzqSfv9KdF-8N57xrn1Pmw", "stars": 5, "date": "2008-10-29", "text": "If you're looking for a lunch salad/Sandwich, this place is great. Not too busy, but that's good because it's very quaint. The roost beef and bluecheese sandwich will fill your stomach and the cookie side is a nice treat.", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "5jakJiTLvnUWRin5GK9q1Q", "review_id": "qEv89ekppAn80QVtmNhxHg", "stars": 4, "date": "2009-06-11", "text": "I've been to this place three times and have enjoyed it every time. The service has been good. No complaints.\n\nWe really like the thin crust pizza's. And the salads have been big and tasty. Spliting one small pizza and a salad with my wife if plenty for us.\n\nWe've also had the lunch special of a large slice of pizza and a salad. Just the right amount of food and tasty.\n\nMy wife and I think the prices seem fair for the good quality of the food.\n\nThis is now our first choice for Pizza, since we aren't going to drive all the way downtown and wait two hours at Chris Biancos every time we want pizza.", "type": "review", "business_id": "Xbxve72Hp5cWWj96ThGNtg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "32yCk5GTLAjcxUxvUOhWyA", "review_id": "aLoHo_2P6f-CxCR_bfd-Rw", "stars": 2, "date": "2011-01-10", "text": "Well...I wouldn't get the dragon lady roll again but the shumai were good, and the rainbow roll was good. Too many mayo/cream cheese rolls on that menu. Not even busy on a Sunday night with the BCS game in town. Nice atmosphere.", "type": "review", "business_id": "sI-2c9HZ0RjZX1OU-5DW0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X1nTlg9in3_Ch8QR8Hx4lg", "review_id": "ZNmkRj78d7B6M_802GsGaA", "stars": 3, "date": "2011-07-27", "text": "Not really memorable but, good dependable Chinese food. I like the space too.", "type": "review", "business_id": "0QTn4pMzKv1mnQifcP9YoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1vIg1iRDdx8RokPAFNkFEw", "review_id": "6WaU71YvB_sU_Adt2K6Z-Q", "stars": 5, "date": "2011-03-20", "text": "Don't judge a book by it's cover. The outside doesn't look so great, but you go inside and it's gorgeous. The food is some of the best food I've ever eaten. Their sugar cane chicken appetizer is fantastic!! The pad thai, chiang mai noodles, pad kra po, pad lard na, etc. This place is so flavorful with fresh veggies and fresh herbs. And don't get me started on their fried honey banana dessert. The best dessert I've ever had! Check this place out you will not be disappointed.", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "DrJnC62-eMRnFai6immsbQ", "review_id": "RmOyqOn1cM1f0neN-b3lHQ", "stars": 4, "date": "2010-07-29", "text": "I stopped by early this morning to satisfy my crave for something new. The place is very clean and a man came out to greet me and was ready to serve. He clearly explained every item I was curious about since the labels were in Spanish. I asked if his name was Miguel and he said yes. I told him I read about his bakery on Yelp. Then he said that he loves Yelp and that's how word is going around now for him and he also uses to find reviews on other places. He was very friendly and had lots of patience. I was the only customer at the time and he actually doesn't mind having a conversation unlike open ended talks with others. I ended up buying 10 pastries and it cost $6.80. What a great deal!\n\n\nThey also sell other items such as tamales, burritos, and menudo. I inquired about the burritos cuz I like mine with a little kick,but unfortunately they weren't ready yet. He showed me the homemade tortillas and he says he used them on the burritos. He said they don't look big, but he assured that the burritos are filled with red (mild) or green (with a kick) chili, shredded pork, and some potatoes. He said that one burrito is good to fill up a person. So...I must come back and try it. \n\n\nSo far I've had the flaky pastry with the shredded coconut and Bavarian cream...the Bavarian wasn't as creamy than I'm used to. I almost thought it would have been better off to not have it, but it's a nice added flavor when you eat it all together rather than just tasting the Bavarian on its on. \n\n\nI had that curvy, pretty looking pastry which is topped with crystal sugars and with all the sugar on top, I thought it might be too sweet, but nope. It was just fine with the pineapple filling (excuse me as I wipe my drool). \n\n\nThen it was off to have the caramel flautas dusted with powdered sugar. The first bite was eh. The second bite was...um. Third bite, WOW! I finally reached the part that had more caramel in it and I LOVE IT!!! Did I mention that I'm not a big fan of caramel? This caramel is sweet and creamy. It's just so good! A definitely must have for next time.\n\nThat's about as much my tummy let me eat for today. I'm sure the rest will be just as good and I can't wait till tomorrow morning to try to rest of my goodies.", "type": "review", "business_id": "towWd9z7YuGHdAezQtrkTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wcfbLVebMejZo6UfYjRcCw", "review_id": "-u-feZVf96IbwR64QyjBjg", "stars": 5, "date": "2012-03-21", "text": "I WISH I LIVED IN SCOTTSDALE. I stopped by Yogurtland because I went to Spring Training, and I wish I could have stayed forever. The quality of the frozen yogurt is impeccable. So many flavors! I mixed Raspberry Cheesecake with Vanilla Bean, also tried the PB&J flavor (um, YES!?), Tangerine Tango, and my usual go-to, Tart. Very extensive toppings bar. Good price as well, I just love froyo. Next time I'm in Scottsdale, this will be one of the first places I go to!", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "IajbWwj6l-KHrfSEwZBLgw", "review_id": "LzkmeIC1ZIMS_CBRuBEZ6Q", "stars": 4, "date": "2009-07-07", "text": "I went here with my husband last Sunday afternoon. We had a 2 for 1 coupon out of the Entertainment guide. We are from San Diego and have been trying to find Mexican food places similar to the food out in San Diego. We pulled up to the location and were debating if we should go in or not. The area wasn't the best, and it was in a tiny strip mall. Kind of looked like a taco shop. We decide to go in, because we were starving. Inside it looked completely different. It was a little dark and dated. But the atmosphere was very causal and the hosts were super nice. We sat down and right away got some nice warm chips, salsa and beans served to us. I was feeling like a margarita and was going to get the house one, when the waitress said they had 99 cent margaritas available. We ordered our food and didn't have to wait very long to get it. Super good food and really cheap 99 cent margaritas. The margaritas were served in pretty nice size glasses but a bit strong. FYI, I think you're getting really cheap alcohol in there, seemed pretty stiff. I started buzzing after my second glass. My husband even loved the Chile reino that he tried from my plate. He usually doesn't like it at all. The carne asada was seasoned very well, it was a great change from some of the bland Mexican food I've had out here in phoenix. My husband had the beef chimichanga and it was seasoned really well also. For the price you can't beat it. From the outside the restaurant seems a little ghetto looking, but once you get inside it's pretty nice in there. I would defiantly try it again.", "type": "review", "business_id": "oiLe3lqMFaZtsSpRuIUChw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6E-Nf7ctLC8N95KxFschoA", "review_id": "cw56ezAwEhMzQBtI2fdxLQ", "stars": 1, "date": "2010-12-24", "text": "Poor service-small portions-pricey", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JxizK08K88qgrxL6dGb6yw", "review_id": "AsPAeLZqyo72GKo1rJTS3Q", "stars": 5, "date": "2012-01-19", "text": "Excellent neighborhood spot with outstanding food, large portions and reasonable price. The staff make you feel special and I have not made a bad menu choice. Try the wings with sauce on the side or the Monday night fried chicken. Lunch or dinner, Wallys receives 5 stars from me.", "type": "review", "business_id": "6TuM3UyFP9O9uzTP0dVZMw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "KH1QxaALC-vm1LvKPd95UQ", "stars": 5, "date": "2010-08-22", "text": "Those of us \"foodies\" know that if the company is not good, the food is not good...regardless...which is why I am happy to give Bar North such a great review. I was there with a terrific group of people [STAR 1]. We were able to relax on the patio (with clean furniture, I might add) overlooking the fountains, in an intimate setting where we could hear one another [STAR 2]. The wine list was good, at a fair (i.e., expected) price [STAR 3]. The appetizers and salads were awesome [STAR 4]. And the waitstaff (Damn, I wish I could remember her name!) was incredible [STAR 5]. 'nough said.", "type": "review", "business_id": "N80E9zoWEpHhi4kH2eKAsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-o3uGadqen-bc1HjMx_8Bw", "review_id": "sm_KqyD7-wBdJ6rmjslcJA", "stars": 5, "date": "2012-03-02", "text": "I prefer going to this location of Macayo's over the others because of the ambience. It's way different than the others and it doesn't \"feel\" like the other Macayo's. This one is much more festive. It has a ton of patio seating and lots of shade. The antique train outside makes it much more interesting. The parking lot, however, is right next to the light rail tracks and it's small, so parking is a little dicey. They sacrificed parking for patio seating. The prices are extremely affordable. Their food is very good. Service is always consistent. Cheap margaritas. I've never been here on a weekend. I always stop in on a weekday around noon and then it has some business people on lunch.", "type": "review", "business_id": "FG_GRMLSj68ximzfrr9eWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "BH3nDDQU6OgWrCBjPRcjzg", "review_id": "E4K_vUUIq-gSn_UocbAlEQ", "stars": 5, "date": "2012-06-28", "text": "This ice has the abilty to make you feel COLD on a 100+ degree day - I am hooked on the Key Lime, Alex's Lemonade, and Florida Orange. Very nice staff, friendly and free samples ....", "type": "review", "business_id": "liXaSXrIXjikvdSEI2inxA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JVeCUlDmcwJ3pteEdmzeHg", "review_id": "IbxnDOAHlAV9PYiolbQ4hQ", "stars": 3, "date": "2008-10-28", "text": "Each time I eat here...I always look at the menu and end up having the same thing - the ceasar salad with salmon. Nothing else really interests me on the menu. The service is good - no complaints there. But its nothing special. But I will tel you this - there is nothing like a cold beer on a hot day!", "type": "review", "business_id": "GjvIDOEhdQB1oPrFeSpxBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tBvrnSCLSpUdCDm5w5GPkg", "review_id": "lmV0msaMwTArTYaBP1WS9g", "stars": 4, "date": "2008-01-04", "text": "Need your Bianco fix but don't want to wait in line for three hours or get in a fight because of a shortcutter? Eat here instead. Take out only and very limited menu but who cares there food is great! Lucky for me I live close by so I can bring it home. There sandwiches are made with all fresh ingredients and their bread is wonderful. Next door is a place called Lux Coffee House. Erick is a hoot. They are very good to their customers and I had the best Vanilla Latte every here. You can sit here with your Bianco sandwich and surf the net with your laptop. A small piece of paradise!!!!!!Be forewarned Bianco's is not cheap!", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "g8up_FWF-A5JQjuUJ_VsWw", "review_id": "cmjDoAwYuGG1-hEPmrvDnw", "stars": 2, "date": "2011-03-09", "text": "So, this will not be my best review, especially when I expected so much more from this place.\n\nLets get this out of the way and on the table first, this ws not a bad place to go, but, it wasnt my favorite by any means. I went in expecting to pay a lot for the meal, and rightfully expected the best food I have ever had, and that was just NOT the case. From the high prices to the limited menu, I would expect this place to specialize in the particular menu items, and would hope to have my taste buds dancing while I shout for more. I didnt.\n\nWe started the meal with burratta forno cotto mozzarella. it consists of oven baked burrata mozzarella served with grilled ciabatta, fried eggplant, lemon-truffle vinaigrette and parsley. There were only two tiny ciabatta slices which was not the first complaint. the second complaint would be that the fried eggplant could have used a bit more flavor. (perhaps a little lemon pepper in the batter would have done some good) Lastly, the dish could have satisfied by just having a bit more cheese. This dish was not bad by any means, just expected a bit more with the $12 price of two miniature slices of ciabatta and two thinly sliced pieces of eggplant.\n\non to the salad. I dont know about you, but, when I order a salad, I expect a salad. this was a salad, just not with any lettuce or salad look. we ordered the caprese di pomodoro. this dish is made with heirloom tomatoes, preserved lemon, herbs, fresh burrata mozzarella and extra virgin olive oil. from the description, i assumed, dont ever assume, that this was going to have some spring mix as a salad base, then have the tomatoes witih cheese and basil, and then the lemon with olive oil as a dressing. WRONG. it was nothing more than what the description said. it was two tomatoes cut in half, with a small amount of cheese and a few basil leaves and then the lemon preserve mixed with the olive oil on top. dont get me wrong, this ws absolutely AMAZING, and I would love to have it again. It is just not what I expected, so, it would have been nice to know what exactly I was ordering for $10.\n\nTo make matters worse, our so called salad took about 30 minutes to make its way to the table after putting in the order. it took so long that the chef actually apologized and told management that he was going to send out a soup for us for the wait. we were fine and in no rush, but, when we were already having our food take forever and told we were going to get soup, we expected it. the soup never came.\n\nfinally, after waiting for and hour and a half for our main entree, we got our food. it was good, but, nothing to write home about. my pollo portofino was bland to say the least, and was actually a little dry. the potatoes were decent, but again, a bit bland.\n\nmy date got the ravioli di mozzarella con salsa all'arrabbiata. the ravioli pasta was so thick that you really couldnt taste the filling, and the sauce was to sweet in my and my date's opinion.\n\nwe however did order a side of the risotto parmigiano, and this was just amazing. I am very happy that the recipe was on a poast card that came with the bill. I will be making this at home in the coming week.\n\nfor dessert, we ordered pistachio gelato. it was the best gelato I have ever had.\n\nwhen it comes to a decision of returning to Alto, it will not be high on my list due to being over priced for what you get and all around, just not the best first experience. I will however think of stopping in to get some risotto or gelato to go.\n\nwhen it comes to good Italian, I think I will be sticking with Italian Gratto or Pane e Vino.", "type": "review", "business_id": "1Q_H3BLhKBymF6Se8FfZNw"} +{"votes": {"funny": 3, "useful": 11, "cool": 11}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "hfJl7JpIuq_8m8nQhHiSqg", "stars": 5, "date": "2011-10-04", "text": "This is the new mecca of Phoenix music. \n\nCharlie Levy who booked for the now legendary Nita's Hideaway and also the owner of Stateside Presents is the man behind it all! He is a music fan first and ... well ... that's just what he is ... a music fan not a natural businessman. \n\nThe place is just beautiful (for now, soon to be broken with the wear and tear of rock and roll no doubt). The room is small ... stage big (for the size) ... no doubt this is going to be the best place in the city to see any band for a long time to come!\n\nThank you Charlie!\n\nMusic fans unite! This place MUST thrive!\n\nbtw ... they have live music every single night of the week ... and they open at 4pm every day (the lounge will have musicians and DJs for your entertainment).", "type": "review", "business_id": "qw93CjlAZ6a4ff11Z-hF3Q"} +{"votes": {"funny": 5, "useful": 6, "cool": 6}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "YzxOS8y47Ow1v4Jtztpl9Q", "stars": 3, "date": "2009-11-22", "text": "Went here for brunch this morning (Sunday) and there were a few things that diminished the experience for me:\n* You claim New Mexican grub and then you charge for chips and salsa or sopapillas which are standard complements to any New Mexican restaurant meal.\n* At $3, the coffee is a rip off! Seriously? We're not talking cappuccino, people and you're selling build-your-own Bloody Marys for the same price!\n* The carne adovada was tender but not very spicy.\n\nThat said:\n* The green salsa was really good.\n* I'm so desperate for carne adovada, I'll settle. (besides, $9 is more than a fair price for 3 eggs, black beans and carne adovada in a bowl on a flour tortilla - even if it was more beans than pork.)\n* There are several options for $5; and, if they are all like the eggs benedict, they are generous portions.\n* The patio is nice and the bar area feels like a neighborhood pub (not a cave, but that's not got to be a bad thing!)", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kGADeTtZutSef9nlS66Npw", "review_id": "-1x0lVxVV7Te2WEM78ciww", "stars": 5, "date": "2011-10-07", "text": "LOVE IT LOVE IT LOVE IT!!! Best Mexican food we have had in Arizona yet. We are partial as we just bought in Fountain Hills and its close, but its also small and although lively, never crowded or noisy. The service is friendly and fast and the Mexican style music is great but not too loud. You can easily talk and relax. Loved the guacomole dip and shrimp cocktail and the fried ice cream is fab and big enough for four people!!!", "type": "review", "business_id": "XK5FFbrKWMjRqc6ZbSTknw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "dwvVKVL26kw5cx2ByZ2Clg", "stars": 5, "date": "2012-08-07", "text": "I think that most of the negative reviews I've read about this Gold's gym really stem from people's own insecurities. I have been going here almost 2 months now and have never had a single issue with the gym or ANY of its staff or members! I find the staff to be extremely friendly and helpful, and I was even offered a free personal training session when I signed up to help me get on the right track to meeting my fitness goals! \n\nI read one review about some poor girl stepping onto a treadmill that was going full speed and falling off... who does that?? Did she not see the treadmill going FULL SPEED? Don't blame lack of common sense on the gym or its staff...\n\nAnother review complained that there are too many gay men hanging out in the locker room. REALLY? As a straight male, I can say that I've never felt uncomfortable, and have never been solicited for sex in the locker room. Get over yourself and your homophobia dude. Some yelpers truly disgust me....\n\nGreat location in a beautiful new area, convenient hours, tons of parking, a BEAUTIFUL state of the art facility.... what is there to complain about?? Show up, work out hard, and go home feeling better about yourself... that's what gyms are for!!", "type": "review", "business_id": "tz7FNOyd0QY6f1vudq8Wlg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yoeoml76V4wyWPVZrLW-QA", "review_id": "ZLwo6pBTdqFrs5c278Qb3g", "stars": 1, "date": "2012-08-13", "text": "This place is a dump. I'm a widow, and I have a long-term chronic condition, still, they allowed their tenant to pick on me, throw a bottle at me, then their maintenance person told me the lock was never changed, They did not paint, but lied and said they did. It's totally drug-infested, They don't keep their word. I would skip it.", "type": "review", "business_id": "pPsS-ZcPwRNRw2Pdbc4-7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "FMRy5bd1jeSNp_dkDHHhSA", "stars": 3, "date": "2009-03-09", "text": "OMG - whenever I get around to composing a \"Worst Bathrooms\" list, this place will be near the top for sure. I spend a decent amount of time at this Barnes & Noble and have 'used the facilities' a number of times as well. At the very minimum, there's always toilet paper all over the floor and at least one or two un-flushed toilets - with 'number two.' Really, people... \n\nLast night, in addition to the usual messiness, I kid you not - there was an enormous cucumber sitting on the toilet paper holder in one of the stalls, and a padlock with two keys on the floor. As I sat 'doing my business' I couldn't help but contemplate whether these objects were some sort of weird clues for a scavenger hunt, a murder mystery, or something equally disturbing. (Needless to say, I got out of there as quickly as I could rather than looking around for more \"clues.\")\n\nOther than that, it's a typical Barnes & Noble complete with a Starbucks Cafe. The book and media selection is solid; no complaints. Upstairs they have large comfortable chairs that are just perfect when you want to plop down with a stack of materials that you want to read cover to cover without actually purchasing them. Just don't stay too long or you might have to visit the scary bathrooms.", "type": "review", "business_id": "26DWDgTLuo4qhDbLDJHIdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BHWnl3JztynNABGfmAryPQ", "review_id": "Hjf_sb1aIo9f5xgWEuBdBg", "stars": 5, "date": "2012-11-25", "text": "Still flying solo. My friends took me for dinner here and it was excellent. Humus appetizer was great. For main course did broiled chicken pita wrap and it was perfect. Recommend!", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ZeQZQY7CrpyxviVBhwveaw", "review_id": "qVKdXYJFnDFl3Is5UzGKyQ", "stars": 5, "date": "2009-02-14", "text": "one of my favorite places ! the place has great atmosphere and character. the bar is a great place to unwind with friends (or meet new ones) or have dinner. Michael or Jan will take great care of you at the bar! The full menu is offered here.\n\nthe dining area is warm, elegant, & comfortable, but you are fine to wear your favorite blue jeans.....it is cave creek. you know!\n\ni have never ordered anything from the menu that did not impress. regardless of where i dine, if there is a rib eye on the menu, i have to try it. Cartwrights rib eye (cooked over mesquite) is consistently my favorite!!! \n\nfrom the fish dept, the sea bass is succulent! my second favorite is the scallops. they too are cooked over wood and have great flavor/texture and are seared perfectly.\n\nyou have to save room for desert......the apple fritters pair well with their local fresh roasted coffee.\n\nyou can not go wrong at Cartwrights!", "type": "review", "business_id": "9HwUkbKAv7dO3MGlkkJJSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IjafRfMSAQpInLlw-Vi0Cg", "review_id": "aw3lJKaOQy7ayEQ3zL7YpA", "stars": 3, "date": "2012-09-16", "text": "Just like the other yogurt places for selection.\n\nGood news they had a vegan type for those of you who care. To be honest i ended up getting that one. I am not vegan by any means, but i do love a more icy texture and less/no creaminess when i have a cold dessert. \n\none negative is they are poorly staffed. Busy sunday afternoon and only one kid working there. felt bad for the poor guy. But i didn't feel bad for too long after as i mentioned to him that the mochi was bad and didn't really taste like it. He said \"yeah it's not the normal rainbow kind, but this is what i call the albino mochi\"... i tried not to laugh at that comment, but yeah, normal is his \"albino\" mochi...anyways don't get the mochi here...something is soo off about it. I can't put my finger on it. It's like an oopsie child between a marshmallow and \"albino\" mochi. LOL", "type": "review", "business_id": "irVjrnurmB03bTaj9BXofg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "YLkuqcXf35hCgWScC0CLlw", "review_id": "RW6u3rP5c_2Xcdgu4GsZzg", "stars": 4, "date": "2012-07-02", "text": "Their happy hour is crazy cheap!!!\n\nThe scene though is like a poor mans Rehab/Wet Republic, but I'm not mad! It gets really crackin there especially on the weekends (suffice to say, I was only there for a weekend hahaha). This is definitely a spot to checkout while in Scottsdale!", "type": "review", "business_id": "wP5849J1DKB2KS3M6UwOAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZHTUQk1PDuw5QSrF6af5ew", "review_id": "NT66iMMEEYNs2teHNha_Cw", "stars": 3, "date": "2012-08-06", "text": "This was the perfect place for the family after a day at the resort. The food was good, especially the barbeque chicken. The kids menu was wonderful. My only complaint was that the server really could not answer questions about the menu.", "type": "review", "business_id": "O-ylVyHn6e6kaoJO-jHj-w"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "lYUYFZMAho7JuoJHMptl6A", "stars": 3, "date": "2011-05-30", "text": "Yes, I can agree it is not perfect, but at least they are trying to do something different. I didn't eat there and since I was a designated driver I only had soda. I really enjoyed the stand up. It is a great place to see some local performers start their career.", "type": "review", "business_id": "C51OyHyQUZfGom7Rb5FV8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EaPbAu2q7Om6cXF9bqUG5Q", "review_id": "X71sFlDrJvyDZnXtazLNMw", "stars": 2, "date": "2011-04-01", "text": "Be forewarned, this is quite possibly the worst mexican food spot I have ever eaten at! If you enjoy authentic mexican food, don't go here!\n\nThe only reason why I'm giving their rating 2 stars versus only 1 star was because our waitress was very polite and serviced us well. The food however was terrible! \n\nMy husband ordered the two cheese enchilada plate, and the enchilada sauce tasted nothing like enchilada sauce! The rice looked like orange pasty mush and the beans tasted like canned beans. I ordered the chicken taco salad and this is the first time I've had cold chicken in my taco salad. I couldn't eat it! The only thing good was the appetizer sampler that we ordered. \n\nWe were the only people there on a Friday afternoon and now I know why! Overall we overpaid for crappy food!", "type": "review", "business_id": "PWiU2RQx7Fi86iYJMf381Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "Y8pMuvsTNhIL1lTIeePvjw", "stars": 5, "date": "2006-02-20", "text": "I love this mall. You need a giant mall like this when it is 120 degrees outside! It is one of the only indoor malls that I like. I feel so calm when I am here. You can find just about anything in this mall. The food court is pretty good. I like Paradise Cafe for sandwiches. There are sit down restaurants and a movie theater inside as well. Plenty of parking or you can just valet. My favorite Nordstroms is here. I find the Nordies in SF to be too big and overwhelming. The one at the Fashion Square is minimalist, well organized, and edited to suit my tastes.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "ahKbfgh-9t96eDRUMWag8Q", "stars": 5, "date": "2009-08-28", "text": "great service, great food, and great outdoor seating made for a wonderful first time experience at this charming little restaurant.\n\nyou would think that sitting outside eating in the middle of august summertime in phoenix would be practically unbearable. local breeze made it tolerable and i don't think my overly-sweaty ass ever felt uncomfortable once during the whole dining experience. they had fans, a swamp cooler, and misters going and it made for a comfortable and charming outdoor dining venture.\n\nwe started off with the greek lavosh which was to die for. the cheese they melted on top of it will make any cheese lover weak in the knees. their mojiot lemonade was crisp and refreshing. ok selection of beers, certainly not the greatest but i picked out a favorite, kiltlifter, to go with my coca-cola ham sandwich. my girlfirned (Rachel O.) went with the atomic burger as we are both fans of spicy food and this burger comes topped with horseradish. it even made her face scrunch up and me quiver in my seat the moment it hit my tongue and you better believe i enjoyed every second of it. the coca cola ham was HUGE and both of us only managed to eat half of it. leftovers are always good.\n\nservice was spot on, and i enjoyed the decor and atmosphere despite what many people have complained about before. get over it, it's no longer pallete, move on, and enjoy the local breeze.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mwGMnMvgvKd11do4u5J3Q", "review_id": "Ca1oxekkh-vRjPAldhZVlA", "stars": 3, "date": "2011-08-21", "text": "This is not my first time eating at a Picazzo's, but the first time I've been to the one in Casa Grande. Previously, I had been to one in Sedona that had a large, modern feel to it--kinda medium upscale. I was expecting that again, but didn't quite get it.\n\nThis location is TINY. My entire family was meeting here as a halfway between Tucson and Phoenix, and our party of 12 pretty much took up the whole restaurant. Luckily, we were the only ones there, as we had a few small children in our group who were very interested in exploring and walking around to everyone at the table.\n\nThe ambiance is more of a classic italian restaurant in this location, and definitely not upscale. Its not tablecloths, its paper that the kids could draw on with crayons. I'm not poo pooing on that, as it worked out well for our group, but its just not what I was expecting.\n\nThe service was pretty good, maybe a little on the slow side, but not overly so. The pizzas are delicious, and the menu is pretty extensive. I had a pesto and goat cheese pizza, and also tried the bbq chicken. I think between the two, I liked the bbq chicken better, but they were both seriously good. The prices are a little steep, but manageable. \n\nFor dessert, some people tried the pizza cookie with ice cream, and someone else tried a brownie with ice cream. There was very little ice cream on either one and it was mostly melted by the time it came to the table. The cookie was overdone and the brownie was dry and not particularly delicious. Wont be ordering either again should I return.", "type": "review", "business_id": "8G4_ESDS6BOTVCAlNt6O8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x1Yagv0rOlPd_NRu5t0SIA", "review_id": "RLTaxJsjdiohIdMHrR6E6g", "stars": 4, "date": "2011-08-08", "text": "Awesome burger and fries.", "type": "review", "business_id": "qVN-P0aov4z5oknS12Cq1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lkV_WCqCbpA5gUIHD6wtOw", "review_id": "FtSuQi80VFyjXdsvVpAf2w", "stars": 3, "date": "2008-10-21", "text": "So I ventured in here today for a quick nosy hoping to see what was on sale. I figured nothing in these economic times could be TOO expensive...They had a lot of their items FULL PRICE much to my disdain, but I was pleasantly surprised to find a large bin on throw pillows for 75% I personally was in need for some and bought some super cute ones for $6.00 each originally $35.00 yeah great deal!!! So I was a happy camper...I even found two that matched that weren't damaged SCORE...\n\nThey were setting up for Christmas so it was a little jumbled, but they had some cute Halloween stuff out but it was weird half the stuff was marked down and half wasn't, it was so confusing I just passed. I don't like the guessing game, either mark down the season or don't KWIM?\n\nAll in all though a typical Pier One except for how disjointed everything was it was hard to find things, and they just don't have the cute sets of furniture like they used to :(", "type": "review", "business_id": "8UC_BhTIcTDcP8OI7EtpLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NksiUEnf7cP77zTnz-7lGg", "review_id": "dn1CcLISn1HQt6tsX18S1A", "stars": 1, "date": "2011-05-09", "text": "My brother also posted about our Mother's Day experience. These must be franchises because the Scottsdale and Chandler locations are like eating at a different restaurant entirely. This is the second and last time we will frequent this location. The pizza and calzones were awful.", "type": "review", "business_id": "r4AG1WXCRWkZKQctrcy9FA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Leb_qEICS1GrUXfN_XauYg", "review_id": "IkET1y3Dpk1DPQk38ulRCQ", "stars": 5, "date": "2012-04-09", "text": "I took a friend from Europe here this past week. I cannot express how much the attention to detail is welcomed and so wonderfully presented. By this I mean, the service, the presentation, the food, the atmosphere. The staff knows that when you walk in, you will be spending good money and they expect to take care of your whim and cater to your palette. \nThe steaks are buttery, delicious and worth every bite. The sommelier made a wonderful suggestion to go with our order and he was spot on in his selection. This may not be the place to dine on a regular basis for some, but if you plan to make a special night of an occasion, I recommend highly Ruth's Chris. I have not been to the one in Phoenix, only the Scottsdale location, but I would be hard pressed to say that it would be any less tasty. \nMy buddy was treated so kindly and his comment (paraphrased) was as follows: It's too bad that so much of the world hates Americans. They think that Americans are so loud and bossy. They can be so kind and so willing to to be helpful when they want. In Europe, no one cares if you are from France or Italy or Dernmark because we are like states next to each other. In America, everyone wants to know about where you are from and want to hear you talk about it and the places you have been.\n\nThank you to the staff for being a part of my friend's visit.", "type": "review", "business_id": "sbjb1qNUcqQomJvcgPuJCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "gEU612EjfKLokGPD5VMjiA", "stars": 4, "date": "2007-02-20", "text": "Ok, I'm new to the whole Thai food thing, and I'm a wuss when it comes to spicy food, so take this review for what it is....\n\nI was told by plenty of uber-Thai food fans that this place was the bee's knees, but I wasn't too impressed. i kept it pretty standard ordering just pad thai noodles with tofu and iced tea. the iced tea was killer (i find that at most thai places, what is it with the iced thai tea phenomenon??)\n\nthe flavor was pretty bland, i have to say. it was the right amount of spicy, but just still bland, no bueno. plus, for a thai place, they did not cook the tofu well, it was totally bland, too.\n\ni was disappointed, but i will probably go one more time because you never know if you just catch a restaurant on an off day. it was super busy on a tuesday lunch hour, too, but we got in and out pretty quickly, so it's good for a work lunch.\n\n***update 1/08\nI'm glad I made that disclaimer in my original review, because I've been back three times (only for p/u) and it's now one of my top thai places. Maybe I was bitter because my editor took me there for my year review to tell me the paper couldn't afford more than 3 percent raise (on a reporter's salary, that's about 35 cents - you can imagine my bitterness). Hahahaha. I'm still not 100 percent a fan of their tofu, but the other entrees I've tried are not as bland as my OG visit.\n\nIt's a great spot to pick up even if I just walk in and order because, what I assume is the owner (a middle-aged Asian women who dresses professional), is SOOO nice and helpful* with the menu and there is a small bar (really small, like 4-5 seats) where I can order a draft and hang out for the 10-15 minutes it takes to make my order.\n\n*definition of \"soooo nice and helpful\": She answered all our questions regarding level of spiciness and confusion over which entrees included noodles or rice patiently and with a smile; suggested one of the most delicious fried banana/ice cream desserts I've ever had; and, one time she realized we weren't finished with our beers when our tightly packaged food was place on the bar, so she spent five minutes undoing the tie to poke holes in the to-go boxes so the steam could escape and not make our food \"sweaty\". RIGHT ON!\n\nthat definitely earned them an extra star for service! so... more like 3 and half\n\n\n***************************\ni'm bumping up another half star because their stellar customer service is dead-ion consistent every single time i come here. i highly recommend the Yupha's House fried rice with tofu - flavorful and not too greasy. and big points for being able to order every single item on the menu as spicy as you want it.", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2KNPtV5E44vAiEr5BvMkUA", "review_id": "rBcVXryltiRkhbD7Sxk8kw", "stars": 2, "date": "2012-06-11", "text": "According to the reviews I have read for this spot, I must have ordered from them on an off day. Today for delivery, I ordered a cup of soup (something tomato based with potatoes and beef in it), 1/2 Vermonter sandwich, lemonade and a cookie. \n\nThe soup was ok (bland, but ok), the sandwich was...well, kind of sad looking. A big dark green piece of wilted lettuce, barely any of the 'cranberry mayo' or whatever was supposed to be the mayo on there, the turkey and ham tasted great...there just wasn't very much of it, and they completely forgot my request for a side of mayo, mustard and a knife/fork on a triangle cut piece of wheat bread. I wasn't able to choose my chips, so ended up with some plain ones and my cookie was undercooked by about 10 minutes. The outer circle was baked, but the rest was cookie moosh. (Which is fine when you are in a cookie dough mood, but alas...I was not.) The lemonade was FANTASTIC though. I don't believe I'll be trying this one again unless I'm in a pinch, but I'm happy I tried them today instead of just jumping into a catering order with them. This may be the only time I have been mislead by previous Yelps. *sigh*", "type": "review", "business_id": "eJpr6Ks8pr4bmvDVPTN-Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FbExpUiiAP6NiebgsN8zzw", "review_id": "4z2AXCRr0OrkphvPxSnjXQ", "stars": 5, "date": "2011-09-30", "text": "I had heard many great things about Penzey's, but it wasn't until recently that I actually went to the store. After shopping around and smelling various spices, I wanted to buy everything in the store! Great for gifts as well!", "type": "review", "business_id": "ipMMVBGEWABP4PIfudvRVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "PShy2RYNadDUhJf4ErOJ7w", "review_id": "vgjSeoz6mHX5wVh6MH09sQ", "stars": 5, "date": "2008-01-20", "text": "Love it!\nThe food is VERY spicy though. Luckily, I have burned off all of my taste buds so far from all my mexican food endeavors, however, the wussies out there should take note :)\n\nJust realize that this place is VERY small and can get VERY crowded.\n\nI was there once and George W Bush came in to eat there. Evidently he loves the food.", "type": "review", "business_id": "9BJ5h9X1krpXFjKj0a6wbg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ktyoP7G8zSyMXwGur_QudA", "review_id": "UVBiYn9GVKh1ttOQ--refA", "stars": 5, "date": "2012-07-02", "text": "It was a very lovely place. I had read the reviews before arriving and had read that the place looked dated, but it looked very nice to me. I've been to several hilton family hotels since my hubby is a diamond member and this is one of the better places we've been to.\n\nThe only thing that was sorta a deal breaker was that it wasn't near downtown.", "type": "review", "business_id": "qIhBNeE64skjowRs6TTwJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A-D1tG2sx5lP0KIRhvO1kw", "review_id": "6RnacODau3-6ZO9DekFUMQ", "stars": 5, "date": "2012-12-23", "text": "One of my fave restaurants! The unlimited salad is a winner. It's delicious! They also have a gluten-free selection that my brother loves! \n\nFor Christmas, they also have some gift card deals.", "type": "review", "business_id": "RQWliUrWic_b5FZEj3JThQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "g8HTHavL-ovkkJ05XJaf0A", "stars": 3, "date": "2008-05-27", "text": "Michael C is right. This place is very charming. I love the inside decor, with brick walls. I love the \"No Sniveling\" sign hanging behind the bar.\n\nIt's a small place, but that's part of the appeal. There's a small upstairs patio, with a fireplace (wasn't on when I went) that could be a great spot to hang. It's not much of a view, but there's something cool about being at a higher elevation. \n\nFinding J. Chew was a little bit of a challenge. We ended up stopping at AZ88 to ask for directions. LOL! When we arrived, my friend and I sashayed up to the bar. Immediately we had a drink menu in front of us. I was more intrigued by the huge crystal ball-esque 20 Questions game. I wanted to play!\n\nWhen I asked about beer, the 'tender motioned to the shelf above his head. Ahh... Not a great selection, but it'll do. I went with the Honey Brown. $4.50. Great price. Okay beer. I'll order something else next time, if I can make up my mind. Stella? Fat Tire? Hmm... \n\nThe whole reason for venturing to J. Chew was for a celebration. My friend was getting married, and this was her final Saturday night as a \"single.\" So, the group of women sat outside on the small patio area. It was a cold, chilly May evening and they had the fireplace going. They also had a couple heat lamps working, but most of them were out of propane. Bummer. We Phoenix Dwellers were shivering our coconuts off, if you know what I mean. (Praise Allah for fingerless gloves, which were a big hit that night.) But, the bartender did try and keep them going, so we appreciated his efforts!\n\nOverall, I like J Chew. Yet I can't rate it higher than 3.5 for a few reasons. Yes, one is the beer selection. While it's small, it's also doable. Yet, their mixed martini list looked disgusting. Then again, I don't do martinis. Nor do I throw down $11 on a mixed drink. \n\nBut the real annoyance came from other patrons. From one guy in a hockey jersey throwing himself against the glass door (even hitting his head on the glass, when prompted) to a crazy D'Backs fan yelling in the face of a calm Braves supporter, those couple of guys just totally zapped the cool, calm and collected from J. Chew & Co. There's something defeating and sad about seeing another man yell \"Lock it up!\" at another man, during what could be a calm, mature discussion about two sports teams they individually love and follow. There's something even sadder about watching an aging man with a cigar hit on a married woman. He just wouldn't leave our group alone. Oh well...Maybe they won't be there when I go back... because I think if they are, I'm gonna have to say something. How obnoxious. \n\nIf you're in Old Town and looking for a chill spot to hang, this is your place. Plus, I liked the music they had on rotation... From Modest Mouse and Postal Service to 90's grunge and alternative rock, I was diggin' the tunes, along with the laid back atmosphere, the great service and the knowledge that there was a chill place in Snottsdale to hang. Who knew?! I just don't think there's a strong enough draw to hang at this place all night. This is more of your \"before dinner\" or \"before another bar\" type of estabilshment. Only problem is there's not many other cool places in the area I'd be interested in going, especially on a Saturday night when Snottsdale is out in full force.", "type": "review", "business_id": "E4Q-78EG6f2aRv7zGQLuAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P7tY6x4uDIRMgA1v_xsWmg", "review_id": "_D9JaIWktycueAwKFnbHzA", "stars": 5, "date": "2011-04-28", "text": "Great selection, TONS of flavor, always hot and fresh, nice staff, great prices. In my top 3 quick restaurants.", "type": "review", "business_id": "WixkMVXXFCx-lYsr6JoF6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tU9Zo_mm1iAtrHjU3yhs3Q", "review_id": "CpySSNVLdMNU9Gfg7Xp6hg", "stars": 5, "date": "2012-11-25", "text": "What a great property. Only had been to the bar years ago after the renovation, finally had a chance to stay in a Studio room this weekend. I was over the moon after this stay.\n\nI was looking for a nice weekend treat for me an my girlfriend. Vegas was tempting, but the drive eats up time I just don't have, and I don't gamble. For about the same as a discounted room at the Mirage and fuel expenses, I was able to get a gorgeous suite at the Valley Ho. \n\nVery fast, friendly check in. No lines, no bullshit resort fees and a personable guy behind the counter. Never get that in Vegas...\n\nDecor is startlingly unique. In a sea of cookie cutter mega resorts, a nice spin on hip, 1960's American style is a welcome change of pace. The details are like no other hotel I've stayed in, and the grounds are well landscaped and immaculate. It's quite humbling to think this place has seen patrons for 55 years. \n\nStudio Suite is super cool. Clean, good sized and hip. Tub in the center of the room was very, very cool, and was very useful. Good bed, good linens, great shower. Dug the little patio and the large sliding glass doors were awesome on a cool fall morning. Good colors, too. Only a few gripes; the bed side lamps are unusable with their super bright, nasty color temperature CFLs. Thankfully, there's lots of other mood lighting available. Also, the ceiling was starting to look a bit worse for wear, with some sagging at the joints and some water stains. Flat roofs always leak, though. In room music system ala Hard Rock would be a great addition, since TV is for the birds. \n\nLocation is unbeatable. A short walk to anything in Old Town, Fashion Square, nightclub block, etc. But far enough away from the bars that it's quiet at night. Found a great new restaurant (The House) on Main St. that I would have never stumbled across otherwise. Probably the only worthwhile, walkable district in Phoenix that never disappoints, and this hotel takes advantage of it. \n\nI will absolutely be back. Makes a great in town escape. Just wish I would have tried it out sooner!", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f1-pIw_p0ifzu03TXjPRiw", "review_id": "8aMyNXNHrl83-A7YeyUbfg", "stars": 3, "date": "2012-01-03", "text": "We have some friend who were RAVING about this place, so we popped in for a sandwich before a movie recently. I gotta say, I had a great reuben sandwich that I was VERY pleased with. I'm not sure if I will be venturing to the area just to have this sandwich again, but it was super tasty. Everyone seemed to like what they had and the menu has something for everyone. If I'm in the area again, I might venture here, but I am partial to Jimmy John's (next door) so it might be hard to choose.", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "ohRev2g3tvXpV3gBnhC-og", "review_id": "jxla5QHTa552BQ3adbxvhw", "stars": 4, "date": "2011-02-17", "text": "this was my first visit to a Sizzler and I thought it was pretty good. The shrimp dinner I ordered was not that great but the salad and dessert bar made up for that. The place is no Golden Corral by any means but what they got is pretty good , you will leave with a full belly . the service was good and I was able to make a strawberry shortcake from the dessert bar. So I will say YAY I am a fan!", "type": "review", "business_id": "uflQ_lKBfS6WknNlm_HK8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rnUsWuzJndMoSy28RbPMMQ", "review_id": "vSjJrRCpXUwvBHAoQrRaqg", "stars": 4, "date": "2009-05-22", "text": "Well i seen some 1 and 2 stars, don't know what the hell they talking about, but this place rocks. I gave them a 4 star cuz too many people take their kids and cant control them there. LOL. \n\nBut the food is the SHIZZNIT!!!! \n\nThe Chips they bring out are nice crunchy and salt to taste. the salsas and the Lil bean dip uffffff, love it. \n\nThe food is nice and spicy, since I'm Mexican i can handle the heat. \nI always get the Pollo con Queso, can you say DELISIOSO!!! \nMy favorite. \n\nWaiter/es all are kind and helping on ordering. \nIf your into Mexican food, its a need to try.", "type": "review", "business_id": "ib-y5nsfn3unE0lLY1vfAw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "SgrzYyD-zyrNIcncg8iwSQ", "stars": 4, "date": "2012-11-13", "text": "Beep Beep! Who's got the keys to my jeep? Vroooom! (Missy \"Misdemeanor \" Elliott)\n\nFood Truck Friday happens, well, every Friday in downtown Phoenix. Located off Pierce and Central the the food truck phenomenum has arrived in Phoenix. Thank you Great Food Truck Race on Food Network! Actually Food Truck Friday was started by the Phoenix Street Food Coalition. If you didn't know, Phoenix lags behind in the food truck scene like Los Angeles, New York, Portland, etc. Who knew huh? Yeah, like you didn't know!\n\nThe area where this event happens is not very big. Seating is a B-I-T-C (shut your mouth!) I'm not even going to bring up the Shaft! However, come early enough and maybe you'll get lucky. Some people to do the \"I'm saving these seats for a friend\", thing, which really really is annoying! \n\nNeedless to say the scene is awesome! Hot dogs, burgers, pizza, rice bowls, and cajun burritos! I guarantee you'll come back for more and to explore the different flavors! You definitely won't have all Friday to do so, but check out their daily weekly schedule - http://www.downtownphoenix.com/blog/tag/food-truck-fridays/ - Enjoy!", "type": "review", "business_id": "l0S5b8YYyDbjttTWtKc-gg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z0P7xigz7h6lPqwO0cn2NA", "review_id": "1VYvIdcIRAotBlYVjw97wA", "stars": 5, "date": "2012-10-29", "text": "If you are writing poor reviews you obviously have not eaten Susie's Chile Verde con Carne. I dream about it. And I grew up in New Mexico! The best bowl of green chili stew or even better the green enchiladas with melt-in-your-mouth beef anywhere in town. #13...don't forget the sour cream. \n\nSo you with the 2 & 3 stars go back and try the green chili and watch your stars become shooting stars! I've never tried anything else there. Why would you when you've found green chili heaven? Man, just talking about it makes me drool. I'm headed out the door.....Susie's here I come!", "type": "review", "business_id": "jrZ4CdPKcXtFv_xhV8ThaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "nw4l-kfBDwQSjf-gEZII2w", "review_id": "ti06-kxL_5IHy9hR9TFizg", "stars": 4, "date": "2010-03-17", "text": "I have been to this Museum twice so far. And both times I enjoyed myself. But this place is huge. There is so much to see if you are into Native American art or just art and lifestyles, history of Native Americans. I love it. I was recently there to see the Indian Market and seen the Boarding School exhibit and Kachina exhibit. I love seeing all the Kachina dolls. When ever I am in town I know I will always go there to check out the new exhibits.", "type": "review", "business_id": "SG_gEmEXL4ID6RAEinC5Bg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wUCRCqCcRFAvX0e17_6odA", "review_id": "ZAU_99yxKqM_EEPjcDCqIg", "stars": 5, "date": "2011-02-24", "text": "All I have to say is wow. The auto picks and portrait pick that MelonFishPhoto did for me blew my mind. I felt pretty confident after seeing some of the photos he had done, but my expectations were far exceeded. He has a creative eye that caught much more than just the personality of the car. The picture brought tons of people to my sites asking who shot the pics. The portraits were truly great and fun to do. I actually saw myself in a new light that I never saw before. I loved it. Anyone can take a picture, but very few people can take pictures that draw people in and seem to almost have an active emotion behind them. I strongly recommend MelonFishPhoto to anyone for any photography need.", "type": "review", "business_id": "e0Or6HYHL03y7IHl0itIOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WcnFWEVx9HO4eplGqvvr1w", "review_id": "Hdvkhl1Jzhci6PM2cQaaZg", "stars": 4, "date": "2010-08-26", "text": "I absolutely HATE chain restaurants!\n\nAlthough in this case, I have to make an exception. I'm really into the food at Buca.\n\nI used to live in the SF Bay Area, and I had to wait damn near 2 hours to eat at the Buca located at downtown SF. I now live in Chandler, AZ and the first time I visited a Buca here, I didn't have to wait any longer than 30 seconds. \n\nI usually have a standard list of items that I order for the entire table when my family goes to Buca:\n\nBruschetta\nLinguine Frutti DiMare\nMargherita Pizza\nPepperoni Pizza\nChicken Marsala\n\nI also frequent other independently owned Italian restaurants, but Buca holds a special place in my heart, and my stomach. They have a signature flavor to their dishes. \n\nThe best waiter in the world, Lee works at this particular one. Request to be seated at his station and give him a big tip!", "type": "review", "business_id": "Lgqk00bglDyZfe5KbLhw6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FrQ6yJ3ZQet28UsnxfHgmA", "review_id": "W569Kk54Xpj6PNmPUKILMQ", "stars": 5, "date": "2012-04-15", "text": "Possibly the best burger I've ever had--definitely the best I've had in Phoenix.\n\nI get the classic, which comes on brioche with a choice of cheese. It's the only thing I've ever ordered there, because it's so damn good I can't pass it up. \n\nAND they get their beef from humanely raised, grass-fed cows. And beer selection, and the fries with aioli... Well, others here have told you how good they are.\n\nPro tip? Throw a little of that aioli on your burger, too. Oh, and come hungry--it's a generously sized burger.\n\nIt's a little pricey, but Delux is a really delicious treat.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "FrQ6yJ3ZQet28UsnxfHgmA", "review_id": "p6Z7P9jSFXKKLJsbe7PEWw", "stars": 3, "date": "2009-11-04", "text": "I'm a supporter of this store. At present, it leaves something to be desired, but we're starved for a place to shop on this side of town that has local and/or natural foods, so something is better than nothing! Also, I have faith that they will expand the available goods as time goes on. I'm excited to see how it develops.\n\nThe good: Great bread! This is the best part of this place thus far. The breads are fresh daily, baked locally, CHEAP ($1.79 per loaf for white, wheat, rye, marble ryle, onion, etc...), and all natural. And most importantly, they taste really good. Picking up a loaf of the onion rye has already become a weekly ritual for me. They also have specialty pastries, tortillas, etc. Though I haven't tried those yet, they look good, and the prices are also very reasonable.\n\nThe produce is also good. It's not a huge selection, but the prices are fair and the quality seems good. It's great to have locally grown items available nearby.\n\nEveryone who works there is super friendly, which is great, and they seem to be open long hours, which is really convenient.\n\nThe down-side: As I said, very limited selection. The dry goods vary between local (mostly) and mass-produced (some random items). Some of the local artisan products look great, but they're very expensive. I think they'd be a little cheaper at an actual farmers' market (ie, where we're buying direct from the producer)--but I do plan to save up so I can try the pasta, etc.\n\nWeirdly, this place rounds out its selection of local/natural stuff with mass-produced crappy candy, ice cream bars, toilet paper, etc. I can't help but wish they'd found some greener alternatives. (Also-- Fiji Water? Come on, guys... That company is TERRIBLE. And the opposite of local. I don't get why they carry it.)\n\nSUMMARY: Overall, a great effort that I think will get better. In the meantime, get over there for your bread and veggies, stat.", "type": "review", "business_id": "6yuY73ycyyPiIG3zWkXqPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ddL_dN4PcqDo_ShTnepIKw", "review_id": "olMmtRvLTOSvn8E8gIYcGQ", "stars": 5, "date": "2011-12-23", "text": "Amazing. Just stopped for snacks, had the fake crab rangoons and samosas. Very good. Will mos def come back to dine, hopefully several times, when in town. \n\nLove that they sell Diaya in the cooler and other lovely products, books and junk foods!", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A8eQi7p8gWvSvc3SuZjXEw", "review_id": "46uSYRP_VgcsmxBd8YPqbg", "stars": 5, "date": "2011-11-29", "text": "this is perhaps the best italian food in Az. We have been going there for about 10 yrs and always recommend this place to all our clients. Best food, which is all homemade best service. This place never disappoints us. We recommend this place to our clients and the feedback is thank you for the best food experience we have had.", "type": "review", "business_id": "MPziC5MO2QQiYVAMM3fdSw"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "q2S1fpp0deJhG9gWzo9ZyA", "stars": 3, "date": "2011-06-10", "text": "3.5 stars for me. My first thought upon walking in was \"wow, it's small.\" Not a bad thing necessarily. Could be a good thing in fact.\n\nI ordered a \"Blushing Lady\" cocktail (gin, Citronage, lemon juice, simple syrup, and a splash of sloe gin). I'm pretty sure it was served in a dribble glass because I seemed to have difficulty actually consuming it. But what I did have was perfect for me, and I would like another.\n\nI also opted for the special that evening which was a tenderloin sandwich with poblano, swiss, watercress, and charred onion. While the poblano and onion sold me on it, I didn't quite get the swiss and watercress. It was good, but could have been better with another cheese IMHO. Also tried the herbed fries (delicious) and the mac 'n cheese (not as delicious). The mac 'n cheese was good, but lacked the gooey cheesiness I crave. We finished with warm doughnuts and salted butterscotch. Doughnuts were fantastic, and it's hard not to like the butterscotch, but the \"salted\" part was missing. A touch more please.\n\nI had kinda forgotten about The Grind, but now that I'm reminded of it, it's worth a second visit.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3sntAdhOgc2k-5w1g4urrQ", "review_id": "Va6ifR3JU9ZTaRx9BX5JLg", "stars": 4, "date": "2007-08-29", "text": "I had the chicken teriyaki bowl (with extra veggies and easy on the brown rice) and it was a nice lunch. Nice alternative to fast food, although those sauces don't exactly make it healthy.", "type": "review", "business_id": "Y3nETidvklwdqNeGRzdGNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "D6j51VNGUdS6sLCTLfzxTQ", "review_id": "K1UKuB4b1N9ILP7B5OLuwA", "stars": 5, "date": "2009-03-05", "text": "I have been dining at this Indian restaurant for a few years now. It was introduced to me by a close friend. I have taken my co-workers, members of my ward, my mother and brothers and finally I get a chance to review it online.\n\nI don't mind going in for dinner, but the buffet is to die for. Their consistency has never failed. This place is great!", "type": "review", "business_id": "6SMQl2vR37HvjYWwSl1V3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bNdlR6bzOkOftBW7zDwxXQ", "review_id": "0BZ5PJiVyQS2nUcTw8dahw", "stars": 3, "date": "2012-06-02", "text": "While I like the food here, it seems like the service is just really hit and miss. Just went a few nights ago, and after waiting 20 minutes for my food, I was informed they were out of what I ordered. Then, they were out of forks and fortune cookies. \n\nThat being said, when they do have my order, the food is always fresh and flavorful. The management seems to realize when there are issues, as they have provided free appetizers and such when we were unhappy. \n\nOverall, a decent place, but might have to start trying other locations.", "type": "review", "business_id": "08Z_Zzp8PyEmWWpYurIO-Q"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "2guK2q2sKsmHk8tX5Itgew", "review_id": "xpZXE_lM7EOluobBARg9mg", "stars": 5, "date": "2012-06-28", "text": "lululemon is the best clothing store to hit Scottsdale since Ross. \n\nEven though exercise shorts there cost more than an evening in Tijuana they are worth every penny. So what if the pants there cost $160? They are awesome. Would Batman ever question Alfred about how much he paid for the Batmobile? No. Because the Batmobile is awesome and Batman would have paid any price for it. \n\nThe men's side of the store doesn't carry a wide collection but what I did find was more magical than the sorting hat at Hogwarts. Everything is so comfortable and if you're overweight most of the pants and shorts have elastic so you don't look like a muffin when you put them on. \n\nI also like the workers there too. They are friendly and helpful and helped me understand that even if I liked some of the women's shirts there it would not be a good idea for me to purchase one and wear it. But I love teal I cried! \n\nIf you haven't been to lululemon that probably means you hate small animals.", "type": "review", "business_id": "t0NencbvVVlH6mcRlNTPcg"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "p0I-j3Ja76ftLyQbie4fFQ", "stars": 2, "date": "2008-05-21", "text": "Where do I begin? \n\nLet's start with the server who literally yelled everything he asked or said to us. Oh, and then he rammed a chair into my leg and was just not very concerned about our experience overall.\n\nLet's move on to the cheese crisp, which had plenty of grease cascading off the pieces, and virtually no \"crisp.\" Did you put some cheese on a tortilla and microwave it? 'Cause I could have done that at home.\n\nBoth drinks were quite tasty- my tea was strong like I like it, but not bitter. Hubby's lemonade was very good, but he drank it so fast I didn't get a chance to steal many sips.\n\nLet's discuss the entrees, shall we? Hubby's carne adovada chimi was decent, better than my carnitas. In fact, MY carnitas is better. (I keep aiming for Chef Hector's at Sam's...) Yes, the pork was very tender, but the salt was -shall I put it nicely?- aggressive. Sam Kinneson aggressive. The \"tortilla\" was an inedible science experiment. Thick and doughy, and made even more appetizing by the charred side, it reminded me of the salt play dough we all made as kids, formed into a pancake. Truly nasty.\n\nAs for the legendary salsas, Hubby found the green to be tasty, but he did not care for the flavor of the red. Neither was especially fiery to him either. \n\nRiding on reputation, are we?", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "0knqb8FyRcveyRck5mIBBA", "stars": 4, "date": "2006-09-03", "text": "I've been here for dinner and the food was pretty tasty. The mixed grill platter is a definite recommendation, and the chicken biryani was full of flavor. The only downside was that the naan was just ok. Not straight out of a tandoor like naans should be.\n\nTheir weekend brunch was decent but kind of disappointing. The chicken tikkas were kind of bland and there were no fresh puris to go along with the channa and halwa. \n\nBut all in all, a good tasty experience and definitely one of the better IndoPak restaurants in the Valley.", "type": "review", "business_id": "H-99nG_KfynWPXh84TKj8A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jfL9EqM4nSTMV7mt_i2nuQ", "review_id": "aZ8Yz0jl_Jm3e2Q4HeCtMg", "stars": 5, "date": "2012-09-29", "text": "OMG I love this place!!! Im from Canada and this is \"continentally\" good", "type": "review", "business_id": "LSElCCmJQNJDpIEf77NVpA"} +{"votes": {"funny": 1, "useful": 10, "cool": 4}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "wQ_R-39R188IdXsMHzMIaQ", "stars": 4, "date": "2009-01-19", "text": "The Paseo Trail travels through Chandler along the Consolidated Canal. It runs mostly N-S, connecting to other trails along the canal in Mesa and Gilbert, totaling around 18 miles.\n\nThe trail is mostly paved on the east side of the canal and pea gravel hard pack on the west side. It runs along subdivisions, golf courses and even a couple farms. The grade is very gentle throughout. I would consider the trail primarily for use by joggers, bicyclists and equestrians.\n\nThere is parking at the address listed for the trail and nearby parking at Tumbleweed Recreation Center at McQueen and Germann. There is also easy to find street parking near many of the junctions with major streets. A good southern starting point is off of Riggs Rd. between Arizona and McQueen. There is plenty of street parking. From here the ride north is mostly a slight uphill ride, making the return trip a nice relaxing roll.\n\nOne issue with the trail is crossings with major streets. Most are not marked for motorists as trail crossings and there is no crosswalk so you may be faced with a relatively long wait to get a break in traffic or forcing the issue and forging ahead with care.", "type": "review", "business_id": "hpx8xdRVb_bjgc9h2xY5Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8z2mKSqTW-4pLobAUNvrsQ", "review_id": "GwyDawdnOh2kcEo-EA75FQ", "stars": 4, "date": "2011-04-18", "text": "Fast. \nFriendly. \nCheap. \nIf you get the ultimate package you get a free basic car wash in a week. Just keep the receipt.", "type": "review", "business_id": "L4qaRHqoy8tzY9Z-v17rxg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Rc2aLv4y07HNSJ1Ce0myLA", "review_id": "-OiuMu0PKpmKFNXpJoxv8A", "stars": 3, "date": "2011-01-14", "text": "We (my husband, 2 friends and I) visited Tavola last night because of a Yelp review. We weren't as enthusiastic. The service was great! We ordered 2 pizza's and 2 salads. The salads were fresh, that was a nice surprise, not bagged. The pizza was good. Crust was a thicker than we like. Not a bad experience at all just not quite what we expected after the 5 stars.", "type": "review", "business_id": "oKPRY3pQ-G6gmcbfE0splw"} +{"votes": {"funny": 8, "useful": 11, "cool": 8}, "user_id": "opjBZ0ImnKv5eRNQZ-98DQ", "review_id": "t7iNuAtVXk62OlD7LGxjTQ", "stars": 4, "date": "2010-03-17", "text": "RnR strikes me as a casual, urban place to meet up for drinks and a bite to eat. It's not what comes to mind when I think old town Scottsdale, but places like this popping up are helping to change my mind about the area. Unfortunately after I was finished I was reminded that it's still old town when I walked by a pan flute band on Main St.\n\nThe old town parking corral is directly behind RnR, you can get to it from the alley next to RnR or off of 2nd Street.\n\nThe space has a refreshing, industrial feel. I was impressed by the thought put into the seating options. Inside mostly features traditional high top tables for four, but I noticed they had a table near the bar that could seat at least 12. The downstairs patio features another bar, and both table and lounge chair seating. The upstairs patio has the best date seating, lots of tables for two.\n\nThere was a lot of staff working during my visit. The host was friendly, and my waiter was attentive. My water was never empty and I got my sandwich in under 10 minutes. If anything they were a little too eager to please. I was both impressed and bemused when my waiter refilled my water glass, apparently noticed my ice had mostly melted, then returned with a scoop of ice to add to my cup.\n\nI just got a grilled cheese (which includes tomato and bacon) on my visit, I had dinner plans later but I was interested in feeling this place out. I really enjoyed it. The bread is cut pretty thick, which made me a little nervous. But it had a wonderful texture, and after a few bites I decided it worked for me and didn't overpower the delicious sharp cheddar and bacon like I expected.\n\nI look forward to returning to try other meals, and to sample what the bar has to offer. I understand RnR will have both late night hours and breakfast service. This is a great place to visit any time of day, but I'm excited about having a new, good place I can frequent after (or during) a night out.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rq46hVxWltv4OmgWN4_2hg", "review_id": "VWTXwJfDX-m11Vrmjjus8w", "stars": 5, "date": "2012-04-22", "text": "Why everyone in the valley doesn't use this service is beyond me. They carry every quality pet food manufactured, their prices are competitive, they deliver...FREE... no matter how small the order...right to your door....what a deal.\n\n I've used Goober for a couple of years they have never missed a delivery, never been late. Great customer service, and the ladies that answer the phone really know their stuff! Have a pet with allergies... This is your place for quality pet food, they will aldo have lots a good suggestions on your pets diet.", "type": "review", "business_id": "cIPzndsbagQGj9U1sLqLtA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "kom_byw9fPdVzw7Mw_C4HQ", "review_id": "z0oUqFrS8x2Dt7NPXpb2QQ", "stars": 3, "date": "2009-03-11", "text": "Had a friend invite/take me to lunch here at The Mission. The physical place was great! I had the arepas which were good, not great. My friend had the tacos, which immediately upon being served them he realized he'd have to order something else (small portion).\n\nMy portion for the arepas was plenty as the venezuelan sandwich itself is filling, but also came with a mix of regular and sweet potato fries, which were good. Actually the ketchup/dipping sauce was awesome now that I think of it.\n\nPrice -- hmm, a bit overpriced for lunch in my opinion, but I suppose that is Scottsdale. That's really what was the difference between a 3 and 4 star for me here.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h4ksd-CZ-TOePt0DTgMggw", "review_id": "Cll6IAD9RbWdJaypnLmvew", "stars": 4, "date": "2011-12-12", "text": "What a great find! We purchased a deal chicken for this restaurant as we had never tried before. We had an absolutely fabulous dinner start to finish. We started with Caprese salad and stuffed mushrooms both were very good, then for entrees, we had Chicken florentina and Pasta romantico. Both sauces were the best we have had! The atmosphere is like you are in Italy. I would have never figured from the location but we will be regulars.", "type": "review", "business_id": "hqVbmZNLTdR2y7G7oJu9vg"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "w4suxL1zlxsihVlugZZDAQ", "review_id": "cPoLz2KNAgIZ1Y7n6ebI5Q", "stars": 5, "date": "2010-11-04", "text": "Blue 32 wins my MVP award. I practically lived at this place during the Giants World Series run, and loved every moment of it! \n\nDespite the fact that I am still stuck in an orange and black-out World Series Championship daze (that will probably continue for at least another month or so), I must up the rating of this place to 5 stars because Blue 32 is now my favorite sports bar in all of Scottsdale. The service is top notch and the atmosphere is excellent for game watching.\n\nHere are the main two reasons why I will keep coming back here: 1. Food - This is the best bar food ever! You must try their onion rings, they are crazy delicious. Also if you aren't in the mood for fried food they have tons of healthy options as well. 2. TVs - Sports fans, it doesn't get much better than this when it comes to TVs. Outstanding visibility from every angle of the restaurant. No sports bar in Scottsdale can compete with Blue 32's TVs.\n\nGo here for a game and you won't be disappointed. I decked myself out in orange and black, screamed, jumped around with excitement and just all around enjoyed myself while hanging out in the bar area during the games. Overall, Blue 32 is a high quality sports bar and you've got to check this place out!\n\nP.S. GO GIANTS! =)", "type": "review", "business_id": "01cEFI5Pq_RyEwM3GSTopQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d0j-icp2cCAn27r3ovR7Pw", "review_id": "CAAyuzX3Sln--N_9UkFUEw", "stars": 5, "date": "2012-11-02", "text": "Harvest hash is incredible - ask for their house made BBQ sauce on the side. \nVegan raspberry banana bread French toast!!! Sooooo good!\nIt's a busy place on a Saturday morning but they work fast and everything runs smoothly.\nA gem!!!", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0-TxcfXJmLuK4sbVhCF-MQ", "review_id": "TGHLCjCkzee94TTh1CN6nA", "stars": 3, "date": "2008-11-09", "text": "Ok, Stingray has it's high points. It's trendy, hip, and might just explode with young, beautiful people. The atmosphere and decor are nice, but that doesn't completely make up for the fact that the sushi simply falls around the mean. It's average. The menu has a nice selection of rolls and other dishes, and they're good, just not...great. We had a couple different specialty rolls, a tofu dish, soft shell crab, and tempura. Overall it was fresh and well-presented and halfway between actually authentic Japanese and some American Asian fusion food. The bar is crowded if you grab drinks while waiting and the bartenders weren't really fabulous in any way. Same goes for the servers who lack attentiveness and decorum in general. For a place with such a wait, huge crowds, and pretentious hostesses, I'd expect a little more. The curved booths along the sides are nice, though. Oh and, beware, in regards to the well-earned and deserved \"scene\": you might just see/run into every person you want (and don't want) to on a Saturday night.", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "NJ4kbLCgdHI9i_D3uSmE_A", "review_id": "nw16hNLJxk3w_L8s6lgpTA", "stars": 2, "date": "2012-02-29", "text": "I was so excited to try these cupcakes, but I've got to say I was pretty disappointed, especially after waiting in quite a long line. I am a cupcake fiend, but they were not nearly as good as I thought they would be. I got 7 different flavors and I didn't think they were very sweet and, cake wise, they all kind of tasted the same. The frosting wasn't all that great either. My mother and kids tried them too, and didn't think they were all that great. Don't get me wrong, they weren't awful, but I'd never go back. I tried them and now I'm done. I'd rather save my money (and my time) and bake my own cupcakes.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q0ojWfF55h5Zl_dUSPK2Rw", "review_id": "PQmwqtLi9eYZXQmrl3gTsg", "stars": 1, "date": "2011-11-01", "text": "Banfield is okay for routine check ups for maintenance and preventive care. That is why they offer a \"wellness plan\". When it comes to your animal getting sick, I would go elsewhere. It should not be called a Hopital. The doctors are there for profit only and do not show any care for your pet. The vet techs care, but the doctors don't listen to them. This place is lacking ethics when it comes down to making important decisions when it comes to your pets health.", "type": "review", "business_id": "6S5EHLFQXnaw_Q0dk2OxtA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "ggEHaGGCiUVmE2N5iZy6DA", "review_id": "tVah6UCN4p-jOCqh1jMDgw", "stars": 3, "date": "2010-08-15", "text": "For a pretty yuppie place, Desert Ridge has a decent enough assortment of shops, assuming of course you can find them. Sure, you can theoretically pick up some new accents for your living room, a new pair of shoes, some books and the materials to make new candle rings in one go after which you involve yourself with movies and a beer, but you may give up in frustration before you ever find a place to park.\n\nI dearly hope whoever laid this place out is no longer in charge of such projects. There is no logic whatsoever to the layout. Trying to drive between the lots can verge on nightmarish. Needlessly huge islands in the parking lot put leaves in the way of ever finding what's across the way, so navigating the place on foot is often out of the question without even taking the Phoenix summer heat and wretched drivers into consideration.\n\nDesert Ridge probably isn't going anywhere. I've never been there that it wasn't busy. It's almost impossible to avoid if you have any significant shopping to do. But, the restaurants here don't tend to last long. They come and go before Yelp can ever get to them, leaving an endless strand of big box outlets and bastions of poor fashion sense.", "type": "review", "business_id": "QB1dMlATwesPf6rrJGLQww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "szbTVEtATfn8f9GxbGGO5w", "review_id": "CXw5W8StPoZ-Zfz3fHIp9A", "stars": 3, "date": "2012-04-03", "text": "First I will admit to not being a very impartial critic here-I absolutely adore a good bowl of ramen. Although I've not been to Japan I've been fortunate enough to visit some outstanding ramen houses in Seattle, Honolulu, Los Angeles, Chicago, and San Jose.\nWhile I think this is probably some of the better ramen I've had in Arizona, unfortunately that's not really saying much. It was okay, not great.\nI ordered the miso ramen with chashu hoping against hope that I'd have a reasonable facsimilie to Santouka's spicy miso available in the Mitsuwa stores around the country-drool..... The noodles were decent, though I wish there was more of them. The broth was not very miso-y and lacked the depth that really makes the ramen bowl. The chashu was really the weak point, sliced thin pork with no real discernable chashu quality. The accompanying vegetables were fine although I wouldn't say it's what I'm used to/looking for.\nIn short I'd say this is Americanized ramen-and no, not the cheap junk from the package but suited more for an American palate instead of leaning toward authenticity. No fish cake or bamboo shoots, none of the cloudy unctuous broth, no pork belly chashu.\nThe place looks great and the staff is great, I wouldn't dismiss it but Republic doesn't get a fervent recommendation either.", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "DvznMRQl0tQoMkenXIX1eA", "review_id": "l1pDIB6AwotEH_N35sN57w", "stars": 2, "date": "2011-08-16", "text": "Waited for Mad Men characters to walk in! Seriously? Went here last night for the first time, ordered 3lb stuffed lobster, stuffed with crab & scallops, lobster was tougher than nails, scallops were tasteless, crab was ok, charged an additional $15 for this stuffing but neglected to tell us until after I questioned the bill. Hubby had a 3 lb. not stuff lobster, but were tough, questioned it and was told \"they are sometimes tough\", Server was great! They have absolutely no idea how to make a dirty martini! The ONLY good I can say is that the bread was great. Not going back here, seemed to me that the crowd in the bar was well over 70 and the crowd in the restaurant was mixed! Reservations? Not needed at all, the place was empty.", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "oSIYpve7KBefY63Dc-jGag", "review_id": "1ZMeRTsPVkhBBch0UnFiUA", "stars": 5, "date": "2008-03-25", "text": "Every time I go into this place its with good times and cheery mates and I leave the wiser with a pint of fresh brew and some of the best food. \n\nTo make a great date, go to the Phoenix Rock Gym first and then climb the ladder on the back wall and walk in around the back...Great times for every one!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MGYI7Ip_hs6TIt4goS_mbA", "review_id": "fEVIIMjwaFJmjuC4BboVzg", "stars": 5, "date": "2010-06-07", "text": "I am from Chicago - and the italian beef here really is perfection. Add to that the friendliest people ever and the amazing hotziki with fries- and they've got me forever. Their falafel wrap is insanely good and the patty melt is to die for. I could eat here every day - and I practically do!", "type": "review", "business_id": "-ftQeUsqwDkExRg6IYrubQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8DqQNOVzZZqSCHdXI945eA", "review_id": "_7IJAWxTgGA6ir8mkV7f7Q", "stars": 5, "date": "2011-09-10", "text": "Super friendly. Joe was there greeting everyone, refilling coffee, and sharing how we uses local Arizona suppliers. Great diner food and decor. Loved the biscuits and chorizo gravy. Will definitely be back.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lk9OBp3_I00LaSU_JXktTA", "review_id": "nXJttm45CqOifiBnZca75Q", "stars": 4, "date": "2012-05-29", "text": "Dr. Plotnik was great, took a great deal of time answering all my questions and explaining everything I was unclear about. I will say some of the office staff weren't the friendliest, customer service oriented people and it did take 1 hour to get from the waiting room to the exam room. Overall the most important aspect is quality experienced care for something as critically important as your child's vision.", "type": "review", "business_id": "P7meKfzM0rC8L54A0fkroQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "FAxy_JuEOhhZl3C10LMY1A", "review_id": "UOXgbciGKe1ZYMN6F6zt9g", "stars": 3, "date": "2011-04-29", "text": "1st off I just want to say that i do actually think the food here is pretty good tasting, regardless of how brown the guac looks. My problem is the service, everyone who works here is either lazy, dumb or a combo of both. At Subway they at least pretend to be helpful, here they ask you the same questions over and over (ex. I have been asked what toppings 4 times and I only had 3 things added so really...) and still mess up. One particular time my friend got a roast beef sandwich and half was roast beef half was pastrami, how is that even possible!? Either way if they dont shape up they should change their name to Port Hole because its run by a bunch of As*holes.", "type": "review", "business_id": "wzQAmzQopWcfoCG8lfiE_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "WF-MyenfDFfgO2OvvM3f_Q", "stars": 3, "date": "2010-06-13", "text": "Stopped in here for lunch the other day. I ordered the Marzen barbecue chicken sandwich with garlic fries. The sauce on the sandwich was good but the chicken breast was pretty tasteless. The garlic fries were a winner!\n\nService at the bar was fast and friendly. It was nice to have a TV to watch as I ate lunch.", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "RLT6kLx8dZc1BMP_25UYKQ", "review_id": "shWaAaaUyKnlPde9rVg0Vw", "stars": 4, "date": "2011-06-17", "text": "If only they had a place like Tryst Cafe back in California! The first and only problem I had with the place was the fact that I wanted nearly everything on the menu. They have amazing specials, and while the Monte Cristo breakfast sandwich and glazed-walnut French toast looked amazing, I was hungry and opted for the Hawaiian breakfast.\n\nThe food came pretty quickly and was warm. We didn't order any drinks because the fresh-squeezed one's are so expensive it's actually cheaper to buy one of their smoothies. The hawaain special- composed of 2 fried eggs, shredded Kalua Pork, cabbage and rice- was tasty, but a little bland. They gave my brother and I (we ordered the same thing) some soy sauce, but I would have preferred a nice dollop of ketchup instead of the sodium infested kikkoman. Other than that, the dish was delicious. They fried the eggs perfectly, the runny yolk making the rice and pork taste even better! I usually only like my eggs over-hard, so it was a pleasant surprise.\n\nMy mom opted for the healthy option, getting the yogurt parfait. In my opinion, this was the disappointment of the table. My mom claimed that she loved it and that it tasted like Beijing's yogurt. My mom must have some really refined tastebuds because all I tastes was some store bought low-fat vanilla. The granola was good and the berries fresh and few. What can you expect for $5? In my opinion, a little better than that. My dad, opting for the unhealthy option got the huevos rancheros. He ate it so quickly I didn't get a taste, so I can only assume it was tasty.\n\nOverall? Great choices, great venue, and good food.", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "x3snNDhyewv4q9fM6NxgAA", "review_id": "q10iRWpkiI8mr1MO6v9Alw", "stars": 4, "date": "2010-04-07", "text": "I've been here quite a few times, and always love their food. Pretty good servings for the amount of money. Burger yesterday was a bit over-cooked, but the fries were great as always. I love how small it is - friendly staff and it always seems like the whole family is back there cooking and serving. Would definitely recommend. \n\nSo all in all, great for the money, and convenient because it's close to my work, but I wouldn't drive across town for it.", "type": "review", "business_id": "lvpXyfTDF5WZnjzc36r5Wg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HcRkWWnGJ_7iYJs30zXrxg", "review_id": "XyY4o5Qr90cLXUfbB83gKg", "stars": 2, "date": "2011-07-02", "text": "As much as I wanted to like this place, I just can't I've it 3 stars. Honestly I HAD to compare it to Postino's since 1. In my eyes they have the BEST bruachetta and atmosphere and 2. I heard the living room copied their style, and unfortunately it's a bad copy. They did get the atmosphere/ambience right. However the bruchetta not so much.\n\nWe tried the steak, tomato and apple fig. The apple fig was delisous, but u can't really go wrong with that receipe. Been there done that. The tomato was a disappointment. Seems like they tried to do their own unique take on the original and for me it just didn't work. The steak was ok, unique yes. But I could live without it.", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jlr3OBS1_Y3Lqa-H3-FR1g", "review_id": "j_SinrUQp8TC_9ItSe1frQ", "stars": 1, "date": "2010-11-17", "text": "marginal sushi meets uncomfotable seating. we used restaurant.com coupon and got stuck wtih an 18% tip...with no service, seriously??? felt scammed...think we actually spent more based on that tip than had we just paid full price. avoid this one, just not worth it.", "type": "review", "business_id": "rwQIBAM_kHtVl1Ks8Flexw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_Q86NbrhbBGYcH1yqqvnuw", "review_id": "oEXUlIimWWJJavY-Un93cQ", "stars": 5, "date": "2011-01-02", "text": "My favorite Mexican food. THE BEST BEAN BURRO ENCHILADA STYLE IN THE WORLD (yes I've tried them all) Get the red enchilada sauce, and a tortilla on the side.", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "vJw_UJQpR7eUI1fLqoZg9A", "review_id": "hT5m9n1Yzgegd6BeJiwmmA", "stars": 5, "date": "2011-01-09", "text": "Fuego Bistro has quickly become one of my wife and I's favorite restaurants! We went with a large group the first time and they were great about us having 7, including two smaller children. Last night my wife and I went back for a date night and had the most wonderful time! Jeff, the owner, is fantastic and always wants to make sure you have a great time. The sommelier was also great. He talked to us about the wine, gave us some tips for pairings, and even had us take a sip of wine while chewing our food. It totally changed the character of both the wine and food.\n\nSpeaking of the food, the short ribs are amazing! The best sides we've had are the creamed corn and the chipotle mashed potatoes, but the maple chili carrots and the cornbread green chili casserole are also very good!\n\nThe cocktails are great and the happy hour menu is pretty reasonable.\n\nWe will definitely be going to Fuego on a regular basis!!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "hgRNpDq9_l_g36i46017fw", "review_id": "uUm1XeSUWsnbVaZSid4lCA", "stars": 4, "date": "2011-06-02", "text": "This place is nice. Great view, excellent service, top notch meal. The only thing I can really complain about is the portion size. I would have liked them to be a bit bigger, but I was the only one that felt this way, maybe I eat too much?? I had the bone in porterhouse steak and it was pretty darn tasty. They serve the steaks with a variety of sauces to dip into, some of them were amazing, others were not. I would for sure recommend this place to someone looking for a 5 star dining experience. Make sure you bring your wallet cause this place is not cheap! Our meal was about $450 out the door for a table of 4. We ordered 3 apps, and 3 sides also and a bottle of wine. This restaurant is operated by Chef Jean George, I have no idea who he is, but the waiter and hostess both swear that he is someone to know. Judging by his cooking, I think I would get along just fine with him. J&G is inside the Phoenician Resort in Scottsdale, I was staying there so I figured I could add this place to my list of great American Steakhouses. My final opinion of this place, it is exactly what it says it is. They meet the B-Stew standard for a fine dining steakhouse. Also, there are great views of Camelback mountain. One last thing, the hostess at this place sold me on coming when I called for information. Very well trained and passionate about her job", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "PWjdlug88aWpFEfPMJbSVg", "review_id": "xsCpYN_4gmRi7ZcnW_hHfQ", "stars": 4, "date": "2008-11-11", "text": "This place is usually packed late after coming back from Dos Gringos or whatever since it's right around the corner. There's a reason for this, their pizza is good. Big, wide slices... in fact their slices are double what you'd normally get anywhere else. Thin crust, chewey crust, great sauce flavor. If you do get pizza here, order it by the whole pie. You won't be disappointed. I only will order a meat slice if I know it just came out of the oven. Personal preference and this is for any pizza by the slice joint.\n\nWhen I was there Monday night, the owner was singing softly. It reminded me of my mom when I was a little kid and how she used to sing to me............ i told him to sing more. I'm kidding, it was a woman singing.....so I'm not knocking this place, just pizza by the slice places in general.", "type": "review", "business_id": "D_VXbq6sCuqXuBbdPo9zpA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "TZ_k-BbXS6sEMiWQXlPnMA", "review_id": "N5WJGU_bGR2PeKSbtDBvRA", "stars": 4, "date": "2009-04-25", "text": "From the get-go we liked this place. The fried dumplings were wonderful and crispy on one side and lovely and soft on the other and the dumpling sauce was amazing and just spicy enough. My husband refused to let it go and finished it over the course of our meal!\n\nOn this, our first trip, we had Tangerine Beef and the Crispy duck. The tangerine beef sauce was sweet and a bit tangy with a touch of spice and the beef was crispy and very tasty. The duck was amazing. The tastes were multilayered and well balanced and the crispy coating was salty and peppery and almost buttery under it all. Together it created a very complex savory and sweet dish with a kick of spice at the tail end. The flavors in the duck were very reminiscent of Cantonese food in Shanghai...this is the first time I can say this about a restaurant in the states that isn't located in a Chinatown. \n\nThe wait staff was friendly and very helpful, welcoming us back and giving information on some local Asian markets as we left. I highly recommend this place!", "type": "review", "business_id": "wUPHVWGmoBU_gykHl1Kzxg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "NvDR3SPVPXrDB_dbKuGoWA", "review_id": "jKWqnOJTtGoNRiZlh2xIuA", "stars": 4, "date": "2011-06-13", "text": "I got to give In-N-Out Burger some love. I've been wrestling with a rating on this place for a long time. It's definitely a WIN when you can feed two hungry college aged boys and yours truly for under $15 bucks with some delicious food. They always get your orders right, keep the place clean and are UBER Friendly with fresh delicious burgers. No wonder this place is always mobbed well past the traditional lunch hours with families. Keep up the good work IN-N Out Burger!", "type": "review", "business_id": "g9jX2oXQr8zrOQgynYnYjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "r70p5MYt2O549iFAxw6RdA", "review_id": "53Sog6eGWgS5Jt9wuxe07w", "stars": 5, "date": "2010-04-10", "text": "So I knew ahead of time about the wait. So we got there at 3:30 and waited for an hour and a half until they opened. But we were able to be seated as soon as they opened.\n\nLet me just say that I've never had anything even close to the kind of pizza that we got. It's outstanding! \n\nI highly recommend the caprese salad, antipasto and the rosa pizza. Though I'm pretty sure that it's all amazing, no matter what you get.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "ALcK_eqiFaln62tWAkvnZA", "stars": 3, "date": "2012-08-24", "text": "Haven't been to a Chili's in FOREVER but those darn gift cards get me every time. Stopped by today for dinner and we ordered the 2 for 20 special (an app and 2 entrees). \n\nThe food was alright-we ordered the Spicy Chicken Fajitas, the Bacon Chicken Quesadilla and started off with the Onion and Jalapeno Stack. The jalapenos were lame but everything else tasted great after a long day at work.\n\nWhat was not so great was the service. Two waiters introduced themselves (I figured one was training) but neither bothered to stop by and fill up our drinks or really check in. The girl who served us seemed to spend most of her time on the other side of the dining room and the teen host actually ended up being the one to refill my Strawberry Lemonade. So thanks to the young dude manning the desk and NOT my slow waiterS.", "type": "review", "business_id": "VGOwmoYnmhH41IOQlB_Ecw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "qbzVVyk9w84pG5mfYU6fng", "review_id": "C9lHc7zQxyHMshDALzm1bw", "stars": 2, "date": "2012-08-05", "text": "Even though this is my home gym where I train for my shows...I really starting to not like the people here no more! The GM was very cool with me and since he got transfer to a new LA Fitness nothing isnt the same no more! Everyone here is a meat head witch I dislike!", "type": "review", "business_id": "fRa4l3Rkh_yPq9WrKD82AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "OneJTqHJ74WDz2f7qDH_PQ", "stars": 5, "date": "2013-01-04", "text": "Love my Chick-fil-a! Wow, they have a system and it is super fast in the drive thur. Amazed and they are always super friendly! They always get the order right!!! ++++", "type": "review", "business_id": "ihMUU9D2mcgrp7fi8lmqJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onCVo3jNuKsSk8HcpDE1sQ", "review_id": "V_fuMPwTXi2bUxND--zReA", "stars": 4, "date": "2012-01-10", "text": "I'm giving 4 stars because I just love to find this many artifacts of the basket and clay varieties when I visit a museum. It really amazes me, the craftmanship of our ancient peoples! This small museum is not part of the Science Museum circuit, so I wasn't able to use my discount or member card, but for $6 I felt it was worth the trip to check it out. Some exhibits in the kids' room have been duplicated and enhanced in the main museum hall, which was fun to compare. The outdoor area is actually a preserved portion of a reservation belonging to the Hohokum Indians and there are examples of the water distribution canals and housing styles from 300 years ago along the Salt River, AZ. Great, informative afternoon!", "type": "review", "business_id": "yOVydU0J5-hKODrKGhH4yg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "iS2TK7YwTPCBM1q_xprgVg", "review_id": "1escFm4Zg_7YU1AE0C_mUA", "stars": 1, "date": "2011-12-31", "text": "DO NOT GO HERE. One of the worst restaurant experiences I have ever had. The setup is a little like \"Pei Wei\" where they take your order, give you a number, and bring the food to your table. Placed our order, and had to stalk other tables and hover over people eating trying to wait to get a table. Waited a long time, all the while others who ordered after us found seats and got their food before us. Servers kept bringing my food to me since it was ready, but I still didn't have a table, so they kept saying they would \"put it under the heat lamp\" for me. Finally eventually found a table, and then kept waiting and waiting for our food, which the manager claimed \"he had them remake\" since it was getting cold. My food came, and it was cold and disgusting. We had to get going since we were going to a show, and my mom's food still wasn't there. The staff asked to see her receipt, since they couldn't find her order. She went up to the manager and said she just wanted her money back since we had to go (it had been 45 minutes since we placed our order). He said her food would not be ready for a while, and gave her some cash, and we left. My mom never even ate, and my food was horrible. I would NOT recommend this place, it's awful.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3p_muaP7a652QYtHUZNsFQ", "review_id": "OzLuYcpWmm-5cq8RrCqReQ", "stars": 5, "date": "2012-10-28", "text": "Excellent", "type": "review", "business_id": "TpQMR-JFE5V0UPzTjjuwFQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "bUxKAy-DNk8yuOxZto4bdQ", "stars": 4, "date": "2012-09-11", "text": "Back in August we went on a Sat night ..we got our 'skate on' good !\n 8 bucks total ( But i have my own skates) 2 dollar skate rental ( i think) \n\nGreat Dj was spinning classics ..i love roller -disco .totally took me back to my disco days ..also played a great mix of music in general .\n\nit was super fun.\nplace needs some sprucing up ...but it wouldn't stop me from returning ,especially for some old school fun.", "type": "review", "business_id": "M9t5569pgvJYurC8hX0E1w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "YiqS9_jvHXSS0wDcv4uDNg", "review_id": "QBnTKSPdVQRSF-jwQaovbg", "stars": 5, "date": "2011-11-14", "text": "Seriously, if you're looking for a place to get your knives sharpened or buy some cool professional kitchen gear, look no further.", "type": "review", "business_id": "BVo6wBuFwPH3QVqs8-JEDQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UuYVbqDgndlqJvX2yjdS6A", "review_id": "sqwiqP_dqCVIG-dFXL6P7A", "stars": 5, "date": "2010-12-16", "text": "Of course it gets hot in the summer. You're going to be watching bands in a basement with a bunch of people and depending on when / what's going on there might be some idiots 'mawshing'. \n\nSound quality is great for the size. Glad they reopened one of my favorite venues. and YES everybody has gotten lost the first time they tried to find the Nile. The main & front room have shows as well.", "type": "review", "business_id": "UWc3-FI59SjoikVw5ombVw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "VcnHKNRZy2gWD8fJ_KIg1Q", "stars": 3, "date": "2012-05-05", "text": "Sports Authority is like the Walmart of sporting goods stores. No, wait, that would be Big 5. I guess they are more like Target. Reasonable prices, and products that don't completely fall apart the first time you use them (but they are still made in China) and no service whatsoever. And Dick's is more like a Dillard's or Macy's because they have the higher end brands and employees that are older than 16 or 17 years old. So then I guess Bass and Cabela's would be more like Nordstrom's? That's where the really nice stuff is but you usually walk out without purchasing anything unless they are having a sale. Except Cabela's is sort of specialized so I think that would be more analogous to something like an Ann Taylor.\n\nOk, I know I have gone way off topic here but I think I have made it abundantly clear that I am not a regular customer. But I do occasionally come in to buy gifts for family and friends. On my most recent visit, I came in, wandered around for about 20 minutes and then found what I needed (with no help whatsoever from staff), paid and left. A two star experience for sure but I have to give them an extra one since they offer a discount when you check in thru the Yelp app on your smart phone and so that saved me 10 bucks.", "type": "review", "business_id": "P36EyL9xJ72-Ti004epZvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mjnZcvOY0xPGTIBzHIlUWA", "review_id": "4g5rtUHokBnCPW-_0x3WrA", "stars": 4, "date": "2010-10-05", "text": "Really good barbeque and steaks in an old school setting decorated with baseball memorabilia. The service was tight also which is always a big plus. The food is definitely artery clogging, so i'd reccomend it only once-in-awhile. \n\nThey have some great price points in here modest wine list. Oaky cabernet sauvignon for beef and go for a zinfandel for the barbeque. For the prices, you can't go wrong!", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "kbJNDcsBE-U_GiOY43hwwQ", "review_id": "E8GN8LKaN7nL4jn_GaVblw", "stars": 5, "date": "2010-05-23", "text": "5 BIG STARS\n\nFor service and quality of meal, restaurants really don't get any better than this. Multiple servers, dressed in NY black are constantly there for you.\n\nThis restaurant prides itself in using local products & blending them into traditional meals, ala Alice Waters, and they do an excellent job.\n\nFor starters, we had (are you ready?):\n-\"Macerated Local Vine Ripened Heirloom Tomatoes, Fossil Creek Goat Cheese & Mascarpone Tart,\" including Buckwheat & Saguaro Seed Tart, Basil foamed from the garden, Black Ice, and Gila River Olive Oil; and\n-\"Pan Flashed White & Green Asparagus with Chanterelles & Cholla Buds,\" including Chanterelle Mushroom Fondue, Desert Quail Egg (sunny side up), Red Currents and Aged Sherry.\n\nAnd that was just the beginning! For dinner we had:\n-\"Veal Ribeye Rubbed with Sandalwood, Dry Mole & Green Chile Sand,\" including Mesquite Cooked Desert Fruit Chutney, Truffle Frites, and Rutabaga Cobbler; and\n-\"Local Pecan Crusted Colorado Lamb with Native Seeds SEARCH Mole,\" including Pastry Tapenade of Fennel, QC Olives, Eggplant, Wild Mushrooms, Heirloom Tomatoes & Iitoi Onions.\n\nEverything was exquisite!\n\nThis meal was to die for!\n\nAny complaints at all? Well, yes, but very minor. This place is actually in a Sheraton, but I guess that insures a good stream of patrons that can afford such meals.\n\nAnd the decor? Not very good. It needs a serious MAKEOVER. Wall-hangings, window treatments & carpeting aren't much.\n\nSo there you are...", "type": "review", "business_id": "T9iBSa4pxYXP129pHlt5Sg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "51A_Hrg05SSVIN1mUvLw0Q", "stars": 5, "date": "2012-09-13", "text": "Gymboree, many years ago I brought my first son to Gymboree quite often and really enjoyed. Never thought I would be back, but now we have another gymboree tike and he loves it. \n\nI am very happy to have been reintroduced to Gymboree and have already made plans to go again with my son next week. The instructor made it look easy and really communicated very well with both parents and children. \n\nThinking about Gymboree now, my only regret is that I know someday my boy is going to outgrow it, and I want these times to last forever.", "type": "review", "business_id": "ie3Z-b4O7109XG_PidosKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kS-zOetVeNWpm7f0Cie4-g", "review_id": "qj2Bu0koY7Cc6oHpTkwSZw", "stars": 5, "date": "2012-01-03", "text": "Honestly, I can't remember how I found out about Butter & Me, but I'm glad it happened.\n\nMy fiancee (now wife!) and I are addicted to cupcakes and we decided to swap the traditional wedding cake for some delicious cupcakes. Kelly at Butter & Me did not disappoint. She was absolutely fantastic to work with and has *the best* cupcakes in the valley! Believe me, we taste-tested a number of other vendors and everyone else's cupcakes tasted like small, dry, cakes.\n\nThe cupcakes from Butter & Me were exactly what we were looking for. They were perfectly moist, beautifully decorated, and there are a ton of delicious flavors to choose from!!!\n\nI cannot recommend Butter & Me highly enough! The Yelp review sums it up: \"Woohoo! As good as it gets!\"", "type": "review", "business_id": "MRgTo4MA3f1MB_VL3IVh5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CftynqF7mHEpHHWQsUr5nw", "review_id": "ivXMJ8ObEqsjHY8SyYQGZA", "stars": 5, "date": "2011-04-14", "text": "Bookmans is Great! They probably don't need another positive review but so what. I use Bookmans for recycling books I've read and for buying used books for myself. All I can say is that I like everything about the way they do business. They have great people working there. The store vibe is very positive. Their prices are very fair and what they pay for your used books is incredibly fair, plus you know that you've made a positive contribution to our society by recycling books that others can enjoy. Do yourself a favor and stop in. Enjoy!", "type": "review", "business_id": "xLCbkTYQaP-nij6mEfaw7A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "mQekDIvOCHR8bPLH7Rpbpg", "review_id": "5EDn6VZBYNeCGS2ufh39_A", "stars": 4, "date": "2009-04-11", "text": "I am definitely quite shocked at some of these reviews. I disagree with the lack of flavor, and the tasteless dishes some reviewers experienced while eating here.\n\n I recently moved over to the N. Phoenix area, and while craving some Vietnamese food a few months back, I decided to browse \"Yelp\" to find it. I came across these reviews, and decided to check it out regardless of the poor comments of this establishment. I phoned in my order without looking at a menu, ( Chicken Pho, Egg Rolls,& Spring Rolls) nor knowing where they were even located, I eventually found it in the little nook of the Fry's shopping center. I walked in to a very tiny little restaurant with a cute little man standing at the cash register holding my wonderfully smelling food in hand.\n\n When I got home, I realized that he had forgotten to add the Noodles (which obviously is the biggest part of this dish) I was a little miffed but eventually got over it, once I tried the appetizers we ordered,and the wonderful flavor of our pho. I knew it was such a harmless mistake so I didn't hold it against them. After consuming our wonderful and inexpensive meal I came to the realization that THIS is my new Fav Vietnamese spot in the N Phoenix area.. I've eaten their at least 5 times since I found this place in Jan. That says something in my mind!! \n\nIn my opinion they beat Pho Bang, and Avina HANDS DOWN!! It's clean, inexpensive, flavorful, and definitely NOT tasteless.. A definite treat if you ask me. Speaking of which I think I'll order some now :o)", "type": "review", "business_id": "L-GfuOmn9mv55571uXvf2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mA-7ol53a2RrfsS0oM5mEQ", "review_id": "V8ZrnbiYZ4kwEZucG3LhVQ", "stars": 5, "date": "2012-10-21", "text": "Outstanding customer service!!! Great camping firewood bags!!! HUGE bags of high quality, long burning wood for $10!! Cannot be beat!!!\n\nCash, check or use the ATM they have in the office ($2 fee).\n\nhttp://www.bbfw.com/", "type": "review", "business_id": "GJ7gPJGl0r-1jPhp2Qz8BA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DYPvo7JQhl2-qT2OpshyTA", "review_id": "kK2qeR7RH_gc8ONbrEwCVQ", "stars": 2, "date": "2011-01-28", "text": "I've had Five Guys before while in Pennsylvania and thought it was good. Not any better or worse then In-Out or Fatburger. Tried this location the other night though and was disappointed. Lettuce was slimey,buns soggy and the doneness of the patties, inconsistent. I'm not completely writing them off but will be in no huge rush to return.", "type": "review", "business_id": "MpohnCC0uQNj7DZWaBFSgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OGF6wKSu7qe2EzK9p-01kw", "review_id": "oIooKl1DNBBEml4k6KwODg", "stars": 3, "date": "2012-03-24", "text": "Sol Mexican Cocina just opened this week, so I'll take that into Consideration. Beautiful place, but give this place time to get there Act together. Checked in with the Hostess and was told 55 Minute Wait. Ok, found 2 Seats at the Bar and that was a very Positive Experience. Stacey our Bartender. was Terrific, she did everything perfect & the Drinks were Great. We ordered Guacamole and it was the Best I Have ever had in a Restaurant. Was followed by a Carne Burritto which came Cold & Was Comped.After sitting at the Bar for over an Hour we were never Told a Table was ready. The Hostesses are very Weak and need Much More training. My Suggestion is hire Older More Skilled, Expereinced Girls. who Know how to Manage the Crowd.The Place was Extremely Busy and Should do well and will Definitely give it another Try.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "8gNfSs8AlwxOd4m2lQigXw", "review_id": "XUOcAWHyHQIEe4p7tE_QoA", "stars": 4, "date": "2008-03-13", "text": "I have stayed at the Firesky on a few different occasions. I love the place. Granted, there are nicer, more luxurious places to stay in the area, but for the price, you can't beat it. The pool area and bar are fantastic, the staff is super friendly (which seems to be the case all over AZ), and the lobby is very cool with its ostrich skin couches.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z3c7xGRfeV-uMkSbAzxV9g", "review_id": "GJGUHAAONtBSBj53cnhxXg", "stars": 5, "date": "2011-11-17", "text": "I LOVE THIS PLACE! It's so nice to be able to eat here whenever it's chilly outside. Actually, allow me to be honest, I probably would eat here everyday but I settle for 1-2 times a week.\n\nI get my Pho with extra meatballs and no onions and they make it perfect for me each time!!! The folks are awesome and no matter how busy it is everything come out SUPER fast! You know a girl loves to eat in a timely manner with my hectic schedule!\n\nThe Springrolls, the crab puffs the chicken fried rice all amazing too! For a good time time and warm feeling after a FANTASTIC meal this is the best come winter or AZ summer time:)", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ryjqXdp68i2I9JPOpX9URw", "review_id": "nQH2KAvAeOJOYKX99TO3Cg", "stars": 1, "date": "2011-12-24", "text": "Just isn't very good.\n\nI don't understand why people give this place even three stars. It's rare for me to give a place a low rating, but, My Big Fat Greek restaurant is nothing but gimmick anymore and has gone from bad to worse. The food is not even close to any representation of what good Greek food tastes like.\n\nI've been to this place several times over the years. This location and others. It used to be just on the lower end of OK... it's never been as good as you can get from a 'Ma and 'Pa place. However, we went for lunch the other day and it's just gotten to the point I wouldn't even go back for a quick bite.\n\nWe ordered the garlic hummus, and it was overly full of garlic and not home made. It seemed to be loaded with garlic powder, as opposed to fresh hummus that just had roasted garlic in it. The olives we ordered were rough at best. UGH even thinking about them. Overly seasoned and not very fresh. The rice was over cooked and was so soft it lacked any sort of texture.\n\nThe first rule of good let, alone great food, is FRESH. This place needs a rescue.\n\nLess critical, but, I think an overall representation of what has happened to the place, the menu's were totally trashed. As in ratty, tattered, and dirty. The lamination was coming off them and they were dirty. \n\nDo yourself a favor and go elsewhere.", "type": "review", "business_id": "TQhP4vCMjvX527YMxPfuUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "5W-ruHmpkwLyI6LlanHstw", "review_id": "-yKcbjWSlmKC1zTMTfMR0w", "stars": 4, "date": "2010-12-15", "text": "Sometimes I think my love for Mongolian BBQ is TOO much. I could eat at places like Genghis Grill or YC's multiple times a week and never get sick of it. Hell, I won't go to chinese buffets if they don't offer Mongolian BBQ. It has to be one of my favorite foods. That is why when I moved to North Phoenix, it was a hard adjustment with there being none of the marquee Mongolian BBQ chains being up here. Then I found Stir Fry Paradise via Yelp.\n\nMy girlfriend and I went to Stir Fry Paradise on a Saturday after lunch hour. When we went in the manager(or owner, not sure) greeted us and made sure we had been to a Mongolian BBQ place before so we would know what to do. While we were selecting our food, she even made sure to help us with a sauce selection and let us know what combos work best. After that, she ended up cooking our food as well. She was really outgoing and helpful.\n\nThe food selection was pretty standard for a Mongolian BBQ place. Chicken, pork, beef, and turkey. You could pay extra for shrimp. They had a decent variety of veggies, but all I ever go for is pineapple. They offer three kinds of noodles for your meal and nine sauce varieties. In addition to the stir fry choices, they have a small sidebar of regular chinese buffet items. Normally when a place like this has this side offer, they are pretty bad and not edible. At Stir Fry Paradise, this is the opposite. My girlfriend and I both enjoyed a few items from the side bar. \n\nOverall, I would say check our Stir Fry Paradise if you're in the neighborhood and want some Mongolian BBQ. Good prices and great service make this a great local eatery.", "type": "review", "business_id": "bAkVxrXzYO3772VF6o0_cA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "20aES_-g5Vyqfzojn1ax9g", "stars": 3, "date": "2011-05-07", "text": "Good Indian food not great. Came in on a Saturday night, was craving Indian. Not busy at all. (Never a great sign). The samosas were the best in town, piping hot with a great filling that was redolent of spicies and not super mild like some other restaurants. The lamb korma and chicken tikka masala were okay. For some reason it didn't pop for me. It had nothing to do with the spiciness level, it was just missing that extra pop you get from a truly great curry. I don't know if the spices hadn't been freshly toasted, or if it was lacking a crucial pinch of love that day, but I wasn't feeling it. I left full but not quite satiated of my Indian food fix. And the quest for the best chicken tikka masala in town continues....(oh I should mention the interior of the restaurant is beautiful, the service good, but the prices a little steep for my taste)", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aBnKTxZzdhabTXfztH7WqQ", "review_id": "W_d9w7yr3koSUXHcoft_dw", "stars": 5, "date": "2012-12-04", "text": "I was visiting Tempe for Ironman Arizona and came down with pretty acute foot injury three days prior to the race. The friendly receptionist at Dr. Natcher's office understood the predicament I was in and managed to fit me into Dr. Natcher's schedule within a couple hours of my call. Dr. Natcher's is clearly both a great doctor and a great person; she is extremely competent, friendly, and sympathetic. As an runner and cyclist, she is also in tune with sports injuries and the mentality of an athlete. She quickly diagnosed the injury and prescribed an aggressive treatment protocol. I was in good shape on race day (due to her treatment protocol) and am so very thankful to Dr. Natcher for putting me in the position to complete the race in fine fashion. I was paying out-of-pocket, and was very pleasantly surprised by the cost of the office visit. I can't speak highly enough of my experience with Dr. Natcher.", "type": "review", "business_id": "cHURjSYCPpFiYQP639ZubQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "OwCEsC0-oRxsSpTHZ0rrvA", "review_id": "rYzOP5_LWimUy15531PYSg", "stars": 5, "date": "2011-06-05", "text": "My first visit to Sweet Republic and when I was done my first thought was, \"why did I take so long to come here!?\"\n\nI sampled a few of their ice creams and let me tell you. All delicious. In particular the mint chip ice cream was delicious. It tastes like fresh mint because get this... it is!\n\nService was quick and friendly. We got in right before a rush and let me tell you, the staff were able to handle it like pros.\n\nEach of their ice creams are homemade and you can just taste the love mixed into each one. You can tell how proud they are of their creations. I wont go into the kinds of ice cream they have but can tell you that whatever you choose, you will love.\n\nStop on down, took me 30 minutes to get there from Gilbert, and enjoy a cone or cup. Do yourself a favor and don't delay for 3 years like I did!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rPScjzbwBSkOjvhZyLgbFQ", "review_id": "8-4WSnjzZ7FpOGTYGiQ22Q", "stars": 4, "date": "2012-09-24", "text": "I have past this place a million times and always wanted to stop and I finally did. It was good. The only thing that was fabulous was the cheese crisp. It was actually crispy must places its just a soft tortilla with cheese, I can do that in my own microwave. I didn't have the refried beans but they looked watery and not so good. I enjoyed this place and will come back but besides the cheeses crisp it was average but good.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "q6__xfDZyi2N1h7AgXVjaA", "stars": 4, "date": "2011-01-24", "text": "Last night I made it in to Beckett's Table after hearing so much about it and everyone was spot on. The space is terrifically laid out very open and well decorated. We were greeted by the hostess and shown to our table. Our server came over right away with fresh water and menu's. So far so good. \n\nLaura ordered the Salmon which was excellent I am very picky with my fish being from Seattle and I would've ate that whole dish. The Cous Cous was great and a nice salad on the side to tie it all together. \n\nI ordered the Pork Osso Buco Confit which my server said was his favorite. I see why because this pork was fork tender and just falling apart. I really enjoyed the dish and the roasted veggies were great. I didn't even know what half of them were and I was still enjoying them all. \n\nI wish I had room for dessert because they had one I really wanted to try so I will be back for the Chocolate dipped bacon s'mores. \n\nOverall a great dinning experience and it's close to home so that's even better.", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "twZoTvWG92ntMVfEvbCnIg", "review_id": "EephTNpMOikw8nkbsWcU5g", "stars": 5, "date": "2012-05-04", "text": "We were craving Mexican food and since we were in the area I decided to check on my trusty yelp app on my phone to find a perfect food joint to check out. Sure enough, it came through for us and told us about this little gem tucked away in an area I had been several times but had never noticed it before. I am so very glad I tried it as it will now be my go-to place for Mexican food. The food is delicious and fresh and reasonably priced. The guacamole is a must try and the carne asada is so good. If you're in the mood for Mexican and in the area, I would definitely recommend this place.", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "82vsbM8ggZV4BVrtLB9s3A", "review_id": "mZZ3qNSJoeSazB5gyu1aYA", "stars": 5, "date": "2010-10-06", "text": "This place is one of my favorite burger joints. If you really appreciate a good burger, I don't think you'll be disappointed. Kobe burger, Double truffle fries, Creme Brulee Shake and just pure joy. First time, the burger was slightly over cooked for medium rare; but ever since I have been back multiple times and it's been prepared perfectly to my expectations. I do believe in second chances and they won me over. I don't get the mushroom on the Kobe; Meat is very tasty and flavorful, no need to add any toppings. The Samburger and Zinburger are very tasty as well. Last time I added bacon to the Zinburger, very good, and I do recommend that. The staff are very attentive to diners needs. I have tried a few of the Fox-RC and every time has been an excellent experience so far. (I hope it won't change). SF definitely has a unique and entrepreneurial vision in food industry which has, and will make him very successful.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZLPueep-BYurjm9V-feHrQ", "review_id": "3RyBNwY49LQD9_KQXeEf1g", "stars": 5, "date": "2010-01-15", "text": "Seriously soo good! Drove 60miles to come here about 5 times in the 3 months that I lived in AZ. \n\nI came here because of the triple D episode and it was soo worth it! Burgers, fries, onion rings, sweet potatoe fries and pizza are ALL GOOD! \nand check out their bathrooms.. its pretty cool too. \n\nTried Joe's Real BBQ, which is their first restaurant but it was just OK. \nJoe's Farm grill is def. one of my fav places..", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "99MEJTe8aVcbRax9wrpWpQ", "review_id": "-uhyMmKcxYMKhofrT6Ug_w", "stars": 3, "date": "2010-10-03", "text": "Not the best burger I've ever had, but a fun place to try with the coworkers on a Friday afternoon. I had the quadruple bypass and a few helpings from the all-you-can-eat fry station. Better than BK/McD's, but nothing to write home about. The waitresses were hot and they happily wheeled me out to my car in a wheelchair! But it's more of an attraction than anything else.", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "51-ZrwQODnpIX0dQEshZNw", "review_id": "8KCnY3Y_n0Yiz2E4Zy8Jzw", "stars": 4, "date": "2007-05-02", "text": "Green is pretty tasty with high marks for the strawberry soy shake. I do agree with the poster below that some items are hit/miss. My \"Artichoke dip\" was way WAY too spicy (I could not eat it). My 'eggless eggrolss\" were tasty but ..fluffy. They came with a sauce that i enjoyed. \nThis is one of the essential places for Veg food in the Phoenix area.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a_raVbErFAEx848zV-pgkQ", "review_id": "lgNmIQHXa_GffJ0JR7ZX3w", "stars": 5, "date": "2011-03-09", "text": "This place is awesome and it replaced Trader Joes as my new grocery store. The produce is plentiful and fresh, they have Boars Head at the deli, and they have organic options. The meat is way more reasonably priced than AJs. It reminds me of a small Whole Foods without the ridiculous prices.", "type": "review", "business_id": "5nahZe5bBYUbFWgEfwoNOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "CgChEdEM0NYLA8M-oDzaCw", "stars": 4, "date": "2011-08-07", "text": "I love the artwork. Its a tiny little restaurant crammed with a bunch of little tables and chairs. You go up to order at the counter, there's a salsa bar in the corner with a LOT of different salsas (most are not that great). They do bring you the food and you do get a basket of chips on the house. The tacos are pretty heft - about 3 bucks each. They are \"Gourmet tacos\" after all.. \n\nAll in all, its kind of uncomfortable service/restaurant wise (self serve) but the tacos are very good and you do get chips and a variety of salsas. Not the most friendly staff and the cost is kind of high for a place like this but its pretty dang good. Get it to go if you don't mind packing a bunch of salsa cups.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cH1lLTHReO6uDTif9bfOBA", "review_id": "heT-s5zCGQDzB9nxH07aLw", "stars": 3, "date": "2009-03-08", "text": "This was the first and only Thai place I've been to in AZ. Overall, it is pretty good. I think we will probably try a new place next time but if we can't find anything better, I think we won't have any problem going back to Swaddee.\n\n*Price = on the high-end \n*Pad Thai = pretty good volume\n*Green Curry = very good.\n*Garlic delight = The portion is way too small to charge $11", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HUsAVJOGZgsiJA265R7JFA", "review_id": "F0DGyl572Fa3L9FDV21tEw", "stars": 5, "date": "2009-03-13", "text": "This is Mesa's best breakfast, hands down! This is one of my family's favorite Saturday/Sunday brunch places in the valley. \n\nCrackers & Co. is great food at great prices and we always take out-of-town guests there when visiting!\n\nI was never a fan of eggs unless they were scrambled or in an omelette, but Crackers showed me the way to delicious fried and poached eggs! The Eggs Benny is great, both Traditional and California-style. Their omelettes are huge and never overcooked (my fave: Spinach Mushroom) . The skillets are mighty tasty and really satisfying (my fave: The Vatican with eggs over easy). Try their French toast... it's got great flavor and is delightfully crispy. \n\nIf you get a chance, try lunch there! Their soups are so scrumptious and the sandwiches are to die for! The Cream of Spinach and Artichoke soup tastes just like a bowl of spinach and artichoke dip, and they don't skimp on the artichokes at all! The Chicken Dumpling soup is seriously the best I've ever had (I'm not even a fan of dumplings!)! The Roma Tomato Chicken Melt is my favorite sandwich on the menu (such good flavor!), followed closely by the Drunken Chicken sandwich. Their burgers are quite good and along with their salads, they serve up a hefty portion!\n\nBeware though of 30 to 45 minute wait times on the weekends in the winter due to snowbirds flocking for breakfast. The wait times let up about 12:30P though, so it's great for those who can't decide between breakfast or lunch!", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "lH1vnmD7B5dpCTju01Y2hQ", "stars": 3, "date": "2012-02-26", "text": "The festival seemed a little smaller than what I expected, and I didn't find a lot to peruse when not looking at various food booths. They had a lot of local Japanese restaurants selling food, such as Nagasaki Grill, Paradise bbq, and Arai Pastry, which was nice but I am close enough to all those restaurants that I could just buy their selections any time at their restaurants. I think I've been too spoiled by the Japanese festivals in San Francisco, since the food selection here was more limited and there wasn't as many booths to buy things from. I did like the cultural shows, such as the taiko and the martial arts demonstrations, and the shaded area with the bonsai and akitas was nice. I think in general though, if you don't live close to Japanese restaurants or haven't had a lot of immersion into Japanese culture, this is a good way to introduce yourself to it here in Arizona.", "type": "review", "business_id": "O-SE2b4SncLzk6jnPd8g6Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "hGitwL2Ixiq3C6mJyQrlPw", "review_id": "FdX2TIkJZHdrTCNedksg_A", "stars": 5, "date": "2010-09-20", "text": "FEZ for brunch on Saturday with a bunch of girlfriends was one of the highlights of my weekend. Several of us ordered the FEZ Fritatta and it was perfectly cooked with tasty toppings and the best bacon on the side. I also sampled the sweet potato fries and they were even better than anticipated--a standout.\n\nPlates looked pretty. C'mon, that's important! Presentation, people. Service was superb.\n\nHadn't been to FEZ in a while and forgot how delicious it is! Let's go to FEZ more often, girls!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "1IPIiUKzagDI5DzRtrt8Sg", "review_id": "88vXXnolVjnNF3Y04XxUEg", "stars": 4, "date": "2010-06-25", "text": "Sadly, my mom fell down a wet grassy hill walking her dog on Monday night and broke her ankle in two places. Ouch! She was rushed to Scottsdale Healthcare North in an ambulance and texted me on the way to alert me of her injury. Let's just say I hopped in the car without blinking and drove up to Scottsdale from Tucson as quickly and safely as possible. \n\nWhen I first arrived at the hospital she was in a very small room, directly off of the ER waiting room. Seriously, I thought this was a closet, no joke! Jay, the RN, came in several times to check her blood pressure, take her to get x-rays, etc. You know....the typical hospital drill when you break your ankle! Anyhoo, he was so kind, gentle and had my mom in stitches (no pun intended - HA!) with his witty jokes. I could tell my mom thoroughly enjoyed his company and care. He was so wonderful and really helped take the pressure off of what was going to happen next....surgery! \n\nShout out to Jay...You are awesome and thank you so much for going above and beyond to take such great care of my mom!\n\nAfter five LONG hours of being in the ER, my mom was moved to her own room on the Orthopedic floor...FINALLY! (Side note, all rooms at Scottsdale Healthcare North are single room occupancy. This is such a fabulous accommodation!!! That means no fighting over the remote or loud snores coming from the other patient.....YAY for mom!)\n\nAt this point I knew this was going to be a long night and an extensive journey. We arrived at her room (on the 5h Floor) and were pleasantly surprised by the immediate welcoming of the evening nurses. They quickly got her settled into her room and made sure she was comfy. The room was small but super clean so no complaints there. \n\nA little while later we were told that my mom was going to have surgery sometime in the early morning but didn't have a confirmed time. Let's just say we both too tired to care because by now it was going on 2AM! \n\nI left the hospital and headed to my mom's house for a few hours of sleep before I returned in the morning for her pending surgery. Got there around 8ish and still no surgery time. Ok, at this point my only complaint was the waiting and the unidentified time of her surgery. This seriously went on all day until finally at 6pm she was wheeled down to pre-op. Again, more waiting as the anesthesiologist had a crisis situation with another patient. At this time I was fortunate enough to meet Dr. Nelson who was performing the surgery on her ankle. My impression of Dr. Nelson was that he was very warm, compassionate and informative. He asked for my phone number and said he would call me directly after mom's surgery with an update.....and he did! \n\nAn hour or so later my mom arrived back at her room from recovery. All went well and it was time for sleep. I returned the following day (Wednesday) and waited her release. Ugh, more waiting. My mom was finally released Wednesday evening around 8pm with no problems or issues. YAY, we are going home. \n\nOverall, the experience at Scottsdale Healthcare North was pleasant and satisfying and I'm so thankful for their excellent and professional care with my mom! The doctors, nurses, physical therapists and aids were amazing, caring and extremely helpful. You can really tell these people are passionate about their job. Fabulous job Scottsdale Healthcare North!!! \n\nOh, one more thing.....\nNote to mom - no more slipping down wet grassy hills!", "type": "review", "business_id": "6G8FMxuYzz1ye4a386Rc_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "utvgWVQlAgxaOuc8SRhGtQ", "review_id": "_GvHt8v82Rv1-GpyBK7BbA", "stars": 4, "date": "2012-05-01", "text": "I love their strawberry drink, its not really agua fresca because it's a little on the thicker side, but still tasty.. I've tried their sonoran dog & it wasn't that great. It was too soggy. (Get your ass to Tucson to experience a good sonoran dog). (FYI: El Guero Canelo is amazing!)\nI've also tried their menudo & carne asada torta. But my favorite is the California Burrito. If your in the area & want Mexican food it's a great place to go.", "type": "review", "business_id": "UJBSI5HydQgUhlTkC8ODDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pprq_7lgBT-WDFGPQe1a_w", "review_id": "8AyRQ78ctCPenSjmzUeHHA", "stars": 4, "date": "2010-05-26", "text": "Fun place for happy hour. Good prices, good food and great staff.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "RwVaQNP1Ag-Seu3U9quGAg", "review_id": "6jV77Bs_Vu_rHkdUxu9JLQ", "stars": 3, "date": "2011-02-23", "text": "This review is for the JCPenny portrait studio responsible for the \"Christmas Blessings\" Christmas card that graced my family's and co-worker's mailboxes this past holiday season. \n\n My girlfriend and I were going for a \"Step Brothers\" pose so we had to look the part. I guess the look won't be in any Vogue or GQ magazine this year. No, you'll have to go back to the time when Circus Magazine was popular and when mom and dad went to key parties. \n \n Our photographer was wonderful. She seemed to enjoy her job and have fun with client's ideas. However the person who helped us pick out which cards to choose was not having any of it. If you looked up awkward in the dictionary and smacked them upside the head that's what it felt like. Her sheer agony of working there oozed out from her forced smile. \n\n Anyways, I'll just say that I am damn happy I had a coupon for a $30 package which included two 8x10s of different poses and a whompin' helping of greeting cards. A package that retails at about $170. \n\n And no, even if you pay that price, a happy ending is not included.", "type": "review", "business_id": "kwq3bK7BzPKLwXKqVRztHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JL2tx1fRWWp_QMU_ddZdlQ", "review_id": "2jVLJSBUtfTSQtl2-TMVTQ", "stars": 4, "date": "2012-10-03", "text": "I was so excited to visit The new Postino in Gilbert!!! I love and frequent the original but this new location is much closer to my house. Bruschetta is amazing!!! Love the atmosphere and staff too. Wine selection rocks!!! Great Happy hour prices!!! Highly recommend a visit!", "type": "review", "business_id": "ss5gVggeSmAgMUeL65UvYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pw-k3TMjt1ZNB2-iRVTDlQ", "review_id": "HGlj7Jkc10DVQhfUuN7lkA", "stars": 5, "date": "2011-02-22", "text": "I love this theater!! it's 100 % digital and very clean and the staff is friendly. I believe that the have child care if you have any. also lot's of great restaurants and shopping all within walking distance in the shops @ Norterra.", "type": "review", "business_id": "m2hNiVSnMvXVRLMtsWUG_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "p8f5SRmv17OZeQiXowTzmA", "stars": 5, "date": "2011-12-30", "text": "We-Ko-Pa has been prominently listed as one of the places to play if you are in Arizona. I first played it several years ago, and it has become one of my favorite desert courses in Arizona. There are two courses - Cholla, and Saguaro, and although they are both desert courses, they are somewhat different. The cholla course is an older, more mature course and doesn't have the same feel as the Saguaro course. The Saguaro course can be walked, but has a wild side to it and to me, seems to have more elevation changes. That said, both courses are immaculate, wonderful condition, and a joy to play.\n\nOver the years, I have played the Saguaro course more, but lately the Cholla course has grown on me. Now when my golfing buddies come down, I always make it a point to play both courses with them. This has led to some interesting memories. \n\nThe first time we played, despite my warnings, one of the players wandered off the Saguaro course and found a Jumping Cholla. He liked it so much, he brought it back to us - stuck all down one side of his body. It took us quite a while to get them off of him - and then he wanted us to give him extra strokes. Not a chance.\n\nAnother time, one of my friends teed off on a par 3 on the Cholla course, and hit it into a dry creek bed. He seemed to lose his composure, and hit five provisionals, which also went into the desert. Then he found his first ball, and ended up with a par!! Of course, we haven't let him forget the five provisionals...\n\nI have read some comments about the marshals on the course, and in the past would agree. However, the last two times we played, the marshals have been very good - very courteous and very helpful. The last time, while we were playing cart path only, one of the players was very slow (as usual) and the female marshal most diplomatically asked us to speed up. She was one of the nicest, most courteous marshals I have had experience with, and consequently, one of the most effective.\n\nThe courses have a nice driving range, chipping and sand area, and putting greens. Unfortunately, they no longer allow you to use them, unless you are playing one of the courses (you used to be able to pay a daily fee to use them).\n\nFinally, the service is friendly and courteous - from the drop off, to the restaurant, to the desk personnel, I have had nothing but pleasant experiences with the employees.\n\nI think any golfer should experience these courses at least once - a visit would be well worth it.", "type": "review", "business_id": "jsvIv9NRRBXdmCe8b88b4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WxO2x4xGbHfeWfU_MbuzTQ", "review_id": "zs9J2_eS1TWbPP21vpAHMg", "stars": 4, "date": "2012-06-07", "text": "Love Oregano's :) \n\nThe 45 minute wait for deep dish pizza does not bother me much because I know I am going to get it just the way I like it. Lots of pepperoni and easy sauce. The BBQ wings are so good. They are crispy, hot, and bathed in sauce. Service at Oregano's has never failed me. In Tucson, AZ and in Phoenix, AZ service is great :)", "type": "review", "business_id": "yPJFfglhMHAKciUpjTmgBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UL3oXAjeMDm4oxeHs803hA", "review_id": "ZptBybhYSnc7IXJRxqc5Ng", "stars": 4, "date": "2009-05-31", "text": "Great place for dinner! We had an early seating (5:30 on a Saturday night) so the restaurant was pretty empty when we got there. As a result, service was very attentive. We ordered a little bit of everything off their different headings. We got the mushroom rice pot, the pork belly, chef's sashami, sweet corn skewers, chicken yakitori, one of the grilled entrees and dessert. Everything was fantastic with the exception of the grilled corn. It was SOOOO salty that it was inedible. I mentioned it to our server and he just brushed it off - didn't offer to not charge me for it or bring me something else. But because the rest of the meal was pretty good, I'm still giving it 4 stars.", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xQJY0AAY4yRaUqWUjD_nLQ", "review_id": "kBFbfujGIFMOABxDAlXrbg", "stars": 5, "date": "2010-12-23", "text": "Haus Murphy's is fabulous in so many ways that I can really only hit the highlights here. Even if German food isn't your favorite (I dislike saurkraut and cabbage), the service and food is great.\n\nThe service was wonderful. I was almost 2 hours earlier than my friends, so I used a table in the bier garden to do some work on my computer (with my own mobile hotspot. . . Haus Murphy's does not have wi-fi). The entire staff made me feel welcome as a sipped a wonderful German beer and did some work.\n\nMy friends showed up, we had great dinners, and then we continued on to Glendale Glitters. If I'm able to make it over to Glendale from my home in Mesa for Glendale Glows in January, I will certainly stop in Haus Murphy's. \n\nAuthentic German or not (I've never been to Germany, my friends of mine who have seemed to really enjoy the food too), this place is worth the visit. \n\nEnjoy!", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PWTyPP6APJTmzV1pGAxnkg", "review_id": "VC3y59RLD30paihciSybLw", "stars": 5, "date": "2011-09-23", "text": "This has to be the best Thai food around. I have tried a few other places, but none are as authentic and delicious as Swaddee. We are now regulars and have never been disappointed.", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "9ebaAGLVIgGKpDLFwmvaiQ", "review_id": "60idNT8l0RwAFTPHhnMq2w", "stars": 4, "date": "2012-03-25", "text": "Wow! what a great meal last night. Kinda nervous to go back after being there a cpl of years ago for lunch and not loving it. BUTTTTT 2 words: Boiled Wontons. Order these and u will prob crave them for days. Spicy broth with boiled wontons in a light peanut sauce. I also ordered my fave, Peking duck. Very impressed with the quality and will be going back more. They do bring the food out superman fast so you kinda feel rushed but other than that, i see why they are sooo packed.", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1ggf9iT4TNT09e15Zoj73g", "review_id": "ore0onHBza2syU1jhfQK8w", "stars": 4, "date": "2010-12-13", "text": "This was my first time here. It was a nice experience.. And I found that I really like Indian food ! Good stuff !", "type": "review", "business_id": "LYyGQgL60VKdV-p_9OxmWQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "N7lSh49zQ13sG3Jpa9E6cw", "review_id": "jIA81IRiDADoEolIqdr6CQ", "stars": 4, "date": "2008-06-17", "text": "I'm a little late to the party....I finally got around to checking out the new and improved Chez Nous last weekend. This is sad because the new location is within walking distance of my humble abode. \n\nAnyway, the place looks fantastic. I love that it has the same vibe, the same house band, the same goofy rock sculpture (WTF is that?) and the wallpaper. LOVE the wallpaper. \n\nI also love that the bathrooms are nice and clean, but really- no one goes to a bar for the bathroom.\n\nThe bartenders make a mean dirty martini and they don't get pissy with you when you order more than one. (Take note, Bikini Lounge!)", "type": "review", "business_id": "P1DyzJfy3RCOdT9s9zgNiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IsDEpSZZDc89rvSsID-7Vg", "review_id": "X6enPAcMgbxSD9Yt4KiO8g", "stars": 2, "date": "2011-07-31", "text": "The salmon was great. They overcooked my husbands steak, which was just a so-so steak. City hall is much preferred!", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 3, "useful": 3, "cool": 0}, "user_id": "g6e53q-wNxtbz5KI9B3pnw", "review_id": "wNlzdkVspcPoIPxYdH8K8g", "stars": 1, "date": "2012-04-03", "text": "Slow, unorganized and filled to the brim with crazy people. I prefer to do everything through the service arizona website but recently got a letter that I needed to get a new license because my picture was going to expire. It makes total sense that my license is valid until I'm 65 but the picture expires after 11 years. Of course, the state charges a nominal fee of $12 to replace it. If the state of AZ was in need of my money I'd gladly just give it to them if it means avoiding this nightmare. Oh, and the camera is set to fat...", "type": "review", "business_id": "13VZKXF7bBuLsLDh_r3g0w"} +{"votes": {"funny": 5, "useful": 3, "cool": 2}, "user_id": "Kq4cVcc_g8amBkHe5dJ01A", "review_id": "F4C66MWnGCeziEpbWFKrkQ", "stars": 5, "date": "2010-11-29", "text": "SAKE *Japanese alcoholic beverage made from fermented rice; usually served hot .\n\n( Full disclosure : I don't like sake)\n\nParents in Scottsdale for a first look at the new house / neighborhood. We were on the horns of a dilemma : ? Would a mid week , early season dinner at the club be too quiet? Should we descend south of the Frank Loyd Wright into south - north Scottsdale....??\n\nWe opted for the safe bet - booked a car and headed south to the Ocean Club.\n\n** A) never drink and drive in Scottsdale ( or anywhere else for that matter)\n\n**B) if you're a foreigner - never- ever drink and drive in Scottsdale\n\n**C) A + B refer to you Nikolai Khabibulin \n\n\n(( A nod of support to the YELP community . After perusing the Ocean Club reviews retrospectively I believe the correlation existing between the posted notes and reality to be around 0.90 Well Done!!\n( I would go as high as a correlation of 0.95 if high and low marks were thrown out ( similar to olympic skating or gymnastics)))\n\n\nWe arrived at the club---- a good bar crowd ( not quite as Mountain lioness(y) as i had expected (? hoped?) -- ? mid week perhaps...?,\na good blend of hipsters , hobos and Mrs Lovey Howell III's \n\n( score +1 for the Ocean Club)\n\n\nWe were promptly seated - at a good table - well positioned , near the back and partially curtained - nice.\n\n( score + 1 for the Ocean Club)\n\nThe waiter then promptly arrived to take our drink orders:\n\nNow - I don't like Sake ( see note above) - but on occasion - I like to fancy myself as the kind of guy who may indeed like Sake- hence , I order a Grey Goose Sake Martini -\n\n\" I have no Sake\" the waiter announces sadly.\nNow - this is tricky - can I in good conscience penalize the establishment for not having a beverage that I really don't like or want in the first place?\n\nToo bad for you Ocean Club 'cause yes I can.\n\n( score -1 for the Ocean Club)\n\nThe drinks arrive - I have opted for Grey Goose sans Sake\nand yes -sweet Jesus they are huge ( see prior posts).\n\n( score + 1 for the Ocean Club)\n\nThe waiter then arrives to review the menu and describe the specials-\nThis he does without note , blackboard , evening card or inked cheat note on his wrist-\n\nHe recites for what seems to be forever...\nIt is like a reading from the old testament - but instead of a mere chapter of the book of Leviticus - he recites the entire book....\nI am captivated ....( or is it the Grey Goose)\n\n?? does he really know the name of the Italian girl who dug this evenings truffles up in Piedmont...??\n\n?? does he really know the glove size of the Japanese ranch worker who massaged the Wagyu beef and from which prefecture he hailed...??\n( if so - why didn't he have him send me some Sake....??)\n\nat any rate - I am entertained\n\n( score + 1 for the Ocean Club)\n\n\nThe food arrives - the portions are huge and the flavors sublime.\n\n( at this point in the evening my memory fades into Grey Goose and Ch\u00e2teauneuf-du-Pape...... is that Joan Rivers - across the bar making eyes at me....?? ) \n\n( score + 1 for the Ocean Club)\n\ndessert arrives, sated , - we cannot really eat any more but I remember thinking that the desserts may be the best I have tried outside Europe-\n\n( score + 1 for the Ocean Club)\n\n * * * * *\n\nAdding it all up five stars and a promise to find a way to post six stars next time I am there if they find me some gosh darn Sake!!", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KrqafLanxNm4iDxbC74R1g", "review_id": "2SA2NztY3RaA-jGppeoO6A", "stars": 5, "date": "2011-07-15", "text": "Best in south chandler. Glad they are out here", "type": "review", "business_id": "CMvCbtkcHH9Gp0S3w1_aQA"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "Sjp6EYsqzdlTvymER6wBfg", "review_id": "-jXeFS4A7btHNX1THYHRbg", "stars": 5, "date": "2007-02-19", "text": "What a find. In a strip mall nestled between a bank, clothing stores and overnight shipping is Giuseppe's. A family owned and run establishment where byob is the way to go. This reminds me of countless small mom and pop's back in The City. The staff is friendly, the portions sizable and the check small to medium. In fact, I can't believe I haven't reviewed this restaurant before. Whether on a date, or with the family, I've never had a bad experience in the dozens of times I've been there. From the veal parmagian (sp?) to the eggplant, from the fettucine to the spaghetti and meatbeals... mama mia. It is a small venue, with very limited outdoors seating during good weather. And the locals know about it, so it gets pretty packed Thursday through Sunday. The salads and appetizers are delicious as well... If this restaurant had been in Spinal Tap, it would get \"an eleven\"...", "type": "review", "business_id": "AX8lx9wHNYT45lyd7pxaYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eaRMRfSM8TSbw2CVxUmYIw", "review_id": "s-jeeE4_vIzL_HTQF2oq4Q", "stars": 4, "date": "2010-02-17", "text": "My family and I decided to try CD last Saturday night and it was great! We started with the homemade potato chips and Smoked Salmon which were both EXCELLENT and moved on to the pork ribs, salmon, gnocchi and a burger. My family and I have a tradition to share the first bite with each other and wow... they have a winner here. I am not a huge fan of some of the other Fox restaurants, but this is a winning combo. Great price/value and the service was spot on. Can't wait to go back this weekend!", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7i14F52gOUBqlRudUCwPsA", "review_id": "iJL759RhKzfllR1mmazIgg", "stars": 4, "date": "2012-02-17", "text": "Don't let the ol' door-in-the wall/lack of window effect scare you! The Tally Ho does a fine, fine job of balancing that delicate mix of neighborhood watering hole/hipster hangout. The drinks are strong, the bar staff are friendly and everyone's in a good mood at this little dive bar. The music (stocked with a multitude of genre) is always on but not so loud that it interferes with conversation. There are a couple of pool tables, beer in a bottle and the drinks are served up just as ya ask for 'em. Can't go wrong with this place if you're looking for a quiet, entertaining hangout to throw a few back. Between the red vinyl and HUGE bar, I heart for Tally ho.", "type": "review", "business_id": "2BSF6wu1V3KfyFJf1DQ3DQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "MdmS22AlIgG1lN6wZ2ZFMQ", "stars": 4, "date": "2011-03-10", "text": "I tried Narai when my family was in town; everyone enjoyed their meal. They have a wide variety of Thai food and sushi and a full bar. Our servers were very attentive. \n\nI had the tofu pad thai with medium spice (which is still pretty spicy). It had a nice flavor to it. and enough of a portion to take leftovers home for lunch. My sister really enjoyed her papaya salad and thai soup and my parents liked the cashew chicken - the sauce had a great flavor. \n\nThere aren't a ton of Thai restaurants in North Scottsdale... I'd say this one is a very solid pick.", "type": "review", "business_id": "qSLdUiI2edATC3KBT2zf4Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3vML-LnH0dIyHCrqF5xEYw", "review_id": "IbZa5ZqgjP-iRPm2Xo2h3Q", "stars": 5, "date": "2010-10-06", "text": "I've been coming to Yusefs now for awhile to get gyro meat to go, along with their fresh feta, pitas and cucumber yogurt. BEST I'VE HAD! Finally I was able to eat there as they have a kitchen and OMG, it was delis and the prices are fabulous. I ordered the lentil soup and holy cow, it was UNREAL! I got the gyro plate with gyro meat and fresh rice (basmati?) and it was fabulous. Gyro Greek salad was amazing too. I love coming here because the owner is nice and very sweet!!!!!\n\nI recommend you try this little gem!! It's worth the drive!", "type": "review", "business_id": "doEZAj-NSnoEMOJl5yXcNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fAiVqZv7P_oc5CzGMX_G9w", "review_id": "-yxBoeSJaPrzTZXoh9dYjw", "stars": 2, "date": "2010-08-26", "text": "I met some friends here for lunch, the menu is a weird mosh of Italian, Mexican and American food....it is almost like they can't figure out what kind of restaurant they want to be. \n\nI ordered the cheese enchiladas which was probably the wrong choice at a non-Mexican restaurant, but I just wasn't feeling anything else. The two people who were with me got their food, and I was still waiting, and waiting and waiting. Finally the waitress came over and asked if anyone had been here to talk to me...isn't that her job? She said that they gave my dish to someone else by accident, so they are making me a \"fresh\" plate. \n\nMy enchiladas finally arrive, and look like they were just slopped on the plate. i take a bite and guess what? They were barely warm! You would think that a \"fresh\" plate would be served piping hot! I took a few bites, but by now I was over them and late for a meeting. \n\nA waitress that was different than ours brought over our check, which included my enchiladas. I told her what the problem was, but she didn't seem to speak English very well and said she would go ask someone. They did take them off the bill, but that really should have been done automatically since the other people at my table were done with their food before I even got mine! \n\nThe decor is odd too, it is like they are trying to be a sports bar, but maybe aren't sure, evidenced by the 6 plasma TVs sitting in the corner still in their boxes! \n\nIf I have a say in the matter....I won't be returning to Deemos.", "type": "review", "business_id": "JxgoluY8hnC34cys_f80xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AyEiHIMRZmgda_seZy1PZQ", "review_id": "rhiF6_3ZZr_vfYLqckVz8g", "stars": 3, "date": "2012-08-12", "text": "Maybe I expected too much. The silverware was plastic. The plates were plastic. I felt like I was at a cookout.", "type": "review", "business_id": "k_aOcqWOHWprjs7ykdzlAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jRtdO03kWbReasB_vBlTsQ", "review_id": "d4jnrJHJWS5Zkp27-JFuaw", "stars": 3, "date": "2012-05-02", "text": "Met up with a group of friends here on a Monday night... a big group. Although Keegan's had no notice of our mob arrival they did well with service etc. Beers were poured fast; food took a little extra time but with a group our size that is to be expected. The outside patio space was great on a warm AZ night... a friend got the sliders and said they were quite tasty when they finally arrived. The happy hour prices are okay with a nice choice of beers and mixed cocktails.", "type": "review", "business_id": "rVUEZpHQfWI_3kt0lBwaxQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "P2vHl_ZzSzeu07W29KsKgg", "review_id": "1HwtNOm11v0I3QTfSUO8FA", "stars": 5, "date": "2008-07-17", "text": "Not many places that you can go and get a natural casing charred white hot dog outside of western NY.\nFolks I know from Western NY love this place, and I have to agree (even though I'll still take a good Chicago dog any day).\nI know where I'll be going if I ever have an itch for a white hot. :)", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "F9Lvy5LfkeYMF1r_Al-Fxg", "review_id": "MNYHCmQW9aAvHel3i05NJw", "stars": 4, "date": "2010-04-07", "text": "I love that there is a locals place right within walking distance of my apartment. I've been drinking there for a couple weeks now and I love the good beer and cheap prices. I just ate there for the first time last night and the chicken sandwich and curly fries are delicious. The service is reasonable, the atmosphere is friendly, and the patio makes for a great hang out.", "type": "review", "business_id": "9SKdOoDHcFoxK5ZtsgHJoA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "OpjFNuQiyqh9Sms5Ex8Wxg", "review_id": "X-R8keLwN3KJZ74qsRAhNw", "stars": 4, "date": "2009-08-06", "text": "Great place for tapas! I really enjoy this restaurant for a couple reasons. 1 being that they change the menu constantly and 2 being that each item on the menu is always good. Some are better than others, but the worst thing on their menu is good.\n\nI love going with 2 or 3 other people so we can order a variety of things and I can try new and different kinds of food. Sol Y Sombra is always a nice change of pace from other Scottsdale eateries. \n\nNice cocktail and wine list also.", "type": "review", "business_id": "V2isTBBfO0NgLzXO9oq1Mg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "KbCDV2hjwgh2rQT2aMwjAA", "review_id": "IkrGeXEOTro18PZmMk7Qrg", "stars": 5, "date": "2010-06-02", "text": "I love everything about Oregano's! My first experience was in Flagstaff with a location being right off NAU's campus, and I was thrilled more started to open up in the valley. There is one in Mesa, now, very close to me, and the ambiance remains the same. I love the vintage decoration, the music, usually Ella Fitzgerald and other jazz icons, and the FOOD! All the appetizers are amazing, especially the Boom Dip. My favorite pizza is the O-Riva. And passing up the Pizzookie (pizza cookie) is out of the question, get your friends to dive into this amazing desert. Also the bellinis are outstanding! Enjoy your experience here, you will fall in love! Have patience at the smaller locations, usually there will be a wait.", "type": "review", "business_id": "ioGIaoswvbbeY8P965IYRA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "yJihBbisa05Yz6FUQtzE1w", "review_id": "Tw5a1a49KNUI3yB_vk0YXA", "stars": 2, "date": "2009-08-06", "text": "DH & I went to Fez last night for happy hour and than back again for reverse happy hour. We had the poppers, the turkey burger special, orange margarita, pomegranate margarita, 2 beers, chicken phyllo pastry, and the walnut brownie. Both of the margaritas were good, but the food, with exception of the dessert were all terrible. We've been coming to Fez for awhile now we normally order just the entrees, we were surprised at how terrible the appetizers were. Majority of the food was left uneaten.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xm47wfTVHLq8-72HR5nPmw", "review_id": "V72TF1WH7YW9gQAJDd5qWA", "stars": 1, "date": "2012-03-18", "text": "The service level and attitude of the staff was diabolical, they demonstrated absolutely no interest in our business. Ever since moving to the new premises, things have sucked. I shall not be wasting any more of my time or money here.", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "801ruVlnZZ1b8L52eiJhWw", "stars": 3, "date": "2012-10-26", "text": "Good food, but I don't care for the SUPER FAST waitstaff. Fast is one thing, but walking away while I am still trying to order is RUDE.", "type": "review", "business_id": "dipzJ5BExpm6BtJ91mXd4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HFTmwmRYMmNnwpJ6c7077g", "review_id": "PhpatD5E8aPr-epv-bByug", "stars": 4, "date": "2012-07-25", "text": "If you love Korean food, you will not be disappointed! The hot tofu soups are so good and served piping hot with your choice of spiciness. Their galbi ribs and bulgogi are authentic and as good as it gets. My son loves their pork katsu, which is served with rice, salad, and potato salad; and the servings are huge!\n\nWe are regulars and bring visiting family and friends frequently. Great place!", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 10, "useful": 12, "cool": 10}, "user_id": "rpOyqD_893cqmDAtJLbdog", "review_id": "IYqWD2Q76-6i9uTVq5tejQ", "stars": 4, "date": "2009-09-21", "text": "Price to performance is pretty stellar. For $110/night I enjoyed a large room with a luxurious bathroom, balcony, and cool retro furnishings. Service was decent, but the W Scottsdale is better on this front. Breakfast at their restaurant was basic but worked. Stylings from the lobby to the furniture in your room is really well done, the hotel has a great boutique-y vibe but without the pretentiousness. The location is good, only minutes from downtown Scottsdale. One snafu while I was there... I sent out some dry cleaning that was supposed to be back by 5:30pm, didn't happen. It was a stressful half hour before they found my stuff (all cleaned, phew!).", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Lg6IT7xzGYtshQbzE21jBw", "review_id": "ogXY4GLmUJIdPrFk_eKYZQ", "stars": 5, "date": "2010-04-08", "text": "best place in scottsdale to watch a game. Great food (greasy, but what bar food isn't?), great drink specials, and an even better atmosphere. The owner came by and greeted us and made us feel very welcome. I will definitely return in the future.", "type": "review", "business_id": "U-0hMfagGtjYZCYB1i0WNw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "5Td84D4oDkkgxsMeqcrTRw", "review_id": "tiYxg4D8j9voFm6741owcg", "stars": 1, "date": "2012-11-25", "text": "I've been to Milano's Music several times and each experience is worse than the first time. I look at the reviews of people I actually know and realize that each experience is different. On the biggest day of the year for Small Business owners who should be reaching out to the customers and gladly sell them the smallest items Milano misses that point, by miles. My husband is re-learning to play the drums and needed a drummer's throne and since it was November 24th and \"Small Business Saturday\" I thought \"why not give them another try\", guess what we walked out with Nothing they lost potential set of drum customer ( those can cost anywhere from a few $100 to $1k ). I won't go back in there. The guy that is in charge of the drum section is rude and pompous and walked away from us TWICE. The second time was enough to make my blood boil. We found a throne in another section that my husband liked and I said let's get it. The guy came over and said \"Oh, I have another one in the box\" and grabbed the one in my husband hands and walked off never to be seen again. We waited and waited at the checkout counter for him to show up, he never did because he had decided to help another couple. I looked at the cashier and my husband and said \"NOT cool at all\" and my husband set all the other items he was going to purchase down and said we won't be purchasing anything. \n\nI felt bad for the guy at the register because it wasn't his fault and he apologized but that doesn't give the guy running a section the right to decide what customer is more important and that is what he did. New customers should never be treated any differently and to basically make a statement of you are not important enough was the final straw. \n\nI grew up around Milano's music stores they were the first to give me guitar lessons and it is sad to see this happy. Besides this Yelp review , I plan to write their the store personally. When small businesses are struggling and this kind of thing happens a person begins to understand why more people shop with a big box store and less and less from Mom and pop stores.", "type": "review", "business_id": "Epw24kOK4s9kvnf9I6XoCA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "eZZwcrpbf9M8AlEQT3DsCA", "review_id": "_eMicN4vqkoH560wzrv0pg", "stars": 1, "date": "2012-05-26", "text": "I have been a \"regular\" customer at this salon ever since it opened. At first it was great! Clean, relaxing, and welcoming. After a few months without a manicure or pedicure I decide to treat myself to a manicure this past week. I went in and a lady did a beautiful job on my gel manicure. She paid attention to detail and didn't rush through the whole process. I didn't have time to get a pedicure so I decided to come back the next day. I only wish that I had her do my pedicure yesterday ... \n\nThe guy who did my pedicure had some sort of infection on his thumb. I didn't notice it at first because he was using gloves but when it was time for the foot massage he took his gloves off, revealing it. Tracy was doing someone else's nails right in front of me and clearly saw that he had some sort of sore or fungus on his nail. It was completely black and it looked like something was growing out of it. I was shocked that she didn't tell him to at least put his gloves back on. The \"massage\" that he gave me was hardly any massage at all. He did the same motion over and over while concentrating on the tv. Definitely not worth the $25. The worst part is that he gave me an ingrown toe nail. The whole right side of my nail is swollen and I just hope that I don't get an infection. This was by far the worst pedicure that I have ever received. Even though I had a great gel manicure here, my last experience was so horrible that I will not be back.", "type": "review", "business_id": "Y6CrVJ60m8vJvpPsHwUT9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GwTb7Kiacz0jxqtiK8y09g", "review_id": "Nf7mBRLJpjysPbEFQlOaoQ", "stars": 5, "date": "2011-01-03", "text": "I'm addicted! Everyone there is so freakin nice. And Maui dogs are delicious.", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qH2HOcOtZpLwW4kjgZUXEg", "review_id": "Uh7AOQdP5pPvkKh8qdDAbg", "stars": 4, "date": "2010-10-11", "text": "I am so glad I found this nursery! Not only is it a beautiful place but the employees are unbelievable, so helpful and knowledgeable. \n\nNeeded to get my garden ready for planting and they helped with everything. The plants they have look great, not all wilted like some other places. \n\nThink this has become one of my weekend stops.", "type": "review", "business_id": "WIHl_M10eMYdbgX1yU5Kaw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "dwCJiP7za-BCTf38vL6e2g", "stars": 3, "date": "2012-01-24", "text": "Anything with the word \"Original\" in that name always makes me wonder, for real? \n\nThis place is for real. It is very close to the new house and I met the 'rents there for a burger the other night and to watch the Giants beat the '9ers. I immediately felt a sense of familiarity when I walked in the door, I hadn't remembered being there before until I walked in. But it all came back to me very quickly. I remember stopping by here years ago with friend before heading to the Fair one year. It was just as good as I remember it. \n\nIt is an old fashioned burger join. You can either walk up and order then take your food to your table, or if you are on the bar side you can order from the bartender, who is very attentive, even with a full bar and restaurant. Once you get your burger or sandwich, you go to the fixin's bar, load up on toppings and veggies then sit back down to enjoy! They also have some great sides and aps, fried mushrooms, onion rings, zucchini and fries. They fries are OK, a little over done for my taste but everything else was great. \n\nThis is a great place to make a regular stop on your weekly happy hour agenda, to watch a sports game (tons of TVs on the bar side) or to fix your burger cravings.", "type": "review", "business_id": "N_6bV3c3JagKW7sD3X9ldA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Syn0IvWg-M7I4G2t_XyHoA", "review_id": "zjOc-1i4CIjHzl5ybGDLow", "stars": 3, "date": "2008-05-27", "text": "While the idea is not new - an updated outdoor shopping center that mimics a European outdoor shopping and residential district, Kierland Commons is similar to West Village in Dallas, TX or Santana Row in Santa Clara, CA, however, in the Scottsdale version, it is completely stripped of any personality and design, perhaps to better blend in with the desert environment.\n\nThe usual suburban chain stores can be found at this shopping center, ranging from Smith and Hawken, Banana Republic, Barnes & Noble and the like, though there are a select few independent retailers which make a trip to this center a little more interesting. Parking can be difficult, however, there are lots that line the backside of the center as well as valet parking across from the center park. People watching is quite entertaining, from the kiddies that frolick in the fountains, to Barbie's desert siblings.\n\nThe independent dining options are a little more interesting, such as The Green House and Zinc Bistro, though again, the usual unimaginative chains are represented here, including PF Chang's and The Cheesecake Factory. \n\nWhile I don't find most of the retail offerings at Kierland Commons to be particularly compelling to make multiple repeat visits, I will return for the more independent dining options.", "type": "review", "business_id": "e9JhcYEgNbRL8i8CTdQO2w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "JAZx1ZTdTFUYQpbZkqt7QQ", "stars": 2, "date": "2011-06-15", "text": "Maybe I'm ordering the wrong stuff, but I've *always* been disappointed in the grub at 5&Diner... The service was STELLAR and I really do like the ability to dine Al-Fresco at 3am, but does everything need to be soaked in butter flavored crisco??? ughghg.", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "io5b3aooPSgC0gFpSSrqNg", "review_id": "t9S5cXGw82U1r19OQaR9qA", "stars": 5, "date": "2012-04-09", "text": "We attended this restaurant for an early seating at 5 p.m. and were immediately impressed with the atmosphere and professional staff. Both were first class.\n\nWe decided to sit at the counter overlooking the chefs preparing the food and we were glad we did. One young fellow was more than happy to answer any questions we had regarding the preparation as well as the presentation of the food. It really was fun to watch the whole process.\n\nWe decided to go straight to the entree instead of filling up on an appetizer beforehand and we were glad we chose to do that. We each ordered the Kobe Vaca Encebollada, which was a grilled Kobe skirt steak nestled on a bed of caramelized onions. Alongside the steak were three slices of potato about a half inch thick and these were topped with a guacamole type mixture as well as other toppings. They were absolutely delicious and I was so sad to reach the end of those. The steak was cooked to absolute perfection and I was determined to clean my plate because it, too, was just so scrumptious! It was a very ample portion and we did clean our plates and definitely had no room for dessert, unfortunately. As our cocktail, we followed another reviewers lead and ordered virgin mojitos, which were $9.50/ea and they were delicious and also sufficed as a dessert stand-in so the tab wasn't too crazy at all. Well worth it for that delicious steak.\n\nWe did dress up for the occasion and were glad we did as everyone was dressed casually but nice. It's fun to have the whole experience for a special night out. \n\nWe look forward to returning soon.", "type": "review", "business_id": "29hR24tcAM3JZaXfA5xCxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "HOD8qF2OW0AnlPrsscUyxA", "stars": 2, "date": "2012-10-04", "text": "Why Meh? \n \nThe state of repair on the games made this a voyage of discovery, e.g, with a 2 hour unlimited card I could work out which machines actually worked:) \n\n.I'd rather have a downed machine than something that is unplayable but maybe I'm just unlucky that I hit the 4/5 games with issues in my first plays. \n\nEnd Ghost Recon.. gun on left won't hold steady target jumps all over. \nOpposite of it : Need for speed Carbon has a intermittent brake pedal which won't let the car go too fast)\nMechwarrior 4/ Beach-head 2000 unit.. Hideously slow , jumping frames, jerking hydraulics, broke after playing. \nCan't get 8 way direction on left side of tekken 5 \n\nGave up and played Galaga after that:) Yeah left / right fire that works:/\nVariety is lacklustre, Shoot, Drive , and oh shoot AND drive is about all you get with rare fighting games, not a single vertical / horizontal scroller", "type": "review", "business_id": "PdWe3jF9YEu5fWBiQXZIgg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "iH2JVic0jgKPRSJE6-6XuA", "stars": 3, "date": "2011-12-10", "text": "Yes, this is an awesome toy store. Huge selection and a friendly knowledgeable staff. But the prices... Yikes! I really can appreciate the fact that these are wholesome, well-made toys with a focus on learning rather than supporting the corporate brands and Hollywood characters. But it is just not practical for your everyday shopping needs. I recommend it when you want a special or unusual gift or if you have one of those rare children that wants intellectual stimulation more than to impress their friends with the latest electronic gadget or action figure.", "type": "review", "business_id": "VLRmecRseHP8ZLljlp7CFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M9mayv89c7zxgUS-EKWtHw", "review_id": "R1Oj0OC4d0-i9QIC60rekg", "stars": 1, "date": "2010-11-07", "text": "We were driving around Chandler area to find a decent place to eat and Mido Sushi caught our attention. \"Oh, Okay!\" - I thought and walked right in. We were greeted right away with a good waitress, but somehow I found her voice was really annoying!\nThe food came out after 10minutes and I was disappointed with the sashimi! It wasn't as fresh as I expected. The soy sauce tasted very weird and too salty. By far this is not the most decent sushi restaurant I've experienced. \nKabuki and Masa sushi are still my best choice so far.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "EEWsFy0gqs8Osp1IPnfLTA", "review_id": "9ijwAOakURqTfxvDGFd2mA", "stars": 4, "date": "2007-06-09", "text": "I had a great time at The Roosevelt. The lovely duo of Megan and Gretel took care of me with good food and drink and everybody I met there was really quite friendly. I liked the almost too many choices of beers on tap, including the current rotating pick: Summer Solstice from Anderson Valley. (I'm told that brew isn't widely available on tap in the phoenix area.)\n\neverybody say it together now: get the pretzel. but be careful it is piping hot, you may want to ask for a knife and fork if you want to eat it immediately. \n\nmy entire life I've never had a tomato soup I liked until I had their grilled cheese and tomato soup. the soup was great! but the cheese sandwich could have been better.\n\none thing to be aware of is they serve mostly beer and wine, with a ginger ale and a root beer. oh, and water. so don't ask for a martini, cola, or other bar favorite.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IqdFvfcjqZXuuomsyGyTsw", "review_id": "7BPN3rBKuCvMDvkbScKI2w", "stars": 4, "date": "2011-12-02", "text": "I had expected this place to be a rather small museum, but it is actually quite large and is packed with artifacts and pieces from Native American tribes. During our visit, we took a tour given by a Navajo student. He was very knowledgeable and definitely kept everyone's attention with the information that he provided. With the amount of exhibits on display in this museum, you can easily spend two or three hours just taking in everything that is offered. There is a wide range of items on display from dolls to paintings to glass work to clothing and jewelry. Another cool thing is that this museum allows you to photograph anything that you want.", "type": "review", "business_id": "SG_gEmEXL4ID6RAEinC5Bg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A9x6WO4DJuHzT2U_fT9Jhw", "review_id": "HuDMrUWIOuT1XIz9jWvFQg", "stars": 3, "date": "2012-06-20", "text": "A OK. I have been here atleast a dozen times. Beer is always great. Food is pretty good, although the salmon BLT was super dry last visit. Going there with a large party, 9, with out of town family proved to be very bad. Told us 20 minutes to wait and ended up being over an hour. Some of the party went home because it took so long which was embarassing to me as I wanted them to have a good dinner. Next time I will come with a small party. If there is a next time. Bummer.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zof_qo5X5tRQXvkuuR1RzA", "review_id": "jTyYY61Csv-XqEgC7dG0UA", "stars": 5, "date": "2012-06-24", "text": "This place is as good as it gets for shooting. I became a full member today after also researching Shooter's World, Phoenix Rod & Gun, and Scottsdale Gun Club (where I will also become a member). The cost is VERY reasonable at $85/year ($110 after adding the initial administrative fee).\n\nThe club is huge (140 acres). There is a main range for members and the public. Then, there are multiple other shooting areas for members only. You can shoot out to 500 yards at this facility AND you can shoot any weapon. The only restrictions appear to be on the allowable ammo. \n\nI'm really looking forward to shooting at this club next weekend.", "type": "review", "business_id": "qgNlUte2tSI7OufuuvR8DA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3ch-JeRygCmrXf4mwZ9JTg", "review_id": "KlkFFdVK8i3UFAtX7tt83w", "stars": 2, "date": "2012-03-06", "text": "Service was s l o w. Toook a l o n g time for someone to greet us and when they did only dropped off menus. Wait. Wait. We ordered beverages and food at same time. Things showed up one by one...\n\nI ordered the Spicy Basil which was very flavorful and I thought was the best tasting of the 3 entrees.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "G71cXnHdBcVfLzia8xmPdw", "stars": 3, "date": "2011-07-30", "text": "07/25/11\n\nI have a new crush... and it's Christopher's Restaurant's pizza! \n\nI've been holding onto a restaurant.com gift certificate I'd purchased to use at Crush Lounge for a long time now and decided it was time to use it. I arrived w/ high expectations, of both the ambience and the food, and I wasn't disappointed... much. The service was a bit spotty at times- we were immediately greeted when we entered and were seated quickly, but the wait that came after water delivery was a bit long at a time when there were no other guests seated around us. (Perhaps there were other guests seated elsewhere, but they weren't seated at the lounge, at the food bar, nor outside... Indeed, it seemed like were were the only ones in the room, besides the cooks at the open kitchen area, the servers, and the bartenders.) Bread was delivered, but we were each given only one one-inch slice of a baguette. How strange, especially when the butter cup held enough butter to spread over a whole loaf! Whatever... Two of the three dinner specials were relayed to us, w/ the promise of coming back to tell me about the scallop dish, but when our server finally came back ten or so minutes later, he asked if we were ready to order, so I had to remind him about the scallop entree... What was in it, and how was it prepared, and how much? Hmmm, maybe he was ready to go home...\n\nCame in w/ Mom, so we had to try the calamari. I also chose the Duck confit, goat cheese, and fig pizza. For dessert, we had the profiteroles. I really liked the calamari's coating-- lightly battered and fried golden-brown. My fave pieces of the squid are also my Mom's fave, the tentacles, so these were soon finished. At least half of the remaining pieces, the sliced bodies, were undercooked-- poor value for the $12 menu price tag (and I was charged $13 on the ticket). The pizza* was TERRIFIC! Loved the semolina thin crust, and the duck confit gave the entree a great smoky flavor-- I thought perhaps there were lardons included in this dish too, but all the smokiness came from the duck. Mmmm.... The goat cheese was very creamy, and there were lovely chopped figs all over the place-- I'd order this pizza again in a heartbeat! The profiteroles were fantastic, as well. Three sliced choux pastry rounds, filled w/ dark chocolate sorbet, vanilla, and chocolate ice cream, sat on a pretty display made of chocolate ganache and creme anglaise, whole blackberries and blueberries, and a sliced strawberry. More ganache was poured over the top of one profiterole upon presentation. I asked if I could have more ganache, and our server quickly obliged-- thank you!! We loved the crisped flakiness of the pastry (so perfect!), and out of the three flavors, we liked the fudgy dark chocolate sorbet the most. I tell you, if I could've licked the plate clean, I would have. :) Excellent dessert-- I totally recommend!\n\n(*Pizza reheats well! Still lovely in flavor and just as crispy as it was when it was first delivered. Can't wait to go back and try the other varieties! Happy hour UYE, anyone?)", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "awzLL9kAxA6ErPhspP6OAg", "stars": 4, "date": "2010-12-31", "text": "There are a lot of things I miss about SoCal and one of those things is the rich and ever present multicultural food experiences. So I've been on a mission lately and I am quite the happy camper now that we've found legit pupusas here in Phoenix. \n\nSalvadoreno is a neat hole in the wall joint that just screams authenticity with a family run affair and kitschy decor on the wall. We arrived early for the dinner hour on a weekday so there wasn't any other customers in there at the time. A little disconcerting at first had I not read the other Yelp reviews. The service was pleasant but the food out a little slow. Not a big deal since everything came out so freshly hot and just prepared. \n\nWith the four of us in our party we managed to try the pupusas in carne asada, revueltas (pork, beans and cheese) and the loroco flower (a squash/okra like veggie) with cheese. The pupusa dough was perfect and perfectly fried as well. The accompanying rice was buttery and delicious. The homemade tortilla chips were sinfully satisfying and the fried plantains (a separate order) added a fabulous twist to each bite of pupusa. \n\nAll in all we were pleased with our meal and I was even more pleased that Salvadoreno is fairly close to home. We will surely be headed back. \n\nNote to self: the horchata here is not the typical rice and cinnamon drink you're used to from the Mexican joints like Albertos. Here, The menu described it as a morrow seed drink. Since it was not what I was expecting I had a hard time drinking it but it WAS good...just in a different way that's going to take some getting used to.", "type": "review", "business_id": "cNGI_5GbfNFbZBMQZ-s-UQ"} +{"votes": {"funny": 5, "useful": 18, "cool": 12}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "vDbF8XhI68tj55i_pU-S9A", "stars": 5, "date": "2011-04-12", "text": "Not exactly what I expected ..................I liked it. \n\nI was thinking some sprawling ranch house with wood floors and saw dust everywhere, maybe some old west artifacts on the walls and grumpy old waitresses. \n\nWhat I got was a cool little funky building, with cool interior and neat things on the walls. More of a sports bar atmosphere with a good sized dining area. Killer staff and great food. \n\nI had a burger, I believe flat grilled, cooked medium rare and I could tell it was good beef. They said they grind it themselves. The fries were great as they are a fresh cut type. The beans were different. They were a lighter vinegary type of bean with onion and bacon. I liked them but could not eat the whole pot that came out. \n\nIt ended up being a little expensive. 9 for the burger and Fries, 2.50 for the drink and 1.50 for the beans. Tax and tip it was an 18 dollar lunch.", "type": "review", "business_id": "UUssRgBCO_riWg3chbv9Zg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "DcfmUIBBfClOte8dTekVbA", "review_id": "b0DyzZtNsOg_huGwHKhp0g", "stars": 3, "date": "2009-10-27", "text": "Worth the trip but be willing to deal with some craziness. There was a mob waiting outside before the doors even opened.\n\n1 pair of dressy sandals\n2 pairs of ankle boots\n1 pair of pumps\n2 dresses\n3 pairs of name brand nylons\n\n=$215\n\nSo I got a deal. Was is the best deal ever? Probably not, but it was definitely worth the trip. \n\nPros: Unlike other thrift/bargain stores everything is stored by size and type of item. \n\nCons: The psycho shopper club that meets 30 mins prior to store opening!", "type": "review", "business_id": "Nj6ITW0Zhl7LpovGIH6SAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eapbAr6Zi5G8rK62gaWT9Q", "review_id": "QCxvQHGixoTRrBTOSsGQtQ", "stars": 1, "date": "2011-02-01", "text": "My daughter and I went in for pedicures and gel sets... was incredibly surprised to hear the total was $120. even with a coupon!!! When I got home I noticed that my pedicure wasn't the best... I really don't mind paying top dollar for top dollar services but even with a 'coupon' it wasn't worth it. Won't be back...", "type": "review", "business_id": "FXLttunbk-KW--bUK5CRXg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "5KF1Tdo0ZTwyvzpv6LLWUQ", "review_id": "o6XthGhcUosK9LAFopu4gw", "stars": 3, "date": "2008-10-29", "text": "I thought the place had a lot to offer with the atmosphere and the ingredients used in the all of the dishes. I only thought that the menu spoke louder than the dish.", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-5M2EEPopiUv2Q87zfAo8Q", "review_id": "bRKCnSEkRzqTE3kiEe7J3Q", "stars": 2, "date": "2012-05-22", "text": "I had such high hopes for this restaurant as I was coming in from out of town and a friend who grew up in Scottsdale recommended. It was a disappointment. The food was just ok - nothing special. The sticky buns everyone raved up - did not come out as an appetizer or even after meal treat - oddly came out with our dinner so it was basically over looked. The restaurant was not crowded yet we were sat at one of the few tables without a view. My biggest problem was the flies. They were everywhere and we were seated INSIDE the restaurant not on the patio. When you go to an up-scale restaurant to celebrate a special occassion, who wants to be shooing flies away from their food. It was really disgusting and distracting. For the money we spent to eat here I felt ripped off. We ate at the Roaring Fork the next night and it was superb so if you are going to be in the area - you should consider alternatives who have better food, better service and a more pleasing environment - don't waste your money on this place.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "1LgHhWbHvU8sfWbuDubitg", "review_id": "_T8aTW1y8cy05omDYPUDLA", "stars": 5, "date": "2011-08-25", "text": "Being a former band nerd in high school, so much nostalgia kicked in upon entering the museum. I saw all the instruments I was familiar with in high school, and many others that I wasn't familiar with (and learned much about). \n\nThey supply you with headphones and a wireless receiver that plays the audio/video of the different sections you walk into. Each plays a sample of what the instruments sound like and some give detailed history on the instrument. Very enlightening experience.\n\nBest Part IMO: They have a room where you get to test random instruments to your heart's content! I really wanted to go ham on the gong but there was a sign that said something along the lines of \"do not hit the gong repeatedly\". I was disappoint... but otherwise many other instruments in there kept me occupied for awhile (xylophone, conga, harp, etc)\n\nIt's not an arm and a leg to get inside, and this place has something for everybody. You're sure to spend a few hours enjoying yourself here.\n\nIf you're going to do anything in Phoenix, this is one of the spots you should definitely check out.", "type": "review", "business_id": "WnmNF1mNOcbcheVpTv7ucA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Yy0xc7pWnQkktBI8-zTYfw", "review_id": "rI43OIZCvcXSBVBJ8AnGXA", "stars": 3, "date": "2011-07-28", "text": "Perfect for a nightcap. Dim, moody lighting and totally intimate. Drinks are pretty pricy and didn't eat any food, but the service was great! I loved the 'feel' of the place so much I'd go back sometime.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 2, "useful": 0, "cool": 1}, "user_id": "HfwO9GnaP-9VdI0afwgmrA", "review_id": "uQ1vFTPqtEwX3YxYht9sOw", "stars": 4, "date": "2008-08-01", "text": "realized I rank this a 3, what am I insane??", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b2DKC4kC8-QeSeGZ_MF3XQ", "review_id": "rflJEdUJokN2p1s7K1zE6Q", "stars": 5, "date": "2012-07-23", "text": "Went here for our anniversary. Pretty much what you would expect from an upper end steak house. Yes, it's pricey. Steaks were good and service was attentive. A good place to celebrate.", "type": "review", "business_id": "9AbyBqGWHYZC73GlyAuTrQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "MTu3hVSZkK8nkPhqT2FIDQ", "review_id": "DFBb_9IR5sc0sCsi7Hhn5w", "stars": 4, "date": "2012-03-01", "text": "Awesome if you like ramen...even awesomer if you like boba tea!!!", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-_GtJEB9B4Ckm7Cd8RIq1A", "review_id": "jAO9HKUUXyAOCj07bF_GvQ", "stars": 2, "date": "2011-01-23", "text": "Good food, tiny portions, pricey for the amount you get.", "type": "review", "business_id": "aLZoFhOmDtonrWJzUzh8TA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "PTqtBSVtnxTsbgIhfls1NA", "stars": 4, "date": "2011-05-04", "text": "Hours of my time have been spent at J Crew. The sales associates are very helpful, reserving fitting rooms, checking in the back for sizes, even running around the store as you stand unclothed in the dressing room. \n\nClothes at J Crew are more expensive than your typical store but you are paying for quality clothing. Many dresses and skirts purchased elsewhere have hit the dust as my J Crew pencil skirts and blouses stand unscathed. Need shoes to complete the outfit? Maybe a sparkling accessory? J Crew has you covered. \n\nPlus, everything can be mixed and matched. The clothes here fit me like a glove; not only are they stylish and work appropriate. I feel confident, feminine and professional in these clothes. \n\nAsk for the teacher discount if you're in education!", "type": "review", "business_id": "j_KoJeo4mEyayKsyAsY7xg"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "m21EE2_CqPzpXdKsYsbVIA", "review_id": "hQu7FMhTBxYl3TxPsDxf-A", "stars": 5, "date": "2012-06-06", "text": "Dinner for four at the soft opening.\nThe food kept us talking about the tastes and combinations far into the night.\n\nSmall/shared plates will fill you up quickly. The Hamachi Crudo was a fresh, light starter with peppers, fennel and sea beans to fire up your appetite! Grilled asparagus and a delicate, cheesy risotto were great sides but the smoked beef rib was a taste sensation. Sweet and savory, smoky and succulent, sticky and sumptuous! Bleu cheese grits and grilled peaches were the perfect pairing. ahhhh, sigh. I think I'd pass up the tater tots and save room for something else. \n\nThis restaurant is just what Phoenix needs. Close to the ball parks or walk off your dinner in an invigorated downtown, Blue Hound Kitchen is a great addition to the energy.", "type": "review", "business_id": "kr3EFhoSwbJPrL_e_RD39g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "YhkpGX0LPsmxR0aycm1pFg", "review_id": "z3BqLVP9v5hCjf1mCManTw", "stars": 5, "date": "2010-05-17", "text": "Good God, where has this been hiding? My bf and I just made our periodic trip to Phoenix and discovered this little gem. From his kids, no less. \n\nWe went during the 8pm-10pm Happy Hour...on a Friday night. We got a table in about 20 minutes for 6 of us. Our server was super friendly and took our drink order right away. The cosmos and appletinis were $4 and the sake bombs (with Kirin or Sapporo) were $5 and numerous rolls were $5 each; how do you beat that? \n\nThe food was spectacular. We ordered off of the regular menu (2 orders or tuna tataki, 2 orders of heart attacks, and a dragon roll) and the happy hour menu (crispy spicy tuna, philadelphia roll, calamari roll, shrimp tempura roll and a couple of others that I can't seem to remember). OMG, one slice of that tuna tataki and I was SOLD. This was some seriously great sushi...Bravo Yen Sushi! \n\nOur bill for 6 peeps was $96, that's with the tip included, no less...YAY! I will definitely be back.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "66tWp8ThwPATFUxYNPyYLw", "review_id": "PXaTNHXlCRgX2SU8kvZhBg", "stars": 4, "date": "2010-05-05", "text": "I met my cousin here for lunch, and we were really happy with the meal. The place is a less than impressive on the interior, dingy booths, long and narrow. It's terribly crowded up by the counter, not a lot of room to order and pick up your food.\n\nI do question how a place can call itself \"Los Taquitos\" and then not have taquitos on the menu, but I went for the flautas instead. They were good, but what set the meal apart were the beans. The most flavorful beans I have ever had. If you told me these were magical beans, I would have believed it, but I wouldn't have stopped eating them to plant one and see.\n\nService was quick and friendly and there was plenty of seating, even during the lunch rush. Looked like a lot of people get orders to go. I'd like to go back and try a few other items on their menu, if they come with beans of course.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MkLv8wA2AoGFnT4UOZWonw", "review_id": "nW7Ff6L-5peq5io7xBztcw", "stars": 4, "date": "2010-05-25", "text": "The coffee is excellent. The vegan peanut butter cookies are to die for and I generally loath all things vegan. I just tend to believe some things are meant to have milk and eggs in them...oh, and DO NOT get between me and a good steak, you may lose a hand! Anyways, luv all the independent art & designers. Right now I am coveting those adorable litttle robot sculptures. Oh no, I sense another collection/obsession coming on.....do robots get along with owls?", "type": "review", "business_id": "vHgodZBJytT2r7K9c7SLMw"} +{"votes": {"funny": 5, "useful": 2, "cool": 1}, "user_id": "pQlQ5B6rkPjPdinD1BjuIg", "review_id": "Zy_blxSYvvBdGCgVf2sKLA", "stars": 4, "date": "2011-06-07", "text": "In 'n' Out, I don't know how to tell you this, but . . . I've found someone else. No, no, it's not like that, it was nothing you did! Your burgers with their fresh toppings are delicious... but sometimes I just need a little change of pace, maybe something with grilled onions, grilled mushrooms, and bacon... mmm... bacon. Oh, sorry. You want to know the name? I don't see why that... You insist? Okay... it's Five Guys.\n\nOh! You're upset! YOU'RE upset! Well let me tell you what - Five Guys' fries are delicious, whether they come in Cajun OR regular! And I NEVER liked your fries, In 'n' Out! I just pretended to like them, but they're skinny, kind of limp, never flavorful, and you don't get very many. Five Guys cuts 'em thick, salts them up, and pours an extra scoop into the bag, how do you like that! And they give you FREE peanuts to munch on while you wait. You never give me anything!\n\nWhat? No... you're right, Five Guys is a more expensive taste. That's true, it is over $10 for a burger, fries, and drink, as opposed to your $5. And I do have to park in a garage that loosely resembles a labyrinth designed by Escher. But if you eventually make it up to the restaurant, they VALIDATE. You have NEVER validated me! Oh, that's right, you have surface parking, but don't try to pretend that's a feature with the temperature hitting 100! You're ridiculous.\n\nWhat's that? Does Five Guys have milkshakes? Uh... hm. Milkshakes. I never thought about that. They don't. Would you mind if I got my burger and fries from there and then came to you for the shake? No? Fine. You're so overprotective and hyper-traditional sometimes. Live a little.\n\nI hope we can still be friends, In 'n' Out, but I just think I need to see other burgers. Please don't pelt me with limp fries when I turn my back.", "type": "review", "business_id": "MpohnCC0uQNj7DZWaBFSgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "_RN13rQ1c77hAi9LU7nwnA", "review_id": "m3gwH2G0YpYUQG25D5yM7g", "stars": 5, "date": "2011-10-03", "text": "This place was great. When one of my coworkers sent an email to our group who was visiting Phoenix saying he had gotten us a reservation at \"The BEST pizza in the country\" i Was skeptical. Best pizza in Phoenix? Well, I wasn't disappointed! \n\nWe had a group of 8., and we ordered almost one of everything on the menu:\nApps:\nAntipasto - Wood Roasted Vegetables, Sopressata, Bite of Cheese\nSpiedini - Italian Fontina wrapped in Prosciutto di Parma, served warm \nPizza:\nMARGHERITA - Tomato Sauce, Fresh Mozzarella, Basil \nMARINARA - Tomato Sauce, Oregano, Garlic (No Cheese) \nROSA - Red Onion, Parmigiano Reggiano, Rosemary, AZ Pistachios \nSONNY BOY - Tomato Sauce, Fresh Mozzarella, Salami, Gaeta Olives \nBIANCOVERDE - Fresh Mozzarella, Parmigiano Reggiano, Ricotta, Arugula \nWISEGUY - Wood Roasted Onion, House Smoked Mozzarella, Fennel Sausage \n\nOf all of them, the Biancoverde was my absolute favorite! I don't eat pork, so I couldn't sample them all, but I'd happily order this one again. In fact, my team is returning next week for another team dinner for the coming Phoenix trip, and I will for sure be ordering this.\n\nTheir house draft beer is also quite tasty!\n\nTip - if you are a party of 6-10, get a reservation! They don't take reservations for smaller groups and I've heard the wait time can be a few hours at the busiest times! But worth it!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8EidG5WAMoccozDZ_D6shg", "review_id": "ELnUjti9CMoN95_LkV0p1g", "stars": 5, "date": "2012-08-10", "text": "Ok this place was great...so great I decided to sign up on yelp and contribute to the rave reviews that encouraged me to try it out in the first place. I had the fish tacos happy hour appetizer for dinner and they we cooked and seasoned well. They were really good and I would definitely order again. I was told it is off season in August, but the place was filled with locals; all very welcoming. Everyone knew everyone and if they didn't (like me) it didn't take long to feel like one of the locals. Great service, too. Will definitely go back!", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "2wjxy5G63qqI08haqHPTUg", "stars": 5, "date": "2011-03-26", "text": "While my visit, to pick up take out was kind of drunken blur, the amazing food I ate from Diamond's after a few hours of harder than intended drinking were JUST what the doctor ordered. My buddy did all the ordering, so all of it was a surprise, when I sat down to eat. Quite possibly the best Hot-and-Sour soup I've had IN MY LIFE, and all of the everything else that was ordered, was smack yo' mama good. The fried rice, and lo-mein were divine (especially cuz it was a big diet cheat for me) and the EGG FOO YUNG = EGG FOO YUM. I've had much more bad Egg Foo Yung than I have had good Egg Foo Yung.. to the point that I never think to order it, cuz it usually SUCKS, but SO NOT THE CASE at Diamond's! The lady at the register = super cute, and I kinda like the \"stab joint\" classic chinese restaurant looks of this place.. no windows! YES! :D Five stars... the food seriously speaks for itself.", "type": "review", "business_id": "Xsl-i1otDd3GXJEkkKJCaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qjb4c1sjS7GBSCo1RyHVTQ", "review_id": "AOnJdxkTYhw5QEFHSSvJow", "stars": 1, "date": "2012-08-10", "text": "Ok food. Super slow!! 3 employees and 2 customers and I could not believe how long it took for a quesadlla which was cold when I got it...the tacos were decent though....Give it a try and you decide though..", "type": "review", "business_id": "57gnA8qjuFDtUvKMLmtR8A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8gX8VpBo0dnSlKkWIdhIrA", "review_id": "vUZ-CbO99AWzQ4UKID4cug", "stars": 5, "date": "2012-09-11", "text": "I absolutely LOVE this place. Their pizza is in my top 3 as far as the selection in Arizona, and the ONLY downside is that the Tempe location (to my knowledge) still doesn't have any of the pasta dishes that some of the other locations have. The crust is always perfect, the sauce is sweet but with just the right amount of spice to it, and the cheese and toppings are flawless. On top of having some of the best pizza in town, their customer service is top-notch. If you haven't tried Spinato's yet, put it on your to-do list!", "type": "review", "business_id": "6md4A90THda31wTg1bB3hg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "3oQL8DhBUzAvNZWMPY0t5Q", "stars": 4, "date": "2011-06-12", "text": "I agree with Ebony that sometimes Red Lobster does get a bad rap....but this location is a very good one......as long as you get here early (LOL). This locale is always busy.....but the food.....customer service....and the overall ambience of the place really shines. Molly was our server when the wife and I visited this locale for dinner this past Friday night. Right now they have a 15 dollar 4 course meal promotion.....and I am telling you it was the best 15 bucks I have ever spent. I started with the New England Clam chowder.....this is my favorite soup in the whole world BAR NONE. Then I had the Caesar Salad with the Cheddar Bay biscuits which I always have two baskets of ....because those Biscuits will really make you hurt someone they are so good......(LOL). I had the Shrimp and Grilled Chicken in a great garlic and butter sauce with garlic mashed potatoes.....OMG.....the chicken was so juicy and the potatoes just melted in my mouth.\n\nDessert was a very rich and delicious Key Lime Pie......ALL THIS FOR 15 BUCKS......WOW. I felt like I was stealing in a way (LOL) but again if there is a better deal in the valley for a dinner this good.....please let me know. So run don't walk to you nearest neighborhood Red Lobster and try this deal before it's gone. Eat, Drink, and be Merry my Friends!!!!", "type": "review", "business_id": "YgRCJtt7pGvwlb9Ktumeeg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FRPfzzoSL4KKjLcy0Dm0OQ", "review_id": "nYSFIsS_ZwDoHPTyeWkK_g", "stars": 4, "date": "2011-09-08", "text": "Not too shabby. Decent drinks, cheese/meat plate was standard but good. The beet salad didn't have many beets on it.. more lettuce. I think we were wanting it to be all beets. The highlight of the whole dinner was the squishy bread that came with the cheese plate. Pizza was also good. Big negative was that all 4 pizzas were soggy in the center. Other than that, no complaints. The one with fruit on it was the best. The sausage was typical, but good, the margarita didn't seem to be a winner with the table, I thought it was good. I like that rubbery cheese thing though.. The one with seafood on it was my least favorite.The tiramisu with pine nut brittle was tasty, the chocolate cake was fine.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "fMP_2lihTFA0fB7JUUAWKQ", "stars": 3, "date": "2012-10-05", "text": "I had yet to have tried this truck on Food Truck Friday and the line was short so I stepped on up.\n\nIt's Philipino food which I had never had before and I wasn't sure what to order so I just said a word that I hoped was right. Turns out I got the pork egg rolls. I overheard another patron say they were good for Philipino food beginners. Perfect!\n\nThe lady in the truck was very sweet. I paid $8 for 3 pork egg rolls, scoop of rice, some stringy things, and a bottled Coke. Average price for Food Truck Friday. I enjoyed the rolls though. They were steaming hot but the pork inside was delicious. The outside was very crunchy and flakey. I adored it!", "type": "review", "business_id": "1_WD7kvNQAbscw1c7CFH3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GKzWSBv2Dpx3ziMFQ4S0gA", "review_id": "PwgTnu18LYP7HqWFJRGguQ", "stars": 2, "date": "2011-12-29", "text": "I don't see what the big deal is. When I went the soda machine was broken, and the food was bland. Didn't really think the fries were anything to care about. Very sub-par, and more over, just because they give you all you can eat, free peanuts, doesn't mean you should pay so much for a burger or hot dog. Not worth the money, not worth the trip in my opinion. Wouldn't return, wouldn't recommend.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "9QkUkAoL5l2TsqtpEUx1MA", "review_id": "CyIHFGdIFFl1TNuH75oHGg", "stars": 4, "date": "2012-04-26", "text": "You have to come here for the pho. Hands down!\n\nMy boyfriend lives right down the street, so whenever we're hungover, feeling sick, or need our pho fix, we always come here. Sure, we've been to the Noodles Ranch up the way, but we love going to the Saigon Bowl, it's so 'Mom&Pop.'\n\nThere's almost always no one else there and it looks super out dated. But we don't mind. We understand that Noodles Ranch is pricier than here mainly due to the atmosphere. But it's absolutely perfect if you just want to come in, sit down, guzzle down your pho and drench the meats in sauces and leave on a happy, full stomach while knowing you paid less than $9 bucks.\n\nThe portions are large, the veggie plate served with herbs, bean sprouts, jalapenos, and limes is pretty standard and of good quality and size. The timing was just fine (although I've ordered one of their chicken entrees before and waited just a few more minutes longer than ordering the pho) and well worth the satisfaction to follow.\n\nI've ordered just about every type of bowl of pho and have never been unhappy. Broth alone isn't anything too strong. It's light enough to have you finish the whole bowl. The meats are perfectly portioned for dipping in the sauces that are at each table and of course, the ending gulps are the most flavorful.\n\nI'll always be coming to this place so long as it's in business.", "type": "review", "business_id": "rOEWuLpnYJVvm4REIgXt7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jLBh-z3JrJkqJfn5VN9OJA", "review_id": "1onRumcKpm9CqxUAQJVZnw", "stars": 4, "date": "2010-01-31", "text": "First time impressions are the most important and Culinary Dropout made an ever lasting one. Everything from the service to the food was spot on perfect. The whole experience was so good that it's hard to believe it will be the same when I go back. \n\nI hope it is............", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "t_O1cTzXj8SGrLBl77dEKA", "stars": 3, "date": "2010-11-03", "text": "The acoustics are pretty good for an amphitheatre. The process required to acquire booze is a tad ridiculous but you have to remember that you are in Mesa. This place would certainly rate higher if it was located in a city that allowed concerts to go past 10pm.", "type": "review", "business_id": "lEGq4UveDPxikXcpwjtFow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kt9NwDONle_mc0QHTud9jw", "review_id": "4hMVElkuYErVgCHgVL1Ptg", "stars": 2, "date": "2011-10-14", "text": "This place has potential but I didn't care for the layout. Long bar is neat but instead of all the small tv's they should have put in bigger one's and spread them out. The large screens are neat, but sitting in the uncomfortable chairs sitting to close to them was bad planning. I believe the owner is a Sooners fan so that game rules over others, even Devils games. The volume wasn't on for the Devils game, wth. Waitress was lazy, didn't come by the table often. Chicken Tenders were good, with sweet and sour sauce. Sweet Potato Fries are gross, doesn't taste anything like 'em. I'd go to hang out and not expect much in the future.", "type": "review", "business_id": "drqCrnSqtGffJ1z60aWkxg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aHTeZXwpX67uUh_YaLYYdw", "review_id": "q56yg9aBihDourCdBMtqPw", "stars": 5, "date": "2012-11-08", "text": "Brought my car here b/c of the reviews I read on yelp. My fan was running excessively. The mechanic came and looked at my car. The coolant was low. He grabbed a can and filled it up. No charge. I then told him I needed new struts. He quoted me a price that was cheaper than the one quoted to me in CO a few months ago. I honestly didn't shop around for a cheaper price here in Phoenix, which is unlike me. The reviews here, and fixing my fan problem at no charge had me sold. It seems so rare to find an honest mechanic now-a-days, especially in this economy. Made an appt. Car was finished super quick, in the time frame that was promised. The mechanic went out of his way to show me the damage struts he replaced, then told me my new struts came with a lifetime warranty. Dang, did I time warp back into the 50s? Hopefully I won't have a need to go back, but if I do, I'd gladly drive out of my way one hour round trip for their honesty again.", "type": "review", "business_id": "Zmf_0A0QNLBCiag0Q-b9bQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "BNv6gBYw4rPSMXeoH7aOjA", "stars": 3, "date": "2010-01-29", "text": "Went here for lunch today (Wasn't feeling the hot pocket I had in the freezer here at work) \n\nWhat can I say. Its Subway. Its consistently mediocre. Its not overly fantastic, but its not knock me on my ass terrible. \n\nSubway is kinda like Olive Garden for me...some times you just need mediocre food. I don't know why it is...and maybe I am the only weirdo... But one thing is for certain, it always tastes the same every time I go there. Maybe it has that high school nostalgia for me. I dunno. I also like stail Necco waffers, so maybe dont pay attention to any of my reviews. \n\nI get the Spicy Italian, on cheese bread (duh), provolone cheese, light mayo, mustard, lettuce, cucumbers, olives, onions, peppers and LOTS of banana peppers, S&P. That's how I roll.", "type": "review", "business_id": "Vzq74f0YrT0IbWBPkbUp_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PA3ztLFGwZgbV_q1FqwcAA", "review_id": "eSkNW469JWtJw8wYTqN0UQ", "stars": 1, "date": "2010-06-03", "text": "I went for family birthday on a Friday night. Only a few people in dining room eating. (1st clue to leave.) Ordered a margarita. It's extra to have it shaken... But I ordered that way. It was mostly sour mix. An it was awful (How do you mess up a margarita?(2nd clue to leave) Server is surprised we wanted to order dinner! (3rd clue to run!) Very disappointing. I got the chicken fajitas, they had sauce all over them. Shrimp appetizer consists of 3 shrimp $8. Salsa was good. I will never go back. Good luck Salty. I love your decor. Why don't you care you could be so cool!", "type": "review", "business_id": "Yiw1ml0XVBDIQBTLXHNGmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F21azNBoXB8c6zorMz0jaw", "review_id": "QlKIfqRhca5dKIk60MWxqQ", "stars": 4, "date": "2011-09-07", "text": "This store is 2 miles from my house so I am there all the time. I find their customer service has been consistently good. Even on Black Friday at 7am the sales help has been very pleasant and very helpful.", "type": "review", "business_id": "Vm9GQUptdZmBM9R7tZ9_Tg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "EDaq0gMX_74Rm70wO-6uYg", "stars": 3, "date": "2008-06-06", "text": "decently priced Korean food. they offer more soups and korean style casseroles - no dolsot bibimbap, BUT their kalbi tang is reallllly good! Huge bowl, lots of kalbi, yum yum yum!\n\nthey're also open a lot later than many other restaurants, always a plus!", "type": "review", "business_id": "xCXSaqlKvclhWBczA4fqkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BV1ir8D2fpek-yYs8MpNGQ", "review_id": "ZNYJfzdeBVGsYDeqUn8l5A", "stars": 4, "date": "2011-12-10", "text": "I enjoy their Rama Chicken. Their peanut sauce is great. However, their service is slow. It is difficult to eat lunch their because it takes so long. If they improved their service my rating would be 5 stars.", "type": "review", "business_id": "RFeDe3fNr14kvUKlVx6_4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k2v-aDC2NC95Lm-9oCEW_A", "review_id": "B_8PBsJ9iSCcf8UyDqUOYg", "stars": 1, "date": "2012-05-10", "text": "I wish I could review the cold food stand attached to this restaurant separately because I want to tell any and all persons who think to stop by for quick sandwich to stay far, far, away from the tuna. \n\nI thought nothing was worse than slowly starving on my flight back home, but I found it in the form of this cold, barely-recognizable-as-food sandwich. I think I'd prefer eating tuna out of the can over this.", "type": "review", "business_id": "SAS7V55TcgZSTJ21ZnXqmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GXgZEnuAKURhHwANOpHmtg", "review_id": "6mWaqMbVM-CFcIQMmdwLzA", "stars": 4, "date": "2012-02-04", "text": "$5 pitchers of Four Peaks brews? That's an awesome happy hour! Bruschetta is amazing... $13 is a bit much for it, but still super tasty! Great environment. Happy staff. Killer design and music. Great location. Love it!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "W5sBWBiY7YUIvLq_IZmhOg", "review_id": "plKTSHxyGcVYJtyztzDumQ", "stars": 4, "date": "2010-11-08", "text": "I dig this place. I have only ever eaten here for lunch, but I have been here a kabillion times, and I love it. The only 2 negatives are the parking and the SEMI-cash-only situation. Meaning, this place DOES take credit cards if your order is over $25!\n\nA lot of other Yelpers have complained that the male owner is a little rude, and his wife (I think?) is the other owner, and she has always been okay. I guess I am from the east coast, so they seem totally fine to me, but I can see where AZ people think they're a little gruff. Whatever... I am not paying them to be nice-- I am paying them to cook me some awesome grub.\n\nThe best sandwich, to me, is the Italiano because it's the best prosciutto I have ever had. The texture and quality makes it melt in your mouth. Also, you can have this sandwich on focaccia (my friends usually choose this option) or the homemade Italian bread, which is my choice. It's soft and that dusting of flour just makes me all Italo-happy. It's served with uber-fresh basil as well. There is a balsamic dressing that is usally served on top, but I ask for it on the side, as I don't like my bread to get mushy. Finally, the sandwich is pretty big, so it's worth the $10. (It's gotta be $10 worth of primo prosciutto alone!)\n\nThe other key choice is the pizza. I departed from my beloved Italiano one day (but only because I had already eaten it 2 days before) and ventured toward the pizza. I am suprised to say that it's really great! The crust is perfect, and it's just the right amount of doughy.\n\nMy advice is to try it. Get there at 11:30am or 1:00pm for lunch. Carpool. Bring cash. Smell the air when you walk in. Order the pizza. Make plans to go back and try the Italiano. ;)", "type": "review", "business_id": "podj1OWSL3oEJsOpGj8SUw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "8fTTvS499XCz4oP49kxq8A", "review_id": "M6-JE-yn1LvPd6fnIlwR7A", "stars": 4, "date": "2012-08-29", "text": "I frequent this location before work quite a bit since I start work right around the normal dinner time. Always clean, friendly, and good food. They have real silverware and \"real\" plastic plates! Lol.", "type": "review", "business_id": "8AYH_pFl8GpPKCR_k-QigA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "9SZBVZ-mxebOVa1BlWFtWw", "review_id": "9BC5jcSfhp2gkGNqWZTayw", "stars": 5, "date": "2011-06-08", "text": "Love Love LOVE Baker's Nursery!! Been going there since I was a child thanks to my grandparents (my grandad and uncle used to do roofing work for the owners decades ago). \n\nSeriously...this place is FANTASTIC and the people who work there are AWESOME! \n\nWant to know what plants/trees you have in your yard? Bring in a leaf or bark sample and they'll tell you. Found out we have Chinaberry trees(messy!), Lantana (evil and will not die!), 2 Trumpet vines (attracts hummingbirds!) and a Texas Sage bush (beautiful purple flowering bush) in our yard. \n\nWant to know what type of tree would do well in your yard? Just ask! \n\nNeed something transplanted? Buy the pots and they'll replant your plants for you. \n\nBuy a sad looking clearance plant from another local store, they'll tell you how to nurse it back to health. \n\nI could easily wander around Bakers for hours, except during the heat of the day in the summertime! :)", "type": "review", "business_id": "7p0OI2Ld46-EzJkRHGQEJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QynSKKOsNFt_-GxVoKx19A", "review_id": "y_PCsLjC3Ov59CUKK93o4w", "stars": 4, "date": "2012-10-18", "text": "Wooot for \"grown up slushies!\"\n\nThis place is a staple of my Vegas adventures and was just as fun in AZ. \nWe hit Happy Hour for cheap drinks & apps after an expensive Octoberfest. Lord please forgive me for the extra shots of everclear on top...$1 floaters...they should be ashamed of themselves...sinful...I LOVEDDD it!", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XN6rkK5278-PBhw2vA4L9g", "review_id": "LIzKWwdbo3vCKWvnhUgZ9A", "stars": 5, "date": "2012-09-14", "text": "Over the top cheesesteaks. Best in Phoenix, perhaps the world. Amazing food and friendly service. Best ever.", "type": "review", "business_id": "QwaoxP5Mgm3PJuZo_4bFsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kXT3pVtElactR8nFmeLbbg", "review_id": "3rLNWqt0kXQI9SrAILhBeQ", "stars": 4, "date": "2010-11-27", "text": "I've only ever had the carne asada quesadilla and churros, but they are damn good.", "type": "review", "business_id": "1zDCfNgtfyh-Uw8j3JxhHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "zsWcJTuoJjuGauGOofMwYQ", "stars": 1, "date": "2009-04-27", "text": "My love affair with Fate ended when Johnny left. \n\nThe service, quality and atmosphere took a total nose dive.\n\nGo to Sens instead.", "type": "review", "business_id": "VsO_rhXi5lgbaGxNwoEZsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Da4aw-NF9ond8U6XYRmT0g", "review_id": "Q18HBGHezvlCKBlnNlQ3ww", "stars": 5, "date": "2011-01-26", "text": "Bacado. Yes, you read that correctly.... The \"Bacado\". It is a glorious concoction consisting of an avocado and bacon omelette with cheese on top and served with an English muffin and country fried potatoes. Decent black coffee and good service.\nDelicious.", "type": "review", "business_id": "E_wJCQ9L_0w5tJyrvr0lJQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "VDRYPEY-zSs3pbetLkGiiw", "review_id": "eodhPZxeAD2SOwpHem8_4A", "stars": 1, "date": "2011-12-11", "text": "Be VERY, VERY careful asking for a sandwich as a wrap. I ordered a ham and cheese make your own sandwich, ordered it as a wrap to go. I got home, there's lettuce and mayo and... what this? what's this I see in this sandwich? there's the cut-off fingertip of someone's glove lodged between the lettuce? (At least I hope it's the finger tip of a glove - I'm not even going to think of the other thing it could have been.) Ewwww.... gross.... I didn't finish the sandwich. Memo to self: Don't ever get wraps from Einstein's, particularly not the one on Shea. Disgusting. If it ever happens again, I'm calling a local news station to report it, then I'll call the state health department. Gross, gross, gross, gross, gross, gross... if you can't deliver sanitary wraps, THEN DON'T PUT THEM ON THE MENU. Not a place to go if you like wraps.", "type": "review", "business_id": "t1XhXY-Vt4K1OPLkuOcsfg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "E83jZ7j07Hx-RcRiTbA_kg", "review_id": "pmBB_YgP1gKTaTwz7Yk0MQ", "stars": 5, "date": "2010-03-04", "text": "Green....how I love thee. Green may be vegan/vegetarian, but I certainly wouldn't claim it to be 'health' food. Green is located in a small run down strip mall adjacent to Kore Bicycles on the NW corner of Scottsdale Road and McKellips. It doesn't look like much from the outside and without knowing of Green you probably wouldn't do a second take upon passing it, however the food here is no less than amazing! \n\nThe decor is unique and fresh; 10-12 tables, a couch/lounge area, random artwork on the walls, painted quotes, lights hanging from the ceiling, and old painted car doors along one wall. I've tried a random assortment of items from the menu and nothing has disappointed me...but by far my favorite is the BBQ 'Chicken' sandwich along with an appetizer of the spicy buffalo wings. I believe the mock chicken Green uses is fungus based, Quorn perhaps (may not sound appetizing but it is freaking awesome). I am not personally vegan, or even vegetarian for that matter but Green has me hooked. I've 'forced' many of my meat eating friends to try Green and they have all become believers (if you could call sharing something so wonderful forcing).\n\nGreat prices, great dishes, unique/fun atmosphere, and great service!!!\n\n (On one Saturday evening around 6:30 my boyfriend and I decided to pick up some Green to go, the place had a line out the door and it took about 30-45 min to get our food. We weren't even upset about the wait, just waited patiently for our delicous order and upon arrival the server gave us two free entree tickets for our next visit and apologized. THIS is how you keep your customers coming back for MORE!) Love this place so much!", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hNk9YQNC9vJpEs5swUlbeQ", "review_id": "pFHJZfvF4Et8NzdAxTbnLQ", "stars": 5, "date": "2012-09-23", "text": "Excellent macaroons! Great owners very conversant with their costumers.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wJlwbBKPiwDWsFmGmYH23g", "review_id": "8TcHnUZb2WUS6ApgpadM1g", "stars": 5, "date": "2011-08-19", "text": "Best pizza place ever!!!!!!!!!!!!!!", "type": "review", "business_id": "7t9VbwL5orIV0-DzrjU7_A"} +{"votes": {"funny": 8, "useful": 8, "cool": 5}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "aJQSMy5_Z_UMH9fKVbzx4g", "stars": 2, "date": "2008-05-16", "text": "Why do you bring in the best bands and then torture me?\n\nParking is freaking ridiculous, at least I have been enough times to know to leave my car on Mill and walk.\nYour security people are a bunch of freaking jerks who take their power wayyyy to seriously - take off my shoes? What kind of weapon or drugs can I be hiding in my open toed 2 inch heels?\nYour sound SUCKS - seriously sucks. For all the fees you charge on top of tickets - buy some new speakers already.\nThe bathrooms are gross\nDrinks are reasonable so you get 2 stars \n(Watch out for the glass walls leading to the patio if you have overindulged in booze.. I've heard they are easy to run in to).", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "H4XCAov3KP3JjThhExpocg", "review_id": "q06AEcfziNBi3o5lGjXipg", "stars": 5, "date": "2009-05-08", "text": "Angel sweet is without a doubt the best gelato I've had outside of Italy.", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "KXSpx3GxpcT5CtWcnHo1aw", "review_id": "-8DRrwUePpDUw3hWbwxGVg", "stars": 1, "date": "2011-12-07", "text": "I give this review a total 1 star If I was able to, I would have rated no stars at all!.... I would NEVER reccomend ANYONE to live here. The office staff is horrible and made me feel uncomfortable the whole year I lived there based on THEIR MISTAKES! I can not express how disappointed I am with the way that they have treated me.....", "type": "review", "business_id": "MKKihkKRtemuyCzAjEZyvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1ykGYq1ERicaZWCl5-Vi0Q", "review_id": "kCY--CYrDAehv-Ed9ngRKw", "stars": 3, "date": "2011-07-01", "text": "A good place for bugers and fries.", "type": "review", "business_id": "Mysd5IypHqTFkmHlbQeOyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cb_N2blI9xsF8vaFL5Cwcg", "review_id": "qu2p1zYlSrt_TI6XROPK_w", "stars": 3, "date": "2012-04-15", "text": "My husband and I tried this place out since it is fairly close to our house and gets decent reviews. I drank, my husband ate. The wine selection is ok and the staff seemed friendly. My husband's dinner was okay. I'd probably give this place better reviews had they not attempted to give themselves a $15 bump on their tip. I'd also probably give them better reviews if the manager would have called me back after leaving a message with a staff member about the charge especially when I left all the details necessary to fix the issue and was promised a call back that afternoon when the manager arrived. Now, I can only assume it was not an inadvertent mistake since they give me no reason to believe otherwise. I really would rather not have to keep calling back and chase my $$ down.\n\nEdited review - took them from 1 star to 3 stars since I received a phone call today from a manager and was advised it was a mistake and they credited me back the funds. Also will be sending me a gift card for the trouble. Overall, I appreciate the follow up and their efforts to fix the issue and bring me back in. I was routing for them since the patio seems like a pretty chill place to have some drinks and unwind.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8EaO99Q3E_SS8KzOR1rFrA", "review_id": "k9YdRmbDuxl_6JZFBvBD7Q", "stars": 4, "date": "2011-08-31", "text": "If you love BBQ, this place is for you. \n\nNostalgic feel with a farm tactor sitting in the dining room. Good selection of sides and the rootbeer is home made. \n\nLike Joe's Farm Grill, this place can draw a crowd and you'll be in for a long wait for service but timing is everything.\n\nCan be a bit pricey is you load up but the quality of the food is top notch!\n\nI'll definately be back.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hGitwL2Ixiq3C6mJyQrlPw", "review_id": "Fm3LuNMTpVf5qgGV3D0y0w", "stars": 2, "date": "2009-07-11", "text": "Not so good anymore. Plus the \"aura\" of the place has become a little snotty.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "mmT_lmvBJnSnMEX3PsareQ", "stars": 5, "date": "2012-11-14", "text": "We checked out the prices at The Dump, the sales person there just were too pushy. and their prices were not the lowest. We checked out the prices at Mattress Firm to see if they were any cheaper. We had a wonderful experience! The salesperson was friend and helpful NOT pushy at all. They had the i-select model bed that my friend was looking for. They were $200 cheaper, delivery was cheaper, and free tempur pedic pillows. SOLD!!! My friend is happy as a customer.", "type": "review", "business_id": "QjbiS4XFuW8BmXXRWprrRQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "Oi7fgPUlbaLgw2tVwQ_Wpg", "stars": 3, "date": "2010-06-03", "text": "I ate here over the weekend while attending Comicon. I was actually pretty hungover at the time and desperately needed to plug my gut. It was between this and a deli I saw a little bit down the way but pizza always, always sounds good so I made my decision. In my mind, in a fight between a pizza and a sandwich, the pizza would always win because it has the power of molten-hot cheese and pepperoni shields.\n\nYay: It was like $6 bucks for a big slice of pizza and a salad and a drink. That's a really, really good deal. The salad that I got wasn't like an amazing salad but it had onions on it and croutons and had a strong flavor. It wasn't bad. If I were a teacher and my class assignment was, \"Throw a salad together super quick and cheap,\" and I got that salad, I'd give it a B.\n\nNay: The pizza was not so good. But, you know, it was pizza and pizza is hard to fuck up so it was salvageable. The big problem was that it was so greasy. I mean the pizza sweat grease like a fat man's back. If I were a teacher and my class assignment was, \"Make me a cheap ass piece of pizza that tastes good,\" I'd give this slice of pizza like a C. I choked that shit down though and washed it down with salad and raspberry iced tea.\n\nSo, you know, the pizza wasn't great, but after I got done eating I felt a lot better. I had the strength and energy to check out Comicon for the rest of the day. I geeked out good.", "type": "review", "business_id": "ptIRdaZlXxuVJTiJDFJCIw"} +{"votes": {"funny": 0, "useful": 6, "cool": 5}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "OUYW_ylJmTRZFRtTEMzAbQ", "stars": 4, "date": "2009-01-16", "text": "Impressive dinner tonight! However, it was a packed house, and it took over an hour for my Panang Curry to arrive. While I was a part of a large group of about 14, our particular group had 6 people. One tablemate's entree (Ginger veggie stir-fry?) arrived at least 20 minutes before the second tablemate saw hers (Yellow Curry). It was at least another ten minutes before the third tablemate saw his, and so on... I was able to sample my neighbors' dishes of Spicy Catfish (battered and fried catfish topped w/ bell peppers, basil, and spicy red curry sauce) and Swimming Rama w/ pork (topped w/ peanut sauce over steamed veggies). All three were AMAZING! I'll definitely order the Rama and the catfish next time!!!\n\nDidi, our server, moved quickly, was efficient, and attentive, and was even helpful in suggesting alternate selections to those who had never had Thai food before. She even warned tablemate Ericka, who'd only recently discovered peanut butter as an entree ingredient, that she'd either love or hate the Rama. We were thankful that she rolled the dice and ordered it, anyway.\n\nI hope that the kitchen crew can work out the kinks as far as pacing goes-I hope that by next visit I can up the review back to five stars!!\n\nOoh, do try the coconut ice cream w/ embedded grated coconut! Not as good as Yupha's homemade coconut ice cream, but still quite delightful :)", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3aP_EyVhsjlCikyuVcPlbA", "review_id": "mPr37R_AIsFk5dIejg7-qw", "stars": 2, "date": "2012-04-01", "text": "Place is avg. Sushi was good but the red sangria saki was bad. Service was sporadic and we had a one plate that they forgot to put the sauce on, and another couple plates they tried to give us which we did not order. I would try to find another place.", "type": "review", "business_id": "nk6_ipMkmUvUtq6Xvncf0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "m9Kl_CB5K5Zlmn1aNAFl3w", "review_id": "wrJiJRoPGMZBtkEzkKMz_g", "stars": 2, "date": "2011-04-13", "text": "As a breakfast snob I really do not like Denny's. They don't really do anything especially well. Also, I've had inconsistent quality of food and helpfulness of staff on different occasions. I can't slam this place for one unpleasant waitress, but I can for those inconsistencies and that fact that there are just so many other places that do what they do better.\n\nIn fact, this place was the very last Denny's I ever ate. The food took forever, it wasn't well done, came out all screwed up, and the waitress was unpleasant. After that experience I decided to never set foot in another Denny's.", "type": "review", "business_id": "44qg4vgcqJkjF8eqG4R4JA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lKhuI73GsTFvOrCe_tAJFw", "review_id": "6nYkZgGBjKpKNRb8a5eKTA", "stars": 5, "date": "2012-02-28", "text": "We Care Family Wellness Center is the most exceptional doctor's office and staff that I have ever found. Every employee here genuinely cares about you. I highly recommend.", "type": "review", "business_id": "gpyWGG0U-yqnVKru6y8fNQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "kDd9xHsUOg_HYOvxkQcnXA", "review_id": "8mFHCHOT-9MkihwvaEs-Kw", "stars": 4, "date": "2011-07-13", "text": "Bottom line: Scott's has a matzo ball soup so good I can't imagine how anyone could ever hate the Jews. Best bagels in Phoenix, hands down. Take your Einstein's and shove it.\nScott's has an expansive menu that ranges across breakfast, traditional deli offerings, and a strong but semi random assortment of 'home cooking' type meals that your mom makes but you never see in restaurants. I haven't spent a lot of time in delis in New York, but Scott's reminds me of the \"New York deli\" I used to live around the corner from in Houston, down the street from the JCC - tasty, simple, and unapologetic, about anything. I love their soups, although their pastrami is not the best I've ever had. They have every flavor of Dr Brown's imaginable. The portions are huge - too huge, actually. I'm minuscule, so the prospect of a sandwich that is 3x what I can eat in one sitting is daunting to the point that I only go if I know I can take a box home. The service runs hot and cold, but I've never not gotten what I wanted the way I wanted it, and if the waitress isn't looking at me with vague disapproval, I feel like it's not an authentic New York experience.", "type": "review", "business_id": "PxeX1M8WtyPxX1MuuGIh-g"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "nx2PS25Qe3MCEFUdO_XOtw", "review_id": "2yHyr0N_XNZggmIfZ7JaHw", "stars": 1, "date": "2009-10-27", "text": "Remember how I said that the Trivia was the best thing about this place? Well, they got rid of long time Triva host, Dave (who had been featured in the College Times and was the best thing about the trivia). Without Dave's personality, this place just doesn't cut it. Will never go here again. Bummer.", "type": "review", "business_id": "cXx-fHY11Se8rFHkkUeaUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cXnWZPcrtHjKXbcNzulg2A", "review_id": "daZn4dXDv4yg9jUslv67kA", "stars": 4, "date": "2011-11-15", "text": "I am only reviewing this location as the other locations are hit and miss. The one on Tatum and Dynamite was bad both times we went there. So, I go out of my way for this Barro's Pizza. The decor is similar to all locations. Very drab and not very comfortable. But, we are talking about a pizza joint, so they will get a pass on the decor. \n\nI had a mini Hawaiian pizza on my last trip and was delicious! The crust was crunchy on the outside and soft on the inside. The sauce was tasty and the perfect amount. I ate every bit of it with no crust leftovers. That was how outstanding it was. \n\nI am surprised that the consistency between locations is such a wild swing from outstanding to mediocre at best. The owner should look into that.", "type": "review", "business_id": "U_CvxSM9epIi8u5A0jOUVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gXmtPKLWPZJeJX_KPw54HA", "review_id": "4nvfVCoIDBhEiQdvXh1xoA", "stars": 2, "date": "2011-04-20", "text": "Finally was able to make it here for breakfast. My opinion, I will NOT be back. As we were walking up to the place, I said \"O now this is the kind of place we should be taking our out of town visitors.\". Well, on 2nd thought, NO. We went today, a weds, there was no wait and we were seated promptly. We were informed that the beverages was self serve as far as coffee, water, tea and lemonade goes. We started with tea-dislike, then lemonade-dislike. And did I mention we self served ourselves in a 12 oz cup with a price of $2.75, WOW! If it was to our liking, Id say that is still steep for a self serve drink in a 12oz cup. He had the monte cristo, which he liked but was not blown away for the price. I had the french toast and it was only ok. I also ordered a side of sausage that i DISLIKED and it was $4 for I think 2 links, WOW. And once our food came, the flys were EVERYHWERE. I kid you not when I say I couldnt wait to get outta there. I left very disappointed, and hungry. Will never return or recommend. But hey, try it for yourself, you may like it. I just think it was too high priced for what we got.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wIi2J1UGRB2G_3vu5eNK3g", "review_id": "A-mQ90JzvEOkoWfsg10J8Q", "stars": 3, "date": "2011-11-05", "text": "if you want a really filling, delicious \"please-make-my-head-stop-feeling-like-it's-about-to-explode\" hangover cure, there guys have got the remedy! the hangover helper is all of the above and get's even better when you add the hair of the dog bloody mary for an extra $3! (they also have live music on sundays during brunch!)\n\nthe architecture and windows are stunning in this place - if you've never been in here, it's worth checking it out!", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "SRlh4J85Js9ozC1eco6DQQ", "review_id": "pDoptH8gE2rAInbK9mMabA", "stars": 5, "date": "2011-12-25", "text": "Best damn Brownies on the planet (or close to it)! Words cannot explain how good they are. The only negative is that this palce is located across the street from my office! Way too much temptation.", "type": "review", "business_id": "E2F25cRcYf_bWtvbCht0EQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "rMmsDx0VB2onSrAj3qnI5Q", "review_id": "0OWJdGZ-TV4S1_sRQjqImA", "stars": 2, "date": "2012-04-17", "text": "Made the mistake of coming here on opening day. Not a good idea for someone with anxiety issues. They had a bunch of really good deals, but I fear it is probably going to be the same as going to Walmart. And I HATE going to walmart.", "type": "review", "business_id": "gWP6ofoyTbK0SZj1i_XqNQ"} +{"votes": {"funny": 2, "useful": 7, "cool": 4}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "qQcvmt1tvMR3F5OolsIRPg", "stars": 1, "date": "2012-04-28", "text": "Had some time to kill before the Ultimate pleY Date Yelp event, and I'd wanted to share my love of Nobuo's Dark chocolate mousse with green tea ice cream and sugared orange peels with my happy-go-lucky cousin, who has never been here before, so we stopped by at 5:17p to find that Nobuo wouldn't open till 5:30p, so we waited outside in the comfortable patio.\n\nAfter watching a couple of employees add lanterns to their outdoor umbrellaed tables, I noticed the \"OPEN\" sign on the front door, so we entered the resto, whereupon we were greeted warmly by a male host and shown to a two-top. I didn't like the energy in that room, so I asked if we could sit elsewhere, and he said to choose wherever we wanted to sit. We were the first customers, so we chose a four-top, knowing we wouldn't be taking up space for very long, anyway. Glasses of water were delivered, and soon we met our female server (whose name on the receipt reflected \"Butai\"). When she laid down the menus, I told her we would only be having dessert and could we see the dessert menu? I wished we had a video of the look she gave us, a look of pure distaste, as she gathered up the dinner and beverage menus and said \"We don't have dessert menus, as we only have two...\" and proceeded to tell us of the mousse and the almond-orange fritters. She walked away, and as we loudly discussed about our losing our interest in dining there, she came back with napkins and utensils and asked if we decided what we were going to have. I decided to forgo our server's very cold treatment and asked for the mousse. After all, I'd already finished a glass of ice-cold water and cousin's phone needed recharging... \n\nWhen Butai placed our chocolate mousse http://www.yelp.com/biz_photos/0Buxoc0cRqjpvkezo3bqog?select=rK8m1rxl50PB69_c2YqQTg#rK8m1rxl50PB69_c2YqQTg on the table, I wanted to send it back. Where was the lovely bowl and presentation of the last dessert I had here? Was she serious in presenting us with this stale-looking mousse, with cracked edges and whose green tea ice cream had ice crystals on it? I don't know about you, but the only times I've seen crystals on ice cream is when it has slightly melted and placed back in the freezer to re-freeze. For me, seeing crystals on ice cream is a sign that it is old... I brought the receptacle and showed it to the male host, who assured me that all of the mousse is made daily at 4:00a and seeing cracks and bubbles in the mousse is normal, so I decided we would go ahead and try it, if for nothing else but to have something to report here. The dessert was definitely not up to par with the pretty bowl http://www.yelp.com/biz_photos/0Buxoc0cRqjpvkezo3bqog?select=o9jIksB-MObhCxoI_msekQ#o9jIksB-MObhCxoI_msekQ I had during our October OYE in taste and presentation, but it was OK. The mousse was still cold and stiff, and it had a mouth-feel more of like thick chocolate ganache filling/icing on a cake- certainly not the silky-smooth chocolate decadence I knew it could be. My cousin had to warm up to the dish, as the sound of chocolate and green tea together didn't seem like a great combo to her (I told her to trust me). She also never enjoyed orange and chocolate together, but she liked it in this dessert. \n\nI understand that the knowledge of having to serve only dessert instead of dinner AND dessert, which translates to a higher table bill, can be a bit of a disappointment, but why must you show your displeasure to your guests? Butai, you were lucky that my cousin even left you the change for a tip- she didn't want to give you anything, and you certainly didn't deserve it! When I told other Yelp friends about the sub-par service and dessert we just had, one replied she didn't enjoy the last time we had apps here (I think it was around Halloween and First Friday?) either. Cousin and I thought it very poor taste that our server gave us that awful, condescending look after finding out we were just going to have dessert; We didn't deserve that! I am never going to recommend Nobuo to anyone, anymore. I even promised my Japanese friend (who lives and works overseas) I'd treat her to a dining experience here when she comes to visit. Guess I'll have to find another place to take her... I don't want to risk getting the same treatment from Butai, or from another server should we come back here. \n\nSorry, Nobuo, but I won't be returning.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pU2lBD_W3VNvpzKZsRzi2A", "review_id": "q62km1p5M_3X1gLPEFqIGQ", "stars": 5, "date": "2010-11-24", "text": "i tried the thai river noodles. they will not replace the love i have for a dan dan noodle bowl. but the thai noodles, they were good.\n\ni like this place because it has really opened hours compared to everything else around here. and the food in inconsistent. oh also, the new soda machines are very entertaining. just watch....\n\nthis is usually a last resort option (everything else in the area is closed). but it is a good one nonetheless.", "type": "review", "business_id": "7pxa5tueoEcmt6hztqsz2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gQyOwXDSPGgZ_ngw89Dkug", "review_id": "yl-z0rKr4PfwfEMBXNzIpg", "stars": 5, "date": "2010-11-07", "text": "What an amazing place!! I had an incredibly enjoyable time staying at the Royal Palms Resort, and recommend it highly. So many excellent points: absolutely gorgeous accommodations, polite and helpful staff, excellent restaurant (breakfast/ brunch outside, with a delicious cup of coffee, is a must), a great spa, and a relaxing atmosphere. My boyfriend and I stayed here for a conference in late October, which is a great season in Arizona. Our stay was a pleasure from beginning to end. The resort is well-suited for special occasions (there was a wedding reception and an outdoor conference dinner during our stay). Our room was very comfortable, with excellent set-up and a great view of the mountains from the balcony. The resort includes a pool, a small gym, several lounge areas with firepits and fireplaces, and the wonderful Alvadora spa (with massages, facials, outdoor-facing showers, and shaded lounge areas to your heart's content). There are several mountain trails a short walk/ drive away from the resort, and downtown Scottsdale is 10-15 minutes away by car. In all, a beautiful place for a special occasion!", "type": "review", "business_id": "rLAeltELaGdQKh_LYIllEA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "B8t1hkG4EX7ar4r9PCEJMA", "review_id": "d_PYNOSwWJvQfAe3kQqXWw", "stars": 4, "date": "2009-04-14", "text": "the rustica looks like a penis.\n\nthankfully, it tastes like pizza. super thin, crunchy crust pizza. \n\nthe husband and i went for lunch to the one in scottsdale, the other day. we shared a spinach salad and each had some pizza. the salad was very good and plenty for two people to share. \n\ni had the appropriately called \"meat\" rustica and it was really good. this is the only the second place in phx i've had pizza that doesn't make me feel like i splashed my face in grease after. (grazi is the other). \n\nthe husband had two slices, which were more than plenty for a meal. they were completely different styles of pie and both were great. \n\nwe'll definitely hit this one again.", "type": "review", "business_id": "kK4AzZ0YWI-U2G-paAL7Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eW4wK3I_tdwROgYvTdidaw", "review_id": "mSsXep_OZ9FJtLAV-qgF0Q", "stars": 4, "date": "2011-05-26", "text": "Great service !!!\nFood was good, not spectacular, but very good.\nThey had some crative rolls and a few really good appetizers.\n\nCool little spot that kinda hides in a non descript spot ,\nI will certainly be back if I get a chance before leaving town", "type": "review", "business_id": "Sqr_te9U9Y6RpnmBx0iYNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1gGXhRejYAZdFHfmmEwYSw", "review_id": "1nxOPq22-Nxedzy4ySH44w", "stars": 5, "date": "2010-11-11", "text": "This is my favorite coffee spot in AZ. They know how to make a fantastic Americano. They use very good coffee and a real European espresso machine. I hate those machines that Starbucks uses with the coffee storage on top and the preset grinders. YUCK. \n\nThe cafe has a comfortable and welcoming Vice. Everyone will say hello to you when you walk in the door.\n\nThey do have free wifi, but it is REAL SLOW!! That is my only complaint. They need to crank it up!", "type": "review", "business_id": "I2_yeLfTzXHGwi8an0tL4w"} +{"votes": {"funny": 3, "useful": 4, "cool": 2}, "user_id": "vp1LUMkedWATnFeVFteASg", "review_id": "byzY0lh3-U78C9TimskISg", "stars": 2, "date": "2011-08-18", "text": "I've been here a few times now and I would say it is decent, slightly overpriced Mexican food. Their regular dishes are just OK. I have had their tacos and enchiladas and prefer Arriba's (right next door) or Carlos O'briens, just down the street. There is even some mom and pop place by my apartments that equates to the quality and taste. \n\nWhat I like about Los Olivos is their Nachos. OMG this thing is huge. Imagine a large pizza in your head and then replace that image with the same size plate of nachos. I am not even kidding. Four or more people could munch on this. They do it exactly how I like it too, lots of cheese, tomatoes, jalapenos, sour cream, and guacamole. YUM \n\nThat is what has been keeping me coming back, but after the other night I feel I am sure to find somewhere whose nachos make me just as happy. \n\nEvery time I have been here, it has been dead. And last time I came at prime dinner time. Then why is the service so awful? This kid kept coming up to our table and trying to take things. We weren't even half way done with our nachos when he asked while I'm in MID BITE \"are you finished with that\" not only asking but reaching his hand to grab the plate! And this happened repeatedly as we tried to finish our food. I don't know if they wanted us out of there or what. And then for someone who was so \"attentive\" I waited for 5-10 minutes for a drink refill (make the glasses clear and it won't be so hard to tell if I need more) \n\nMy friend and I left full but irritated. If I thought the quality of service was a one time thing I wouldn't even put this review up...but the fact of the matter is when you are paying for overpriced Mexican food in North Scottsdale, it isn't as if your options are slim. \n\nMy advice, go next door to Arriba's. Good food and GREAT service!", "type": "review", "business_id": "AeoJkr_dlNshB078OepP8w"} +{"votes": {"funny": 6, "useful": 3, "cool": 3}, "user_id": "HpQwQzcJyPrufcC-ub5IXA", "review_id": "SZQQ4w5fwsVcdACg1Ktq-g", "stars": 5, "date": "2008-12-17", "text": "Can I review some of the people who go here? Because I know one idiot who would get 1 star. (But the park still gets a 5)\n\nOne dude let his dog pee on me! And the little bugger was fast! He'd prance toward you, and before you knew it, his leg was up and piss was streaming out of his winky cannon! \n\nMy friend was tinkled on multiple times; she wasn't able to jump out of the way very quickly since she was pregnant. Did the man say anything? Only that his dog was only nervous. Are you kidding me?\n\nAlright, I got your number. In return, we very actively encouraged our Australian Shepherd to play with the little terrier. Why? Because the Aussie Shep becomes a drool monster at the dog park, and the little pissing terrier (who only likes to pee on people, not trees or anywhere else in the park) ended up DRIPPING the Aussie Shep's saliva. Sweet! (that was the only time we didn't feel guilty about her saliva marking other dogs).", "type": "review", "business_id": "IX5FfZL4P7WGOG-xwdD4wA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J6IOwRvM6UYtJIxKR1KW7w", "review_id": "-yaZpsAhNXhb7HPmK7UV0w", "stars": 4, "date": "2012-08-04", "text": "This place is a very chill wine bar. Came here after flying in for work and wanted something that would be light, have a good wine selection, and a nice outdoor patio/bar area. Daily Dose fulfills each of those items. \n\nYou MUST get the bruchetta plate.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pw-k3TMjt1ZNB2-iRVTDlQ", "review_id": "gvdxUyeULOzj8irBHwzhdA", "stars": 3, "date": "2011-09-25", "text": "Air Jordan! need I say more?", "type": "review", "business_id": "_fTwf7Oo5DqiCpgEhDZ9VA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "8E1FnftNnCgvu2wuZADX6A", "review_id": "OCO5LkYSvi8HW87YCkJ7mw", "stars": 5, "date": "2012-05-07", "text": "Unique atmosphere in the city of Glibert with AMAZING food.... \n\nBeware some weekends the line is super long but its worth the wait... be prepared to eat outside in a nice shady area enjoying a farm like atmosphere...\n\nGood seafood is hard to find in Az & Farm grill does a great job.... also great burgers! \n\nIf you don't mind driving out to Gilbert its 1 of the best places to eat in the Phx area..", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yMh0pZfHg0QvPI1LeUkBtQ", "review_id": "m9UTadZxTj9CEHjDJHAM0A", "stars": 2, "date": "2009-04-24", "text": "I used to go to them, but stopped several months ago. They are more expense than other pet food stores. I only purchase Wellness brand dog food and thier supplements. \nThey were out the the supplements. When I asked one of the guys when they were goingto get some more, he also told me that Wellness stopped making the supplements and got a little nasty with me about how Wellness was now selling at Petco. He then steered me to another brand, which I didn't like & didn't work as well as Wellness. I contact Wellness & at the time they were still making the supplements. So the guy at WnW lied to me. The rest of the staff was always friendly\nWash my dogs there? I just heard them into the shower stall - its easier.", "type": "review", "business_id": "lBRCMN7wNn-BKUsaOXJRow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ztobt8t-diOtjff32bno7g", "review_id": "ybfnzFoVw-RY7W8rIW8b_Q", "stars": 5, "date": "2012-07-22", "text": "my family and i hosted my sister's graduation sendoff here and it was a great event!\n\ndebbie in the events office as well as the staff she sent us to be of service throughout the event were wonderful.\n\nfood was delicious - we ordered buffet style (chicken milanese, sirloin steak, appetizers, and beverages) for about 150 people. \n\nthe tech staff was very helpful in setting up our equipment for a slide show as well as providing equipment for us to play our own music at the event.\n\nservers were polite and accomodating to any of the guests' requests.\nand the facility is beautiful.\n\nthey even let me go super early in the morning being the type A personality i am to decorate myself and set things up.\n\noverall wonderful experience with this resort and its staff. would love to host another event here in the future.\n\nthanks, scottsdale plaza resort!", "type": "review", "business_id": "dJvUc4ViWEJ0NJfQtYo7xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "iIQbATX70Jsbosv4OE2tHQ", "review_id": "xMry1S85Ll13vi4mrg3E5g", "stars": 5, "date": "2012-11-18", "text": "Went here last night for the first time in years. I used to hang out all the time here when I was younger. It was packed by 1030. Great music mostly top 40 and hip hop..no techno yay! Good looking crowd and not as pretentious and the rest of Scottsdale. Everyone had a blast..dancing everywhere. Friendly crowd. Reasonably priced drinks for Scottsdale. I cannot wait to come back. Patties still has it!", "type": "review", "business_id": "A3xyx-Y_-t3TwBD9E--Zzw"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "laIiWfFr-j-IhjQEY0eKrQ", "stars": 4, "date": "2008-09-05", "text": "It's been awhile since this place was reviewed... and probably just as long since my last visit. In the last few months (or possibly more), this restaurant changed names (it was previously 'The Counter') and cleared out the retail boutique area to make room for more seating.\n\nFuture yelper Nancie S suggested we meet for lunch here today, and I was impressed with the changes. By no means is Chloe's Corner a high end restaurant... it's more like a retro diner with a modern feel. It's the kind of place you order at the counter and pay for it, and then they bring your food to your table when it's ready. It's also great for those who want to pick up something quick on the go...\n\nWe both ordered the chopped salad and a side of toasted cranberry walnut bread. It was really tasty! You can tell they use high quality ingredients... the salad is a unique combination of field greens, turkey, bleu cheese, walnuts, and grapes with poppyseed dressing. I would for sure order it again although the tuna melt looked pretty amazing too! There are several other 'classic' items on the menu such as grilled cheese, tomato soup, milkshakes, etc...\n\nEven more impressive than the lunch was the fact that I found a parking spot right away at Kierland and I left without going into one single store. I'm so proud of myself for that... any fellow shop-a-holics know how hard that can be!\n\nAlthough I did like this place when it was \"The Counter,\" it looks to me like the change that Fox Restaurant Concepts made to this restaurant was a good one!", "type": "review", "business_id": "Oj79-vTnjQk_jLr6oNbT0Q"} +{"votes": {"funny": 3, "useful": 8, "cool": 5}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "64q8hQgi3Lw_cf41Rd7lmQ", "stars": 4, "date": "2008-03-15", "text": "I struggled a lot on whether to give this a 3 or a 4. Honestly, I'm not happy with my decision and I'm thinking it may deserve a 3. This place is new to me, but I'm no stranger to \"Mongolian BBQ\" as I've been a long-time fan of YC's. Obviously I'm going to compare the two. \n\nI liked that they had fresh meat, but it was a little fatty and since they use thicker chunks as opposed to shaved and frozen, it takes longer to cook your food. They seem to stack up orders on the hot disc. It definitely lacks the flair you get when eating at YC's, but the novelty of that wears off after a few times anyway. Plus, I know it's wrong, but I prefer the frozen shaved meats to these chunks. It's just different though - I wouldn't say frozen is better, just that I prefer it. \n\nI would even go so far as to say I preferred a lot of their fixin's outside of the meat. They had a better selection of spicy powders and sauces than YC's, and this place definitely caters to the spicy food lover more. They also had better vegetables. I should also mention they have a better selection of meats including two types of beef and even shrimp and scallops. Even your choices of noodles and rice was more extensive. Come to think of it, they really beat the shit out of YC's hands down in the available food department.\n\nAnd taste? Well, it was delicious I must say. Of course, I assembled the dish, so if it wasn't any good I have to accept at least part of the blame if not all. If I had to compare, I'd say YC's is very reliable and good consistantly because I tend to always create roughly the same dish. GG's I could see having a much broader range of flavors and experiences. \n\nThe ambiance was okay for a strip-mall restaurant. It was kinda kitschy, but charming enough and fairly comfy. They had attention to detail. I think YC's (depending on which one you go to) is a \"no frills\" sort of place compared to this. They were piping in some good contemporary alternative music as well... for a minute, I thought someone had lifted my ipod.\n\nService was attentive, but odd since this is a \"get your own food\" kind of place... They also have menus which is strange considering you basically put your own dish together and since the server explains the process again to you in detail. I felt a bit like a child being explained something so simple and obvious, but my girlfriend had a confused look on her face, so maybe it's a good thing they do that. Regulars probably just get escorted over to the line.\n\nI think my main gripe with it was the tiny bowl they gave me for the fixin's... but then again, you aren't putting noodles or rice in there like you do at YC's - they add that as they cook it for you. So I suppose the portions are comparable. Then there's the price. A little high perhaps - maybe higher than YC's (I know they used to be 5 bucks for a lunch bowl). But you do get a lot for your money if you know how to pack the food in the bowl. \n\nSo I guess I was right to give it a 4 instead of a 3... turns out I really liked it. I think this would be a real treat for someone who hasn't had Mongolian BBQ before. I consider this to be a great alternative to YC's... Impressive.", "type": "review", "business_id": "pzPbg_B2uSVJ72LIa2G3sA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "_Qh76bynqHwOrASt5PotJQ", "stars": 5, "date": "2008-03-17", "text": "One of the most impressive spots in town. \n\nLunch here is a luxury experience - the grounds are amazingly beautiful, and the menu surprisingly affordable. Try this for an inexpensive way to really impress a business client.\n\nFor dinner they will take your shorts, though it is certainly worth it if you desire a truly memorable, elegant evening. Life is too short - try this restaurant soon!\n\nI have yet to stay here (Royal Palms hotel) - but it is definitely on my list of 1001 things to do before I expire.", "type": "review", "business_id": "fVgrpVyp-nPLTac9YIjTug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iy-lnju3UY_eap5oztdkhg", "review_id": "4uwt-fSLpqTqBgE1vypM8Q", "stars": 5, "date": "2012-10-15", "text": "A few days after the amazing Yelp event at Brio, I decided to go back to enjoy my FREE bruschetta! This visit was yet again, AMAZING! First off, Kimberly, our waitress, was the most personable, helpful, awesome waitress ever! She was very insightful and suggested some pretty tasty appetizers. I'm not a fan of eggplant, but she assured me it was to-die-for. She was not lying, it was delicious!\n\nThey also had the same live music as the Yelp event had and he was just the perfect sound for a happy hour date on the patio.\n\nThen, to top it off, the manager that was hosting the Yelp event came over and introduced himself. Thanked me for going to the Yelp event and for coming back! So hospitable! I felt like I had a second royal treatment!\n\nThanks Brio, you guys are awesome!! :)", "type": "review", "business_id": "byhwHi0lhYdyY5kSpuqoaQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "mosH3g7HtQxV8nQLZc772w", "stars": 2, "date": "2011-02-06", "text": "I have been parking here loyally for several years but the last two times have prompted me to look elsewhere. The location is somewhat good but stinks if you get stuck behind the train since it is just south of the train tracks. The shuttle are fairly frequent and prices reasonable. What has really rubbed me the wrong way is the service. Okay, maybe just one particular driver. The second to last time we used this place, it just so happened that the driver that dropped us off at the airport wrote down the wrong place. When we were taken back to the parking lot, the driver kept arguing with me and saying my location was wrong. It was to the point, he was almost ridiculing me in front of the other passengers. When we finally located my car, I showed him the ticket where the location was written. His response was that the original driver was an idiot for writing down the wrong location. No apology to me for his behavior. We used Sky Harbor during Christmas and we got the SAME driver again after being picked up and taken back to the lot. Turns out his behavior was the same and this time I watched it exhibited towards other passengers in addition to myself. My husband thought it might have been his sense of humor but yelling at other drivers in the parking lot is unacceptable. Besides this idiot's behavior, during the holiday, Sky Harbor Parking had cars parked in front and behind vehicles in middle rows. There were three couples who were blocked in when dropped off. I couldn't believe it. Who wants to deal with that when traveling all day? Thankfully, it didn't happen to us, because I would have blown a fuse after dealing with the driver. I might try out Pre-Flight who has a frequent driver program. Hopefully, their customer service is better...", "type": "review", "business_id": "U4IipLI4RsuBLmxTFEV2MQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pzhiDEp8EFltFmdldP9Oow", "review_id": "wxlaY9CGArFFXzYLGBFv1w", "stars": 4, "date": "2008-05-28", "text": "This was a nice casino experience. It wasn't as loud as Las Vegas. The food was really greasy and made me a bit sick. Admittedly, I chose to eat at the fast food place inside the casino, but ah well. I still had a great time. I don't really gamble, so I only came out $10 ahead, but it was still fun.", "type": "review", "business_id": "L6yYzUqVcX97uNXDGqS7-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V8hXZIVRVg4QN87m1LQABA", "review_id": "f2d2X33xegRtHUB4ozAb3g", "stars": 4, "date": "2012-03-21", "text": "Very nice place and delicious food!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Z02XdD0muEz2FFQKPERMYQ", "review_id": "Jn5POCZM7k52bdVuxjdSPA", "stars": 5, "date": "2011-07-08", "text": "Our 1st visit to Renegade Canteen last night. We made reservations and were a little late getting there, but they had our table waiting which was nice because the place was packed. Atmosphere is very nice. Beautiful building and a nice layout. Next time we plan to eat in the bar. We had to try Bob's Big Burger and what a big burger it was! Quality meat (bacon was to die for). Big onion, big tomato. What more could you ask for? Mr. McGrath was in the restaurant and he came by our table to say hello and ask if we were enjoying ourselves. Great guy! And our waiter was very attentive (not pushy) but always seemed to show up at the right time.\n\nWe plan on going back for sure. Give it a try. You won't be disappointed.\n\nCatch Chef McGrath on Channel 8 PBS \"Check Please, Arizona\". He does a good job and watching the show makes you hungry.\n\nThanks Renegade Canteen for having us.", "type": "review", "business_id": "KgTb63IZHFn_rhLG-cpm_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CjL3FtpiDzhNXTQPw0-RBw", "review_id": "dGo4wlJ5ijCziTkmx_LHSQ", "stars": 5, "date": "2012-06-08", "text": "So many flavors and the ice is melt in your mouth soft. Add cream to make it a little better than a normal icey treat! Lots of sugar free flavors too! Mmm!", "type": "review", "business_id": "KHeM4cO2DWK1C09zWCFLFQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "72aM9jYYdiQrQF9uOQHAPg", "review_id": "4XLehIAzLEN2XwDXQezcUA", "stars": 3, "date": "2010-12-11", "text": "Zipps has good bar food, but the service is usually horrible. The waitresses rarely come to your table. BUT, what really rubs me the wrong way is this....\nOn multiple occasions, when I pay the bill, the waiter doesn't bring me back the correct change. Even if my change is 1 cent, I'm entitled to receive my money back. \nI'm sorry, but not giving me back my change because you deem it insignificant doesn't float well with me. They do have great food though.", "type": "review", "business_id": "Hd6Kh_BcorPhCWVn6pMu4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "t34bw83EhFp4rTzo8O3yNw", "stars": 5, "date": "2010-04-28", "text": "I was very impressed and surprised by the quality of this restaurant! This place is STYLISH - whether it's the plush lounge chairs on the patio, or the old school movies being projected on the walls - there's definitely an element of class that is rare for the Mill Avenue district.\n\nFirst impressions were extremely positive - the place was busy but not packed, candlelit tables, and dim lighting provides the perfect atmosphere for a date, but not too much so that it causes that uncomfortable, formal, anxiety feeling. La Bocca almost seems like an AZ88 in Tempe for those who are fans. \n\nI was pleasantly surprised at the prices on the menu. Most items were in the $10-15 range, and I was immediately intrigued by the various pizza selections. I focused my sights on the garden pizza, which took me by surprise because it was basically a chef-tossed salad on a really good pizza crust. My girlfriend went with the bruschetta planks and chose two homemade pesto, one mozarella basil, and one roasted artichoke - DELICIOUS!\n\nTop that off with a few glasses of really good sangria and you've got a really good meal for right around the $40-50 mark. Needless to say we will be returning!", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sJxsV2PBGQF2HkJygXTLug", "review_id": "RqRYc9Xe8KkNrXroa5dnbA", "stars": 4, "date": "2007-01-25", "text": "This is about as good as it gets for Asian food in this price range. The chicken isn't chewy like many other inexpensive Asian restaurants. I've had several of their dishes and without a doubt the Yakisoba with chicken is my favorite. I love the white-meat chicken and broccoli (with Teriyaki sauce). The broccoli is quality, and never overcooked. And I love their Teriyaki sauce.", "type": "review", "business_id": "2nGw5zkzvO5c2eH5P4C_kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eWkFFGHQimihdQpFsO_Ffg", "review_id": "_Bt4HMxZ2AHFmF3KnfFLvg", "stars": 5, "date": "2012-04-23", "text": "Stop here every time I'm in town!", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aiG75Su3dCv6gsfrDSztoA", "review_id": "er5YgB8ak7ljI7tiXN9Jyg", "stars": 4, "date": "2010-07-25", "text": "In town for our 5 year wedding anniversary. Sushi is one of our favs, so, after doing some reading on Yelp, off we went to Sakana.\n\nI must agree with many other Yelpers...the nigiri is fantastic! Huge, tasty pieces of super fresh fish. I'm craving it now as I'm writing this! I'm so glad I read the reviews and ordered several items from the nigiri menu...it was fantastic. \n\nThe rolls, while well priced, were a little disappointing. Maybe it was just our selections, but nothing really jumped out at us...everything was pretty bland. We asked our server for recommendations and everything was a California roll plus this or that. Pretty blah. Even the Mexican Caliente Roll was rather uneventful.\n\nThe service was awesome. Everyone was friendly, efficient, well organized. The atmosphere was rather mainstream, which was fine with me. I did have to laugh, as the first song we heard when we sat down was a Pitbull song, which another reviewer bemoaned. The volume wasn't offensive, so it really only served to make me laugh. \n\nThe customer appreciation menu and Kirin beer special is genius. So many customer appreciation menus are pretty sparse, but theirs is well fleshed out and offers a lot of options. We each ordered Kirins while we waited for our table (we were told it would be 15-20 minutes, but it was maybe 5 minutes) and got 2 appetizers for 50 cents each. Pretty cool. (The scallop poppers were yummy. The edemame was, well, edamame. Not a huge serving, but what do you want for .50?)\n\nAll in all, a good dinner. We know when we go for sushi that it's probably going to be a pricy night. Not at Sakana...it was probably the best meal we had in Scottsdale at the very best price. If we're back in town, we will definitely return. I'll just get more creative in my roll selection...or maybe just stick with the nigiri :) Yum!", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "3Zi1udoY2iT9s8Q3X6tgZQ", "review_id": "O8DYC5fTMgIb53dc0VZO9g", "stars": 4, "date": "2012-05-02", "text": "This is my favorite Chipotle to go to because it's the closest one to my work. I call in orders all the time and the staff always has it ready to go. Even when I don't have a pick up order they always move quickly to get everyone through the line, which is great because when I'm hungry I want everyone out of my way!", "type": "review", "business_id": "JGTPb06Ix_v7uq3HADzq8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GzOZ2iuyzT3cwYk49Vb8dA", "review_id": "Z-gLvruJ0A1r2u-Zq7A9iQ", "stars": 5, "date": "2012-10-25", "text": "The spring on our garage door broke and we had no idea who to call. Lodi was recommended to us but they werne't specific as there are a few under this name. I choose Lodi Garage Doors & More and was stunned they sent someone out within 1.5 hours! They also quoted me on the phone and were so nice in setting up the appointment and calling back to confirm.\n\nGene was our technician, he was efficient, friendly and did a fantastic job. \n\nI will be passing Lodi's name on for sure and if repairs are needed in the future I will not hesitate to call! Thank you for you quick, professional, friendly service!", "type": "review", "business_id": "wF2bVRLrXU6roqyIps7wDg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "5-2JHDnSsoSaoRKDHPeTtQ", "review_id": "Bd0V0J99OxKZat7VsLuL2g", "stars": 3, "date": "2009-11-11", "text": "I've only eaten the buffet here and it was good but nothing special. To be fair, most Indian buffets are pretty similar, it's only when you order from the menu that you see if the restaurant is really a stand-out. So, I will update this review when I've gone there for dinner", "type": "review", "business_id": "NCbHGtOP5yJBJsPPaE3X5g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "81USOOslWjEpOZ4HfLLcfA", "review_id": "-oIhgQTgpNoaqIRukEW5zQ", "stars": 4, "date": "2012-06-04", "text": "Well I liked this place it smokes it's main rival Hooters. The food is much better more screen TV's and the girls are much better looking. What else can you say.", "type": "review", "business_id": "o9nCXNC14VScabiy2bftgw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ZoNN4WeFrUXvlwaG5Ov_LQ", "review_id": "pdZ42ze_42jp0d4RsTHQFg", "stars": 4, "date": "2006-12-08", "text": "The service sucks at Matt's. Unfortunately for those of us that like good food AND good service the food is crave worthy- better than any breakfast I have ever had, so simple and so, so, yummy. That being said, I have never been to a restaurant that ran out of cream for coffee. Not only that but they made it seem like no big deal, no apologies. I had one too many bad experiences and have not been back since. I have been tempted many a time to go back and see if they have changed their evil ways, but I just can't bring myself to do it. We'll see- life is too short to hold grudges, especially when good food is involved, right?\n\nUPDATE: Ok, we ventured back to Matt's to celebrate my birthday in April and I have to say that the service wasn't bad at all.... no more snotty waitresses, so I am adding 2 more stars. If they would make the effort to be really friendly they would get my 5th star... but I won't hold my breath, I think it is just not that kind of place. Now if you really are a thrill seeker I have a challenge for you... go to the bathroom at Matt's (go ahead and ask them where the bathroom is and you will see what I mean)... and if you want to have a good laugh imagine a nine months pregnant woman trying to go to the bathroom at Matt's... yeah, that was fun, luckily I escaped with little more than a pinch on the thigh from the toilet seat... but unless you have a death wish you should definitely empty your bladder BEFORE you go to Matt's...fair warning.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "5JSrHtH-aK69OjUxdt-k5A", "review_id": "9yc5vhQCCPgHWPWcM72xJw", "stars": 2, "date": "2009-05-04", "text": "This place is essentially a copy of the old Father's Office (www.fathersoffice.com) in Brentwood, CA. It took me a while to get over that fact and give it a decent try. Among the things Delux has copied from FO is the famous \"Office Burger,\" which Delux calls the \"Delux Burger.\" They also bring out the fries in a shopping cart just like Father's Office. What Delux fails to copy, however, is the quality of the food and the high-end nature of the original. At FO, the wines changed weekly and are all incredibly rare selections. The beers at FO also tend towards the more obscure. Delux seems to concentrate almost exclusively on beers and does have a decent selection, but nothing you can't find elsewhere. Wines are available, but as an afterthought, and definitely not of the quality served at FO. For Phoenicians who never experienced the joys associated with the original Father's Office, you're missing out. It's like being an Eric Clapton fan but not even knowing who Muddy Waters is. But all the imitation aside, I have to say that Delux does a pretty good job with everything and they have taken the FO concept and adapted it to the PHX strip mall environment. \n\nFood wise, everything I have tried was ok. They did change their sweet potato fries a year or two ago because the other ones weren't \"crispy\" enough. The problem is that these new crispier ones have no flavor. When they were testing out the new fries, the manager asked me and a friend to opine and we told him the truth: We said the new ones are flavorless. I guess we were the only ones who thought so because they went ahead with that change. That lost them 1 star from this review. I would rather have the soggier more flavorful ones (who knows how they make these new ones so crispy anyways?). \n\nWhen I go here, it's almost always out of convenience and late at night. Not many places of this caliber stay open until 2 am, so it's about all there is when you are in need of a late night meal in this part of town. Their 2 star rating is based on: clearly knocking off one of my favorite places, Father's Office (minus 1 star) and for ignoring my feedback on the new crispy tasteless sweet potato fries (minus 1 star). They also lose a star for retaining the FO prices but substituting Phoenix strip mall quality.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zw2HgpyTgJf-l2yOSWff5A", "review_id": "5tnCI4jaMvl0NVmygUekLQ", "stars": 4, "date": "2011-04-14", "text": "In Phoenix on Spring break vacation, we found Baby Kay's by using the entertainment coupon book we bought to use while out there. They were in the front for fine dining, and had a great coupon deal, along with a sample menu. Everything on the sample menu sounded delish, and we very much like the spice of Cajun cooking. It was a little hard to find, although we were not at all familiar with the area. We had the wings as an app. and used the Louisiana gold hot sauce, something new to us that we are having trouble finding in Ohio since we fell in love with it there. The gumbo was outstanding, and even the alfredo pasta had a spice sprinkled on top for a Cajun style kick... it was unexpected, and awesome! Huge portions - that we both had plenty to take with us for a whole other left over meal. ... the prices were great, especially with the coupon (or actually the entertainment card that they punch for fine dining restaurants). Excellent staff- close to closing for the night, and welcomed us in, and didn't rush us at all - made sure we were happy with everything we ordered, very friendly! Definitely would recommend it for any one who likes a little Cajun kick, and something different from chain restaurants...", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "caELu3OqZm8LkdikpmEB4w", "review_id": "2fno2ou7xMqxo1IsJlMeiw", "stars": 4, "date": "2009-01-04", "text": "I have tried the other one on shea, but this is close to home and work. I love the enviornment, the clientle, the healthy food, outstanding service and very reasonable prices. The waitstaff is great, the food always comes out quick and tastes amazing. Get anything with chicken as it is delicious and if you like hummus try it here. Also, they have great ice tea. This place is one of my favorites and well worth a try.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XeDbXueGKrfMLyIG45QIOg", "review_id": "tfQ0Iu1cribS4ABr0THD3A", "stars": 3, "date": "2012-08-13", "text": "Lovely shop, great cupcake selection, friendly service. But the real question is...how do the cupcakes taste??? Pretty good. I tried (4) flavors and they ranged from OK to YUMMMMMM! Vanilla with chocolate buttercream was ok, the Coconut was good (a bit dry, but decent flavor), the Carrot was very good, and the Mocha was YUMMMMMM! They were all super sweet though. My husband and I both had a quarter of each flavor and that was more than enough. \n\nFrom a flavor variety and taste perspective, Sprinkles is a 3.5 - 4. However, I really can't justify spending $14.00 for (4) cupcakes. They are expensive so they can pay their overhead and lease costs, not because of exotic ingredients or special decorating skills. Don't get me wrong, I'm sure they use good ingredients, but the wrappers are plain, there's no special piping or fondant work, and the flavors are standard. They are just plain good cupcakes...not fantastic, but good. Certainly not worth $3.50 a cupcake. I do a ton of baking and I get special order requests from friends and neighbors all the time. I always do nice decorating and use premium ingredients and the most I charge is $2.00 a cupcake...and that's only if I use fondant.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hnirQYfI4cjrzSMENyQTWw", "review_id": "Wlpd3M0WdtMfUsb3FFC8sw", "stars": 4, "date": "2008-01-06", "text": "Wow. I forgot that libraries existed. \nUntil recently, when I wanted to get some travel guides for an upcoming European vacation. Then I thought, hmm... maybe a library would be a good idea. So I visited the Mesa library on my lunch hour and I was amazed at all the great books they have there. Seriously, there were all these brand-new, just-released hardcovers just sitting on tables, waiting for me to pick them up.\nI remember being a teenager and having to wait MONTHS to get new books. Now, apparently, because either a) no one reads or b) no one uses libraries or c) both, new books are readily available at the library. Well, good news for me.\nI also think the Mesa library may be a great place to pick up decent books because most of the patrons seem to be really, really old or homeless and possibly illiterate. I'm not trying to be snarky, it's just something that's quite clear from the moment you walk in.\nOverall, however, this is a very nice, well-stocked library. And you can even keep renewing your books on-line. \nThanks to the Mesa library, I just may make it to the Yelp book club meeting this weekend... !", "type": "review", "business_id": "uYLbsoytUFMK-mJyQZ6GvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "6h7oNIYKxcPDVcFARWdkhg", "stars": 3, "date": "2011-01-24", "text": "We have been using Delia's Cleaners now for nearly three years and for the most part found the experience to be very good. \n\nYes, like most cleaners they goof from time to time (like sometimes killing the button-downs on my dress shirts). But, here's the difference -- they'll fix them for no charge. Yep. Just ask, the staff is very helpful!", "type": "review", "business_id": "3Z88l4UO-FoNbYk_ZpTScA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l4zlZVb2Re4hyh1O62w5bQ", "review_id": "kc8DFIA1IojQEILuQpPOdA", "stars": 1, "date": "2012-10-10", "text": "Living in this area I frequent Desert Ridge a lot, and have been to this Macaroni Grill several times... their food is actually pretty good which is why I let the horrible service slide a few times... My friend and I have had experiences such as standing at the host stand with no assistance for several minutes while several employees made eye contact. Of course, no one asked if we had been helped, until the hostess finally made her way back up to the stand and decided to ignore us for another couple of seconds before she even acknowledged us. \n\nAnother visit we were seated right away however it took over 15 minutes for our server to come to our table, and that was only after I had to get out of my seat and find one of the employees to ask for our server. I know several people saw us just sitting there, the least they could have done was asked if we had been helped or not. \n\nThis last experience, was about a year after the last. I thought maybe they would have changed. I most definitely thought wrong! We were seated promptly and the server was there right away this time. However, our food took FOREVER! Literally, it took over 30 minutes for a medium rare steak and a plate of pasta. I know for a fact they messed something up and ended up taking food out of a to go container and placing it on the plate that they then brought to me (you can see right into their kitchen from the dining room). The server never apologized nor did she come and tell us what the hold up was. \n\nOverall, I will never go to that restaurant again.", "type": "review", "business_id": "UexMw8s7B1J-RtFOQtCCsQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "eL2AbD_vXdP57eewFH21lQ", "review_id": "P7uG0J1YqMhqTb1xijj1nw", "stars": 4, "date": "2011-02-25", "text": "I still like Lux better. Cartel is very appealing, though, to those who know their coffee. The menu is not huge, but it does offer basic, good drinks. \nThey have plenty of syrups to flavor your drinks, if that's what you're into.\nI like the atmosphere in there, and the bike wheel \"art\" is pretty interesting and unique.\nThis place is probably really great to study in, considering the fact that I see a sea of macbook apples every time I walk in here. \nThe employees are funny and nice. Anyway, it is definitely worth checking out.", "type": "review", "business_id": "O7fXh4ODsi--5LmJKTHn2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "_ST9YF6c-o1dyjRAhz8UkA", "stars": 4, "date": "2011-07-05", "text": "Very excited to have a neighborhood grocery downtown! I've been in twice now and was surprised how many people were in there considering they just opened on Thursday. They have a really nice wine selection without the usual suspects, the cheese case has many nice, reasonably priced offerings and the pastry case looked delicious too!\n\nThey still have a few bugs to work out, but that is to be expected from a new business. I definitely recommend enjoying a glass of wine at the bar with some cheese...yummy!", "type": "review", "business_id": "08OcGan0xiT6I_oJ2loLMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LUDHnXp0VxoHlAb10GpEvw", "review_id": "t45o2bR4PW-sEKIDKqe35g", "stars": 4, "date": "2012-06-01", "text": "i love lgo and have to stop myself from going there more than i already do. while their pizza is delicious and the commuter sandwich is bomb.com, i really go in for the sweet treats like crack cake, brownies and salted chocolate chip cookies. on top of the food, the atmosphere is great and they have an assortment of treasures in the shop. only 4 stars since they keep the music too loud for me to want to stay too long and parking stinks if i want to go outside oft he hours of 9 - 11.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0YnT3uyhdF5_1M7Hel1Klg", "review_id": "F2WXVPd_vb0RucFEWcZSUA", "stars": 5, "date": "2012-08-20", "text": "Fabulous! Great views (obviously) of the city. Very romantic. Amazing wine list. Superb service. Delicious menu. \n\nLuis was our server - great guy full of very helpful information (especially wine pairings). LOVE the lobster bisque (I'm usually not a fan of lobster or bisque). Amazing flavor combinations in everything we tried. I also love ending my meal with a perfect vanilla bean creme brulee. \n\nHighly recommend if you're bringing a newbie to Phoenix or if you'd like a romantic night out.", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GVH_iuoPc0aP3ZNYlWuKag", "review_id": "OEyUrGCD_5GRvSpjzrxMzQ", "stars": 5, "date": "2010-11-01", "text": "If I could give it more than 5, I would. Sweet Pea and I live down the street, literally DOWN THE STREET, from this bar. We waited for it to open for what seemed like decades, praying that this was going to be the type of place that could become our local. It has exceeded our expectations. The atmosphere is amazing. The drinks are amazing- every last one of them- but the margaritas are the best I've ever had. They tasted like a fresh squeeze of sunshine that makes me happy inside. Margarita Mondays- $4 margs AND free food? Happy hours are amazing. New Year's Eve last year was amazing. The 1 year anniversary party was amazing. But most of all, the owner and staff are some of the coolest peeps that you'll ever meet. Go here. You will love it.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dn9DSDp9CYCRffmL1voq6g", "review_id": "zepTOiPctPASewAQmV4X-w", "stars": 4, "date": "2010-05-16", "text": "The cookies and breakfast pastries are to die for. Just for those two items they deserve four stars. Everything else, however, is just OK. The rest of their foods are good but not great. If you've ever been to Wildflower, I think their food is better there but dang, I can go to Paradise and just pig-out on their cookies!", "type": "review", "business_id": "hECOlng2SZ97IbUcabRH2Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "pgCLr4exBMu_iBFFNiwT5A", "stars": 4, "date": "2012-03-01", "text": "In spite of being on the corner of 44th and Camelback it does a good job of insulating you from the traffic and taking you some place else, in this case our dear Communist neighbors to the South. I like the sampler because it allows you to enjoy the finest island interpretations of pork, beef, and chicken. Also, no meal is complete without going bananas for the ....well, tostones.\n\nYou gotta hand it to those Castro brothers. They forcefully preside over a country that has a pretty great national cuisine. Viva La Revolucion!", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "BjwXX-sChcjx2E55B_7rXg", "review_id": "IRmSPWYYkp92q9AT_3S44g", "stars": 4, "date": "2011-07-25", "text": "How to Have a Good Time at Cowboy Ciao:\n\n1) Order the Stetson chopped salad. \n\n2) Finish it.\n\n3) Order the Peanut Butter Brownie Upside Downy. \n(Note: DO NOT question whether you're full or not. It doesn't matter).\n\n4) Finish it.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SNc75-bLHhTBsl1AlH3fLA", "review_id": "JfebNf9axeIvEnNgzpkJfg", "stars": 2, "date": "2012-11-07", "text": "I love the cornbread and butter but the rest can do without. The plates are so huge and super sloppy. The lettuce wraps are no good! I did like our waitress but the bar tender with blonde hair was supper bitchy to the other staff it was annoying.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "3H-jBJDs3BP2sKHk80vp_g", "stars": 5, "date": "2012-02-06", "text": "This review is for locals...the Hyatt isn't just a beautiful spot to stay it, it's also a perfect spot to just sit and enjoy the day! I've done this several times, many times for dinner and drinks afterward on the patio. Most recently, I decided to set up shop and do some work from one of the comfy chairs on the outdoor patio which allowed me to enjoy the gorgeous Arizona weather and still get some work done. They do an excellent job of making the hotel amenities comfortable and welcoming. \n\nFor hotel guests, if you are planning to stay here, be sure to look into staying in one of the rooms that sit on the man made lake. They have great patios right on the water so when you wake up, you could have breakfast on the lake! It doesn't get much better than that.", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TOlE6q1i3bNmM-PgIL3tBw", "review_id": "jF4RP3btoLN5bwsUiarfaA", "stars": 1, "date": "2012-01-01", "text": "I love Mexican food. Today I ate half of a taco and simply had to stop; not in a good way either. The meat tasted like it had been frozen multiple times and lacked flavor. The tortilla tasted like it was store bought and made of paper. The beans were flavorless. The rice was hard and lacked any flavor. Moving to the vegetables: shredded plastic is not actually a vegtable. This is some of the worst tasting, most over priced Mexican food I had had. It would be one thing if it was reasonably priced, but $10 for taco is a absurd amount for a worst than fast-food taste. \n\nThe margarita was good, but $10 for a margarita is a bit on the high side.\n\nThe service was average, but I found it odd that my waitress didn't find it odd that only a bite of each item was missing and never asked how the food tasted.", "type": "review", "business_id": "zAoFrUwRVdSrvYWNB5e5Jw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "cxjTpWMPg7u5Bb9OPWqaFw", "review_id": "OdzhxCxBxVkJjEJUDTI9oQ", "stars": 1, "date": "2011-06-02", "text": "The food was not particularly good on our last visit there and the service was rude and not helpful at all. I even emailed them afterwards to give feedback, in hopes that they would redeem themselves by showing some good service that way. No luck. Didn't even get a response.\n\nThey will not be getting any more of my business. Too bad because I'd actually had a decent mushroom burger there before and would have been a regular customer. But the service last time was so bad that I won't go back.", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8CNEh7fSbLwDuAKhLjDPKQ", "review_id": "ue78ILIn67tUliwpL6YG_Q", "stars": 5, "date": "2010-07-12", "text": "I've been to this Dick's location a bunch of times and I've got to say that I've gotten more help from the employees in this one that I've ever gotten from any other location.\n\nI've spent some major time with the guys in the gun dept and they're always more that helpful regardless of how busy and how many people they have waiting for them. Major props to those guys for good knowledge and patience.\n\nAnother time I was there I wanted some new shorts for softball and they didn't have and L's left but jokingly I checked the Under Armour manikin as he was wearing the same shorts, and what do ya know... L. It was near closing time and the associates were getting their stuff done so they could go home (I've worked retail and I know at closing time you just want everybody to bail so you can clean and go home). I asked a girl around the corner I was able to rob the manikin of his clothes and she laughed and had no problem taking him apart and yankin the shorts right off! I was so happy as I had a game the next day and didn't want to be running around looking for these shorts.\n\nThink I'm joking? lol - http://www.flickr.com/photos/ryno/4113416766/\n\nAnyways - good store, always clean and everybody seems very nice and knowledgable in their area. Never had an issue there.", "type": "review", "business_id": "RWkNYaST4pHM2ZrRFGFcKA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "8eNEP7Yj7JwfOQPwgh4Prw", "review_id": "Qt0QQvOCLO35QSMS_wCNVg", "stars": 5, "date": "2008-08-20", "text": "I found some great t-shirts for friends here, including one from a local PHX artist with a grinning skull. \n\nIf you're a hipster or looking to buy gifts for one, then this is the place to go. \n\nPlus, the clerk was using a Mac (not that I would expect anything different, but bonus verisimilitude points for fitting in with your surroundings Mr. Clerk).", "type": "review", "business_id": "c0zhbiffge6fGl_Nzgxbqw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "frm67YsEcoZRU1gIqQQj2A", "review_id": "0xfmWxcRNGxZtmEG_j-iwQ", "stars": 3, "date": "2012-05-27", "text": "Hot Bagels. To a random passerby, it's like any bagel place really. To locals and Midwestern students, it's a holy temple. And to me, well it's a highly overrated bagel place. But hey, it's still delicious! Especially if you're in the mood for a bagel.\n\nBut it's kinda pricey. I ultimately paid like $8 for a bagel with lox, cream cheese, and a bag of chips. Seriously?? I mean, yes, it was one of the best bagels I've ever had but I could've gone next door to Senor Taco and gotten a burrito for $3 less and have enough for a dry-cleaning job at the $2.25 cleaners adjacent!\n\nAnd that's what brings this place down. While bagels are delicious and it's hard to mess up bagels, it's still just a bagel. So if you're feeling like having a bagel, definitely check this place out. It's on par with or better than Einstein Bros. Just don't be overhyped by all the love the locals have for this place because in the end, you're just having a bagel. =)", "type": "review", "business_id": "a01JeGRdPYArzDgBLP9M5w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5je-Jg8tq5BWxJtDBmTK2Q", "review_id": "-dzxYCQVXDDUyiTKh1l7aQ", "stars": 4, "date": "2010-01-20", "text": "I'm so glad I have a nice coffee shop within walking distance of my office! Though the location is a plus, the real reason I have become a regular is that they open earlier than Lux - 6 am - and have free WiFi. During a two month string of early morning test prep, the openers remembered me and asked about my progress on a daily basis.\n\nMy favorite part about Urban Bean is that ALL of their products are compostable and they run a compost in the back. \n\nThe only reason I didn't give five stars is because they have yet to add large tables (for two or three people to spread out books to study). Other than that - it's my fave!", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "cwIZyUzEpsXzz_5VZT4LCQ", "review_id": "xo1Gqd4eBeBz_acdR7yjZw", "stars": 4, "date": "2011-09-03", "text": "I like Zuma and I don't think it warrants such a negative rating. I've been a fan of Zuma since I started school at ASU and I was only able to go for the food. I really enjoy their grilled cheese sandwich (plain, I know!) and also they have a great appetizer that is a tomato stuffed with either tuna or chicken salad. Definitely one my favorites.\n\nMainly, I like zuma because the bartenders and staff are always very nice and accommodating. I never have to wait for a drink with them and very often they are pretty giving with generously poured drinks and occasionally a free shot or two for myself and my friends. They also have a fabulous ladies night on Wednesdays where they have free food and champagne for girls (yes, it's not fair boys complain complain complain but you guys get plenty of perks in other industries!). Favorite bartenders are Tommy Tau and Mike!", "type": "review", "business_id": "qcylQLL-fXdFHrdXC2jZFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ziCKT5n58tcVfgksImx0VQ", "review_id": "VlVRyPfTrtedZWTbg4KdBw", "stars": 4, "date": "2011-03-31", "text": "I had great service and the Red Curry Chicken was wonderful. I only wish the dish wad a little warmer serving temperature. The Thia iced tea was fantastic.", "type": "review", "business_id": "mPGgxatANSPw9KbMluhXkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "XnoIg-UnpRjxXtuOB1Ev2A", "review_id": "iLbYXR38DgL7zItTFaoE3g", "stars": 4, "date": "2007-11-26", "text": "We were taken here by our host in Phoenix. It's one of the prettiest Mexican restaurants I've been in, with a courtyard surrounding a duck pond (there is a sign requesting you not feed the ducks tortilla chips!).\n\nThe margaritas were great and my chicken was excellent, as were my partner's tequila shrimp. Would definitely go back there if I were to visit Phoenix again.", "type": "review", "business_id": "jnzROxEjNkgeo5Ju3F8qzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0pyzPI2z3KHNkPSVlB2Lqw", "review_id": "UHZWXKbGQOTGLPxjWbWMtQ", "stars": 2, "date": "2011-05-02", "text": "We went there for dinner in April 2011. The dishes are hit and miss, and all are over priced. My wife ordered pad thai, and it was horrible. Instead of the traditional, flavorful dish with peanut and bean sprout, this dish at Flo's is just a salty, chicken noodle. My wife and I both took a bite, we had to send it back. It was not edible. Too salty. Only chicken and rice noodle. There was no peanut, no bean sprout, no pepper, no egg, no ..... Basically, it was NOT a pad thai at all. \n\nOn the upside, my son ordered a sweet&sour chicken, and it was better than most places. They used fresh pineapples.\n\nBased on food quality, ambience, and dinner prices, I say there are tons of other places that are better.", "type": "review", "business_id": "fowXs9zAM0TQhSfSkPeVuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BV8c4QZEzvPWA00ZqJp-jQ", "review_id": "1ardaspyAbC7etWK9nuOQg", "stars": 3, "date": "2010-11-28", "text": "I'm giving the 3 stars solely for 1 reason: \nThe veggie sandwich! \n\nThere's normally only 1 person waitressing/taking orders, so expect a slow turn around during breakfast & lunch time. To avoid the crowds I'd pick up a flier in the morning, call around 10 am & pre-order for pick up. If I had no time to wait to check out I would simply ask for delivery. A girls gotta eat! :)", "type": "review", "business_id": "pwV7OoVlCsQICqFsmRa-zQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tueZZgG49lLPMj1gRkM2Ag", "review_id": "-4xDxjtMNDaKwSwkOyh_Iw", "stars": 5, "date": "2011-02-11", "text": "Excellent wings. I realized how much I miss this place when I ate horrible chicken wings in San Jose. \n\nIt gets crowded Tuesday and Thursday because of special deal on wings, but definetly worth it. \n\nThey do not have any Native NewYorker in CA :(", "type": "review", "business_id": "U7jOpLoLXYphWFqS6JO8mQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A8KAUGlzA8gaCoe5GMMKVQ", "review_id": "--8hpKO4bkweLyEucdxI_w", "stars": 4, "date": "2011-04-27", "text": "Great place and experience. Food and beer cocktails were great. The scene is laid back and fun. There is something for everyone here. Enjoy it for what it is a great retro bar serving old school beer you wont find anywhere else so don't be whining for the latest micro brew or looking for the Scottsdale scene here. Parking is easy in the back alley and side streets. On weekend nights I'd like to see a separate entrance if you want to go just for the food and not have to pay the cover for the band. A fun place for kids too.", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EFvoDZ_B47s7-akDMN7aQg", "review_id": "FKyOyboICa3cty_NepBXWg", "stars": 4, "date": "2012-01-13", "text": "We went there for a dinner today, very nice place, a little noisy for my baby thougt ;)\nI had the italian wedding soup, it was very good but a little spicy. I also have a glass of wine, prosecco with passion fruit, very good...\nMy husband had a tagliatelle w/braised short ribs, which he said was delicious. \nThe service was very good as well. The patio looks great for when the weather wams up.", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 7, "useful": 11, "cool": 10}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "GOdsERe2stZ34l9840VdUg", "stars": 5, "date": "2009-04-12", "text": "The pupusas, yes, the pupusas are great. The loroco with cheese has become our favorite, But this past week, I strayed from our standard and tried the gallina soup with braised chicken and salad. All I can say is, \"What the hell? Where has this been my whole life?\" The soup is magical. Huge chunks of carrot, potato, and zucchini, with some thin noodles, and a savory broth with some mint leaves. I quickly abandoned the rest of my entree in favor of finishing the huge bowl of magic. It was the best soup I've had since coming to Phoenix 13 years ago. \n\nGood thing Hubby got sick this weekend- it gave me an excuse to go back and get some more. Being magical, you know it has serious healing properties. Here's where I learned that the Sopa de Gallina is chicken soup without the chicken meat and the Sopa de Pollo is the same thing but with the meat. Two huge Styrofoam cups to go with lemon wedges and 4 hot and fresh tortillas cost less than $6.00. I was stunned. The owner said it costs more with meat. Believe me, you won't miss it. Who knew that magic was so cheap? Hubby's fever is already down and he's feeling much better.", "type": "review", "business_id": "rbiRLiFTG098z9JaK3Nshw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9hsjvBMXy-Wt5acctnoEUw", "review_id": "5YjglTYelvaG4klAAp_O3w", "stars": 4, "date": "2011-12-19", "text": "I didn't realize that this store was very close to my home. I used to go to \"Musician's Discount on Southern and Alma School Road. However, I had went there Saturday and it was closed, so I decided to check out what other stores are around. The customer service was good, and they were also helpful regarding some questions that I had regarding electric guitars. I didn't really compare prices to other places, so I cannot honestly respond in price comparison. I had noticed that they had a lot of novelty- shaped guitars. they also seemed to have a large quantity of replacement strings for guitars. They also appear to have a large selection of sheet music. I recommend checking them out if you are looking for a music (instrument) store near Dobson and Baseline Road in Mesa, Arizona.", "type": "review", "business_id": "AB7uOYIMVc_TbIcYR8np2Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "uJI_n-ubKLUC51_bZXbfOQ", "stars": 2, "date": "2008-05-13", "text": "basically, i'm only reviewing this store because i really do not care for the employees here. there are a few nice ones, but overall, they are either cranky, stressed out, or missing.\n\nthe redeeming points? a nice selection of crafting products. but then again, you can always just go to a DIFFERENT location. i'd opt for that.", "type": "review", "business_id": "RqmE46axGgrS9lrbge0CKA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_ZJanTGDypTxfm1Ut7IqaQ", "review_id": "SPe3itl5lOyVpm-RD6i0ng", "stars": 4, "date": "2012-06-12", "text": "I didn't stay here, but patronized their restaurant. The servers were very polite and accommodating. They frequently refilled our drinks and aimed to serve by making sure the fireplaces were working. It's a nice place to hang at if you have a reason to be here.", "type": "review", "business_id": "6P2DqisDHtmD4Lvs2sMP-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "19zI6jBRV9JzKQ19M6tDiA", "review_id": "R-7HmdOlIBrouioPaRiP_g", "stars": 4, "date": "2010-04-12", "text": "The food here was really good. I ordered the sesamie chicken and the sauce was very good. The service was marginal at best but it didn't annoy me. I'd go back", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MrXo0YgpZ48G3i539jVEag", "review_id": "-B-DQ4e_qzSycKufq7gpAw", "stars": 5, "date": "2012-05-12", "text": "I had a great experience. Nice people. My minnie poodle mix looked great and was happy when he came out! Total bill: $43 + tip including cut, blow dry, ears, toenails, anal glands and teeth. Located in the Goodwill parking lot. \n\nThis is my first dog, and my first experience with a groomer. I called on a Saturday and had to make an appointment for the next Saturday, so they are busy.\n\nI asked the front desk guy where the price/package list was. He said they didn't really have a 'list' so I told him what I needed and I wanted to know how much it would be. He went in back and the groomer came out to take a look at him and talk to me. She quoted me $38 and I asked how much for teeth, she added on $5. They gave me a guide to determine how short I wanted him cut and asked me specifics on what type of cut (I said shave him, it's summer). they asked about ears, tail, etc.\n\nI brought him in at 9 and they had me pick him up at 1. I don't know a lot about grooming yet but they said depending on how he was under the blower he might need to be kennel dried. When I came back at 1 they were finishing up his head. I can imagine he might have been a tough client, given that he is still puppy-hyper and not yet accustomed to the spa treatment. He was blow dried for sure; His former curly hair was completely straight and soft. \n\nThe shop is no frills. No pretty sign out front and no decorating inside. I think they could make more money with some product around or maybe charge more if there was a little more spa feeling when you walk in, but I will go back again for sure. \n\nMy poodle mix is 6 months old and this was his second cut. (The first was done by a family member). My poor puppy went in looking like a mess and I didn't recognize him when he came out! He was soft, had a nice cut and smelled great, even his breath!", "type": "review", "business_id": "-iJZ-PEnOw2oVUBFfg5wJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5jO2RMO-MYZDWTIYzr3dSA", "review_id": "zfcpSVD1b2i2BMVa6eabUw", "stars": 4, "date": "2011-02-11", "text": "This place isn't the best looking, but it's pretty tasty! I find myself craving the strange mix of foods they serve here.\nI order the Emerald chicken burrito and the Jerk Chicken quesadillas.\nThe best part is if you've never been there before, they give you tons of samples and tell you all about the foods you can order. \nI wish they had more locations :)", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S3Mu8tTBib4KxrxGob5icQ", "review_id": "1r0co9DcLx54sn2EyogAog", "stars": 3, "date": "2012-05-15", "text": "Cute little coffee shop. Had some tea and sat outside with my boyfriend. Enjoyed the weather and played some cards. Very relaxing.", "type": "review", "business_id": "4eFIVmbeCvJGCrhzmd-VYA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Ek_t82OUnerdlO0D-GVcxA", "review_id": "ltZP6rbQ3sjV7zuw7Xvrkw", "stars": 4, "date": "2012-07-09", "text": "This place is a little more fancy than I expected....decor and atmosphere-wise...I thought it would be plain and simple like Red Lobster but actually the place has a very southern homey feeling to it.....although a seafood place they had like deer heads hanging and other sorts of weird decor. \n \nCame here for dinner yesterday night with my bf and his apartment-mate...we got a table right away but even for a weekday they were still half a full house. The first thing I saw on their menu was the Crispy Alligator appetizer. ALLIGATOR! ooooh but then I wanted to try their oyster appetizers cause they sound good too....ahhhhhh their menu is full of yummy choices! It was difficult deciding what I wanted to get...but after much debate....my bf and I decided to order the Oyster Duo appetizer and share the Pappadeaux Platter -- which is an amazing sample platter of all the fried variety they offer on the fried seafood section of their menu. \n\nSo the Oysters Duo -- comes with 3 oysters on half shell baked with a parmesan romano cheese sauce and 3 oysters on half shell topped with crabmeat, spinach and drizzled with Hollandaise sauce. -- oooh they were both delicious however I recommend the later one more just cause it's very unique to this restaurant. I got to also try a few pieces of the Crispy Fried Alligator from our friend's Appetizer Trio Platter - It was pretty good actually tastes like chicken...but surprisingly more tender - I was thinking alligator meat would be tough and rough but not at all....I wouldn't have known it's alligator meat if you didn't tell me. But now I can say I have had alligator meat!\n\nThe Pappadeaux Platter was pretty good - everything is well -- fried! However I like the blue crab cake the most, the mini fried crawfish (kind of like popcorn shrimp) is second best however I have to say that the fried Tilapia was a disappointment because it was sadly bland and really dry...it was the only thing I didn't like on the platter. but everything else was good. - - I even tried their watermelon lemonade and it was super refreshing!\n\nI was really excited for dessert cause I saw them carrying around a platter of sample of the desserts that they have...so when we were ready for dessert I was excited to see the dessert platter - unfortunately there was nothing on the dessert platter I wanted because they all looked really rich and sweet....such as their sweet potato pecan pie, key lime pie, praline cheesecake, praline bread pudding souffle or turtle fudge brownie was just too much even for the eyes..lol They were also massive in portions so I decided not to have any. \n\nThe service was really good, our waitress was pretty quick and friendly. Overall I enjoyed the most of the food (except the fried tilapia) and the service is good so it earned it's four stars. :)", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "QA92__P11LL4bkTUzp20vA", "stars": 4, "date": "2009-09-11", "text": "i adore this place! cute little shop, sweet owners, delish cookies - what more could you want?!?!?\n\nthe urban was made for me. dark chocolate, coconut, and some nuts. uhhhhhh, hello, did i just wake up in heaven?\n\ntheir ice cream sandwiches are good - but i really wish they would make them on the spot, so you could get whatever cookies you wanted - right now it's all just standard chocolate cookies. a bit toooo sweet sometimes. i also had a special chocolate mint cookie sandwich, which was pretty good, but i had some serious chocolate overdose afterwards.\n\nnot a huuuge fan of the cupcakes; i tried the brown velvet (i think that's what they called it). doesn't taste like red velvet, even though it's supposed to. but i mean, the place IS called urban COOKIES. \n\nyes, they are pricey, but what organic thing isn't?", "type": "review", "business_id": "YkFBelUWinftlweJzuiIAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TCEqENMcnIjsBCjlI_Stzg", "review_id": "MEaS-97GgiRXQQInLyNUvg", "stars": 4, "date": "2011-05-04", "text": "I'm not a big drinker, but this place is pretty sweet if you are. Huge selection at excellent prices.", "type": "review", "business_id": "ycBa5cnSa6hgdB7rb9rdiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WZF-Vqg_g7zzPYTR-_xgQw", "review_id": "2txTJvWEDHDzRzpJAH0qZQ", "stars": 4, "date": "2011-05-07", "text": "Back in high school I used to work in metrocenter and this place still has the best lemonade I have ever had. I have not eaten the food from here so I have no idea on the quality.", "type": "review", "business_id": "o0Sm7tDF8wx6w9F2ZbdG2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vUM21g3cPEdSlI89oDttgw", "review_id": "e9xC2MLvt-8FfisFtybqzQ", "stars": 5, "date": "2012-06-30", "text": "Why oh why can't there be one of these closer to my house?! I would take them any day over Subway. Their bread is fresh, their meat and cheese is sliced perfectly thin. This may sound strange too, but every Mr. Goodcents I've been too has the BEST soda fountain Coke. Okay...I said it. Judge me. \n\nI do prefer the Mr. Goodcents over in Tempe off of 48th Street, but this one is just as good.", "type": "review", "business_id": "rRe2eLIQ4MQ7d6vFL26Qdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YOZ6xwXXpxD0vxJiA6WC-A", "review_id": "PtJPJR__qfNk0piQOnfqEQ", "stars": 2, "date": "2011-11-05", "text": "Walgreen's has the best nuts. However, they recently changed their prices and only give a cheaper, 2-for on the halves and pieces. And they upped the price (again) on the whole cashews. I will be shopping elsewhere.", "type": "review", "business_id": "jSFS1OfZH0J9ePlzAdbltw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BmrHQgNFdN2IaoI5_OBF7Q", "review_id": "xTwSNNeBgzipKOaO4-Ws1w", "stars": 4, "date": "2007-01-18", "text": "Better like it hot...these folks do not know the meaning of the word \"mild\"! Plentiful, tasty Mexican fare at a good price...always a good bet.", "type": "review", "business_id": "9tSHBEoAhKu-tkU8n6SKjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4JapGtmN58pZYo1ClbV8qw", "review_id": "FFVi7P_RLKzITbLj8jWo_w", "stars": 4, "date": "2008-10-28", "text": "Best toasted subs... EVER. I order the White Widdow and pretty much stick to that. It's awesome. The cheesy garlic bread... delish! Try it with pepper jack =) This place is a regular for us when we want a good sandwich. Hey... even my mom loves this place.", "type": "review", "business_id": "HMUvbAHRnbAczNrYy8e5MA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8SqSyWdU1det5INylsCAXw", "review_id": "SnpxiakrKate_rH2qzcIBQ", "stars": 4, "date": "2009-08-13", "text": "We were in Phoenix just yesterday and stopped by Roberto's for a third time. We've yet to be disappointed! My husband loves the breakfast burritos, which he gets with one of the soft sided (el pastor) tacos. Being no fool, I go straight for the el pastor chimi (solo, not the platter)! It's a good thing we don't live any closer, we'd be weekly regulars and I don't think I could swim that many laps to make up for it! On our first trip I had the chicken chimi, and could not believe how tender the meat was, absolutely delicious. Then I discovered the el pastor...au revoir chicken (as good as it was!). I don't know what kind of marinate they use, but we love the flavor and tenderness it brings to the pork. Yes it's in a gas station, but we've always found it to be clean and the food is always fresh. We arrived around 11:30 yesterday and got there just in time to beat a steady stream of regulars stopping in for lunch.", "type": "review", "business_id": "uPDTnuR-sOi47blHH943lg"} +{"votes": {"funny": 2, "useful": 5, "cool": 5}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "R2fFc6Yxsim8xk4wkNYmZA", "stars": 4, "date": "2012-11-14", "text": "I can't believe I've never reviewed this place before. I've been here countless times before, and watched the place get upgraded and remodeled several years ago.\n\nI can't remember the first time I came here, but it was some time ago after I moved out here. The convention center has an older part thats smaller, and a new addition that's huge! Plenty of events are held here all year round, from sporting events like the NBA all star game, to the auto show, they had an NRA convention a couple years ago with a zillion people, along with other regular yearly events like the auto show and several others.\n\nThe place is large, and has 3 levels (a basement area, main level and upper level) with a crosswalk to get to the other side which is pretty darn cool. It's huge, spacious, and modern looking with its updates. Escalators, stairs, etc. The place is sparsely decorated with Arizona stuff that makes it really cool looking. They also have a cool light feature outside that illuminates the walkway with different colors at night and is really pretty to look at as well.\n\nThe cool thing about it is too is that its easily accessible via light rail, and you don't have to spend $$ on parking...and let me tell you, the parking here isn't cheap! $12 for the garage, $10 in lots around, and its not any cheaper the farther away you get. I don't know why anyone would want to park down here, since the light rail is $3.50 round trip, so save yourself a few bucks and take the rail. You'll thank me later!\n\nThere's also food and dining in here as well, with a variety of different style resturants, but again, its outrageously expensive! They have a starbucks here too, which is their regular prices, but is like an extra $5 a person to eat here, so dine elsewhere before you come in here. (minus the coffee since Starbucks is the only reasonably priced place in here.) Plus, the convention center is a hop, skip and a jump from about a zillion other cool dining places that your better off eating at anyways, so do that instead.\n\nAside from that, this place is pretty huge, and its worth checking out. Plenty of clean pretty bathrooms and tons to do in and outside of the center with variety of different sized spaces to hold any kind of event, large or small.", "type": "review", "business_id": "F6BedoYgbAQHqwKX9F0zDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dUDzN6zl3j12zhByOrnF9Q", "review_id": "Xweq4Rg4yXIEtXPPGshmIQ", "stars": 5, "date": "2011-08-01", "text": "I'm a big fan of their strawberry water and if I'm looking for a better lunch than what I have at home I'll swing by and pick up a salad from here. They have a good selection- and it's constantly expanding.", "type": "review", "business_id": "mp9hMnOobCLNB_iR4sqm_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qywVBBmOW9fbqWDi3XO8rQ", "review_id": "vDDoTLBRdsi_2TF8eFQovw", "stars": 1, "date": "2012-02-29", "text": "I went there with a friend last year after reading so many good reviews. The service is good. We didn't have to wait but I didn't like the food I ordered. I had a salmon with caper butter sauce. The fish is not fresh at all and the food is too geasy for me.", "type": "review", "business_id": "EfmR4e1tmjC5_ZQOgfnYrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XrD_RUiFeKsQ63WL3l_crQ", "review_id": "18IX784TyeTGYJtAaU7rmQ", "stars": 5, "date": "2010-07-12", "text": "I think that they have the BEST pizza in town!!!! Way better than Pizzeria Bianco!!!!!", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "V9Uqt00HXwXT6mzsVCjMAw", "review_id": "0IAWDXtCqzEonomVBnM4Aw", "stars": 4, "date": "2009-12-10", "text": "So many great things to say about this place where do I begin....\n\nWITH THE HOUSE MARGARITAS OF COURSE!! Hands down THE best house margarita I have EVER had. No syrups or mixes, this is straight tequila and lime juice baby, very refreshing and delicious! And for 4 bucks on a Monday evening, how can you go wrong?\n\nTheir specials are all very good: Margarita Monday (as mentioned) with half price Apps, and Taco Tuesday with their dollar tacos and $2 tecate's...HELL YA. \n\nThey have a great range of tacos here and all are pretty delicious. Try the nachos with Al Pastor on them too, delicioso! Their chips and salsas also kick ass. \n\nIf youre looking for a low key place to hang out, snack, and drink then you'll enjoy this place and if you love margarita's then you'll REALLY enjoy this place", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "xxEdqCgdMxbN61aa2tUFGQ", "stars": 4, "date": "2009-05-09", "text": "Excellent doppio and drip coffee this morning at Press Coffee, though the naughty side of me wanted a pint of Tripel Karmeliet, Lindeman's Framboise Lambic, New Belgium Mothership Witbier, or Great Divide Pale Ale. Cafe light breakfasts were served to some patrons, and most observations I had were of little English muffin egg sandwiches with assorted toppings inside.\n\nCoffee is the main focus here, at least by decor and by what most people were drinking this morning, and you can't resist noticing the craft beer taps as you enter the place. \n\nNot terribly busy as this place hasn't fully been discovered, or really becacuse this area isn't fully developed yet. Enjoy it while you can.", "type": "review", "business_id": "Kqn4J9NTgZdMAnV4HuYh5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "I4bhsf1KE0ziCghYuyyLhQ", "review_id": "CgaejRI-yB2KFwTLwmqCnA", "stars": 3, "date": "2012-06-19", "text": "Yelper Jane B's review is remarkably similar to what I intended to include in my review.\n\nWe've stayed at close to a dozen different Homewood Suites over the years and this one left us wishing we could have stayed at any of the others instead.\n\nFurnishings were adequate but not terribly comfortable. The living room had a sleeper sofa and a side chair, a dining table with two chairs, an end table, a coffee table, and a TV stand with 3 drawers plus the kitchenette, all in a room roughly 9' x 14'.\n\nThe bedroom contained a desk with 3 drawers (serving also as the dresser) and the bed and nightstands. The desk also served as the TV stand, allowing a small work area and taking up so much room the door couldn't swing all the way open.\n\nOur bedroom also contained the mystery deadbolted closet with unknown contents, which took up half the guest closet space.\n\nThe bathroom was large but dingy and dimly lit.\n\nI considered renting an on-demand movie one evening, but everything offered by the hotel was $15+/each (!!) and since there wasn't a DVD player we didn't have the opportunity to rent somewhere more reasonable and bring it back to our room. Free wifi seemed stable although a bit slow, and the pool was small but the kids didn't seem to mind.\n\nThe staff were very friendly and helpful, and the breakfast was well-prepared and always had enough variety to keep the kids and adults happy.\n\nWe got a great rate but hey, it's Scottsdale in the summer so most rates are pretty darn good. Normally we enjoy staying away from home, but after 6 nights here even the kids were anxious to get home.\n\nWe'll stay at Homewood Suites again in the future, but not this one.", "type": "review", "business_id": "_Q9IEf-8XbQR2eutFVhh1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bd17-disjLNGxvnxdatsaw", "review_id": "nJOzLKUSwAf8nwHF1ll5mQ", "stars": 5, "date": "2011-04-08", "text": "What can I say, this place has it all. Great service, a hugh variety of food to choose from.\n\nI really like their pesto chicken grilled pizza, but I could go on forever with all my favorites. Check out there craft beers too.\n\nSimply delicious.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KydTpdUtq6o-u3JLjZFrDQ", "review_id": "ai-ZpBEuYJo76WGXrMo3ZQ", "stars": 4, "date": "2010-11-13", "text": "I really dig this place! But I have to say, every 3rd or 4th visit to this restraunt is a miss. Not sure why- but it is most of the time spot on. I love the Pho- but the noodle dishes are what is off. \n\nEither way, the owners are super sweet and nice and it usually is never too busy. Service is good, carry out is great as well. Just be careful in the noodle dish category, becuase if your really hungry, (in my experience) it may miss the mark. Order pho to be safe!", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-jgGsPzZ4W2TyGh7KOwl9Q", "review_id": "0z51aynkyDSQX-cPHhJxBQ", "stars": 5, "date": "2011-12-18", "text": "Killer sandwiches and dill potato salad that set my world on end.\n\nI wish I had known of Bertha's while I was in town for a long period of time because I would have eaten here everyday. \n\nI went for the blue cheese roast beef sandwich which was a magical meal. Lightly toasted bread, slightly sweet mustard mayo, fresh veggies and the most beautiful sliced roast beef I have seen in a long time, this sandwich was nothing short of awesome, damn it was good. \n\nAs a side I got the dill potato salad, this stuff is NOT your grandmothers potato salad, this is what your grandmother should have been giving you. Holy wow, creamy dill potato greatness. I am going to have to figure out how to get this out to me in LA.\n\nThe deserts looked great and the little chocolate brownie cookie gave me an idea of how good the other offerings most likely are.\n\nBertha's is awesome, fresh sando's, salads, wraps and potato salad that will redefine the potato. Bertha's please open a location in LA, I will keep you afloat!", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1qw1NflQJvb0WhKn-_hwDQ", "review_id": "S_ir6uvPKx4vd7wcLO8eKw", "stars": 5, "date": "2011-05-13", "text": "Truly the best pizza I've had so far in AZ. Reminded me of NY pizza, thin crust... and crusty! I could eat this crust alone it's so good!.. \nIn fact I did!!! Ate it with a little olive oil and it was yuyuyummy! Also had the antipasti, so glad they actually give you REAL antipasti and not a mesh of crazy salad... you have to try this place if you haven't already. My husband and I got a small pizza and had enough to take home for leftovers... and we are BIG eaters! RICO!!!", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8ZHvgisJp6Eng07f7LY_-A", "review_id": "HIH-5V8S6lBwfroMSmE6uw", "stars": 1, "date": "2012-04-25", "text": "Hot fudge Sunday was watered down so much. You would do much better by going to mcdonalds. This isn't the first time. I should quit giving this place chances. I'm disappointed every time. I once asked for hot fudge on the bottom of my sundae and was charged $2.60 more. The staff is rarely friendly. They should consider being friendly since it IS Dairy Queen, a place that takes many of us back to our childhoods. The array of desserts are so wonderful why not serve them wonderfully and with a smile, and not like you hate your job and just want to go home?", "type": "review", "business_id": "AAkqVCuUGIP0gvY42_CRYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WQX1Hio90vjGkASKM0v5kA", "review_id": "4rPHbuypxzE1QqX3D27kew", "stars": 5, "date": "2009-09-20", "text": "This is a fancy fine dining restaurant with a casual feel. The food is definitely under priced. For most of the summer, drinks are cheap and food is half off for the all day happy hour to entice the locals. During the winter, you can't get into this place. It is packed, so reservation is recommend. The food is described as American Southwest. The best three choices to have for the first visit. Is the Famous \"BIG_ASS\" Burger, Green Chile Pork Stew, & Lamb Fondue. These choices will hit the spot and hit the wallet for 10 bucks with tip a person.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HvaVgP0S0dFaCbBDIQIkag", "review_id": "EkwpfZu6HOXP_IitAZL4Rg", "stars": 4, "date": "2009-01-07", "text": "Found this today while cruising down 7th on my way to Roosevelt Row for some belated Christmas shopping. Very cute interior. I got the Torta, which was huge and extremely tasty with moist, seasoned asada, guac, veggies, and jalapenos on a soft buttery bread. Mmm!", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bkRfY8jHdFxf7k8vLX4buA", "review_id": "i--SA1pUVsg9093X0RQsaA", "stars": 4, "date": "2011-02-24", "text": "Just the basics. Nothing fancy here but you can get a pedicure with hot stone massage for $18!", "type": "review", "business_id": "viCUW2-IjjLLNcxyXbgExA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "imb8zI2mPdiXSXeRuVntag", "review_id": "KiMfNA05aF5x_Zq2iu4H_A", "stars": 4, "date": "2012-09-17", "text": "I have to admit: I am impressed.\n\nI have been to a few vegan-only-menu restaurants and I was... underwhelmed. Nothing against the raw food movement, but unless it is a raw-specific place, I expect more creativity. Show me what food can do, be, taste like. Don't just cut it up and toss it on a plate.\n\nFour of us came in to eat on a Saturday and the place was PACKED. A good sign, surely, AND it was a really great mix of demographics: young and old, many nationalities, singles, couples, families... we liked that it had a wide appeal.\n\nThe place smelled fantastic, too, so we started perusing the menu long before we had a table to sit at. We waited about ten minutes for a table. It's a bit like a cafeteria in that you order and pay at the counter, and the food is brought to your table.\n\nWhile we waited we were given a bowl of the \"house soup\" which, basically, was warm carrot water with a piece of carrot or two and some tiny, tiny mushrooms. We all agreed that it needed more of a broth flavor (more types of veg? more mushrooms?), but it was tasty enough and definitely whet our appetites for more.\n\nThe spring rolls were really good but needed more. As we removed the peanuts for my friend, I \"blame\" this on us... I will have to have them with the peanuts next time.\n\nThe crispy rolls were spiced and savory and light and perfectly crispy. \n\nMy favorite had to be the Pate Chaude. Flaky, savory with a bite from a wonderful combination of spices, and a meatiness from the mushrooms that made us think a die-hard carnivore in our lives may not miss the meat if he were to eat it. THE dish of the day, hands down.\n\nThe curries were a bit bland (Save-Planet and Divine Curry Noodles). They were fine, OK, but nothing that made us think we'd come just for that. Much better elsewhere.\n\nThe Gracious Spicy Noodle soup was really tasty but it needed a tad more spice. With spicy in the name, we expected more. \n\nSome stuff is pretty basic: the sushi rolls are basic veggie sushi rolls. The rainbow salad is a tasty but commonplace cabbage and carrot slaw. The fried rice was fried rice. All yummy, all fine to eat, but nothing spectacular, different, or altogether exciting. Basic isn't bad.\n\nFour stars for the surprising and amazing pate chaude and the rolls, for sure. Ideally, 3.5 stars this trip, but I rounded up for the good parts. \n\nCouldn't go five stars for two reasons: too many items were just basic and the service is slooooooooow. 20+ minutes for fried rice (that we had to ask about)? 25+ minutes for some soup? It was a crap shoot as to what was going to be delivered and when. While they were swamped when we came in, the crowd was thinning out for their afternoon down time (they close from 3p-5p). Overall, our lunch took over 2 hours, most of it waiting on dishes to come out. No bueno if you have other plans that day.\n\nSo... tasty, some major standouts, some \"meh, I've had this before.\" We *WILL* absolutely go back to give the menu more of a chance to wow us; the ones that knocked us off our feet are worth the return. (Hopefully it's delivered a little faster this time!).", "type": "review", "business_id": "u-nMW__EKMYH_PVqacYc3Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 4}, "user_id": "bfuVbKov5Uwcha6-l4ikFg", "review_id": "LLqoetmzmYnGlQyAFY5o0Q", "stars": 3, "date": "2008-07-09", "text": "My boyfriend and I were searching for a dive near our house in Old Town for when we just aren't feeling the typical Scottsdale vibe. I gotta tell you, I think we found it. \n\nWe walked in around 7 on a Thursday night, just looking to have a few drinks and some time to talk. I immediately realized this was not an Old Town bar. I think I might have been the youngest person there and no one was pretentious at all. They have a dart board and pool table, and seating with walled mirrors all around. The patio was extremely well-misted, which was great since it was the day before 4th of July and everyone was pretty much sweltering. Drinks were stiff and not too expensive and the crowd grew younger as the night went on. I didn't meet tons of people, but the ones iI did either seemed drunk, super nice or both - not a bad combination. \n\nI would go back again, just not every night (what do you think I am, an alcoholic?)\n\nAlso - for those of you with bladders of steel and small wallets, I saw a sign that says they do bladder buster deals on Tuesday night. Small cover and incredibly cheap drinks until someone \"breaks the seal\". I would suck at this, but I'm sure many a person has taken advantage of this interesting drink special.", "type": "review", "business_id": "4CsZK1YOP8lCLH9ZSf0LMA"} +{"votes": {"funny": 4, "useful": 8, "cool": 6}, "user_id": "n_lAaNGeWgspbbCJc0DqRg", "review_id": "0PJikehxBTmvgOve7sd8EQ", "stars": 4, "date": "2010-06-19", "text": "Inspired by recent Talk, this rating simply must be updated.\n\nFatburger has a QUALITY-quality that places it in a wierd limbo between other fast food burgers and places like Fuddruckers.\n\nIf you are a fan of the king, either of the two clowns, or the red haired girl, then Fatburger is likely to feel too expensive and that it takes too long.\n\nHowever, 'you get what you pay for' and 'good things are worth waiting for'. \n\nFreshness, a multitude of assembly choices, and overall quality are big standouts at Fatburger. The employees at this location have always been friendly and courteous.\n\nTuesdays: buy a combo, get another burger free!", "type": "review", "business_id": "wn7GiuOQ_0VrPXNc1wVTDA"} +{"votes": {"funny": 4, "useful": 6, "cool": 3}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "FBF-a69Xuc978-_NJlCaPQ", "stars": 2, "date": "2012-11-22", "text": "Got together with Mike C. to go out to a Thanksgiving Buffet today. We tried for Golden Corral down the street in Gilbert but the line was way outside, so we came up here where there was also a wait, but shorter. It was good, as always, but there were some negatives this time:\n\n* The soups: There was an ordinary Corn Chowder, a weak Cream of Broccoli, & ordinary Chicken Noodle. They should have done better than this for Thanksgiving.\n\n* There was no cottage cheese. (They don't always have it, but at these prices they should have some today.)\n\n* There was turkey, but breast meat only & no dressing!\n\n* Over at the dessert bar there was no hot fudge (& it looked not as if it had run out, but rather that they just didn't offer any today).\n\n* There were no sundae cups. I had to go over & get a soup bowl to make a sundae.\n\n* There was Hot Lava Cake (or \"Hot Fudge Cake\" I think they call it here), but it was sorely lacking in lava!\n\nThus, it's down to 2 Stars for this restaurant that wasn't as good as it should have been for the money.\n\nThanksgiving Buffet $12.99/$12.49 Sr.", "type": "review", "business_id": "9ocGgALmbzTZWOS7f7SYcA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TTjO2JhQnEs44Mxp2WnDcw", "review_id": "l3Cbrt6pUKMaEkbMtRJTpQ", "stars": 5, "date": "2012-03-28", "text": "Simply put this place is AWESOME. If you're looking to start a business or already own a business but need some of the details on a particular area, this is the place to be. So far I've only attended a Brown bag lunch but I was thoroughly impressed by the people who were there. However, don't show up with out being ready to put in your two cents, its needed to keep the ball going, I thought it was really good. I can't wait to go back!", "type": "review", "business_id": "_bsTEMjThKNd8CfiHBX6wg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gHBS1sZU1wCrKEk-gHGR0w", "review_id": "Iy4maDGK47zC3vkI6qNAEA", "stars": 5, "date": "2010-10-23", "text": "I love Jimmy Johns. It is WAY better than Subway. The bread is what makes it. They bake their own bread right in the store and then right before they make your sandwich, they pluck out the middle of the bread to fill your sandwich with goodness. \n\nYou choose your sandwiches by number, but you can customize any sandwich. I usually get the #4 which is a Tom Turkey. It has turkey, lettuce, tomato, lettuce and sprouts on it. I like their chips too. They call them Jimmy Chips. They are the kettle cooked type. I personally do not think this is your ordinary sandwich. The combination of bread and ingredients makes it a great sandwich and they are fast to prepare.", "type": "review", "business_id": "S3ccQHpkBQTBBfRB-Q4adg"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "6WrOT1dj6sigl_voiwQ7HA", "review_id": "II7eMeFtPg9l_FMLQFLiwQ", "stars": 2, "date": "2008-04-05", "text": "I finally got the chance to visit Lola on my way home from a poetry reading at the Phoenix Art Museum Last night..(Side note: If you get the chance to see Aaron Johnson read, do so.)\n\nI somehow feel the need to appologize for the lack of stars to all of you who seem to love this place. I would certainly be willing to give it another try but I was not impressed.\n\nFirst the music is loud, and therefore everyone talking in the place turns up the volume and as my girlfriend and I were seated across from each other at the communal table we could barely reach to share the food let alone hear each other.\n\nWhy are the tables so big if the food is so small? Maybe I am a bit of a glutton, but for 8 dollars I essentially ate a mushroom for dinner...Don't get me wrong it was tasty, and I understand Tapas are appetizers, but 8 dollars? I was disapointed. I used to go to Firefly in Vegas and it was cheaper and tastier.\n\nWe just wanted to try this place and move on someplace quieter, but I was really looking forward to it...We decided not to have drinks and simply share one thing so we could get to said quieter place before it got too late...I think because we ordered so little, the waitress considered us a waste as far as her tips were concerned and therefore seemed not so friendly...and those little bitty glasses of water they bring...I drank immediately and it was never refilled. \n\nI was overall not impressed by anything except a patron's sweet ass Salvador Dali Mustache. I can see the charm there and I probably will give it another shot but based on this trip 2 stars is fairer than fair.", "type": "review", "business_id": "xdwPHc25l7_roZ9Kfea13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NlRHV4mdiBQRsFMf6XAKxw", "review_id": "3QNdbw4o69fTeW0wmRborQ", "stars": 2, "date": "2012-08-14", "text": "Spoke with the office manger she confronted me on the Yelp review. I told her the truth I shouldnt of been schdled to see the general dentist there when the Oral surgeon wouldnt be in until Oct! and they knew that befre I came in on 8-10, I should of been called befre 8-10 so I can switch offices before coming in and wasting everyones time. I hope they keep their end of the bargin since I was told 3x I will not be charged for x-rays that I dont get a bill and actually get chrged. Im happy she told me that she will take it to her higher ups to work out their issues with scheduling as it will probably help them. But my experience so far was a waste of mine time and I feel the only way they will change is if they get reviews that really work on it. The office wasnt busy when I went..whats keeping people out??", "type": "review", "business_id": "UeN-rChyVqfCq9jcNyY-5w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "UhgUFf0U0If5KTpcRyF5Zg", "review_id": "MCLciGKar2fhb3L2oEdMYA", "stars": 4, "date": "2011-05-07", "text": "Surprise! A Vietnamese restaurant in Surprise. I ordered bun noodles with beef/lemongrass to go. I waited at the bar, and the service was great. The owner sat next to me and had a plate of spring rolls. I made a comment on how tasty they looked, and he asked if I wanted one. I think that's when I knew I loved this place. Anyhow, I got home and tasted my food. Awesome. The noodles were cooked perfectly (not soggy), and there were plenty of veggies and meat. The nuoc mam had a lot of flavor as well. (You can have really good food, but if you have crappy nuoc mam, your food won't taste right.) I think I'm gonna have to start ordering to-go weekly.", "type": "review", "business_id": "YnWb8fRudnNkXc-VjrmKGg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Vwek1Fpg2IP29Lm7a8ZH4Q", "review_id": "_Isv_I1fux-qnFHMEAXd5w", "stars": 5, "date": "2012-05-10", "text": "I had my brows done one month ago. Heather did an amazing job! I went back after 2 weeks for a \"no charge\" touch up. I haven't worn brow powder or pencil since, and most importantly my brows look TOTALLY natural. I give her 5 stars and would strongly recommend her. As a matter of fact I am going to go back and have my lips done!", "type": "review", "business_id": "bv0eTmpT08aW7A2mHItK0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fytQ4lPYbvzbzy6M4TIQ-g", "review_id": "JaFoQeqtUy-nP4xNvqDyqQ", "stars": 4, "date": "2011-04-09", "text": "Chunky Spicy Tuna Roll-5 stars\n\nI can tell you after living in Japan for five years that Sushi Ken is right up there with all my favorite sushi restaurants in Japan. Sushi ken is comparable to all the cozy \"mom and pop\" shops in Japan, who I consider to all be 4 and 5 star ratings. \n\n I've visited Sushi Ken numerous times, usually on Friday or Saturday nights and it's often busy, but if your patient enough to wait a few minutes or so; then you'll be glad you did, because the culinary experience you're about to encounter is out of this world. \n\nOne particular item on the menu that fits my \"out of this world\" category is the \"chunky spicy tuna roll.\" This is by far my most favorite roll in all of Phoenix. I've had spicy tuna roll at Sakana, Ra, Kona Grill, sakitini, Ichi Ban, Kabuki...I could go on and on, but no one else's spicy tuna roll even comes close to Sushi Ken's chunky spicy tuna roll. So if you don't want to go on and on and just want to find a great place for spicy tuna roll with:\n\n- Generous 8 piece portions\n -Fresh tuna \n -Soft rice\n -Sushi Ken's own hot spice \n -Tasty seaweed\n -Masago (smelt row) \n -Extra wasabi and ginger on the side\n -Reasonable and affordable cost of $8.75\n\n- then look no further, because Sushi Ken will provide you with all those criteria's. \n Aside from Sushi Ken having great chunky spicy tuna roll, they also have friendly staff, nice atmosphere and many sushi and non-sushi items on the menu to choose from for those who are not into sushi, and all at an affordable price that won't break your wallet. Oh yeah, you'll also get complimentary miso soup and edamame. You can't beat that!", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u2AxnSU7WsyBYCAtm_SYoQ", "review_id": "00TNDaDbTO7AXGCH-GhyDA", "stars": 4, "date": "2011-01-04", "text": "We just go there for lunch and its always very good. I got a burger and a stella. Both hit the spot. Our bartender was spot on. Only complaint, please clean that crap up off the floor come on.", "type": "review", "business_id": "puy0PzIcCgR3KWJI7llBFQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "0pQp6mIGvVNykNflKuTIOg", "review_id": "dmTDQIZeldEYn2iXf5oVsw", "stars": 5, "date": "2012-01-09", "text": "I'm not one for hyperbole, but this may have been\n\nTHE BEST MEAL OF MY LIFE!!!!\n\nI'd like to hold an awards show and give out lifetime achievement trophies to the following individuals:\n\n1. To the chef, who exceeded my expectations again and again. The Stetson salad, wild boar meatballs, and Korean-style BBQ short ribs (and that killer side of au-gratin brussel sprouts) and you, sir, have won my heart and my stomach. I want to fill a swimming pool with that BBQ sauce!\n\n2. To our server, Richard. Your genuine excitement for the food was a nice change from past servers reluctant to give a real recommendation. You were cordial and professional and made sure we enjoyed our time with you. I don't know, I may name my unborn child after you in tribute.\n\n3. To the pastry chef, Country. Your bread pudding was exceptional, but what a surprise, your ice creams were downright dreamy! The scoop of brown butter ice cream took my tastebuds on a field trip through chilled fields of chocolate truffles.\n\nThank you thank you for a wonderful birthday dinner!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "zBIBqj-pU3zaqTAdGou4pA", "review_id": "CNayVM6xYyI_yfUHjFBtxg", "stars": 4, "date": "2010-10-14", "text": "Arrived at 4:30 and staked out our place in line for the 5pm opening. There were quite a few people ahead of us so it was clear we would be in the second round of people. Placed our name on the list and went next door for wine and apps. The goat cheese crostini was excellent. The wait staff was pleasant and kept us updated on the wait. After an hour fifteen we were seat. Waiter was extremely pleasant.\n\nWe started with the antipasto (wood roasted vegetables, Sopressata, Bite of Cheese) and then ordered 4 pizzas\n\nMargherita - Tomato Sauce, Fresh Mozzarella, Basil topped with cremini mushrooms, \nROSA - Red Onion, Parmigiano Reggiano, Rosemary, AZ Pistachios\nWISEGUY - Wood Roasted Onion, House Smoked Mozzarella, Fennel Sausage and salami\nBIANCOVERDE - Fresh Mozzarella, Parmigiano Reggiano, Ricotta, Arugula and added Prosciutto di Parma (favorite)\n\nService was great and the pizza well worth the wait", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "cX91vKrqbG5fbrF53KYzUg", "stars": 5, "date": "2010-06-11", "text": "This Chipotle Rocks! \nToday, I express my joy\nIn the haiku form!\n\nPerfect fast food joint;\nFresh, delicious, quick and kind.\nThe price is right, too!\n\nBurritos galore;\nIn a tortilla or bowl.\nBut wait, there is more!\n\nThree steak tacos, please!\nOr grilled veggie fajitas?\nOh sweet perfection.\n\nA simple menu,\nYet so many decisions.\nHow can you go wrong?\n\nAnswer: You cannot! \nOrder now, you won't regret,\nThis Chipotle Rocks!", "type": "review", "business_id": "Cv4kZH9zN0wpN2Drn0qkLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "itWDC1MoquLplv0uIn36xQ", "review_id": "cOBhsuS2f3IzwVDCMekA9A", "stars": 5, "date": "2010-08-27", "text": "Last time I went to Zinburger I was wearing a black dress, and the hostess switched out the white napkin with a black one.... real classy.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LdhwY7eudLlx1KFQQe9GwA", "review_id": "8peOlnFg5qaNqptoryHPhg", "stars": 4, "date": "2012-01-06", "text": "Really great burgers...I would hope so with a name like Smashburger. This location is really good, so it gets busy at lunch time. Waiting is a bit of a pain, but it's typically not too long. The food takes a few minutes too, which is a positive in my book. The food here feels a lot fresher and better than fast food, though if you've seen their burgers, it's not a place that's super healthy.\n\nThey also offer chicken sandwiches (crispy or grilled), and salads, so there are some healthier options, but the winners here are the burgers and fries. Definitely try the smash fries. Tossed in olive oil, garlic and rosemary, they are delicious. Burgers are really good and juicy, and the ingredients they use seem fresh.\n\nCons are the long lines, and it's also not a place where you'll be in and out in 15 minutes. It's also not inexpensive. A burger, fries and a drink will run you $10-11, which seems high for \"fast food\", though I think it's worth it. What's nice though, is that you sit down with your number and they bring you your food, and they'll bus your table, so it feels like a combo of fast and full service...I suppose this is a perfect example of \"fast casual\". \n\nIt's pretty close to my office, so I'll be back often. Definitely worth a try if you're in the area and craving a burger.", "type": "review", "business_id": "R1kKjAO5kZO6d0gQGqrvGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CYKz4de61gfOfZEB7MbaDg", "review_id": "Wy0CZN_PB2OFzkcXQxpjOw", "stars": 5, "date": "2011-12-18", "text": "my son loves the splash pad! His dad or uncles stay with him at the playground while I can run in the store or two that I need to! There are quite a few empty retail spots, hopefully they can get some new stores in there as well,", "type": "review", "business_id": "XJv7dUb5fMRaZAWVZjhtvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q77PB7dBeVgRB7TshYFEOQ", "review_id": "vuF1T2bgyQ4WUpVLEXxURQ", "stars": 5, "date": "2012-06-27", "text": "We are picky about food because we try to eat healthy. Owner and server were very accommodating and courteous. They took time to understand what we want and delivered on it. One gripe, we had difficulty finding it because neon sign was not working. We had a great experience.", "type": "review", "business_id": "KzZ5Zww9W0IBWm5S2loUmQ"} +{"votes": {"funny": 4, "useful": 2, "cool": 2}, "user_id": "k2u1F6spBGhgk2JtAe97QA", "review_id": "mycm5MKgpcIxeHMd9Y6y5g", "stars": 3, "date": "2012-10-26", "text": "I have never actually been to a pawn shop for any reason. I can't honestly even tell you what they are used for. I have never seen Pawn Stars. I don't watch television. \n\nI really enjoy this signage. On an almost daily basis. Savy, that is all it is. Love of a little morning chuckle.", "type": "review", "business_id": "g6ygZTK9TTI3CsSTKUkPlw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "OYpsdMcpdCdlkknpgpFMLA", "review_id": "KsuDoDgA-jGWVqLPOuLqow", "stars": 4, "date": "2008-02-18", "text": "This review is for the take-out window at the original Red Devil restaurant. I grew up in this neighborhood and have come here since I was a wee lass. I remember begging my mom to get out of the car so I could stand in front of the pick-up window and \"help\" her carry the pizza to the car. \n\nI still come here because the pizza is amazing, they always have a large cheese & wings combo on special, they make their own super-chunkily-creamy-delicious bleu cheese dressing and the guys who work at the pick-up window are super-sweet (even when it's blazing hot outside, and inside, near the ovens). Sure, you have to remember a random number they give you at a moment where you'll never be able to find a pen or something to write with in order to pick up your order (like Carolina's), but it's still my favorite pizza complete with a chewy, delicious crust. Enjoy.", "type": "review", "business_id": "PEHJjxdw11TGFma9Zhz3ng"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ZsqSDOeYGb-DinY6x3-YgQ", "review_id": "4-YEkM3zfYdw4V2gGQvsuw", "stars": 2, "date": "2009-07-06", "text": "Had great expectations after highly recommended by others. The breakfast was good, nothing extraordinary though. The service was a disappointment, server was very forgetful and put off by some simple requests. It doesn't look like they need my business though, considering the line to get in. I probably wont be back.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 5, "useful": 7, "cool": 9}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "JL-jE0hQDeJNJKxhAc45-w", "stars": 5, "date": "2008-09-07", "text": "I love this place! This was the 4th and final stop on our search for a great dive bar in Old Town. Coach House was just was the doctor ordered, that is if the doctor had ordered you to find a great dive bar. I'm still trying to find a doctor who will do that.\n\nAnyway, from the minute we walked up to the guy checking ID's it was a great experience. Everyone was friendly and chill. People actually talked to you and were having a good time. It was a great mix of people.\n\nWe played pinball with some guy we met who I renamed the Pinball Wizard. I also found out that I am not as good at pinball after I have been drinking. Apparently if affects your hand eye coordination or something like that. Who knew? ;) \n\nWe also had fun hanging out with some other dudes we met there, and my drinks were $4.25. What more could I ask for? Great bar, great night!", "type": "review", "business_id": "cjjZt2oOkk0F152RkQMfQw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "cSAACR699NuLMqBPuKL8nw", "review_id": "gsLSHj2Pk-TA8Sajx6-0LA", "stars": 5, "date": "2012-07-12", "text": "This is one of my absolute favorite bars in Old Town. It is casual with really good food but plays loud top 40 music with great drinks. What more could you ask for?\n\nService is great and the bathrooms are clean. The restaurant has outdoor seating which is great for people watching and right in the heart of Old Town nightlife.\n\nYou're within walking distance to The Mint, Dollhouse, Smashboxx, and the Pussycat Lounge. \n\nIf I didn't live a $40 cab ride away (one-way) I'd come here way more often. \n\nLots of huge flat panel tvs and plenty of seating. It gets packed on weekends but the place is pretty big so it never feels overwhelmingly crowded. \n\nThis is not a good place to dance. There is actually no dance floor. But maybe that won't stop you or I after a few drinks...", "type": "review", "business_id": "kgPjOtSeMd3CMdbnEmHbeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YVoYGVIlQpsxmiAFBiltgA", "review_id": "9YvG5bptgQSSeNVScubVBg", "stars": 5, "date": "2012-10-28", "text": "Have you not tried Which Wich yet? Do it. \n\nBuffalo chicken= hands down, my favorite sandwich ever in the world. I can't wait to get pregnant so I have an excuse to eat them every day. \n\nI used to go to one in CO all the time and I really remembered loving it- when I found out one had opened by my work, it secured a regular spot on my lunch-break rotation until I realized maybe I shouldn't be eating sandwiches all week. I now prefer to hit up the AJ's next door for cheap tea and salad bar (healthier, obviously) but sometimes I wind up in the parking lot of AJ's only to instead go over to Which Wich... it's seriously delicious stuff. My husband love the Thanksgiving Turkey feast sandwich (probably has a cooler name than that) and my backup fave is the chicken pesto (be sure to add bacon.) Always- and I do mean ALWAYS- get your sandwich toasted. \n\nTrust me. I'm a fattie who loves her some good sandwiches.", "type": "review", "business_id": "dYZ9YiA1JYlFoul-yorXSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0G-j4rIHYRDV8gFWN2L8yw", "review_id": "Jwbgi9rMa_Em51nFRA-fDQ", "stars": 4, "date": "2011-03-16", "text": "This little place is great, the service, the tacos, the guac, and the prices!", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rOpHWQXgXSnAT99-QE0QoA", "review_id": "mcQH6CoUTCxPuEDI5LAVOQ", "stars": 5, "date": "2011-06-30", "text": "My gf and I just tried the Oggie bc we werent super hungry. Even with that, the food was super yummy. I wonder what would happen to us if we are actually starving. the sauce that came with the Oggie was excellent too, so I suggested that you shouldnt eat the pasty without the sauce. The decoration in the store is quite unique: church pews and wall and table deocrations. It's a must go if you are around the area.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iLn6mJUqvJka3NxGesRWrw", "review_id": "lGQ5ORiIki-g1C3FmONEyA", "stars": 2, "date": "2010-12-04", "text": "Ordered a large cheese pizza. The crust was ok, not very flavorful. The pie had a pool of grease covering it. This pizza had a bland sauce and very little of it. It just seemed that minimal effort went into the pizza. This pizza is not worth a second visit.", "type": "review", "business_id": "MfCS8VeJzf9QbxNImekuMA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "0pQp6mIGvVNykNflKuTIOg", "review_id": "BYkgux5hbgTINCVWAvo6-Q", "stars": 5, "date": "2006-02-02", "text": "I've searched the world for the perfect pepperoni pizza. I've searched it over and over again. Damn it man! I've wasted my life searching and searching to the farthest corners of the earth to find that saucy cheesy meaty delite! Only to find that my favorite pepperoni pizza will always be Barro's, a restaurant just around the corner from where I grew up.\r\n\r\nI loathe you, you tasty cheesy bastards...oh, and can I have a large pepperoni to go?", "type": "review", "business_id": "3x3tJ8lGU1Y4wLqfHtqU1A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "rBeuXzsBkGxM5pJujH2zAQ", "review_id": "VhzdYHz3SWs-jjGnWQLYmQ", "stars": 4, "date": "2010-03-19", "text": "Though a couple of hiccups could've ruined the night, Roaring Fork took great care of my boyfriend and me and the food was delicious to boot (ha, boot. Get it? cuz it's western? Never mind).\n\nWe were surprised at how busy they were on a Tuesday night, but we were able to snag a table on their beautiful covered patio. The atmosphere was nice, and i was surprised at the range of patrons (a family of 5 with 3 fairly young children at one table, and a 10-top of blue hairs right next to us). Our server Charlie was very nice and helpful when it came to selections (from wine to food). We are trying out places in prep for a family visit, so we want to make sure we get a good sapling of the menu.\n\nWe ordered a bottle of sauv blanc, and though the wine was delicious, it took about the half the meal for Charlie to bring out the marble chiller. Thankfully the wine started out pretty cold, so no harm no foul. I orderd a bowl of tortilla soup (one of my faves) and I was impressed witht he presentation and taste. The bring the bowl with the chicken and tortilla strips out then pour the broth from a pot right at your table. Helps keep the tortilla strips crisp and was a great presentation. The soup was delicious, though a little creamier than i normally like my tortilla soup. We also ordered the seared ahi with guac and THAT was amazing. The pepitas crackers were delicious and interesting and the ahi was perfect. Great app for sure. Plus, the bread and butter were super delicious too. Garlic biscuits, mini corn bread and pepper butter? so good!\n\nFor entrees the boyfriend ordered the bacon wrapped pork loin over grits and I ordered the signature Dr. Pepper BBQ Baby Back Ribs. We subbed fries for asparagus and green beans and ordered an extra side of their green chile mac and cheese. I know, a lot of food, but we planned on taking most of it home. Here's where it got interesting. Or should I say, boring. \n\nSo far everything (except the chiller) had been delivered timely and was tasty. But when we realized we'd been waiting 30 mintues or so for our entrees to come (after they'd taken away our apps), it started to get a little annoying. After about 40-45 mintues, the manager came over and leet us know our tray of food had been dropped and had to be re-made. No problem! I understand accidents happen. But i think it would've done a lot to smooth us over if they'd told us right away the spill had happened rather than waiting until we were about eat the burger off the table next to us. RF did recognize the inconvenience though and completely took care of us when the bill came. So props to them for that, and we didn't even complain or ask for any special treatment.\n\nWhen the food finally arrived, the ribs were OUTSTANDING. the sauce was perfect, not to sweet, not to flat. And the meat was literally falling off the bone. The veggies were all good, but the really show-stopper was the mac and cheese. The crumble top was delicious and the cheese was melted and runny but not stringy or clumpy. Spicy from the green chiles but perfectly reasonable. I want another kettle of them right now. So good. The boyfriends dinner was also good, but i think my ribs and the mac and cheese were really the best part.\n\nWe boxed everything up and ordered the huckleberry bread pudding to go. I was disappointed they no longer do the pineapple upside down cake, which so many yelpers have recommended, but I loved the bread pudding as a substitute. the buttery sauce didn't reheat very well at home, but it was still very very good and the ice cream was a perfect complement. I would totally order it again. Like a muffin fresh from the oven, still a little gooey.\n\nOverall, i loved the food and the staff was really apologetic bout the \"incident\". The atmosphere is great and i would definitely come back. Next time, the burger!", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "6JaGFDykeSauJCt6yqGF1w", "stars": 4, "date": "2010-11-17", "text": "I am a big fan of both the Vig and the Uptown Vig, but I like the Uptown Vig only because there is never any wait for a table. Though I am sure the Uptown would prefer some wait because that would mean more people, more money, etc.\n\nBack to the Uptown: great trendy layout with a sweet indoor patio that gives the illusion of being outside without the sweltering heat or desert night cold. The menu is eclectic drawing inspiration from Thai, Indian, American and Mexican cuisines. My favorite are the Nachos. They are ginormous and packed with every ingredient you might ever want topping chips. The sweet potato fries are also delightful.\n\nThey have a few specials, which elude me now, but I remember one involves 20 bucks for wine and an appetizer. Also they have Hoegaarden on tap which is a plus.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Q6FaSZpCtVv7PXECwDL1bg", "review_id": "JdtXgbAoR7oTP0kV0hwl0g", "stars": 4, "date": "2011-06-16", "text": "I've been frequenting the Dollar store for the past three weeks while shopping for a work project. I have bought just about every pair of safety scissors in Phoenix, playdough, and other small manipulatives for elementary reading and math kids.\n\nAnytime I need cleaning supplies for home I head straight to this Dollar Tree Store. They have the BEST carpet cleaner called LA's Totally Awesome Carpet Spot and Stain Remover. It really works!!\n\nThe Dollar Tree is a great place to stock up on cheap party decorations.\n\nShopping at the Dollar Tree is kinda like buying a Saturn. You know the price before you walk in and how much you're going to spend before you check out. I love that!", "type": "review", "business_id": "HExayA3clxiQZgikqvwnYw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "12jcAThukkGZ70Veli_FRQ", "review_id": "XWOOc_NUV6yOPFscg8Z3ew", "stars": 3, "date": "2012-08-11", "text": "We didnt feel like going out and decided to order in. Compared to most delivery restaurants of this style, we were happy not to get a salt bomb for a meal. Only quibbles were ordering two larges and only getting one rice and their online menu not being accurate with regards to pricing. Good flavor on the Kung pao.", "type": "review", "business_id": "qrapwnls-3IMg-iaXhkQKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mEMZxvHpemSxn1gl7Lj1Zw", "review_id": "sLpq80yupnXeJI0L4VjrNA", "stars": 3, "date": "2008-06-22", "text": "I made it to China King at 2:40 pm on a Sunday and I called ahead expressing a desire to have a late Dim Sum lunch. However, once we arrived they only had a five items to try. I was bummed, but I will make sure I go early next time so I can here what everyone raves about. My average Singapore vermicelli was a poor substitute, but I will arrive earlier next week so I don't interrupt staff meal. That seemed to be the focus when we there, as service was neglectful and quite indifferent.\n\nAlso, I found a hair in my food, but why complain when they really don't care if you're there or not.", "type": "review", "business_id": "sgBl3UDEcNYKwuUb92CYdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "98jhrpmyYcLLM0-9z-r2oA", "review_id": "xaJp1pIoy-Jt3VRCQDLT_g", "stars": 5, "date": "2009-10-04", "text": "Absolutely LOVE spicy pickle! Sandwiches are great (always make sure to get them HOT!) Pickles are awesome too! \n\nFood is consistent and really good. Good variety, and you can easily make your own sandwich with a ton of choices. Good breads, meats, cheeses, toppings, sauces. Overall a really good sandwich!", "type": "review", "business_id": "azBHKHqif0NXO3xcALo5VQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "0oRtnPHtvZIE1UNxCDDTPw", "review_id": "yoW9xkHSwBzDtZ1rhe0GhA", "stars": 5, "date": "2010-10-20", "text": "Another 5 star review. I saw Beauty and the Beast with my little niece last night and she couldn't stop talking about it. \n(It was her reward for having good grades) \nI know I'm supposed to be the reviewing the theater, but I can't bring myself to rate them lower than 5. It was such a good show that even though there were a few minor issues at the theater, they still deserve 5 stars. The auditorium is starting to show its age and hopefully they get the funding to make improvements. (Also some lady with a big head sat in front of us and my little niece couldn't see, so I changed seats with her.) No big deal. \nOther than that the staff were very professional and helpful as always. \nThank you again to yelp, Lindsey and to Gammage for giving us complimentary tickets. My little niece and I appreciates it and we enjoyed the show. :)", "type": "review", "business_id": "ohxd8La86GdC_3vgwBWLHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nLXfL00a9nSjB7T_OqKscw", "review_id": "lcHLsyekxeyt6QpuWT4dcw", "stars": 4, "date": "2012-07-19", "text": "Great place, great food, great staff.\nI just had a chicken salad but my husband had the Jambalaya, he said it was the best he had ever had.Had the bread pouding for dessert..fantastic! We wil certainly return.", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "2h0A-NirfNl2p2SquFWYHQ", "review_id": "EJkXPUa0IVeDCdSyLdsbrQ", "stars": 3, "date": "2012-05-13", "text": "I love Defalco's. I hate Defalco's. The food is always fresh and I'm never disappointed. The big problem is that the service is so slow. It's great that they have a market for you to look around while you are waiting for your food. I know I can get quality tasting food but I have to here when I know I'm not in a rush to be somewhere.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aTlHCohiT4ggRcMl3RQlXQ", "review_id": "Z42extHuqdmAmz4oDZHLRw", "stars": 5, "date": "2011-08-10", "text": "This place is delicious. Great food and when they cook in front of you they do a lot of cool tricks and stuff. I would eat there everyday if I could afford it.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "m7LcZ5Zy4JDXFlAfh3MpVg", "review_id": "2YxrR_7qbybqihZB7hmBnQ", "stars": 5, "date": "2012-07-10", "text": "We love 5th and Wine and recommend it to anyone that asks, the appetizers and wine specials for Happy Hour are some of the best in town. Let's start off with the fact that every glass of wine on the wine list, that's right every glass, is just $5 during Happy Hour from 3 - 6 pm.\n\nDid someone mention appetizers? Yep, 5th has you covered there too. Ever tried Fried Pickles? Love them! But I have to admit it took some convincing to win us over... thanks Scott! The fried pickles are thinly cut, fried to perfection and served with a creamy horseradish sauce for dipping.\n\nBut what 5th and Wine is really known for at Happy Hour is their Bruchetta. They have 6 types to try but may we recommend this selection of our favorites: Apple and Brie; Tomato, Basil and Mozzarella; and the Steak and Horseradish. It's a great threesome! As someone mentioned last night, the bread is not too hard, very flavorful and toasted just right.\n\nRead the entire review here... http://schmoozeaz.com/blog/?p=680", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XFLeKAsj3UKv5VPoIQjdIw", "review_id": "13UqIbfFeVpu4MahABxbrA", "stars": 3, "date": "2012-08-12", "text": "This was one of my favorite places to get take out pizza and salad from on a weekly basis. \nUnfortunately, it looks like they have closed their doors. I have tried calling for the past week and no one answers the phone. I finally drove past the location and there is a note on the door stating they did not fulfill their rent payments. I am only giving this place a 3 star because of utter disappointment, otherwise the food earns 5 stars!\nThe Gluten Free cheese pizza was the best gluten free pizza I had ever tasted. They used a thin rice crust with organic tomato sauce and low fat mozzarella cheese. The place was small inside and lacked much ambiance, but made for a great delivery/ to-go restaurant. \n\nI will miss you Z Pizza!", "type": "review", "business_id": "MagW3D2UDQaP6KHzhauUHw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "XwBwRIFEaWjT25bQew911Q", "review_id": "tTYPCGbGhqm5keMpAIGcFQ", "stars": 4, "date": "2010-04-14", "text": "I drove by last night and noticed the sign and decided I needed to check it out. So I stopped by for a late lunch and was the only one in the place which made for some nice time to chat with the owner and her mother, who was the one whipping up the great food in the kitchen. \n\nThey've only been open since February and had relied on fliers and the painted signs on the windows to attract customers. While I was there, supremely enjoying the chicken curry roti, a few other people came in because they drove by and saw the sign. \n\nI couldn't decide between the jerk chicken or the curry for my roti, so I was given samples of both. I thought the jerk chicken was a little too hot for me, but the curry still was able to clear out my sinuses. Wow - slow burn! I was told they could tone down the heat upon request. I'm not sure I'd want to ruin the experience, though. \n\nThe menu looked interesting - goat curry, oxtail - along with the jerk and the curry options. I opted for the guava nectar to drink (so yummy!). \n\nThis is in my neighborhood so I'll definitely be back to try some more. The atmosphere was comfortable and I was encouraged to linger longer, but I needed to get on with my day. The food and the music piped in made me feel like I took a mini-vacation. Nice.", "type": "review", "business_id": "Tsff0UUVgrnawjI_xd2cKg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CWQOBs0qw58tahumYRBREA", "review_id": "CvBZufPp_CPUn4j1FLyhDw", "stars": 5, "date": "2011-01-08", "text": "very wonderful and romantic place to take your loved one :)", "type": "review", "business_id": "UHh2br86pxndWXELC6B8Cw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "180RmODjWMOtR1p93pXZWQ", "review_id": "mP_gWmLRN2TL1s9eTy1Wrg", "stars": 4, "date": "2011-02-02", "text": "Just happened to be in the neighborhood when we saw this BBQ place. The pulled pork and beef did not disappoint. The sandwiches can be called 'hardy' portions on large buns. The sauce was excellent. The place is very clean. Very good service. Was not impressed with the coleslaw - seemed flat. Will return as the high ratings of this establishment are well deserved.", "type": "review", "business_id": "39oUcXr-06fcfT_MZ94z-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2OA7gcQBejOKVKYMkRiQxA", "review_id": "oZteRs30KjcjDhRTHKInag", "stars": 3, "date": "2011-02-01", "text": "Had lunch here a couple of days ago. \n\nPlace was dead. Only one other table had people at it. Service was quick. Reuben sandwich I ordered was delivered promptly. Meat was tasty but not exactly plentiful (I'm used to a New York style Reuben - with loads of meat). Potato salad that came with the sandwich was very good, a pleasant surprise. \n\nOutdoor seating was nice, though the birds did get tiresome. Place seemed clean. Plenty of seats. Upstairs deck area would be great in the evening. Seems like it would be a much more fun place with a group of people for happy hour or dinner than it was for lunch. \n\nBottom line - it was okay. Not bad, not great. I'd give it another try but I wouldn't go out of my way to eat there again.", "type": "review", "business_id": "z6vO1HR8L2iW4avr610XKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "omqQIRpS0sh6lMpvuqcT_g", "stars": 3, "date": "2011-05-23", "text": "Yes, as the other reviewers have stated, there are always extremely long lines and surly attendants at this location. However, they have two automated machines where you can do almost everything you need to do without interacting with a human at all. The machines are super easy to use and you can pay by credit card and it just prints out your label. Not all post offices have these so it is a definite plus.\n\nAlso, if you have pre-paid envelopes or just regular stamped letters, there is a drive thru when you pull into the parking lot where you can go and just drop them in the boxes without even getting out of the car. I know that you could take these items anywhere but I have found that they get where they are going at least a day faster by dropping them at this post office since it is the main sorting facility for our zip code. Very important when you are a Netflix addict.", "type": "review", "business_id": "3H0K9sqjyjx5TUremCh9sw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "7cR92zkDv4W3kqzii6axvg", "review_id": "Ce7p7Lr2YqbJ5sHohJ0vgw", "stars": 5, "date": "2010-09-04", "text": "I dropped in to @SweetRepublic, finally, because they tweeted about their Chocolate Guinness, and a limited edition Jameson Irish Cream.\n\nI have had their ice cream in the past, both from the truck, and at other events, and was already a fan.\n\nNow, I'm fanatical.\n\nThe Jameson was amazingly good! I couldn't believe how well the flavor was represented, without having the harshness of the alcohol bite.\n\nBut the Chocolate Guinness won the day. It was so good, I ordered a pint to take home. (Unexplainably, it is still in the freezer. I will remedy that today!)\n\nThe location is right by my work, so I anticipate returning, again and again.\n\nJan and Helen are wonderful girls, and they have created something truly amazing. I congratulate them, and look forward to more of their creations.\n\nAnd their commitment to using local ingredients makes me happy to spend my money there, rather than a chain, who doesn't concern themselves with the area.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "4Ve2VD_MkSl1GrHU0i9QtA", "stars": 4, "date": "2010-03-03", "text": "This review is slightly bias, seeing that I was in the press box. This park is very nice. Has ample parking and a ton of restaurants in the area for before or after the games. The food in the stadium is typical overpriced stadium food. I had the chicken teriyaki bowl for $7. The vendors are comical (you will hear the lemonade guy from across the stadium). I'd definitely see another game here in the future.", "type": "review", "business_id": "oajNY_oTIMb7YZsor7Xonw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "AnH84g9V10x41CXmCvcaFg", "review_id": "nbPr6ai8cZA2zM1_HMplNg", "stars": 4, "date": "2009-04-13", "text": "Tradition at it's most... er.... um.... traditional. Every time i eat here i feel like i have been transported to any number of old family owned steakhouses on the North Shore of Long Island, or Brooklyn. The plush red velvet, the dark wood and button tufted leather... The place just screams STUFFY BUSINESS LUNCH. My first experience here was with a bunch of lawyer friends who were dying for meatloaf or a steak with creamed spinach... \n\nThe entrance is through the kitchen. That may seem a little odd, but I'd bet it sells dinners. Who can resist the wonderful aroma. By the time you reach your table, you crave rare beef, as red as the decor. \n\nIt's the kind of place where you forgo the trendy drinks and have a Scotch with a splash,or a Rob Roy before dinner. The steaks are perfectly prepared, the garlic mashed potatoes are wonderful. I love the place. It isn't cheap, and admittedly, i have never paid for my own meal there. It has always been a treat from some friend who wears a suit to work, or some more traditional back easterner who wants to share their bit of meat and potato lovers heaven.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "aDBncnQvoMB9jh7_kFpBEA", "stars": 3, "date": "2009-03-18", "text": "I've got alot of nice and not-so-nice things to say about Phoenix's latest venture into building serious public transportation.\n\nNice Thing #1: Mainly because it's new, the cars are really clean. After living in LA and using the metro subway there, anything seems cleaner than that. Let's just hope they keep up the cleanliness of the light rail in the years to come.\n\nNice Thing #2: It gets me from A to B with little to no problems. It gets the job done. Also, it's one of Phoenix's more serious efforts at going green, so it's worth backing.\n\nNice Thing #3: All of the current downtown stops are well thought out. Once you step off, something is always walking distance.\n\nNice Thing #4: The price of the all-day pass is worth it.\n\nNice Thing #5: Unlike public transportation in LA, the light rail is generally on time and makes for a reliable means of getting around. There don't seem to be any car companies that are trying to choke-hold the city by shutting any stations down like they did in the 30's in LA.\n\nThe cons...\n\nBad Thing #1: The only logic in taking the light rail is that it's essentially a car you don't have to park or fill up on gas. It's not that it's slow, but it really only goes slightly faster than the cars driving next to it in the street. Part of the sluggishness of the light rail stems from the fact that it has to stop at traffic lights like the cars you decided not to drive. I think the smarter idea would've been to build the light rail above or under ground so it could have gone faster and not have to stop at lights or risk the chance of some idiot gunning it and T-boning one of the passenger cars.\n\nBad Thing #2: I know this experiment is still in its training wheels stage, but I really wish that they would build a line that would go to North Phoenix, Scottsdale, or Glendale. I've heard that they are planning a Glendale route, but that's probably going to take another ten years. Even though I live a few blocks from one of the stops, I really wish I wasn't limited to downtown, Tempe, or Mesa.\n\nBad Thing #3: No airport stop? I mean, there is, but you have to take a shuttle to the actual airport. Why not just build a stop there? It would make more sense.\n\nBad thing #4: Why does this thing shut off at 11? Is Phoenix trying to kill any chance of building a real nightlife downtown? We're not children. This city shouldn't set a curfew before midnight on this.\n\nIn all, the Valley Metro Rail is more yay than nay. It's got its kinks that it still needs to work out and it's kinda tough to judge something that's in what I hope is a very nascent form of what it will eventually become.", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qQb4pg5uqvjMOfGPWbIkeQ", "review_id": "vLaaLlE6El0KX5Y6sX3e4A", "stars": 3, "date": "2011-06-23", "text": "For some reason this reminds me a bit of Dukes in Waikiki. Food is OK, not bad, not good either. Service is OK, not bad, not good. The best part about this place is that they don't have a cover and its easy to get into. Its good for a beer on a pub crawl or to sober up for a couple of hours b4 2am. One of my coworkers literally drops $100's here per week and I don't think hes ever gotten a free beer. I think that says something about the place.", "type": "review", "business_id": "sDozh6iTylTJD26d7xcgGw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "-4-15pK-d5DDHPE-jrKDKQ", "stars": 2, "date": "2012-02-25", "text": "dragged my husband here because the menu online lists a particular kind of spring roll that i love. and when we show up, the menu was TOTALLY different. \n\nthis place is geared toward your typical Arizona-white crowd. it's pretty watered down Viet food, and was sorely disappointing. and expensive. boo. go across the street to Mekong if you prefer better tasting, more authentic Viet food.", "type": "review", "business_id": "CMTDZRDnv_O0rwAvRVbjvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DY-U7c0451pUs25p_AhUgQ", "review_id": "V29jf17QMpsTCr2yBMxgZA", "stars": 4, "date": "2011-03-10", "text": "Love this place! Been going to this location for years. The food is always great and the price isn't too bad either. The only thing I would say is a con is the service. You never know what kind of mood the server will be in or if they will be attentive or not. This place is delicious if you're looking for steak, or seafood, burgers, etc.", "type": "review", "business_id": "gQjTs4BDNYSu9oJhkEsssw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X53WpXH8f6e7Y4W3LRogTw", "review_id": "p4Y4XgdRE9dxGWx_xDJRxA", "stars": 3, "date": "2010-04-11", "text": "A decent southwestern restaurant if you have a hankering for it. The margarita was good and the Taos combo was also good. The service was attentive and bumped this up to a three star review. Otherwise, the food is good not great.", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "y00oZaBgHET4IY0VfOw4SA", "review_id": "5T4UC5mZWTq8JS8UTTiBiw", "stars": 5, "date": "2012-08-07", "text": "Tasty fair trade organic coffee and breakfast and lunch.\nEven have almond milk! \nExcellent choices.\nSuper nice people.\nComfortable space.\nLet's help support these independent shops who exude caring, quality and individuality to thrive in our community!", "type": "review", "business_id": "yHbDcduBtCi43JpfdScC6Q"} +{"votes": {"funny": 0, "useful": 6, "cool": 1}, "user_id": "Wy7f9DOuBEOenhnA7KIKoQ", "review_id": "QI-IdMppjmKgfm_ZxUSv2Q", "stars": 2, "date": "2008-06-15", "text": "We chose this place for breakfast this morning because of the wonderful reviews on yelp. I was certain it was going to be one of my new favorite places. \n\nWe entered into a brightly painted orange restaurant and stood at the hostess stand for a few minutes waiting for the hostess to finish flirting with the server and notice us. She clearly didn't want to be there and could care less where we sat, so opted for the table in the window. \n\nWe sat and waited and waited and waited. Tables that were sat after us already had their drinks and they were not busy. Finally I tried to get the attention of the hostess who was standing half asleep at the hostess stand, mouth open wide, eyes half closed. A few minutes later we finally had a server.\n\nOur server was not very friendly. I don't even think she said good morning. We ordered. Tables sat after us already got their food and we finally got our drinks. She bought out 2 cups of coffee, but I did not order coffee so I made her take that back. \n\nOur food finally arrived. We ordered french toast which came with strawberries, bananas and a cinnamon sauce, eggs benedict with crab cakes and two orders of country potatoes. \n\nBreakfast was pretty good. I enjoyed my crab cake and the cinnamon sauce on the french toast was a nice added touch. The potatoes were not good, they had WAY too much pepper on them, I couldn't even eat them. Gary ate a few of his after he drowned them in ketchup.\n\nWe never saw our server again. We got a water refilled after we finished our meal. AND THE WAIT BEGAN. We waited and waited and waited for our check. Tables that were sat when we finished eating had already finished their food. We never saw our waitress. I guess we were her only table, if not I felt bad for her other tables as well. \n\nFinally some guy brought us our check and tried to drop it off and run, I said WAIT and gave him my card and said, \"If I don't give this to you now it may be 20 more minutes before we see someone again\"\n\nBecause I didn't look at the bill first when he brought it back I didn't notice until after I paid that they charged me $12.05 for the eggs benedict when their menu actually said $10.50. I didn't say anything... I just left a sad tip.\n\nWe were there for OVER an hour, they had lots of empty tables, and we only saw our server once.\n\nGary and I always over tip, because he and his family owned restaurants in the Valley for 35 years. He has spent a lot of time being a chef and serving tables. We know that when food comes out wrong, it's probably not the servers fault, and things happen, so we still tip well. TODAY, I felt like we were invisible and I have no idea where our server disappeared to for the hour. \n\nWe drove by Over Easy, La Grande Orange and IHOP to try this place. We probably will not be back... unless we decide to give it a second try on jazz night... I do love jazz.", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "dH9FRHSZwlhLLamaZSFdGQ", "review_id": "cNtGNPsZiAYmqzSA5fDfJw", "stars": 5, "date": "2008-06-21", "text": "The Great Indoors is a phenomenal place to get lost and dream about what you would like to have your home look like. WARNING!!! You will want to spend money!\n\nOn average their prices are pretty run of the mill dept. store style, it is their selection that is amazing. They have far more selection than any other store I have ever been to. The store is also well organized and laid out and everything is easy to find.\n\nOne final note, while not a place for extreme bargain hunters if you play your cards right you can get some great deals. I just purchased all of our appliances for our home at a 20% discount. Again, not the best discount I have seen but getting them all at once, not having to look around, and still getting $2 back for every $10 I spend is pretty darn nice!\n\nOh and if you need appliances, ask for Andy/Andrew... He is a great help and honest as can be!", "type": "review", "business_id": "viQLBKFtCQkPykFUulVeuw"} +{"votes": {"funny": 2, "useful": 7, "cool": 3}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "e_JFgj3gljVvzpI_3e4jeA", "stars": 2, "date": "2010-10-23", "text": "7/07/10\n\nDon't get me wrong, I still love JFG; I just didn't care for its BBQ pulled pork sandwich and fries. The coleslaw was good, but not so fantastic that it's worth the pain after. I thought that the pork had too much of the cloyingly-sweet sauce. Wasn't so sweet when paired w/ the garlic toast points. However, if you look at the included photo, you'll see that the two pieces of bread were under the pork, and therefore completely saturated w/ sauce. I like accompanying bread to be crispy/crusty (love that crunch!), so all I had to enjoy that afternoon w/ the pork was the part that stuck out from under all that sauced meat! What a waste (tsk, tsk)! The boat of fries was just a complete soggy mess. I should've asked them to sub sweet potato fries instead, but why must I pay extra to get a perfectly crisped product? Then again, one (wo)man's treasure is another (wo)man's trash, and vice-versa, eh?\n\nToday wasn't a great day for me w/ regards to Mr. Johnston's two restaurants (see my \"recent\" Coffee Shop review). I hope my next visit to a Johnston concept yields a happier adventure!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RT6sRtEXqk1_NHaQyo3n-Q", "review_id": "AYHsbR_qBw2gYLhGFo0J3Q", "stars": 5, "date": "2012-01-21", "text": "Lots of awesome stores! Expensive and normal price...it is an indoor mall. Has Starbucks and a Tiffanys...my two favorites!", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sHeD1MXfvJsLSOd9vwQyBQ", "review_id": "ViHcQIWk4G4U1aYe9_uEAA", "stars": 4, "date": "2012-04-27", "text": "Your Mexican grammaw won't necessarily jump up and\ndown screaming \"\u00a1Muy Aut\u00e9ntico!\" but this place still\ndelivers. Standard Mexican fare with pretty decent\nservice. If you check-in on Yelp, you get a 5 dollar\noff your meal coupon. I really like the hot sauce that\ncomes with the chips and salsa. Spicy and very flavorful.\nAnd the Mango Margaritas - nice and stiff. Their entrees\nare good especially the enchiladas. And I usually get\na side of the calabacitas. They're open till 11pm on\nFridays and Saturdays which is usually when I actually\nmake it over here. A late dinner after some event. \nParking is always good since it's a mall.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tVoCVBUg-ubBMLQlX5_SVQ", "review_id": "TAPrmPQlPwurWIkNXW-yjQ", "stars": 4, "date": "2011-11-14", "text": "Great location and within walking distance to Scottsdale and old Scottsdale. Really well maintained and bed / pillow were the most comfy ever! We typically stayed at another resort but this was a great substitute. They allow pets in many rooms so request a non-pet room if you wish.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "PqYFEM5fDDJmlxuVFB87Kw", "review_id": "HmkQwFSrUADN-_uIYFc2vw", "stars": 5, "date": "2011-12-30", "text": "New owners are awesome!!!!! Good people, earnest in providing a great product with great service. The restaurant is beautiful too. My mouth starts watering right when I walk in the door. Go check them out!!!!", "type": "review", "business_id": "m3EKlucZuwnOazLrRfnWaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pU-c4d5koLUBJuBFKPgNVA", "review_id": "clOq6ZQZ86cEVB8NehwEFA", "stars": 5, "date": "2011-08-05", "text": "Another excellent find in Scottsdale. The service is wonderful and the food is extremely flavorful with good size portions. The sea scallops and herb chicken are highly recommended.", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HGE4YopYFGShFdri7KSMZw", "review_id": "hWgdMLGlo-TrbZ8r0yBqrg", "stars": 4, "date": "2012-03-20", "text": "Three words: THAI. TUNA. ROLL.\nGet it. You won't be disappointed. \n\nIn addition, the California and the Mango Salmon Rolls were quite good as well. While Arizona isn't a place known for stand-out sushi, I'd order it here again. And in fact I did...two nights in a row. \n\nNight #1 - The bartender was a superb professional. He replaced drink napkins when they were damp and even poured my martini into a fresh cold glass when I was half-way done. Class act. He was also the one who recommended the Thai Tuna Roll which adds even more points to his score, if possible. \n\nNight #2 - CRANKY bartender. While she recommended a nice glass of white wine, she poured me a totally different one the second time. While it was St Patrick's Day, it's not like this place was packed out with annoying patrons so I'm not sure what put her in such a bad place. It did leave me with a not-so-happy feeling when I left, despite the fact that the food was just as good as the first go-around. \n\nSo, what could be the only gripes aside from the attitude? \n* You will pay a chunk of change for your meal here (but it will likely be worth it) \n* You will also likely order something that they're out of (mango salmon roll the first night, grilled artichoke the second night, and every night I've ever gone to a Hillstone, for that matter)\n* It's a chain\n\nBottom line is that Hillstone is probably one of the better options in this neck of the woods. Go for a cocktail and a Thai Tuna Roll, if nothing else.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "DAWL7CwwtDGD6gWYnN12gA", "stars": 4, "date": "2010-03-01", "text": "I'll admit I almost fell outta my chair after hitting a triple-double on the Malibu. Quite generous pours plus delish menu. Can't wait to go back and try out the dance floor!!! Did I mention the Disco Ball?? Yeah, baby!", "type": "review", "business_id": "4juYmq_YpvdV8HZ1r0AWBw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LRsjo7Heg4bFyMZvO9iQTg", "review_id": "ZRZVAFuQhcv3QehJbXonjg", "stars": 5, "date": "2009-04-18", "text": "Absolutely fabulous espresso place! The owner and staff are gracious and friendly, but most importantly they get coffee! I didn't have to explain how to make an espresso macchiato -- they just made it perfectly! I'll be here every time I visit Chandler!", "type": "review", "business_id": "106JT5p8e8Chtd0CZpcARw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cFC35FulkCpmFlVrhK8iHw", "review_id": "fea33yfza5FNl-XSy0AC6Q", "stars": 4, "date": "2006-02-09", "text": "This restaurant reminds more of Hong Kong (where I lived for a couple of years as a college exchange student many years ago) than any place in Arizona. The atmosphere is definitely not upscale (more like some of the Long Wongs in PHX), and may be a bit of a culture shock to some, which is why I don't recommend it for everyone (4 instead of 5 stars). The food, however, is very authentic, though they don't always have the exact ingredients that you would find in Hong Kong. The dry flat rice noodles (ho fun) is among my all-time favorite Hong Kong dishes, and this place does it right. The clay pot dishes are also worth a try - really good. (Among the Chinese restaurants that I have tried in Phoenix, the Gourmet House of Hong Kong is #2. Number 1 is the Great Wall, which I review elsewhere.)", "type": "review", "business_id": "ykfTh6HI219NoMsWBxulxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "1FgCza2RBq_XHfAipWOXiw", "stars": 4, "date": "2010-04-07", "text": "I still have no idea what this place is. I only know that my dog needed some pills to treat his valley fever and for some reason the vet didn't carry them so I was sent here.\n\nThe whole process is pretty painless and I think their drugs are priced reasonably. They will also hand deliver the medication the same day if you ask nicely.\n\nPro Tip: When you call, don't hang up right away when you get the recorded message. When you stay on the line it will begin to ring again and someone may answer. I thought the recorded message was an answering machine and hung up prematurely a few times. Also, sometimes the line just rings and rings and rings. Be patient and someone will probably pick up.", "type": "review", "business_id": "nL2bJRBPzGCOacqMzQ83UQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 3}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "H54TDc1pXQIr4OydGRAmaQ", "stars": 2, "date": "2009-01-20", "text": "Bizarre. My family of 5 came here for lunch one day, to see what all the hype is about - and boy did Hana fall FLAT! I personally had no expectations and Hana still missed them. \n\nBefore seating us at a LARGE table (there's maybe 10 tables in this joint), this obviously inexperienced hostess first looked unsure of where she should seat us (the table for 2 or for 4?) She then proceeded to rearrange the table for 4, and moved ALL of the chairs around the table to add 1, instead of just adding it to the empty space on the end of the table.... odd.\n\nAnd then our waitress.... was really abrupt and ungracious about things. My sister's accompanying salad was half covered in lettuce rust - and when she showed the waitress, all she said was \"so do you want it?\" Uhm, no thank you, I like my food fresh, not rotten, but thanks.\n\nThe sushi was pretty much the same thing covered in different sauces. Annnd they were pricey. it was kinda sorta really unbelievably ridiculous. RIDICULOUS, i tell you! Not worth it. No way. I'm quite sure that the \"crab\" was imitation. And the fish wasn't even that fresh. Granted, we're in the middle of a desert, but still. \n\nThe one redeeming quality of this place? The ramen. Although there were about 10 noodles in it, the pork was perfectly cooked. And it would have been nice if the chef had been a little less stingy with the ramen noodles. \n\nWould I come back? Uhm.... only if I had no choice and was craving ramen. But for sushi? Save your money, go to Yen and get muuuuch better quality AND quantity.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "I_Y47QFSdnZwZuN6IygWwQ", "review_id": "xcH0rhqObozrlZT0YoFHDQ", "stars": 1, "date": "2012-05-10", "text": "What a crap airline! If I could give them zero stars I would. I flew from Phoenix to Denver to New Orleans. The check-in people, gate staff and flight attendants were rude and abrupt, the flights ALL left at least 45 minutes late, it was the worst flying experience I've had. I was fortunate thta my Denver back to Phoenix leg was US Airways...never thought I'd say \"Thank you US Airwarys\" for at least that part of the flight not being a nightmare! I will never fly United again!", "type": "review", "business_id": "BNz5p488useb6HszpEUUVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_Fxrn9P_nvvIY4JCvD5tOw", "review_id": "jGXtsPnaEdJBZNw0-wo5oQ", "stars": 4, "date": "2010-09-04", "text": "Love this place! Nestled in the side of the mountain, The Four Seasons is what you would expect from their properties. Smiling and friendly faces, exceptional service, a beautiful pool area and an atmosphere to help you relax. \nWhile both the restaurant and banquet food was good, it was not 5 Star. For these prices, it should be. Don't get me wrong, it was very good. Just not great. The lobby bar, Onyx, is small but get's hopping and is a welcome retreat from relaxation when you need some fun strangers to talk with. \nHaving stayed here twice and visiting friends for cocktails on their patios, I can tell you the rooms varied greatly from huge to average in size. Some with lap pools and patios while others had private decks up against the hills. \nThe wonderful smell of chiminea burning along the paths add to a delightful get-a-way. I highly suggest this resort if you are in the mood to relax. It's not near much so you won't be tempted to do anything. And that's my idea of a vacation.", "type": "review", "business_id": "QniH_NAABATeAx45mQ4ESQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "Nh5yVahzm1onr3FdLhk6xg", "stars": 5, "date": "2007-08-02", "text": "This is one of my favorite theaters.\n\nWith that said, I suggest you prepare yourself for having to wade through an onslaught of pre-teen cliques if you plan on making your way to the ticket counter on a Friday or Saturday evening.\n\nIf you're like me, safety is a concern. Not to worry here. I've always seen an officer on premises during the main drop-the-kids-off / pick-the-kids-up window.\n\nThis location still has a new feeling to it, and it is clean and cool. Nice cushy seats with cup holders, and I have yet to hear the soles of my shoes stick to the floor as I walk down an aisle.\n\nMy favorite seats are the ones with the railing in front. A place to perch my feet.\n\n-Swoop", "type": "review", "business_id": "dv5gSsbRtTatsBRcKLq4Kg"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "gSc3pwGVSiCtGKDTuvNQCg", "stars": 4, "date": "2009-02-17", "text": "Decided to go for Round 2 for a light dinner this time. I found the food and service to be superior to our last experience.\n\nThe husband and I shared the mini mushroom pan fry, and I see why it is their signature dish. It was so good that I will not be sharing next time. We also had the dungeness crab stack. This is pricey ($20) for a small plate, but it was fabulous. We had the cuppa' red hot chocolate to finish. It was a to-die-for dessert. A chocolate pot de creme (custard) with chipotle crema and a chocolate chipotle cookie. Spicy, rich, decadent, all good things.\n\nOur server was excellent from start to finish. This time I am confident we will return, just maybe not at lunch.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xh2rvaC4efORz7CjroS_eg", "review_id": "iOCnbGtRTC2kIxPLUVA51w", "stars": 3, "date": "2012-05-29", "text": "Oh, Sushi Brokers...what happened to you?! This used to be my go-to place for great ambience and delish sushi. We ate there Friday night for the first time in a long time and they have significantly raised their prices and the sushi was subpar at best! $90 for 3 rolls and 3 cocktails. Grrrr....frustrating!", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "72OdAJ2eQYecT91OdJXyfQ", "review_id": "9yJIZzHXFjjDlFkrFeW-0w", "stars": 5, "date": "2007-11-08", "text": "This place is a bit difficult to find granted but well worth the effort. If you're shopping down at the farmer's market, need a place to study, or just want to plop down with a good book, Fair Trade will caffeinate you as well as feed you such tasties as quiches, stuffed croissants, cookies, bagels, and sandwiches. \n\nThe cafe was run by the church up until Julyish in answer to Mr. K's musing but they've been bought by a few of the regular customers and are enjoying a slow but steady revitalization along with a steady extension of hours. They're also hopefully expanding they're menus to include more food food items as volume picks up. \n\nAdditionally, they offer only fair trade coffee and teas so you can do your part to help fair trade just by sipping at a cup of coffee.", "type": "review", "business_id": "2FudHUhV9U54dm0S1ePuCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CE9WVIc83P-F1S0ZRF-Tfw", "review_id": "SN3RMkWl7zBdMTXzRqnTIA", "stars": 5, "date": "2010-12-26", "text": "These are absolutely my favorite donuts in the whole wide world!!! No offense to those Krispy Kreme lovers out there but I think Lamar's has them beat! \n\nTheir donuts are always so fresh and delicious! My absolute favorite is the chocolate iced cake donut with m&m's. Just thinking about them is making me salivate! ;-)!! \n\nI suggest getting there earlier rather than later because sometimes they sell out of certain varieties.", "type": "review", "business_id": "XfgU_1_X8eVX8_CqofAeIQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KmTWM15sTkK0HfzEzjbTUA", "review_id": "uQ75X7MyxiJsKye7jd9E1Q", "stars": 5, "date": "2012-06-27", "text": "This is definitely not your typical run of the mill nightclub. \n\nFirst off, let me mention that the decor is gothic cathedral style complete with erotic art, bright lights, and a chandelier over the bar. There is a unisex bathroom that is very clean and surprisingly never awkward. The music on Saturday nights for Doom Disco is an amaazing mix of old and new (think Joy Division and She Wants Revenge). Plus, the bartenders can make a mean gin and tonic and they have a pretty well stocked bar for any other drinks you might fancy. \n\nTip: Doom Disco also has a Facebook page where they post pictures and the playlist from the Saturday before. Check it out!\n\nOverall, it's 100% worth the drive and $5 cover", "type": "review", "business_id": "8u4K8hAiSF9lBqN76LvOJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_ZXThWhgLL94mAXOntLDXA", "review_id": "4mjNx2hgXRBw1dqD5Lv1ow", "stars": 3, "date": "2010-11-08", "text": "Very small selection. I am used to seeing a larger inventory of fine dresses and only found one that was nice! I also felt like I was maneuvering through an obstacle course with all the people in there and the poor arrangement; this is a messy and busy store.", "type": "review", "business_id": "ORLTCEgKfdxMuGPhIc1O9Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "DV7z89n3cl2KubYFmRmdCw", "review_id": "AOVQib06pMJF89eCLW3KIw", "stars": 2, "date": "2012-01-11", "text": "Successfully blending the idea of bar food and airline food into one very disappointing meal. A poor choice for breakfast due to mealy/watery eggs, cold potatoes and bland salsa. Even the grapefruit juice lacked flavor.", "type": "review", "business_id": "KoJ4jNSmqYbmKqcoh-2dNA"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "xjsIKyqLOqM8DyEhYh1IoA", "review_id": "Za-BEqNaFyFMYx4e_pAntw", "stars": 4, "date": "2010-04-01", "text": "I was a little skeptical when a coworker followed our bosses recommendation of this place for lunch last week; what does a suit know about Mexican food? \n\nOur party of 3 arrived at 1145, a tricky time for Friday lunch. We were promptly seated to a clean table and I noticed the other tables were also getting cleaned quickly. Having worked in the industry for several years, I notice this sort of stuff and appreciate a quickly bussed dining room. \n\nMost of the staff are Spanish speaking but my gringo lunch pals had no problem getting by with their Spanglish and innocent, pleading looks. \n\nI scanned the menu and quickly spotted the \"home make corn tortillas\" for the quesadillas. I asked the server and she confirmed that this was only for the Estilo del Rey quesadillas. I'm a sucker for anything made in house- sign me up! She also guided me away from the pork and told me to get the chicken because it was better. I love having an interaction with someone who actually knows what they're talking about, so much better than a doe-eyed or aloof server saying \"everything is good\". \n\nWhen my plate arrived, I was really impressed with the presentation. The quesadilla took up half the plate, it was drizzled with crema, sprinkled with queso fresco, fresh cilantro and diced onion. It was served with a side of shredded iceberg and some lime wedges. I'm a firm believer in meaningful condiments, so if it comes with wedges dammit I'm using all of them. \n\nI juiced the limes and went to town. The steaming hot shredded chicken was perfectly cooked, sauteed with onions, spices and dressed with just the right amount of red chili. Slight warning- this is a little spicy but I would rate it close to a Valentino or Cholula-level. \n\nCoworker #1 got the Asada plate; the meat was bland and the beans were a little too creamy for my liking. I quickly apologized to my quesadilla for straying. Coworker #2 is a fellow foodie and had the shrimp tacos. She was protecting her plate like a mother bear over a cub so I knew better and thought, \"next time\". \n\nI've since been back and tried desperately to look at something else on the menu but the chicken quesadilla Estilo del Rey kept beckoning to me. Soon my love, we will reunite...\n\noh- and the suit got mad street cred...", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5MbsgK5qo1BODknrDLN49g", "review_id": "-WfSl2m3YB_M5yjHpmwbfg", "stars": 3, "date": "2010-08-17", "text": "Okay, it's a nice place but I'm not sure I would drive out of my way to go here. I was in town on business staying nearby and thought I'd give them a try. The food was good, but not great. The shredded beef taco was typical and the shredded pork burrito tasted more like beef. The red chili sauce had an okay flavor but the heat level seemed to simply over power everything (and I like hot). The restaurant is very nice inside, very upscale. I guess if you wanted to spend alot for a Mexican dinner in a very nice setting this would be the place. Service was so so, maybe it was because I was a party of one. Whatever the reason, it wasn't a happening thing. Hey, at least the salsa was tasty.", "type": "review", "business_id": "qb1o61d_qrwEpxAm16dZCA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "5_JuHOYNL3skhzxZzPESSQ", "review_id": "rtRPHXhtXAz4cGooTShXNw", "stars": 4, "date": "2012-02-06", "text": "Stopped by for a quick bite on a Saturday afternoon. Did not realize that the place had just opened (or at it appeared that way). Quite crowded with patrons, a bubble machine, and a DJ. \n\nIt was bit loud with all the commotion, but still within reason. The menu is compact, but offered all the usual suspects. I went for the Pulled Pork sandwich with a side of cole slaw. I dumped the cole slaw on top of the pork and went to town on the sandwich. Meat was moist and smoky. The sauce had a hint of of kick. Very tasty.\n\nThe service was a bit slow, but the place was pretty much full up so I expected it to take a bit of time.\n\nGood joint. Would return.", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AdpQcQcRVNZdG_17p4V45Q", "review_id": "0HpAY9IumG80OG5wMHv-Mg", "stars": 2, "date": "2010-07-01", "text": "Was a bit dissapointed after reading reviews here! I had the fijitas, wife had tacos. Didnt think the inferno (green hatch chili)was all that hot!!!\nThe Taco meat was not spiced bland. Best part of the meal was the bean dip and chips even the salsa was nothing great!!! At least the beer was cold ut at 13.00 a pitcher it better be!!!", "type": "review", "business_id": "y6uO4ydAwBHUujfiSktxZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "60zEQkNgV_JqbbtgWhDewQ", "review_id": "qoZjFYmmKi_0u1ZvoAQ7bw", "stars": 4, "date": "2011-05-03", "text": "Amazing quesadillas !!!! I had the steak, mushroom, and cheese as recommended by our server and man was I impressed! They are not the standard kind that I am used to. Fried and covered in lettuce and green sauce. The al pastor burrito was so hot and tasty as well. This is now my new favorite cheap delicious mexican joint! I wish the salsas were better and didnt all light my mouth on fire but hey, the food is awesome anyway and didnt need the salsas.", "type": "review", "business_id": "SGwnJIFKGQcYzE2c3ebs8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "hCDZ1uedP9ij6ukbL2IgFg", "stars": 4, "date": "2007-03-09", "text": "Don't dog Old Navy. \n\nDespite a sub par and semi-annoying marketing campaign, clothes here are aight with me. \n\nAnd where else can you get a perfectly good pair of cargos and boardshorts for less than thrity bucks a pop? I'm no fashion snob, but I like to think I can generally distinguish \"awful\" from \"not awful\" in most cases. \n\nFor the \"not awful\" variety, Old Navy is dirt cheap and top notch.", "type": "review", "business_id": "FzruBSWLZnLK6QyDB6_jgA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A9PlVYW_PobkDF6ZskCpXQ", "review_id": "6Tamm8LPovhcvF_rVpGp_g", "stars": 3, "date": "2012-05-22", "text": "Contemporary atmosphere. Good range of Italian offerings. Attentive wait staff. Portions generous. Price reasonable. Food fine. \nI'd go again.", "type": "review", "business_id": "vfLog2bLJGl6hAFtGtr0GQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "-Dof9NwAoQwRM-GVPZk5zw", "review_id": "Mtgnj4dH9RE_zLGSTHyY2A", "stars": 5, "date": "2008-02-25", "text": "Definitely one of my new favorite restaurants!\n\nA friend and I went to lunch there last week and it was even better than I expected after reading the other reviews. The menu is EXTREMELY extensive. The b-fast all day long is a plus, but I wasn't in the mood for that this time so I stuck to the lunch menu. I ended up ordering the half sandwich and soup of the day and my friend and I split a side order of sweet potato fries. The eggplant and roasted veggie sandwich was really good, but huge and messy! I ended up eating a lot of bread and then eating the insides that fell out with a fork after wards. Delicious nonetheless. The homemade chicken noodle soup was outstanding! It had lots of other bits of veggies that are not traditionally in the soup (red pepper, green pepper, corn, etc.) and it added to the soup quite nicely. Did I forget to mention it's a GIGANTIC bowl of soup? There's no little cup o' soup here - come hungry! The fries were delicious although we didn't even need them since our meals were \"Hungry Man\" sized.\n\nSome side notes:\n\n1. Parking is awful for lunch. If you don't mind creepily stalking folks in the parking lot and possibly engaging in an altercation with another patron attempting to park, go ahead and give it the good ol' college try.\n\n2. I ordered a water with lemon. I received a water with no lemon. When I asked for some lemons for my water, they brought me out a small plate with SIX (yes, I really did say six) overgrown lemon wedges. I tried to come up with a scenario where one person would possibly have a need for one entire lemon on steroids. I couldn't come up with one. There is no reason for one person to be in possession of that much lemon. Period.\n\n3. We walked in and staff #1 seated us. Staff #2 took our order. Staff #3 brought our drinks and later the pile of lemons. Staff #4 brought our meal. Staff #5 cleared our plates. Staff #6 brought our check. Staff #3 took our check and brought the receipts/change back. Did it really take 6 people to get us through a weekday lunch? I was mostly entertained by it - it almost became a game of \"who will show up next and what is their task?\" It was still a little ridiculous.\n\n4. Being a semi-health conscious diner, I loved that they had fat free dressings, made tuna salad with low fat mayo, and just had many, many more healthy options than the average restaurant. I appreciate places that can fix a good meal without drenching it in calories and fat. There are plenty of places to go for that sort of meal when you're in need. No shortage there. It's nice to have those options beyond the standard no dressing, burger wrapped in lettuce, or vegetable medley consisting of zucchini, carrots, and cauliflower. A big up for Taylor's.\n\n5. For a half sandwich with soup, half of the fries, tax, and tip I paid about $16. It's not the cheapest lunch in town, but it's worth what you pay for. Just remember that the portions are gargantuan so no need to order a lot of extras to fill you up.\n\nI will definitely be back again. Enjoy!", "type": "review", "business_id": "UxvOXcoCRFRAVhRB0D9imw"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "br7jwXG7TaWC1-vrZxResg", "review_id": "xRtA2zv-T6mW8_C2cwZLQQ", "stars": 4, "date": "2010-04-26", "text": "I'm from the East coast, so living in Arizona feels like living in the land that Chinese food forgot. George and Son's offers the closest thing to \"Chinese\" food that I have found in Arizona (yes I know this isn't real Chinese cuisine, just look at my picture). PF Changs is not Chinese food, and that is the best I have eaten before I came here. All the other Chinese food that I have found is full of MSG, and makes me sick.\n\nThe restaurant is cozy and relaxing, and the staff is very attentive. The sesame chicken is very good. I recommend asking for firecracker chicken. It is not on the menu, just ask for the firecracker pork, but with chicken. It has the right kick to it. I would NOT recommend the orange peal chicken. After eating 1/2 of my plate, I wan't to swear off anything orange for a month. I guess I needed something less sweet with a more varying taste. \n\nLast time I went in, I had the three amigos, which was very good. This is shrimp, chicken, and beef in a brown sauce, poured over a hot skillet plate at your table. I would recommend any of the three I mentioned.", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a3TmhiT7QRmz9LKEr289dg", "review_id": "U2oZJ7_JH1x0RFTaKCSMWQ", "stars": 5, "date": "2012-02-01", "text": "I went to Kens Nails on Tatum a couple weeks ago and finally found my go-to nail place! The staff was friendly and helpful and it's a nicely decorated spa. I went in to get a mani/pedi and was pleasantly surprised by the quality of service. Mandy was my manicurist and she was wonderful. I got the gel nail manicure which was only $30 and the spa pedi which was only $32 and amazing! I am looking forward to going back.", "type": "review", "business_id": "mwX2blq0CKRNPlISf2TlHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3-VtQSyS-if1_MTV7UZQSg", "review_id": "64jZGCvSlmdD1Nrcs1RMmQ", "stars": 2, "date": "2012-11-14", "text": "Only reason for the 2 stars is for the service. \nThe food was not very good at all. My dinner was hardshell taco's or something that consist of hardshell taco's but when they came out the shells were soggy and you couldn't eat them. \nThe drink specials were good and we had a very nice server.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "rajKDrIU87znme57bhS6EA", "stars": 4, "date": "2011-10-03", "text": "Still love their bagels and apparently I am not the only one since they won Phoenix New Times for Best Bagel (2011).", "type": "review", "business_id": "-hQ8iZygzi0iiTFUkHgiEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGYaT5sAuqKkd48dqX_2Kw", "review_id": "yguuDtXwCJuN78us8Krxzg", "stars": 4, "date": "2010-03-11", "text": "Great little sushi spot with a heck of an all-u-can eat deal. I like it. The staff is great, the food is great quality and the prices are fair. My only complaint: Nearly every time I leave Sushi Q I get hit up by the pan handlers working the liquor store next door. 4 stars for price, quality, and staff.", "type": "review", "business_id": "Bui7TEFaPwuZtW5QQg2oFQ"} +{"votes": {"funny": 6, "useful": 4, "cool": 1}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "Pm0Ekxcqaat1xDJ7nCUa8w", "stars": 1, "date": "2010-05-09", "text": "If I could give zero stars, I would. I have never spent more time looking for a bar than I have looking for this. And not like a cool underground dance club in L.A. When we finally found this sh*thole sandwiched between two vacant businesses, it was barely visible. The sign for it looked like it was written with a sharpie on a piece of cardboard and someone duct tapped a flashlight to it. Before we even entered the bar, as my friend and I were walking up two redneck bikers whispered, \"Fags\" as we walked by them. I don't think these were the kind of guys you argued with so I let it go. When we entered the bar I noticed several \"No firearms\" signs plastered on the walls. I'm assuming they've had a problem with this before. Remember that scene in the Blues Brothers where they go to the country bar and get the look of death from the patrons? That's how I felt. The decor of this bar was interesting. It looked as if they got the tables and chairs from an old 70s Vegas casino. The place is about the size of a small apartment's living room so getting a seat is pretty much impossible. We went to the bar to do some karaoke, but apparently they also sell crappy jewelry for some reason? Weird. I've also never heard so much cussing from karaoke singers. One of the drunken hicks actually got into a shouting match with one of the morbidly obese toothless tattooed bicker chicks where they argued who was the bitch and who was the pussy. Halfway through my beer, my friends showed up and they refused to go inside so I ran away and never looked back. TIP: If you go here wear a black leather jacket, bandana and Harley Davidson gear.", "type": "review", "business_id": "w-ghJKIBJwKy0E--GPgB9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CyQ0mP-q6cLWjgBBJt-J_g", "review_id": "RQk7bTm7CszRlbG4K6O0vQ", "stars": 4, "date": "2011-06-25", "text": "This is one of Scottsdale's new hot spots. If you like the 'Scottsdale' scene, this place is a must. Sunday the music goes off as Thomas James spins sic house beats and the bar serves up $2 tacos. On the weekends, it is still the hot new local spot so it is always busy. Fun place to go and usually there is great eye candy.", "type": "review", "business_id": "qiFTZ7aJz-FXt1wz8YigAA"} +{"votes": {"funny": 2, "useful": 6, "cool": 6}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "3TuFCvdWZdw06IZ1JgLjiQ", "stars": 3, "date": "2011-12-22", "text": "In my effort to live and love local, I try to show Bashas some love since they are a locally owned chain. Everything about this Bashas is just OK. The produce, inventory and service are all par but nothing stands out. I recently bought several baked goods from this Bashas for an event. I was on the hunt for sugar cookies that Santa's little elves could decorate during a shopping crawl. They didn't have any out, so I asked the lady behind the counter. She told me they had cookies in the back for a dollar a piece. This was too high for my budget so I politely declined. Then a couple minutes later, she came back and told me they were actually on sale and only $.50, so I decided to buy them. Coincidence that I said no to cookies for a $1 and then they became 50 cents, or just oversight by the employee? Who knows.... \n\nDuring my visit, I also purchased some donuts. I need two dozen donuts and unfortunately they don't have donuts by the dozen pre-made so I ended up making my own. While this is good because you can choose your own, I think it would also be helpful to have pre-made dozens for those in a huge hurry (like I was that day). \n\nIn summary, this Bashas is just OK, but I love supporting local so I will continue to shop here!", "type": "review", "business_id": "X2CvejXoxpIOr8j6O-gM7A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Zkn45PKSC3Lj-o_ZnK35yw", "review_id": "8_kApqXYlcHZ8tui7jY6pw", "stars": 4, "date": "2011-02-22", "text": "I'm glad that living in the southwest has benefits other than excessive use of cacti in home decor. One of those benefits is the food served at Z'Tejas, and I will gladly put up with any number of hanging serapes to get my hands on Tex-Mex. \n\nThis is what you need to order (no exceptions): \n\n1. Drinks: Chambord Margarita \n2. Appetizer: Cornbread (so moist!) \n3. Entree: Seafood Enchiladas \n4. Dessert: Berry Cobbler. \n\nYou will need to take a food coma after you have successfully finished all this food. But, and trust me on this one, you will finish it because everything they serve is addictive. I would have literally licked the cobbler pan if I was not in public. \n\nYour pants will be bursting to make up for the weight that your wallet loses over the course of this meal.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "fKYP2YKR5yp_cNHPzBxxKw", "review_id": "8L406qnMNTAYp-KG5facRQ", "stars": 5, "date": "2009-12-17", "text": "Having worked in the Scottsdale Airpark area going on 9 years or so, I've eaten lunch just about everywhere. There are plenty of good places, but not many ethnic places... Indian Paradise has the distinction of being both great and ethnic. I've only ever eaten there for the lunch buffet, and it is AMAZING!\n\nI keep thinking that I'm gonna be disappointed, eventually... But every single time I have dined here I have come away extremely satisfied and in dire need of a nap. I keep asking myself, how can it be so good? Is it cocaine? Cocaine in the food?! Is it?!\n\nThey have different buffet items on different days, but the the mainstay curry chicken remains a favorite of mine. On Friday there is a mushroom dish that I dream about... and on Thursday they have stuffed jalapenos that are a little hot but oh so gooooooood!\n\nBe sure to save some room for the rice pudding, 'cause it's delicious.", "type": "review", "business_id": "xEg0-xrQywU5K-WQO7cy0w"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "_ajr6Nkx59331w7xNs2atQ", "stars": 3, "date": "2010-03-09", "text": "Just so you are aware, phone calls are now 50 cents for 3 minutes. So proclaims the hand scrawled sign behind the bar next to the register. Even dive bars need a bit of order amongst the chaos.\n\nDucked in here for a cold one after walking the fest in Melrose, I'm just a sucker for a dive bar. Once my eyes adjusted to the darkness, I saw an amazing mix of people. Some almost hipsters, Indians and traditional barflys. \n\nThe Dos Equis was frosty and cheap, there was a back door for quick getaways or for smoking. Times truly are tough as I noticed on a trip to the men's room that three of the flys were passing around a hand made cigarette.", "type": "review", "business_id": "UAzZDOlg_Fp4-8YhHDpo2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EQYhCVLmAQLGwYUYPPSaaw", "review_id": "ZN6BQhy3-rw0-DVkTtwbDQ", "stars": 2, "date": "2009-05-14", "text": "I'd characterize myself as a Pho Ho (I know that doesn't rhyme) so this rating is going to be lower than what other people may thing simply because my standards for Pho are snobbishly high.\n\nA very cute place, the decor and ambiance seems built very much upon the words \"serenity\" and \"harmony\", which is great, but as you might tell with the tone of this post, comes off a little corny.\n\nThat said, the food here is not too bad. For lunch, it's a decently priced meal for a lot of grub.\n\nI got the Shrimp & Pork Spring Rolls and the Pho (which they call Beef Noodles I believe). \n\nMy first impression unfortunately when the app came out was that the Spring Rolls used iceberg lettuce instead of basil or mint or a more dark green leafy green. The iceberg lettuce gave the Spring Rolls a cheaper feel that I didn't really enjoy.\n\nThe Pho was better though they seemed quite stingy on the accoutrement, as I got two jalapeno slices and a sorry looking stem of basil. In addition, the thin slices of beef were definitely overcooked and tasted not unlike a sponge. But the noodles themselves were solid and the broth with a little Sriracha got my blood and tastebuds pumping.\n\nI don't know if I'll come back but I would say for lunch, this place is not a bad place to introduce somebody to Vietnamese food.", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "k1ACFw3wmqkNGoiGeNLc0w", "review_id": "BGM39lvi-bB_HQc_XR7DIg", "stars": 5, "date": "2009-03-09", "text": "NOCA... wow.\n\nHave you seen the outer limits show where the chef owns a device that when placed in a small room with a single person drives the person completely insane with fear but creates a liquid extract that adds complete and utter bliss to food. That liquid is then added to the restaurant's soup which is revered as the best soup in the word. Limit 1 bowl per person...?\n\nNOCA must have gotten their hands on this relic. Honestly. This has probably been the best dining experience of my life. Everything was delicious on its own, all together, or when combining just a few of the items on the plate. \n\nWalked in and our server seated us. They brought us an amuse-bouche that had a small amount of blue cheese, chorizo, and chives. Was delicious. Then bread was served. After that, our Bacon and Egg was served. This was phenomenal. A crispy perfectly poached egg with oh so tender pork belly....mmmm\n\nMy fiance ordered the butternut squash cannelloni and I ordered the duck. Both were amazing. The duck was so moist and tender but not greasy at all. We then were served cotton candy as we waiting on our 2 desserts to arrive. We had the donuts and the de-constructed cheesecake. I had an espresso and my fiance had the vanilla malted milk shake.\n\nAll of this was amazing. My fiance wasn't in the mood for wine, so I delved into the beer list and low and behold, 90 minute IPA from dogfish head.... NOCA, I love you.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "3FMdOQ2g9ANQgV33FtxW8A", "review_id": "M0cf_DYK_G3BsRssGFbueQ", "stars": 4, "date": "2009-10-27", "text": "Pros:\n1. Excellent service. Hell, it's damned right impeccable. \n2. Superclean and comfortable rooms.\n3. Excellent amenities and top notch spa.\n\nCons.\n1. J-Dubb's a little spendy on the cocktail side.\n2. KEEP THE POOL BAR OPEN LATER! MY GOD!!! I'd like to watch the sun set with a cocktail, rather than have the sidewalk rolled up around 5.", "type": "review", "business_id": "jPhmaY35qGP2qNc68viXPg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "pqVP8OW7KZM8OWHZ7QQ7lA", "stars": 5, "date": "2011-10-06", "text": "ALTERNATIVE!!\n\nThat's what this place is and in the land of BIG chains, this only could add some spice. We were welcomed here to the free screening of Dale and Tucker Vs Evil as part of a Yelp event. The personnel is totally committed to their project. \n\nIf you are looking some retro movies or the gender I don't enjoy (but others do - horror), this is a good alternative.", "type": "review", "business_id": "YzHtlphJ-5LDtJdNzKs7Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yAeo2D5NdtGuGG2o1M1aGQ", "review_id": "8XP6XkyiTn921bGG3vPnyQ", "stars": 3, "date": "2011-05-23", "text": "This is just like Filiberto's. Fast-food mexican food. It's really good and taste pretty authentic to me. My hubby and I stopped in for a quick bite to eat and we went there because he heard it was good from his co-workers. I'm a huge critic of mexican rice and beans and this place has it down. I got the lunch special of the day which was 2 bean tostadas with beans and rice. It was sooo much food and I was so stuffed! Next time I will get something smaller. You can't beat all that food for $5! They have a good salsa bar with all the fixings!", "type": "review", "business_id": "JobP0ghILdh8S8l-LhHHxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OlVMqrJbFsxLOrBzqtZYDw", "review_id": "N0OijRr_kkTo27mtErcSAQ", "stars": 5, "date": "2010-05-10", "text": "Dr. Lee does excellent work and he and the staff are very friendly and professional. The best dental care I have ever received and I have lived all over the country and grew up at the dentist with my bad teeth. They work very well with children also.", "type": "review", "business_id": "uGC6iRZ2f7WLAeaptZkQIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "59pVYStY0yKpRmODFIfDww", "review_id": "e8WoxocDwAMCItY6wf624Q", "stars": 3, "date": "2010-11-19", "text": "It's a Japanese fast food. I'm very impressed with the service, the owner spent some times to greet everyone. I ordered beef bowl teriyaki but the beef teriyaki is a lil bit over cooked and the smell of the burning beef just overwhelmed me. The Panko breaded fish plate is the one that I recommend to try. They also have the seaweed salad which I found good. And they also charged for the soda refill $.30", "type": "review", "business_id": "kaIue7GRCmkPzDeHDBTttQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "kMiQnYFmAYbjHyyIPGSwoA", "review_id": "kbCco06Ch_EznijXfp685Q", "stars": 4, "date": "2011-05-06", "text": "I'm not going to lie, Pizzeria Bianco's food was great. But 5-star worthy? Maybe not.\n\nI didn't mind the wait, mostly due to the fact that I had been mentally preparing myself for a few days (and I also ate a snack around my normal dinner time.) The hostesses and waitstaff were kind and helpful. \n\nBut when it comes down to it, I just didn't think the pizza was OH-MY-GOSH-WHAT-A-PIECE-OF-PIZZA good. I actually think my opinion might have been negatively tainted by the hype. It was built to such a crazy-high status; I don't think it would have been possible for any restaurant to live up to that. \n\nHowever, I do think that everyone in Phoenix should experience Pizzeria Bianco once. Plus, it is a great place to take out-of-towners or a date. It's just not somewhere that I would frequent regularly.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "thlVIc8s6ZCP37UGMf3yDA", "review_id": "lptwPddfIUQQgijD482Lhg", "stars": 2, "date": "2011-02-09", "text": "When I heard about this place I was really excited because it is hard to find really friendly vegetarian food in Tempe. The atmosphere here is great and very sunny. It is in a strip mall which takes away from it a bit, but the inside has a funky feel to it. I always want to like the food, but something is just off every time. The black bean burger is good, but it comes on an untoasted piece of wheat bread that gets all soggy and falls apart. Everything else is OK, but why do they do that. It makes it disgusting. Put it on a bun like normal people.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9ebaAGLVIgGKpDLFwmvaiQ", "review_id": "8w-jvRxALs4E1zoZcYm4oQ", "stars": 4, "date": "2012-09-24", "text": "Great sandwiches! the bread was superb. I had a BLTDA (Bacon, lett, Tomato, date, apple) w/chicken. Yummm. such a cute spot.", "type": "review", "business_id": "hBHkHYOk_E-6EgObC6MTdQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "522VUC6Fjuj6JAPo5tHSCw", "review_id": "1aa1XE_NSEXAJAd9LxTBbA", "stars": 5, "date": "2009-10-29", "text": "This place has it all. Fresh food. Vintage decor. Outdoor misting system for those uncomfortabley-sweaty summer days. Plenty of scooter parking. Beautiful shade trees (watch out for scorpions!). Oh and did I mention the food?\n\nMy favorite item by far has to be the Buffalo Chicken Sandwich. Tender grilled chicken breast smothered in tangy wing sauce nestled between a toasty bun that has been smeared with blue cheese and crunchy celery. It's heaven in a bite.\n\nCoupled with a serving of Sweet Potato Fries, this is a party in your mouth and every taste bud is invited. (Even that anti-social one on the back of your tongue that doesn't know how to dance.)", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "MUmJBMsXhu7lTV2cd1HCNw", "review_id": "2he-xxrE_OavAsQ83UaXaQ", "stars": 3, "date": "2011-10-21", "text": "Pretty good mexican grub in the 480.\n\nI had two carne asada tacos and a chile rellano plate.\n\nThe meat in the tacos was tender, tasty and plentiful, accompanied by chilantro, onion and hot sauce - typical ingredients but done right.\n\nThe chile rellano had a flavorful red sauce, the batter was not too soggy, the chile was cooked well (not crunchy/underdone, not squishy/overcooked) and the cheese oozed out when the chile was cut into. This dish came with the standard rice and beans, neither of which was remarkable in any way shape or form.\n\nMinus two big stars for what they consider guacamole. It wasn't thick, it had no taste and it seemed as though this vital mexican staple was merely there as a garnish. No bueno. If it ain't green, thick and tasty, you better hit the drawing board.\n\nYa feel me?", "type": "review", "business_id": "fv2WqPvS4YfxCm6YWqrvLg"} +{"votes": {"funny": 4, "useful": 6, "cool": 5}, "user_id": "6qTA7oelKwpevf1lL_bIVA", "review_id": "DTs-kewkgvnlhXTxMGuCWg", "stars": 4, "date": "2009-06-30", "text": "I dig this place, I really do, but the portions are small. They do make up for it by packing a straight kick to your man or woman pleaser with zesty flavors. I didn't dig the guacamole-too much salt, but loved, loved, loved the chips that came with it. The place is quite spacious and modern with featured art on the walls. I went for dinner so the lighting was minimal giving the place a sexy, urban feel to it. The kind of lighting that makes you wonder if the people are really this good looking? Or is the lighting really just this good??? \n\nThe carne asada beef tacos were divine. Really moist and succulent with just enough spice to make your taste buds tingle. Two is hardly enough, so we also tried the fish tacos and well, I could smell the fishiness from across the table which makes me a little uncomfortable. I did try it, though and it was okay. Not too fond of anything that tastes or smells too fishy. Reminds me of unsanitized, dirty, dirty girls. (Haha, had to throw in a visual for you all!)\n\nMy favorite plate was the ensalada cortada. I loved all the ingredients mixed in together, especially the corn nuts. Genius idea! \n\nFor drinks, I had the la sangria. Fruity, refreshing, and light tasting. It was really good, but I passed it on to my date in hopes of taking advantage of him later on. Almost worked, but when we got to the normally secluded rooftop @ the Clarendon hotel, they were hosting a social gathering of some sort with lots of people. Damn. Should've drank my sangria. Oh well...another day since I will most definitely be back for some more Gallo Blanco. I can't wait to try their breakfast menu!", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8E-XbiI-fHVMquzP3anLkQ", "review_id": "YDksOTfQZh0wl-ZP2kD1LQ", "stars": 5, "date": "2012-08-20", "text": "After reading about all the other Phoenix coffee establishments that had either come and gone, or were serving bad Costco coffee we were thrilled to find White Sage Espresso! The coffee was some of the best I've had in a long time! Our visit was such a pleasure on so many levels and we couldn't wait to go back the next day. \n\nFirst besides the fabulous coffee, we were amazed by the multidimensional flavors in the spinach cheese quiche, usually I'm not a big quiche fan but my husband is so we tried it and I think I could eat it all day long it was so good!\n\nNext, while we finished the quiche a batch of fresh blueberry muffins came out of the oven and the owner gave us a piece of one and again, amazing multidimensional flavors! We had one of our own and took one to our friends who raved about it also.\n\nAfter that as we chatted with Wes, the owner, we discovered that he and my husband had gone to the same high school in Southern California, another fun surprise to our visit to White Sage Espresso.\n\nAnd the last thing that really set White Sage apart from the average coffee shop is Wes is also a physic/medium. I had such a great feeling after chatting with Wes during our visit I decided to schedule an appointment with him. I have been to several other physics before but Wes brought something to my reading that I had never experienced before, I really enjoyed it, and I will definitely be in contact with Wes again in the future for another reading.\n\nI look forward our next visit to White Sage Espresso!", "type": "review", "business_id": "58oZQsz15GJEV7isQhwb7w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "VURvHke7yvGL673wgcp9nA", "review_id": "LiXcfRQfpagK12QypffTFQ", "stars": 4, "date": "2011-06-01", "text": "My niece and I were having that conversation...where do you want to eat...I don't know where do you want to eat when we drove past the Rocket Burger corner. I turned around to try it because of good Yelp reviews and my curiosity regarding the variety of Soda Pop. We both got a large hot pastrami sandwich and soda pop. The price was reasonable, the food was good and the soda pop made it a nostalgic experience. I brought home half of my sandwich. Just reheated it in the microwave and enjoyed it again. I'll return to try the french dip sandwich on the menu. P.S. The meat and secret sauce gave the sandwich a great bite. It blows away the 'roast beef' sandwich I had last week at Subway that looked like reconstituted meat.", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "6OWHDbEq23f24Vki_veHBA", "review_id": "jTkRr6KHLoEugn36VN4ZTA", "stars": 4, "date": "2010-10-17", "text": "I've been to the Scottsdale location and to this one a few times, but I guess I never reviewed this one :-\\\n\nAnyways, one of my hometown friends drove in from San Diego and displeased with his Roscoe's experience, was dying to go to LoLo's. Luckily we made it out of the Science Center in enough time to get lunch here before they closed for the day. We were quickly seated and taken care of. Our food came out quickly and we dove in. It was delish as usual and my friend said that LoLo's won that battle. \n\nThat said, if you want some good fried chicken and waffles, head here.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z4xZrZi_AMtOR6I24dPrHQ", "review_id": "HHzs1EDHjbi8lUAv1hABUw", "stars": 5, "date": "2012-01-26", "text": "I was at Liberty Market this morning for breakfast. The grilled bread pudding is amazing. And the bathrooms are so adorable!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jA5LKrVjCN8x9kJcMH0NmA", "review_id": "LZDAM65wgDt1I7XTtXY8HA", "stars": 3, "date": "2012-03-27", "text": "Service was fast and friendly, the mixed drinks are great! We went on a busy Friday night and a lot of family's where there. They have a man walking around making balloon figures. The slide/ stairs is a great touch for kids. The food was OK, nothing outstanding.\n\nThe view was amazing, it overlooks the entire city.", "type": "review", "business_id": "wZwZcte4lcbu51NOzCjWbQ"} +{"votes": {"funny": 6, "useful": 4, "cool": 3}, "user_id": "Q-e5Kriu18oFX5orJkoNhA", "review_id": "exH9qQOCF6x4n-X4Jqr7eQ", "stars": 1, "date": "2009-05-11", "text": "Everytime I have gone in this store I have left feeling like a big pile of poop. The staff is sooo horrible. I read the other reviews and it seems to be a common thing which really sucks because I would probably shop here a lot more if the staff wasn't a bunch of pricks. P.S. I found a skirt at Target for $10 that is EXACTLY like one they carry, except they want $40 dollars and your soul.", "type": "review", "business_id": "5y88Y-RbndE0QNwQMeScew"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d95On_QNeQPr01pRNzHa5w", "review_id": "lCCr4wN6IJqCf0OiVAn1Gw", "stars": 4, "date": "2012-06-04", "text": "Wow! I am definitely impressed. I've been to a different Massage Envy years and years ago and vowed never to go back because it was the most mediocre massage I had ever had. My girlfriend was telling me about how great the therapists are at this location so I relented. I scheduled a 90minute deep tissue/trigger point massage with Joshua. It was probably one of the best massages I've had in a long time. My back neck and shoulder felt so much better afterwards! I was so happy after I even signed up for the monthly membership....Something very unlike me to do without thinking about it. I guess this location is the only corporate owned store and not a franchise. No wonder! :)", "type": "review", "business_id": "r4ggW7POeNX0ta6spkT4Kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m86FX_Y3hUFTyolH4lXiWg", "review_id": "EBPnXky6r269b-yYN4KVIw", "stars": 4, "date": "2012-01-19", "text": "Intimate ambiance with good farm to table fare. Good presentation and wine pairings. Outdoor area is nice, though as others have pointed out, there's basically no lighting back to the parking lot after dark.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cPrgGOlHmuK45qDh2VhveA", "review_id": "y_uJ7P9sUGy_5b8hRCdQHQ", "stars": 5, "date": "2011-10-11", "text": "My fianc\u00e9 took his pediatric boards yesterday and that calls for a no-more-studying-at-coffee-shops-during-dinner celebration! We are brand new to Phoenix and these last few months have been eating lots of Mexican and some more Mexican, which we are not complaining about in the least, but it was time for something different. Our neighbor recommended Richardson's/Rokerij as his favorite so I made a reservation for Monday night.\n\nWe sat in their downstairs dining room tucked in a generous booth in the back corner. My fianc\u00e9 ordered a Dark and Stormy and we split a bottle of Pinot Noir as our server informed us of their 1/2 price bottles of wine deal. Hurrah! We ordered 2 appetizers: the bacon-wrapped scallops and the crab-stuffed mushrooms. One bite of the scallops and we were in heaven. They were GIANT, perfectly cooked, and beautifully placed in a pool of amazingly different dipping sauces. You can never go wrong with wrapping bacon on a piece of, well, anything, but this appetizer was magical.\n\nMy fianc\u00e9 ordered the Rokerij Steak with roasted corn and mashed sweet potatoes in a chili pepper. I'm not a steak lover, but took one bite of his dish and it melted in my mouth. Fantastic. I ordered the Swordfish special with roasted eggplant and mashed sweet potatoes in the chili pepper as well, and I devoured every bite! \n\nWhat did it for me, however, was the dessert. We shared the truffle with vanilla gelato topped with berries. The truffles were like buttery brownies in a hard shell and perfectly portioned to satisfy. Very memorable. We will be back, even if it's just for the truffles!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LPizY_yWtRRJsoVF6Z_h6Q", "review_id": "-c964RnjItVW5eDGA-mxnQ", "stars": 4, "date": "2012-05-02", "text": "I stayed here for two nights the first week of April 2012. Woot. Arizona weather really is the best. \n\nOverall, it was a nice place to stay. Purdy too. I bought a deal on Hotwire and wasn't sure what hotel I was booking until I paid, and it turned out to be this resort. Overall, very satisfied for the price I paid. However, I do not think I would pay $200+ a night here. At that point, I would say it's not worth it.\n\nThe entrance is gorgeous and nicely updated. Trendy, modern, yet warm. Love the lit deer heads. I want them. It feels like a high class resort when you first go through the entrance. Once you head to the rooms though, it does seem like an older resort. However, our room was nicely decorated and very clean so no complaints in that area.\n\nIf you are missing your pets from home, be sure to ask for a pet fish during your stay! I asked for one, well, I had to ask twice because they forgot the first time... But soon I had a goldfish in my room which I named Basil. (Due to me becoming inebriated on one too many cucumber basil martini's... Don't judge)\n\nAs for the room/parking, it's very easy to park extremely close to the entrance to the rooms which we liked. It was easy to navigate in and out as the resort is fairly small. The room itself, ours faced the parking area, which we didn't really care either way about. It was close to the pool so that was good enough for us. However, I will say the bed sucked. When my husband turned, I too turned and bounced along with him. They badly need to upgrade to better beds. While not uncomfortable per se, I don't enjoy feeling every teeny movement of my partners.\n\nThey had nice toiletries- C.O Bigelow. I enjoyed those little aspects.\n\nFor an hour every evening they had free wine happy hour, which we did check out one of the evenings. Hey, no one complains about Free Wine!!! Nothing special, but it did the trick.\n\nHotel Bar: Had some kick ass cocktails. Plenty of strength and tasty concoctions.\n\nBiggest Bummer? The pool area. Don't get me wrong, it's pretty. First appearances are good. There is plenty of shade from large palms and such and there's an area for kiddies with sand. However, there is not enough chairs for the amount of guests. And the guests that are there put towels on all the chairs even if they aren't around, which is not cool. Suggestion to hotel: Perhaps walk around every hour and remove towels if no one's been sitting there for awhile? It's not fair for a select few to have a chair all day, while others are unable to lay by the pool at all. And while there is plenty of shade, for me that was another downfall. Almost too much shade. It was hard to find areas to sun in compared to those covered by shade. It made me majorly pissy. Sun is why I came to AZ.\n\nOverall, a great place close to downtown Scottsdale and a walk away from the mall. Perfect for those who want to spend time near the action. If you can get a good deal here, it's worth the stay. Plus, they have a free shuttle if you want to go somewhere a few miles from of the place. (so you can drink and have a driver)", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "Bq9F2a-ydPcg8I09U-1dSQ", "stars": 3, "date": "2009-04-19", "text": "About 1.6 miles roundtrip from the Maricopa Ramada. Pretty cool little climb, but then you end up on a road heading to the summit. Near the top, you get to go offroad for a bit to the very top. You can see 7th St go all the way downtown.\n\nTotal time up and back was 50:12. Pretty easy hike. This was my third of four mountains, one Saturday in April.", "type": "review", "business_id": "ToJ9eJ9pKZXhlVyUmCFnJw"} +{"votes": {"funny": 8, "useful": 4, "cool": 3}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "YuMXpDWSpNgJMHJWHWAhgw", "stars": 3, "date": "2007-09-14", "text": "This place is the least douche-filled club of the douche tour in downtown Scottsdale. It is a huge club and in some ways it's like an anchor store in a mall - like Dillards or JC Penny. You can get a little bit of everything you want in one place... It's got its share of plastics and douchebags, but also has a number of college kids venturing away from Tempe to go dancing. \n\nThe place itself is kinda cool with various rooms of different themes and a good sized dance floor. The VIP area upstairs is pretty neat if you can swing the fee. They have the requisite go-go dancers with giant boots on some nights and they often feature good local dj talent.\n\nI haven't had to wait in line to go here in years because I'm always invited to go - I reckon if I had to wait in line, I'd just not go. Don't buy a girl a drink - apparently, this place attracts some pretty (when it's dark) homeless alcoholics. These girls need jobs (and not boob jobs - that's already been covered). \n\nMyst is large enought that you can go here and manage to find a good time... drinks are a bit pricey, but that's par for the course in the area. It's a one-stop-shop for all your drinking and dancing and scamming needs. You're also very close to a slew of other smaller clubs of the same sort if Myst isn't happening.\n\nOne of the best parts is that it's across the way from a pizza by the slice place that stays open after hours just to feed the drunk idiots so they can \"sober up\" for the drive home. Sometimes I go here around 2am sober just to people watch... on any given night, you're likely to see either a fight break out, some drunk chick puke on her hair, or someone crying over something stupid. You also get to see everyone in the harsh fluorescent lights not looking their best - the shine and polish is gone from their outfit and the product in their hair has quit on them and the girls' makeup has given up long ago - plus, they are too drunk to suck in that gut or push out that chest. It's very amusing.\n\nYes - Myst is a good place to go if you want to go clubbing in Scottsdale - send your out-of-town friends here... locals who aren't into the scene will loath it. I pretty much do.", "type": "review", "business_id": "hCS5eV0SCAY9LeeL36lz8g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1SLgU2qwQgU5fQLcQwpIDQ", "review_id": "I24YW1eO5guMJ-_5ABcAPA", "stars": 4, "date": "2012-10-31", "text": "The Fries Need Work! I have been here several times now and the fries have been a disappointment . They are not the crispy fluffy potatoey goodness that Belgian fries are supposed to be.\n\nHaving said that, everything else from the brats to the beer to the service is worth the trip.\n\nThe outside patio is like being at a German Biergarten without all the kitch.\n\nCheck it out!", "type": "review", "business_id": "PWG28q4JFOc8FiRBjnfCkA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Zm2k6dJtqKDz3pZ70SwohA", "review_id": "TmYHptKPJIlvCaRHNr4n_Q", "stars": 4, "date": "2012-05-18", "text": "I love this place, so cute and trendy, and great food! love the crepes but my fav is the BBQ pork sandwich. its so flavorful with avocado.\nPastries are great too. Great place for lunch or afternoon tea.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "9VF522wucngr7m9wzXa5nw", "review_id": "TT5vCKoGm9ayeg0gt76uNg", "stars": 3, "date": "2011-12-24", "text": "I work in the area and come here maybe once a month when I have a pho craving and need a place near work. The decor is relaxing, and the music is pleasant. I find service to be fast which is really important during lunch.\n\nOn one side, the prices are a little on the high side, and the pho is somewhat bland. On the other side, a lot of my American coworkers won't go to a mom and pop pho house. Pho Dalat is somewhere they would be okay with.\n\nIf you're on that side of town.. have a pho craving.. then Pho Dalat will definitely cure that.. but don't get expected to be wow'ed by the complex flavors of the broth", "type": "review", "business_id": "JBCBlVaHfZUZrq-lQfryDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6mi3ytiQyCXVNSNP1OzGHw", "review_id": "mnVeOY8NmGCsg1GrfiAzUQ", "stars": 4, "date": "2012-08-29", "text": "I went out last night in search of a restaurant with good soup, but instead decided to try Texas Roadhouse. As soon as you walk in, you feel welcomed and right at home. The staff are all smiling and welcoming you, and just the atmosphere of the place was great! Roasted peanuts await you at your table, along with some delicious bread! I had a bacon cheese burger, which I could only finish half, while my husband had a steak that he actually enjoyed! Our waitress kept up with the drinks and checked up on us enough, but not to much to where she was bothering. All in all the service and food was great! I will definitely recommend it to others, and be back myself!", "type": "review", "business_id": "5GpvSL1tlAjpgdJKZ5eLpg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sjdQ7sAT6G3ibRRkFKrDlw", "review_id": "UFhDyg9xaZEh9qZaTQbSPw", "stars": 5, "date": "2011-04-16", "text": "I am so loyal to Durant's that I feel like a heel...but City Hall was divine. Steaks, sides, drinks...the only thing we didn't have was dessert...but $1100 later, who could afford it?", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "tI5iYnvKgfmAWn2dbozMTg", "review_id": "-BGRfj70QmXCgSEI0rAPCA", "stars": 5, "date": "2012-10-29", "text": "Great fresh food and vegetarian options! I will definitely return!!", "type": "review", "business_id": "mjoxSQR7bFQtlIIjfNfaSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_hiTqu2Yh0VNlNFB_ZfJ0g", "review_id": "cN_1PcgBj-kMUFadI6qrmQ", "stars": 4, "date": "2010-01-28", "text": "Reviews of this place are all over the board, but I always eat there when I do my yearly Scottsdale gallery crawl. The food and ambience, a series of indoor and outdoor patio rooms, are quaint and very satisfying, with good size portions, and a very friendly staff. At least to me they are. I was last there in late November and had the days special, enchiladas in a poblano sauce which was quite good. The salsa is spiced just right.", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7eI3y-s25qWi3Y9zpHCUpQ", "review_id": "PlnGSXnmZlyypv0COUWEig", "stars": 4, "date": "2010-03-18", "text": "I live in north Phoenix and believe me there needs to be a lot more quality dining out here. This is a gem. The atmosphere is tops. The food is consistent. The management actually cares. It's just a cool place all the way around! A lot of corporate establishments seem to yank popular things off the menu cause it's just not trendy anymore. Every single thing I have had at this place was delicious! Not one other restaurant has pulled that off. A place you can actually count on for a good evening. High five to the Yard house!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o2CGc1kQHEFkYOECM3NFdg", "review_id": "s8E7eh8VX9dnegOH8t3ONA", "stars": 3, "date": "2011-05-11", "text": "I've been wanting to try this place for awhile after hearing good things about it and reading the menu. I realize now why the website doesn't list prices-- the mission is hideously overpriced!\n\nWe ended up on the patio since they weren't seating in the main area yet (at 6:30pm? For reals?) Our waitress was nice and attentive. She noticed my water had something floating in it and replaced it quickly. My husband's water glass was dirty too. She brought us out two sample size frozen peach and strawberry margaritas which were awesome. Much better than the rocks margarita.\n\nNo complimentary chips and salsa which would be ok if they offered something else like Barrio. No happy hour either which was disappointing.\n\nThe street corn was good, but I've had much better. The butternut squash tacos were out of this world. My husband liked them better than his mahi tacos. I just can't believe they have the gall to charge $12 for 3 tiny (3 inches in diameter) tacos. They also charge $12 for guac made from 2 avocados. I'm not sure how they have survived in this economy. They must be very slow when the tourists leave for the summer.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fbI36KFLubq5adz8lzX3Rg", "review_id": "lEtOERQUONvHV4bjP0_x5g", "stars": 2, "date": "2012-05-28", "text": "My regular nail place was closed today so I took a chance with this place. I called ahead and was told it would cost $25 for a gel manicure..Great! They were busy and I was asked to wait a bit...no problem! The lady that greeted me took a look at my nails, which was a dark red gel manicure, and told me she would start me in a soak. She asked what color did I want and I replied that I wanted white tips. 30 minutes later the lady that signed in after me was called first then 10 minutes later I was called and told to soak my nails in soapy water bath. I sat and soaked for 20 minutes while the workers worked on people that walked in with \"quicky\" needs. Finally, the lady that greeted me came over and said I should have been soaking in acetone and not water...she apologized and started the acetone soak. 30 minutes later, and after I scraped off most of the old polish myself, a man started my manicure and my greeter finished it so the man could start a lady's pedicure who had been soaking her feet for 30 minutes and visibly pissed. When she was done with me she told me that the next time I come in I need to tell them that I have old gel polish on so I can be started with the correct soak. Really?\nI was relieved to finally get out of there and all ready to pay my $25 for the services. I was told it would be $25 for the gel manicure AND $5 for the white tips! Wow! Really? I know it was only $5 extra but after spending the whole afternoon there with bad customer service the extra 5 bucks seemed outrageous.\nI'll wait for my regular nail place in the future!", "type": "review", "business_id": "8nM_BMADIhc628ZlThRsmw"} +{"votes": {"funny": 4, "useful": 1, "cool": 2}, "user_id": "KgnQz4WFT892AXmimnP4jg", "review_id": "HmfF4Bbrt757h2uXv8op2Q", "stars": 1, "date": "2011-08-05", "text": "Sadly, I'm giving this place one star and an explanation why it is only getting one star. The Manger/operator guy.\n\nSure, the food here isn't all that bad. Probably a half a notch or so higher than most of the hot slop fast food you can get for lunch. Most of the crew members are pretty attentive, don't seem to be meth addicted, and I see them cleaning the tables on a regular basis. Looks like the crew changes over quite often, and I know why.\n\nMy beef is not with the crew members, oh no. Not with the food or cleanliness of the store. Nope. The Manager guy, the guy who looks like a real pussy version of John Leguizamo. This guy ruins about every trip I have to this joint. That is my problem with this joint. Elaboration will proceed now.\n\nThis guy is without a doubt one of the biggest assholes I have ever encountered in the fast food industry. Actually, one of the biggest assholes period. What a douche bag. Seems like any time I have a coupon, this guy will literally butt in the middle of the order, give me a ration of shit and do about anything possible not to use it. Seriously, what is it, 30 cents? I had a store coupon that was on a tray liner a while ago and this nutsack got in the middle of the order, cancelled it and refused to let the coupon be used. I asked why and he said it was not legit (why was it on the tray liner then fuckhead?) I checked the menu, they would have lost 10 cents. Lady taking my order after P.J.L. (pussy John Leguizamo) walked away pretty embarassed said \"sorry\" Not her fault. Never saw her working there after then, was probably tired of that guys shit. I don't blame you.\n\nLast trip here, they have promos on their drink cups for free shit. Awesome. We all know this is the garbage that costs them nothing but I am a sucker for something free. On my trip before the last, I got one for a free corndog. SCORE! I cash it in on my last trip, and the guy ringing up the order said it would be on a different ticket. No sweat, I could give a shit less as long as I get my corndog. Go to get my order, ask where the corndog is. P.J.L. butts in the middle of the order, says \"This is your order, this is what you have\" and was a fucking prick about it. Me, the customer. Yanks the receipt out of my hand, gives me an attitude about it. Who the fuck talks to a customer like that, even at a low rent fast food joint? Fuck you. Seriously. The guy who took my order tried to explain the situation and dicknose literally looks at him, puts his hand in front of the guys face, and says \"ssssshhhhhh\" and snaps his fingers the same way I do to my dogs to keep them barking or eating drywall. Who degrades their employees like that? All he was trying to do was explain my free item was on another ticket. Instead of listening, he made a complete asshat out of himself. It was a corndog, what does that cost you anyway, about 12 cents in batter, a stick, and a combination of horse eyeballs and badger penis meat? \n\nDude (cashier guy, tattoo on your arm), tell that guy to get fucked and get a better job. No one deserves that shit. I am actually ashamed I didn't say something for you, I truly am.\n\nWhat would have normally gotten a decent review is what it is. My rant speaks for itself. One shithead ruins it for the ones working for him. For the ones working there, I will pray for you. You need it. P.J.L., get out of there and become a pimp in Tijuana, they need midget controlling assholes over there. You would do great at that.", "type": "review", "business_id": "zxjMiqlfUuIQRltSuj9FpQ"} +{"votes": {"funny": 12, "useful": 12, "cool": 10}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "O7jeV2E4qoG0JW2jbTdOOw", "stars": 3, "date": "2007-06-30", "text": "Located along the infamous, gutted for future LRT, Central Avenue is Community ( you know, like rainbow community) Florist. Serving the sistahs for years is a helpful, friendly and knowledgable staff. Prices are well below the chain florists here in Central Phoenix and I always like to help the small business owner, especially during this construction madness. I've purchased flowers here that last well over a week. They also have an eclectic collection of vases, things for the garden, cards, etc. So if you're trying to woo that special someone, or perhaps you messed up with the mister or you simply wanna say to yourself, \"I'm special. I like myself. I deserve tulips\"....get on down to Community Florist. You know it's about time ya'll stop to smell the roses...", "type": "review", "business_id": "imSAkSzL5X1rUc3Z1ZMYeA"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "F0dO68TECqEJBhBJ4P0qVA", "review_id": "zjof_JYxVbigFjyyjYUo5Q", "stars": 1, "date": "2012-11-30", "text": "Tried to eat here Friday night for the seafood buffet. We waited in line for 90 minutes before finally giving up. Would have been much sooner but the drive down there from my house is almost an hour. \n\nThey have three lines, tiered based on the level of player's club card. The diamond card holders waltzed right in and the hostesses would seat from that line until it was empty before anyone from the 'lesser' lines would be seated. At the end, we stood still... didn't move an inch... for 20 minutes. So no-one from our line was seated for 20 minutes while dozens of people waltzed right through in the diamond and platinum lines. \n\nWhat a fucking joke. Waster my whole evening trekking down there dreaming of crab legs just to be snubbed by them.\n\nNever, EVER again.", "type": "review", "business_id": "NZ4V7rl7nevZPOdySgg-iw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "Kf5tnfXtIy-torOrHY3nIA", "review_id": "poi9S1psDrfhVeUpYWcg-A", "stars": 2, "date": "2012-12-12", "text": "This is the first time I've had a bad experience at an Oreck store. My 6 year old sweeper suddenly began spewing dirt out. The bag wasn't close to full yet and it didnt appear anything was stuck. The sales associate without opening it up began to insist I needed a new roller brush for $40. When I showed him it looked fine to me and wouldn't that be covered by warranty, he got upset with me and began stomping around. I also showed him a warranty sticker from 2010 on the machine which stated that there was a new roller brush installed and also asked him to look up my Oreck warranty. He found my name in their system and then began shoving my sweeper at me insisting I just take it and leave then, since I obviously didn't trust him. This man was totally weird and his behavior and attitude felt very unprofessional. I still like Oreck but do not recommend this store.", "type": "review", "business_id": "GJIl37k1Kitq5r43eUZ1Kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gN4JuiRC2sIssc1qijg4Zw", "review_id": "fFzKn4Mi5twA29c5emJXQA", "stars": 4, "date": "2012-05-11", "text": "Loved my visit here. I was talked into the meatloaf for dinner. I have never ordered meatloaf at a restaurant, but tonight I did. The combination of meatloaf, and a bit of mashed potatoes and gravy on my fork......HEAVEN. I was sure to chew in every corner of my mouth....my taste buds were going crazy.......", "type": "review", "business_id": "P5a2hK5G64J7DcNwLAPhuA"} +{"votes": {"funny": 4, "useful": 9, "cool": 6}, "user_id": "zHH2Iz49wCZYYDLBTv0YOg", "review_id": "E2_iMgob9t9_vg8FazTJJg", "stars": 4, "date": "2008-11-17", "text": "My new favorite Mexican place in Tempe. Love their tacos. Their menu only lists them individually, but feel free to mix and match. I usually go with one camarone and one pescado. The shrimp are small, but there are lots of 'em. And the chunks of fried fish are bigger than the taco itself. Portions are generous - I'd have to skip breakfast to be able to finish more than two. Service is friendly and efficient - easy to get in and out during your lunch hour. Also a great spot for happy hour.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "9W0qZLmVwVJkSy0_kvI_YQ", "stars": 2, "date": "2012-12-30", "text": "Meh. Service was friendly, and the atmosphere is bright and festive, but it's pretty Americanized Mexican food. I had a California burro ($9.49), which was a large size, and tasted OK, but for about 1/3 of the price and for about the same size, I can get a better tasting burro with the same type of ingredients at Los Favoritos. I've also had dishes with their Baja sauce, which tends to be too heavy tasting for me.", "type": "review", "business_id": "roTWGaU-RcJ06l8cjFw7xQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Zi1udoY2iT9s8Q3X6tgZQ", "review_id": "AN9C3kRIRMSdngWrjrJ4xw", "stars": 3, "date": "2011-06-29", "text": "This place is kind of hidden and very quiet, but from the reviews it seems like they've got quite a few patrons! I thought the food was just okay... I've eaten here twice and I admit that the prices are excellent but unfortunately it's not enough to keep me coming back. Staff was pretty friendly, so I thought that was a plus.", "type": "review", "business_id": "NmYTwkqyaCtEg3wifBkxkw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "v2rbY-d-yam7Qbfb9jkbQg", "review_id": "T2ccFelKcV0iD3KOKMpdnQ", "stars": 4, "date": "2008-06-01", "text": "Totally a locals hangout.\n\nThis very unpretentious wine bar is a favorite. The owner, Darlene, has a great selection of wines from smaller labels for you to try. If you're not sure what to get they'll help you find a bottle in your price range. They've got the cheap stuff all the way to the $80+ range (if you feel like spending some money).\n\nYou can buy a bottle at retail, open it up at their bar and enjoy it with a nosh. Lots of smaller appetizers (cheese and crackers, etc). Or, order by the glass/flight from their bar.\n\nCheckout their website before you go. Or if you live in the area, subscribe to their email newsletter. There is something different going on every day (live music, tastings, specials, etc.)", "type": "review", "business_id": "5kuZhkdpKKu9d_dTflOh4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nT8v1ljwuh_Mt5lBkO0gmw", "review_id": "yctTSqpVcJqW1nA4SsVdpA", "stars": 4, "date": "2012-12-19", "text": "Pretty good food. Super friendly service. Very clean.\n\nFirst time I have had duck at a buffet and it was pretty good, just not the crispy skin. Lot of seafood items. They kept things well stocked and didn't just dump the new stuff into the old (a health code violation) They pulled the old pan out and put the new one in. \n\nWe will definitely be back.", "type": "review", "business_id": "Ft7BXN0D9x_XcVd-VZeLeA"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "0S3xCHTktjXx-1AVf_NQCg", "review_id": "Erx-PelmwvIvoEqs4TUuKQ", "stars": 1, "date": "2011-02-25", "text": "Angry Bro Bar ! Please go here if you wear size smedium affliction shirts you will love it. The bar is lame. Kid you not there was not five minutes that went by where two people didn't try and fight each other.", "type": "review", "business_id": "Y-5knOy4atrpy-TJU7gEfQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "V_bLJ6iJwBv6QX5a-AwffA", "stars": 3, "date": "2010-02-22", "text": "I really didn't think this place was all that great. None of the food that I ate was particularly very good. I think the best thing I had were some sort of sweet and sour meatball things. Everything was just hard, overcooked, or flavorless. I wasn't really impressed with the options available either.\n\nThe saving grace of this place is the BBQ station and the sushi bar. The bbq looked 1000 times better than YC's Mongolian freeze-dried junk. The sushi was decent too. This place is just middle of the road for me. I can't blame it for having over-cooked food...it's a buffet. But still, I've had better.", "type": "review", "business_id": "En4UyDiGgmQuWq__50RAgA"} +{"votes": {"funny": 10, "useful": 10, "cool": 6}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "WcdQAdv76EryJpLI_-eO4g", "stars": 4, "date": "2010-01-26", "text": "Reasons to Heart: Breakfast All Day, Self-Serve Coffee, Modern Hip Decor, NYT, Cholula, Inter-generational Friendly\n\nReasons You May Dislike: BUTTER PARTY, Small Menu, Awkward Market, Bizarre Combo of Self-Serve/Service that is NOT Apparent, Kid Friendly\n\nReasons to Be Here: Your friends you lost to baby-making Suburbs, IKEA, You are Near the I-10 and Do Not Feel like Sushi, Ace Hardware, You want B-fest after 10:30am on a Weekday, Dad Wants Burger, you Want Organic Local yogurt/parfait\n\nFirst time here with my friend's parents, as we walked up, I noticed an antique wooden bench with multiple kinds of newspapers, including NYT, held down by an old iron and an Open sign with neon on a skateboard. Whoa. What a liberal hip person coding of an entrance if I ever saw one! Inside, a bright modern airy space with concrete floors, exposed ceiling beams, bright green walls and exposed stainless steel industrial kitchen, I was super impressed by the brightness the huge windows gave the place as well as the cutting edge furniture. The menus are charming chalkboard options that have breakfast all day, kid's menu and lunch served after 11am. All priced between $4-$11, alas there are vegetarian options but this is NOT a butter free place. In fact, it is a fucking BUTTER PARTY. So get your LacTaid if you can do it!\n\nThe slightly hipster staff (the guys look like that dude who played Keats in Bright Star) are amiable at the counter but after ordering my garden veggie sammie I was dismayed to realize they had pastry cases hidden in the counter (you just basically look up the whole time then realize after swiping your debit card your other options). Also the drink menu is awkwardly displayed to the far right of the main menus (um, I would've wanted a soy latte instead of coffee...). After paying at the register, there is the bizarre scramble of figuring out what you have to get yourself.\n\nThere is a large bevy cooler that has wine, beer, soda, juice, water, etc and was a very healthy selection (not a poor one at all). Awkwardly placed is the water, iced tea and coffee station where people are trying to read the menu before ordering. Most tables are four person tables with two people seating around the windows and large community tables towards the L-shaped back, along with bar/counter seating that views the cooks station. Each time I went I ended up at the same four-person table near the condiment table stocked w/catsup, Sriracha, Cholula hot sauce (oh shit). \n\nMy first experience I got ginger beer and a veggie sandwich. Now, as a vegetarian for over 12 years, and a lactose-intolerant for over 5 years, my expectations were way low. Instead, I was fucking IMPRESSED. The bread ended up soggy due to the herbs mayonaisse cream dill sauce thing with incredible local roasted veggies with really good bread. OMFG. I mean seriously, I can't remember much of the meal cause my brain went somewhere spiritual. I also got the fresh fruit on the side, and a great deal with fresh berries, grapes, kiwi, etc. I managed to fit it all in my tummy (and felt def. overstuffed-I should've kept 1/2 of it). My companions had the pulled pork sandwich and killed it, the other had pancakes.\n\nToday, I woke up and I wanted breakfest. Not Essence, Gallo Blanco, Lux, Wildflower, def. NOT Harlows, I wanted fancy pants American style breakfast I hadn't had a billion times before. Located right off the I-10, it's a fast drive from Tempe, and I didn't know what to expect for a crowd around 10:30 on a Tuesday. Turns out, Tim and I were def. the median age here. Mostly older patrons, couples, families, business deals, co-workers, moms with toddlers (they have plenty of nice high-chairs, btw). I had to get the pancakes ($6) w/fruit ($1) and side of potatoes ($3) and coffee. Tim got the rotassarie chicken with grilled corn and hand cut french fries (I think under $10). Seating was easy, food came out together within 15 minutes. The pancakes were delicate, almost crepe like, with a buttermilk taste but not too cinnamony and a little dry and thin (in a good way-sops up the butter and syrup). The serving of fruit on top was a little small, but all good quality, the potatoes were home-made style with sauted onions, skins still on. His plate was huge with a grilled corn, the fries still had the skin on, and the chicken looked great and very greasy (which he killed). We had to remember to get our own utensils, napkins, and our own drinks but the staff checked in periodically and after finishing our plates, the dirty dishes sat around for 5 minutes, I believe due to the insane lunch rush that came in! Seriously, the place exploded! I was happy Tim had bought the cookies he eyed earlier so we skidaddled after using the nice, clean bathrooms. \n\nNow, eating yummers Blondie cookie and chocolate chip cookies that are greased through the paper bag, I think I will have to ride my bike here to justify the butter party celebration!", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "IxgZR5v1SfzOUkOUucjFUg", "stars": 4, "date": "2008-01-06", "text": "More like 3.67 stars, rounding up to 4, but not any more than that which would bump it up to 5. \n\nYet.\n\nLet me explain.\n\n1) Rose & Crown - The Hours. If it is really meant to be a British pub and a new asset to downtown nightlife, it needs to strongly declare A) YES! WE ARE OPEN! and B) YES! WE ARE OPEN *LATE*! When you're turned away when you excitedly show up at midnight on a Saturday because they decided to close for whatever reason, you're not going to be too excited about trying to go back the next time. What's a British pub doing closing so early? I went out of my way to go here, to experience this new bar and enjoy its offerings, and was sent packing. Meh. So I was surprised when a bunch of Yelpers decided to make it a meetup spot a few weeks later. Well, maybe this time, at 10:30, we'd be more fortunate with it staying open. \n\nAnd we were. Rock on.\n\n2) Rose & Crown - The Setting. I gather that the business owners are extremely limited with how much they can change with the house since it's probably a landmark with stringent regulations on how much of the interior can be changed, but since I've eaten at Circa 1900 a number of times before it vacated the premises, walking in here felt exactly the same. Sitting at the EXACT same 4-top table I ate before. The room hadn't changed one iota when it came to layout or furniture. Even the angles the tables were placed at. That was a little odd. The only main changes in the front west room were the giant visages of the Queen and good ol' Winston glaring down at you. In any case, it was kind of hard for me to make the mental transition from \"this is a sit-down restaurant\" to a \"this is going to be your local English pub\" when it comes to the indoors. Was it nice? Definitely. It's really nice inside. But pubby? No. That said, the front balcony is a really great location to hang out on, and I can imagine how great it'll be around springtime. But the balcony's more an asset of the great old house itself. \n\n3) Rose & Crown - The offerings. Standard selection of beers, including good ol' English standbys like Newcastle and Boddingtons on tap. Food menu not too big, but I thought the fish & chips looked appetizing, so I ordered those. I was skeptical, but to my surprise, the fish was great, as was their spin on the tartar sauce. Fries were also tasty, but fries are fries, and I'm going to devour them anyway because I was crazy hungry. But all in all, thumbs up on the food.\n\n4) Rose & Crown - The service. Was kind of there but more present at the beginning and then invisible near the end when were ready to leave, thus having to go back inside, tell the bar manager what we ordered since he didn't have the bill, and then pay him instead of our server. Kind of odd.\n\nSo all in all, as I said already, 3.67 stars. I'm definitely willing to go back there and be open to editing my review and increasing its star wattage, but for now, it hasn't completely won me over. Definitely has a lot of promise, with its abundance of Britpop playing and proximity to Bianco, the sporting venues, ASU, etc., but they need to work on being consistently open late before I think about making this one of my definite go-to institutions.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "1IRyTTXa__KRxhxnz8fS5w", "review_id": "oVPjOciWKB-qb7t5ITYTPg", "stars": 5, "date": "2009-04-07", "text": "Whenever I get my car cleaned, this is the place that I'll always go to. They're nice, efficient, and they do a great job. My car is still shining a week later!\n\nThe wait is very minimal. The staff works together fantastically, and you can watch them clean your car so you don't have to worry about anything getting stolen. Yeah it's a little small, and a bit shabby, but like the first reviewer said, you don't go there for the waiting experience!\n\nDefinitely worth the money!", "type": "review", "business_id": "iCEBW0cHK3jDUFXGni6n-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "037gJ6fmcXCW1ajls5tr_Q", "review_id": "9i13Ws7bRyIKhD3KADi4xg", "stars": 5, "date": "2012-03-05", "text": "I could spend hours in this place. In fact, I know I have. There are so many things to look at and it's way more than just books. They have a ton of cards and stationary as well as fun trinkets. If you're into used books, this is the place to go. I've found nearly mint condition vintage books here and they've made the perfect gifts. The people who work here are great as well. They're more than willing to help and offer good recommendations. This is a go to if you're looking for a good read or just want to pop in and explore.", "type": "review", "business_id": "GwSdGrvaXi4BdXNSWKn-EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gg_OKjOAl_vVmdh5ZETuiw", "review_id": "LlJZQHDsWAoIxdKLrPfHbA", "stars": 2, "date": "2012-04-28", "text": "Winco Foods is all the rage now. Will this continue or will Winco lose it's luster once it's just another grocery store and the new kid in town?\n\nThere's nothing special about Winco. It's your typical grocery. I'm not a savvy coupon clipper or price matcher so I cannot attest to the savings to be had at Winco. A thrifty shopper I know claims the savings are to be had.\n\nThat said there are two negatives that shine brightly at Winco: credit cards not accepted and cheap bags.\n\nDo not come here if your earnings are running low. I just gathered my weekly groceries and expected to charge 'em. Not a surprise I was looking forward to after waiting in the long lines.\n\nOn my first visit most of the bags were torn up the seam and the handles were split. For one reason or another the cashier actually helped bag my haul. How she could hand over bags so blatantly ripped is beyond me.\n\nOn the plus side, Winco stocks Shasta Tiki Punch.\n\nWinco isn't a terrible place but I don't see any reason to jettison Fry's and Target (unless I'm in the mood for Tiki Punch).\n\nTake it or leave it.", "type": "review", "business_id": "gWP6ofoyTbK0SZj1i_XqNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vNzDyLy20GfV4T_0Nm_Wdg", "review_id": "T8MfB8D7h8_rWyybMFB07g", "stars": 4, "date": "2012-08-18", "text": "Food is whatevers, drinks the same. However, this DnB compared to the one in Tempe is much better if your'e really just interested in getting some game time in. The on at Tempe Marketplace is crazy busy, like 11 people waiting in line to play basketball crazy. When I go to an arcade and am already dropping 20+ bucks to play games I want that gaming experience to be nonstop. However, the drive is really far for someone that lives in Gilbert... so that's really the only reason why it gets a 4 star.", "type": "review", "business_id": "PdWe3jF9YEu5fWBiQXZIgg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vh7CdxGFglD0Tgfm0wtCPw", "review_id": "z4U744CDNXd6JHtBN5EQ1w", "stars": 5, "date": "2011-07-03", "text": "Food is great. Really good deal, lots of tasty food for a great price. My favorite combo is the Pulled Pork sandwich with side of Mac & Cheese & Coleslaw & Kool Aid. Founded by former NFL & ASU Football player they know how to barbecue I truly recommend everyone trying it out. The atmosphere is not that inviting yet the food is worth staying and will get you to come back I can guarantee,", "type": "review", "business_id": "vk7U4WeUKJWteORW5hba0g"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "Tv-82JIlXHeRRzJ1_kLTNg", "stars": 4, "date": "2009-10-05", "text": "today was my second visit to the gyro house. i was craving something mediterranean and remembered this place isn't too far from work. located in a nondescript ... no, that's not the right word ... rundown ... nope, that's still not quite right ... ok, completely ghetto, half empty strip mall that also houses a chinese restaurant and a second hand clothing store, the place does not look promising from the outside. inside, there are 15 or so tables, comfortable molded plastic chairs and an extensive menu to choose from. everything on the menu is fairly priced with the most expensive being \"dinner for 2\" at $21.95. fountain drinks are $1. sandwiches ($5.95 - $6.95) are served with fries. i had the homemade falafel on a pita with super secret spices, fresh lettuce and tomato (and onion, but i picked that out) and it was yummy! french fries were hot, crispy and unsalted. i prefer them that way ... this way i can salt to my heart's content. anyway, the place isn't fancy, but it is fresh and clean, family owned and serves up some really good food. if you dig fancy, look no further than the back of the restaurant where they sell some pretty fancy-schmancy hookahs, and prices look fair to boot! so there you have it ... homemade falafel, french fries and fancy hookahs. what could be better? to me, not much. gyro house has earned a solid 4 stars from me.", "type": "review", "business_id": "dn9sB0Kok8cnkDhpcl7YCg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PQrq5tz1DJ0V26taOqcSGA", "review_id": "fXc0_BpPJ1jY91g4wHRtgg", "stars": 5, "date": "2008-06-20", "text": "Yay!! This place is fantastic. Great pastries and atmosphere. I can't wait to go back.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FZXXSGOw4BBWmB7eyAGSnw", "review_id": "sUeefTrD4TV66qzd68DdkQ", "stars": 4, "date": "2010-09-14", "text": "EVERYONE loves to harsh on Arizona for being such a hateful place (including me!) However, I've had nothing but great service at the DMV! Granted, my morning excursion today didn't get completed. However it wasn't particularly crowded and I got to talk to the woman at the information desk within a minute of entering. Rather than direct me to another line to wait, she troubleshot my issue quickly, and even APOLOGIZED when she said I would have to go talk to my bank to clear things up before getting my title. Compared to DMV service in California, Arizona DMV is HEAVEN!!!", "type": "review", "business_id": "IIbdmP2RwBwttQf36cf44Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hVkQbDk61hmIi5iVm3IkZw", "review_id": "RNKES7HZVym3OEusFQeVkQ", "stars": 3, "date": "2011-10-16", "text": "Typically I give a place that falls in the middle of great and bad multiple chances. For whatever reason it's easier for me to 1, 4 or 5 star a place after the first visit, rather than 3. As far as yelp is concerned, 3 stars isn't a bad thing - \"A-OK.\"!\n\nThe scene is strange. It's a mix of typical Arcadia, Scottsdale and the like. This place is more of a sports bar than anything, in my eyes, with better food than your typical sports bar fare. Seriously. There's like 14 televisions in here.\n\nService is quick-ish. Food is fresh. The servings are very large. Some things waver on decent-to-bland, while other things are pretty swell. The mac & cheese is a pass, in my opinion, and not worth the $5 (for the small cup you get - ah, contradictory to my large servings note!). Some dishes have an overpowering taste, while other leave you wondering if you're eating food or chewing crunchy water (that sounds gross now that I've typed it out!).\n\nBeer and liquor list is pretty typical; nothing to note really. A few changes here and there and I could see it as a really decent spot. The same could be said for the food, really.\n\nI'll be back, yet again, The Garage just hasn't blown me away yet. Also, on a funnier note: \"Garage\" reads easily as \"Garbage\" on the menu, which was kind of comical.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "f5EAD7AuglWUSV_iBVgKng", "stars": 4, "date": "2010-07-26", "text": "I finally made it out to the Rokerij's infamous happy hour and it didn't disappoint. My girlfriend and I had a couple of the small plates, the mushroom toast and stuffed mushrooms (both amazing! but I REALLY loved the mushroom toast) and some wine. The inside is really unique to Arizona and completely relaxing. Our server Eric was super nice and chatted with us a lot about the restaurant and the menu. \n\nWe will definitely be back for half priced bottles of wine and happy hour very soon!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mgm6xZjahS3HD7qqOyGtbQ", "review_id": "gAwXPbAmmy73sbGPhrvXmw", "stars": 3, "date": "2012-10-04", "text": "I think this place is hyped up a little more than it should be. I've tired their bruschetta, pizzas and salads. They were decent and I have no complaints but nothing to rave about. A decent place to pop in to for lunch since they have counter service that you order at.", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "ZW6J3hLaTgy7ygZ6V0ZXug", "review_id": "W1zj3YwqoT2xEEsrblkSGA", "stars": 4, "date": "2010-04-07", "text": "I could see myself giving the Tavern a single star or two, but let me explain. It has a front and back patio, complete with misters. There's a full bar with Blue Moon on tap. The large size costs $4 until 9, I think. \n\nThe reason for 4 stars is that they're dog friendly; a bouncer explained to me how the owner loves canines so you'll see them around often. It gets a bit crazy on weekends. So usually if there's a long line, I'll keep walking.", "type": "review", "business_id": "sDozh6iTylTJD26d7xcgGw"} +{"votes": {"funny": 3, "useful": 3, "cool": 0}, "user_id": "yp90PduP1gD7kgCLWuQg4w", "review_id": "fL5olFKel_lVvW3sZNdoDg", "stars": 1, "date": "2011-01-16", "text": "Gross, repulsive, appauling, disgusting, overrated, dirty, should be shut down by the CDC. You get the jist?", "type": "review", "business_id": "cjFDprdEXbDDdraONMy5Pg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "di7_JgzhA69z9Yv0JHXV_A", "review_id": "UsVJv5dK7yqQyKSyvuY9hA", "stars": 1, "date": "2009-05-27", "text": "The guy who worked the front door Sunday night deserves to be fired. \n\nSound harsh? \n\nNot at all. Had a supervisor overheard how he treated my friend he would have agreed.\n\nWe pull up in the car. It looks fine from the outside so we send in one of the five of us in to scope it out (check the menu, see if there's seating etc). Normal behavior. \n\n\nSo my friend K, approaches the guy at the door and asks \"what type of food is served here?\" expecting a simple response like \"American\" or \"here let me grab you a menu.\"\n\nReady for this...?? \n\nHis response: \"human food\"\n\nHUMAN FOOD?!?!?!\n\nHUMAN FOOD!??!?!\n\nK is just an average potential customer, asking a fair easy to answer question.\n\nOkaaaaay. Being the sweetheart K is, she goes with it (it: him being a meeeeeanie) and asks if there is outdoor seating.\n\nHe sarcastically, mockingly and and outright D-bagly points out how there is a seat yourself sign right nearby. \n\nHow was this guy ever hired?\n\nAgain a more appropriate responds (TOOL:) would have been \"yea, the patio seems like it has some space tonight, AND I'D BE HAPPY TO GO CHECK FOR YOU\" or \"at this fine establishment it's seat yourself but usually the outside turns over quickly.\" Sunday night's fine joke machine at the front door: I could happily give you several other decent responses you could have said to an innocent patron.\n\nEveryone and their mom has had some turn at being a waiter/hostess/manager/bartender etc etc in the food and hospitality industry, be it in AZ, SF, WHEREVER and KNOWS the #1 101 rule is: \n\nBE KIND TO THE GUEST\n(kiss@$$ , the customer is always right etc.)\n\n\nAdd to that list: answer straightforward questions from your guests with flat out, non-acrimonious answers!\n\nGranted this review can say nothing about this establishement beyond the front door because we never made it that far.", "type": "review", "business_id": "E7nk0lC317pGxMX56gvaVQ"} +{"votes": {"funny": 5, "useful": 9, "cool": 9}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "yTJg-gv3kFDVYpdS-CoIlg", "stars": 4, "date": "2009-03-15", "text": "This place is all about the seafood. Don't roll up to the Fish Market expecting a cool place to hang or a hip crowd. No problem on the crowd...lots of folks in a pretty basic seafood restaurant, chowing on the best seafood I've had in the valley so far. The hip is not here. Not until I showed up with my wife Audrey W to meet Kevin H and Marian H. You could actually see the coolness spread around the restaurant when we walked in...a subtle ripple, sort of like a gentle wave at a spring training game.\n\nSo I arrived in Phoenix from Boston and have high standards for seafood. I had been craving fish & chips for awhile and decided to give Fish Market a try. I got a combo-fish, scallops and prawns. The batter was light and not very oily...+1. The prawns were very tender and done to perfection..+1. The scallops were tender, sweet and juicy...+1. The fish was done just right as well although it was not the haddock or even cod I am accustomed to in Boston.\n\nEveryone else was pleased with their food as well. I will be trying other seafood places in the valley but I'll keep Fish Market in mind as a standby.", "type": "review", "business_id": "SOHp2b8quJEitFeuO58Syw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ybex2-iQv1Cr05LG-FUY4Q", "review_id": "O0vFS0XQ3xtHifVdyqT9xg", "stars": 2, "date": "2012-12-05", "text": "This review is for food- \n\nOn recommendation from the waitress my dinning partner ordered the nutter sandwich, I went for the grilled cheese and we started with the wings. The wings were not what I expected nor wanted, the sauce killed it for me. The grill cheese was just \"okay\" and the nutter sandwich that received raved ratings from our server was a huge let down. We added the marshmallow and bacon (as recommend) but the marshmallow was no where to be found and the bacon with the natural (non sweet) peanut butter with super sweet jam was just.........not good.\n\nBut! i do enjoy the space and the selection of beer. I have had friends who have gone since and rather enjoyed their spam sliders.", "type": "review", "business_id": "41j3GB7M-Lwq284Pfb9zgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RvyTTpBLqd8yHomBTW_Kpg", "review_id": "bw92u6I9h2cEG2vPWrewcw", "stars": 3, "date": "2009-01-12", "text": "The food is solid, but not awesome. The room is kind of ugly and occasionally not too fragrant.\n\nIf you want Vietnamese, you want it dirt cheap and you want it now, this place gets it done.\n\nIf you want a warm, memorable dining experience, this is not the place.", "type": "review", "business_id": "jJlOPkv4Xl6vxNzr51fnYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8BDGztlkmj2R50AL_tqleg", "review_id": "ldxmHx0jyaBCTkmZZSM6Wg", "stars": 3, "date": "2010-08-31", "text": "Friendly reps, painfully high tire price quote. Found em for $100 less, per tire while waiting for my car to be pulled up.", "type": "review", "business_id": "NBmkXVdZd7TTr4eTFXHGMA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "UL5__ullYCgKAHmjyBFwtA", "review_id": "yXa0QeaooHsFdAC0OsLloA", "stars": 4, "date": "2009-01-16", "text": "Conspire is independent, open late, and yummy. Everything I look for in a coffee shop. You'll be a fan if you miss Counter Culture or Willow House.\n\nThe owner makes a wonderful latte. He steams the milk perfectly, better than most baristas in Phoenix! I just wish he had brewed coffee. Sure, the espresso is good, but it is not a replacement for a thoughtful, well mixed, drip. No, I do not want an americano instead. I want a cup of coffee!", "type": "review", "business_id": "vHgodZBJytT2r7K9c7SLMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lMPTQT0jf6-S7AxhMoOZzQ", "review_id": "WxUJPQfKzLIpx3hgEBAocg", "stars": 5, "date": "2011-12-18", "text": "My husband and I went tonight to teakwoods for the first time. We had a groupon. The place was packed. Different football games going on tvs all over the place. I didn't mind, but my hubby was in heaven:) Hostess told us every table was full except outside. So went outside, turned right around because I forgot about smokers, lol. \n We waited about 1 min and the hostess asked us if we would mind sharing a table with another couple. We said sure. There was 6 chairs and 4 of us total so 2 empties inbetween us. It was same as if we had our own table. Worked out great:)\n\n We started off with the jess Jess boneless wings- Delish!!!!! Not wet like other wings in fact I think they coat them and then throw them on the grill. We Loved them!\nI ordered a southern thang burger - my hubby got a Teaks touch \u00e9m all. They were huge! We each ended up taking half home. Not just huge but tasty. I loved mine. We decided to pay and use the groupon another time to ensure we would remember to come back:)\n\nGreat place- waitress nice and friendly, good food- we will eat there again!", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b0a6nLH0c8p5WJy1w7aO6Q", "review_id": "f_R1D8bIrZUdQFCeV3v5fA", "stars": 4, "date": "2012-06-28", "text": "After paying $10 for a footlong Tuna and a drink at Subway (read the review), I was obligated to find new lunchtime stomping grounds. And I've found one. \n\nHow someone is going to take points for \"ambiance\" in a Chicago style gyro eatery is worth my lolz. But, you're not going to a Chicgo style gyro eatery for \"ambiance\". You're going for good grub, and a bottomless drink cup. This place rocks for what it is. \n\nThe decor is cool. I spent the vast majority of my meal staring at the posterboard sized photos of downtown Chicaga. I was lost and mezmerized at the fine details of the photos. I would bite, and stare. Bite, and stare. \n\nAnd there was much to bite on. This pita came STUFFED with succulent, tasty meat. I'm not a tomato fan, so I left those for those who are. My gyro was oozing sauce. I would take a bite, and while enjoying the deliciousness that permeated my over-stuffed mouth, contemplated what to do about the sauce on my fingers. KNOWING that if I dared to open my mouth, I'd be looking at the food I had just started to chew, but understanding that if I did nothing with the sauce it would drip off of my fingers into the basket. Quite the dilemma, I tell you. Bite, and stare.... Ooooh! Look! Fries! Mmmmmmm.... \n\nI was there at 11:30 on a Thursday, and it was less than crowded. Parking was no issue. \n\nAll of this for less than $7. Yep. I'll take my $3, and give it to the bum on the street. Better than spent at Subway.", "type": "review", "business_id": "-ftQeUsqwDkExRg6IYrubQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "NsS1BXKprxXiiRcfe0tBmw", "stars": 4, "date": "2011-04-06", "text": "Like Red Robin, Carraba's is my go-to Italian joint that I know I wont be disappointed in. \n\nI love their bread and the yummy oil/herbs that go with it. I do ask for butter as well, but they always seem to bring out this frozen ball of butter. I don't get that.\n\nThe best dish they have is their Pollo Rosa Maria. It consists of two chicken breasts, stuff with fontina cheese and covered with a huge helping of sauteed mushrooms. Make sure to get it with fettuccine alfredo. It's a must!... if you don't like pasta, I dont know what to tel ya. The combo of the two is a match made in heaven.\n\nThey have great salads and their own special house dressing. Heads up on your ranch lovers. they do not have ranch dressing.\n\nAs for their deserts, Im not much of a fan until they have their quarterly creme brulet.\n\nGood food!", "type": "review", "business_id": "LmVcYycG_VI3S6RNgqiriw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "tVoCVBUg-ubBMLQlX5_SVQ", "review_id": "KfNq8JfqfpwsB2yA7TGwDg", "stars": 2, "date": "2009-09-08", "text": "The service was excellent and the location was great in Old Scottsdale. For the price, I was shocked at the small portions of food, although nicely presented. I'm not a big eater, but after we ate an over-priced dinner, appetizer portions, we had to go elsewhere to eat.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "S9m5BH1JuCIYLtoDsbXvCA", "stars": 4, "date": "2009-05-09", "text": "Wine tasting with light food, or just wine to go - both are good at this location, and they have numerous bottles that you don't see at the larger wine shops in the valley. \n\nMost employees know their fair share about wine unlike Total Wine & BevMo that only hires ignorant, inexpensive, unskilled labor.\n\nWines are served in proper glassware, by the individual glass, or in a \"flight\" if you wish to taste several. Located near Borders in the shopping center on the north side of Mayo.", "type": "review", "business_id": "3-zvo4Y_Bagw6Yifvh1TPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "x2aFqHHsGif-KWeW9oI-5g", "stars": 4, "date": "2007-02-28", "text": "I have seen this place for years and years but had never gone in until one night awhile ago. It turned out to be a really cool bar with live music and great drink specials.\n\nIt's a small place, but what it lacks in size, it makes up in character. It has a vibe all its own and if you get there early, you can sit right up front and check out the band. \n\nDo something different and go to Char's, you'll be glad you did.", "type": "review", "business_id": "ybXlbfOjrKDdz5NoC-G9Gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n4RPA0Cuem4ygQxPIdLBLQ", "review_id": "AKibA8GNkQdMUX_o0w6iAg", "stars": 3, "date": "2011-10-22", "text": "I've only flown in and out of Pheonix Airport through Southwest, so i've only been in one section of this airport- but it isn't that great. THe food choices are slim and none are fab- I mean, really what airport had fab food- wait DFW does! Anyway- the Sky Harbor does have is a great view and decently clean restrooms.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Di_8AmiLBwNRrE68bsaLMw", "review_id": "-aSyAxQ9oZEtqZ4Ut2DlHA", "stars": 2, "date": "2011-09-22", "text": "The food was AMAZING...\nThe service was mediocre.\nThe hostess ruined our entire experience.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ohRev2g3tvXpV3gBnhC-og", "review_id": "hU4zFQVGWU2ia11WHMgCbg", "stars": 3, "date": "2011-08-03", "text": "Had lunch here with Robyn N. and Rand H. the food here was ok and I liked it better before they did the so called renovation.All they did was add a mongolian BBQ and wash the windows. Some of my favorite things on the buffet were gone so I am dropping them down to 3 stars but still it was a good lunch.", "type": "review", "business_id": "Vm_P0F8OfpXlW1rw0eLoMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "QUy0VNWnADUfRFeOw-ywtQ", "stars": 5, "date": "2007-01-11", "text": "I have been Chipotle faithful for about 2 years now, and it wasn't very difficult. Restaurants such as Rubio's and the Blue Burrito just didn't stack up to a Chipotle burrito. Then came Qdoba.\n\nThis restaurant is pretty much a carbon copy of Chipotle (2 of the employees on duty actually worked at my former Chipotle of choice). I had a chicken burrito (my Chipotle norm) so I could make as direct of a comparison as possible. \n\nThe food was great, and afterwards I didn't get that \"punched in the stomach\" feeling that Chipotle gives me for some time after I eat it (I am convinced their rice expands in your stomach, but it tastes good so I suffer through it). \n\nI also picked up their frequent customer swipe card (buy 10 burritos get one free + free chips and salsa after activation). This place is closer to my place than any Chipotle, so I will be coming very often! \n\nP.S. If anyone if privy to the correct pronunciation let me know!\n(ku-doh-ba???)", "type": "review", "business_id": "b9dv7Q0A8XcJ44zzTDJeYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "duOtHUgA7iXzXUuAEIbdwg", "review_id": "NJBA8_Zcb5zZ5lxjQMZDOg", "stars": 3, "date": "2010-05-05", "text": "first time here and i wasnt all that impressed. lets just say i was afraid to ask my waitress when she was due.. but thats beside that point. bunch of tvs tho i had to squint to see whats going on. my eyes arent that great but whatever.\n\nit was a wednesday so they had margaritas and mexi beers on daily special, which varies. had 3 margaritas fairly fast. felt nearly nothing. weak as hell. i expected to half stumble out of the place but really i was fine.\n\ndecent selection of wing flavors. which i might start seeing as a bad sign. tried the El Heffe wings. dry and dusty but a decent taste, with no real kick like it says, except maybe in the stomach itself. and the extra dollar for them? shouldve been a dollar less.\n\ncant screw up peanuts. the peanut shells on the floor novelty was probably the best part of the place, because you cant be that messy anywhere else but a baseball game. thats an extra star in itself. \n\nthe rest of the menu looked good so i may be back on a day with better drink specials and try something new to eat. ill update this shit if i do so......", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "g84VjttN28PWiv_WtdhnSQ", "review_id": "cE1d9sRmPhK0rEWycLvUqg", "stars": 4, "date": "2008-08-25", "text": "I thought I disliked brownies, but these are damn good. In fact, every flavor is delicious. I was pleasantly surprised. Holla!", "type": "review", "business_id": "E2F25cRcYf_bWtvbCht0EQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "zhVOlwBuEgdGlHjwgVf3Jg", "review_id": "hHMczM9-lhqv_sDF6Gdc-Q", "stars": 5, "date": "2009-07-16", "text": "My review is only for the purchase of a non-disposable diaper at this swim school. As soon as I entered, I was promptly greeted and asked how they could help me. I explained that I was looking for a non-disposable diaper for my lil'un and they asked about weight etc and found the perfect one for her. \n\nThe lady explained to me that the non-disposable diapers are so good that even if for some reason there is an accidental Code Brown, if you know what I mean, they will not charge their patrons. They really believe in the product that they sell. \n\nTheir swimming pool looks nice and clean and this could really be a fun place for little kids. I know they do parent and child classes here also.", "type": "review", "business_id": "GVg4GHHRblwY1MFlV1ubAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "0BT613A1PBxuwxUzjEb6VQ", "review_id": "20IIoXS-PWR9thHa9ZWoeQ", "stars": 4, "date": "2011-10-30", "text": "A short an sweet report about lunch....\n\nThis was a quick lunch with my best friend Melissa and was well worth it!! \n\nWe were greeted by the counter person with a warm welcome and when I advised I had never been here before, she took me through a quick tour of the menu and suggested what to order. Following her suggestions was a great choice! \n\nWe both had the same thing, The Hawaiian BBQ Mix. This comes with BBQ Chicken, BBQ Beef and Kalbi Short Ribs. I also added Teriyaki sauce to the Chicken. The meals came with 2 scoops of rice, a single scoop of macaroni salad and veg. \n\nThe flavors were wonderful, the beat tender and juicy. The ribs were a thin slide and you had to navigate around the bones but it was delicious!\n\nFor months I have been threatening to stop by but never have, Now I am sad for all I have missed!! Definitely going back!! \n\nOverall: This place is a keeper! Good service, great food, served fairly quickly....We are already making plans for your next visit! Enjoy!", "type": "review", "business_id": "HBzv6vjTkeM-s_UIFCg2gg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nzhUfCzDUW8VFLc40nAtsA", "review_id": "bb_bsu_zjTSgOZzbS5gbVw", "stars": 5, "date": "2012-01-29", "text": "Good works", "type": "review", "business_id": "oWq_NiPJq20svbRCJ1hLGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "feQpvbp8jGBWMuG5uqbk3Q", "review_id": "5h0EVAee-RDbbKfhd6FB0g", "stars": 5, "date": "2012-06-21", "text": "A great value for a far superior hair cut than are likely to get from a national chain. We have been going to Tara for 3 years and she has created a warm and friendly environment that kids love. There are plenty of TV's for kids to watch a show if they are not big fans of haircuts.", "type": "review", "business_id": "4VzaYvZntWBRbr8VmwCiWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P9OhxvmNepsq5Fo2ZokzYg", "review_id": "_DiQOmvy1EbXuy8Wvm9MZg", "stars": 1, "date": "2010-09-29", "text": "I went here while on vacation visiting my friend. Neither of us had been there before, but I know they have lots of locations on the west coast, so we gave it a try. \n\nThe staff was totally rude. Before we went, we called to check the hours. The guy on the phone was patronizing and acted inconvenienced to have to give any information. \n\nThe pizza was blah - totally generic and nothing special. If you're going to have mediocre food, you better have exceptional service. Double fail.", "type": "review", "business_id": "lUhjcttOVyH9uNa0v6NFfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fDyt7FyHlFaEpeb1iLEzWg", "review_id": "hOcRdR_nAjp_mcTB38G6iQ", "stars": 5, "date": "2012-12-04", "text": "Always love it!! so good and good price", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 6, "useful": 6, "cool": 2}, "user_id": "AYGHNy8gPxl2Q-etTT3hZw", "review_id": "mSB78PqDRD7jE5g4yZuaMQ", "stars": 1, "date": "2011-09-26", "text": "This review is for the bar only.\nI had a date last week and was looking for a local bar to grab drinks at. I called Cycle on Wednesday and was told they would be open until at least midnight on Friday, and the guy was very nice. Friday arrives, and I take my date there, and when we enter the bar, the bartender makes a gas face and says they are closed for the night. I told her that I called just two days earlier and she just stared at me. No attempt at fixing anything, nada. One drunken patron at the bar yelled to open the bar back up, but I was over it. Well done cycle.", "type": "review", "business_id": "kJFS_3WlP6TFdNUYt6V6FA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "gvB1Ja5gT4ut9R0I9EA90g", "review_id": "jyLHPsY3ORieCtI_4if0Wg", "stars": 3, "date": "2012-04-01", "text": "This is a difficult review to write. My family started eating here when they first opened. We were a once a week customer. Very happy with the food and service, pizza is delicious. \nThen one evening, we placed our order asking for the special we always get, a 2 pizza deal.\nWhen we received our order, they placed 2 medium pizzas on our table. I immediately asked about the pizza size as we had always received 2 large pizzas as advertised. It turns out they have 2 specials, a 2 medium pizza deal and a 2 large pizza deal.\nThe employee never asked which deal and the fact that we were there with 5 people should have prompted them to ask me to specify which deal.\nI spoke to the owner of this location he agreed to make us another medium pizza to make up the size difference to which I agreed to.\nNearly 10 minutes later, the owner came to our table and told us that if he made us another pizza, he was going to have to charge us for it.\nI refused and now nearly 2 years later, we have chosen not to return to this establishment. \nMy money is important to me and it should be as important to any business, especially a small local business...\nI now choose a place slightly further away, but one that appreciates its customers.\nPizza - delicious\nCustomer appreciation - needs improvement\nHope some changes have been made over the last couple of years", "type": "review", "business_id": "t6EzCDJEqB0DVBq4XQv6Ow"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wxapwb1gulmqGVCNxVWjBQ", "review_id": "9US-sQ_45cjB4hG0Qcmqdg", "stars": 4, "date": "2010-08-14", "text": "My absolute favorite thing about summer in Scottsdale is that restaurants and hotels get SUPER cheap and do every night happy hours. Literally, best Happy Hour in South Scottsdale, by far. I originally wanted to eat at Culinary Drop Out, but the line was long and I was STARVING. Went into Wildfish, because even though I had never eaten there, and was left without my Bible of Yelp, I took a chance since I had eaten at its North Scottsdale, Big Brother location, Eddie V's, dozens of times. The menu is very similar to Eddie V's, but I would say, a bit trendier. Me and my man had appetizers and I had a $5 Mojito, and it was delicious. I had ahi tuna tar tar, a green salad with shrimp, shrimp cocktail, and by far, the best calamari I had ever had. It was like, salty, sweet, crunchy, and had cashews on it. I couldn't tell if I was eating calamari, or a dessert! Go for Happy hour FOR SURE. Great atmosphere, too...", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 2, "useful": 5, "cool": 1}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "kA3BXi97Cx4_-W5lbV_FMg", "stars": 2, "date": "2007-12-19", "text": "\"Honey I Shrunk the Lunch Specials and the Restaurant, too!\" is more apropos of a name for Thai Basil. Now don't get me wrong, I like Thai Basil. The food is decent and the interior is nice, but the tables/diners seem to be squished elbow-to-elbow New York style. Spartan, but slightly upscale, this restaurant ALWAYS seems to have a wait. \n\nThe yellow curry here is my favorite with a delicious balance of coconut, spice, carrots chicken and potatoes. I can't ever seem to get enough, and I really mean that. The portions here are small, and while lunch portions are expectedly small, portions elsewhere (at Chanpen Thai, for example) are larger and less expensive. Elsewhere the Thai BBQ chicken comes with 1/2 a chicken, but at Thai Basil they give you three lonely strips like cheapos! The massaman curry and pad thai are pretty good too, but I feel they're just OK. I've had better.\n\nService is hit or miss here. One thing that's consistent: they always seem to be understaffed. Once when I was dining alone (at a 4-person table) they had the nerve to ask me to move while in the middle of eating, to a 2-person table. \n\nTo me, Thai Basil is style over substance. Not impressed. Next.", "type": "review", "business_id": "0udEgNqy5rLR5pZ4kD19Og"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "i-1Uh8jR_xtJk2kPOt4BGA", "stars": 3, "date": "2008-10-08", "text": "While staying at The Pointe Hilton Tapatio, we decided to eat here for our anniversary dinner. To sum it up, I've had everything better somewhere else. Nothing blew my socks off. \n\nHubby is eating mostly vegetarian right now (due to a health concern), and he did really like his \"wild mushroom\" rigatoni. We weren't sure what was so \"wild\" about criminis and portobellos, but the pasta was in a light sauce with plenty of other veggies. His French Onion Soup was better at Capital Grille, my antipasto plate was far better at Craftsteak, and my ribeye was far better at 1130. They did serve a neat wedge of au gratin potatoes- multiple paper thin cheesy slices cut into a triangle. The gins are standard, but Hubby had a nice Bonny Doon Riesling. The free anniversary creme brulee was on the runny side, the vanilla was indiscernible, and the sugar crust was too thick- Ruth's Chris still wins that one in my book. Did I feel dinner was worth $120? Not so much.\n\nThe service at dinner was great, and it was fine at breakfast. Again, everything was decidedly mediocre and way overpriced. I've had a better Belgian waffle at IHOP, my bacon was limp, and the coffee not what I would expect from the Hilton. Hubby's BLT breakfast bagel was better.\n\nCome on, Hilton! Is this the best you can do?", "type": "review", "business_id": "Y3a3RkR97J_ReiKgiMXeJg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Oz0XuMILEjSFoQ8na4k0Wg", "review_id": "tBBloQyqI_B0If7ShHt49A", "stars": 3, "date": "2009-09-10", "text": "I've been to the Greene House many times. In general, I think it's pretty good. I go mostly for lunch, and I order from the sandwiches & salads typically.Tonight was no different - had a sandwich.\n\nI went with my brother as a belated bday celebration. Ordered the roast beef sandwich with a side salad instead of fries. Had the pineapple rum cake for dessert.\n\nThe first few times I ate at the Greene House, I was really impressed. I thought the food and service was very good. Over time, I've become less impressed. Tonight, the service was great - loved my server. Everything worked like a well-oiled machine. Good coordination between the staff, and we were kept well supplied throughout dinner.\n\nThe food is not consistent. That's a big issue I have with restaurants in general. Maybe I'm harsh, but I really believe being inconsistent knocks a place down a few notches. The problem with inconsistency is that you don't know what you're going to get. If a place is consistently mediocre, at least I know I'm going to get mediocre.\n\nTonight the real downer to the whole meal was the salad. Don't get me wrong, the sandwich was not great either - bun too big compared to the amount of meat and other filling items on the sandwich, not enough meat - but the side salad was really awful. First, if I moved the salad on my plate, there was a big pool of dressing on my plate. There is such a thing as a properly dressed salad, and this was not it. Way too much dressing. I might have been ok with that had the dressing been very good... which it wasn't. The balsamic dressing was too sweet, and was under seasoned (definitely needed more salt).\n\nThe dessert was good. It wasn't great... but it was good. The rum cake, in my opinion, was too dry. Maybe the ridiculously large scoop of gelato is supposed to compensate for that, but I'd prefer a more moist cake and less gelato. I'm also not a huge fan of places where the dessert is almost as big (if not bigger) than the entree. Give me a couple bites of something amazing rather than a huge plate of something mediocre. I felt that this dessert fell into the later category.\n\nI'm going to admit that this is only the second time I've ever had dessert at The Greene House, so I won't pass judgement on it's entire dessert menu, but I'll say the couple times I've been there, the dessert/entree ratio was way out of whack for my liking.", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Cw-PSJBNFtzWvUNeBsLxTQ", "review_id": "evEWx9S5J9rSBk_h0fjs3Q", "stars": 4, "date": "2011-10-06", "text": "Upon first glance this is appears to be a very usual strip mall type bar but behind the black glass lies a more unusual bar and grill.\n\nWe went on a Sunday for the Jets-Ravens game and it was a fun time.. This is one of those places you likely have passed a hundred times on the way to work or going to Scottsdale using Indian School Rd. It is set back into the strip mall so you would not see it from the street. Why Teakwoods is special comes from its extremely quality food which you would not expect from a place that lets you throw peanut shells on the floor. Like most bars it has a bevy of TV's and a rowdy but pleasant crowd. \n\nThe food was really good though I would never call this \"fine dining\". An extremely great place to go when you want to be stuffed with semi-greasy food..I had their famous wings and I can honestly say they were outrageous. I especially liked the cheese balls which are hard to find as WineBurger stopped carrying them.\n\nNo particular reason this place wasn't 5 stars..it just didnt have that 5 star feel..maybe in the future when I go back.", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ONPPazUH-Q3XblYJIaA1A", "review_id": "XMm1bZYrVdoBpjGOd3xMnQ", "stars": 5, "date": "2011-12-07", "text": "This place has exceptional food and pretty great service for how busy it always is.\nI like it because there are quite a few vegetarian options. Before I started my vegetarian kick the Baked wings were some of the best wings I have had anywhere.\n\nTry:\n- Mushroom Party Pizza\n- Roasted Corn Pizza\n- Baked Wings\n- Red Velvet Cake\n\nOnly con is the parking is kinda crazy.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "O5Ny7V84d8NkPCQCwrWfCg", "review_id": "iyRO2M14G2x4n-KAB70fiQ", "stars": 4, "date": "2007-09-30", "text": "We started our hike from the Central/7th Ave. entrance. This is quite a hike initially. You will be out of breath if you're not a cardio master. I've been working out 5 days a week for the past 6 months and I was huffing and puffing a bit. I felt like a chump because I was having a rough time at first, but after the initial hill, it's not bad. \n\nThe views of Phoenix are beautiful, but like Dan E.'s review said......\"Don't let the beautiful desert deceive you\" it is toasty up there even on a beautiful 85 degree day like yesterday. Always bring water!", "type": "review", "business_id": "ToJ9eJ9pKZXhlVyUmCFnJw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "0eukKit44uJwwOtSw_TCpA", "stars": 4, "date": "2011-01-21", "text": "So now I've been to two Ski Pros in the Valley and I'm pleasantly please with both of them when it comes to their merchandise. I haven't rented from them yet, but if their selection of clothing has anything to say about what they offer then I approve! \n\nFrom Spyder, to North Face to Columbia, they have everything to choose from. The ski clothes are adorable and trendy. And the best part? The sales! They have a continuous sale going on it feels like, and the rumor on the street is that a huge sale is coming in February. Count me in!", "type": "review", "business_id": "4CMY6DwWo41UdwzE-TUW9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-twH-2L0l6AOlTDdp01wuw", "review_id": "_vtmqxjl6xdRd52No5k3Cw", "stars": 2, "date": "2008-10-14", "text": "I was working for a non-profit organization and Amare was actually there. He was gracious enough to take a few pictures with some of our children who are clients, which was nice of him. \n\nBut, as far as the food goes - it's bland. I've been here on two separate occassions other than work, and while the atmosphere is beautiful (the seats and booths are roomy and comfy and there are even more seats that stretches out to the back, leading to a small \"VIP\" section), the food is just not that great.", "type": "review", "business_id": "Ydc74ermKp1L4fYOrPvzXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0YEHnDV4Pc0Cu6lqBC7jyA", "review_id": "l9uLYHhrcNqp6smm2ERc5g", "stars": 5, "date": "2008-10-20", "text": "Okay... just let me say, these guys are the best! My family and I stayed in Scottsdale for 5 weeks this past summer and we frequented Baskin Robbins almost every single night. No kidding. And, yes, my butt thanks me not for such goings on. But at any rate, we have never met such a friendly ice cream staff. I am a PITA when it comes to ordering my ice cream -- I like jamoca ice cream with almonds mixed in, then I like my fudge on the side and I like extra fudge. This sort of ice cream order has raised a few brows, and furrowed some in the past, but not here, not these guys! And the couple of times, my rice-high (from the sushi place next door) son dropped his cone on the floor, they were so kind and understanding about it, they just scooped up the mess while they joked around with my little one about all the ice cream they've had to wipe off the floor in the past with other customers, and made him a fresh new cone, adding extra sprinkles, for good measure. Viola! No more tears and only big smiles from that moment on. They really are the best! I can't wait to visit them again! :)", "type": "review", "business_id": "wnd-rMzAULvXx2bqjKDihA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JnRT9i2d71pY8D8ngzCz9Q", "review_id": "lW4G0t6AI3lZQ6QSmv8DGA", "stars": 2, "date": "2010-04-12", "text": "BBQ has to be one of my favorite foods and when a co worker suggested this place I was all for it. Living on the west side it was quite the drive but being that I am a BBQ fanatic I had to see what this was all about. \n\nFirst off Lucille's has a good location. Its located by Dave and Buster in the Tempe Marketplace. The look of the place is gimmicky but in a Famous Dave's kinda way. They have old school signs, mason jars to drink out of, and all the little fake things to make you seem like you have gone to Memphis or where ever they are trying to transport you.\n\nThe service was absolutely awful. It took way to long to get drinks and even longer to get refills. Attitude the whole time. Here is a tip if you want a good tip bust your butt. Then you will have more money to pay for your tuition (half the staff is college kids). And do not roll your eyes when I don't want to try your suggestions. They tell you they smoke all their meats in house im not impressed. \n\nNow onto the most important part the BBQ. We had the brisket,half chicken and rib tips with a side of greens and sweet potato fries. \n\nThe chicken was good. It had a smoke on it and was tender not real complaints. The portion size was good.\n\nBrisket was dry and you couldn't cut it with a fork. That tough. Maybe over smoked? Portion size tiny. 4 strips maybe 3 or 4 inches long.\n\nRib Tips were dry and covered in sauce. Hardly any meat on them. Most places in the valley load you up on Rib Tips when you order they are a cheap meat. But not this place. You get a scoop full. Boo.\n\nCollard greens were disgusting. Cooked in some weird pork parts and they were bitter. Greens are not supposed to be bitter if cooked right!\n\nSweet Potato Fries. You can't really mess these up they probably came frozen. So I would recommend these over regular fries.\n\nThe starter of a biscuit with sugar on top was just weird. WEIRD WEIRD WEIRD. And the biscuit wasn't even warm enough to melt the sugar I mean apple butter. \n\nOne last thing the house and spicy BBQ sauce's main ingredients are CORN SYRUP thats how they thicken it! seriously that should tell you something.\n\nOverall two thumbs down. Stay away there are plenty of other great BBQ spots in the valley.", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "irmdZNNl1DmyNX43bzZN8w", "stars": 5, "date": "2008-03-06", "text": "I'm giving this Urban a perfect rating, for it never fails that when I walk through its doors, I always find something I want (or could) buy - even if it's a gift for somebody else, like my younger sister or best bud in Detroit. I even found one of my favorite sweaters here on clearance for $20. I think this Urban has a better selection for women than the one in Tempe, so if I had my choice, I'd come here to browse and buy. \n\nPlus, it's within walking distance of Scottsdale Fashion Park, Borders and Olive & Ivy (the perfect spot for brunch/lunch).", "type": "review", "business_id": "l0c2pmxGYvCfeaCRiYGAvQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "85ldy3awOwcrXb_pyZRESQ", "stars": 3, "date": "2008-05-24", "text": "Wanting to purge my guilt for constantly demanding one of my suburban friends to come downtown whenever we go out, I recently dragged another CenPho friend out to suburbia so we could pay him a visit in his homeland for once. San Tan Brewery was our chosen destination.\n\nWill I ever come out here again? No, unless guilt once again consumes me. Would I come back if I lived in Chandler? Sure. (What choice would I have?) \n\nThe food (an Aegean Stuffed Burger with fries) was good. The beer was even better. The service was annoyingly slow due either to understaffing or inattentiveness. The crowd was large and the place was packed when we arrived around 9:30, but at 11:30 (on a Friday night) it completely cleared out.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eS6V4zze6XuDxzdIWx64gg", "review_id": "yZvEn57bPyle_NLVHhCIHg", "stars": 1, "date": "2011-06-27", "text": "This place is a freaking joke. Expect an overcrowded waiting room and at minimum an hour wait. They see children but there is nothing in the waiting room to entertain them so they are all screaming and crying. There's not even room for a stroller. Horrible, horrible experience!", "type": "review", "business_id": "7_dU_XeJsEN4scI64vwNkQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "q9V3RboY327jGyFAdCt1Zw", "review_id": "NdP0xjQ3Cqr3iDTlAJAyKw", "stars": 5, "date": "2011-10-27", "text": "Saw this place on Triple D so I decided to give her try. My expectations were high and when I arrived I was shocked that on a Thursday morning the line was extra extra long. Had to wait patiently which when it comes to food I don't like. \n\nBut needless to say the wait was worth it because when I got in there I was served quickly. I ordered the pork chop, eggs, and hash browns. The pork chop there is fabulous and the toast and home made grape jelly was good. \n\nI would recommend this place for breakfast to anyone who is in the downtown area of Phoenix. Make sure to try the bacon too.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "02LanstxBzqF_foJ8kFTBA", "review_id": "vF2SFJC6-3U6qE8CheSr4Q", "stars": 3, "date": "2009-08-04", "text": "Awesome location, cool place....the Chopped Salad is by far the most amazing salad I have ever had in my life (but way...and I mean way to small)...If it were double the portion for the price I would probably visit more. I had a flight when I was there...it took forever (as I know flights are supposed to)...but this was ridiculous...the buffalo meat is so gross...it reminds me of when a stray dog visits my lawn...\n\nThe BBQ sauce is good....the staff is just OK. Nothing mind blowing. I think staff in a place with a pricey menu should spoil the guests a bit...Give away a free desert when you know the service and meal is just OK...this may bring your customer base back to visit just because you redeemed yourself at the end.\n\nOverall its a cool place. It fits with the downtown Scottsdale lifestyle. But stay away from the buffalo, because it will give doggy bag a whole new meaning....", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MQ96E0cw4L4e9ixXbq15Pg", "review_id": "bVi18QTIhM7qvF_fpHrriA", "stars": 5, "date": "2009-04-26", "text": "I love the clothes and accessories, the staff is friendly and the prices accomodate everyone!", "type": "review", "business_id": "qsThMZ3lXWYLN4t08ScsNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jRtdO03kWbReasB_vBlTsQ", "review_id": "KsmZT0_IdiHdv0CbhYHmPA", "stars": 4, "date": "2010-02-17", "text": "I was surprised at how good the food was at this tiny place. I normally avoid the \"hole-in-the-wall\" type places, but I decided to give this one a try and SO happy I did. The food was well priced and not too greasy. The ingredients taste fresh and it has that family owned feeling.", "type": "review", "business_id": "Yb2pNCxYR32XKmpirqJqeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DwU7KVfebA70AlVtX0iOWw", "review_id": "GzfJuoajVBCGj7gb69uTdQ", "stars": 4, "date": "2011-01-14", "text": "Nice , big, clean, and lots to chose from. This place has a very nice SCUBA section, and that is hard to find in the desert. I purchased a gift card for a friend and that is why I showed up. Lots of good stuff and a wonderful staff. I live by Dicks so that is where I usually go, but if in the neighborhood I would hit them up.", "type": "review", "business_id": "9Woei-yx8GFIOeZ3eo_ElQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "_bxWNNLV8T6WaPNb97SQqw", "stars": 1, "date": "2011-07-19", "text": "Huge line for incompetent employees who don't even know how to wash cars.", "type": "review", "business_id": "qugpY0TRuenI5fMFdegMUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iqqMl8LR9KvZlSvxoZwScw", "review_id": "UMgXVjbJECk8Oh4tl6ZTcw", "stars": 5, "date": "2011-05-31", "text": "I`ve had work done by this shop a few times thruoghout the past few years. My latest experience was when my sons car broke its timing belt and needed substantial repairs. Bob informed us that he could move the car out of the way in his lot to be safely stored until we decided whether we wanted to fix it or not. This is just one of the reasons why I`ll always bring my business to him.", "type": "review", "business_id": "E3UDblz_KgC6Gfftk6ZScA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "42D3biuVZiSeVPQv2XRwww", "review_id": "2FUsL9-YmO_bVk-OegqRiQ", "stars": 4, "date": "2012-09-11", "text": "Best seafood place I have found in the Phoenix area.\n\nEverything from the crap dip to the crab legs and oysters is delicious. They have a wonderful fish selection as well and even their steaks are good.\n\nService has always been excellent every time I have gone.\n\nCan get very busy on nights so try and go early if you can.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XrFaXhc3ggNOhlI2UABQ1w", "review_id": "OJQawhAenseSeEFhkvLzfw", "stars": 2, "date": "2012-03-29", "text": "I guess you really can't put lipstick on a pig. I will say this, it's nice inside all new building and equipment, but it's very much a westside gym. Many Raider hats and 0.0 eye candy. I would rather go to Moon Valley all the same new stuff but much better loking people. I will say this, it's good to see people in a gym that need to be there, and it also seems very gay friendly.", "type": "review", "business_id": "9P9MqY3VVUc63qJR2iWg5A"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "CtqmcAJCB_58EaAFFPJy3w", "stars": 4, "date": "2012-03-27", "text": "A new breakfast option in old town Scottsdale. The decor is superb and the weekend crowd is minimal. Juevos Rancheros and the Skirt Steak & Eggs are both fabulous. Prices for breakfast are reasonable.", "type": "review", "business_id": "lKQ5hnkSQ-XP80jNCH46nQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "BvjSQAFcROLp27QjaRcyoA", "review_id": "VQqwoz4s-xYwGoqJDASTfg", "stars": 2, "date": "2012-05-08", "text": ":( I really wanted to like this place. I thoroughly enjoyed the farm, but I will review it separately. We were greeted by a busy waiter who quickly pointed to self-serve drinks (coffee, tea, water and lemonade) and ran off. We helped ourselves to some coffee and lemonade before we received our menus which stated that each drink was $2.75. I ordered the white truffled scrambled egg skillet (white truffles are my fave). I did not detect one bit of truffle essence in this dish. My fiance ordered the Cowboy Breakfast. It was like watered down chili with and egg on top. No great. The concept is great, but the way in which the food is prepared is super disappointing.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7W4egS-WyR0hRHMfQtPEOQ", "review_id": "bLd715CpGVR07-X8mM8-yA", "stars": 5, "date": "2011-04-17", "text": "This place has been here 7 years and we have never been. Are you kidding me? The food is excellent. The people who work here are friendly and seem to be happy to be there, which is most important. I tried the make your own half salad and half sandwich. YUMMY!!! There are many choices for salad toppings. There us nothing I like more than a huge, fresh salad. I chose to top my salad with avocado, tomato, bacon, edemame, feta cheese, and whipped balsamic vinaigrette. I really think this was the best salad I have ever had! They make the salad in front of you and mix in the perfect amount of dressing. I chose the chicken pesto sandwich. The combo of these items was a perfect portion for this hungry girl. The sandwich was excellent. My hubby ordered the Cuban pork sandwich. This is one huge sandwich! It was difficult to get his mouth around it, but once he did, it was awesome!! Typically, we don't like coleslaw, but it was really good, especially combined with the tender pork. We will return to the Market Bistro, again and again. \nLoved it!!!!", "type": "review", "business_id": "Ch_2Ye0w4Q9l3VeVW7VNHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3TXEOX7mWcvkdXPmAP3LYg", "review_id": "RMkq-Sk1roD-7s9q79wb4A", "stars": 5, "date": "2011-01-06", "text": "In being a bit of a burrito man, I was suspicious that a torta could ever marvel a tortilla filled with meat. However, all of the hype on yelp and man vs. food was appropriate, as the torta provided a massive yet tasty introduction to pork, turkey, guacamole, and a bunch of other hidden great tastes all in one sandwich. The carne asada quesadilla blew us away-- HUGE in portion, amazing meat, and super flavorful. I was also glad to be one of the few gringos in this place. People were friendly toward us in any case. Check out the horchata for some authentic aguas frescas...", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FRdQICEr7bcv2gbXDFyS_A", "review_id": "auXeRFEpvKoOM8fxPQfm0w", "stars": 4, "date": "2011-05-01", "text": "Big craft beer selection, in bottles and on tap. Not for those who go to a bar looking for mixed drinks (don't think they even sell liquor) or people who want to drink bud light. You're likely to find something you like, even if you're a picky beer drinker, you just might have a hard time narrowing down from the huge selection. The coolest thing about his place is the liquor store style fridges, filled with individually and six pack priced beers. You can just walk up to the fridges, pull out what you want and either drink it there or take it home. Definitely a unique place. They also sell food, which we didn't have, but was available. Next to food poses outside, and other bars and clubs.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-KV5e7bFg8BipE2vnmWf8Q", "review_id": "iRfxCP-VxiBiMBb8j0fsYQ", "stars": 5, "date": "2011-09-01", "text": "Fair and honest prices. Friends and I have been ripped off by other companies for the last several years wondering if there was anyone honest left. During the summer, you're at the mercy of the air conditioning techs and usually they take advantage of it.\n\nI'm very happy with their service. Very prompt and professional. Father and son make a great team.\n\nGreat warranty service. An electronic part he installed died after 3 weeks. He came out immediately and replaced the item for no charge.", "type": "review", "business_id": "YXp62JdXJDzX0EuRv_zgMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hCKkTKakQ0XRSspZaMauxw", "review_id": "Qpt4qvO2PtVnzENgU9eIqA", "stars": 3, "date": "2009-12-27", "text": "go to the reverse happy hour where reasonably edible sushi is served at reasonable prices amidst, in the instance of our visit, barely legal drinking aged crowd. in a mall. nuff said.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WQX1Hio90vjGkASKM0v5kA", "review_id": "KdxkWDRPYgDtpM6HHOs1nA", "stars": 2, "date": "2011-08-30", "text": "this place is no where close to anything you can get in la or oc. It taste liked it came out of the bag. plain and simple", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "OAhO2G3tOfMpO40UlMqbiA", "review_id": "0E4CY0FSqaZyaRvmc0QEmA", "stars": 4, "date": "2011-07-28", "text": "Couple things. First, I am reviewing a Delivery order that I placed. (If you didn't know that they delivered... Now you do!)\n\nYou start by looking at their website, which is modest. It's a black background with White text. Pretty much all of their food is available for take-out, except for the alcohol.\n\n*TIP* Make sure to look at their PDF Menu. It has TONS of more choices than what is listed on their Website. I wasn't even aware of this fact until I had ordered my food.\n\nAt this point, they do not have online ordering set up, so you call and place your order that way.\n\nCornish Pasty's (pronounced Pastie, not Pastey) are amazingly delicious. They take whatever filling you choose (from the Chicken Alfredo to the Bangers and Mash), and they place it in a thin, crisp dough that surrounds it. Think of a Calzone, except the Irish version.\n\nNow, these are very, very filling. They are modestly priced (all of them are less than $10), and they are EXTREMELY DELICIOUS.\n\nMake sure you give them a try. I will sure be eating here again!", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8-Ujs-yekCPz_hsQr5rvaQ", "review_id": "5OgfThyHYSxeh-HoR8N_Pg", "stars": 5, "date": "2011-08-10", "text": "So yummy! Strange combination but great place", "type": "review", "business_id": "qSLdUiI2edATC3KBT2zf4Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "xPkxEhk1lHgep2NredCJUA", "stars": 2, "date": "2011-09-07", "text": "So sad closed. Oh well.", "type": "review", "business_id": "fa776KC8le1MHOOws_1PNA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "JGGXT447a5zVfanaIUb8uQ", "review_id": "YQf00BwxJlv2Vz2zKG4nXg", "stars": 2, "date": "2012-06-06", "text": "What more can I say except it is over priced, greasy Mexican food! I have had better in Texas, the only thing that saved them from being a one star is their great salsa!", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EZ_Qltx0iJyDN--HzLcXQg", "review_id": "IYPLbiHWGgfQxlBQm5w2Cw", "stars": 4, "date": "2012-03-10", "text": "Food was really good. You could tell it's good quality. Our service was not so good. Workers are friendly but were having bad day on service.", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BfsjJKw0daRK64a4uARuNA", "review_id": "3MU-MH2ZpZEkX0Bhtvgzmg", "stars": 4, "date": "2011-08-22", "text": "They had amazingly quick service during lunch! The servers were VERY polite, almost to the point of being obnoxious. I ordered the daily special--bacon cheeseburger--which came out hot, fresh, and delicious, though the fries were heavily over-salted. Our drinks were also quickly refilled without us asking, which was nice but unfortunately their tea basically tasted like water. Overall, it was a good experience and I would come back again.", "type": "review", "business_id": "Rus-ewyqLj2D1RlqK-je4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U15ZA0OLczLHFglNnipZeg", "review_id": "wJ57XX9tJTeTKcfOW0kw-g", "stars": 5, "date": "2012-09-10", "text": "I absoloutely love this place. Great Coffee, Americanos, and Lattes. Try the Chemex if you are looking for something unique. Very Tasty Breakfast Burritos and friendly staff. I wish the North Location was still open, but I'll take their brews anywhere I can get them. Skip Starbucks and hit up a real coffee shop...", "type": "review", "business_id": "3OF6i6LTzRXpwNgodv7aeQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "pWTUeXZKI6oJ78WTET5y2A", "review_id": "12w_M77Ow9_XTqFh_VW7ig", "stars": 2, "date": "2010-11-07", "text": "I contacted the owner based on his comment regarding my review and he never contacted me back. Hmmm...", "type": "review", "business_id": "JEreQgso7MH_Io3DXGsEOw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "qbhWU6Wn0zvVVct1HkT_GQ", "review_id": "1EQ4TSG1fYh-2D1cCWCBtg", "stars": 5, "date": "2009-07-28", "text": "I'm a bit of a snob, I admit it. I generally prefer the full-service pamper me kind of salons that charge an arm and a leg. But times are tight - and I want my nails and my money. \n\nEnter Biagio. \n\nWhen you first walk into Biagio you would think you had walked into a fancy day spa. But when you read the prices, you wonder how they can stay in business. A \"spa\" pedicure, one of the most expensive treatments, is a whopping $49 (I say whopping with a sense of sarcasm). Not only do you get a great pedicure (best I've EVER received), but you get a leg and neck massage (yes the chairs are massage chairs, but real hands give you a real massage). \n\nA \"spa\" manicure, which also comes with a neck massage, is $25. \n\nThe technicians are very nice, the store is immaculate, the tools are all sterilized, and the treatments are very high quality (even for a snob like me). Plus the atmosphere makes you feel like you are at a spa, not a strip-mall dive nail salon. \n\nI highly recommend Biagio. I have been there several times, and plan to go back often.", "type": "review", "business_id": "rE2InW2Jmjy6hzH3p4Iyjw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PVfj1GRD3l_YakchYoTyNw", "review_id": "q9-5bSlOE9e4MWkMNurh6Q", "stars": 2, "date": "2010-01-23", "text": "This joins my long list of places that I really want to love, but ...\n\nI love the atmosphere. I love what they SAY they stand for. I love the concept of two hippies dropping out and dropping back in as restaurateurs.\n\nWhat I don't love is the food. The chicken and fish tacos I had were bland. No flavoriing. Thank god they had hot sauce (not homemade, store bought) on the table to spice things up a bit.\n\nOn a positive note, the prives were good and the salsa they serve with store-bought chips wasn't bad. And the lemonade (they were out of most flavors both times I visited) was good. \n\nBut overall, maybe it's time for the hippies to clean up their act. Worry about the food a little more than the message.", "type": "review", "business_id": "qlrZzAktK8wODSHxhLEK7w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "-twH-2L0l6AOlTDdp01wuw", "review_id": "Md_CCdiDRfz9FWWRDK6XHg", "stars": 5, "date": "2008-05-01", "text": "I actually love this place and I always get great service when I'm there. The tootsie roll is by far my favorite. \n\nI must say, however, that I recommend the Sakana on Power over the one on Elliot... for some reason, I like the sushi over there better...?", "type": "review", "business_id": "0vzZ_Bcb02rJljeMU9XkBw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "a49zcNZ_EEieyGh73x_c_Q", "stars": 2, "date": "2012-08-06", "text": "Honestly, not that exciting. I heard a lot of hype about it from ASU friends of mine but I wasn't impressed. It was just your run of the mill Mexican food. And I didn't like that you ordered at the counter and got your chips in a paper gravy boat. The whole concept of the resturant would flow so much easier if it was set up like a regular sit down Mexican resturant.\nBut appreantly it makes wonderful hangover food. I dunno.", "type": "review", "business_id": "YL_EiYALmGUd1lm5HZgL3w"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "ofPkm7BTBJeaD0OkmZNdNQ", "review_id": "aAYvQsZCahLW8xs6oUXZ6A", "stars": 5, "date": "2012-03-10", "text": "Best cupcakes ever. I can't get enough of the Strawberry and Red Velvet. They even have a gluten free Red Velvet! Order several to take home. They will give you a zip-loc bag that keeps them fresh and moist for days! I'm addicted. Not cheap, about $22 for 6 but when you taste them, who cares....", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "AJX3G9tGOvShz85EuDA_-A", "review_id": "fhOMHh5NMiODyz96lroADQ", "stars": 5, "date": "2008-01-22", "text": "Simply the best sandwiches I have ever tasted.\n\nThe Mozarella, Tomato, Basil is perfect. The focaccia bread is perfectly crunchy and slightly salted to the consummate texture.\n\nI wish I still worked closer...", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PV5Lv_xl3DDAcAchFJCbXQ", "review_id": "EZ7bvP5HOzt-HWOYVRQcLQ", "stars": 1, "date": "2010-03-28", "text": "Really as bad as it gets.\nCrap food.\nOver priced.\nUgly, tasteless interior\nBad music and music system\nTired staff\nThis place needs to either have a complete redo or it needs to close. \nI would rather go down the street and eat at Applebee's, and I have never been to an Applebee's. Too many other choices now in the neighborhood for this place to go on in its present condition. Then again, there might be enough people around these parts with really bad taste to keep the place going.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eAgcqq8MAe1ztS4gqDbpTA", "review_id": "XjZVIuxey7xxQBbHVJGbiw", "stars": 4, "date": "2011-07-02", "text": "I recently went to my first First Friday (and my first trip to downtown Phoenix). After a few hours at the Phoenix Art Museum, friends and I hopped on the light rail and tried a new restaurant. Enter The Breadfruit.\n\nEasy to find (sign on the street corner) on a charming and quiet little street sits The Breadfruit with a hostess standing out front greeting guests. You can see the very intimate seating area from the street and it was packed (a good thing for 8:30pm on a Friday night). We sat and waited outside at the cute little tables (way too hot to eat a full meal outside). We were offered menus to peruse while we waited about 10 minutes for a table.\n\nInside, we ordered two mixed drinks (a mojito vanilla for me). They were strong and very good. The mojito was very minty and refreshing and my mojito-loving friend said he should have ordered a mojito. (Read: Get a mojito.)\n\nThe Food: We split a tilapia patty (very spicy!) for an appetizer. (Patties are Jamaican empanadas.) \nI had the coconut curried tofu with rice and peas, ripe plantains, and veggies. This is the one of the best tofu dishes I have ever had. My only complaint is that Breadfruit needs to have more plantains per plate. They are so good!\nOne friend had the curried chicken and dumpling with a green banana, veggies, plantains, and a side order of rice and peas. Although he didn't like the whole wheat dumpling, he loved the curry sauce and the green banana. He called the sauce \"delectable.\" \n\nOverall, this is a great place. Small, but great. The drinks are strong, the food is great, and the serve is prompt. Our only regrets are 1) not enough plantains and 2) we should have gotten dessert.", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OAES6IjJsW06P0rZdx3omA", "review_id": "3Qvh68IMP4TdFaDbAQcJpA", "stars": 4, "date": "2008-05-07", "text": "When my mom suggested we eat at a simple casual Mexican restaurant for her birthday/my brother's grad school graduation celebration, I was a little surprised. She herself has only been in one other Mexican restaurant years ago and loved it...no wait, I take that back. She's been in one other one but did not enjoy it as much as the first time. Eh. Anyhoo...My brother suggested Arriba because it is one of his favorite restaurants. (Note: I keep encouraging him to yelp about his favorite places in Phoenix since he lives there.) \n\nIt was not terribly crowded for a Saturday afternoon, which was nice. I was pleased to learn that they have brunch options which is served until 4 PM on the weekends, if I recall. Up until the restaurant, I had trouble deciding what I wanted to eat since I had gained some weight being around family....eh, that happens right? I opted for the make your own omelet, and it came with beans and some potatoes. The potatoes were bland and needed a little salt for flavor. My dad who has never stepped in a Mexican restaurant, only because he is not a huge fan or an expert in Mexican cuisine, enjoyed his carne asada and rice. His plate was CLEAN! He did say he would come back again, and for my dad to say that is a good thing. My mom and brother shared some a lot of food, but honestly I was not paying attention to what they ordered. Oh and for dessert? We had 3 orders of the flan. I still stand by that my mom makes the best leche flan ever, but the one at Arriba was just as tasty. I think the cinnamon sprinkles help. ;-) \n\nOverall, I would have to say that we as a family enjoyed this place. Sadly, our trip in Phoenix was too short otherwise we would have gone back for at least a second round. We were seated right away and had great service. \n\nPS: The little to-go menus at the front are slightly different than the big menus at the table. I only know because my dad wanted to order something else from the small menu, and apparently it is only served during the week.", "type": "review", "business_id": "ib-y5nsfn3unE0lLY1vfAw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "55-K5KXdbrUGQCNF8z3hHQ", "review_id": "eCxhed5UiBrf-et9XpwtOw", "stars": 5, "date": "2012-11-27", "text": "These are some great cheesesteaks. I have come here multiplier times and have never left unhappy. The staff are nice and the food is delicious. \nAlso try the 'Cheesesteak Fries' they are freakin amazing! I am glad I work next to this place, always a great lunch.", "type": "review", "business_id": "QwaoxP5Mgm3PJuZo_4bFsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jBCbHpRaE8ONFzSaXS05PQ", "review_id": "tYc2jkQWeGGfPbFvzC9y0Q", "stars": 5, "date": "2010-09-10", "text": "I work next door, and I love her ! She has done an excellent job of slim fitting my baggy shirts !! \n\nWell she did ask me if I was gay but then hey, given how animated I get about clothes I dont blame her for askin ! My SO found this rather amusing and laughed her head off... oh well getting back to my review. \n\nI love nadya cuz she does a wonderful job, each time. She knows when the darts will give the slimming effect and when the sides are to be taken in. Its never too tight and never too lose, and she always always delivers on time. \n\nI have been here atleast 10 times !! Trust me my metrosexuality wouldnt let me let me go back if it wasnt a five star service!!", "type": "review", "business_id": "CEWLmBrkM_a214RaGqUbRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "rLtvqeuRKyKmrapvyM_uEA", "stars": 4, "date": "2006-11-27", "text": "This is one of my favorite dive mexican places in Phoenix.... the place it pretty clean for a mexican place despite the shady looking outside. Everytime that i have been there i always get the lunch specials... they are a ton of food and cheap (5 to 7 bucks for a large plate)... The staff is very friendly and they get you in and out in a hurry... i have never been here for dinner... and not sure if i want to... i like being in that area during daylight hours.", "type": "review", "business_id": "vz2zQQSjy-NnnKLZzjjoxA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h3ZuEh28kwBd2iI5oAFWgg", "review_id": "WphtWBE2tTkHCg2ilEtgFw", "stars": 5, "date": "2011-08-22", "text": "Excellent food! I do say the service isn't always the best, but the outcome of the food exceeds my expectations. Definitely recommend ordering the Artichoke Salad! Not what you'd expect out of a typical boring salad! Not just stuffed with a large amount of dull, boring lettuce, but filled with spices and tons of flavor.", "type": "review", "business_id": "WyJRPTn2FCFdj2cYT9pqyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7CkkiLWuqmeVWQE-pLaxIQ", "review_id": "OLZSciec2FP4Gji_v0i2ZA", "stars": 5, "date": "2011-04-29", "text": "Jodi is fantastic! Extraordinary! After too many expensive yet less-than-average salon expereinces, my hair has been less beautiful than its potential. Jodi gave me a very thorough consultation after I did some research to find the best colorist for me. During my appointment, Jodi was professional, efficient and friendly. I left the salon with soft, gorgeous hair... lovely color, care of the INOA line, and I felt beautiful again. She did what at least half a dozen other highly recommended colorists did not accomplish. I'm ecstatic and relieved and I have finally found my colorist. What more can a girl ask? Thanks so much, Jodi.", "type": "review", "business_id": "khe1MDgeWH6Es7yuTMeN7g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "-o3uGadqen-bc1HjMx_8Bw", "review_id": "emJl9kiTGRnNbAt0z04DAQ", "stars": 5, "date": "2012-03-23", "text": "This location is quieter than the one at Arizona Mills Mall. No screaming kids in your way. The clothes are less disheveled, still attached to the hanger, but for the same low price. I get my husband's work shirts here for like $8. Ross understands that there are still skinny Americans out there and they carry size 4 pants. YESSSSS!\n\nI -3 the unusual house goods you can find at Ross. I redid my whole bathroom and made it into a nice Victorian style in light pink and a wood brown. They had this soft-green painted shelf that looked like a twisted vine. Where else can you find something like that? I found these two toothbrush cups that were painted with butterflies. Worth the $5 each. My bathroom is gorgeous. You'll want to take a crap in there.", "type": "review", "business_id": "rSCQdj959petZ-vBGtq4xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5mvaOdV7nyKCP2Xct7yDTw", "review_id": "9o9V6DK7LRHgwzYYA7vUfg", "stars": 3, "date": "2012-10-21", "text": "Super cool place I've been to 3-4 times now and only drawback is the noise if you are with someone you want to have a conversation with. Service could be better, but location and above average food at decent prices cancel that out.", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "OYyRWmDTF0T4ywmGKMeqBA", "stars": 3, "date": "2009-12-31", "text": "YogurtBuilderz provides a good sized dining area with many choices of yogurt and toppings. I did find it a little difficult to locate when I attempted to find the building - it is tucked away in the back corner of a strip mall parking lot. It was dark, late at night and took a few passes around the parking lot to zero in on the location. The staff was very friendly and the place was busy even for a Sunday night. For the staff and selection I give it a 3 star rating. It was good, but I didn't find it any different than the growing list of competition. \n\nI know this place is popular and self-serve frozen yogurt establishments are all the rage now. The economic model is great - you pay by the ounce and have your choice of any variety of yogurt and any topping available. Customers have the opportunity to build it as they wish, which allows those with specific tastes to have their wants fulfilled more so than a traditional store offering the generic selection of choices. \n\nAll of that in mind, I don't like it (the industry). Too many choices creates an opportunity for indecision and slows down the lines as people stand around wondering what to put in it next. For those new to the game, you can create something that turns out to be rather nasty - for example, the white chocolate sauce is really very sweet and I find if mixed with other toppings makes it almost unbearable. The other reason I do not like these places is that I do not like to pay for food that I then have to make and serve myself. I go to restaurants and pay for a meal rather than cook it at home because a) I don't like doing it and b) I am horrific at it. While frozen yogurt does not require much preparation, there is still some assembly required. If I am paying, I prefer to have it built for me. But I realize I am in the minority. As popular as these chains are becoming I wouldn't be surprised to see \"FroYo\" overtake \"unfriend\" as word of the year in 2010.", "type": "review", "business_id": "jEkaxdgLxUCf4jtUnCPVWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4L6KNUQe2pWYVXf9KkBdsw", "review_id": "dBDSiE4eIw3ePS1qDgmzXQ", "stars": 2, "date": "2012-08-26", "text": "Food was tolerable, and tasteless. The chips were actually tostadas that were extremely hard (almost stale) when eating. The entrees we ordered were bland. The rice and beans had no flavor at all. Maybe that is Baja style of food, but couldn't find the flavor anywhere.\nThe service was great and the ambiance was wonderful, but I don't think we'll be going to this place again.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "BiDA7uVJ5igMCsp4ZfpCpQ", "review_id": "ydzzk4tNnZ-5nSvvtI6yOA", "stars": 4, "date": "2010-12-28", "text": "Walking into this place is just plain confusing. You could tell it used to be something different, but I've got no idea what. I guess it doesn't matter. It just sort of looks cheap. But that's ok.\n\nThe food was right on, and I'll be back for more. Bento Box A? Yes please. Small salad with a great ginger-type dressing, some sort of spicy beef, teriyaki chicken, rice, egg roll, some edamame, a few carrots... am I missing anything? \n\nThe service was great, the food even better, and it only set me back about 5 minutes and 8 bucks. It seems like a sure bet, and close enough to work for a good take out that it will rise toward the top of my list.", "type": "review", "business_id": "W8WyVVxinyRjzP8gJa7ILg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "SimBqxBHYwkPE8X7f_RnVg", "review_id": "2nViOOisdT3Pc5pmjjI7Eg", "stars": 4, "date": "2012-05-07", "text": "5/7/12...\nI have to make a correction to my review as I received communication from someone with the club.. \n\nI was informed that they are not like other clubs as they have a \"Two Item\" minimum, not a two drink minimum. So you can order a food dish and a drink to meet that minimum. And I did confirm that one in our group ordered a bottled water which counted toward his minimum.\n\nSo I stand corrected.", "type": "review", "business_id": "e8kRfAKXM_1qj9LMgp0s2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Syc4pbEkL3bbzjO4X4HhQw", "review_id": "4PcQSLi1w_4VzeUcTehuqA", "stars": 5, "date": "2012-08-21", "text": "The Menu here is great. So much to choose from and its always good. No mater which location we visit our service is always good and we never have to wait long to be seated. The Jambalaya is a big favorite, and the pizza here is awesome. I've also noticed that they have improved the drink menu quite a bit", "type": "review", "business_id": "i213sY5rhkfCO8cD-FPr1A"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "XUukBnu0NCocezQ3bGmeow", "review_id": "PsBVBsjhNn7vWGE27NOSjw", "stars": 5, "date": "2007-07-20", "text": "great beer selection\ngreat live music\ngreat atmosphere\nI used to live across the street and nightcap it here everynight.\nthere is always something to be had at rosie's.", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "2LE_1IcSFlOUUM_lDKwE4A", "review_id": "dID2PKHRNAvqM-pd3mJu1g", "stars": 5, "date": "2009-03-05", "text": "I LOVE this place. I have been craving their Baked Spaghetti Pie again for 5 years and I finally got it today since I'm back for a business trip! I remember pretty much everything on their menu is fresh and delicious. Their prices are great too! Very polite staff.", "type": "review", "business_id": "v9htJ8R0Ctvykmqjz7eRlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8dAAMq8R9o4QlRTqob0E8A", "review_id": "EZkuSN33yZ2mpbdbcEksyg", "stars": 5, "date": "2012-12-17", "text": "Best chocolate croissants EVER!!!!", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5T0sGaGY67VVJuotO47Q_w", "review_id": "jySZHhnxmHZGuEvwHwDypw", "stars": 5, "date": "2010-11-25", "text": "This is my favorite place locally here in Phoenix, absolutely great coffee! Next to central highschool and light rail so there can be traffic when school let's out or rush hour.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g6rlp5No6GjEDXkrjvg1kQ", "review_id": "R9S1ij-IyrF1i11iuZn7og", "stars": 2, "date": "2009-09-02", "text": "I had dinner there last night.. I had never been. Service is great, atmosphere hip. Complimentary valet..(you can't park anywhere in the neighborhood). I ordered the Blood Orange Bellini and it was not your typical bellini..not frozen and frothy. It was champagne in a flute with a sugarcube dropped in. Still good, but not what one would expect..just an FYI. I had the Caprese salad and the Mozz was not served \"classically\". Cold and sliced in rounds or in balls. It looked like marshmallow fluff and was kind of tangy. I was almost sure I was eating something that may have gone bad. I do not recommend to any Caprese lovers. However, the Organic Chicken with pan seared gnocchi was fantastic. Granted i asked them to add some spice for fear it might be bland.. Spiced it was perfect and Im glad because it probably would have been a bit too bland for me. My dinner date had their signature Pappardelle and that was excellent as well, although a bit soupy which made it messy. Olive oil cake we had to try and I can assure you it does NOT taste like Olive Oil in case you are wondering. Its like a lemony bread pudding but not quite as moist as bread pudding. Delicious. All in all great neighborhood spot but not too much of a variety to eat there repeatedly if you like to try different things, which is my style. Too many restaurants in Phoenix to return only to eat the same item over and over.", "type": "review", "business_id": "C1tH3sEQra33EOTk56Eu1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "iWWzqd6Yo-gohXAAB9YWOg", "review_id": "qbq_LZjhfTP97FlBVnD-Mg", "stars": 2, "date": "2012-03-02", "text": "Normally, love this store & have been a member for decades, but was very disappointed with the woman who \"helped\" us last Saturday in Women's Clothes. She has horrible customer service skills. Told us that, since there weren't any listed on the website, ALL REI's were sold out of a parka I'd tried on 2 days prior at their store. You mean to tell me that your location sold 10 North Face women's parkas in 48 hours when it's 80 degrees outside??? This was after she's told us they'd just shipped all their winter stuff to Denver the previous day. Never offered to call the other store & ask them to hold a jacket for me. Instead, she claimed all REI's were sold out of the black jackets b/c the website only showed blue & squid red. I explained that the website hadn't shown black inventory on the same day I'd tried on the coat at their store (according to her, it should have shown up on the website inventory) She still claimed all stores were sold out. Never mind, I bought it online from one of your competitors and it was cheaper too.", "type": "review", "business_id": "ptH216EFNFLvF32EN-9tmA"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "ZeIXbdNE4JXlCNuxrZA0uA", "stars": 5, "date": "2011-01-04", "text": "Best Thai food for your dollar in the entire valley. I'm no Thai expert, but I have been to at least a dozen here in the valley. Keep in mind - this is NOT a fancy place - just a simple, inexpensive, casual dining experience. WOW!", "type": "review", "business_id": "JiLK9QPjd53pOBEAaY83lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1fERJYlHjZx-dn7NMrOKvg", "review_id": "1XCS4C4msZvkQ-iZxUEYiQ", "stars": 5, "date": "2012-05-23", "text": "Love Love Love it. The Frozen Yogurt is only 8 calories per ounce. You can get your yogurt fix and still be healthy. Also they run specials if you sign up for the deals. Then they have a punch card program as well. My husband loves going there because he can still get regular Thrifty Ice Cream.", "type": "review", "business_id": "XhdMiSn0b3O929YpjVBMHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5S3qIi-EHG634Mx-_mpBQg", "review_id": "bjcU4dROec3ihpbkyspL1A", "stars": 5, "date": "2012-11-29", "text": "I love Tempe Marketplace and frequent it regularly. It has many dining, shopping, and entertainment options. It is an outdoor mall and in the summer there are misters and in the winter heat lamps and a large fire pit. It has stores that are usually only found in malls such as Tilly's, American Eagle, and Victoria's Secret, but also freestanding stores such as Target, Best Buy, and Ulta. There are a large variety of restaurants and a Harkin's Movie Theater as well. It is a great place to hang out with friends and see the local night life!", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 3, "useful": 6, "cool": 3}, "user_id": "GLzK3PsBTGl-1ky3t4wFNQ", "review_id": "w3VC85UesBVCoT-Xn5yqow", "stars": 5, "date": "2010-10-21", "text": "Ok, I hesitated writing a review of this place because I like that it's not busy, but I want the place to survive because I enjoy it so much. \n\nI hate gyms...I mean LOATHE them. From rude staff to unpleasant odors or creepy guys giving you longing looks while you're just trying to figure out which one of your friends with an advanced degree in engineering you can text to help you figure out how to get on a machine without having it rip your arm out of its socket because the staff is not going help you without paying for a personal trainer or because you don't look like you were already born on a nautilus machine. \n\nThis gym is everything but. I went in because of the great introductory special and a recommendation of a friend. We're both training to swim the SF Bay for the 2011 Sharkfest Alcatraz Swim, so we needed a pool. \n\nAs soon you walk in, the guy at the front desk treats you like you're an old buddy and cracks jokes like he is your best bar buddy. Awesome attitude. The place has never been overly crowded (even at peak hours right after work. I've never gone during the early morning or lunch hours).\n\nNo waits on the machines and they have plenty of them. No waiting in the pool and even when there is a water aerobics class, one lane is left open to due laps. Hot tub, sauna, and some inexplicable walk in dunking tub (see, I'm not a gym aficionado or else I would know what that thing is for).\n\nTowel service, locks, and even gym shorts available. (no more using that excuse that you can't work out today because you left your work out clothes at home...they have some to check out there.)\n\nEven the seemingly cranky old lady doing her water workout was nice and called me sweetie and asked if I was ok when I inadvertently let out a puppy like whimper as my shoulder blades decided they wanted to cede from the union of my body. Note to self....don't do a month of the P90X with a friend, think you're hot stuff and on your way to a gym bod and then jump in a pool to do a mile swim without stretching because you think you're all that now. Had it not been for Grandma Water Aerobics, I might still be at the far end of the pool trying to inch my way back to the stairs hoping that the water on my face hid the tears that were going start gushing any minute if I couldn't make it to the hot tub to get my back to stop seizing up. (Thank you, unknown Water Aerobics lady. You turned a moment of shame into motivation. Oh yeah, I will out swim grandma next time!)\n\nThe place is in the basement of an office building next to the seemingly abandoned Chateaux on Central development. Central and....Encanto (?) \nYou can park on the street (careful of the meters) or use the garage. The gym validates. \n\nThere is a downstairs weight room (I haven't check it out yet as I because there is a free gym at my job.) Yes, I like this place so much, I am paying for a gym membership even though I have access to work out facilities for free in my own building....including free personal trainer....but instead I get in my car come 5pm and drive to a gym I pay for because this athletic club is worth it. \n\nI saw no young kids running around. The clientele seems to be early 30s and up, young urban professionals and some retirees who are just trying to stay healthy. No creepy people ogling you (which you may be looking for) and no rude gym bunnies laughing at you in your leotard on the treadmill....but really....you shouldn't have the leotard and hot pink leg warmers on anyway...it is 2010. But hey, to each his own.", "type": "review", "business_id": "werWnE_3k8GYVaMuUcWw4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tePGwo_ZH1Hu9bkCNhMJmw", "review_id": "WSpOHpboCtOisKNCFs7cOQ", "stars": 5, "date": "2010-09-22", "text": "I started working with Second Chance FitCenter in the spring of this year. I went because I wanted to feel stronger, especially in my core. I run and am a generally active dude, but wanted something more out of my physical body. I had never done any type of \"personal training\" so I was a little apprehensive....and...\n\nI have REALLY enjoyed working with Heat - she is a great teacher, which if personal training is anything it is a psychologist/mentor/butt kicker/saint...so in my book that is a great teacher!! \n\nCase in point:\nA few weeks ago I mentioned that I was not sure if I was improving - mostly just my own mind being negative. So Heat said, \"Next time we will try the very first workout we did. Cool?\" I was game. Dude! I blew through that sucker - to the point were I was like \"this is cake\"...of course on the second and third time through the sets (and I think fourth on this day...) it got harder and harder...and I totally kept up. It was awesome. I loved it. \n\nMy Checklist: \nSense of accomplishment (check)\nStrength building (check)\nPiece of mind, knowing I am taking care of myself (check)\nGood teaching and patience (check)\n\nIn short, I love my time at Second Chance.", "type": "review", "business_id": "4y9ZQV_IooSdJTAMNwG1sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aqmtZa9o9K4casagyyfpyA", "review_id": "98QoCid1LWZ_XBhV08VTnQ", "stars": 5, "date": "2012-06-07", "text": "I need to stop going here so much, but it's hard to stay away.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "giwch_jkHmILclbawH3FSg", "review_id": "M4fs0_nz4BiU0kB4BfewnA", "stars": 4, "date": "2011-05-31", "text": "Love this place, been coming for many years and recently stopped by for their italian sub. Still as good as ever, these guys have great quality produce and a simple but yet complex style in their sandwiches. Little details make me appreciate them, ohh yeah and they have good tea.", "type": "review", "business_id": "GqtMJxq5-7Xp1ZXXmahLaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ho9cUMuOnH4yi-902zfC2A", "review_id": "fLa_c_82aDI1MKZDzWc3DQ", "stars": 5, "date": "2012-09-05", "text": "Great fresh sandwiches!! The pastrami and caprese are absolute perfection!! The orzo pasta salad is spot on for the summer. Definitely a must id in mesa..they need more central location for sure!", "type": "review", "business_id": "Bm2PBs_AZEtx93zdtwqUJA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "7aQvAhgpdXqkTQEp8b8Szw", "review_id": "0HU8porS6eaV0NI0oV9H0A", "stars": 5, "date": "2011-12-27", "text": "Excuse me. How in the world have I lived walking distance from Cornish Pasty Company for over a month and have only barely heard of this gem?! Thats what I want to know.\n\nA friend introduced us to Cornish Pasty saying it is \"the best restaurant ever\". I best give it a try then right? The Tempe location is smaller than the Mesa location but I LOVE its vibe. A small narrow walking space between people sitting at a counter behind the kitchen and people sitting at teeny tiny tables, dim lit lighting and candles and for the most part, pretty good music. \n\nMy man and I ordered the Mexican Pasty and the Rosemary Chicken Pasty. They were unbelievable! SO GOOD. The Mexican Pasty was definitely the better of the two but I'd order both of them again any day. A little heavy dinner action to make a girl feel full and happy. I respect restaurants that have a plethora of vegetarian options. What generation are you living in if you don't offer veggie options these days? Get with the program all you other restaurants. You know who you are! \n\nI loved the entire experience and can't wait for our next trip.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GSZebDbIf0h_2MFv8xBGrw", "review_id": "g2c2DT7vafkVyBN_6vJwig", "stars": 5, "date": "2011-03-02", "text": "Love Bagel Nosh! The staff is so friendly and of course the food is delicious! I have to admit that the pumpkin latte was no Starbucks pumpkin latte, but the pumpkin cream cheese was amazing! ( I do realize it's no longer pumpkin season, I was just wishing I had some anyway) It can get busy on the weekend mornings, esp since the bike shop opened up next door, but I find it well worth the wait! (Oh, and fyi it closes at 2:30 - so get your coffee early!)", "type": "review", "business_id": "8H1DwdAAgSBtwDeb2R-hmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ccJswjoJ8f9dn9qz0Zfhpw", "review_id": "Yd4_UbDlKAmUcN0Xg6ltiA", "stars": 5, "date": "2010-02-27", "text": "We live in Chandler, so we get take out here probably once a month. My husband is from the east coast and in both his and my opinion, these are the best cheesesteaks around! We love their spicy peppers (they are hot!) and while I am not really a cheesesteak fan, their chicken cheesesteak sandwiches are fabulous! The owners are hard working and really appreciate all of their customers and let you know it! \n\nWe have been eating here for three years now and have never had a bad experience.", "type": "review", "business_id": "Aalbsk2pFczUedpRWKUyPw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "yvWUvG7Gb-_7JcgYQrbDVA", "review_id": "IznCwmN6dWvVG3nXpuJPUg", "stars": 5, "date": "2011-03-30", "text": "Impressive! I dined at House of Tricks last week based on the Yelp reviews and was not disappointed. The aromas from other's food while sitting around at bar let me know I was in for a good meal. I had trouble deciding what to eat, so I ordered 3 appetizers: Seafood Stuffed Poblano Pepper, Veal 2 ways, and Braized Oxtail. The bartender did a fantastic job of recommending the order in which i received my food - lightest to heaviest.\n\nThe \"Veal 2 Ways\" and \"Braised Oxtail\" were phenomenal.... a great combination of flavors and texture. I think I'd put them both in my list of Top 10 dishes. \n\nI can't wait to travel back to Phoenix to eat there again. I'll also add the I really like the atmosphere. Very chill place, but elegant without being stuffy.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qGd-2pg0ABK-5brIva7tLg", "review_id": "cNKCOarpvyKDbk84wg32lw", "stars": 5, "date": "2012-08-29", "text": "Wow, that is some great BBQ. Probably the best I have had in Arizona. The pork was great as were the BBQ beans. I will be there again and again!", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "H2WgvziHv_KPlbQNY_uhog", "review_id": "3_p8QBc-qgHnjzEqeKQe2A", "stars": 4, "date": "2012-05-30", "text": "I've always wanted to go to Rokerij and when my date suggested it last night - I was all for it! I was NOT disappointed. \n\nWe spent our evening downstairs in what I can only describe as \"speak-easy\" atmosphere reminiscent of my days spent in the DC area. I loved it. Decor was spot on with stone walls, a fire place with comfy leather chairs strategically placed in front. A big bar took up most of the room with some comfy look booths placed around the outskirts of the room. Lots of great details in decorations and design. Our bartender was friendly and efficient. His suggestions on wine (1/2 price bottle!) and the manhattan we had were spot on. He checked in with us and was attentive, but not overly so, letting us enjoy each other's company. \n\nWe tried 3 of the small plates: the roasted pepper bruschetta, tenderloin skewers and the bacon wrapped shrimp. Honestly, I was expecting to be hungry afterwards and was ready to order something else in addition to that, but we held off until we received our food and I'm glad we did. The portions were pretty large and food rich. Everything tasted great...the bacon and tenderloin were served on long plates that had 3 different sauces...a creamy queso (I think), a spicy red sauce and a green tomatillo-like sauce. The red and green were really good - the white was a bit bland....but I'm also not a fan of cream sauces, so don't take my word for it. The bruschetta was more of an italian style bruschetta (bread, peppers layered on top with melted cheese). Tasted good, but my only complaint would be that it got a little mushy because there was so much topping on it. My date enjoyed it.\n\nOverall, a great experience. I can't wait to go back - especially when looking for a laid back, cool atmosphere. And I definitely want to try more of the food!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K8vdN2YU9kec8VmEReKhTg", "review_id": "HZuwhkiF3xxjujf-vHo-SA", "stars": 2, "date": "2007-08-14", "text": "Standard Burger King fare served at a snail's pace. One cook, one sandwich maker, one cashier, plus 30 people in the queue.\n\nPlease help the economy and the waiting customers by hiring some staff!", "type": "review", "business_id": "KjWCLH1GzxmhUJwaWB13MA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z_8P1viBB-8B88oNEiBb7g", "review_id": "N6-JFjyn3GiGBLRxHej--w", "stars": 4, "date": "2012-09-18", "text": "Great store but lack of certain items", "type": "review", "business_id": "pLVZtesIhIopzK3IPWTXXg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "OZ4vmruH-9a_60I2qANtqA", "review_id": "JDCsNpynxb0www7M5RBhDA", "stars": 5, "date": "2012-03-16", "text": "20% off with a Yelp check in? SCORE! \n\nThey have very unique, colorful and patterned vintage clothing for sale. But what I liked most about this store is their vintage jewelry! There's a local jeweler who makes rings out of old school buttons and brooches. I snatched up two really cute vintage rings.", "type": "review", "business_id": "w8D3DAby1nVgU8a4s3z88w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "yyVaDXsgGPw3vl2bv-1R3w", "review_id": "TVTe-uB4AZg3ALgdFyw6MQ", "stars": 5, "date": "2011-08-02", "text": "They have a new and improved menu and added more Korean dishes. Very good!!! I've been there 4 times since they added the new menu, and it's been good every time. Very authentic Korean food. This is my favorite spot now!! \nThe dishes I had so far:\nChampong, Bulgogi, Sul-lung-tang, Neng-myun, Galbi, Yukgejang. All were very good. I can't wait to go back and try other food! Neng-myun (cold noodle) was especially good on muggy hot summer days.", "type": "review", "business_id": "sjO66SM-zICJr5VyumMuqA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "W-ef8QaX8OLJVCFLD_Q-8g", "review_id": "CMKnAo1iYUtqpf75xwH6lg", "stars": 4, "date": "2012-05-11", "text": "I really like this place! I've been wanting something like this to open for years, and now it's right around he corner! I'm a huge sushi fan, but I rarely have enough time during the week to stop and get any... Until now! This place is exactly what you'd hope for in a fast food sushi joint- helpful, friendly staff, good variety, good prices, and a clean dining space. I admit the whole make your own thing can be a little intimidating at first, just order one of their features rolls to get yourself started, then take off the training wheels on your next visit. You pick white or brown rice, meats, up to three veggies, and whatever sauces you want. The possibilities are endless! I've eaten enough sushi to know generally what works together, so I've been pretty happy with what I've come up with so far. The rolls are tasty and filling, and their traditional sides are great if you're super hungry. The only complaints I have are that the fish can be a little bland (even the so called 'spicy'), so you pretty much need to add a sauce of some kind. And some slices of fresh jalape\u00f1o! The parking lot is also a nightmare during weekday lunch hour, but I still think its worth it.", "type": "review", "business_id": "Qd0fyF-wB_1bQwSB34ggkw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "mE2ll6yfwUvy-W7To3E0AQ", "review_id": "Prb-DF36Fi3T4WE6a6VT8w", "stars": 2, "date": "2011-11-03", "text": "This is an excellent place to watch a game. If I had only been there to watch a game I might give this place about 4 stars, but I'd had a long day, wanted to watch a game and unwind with a couple glasses of wine and some dinner.\n\nI stopped in recently with a friend when in the area and Roka seemed less than lively. Our guess that this place might be more lively was perhaps correct, in that it had 6 people at the bar rather than 4 and had about 30 flat screen TV's running baseball games and various other sporting events. We chose to sit at the bar, because I always think you get better service there and the restaurant itself was pretty slow at 730 on a weeknight. That thing about better service didn't really hold up here as it seemed out bartender was also handling issues around the restaurant and after I finished my first glass of wine the glass sat empty for quite some time before someone came by to see about a refill. I will tolerate just about anything as long as I have a cocktail in front of me, and as pouring drinks is the primary function of a bartender this was more than slightly annoying. \n\nWe ordered the ahi appetizer for a starter (I know I should probably be slapped for even ordering something like this in a sports bar). I had a couple bites and they were okay, but parts of the fish were actually starting to grey, which can't be a good sign. For dinner we had the salmon and a flatbread. \n\nBoth the bartenders on duty raved about the flatbreads. I believe they have never eaten a flatbread anywhere else or they probably would stop raving about these. It was a relatively flavorless bread, which was not at all crisp on the bottom or the edges, lightly topped with cheese, sauce and some bits of chicken. It was edible as a food dish, but the part I found off putting was that the bread seemed to be taking on the flavor of the wooden paddle it was served upon. Yes, I know you can cook bread over wood and it will take on the wood flavor, but I am 99% sure this was coming off the wooden serving board. I actually took most of it home and the taste went away by the next day and the whole thing was well served by about 5 minutes in the toaster oven. \n\nThe salmon was also very very okay. The best thing I think we ate was the broccoli side that came out with the fish. They were sharp green, flavorful and cooked perfectly. The fish was kind of overdone and uninteresting. I feel like maybe this place should go to a smaller menu to be able to have more consistency with preparation.", "type": "review", "business_id": "01cEFI5Pq_RyEwM3GSTopQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ph051iWFcTzyIjcVV3dAew", "review_id": "8k2r1dR7g_iIr1C3rJ5BPg", "stars": 2, "date": "2012-06-05", "text": "Dr Fish is an ok oral surgeon. However, his financial practices are shady. He gave us a high estimate for surgery, 6k; we had to pay 4k before the surgery. He then lowered the estimate after the surgery but refused to credit our card; we had insurance that paid 2k. Two months later, we received a check for a small amount of the overage. Their office person told me they dont do credit card credits. I then called our insurance company and learned Dr. Fish had received $1800 more from us than the insurance co allowed in Dr Fish's agreement with the co. Now we have to go fight him for the refund. His office person said, oh, insurance co's dont like to pay. Hmmm--why contract with them then? I would say, look elsewhere!", "type": "review", "business_id": "bMzNhr8ikzwNZdpvRsZ-GQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iK92_Kh2P70O7W7MYrCiYQ", "review_id": "YoGyHZGNr8O8ybyosEnWDA", "stars": 4, "date": "2010-08-01", "text": "I have been here twice so I know what's the best items for my taste. Would give another star if the Mongolian grill had more items and sauces. Trying the evening buffet tomorrow with 2 teenage son's one whose 18 and a football player. Should definitely get my moneys worth!", "type": "review", "business_id": "bfrjf244fMcEA-duT2aZuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "onCVo3jNuKsSk8HcpDE1sQ", "review_id": "h9ZAIgQoF-B14E1wn_6HcA", "stars": 2, "date": "2011-01-28", "text": "Earlier this week, we used our handy Google mobile app to locate what we hoped was authentic Mexican food. We were craving flavorful salsa and well-spiced meat dishes after a long, warm day in the desert. What we found here was slightly different than we were expecting......The chips were made of corn AND flour tortillas, which was a nice surprise but way too filling while waiting for our food. The salsa was just fresh tomatoes with some cilantro (or maybe even parsley?) for color.\nIt was \"Taco Tuesday\", which here meant all-you-can-eat of crunchy or soft with 3 different filling choices.\"Hamburger Helper-esque flavored shredded beef tacos\", according to my teen son. Ooops :( I ordered the \"award-winning green chili sweet tamale\". I fear they left the winners with the judges, for they didn't make it to my table. The tamales were dry and contained about a tablespoon of chopped chiles throughout. And, although they were sweet as promised, they lacked depth of flavour overall.\nThe service was fine and the refills on soft drinks was fair, but I really was hoping for more. We are in town for a couple of weeks and may try it one more time since it's close to our accommodations, but with all these Tex-Mex and MexiCali flavour houses to choose from, it will take a lot to win us over for a better review.", "type": "review", "business_id": "jVgtPnzXvZQOCCIUPEBktA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yCH6WEUBkF9PfJEAaNBz5Q", "review_id": "1-iX1fzwbXoBWW1eqXG8cQ", "stars": 5, "date": "2012-04-10", "text": "I love their turkey and provolone cold sub! Delicious with pickles added.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GOwr-GpWKBzf7vhcc2cH9g", "review_id": "RSsoz4Z2G4lubzLTTDKPwQ", "stars": 4, "date": "2012-11-11", "text": "Trusted as a consistent Friday HH or evening meal/get together spot for a long time. We have been a slave to the Wingless Buffalo Dip the whole time. We have been fortune enough have a great server (Mallory) most of our visits as well. She has never steered us wrong in food choices. I have had the pizzas, the sandwiches and even some special entrees. It has all been good. The Reuben sandwich is a favorite and so is the Sonoran burger. The sweet potatoes fries are always really good side. \n\nNow some friends have had some bad experiences with service. They have a hard time returning. It happens, esp. when it is first Friday or when the host staff is out of their minds, there is just an inconsistency there. But don't let that ruin the tone of the meal.\n\nAwesome Patio. Parking can be a pain, but sometimes you can park close around the corner. Great mix of people, so good people watching too. Seating is tight at times, because sometimes you are seated right next to another table where you can here each others convos. Can be fun at times. Def. take all of our out of town guests here. Great HH spot.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f01B5tRtqf3k6ak1pPSAWw", "review_id": "7MkFCDQtCDZF-b_ABKG3ZA", "stars": 5, "date": "2011-11-29", "text": "Really good, healthy food. Owner is super friendly. Would definitely recommend. :)", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "ZQTN4owdKLm69Ci88zoRUw", "review_id": "YX5VOXWPwKe5Zstuvj2Ylg", "stars": 5, "date": "2012-06-29", "text": "I'm giving them a 5 star review for how they handled a poor experience we had. My family came here for my brother's birthday a few weeks back, and two of our four dishes came out undercooked. We brought it to the attention of our waitress, who brought the manager Adrienne over. They both apologized profusely and took the charges off of our bill, which is what I would expect. We were polite and appreciative of their apology and really didn't expect or ask for anything else. However, they also offered to give us a credit to come back another time so they could prove to us that it was just a one time mistake.\n\nWe took them up on the offer, and sure enough the food was excellent the second time around. Our server was fantastic, Adrienne came by to make sure we were happy, and the chef even came out to make sure we were pleased with the meal. They really went above and beyond to make sure we left with a positive opinion of their restaurant. Everybody makes a mistake once and awhile, but not everyone has such excellent customer service to correct it! I will gladly return here as a result.", "type": "review", "business_id": "MwaFQkJxzqg8G5_hTip99A"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "5jODkdonMV0HbIIPik1RuA", "review_id": "_hm1ZU5LIXje2_yyC_Bnvw", "stars": 5, "date": "2011-09-04", "text": "I cannot believe all these negative reviews. \n\nFirst I'd like to start with the prices. Don't get me wrong, I love a good deal, BUT, if you are going to complain about how jobs in America are moving to China and India and not shop at AA because of their prices, then you are a hypocrite. AA supports US jobs and their factory is here in the states where they actually care about ethics and their employees. And, they have sales too, I have been in this store more than a few times and seen 30% - 50% off sale signs. And, on their website you can shop the sale section and save up to 75% if not more.\n\nTo the clothes - I understand some people may be weirded out and flash back into the 80's when they see the clothes here, as I have read from the reviews on here, BUT, these clothes are actually very stylish and a simple top with a simple pencil skirt from AA and with some accessories you have a fab outfit. If you are looking for something not so simple try a white strapless romper with their petticoat skirt, add some accessories, and your done. \n\nThe sizes - I am size 4-6 with curves, and the clothes from here fit me fine. I can understand the frustration if you are a little bigger and have had a hard time fitting into the clothes from AA. But, the good thing is that AA is now coming with XL sizes in some of their clothing. \n\nThe models - I love the fact that the models are real and barefaced. As someone who has struggled with a skin condition, I always hate walking around the mall only to see photoshopped perfect faces surrounding me. I always feel comfortable when I walk into AA.\n\nThis store - I have never had a bad experience. Always a good one. i like the store, the employees have always been nice to me, I have no complains.", "type": "review", "business_id": "-YtGU_1Sc1E57-gJfUcDTw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "kMiQnYFmAYbjHyyIPGSwoA", "review_id": "Dl5_GHv7GDYOVHk3gfb0lQ", "stars": 4, "date": "2012-01-22", "text": "I really like Fresh and Easy. I've actually come to dread any time I need to go into a Safeway, Basha's, or Fry's. They're too big! I live alone, I spend most evenings cooking my own meals, and I am on a budget. Fresh and Easy is just right for me. And on the plus side, over the past two years F&E has really grown in the right ways.\n\nThey carry more varieties of fresh produce now. (I used to get upset that I couldn't buy leeks at F&E. I can now.) They have more specialty food items. (I cook a lot of vegan, Indian, Thai, and Mexican food. Used to need to make two grocery trips, but no longer.) Unlike some of the other reviewers, I really like their prepared foods. I mean, no prepared food will ever be as good as my own cooking, but if I'm in a hurry, it's good!\n\nThey also have really great coupons. The weekly mailer has a $3 off $30 coupon at the least. I recently got a $5 off $25. And they now have the F&E Friends card which, on the simplest level, gives you money back for the money you spend. Sure, it's not a whole lot, but I'll take what I can get!\n\nThe employees are always helpful, and have become much better baggers than in years past. (I'm picky about how my groceries are arranged inside of my reusable bags!)\n\nNeedless to say, Fresh and Easy has won me over, and unless I learn that they use the tears of kittens to shine the floors (or something equally extreme), I'll continue to go back for my groceries.", "type": "review", "business_id": "opikDGSxDcfZwYWbk7dKtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tfYiqaLU5swUfMO9JJp9Dg", "review_id": "cq6yROcgQteOA2n0R5C7XQ", "stars": 3, "date": "2009-12-10", "text": "Food was good, I had the Frutti de Mare with red sauce and boy it is spicy, so be warned. Everyone else ordered the Spaghetti Pie, which was the special that night. It was OK, my mom's is better. The service was good, but the wait for a table was over an hour. Of course if was a Saturday night and they are having Glendale Glitters so it was really busy. The pizza is good, I have had it before, I am not the biggest wood fire pizza fan, because it is always burned on the bottom!", "type": "review", "business_id": "jgbEZzERVI4yvAAtXWW93A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LOZgMx3mJPzmCVtlJ1KpfA", "review_id": "Or_CAWhC84zaPnxKOtoJpA", "stars": 4, "date": "2011-01-29", "text": "I recently stayed at the Valley Ho for a conference being held on-site. My experience was really nice, everything from the food to the retro style room to the poolside atmosphere. Cafe ZuZu has an assorted lunch selection and Trader Vic was only a short on-site walk where I enjoyed their happy hour. The front desk, catering and valet staff were helpful and provided outstanding service to all the guests. When scheduling future company events I will definitely keep the Valley Ho in mind.", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DoR_Zi-LJvWsTzZHvjE2KQ", "review_id": "RVsB-pYlQOLgsL7_e8uupQ", "stars": 2, "date": "2008-01-05", "text": "Nice atmosphere inside and out, with competent service. BUT:\nThe food is not great. It's very dull. It reminds me of the food they serve at Chevy's but significantly more expensive. I really have no desire to go back. Scottsdale and any attempt at Ethnic food just doesn't mix.\nEdit: Thanks to Yelp, I've discovered just a few places in Scottsdale with good ethnic food. So now I really don't have any excuse to settle for Blue Adobe.", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rQ5pqYUrzZSK-uuQ_ZMEeg", "review_id": "XJyBAXnKYKu2PgDuUFkB7A", "stars": 4, "date": "2011-07-22", "text": "Double-dog dare you to ask for a side of ranch.\n\nYou won't find a fryer in the house either. But what you will find is that every dish is under 475 calories - & every dish, delish! Well, I'm generalizing because we DID only have two dishes, but if the chefs can make a salad taste THAT good, why, what will they be able to do with meat!? I'll find out sooner than later. \n\nWe'd only stopped in for a mid-afternoon snack on a Wednesday - the decor reminds me a bit of \"Frank & Albert's\" - warm, clean lines and inviting. Our service was spot-on. Everyone was professional and friendly. Many yummy dishes on the menu - I wished I was hungrier! (The menu changes weekly, so I didn't get too attached to any one item!) Mini, adorable desserts were tempting-looking and only $2.50 each. Seasons 52 also has an extensive wine list and a roomy bar area. There's even a piano behind the bar; I did not see a tv in the house. \n\nLet's see: No tv, no ranch. no fryer. Tasty low calories at reasonable prices, with great service in an upscale cozy setting. The place even made me abandon my \"butter mantra\" for a couple of hours. The reinvention of dining out!?", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SGE6GqKnPMCFqds7rHyZCw", "review_id": "X3rfdIZyIo-Z8XKy09UtYQ", "stars": 5, "date": "2011-12-29", "text": "Mylissa has given my daughter and me the *best* cuts! If you can, see her. She will take great care of you!", "type": "review", "business_id": "M2dsZugyf8KoGsQegIv-Gg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YEp3lrsXDGDbLT3cFRHT7g", "review_id": "WTaHXfQ-T7kmJ2f_Sxcf1w", "stars": 4, "date": "2010-02-17", "text": "It'd be nice to see this chain grow and get a little more traction in the Valley. The shoestring fries are pretty good, the burgers have a great seasoning. Maybe the burgers could be a little bigger, I guess, but I'm nitpicking.\n\nThe real star for me is the custard, and my favorite is picking up a good chocolate shake. The stuff is very rich and a sugar coma waiting to happen. Shakes aren't the cheapest, but they're pretty unbeatable mood boosters.\n\nI'll have to change my review once I try more on the menu, but for now, I'm a fan, and I enjoy the place. Good fast food and doesn't disappoint.", "type": "review", "business_id": "cRwNwAGQ8Pc_-orLefrwRw"} +{"votes": {"funny": 6, "useful": 7, "cool": 8}, "user_id": "qwu5B9anH4AlEtau0K-6aQ", "review_id": "N1-TA-k4-Fhh9wq9RB9D1A", "stars": 5, "date": "2009-05-06", "text": "So I was introduced to this station about 6 months ago by a fellow yelper who goes by Amy D... She has a wicked 8-10 spot on Tuesdays and I thoroughly enjoy listening to it on a weekly basis. Well, I was happened upon an opportunity... Nay! A priviledge of being a guest on this FABULOUS show and, being the attention whore that I have been labeled, I accepted. I won't go into HOW I found myself being handed this prestigious title of KWSS Guest, but it involved a House of Clubs, Twitter, and a whole lot of begging (on my part)...\n\nThere I was... in the presence of 100% pure, raw (Can't decide which word to use \"Talent\" or \"Creativity\") and in a pretty bad ass studio. The Fabulous Amy and I discussed all the important topics of the nation/world and stumbled on numerous great ideas. One being a cure for cancer! Okay, we didn't discover a cure per say... but we did briefly talk about it.\n\nThe listeners were top notch and the atmosphere was professional, yet extremely comfortable. Plus, we actually got some free talent from a caller! He was awesome and sang me happy birthday. It was sexy.\n\nThanks for a great time, Amy and KWSS! You rock, alternatively!", "type": "review", "business_id": "AysJalmBcLa5zlNDByb3Ww"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "qpeeBk9wrg9D2W7H94D_gg", "stars": 5, "date": "2009-10-04", "text": "Good choice of ingredients, a bit out of a student budget, but it was WORTHY all the way. I was drooling with the flavors! Good environment and good service and good music (bistro style). I'm not much of a pizza eater, but this has a good place in my list! Forget about your papa dough or cheap Sunday pizzas...this is a real one!", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Jw-rYwJEz6jSqPgVVmmhA", "review_id": "b0d_Ze0BYdxt7zbX4MM70g", "stars": 4, "date": "2012-01-19", "text": "Love this place. the atmosphere was rather chill and calm. We played Uno, and drank pretty darn good coffee! we had a lemon cookie, which was...JUST RIGHT!", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "TIZvHaRMMph2udRx3yJ5dw", "review_id": "rv__rAMkqKW5W5qwILO6sw", "stars": 5, "date": "2011-06-19", "text": "We stopped in to Copper Blues on Friday night after a Mercury game at the US Airways Center. Fantastic place! Unbelievable beer selection, great views of downtown and an excellent band the night that we were there made for a really great downtown experience. Will definitely be back again soon!", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ys0ZU50fVW-BeDGjKto0mw", "review_id": "sT460xfA5FMgjVvUoAL_zA", "stars": 5, "date": "2011-02-06", "text": "The kids love panda express. My 9 year old actually complains that they give you too much food. This is pretty much the only non chicken nugget or spaghetti or pizza food that my 5 year old will eat. And to be honest- I don't mind it either.", "type": "review", "business_id": "Hxw3hG8Efg6WXSa5oRJhrA"} +{"votes": {"funny": 0, "useful": 2, "cool": 4}, "user_id": "G_6pOq1gA4jyJ3j8mjOyJw", "review_id": "ByTeAp2v-IgMBiqCsxXkjg", "stars": 5, "date": "2010-01-25", "text": "Oooohhhh baby I loooove your way...everyday...yeeeaaaahhh.\n\nI wanna be with you night and day....\n\nWent back to the swizzle last night and fell in love again.\n\nWith pool.\nWith dives.\nWith football.\nWith beer.\nWith diversity.\nWith the random atrium.\nWith the jukebox.\nWith life.\n\nHow can you beat pool and beer, combined with an awesome location, a diverse crowd, and a room full of people screaming at the TV because football is on? Then top that with the weird quirkiness that makes me warm and fuzzy on the inside...the atrium, a lovely bathroom and random bumper stickers at the bar. \n\nThe End.", "type": "review", "business_id": "mgllPJA6NQXlJurFWAkqQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T9rTOwqkdtkliCv8LgWSjw", "review_id": "RD0fMWQSR_ML5FaODjND_Q", "stars": 5, "date": "2012-03-29", "text": "Fantastic find for delicious, healthy food and good service!! \n\nA local friend said that they'd heard good things but hadn't been yet. They asked us to check it out., so we went for a late lunch mid-week and it was still jam packed (30 minute wait) at 1:30 p.m.. We sat at the bar and received terrific service. The fish tacos, steak tacos, bison burger and desserts were all delicious.\n\nIt is an open-air style restaurant where you can see into the kitchen. All ingredients are super fresh and the culinary quality is extremely high given that they can make even the healthiest things taste wonderful. I strongly recommend this to anyone looking for a healthy food alternative.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mbgppRfYH0kC7p7X2VPcGg", "review_id": "1FLzfSSQMNekqAaMC0jyOA", "stars": 4, "date": "2010-11-08", "text": "There are many other reviews which extol the virtues of this location. I just wanted to add some of my experiences as well as a few observations.\n\nFirst off, at the time of this writing I've been in Phoenix for about a year. Learning about all the necessary places to go in a new town, I had the opportunity to rate businesses objectively (not like 'My mom always went there so I do too...')\n\nFry's became a standard 'go to' place. Their hours are great (5 AM to 1 AM). There are many locations, and their prices are very competitive. They also have a convenient VIP card and electronic coupon program.\n\nSpecifically to my needs, this location has a good pharmacy, an organic/health selection and a well stocked bakery and deli (for parties and special occasions). Their parking is reasonable and the lot is well kept/secure. There's also a Chase branch nearby as well as a Best Buy, Staples and Old Navy. On Wednesdays there's a Farmer's Market just across the street for everything else I can't find here.\n\nNot all Fry's carry the same things. For instance, I can only depend on this location to carry pita bread, garlic naan, large Fage yogurt as well as the Mexican version of creme fraiche. I appreciate this greatly.\n\nOne word of caution, be firm with the staff at the deli. Take a number, insist on their attention, and don't let them gyp you with small wings or the bottom of the pasta selection. I know some of them don't care about their job, but don't let that ruin your experience. Remember: they're probably making minimum wage.\n\nOh, and the other reviewer's comment about the parking is accurate, although I'm not sure what they can do about it as this is a mall complex.", "type": "review", "business_id": "LWtoosGlzTOp8A73Jh7cQw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "ZRQdOIIhzrzE6sc3emgM-Q", "review_id": "LvJsRj5E7SvLNVZBK7Aabw", "stars": 3, "date": "2011-04-12", "text": "Newly opened Mexican restaurant tucked away in the Dobson and Germann area. I would give the place 5 stars for decor, the owner has taken such great effort to make the restaurant look like old Mexico on the inside.\n\nThe food was good but not great. I did relish on the tomatillo salsa brought with the red salsa and chips. The portions were pretty big, no room for dessert and had to request togo boxes.\n\nOrdered:\nSeafood Tacos (great with excellent presentation)\nTia's Plato de Carne Asada: Tres Carnes - beef, pork and chicken (huge)\nTia Rosa Burro (huge)\n\nI will definitely return and review, but overall I did like this place.", "type": "review", "business_id": "1sacSjgDNAj8SPvxLo4Efw"} +{"votes": {"funny": 4, "useful": 4, "cool": 3}, "user_id": "g0QWJpYSfWKxQiel7gbFuw", "review_id": "XZZR2lwX9nxo1CaIHI3CiQ", "stars": 3, "date": "2010-05-31", "text": "Cherry on Top is a rare example of design by market analysis committee, who couldn't decide on a unique concept so they decided to \"borrow\" from all of their competitors' styles, turning out at least as well as if not better than its individual inspirations.\n\nThe result provides convenient answers to the following frozen yogurt questions:\n- Can't decide between tart and traditional? Why not both?\n- Can't decide between standard or high-end sweet? Mix vanilla, taro, green tea, cheesecake (but only at your own risk.)\n- Feeling constrained by four fit all sizes? $0.39/oz., cup weight subtracted.\n- Wavering on the topping healthiness spectrum? Fruit to sugar cereal to nuts to crushed big brand candy available.\n\nThe quality is close enough to most of the relevant rivals (as long as one is not requiring the desert honey Sweet Republic tart variant) but, correctly and perhaps intentionally, the value proposition is that most patrons won't care about the slight dip, trading off for the flexibility of purchasing (only) as much yogurt and toppings as desired while satisfying Hershey's-acclimated children with a Frankenstein of saccharine flavors and junk toppings as well guests from the city pining for the nearest Pinkberry with original tart plus kiwi, strawberries, blackberries and pineapple.", "type": "review", "business_id": "Pyu7o8W7I5l4h1-QhgGJBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ofPkm7BTBJeaD0OkmZNdNQ", "review_id": "Ft40qHyfMCejSTG5Xu-x3w", "stars": 4, "date": "2011-07-31", "text": "Great gelato. It's actually very creamy so kinda taste more like an ice cream but still incredible. Lots of flavors probably 30+. Haven't had a bad one yet. Love the Roche, chocolate and pistachio.\nJust had a pizza last visit- they have a new pizza oven. Good thin crust, tasty ingredients, soggy in the middle kind of like Pomo. \nGive it a try!", "type": "review", "business_id": "LHzVPddSPzMECho55zCf0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H_JsAwjiGEOr_RlZmwfNsA", "review_id": "keycSyfJ8R_MpMVn-v-RTg", "stars": 5, "date": "2011-11-18", "text": "This review is based on an event I attended here. I did not stay at the hotel as a guest or experience the bar. I was a guest at the Etiquette Dinner put on by ASU and affiliates. From the moment I entered the hotel, I felt welcomed. Each employee I passed greeted me with a smile and professionality. I thought the hotel interior was really cool also. When I was leaving the event, I thought how strange that locals never frequent hotels in their cities. I should try it!", "type": "review", "business_id": "KNIFSqzQADOZWDO_7T-KzA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "Rr_-gavCIZXETevIFD29cA", "review_id": "4YEHc0Dt8yJwuFNxMIcA7A", "stars": 4, "date": "2011-09-01", "text": "Adorable bungalow building: Check\nQuirky, cute, mismatched thrift-store dishware: Check\nDelicious, buttery, flaky croissant breakfast sandwich: Check\nSuper friendly staff: Check\n\nI went here for the first time yesterday and thought it was great. My friend and I both ordered the croissant breakfast sandwich which was super delicious and filling. Even though I knew that I'd be full from the sandwich, I couldn't resist snagging a brown butter scone when I saw it was the last one. Definitely made the right decision on that one, I'm a sucker for brown butter anything and the scone didn't disappoint. My friend ordered the Iced Toddy which was really good-- spiced but mellow. I ordered a latte and didn't like it quite as much. The owner was super friendly and remembered my name for the 1.5+ hrs. my friend and I lingered in the shop. He even gave me a (delicious) orange-zest filled strawberry muffin on the way out! If I didn't live so far away, I would be here all the time. As it is, I'll definitely be back soon.", "type": "review", "business_id": "BLgkoO4MKq00V2o9jOf5zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4qGR9kNFDYQ4mQREG0aRJA", "review_id": "2w-zUbAEjr6SbdTBNV76lQ", "stars": 5, "date": "2009-07-02", "text": "Bad ass, just like the name. I've heard that this facility doesn't have any water restrictions so their course is lush & in tip top shape. It's definitely a challenging course. The staff is nice and the current off season rate is $35 for residents! You have to check it out, it's a great deal.", "type": "review", "business_id": "jsvIv9NRRBXdmCe8b88b4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-IQPD7ZO9n7iwUeHBhLJ9A", "review_id": "EQwasbNyl0Hg74rzrkajdA", "stars": 5, "date": "2011-10-08", "text": "Fantastic experience from valet to dessert!! Boyfriend and I were both very impressed. We were graciously greeted the moment we walked in by a man in a suit who walked us to the restaurant. Our server was knowledgeable about all the items on the menu and suggested some things to try when we were waffling between a few different choices. Cheese trio platter was sooooo good. I'll be getting that every time we come here and it was the perfect size for the two of us to share. I had the beet salad which was very good. Love the candied walnuts in it. Boyfriend had the lamb which he said was perfect: Tender, juicy and delicious! The breads that came at the beginning of the meal were obviously homemade and fresh. Even the coffee was good. It's very rare for us to find a place that does it right so completely but I think we've found it. Service was fantastic! Our glasses were never empty and we were well attended without being pestered. Could it be possible I can't find anything to criticize?! I can't. Love this place.", "type": "review", "business_id": "ypEtwQHobNJCZvPONO38WQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "IQTk7FS2EF657T8wJqr-sw", "review_id": "gPyYg-tiraAywQLxPxwksw", "stars": 2, "date": "2010-09-19", "text": "Oh Man. This is not the place I imagined I would assign my first 2-star rating. I woke up as sad and disappointed as I felt last night, leaving the legendary, old school Durant's after an evening of less than mediocre food and terrible service. Sigh.\n\nHoney had a great lunch there a few months back and was excited to impress me with dinner. We saw Durant's listed on Restaurant week and were excited for the excuse to squeeze into one of their comfy booths amidst the bow-tie clad staff and velvet wallpaper. The instant time travel type setting usually makes for an incredible dining experience. Shall I fault the poor rating to their efforts at succumbing to a prix-fixe menu? Perhaps.\n\nOur time at the bar proved to be the best part of the night. Watching the bartender mix the martini's the way my Pops used to was nostalgia at its best. I LOVED that they serve bottles of beer with a toothpick of meat and cheese. That is brilliant. It could transform me into a beer drinker after all. We met up with friends and continued on to the dinner portion of the evening.\n\nMoving on to the booth, our waitress was definitely in the weeds. Having been in her shoes before, I always try and accommodate the situation. We ordered an appetizer and a few cocktails and waited to order dinner when she seemed able. Appetizer of artichoke dip was yummy. Tortillas and garlic bread and warm, cheesy dip delivered promise.\n\nThe limited menu was just that. Okay first course salad/soup options. Main course offered Pot roast, a small steak or chicken fried steak. Stewed steak, grilled steak or fried steak. Really? Your menu is impressive...if you really don't want to participate in Restaurant week, then don't. \n\nHoney ordered the chicken fried steak as a continuation of the old school vibe. I ordered the trout off the regular menu after C pointed out the fish option. J ordered the cfs too. \n\nFood took a bit, but we had good conversation flowing, so it wasn't a problem. Salads and soup were fine. Main course arrived and we were all a bit surprised by the size of the fried steak. I guess when you think of this meal from the past, it encompasses half the plate and is oozing with country gravy. This steak was the size of a burger and had a dollop of thick gravy-esque goo on the top. Garlic mashers were appropriately placed. \n\nMy trout was supposed to be topped with a lemon caper sauce but instead it was slathered with a gravy that hinted at lemon and was all wrong for a fish. The trout was pain-fried and should there have been a light sauce, it would have been good. But the fried fish with the gravy was just so not good. \n\nThe fried steak too, so not good. Mashers achieved an appropriate level of goodness, but you really don't want mashed potatoes to lead your dinner. \n\nWe were devastated. \nThe whole experience was so not what we came for or expected. I do want to give Durant's another chance and order a big, juicy steak and let them wow me like they do to so many, but it will be a while before our trek downtown includes a walk through their kitchen.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HxqVJRFrrqi-FD_Xq3CXSg", "review_id": "s6XugpGzhNgRpPXmCFZImQ", "stars": 4, "date": "2012-11-30", "text": "I'm a great believer and loyal customer of Carried Away.\n\nThey do carry LV, although they fly off the shelves fast! I've brought in 2 and both were gone by days end! If you'd like to be put on a \"call list\" when they come in, they'll do that for you! Although there are several others that are on it too.\n\nI'm going in today to drop off two more in fact!\nHappy holiday!", "type": "review", "business_id": "3tpve0HlkR8tKoS-82b9nw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "l3-jVsU5mUqKrN6iTWfJkw", "stars": 4, "date": "2008-05-12", "text": "I love osso bucco, they have really good mexi-style osso bucco, so I love them. I prefer to sit on the patio or in the bar. But keep in mind, parking sucks if you go on a busy night.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "RyIUiuOrai_upllxKqiQqw", "review_id": "uw6eyCTL2KY3u_ju7E69Aw", "stars": 4, "date": "2012-12-18", "text": "Five of us enjoyed a casual and wonderful dinner at Blue Adobe. The fresh chips and dark salsa were very good - it took a lot of willpower to stop munching the chips and salsa before our meals arrived. I ordered the chicken chorizo which was accompanied by twice-baked potatoes served in a jalapeno pepper half - unique and zesty - as well as grilled vegetable strips. All five of us truly enjoyed our meals. The atmosphere was comfortable and casual. Our server, Ashley, was excellent. I would definitely recommend Blue Adobe if you are in the Scottsdale area.", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gxyAXBHgDi428kx6_P3o1Q", "review_id": "DOlLKwtj96-DKuhFoMFDow", "stars": 5, "date": "2010-01-30", "text": "Wow! I was in town on a week long business trip and the one thing I look forward to most when I travel are the meals. Cafe Monarch was a highlight of my trip. As soon as I walked through the door I felt cozy and right at home. Chef Chris asked me what I preferred out of a few selections and I went with the lamb chops and spinach. Usually I'm pretty picky about lamb and always inquire about prep but I left myself in his hands. Chef Chris served me a perfectly cooked thyme rubbed lamb with a wonderful citrus sauce. Spinach was prepared with garlic and a hint of mint which complemented the lamb perfectly. Simple, fresh, delicious...\n\nJust remember to bring cash", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "uPRz5JI11QQpwgNnSZZzaQ", "review_id": "qY4rWxTTeANd7EEzJ6kqAQ", "stars": 5, "date": "2012-11-29", "text": "If I was on death row and had to choose a meal for my \"last supper\" I would include the New Mexico Skillet (hold the chorizo) from Butters. \n\nI have searched high and low for any other breakfast place that compares to Butters and I cannot find anything. I thought that I had found a close contender in Perk Eatery in North Scottsdale but a second visit proved that they were not consistent.\n\nButters is consistently amazing. The service is strangely fast but you'd have to be crazy to complain about that. Their menu is creative and there is a really great variety of food. I always want to try the crepes or french toast but I just can't bring myself to get anything other than the New Mexico skillet. Maybe one day I'll branch out.", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "WhXRO_DxrQERc8T1GnozNw", "stars": 3, "date": "2009-08-28", "text": "this location is kinda dumpy and seems dirty. it really isn't dirty per-se, just outdated, run down, and therefore gives a dirty vibe. the pizza is always good, but generally the lunch pizza could be warmer. wings are good too. salad bar is low quality. the 3 stars i awarded are really for the pizza, because if you only order that you'll probably be satisfied. and $4 even for 2 slices and a drink (including tax!) should i really have a right to complain about the outdated facility? probably not.", "type": "review", "business_id": "U_CvxSM9epIi8u5A0jOUVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "k4pme9GZTaHk242zwebMsA", "review_id": "VjEnvPiYVFVjzYuWR9g7oA", "stars": 4, "date": "2010-05-02", "text": "Fresh and simple! Taste's great! Worth the drive! The burgers are like the ones you make at home! I had the sweet potato fries, highly recommended.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pWTUeXZKI6oJ78WTET5y2A", "review_id": "3J-JkSLD2OSCzNuCmBPIqQ", "stars": 2, "date": "2010-09-12", "text": "Crust is chewy. Pizza is below-average. Nice owner though.", "type": "review", "business_id": "B_fVPPUxw0TA9TfT5NB5AQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "s7Tm9oYWqRlBm5ex2OQ1nw", "review_id": "_SpcHgAjroszOj_9DO0ENA", "stars": 4, "date": "2011-02-14", "text": "OPEN for business!! It's located in the Canyon Trails Towne Center along the main entrance with the 2 banks. \n\nCasual, cheap, yet decent quality sushi and Japanese entrees. New and clean. Excellent service. Grand Opening special: one FREE appetizer if you spend more than $10. \n\nDecent spicy salmon and salmon avocado rolls. Very crunchy shrimp tempura. Excellent dressing with the included salad. Miso soup was a bit bland. They need to add a little more miso to the broth. Lunch specials include any bento boxe for $8.25 and pick 2 rolls for $7.45 that includes miso soup and salad.\n\nHmmm, I'm not quite sure whether it's Ah-Kai Sushi & Grill or Ah-Hai Sushi & Grill. Public records show Ah-Kai but the menu says Ah-Hai.", "type": "review", "business_id": "4ieuLil-D58FBU1DVd_xGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kYgPm0uUJo7cO94b84qBog", "review_id": "GQmYawZmvQzfoT-YSvGPIA", "stars": 4, "date": "2011-08-25", "text": "We were trying to choose a new place for lunch at work and this was mentioned. We all LOVED it! (that is saying a lot!) We ordered off the online menu and I called it in (she was VERY friendly) it was ready in less than 10min and was hot and delicious!!! It also doesn't cost an arm and a leg and is close enough to go there fairly often. We will be back!", "type": "review", "business_id": "bQ1s5pqX_UVWVQ-k4e9rAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6qSuo4M7twnv2ed7ydPSmA", "review_id": "J_aaoRPLpqLRssDz9EjhYg", "stars": 5, "date": "2012-01-22", "text": "Beer heaven! What don't they have? The staff has a taste for heavy body beer so if that isn't your ONLY criteria for great beer. I would just go with your gut. Their staff does know their stuff.", "type": "review", "business_id": "RnUemTgfTTCU01Xn2Tc5qQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5q_h6Uir_bow-rDIjFfr6A", "review_id": "_rIHwy1h3NiyCSy0UWDSQw", "stars": 4, "date": "2009-04-10", "text": "I really like eating here. I have only been for lunch, and I have found that the service is competent and friendly, and the food comes out FAST. I've probably eaten at MBFGR five or seven times, and the only time I had a problem was on my last visit, where they served me a plate with cold fries. This was a mistake, as I had a slight hangover and really, really wanted my gyros pita and fries that day, so I asked for fresh fries. Well, whether it was to apologize or to be sassy I can't say, but either way, I ended up receiving the biggest fattest plate of fresh, hot fries I've ever seen. They definitely made up for their faux-pas.\n\nI'm a huge fan and will be back many, many times. Opa!", "type": "review", "business_id": "bjUH-01t834CVg0Yl0CLWQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bWdkyh5Ax9Nl86qCuyjQng", "review_id": "_vfM-lPC-QPxE-S-QsdSng", "stars": 2, "date": "2012-01-29", "text": "I don't often review places on Yelp because of the time commitment and because usually I am just looking for a good bite to eat. This time, though I feel I should if not to balance the ridiculous number of 4 and 5 stars bouncing around for this place.\nThe food was decent, and the atmosphere OK but seriously, how can this place cost as much as it does ($60+ for two people eating light)?? And how are people fawning all over it? I don't like to complain about a good meal, and indeed this meal was good but I can't seem to justify the cost as compared to most any other place I have tried in Phoenix that would be considered in St. Francis' class. \n\nI ordered a Hearts of Romaine Salad and a bowl of cauliflower soup. I shared a plate of the baked goat cheese with my guest. Not one of these dishes would have tasted much different had I made them myself from ingredients at the Public Market. Indeed, I have had cauliflower soup at the market that tasted just as good for a fraction of the price.\n\nThe service was good, I will say, and for that I would offer a higher rating. But the general ambiance of pretension was more than I could justify, again for a meal I feel like I have had 100 times before. \n\nIn the end I guess I would say if they would knock about $10 off of each plate, and cut some of the pretentious attitude, I would probably be offering a much better review. \n\nI am not planning a return anytime soon.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lFa_Rh34tK6hSPYAZZ8Jyg", "review_id": "FDaNq98yO31Z_4uFnkqhHA", "stars": 2, "date": "2010-09-20", "text": "Oh, this was not good. Food not tasty. Overpriced not tasty food. If you're going to pay for a crab benedict, it should remotely taste like crab. And not be cold. Too busy, too long of a wait, too hungry to change. Other items tasted at our table did not receive much better feedback. I can't recall what others ate. In fact, there wasn't much worth remembering.", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "-M9Ek478gmatw8zr8lHwbQ", "stars": 4, "date": "2009-09-23", "text": "yummy! that's all i have to say about my blazin' buffalo sandwich on foccacia . the foccacia was a perfect specimen: light, appropriately herbed and airy. the sandwich fillings (sliced roast chicken, tomatoes, ranch, lettuce, and buffalo sauce) were fresh and yummy. i had a coupon for a free drink which made my sandwich, chips and a drink $7.47. a pretty awesome lunch for less than $8 makes me happy. almost as happy as buffalo sauce makes me. i have a tendency to be obsessed with buffalo sauce. a word to the wise: my co-workers got pasta salad and it looked awesome. they said it was tasty too. i was jealous. there's no up-charge for pasta salad - i recommend you get that instead of stupid chips you can get at the grocery.", "type": "review", "business_id": "1eBJyYf3JEccqXUFxG1VWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H2jcFGSS1n60jcKPBb-IoA", "review_id": "hlDDRPyMrbqbXo903h1iHA", "stars": 3, "date": "2010-12-12", "text": "The view, services, and drinks were perfect, but the food was nah... not good.\n\nWent there twice, first time was for drinks and view, it was wonderful, so we went again for dinner, the dish was not good.\n\nIf you want a wonderful meal for your date, try somewhere else and go there for the drinks and view.\n\nAfter having a dinner there, I won't bring my guests there except for the view and drinks.", "type": "review", "business_id": "4waggbCK-MSE9dbIdSMfPA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e5l5O_yypJOJP0k9-lDrbw", "review_id": "OiW_SWstrvvP9J65aOr6gw", "stars": 5, "date": "2012-09-08", "text": "Great ambiance (though a tad noisy), food, service and views. For our meals, we got the following:\n\n[Amuse bouche]\nI forgot what it was exactly, but it consisted of tumeric wild rice and a piece of shrimp. Tasty and a nice introduction, although the rice was annoying to eat with our forks.\n\n[Appetizer]\nBread with 3 dips - The pepper pesto was hands down the winner, and the other two aren't worth mentioning.\nButter lettuce salad - Decent, but a little too sweet for me.\nLobster bisque - Very rich and creamy with a kick of smoky flavor.\n\n[Entree]\nHalibut - Best dish in recent memory! Get this. Just do it.\nRoasted cauliflower risotto - Came with very tender pieces of beef. The risotto was cooked well, but it was unfortunately too salty for me to properly enjoy.\n\n[Dessert]\nEspresso cup - The ice cream was delicious. The rest of it was okay.\n\nAfter dinner, we took a trip outside to take in the view. We also explored the surroundings around the entrance, but it only led to an empty lot with the unflattering presence of a dumpster. Oh well!\n\nThe service was great, from the host calling to confirm the rsvp an hour after it was booked on opentable, to the sommelier suggesting a great bottle of wine, to the server making sure there was a candle in the dessert. Two thumbs up!\n\nTotally coming back once it cools down to be able to dine/drink outside. Woohoo!", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TISpYPWb1PXDmUYG2bsDzQ", "review_id": "ep7xxmmlqA1NmMMFuB3mtg", "stars": 4, "date": "2010-10-16", "text": "This particular Budget Lodge is a hidden no-frills gem. We spent a single night here after a long day's travel. Two story motel with gated outer access stairway, balconies to second story rooms, two inner stairwells (carpeted). No elevator, which is a shame as we had rather a lot of bags to bring inside. Still, a very clean, comfortable room.\n\nLadies, you will appreciate the bathrooms. While the towels are not spa-quality, the room had a pleasant palette (yellow, white, chrome and beige) and one of the best showerheads I've had the pleasure to use in a motel. High enough to adjust and not hit my head (I'm just shy of six feet). Excellent water pressure. \n\nOur balcony overlooked the alleyway and nearby buildings but the rate, the sleeping accomodations and the overall comfortable feeling surpassed any minor discomforts. \n\nI'd stay here again.", "type": "review", "business_id": "ArJEYF1XE5QbuVQVUGjv9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TxOR39w0Mlbd4h1siXyb_w", "review_id": "qAstxuzTbZ71zWnnkdTNSQ", "stars": 4, "date": "2011-03-03", "text": "Ok here is the deal with Red Devil Pizza. The key to making pizza with crispy crust is to have ovens that great sufficiently hot. That is why I like places with brick over pizza's. They don't use Brick Ovens at Red Devil but I have been told that Red Devil has some really old pizza ovens that are not available any longer or hard to get. I can't verify that, I don't even remember who told me that, maybe I read it some where. Don't know if it is true or not. What I do know is that Red Devil is one of my favorite pizza place in the Valley. Their pizza is consistently good. Thin-Crisp and delicious. I have had pasta's and salads there as well. They are fine, nothing to get excited about. But the Pizza at Red Devil is something I will stake my reputation on. Actually I don't really have a reputation, but if I did I would lay it on the line for Red Devil Pizza. The long and short of it is, I am very passionate about their Pizza. Period.", "type": "review", "business_id": "0gQrhOYWdO0XVZEKtOrvaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GPPHDWEZGjiw777_iTOJ1w", "review_id": "Q6F0ZXSoDq_a6aMwENq6MA", "stars": 5, "date": "2012-02-02", "text": "Lots of cool, cute and educational things here for my two kiddies. I stop in here for each birthday/Christmas to balance out the \"junk\" toys. I love the art project portfolio that is divided by school year and the school memory books. :)", "type": "review", "business_id": "rkbe2bfskoPY-K_mcYjSYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Xdu24yBabw0uq4GzKBhWaA", "review_id": "Fxn-nDVt2YaPacjdrE1-MQ", "stars": 3, "date": "2011-06-05", "text": "Dined here for the first time tonight. The food was..A-OK! Certainly not authentic Mediterranean food but I don't think it is trying to be. The first thing we noticed when we walked in was the loudness. Way. Too. Damn. Loud. From an acoustician's standpoint, all the hard surfaces and the cavernous dining room make for a very loud joint. This is a big minus in my book.\n\nOn to the food! We ordered the beef gyro sandwich. Very average but tasty nonetheless. Checked out the lentils and rice salad served warm over a bed of lettuce and veggies with dressing. Sadly, this was a bit of a miss for me. The rice was quite mushy and just didn't stand up to the heft of the lentils. The taste itself was quite fine but I couldn't get past the texture. Also, if you order this dish, know that the grain/legume level far outweighs the veggies. A huge portion (which is great for the pocketbook) but beware if you're watching carbs. The salad below was actually refreshing but all in all, the dish just wasn't for me. \n\nAlso had the dolmades which were quite nice served cold (albeit a little overstuffed for my liking). Our server was very good, very accommodating with special requests. Service was a bright spot for sure.\n\nWithout a doubt, while I didn't LOVE the food here, it was tasty enough for me to come back again and give it another try!", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FgauKBp6w-_8hOY1CRYMoA", "review_id": "81GFhUb2nh9Bq_rBpyZhWQ", "stars": 5, "date": "2011-11-14", "text": "Great service, I didn't get steak from here (yes, I know...a steakhouse), just got the Zesty Thai Salmon. The salmon was awesome with the chili mayo, baked potato, and asparagus. Can't wait to go back to try their other dishes.\n\nThank you Kathy (owner) for taking the time to send me the name of the dish! Had to update this review and rating because of it :D", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "801mMnd8E2PGoRB9Nc0UhA", "review_id": "YUrLPES0xPgnZ2l7Bv6mjA", "stars": 3, "date": "2010-06-12", "text": "Very Clean store. But I guess when you're paying about 300% more than you would anywhere else, the place can afford it. The people in the front are pretty friendly. There is a lady in the deli, she is pretty friendly/talkative. There are people who mill around the store wearing name tags, they are not friendly or polite.\n\nI just cannot get over how expensive safeway is.", "type": "review", "business_id": "uDoEofFBFyaVsAR7UCYMDQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "J5UxZzoekVD-HuahfpJzRw", "stars": 2, "date": "2011-06-15", "text": "Long waits and teenage workers with bad attitudes...nuff' said.", "type": "review", "business_id": "AAkqVCuUGIP0gvY42_CRYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "2ARM6NFVciTzV21r7p8jiw", "review_id": "rOlff5bjdNWYuANuN7b5Fw", "stars": 4, "date": "2009-08-07", "text": "I moved to AZ a few months ago from NYC, where I lived in a neighborhood of great Vietnamese restaurants, and have eaten my way through the Vietnamese enclaves in Boston and in Hong Kong -- and this place ranks up there with the best of them. You can tell how authentic a Viet place is by the condiments when you order: the right kind of basil, mint leaves, and limes. This place has all that correct, and their fish sauce is perfectly seasoned: not too sweet like some faux-Viet places, and just the correct color/taste. I'm lucky that it's down the block from my new home, and I can run in whenever I want. The pho is right-on, with really tasty and rich broth, and I also love the noodle cakes with grilled beef. \n\nOnly complaint is that I find the price to be slightly higher than what I'm used to in NYC (of all places!). But it's only about $1-3 off per entree, and I understand it may cost more to get their supplies to the desert.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1-A_PLT-60EZ9MsfbkV9sw", "review_id": "b0YTK99evLRag-WKyWbfvw", "stars": 4, "date": "2012-07-04", "text": "We went out last night to the movies, and with an hour and a half to spare, we thought we had time to stop at this newish restaurant on the corner of Indian School and 24th St. It was a family owned place, baby in bassinet by the cashier, and absolutely no explanations of what the food is. Just strange names. We ordered and sat down. 35-40 minutes later, we realized the food still hadn't come and we'd never make it out to Scottsdale for our movie. So, disappointed, we took the food when it finally came and brought it home and ordered something up on Amazon. When I dove into the \"to go\" boxes, I stopped complaining. Man, that food was delicious. I ordered the Chicken Tikka, only because I pretty much knew what it would be, and it far beat my expectations. Our Chicken Kabab (ordered again because we knew what it would be) was delicious as well. To the owners, thank you for being here. We'll be back. Please develop something that describes the food, and make a non-egg version of the Naan bread please! Lots of vegans and allergies out there who don't expect food from your region to have heavy eggs included. Readers, as long as you set your expectations correctly about time for food preparation, you'll be very happy with Khyber Halal. Get in there and support this neighborhood gem!", "type": "review", "business_id": "saON8-nDZi5W64u1xGtmPA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2ARM6NFVciTzV21r7p8jiw", "review_id": "50DlJdkf0jtG-CQLDx8jGQ", "stars": 2, "date": "2010-03-27", "text": "My friends and I got a 10-person karaoke room and ordered food while we sang. The room is SMALL --in other K places I've been to, that would have been a room for 5 people. With 10 people in there, we turned into a sweaty airless mess very quickly. Secondly, their song choices are not good. They're behind about 2 years. Had we known, we would not have gone there. The food was mediocre; I've had better sushi. A room rental comes with a complimentary sushi platter, which was one roll (no idea what it was, even though i ate a piece); some edamame; two ribs. I ate the edamame; they weren't cooked through because they were hard and had that slightly spicy raw taste. \n\nWe went on a Friday and it was packed to the gills with Scottsdale d-bags. At least the servers were very sweet, even though they messed up drink orders once and the bill once.", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aIAjAU-6NH583EkQ6E9KRw", "review_id": "Le042ZmTK1pmcF7HiGEgvw", "stars": 4, "date": "2012-02-25", "text": "One thing you will notice about Zia's, they really work to great everyone who comes into the store, and that is, I think, indicative of the overall spirit of service you can expect to find in this store filled with a surprising cast of beatnik, bearded, tattooed, and pierced staff that you will find at this emporium of music and cinema. Some items are a bit pricey but wonderfully fun to drift through the isles and see what you can find in the used section of the store. I'm more of a cinema person myself and just picked up a blue-ray and a DVD video last night (sort of a payday tradition for me). Even better, when I've compiled too many movies in my personal collection, I can take them down to recycle them into the used section and have more credit to spend on other new items in the store.\n\nThough I'm not remotely beatnik in appearance (firmly a member of the establishment in appearance) I've always been warmly greeted and welcomed by the delightful staff at Zia's and consider it to be an important and unique part of the downtown Mill experience.\n\nOne thing I would like to see them do, and maybe I've overlooked it, is carry some actual vinyl albums, but there is only so much space, but that seems like it would fit with the overall ethos of this fine establishment.", "type": "review", "business_id": "Ioi8SAipW_eLRuwH4BV0_Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "-vRFUY8ixuNniCCNVvmkRQ", "review_id": "AshRXkW0Nx2emWON3-tdyw", "stars": 5, "date": "2012-05-27", "text": "I LOVE THIS PLACE I JUST CAN'T NOT GET ENOUGH OF NCOUNTER!\nthe vibe is young clean and fresh. \nthe good is so delish.. I keep telling all my friends to go here for brunch (:", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "31-ApcgVr4DiigSeksTmEg", "review_id": "vu0il2M0s0ZD3s2QcmQEQw", "stars": 5, "date": "2009-05-22", "text": "One of my favorites. The crispy chicken tacos are overstuffed with meat,lettuce,cheese and always filling. The prices are reasonable for what you get. Also like Julios g too next door for quick take out or \"no Tip\" casual meal. Self serve chips and mild chunky salsa are terrific.", "type": "review", "business_id": "mBDhy9j4qwKRnf4h8UQnrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pyQsAolvBtbhyICbDEnBKA", "review_id": "EJYcRFgh1_E9ggnhCscMsw", "stars": 5, "date": "2012-01-16", "text": "Hubbard Family Swim School has become a staple for our family. You can feel the warmth and dedication on every visit. Our kids love it and are excited to come to every lesson. We even have birthday parties here!\n\nThe instruction is top-notch and it's evident while watching through the huge glass wall.\n\nMost of all, my 5 year old is a much better swimmer than I am, his father. Thanks to Hubbard.", "type": "review", "business_id": "kk85ivM6MQUtH8u642p1Ew"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XHAY4WP-fh5XWUJCS-sC6g", "review_id": "Q1_o2NdjgrKFwEESOXv7Lw", "stars": 1, "date": "2012-11-09", "text": "I wish they had a \"0\" star option too!\n\nThe service and food was awful. Just a bunch of kids running the place. The place closes at 10pm but when we went in there at 8pm all the workers were too busy cleaning to go home early to help us. The food was burnt on one side and raw on the other. The manager was too busy flirting with the other help. We couldn't get drinks because all the glasses where dirty, we were told by our waitress. We asked for the manager before we left at 8:45 and was told he already went home for the evening. What kind of manager leaves a bunch of teenager to run the place? \n\nNEVER GOING BACK!!!!", "type": "review", "business_id": "wT0L6ZyFjq3CQKYqENvC3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1ajv7CEuzebjrv7X-iwTmw", "review_id": "oImxnyGf7frJneJY50SQkg", "stars": 4, "date": "2010-09-09", "text": "Very good, fresh food, nice ambiance, reasonable prices & good service. We're from out of town & found this place with the help of Yelp! We'd definitely come back again!\n\nWe had the Caprese Salad & the Sicily pizza. Both very good.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "RMej4sGVkwDOKhqkmJ8EgA", "review_id": "E7s0mC9akrUJnB8YthyStw", "stars": 5, "date": "2010-02-16", "text": "This is not an Asian Topless Bar. It is an Asian \"Tapas\" bar. The guys I was traveling with spent the first ten minutes waiting for the show to start and were disappointed when I smacked them all for actually thinking I would take my coworkers to a topless bar. \n\n\"Tapas\" are little appetizer plates, and Sens is all about getting a little taste of everything. The atmosphere is fantastic - eclectic, moody and very, very cozy (so I recommend reservations). \n\nThe little dishes are about four single servings, so you'll want to order several plates! Highly recommend the volcano flamed beef and the sugar cane pork. The food is very flavorful -- but everything is a bit spicy (garlicky-spicy), even the dishes they call \"mild.\" \n\nPlates run about $6-$9 each, and each person in our party ordered 3 or 4 plates...we were all full by the time we left! Definitely get a cocktail, their mixed drink menu is fab (White Sin is absolutely sinful...and absolutely worth the indulgence).", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iW5hQ7GD6qc-Px2bamS1sg", "review_id": "G59gfZmTbAYD02Yy0kKtmw", "stars": 1, "date": "2011-04-03", "text": "Good service but the food was horrific. The pollo fundido was dry & no flavor. Could not eat the tamale it was so bad. Will not go back. I had better Mexican off the neighborhood roach coach.", "type": "review", "business_id": "XK5FFbrKWMjRqc6ZbSTknw"} +{"votes": {"funny": 5, "useful": 1, "cool": 1}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "GGx2gRAURedQWbgQ7Vvr0w", "stars": 2, "date": "2008-04-29", "text": "The upstairs theater is nice enough. There are a few nice semi-upscale restaurants here. It's also got a really good swanky (and somewhat hidden) bar here. \n\nSo why only 2 stars? Well, because it smells like this is where all the diarrhea in the world goes to die... especially the parking structure. If you can escape the smell though, this is a nice spot for a date. The problem with that is when you go walk her to her car, you have to try and figure out how to have a good night kiss while your nose is telling your brain that you are swimming in a septic tank.\n\nThe new Waterfront mall corridor stinks like this as well. Maybe that's where the term \"filthy rich\" comes from. What do these people eat?", "type": "review", "business_id": "_sBRg5hmoBqkZPzFpcMBOQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "KoUAWaVTn6Em7nsR7qZxBg", "review_id": "U6XI7YIrdG2BXmNj4GkbOA", "stars": 5, "date": "2012-07-09", "text": "By far the best poker room in the state and I have played in every casino poker room in the valley. The action is always there-lots of dead money to be picked up if you know where to look. Good promotions, amazing food served table side and all the sports games you can watch. I wish they would bring back 6-12 limit but 8-16 will have to do =) such an improvement over the tents, though they will always hold a place in my heart. It sucks cause I work right next to the casino and every night after work I have a tough decision..go home to my family or go to my favorite card room and tear it up. If you havent been there-MUST GO.", "type": "review", "business_id": "EwHIy2ciDTtmlj7lpa9dng"} +{"votes": {"funny": 4, "useful": 12, "cool": 10}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "xCt-gSne_IoKyFG6JU6fRQ", "stars": 5, "date": "2011-01-12", "text": "Staying at the Royal Palms has been on my bucket list for a while now, because I've stayed at just about every other resort in town that I've really wanted to check out. Oddly enough, this also happens to be the closest one to where I actually live, so it seems strange to drop a load of cash to stay in a hotel four miles away from home. \n\nNo matter, last month was my golden birthday and this is where my lovely girlfriend decided we were going to stay. Score. We had my party (a surprise, nicely pulled off) and we invited a bunch of people back to our room afterwards to continue the festivities. It was a pretty standard room, a bed, fireplace, a couple of chairs, big bathroom, a table and chairs on the patio (I believe they call it a valencia suite). Life was grand.\n\nUntil the morning. *bang bang* WTF is that noise? *bang bang* There was pounding and various noises coming from the room next to us, and it wasn't happening on the bed. Are they really doing construction at 8:15am? It continued. My girlfriend called down to the front desk. The noise stopped. Then it continued. *bang bang* We were about to lose it. They called our room, \"do you mind if they continue working?\". Actually, we had just fallen back asleep...\n\nSo this is not how the Royal Palms treats their guests. No, any resort with a Director of Romance is serious about making their guests stay enjoyable, so I knew this was not normal. A conversation took place, and profanity and yelling wasn't even necessary. Essentially, they were going to comp our room, but they offered that we stay another night in the presidential villa for the same price...how could we say no?\n\nI hung out at the resort all day because I was feeling miserable. They comped lunch, and about 4pm, they moved us to our new room. Nice place, the presidential villa. It's actually only one bedroom, but has a huge living room, dining room, kitchen, two fireplaces, three patios with fireplaces and water feature, old-school tub, double-shower with outdoor shower, a bidet, you know...typical amenities. I was still feeling terrible (yay, the flu!) , so we opted to order room service from T. Cooks. Naturally, if they hadn't done enough, they comped dinner as well.\n\nWe had an extremely atypical experience at the Royal Palms our first night, I have no question about that. But they more than made up for it. They were gracious, they smiled, they apologized, and they made it right immediately. I can't ask for anything more from that from a place that prides itself in its customer service. \n\nI would not hesitate to stay here again.", "type": "review", "business_id": "rLAeltELaGdQKh_LYIllEA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "N2rvehlxiGV9uN7BjF1ocw", "review_id": "0Xdu6erUtv2yEPfZngciDA", "stars": 2, "date": "2009-07-22", "text": "Gross, tasteless food. Good margaritas.", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "jGo2ovJlMlDRfPvaCOgpaQ", "stars": 4, "date": "2011-11-11", "text": "Excellent everything! The customer service was struggling a bit but well, they just opened so hopefully that'll improve. \n\nThe cookies are great. The grilled cheese was so so. Took awhile to get to us but it was slammed (but also, I was on a time limit).\n\nThe manager came over and offered us free dessert for our not 100% experience. She also shared with us what soups were vegetarian and were not.\n\nI'm excited to go back. It's a great option for Downtown Phoenix!", "type": "review", "business_id": "di2QHs2SrY0XFHcfAq_k2A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "D0ZTDnjsXdKDHd5UM9XZiA", "review_id": "45qjyMoGZGBAYKBis9s2vA", "stars": 4, "date": "2009-03-22", "text": "I'm a fan of the bistro. Today, however, a seemingly 'customer' was going behind the kitchen area, flipping my pizza and even entering the kitchen door. What? If you are an owner and are enjoying the bistro, act like a customer! I was kind of disturbed by a casual guy eating in the restaurant with his family and then going to get cups, plates, and food from the serving area. Can I do that next time? I hope I go back. I have taken friends. As I said , I am a fan. You need my business.", "type": "review", "business_id": "Uke8Pq1m918WW0n0_jEmWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YoBu4TVcP5YHKOC35NPXQQ", "review_id": "ShhaNxRrWd06hFAikSauNg", "stars": 5, "date": "2006-04-23", "text": "note: the 5 stars i'm giving this place is for their happy hour menu, not the regular menu. if you order off the regular menu no amount of advice can help you.\r\n\r\nM&S has to have one of the best happy hours in the world, aside from Spearmint Rhino. $3 drafts and a rotating $2 bar food menu, such as 1/2 lb. burger with fries, hot wings, fish tacos, beef taquitos, etc. don't order the fish chilli though, it tastes like A1 sauce. they got a lot of winners on tap, like kiltlifter, guinness, bass, fat tire, pyramid hefe, etc.\r\n\r\nhappy hour is from 3p-6p and then again from 9p-11p, which is pure genius. make sure you get your parking ticket balidated, because the Eritrean girl in the parking garage will make you go back in the restaurant and get that joint stamped if you forget. BUZZKILL.", "type": "review", "business_id": "MU3i2uEyUBntebU6pEyMbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W7zmm1uzlyUkEqpSG7PlBw", "review_id": "0IIVtk-LqO0M6bsTb2C9nw", "stars": 5, "date": "2012-06-06", "text": "I love this place.\n\nYou might ask \"why does the free roving large land mammal love a place that makes him sweat so hard that he's puked, twice?\"\n\nAnd here's why: if you can get me to yack during a workout from pushing me hard and coming up with exercises I've not done before (which is hard with 4 years in the Army, 17 years of Rugby, and 30 years of riding a bike) then you're doing something RIGHT!\n\nMy special lady friend got me into the idea of this as a good way to dog stomp one another via a proxy named Jeff. Jeff is our trainer, and if you'll pardon my digression, allow me to share with you about Jeff.\n\nWe have this song in Rugby called \"The S&M Man.\" Its a less than politically correct song about a special person, usually someone who trains us or who is a hell of a rugger him/herself, who is so sick, so wrong, that he makes pain fun and delightful. \n\nAnd I use the word \"pain\" in the best way. Pain, after all, is just weakness, and in my case old pizzas, leaving the body.\n\nJeff is amazing. He gets it done in 30 minutes to the point where I don't really want to do anything the next day. Its in and out, slam, bam, thank you ma'am with Jeff and Vitality. This is going to be a part of my training for the long term.", "type": "review", "business_id": "lquFtAcCRSpNYAN1qlxWhA"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "FTHuIbf-uuE8NjPF6PX7aA", "review_id": "tgvnAXKyTydW_FC2vd-UCQ", "stars": 1, "date": "2010-01-27", "text": "I was accused of training my wife for compensation and was told to leave the gym or he (Page the trainer) was going to call the cops. I don't know how a trainer confuses me working WITH my wife with training my wife for compensation. Management handled this issue horribly. Their lack of attention to the matter showed exactly what a customer of 6 years was worth. You are treated only as a number. Do yourself a favor and stay away. I have since started going to a gym which is much more expensive but worth every penny to be treated with respect.", "type": "review", "business_id": "ttpZx2t4fMAApdU9MFG91w"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "gDXgcGKsS4ZTneej8-ACqQ", "review_id": "JyyhjvKZ1vNCbNWP9OUNTw", "stars": 3, "date": "2012-07-24", "text": "i too came because of a living social deal, as it turned out it really didn't save us any money. \n\nthe buffet is odd. lots of different kinds of food. onion rings, fries, chicken nuggets with baked cheese eggplant, stuffed grape leaves, hummus. i sampled a bit of everything.\n\ni liked the soup, very nice, i couldn't identify the spice, i don't know anything about mediterranean food. but i know what i like. i like 3 different olive dominated dishes, i wish i could cook eggplant that kept it shape this well. i liked the hot pita bread. i loved salad with big chucks of feta cheese. there where several tasty chicken dishes that were excellently seasoned with big chucks of flavorful chicken.\n\nthe american staples, probably for the kids and unadventuresome guests was bland and a bit dry, expected for a buffet, where the food sits out under lights.\n\nadvice:\ngroup the foods by origin, not by meat, vegies, salad.\nmake up a route down one side of the serving table, greek, turkish, Lebanese. \nmake it a learning experience, tell us which dishes use olives, what kinds of spices.\n\nif you want people to come back teach them a little bit about the food, share the culture, don't mix chickem mcnuggets with a tasty pulled chicken dish just because they both have chicken in them. tell me why this is good food, help me learn something the cook knows about his homeland.\n\nso i walk down one side and get a greek-turkish meal. the other side is another culture, then one side for the bland american food. as is everything was mixed up.\n\nnow, i'm going back again. with my laptop and a notepad, and hungry. i'm going to taste each dish by label- if i don't know what it is, i'm going to sit down and google it. i'm going to learn where it's from and what spices are in it. i'm going to make my own learning experience. if the owners sit down with me and explain how their food expresses their culture, i'll rate it 5 stars next time.\n\nit's a family business, it's a huge building, it has a good talented cook(s) somewhere in the kitchen, it is good tasting food. it needs to be displayed and presented differently. it wasn't busy, a shame, industrialized food is always bland and busy.\n\nnow, if you grew up with these dishes, you can leave a review about their tastiness and authenticity. that would help.", "type": "review", "business_id": "CsJReJjzMNtw7ZTPCuVZYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xPOtktd0y8Vie5EWcACxsA", "review_id": "K2SzzkgyxOAjnB6R15hfPA", "stars": 1, "date": "2012-06-16", "text": "OMG! I am so frustrated at this store, I have never met such an incompetent group of people in my entire shopping life. \n\nFirst, I called Fry's Electronics to check to see if they had a specific GPS model that worked in Europe. I called because I live at 115th Ave and Buckeye which is about 20miles from the nearest store. The call center informed me they did not carry that model but listed about 10 other GPS with maps of Europe. I asked again those models have maps of Europe? \"Yes and Australia too\". And you have those models in stock? \"Yes.\" What is the price range? \"$100 to $300\". Thank you. FIRST MISINFORMATION! \n\nSo I drove to 30th Ave and Thunderbird, talked with \"GPS Specialist\" (which apparently means nothing) and he (Jared) informed me they did not have any GPS units with European maps!! He said the call center \"is a bunch of retards\" and that those were all last years models. \n\nThen he called someone and looked at several GPS Units. When he did not know if the unit had European maps or not he GOOGLED them! (okay not confident in your product knowledge). Then he sold me a $260 unit with European maps. SECOND MISINFORMATION. \n\nI drove all the way home and the GPS did not have European maps! I had to buy them for another $100 which I could have done with a cheaper GPS.\n\nSo I drive back to Fry's. Speak with a Supervisor, they return my first GPS. I speak with the same sales rep (ya thats great). He says he figured out 25min after I left that he sold me the wrong product and none of their GPS have european maps. \n\nSo I then buy the cheapest model that was could download European maps, according the the sales rep Garmin NUVI 50Lm for $129. THIRD MISINFORMATION. Because according to the Garmin site the NUVI 40Lm is also compatible and cheaper. \n\nI then went home bought the $100 European map and couldn't download it to my GPS because there wasn't enough space available!!!\n\nNow I have to buy a miniSD Card and a miniSD reader for my Mac book. Awesome. Great to know that the electronic store knows nothing about electronics!", "type": "review", "business_id": "iWlaj4R-2BTsWR7PwL90BQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "7knTjXA1lNJw7AMIIJi4YQ", "review_id": "wkGiNk7n8fvdvWY0wSdDtw", "stars": 3, "date": "2012-09-03", "text": "Went to Deer Garden Signature last night with my wife for dinner. We had just returned from our Labor Day Week trip. \n\nI ordered a fish soup with dumpling, fish balls, and Korean crystal noodles. My wife ordered preserved pork in a clay pot. \n\nThe preserved pork in clay pot did not seem to interest me. To me it looked like sausage with rice, and nothing particularly interesting.\n\nThe soup was actually pretty good. My wife and I liked it much better. \n\nThe only thing we think they could have done better is the following:\n\nMy wife and I were not exactly familiar with the style of food. My wife is Vietnamese. Maybe as part of the banner for the restaurant they should put Guandong Style Cuisine under the name. \n\nOtherwise the food is pretty good. \n\nRahul Iyer", "type": "review", "business_id": "UETunq2HsmwW9pbsSGWZ6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C0qH4_sIqAXWT59dxEgYKA", "review_id": "hdB1k_IxlzKfpAB6VRKR_w", "stars": 5, "date": "2011-08-02", "text": "Great food!!! The French dip is to die for!! Great Service! Clean and fancy especially for the area it's located in! Def a hidden gem! My husband and I both love going here and can't wait until next time.", "type": "review", "business_id": "crSme9ZoLQNMtRGxv0htTw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "muJAX5QzQTZGb0te0M8JUQ", "review_id": "Ea8EiMfgcOaJh5Cuh1XlOg", "stars": 2, "date": "2012-08-12", "text": "After having been here a few times, I would say most of the reviews were dead on. The waiter was a fill in from another of the chain restaurants. The poor guy was serving everyone (which wasn't that busy) running around cool headed, apologetic and super fast paced. \n\nAfter \"gonging\" our announcement that we were there, a guy came to seat us about 10 or so minutes later. Sadly, we were told that he was the owner... Not too personable. To be fair, they really never had great service in the few times I have been there. What keeps me infrequently coming back is their drunken noodles. They rock. We went also for the referral of the pumpkin curry entree. Both more than made up for the extremely slow service and normally unfriendly staff.\n\nSummary of the rest of the reviews... Fish tank and others looked really clean, though I have seen them horrible before. Bathroom was atrocious... Filthy and gross. Waiter gave me some napkins and sent a guy out to buy more . Walk to the bathroom was down a dark hallway, thankfully again the waiter helped out with that... Poor guy! He deserves to manage the place and a raise! Lol", "type": "review", "business_id": "km3g-wDO2KfhfnTvJrLJig"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0Teo0yeF4aMYow0d6Db-4w", "review_id": "CSOlUOu89Xcvp7A3RFbOTA", "stars": 4, "date": "2010-05-06", "text": "This place is great. The B.B.Q sauce has a nice little kick to it. I tend to get the brisket sandwich with a side of potato salad. Im not a big fan of the macaroni salad because it taste to picklelish, The seasoned fries are also good. My cousins usually get the pulled pork. They seem to love it. \nMind you, this place is a hole in the wall. Very small with minimal sitting area (2 small tables). The food is good but frankly it is a little expensive. But just a little.", "type": "review", "business_id": "Pju_pKfvEnUYV9wMVNsacg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W2Pem2fq1FW34E9I5deXcQ", "review_id": "oxtCscAbwQrfKLfHskf04A", "stars": 5, "date": "2012-12-02", "text": "Amazing! The Chicken sausage pasta definitely works!", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 15, "useful": 12, "cool": 11}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "Ue5__8OaDpWytVGMMKDQaA", "stars": 4, "date": "2009-03-25", "text": "Been here a few times now so it's time for the review. Walked up to the hostess on a Saturday night and she asked if we had reservations, I said \"no\" because I didn't think this place was like that but then spending some time here it kinda makes sense, or Sens. Haha.\n\nSo one time ended up getting 6 (maybe a few more but the beers were going down pretty easy that night) different items. Each one well thought out and fun to eat. Yes, I said fun. One was cooked by us on a hot rock, and the others made us investigate each tasty bite.\n\nYup, the portions are small, but they're darn good vittles I tell ya. Oh yeah, and they have a DJ so they get a few extra hipster points.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "oijTMVRAYB6DrSkhLlaHjA", "review_id": "QKsk92azo-ckaIO292AY7A", "stars": 1, "date": "2011-03-04", "text": "WOW! I have never been to a place with service this horrible. I may have caught them on a bad night, but I'm not giving them a second chance to find out!\n\nI came in with a group of 4. We stood up front for 5-10 minutes before waving someone down to be seated. That was a mistake..\n\nAs we're waiting for a server to take our drink order, we noticed that EVERY single table had empty cups waiting to be refilled, dirty plates that needed bussing, and people with impatient faces. There was only 1-2 dedicated servers, and they completely ignored us.\n\nWe stuck around just to see how long it would take before someone took our drink order, it was like being in the Twilight Zone. After 30 minutes and flagging down 3 employees, we just walked out laughing, no one had even apologized for the wait, I'm not sure they even saw us leave! It was the strangest restaurant experience of my life.\n\nWhat a joke...\n\n**EDIT** To their credit, right after I posted this review, I received a message explaining that the Director of Operations would like to amend the situation, even going so far as to include their cell number. I admit that I feel strange posting such a negative statement amid all the 4 and 5 star reviews, I'm assuming I caught them on a really bad night. I'll edit this if I ever return to the restaurant, but the fact that someone actually reached out to try to rectify things says something", "type": "review", "business_id": "TqHTtjPANCBKGsjGBjDoQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CJt9v-cipmczq8zDemJNzw", "review_id": "_ZS1dbXHrS6BBN_Xrn8vIw", "stars": 5, "date": "2012-01-07", "text": "YUMMMMMM!!!! I was brought to this place by a friend and was so glad to find it! Very clean and unique casual setting. Staff were very friendly, food was hot, fresh and amazingly gooy...definately a 4+ napkin kind of meal. So happy to see they serve Chicken philly -steak as well as the usual philly cheese steak and sweet potatoe fries! Find out where this place is because it could be easily over looked and you would be missing out on some deeee-licous food. This place is a must try!", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "Kr4tb3kJgfYviNFn22gVTg", "stars": 3, "date": "2010-06-22", "text": "After hearing good things about the Scottsdale location, I was looking forward to lunch at Arcadia Farms when visiting the museum for the Ansel Adams showing. Unfortunately, it was a little disappointing.\n\nService was painfully slow. I'm not sure if that was the kitchen or the server, but in either case, I was not impressed.\n\nWe started with the baked goat cheese. For some reason, I envisioned the caramelized onions and roasted tomatoes atop the cheese, but everything was combined. While it was quite good, only the bottom portion was hot. The rest of it was only lukewarm. I wondered if perhaps the dish is prepared ahead and refrigerated, resulting in the uneven temperature.\n\nWe also shared the smoked turkey and warm brie sandwich with white bean salad. They generously served each of us a full side of the salad with our half sandwich, which was more than enough. Although the sandwich had just been grilled, the inside was still somewhat cold. I also would have preferred just a little more apple, but overall, it was A-OK.\n\nThe white bean salad with red peppers and possibly cucumber if I remember correctly was sorely lacking in flavor. Salt helped, but not enough to save the dish. If it was dressed with anything other than oil, I missed it. \n\nArcadia is just fine if you're already at the museum and looking for a bite. Otherwise, I don't know that I would return.", "type": "review", "business_id": "3EEVGDngt4DEhoOQZIUNUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "K0euQLFAcKhQPZ6JxGAryg", "review_id": "bzKuSZLXsO9g5Fsro1OHRA", "stars": 4, "date": "2012-06-30", "text": "I love that the food was freshly made and the place had a great \"down home\" feel. The owners are also very welcoming, made us feel like family. We ordered the Bean Enchiladas, Chicken Enchiladas & Chicken Gorditas. All came with Rice & Beans. We all enjoyed our meals. Good prices also.", "type": "review", "business_id": "0yfN4bdKZfkFSXseB2kOBg"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "cWINg1kfp4UZKPhtCGkNNg", "stars": 1, "date": "2010-12-20", "text": "I've decided to completely write this place off, and here is why you should too:\n\nTHREE TIMES I have tried to go here and they have been closed, all the while their website and posted hours say they should be open. If one of you wants to drive all the way here from the suburbs, you'd better call first because this place cannot be trusted. I've wasted my time and spent hungry minutes walking here only to be disappointed. \n\nVitamin T will fail, there I said it.", "type": "review", "business_id": "WYk91WPklqRWuk9z9DsPDw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "5AwmoFmnEWoojI7SGYrzmg", "stars": 5, "date": "2011-10-27", "text": "I am obsessed with this place! I cannot say enough amazing things...I love their exhibits...I love Arcadia Farms inside...I love the architecture and design of the building...I love the staff (they are so helpful)...the gift shop is fabulous (I got the cutest watch bangle)...I love the giant red t-rex out front...I love the kids area (or at least my son does)...I love the diversity of the art! I would recommend getting a membership because it allows you to be able go all year long with your loved ones and family! You can have weddings here and they are beautiful! They have events here all the time if you sign up for emails or become a member...at least just go once and you will fall in love!", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "OYvDDPx5bXoGFfzAS4nSbA", "stars": 3, "date": "2007-03-29", "text": "Fajitas is one of those places where you may go for an occasional, unmemorable lunch. Nothing is gross. Nothing is exceptional. Everything is just, well, there. I've tried different variations of the fajitas theme over several lunches (chicken, steak, veggie, etc.) and they were all ok. Not a big fan of their tortillas, though.\n\nIf you work anywhere near there, then I'd say go ahead. It's a safe bet for lunch. You won't puke or curse the world. But is it a joint where I'm saying, \"Dude, you GOTTA try this place out\"? Nah. You've had better fajitas elsewhere...\n\n3 Stars.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "lmiDCrmas8TxRsbIGZX9Pg", "review_id": "ySD_gy1A19xVj7fYH_gC1A", "stars": 2, "date": "2011-07-19", "text": "One word sums this place up. GHETTO! The other reviews were right on the money. I'm not gonna lie, I was scarred! So I suggest buying your tickets ahead of time to get the best rate. I also highly suggest paying the extra 5 bucks to get priority seating and sit up front. And watch your seat- if you leave it empty, you will get jacked.\nBe forewarned- people stink! Apparently other passengers don't believe in showers or deodorant. A can of Lysol may help.\nI'm giving 2 stars instead of 1 because the bus did arrive to destination on time both times I used the bus, and the second driver was very cool and funny.", "type": "review", "business_id": "MXFcSmW3m-9IXQEA_7l62g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XAOf1Qb3D-olwJi7mamQ7A", "review_id": "xp79w5Fj4buBacWo0efxtA", "stars": 4, "date": "2013-01-04", "text": "I just moved to AZ from Honolulu with my bf and found this to be a great breakfast / brunch place. They do close at 2:30pm.\n\nOn my last visit, I ordered the amazing \"2 for you\"! You get the choice of a half sandwich & either soup or salad for $7.95...WHAT A DEAL!! I ordered the Monterey Club & the No. 5 Chinese salad. What an amazingly refreshing lunch! I highly recommend this day cafe, this may not be the best review, but if you stop by the line may sway you:)", "type": "review", "business_id": "e5gB2kDFaodtxMTa53C29g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-bf0ZBsvUH1Pr2aeq6ibig", "review_id": "t0_JDELL2Pf42IcS6Umazg", "stars": 5, "date": "2010-08-06", "text": "I'm not gonna lie, I possibly had the best sunny side up eggs ever. \nA simple dish so rarely cooked perfectly.", "type": "review", "business_id": "On_3zLdujQdvDbBYUirNWw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "f4Fq9Z8HaYsh6EJsAaCA2g", "review_id": "RkBg2BWpVSqWzU5NzmTXCQ", "stars": 4, "date": "2009-08-29", "text": "Ok folks, I usually am not a scottsdale girl. I usually enjoy a dive bar at happy hour or my parents house (love you mom and dad!) But I have to say I had a blast here!! I was there to help with a Jon Ric Fashion Show and had the time of my life. \n\nOur server was so cute! she was always right there to make sure we had ice, our bottle, and mixers. Plus I don't remember seeing a dirty glass EVER at our table! I'm a server and that is not easy to do. So good job staff. \n\nThe dancers were great and the music was so varied! there really was something for everyone. I would go back again in a heart beat!", "type": "review", "business_id": "KwGQqUCpHHhOhVqyOL2QTA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9ryWdjTHVqqAoETSazV3sQ", "review_id": "F__7penyYhE5X2dkUU1p2g", "stars": 4, "date": "2012-05-13", "text": "The lanes and equipment are all new which is great, and half the alley have wonderful couch seating instead of the typical plastic chairs. The only problem is that it gets very crowded, despite having 44 lanes!! Also, their weekend rates are pretty pricey - I can't blame them since the market bears the price, but three games can cost almost $20 per person with shoes, which means a family of four will walk out spending almost $100 if you get some food and drinks. YIKES!", "type": "review", "business_id": "pS7XA-h0QnjButYIlU-cdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NtAIAKikXTya6n27L9UENQ", "review_id": "Fom1WhybEfX4BSOkhYyPzg", "stars": 4, "date": "2011-01-29", "text": "I've been to Padre's several times with local friends and have always enjoyed the food and atmosphere. This time my table mates included my brother and sister-in-law who were visiting from the east coast. And who do they always count on for recommending awesome places to eat while in town? Yup...me. The pressure was on. From the opening appetizers of guacamole, salsa, chips, and margaritas to our main dishes, the food was great. The staff was extremely friendly, including our waiter Chico who kept us laughing. I am normally a Salmon Spinach Enchiladas guy but decided to go out of my comfort zone with the West Coast Burrito. Strange combination but it really works well together. And what did my out-of-town guests think about Padre's? Loved it.", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "hnirQYfI4cjrzSMENyQTWw", "review_id": "bdbAJvKYKKiAfYHKNPwSnw", "stars": 3, "date": "2008-08-06", "text": "Clean, bright and quick.\nI came here with my husband, and we both had a combo-platter that included one masala dhosa, an idli, and some sambar. It was all tasty -- and waaayyy too much food.\nI guess it's a mixed bag because some of his friends (they all work nearby) come here multiple times a week for lunch, and others swear its awful. \nAs for me, I like the chutney bar - it's nice to be able to get as much as you want, and I recommend both the coconut chutney and the mint chutney -- or, blend them together, like my mother-in-law does with her homemade kind. Yummy.\nI think this place is quite tasty, but I won't come here often, just due to the fact that it's a major carb overload, and I wish the dhosas weren't quite so expensive (I think they're about $7.50 for one?).\nBut, that being said, it's great for a once-in-awhile-treat.", "type": "review", "business_id": "APgL23vh7f7H_wAGTl57xQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_j4PdUTEw7N3NXQM628ZKA", "review_id": "w83V6fmPoldmbUj8OtLztA", "stars": 5, "date": "2010-11-15", "text": "SawTh[sic] Sense Christmas show for the second time last weekend. Great show - laughed my ass off. Thinking about going back for closing weekend... :)", "type": "review", "business_id": "RlE_p_2XcfwoJPMT3NOG8w"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "DFQ95g3s1oi-VcDZEO2TOA", "review_id": "jLs8WzHayS9nDKhFsyzqSQ", "stars": 4, "date": "2011-05-31", "text": "I am with some of the others in not understanding these poor reviews. I am from Rhode Island and Italian food is at our fingertips, and in Arizona, there are few and far between authentic non chain Italian restaurants. I feel that although ambiance is important, I didn't see anything wrong with Lo Cascio's. There were no cheesy paper protectors over a linen table cloth, and there were no paper place mats with several business names, so not sure what the issue was there. And as far as the music....I would be annoyed too if I had to work there every night, but again, it only added to the atmosphere. In my opinion, some of the best Italian food does not come with yuppie atmosphere.\n For the appetizer we had the fried mozzarella which my husband and I enjoyed very much. The marinara poured over it was on the chunkier side and I loved it because it tasted just like a sauce an old Italian friend of mine made. It was perfect. I had eggplant parmesan for my entree, and it tasted just like NYC Italian. The eggplant didn't have the shit fried out of it, and it had the finest light coating just the way I love my favorite dish. And my husband had veal milanese which was out of this world. It was in a sauce of lemon and wine, mushrooms and artichokes.\n I also want to mention, we had the most Attentive waitress that I have ever had. Her name is Katie, and she was very sweet always asking us after each course if we needed anything and how everything tasted.\n We will definitely be back here, we live down the road now in our new home and I am very happy there is a great little Italian restaurant nearby. I am also happy I didn't let the negative reviews scare me.", "type": "review", "business_id": "cfRrO0P-L7o6UWL81pmxCA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "R0EN0S6PGUcOd56AjlbwjQ", "stars": 4, "date": "2012-01-13", "text": "Ok, yes I am writing a review for a fast food restaurant. I realize that seems a bit strange and quite possibly extremely unnecessary. I mean, fast food is fast food right? Everyone knows what their getting into and what kind of food to expect, right? While this is true I felt it was worth writing a little snippet for the always refreshing Chick-Fil-A.\n\nIt's nice to have a fast food experience where the food tastes fresh and actually like real chicken. The nuggets are yummy, flavorful but not overbreaded. My parents enjoyed their chicken sandwiches and agreed that the food is fresh tasting and not too heavy. We also enjoyed the sweet tea which is a classic Chick-fil-A staple.\n\nOne important thing to note was that this location was super busy when we walked in right at noon but soon after we ordered our food was ready in a flash. And for those of you who have never been to CFA before? The icing on the cake is the wonderful assortment of dipping sauces to suit whatever flavor mood you are in at the moment. Or you can do what I do and open one of each and dip to your hearts desire. Who doesn't love variety?!", "type": "review", "business_id": "cWBqZThx4RWNzPJbJ_oXOg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pY6_ew_kvtlcUftSVtkRyg", "review_id": "yEMgAmlIiaepQmMBpvmh5Q", "stars": 4, "date": "2011-05-19", "text": "I've been way to generous with my reviews and I've made up my mind not to give five stars unless everything was impeccable. \n\nI REALLY LOVED The Arrogant Butcher. \nI picked up a menu that was on a side table at my gym, of all places. \nI've looked at it for a week before finally giving in and going. I had a lot of carbs that night, but it was worth it!\n\nIt's good when a restaurant takes you to another place, and AB did that for me. For a while, I forgot I was in Arizona and thought I was back in Spain with friends. The build your own appetizer concept is cool. Just like a sushi menu, you mark off what cheeses, charcuterie meats, cold veggies, raw bar items you want and they bring them out with sides of breads, spreads, and sauces. ALL SUBLIME! You can taste the freshness of the ingredients and their attention to quality. Hard to get good cured meats here and I'm already trying to plan my next outing to AB to get my plate of salumi and proscuitto on! We ordered those meats, grilled asparagus, grilled mushrooms, giant white shrimp, oysters, heavenly pretzel bites with provolone fondue, marcona almonds, and a type of sheep's milk cheese very similar to manchego. My date and I were in heaven! \nNear the end we ended up making these little sandwiches by splitting the pretzel bite, spreading the fondue on one side, slice of cheese, cut up mushrooms and asparagus, and a pile of proscuitto or salumi...\n\n........ I couldn't stop smiling and we enjoyed ourselves so much because the food was so good! Great conversation while nibbling on this stuff... Awesome night! \n\nThe only disappointment were the entre\u00e9s... Maybe because we liked the appetizers so much we didn't feel the entre\u00e9s? I had the bolognese and my date at the sweet potato tortellis... They were both good, but nothing to write home about.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OUdHM_gKTfTQ-hHZHqczsA", "review_id": "LQXYeMf2IztWXQrQZGgfyA", "stars": 2, "date": "2011-01-10", "text": "It was Christmas Eve, and we were hungry so we followed some other cars turning into their parking lot. We were the only Chinese people in there besides the staff.\n\nOMG, it was like a time warp back to when Chinese were cooking for Americans. The decor was so eclectic, I can't even tell you what style it was. Not real Chinese or pretend Chinese, not upscale or tattered. You've got to see it for yourself (if you really want to know).\n\nI had to order a pupu platter which came with a flame and some sweet, sticky chicken wings, fried wontons, fried shrimps, beef on sticks, and shrimp toast (I think). All the Chinese restaurants I go to in NY don't have it in their menu. What can I say...fun and not too bad.\n\nThe fried duck was overcooked and dry. The other things thing sauteed string beans and shrimp with sizzling rice were alright. \n\nLet's just say it wasn't the best meal I ever had.", "type": "review", "business_id": "BicQSnGZnY_yuGEDkhVfnA"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "-F32Vl8Rk4dwsmk0f2wRIw", "review_id": "4lCt_bkdMwjfbaBottTdDA", "stars": 4, "date": "2008-02-05", "text": "Referring to Mickey's as a \"dive bar\" is like referring to Princeton as a \"secondary school\". Its a lazily, flaccid description for a bar with a fist-full of moxie. Their Bloody Marys alone feature a fucking brawny-assed, gigantic totem pole of man-meat. Well, not \"man meat\", but meat-fit-for-a-man. You get the point. \n\nLook, the main point is that no \"dive bar\" is gonna be serving yo ass peppers and salami in a $5 tomato Slurpee. \n\nPeople often mistake \"kitsch\" as \"obsolete\" and these these are the type of people who would use the word \"psych!\", and grease their side-hair back after swindling you into a fake low-five. \n\nAnd i would like to agree with their lowly opinions of Mickey's, but then, I wouldn't want to be wrong also.\n\nIf you've ever been to Welcome to the Johnson's in the Lower East Side, and moreover, enjoyed yourself there, then Mickey's is your Arizona equivalent. Think of it as, Welcome to the Merriweather's. Scottsdale name, New York kitsch. \n\nSo, their bar service is kinda tough, but once there, they have a kickass selection of brews both ironic and sincere. You want an Old Style followed by a Boddington's? Where else but Mickey's?\n\nTheir kitchen is open late, which, for the love of all that is holy, is impossible to find in this three-bedroom-two-bath-house of a town.\n\nEven better, their food is goooood. I mean, heart palpitating good when you consider how delish bar food REALLY CAN be at 2 am. No, it ain't Capital Grille, get over it, but their wings, fries, chix tenders, et all hit the f'ing spot when you've had too many Jamisons (or Jager/Patron shots for the resident middle schoolers).\n\nThey just recently seemed to have remodeled their patio, which looks really great, but lost most of its charm. Still, space to move and a decent spot to smoke outside beats a macrame couch, or whatever, every day of the week.\n\nAnyway. I like this place. They lose a star for making me pay $3 for a pretty tame DJ and for hosting Ohio State functions. Fuck em. Go Horns.", "type": "review", "business_id": "SjFl_V6BTGkmv4tbub-AVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ghoBw5923PH-03Rly2hRJg", "review_id": "11waJ38XpCMjGHNbJmgLfA", "stars": 4, "date": "2012-03-02", "text": "Very relaxed atmosphere and employees are super nice. We typically go here late at night just in time to get in an order of chicken skewers(which are super yummy) and then have few drinks. They have 2 pool tables and a shuffle board which always makes for a fun night.", "type": "review", "business_id": "AMwr-IwwaamJ2l3Z8yce6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ksvA6rxnSk5N3frrHSEzFQ", "review_id": "t6R5J-EayCNGd4KLIpQ3JQ", "stars": 5, "date": "2011-10-23", "text": "The greatest community that I've ever been a part of! Gilbert Crossfit isn't just a place where you can get in the best shape of your life... it is a community of friends that share the same outlook on life, support eachother in everything they do and truly care about one another. Getting in shape and doing things you never thought possible is just the added benefit of being part of this group. \n\nIf you are looking to get in shape, live a long healthy life, and have fun with a great group of people... come by Gilbert Crossfit.. You'll never go back to a Globo Gym again!", "type": "review", "business_id": "ZnudPMieBotGPf5fWKxUpg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lhbSR25Am5ZYnGA_vDafGQ", "review_id": "ARLjebDoDC3heC015nIHtg", "stars": 5, "date": "2010-12-07", "text": "Thank goodness for Sue at Mill Avenue Travel. We contacted Sue to book our honeymoon trip to St. Lucia at one of the Sandals resort. She was great with setting everything up, booking airfare etc. When our original airfare decided to cancel the flight, she made sure we had a comparable one booked. The best thing she did for us was encourage us to purchase travel insurance. \n\nWhen we arrived at our Miami hotel at 10:30pm the night prior to leaving for St. Lucia, we had discovered Sue had left us an urgent note to contact her. We found out a hurricane had hit St. Lucia and all of a sudden our honeymoon plans starting crumbling apart. Because of Sue and our travel insurance (thank goodness we listened to the expert on this one!), we were able to change our honeymoon to a Sandals resort in the Bahamas and didn't miss a beat. Sue was in constant contact with us, which calmed the craziness I was feeling (and I'm sure my new husband was relieved). The airlines even took care of our baggage fees on the way to the Bahamas.\n \nIf we had booked this trip on our own, we would have been up a creek without a paddle. I most definitely would not have purchased travel insurance and our honeymoon would not have turned out to be the amazing trip it was. \n\nWe will definitely be using Sue again.", "type": "review", "business_id": "9T7eOkHOjWfE21KxgPxo3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EQZjeyvQRe0xnEYcV_eK0A", "review_id": "NlO9QA3A33j_bCClisUYuA", "stars": 3, "date": "2011-11-16", "text": "I've been going here for the past 9+ years and it's pretty much the basic local circle-K. Not much to say past that. I do dig the walk-in beer cooler but also wonder who in the hell buys the bags of bananas?", "type": "review", "business_id": "yLo-xfoB8b4T_RjjIV4P0g"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "TTP7l5g4QUVCpQZ9NTAWqw", "review_id": "-zqqrHR6GBWbtkxG_RZ_Ag", "stars": 5, "date": "2012-01-25", "text": "All I needed to complete my delicious meal here was a good Cuban cigar and some brandy!\n\nWe had the Papa Rellena for an appetizer... very very good. Its a beef filled potato cake with a cilantro lime sauce.\n\nFor entrees my wife and I shared two dishes... the Ropa Viejas (shredded beef brisket in a tomato wine sauce) and the Gallina Frita (crispy fried shredded chicken, onions, in a mojo garlic lime sauce....amazing!\n\nBoth dishes were large...with tons of meat.\n\nGreat service and really good mojitos make for a nice evening out at the Havana Cafe.\n\nFor dessert we indulged on the \"Best Of Phoenix\" (Phoenix New Times) Caramel Flan.... OMG!!!! And the coffee was yummy too! \n\nWe also found a 15% coupon in DineInAz.com.... saved us almost $7!\n\nAs the sign over the door says... \"Cha Cha Cha!\"", "type": "review", "business_id": "8v1MWkAeU3nEuqGd27jZeQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "w4dgIzMwwZvKsHaC47Ox3A", "review_id": "OGt3pt8vn79rz7Q9NqTVaA", "stars": 1, "date": "2009-09-28", "text": "There were 3 cars in the parking lot and people walking to the door but the young lady closed the doors at 9:51pm\n\nThe young lady spoke through the glass for atleast 4 minutes explaining she would not open the doors\n\nI live behind this location but I may not return. There is a Walgreens off of 7th Street...", "type": "review", "business_id": "KEwv4l2RgiHjkjyYV0TuAg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "chBwUUum9UHC9C2AVBOZfw", "review_id": "tY-aFKrdW6A7vmD6v4Rcmw", "stars": 1, "date": "2011-12-04", "text": "I am writing this review only for the optical department. I accidentally poked my eye with a branch yesterday and knew I had damaged it so I went to the Gilbert Costco optician and asked if I could be seeing on an emergency basis. The receptionist asked me if I could come back in 5 hours to which I stated it was an emergency and could asked the Dr if she could see me. She asked her and she said no she did not have time.\nI find it very unbelievable that on an emergency basis they can turn someone away who has a Costco optics patient for years. I recognize that she had a patient at the time but I said I could wait until after so she could at least take 5 minutes to tell me if I should go to a hospital or not. Dont ever waste your time going here if you need immediate attention for an emergency because they will not make room for you.", "type": "review", "business_id": "uVMKdpleBePeFKjixU6AMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MYLBku4sRCoZmi4Z7yESGw", "review_id": "c4wiS00iZNXpt2rvrKAXIg", "stars": 4, "date": "2011-07-09", "text": "Happened upon Four Peaks when we drove up to the restaurant we wanted to go to and there wasn't a car in the parking lot! My hubs and I thought it was just the temps in Scottsdale, and everyone headed out of town for the weekend. However, when we walked into Four Peaks, it blew our assumption out of the water. The place was packed and the only seat left was in the bar, which was OK since we were only there for appetizers and beer. \n\nWe ended up ordering 1 entree as an appetizer, the fish and chips. The were quite good! Nicely cooked, not overly greasy and very crunchy. Hubs got a dark and I got a light. We were very pleased with the beer and will be looking for a 6-pack in the stores.\n\nI'm looking forward to heading back to Scottsdale to hang out here a bit longer and try some of their great looking menu!", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 4, "useful": 3, "cool": 2}, "user_id": "Nh1-RLlCU5i0MCH7so6_-g", "review_id": "oAH1svCcQNDk3-n8LYEgOA", "stars": 1, "date": "2011-09-09", "text": "Oh boy.. I usually LOVE LOVE Mucho Gusto.. but NO ME GUSTA today!\n\nWe got a to go order, perhaps that was mistake numero uno. I got the nachos.. really, you can't mess those up... Or so I thouhgt! I mean Filiberto's would have been a better choice! Can you say cold soggy mess.. maybe that was my fault. I will accept the blame. I really should have known better. \n\nMistake numero dos... What do you call Shrimp Cocktail with out the shrimp?? Bad Service! Lack of quality control....Really.. Really? You forgot the shimp? How do you do that.... Better question WHO DOES THAT?\n\nMistake numero tres...lemme just say burned tasting chips (as opposed to my soggy nacho chips) and left an acrid taste in ones mouth and the most offending guacamole that I have ever had. \n\nLet me just say that my co worker and I eat here frequently enough that we can order for each other. We also know to order our guacamole with out the Grand Marnier galze thingy on top. \n\nMucho Gusto you mucho FAILED me today. I hate leaving a bad review without first compaining to management so expect a phone call from me shortly.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "ofhF4RuqsymES6pQfO2KWw", "stars": 4, "date": "2012-07-09", "text": "I seriously love this store. I wish I didn't live so close because I always find myself here without even realizing it. \n\nI can always find something here that is awesome. I pretty much never leave empty-handed. They have some really great deals and prices on clothes, shoes, accesories and purses.\n\nTheir high end stuff is still kind of ridiculous though. But that could just be my broke-ass opinion.", "type": "review", "business_id": "WowrRUKvjiLX4zT12xU_yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gUXfVNgnNF9WU73T-d-FKQ", "review_id": "1YC9jbCChkzH32gLEf_GeQ", "stars": 4, "date": "2009-10-03", "text": "Bless these folks for letting us sit in a pleasant, non-crowded setting, with whole tables and use free wi-fi. With their wonderful and affordable 1/2 sandwich/soup deal and an iced tea I can sit and do homework for a few hours. (Their roast beef and gargonzola sandwich with roasted red peppers is a nice variation...) They have good lighting, decent music and lots of outlets to plug my laptop into. This is a much more tolerable way to study than that little crowded coffee place....", "type": "review", "business_id": "ojjtPlnSmCX1zCzWL7JoNQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "c_oAY5TDj8sLfUPvotwHjg", "review_id": "DuVL5_hGPLzdL2OLY9s5lA", "stars": 5, "date": "2010-05-03", "text": "Big fan of this store - the owner tries very hard to create an inviting atmosphere for all levels of gamers. Further, the store provides for a host of niches, including euro-games, Ameritrash, role playing, and miniature wargaming. Good amount of supplies (both GW and P3, among others). Lots of tables for miniature gaming, board games, CCGs, and painting in the back (and a fridge with soda). They've started carrying MTG over the last few months, and that collection has grown. Always something going on here, but nothing intimidating. \n\nThe owner is very, very helpful: willing to answer questions about painting, games, and to make special orders (even trips over to Gilbert at Battlefoam when necessary). Yep, big fan.", "type": "review", "business_id": "HVacSNXpcjce6TNTNUieAQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "KaRrYn82Hm5K7-3XueNVyg", "stars": 4, "date": "2010-04-14", "text": "How excited can you get about a car wash joint? Well, not very! Yet, this place does a good job for $8.99. They're pretty thorough, includes vacuuming, and it looked like they sprayed some waxey stuff on my Wifey's black, Honda CRV... Looks great! They have a lovely inventory of greeting cards as well.", "type": "review", "business_id": "tI600wWPFDc4bxEvrbBpRQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "wb5kfvDoyPBOjhIn5Z-KPg", "stars": 4, "date": "2010-05-23", "text": "A couple of us came here Friday and had a good time. I liked the off-the beaten path location and the fact that there was no cover. They have 2-4-1 drinks 8-10pm, too. I thought the music was good and drinks weren't too expensive. The thing that almost ruined my time was constantly being bumped by people. It is hard to get into the groove when you are being shoved and pushed by people who think they have an entire dance floor to themselves. But isn't that every place, though?", "type": "review", "business_id": "mHZXq1c6j1b5bKXTxKJ-pA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nMwgC0DuMsBR0V5v4-J8wg", "review_id": "YQ9zXZITDrvIG-ssEgO3tg", "stars": 4, "date": "2009-10-23", "text": "I really like Pick Up Stix and it's certainly superior to that steam table garbage they try to pass off as Chinese food at Panda Express. Of course, it helps that the food is made to order. I also like the variety of their menu which includes salads, noodle dishes, lunch combinations and regular dinner entrees. Having brown rice as an option is always a good thing.\n\nI had the Thai Spicey Chicken Dragon Meal ($4.99) which is an individual portion (although I ate it in three portions, it was huge), brown rice and a side salad. Delicious and not extremely spicey. If you visit their website, you can download coupons and order online. Service was fast and friendly, and I will definitely be back.", "type": "review", "business_id": "T_d9GB_p0ajNTVEZ2CMmrw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pWdtEqtIb9YD_rdogPG-DQ", "review_id": "m1mK4i-HJ85_QVYSHMMMRg", "stars": 4, "date": "2010-08-11", "text": "First time in this restaurant. It is next to Golds Gym on the n/e of Northsite and Raintree Dr. \n\n It is similar to Chipotle but the pinto beans are better tasting, the chicken is all white meat. The employees are very friendly and will take the time to chat with you. They learn what you like if you are a regular and will just confirm that there aren't any changes. \nBurritos, tacos and salads are the main items to choose from. \nThis is a very good spot to eat and enjoy the food. The soft drinks are not watered down like most other places are now a days.\nEnjoy, I will. Oh, they have a card that you buy 10 and the next purchase is free.", "type": "review", "business_id": "-kVXDEqGHOWKxQ3EhvFgVA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "bgJQEgvtce1eQKBeFCQz2Q", "stars": 5, "date": "2012-08-26", "text": "Kids love Disney, and so do I. One of my favorite things at this location (as opposed to the AZ Mills location) is the magic princess mirror. Grab any of the princess items (shoes, tiara, wand, etc) off the rack, and wave the package with the UPC symbol facing the jewels and mirror, and after a few seconds, that particular princess will appear in the mirror with a little story for the kids.", "type": "review", "business_id": "sqmdFdEXk8DoCnjRvEh90Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oCjrFKcvqVACBkVh3LTqwQ", "review_id": "GZex4c82GoPbwOHBBfnukw", "stars": 5, "date": "2009-11-05", "text": "This is one of the top three Dog Parks in the Valley. Plenty of room, well lit in the evenings, plenty of water. I've seen the attendance shift slightly in the last year with less hipsters and more kooks coming in. Not a problem though because there are always multiple groups to mingle with.\nFor photos and a complete review of this park go to www.dogparkriot.com.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "4gIi4L7e870qFbnRemaoBA", "review_id": "eoyoEHqQhCHK2gh48YcO0g", "stars": 5, "date": "2012-01-02", "text": "Ok, I'll say this up front, I don't like chains. There are just far too many awesome restaurants in Phoenix/Scottsdale to go to a chain.\n\nThat being said, this place is amazing and the quality and consistency here is unreal. Yes, it \"seems\" expensive but once you've eaten here you'll realize that you are absolutely getting your moneys worth.\n\nSo much awesome unlimited red meat.\n\nDon't let them trick you with the salad bar! It's killer but don't fill up! And don't be ashamed to leave your flipper thing on GREEN, the sign of meat greed. hahahahaha.\n\nLastly, try the Tres Leches and the Key Lime Pie, out of this world.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v8prSSKtN8-avfAUO0ZYkQ", "review_id": "dfkdxvzlsehbwUVD8g7TgQ", "stars": 4, "date": "2011-07-12", "text": "Great discovery for me! I popped in for lunch and was pleasantly surprised. I had the best veggie tacos ever! They were extremely flavorful and filling. I don't know the secret to the accompanying rice and beans but they were also on point...just delicious!\n\nThe only drawback is the size of the place. Since I dined alone, I sat at the bar. It wasn't the most comfortable seating but I'd do it again in a heartbeat for those spicy veggie tacos. I will definitely return to Fuego Tacos.", "type": "review", "business_id": "KBKDl08flVw1AqvM5ucVpA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mt1BrQzfs6-bjNIzHZtqnw", "review_id": "0Zyiz98ko_FY4PVH1LpY1g", "stars": 5, "date": "2012-01-10", "text": "I love this place. It was so beautiful over the holidays with all the lights and garlands. I think the people who run this have a lot of pride in their business. The room was clean and the beds so comfortable. The decor is rustic but elegant at the same time. I liked how close we got to park to our room...super convenient. Lots of coupons given to us at checkin too. Great experience!", "type": "review", "business_id": "AZq_SBJsqsleJkQCksYsjg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "BV8c4QZEzvPWA00ZqJp-jQ", "review_id": "htDMacjuBBZUUtdxpdYmlQ", "stars": 3, "date": "2010-12-02", "text": "The service was great! We had a large group & had called prior to make a reservation. Our table was ready when we arrived & they had assigned 2 servers. They were both incredibly pleasant & attentive. Our food came out really quickly & no one had any complaints. I wouldn't say this was authentic Mexican food, but it doesn't have to be. A good time was had by all :)", "type": "review", "business_id": "roTWGaU-RcJ06l8cjFw7xQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-J06hZ3w7N2oV5QwaAjtwg", "review_id": "OgNr2AoQm8VdIEYW8F785Q", "stars": 3, "date": "2011-07-15", "text": "Very nice and helpful staff. One guys always asks me too many questions but I figured he was just trying to be nice. They're on top of trying to sell you a new phone and service. But when you shoot them down they get off your ass about it.", "type": "review", "business_id": "RXEsxL_fituMtbNACe5a3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TPj2H2OD4mEyxIjRTbFagw", "review_id": "DZq1trmm9Nq9f-sPlQ1Lsw", "stars": 3, "date": "2010-04-14", "text": "Discount Tire is our go to place for tires. Of course living way out here in Surprise, there aren't many other options. (if any) \n\nWe recently got new wheels/ tires for our truck as well as the boat trailer. Quick, efficient, professional service is what we've come to expect at Discount. \n\nThe only complaint is the lack of follow up. More often than not my husband has to call them to check the status of orders he has placed. They say they will call him when this or that comes in...yet he is always the one placing the calls. I'd like to see them actually follow up with their clients as promised when orders come in. That would make this already pretty great business even better!", "type": "review", "business_id": "zrO-RPR3fSdA7sI-IRGWIQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "n3RQW6tL5iwhgv_Nz12T5g", "stars": 4, "date": "2009-09-27", "text": "I'm giving this one a 4 because I first ate at (and found out about) Lucilles at the Vegas location. Over there it was spectacular - here its just amazing. They give you so much food its unreal. You can try anything BBQ you want or ever dreamed of. You get these amazing biscuits with this butter stuff that is just like candy before the meal, and almost get full just with these.\n\nSO MUCH FOOD, go hungry and get ready to be amazed. Some of the better BBQ in the area. I look forward anytime I have the opportunity to visit a Lucilles. Just can't wait till I go visit the Vegas one again!", "type": "review", "business_id": "ke3RFq3mHEAoJE_kkRNhiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tQ6NDaItyiNR1JSnYLyzZg", "review_id": "LDYR5dv0xdYzjvMnjuRysg", "stars": 3, "date": "2011-11-07", "text": "went back to the cork and experienced the fall menu. i am afraid that my second experience was not sa good as my first. the service was great,the resturant beautiful,but the food did not make me say yum yum with each bite like my first visit. 3 of us had the rabitt risoto and none of us really liked it. the scollops were great the fig salad was ok but the duck was so over done it was like power and way too salty. the creme brule came it was about 3/4 a cup portion $6.00 that was rediculuslly too small of a desert for $6.00 get real CORK i am afraid this will be my last visit. there are too many choices . Like Roy's Hawian Fusion Cusiene , Roy's is more cosistent and flavorable and mor reasanablly priced sorry CORK", "type": "review", "business_id": "iV7D7fHKb-bF9fCL_bEMtA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "49lK33nuV1dVj3l2Jto8Bg", "review_id": "QDNDXDz4yoOFblq1ffW1ig", "stars": 5, "date": "2008-03-18", "text": "love love love it! What a quaint little piece of heaven. Located south phoenix...I wasn't sure what this place would look like as we kept driving south but as we walked onto the property it felt as if you were no longer in the big overcrowded city. We went to the morning glory cafe for breakfast. The food was wonderful and the presentation was great! I highly recommend it. It would make a wonderful place for a baby or wedding shower!!", "type": "review", "business_id": "MLcXtnpzygZvQ9BtseLLlw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "utAvq1-tCgfM4alrdPmtzQ", "review_id": "QlYfacd_phP3JbaPpRWbMA", "stars": 5, "date": "2012-06-07", "text": "Wow! Food was great! But the service was even better!!! We got there early so we didn't have to wait a long time. \n\nTheir computer system was down, so instead of asking for cash or taking our card numbers, they comped out lunch. So impressed with this place! And such a cool vibe!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "sEldANfgLR4_SAwchsTENw", "stars": 3, "date": "2008-09-20", "text": "Probably more worthy of 3.5 stars. Damn the Yelp constraints! Marketplace was pretty busy tonight now that you can actually go out in the evening without a gentle breeze feeling more like a blow torch in your face. In spite of that, our wait to be seated was fairly quick. But where was our server? Outside listening to the band? We need liquid refreshment!\n\nFinally our server arrived and apologized for the wait at the same time the manager arrived and also apologized and comped us an appetizer. Wow! We hadn't even complained. We had the hummus which was very tasty but a little thin and a mango tandoori chicken pizza. Nice combination of sweet mango, spicy curry sauce, and the grilled chicken. Service was excellent once we got over the initial bump.\n\nWhile I usually don't plan to go to CPK, it's nice to know this one is there.", "type": "review", "business_id": "jsblnIZnHUQGufwVb_yX6g"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "x3snNDhyewv4q9fM6NxgAA", "review_id": "zbF-STEOJhOoSoTegNr_0w", "stars": 5, "date": "2011-07-15", "text": "Whenever I'm looking for a quick healthy lunch, and am tired of salads from the grocery store, I swing by Zoe's Kitchen on Camelback. For a long time I used to get the spinach and chicken quesadillas, however last time I went in, I realized they didn't have them on the menu anymore. The manager that was on duty was super friendly and helpful, and explained it was now basically the spinach roll-ups (add chicken). I must say, they are even more delicious!\n\nIs it your cheapest lunch option? Probably not. I'm a frugal person by nature, but it definitely beats eating Fast Food. So it's worth the extra buck or two to know you're not loading yourself up with tons of grease and carbs. I've introduced a lot of my coworkers to Zoe's and they all love it too. Now if only they can open up in Gilbert or Chandler near where I live!", "type": "review", "business_id": "tpIU_ZvIfCfCp36IgghlHQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lNYmqV_CMapcbucxD19_tw", "review_id": "XtXChVzvnFQKsErjddW98g", "stars": 5, "date": "2010-10-11", "text": "Ok, so I know that this private shooting club has had it's share of problems with membership and maintenance issues but I have to say, in the last 6 months, under the direction of a semi-new board of directors, the range facilities have been greatly improved. \nThe members can enjoy shooting pistols or rifles pretty much all day every day uninterupted except when a scheduled match is on the club calendar located at www.phoenixrodandgun. This new fully updated calendar is really cutting down on the number of scheduling conflicts between match directors and members. Also, since aquiring new Range Staff, the number of complaints about other members or range employees has gone way down. I do have to say, the range which is located right in central phoenix is affordable, practical and overall a great shooting experience.", "type": "review", "business_id": "VtIU_HGrFSNHdUJ20V-73w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kNO6w6EIKo8u6GSykOHBLA", "review_id": "aWjnWW15jnulOclRzfrk3w", "stars": 3, "date": "2012-03-13", "text": "Gracie's is a small thrift store with decent items. The prices are a little less than you would pay at Goodwill. You can get a pair of jeans for about $5. If you need a belt, this would be a good place to go, only $2. I didn't find anything to buy for myself, but we found a new pair of shorts for my son. Only $2.50. Just an FYI, it costs $0.75 to use your debit card.", "type": "review", "business_id": "twI1-9PZH1y8csXQ5VsrMw"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "OYpsdMcpdCdlkknpgpFMLA", "review_id": "vZuZEGAKLDCCD_Wn7krPVQ", "stars": 4, "date": "2009-04-10", "text": "Update: they added a gorgeous new countertop (sans coffee wobbling mosiacs) and (ta-da!) a glass enclosed bakery display case! My friend Jefferson can now order his pastries with confidence.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w_oZKFqqNa6BCJ0U-QicwQ", "review_id": "ZCr1L3-T7VReMyf106piXA", "stars": 2, "date": "2011-04-05", "text": "We had a group reservation for The Old Town Tortilla Factory, that was great. The problem was that was about all that was great about the place. The credit card machine in the bar was down for the time we were waiting for our table, chips and salsa was $7 and the food was not really good at all. I had asked our waitress about two items and she suggested the restaurants signature dish Pollo Margarita, stuffed chicken breast with chiptole mashed potato cake and seasonal vegetables. The chicken was extremely dry the stuffing was bland and the mashed potato cake was the same bland and dry. The only thing good to eat was the freshly made tortillas.", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "826ux2MFl0fMGvT4DU5psg", "review_id": "dOm36DMhWpEMsii5EuWNlA", "stars": 5, "date": "2012-12-27", "text": "Really great food and service, and it worked out just fine for my two kids, ages 7 and 10. (Meatball pizza was a hit for the younger one; the older one shared sausage pizza and mussels.) The food came very quickly. We had all small plates and pizza, not entrees: kale chips, fried chickpeas, peppers, mozzarella salad. Dessert was great. The mousse was first rate, and the parsnip creme brul\u00e9e was delicious (though we couldn't taste any parsnip; it just tasted like excellent, flavorful creme brul\u00e9e). One of the best meals we had in Arizona. And we also really liked the decor. Simple, elegant, and also fun/creative. Not sure why anyone would ding them for that. Also, the portion sizes were just fine. We all left full but not feeling gross. We're from MA, and were unaware of the chef's celebrity. I wonder if some of the griping here is just celebrity bashing, or a reaction against some sort of hype? I'm outside that loop, but it just struck us as an excellent and fun place with great food and no pretension. Just thorough competence. Note: It's a nice walk from the Arizona Biltmore Hotel. Under 2 miles.", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Vk-hJ1i5ZagPM87Kv9FOnA", "review_id": "b4qLt_84asDy2n5ZaAxPQw", "stars": 4, "date": "2012-04-20", "text": "Good little place in old town across from Cowboy Ciao. Had the turkey apple swiss wrap w/ dried cranberries,local greens, smoked bacon, and cashews. Very good and great size. The lady had the grilled chicken & sage pesto sandwich w/ goat cheese, gala apple, and smoked bacon. She liked it as well. The sweet potato chips were very good too. will be back for sure.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "DDad5K6GNA0sXB7N1OB6wg", "review_id": "-zu4_xevfEWx8bm2V6vAXw", "stars": 4, "date": "2011-12-08", "text": "This place is great. The food is Northern Chinese similar to Chinese Muslim food. They have a great variety for reasonable prices. Also, everything is freshly prepared and you can even see them make the dumplings and pork pie behind a glass window.\nWe got the stir fry spinach (bok choy) with garlic, sesame bread, pork and napa cabbage dumplings, pork pie and green onion pancakes. I know its a lot of food but we wanted to try a good variety and it cost about $27. Not to shabby! the spinach and garlic was really fresh and flavorful. The bread was decent, almost like a dense curried bread. The pork dumplings were similar to soup dumplings, one of my most favorite dumplings ever. The pork pie was almost like a pork patty covered in dumpling dough and pan-fried. It was crunchy, moist, juicy and delicious all at the same time. We were getting full so we ended up only eating half of the green onion pancakes which were well prepared. We will definitely be making another trip back here soon.\n\nSide note: They sell bags of frozen/take-home dumplings. About $10 for a bag of 40.", "type": "review", "business_id": "jgWAgT7LWPTf5wju9Q-kiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5j0hoUVgYJTyNshMXgJ4rg", "review_id": "roiC8or1Cq0SO9yKlp8dtw", "stars": 2, "date": "2013-01-03", "text": "Way overpriced. Wide selection. Good to browse, not to buy. Check out your local mexican market.", "type": "review", "business_id": "ipMMVBGEWABP4PIfudvRVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "kk05snSafuIFK0lsxoMNzA", "review_id": "fQU4ymuNVNhKN-z1NwZbVg", "stars": 5, "date": "2012-03-24", "text": "Polite friendly staff. Great, always clean place. The gym is great and never too crowded.", "type": "review", "business_id": "uzQ3iC4snU6wXb2PF6kS7Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "-Tcr5mX1cz9JWubf_012dw", "stars": 5, "date": "2009-08-12", "text": "I LOVE this place.. This is my sushi bar. Danny, one of the two sushi chef's is awesome. I have always found their sushi to be very fresh.\n\nAbout a year ago they came out with a special sushi menu. With rolls like these: Dirty Harry, Mr. Miagi, Rio, you cannot go wrong. Especially if you like spicy (like me)!\n\nEven the non-sushi is great. This is one place my 6 year old loves that doesn't have a drive through window.\n\nAlso, $4.50 sake bombs!!! $4.50!\n\nGo here. Try it. Don't be scared off by a couple of so-so (ok, 1 bad) reviews. I am looking to even have a UYE here in the near future! Should be getting a call tomorrow to get it scheduled.\n\nAlmost forgot! They have some big screen TV's! Watch sports here! They are hugely popular for UFC fights and football.. \n\nJust go. Now.. Seriously. Review part is over.. You are wasting time reading the fodder I have written here. You could be finding your keys.. Putting on socks and shoes.. Hell, skip the socks.. Wear sandals. Save time.", "type": "review", "business_id": "IwhkOh4fPsiU7TThIsz6Og"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TZ_k-BbXS6sEMiWQXlPnMA", "review_id": "2SjC7pmsh4BXED9rW4c6KA", "stars": 4, "date": "2011-08-19", "text": "This place is a nice little change-up from the usual mall/Target/splash pad destinations that summer requires. We have an 18 month old son that loves the noodle forest and the tricycle area. The place has so much going on it is easy to focus on different things even if we go once per week. The price is high if you don't get a membership, it pays for itself just in summer visits and then the rest of the time is icing on top. I admit to enjoying climbing around in the big maze in the center of the museum, that made me feel like a kid again.", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "93rkBOyASqzxtJ1FIAavIA", "review_id": "Rb0nsrH8NlyIXLYFqibvdQ", "stars": 4, "date": "2010-01-19", "text": "I was in town early for a sales meeting at the Crowne Plaza Resort, just up the street. I walked over to Latitude Eight for dinner. \n\nIt was a pleasant surprise! It's a quaint little place, quiet, clean, probably a great place for a date or a quiet conversation. The owner and his wife run the place, it seems, with some competent and friendly help.\n\nThe decor is modern, subdued, and futuristic. It's comfortable.\n\nI sampled an excellent microbrew while savoring a salad with a nice asian dressing, bean sprouts, lettuce, carrot, cucumber, and some other goodies. \n\nThen came the Panang Curry Chicken with white rice. Whoa! Just the right amount of complex flavor and heat. It was so good, I ate every bite, and had no room left for dessert!\n\nThis was among the top two or three best Thai meals I've eaten over the years, and I've probably had 50 or so. I wish I had been able to go back again during this trip. I suggested it to several people at our meeting, and heard several other good comments from people who wandered over to it.", "type": "review", "business_id": "mPGgxatANSPw9KbMluhXkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NPoOEAPspruMOik-9sKQtQ", "review_id": "USt-wMQR-rKCpHNr7HOPZw", "stars": 5, "date": "2011-05-30", "text": "My friend has raved about this place for months, so for her birthday the girls and I got together for a little pizza field trip to LGO. It was amazing! Just as good as Mozza Pizzeria in LA., but around 400 miles closer. I also love the little grocery store. Very cute things to buy.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 7, "useful": 11, "cool": 7}, "user_id": "n_lAaNGeWgspbbCJc0DqRg", "review_id": "whk41u1vbJ7IK3M3RPMCgg", "stars": 4, "date": "2010-04-01", "text": "The newly branded Red Dragon Chinese & Mexican Food is a shiny new facade on an old favorite. (pics of new sign, and old sign by dumpster)\nFormerly known as Daily Buffet, http://www.yelp.com/biz/daily-buffet-phoenix#hrid:3-lmRTZ9YDgPxf6I2WGfHA they offer an extensive menu. Whatever investment they're making in this new branding, their menu certainly looks impressive.(pic)\n\nTheir buffet is quite well-stocked for it's small size.\nWhether you prefer Chinese or Spanish fried rice, they have it. Have a few picky kids that can't decide between Honey Sesame chicken and Cheese Enchiladas? They've got you covered.\n\nThe Mexican buffet table offers rice, beans, enchiladas, taquitos, and other rotating entrees such as marinated pork ribs or a scrumptious chicken mole, if you're lucky that day.\nThe Chinese area includes lots of chicken and pork options, noodles, egg foo young, etc -- standard americhino fare. The pork ribs were very good, if a little chewy, and the sweet & sour pork was done in the style I prefer: Instead of breaded, dry peices that you put your own sauce on, or soupy watery liquid with floating veggies and meat, this had mostly meat, maybe a few carrot and onion peices, with a crispy outside covered in thick, gooey, sticky sauce, that itself got a little crispy. (it almost starts to remind me of a candy apple when it gets like this, which I'm sure the taste buds love, but the teeth hate!)\n\nAll is prepared well, hot, not too salty or greasy, and well replenished.\nDiscard Pile is usually present, but also usually small.\nThere were some hand-breaded onion rings that were super thick! This thing was the size of a small donut in my hand! (pic) They have a perfectly crisped outside, with an inside akin to a hushpuppy or donut.\n\nMmmm, \"donionuts\"....\n\nThe salad bar area left a little to be desired, and there wasn't really a salsa to dip my taquitos in. I made a nice little concoction of ketchup, pico de gallo, and sriracha sauce which suited the task way better than I could have ever thought.\nJello squares are the only real dessert option, but if you haven't stuffed yourself full of this yummy indulgent food by that point, you really don't belong in a boofay now, do you?", "type": "review", "business_id": "atbvu3MxnDgpQfZgvPZz2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GZZs7288ZoIz2hx_vcAVUw", "review_id": "sOAIfa0bwmytl5oMIhDJJQ", "stars": 5, "date": "2010-08-11", "text": "Sunflower market is WAY cheaper than Whole Foods and has a lot more than Sprouts. It's my first choice of healthy grocery stores!\n\nThey have the freshest produce around without it being full of bugs like Trader Joes. Their selection is very wide and their employees are really nice. Seriously I can't stand the employees at Whole Foods or Sprouts. They're such pretentious jerks sometimes. \n\nWhether I need lamb or bison meat, coconut milk ice cream, or almonds...this is always my first choice. They're also the only place in town that has every kind of vegan sliced cheese. Whole and Sprouts have some of them but which flavors are sporadic and random. I will never stray from Sunflower again!", "type": "review", "business_id": "5nahZe5bBYUbFWgEfwoNOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "Xx28amCRQ0BJjwJoYtegpg", "stars": 4, "date": "2011-12-12", "text": "Fun atmosphere and very good service. We liked all of the sports memorabilia. Our server was very attentive, friendly, and patient. The busboys were also very attentive and friendly. We especially were glad to have been given good service even though we did not order any beverages (you'd be surprised at how many servers are rude to us after they discover that we won't be ordering alcohol).\n\nFood was good! We enjoyed: the bread, sweet and sour cabbage soup, caesar salad, baby back ribs, salmon, mashed potatoes, and creme brulee. The chopped liver at the beginning of the meal was also a nice bonus!\n\nOnly cons would be that the french fries were mundane. Also, we were a little confused about what was a part of the meal (sides, soups, etc), what was an upcharge, what we couldn't add, etc. It wasn't outlined on the menu, and our server had to explain a couple of times.\n\nThe manager came by after to ask how everything was. Very nice!", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "kMiQnYFmAYbjHyyIPGSwoA", "review_id": "G2te72TqN0W0jcG-A0Q_bg", "stars": 2, "date": "2009-10-04", "text": "I had dinner at the Thai Rama two days ago. It wasn't an awful dining experience, but I'm not sure I would go here again. \n\nMy friend and I ordered the egg rolls (sorry, I don't remember the Thai name), and they were okay. Two pieces, small (but the price was $2, so what did I expect?), and an average filling - something I would expect from frozen egg rolls.\n\nWe're both vegetarians and were happy to see a vegetarian section in the menu, but were slightly disappointed with the options. Three of the items included oyster sauce, and the other three were either vegetarian fried rice or red/green curry vegetables. I ordered the green curry vegetables (medium hot), and my friend ordered the red curry vegetables (mild - and she stressed MILD). We waited 20 minutes for our dinner to arrive. I didn't mind my dish - it was waaaaay spicier than medium, but I don't mind a little heat. The sauce was very runny, and the vegetables were soggy and looked they had been sitting in the sauce for quite a while. My friend didn't like her dish at all, mostly because it was quite spicy for being a mild dish. We spent $25 total, and I'm not sure it was worth it.\n\nThe service was slow, but the waitresses were very friendly. Overall, I would probably not recommend this restaurant to a friend.", "type": "review", "business_id": "PXmR1MgOAWB066XH20HjxQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "PiIdsdEd8JrRaMv5aDzSZA", "review_id": "0wekFc0vMC9EfbRucSmnSA", "stars": 5, "date": "2009-09-20", "text": "Just when I'm about to give up on my search for good Thai around Glendale, I stumble upon a true diamond in the rough. Don't be fooled by the shabby looks of the outside plaza; the inside is contrarily well orchestrated with subtle Thai ornaments and design. A huge desk in the lobby and bigger one inside the dining hall gives this establishment an odd but distinct hotel feel. Much like that feeling, the service is intriguingly exceptional from the time you walk into the front door. \n\nThe food that I've tried here so far is... may I say it... divine. I started off with the squid salad with mint and lemongrass and it was packed with fish sauce and shrimp paste. Score. I also tried some papaya salad and once again, it was mounded in fish sauce and chili. Splendid. Then I had the minced beef phad kaprow (which is not on the menu) and lo and behold, I was tasting Phuket in a Bangkok sort of way. To be honest... the sauces from each of these entrees mingle quite well. You can drizzle some of each dripping over rice and literally have an orgy in your mouth of Mormonic proportions. You can also bolster it with some more heat with their chili fish sauce, again drizzled all over your concoction. Let your adventurous mind roam free and order something outside the pad thai genre. It will pay off handsomely.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Ad1yYRdQdhws5jOammVVMQ", "review_id": "RVhNvjyIwboTTJyI3tcnxw", "stars": 5, "date": "2012-07-02", "text": "This charming little place not only has the BEST custom spray tan around - they can also whiten your teeth and have a rotating selection of adorable summer dresses on the cheap! If you are sick of being orange or baking under the harmful uv rays check this place out! First time clients get a discount! I will never go anywhere else!", "type": "review", "business_id": "oeR69T9Ow5bvTq9xbiutWg"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "0ALKLy1SjTsgCptBTiKvPg", "stars": 5, "date": "2008-12-16", "text": "The Boulders was a first class experience all around. \n\nWe stayed in a casita, which was one bedroom and had a sitting room w/fireplace (a letter on the table indicated they are no longer using the fireplaces for environmental concerns), a large bathroom and walk-in closet, and a patio with a table and four chairs. For the ladies, there is a vanity with lighted mirror just off the bathroom. My only small complaint about the casita was that the shower was a bit small. The mini-bar seems to be a thing of the past, but the Boulders still features a well-stocked version with a half bottle of Cali wine, kettle cooked chips, water, soda and various liquor. The villas were outrageous and would be great for a family reunion or that type of thing - multiple bedrooms, a large outdoor area for entertaining, with the garage (they're houses, really) converted to a bedroom. If you're staying in a casita, it's a hike across the property to the villas - they'll take you in a shuttle bus.\n\nThe bar near the dining room was well-stocked with several single malts, and the standard cigar list. Walk out back through the seating area, and you'll find the pool, framed by a gorgeous backdrop of a large boulder and waterfall. A little cool for the pool in December, but it didn't seem to hamper others' enjoyment.\n\nLooking forward to returning and enjoying more on-site amenities besides golf. My girlfriend went to the spa for massage / pedicure and seemed pretty relaxed - what I gathered is that she enjoyed it.\n\nThere are places with cushier accommodations, but the property it sits on is what makes the Boulder's unique.", "type": "review", "business_id": "WFDxa8r0sT2ZnehYTyT1LQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VONfPEsY8qUO2LSYFI4yRQ", "review_id": "chbGA44-iJhTlBJnjvI-3Q", "stars": 4, "date": "2012-01-22", "text": "I love Lux. The new venue is great because there is a lot more room. The only problem is that it's still not enough. This place used to be a great place to just hang and spend the morning on a weekend or weekday. Now it's over crowded and doesn't have that neighborhood feel anymore. Some of the staff is super friendly while others have attitudes. \n\nThe coffee is impeccable and the food is delicious. That first sip of my soy hazelnut latte is always the most delicious and compares to no other coffee. This is what keeps me coming back. \n\nIf you want to sit for a while, make sure you arrive at the right time. And keep in mind the right time is never the same time. You pretty much have to get lucky to find a good spot. I've started getting my coffee to go. Also, they don't open until 7AM. This is when my shift starts, so I can no longer go before work. A great remedy for this was to buy Lux beans and to brew my coffee in a French press each morning. I'm definitely not complaining about the quality. It's still delicious. \n\nI try to make a visit to Lux at least once a week and will continue to do so....", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "--65q1FpAL_UQtVZ2PTGew", "review_id": "5RJ5PmYGitWll8jEyQ9FDQ", "stars": 4, "date": "2011-06-29", "text": "There's no doubt about it, both Mamma Mia locations deliver some great pizza on the cheap. This Mamma Mia is now the closer of the two to my house, and at first I was a little worried. I wasn't sure if both locations were going to be good, but I'm not worried anymore.\n\nWhenever I go there, I get slices. I also usually only spend about $6. To me, that's awesome when I'm craving some pizza pie. By the way, Mamma Mia serves good ol' fashoined NY-style pizza. Their toppings range from traditional (roni, sausage, veggies) to fancy (salmon, bleu cheese, capers). I have been known to order capers on my slices (and they were actually really good). Normally I ask for the slices well done, and I'd recommend you do the same if you like that extra bit of crispiness like me. The slices come out relatively quickly, and I've never been dissatisfied with what I've been given.\n\nI've yet to try their sandwiches or pastas, but in time I'm sure I'll get around to it. At $6 or less a pop, I feel like I've got a good thing going. If I'm in the mood for pizza and I don't feel like traveling far or spending much, Mamma Mia is towards the top of my list.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "U3DzyVKgyQk2YGDnZ8pFFQ", "review_id": "Ok_LkFZ2GZqwCERA6Q8qYg", "stars": 4, "date": "2011-03-16", "text": "Hole in the wall? Yes\nAmazing food? Definitely\nClean? Questionable but I could care less\n\nThe tortillas are really as good as everyone claims. Food was prepared pretty quickly. I had two machaca tacos and the beef was really tender and flavorful. A friend from Phoenix recommended this place and we stopped by on a trip from up north. Next time I'm in Phoenix I'll make sure to stop by!", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "eAgcqq8MAe1ztS4gqDbpTA", "review_id": "5p6ojcHIsFWKkNntBzT8IQ", "stars": 1, "date": "2011-09-17", "text": "I don't think I have ever been to a restaurant where I have treated so poorly by the wait staff. I'm actually rethinking my Green rating because I sincerely think this is my worst restaurant experience.\n\nThe one good thing I can write is that this place is really cute and it has an inviting patio. Lots of string lights and cute bistro tables. I really thought I was in for a great evening. Oh how wrong I was.\n\nMy friend and I walked in and the hostess immediately sat us at a four top right in front of the door. Unless the restaurant is packed and the drafty table in front of the door is the last spot available, I do not want to sit in a place where incoming guests will constantly bump into my chair. I pointed to a seat in the back and after trying to convince me I didn't want *that* table, the hostess led us to the back. It's not the worst thing that could ever happen and that instance did not ruin my evening, it was just weird.\n\nWe sat and were greeted by our waitress, who initially seemed very nice. We both ordered water to start and I asked her for a drink menu. Apparently the drink menu is on the back of the regular menu. It's just so small that I missed it the first time. She told me that Friday night is the $4 frozen house margarita night, so I went with her suggestion. By the time I finish pulling out my ID, my dining partner was ready to order. We got a queso appetizer, the vegetarian tacos with a side salad, and the machaca plate.\n\nWhile we waited, a few more groups came in, were greeted, and received their adult beverages. It had been ten minutes since I ordered my drink, so I tried to look for our waitress. \n\nShe finally popped up five minutes later, but avoided all eye contact with our table. When she did see me, she quickly ran outside. I understand she might have had a few tables outside, but why have an inside section to wait as well? The table right next to us had an amazing server who brought them two orders of drinks in the time it took to get my water glass refilled. (Margarita was still MIA at this point.)\n\nThen, the queso came out, brought by two hipsters. It looked like an over-microwaved styrofoam plate in a skillet and tasted just as bad. My friend tried to make the best out of the situation, but I was ready to call the manager. I really, really regret that I did not. \n\nNasty queso juice dripped all over the table and there was no silverware or napkins to be found. AND no wait persons or a hostess to ask for said items. (Twenty minutes after I ordered my margarita, it was still MIA.)\n\nOur waitress finally popped up and asked how the appetizer was. My friend cut me off and said it was different, but okay. He took rare this opportunity to ask for silverware. The waitress made an excuse that it should have been on the table already and went to grab some. When she came back, I asked about my drink.\n\nWith another lame excuse that could have been avoided if she ever check on us in the then-thirty minute absence, she finally brought me my drink. It was OKAY, not worth $4... more like $2-3. \n\nTwo seconds later, the food came out. At least we had silverware?\n\n1) My veggie tacos and side salad were okay. Is it bad that the BEST part of meal was the white, iceberg lettuce salad?\n2) My friend's machaca was bone dry. Isn't machaca supposed to be tender, rehydrated, and edible? \n\nAll in all, the salsa was the best part of the meal. Yet, one cannot enjoy a dining experience on salsa alone. This was sincerely my worst experience at a restaurant and I will not go back to Mucho Gusto.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "2_q4MxBJEw9PtFGs7mmYMQ", "review_id": "sYyr_knBz9VArSgbtCUXHw", "stars": 5, "date": "2011-08-06", "text": "We just moved from Florida and I was looking for a Restaurant with great food, service and a great view to celebrate my husbands 61st Birthday on Friday. It was suggested by a friend to try A Different Point of View... We are so glad we did... Let start by saying the drive up the cliffs to the restaurant was an adventure my Kia wasn't happy about but we made it.. AMAZING views... Greeted by a valet who had plenty of energy and was very informative. We picked the elevator to go to the 4th floor as opposed to the stairs... We were seated in a corner window table with views beyond belief! Greeted by our server , Larry, he wished my husband Happy Birthday and brought a passion fruit drink that was delish compliments of the Chef! Nice touch... Ask for Larry if you go.. he was right in tune with our special requests... We ordered their Signature Salad and I said we would share it... Larry had the kitchen serve it as a split.. Larry made the dinner and celebration very Special. My husband ordered the Rib Eye but my husband doesn't like any thing on his rib eye and doesn't like anything else on his plate with the meat.. Larry must hears this all the time and he explained exactly how it will be plated and assured him that no sauce or veggies would touch the meat. See pictures to see our meals. I held my breath until the plates came out and my Husband loved it- it was perfect. He ordered it medium rare and it came out perfectly cooked and full of flavor and it cut like butter. I ordered the Pork Tenderloin and it was tender and full of flavor the corn cakes were like little polenta pancakes they were delishish... The bread and the specialty butter and pesto and goat cheese dips were also full of flavor... \n\nThe dessert was a Chocolate Espresso cake also very good. The sun was setting and the lights were twinkling-- Just a wonderful experience.. \n\nI can't wait to go back when it's a little cooler to sit outside...Don't miss this wonderful casual affordable piece of Heaven!", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9Ysj3f3tI3m5QRDxvQAIKw", "review_id": "XU-rGSnCPuujGRjldmM91g", "stars": 2, "date": "2006-10-07", "text": "The only good thing is the cheesecake. The food is terribly mediocre. And I hate how they seem to all be decorated like ruins of some sort. I want some damn food not an expedition with Fernando!", "type": "review", "business_id": "ADJIoHN3uLx-JalYl3r3Dw"} +{"votes": {"funny": 3, "useful": 5, "cool": 6}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "FyZj0aOh1Yt9jDnZ4O4BZQ", "stars": 4, "date": "2009-09-13", "text": "I really wanted to have a Birthday cake for Zoey's 4th Birthday and The Bone Appetit Bakery did not disappoint. \n\nWith just 24 hour notice I was able to choose a bone shaped cake from one of 2 sizes, I chose the small (see pics) A very tasty Peanut Butter and Honey cake with cream cheese frosting. All natural human grade ingredients, no sugar, salt or additives, Zoey went nuts for it! \n\nI also purchased her a cute little party hat to wear for her birthday (see pics) they even sell invitations if you are planning a big doggy bash! ;-) \n\nYour dog would just Love it if you brought home a Birthday cake for them, or even some of the house made baked treats they sell here. \n\nGo Now!", "type": "review", "business_id": "kode9F27RF4C7XdSsnokiQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "aLNj9JCy7z0YSvxy44r0sA", "review_id": "5SzUMsGO89oIl5zqhAm-XQ", "stars": 4, "date": "2012-08-12", "text": "Try the deep dish, the smallest size can easily feed 3-4 people, it's SOOO think and yummy. Great staff and food, what more can you ask for?", "type": "review", "business_id": "ML1RJdeZ7bbfMrHvJ7m99A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QbAywqwZvG2hP_uTDbyByw", "review_id": "9cqo_PdWJa-n5xWgCdzOLQ", "stars": 5, "date": "2012-06-27", "text": "Great experience at Citizen PH...highly recommend the food and ambience trust me well worth the price!!", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g6rlp5No6GjEDXkrjvg1kQ", "review_id": "WaFl6MKgb0WHOOK-usI0kw", "stars": 4, "date": "2009-09-02", "text": "Ive been here twice and my favorite item has been their version of tiramisu. It's not soaked in espresso or whatever the local italian eateries are using these days..it's made with champagne! It's light and fluffy..it's like eating a cloud from heaven. Very much a date place.. It has a \"romantic\" atmosphere so don't go there if you're not trying to give off that vibe. Otherwise great for a group setting..... Oh and for any potential cougars the waitstaff is delicious eye candy. ;)", "type": "review", "business_id": "waOHPeROjKPz-KXqlSsoWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IeWasXNEkwqQfil8twvRkg", "review_id": "j4dTZw7rtCNqsqCS61wvsg", "stars": 4, "date": "2011-11-24", "text": "wouldnt you agree that a key part of enjoying the dining experience in part depends upon the company you are dining with?! having said that, the times i have dined at abuelos have been with my fellow co-workers, all female, and yes, we all get along! needless to say, we had totally fun & memorable experiences, filled with great conversations, great food and good prices. their corn chips are fresh and lite, their salsa comes in different levels of heat. i usually request the hot salsa. i'm partial to their chicken enchilada. portions are just right, one is plenty for me, usually served with rice. in all fairness, believe i need to sample other dishes, before i could rate it any higher. found another great restaurant in chandler, az! top3 reasons why...1- great tasting dish 2- good value 3- atmosphere (location, service, ambience)", "type": "review", "business_id": "jCOTob1avPH52RNuniylkg"} +{"votes": {"funny": 0, "useful": 7, "cool": 5}, "user_id": "q9XgOylNsSbqZqF_SO3-OQ", "review_id": "GPRCZ2tVtGLXYUDWTYYIhg", "stars": 5, "date": "2009-08-04", "text": "You know when you get a really good cut and color.. When the stylist is done and you look in the mirror and say \"Wow, you did a great job. It looks awesome\".\n\nWell that was my experience yesterday. I was a bit hesitant to go to the training academy, but in these rough economic times every penny counts and their prices are fantabulous. \n\nIt is really hard to find someone that does a great job on your hair the first time you see them. My stylist was Sara Groves and I am now a customer for life. I have the feeling she is going to have a very lucrative career doing hair, too bad her prices will triple in a few months. She sat me down and asked me all about my hair, my style, the products I use ect. The best part of the entire experience was that she really listened to me and cut my hair exactly how I asked. I wanted peek-a-boo highlights in my bangs, and even though she thought it was an odd choice (and asked me if I was sure a few times ;) she gave them to me. I was extremely pleased with both my cut and color. When the receptionist rang me up I almost couldn't believe the price.. Cut and color for under $50.. WOW!", "type": "review", "business_id": "xPbUPBWS6k31qgUfUODmnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "QQVQTz_dYZk_Nat5O-EBkg", "review_id": "6AdvAZT-v9SZUzRj2Wf-SA", "stars": 5, "date": "2011-09-20", "text": "I love the story time program here! I started coming this summer after having a baby and wanting to get my toddler out of the house while beating the heat. The staff here is amazing! It is a 30 minute session of singing, dancing, stories and bubbles. We look forward to this every week now. My daughter loves the take home cut out and coloring sheet. The first thing she does is come home and color it. I am so thankful for this free program.", "type": "review", "business_id": "NtRs2Xd64mRLe6jGUTXziw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "NSPP7lHF_jIBt4yf8RyHPA", "review_id": "7JK3E4bg1qR8uvysIXziBQ", "stars": 4, "date": "2012-01-04", "text": "We stayed at the Scottsdale Hilton in one of their villas for New Years Eve. It was the perfect size for all of us staying there and it was close to where we were going to be in Scottsdale.\n\nThe villa had it's own kitchen fully equipped with a fridge, stove, sink and even had cups and glasses. There was a little seating area by the kitchen as well.\n\nThe bedrooms were both a good size and the master bedroom had a huuuuuge bathroom. It also had his and her's sink and tons of space. I was sad that I didn't get to use the shower because it was a walk-in shower and was spacious.\n\nThere was also a larger sitting area with a tv and fireplace and it also had a pull out bed from the couch. I recommend getting a villa if you will be sharing the space with a few people as there is tons of room!\n\nTo get to the block party we were going to, we called taxis and the Hilton also sent over shuttles to get us to and from. They weren't charging but did ask for tips. They were really easy to communicate with since we had so many people and they did an awesome job!\n\nMy only complaint is that some of the outlets in the bathroom and the room didn't work. It wasn't too big of a deal since I found one that worked that was luckily by a mirror so I could do my hair, haha. Other than that, our short stay at the Hilton was great and I wish we could have gotten more use out of the villa.", "type": "review", "business_id": "ZRrIwqIUMII1b2keMI8QRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vNFxfUDTPgZRgV3EHnkmJg", "review_id": "Ha7Me6m2h27tjWaDzRdCNg", "stars": 5, "date": "2010-05-15", "text": "Super cool, cookie/cake.chocolate maker haven! :) Totally worth the 40 minute drive I had - it was packed when I got there and I did not experience one little bit of rudeness. I arrived with my 5yo and after cruising the aisles for a bit an employee came by to see if I needed help finding anything. Super neat place! :)", "type": "review", "business_id": "XAaXT0e70-USVYVKcnljsg"} +{"votes": {"funny": 2, "useful": 6, "cool": 4}, "user_id": "f_YFU2h9rM0ZPrPJD6eCsg", "review_id": "unDeb-R-hqBG13nFAa0Cqg", "stars": 3, "date": "2009-01-11", "text": "I like the Thai Hut because it is safe Thai eating. They have some of the more adventurous authentic Thai, and then they have what I ALWAYS get - The Garden Delight with beef. Just basically vegetables and beef cooked in a marinade. They always have plenty of servers on hand and I've never been disappointed. There's just some little sparkle that it seems to be missing.\n\nI struggled between giving it a 3 or a 4, but I settled on a 3 because they could definitely improve the atmosphere a little bit and parking sucks. They are really close to the light rail now though, just get off at McDowell/Central and walk one block east on McDowell.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MKZh-O5OLJcR1exReXhJHQ", "review_id": "60EpHGOBKM9Pt2EwiFSjng", "stars": 2, "date": "2012-09-05", "text": "I'm sitting here as I write this.I'm thoroughly unimpressed. \n\nWith its bare white walls and sparse attempts at decor, this place is overly and unreasonably obnoxious. Despite not being crowded, and there never being more than one person in front of me each time, I had to wait on line. With two people working behind the counter there's no reason to forget my order or make me wait 5+ minutes each time I needed something (to get my coffee, to ask for the Internet password, and then to remind them that I ordered coffee). Unfortunately the coffee supplied was mediocre as best. Disruptive music selection that was too damn loud. Annoying..thank God for pandora.com, a good set of ear-bud, and reasonable wi-fi or I never would have gotten any work done.\n\nThe only reason I'd come back here is if my son had another concert to attend nearby. Needless to say, I do not recommend.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "scxmg3Pu_jjpXSyFWH8-Cg", "review_id": "aOuxK1eUBA-Ij3pUi-XP0g", "stars": 5, "date": "2009-07-28", "text": "ouchh...my fuckin head is pounding this morning. thanks a lot guys!", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "J72XoQspNBmPsX2iKl2YvA", "review_id": "7Y5pqMMFE3L1XNUz2_uRJA", "stars": 3, "date": "2008-04-02", "text": "When in the mood for bagels I go to Einstein's with my several year old yellow Einstein Brothers stainless coffee mug. I pick up an AZ Republic and order a toasted good grains bagel with garden veggie. I usually have the bagel in a basket by the time I get to check out or at worst when I am filling the coffee mug. The coffee is mellower than my usual Starbucks but compliments the bagel. Einstein's draws both the young and mature and I enjoy the ability to read the paper at my leisure either inside or outside in the morning shade.", "type": "review", "business_id": "G27f2NAq05CkMaoiXBPY_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9OpjxLRhiV9YImoMVHlxLQ", "review_id": "EBHrIffn9PF7tMnHf4O_Dg", "stars": 4, "date": "2009-07-25", "text": "LOVE this place. The parking is terrible. That's what keeps me from being a regular. Coffee and deserts are SUPERB. Atmosphere is A+. Love the gifts.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 5, "useful": 3, "cool": 2}, "user_id": "E0WWNXVze_sfDCbM0oMYvw", "review_id": "MMjqpCbRka_B0OPHs9Eyzw", "stars": 5, "date": "2007-08-07", "text": "God Bless Lifetime Fitness.\n\nFirst off, let me tell you how much I despise working out. Like, at times I'd rather drink my own pee than even come within 50 feet of the stair stepper. \n\nHowever, LTF (have you noticed that I like to abbreviate? Get used to it friends...) makes my gym experience fairly painless. Steve W, I salute you for aknowledging the value of such a fine work-out establishment, and I actually have many of the same opinions. But because I like to hear myself talk, I'll reiterate some of my favorite points.\n\nFirst off, I'm absolutely not a fan of children. Especially at a gym. Lifetime has FREE childcare for kiddos 12 and under so us singles can flirt our way through our workout without your kids sniffling and screaming. Kids can play and swim outside under parental supervision at the pool, complete with waterslides and some kid-specifc water fountain spray thing. They love it. And I do too. WATERSLIDES? I mean come on. LoveitLoveit.\n\nLifetime's members span the board, which is nice because I like the fact that I'm not the most out of shape person there. I also like that there is nice scenery to watch and inspire me to keep my feet on that god forsaken stair stepper. You may even see a professional athelete or TV personality on occasion. Who doesnt love that?\n\nYou never wait for a piece of equipement because there are tons of machines. And they are not covered in meathead sweat, which is always nice.\n\nMy favorite part of LTF is the group classes. Excellent teachers, classes every day of the week, and a good variety of options. I'd like to see more coreographed classes like Hip-Hop, but whatever, Kickboxing Jam is pretty damn close. \n\nLocker rooms are always spotless, towel service is free, sauna and steam rooms arent full of weirdo naked people, and they have this device that dries your bathing suit in under a minute. Ingenious! \n\nI've been a member of a ton of Scottsdale gyms but I drive the extra 20 minutes in rush hour to go to the Tempe LTF. Doesnt road rage burn calories anyway?? Win-win situation.", "type": "review", "business_id": "wGAehOy0jG02k_FS5sx8CQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "t8v5avMw1eiCC5KZ_MMINA", "review_id": "OhAYvGZjB2KJxW7wB8LX0w", "stars": 5, "date": "2012-09-12", "text": "One of our Lexus car keys/key fob was cracked and needed to be replaced. Going to the dealer would be anywhere from $250-$400! I found Alcatraz on Yelp and called Todd. Todd did exactly what he said had to be done and the charge was $75.00. Todd is knowledgeable and knows what he is doing. Most other locksmiths couldn't do the job because they don't have the machine necessary to fabricate the key. I am a home inspector in the Phoenix metro area, and before I left with my new key, I took more than a few of Todd's business cards that I plan to give to my clients, so that when they move into their new home, they can call someone who is reliable, knowledgeable and trustworthy to help with their home security. Thanks, Yelp, as I found Alcatraz on your site.", "type": "review", "business_id": "y0_Yc9NS-nro-pDGKhiFjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8xXoJCEIA3kCSgC3VE9snA", "review_id": "5VWoIyJe9XJ1dbCcuoeaew", "stars": 5, "date": "2010-07-13", "text": "I love sakana. They have the best lunch time happy hour! Its always delicious and seriously reasonably priced. :)", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oBd-_6sWn7c9HORfcW4A7w", "review_id": "yPrpSyehxdwQPfSebHRGIw", "stars": 5, "date": "2012-08-19", "text": "Hard to find New York pizza that tastes like New York pizza. All the way from Morristown, NJ, this place is now the only place I order NY style pizza.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lAngRi4lwBIHmjCBVLd-8Q", "review_id": "EGc2Uui886jl73xFy9Rdlw", "stars": 5, "date": "2012-05-09", "text": "I was here for the Yelp event recently and loved it. The facility was great and Yelp did a good job putting together the event. I noticed there was a lot to do there. I am already planning to come back with my nephews so I can have fun walking around the mock grocery store. I'm also looking forward to racing my nephews through the car wash on tricycles. Bring energy when you come and prepare to have fun.", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kGm5BBCp2Q2s8f8tgD1zUQ", "review_id": "5KMjYBXXd70QnyOP_DNTRQ", "stars": 1, "date": "2011-04-01", "text": "Empty tables. Told 15 minute wait. Ok. 5 minutes into wait (by the door, bumping elbows with counter patrons), 2 people at the counter complained they had been there 20 minutes. We left at that point", "type": "review", "business_id": "Cz0McL5lUaihqOIw0_Yo7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kG8jkVFgOAOq6Ht6RvAjEQ", "review_id": "jNIBYqnaeBruBxd_MX46qQ", "stars": 4, "date": "2012-08-29", "text": "Nice car-wash with reasonable prices and decently friendly staff. I can tell the staff is used to dealing with the older gentleman types versus the hip and fun 30-something female SUV driving Mom types, but that's ok. The Mom-mobile was detailed just right, the wait wasn't too long, and the air freshener lasted more than 1/2 a day. \n\nWay way better than Cobblestone Spa over on Bell Rd.", "type": "review", "business_id": "WzXRXrAeCkHWlVdkbPfP-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dop-mD9qf2J0t2mljfHG4Q", "review_id": "Wn-fNLrcaTbqhaXZERAGug", "stars": 1, "date": "2012-06-14", "text": "Not a company to do business with ... From my experience !'", "type": "review", "business_id": "9YW9UFJXEO2_CD8dxY-IBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rYCncos5jX6QSccHNbFrlw", "review_id": "DENiVAwF-XX57rgAERIl7w", "stars": 1, "date": "2012-06-18", "text": "I wouldn't send my worst enemy to this place.", "type": "review", "business_id": "POOUz3kduIUpwrbc6ydftg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "v2UqlUHA8d3lgTIby0CCFQ", "review_id": "0dxpLZkXjgiXWYPmWusGsQ", "stars": 4, "date": "2012-07-07", "text": "If you're a fan of Postino, you have to make your way to Windsor pronto.\n\nThe central Phoenix restaurant and bar is owned by Postino owner Craig DeMarco (and it's right across the street from the central Phoenix Postino), and the atmosphere and vibe are similar to Postino's. Windsor also has an open dining room that extends to the patio, the lighting is also dim, and the servers are also hip.\n\nThere was a 30-minute wait for my party of two on a recent Friday night, and we sat in the indoor dining area, which overlooked the bar, which was bustling full of people and had standing room only. The restaurant is located in an historic brick building, and it has a cool wall covered completely in cassette tapes that makes it feel even hipper.\n\nFor food, my pal and I started with the Cheddar Fondue ($11) off the mostly-American menu, which comes with pretzels, apples, pork, bread and sausage. The pretzels were soft and chewy, and the portion was huge. I would have preferred just the pretzels, though the apples and cheese were an interesting combination. Definitely try that appetizer if you go-it was super-tasty.\n\nFor my meal, I got the Veggie Stack ($9), which was a pita topped with bean spread, quinoa, tomato, cucumber, avocado, radish, corn and green goddess (I left the pickled beets off). I thought the toppings were interesting both taste- and texture-wise, and that part of the meal seemed relatively healthy. I paired it with some macaroni and cheese, which I enjoyed, though my pal and I weren't wowed. Maybe it's because the cheese wasn't plentiful or creamy enough, but it was still good. My pal had the Porkwich sandwich ($12). He said he liked it a lot.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "k1ACFw3wmqkNGoiGeNLc0w", "review_id": "nzGRwZG_o6G417tIMGZ0EQ", "stars": 1, "date": "2009-02-10", "text": "I do enjoy a good bowl of Pho. This was -not- a good bowl of pho.\n\ngrey chicken meat., off tasting broth, old bean sprouts, 1 piece of a jalepeno pepper... dingy insides. Weird looks from the server. I don't think I'll be back. Not much else I can say", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 7, "useful": 7, "cool": 7}, "user_id": "WgX4RZT2nbqXcJclDWHWYg", "review_id": "-qH4in8On76pgJZyBrpfWg", "stars": 5, "date": "2010-08-13", "text": "Had a bad day yesterday and decided my health-conscious lunch would *not* cut it as far as getting me through my work day. I've always loved VSC & have had their menu at my desk but I hadn't been in a while. Put an order together w/ some co workers & called. I was read to go pick it up, but then they told me THEY DELIVER! I don't believe they did the last time I'd been there. Went out on a limb & tried the Dead Head wrap - soooo good and WELL worth the price b/c it's huge. I almost took off a star b/c their pasta salad is NOT what it used to be. I don't know if they changed it or if they are just inconsistent in making it, but it was kind of embarrassing that I'd told my coworkers how awesome it was just to have it come out not so great.", "type": "review", "business_id": "eJpr6Ks8pr4bmvDVPTN-Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hqnySkbeUJGoC6h76gtSIQ", "review_id": "f3DDgRGNznU0Yk7WMPv2eA", "stars": 5, "date": "2011-12-02", "text": "What can I say I love AJs especially the Boulangerie or coffee bar. Jason is the best. The pineapple ice tea with a slice of pineapple is deli-sh with a yummy cheese croissant. I admit I usually get something from the coffee bar and bistro more so than the actual grocery store. Oh and if you go check out the display/decorations they are usually pretty cool.", "type": "review", "business_id": "Mng1FUcW-xRSdsDkowQm2Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ceKoQX0_IJZ6Lr9-9LGcbA", "review_id": "kIAFjwkeibeA1vtZbBH2Ug", "stars": 5, "date": "2009-09-16", "text": "Well what can I say about this place? The restaurant is located in an upscale commercial complex with boutiques and an AJ's in the middle of Arrowhead Ranch. Definitely doesn't have the boring suburban feel which you get along Bell Road only a mile away. The inside has exposed brick on the walls with sleek looking seating. Each food item comes out looking like a self made creation from the chef. I have to say the Marguerite pizza is one of my favorites. Having a crispy crust and savory flavors that make my mouth want to eat more, more, and more. But I don't need to eat more because I fill my mouth with a good wine. I had a Dutton Estate Chardonnay(I think) which was half off on this day which kept me happy. This place did not fail me.\nSo will I be back? Umm that's a yes!", "type": "review", "business_id": "Lc-ZYyI83FpEe-8u_LSODQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e3fwzqWn2EScYXgm6NRBWQ", "review_id": "wUJuK1G0I3aI2RK2l19qrQ", "stars": 1, "date": "2011-07-18", "text": "Most horrible buffet I have ever been to.\n\nMy boyfriend and I are big chinese buffet fans. A ton of them have raised their prices recently (and, not surprisingly, have been closing down left and right).. so the prospect of a good buffet at 5-8 dollars was absolutely amazing. We read all the reviews on yelp and I had high hopes.\n\nDear lord. The food is awful here. Inedible. Tastes very distinctly like a bad frozen dinner. The only thing I remember being remotely food-like was some kind of beef and onion dish.. which tasted a bit like a philly cheesesteak. not exactly asian fare..\n\nI tried really hard to like this place. My boyfriend didn't like any of it either. I don't understand how they have such good ratings. The ONLY thing I like about this place is their dessert bar, because they have toppings for the frozen yogurt. It always annoyed me how so many buffets don't even have sprinkles.. so they've got that going for them.. though I think I'll just go to Mojo or Yogurtland. haha.\n\nIn short, I don't understand how anyone can eat this garbage.", "type": "review", "business_id": "eyjyLrHjTPGuynfv-glYcw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "1CL12c9zuE36NGhx-otgVw", "review_id": "ZQNhHraFM-ErSZdghNWApw", "stars": 5, "date": "2012-11-05", "text": "Fantastic. Absolutely fantastic. I recommend OHSO for anyone looking to dine at a neighborhood bar and grill. \n\nI was really shocked when I dined at OHSO for a Sunday brunch. I figured the variety of beers would be the focal point of the brewery; boy, was I wrong. This place has some of the best dishes in Scottsdale supported by a huge selection of beer. \n\nLet me say this with more clarity: great food differentiates this place, not the huge variety of beers. This is a great achievement considering many breweries focus on providing rare beers with mediocre food. \n\nThe \"Burger + Cheese\" is simply awesome. \nA GREAT brunch dish is the \"Breakfast Burrito\" as well as the \"Breakfast Flatbread.\"", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hGyKkRaJkOpl6jagEZAWcg", "review_id": "oojL4rm4wxxUoEn5rfzviw", "stars": 4, "date": "2011-03-30", "text": "Had a fantastic massage with Liz. She knew all the muscle structure and pressure points. Though not the fanciest of places, it's perfect if you just need to get a massage. If you want to be pampered and get the spa feel, this may not be your place. For me, my back hurt from sleeping crooked and I left feeling much better.", "type": "review", "business_id": "r4ggW7POeNX0ta6spkT4Kg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "z5g5Lclwt13_BO0BStohMA", "review_id": "hHgcY9ptFnTX_l6IrElGBA", "stars": 4, "date": "2011-01-07", "text": "Typical anglophiles, my lady and I gravitated toward the tea garden. But that doesn't mean we didn't love photographing and learning about the myriad plants that call the desert home.\n\nI was particularly enchanted by the century agave and giraffe trees.\n\nGive yourself plenty of time to walk the garden's many loops. I would recommend at least four hours.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "oIVsVM8H273aoT1JUmsDIg", "review_id": "WiBN3KWKXAqfRUAlOJ81ug", "stars": 4, "date": "2009-10-10", "text": "I love books and I love bargains. Put the two together, and you have a place called Bookmans, or as I like to call it, my book heaven. I recently purchased four books for about $30 -- that's the price of one, new hardbound book -- and was thrilled by all the great bargains I found during my casual stroll through the many, many isles of books, cds and dvds.\n\nWhat I love about the whole used bookstore concept is being able to give a new life to a book someone didn't want anymore. I especially get a kick out of finding old books with inscriptions inside. One I found says:\n\n \"Pam, This is my number 1 all time favorite book. I hope you have\n a relaxing holiday with your family and look forward to adventures\n in the new year!\"\n\nI felt bad for the inscriber, since the book obviously did not become Pam's favorite, so I bought it in hopes that the inscription would ring true for me.\n\nI'm glad a bookstore like Bookmans is around and that they are able to compete with the big chains. It is a great place to find great deals, and I'm hooked!", "type": "review", "business_id": "xLCbkTYQaP-nij6mEfaw7A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "vUoD6Se0B2BP6W023y176g", "stars": 3, "date": "2010-02-01", "text": "SALSA BAR RAID! that is exactly why I do when I am at this place. The salsa bar is the main attraction for me. There are many great salsa options, plus fresh cilantro and peppers. Some of the salsas are good enough to be eaten straight, like the mango salsa, it makes a good desert.\n\nThe menu for this place is somewhat somewhat limited t mostly burritos and tacos. Recently the menu was revised and the cheaper items were removed and more expensive ones were added in their place.\n\nEvery meal comes with a small side of chips, which adds even more use to the salsa bar. The grilled green onion that used to come with each meal is gone and missed.", "type": "review", "business_id": "dD2xiLM1_5Vg0pMvMIPZww"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "DuGQ74ZYYhx2NCALocA5Cw", "review_id": "fLM0swvpIVzmgnXxrFS0oA", "stars": 2, "date": "2010-05-26", "text": "Great location. Nice decor. The food was adequate, but $13 for the turkey pastrami sandwich was a little high for a lunch. I guess those chandeliers are expensive and rent at the Waterfront cannot be cheap. Our server was poorly trained. She placed the food in front of me instead of the lady first. I asked for water and the server brought only one glass of water and didn't bother to ask about the lady's needs. This venue is not for those who appreciate fine or even appropriate service. Sam needs to educate his young servers on the finer points of courtesy. Our server was also extremely bored with her job, her life, and her existence. That's the impression we received.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "3qMUN6NGDq1GWtAJSuvXIQ", "review_id": "WpwIA0YmpDEqAoH_hjSG2A", "stars": 3, "date": "2011-09-12", "text": "Haus Murphy's was my first German food experience ever. The cuisine was OK but it isn't something I'd shove people down to get to. \n\nI went with a friend who lived in Germany for a bit and he said that Murphy's wasn't quite up to par. \n\nWe ordered the sausage sampler as an appetizer. The sausages were tasty, but they were a bit cold. For something that is labeled a \"sampler\", I felt disappointed with only two types of sausages served in it. I don't know for sure what types they were, but they didn't taste unique to me, as it seems like you can purchase them in the meat section of any supermarket. \n\nThe sausages were served with three types of condiments. A sweet style mustard, a Dijon style mustard, and ketchup blended with curry, which I'm told is a recent favorite of the German kids brought over from Turkish immigrants. \n\nFor our entrees, we all had some type of schnitzel. That same friend told me to try the Wiener schnitzel as it is the representative item when you think of German cuisine. So all our schnitzel's came out and mine was the blandest. My friend's schnitzels had different gravies, toppings, and stuff and my poor little Wiener schnitzel was just bland and all alone. You have to get that Wiener schnitzel wet with gravy ! \n\nNo biggie, I'm a foodie so I'll eat it. A schnitzel is basically German country fried pork. Not super exciting. I copied my friend who lived in Germany and substituted potatoes on the side for spatzle, as I wanted this experience to be as authentic as possible. I don't know if it's just Haus Murphy's, but the spatzle was kind of bland, even with the gravy. \n\nI do however like the word spatzle. If I ever visited Germany, I would only say spatzle, to everyone. I also liked the other thing that was served with the entree. It was kind of like a mashed potato mixed with some creme sauce, onions and some kind of green vegetable or herb (probably spinach). \n\nThe beer here was good authentic German beer. I didn't get drunk, but I still don't remember what kind I had, you'll have to experiment. \n\nService was excellent. I read some reviews that said Murphy's was slow but everything came out quickly and evenly for us. The waitress was very friendly and they spoke lovely German (not that I speak ANY German, but it sounded sexy). She was very helpful in describing everything, from the food to the beer.\n\nI ordered a BAP (big ass pretzel) to go. Philly is known for some pretty good pretzels and this BAP was good. It was expensive, but it came out warm, soft & chewy. The only thing is they went a little heavy on the salt. \n\nTo steal and modify a quote from a Seinfeld episode: \"That big ass pretzel made me thirsty\"! \n\nNote* They don't actually have it on the menu as a BAP.\n\nWould I return to Murphy's? Ehhh, yeah to try some of the other things, but I definitely can't see it as a place that I would be a regular at.", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kOb1hWSwA6aD2mRVy6lqFQ", "review_id": "Lu4MVbIhLVvRHqQFWEhM4A", "stars": 2, "date": "2009-10-21", "text": "This place is ok if you are so starving you don't care what you eat. The chips and salsa are great, but everything else is pretty bland. I am a fan of tamales and I would definitely not order it again. They do make some pretty good chicken tacos, but you only receive 2 small tacos and its about $12... no thanks! I would prefer Taco Bell over Mi Amigos. The staff is very nice and the service is good, too bad the food does not match.", "type": "review", "business_id": "-lOSaCuBRAvX5JBifx-EMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3BCH4AfHZshEaegNmPpN2g", "review_id": "_jWfSYCHV4UvhHJKwWR2gA", "stars": 5, "date": "2011-10-06", "text": "These guys are great! They have helped me with bulbs needs for both my home and office. Easy to work with and good prices. Thanks!", "type": "review", "business_id": "z1CjVXv6M6RbWhZO1lIExA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mEimJ0tajMEVZxWqatGpKg", "review_id": "m-HuYmxbS0nng8UacLhRMQ", "stars": 3, "date": "2012-11-13", "text": "Seriously need a remodel, but totally worth the money due to the free 24hr shuttle in a 5 mile radius!! Nice staff. Clean. Just worn down a bit...", "type": "review", "business_id": "VS6eeO_IxSW0pQOWPtXSEg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "S3inpPpjhSGgXfh9HdsCng", "review_id": "9-8llHxyhtqMGs6TxPnebg", "stars": 3, "date": "2010-09-29", "text": "The cajun seasoning on my salad was terrible, but everything else was just fine. But food aside, I'd come here again for the atmosphere. It's not my scene, but I enjoyed how friendly the waitress was. I was surprised that she didn't know what an old fashioned was (my barometer of how good a bar is), but the bartender did and gave me a drink that was well balanced, but needed way more alcohol. Old fashioneds are not orange and look and taste like juice!\n\nIt was fun watching the girl buck around on the mechanical bull. I have a feeling that the operator liked jiggling her around for a reason though...All in all an enjoyable dinner with friends.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fE5cFZwRgvTYK78bYTFy0Q", "review_id": "cZjHSF5ZbmeswN0Y-gffEQ", "stars": 4, "date": "2011-06-27", "text": "Great place for happy hour and drinks. Really can't beat pints at $2.50, good long happy hour 7 days a week. The sandwiches are all good, the salads make great sides instead of the chips and the tiny cherry sized tomatoes are to die for whether you get it on the bruchetta or cheese board plate. Thursday late happy hour gets pretty busy and so does friday late afternoon into late evening. Saturday night it picks up after happy hour ends. Wish they had burgers and fries like the Living Room in downtown Phoenix.", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "czMeiY1ehKrm_aZFKAHt-Q", "review_id": "X4xSy9XaAn9ruAUQNSo0Bw", "stars": 5, "date": "2012-04-18", "text": "One of my favorite places to get Indian food. I'm vegan so I love that there is so much to choose from. My all time favorite is the chili gobi and vegetable manchurian. I'm so glad Udupi reopened.", "type": "review", "business_id": "lhRUPA28pRIN1MnllN-o9g"} +{"votes": {"funny": 12, "useful": 7, "cool": 9}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "MR3tpec4Xfvu9uxPGh0FOQ", "stars": 4, "date": "2008-02-08", "text": "This reminds me nothing of the cafes I ate at while in Paris. Sadly, however, I wasn't in France, but Texas. Yes, Paris, Texas. My car broke down. I believe I had a cowboy omelet and a large ice tea while waiting for the repair. Here, at Zinc Bistro, I pretend I'm Paris, France. A glass of Burgundy with the French onion soup and some pomme frittes and I say WEE WEE! I've had good service here. Although I've seen larger tables having issues with flagging servers down. It's like they can't rememeber to ask for everything at once and the servers is doing some serious wind sprints from the kitchen to the table. The manager is way cool and always remembers me. I do love the bistro style atmosphere here and love hearing other peoples conversations when I dine a lone. I know. Shameful. But one couple was actually signing their divorce papers over a steak and a bottle of champagne.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 1, "useful": 5, "cool": 0}, "user_id": "2URPAzG5RELkB1cCm1ASJw", "review_id": "XXhDtnQJecXNlLiV94FG0g", "stars": 1, "date": "2011-05-04", "text": "I suppose you could just put me in the \"box\" with \"Luis T\" on 3.20.10...because if i didnt know any better, his could have been my entry.. So i was here this week. Let me start by saying i have been giving Los Dos Molinos my business for almost 20 years now, and each year that goes by i find myself saying that i am going to cease my patronage. I will save the stories from the recent years and why i've been feeling this way, and give you just the specifics from my most recent visit: If you want to make the rule that there are \"No Split Checks\" then can you AT THE VERY LEAST get with the current times and make the bill somewhat decipherable? We had a large party, and were quite promptly advised there were no split checks, yet at the end of the night we were left with a ribbon of calculator tape with ONLY prices, and no correlation with actual menu items...so we had to cross reference the menu to figure out what the heck all the itemizations correlated to. And by the end of it, we pretty much gave up and just guessed at what each person should contribute because the receipt may have just as well been in morse code. Ok, im getting ahead of myself..Its one thing if you have subpar service and the restaurant is slammed, understaffed, there is a MLB baseball game or NBA basketball game, or concert going on...This was not the case. We were the ONLY table inside the restaurant and the service absolutely sucked. How many times must one flag down the server for (take your pick) A; refill on chips B: refill on ice water and C:(most importantly since the drinks are marked up 300%) a FRESH DRINK!!! Oh yes and D: Check please. We had to look over our shoulders for A , B, C, and D. When our table collectively decided the service was ridiculous we decided the tip would reflect that, and then we realized an 18% gratuity was included...well no wonder. When that is the case, there is NO incentive for decent service!! We brought several items to the attention of the bald headed caucasian man who may have been a manager of some sort but his severe lack of customer service skills merely resulted in him stating in a childish voice \"They are complaining about the service\" to an audience that didnt exist. Damn right! and damn right we will take our business elsewhere. Grandma Chavez is rolling in her grave! you should be ashamed!", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OnGKdONTxlNYyjX6KXhL0A", "review_id": "wL2xpxiFpMW3OFEZIIlJ3Q", "stars": 4, "date": "2012-08-29", "text": "These guys scare me. We set up a repair with Karen for a noise in the dash area which i said seemed to coincide with the gauge movement at start-up. Well, we came back the next day and found we had a new stereo but the noise was louder. The dash was pulled and it was determined to be the A/C door actuators and Karen set an appt. for drop-off and rental car pick-up the following day. On the way down the A/C quit working completely. Angie called me the next morning to let me know we could pick up our one day rental as they replace the condensor. Nothing was said about the noise which we brought it in for originally and, more to the point, no knowledge of this at all was logged into their system regarding why we dropped it off the night before. We had already been set up in a rental car by Karen the day before but for some reason nobody had a clue what was going on and she and the technician had both gone on vacation. Finally after speaking with the service manager, Gary, and explaining to them what should have been in the notes on my car it was determined they would handle everything and we could keep the rental on their dime. This made me feel better and we picked up our car 2 days later with functioning A/C. On the way home from the dealership the A/C quit working again so back it went for another random repair. Tuesday came and we picked it up again after they had to make some A/C computer module fix but... on the way home from Coulter... my wife noticed the ABS and Traction Control lights were flashing red and indicating they were innoperative. So now the car was unsafe to drive but at least we had A/C to keep us cool if we had a wreck from the new issue. We took it back to night drop-off since they were now closed and this morning, Wednesday, they have it back in the shop to see what happened as they were doing the other work. I'm so happy I don't own the warranty company since I'm sure they are paying for all of these mistakes. Hmmm...\nUpdate to follow -\n\nNoon 8/29 update - Our new service person, Ben, called and as it turns out this is totally unrelated to the A/C issue but is instead, the brake pedal sensor, whatever that is. It's ready to come home. I'm beginning to think that the consumer reports review on this GMC Acadia is accurate. 40K+ for a good looking, nice handling, unreliable SUV. \nOverall I have to say that once Gary and Ben were involved this has taken a turn for the better and maybe all this confusion was just a fluke. I'll give them another chance next time we have a service issue.", "type": "review", "business_id": "KRZKl_NCQ1cMD1AJpWDTwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fjJ9tgJNhDR_l3_4t5fz2Q", "review_id": "gGkJWhO_kTd9xuL1ZP8Ygg", "stars": 5, "date": "2011-07-07", "text": "Market Bistro never leaves me disappointed. The people are great.\nThe food is ALWAYS good & it doesn't matter what you get, they will cater to your needs & wants.\n\nDefinitely a must if your coming to Phoenix or if you live here, you need to try it.", "type": "review", "business_id": "Ch_2Ye0w4Q9l3VeVW7VNHA"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "n7f8d2y5OaaEFzWWFXwtPQ", "stars": 5, "date": "2011-06-19", "text": "Wow... I regress into some sort of '90s Valley Girl stereotype when chirping in delight over how good Switch is! How I was missing a review for a Short List restaurant that I recommend to ev-er-yyyyy one I meet who is new to Phoenix and even remotely cool!?\n\nSwitch is reliably good food served in a reliably good atmosphere by reliably good servers. The combination of service, setting and grub makes Switch a go-to for affordable dining that has appeal for a wide variety of people. If I think that someone might be too uptight or too culinarily 'safe' to really enjoy Fez I know that I can take them to Switch, they can hone in on comfort food basics and I will still have an enjoyably awesome dining experience myself because all the basics are done with love, care and actual effort. \n\nI think I prefer Switch's menu to Fez's because of the combination of classic choices mixed in with flavor play and more diverse fare. And we end up at Switch a lot because they have awesome outdoor loungey space which works for friends who are smokers and for a quieter, more intimate chic and cool dinner-drinks and gossip night. \n\nIt's really a gift to have this place in Downtown and a real gem in the Valley overall.\n\nWe have on occasion had our asses kicked by the bar, specifically by the Drunken Italian Sodas which are so very, very good!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "EKwGhgLrM18ErVKKeYE2UA", "review_id": "QZTn1Bo8RQPRPUHKlmdGow", "stars": 5, "date": "2009-01-06", "text": "Love their pizza and atmosphere. Their Caesar salad is really good too. They had a great deal during the summer, where we got 2 salads, 1 large pepperoni pizza and a bottle of wine for $40.", "type": "review", "business_id": "RC11zxI3ZW2UPFeXpGofdA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nWw6phGGdMXCctDV_DK3IQ", "review_id": "w2kuRh5OWLWN2X7UH6wvng", "stars": 4, "date": "2012-05-09", "text": "Economical discount theater! For the price of what other theaters charge just for admission, you can get your popcorn and drink too! Seats are a little small, but there are usually plenty of them. It is of course not the newest releases, but I am never up to date on my movie watching anyway. Must have cash, ATM available in the lobby area.", "type": "review", "business_id": "gfhO1Q1c7QCigu7waVpeSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V8TuNMIpbDQUHyHdGmm-Qw", "review_id": "S2Kk-p65zfPZibQfe-JvBA", "stars": 3, "date": "2012-02-26", "text": "Food used to be a lot better, service too. Not awful though.", "type": "review", "business_id": "qNoNkF1yJctEs3t40VkX4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LvGC0do89uWKWbNrqFFwHA", "review_id": "n4I-pdVv7Ayk9Kzzkxfo8g", "stars": 5, "date": "2012-06-06", "text": "I recommend making OpenTable reservations, as this place is small. \nI had a great dining experience and I enjoyed the drinks and food. Margaret (sp) was a great server.\n\nI like to dine at local places like this, particularly those that make their drink mixes in house and use locally sourced food [when possible].\n\nThe drinks I had were great: Aloe Arizona, The Kingston Rum Punch and Pi\u00f1a Colada Redux\n\nI had a dish with red snapper and vegetables; which was excellent. I had rice and peas on the side, the rice was not the best however; it seemed too dry.\nMy friend had the prawns, I did not taste it, but the presentation looked good. She also had the coconut water which was served in a coconut - it was great and she mentioned it complimented the prawn dish.\n\nFor desert I had a Cr\u00e9me Br\u00fbl\u00e9e made with pineapple and rum.", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xVTY2s588zm4bJiaZZU8CA", "review_id": "FHuXMFd6ErgSikXn_3hdzA", "stars": 4, "date": "2012-11-29", "text": "all the naysayers seem have a bone to pick, the service here is incredible and the food is better. vegan options as well and staff that helps make sure your order has no egg or fish sauce. if your looking for thai, this is the best place in the valley we have been to, and being vegan, we have been to too many to count", "type": "review", "business_id": "VbXy3tH5RAu7HjT7VeMMgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "Txbs-Iynall0qrAOmtOTmA", "stars": 3, "date": "2010-08-24", "text": "This is a really fun place to grab some cocktails or beers before an event or game. My friends and I have a tradition of drinking here before DBACKS games and we always love it. Drinks are reasonable, especially if you ask the specials, and way cheaper than beers at BOB. \n\nAs for food they have an awesome menu, but the food came off a bit cheap in quality to me so I don't think it's worth ten dollars a plate. But if your hungry it will get the job done! Although...one of the days I want to try and eat one of those One Pound hot dogs they have. It is a personal goal. \n\nI recommend:\nFox Sports Marg\nBeers\nGrape Bombers", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1SoSqWcWZINy1mvdTdTvNA", "review_id": "4wwVZbI6xP5z_wT5MoA8_Q", "stars": 5, "date": "2010-03-13", "text": "Fantastic place! we went tonight for my friends birthday-they were able to seat 15 of us without a problem. Our waiter, Tim, was fantastic-he split the checks for everyone before we even asked. They gave the birthday girl two pieces of delicious dessert on the house. The food was great-we were all surprised by how large the portions were for the price. Everyone was very polite and accommodating I look forward to going back!", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6T8fwmZaxSJ4qjrGvlasOg", "review_id": "fEiyeO9DK0KWYzpltpKPSg", "stars": 5, "date": "2010-05-16", "text": "This place is the truth. It is easily one of the absolute best spots in Phoenix for Sonoran style Mexican cuisine. The chile colorado is so good, it made me try to slap my mama. The red sauce with the chips is actually brewed in the sixth level of hell. Awesome. Fridays feature $1.99 margaritas before 7 p.m. Swing by, start with the cheese crisp, grab any combo and revel in the gluttony.", "type": "review", "business_id": "BESmH-lmMm34_EefL8X9fQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "A6CQFZCXLxkxiuXlimB0zw", "review_id": "_487iYm3mxZACs4Z_Rxirw", "stars": 5, "date": "2012-02-13", "text": "We enrolled our son in this program. It was EXCELLENT! Of our three children who have learned to drive we have observed that he is the most safety conscious and the best \"new\" licensed driver.\n\nThank you, Driving MBA, for the peace of mind you have given us.", "type": "review", "business_id": "c83U8KeaK10Qm9opPqf0Cg"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "AkmuMAICsEjMVkTa4QPhyw", "review_id": "lUJWQU0vpA8q33vx3sqp4Q", "stars": 4, "date": "2010-03-07", "text": "So. . . I think the name is very misleading. I have thought about stopping in before, but I also thought this place was a deli counter with the usual sandwiches and a little ice cream. I would have been surprised. My sister talked me into trying it out for a quick bite before our Thursday night class. This place is like a neighborhood pub should be. The wood bar is warm and inviting. The Side Door is small - very small. Even though this is obviously a neighborhood joint, we didn't feel uncomfortable grabbing a table. For every 70-something that was at a table, there was a 20-something at the bar.\n\nThe food was not amazing but it was decent and reasonably priced. We split a Greek salad and a roasted veggie pizza. The veggies were great, the crust, nothing to write home about, but could repeat. I want to come back and try some of the sandwiches. Somehow I have a feeling the Italian beef would be a hit. . .", "type": "review", "business_id": "IGrp61aiyR-PtL581brrcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "US3AZyMVZJxg_3Tzs4xoEA", "review_id": "xFwgknnuB4HWQXpQMI8zJw", "stars": 3, "date": "2011-03-14", "text": "Was an interesting way to spend an hour. Lots of displays but very dusty on the inside of the cases. Quite and peaceful; a nice place to hang out for awhile. I showed up about 40 minutes before closing and she didn't charge me the $2 but I donated $3 since they operate only on donations. The table set with rocks and minerals was fun to check out. I would go back again when I wasn't short on time and explore upstairs.", "type": "review", "business_id": "gV2APG0WE-pqR8i-ZBTDew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TCLluVVoGGHBQNIMSrVXJA", "review_id": "1kGLbhVGT1UPEhuOTFxAoQ", "stars": 5, "date": "2010-03-15", "text": "I love this place. The food is clearly made with love and the folks there are so inviting and warm. Great vibe. Great food. Great price. You can bet the next time I visit Phoenix, I'll be coming back to Tiny's ;)", "type": "review", "business_id": "d83_qJwcOYOojQsapu1Z4A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Bc2UjSePEGvqSdHvz2HKGA", "review_id": "G3YTmOgMHdNLeDi6ryd_sw", "stars": 5, "date": "2010-11-28", "text": "Kind of surprised myself, but I have to give them a five. Let's begin with the drink was excellent. I had some kind of pom martini that was one of the best I've had in a while. I ordered the sirloin steak cobb salad. My salad arrived two minutes after the people I was eating with, and it was taken off the bill....they also brought us a free dessert and apologized...really? That's good service. They may have even gone overboard, but I didn't complain. The food itself was excellent. I loved my salad, and it was a nice size portion. All in all, a great experience.", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hFG1Lira7tL_PElq6bdAAw", "review_id": "syDq3fN2s1F5BBWlHL73Lw", "stars": 5, "date": "2009-07-26", "text": "Awesome carne asada, veggie taco and just about everything else. Delicious and very easy on my wallet.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jKg43xVpvtcGrJruTbt77A", "review_id": "VXcc8cQybJEhtjR55Ahiew", "stars": 5, "date": "2009-08-05", "text": "This is the best record store in Tempe, hands down. Second best in the Valley (after Tracks in Wax). \n\nI have been collecting records for almost 30 years now, and have been going to Eastside for about half that time - at least since I could conveniently drive out to the east valley, and regularly since I moved to this end of town about 10 years ago. I remember the fish tank with the moray eel and the fact that the plaza they are in used to let them have twice the space.\n\nIt amazes me that they have survived all this time. And, boy, am I glad they have. A good chunk of my collection, and even my current turntable, has come from here. \n\nIf I ever won the lottery, I would probably spend enough money in one day here to keep the place in business for another few decades. Heck, I'd even buy them a bigger place if I could! This is one of the last truly independent record stores. I'm happy to support them, and I hope everyone else will continue to do so as well.\n\nEdit: They closed down on 12/31/10. I'm going to miss them. Hopefully they'll reopen somewhere else, even if it is only online. My regret is that I didn't have enough money to do one final run through there.", "type": "review", "business_id": "jSRPuytD6HuRUDzxnQpvBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cfG9CzzrOchbD_PeKAWiNg", "review_id": "ZBbtCim9tCRe12Bk0Wd5Yw", "stars": 2, "date": "2011-12-09", "text": "Ok so I get the peanut thing, wood accented atmosphere, good service (although rather \"in your face\" at times) and the packed dining room / bar even on a Thursday night. \n\nWhat I don't get is the awful food. This was my FIRST (and last) visit into this franchise restaurant. How they convinced franchisees and the general public to invest and vote with hard earned dollars is beyond me.\n\nI took my friends 11 year old there after he played in a b'ball game and after looking at the menu and pricing decided to split the rib eye special $19.99. \n\nI got the fried pickle appetizer as well and was sorely disappointed in the batter and both of the \"dipping sauces\" (watery ranch and thousand island? I really couldn't tell). Even a franchise like H***ers makes them WAY better......wow.\n\nOn to the main course. The baked potato with butter and cream cheese was overcooked or something? I have never had a potato that seemed to have been soaked in some type of brine and then baked? Kind of par boiled or something. Anyway the color was greyish and the taste like that of a fishy sea salt.\n\nMoving to the broccoli i was greeted by a palor yellow looking presentation. I couldn't tell if it was cheesy cauliflower or ? Wow the taste was again that of something really overcooked or under matured...YICK\n\nThe last chance at redemption came with the medium well rib eye. Good sized portion and easily split between the two of us 20oz. Good wholesome beefy taste and great texture only to be squallored by a heavy Saltiness....not sure where this was picked up from but maybe by hanging out too close to the potato? \n\nI really am normally an amicable restaurant patron but after forking over $46 including tip for two to split some food and getting served what we did ...well you get my drift.\n\nSigned, \n\nNeverToStepFoot-InsideTheRoadhouseAgain", "type": "review", "business_id": "YvQKDmSQqs-R7vPEWV2EiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gwzz8Z8-Xdfsum3aBOI9bw", "review_id": "nJLacp_9zDBMl9CvmLJ-PQ", "stars": 4, "date": "2011-11-01", "text": "I have heard about this place for couple years before I actually get to try it out. Their guacamole burger is my favorite, and the Peanut Butter Malt was just amazing!! First time I tried, I ended up getting another one to go. They also have corn beef sandwich on Thursday, which I haven't get the chance to try yet. Only thing I dislike is that they close at 8 pm which is a bit too early for me.", "type": "review", "business_id": "iNvY0zAlaD_ye7Z6rHu-Ug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AIJffk467kHfAE8SDq3nxQ", "review_id": "kYH4Pdai3mvWMgSaxdkrQQ", "stars": 1, "date": "2009-12-20", "text": "Not recommended if you're not white. For me, it's the third time somebody threw out racial slurs at my group. I am beginning to think the place is for rednecks and the like. D&B bowling lanes are better.", "type": "review", "business_id": "GZ8KctCJxGzYZ7aAdapprg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "sG3_fRCEROn0-9TzlawdlA", "review_id": "fWb1J5cbxOX9VQwuateWNA", "stars": 4, "date": "2012-12-12", "text": "We went here after the Rainbow Festival and it was such a great place! The food was great, the service was awesome and the patio is a great place to enjoy your meal! Bliss has made it to my list of places to eat downtown!", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 13, "useful": 12, "cool": 6}, "user_id": "YweXL7KPvt0sCc0kdheXqg", "review_id": "htTKwIxZjEthQsJzPiSbiQ", "stars": 1, "date": "2010-01-26", "text": "Let's talk about failure, baby.\n\nHey, if your idea of salad is punishment via tasteless lettuce and mealy tomatoes splashed with the most generic, industrial vinaigrette, you've found just the right place to BDSM your tongue. Go for it!\n\nI ordered Capellini Checca, and I had it substituted with Spaghetti (I like more girth re: pasta). What I got was the limpest pile of spaghetti that couldn't be revived with a lifetime supply of Viagra. The DOA pasta was topped with a pathetic sprinkling of more mealy tomatoes (the menu says Fresh Roma Tomatoes- these had the texture and taste of a dying horse's ass moreso than fresh produce). The faint, acrid garlic tasted like it came out of a shaker bottle and not a bulb- and motherf*&k, respectable Checca should have more than 1/16 teaspoon of microscopically chopped basil. \n\nThis place makes Old Spaghetti Factory look like fine dining, and I would rather starve than be even close to that chain restaurant of culinary doom. Hell, this place is the disowned, cracked-out junkie brother of OSF. It's really *that* terrible.\n\nI gave them the single star only because the management was incredibly lovely, and did not charge for the unforgivable disaster masquerading as edible food worth paying for.", "type": "review", "business_id": "RQWliUrWic_b5FZEj3JThQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_FbZ1gXZL349iiz5D8gz2Q", "review_id": "I0FMku71jcaIRqZKqhHNAg", "stars": 3, "date": "2010-09-06", "text": "Typical Taco Bell with typical Taco Bell menu (other than the Popeye's Fish they serve from the same kitchen/counter). Not sure if some of the people in the kitchen could speak English. One employee on break sat in front of a small TV in the seating area which was VERY LOUD and ANNOYING. Every table was dirty despite it not being very busy, and the bottles of condiments at the \"fixin's\" bar were filthy. Can't beat the prices, though. As usual, I left \"stuft\" on two bucks.", "type": "review", "business_id": "L7i9j66ph3Uz5i56OXIICg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JiSt1mjxvz-nTYHk3A2vbg", "review_id": "u6K8yVFxf1DlrgOG3L7v4w", "stars": 5, "date": "2012-03-18", "text": "This place is awesome. \n\nA cornish pasty is like a big calzone stuffed with whatever you choose. They have many choices and all regular choices are also available as vegetarian entrees. These are HUGE so come hungry! Their tomato soup is also good but I would definitely stick to a pasty if you want a delicious meal.\n\nThe place is pretty divey but in a really great way. I have also heard they are expanding so those of you who have complained about their cramped quarters may find some reprieve soon. Personally, I like the small dark divey feel.\n\nThey also serve Rogue beer which is delicious if you haven't tried it. \n\nI like this place so much I eat there whenever I am in the area, which has prevented me from trying many other places nearby but I cant seem to bring myself not to go to Cornish as it is so good every time.\n\nHighly recommend it if you are in the area.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "gEnU4BqTK-4abqYl_Ljjfg", "review_id": "QwO8t8GRnnaotu4Tyqge0w", "stars": 5, "date": "2008-09-03", "text": "Huge fan of Bikram yoga! It's a 90 minute, torturous-at-times, sweat-filled workout but when you are done, you feel insanely amazing. The feeling continues throughout the day leaving you in complete zen....Road rage? Gone. Annoying food cravings? Zero. Jeans? Fitting awesome. You really must try it, it can completely change your body.\n\nThere are a few places in the valley that offer Bikram, most of them exclusively rather than in combo with other methods of yoga. The Bikram Institute on Miller and Indian School is where I first tried it, and I like it the best so far. They offer classes throughout the day and later in the evening as well. Like other studios, this place offers first timers a week-long pass for around $20. What I really like about this studio is their instructors and the fact that they keep their room darkened throughout the entire practice. I've have been going to another studio lately (for their first-time student deals) and their instructors bark out instructions non-stop plus they keep the lights on the whole time. So when you're staring up lying in your relaxed state, your eyes meet the glare of the fluorescent. \n\nI'll very likely return here after I've exhausted the new student deals at the studios around the valley. Yoga can be expensive!", "type": "review", "business_id": "dZb1V8knqTUT1o-NKZAl1Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "p7dvahRPZIWL7T6pFA_0dg", "review_id": "V-MMwDZ7GcxAsiIDqW7tpw", "stars": 3, "date": "2012-10-07", "text": "In 1999 the AZ Republic Voted Abacus Inn Best Chinese in the Valley. That is sad because Chinese can be so much better.\n\n But I do have to say that Abacus Inn does something nice that I don't see too often in other Chinese Restaurants. They give you hot tea and water and fresh fried noodles with sauces when you are seated. \n\nI had the Yui Shan Chicken, it was a fail because of the inedible Shiitake Mushroom stems in my dish. Trying to eat the mushroom stem was like trying to chew a car tire but, I do have to admit the sauce was more developed than any sauced dishes I tried from the surrounding Chinese Restaurants including Bamboo Cafe, Ginger China Bistro, and Shangri La. I LIKED the use of cucumber in the dish was light and tasty and successful. Unfortunately the white meat chicken was dry. Maybe a THIRD STRING cook was on the day I was here and maybe this dish is normally prepared better?\n\nThe saut\u00e9ed spicy beef was more successful. The beef was very well prepared and unlike the Yui Shan dish this Spicy Beef REALLY WAS VERY SPICY. I am used to a more developed and balanced Szechuan sauce so I wasn't a fan of this dish from here. But I do note this sauce was better than what you'd get from surrounding Chinese Restaurants.\n\nThe last time I was here I had the sizzling rice dish and that one impressed me because they cook the rice quickly in a very hot oil and puff the rice.\n\nIt's a toss up between Abacus Inn and Shangri la . Abacus does some more impressive stuff but Shangri la does cook moist chicken.", "type": "review", "business_id": "Xh7lpLo9TxodWgV5VdWeiA"} +{"votes": {"funny": 0, "useful": 4, "cool": 6}, "user_id": "VBEbhE0ISjg6xowGNiGmgQ", "review_id": "ssxtRkC4mLcnxgdmbk7Z9A", "stars": 4, "date": "2008-10-31", "text": "OK, let's face it: there are better steaks in the Valley. As a matter of fact, if you just took the steak at face value, it might not even crack the top 5. \n\nBut Durant's is not just about the steak, or even the food. \n\nDurant's is a classic in every sense of the word, the type of place that can rarely be found anywhwere in Phoenix. It's also a lively and classy night spot, something that didn't exist anywhere in downtown Phoenix for years, and as several new places have developed around Durant's overe the past few years, it has remained consistent and cool. \n\nAnd that's what Durnat's is really about. Yeah, the steak is pretty good. The seafood's alright. The bread with the hot garlic butter is awesome. But Durant's is just COOL. It's classic Vegas, Rat Pack-style cool, and you feel it from the moment you walk in.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WeYFVTBNYF1s6FzIv1F0Lg", "review_id": "xa58vx5XpKtWWX0ECNvcSA", "stars": 5, "date": "2012-09-30", "text": "Excellent food and service!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "MtX0WZ4bqMfFuYvtupgRqg", "review_id": "G2Ahsc-1wle3uJ4B1Fv1aw", "stars": 5, "date": "2010-01-30", "text": "GREAT PLACE TO HANG OUT AND WATCH THE SCENERY\nWith a little help you can drink & choose from about 25 beers, 8 scothes,10 whiskeys,8 Really good tequila's (just ask me) along with the every day vodka's & some pretty impresive wines (or whines).\nDon't miss this little gem in the rough & com listen to music or watch sports or just drink. Oh yea the owners are OK also", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oJFtaqTm4iAbyDlfErusPg", "review_id": "sX_3z-bk_rzg8ZYwAJ3Reg", "stars": 5, "date": "2011-07-06", "text": "Love this place. Great staff! Friendly, fun and knowledgable. The food is always good.", "type": "review", "business_id": "SkNUbFJiJtbZjY-S_S0u7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "dPMSkbChmrUrGIviwHuLZw", "stars": 2, "date": "2006-10-13", "text": "Place was great the first time I went, Second time one of Dan's fair weather buddies (thinking he was big shooter) disrespected a good friend of mine over a misunderstanding that could have easily been solved through civil conversation, but he tried to be Mr. Big Shot. \n\nThe food was good, but not good enough to put up with that crap ever again.", "type": "review", "business_id": "45puCRQ6Vh_IIAy7kkfFDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2IaQQuZtbZKhOcNwYJOVuQ", "review_id": "KgXMVdK6NEMtwKSWSLxjqw", "stars": 5, "date": "2011-09-21", "text": "What started out as a simple attempt to find a perfect birthday present turned into a life-long relationship with a fantastic jeweler. \nI wanted to get my fianc\u00e9 (girlfriend at that time) a simple diamond pendant necklace for her birthday and could not find anything that even came close to matching her style. I searched the internet for days and reluctantly went into a few jewelry stores hoping for the best, but expecting the worst. I, like most people [guys] out there, had a bad feeling in a few stores I went to. Pushy sales people looking for the upsale, and sky high prices. I was getting very discouraged about the process, but that all changed when I came to Hyde Park. \nThe super friendly staff made everything easy for me. There was no pushy sales process or anyone trying to upsell me something I didn't want. They immediately offered me a bottle of water and started to talk to me like a real person. After a few minutes of speaking with a very lovely woman in the store she suggested we think about something custom. At first I was thinking \"here we go; this is where I am going to get stuck!\", but I was all wrong!!!\nWe looked a few loose stones and I got a great education about diamonds. I went home later that night and did some research on the internet and found that the prices we as good, or better than any of the big online retailers. I could never get my head wrapped around buying a diamond online, sight unseen, and I am so glad that I found Hyde Park. \n\nIn the end I have used Hyde Park to create a custom pendant diamond necklace that my fianc\u00e9 absolutely loves (it is perfect on her), and I also used Hyde Park to get the diamond for the engagement ring, as well as everything else to follow. \n\nWant to know what service is all about in the jewelry business, check out what Hyde Park did for me. I picked out an amazing diamond for the engagement ring (chose the loose stone again) but had no idea what kind of a ring my fianc\u00e9 would want. So Hyde Park said \"how about we just put it in a classic Tiffany solitaire setting as a temporary setting and then after you give it to her, you can come back in together and pick out the perfect setting and wedding band set\". I was like, seriously?!! You can just do that???\n\nIn the end Hyde Park will be my jeweler for life. They helped me create the perfect simple birthday present, and took that service all the way through doing a custom engagement ring and matching wedding band set. This is the jewelry store for any guy who wants great service, great prices, and like me, doesn't have the first clue about how to make the perfect decision. Just let Hyde Park take the stress out of it like they did for me!", "type": "review", "business_id": "CBwfqbMvp-_l9Klx1wra2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "Xp1lHfEkymPCCIkBiJ6SYg", "stars": 5, "date": "2009-08-17", "text": "I have concerns about Heirloom. Not about the food, which is fantastic (not quite 5 star fantastic, but 4.5 star fantastic). Nor the service, which is friendly and helpful. Nor about the atmosphere (well, somewhat about the atmosphere...it's quite lackluster). My concern is that Heirloom claims to be fine dining for our current economic times, when $50 entrees seem obscene. But what they've done is create a menu of less expensive small plates where you need to order at least 3 per person to be totally full, so you end up spending as much if not more as you would at other high-end establishments. On my visit, the place was practically dead. Granted, it was a weeknight, but I can't see how a place can survive with only 3 of its probably 15+ tables occupied. Especially not in such a high rent location, where restaurants have dropped out like flies. The menu changes weekly, which is really nice if you go to a place often, but who could possibly afford to come here often?! If you do go, they have a $25 off coupon on their website. Not 25 percent...25 DOLLARS! I would love to return to Heirloom every month to try chef Michael DeMaria's latest culinary creations, but that's certainly not within my budget. I'm afraid others have the same problem and that this place won't be around for long. Therein lie my concerns, because I really did love my meal!", "type": "review", "business_id": "r0cKkJSTFXuGhBu5823NCQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "yNVGe_z9hHxbvpa2Ns2JIg", "review_id": "b5Sw9Ayk9-n1WizPMINxEw", "stars": 5, "date": "2009-03-11", "text": "I don't drink a lot of coffee, but I'm a fan of tea. Especially strange tea that I probably can't pronounce right. Oh, and I like it when it smells like scotch. Yep, I'm a fan of Lapsang Souchong.\n\nBut I'm not a fan of \"foofy\". And that's one thing that Tea infusion is not. It's not foofy. It's funky. It's fun. And everyone who works there is really friendly.\n\nBeyond the teas, the food is good, too. I don't know that I'd eat there every night, but it's a wider variety than I'd expect at a tea place.\n\nThis is a regular stop of mine. Makes Tempe Markeplace worth it!", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4gIi4L7e870qFbnRemaoBA", "review_id": "tS7Q1WBuRtK78L5dykXykw", "stars": 4, "date": "2012-01-19", "text": "\"You don't need no teeth to eat our meat\"\n\nHaha, what else needs to be said.\n\nThis place is a solid BBQ joint. I'm from the southeast and I love pork BBQ. I was raised on NC style (from southern VA) but I appreciate all BBQ's. This place is pretty great.\n\nIt's inexpensive. Decent customer service. Cheap beer. Very little fat/gristle in the pulled pork which is something I pay very close attention to. \n\nIf you're looking for something quick, easy, inexpensive and delicious give this place a try.", "type": "review", "business_id": "xfk9eY8gmwn8qsbyd-W6lQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "krOd6-nWhQTczGwR8gtwiQ", "review_id": "KcJf5J1PpNRMmXFnYE88HQ", "stars": 4, "date": "2011-03-06", "text": "We've been to the Hub twice now and I like it. I'm a little afraid to review it since two of the places I've reviewed in Ahwatukee have now gone out of business (RIP Villalpandos and Grill Wrap Cafe). But hopefully neither of those are my fault since I gave them good reviews. :) The first time we went there I had the New Yorker (Hot Pastrami, Hot Corned Beef, and Cole Slaw with Russian Dressing on Rye). It was pretty good! It was piled high with tasty meat; but not so high like at those New York delis you see on those Man vs. Food type shows that you know there is no way you could even eat them unless you are a snake and can unhinge your jaw, yeah, not like that. My boyfriend got the French Dip, which disappointingly was not able to be on the French roll because they were out, but he said it was good anyway. They seem to be having a bit of trouble figuring out their prep. They always seem to be out of something, both times we've been. Either a meat or one of the kinds of bread. I don't know if they need to simplify their menu or if it will just take some time to figure out how much of everything they'll go through in a day; but I hope they figure it out before it's too late. The second time we went I had The Godmother, it is REALLY good!! That hot pepper relish and the garlic sauce TOTALLY make it amazing. It's super tasty! The boy had the Meatball sub which was really good also. It was not really a classic marinara, a bit spicy, but the meatballs themselves had a lot of good flavor. It's pretty cheap there to make it a \"meal\" with the drink and chips and of course the cookie always comes with it, which are really traditional and tasty. The service is really polite and friendly. You can tell they are really putting their heart and soul into this place to make it work, and I really hope they can be successful. We'll be in to support them when we can.", "type": "review", "business_id": "46xWJ6rKZxnrSLWro6EOlA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y2FcksTOoJWzq0Nf_sOwSw", "review_id": "s7R8lUXWIoNVsgpRSK9qjw", "stars": 4, "date": "2011-03-19", "text": "Had to go to Gila Bend for something and while we were there decided to stop and get something to eat. Stopped at this restaurant and we're glad we did. We ordered the large meat lovers calzone and wings to split. The pizza dough they use for the crust is very good. Nice flavor, slight crispness and not doughy. I'm very particular about my wings and when I verified that they fried their wings we ordered some and we were pleased with them as well. They made them as we requested, slightly crispy, because there's nothing worse than a soggy skinned wing that's like chewing on a piece of rubber. Our server, can't recall her name, was very friendly and always checking back with us to see if we needed anything. \n\nThere was a group of men a couple of tables away that ordered pizza that looked awesome. Another table ordered spaghetti with meat sauce and what I think was a very large looking burger with fries, which they had the same idea as us, split to share. The serving of spaghetti with meat sauce was a nice size serving as well. Another patron ordered dessert which, according to the server, was a spimoni cake. It looked really good too. \n\nIf you are ever going thru or visiting Gila Bend for any reason, I would suggest that you stop here.", "type": "review", "business_id": "_A4zWsLoLbjozEJYHLDx0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DLMtzSl1Z9-0LCzsvs4Qcw", "review_id": "me1klmvQmdXtVkr1XuYL_g", "stars": 5, "date": "2012-03-28", "text": "We came here for lunch and were a little leery when we first walked in. I had the cream of leek soup, my mother had the sausage salad, and my aunt had the Greek salad and we were all very impressed. We took a bangers and mash pasty to go, but we are so full, that it'll be awhile before we can try it. The service was a little slow, but the quality of food and atmosphere made up for the inconvenience.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aPGD0yNHYpFj0NH-ZUkMpg", "review_id": "9AeVfMre2OPCfR70i9pWBQ", "stars": 3, "date": "2011-04-21", "text": "My son and I were in town and went by Pizzeria Bianco and didn't want to wait 2 hours, so while on the way back to the hotel, my son used Yelp and found this little gem. The pizza was pretty good, and I had a pasta special that was quite good. The owner was very attentive.\n\nThe nearby table had ordered a large pizza, and they were served a slab that was 1' x 3' on a wooden plank. Very Impressive!\n\nThe only negative is that the guy cooking the pizzas should let them get a little browner (maybe even a little char) to make the taste more authentic.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FbExpUiiAP6NiebgsN8zzw", "review_id": "mY_UUBJY5GWxLmRYh4Lc4g", "stars": 4, "date": "2010-09-06", "text": "I had always heard great things about Pita Jungle, but it wasn't until a recent visit there that I became a believer. Really great food for a reasonable place!", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xA57BEqYJSCYV1UsZexSjw", "review_id": "rNQxXMe3NMXiP7pkMg4SKw", "stars": 4, "date": "2011-10-09", "text": "This was our second visit to Chelsea's Kitchen. They have valet parking available, but there is lots of self parking in the same parking lot. It's quicker just to self park.\n\nWe sat indoors both times. When the weather is right, the outdoor patio is popular, but I prefer indoor seating. It feels comfortable sitting inside. The way the tables and booths are set up it feels comfortable, and not crowded. The spacing is just right. During peak times, there is a full bar inside to relax while you wait for a table.\n\nWe started with tuna tartare, guacamole and chips. It was a good choice. We also ordered some beer. The beer choices were limited. The table next to us had a pitcher of sangria ... that looked like the better choice.\n\nFor dinner we had the short rib tacos and the ahi tuna. My son had the kids meal mac and cheese. I've had the short rib tacos both times I've been here, and it's outstanding. The braised meat is tender, and served with corn tortillas, beans, guac, tomatoes, etc. All of our meals were good, but the short rib tacos were the best.\n\nFor dessert we shared the red velvet cake. It comes with a small scoop of vanila ice cream. It could have come with a little more ice cream. The cake was moist and not too sweet. It was gone in a minute. \n\nThe bill for four including drinks and tip was $120.\n\nOn the way out, they have chocolate chip cookes with sea salt sprinkled on top. A nice touch. My son grabbed two cookies, and finished them on the drive back to the hotel. Great dinner!", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 2, "useful": 8, "cool": 6}, "user_id": "ARe8Nr_YehB2ubsGJhZ-hg", "review_id": "Y9D0cHkxYrpfftEft0Pkjg", "stars": 3, "date": "2009-10-21", "text": "After checking into our lovely suite at the Montelucia my hubby said he was in the mood for some chips, guac and a margarita. I think he had mistaken Scottsdale for Mexico and unfortunately the restaurant at The Montelucia (Prado) had none of the above. Instead we enjoyed a glass of wine (Riesling for me), a bowl of gazpacho and shared the snapper ceviche. Service was a bit on the slow side, but the tasty food made up for it...\n\nWe ended up back at Prado the next morning for breakfast- we were quite starving after hiking Camelback (or part of Camelback). I was a bit disappointed with their breakfast menu. They had very few things to choose from besides the $25 breakfast buffet. I wasn't in a buffet kind of mood, but it didn't seem like we had a choice. However, I seemed to get the most out of my $25 after stuffing my face with an omlette, mini breakfast burrito, fruit, yogurt parfait, etc. Our waiter did a bit of a disappearing act, but fortunately we didn't need him much for the buffet.\n\nThey do have some good food, but they could use some more options...and better service.", "type": "review", "business_id": "RLjA7TBXJfyqDfPuVCcrtQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bvYk98zUE61KoWifshskpw", "review_id": "tkvCPr0_DeBZXd_vndvUGw", "stars": 5, "date": "2011-02-06", "text": "My husband called me from work one day after a coworker had brought in several dozen bosa donuts and he said, \"I've just had the best donuts I've ever eaten\". Me, being a pastry lover, had to give it a try. We went early one morning and got one of every donut they had, they were awesome! The place is a little hole in the wall and had I not been told to go, I probably would have never gone in. The donuts were soft and fresh, the cinnamon crumble one was my favorite, and they were also reasonably priced. We live in ahwatukee so it's a little out of our way, but we will definitely be coming here again!", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rnV_UEaLHRH_WFbJQmDwWg", "review_id": "erbfYEbSAN8VTFGPccX2iA", "stars": 1, "date": "2012-11-09", "text": "The theater itself I have no problem with. Its the fact that we came out of the theater to a broken out driver passenger window, my doors unlocked and some Dumb Ass broke into my car and didn't even take anything. Really?? \nI should've known better given the area but it was the only Harkins showing the movie we wanted to see. Security was nice enough to leave a note on my window.Can you believe there's No Cameras in the parking lot at all!! Ugh!!! Disappointed customer to say the least. Will not be back there that's for sure.", "type": "review", "business_id": "gXkv89nyNlFyrEdblB3MKw"} +{"votes": {"funny": 4, "useful": 8, "cool": 7}, "user_id": "ytr46wNbedr8-iqSZngl8g", "review_id": "472IobW-7RL_XbY5Lvt_FA", "stars": 3, "date": "2011-04-26", "text": "I am a sucker for a theme restaurant. I have been wanting to visit this place for a while because of their whole gimmick. When you arrive a nurse checks you in, gives you a hospital wrist band, and dresses you in a hospital gown. Seriously, I love a gimmick more than the next person but the Heart Attack Grill is 100% gimmick and only 60% good food. The menu consists of burgers which vary only in the number of patties, french fries fried in lard, shakes, pure sugar coke, and PBR. They have a strict no sharing policy which completely bummed us out because we wanted to order the huge 20 patty burger and split it 3 ways. We ordered 2 single bypass burgers (one of our trio boycotted the burger because of the no sharing policy,) all you can eat lard fries, a vanilla shake, full sugar coke and a PBR. The burgers were ordinary, the fries were ordinary, and the service (aside from being dressed as naughty nurses) was ordinary. The only win was the delicious butterfat filled vanilla shake. \n\nThe bill came to around $30, which is a bit pricey because remember only two of us actually had food. Yeah, yeah, yeah, I get it. It is a gimmick. Heart attack, fat, lard, waitresses dressed as nurses, cook dressed as doctors, sugar, beer...whatever. It gets old pretty fast.", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O0B1CSVV8HQBN2ruLKckdg", "review_id": "6sJvjJXQtjJSjl65LEXEZQ", "stars": 5, "date": "2011-12-23", "text": "I took my daughter there to get her nose pierced for her birthday, they were very nice and professional and made her feel comfortable. Its a nice shop and they were very friendly and did a great job. I will definitely recommend them!", "type": "review", "business_id": "t30AlUH_aankqRnsJ0wxpg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zqfNAOCE1s_z-21Qs1wdeQ", "review_id": "WAt-KGkRrvH3shNa6UxbZA", "stars": 5, "date": "2011-01-31", "text": "Best Thai food!!! Order the dry garlic chicken.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_RtZvDI6yQ2_NJDxm0aQAQ", "review_id": "cx5hOockrnlbCMDpQ6_ZGA", "stars": 1, "date": "2012-07-07", "text": "Tried Shorty's today, sadly it will be my one and only visit. To begin service was mediocre at best, portions are small(I thought my steakburger was a slider), and there was also the black facial hair that was in between the cheese and burger. That's when customer service went down the drain, all we got was a \"that's weird\" and an I'm sorry. If your running a joint and a customer finds a big hair in their food you do whatever you can to save that customer and make them want to come back. Something, not just sorry for your luck. I will stick with RocketBurger, just up the street, cheaper, bigger portions, tasty and most important, they got great service. If I had to sum it up for ya in a few words I'd say\"DON'T DO IT\"!!!!", "type": "review", "business_id": "I4pSBXlKdR6assqRdVjtMg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "dT5JHk1aJQhOty1kwTitHA", "review_id": "X4gglhD52hxC7Xyc80WMLQ", "stars": 4, "date": "2012-05-26", "text": "I have heard great things about this place and I had purchased one of those online deals to try it out. I was not disappointed. The only reason, I didn't give it 5 stars was because I was freezing. But I had a small chocolate milkshake and the special of the day, philly cheesesteak. My husband had a cheeseburger slider, chili cheese dog, and french fries. We really liked the food. If you want the sliders, make sure you order at least 3, I would say, because they're kind of small.\n\nMy husband is from Illinois, so walking into Chicago Hamburger Co, was amazing. There is so much chicago decor, it's ridiculous, but since I've only been to chicago once, I liked reading all the signs and seeing pictures of former Bears players. \n\nWe will most defiinitely return.", "type": "review", "business_id": "iNvY0zAlaD_ye7Z6rHu-Ug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oVEbr2jtirosJIenFkWenw", "review_id": "BszCQJ1EQKoifMKZ2Wnmlg", "stars": 2, "date": "2012-10-22", "text": "to make a long story short --- we had a coupon for this place. We know its an ASU hang out but the coupon was for spend 50.00 get 25.00 off. Ok service was not good --- when we got the bill the pizza and wings were charged separate -- not right -- it was a together order per the menu. We had a pitcher of beer and a single beer plus food -- bill was almost 70.00 -- we gave the waitress the coupon -- she had to change the bill for the pizza and wings --- then she came back and stated the coupon had a 18% gratuity and service charge of 13.59. Based on what ??? that actually ate up the coupon and we ended up paying full price anyway. Never again --- and the food was fair --- not a good place to return to -- ASU take it away -- its all yours -----", "type": "review", "business_id": "onwUqByAIhtkyJsEITV5lQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "SHWFXq2xACjJUuoPAvztAA", "review_id": "I35ctfDb1kmPmb2dRyqnBA", "stars": 5, "date": "2010-10-16", "text": "San Felipe's Cantina will always have a special place in my heart. I've been coming here since it opened, and I haven't been disappointed yet! Here's some of my favorite things about them:\n\nHappy Hour - San Felipe's has one of the best happy hours in the valley. Their drinks and appetizers are half off from 4pm-7pm, and my bill for drinks and dinner with friends is typically $20-$30. You can't beat that!\n\nService - I usually sit up at the bar when I stop by, and they have some of the friendliest bartenders in town! They always make me feel at home when I stop by, and they're quick to serve me during the late-night hours. The managers are also really good about hanging out and chatting with the customers to make them feel special. It works!\n\nFood and Drinks - My favorite drink at San Felipe's is probably the Mexican Iced Tea. It's a long island iced tea, but they use passion fruit vodka instead of the traditional unflavored vodka. As far as food goes, I REALLY like the baja chicken wrap, the sonoran chicken sandwich, and the steak burrito with green sauce. A quick tip - ANYTHING with the baja sauce is great :)\n\nOverall, this place is a lot of fun, and I really like the laid back vibe. I'll definitely be back!", "type": "review", "business_id": "hkKvb6oXxn8ygoP5fFln1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "saNCRlGYQEBkgpvalJsvRw", "review_id": "gagVakEXSO-J6mw4DEZAdA", "stars": 5, "date": "2007-03-03", "text": "The PERFECT Breakfast :) If only I could have this every day :)\n\nMatt's is all you want a breakfast spot to be...cute, friendly and the most amazing food out there.\n\nI highly recommend the hog and chick. You just can't go wrong with eggs*, bacon*, home fries* (get the home fries, not the hashbrowns) and their toast* served with Terra Verde Farms preserves. * = best ever, ever, ever\n\nI could write on and on...you've seen the reviews. Just make sure to make it there, you won't be sorry, you'll be addicted!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 2, "useful": 0, "cool": 3}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "rJeU7P4h9fQdGlMeHxcf6Q", "stars": 5, "date": "2007-05-24", "text": "North Valley always has interesting articles to read and cool interviews with people like Alice Cooper and Young MC (Bust a Move!).\n\nThe magazine covers the entire north valley, which is very spread out. And you can find it in many different places, from Kierland to Anthem. It's free, but you can also get a subscription online.", "type": "review", "business_id": "qK71R41F3DX1uGGErUcJkQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KYCW5xpBif5eqt-jvIHTdw", "review_id": "ARQ2vrTqImZw4UAkp4rJ8Q", "stars": 5, "date": "2011-11-01", "text": "Ive been eating here more and more often lately, and I like the food. If I want Mexican food, and I am in the downtown chandler area, this is where I stop in.\n\nThe food quality is consistent. Being a creature of habit, I get the same thing every time I come here.\n\nThey are also serving cupcakes. Looks like the change the flavor every once in a while too. I have had a margarita flavored one, and a dark chocolate and chili one. Tasty.", "type": "review", "business_id": "Eq3gzgiRIGYtubbZw1mDlQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "Rr1q5BfuV9u6sJX98aOgCw", "review_id": "NXCEqBrbwMvrsCY9Huidxw", "stars": 2, "date": "2011-12-20", "text": "I liked the concept. Staff was very nice. Food tasted like it was warmed up in a microwave and cold on top and warm on the bottom. After we watched our movie we wanted to purchase tickets a week in advance for another movie. We went to customer service and asked them if they knew if TinTin would be playing on Weds. (we were there Saturday night). They told us they did not know and we would have to check on Weds. Whaaat? They don't know what movies are playing the following week? I was ticked off... their website is no better. It is confusing and hard to order tickets. I searched for tickets for tomorrow and it says showtimes not available. Sure seems like they don't want anybody to come see any movies. After spending $100 for food and movie I think I will try a different place.", "type": "review", "business_id": "EmlgWjs1ZzZEpDjZCSPLmw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "-Hv0mbeVlO2nB-6cYcfFMg", "review_id": "L-xYMmidVKfL5y018ny8FA", "stars": 1, "date": "2011-02-10", "text": "First of all, if you go here, PLEASE PLEASE PLEASE make sure you check your bill when it comes! honestly. We went here 3 times. all 3 times we were over charged.... either the menu's were out of date, or we were \"past happy hour time\" (BS)... oh and the other excuse... we just changed our menu. blah blah blah P\n\nthen they always have to \"get a manager\" to come to the table, which takes forever! (I am sure they hope we leave) PLUS! THE SERVICE SUCKS ASS!!!! this is a definitely bait and switch!\n\n1st time it happened we just dealt with it, and was like, whatever...\n\n2nd time it happened, my daughter who just got back from deployment (Navy) wanted to do something special for us and took us all there. My husband looked at the check and noticed it wasy CRAZY over what we thought as we were there for happy hour. The waitress had to get the manager which took over 20 minutes, (gimme a break) finally we took a 30 dollar gift card because we were so sick of 'arguing about it. We discussed it about 20 minutes and we were finally like, whatever...\n\n3rd time... took a friend there. again we ordered devils ale. on the menu it was listed at one price... when we got the bill, it was almost twice as much. We waited for our server to come back, she never did, she totally ignored us. I gave her a dollar tip (which is NOT like me, i tip very well, too well) and I wrote on the recept why she got such little money as a tip. \n\nIf you are looking for a fun time go caddy corner to San Filepe's that place is fun and the staff are friendly and fun. We much prefer there, we wll never go to Caddilac Ranch again. They say 3rd time is a charm, Well, it is... its a charm to know you are overspending and its a big gimmick and they dont give a crap!\n\noh and if i didn't have to give a star, i wouldn't have.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n3l3CunViKHCe7b6iWApEA", "review_id": "GoRNaB9k62cUlZ3ovQ_2Ww", "stars": 3, "date": "2011-10-08", "text": "The food was excellent ... the service not so much. \n\nA colleague and I took one of my clients here for a business dinner. The atmosphere was great, the food was outstanding but the service was embarrassing. \n\nIt was a fun, Arizona type feeling restaurant and made quite the difference for my clients who are originally from Scotland. \n\nI had the roasted shrimp and grits. The grits were the best I have ever had (sorry North Carolina!). The shrimp portion was amazing. The dessert was great. I was surprised to see the offering of huckleberries. \n\nSadly, the server forgot quite a bit of things. My client's wife ordered a second glass of wine to have for dinner, which was forgotten. We also asked for corn bread - the server forgot and brought it with our dessert. He tried to explain that it is made fresh to order and that is why it took so long.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "0EgVmQd8WALubRXahlFLpw", "stars": 4, "date": "2007-11-16", "text": "Yummy!\nWorth the wait. Yes, it is all the hype so get a drink, enjoy the scenery and munch on some fabulous pizza. Not one thing I wouldn't order. Have fun and have a slice for me!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5bs9-7Fwjuv4HiQNFVZTEw", "review_id": "oQiCtjVJK5u3zXC_auSp4g", "stars": 5, "date": "2010-09-20", "text": "Go here if you live in AZ. It fills the void in my life being a native Oregonian missing Deschutes Brewery. \n\nI must admit though, I've only been here once because its a difficult place to dine with a 15 month old child. Might want to get a babysitter for this one.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZLrgVN95FOY8qptME4G9nA", "review_id": "OevE_jMROphOA940QOPivg", "stars": 5, "date": "2012-10-15", "text": "Their emu oil is great. I use it for inflammation of my jaw and shoulders, it's wonderful. I highly recommend it. We buy it at Fresh Vitamins in Mesa. No dyes, fully refined, I love it.", "type": "review", "business_id": "zyYRWnimLbQt9aCCI_2MZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "D2NKLp8yrK-49RKslrOnpw", "review_id": "pa7NYMNB-e98aJg-91gxfg", "stars": 3, "date": "2012-04-14", "text": "The problem with a place like this is the hype. Five stars from yelpers, must be amazing! But sorry, I've had better Eggs Benedict. For me just too far to drive for the mediocre food and marginal service.", "type": "review", "business_id": "hBHkHYOk_E-6EgObC6MTdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HPzapqMz5oTL1MUPs4tAfg", "review_id": "TfI2Q-lrcBLYo4YciFWx9g", "stars": 1, "date": "2011-05-01", "text": "Worst customer service of any grocery store I've ever been in. EVER! I'd rather go to any other Safeway or any other grocery store. I'll drive the extra 10 miles just to avoid this place.", "type": "review", "business_id": "ggKTLa0xVz-WGBGatscMBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZZpXfbQn0nU22OGDW15TRA", "review_id": "e4DLPi8AEI_HAjEK0n46kQ", "stars": 4, "date": "2012-10-18", "text": "I'm never a fan of these brestaurants but this one makes up for it. And yes, I am a chick. \n\nFor starts, the girls are wearing uniforms that actually fit them. Nothing is popping out and almost touching my food/beer. Second, the girls are actually clean looking - not sporting the greasy or 'I just got out of bed and look at my nappy hair' look. The service was excellent. Quick, accurate and friendly without.. weird friendly. \n\nDrink prices were fair even off happy hour and the nachos were great. They actually layer the meat/cheese throughout which is so nice compared to most placed that just dump the flavor on top leaving you with nothing once you peel away the layer of 3 inch thick crap. The rest of the food looked like regular bar food. \n\nThe patio is awesome, they even have a fire place and water/ fish pond thing. Total chill place except for the weird-eye-balley-men here. \n\nWe watched a couple walk in and sit across from us at the bar (it's like a square shape). The guy left to use the bathroom or something and this random eye-baller came up and proceeded to not only hit on the chick(who was not as hot as the waitresses) and proceeded to tell her how he was a Dr. and blah blah. Needless to say when the guy returned they almost got in a cat fight. Sad part about it, Mr. Dr. was wearing holey Old navy t-shirt... That's Snottsdale for ya... $30k millionaires all over the place.", "type": "review", "business_id": "o9nCXNC14VScabiy2bftgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YCaqPOlG6CfKOSXUGAKicA", "review_id": "EwTLOQk1GNiXAGl9WjcDvA", "stars": 3, "date": "2011-07-12", "text": "Great authentic Greek food; excellent service. We ordered a combination appetizer plate (hummus, dolmas, pitas, olives, spanikopita, etc). It was a nice variety and filling for two. The flaming cheese is festive. The desert was a flaming custard that was just ok, but the ice cream and carmel made it better than average (plus the flaming part is always fun). Only thing missing was breaking plates. I'd definately go back if craving greek.", "type": "review", "business_id": "niPFXq4r2mc0zFlOpWV3Eg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "UjElHRjwqj3-QLgy0z48fg", "review_id": "nUAtBULof5YtZXQWjzEEKw", "stars": 5, "date": "2010-03-02", "text": "I've only been to Postino's twice, both times for breakfast. And both times, I ordered the same thing: french toast. I'm not a big french toast kind of guy, but I absolutely loved them both times, and I look forward to the next brunch opportunity there. \n\nMight want to get here early though - we arrived at 9:30 on a Sunday and there were only a couple of tables still open. By 10am, there was a significant line.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Q0yfgIXTRU2CSZNf4mcog", "review_id": "nOO3ucT1scy031sCbTuN_A", "stars": 2, "date": "2011-06-03", "text": "Please for the love of God, don't microwave eggs.\n\nIf not for that, this review would be a 3 or 3.5 stars, but seriously, eggs don't like microwavization. Just ruined the whole panini egg sandwich for me.\n\nThe coffee was pretty good. They had a selection of 4 going from light to dark which is nice. Lots of places have you choosing between a full city and a french which is frustrating.\n\nService was very friendly, but a tad slow for the number of people that were working there. I think they were focused on a lot of large pickup orders, but when you sell bagels by the barrel, you should expect that.\n\nSaw some people picking up said bagel barrels, they mentioned how their office would cheer upon their arrival and heap laurels and praise on their shoulders. They boasted that their upcoming performance review was assuredly positive with such accolades. I smiled at them and wished them the best in their fantasy worlds. \n\nScottsdale methinks is full of fantasy in this desert oasis.", "type": "review", "business_id": "rua7dvP6-SUXL4N8RTY--A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xox0n6mXqq9i4NoGGxOGUA", "review_id": "XYzSMX4Zzag9q_1t5fuOAw", "stars": 4, "date": "2011-06-10", "text": "I have been going here sense I was a kid! They have the best food that is not comparable to anything else! It is a must try restaurant!! I always leave pleased :)", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EKFQtd5q66Jn6LQjmTRLdQ", "review_id": "E_6lHC4oB-yqD9106HCMMA", "stars": 4, "date": "2012-12-26", "text": "Love coming here to watch football. Every game is on and they have three huge screens. The service there is usually friendly, I've never had any problems but sometimes my friend thinks the ladies are a little rude. Never esteem here but the drinks are pretty strong. When I'm in Phoenix I come here for sports.", "type": "review", "business_id": "C51OyHyQUZfGom7Rb5FV8A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "hzdVypwYzY5hMO3i8JCU_w", "stars": 4, "date": "2008-12-15", "text": "I came here on Saturday becuase I had to get my Jeep serviced, and I wanted to check this dealership out. I made an appointment, and dropped my Jeep off in the sevice bay.\n\nI was greeted when I walked into the dealer, and I had a decent experience here. I DO have to say, that I didnt like waiting 3 hours, but that seems to be at most any dealership you go to for warranty work, so I cannot blame them for that.\n\nWhat I DON'T like is going for service and tying to be \"sold\" on a new vehicle. Im in for service, not to buy or trade in my car. Why do the salesman do that? I know its thier job to sell, but not every single time. Geez. Annoying.", "type": "review", "business_id": "WGtu9DDt6evtT_IOZ6tNBw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EuRIgGoJ-mu7doYW0d5yFA", "review_id": "v_uMZHsFWGas9mUCROXvsQ", "stars": 4, "date": "2011-01-25", "text": "As a west coast girl, knowing what good soul food consisited of never my forte. \nThen I moved to Atlanta for almost a year...driving...so i got to experience diff states in the souths sould food. Collared greens always sounded scary to me and if you werent tuna, salmon or something i usually find on my sushi menu...you are prob a fish i havent bothered to give a chance :)\nwell after having fried catfish with some great traditional sides while in Nashville, then again while living in ATL, i feel i can give a better opinion.\nLiving in AZ, I was weary to even attempt to find some soul food. But after reading some Yelp reviews, I decided Off Da Hook was worth a shot. And thank goodness, because their catfish was amazing, collards were great and red beans and rice phenomenal. \nNeedless to say, i'll be back. \nIf you are in AZ and appreciate great soul food, then maybe ill run into you :)", "type": "review", "business_id": "JMZfcwARQ68n7GGsqmtdaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9b53hBDMyNdgwAFce9h6bQ", "review_id": "DcOePbE5pnUnepRvJ6o8HQ", "stars": 5, "date": "2011-11-21", "text": "Best Italian sub I've had. Very nice owners. Just be aware there's no place to sit, so you'll have to get it to go.", "type": "review", "business_id": "T5HYqRADhAL6VPRAacz74Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kVYRVCTyN6kb-HqNOhWDDg", "review_id": "wG-5lF0FGSII6WUj5z-TOw", "stars": 3, "date": "2006-07-23", "text": "Nice resort located in downtown Chandler. The rooms are spacious and fairly comfortable . Chill by the pool and sip on a margarita from the pool bar.", "type": "review", "business_id": "F_sbmpkcdHh5IXwaNLtCMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QHWGKJlwpchGsEURbbSDKw", "review_id": "SV-4U14VPYsKS4cQ45gxFw", "stars": 5, "date": "2012-12-09", "text": "Decided to give this place a chance and was quite delighted. I am vegan and that's an issue sometimes. I tried the vegetable chow mein(medium spicy) and I love it. I get extra broccoli and there is so much flavor in the veggies and noodles. My husband has tried the General Tso's chicken, The BBQ pork chow mein, the mu shu pork and the garlic chicken and he loved them all. The great thing is that this is a family run business and it shows in the food. I highly recommend at least trying this place. it's reasonably priced and there are great lunch specials during the week.", "type": "review", "business_id": "-5rFC4EVrT-v8g1PSEf6Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kp1JDSgCapsBAve4Wd7yZQ", "review_id": "IP5jsaclVaQGGL-a5w5wTA", "stars": 5, "date": "2011-04-19", "text": "I really like this Urgent Care! Don't let their youthful looks fool you! John Altic PA-C and Dr. Brenden McRae are wonderful and very caring! In addition to having Urgent Care they are now opening a Private Family Practice -I can't wait for them to be my primary care physicians as well. Great job gentlemen and staff!", "type": "review", "business_id": "fATj2lCnnjw2GHH4iL0TIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t9dSBPONLTj7dpTsd1sJnQ", "review_id": "QDmPt-z1B4eKpAI94IwcJg", "stars": 4, "date": "2011-01-18", "text": "Very sexy place where people love to be seen. Very pretentious but I liked it! Food is just ok - I have had better!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "gGNAr-cmCQUgA9B0QjVqAg", "review_id": "rYnCTUc8tONR8YFAkOQfeA", "stars": 4, "date": "2008-06-08", "text": "My boyfriend just reviewed this place and although we have never been here together - I thought that I might chime in as well. I really enjoyed this little burger place. It makes eating a burger seem fancy in a very modern setting. I really LIKE the sweet potato french fries....Mmmmm!", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gt0tpFILcaTKZ27-pafRzw", "review_id": "eSTsL8M6AZs5_upE4YikVQ", "stars": 5, "date": "2011-11-17", "text": "So many great accessories and cute clothes! I got my accessories for my Wedding here, and they were perfect. Everything from clutches to earrings, from cute tops to watches, they have everything color coordinated!", "type": "review", "business_id": "3ic0B872Tql7dwO4YRTDCw"} +{"votes": {"funny": 1, "useful": 2, "cool": 4}, "user_id": "7aQvAhgpdXqkTQEp8b8Szw", "review_id": "IzlVs3_HZ3CMyL65tq00gQ", "stars": 4, "date": "2011-10-24", "text": "I have only been here once and it was for a quick drink before heading to a movie but this place is my kind of hang. \n\nIf you are a laid back bar who supports local artists, has a huge selection of boozahol and plays music that makes my heart skip, well then I guess I just love you. Plus, its on the same street as my favorite Jobot Coffee, how could I not like The Lost Leaf right? I really love that it is a really old house turned into a bar. The artist inside me wants to shoot tons of photography there. Perhaps one day I will be \"that girl\" who brings her huge slr camera to the bar. \n\nI will need to go when it is last friday to hear some jams and revisit this gem of a bar. This is the kind of place I'll miss when I no longer live in the PHX.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sLuaWOJNALukrThYzqovzA", "review_id": "z_25idy29nlCXv5id_nRlw", "stars": 3, "date": "2009-03-31", "text": "We went to dinner there on a Sunday and we were the only ones in there for most of our dinner. Downtown Phoenix can be somewhat quiet on the weekends, so this was no surprise. The service was great as was the food. I had a pizza and if you like thin, crispy crust you will enjoy the pizza as well. The music was a little loud for a Sunday dinner, especially since we were pretty much the only ones in the restaurant. I will go again, probably during the week so I can get a taste of what it is like when it is busy!! Overall...decent meal!", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "J-JKiitpCAghyt6vt0qGtw", "review_id": "N6SzZLBcSadEMOcXxbPJeg", "stars": 2, "date": "2012-04-01", "text": "I bought a new mountain bike from them in Dec 2011. The buying experience was great, my salesperson was very knowledgeable and they had the bike built in a couple of hours. \n\nMy problem was the included 90 day tuneup. They didn't do any of the work that needed to be done and gave the bike back to me with my brakes rubbing, gears not shifting correctly, and wheels that needed to be trued.\n\nAfter spending thousands of dollars on my bike and accessories I expected more. They only give one tuneup at Landis (less then many of their competitors) so I wish things would have been done correctly. I will be bringing my bike to another shop for service in the future.", "type": "review", "business_id": "s-52LFeqr9ZJZyH8nIBG5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "gkVupbASJchEKczvnj5U3g", "review_id": "yBdRby6KNj8ILxjrg-0Zvw", "stars": 5, "date": "2008-12-22", "text": "Cant say enough good things about Sens. Excellent food and excellent service.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DtTuVmtooVyMnGhwPrzLww", "review_id": "5GkFWeBdifcicDtyc4XjOQ", "stars": 3, "date": "2009-11-16", "text": "Thought Saturday night would be busy at 6:00 PM, but to our surprise it was just getting started. We don't like to go there too often because it seems that a lot of older folks go there, not that I'm a \"spring chicken\".\n\nThe waiter was efficient, he never told us his name but memorized our order. He made sure we had our drink glasses filled at all times.\n\nWhen he brought out the bread, it was only three pieces of different types: roll, carrot bread and another type. We had to ask for another order.\n\nMy daughter had the Chicken Pot Pie which had chunks of chicken but the sad part, the crust was only on the top, which was golden brown. To her it was OKAY. My wife had the petite sirloin steak which came with a salad and asparagus. She ordered it medium rare and it was a little too pink, but still eatable. My order was the Lamb Shank on top of mashed potatoes and asparagus. Love asparagus!! The lamb was okay and portion was just right. The sauce that was poured over the lamb was like beef stew gravy with carrots and celery. The sauce was a bit salty for me but bearable. If you looked at the lamb shank you would mistaken it for a turkey drumstick.", "type": "review", "business_id": "EAMPV2fgs9cU21MXOgv3Ig"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "mwycDGfMqx5WcP5B5_SFpg", "stars": 4, "date": "2010-02-09", "text": "Coming from a place and age where the most exotic ethnic food was considered to be Taco Time, I have spent many years experimenting with all kinds of different foods. One of my favorites is Indian food, and thanks to Microsoft and other tech companies, who use workers from India, there are many more Indian restaurants now scattered throughout the country. I am not an expert on the food (in fact, until recently, I never understood why Bollywood movies were always playing in Indian restaurants). But I do enjoy it, and try every Indian restaurant I can find.\n\nI started going to Indian Paradise several years ago, and loved it. It has a nice interior, and the servers are very nice and helpful. I always seem to come in the early evening, before they are busy, and I always feel somewhat spoiled the way they treat me. I love their masalas, curry, and naan, and have, of course, tried all of their Indian beers. I also find the different tandoori dishes delicious.\n\nI might note that I have never made it to the lunch buffet - I always seem to be golfing at that time so I'm just never in the area . But it is on my list of things to do.\n\n***Bollywood - Bollywood is the name given to the Mumbai-based Hindi-language film industry in India.The term Bollywood was created by conflating Bombay (the city now called Mumbai) and Hollywood. Bollywood films are usually musicals. Few movies are made without at least one song-and-dance number. Indian audiences expect full value for their money; they want songs and dances, love interest, comedy and dare-devil thrills, all mixed up in a three hour long extravaganza with intermission.", "type": "review", "business_id": "xEg0-xrQywU5K-WQO7cy0w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g4uw_h8-3HKyZm6jES85eg", "review_id": "OM5Tqn8BFSNC92SIhFNgzw", "stars": 5, "date": "2012-03-09", "text": "Okay, you might be asking yourself \"who reviews a Taco Bell? or even looks up reviews for Taco Bell?\" Well, I would ask myself that if I were you, but here we are.\n\nThis Taco Bell is awesome. They have really nice and friendly people working for them, and my husband and I would eat inside because we liked the service. We lived a block away, and came every so often over 3.5 years and it was always the same. We appreciate that kind of good service, and it's not one you would expect to get from a fast-food chain.", "type": "review", "business_id": "nWJ55k8utQHrDqT_n7nYTg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "WRY-wk7t2u7xxrIwWbQu0w", "review_id": "6bKPk5bXWhfthPXf_TsIaw", "stars": 4, "date": "2009-03-17", "text": "Tott's is great pan-Asian food for a very reasonable price. \n\nOne day at work one of my co-workers asked if I wanted to go out to lunch. I agreed and we set out. We each got 1 veto. Hers was Panda Express, mine was Kyoto Bowl. We kept driving and she remembered Tott's, and I've never bothered going to Panda again.\n\nGreat food and great service. The owner is a small Asian man who smiles a lot and always wants to know if he can get us anything else. I see him every time I go.\n\nEveryone I go with loves their orange chicken. It is very tasty, but a little on the sweet side for me. I like a spicy dish, so I go with the Malaysian Curry. Chicken, red curry, fresh veggies, fried rice. Amazing.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8EefXq-OSIKSqzyrpDNJMw", "review_id": "l2evqKZLWTgTh8kDBiw00w", "stars": 2, "date": "2012-01-12", "text": "2.5 stars\n\nThe short: Open and clean setup with friendly staff, but it's basically just-ok carby kid food.\n\nThe long: On the south side of Thomas, just west of 44th St., turning left into the lot can be a bear during peak traffic, but it's otherwise fairly accessible for people driving in from the west or walking up, like I did. The inside is wide open and clean with plenty of chairs and tables that were just a little too cluttered around the restaurant floor plan. Otherwise, it doesn't stick out much from other fast food joints. I went during the middle of a somewhat busy lunch period, and who seemed to be the head cashier loudly greeted just about everyone who walked in the front door on the other side of the restaurant. My cashier was friendly and quick, though he seemed a tiny bit frazzled by the small rush. \n\nI ordered The Box combo and a lemonade to go and headed back to my office a short 5-minute walk away. I hoped the freshly squeeze lemonade would be awesome, even if they did charge only about a dime more than fountain drinks for a regular. Although I could taste the lemon, the drink was so sweet, it may as well have been from a mix or carton. The Box comes with a small container of sweet coleslaw dressed in a lot of mayo, a slab of soft-in-the-inside, perfectly browned-on-the-outside toast, somewhat slightly crisp, thin crinkle cut fries, a container of Cane sauce (which tastes like burger sauce), and, of course, four chicken strips. Unless you're me and you get only three chicken strips . . . or two smallish chicken strips and one big chicken strip that maybe they counted as two, but really, halfway through the meal, you're so carbed-out full that you don't miss anything aside from the extra dollar you paid for that extra chicken strip. The strips were fine. It was real chicken, and true to advertising, it was fresh. Sort of crispy, but not as crispy as I'd hoped, or even expected. Tender and moist enough to not be bad. But not special. All of it was pretty one-note. I can't even tell you what part of the meal I liked best . . . maybe the toast. Coincidentally, every time I took a bite of that toast, I'd think, \"This is the most random slice of toast ever. What's it even doing here?\" \n\nSo, it's fine if you're like me and want to try every new eatery that opens near my home or office and appreciate the novelty of places like this, but personally, I won't be making a return visit.\n\nEdit: I almost threw my drink cup away before I noticed the giveaway pull tab on it--I won a free slice os Texas toast! How do you like them apples? =)", "type": "review", "business_id": "w7SrsFV4FL04bhQr-B6-4w"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "dz86iwnTvxiZJ2IImOZ9XQ", "stars": 2, "date": "2008-02-27", "text": "This is a club -- not a lounge, or supper club.\n\nI was drugged and dumped here by friends a few months ago (Fri, around 10pm)...\n\nIt is too loud, too packed, and drinks cost too much. I am certainly not one of the \"beautiful people\" who belongs here...\n\nGood luck!", "type": "review", "business_id": "KwGQqUCpHHhOhVqyOL2QTA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wj53JTTIld0AjIolfg9v2Q", "review_id": "wlCFmI4CWmLOMfs2oBrLtQ", "stars": 5, "date": "2012-07-21", "text": "It is great. Great ambiance, food, and service. I love the rooftop bar too.", "type": "review", "business_id": "gFJtzwGmDTABRwL2F8GsSw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "FBnMnm-1YbcJynWD4Wi28A", "review_id": "SG71yfnn3XkQ_UrplbE6HQ", "stars": 5, "date": "2011-08-27", "text": "My daughter's 128i BMW was horribly keyed this summer and we found Harvil's through State Farm Insurance. Fred Harvil was very friendly and helpful to work with and we really appreciated his service. She dropped her car off on Monday I believe and she had the car back by Friday. His rates were very good and ended up being lower than we had expected, and what we liked about him is that he was very honest. My daughter had accidentally backed her car into a pole earlier that summer and hadn't gotten it fixed because she kept getting quoted around $500 and couldn't do that, but because Harvil was already going to fix the rest of the car he only charged her $100 to repair the back bumper which was really nice. He also set us up with a rental car for her through Hertz that she was able to leave there at the shop and have them pick up which was great and convenient. \n\nAll in all, Fred Harvil was very pleasant to work with, timely, and left her car looking like new. Definitely recommend!", "type": "review", "business_id": "Rga1ZkAyy-mFQmICQ2akVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b48NAHm3R12f7nRJXHVnCw", "review_id": "k7ekJEQuMt3xL_KshZz-GQ", "stars": 2, "date": "2012-01-03", "text": "Just ok good in a pinch but not best! I have learned to like that spicy sesame chicken, I don't like it leftover though. They also get points for very good behavior and treatment when I called in my order to the wrong location, they called the other store and made my order at the correct location.", "type": "review", "business_id": "L19_1cG2ALVjdBQ456h26A"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "q6ZibtwgjaxmCHTR3fZdfQ", "stars": 3, "date": "2008-04-07", "text": "I wouldn't go here. In fact, I looked into attending Ai of Phoenix for a graphic design degree and decided it was not the path I needed (or wanted). The decision came, though, after a couple months of trying to sort things out with them. I applied. I met with a career counselor. I had to submit some more paperwork. I went on a tour. I then was sent to meet a financial adviser, who had to be barely 18. That's when I realized that the majority of these students were young, inexperienced and knew to college life. I, on the other hand, already had a degree. I was looking to combine my past experience with a design degree to enhance my career. \n\nI also realized Ai isn't willing to working with professional students. They don't take into consideration your work schedule as much as they should, especially if they want to appear accommodating and understanding to students who are truly committed to going to Ai. Case in point: In order to get the \"a-ok\" to take only 9 credit hours a semester, I would have had to get the permission of the Graphic Design Faculty Advisor - or something. Ai really pushes a full-time schedule on its students, even if they offer evening classes. Silly. \n\nPlus, I didn't like being treated like an idiot. I mean, do I have to tell you over and over again that I already have a degree, that I know what to expect from paperwork and financial aid? Can you not see I'm annoyed at some 18 year-old who can't operate a computer to tell me what my cost would be per semester? Can you not tell I'm irked when I make known I'm on my lunch break, and I'm told it'll be another hour before we're finished? I don't like somebody wasting my time. True, I can be impatient. But this was ridiculous.\n\nThat's when I decided this place wasn't for me. Sure, I've heard great things about it, but the people who have gone here have told me I could have gotten a comparable degree and built a better portfolio somewhere else. \n\nEnough said.", "type": "review", "business_id": "O5Qf0CfbIG6r-g55KO7TQw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "U8ayzBXrBzgjdrCYOzwNOg", "review_id": "xCa9A2FhTlilkemseYNF8w", "stars": 5, "date": "2009-07-09", "text": "Introduced to D'lish today by a friend. I'd already had breakfast (although the menu looks great, lots of delicious sounding, healthy options) but he suggested a Chai coffee. I don't usually like Chai Tea, but I thought I'd give the Chai coffee a chance based on his recommendation.\n\nWhen I ordered, the server suggested a \"Sexy Dirty Chai\", which as lurid as it sounds means adding vanilla. The Sexy Dirty Chai Coffee over ice is hands down now my favorite coffee drink. The place is tiny, has a really cool, funky interior and also has a drive thru- a true local gem. The service is friendly and energetic and I plan to start my day here again soon :)", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NSu-sX5ZAcnWN5Sy0QDohg", "review_id": "f5Nkgg5Drd6fJyoZA5mkIA", "stars": 5, "date": "2011-02-16", "text": "We love this place. We got Miss V washed up with the highest package with an extra leave-in conditioner for her super shedding coat AND she got some hand baked peanut butter doggie treats (all for $22). SO worth it. Plus: all the employees are SO nice! And now that they are starting to carry her dog food (Blue Buffalo), we'll be headed to Wag N' Wash for her chow too. \nLOVE.", "type": "review", "business_id": "lBRCMN7wNn-BKUsaOXJRow"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "1S7XdhbZWR17Wy4TBsIzaw", "review_id": "JUabJh22w70BKsInPMSErA", "stars": 4, "date": "2007-07-13", "text": "You can get drunk and get your nails painted. Huh?\n\nIt's true, and it happens on Mondays. For $10, you choose any martini you want. Then, you drink and chat until it's your turn to get your hands worked on.\n\nThe chocolate martini I ordered was strong and smooth. Definitely not watered down...just what the doctor ordered. \n\nOkay, so the manicure wasn't something you might get at a spa, but it was a fun little silly girly thing, that I personally think is a great idea. Still, for the price of just the martini alone, you get shiney new nails. Not a bad deal.\n\nThe people watching is quite interesting as well, I even struck up a conversation with a humorous dad of a popular comedian.\n\nBring the girls and have some fun.", "type": "review", "business_id": "ssmiBFaHbH_k97GsuQCOIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KXoRjWfTxPT6LFkOdK6ovQ", "review_id": "RX0WZ_hWkpdPJr4C1S8c_Q", "stars": 4, "date": "2009-05-19", "text": "We absolutely love this place! When we get out for date night, this is where we go. The waitstaff are great and the food is delicious. I always have a hard time deciding what to get because we love it all....from the fried okra to the jambalaya...If you're in the area this place is definitely worth checking out.", "type": "review", "business_id": "BRnnFoWl3iFydC5TwuGwgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t3qsjX7YCa3z0vO8mODmQQ", "review_id": "NjY70W7-PXG04WK-TX670w", "stars": 4, "date": "2011-11-27", "text": "I love this store for years now. I discovered it here.\nThe candles are wonderful. I love the little travel sampler kit. \nThe yuzu bergamot moisturizer is great. \nI enjoy the soaps. \nThis is the type of store that you just go for the product and know it is just going to cost more. Honestly it is not the much for many items: The little kits like the:\n- cranberry orange body wash 2 oz\n- cranberry orange moisturizer 2 oz\n- mint thyme body wash 2 oz\n- mint thyme moisturizer 2 oz\n- bamboo creme body wash 2 oz\n- bamboo creme moisturizer 2 oz\n- packaged in a reusable zippered bag\nall for 25 bucks. \n\n clove soap 2 oz\n- honey almond soap 2 oz\n- lavender lime soap 2 oz\n- lemongrass soap 2 oz\n- oatmeal lavender soap 2 oz \n- rosemary soap 2 oz \n- rosemary & peppermint soap 2 oz\n- rose tangerine lavender soap 2 oz\n- seven seed lemon & rosemary soap 2 oz\n- vetivert & grapefruit soap 2 oz\n- wild mint soap 2 oz \n- yuzu soap 2 oz\nfor 38 bucks.\n\n- bamboo creme moisturizer 2 oz \n- mint thyme moisturizer 2 oz \n- lavender lime moisturizer 2 oz \n- yuzu bergamot moisturizer 2 oz \n- cranberry orange moisturizer 2 oz \n- sweet almond & sea kelp moisturizer 2 oz \n- zippered travel bag \nfor 25 bucks..\nWhy yes you just read my Stocking stuffers for myself that I just sent my husband. hehe :D \nWorth trying. You will find a favorite. \n\nQuality of their ingredients from their website:\n\"...using only pure essential oils, vitamins and antioxidants, and rare fruits and herbs - and never using synthetic fragrances or colors. Now, we're also sourcing organic ingredients when possible, and are on track to have all of our products be paraben-free and SLS/ALS-free by mid-2010. \"\nService: She was very nice and was even happier when she saw I was a little shop happy when I started putting everything on the counter. hehe.\nFrom St. Louis and loved it!\nTLDR: The products are a favorite of mine. Good products and good service at this location. Great outdoor mall.", "type": "review", "business_id": "mAMeCLoTQUf3Zb808deTYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qaKzkFaZtqWIXCGQ-GStQw", "review_id": "Et1Z9pFIo-k-20fHcraCTw", "stars": 4, "date": "2011-12-13", "text": "We like it. L and I 2nd date was here, and we made out outside. It was hot and sexy. Do we remember the wine? We love wine,but I remember the kissing. Kissing beats any 97 point wine. D.C. Ranch overall, just has not made it, for restaurants and retailers when I lived in Az. This has nothing to do with the restaurant just an overall impression to yuppie?", "type": "review", "business_id": "YQ19y3LYgmAHfgNFa01vyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZUx-B52hGRhmeUDVukmjrg", "review_id": "nQDYgw9sVtvBzgav3E4ZDA", "stars": 4, "date": "2012-07-16", "text": "This is a delicious neighborhood restaurant!\n\nI can't speak to their sushi much because I have become such a fan of other items on the menu. The handful plus times I have had sashimi here it has always been good.\n\nNow on to my favorites! The Asian nachos are a must get. Instead of tortilla chips they use wonton chips. Topped with a yummy cheese sauce, salsa, sour cream, and guacamole. Their guacamole is a mix of avocado and edamame. Yum! Add some chicken and these are super yummy and great for sharing.\n\nDuring my most recent visit here I discovered they have a new edamame. Bun Bo Edamame. It's very spicy. Too spicy for my tongue but the friend I was with loved it.\n\nSaved the best for last - the Mojo dessert. I am not a big dessert person, but I almost always order dessert here. It looks like a sushi roll. You get rice krispy treats, rolled up with Nutella, ice cream and a brownie in the middle. Delicious!!!", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 7, "useful": 9, "cool": 8}, "user_id": "8V1itryD-OFPou8qE3d90g", "review_id": "nHuVrrxq2NNsJBLudLRtGg", "stars": 5, "date": "2011-05-29", "text": "It is almost impossible to find a great sandwich shop that actually has good grinders and sandwiches. Well my search is over. I stumbled across this little shop and felt right at home in New England. Being from Connecticut, I was so excited to see all the great food on the menu. I had the Vermonter and it was bliss at every bite. The owners are extremely friendly and you can tell that they want you to be very happy with their food and service. Great food and great service, you will not be dissapointed....", "type": "review", "business_id": "eJpr6Ks8pr4bmvDVPTN-Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bmjmYa_CpKcqS_8YV9v7OQ", "review_id": "LKURql-RV7IWuHmUiQujwQ", "stars": 5, "date": "2012-03-08", "text": "LOVE LOVE THIS PLACE! always need to find a reason to drive so far to Chandler:-) so fresh, soup delish, and sauces yummy!!! BYOB, and casual...feels like my grandmas:-)", "type": "review", "business_id": "28ycqW56i70yM_C0ejNv9w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "eIaf4VpOnOlFMYfI4ulp8w", "stars": 3, "date": "2010-07-19", "text": "If I hadn't recently found Yogurtland in Scottsdale I would be raving about this place. Unfortunately it is 45 cents an ounce and the other place is 30 cents. Both have a nice variety of flavors but this place is missing the water cooler. You do get a bit sticky from eating your treat. There is something they have that yogurtland doesn't have. They have marshmallow and peanut butter in squeeze containers which is to die for!!", "type": "review", "business_id": "TdNIQQcfslKjkey4-yAlKg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "tMFDbi8H7uqCdr9hArxz4g", "stars": 4, "date": "2007-12-29", "text": "Imagine the scene on a Saturday morning in my house during college bowl season...\n\nHusband pulls out jalapeno flavored Cheez Its (which is a totally different story in and of itself), to which I say \"oh, if you're hungry let's go grab something and then exchange Christmas gifts at the mall.\" Husband looks at me like I have just committed a murder. I convince him that it's not really THAT far away from North Scottsdale and that it could be fun.\n\nAn hour later (with no traffic might I add), we arrive. I have to say that we both looked at each other with that \"this is it?!?!\" face, as I think we both envisioned something more like The Farm at South Mountain. Although the atmosphere isn't quite as quaint, QCOM is still pretty darn cool. We each ordered a soup (cream of tomato and cream of mushroom), which were pretty good. My husband had an Italian sandwich (the \"kalamata,\" I think), and I had a grilled vegetable panini. The food was filling and tasty, and it was really fun to eat outside and enjoy the crisp \"winter\" weather (if you can consider 50 degrees winter). \n\nWe didn't take the tour since it seemed sort of silly (it just consisted of a short lecture outside and then a quick tour inside), but we did enjoy the samples set about the store....flavored pistachios, olives and tapenades. Overall, it was a very pleasant place to lunch, although it took us twice as long to drive there and back as we actually spent on the premises.\n\nI guess we were supporting the local economy by visiting a local farm, etc....but the irony is that we wasted a whole lot of gas in our SUV in the process. Oh well. It was a nice Saturday in any event, and I'd return.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "BVZ7iTR_nI3jzdQidze1UQ", "review_id": "fzsuDEbbifz8kstKT_c7pg", "stars": 1, "date": "2008-03-03", "text": "Not a fan. I was in the Biltmore yesterday shopping with my dog and decided to go and buy her a few treats. As I picked out a bag of about 20 baked treats, my total came to be about $3.00. I did not have any cash on me so I took out my \"plastic money\" the debt card and they wouldn't take it telling me that I needed to buy a few more things because they have a $5.00 minimum. What store has a minimum nowadays??? \n\nThe customer service was also very lack luster. The dogs of the store employees were jumping on me which I found a bit annoying. \n\nNeedless to say a store that I used to like, I will no longer be back. There are so many other great dog stores...", "type": "review", "business_id": "-ev01HlCKf7CYsh8ZXG_7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r6W1RK67Gmfts4HUacNsBQ", "review_id": "JFAV_ng9h2a296a5BDB6KA", "stars": 1, "date": "2012-04-22", "text": "Wow..... Not in a good way\n\nThe sashimi was good because all they did was cut it, but that was it.everything else made me wish I went real Chinese! Not Chinese making sushi, culture theives!\nP.S. snow crab is not the main ingredient to every roll!", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U_fAIe7CUaGMejwSdNvMgw", "review_id": "khNnDoD5rGttqTza9KxvZg", "stars": 5, "date": "2011-03-11", "text": "With our regular Indian place converted to buffet and my lunch companions refusing to go (don't tell them, but I would go anyway), it was time to find a new Indian spot for the work lunch rotation. We were on a mission and I was trying to figure out whether Jewel would be added to the list of acceptable lunch haunts. After managing a circuitous route to the top floor of a parking garage, we navigated a maze like structure of corridors to find the restaurant. Travel time was starting to negate Jewel from the list. The lunch menu was small, and we all ordered the thali meat combination. After a modest wait time the food arrived in an array of metal containers and was delicious. I hope we go back, but majority rules.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XmpqbfSu9X7mjwJGUXTrAQ", "review_id": "d_IcD1Ho5uZaV6e0A02nNQ", "stars": 1, "date": "2010-06-10", "text": "I used to love Banana Republic. I stopped by at lunch to buy a few outfits, I wasted quite a bit of time in this store...to an frazzeling degree. The choppy layout of the new store is annoying. The clothing line changed drastically so you look like you just came from an overpriced (and cold) beach. I was looking to dress sharp and professional, not wrinkled and hap-hazzard. I wanted short sleeves, not flimsy spagetti straps, long sleeved blouses and SWEATERS (hello..its JUNE...and ARIZONA.) Banana Republic's new format and collection is a huge FAIL.", "type": "review", "business_id": "-cKWUXE-16M1R15UOt6sqQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DfJ8B8T1fgNA6_ZT-aeUlQ", "review_id": "Y1nLxoOeJkilWWnzUEIvJw", "stars": 5, "date": "2010-12-27", "text": "Kara is absolutely wonderful! She does a GREAT waxing and I am going to have her do a facial for me very soon. \nThe atmosphere is very relaxing and Kara is an absolute doll of a person. I would highly recommend her!", "type": "review", "business_id": "bjUc31sxZIda_Zmo5CVk7A"} +{"votes": {"funny": 8, "useful": 10, "cool": 8}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "eg2F4JgZ3kUEU-taW1gBGA", "stars": 2, "date": "2010-01-31", "text": "The Mill Avenue Farmer's Market is the bantam weight of farmer's market's in the valley. \n\n\"Weighing in at 113 pounds, in this corner of the valley we have MILL mill AVENUE avenue FARMER'S farmer's MARKET market! Let's get ready to haggle!!\"\n\nWhen we arrived around 9:45 am there were about 8 stalls, one with produce.\n\nDiminutive comes to mind. \"The Mill Ave. Farmer's Market was reported to be rather diminutive, with only a smattering of stalls and little produce to be found.\"\n\nPetite. The Mill Avenue Farmer's Market would need a little padding to run with the college girls, know what I'm saying?\n\nPee Wee. The Mill Avenue Farmer's Market had a very good game today at the Kiwanis Rec Center and is now celebrating over Gatorade and granola bars in the picnic area.\n\nYou get the idea. We left to get some coffee and returned about a half hour later to find 3-4 more vendors. There was a honey vendor, hummus, cookies, produce, a couple sandwich places, flowers...and the one place with produce.\n\nI'll give it some time as they are new. I'm hoping in a month or so they will have a better turnout of vendors.", "type": "review", "business_id": "svxvY11GxtzPDzDef7igZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hO4UkN8RniS204O1PdxoBg", "review_id": "0VXwF7zflsgdAdPKBxC2Qg", "stars": 4, "date": "2007-04-10", "text": "This place is sweet, I highly recommend it. When you walk in the door be sure to look down at the floor because you're standing on a fish tank - pretty cool. The decor is very trendy and the atmosphere is chill. We had a drink at the bar on a Weds. night before heading out to the patio for dinner - not overly crowded which was nice. The sushi was delicious - quality pieces and very fresh. My only complaint was the bathroom sink - while very cool looking, the faucets don't work unless you slam the handle in and then the water just sprays out sporadically. This was a little messy but the rest of the experience was great.", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "F0ecO_eKomXZN1iGr0K7pw", "review_id": "yXYkLGX052_OGbgffAw5Zg", "stars": 2, "date": "2010-01-04", "text": "So, I've been going to to Allure for pedi's for about a year. They're located very close to my house so it's mainly been a convenience thing. The techs are hit and miss. Some are awesome and really do a good, thorough job. But overall its usually a pretty neutral experience. The last couple of times I went in they were just rude. The girl who did my last pedi (about 2 weeks ago) got rude when I wouldn't accept her upsales......did a sloppy job on my polish and wouldn't fix a mistake when she made when she slipped on my flip flop. On Thursday (NY eve) I went in for a mani....the sloppiest mani I have EVER had. She soaked my right hand for all of 10 seconds before starting my cuticles. When I flinched when she cut my finger she slammed her tools on the table, grabbed the water bowl that my left hand was still in (slopped water), stood up and said, \"No manicure, polish change\". When she came back, I tried to explain I did want a manicure, not only a polish change. She raised her voice and said that I was too jumpy \"Everything hurt you\". Well, she did my polish....horrible job!! About 1/4\" from my cuticle....it looked just dreadful. While I was waiting for my polish to dry there was a man giving another women a pedi......she told him 3 times (!!!) he was hurting her and he just laughed and said \"it tickles\"?? She said NO, it HURTS. I'm done with this place. There are plenty of these cookie cutter shops around.....They need to re-check their customer service skills. This was just wrong!!", "type": "review", "business_id": "ugroYjkJa2C68lVymfd2Zw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QQltfvEq-YYN7roLQarVsg", "review_id": "a0n3pnYyVb_7z_xncoI7rQ", "stars": 4, "date": "2012-03-22", "text": "I went here for happy hour with a long time friend. I wanted to try something new and Switch totally fit the bill.\n\nFirst off, their happy hour is A-mazing! I had two glasses of white sangria that were just perfect. \n\nMy friend and I shared the cheese and fruit plate because it was on special. It was nice to try everything, and since it was on special it made everything taste better.\n\nFor my meal I had your traditional cheeseburger, and it was very good. I had half to take home which made for an excellent lunch the next day. \n\nThe only thing about the place that was a little strange was the crowd. I expected for having such an awesome happy hour it would be busier, however it was kind of dead. I even saw a group of people be seated and abruptly leave. It was kind of strange. Perhaps it was just an off night. This is definitely a place I would go to again!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iC7NVBmkzRl4rKEU5MWS0A", "review_id": "HXEYXZXPqUdlErQgckfHUQ", "stars": 5, "date": "2012-03-29", "text": "Never disappointed with this place!\n\nGet the brisket, get the pork. Get the beans. They're bangin'!!!!!! The sauce is delicious the mac and cheese is pretty good, the cheesy potatoes are good too. The real standouts I would have to say are the brisket and the beans. Do NOT skip the beans. Trust me. \n\nI'm not even a meat person but I do like Joe's because everything is cooked just right. Order extra of everything and you will be glad you did. Makes for great leftovers. Don't forget to get some BBQ sauce too. Personally, I'm not one to douse everything in BBQ sauce, just a little dip here and there, but the sauces are really good. \n\nEven my young niece and nephew enjoy the food. It's simple, down-home good food even the pickiest eaters can enjoy. I've never actually dined-in at this place. I've always called in an order for pick up or ordered right at the take-out window. They are pretty fast.\n\nMy future father-in-law wants me to choose Joe's to cater our wedding rehearsal dinner. Did I really ever imagine in my wildest princess wedding dreams that I would choose BBQ for my rehearsal dinner? Not really, but Joe's is excellent, and we're heading toward a laid-back wedding theme anyway to take it easy on our many out-of-town family and friends. I am sure they will all love Joe's and I can't wait for them to try it!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QGzRZoWOM1PN6oIYFDnfgA", "review_id": "Y-rWOJDgKUmOGaKe1Hz5uQ", "stars": 2, "date": "2010-01-26", "text": "I went to Wokee Express tonight, per my friend's suggestion. If I'm craving Chinese food, I typically go to Taste Of China. However, I wanted to try something different, so I asked around, and was directed to Wokee Express.\n\nThe price of the food is great. At dinner, I got a large chicken plate combo. \"Combo\" means it comes with rice, egg roll, and crab puff. All of this only cost $7.75.\n\nHowever, the chicken was over-cooked, and the batter the chicken was fried in was soggy and mushy. There were no carrots or peas in the fried rice, which is a huge deal to me for some reason.\n\nSo overall, if you're on a budget and want some good Chinese food, go to Taste Of China.", "type": "review", "business_id": "ETg80zdzuBm7gBfW3UoMIw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "Dp99ci5IrwLkEflMEfguIQ", "stars": 4, "date": "2010-05-19", "text": "I can dig! Food here is very good. I believe everything here is made from scratch the soup to the sauce cause they taste wonderful. I go for lunch every now and then and I've seen this place slowly pickup business. It has that deli-sport restaurant feel, but the food brings it home. I appreciate the usage of real plates instead of paper or styrofoam plates -- very environmental friendly! I would definitely recommend this place for lunch - 1/2 sand, their pastafagioli soup = Yum! & drink.", "type": "review", "business_id": "JvJjaTJCyUGu5SDpoJWvZg"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "Qe_1COeOqBrCQ4IhLw9Glw", "review_id": "kZkQhOEj0OTdfNvjO43J9g", "stars": 4, "date": "2009-04-20", "text": "5 words....\n\nHAPPY HOUR ON A SATURDAY!!!\n\nYes, every day actually! from 3-7pm and a late night happy hour too starting at 10pm!! How can that be true??? Well I guess in Arizona they know how to party! $11 pitchers and $3 pints, yes it could be a little cheaper, but hey it is a happy hour every day of the week! And their beer is really good! AND they will give you FREE samples of all of their beer too!!! This is like brewery heaven!!!\n\nTo top it off, a group of people came here in Crank or Drank shirts on their first ever biking and drinking tours and this was on their tour for good reason! Their Hefe is awesome, complete with lemon wedges of course, and their Sunbru was so so refreshing on that hot day in AZ! Adriana and I definitely had our fair share of pitchers, along with an order of their beer battered fries and their specialty ice cream cake! Well, that was actually roopas, and just an FYI, oreo crumb crust and Hefe don't really mix......so save the cake for when you are done drinking ha ha\n\nBut the waiters here (the ones that don't look like they are 15!!!!!) are helpful and friendly and nice, and you will definitely get carded here, even though literally I actually felt old here since all the girls look so young! Some of them must have had workers permits I swear!\n\nThat aside, as long as they can bring me good beer on happy hour prices, I am sold.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "hdARWhh0Jar1Ht-5jQ4OHw", "review_id": "xDAgYumh0O51n8uqj5o7sA", "stars": 1, "date": "2010-09-20", "text": "I think chef Silvana Esparza first located the restaurant here on CALLE DIECISEIS (she renamed the street all by herself, apparently) to take advantage of cheap rent. There was no way she was going to locate her Scottsdalish restaurant actually in Scottsdale. So, people from the wealthier areas - and some First Friday urban hipsters whose parents foot their bills - make the trek down to CALLE DIECISEIS to partake in everything Barrio Cafe. And they think it's cool that they are going there, past the check cashing places, the people waiting at the bus stops and the \"rawness\" of this part of central Phoenix.\n\nAnd what is everything \"Barrio Cafe\"????\n\nPretentious service.\nLOUD dining room.\nNO parking.\nFusion food that is about 10 years past its prime.\nHigh prices.\n\nLet's talk a little about the last item on the list.\n\nBesides using vulgar language in her YouTube videos for pseudo social activism, Esparza seems to have forgotten her own humble upbringings. It's ironic that the very people who live on and around CALLE DIECISEIS cannot afford to eat in her restaurant. The Mexican immigrants and their sons and daughters who do the cooking, the cleaning, the landscaping and all that for Phoenix are not welcome at the Barrio Cafe. I know that this is not a taco truck, but there is some overwhelming irony here that you locate your restaurant in a working class area and supposedly have sympathy for the plight of the downtrodden and the neighbors can't even eat at your restaurant. I guess that's capitalism. Like that new car, by the way.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 5, "useful": 8, "cool": 8}, "user_id": "lHhUQlEu8ZFW6fyu2rwBBQ", "review_id": "IdOyH6WqsEiL2DS8gcYHUw", "stars": 5, "date": "2009-05-10", "text": "Hospitality Suite Resort was my home away from home this last week and although they are not a posh spa type resort, they were filled with heart and gave me everything I needed in the seven nights I spent there.\n\nWhy did I chose Hospitality Suite Resort? I needed a place for seven nights (eight days) while I worked on my qualifying exams and worked on my dissertation in Phoenix. I had two basic needs, a place that was cheap and had free internet. That they had a daily breakfast was a plus, as was laundry facilities. They had the best price for all these options, so I jumped.\n\nAfter a flight to Sky Harbor, getting a rental car, driving to Scottsdale, I had a hard time finding the hotel. I finally asked another hotel on Scottsdale Ave. and she said, \"OH yeah, the numbers are funny that way!\" Ha! Very funny. After that first time, I didn't have any trouble finding my way back to it again. My morning commute to the Hokokum campus was very straightforward. I was pretty much set.\n\nI was greeted by a fellow named J.J. who talked very fast (or maybe because of my travel and the time, I was processing very slowly). He gave me a room on the third floor that was \"overlooking the pool\" (P.S. all rooms are \"overlooking the pool\"). He told the best place to park and showed me on the map where the elevator was. It did take me awhile to find the elevator with my stuff in my hands, but eventually I did. There were some British/French kiddos hanging out in the poor area, whooping it up and there was music coming from the lounge, but it didn't matter, I was so tired, I could have fallen asleep in a airplane (oh, wait, I did that too!).\n\nThe next morning, I took in more of my surroundings. My room had a lovely little kitchen with all the necessities and a nice large bathroom with a small stall shower. The was a lovely full-sized ironing board and steam iron. There was a coffee maker in the kitchen, along with a toaster, microwave, fridge (small) and hotplate. There was a nice reading lamp over the bed and an easy-to-use clock radio. There was a desk as well as a table and three chairs. The king size bed was comfortable, but not overly so. I certainly had no trouble sleeping while there, but I didn't have a trouble getting out of bed either. Perfect.\n\nBreakfast was a choice of five breakfasts. The menus were laminated, meaning the that choices did not change, but that was ok. I chose two eggs, sausage, hash browns, whole wheat toast, oj and coffee every morning. By the second day, I was greeted by name. That was a nice touch, because I felt that I was very very far away from home.\n\nInstead of eating out every night, I went to Food City, just down the road and bought supplies to heat up in the micro. I bought sodas for the fridge and micro popcorn. Ahhhhh... all the comforts of home. Because I was up late working on my classwork, the partying didn't bother me. The pool was a magnet for people, even at night, because it finally was cooling down. I didn't go to any of the happy hours (friends don't let friend write on their dissertation drunk), but they sure looked like people were having fun!\n\nDoing laundry was a little complex due to my own non-reading of the map. I made this huge circuitous route because I didn't know there was a laundry room in the part of the hotel I was staying. Next time I will know!!\n\nAll in all, I enjoyed my stay at Hospitality Suite Resort. Next time I would bring less clothes because of the superb laundry facilities (you don't need to bring quarters because you buy tokens at the lobby). Next time I would remember to bring a swim suit because those pools looked sooooo good!\nYep, next time I would stay at Hospitality Suite Resort, it's got it all.", "type": "review", "business_id": "PqJwKYHU_eHjw0q0NlULJw"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "nYa0GRbjizzzKoVOm9-lsQ", "review_id": "8QyLabJblJJQRx1Uqmgsvw", "stars": 4, "date": "2009-05-12", "text": "Tucked away on a side street off a main drag, we found Mosaic. Surprisingly fancy and expensive, with an elegant feel, almost like it's your parents kind of dining experience.\n\nLoved the different options for the tasting menus. Focus on seafood and meats. My husband loved the 'What the Foie??' appetizer which had excellent presentation. My sea scallop appetizer had a monstrous scallop that could have easily fed a family of four.\n\nFeeling fishy that night, my better half's halibut was surprisingly salty with a heavy sauce. My steak was good, but nothing special..in fact I was disappointed I'd gotten it. Extensive wine selection, Dutch cheese plate and chocolate hazelnut custard for dessert. \n\nOverall, a pleasurable meal with wonferul service and presentation, but for the price, they could really up the quality of the food. We had a dinner elsewhere a few nights later for the same cost that was much tastier from a food perspective.", "type": "review", "business_id": "45Vj6a0LX4B2a7loTJyb4g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "mu6AXWXmUiE2FVw_pYxHdA", "review_id": "nko0r0v1b9Hz6oaf3_h4og", "stars": 5, "date": "2010-06-02", "text": "I LOVE the pretzels! Wish they would bring back the Asiago Dip, but hey, garlic salt and cabs are 2 of my main food groups. Great atmosphere, can always see a game on one of the many TVs, even when my girlfriend thinks I'm paying attention to her! Milk stout is my favorite beer, but the light isn't bad either. Something tells me the others are good too, but it's hard to get me to stray from my patterns. Oh well, I'll leave someone else to review those. All in all, the food and beer is great, and the servers seem to know what they're doing too.", "type": "review", "business_id": "d7V3ykQHqChv0KtXEanKLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wvcirVJVFhEnEYi8dRu5Ww", "review_id": "NrO91IZlcqnYIn5tYWTU3Q", "stars": 5, "date": "2012-12-05", "text": "I was very impressed with the service and food. St Francis provided a delicious meal and beautiful ambiance that was just right for a group of clients after work.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 4, "useful": 4, "cool": 5}, "user_id": "Y2-KtEL3k8Ai5gLzeIRX9w", "review_id": "_sBjoWMQk-XavBoj6mSJlA", "stars": 1, "date": "2008-11-16", "text": "I've now tried Thai Elephant three times. My first two experiences were solidly mediocre -- nothing was awful, but aside from one delicious dessert (black sticky rice with pumpkin custard), nothing stood out, either. As a recent Bay Area transplant, I admit to being a bit picky, but in my 6 months in Phoenix, I've found several places that more than satisfy my rather frequent Thai cravings (Swadee in Chandler, Thai Lahna in Arcadia, Sala Thai in North Phoenix, and, in a pinch, Thai Hut in Central Phoenix). Until now, Thai Elephant hadn't really done it for me, but since the restaurant is literally 40 feet from my office and since other Yelpers seem to have had positive experiences, I was reluctant to give up on Thai Elephant without giving it another chance.\n\nOn Friday, looking forward to a relaxing night at home, I called in an order for Pad Thai with chicken, Panang Curry with beef (extra spicy), and Spicy Eggplant with tofu (spicy, which I thought would be automatic given the name, but apparently wasn't). I got home, meted out ridiculously oversized portions of the three entrees, and sat down to enjoy my feast.\n\nWow. I don't know quite where to begin, but to say that I was disappointed doesn't begin to cover it. The Pad Thai was about on par with the Taste of Thai boxed dinners you can pick up at the grocery store, only less flavorful; marginal at best, but edible. The chicken didn't stand out as being of particularly low quality, but the noodles were some of the worst I've had at a Thai restaurant (some bites were underdone to the point of being crunchy, while others were seriously soggy).\n\nSadly, the sub-par Pad Thai was the high point of the meal by a wide margin. The Spicy Eggplant was a bland stir fry of soggy, overcooked vegetables and limp tofu. The tofu appeared to have been fried as a large block and then sliced, and a few small pieces of eggplant were thrown in for good measure. The Panang Curry with beef was even worse. Though I ordered the dish \"spicy,\" the curry tasted like straight coconut milk with a few drops of red food coloring thrown in. The beef was the last straw for me; it very may well have been the worst quality, most gristly meat I've had at any restaurant I've ever been to. I tried several pieces, and all were similarly inedible.\n\nI really, really want to like Thai Elephant, but after the experience I had, I don't know if I can bring myself to give it another chance -- especially since I've found so many other good Thai restaurants in the Valley and since the second-worst Thai meal I've had since moving here was at Thai Elephant's sister restaurant, Thai Basil in Ahwatukee.", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_N-DeS909pOyryxC0mMAjw", "review_id": "6iL6Gvd6NRLYt1wFHmb9Pg", "stars": 4, "date": "2010-08-20", "text": "Great establishment and especially for it being a chain.\n\nThe place is clean and has a transparent kitchen allowing us patrons to know that the ingredients are in good standing. The prices are within good range and the seating makes it very convenient for groups.\n\nI like their menu it's simple yet offers enough options to make it an agreeable spot.", "type": "review", "business_id": "TbaAnzOTX2-boTbAp3e8Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9b5TY9v0-RibDNYUDqvDmA", "review_id": "pAaJ34JLxxhjke_ADS6GCw", "stars": 3, "date": "2010-08-13", "text": "I love Matts and feel everything about this place is IMPECCABLE. But unfortunately the small capacity seating and over an hour waiting in line ALWAYS turns me away. Id be around more often if I wasn't wasting my weekends sitting on a hot bench.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "muU7S-YE8D3FM5KgxOtFCw", "review_id": "umXCp4bCpuVIlTI-JXn__A", "stars": 5, "date": "2010-08-24", "text": "I found the food excellent, but keep in mind this isn't typically Mexican food this is Tex-Mex which is a whole different variety. \n\nOur waitress was fantastic, and talked me into getting the melted cheese on the side. It was quite tasty, indeed it has a bit of skin but generally if you cook cheese or milk included products into a liquid quickly it does get one..and personally I didn't haven't issue about it. \n\nThe menu isn't extensive, it would be nice to have a bigger menu but with how accommodating the are, you could probably something off the wall and they'd be willing to do it.\n\nI ordered the bean and cheese burrito, which is delicious, and large. \nIts a fatty, and I loved it. \nWhen asked if they cook with lard the hostess had an immediate answer and listed what they used to cook everything with. I was so happy. Most have no idea, and aren't very polite if you ask. She was very friendly like everyone else we encountered there.\n\nI was told that the Steak was perfect, and mr.hard-to-please was filled up (had left overs) and stayed that way the rest of the night. Which was great. The salsa has an interesting flavor, and I must I dig it. I\"m not a big fan of mexican rice so I didn't partake in eating it, however the fan of mexican rice at the table liked it, (but not as much as the fajitas) \n\nConclusion - Excellent Staff, Great Food (Its Tex-Mex..not just Mex so bare that in mind. There is a difference!) Atmosphere reminds me of some place that would be placed in a Tarantino film. Price is average sit down if not a little high. Expect 2 people = over 30 dollars.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "zLZZpwBNB8hWson5dKXEtg", "review_id": "kVbIIUZMzOtTOY9hmP61Lw", "stars": 4, "date": "2011-08-29", "text": "As many of the reviewers, I heard about Over Easy on Food Network's \"Diners, Drive-Ins and Dives\" and decided I needed to check this place out. I unfortunately was not greeted by the jolly chef I saw on TV, but I was greeted by what I presume to be the same breakfast dishes he inspired. It was an interestingly unique atmosphere with good service and great food! It was very busy and did take us a little while to be seated but my girlfriend and I eventually found our way inside and had a good experience.\n\nKeep singing,\n\n-Jerron", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YwqIbMiSF_pb8acInMVfqw", "review_id": "Q_NthMZZyNLvh7EfwkCtZg", "stars": 1, "date": "2012-09-15", "text": "RUDE RUDE RUDE\nI wanted to book a diner for my wife and I ( our anniversary.\n. The website i was on did not post the times of operation. I left a message and today got a call back from a RUDE Owner. He argues it is right there. He did not ask anything about where i was o tried to help . He called to argue with me. \n I can not believe i get a call at work and then when i tell the reason of the issue he argues with me and hangs up... childish behavior . I read the reviews on DEX and other sites and found that this is true across the board. Poor food prep and pretentious environment and owners... good bye Lon's chief - ill never go to your location now. And my 12,000 Sedona list will be aware of your bad manners. I am a native to Scottsdale and Lon's was a place that we went to almost 6 times a year. It was my mother's favorite place to eat. - until the food started going down hill. I believe it was these people who were at the helm at that time. I heard they were asked to leave.\n\nHanging up on people.... this is incredible... DO NOT GO HERE!!", "type": "review", "business_id": "iV7D7fHKb-bF9fCL_bEMtA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jrY1RfNRtKsva2diyWyv6w", "review_id": "jBIm1ZV2-z0jsxfviLPLEQ", "stars": 3, "date": "2011-09-06", "text": "Eva's seems to be the place we go to every time we visit family in Casa Grande now. It is a pretty consistent experience, and that's good enough for us when we're out of town.\n\nThe food is pretty good. Their sauces are on the spicy side, but that's ok with us. They're still packed with flavor, and they compliment the meals. The carne asada burrito (enchilada style) is a large portion. Again, the sauce elevates it to being a little bit better than average tasting. The cheese enchiladas with their white jalape\u00f1o sauce were a little bit small, but very good. The rice that the combinations get served with is just so-so. Their chips are fine, the salsa is a little bit weak. The food quality is average overall.\n\nThe service has never been that good. They're not particularly attentive or personable. I felt like we were a little bit of a hassle at times. The last waiter we had advised us to go with a combo plate because it would be cheaper, when it turns out, if you do the math yourself, it was about $3 more expensive. The manager's solution was to take $1 off the bill, and then comp our sodas. Hmm, ok. A warning then to you all out there that are watching your cost. Add your a la carte items up yourself and don't get pressured into the combo, especially if you don't want rice and/or beans anyway.\n\nThe menu is also slightly confusing. The prices are average. The decor is nice. The restaurant looks like it can serve large groups and parties very well. Overall, Eva's seems to be a safe place to enjoy a meal, and we'll go there next time we head up that way.", "type": "review", "business_id": "LBskB7ACUPV8xxjBPKnxmA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GeGDZ02UfARKBRl7LqKZuA", "review_id": "4gElVx0ozu6OLz47Dcz4Bg", "stars": 5, "date": "2011-03-11", "text": "I love CK's. Their happy hour specials are great, service is awesome, and food is tasty. Try the adovada pizza...it's goooood.", "type": "review", "business_id": "xmjv8g356v8Qo55ICjG8rg"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "Yk37VAp452K7FwHWd1rrQw", "review_id": "89ZZ3F8-Eh6F4I2_2RwugA", "stars": 4, "date": "2011-03-12", "text": "The staff were very friendly and the place was clean and didn't smell funny like some other fast food joints.", "type": "review", "business_id": "dZb_-YeZGUWlYNd-nOXRYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "swJ6rmmGx4DCxosDfKTElw", "review_id": "EN-_Qk792URNcoK4NFQQZg", "stars": 3, "date": "2010-08-19", "text": "Had lunch at the Burger Studio yesterday. I always get nervous when there are not too many people in the restaurant at lunch or dinner. Usually a sign of some sorts. \n\nOrdered the Studio Burger and I thought onion rings (felt like I was down a quart of oil). What seemed like a long time to receive my food, I was unhappy to see fries instead of onion rings. Oh well. \n\nThe hamburger extended over the bun which is always a good sign for a custom product. I was impressed with the bun as well, not a flat, stumpy bun but a high top with a nice sheen. It was delicious and the fries were good as well. Owner stopped in we greeted at which point I told him about the fries/onion rings and he immediatly comped me an order. They came out and looked very oily. Distictive beer batter flavor. Not that good....stick with the fries which are great. \n\nOverall....great tasting burger and fries and compared to the other guys (Zin, The Grind, Smash Burger) I put it right up there and a lot less expensive.", "type": "review", "business_id": "x7M9x4AqyC-oYk0rajrOWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bKkoPvsgZje0p9uvUGSnFg", "review_id": "kGD9t1oKiTl8k9CkgjDYTQ", "stars": 5, "date": "2010-12-26", "text": "Ohhh this is the best place ever! Every thing I have ordered has been delish!", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "qrX3s0BfiHQTH_gmnyysjw", "review_id": "EyWncY5l3mARzhoueTDHiw", "stars": 3, "date": "2012-08-07", "text": "First time eating Cambodian food. I am not sure what it's supposed to taste like so it's hard to say if this is what cambodian food is....\n\nSmall, quiet place. Entrance was non-initutive to us for some reason, we walked in the kitchen. It's the door on the left if anyone was curious. \n\nOn a Monday at lunch, we were the only people in there around noon. \n\nI didn't know what to order but I like shrimp so I went for it. I went for the Shrimp Ling rice combo. It comes with soup, rice and a pickled salad. \n\nThe dish comes on a nice square plate so it makes the food 50x fancier just because it's on a square plate. Lots of shrimp in my plate ~ about 10ish and they're large. The shrimp was grilled and it tasted good but I wouldn't call it amazingly good that I was in love. I ate it and I like it but I thought to myself 'What is Cambodian food because the flavors don't seem unique? It seems like they grilled it in some soy sauce, maybe sugar, added more salt and maybe one or two other spices.\" FYI - There's bunch of green onions in the shrimp, I think they add that more flavor. They aren't chopped into small pieces, it's like the whole stem but I ate everything. I always eat everything - I don't waste my food (it's almost like a sin not to finish your food unless you take it home... so nevermind).\n\nThe pickled salad was refreshing. I like the soup, it was lukewarm and it reminded me of a Chinese wintermelon homecooked soup. It's like a mixed of Chinese style chicken broth with Vietnamese beef broth without the saltiness and msg. Adding the green onions to the soup definitely makes it 50x better as well - WOOHOO. \n\nMy dish was $8 - pretty good price. Thumbs up to that!\n\nOverall, would I go back? Eh - I don't know. I need to try other Cambodian places or maybe I should just have googled about it...maybe Vietnamese food is better? Apparently, the countries are located near each other so it's similar to Vietnamese food.", "type": "review", "business_id": "nlFlIeziD-4nNUF2B337Yw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "UsULgP4bKA8RMzs8dQzcsA", "review_id": "cjpHzoaKptS16gaVQcHupQ", "stars": 4, "date": "2008-05-21", "text": "Thanks to Amy D. for also introducing me to this quaint joint.\n\nThe smell of home cooking lured me in, Great menu selections with sandwiches salads and hot dishes too, along with the daily specials which I think is one of each (sandwich , salad, hot meal).\n\nSandwiches come with fresh potato chips and a pickle spear,\nI decided to try the Tuna since they don't put onions in it ,Hallelujah!(see pics)\n\nYou know what it was pretty tasty, I even ate all my chips and the pickle! My only complaint was the bread was a tad dry, but hey it happens.\n\nTucked into a commercial business park I never would have found this on my own, but I have fantasized about going back next time I'm in the area, Maybe Amy D. will take me out to lunch again :)", "type": "review", "business_id": "2czw5PzfPo20KlZLl3hOXA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "Oq5CYkB4dQE_wmPgHu51bg", "review_id": "Y1WP45Y9N0NBwgmMw5PHKA", "stars": 4, "date": "2008-11-09", "text": "Lo Lo's is pretty much what you'd expect a place focusing on \"Chicken & Waffles\" to be. Small, lively, full of smiling people all eating, well......chicken and waffles. The line out front attests to its popularity. \n\nAfter finishing the Phoenix 10K this morning, our group decided that Lo Lo's would be the perfect place to undo all of the health gains we had made. Little did I know that I would be undoing an entire year's worth of morning jogs. It was the sort of experience that makes you wonder if you should consult a cardiologist. \n\nWe had a short wait for our table, but were able to quench our thirst on soft drinks, punch, and sweet tea. The staff was extremely friendly. Everyone who works here seems to love it. \n\nI am a big fan of chicken. I am a big fan of waffles. Yet, I have never had them together. Thus, I decided the only choice for me was their No. 1 Meal, called KK's. Three (3!) pieces of fried chicken, 2 waffles, grits, and eggs w/ cheese and onions. I figured if I was going to eat at Lo Lo's, I was going to go for it. \n\nThe food came pretty quickly. The first thing that struck me were the two enormous globs of butter (1 in my grits and 1 on my waffles). In all my life, I have never knowingly eaten this much butter in a single sitting. That being said, it was divine. Everything was delicious and, while I am not a big \"fried chicken\" guy, I must say that all three pieces disappeared quickly. Other members of our group sampled the fried okra and the red beans & rice. I heard nothing but happy sounds as our table of 7 made approximately 15,000 calories disappear. This was followed by groans and calls for afternoon naps as we all piled into our cars to go home. \n\nLo Lo's is one of those experiences that should not be missed. But, make sure to clear your afternoon and, just to be safe, you may want to consult a health professional.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "99soVZ-moXRSatBocoramg", "review_id": "k1wsoD_NPC7VvIMW8q5CPA", "stars": 5, "date": "2011-04-27", "text": "My boyfriend and I stopped by to grab a bite to eat before work and long story short\n-Greeted immediately \n-Lots of variety\n-Meat lovers pizza is amazing\n-Ask for Tawnya she's really nice and a wonderful server \n-Will be back, loved the excellent service!!", "type": "review", "business_id": "rhf8H7KZsMHRAprI5-D3sQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "IkB8WQbZH5G8Jsk2UCjchg", "stars": 4, "date": "2010-03-23", "text": "The 4 stars is in comparison to other Chipotle's I've been to, especially in this area.\n\nI have to admit, when they were building this plaza, my friends and I tried to guess every day what it was going to be. We had it narrowed down to a Chipotle or a sushi joint (both would kill me for sure) and I cannot believe we were actually right. \n\nI am pretty pleased with this place. Both times I've stopped by it's been clean and pretty speedy service. Every time I come in, I am surprised by all the extra room around to the side and out on the patio and it makes me happy.\n\nI'm sure anyone reading this has been to Chipotle, but if not, or if you're feeling like trying something new.. my signature dish for the past few years has been carnitas bowl with black beans, corn, fajita, lettuce and a little bit of the dairy stuff. Wash it down with a Nantucket nectar apple juice and you're golden.", "type": "review", "business_id": "xM5F0cLAlKWoB8rOgt5ZOw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "19BunjXk7zhd811rF42U7w", "review_id": "A-5Pgc4g90l0H28_5VSLsg", "stars": 4, "date": "2010-10-06", "text": "My sweet hubby brought me here for my b-day the other night. Note, this is a Scottsdale 5 star, otherwise known as a Chicago, California, or New York 4 star rating. This may possibly be my favorite restaurant in Scottsdale. Amazing food. Unpretentious and cozy atmosphere. Got the steak frites. Asked for veggies instead of frites and ended up with steak green beans. It was excellent. We asked for a smooth red wine. I had possibly my second best red wine ever. We also ordered a scallop appetizer and the escargots. Both were cooked almost to perfection - however lacking in salt for my personal preference, which is an easy fix. I would definitely go back. Don't recommend this for large parties. However, it is the perfect place for smaller, intimate parties.", "type": "review", "business_id": "no_FXjscklz1SEzM_XnVgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m2T71nxPgzrmXi-cKE3U2w", "review_id": "13gX_n_cltqukRUFkecuhw", "stars": 3, "date": "2011-08-04", "text": "Not a bad place to go but not my first choice. The food is good but nothing unique or special.", "type": "review", "business_id": "-GPiLRLH0MWH6Pjs0WDglg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CEEIQq93JO8aSRx25wir9g", "review_id": "FeqsXONHeUPkBSuQ13qHVg", "stars": 5, "date": "2012-06-02", "text": "This has become one of my favorites. They're friendly, reasonably priced and the food is always delicious. My husband and I have tried a number of their items, but my personal favorites are the BBQ pork appetizer, house fried rice, the mushu and lemon chicken. My husband also loves the house fried rice, the mushu and the orange chicken. One of the things that is so wonderful about this place is, the food isn't heavy. The sauces are light and fresh tasting. Plus, I'm lucky enough to be in their delivery zone. When I get delivery, the food is still hot and tastes like it was made just a few minutes earlier.\n\nI have yet to be disappointed by anything I've ordered here, and to me, that's a sign of a good restaurant.", "type": "review", "business_id": "ImghNwml8N-ncAqhXe00hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QjThuzpa1Urs89sC3vhuCA", "review_id": "jkKs8L_RM_mPCN1iapMKlg", "stars": 4, "date": "2011-09-12", "text": "So it was my second time when I actually enjoyed what I was eating because we actually knew what we were ordering. And the broth was a lot better than the first time. The first my friends and I ate at Tien Wong, we had ordered the Ying-Yang pot, which had the spicy and mild on each side, it was okay. This time, we ordered the Lemon Grass one. Which I highly recommend!!! It was so much better than the Ying-Yang. \n\nNEVER NEVER NEVER get the quail eggs. It was a waste of money. and make sure to get lots and lots of beef slices. That's like my favorite part of eating hot pot. I like eating the clear Asian noodles one the most...it doesn't make the broth all thick after putting the noodles intot he broth like the udon noodles. \n\nI also really like the fact that they're open really late. Midnight snack!!", "type": "review", "business_id": "28ycqW56i70yM_C0ejNv9w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JEjzUX-9ZjZl0nXs6kgc6w", "review_id": "TO9qLQS6OS-oejH-mAXYpQ", "stars": 2, "date": "2010-06-28", "text": "I was severely disappointed by my experience at Five Guys. With all the hype that this chain has garnered, I found that little of it held up. As soon as I walked in the door I was overwhelmed by the smell of smoke that the griddle was wafting through the restaurant. There were plenty of people cooking and preparing the food, yet it all looked chaotic and unorganized.\n\nJust as other people have mentioned, you can choose a whole array of toppings to customize your burger. That capability is great as long as the cashier rings up your order correctly (which mine was not). Needless to say I was less than thrilled that I had to battle the smoke so that I could re-explain to the counter staff how my meal was supposed to be prepared. Along with my burger, I also ordered the regular-sized Cajun fries. These were definitely fully-seasoned, so if you are averse to spice don't order them. The regular order of fries turned out to be a modest cup of fries stuffed in a brown bag full of more fries. It is almost as if Five Guys' strategy is to overwhelm you by their generosity with their fries, so that you forget that their burger is mediocre and their fries are sopping wet with grease. \n\nThe AYCE peanuts were good though; it is a shame that these were the highlight of the meal.", "type": "review", "business_id": "jqZKv-7F54guDLalXEjHxg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C3VpWgCsdwyYs6Xoy1JcJQ", "review_id": "2wpN3o5dDP0PnzbIYHg7GQ", "stars": 4, "date": "2012-07-30", "text": "Sharp looking place modern meets old dinner, good food nice and simple breakfast menu. Staff could have been more friendly, but over all solid place will be back again!", "type": "review", "business_id": "0nGjXTpUtpIJl10PL0eBGg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "740We6l5ENHvwTbUPX-g5A", "review_id": "JvP-DjOdMZzihX8YMDar1Q", "stars": 1, "date": "2011-02-01", "text": "You want good food? You'd be better off smuggling goat cheese in your boot and risking an anal cavity search for doing so than eating at this airport.\n\nYou want scenery? Try desert.\n\n\nYou want a comfortable seat to wait for your delayed flight? Well you are in the desert so you'd probably better off finding a cactus and straddling it face first.\n\nYou want a relatively close connection for your flight? Well tough shit. Oh yeah, they've got people movers but somehow they have this magical ability to disengage people's legs. Yeah I know it sounds crazy but as soon as people step on to these things their legs stop moving and they plant their fat ass right in the middle of the walk way. Whats wrong with your legs you mammoth!?", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sUTQfzzxxc2c3g6cFH19pQ", "review_id": "72WxVb_pMw0-xe1othMG5Q", "stars": 5, "date": "2011-10-30", "text": "Yummmmm .... so authentic \n\nThis is one of the few mom & pop's type of restaurant in N Scottsdale that taste oh so authentic and fantastic \nThis is by far my favorite italian restaurant in town, way better than the big chain like Brios (don't get me wrong, they are not bad either)\n\nIt is not a fancy place but very cozy. And it does make you feel like you walk into one of the ristorante in Italia .... the owners are 100% italiano and they only use the freshest ingredients .... I had the best lasagna there, you can taste the texture of the noodle, the creamy-ness of the chess, the meat favor and the freshness of the tomatoes... totally awesome. \nHad tried the seafood linguine there too .... oh so good as well and with plenty of seafood ... definitely 2 thumbs up. \n\nDuring winter, make sure you make reservation ahead though .... this place seems to be snowbirds' favorite too", "type": "review", "business_id": "UVEnZjATEGkKLFdzV_dTvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "scxmg3Pu_jjpXSyFWH8-Cg", "review_id": "RoY992mnw-IXLUXLQ3RG-A", "stars": 4, "date": "2009-10-06", "text": "it's all about the queso fundido...and the jalapeno margaritas. trust me.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nIAVUDO8VeLIlFH3RMu6SQ", "review_id": "DzFM5PU1lahcbNeNfW1Ibg", "stars": 5, "date": "2012-06-11", "text": "What a beautiful hotel! The Clarendon is truly one of a kind. The staff goes above and beyond to make sure you have everything you need...and extras :) The pool area is gorgeous and the atmosphere is delightful. I had the opportunity to meet the owner, Ben Bethel. What an astonishing young man he is! I don't know which is more impressive, his efforts to make the hotel as \"green\" as possible or the fact that he helps guests with their bags as they walk through the door. I can't wait for another excuse to stay at the Clarendon again!", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "paFAm3Ym7rls7vilYXM55g", "review_id": "eYCFfbbZ62Bsod8Ip6B6Jg", "stars": 4, "date": "2012-12-26", "text": "Damn good pizza! A little spendy (hence why I didnt give them 5 stars) for what you get but regardless, the pizza is pretty damn good. The wings are decent, I think there baked instead of fried and the sauce seems a little weak. They often have a 25 dollar special which includes 20 wings and a large pizza or some kind of 2 pizza wing combo for around 40 dollars. I'd recommend this spot to anyone looking for some family fun times surrounded with fun people and good food.", "type": "review", "business_id": "PEHJjxdw11TGFma9Zhz3ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MIFdtqqbw3bw4YRf88GFQQ", "review_id": "TKvWAVGRH7EnEx64ayBRww", "stars": 3, "date": "2011-12-20", "text": "Overall good place. Pizza was good and a great selection. The service however was really slow and non-attentive. Took 30 minutes after being seated to have wine and sodas at the table. Cute place, but the acoustics need some help, very noisy. Would go back if in the neighborhood.", "type": "review", "business_id": "s685YHkO3lcId41bjp5KOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "UkN_tB1mKzVst5rWFX6iQg", "stars": 3, "date": "2010-02-05", "text": "Overall , I like this place. A smal hole-in-the-wall place with straight forward, cheap, non-greasy Mexican food. I can dig it. I personally think the one on 7th st is better, but I will chock it up to growing pains since this location's only been open for about a week. I went today for my all time favorite Torta, but they didn't grill my bread so it wasn't nearly as awesome as it usually is...yes, I'm picky", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "nx2PS25Qe3MCEFUdO_XOtw", "review_id": "970d7neRyoMo3HBxx84zVA", "stars": 5, "date": "2008-08-14", "text": "My friends kidnapped me for my birthday (yes, because they are wonderful), threw me in the back of my friend Jill's van and rushed me off (blindfolded of course) to Radio Milano.\n\nMy friend Lindsay knew I had been dying to go there (I love Postino--same owner and across the street--so I just knew Radio Milano was going to be amazing).\n\nI've never met the man that owns these restaurants: La Grande Orange, Postino, Radio Milano etc (Lindsay apparently once did, lucky girl) but whoever he is, he is a business genius. \n\nThe atmosphere of Radio Milano was sophisticated and classy without being uptight. Everyone was extraordinarily nice and helpful. True to form for this restaurateur's style, there is a large vase of (fresh every day) flowers that compliment the warm glow of the restaurant in general.\n\nOur server welcomed us with what were presented as \"Italian Potato Chips\" and a delicious dipping sauce. \n\nThe homemade ginger ale is so strong in taste, really good.\n\nI ordered the special for the night which was a vegetable lasagna. It was soooooo good. \n\nI'm glad I have such awesome friends to kidnap me and take me to great places.", "type": "review", "business_id": "C1tH3sEQra33EOTk56Eu1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "dnfdifcm5krZlJWlZtdu7g", "review_id": "RVH6XOqU5CboDRPaUW-Z9Q", "stars": 5, "date": "2009-06-22", "text": "We had a fantastic experience here! We went on a Thursday evening and with the misters on, it was still very pleasant sitting outside, even in June. The wine list was extremely affordable - most between $25 and $60. For Scottsdale, this is a steal! We shared an appetizer and a main entree. The appetizer was delish. Grilled bread (perfectly grilled, not so hard that it hurts your gums) with three spreads - an amazing goat cheese and marscapone, eggplant, and hummus. Also, they serve house bread with a great sun dried tomato butter. For our entree, we shared the fish special, which was a sea bass with artichokes, fingerling potatoes, and spinach. Fantastic. The service was also great. \n\nI've come to expect any service in Scottsdale to be rude but this place wasn't! Maybe we were lucky, but I enjoyed our experience.", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 4, "useful": 2, "cool": 1}, "user_id": "H5Awp19K54wIct2Oyp170w", "review_id": "Un0SU5J4GyIm9cJ3twT42g", "stars": 1, "date": "2009-04-23", "text": "After a day full of meetings, I gathered the hubster and we headed out to eat some Mexican. I had visions of chips/salsa, and margaritas. We headed to On the Border on Stapley near Baseline but found that this location had closed. Egads. Then we remembered The Salty Senorita across the street. And thus begins the saga. \"Hi, are you here for happy hour?\". We said no but were seated in the bar area anyway. At least we got a booth. Lucky us, huh? Joe \"lots of product in his hair\" brought us menus and took our drink orders. He was pushing a certain type of Tequila and I took the bait, with the stipulation \"on the rocks with salt\". My drink, and hubster's water arrived and we ordered. The chips and salsa AND our dinners arrived at the same time. .Really Joe product??? Chips with the meal? FYI, chips and salsa here aren't complimentary, you have to order and pay for them. It was then we noticed ants had taken over our table. At first we thought it was just a couple but noooooooo. The hubster brought the ants to the attention of Joe product and he feigned concern but did not offer to sit us at another table. Now the hubster's getting annoyed. It's hard to enjoy yourself when you are swashing ants off the table. Our booth was by a window but we didn't see any influx from the window of ants, so we're not sure where they are coming from, but they don't stop. Hubster mentions it a second time, and then, again with feigned concern he offers to move us to a different table. By this time we are almost done eating and I just say let's finish and get the hell out of dodge. Our bill comes, we pay, and hubster asks for the manager. Hell, he's even younger than Joe Product and looks like he just woke up, thus we'll call him Bed Head. Bed Head offers to buy us a drink on the house? Really? That's your solution? He said he'd make sure other patrons aren't seated in this area. Egads, no thanks, we just wanted to leave. We weren't after free food, but the offer of 10% off or some kind of compensation for sharing our entire meal with ants would have been appreciated. A free drink? Hey,maybe one of those $60.00 margaritas would have made everything alright! As far as the food goes-I had the chicken antchiladas (get it, lol) with beans and rice and they were dry. I like my enchiladas with oodles of sauce and cheese, and these had very little sauce with a little design of sour cream on them. Hubster had a steak and avocado salad. He said it was ok. \nThis is a never return place for us. \nAnd a note to Joe Product-chips and salsa should have arrived WITH the drinks, and before the meal.Reflecting back, we were there on Earth day so perhaps having ants share our meal was relevant.\nThe margarita gets a 7 out of 10 limes as it was pretty good.", "type": "review", "business_id": "Yiw1ml0XVBDIQBTLXHNGmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mk57018kISC-jSaSu1zSsA", "review_id": "tD_iJjhVjV4EKnFNi-y0jA", "stars": 4, "date": "2010-10-04", "text": "We were staying at the Marriott Canyon Villas and went to Roys for Happy Hour. Between 4:00 - 6:00 Roys has a great Happy Hour. $5.00 drinks, including their Hawaiian martinis and $5.00 appetizers. We had lobster pot stickers, tuna sushi, and California rolls. All were delicious. I've never eaten a meal at the restaurant but if you want a nice little buzz and a pretty full stomach in a lovely environment on a pauper's budget, this IS the place. Don't miss it if you are nearby.", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "FkOXrb1yaDsM0NQImdvnxw", "review_id": "2UNmP0KzzmpHJ9qHCWUhcw", "stars": 5, "date": "2008-12-31", "text": "I lived in AZ for a year whilst at JP Morgan. One of the few great experiences i had out there (back in LA now) was, going to their Good (yes, capital G) food places, they were really really, really Good...certainly on par with eateries I've experienced in London, NYC, Paris, et cetera.\nI finally found a neighborhood that had (gulp) personality: the Roosevelt district. I was so happy and comfy in my hundred-year-old guest house with hard wood floors, huge pre-air conditioning windows, a sizable green backyard, and an unobstructed view of the teenytiny Phoenix skyline. And just down the street from my extraordinary little residence was the absolutely amazing, wonderful and perfect Tammie Coe (the person AND the bakery) who had just opened their venerable doors.\nI was there every morning for their exquisite breads, cheeses, sweet things, perfect euro-standard coffee, lovely attendants....I miss it so much.\nIt reminded me of Patisserie Valerie in London, or any good bakery in Paris...with a cool, fun and welcome American twist.\n\nI shall always go back to Tammie when ever I find myself in dreary Walmart-ized Phoenix. Tammie, you are an artist. My only hope is that you will consider opening a location in Los Angeles. Eat your heart out, Nancy Silverton!!!", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kyo2XtO9-H6IJ3zmvqPClQ", "review_id": "BXcogMpqe8Gg4pHLWOKncg", "stars": 4, "date": "2012-10-24", "text": "I liked this place. Great Atmosphere and music. Their Guacamole and Salsa is really good. Service was good too, My server (forgot his name) came by often to check on me (Or because he thought I was gonna run out on the bill) and was really nice. I had the Carne flatbread, surprisingly good! Id definitely come back when I have have the money\n\nGood place for a date as well!", "type": "review", "business_id": "Q2FaJ3zB6ZuGgvqUqhdc_w"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "MdBWkUUw1A_pHlICB_aPZQ", "stars": 3, "date": "2008-03-22", "text": "Mucho Taco falls closer to 2.5 stars-average. The prices are very good and the staff was very friendly.\n\nLet me start with some positives: the salsa was fresh and tasty as in these were whole tomatoes 5 minutes ago. veggies on the tacos were also fresh and crisp.\n\nI had a fish taco & a carnitas taco-total about $4.50. The fish was decent but the carnitas was pretty gristly. I overheard the kitchen staff talking to a customer and found out that they make liberal use of the \"L\" word here. That's right, old school cookin' for better or worse; Lard.", "type": "review", "business_id": "qgJZUKNVY-LbGKk6XEP3JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m3dRCU88YU9_GawEqX4gBw", "review_id": "Rc6deYO8GYdUjqhqAs9wKg", "stars": 4, "date": "2011-09-19", "text": "Wow! Just left Apple with a new phone and I could not be happier! \nSuch a great experience compared to dealing directly with Verizon. \nThe employees were welcoming and friendly and helped me solve my iPhone problem quickly!", "type": "review", "business_id": "l5vzFaqSjvxZiRn0MJeKkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "6fQc4fxb9tE7397B-AS_Og", "review_id": "sAp3fDmYX4ieZEaaVrRQLg", "stars": 4, "date": "2010-12-09", "text": "For those of you planning to visit us, Babaloo's is no more. For those of you who know us I just wanted to take a minute to leave a heartfelt thank you.\n\nWhen someone opens a new restaurant it is an exciting moment, a nervous moment, a scary moment all rolled into one. If the worst thing that happens is a rack of wine glasses falling from the roof in a hail of glass then the opening can be considered a success-many have endured far more nightmarish openings in this industry. \n\nAs the weeks, months, and years go by a funny thing happens to the special restaurants, the good restaurants: they begin to feel like family and people come back. This was where I came in, almost a year ago today, as a simple restaurant server with over 10 years of previous restaurant management experience. I was not the best server, but I noticed that both customers and employees alike were always grateful, and made me feel at home. This was the beauty of Babaloo's-it felt like family. \n\nTo Robert, Myra, George, Adam, Emily, Jon, Rob, Erika, and anyone I may have forgotten I offer my deepest thanks for allowing me to be part of your lives. To all of the wonderful people who came to see us over and over again, I would far prefer to work a table seated with people I know, and you all never failed to help me out with that. Babaloo's did not close because of the folks that supported us, it closed because sometimes in the bleakest economy a business fails, even despite the greatest efforts of those trying to keep it going. \nIt was a fun ride. Thanks Rob!", "type": "review", "business_id": "X7FAAKkwOwaUUpR8QPChyw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "v3SfhJicbO7qdXxgY2gRLw", "review_id": "ULljARpbJfCnesJMeNNa0g", "stars": 4, "date": "2012-04-02", "text": "Place is tiny and relies mostly on outside seating, and parking is a bit tough like everywhere in that area, but worth it. The iced tea wasn't good, but the Southwest Chicken Sandwich was delicious...definitely recommended. \n\nParking a couple blocks down on Main in the art district was the best we could do after circling around..but the walk isn't bad.", "type": "review", "business_id": "KO9CpaSPOoqm0iCWm5scmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "dXcx7FyIAXiLT6u1uAy8ow", "stars": 4, "date": "2009-11-10", "text": "I'm so not a 'pub & grub' kinda gal, but since this place saved me 2 times during a Science Center visit = pretty ok. You can walk across from AZ Science and make this kid friendly pit stop in the middle of the day - i really am not familiar with anything else that 'now it's the parents turn' sorta thing close by.\n\nFun pool table in 1 of the rooms. Really good steak fries, fish and chips are good, and so is the french onion soup. Since i am a wine drinker, this is not the place for wines by the glass, obviously it is a beer place, and me not being a beer drinker, not my cup of tea - ah~hem, pint that is....\n\nsooo, all-n-all a fun thing to do after sacrificing for the kids!", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "V0r_ncTQawicaHAc8TCb4A", "review_id": "hAL9SyuYqYfDoJYccUcK_A", "stars": 4, "date": "2011-01-15", "text": "Alberto was so cute! He cheerily greeted us and showed us to the bar. We ordered the bruschetta with wine while we waited for our to-go order to be prepared. Alberto visited with us briefly to ensure we enjoyed our bruschetta - and we loved our appetizer! YUM! Fresh, fresh, fresh tomatoes and bursting with flavor! It was fun just being a part of the experience at Alberto's!.\n\nTry the desserts!", "type": "review", "business_id": "Oxgiv8PVn4RXth_bHSbB7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_8jEwH_N-hUXIG6X11H2VQ", "review_id": "TtHwbtvtkZQjs_iY75vh-w", "stars": 4, "date": "2012-02-05", "text": "Great food and very knowledgable/helpful staff. A little expensive, but the food is definitely worth it Have had pasta on one occasion and salmon on another....loved them both. Will definitely be back to support this great restaurant!", "type": "review", "business_id": "dsMvINhoQbIQgSRTBv2B6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9SZBVZ-mxebOVa1BlWFtWw", "review_id": "TR7dLYpW53_RdwBN50Ck4g", "stars": 5, "date": "2012-02-16", "text": "I am a G-Spot addict! Had to limit myself from going every week though. \n\nTook the hubby there after a date night the other weekend. It was his first time to try gelato. He's a ColdStone guy 100% and he really enjoyed the Tiramisu gelato! \n\nThe focaccia flatbread is awesome!!! And I would post a photo of the Focaccia Flatbread I got earlier to eat along with my homemade salad, but (in the words of LOLCat) \"I eated it\" and forgot to take a photo first. :)\n\nMy favorite salad dressing is the champagne vinegarette! \nThe mintchip gelato is freaking awesome! \nThe stracciatella gelato mixed with mint - even better!!! \n\nG-Spot is so awesome, that I just walked back over and got my Mint / Stracciatella combo. Baby C wanted something sweet! :D", "type": "review", "business_id": "LHzVPddSPzMECho55zCf0Q"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "otWxlRqjeVYUOD7XndefDw", "stars": 3, "date": "2011-05-15", "text": "Here is my honest assessment of Los Reyes de la Torta. It's a three-star place. The atmosphere is a bit dumpy. My apologies to those who think reviews should focus strictly on food, but atmosphere is what I notice when I walk in the door. Plus, despite the fact that the place was mostly, we were led to the table closest to the restrooms. Seriously? \n\nThe star of the show here is obviously the tortas. I tried the egg one, which had cheese and a very generous serving of sliced avocados. This torta was delicious and a great value. The other one I tried had chicken, onions, and some other stuff. It reminded me of what they have at the Great Steak and Potato Company. Not that that's a bad thing. For the tortas I give 5 stars. \n\nOther stuff:\n\nNo alcohol. 'Nuff said.\n\nGreasy potato chips as a side? That was kind of a bummer. I was craving tortilla chips or fries or anything a little more exciting than potato chips right out of the bag.\n\nThe flan was really dense and tasted like it was prepared forever ago in a huge vat. Skip it. You probably won't be hungry anyway after the tortas so don't get tempted by the pictures on the menu.", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-sVRqx8I-STvI8ImUhY4bg", "review_id": "cHSfL7eHpZa1fJrvUv7cOA", "stars": 4, "date": "2010-10-31", "text": "This place is exactly what a local coffee shop in Phoenix should be. Lots of sunlight, good iced coffee. (Also, apparently, they serve wine!)", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "q0KigjVBtb6dfRjX3QJbsQ", "review_id": "tZsoQrO0gxYr7OCaevDJFg", "stars": 5, "date": "2009-04-15", "text": "I take the light-rail downtown sometimes just to go here. I walked in the first time to a bustling, energetic, singing, cheering crowd and thought, \"where the H am I??\" I felt like I had left Phoenix and ended up in a far away magical land of wonder and excitement. Food is decent for a bar, great beer, great local music (it's the first time I saw The Waters). Downtown Phoenix needs more places like this.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Syc4pbEkL3bbzjO4X4HhQw", "review_id": "sNGiyLGXukTvlrZbJjhjxA", "stars": 5, "date": "2012-04-07", "text": "Great food. Good service.\nSalsa is the best. Enchiladas are very good. I don't know what they put in the sauce, but damn is it good! No better Mexican food anywhere in Scottsdale.", "type": "review", "business_id": "Vx7-xbazum3dgo3Qj3i4pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XJAtcMnQ1O7jTuFz3Kbpsg", "review_id": "GxEobraJn13J15wQ0RGWxA", "stars": 5, "date": "2012-10-17", "text": "I went to Tommy V's for dinner last night with my husband and several of his clients...WOW! This is my new favorite restaurant in town! They have a private dining area that they can close off with curtains and turn the music off, which is perfect for a business dinner. I am vegan, one of his clients is doing the paleo diet, and another is gluten free, and they had DELICIOUS options for all of us, while also serving AMAZING pasta and fish dishes to others at the table. I can't recommend this restaurant enough. I am just sorry I haven't discovered it earlier. YUM! YUM! YUM! P.S. Very cool atmosphere, too!", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kRH3HttbiNoD-BgomNVVtA", "review_id": "aiJToneeHooi67KvmQ1vug", "stars": 2, "date": "2010-06-20", "text": "Eh- it was just ok. I was told about the must-have Cajun fries, and they were just ok. Not spicy at all and appeared to be just like Cajun season salt sprinkled on regular fries. The fries were Kinda soggy and very greasy. Burger was ok. Tasted fresh, but I didn't know a \"regular\" burger was 2 patties. Yuck. \n\nSadly- my favorite thing about this place was the fact they had Mello Yello. Sweet. \n\nIt's good enough to eat- but it's no where near the quality of Chuckbox which is right up the street. Shoot- fatburger a stones throw away is better. \n\nIts good enough to eat again if your friends wanna go, but its not a place that i'll be craving or want to search for parking to eat at.\n\nOh well.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F1z0661Q9JIOMugXvrL12g", "review_id": "i3xPmdqIhhlnM91_KBT9lA", "stars": 4, "date": "2011-08-30", "text": "Great sandwich", "type": "review", "business_id": "kBF7JSs3VGdjjcf46vk4nw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "g1Mp7ozhu4HwZDYanxUZCQ", "stars": 4, "date": "2008-12-13", "text": "Never been in - but I get pizza delivered from them now and then. I am a New Yorker and to call me a pizza snob probably doesn't go far enough.\n\nThe crust is crispy, thin, and foldable, the outside edges, crispy and bubbly. Great mozzarella. I have never been disappointed by a topping. A little greasy, as it should be; it reminds me of NY pizza, and that's a big compliment coming from me.\n\nWe don't have a Ray's in Central Phoenix... but we do have Mamma Mia's. \n\nYo! Tony! You make a good pizza.", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "cJNvYzqahf3gEM3OV45QdA", "review_id": "dlan_R8mUu-Y1gLdgaVKBg", "stars": 4, "date": "2010-03-14", "text": "Looooove this place. I have to come here every time I visit Phoenix. The rice with raisins and almonds, the baba ganoush, the hummus, the dolma, the falafel, the veggie patties... it's all so delicious and vegetarian-friendly (although they have plenty of meat options for the carnivores). The portions are HUGE, so come hungry, share, and/or make room in your fridge for leftovers. Eden's Grill is staffed by a super nice family, and even though I'm not a regular, I feel like one whenever I go.", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GlVIC6S7gs2MgWp89oDu7Q", "review_id": "CJHMqadKEgoDnKo-KaIbzQ", "stars": 5, "date": "2011-02-02", "text": "Update!\n\nWent back last night for dinner, this place is still awesome. I had the Las Vegas Rolls, they were pure deep fried goodness.", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "TroANF3f2PuYeVfSItxxaw", "review_id": "xbvvOizpHzERSTxQXPqjkg", "stars": 3, "date": "2010-03-02", "text": "I recently attended a conference in AZ and stayed at the Squaw Peak. The grounds were very nice, and with all the on-site activities this hotel would be quite a draw for the kids. \n\nBeing I don't have any kids, plus it was too cold to be out by the pool, activities on site were pretty limited. The gym facilities and the comfort of the bed made up for the lack of adult festivities. The gym was good sized and had ample new equipment. The bed was really comfortable and had great pillows. \n\nGreat for a family vacation, A-Ok for the business traveler.", "type": "review", "business_id": "N1xMSUfv1GmfHGa9a3VuJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "i0A-c2yoHySmFhRV2sDR1g", "review_id": "7TaROqdIVPdw1pGt5U85lw", "stars": 4, "date": "2011-03-15", "text": "I was in Arcadia today and saw this place so I had to try it out. The menu has some variation from the normal Thai restaurant as well as some classics. I decided to try the jalapeno curry. I was surprised it was not as spicy as I expected but the flavor was excellent. Service in this place could not have been better, everyone was very friendly and attentive. Lunch prices were very good for the quality of the food and was an excellent value in my opinion. I'll definitely be back to try some more new things.", "type": "review", "business_id": "cInzGnaFZ3EIItvFXl1MvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zwjIdDClpnTqsly-O1Pe7g", "review_id": "EUVHPjmBRDwqwpv7QLJE7A", "stars": 4, "date": "2012-01-04", "text": "What a shame! It was a great place to hang out :(", "type": "review", "business_id": "J7DYRCtU9Tdtja5c7k1sjQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "FPWwCD73C0PlRdDfJ6Tuqw", "review_id": "h9dWMKcTM3EwrfRhL7hGfg", "stars": 4, "date": "2007-03-26", "text": "The only big Asian market in all of Phoenix which is, shockingly enough, located in the Chinese community center.\n\nThey have live fish and every canned good you can think of.\n\nWant some canned unagi? No problem.\n\nRice cooker that doesn't suck? Got'em.\n\nSome frozen shrimp balls? Win.\n\nThey're pan-asian everything.. and if they don't have it, you're hosed! This is the only game in town.", "type": "review", "business_id": "ozWBsvbeM2LSPsRDsYKr1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SC7xQZ_7l4dex8JNMHg8SA", "review_id": "q1XKZRjkVap5QGuZQVPIRA", "stars": 4, "date": "2012-01-31", "text": "Am ashamed to say I have filled up my punch card, twice. Usually get the Hook and Ladder. But the main reason I keep going back...the magical Coke machine of Awesomeness.", "type": "review", "business_id": "Pectv4bzzUVs0FQ6HQjW8g"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "m59OpbCyRwXSvERXeevWqg", "review_id": "86Ee-P5ePzDj45CNDIlWOw", "stars": 5, "date": "2010-01-11", "text": "Really good pizza has to be among the most perfect foods in all the world. Really good pizza would likely be on my last meal request list. Specifically the roasted corn and goat cheese pizza at La Grande Orange Pizzeria which has to be near the top of the list for all the great pizzas the two us who contributed to this review have consumed. And that is a lot of pizza.\n\nWe were visiting Scottsdale as tourists when the concierge at the resort recommended this place to us. Bless her. Very convenient too to be able to shop for wine at La Grande Orange grocery, adjoining, and other goodies while we waited on our take out pizza order. http://www.yelp.com/biz/la-grande-orange-grocery-phoenix#hrid:4cXbhzxxtmExF9kRjmFViQ/src:self\n\nThe only hitch here is parking is terrible during peak hours. So it goes. The pizza is worth the parking hassle. We're on our way back to Scottsdale in a few days for another visit and La Grande Orange Pizzeria is on our \"go\" list again. The Rocket Man pizza is calling our name this time.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 7, "useful": 7, "cool": 6}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "r8tMXAsAHUEB3on09foX4w", "stars": 3, "date": "2012-02-01", "text": "Had lunch at Zinc for the first time recently right as they were opening. Considering they were not yet busy, we had pretty mediocre service. To begin with, we were not offered bread. Since it was our first visit, I wouldn't have necessarily assumed we would get bread, but I noticed other tables had it, so naturally I felt slighted. And then the cardinal sin of serving. I was maybe 25% through my meal, when our server appeared with our check and asked if we would like dessert. Well, I don't know. I haven't really eaten yet. My husband wasn't even finished, and he eats like he's still in the military. Needless to say, I just took the check and short-changed her tip in return for short-changing the time I was apparently allotted for eating. \n\nAs for the food. I had the macaroni au gratin with smoked ham as well as their up sell of parmesan truffle fries. I liked the mac and cheese. Not the best I've had, but pretty good. The fries were okay. But I've never understood the concept of dressing up plain 'ole french fries and serving them with ketchup. If I'm not going to get a nice aioli or some other special dipping sauce, I'd rather just have the fries sans all the other crap.\n\nI wouldn't necessarily object to a return visit if I'm in the area, but I won't be breaking down their door. Just as well, I doubt they would care.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ELzKYmr0EXuCUG-gKgBGpQ", "review_id": "bka-9ewQ0qeQWdE2_v6Lkw", "stars": 3, "date": "2011-05-30", "text": "Missed the happy hour but the Margaritas were not expensive. Waited for an outside table but had to wait inside because you are not permitted to wait outside with a drink in hand. .( As an aside saw 2 arrests on Mill Ave after dinner becuse 2 guysgot caught drinking beer not so carefully disguised in brown bags.) Well worth it on a beautiful night.Great for people watching. Yes, cornbread is good but the nachos with 3 types of salsa was better. My entree was a chicken, mushroom artichoke stack. Decent but not fabulous. My wife's mushroom enchillada was better. .", "type": "review", "business_id": "hyff2JyqQgf85MaJZslHCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o4FO1hIiS4W2-i2QImJu0Q", "review_id": "0Ag3IzSaA4YdZ6L3Z1LzHA", "stars": 5, "date": "2012-05-14", "text": "A very professional company that takes the time to deal with you on a personal level. \nWith great reassurance from Nate and his team they were able to handle the short sale of our home with very little stress and in a timely manner.\nThey really helped when we thought no one could. From beginning to end we were always kept informed and they got the job done.", "type": "review", "business_id": "zn9it0OA4lUdLYgcMSjlVA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "bp452dc0Y6n8XRWXjpACvw", "stars": 2, "date": "2008-05-30", "text": "Hate is such a strong word.. I try not to use when I its not really called for. When I set out to Yelp the Safeway across the street from me and the Mr.'s place I thought of using that word to describe how much I don't like this Safeway. Of course it's warranted, they pissed me off!\n\nOkay you know how they always do BOGOF on milk.. well me and the Mr don't drink that much milk so the cashier usually just gives me half off the 1 gallon. Well this time she forgot to and I didn't notice until I got home.. so seeing that I used to shop here once a week I figured Id just bring my receipt back the following week. Well the following week I went in and showed the receipt and the dumb bitch behind the counter was like, 'what am I supposed to do about it?'.. I explained to her what usually happens as the cashier gives it to me for half off.. she then proceeded to ask me which cashier was doing that, 'it's not our policy.'\nAfter going back and forth for a few minutes I finally just told her to give me my 2 bucks.. she told me if I would have brought them the receipt back the same day they would have done something about it. Are you f-ing kidding me? Whats the difference besides my being inconvenienced having to drive back there. So I finally asked her if she was willing to lose a potential lifetime customer over 2 bucks? She responded, 'there's nothing I can do for you.' I then told her that her customer service skills suck and that I will NEVER return to the store. \n\nI guess never say never since I went into my very much disliked Safeway the other day. Believe it or not they make a pretty damn good sandwich and I despise Subway. So the 2 stars are for the yummy sandwich and the super cute guy who made it! \n\nSo much for my convictions?!", "type": "review", "business_id": "SK04ABcwoEtvIZ3VOZccPw"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "lmiDCrmas8TxRsbIGZX9Pg", "review_id": "tHxc2gHEq-xiysjxiYqwLA", "stars": 5, "date": "2011-12-08", "text": "Holy frijoles- this place lived up to the hype. I'm surprised how how good the pizza is here in Arizona. Very tasty, and definitely some of the best pizza I've had in the valley. The only downside is that there is usually a long wait to be seated, and then once your seated, it takes a longer wait for your pizza. The prices are average, the service was so-so, but the food was excellent! Nice location too, right in Old Town so you can have a drink at a nearby bar while you wait for your table. Cool place for date-night, or to have dinner with family. It's fairly casual, but charming at the same time.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 4, "useful": 2, "cool": 4}, "user_id": "atqpfEWIjCjjcLvJBBgXEg", "review_id": "nMaKf-Uc-hdGsd7yP8f9fQ", "stars": 4, "date": "2008-09-10", "text": "THE LINE IS HELLA LONG!!! so is the wait!! other than that I thought it was good..... Oh yah phoenix is hot.... and you will be standing in line outside!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "SHDqtHKimfye1Hl6SAJmJg", "stars": 4, "date": "2011-02-18", "text": "I have had the opportunity to watch games at the Staples Center, and Honda Center in Los Angeles and Anaheim. Both are great arenas and are very fan friendly. Jobing.com is totally different, and that's not a bad thing! I really enjoy the arena is in the same complex with restaurants and movie theater. Great place to hang out before and after the game. Parking is great, I actually had a parking pass and did not use it. I just parked at the west gate parking lot. The arena was very easy to acess, and we had a great time. We will be coming back many more times.", "type": "review", "business_id": "F0ZXhPJD8yNS3xzTxsichg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "DzD2p4Ec87NQvVwlpEdhJg", "review_id": "wqW3Q3gpZ8nGuRtqDECAXQ", "stars": 4, "date": "2012-05-01", "text": "Very impressed by Shady's. Really enjoyed the atmosphere here. Reminds me of an old school neighborhood bar in Chicago. The bar has a good selection of beers. The bartenders can make a pretty good craft cocktail also. There's no cocktail menu per se , just let the bartender know what you're interested in and let them take it from there. They show old school movies on their TV and have a pretty nice selection of music in the juke box. Definitely one of the better places I got to visit while in Phoenix.", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "isuV4yXdQn1zRydCBLeZ2A", "stars": 5, "date": "2008-07-31", "text": "::Sigh::\n\nI love places like this. It is adorable and unique and intimate and perfect. The outdoor patio looks like a great hang out spot (but obviously it is too hot for any of that just yet) and the interior is small and intimate. I was surprised when I walked in as it was much smaller than I thought it would be- but who knows where I got the idea that it would be a gigantic place. \n\nOur server was hilarious and fun- he happened to be from Ohio and informed me he was a Buckeye (I'm from Michigan, but I'm not a Wolverine so Buckeyes usually don't hate me) and was pretty cool about taking my fun jabs at his home state. He was super attentive and even was nice enough to give me directions home (horrific sense of direction). I kind of wanted to be best friends with him. Anyway... \n\nI had the one organic glass of red wine on the menu (he brought me a sample first) and the Pasena. Both were great beverage choices. I also got to nibble on the tomato/mozzarella and flaked tuna bruschetta and was pleased with both. I'd go with the original.\n\nI dream of the day that I find such a cute little place on the West side (feel free to suggest one if I'm missing it). The atmosphere rocks, and the unique booze options only add to the charm of this place.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0XAQT93R8-IX65MtF3Ikzw", "review_id": "eW5Ag3SvpjtYYZnwnLPe2g", "stars": 1, "date": "2009-01-29", "text": "We've eaten here a few times, and the food was always good. However, the last time we ate there, I found a BUG in my food. When we complained to management, they still thought we should pay for 50% of the meal. Never eating there again.", "type": "review", "business_id": "u2hGxSbpIOZZ3KliIELuTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kTK724Q8b9kZscfGSpsFqw", "review_id": "rs3B64v_X8uq2r1oGUcW5A", "stars": 4, "date": "2010-10-10", "text": "Persian food... marinated meats...mmmmmmmm\n\nTry the soltani - one skewer each of koobideh (ground beef) and barg (pieces of filet mignon). Along with the accompanying basmati rice, it's an extremely satisfying meal. And if you want a different take on stews, try their ghormeh sabzi. Absolutely delicious! Their shirazi salad and humus make great starters. \n\nI was introduced to this place 17 years ago by a girlfriend. Well, she's ancient history but, thankfully, Tasty Kabob isn't.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "D9WIDdPgbOk8-ChvH_hUfQ", "review_id": "fTReHg_9WJg4hGnJdWKUPw", "stars": 2, "date": "2012-02-15", "text": "I was excited to eat here after reading the reviews. Then I ate there and I was less excited. \n\nI was prepped for some hot spicy New Mexican food. That did not arrive on my plate. It was tasty for sure but I was lead to believe that I would experience the food I grew up with in New Mexico. I didn't. \n\nIt is possible that my expectations were too much for this restaurant to handle.", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 19, "useful": 17, "cool": 13}, "user_id": "tlSSQwfHYJany7wPoTH46A", "review_id": "XkswaXu20GZo2NSuhUes1A", "stars": 2, "date": "2009-06-18", "text": "Over-priced, over-salted and thoroughly unimaginative. Package those adjectives up in a pretty little nutshell and you've got Arcadia Tavern. Arcadia Tavern is a family-friendly, bland and inoffensive, if not overpriced, alternative to Applebee's or TGI Friday's. \n\nI was seriously enthused when a tavern opened up within a five minute walk of my house. I like drinking and I like walking. Combine the two and you get stumbling, which can also have its high points, ripped jeans notwithstanding. But Arcadia Tavern is no tavern. No self-respecting tavern can commit the cardinal sins of happy hour and retain their integrity.\n\nCardinal rule #1: Thou shalt not end happy hour before 7 pm. \n\nSeriously. What is it with places trying to redefine Happy Hour as the hours between 3 and 6 pm? I understand that from a price point perspective the 3-4 or 4-5 pm hours are much cheaper than extending food and drink discounts to the 6-7 pm crowd. But I consider that the same as shining up a turd and calling it a custom made gift. Ooo, you offer three hours of happiness? Pity I can only make 15 minutes of it. \n\nBottom line is 5 pm's whistle blowing time, gridlock makes a girl crave a drink and 6-7 pm is the prime hour for getting that drink on. To end happy hour before 7pm pretty much guarantees happy hour barflies will not frequent the establishment.\n\nFlipside: Three dollar Dos Equis, all day, every day. At least there's that.\n\nCardinal rule #2: Thou shalt offer more than frozen food and canned items as appetizers, and if offering cheap frozen crap, it shall be reflected in the price. \n\nFries, tater tots, onion rings, wings, mozzarella sticks, chicken strips, and the ubiquitous spinach and artichoke dip? Whoa. Don't strain yourself, TGI Friday's. \n\nMy main gripe is with the monster nachos. Maybe I'm just taking crazy pills, but the chips, seasoned shredded chicken and nacho cheese were all wicked salty. We're talking mouth-puckering, tastebud-slaughtering salt laden nachos topped with canned pickled jalapenos (gross), black olives (more salt) and black beans (respect). I'm also biased against the unnatural plastic consistency of nacho cheese. It makes everything soggy and is a tacky substitute for the real deal. Cheese should crisp up around the edges and pull apart in delectable strings, not ooze sadly over a mass of chips and overpower everything else on the plate. I will say that the guacamole and pico de gallo that topped the nachos were delicious, tasted homemade and were a saving grace, but they were also woefully underrepresented compared to the macnasty nacho sauce. \n\nFlipside: The three mini sliders (albeit meager) and grilled veggies platter with hummus showed promise. \n\nCardinal rule #3: Thou shalt provide affordable drink and nosh.\n\nSo what's that nacho monstrosity going to run you? Twelve bucks. Don't blink. You read right. Twelve dollars for salty garbage. Mozzarella sticks? 7. Dozen wings? 9! Completely unrealistic. Shave a couple bucks off each appetizer and you're in the reasonable price zone, particularly considering the cheap tasting ingredients. Taking that first impression into account, I don't think I'm going to shell out 10-12 dollars for a hamburger (without fries) when I could go to Delux and have my socks blown off with flavor for cheaper or to the Chicago Hamburger Co. for pennies in comparison. \n\nFlipside: There is no positive here. For the caliber of food offered, the prices are completely unrealistic. Even the desserts are overpriced. Six bucks for a root beer float? That's a big middle finger right there.\n\nArcadia Tavern, as a representative of the Happy Hour enforcement squad, I hereby declare you undeserving of your title. Four Peaks is a tavern. The Vine is a tavern. Icehouse is a tavern. Hell, even Carlsbad Tavern does it better and they have plastic bats hanging from the ceiling. \n\nI regret that I shall never again spend a happy hour in your warm embrace. Although you may still win me over with $3 you-call-its on Thursday after 9 pm. Particularly when accompanied by a little goldfish racing. \n\nI totally hate goldfish, too. At least share that in common.", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "nSLrExcVVphiNzvSf5H7vA", "review_id": "TIOxXxRDtulXBuqYr1ozPA", "stars": 4, "date": "2012-01-07", "text": "Classic Irish Pub on Mill. Perfect for fish and chips, a Guinness, and a great bar atmosphere!\n\nThe food here is great. I tried the fish and chips ($12) and it was perfect. Lightly battered, perfectly fried. The chips were different but complimentary to the meal. \n\nThey also had several cider beers on tap (my favorite). When I asked which beer I should try, the waitress offered bringing a sample of each so that I could know the beer before I committed to a pint. Great service!\n\nThe outdoor patio is great for parties. If it's cold, they have heaters during the winter. Summer has sprinklers. They've got live entertainment inside on weekends and also trivia nights. If you're looking for a place to hang that is casual and fun, try Rula Bula.", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "eT3p9QIFInKznRVOwvoMxQ", "stars": 5, "date": "2010-07-22", "text": "I almost NEVER give a chain restaurant a 5-star review, not because I'm opposed to the idea but because very few are worthy. But Bandera is just that good, from the upscale casual, relaxed and inviting atmosphere to the excellent service to the delicious food.\n\nOrdering the cornbread to start is a must - it'd be a crime not to. The grilled artichoke and queso/guacamole apps are also wonderful. I had the macho salad, which was quite large and packed with good stuff. I also had a side of the mac and cheese that was outrageously good. Dessert offerings are limited to two choices, and neither blew me away, but the Oreo one was the better of the two.\n\nBandera is, like its sister restaurant Houstons, always a wonderful experience with reliably terrific food.", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QVrTqrLm3MC2QtENKbdanA", "review_id": "Qcp4VFuJwqZiyXihFNgaCg", "stars": 4, "date": "2011-03-01", "text": "After driving by this place about a million times I finally remembered it when the old \"Where shall we go to eat\" question came up and I am now definitely a fan. I asked the server (Chico - he was great and seemed to really love working there) about his recommendations and tried the Salmon Spinach Enchilada which will be difficult to move on from when I go back. It was absolutely amazing and I tried my hardest to finish my plate. Only reason I did not give this place five stars is that the ambiance in the back room was a bit lacking. It was more cafeteria-styled and just not very warm and inviting.\nRegardless, I know that I will be back and definitely introduce this place to out of town guests!", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "gBiJbIhMvXH-jv5bQJycbA", "stars": 5, "date": "2012-12-19", "text": "Tanzy, Yelp, and Lindsey deserve the biggest standing O for this event. \n\nI honestly think I am still full from the generous food options that kept flowing. I kept thinking we were done, but OH NO here comes another course. I felt like I was at a chef tasting menu dinner. \n\nRight when we got there we had a glass of Champagne and were seated with a olive and meat plate followed by some bruschetta and local made cheese. After the event officially started we were hit with amazing course after amazing course. With never empty glasses of wine \n\nMy Favs:\n\nSweet Corn Risotto\n\nScallops (cooked to perfection with a parsnip puree mmmmmmmm)\n\nAlaskan King Salmon\n\nCenter Cut Filet Mignon\n\nBrussel Sprouts yes Brussel Sprouts (Tempura battered with a sweet relish AMAZING)\n\n4 hour braised beef short rib (Talk about melt in your mouth) \n\nRed Velvet Bread Pudding (I will go back just for this anytime I am near the Quarter)\n\nI can't wait to go back to Tanzy for a full meal but I don't know how I will be able to top this evening of amazing food. \n\nI was very surprised to hear they have been open for 2 years as I was really blown away with their food and service. \n\nThanks again to everyone who helped put together this amazing event what a great way to end 2012.", "type": "review", "business_id": "erHz0NkEG1AP3aAtnu3eFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8-InERGLhHGjX3DZPFXMqg", "review_id": "GtAbA4wHomanixDeinLX_w", "stars": 3, "date": "2011-10-15", "text": "Funny story about my experience at this place. My Classmate mentioned she loves this place for other reasons than my own. Yet, when we drove up it was very crowded and parking is minimal when you don't arrive early. We drove in separate cars and I called and asked her, \"are you sure there is no where else we can hang out? It is super crowded. Yet, I am so glad she convinced me to go in and check it out. I suppose you ought to experience it at least once for a night out with friends. There were many different cultures/ethnic backgrounds. I very much enjoyed the band. They played some old school R&B from Next, Bobby Brown, Prince, Cameo and that's just some of what they performed. Excellent Band! The crowd was very pleasant and fun! I had to join in with dancing and singing. \n\nMy rating review is 3.5 stars. I would have to say that this venue is way too small for the amount of people it holds, the dance floor is super small, it's really dark and hard to move around even when you are dancing. \n\nThe staff at Char's is friendly and I've heard the service is good. I didn't drink. So just word of mouth. \n\nI'm not sure if I would hang out there again. I would probably go only if I knew a friend/friends were here. That would still be a maybe. Although, I enjoyed the music, etc. I'm on the fence about Char's for some of the minuses that takes away from a place that could be so GREAT!", "type": "review", "business_id": "ybXlbfOjrKDdz5NoC-G9Gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AfyzIHPy5zds_mqf2Jdc9g", "review_id": "ARmmZO42NOdk_pk5bD9bFA", "stars": 5, "date": "2011-01-23", "text": "I actually visited here about 5 months ago, but I liked it so much I figured I should give it a few good words! \n\nI was at the mall looking for something healthier than a pizza or burger and decided upon this place. It is part of their little slogan after all!\n\nI was not disappointed. I chose the beef kabob with a side of fries and pita bread with a cup of hummus. Everything was positively fresh and absolutely delicious. And the portions were big, too. I didn't think I would be filled up after the meal, but I was stuffed!\n\nThe staff was very friendly and cooked everything in a timely manner. I was surprised they weren't getting nearly as much business as the other joints around the food court. They don't know what they're missing!", "type": "review", "business_id": "XdMG1S6rviOa_bPm1-SKDg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "93CVZEe3_HTk_GdDZOHy6A", "review_id": "72RLVL7ulxXkh-Sv01l73w", "stars": 2, "date": "2010-01-25", "text": "So I was pretty excited about this burger joint opening since it's President Obama's favorite... \nThe burger was good. Not great, not bland, just okay. My biggest hang up with this restaurant are the prices! Skip the beverage... it's very over priced. I was also not impressed with the fries- regular or cajun. They were pretty average as well. Stick with the burger and skip the rest is my suggestion to you.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "m6inybUqM0h5UaSI9jVLow", "stars": 5, "date": "2012-05-24", "text": "i think this food is phenomenal. this was the first place i tried asian food in AZ when moving out here years ago. it has grown since then and the food is always top notch. \n\nfor a late sunday afternoon lunch, the place was nearly empty but their takeout counter was constantly busy. our server was friendly and attentive and kept our water glass filled. \n\nit's been a while since i ate for the review for which i write so i don't remember exactly what it was, but it had the big, wide rice noodles which i love. i do remember that the dish was excellent and big enough to supply leftovers for lunch the next day. \nthey ask how spicy and i've eaten thai food \"spicy\" and it is downright dangerous, so we opted for \"medium\" with a side of spice juice...which was HOT!\n\nwe will continue to patronize Tottie's as they are consistent and the food and service has always been very, very, very good. and very reasonable prices.", "type": "review", "business_id": "KTF-E3NfkJy2wiwcgOPyVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9naiHrcKCUe_YFXyStyL6g", "review_id": "f4nIeSbtfBHBi0yIX9V9NQ", "stars": 4, "date": "2009-04-04", "text": "Just had dinner there last night. Very nice ambiance. We had the cheese, basil, and tomato pizza and the sausage pizza. The fresh mozzarella was fantastic and the pizzas were great. I didn't give it five stars because I like my pizza with a little more tomato. The other reason, but like the first one it is a bit subjective, is that the menu selections for dinner are limited - basically pizza. It was good enough that I definitely plan to have lunch one day next week and try some of the dishes that others have raved about!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "LXWAXIeYFIdgd2JVPF-9qA", "review_id": "6hfJkOJ9WvNWiydtWKWw6Q", "stars": 3, "date": "2011-06-19", "text": "I have been by this spot many times and I needed a place to eat lunch so I stopped in... I entered the restaurant and was seated right away. But then I sat there for a good 10 minutes and watched the workers walk around then I got to see the owners little kid decide she was going to sit with the consumers in the booth a head of me... Then the kid started crying and it just does not need to happen I was kind of shocked please leave your kids at home if they are not working at the restaurant. I ended up getting up and asking the staff if I could just get the lunch buffet. I got a bit of everything to try I enjoyed the rice and the chicken dishes... The fish dishes on the other hand not so good the fish puffs were cold and not good and the one fish dish super fishy tasteing. The bread was really good that came with the meal... So all in all I would say I will not be going back anytime soon nothing to write home about.", "type": "review", "business_id": "d_8bMNQd0mesbEUeq1U2kQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "NybFr19eR0MCAYJmTkszYg", "review_id": "_-CbGQEx7fvwlXyoL-H3BA", "stars": 2, "date": "2011-01-31", "text": "Well, for the most part, this place is average. However, there were some things that were red flags in my book. \n\n1. Dicking us around with the room. Paid for Cabana Room with balcony. First room given - West Wing. Not Cabana. Second room given - Handicapped Cabana Room in back corner, no balcony. Since this was on my boyfriends card, and he didn't want to push for the the Cabana Balcony we wanted, there was nothing I could do. However, I find this highly unacceptable. \n\n2. Dirty - Every morning, when we left, there were used coffee mugs and coffee pots on the floor in the area in front of the maintenance closet. \n\n3. Maintenance crew would leave their carts in the middle of the hallway, and we would have to figure out how to move them to get by.\n\n4. Crude comment from their pool guy.\n\n5. Overall, outdated hotel. Not a good vibe at all. Average to below average service. Overall desolate.\n\nI would never stay here again, and would never recommend this place to anyone.", "type": "review", "business_id": "KQzpjBmnAMXPqipeWTKG0w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gMtc0mLCof1pX_YYUrHfwg", "review_id": "t9I-8NptRMoeBSTT1c7zlA", "stars": 5, "date": "2012-05-22", "text": "This place is beautiful, great patio with classic decor. Went to Happy hour...of course and had a few glasses of wine and yummy calamari. Service was off the charts! We were sitting on the patio...a little hot and Schwetty...and the server kept moving the umbrellas to shade up as the sun set...WOW!", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 4, "cool": 6}, "user_id": "cB30-Og37dzCWFCFzI_ChQ", "review_id": "__esH_kgJZeS8k3i6HaG7Q", "stars": 5, "date": "2007-06-07", "text": "I am not usually a fan of botanical gardens. They seem too precious, too \"perfect\" to be of much interest. And, let's face it, flowers and plants are beautiful things, but when you pay to look at them in neat rows, something is lost.\n\nThat said, Desert Botanical Gardens is an exception to this garden cynic. Many of these cacti look like they are from another planet, like something you would see in a sci-fi film and say, \"wow, it's too bad those crazy plants don't exist.\" They sprawl out on the ground, weaving and turning every which way, or compose huge bizarre formations high off the ground. I never knew such bizarre life forms existed, or that some cacti look like trees.\n\nThe gardens are full of windy paths where one is also likely to find a family of quail, lizards, or a jackrabbit or two. Various species of bird can be seen here as well, especially at dusk. I especially love watching the birds fly in and out of nests they've made in the upper arms of cacti.\n\nThis place never grows old. It's a great introduction to the desert for people from out of town, and because the cacti have been collected from around the world, a cool botany lesson for us all here.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pv8cZW0MLnMMx536us7H4g", "review_id": "vvHdnzS4o8gOyBCAzrlzCg", "stars": 5, "date": "2012-07-17", "text": "Great place. Hard to see behind Carl's Jr. on Southern Ave but is Worth finding!", "type": "review", "business_id": "Shn1EcWqqjRlDp-92D43gA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "6o_ztIbYH6H8hY76pH0L7w", "review_id": "hUF9e26pYkEb67A1daj51A", "stars": 1, "date": "2011-01-11", "text": "So sad to say, I have to change my rating from 5 stars to 1. I had been a faithful customer of Katie's for years, at least 3 or 4! She told me she wasn't going to be doing nails anymore because she had developed carpal tunnel. I was heartbroken. But she told me she was training the others in her shop to be able to do nails like her so I figured I would continue to go there. Next appt I needed, I called and scheduled and said it doesn't matter with who because Katie isn't doing nails anymore, right? I was then told that Katie is still doing nails but she was full that day. Very hurtful! I always tipped her VERY well and was always willing to work with her schedule. But needless to say, I don't go there anymore, haven't been there since I ended up cancelling that appt and going elsewhere.", "type": "review", "business_id": "bVhIs14KgRzyR8umVL1CRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4yfFThiCAsazpVWDb1nlQw", "review_id": "9JX081oVLclNi2NHLL6kFg", "stars": 5, "date": "2011-10-27", "text": "I saw the reviews of this Arribas and thought to myself, \"Are these people talking about the same Arribas I went to last night?\" I went there, and had an awesome time! Service was prompt, and if something was off, our server Jeff (who was amazing) explained why something happened, but didn't blame anyone, and didn't use server jargon. I do understand the jargon, but it was nice for someone to not have to resort to it. \n\nWarm chips and salsas + warm bean dip came out = awesome and the spicy salsa was calling my name. It burned, but I loved it. I ordered the Rio Grande enchiladas with the carne abodoba, and ordered it extra spicy. (Of course, I would) I was with my girl (and she likes strawberry margaritas) so we split the house margarita for 2, frozen with sugar of course. I'm not a huge margarita person, but it was really good. She ordered the cheese enchiladas. (She takes safe choices when we go eat) -more on the margaritas in a min- \n\nFood come out and seriously, it was some of the best spanish/mexican I've had in a while. Its good to see an establishment take risks with seasoning their food. It was fresh! Which is hard to find these days and I'm pretty sure the people who own Arribas own a hatch chile farm because I rarely saw anything about jalapenos or serranos or even habaneros. Which is cool. Those hatch chiles are slanged around that place like coke in studio 54 in the 70's. I'm not kidding, when you order your entree and they ask you what kind of beans you want. Black, pinto, or the 3rd kind that is a combo of black/pinto with some onion, tomatoes, and of course, what's that? Hatch chiles! I highly recommend them. I liked how Arribas uses the hatch chiles. It sets them apart. It brought the heat!\n\nAfter dinner, I ordered another margarita...\n\nThis time, I asked Jeff of a recommendation. Why do I do this? Because the people that work at any restaurant know the food/drinks there more than you will ever know. 'Nuff said. He brought out some margarita I don't even know the name. It kicked my ass, thank god my girl was driving home, that's all I'm going to say. Thanks!\n\nThat's why this place gets 5 stars. It deserves it in my opinion.\nI think because this place takes chances with seasoning and overall outlook is why so many people might be unhappy with Arribas or this location in general. I on the other hand PROMOTE this thought process. I don't want food that's bland that a place kicks off the line to the people outside than enjoy bland food. That makes for a BLAND place that's filled with, well, bland people. This place uses heat, salt, pepper, and other spices that I don't know of. What a freaking great idea! Too hot for you? Then don't eat food that is 99% based on heat.\n\nI will surely be going back, and I won't have a bad time.", "type": "review", "business_id": "xI0UZH734lJtm39DbLf-Bw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "mB7533hZM30GIULkWFBfhQ", "review_id": "ZcK4hh8i1qc68hUbqMMi-Q", "stars": 4, "date": "2011-01-19", "text": "I met up with a friend for dinner here the other night. It's a little far from me, unfortunately; if this was within a few miles of me, I'd be here a -lot-.\n\n For starters, the place is easy to miss. It's a hole in the wall. It's very small inside, only a few tables; definitely consider takeout.\n\n That said, if it's not busy, don't be afraid to stay. We ate in; when there was a significant lull in the crowd, the girl behind the counter came both to clear our tables and to deliver a second item I ordered a bit later in the evening. I wish I'd been carrying cash, there is a tip jar by the register, and I would have loved to have left something for that.\n\n The food...ah, the food. Great bang for the buck. Have I had better tacos? Yes. Once, handmade by a Mexican immigrant my mother was good friends with, as we joined her for a family dinner. In restaurants? No. This is good Mexican street food, small hand made corn tortillas with flavorful, moist meat on them, and some warm salsa on top. Lovely. They even offer lengua, for those that like it, a very nice touch.\n\n As others have said, the rice is very good; I wasn't actually that fond of the beans though.\n\n Is this place worth going 20 minutes out of your way? Unfortunately, no, hence the 4 star. But is it worth going to if you're already nearby? Yes, very much yes.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8h5EXsiEuK5_igQ0cgxPZQ", "review_id": "nt_XQwS5VkTXyrNLb_V_0w", "stars": 4, "date": "2010-09-25", "text": "M-Troniks repaired a 1970's Fender Bassman 10 for me. They re-coned the speaker, letting the stock speakers remain. They also replaced the tubes and adjusted them. New longer cord as well. They fixed this old thing up! \n\nCrazy guitars for sale and other odds and ends.", "type": "review", "business_id": "hmeiF-nZ5-3F-WxLKPmn4A"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "hGitwL2Ixiq3C6mJyQrlPw", "review_id": "WrHw7_9xaDBpgRGfmtJujg", "stars": 1, "date": "2009-08-16", "text": "The cool name of the place is the only good thing here. The burgers are below-average and unenjoyably (is that a word?) messy. Fries, too greasy. Seating, not comfortable. Skip it!", "type": "review", "business_id": "pfTwzep_4hRTX_jXoi38cw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hNk9YQNC9vJpEs5swUlbeQ", "review_id": "L9LucpZaas5DA0QgyRK6CQ", "stars": 5, "date": "2012-09-23", "text": "Good food, if all the Taiwanese comes here that means this is really good.", "type": "review", "business_id": "Cota2ttLUjoKhFU6ukYqSA"} +{"votes": {"funny": 0, "useful": 5, "cool": 4}, "user_id": "ED8rq4vqflssrXbigIhgOQ", "review_id": "fiIbMaIBJ9f9Xx3KSANVcw", "stars": 5, "date": "2008-02-06", "text": "This Mexican restaurant has the best burritos in town! This is not your roach infested 24 hour drive through kind of burrito joint either. Here are the reasons that make La Tolteca #1 and one of my favorite places to eat in Phoenix!\n1-Full bakery with mouth watering fresh pastries\n2-Fresh ingredients and great prices\n3-Also serves beer if you feel like having a Corona with your meal as opposed to take out\n4-Little market has the best prices in town on citrus fruits and just enough of everything to cook up a little Mexican meal (Ranch Market not needed!)\n5-Make your own pico/ salsa bar, make it your style and get as much of it as you want:)\nSo, if you are downtown looking for authentic Mexican this is the place. Of course it is super casual take out or seat yourself kind of place so don't try to flatter your date here! But get there early, I'm pretty sure they close up shop by 9 or 10...", "type": "review", "business_id": "apCfJVnRyaw6oVUBKujpUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "--VxRvXk3b8FwsSbC2Zpxw", "review_id": "he-NH-47uVob8m438j6s4w", "stars": 3, "date": "2011-05-16", "text": "Good sandwich! Better than all the chains, doesn't beat Jason's deli, would like black tea (not green). Fresh tasting and clean", "type": "review", "business_id": "46xWJ6rKZxnrSLWro6EOlA"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "N16QPXw9v06jMd7BZFy0Zw", "stars": 4, "date": "2009-04-10", "text": "i like the ooey gooey cupcake! the chocolate cake is soooo moist and cooked evenly in perfection. only it's served chilled? it's weird. \n\ntheir cookies are good, too. I bought a tub of their easter sugar cookies and they are so stinking cute! they're very sweet though so it's impossible to eat more than 2 per day but soo good. anymore than that you'd need insulin. :)", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UZ_Uq9XGzMViO9474Obabw", "review_id": "ZqnrWakSVBBoujxHNuBiwA", "stars": 5, "date": "2012-12-14", "text": "I went to sears today to check on a layaway that I placed online but was going to pickup here. Margaret, the associate couldn't find me in her system so she personally called the sears.com help line to find out what was happening. She was friendly, professional, and extremely helpful in solving my problem. I went home a happy customer and am very thankful to Margaret for her help!", "type": "review", "business_id": "8qL697NwICTc_ac0-26Ycw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZPk_wcW7Xot6LngEUj_F6g", "review_id": "LPk0VBiUV7gEPlV59EzUvw", "stars": 1, "date": "2011-04-01", "text": "This place has really bad service and the food is barely decent, I would advise not to dine here. There are much better Vietnamese restaurants in Phoenix.", "type": "review", "business_id": "-_npP9XdyzILAjtFfX8UAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "lTvUVHc7o6J3VmC1JQWD3Q", "stars": 5, "date": "2010-04-05", "text": "Shoes, and purses, and make-up - o my!\n\nYour sales totally RAWK guys! I mean, seriously - 50-70% off (gotta catch it just right, people) and then, an extra 30% off that?! I feel like a wild thing, you make my heart sing.\n\nOK, now today, the most I found was 40% off - B U T - then there's MAC! Oooooooo, ya baby. All that glitters is NOT gold. (ok, it's the small things...)\n\nIt was still fun to look at all the purses.... And mark some for future reference. Hey, I am a patient person.... I stop for red - tags, that is.", "type": "review", "business_id": "GU9jjFNKagaxdoIVSR2Q3g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "nNsA-1JIfDknuqBqUedWnw", "stars": 4, "date": "2011-12-24", "text": "Good food in a unique setting with fantastic service. Nobou at Teeter House offers up a very pleasurable dining experience.\n\nI'll start with the great. The restaurant is in a more than 100-year-old house in the heart of downtown Phoenix. There is nearly a perfect feeling that I have been invited inside someone's home for a fancy dinner party. The staff was fantastic. Our server, Alexis, was very attentive, friendly, fast, and really knew the menu (or at least was good at selling every dish with a very thorough description about the technique and flavors used to create it). The presentation of the food is creative and beautiful. \n\nThe not-so-great. The food is served in small portions at a high price. I wouldn't have a big problem with that, I actually think Americans should be more into tapas eating, except nothing we ordered blew my mind or taste buds away. Don't get me wrong; everything we ordered was excellent. The food is perfectly cooked, seasoned, sauced, and artistically plated. It just didn't have that over-the-top \"WOW\" factor I was hoping for.\n\nHaving said that. Nobuo at Teeter House is still a place that everyone should try out at least once. It's an enjoyable place to eat. It's probably a fun place to go with a small group of friends just to hang out, order a lot of plates and just sample what the restaurant has to offer.\n\nAs I said, the price can be a little high. It took five plates and a dessert to create a fair size meal for just two people. That came to nearly a $100 tab (with drinks). But Nobuo at Teeter House is on Local Dines (http://www.localdines.com/?ref=19485) with a $50 or $25 gift certificate. Take advantage of the deal and cross Nobuo off your Phoenix restaurant bucket list.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "G2knDs8rUHCqzjBc5S48yg", "review_id": "jIC-Sv10fIH8WlqqmaiMaA", "stars": 5, "date": "2012-01-21", "text": "Great food, great prices, and great service. I am a big eater and could not even finish all my food for only 8 dollars. The orange chicken was fresh and tender with excellent flavor. The combo also came with fried wantons and spring rolls. Super far from my house, but worth the drive.", "type": "review", "business_id": "3MwUofF-CektEM52NwDaUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ru8p3RTlk8f9LB_3zLXURQ", "review_id": "bBRJYMwq1gUfmeK4ZAgHJQ", "stars": 5, "date": "2012-03-14", "text": "Yes, before you ask, I still love Desert Stages Theatre, perhaps more than ever. This is Andrew's fifth play there and this time he plays the Knave in Alice in Wonderland.\nNormally, we don't ask for a specific role but the director of Annie Jr. thought he would be cute as the Dormouse as he popped up from the table so that's what we asked for this time during audition.\nAnd we anxiously waited for the casting to be posted. When the casting was posted, he did not get the requested part and as a mom and a parent, I was glad.\nWhy you may ask? Because to me as a mom and a parent, it's very important to teach my son the importance of handling success with graciousness and moving through disappointments with a positive attitude. When he asked why he didn't get the part, I told him in simple words that the director had a vision of what the whole play should be like and she saw Andrew in the role of Knave and that was his special role. I also told him that it doesn't matter what role you get, if you play it with all you got and go out there and perform with your heart as there are no small parts, you will capture the audience's attention and that will be your moment.\nHe listened with a typical 5 year old attitude and became very excited about being the Knave. And I was also excited for him because this time around, he had 2 long lines to memorize and speak!\nWith each review, I've written about how Andrew has grown through DST and here I've included a video where you can see him growing aware of theatre and performance: http://www.youtube.com/watch?v=fsG07sMlZ5s&feature=related. This time around, he started asking me if he was a main character, starting to understand the structure of a performance. It was great to see his awareness growing. I highly recommend bringing your own child to audition for a play here. \nIt will be an amazing experience!!\nReally, DST is about the kids. Trusting the kids to do their part and giving them responsibilities. Once the curtain lifts, the kids are responsible for THEIR performance and for each other. It's fantastic to see the kids have their moments on stage, being responsible for moving and arranging the set, take care of the tech, go from loose energy backstage to fanstatic actors on stage. It's all fabulous.\nIf you have doubts of what kids can do, go to a show at Desert Stages Theatre and be amazed. Truly, if you believe in your kids, as DST shows again and again, your kids will shine and raise above your expectations!", "type": "review", "business_id": "VlHp9AFc9repIF6braYCCg"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "Hyhmpb3UnbjtSEXvgviCow", "review_id": "B52aOzKKzk-atTvuzCOWGQ", "stars": 3, "date": "2010-03-02", "text": "The fitness part of this place is great: machines are new and plentiful. Good classes on the schedule, and plenty of cold water and fresh towels.\n\nNow, the spa, on the other hand, is mediocre at best. The pool is a bit of a walk and available to anyone at the hotel; same with the jacuzzi, which also means the jacuzzi is outside! Why no jacuzzi inside? The steam room is small and there is no sauna. There are only 3 shower stalls, with shampoo and shower gel, but no conditioner. The lounge area is also small and not at all relaxing. And the robes are super thin (with a chilly room; that's not even nice!) and not very big. I had to sit very carefully so as to not expose myself to everyone. Hello! haha.\n\nThe massage itself was very nice, but the spa is not relaxing, especially for the prices. I wouldn't return to the spa, although the gym is good.", "type": "review", "business_id": "S4kuNIvOCbiylaGLwY2aHw"} +{"votes": {"funny": 3, "useful": 5, "cool": 2}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "1N_ufhUQLIBoEtKBzEiDEA", "stars": 2, "date": "2010-01-01", "text": "I must have looked like a poor, ugly person the other day bc seriously NO ONE helped me. no one even said hi. I was in there for an hour too. \n\nI decided not to buy anything bc the service was so bad. \n\nthis is a little bit like OJ's \"i didnt kill my wife, but if I did this is how I would do it\" in that if someone had helped me I would have bought 6 place settings- mats, chargers, napkins and napkin rings. I also would have bought several drapery panels. \n\nbut no way was I going to spend that much money at a place that couldn't even say hello or ask a girl carrying around a ton of place settings if she needed help. \n\nso i just set everything I had gathered up over the hour in a pile and left. you're welcome employees, hope you had fun putting everything away. i also hope they work on commission and are regretting not saying hi to me.", "type": "review", "business_id": "WjnjiCzjgjPHGA9hp-Wyww"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "TSN_KWBsNc4pAoChdpwi1Q", "review_id": "FhqmewMA5KyWFgukpiDcew", "stars": 5, "date": "2011-03-24", "text": "For a boba drink fan like me, it is still rare to find a tea place that has authentic tea (and not just milk powder), hot or cold tea choices, and boba and tea that taste great individually or separately.\n\nI ordered an iced chocolate chai (yum! such a difference from plain old Oregon Chai used at most coffee houses) with boba. The only negative is that the drink was $4.91, but it was well worth it! Mmmmmmm love this place!", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 9, "useful": 9, "cool": 7}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "iCDLG6a5zf9Z4RlZgt2B6Q", "stars": 2, "date": "2012-06-18", "text": "I initially visited Daily Dose about a year ago after a night out. I was only able to stomach some coffee and a few bites of breakfast nachos that morning, so I wanted to come back for a real (sober) meal. Alas, they made a better impression on my first visit, headache and all.\n\nMy recent visit was on a Sunday, around 11:30am, and surprisingly there wasn't a line. We had a 5 min wait though, so we helped ourselves to water & coffee from the pitchers outside. When we were called to our table I was a little disappointed - the table was tiny and squeezed between the door to the front patio and a server's station - but I let it go. My son knew he wanted a cheeseburger and I finally decided on the Ancho-chile corned beef sandwich with sweet potato fries. Yes, this was going to be a cheat day!\n\nOur waitress seemed.... off, and lacking personality. She didn't take our menus after we'd ordered and there was no where to put them on the tiny table, so they ended up propped up against the window. Same thing with our paper cups we'd brought in from outside - they sat next to the menus the whole meal. The wait for our meals was a little long in my opinion - about 35 minutes. During that time, our waitress was completely MIA and our drinks sat almost empty. Thankfully, the guy who finally brought out our food was nice enough to refill them. \n\nSo, I thought corned beef rubbed with ancho chili spice and topped with sauerkraut on rye was going to be a bomb of savory, tangy, spicy flavor! But.... not, not at all. What in the hell do you do to sauerkraut to make it BLAND? How do you make these yummy ingredients just completely flat?? Frankly, I was PISSED I wasted so many calories on this sandwich. I ate half because I was really hungry but didn't even bother to take the other half home. On a more positive note, the sweet potato fries were excellent.\n\nFeeling unfulfilled, I decided to try my son's cheeseburger. Even though it was from the kid's menu, the burger was ENORMOUS and they sure didn't skimp on his fries either. Sadly, the burger was also really under-seasoned and I honestly wondered if they'd seasoned it at all. The pretzel-bread bun was the most flavorful part of the burger - it was yum!\n\nAbout 15 minutes after our food came out, the waitress finally came by. I asked her for a box (for my son's burger) and the check, which she brought to us at the speed of light. I was very surprised to see I'd been charged $2.50 for a glass and a half of lukewarm, weak iced tea. If I'd known that, I would've ordered a Tecate light for the same price. Anyway, I got the distinct impression she wanted us to leave so her table could be re-seated with people who would drink and rack up a bigger bill. Her loss, as I usually tip very generously when I'm out with my son. \n\nOverall, I was just totally bummed with Daily Dose's food, service, and value - and bummed my 100th Yelp review only deserves 2-stars.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "CRywkebZtGq0lKcbRlOPqQ", "review_id": "LcY1oTxM5sOn_5opdsuqiw", "stars": 4, "date": "2012-03-18", "text": "Yup. Definitely a fancy mall for that credit card burning session.\n\nA combo of outdoor and indoor. You probably can find most everything the average person can't afford here. \n\nIt seems to be the spot for malling in Scotsdale.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kzL2COV2uZeghim_gkeE8g", "review_id": "OTlXCFxFkmzbj2qxC-Os7w", "stars": 5, "date": "2010-08-22", "text": "My friend took me for a birthday lunch. John our waiter was very helpful and had perfect timing. We shared the Stetson Chopped Salad and Fillet on Toast with leeks and homemade potato chips with blue cheese. The kitchen plate/split our fillet, always a plus. The salad with salmon, chicken is offered, was tossed tableside. CC always has it's own twist on offerings. The bread pudding and banana icecream were decadent. \n Wish I lived closer.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "9HPz67hx4MbFa-C1JR_PUg", "stars": 5, "date": "2011-11-28", "text": "well dang gummit....git on over here and by me some camo flawj....tha kind that has little dangly moss on it....and while yur at it, i need me a gun....\n\ntoo bad i already have a gun and camo. i use to be a big hunter....deer, dove, turkey, squirrel, ducks etc. it's what you do in south georgia when your fridge is empty and you're hungry. \n\nthis bass pro shops is ENORMOUS!!!!! i love it. although i don't hunt anymore, my brother and father do, so every year i get gift cards for them from Bass Pro Shops. the gear and guns are more expensive than other places, but their selection is incredible. when my dad comes out here, i can't wait to take him here to see all the taxidermy and fish tanks...i know he'll love it. \n\nthe staff is usually friendly. the firearms dept is a bit intimidating and the guys at the counter can be smart asses. but this place is just really neat overall. it is also a family retreat, so don't be surprised to see hundreds of kids running wild while their parents let them be terrors.", "type": "review", "business_id": "UU-kkvyX6pyrl_4fK6Qpvg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "qw-9YLeLbSt8PNrNrXubLQ", "review_id": "rOCdYealgD2vyw5vg4BTIg", "stars": 4, "date": "2009-11-25", "text": "We stayed at the Pointe Hilton Squaw Peak for four nights...ate here twice, and picked up food to go twice. Everything we had was tasty and well-done. I liked the New York Gorgonzola sandwich the best, as anything with creamy horseradish is spot on in my book. The au jus seemed better the first time I had it. We came back for s'mores with the kids one night. We were kind of hoping to do the marshmallows over the fire pit outside but there were a few people who may have posted on here previously who looked at our kids in horror. The server rushed over and said they're not allowed to serve marshmallows over the fire pit -- they bring a small burner right to the table. We still had fun and the old fogies outside enjoyed their drinks in peace.\n\nOh - prices are a bit on the high side but that's to be expected, i guess, at a resort. Bottom line - the food was good!", "type": "review", "business_id": "O-ylVyHn6e6kaoJO-jHj-w"} +{"votes": {"funny": 3, "useful": 7, "cool": 6}, "user_id": "znJZPwdZOliFbhllS9A15w", "review_id": "RAVXWX9GmWysVppcMoxnbg", "stars": 4, "date": "2011-11-08", "text": "I've spent more time than I need to remember in hotel bars and restaurants, and they all kind of fade into a blurry, nebulous, mass. \n\nDistrict, however, stands out.\n\nFrom their pork sliders and bacon wrapped dates on happy hour, to their cold and juuust right gin martinis, I don't think they hit a flat patch the whole week I was there, and I stopped by at least once a day. The bartender I had, Matt, was funny, smart, sweet, and made me feel like I had a friend in Phoenix. The experience was more than I could have asked for from a hotel restaurant, and if I stay in the area again I will definitely go back.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "yP1YYOSHz7Nr5NvV8Dd1tw", "stars": 4, "date": "2007-01-31", "text": "It's hard to rate this place because you never know what you're going to get. At it's best, I'd give it a clean five star rating. But, at its worst, the service is slow, and the bizarro factor knocks it down to 2 or 3 stars. \n\nWhat has the ability to take this place up a notch is karaoke. It draws a diverse crowd of headbangers to rappers to punks to cowboys, which is where the bizarro element comes in. Sometimes the mesh is weird and amazing in the David Bowie meets Trent Reznor way, other times its odd and off-putting. \n\nI'd say scope it out on a given night, and if you don't immediately get a good vibe, roll across the street to The Coach House and grab a cheap pitcher and come up with a new plan for your evening.", "type": "review", "business_id": "L7_-U4QPJBYxEpD0BdT4Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FWOkELL9N54INaz3NB0IxA", "review_id": "1KKxN9BHMTIGNPNU82RTwg", "stars": 5, "date": "2012-04-07", "text": "I've been taking mine and my family's cars to Cathedral for more than a decade. We are always treated fairly, and always have a good experience - the guys always stand by their work and \"go the extra mile\" to be sure our cars are fixed properly. They work on both our new(er) cars and my cars from the 50s and 60s. \n\nWhenever anyone is looking for a mechanic, I will send them here without fail - and John and the guys at Cathedral have always come through by totally taking care of anyone I send to them. In a business filled with some sketchy practices, I know that whether I send my wife, a friend, or a coworker to Cathedral they will be treated honestly and fairly. Cars break and break down, that's a fact of owning one. I'm glad I have Cathedral to make dealing with it so easy and stress free so I can get back on the road as quickly and cheaply as possible.", "type": "review", "business_id": "NcWd10MG5WMl4kOHv3iDsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hfPIJ-kjwpHHTT0J6jvTfw", "review_id": "efBUdlCGipfutYbbUTlntA", "stars": 5, "date": "2012-02-11", "text": "Great happy hour specials. All the appetizers are delicious! Service is first rate and it's nice to sit outside on the patio. Great people watching without being too obnoxious! LOL", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hA3nsXht1PdmxX3YHU-I8w", "review_id": "TK0vNf15Oq5euPx3OOGBnw", "stars": 5, "date": "2011-08-04", "text": "This review pertains to carnitas, and as such should not be taken as a suggestion for ordering any of the following: fish tacos, rice, beans, horchata. That's about it! Yum!", "type": "review", "business_id": "mTc8M-drs2HSG8paNUTTQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rL3dPeKDTybG_ct9OCXGAA", "review_id": "Z4T5P7SCoTXO6IpXmdhfxw", "stars": 4, "date": "2012-03-05", "text": "I've been to other Pei Wei's in the valley and I've yet to see any as busy as this one. The food is consistently good; do expect about a 20 minute wait for food if you are dining in. They recently got the new Coke touch machines where you can make your own flavor combo! YUM! This place can get noisy; I wouldn't recommend bringing kids since this place is very hectic and can be overwhelming to small children. Take Out is stellar and most of the time food is ready when promised.", "type": "review", "business_id": "naqJ8iKmZ1m9YWOyvgODZQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zv0xza_2RteC7J7Mj7-FtA", "review_id": "UU5rtuGMy9nsV-vkhgflUg", "stars": 4, "date": "2012-01-10", "text": "the folks at national car rental were very accommodating and even helped me upgrade my rental at little cost to me. if the deal was right, i would definitely use this company again when visiting Phoenix!", "type": "review", "business_id": "Udas3Rfvcb3sv7q8OeJ1Rw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SB37ySvE9n2GY0AJi47nug", "review_id": "5jnakHPMBlGdOwmg_Jngqg", "stars": 5, "date": "2011-11-19", "text": "I love that this Safeway is right across the street from my work. I like to walk here for a bit of exercise to get lunch. The deli is awesome. They have a sandwich bar that has these really great gourmet ingredients they will make a sandwich for you. For 5.49 it's not too bad and if you use your Safeway card you buy 7 get the 8th sandwich free. They also have premade salads and a hot bar as well. Very friendly, Alan who has made my sandwiches the last couple weeks is very friendly and does a good job. Bonus points the Starbucks is right next to it!", "type": "review", "business_id": "Sm-KSR7qtHmP-Z1yBPxedA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "HZvzvZaXpp7q-tIaI2QBaA", "stars": 5, "date": "2011-02-08", "text": "Imagine a white silk wedding dress.... black! Well, that may be a bit dramatic but it was pretty bad. More than 1.5 years after my wedding I took my dress in to Bell. They kept my dress for a couple weeks, called me when it was ready and I was so excited to see it almost new. They did a fantastic job and were careful not to over treat the lace and silk with chemicals. They made me feel like they really cared. \n\nThe business is family owned and the man at the front is so nice to work with. And, the pricing was extremely fair. I paid $89 which was much more reasonable than other places I checked. \n\nI highly recommend Bell Cleaners.", "type": "review", "business_id": "1crzPdwnlm2zHdQ2nP4n7w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "af5FWCN9M7Fvxy433o-P9A", "review_id": "8oFfh8Oohtug1-sX7pYmxw", "stars": 5, "date": "2012-04-24", "text": "This is one super cool cafe/lounge. They serve coffee, cocktails, and some quick bites that can go along great with your drinks. There are several rooms you can choose from to sit and relax. Art decor surrounds this stylish joint and just had a great time here sipping on coffee and chatting with a friend who recommended this coffee shop to me. I noticed a younger adult crowd here but it doesn't matter. Wi-Fi friendly, too!", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nCy31UqpvcAe6zyzeFgtLw", "review_id": "x36fMK4ndlapA5I5pUeGAQ", "stars": 4, "date": "2011-08-04", "text": "Tucked into a strip mall, the parking lot near the grocery store still has plenty of parking. We came on a Monday morning so it wasn't really busy and we sat promptly. \n\nLooking at the menu, I'm looking for unique specials and being a fan of hash browns, I went with the Wolfpack. The food itself was nothing special. Each individual element stands on its own - 2 eggs (I chose egg whites), bacon, cheese, and plenty of hash browns, but it was a filling meal. I had the over easy ice so it was a nice cold coffee drink for the warm weather. My friend had the crying pig omelette which seemed pretty good. The decor was nice and staff was pretty nice. Although our table was right next to another, I didn't feel like either of us were intruding upon each other. Overall, a decent place and worth visiting again to try some of their other specialties.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gcyEUr4DXcbjnGRAWFtfAQ", "review_id": "sTHDQHUhZFgY5FSA040T7Q", "stars": 4, "date": "2010-03-28", "text": "So wifey and I decided to check this place out for our monthly date night. It's a cool little spot around 12th st and Oak, in the middle of a neighborhood. The decor is very modern, but warm and inviting. We opted to get an appetizer and a few of the small plates rather than the larger plates they had. They had a balanced but approachable wine list, I had an awesome Tempranillo for under 10 bucks a glass! We opted for the crispy shrimp and okra for the appetizer, which came with this spicy banana sauce and this cool yogurt sauce. I really really liked this dish, the okra was great and the shrimp were succulent and perfectly cooked. Not sure about the banana sauce, but overall a great dish. We then decided to get the stuffed dates with crispy Schreiner's Chorizo and Manchego. It came with dressed spinach, prob one of my fave dishes in Phoenix right now! We also ordered the macaroni and cheese and I forgot to mention the toasted bread and roasted garlic we ordered. The bread and garlic was just okay, nothing special. I, surprisingly, was not a fan of the mac and cheese either, it seemed very grainy (I know it was chock full of parmesan so that's probably what it was, but it was just unappealing to me). Overall this place has potential. I'll definitely go back, especially because we got out with 3 glasses of wine and 4 small dishes with tax and tip for under $70.00!!", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "I8HW-b_uWtlmEy_2uiGK_g", "review_id": "aR3gF7fS6_YiZxnzYWmxXg", "stars": 1, "date": "2012-04-29", "text": "Lots of \"gay on gay\" homophobia here. Hick bars in Alabama are more gay friendly. Staff and owners know this but they do not seem to care. Oh well", "type": "review", "business_id": "eFK2QePKvAowH-uX-0V4hQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uCb3zzlC83tr5W-xcBJfXw", "review_id": "NSVZ5tKuCxMx3zbUe60hIg", "stars": 4, "date": "2012-05-23", "text": "If you appreciate a good dive bar, you will love this place! We came here for the first time when our team was playing in Glendale. Dos Gringos played host to all BCS fans and it was a blast. They have giant Jenga, dancing, multiple levels & bars and a great outdoor space. The facilities are a little beat, definitely a place where you don't want to touch anything in the bathroom, at least when it is packed. The bar staff does a good job of managing the crowd and I never felt like I was wasting time begging for them to ask me what I wanted.\n\nWe returned for a bachelorette party and although we still had a good time, I think this place really thrives when you are with a huge group. Food is decent, but not why you come here.", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "6E4OtRwui-_N4807KGys1Q", "stars": 5, "date": "2011-08-22", "text": "I hired Property AZ to rent my upside-down home in North Peoria (stuck with the house so we rent it out), they are very experienced and had great customer service. I have had bad experiences in the past with management companies not taking care of the renters or getting back to me.", "type": "review", "business_id": "IaKKCKMtXAtcOta8yzlN6g"} +{"votes": {"funny": 5, "useful": 13, "cool": 10}, "user_id": "S3bvMOL50vgS_8-TtlGi4w", "review_id": "j1ZVJokxBKvI0dX2652FoA", "stars": 5, "date": "2012-06-06", "text": "This review is mainly for the bar and a few light (ok not light, but small) snacks. \n\nMet with a couple people during their soft opening and there was absolutely nothing soft about it. I got there a few minutes early and posted up at the bar to grab a Manhattan. This drink is usually my boozometer when I am trying a place first. Ok, we've got something here, this drink is tasty. Started talking to the bartenders and got a really comfortable feeling from them. When was the last time that you sit down to the bar and they ask your name, tell you their's, and then shake your hand? \n\nAfter the manhattan the rest of the group showed. The bar was a little too busy to fit the three of us so I took my second drink, sazerac, to the table. Sazerac was tasty as well. Rest of the table ordered some drinks and nothing negative to be said anywhere. We each had around 4 or 5 drinks and every last one of them was delicious. \n\nWe were comped a few bar snack and all were delicious but the stand out was the warm nuts. (twss) Mixed nuts warmed with Herbs De Provence and a little bit of chili flake I believe. Soooooo good. \n\nAs for the style of the place it is fantastic. Feels cool but not cliche. The Palomar staff did a fantastic job of designing this space. As of now this is the one place in City Scape that is worth while.", "type": "review", "business_id": "kr3EFhoSwbJPrL_e_RD39g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "mRTY_S2IQyAweG0pLNOgLQ", "review_id": "muGQ1Oeb_VQEf2KhADUfCw", "stars": 4, "date": "2008-10-07", "text": "I like to start out any restaurant reviews with I'm a vegetarian so my choice of food is limited. Please take that in to consideration.\n\nI've been here once before and had breakfast, and it might have been one of the best breakfasts in the world. I would have given it 5 stars if I wrote my review that day. \n\nI went yesterday for a sandwich and salad and thought it was so so at best. I was a little bummed about the instruction, or lack of instruction from the staff on how to order. It appears, and I didn't know this while ordering, that you can pick what ingredients you want to add or delete from certain sandwiches or salads. I got what I got, and it didn't exactly include what I like, or what I didn't. \n\nToday I would give it three stars, but since I liked the breakfast so much, I'll mix the review to give it 4 stars. Only fair. \n\nI'll go back and give it a try again sometime. I'm in no rush to get there, but I wouldn't avoid the place either. For breakfast, if I do want some french toast, waffles, or pancakes I'll head down to give a second shot for sure!", "type": "review", "business_id": "92WbJ5Zo_9hRCoOstWEo0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pIm17SVRo8IdhGoBD4qbnA", "review_id": "nfJbt7vx1yHbdzOX9acN5Q", "stars": 4, "date": "2012-01-22", "text": "Their Chicken Critter Salad's got game. More portion of chicken than any other chicken salad I've ordered elsewhere. They have other great entrees, but this cowpoke likes his critters", "type": "review", "business_id": "YvQKDmSQqs-R7vPEWV2EiA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "jM4qX4eiH9tIG9VUaN2knQ", "review_id": "6aD_9RIqycbOqCVuEudm5w", "stars": 5, "date": "2010-02-04", "text": "Pita Jungle is now one of my favorite places to go for dinner. It's both affordable and healthy. Thought it's usually crowded with \"Hipster\" ASU students, I have yet to receive bad service. Our food has usually come out in a timely matter.\n\nAs for the environment, It's very nicely decorated with art from local artists and it's very well lit. It's nice and open so you can see what's going on through out the restaurant. It's never to noisy, so it would be a great place to take a family or even a date.\n\nAlmost every visit, I've always gotten either the Broiled Chicken Salad or the Lavosh Shawarma Wrap. The chicken has always been moist and dish is always flavorful. The lemon vinaigrette dressing is almost good enough to drink! Though I have not tried a lot on the menu, some of the food they bring out always make me say \"Ooh, what's that?!\"", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "8CNEh7fSbLwDuAKhLjDPKQ", "review_id": "FT5j4Btch7KpEk0wSBZpKQ", "stars": 5, "date": "2009-03-05", "text": "Not that you can compare Firebird to anywhere else in Az but I have been to Joliet Raceway in Chicago (and even though that's newer) I like the arrangement of Firebird and the availability of the different tracks available to race on.\n\nFirst off... NHRA... come on... hands down one of THE coolest events in Az ever, next to NASCAR and well pro any sports but the 8000hp cars come only once a year. The pits are setup nice so every ticket gets into the pits to check out the teams and cars, beer and food are expensive but what else is new.\n\nThey also have drag racing events, any type of racing event, drift, road, moto races, dirt bikes, monster trucks, top fuel drag boats on the lake... I'm sure I'm missing a lot but nowhere else has this in Az.\n\nParking is always good to go... driving out of there just takes a while as you've got one main road that you get on to funnel onto the I-10 but not much they can do about that.\n\nGreat place... keep bringing in the NHRA and letting us use the road tracks for our motorcycles and I'll be happy.", "type": "review", "business_id": "VGQQnqEFME8q7XSe6dAwYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KYeLSM3MQpirmHukVV5Iow", "review_id": "slg8sgyPPuKnJ0nXTkwVNg", "stars": 3, "date": "2010-01-27", "text": "I think people have a tendency to overrate this place because it is the only restaurant of its kind. Don't get me wrong, the pasties are great, but there are a few reasons why this place isn't a four star restaurant:\n\n1) It's overpriced. You're paying almost 15 bucks for a lunch originally meant for miners.\n2) It's cramped. Good luck going there with more than one other person.\n3) It's a little dingy. Someone said the atmosphere is great.... Huh? Not sure why a dark dining room that is six feet wide and crowded can be considered a nice atmosphere, unless maybe you grew up in a sewer.\n\nAlso, make sure you get there early if you want a table or food in a reasonable amount of time.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "0CRk-70pIHwk16iKGVCpxw", "review_id": "V9wimrKSP690bFbevi-y_A", "stars": 3, "date": "2011-01-03", "text": "Pretty good, not remarkable in any particular way. Last minute decision to pop up to the bar for dinner last night. Love that they have Dos Equis Amber on draft (most places only have lager). Chips & guac were a little diappointing.... tasted like the bottom of a bag of store-bought chips... but the guac itself not too shabby. Salsas were unique and I did enjoy their flavor. Had the carne asada plate which comes with rice, beans, and a really delicious authentic thin tortilla. The beef had good seasoning and flavor, but a little dry and chewy. Fish tacos were fine, but again nothing remarkable. Dark atmosphere, nice bartenders. Good pinots by the glass.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IHXLU0bFY3gvX7IzT2a34A", "review_id": "6DxG3WWYriTqg7p42FZscg", "stars": 4, "date": "2010-06-29", "text": "I see a few of the previous reviews discussing issues with service, but I have always had good service at this place. I have only been in a handful of times, but we never have to wait very long to be helped, and the staff is very friendly.\nI have only ordered salads there, but I've enjoyed the three that I've tried (Maggie's, Jamaican Jerk Chicken, and Greek). The salad dressing always comes on the side, which is perfect, because that is how I like to order salads (so I can control the amount of dressing.) My husband loves the pulled pork, although it's popular and sells out pretty quickly from our experience.", "type": "review", "business_id": "T9BPnYNKtk6B42W0cJJXnA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Gzq5CtS6pD4JOKvXNJ4B3Q", "review_id": "DzO2GIHvhoT9IjvBOD9sag", "stars": 4, "date": "2011-12-22", "text": "I loved this place! Amazing food and service. The servings are just right and very flavorful. Would highly recommend this place if you want a nice quiet dinner.", "type": "review", "business_id": "tyETqrYijm3cY4noCwl9Ww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "4GcTH21aOOH4YpZqz9edsA", "stars": 4, "date": "2011-11-01", "text": "My friend and I have been waiting for this place to open, because it looked so good. We finally went today and weren't disappointed. It is very similar to Paradise Bakery (price and food wise), but in my opinion is better. They have sandwiches, salads, soups, pastas, and paninis. Both of us got the chicken pomodori and it was SO good. Super flavorful and filling. This place gets super busy, but there is a ton of space so you won't have trouble finding a place to sit. They will bring your food to your table and also grab your plates when you are done. Great food and good service. We will most definitely be going back.", "type": "review", "business_id": "di2QHs2SrY0XFHcfAq_k2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bomxdD965gZr9j4iuUIqjw", "review_id": "HqEufBNvAJbt-BAul4TYTQ", "stars": 3, "date": "2011-10-22", "text": "Enjoyed dinner on the patio - I had the Pad Cha Seafood dish rated \"Thai hot\" - the so-called hottest dish on the menu. The person I was with ordered the ginger fish - mediocre at best, although it looked great with a variety of vegetables and pineapple. I felt the dishes looked better than they actually tasted. The seafood (mussels, calamari, salmon, shrimp) in my dish was very fresh but it wasn't Thai hot at all. The ambiance of their patio was enjoyable and the Thai iced tea was very tasty although a little too sweet towards the end. Overall, I will probably give this restaurant another try in the future but I wasn't very impressed with the taste of the food.", "type": "review", "business_id": "KPoTixdjoJxSqRSEApSAGg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hsdWN0vcnR-rPyRTztw7Sw", "review_id": "0AmfhzaYbwKMNGGFI61rcA", "stars": 4, "date": "2012-05-11", "text": "Yume Sushi Grill is a great spot! All of the sushi is very fresh, and they pride themselves in having great quality. The sushi chefs are knowledgeable in their craft, and also extremely friendly to have a chat with. They serve free salad and miso soup, and the serving staff is friendly, helpful, and attentive.\n\nThe Korean dishes are pretty authentic, and the home made kimchi is great! I recommend the bulgogi, bi bim bab, and spicy pork for meals. Lunch time is the best time to go, as their lunch specials are amazingly priced for the amount of food that you receive. \n\nThe one complaint that I have is that they don't stock a few of my favorite kinds of sushi (although I know they aren't the most popular) mackerel, quail eggs, and surf clam won't be found on the menu.", "type": "review", "business_id": "nKrK1aK2uWtL57Q3ShH6Hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_yHJOWee2trtkQZcPk7cEA", "review_id": "Pl-sp75fD0Ew05OOeZUPFg", "stars": 2, "date": "2012-11-24", "text": "We had the potstickers, kobe beef skewers, red curry clay pot and sizzling shrimp. All of the items were mediocre at best. The potstickers were deep-fried and way overdone. The beef was also overcooked and somewhat flavorless. The curry was very spicy but otherwise strangely bland. Steamed rice was extra and came in a cup sized bowl. If I had been told that the shrimp dish was store-bought and microwaved, I would not have argued with that.\nService was normal. Music was annoying club tunes and too loud for 6pm. \nAll in all, I'm glad we had a groupon and didn't have to pay full price for a decidedly below average dining experience.", "type": "review", "business_id": "GDmue1oJaem9ilywDtA4_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "of1F2yjBqr2hqifuWEagHQ", "review_id": "JXIUl2abhExk0SkScZhKcw", "stars": 2, "date": "2009-04-06", "text": "The food leans toward the SouthWest and is located near Old Scottsdale. The place has a couple of patios as well as couches/easy chairs for seating. Large curved bar with televisions. Tons of tequila.The place tends to be busy because of its location, however the food is nothing special - burgers, wraps, tacos, etc. Prices are steep considering what you get. Service can be spotty depending on time of day.", "type": "review", "business_id": "cdacUBBL2tDbDnB1EfhpQw"} +{"votes": {"funny": 6, "useful": 10, "cool": 8}, "user_id": "0oRtnPHtvZIE1UNxCDDTPw", "review_id": "n5vMY3AOigJKP3VyqmPVgA", "stars": 5, "date": "2011-10-08", "text": "Teresa S. and I were one of the lucky ones to win tickets to see Cavalleria Rusticana and Pagliacci last night at the Symphony Hall, and we were impressed with the acoustics. The overall sound quality of the live act was fantastic, so overall I'd say that the gig was pretty amazing.\n\nIt's a fabulous hub of culture, but the food concessions need some urgent attention. The only munchies they have are desserts like cookies or pies, so be sure to have dinner first.\n\nOne of the great things they offer is you can now pre-reserve your intermission drinks.\n\nYou can pre-order your favorite libation before the show, and they will have them ready on the refreshment table. \nThat would save you time in case you need to whiz to the loo, and not have to wait in line again to buy your drinks.\n\nThank you again to Yelp and Arizona Opera. The show was wonderful.", "type": "review", "business_id": "zDfs1Kyk8orFF8bRnSPx-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qZyCePyIinjHI8C60SQrIw", "review_id": "EeFMgkR-r5RxQw-JLFhURg", "stars": 3, "date": "2011-05-19", "text": "I love to eat here, however it is hit or miss. Sometimes we get good service and other times we don't. Sometimes the food is really good, but other times it's off. Our order is usually messed up, but they are good about fixing it. One thing I have a problem with is using coupons here, I had a coupon for a pizza and also ordered an appetizer at happy hour half off. They did not want to combine the two offers but the coupon didn't say say anything about that. \nWhen the food is good though it's really good, which is why we return.", "type": "review", "business_id": "8G4_ESDS6BOTVCAlNt6O8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9Ysj3f3tI3m5QRDxvQAIKw", "review_id": "Je3DCG-UE0BL23pw0dNgEw", "stars": 4, "date": "2006-10-03", "text": "I've been going to Unique since I was little.... when it was called Chic n' Cheap. I always find at least one decent thing at Unique. Granted it doesn't have tons of great stuff, but it is a great stop on a shopping day. And this isnt a psudeo thrift store that more of a vintage store and therefore can charge non-thrift prices. I'm talking shirts under a dollar. yeah.", "type": "review", "business_id": "hP_TLIk8xToWxsYKCl9w1w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6DWQIoYWkAHAU3kYE_qr1g", "review_id": "BYIHWRyv5IW3mj67h4tpQQ", "stars": 5, "date": "2012-04-02", "text": "So I just called to book a class for me and a friend from a Groupon we bought. The classes for the next 2 weeks were all booked :(. I called and spoke to a very pleasant Paul who said they are extending this offer for a month. Yippee. You rock and we can't wait to try our hand at this exciting craft!! Huge props for Great customer service!!", "type": "review", "business_id": "eTigBoM4pevB61ie0MHVsQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "IsvpOkTel_AWtGTAapM6XQ", "review_id": "ItI8dyEqdoe4Zz8k7sALjw", "stars": 5, "date": "2012-04-25", "text": "This restaurant has the best Italian food I have ever ate in my life!!! Definitely one of the best restaurants in AZ. I had the saut\u00e9ed calamari for an appetizer, and an amazing dish for dinner with red snapper and pasta. Their bread also melts in your mouth. Blown away by the service. Gilda was my server, and she was amazing. Everyone was super nice, professional, courteous, and sooooooo hospitable. I've never had service this good at a restaurant other than at Cafe Poca Cosa in Tucson. SERIOUSLY. AMAAAAAZING restaurant!!!!!", "type": "review", "business_id": "gHKB66up5VluCWT4vuSZpw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "Nqr0wnL2LphwCTauIs5Jug", "stars": 3, "date": "2008-07-16", "text": "I came in here to order to get takeout it was 19.99 For 2 cheese pizza's ummm not so cheap. They only use 1 type of cheese the pizza was not great I wouldnt go that route again but I am willing to go back and try the Veggie pizza. I surprised my brother with some suicide wing's I dont eat meat but I did try the sauce and ate some w my pizza it was HOT. He loved them all 20 were gone at the end of the night. They said they were SO HOT but the boys just couldnt stop eating them. They said they were very good meaty and not too vinegary. An extra star for making the boys happy with the hella hot wings that night. FYI they probably use hydrogenated oils here by the way but I didnt ask!", "type": "review", "business_id": "qrIObcWKK3jeC3zfmR54kg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nLPHUC9ZMCG1xm86_1xqjQ", "review_id": "O9Sdhe5YEAXKJbNYuQq4wg", "stars": 5, "date": "2011-01-03", "text": "A must! One of the BEST dog food stores in the Valley! Great service and quality, natural feed products for your dog. You can rest at peace knowing that your pets are in GREAT hands.\n\nMark Siebel\nhttp://www.doggiestepsdogtraining.com/", "type": "review", "business_id": "Lc3-XLmobyijQpOxHdEPFQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "v2UqlUHA8d3lgTIby0CCFQ", "review_id": "UYgHV9KRi2eh59a8XZf0QA", "stars": 3, "date": "2012-07-07", "text": "It seems like dine-in theaters are popping up all over the Valley these days. Studio Movie Grill in north Scottsdale recently opened.\n\nThe theater has a far less luxurious feel than the AMC Esplanade 14 or even iPic Theaters. Instead of comfy reclining seats, you're stuck sitting upright, and you won't get any blankets to keep you warm. The inside looks the most like a traditional theater that I've seen at a dine-in theater-and my companion mentioned the lobby reminded him of an airport, and the theater itself, a bowling alley.\n\nLike the other two places, though, ordering food or drinks from your server is as easy as pushing the button at your seat. They'll come and grab your order (the menu is full of American food, similar to AMC Esplanade 14), and they'll deliver it to you throughout the movie.\n\nMovie tickets are $9 Sunday-Thursday and $11 Friday's and Saturday's, which is way less expensive than iPic and around the same price at Esplanade. I heard people are arriving up to an hour early for weekend movies, so be warned.\n\nWe drank and ate during the movie. We got a pitcher of domestic beer for $15, which I thought was a good deal considering the two of us drank two beers each from it. For food, I ate a grilled cheese sandwich ($6.25), which came with French fries. I actually really liked this grilled cheese sandwich, since the bread was thick and there was lots of cheese, and the seasoned fries were thickly cut and tasted great. Some regular movie theater concession stand items at non-dine-in theaters are just as expensive, so I thought the food prices here were really reasonable.\n\nThough the food and prices were satisfactory, based on the less comfortable atmosphere, I'd still pick AMC Esplanade 14 out of the now three dine-in theaters I've tried.", "type": "review", "business_id": "Yhfp_vgnh_GirZGeVhj7Gg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "D9BTg0QydXDrXOjpqnTsVg", "review_id": "w-XEwXaNRBZ6LTWUCMNjqg", "stars": 5, "date": "2012-04-28", "text": "Easy 5 star fun at the Phoenix Zoo. I've never seen critters so closeup before. At the Monkey Village, they don't even have cages. The giraffes came right up to us. I spent half my beer money on fishheads and shrimp feeding the stingrays. It was a blast!\n\nWe had great time!\nyow, bill\n\nPS - I've never commented on other people's reviews before. But jeez. When someone goes to the zoo and complains about the cost of a hot dog or a snow cone... well, for spider monkey's sake, get a clue!", "type": "review", "business_id": "1Ap6ZNCvyLLKHP0wvCk9yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xuVvzfQ583-brRngrMYhbw", "review_id": "HYrUIg3Nyw02TtsUeVOENA", "stars": 5, "date": "2009-09-30", "text": "Great place! I've been coming here for quite some time now and every time I received excellent customer service. The servers are always friendly and attentive.\n\nI LOVE the sushi there. They have a lot of fun, new rolls that are unique to Bamboo Grille. The spicy sauce they put on the rolls gives them a great kick too.\n\nRecently I've noticed that the place has looked a little unfinished with random stuff here and there. Baffled, I asked a server and was informed that they are in the process of remodeling. Needless to say I'm excited for the newly designed Bamboo Grille!", "type": "review", "business_id": "IwhkOh4fPsiU7TThIsz6Og"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "-L0bSNfErGer1UCEa6D4PA", "review_id": "7QAEeBiesRDlj33bNn_9Gg", "stars": 4, "date": "2010-09-27", "text": "Ate here again this weekend and I am happy to say that Fudd's has officially won me back. The burger was positively delicious!!!! And this time, I ordered the fries without the seasoning they add to it. Perfect! Hey, I'm a french fry traditionalist, what can I say? I hate weird seasonings or funky toppings on my fries (see review for Greek Gyro Express... and try to keep your cookies down).", "type": "review", "business_id": "-h1WpfgqAmJcJDqyXXJ2og"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "Mj4WMc9TAKB5M7iRxE7h0g", "stars": 4, "date": "2012-06-09", "text": "This is a nice store. It is well organized and the shelves are neat. In my experince when going to a store like Home Goods, Marshalls or T.J. Maxx the shelves are always a mess and it's hard to sort through it all. That is what I've always hated about these stores. This one is different. And you actually see the people working on the shelves while you're there. The bath department is well organized and neat. They have some nice furniture although I think the prices on the furniture are a little high for what is supposed to be a discount type store. The main reason I come here is the candles. They usually have a nice selection of Yankee Candles for 1/3 of the price you would pay in the YC store. I've gotten large tumblers for $9.99! That is a steal! I also picked up a great shower caddy for $12 that probably would have been $20 or more elsewhere. I stop by here when I go to Sprouts which is right next door.", "type": "review", "business_id": "9i8cBclfNEerRhX4xdbQlQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "qkcn5clWGHpZulmI18chDg", "stars": 5, "date": "2012-05-17", "text": "They say you never forget your first. Well, Postino Central was my first Postino and I remember my first sip and bite like it was yesterday.\n\nThe atmosphere here is very sexy at night. Candlelight and sexy music add to the already chic ambience Postino has. \n\nThe food? Bliss. I can still remember how the creamy ricotta and sweet figs on my bruschetta tantalized my tongue that first night. I can feel the velvety red wine at the back of my mouth and drizzling down my throat. \n\nParking is a bit of a hassle, but they have valet for a reason.\n\nIf you're stuck waiting for a table, squeeze in at the bar and grab a glass of wine (or three). People watching is almost as fun here as eating. \n\nNow that there is a Postino in the East Valley, I am hoping Postino Central will get a little less busy... if only to serve my selfish purposes. I love everything about this place and I hope to be back soon.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Rg4gzsz3w00vRlIOXcGUIA", "review_id": "83124FYdb2mbfOXR7FgxaQ", "stars": 1, "date": "2009-04-01", "text": "IHOP is barely a step up from Denny's in terms of boring chain food. Last night was the first time I ever had dinner there, and it tasted like squishy, mushy cardboard. The food took forever even though there were only three tables in the place with customers.\n\nThe reason I gave it two stars instead of you is because the breakfasts are pretty good. I don't mind them except the omlettes which are way too oily. The coffee is almost bad, but the waitresses always look happy.\n\n[update April 2, 2011]\n\nWhy'd I go back? I hate this place now. We went today for the first time we have all had a chance to go out together for breakfast. I was excited to do this and was eager. I should've stayed home.\n\nMy wife got a waffle with her combo that was cold, tasted like cardboard, and was crunchy. The bacon my wife and child ordered was burnt, crispy and did not look like bacon at all.\n\nMy sausage (I always upgrade to turkey sausage since the regular pork kid here is vomit worth) was totally cold. I sent it back and complained. I think she microwaved my plate. \n\nTheir coffee is always burnt so I got an iced coffee. She said they had Mocha, Vanilla, or Hazelnut. I asked if they just had a regular coffee flavored one... she said yes, and brought me disgusting hazelnut (glad I'm not allergic!!)\n\nOk now it's three hours later. My daughter laid on the floor whining about how bad her stomach hurts, I've been to the bathroom twice and my wife is asleep because she said if she didn't lay down, she would puke. Seriously.\n\nThe management (district managers) really need to care enough to read YELP. They remodeled the outside of this place and, I guess, spent all their money to make it look pretty so we'd forget they serve dogfood.", "type": "review", "business_id": "3YATaNAGANoFneE-4KK-JQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o96C1p5jwTvPlneWfl6miA", "review_id": "xGdrM-tQTBQXom96du-aVA", "stars": 4, "date": "2011-07-20", "text": "Finally got out to try this place, had a restaurant.com coupon for about 6 months and wanted to check them out, but we always were going to be in the area on a Sunday and they are not open then.\n\nFirst, the entry was pleasant, greeted and seated, the owner/manager was very friendly and made a point to stop by and talk. Granted, they were not very busy late on a Friday night, but that wasn't the point. Decor was ok, had a game on the TV in the background.\n\nFood was good, staff was ok, they do need to update the menu, discovered a minor mistake on something they no longer offer, but we thought the prices were decent anyhow.\n\nIF I'm in the area and craving sushi, I'd stop by again, need I say more?", "type": "review", "business_id": "MhkZLdUFaHt5SDcQcqOWQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u33Vpx9csHNHhBK764kDzg", "review_id": "F0SHae4rZ_Yy5ZPuZ-AeOQ", "stars": 5, "date": "2009-04-02", "text": "This is what I love about Phoenix, you find these little treasures where you expect them the least!\n\nLoved everything about the place. We had a team dinner in one of the rooms and it really felt like we were having dinner in someone's dining room. Super cute atmosphere, loved the pictures from all over Europe. I has the vegetarian rellenos (sp?) and my mouth is still watering just thinking about it. \n\nWe also had the only malbec they have by the bottle and it was delicious!!", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pw-k3TMjt1ZNB2-iRVTDlQ", "review_id": "LtMXQJX39CfgZKRCRGwWLg", "stars": 4, "date": "2012-01-07", "text": "Great place for hippies, do-gooders and at this location an inordinate amount of old folks. I love the deli here. always a great sandwich at a good price. Although I don't see myself buying anything \"soy\" or \"organic\" or hippie friendly here I do like to shop here from time to time.", "type": "review", "business_id": "fRV_jh8IxvGh0jY5dT91Rw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "kyZ6dPtX14mIODf3KrQAtQ", "stars": 4, "date": "2011-06-15", "text": "I'm a value sorta guy...considering that, I should HATE this place on paper, but the quality, selection of items you won't find other places, and general vibe of the store are fantastic. You will pay top dollar, but you get top notch stuff in return! Their baked goods are exquisite, their meats are the most gorgeous chunks of dead flesh you'll ever see, and then.. there's the Beer & Wine. Wow.", "type": "review", "business_id": "nDHyino_t7O94ZzRHGUApw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "omDaGOFsG1RfqLKcNV1Cug", "review_id": "Tb6rPlzBfsd0-oIBLmCulw", "stars": 5, "date": "2011-09-29", "text": "Does anyone know why their regular subs are $1 more than all the other Jimmy John's? Or is that just when it's delivered, instead of charging a standard delivery fee? I've noticed that with the other types of sandwiches too, and extras...the slim is $4 instead of $3.25, and extra avo is $1.75 instead of $0.75\n\nThat's not going to stop me from ordering though :-) Still love their sandwiches...they make the best veggie sub I've had. They load it up with veggies, whereas I have to ask for extra everything at a certain other sub chain and then they still barely put any on. I'd much rather pay a little bit extra for Jimmy John's :-)", "type": "review", "business_id": "OkO7zRnvV2NQR5aPmbRZeA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "lV8sZpWaJyAa-IFy080LaQ", "stars": 4, "date": "2010-06-20", "text": "Dilemma: where the heck to find a nice place to eat near AZ Fairgrounds/Grand? (Shiverrrrrrrrrrrrr)\n\nPromblem solved! Found the answer @ Fez!\n\nCandace was super speedy, always had a smile, and returned to our table about a dzn times in the 90 mins we were here.\n\nGazpacheo & Grilled Crustini was OMG good! (problem was it only came with 3 tiny pieces of bread, had to ask for more, got few pieces of pita, still had 1/2 left bowl of gazpacheo, asked for more bread - cuz like what the heck are you going to do with a bowl of dip otherwise? and they charged us for the extra bread? x 2 ? not cool).\n\nCheese & Garlic Fondue was pretty good. So was the Chicken Strips.\n\nReally good drink specials (unfortunately, had none as their specialties are mostly tequila based - not for me! nor am I a beer drinker, and I did not like their house wine). But I did have a nice bottle of Sav. Blanc from New Zealand.\n\nAnyhow, this fit the bill at having fabby Nom~Noms before heading over to the Coliseum (~ick~) at the Fairgrounds to see the Roller Derby Girls - Whoop~ Whoop!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GZoFh9dJdp3FYk6FLDXs-w", "review_id": "DtfqqQryMmDWyRTdMx2XlQ", "stars": 4, "date": "2013-01-05", "text": "Great food. Service consistently blows. Sit at the bar and you will be fine.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "GubdNFoDAsiwE6bWIr97cQ", "review_id": "vd-jDLChzzB0PNtxGCmv6w", "stars": 5, "date": "2008-05-17", "text": "everytime my sister comes to town we go striaght from the airport to Karsh's.\nour intent is to buy bagels and we do, but we can never stop there and wind up with a variety of goodies. all that we have comsumed over the years has been really great. as for service, always with a smile and friendly attitude.\nwe used to go here all the time when we lived on n. central, but since we moved to the other side of the world it has become a special occasion place. so please open one near us too.", "type": "review", "business_id": "vaqmESluryt5i4Wbkb6KRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kG8jkVFgOAOq6Ht6RvAjEQ", "review_id": "D6bvzF9PehS2-m06g0mh0g", "stars": 4, "date": "2009-12-12", "text": "I've ordered cookies from Cookies by Design many times and they never disappoint. I have worked with this store as well as stores across the country when ordering for the people I work with and people I love. Everyone has always said how beautiful the cookies look but even better, how great they taste. You won't be disappointed. :)", "type": "review", "business_id": "kOeoqBdvLDC7xV6fgFVRVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aCktH-ZuS2KwaScos8xNSA", "review_id": "1aEUHZrTj8zsO2LuppVs_Q", "stars": 4, "date": "2011-05-09", "text": "I loved it. The salad bar is not so great but everything else is excellent!", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HeKxpZpPd_WweAuZSBZ_qg", "review_id": "ehDENu2uVZpqi0ChKIk-Yg", "stars": 4, "date": "2012-06-16", "text": "I love this place, saves me and my family some serious cash. I do agree with allot of the other reviewers on the meat and produce - my wife gets those from the store across the street. \n\nI also love the fact that they have a Sushi shop inside the store. Makes a great quick snack. The lady the works there will make almost anything you want. And, you can call in your \"order\" ahead if needed. She (or her son) have never let me down in quality and freshness of the Sushi.", "type": "review", "business_id": "NdATGBlTA3VHkY8XnvKoNg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "SHlkGMta-B3lXzlQBtrUvg", "review_id": "9w_oarYDgseuK0Mj9vftdg", "stars": 4, "date": "2011-03-15", "text": "This place is awesome! Where else can you hear incredible live jazz music for free on a Monday night with reasonably priced drinks? Any other major city (like, say, New York), the cover would be at least $15, and they would make you pay for the second set, as well, and a place to sit or stand with a decent view of the musicians would be hard to come by, and by the end of the night you would end up feeling ripped off. \n\nGranted, this place can get crowded on the weekends, but no wonder. The beer (no draft) and wine selection is good, the vibe is laid-back, and the music I've heard has been great (I've only see one group here--Jiggle--and they play jazz.)\n\nTip for music-lovers: Sit or stand in the room where the music is. Sitting any farther back and you may be tempted to take a swing at the people who just come to chat and fail to understand what makes the Lost Leaf so unique. But do give them a bit of a break. They are, after all, probably \"paying\" for your cover charge with all their imbibing of alcohol.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "qK6qbqXcZDn0fz8Dr5Ex8w", "review_id": "OT19QMSIrG6gdAPWgLSIHA", "stars": 2, "date": "2010-07-13", "text": "Still not in love with it.\n\nAgain with the overstaffing and employees huddled, eating/drinking and chatting instead of hurrying up and making my drink. it is okay to hurry--or is that just my strange, city-thinking?\n\nmeh.", "type": "review", "business_id": "F-ZOeAK1v7e5Rt2Mv5rVMw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "gTs3AALeNJhSbVrgamKQyg", "review_id": "Am8KgL5OXGyC_Z-L_HCVGQ", "stars": 5, "date": "2011-10-22", "text": "I took a cooking class with Chef Eddie Matney (Eddie's House Restaurant) and his recipe called for Vanilla bean olive oil from the Olive Mill. First off, what he made with this recipe was phenomenal much thanks to that smooth vanilla olive oil in there! I decided to google this place only to find out that Chef Beau Macmillan acclaimed a the kalamata sandwich from there as his \"bad boy favorite.\" I don't know what a bad boy favorite even means but it has to be good especially since I've had his food and was quite impressed. \n\nI decided to make the 45 minute drive from Scottsdale out there on a Sunday afternoon to get my olive oil and try this kalamata sandwich. Such a cool atmosphere inside. It's like a trader joes/gift shop/paradise bakery all with a rural, kinda on the farm feel. You could easily kill an hour here just looking around at all the stuff for sale. \n\nI couldn't believe the kalamata sandwich! If you go there and order anything else....you're wrong. Freshest ingregients I've ever tasted. I feel like the pork could have just been butchered 5 minutes prior to me ordering it and the vegetables just picked from their garden (which they do have there). \n\nPretty cool how you can sample the endless flavors of olive oil there. Got myself the vanilla bean and the blood orange as well. Make for some unstoppable pancakes. \n\nTried the gellato and wasn't all that impressed. But in all due fairness, I'm not exactly sure what real gellato is supposed to taste like since all I've had is gelleto spot and grateful spoon.\n\nDefinitely worth the drive! Great place to bring the family.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "GSQljlRxa8YBtvovIMbhiw", "stars": 4, "date": "2012-08-18", "text": "I couldn't rate this place until my 2nd go around only because my first time was take-out. That being said, I did get the same thing both times and am pretty sure I can say I enjoy their Pulled Pork portion and would get it again. It is moist, soft, and flavorful all on its own, but I do enjoy drizzling some Sissy sauce on it. I've also had their corn-on-the-cob twice and found it super plain and not even sweet or enjoyable.. totally blah for me with the corn. They use real butter, though, so if I liked their corn, I'd be a fan of that. I'll stick to the pulled pork.\n\nOn to their BBQ sauce: I am not a big fan of a few things, mainly how they serve the sauce, which is in a large diameter *glass* bottle with a bottle pourer (the kind bartenders used to control the flow of alcohol when pouring)... no bueno. It took me a long while to get a quarter size sauce on to my pork and it was just frustrating.. and the glass makes it non-squeezable.. and the huge bottle makes it heavy to hold while you're waiting for gravity to help you get that little dab of sauce out and on to your meat... yeahhh, it was that annoying. Here's an idea: make your sauce fresh and then put it in big ass jars than we can either portion out ourselves (like Joe's Real BBQ) or put it in squeezable bottles (like Famous Dave's)... *anything* but giant glass bottles with pourer restrictors on... puhleeeeze!\n\nTheir staff is very friendly, the ambiance is very relaxed and totally casual, pic-nic-style seating and, of course, country. They have a great concept of huge coolers of booze (beer) where you can pick out your beer and put it in a bucket.. they also have sody-pop and sweet tea. \n\nCountry music on the speakers.... yummy pulled pork... buckets of cold beer... pic-nic seating.. that's what I enjoyed.", "type": "review", "business_id": "IWwt0vm8lYbVoyGSPd2Z9A"} +{"votes": {"funny": 0, "useful": 6, "cool": 3}, "user_id": "Qp1AJD1cdTf7JVY9mXixBw", "review_id": "j3m8m4YDHQSFh79n31J_sQ", "stars": 5, "date": "2009-01-13", "text": "This dairy sells fresh milk, straight from the cow. That's what they're licensed to sell. They use organic feed (dried grasses), hydrogen peroxide for cleaning certain things, and iodine to clean the cows' teats (just like many dairies used to). They want the cows to be out on pasture, but they need a bigger piece of land to do so. If you know of a piece of land in the area, please suggest it to Jackie Calamos. I love their milk. As of this date, milk is $10/gallon, the true cost of the milk (or maybe even a little low). Most of the milk you buy in the store isn't worth the price. Forcing more production out of cows with hormones comes at the cost of quality (and your health). SYD's has all the good stuff (the proof is in the taste). It's never made us sick, and we've been drinking it for 2 years. It's a miracle that this metro area actually has a dairy willing to sell fresh milk to the public! Thank you, Save Your Dairy!", "type": "review", "business_id": "p_4cUTxtMWToqUKCy11qcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AV4-6n6SKop4Bp5S15c98Q", "review_id": "k6MY28U9T4B9ztsv7S2jGw", "stars": 5, "date": "2011-09-20", "text": "I've been to several local dermatologist and havent seen results or been fond of any; the staff is extremly friendly and very helpful! I highly reccomend this dr, he is knowledgeable & helped me attain the results I was looking for!", "type": "review", "business_id": "GQuUFerQlnyRoOGdA63EKA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LSNWMSAOhZzrSRg2pPxA0Q", "review_id": "jxM6FXJhTKUdW_xfmtoBbQ", "stars": 4, "date": "2010-04-16", "text": "We had a 10-12 person dinner here on a Thursday and our experience was so great that we brought back another 8 or so for another meeting on Saturday. Both times I had the New York Strip and both times it was fantastic. Great beef, great appetizers, great pours for cocktails. \n\nOur waiter the first night was a super friendly dude who was recently married and I'm sure our tab there was big enough to pay for a second honeymoon. Our waiter the next night was a bit more withdrawn but none the less got the job done.", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vvImsgqK7_GUo4iuD57XTw", "review_id": "NVOiobJPn8vwBKNbQqlzEw", "stars": 4, "date": "2012-12-31", "text": "Visiting from California, and refusing to drink Starbucks because I'm a complete \"Coffee DB.\" When traveling, I try to find the local coffee gem in the barrage of coffee houses.\n\nThis place is great, just how I like it. Smug employees / clientele, and fantastic coffee. Better than Bluebottle, not as good as FourBarrel. For those of you know what I just said, I raise my cup from my saucer in your general direction :) .\n\nThe edibles looked amazing, but was a little disappointed with the chocolate and cinnamon donuts I picked up for my family to try. \n\nI ordered a double cappuccino, as it's my go to, did not sweeten it as it was easily enjoyed by itself.\n\nLove seeing these small companies roast their own beans on site. Love the fact they are taking great care with the roasting process. Thank you for not burning the bean and making my beverage it so enjoyable.\n\nKind regards to the Lux team, I will certainly visit you tomorrow, provided you're open on New Year's day :)\n\nYum!", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SGXahHRReksq3m_Zk9V20w", "review_id": "H3hTMeoiwtpfZ4ctjO0Urw", "stars": 2, "date": "2010-04-01", "text": "I have read several raving reviews of this place. I was disappointed the first time so I went back again thinking I had an off experience. I was still disappointed. I had the carne torta the first time and the cubana the second. The food was okay. Not bad but not filling and not as good as some other places I can name off the top of my head. The first time the torta came with chips and the 2nd time they came alone. For 6 or 7 bucks Id expect a little more. Here are a few places with much better tortas: Los Reyes De La Torta (7th st & Hatcher), El Gallo Blanco (Central & Indian), and El Nopalito (24th st and Thomas).", "type": "review", "business_id": "oMycF1cQgR1UVkafXfof7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QTB78VnF09xbjJlZflClYQ", "review_id": "oSA3Et_F7hNl40Q9chM7Vw", "stars": 5, "date": "2011-07-02", "text": "Great movie theater----staff so friendly!!! If you love movies and comfy, clean theaters at reasonable price, check it out!!!! Parking so easy and close as well.", "type": "review", "business_id": "U6oNWTxVTnuuCL0BPRZCSg"} +{"votes": {"funny": 4, "useful": 7, "cool": 5}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "N9QPZSh62EBY0J0zaAgNNw", "stars": 4, "date": "2009-01-19", "text": "Way old school. I did the lunch buffet, $6 and change including drink. It was actually pretty good. Yes there were a few times I asked myself \"exactly what part of a chicken is this from?\" but the flavors were good. I'm guessing about 15 different items on the buffet.\n\nI'm guessing this place has been here for 10+ years, maybe double that. Red cheesy Asian interior as you would expect in a place like this.\n\nI like this place, so what are you going to do about it?", "type": "review", "business_id": "UxMnY3Dxafucv5cXHyfBSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k5U-0FBwvWUob8dlT6RvmA", "review_id": "4JFqB1mZOsJuWITrx46Nog", "stars": 5, "date": "2011-06-11", "text": "Other restaurants have come and gone but this one has been there like what my wife said about 20 years existing in the area. Congratulations!!! I loved the old recipe sourdough pizza. I enjoyed it very much. Neighbors please help our local business survive. We need them to support our local community.", "type": "review", "business_id": "9UxpM0WwUe2EH3hQezREVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tuuFkFLywRizZz1rI8JVMg", "review_id": "9woYJf6zPsuCFH6YYxKrRw", "stars": 1, "date": "2011-04-20", "text": "I can summarize this in one word. YUCK! We went for dinner/supper, which is part of the problem. We ordered t-bone steak and chicken. The salad bowl had a hole right through the plastic and the steak was way thin. We ordered it medium and any steak that thin just ends up being cooked as \"well done\" anyway. Everything comes with grease dripping hash browns whether you want them or not. At least the staff was friendly enough and food (if you call it that) was served quickly. My personal recommendation is that if you're not going to eat breakfast, go somewhere else.", "type": "review", "business_id": "Y7aesBLKUPTrQsuzcce-DQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RyqvQBBBLzkHXSxP4ZqucA", "review_id": "qhV9AcX1x-W4CcS2mLmxIw", "stars": 4, "date": "2012-11-28", "text": "Parking can be annoying when it's busy, but the store is spacious and there are plenty of people to get help from.", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FmwWPEQMcxCGI5K1yqAXaA", "review_id": "5tBMqL439Mcp49hHcmpcGw", "stars": 5, "date": "2011-11-12", "text": "This is how Caribbean food should be done. Excellent jerk chicken, perfectly cooked plantains, very good patties. I highly recommend this place if you are at all a fan of Caribbean food.", "type": "review", "business_id": "aOR_hD-xXsnU6bgVcJ3uXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yRQHOo0R1yGNh18d3fn65g", "review_id": "PEwzYtGYe4sDxgwyCKqZrw", "stars": 2, "date": "2012-04-03", "text": "Third visit was lower than second, which was lower than first. Excellent service, but declining food quality. Bacon was chewy, eggs ordered \"over hard\" were nearly raw in the middle. Manager was rude to me and snapping at the help, who were doing a wonderful job. Must have been having a very bad day. I might try them one more time, but probably will move on to better places.", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "meuqHEjGCmrO3zDlr6OU7w", "review_id": "4DvCwt3_8fdLxN5dHSyeCw", "stars": 3, "date": "2008-02-07", "text": "It's kinda comfy setting....For the Non-(official), Yelp event, they had penne pasta...but Sonoma's specialty is rotisserie chicken......Nice but I sure would have liked to taste what the place raves about---Chicken! Oh well, the pasta was ok for what it was. What I truly enjoyed about Sonoma was the layout. You can easily entertain a fairly large crowd and not be on top of each other. I need to come back and try their chicken then re-write this review.\n\nThe parking upstairs for the event was nice also, but later on at night, it seems a bit spooky to be walking up in the parking area alone and in the middle of city center where there are some pretty curious characters about~~~I would prefer coming with more than one person if parking at night in the upper garage (personal preference).\n\nThe Yelp folks!---Way too cool! I am so glad to have discovered Yelp! Best thing I've done in ages.---Cheers Yelpers!", "type": "review", "business_id": "VQTjhYGMIyqSRJHgHLFvjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dk4GW5x4DoMmHAAifcI30g", "review_id": "auNPrXVgQLeVKnl_OD4vTw", "stars": 4, "date": "2011-06-30", "text": "Delishhhh... blueberry crepes w/cream cheese!", "type": "review", "business_id": "7VLW-cIDaiO4Dx8gXYkZcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lv5jHtbwcU_tTw_xQuFr9g", "review_id": "5GvkdRfZ-Si7VNfhr_Swrw", "stars": 3, "date": "2009-03-18", "text": "Let me start by saying the crawfish ettouffee was the best I've had in a long time! The food itself should probably get 4 stars, however, our service was just plain bad, so I'm just going with 3 stars.\n\nThe outside patio area was really nice and they had live music and a bar outside.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "Nc5GODazWAfga844L4PtLQ", "stars": 2, "date": "2009-11-03", "text": "First off, let me say that I live almost across the street from here and have been waiting for a grocery store downtown for almost 5 years. I was there the very first day they were open and have been back three or four times since. I waited to write my review until they had their \"grand opening\" and until they had gotten into the groove of having a market.\n\nBoy, where do I start with the complaints? The biggest complaint is not so much the hours but the DAYS that they are open. Maybe I'm weird but I do my grocery shopping on Sunday. We specifically didn't get a few things from F&E because we wanted the ones from the market. I try and go Sunday but they are closed. Try and go back Monday...they are closed. At this point, I really need those items and I'm just going to buy them from a normal store. It doesn't make any sense why you would have a ton of vendors there on Saturday dropping off their goods only to have them sit, locked up, until Tuesday. If you need two days off, take Saturday and Wednesday off when the outdoor market is in full swing.\n\nMy next complaint is the selection. I'm not even going to complain that you don't have basic things like fruit or butter. I'm going to complain that you carry fish from Alaska (not local) and that you carry Shamrock milk! WTF! You could be carrying SuperFarm milk, butter, and ice cream but instead you carry the same thing Target has. Try supporting real local business instead of mega-giant Shamrock Farms.\n\nFinally, what's with the \"wine bar\"? Is it actually somewhere in the building or am I supposed to sit in the middle of the produce and drink? It really feels like too much room was wasted on the sandwich/wine bar counter area and not enough was set aside for actual groceries. \n\nI know this place will get better but right now one would be pretty hard pressed to do their grocery shopping here.", "type": "review", "business_id": "Ax11wyp-FudujeU9nejQbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9Ysj3f3tI3m5QRDxvQAIKw", "review_id": "t8OogNkBhEEG8k5uLfpDEA", "stars": 4, "date": "2006-10-07", "text": "Delux makes good burgers, but you probably figured that out already. They also have good fries (sweet and regular potato thank you very much). They are kinda expensive. If I have to compare it to something I would compare it to California Pizza Kitchen. Better than a regular Pizza, but probably not worth the cost.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "WcSgL85yRs3wuuu-VKQXcg", "review_id": "vlzUqHUXWuUzfrrMMzB4Pg", "stars": 4, "date": "2009-03-22", "text": "Found this place by accident.... must say I was pretty impressed. \nWent for lunch, and I'm excited to go back at night for some live music....\nonly downside was the lack of good cover on the back patio. Its totally cute and I love patios... but every time the wind blew my iced tea (which, BTW, is ridiculously good) filled up with little tiny leaves.\nBut aside from that small set back... our waiter was personable and attentive, the food was surprisingly good, and the ambiance just right....\nThe menu is a little sparse, but I kind of like that... they don't try to do too many things, and what they do - they do well.\nThe servings are huge. I wound up taking half my panini home (guess I shouldn't have filed up on the bruschetta!) - what really impressed me was that it was still good heated up in the microwave the next day... sandwiches, let alone paninis - don't normally keep that well.\n\nall in all a good experience, happy I stumbled upon it.... I'll be back.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "jPSUB56-6Y7W_3OjnZpRVQ", "review_id": "vSM3CtnIMEoNyku6vsj7EA", "stars": 2, "date": "2010-01-10", "text": "2.5 stars-\nwent to Lolo's for lunch on a Sunday- the place was nice and busy- waited maybe 3 minutes for a table. Were seated but had to wait an additional 20 minutes for a high chair as the 2 they had onsite were being used. Ordered the Te-Te's (2 chicken legs and 1 waffle) along with French Fries and Beans Over Rice. Food came out with my entree about 4 minutes before my friend's did. We were never brought out the fries or beans and rice- reason for it per the server- there was a big party (8ppl) slowing the kitchen up.\n\nFood was good, not great, staff was very nice and hospitable. I will go back to give this place another shot- try something different on the menu as the waffles were super heavy and doughy. Chicken was cooked to perfection- I swear I could have eaten 10 pieces!!", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "9vTJiGbTueKbzJLBbzVpNw", "stars": 5, "date": "2012-07-23", "text": "Beautiful ,wonderful and very romantic ambient setting sets the tone for a romantic dinner with the one you love .\n\nWe first experienced El Chorro back in early April ,and were so enchanted with our patio dining experience ..beautiful view of Camelback MTN. lovely flora and landscaping ,and their adorable organic garden area. That we have returned a few times ,and every visit has been wonderful -impeccable service and delicious fare.\n\nDinner High-lights ;\n\nNiman Ranch Steak ,twice baked potato ,asparagus.\nFree Range Chicken, mashed and peas\nChopped salad and the Chicken Cobb salad both fresh and delicious.\nVeggie pasta with shrimp .\n\nDrink High- lights ;\n\nHoney pot ( jack daniels lemonade drink)\nMojito ( strawberry and Jalapeno) sooo good!\n\nThe sticky buns are just sick !! we always take an order home .\n\nFabulous ! every time.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5p8cCKiCbru9FL7HNDYCbQ", "review_id": "GpNRBAkJUbq3g2PAlChF7w", "stars": 4, "date": "2008-12-23", "text": "If you need a hat, this is where to go.", "type": "review", "business_id": "nXFQjMFJ0qLQSrq1TwLrWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3f4iWELs16wiH7167-nCJg", "review_id": "oEOvPxSVJyLTH5Kc7c1oWw", "stars": 4, "date": "2011-03-22", "text": "2 for 1 drinks at night, awesome homemade veggie burger & by far some of the BEST salad dressings I've ever had. Shrimp & fruit salad with the champagne dressing was amazing. Their house dressing is just as good. By far my fave meal is now brunch. I ordered the \"best egg white omelet you've ever had\" & I must agree! The omelet was huge and packed full of awesomeness and flavor. The drinks were only $3 a glass. Peach Bellini's, bloodies, G-Spot, mimosa's! I am hooked to brunch. They also serve late night, until 12am! FEZ I'm such a fan!", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XeDbXueGKrfMLyIG45QIOg", "review_id": "YR-Qb3cZchiNHZ7tjRZshQ", "stars": 3, "date": "2012-08-07", "text": "My husband and I ate here for lunch as we were waiting for our room to be ready (we were checking in early). The restaurant is very inviting and I liked the decor. We had a great window seat the overlooked the outdoor terrace and the mountains in the background was lovely! The hostess was very friends and our waiter was attentive and fairly personable. \n\nI ordered the Beet & Goat Cheese salad with Grilled Chicken and it was quite good! Even though I liked it very much, I would only give it a 3 out of 5 because they didn't use Roasted Beets...I believe that they were canned beets. Still good, but roasted beets would have knocked it out of the park! The salad had spinach, mild goat cheese, mandarin oranges, red onion, and delicious candied pecans....with a balsamic vinaigrette. It was a very good salad. I wished I had ordered the small serving though because it was a large salad! The \n\nMy Husband ordered the Grilled Chicken Sandwich with fries. The fries were SO good! The sandwich was equally good, but spicy from the roasted pablano that was on it.\n\nNet-net....it was a very good lunch, but I can only give it 3 stars because it cost us $40 for a salad, a sandwich, a soda (I had water),and gratuity. For $40.00 for lunch, it should have been outstanding, not just very good. I get that it's in a resort, but still.", "type": "review", "business_id": "FhjdZ2DtjVgCfK47bYO6sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SGXahHRReksq3m_Zk9V20w", "review_id": "EHHaurKEhtm5o5fX4Dp9LQ", "stars": 4, "date": "2011-08-24", "text": "One of the best craft brew retailers in the NW valley. While the Camelback store has an even more impressive selection as well as seasonal sells on certain items, this location also has a pretty solid catalog on hand. I've noticed how the craft brew selection has expanded over the years. I used to be one of the only guys in the aisle and now I have to pull rank and push guys out of the way who are day dreaming for too long. \n\nI would love to open my own chain and only sell craft brew. I'd name it Total Craft and Nothing more.", "type": "review", "business_id": "RCc01aDaUvQ-sWfoalfjXA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "RHLKZQWKlfraZcFNjJYxpQ", "review_id": "imns0qJ-9pusiVN7pCHzjQ", "stars": 1, "date": "2012-01-01", "text": "I came to the restaurant specifically because of a recommendation. I am now on a gluten-free diet and have other allergies so, suffice it to say, I don't get to eat Italian often. However I was told that they have gluten-free pasta and other choices. I was initially impressed by the sheet that breaks down their meals by allergen so that one knows what is safe. Kudos on that. This is more than most places provide.\n\nHowever, they have Basil Pesto Sauce listed as NOT being gluten-free nor soy free. Finding that odd, I asked the waiter to confirm with the chef, and I was told there was no wheat product at all in the pesto, which seems correct. (I did not ask about the soy, but I would wager that sneaks in somehow thanks to the cheese.)\n\nSo I ordered the Create Your Own Pasta of gluten-free penne with pesto sauce, shrimp, peppers, spinach, and mushrooms.\n\nWhen my bowl of pasta arrived, it had all of the above. However, it also had onions, zucchini, and eggplant, yet I had to dig to find a shrimp. I originally assumed I had somebody else's order.\n\nThe waiter, who was wonderful and attentive, took the bowl away and offered to replace it as I ordered. I would have eaten the original bowl, and told him so, but I was more concerned, as I said, that it was someone else's.\n\nAs a side note, if these flourishes of extra vegetables are an example of a cook's flair, I would say that if a customer orders a straight menu item, that might be acceptable. But when I fill out a cute little checkbox form with what I want on my Create Your Own Pasta bowl, I *only* want the items I checked off.\n\nA fresh bowl arrived later exactly as ordered. Except the pasta was undercooked. I don't mean really firm al-dente. I mean some were still way under done. Now, I know that gluten-free pasta takes longer to cook, and they probably rushed the bowl to get it to me. But that bowl was almost inedible.\n\nThe waiter did offer to get me a third bowl. I declined and soldiered through it. We were having dinner out for my wife's birthday and I did not want to belabor the meal. The waiter then offered us dessert to make up for the problems. Though I did agree to this, and I'm not demanding or even asking for a full dinner cost to be covered, it seems inadequate for management to offer me a three dollar dessert to make up for a twice-failed $14 dinner. I do not intend to go back.", "type": "review", "business_id": "GlfwqH2dY3MKxrRirKeueg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "Nh33E3a3sY-tTHrzZXhCLA", "stars": 5, "date": "2011-05-12", "text": "Dr. Farnsworth is the Jam.\n\nI had my first ever eye exam, and she was kind enough to take good care of me. \n\nShe did a complete, and thorough eye exam, and explained each test, and the importance of them.\n\nAfter the exam, we determined, that I indeed needed glasses. At that point, my prescription was handed over to the very sweet optician who took care of me and let me try on about a dozen different frames before I found the winning pair.\n\nI've sadly lost them in Vegas, but I will soon be back to buy my next pair so that I am not blind as a bat.\n\nLOVE YOU GUYS!", "type": "review", "business_id": "1N3D381l_VZZY4ZH-vpDww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4rsEkJkwDwuXqcCwvBEFTw", "review_id": "xDllc00BAWyr9ETP4nGBQg", "stars": 1, "date": "2012-09-08", "text": "Wow this place was steps below horrible. I should have known better considering the place was empty on ASU game night. The food was greasy, and flavorless. Everything on the plate was flat... Ya I said it.... Flat. Bland, disappointing food. Save your money and eat at taco bell. You will thank me later.", "type": "review", "business_id": "TMdHhDI7jYQ9206dtvrBgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "24yqFItSfkEnoeuHdowJbw", "stars": 4, "date": "2010-11-03", "text": "Fresh and Easy's are great. My only issues is how quickly some of the foods from this store go bad. Don't buy for a week from now unless it is frozen!", "type": "review", "business_id": "SKSXkghmYc1DXF2-d9Br7w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fzkO1lGkx8MHhT8S4Rbg3w", "review_id": "bDQHRVDSNPT9N2p5dsQ1hg", "stars": 4, "date": "2009-07-25", "text": "This is the best venue in the valley for what is intended to be; a midsize venue that attracts national touring acts, with a standing room only intimacy that you won't get at a place bigger or smaller. I saw Clutch here recently, and it rocked my balls off. I didn't drink at the place (took care of that before and after) so I can't comment on drink prices. Parking did suck, but there was a structure across the street for five bucks. One downside, going to the website to check out upcoming shows is tedious. The calendar is soooo hard to sort through, I would only go there to get more info on opening bands not listed on ticketmaster.com", "type": "review", "business_id": "FGePlnlKXHxBrxYMNGtdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLIV35n1gZ4fg6cGSRqNIA", "review_id": "6Ont_PPeZxd3Y4IO9_5yrw", "stars": 4, "date": "2006-08-08", "text": "The black beans are awesome. Also recommend the jerk fried rice. Actually, everything I've had here has been good. Free snickerdoodle with every order. Oh, and the salsa is yummy too.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "E6aMDs9bRjnA7O2KEiTSDA", "stars": 4, "date": "2010-01-17", "text": "Are you looking to get a cat? if so, check out PetSmart. My wife and I adopted a kitten here and she's awesome.\n\nThere are always several cats (occasionally dogs) looking for a good home, some older cats (a few years old and some kittens.) There is an adoption fee, but the cats will come with their shots and are neutered/spayed.\n\nWe also use this store to get both wet and dry food and toys on occasion. There are many sizes and brands to choose from at good prices. The food is cheaper at PetSmart than Petco, unless the item is on sale.\n\nI would recommend to get a PetSmart card to save a few bucks.\n\nThe store is always clean and staff very friendly and helpful.", "type": "review", "business_id": "jMqcipWlVtodzRFM3snKcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AvzoWeiZ1yMZKlYU8jB2PA", "review_id": "cWTHuwzcmJpQ_JxTL2w-Bg", "stars": 4, "date": "2011-05-08", "text": "Seriously good curry. Serious. I'm not joking. I'm serious, the curry is very good. Usually when a restaurant has pictures of the food on the menu I become suspicious (think of Denny's and Village Inn), but here the photographs are not indicative of anything bad. In fact, the food looks good. Did I mention the curry is really good.", "type": "review", "business_id": "WPmamMTGAmNYXGoXW1mWyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X6RyZWTWZNIVEwes5T3WGg", "review_id": "WUu-PK-yULBtQkd1E42G0g", "stars": 1, "date": "2010-10-29", "text": "Second to worst dining experience of all time.\n\nOur waitress was a little timid, which is fine, but it we shouldn't have to wait 20 minutes just to order our food. Our food took 45+ minutes to arrive, and while our friend's steak came out hot, our Hibachi Steak and Potatoes were room temperature. Sent it back to be warmed, they offered to pay for it, which is great. Both managers came and said hi and apologized for the slow cook staff, and made sure everything was great. \n\nThat was the last we saw of them for the next half hour. We finished our meals, and 10 minutes later, had to flag down a different waitress to go and find our waiter, and to bring us cheesecake menus. We always get the Dulce de Leche, but they brought us terrimisu or some junk. I gave it back to the waiter (after walking the restaurant to hunt him down) and said \"no thanks, I'll just pass on the cheesecake.\" He looked surprised, and later said we didn't have to pay for that cheesecake. Well I'd sure hope not!\n\nTwo hours of my life are gone. I usually like this restaurant, but tonight's service disaster will prevent me from EVER going to this location again, free food or not.", "type": "review", "business_id": "jfXqQTdxktGQWkELGn-7wA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "d66FhQQZzFDKxklh6t63RA", "review_id": "IM_0kbrmtpegXvOfae1P-g", "stars": 5, "date": "2011-12-11", "text": "Hands down the best Vietnamese food we've found in metro Phoenix. Enormous bowls of delicious pho, served quickly with friendly and efficient service. Our \"go to\" place for pho now. Cheap too!", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LusAw6vTDC7KAfbuClMReA", "review_id": "VXew7XA6Y3PswNSIz4bJzg", "stars": 4, "date": "2012-11-19", "text": "In my book Dunkin Donuts and Starbucks are on the top tier of the coffee shop pyramid. Because this Dunkin Donuts is a couple hundred feet north of Starbucks in this Wal-Mart power center, this location is the opportune review to compare the strengths and weaknesses of each chain using characteristics of these locations.\n\nFOOD\n\n Dunkin Donuts blows Starbucks out of the Phoenix Valley when it comes to food. Whereas I am a fan that goes back to my teen years of Dunkin Donuts toasted bagels with cream cheese, I regard Starbucks bagels as filler food that tastes equivalent to a supermarket bagel. Dunkin Donuts signature donuts are the bomb. Starbucks pastries are filling yet forgettable.\n\nCOFFEE\n\n Long before Starbucks landed on New York soil in the 90s, Dunkin Donuts coffee was the ultimate cup of Joe. In a way Dunkin Donuts is still the ultimate cup of Joe. In my mind their coffee is slightly better than Starbucks. Especially with their added light blueberry syrup.\n\nPRICE\n\n Dunkin Donuts coffee is relatively the same price as Starbucks. Whether I buy a coffee with syrup or ice blended coffee beverage at Dunkin Donuts or Starbucks, the difference in price is relatively zilch.\n\nSERVICE\n\n Dunkin Donuts trails behind Starbucks in service. Especially at these locations. At Dunkin Donuts, one man was manning the shop. If there was a rush in business, this would cause customer service issues. On the other hand Starbucks had a crew of employees. The woman who took my order was very charming and friendly. Dunkin Donuts service does have one advantage over Starbucks, which is the employees put in the cream and sugar for you.\n\nCOFFEE SHOP EXPERIENCE\n\n As far as a place to hang out, Dunkin Donuts trails far behind Starbucks. This is another Dunkin Donuts where the subliminal message is to sip your coffee eat your food and move on. Starbucks on the other hand promotes hanging out with complimentary WiFi and comfortable seating.", "type": "review", "business_id": "rima62YizeDOVWksZ80KMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "U14IHoSXcztl-4PjyY0pug", "review_id": "GJIpaM72Q1enT5vGG1xyeA", "stars": 4, "date": "2011-02-03", "text": "Great location, great food, and nice ambiance. The menu isn't huge, but this is a nice French cafe type setting if that's what you're into.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLIV35n1gZ4fg6cGSRqNIA", "review_id": "lJOlpq4cVEWHkKCL-IWrfw", "stars": 4, "date": "2007-02-27", "text": "Had a team dinner here 2 weeks ago. The food was decent and since it's the closest Thai restaurant to me, very convenient. \n\nAppetizers: Angel wings-- fried chicken drumsticks stuffed with noodles and spices. Fried tofu -- just exactly like it sounds, crispy fried tofu served with a sweet fish sauce dip. Tom kha soup-- spicy lemongrass broth with mushrooms, chicken, and carrots. \n\nMains: eggplant dish with chicken-- okay, served with a basic brown sauce. Pad thai-- too sweet and saucy for my taste. Panang curry-- I enjoyed this but we ordered this with chicken and I personally think it tastes better with beef.", "type": "review", "business_id": "oOqsIaRvdV4La45-JJhfeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HLGREeWew_M4y4rw7MLLdg", "review_id": "JA1p0Wrirny_8MbxtPvdvg", "stars": 1, "date": "2012-02-22", "text": "Really, if I could, I would give this place zero stars, because it is a disgrace. If you need an emergency vet in the Scottsdale/Paradise Valley area, go to Sonora Veterinary Specialists on Cactus/40th St.(http://www.sonoraveterinaryspecialists.com/). It's also 24/7, but unlike VCA PVEAH, it is a truly valuable, legitimate facility, and it''s staffed by engaged, committed, deeply caring, and extremely knowledgeable and skilled personnel. At SVS, you and your pet are treated well and what you pay is fair and justified.\n\nVCA is the opposite of SVS in every single way. VCA is, in fact, the WORST of corporate animal service providers. The space is small, cheap, cramped, and the staff are indifferent at best and don't convey any genuine love of or concern about animals in pain or distress. All they want is your money. They do NOTHING for the $99.75 they charge for an \"emergency exam.\" We essentially paid that amount just to be given an astronomical estimate, literally nothing more--our dog was the exact same bloody, traumatized mess we gave to them when they gave him back--after making us wait nearly an hour without ANY communication). Furthermore, they tack on bogus surcharges ($5.25 for a \"biohazard waste fee\") that are irrelevant to the \"service\" provided, and their drug prices are absurd--$8 for a single Tramadol tablet, anyone?\n\nConversely, our (and our dog's) experience at Sonora Veterinary Specialists was wonderful (even in the context of an emergency), and the cost was ultimately significantly less.\n\nVCA is a money-grubbing, depressing, sham.", "type": "review", "business_id": "i5LFOniek1pD8UEiEzGooA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "OrEmswolaU478cYXXOZukA", "review_id": "32zii7Rpnz0eV7hKr0j9_w", "stars": 2, "date": "2010-12-17", "text": "This place made me remember why I don't live in Scottsdale anymore.", "type": "review", "business_id": "QCxXYA13PtkD3wec47_r8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IxuMlibirsWsa29r2sha_g", "review_id": "RCKxsfdsoKhsg81q6btT2w", "stars": 2, "date": "2008-10-28", "text": "Took the family to the recent opening of this local Logan's Roadhouse to check it out and maybe find a new local 'gem'. \nInitial impressions were that Logan's is an imitation of one of my favorite family steakhouses, Texas Roadhouse. We go there every chance we can and have never been disappointed in the quality of food or service. \nAnyway back to Logan's, atmosphere was 'okay' (again a wannabe Texas Roadhouse but not quite right), service was fine, but once the food came, that 'sealed the deal' - very disappointing. Not that it was bad or anything, but the quality of the steaks just wasn't anywhere close to what you get at Texas Roadhouse, and when the prices are about the same, well, there's just no sense wasting time or money here. You might think I'm being rough but when all 3 of my kids (ages 7-11) say that they like Texas better, that's gotta say something (they usually never say anything bad - they usually just eat whats in front of them!)\nSo by now you can obviously guess that I don't recommend Logan's. I really only have one more thing to add....\n.....Don't mess with Texas.....", "type": "review", "business_id": "WHd8fLeMeWKUK6sPyeB-UA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HjhR3u17OjxD4s8t3toTfg", "review_id": "QZj7zlxZTHxHMer_8mPoMw", "stars": 3, "date": "2012-01-28", "text": "What started as a food truck back in the 80s, has now evolved to two successful restaurants in the valley. Using traditional recipes passed down through generations in Mexico - LT delivers the flavors that reminisce of street tacos in Mexico. Using ingredients made from scratch, the marinades used for the various meats are outstanding!\n\nBeing first timers there, the service staff was very friendly and suggested what menu items we should try - to experience the best they had to offer. Our number one dish was the #1 (about $6 or $7) - an assortment of three street tacos with chicken, pork, and beef. All of them had unique and bold flavors - you could taste that the marinade had really absorbed into the meats. They were served with cotija, pico, and cilantro - adding that truly authentic flavor to the tacos. We also sampled the fish tacos and burritos. \n\nWhy this wonderful little place does not receive four stars or more? Despite what Guy Fieri said, despite the wonderful flavor of these tacos, everything we ate was lukewarm or less. From the refried beans to the rice, to the taco meat, and burrito. It gave us the sense that despite being made from scratch, these wonderful ingredients had been sitting there for a while. Albeit the flavor and texture of the meats was grand, it did not taste fresh.", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LyxdJESdPHfvCY_vSVuX9A", "review_id": "UZj9gxpQPfI8_f0il4QwvQ", "stars": 5, "date": "2012-10-28", "text": "Outstanding and fantastalistic comes to mind. Real good.", "type": "review", "business_id": "0dORc6ckZw5HezR3BuSsqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "BrOsii0PXGXqc4iT7AbTug", "stars": 3, "date": "2007-07-03", "text": "Tried Rock Bottom tonight before a movie and I thought it was ok.\nI had the Lemon Grilled Chicken with Mashed Potatoes and Asparagus. Everything was very yumm, but Rock Bottom just didn't make enough of an impression on me. If I was obsessed with beer maybe it would have gone over better. Restaurant ambiance and menu were very typical and neither were impressive. However my crazy friend Megan ordered Buffalo Fajitas, yes real buffalo steak, so that was a cool menu option. \nNow I can add Buffalo to the list of crazy things Ann Marie has eaten.\n\np.s Buffalo tastes a lot like steak.", "type": "review", "business_id": "d7V3ykQHqChv0KtXEanKLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "gW-ukHucTfVCnFCKKxPJzw", "review_id": "SvDJPgx6Foh-6RQ0T3Da2A", "stars": 4, "date": "2008-02-02", "text": "The new store is smaller than the previous one. But it's still a reliable digging source for records. I wish there was a better selection of dance tracks, but that isn't really their thing. They did have the new Chromatics and Glass Candy 12\" singles when I was in there last, which was nice.\n\nGreat selection of hip hop vinyl, some awesome indie records, etc. Definitely recommend this if you're in the Tempe area.", "type": "review", "business_id": "jSRPuytD6HuRUDzxnQpvBQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GTG2sB8MKqb8BBG0IdVZrA", "review_id": "XM7aQ93YxucYRIwFjU5aEw", "stars": 5, "date": "2011-09-28", "text": "You don't expect to find a good restaurant in a strip mall, next to Costco, but Upper Crust is all of that. They have fantastic food, including fresh made mozzarella (made at the restaurant), really good chicken wings (ask for them crispy!), and, yes, great pizza. There's always a happy hour special going on and the bar and restaurant sides are totally separate, which is great for both families and the no-kid crowd. And, now, that it's cooling off, you can finally enjoy the patio!", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xVTQGVRDnkhpbcfEbszBJw", "review_id": "mzIRhfMaiEhEc8BLuV-j1A", "stars": 5, "date": "2012-09-28", "text": "From the outside you wouldn't guess the kind of school it is - its in a strip mall, its small, not very well known - but if you took the chance to come inside and see for yourself you would be very surprised and impressed. This is by far the best dojo I have ever run across. You are welcomed when you enter the door, all your questions are asked whether they seem stupid or not. You are treated kindly and with respect from the get go - a very warm place to walk into. I was so impressed with this place I signed my kids up immediately. They have so many types of classes and the variety and time schedule they really try and have it work around your family so you have your time as well. The teachers here are amazing and always do their best to make it the best class you have every time. I would recommend this dojo to anyone that asks me - and I do. If you haven't come into this place and tried it or have your kids try it then you should - you are missing out.", "type": "review", "business_id": "ATk3ShTVfXD35kfMELPH7Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "xgrNgHOs8F5JvEX38IeCJg", "review_id": "cytlF4g-pv48MIQh8H7usA", "stars": 4, "date": "2009-03-27", "text": "I'll give this one a four for atmosphere and BEER... and Steve the manager. He rocks. The food- eh. I don't go for the food.\nSo last 4th of July, we were having a keger. Hubski went to pick up the keg from Four Peaks (ice cold Kiltlifter) and there were some waitresses talking about the 4th and how they have no idea what it's about. Well hubski shows up and tells them all what's what. Now we've got a friend in Steve forever.\nEverytime we are there, he takes a break to chill with us. We got a tour of the facility. This is cool- the Kiltlifter is supposed to be a Scottish beer. Four Peaks actually has biologists balance the water to match the chemicals to Scottish water. The same with the Hefe- the water matches German water. This is all so that we can have the most delicious and authentic beer possible.\nFour Peaks is a laid back place, great beer, good people-watching. Bar food.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "sVA8iopVeg0-0w7O35xdgA", "stars": 5, "date": "2009-02-28", "text": "Believe the hype. That's all I can say. \n\nThis place is the kama sutra of flavor for your taste buds.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LogquRKfP0EPKJ3hdpB4-g", "review_id": "iW7lIo3fEtYIJ6RX52kDNw", "stars": 2, "date": "2011-03-15", "text": "Liked the theme, didn't care for the execution. Portions were scant, prices not commensurate with value. All three diners were disappointed. Left still hungry.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "c0lXKoG8PZ4S58nAiQWIMw", "stars": 5, "date": "2008-04-05", "text": "I really like this place... they have great wine... try the tasting... it is 10 bucks and you get 5 tastes... they make almost all of the wine in house (i know the almond champagne is not made there)... i have not found any wine that i don't like... my favorite is their porto and chocolate port.\n\nthe other thing you can do is have a bottling party. i recently purchased 30 bottles (at a great price!!! cheaper then the wine stores). they make the batch for you and then you have a party to bottle and label it. this is a great and fun different party for you are your friends. \n\ndespite it location it is a great place for a date...", "type": "review", "business_id": "-UnYs8XvV1M983xZoREdng"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "FXs0UttdgKvyQYDDhVG1ZA", "review_id": "ovUu53ZnfmpyOQ8KPEG_YA", "stars": 3, "date": "2008-03-20", "text": "Great location, super cool conversion of an old gas station. My only gripe would be that barista didnt rinse portafilter before pulling my espresso shots , thus my cappuccino tasted burnt. This is however a common problem at most indy coffee places.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "YHna_-6ncuLYgYLgpZj8bA", "stars": 5, "date": "2010-04-18", "text": "Truckin' Good Food is by far my favorite part of the Ahwatukee Farmers Market! So far, I have tried the Veggie crepe and the Bean and Cheese crepe and both were spectacular. For various reasons, it had been about a month since I had been able to meet up with their tent on Sundays and today I got my fix!\n\nJeff and Erin are both so sincere and friendly, which makes it easy to hang out and chat while your crepe is made right in front of you. The care and attention put into each and every order really makes TGF stand out from the rest, the fresh, quality ingredients don't hurt either!\n\nNext week, I've got to try the PB&J!!", "type": "review", "business_id": "4gxZ5tPEqm0QnRkILa9cNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "YPwFl3RCRwr-kyN-890STA", "review_id": "rDAtj7unq56LjMiULVF5eQ", "stars": 4, "date": "2010-09-14", "text": "We went there for the first time recently and was pleasantly surprised. We got there about 8pm on a Friday night and the place was still packed. We only waited maybe 5 minutes to get a table which wasn't bad at all. \n\nMy date had the BBQ Chicken Sandwich with a side salad. While we were waiting for his salad to come out the server came over and said there was a mistake as he should have already receive his salad and it would be right up, which it was so not a huge deal. A few minutes later our meals came out. While he was hoping it was shredded chicken it was a chicken breast but said it was still quite tasty. I had the 10oz rib eye with sides of green beans and applesauce. The steak was cut perfectly and it was a perfect size portion. The green beans (which the server suggested) were awesome and the applesauce was a nice sweet finish so no dessert was needed. Another bonus is everything (steak, beans, applesauce) were all served on separate plates so no runny juices mixing all over the place which was perfect!!!! \n\nThe prices were very reasonable as well. \n\nOverall, we both enjoyed Texas Roadhouse and will certainly be back.", "type": "review", "business_id": "NA3tQYxR6Fq5O8nV6u41Tw"} +{"votes": {"funny": 6, "useful": 3, "cool": 2}, "user_id": "m7j9e53ycZxjWYBD7rZVng", "review_id": "SuB485xp6MQ-LKNPNpUKyw", "stars": 4, "date": "2008-01-28", "text": "This is the place the Scottsdale pooches come to smell and be smelled.\n\nSure, you've got your requisite handbag dogs and the larger breeds but they've kept them separated by the ever PC \"active dogs\" and \"passive dogs\". Nice. \n\nThe beasties go on the active side since they are not about to jump in a Louis Vuitton carrier anytime soon. The \"active\" area was nicely maintained with good landscaping, plenty of poo bags, and a water fountain. My little prisses don't use water fountains though so I must pack their own bottled water. \n\nMy only complaint is that it seems very crowded and it's not nearly as big as Grovers Basin near my house. But, the beasts were tired and happy on the way home so no complaints.", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "INOIvOJb-pSc4gqwpcFSQw", "review_id": "sPdd9_7P79zTJ0bxX0spYw", "stars": 4, "date": "2012-07-16", "text": "Large menu with huge portions. Crowded, enjoyable atmosphere. Great bakery. Somewhat pricey but worth a trip. Food was good. Had breakfast the Spanish Omelet & a breakfast sandwich made of eggs, bacon, cheddar on 2 potato pancakes; bagel with cream cheese. All were fresh & plentiful. Sandwiches are huge as well. Offer \"healthier\" choices as well.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KmgUyFBWUdGnIVwdk0hdDw", "review_id": "jGdixmt0QgMjE85uUgfLfA", "stars": 5, "date": "2011-11-04", "text": "Okay, so I admit it. Sometimes I get a stubborn idea about not wanting to go to a specific establishment due to a fierce loyalty to one of it's competitors. It took me a while to cave on this one. Too long in fact.\n\nEveryone loves Lux and as it happens, they have good reason to! My latte was supremely delicious. The environment is great albeit slightly confusing as far as the flow of service. \n\nI absolutely love the patio area. This place definitely has a Pacific Northwest vibe that immediately resonates with me. The service was really laid back, yet authentically friendly. I was far too busy enthusiastically catching up with a dear friend to take in all that Lux has to offer. There's room in my heart for Lux after all so I shall return. My primary concerns going in were the coffee, service and atmosphere. A+ for all in my humble estimation. \n\nI was a little late to the party, but I had a blast anyway.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VW1zLVadNrWZgYBCueSFow", "review_id": "fHxzItWy8-ao06MFqeJm0Q", "stars": 3, "date": "2009-07-08", "text": "As the prior reviewer states I too drove by this place a million times. My husband and I love breakfast and are always seeking the ultimate omelet . We both ordered (of course) an omelet. Mine was chorizo, cheese and green chilies and my husband's was cheese and mushroom. I must say the food was piping hot, which is always a plus for me, I like my food hot! The omelet was pretty darn good, and the hashbrowns were nice and crisp. Not my ultimate omelet but I would definitely go again.", "type": "review", "business_id": "V6_sVDynh9Q0rSfbPYrqjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iQiiCZDlisBYApaPCM7uxA", "review_id": "YkoeJspw1JNTAdRPE7WrYA", "stars": 4, "date": "2012-07-09", "text": "This place is not pocket book friendly. It would have cost us $12 just to park if the center didn't validate and knock off $11.00 of those bucks. For 2 adults and 2 children it cost us $50.00 to enter the door. (This is just to enter the center, does not include the Planetarium or the IMAX Theater)\n\nMy kids and husband found it to be a neat little place, I enjoyed just watching them have fun. Would be good to go with a group of people and watch how everyone interacts with everything. There were a lot of useful and strange facts to learn about several different things. \n\nI rated it a 4 star because my kids enjoyed this so much. I would suggest trying to find coupons, going on special days because spending $50 to just enter the center and it took us 2 hours to see everything and that was even with them trying all the experiments. \n\nWorth it to attend at least once though. \n\nMy children are girls and they are 10 & 6.", "type": "review", "business_id": "MwmXm48K2g2oTRe7XmssFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dZXfEa2OD0P1fej-yTdiXQ", "review_id": "r7i9szvhFbc-EGkp8_HPgg", "stars": 1, "date": "2012-10-10", "text": "Not worth comin here. I'm all for food like this but this restaurant sucks. They gave me and my dad the wrong meal, and the food was not that good. The meat was dry and the rice was cold. Not worth it.", "type": "review", "business_id": "6lcay-E_ssmzpGanKbColg"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "ImIxEsu1n3mYjB_xSEp6kQ", "stars": 5, "date": "2012-05-24", "text": "great service, efficient bartender, the place was packed and he flew around that place serving brewski's nonstop...awesome outdoor patio and great view of camelback...happy to see this little gem and will be back", "type": "review", "business_id": "Cse5FvYuACIxljwaac2SZg"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "LvAr6xG-A40PGk1quMKxlw", "review_id": "qoYqECjN8RleSBvf1KGhxw", "stars": 3, "date": "2010-07-05", "text": "I like Yogurtland, however, the lines can get long and my yogurt melts by the time I get to the cash register. It's also difficult to fill your cup with yogurt because it is pure chaos in there! Customers are running around everywhere and can't make up their mind. I also hate how I don't know how much yogurt I am getting...it ends up costing more than I bargained for and more calories. Their topping are cut into huge pieces (probably to weigh more) and the topping bar is usually messy. Again, I will stick with other yogurt places.", "type": "review", "business_id": "GNC2WXRjEO8e7r5f8ZCVrA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "8-mw_aotUGmP0k0s6QKwOA", "review_id": "4PzFwjQIO_RXSLeLlWPdhQ", "stars": 5, "date": "2012-05-23", "text": "The best of all the Harkins. Better array of munchies and really friendly staff. Also, I wasn't overly carded on my inexpensive purchases. At the Superstition Springs location, I'm carded four times between the parking lot and my seat. Chances are...if I steal a credit card, I'm not gonna sit in the same spot for three hours awaiting the po-po.", "type": "review", "business_id": "BVQnDNDIyZJH9Ik8qogatg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "rzDiX796__SRf96XcO20Tg", "stars": 4, "date": "2007-03-13", "text": "YC's is a pretty cool place to go. Here's how it works: you get a bowl and you fill it up with anything you want, including sprouts, broccoli, carrots, onions, peppers, scary dehydrated meat and much more. \n\nAfter all your ingredients are in your bowl, you then get to choose the sauces you want to put in it. They have suggestions and recipes for you to follow, from sweet to super spicy. Or you can always make up your own. \n\nThen the chef's wok it up for you and pour it all back into your bowl. You can add some rice to it, sesame seeds or any other toppings that you want and choose a table to sit at. \n\nMy only warning is to vegetarians- you must ask the cook to clean off the grill before cooking yours because if you don't, you will get little pieces of meat in your bowl that have been left on the grill from someone else's meal!", "type": "review", "business_id": "VEojEXbJ81eiPLSSF9jNEQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "b2TmvOOnqvccgJU4Lg9fPA", "stars": 5, "date": "2010-01-22", "text": "So far, I have been to Lola twice (a Saturday night and Monday morning). Saturday night was very quiet compared to the super busy Monday morning. Free Wi-Fi, coffee, baked goods, and awesome location...you can't beat it. The morning we went, we had a Monterrey Jack scone that was really good. I laughed when I got my latte in a \"So I Married an Axe Murder\"-esque cup. We sat along the high tables facing Central Ave and I really enjoyed surfing the internet and looking out towards Central. There are various types of seating as well as some outdoor tables. I really loved this place but worry that it will be one of those places that will be so popular, you'll never get to sit there. That is why I stopped going to Lux because it eventually got so crowded all of the time. My favorite part of Lola coffee is being right on Central and watching traffic and the light rail go past. Love it, love it.", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wT8W3LDUHmgE_O4Mgp32uQ", "review_id": "6zZ7n36mJ3JiGpprYjOXZA", "stars": 3, "date": "2012-05-16", "text": "Priceline had this resort as 4 star but it looks and feels like 3.\nThe employees are nice, though. WiFi 13$/24hrs.\nGrounds are nice.", "type": "review", "business_id": "dJvUc4ViWEJ0NJfQtYo7xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sGL10Y44CVzzKNkLVeHOEQ", "review_id": "kfIItg_5MS88h0HneR8rIA", "stars": 5, "date": "2012-05-24", "text": "This place has really good mexican food and a very nice ambience.", "type": "review", "business_id": "jnzROxEjNkgeo5Ju3F8qzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f6l-y78wa7xqzauwPbooTg", "review_id": "m3ri8IUiWiwOvbhts_jhZA", "stars": 5, "date": "2010-10-25", "text": "Finally a place where my kids and I both love the food that doesn't serve chicken nuggets and fries! My kids love Blue Burrito's kids chicken quesadilla, especially the churro that is included. I love their salads and taco plates. The free chips and salsa bar is a big hit with the family. The place is always super clean and the staff is very friendly. The perfect place for lunch on their new patio now that the weather is cooler.", "type": "review", "business_id": "MAFjNfDWJRgWCw8IOC7mew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UUUa3QKthaYPrfkE2aQujQ", "review_id": "Rpy0C7K_NUepTPzCp_U_6A", "stars": 4, "date": "2011-06-10", "text": "Hadn't been before but my fiance has been going for ages. I had the coconut shrimp, very good and moderately priced. Very friendly service. It'll definitely be a place I consider in the future, especially if I'm using the light rail in the central Phoenix area.", "type": "review", "business_id": "kaIue7GRCmkPzDeHDBTttQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Dw0b16ira4GoAm0wlWlYQA", "review_id": "ufjps0QLbn1QqIz908PvYw", "stars": 4, "date": "2012-11-05", "text": "Velvet wallpaper adorn the dimly lit walls here, and make you feel like Dean Martin might sit at the table next to you. Old school, in the classic sense. I used to work across the street from here, and would stop in from time to time for a great happy hour, occasional employee lunch for my staff or a special occasion dinner from time to time. Being from New England, it says a lot when I admit that they have the best Oysters Rockefeller I have ever had. Ever. The steaks are just wonderful, and the martinis perfectly poured. But you know what secret thing I ADORE about this place (besides the back entrance through the kitchen)? The bread. Warm white rolls smothered in a garlicky-leek chutney of some sort. For all those times your Mom told you not to fill up on bread, just disregard. She never had this bread. While I think you should always splurge here for a fantastic dinner, the real bargains are lunch and Happy Hour.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 11, "useful": 14, "cool": 12}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "do1reKwHHoOQuRt2e9NL-Q", "stars": 4, "date": "2011-05-17", "text": "Not too much to add. But must try nevertheless. \n\nSecond time here, well technically third but the first time it was on a Sunday at 3pm and it was closed. Closed, 3 pm Sunday? That made me a grumpy mumpy, but on the second time/third time when it was open, I was pleased. I mean, Sunday at 3 pm and closed, YIKES!! Where will hipsters look cool and surf on their Mac Books for free or students study for hours while only spending $6? \n\nWent yesterday (third time) for a little of the old in and out, or in some circles known as a spot of coffee. Nice coffee shop, I didn't eat anything but had a lovely triple skinny vanilla latte and picked up a bag of their espresso. \n\nI love coffee art and my skinny vanilla latte had a touching and semi-inspiring flower shape on it. I immediately rushed home and scoured You tube to learn to make coffee art with my espresso machine. Oh, they make it look so easy, we tried it and are beginning to make progress, (I made the shape of an ink blot on my latte) oh to think some day my latte will have intricate bird shapes and strange Aztec images on our homemade espresso drinks, alas inspired by Lola's. \n\nPS. Coffee art is a lot harder than they make it look on You tube. \n\n\nTo sum it up, I found it to be a nice caring touch that you don't see at many other coffee shops. \n\nThe shop itself is really set up nicely and in perhaps one of the best central corridor locations possible. Off the light rail and in the heart of Cen Pho, it is strategically perfect. \n\nThe down side you ask? \n\nThe hours are Wimpy, Wimpy, Wimpy. One would expect later hours with a central-downtown-hip-urbane -Coffee shop of this caliber? \n\nI think the hours are indicative of an inherent conundrum to what ails Central Phoenix as a whole (although improving). Things are just not open late enough to be considered a World Class City. Hopefully, they will have longer hours as time goes on? \n\nOtherwise, I am a fan of Lola's!", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XSuQgNXTm5YfZSOH44Hxhw", "review_id": "zuimJsK_p57Q7wn8d0EYkg", "stars": 5, "date": "2012-09-26", "text": "So this is my current Sunday All day Happy Hour JAM!\n\nThis place is SO GOOD and I'm not a huge fan of all off Fox Restaurants concepts.\n\nThe Chefs Pizza of the day hasn't let me down yet... We don't even ask we just order it! The Chefs Board is pretty good too! My fav dish right now is the Broccolini - super simple but it's just so light / fresh and make sure you try the Bucatini & Meatballs if your their for happy hour. \n\nAwesome open feel to it - super friendly staff. The bartenders are great - I wanna say the dark haired brunets name was Nicole - works weekends & knows how to make a mean bloodymary / Red Rooster in their case. \n\nThe parking / Valet situation is a little annoying but remember the sign says \"Complimentary\" not Mandatory - park your car yourself if you want.", "type": "review", "business_id": "GpK-hwVb08ZFJO_xPboKLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2MPGdIbaaEdKuW9IpPxHfw", "review_id": "BQJHvkaRhxXG-AE-4sJ2Ag", "stars": 5, "date": "2012-11-11", "text": "We just completed our third tour with Taste It Tours and we've been impressed with all of them. All 3 tours are distinct and are loaded with excellent restaurants. I've spent quite a bit of time downtown, but it can be daunting and I haven't ventured much to explore and try new things. The tours take you to the places you may not notice as you whiz by, give the history (yes Phoenix has history), and overall just slow you down to take in the sights, sounds, and of course, food!\n\nCan't decide which tour to take? Start with the Original, then the warehouse and finally the evening. Really, they're all good! \n\nTips: Have a light snack before starting the tour. Yes you do get a lot of food, but keep in mind that the tours start at 2pm or 6pm. You have introductions, overview, some history and then a short walk to the first restaurant. If you're skipping lunch, you might be very hungry when you arrive as the first restaurant. 2) Wear comfortable shoes. You will be walking about 2 miles. Nothing strenuous or fast paced, but just be conformable (also wear comfortable clothing as you will get full). 3) Pace yourself! Don't eat everything that is in front of you. Each restaurant gives a fair amount of food, now multiply that by 3+ more restaurants that remain on the tour...You get the idea. You will be full! \n\nHighly recommend for anyone: locals, out of town visitors, guests of locals, team building, etc. Really, who doesn't like food!\n\nSide Note: Taste it Tours was founded by a few Phoenix locals who love food and their city. They have only been around about a year now and have been doing extremely well. They base their business around supporting local businesses (local supporting local). I'm excited to see how well they've done and wish them all the best (More tours are in the works and I will definitely be taking them!)", "type": "review", "business_id": "3BqT16UJFW6BBZxZMPxV1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "slp8VQWuW0Dq_azDCAshCw", "review_id": "1kf2kG85mGGJ0vv84GgB5Q", "stars": 3, "date": "2011-04-03", "text": "Used to live in this neighborhood, and it was a favorite. \nThe place is clean and modern, I love the look of the bar. The servers are very good, and friendly. \nUsed to go with a group of friends for \"taco tuesday\" almost every week. They have now taken this off the menu, but will still do it for you if you ask, which is cool. (two fish/steak/or chicken tacos and a margarita or beer for $10).\nSo why only the three stars? The last two times I have been there, food has not been good at all. Had the ahi tuna sandwich which was always my favorite. It's served rare with this wasabi mayo and so so good. However, second to last trip there, ordered it and the tuna was not good quality. It was stringy and didn't smell right. Took two bites and that was it. Because I'd had so many good experiences gave it another try, convinced myself it was a one time bad piece of tuna and ordered it again. Big mistake. Stringy and inedible again. Probably won't be going back. And if I do, I have learned my lesson about the tuna.", "type": "review", "business_id": "UScgPn6pIHuOmQJTsZQIOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tl4z8iSvX7SwJwbSJt-v8w", "review_id": "Lz384EJApBnym2OXcdrJjw", "stars": 4, "date": "2012-09-22", "text": "Self service, good mix n match favors and lots of goodies. Be careful, the bowls are big and you can easily pay more for a single serving than a gallon of Breyers at the grocery store. \n\nVery dog friendly place. They will bring out a bowl of water and a small softserve with dog treats stuck in it for your little dog.", "type": "review", "business_id": "9H1PBcxPxicokgj8RJ4L8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ri2gusuEHm2kVuZ_YC-mkw", "review_id": "wNiLVGSCpHwvuBTAbT01jA", "stars": 1, "date": "2010-09-05", "text": "I signed up for Yelp just because of the poor service and being cheated out of money from Cafe Rio. I already voiced my complaint to the restaurant and to their website in writing, however I haven't received a phone call or email back.\n\nI've visited this establishment twice and each time I go I receive very little toppings on my burrito or tacos. I understand that it's made to your order like Chiptole or Qdoba, but they'll add very little cheese or toppings on your food, which can cause you to request more. To save myself time and every yelpers eyes from reading this long story, the individual making my tacos was extremely frugal on the toppings on my tacos. She barely put any cheese on my 3 tacos and I simply requested that she could put a little more on the tacos. She did and when I went to pay for my order, I was charged an extra 95 cents for \"side cheese.\" The issue isn't the money because eating at Cafe Rio can be expensive for a fast-food mexican restauant, but it's the principle of charging me extra after I said, \"can you please put a little more cheese on my taco.\" \n\nThis hasn't been the first time this happened, but a previous visit had the same result with the sauce on my burrito. I thought mexican food restaurants had gigantic burritos and generous size tacos, but Cafe Rio will charge you on top of your order if you don't like their skinny tacos.\n\nAll I ask for from Cafe Rio to acknowledge that when you add more toppings to what the cook's add to your food, that they say, \"this will be extra.\" They do this at Chiptole and Qdoba, but Cafe Rio would rather screw you over at the end. \n\nI will not be visiting this establishment again. As I said, it's the principle as to why they charged me extra for this, not the money.", "type": "review", "business_id": "TbaAnzOTX2-boTbAp3e8Qw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "DjrJ78sC1u5YlFdNUUZN2g", "stars": 4, "date": "2010-09-08", "text": "Fresh & Easy is the US subsidiary of UK based grocer Tesco who entered the American market in 2007. I know Tesco really well and they are smart business folks who know their market. Fresh & Easy has been opening stores all over the Phoenix area and have been using $20 and $10 coupons to build market share. I give them a lot of credit for doing this.\n\nI also have been shopping here for a long time and appreciate their eye on packaging food items for the busy consumer. One of my favorites is their rosemary focaccia bread dough. I've made it at home, but Fresh & Easy make it ohhh so easy when I'm tired and it's 6:45.\n\nBTW, thanks for the Hybrid parking space!", "type": "review", "business_id": "DbI6ezKctN4Z5SV7LvG4Sg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "gv6GLZ3-bgSs44PtPJR1Bg", "review_id": "XYUDvdJr0dwocLXY4xQiuw", "stars": 5, "date": "2011-02-17", "text": "Even though I've only been to Bosa once I've had the donuts from here several times. My parents have been coming here regularly (like, multiple times a week regularly) since this place opened and every time I come to visit they make sure to get me donut in the morning when they know I'm hungover in bed.\n\nNow, I'm only reviewing this place for the donuts. I didn't even know this place served other breakfasty stuff until I came here myself, but the other pastries & coffee drinks sound good as well. That being said, when it comes to donuts Bosa is as good as it gets.\n\nThey're soft, chewy, and all around yummy...that goes for all varieties (well, the ones I've tasted anyway). Another good thing...they're CHEAP! It's not like donuts break the bank anyway, but even compared to chain donut places the donuts here practically cost nothing. \n\nThe place itself is not much to look at, but who cares! All I want is the donuts!", "type": "review", "business_id": "mSbFLlDB5Qu-6al1e2DSBw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "PDRWbCZa92irf8mK5X_Kig", "review_id": "W6J6noCNjNBom36-avS-Rw", "stars": 3, "date": "2012-01-23", "text": "I have never been into soul food per se, but my husband woke up craving some chicken and waffles, and well, you can guess where we ended up. We were so pumped that there was Kool Aid on the menu, so we ordered that immediately. I don't know why every restaurant doesn't do this... Kool Aid is amazing. The service was decent - our waitress was quite friendly, and the food came out quick. I got biscuits and gravy, which was pretty delish. The gravy was thick and filling. So filling, in fact, that I couldn't finish them. I also got a side of mac and cheese which was not great, and I didn't eat a lot of it. Overall, I'd give this place a solid 3. I'd come back again, but mostly because my husband thought it was some kind of wonderful.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wPwoLUKJIeCVp6_Vh7xpAQ", "review_id": "4H0-QZJRYywGwixOMIDftQ", "stars": 3, "date": "2009-03-07", "text": "I've eaten here last year and this is the second year. I finally am able to compare steaks to another location. I love the decoration as it's sports of all kinds. There's always something new you haven't seen before. It's the perfect place to eat and study what is around you.\n\nI had the crusted Parmesan cheese steak. I had tomato bisque and the string onions. Those are good! I had the steak and it felt like it was missing something. I'm not sure what as I don't eat steak a lot. \n\nThe soup was great. It was a cup and perfect. The onion strings were good. The steak was ok. I'll always go back, but not for steak. I also wish their menu was more broad with more items to choose from.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aGfEYSVuoarYlEwAUa0wCQ", "review_id": "W6QM5ij99thbET6qeAt_rQ", "stars": 3, "date": "2010-06-29", "text": "Let me first say that this is a nice place. The Chips and Salsa were some of the best I have ever had. \n\nMy Wife and I both ordered Soft Shell ground beef tacos. The ingredients were great and everything tasted very good. However I would like to note that the tacos were swimming in grease. Overall It was one of the better places we ate in the phoenix area.", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "C1rHp3dmepNea7XiouwB6Q", "review_id": "_4X6a7eHvFKksVEjaLCkWQ", "stars": 4, "date": "2011-10-21", "text": "Love the drive up waitstaff on skates experience! They have happy hour specials with deals on drinks. I recommend the Cherry Limeade, so good, like a Shirley temple with a kick of lemonade added in.", "type": "review", "business_id": "4vz9I9b6bGEEuRGr3Ry5bA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iZtveTtgf6ZMd6Ym2HK8Ig", "review_id": "8nbod5lk7U5-4rW9QR9ZOA", "stars": 4, "date": "2011-12-30", "text": "This review is for the new children's library on the campus.\n\nThe new library is BEAUTIFUL! I'm hoping that without a lot of kid traffic it may be a sanctuary for teachers who want to be able to find the books they need to bring to their classrooms and share with their students. They don't have as large of a selection as Burton Barr, but they do have some titles you can't find at the other branches. The shelves are well stocked but not so tightly packed that browsing becomes a chore. It's peaceful (like a library should be), but it could use some more seating. \n\nI have to be honest that I find the coolest part of this library to be the tiny cafe at the back - they serve Starbucks coffee and tasty pastries at very decent prices. \n\nBooks, coffee, and sweets plus silence and organization...... It's like heaven!\n\nIf only it weren't so far away from me....", "type": "review", "business_id": "cnoqbQYPhG_5M6zX5dnVyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "41uQK2oJAmahY0jCrdrl4w", "review_id": "vKVjN6ib5zoVy6FVJW7XJQ", "stars": 4, "date": "2011-06-23", "text": "Food is top notch and within a good price range for a weekend breakfast. I dropped a star because it's always so crowded there's usually a line to order your food. That and they're closed on Sundays. It's a perfect weekend breakfast, how can you be closed on Sundays?! But I eat here all the time.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "_mo4LtybzPjvg-i6meN-tw", "review_id": "_-QYKi1nYxvu_Cdxqk6Apw", "stars": 4, "date": "2008-01-12", "text": "ABC is the Home Depot for the baker or kitchen gadget junkie. They offer unique cake molds, cake toppers and my favorite- solid color cupcake liners. \n\nThey host a number of different Wilton cake decorating classes.\n\nThey close by 3:00PM.", "type": "review", "business_id": "XAaXT0e70-USVYVKcnljsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zm08wcep2F-nRTHRyR8mpw", "review_id": "YjVwwlxEIbFc0wrXMVviJg", "stars": 4, "date": "2011-07-14", "text": "Old Chicago is about what you'd expect from a chain serving by that name - a pretty basic menu, with a Chicago slant. The food rates a solid 3 stars - not outstanding, but certainly not bad, and good enough for me to go back. I threw in a 4th star because we've had consistently great service there. We've had one waitress twice who is genuinely nice, clearly doesn't hate her job, and is on top of her game service-wise. That stuff goes a LONG ways with Brak. For a casual meal and perhaps a couple of belts, I rank Old Chicago comfortably ahead of such yawners as TGI Fridays (which has declined a TON in recent years IMHO) and others like Chilis and (gasp) Applebee's. Give it a try, I think you'll like it.", "type": "review", "business_id": "_9h-jH3YOkAU9-2A-dy6YQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9UK28WYQvS7aXyNfa_hLCQ", "review_id": "EiGMQdJjvFaVO9auRln5QQ", "stars": 1, "date": "2012-05-23", "text": "Surprised this place isn't closed by now. Went here once when I first started going to ASU and never came back.\n\nTheir ingredients are not fresh, gyro meat tastes old and decrepit. They really need to hire better pita makers who don't resemble drug addicts and derelicts. My pita was falling apart before it was even handed to me. Literally, by the time I got it to the table it was soggy and not even worth eating!", "type": "review", "business_id": "Dh-jKrXlivowMGDtfD_gug"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "DMtlC2TpVEimIn0D07HnUA", "review_id": "In4SQU1ZVx9fU4yq67HphQ", "stars": 1, "date": "2009-09-02", "text": "I will never know what the food tastes like because they were so so rude, I will not go back. We came in and were given a table, menus were practically thrown at us. And then we waited, and waited and waited. We asked a woman working there, and she apparently did not speak English and indicated a man at the front would help us. But he was too busy talking. We got up and left. No one even said a word when we left.", "type": "review", "business_id": "lhRUPA28pRIN1MnllN-o9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UgttlReSB8g9YF3URK8BPw", "review_id": "oNHKppInXsllqR1yBwydwg", "stars": 4, "date": "2010-10-30", "text": "So happy Los Dos Molinos is in the east valley!\n\nLos Dos makes it spicy so come prepared to drink a lot of margaritas...not like that's a bad thing.\n\nGreat food & great prices!", "type": "review", "business_id": "9tSHBEoAhKu-tkU8n6SKjA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "v6rb-4YhADpuD99f3RKmgg", "review_id": "EhuilB1OjYUS16-1CEMM4Q", "stars": 5, "date": "2012-10-21", "text": "Any parent with young children can vouch for me on this one...keeping the attention of a three year old is, to say the least, difficult. They need constant stimulation, otherwise, there very well may be hell to pay!\n\nEnter, the Children's Museum of Phoenix!\n\nThe facility is an old school, converted into three stories of pure fun and energy! \n\nAfter you pay your standard $11/person older than 1 (or your $22 for up to four people with a Groupon), you encounter a three story art project that can only be described as AWESOME! There are multiple ways in which your children can traverse this mammoth. The various pathways challenge children in strength, balance, and critical thinking skills...all of the ways you want to challenge your child!\n\nAfter your child has lost interest in this room, you progress to the second floor. Here, children get to experiment with a really cool board that can only be described as \"Plinko-esque\". Here, children can alter the path of a falling object by changing different platforms. My daughter thought I was a genius because I was able to predict where her object would land every time...it's a shame she'll ultimately realize how routine that feat really is. \n\nAfter Plinko, children can either go to the trike wash, build forts, or they can head to the art room. After some laps through the wash, my daughter wanted to head into the art room. Being that we went right before Halloween, our child had the opportunity to make black play dough (to make spiders), she got to paint on a giant rocket ship, and then she was able to make a spooky tree out of a brown paper bag. Such simple activities...such great opportunities!\n\nAfter cleaning all of the paint from her smock, we made the journey up...to the third floor. Here, children get to play grown-ups. There's a mock supermarket that allows children to either shop, ring up merchandise, or work in the stock room of a miniature grocery store.\n\nAfter shopping, our daughter wanted to work at the little ice cream stand located just outside of the grocery. We had fake ice cream cones and sat at the tiny bistro set while we watched children make their way through the noodle forest. We then made our way to the end of the hall to race miniature race cars on roller skate wheels.\n\nBeing only three floors, our day at the museum only lasted a couple of hours...but in those short hours, my daughter never stopped smiling!\n\nHow on earth could you rate any place less than five stars when it brings so much joy to YOUR pride and joy?", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YsPqt0gxG60l0cJvHl_ylw", "review_id": "84fWNhsMjlnA5Egz4xWdxw", "stars": 4, "date": "2012-06-24", "text": "Quick services, a decent selection, and solid customer service.", "type": "review", "business_id": "VLXpl4P9b2ndIQUd-eGP2g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "-EyEj5BujVFisco6OwmR8A", "review_id": "aKTQXkxiC_VeS_MPolRUZw", "stars": 5, "date": "2012-06-11", "text": "I found this place completely by accident and it was great! I have been going pretty much once a week since discovering taco caliente. I love that you can choose from about 4-5 different meats and everything is completely fresh. .... Nothing is fried! The service is good and the owner always stops to chit chat with me. The salsa bar is pretty good and the hot is actually hot! Love it! Can't wait to go this week! \nThe only thing is that I wish they were open later but I know they just opened recently. Hopefully, they'll extend their hours soon. :)", "type": "review", "business_id": "qrLqx4oBeR2gNDE873bUHw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "2qnz2y_Z1nDo2HqqfxJxSA", "review_id": "YV4KrLQJ9z-aMcisXJQ3_Q", "stars": 2, "date": "2011-07-14", "text": "I think the high reviews of Sofrita must simply be a function of the limited dining options in Fountain Hills as this is the worst excuse for tapas that I've ever had. We walked in and were greeted by a strange, musty smell that remained pervasive throughout the meal. We should have taken that as an indication of what was to come and left, but based on the great reviews, decided to stay. Big mistake.\n\nI ordered a red sangria which was okay, but had a strange flavor of figs or dates so I'm not sure if it was just made with old wine that had turned and took on a prune juice flavor or if that taste was intentional. We ordered the olives, fried potatoes, grilled zucchini, shisito peppers, and four different types of bruschetta. The olives were, well, olives (tough to ruin those) but also contained some off-putting caperberries that we avoided. The grilled zucchini was just plain zucchini with no seasoning whatsoever served with a side of what looked like potato salad as a dip, but we never really could identify what that substance was as it had absolutely no flavor so we opted to avoid the fat that it was obviously adding to the zucchini. The shisito peppers had no spice or flavor at all and were absolutely swimming in oil. I've never had a \"roasted\" pepper that was so soaked in grease. The waitress asked if we didn't like the peppers when she noticed that all but a few remained and when we pointed out how greasy they were, politely took them off the bill. The four pieces of bruschetta were all of different varieties: roasted eggplant; ripe tomatoes; avocado and beans; and grilled artichoke with cheese. The bread was thick and chewy and none of the bruschettas had much flavor at all. In fact, I think if I had just closed my eyes and randomly selected one off the plate, I probably wouldn't have been able to tell which it was. The fried potato wedges were actually the best part of the meal, which is sad when the best item is a simple fried potato.\n\nThe atmosphere was severely lacking as there were candles on all of the tables and numerous votives on the walls, but not a single one was lit. The restroom was extremely dark and was absolutely filled with unlit votive candles so I'm not sure if this was an attempt at saving costs, but had I known this, I would have gladly spared a box of votives from home just to create some sort of ambiance while we ate. The place is also incredibly tiny so I have no idea where the flamenco band and dancers that other reviews have spoken of would perform. If anyone tried to move through there, they would literally be bumping into tables. \n\nWhile I love tapas style dining, if this were the only tapas restaurant that there was, I would gladly forego the experience. Needless to say, we won't be back.", "type": "review", "business_id": "EoVGIsaatkdbWLY9qyFcgA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "jqVeTSin5GeRm0ceSg-PBA", "review_id": "3kOWFRioapOXCX5WwKtxsg", "stars": 3, "date": "2009-02-13", "text": "I met some friends last night at Cadillac Ranch and this was my first time going. The space has a very odd layout, but there are two bars (one inside and one outside on the patio) and both have plenty of TVs to watch. There is also a very cliche mechanical bull, but unfortunately (or maybe fortunately) no one rode it while I was there.\n\nService at the bar was really good, but when our group moved to a table, service became spotty. We had two servers for our table of 11 and one would take a drink order or would be asked for something and then not deliver it or something would get missed...the two servers just didn't coordinate very well. Luckily we weren't in a hurry and were a pretty laid back group. I only ate the Cadillac salad (mixed greens, tomatoes, cheese and croutons) and it was a nice size for $7.95. However, and maybe this is just a pet peeve of mine, but I hate when restaurants put the dressing on for you! I prefer for it to come on the side, as it does in almost every single restaurant I have ever been to, so I can put on as much as I would like. I did try a few of my friend's fries and they were good...not oily and for fries, they were actually pretty light. As a note, for groups, they put an automatic 20% gratuity on the bill, not the standard 18% most other places do.\n\nOverall, I wouldn't recommend this place as a lunch or dinner destination as I was not impressed by the menu or the entree prices which seemed on the high side for what they were. However the three stars I am giving Cadillac Ranch are for their happy hour:\n\n$2 domestics\n$3 imports\n$3 Fat Tire bottles\n$3 Flavored Smirnoff Vodka drinks\n$3 Margaritas\n$4 Rum (Captain Morgan)\n$5 Vodka Martinis\n$3.50 to $5ish select appetizers (there are about four or five)\n\nI'm always happy when I can get Stella drafts for cheap. Also, according to the bartender, one of the margaritas they serve can only be purchased a maximum of 4 times by one person because it is so strong. One piece of advice: If you start at the bar and move to a table, close your tab at the bar even if they offer to transfer it to your table. We had a huge mess last night and some people overpaid and some of us underpaid.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "O-zVhDi_TeMs6R2Rz31g4Q", "review_id": "B4_R1YObekq2ypcwD0Rurw", "stars": 2, "date": "2011-03-27", "text": "I went here a few months ago, well I guess when they first opened, whenever that was (the fall of 2010 maybe). Anyways I am a vegan so asked about their vegan options. They said that pretty much everything was made with lard (I didnt know that people really still used that) but they said that they had a vegan burrito. I was assured that there wasnt any kind of un-vegan ingredients (such as cheese) in it. I ordered the vegan burrito with much skepticism. Once I got home and got about half way through the burrito I got a big mouth full of CHEESE!! \n\nI was so upset because I was assured that it was vegan and did not come with cheese. But even worse, I think that they started putting cheese on the burrito and then realized that it was supposed to be the vegan burrito with no cheese and they just kind of picked what cheese they could off and left the cheese that they couldnt easily pick off on there. I am not positive thats what happened but im pretty sure.\n\nAnyways aside from the fact that they REALLY messed up my order, the burrito was just okay. It was really pretty greasy. My fiance on the other hand seems to enjoy this place, he gave it 4 stars. He said that it is a good place for greasy mexican, and on Wednesdays you can get a huge burrito for only 5 dollars.", "type": "review", "business_id": "xHe6WBPFINEHUIeq_5yEHQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "7TtCP6bvd8wtK10K2KyLqQ", "stars": 3, "date": "2008-03-15", "text": "Yard House seems to be a good place to meet a group of people because of their huge menu, beer selection, and atmosphere conducive to talking... this location can get crowded, so depending on when you go, be prepared to wait.\n\nI'm typically not so much into chain restaurants but I've been to Yard House more than a handful of times and it's pretty consistent so I don't mind going every once in a while... the thing is, I now have a favorite item on the menu, it's the miso glazed sea bass. When we went the other night, they were out... bummer!\n\nOur server was fine- not the most friendly, but took decent care of us. We were a party of 6, and I wasn't the only one planning on ordering the seabass... my aunt and I were both disappointed, but what can you do? I ended up with the shrimp and vegetable terriyaki bowl and my aunt went with the tuna tartar appetizer and edamame. Others at the table had the scallops, the turkey burger, a steak salad, and scallop entree... Few of us were drinking that night, but we managed to have a good meal.\n\nThe manager, Clem, came over to apologize for being out of seabass - that was appropriate; obviously, we knew it wasn't his fault, but the gesture was nice. \n\nIn thinking about writing this review, I have to say that I lingered between 3 and 4 stars... I ended up giving just 3 because the Yard House has become just another chain restaurant in my eyes... nothing special, the same thing every time, just plain old average!\n\nSure, I'll be back for group meals, but I won't be rushing over on my own or on a date anytime soon. Go for a beer, go to watch a game, go to listen to some classic rock and have an average meal... and if you like seabass and it's in stock, go for it!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jGmnd3qIBPezcuxG0qyD7w", "review_id": "35mue8qxOv0mgeQcGOB9eQ", "stars": 2, "date": "2012-08-03", "text": "No way am I coming back here! The shoes seem to be made poorly, but I haven't actually kept a pair of shoes and I never will because I'm never coming back. I bought one pair because I thought they were cute, but quickly changed my mind so I returned them. Do you know how many people asked my WHY I'm returning them? In a very rude manner, literally all the people who were working there. Not only did it make me uncomfortable but they lost a customer because of it as well.", "type": "review", "business_id": "z3-tI1KCGhJ_B3-QxhNOOg"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "5hIcclyqd9yelg2BlsiXBg", "review_id": "10teqvIvfwrnvTDvpMGyZg", "stars": 4, "date": "2011-09-05", "text": "I love this outdoor mall. It's clean, it's open and has a wonderful restaurant selection. It doesn't have a huge amount of stores but the stores it does have fits the bill. Now that it has J Crew life got a little sweeter. I really miss the Border book store, however. \n\nSome cool Biltmore activities are yoga in the park and movies in the park. The movies are usually classics and happen during the fall. Another bonus, is it's super dog friendly. If you have a four legged friend to walk around with, make sure you walk to the east end of the mall and visit Arizona Humane Society's Petique to visit the other pups.\n\nHappy Shopping!", "type": "review", "business_id": "QAWdgDgWaFJYzJ2pGDjmdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YJxts7uAEYMbpCm6mxUncA", "review_id": "VD1bU4AxyL32QRFej0RG9w", "stars": 5, "date": "2011-07-06", "text": "Great service! Great Value! Best in the valley hands down!!!! \n\nI am a second generation customer and as far as i can remember my mom has always took my clothes here, from my 8th grade promotion dress, my HS prom dress, my college graduation dress and now i take my husbands suits here! \n\nPark Avenue has been there for all of my wonderful growing years and hopefully will be here for my future children as well!!", "type": "review", "business_id": "MJFQJCbA71OO7ugFY4cb4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3xFmGwxQMFOo_xPuq2z1cw", "review_id": "VzkbyLEBalfucb8pZjMS1Q", "stars": 4, "date": "2012-12-04", "text": "The burgers and fries here are pretty good, but the custard sundaes and concret mixers are amazing. The PBC & B i will go back for over and over again as well as try the other items. Great place.", "type": "review", "business_id": "vR3eAwcgkh2EmVJegZO2dQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "GubdNFoDAsiwE6bWIr97cQ", "review_id": "vJHQtgIwUkYblSzwA6IYmw", "stars": 2, "date": "2008-08-04", "text": "A friend and I stopped here today for lunch. I for some reason thought it was an odd choice, but he seems to go often and enjoys it. In fact the woman taking the order said to him, no drive through today? It would looks as though he is known in the whataburger world. \n\nThe people working here are very friendly if not a little disconnected. I ordered a whataburger with cheese and onion rings and a small drink. I opted for the Hi-C. I do not like sloppy food and this burger would not have been if the bun had held up. But as it is onions lettuce and tomatoes are falling all over the place. The meat was dry and lacking an particular flavour. The onion rings were very generic and sort of soggy. I loved the Hi-C. \n\nYou know you just never know if you will like something until you try it. I tired it and that is enough. Nice friendly folks though. I do like friendly.", "type": "review", "business_id": "ixTr1qXUFGTzyaZUuCDDvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "J92bzxYVmyoLHULzh9xNCA", "review_id": "F5aRE4oqmHthiHudmnShLQ", "stars": 1, "date": "2012-07-09", "text": "My mother always told me, if I didn't have anything nice to say, say nothing!", "type": "review", "business_id": "fDZzCjlxaA4OOmnFO-i0vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2tPpiBmIZ-yo5HcubK-rjg", "review_id": "BvEnBGw8M82tjiAYp2WsKw", "stars": 5, "date": "2012-10-28", "text": "great place to go and the pizza ia great too", "type": "review", "business_id": "fecYnd2_OTDECk7bd6GOFw"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "dfprRWlHx_GRUyCY5vmCbQ", "review_id": "EkomkezfQqzrzsC7IH44LQ", "stars": 4, "date": "2010-11-23", "text": "The boyfriend and I went here on a Sunday morning hung over from Four Lokos. \n\nThe food was fucking great and I don't even like breakfast food. I got this egg and jalapeno burrito thing with this sort of runny but generally pretty tasty salsa and I wanted to shower in the burrito filling. I would have bathed in eggs and salsa if only to prolong my experience with this semi-breakfast burrito thing. I would have married it and had kids with it and bought a house in Michigan nearby a really good school district. I fell in love with the egg jalapeno burrito thing, I would cuddle with it on weekday mornings and plan trips to national parks with it. \n\nIt was also nice sitting on the patio considering the weather is so pretty and the staff was attentive and friendly and slightly charming with their loafers and novelty socks (is that part of the required uniform I wonder?)\n\nI'm deducting one star for the sheer fact that this place was filled with rich, middle aged white yuppies talking about golfing and/or glued to their cell phone. The boyfriend and I, being young dirty Mesa kids still slightly intoxicated off Four Lokos, felt mildly out of place in this setting and were a little over whelmed by the amount of yuppie whiteness.\n\nNonetheless, the food was worth the trip and the cozy patio on a Sunday morning was a nice change from, you know, Cheerios on the futon while watching exercise equipment infomercials.", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l32_Qnelh1c-nuTU9VgOlA", "review_id": "AT6cVwoD-hZiElEVH6oiPQ", "stars": 3, "date": "2012-08-22", "text": "Hello my fellow Arizonians.....\n\nMy review gets 3 stars but I really should give it 2... I am being generous.\n\nI will start....as always, by saying I am the pickiest person I know and although food is a preference.... I know what I like! \n\nWe went on a Saturday around noon and it was packed! There were several larger tables open but nothing to accomodate 2 people so being the outgoing person I am, I invited a couple people to join us so we could take a larger table.\n\nWhat a great way to meet people, and they were great tablemates!\n\nThe food is good, I only have a couple CONS....\n\nNo low sodium soy sauce and most of the food is VERY salty!\n\nThe selection is not great, no calamari or bbq pork and several other items I enjoy.\n\nThe only dim sum restaurant I have experienced out here is C FU Gourmet,,, their selection is greater but their downfall is the food is usually cool to warm and the place has been steadily getting worse. (bummer) and the owner just doesnt seem to care.\n\nIf you enjoy Dim Sum...I reccomend you give it a shot and see what you think.\n\nAnd until then.............\n\nBon Appetite'", "type": "review", "business_id": "0db71MbrvcJnyk71COCJBg"} +{"votes": {"funny": 0, "useful": 6, "cool": 0}, "user_id": "Wmlxh305msxQuG2Mje_AvA", "review_id": "l3Rn1TGCu-dLq8fTMP_KWg", "stars": 1, "date": "2011-03-05", "text": "A couple Saturdays ago, went with my mom to get my name added to her accounts should the unthinkable happen. We first went to Chase which took all of ten minutes. The personal banker was great - in-out-done. Then we headed to her Credit Union at approximately 10:00 AM. They were quite busy, apparently. When we checked in, I heard grumbling from other customers and asked the wait time. I was told there were two people ahead of us in line and it \"shouldn't be long.\"\n\n30 minutes later, my mom went to ask how much longer it would take. Jennfer, who was manning the reception desk, dismissed her rudely in front of a lobby of customers. My mom is as sweet as tea in Tennesee, so to hear her called out in front of a lobby of people as a disruption was upsetting. 45 minutes later, I went up to ask if it would be much longer. Jennifer said curtly, \"We're busy.\" Apparently, on Saturdays, they're busy and one should avoid transacting business there on the weekend. I don't recall being spoken to so rudely at even a fast food restaurant in recent years...\n\nAnother ten minutes or so went by (as did my deadline to make another appointment I had made), I was told it would be \"two more minutes\", as I had to go through their background check to be a member. They were having a difficult time with my Washington Driver License and the weird characters it has (an asterisk in part of the number). After all was said and done, over an hour later, I was approved to be a member and was successfully put as a signer on my mom's account.\n\nI asked for Jennifer's card, as I told her I was not happy with the way she had spoken to me or my mother, and I intended to speak with her manager. To that I received a reply she did not have one. The woman sitting next to her informed me she was the assistant manager and that they were busy on Saturdays. My biggest beef was this: If it was going to be an hour to speak with someone, tell me. I can make other arrangements or come in during the week. Being told first, \"It shouldn't be long,\" and then, \"We're busy\" is not an excuse. If the business is so overwhelming on Saturdays, perhaps it would be wise to staff more people, extend the hours, or inform people of the wait they're likely to experience because of the queue. Or don't open on Saturdays!\n\nAs a 20 year veteran of the service industry, I am very disappointed at the level of service Arizona Federal Credit Union provided my mom and me, but also all the other people I watched be dismissed like the Credit Union was doing them a favor. After doing some searching for a new home for mom's money, she can get a much better rate at a (four letter word forthcoming) BANK!\n\nI'm normally a big fan of member-owned institutions, but based on the incredibly rude serviced I received from Arizona Federal Credit Union, I'd say go to a Credit Union or Bank where the employees actually read the mission statement that is painted on the wall behind them.", "type": "review", "business_id": "kKpqsgTcYmMVAcTSHs8fTw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uAOVKDGoXFnzXK_Nlmx_EA", "review_id": "Bxw7_BuCCeo8R2vBlCNiXw", "stars": 2, "date": "2010-02-02", "text": "The first time we tried this place, it was Saturday night and a 90 minute wait. Declining to wait, we returned on a Wednesday night and sat outside, which was pleasant enough. We were really looking forward to this based on Yelp reviews, but were all disappointed. The tomato sauce had a very strong sage/thyme/oregano flavor that overrode the meager toppings. The cheese was definitively not Italian - cheddar/mozzarella mix with very little flavor. We also ordered the \"Favorite Oregano Salad\" which was another disappointment as the raisins overwhelmed the subtleness of the feta and kalamata olives. We will not be back. Can someone please tell me where to get a good Italian pizza in Scottsdale?", "type": "review", "business_id": "kFVapB4z_5VoOnYazF_ERA"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "-QFUut5cViBP9mYFHghZMA", "review_id": "6FjcX0RlHDbRk6mTskbQEQ", "stars": 5, "date": "2009-11-21", "text": "One of my fave places in Phoenix.\nWell stocked and friendly staff.\nI don't normally peruse the DVDs or CDs because they tend to be pricey,but one day I just decided to take a look.\nThat's when Border's became one of my fave places.\nI was able to find a fairly rare documentary DVD.\nI paid 40 bucks for it,but have never seen it offered for sale anywhere before.\nI very much appreciate a business who refuses to cowtow to the ridiculousness of political correctness.\nFor that alone was well worth paying 40 bucks for.\nI was even more impressed by the staffer who rang up my purchase for not only being knowledgable about the DVD but letting me know they had a biography of the director of the film that had just come in.\nEven though the shipment had not been tagged and put on the floor for sale yet,the staffer called to have someone open the box,and bring a copy for me to look at.\nI bought that too!\nI will coninue to patronize Borders and any other book store that chooses not to censor!", "type": "review", "business_id": "N_TlJCR5AkZhmrCDqbm2tQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "vycqX1IOJZEGzZSBN2F0Dw", "review_id": "9dQNhJ5qkPzbQTZRezn3hA", "stars": 1, "date": "2011-11-27", "text": "Forget the yogurt and the berry berry bad service. The OCD worker with shadow you and serve you a sample with a glaring stare. You'll never feel so ackward adding your toppings since she'll trail behind you and fix the spoons. Yogurt sucks as much as the service, so I don't recommend.", "type": "review", "business_id": "4-qDkltBuJ_Lbj3nyxvUlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "kIq3ZUOgYSqZ0aqNbOps6A", "stars": 4, "date": "2010-09-01", "text": "Cute, small little place that I never noticed until a friend and I went one night for dinner. It's in a strip mall which doesn't really scream elegant, gourmet or even 'good' but this place reminded me of a place one would find in LA or NYC. As I mentioned, it's small. The restaurant is connected to a wine store that serves food as well. Kind of like Sportsman's. \n\nThe menu changes a lot. It's a good deal to go for the four or seven course meal. Go hungry and take someone you'll enjoy spending 3+ hours with at the dinner table. \n\nWhat stands out in my mind is the dessert - which I'm not big on desserts - but it was a buttermilk pound cake with honey and light whipped cream and nectarines. Heavenly!", "type": "review", "business_id": "dyd81TK9jY-WLt6UbMFWng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QabWo5qmN71nfmcwYqn5sQ", "review_id": "ZTBSDNo538Ephof6NLIf8A", "stars": 2, "date": "2012-08-03", "text": "Wasn't impressed. Dressing tasted like a store bought bottle dressing and tomatoes very very mushy.", "type": "review", "business_id": "YTOU3COVuBdABXb3Wci_IA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Zm08wcep2F-nRTHRyR8mpw", "review_id": "BAcmGB3UZw4geg5whSUmAA", "stars": 1, "date": "2010-01-31", "text": "This is going to be brutal. Hide the children.\n\nIf you've been to Chipotle, you'll feel right at home at Qdoba. That is, until you start eating. Complete and utter ripoff of the concept, except for the part that matters - the execution. Where Chipotle succeeds, Qdoba fails miserably. The ingredients are orders of magnitude shittier. The burritos are just plain bad.. My burrito was loaded with rice and beans and very little meat - basically the opposite of what you'll get at the \"other\" place. On top of that, the rice and beans were the suck. And if you know Brak, you know that he LOVES his beans. But not these. About all they're good for is a massive bean fart shortly after ingesting this crap.\n\nIf you want to know the root cause of this debacle, check out who the parent company is - it's Jack In The Crack\u00ae. Pretty much explains it all.\n\nAvoid at all costs. Receives Brak's dreaded zero-star review, rounded up to 1 because Yelp doesn't allow a zero.", "type": "review", "business_id": "ZZevr02C4b_g9RwnezdvWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "31E06-50QOTI1AjtOarC7A", "review_id": "WQVr6c3chFsupLi8Sk8rig", "stars": 2, "date": "2012-11-07", "text": "The food wasn't that good but that wasn't my main issue. It was the unwelcoming feeling I experienced. I will not be returning. The owner was friendly with everyone in the restaurant except my boyfriend and I. He would go table to table and talk to people and greet new customers and would acknowledge them when they left. The only acknowledgement I was received was an uncomfortable feeling of him staring at me when I wasn't looking, I'm assuming due to my abundance of tattoos. I felt judged and will not recommend this place to my friends or will never return.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JnAGZh7rjuz-6nKXitHUwA", "review_id": "JmKKXILuZfN5RKgSCgr_6w", "stars": 4, "date": "2012-11-03", "text": "Solid options for fast casual mexican fare. Where else in a landlocked area like Scottsdale will you find a quality fish taco. I definitely prefer this place over Baja Fresh, Chipotle, or any of the other usual suspects.", "type": "review", "business_id": "0YEbfeYZXkcTwjos9cgaEA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uylA7dxa7t6wUWN6FlOMcQ", "review_id": "UWX03HHT7XZGC81AiOkY7Q", "stars": 5, "date": "2010-05-20", "text": "Having spent lots of time in Sonora, Mexico over the years visiting family, I have always sought a place here in Arizona that provides an honest and quality duplication of the food I have had south of the border. At Sonora Mesquite Grill, I have found such a place that makes food on the spot, using only fresh ingredients, and genuine care for your experience. You can always go elsewhere and maybe get your food faster, maybe have a plasma TV in your face, but I'm willing to bet that your food started out frozen and going through a thawing process in a microwave. \n\nCelina, the kind and welcoming owner, wants people to receive the absolute best food possible. This painstaking process means long hours for her every day preparing the beef and chicken over a mesquite fire. No, there are no large corporate chain gimmicks or cut corners. Sonora Mesquite Grill simply provides good food at a good price without the use of preservatives and loads of fat. Is Sonora Mesquite Grill for everyone? Perhaps not, but it is a great choice for someone looking for genuinely authentic, modest, great tasting and healthy food with the taste of Sonora. \n\nIf going for the first time, make sure to order the silky and flavorful guacamole and salsas. Finish your meal with a fresh and homemade razpado to truly cap off a great meal at Sonora Mesquite Grill. Simple and great flavors at their very best.", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zi0h5i-ZKDI9hZQgKCyDSw", "review_id": "k7ibt2psFssCYeH7XscnjQ", "stars": 5, "date": "2011-08-17", "text": "The food was absolutely delicious. Was very surprised in finding a good Asian restaurant here in Phoenix. We had the papaya salad with soft shell crab, Phnom Penh noodle soup, and the lehong noodles. All were delicious and very SE Asian. I could not believe how great the food was. But the best part was the grass jelly drink - it brought me back to my childhood. Can't wait to try the other dishes here. A definite must try here in Phoenix.", "type": "review", "business_id": "nlFlIeziD-4nNUF2B337Yw"} +{"votes": {"funny": 4, "useful": 3, "cool": 4}, "user_id": "akmkd_2iLRrbOyPBfYLN0A", "review_id": "OtoumFd8NnqVoAdBh1p80A", "stars": 2, "date": "2007-08-07", "text": "\"Fuck you all, we hope you die.\nThat's the Trojan Battle Cry!\"\nWow, I can not believe someone Yelp'ed PV. \n My freshman year, my science teacher was arrested from embezzling from the strip joint she owned. We then had a different teacher every couple of weeks for the first half of the year. When we finally got a permanent teacher, the damage was done. The kids had no connection or respect for any teacher who walked in the door anymore.\n The year I graduated, there were 3000 students and over 1000 in my graduating class. We often had 40+ kids in one classroom. \nMan, I hated this school. When I first started on the Bell Rd Campus, we referred to it as PV Prison because of the tall, iron, spiked gates and security in golf carts patrolling the campus for potential escapees. I remember, before they briefly closed the campus for renovations, a girl falling through the auditorium wall, and pieces of the ceiling falling on peoples heads before they condemned it. After 2 years at this location, they suddenly closed the campus and opened the new campus on Union Hills, the campus that was to become North Canyon.\n They built the new campus with the intention of having both schools open, but as more and more buildings kept falling apart, they decided to shut down PV and re-open it under the same name on the new campus. \n They spent a shit-ton fuck load of money on a super high-tech theater, in return for letting it be used for official Gov't events, that no one new how to use. This was one of the best things about it. I was one of the few people who could run the sound and lights and got out of class frequently because of it. \n I remember making a video with Casey about an art show the school was having and not being allowed to air it on the morning video announcements because we used the phrase \"come out of the closet\" and they thought the phrase might be offensive. Then, that same week, the football team had a video where they all pretended to be gay, talking with lisps and flailing limp wrists. When I went to the office to ask what the fuck, they told me that football players didn't need approval for anything they did. I remember my friend being expelled for missing too much school due to chicken pox and a mother not well enough to call her in. I, of course, seemed invisible to the system. I ditched class often, and it never showed on my record at all. I remember when Miss Lee dressed as a hard rocker with tattoo's for halloween and the administrators making her change it because the costume was a bad influence. I remember my friends boyfriend being suspended because they searched his car for drugs (on an anonymous tip) and found a box cutter in his trunk he used for work which he kept in his trunk because he went to work straight from school. I remember testing out of highschool classes before freshman year, yet being subjected to 4 years of bullshit. I am pretty sure it was PVUSD that was the inspiration for the movie \"Pump Up the Volume\", which was filmed in the general area.\n When I quit the softball team, the coach/school councilor kept sending people to pull me out of class to try to talk me into playing again. When we took pictures for the badminton team, we didn't have enough uniforms for the entire team. \n I felt like I was in some prison or some high security mental facility. In fact, when my mom visited the new campus, she was horrified there were no windows and they used the drab, grey/blue colors they use in mental hospitals she had worked in to keep the patients calm. I never had a chemistry class. My two history classes consisted of a teacher who spent one entire year talking about Shakespear, and another who said that \"The slaves did not have it so bad\". My Biology book was so old, it had my friends mothers name in it from 20 years earlier, AND same friends mother warned me against my Biology teacher, Mr. H__. \"If he ever tells you to stay after class by yourself.. DON'T.\" \n \nThe Good Things I Remember -\n Mrs. Toal [sp?], a very good, and supportive, English teacher. Miss Lee, the best photography/video teacher ever and always had the best Halloween costumes. Hanging out at lunch under a tree with the boy we called Rico Suave who said he lived in a box and would tell stories about the Horny Lady. Sneaking off campus to go to Barrows Pizza. My friends wearing cut out Trojan condom boxes pinned to their shirt at the forced \"spirit assemblies\" and chanting our own spirit chant of \"Fuck you all we hope you die, that's the Trojan battle cry\".\n\n Time has a way of blurring the past, and making it less icky. Yet, my sister is a teacher at North Canyon, and a few years back I went and visited her on campus. The second I stepped into the main building, I felt sick to my stomach. Literally. \n I hear they have made improvements since I graduated, and I hope so. I don't want my niece and nephew forced to survive another drone factory.", "type": "review", "business_id": "jNS0oWMju3PyOHkMDcv02A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V_hVEFJp1-969ZZO1y0Y5w", "review_id": "BNwJI8n_V0Am6hhdL8d05Q", "stars": 5, "date": "2011-07-02", "text": "I just got back from my first visit ti Jacks All In Social Club. I'll be go back. I found the place a nice place to play a hand or two of Texas Hold'em poker. The owners are nice couple want to provide a nice, clean, and safe place to play poker. They have succeed.", "type": "review", "business_id": "Ed3AoOwbS2mZZ9ZvUVwdbQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "BrJcbK_lH0irQcNSNBEQHQ", "review_id": "XH9g0_GUnsmditNik7uvEA", "stars": 4, "date": "2010-05-28", "text": "You can ride your bike! Yes, that right - take your bike with you - it's awesome.", "type": "review", "business_id": "1Ap6ZNCvyLLKHP0wvCk9yA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "sALB8-F04S9VcZMF_GkGUA", "review_id": "PbEkBU2uIOyWxCGP9T_KuQ", "stars": 2, "date": "2010-03-03", "text": "REI.. I love you .. what and who did you hire??!!! BECAUSE you are such a 5star.. you rock.. you have all things for the active.. even for my active doggy! My active everything.. BUT when I drop over $100 on a reflective North Face jacket so Mark doesnt get run over on the run in the dark on his business trips.. & your startofffriendly and turntobeastwhentoldNO workerbee clerk boy checks me out and I deny his REI loyalty club membership.. not once.. not twice.. he asks whats my DEAL? Wait, DID he just ask me whats my DEAL??? (come here college boy.. ILL show you what my deal is!) followed with.. what you dont see yourself shopping here much? I glared at him.. and stated I was in an absolute hurry.. PLEASE give me my paid for merchandise because I SAID NO! My friend said thank you as we left.. and he actually chuckled.. umm no thank you back.. bad bad bad.. but I love the merchandise and the friendly folks in the bike and running area.. so its gotta rate a 2 for that..", "type": "review", "business_id": "vNQn_2P3lJh_-uBhRuSc3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F55sgaqHq2KE1LsixSKxAw", "review_id": "aBMTPjoLBKYvc3f6gfvNqw", "stars": 4, "date": "2012-10-15", "text": "We had a very nice meal here last night. The curries were pretty authentic and carried enough spice to make them very tasty. Unusual location but it wasn't hard to find. Good service, though we were only ones there when we finished at 8pm.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ivTXRXoSSPZx87YsZS0yjQ", "review_id": "WO9nU3RcXwkHZEficOsYwA", "stars": 5, "date": "2012-11-25", "text": "When was the last time that you went to a restaurant and were still bragging about your experience two weeks later??? This is exactly what I am doing about the \"Arrogant Butcher.\"\n\nI went there a couple of weeks ago with a bunch of folks from work. We had a private dining area and our servers name was Mark. He truly made the experience AMAZING! His detailed, vivid descriptions of the entrees and desserts were comical and had most of us in tears. You could almost smell and taste each item as he passionately went into detail. The appetizer- soft pretsels with cheese..OH EM GEE!!!!!!!! Why doesn't every restaurant have these??? The crab stuffed chicken......AMAZING!\n\nWe shared several desserts, one which was a peanut butter cup......stand back Reese's......you have competition now!! =)\n\nThe manager came in later and had a professional, yet funny, manner about him as well. What a great team they are.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J5KbTg3vfFnl7S2PaRxmfQ", "review_id": "wrdSVbYnPayOIsAjYUP-3A", "stars": 5, "date": "2011-11-22", "text": "Love love love this place!", "type": "review", "business_id": "w-8M-VOHICthOgwpQL8UnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MiAANDVksTAFJ7jjZyefBg", "review_id": "NSSrrLEHztA7NujfgFqKog", "stars": 5, "date": "2012-01-31", "text": "Great eats at this joint. New York strip was awesome! Pear salad was bomb and service was superb. I'll be back march 10th!", "type": "review", "business_id": "fVgrpVyp-nPLTac9YIjTug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2uBJpIW339uRVS0hVXqR-Q", "review_id": "r7i60X1M8X8OI0xcC5ZRgA", "stars": 2, "date": "2010-02-24", "text": "This place used to be quite good but I think they may have had an ownership change recently. Over the past 12 months or so we have seen the quality of the food and service level both drop to unacceptable levels.\n\nThe food is overall average - the fajitas down right poor and the drinks very inconsistent. They do get somewhat busy with a bar crowd but that too seems inconsistent so when they do get busy the service gets very bad.\n\nWhen service deteriorates the Manager (or owner, I'm not sure) seems to hide from customers. \n\nOverall, make the trip down to Shea Blvd and find much better at better prices.", "type": "review", "business_id": "TAlmdEr0RNWZh9IiUS_BLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZRQdOIIhzrzE6sc3emgM-Q", "review_id": "nlr1oDx3xw2tqqA8lO1lPQ", "stars": 3, "date": "2009-08-06", "text": "What can you say about Beni's - Not bad and not great.\n\nI have been to Benihana in several different cities and for a chain teppan restaurant it's ok. My fave was in San Diego, could have been the company we were with. I would definately say they are pretty consistant everytime we have been. The teppan is a little pricey, the sushi is consistantly good (they also offer the all you can eat sushi), and the sake selection is ok (very average). I do get tired of hearing the birthday song 10 to 15 times while we are dining.", "type": "review", "business_id": "TMZP6Kzkc-FytzgbgIC9JA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "zqnAdayPsak5dbLF2gEvNw", "review_id": "l4iSpVLGvIj-epME1AYBzQ", "stars": 4, "date": "2011-01-24", "text": "A group of friends and I decided to check out Vincent's Saturday Market this past weekend after a beautiful morning hike had worked up our appetites. When we got there, the place was packed (but still had space to accomodate our group of 6). It was the perfect outdoor market feel, with fresh vegetables from the garden available for purchase, next to organic lotions and soaps, and all sorts of food stands to whet any appetite (crepes, tacos, paninis, etc). There was even a mimosa stand, where for $20 you could purchase a bottle of champagne, a glass of OJ, and as many plastic cups as needed. This is definitely going to be added to my list of favorite places to enjoy a beverage while observing some extremely entertaining people watching! I loved it, and hope to go again soon!", "type": "review", "business_id": "f9WU18QfVnUSuYbkQx5iIw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "a5kDCrf8lvX19EHrqPmAog", "review_id": "zBWSlUnh7Fsul6ik85Lq7A", "stars": 4, "date": "2008-09-06", "text": "This is my kind of place. Had i not known of the Lost Leaf I would have never found it. Its a house in the historic district. \n\n after hesitantly walking in, I find it to be a cozy dimly lit 'house' it reminded me of hanging out at a friends place in college (well replace the blacklight posters with art work). \n\nThe beer selection is top notch as well as the music. i dont go out to bars much, seeing as I am on a drinking hiatus, but this is a place I would go to... just for the atmosphere, music and folks.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "ZTxpcT1HKzRIRHSBSQRw1w", "review_id": "0JyXbDXTiv369E64KHKaTQ", "stars": 5, "date": "2012-01-27", "text": "The Culinary Dropout , you get the best of both worlds. The food is off the hook (it's great) ,the service, these ladie's and guy's take care of your every need, and as a added bonus you have some of the best performers in Phoenix, entertaining you while you dinne.....Check it out....Bluesman Mike", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rnqv2DT-yo0HRIn6VOZ5Gg", "review_id": "ya-lhmeLlwHjx5dezJaMyg", "stars": 5, "date": "2012-09-26", "text": "I was craving some sweets today and told my husband about this place. Apparently, one needs to make an appointment but my husband made one right away when he called. We got a Baileys cupcake, a chocolate cupcake, and a carrot cupcake all of them were DELICIOUS! Seriously most gluten free pastries are horrible but these were great. We will definitely be going there frequently.", "type": "review", "business_id": "1_EtLOR6MvjabkGFmNbQRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ccbVlVGL6C22RuB5ZGeMBw", "review_id": "pDeEmyGwzzAwhRyqs7yisg", "stars": 4, "date": "2010-03-28", "text": "We went to the game against the Milwaukee Brewers on 3/25/10 and had a great time (and not just because the Dodgers won). We arrived early enough to walk around outside the whole stadium and see the practice fields. We even saw Tommy Lasorda, himself, outside at a table giving autographs!\n\nParking was free (sort of; it was included in the price of the tickets), and we were able to park close because we were early. Traffic leaving was \"typical Frank McCourt\" style, meaning that it could have been better. Exiting traffic was set up to force us out in the wrong direction, so it was good to have the car's GPS guide us back to the freeway.\n\nWe were surprised to see that not all of the food/drink stands were open, but I think they had only sold about 60-70% tickets for that game (Thursday 1:00 game). There was plenty of berm (grass) seating. We had splurged for premium seats ($42 each) for the game, and were almost right behind home plate in the seats that had seat cushions and cup holders. My BF was very pleased with the beer selections (Full Sail and Deschutes, not just the typical Miller and Bud offerings). They finally brought in Dodger dogs this year - boiled with short buns, nothing special. I still prefer them grilled.\n\nStadium staff was all very friendly, esp the beer guy in our section who said my BF looked like some movie star. On behalf of the concession staff... FRANK, GIVE THEM SOME SHADE! The beer/food stands outside of the actual buildings only had slatted roofs, so no sun protection at all, and no misters. The poor people were totally roasting, and that was annoying to see.\n\nOne odd thing about the Stadium is that it faces SE, which puts every single seat in the sun during day games. Wear a hat and bring your sunblock. Lots of sunblock.\n\nAll in all, it was a very nice experience, and we're glad we went to the game and to Camelback Ranch. Only a 5.5 hour drive from home, we'll probably do it again.", "type": "review", "business_id": "IYYaa562PybzXf8tQnT17w"} +{"votes": {"funny": 2, "useful": 5, "cool": 5}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "hwYVJs8Ko4PMjI19QcR57g", "stars": 4, "date": "2010-07-22", "text": "We got here around midnight last Friday... the place was dead. However, they were still serving food and we enjoyed some well made pub grub. Service was friendly, quality cocktails were served, and the atmosphere is derived from an old Uno's, which certainly works for a sports bar. It being located in a somewhat commercial area, I can see why it's empty so late on a Friday. From what my friends tell me - this is a great spot for happy hour, and it stays relatively busy thru 10pm.\n\n*UPDATE - Great patio for day-drinking on the weekends!", "type": "review", "business_id": "QVR7dsvBeg8xFt9B-vd1BA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "BaLkJ6XxvqhWEmjiRuFS5w", "stars": 5, "date": "2009-12-13", "text": "Not being a big fan of chain restaurants, I wasnt super excited to eat here last night. I was however, starving and craving mexican food and wanting to try somewhere new so we ended up at Manuel's. \n\nOMG I loved it! The salsa's (especially the hot!) the chips, the cheese crisp with green chiles and onions, and most of all: the chilaquiles!! I LOVE chilaquiles so much and had mostly seen them only served at breakfast until I opened up Manuel's menu and there they were, just how I like them! SO good I wouldve licked the dish they were served in if I wasnt so full afterwards!\n\nJD had a rolled quesadilla that was fantastic too and we both needed to be rolled out of there when we finished eating. It was so good though that I'm craving it again today. We will definitely be back!", "type": "review", "business_id": "I7IfnWW1nXljC4ZGqwPe-w"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "TI88k_ezEWaj_XZSiuBNGA", "review_id": "qRlZQpRxMlnK3bL6XYoWOA", "stars": 4, "date": "2009-09-03", "text": "very nice setting, right next door to Joe's Farm Grill (previously reviewed and raved about). Friendly, cozy and crowded. Great, huge sandwiches and good coffee. I am picky about coffee though. A lot of places have coffee that tastes good but for some reason makes me very thirsty. Such was the case here, but it was ok. The absolute standout for me was the peanut butter scone. Never had one, or even heard of one before. It lived up to my hopes and I enjoyed every moment I spent eating it. \n\nAdded bonus, the fresh dates were out at the farm stand. However, the plastic thing on the wall that was supposed to hold the cash for the honor system was empty of envelopes. I asked at the coffee shop but they didn't know. Said it was a different place. Well, ok, I went back. Stuck my money in the plastic thing. Figured even if someone else took it at least I did my part. It wouldn't be on my conscience. Had to have those dates. \n\nAll of Joe's stuff - you're great - I hope you stay in business forever! or at least a really, really long time!", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fYayRBmQjB8f5eyH1WR-1w", "review_id": "boqyWuj54j-rfqiYV1JP1g", "stars": 3, "date": "2012-08-28", "text": "Ok, so this is a Sprouts now. Boring.\nThe layout of the store is pretty much the same as when it was Sunflower. I would like this Sprouts more, if it was like an actual Sprouts. Instead it's just a weird transitiony in between \"Sproutsflower\". That's what I'm calling it, until they figure it out. Atleast they still have the soup bar.", "type": "review", "business_id": "5nahZe5bBYUbFWgEfwoNOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DghMl81bONCh5ELnrgn4Fw", "review_id": "dx-uyV1hWZ8jQ5szxqeorg", "stars": 4, "date": "2011-06-26", "text": "Best shrimp burro's. If it wasn't in the hood & make me cringe @ the thought of going in at night alone, I maybe would have given it 5 stars. \nThe staff is as friendly as any other Mexican spot. The place is kept decently clean. Don't let the outside totally deter you from at least stepping foot in the place. There's a couple TV's playing Mexican music video's to get your mind off of waiting for your order, which is surprisingly fast. Call in orders are necessary when your trying to beat the lunch rush. But any other time, you could be out the door in 10 minutes. \nThis place has been here for a while now. There is other La Salsita spots to go to in the valley. Some tweaked their spelling but all in all, best shrimp burro on this side of Van Buren!", "type": "review", "business_id": "-0QBrNvhrPQCaeo7mTo0zQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "phOs3fgWmVUGWny7GDFx6Q", "stars": 5, "date": "2011-02-23", "text": "This is the only Ben and Jerrys that has successfully withheld the recession in AZ. This means that this is the only one left as well. Its located in a beautiful plaza called El Pedregal. They have live music on Sundays. I found out this information from the friendly owner who told about the history of the store since I asked him if their location was really the only one open in all of AZ.\n\nThe location is very North Scottsdale. I am not sure how it does for business, it is far from commercial areas. On my drove over, I mostly noticed many well built homes. \n\nThis is the only Ben and Jerrys left, and I strongly encourage those who enjoy this ice cream to go out and support their business.", "type": "review", "business_id": "uf4AWTEI6RmRUXx-28MZsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "922TKMD60Oor4uHsPjL5Hg", "review_id": "MWcPQMNNR6-ZF8-8h348SQ", "stars": 4, "date": "2010-03-03", "text": "I've been here three times once for lunch and twice for dinner. Lunch was pretty crowded, dinner not so much but tons of take out. Prices are cheap and food is good! \n\nI love the beans and I recently tried the guacamole and loved it. Try it out and see for yourself.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8JMsp0Z9N1eWGFuQcQxD0w", "review_id": "QiiPHANcnIqVipRbGu2VgA", "stars": 4, "date": "2011-12-24", "text": "My parents and I went to here after leaving a previous restaurant for poor service. Big Buddha was the the complete opposite! They were attentive, the food was steaming hot and delicious. Definitely recommend for dine-in or event take out. The Singapore Noodles and Honey Walnut Chicken are definitely must tries.", "type": "review", "business_id": "mjoxSQR7bFQtlIIjfNfaSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r01TfUd2TdZ1N464B1IhJQ", "review_id": "XgHSAC54S7JZ4tNo-nRgBg", "stars": 5, "date": "2012-09-30", "text": "They had Kool Aid! i was so happy to see it :)\n\nThe chicken and waffles were really good... my girlfriend and I went straight there from the airport, before going to our hotel, and it was completely worth it... \n\nyeah, waiting outside in 100 degree heat isn't ideal, but for 10 minutes you can deal with it... especially when they had someone outside giving out water\n\nIf you're ever in Phoenix like us, or live out there, definitely stop in!!!", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "-xGJ4pQ_0tSkNAUCsuq4SQ", "review_id": "yMiNSE7ymTrQBpdKNYG-Jg", "stars": 1, "date": "2012-10-10", "text": "PIECE OF **** manager wouldn't put air conditioning on yesterday. It was 90.\nThey just lost alot of business.", "type": "review", "business_id": "ZG4oIFBRlXyaF5F9L3dzxg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DWYH3H49-KhUoJX7TfidaQ", "review_id": "KSZfpeKm0HRhbMlDsVlCjQ", "stars": 5, "date": "2011-10-17", "text": "Postino's is a great date restaurant. Especially on Mondays and Tuesdays when they have their $20 bruschetta and bottle of wine special. You can choose any bottle of wine off of their fairly long list of wines and get a delicious board of bruschetta for only $20. Major win. The proscuitto and fig is my absolute favorite, followed by the artichoke, brie and apple, and salmon and capers. The restaurant has a great interior and patio with a huge wall glass garage door that opens up to connect the interior to the exterior when the weather is nice. If you join their mailing list, you get a free bruschetta board on your birthday and the restaurant's birthday. I also love their sea salt caramel sunday - it's the most delicious dessert ever. You have to try this place. It's just great.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jOs47GO0b7iPsbYZe-lLSQ", "review_id": "Q3pvIbtm2fMo4_1ApIVE2A", "stars": 4, "date": "2011-04-24", "text": "It was pretty good. But I dont know much about Indian food. It was better than the only other place I've been too which had dirty grey chicken in its dishes. Taste was good.", "type": "review", "business_id": "wy_R4crNr1BH0CP87y9UHQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fw4BmstcyqW4w4r4tTfp5A", "review_id": "5LjP7wMvVl197y1j-dGw5g", "stars": 5, "date": "2012-01-12", "text": "This is my current first choice in eateries. The spring rolls are made with rice paper and such an array of fresh bite sized vegetables, it melts in your mouth, and there are so many different kinds, ave price 3-4.00. Did I say they are HUGE? It's a weight watchers dream. Everything on the menu that we have tried has been delicious and presented beautifully. The sauces accompanying each dish are always intrigueing and tasty as all get out. The best thing of all, though, is the Ginger Creme Brule. Wow, sir. It doesnt get better than that. If you like Viet food, Thai food, or just plain fresh, good food, then this Vietnamese restaraunt should pique your interest. My goal is to try everything on the menu.", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "hnirQYfI4cjrzSMENyQTWw", "review_id": "w23nmkMG7blPRBdyvsdCNw", "stars": 2, "date": "2007-12-09", "text": "Eh.... 2.5 stars, maybe? 3? Not sure, yet.\n\nAfter looking at the menu online, I really wanted to like this place. The menu has some creativity to it, unlike the template-North-Indian-restaurant-menus you find at many of the Indian restaurants in the Valley. Aside from offering things like korma, kadai, vindaloo, etc. with a variety of options (chicken, lamb, paneer, shrimp or fish for each) they also have some other more unusual choices, like one of my favorite dishes, mattar malai methi (creamy fenugreek and peas). And dahi vada in the appetizers... I couldn't wait to check it out.\nUnfortunately, three friends and I went at lunchtime on a Saturday - and there was a buffet. So I didn't get to try any of those tempting dishes.\n\nThe restaurant itself, while decorated a little haphazardly (Chinese paintings?) is bright and clean. There's a TV on a wall, which happened to be playing one of my favorite Bollywood movies...so I was still excited about the place.\n\nBut...after tasting the food...meh.\n\nThe buffet was all right.. but nothing to write home about. Pluses? Once again, it had something different..fish curry as well as an Indian-style Chinese dish or two. So that was cool. But the food was just so-so. I was there fwith three other people - one of them said the cuts of meat, especially the chicken, were of higher quality than most Indian buffets. But he didn't like the sauces so much. One other friend said he liked the tikka masala, but that was about it.\nAs for the vegetarians, well, we didn't have a lot of choices. Veggie manchurian (which was pretty good), a very bland chana masala and some pea/carrot thing that reminded me more of baby food than anything else.\nThe dessert was just all right, too. And the rice was very bland.\n\nSo, overall, I wasn't impressed. But I don't want to judge the place too harshly based just on the buffet. After all, Curry House was packed on a Saturday afternoon, so I'm thinking maybe it's got something better to offer me.. I'll have to go back for dinner and see what their non-buffet selections taste like before I totally write this place off my list.", "type": "review", "business_id": "JXQBl4aCf5-dQhcg_5LwCg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fssanRnCXYXnQIP-zu-71g", "review_id": "yS_jW4NorfZnrPKL3z-Hsg", "stars": 4, "date": "2012-05-01", "text": "I used the drive thru early one morning on my way to work. I ordered a breve latte. It came as expected and was very good. A little pricey but I'm cheap. I hope this place stays in business. It's nice to have a neighborhood coffee shop that's not a chain. The drive thru option is great too.", "type": "review", "business_id": "lgzBrfQAwm-dcDXu12CkgQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "2hXL2ExBsgjJNpm6BJy0lg", "review_id": "_hhdvIc7MSWJ2Ah3r1tg2g", "stars": 4, "date": "2012-07-28", "text": "This is my go to place when I want a cheap quick meal without having to get fast food. They have healthy options and use fresh flavorful ingredients. Their portion sizes are generous and the staff is always nice and friendly. My favorite is the greek salad w/gryo meat, the dressing is awesome! I'm also a fan of the platters and spanakopita.", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BRNVGPDi58XPDyxfxX39sg", "review_id": "fypqvxabp8NsCQSvfPJcHA", "stars": 4, "date": "2010-03-22", "text": "Very friendly place to get lunch. Sandwich are good for a great price compare to what we paid back in Cali.", "type": "review", "business_id": "L7UxfZyS_-jFOxRwG0SZWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "alcQ3nNK277jNq4aneqYcw", "review_id": "Swq1PW6t_GF8UPuP4GFLIg", "stars": 2, "date": "2011-05-30", "text": "The food was good but, for the price, there are a lot better steak houses. For this price point, I would suggest Donovan's or Mastro's.", "type": "review", "business_id": "JM6X0PJBcMkAjOuZqMaZsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nTpprsKsqK4pE9dgwdJodg", "review_id": "ZugiT55Y8rJewJLbihGJdw", "stars": 5, "date": "2010-12-24", "text": "This wasn't the first time, but we went to Tutti Santi for a family Christmas Eve Dinner. All I have to say is that everything was simply perfect. Not only the food, but the service. Which to me makes a restaurant with great food go from good to great. \n\nI ate the lamb shank- Angello Dorato, which fell off the bone and was delicious. I cleaned the plate. \n\nDad had the veal marsala with fettuccine alfredo. The veal was fantastic and the alfredo was just right. The sauce was not too thick-not to thin. Dad cleaned the plate. From him being in the food industry for 30+years and eating in many italian establishments both here and Chicago, believe me that says more than alot. \n\nMom had the special of the night, which was a cioppino with tons of seafood. When most italian restaurants serve this dish at least one of the seafood items will be rubbery or fishy tasting (not in a good way) especially the mussels. Not here. Everything was the way it should be. I felt this was the plate of the evening out of 3 great dishes. Mom didn't clean the plate, she has a small stomach. But I will be eating the leftovers in about two hours after I sleep off my meal.\n\nEverything from the bread, the calamari fritti, to the tiramisu was fabulous. I'm glad we couldn't get reservations anywhere else for this special meal.\n \nGratzi and Buon Natale.\n\nOh yeah, I didn't get the raviolis this time, but if you've haven't had them it's a must try.", "type": "review", "business_id": "hqVbmZNLTdR2y7G7oJu9vg"} +{"votes": {"funny": 5, "useful": 6, "cool": 6}, "user_id": "0NckJhx0qXykvvhsm-p7MA", "review_id": "dnVxNsWk7WCTwm2_WicqJQ", "stars": 4, "date": "2011-07-19", "text": "Just down Scottsdale Rd from the plastic, the cougars, the roid rage, and the Delta Bravos is a little place that doesn't give a shit, in the best possible way. \n\nIn many ways, this is the dive bar Scottsdale doesn't deserve but needs oh so badly (and let's face it, being south of McDowell probably means you are not in Scottsdale by many people's account, which is just fine). \n\nTo be clear, let's discuss some things a dive bar is...First, they serve drinks and beer. No basil martinis, No Sonoma pinot noir, and No craft double IPAs. Second, you do not come here to be seen or for a scene...see the first point for what you come here for. Third, the motif...none...unless you count a few characters at the bar. \n\nNow those are the basics, but Rogue Bar adds in great local and national acts, a diverse, non-Old Town crowd, and a friendly staff. \n\nFor instance, I recently saw The Mulhollands, from LA, and I assure you, this band will soon be playing venues where you won't be getting up on stage with the band...not that anyone I know did such things. \n\nThat is a great thing about RB, the lack of pretense carries throughout all aspects...even the DJ let me play with his DJ toys. \n\nYes, yes, you don't want to model your toilet after theirs, the pool table is old, and you may see a fight. But, these are added flavor for a true dive bar. \n\nAt the end of night you can say you had the chance to -- crash in some comfy booths, play some pool, order pizza for the bar, meet some real people, have a cheap drink, and if you are lucky, hang out with the band at an after party. \n\nIf you like a dive bar, go. If you don't, stay up the road, nobody will miss you at Rogue.", "type": "review", "business_id": "yW4XOMS4biiSXOwkbZ6wpA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "a0pG_Dl4sKb3yNps7I_hMQ", "review_id": "cZRv3APqMLSMpgi8mfi51Q", "stars": 4, "date": "2007-05-31", "text": "Since this is a Kimpton Hotel my standards are fairly high. \n\nThe reception area and pool are very well done, in typical Kimpton fashion. The rooms are nice, however could use more work. The bathrooms are completely remodeled, but the little amenities that I'm use to like the Ipod docking station, flat screen tv, cordless phone, room service past 11pm and multiple outlets (i'm an electronics junkie) just aren't there. The room really feels like any other average hotel. \n\nThe spa was lovely, but it is not a full spa. I was hoping to sit in the steam room before my 90min massage, but unfortunately there wasn't one to sit in. The massage room was nice and the largest I had ever been in. It had it's own private bath/changing room and a large copper tub close to the actual massage table. I was pretty bummed I didn't add a bath to my massage. \n\nAll in all I would stay here again since it's in a great location. Plus, the guys at the bell desk will give you a ride (within 3 miles) in a Cadillac Escalade free of charge. That was a great when it came time to partying at night!", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QKCyMJB9hH-HbiQvAgBfiQ", "review_id": "waDiuNyhi6ZkDF2JEHoL2w", "stars": 4, "date": "2012-03-27", "text": "Very authentic Szechwan style restaurant. On a average Sat evening, the restaurant is pack full of Chinese family. The service has improved a bit recently. The first opening months usually has very long wait.\n\nSzechwan restaurant style dishes tend to be spicy and salty on purpose. Most dishes are medium spicy here. So if you can take the average Mexican food, you should have no problem here. Just ask for lots of ice water.\n\nIf you don't eat very spicy, there are still many great noodle dishes and dumping dishes.", "type": "review", "business_id": "SzCMZ664veIZpYp4Tk84Hg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "rpa5wYCeXO2kvQ92KH_HvA", "review_id": "7Gp-IoYQB1oo1jMgH0YZDw", "stars": 4, "date": "2010-08-20", "text": "Verde = good, quick, close-by & cheap = YAY!!!!\nSo...We went for breakfast last week and here is the result: green chili pork: Delish!!! Tortillas: Delish!! Eggs: Yuck!! Guacamole: Good!!\nThe breakfast eggs are the 'fake eggs' - you know the ones that come in a pourable carton...honestly a little disappointing, because 2 sunny-side up eggs wouldve been muy bueno!!\nbut everything else was on-point so i just wont order eggs again! :)\nwe also ordered take-out this week: the whole lime-oregano rotisserie chicken it was MUY DELISH!!! This is not your grocery store rotisserie - the flavor was amazing!! the whole fam luved it and devoured it -\nVerde will be my new go to when i dont want to cook dinner or when i need a quick lunch!", "type": "review", "business_id": "hZRLGfRrZTo9up2P-0aAHg"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "gq_G5VCDziyEV2-bzGuqzw", "review_id": "w8DLGnymGeSrd7jjx-B78Q", "stars": 5, "date": "2010-04-17", "text": "Deceptively fantastic. Like Lady Gaga. Pizza A Metro is the Lady Gaga of mid-range Italian restaurants.\n\nIt's so unassuming from the outside that I was pumped when pulling up. Oh, man, Ben, we could get in a knife fight at a location like this! Sweeet!\n\nIt's not that bad. But the food is righteous. The pre-meal bread with the tomato + balsamic + red onion deliciousness was such a great alternative to the typical bread and oil. We split the antipasti (yes, the portions are comically large... we maybe cleared a layer (a delicious, delicious layer) of very fresh, yummy artichoke hearts, prosciutto wrapped canteloupe, and a smattering of other favorites. We then had the pizza with sausage and broccoli. Perfect cheese, perfect crust, yum sausage, perfectly crunchy fresh broccoli.\n\nIt's clean and warm on the inside. Try it. You like it. And tell no one that I mentioned liking Lady Gaga.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5Td84D4oDkkgxsMeqcrTRw", "review_id": "9I3vcsQm4ni0CWeeOAuBnw", "stars": 5, "date": "2010-03-31", "text": "Hate long lines at the DMV? Hate dealing with the DMV for any reason? Then you should check out Desert Title Service. I had a complicated Title transfer and was dreading spending 4 hours at the DMV office the last day of the month but I knew I had to do it. So today my daughter and I went over to DMV and waited an hour before deciding to call Desert Title Service. Had I known I could go in to a place with no lines get a title release and a title transfer I would have checked them out sooner. I called their office while sitting in the DMV and drove over. In less then 15 minutes I had the title released and the title transferred. Daughter had new plates and her title in less then 5. If you need anything to do with your car I urge you to call them and/or visit their office. You will be surprised at how fast and efficient their office is. I will never visit the DMV unless I have to.", "type": "review", "business_id": "9LF5u2jiMjRNoWrxv2kLTA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Y5Bu0M1AZzre9CjdlnQNYQ", "review_id": "Dh9Nyayao19-P7rwoL11sw", "stars": 4, "date": "2009-12-02", "text": "This was so good I wonder why Mongolian BBQ hasn't sprung up in every city (hint, hint Alabama!) When you go in you pay for either a small bowl ($9) or a large bowl ($10). I got the small bowl and still had enough left over for another meal. \n\nThe ingredients are spread out in a buffet. You go along the buffet and fill your bowl with whatever you like. I chose chicken, lots of veggies and rice noodles. The trick, from what I can tell is to shove as much food in your bowl and then using the handy wax paper they leave out for you, smash it down into your bowl so you can fit even more in! At the end of the buffet are tubs of different sauces and a chalkboard with instructions for different combinations. I am a bit of a traditionalist and mixed up the Mongolian sauce. You then hand your embarrassingly heaping bowl to the cooks who quickly stir fry it for you and then hand it back.\n\nCan I just say oh my God was this delicious without sounding vain because really I sort of cooked it myself? The ingredients were super fresh! There is also a small bar with soup and rice, but I wouldn't waste my time with those if I were you! The BBQ was delicious and fun to prepare!", "type": "review", "business_id": "L-bpJXpA5875dLb7A4wh6A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "F4UqIMhypQ3SOkJTcL5cvA", "review_id": "rQKjcaoyM8XTjF4iVSIiBg", "stars": 4, "date": "2010-05-16", "text": "We have gone to two Grimaldi's locations. This location is closer to where we live than the Old Town Scottsdale location and easier to access due to a better parking situation.\n\nWe usually start with the small Antipasto (it helps keep the kids busy while we wait for our pizza). My favorite part of the Antipasto is the red peppers, they are very flavorful and compliment the dish well. We always order two pizzas, one small with cheese for the boys (there is no kids menu) and one large with half pepperoni, half garlic for my husband and I. The quality of the pizza is always consistently great. The garlic is not overpowering and is complimented well by the coal-fired flavor from the oven. The pepperoni is very tasty and even a little on the spicy side. The pizza is so fresh and delicious we have to persuade ourselves into saving some slices for the next day. We love to have a cold slice for breakfast!\n\nThe only issue we have had at this location is plates with food residue. We asked our server for two clean plates and one of them was dirty as well. He returned with another clean one and we had no other issues. We only had an issue with the plates one time, so I would not say it is a chronic problem.\n\nWe always finish with a cannoli, they are too good to pass up! They are filled with a rich cream with chocolate chips mixed in and sprinkled on top. It is the perfect ending to a great meal!\n\nOverall we always have a good experience when we go to Grimaldi's. We have never had to wait for a table at this location, which is great when dining out with children! I always recommend Grimaldi's to my co-workers and friends who are looking for great pizza. On our last visit I got a free one topping large pizza for my birthday after I signed up for their mailing list! Great perk for a fan of Grimaldi's! I would recommend giving them a shot if you appreciate a great slice!", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "b4C9E7vTJrOdkJQA86xYSg", "review_id": "EMt_b6zflbAAF1pfCq9bYQ", "stars": 4, "date": "2008-06-02", "text": "I was a regular at the Nello's on 48th st and Warner in Awhatukee, so I was pretty interested in trying this location out. They are all owned individually so I expected it to be a little bit different which it was. Still good, but I think I like some of the selections of the other Nello's better. Not that big of a deal because I have already been here twice over the last 2 weeks, but I liked the soup of the day and the panini's they had at the one in Awhatukee. Still a great place!", "type": "review", "business_id": "xcKKT3Ozf3jvFNRfMH3gHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "do20ZbWAFj4Ge04WoWMqwA", "review_id": "y208f9lBeAg8X_53GuC1ZQ", "stars": 2, "date": "2010-10-04", "text": "I had high hopes for this restaurant, but to be honest, it let me down. The wild mushroom and goat cheese salad was phenomenal. From there it was downhill. Great ambiance, though I think they are trying too hard to be a steakhouse. \n\nMost importantly though... Given it is a seafood restaurant, they sure didn't know how to cook my fish. It was fried and oily (and was not marketed that way on the menu!) I wanted something light and left feeling like I ate a ton of bricks. My friend's scallops - she said they were \"okay\" and not better than that.\n\nOh, and the prices are set as if it were a steakhouse too. (Note: if it were, which it's not.)\n\nMediocre at best.", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 5, "useful": 2, "cool": 3}, "user_id": "BjwXX-sChcjx2E55B_7rXg", "review_id": "2FOnYJOXWtqkSnvrFpUS0A", "stars": 4, "date": "2011-10-30", "text": "AY. DIOS. MIO.\n\nThe Platano Paleta is a day-maker. There's caramel, creamy, frozen chunks of banana, and a\u00f1ejo rum all swirled together on one wooden stick. At least five different people asked me what I was eating and where they could get it as I walked down Mill Avenue, vainly trying not to make eye contact with anyone while eating a popsicle. If you're looking for something new and interesting (and sexy, as popsicles go), eating one of these would be more effective in drowning one's sorrows than a pint of ice cream.\n\nFor the more timid, or perhaps just fans of classic flavors, the Fresa con Crema actually smells and tastes of a fresh, organic strawberry upon first bite, until the flavor of rich cream overwhelms the taste buds to create a perfect harmony of awesome and more awesome. Anyone who's partial to artificial strawberry flavor over that of a real strawberry should a) avoid this paleta and b) reprogram your mouth and possibly reevaluate your life. \n\nPure fruit lovers, even you cannot escape the appeal of Paletas Betty. The Pura Pi\u00f1a is almost just a frozen pineapple on a stick, but much more exciting. It's a sweet, delectable confection filled with pineapple pieces and a consistency that's closer to creamy than it is to icy, even though this one's totally vegan. It also contains some sort of hallucinogen that will make you think you're in Jamaica for a short period of time.\n\nGo. Eat. Prosper. You'll probably see me there with a paleta in each hand.", "type": "review", "business_id": "ZWbvjFC_qE21JUpGlAU0Cw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "zG7NW5vCKJZRcBR95qEuMw", "review_id": "LTRPrGTyj8jn_eVUuH4FrQ", "stars": 3, "date": "2011-09-13", "text": "A no frills hole in the wall hamburger joint. The burger is cooked to order, delicious, and the perfect mix of juicy and slightly greasy so you know you're eating the real deal. The fixin' bar is an interesting concept which I like since I can pile on as many goodies as I like. The bar gets a little messy at times, but eh, who cares.\n\nThe burgers are not the cheapest, but then again if you wanted cheap you'd go to a dollar menu, no? Its worth the line, and fighting some of the students from across the street (Phoenix College) for a bite at Hamburger Works!", "type": "review", "business_id": "N_6bV3c3JagKW7sD3X9ldA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "o33IBagNFxdJhIrRTl691Q", "review_id": "o1_rHrHsCflHCwYv-Ykjfg", "stars": 4, "date": "2009-03-22", "text": "What a cool space! We needed nourishment on St Pats, as the corn beef and cabbage they were serving at the Irish pub didn't exactly float our boats. We found ourself at Hannys and had a great experience.\n\nTheir pizzas are light and tasty. They looked like too much when they arrived, but they turned out to be the just the base we needed to get through a heavy night of drinking. The reclining booths took a second to get used to, but they just added to the laid back atmosphere once we mastered them.\n\nOK, two friends go the tiniest 'tinis that didn't seem like much of a value, so its probably not the place for hard core drinking (I know, but these are the things I look for) But for a relaxing cool place to start your evening off, I can still give it the thumbs up.", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "F97G9Uy4xlTf8hocE6jS7w", "review_id": "aJuQa0UzELo3TfyySzaafQ", "stars": 1, "date": "2011-08-21", "text": "If we were able to give 0 stars... I would ask to give -1.\n\nI live nearby, and am sad to see that a coffeeshop that sells coffee this horrible is still in business in my neighborhood.\n\nNot only was the breve mocha that I ordered disgusting, so was the process of watching the barista make my drink.\n\nThey use hershey's chocolate from a dirty nacho cheese style pump with chocolate sauce dripping down the sides, and coagulated into a thick cap at the tip of the nozzle. *Disgusting. \n\nThe espresso shot was made without care, or concern for the fact that it was done way too quickly, and with espresso grounds that were ground way before I walked in the door. Possibly way before the barista started her shift. *Gross\n\nAnd finally. The milk. She steamed the milk with the automatic steam wand. This was a huge red flag. Those are notorious for burning milk and making disgusting drinks. Well, both were accomplished. \n\nThe steam wand was tinted white from lack of cleaning. And the worst part was that near the end of the wand was a DARK CHEESE that had accumulated from burning milk and not cleaning the wand after every use. \nWhich is FREAKIN - DISGUSTING.\n\nI wasted 5 bucks on an overpriced small mocha, and threw it away after taking a sip. \n\nHundreds of businesses in the area close down every year, and there are more realty signs in strip malls in this neighborhood than actual storefronts. AND I really don't understand why this place hasn't joined the many defunct businesses and starry eyed entrepreneurs in the unemployment line. \n\nIf you own a coffeeshop. Coffee should be your passion. \nIf you own a bait shop. Fishing should be your passion.\nIf you just want to open up a business that mirrors a nearby popular chain (short, tall, grande), please stop wasting space in the strip mall and get a day job in a cubicle.\n\nNever going back, warning my friends about this place, and am probably going to contact the health department on Monday.", "type": "review", "business_id": "dewq6aevfoNFvJBqM7PG5A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QIPn_akIS1TLx8kSuPjLxA", "review_id": "COmahAddIeMmG-SEUINQ5Q", "stars": 5, "date": "2010-02-10", "text": "So my friends and I had to roll each other out of the door after this meal was over but it was sooooooooo worth it!!! BEST red kool-aid ever served in jars!! BEST waffles I've EVER had!! BEST red velvet cake I've EVER had!! I also did enjoy their chicken, mac & cheese and collard greens, but none were the best I've ever had, but very good. I seriously dream about their waffles and red velvet cake, I don't know what magic mix of ingredients make up the waffle batter but it's absolutely perfect and these waffles would stand deliciously on their own even without butter and syrup, but who'd want to do that? the red velvet slice they give you is HUGE and soooo moist, the frostings is cream cheesy delicousness. I can not wait to indulge in this treat again, but since I'm far from being the only one who loves this place, it is always packed and the wait is long, at least on the weekend. Seriously considering taking a day off of work just for a weekday Lo Lo's run =P", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-494b8jvjlI07v9HheHhrw", "review_id": "xPwM_eTRNfnh-yeCx2dKUw", "stars": 4, "date": "2011-07-15", "text": "I have never eaten a regular meal here. I usually go for the reverse happy hour from 10-12pm. Cheap drinks, good food and a good atmosphere. The servers here are good. I don't eat sushi myself, but everyone I go with loves the Crunchy Crab Rolls. \n\nThey have three different pizzas, pepperoni, BBQ chicken and cheese. I have had the pepperoni and BBQ chicken. Both were extremely good. I definitely recommend that someone looking for a good time, cheap drinks, and good food.", "type": "review", "business_id": "oIkwj10HmUiognO68j7jOg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vL9LEngoOjuZ3lqU1mh8zA", "review_id": "hlGav3PU9NhAfaRwlhtCGg", "stars": 2, "date": "2010-03-23", "text": "We had lunch here with the In-laws today. Highlights: the wait staff is awesome. Fast, friendly, fun; everyone here is ON it.\nLowlights: the food. It's not terrible, but kind of meets expectations of a diner in a strip mall. Weak coffee, white bread, smaller portions, nothing was particularly great. Nothing really sucked; but was just mediocre. They must be doing something right, it was crowded and my in-laws like it. I'd rather go without eating than visit here again.", "type": "review", "business_id": "VEVeXNBX_LUoHaHCJpxUMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BLOwScmNMsW--7mbrQ-G6Q", "review_id": "luH_OTNIplbiFZ73XFYcjw", "stars": 4, "date": "2012-06-13", "text": "This is one of my favorite spot to grab some clothes for the gym or work. I like the sales they have and it's usually pretty quiet so shopping is a breeze. Sometimes you can find good deals on the kitchen appliances as well, like the blenders for my protein shakes. The only thing I don't like about kohl's is getting hassled for a credit card every time I go here.", "type": "review", "business_id": "wdV0pJ4xNi60bME_pXK2dA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EzjJ536eGHoR7xDF1XgeoA", "review_id": "hJwjv2aEZStFBYUgTx20mg", "stars": 3, "date": "2012-08-26", "text": "Had breakfast here on a Saturday morning in July. I ordered the Spanish Scramble. It was good. I don't have much to say. It's close to home but it's just okay. Still looking for my go-to breakfast joint.", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "vn3lecMsL3kXVe-7hg3gLg", "review_id": "7sDbd3pokdL_AsptgmxAPA", "stars": 4, "date": "2011-12-26", "text": "One of our favorite pizzas in the Phoenix-area. Well... definitely my husbands. He LOVES, LOVES, LOVES Grimaldi's. \n\nWe always get the same pizza. Every.Single.Time. \n\nLarge pizza -- pepperoni, sausage, and red onion. (That way we can have leftovers the next day - - and I'm not a leftover person.)\n\nSO good!\n\nThis location has more outdoor seating than the one in Chandler. Plus they have another side room/building that is great for private parties.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 3, "useful": 13, "cool": 1}, "user_id": "FvUWCfM4ZcVVhf8Wq4R4nA", "review_id": "cgC-Oeigl6MhXZPq6jlNPg", "stars": 1, "date": "2011-07-25", "text": "The food was decent, however I am writing about their underhanded business practices.\nI ordered a travelzoo voucher for $69 that included 2 3 course meals. It said \"Regularly $140\". What we ordered, if had been ordered off the regular menu would have been about $100. However, we were charged tax on the full $140. \n\nSecond, even though on the voucher it says \"PLEASE TIP ON THE FULL VALUE OF THE CHECK.\" (which implies tip is not included and we get to choose the tip amount) and nowhere mentions automatic gratuity, 18% gratuity (18% of $140, even though we ordered $100 worth of food at the most) was automatically added to our check.\n\nThird, even if you had ordered the most expensive options, the highest possible amount it could be worth is $120, not $140. It is mathematically impossible to have the voucher be a $140 value, but that is what they add tax and tip to.\n\nFourth, after we told our waiter we were using a voucher, he seemed less interested in the service level of our table, which i later realized was because he had a guaranteed 18% (of $140) tip.\n\nI just noticed today they have another travelzoo deal \"$79 - AWARD-WINNING FRENCH DINNER FOR 2 W/WINE, REG. $165\", I am posting this so hopefully if anyone is thinking of buying that voucher, they will read this first before they purchase it.", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "Aw3EMRqdSJ2DtqoI_NpgWA", "review_id": "lMUkpUjdv5xoEQ4Sr6DN5Q", "stars": 3, "date": "2009-02-28", "text": "Drunk people go here. Service is good depending who you get. The Burger according to one Arik B can not taste his burger. When ask the server, how come my friend Arik b can't taste his burger? Why?\n\nYou had to be there to laugh. What a fun night!!!!\n\nDon't order the pancakes, they are not very good. The chicken strips were a-ok.", "type": "review", "business_id": "P7wKlbSRsoRrfH3DFOY08A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ODzzv4W_ROoY-nOCmvybqw", "review_id": "N5KbO6_pBUAs_KfD4ECAcg", "stars": 4, "date": "2010-07-20", "text": "I haven't had this in a while so I can't really give a ton of detail but I have been here a few times. It's a traditional japanese restaurant and from what I remember the food was decently priced maybe a little more expensive for dinner than other places. The thing I remember about this place that I really liked were the lunch bento boxes. They had a ton of food and miso soup and all that and they were a great deal, I don't know how much they were but it was very cheap for what you get. The service is only average but for a cheap lunch with more traditional sushi I would definitely hit this place up.", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "-rutaYKpWZoWcupIJ2OkHQ", "review_id": "SuF4QKDoEdm9OvZgbt99fw", "stars": 4, "date": "2010-07-26", "text": "Satisfied my sweet and savory liking in a single swath. Just had my first visit here and will be back soon. The crepes were tasty and light, the service was attentive and friendly. Too bad they aren't open later for a sociable evening with dessert and caffeine.", "type": "review", "business_id": "7VLW-cIDaiO4Dx8gXYkZcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MrhRLJMoa6PDVUYhNQUIuw", "review_id": "rSC2cAoKxImLKmazeQnzqg", "stars": 4, "date": "2010-06-23", "text": "I have been to this place a few times over the past few years. I get the same thing, the pollo fundido. It satisfies my Mexican cravings.\n\nThe atmosphere is fun, maze like. Service is decent and like most places if something is wrong they are quick to fix it. This is a great local restaurant. I love how it lacks the ultra corporate feel of most main-stream joints. Great Mexican!", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VH1WbmbrUvgvSWQr68QA6g", "review_id": "nltegGYBtWsgMOghFfM6dA", "stars": 4, "date": "2012-11-04", "text": "Vaguely remembered this place from Yelp when we were looking for a lunch spot after a visit to the Acxupuncturist up the street. We pulled into the lot and by the looks of the outside, there was a bit hesitancy to go in. So, thank you to my friend's smartphone for allowing us to read the yelp reviews and allow us to take a chance on this place. I am happy to say our first visit was a good one. \n\nEveryone has said already, it is homey and maybe a bit dated in its decor. However, I don't care for ambiance and classy settings, I care about decent food and friendly service.\n\nMMR has both. I had the Hot Turkey lunch special for Thursdays and I have to say it was huge for a lunch plate and the price was so reasonable. Maybe I am old school, but when you bring me hot bread and butter right after I order, you have already won me over. Then the Turkey Plate came and it was really good, moist and flavorful. The potatoes are not mashed, they are smashed-there are actually potato chunks in there. I was not thrilled with the stuffing because IMO it had too much sage (to the point of overpowering) in it and that was distracting me from what otherwise would have been a very good stuffing. There was also MORE BREAD given to me with my meal in the form of a roll. That was good because I needed it to dip in the copious amounts of gravy on the plate. \n\nMia was our server and she was really great. Very attentive, helpful and actually seemed to enjoy serving us. Rare these days. This staff has it together. \n \nWe were stuffed and decided to opt-out on dessert and take an APPLE pie to-go. The pie was still warm when she brought us the box and it traveled well for 3 hours all the way to Marana. My friends boyfriend is the pie lover and he had two slices after dinner that night and I can say we all loved it. I ate a slice for breakfast the next day. Excellent, excellent pie. \n\nOur two lunches, two beverages and a pie to go was $35, considering the pie was about 1/3 of that, not bad at all. \n\nWe go to the acupuncturist this Tuesday and I plan on getting more yumminess from MMR.", "type": "review", "business_id": "s5roBvbA79SQaO4FHkJgGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hebXGQk5ggZSwTlUoEcTWQ", "review_id": "0v_0U406ksUc7REYsZ1cPg", "stars": 5, "date": "2010-08-30", "text": "Gotta love a place open late in Phoenix. 2.50 petite martinis after midnite; yes please!", "type": "review", "business_id": "6imLt53br7SJ3av07jjH7w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ceyFnFHTTkaiDRVRnmUlmA", "review_id": "_snq4q49K_W2FK_uDGL5Fw", "stars": 5, "date": "2012-01-29", "text": "Love this place. Buffalo chicken breast on a pretzel bun was amazing. Love the atmosphere too!", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "BtLx77C_yJYaobIWYgfCvw", "review_id": "zsscIuCplhiLfvPJ3Z3WUw", "stars": 3, "date": "2011-12-28", "text": "Staying here in lieu of getting a real apartment. \n\nPros:\nThere is someone making my bed.\nLocation.\nEye candy (they got something right). Girls are smokin. \nValet.\n \nCons:\nI have a rental car but for nights out, where are the taxis? You would think paying $250/night 5 nights a week, you would think they'd call one for me. When I called front desk, they told I can catch one downstairs. No, I do not want to stand out front in the cold and wait fot the parking attendant to holla one for me. \nVery small rooms - No couch or real sitting area.\nAnd what?! No tubs except for the suites. \nNo jacuzzi?\nGym - is that treadmill falling apart? No, it's just someone using it.\nBliss lotion (smells great but useless) - all this dry weather, I have to BYOL. \nRoom service (food and wine by the glass)...more variety please.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "-RHzMqYQbBhXR9wyhRRvxg", "stars": 4, "date": "2009-03-24", "text": "\"I don't know who invented the high heel, but all men owe him a lot.\" (Marilyn Monroe)\n\nA girl and her shoes...are a beautiful thing. From bags to boots to tennis shoes to pumps to sandals, the selection (at least today) was EXCELLENT. Not only were there a variety of brands but a variety of price points too. This place had me salivating! I could easily have purchased three (3) pair but decided to wait and visit again with a friend......it's a chick thing!", "type": "review", "business_id": "VG_6E3ykEtV1xAJGqn0AHA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "-xwAX0RoqrEWmGAZ9aSGgw", "review_id": "_-bOxj1Z_rYm8yWL4o7-yQ", "stars": 1, "date": "2012-12-11", "text": "This review is based on delivery, service and food quality as delivered.\n\nSecond and last time I will be ordering from this place. The first time they forgot a few items and were very off for delivery time. \n\nTonight I Ordered at 11:03 PM, estimated delivery at 11:50 updated to 11:54 PM (from a whopping 1.5 miles away to add). 11:54 comes and goes. Call them, at 12:07 AM now, I am told they are on their way (1.5 miles away keep in mind). Call back at 12:40 AM to cancel my order as I do not want to eat at 1:00 AM. They actually come to deliver while I am on hold waiting at 12:44 AM. My \"hot sub\" is ice cold, there's nothing like the taste of cold greasy bacon and chicken close to 1:00 AM on a Monday (now Tuesday) night...if you are going to take nearly 2 hours to deliver this, at least make sure the temperature is somewhat close to where it is supposed to be....never again silver mine...never again.\n\nThis place probably has a \"good taste potential\". Unfortunately, like most \"hot food\" the taste quality substantially decreases the longer it sits...in a fridge, alley, or wherever they decided to leave it for nearly 2 hours. If you feel the need to get food from here..for the love of sub kings please just DON'T GET DELIVERY!", "type": "review", "business_id": "4oBF6f3NiCYF5VYd8WaELw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "6_CNq-jybIqHF0Er8TADAg", "stars": 5, "date": "2011-03-03", "text": "This was the marriage of two of my favorite things alcohol and ice cream. As Charlie Sheen would say \"Winning!!!!\"\n\nI had a groupon so Laura A. and I went to try out this amazing place. The groupon got us each two scoops so we went with 4 different so we could sample the most possible. I got the Apple Pie / Spiced Rum and Black Raspberry / Chambord Liqueur. Both were awesome I actually enjoyed the Chambord the most but I was in ice cream heaven. \n\nLaura got the Mimosa with Champagne and the Margarita / Tequila. I really enjoyed both of her's the margarita was a strawberry one which is my fav. The Mimosa was very refreshing and I could imagine that being a great hangover remedy at about 11am on a Saturday =) just sayin. \n\nI have found a new place to cure my sweet cravings and can't wait to try more flavors as the website has many more I didn't see in store so I assume they are on rotation which is great. \n\nI hope that eventually I can find a pinapple upside down cake with rum flavor", "type": "review", "business_id": "qB-qsaSnhbHCt18_AN4Quw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WxeD74JGiwjljzHndYSvmw", "review_id": "uytvQkw5zPQzlperuAd3YQ", "stars": 5, "date": "2012-08-05", "text": "Old school style butcher shop that has great service and a great selection. You will pay more, but you can sign up for their emails and get the monthly and weekend specials. Often there are coupons for BOGO or a few bucks off your purchase. They also have a good selection of beer and wine, side dishes, and some supplies for home BBQ and smoking. After reading the other reviews, I know my hubby and I need to try the jerky. We always enjoy shopping at Von Hanson's.", "type": "review", "business_id": "Qc-WTMIjVPv2qkL6q-Cnhw"} +{"votes": {"funny": 6, "useful": 6, "cool": 5}, "user_id": "QiR2X306Yzd9fuJdKDhkGg", "review_id": "LQAGqljDv0OefCFf236hzA", "stars": 3, "date": "2010-12-13", "text": "The food at Beaver Choice Scandinavian Bistro is delicious; a little unusual, but easily understood. Hearty and reasonably priced. You can find out all about it at azcentral.com in an article by Howard Seftel. Then, after reading this survival guide, you should go and try it.\n\n Things you will need:\n 1. An afternoon or evening with no commitments other than your meal. This could take a long, long time.\n 2. A pen and a piece of paper on which to write your order (along with an alternate choice).\n 3. Dining companions who all enjoy the same foods and are willing to eat off the same plate.\n 4. A snack to tide you over until your food arrives.\n 5. A sense of humor (but try not to laugh out loud),\n\n Here's our experience:\n\n Four of us entered the small, 20 seat restaurant at 12:10. There were six other people seated at the minimalist glass top tables. A large, and very appetizing looking catering order was taking up another table. We were given menus and told to order at the counter. There were many, many choices of entrees (a few warned that they would take between 20 and 35 minutes to prepare - we avoided those), and each one came with a choice of four side dishes. You can see why a paper and pen might come in handy. Ken went to place our order, but he had to wait for three other people who had arrived before him. It took a while. Then he was told that my entree choice was not available because they had run out of gravlax. I came up with another selection, and Ken went back to the counter - where another group of people had taken his place and were ordering. Another wait, then my second choice wasn't available either. The sauce had to be reduced and wouldn't be ready until Tuesday. I figured I'd be safe with a third choice of Swedish meatballs, so I yelled over to Ken who saw that each of our orders was being written on a separate piece of paper. Odd.\n\n We settled in to wait for our food. Our drinks were brought to the table. Sena's eyes popped when she sipped the pitch black coffee. The waitress said it was always that strong and that there was no milk or half and half available, but she could bring out some heavy cream. I noticed that food was coming out of the kitchen painfully slowly. One dish to one table, a while later, one dish to a different table. Companions were left twiddling their thumbs. It so reminded me of Hell's Kitchen - I could hear Gordon Ramsey going ballistic: \"Shut it down you &*#$%!!!!\" . At about 1 PM my Swedish Meatballs were delivered. I put the plate in the middle of the table and invited everybody to dig in. Luckily the servings are large. We finished that off and waited another ten minutes before Sena's chicken schnitzel arrived. That too was shared. At about 1:35 Ken's entree was brought. That left Leon, who had ordered Tilapia. We flagged down the owner and told her that we had a 2 PM engagement and would like our remaining dish. She said she'd look into it, went into the kitchen and was not seen again. A while later another staff member came over and told us that there had been a large catering order, that they had only a six burner stove and that 2 employees had called in sick. I mentioned that I didn't think it was right to serve some people at a table and not others. \"This is the way we do it, we're not going to change it, and Howard Seftel thought it was all right\", was the emphatic reply. More waiting. At 1:50 a different staff member came over and said it would be a few more minutes. To our disconcerted rumblings he said - and you're not going to believe this - \"The fish has to be defrosted slowly because of the parasites....\" At this point, I'll confess, I started to laugh loudly and somewhat\nhysterically. It may have been rude, but I couldn't help myself. \n\n We were out of time, so Leon decided he'd take the fish to go. Ken went up to the counter and gave one of my Valley Vittles cards to the \"parasite\" staff member, saying that the food was great but the service terrible. At which point the staff member had a melt-down, yelled at Ken to get out of his restaurant, then went slamming through the kitchen kicking something on the way out. \n\n This was truly one of the oddest dining experiences I've ever had. Very Alice in Wonderland. But if you go equipped with the five items mentioned above, you'll have some excellent food.", "type": "review", "business_id": "5SS69rC8XWvdlD1OHifEEQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gfCWt_YncrOmJsU1IQUHbw", "review_id": "26dRqz2hS8_AgZ3VYwpUaw", "stars": 1, "date": "2010-07-18", "text": "the owner was dishonest, she posted a menu outside with lower pricing to attarct traffic, and then charge higher pricing menu inside. she also charge me 12% sales tax, which is illegal in tempe, which suppose to be only 9.3% very rude manner, not recommended", "type": "review", "business_id": "KzZ5Zww9W0IBWm5S2loUmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "4yM6f4ZJKsiVauP5dzoLXg", "stars": 4, "date": "2010-09-04", "text": "The price is right! 16 bucks for two huge lunches, chips & salsa and two drinks.\n\nIf you're looking for upscale, squeaky clean and Scottsdalish, this ain't your place. If you're looking for good Mexican food, at reasonable prices, quick service and great flavor head on over to Carolina's.", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "F0dO68TECqEJBhBJ4P0qVA", "review_id": "dplNFFcp5MX2kcpIir8jQQ", "stars": 4, "date": "2010-02-11", "text": "I've been here many many times and have never had a bad time. Everything has always been up to par. I literally have no complaints.\n\nAND - I recently dropped a personal check made out to me while getting cash out to pay my bill. The manager found it and mailed it back to my client. Talk about honest service. \n\nBJ's is our go to place for an easy weekend lunch. Their home brewed root beer is super good.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "XTFE2ERq7YvaqGUgQYzVNA", "review_id": "GX9hAUoKxLMOBipU-la5JA", "stars": 1, "date": "2008-05-08", "text": "Only reason for 1 star is 'cause I got arrested here for underaged drinking years ago.\n\nI blame the Diamondbacks, for no legitimate reason.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "DnwHp_A92KvllfaUIdFraw", "review_id": "CWZEPD14AFGJTBTSChbYSw", "stars": 4, "date": "2009-07-19", "text": "Sadly received this email today:\n\nSabatinos is Closed\nYou know we have been experiencing a lack of sales which we can blame on the economy, new restaurants opening here in the valley (most likely for much less cost than us original places), we tried to work with our landlord, but he would not budge on lowering our rent. We just could not afford the 5500.00 this month and were afraid we would lose everything in our place to a Lockout, which was threatened to us already.\nWe just wanted to say goodbye to all of our loyal customers, we really enjoyed having you come in weekly and keeping up with your lives as well as you keeping up with ours. We will probably be leaving the Az area and starting over fresh.\n \nGod Bless\n \nKevin and Sheri", "type": "review", "business_id": "pBBN3KhKTETvjeWg-MXJGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GA9-h9rRosmKN-NzvyepLQ", "review_id": "mFebdaul6wdUkfpQargkFw", "stars": 4, "date": "2009-04-19", "text": "I went back recently and noticed thatt the quantity of tuna they use in the sandwich has DRAMATICALLY decreased. The bread is still as good as ever but it was a little disappointing to see that happen. Hopefully it was just a once time thing. Will keep you posted...", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "h0yc9-lOhe0du42G2X7zrw", "review_id": "C5SAWaJC7LpRnw56gy5fQA", "stars": 5, "date": "2010-05-03", "text": "After flying across the country we were hungry and as I've done in many other cities, I went in search of pho. \n\nI ordered the pho dac biet. The broth was not oily, and packed with flavor. The noodles were just right and there was a generous amount of tripe and tendon.", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "q3tBIoFdE6vui_GosLDs-Q", "stars": 5, "date": "2010-04-08", "text": "Puttanesco pizza (artichokes) was delicious and the service is all very quaint and efficient.. They even have gluten free pizza crust. Happy hr drink is 1.00 off all drink choices which I love since I can order whatever I like", "type": "review", "business_id": "Zruvunhqw7cuyuoe7g09Gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DDad5K6GNA0sXB7N1OB6wg", "review_id": "xcMUacWzWFbzwZtosQZcmA", "stars": 2, "date": "2011-08-16", "text": "I hated this place. It looks like a nice first date restaurant but the food and price are so not worth it. The hot tofu soup was pitiful and my fiance ordered the bbq and a sushi which were both too expensive for their own good and the sushi tasted like something was old....Never again! Chodang, here I come!", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "xekmTnJPFbMr4b3zscotVg", "stars": 5, "date": "2009-10-16", "text": "What can I say about Execucar. I love their service. It cost just as much if not cheaper than taking a cab for me. I make a reservation on-line, get confirmation via email as well as a phone call the day before confirming my reservation. The cars are always nice, clean, and fresh smelling (yes that may seem weird but I have been in some cabs that were like WHOA!) The drivers are always in shirts, ties, and slacks and they are professional and courteous. I have never had a driver be late (knock on wood) and they have always gotten me to the airport on-time. Plus I get some frequent flyer miles added to my USAirways account for using them. Can we say bonus!", "type": "review", "business_id": "slO8j375ae2_Pd6PuyBLNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jjmVBDP7zHwysuYNVwavpw", "review_id": "KIv4U4PcAMSKLda3Ic6M5w", "stars": 3, "date": "2011-07-08", "text": "I've been to Orange Table a few times and adore the venue, grocery and store. However, I have been less than impressed with the food. The first time I went for breakfast and had the Jersey Girl Omelet. It was good but not great. The next timeI had the mushroom pizza. It was so greasy that I had to go through multiple napkins and could only eat 1-2 small pieces before I gave it all to my friends.\n\nTo sum it up, if you are looking for a chill place to hang out, people watch and do some small gift shopping it is a great place but don't do there for the food.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YOBLN6wRNfq6h4NSNQhKOg", "review_id": "HSenViZb--vlRB6Jjof46A", "stars": 4, "date": "2012-01-18", "text": "My hard drive crashed on my computer and Apple told me that they recommend a 3rd party company to retrieve my data. Like most Americans I am totally Apple Brainwashed so I did what they said. This company came back and told me that it would cost between $1800 & $2400 to retrieve my data. I asked for them not to precede and got my computer back. I walked into this location, told them my problem and $199 later got all my data put on to my external hard drive. I am very thankful for them and would recommend them to anyone in need!", "type": "review", "business_id": "csP_5wtk4DEpHJq65bSsWQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "hvgYD6Pmyaa6hS39ymIQBQ", "review_id": "i-AKTOg0aYmx-x_srA24sQ", "stars": 4, "date": "2007-09-27", "text": "I eat lunch here sometimes. The chips are always a little on the burned side and need tons of salt. I've learned from experience that this just goes better with the salsa there. Besides, these chips are real. Not some gigantic bag of factory chips laying on some heating tray in the back. They killed those tortillas this morning, in boiling oil. Seriously, the first bite not capture your imagination but you'll slowly find yourself wondering why you can't stop eating them.\n\nThey have daily specials, my favorite of which is the chicken mole which is Thursdays I believe. I'm also a sucker for Friday's chille relleno. If I'm there on some other less glorious day, I'll opt for the cheese enchilada plate or the Clare burro. Try the ice tea. It's got cinnamon in it and it doesn't taste a thing like Lipton's.", "type": "review", "business_id": "TMdHhDI7jYQ9206dtvrBgA"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "5MjYDByOR3JtiE9giNPgAg", "stars": 5, "date": "2008-02-01", "text": "Since I have ranted recently on poor customer service, and in the spirit of balance, here is a shining example of how easy it really is.\n\nLate last summer I came home and was shocked to see two of my sunscreens looking quite vandalized. Upon further inspection, it appeared that while using a back mounted leaf blower, one of the landscape crew had brushed against them. The exhaust pipe must have ripped and burned the screen material as well. It was quite the nasty burned melted scar.\n\n After staring at it for several hours, I realized there was no virgin Mary, no Jesus, hell it just looked like burned grilled cheese without any deity or lesser apparitions whatsoever, regardless of the angle or my squint. So deciding there was no money to made on eBay, I set out to get them repaired.\n\nDid some online searching and decided to call AmeriZona. I explained the situation and was told they could repair them, but I would have to bring them in. These are some pretty large sun screens mind you and packing them into the convertible would have been a challenge.\n\nWhile pondering what to do the person helping me on the phone asked me if I could hold on. I could tell it was one of those thinking on your feet light bulb went off type can you hold requests.\n\nShe came back on the phone, informed me that she had a crew that was working close by and that she would ask one of the crew to swing by and pick up the screens for repair. She could not promise when they would be repaired, but for that convenience alone I was on board. She had already quoted me the price to repair the screens, and it was very reasonable considering some other online comparisons.\n\nSomeone showed up within a few hours to pick up the screens. He could not have been more accommodating, and it was obvious this guy had been working all day and was on his way home. \n\nA few days later, Mark phoned me to tell me my screens were ready and to tell me he was going to drop them off on his way home! Needless to say Mark was also very pleasant to deal with. I believe he was at the time the sales manager. \n\nWhen he arrived, the screens looked great, matched the color of the others, even with the sun bleaching over several years. He even offered to put them in! \n\nThis experience was way beyond any customer service expectations. No extra charges for any of the above and beyond the call of duty efforts. Outstanding, and quite refreshing.", "type": "review", "business_id": "kEktpuT1_dH1CsJD-SkwSA"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "gq_G5VCDziyEV2-bzGuqzw", "review_id": "pd1lOm8RXhw5HkN-eXR1XA", "stars": 5, "date": "2007-11-04", "text": "They really do a great job, and you will really pay for it. I don't have incredibly pricey clothing, so getting my $50 blouses dry cleaned here just doesn't make sense- but I would absolutely trust them with very important articles (nice sport coats, lined trousers, wedding gowns, blood soaked mattresses... haha, kidding).", "type": "review", "business_id": "Hd41eA04_N5BAWpv3iG57g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0N0ngSQ8Njxfuvdxm1RpFA", "review_id": "LJxpeUxAXKloGT3VQjWv1A", "stars": 3, "date": "2011-05-20", "text": "This bar is now \"Dodey's\". Sold just under a year ago. *See \"Dodey's reviews.", "type": "review", "business_id": "Ew2JBmTFhGTm6Uk6WMc8RA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NzeIZYdHN9epdUCnLziiZQ", "review_id": "0wuWnbYH5YkP8hovomEsgg", "stars": 5, "date": "2012-12-21", "text": "Old school steak house. Best 22oz ribeye I've had in years. Bread drenched in broth was curiously delicous. Waitstaff hustled. THe only aspect was the salad, a waste but at Durants, there is so much good meat, why waste it on vegiies!", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 20, "useful": 14, "cool": 14}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "DHEq0yLTu0rMGS-Ahov5Hg", "stars": 2, "date": "2007-12-22", "text": "Have you ever had the Lean Cuisine chicken enchiladas? Have you ever been to a super obnoxious sorority party, where all the blonde bimbos are tanked and dancing on tables and such? Have you ever been totally ignored by wait and bar staff even though you've doused yourself in lighter fluid and set yourself on fire? Well. Then. You've been to San Felipe's. Lower than mediocore food. Except for the grilled fish tacos. Thus 2 stars. Not 1. When I lived at DCRanch, I thought this would be a less expensive, less formal place to hang out. Hmmm...other than grabbing a quick beer here I'd sooner stay at home, eat Doritos and watch a sorority slasher film. What do Kristin and Pierre say? Meh? Yea, that's it. Meh!", "type": "review", "business_id": "TEiuiQi_0W3goZ7x9e_ILw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KYeLSM3MQpirmHukVV5Iow", "review_id": "AJrBTxsrX8Si81s0H9nBMA", "stars": 4, "date": "2010-07-21", "text": "I have now played Longbow three times (twice in 2009, and once in 2010). I do have to say it's a fine course for all tastes.\n\nI can't say it's a 5 star course, because it doesn't have quite the scenery and/or elevation changes that some that are nearer to the mountains have. But it has enough interesting holes to make it a unique experience.\n\nIt's not a gimmicky course by any means. The course is more or less flat, with enough mounding on the fairways and around the greens to make it challenging. One major advantage this course has is that there are not any houses on the course. This means you don't have to worry about breaking anything if you like to slice the ball; the worst that can happen is that you lose your ball in the desert.\n\nI also really like the fast greens. These greens are among the fastest and the truest I've played, and it's really a delight to putt on them.\n\nThis is a great course for a cheap afternoon round during the summer. For $40, you are probably better off going a few miles down the road to Las Sendas, but sometimes in the afternoon rates can be had for under $30.", "type": "review", "business_id": "hfvKCAdJc_tUne9LPoC-ug"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "B6gZizbeBKbjkRkyE0-bxg", "review_id": "mXLf-FDkFCLhKj-b72M5eQ", "stars": 2, "date": "2011-04-16", "text": "This particular restaurant is not set up well. There is a section of 4 soups all clearly labeled, but further down, there is a black kettle of another soup with a tiny little label that you have to pick up and read. In the center of the counter, there is a bread bin, you have to lift the plastic door and hold it open while you retrieve your bread. I was fascinated to watch other people's techniques for bread retrieval while I was eating. There are tortilla chips in this bin and then you have to go to one end of the counter for taco meat, then to the other end for cheese, lettuce, sour cream, etc. Poorly planned and smaller selection than Sweet Tomatoes, I would rather pay a few more dollars for a better selection.", "type": "review", "business_id": "mbPdVUCUhpqc0zLL13FObg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "EVN484M7GZxhVpp61JgQBA", "review_id": "hRsytFauZ7SNeU0WtaXjHA", "stars": 5, "date": "2007-07-16", "text": "Get your passport, we're going to Mexico.\n\nCan't find your passport? Still waiting for it from the State Department? No worries, pack your bag and head to the Ranch Market!\n\nThis place is the best! The food court is wonderful with so many tasty dishes. And the produce department is crazy! 2 lbs of grapes for 99 cents, 8 cucumbers for a dollar, 17 cents for a bunch of cilantro, 7 -- YES, SEVEN pounds of watermelon for 99 cents. You can go crazy with produce and not break the bank. \n\nThe tamales are huge and the tortillas, oh the tortillas. \n\nDon't be frightened, don't get intimidated, it's just a grocery store people!", "type": "review", "business_id": "VXIkI9_EbDbYHeO9IzKjJg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZySD-z6C97Q0kc-_PeN0Vw", "review_id": "ZYfWJkBEOYW9ivZZ0VEOTg", "stars": 2, "date": "2006-12-26", "text": "Ive had dinner there a couple of times. The bar is great and the drinks are OK. The outdoor patio looks comfy and inviting. It has a large outdoor fireplace. The inside atmosphere is busy but fun. The food is always good. Fish and steak tacos are fantastic. The macaroni and cheese is one of the best i have ever had and my brother who was visiting from Kansas almost O.D.'d on the stuff. My only issue would the lack of an obvious manager on the floor or presence of any hierarchy. Also the lack of hats in the kitchen bothered me a little so don't look if that bothers you also. \n\nStopped going back, very erratic dining experience. Over- priced and extremely uneven service. The wait staff seems completely untrained and unaware.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "7oMqFG6Su53dtbkVnF80Gg", "review_id": "8xk97kS4oxCnn1FqGoKlJQ", "stars": 4, "date": "2008-08-18", "text": "Fez completely deserves five stars but as a pescatarian (vegetarian plus fish, as much as I hate labeling how I eat) I had very limited options. My husband and I ate here on a rare trip to downtown Phoenix. \n\nThe burgers sounded mouthwatering but unfortunately there wasn't a veggie burger substitute. Many restaurants offer this and I really had my heart set on a sandwich. My husband ordered the Fez burger, a delectable combo of honey molasses BBQ, spiced pears, and lemon garlic aoli. I was fairly jealous but my shrimp kisra (flat bread pizza) was obscenely good with lobster sauce, wilted spinach and parmesan cheese. We also split an order of garlic rosemary fries, which were delicious. \n\nI wish we would have saved room for dessert as the portions were huge and really two much for us to eat! Normally I take my leftovers to go but since we were out for several hours I didn't want to leave anything to waste. \n\nI'd definitely come back to Fez but I won't be putting it into regular rotation due to the lack of veggie friendly sandwiches and entrees.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "tdoL4Un5_hy_rJxEFLLOjw", "review_id": "P2BADhNmVrSrZqi-BTvkOQ", "stars": 2, "date": "2010-02-19", "text": "I have to admit that I can't stop going to Carly's even though I KNOW I shouldn't! \n\nGood: I can't get enough of the Cape Cod salad! It is really somethin' special, that ain't no lie. Also the soup is always flavorful.\n\nBad: Has nothing to do with the food. It is all about the atmosphere, which is oppressive in an I'm-so-unique-and-talented-and-you-are-smelly-dung sort of way. Staff is pretentious and lazy. They think they must be pretty lofty individuals for working there but that doesn't mean they LIKE to work, for god's sake.... The owner. She is somewhat friendly, but beware. She is the person who created this environment, and it becomes easy to believe once she starts bragging about how well-off she is. So congratulations everyone! We support these immature little weasels who scorn this gross human ritual we indulge ourselves in: being a customer, AND apparently we have made the owner a rich woman but shhhhhh! She's still the kewlest of the kewl.\n\nUPDATE: Received an annoying email from the owner (the husband) who instructed me give \" *constructive criticism* \" and not make a personal attack or be petty. My review was neither of those things. I do not know John, nor do I know Carla. I only know what I experience when I have lunch at their place of business. The staff was rude and lazy. The owner DID brag. The food I always order is good. Get a grip buddy.\n\nI was honest about my experience for OTHER PEOPLE who are considering spending their cash on food there. I am not in the least concerned about the owners or the staff personally, but apparently John thinks I ought to be. I ought to see how great Carla is. In fact, he goes into detail about how great Carla is. It's nice to witness a man standing up for his lady. It would almost cause me to add a star up there, but sorry, no can do. His improper use of the possessive apostrophe SEVERAL times canceled that out (okay, now that was petty -my bad). \n\nI'd advise John to concentrate on things other than trolling around yelp, chastising his own customers, whose business supports that fancy paint and the famously zombie-like staff. Maybe the staff is just following John's lead when they don't focus on creating a positive experience for their customers?\n\nHonestly, I remain puzzled as to why John would bother to bother me. I go into a small restaurant to find the owner bragging. That is part of my experience and I will continue to post reviews featuring owners, and how they carry themselves.\n\nAs for the \"personal attack\" on Carla, I will not retract what I said just because John is butthurt and whines about it. I will say this: Carla has probably been in the restaurant several of the many times I have dined there, but I perceived the bragging only one time. I doubt anyone who read my review would label this person a braggart based on that one experience of mine, and as I said before- it did not and would not stop me from going back.\n\nI will be back. I will order the food and enjoy the food, but since that's not the only part of the dining experience, I will tolerate the negative things because the food I regularly order is consistently good.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "UGa1Aqh06x4b8jS4j0Ff7Q", "review_id": "Upwc4N3wd4QbyPCeVNpEeg", "stars": 5, "date": "2009-10-05", "text": "This place is the best! They stopped doing tacos, but if your lucky! they do have them call before you go! Some outside seating (picnic tables) no seating inside. Take away only.They also have another location!!! Yea! In a strip mall on 51 ave & orangewood. They do serve \"tacos\" at this location!", "type": "review", "business_id": "Xo9Im4LmIhQrzJcO4R3ZbA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "IVv4rnmrMlBC6wSxM0nw8w", "review_id": "zu5VL_eqKoxcPR0D5Bi4_w", "stars": 3, "date": "2012-07-10", "text": "Food was decent. Overpriced for what you get. Had 2 Distrito margaritas, $10 each. You'd think for $20 you'd catch a little buzz. Not sure any alcohol was in them. I may go back if someone else offers and pays. Otherwise, no desire.", "type": "review", "business_id": "lKQ5hnkSQ-XP80jNCH46nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "PTPoWRerJYg2PX8IiEw77Q", "stars": 4, "date": "2011-08-31", "text": "One of the best breakfast burrito selections in town.\n\nMy personal favorite is the breakfast supreme w/ red sauce ( and root beer the size of my head).\n\nThe decor may be meh, but the quality of the food more than makes up for it. \n\nThey deliver, are always nice, and never busy (which is unfortunate). Definitely a diamond in the rough.", "type": "review", "business_id": "qdA4qiSXjaiuqO4SueH9VA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qpplec-ajubZNLQrp8pa0g", "review_id": "Vm_zwRbDvKZC4djtRclivQ", "stars": 4, "date": "2010-08-27", "text": "\"The Pilgrim\" represented everything Thanksgiving. Turkey, sweet potatoes, stuffing, and onions all in a crust. It was served with a side of cranberry sauce, and red wine gravy. I loved it. \n\nIt's a must try if you're around ASU. The only thing is that it's really small, but you should be fine sitting at the bar.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "MuiyYofyIa6flBVjfnHtjw", "review_id": "zBI0cxXs-hpkI1j_8fUTlw", "stars": 4, "date": "2010-10-02", "text": "I had been looking for a watch repair shop for months now and was having so much difficulty that I had resorted to keeping the watch in my purse and vowed to find something when out and about. \nDriving east bound on Indian School Rd. The Watch Repair Company caught my eye in a tiny little strip mall-My prayers had been answered! I pulled quick u-turn and wrangled my car into a spot in their tiny little parking lot. \nWalking into the shop, its not much to look at-but what caught my eye is that is was CLEAN! Pristine to say the least-a nice change from most watch places that typically are cluttered with pieces as I think most watch/clock repair business's lean towards being hoarders :) \nIt turns out the shop is under new ownership as of a few months ago (so give it another try Coda B.!) and the owner himself Eddie was upfront working on a piece. \nI only needed a battery replaced, but he did so within 5 minutes and only charged me $5.00. \nWhat impressed me more than his timeliness, was the fact that he actually knows his timepieces. I was wearing a watch that he offered to clean for me and upon inspection noted that not only was it a beautifully designed piece, but that it was a custom piece by a smaller designer-surely hard to find just anywhere. He was dead-on, the watch was a honeymoon gift my husband purchased for me while in Capri, Italy. \nNot only did he clean it-but he also reset a few of the dials that I had not done so since being back in AZ. \n\nCheck the shop out for yourself and make note that he only accepts cash", "type": "review", "business_id": "k6C5YiGHU_aT8oXSkGb0Pg"} +{"votes": {"funny": 0, "useful": 5, "cool": 3}, "user_id": "b4C9E7vTJrOdkJQA86xYSg", "review_id": "zekBKgZGh_dvCo9W2M8dmQ", "stars": 5, "date": "2008-06-20", "text": "I came here today for a manicure and pedicure... I have been here quite a few times; it is a place my girlfriends like to come to so when I want to hang with my girlfriends and get a mani/pedi this is where we meet. Although today I was solo:(. The ladies here do a really good job; my manicures always last a really long time and they are really nice and accommodating. Today I had one girl doing my pedicure and another doing my manicure... now that is what I call service! I was out of there in a hour. They do not have a tip line on credit or debit so bring cash for the tip. Today I did not have cash ( i forgot) they were so nice they said next time I come I can tip then if I want. I came back anyway to tip them because it was so fast and my nails look great. Oh another thing I forgot to mention is they use the hot rocks for the massage part for both the manicure and the pedicure and the callous remover is part of the cost of the pedicure. Total for both services including getting french manicure on toes and fingers was $42.00.", "type": "review", "business_id": "FpnLEpRLtDvcJvmz2N1UdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VrvQgZbTZx6M7MTmOlKzdA", "review_id": "tgmNKqeGzjenANWYlEtgWg", "stars": 3, "date": "2011-06-02", "text": "My wife and I had lunch here. Not too hungry, so we shared 2 Spring Rolls ($3.75) and one dish, My Nam (4F, $7.50), Good thing we weren't hungry, as the dish size was smaller than we expected, but did have 7 shrimps. Spring Rolls were essentially tasteless, as was its peanut sauce. Dish was OK, and the broth (not meant to be a full soup) was excellent. 3rd star earned by an exceptional level of cleanliness. All in all, if you want Vietnamese, there are many others, but this is very convenient. Many more better choices", "type": "review", "business_id": "NLVcGseUhgQdABs1mIYk8g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "Ff-1_yQDMU7m8nkd4IGJ9Q", "stars": 4, "date": "2011-04-27", "text": "I will begin by saying that I've been wanting to try this place for months now, simply because they have a salad that bears my name. Which reminds me of my high school days, when the internet was new and I spent an afternoon with a friend visiting websites that also had our name. Most ended up being adult sites, but tonia.com* was an Asian company that had my name written in a fantastic logo. I wonder what it means. \n\nAnywho, not only does the salad live up to its given name, but Moto is now on my backup sushi rotation. Reasonably priced and of good quality, I was extremely full by the time I ate only half of my dinner. The Tonia salad I actually had for lunch a day later, and was very filling and delicious. I can only imagine what it would've been like eating it the same night. Had it not been as great, I would've never came back and written to the owners, demanding the salad change to a lesser awesome name, maybe one more common or boring.\n\nMy to go order was ready exactly when they said it would and I was in and out the door in minutes. I'll be back.\n\n*I have no idea if this is still the same site anymore. I am not responsible for where the link leads.. now.. or in the future", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TPyz7VSq9hnI-6bDGAIZPA", "review_id": "9mhVa6140GQjBoM85KtI7Q", "stars": 5, "date": "2012-07-07", "text": "Wow! I enjoyed staying here! Huge rooms! We had three adults and two children and everyone had plenty of room! Highly recommended!", "type": "review", "business_id": "sOa-OpRFi1OVU7CC6Hwoig"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mC4IzhAQuLD_Ct_Bngm3SA", "review_id": "i1TGrBBeDCzEHULlV6NUXw", "stars": 2, "date": "2011-04-08", "text": "I happened on this place because it was next to EL Brava, a Mexican place recommended by the USAirways in flight magazine as a place to try in an airport. Getting to ElBrava we found it was a fast food stand with very little seating so this is next door. \n\nThe menu was pretty limited. Service actually wasn't bad but, even though it wasn't busy, we waited a long, long time for our meal to get there.... something you don't expect in an airport. When the food got there it ok. I had a burger that was pricey and non memorable. \n\nNext time I'll go to El Brava and pass by the 12th!", "type": "review", "business_id": "SAS7V55TcgZSTJ21ZnXqmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z2mgF-F_TF2MxnWmflIiUA", "review_id": "F_wMqhSdI9NtWfqMX-nADw", "stars": 3, "date": "2011-04-17", "text": "Good barbecue, but not great. I ordered the BBQ Sampler and shared with my wife. With an extra side and a delicious chocolate chip cookie for dessert, it was plenty of food. Unfortunately, the quality of the food wasn't as high as I was expecting based off of all the Yelp reviews. All of the meats were very tender... The brisket and pulled pork especially. But they were devoid of significant taste and had to be drowned in BBQ sauce in order to taste anything. Thankfully the sauce was excellent and readily available. Of all the meats I sampled, the winner here was the ribs. Definitely not the meatiest, but extremely tender. I could pull the bones right out and devour. Delicious!\n\nOutside of the food, everything was excellent. I arrived at peak time on a Saturday night, and the line moved quickly. It snaked through the restaurant and out the door, around the corner, but it moved quickly. We waited no longer than 30 - 40 minutes. All of the servers were extremely nice and helpful. There was plenty of seating available, especially outside. It was a lovey place to enjoy a meal. It is unfortunate that the quality of the BBQ does not rise above \"medium\" to match the high quality of the rest of Joe's Real BBQ.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7qru8A4ucyiFp74XCMdgmA", "review_id": "dg1Sw8sihJCUKGiQ7Yl_tg", "stars": 4, "date": "2012-10-09", "text": "This hotel is in a good location for getting to the sports venues downtown, the convention center or to just be in the heart of the city. Granted, it is about a 7 block walk to most of those places, but the lower price and FREE parking definitely make it worthwhile. I usually stay in Scottsdale when i am here for spring training, but I was here for a conference and walked to the convention center each day with no problems. It made sense to be downtown instead of Scottsdale. The hotel is clean, the rooms are nice and big and the free breakfast is decent. I did not visit the pool, so I cannot comment on it. Someone mentioned the area being shady, i walked to and from here at least twice a day including late night and never felt it was a bad area. Also, the review about passing cars was not an issue for me. I was on the street side and I'm a light sleeper. Maybe their window was open? i do agree that you can hear your neighbors in the bathroom, slightly annoying. In, summary - this hotel is a great choice and if the need arises, I'd stay again.", "type": "review", "business_id": "Lt-dQ0kUWFm0nDgLwdEo_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QzA6ZW1NFid32_g_fsapIg", "review_id": "-fjybXWEg1dOCQwSGYTvuw", "stars": 3, "date": "2010-03-29", "text": "This is my favorite Pei Wei. It is always clean and never too crowded. They also have a fantastic covered patio. I like the Mongolian beef or chicken and the Dan Dan noodles and my husband likes pretty much everything he tries here. They used to have a beef ramen bowl that was to die for but I guess it was only offered for a limited time. The food can be salty at times but I always enjoy it.", "type": "review", "business_id": "08Z_Zzp8PyEmWWpYurIO-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UyB7zOJOwbbEptLAbPueqg", "review_id": "o9MWSKvi1rLATUfAEpH5Dw", "stars": 5, "date": "2009-02-06", "text": "I have been here 2x since moving down here from cali bay area. I am a coffee snob and I really fit in here. The staff is very cute and helpful.\nThe people in the shop remind me of the bay area.\nI drink americanos and the beans being used are very robust and smooth.\nThe menu selection is nice for the food fair and I really enjoy the general atmosphere.\n\nI strongly recommend this cafe!!!\n\nDonkey-", "type": "review", "business_id": "2FudHUhV9U54dm0S1ePuCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V9rPKsWM0qaFyLPY9X-n6w", "review_id": "omxApUSpfUB6TYBLaN65xQ", "stars": 4, "date": "2011-06-08", "text": "Spring Rolls - Great! Singapore Noodles - Great! Hot & Sour Soup - not so great - I have never had a hot and sour soup so dark! Although the hot was hot and the sour, was sour - a little bit goes a very long way!\n\nDefinitely going back again, just skipping the hot & sour soup next time.", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7ovr23oa6bAsN3EL55zvxw", "review_id": "F--7aJKZfmKaZuziIysYdg", "stars": 1, "date": "2010-04-21", "text": "Their amazing prices are instantly countered by despairing customer service. If I want low prices I will go to goodwill over this place. Looks like Dillard's is on my list of do not shop.", "type": "review", "business_id": "0GRYyMRzwA9WYc8UTB2nRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IHbrMNAR6hyHrF9JnByPzQ", "review_id": "ZA-cQq0P7guFZJ6pcwqWoA", "stars": 1, "date": "2010-04-15", "text": "This was by far the worst restaurant experience I've ever had. I paid $20.00 for a show and dinner. I received the show only because it was from an outside source. The show was 2 hours long and by the time it was over half the restaurant I'd say 50 to 80 people still had not been served. They didn't have enough menu's for people to even order off of. Some guy in shorts walked around with buckets of silverware wiping them on his shorts then placing them on the table. The show started at 7:00, at 9:30 I still had no food. The people who did get food complained that it was terrible. Maybe I should be happy I didn't get any food. When I asked again about our order the waitress said she would take care of it. The guys in the kitchen were overheard saying \"f---k those people no more orders! not only did we not get the dinner we already paid for they flat out refused to give us dinner or our money back. We ended up at Dennys eating eggs at 11:00 . Seriously I've never had such a bad experience in my life. Can you imagine paying for a dinner then being refused the dinner or a refund? unbelievable", "type": "review", "business_id": "j7n42b5qDMJR68q3Dv9u6A"} +{"votes": {"funny": 2, "useful": 0, "cool": 1}, "user_id": "BV37xzLqE0-0dlfGTQdk-Q", "review_id": "D4IabHrkLEYc-QAN5xUDBw", "stars": 2, "date": "2007-10-13", "text": "If you just need a roof over your head I suppose this will do. Don't expect things to be easy for you though. I arrived on Friday shortly before 2pm and wanted to check in early. The pregnant woman at the desk (the one that smells like cigarettes and has track-marks up and down her arms) said the room wasn't ready yet, so I left and drove around to take in the sites.\n\nComing back an hour later (now officially check-in time), I was told that that room STILL wasn't ready. How long does it take to clean a room? You've got 100 other rooms, put me in one of those! She left me standing at the desk while she went out and found a room that was ready. Finally.\n\nThis is the first place I've ever stayed that wasn't a converted B&B that had hardwood floors. Hardwood floors are cute when you're staying in somebody's house-turned-hotel, but in an actual motel? I felt like I was staying in a hospital room.\n\nSparse furnishings include: 12\" TV, 2 hand towels, 1 wash cloth, 1 towel, huge desk that takes up more space than it should, and a scratchy bed. \n\nLike I said, it's an okay place if you just need a place to sleep.", "type": "review", "business_id": "HwnC7hT0uIWuBq4CRtk_fw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4gIi4L7e870qFbnRemaoBA", "review_id": "GxmcBBDMeZ_mbl6eitC3qQ", "stars": 2, "date": "2012-01-20", "text": "This place is more miss than hit, I stop by here for breakfast on rare occasions and the food usually comes out more than slightly mangled. \n\nThe food is usually edible and the customer service at the window is always friendly. I've never had the experiences that Phoenician C has but I will admit that this can be one of the lower end McD's that I've been to in this town.\n\nCurse you McGriddle!!!", "type": "review", "business_id": "JgJ7-0V_tCPVcn97aSZVug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iwe8JDF-urz0fF3SKeoPWQ", "review_id": "F42VD3lAEmfdCnvJb8jfUQ", "stars": 2, "date": "2012-12-05", "text": "I am new to the Phoenix area and was in the mood for someone else to cook my breakfast for a change and stumbled across all these rave reviews of Matt's on yelp. Normally I find that the yelp reviews are just about spot on and very honest. This is my first case of the contrary. I don't know what hole in the wall \"amazing\" breakfast joint these reviews were for, but I must have been at the wrong place.........\n\nDon't get me wrong this place is reasonably priced for your basic breakfast, but that is about it. I gave them an extra star for using \"local\" ingredients. This place is below Waffle House and the like on my list. \n\nThe hash browns were more like a chopped potato omelet that needed a few more minuets, I.E. raw mashed potato in the middle. They take \"over easy\" a little too serious also. If there were such a thing as egg tar tar, that's what was on my plate. If you have ever had eggs like this, the ones that can't even be eaten with a fork, then you know my pain. I will say my pork chop was good, but who can screw up a pork chop? The bread was good, nice thick cut slices of what looked to be locally baked loafs. The preserve that came with said toast was okay too, but it got snatched away before I could finish. \n\nAll in all, this place is good for the sheep that need to eat downtown, but lacks anything for a reason to return or recommend it to anyone. If you are in the area and thinking of eating here, try somewhere else. I didn't have to wait in line like many on yelp have stated, and I'm sure glad I didn't for that lack of quality. There are many other options in the area, give someone else a shot that's not banking on you eating there because they were on T.V.................", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "B-Q5eu19iZ1QZ8UKf9siUw", "review_id": "s6RAmh7nk7Kgr_8FuG4vEg", "stars": 5, "date": "2009-07-30", "text": "I LOVE this bar. My first visit was in 2004 when it was known as Bar Nun. I'd just moved to AZ and I was drawn in by the neon green light and funny name. Little did I know it was the beginning of a love affair. \n\nSince I didn't know anyone yet I went by myself and sat at the bar. The staff was friendly and so were the patrons. Some of the patrons turned out to be a little too friendly, and the bartender, Jennifer, insisted that the barback walk me to my car to ensure my safety. As if that wasn't enough to make a fan out of me, I found out they serve $2 Blue Moons all day Saturday and the food is awesome!\n\nThe burgers are great, and you can order them rare if you like. I also became addicted to their BBQ chicken sandwich. And the wings. They'll grill them instead of fry them for you which is a bonus. In fact I don't thing there is anything that I have tried and disliked here.\n\nThursday-Sunday night they usually have a pretty decent cover band. Usually classic rock or 80s stuff. They also have NTN and a ton of TVs if you're into sports.\n\nI was so in love that when it came time to move from my apartment, I made sure my new house was within walking distance. Not that you'd need to walk, (since half the year it is hot as hell even at 2am I can see why you wouldn't want to walk) they offer a free ride program on the weekends where they'll pick you up and drop you off. That way you don't have to worry about Sheriff Joe and wearing pink undies at Tent City.\n\nWow, I kinda wanna move back now. CK's I miss you!!!", "type": "review", "business_id": "xmjv8g356v8Qo55ICjG8rg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qUdXbLXXMjvFmf0_DTODiQ", "review_id": "CDGijt9h7DY8OiA-pxBhMw", "stars": 4, "date": "2012-06-03", "text": "6.30 on a Sunday and there was a line snaking through the small shop. We took turns sneaking peaks at the day's options and by the time we got up front we were ready to order. \nWe got the salted caramel and chocolate marshmallow. The 1st was so good, the 2nd kinda boring.\nCan't wait to try more.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "lOXdWY60YDqvqKWrNKkEYA", "review_id": "3HyQEjAWOfi4dGre65QIOw", "stars": 5, "date": "2010-10-26", "text": "Thank God there were some Mesa firemen standing outside this place when I pulled up as my wife was very uneasy about exiting our car and heading in. Even trying to explain how fellow Yelpers loved it, did not ease her fears. After a unanimous \"Defnitely, it's awesome!\" amongst the three battlers of the flame in response to my \"Is this place worth going to?\", we parked the car and walked on in. This place is a definite hole in the wall (read: DUMP) and I/we LOVED it! Great chicken tacos, awesome machaca (shredded beef) burros, delicious chorizo and the tamales were equally spectacular (homemade of course). It's located in a somewhat dicey area of Phoenix, due west of the airport, but it's totally worth going to. It has become my new \"first stop\" after I get off the plane at Sky Harbor.....unless I land too late at night....", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "45V7-1r79DEG0HbuaKYIlg", "review_id": "XfPaOqHeGJP3WzoYmnoJsg", "stars": 3, "date": "2010-06-29", "text": "I've been here for a couple of happy hours.\nI agree with Charles R - no need to pay full price (especially as the regular prices are a bit hight) and it is better than Ra.\n\nDefinitely not the best sushi I've had in town, but the drinks are good (cucumber mojito!) and the place is set up well for happy hour groups.\n\nThe servers I have encountered are all VERY patient with people coming and going within the group and individual checks for everyone. Knowing what a pain that is, I really appreciate how willingly they do it.\n\nFor good sushi, I will stick with Yasu or Sakana. For happy hour, this is a great place - and the Tempe Marketplace location is convenient to several friends.", "type": "review", "business_id": "AhpzPZH3b0PGT9mVoLCQDg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "shkOSzUcN2hjIJpyufVS9w", "review_id": "LNoD7GlrYxBkp7nyXAFGSg", "stars": 5, "date": "2010-02-07", "text": "Have been here twice. Everything is excellent as far as food quality. It's pretty busy on most evenings and that can slow things down so if you think you might be in a hurry I would recommend something else. Service has been outstanding each time that I have been. The food is good and they have a reasonably diverse wine lists with mostly national wine offerings. The prime rib is superb. Most meals will cost in the range of 15-30 dollars depending on pairings and w/o drinks. Definitely worth it for a nice night out.", "type": "review", "business_id": "xMK01ZbVUYLLoyqoeWAIVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "HOleI3jz1MLNUJ6cc1x0Pw", "review_id": "NzP_jShz_tzqVsgusWBnMw", "stars": 4, "date": "2008-12-14", "text": "We finally went back to Merc Bar last Saturday night and as I suspected would happen, I liked the place a lot better when it was dark outside! My husband and I took my sister (who was in town for the weekend) to meet a few friends before dinner at Lola Tapas (review to come in a few minutes). \n\nWe were the first people in the bar, which was a little awkward at first but kind of nice, since we had a fancy, chic space all to ourselves! We all enjoyed our drinks, including my husband's and my dirty martinis. My only gripe was that they didn't come with the blue cheese olives mentioned on the menu already in them. Instead, the server brought them to our table and then asked if we wanted the olives. \n\nI still don't think I'd linger at Merc Bar for hours (unless I was drinking Red Bull drinks to stay awake!) because I find the vibe just a bit too underground for my tastes, but I will definitely be back for a pre or post dinner drink.", "type": "review", "business_id": "peA3F-PnIfijYr8HuG-A-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gN4JuiRC2sIssc1qijg4Zw", "review_id": "rzKXuufIy21v-1dWXAKMxg", "stars": 5, "date": "2011-10-17", "text": "Yeah, its BBB....what else to say?", "type": "review", "business_id": "rkGPf4cbyUJqHgKZPvaTnw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "yt6vljLIffAU4WW0-TQwBw", "review_id": "vXZPVW_hniBHrXNBkfkSng", "stars": 4, "date": "2008-03-05", "text": "This private little Persian eatery serves up some fresh, albeit traditional, fare along with a healthy dose of friendly service. The hummus was good full of nutty, lemony goodness but was overshadowed by the garlicky goodness of the eggplant dip. I called it baba-ghanouj but the owners insisted on eggplant dip. I sat at the bar and the service was prompt and polite except that the conversation was steered political by the owner, a direct violation of bar stool rules and a slight affront to myself ,a former barman. Who isn't talking politics these days? Any way, they did gouge me on a couple rum and cokes for my friend at $8 a pop. The beers were OK. This was strictly an AA meeting- alcohol and appetizers. Next, we tried the grape leaves, a straight-forward staple at places like this. We finished up with some tabbouleh and the special pickles which were really good dipped in the hummus. I will say we went on a Friday and it was dead, Pita Jungle was way busier in the same shopping center so the price range might be a little high for students. However the meeting went as planned and I left happy. Check it out then head over to the hookah bar across the parking lot.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gN03qFYysM5DbgjuV6N0QQ", "review_id": "DCkc2uApCQZVnx0abo0pmQ", "stars": 4, "date": "2012-04-24", "text": "An industrial-chic bungalow built just inside of the Coronado Historic District that showcases a loved downtown in an urban setting. The art and people are always beautiful.\n\nCappuccino, along with Caffe Latte are my two most common espresso drinks. This one today gets four shots of espresso. The cup is huge. The drink is excellent.", "type": "review", "business_id": "V5QdxePG-pGPXVPHSLLM9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xcbS2qrjsss00XkD2Nu5lQ", "review_id": "pSeLkSXRPlCU2t0LVSoBeQ", "stars": 2, "date": "2012-10-17", "text": "Maybe it's just me but this store is not up to par in my opinion. I always stop here to get money orders for rent on the way home from work and I almost always have to wait at the counter for 5 or more minutes while employees constantly yell \"someone will be right with you\" at me from all directions. The sandwich counter is good although it says sandwich in 3 minutes or its free and it always takes longer. (I never say anything because I don't care, I just don't see the point of the sign.) Their meat section is a joke lacking any real selection. The produce is almost always below my quality standards and is also lacking in selection. Last but most definitely not least they always have just one register open and no self checkout. Overall going there is a highly inconveniencing experience and I would not recommend going there for anything.", "type": "review", "business_id": "H2PQME3WxWwfCzpsYn_6CQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5hIcclyqd9yelg2BlsiXBg", "review_id": "Y8iaLpdDQLcB-ARXnHkiwg", "stars": 4, "date": "2011-09-02", "text": "We drive a little out of the way to go this target because it's clean and is surrounded but many other stores we frequent. It's usually pretty busy so plan to park a bit further than most.", "type": "review", "business_id": "7vviQbJwTqs8qXi-KwcXZA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "dSoRWIaoPIoPtjJTjlZA3Q", "stars": 3, "date": "2007-12-31", "text": "Dear Arizona Cardinals, \nCan you please get your crap together and win some games (similar to last night) so Phoenicians will like you and you can finally build a fan base? \n\nWhile I half-enjoyed watching you spank the St. Louis Rams yesterday in the last game of the season, while scoring the most points in a Cardinals game since the 1970s, you still suffer from mediocrity. Your win against the lowly Rams was hardly inspiring since that team completely sucks. AND FOR THE LOVE OF GOD, can you please beat the piece-of-crap 49ers?!?!\n\nYou remind me of a nouveau riche socialite with no manners. You have a beautiful expensive abode, but still seem like you're from the wrong side of the tracks. Please tell your owners to stop being so cheap, beef up your roster, spend a little dough and take some risks and the ever-elusive glory years might be around the corner.\n\nLast night, a jaded and cynical fan of yours told my friends (in Rams jerseys) in the parking lot, \"Thanks for sucking today. WE usually suck and all, but your team was much worse.\"\n\nFunny and defeatist attitude, but what do you expect? I'll be here waiting, cheering and hoping. There's always next season. \n\nFive stars for trying.\nOne star for the crappy ownership.", "type": "review", "business_id": "L0R3081GwxRcP98BZ1K9qA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HV9LHnhcpKerGqmLk0MpAw", "review_id": "MKfOknBE7-porNVF10TEjQ", "stars": 4, "date": "2011-08-29", "text": "My date and I started in the basement which was super cozy. While waiting, we were distracted by the amazing aroma of food surrounding us from other tables. Once we sat down, we could NOT make a decision about what to order--everything looked so good. Our server was very helpful in aiding us with picking appropriate sized plates (we were starving and nervous we wouldn't have enough haha). We left with a to go box and no room for dessert! Loved it. Can't wait to go back. GREAT date night spot. But we prepared to wait and have a drink, this place is busy for good reason.", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LJPvRgTZWHlwpaYBauOOkw", "review_id": "_ykINlaDRF8GHkcCT6aEQw", "stars": 3, "date": "2010-01-15", "text": "i don't understand the hype. it's very typical american chinese food. tried the bourbon chicken and it was nothing special - tasted very teriyaki.", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tV-CHD0zlQqea54XuogRwg", "review_id": "7ZrirtO2rOCR8aHNIU6SfA", "stars": 5, "date": "2010-09-19", "text": "Great place for a \"home office\" morning. One of my favorite places - indoor & outdoor seating. Always busy - they offer breakfast & lunch, their food is awesome! Very generous portions.", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "OMC3DRyGrDbq-oMtdRAH8Q", "review_id": "1lexg_nW3LboIAXNxQGvfg", "stars": 2, "date": "2010-07-31", "text": "The place has a nice little vibe going on and they have some unique items but the reason the rating is so low is that there really aren't a lot of options that don't involve faux meat. Aren't these people vegan? Don't they hate the idea of poor little animals being our food (even though that is the only reason they are alive)? Then why so much FAKE MEAT?! \n\nI will never understand the meat envy vegans and vegetarians have. I go to a place like this to get a dish that uses vegetables in more creative ways, not to get some overly processed soy products that aren't nearly as healthy as fresh lean meats like chicken and fish. FYI, I love meat but every once in a while I like to grab a vegetarian dish. \n\nAnother negative is nearly everything is fried. Guess they bust the myth that people are vegan because it is healthier. Frying things is the cheap way out of actually creating a healthy AND tasty meal. \n\nI'll give them a 2.5 star because what we chose was quite tasty. But with nearly every option involving faux meat and tofu it really is a disappointment. If you want legitimate vegan fare try out some indian places or Ethiopian places. They are very creative and using spices to flavor a vegetable dish. The fake cheeses and meats are for Vegans with meat envy, not for Omnivores that just want a good meal. Keep your expectations in check and you should be okay.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ri8jeh5ZmDF6bXl6Wqshww", "review_id": "NJnVzl4YheuTACw1APNbQw", "stars": 3, "date": "2009-07-10", "text": "Not bad, but definitely not my first choice. If I were to eat pizza in the restaurant, then this is a good choice. But there are better choices for take-home pizza.", "type": "review", "business_id": "kN8792XEJfCtpD5GJLmI6g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "aPUQy6B0y67nYr8GJ7ZYyw", "stars": 3, "date": "2012-09-09", "text": "I really try to like Old Town Scottsdale - and if you look past all the God-Awful tourist traps it is actually quite a nice place with a number of top notch dining options - but in the end you can only walk by so many mass-produced \"native\" jewelry shops with \"Bargains\" before it all starts blending together. Parking is generally a travesty but can be found if you're willing to wait it out and the public art is a nice touch. For my dollar - go, grab a spot, and kill some time at Cartel, grab some local foods at Bodega, and maybe consider a bite at one of the locally owned restaurants like FnB or Praying Monk, and skip any place with turquoise jewelry in the window while focusing on the galleries that don't quite seem to fit the 'theme.'", "type": "review", "business_id": "4gIV5MYpCDbNI-bL3g_tSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z77ENOCa0H4ABIDZMzNWoQ", "review_id": "NfOqF3wMyah5w3RkiXfuVg", "stars": 5, "date": "2012-11-06", "text": "Best gyro in town! We go for the lunch special during the work week quite often. I havent been for dinner but if its half as good as their lunch gyro then you wont be disappointed. Service is great and they always take good care of us.", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7UoXfjSqe4ZE1eStdeoziw", "review_id": "HhQIKxm_0gJjuQHDm9PZWg", "stars": 4, "date": "2011-01-23", "text": "This is a great place to take your time and enjoy someones company.\nThe food is fresh and the service always friendly.\nIf you are looking to be fed fast this is not the place to go.\nFondue is fun!\nIf you have the time and the money this is a place to have a great evening.", "type": "review", "business_id": "FOfhEC6rN23RQaUlsR2byw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "7wPcbtQeZ0ZXdpe_oBYP6Q", "review_id": "w-RLEibd3-pkEXPCE65J-g", "stars": 1, "date": "2012-07-07", "text": "This is the worst Pizza Hut I have ever been to. I was up-charged for something I didn't order. When I asked for it to be corrected it was done wrong again, given the wrong change and had the drive thru door slammed in my face. Asked to speak to the manager and he was extremely hostile. He took my change, receipt and food. After some time I asked for a refund and was told that wasn't possible, too much paperwork. Asked for his supervisors number and was told he was the highest manager, there was no one above him. Right. \n\nI went to the next Pizza Hut and asked for the regional manager number. I left the food at the restaurant because I was no comfortable eating it after he took it back to correct their mistake. Not sure what could have been done to it.\n\nThe young girl at the window did get it wrong twice, but the example the store manager gives is piss poor and is the issue. I hope Pizza Hut sees who they have working for them and speaking on their behalf because according to this store manager, Tim, he's the owner and CEO of the company. I highly doubt that.", "type": "review", "business_id": "FKlr2XmPA7G5MlMFpka1OQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aRUSXJd_DxBARNBnaCUinA", "review_id": "tpsKFXtsdI3GOARLl4gtCA", "stars": 5, "date": "2012-04-30", "text": "I love scallops, and the scallops at The Breadfruit were simply the best. On the weekend, The Breadfruit is open till 11pm and its Rum Bar is open till midnight, which makes this a great late-night haunt: pick your favorite rum drink and share a scallop appetizer for the perfect lite end to the evening. The servers were excellent and handled my gluten allergy easily, offering suggestions and slight modifications to the dishes. The Breadfruit is located at 108 East Pierce, which is south of Roosevelt and just east of First Street. Put this place as a must on your late-night hit list.", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "Ql85TevtaKwKoLXUcnxwMg", "stars": 3, "date": "2012-07-02", "text": "Lucky Strike strikes the wrong chord with me. I've been here to this location four times. I have been to another location out of state on a couple occasions, as well.\n\nSince my first visit, the bartending staff has improved LEAGUES. The women working at the bar last Friday night were actually personable and friendly. That is saying something, as in the past the people working at the bar were... to put it nicely... AWFUL PEOPLE. \n\nIt's a great CONCEPT, but it just doesn't impress me. The food is hit or miss, but it is usually miss. Some food that comes out of their kitchen is just awful. They don't ever seem to have drink specials... at least when I've gone. The bowling is pretty expensive compared to Brunswick Zone and... honestly... I prefer Brunswick. \n\nIf it was up to me, I would avoid Lucky Strike altogether. Sure, it has a nice downtown location. Still, there are so many better places to spend my hard earned money downtown.", "type": "review", "business_id": "_OYlq2UoKPQO_ElqhC3a8w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "Wbrbk9iKudbQ3sO7P3-MIA", "review_id": "ru0CWx893qVvzMxot2lrEw", "stars": 5, "date": "2011-03-25", "text": "This place hits everything on my \"it's Awesome\" list. \nFirst off it's a family run little place.\nSecond it's in a hole in the wall area.\nThirdly and most importantly it is all made in house. \nFourtherly it is awesome\n\nWe were in Gilbert staying at a friend's house for spring training, GO DODGERS!!! We hit the usuals, Waffle House, Dunkin Donuts, Dodger Dogs at the game, and our friends asked do you like sandwiches?\nIf there is one food group that I love, it has to be the Sandwich group, and \nthis place is one of my top 5 sandwiches stops of all time.\n\nWe ate in the Lounge(y)(ie) area, which has a more adult vibe going on. We first started with their fresh bread, and tomato basalmic vinegar salsa(y) thing. Which was great, we had two rounds of that while we drank our beverages, and waited on our sandwiches.\n\nI ordered the Cuban sandwich with the potato salad, and the wife ordered the Chicken breast sandwich, with pasta salad. My sandwich came out perfectly, from the fresh Ciabatta Bread to the outstanding roasted pork. \n\nI would order this pork just by itself; it was juicy, and full of flavor, just like my Cuban grandmother makes. While this sandwich is a true Cuban sandwich, not using swiss, and not being pressed, it is not advertised as an actual Cuban, just a Cuban style, like me.\n\nNow this potato salad was some of the best I have ever had, and not just because it had bacon, which is awesome, but the use of yukon gold potatoes, instead of red, or russets has been a revelation to me. This is how I am going to prepare all off my potato salads from now on.\n\nAfter all that I still ordered the carrot cake, which like everything else is made in house with local ingredients, it was warm with a not overly sweet cream cheese frosting. The wife got the lava cake with some beer ice cream. Even though I ate most of my carrot cake, and loved it, I wish I had a full gallon of that beer ice cream, it was just perfect. In fact I am planning another trip out that way, just for that ice cream.", "type": "review", "business_id": "TuuENwzxOFdDLY_oKCbFZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HP_xZYNC5XK-VyNrnHbtRQ", "review_id": "t5si-DF6_eAhAoQ86ECnCQ", "stars": 3, "date": "2008-06-03", "text": "I prefer this location of Sephora over the Scottsdale location. The Chandler location is less busy and more spacious than the Scotts location.\n When I first started going to this location I thought it was great because the staff was way more helpful and willing to give out samples. I am now finding the staff to be a bit annoying. They are great, but everytime I look at something they come over and ask a lot of questions or try and steer me to buy a particular product. It gets a little annoying to have the Bare Escentuals Smokey Eyes pointed out at least three times every time I'm in the store. \n\nAll and all I love Sephora no matter what location! It's heaven on earth for most of us gals. Yes the products are pricey, but they are quality products you can't get at the drugstore.\n\nHmmm, this review must sound confusing. Here I am saying I prefer this location, but then complain about how overly eager the employees are. This location isn't as snooty as the Scottsdale location and the employees are friendlier.", "type": "review", "business_id": "Ng2XtElHAKGSRIFeOm7Qjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WIGMEKQR1ZDacOewftwudw", "review_id": "lbev1tJnCRVlJKPB4nv3XA", "stars": 5, "date": "2011-11-12", "text": "My husband and I chose Binkleys for our 5th anniversary dinner. We don't usually spend that much on a meal, but for a special occasion we decided to splurge, and we are soooo glad we did. We decided to do the 4 course tasting meal, and with the many amuse bouche's throughout the meal we left so full, I couldn't even finish my wonderful seared foie gras. The atmosphere was cosy and inviting, the wait staff friendly and helpful. The three hours we spent enjoying our meal was well spent. We would both like to revisit and enjoy another taste adventure with this lovely resturant.", "type": "review", "business_id": "yJMLD-6AggZNdC-GonVBsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "W_btQo0V4ZaBeybpq5dG5Q", "review_id": "RRuFm986Dt0W3LU5fS9gqA", "stars": 4, "date": "2012-10-10", "text": "This restaurant is truely cultural experience in your mouth---Chinese, Mexican with a dash of Jamaican. Pollo Diablo is fab! Mom and Pop place with some true TLC that goes into the food. The beer and wine was a good selection as well! \n\nWay to Go!", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A1yGtQzSfctsJJE1lyPbDQ", "review_id": "DTtmsHMzqIOEvW6Ael3EWg", "stars": 5, "date": "2010-02-22", "text": "They have a mechanical bull. Need I say more?", "type": "review", "business_id": "C_eWAEOvkHZ_IZYGwjtpmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zHgmWv6NbwZepUSqA_FlLw", "review_id": "tHgYxfp9J9g-0jDrnkHM7w", "stars": 4, "date": "2011-11-13", "text": "one of the best chinese food here in phoenix. you have to tell them to use less salt. because often times, the food just a bit too salty. other than that. it has great selection for Szechwan style food.", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "P1wCYSXNkSQ4_CXlinSI1Q", "review_id": "JSs0RJEevtPp7U9ZWM2C3w", "stars": 5, "date": "2012-06-24", "text": "Probably the most serious restaurant for food in Scottsdale. Great attention to detail from the chefs, management and servers. Shin does warm up after a few visits - we've been there probably 10 times in the last 18 months. ShinBay is a must for anyone truly into food. Given the ingredients - both the sheer number of them and the overall quality I would actually call the pricing here a downright bargain.", "type": "review", "business_id": "8HheTzFpxkOlfFxJy-sIMw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "BNVJSJmcW-1Ja7l1sLjMcA", "stars": 5, "date": "2009-12-14", "text": "I've been a patient of PFD for a few years, recommended by a friend, and have always been happy with the attention I've gotten. I actually go to the Gilbert location now, but I have been to the Tempe office once and had a good experience there. \n\nIt's a family owned business, I think they've been around for 30 years. They have always been pleasant and honest when talking teeth. I wanted to mention my hygienist specifically, Jackie. She is super nice, calm and gentle, which is important to me since I don't particularly like going to the dentist. \n\nCheck them out if you're in the market for a dentist.", "type": "review", "business_id": "6n_YkYKnr5clOlVZ5Kerxw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ipyAEX4PQ_kY1TIcLbPKJQ", "review_id": "fMiJwWvc-LOS-JU1zr4sug", "stars": 3, "date": "2012-04-29", "text": "Moved here from San Francisco, and have been searching for decent Chinese food. Flo's has been our standby, but we tried Jade Palace on recommendations of our midwestern snowbird friends. I can only comment on the food, as we ordered take out. Our order was ready in 15 minutes and it was complete. I had Chow Fun, and it was the equivalent to Flo's, Ok, but not spectacular, and a lot more oily. Husband had Mongolian Beef and said that Flo's was better, but the meat tasted fresher on the Jade Palace version. Jade Palace is much closer to us, so I will try their Hot and Sour soup in the fall, which is usually the barometer I use to measure Chinese Food. Go figure, we are now hoping for some San Francisco restaurants to relocate to Scottsdale.", "type": "review", "business_id": "stH6XAn2Drzol1H5oGvL2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "19BunjXk7zhd811rF42U7w", "review_id": "3dxhoEVRL5h7A-oix6e0Og", "stars": 3, "date": "2010-06-29", "text": "We made the trek down from northern phoenix to get some authentic ramen. I wanted to love this place and I wanted it to be worth the trip, but it just wasn't. The decor is as previously described - you sort of time warp back to the 80's but it is clean and well loved by its owner. They do have a lot of authentic menu items and a great kids meal, but the ramen was just not that good. Its downfall was the broth. Hubby got the salmon chirashi which was also not that fresh. If I'm in the area, I may give it another try for the don-buris.", "type": "review", "business_id": "BBPkwpj9kSeDuy0uOwWHJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1usJIBBfZRJ39bocPG7HWQ", "review_id": "QQNpBoelqU5mUJjfR_p0Ng", "stars": 5, "date": "2009-07-22", "text": "i love the army, but they make me wake up wicked early. then i work, work, work and when lunch rolls around, me want tasty goodness FAST. mamma mia's is the solution.\n\ni got their 2 slice deal, mushrooms. this cost me $4...that alone makes it rockstar, but you have to ask yourself...does it get any better?! oh yes, it does!!! the crust was crunchy, the cheese ooey-gooey and the mushrooms PLENTIFUL, which made me disgustingly happy. i think pizza places never put enuf mushrooms...today, i met my match.\n\nthe joint is hoppin, but they still manage to get you out in about 10 minutes. plus, you get to stare at frank sinatra while you wait (young, cute blue eyes, not the older, less attractive version) and listen to the tv blaring. and if you are me, the QUEEN of movie trivia, you enjoy your wait as a time to school co-workers in \"the Game\" while you wait for your AWESOME slices.\n\nmoral of the story, go, young ones and enjoy. the food is plentiful and cheap, atmosphere friendly but small. its easy to miss...KEEP YOUR EYES PEELED!!!", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FktbKOzznpoKTNXMVtc8EA", "review_id": "yBAF101ILQmQPD9oiWtDtw", "stars": 4, "date": "2011-03-18", "text": "Oh, the hours I wasted at the big chains looking for an affordable framing option for this big print. Hours from my short life I'll never get back. Hours I could've been caring for the sick or spreading global warming awareness. OK, for sure I know I missed at least one Happy Hour because I waited to check Yelp which directed me to Paradise Framing. They were very helpful showing me different options in my budget, and making sure the frame and matting all coordinated with the print well. Price was very fair, and they did quick, quality work. Next time I'm going to Paradise Framing, then straight to Happy Hour - um, social work.", "type": "review", "business_id": "Bt5XCquMuBAyCe9Gx_sLxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zqnAdayPsak5dbLF2gEvNw", "review_id": "G_aqfhfRok1lmH4jLCfcZw", "stars": 4, "date": "2011-04-04", "text": "As an Irish lass thru and thru, the promise of a cool Irish pub to get some grub and frosty guiness was enticing...and it delivered! The food was great, our server was excellent, and they were able to accomodate our group of about 15 walkins without blinking an eye on a saturday evening (bonus points for that). Their patio is really nice, lots of flowers and greenery and high stone walls that make you feel like you're in more of a garden than just off Mill Ave.\n\nOverall, great place to head with friends!", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "NblWgLKOm2Pf-mE_zFp4NQ", "review_id": "tfn7-YBp-lTDjuCdL7-K0Q", "stars": 5, "date": "2012-05-10", "text": "Great Great Great salon!! They offer all sorts of services and Karyn, one of the nail techs is amazing! I'm a little obsessive with perfection when it comes to my nails and she does an absolute perfect job! Pays so much attention to detail! She is always creative and can make designs if you wish. She has many many color options. I would recommend EVERYONE to her and this salon!! Plus they won Best Salon in the East Valley!", "type": "review", "business_id": "p9vPvx795VrVfwYv1IXicg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u4MQp3zX9RolLtNnp9FxoA", "review_id": "qIU2gO1Fq59gn7gCjVG0Sg", "stars": 4, "date": "2011-12-30", "text": "Dined here last week and they have all sorts of foods and everything is ala carte; the place is a great place for all ages and their kiddie meals suit my boys perfectly. They mostly serve rice and their menu is also suitable for vegetarians since they offer a wide variety of choices. You will also feel that you really belong to the place since the staff is helpful and friendly.\n\nSo there!", "type": "review", "business_id": "Dz7swOgFook-L89Y_M-aQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Fnz7m3FV-gV16u6_Hi6x-g", "review_id": "ygSkp6jNILWPtLwVL8hwWQ", "stars": 3, "date": "2012-09-25", "text": "Pretty nice for an airport bar. Just had a bloody mary, but the food looked good.", "type": "review", "business_id": "8SjO3b-87uN2jXVXYNn47g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "NYzUTIPzT-lsmhb4npRmVg", "review_id": "Ce8SVhVLZFYMr38u3gME0A", "stars": 5, "date": "2011-10-31", "text": "The grooming salon at this location does an amazing job with pets. Yesterday was the 2nd time my baby was groomed here by Chip. I hope I spelled his name correctly, he's just wonderful. He's very patient and very kind with my Sushi-poo and I'm comfortable leaving him in Chip's hands.", "type": "review", "business_id": "CCNwvFbC6QjJ0RN7l3Zh9w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Rbi4j9y8Jqf3B4lBEnuJ0A", "review_id": "cfLb8ez4emSQn1krz-WE2Q", "stars": 5, "date": "2012-08-13", "text": "Been here a few times, and each time it it's the best Thai food I have had in Az. Service has been consistently great. Has a full bar with some good specialty drinks that sometimes take some time to make but are worth the wait. Lots of mid day food and drink specials. I've tried six dishes here every one has been excellent. Portion sizes are about on par with the average of the many Thai restaurants I've tried in the east valley, while menu prices are below the average. I think Thai Spices offers a good value for some great food and drink and I can't wait to come back.", "type": "review", "business_id": "shCdCHRbnY5FTMJbWl-myQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3EyjZYtNuzA0YY-2sDULoQ", "review_id": "lVLdYZo9ah777VfKCmx1Vg", "stars": 4, "date": "2012-04-15", "text": "great food, freaky good service, fantastic atmosphere. Highly recommend sitting on patio, inside looked a bit loud. Patio is fantastic, it is one of a few in Phoenix where it doesn't overlook a parking lot. This is my new favorite place to take visitors.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "zKv-aIQo2zuXS6XmPpV6vA", "review_id": "eUAzJjcKgZ-_zNeNZkA2fQ", "stars": 1, "date": "2010-06-23", "text": "I'm convinced that anyone giving this airline more than one star is most likely associated with them and is concerned about their job. I've been flying with them for 7 years back to NC to see my aging mother. I fly 3X/year on the same flights. The service and attitude of the employees has been getting progressively worse. I am also a pilot (20) years and I understand the weather and air traffic control VERY well! This rant is not about operations, security or delays. It is about the customer service by pissed off employees. My wife said that if she was not with me on my last trip she would not have believed what happened. I forgot to purchase my own bottle of water before getting on the plane in Charlotte. The beverage service was 2 hours into the flight! This old, cranky b#$%^ came by and said, \"what do you want?\" I said I would like to have a soda and a water. She said you can only have one or the other. I was so thirsty I asked for the water. It was a very small glass that I drank very fast and then ask for a refill...please! She said, \"I told you that you could only have one\" and pushed the cart away. Even the people around me were in shock. The check in personal were equally as rude. If you are watching the internet news, there was an article a few weeks back that rated customer satisfaction and US Airways was at the bottom! I for one will never fly with them again.", "type": "review", "business_id": "5M7YgorCUTEZkKYNbKDHTA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "BfByK8hlWDtlNmJ1G1nCeg", "review_id": "cw2pJw7eSRY6BNN1D200Gw", "stars": 4, "date": "2010-02-21", "text": "Although a huge fan of bloody food. I have to say, Green is really damn good. As a former cook at Spiral Diner, I always checked out veg joints in other states, and rarely liked any of it. Green is great. even the faux meat dishes, which are usually the least impressive. Keep up the good work.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "XstxrbfNYkJ3CPQAgkNdbA", "review_id": "u1SBI-7UUDyOEyRr3Q1RcA", "stars": 4, "date": "2012-12-05", "text": "short, fairly easy hike but not well labelled/marked! i went with a friend who had been before so that's how i knew which way to go. even then, we both got lost trying to find the parking lot! easy parking in the zoo parking lot - you can see the \"hole in the rock\" from there so just park on that end of the lot. just a short walk down a paved road then some light terrain up the hill. not a hard hike - i did it in flat sandals. great photo ops at the top! \n\nwe went on a weekday so there were very few people around but my friend says it gets crowded on weekdays. also, no water fountains and bathrooms in sight so take care of all that before you go!", "type": "review", "business_id": "NXsw4z0AtaILgS4-UxSWUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6_6WFq59E_L0wyI-uVzR_w", "review_id": "c_xnCvJYi1AEiEKYQ61_CA", "stars": 4, "date": "2012-05-04", "text": "Their pizza needs to be in your mouth. BUTTERY crust. Like, butter buttery. And it's superb reheated at home in the toaster oven.", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e44rUPb0ne7hcmEo6MzRGg", "review_id": "XAn905drvC2_HqidEDQL1g", "stars": 5, "date": "2009-12-30", "text": "i've been eating at bison witches for 7 years now. i started in tucson when i went to UA, and even though this one is on ASUs campus, i'll go because the food is that good.\ni almost always get the soup and sandwhich combo - the sundevil (in tucson its the wildcat) and the cream of brocolli soup. yummm!! they give you plenty of soup in a bread bowl, and if you're like me and like to dip, they give you the top of the bread bowl that they cut off. they also give you the insides of the bread bowl too! as everyone else has said, the sandwhiches are huge!! you could order just half a sandwhich and be good, but you would be missing out on some deliciousness. and you get all this food for just $7.75 (when i first started eating here, it was only $6.50, which was perfect for the poor college kid).\ni've also had their chicken cheese nachos, which is a cafeteria tray filled with tortilla chips, covered in lettuce, tomatoes, queso and cubes of chicken. it's an appetizer, but could definitely serve as a meal for 2.\nalso tasty their chili and chili con queso. yummm....", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "_M9HND5qGT7khQlf4LO1VQ", "stars": 2, "date": "2011-03-27", "text": "Slow service inside. Somewhat rude cashier, and for no reason. Small and awkward layout inside, especially for the limited seating and limited standing area to take an order. Sub-par as far as McDonalds go.", "type": "review", "business_id": "RIPM5kJ6xHvIu6umgOrg4A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "wVuavblHM0NixaJKtpSdng", "review_id": "2rr2y4udoXpYM1_qixOd6g", "stars": 5, "date": "2012-11-16", "text": "Best Subway anywhere. Super-friendly staff and always really clean!", "type": "review", "business_id": "9lWwAw9u1IVlYKbGiVOTFg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "nKaR5Z9Qmqc4RsakLLX_7w", "review_id": "gNkRwANi988LVe2BuyFRSg", "stars": 3, "date": "2010-03-29", "text": "Despite the nice layout, design, and store variety of the City Center, I was still heartily disappointed. Some friends and I were merely trying to find a parking spot to do some shopping and things of the sort when we were notified that it was going to cost us a hefty $30 to park in a MALL parking lot. Outrageous. Turns out the WWE was in town and I guess they wanted to get some extra cash out of the mullet sporting, dentally challenged fans of Wrestlemania. Cool I guess, but not for us that were just trying to buy some swag. They offered some sort of validation system to reclaim some of the $30 coughed up, but it all seemed more than shifty in nature so we decided to park elsewhere. \n\nEverything else about this nice outdoor shopping center is exceptional. So waddya say Westgate? Create a better system for those of us not there for the events at the stadium across the way?", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "J-oVr0th2Y7ltPPOwy0Z8Q", "review_id": "ZSpm2s9LjmX7IeGwT_fYYg", "stars": 4, "date": "2011-03-13", "text": "Since I was in AZ area for the weekend with my gf for pleasure we decided to visit one of my friends in the area. She picked this place and we decided to get seafood instead of steak or a meat house. \n\nFirst of all, I'd suggest making reservations otherwise DO NOT COME HERE. We showed up at 7pm but weren't seated until 845. Good thing we ate a really good lunch otherwise I'd be starving and complaining like a baby. At least this gave us time to have a few drinks before dinner in the LARGE outdoor waiting patio area. I think it was so crowded because it was the weekend before Fat Tuesday. This place kinda reminds me of Bubba Gump or something similar. It seems fun and they do have a large bar and waiting area. \n\nWe ordered alligator and frog legs as an appetizer. LOVED IT!!! We wanted the fried alligator and frog legs but the waiter absolutely loved that he worked here and HIGHLY recommended that we order it grilled instead. Since he worked here, we figured why not? I was thinking to myself that the cooks were a bit lazy and maybe they didn't want to prepare it. Lol. To my surprise, it was good as he mentioned. I have had both before but not for a few years so I was pleased. My gf ordered the crab stuffed shrimp which was really good. I ordered a combination seafood plate which was good but not great. \n\nThere are way too many things to order on the menu. A lot of fried food so if you are trying to watch your diet/weight then don't come here. \n\nI would definitely come here again but I wouldn't be in any rush. Great for a lot of people and groups, but PLEASE make RESERVATIONS.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "TEU4ukNSSt_KRLuvTuQfxQ", "stars": 4, "date": "2010-07-01", "text": "Yummy pancakes made from special house batter were perfectly golden, light/airy & spongy in texture, and had a subtle maple flavor even without the addition of their syrup. Pancakes are their flagship breakfast entree, though you can choose from the many other items including omelettes, french toast, or the common 2-egg with sides combos.\n\nThis place has a local owner with a family member as the chef named Dean that is admired by most patrons. Oh, and he's the one who makes the delicious pancakes of course. Atmosphere is clean, sterile, and almost like an old hospital cafeteria from decades ago (notice the operating room blue colored booths). \n\nPatrons are almost exclusively senior citizens and the feel is relaxed, comfortable, and really is a throwback to casual breakfast spots were in the past. Location is on the north side of Peoria just before 99th ave., not far west of the 101. It's an older strip mall with ample parking, but down't be thrown off by the modest exterior (restaurant is to the far right when you enter the lot).\n\nI really like this place because of the overall vibe, friendly service, and pancakes. It's also a nice getaway from Millennials.", "type": "review", "business_id": "cyxnQ6EocFbAENe7nRwx4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fwIXyM_7HFRfkVQMne79AA", "review_id": "PxyFVZk5HUOT-gZYXa6ZWw", "stars": 4, "date": "2012-03-07", "text": "Good mongolian bbq - more variety than most. They have some good sauces - Try the mongo bbq or dragon chili.", "type": "review", "business_id": "pzPbg_B2uSVJ72LIa2G3sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U0FGGImk_WXy4WBj2w3BMQ", "review_id": "vfpAzHSC1z3Ep6rRP4qyQA", "stars": 4, "date": "2012-03-28", "text": "I VERY much enjoy this place. The Duck sandwich has changed my life. The brick oven gives the pizza a natural, full flavor, homemade style taste that makes you slow down and enjoy every bite! The atmosphere, the set up, and the bar is all very welcoming and very clean. Hard to spot when you are driving down the road. i have been there about 10 times and i still pass it up sometimes. Parking is not the best, and valet is not really needed, but they very much have top shelf alcohol and delicious food to boot. Not extremely expensive either, but pricey enough to make you count your bills before you enter just so you will have enough. Great place!", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 9, "useful": 9, "cool": 7}, "user_id": "kgyv3ctYEZ0ACslpoakunw", "review_id": "_I0culabBdIRjyOVYyELjQ", "stars": 3, "date": "2008-06-15", "text": "Oh Chelsea's your a tricky little spot, you have tasty tuna tacos (by far the best fish taco I've had in phoenix) but that little tuna delight cost 18$ which is no big thang except that I work within walking distance of the place and 18$ for a lunch taco dish is straight baller status. The outside patio is great and the service is what it is, Its a good corporate lunch spot but stay away when it comes to dinner, its kinda boring, OH YEAH IF YOU DRIVE BY THIS PLACE THEY PUT SOME CRAZY TASTY SMELLS IN THE AIR SO BE STRONG AND KEEP DRIVING YOUR WALLET WILL THANK YOU.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "px4MMlH7Fpr9XtCnC2wnag", "review_id": "M6hKh0pO9fXHK7gQZBQWQg", "stars": 1, "date": "2011-11-28", "text": "Our family made the mistake of dining here on Thanksgiving. Everything from the table to the food to the clueless and absent waiter was outright below average and certainly no where near the kind of restaurant described in the other reviews (which I wonder now if were written by the owner or manager). What a disappointing holiday.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 3, "useful": 4, "cool": 1}, "user_id": "GRgBu4K7GOb3354esp_xkg", "review_id": "ewd-GXTUEC5yaOndM0_sgw", "stars": 4, "date": "2012-04-20", "text": "So i'm not here to buy spices or shop for sheesha, i'm here for food. Lots and lots of food. Luckily for me, Haji-Baba is known for tons of food at decent prices so I have a promising evening of stuffing my face without breaking my wallet. God, I sound like a really cheap buffet commercial.\n\nBut really, to be truthfully, super blunt, honest-to-go-honest truth, Haji-Baba's food is not the best in the world but it is 1) fresh, 2) good quality, 3) tasty and 4) cheap. I am sure you can find better Mediterranean food around town, but this place is really good on your wallet and fits my needs just right. And hey, 215 reviews can't be lying. THE PEOPLE LIKE IT. They like it a lot.\n\nI ordered the gyro deluxe (gyro with raw onions and feta cheese), a side order of hummus, Babaganoush (eggplant dip), tried my friends lamb tongue and a pistachio baklava. \n\nIf you are feeling adventurous and want to try the lamb tongue, lemme tell you: don't. Really, don't. There is nothing tasty about lamb tongue. It tastes slightly like roast beef but the texture resembles congealed liver patee and the big chunks are really scary. The only positive about eating tongue? Infinite pun jokes about talking about it forever. Get it?\n\nThe gyro meat was pretty standard in the Gyro deluxe sandwich, the best thing about it was the creamy fresh salty feta cheese. Its the freshest i've ever had and they really DO slap it on that sandwich, like a boss. The babaganoush was also very very tasty with the pickle and the black olive- however- i would have liked bigger pieces of roasted eggplant than a hummus-like texture. The hummus was just A-OK, it needed more of a PUNCH of flavor. Last but not least, the baklava is my favorite dessert in all the land.. so obviously I enjoyed it. Heavy on the honey and not very crispy on the nuts, but pretty decent nonetheless.\n\nIn conclusion, only use the tongue in your mouth and not the one on the menu, get as much feta cheese as your body can process and buy a desert to-go. BAM, lunch is served.", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "GVe0Qsu3RLB0kDeB8q7tiw", "stars": 3, "date": "2010-07-23", "text": "Hula's seems pretty hyped.\n\nI had drinks here that were OK.\n\nI had food here that was OK.\n\nI'll try it again and get an entree, but I'll not likely go out of my way to make it here.", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0JAWkA4Cj67HKKfPrJpLnQ", "review_id": "iPi8IbpRHftLWsyUDxPVjg", "stars": 4, "date": "2012-02-15", "text": "Eaten here a few times. Just finished lunch and had a great salad & sandwich. The salad I had was the spinach with poached egg, it was awesome. My taste is for savory, \"umami\", this was perfect with the egg bacon and light dressing. The chicken sandwich was good with basil and brie. Then the creme brulee with tahitian vanilla was great. Just a nice quaint place to sit outside and have a good lunch. One problem I have with Zinc Bistro is that they have Stella on tap, great right? But for $7! That's one for $7. Come on, maybe $4. I just bought 12 for $10 at Total Wine.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3-gd5DJZnpIulyFZ0HZCPw", "review_id": "-25WDU5N0llmCjjcqsisqQ", "stars": 3, "date": "2010-11-14", "text": "Gallo Blanco Cafe has amazing food, however the service needs a lot of help. My first visit was one of the worst customer service nightmares I've ever had dining out. My second visit was much better, however I think our waiter must have been high on drugs. During my second visit my friend and I ordered the fried manchego cheese appetizer and it arrived after our main entree. Really??? I wish this place would get it's act together. I'm very fearful in recommending Gallo to my friends and clients. I've vowed to give Gallo one more shot and if it's not at least a good experience, I won't be back. I work too hard for my money to throw it away in an establishment I don't believe in.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yp90PduP1gD7kgCLWuQg4w", "review_id": "lpshBxq2HP7w5r3PZsbMAw", "stars": 4, "date": "2011-06-21", "text": "I came here on Friday with a dire craving for Soba Noodles. I have never had Soba Noodles, before and I have been yearning it since watching a rerun of Iron Chef Japan the other night. Upon glancing over the menu I decided to order Shrimp Tempura Soba, $6.95 a Squid Salad $3 and bought a soda. All of which came to $15 bucks with tip. Not a bad deal at all IMO. \nI began with the Squid Salad. A more than generous portion of Squid I thought for the price. It was cooked and marinated quite nicely. Next up, the main dish. The Tempura came on the side as 2 Shrimp Tempura and a piece of Carrot Tempura. The Tempura batter was actually quite nice, no complaints there. Now for the Soba. It came in a huge piping hot bowl. The broth was very clean, fresh, and enjoyable. The Soba Noodles tasted good I thought. I can't give a comparison to other Soba Noodles though, so I don't know if they were great of terrible as far as Soba is concerned, but I had no complaints. This is one of those things where I have to try numerous Soba Noodles to make a valid argument. But as far as I'm concerned it didn't disappoint. The one odd thing I thought though was that I did not see one Japanese employee in there. Kind of quirky, but oh well. This is a solid meal at a good value.", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2fV_aUYoiXFfBMyc3Zx0Xw", "review_id": "bWqZoZh-mNETpqZU5vP2lw", "stars": 3, "date": "2010-12-29", "text": "Meh... I am surprised to read all the reviews about the clean store everyone else wrote about. In my experience, the toppings area looked like it had all merged to become one big nest. There were also speckles and swipes of fro-yo in all places imaginable... floor, counters, scale... And, I wanted to try a couple flavors, but there was no one around to help. Also, the checkout lady was soooooo dreary! With her monotone listlessness, she made me feel as depressed as Sylvia Plath! (just kidding, but she couldn't have been more doldrums if she tried)\n\nI usually go to Yogurtology at Town & Country mall (on Camelback just east of the 51). That place is always amazing... Pristine clean, neat, organized, always a peppy guy by the machines with little sampler cups, a guy who had one too many Red Bulls and is nearly throwing at least one sample of every single flavor at every single person who walks in the door, with a funny, witty little quip and a great personality and WAY too damn much energy. But it's nice.\n\nTHAT is what I had in mind when I discovered THIS place. I was excited. It was so much nearer to my house... great location (stupid layout though, prone to human traffic jams).\n\nI really, really want to like Yogurtland, but I just can't talk myself into it. The fro-yo was good (aside from the fact that I had trouble getting toppings without being too grossed out since it was a mess), but that was about it. All in all, they're lucky I felt generous today and gave them 3 stars, because I really had to talk myself out of giving them only 2.\n\n-Jessica", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qkbiaiS8t8YHWx3J04NjSw", "review_id": "qP9gxmbo1u5-w9TMyJ0Kjg", "stars": 3, "date": "2011-10-09", "text": "Meh. Met up with a few friends here and sat on the patio on a Saturday night around 8. There are no heaters, which would be ok if it was a nice fall day or a summer night, but i was a bit cold towards the end. There is indoor seating as well so this shouldn't be a deal breaker. I ordered a few nice glasses of red, one pinot noir and one petite syrah. I ordered the tuna salad and the bf ordered the grilled cheese. It was just ok, and so was the service. Our plates sat on the table for over 20 minutes after we were finished before they were cleared. Cute place, good music, not a huge variety on the menu, just salads and sandwiches. I would likely go to humble pie next door next time while in the area which is how we spotted The Main Ingredient in the first place!", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4sIK_74UwkKU9YQXIfgCdg", "review_id": "wMSv_n4DN6EhEnAiYPUAFA", "stars": 4, "date": "2012-05-01", "text": "Recently a friend at the gallery was very excited because it was Dollar taco night a Chicos. That is fine if you have any idea of where it is. Turns out I had been by there more then a few times when I went to the Safeway and Subway at 7th st and McDowell. It's a little place in a very small strip center. It's very much a neighborhood\nplace, clean with an upbeat atmosphere and a few tables outside. That's about all I can say about the setting.\n\nI was surprised by the variety of meats that one can get on the tacos. The tacos aren't to exciting but on the whole are fresh and have a good flavor better than I would have expected. That is all I had but from what I saw of the meals around me, hey looked pretty good as a whole.\n\nI will go back to Chico's. It definitely has fare that is better than the local fast food in the same price range. Not an exciting place but pleasant to think of returning to. I went there after a very long day so that is saying something. Just the enjoyment of quite of the few people just sitting down and having a good time rubbed of on me. I needed it!", "type": "review", "business_id": "D09yG6Z3gcsh24Qn7Y4gYA"} +{"votes": {"funny": 12, "useful": 10, "cool": 11}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "IM5vPwAlbnkhbIS339cswg", "stars": 4, "date": "2008-08-11", "text": "\"Are you kidding me Laura?!?!\"\n\"OMG we are going to get shot!!\"\n\"Dude this is a fucking double wide.\"\n\nThis is what I heard upon entering the parking lot. \n\n\"Hell yes we are eating here I don't care what you say!!\"\n\nI like it no matter if Veronica R (my sister) did not like their green chili. Its a taco place order the tacos!! Yes the rice was overcooked and a bit crunchy hopefully its not like that all the time. The beans were FANTASTICO they tasted like the ones my Abuelita used to make. The salsa was not for the weak its nice and spicy just how I like it. I had the shrimp tacos as my entree see pics, they were delicious I cleaned my plate!!\n\nCheapest beer ever I had a Bohemia for $2.50 they are $6 anywhere else!! We also took some Horchata and a Mansanita glass bottle to go mmmm. This place was clean and reminded me of Mexico inside, if I am in the area I would not hesitate to stop in here for a bite.\n\nShout out to Danny S for recommending! TY!!", "type": "review", "business_id": "cgNIBHS2mLdbTRiodAT6EQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MwFIzGzYbep71j_jmPEw6w", "review_id": "1ksegU1YwEyKvWEy7KsapQ", "stars": 5, "date": "2011-12-20", "text": "I have visited a few nail spas in Scottsdale and I like this one the best. ;) They do the best work and they don't rush. The environment is clean and well decorated. They don't try to pressure you to get little designs on your nails. (At least, from my experience). If you want to chat, they'll chat. If you want to zone out and enjoy your pedicure, they'll let you. Just try to book your appointment in advance. They have availability for walk-ins sometimes, but your best bet is to secure your own spot.", "type": "review", "business_id": "bVhIs14KgRzyR8umVL1CRQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xNOOF142vmZEvASQ1g2QSQ", "review_id": "-OQZDDemixv3LMuwlIyvHg", "stars": 4, "date": "2009-12-28", "text": "Went here for the first time for xmas dinner. Atmosphere was very chill. Almost felt mafiosa style at times. It is a mellow setting and very relaxing with unique music. They also have TONS of sports related everything to keep you're eyes busy while you're enjoying your meal. \n\nOur server was awesome, we got our food very fast and everything was excellent. I recommend getting the 12oz filet. It was right up there with other top shelf steak houses in the area and reasonably priced.\n\nWe will definitely be going back to Don and Charlies.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 4, "useful": 4, "cool": 5}, "user_id": "5B5fyTX11NXiaf9HGeLCXQ", "review_id": "U0oWlVW5gKDGwcFza5z5IA", "stars": 4, "date": "2008-12-15", "text": "I used to frequent Homme for Tuesday night karaoke, Friday night French Kiss, and spent Saturday nights upstairs. I have to say that for the sheer, unimaginable amount of times I wastedly bowled over the dance floor, tumbled down the stairs, or made out with someone I never intended to, Homme has never done me wrong. The bartenders on both floors are fantastic, though the upstairs is better tailored for more intimate lounging. I've been to countless events here, and they've been well-organized and (as far as I can remember) really fun. There' s a great crowd here, and you won't feel like you're dancing in a dirty, sweaty shoebox like other hip dives in the valley. \n\nThe parking situation is shady on weekends. I recommend going early to avoid irrational towings and cover charges; while it's purportedly not socially acceptable to leave the house before 10p, you'll be glad you did.", "type": "review", "business_id": "yPpPJyAF8pciHnhTF-C38w"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "bkR1tRtCi5ZG4qbdYM-LYg", "review_id": "b--Jr3di3pi-Ifpzv97VvA", "stars": 5, "date": "2011-12-11", "text": "I have been to a great many Ross store-- and I can safely say that this one is my favorite. Even when it is busy, it is still manageable, unlike some of the others. \n\nI am also consistently pleased with their selection. Now, I often go in there without much of a purpose, just to see what's there-- but I recently found ALL, that's right, all of my Christmas gifts. Perhaps I went in on a lucky day, but I can't think of a time when I didn't walk out of there with at least something.\n\nI was sorry to read the previous review, because I have had such a consistently good time at this store. As for the store having a security guard, the one who works most of the time is a kick in the pants. He'll chat with you if given the opportunity. Also, every Ross has at least one, if not two, security guards working while the store is open. \n\nI hope more of you are encouraged to visit now that you know what a great time I have had there. It's one of the smaller Ross stores that I have been in, but it certainly packs a punch. Happy bargaining!", "type": "review", "business_id": "nRLsX5dEmYBcjhX2720y8A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3wTXuo5-DazxVMRBNKYtFw", "review_id": "IbriSn862erJI7lGnZalDw", "stars": 3, "date": "2010-02-19", "text": "Great bread and sandwiches. \n\nNimrod employees.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bkRfY8jHdFxf7k8vLX4buA", "review_id": "2Ar5D7POHZ5u3fqtKFvkQA", "stars": 3, "date": "2011-01-15", "text": "If only they have more fresh produce I'd stop by a lot more often!", "type": "review", "business_id": "b3MaC7nWia6uYvJrP8iu1w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Bwo_j9OGpZN60T5HxKOTeA", "review_id": "6eKYYesaqOfzvh1co2jY0g", "stars": 3, "date": "2009-06-27", "text": "Drive through or dine in. The drive-thru wait for your order can seem overlong. I'm a fan of their carne asada burritos and their chicken burritos - very tasty. Also their breakfast burritos. They use real tortillas, not gummy doughy ones like fast food joints use. All the burritos are huge - really two meals worth of food. But, they're not careful about removing gristle from the meat or excess liquid from the spoon before wrapping up your burrito. So if you're a picky eater or you don't like messy food, don't get any kind of burrito. Burgers and Philly cheese steak sandwiches are also pretty good. They have a big variety on the menu actually. It's a greasy spoon, and I do mean greasy, but was a weekly stop when I worked nearby.", "type": "review", "business_id": "mTjHcl-pkNO4iOKY8rVHPw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "PbFFGfD-_ew3qTAEoogx6g", "stars": 4, "date": "2010-02-25", "text": "I've never been done wrong at Chelsea's. But I've never been utterly wowed either. The food is consistently good, the service and atmosphere are top notch and it's in a great location, but I can't seem to give them five stars. I have always gotten their tacos and most recently tried the seared ahi ones that our server said were only on the lunch menu but I could get for dinner. The ahi was perfectly done and tasted great but didn't really jive with the soft taco fixins. Still it was tasty and I ate and liked it. JD had a cheeseburger that he described as \"meh, not as good as Delux (his gold standard)\". \n\nMaybe my only thing against Chelsea's is that it has yet to serve me anything so special to make me YEARN to go back again. If someone suggests it for dinner I'm all in, but would I ever be the suggestee? Nope probably not. Perhaps I should try something new the next time I go and I just might fall for Chelsea's a little harder, but for now she's just an acquaintance that I don't talk bad about but neither do I praise.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "U_fAIe7CUaGMejwSdNvMgw", "review_id": "NKVO9cAizG-MM2ZnpFDKww", "stars": 2, "date": "2011-09-12", "text": "An Ode to Walmart: It's Walmart\n\nA senior citizen handing out carts at the door. My cart doesn't roll straight. I'm not surprised. There are no baskets, just carts. Is that a hint?\n\nIt's Walmart.\n\nMore babies than a daycare. More seniors than a senior center. And tattoos for everyone.\n\nIt's Walmart.\n\nCardboard kingdoms of snacks, a tower of cheese balls bigger than you head for $5.98 each, a wall of ramen labeled \"Cup-O-Soup,\" and a kid putting cheese balls bigger than your head into his family's cart.\n\nIt's Walmart.\n\nFifty cent clearance plastic margarita glasses. A crate of $5 DVDs bigger than my bathtub. The PA announces \"All loaders, code 60. All loaders, code 60.\"\n\nIt's Walmart.\n\nA pharmacy, vision center, credit union, grocery store, hair dresser, automotive section, toy store, bike shop, Home Depot, and Office Depot all under one roof. I think I got lost twice.\n\nIt's Walmart.\n\nProfits measured one penny at a time. Is Walmart a savior for the poor or does Walmart enable poverty? Economist can't decide. Does Walmart help the environment by working with vendors to reduce and remove packaging, and engaging in some environmental friendly projects. Environmentalists have decided.\n\nIt's Walmart.\n\nSelf-checkout with a weight sensor to keep you honest. They've never checked my receipt at the exit. Is it because I'm white?\n\nIt's Walmart.\n\nPatrons leave their carts at the bus stop. Where did that hour of my life go?", "type": "review", "business_id": "89yv89wcF_-ehN7_pUnl6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "h3ZHr4wnxjGb6IsKcZGW6A", "stars": 5, "date": "2010-09-08", "text": "The closest thing I have to a neighborhood pub. Not bad.\n\nThey sell loads of Belgian and Canadian beer. That is all that you need to know.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pOim-Tccfc6Aw0ynGdPmYw", "review_id": "qq4bcTHmM_Dqw6vnp8z6og", "stars": 4, "date": "2011-10-19", "text": "Didn't get to sit outside so a little disappointed. We saw the \"big assed burgers\" and all decided to get one. They were great but a bit messy. Food and service were excellent. Will try and get back for happy hour", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 4, "useful": 5, "cool": 5}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "L_Sgeicho40nvF3Xw2RbUQ", "stars": 4, "date": "2011-02-03", "text": "Having gone to the now-closed location on Shea, I didn't expect to find myself at the new The Herb Box anytime soon. My one visit was fine, but didn't leave me wanting more. However, when Deb L hosted a recent UYE, it was the perfect opportunity for great company at the very least. Well I'm happy to report I received even more than great company....great food, great service, and comfortable, yet beautiful surroundings were also on the plate. \n\nI began the evening with a glass of their house-made sangria. I could drink this light and fruity beverage all day. In fact, I think it would make a fine substitute for my morning OJ. I did have a hard time choosing an entree. While I was tempted by the pear and gorgonzola flatbread, I chose the goat-cheese chicken instead. The shoulder cut chicken was perfectly cooked, but the meat itself was perhaps a little bland, although admittedly I do prefer chicken to be well-seasoned. The goat cheese stuffing and the fig jam, however, resulted in an overall quite tasty dish. I loved the mushroom risotto cakes served alongside!!\n\nThe Herb Box also graciously offered our table a variety of sweet treats at the end of the meal...a slice of fig bundt cake (my favorite), a couple different cupcakes, a whoopie pie, and a passionfruit cake. While all were enjoyed, none of these wowed me. I do think these may have been pastries available at the market, and not their dessert menu items. \n\nSo thanks to Deb for giving me a reason to try The Herb Box. I'm sure I will be back again! I didn't get a chance to browse the market!", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "oCG_EaRgtUF04ZnEqAIIZg", "stars": 3, "date": "2011-07-29", "text": "Similar to Desert Ridge. All the typical chains are here. I like the Jimmy John's for a quick lunch.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 4, "useful": 3, "cool": 2}, "user_id": "plNy9iRaTasckjl6Lb-zAA", "review_id": "zBoquzaWcqOB3kCg8fLRaA", "stars": 2, "date": "2009-08-31", "text": "\"I totes spent half my paycheck here while making out under a palmtree that's no longer there and eating tofu and sauce with my girlfriend/boyfriend/person i needed to impress/first date/ex-boss/lover/landlord/twitter pal! It's edgy and modern and makes me feel like my $80 blouse was worth it and that I'm worldly and cultured and blah blah blah blah blah...\". There's no fighting what looks like a small legion of wanna-be hipsters and pseudo romantics who can't get enough of this place or it's food. \n\nAnd who apparently feel great about dropping $50 to $100 for 1.5 ounces of food. VERY impressive. Good for you.\n\nIn my opinion, it ain't all it's cracked up to be: first, pay attention to how many fried foods are on the menu....fried tofu, fried quail, fried wontons, fried chicken wings, fried pork on sugar cane. Yeah - it's a LOT of fried items. They even fry some of the shrimp in their salad items, i'm told. Hmmmmmmm. Bit overpriced for what you get. Some items are either smothered in gobs of soy sauce (duck breast), or have so little taste that they NEED the sauce (spring rolls - lay off the Anise!!). So....basically you're paying higher prices for gussied-up, MSG-ridden, fried nibbles - even if they ARE tapas. Funny how many people write reviews of this place stating that they were WASTED when they went...maybe because we naturally desire greasy food when we're drunk?\n\nI've had friends go and love some items(lime mint beef, red curry tofu, miso) and dislike others (fried pork, gyoza, overcooked fried wontons). I've also had friends tell me they've seen everything from cooks picking food out of their teeth with their fingers behind the counter to death looks from Chu because they clicked their chopsticks together too loudly, or asked for their food to come out on time. It seems he's not the little \"darling\" that some make him out to be.\n\nThe music (on some nights) can be occasionally good, but also gets repetitive and loud. Sometimes this place tries too hard to be New Yorkish - while existing in the remote patchwork of dirt lots making up the roosevelt district (or as some call it, \"Cenpho\". still looks like a lot of empty dirt lots to me).\n\nAnd occasional HOUR wait times?! What is this: Matt's Big Shumai? It's small food! Get over it!\n\nLooks like a lot of people \"need\" this place to be something it just isn't, for whatever reason. You are a fickle, mysterious and too often Lemming-esque crowd, my dear phoenix.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dc6OIgMlf6QMuSegogO92Q", "review_id": "15-ho2xrWkYW9cgLzxEbXg", "stars": 5, "date": "2012-06-12", "text": "Saw CAKE there last year. Nice grass, beautiful venue, great night!", "type": "review", "business_id": "lEGq4UveDPxikXcpwjtFow"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "zgCO0TnkvfohTmwPTwP7Ew", "review_id": "Pw_D-Yk_9texYWSMPI4FJw", "stars": 4, "date": "2010-12-03", "text": "Cafe Lalibela is my absolute favorite Ethiopian resteraunt in the greater Phoenix area. Located in a small shopping plaza near downtown Tempe, this humble little place packs a whole lot of flavor with their authentic Ethiopian fare. I love their braised meats (particularly the beef and lamb dishes) and your vegetarian friends will rejoice with Lalibela's amazing \nselection of veggie sides. My mouth is watering just thinking about their potatoes, carrots, and cabbage dish as well as their carrot and green beans. Their spicy lentils are probably my favorite lentils ever, and their injera (thin spongey bread, sort of like naan) is absolutely perfect. The super nice family that owns and operates this place are great and they \neven offer some great Ethiopian coffee, tea, and beers. One of the only things I really miss about Tempe.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "lbW1zgZp0sZXIEzCkumbtg", "review_id": "ynBYCy2ZmEyXECVKLOHjfA", "stars": 4, "date": "2012-05-31", "text": "Beer. Beer. Beer.\n\nThat pretty much seems to be the highlight of this place.\nI'm not even a beer drinker so can't review the quality of their brews but apparently the Oatmeal Stout was good and a deal at $3.25/16oz during happy hour.\n\nI can vouch for the food though. I ordered the grilled chicken sandwich (with goats cheese and veggies on multigrain bread) with side salad for $10. It was one of the featured Sunday specials. The chicken was cooked well but coated with a heavy layer of peppery seasoning. I personally enjoyed it but imagine it would probably be a little extreme for most. The small 12\" medium crust BBQ chicken pizza was also good ($14.50) and huge enough to share. Both our meals involved simple ingredients but the quality was above average compared to your typical pub fare.\n\nWish they had a few more wine options for us non-beer drinkers but then again I wouldn't want to hear a beer drinker say that at a wine bar, so I won't judge.\n\nVery casual atmosphere made up of everyone from college kids to young families on the early Sunday evening we were there. We drove by here on Friday night when it looked much livelier and their outdoor patio was packed. \n\nDecent service and overall good place, especially for all you beer drinkers out there!", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 6, "useful": 6, "cool": 3}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "HRegLHJ7wIYiuPkbvArVEQ", "stars": 3, "date": "2012-07-18", "text": "For opening night, there was a giant wave of people coming through the door. The bar was dimmed in red and purple lights. The bright new white dining tables were ready to be eaten on. All new upscale posh furniture in the bar, dining area, and patio. We were not able to get dinner but we'll be back.", "type": "review", "business_id": "GDmue1oJaem9ilywDtA4_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "f2P9doabyXDo7JaZ5K7keQ", "review_id": "avvbT0c8OEMaV-OdjsCn5A", "stars": 3, "date": "2010-05-29", "text": "Food was good but I can't say I was terribly impressed overall. The food kind of took a ridiculously long time even when only one other table was in the restaurant. The appetizers came out fifteen minutes after our main meals - we had figured they forgot about it.\n\nTastewise, things were decent but not quite memorable. I had a chicken shawarma and the whole ordeal was filling but a bit on the bland side.", "type": "review", "business_id": "HkSyssTd5_QNNeGI0-ltTg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "F3Ub3vp1UW4up54kyVWHUw", "stars": 5, "date": "2009-01-09", "text": "I really adore this place. They've got some of the best lentil soup around and all of their chicken dishes have been perfectly seasoned and very, very juicy. I recently got the kabob plate and it came out so tender and juicy it was falling apart on my fork. Their hummus and garlic sauce are both very good as well and the service is quick and friendly. \n\nLast time I was in, I noticed they expanded their dining section so the place is a bit bigger now, probably to accommodate the increase in customers from the park-and-ride light rail station right in front of their restaurant.\n\nDo yourself the favor. If you're heading on the light rail and feel hunger strike, stop off here and enjoy a nice meal. They have good lunch specials around $7.50 for a full plate with meat, hummus, garlic sauce, pita, and tabouli. Mmmm!", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "EQOWA8Td6YNqrCFu-NEXcQ", "stars": 5, "date": "2011-06-26", "text": "I LOVE BURRITO EXPRESS. My fiance has been going with his friends since they were in high school and he finally took me to try the only thing his group ever orders: a steak, potato and cheese burrito. EPIC. This burrito was so awesome that they have never tried anything else on the menu and I feel the exact same way. The tortilla is huge and fresh and the burrito itself is gigantic. I can never finish mine but the boys seem to eat it right up! Don't leave this place without trying the horchata either, it's so good. I've been to other Mexican places like this and the horchata tasted like gross water. Burrito Express however does it right and I will always go back to this place whenever I'm up for the BEST BURRITO EVER.", "type": "review", "business_id": "qdA4qiSXjaiuqO4SueH9VA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hjJPKQ1Ah91h3fVbc8GsOg", "review_id": "Hys_Mw4JL8AfT6MrtU-UMg", "stars": 5, "date": "2010-04-07", "text": "This is probably one of the more unique, trendy looking places in Phoenix-metro to lounge at. Everything about AZ88 is eye-candy, literally., from the furniture to the drinks to the decor and of course, the patrons. Drinks are made really, really tasty. My usual choice of cocktail is the French 75. My go-to appetizer is either the waffle fries that comes with three flavorful dipping sauces or the shrimp ceviche! The menu is pretty diverse with a little flair.\n\nWhat makes this place a hit for me are the contemporary, artsy decor making it a refreshing scene to come to compared to other Phoenix-ish ambiance. Of course, you can't have all these modern, sophisticated attributes without a DJ playing fresh beats and sounds! \n\nBottom line is the look and the vibe makes me feel like I am back in New York or Los Angeles. I had given a 4-star prior, but I can honestly say AZ88 can hang with the big boys.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "H7OGq5Upv2FwuSORESv6Kg", "review_id": "avT6YrT4mM4Ao5mdQBnwyA", "stars": 2, "date": "2008-08-25", "text": "When I heard about this company opening in the valley, I was pretty excited. Something new!!! But when I got to one of these stores, I was disappointed.\n\nImagine: A smaller Whole Foods meets IKEA. Sounds interesting doesn't it? Unfortunately they do not execute it very well. There was nothing there that I couldn't get at Trader Joes at a lower price. There wasn't any thing new or even different. Sure you can get your Tide, Crest toothpaste and some other name brands there, but the place seemed to lack a soul.\n\nIf you need just one thing, this would be a good place to run in and out. But if your looking to do the bulk of your shopping here...why not just go to Safeway? Maybe that's the point, but what really shocked me is that the prices here were not any better than Fry's or Safeway. Trader Joes at least has really cheap prices and you know 90% your getting high quality stuff. Plus TJ's is different from your normal shopping experience....the marketing is fun and the stuff you get there you generally cannot get anywhere else. I did not sense any of this with Fresh and Easy. It seemed sterile.\n\nIf you like F&E....good for you!!! I just don't see the value nor the selection. The idea of this place is great. They just don't get the American market.", "type": "review", "business_id": "opikDGSxDcfZwYWbk7dKtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "_nPWOtAKBbsC-ucfFfqBPQ", "stars": 3, "date": "2007-07-28", "text": "Harkins 16 is exactly like every other Harkins theater. That it to say, a huge, context-less concrete box in the middle of the desert that shows the same movies as their competitors. I saw the Simpsons movie here tonight and just have a few thoughts to share.\n\n-The Cine Capri screen is big. Anyone who has visited either the Scottsdale location or now-defunct Camelback relic knows this, but I felt it was worth repeating. Very cool to see a movie on a screen larger than life itself.\n\n-There is always \"that guy\" in the theater. You know, the one that laughs as loud as a bullhorn, repeats everything that happens on-screen, and occasionally yells out something profane or derogatory. Now, imagine a theater where every guy is \"that guy.\" If it weren't for the cool factor of the huge screen and seeing a movie I've been waiting to see since childhood, I would have walked out in annoyance. Seriously, what compels people to behave like this? I don't know if this is due to the proximity to ASU (beefneck central), but it sucked.\n\n-Previously mentioned by another reviewer, but Dippin Dots are awesome. Simply awesome.\n\nGetting out of the parking lot was a disaster. I don't know if the whole Tempe Marketplace complex could be more poorly designed.", "type": "review", "business_id": "1pGC-0jvQ6vN5rzmCHjmfg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "0dpNmJxKp4Ha-fzJ2R8cCw", "review_id": "_pFw39F2jP8-_Voy9iyRmA", "stars": 4, "date": "2012-01-08", "text": "Went in on a Friday at about nine for a quick bite to eat. Far underdressed but I was welcomed warmly. Looked for a seat in the bar but it was jam packed, standing room only. Fortunately ran into some friends who let me sit at their table. Was greeted by a server after a few minutes and brought back drink and food menu. Ordered a la Paloma, NY strip medium and broccoli . I was promptly brought my drink, water and silverware. After just the right time my food was brought to me. I enjoyed my steak but my only negative was the plate it was brought on. The plate was so hot the moment it was set in front of me I could feel the heat radiating off of it. I did not enjoy eating my meal while sweating from the heat of the plate and being in fear of burning myself with any accidental touching of it. Not long after that some more friends showed up and we had a very nice 2005 Napa Cab. I didn't browse their wine list but if I do go back I am curious to what they have. Overall it was a nice experience, but I'm not sure I'll be going back anytime soon.", "type": "review", "business_id": "WSHQ9qpL39g5xA3E5iBCmw"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "0Nhieu1aPqT4Brv1P7-9tQ", "review_id": "OkBuxkIDP1_YZU_o-DF_1w", "stars": 2, "date": "2012-07-11", "text": "This place was a disappointment. \n\nI'm a big fan of a good Italian Beef sandwich. I was introduced to it when I lived in the Chicago area in 2001. Since I've moved back to AZ, I am always in search of a good one. Lately, on my way to Anaheim for a little family fun, I stop at Portillo's in Buena Park or Moreno Valley. This is a must. Needless to say this is what I compare Italian Beef sandwiches to.\n\nThe Italian Beef sandwich at Al's just did not compare. Not only was the beef dry even though I got it wet, but it just tasted different. It was definitely an unexpected taste for me. The rest of the family agreed too. The hype was there but did not deliver or meet my expectations for me.\n\nTo top it off, the service wasn't the best either. It took a few times for the cashier to get the order right. And even though the order was right they still managed to screw up one of the items we ordered. Though they did rectify it. And to top it off, we ordered a \"chopped\" salad. The lettuce wasn't even chopped. What? Not chopped? It's the little things.\n\nWe ended up leaving disappointed. It was a bust for us and definitely not worth the trek from Chandler.", "type": "review", "business_id": "m3EKlucZuwnOazLrRfnWaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HdPbyEdcCCVBDEhc-D6vKA", "review_id": "_TqbABjybfQEEEGt4uGsRw", "stars": 5, "date": "2012-04-28", "text": "Fantastic place to learn Krav Maga and workout. My two sons have been going to React Defense Systems, RDS, for years and they finally convinced me to go. I love it and it's too bad I didn't go earlier! \n\nThe instructors and facility are top notch. As a beginner, the instructors made me feel welcome and motivated even though my skills were untrained. After two weeks, I can feel, see, and hear the difference. I love smacking the bag with sweaty fists and feet and seeing the sweat fly. \n\nIf you are looking for intense conditioning, then RDS is the place. If you are looking for life saving skills, then RDS is still the place. Learn a great life skill, become fitter, and have fun. \n\nI agree with AZ Central: RDS is the best boxing/martial art facility in Arizona. \n\nIn closing, I'd recommend RDS to anyone and I apologize to everyone for not being creative enough to think of something funny or flippant. \n\nOh did I mention this is one of the few places in the world where parents and their kids can legally beat on each other and enjoy it?! When was the last time your son hit you? ;-)", "type": "review", "business_id": "acpeqj-OAIlGA5S8Mp34Hg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "w1LjSa5wMexRIQ-82LKWmQ", "review_id": "pPQtQVHhWrMNoaWB1q-51g", "stars": 2, "date": "2012-11-29", "text": "I called this company to move a pool table that I had purchased from a private seller from their home to mine. I was able to set up the appointment easily, but that is the most positive thing I can say about this company. \n\nOn the day of the scheduled delivery, I got a call from the person I bought the pool table from, saying that Diamondback Billiards did not have my address or phone number and didn't know where to delivery the table (even though I was the one who set up the appointment and definitely gave my information during the phone call). So, I gave them my address, they showed up and set up and re-felted the pool table without incident. When I went to sign the invoice, I noticed that they even had my wrong last name on the invoice and had the seller's address listed as the Buyer and the Seller. I dont even know how this would happen except that the person I talked to when setting up the delivery was not doing his job. \n\nAlso, I asked on the phone if they could bring an extra yard of fabric to cover a cue holder that I have and was told that it would not be a problem. And, you guessed it... the delivery guys knew nothing about it and didn't bring any. \n\nSo, I went to the store the next week and asked if I could purchase a yard of the felt that they used to cover my table (I couldn't find a good color match at JoAnns). They told me that they would have to order it and it would cost $55. For a yard of felt.... yeah... that's nearly as much as I paid to have an 8 foot pool table covered. Needless to say, I didn't buy the fabric and I definitely will not use Diamondback Billiards for any of my billiard needs - too unorganized for my tastes. \n\nAlso, when I was at the store I noticed that their selection of pool cues and other accessories is very limited. Unless you're in the area to go to Ikea, don't waste your time.", "type": "review", "business_id": "mSBLrQ5pCeKMPXlwR_f7hA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "qa05pUVNapADHZXpHMPMeA", "review_id": "YU4nmER8zVduSmCTjyFdrQ", "stars": 3, "date": "2011-05-20", "text": "Okay, so Kevin and I initially wanted to go to Samauri Sams next door, but they closed at 5 (seriously??), so we checked out Yelp reviews for this place and decided to give it a go. The atmosphere was... interesting. Very loud mural on the wall of a cartoon pig cooking meat, with innuendos littered all over the place (see photos other reviewers have left). It is a very clean establishment, and the staff was super welcoming and friendly. I am not a huge fan of barbecue, but my pulled pork sandwich was amazing, as well as the warm cornbread I got on the side. Kevin got something similar with some spicy sausage or something. I didn't care for his, mostly because I don't like spicy things, but he enjoyed it. I think the food and the staff is worth between 4 and 5 stars, but OMG the music. Nothing but really lame jazz and 90's soul music. Each song was progressively worse than the last, and I kid you not - Brian McKnight came on and I just about lost it. The music did not match the atmosphere and killed the vibe for us, although we had a few giggles and fully enjoyed being there anyway. Would I go again? Yes. Would I most likely strangle the person in charge of music next time? You can count on it.", "type": "review", "business_id": "39oUcXr-06fcfT_MZ94z-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "qWFYWalunBMpzJvw4WLvgg", "review_id": "9YA4XjnrE4-XBV6YhHkxQA", "stars": 4, "date": "2009-09-27", "text": "WOWSA- we just moved here from NYC and this pizza is like home :) We tried the Brooklyn and Da Works pies and the Brooklyn was WAY BETTER. I didn't like the Da Works (don't care for fresh tomatoes on top of my pizza). \n\nThis will be our regular pizza joint for the area- we were both impressed and will order many more Brooklyn pizzas from NYPD! Having just moved from NYC we can speak with authority when we say \"It's authentic NY pizza!\"", "type": "review", "business_id": "rhf8H7KZsMHRAprI5-D3sQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "OHsif1vlnI453UfeeNMDRw", "stars": 4, "date": "2010-03-01", "text": "Awesome bartender on the patio! Way great drink specials!! Don't come here to have conversations, folks. It's LOUD!! Great DJ spinning crazy dance music. Place gets way crowded so get there early and snag a spot to people watch!!", "type": "review", "business_id": "-9pVS__IliMA2aNEYzrQrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FWnsCOYE_0DU8bsOg6g4bw", "review_id": "KE1q1Lyh99xAPZjeDvI5AA", "stars": 4, "date": "2012-10-20", "text": "Surprisingly authentic Sichuan cuisine in Phoenix. The staff were very friendly and accommodated our infant without any problem. The mapo doufu had great spice to it. The garlic eggplant (yuxiang qiezi) had excellent flavor and we also highly recommend the twice cooked pork (hui guo rou) and fried green beans (ganbian sijidou). The prices are certainly reasonable for the size and quality of the food. The open kitchen is also a nice touch as it gives kids something fun to stare at (flames shoot up from the dishes being cooked every few minutes). Admittedly, we only went because out POS airline put us up at the residence inn across the street after we missed a connecting flight, however, if we go back to Phoenix or if we lived in Phoenix, we'd definitely go to Szechwan Palace again.", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a5CS6-ALOq0MSJ-IKUr3Bg", "review_id": "Fw8EhAFknwr3-l4nik_p0Q", "stars": 5, "date": "2009-05-10", "text": "What a dream come true to traipse into this store with my toddler girl and my husband. The store is filled, ceiling to floor, with all varieties of toys for all age groups. Shelves upon shelves of brands and models you've likely never seen if your main toy-shopping stomping grounds are Toys R Us or Walmart. The store's management clearly has a relaxed attitude about children playing in the store -- toys are sprawled across the store, ready for the next child's little hands. Yet, it didn't feel messy in there. The aisles are wide and smooth. The store is organized into various zones. (Dolls, science, blocks, books, baby, etc.) This is an absolute oasis in suburbia land where you're always hard-pressed to find non-chain stores.", "type": "review", "business_id": "GuawrlE4Z7PnqZXYcVuv5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Je0kWpzS4XKfowdU_j86RA", "review_id": "AkT0DEKYnpkG9SyXDG05ng", "stars": 5, "date": "2011-12-01", "text": "My wife and I just got married at Blackstone, and I'm still amazed at how awesome they are to work with. Elizabeth, Megan, and Alicia all worked tirelessly to make our wedding memorable. The location couldn't have been better, I'm still getting compliments on how beautiful it was. We read the glowing reviews prior to booking, and all I can say is that I agree with them 100%.", "type": "review", "business_id": "1CU_ksC32Hz7QmioMH91nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3JR8Z1-qdWOWEDycbrIflQ", "review_id": "MBUxmQjbJDRiL-mjAy99dw", "stars": 5, "date": "2011-11-05", "text": "Awesome pool.", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u9HVErmeVyu7Yvigb7J0Uw", "review_id": "Ii1qPwka49-3TO_NQGOtMA", "stars": 1, "date": "2011-06-28", "text": "Don't bother with this place. I had never been here, my husband and I decided to pick up some food to take home. We ordered a shrimp tempura appetizer, an assorted tempura appetizer, a lobster appetizer, and yakisoba. When we got home the order was totally wrong. Instead of lobster we were given mussels (which were gross), instead of assorted tempura and shrimp tempura we only got assorted tempura with 2... that's right only 2 shrimp in the whole mix. The yakisoba was the only part of the order they got right and it was not that great, pretty bland. I love Japanese food and I was really excited to find a place near by and while we were waiting for our order we were excitedly planning to come back and have their sushi, but after this complete mix up and poor quality food there is no way I would trust them with anything raw. Never going back, such a complete disappointment.", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SHcX9hp5RG3-OqsbvissIQ", "review_id": "IVoMGfn9QrZ4dATwc9HBcg", "stars": 3, "date": "2012-01-03", "text": "X", "type": "review", "business_id": "tbRu-3NR5za1SEZkszcp5Q"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "Txq_1amn8v6-QJfWxDgsRA", "review_id": "V-BZrffZAKzoKJe2oLtKHA", "stars": 1, "date": "2010-02-11", "text": "Ive eaten here twice and I dont think Ill ever eat here again. I ordered the lettuce wraps and the food smelled like horrible BO. It made me so nauseous I couldnt even eat it. The salad is decent but I still cant get over that smell!", "type": "review", "business_id": "fowXs9zAM0TQhSfSkPeVuw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "7o7vuRkJtnnipRWw3kft8Q", "review_id": "otCmAO3kqlsj4Mr6HY0bDA", "stars": 5, "date": "2009-12-07", "text": "I think Mr Goodcents has the best subs in town. I have no idea why people go to Subway. Goodcents slices the meat and cheese when you order your sandwich and their bread is baked fresh - you can't beat it. Get oil and vinegar on your sandwich and the taste is to die for. \n\nThe staff was very friendly and oftentimes the owners are there working. $5 footlongs are there too - only they taste 20x's better! They're all over the city if this one isn't in your neck of the woods.", "type": "review", "business_id": "tomw3dn386aTe6RGOxn5BQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "uYecHRyGu6zbLP5NRnNFyA", "review_id": "UH6NAyPHwyt3wJWlYaJQ3Q", "stars": 3, "date": "2012-03-20", "text": "Growing up in Tempe, I've been to the Rooste a few times. Overall, the experience is good but nothing to write home about.\n\nOne of my recent visits was on New Year's Eve. I made a reservation ahead of time and the process was perfect. They said upon arrival, if there is a wait for tables we will be bumped to the top of the list. When we arrived, the hosting staff said it was going to be a 30 minute wait. I was a little confused but no point in causing a fuss because we didn't have a strict time schedule for the evening. We walked over to the outside patio to check on the view. Within 5 minutes our buzzer went off and we were seated. Our server was fantastic and friendly. The food was delicious with LARGE portions. And surprisingly not as expensive as i thought it would be.\n\nMy next visit was about a week ago on a Saturday night. We forgot to make a reservation so when we arrived we found out it was going to be an hour wait. We waited maybe 30 minutes before we were seated. Our server, however, was not as wonderful as our visit before. It took 20 minutes to get waters and she kept blaming the bus boys for everything. The food this time was OK. My dad's prime rib came out cold, like it was straight from the fridge. All the side dishes were cold or overcooked. It was a less than stellar experience this time around. If I hadn't been here before, I certainly would not return.\n\nIf you want to give it a shot, I'd say go for it but don't expect the best meal you've ever had. The view and atmosphere is what makes the restaurant.", "type": "review", "business_id": "wZwZcte4lcbu51NOzCjWbQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "y5_vrqIylhXMrejM_-x_vA", "review_id": "zbcVgkTISrf77TWFRroFvQ", "stars": 4, "date": "2011-04-02", "text": "I was working in the area and craving a healthy salad for lunch. My usual love affair salad place was too far so my colleague and I decided to try Jason's Deli. He'd gone there for sandwiches many times and never tried the salad bar. For about $7.50 after tax you can get a pretty good selection of veggies, dressings, even a few pre-made pasta salad options. They also have crackers and mini muffins. The salad area seemed clean and well stocked. There were enough tables to sit, even during the lunch rush.", "type": "review", "business_id": "732Z5HGLEEBjAgXxfnuXlQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hAt0i0MarztUAxsooHpZzw", "review_id": "nJZHeiscTe5y5mtnAWEi2Q", "stars": 4, "date": "2011-02-08", "text": "Inside Decor: 4 Stars - nice clean tables. \nService: 5 Stars - very nice staff, and the food was delivered to our table pretty quick and everything was correct.\nFood: 3 Stars - the Kids Cheeseburger got rave reviews, my daughter said it was better than mcnuggets, and better than The Original Hamburger Works (down in Phoenix, next to Encanto Park) so I give hers a \"5-stars\" score. I ordered the Arizona Smashburger (1/2 lb) and was generally satisfied (4-stars). This was my first time there, so I was not familiar with all the hub-bub of the \"Smash\" - but the 1/2lb burger was a good 1/2\" wider than the bun itself. Not a pretty site. The Guac was so-so, chunky but lacked a savoryness. The Habanero Cheese, Chiptole Mayo and fresh (not pickled) jalapenos were all very nice. I would have preferred a thicker hunk of beef, and the same fixings. The red onion was pithy and only one thin slice, while they did give me two thin slices of tomato where were enough to give about 50% coverage of the \"smashed-out\" beef patty. The pepper bun was nice, I'd like to get them for my regular grilled burgers actually. Good bread, held up very good with the rest of the burger. The Kids Fries - eh... thin and I didn't take a bite but for the record they looked to have the same dimensions as the Fast-food golden arches fries. The Onion Rings (ahem... Haystack) were a HUGE disappointment. I like a thick cut onion, nicely battered and fried. These were pithy thin, tiny slivers of onions dripping with batter and goo... not what I would recommend anytime. (Burger, 4-stars, Onion Haystack 1 Star, net it out, 3 Stars for my meal.) I guess I don't get the whole \"Smash\" thing. Call me a noob, but don't call me to go back there again.\n\nIf you are a picky burger guy like me... and like to \"dress your burger\" all fancy, or if you are a picky minimalist... I have to recommend Fudds or The Original Hamburger Works. If you want a $7 burger that is pretty good but don't want to be bothered with putting the toppings on yourself (or if you are a germophobe and shudder at the openness of the toppings in the customer area) then this is the place for you. Good Service, Clean surroundings. \n\nFinal Verdict: 3.5 Stars (but 4 on the yelp page because at heart, I am a HUGE softie, and my daughter did like her burger a lot!!)", "type": "review", "business_id": "2e4LeI46Mo9YF24RnnJadQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vAftB0HEUsCOj2QaiNW5dw", "review_id": "b9Mvn1AI5wbjJzVT0nDUBA", "stars": 4, "date": "2010-06-05", "text": "Great place to go have a beer and watch the game on one of there numerous televisions.", "type": "review", "business_id": "C0vHeuHvd8H-9pJ1Qsb48Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "bkR1tRtCi5ZG4qbdYM-LYg", "review_id": "hxz6pnO30s7LtTU6G682qA", "stars": 4, "date": "2011-12-11", "text": "I was quite pleased when I visited Quick N Clean today. I opted for the $6 wash-- though now I can't quite remember what was included in said wash. I felt like it could have been a little bit more thorough in the rinse/dry section, as there was a trail of dirt coming off the back of my car.\n\nHOWEVER-- be not dissuaded by the dirt on my bumper (as I wiped it off, and the rest of the car looked great) because the vacuums at this place? OH MY GOSH! I have never been to this kind of car wash and experienced such suction. They were also an ideal shape for getting into the tight spaces underneath my seats. \n\nWord to the wise: when you go to remove the hoses from their little canisters, pull with force. I stood there for a couple of moments as I attempted to gingerly remove it, and thought the hose was stuck. I soon realized that I looked like an idiot, and just gave the vacuum a tug, and it came right out. \n\nOverall, I definitely say thumbs up. I had been hoping for a little rag to wipe out the interior, but am not sure if the rag was part of one of the other packages, so I will investigate again, and let you know.", "type": "review", "business_id": "VZfR-sKWjndsnE2JjKA9iQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "K4UmjxSpiHZohl2MnkBuKw", "review_id": "U6tUQVO6QdJd508-2UuzOQ", "stars": 5, "date": "2009-11-28", "text": "I discovered this place by going on one of my usual 20 mile bike rides along the canal until something cool popped up. I sat outside and sipped a nice chamomile tea as the first rain of winter fell unleashing an amazing scent. The staff was top notch and I was delighted to see several tannat wines from Uruguay on the menu. I can't wait to return some evening to share a bottle of wine and tapas with my girlfriend.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XoEwIVPoUNCM11D60o3lCA", "review_id": "VHxsz7fgEnIzj_HYxvvPQw", "stars": 4, "date": "2010-07-16", "text": "Tiny downgrade for Mamma Mia's. I have been here about a dozen times since my initial review, it's become one of our office lunch spots. They have raised the prices on the sandwiches significantly. The chicken parm sub is now $6.95 instead of $5.50 and I will not be ordering it again. I ordered it today and it was really limp and the breading all fell off the chicken. Very little flavor, too much cheese, had to remove half of it. It used to be so tasty and crispy, what happened.\n\nAnyway I still think they have the BEST pizza in the valley along with Venezia's. So I will continue to go and get their 2 slice and a drink deal for $3.50.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "MeW7EayKaYi7eYx3MHjfOQ", "review_id": "l4RAweh6rRy500epQsIS1w", "stars": 4, "date": "2008-10-29", "text": "I've been eating at this restaurant for years. When I started going here it was called the Japanese bowl and had different owners. The menu under the new owners is much larger than it used to be and now includes a nice variety of Korean delights. \nEvery visit is friendly and welcoming and we were always treated as family. I used to go with my family on a regular basis and they always remembered my son and his favorite order. The sushi is some of the best in the valley and they have some varieties that I've never had anywhere else.\nThe Korean menu is great and they have specialized \"bento\" boxes for lunch as well as full sized dishes for dinner. The portions are good and we never left hungry.\nThis is one of my regular dining pleasures.", "type": "review", "business_id": "p7m9uYWxKSFCF-qC7hPxPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "exgVl2vBujcx5L2BuKKulw", "review_id": "JQnDQkvEV7vEeFcYMJQmeA", "stars": 5, "date": "2012-04-13", "text": "Awesome staff. Great prices. Left feeling relaxed and refreshed. A must try.", "type": "review", "business_id": "dt0z8feRxhQ6JEAWpLfukQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6gPLoA14w1Pp_ALoQcJoTA", "review_id": "ILcJYl4cPTAJlne985RJ3Q", "stars": 3, "date": "2010-11-06", "text": "Pretty ok place, right in the thick of it, I saw 3 separate arrests while drinking beer on the patio. They have a couple different 4 Peaks Brews. Those facts alone made it a successful endeavor. Did I mention it was 4pm on a Friday?", "type": "review", "business_id": "G7Q0Tm2XBI5rqd5wyUc0jg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "cgahLBKuwzpRFvOF_vqw_A", "stars": 4, "date": "2009-01-18", "text": "They are helpful there and they are not helpful there, depends on how busy it is. The place can be mobbed by rich teenagers and trendy asians, but if you have a warranty and need help, and you have an appointment then you are fine. I have to admit having an macbook pro and an !phone, I am always drawn in. \n\nBut the skinny crew with their cool black apple shirts can be quite helpful if you really need it. It is hard to resist not going in. The tech people really know their stuff. I do wish another Apple store would open up in the West valley though.", "type": "review", "business_id": "l5vzFaqSjvxZiRn0MJeKkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IA-cJHXFFzzB0x4nieISVA", "review_id": "BPDGleajwec0V-INho0P7w", "stars": 4, "date": "2011-12-21", "text": "LollyPOP vintage is pretty sweet! They always have something I like and the service is impeccable. I dont think its too over priced, I mean this Phx not SF or NYC!! of course u will over pay a bit. duh. U should def check it out ;)", "type": "review", "business_id": "uMfcbz3rXRBH6UowDVuK7w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yk37VAp452K7FwHWd1rrQw", "review_id": "2RVueGqGvHFE58C7giOujg", "stars": 3, "date": "2012-01-16", "text": "I am a HUGE fan of micro breweries. Gordon Biersch is cool... a little \"chain-like\", but the ambiance is great. I felt like I was under dressed.\n\nI had the seafood cobb, which was awesome. They use REAL crab here... thank god.\n\nHubs had a large burger... he loved it and loved the garlic fries. \n\nI had the Hefeweizen and hubs had a couple Schwarzbiers. Not bad at all.", "type": "review", "business_id": "_oBxfuBd2qDEWaYsdvP_dg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5c4p-A1sLBlpS1cPaMpdBg", "review_id": "6bahziDJPUU-3pK1Tda7dg", "stars": 2, "date": "2011-02-02", "text": "This place is so so. Ok food. Ok atmosphere. Just a decent restaurant in Buckeye.", "type": "review", "business_id": "7KCLeDNdFDkdoA6MUavxwQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "TI88k_ezEWaj_XZSiuBNGA", "review_id": "0u2QHaxC6CfynX_Wv9LR1A", "stars": 4, "date": "2009-08-18", "text": "oh man, I gained 5 pounds on Sunday but since it was from Joe's I don't even really care - it was that good. \n\nI won't go into the local ingredients, Agritopia, etc since others already have but it is a wonderful thing. More below.\n\nThe food was awesome. Very fresh, delicious and wholesome - you actually felt like you were eating food that was also good for you. Granted we just had the burgers and ice cream but there's a whole menu there to explore on future visits. I loved the signature burger with pesto & fontina, neither of which I had ever thought of but worked very well. The onion rings were good, as were the milkshakes and sundae. It really fills you up fast though, so try to pace yourself!\n\nI was equally enchanted with the setting. Beautiful place. Just like a farm oasis in the midst of suburbia - I hope it doesn't vanish in the midst of the houses all around it. Even the bathroom was noteworthy - clean, black and white with dolls and a closed circuit tv. It reminded me of the Jetsons - you know, the 60s idea of space age. \n\nSitting outside wasn't too hot, as it's the one place I've seen so far where the misters really work and don't just spray you and puddle down. The only down side was when I asked where the farm stand was and the cashier pointed it out, but without mentioning it was closed. Nor was there a sign at the actual location indicating when it would be open in the fall.\n\nOh, and what was really nice was the sense of everyone relaxing - just kicking back and having a good time. definitely worth going to again, and again ...", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7Gk2wmg37vbyP65ME1UfSw", "review_id": "BCreqwc5DtKGc6Y852C0Cw", "stars": 1, "date": "2012-05-10", "text": "yuk! service and food sucked never a\ngain!", "type": "review", "business_id": "MpohnCC0uQNj7DZWaBFSgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Bmzq_nkjYqp8aWn12RJdhA", "review_id": "HrSYtBhNHXyq-Hqb6Ml5Bg", "stars": 4, "date": "2010-02-22", "text": "This is the place my friends and I go for Mexican food. Very tasty, affordable, and fairly quick service.", "type": "review", "business_id": "Vx7-xbazum3dgo3Qj3i4pQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "zPiEroQrxxyBrHSUAcymBg", "review_id": "QbsAD9VvLqKurbBRx4oK-A", "stars": 2, "date": "2011-08-12", "text": "I really like this concept for a quick breakfast/brunch spot, but the execution wasn't too delicious. If you know me well enough, you'll know my first thought when we walked in was \"is there booze???\" The answer is yes. I recall seeing your typical breakfast bevies such as mimosas, bellinis, bloody mary's, etc.\n\nSo you go in, scope out the menu, order at the counter, and they bring you your meal and beverages. I ordered a simple eggs, potatoes, toast and sausage breakfast, and my friend had an omelette. We had just had brunch at Maizie's the day prior and our first impression was disappointment in the portions of the food, considering the prices were also comparable. Oddly, my sausage, potatoes and sunny side eggs had the same consistency, so that was off for me. They were all a bit soft and soggy. We, of course, enjoyed the mimosa and bellini, but $5 each is a bit high considering they're $3 @ at other places, and Cafe Boa down the block offers unlimited mimosas for a fixed fee with food. \n\nI thought the location was great, and the Sunday brunch crowd was nice. I'm not sure what it will be like when the students come back, but I don't think I would be back to find out.", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tJqUqHnwcSe2BCIPDrC3Fg", "review_id": "E0ACkDa9jkFodlILiOcYmA", "stars": 1, "date": "2009-07-26", "text": "I went today with three friends for dinner around 6 PM Sunday night. Though it seemed quite busy, I was pleased to get a seat within two minutes upon arrival. Outside seating, despite a hot Arizona summer, was pretty nice with shade. However, this is where the pleasanties end.\n\nOur table remain neglected for approximately twenty minutes. No one bothered to offer us drinks, and it was quite irritating to see tables who arrived after us being served appetizers. When our waiter came, he did not even apologize for the wait, and we gave our orders: drinks, appetizers, and pita sandwiches.\n\nThe hummus and garlic dip came relatively quickly, only twenty minutes later. Both were alright, but something is seriously wrong if all of us were only served one pita with the two dips, and each dip was more than twice the size of the pita. We asked our waiter for extra pita, and he kindly agreed. The entire duration of dinner, it never came.\n\nRefills were also a pain, as we would ask someone to fetch our waiter, and he wouldn't come until ten minutes later.\n\nAn hour after ordering could not possibly justify only four meager gyro sandwiches. I've been to plenty of other businesses who have made that kind of order and more in just ten minutes during a busy lunch hour. Half the tables outside already left, including tables that arrived after us, and we were the last ones served. The food was of average quality, and I've been to better with cheaper prices.\n\nSlightly expensive, I can see as justified. But many agree that time is worth much more than money. I had an excessive amount, over an hour and a half, wasted on a decellerating Sunday night. Staff is kind of nice, but I suggest a serious change in priorities so that first time customers like myself aren't immediately turned off. I can say for certain that I'm never coming here again, and I'll find myself at better places much closer to home.", "type": "review", "business_id": "Ez2MFsVT5lJZ05yvK_0AXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qI0DRRJyKrockWlVk3g7uA", "review_id": "o3xGMG9DkEt0_FAYkc8suw", "stars": 3, "date": "2012-11-27", "text": "The features in the room seem outdated. The room was a sauna when I got in and could not fix the problem because the thermostat was hard to figure out. I woke up in the middle of the night because it was unbearable and a staff person did come by and was able to make the room a little cooler.\n\nI like the check-in and check-out kiosks so I don't have to wait on a line for a live person who seemed to be just chatting away with someone.", "type": "review", "business_id": "KNIFSqzQADOZWDO_7T-KzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bx3foDJoXw-EXvr0oxpgcg", "review_id": "5sDOpCncmCsKT3qgtud5TA", "stars": 5, "date": "2011-06-08", "text": "I just went here for the first time a week ago (visiting my parents who just moved to FH). A++\n\nGreat location, view of the fountain, outside seating, nice decor inside, really wonderful owner and a big menu of pastries, croissant, sandwiches, Italian sodas, and coffee.\n\nI had the egg salad sandwich (the croissant and egg salad was SO FRESH!!) with a side of potato salad was probably one of the top 3 potato salads I've ever had!\n\nI also got an iced mocha which was just the way I like it, on the sweet side.\n\nI had my 14 month old daughter with me so I also shared the potato salad with her and ordered a yogurt with granola. This was no ordinary McDonalds yogurt parfait - it was so delicious I had to have some too!\n\nOne gripe (that could be easily fixed by the owner) - PLEASE BUY ONE HIGHCHAIR for your guests to use. We would love to come back often (as we go see grandma/grandpa) but I can't take another lunch with her on my lap:)", "type": "review", "business_id": "omVy2vGYfu_Zzh-LffvOkQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "GcjXVxp3jZOHhUNyM2QECA", "review_id": "XIAQyeZtMh4OxaldzWv2Hw", "stars": 4, "date": "2009-04-29", "text": "I go frequently because every day, from 2-4pm, 44 oz. strawberry limeades are on \"happy hour\". But more importantly, chunks of more or less real strawberries come up the straw into your mouth. There are also real limes down in your gargantuan tankard of ice crunch and sweet sweet nectar. For a dollar. \n\nSometimes I get something big and fried at Sonic and it makes me feel a little gross, but on the whole their food is great if you can handle its intensity of flavor. I should note that I have a very fond memory of eating bacon cheeseburgers (and the aforementioned strawberry limeades) there after a hard day's work, but that could have been the heat and poverty of the Tennessee county in which I was day laboring, or my avid youth, or the sheer novelty of my new southern surroundings. I do stick more to drinks and desserts if I go here though.\n\nTotal Americana - there's a lot of junk to pick through, but you can make your personal choice for something special. I chose limeade.", "type": "review", "business_id": "BtX9mA5dYDzULGVPC4-I-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aLTl_OkLo0BFRxdz1n6sYA", "review_id": "r6dV4W3qV3WQqO7q5g9ZIg", "stars": 4, "date": "2012-10-22", "text": "The pho was good and a generous portion, but compared to most Vietnamese places... way over priced. The owner is very nice and entertaining :) The spring rolls were decent, but smaller than most places for the price. It still beats anything in the west valley.", "type": "review", "business_id": "UIGFrEcoDsw05I1UOrxdOA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "xmBiUJAeeikwwXmOrNnw_Q", "review_id": "9yNQPdaBl5V4SYLakOVfxA", "stars": 1, "date": "2012-02-29", "text": "I hate to give this place 1 star but my recent experiences were horrible. I use to dine at this restaurant often with my family. The more we go, service decreased. Our water cups never get filled.\n\nThe very last time I was there, I found a gnat in my pho. Although I have eaten about 50% of the medicore pho, they asked if I wanted another bowl. I said no; I was there on my lunch break. No time to wait for another bowl. I got up to pay for my bill and to my surprise, there was no discount or any sort of accommodation. \n\nI am disappointed with them and will not be back.", "type": "review", "business_id": "2mcmuAvpNIJuV3gV0v9v2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "stC4ENxqdzYPBo7-vGPAXQ", "review_id": "bPtUhk1AypDC50-a8QfHHw", "stars": 5, "date": "2011-04-09", "text": "We have been eating here for years. I am as picky of a new yorker as they get (with food). I will say we do not eat there Monday or Tuesday's, The cook must be different, its not as good on those days. The rest of the week is 5 stars all the way.Great sesame chicken,fried rice, lo mien etc. Highly suggest.", "type": "review", "business_id": "Wg_mT_9_tLbsLfzTtnOBqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uOIJB_nrqhy-u27KfmBhVw", "review_id": "xiD5DjG8ezUXJxEYR13QxA", "stars": 5, "date": "2010-08-22", "text": "There are a lot of places to visit on Mill Avenue . . . however, there is no place like Fat Tuesday! When we visit Tempe, we always make it a point to stop at \"Fats\". We have always visited before the night time crowd comes. When we walk in the door, the bartenders remember us, suggest yummy drinks, ask about us . . . treat us like we are special. We have struck up many conversations with other patrons who enjoy going to Fat Tuesdays as much as we do. During the day it''s a great place to just get out of the heat, cool off with their daquiris and eat a delicious Po Boy. Jason is our favorite bartender . . . and we have lots of laughs with him! I am counting the days until weI will be back in AZ to go to Fat Tuesday!", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qrX3s0BfiHQTH_gmnyysjw", "review_id": "X12rVBNB4vw_NeNOTG5IjA", "stars": 3, "date": "2012-08-07", "text": "Reminds me of the 24 hour on Camelback - similar layout. \n\nI've noticed all 24 hour employees remind me of jocks.... well at least in Arizona.\n\nAnywho, I think they need fans in the cycle room - no wonder it's so warm in there.\n\nLike all the 24 hours I've been in Arizona, it's just so warm. At least this one doesn't have a chloride or funky smell in the beginning. \n\nEmployees are receptive when you have questions/inquiries.", "type": "review", "business_id": "AKafsnCBWsk8sfG3dE-R5Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OuaAwZIX__xEm4u8qrITVQ", "review_id": "LGxuzeH9UFed4umJ5WppsA", "stars": 4, "date": "2012-04-08", "text": "Best place around for sweet and sour chicken! The kids meals rock as they come with fried rice, a choice of meat and beef skewers. Did I mention their only 5-6 bucks? Little outdoor seating patio. The only thing we've found on the menu none of my family likes it the egg rolls. Good prices and food.", "type": "review", "business_id": "mjoxSQR7bFQtlIIjfNfaSQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "PS0lCxjGNeUrKxYSdpW-Aw", "review_id": "SS1eQ1ApdH7AtOgEyq3bPw", "stars": 5, "date": "2007-07-20", "text": "When I was a dancer I always came here for everything. Shoes, leotards, skirts, and accessories. They have every type of dance shoe and a wide variety of everything dancers need and want. \n\nI'm not sure how many dance shops are in the area, but all of my instructors always recommended this place which is not very close to our studio. The staff is all very kind and knowledgeable which trust me is a very good thing. Dance shoes can get confusing! There are at least three different kind of tap shoes! \n\nDee's also has costume rentals so if you ever need a crazy costume at the last minute Dee's can help you out with that too!", "type": "review", "business_id": "qFLjQyq7HVAY7LN5Srwy_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GevDiV1jhZL0Ga-SWyFw9Q", "review_id": "sys7nBAGhKWELqdkJuwIAg", "stars": 5, "date": "2011-03-16", "text": "Thank you Yelp... I only wish i had six Stars... Ok officially for anyone reading this pretend there are Six Freaking Stars... This place is THAT good!\n\nI thank Yelp because the only way I found this place was searching for 'third wave coffee' (those who know what I mean by this will just know... everyone else will just have to experience and forever after never drink Starbucks again) while I was traveling in Tempe. \n\nI don't 'like' coffee, I LOVE it (insert Antono Ego voice from Ratatouillie movie here)... I literally have a coffee shrine in my house where I run a vintage Rancilio Z11 and pride myself on my espresso skills. Simply put, I will never pull a shot like i had here. Off the chart awesome! \n\nSo that's the first 5 Stars...the Sixth star?? I just can't believe they have GOOD pastry too! I understand they produce in-house and if that's true then it's completely astounding. Easily the best croissant I've had outside of Paris. Run, don't walk to the Coffee Lab; it is worth the flight to Tempe.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "E0UjSpbgEig1dmUPiVSKJg", "stars": 5, "date": "2010-08-05", "text": "If you own a car that is older and you want it to look and smell new - this is the place. Our 3 year old truck looks brand spanking new after these guys got done with it. We also had them tint it and it turned out amazing ... again ... I say again because this is the second vehicle I have taken to them. That is the main reason I went back - I could not believe how good both my vehicles turned out. I had the window tint on the other one for about 3 years before I sold it and still to the day I sold it ... the tint was perfect. They use only the top quality film, and do quality work. I will keep going back and sing their praises all day long! If you are looking for a detail job, or window tint, this is the ONLY place you should be looking! Check out some pictures I took of my vehicles after they got done..", "type": "review", "business_id": "HAuSPJgHNNRThgfXM103jQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "9tVLD8PjH7Wwn_EAmCHzWA", "review_id": "zf6iJ11MfCeQ264u5AGk4g", "stars": 4, "date": "2008-05-06", "text": "Postinos is great on so many levels! They offer $5 glasses of wine from 11am to 4pm daily, AMAZING! Their bruschetta is delicious and huge, you get a choice of three toppings. My personal favorite is the pistachio ricotta cheese, SO Good! The open space the restaurant is in also makes for great people watching. When your dining at Postinos with friends or a loved one, life doesn't get much better than this!", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "Ppe0rgv6bbt2S6lIapHpuQ", "stars": 2, "date": "2010-08-28", "text": "My wife and I were looking for a dinette table. We looked at many places and ended up at the RoomStore. We found a great table and decided to purchase the item. \n\nThe salesman was nice and didn't provide too much pressure. \n\nThere is a LARGE selection of items-couches, tables, chairs, dressers etc.\n\nMy problem was that we bought the table and had a deferred pickup due to moving into a new home several weeks down the road. I placed a small down payment to reserve my item. After several weeks, I contacted the RoomStore to pick up my item since I just moved into my new home. My item was not in stock and was told to call back later in the week. I called 4 days later and was informed the item was now available. \n\nToday, I went to pay the balance of my purchase and take home the table. Small problem, the table and chairs are not at this location. I was given the choice to pick up the item at the distribution center 30 minutes away or wait until until Tuesday. I wish that during my several contacts during this process that someone would have told me that I wouldn't be able to pick up my item here or wait several other days. I was not happy! Now I have to go back once again to pick up the table and chairs.", "type": "review", "business_id": "EohIGivB0O1C7fSyQfNrqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e_raEH6Y6fdS20UWGpZ5Nw", "review_id": "HdcNTfNGoZ0bpDzc0lUAVQ", "stars": 3, "date": "2011-12-14", "text": "Moira isn't the best sushi I've ever had, but for Phoenix and my neighborhood and the pricepoint (as long as we don't order alcoholic beverages) is doable when we get a sushi craving. \n\nThe happy hour is a great benefit if you can get away from work before it ends. \n\nTheir spicy rolls are definitely spicy, and have some great kick to them.\nIt hits the spot without breaking the bank and we'll take it.", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6aS7CrJBq4de_fUDoZd-kg", "review_id": "-xJtULjwbeer8EEMpwIHSw", "stars": 2, "date": "2012-11-16", "text": "I have ordered here before (General's chicken) and beef and broccoli but tonight we had the worst lo mein and coconut shrimp we ever had. The lo mein was so bland and the coconut shrimp breading was so thick and untasty. I cannot even identify what type of breading they used. it actually ruined the sauce - i would have rather ate the sauce alone with a spoon. We didn't even save the leftovers. I won't not order from her again but will make note of these two items. DO NOT ORDER them.", "type": "review", "business_id": "nH4CEJwrRXPxhfdL2pz3MA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OfVHKs2Z3vThGnmJYHVpcg", "review_id": "PIGkFtue69AiS_Kj9NlPeg", "stars": 4, "date": "2012-02-05", "text": "I like this store. It is not perfect, it is not a real farmer's market, but they have many things which other stores do not carry. \n\nFirst of all, their fresh sausages made from scratch daily are to die for. Even if you don't like the store overall, just go there, buy a few different sausages and grill them with 100% natural wood charcoal. (Please, do not use lighter fluid! Take a piece of bounty, soak it in some cheap olive oil and you will ignite anything)\nIf you see 15 different kinds of sausage and don't know which one you may like, ask for their sausage menu; there is a description and list of all ingredients.\n\nThen lets go to their meat department. Grass fed meet. It is not something you will see at any regular store. Is it good? It is worth extra? I'm a skeptic, but I found it to be way better than a regular meat. Grass fed ground beef was so good! We made burgers and I could definitely taste the difference. \nGrass fed filet mignon was also very nice. It was not better than USDA prime filet mignon from Costco, but it was way better than regular corn fed filet mignon. I wish farmers would go back to the old times, when they were not controlled by 5 corporations and nobody was forcing cows to eat corn, but I digress...\n\nNeed real organic eggs and willing to pay $5 per dozen? No problem, they are here. Frankly, I could not tell that these organic eggs were way better than regular eggs for half the price, but maybe people who bake can tell the difference...\n\nAlso, if you're looking for that particular brand of sour cream, butter, kefir (lowfat yogurt), most likely, you will find it there - they carry many different brands and it seems they do not favor one over another. \n\nTry organic bananas and tell me they taste the same as regular ones. They do not, they are way better, they have flavor and they are sweet. They almost taste like bananas you would get on Caribbean islands. The one they sell to you the same day they take it off the tree... when it was already yellow and ripe Try peaches and apricots from Chile. They taste like peaches and apricots. Yes, some will have marks, dents and will not look perfect, you have to select, but I rather spend 3 extra minutes picking good ones than get tasteless, but all perfectly looking fruits.\n\nNow, bad. Of course, they do not always have best fruits and vegetables and a lot of them have a tag \"Mexico\". It is unfortunate that \"grown in Mexico\" is associated with poor produce nowadays. Mexico has a great climate and they can definitely grow tasty, pesticide free fruits and vegetables. Unfortunately, the market drives demand in a capitalist economy. Many people still look for huge and cheap. Companies provide huge and cheap. Some people are poor, they don't have money to buy quality produce and overpay for organic. It is sad, but unless we stop buying crappy produce, organic will be super expensive for a while (no competition).\n\nThese huge see through plastic bins filled with different nuts seems like a great idea at first, but way too unsanitary. People open these bins with their dirty hands, dip into them, cough and sneeze next to them and that's where you get your nuts from? No way! At least, not for me.\n\nFish section looks sad, which seems to be a trend in every AZ supermarket. You can find better fish in our area at Costo (huge amounts, good for big families), sometimes AJs (not always though), Mekong plaza supermarket or Lee Lee Oriental Supermarket. That's it. if you know any other places where I can get fish which does not smell fishy, please let me know.\n\nA lot of their organic produce, including potato is wrapped with a sticky label which says organic on every item. Ughh... it was so annoying to remove wrap around labels from every potato that at the end I didn't not care for the taste - I just wanted to finish peeling them. I guess, the store has to identify organic food somehow, but these extremely sticky labels are not a good idea. Think of something else, Sprout.\n\nSo, this Sprout store is not perfect, but I will continue visiting it every week and look forward to some improvements in the future.", "type": "review", "business_id": "5xnyQS26YJfD6az9Cwf8sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DBSzlm2QE0nYR4FQpdhAtQ", "review_id": "agRSQmF_Pwl79nEzL7_9_w", "stars": 5, "date": "2012-04-25", "text": "I'm a complete dive bar junkie. Whether I'm in a big city, or small town I always seek out the local spots. I was in Tempe with work and we happened to drive into town right at last call so we searched for the closest bar which just happened to be Monkey Pants. After we got over laughing at the name and the paint job on their truck...we went in and were greeted by the waitress right away. It wasn't too busy especially for a Friday night but the place is huge! The bartender was very attentive and adorable. \n\n I really wish I could've made another stop at this bar before I went back home..I saw a bunch of posters for all these theme nights and great deals. Reading previous reviews it sounds like they have parties going on like this all the time. Great bar!", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8DqIWXsKXOipfduYEfFpNw", "review_id": "Wpa5kCtSOa7dVoM3gTfOVw", "stars": 2, "date": "2006-07-10", "text": "Lost baggage and poor child wrangling. It's all about employee empowerment.\n\nI have the patience of the Madonna - all right maybe more like the Material Girl - but I am pretty laid back. After my humbling experience in the wine industry, I've been much more appreciative of service industry related jobs. But when employees are not empowered to answer the most simple of questions, and we're checking in on machines with nobody around to handle luggage, well...it's a disaster waiting to happen. It's an unfortunate thing that is supposed to help in keeping costs down and help with efficiency - but there's been consistent problems with all of my US AIRWAYS flights.\n\nLet's throw JFK airport into the mix to help maximize the disaster...we ended up in Orlando. Waiting for our luggage. Luckily our toddler was entertained with the luggage roundabout...because we waited through two flight arrivals to retrieve one bag. \n\nFamily that met up with us for the 4th assured us US AIRWAYS used a really efficient delivery service...Apparently the lost luggage situation is pretty common.\n\nGood thing the baby bug is a trooper when it comes to traveling - because Orlando trips tend to be family-heavy and the on-board US AIRWAYS staff consistently doesn't seem too thrilled to be dealing with even the well-behaved ones.", "type": "review", "business_id": "bA-Cj6N9TEMlDlOh2aAnUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1xvQJ9N8Or8m6Dl74txFNQ", "review_id": "vE0o3wTf_u2NBc63Io3NFA", "stars": 2, "date": "2012-01-09", "text": "Being new to the Phoenix area we were looking forward to finding a Thai restaurant, since we eat Thai fairly often. Going off of the Yelp reviews, we decided to try Swaddee. We ordered the Tom Ka soup with tofu instead of chicken, and the Pad See-ew with soft tofu, and the veggie rolls (to go). The veggie rolls were tasty and larger than we're used to, which was a nice surprise. The Tom Ka soup was a little more sour than we're used to, but overall still tasty. However, it was almost $11 which we felt was about double what it should have cost. The Pad See-ew was the most disappointing part of the meal. The flavor was fine, nothing special but not bad. However, it was pretty dry and sticky, like you'd expect from a cheap college Thai take-out joint.\n\nOverall nothing really stood out. We had high hopes since the meals were on the pricey end for take-out, but we've had far better Thai for half the price. We'll keep looking for a better Thai place to become our local go-to!", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 5, "useful": 1, "cool": 3}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "bCbjYGW4smbVGgCxF8VCZw", "stars": 3, "date": "2010-03-31", "text": "Sucker Punch Sally's is a nice place to grab breakfast on Mill. The prices are alright and their hashbrowns are made the way I likes 'em. Usually people serve up this mash of whatever-the-fuck but here, they grate the potatoes and serve them crispy. The way I likes 'em.\n\nI'm sort of burnt out on places with a 50's motif, but whatever. I like the colors. It's kind of cozy.\n\nOne thing that bothers me: The name \"Sucker Punch Sally's\" sounds like something disgusting you'd head about in high school. You never heard of a sucker punch sally? It's when a girl....\n\nNah, but as a whole, it's a cool alternative to have in Tempe. Read my review on Harlow's. I like Harlow's, but I always get diarrhea. IHOP is full of olds and I don't particularly enjoy pancakes. They hit the bottom of my gut with the gravitational force of Jupiter. Now we've got Sucker Punch and it's pretty chill.", "type": "review", "business_id": "fjHUnUP1Lt-YAbeWUx2LrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vibtr-_DiDbwZqaxKK8SYw", "review_id": "K5OlX0wlxujb-GPOMiz4TQ", "stars": 5, "date": "2012-10-23", "text": "The perfect burger. Awesome BBQ! NEVER a bad meal!", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "Yk37VAp452K7FwHWd1rrQw", "review_id": "nallZ2KPMBbdZ2_nvTB8Ig", "stars": 4, "date": "2010-08-08", "text": "Despite all the recent bad reviews of this place, I actually liked it. The heat inside isn't THAT bad, people. Yes, it's warmer than the 75 degrees you keep in your house, but it's not the 110 outside.\n\nI went the other night to see A House Divided (which you would like if you like Chevelle and Breaking Benjamin) and it was ROCKIN'. Sound was pretty good. I like how it's small enough for the band members to see who is standing in the back and terrorize them.\n\nLadies... one stall in the bathroom. Be forewarned that there is going to be some drunk chick that will probably go and make a mess in there. Just plan on not using it as the evening progresses.\n\nAll in all... it's a pretty good experience. I like that those who aren't drinking get to be up front.", "type": "review", "business_id": "l3yL2rQ6PoFBQ06RLczn9w"} +{"votes": {"funny": 24, "useful": 31, "cool": 27}, "user_id": "cRyNICH0mhjxagvSyVr60Q", "review_id": "ZpkGGIcD1zX5Pc4p4c93fA", "stars": 5, "date": "2012-06-20", "text": "Why'd the chicken cross the road?\nTo get to Food Truck Fridays in Downtown Phoenix!\n\nI know that all you business Yelpers go out for lunch on Friday's, it's basically a rule if you sit in an office, a cubicle, or behind a desk somewhere from Monday through Friday; don't believe me, check the company hand book you were given on your first day of work. Somewhere between how to comb your hair, what you shouldn't wear, and please don't come in smelling like Nair, you'll find it. While Yelping about your Friday lunch is purely optional, I certainly hope you do ;-)\n\nDuring your weekly 1 hour exodus into the space beyond the cubicles and plaster walls, ending up in the open air of Food Truck Friday will kick off your weekend right. It's not just for Burger King people, it's time to get it your way! \n\nPick your favorite food from, Gourmet Hot dogs with Short Leash, or Mexican with Luncha Libre, Smoothies and Salads with Mojo Bowl, to Pies with Mama Toledos, and Creme Brulee with Torched Goodness. Bring your friends and your favorite gal; they can choose their own favorite too. Don't worry about bringing cash, everyone here will swipe your plastic just as easy.\n\nThis is your lunch hour, kick back and forget about work while you're here, if only for 45 minutes. Listen to the DJ's spinning popular music through their thumping sound system while you dine on your fine food. Chill out in the seating area which is cordoned off with misters, fans, and swamp coolers; bringing down the temp from a roasting 108 to a palatable upper 90's. \n\nThis is your Downtown business Yelpers, it's time to kick off those business casuals, and make Friday lunch your own!", "type": "review", "business_id": "l0S5b8YYyDbjttTWtKc-gg"} +{"votes": {"funny": 6, "useful": 7, "cool": 6}, "user_id": "n_lAaNGeWgspbbCJc0DqRg", "review_id": "uGLJc7uFKY6J1-YSf6nzhg", "stars": 4, "date": "2009-07-17", "text": "I forgot they built a bunch of FF places along Deer Valley Rd over the last several years, until my bro Daren C reminded me (shout out).\n\nI've been making the rounds to various area Arby's using the shit out of the free BBQ Bacon Cheddar Roastburger (arbys.com/coupon and today's the last day!)\n\nI thought I'd try out another store to avoid wearing out my welcome on Bell Rd., and I'm glad I did.\n\nThis is a clean, efficient operation. The building's pretty new, with a large dining area full of a variety of walled areas and nooks and crannies, giving many of the tables a private feel.\nThere's even a big atrium window, and a real, live 15' or so ficus tree growing indoors out of the floor in the dining area. Great atmosphere for this kind of place.\n\nThe service was quick and friendly. I could tell that the young guy at the counter thought the manager barking orders was being a dick, but he took it in stride, smiling and saying \"yes, sir\" the whole time. \"richard\" the manager was only doing what it takes to keep a FF store running smoothly, though, and young guy will someday get a job selling cars or something, and look back thankfully on all 'richard' taught him about upselling and add-ons, smiling and being friendly. \n\nBad on Arby's for getting rid of regular french fries, though, as they now only have curly or potato cakes (which are great, but i always appreciate variety).\nbtw BBQ Bacon Cheddar Roastburger kicks butt.", "type": "review", "business_id": "iAHNZo6GF4C3N-z8u2C_ww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-L0bSNfErGer1UCEa6D4PA", "review_id": "N4ChllevWug1QHyCyKmT9g", "stars": 5, "date": "2011-06-01", "text": "This place rocks!! We bought 750 sq ft of tile a few months ago to install on our own and we had no idea what we were doing. They helped us every step of the way. We made several visits over the course of about 3 months and everyone we talked to was helpful and knowledgable. I will absolutely go back when we re-do the floors in the rest of the house.\n\nAnd the prices are the best. I am a bargain shopper and will research prices for months before making a large purchase and that is exactly what I did when we embarked on this project. I researched prices all over... online, in stores, with contractors, etc and Floor and Decor by far had the best prices. The entire floor cost less than $1500 in tile, materials, and tools. It looks beautiful and I couldn't be happier!", "type": "review", "business_id": "SqKL7RsABTLLkBPoU3BMXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "SUaebQPM_V7bBncIGW69TA", "stars": 3, "date": "2010-03-16", "text": "Enjoy coming here with a group, cooking our own grub and playing in the sand. Evenings in April and May are great, as are September and October. Winters are a bit chilly after sunset, and the summer... well I don't need to explain that one. \n\nNo great deals on food or drinks. Service is hit or miss but I come for the company and don't really mind. Order a few pitchers and your grub to cook, then pretend you're at home having a BBQ. No service required!", "type": "review", "business_id": "b3mfNkad2uxdlKLrS3hDCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "EEkSkclu53Rn3B2M2faiYA", "stars": 5, "date": "2012-06-27", "text": "How have I NOT reviewed Four Peaks yet?!\n\nAwesome. Even when its wall to wall packed. Even after waiting in a 2 hour line for the special St. Paddy's day breakfast and festivities. The beers are great. the food is oh so good. you really cant go wrong w/ anything that includes their beer bread. And their breakfast! If you can brave the crowd that comes out for it, seriously do it. One of the best breakfasts in town. Ive had almost every item on their brunch menu, and I cant think of one that disappointed.\n\nGO.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nYJ07jJ45QxsxfvHObwj-g", "review_id": "W_qMZdQxDLlIuYesPA6rJQ", "stars": 5, "date": "2011-07-27", "text": "i moved to the tempe area about 2 weeks ago from socal, the mecca for asian restaurants. since moving out here, my only taste for asian food has been panda express. well, i was craving teriyaki last night but had no idea where to go so i did a search here. tokyo house got a bunch of great reviews and everyone mentioned a cool old man behind the counter so i just had to check this place out.\n\nas soon as i walked in the door, i was greeted by the old man...from across the joint, behind the counter, mind you. he was SUPER nice and SUPER funny! \n\nchecked out the menu and the selection was a bit overwhelming! they have every teriyaki dish available, and bunch of fried rice and noodle choices, and for those that like rabbit food, vegetable dishes. i was a bit surprised though to not see gyoza or pot stickers on the menu...was bummed out about that.\n\ni had a hard time deciding what to get but remembered Sarah W.'s review of the house chicken, so i went with that. i went with a large order and let me tell you; if you're hungry, you definitely will be stuffed after a large order. the dish was very tasty and delicious and was definitely overflowing with mushroom. i love mushroom! the house chicken is supposed to be spicy and although it had a little kick, it wasn't the \"spicy\" i was used to from asian joints in socal. i wish it had a bit more rice, though. either way, the dish was great! i would definitely order it again!\n\ni highly recommend this joint. you will be treated well by the cool old man behind the counter, the place is clean, the servings are generous and the price is cheap!", "type": "review", "business_id": "l1kqHWtICTNk8TdCNisf5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RCjuKSuPezW6qI3ZKgkncA", "review_id": "djkwE8xPaBxz-sR4fM2huA", "stars": 4, "date": "2012-11-14", "text": "Fun neighborhood bar, with a new backroom filled with fun games such as skeeball!", "type": "review", "business_id": "vlxMPuG6LYJ-c0yjd6AW3A"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "8MgMRPw-e1M31uNdkdVlVg", "review_id": "GjZHS9EpHLyhiVcZN41wTw", "stars": 2, "date": "2011-05-20", "text": "A huge disappointment. I had been looking forward to getting to Iruna and experiencing what I thought would be an experience to all the good food, service and times once had at Sol Y Sombra. Joke was on me and my friends! \n\nI would give the service 1 star, but because a few of the dishes were very tasteful, I am giving two stars. The waiter was nice, but did not belong in the service industry. He called us \"dudes\" (I wasn't on the beach and he wasn't wearing swim trunks, no need for \"dude\"), he kneeled on the table bench directly behind us, basically breathing down my neck when he talked (gross), never asked us how the food was, even when we didn't touch more than 2 pieces of the calamari (that was saturated in oil and desperately needed a few squeezes of lemon). He took dishes away that we were not finished with. \n\nThe food was good - some dishes were great and some were not good at all. The romesco sauce served with the croquettas was delicious! I could have eaten just a side of the sauce alone. It has just enough spice and the flavors were spot on. The trout was another delicious dish. The fish was cooked to perfection and everything on the plate hit the palette in all the right places. \n\nThe calamari was awful. It was over fried, and instead of serving with a lemon wedge, was served with a citrus aioli - the concept would have been great if worked with the dish. Even after taking the lemon from my water and squeezing on the dish, it was not appetizing.\n\nIf you check them out online and want to go try them for happy hour - sit at the bar (maybe on the patio, I didn't ask) but we were seated in the actual dining area and then told the HH menu was only available at the bar. No biggie, but not the best way to attract repeat customers. \n\nThe space itself is very nicely decorated, it was comfortable and had a lot of details that worked well with the rest of the decor. \n\nOverall, I think they did a great job with the space, if they tweaked just some small things with some of the food items, they could make them much better and as for service - contrary to popular belief, just because you're in Scottsdale, doesn't mean your staff should be wearing Ed Hardy t shirts and calling customers \"dude\".", "type": "review", "business_id": "sjCRI-lCh4KLO_RYQdlEeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X4UIrsuAdUF7ZN0fSdllmQ", "review_id": "PopF8NPDXqNRhnFFjOHlcw", "stars": 5, "date": "2012-08-14", "text": "As many other people have said in other reviews, Betito's is similar to Filibertos. However, I thought Betitos tasted a little better. The food was less greasy than Filibertos. My family had Carne asada burrito, carnitas burrito, a chicken chimichanga, and the super nachos. They all tasted excellent. My favorite was the carnitas burrito. Now, Betitos offers one dollar tacos on Mondays, Tuesdays, and Wednesdays. I haven't tried their tacos yet, but I intend to try them in the future.", "type": "review", "business_id": "aBjgE5pLhtz4RGGR-IWpGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qgI2cU2DaNHzv_qwwDoqyQ", "review_id": "SWHRqWs_qjKAbcPou7mJzQ", "stars": 5, "date": "2012-05-15", "text": "I eat here often and the lunch special is great!! Food and service are equally good. Fries are to die for.", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 4, "useful": 1, "cool": 3}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "-Qb3KcMONh4L5OF-R8y_zg", "stars": 3, "date": "2007-04-01", "text": "3 and a half stars. \n\nI finally had my first ever Valley Oregano's experience tonight. You'd think I'd have gone to the one on Camelback ages ago, because, well, I live minutes away from it, but no, it was the Tempe location which sucked me in. \n\nOk, not necessarily sucked me in. I drove my ass all the way out there to meet some friends for dinner, but still. \n\nWait was an hour which kind of bit. We were tempted to just go to Thai Basil instead but as I never had Oregano's we persisted and stayed put. Once seated, we ordered things that I won't be eating anything close to resembling for the rest of the week: the spinach salad (ok, maybe I'd eat that), the cheesy bread, a large thin crust pesto pizza, and the pizokie for dessert. I'm a huge deep dish fan (I know, I know, thin crust is how real Italian pizza is) so I'm going to reserve major potential star wattage for when I actually have one of those. \n\nI thought the pesto thin crust was pretty decent - didn't blow me out of the water but it was good. The salad was flavorful and the cheesy bread was decent, but the pizokie dessert thing was awesome. Maybe it's because I I haven't had one of these since BJ's back in college (which is a longtime ago), but it was pretty damn delicious. Scene was pretty much college-y, loud, and full of \"like, I was all\"s, but duh, what else is it going to be.\n\nAll in all, almost all stuff not good for me but whatever. Now that I've finally had my Oregano's experience I can go on with my life. Nothing like a local pizza chain holding you back.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "ca2Sa9Enqg2GlWFQ95p8bw", "review_id": "0Q71H5Y9j0-GW5_7elXiSA", "stars": 3, "date": "2008-06-30", "text": "Went there tonight before the game. The best thing about the whole bar is their t-shirts. (I really wanted the t-shirt that read \"You look like I could use a drink\")\n\nAnyway....I had the nachos...bad choice....smothered in cheese sauce and melted cheese, beans, cheese, peppers, cheese, tomatoes, and oh yeah...cheese. It was a soggy mess. (And it was huge...the nice server should have been thoughtful enough to warn me that it could feed a table of 6)... my friend had the pulled pork sandwich and the probably the best onion rings that I ever had. (Yes I stole a few)\n\nI have to give it minus another star for the HORRIBLE music that they play...seriously...if I am going to see a game, I don't think house and dance music is the way to go. But too each his own.\n\nBut I did had to cut the time short during the game because I started to get sick....hmmmm...soggy nachos perhaps?", "type": "review", "business_id": "Q1A_wVZypQeM1A3f61wq_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "WPIaXxFxKbzQR0nF8qLGKQ", "review_id": "xQriz45S8g1jDOGFSaX6rQ", "stars": 5, "date": "2011-06-02", "text": "great pho , boba :) and vermicelli .. awesome !", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zMLcLRQVs5Ms4YyE1IbKcw", "review_id": "8TaLigpTc68nv5fmrWI_7Q", "stars": 5, "date": "2011-10-09", "text": "Their Alfredo the Dark is probably the best pasta dish in Phx. And then there's the Pazookie...", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "wtz3H1UWW4V5nuZfRWDsSA", "review_id": "LlFBX3JltdgEkLnY6rFiOw", "stars": 5, "date": "2010-04-17", "text": "Hiking Camelback Mountain has to have been the most difficult 1 1/2 mile hike (Just up, 3 miles total) that I have ever been on. While it is not a very far distance the increase in elevation is over 1000 feet in that short mile and a half. \n\nThe first thing that I recommend is either getting to Echo Park at bright and early (between 4:30-5:30 am) or, if you come later as I did just parking in the overflow parking. You can find a simple map to the overflow parking at: \n\nhttp://phoenix.org/wp-content/uploads/2010/04/Camelback-Mountain-Trailhead-Overflow-Parking.png\n\nThe walk to the Echo Canyon trail head to the overflow parking is only about 20-25 minutes and it is almost guaranteed to be faster than driving around looking for a parking spot somewhere else. \n\nThe trail itself takes about 20 minutes to actually get difficult but when it does decide to start getting hard it does not let up for a moment. There are chain link fences at a couple of places in the hike to stop people from accidentally tumbling over very steep ledges and even handrails at times for more support up the trickiest sections of the hike. \n\nThe good and bad of this hike is how crowded it is. There will rarely be a moment where you wont see someone coming or going for more that 50 yards at a time. This means that while there is little to no quiet and privacy, that if something were to happen to you there would be plenty of witnesses.\n\nThe rest at the top is wonderful. The view is by far the best in the valley and something that I recommend to everyone. Take 20 minutes or so to eat a snack, drink some water, take a breather and take some breathtaking pictures from the summit. The summit is usually pretty crowded so you won't want to stay too long. \n\nBe careful on the way back. It can be very tricky navigating some of the areas and twisted ankles and even broken legs are not terribly uncommon. Again, take you time and take plenty of breaks when you need them and you should be OK.\n\nDon't forget to take plenty of water, I recommend at least a liter per person if you go in the morning and more that that if you do in when it is warmer outside.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "E83jZ7j07Hx-RcRiTbA_kg", "review_id": "RlGnOwIBjiH9-QeTER5xuA", "stars": 4, "date": "2009-03-03", "text": "Scratch is an adorable little pastry shop on the corner of Miller and Indian School. From what I gather, the owner is almost always in the shop behind the scenes creating the incredible dishes and pasteries I have come to love. I have been to Scratch about four times now and have never had a bad experience. The place itself is rather small, tucked away in a shopping center right next to a Subway, the home of the $5 footlong. The decor is fresh and inviting from the pink/grey walls to the framed magazine covers stylishly displayed along the walls (the owner's wife is the model in many of them). \n\nBut, enough about the building and decor. The food is by far the highlight of the experience (as it should be). I would recommend any of their sandwiches as the bread appears to be freshly baked daily with encrusted herbs. Each dish comes with a side salad with the most amazing tangy rich dressing (I think I will have to purchase a bottle of the dressing next time I'm there). I recently tried the asparagus soup which was deliciously creamy and rich. The quiche I would also highly recommend. I've ordered the lorraine as my entree on one occasion but have also sampled the spinach and goat cheese which was equally incredible. (each menu item is really reasonable, I think $7.50 for soup/salad, and $8.00-$9.00 for most sandwich/salad and quiche combos).\n\nPlease, no matter what you do, even if you are so very full after eating a scrumptious lunch or dinner here, you MUST try one of their pasteries (even if taken to go). I would highly recommend either the milk or dark chocolate tarte. The fruit tarts also look amazing but I have had the hardest time trying anything but these amazing chocolate tarts. They are well worth the $5.00.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "5a1aiH93zMDh6xkcDI4ueQ", "review_id": "1cqdoam9JEVnVtMvvXp7zQ", "stars": 2, "date": "2010-02-08", "text": "I was stuck between wanting to give a two star & three star. The concept of this place is a great idea. I have to say that if you happen to go on a day that there's a large party going on, it kinda like you're an unwanted fly on the wall. This play town is located in a large older shopping center that blends in with the other faded store fronts. Inside, the owners seemed to be very nice, although stressed due to hosting a party there. I was very bummed that the jump house was removed. That was 65% of the reason to go. All in all it had it's little themed houses to play in, but the whole place seemed to need a good fresh painting as well as cleaning. $8 admission.", "type": "review", "business_id": "jdtc9AARnZLOi38Qvkdm7Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "O1WXqDzwcwD-0C3CxnO5Tg", "review_id": "dmlMZcSbu3jkhCEr_xyQjQ", "stars": 5, "date": "2012-03-06", "text": "When my youngest son graduated I took him to Buzz Boys when they were in the Food City complex. He is now 25 and still goes. I gave a family friend a gift certificate for Fathers day. He still goes and so does his 30 yr old son. My oldest son is out of the Army and he started going. These men compare this to a spa for men. Hot towels, straight razor shave, etc. Hey I should get commission lol:)", "type": "review", "business_id": "ywea9tHgyxdEymLls7wKPQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "xdhu_CZVomaGPD2qB0IQXw", "review_id": "m3qgnXHTVSeSPGARAbKjCA", "stars": 1, "date": "2008-02-25", "text": "The worst Thai food I've ever had! This place was recommended to us by another couple, and wow was I disappointed!\n\nEverything was completely blase and tasteless, the only exception being the extreme spiciness of my fiance's entree(probably to make up for the lack of other spices)...\n\ndon't bother with this place.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Ke9WsSOUOdQaTRwaYibYpQ", "review_id": "iJkUrKoIFLqm2olMc0Hugw", "stars": 4, "date": "2011-02-27", "text": "Strolling down Mill street, the bf and I were enticed with free samples of cookiez. The choco-chip cookie sample got me. It was soft and chewy and enough to get me to walk into the quaint store. There's a good amount of ice cream choices as well as cookie choices. You have the option of ordering a cookie, ice cream, or even better an ice cream sandwich. I think they also offered shakes as well. \n\nWe chose white chocolate chip with almond cookiez surrounding mint ice cream. You'll see that these folks are generous with the portions when you get your nice round scoops of ice cream smushed between the cookiez. I really like that the cookie stays soft and chewy even when it is pressed up against the frozen ice cream. I feel like other flawed ice cream sandwiches have cookies that become either hard and frozen or crumbly. \n\nMention you are a student and you'll get a discount! This is definitely the dessert you want to accompany your late night date on Mill St.", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "shFcopLDSV_vDT_22WL1Bg", "review_id": "ShZAdGt4xoAt8Uawjv4Phg", "stars": 1, "date": "2011-01-16", "text": "Went there for a quick bite before the theater. Had the buffalo sloppy joes, and they were disgusting--dry buns, thin sliced pickle. Then had the duck spring rolls--also bad. Then in an effort to eat something we could tolerate, ordered the lettuce cups with shrimp, and they were just adquate. Very disappointing!", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdThxKK4ERO54RbVFgWrWg", "review_id": "jd8E5M_ftYcNX_UCVlnolA", "stars": 5, "date": "2012-04-16", "text": "I have been here many times and have always had good food and service.", "type": "review", "business_id": "fowXs9zAM0TQhSfSkPeVuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HFe4NZuq-6kOUOhst6KjtQ", "review_id": "j7GSeG7W4Dl-sdzJbjBUXA", "stars": 4, "date": "2013-01-03", "text": "I was here not too long ago. The place is cute and when you look at the menu, you can't help but be get excited to go there the first time. But its one of those places that after trying it the first time, you never have the same excitement to eat there and when debating where to have dinner on a given night in the area, Main Ingredient always comes up as your third choice in case the your first two preferences are either closed or packed. \n\nMeal: We both had sandwiches and a side of the mac and cheese. I can't remember what local beers we had, but they were excellent. They have a terrific beer selection.\n\nTaste: There were many, many delicious choices on the menu and sadly, the food is not as appealing as billed on the menu. Its still good, but it doesn't live up to the hype. 7 out of 10.\n\nValue: I thought the prices and potions were very and reasonable, but the real value is in their happy hour specials. 4 out of 5.\n\nService/Cleanliness: Our server was very attentive, silly and friendly. Her recommendation for craft beer was dead on. 9 out of 10.\n\nAtmosphere: I hate to repeat what others have said, but the atmosphere is a perfect place to chill out at. I recommend this a top place for \"Friday Afternoon Drinking Club\". 5 out of 5.\n\nOverall: If you are in the area, you should give it a shot. I think the next time I visit, it will be just for a few drinks and an appetizer. 25 out of 30 points, 4 out of 5 stars.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "meuqHEjGCmrO3zDlr6OU7w", "review_id": "pWrmOFGStyAeUpnwjNeNcA", "stars": 4, "date": "2008-01-26", "text": "That's too bad, but isn't it funny that I just wrote a review on Sportsman's!...lol Not a bad replacement in my book.", "type": "review", "business_id": "jTcLbRCOCnGB4wCgsIYswg"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "BPde0dz-vM4_fZCNPRT8sA", "review_id": "V2zUagEIWwBom8gmCfkOrg", "stars": 5, "date": "2008-10-29", "text": "I heart Rome's Pizza!! Being a native New Yorker, I have struggled over the past two years to find anything remotely close to NY style pizza. I had tried many local, independent places, but no one got it right. \n\n\nWhen I moved back to Scottsdale about 6 months ago my guy and I passed this place driving down McDowell road. I figured we could try it out (I'm always on the look out for some yummy pizza). Don't be taken back by the empty parking lot and shabby exterior, after all, isn't it what's inside that counts?? \n\n\nThe food is always fresh. The Greek salad is great - it comes in small and large. The pizza is amazing (as long as you know what you're getting - NY style). I know that it's family owned, which I always have an appreciation for. \n\n\nThe man that owns it does most of the deliveries. When I first moved to the area I called for delivery and he had to call me because he couldn't find my street. Embarrassingly, I only knew the street I lived on and not much more, so I couldn't help him. He told me that it was okay and eventually found the house. \nI expected him to get out of the car and give me a huge attitude, thinking I'm an idiot because I didn't know where I lived (could you really blame him?). But he was as sweet as could be and told me it was no problem. How refreshing! \n\nIn a nutshell, hoooorray for Rome's!!", "type": "review", "business_id": "pOQpwDJMikAgrM8BW3iHnw"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "mr6WrTGHBTy7_KYRAGvcoA", "stars": 4, "date": "2012-10-23", "text": "Got to give them four stars, \nAbove the crowed, cooked to order food here is simply great.\nYes butter burger is a fun time but the real mean is their entrees \n\nFried Chicken and Fried Cod, they keep their fries clean and use a great breading recipe, try it you'll be back for more.\n\nThe beef is ok, sometimes a little salty. \n\nmixers,\nnot the biggest fan but they hit the spot when you need to. be creative and make your own mixer. \n\nService,\nwell its ok, they do bring it to your table and when you do a drive thru don't expect this to be Wendy's, it will take some time depending on what you order. Your given a number and a nice high school student will bring some food to you.\nThe service seems to be young here, they just like hiring someone looking for their 1st job or so. No this does not create the best service but creates, our local future. giving a younger kid a job is not easy to do and these kids will move onto another job and keep working this is good karma for Culver's Phoenix and shows an investment in the town. \n\nI choose to review this location because it has been around. I used to go out of my way to find a Culver's. now they are popping up around town. As a Midwest person this is great to see. This is mid west food, comforting a little greasy but dedicated to a great meal. \n\nkevin", "type": "review", "business_id": "ykKSshfa9ANCZCuvM2LaWg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "RA3vn0rFMhHlEPW8WKw1Dg", "review_id": "qM17darbRCQm2KiemtTc6A", "stars": 2, "date": "2012-04-29", "text": "Soggy overpriced fast food burger with allot of hype. When you have to cover the walls with quotes how good your product is, then you have to something to hide.", "type": "review", "business_id": "A7Soqlerr3L8mNq3YuIqAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rl_o0q8z-Rv9bneDafM0KA", "review_id": "syGMSVteNKxjOcXzDLALrg", "stars": 5, "date": "2012-01-13", "text": "Joe's Farm Grill features everything that is All-American. Burgers, pizzas, salads, hot dogs, and a variety of other classics, each with their own twist. I was pleasantly surprised that Sonoran Dogs were on the menu (I rarely see them outside of Tucson). I got a burger that was gigantic and yummy--don't forget to ask for grilled onions. There are a number of novelties in each of Joe's restaurants, but my favorite part about this one is that it is nestled right next to farmland. The ingredients here touted to be fresh and local, and I could definitely taste the difference in my burger and especially in the fruit cup.\n\nI took my brother here for his birthday; he got a 4B and looved it. He wasn't able to complete the trifecta but there will always be next year!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lOSZu5lM0sQxrBQxb2qTiw", "review_id": "K_0K0jR-NOPKIEvDuUCvIA", "stars": 2, "date": "2012-06-17", "text": "Tried this place multiple times. Many different items. The only thing Worth remembering were the margaritas and the had pretty good service.", "type": "review", "business_id": "EoVGIsaatkdbWLY9qyFcgA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "JgufYQ94cHyEo9b8StajnQ", "review_id": "sGtw6Amj1UUiXeds6cpA5Q", "stars": 3, "date": "2011-08-31", "text": "Great place for dine-in and pick-up!\n\nAmbience: Contemporary/ Casual\n\nFood/Drink: American. Good salads and desserts!", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "f3ZqeG3aZF2a1bWaxJ94xA", "stars": 3, "date": "2008-10-28", "text": "I've been to Silver Spoon once, I need to go back to really make the decision if I like it or not. I went in the summer, it was kinda hot in there-- like most places in the summer but, the heat makes me grumpy. SO I need to go back when the weather is normal.\n\nI got a salad-- it was massive, a little too much dressing for my liking. Okay, A LOT of too much dressing but I ate it anyway. \n\nI'll probably try something else next time. The staff was nice, the snarky guy that someone mentioned was snarky, buy snarky in a fun loving way, at least that is how I took it. Snarky can come off all wrong and bad if not done correctly or if you just aren't in the mood for it, or if you yourself is snarky too-- then it's a disaster. \n\nIt's close by my work so the fact that I have not returned makes me keep it at a 3 star review.", "type": "review", "business_id": "JJi5HMpypL3xNB5HjTMeCg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3MSa_fdxgsaY9yF9vqmeUg", "review_id": "5HZfrW2QgpqJSxRuQYM2Tw", "stars": 4, "date": "2012-02-18", "text": "One of the best breakfast places in Phoenix. I love it.", "type": "review", "business_id": "-KEU36ohRQb19mrbA65Y3Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bXJ9U9e_zn8K1xKwqTArzw", "review_id": "fawi1OaSuc66NU5DOAg3WQ", "stars": 2, "date": "2008-10-27", "text": "I am a steak lover but I must say this wouldn't be somewhere i would recommend. Our steaks were cooked wrong, had a pretty blah taste and we sat in the restaurant for 20 min before anyone asked us about drinks. The drinks were $9 and were supposed to be \"top shelf\" uh I thinks not. tasted very watered down and I decided to limit myself to one at that price to quality ratio. The only part of the experience that was worth while the observing the table sitting next to us. Listening to them bicker back and fourth and argue about what they were going to get was quite entertaining....... I would not recommend going there for anyone there is plenty of other options close by that will leave you satisfied", "type": "review", "business_id": "z3zcsnK26QhC7TqDX73zvA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GZZSxeqj99IS0tay1LdA4g", "review_id": "82ISizO-RfH9PdjIVHV5Yw", "stars": 1, "date": "2012-02-04", "text": "After sitting at our table for 30 minutes and not getting any service, we left. But not before the hostess said thanks for coming in. Needles to say I will not be returning.", "type": "review", "business_id": "QdbZyl-LWFS54u93Vjd5SA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "_-JsSzkBgow_FEHNH3-HFQ", "review_id": "jYv02DS9ggyyW__uZQN44g", "stars": 2, "date": "2012-06-08", "text": "I was working in Phoenix and was told that I had to try Delux, as they had the best burger and sweet potato fries I would ever have. The fries were pretty good, but I don't think they were anything above average. The burger, though, I thought left a lot to be desired. It was juicy, but I would actually call it more grease-laden than truly juicy. I like a moist burger, but I don't want grease dripping off the bun. That was my major problem. That may be what some people like, but I didn't.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 6, "useful": 4, "cool": 4}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "TsON-K7uOkM3McnUGOUZEg", "stars": 2, "date": "2009-01-28", "text": "Let the attack of the Blue Hairs begin! You simply cannot eat here without being shoulder checked by retiree's from Sun City West & Sun City Grand. They must get to the scrambled eggs before you do, because YOU may take all of them. \n\nThe food - yeah, it's basically OK for a buffet. The selection is pretty good, the food is hot, and some of it is even tasty. \n\nThe tables are jammed in to make more room for the elderly and to maximize profits. And it is your typical buffet decor. \n\nDid I mention that the old farts are like professional hockey players when they get near a buffet? It is like in a room full of food suddenly becoming afraid that you won't get what you want to eat. It is ABSURD!\n\nGo if you must, but bring some attitude and some shoulder pads. Watch out for old farts. Wear an Obama shirt, that should really get em pissed at ya.", "type": "review", "business_id": "Q1cSwGiy-RU9XXf9T7HqRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NPoOEAPspruMOik-9sKQtQ", "review_id": "n-suBhJOCH3mL53DvyrLPA", "stars": 5, "date": "2011-06-06", "text": "Jake's been taking care of our cars for almost 7 years. He's very trustworthy and fair.", "type": "review", "business_id": "TDX5Peai64ZdDvU5xHV5cQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gUXfVNgnNF9WU73T-d-FKQ", "review_id": "DwGDdAcRkUMdbg-Y8Te-Dw", "stars": 5, "date": "2011-10-19", "text": "My new favorite place. I love this pizza. I became a vegetarian in March. So cheese pizza with mushrooms and olives is very important to me. And Mamma Mia's is cheap and delicious, my favorite combo. And my constant companion, my 9 year old daughter born in Philly and a fan of hoagies, loves their turkey subs. I'm just in it for the pizza. \n\nAnd if you sit outside you can watch the people going to the liquor store next door and watch the people playing frogger to get across the street to the Vig. Pretty good people watching.", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "91POypmo6V4sbmbULEUqWw", "review_id": "mNERItueIwweZavqKJPbNA", "stars": 1, "date": "2011-12-22", "text": "I will never make another purchase from this company ever again! The company tried to deliver damaged furniture to my home and then gave me the run around about processing a refund when I refused to accept the items. After 5 phone conversations, they agreed to refund me for refusing damaged items. I cannot recommend this to anyone.", "type": "review", "business_id": "N6aDT4tLb3nrecPEQLejTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M3_R93ma7W7bB0xB3mOW3w", "review_id": "3SiHfmiKhy80e1VqrSBN9g", "stars": 4, "date": "2010-07-12", "text": "I ordered the BBQ sampler. Chicken, pork, beef, and ribs! yum! \n\nThen I washed it down with their red cream soda and root beer. yum!\n\nMe = SATISFIED!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "59m6T_Nlc1cFNkqqUKr8fA", "review_id": "S8jKHFARQIs-PgHtCzjaHw", "stars": 5, "date": "2012-10-11", "text": "So.......I love Defalco's. My bf and I are addicted to the Il Purista, which is JUST PERFECTION, with and without the prosciutto. I've had someone describe their service to me as \"New York style\" and I agree with that assessment, so if you cant hang with it, then go be a baby somewhere else. The food is fresh, delicious, and incredible. Their lattes are bomb, and the cannolis pretty great too. I dont have a single bad thing to say about these folks or their amazing food.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bazh3LiYydXe3hvx3bF0Cw", "review_id": "iLp5pQp_Gnvn4q4kiwwRBw", "stars": 3, "date": "2012-12-31", "text": "The sandwiches are truly AWESOME. The Bobby is fab. I went to the Chandler Rd location for years and now go to the Tempe location.\n\nBut, I give 3 stars because I've yet to have \"good\" service. Something always seems to happen. I call in my order, it gets lost. I call in my order, I'm told they are too busy to take phone orders. I go down and order in person, my order gets lost again. I'm convinced I'm cursed. I'll keep going back because that Bobby is the BOMB but service is what it is.", "type": "review", "business_id": "tsom7jUEr_DetH65ZtEc3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "p_8_VBp0dX2D7V2kc08ieA", "review_id": "RHF7tcpw6Nm-Ol1aCNUtZQ", "stars": 5, "date": "2007-05-17", "text": "Just your typical warehouse club right? I guess that depends on your definition of typical. Sam's club has hours just for buisness members starting at 7:00am. You can also fax in or go online and have them shop for you. All you do is go in a pay for it.\n\nThey have a few membership levels- Business, Gold Member and Premium. The Premium level you earn 2% back on all your purchases. They do give you two cards for the price that you pay, so you can go in with a neighbor and each get a card.\n\nIn addition to electronics, photo lab, optical center, bakery, meat department, they also have a little know \"clearance\" section at each Sam's. You just have to know where it is. Also when they are clearancing out merchandise, the price will end in a \"1\". Most common is .71 or .81. I have picked up 5 pound bags of mixed candy for .71 a bag, and lots of other deals just by knowing this little secret.\n\nThey do discount their meat the day before they need to pull it from the shelves. They also will give cookies to children.\n\nMy boys also love the cafe where they get their \"pizza and drink please.\" Their menu has changed a lot lately though and I am not sure if I like it. Prices are very reasonable though.\n\nThey also have gasoline pumps outside which if you know your prices can be a good thing!\n\nIf you are not satified with your membership, you can cancel at anytime and they will prorate your membership refund. Their refund policy is really good as well.", "type": "review", "business_id": "G2HtiETaLokw0kvACS_gKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2qKgObPOV1kDl6U08Mjxyg", "review_id": "bbZJ3eRhKKw5W1qwDfQsmQ", "stars": 3, "date": "2011-03-03", "text": "When I walked in we were greeted instantly. The place smelled a bit like a hole in the wall but nevermind that. We were happy to come in to happy hour. Galbi for $11.95. Whoop! Thankfully we were the only people there because there was only one server. I ordered the galbi and parents ordered the bulgogi. They also ordered a mango and mocha boba. Ten minutes in more people trickled in. and then this is where the service started to get slow. We got our appetizer no problem. Then side dishes. Ten minutes later the entrees were ready. However, it took him 5 minutes to get our rice. \nAnother waitress showed up and we thought things would go smoother. We asked for our bobas and her response was \"he's by himself and working on it\". I didn't like this response considering we had already been there 20 minutes without any drinks we ordered. \n\nOverall we enjoyed the food but just not impressed with speed and service.", "type": "review", "business_id": "6Y-6Y6sy6qOQHrWI37zR1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9ebaAGLVIgGKpDLFwmvaiQ", "review_id": "s3d_G-qBcfIilNCx9voYHw", "stars": 2, "date": "2012-05-04", "text": "I feel bad giving this 2 stars but I'm basing it on other burger joints in the area. I recently Had a fab experience at Zinburger so this is why they are only getting 2 stars. Sat at the bar and ordered the cowboy Burger and adult choc milkshake ($14) pretty pricey and tasted just like a reg choc shake?? The burger bun on the bottom was extremely mushy and was not eaten. Overall I just have had better. All the burgers are $16, luckily we said \"happy birthday\" which is a deal thru today May 4th 3-6 PM that makes one burger free. Prob wont go back.", "type": "review", "business_id": "BO_TJFFJyXu8i2rW83hG3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vK0-o9jIxY1wpJWHOySpDQ", "review_id": "K26clvleiUhOTOrkCy1rfA", "stars": 4, "date": "2012-09-24", "text": "What a treasure! It's hidden behind downtown skyscrapers so you would never imagine it existed. The contra dancing once a month is a ton of fun and it's done to eclectic live music that sounds like a cross between Irish folk music and hillbilly blue grass. \n\nThe wood dance floor can get crowded and in the summer the air conditioning doesn't get the job done for the people who do this very aerobic dance. If a/c was better I would give it a 5 star.\n\nParking is easy and seems to be very safe.", "type": "review", "business_id": "Uayq3Wc5Y8PHLAFusOPprA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jKeaOrPyJ-dI9SNeVqrbww", "review_id": "l33u5Ejn4T9ls8gkbqV65A", "stars": 5, "date": "2008-02-27", "text": "I've done the Shabu Fondue more times than I can count! Usually, I order a cheese fondu for myself, and my main man gets a Shabu dish. They both apply the same concepts... dip something fresh into something very hot and cook it yourself with long sticks. Mm! I've tried all the cheese fondues, and the Swiss is my favorite. That smell is unforgettable. I've tried all the Shabu sauces too, and they're all pretty strong, so they season those boring vegetables right up. The cocktail menu should not be over-looked. The caramel apple martini is the best!!! Now the chocolate fondue.... Oh it's so good! They serve it with marshmallows, fruit and even a slice of cheesecake to dip in! For a very small price, you can also add a shot of liquor. (I personally always add a shot of Bailey's to add some flavor.) This is a PERFECT date restaurant, and it's not bad for groups either. The dcor is pretty rad too. The portions are healthy, but it only works if you end the dinner with the chocolate...", "type": "review", "business_id": "_uf5F_RiMBPHSl2Saex8AA"} +{"votes": {"funny": 5, "useful": 10, "cool": 8}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "YydJLd9f9e9JhwKjuZf-wg", "stars": 5, "date": "2009-01-27", "text": "Tempe Beach Park - such a gem in our landlocked State...\n\nSure, it's a man-made water source, and yes - it's pretty nasty if you plan on swimming inside Tempe Town Lake, but it's gorgeous during the day and at night too!\n\nI've done a handful of triathlons that started and ended at Tempe Beach Park, and most recently, I did the PetSmart Walk (go team Yelp) that took place at the park as well... \n\nWith the proximity of the park to ASU / Mill Ave, it really is a fun place to go hang for an afternoon - no matter what's going on there...\n\nMy only words of wisdom - don't swallow the lake water!", "type": "review", "business_id": "4JOv7EnnfZ8fD3JunQQpyg"} +{"votes": {"funny": 0, "useful": 5, "cool": 3}, "user_id": "0KXxuKxlspsO6CrDLgQJ-w", "review_id": "-N0QVhFxdmoWVHsvnsyfuA", "stars": 5, "date": "2009-12-12", "text": "This place is so unbelievably cool. In a city desperate for arts, this is perfect! \"Her Secret is Patience\" is a bold statement for downtown, a sign of youth, renaissance, and complexity. It's serenity and over-looming stature make it something to admire. I wish more public spaces in the Valley were this awesome. \n\nIt's worth checking out, even if it's not your taste in art, you've got to admit it's pretty interesting. Be sure to see at at night too! Lot's of beautiful colors accent the homogenized office buildings. :)", "type": "review", "business_id": "_P4wKLL6cyXWY1EQV2k8WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nR9u9hkiODXaIi_Emy-kCA", "review_id": "B2y7d8--8-miyFasbZ7gKQ", "stars": 5, "date": "2012-03-28", "text": "I resisted eating Zoyo for months after they opened because I was afraid I'd get hooked and be there every day. And, yep, it's addictive. They always have new flavors to try, but right now my fave is salted caramel. It's incredible. I usually pass on toppings.\n\nAs other have suggested, it'd be nice if they had smaller containers. But I am impressed that they can keep the store so clean with the giant roll-up doors open. They lead to a nice patio that's sufficiently removed from the street that you're not just breathing exhaust.", "type": "review", "business_id": "A6uIi5xvOZARZTCjF9KmsQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "OESKxoNFZcKl47NrOubgAQ", "review_id": "udh6QgSQM3dJqMbOAQBjkA", "stars": 5, "date": "2011-10-14", "text": "Finally a raw food cafe that isn't in Tempe. Love their drinks and raw food menu. Just wish their prices would come down bit. \n\nThis is the type of place I could eat at everyday. I know it is good because the afternoon lull doesn't happen to me when I eat here. \n\nI do NOT go daily, due to pricing, but I would like too, because I would simply live longer eating here. Your body buzzes with clean energy (non-caffeine) after eating here. \n\nIf you are a person who wants to be nice to your body. Splurge and give your body what it craves....Enzymes. \n\nWho knew raw food was the answer to avoiding afternoon coffee.......?", "type": "review", "business_id": "lVkDZZ8sTafPlq7f1i5row"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "SNH5L8QZ4kT9unURQUrYow", "review_id": "NxtDw0UPr3Ud4_seHl8OSQ", "stars": 3, "date": "2011-06-01", "text": "3.5 stars! I must say, I'm a total fan of their Zipps Golden Wings! Gotta love their reverse happy hour! Ordering their wings on medium is smart move, their wings are already so flavorful and sweet, that its a shame to go any hotter, since you'll mask the inherent, crisp, and juicy flavor. I'd say pass on the Fish Tacos, and if you're in a burger move, order the Jalapeno Burger. Sampled their beer, not bad! \n\nBreakdown:\nZipps Golden Wings ~ a MUST get!\nFish Tacos ~ Yawn...\nSweet Potato Chips ~ Could do again!\nJalapeno Burger ~ Delish! \n\nOverall, this is a chill spot with your better than average bar food!", "type": "review", "business_id": "7TMf1NuuAdvhG7IojZSKnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IajbWwj6l-KHrfSEwZBLgw", "review_id": "tqOlf1znB6kHvsUpyMwWfQ", "stars": 5, "date": "2012-10-08", "text": "Love this place, food is very well portioned, and yummy. I really love the endless selection of bottled drinks offered. Must try if your craving a soda different from the normal selections offered. But, they do have the standby soda selections available as well. Stop in, burgers have some crazy combinations to try.", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "u_GXHKdCfmW9FgxxkW70xA", "review_id": "p0Vw9IV8_PBa2mMOy6N9JQ", "stars": 4, "date": "2010-04-25", "text": "This is my boyfriends regular spot. When I was approaching Bailey's for the first time, I was oh hell here goes a crumbly dive bar complete with raggedy cougars, mustaches and beer guts all along the bar. To my surprise, it is a pretty cool neighborhood spot to get some drinks on the cheap, the margaritas by Clay are great, stiff but not too strong. Friendly bar staff, wait staff could be quicker, more outgoing, they're \"aiight\" thoough, lol. The crowd varies with the day and time, yes there are the beer belly's and the nascar hats being proudly worn, but some evenings they play top 40's and the crowd is younger, and a notch or two better looking. At this come as you are bar, people seem to have a good time shooting pool and having some belly laughs with friends. Again, drinks are way cheap and that helps a ton for a fridays night out or pre-drinking on a sat night to get the party started. It feels like going to Mulligans in Scottsdale, but for a lesser dime and a mile less pretentious.", "type": "review", "business_id": "dOUtKHQ8Q0eHFjKPmi07tw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "pWTUeXZKI6oJ78WTET5y2A", "review_id": "CXgz-dSWPYHllOAgUgM_1A", "stars": 4, "date": "2010-09-27", "text": "I absolutely love, love, LOVE the ambiance and decor of Modern Steak. It's beautiful. \n\nCame for Arizona Restaurant Week 2010. I would have never, ever picked this restaurant based on it's name. I do not eat steak, nor will I ever eat steak, but my friend wanted to go so I agreed since there were non-steak items on the Restaurant Week menu. I'm so happy we did! \n\nFor the first course, I debated between the crispy shrimp and the chopped salad and based on the waiters recommendation, I ordered the chopped salad with avocado, crispy vegetables and parmesan. Loved the huge chunks of avocado in it! \n\nFor the second course, I ordered the tortelli (a version of tortellini). It was the perfect size, not too big, not too small. Enough for one person. It was delicious! It was stuffed with artichoke and cheese and was heavenly. I wish I had the recipe so I could attempt to make it at home. \n\nThe dessert of Peanut Butter Cup was equally delicious. It's not what you'd expect it to be: it's smooth and creamy with a hint of chocolate, but it's damn good! I was so full from my meal and couldn't finish all of it so I asked the waiter to scoop it out into a to-go box for me and he laughed, but happily packed it up. I didn't wanna waste any of that peanut butter goodness! \n\nI'm so surprised in Modern Steak. I'm glad I gave it a chance, despite it's namesake. I'll definitely go back and tell all my friends about it too.", "type": "review", "business_id": "YCCDMLcb7UW8G-o_HsWiiA"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "iAXUAPxzKXxWMCiXLjY-ww", "review_id": "thRJ_CiWw1dBo4qy5RYPIQ", "stars": 4, "date": "2011-06-06", "text": "Went here for lunch a couple weeks back and told myself I would write a review...i completely forgot! :( But today I drove by it and it reminded me to write a review. \n\nFirst thing is...Value.....You get a ton of food....for basically nothing....they have daily specials that are always good but their burritos that can stuff a horse are like 3$....Be warned however that they dont tell you this....so when you order a burrito and 3 tacos because you think it cant be much food due to the low price......you'll know. \n\nI got a burrito with pork and it was delicious...too many beans for me but thats easily correctable next time....by time I got half way...I knew there was no way I was getting to taste the \"famous fish tacos\" if I kept going. So I stopped with the burrito and moved on to the fish tacos....yum...they were very good....I still prefer the burritos..but as a lighter meal you can do the tacos and be very full and very happy. Again...beans were a bit much but Ill just ask for light beans next time. \n\nThey also make these flavored lemonade slushis there that are pretty tasty. \n\nAll in all a very friendly place with friendly owners who live up to the name of the place and they make great food for VERY affordable prices. \n\nWhen I was there they were Cash Only...I dont know if that has changed...but bring cash just in case.", "type": "review", "business_id": "lXEJZjvwgSM3i6-HWpPwDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mwGMnMvgvKd11do4u5J3Q", "review_id": "e0exLLbL-x2q7Ldovl-xFQ", "stars": 4, "date": "2012-12-09", "text": "Rally burger is a pretty great alternative to McD's or BK, and its somewhat unfortunate that there aren't more locations in the Phoenix area. Their seasoned fries are awesome and even better with chili. What I was really impressed with, though, is their value burger selection and flavor. A simple rally burger is a buck and change and seems like some of the non-value burgers at other fast food. Good condiment to meat ratio, and flavorful. And no skimping here...you get all the condiments even on a value burger: lettuce, tomato, pickle, onion...all that. The other thing I really liked was they have a value buffalo chicken burger which was actually really tasty. All in all, yes its fast food, but its a different flare with unique options and arguably better quality in some areas.", "type": "review", "business_id": "C42yP2SAQyit92zVyRAqMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1_zj7B1bRgE7dC6tywUcTQ", "review_id": "xaFh0LwZdRkrSKjUEZHrNg", "stars": 5, "date": "2011-01-01", "text": "...The best Pad Thai I've ever tasted!!! Crab Wontons melt in your mouth!!! Excellent service... GO !!!", "type": "review", "business_id": "cInzGnaFZ3EIItvFXl1MvQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "sEWeeq41k4ohBz4jS_iGRw", "review_id": "1VxFx6plcpYFkZQngiP2Gw", "stars": 1, "date": "2008-02-21", "text": "Was I there on a bad day or what? I showed up 15 minutes after they opened and EVERY item I tried was either luke warm or cold. They have 15+ items on the lunch buffet and I tried a bite of all of them. Gross and bland. I felt sick to my stomach after I left because I kept thinking how bad the food was. Yuck!", "type": "review", "business_id": "_IE5XDjxeM47NSzhg7sItg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g8up_FWF-A5JQjuUJ_VsWw", "review_id": "Of8eQr8qe96PMILvswmlXQ", "stars": 4, "date": "2010-10-11", "text": "I cant get enough of the Chicken Pesto with Feta sandwich here. This place has a great sandwich for a reasonable price.\n\nMy only complaint is that they literally put mushrooms on EVERYTHING, but, if you are a mushroom fan, live it up. \n\nOn another not, if you like fresh lemonade, you must get a glass of it here. It goes great with any sandwich.\n\nIf you are in a Pasta mood, The chicken pesto pasta is excellent.", "type": "review", "business_id": "ojjtPlnSmCX1zCzWL7JoNQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "WIGcC8tj583Wa_ccp5dX3A", "review_id": "lgxd4CrNhaa0eBD4BWAIXA", "stars": 4, "date": "2011-11-09", "text": "Great food, great price, very awesome lunch specials. I would have given 5 stars but the service is normally a bit fast and some of the wait staff are a bit pushy!! All in all, great value.", "type": "review", "business_id": "F3SEkW6v2LJ5y6Ldo5pPaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DwU7KVfebA70AlVtX0iOWw", "review_id": "m5JWZK3ggSU1xSgE2tBbiw", "stars": 4, "date": "2010-11-03", "text": "Had the Arizona Smashburger with SmashFries, Fried Pickles, Chili, and an Oreo Shake. Yeah yeah so much for my diet. I guess today is my Smash-Cheater-Day. The Burger was good, the Habenareos Cheese, Guacamole, and Chipotle Mayo were good. The burger was not greasy at all. The 1/2lb. burger was much bigger than the bun. The pickles were a little salty, but very good and something one does not get to try all the time. The Chili is Steak Chili, very dark, no beans, with Jalapenos & Cheese. The Oreo Shake was Haagen-Dazs with real Oreos...very tasty! The place was clean, restrooms clean, and staff very friendly. Overall a good time.", "type": "review", "business_id": "R1kKjAO5kZO6d0gQGqrvGA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "05AcY8awfcsXX2SuJxHmBA", "review_id": "nNdpZovAnrPYNk3E-r0vHw", "stars": 4, "date": "2009-07-22", "text": "This place is good to go, went there on a sunny saturday morning, following battling DB's at American Junkie. Had there big breakfast (forgot what it was called), and had a cup of joe and people watched. The food was awesome and the wonderful ladies of Scottsdale are entertaining, it's saturday morning and ladies are rollin in this place like it's a fashion show, to top it off one lady had to reapply her mascara a few times to make sure she was breakfast chic!! Awesome!!", "type": "review", "business_id": "BK51tV_XtCm3UHwRVyCuqQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kpbhy1zPewGDmdNfNqQp-g", "review_id": "oj-6-dTN8YZmt1_HOcPBQA", "stars": 3, "date": "2012-03-25", "text": "I've been here a number of times and the food is always good. They have a fantastic selection of cheese and it's a great place to try boutique cheeses. \n\nThe current rating is due to the service we received last night. The hostess was very friendly but our waitress was sorely lacking. After our food arrived and two in our party still needed silverware, we informed her and she never returned with silverware. We ended up stealing it from a neighboring table. She made a bleak attempt at humor telling us that one of the cheeses was a water-based calorie-free cheese when we're pretty sure it's a triple cream. If she'd had an iota of personality, the joke might have flown. But, it fell flat and left us confused wondering if we'd really just ordered calorie free cheese. \n\nWe enjoyed our evening anyway. The service could just use a little work.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 3, "useful": 6, "cool": 1}, "user_id": "eC0SiG8pfFzjOOA0bVJy4w", "review_id": "rBe-XsR4p2OE3L-owcOjvA", "stars": 2, "date": "2012-05-20", "text": "I had never been to Dominick's and I like trying new restaurants so I was excited to check it out. We had a reservation for 8 pm on Saturday night and when we showed up the restaurant was busy. It definitely is catering to those that want to be seen and show off what they have. As we were walking up they had 6-7 of your finest vehicles backed in right next to the front door.\n\nCalling it a front door is a little misleading however. I found it interesting for such a nice restaurant to have a revolving door as there entrance. Once inside the door you are greeted by what is a darkened \"Liberace\" type decor. Think big chandeliers and crushed velvet. We were seated promptly for our 8 pm reservation.\n\nTop line the food was mediocre. We between the 4 of us we ordered the Scallops, Halibut, and the Ribeye as our entrees. For our sides we ordered the potatoes, gnocchi, and creamed corn as our sides. The main issue that we all had with the food was that it was very salty. At one point my buddy across the table asked me \" does yours taste really salty?\". I answered yes and everybody else chimed in that theirs was quite salty as well. I don't know if the chef was having a bad night but if not he needs to pump the brakes on his salt usage!\n\nFinally this place isn't the cheapest place. I am not one to complain about prices and I eat at fine dining restaurants on a weekly basis as part of my job. Our bill for the 4 of us was $500. We did have a couple drinks a piece but the price we paid did not match the quality of food we received.\n\nMy advice is to check out the bar for a few drinks and enjoy the people watching. Think Phoenix Open. Otherwise if you are looking for a good steakhouse head across the street to Ocean Club.", "type": "review", "business_id": "WSHQ9qpL39g5xA3E5iBCmw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_oeeZwI4VY-Gyxs9lMhJnQ", "review_id": "_SOA1qkwz71rE4TDy-ExNg", "stars": 4, "date": "2011-05-30", "text": "Clean facility, prices are super low! You can't go wong with saving money!", "type": "review", "business_id": "7wCysP5dwB0KdoPeHH2i2g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tTa7FOsuzCMJNyM9d4Riew", "review_id": "AdPQjNYoMbYI2EL4ii-LUA", "stars": 5, "date": "2008-04-10", "text": "being that i'm fully vietnamese and my mom has made all types vietnamese dishes ever since i was a kid, i have quite the tastebuds for authentic vietnamese food. also, growing up in so cal there are a lot more restaurants to choose from. \n\nfor arizona, this place is probably one of the best authentic vietnamese restaurants in town. i always get their pho ap chao....even the owner knows this when i step foot in the door. :) their pho is really great..the broth is good, the beef is good, the noodles are good. everything is like it should be. their spring rolls are pretty decent. what i really like is it doesn't pretend to be something it's not. it's a hole in the wall place, but most good and REAL vietnamese places are. the food is great and the service is quick.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AivhZeFM9EivrtQTc0iz_A", "review_id": "IINFb-bCmgoD3vIeSzO94Q", "stars": 4, "date": "2010-01-30", "text": "This is my favorite Tapas joint in town. It's a place I have to get the same thing everytime and maybe more to try a few new items... my must haves are:\n\nIsland Gingered Yam & Pumpkin Bisque Soup (Seasonal)... so good and the fact that it's seasonal makes it even more of a special treat.\n\nCamarones Al Ajillo (Garlic Shrimp)... this is my all time favoreite dish thus far @ Havana... I can eat it as my meal as long as they provide me as much of their tasty bread as I need to sop the dish dry of all the yummy garlic sauce it contains.\n\nMaduras Fritos... Fried plantains... need I say more?\n\nMojito... best in town in terms of authenticity.\n\nMarquesas de Chocolate aka Chocolate Pate... I never cared for dessert here until I tasted this strangely named treat. It is so rich at first you think it will be too little but then you realize you need to share with everyone at your table.\n\nOther worthy options: \nArroz Con Pollo... It has baby peas in it and I really don't like peas... but I like them in this dish! I got to try this dish because a friend ordered it as his meal and didn't even make a dent in it... so I got all the leftovers and it was pretty tasty and economical!\n\nFritoras de Frijoles Negros... I've never had Black Bean Fritters before--they are quite tasty dipped in Guacamole!\n\nCalypso Chips...A thinner more chippy version of Fried Plantains.\n\nSun Spots... Sweet Potato Fritters pretty tasty as well... for a fried root vegetable!\n\nDatiles Con Chorizo... A meatier appetizer... not the best I've had but pretty darn good.\n\nEmpanaditas... These are alright... though I'm partial to Filipino style Empanadas... but since I have no place to buy them from, nor have I mastered making them, these are quite good for a band-aid craving.\n\nTamal Cubano... pretty tasty, but my fave is the soupier Salvadorean take on the chicken tamale.\n\nFlan... haven't had it, but flan consistency throughout varying cultures seems pretty consistent.\n\nFree Goodness: Their Bread! It's just the way I like it, hot, thin and crisp crust and soft in the middle!\n\nAs you can see, outside of the Arroz Con Pollo, I have not tried many of their entrees... I'm quite content to dine with others and share Havana's wonderful tapas... but one day I WILL try their Paella. A vegetarian friend said they make a veggie paella that was pretty tasty... and she loves their Mojitos just as much as I do so I think she may be right on this one. Can't wait to try it... with a side of Camarones al Ajillo and a Mojito!", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 7, "useful": 11, "cool": 5}, "user_id": "mFOZOsPQOacWIMVSyXbEbg", "review_id": "CKks-E_enA6pysU9FBsw6Q", "stars": 3, "date": "2010-02-27", "text": "\"America's friendliest airport\"? \n\nReally?\n\nI disagree. I didn't particularly notice anyone being overly nice or particularly friendly to anyone else here. \n\nWhat I did notice is that they have the same selection of mediocre, overpriced \"we have a captive audience so we're going to offer them crap and charge an arm and a leg for it\" bars and restaurants.\n\nI hate to be provincial, but come by PDX some time and check out the local restaurants and bars and see how it's done. \n\nPlus a star for free wifi! Woot! Every airport should have free wifi! (I'm looking at you, SFO!)", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Uko9olp1xSX76138ZTmUGw", "review_id": "d8hDhmzjbNJSgwjAEoHcPw", "stars": 3, "date": "2010-01-19", "text": "Monday Morning - take out\n\nRoom for improvement - \n- same curt, terse service\n- too cramped to actually look around and appreciate their items for sale\n- food was average, but not worth all the fuss this place requires.\n\n+ I like the food for the most part and you can't go too wrong with a red velvet cupcake...can you?\n\nThis place is all fuss and hippity dippity so i surmise that is the situation with the crowds. I am sure I will be dragged there again by another friend in that neigborhood so I will try to look with new eyes.\n\n:)", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JRXRlaus7k2Mz3erUKnwyQ", "review_id": "AY6EQgNgY_dZnWaTRBP90Q", "stars": 5, "date": "2007-11-04", "text": "Barrio Cafe is an amazing Mexican restaurant. Chef Silvana Salcido Esparza travels to Mexico for many of her ingredients and you can tell - things are always fresh (they only have an ice cream freezer!), creative and authentic. I am more than content w/ a mango margarita, the incredible guacamole and the gooey caramel filled churros!! Even when the restaurant is packed, the staff is friendly and informative.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ixgYqRHucl21_3-qtPcVoA", "review_id": "4d3ZAK3T8A961JVdC9dzwQ", "stars": 5, "date": "2010-08-20", "text": "I can't say enough good things about this place. I literally have never had a plate here I didn't like, they also have a interesting and ever changing list of specials (I usually order off the specials menu). This is definitely one of those places I could eat at every day. All that and I don't even drink beer, my friends really like the beer here though.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ipdwGB5X9VGCLJGIIagGHA", "review_id": "zOdx3mcqQhq-sGR3ijVdNw", "stars": 4, "date": "2011-02-13", "text": "Treated my sister-in-law to a message here on Super Bowl Sunday. They have great hours & were very accommodating even though we only made our appts about 24 hours in advance. When we booked, the receptionist (who was really helpful and nice) mentioned the groupon promotion ($40 for $100 worth of services) as well as SpaFinder gift cards. We thought we could combine them, and we arrived at our appt to find that they weren't supposed to combine discounts. But the receptionist made an exception and we were really appreciative!\n\nThe massage was nice, could have used a little more pressure. Cute atmosphere and friendly/helpful staff. I would come back, especially with SpaFinder/discounts.", "type": "review", "business_id": "FaPyq354rkMovMKd45fuvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JDJzu-JkAMwb16nnfnh3WQ", "review_id": "8zKur05wM8EOM3d3_RIBOw", "stars": 3, "date": "2008-12-06", "text": "The pizza is just OK. Pretty crowded at lunch time and seating is a nightmare. Get the lunch special, you get a personal pizza slicer and a pan. Would get it to go if I didn't live in the west valley. Good idea to have a separate take out door but don't count on this place to be acceptable for those of us with disabilities to get around.", "type": "review", "business_id": "yKbXWo_6VlS3mD_RcPquog"} +{"votes": {"funny": 0, "useful": 7, "cool": 6}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "DGD1gYb0k1YMdDrNI00EuA", "stars": 4, "date": "2007-09-19", "text": "A friend of mine in Ahwatukee is very annoyed that I've become snobby about moving downtown (I deny this, for the record) and never go out anymore in Tukee where we were once neighbors. Tanked Fish to the rescue! I will now drive the irritating 15+ miles out of my way to eat here on a weeknight, whenever he can break free from his wife and two cute little kids (he wouldn't approve of the way I word that, for the record). \n\nI'm concerned that the high ratings this place has gotten so far will lead to false expectations. I love Tanked Fish for two very simple reasons: I always have a great time, and I always stuff my face with sushi until I can eat no more. One night we came here, ate more sushi than we needed to, had a large beer or two, and the bill for all of this... two of us... came to TWENTY SIX DOLLARS. I'm sorry folks but there are very few places on earth where this is possible. [Note: This was during a weeknight happy hour special]\n\nA snooty sushi connaisseur would probably tell you that something is wrong with the quality of the sushi. I can't. It tastes good. It has some large tables and would be a great place to bring a large group (6-8 people). As for the vibe of the place, although it has some nice trendy decor it's still more of a neighborhood bar than a destination unto itself, I would say. So don't walk into here expecting Ahwatukee's answer to Nobu (and then whine about it on Yelp and complain that Phoenix is not as cool as, say, Chicago). If your needs are very simple, and they are to stuff your face with sushi and have a good time shootin' the breeze with your buds, Tanked Fish will meet them.", "type": "review", "business_id": "oMw1SaH_zEbOOufTsGuk6w"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "V17YttiLLbDm8Y6z3Otpgg", "stars": 4, "date": "2012-02-02", "text": "Was here on a Saturday afternoon. WOW, the place was popping!!! It is bright, colorful, and clean. The menu is on the wall. There are so many things on it. I settled with a Thai Iced Tea Slush + boba. The bobas were soft and a good texture. I am interested to try the other items on the menu.", "type": "review", "business_id": "HhNY3X0kyrN5682La6N6Cg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GWrek3mSqZToa1xuSWyaGA", "review_id": "tJuumDszRlTzN8Ib_zDHtg", "stars": 5, "date": "2009-07-03", "text": "After four years of living in AZ I finally found Mexican food that appeals to me and my husband. Lets just say they changed my husbands view on tacos. He never swayed from eating vegetarian burritos until he got a hold of their carne asada tacos. In the last 4 months we lived in AZ we went there almost every week and brought friends, whom now can't get enough of them too.\nThey are reasonably priced, have great customer service and everything we have eaten so far has been fabulous. If you are looking for great food and you're not concerned with being in a fine dining Mexican restaurant, then look no further. \nWe miss you Los Taquitos.....", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "d2RAl63RTdfZF7kcuKcj-g", "review_id": "ytm7ZINhXftVNFduUmIegg", "stars": 4, "date": "2010-06-01", "text": "I'm not normally a big fan of Italian food, but after marching six miles against 1070 in the Memorial Day weekend heat, I decided it was time to slang my Groupon on the table and carb it up. And, fortunately, this was my favorite Groupon find yet.\n\nAiello's is in a beautiful building. I don't think a building has ever detracted from my eating experience, but in case's like Aiello's, the wonderful shaded, verdant patio set the mood in all the right ways.\n\nThe inside is low-key family restaurant with a dash of romance. Nice lighting, not too loud, cool bar.\n\nThe food was awesome. Delicious, probably house-made pasta with simple flavors that let the sauces and vegetables sing. An exhaustive - but not daunting - wine list - though it'd be nice to see more options served by-the-glass.\n\nAs icing on the cake, at the end of the meal, you get to play a game that might let you get your meal for free. I won't ruin the surprise, but it adds a lot of character.\n\nIf I had an Italian grandmother, this is the sort of food I'd expect she'd make. Highly recommended for a date night, classic dinner-and-a-movie style, for unpretentious delicious fare.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "lC4X2crUuxT9Ac9BlOX4Uw", "review_id": "Z4dtAeER-0uwEh2dUZThDA", "stars": 5, "date": "2007-03-09", "text": "The Rusty Spur has the distinction of being the oldest cowboy bar in Arizona and a gen-u-ine registered historic landmark. It's even got a hitchin' post for yer horses out front. The Spur has been patronized by the likes of John Wayne and Clint Eastwood -- although never while I've been there. There's great live music four afternoons and six nights a week. Other good things include plenty of parking, no cover, and a fun venue to people-watch.", "type": "review", "business_id": "A8Khz3eeqIFFGaXurg3hxw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "oaTIUVcMC10Cqb6XH9eP3g", "stars": 3, "date": "2012-04-24", "text": "I am a BIG fan of chicken and waffles and I will try it just about anywhere it is served. I especially love it in the morning; when everyone else is ordering a light breakfast, expect me to go for the fried chicken.\n\nLo-Lo's was just alright for me. \n\nI liked the chicken, but I was not fond of the waffles. They were a little too... thin? Light? I dunno how to describe it, but I like my chicken AND my waffles to have a little crunch. And there was kind of an interesting taste to the waffles. I can't put my finger on the flavor.\n\nI liked the atmosphere okay, but I probably won't be back.\n\nI know Mrs. White's Golden Rule Cafe is not for everyone, but honestly I prefer the feel there. It feels less \"affected\" by its customers, I guess. For some reason I am finding it hard to come up with the words here, but Lo Lo's feels like it is the more popular cousin of Mrs. White's... you know... the one with the Letter in Football.\n\nAnyway, I am glad Lo-Lo's is thriving... Maybe I will try the Scottsdale location sometime to see if they have a different spin on things.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "E5QyEU6FCQwnTys0S73zNw", "review_id": "cPF9quMMe24SqKBYQjvnJQ", "stars": 4, "date": "2008-12-04", "text": "1 word. PIE!!!!\n\nthey have really good pies here, traditional, and some not so traditional...but still really good. \n\nfood is ok. nothing that will blow your socks off. i find it better in my freezer section then in the restaurant. pot pie is pretty good too", "type": "review", "business_id": "-XlBQrxN_ZB3MZKxLBeAjA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "0qEaKXU1A-Ql5SR4Q1KDkQ", "stars": 1, "date": "2009-03-31", "text": "veerrrrrryyyyyyyyy dirty. I think I will buy them some clorox wipes and light bulbs for their sign out front. I made 12 u-turns trying to find this place.", "type": "review", "business_id": "yW4XOMS4biiSXOwkbZ6wpA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gvB1Ja5gT4ut9R0I9EA90g", "review_id": "cSut20XyNzB84gc_gK7YgA", "stars": 4, "date": "2012-03-07", "text": "Absolutely delicious food at reasonable prices. Only complaint is that they only sell cans of soda. This kind of meal requires a big old drink", "type": "review", "business_id": "jkULHBAZBM3s5DQJkM-6RA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YBtz3DqUwLHXkAV_1L8AgQ", "review_id": "ZxWme0p0DP42m1q3uK0Wmg", "stars": 2, "date": "2010-01-27", "text": "Five Guys is great for those days when you want to spend $12 on a glorified fast-food hamburger. The meat comes in a wafer-thin patty, and doesn't really taste like anything, just like at Wendy's. The bun tastes mass-produced. \n\nI also don't especially care for their fries, although this is a matter of taste more than anything. I'm not generally one for mushy, thick, \"natural\" fries of the sort served here. \n\nI can't help but wonder if people rate this place purely on the quantity of food that you get. The normal size for the burger is a double-patty, and the fries come overflowing from a 12 oz. drink cup. \n\nI would rank the burger places around mill as:\n1) Smashburger, for their delicious Arizona burger, and the awesome smash fries\n2) Chuckbox, for delicious char-grilled meat that actually tastes like meat\n3) In-n-out, for great-tasting meat and some of my favorite fries\n4) Five Guys,\n5) Fatburger, seriously why the fuck does anyone eat at Fatburger?", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lViWWAZLMGz_TMKfrLon-w", "review_id": "l5_EzmG6RXQ6FIaC_-__QA", "stars": 4, "date": "2010-01-19", "text": "It was great coming to this store. It has a large selection of trendy clothes. I will come back again.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oJDk-z68ThRJ_xfB5sQ80Q", "review_id": "RlghdwGTAgpqICy4-SvQ0g", "stars": 5, "date": "2012-06-15", "text": "Tommy V's is a delightful twist on old town dining where fine wines come with a surprisingly refreshing price and food pairings are always fresh and so delicious. The atmosphere matches the name - just oh, so chic! and the staff is always very gracious! We will return many times this summer with the new special app & entree deal too! \n\nWhen I set out to go to happy hour last week, I didn't expect Prince Edward Island Mussels and a most fantastic wine that our waiter recommended!\n\nTommy V's has the recipe for success in good cuisine, wine, and ambiance!", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bIlYtJE3y0iWJLdWyN9p9g", "review_id": "y2kyPWnfWQP6JB2Dmdw7wg", "stars": 4, "date": "2009-10-17", "text": "Never had a bad meal. Just this week had the halibut ceviche special and as always the best guacamole (especially if you like garlic). The green chile stew was good, although I would have liked a bit more kick. Dined in the patio for the first time and it was great atmosphere. However it was a bit humid. Still a great experience.", "type": "review", "business_id": "DDnmNTvIIQu2t3WZ2EQx-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "21iOujAEuKcsLpDXviKWvg", "review_id": "ru--5FCC716kghnOc56joA", "stars": 5, "date": "2012-07-25", "text": "We love Niro's! The hot dogs and Italian beef sandwiches are dynamite! The Greek salad is big and fresh. The gyros are also excellent. I'm a French fry junkie and these are my favorite in Phoenix! Service is fast and prices are good. The owners are almost always there and make us feel so welcome!", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "lmO4wYt2RA5n6F-AlnECJg", "review_id": "xW6fzPPhfavH5QHjGhW3Dg", "stars": 4, "date": "2012-07-11", "text": "The Best hash brown casserole ever! My daughter loved the apples and sweet yogurt. The Staff was super friendly. going back this week", "type": "review", "business_id": "AIN4FSq5ZM4Il5BzXzMNXg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BjDtik9NxtA1FjXBXFOW_g", "review_id": "Ug2UC3TB1K2EC59cT6hbAQ", "stars": 1, "date": "2012-08-13", "text": "Jimmy Johns is cheaper and better ... The Capriotti food is heavy ... and it doesn't taste as good as you think it should taste", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 6, "useful": 10, "cool": 8}, "user_id": "kvhwo-rYxTWCGi3Sol5zIQ", "review_id": "0m-DMDSCVTv5fo-GQf37vA", "stars": 5, "date": "2008-05-18", "text": "On my little trip around the city I drove over to Sweet Pea. Very cute store and great personable staff.\n\nNice selection to baked goods and great taste.\n\nWhat nice find in the downtown area. I've got Wicked Bakery up north and Sweet Pea downtown... North and South is covered for those sudden cravings... now time to find something on the on West and East sides of the city.", "type": "review", "business_id": "Y-ci4KjSUdwfc6ru4XnX8Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "jx104chvz7NbkVytXldUGg", "review_id": "HI68rZCpGX7QYT67tgFOmA", "stars": 4, "date": "2011-05-22", "text": "I've been here a couple times and from reading other reviews, I must have come on a good night! Both times I was here we sat on the patio and really enjoyed the atmosphere. They have a large rock pit? in the middle that they light when it's cold for heat. \n\nI really love the mussels in the white sauce here and last time I also had the spinach salad. It was delicious! Fresh and served with the perfect amount of bacon vinaigrette.\n\nThe service is good, nothing special - but what is with the waitresses wearing flip flops? I just don't see how that is sanitary especially if they're walking in the kitchen. \n\nOverall it was good and I'm sure I'll be back. I keep meaning to come for happy hour when they have 1/2 price appetizers! A bowl of mussels and a glass of Sauvignon Blanc is all I need for an inexpensive and tasty dinner.", "type": "review", "business_id": "hzHyNCc3WijMVOzPcCuRJg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k5BJbz43TUKOBygmatgehA", "review_id": "bJuGT12WS95sJfVRGtcSsw", "stars": 2, "date": "2011-07-30", "text": "I don't get it!!\nMy husband, daughter and I went to eat at Joe's because we saw a menu in the Hotel where we were staying nearby. The Menu mentioned that the TV show DINERS DRIVE-INS AND DIVES had done a show about the place and indicated the menu items that were highlighted on the show that were supposedly delicious!\n\nI called ahead for directions and was greeted with an attitude when I explained that we were from out of town, staying at a hotel that has their menu and needed directions to get there. I assumed since the menu was in the hotel room that the employees at Joe's would know how to direct someone to get there from the hotel. After I explained several times the cross streets and the name of the hotel where we were staying, explained that we were just north of the 202 freeway etc and was just about to give up, the girl finally was able to give me directions. Was that an omen of things to come??\n\nThe first irritation that we encountered was standing in line and trying to decide what we should order while there was only ONE cashier. So when we did reach the window to place our order we could practically feel the irritation of the people waiting behind us while we tried to ask a few questions about the menu. Feeling pressure to hurry up by the impatient look on the cashiers face we ordered a variety of things for the three of us. The Fontina Burger, Pulled Pork Sandwich, Onion Rings, Sweet Potato Fries and Fresh Beet Salad.\n\nWith the variety of what we ordered you would think at least one of the three of us would taste something we liked, but the only adjective that we could come up with for everything was BLAH. \nI am not exaggerating....we were all hungry and we are not picky eaters, but we just couldn't get a good bite of anything.\n\nAlso when I placed our order I asked for side orders of the onions rings and sweet potato fries but the cashier rang up full orders which I didn't realize since my husband paid the bill not knowing it should have been less. Our bill for the 3 of us was equal to what we would pay at a restaurant with someone serving us!! I wouldn't mind so much if the food tasted good but...... \nTheFONTINA BURGER was cooked very well done (I ordered it medium/well). It had a very slight smear of pesto (so slight that I couldn't even taste it) with a few small pieces of mushy grilled pepper and the fontina cheese. The burger was so unremarkable that I can't even remember if there were \"greens\" on it our not. I would describe this burger as DRY and BLAH.\nThe ONION RINGS had such a crunchy exterior that it actually hurt our mouths to bite into them. Besides that, the onion pieces were so thin you could hardly taste the onion. It was like eating a basket full of crunchy fried breading.\nThe SWEET POTATO FRIES and the WHITE POTATO FRIES were also just BLAH....how can you mess up fries?? After some serious thought we decided it had to be the type of oil that they were fried in. It was just tasteless. Even salt and ketchup couldn't help these fries! \nThe BBQ PORK SANDWICH was just okay as was the COLESLAW. Not really much to say about them. \nThe BEET SALAD tasted like dirt. My daughter and I both love beets but neither of us could take more than one bite of this salad.\nThe PICKLES that they put on top of everything are just gross. What they heck is wrong with just a dill pickle? Why the sweet and sour wierd flavor combo??\n\nThere is only one DRINK MACHINE and CONDIMENT BAR and it is OUTSIDE! So to fill your drink or get your napkins and ketchup you have to go out the door and stand in line then try to get back in the door while juggling everything. Irritating!\n\nMore irriation came in the form of the FLIES swarming our table which made for a very frustrating time of swatting them off of our food between bites. \n\nWe were all hungry but none of us finished our meal because we were just bored and frustrated trying to get a good bite. We even tried to doctor stuff up by dipping our fries in the bbq sauce and adding ketchup to the burger but we just couldn't fix any of it!\n\nWe left feeling ripped off, vowed to never return and decided we deserved to stop for an ice cream someplace on our way back to the hotel to get that IRRITATING, BLAH, SWEET and SOUR, DIRT flavor out of our mouths.\n\nPAY ATTENTION TO THE DETAILS would be my recommdendation to the staff of this place because everything really adds up or takes away from the dining experience. We were overcharged, irritated by the set up, atmosphere and flies and we were still hungry when we left! \n\nI am submitting this review because I don't want other people who have never eaten here before to be fooled by the FOOD NETWORK show hype the way we were. The only reason I gave two stars is because I like the \"farm fresh concept\" and wanted to give the place credit for that.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "hIxoPSLTrNc22DhU8yLziQ", "stars": 4, "date": "2008-12-01", "text": "Went on Halloween night for dinner. Very good. The steak came out sizzling in butter, the way God intended good steak to be. Service was great but they put a bottle of San Pelligrino and poured it before asking us, now I would normally buy it because I like it and for $8 it is a nice add on, but they should ask first. Also, beware: the Wedge Salad is just iceburg lettuce and Blue Cheese dressing, NO BACON!! WTF? No Bacon, but I asked for a side and it was all good. Desert was just OK, and their side dishes were above average. Great for special occasion. Will go back. Oh they don't have jack on tap if you want a good draft. I was really let down with their poor beer selection.", "type": "review", "business_id": "iDoigI3605ixHl_qHly3Tg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kk05snSafuIFK0lsxoMNzA", "review_id": "Ke6U7-DdKhoEmxyiDX5Rqg", "stars": 5, "date": "2011-07-22", "text": "Great food as always. The owner is incredibly professional, friendly and charismatic;came buy three times to check in on experience and even asked if we wanted more antipasto salad items(on an already generous, well-priced portion.) The service is great. Homemade breads. Extremely generous portions. I would highly recommend this restaurant to all.", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "enO2RiutNuor8px7AmK81Q", "stars": 2, "date": "2011-02-23", "text": "The wood saw is always out of service...\nThe garden department is nice, but the staff is a little strange.\n\nThis location never seems to be busy, so check out times are short. \nThe prices are higher than \"another\" home improvement store just east on Baseline.\n\nMeh.", "type": "review", "business_id": "siFw3cNWKfFL14K3aF2Fiw"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "jccGOMPTOGS22Tp2m9PAog", "review_id": "ee69p6ClyhkfwbMFSVn2kw", "stars": 3, "date": "2011-06-16", "text": "Mi Patio is a solid 3 star restaurant. Some days the food tastes better than others. And some days the entertainment value is better than others. But it's not a chain, it's within walking distance and has very affordable margaritas.\n\nThere's no bike rack (ugh) and the taquitos are basically a carne asada taco with no toppings (which I happen to like).", "type": "review", "business_id": "cVejKU_SrdbvzIbQ4oPV0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qX5smYIbztZlwln8T_0GhA", "review_id": "OXgKo0GNteuwE4cBonPenw", "stars": 5, "date": "2010-01-09", "text": "Service is good... The newer waitors tend to forget you're there. Food is delicious, never gotten food poisoning... Cheesecake is magnificent... The best kind is the Godiva, expensive bit worth it!", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "HZUtSScc3-43nuwEXHijUg", "review_id": "zw4ju3HPTnF-bDV21BrTjw", "stars": 4, "date": "2011-04-13", "text": "Wow. \nThe food and atmosphere here are great. \nThe music was a little too loud, but, for a weekend away, this place hit the spot perfectly. \nThe wait was rather lengthy, so we stalked the bar until some folks left, then had our dinner there. \nI had the largest shrimp cocktail of my life, some really good wine, and grilled asparagus. \nThere are so many delicious options in Scottsdale, but, this is pretty specific in vibe. Check it out.", "type": "review", "business_id": "QKGZajo_Xm6AW3lHkU9Mmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RxjMkVg0oJSW9ryGbu5fBg", "review_id": "2PxSC_3BLMG5CgVhMlRA7A", "stars": 4, "date": "2009-05-10", "text": "Awesome little hole in the wall in Tempe. There isnt much room to sit and it isn't fancy but if you want good food this is the place to go. A pasty is basically a calzone(only better) with a variety of different types of fillers. I had the bangers and mash. The wife had the Italian. Everything was great served promptly and with a smile. It's not Scottsdale fancy and that's what I like about it. Best part is you can get a hearty meal with a soda for under $10. If you want beer expect to pay a bit more.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UBIeuiLY9PobybSgo0qhWw", "review_id": "ObAaQm64bZMJtoLgeTFGbQ", "stars": 4, "date": "2010-08-09", "text": "Ok I have waited long enough to review Postinos...I have been here more than any other restaurant since I moved to AZ so I had to share my view on this place! I go to the Arcadia location most often so my review is based off of that..\n\nThis is me any one of my best gals Sunday spot...we go maybe twice a month and enjoy the Reggae, $5 Glasses of wine and of course the BRUSCHETTA!!...All of my fellow Yelpers have pretty much summed it up, all of their bruschetta is AMAZING!!! my favs are the brie with apples and the prosciutto with figs...I can eat that all day long...their sandwiches and salads are yummy as well...my next goal is to make it here for brunch :-)\n\nOverall\nvery casual and laid back vibe\nparking is a bit tricky \ngreat for dates, lunch, brunch, bdays, holidays...and the list goes on...", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3nloQugUWEHFp_LYBXTRWg", "review_id": "TFod1U3ynO4hqP-BSihiOQ", "stars": 5, "date": "2009-05-11", "text": "This is a great boutique in North Scottsdale. Ruby has such cute dresses to go out in and is a little jewel box inside of this shopping center. As the two other reviews said they carry great brands like the established Tibi or even new brands. One that I saw and loved from Phoenix Fashion Week was Smoke & Mirrors Clothing from Los Angeles. Ruby carries a lot of what I saw and loved on the runway. Ruby is always getting new stuff in so it's a great place to check in with anytime you need a dress or a kick start to your newest fashion routine. Two thumbs up!", "type": "review", "business_id": "D312YvSd7vyD97Sv6zgjWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3lmbN9XXScviLES_MWo3wg", "review_id": "SnK6-nPtFlDpiky06FaobA", "stars": 5, "date": "2010-02-13", "text": "I'm ashamed that I haven't left a review for this place yet. I've eaten here for a good while and I've never been disappointed with the food. Well, there was this one time, but it was because it was sold out. I'm okay with that, it tells me it was really popular that night. Anyway...\n\nThe prices are good, the teas are good, and it's just fun to sit in the pews while watching the candles melt. Every friend I've brought here has had a good time with an equally good meal. I'm a sucker for the royale with cheese and a side of thousand island.\n\nYou know what, look at the average review score. I really think that's the most telling part of this place. Really. Go. Eat. Enjoy.", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8RBt1D6rKLMVFVstL6UHBw", "review_id": "yLiM5qenm_gJRssxhw5jpQ", "stars": 4, "date": "2012-01-30", "text": "This place has a great selection of Korean dishes and even some Japanese. This is a family favorite, from the stews, the BBQ, the bibimbop, to the side dishes. The staff is always friendly, sometimes a little slow, but always a great experience. There is a sushi bar and you can either cook the BBQ at the table (2 people or more) or have it cooked for you in the kitchen.", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 3, "useful": 2, "cool": 4}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "-AFUKcvt6C6mrGr7H6waZQ", "stars": 4, "date": "2008-08-19", "text": "I went there on a Mon around 9:30 am. It was a ghost town and we got seated very quick.\n\nI have to say they have the most comfortable seats! I didnt sit in the chair but a like bench couch thing? Super soft.\n\nThe whole decor and music vibe was really cool, I really dugg it.\n\nMy girlfriend got french toast (because she is a bitch and has to be super toned and fit with out working out or eating good)\nwhich came with chicken apple sausage. Ok, heres the thing about that, I hate sausage(insert lesbian joke here) but it didnt have the typical sausagy flavors. It was really really good. It was tangy salty and sweet. \nThe french toast was extremely good. I think it may have been dipped in blueberry before cooked?\n\nThe waitress was super accomodating, and nice. \n\nOh and they do have french press coffee which I was disappointed by , but after I had it.. holly crap best coffee ever!!!! it was smooth had good flavors, no bitterness at all. \n\nThe only use butter and vegetable oil which is soo nice to see they dont load you up with horrible for you margerine. \n\nMy only complaint is, I ordered a sandwich and got a totally different one. When I told them she went to the cooks and found out they didnt have that bread and randomly added egg? \n\nShe took it back and it was no big deal but she informed me it was only a month old and were still learning the menu. \n\nKinda weird but nothing big, my new favorite breakfast place.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z8Mi9n14nNc1fU9Y9yz7Gw", "review_id": "MCpDw9LEmKhusFYbdiZ0WQ", "stars": 5, "date": "2011-07-31", "text": "Delightful experience! I came in with my 2 little ones alone. Jay was our waiter, and a very good one. He got the chefs to prepare their sunsine roll with orange and passionfruit dressing, because I am highly allergic to mango. He was very accomodating. I also had the seared tuna tataki, which was also excellent. My kids had miso soup and their fried rice; both were very good. I was very surprised that a strip mall sushi joint would be thay delicious. Thumbs up!!", "type": "review", "business_id": "xCryT3Vzk_RLIkhiuUJwjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UIHT5FjnQu99trc8mueQEg", "review_id": "BnOLrlS5JPb_AcrR77YRnA", "stars": 4, "date": "2012-01-09", "text": "This was a brand new experience for me, but so much fun! The staff was very patient and helpful, and we felt perfectly safe after some one-on-training even though we were all newbies. Only complaint is that the beginner's walls were a little crowded, while there were a lot of super advanced walls not being used. May want to swap the ratio to match the customer base. But a very good time and an amazing workout. It may be days before I can lift my arms again...", "type": "review", "business_id": "X3oBAKtG0qSwYvXIhpl5vQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rHG-s9FSI6i4T__Ee0F-SQ", "review_id": "b_lyZ3mwL3UxrawhzyKjhA", "stars": 5, "date": "2010-01-25", "text": "This feels like a neighborhood bistro (much like the ones I have visited in New York). The food is wonderful and the wine selection varies which I like. My favorite dishes include: Salmon, crab crepe, burger and ahi tartar -- but their menu changes often, so don't be surprised if you eat something you like and it's not there next time.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ofQpgTzPos-L5ZS_mP4qmA", "review_id": "J9JaxPpHR7mwYrHHNsc45A", "stars": 5, "date": "2011-08-01", "text": "What can I say...Maharaja Palace was my midday getaway while living out in Phoenix, and I miss it dearly. I visit as often as I can (up to three times a year, traveling from Hawaii) and when I do, I am always astounded by the flavors and array of choices this buffet provides. The tiki marsala happens to be my favorite dish and I find the staff to be accomodating and attentive, especially when ensuring I've got enough na'an to sop up my plate's delightful curries. I can't wait to return. This is THE SPOT for Indian Food in the PHX Metro Area, hands down!", "type": "review", "business_id": "NKSA0em3dHSGTyo6Eu-Waw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "chHPENVb7riEeZ4W0GUkUQ", "stars": 3, "date": "2010-11-02", "text": "I'm no regular here, but on occasion I get a craving for an Iced Mocha that tastes like chocolate milk. Tully's has that down. That's the only thing I've ever ordered here (I go elsewhere for my usual espresso needs), so I can't speak on the rest of their drinks. But, I don't imagine the rest of their drinks being bad; their Iced Mochas are very enjoyable.\n\nThe service can be spotty. There are a couple ladies that work there that are sweet and take good care of the customers. But I've also encountered a couple of employees that aren't friendly and/or are super slow. Whatever; Tully's isn't my usual haunt. But it's good for what it is: fast-food-coffee.", "type": "review", "business_id": "iXemrsz9L2ak1wDOI6dXOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VDCHcdTkrUUSLz0hcKK6vQ", "review_id": "VSQjiI2ulJhw2yYgFB_s3A", "stars": 5, "date": "2012-11-24", "text": "The family and I love this place, as does anyone I've taken there. \n\nFirst time I went I had a cheeseburger pizza - huge and delicious. \n\nTheir beer is great too - brewed right on the spot. \n\nMy wife loved the fish tacos -- it says a lot about a place that every time you go, everything you try, is fantastic. \n\nYou'll pay a little bit, but it's worth it.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "NnX4Pq_pibIt_1GSi-fx1w", "review_id": "1YLRs3iazYgEKTVgNtWbig", "stars": 5, "date": "2011-12-01", "text": "theres a gun check upon entry.\n\ni often forget AZ is quite different than CA....\n\nmy first and only experience at cabela's was on black friday. i honestly havent participated in black friday much in past yrs and questioned deals really being deals. but HELLO deals at cabela's.\n\nfirst of all, they gave away rifles to the first 800 people we were there on black friday. again, im not in cali anymore! this place is an outdoors lover dream. and on top of selection and discounted prices...its almost like an amusement park: \n\naquarium room with freshwater fish, back natural history museum-eque taxidermy displays, heads of animals and maps of where they originate from hanging throughout the huge main room, a chocolate shop, and entire cafeteria. \n\nbasically, you can make a day out of cabela's. we were there for 4 hours and i didn't even realize.\n\nbut now lets talk about the deals....the deeeeaaallssss.\n\n\"i could easily spend $1,000 in one trip here.\" - my guy, as we finally left the building. a stranger chuckled who overheard, \"yeah, no kidding.\"\n\nthe damage on my credit card was...\n\nCabela 3 season jacket, orig $40, on sale for $17\nhttp://tinyurl.com/cmtkood\n\nColumbia parka, orig $160, on sale for $100\nhttp://tinyurl.com/c785ykr\n\nLightweight hiking socks, orig $10, on sale for $2.99 (when the tag said $5.99 and all the rest weren't on sale...think that was a mix-up i scored on there!)\nhttp://tinyurl.com/cspjnfm\n\nColumbia waterproof super cute softshell zip up jacket, orig. $100, on sale for $80\nhttp://tinyurl.com/ca765ua\n\nSnow pants, orig. $40, on sale for $20\nhttp://tinyurl.com/bnd5erj\n\ngloves and hat combo pack for $10\nhttp://tinyurl.com/c7zwftv\n\nmerrels hiking boots, only thing that wasnt on sale :((( but only $120\nhttp://tinyurl.com/c7pkagm\n\n---sheesh, some of the things are even more discounted, or on sale when they werent , now that im looking online.\n\nthats not even the tip of the iceburg at this place. campers paradise, fishers paradise, hunter's paradise.\n\nalso, single ladies...id say 80% of the customers in this place are always male so... ;)", "type": "review", "business_id": "KFg2T3nHlzjMByX4y_V8LA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "vpS3d9086NGbxq0WF5pA5A", "review_id": "K3fb-Mcc7eR68tPm_FfEmA", "stars": 5, "date": "2010-04-15", "text": "Since I moved to AZ from Los Angeles I have been searching far and wide for a sushi place that met my high standards for great sushi. Sakana is hands down the best in town. The fish is fresh, the rolls are huge and nothing beats the .50 cent appetizers when you buy a beer! I recommend going on a weeknight, Friday and Saturday nights can fill up pretty quickly so you might have to wait.... but it's worth it.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X8Kwao6QzXNIjoaXyrGO5g", "review_id": "FGuPpQ282gr0trTCKt3diQ", "stars": 4, "date": "2011-12-17", "text": "The first time was so good, we had to come back! The Peach Creme Brulee pancakes wowed my partner both times... something totally addicting about the crunchy edges. Their Daily Dose Hash is a delicious blend of sweet potatoes and onions, with so much more, making me wish I had the recipe. The omelets are good, it's just that I want them to be better, to the point where I have to have them again. Both the Caprese omelet and the Bacon omelet tasted like the listed ingredients were put into the omelet. That is different from making the combination of ingredients to a whole delicious oneness. I'm going to go for the French Toast next time. The service the first time was a 10+ out of 10, with the 7am server being very friendly, very helpful and made the whole experience even better. This past Weds morning, it was good, nice, perfect service and friendly... about a 9. I really like this place and I'm going to go back a few more times to find the best dish.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 5, "useful": 11, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "1Q8FTnakDBHIapFBAJIrTw", "stars": 4, "date": "2010-12-20", "text": "Bye bye Phoenix Houston's, hello Phoenix Hillstone!\n\nI've been a huge fan of Houston's for years, and had mixed emotions when I heard that they were closing the Phoenix location and opening just down the street under their parent company name, Hillstone. But after one visit, I'm sold... \n\nHillstone has the same favorite dishes that Houston's had (spinach dip, grilled artichoke, veggie burger, fresh vegetable sides, fries, desserts, etc...) and they have a huge wine list as well. Service is attentive and sweet (thanks McKenna who was our waitress last night). Thanks also for going above and beyond and creating rootbeer floats for our table upon request!\n\nThe Hillstone group did a fabulous job building this new restaurant - it's got a great outdoor seating area, a huge bar, an awesome wine cellar, and comfy booths inside as well.\n\nIf you still want the old name (Houston's), the location in Scottsdale / Hilton Village is still open, but I highly recommend checking out Hillstone to change it up just a bit.\n\nWelcome to Phoenix, Hillstone, and yay for me... first to review!", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9vxUUOoasnu8gtoXRwAhYw", "review_id": "r-Cqomg4NHrAXw_lyDeWNA", "stars": 4, "date": "2009-08-09", "text": "The good: nice place, nice service. nice experience. \nAs all have mentioned before, interesting and delicious wine selections and bruschetta to die for [I am a fan of the proscuitto/fig/marscarpone and the smoked salmon]. Knowledgeable and friendly staff. \n\nThe bad: okay, the not-so-good...hideous parking [but there's a $3 valet] and really loud. Interesting vibe and a mixed crowd. Would bet its great when the weather cools down and patio seating is more appealing that the current August sauna. \n\nAll in all, I'd go back, eat. drink. eat some more.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 4, "useful": 2, "cool": 2}, "user_id": "IXaxy5NZ_ku8rkXt04lxVQ", "review_id": "qSEMTr86RSjlOsedZhXb_g", "stars": 5, "date": "2008-12-04", "text": "Wow. Wow Freakin' Wow.\n\nI have never, ever had such a perfect dining experience from the minute they greet you, learn your name, cater to your every need, and give you FABULOUS, beautifully prepared food since...well, NEVER. \n\nI must say I did do my research, so I did know what I wanted to try and even though I kind of expected the JW Marriott to be more of a snooty place, I felt it would be closest to my house and wanted to find out for myself what all the hoopla was about this Roy person and his fish.\n\nI went with my friend Amy who was visiting from New York. She had been to Roy's before and is a fellow foodie. We got to the restaurant early and went outside on the immense patio area to sit and have a drink. It's December so a bit chilly but the HUGE, soft patio furniture was extremely cozy and we sat and had $20 martinis (LOADED with vodka. Warning: We had to ask for more fruit juice! And we are major drinkers - just gotta throw that in there.) Our waitress on the patio could not have been more accomodating and she even brought us new martinis even though we drank quite a bit of our strong ones. I am a people watcher and it was nice to see that there was an assortment of people sitting on the furniture, some of them looked like they could be relatives of mine, enjoying the late afternoon, reading, conversing....well, if I HAD any rich or classy relatives, that is. It was very nice and relaxing. Plus the Mariott property is stunning and I wish I could have looked around the property more than we did.\n\nWhen we meandered inside for dinner, the hostess greeted us by name and our server showed us to our table. She was very competent, could make recommendations, and was pleasant without being clingy. We loved her. She reminded me of Joan Cusack. Sounded just like her!\n\nThe complimentary appetizer of lightly spiced, steamed edamame was delightful and even though they gave us warmed wet washcloths we were complete heathens and ate with our hands without ever using them.\n\nWe shared the Roy's Canoe for Two, which had Lobster potstickers, Beef Satay, shrimp on a stick (not its real name), and Tuna Sushi Rolls. I must say - the Lobster potstickers - better than sex. The Beef satay was basically this ultra-tender beef on a stick, lightly flavored and grilled. Fabulous. But the pinnacle of perfection here was the Tuna sushi rolls, which absolutely knocked our socks off. I have never, ever had such an amazing piece of sushi before that moment. I think our server, Joan Cusack (Not her real name) thought I was choking because as I ate it, my eyes were rolling back into my head in ecstacy. She bustled over and once she got closer she could see she was merely interrupting a very intimate moment with me and my tuna roll and she went back to her post after giving me a thumbs-up sign. For whatever reason, these tuna sushi rolls were encrusted in what may have been macadamia nuts and it was completely divine. I re-live that moment over and over. MMM.\n\nBut you know, the showstopper was STILL yet to come. I could not believe my luck when my Roy's Trio was placed in front of me. It was a piece of Hawaiian butterfish in Miso sauce, a piece of Seared Ahi, and a piece of salmon. The poor salmon! It was the best salmon I ever had out, but next to those two it was like Cinderella's ugly stepsister. Just upstaged by the butterfish, which is melt-in-your mouth decadence, and the seared ahi - which surpassed the tuna roll I just got done fantasizing about as the most perfect piece of sushi EVER.\n\nAmy got the butterfish. We licked our plates clean. Amy tried my Ahi and declared it, like I did, the BEST seared Ahi on the planet.\n\nFor dessert, you KNOW I had to have the molten chocolate souffle. How good was it?? Brad Pitt could have walked up naked to our table and I would not have looked up long enough to stop shoveling it into my face.\n\nAmy ordered the 3 creme brulees - one had a Hawaiian orchid on it, and they were not only lovely but they tasted amazing. The coconut one was so fresh and it made me think that THIS is what every coconut cream pie in the world needs to taste like. I think the other flavors are vanilla bean (very good too) and maybe rum? (also very good) \n\nIt may not sound like I am doing the dessert justice but when you've been kissing George Clooney for an hour then along comes Rick Springfield, which one is better? They are both amazing, but by the time Rick comes along, well, you're kind of spoiled already.\n\nRoy's could not have been better - this entire experience was an A++ through and through. \n\nThe staff was extremely helpful (someone walked me to the ladies room when I merely asked where it was) (Oh and need I mention the corwn molding in the bathroom stalls was nicer than the crown molding in my house???) (And you know you are in a classy joint when a basket of tampons and maxi-pads is out on the marble bathroom counter, like party favors for down under)\n\nTHUMBS WAY UP!!!", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7o7MF9B9lxcWupE8jiLOaQ", "review_id": "zD_RPiSs12w4IgHRi6HMhA", "stars": 3, "date": "2011-04-23", "text": "Yogi's is a great place to grab a quick, fairly-cheap meal. I love the Arizona bowl - it's a great alternative for you sushi craving if you don't feel like spending a lot of money.\n\nThe quality of the food isn't bad. The sushi rolls are alright. The staff is moderate - they've never done anything to impress me, but haven't done anything to disappoint either.", "type": "review", "business_id": "VXuvmtDipL_WRwc0NTM3iQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SMeQwT7awoyAO9I4x39Ztg", "review_id": "D7cUmPnXrM5vjubiYLCrQg", "stars": 4, "date": "2012-08-14", "text": "The Chorizo gravy can be habit forming.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TLHB5BA_a6i1P-aXNq85sw", "review_id": "ajZ8yy0o7KOHm3CzCBD-lQ", "stars": 5, "date": "2012-11-12", "text": "I recently decided to accompany a couple friends on their quest to find the best sushi in Phoenix. A few weeks ago we started here at Yasu Sushi Bistro. While I'm not as committed to the quest as they are, I would be surprised if Yasu didn't rank among the top five sushi places in the Valley.\n\nWe had an incredible dining experience at Yasu. Our server was perfect: she definitely knew sushi and had many great recommendations. I'm still somewhat of a sushi novice, but you don't have to be a pro to know when you're eating a fresh, creative meal.\n\nMy recommendations: start off with miso soup with clams and try the hamachi carpaccio. At the end of the meal ask your server to have the chef make you something special. He made us tempura avocado wrapped in eel, topped with foie gras and served it to us personally. It was amazing.\n\nYasu provided one of the best dining experiences I've had all year.", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k0VVZ1ESCb3DZNdBFQXdbw", "review_id": "sZ8QT-V85hBK2EMtVQBESg", "stars": 4, "date": "2010-01-13", "text": "We had dinner here during our 09' management retreat. It was my first time at CG and I was definitely impressed with the quality of their food and customer service. \n\nI had the Seared Tenderloin with Butter Poached Lobster, which was amazing. We shared the cold shellfish platter for appetizer which was another great choice. The oysters were really fresh. \n\nI'm thinking of taking my boyfriend to the LV location over V-day weekend this year. Can't wait!", "type": "review", "business_id": "wqIB7hUTQnCswJV4UyYyEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pk5T0OFCbl8mIKkKYyglWQ", "review_id": "hlqLcFL3mGFo8s4tMW98sw", "stars": 3, "date": "2012-05-31", "text": "The location is definitely an older location and isn't as large and updated as other Harkins around the valley. \n\nThe biggest theater is on the smaller side compared to the newer locations. The staff is about average, not rude and not nice.\n\nThe parking situation is shared in a strip mall, with a Blue Burrito Grill, Pita Jungle and Gelato Spot, so parking is a bit of a challenge. \n\nIf you are interested in a \"no frills\" experience, this will do the trick.", "type": "review", "business_id": "kGxG5jBIo3CW7sXBbe8XxA"} +{"votes": {"funny": 5, "useful": 3, "cool": 0}, "user_id": "k0gCvAMZIM7vAX1s8oqdHQ", "review_id": "4NQqZPKxnIyI3x0G4PSqVA", "stars": 1, "date": "2011-03-13", "text": "I just thought I'd post an update. I planned never to go back, but was with a friend who really wanted one of their breakfast items. I skipped ordering ANY food whatsoever and merely ordered coffee and watched her eat. As fate would have it, she had a BACK HAIR in her scrambled eggs (we are 2 for 2 now). My gag reflex is going off as I type this. My husband, friends, and I have renamed this place the Black Hair Diner, and we've decided they have actual black bears cooking in the kitchen, since they can't seem to keep black hairs out of their food.", "type": "review", "business_id": "0CG3ns3gwWV5nOnfzSfUIQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "nMwgC0DuMsBR0V5v4-J8wg", "review_id": "uS_POUuU8RbJ3GjmgPeyXA", "stars": 3, "date": "2010-02-19", "text": "So, I'll admit that I'm a ***bertos addict...I truly crave this food and I'm not really sure why. My mom says that she ate nachos w/ jalepenos on a regular basis while pregnant with me. Maybe that explains it. Anyway, I've been wanting to try this place forever since they claim to have \"the best tortillas in town.\" I seized the opportunity to check it out since I had to drop a friend off at the airport this morning. \n\nThe exterior certainly leaves a lot to be desired, and the ambiance is about on par with the drunk tank at the fourth avenue jail (a good friend spent a most unfortunate night here and described it in detail). The cold, stained cement floors, nasty old booths and 70's McDonald's style swivel plastic chairs which likely needed a new coat of paint back in the early 80's. I decided on a green chile burrito and my companion ordered the egg/chorizo/potato/cheese burrito. After waiting for about 5-10 minutes, our number was called. The first thing I noticed was that the burritos were quite small. I knew, however, that I was in for a real treat with the piping hot, super chewy freshly made tortilla, and I was not disappointed. The green chile, while tasty, had too much liquid and after inadvertantly puncturing my tortilla, I was left with a handful of sauce. \n\nI certainly felt more than safe inside this place (despite the somewhat scary clientele) based on the table of twelve Phoenix police officers sitting across from us. Overall, I would give the atmosphere 1.5 stars, and the food 3.75 stars. It was definitely different than what I'm used to, and it gave me a small taste of the cultural melting pot known as South Phoenix.", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "d_KgMQIH2ekU789WghwKvg", "stars": 2, "date": "2009-03-29", "text": "Consistently horrible service. Food is very good.\n\nI used to shun corporate chains and opt for local offerings, but Babbo changed my mind. They seem to hire servers who have little to no experience as servers, and frankly have no idea how to provide good service at all.\n\nJust order it to go and you'll avoid this restaurant's downfall.", "type": "review", "business_id": "zwToyWL4dT1clsFPK9wI2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sjXubsgIJvL9tFIctrK5uw", "review_id": "ZyTCfSMV0Qo3znAWnGDiAg", "stars": 4, "date": "2011-11-26", "text": "Cracker Barrel is the antithesis of the trendy LA or San Francisco breakfast establishment. They feature old-fashioned Southern breakfasts with biscuits, gravy and grits plus lots of other choices. This a very well-run chain of all company owned restaurants. Well-trained staff, quick service and meals served exactly as ordered. The execution at Cracker Barrel is excellent. While some may not like the food style, I enjoy it on occasion. \n\nOur breakfasts were great and everything was served hot. Very reasonable prices. My only quibble was that the coffee is only OK.", "type": "review", "business_id": "bDR6kF5Aw9guBkaahSAchw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FJkEBP0cAuVebbD7D70YpQ", "review_id": "vkF9GkqpXIeIBqgvAb-etQ", "stars": 5, "date": "2010-01-22", "text": "My wife and I have a timeshare nearby and when we were doing a morning walk we saw this place and we asked our concierge she raved. We went and fell in love with the place. The service, the food, the friendship. We go back every time we are in town and the staff remembers you. Also my wife loves gnocchi and says that these are as good as her grandmother's.\n Dave A", "type": "review", "business_id": "gHKB66up5VluCWT4vuSZpw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "v5mmm3T1XILyR0txwDVVJg", "stars": 4, "date": "2009-09-13", "text": "A nice place to go to catch the blockbuster movie again or catch a movie you didn't feel like paying $10-11 during the first run. I've been here for a handful of movies and I've always had a pleasurable experience. The price is right, $3 per ticket for every show, any time. The price is $2 on Tuesdays.\n\nI normally don't hit the concession stand, but there is a wide variety of snacks that seem to be a bit cheaper than other movie places. \n\nThe first time or two you go here, make sure to check out the items in the cases, walls etc. There is a bunch of cool pics, figures etc.\n\nIs it just me or does Pollack look like the Lion in the Wizard of Oz?", "type": "review", "business_id": "gfhO1Q1c7QCigu7waVpeSg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "tiyg_cQaPdUuSG95Xpi_sA", "review_id": "EQtc5VmGy_u33QjAwikD4g", "stars": 3, "date": "2012-09-20", "text": "5 stars if you are rich and love to throw your wad around\n\n1 star if you are on a budget and think plastic surgery is terrifying\n\n3 stars if you enjoy window shopping, gawking at the snobbery and mock the fact that some people will spend $3000 on a ugly brown canvas purse with little \"LVs\" printed on it because it makes you feel good about yourself.\n\n4 stars if you go during a mega-sale weekend when the \"normal mall chain stores\" have clearance - (Bath and Body Works, Gap, Express, Dillards etc, but they also have an H&M)\n\nAll in all, SFS is a sight to see for the good and for the bad.\nAt the end of the day it makes me want to escape to hills where people put value on the important things in life and not what brand your sunglasses are.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ux7a5tbceLU6anNycjwt_Q", "review_id": "NNjZD9TLMqIqM9p13q6w0w", "stars": 3, "date": "2010-08-02", "text": "The riped mango slices add an extra dimension to a traditional Papaya salad dish. \n\nTypically traditional papaya salad (Lao original) is garlicky, lemony sour and pepper varied hot. The way this dish was made lacked all of those 3 features but the sustitution by the ripe mangos solved that issue and gave it the flavor that it need. By design, I expected that was the intention of this Americanized dish: the individual ingredients thrown in separately and not blended in until it softened, stripped away the traditional spice and saucy elemental aspects of it and you have something different for a change that the mostly non-minority American diners would enjoy. The papaya salad is usually regarded as an appetizer; a feminine dish usually made by a female(it is also blasphemous for a male cook to make it, and I don't want to know). But this happened to be the best dish that I experienced at this place. \n\nThe others were pad thai and some chicken mix with brocolli. Both tasted very Americanized. The pad thai is reminescent of a take out of the \"Panda Place\", not bad but not special.\n\nOverall, by design -Americanized Thai, that attempts to tone done the flavors of the dish and the way ingredients are prepared , it creates a different twist on traditional dishes. It had to because , for example, you can't throw preserve fish sauce into these dishes like you would in an authentic Thai restaurant that would fume the whole place. In my opinion, I wouldn't call this type of food a downgrade , maybe a \"Fusion\" and maybe it's lost and that's unfortunate because it needs a direction\\ standing of its own. My group received attentive and high level of services and the ambience of the place is noteworthy; both these factors exceeded the food experience . Parking may be a walk since you are in old town Scottsdale.\n\nBased on individual preference , looking at the food alone, this would not be a place I would repeatedly come; it does not provide traditional flavors in the sense that Lao Thai or Thai Esan or Thai Hut does for the same price and nor does it expect one to follow traditional eating ettiquette that is an essence of food from this region. But it would be a place I take those who can't stomach the traditional flavors, I would have to eat a little before coming here.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rL3dPeKDTybG_ct9OCXGAA", "review_id": "McpH7BVnp36pcqtELhaZdQ", "stars": 4, "date": "2011-11-08", "text": "Someburros comes from the same family as the longtime South Phoenix staple \"Ponchos\". However, Someburros has somehow managed to take the family business to a whole another level! I've been to several different Someburros and they all consistently have good food, service and atmosphere. My favorites include the Green Chile Burro enchilada style and the tacos. The beans and rice are always moist and better than that you get free chips and salsa with your meal. I like how the atmosphere is more Mexican-American but the food is definitely authentic! If you hate a crowd avoid Lunch hours like the plague. If you are in a hurry you can also call your order in ahead of time and pick it up through the drive through take out window.", "type": "review", "business_id": "zXg2O_QnpHQVD7e1azAu_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UE1UIi95jSk5tAzOdtnjIA", "review_id": "ndCTY3njf6wgzosC435_Yg", "stars": 3, "date": "2007-06-28", "text": "I thought this bagel shop was ok. The bagel sandwich I got was relatively lackluster. I think I will stick to Einsteins for the time being.", "type": "review", "business_id": "-hQ8iZygzi0iiTFUkHgiEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lp3RMxwrm3BB0xbuH1vrmQ", "review_id": "uxhJaxosyQfFDUdIg_jbaQ", "stars": 5, "date": "2012-01-03", "text": "We had a bad experience in May with a person at Charleston's we thought to be a manager (see review). The next day my husband and brother-in-law contacted the restaurant manager, Chris, we had great and immediate communication with him and he encouraged us to give the restaurant another try as we had been happy there before. \nRecently, we had a large party of family members dine at the restaurant and the service and food was perfect. Chris made a point to check in with us at the table and at the end of the meal. Great job, Chris and team! We look forward to dining at Charleston's with you again soon.", "type": "review", "business_id": "CIpzeDYD252nq0nRA4px5A"} +{"votes": {"funny": 5, "useful": 8, "cool": 10}, "user_id": "CCHwJoIWLRhxqIcwRJW6ag", "review_id": "jF98xkG3Nt7Qq4EmkT2Nww", "stars": 4, "date": "2010-11-10", "text": "-Inexpensive produce.\n\n-Fresh sausage and other meats.\n\n-$2.99 freshly made to order sanwiches.\n\n-Decent prices, cheaper than Whole Foods.\n\n-Parking is convenient.\n\n-Employees in the produce dept not so friendly. \n\n-Cashiers are usually friendly.", "type": "review", "business_id": "bxuKrGz1C4kXm_kjILdfAA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "7cmvtJaZTJhd7yQdwu5scA", "review_id": "jW5APDGcufoxFEg_giD7VQ", "stars": 3, "date": "2011-04-05", "text": "First time ordering calamari salad...which had a strong onion (??) flavor and tasted weird...Being raised on Vietnamese food, the strangest of foods has been in my mouth, but I think this falls into the acquired taste category...As in I never acquired a taste for this.\n\nPad thai was okay...the noodles were a bit over seasoned. I felt like I should've eaten it with rice to tone down the flavor.\n\nPapaya salad was good...still on the look out for that authentic not watered down version, though. Just like my friend's mom makes it! Yum!\n\nThai omelet. Good.\n\nThe people were really friendly as well, which helps, but you KNOW I'm all about the food.\n\nI had takeout and the box for the calamari salad read: \"Carimali Salad\". :) I love it!", "type": "review", "business_id": "qyNtVViurIcChc35mfYIEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "90-uDWiQKa5B8Xa2hiRu8w", "review_id": "vYZ9-sw5LsoB0a8flqkL4A", "stars": 2, "date": "2012-11-26", "text": "Well I just wasted 38 bucks....never again", "type": "review", "business_id": "tBpcKHlBJTwRLq6Q2gv1KA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "sIL0cWiSYHDa4ZaxbxO80w", "stars": 4, "date": "2007-03-05", "text": "I am not a big beer drinker, so I can't attest to the many different options they have in that area, but I can tell you about their martinis.\n\nThey have a huge menu of specialty martinis and other cocktails that are all pretty darn tasty if you ask me. My friend really liked the chocolate something or other martini, I had a pear one that was delicious and another pal really enjoyed the pomegranate press.\n\nThe food is pretty good or I was buzzed. Or both. We had the cheese pizza and an onion ring tower (both half-off for happy hour). Which, by the way, truly is a tower of onion rings. And then the waitress brought out a free piece of cheesecake for my birthday. It was a great time had by all. \n\nBut the best thing about Yard House is the location. It's right by Kona and Z Tejas and if you start right at 3pm, you can hit happy hour at each location and then take the free trolley to Giligin's. Yes, I did this on Friday and it was TONS of fun. Try it.", "type": "review", "business_id": "UL3OMN_c-NXHlyb97pDifA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "wz5bTn4OyandnytIe_hOpA", "review_id": "o90x4eigzpPz96uE_XavfQ", "stars": 2, "date": "2010-08-22", "text": "I recently moved to the area of Westgate AMC and, even though it's not the closest, I thought I would give it a try. It's probably one of the most beautifully laid out and convenient movie houses I've been in. And for the first several visits, I didn't have too much of a bad experience. In fact, the only thing wrong was the ticket machines outside were down - apparently, I've heard that happens a lot, if they've ever worked.\n\nThis last trip was just plain bad. I went to see Piranha 3D and the 3D screen was fairly small, especially for a wide release on opening night. The 3D was off a bit, but then that might be this old person's eyes; I could see shadows and lines behind some of the target objects.\n\nI arrived 45 minutes early and I mistakenly thought I would be too late to get a good seat for a 6:30 PM showing. By all means, I was approximately 30 minutes too early. They booked the showings way too close. The previous showing's credits ran until about 6:10, and then they, as always, took their time to clean out the theater. Once in, finally, the theatre was almost pitch black aside from dim lights on the staircases. The Pre-Show countdown, which I normally despise, would've been welcome, if just for some light. Well, that's why God made cell phones.\n\nUpon finally sitting, there were two soda pop cans in the two cup holders - way to go, clean-up crew. I literally saw 7 people leave the theatre when that showing ended. Cleaning up should've been quick so you can continue your discussion about who's ID you'd use to go out that night.\n\nBut I digress, the soda pop cans were obviously not sold by the world's slowest concession employees. I just moved them over and the lights finally came on a bit roughly 7 minutes before the show. Typically, I hate when people have their cell phones lit up in the theatre, as they always want to hold them up high so the entire rest of the theatre gets the pleasure of the bright light while they babble on their ancient MySpace account. But, in this case, it's understandable as no one could see anything.\n\nQuestion, and I've always wanted to ask this, are the employees at the concession stand told to go as slow...as...possible? Fine, I know they're not - I'm a former AMC employee and I wasn't. Although, the pennies they generously give in the paychecks might not put the right fire under them. But seriously, it's already an insult that we have to pay about $13 just for one popcorn and one soda, but they add the salt, on the wound, that is, by making us wait 20 minutes in a line of 3 people.\n\nBy God, I wish someone would open a concession stand with somewhat good deals - yeah, I know that's how they get their money, blah, blah, and I wish someone would open at least an express lane. \"Two Items or Less Lane! No Children!\" Heaven.\n\nReally, movies are still relevant, even in a down economy. Perhaps you should hire less and pay more. I'm sure the one guy at the box office would've appreciated that.", "type": "review", "business_id": "K13dEvg4uimGQ1OcE5vGZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "LHQ2fuC2RDS-Md_dN2O1IQ", "review_id": "4WqC6X-pmTr7sUs_puPd-w", "stars": 3, "date": "2011-01-24", "text": "Slices or Spinato's? When you're near Tempe Marketplace and don't want to miss the movie you are about to watch you should check this place out. Slices is more of a \"New York\" style pizza where as Spinato's is more of a homemade style pizza, and I don't say that with any disrespect. In fact, if I had to suggest one of the two places I would most definitely suggest Spinato's. I'll try outline my reasoning behind this choice.\n\nSlices just has their \"NY\" style pizza, and to be quite honest they don't even do it that well. There are tons of places in Phoenix that do \"NY\" style pizza, and a notable place is Venezia's on Southern and Mill, not too far from Tempe Marketplace. Spinato's does have an \"NY\" style pizza and a Sicilian pizza, and the latter is actually pretty good.\n\nOn a Friday night, this place gets somewhat packed for dine-in, but you can order \"eat-in\". So basically, you order you food, wait to be seated, and then shortly after being seated you can get your food. This worked out pretty well. The service is also good, and the staff are pretty friendly. Bathroom was small, one bathroom for the whole place, but it was clean and well kept. \n\nThe pizza was very interesting, we got a Sicilian \"Traditional Vegetarian\" pizza. Essentially, if you could compare it to another pizza it'd be DiGiorno. Seriously though, the pizza reminded me a lot of DiGiorno's frozen pizza. This place has a unique homemade feeling to it, and even the pizza. I'm not saying its bad, its just unique. The crust is actually delicious, and I usually don't care too much about the taste of the crust, but this one actually tasted pretty good. The downside though is the way they served it, nothing to pick up slices with, and it was super easy for toppings to slide through the grill when it was warm. It became somewhat of a pain to handle the first few slices. \n\nThis place has serious selection issues. Let's see, pork, pork, more pork, and a little bit more pork, oh and a little bit of vegetarian stuff. Ok, so where does that leave kosher meat eaters? Not at this place. If you eat kosher meat, and enjoy it on your pizza, this is not the place to come. There is literally no chicken or beef available here in terms of toppings.\n\nThis place is pretty good and moderately priced. My significant other and I shared a 14\" sicilian, and got waters which totaled to something like $15. Certainly not a terrible price, but for the price I think we could do a little better. I suppose if we wanna catch a movie after dinner we would visit this place, but it is certainly isn't on the top of our pizza visiting list. Its good pizza, it filled me up, it was tasty, but pizza is a competitive market.", "type": "review", "business_id": "6md4A90THda31wTg1bB3hg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "935SvZzP-ueGJ5hLfIe76Q", "review_id": "_nAG6oB3rTNh9wQBvxorrw", "stars": 1, "date": "2011-10-06", "text": "I am a huge fan of Chipotle but I will never come back to this location. The staff looks miserable and are SLOW. The cashier decided she would rather clean tables then ring people up so we waited for her to come back. Most of the tables were already clean so she could of waited to clean. The rice was crunchy like it wasn't cooked all the way and the steak was really chewy. Never again!", "type": "review", "business_id": "CMI3SF1-YwAEfUXYkKS53Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "XLah_ynCwwYshCY9jc13tw", "review_id": "85Yomfg9hNkiEaZVXB3W2A", "stars": 5, "date": "2011-11-04", "text": "My home airport and one of the nicest terminals in the USA! Great food, cool things to see and do, you just can't get bored here!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Wd8HTLOxMPRbGfY4UxTYVw", "review_id": "coqZoolJ4TKagE3cEUULvA", "stars": 4, "date": "2012-04-27", "text": "I've always had good service here, but we usually do the curbside pick up - my advice is to just order a few toppings. The crust cannot handle more than one or two - and if you get the pesto, avoid getting pepperoni plus other meat, it's so greasy! (Good, but greasy). \n\nLove the greek salad as well as their desserts.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TUnIEHCnVLKNTl3vWpLAzQ", "review_id": "ZxdjYbqyW-2xWzK_S8cvtQ", "stars": 5, "date": "2012-01-06", "text": "no chip manicure: no drilling, no filing, no damage, no dry time! we offer over 100 colors form opi , shellac, gelish, Experienced Tech, Professional service and Satisfaction guaranteed.", "type": "review", "business_id": "BT7F6_b2AliZpOiuXy9iAA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "9SZBVZ-mxebOVa1BlWFtWw", "review_id": "iMHMvQNI3HGkIMqieDw0Rw", "stars": 2, "date": "2012-05-10", "text": "So, yesterday morning, I actually had a prego craving. I was in the mood for a smoothie for breakfast. My traditional early morning oatmeal or yogurt breakfast was not going to do. Baby wanted something else. \n\nI head on over to this Jack-in-the Box, which is close to work. I pull up, order my strawberry banana smoothie, and am promptly told that the \"machine is broken\". Uh...well that sucks! I pull up to the window and the person tells me that the machine is leaking (at least I think that's what he said). But would be about 10 minutes and it would be up and running. \n\nNow knowing the smoothie issues I had this morning, I dont think that the machine was broken. The product just wasnt ready yet.", "type": "review", "business_id": "_dVPzYGXKNg2rIsc40VtyA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "OHYE-8Ne71pYtAo-hBg8AA", "review_id": "jhoKvJTf9Q3PXgqMQCtF5w", "stars": 4, "date": "2011-08-08", "text": "The good thing about Pearl is their all-day everyday Happy Hour menu. There are about 5-6 specialty rolls on there for $7 (regular price is about $10+). I highly recommend the Fish Shticks - imitation crab rolled & fried in tempura batter, topped w/ spicy tuna and a sweet aioli. There are also the basics like California roll or Spicy Tuna roll for $4. I love their Happy Hour mini bomber menu. Get the Fruit Bomb! - vodka w/ a guava juice chaser.\n\nAnyway, I finally got a chance to eat there on a Sunday and take advantage of their Viva Las Vegas promotion - you get 10% off and get to roll a dice and get an additional discount or other prizes. WELL, after my cousin & I finished our dinner of Fish Shticks and the Deep V roll, we asked about the Vegas promotion. Of course they would tell me that they don't do any promotions in the months of July & August. Um, that would've been a good a disclaimer to have on your website! This would've dropped 1 star from my rating, but I give it 4 stars for the food, mini bombers, & daily happy hour menu.\n\nBeware of service on Friday nights though. They are terrible! They forget your food orders & are super slow to get drinks. I understand that the place is super busy on a Friday night, but that's no excuse for the waitresses to take their time flirting with guys rather than coming to check on your table.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "t3IM41_z3w5VvrlktfsIlg", "stars": 4, "date": "2012-07-07", "text": "Looove this place! I loved the sexy, yet simple atmosphere. I felt as though the air was cleaner somehow just walking inside.\n\nLet me first say that Happy Hour prices were outstanding! I have to admit, I think my favorite Happy Hour spot, StingRay, has just been outdone!\n\nThe food was delicious! All of it! ALL...OF...IT! From the cucumber salad to their famous appetizer, the mustard leaf wrap, it is flavorful and fresh.\n\nThe service was pretty good, but there was some confusion I think more than once, so it delayed the service a bit. When I have to stop and say, \"Hey, where's my [fill in the blank], I know the service is lacking, although I would say not enough to keep me away!\n\nI was really, really happy when I left here, might have been my company, but we all loved it so that is what mattered!", "type": "review", "business_id": "NCtzWkMbE13r2M2Sg0wH9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f5DSsK2w-b0xQVyz8lZACw", "review_id": "PxXR8zNNCK8lnv_NNe_Q_w", "stars": 5, "date": "2009-08-15", "text": "I ordered my custom made door and it arrived recently for installation. The design was exactly to specifications, quality of construction and the finish are flawless. It took several months to get but it was worth it. This one improvement has increased the value of my home and makes my entire family feel safer.", "type": "review", "business_id": "jzwQYISIeNWnZTP4eN3cAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "troGv2y-fUP6oMyVku5jbw", "review_id": "06AR1uEWUuLCn8BOqWShqA", "stars": 5, "date": "2009-09-26", "text": "This is our DEFAULT happy hour.\nI won't be reviewing their dinner as I have never had an actual meal there.\n\nI'm not really a beer drinker, but they have such a big selection, I always find something i like. And I've been told they have a martini specials, but you don't go to a beer place and get martinis... come on.\n\nPretty much their entire appetizer selection (which is what, 20 items?) is on the half price happy hour menu. You know what that means? Four sliders and fries for FOUR dollars. (Also recommended... Hawaiian Poke Stack).\n\nIn summary, I can wrap up Yard House in two words.\nHeck. Yes.", "type": "review", "business_id": "UL3OMN_c-NXHlyb97pDifA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WPnoGr_ukB5BubC3bITkjQ", "review_id": "hhAe991bLS4VFBvkTL1lrA", "stars": 4, "date": "2010-04-13", "text": "They had me at Baked.Goat.Cheese. The appetizers were phenomenal, we got the Bake Goat Cheese that came with their freshly baked brick oven bread and my bf got the Romaine salad with fuji apple & bacon. But the baked cheese was by far the better of the two.\n\nMain courses also didn't disappoint we ordered the white fish and hanger steak. I only had a bite of the fish so I can't speak that much to it, the bf enjoyed it.. it had too much lemon in the sauce for me, but I hate lemon flavoring so it's probably better to take his word for it! The steak had this amazing sauce that accompanied it that added such a nice flavor to compliment the steak. Both entrees were pretty good size portions, especially after appetizers. And we also split a side of sweet corn polenta that we couldn't finish\n\nThe actual restaurant its self is very open, there is an outside covered patio and a smaller patio for the bar that's out in the open. \n\nValet only, complementary\n\nSat Night wait time: approx 20 mins\n\nClientele: On Sat night we had a big table of your typical Scottsdale Cougars, average couples and groups ranging from mid 20s to 60s and a bachelorette party of 4 girls who were barely 21 (not the typical place for a bachelorette party)", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AKr7FmLvlVgahMdtmkuNHQ", "review_id": "65Y9aQq3GU3xR9Ouea_2lQ", "stars": 5, "date": "2011-06-08", "text": "Divine, the Carne Asada was so tasty, flavorful and tender. Everything we enjoyed tasted fresh and authentic. The guacamole was knock you socks off, traditional and limey, (I took my extra home and enjoyed the next day). I liked what the previous reviewer who said also that the beans and rice are not an afterthought here, they are also amazingly well executed. I am eager to get back an try the Chicken and Barbacoa as well as the roasted green chile cheese dip. If your in the area of 44th Street and Thomas, forgo the big chain of Chipotle and show this lovey Phoenix gem some love, your taste buds will not be disappointed.", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 4, "useful": 5, "cool": 3}, "user_id": "ryxVMbCBq-cKOClTBAqkLg", "review_id": "yt-Ye0Od5HrXowMq6aGjRw", "stars": 4, "date": "2009-01-31", "text": "I'm not sure if Safeway is a national thing (let's just say I've never seen one of these babies in Manhattan), but it's definitely needed in Phoenix and Tucson.\n\nI would drive around the city, looking at all the strip malls and low-end manicure chop shops and wonder, \"Where the hell do people go grocery shopping?\" And while Trader Joe's is GREAT, I'd be hard-pressed to do all of my shopping there.\n\nSo thank God for Safeway, right? Although Safeway is generally a little more expensive than other grocery stores, you can pretty much get anything you need there. This particular location was so clean it was beaming! Or was that just me?\n\nIt had everything you'd expect from a Safeway--from a lovely floral department to a mini-Starbucks to a sizeable deli counter.\n\nYay for Safeway and chain shopping!", "type": "review", "business_id": "ggKTLa0xVz-WGBGatscMBQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "WEuIqh8ygm-bH81s8lwD0g", "review_id": "SJGH7mA60ugSdpUb1v7HMQ", "stars": 2, "date": "2009-08-31", "text": "Slices Pizza is pretty good, not the best though. But if you are on Mill Ave its the best Pizza option. Uno's is around the corner and probably the worst pizza in Phoenix. If the main guy that works there was not so rude probably would have given it 3 stars. If you are in Tempe a much better Pizza place is Red Devil Pizza about 5 minutes South.", "type": "review", "business_id": "cUaaIk_3UdeSJ54CLvrW8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RyzzI97Vq4IelbSp5wwGtg", "review_id": "jMb9fZyGzxn9pe6jXVhnkg", "stars": 4, "date": "2011-01-22", "text": "I lived in Chandler for almost two years and used this gym almost daily. It is never that crowded, even on a Saturday morning or a later afternoon gym run. The machines sometimes aren't all working, but there is a maintenance guy there often. I like how the cycles are available in the empty aerobics room if there isn't a class going on. The weights and weight machines are pretty decent and again, not that crowded most of the time. The staff at this location are the friendliest (IMO) among the other 24 Hour Fitness locations in the valley. The front desk people are always saying hello and the manager is friendly too. Many of the Group X classes are a lot fun. I miss when the true yogi yoga instructor taught there. Her classes were amazing. \n\nSome of the personal trainers I would never ask to purchase sessions from. One of them walks like he is too cool for school and I attended a boot camp led by some of the male trainers, and it became a competition between two of them on who could do ladders the fastest. The female trainers and some of the male trainers look competent and their training sessions don't look so cookie-cutter-like, as the rest of the trainers. \n\nThe location of this gym is not in the best area of the city, although decent. When I used to go here, I'd buy groceries at the WalMart there after.", "type": "review", "business_id": "GMDSE-m3yP0uCPfgkd8QSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QiWWkgLHFRSCqMbH0qVeAg", "review_id": "woilfUAm7j8JjOEAIAUgmg", "stars": 1, "date": "2011-02-13", "text": "Worst, slow service ever....especially with almost no one in the place. Food was average at best and thats being kind. Skip it if you are looking to eat or get a drink.\n\nJust an update: I (as well as a friend who wrote a review of the day) were contacted (I didn't see my message until today oops) and offered refunds and gift certificates. Now this seems all well and fine-I do appreciate them trying to make the most of the situation-but my friend is still waiting for a refund and/or certificate. So we shall see. If I could take away my star for more non-service then I would.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mLUPkvjsKFsafrCG-MtS7w", "review_id": "dtEswWEK7jKjxhhbFkR7OA", "stars": 4, "date": "2011-06-24", "text": "The veggie sandwich was great. Not your typical sandwich with veggies in place of meat. Taste was actually taken into account. My meat eating friends even order the veggie sandwich. It's that good. \nThe waitress was very nice, personable and friendly.", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "z5QUoLi0VLMDeQR_6x2UqA", "stars": 4, "date": "2008-10-05", "text": "Nice views of South Mountain, lots of elevation changes and some tricky par 3's make this a very solid muni and probably the toughest in town. \n\nFirst my two complaints: the chipping area should have a few more holes with a slightly larger green, and the neighborhood is atrocious. \n\nAguila has four features not often found at municipal golf courses:\n1) You need to drive the ball well to score well here. From a lot the tee boxes, the driving area often looks smaller than it is; so, confidence with the big stick is key. \n2) Absence of generous flat lies in the fairway; even if you drive the ball well, you are not always rewarded and are sometimes faced with side-hill lies. \n3) Very tough holes #9 and #18. Hey, I like to score low as much as the next guy, but the thing about city courses is that they often give you easy closing holes with a good birdie chance; NOT the case here. Rated 3 and 2 handicaps respectably, #9 and #18 take advantage of the same water hazard (similar to the closing holes at Karsten @ ASU) and put in play some penal, deep fairway bunkers that require precision drives and good approach shots. #18 plays 470 yds+ from the tips, so if you hit a bomb, you still don't have a wedge in your hand. \n4) Two true risk / reward par 4's - both with water, both greens are drivable from the tee. #8 is not a guaranteed birdie from the greenside bunkers, but they're a good bailout. #17 is longer and is a slightly more daunting drive with a more generous bailout option to the right, these are great holes.\n\nA tip: \nTake advantage of the par 5's; all but the last one is reachable in two (at least, that's been my experience). There are only two par 3's that I would consider good birdie chances (#13 and #16), so if you can roll in a few putts, you're set.\n\nGo past Tent City, drive further south towards South Mountain, and you'll find a nice municipal course in South Phoenix.", "type": "review", "business_id": "oQdSznCeRdH41yWpQ0rlYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KucBnMrhalzxnD9AWrxwYQ", "review_id": "NhnDYtXjlSjfb4DYhWtWrQ", "stars": 1, "date": "2010-01-12", "text": "I had not eaten in about 12 hours since we were at the hospital having a baby... and this pizza STILL tasted horrible.\n\nBarely average fast food quality and taste. Avoid!", "type": "review", "business_id": "_ilvDGnUKCpfp4qHvQODlA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "bixj1Uu6cEam1J0BtFAK_Q", "review_id": "mCC7uXK8v20kPzl3MdHbrQ", "stars": 4, "date": "2012-05-15", "text": "Let me be clear on one thing: I love this place. The DJ's they have make it a lot of fun and the movie selections are great. In addition, their beer and wine selections are quite tasty. \n\nSo, why not 5 stars? I think that the crowd just has to pick up, really. I know they're currently working on adding new menu items and movie selections to the place, but right now, it can just be dead. I went in there most recently last Friday. There was literally only one other group of people there. And I use the term \"group of people\" loosely, considering it was a group of two. We ended up leaving, because I can spend time with just my group of friends at my house if I wanted to and we were looking more to have an outing. However, I wanted the FilmBar atmosphere and experience that I certainly get on Saturday nights and it just was not there on Friday. \n\nDO go on Saturday nights. DJentrification is great and the vibe is wonderful. BUT...more importantly...go on other days!!! This place needs to fill up. Go see a movie, the theater is great! Get some drinks for happy hour. Go on Friday night and Sunday night! It's a nice bar that really has more of a hip lounge kind of feel. \n\nAnd the great part is that they're improving every day. I think they're only about a year old and it sometimes takes time. But the staff is great, the drinks are perfectly chosen, and the music is generally pretty amazing.", "type": "review", "business_id": "MYj5f-QxtGeKlhVVx1RD4g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "kJYBZ-nZtNFwmOwsxP6BIA", "stars": 3, "date": "2012-07-14", "text": "Was in the mood for a nice, classic dirty martini last night and R.J. (bartender) filled the void perfectly. Served with a skewer of small, delicious Kalamata olives. This was a pleasant twist to the big, green olives. The martini was clean, smooth and perfectly balanced. Thumbs up R.J.! \n\nOn the other hand, the Vegetarian Falafel burger that I ordered was thumbs...sideways. I've had falafel burgers and traditional fried falafel countless times before so I was stoked to see it on their menu. My experience was a disappointment in flavor and texture. The burger was completely bland and could have used a little extra texture. The burger is touted as Michael Mina's mother's recipe. So I really hate to give it a negative review. Perhaps Chef Mina should step Mom's recipe up a notch! #Just saying. \n\nWhen my server asked how my food was, I let him know that I wasn't a fan. His response was, \"Ok, I'll let the chef know\" and sheepishly walked away. Huh!??? That's it? Our server was very pleasant and attentive, but when it came to responding to \"I don't care for my meal\" he could have done better. And frankly, if I wasn't with business associates, I would have sent the burger back. I felt that instead of simply saying \"I'll let the Chef know\" he should have asked if he could bring me something else. I accidentally skipped lunch and starving, so I ate the burger...reluctantly. \n\nI've been to Bourbon a few times but always just sit in the bar which I think has great ambiance. The last time I was there, me and my friend ordered classic cheeseburgers. We asked for them to be cooked medium. We got medium-well. The beef is high quality, so the taste was good and we didn't complain. But still, we ASKED for medium. The red onion rings were delish however. \n\nQuestion is: can I get a consistent meal at Bourbon Steak? Jury is still out.", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HPdjU_p28b8UYhr7bNOmOw", "review_id": "oMLXv3OYs_c1F1RJ2wwTUw", "stars": 3, "date": "2010-12-11", "text": "So let me start by saying the latte was very good, best I've had in this area at least. Much better than Starbucks, even though that's not a very high standard but one that everyone can relate to. \n\nGood atmosphere, comfortable seat and lots of it... The live music was deceiving as it looked good for the out side (don't we all) and sounded horrible (but I'm not reviewing that am I) :) \n\nI was actually helped by a guy there who matched the place well. Good service with a grin and not the overly caffeinated pep talk baristas of a certain chain often feel pressured to give.\n\nI'll be back if only for the latte.", "type": "review", "business_id": "phe9voJ_LPAtqZaosM4Ibw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "69Rezd3L0A0H7S7HibDQ1A", "review_id": "werpmtXZTcjYZZROg1qq-Q", "stars": 3, "date": "2011-08-09", "text": "I appreciate any airport restaurant that doesn't feel over-crowded or cramped. We usually have to stop in Phoenix for our layover going to and from California from Texas, so I think this might be our new dinner spot. It's big, plenty of seating, and clean.\n\nI love the affordable menu options...especially for being in an airport. My husband and I both got the taco plates (mine steak and his fish) which come with two soft corn tortilla tacos, black beans, and rice. The tacos were tasty but the rice and beans were flavorless and the rice seemed a bit undercooked. After I drenched everything with hot sauce I was able to finish my meal.\n\nAlthough I love the cheap food options (around $6 for a taco or burrito meal), the drinks were super expensive. Our Bloody Mary was $11! My mango fresca (non-alcoholic) was about $4.\n\nThe service was good and we don't really have any complaints. This is a good option for someone looking for something not too greasy or heavy.", "type": "review", "business_id": "k_aOcqWOHWprjs7ykdzlAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RL3Z3J-W70oDhGuuKbyS-g", "review_id": "LX41B_OHLMwDh-uym7I8Gw", "stars": 1, "date": "2012-02-07", "text": "I took my kitty to the Beat the Heat low cost spay event and she came home with a hematoma in her ear that was NOT there when I took her there in the morning. Surprise, surprise...they can recommend a vet to take her to. I'm pretty mad about this.", "type": "review", "business_id": "pXE8u5EBP_v1HbPnr0U6xQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jaagaD0kk6dI4KFzyYxjfA", "review_id": "lfbMLt1oejIpfGw4sU7xTA", "stars": 5, "date": "2011-03-08", "text": "I am new to Jamba, however i am surprised at the AMAZING customer service that this store dishes out. One of the workers there has always noticed me as a regular customer. He has a stellar personality, gave me a 20% off card and sometimes has my order ready by the time i finish paying the cashier. He's always very bright and smiling or laughing with his co-workers, I believe his name is Christian. He suggested a banana oatmeal with peanut butter the other morning and i have to say that it has been the most incredible oatmeal i have ever had!!! (You must try this) At times i visit the store twice a day simply because i cannot get enough Jamba Juice!!", "type": "review", "business_id": "aeRyndix1wheBlff2FBsMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OhZEYs9jzyiTaSu_CfeVUA", "review_id": "0ivc3MeeKsHP6QLsPxqa2Q", "stars": 5, "date": "2010-05-30", "text": "I stopped by here last night after the Suns game. It was cheap and fast. Also, it was by far the best carne asada I have ever tasted. It was tender and juicy, and not at all rubbery. I know the last time I had carne asada it was rubbery, but that was also from a 'bertos joint. I enjoyed the way this place is set up. Walk up to the counter, order and they bring you your food. It is quick and efficient. We got the dinner for 2, 2 tacos, 2 burritos, chips and drinks for $20. The tacos were great, as were the burros. I will definitely be back. \n\nOh the 5 stars are specifically for the quick, efficient service... and the BEST carne asada around.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "1uwqR1r9nMDgI6RZT_bL2w", "review_id": "Iryqh4GJ0d5AeRuE9n6fAQ", "stars": 4, "date": "2010-05-08", "text": "The Original Burrito Co. is quickly becoming my favorite burrito place. The owner came to eat at the restaurant I work at and she told me to come by and try this place out and being a huge fan of Mexican food I had to go. The burritos are really huge and really well priced. I love the California burrito with Chicken, add guacamole. The chicken is so moist and tender. I have tried the carne asada as well, but when I got it it was full of cilantro and jalapenos, which were just overbearing, but I'm thinking it could have been a bad day and will have to try it again. Downside for me would be that the salsa is not spicy at all. It tastes very good, but I am a huge fan of spicy, especially on Mexican food, and its a bummer for me when a place does not offer a very spicy salsa.", "type": "review", "business_id": "6Tt0mGKbMoAz1GsjkVhbMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q6H8EfK1mAfQ1nB6GSeMTg", "review_id": "ZvJF8kFM1hdigaecIR2h0Q", "stars": 5, "date": "2011-03-28", "text": "Great sports bar! Shows most UFC, Boxing and WWE pay per views. Friendly staff, good food.... draft beer selection could be a little better, but other than that, one of my favorite local pubs.", "type": "review", "business_id": "TwMfahsPHFnkLiqqvyalAQ"} +{"votes": {"funny": 1, "useful": 8, "cool": 4}, "user_id": "y8ZCNq8HSGDSx7Vm-NYEOw", "review_id": "1h3koMjfxRMYLTZhTMEbLw", "stars": 4, "date": "2012-07-17", "text": "We came to Half Moon Sports Grill to watch the UFC Fight. It's a nice big place, yet we had to get there early since it filled up quick. \n\nThe place is fun, the girls wear short skirts and knee socks. They have a full list of local beers in bottles and on draft. They boast a monthly special, which July's is a burger for 1/2 price if you buy a drink. That's almost $4.50 for a giant burger with fries. Unfortunately I was full from lunch and did some light snacking with my beer drinking. \n\nFirst up, I wanted the Watermelon Wheat - Perfect for any hot Arizona day (which is most of them) http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#MrdXI7O_NSKVvqgGTcIYOA\n\nThen, the Dirty Guera Blonde Ale, because I love blonde ales and cute names. It was great and encouraged us to visit Nimbus the next day! http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#5nzmTTMOmGj_sVIxkTM51Q\n\nIn between, we ordered a couple appetizers, a gigantic pretzel that was served with both queso and mustard. I love to dipp! http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#lMQuuVAuKQAL-RKfEYkPWg And my guy ordered the Prime Rib Sliders (4) served with carmalized onions, french dip sauce and horseradish. http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#seP7cR-l6f3xjnJtzFQIxA That was a meal in itself, really. \n\nFor Dessert, I ordered the White Chocolate Ale which was by far the most dessert tasting beers I have ever tried. It was so much like a sweet white chcolate, you really need to savor every sip. If you see this anywhere, order it and thank me later. http://www.yelp.com/biz_photos/iB9By3dVS6BydSUiDHxLyw?select=0TZG-EndU48FUsm_K39bmQ#1jzaMBgdEa9YyVasa8rukQ\n\nAfter all that, I needed a couple sugar free Red Bulls to snap myself back in action. We had a fight to watch and I was not going to be the first to TAP OUT.", "type": "review", "business_id": "oaakO-X7uOXNxqsxjDSKfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ow8iWYjwgn7DzOU6yCBvXw", "review_id": "fFHC0sJNixuBFAi0CeAA_w", "stars": 5, "date": "2012-07-24", "text": "good place to kill an evening. I used to spend my time here many moons ago. good coffee at good prices.", "type": "review", "business_id": "2h9LsLPdJ7OvZrYJZhVdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "p3QX1ZoFOCrin4ojNOVkBg", "review_id": "TRj12tpfNpD_7rV1GEUoiw", "stars": 4, "date": "2011-05-09", "text": "Great ambiance, good food. My husband and I had the Southwest Benedict and Eggs Benedict, both were delicious. I do wish the eggs were a bit more runny and the food was warmer, but the presentation was beautiful.", "type": "review", "business_id": "vWnlScr9y2F6_ctDJZ6XLg"} +{"votes": {"funny": 2, "useful": 5, "cool": 3}, "user_id": "BVZ7iTR_nI3jzdQidze1UQ", "review_id": "gqbCVFKy4w9N57fgTn7OFw", "stars": 5, "date": "2009-02-20", "text": "Do you hate shaving as much as I do? Do you find waxing too painful and expensive every 6-8 weeks? Well I have the answer for you!!! Go see Cindy Semerdjian at Cosmetic Laser Solutions. I was introduced to Cindy through a friend AND NOW I AM HOOKED!!! Not only do I no longer have hair, it is very inexpensive! How much did it cost for you to get waxed...what would you say if I told you for a few dollars more the hair would be gone...PERMANENTLY! \n\nCindy offers a free initial consultation. A few prices that I have experienced on a per session basis is: underarm - $100 ; bikini (brazilian) - $100; full leg (both) - $250.\n\nI highly, highly recommend going to see Cindy! Tell her Jillian sent you! \n\nSo get started today to get ready for summer!", "type": "review", "business_id": "QCNo68hRVU3wytJ0oKA3KQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JW9m7KU5QAESEWv4OKBHSA", "review_id": "xtuAHT4aRsAXUhfqV7CoGg", "stars": 5, "date": "2012-02-03", "text": "This place is awesome they r going to replace a bad tire for me for free that another discount tire put on they r awesome", "type": "review", "business_id": "kay6xcNSE93fM96uHhA6ug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nEL-_kLeN37CSR9fXFY4zw", "review_id": "xISa9KeJRCRlPTuYmp1qhQ", "stars": 4, "date": "2012-05-10", "text": "I ordered takeout from here recently...and it was delicious! I phoned in my order during a busy dinner time, so it was a bit chaotic and the food took a longer than they had quoted me, but it was worth the wait. I had the imperial rolls, which are like veggie-filled non-greasy egg rolls, and the pad thai. I wasn't sure about a vegetarian pad thai without chicken/shrimp, but neither was missed because the flavor was amazing. Definitely will be ordering food from here again--just maybe during a less busy time.", "type": "review", "business_id": "znmvCpcwxYk_kYCqtUFt5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4zinPJ38-WxjPPomn7CPAQ", "review_id": "JFJRcKeqNObG_zk_jUJgiw", "stars": 4, "date": "2006-08-22", "text": "Phoenix has pretty slim pickings when it comes to good pizza, or at least pizza that I'm accustomed to. Rosati's, while not quite what I'm used to, is the best representation of Chicago style pizza that I've found. \n\nThe Chicago style deep dish is good. The toppings, especially the sausage, are plentiful and tasty and the sauce is good. I think the crust is what is a bit off. \n\nOverall, Rosati's is still my choice for pizza in the valley.", "type": "review", "business_id": "QHyqYUZ0WdxHYPAenIuLjw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "qwmfYLq3UGoR6c4-MVugYQ", "review_id": "jXM6_jAixq0rj3bOmZNDdQ", "stars": 4, "date": "2012-07-07", "text": "The parking lot is too small so watch out for your car doors. \n\nThe seafood is about as authentic as it gets in the US. Arizonans cook their seafood like New Yorkers cook their steaks: rare = medium, and medium = shriveled. Still, the shrimp & octopus cocktail was tender & plump. The peppers stuffed with shrimp were savory. The rice was not sticky and the refried beans didn't taste like they had lard. But I didn't ask.\n\nI would do this again, but next time I'll bring a friend. It's a very social place, 4 girlfriends chatted it up before, during and after I left.", "type": "review", "business_id": "NYBx4sdSVrN-I5Q8RfLMPg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "nP2HH7Qe5UtSsjeEH3NZuQ", "review_id": "EFsIM_LA8jOwrlGyFrJ5mA", "stars": 5, "date": "2012-07-09", "text": "This is the pub burger you have been looking for. Nothing fancy, just a good solid burger with a ice cold beer. Be aware this is cash only, but unless you fall in you wont need much.", "type": "review", "business_id": "GoS_IBdFdjZrQ7J2LSrCMA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "tiyg_cQaPdUuSG95Xpi_sA", "review_id": "FQauZH0pL52wlkquBCxuPQ", "stars": 4, "date": "2012-05-25", "text": "I love SAIL INN! Getting past the $8-10 cover on weekends is the hard part, but usually Sail delivers, 1) AMAZING LOCAL BANDS, 2) Laid back hippie, hipster,arty, folk vibe 2) cheap drinks, LOVE the little pitchers of beer - budlite for $4.25 on certain nights. Phoenix has a pretty lame music scene, but at least at Sail Inn you can always find decent live music and a fun crowd.", "type": "review", "business_id": "m9HmPct1Hxpx3IhK_HMXJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rq46hVxWltv4OmgWN4_2hg", "review_id": "mDKTRuPb4i9rAitkiYLBrA", "stars": 5, "date": "2012-03-07", "text": "Wow these folks know customer service! We like the fact there are always managers on the floor keeping things moving and tables clean. Food is good and at a good price point. A nice friendly well run place!", "type": "review", "business_id": "skhsqXMojhNAXZbsMZB8uA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EScPF4SpSncPwC3bf0VW3g", "review_id": "5MCwMqdQKHd_51igQqGIIQ", "stars": 4, "date": "2011-09-28", "text": "Blue Saguaro has been doing the same menu of breakfast sandwiches (seriously delicious - toasted sourdough drenched in salty butter, egg over medium, crispy bacon and melty American but not Kraft cheese) and lunch sandwiches & salads for over 10 years. There's a reason that it hasn't really changed: It works. \n\nThe lunch menu has specialty vs regular sandwiches. Most of the specialty are loaded up with sandwich fixings you're not going to get in a chain shop - cream cheese, sprouts, avocado that wasn't spread on thinner than mustard. The bread is bakery quality and there's a decent selection. The ambience is non existent, but when you're grabbing lunch on the run it really doesn't matter. \n\nThey are super fast, but that may be because I always tip a buck. :)", "type": "review", "business_id": "3rJE7qliy8_ylKhY5FdlIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9kXVOK3vl17j0SC-Q5LKzw", "review_id": "RmaqgLjjr_TEoyCXIBlIew", "stars": 4, "date": "2012-04-13", "text": "My hubby and I go almost ever Friday for happy hour. We love the chicken nachos! It's also one of the few places that has kept Blue Moon on draft instead of switching to Shock Top (a bonus for my husband). They recently expanded their wine list to my delight and I've been having fun giving the new vino a try.\nThe staff and manager are consistently friendly and the food is consistently good! Try the BBQ chicken pizza or the steak salad! Yum!", "type": "review", "business_id": "8Cg98L22BEcAD3gQq3QsPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bX5mIrDlyD8ZabvF_An7FA", "review_id": "g_ey_PlOVqmOW_NiM-e9jw", "stars": 5, "date": "2011-02-03", "text": "This location is great and there grooming service is good as well.", "type": "review", "business_id": "3zzj54L5Ya1777Nm7ewGVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PnEAXZ7WyJMYBr9IIulh5Q", "review_id": "8NP3qq5Yft8JA92o8vXxLg", "stars": 2, "date": "2011-05-27", "text": "Since this was a little local spot I always passed, I decided to give it a try one day. The d\u00e9cor is so beyond needing an update, it needs a complete makeover. If you had Mr. Ramsey visit, he would say, \"Oh God...what were you thinking\". The location is great and I think that the restaurant has potential to do better than it is. The prices were about average in comparison to other breakfast restaurants in the area and the menu had a wide selection of breakfast goodies. The food was extremely average...I would have to compare it to the quality and creativity of Denny's. Nothing special, and for $30.00 for breakfast for two...I would not go back. There are so many great restaurants in the area and I like to support local business but this place just needs to start from scratch to make it great.", "type": "review", "business_id": "OSL98Keoc2FSNx4a3ge5Uw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "A9x6WO4DJuHzT2U_fT9Jhw", "review_id": "dhpPqFtVPpefS6GHQRDQag", "stars": 3, "date": "2008-10-23", "text": "I am going to give Aunty Chiladas 3 stars only because I have gone there since I was like 10. This place has been a staple in the valley before the 51 went by etc etc. It definitely looks like it has been there for a while and needs a good asthetic cleaning. Our table and chairs were sticky and it was pretty dirty outside on the patio. There were chairs and miscellaneous items on the outside of the restaurant and it needs some TLC.\n\nChips (flour) are good but salsa has black olives (yuk, personal preference) and the hot stuff tasted like it had vinegar in it. It has a great patio for daytime drinking. Overall the food is above average.\n\nI ordered the fish tacos and they were good. My accomplice ordered a combo with your typical rice, beans, enchilada, taco etc. The food was hot and good. It didn't have a wow factor but the price was good and worth the money.\n\nHoly smokes.......The service was awful. I am not going to mention any names but it was slow in terms of business and even slower in terms of service. I hope that they do not correlate but they usually do. C'mon Aunty you are better than this!!!!!! \n\nIf you live in the neighborhood then it is worth going here. I probably will not make the drive again. Good luck Aunt Chiladas.", "type": "review", "business_id": "G9LwkTSdKOyOGqd5BbuIkA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "BpKazDy9V-ITVR5vJfqqog", "stars": 4, "date": "2008-01-01", "text": "I'm not sure how I've missed trying this place, after over a decade of living in the Valley, partly as an ASU student in need of a good hang-over recovery joint. I can't believe I relied exclusively on the IHOP on Apache Blvd, all those years in Tempe. Dammit!\n\nIt was packed on the New Year's Day morning I came here with a friend. The service was a bit slow but on par with my expectations for a jam-packed popular breakfast joint on New Year's Day. I ordered a calorie-laden Cajun skillet with scrambled eggs. I'm knocking off a star because the chicken pieces were too dry for my taste. But the rest of the skillet was very good. The service was friendly and professional. Wildcats beware, lots of ASU students within.", "type": "review", "business_id": "OSL98Keoc2FSNx4a3ge5Uw"} +{"votes": {"funny": 2, "useful": 6, "cool": 5}, "user_id": "nZ9XFVETN4hxdK4qPb-T3Q", "review_id": "UqYGt4v1wETk7_NFA_ziig", "stars": 5, "date": "2010-03-10", "text": "If you are looking for a good vet, you have to read this.\n\nIf you are looking for a vet that is COMPETENT, a vet that REALLY CARES about animals and a vet that is INEXPENSIVE and reasonably priced, then you really have to check out Dr. Howard at Grayhawk Animal Hospital in North Scottsdale. He is worth the trip.\n\nI am so impressed by Dr. Howard and his EXCEPTIONAL STAFF. Every time we come here we leave satisfied beyond our expectations. \n\nSince my last review, we have used them two more times. Once when Spencer got neutered, and once when he had to have his nails trimmed. I have to say I am so very impressed. I was holding back on reviewing them again until I could be certain that it would be an accurate review and to be certain that they are consistent with their outstanding service and pricing. Well, I can say confidently now that they most certainly are.\n\nSpencer was neutered here some time ago with no complications and no outrageous fees. When he was done his procedure, I received a happy, completely alert dog back from them. His incision was minimal, the sutures were tight and he healed quickly. It was done so well that he did not even lick at the area. It was like nothing ever happened.\n\nMore recently, Spencer needed his nails trimmed, and because he was a rescued dog from a very abusive situation, he does not trust people and has a phobia to anyone touching his tail or feet. It is so bad that when I try to nicely, calmly approach him to trim his nails, he urinates all over himself and hides for the rest of the day. Spencer was really abused and as a result, grooming is really difficult.\n\nWell, I discussed this with the doctor's office and we decided that sedation (unfortunately) was our only option. His nails were getting too long and painful and something needed to be done. Well, we just got him back from the office and they were so good about it that they did not even have to sedate him. I am impressed, but what I am more impressed with is that they first tried to trim his nails without using sedation and had his best interest in mind. They really care about the animals they treat. \n\nThey could have sedated him. It would have been quicker and easier and more profitable for them, but they didn't. They really did not want to use a drug on him if they did not have to - and so they didn't. They trimmed his nails up well and did not even cut into the quick or make him bleed. He left there, again and as usual, a happy, well taken care of dog. And we left there ecstatic! The bill was so inexpensive and Spencer was taken care of so well - like he was their dog. I just can't say enough good things about this Veterinary Office. \n\nI think that everyone knows that good medical professionals are hard to find - for humans and/or animals. So often, they just don't care about the patient. Well, not here. It appears to be their top priority. Dr. Howard is a very happy, well educated man and it shows in his practice in every way - right down to all of the people he hires (they are all equally happy and competent!). You will not be disappointed if you go here. They are honest and kind and not out to rip you off or get as much money from you as they can. They are truly exceptional. So if you need honest, competent & friendly care at very affordable prices, you owe it to yourself and your pet to make the trip over to see Dr. Howard at Grayhawk animal hospital. You will be in good hands! You will save money, and you won't be disappointed in the least.\n\nThey are truly exceptional, but that is the end result of really caring, really liking your profession and really knowing what you are doing... And we love them for it!", "type": "review", "business_id": "pM96dn6jrJg2V7Aj0trPCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rzDdV9IAK7U-oQXInkCuAA", "review_id": "j2rc1LRXoexFS92Pw2BIjw", "stars": 2, "date": "2012-10-05", "text": "Traveled for work and we have a corporate agreement with them. I arrived at the hotel and was informed that they did not have my King bed available, I never get how you reserve a room and then they are out. I asked if I could get an upgrade, which they obliged and put me on the executive business floor. The floor smelled of cigarette smoke. The hotel needs some repairs overall, which they said they were going to remodel. Room was clean, some dirt behind the bed, yes I look everywhere and the little closet was in very rough shape. What I was really upset about is that these hotels and our agreement is supposed to have a Sleep Number bed. It's even advertised. Nope, not in the executive floor rooms. Makes sense right? My mattress was worn and not comfortable at all, prob the worst night sleep ever. Was not rested for the big meeting the next day. IAsk for the Sleep number!", "type": "review", "business_id": "i0Y3L91iwCB8acBBqdh9Uw"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "EKwGhgLrM18ErVKKeYE2UA", "review_id": "r--duN806CrpmHfAIXx0dw", "stars": 4, "date": "2009-02-06", "text": "My prom date brought me here 10 years ago. Hmm...I wonder what he was expecting at the end of the night. Although he thought that tanning until he was as red as a lobster was the new black this was one of his better judgment calls. \n\nWe had a window seat and I mesmerized him with fascinating facts about the city, which were on little plaques along the windows. It really took him until the end of dinner to figure it out. Anyway, I am sure the menu has changed, but the salad and shrimp with angel hair pasta I had that night were yummy. Cool view. I will have to come back sometime to see how the valley has changed from this view.", "type": "review", "business_id": "4waggbCK-MSE9dbIdSMfPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VcN9i7sPrGSOn4BnpOJ9tQ", "review_id": "X-P53WWo1I2CClf9oMqWEw", "stars": 3, "date": "2010-04-03", "text": "Rolling Hills is two executive courses, and great for a quick cheap round of golf. Totally not an out of towner destination course, but a nice little local fave of mine. The front nine is the old course, and is a bit like mini-golfing, a fun distraction. You even get to hear the occasional strange animal sound from the zoo hidden behind the trees along a couple holes. The back nine is a newer build, and is way more challenging and scenic. Either way they both give a fantastic view of the valley, and it's a great place to play a quick 9 holes after work in just over an hour\n\nOnly eaten at the clubhouse once, but both me and my bud liked our burgers, and it sits next to the 9th green, which is great for a little free entertainment.", "type": "review", "business_id": "vi3TSM3KR-OW7LlHJ6QmEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGvxLe5jdJGbxTYt9XjScw", "review_id": "LCg7QyV_d5wJLOSE-Njkgg", "stars": 5, "date": "2011-10-18", "text": "Best in town!!", "type": "review", "business_id": "CEs_oJMtLsll3xBM9slBQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LoYy8ruCxPZZPF78_Bu2eQ", "review_id": "9WKwgL9tgA5u9dhyC3WsGA", "stars": 2, "date": "2011-11-25", "text": "Okay now this is a large chain and on average it's okay to good! and I have been to this place many, many times, but I have to say the last time I went there for the happy hour hot wings (they were dry, over cooked) then I had ordered a steak and seafood combo (Cajun) something but after my second brew I thought it was me, so I had the wife and my son taste it man was it salty!!!! It tasted like they dropped the salt shaker in the food, but my waitress assured me that could not have happened \"because all there sauces come in bags and are pre-made\" (Gross, that did it for me) I was outta there with the quickness...", "type": "review", "business_id": "U_aP0IJdn36wYwpiCtQCag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9vxUUOoasnu8gtoXRwAhYw", "review_id": "Kfz5DRQfGcmJltCZf3JdHQ", "stars": 1, "date": "2010-12-19", "text": "I had such a nice experience here - Classic Chicken - the first time that I really wanted to go back. Second time, onion strings were so greasy I couldn't eat them, burger was okay. Third time, yesterday? Enough to say we wont go back. Ever. \n\nLovely and I sat in a sticky booth, he ordered 1/3 lb classic, me the bbq grilled chicken - both with a small soda. Soda was disgusting, flat, watery, gross. Upon the lovely's complaint, the bus boy brought him bottled water. I took one bite of my sandwich and was assaulted by hair. Gak. We got up and left our food. Jeff told the manager about the food and the soda, we got our money back with an apology saying they were sorry we 'didn't have a better experience'. Um. A better experience??? Seriously? 15 dollars? \n\nUgh.", "type": "review", "business_id": "R1kKjAO5kZO6d0gQGqrvGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zcgggMqoYxQxLN9zwKE7vg", "review_id": "JquvaBH5m4yY34g40kHcKg", "stars": 5, "date": "2012-08-11", "text": "Heather is awesome. She did my initial set of lashes and I've already gone back for a fill. Her prices are great and she does beautiful work! The compliments are rolling in. Absolutely recommend!", "type": "review", "business_id": "9yq9xzYkYJZamqCXZ_wNvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ef3cFjUXJRFTvsDv1gYhUQ", "review_id": "qfa7b9bEWVxXkqGV7V4dwQ", "stars": 3, "date": "2011-08-19", "text": "I am an avid quilter and moved here recently. I am on the hunt for a new quilt shop and I went here, despite the \"grandma quilt shop\" name lol. The staff was VERY nice and helpful and friendly. The shop a little on the small side, which made me surprised to find that they have a very decent selection of contemporary fabrics! My only disappointment is that that they don't have fat quarters cut of each of the fabrics, though they will cut fat quarters - but that's not something I want to have to wait around for. \n\nThey carry a small selection of minky and home dec fabrics as well. I will definitely be back there!", "type": "review", "business_id": "quuw7VE2acuLEve_LVKbRw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "dFayEgcd7FUN-DFdHRYE0Q", "review_id": "xuhlhYUPLBOHMFiYxEPtEw", "stars": 5, "date": "2010-07-21", "text": "I love love Barrio Cafe. The food is amazing and it is very cute and artsy.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "HV9LHnhcpKerGqmLk0MpAw", "review_id": "RMDKzZ_vailjj018foMniQ", "stars": 5, "date": "2012-05-29", "text": "Chino Bandido is a staple for my sister and I. I'm not going to lie, when describing this place I feel the need to mention that while it's not much to look at on the outside--inside it delivers some of my favorite guilty pleasures.\n\nI encourage anyone who is trying this place for the first time to take a few minutes and allow the staff to guide you thru what they have to offer. With their complimentary taste test , you can try a few of their most popular dishes and learn how to order off of their moderately challenging menu (but once you get it, its super easy). I ALWAYS go for the combination of double jade red chicken, refried beans, and plain fried rice.\n\nThe snickerdoodle at the end is perfectly baked. Every time. Love this place.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "10gS06WUK_JXqQ8Arn9QyA", "stars": 3, "date": "2010-04-03", "text": "I was craving something last night and couldn't figure out what I wanted. I happened to stumble across this place and decided to give it a try. I ordered the house fried rice and some crab rangoon. Now the crab rangoon were pretty good and I was actually bummed that you only got four but it was only about $2.50 so I cannot complain too much. The fried rice was just ok. For it to be house friend rice, which comes with beef, chicken, pork and shrimp, I can understand not having alot of the shrimp but it didn't have much of anything. I mean it tasted ok, but I was hoping for a little bit more meat than there was. It was a quick meal considering I didn't really know what I wanted to eat anyway. I may give it another try and hope that it's a little better next time.", "type": "review", "business_id": "3tk6Syyz5i967Ifuz_4o3w"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "Q96IRvil6RNgdLmGKuh81A", "review_id": "KybT4r6lqepJXlB4CigcKw", "stars": 4, "date": "2008-12-09", "text": "Only went to the downstairs bar, but cannot wait to return! Very cool with the rock and copper features and leather couches. We sat at the bar and were served drinks that you pour yourself. Is this a new trend? He gave us little glass bottles of tonic and coke with little spoons to stir our drinks with. Those little spoons were so cute I was almost tempted to put them in my purse. If another couple hadn't been hogging the fireplace the whole time, we would have sat there. Maybe next time. We'll try to food too.", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "twmCrdNA6futrpytkPOZsw", "review_id": "TYY00Y2MVjq7CeQqd0pKdA", "stars": 2, "date": "2008-06-16", "text": "I have been here a couple of times as it is about a block from where I live. It is your typical neighborhood bar. That is, not a lot of people, average prices, okay happy hour.\n\nTheir menu is bar food. Burgers, Wings, Fries, and so on. The have the standard domestics on tap (Bud, Coors, Miller etc).\n\nA lot of times they have live music at 9 or 10. If this is for you then you have the chance to see an exclusive performance since not a lot of patrons are there. However, it gets pretty loud. So if this does not sound like your thing, be aware what time it is. \n\nService is pretty bad if you are in the \"restaurant\" part. The only time I have eaten at a table the bartender was also our server. Needless to say slow is an understatement. \n\nThe only reason I go here is so I don't have to drive anywhere. 2 stars because I have experienced better, much better. My experiences tells e that the Waterfront is just a corner bar. Nothing Special.", "type": "review", "business_id": "N9iPqBRI47bewLAeKBlkIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dym75Mq5WpaJgXXOzQn_2g", "review_id": "HDdfhJe1KHescx48zfFuuA", "stars": 4, "date": "2010-04-12", "text": "Decent BBQ food but nothing to scream about... but be prepared to have a TON of food to eat.", "type": "review", "business_id": "ukUuBT8zVXNC7Zz34cctAw"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "eYoB6mEOCkraWM2vhYikvQ", "review_id": "0cOUqB5HKyYmCwX4NHLH5A", "stars": 5, "date": "2010-04-13", "text": "I'm a pho snob, my hitlist is impressive. In Olympia, I ate pho literally every single day. Test me, wannabe purists...\n\nNam Sao is the best. The guy always working and seeming to make the food is so quick and super sweet. Great service, my drink never goes empty, and the table is set in traditional pho-joint style: a metal caddy with spoons, forks [...], chopsticks, napkins, and all the delicious condiments.\n\nThe menu is enormous, so if you happen to be in the mood for something other than their glorious, never-watered-down noodle soup, you can try something else. The spring rolls, I love them. The boba tea is great too, I've had it thicker and more rich at Pho Hoa in Oly but I like the less creamy variety served at Nam Sao. \n\nFast service, cheap filling meal, wonderful server.. I literally cannot think of anything bad to say about Nam Sao, except it's so small it's kind of hard to find if you're new to the spot. Just go to the right of Fry's and you'll see this little piece of heaven with its lights on, welcoming you in.", "type": "review", "business_id": "L-GfuOmn9mv55571uXvf2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zT0RnW-yPhXyz_GNap9Zpw", "review_id": "OpCNsgN2IIVtT3G_0IBG6g", "stars": 5, "date": "2011-02-15", "text": "Great quality, great prices. If only they had longer hours, delivery of large items, and a gift registry, it'd be heaven.", "type": "review", "business_id": "RHYJho19op3wdNfJOFUR0A"} +{"votes": {"funny": 3, "useful": 2, "cool": 4}, "user_id": "b9XdpPlzZCVimhNb0z8CNA", "review_id": "501jxj1m3ftyyGVVGITZPA", "stars": 4, "date": "2009-07-10", "text": "Chuy's is one of those places that doesn't quite qualify as a dive bar/restaurant, but is close enough to count. I like Chuy's. It's like a mini-vacation every time you go. Part beach bar, part pseudo-tiki (any place that has thatch palm fronds above the bar gets a star in my book!), you'll feel like you're on a beach somewhere every time you visit. \nIt's nice to have one within walking distance to the office, to allow for a little exercise to and from and still have a good meal. Their prices are reasonable. I've been struggling to find a lunch under $10 these days, and the Tri-tip sandwich and an iced tea will set you back a ten spot and some change. The food is good, did I mention that? The staff is friendly, and they finally did away with the cheap-o' paper towels and put real napkin dispensers on each table...FTW! \nThere's an unlimited chips and salsa bar, I like the cabo sauce the best for my chips. I always add a little Baja sauce; you have to ask for it at the counter, to whatever I'm enjoying. Today it happened to be the Tri-tip sandwich. I give it 4 out of 5 stars because even though they have to-go cups, this is Phoenix. It is 108* outside and the full glass of iced tea I left the restaurant with was gone by the time I got back to the office. There should be a City-wide ordinance that all restaurants must supply patrons with at least a 32 oz. to-go cup during working hours. All right, I confess that might be a little much. The only down-side to Chuy's at lunch I've found so far is having to go back to work afterwards and not being able to enjoy a Corona with my lunch. That's okay though, it just one more reason to go back.", "type": "review", "business_id": "7UTlEVHU5v2xBLdkGghyzQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "9OjXGwgJvvVNkUhQVmOWKA", "stars": 3, "date": "2008-01-24", "text": "Having grown up in Hong Kong and having eaten dim sum in London, NY, LA, SF and Vancouver (actually Richmond), I can confidently say I know my dim sum.\n\nGood selection of well-executed dim sum when the carts actually come around and there's anything left in it. I'd give it 4 stars for food but the wait definitely detracted from the whole experience.\n\nI think the problem with Golden Buddha is that they can't handle the heavy flow on weekends. There's not enough regular dim sum eaters like LA that can sustain a steady flow of diners throughout the week, forcing restaurants like Golden Buddha to depend heavily on extra part-time help on weekends. \n\nDim sum takes serious skill so the chef still ends up doing most of the work. When we looked into the kitchen, we saw a Chinese woman doing most of the cooking herself. No wonder it took forever for a cart to come out and when it does, it's swarmed on by a pack of vultures.\n\nIf you're willing to eat at a more simply decorated place with a smaller menu, I'd highly recommend China Chan. It's much more relaxed - usually no wait on weekends. An experienced chef makes all the dim sum himself so the menu's much shorter but all the classics are on it. Anything steamed is made to order so is very fresh.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "W7zmm1uzlyUkEqpSG7PlBw", "review_id": "bypBY2P-0jB49qwTOP8r8A", "stars": 2, "date": "2011-11-04", "text": "For what it is, cheap easy family friendly food with a bit of a yuppie bend, its not bad.\n\nBut they messed up a grilled cheese sandwich.\nHow do you do that? My mom, god bless her, can't cook to save her life. None the less, she can still make a pretty damn good grilled cheese.\n\nIts not rocket science. Let me walk Sauce through this:\n- Cut slices of cheese. Precut is pretty gross.\n- Put bread around cheese.\n- Apply butter to the outside.\n- Grill til melted.\n\nYet, my girlfriend's grilled cheese was horrible. Bad bread, thin on the cheese, and it tasted like heated cat turds.\n\nI'm just not that impressed. I know lots of you love this place, but I don't for the life of me know why.\n\nIt would have been 1 star, but the mac n' cheese bought it an extra star. \n\nWhy is it so hard to find good pizza in Phoenix. You'd think with its mob proximity to Las Vegas that it'd have better Italian food. And yet, not so much. I blame the Mormon influence on this town. Too many years of Kraft products and special underwear have really killed the food talent here.", "type": "review", "business_id": "w5XcgWwGAN21Ly2HeU48IQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "R0cXfEW1z4acgmcW-XfKrQ", "review_id": "YLXX3Yaru02CsMMOPtVfQA", "stars": 4, "date": "2012-09-20", "text": "I was very satisfied with the food here. We had wings (half bbq and half buffalo) and a BBQ sandwich. The BBQ sauce was amazing, the buffalo sauce was not super special but perfectly acceptable. The wings are made to order and SO worth the wait. Portions were very good, and the coleslaw was also good. The service was very friendly, she was funny and charming and a good server, too. We will definitely be going back. OH! I almost forgot to mention that they have all-you-can-eat days for wings and fish, AND they let you leave and come back for more (additional drink purchase required)!!!!", "type": "review", "business_id": "ftNAvqB60nsMbs1Cr0moXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S-SfTvefYbFzFkJj8ojqrw", "review_id": "0hRwODZdH0x1rQYtE-KF9w", "stars": 1, "date": "2012-05-16", "text": "I usually do not write reviews, but was so horrified by my experience I had to. Went for a late night bite and drink with a friend, they were fairly busy so we had a seat at the bar. As I frequent The Moon often, I was happy to see the bar was busy as well. The bartender quickly came over and was noticably intoxicated, as she could not even tell me the flavors of vodka they had. We ordered our drinks, and watched as she broke glass into the ice, knocked over glassware and broke a beer bottle. As we looked around most of the guests had the same look of horror on their face. We decided to order some food, as she spilled my drink on us (refilled it with something completely different) and she could barely even talk at this point. We saw management watch her behavior and do nothing, as she preceded to grab dirty glassware and refill it with beer. I was so appauled by this we left befpre finishing our drinks or food. I'm not sure what she was on but if its visible to paying customers it should be visible to management. Being beyond embarassed for the establishment, I would doubt I will come back, sad as we would frequent the Moon 2-3 times a week. Horrible.", "type": "review", "business_id": "GwxCl1eT1lrC-PqtHTSObg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "SnhkvWncwa4VNAig8hX_6g", "stars": 4, "date": "2009-02-17", "text": "If you're a Tarantino fan or have seen Pulp Fiction an embarrassing number of times then you know what Jack Rabbit Slim's is. If Jack Rabbit Slim's existed, this would basically be the Phoenix franchise of it. No, it's not a wax museum with a pulse, it's just a great place to go to after a long night of drinking/smoking/etc. with friends. The music is great and the food is good no matter what your level of intoxication is. Now I'm not using that as a jab at all, that's part of the reason I love this place. Where else could you stuff down a greasy burger at 3 AM, gulp down a massive shake, listen to the wailing of Buddy Holly, have a waiter named McFly, and enjoy being trashed all at the same time? Sure it's not the cleanest nor does it have the best service, but who cares?\n\nIf you go at the right hour late at night you'll see people that you are convinced could not be out in sunlight. Be sure to look for the guy that looks like a hermit Santa outside with the wildlife scenes he hand painted on his van. Again, I'm not knocking this place because it's part of the experience. If it's not for you, wear your paper hat and go pick up your order at In-N-Out's drive thru.", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zTygpljE4TazYFfJvVAFYQ", "review_id": "ePrpHsnBzu61WW_YrzH-Ww", "stars": 3, "date": "2011-09-02", "text": "I was extremely excited to try what is considered some of the \"best pizza\" in America..., finding out it was only minutes away from my new office. My expectations may have been too high. Our party of four went for a late lunch, we did not have to wait for a table. \n\nMy fiance and I decided to try 2 pies, the margherita and the Biancoverde. The Margherita pie came out quite dry, not with the wonderful chewy crust that a great margherita should have... however, the Biancoverde, a white pizza with Ricotta and arugala, was fantastic! Incredible flavors, the extra toppings kept this pie perfectly moist and delicious, it was really quite perfect. \nUnfortunately, we had a hair in one of our pizzas, however, that's only part of the reason for the mediocre rating... \nThe hair, the 1-2 star margherita, and the non-existant meat selection I can only give a 3 star rating... (I'm a bit of a carnivore, I need more meat!)\nI'm still looking for something to replace the incredible pizzas I've had at my favorite neopolitana joing back home in Canada, Famoso. \n\nWill I be back to Pizzeria Bianco for another go? Absolutely...", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 4, "useful": 2, "cool": 1}, "user_id": "ek4GWXatDshMorJwGC2JAw", "review_id": "oVYk9Gxa3TY63FAeoeCEzg", "stars": 1, "date": "2012-01-05", "text": "Most livable city my eye!\nPlastic yuppies around every corner looking for a reason to belong. I can't wait for the homosexuals to take control of this dog park and give it some class.\n\nAvoid at all cost.", "type": "review", "business_id": "77oW-QeIXbUoTbUbrdD2aA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dRfuAF1X90yB-B8jTaqutg", "review_id": "XnK5ItiMBAcSHSddpJpnQg", "stars": 4, "date": "2012-11-26", "text": "I haven't been here since they renovated but the previous decor was great. Elegant open areas, great atmosphere.\n\nTried almost everything on the menu with the owners one night and everything was amazing. I'd be there more often if it were closer.\n\nThey can also do private parties on their outdoor patio, and offer drink/music service.", "type": "review", "business_id": "KgTb63IZHFn_rhLG-cpm_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cVUJrTgmJ1j7XepKv1fcng", "review_id": "V03KEwSXM3rAScBf7DaKOw", "stars": 1, "date": "2012-05-20", "text": "This place is awful. I bring my fourteen year old daughter along for services once in awhile, and on two occasions here they managed to seat me and skip her for other clients that did not have appointments. They wont accept a tip from your debit/credit card which is pretty inconvenient if you don't carry cash. They use a cheap base coat in an unmarked bottle that leaves my polish job looking funky. My mother was a loyal client until she got an infection in her toe after a visit. I don't like to write bad reviews but this place does not deserve your business.", "type": "review", "business_id": "lGe-TqVudTQvDQ_pj0jmNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iKi-FUw5x7A220fVvEcNuw", "review_id": "MKd8D5RlOxaazVbh_y58MQ", "stars": 4, "date": "2011-05-20", "text": "Not bad. Very large story that has about everything you'd want, and open 24 hours.", "type": "review", "business_id": "3RrRw6ZCsLgHEdqJQj5wvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tFyQbNbBQEyEc9oCr1pJUg", "review_id": "5wq572P4ZWhHzaEjtDuxhw", "stars": 5, "date": "2012-12-04", "text": "Cholla Trail is a lot of fun and moderate hike. Echo Canyone is a lot of fun but also more challenging. Overall both trails are so much fun and a great workout.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CWFNnkBBjFgs3Go5lmYrfw", "review_id": "s5JM3Fa_3qpzwsqgV27Hvg", "stars": 5, "date": "2011-11-20", "text": "All I can say is \"yum!\"", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vnSz2VT6s-gdRBjlFDACYg", "review_id": "EdFx6mNJDfJWP6yDO42cUQ", "stars": 4, "date": "2011-04-19", "text": "Go", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "6u2ouAdR_R2dI8-qNUGfUA", "stars": 3, "date": "2008-05-12", "text": "So I started getting a cold yesterday and wanted some more soup it was late already 8pm so hunny went off on the search for soup since it was Mothers Day n' all. He ended up at Manuels dont ask me why!! Our white neighbor loves eating here, he had heard from somewhere or someone that they had the best albondiga (meatball) soup?! Well it was wayyy tooo salty other than that it was ok kinda spicey not too hot though. I don't eat meat but the kid liked the meatballs it looked like they had rice in them anh herbs too who'd a thunk. Chips were a tad too greasy and the salsa wasn't too bad good heat, beans were good rice was alright. If it is necessary and in a pinch again I'd go again but prob not.", "type": "review", "business_id": "I7IfnWW1nXljC4ZGqwPe-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "INnEI8JTfYHSzH_i9mL_7A", "review_id": "E9tRUfgGnmLRA4tqTuKmag", "stars": 4, "date": "2011-03-28", "text": "It's a beautiful hotel, most definitely. The recent renovations are gorgeous and simply wonderful. The grounds are lush and well manicured and the staff was polite, friendly, and very helpful. The rooms were pretty adorable in terms of the architecture and surrounding areas. They are spacious and comfortable, but the bathrooms are VERY dated. As in, 1970's fantastic here! Funky beige tiles everywhere, dark dingy shower with frosted glass window that really doesn't let much light in. I know they're trying and they're so so close to being amazing in every respect, but the rooms could be improved upon.\nThe pool areas, common areas, poolside bar, and convention areas are gorgeous though!! You instantly feel right at home in these areas and it was beyond pleasurable just hanging out at the hotel! Really perfect for group gathering and family away-time. And did I mention everything is gorgeous?? Because it really is! \n\nOnly other negative is that they charge a ridiculous amount for wifi, which is in ADDITION to the daily resort fee, and don't provide complimentary water bottles, which you would think would be a no brainer for a luxury resort in the middle of a desert state.", "type": "review", "business_id": "N82S_d9LfAVKi3OS59192A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cHnlIFP5WwJRer7_C2NUng", "review_id": "y4IidhiczM39_FT9izKbHw", "stars": 4, "date": "2011-04-27", "text": "The ambiance of this place is pretty great. I made the comment while we were having diner that it would be a great place for a first date. That way, if it is awkward, at least there is plenty to look at to make the time pass. The food was pretty good for the price. The service was also great. I'd happily go back again.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 3, "useful": 5, "cool": 1}, "user_id": "MKUv9aV4Aq6fmNeFHQjqPQ", "review_id": "zNXqTFHfyl1Ddz0KvZIFiA", "stars": 1, "date": "2012-01-03", "text": "I'm a little shocked how high this place is rated, to be honest. I'm not disappointed easily, but I've given this place three chances to impress and they've consistently disappointed. I live nearby and was very excited for a new, trendy place to eat & drink. The first time we went there, we sat at the \"outside\" bar. The male bartender was not personable at all-he was actually quite rude. When I politely asked him if he knew the price of a liquor off the top of his head (and not to worry about it if he didn't, I was just curious), he snottily replied with, \"well, there's not a button for it so I don't know.\" He then rolled his eyes and walked away. I was astounded at how rude he was but shrugged it off. I actually felt bad because I thought somehow I offended or embarrassed him because he didn't know the price of this particular liquor, so I apologized to him, and he proceeded to made another smart comment about how he charged me the well price but that the next time I come in it might be much higher, again being very snotty and rude. My boyfriend was actually pretty upset at the way he spoke to me but chose to let it go because we just aren't the type if people to be confrontational or to complain. After our meal and about an hour before close, he told us he was leaving and that another girl would be taking care of us. When she showed up all she did was clean the bar in preparation to close (even though that wasn't for another hour) and didn't even introduce herself or say hello. I waited for her to notice that my boyfriend's Blue Moon was empty but she was too busy cleaning so I asked her myself. She asked me what beer he was drinking, I told her, then watched her pour the wrong beer and give it to me as if I wouldn't notice. (Not all alcohol is available at that side of the bar. For instance Blue Moon and the liquor I was drinking are stored at the main bar, another point of annoyance for the original, rude male bartender. But how is that my fault? I didn't know that. And clearly this girl didn't feel like going to the other bar to pour the correct beer for my boyfriend, even though she specifically asked me which beer he was drinking and then lazily poured whatever wheat beer they had in tap at the bar we were sitting at.) That was the \"straw that broke the camel's back\" for me. We paid out and went to Darcy McGees (in the same shopping center) where the staff are always pleasant and helpful.\n\nWe have since given the Lion two more tries but been severely disappointed with the service. The food is excellent- but just cannot make up for the terrible service. The second time we tried this place we sat at the main bar (as to not inconvenience the bartender at the outside bar), and all of the bartenders were too busy talking amongst themselves to notice that both of us were empty on drinks and hungry with no menus offered to us. I'm sorry to say that we won't be giving this place another shot.", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "dC6hbhg2sdJSOlRjtAavZw", "review_id": "om-RhoENlAU_k635DdoFJQ", "stars": 1, "date": "2012-06-15", "text": "The worse food and service. I have never given a bad review. I ordered a shrimp dish with brown rice. The waiter brought out white rice. The sauce was horrible and bland. The calamari salad was not fresh. The dressing was bland too. The waitress checked on us and we asked for check immediately. She never asked if anything was wrong or if the food was good. I would never recommend or eat here again. The service and food was horrible. I was visiting from out of town and was hoping to get a new experience. This was not it...", "type": "review", "business_id": "xxyuGOeAWnKVwIfoKnfUNA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "zHH2Iz49wCZYYDLBTv0YOg", "review_id": "nIGMuZYZUHtqtDYgzWiISw", "stars": 2, "date": "2008-06-19", "text": "This is that place next to the REI off of Southern Avenue. No real ambiance or service to speak of - it's just a little strip mall burrito joint.\n\nI ordered the Devil's Shrimp burrito or burro or something, I don't know. I don't guess I stopped to think about what meaning exactly the word 'devil' might carry in the name, but I found out - it means HOT. Like hotter than pepper spray hot. And yes, unfortunately for me, I do know what pepper spray tastes like - I had this friend in college back in Austin, and one drunken night his crazy little brother Michael slipped me a shrimp that he'd soaked in pepper spray. Lemme tell ya, that was pretty F'in hot, but not even close to the devil shrimp at Taco Nazo. I'll be back, but only to take Michael there when he comes to visit next month. Beware the devil's shrimp.", "type": "review", "business_id": "3uKAHQr19vFUfBJuXdmhEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cUmmzYZP4UIG6pvoeaS0wg", "review_id": "GcGfI-rkBwcq5I7u1s_ktg", "stars": 5, "date": "2009-12-30", "text": "Excellent pizza, great service, family environment in a beautiful setting. That sounds like a tagline on a website, but it's legit. The diavola and the salsiccia are my faves. Just amazingly tasty, simple, pizza with quality ingredients made the right way in a brick oven. Pizzeria Bianco might have em by an inch just based on pizza alone, but if you don't want to wait 2.5 hours for a pie, Cibo is the place to be, and almost as good. And although Bianco has a 2.5 hour wait whereupon i generally drink wine for the duration(which might be part of the reason the pie is so good), the limoncello at Cibo generally floors me just as well in a quarter of the time..", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Pk5T0OFCbl8mIKkKYyglWQ", "review_id": "oeFXUbyS9oO6wBu2Ms3U0g", "stars": 4, "date": "2012-09-08", "text": "Let me first start off by saying I was skeptical. I had no idea what to expect and after reading a ton of reviews, we thought we would give it a shot. \n\nLocated in an old converted home in Heritage Park right across from Pizzeria Bianco the place is small and intimate and just an experience in and of itself.\n\nNow for the food. Where do I begin? Tapas (small plates) style, and community (share) the experience is in ordering from each section of the menu.\n\nWe started with the Kimci and Nasu. The Kimci is a Napa cabbage cold plate that will rock your world; a little sweet, a little spicy it was a great way to start. \n\nThe Nasu is an eggplant with a bacon marinade of sorts on top and while I am describing it poorly it was truly delishous. Amazing!!\n\nNext was the Yellowtail Ceviche. This WAS OUT OF THIS F'ING WORLD. Inexplicable but so, SO GOOD. \n\nNext was 2 off the menu plates, chicken and Wagyu beef short ribs. The ONLY REASON this place does not get 5 stars is 2 of the 3 different types of chicken were mediocre. The wasabi grilled chicken was pure wasabi on grilled chicken. \n\nThe 2nd was a panko fried chicken, which was moist and delishous but nothing amazing, HOWEVER the 3rd chicken was an orange peel fried chicken that way just so good beyond words.\n\nLastly, the Wagyu beef short ribs were so so so amazing, I mean, I never wanted the taste to leave my mouth.\n\nThe service, very good Juan (our server) was very attentive and very helpful as it was our first time there...but it most definitely will not be our last...oh and THEY VALIDATE FOR PARKING ;)", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "drS3ZN6-zA3sr5WM2fG5tQ", "review_id": "_ouBt9E2WJGWS9oft1q1Dw", "stars": 4, "date": "2011-09-28", "text": "Bevmo is very close to my house so I am here on a regular basis. I recentley found out Total Wine is opening and now Bevmo will price match their prices only. \n\nMy boyfriend has asked for them to put the Fosters Premium Cans in the Fridge and they said it was a corporate decision. They still haven't put them in the fridge. \n\nThe store is clean and the employees are helpful and friendly.", "type": "review", "business_id": "Mfv6gumcyhk-RXCCR7JrFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OwCEsC0-oRxsSpTHZ0rrvA", "review_id": "0PrDLG4e3lnWDkEpr_y3qg", "stars": 3, "date": "2011-06-27", "text": "I didn't have an outstanding experience in this place.\n\nBreakfast was typical and service was rushy. \n\nSolid 3 stars\n\nBiscuits were yum", "type": "review", "business_id": "y0weNFCIJF9bTgBbFST86A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "lgAgkEspbjBm5fyq8aeRVw", "review_id": "PC-f_bBUQpUBaJCv2EQMxQ", "stars": 4, "date": "2008-05-13", "text": "Nice atmosphere. Good food. I had the buffalo on some fluffy fantastic foccacia bread. It was awesome. A combo with a drink and chips came to $9. They have free wi-fi which makes working or using your iPhone a pleasure.", "type": "review", "business_id": "1eBJyYf3JEccqXUFxG1VWQ"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "RRTraCQw77EU4yZh0BBTag", "review_id": "5R6wVDhn4wOiQAmKhX2B3A", "stars": 5, "date": "2008-03-20", "text": "The quintessential Brewery with a wholly fantastic kitchen. Best spinach artichoke dip in the valley, period. From fried to gourmet Four Peaks has it all. Beerbread sandwiches are always excellent, fish and chips, bavarian pretzels, french fries, daily specials, I really haven't had an item that I didn't like! The weather is perfect right now for a sunny patio lunch or fresh air dinner. \n\nLet's not forget the beer. My favorites are the Oatmeal Stout or the Peach. Their peach beer is legendary with low sweetness and a crisp refreshing taste. If you think cider is too sweet but like fruity flavor, this is your beer. The oatmeal stout is thick and hearty with no bitterness. Seasonal beers abound, pumpkin porter in the fall, I've seen an orange blossom, belgian white, barleywine, etc.\n\nParking close can be a challenge on weekend nights, best to ride your bike if you're close enough. \n\nhttp://www.fourpeaks.com for a complete menu.\n\nJust go there already!", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "l-p9y_0mx9GdzOSUioEE9A", "review_id": "KAn0_jRJsBqZxD_TB34y5g", "stars": 5, "date": "2011-06-11", "text": "A small bite goes a long way. I first was introduced to these brownies in '09 when I received a variety box with 12 sprites and a can of cocoa for Christmas. I love the packaging - the deep purple and brown on the box and wrapper. After devouring my first brownie, I was an instant fan. The card in the box said you can freeze the brownies for up to a month but it was gone within the week. The can of cocoa lasted for a good 3 months. I used it for baking - cookies, breads, cakes, etc. \n\nMy faves: Cream Cheese, Espresso Nib, Toffee Crunch, and Caramel. \nThe sprites are just the perfect size because it's just enough to get your chocolate fix but not overwhelming. I just throw one in my purse before I leave the house and I can have it with my coffee in the afternoon. \n\nI'm a subscriber of their email so I've been receiving emails with discount codes and free shipping. It's so hard to resist. Lucky me, I stumbled on a Groupon several months ago and I got a box of 24 Sprite for almost half the price plus shipping.", "type": "review", "business_id": "E2F25cRcYf_bWtvbCht0EQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "SWoWXML68esw-UhHRjLBQQ", "review_id": "wkN0JUC_3u26Y6TU6jTG2g", "stars": 1, "date": "2011-07-13", "text": "I was going to take the time to write a scathing review, but I honestly can't even bring myself to do it. 1 star. That's all I can say.", "type": "review", "business_id": "hCS5eV0SCAY9LeeL36lz8g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AHgsed4teWUAEgJxUFaakA", "review_id": "6GQCePPaBAzuW3O9LJodHg", "stars": 5, "date": "2011-01-28", "text": "Excellent staff. Always knows how to make my drinks. Always remembers my orders every time I come in too.", "type": "review", "business_id": "Br-_G9WrRlBWyEAuN0TXDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "SlCfUUr1Pa7CzzSxbMH1pw", "review_id": "rKPIJCEZ73x3tEeUSLprZg", "stars": 5, "date": "2012-07-12", "text": "Vintage sodas sold by bottle, all of your grandmother's favorite childhood candy, an abundance of gag gifts and novelty items... you just can't dislike this place. Each time I'm in, I spend a good hour just perusing the countless Fred & Friends products and debating whether or not I should buy the stick-on-mustaches or 10 of the Chinese finger traps. \n\nBut, let's be honest here. I mostly go for the photo booth. By far the best photo booth in town... good quality pictures (not cheap like the ones inside the mall) and they have little masks, glasses, and mustaches-on-a-stick you can use in case you're tired of flashing the peace sign or making that horrendous duck face.\n\nSoda. Candy. Toys. Photo booth. Don't kid yourself. You're never too old for that ish.", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QMYURmVQVAx1t7BxIb2dXw", "review_id": "psr0oqLvdB7zpmU1D72HzQ", "stars": 1, "date": "2012-11-25", "text": "I will never go here again. So disappointed when I went in its a cute store don't get me wrong I would buy so much there for my dog. But the day I went I went to get a treat for my dog for his birthday. The lady was on her phone the whole time talking personal business while my mother and I stood they're waiting for her to get off or put the person on hold. All we wanted to do was to ask her to get that dog cookie for us. So after 10 minutes of waiting we decided to leave and while walking out the door the lady shouted thanks for coming. That pissed me off cause she put down the phone to say bye but not to get an actual freaking sale. I'll continue going to to petsmart. Tried to support a local business but I guess when you own your own place you can have poor customer service", "type": "review", "business_id": "kode9F27RF4C7XdSsnokiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hFP7Si9jvdOUmmMesg4ghw", "review_id": "8xx8i94sKvBhWZv8ZVyfBA", "stars": 5, "date": "2012-08-13", "text": "Brown bag chicken sammich, mac n cheese, fried okra, and the bourbon drink. Nuff said.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r7voA1WmMhYFPTfB08k03g", "review_id": "JH3SG03gem0PaOpn6nMA3Q", "stars": 3, "date": "2009-11-12", "text": "Came here the other night in a party of 17. Overall the experience was satisfying. The waitresses were nice (yes, some had serious cleavage) and they were mostly on top of things - ordering the kids plates first, getting drinks/orders put in.\n\nThe drinks were huge - I had a margarita which was served in a wine carafe. Unfortunately there was hardly any alcohol in it so I supplemented with a shot of silver tequila. Probably could have used a couple more shots!\n\nI had the baby back ribs. The order was huge and I did my best. The meat was tender and the sauce spicy. Overall it exceeded my expectations (which weren't too high given what I've read here). The plus was the entertainment value with people trying to ride the mechanical bull. Only one person from our group did it - after 4 shots of Jack Daniels!\n\nOverall a great place to go to if you're looking for a casual place with some eye candy, decent food, and side entertainment.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "MC8aL2lT01570gpvhOTClA", "stars": 5, "date": "2011-04-07", "text": "A few weeks ago, I was receiving quotes to have my AC unit replaced due to the hail storm we had back in October. I had few companies come out but no one and I mean no one was as thorough as Dale with Mason Mechanical was. He spent 90 mins going over everything including climbing in the attic to check things out. He explained the differences between different units as well as what he and his team could do, which included taking out my furnace and installing a new ac/heat unit, pricing. etc.\n\nFast forward 3 weeks later and I was able to get the appt set up to have my unit installed. Crystal set up everything for me and she was fabulous, especially since I had to cancel the first time around due to my work schedule. (Thank you for your patience Crystal!!) Mike, the tech who was in charge of installing the new system called me promptly at 7am to let me know he was on his way and would be at my house within 30 mins. Fast forward 10 hours later and my new unit is installed. He explained everything to me including how to work my new programmable thermostat, made sure everything was in working order, sealed off the area in my now new closet (where the furnace was), made sure everything was cleaned up, and was just all around great. I am very happy that it was nice mild day here today because I don't know how they can do this in the summer.\n\nThank you to the entire team at Mason Mechanical!", "type": "review", "business_id": "WqQpdYbcD_KzukOTYDSY6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "17LPTsu4RgqTZ3SxsGzzxw", "review_id": "B2iAuyYzZwg3tykbI0SKaw", "stars": 5, "date": "2008-05-05", "text": "A friend of a friend was telling us about this place on Sunday morning, and how awesome their pizza is. It sounded awesome, but he warned us the line is usually an hour and a half long. Oh well, we went anyway. Luckily, we were early enough where we didn't have to wait long for a table. When we were leaving, though, the line was easily an hour long.\n\nWe started with the wings, which come in an order of 14 and were delicious. Five of us were dining there, so we ordered two small pizzas, with each one being a half, so we had a nice variety of pizzas to try from. We got the BBQ Chicken, the Frisco, Grandma G's, and one more that eludes me now. All were pretty delicious, and I give them mad props for going out of their way to create unique pizzas with untraditional toppings (Grandma G's had potato on it). Our entire bill with a few drinks came to under $80.\n\nOh, make sure you sit outside... the inside had a lot of loud kids, and it seemed to echo off each wall and annoy the hell out of our party. The women in our party also said the air temperature kept changing in there. Keep in mind, too, that they don't have a full bar, so if you're going there hoping to start off with a bloody mary, you're out of luck.", "type": "review", "business_id": "LMG0zsAkUSscIvmV9vvm3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jWvzAN1czxypi-GM1KY62g", "review_id": "SPqiCJoP1xgd06LGo04FnQ", "stars": 4, "date": "2010-07-15", "text": "With quaint accommodations, friendly staff and interesting selection of food choices, I was able to forgive, and forget, that the Centurion didn't yet have a liquor license. \n\nThe Centurion is a cozy (and by cozy, I mean small) place. But it has personality and I can imagine myself hanging out on the patio after work - in cooler weather. \n\nFor those vegetarians out there, Centurion offers a diverse selection choices. For our lunch, my companion and I split a Heirloom Tomato (with Brie) Panini and the Shitake Spinach Risotto. Both were flavorful. And the prices are quite reasonable at $8/each. \n\nThe menu offers a diverse selection which includes burgers, pizza, pasta, salads (all around $9) and some higher priced dinner entrees (ranging from $23-$42). \n\nI hope to return to try their dinner entrees, the blue cheese crusted filet mignon sounds wonderful! \n\nI feel like I had fallen upon a hidden neighborhood gem. I'm crossing my fingers for their liquor license!", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "u-M4jMYKXsj-l1BYdyNpRQ", "review_id": "Ktoqngx81hBmtXrVhEAKSQ", "stars": 1, "date": "2012-08-22", "text": "Horrible service. Barely acknowledged when you first walked in. Slow service and waited for my check for 20 minutes before getting up to go get it myself. Will not come again.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "27ygUZ5FqBpy38O4EKEplg", "review_id": "yL4xRXi6rlgR0I4VZxY1ew", "stars": 5, "date": "2011-07-20", "text": "I recently had sunscreens installed in my entire home by CC Sunscreens....i did research and found CC had the best prices...Carl the owner was amazing....he came to measure the day after i called. He answered all of our questions. He gave us a great price and in less than a week the screens were professionally installed. The screens are not only of the highest quality - they look great and make our home look brand new. We noticed an immediate difference in the coolness of each room - and we look forward to saving on our energy bill too! We cant thank CC Sunscreens enough - They are simply the best!", "type": "review", "business_id": "CYsfoFgvCyndNNnCn3NH_A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "tjyJHetc0f2pODPQyopJWQ", "stars": 3, "date": "2008-12-03", "text": "I really wan to like this place more because it gets some of the best acts in town, but it is cramped, stuffy, the stage is too low, the sound quality is not great and they do not serve alcohol so the crowd is kind of stiff and non-fun. I will keep going because as previously stated, they get some of the best acts in town, but... let's hope they work on the format.", "type": "review", "business_id": "YRJKTPc7Tkz1cbjGHmOHuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OESKxoNFZcKl47NrOubgAQ", "review_id": "RI7VfPfIajSonXL8spEVCA", "stars": 5, "date": "2011-10-10", "text": "Finally a Japanese owned sushi bar beside Sakana in Ahwatukee! I guess Sushi Ken has been here for a while, but I didn't realize what a great find it was. \n\nMy wife and I went there to splurge on Japanese sushi since they are better than the typical Korean owned sushi places which are most common in the Phoenix area. \n\nWe found we didn't splurge at all as we do at Sakana or Hiro. We didn't break $30, which surprised me. 5 stars for value and great sushi!\n\nDomo Arigato!", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0qIsBt4EzBDCKrIviV55Ew", "review_id": "lVGBpMCIfweRNzcTHw8hVw", "stars": 3, "date": "2008-05-26", "text": "Ra Sushi offers average sushi grade. This chain of restaurants offers a hip atmosphere with loud music and a great place to take down some drinks while eating. \n\nAs an Asian I'm a little more passionate about the rating topic for Ra. If you don't have much to say about a restaurant please think about rating it four stars.", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 6, "useful": 10, "cool": 10}, "user_id": "8VbK8pAotgfI0bnGfqPykg", "review_id": "wehQdhTXfnLGnX2QUP_6mg", "stars": 3, "date": "2008-03-17", "text": "The best place to skip work and goofy golf in the spring and summer. Sure, it's a little musty, old, run-down... but it's a slice of my childhood and at least it's still here. \nI can't gather the courage to ride the roller coaster anymore and bumper cars just aren't as appealing as they once were but the two story arcade still makes me squeal a little.\nThe golf is great too! I would suggest playing courses one through three. The last two times I've been we played course four and three and four has the least amount of attractions. Courses one and two are busiest, so it's a choice between being stuck behind a bunch of kids or some really un-fun holes.\n\nOh, and they do have a black and white photo booth.", "type": "review", "business_id": "eClo8BPc90-YdBfuvRcpkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Sjp6EYsqzdlTvymER6wBfg", "review_id": "TNtgDDo3L44QE-zqIOHGEw", "stars": 5, "date": "2006-01-14", "text": "This is not a fancy place. It's address is on Scottsdale Road, but it's easier to get to from Shea, about a block east of Scottsdale. It's split into two sections. As you walk in, if you head to the left, there is a bar with a couple of pool tables. I can't really say that I've spent any time in that section. We head to the right, where there is a central bar, with booths along the walls. If you are into Karoake, this is a great place to go. The DJ has a great voice, and many of the usuals do as well (of course there are quite a few who don't, but that's to be expected). We've been here dozens of times, and never not had a good time. It's casual, and very reasonably priced. The food is way above average for this casual of a bar. The shrimp are spiced to perfection, and the chili is to die for.", "type": "review", "business_id": "9DsXB8T3UwBYiLPiLJJuNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mYWWZJfimREyTxcxROUs8A", "review_id": "of8ZS9HxK5lKYzrNsl8Eww", "stars": 3, "date": "2011-04-16", "text": "Went here with an Indian friend so I can't tell you what I ate, BUT it was tasty. We went 5:15pm on a Thursday and it was pretty empty, but as the night progressed more and more people filled the place out.\n\nThey do have a lunchtime buffet but not sure the price or quality of food, but if it's anything like the dinner we had...its worth checking out.", "type": "review", "business_id": "PLLM4iCYy_OrT-53IZ88Qw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "dvfj0FhfBhXjuyPMlQsYBA", "review_id": "NYMpoelmaJyZi6wJ44Jb9A", "stars": 3, "date": "2010-12-17", "text": "Lack-luster\n\nI have been disappointed the two times I have visited Houston's. Their veggie burger is soggy and grainy at the same time (I am not sure how they managed that)...not an appealing taste. Their \"famed\" baked potato was dry and was nothing out of the ordinary. \n\nFrankly, I could have made something better for myself and saved the money. The redeeming factor was that the service was decent and the restaurant was semi-attractively decorated. \n\nOverall I would not come back unless I have to (aka my friends drag me along)\n\n*** Was informed by a fellow yelper that the place re-opened down the block under a different name, Hillstone\n\nI hope the new name was followed by a new menu.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OD7nfm02bJDvbz7nsikFsA", "review_id": "RCNWirbWQvjxHmdDsIh0xQ", "stars": 5, "date": "2012-09-25", "text": "I needed new tires & 2 months later my husband. Both experiences the staff went out of their way to either get it done on time or make it work price wise! I have always used them for my tire needs and we travel for jobs so we need them a lot,", "type": "review", "business_id": "K8BVB4ktoiif5uRmtykYiw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "8Jv-IP918Y2QmtNzylTesQ", "stars": 5, "date": "2012-03-06", "text": "The oatmeal cookie frozen yogurt here is amazing. The place is small but accomodating enough to get your yogurt and find a seat. It's similar to Yogurtini and the other places like this. Last time I came here I saw a guy with the most awesome 80s blonde mullet I have ever laid eyes on. Rock on.", "type": "review", "business_id": "FWvEeULc-ItQTENPlIyfuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LY9Q6sc4DtZ9ENNBv691rg", "review_id": "hkRytbiTpxdMjrzFbPtzpA", "stars": 3, "date": "2012-08-21", "text": "Got the free coupon, so we headed there for lunch today. I was surprised, the burger was a lot better than I expected! Filing, juicy, fresh toppings. The fries were above-average, but for what it's worth, I can't stand Five Guys fries or In N Out's. So if you're a big fan of those, you may not agree with me here. Super clean place, friendly staff. Lots of parking for now...until Potbelly opens in a couple of weeks and the lot will be packed (sidenote: I will pass up Habit for Potbelly every day of the week, but that's a different review.)\n\nOverall good burger and fries. I'd like to try something else off the menu next time. That being said, I'd go back.", "type": "review", "business_id": "lK35BgpjOMXwchPzqYWomg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rp1gCPBJZwYZNOGqRc5KGg", "review_id": "H9DS1n3CFbaScptBseCuBA", "stars": 4, "date": "2010-10-10", "text": "The green chili pulled pork omelet was delightfully good. The coffee was great, and so is the decor. The cream chipped beef and biscuits are also pretty fantastic.", "type": "review", "business_id": "7WGBi29_vj_7RcPVxpLNHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BgY9LwHmY8BO_lPI3pNRFQ", "review_id": "6n8WMV4uBxpJCbIUIu-QRg", "stars": 4, "date": "2011-01-22", "text": "Mojo made me fall in love with fro yo. I love Mojo's Twitter Tuesdays where you can get half off of your fro yo. The location is awesome; I can go to Mojo between classes. It's here where I found my love of the pomegranate & acai flavors as well. They have awesome seasonal flavors as well as the other usual staples. I love their different toppings and it's a good place to hang out with friends and get your Mojo on :)", "type": "review", "business_id": "1eJiyKXx_ruNu6F36BJQCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ukA4tAsH05itDYqhl7qBMw", "review_id": "H3aTGuva6rpRZMY1sWyHuw", "stars": 2, "date": "2010-02-24", "text": "I was elated when I searched yelp for places to eat near my office and found Culvers. I ate there two days in a row last week, and ordered the follwing:\n\nbacon butter burger, lettuce style - SO DISAPPOINTED. I had high expectations for a burger cooked in butter. While not terrible, this is not even comparable with in-n-out.\n\nchicken fingers - Decent, although I've been spoiled by Shane's BBQ tenders which are made in house. I'm assuming Culver's came frozen in a big bag and then were deep fried. Still, pretty good for fast food.\n\ngreen beans - Not cooked nearly enough for my liking, forced down several fork-fulls then threw the rest away. \n\nWould only visit again if co-workers dragged me along. I'm sure I would have a different view of the place if I were in glutton mode chomping on the custard and french fries.", "type": "review", "business_id": "8T8B_xK10FuO6MBOFcVQ3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "NscN6cLWv3y3Rit6g-D-_g", "review_id": "6Vg7j817P0k36vdmpxcrPA", "stars": 5, "date": "2007-07-14", "text": "My wife and I moved from Seattle in November of 2006. We thought we would find great, modern Mexican food all around the Valley. Fortunately we found it, but only at Barrio Cafe (so far). Barrio Cafe is a sure hit with anyone who loves Mexican food without a half plate of gray, canned refried beans. Their menu is excellent, thought put into the dishes inspired and the ingredients are fresh. It's well worth the hour wait.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "NqeD28GGg1Wdj9BfaHqr4g", "review_id": "Di95IMJjpokrKquGhAlACw", "stars": 4, "date": "2010-02-01", "text": "Love fondue? If so you've probably already tried one Melting Pot or another. I've been to my share, but this was my first time to this one just tonight. They've only been open two weeks - and they are off to a GOOD start! We had great service - very helpful and attentive, but not up in your face and of course, I love the food. Yeah, so it is obviously a chain and some people don't like it for that reason, but I think as far as chains go they do a nice job and the food and presentation is quality.\n\nSure, it isn't cheap...but it's not that kind of place. It's the kind of place you go when you are not in a rush and expect to pay more for the whole experience. It's a good place to go and linger over the food and conversation. \n\nWe usually get : cheese - tonight we tried the special one, but I typically recommend the Wisconsin Trio, house salads or whatever the special salad is, the vegetarian entree, the extra veggies they give you and a dessert - tonight we did the S'mores. \n\nIt was all tasty as usual, the service was really excellent and the atmosphere at this location is nice and quiet. It's in a random little strip mall-like place so not too many people know about it yet.", "type": "review", "business_id": "UHh2br86pxndWXELC6B8Cw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "3uU_6L8GnFOHTsO4I3oedg", "review_id": "7upKw230pxMrdB1Vv-FRDg", "stars": 2, "date": "2011-12-16", "text": "Theatre is very nice. Seats are not as comfortable as you would think. They have like office chairs in every other row. Also the food is not good, and it's so overpriced. Did you know it costs a dollar to put onions on your burger? Want cheese? That's another dollar. And it's not even good. Screen is beautiful and a clean picture though.. 3D was great.", "type": "review", "business_id": "Yhfp_vgnh_GirZGeVhj7Gg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LHQ2fuC2RDS-Md_dN2O1IQ", "review_id": "ZfbSa3Sd81iXt__qsAK21A", "stars": 5, "date": "2010-11-12", "text": "Downright awesome and extremely hip. A non-traditional, very out there, but very hidden coffee joint.\n\nYou can't see this place from the street. It's kind of behind the Buffalo Exchange. It's almost the last place you would expect to find a coffee shop. As soon as you walk in there are really bright and vivid paintings, this is kind of what makes it way out there. Barista was very friendly and asked us how the weather was, always cool to have some small talk instead of the drone, \"what can i get for you...\" Wait, that basically sounds like the boring coffee-grinders at Starbucks.\n\nI gotta have my lattes. I will drink regular coffee sometimes, but my soft spot is a well made latte. Amazing enough, places like Starbucks just don't know how to make lattes, I give up on Starbucks. Their beans suck, and apparently their frothing machines do too, because everytime I go there it seems like they just warm my milk and mix it with some coffee. The latte here was PERFECT. The milk was perfectly frothy, which in my opinion is what makes a latte a latte. Coffee had a nice roasted flavor to it. Amazingly, there are tons of coffee shops out there that can't do decent lattes. This is my new coffee place.\n\nGood music choice here, its like new age elevator music, calm soothing hip hop and pop. Awesome atmosphere, quiet enough to study and have a conversation, yet lively enough to come for just a cup of caffeine. Skip the Starbucks and \"Sex in the City\" sorority girl drinks and come here.\n\nOnly problem was that I think they only have small or large lattes, and it was like $4 for a large. That's like $0.50 to a $1 too much in my honest opinion. Oh well, I think I'd still pay that when I'm craving a latte.", "type": "review", "business_id": "O7fXh4ODsi--5LmJKTHn2g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-39Gyn0uR_NWyJayrviRpw", "review_id": "MXUXDJNL2usv-yJSNdXfiw", "stars": 4, "date": "2011-06-22", "text": "I have been to Hong Kong many times but this is my first review. I must say every time I go, my belief that this is the best buffet in the Phoenix area is reaffirmed. Hong Kong is very consistent with their food quality and the service is always been excellent. I do agree with other Yelpers that you can find other buffets that are cheaper but you get what you pay for. My favorite feature is the sushi station. My wife is not a sushi fan so when we go to Hong Kong, I hit this station several times. The only problem is if I fill up on the various rolls and sushi pieces, I don't have room for all of the other wonderful items Hong Kong prepares. The only station I can't comment on is the Mongolian BBQ station. Again, it comes down to a lack of room more than a lack of will to try it. Oh well, maybe with my next visit I will make an effort to try it. \n\nIf you are looking for a great Chinese / Mongolian / Sushi buffet, this place should be number one on your list.", "type": "review", "business_id": "-Ogv7rpcgUHkFaSy3vD8Sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Fa0cKTkPhxdYi9HpcuQh8g", "review_id": "J6CDlCZqIXggylPAVR4vEA", "stars": 3, "date": "2011-08-17", "text": "I want the Garage to do well. It is still a work in progress, though. Three of us visited two weeks ago. We were sat right next to a group of 40 - 55 year old ladies out for a surprise birthday. What's with that anyways. Do you really need to go to a somewhat small restaurant with your pack of \"girls,\" and occupy a large swath of the dining area? Do you need all the paraphernalia (collages, centerpieces, hats)? I was seriously waiting to see a youngish birthday girl. Nope, she was the oldest. 60, easy. Act your age. While you're at it, you are not a size six anymore. Needless to say, it was loud. At least one of the revelers apologized right when we sat. As if that's any conciliation for the volume 11 cackling. \n\nFirst off, the Garage has good brewskis. Not a huge supply, but what they have is quality. We had wings and truffle oil deviled eggs. Both were great. I had Schriner's Sausage Flat bread, and it was great. Wife had something, I forget, and said it was good. Friend had some large salad and said it was good, too. Overall, food was better than most. \n\nSo, why the three stars you ask? Service. Why do some cool places slip up on this? Is it because they hire \"cool people\" or friends that don't really want to work? First off, a server (we were seated at the entrance/ exit to the kitchen) dropped a glass bottle of ketchup five feet from my foot. My wife and I had splatter on our jeans and glass near our sandal clad feet. Hardly a response. We were handed a rag. Our server not so sympathetically wondered, \"Oh, they almost dropped a bottle of ketchup on you.\" The rest of the night just seemed a little disorganized and not relaxing? Every server seemed in the weeds or confused. Empty beer and water glasses. Entrees arrived and empty app plates sat there. \n\n$60 for three for apps, dinner and beers.", "type": "review", "business_id": "YJoph5UiUZ3BEb49vyFAuQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0a-ISXPjsyyNAMZfDbrKpw", "review_id": "GPeAY6off-npxeqvZoqWqw", "stars": 3, "date": "2011-01-27", "text": "This is the first Springhill Suites that I've stayed at. Service was good. Hotel was clean. Room was acceptable. Big enough to work in, nothing special. Fitness Room was small but that was fine as I was the only one using it. The breakfast on par for what you would receive when you stay at a hotel. They could use better coffee.\n\nVery nice hotel to stay at if you have business at the convention center.", "type": "review", "business_id": "Lt-dQ0kUWFm0nDgLwdEo_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "sW3SXpcaywGs9d2xVlFUPw", "stars": 4, "date": "2011-06-23", "text": "Great service, and great food. Passed snacks included an artichoke cake served cold with an olive tapenade. My favorite was a shaved beef with mascapone dressed in truffle oil. The main courses included a cesar salad served in individual cups. Sliders were delicious with my favorite being chicken with roasted pineapple. They had a wonderful shrimp pasta dish that was gobbled up by people. Desserts were cupcakes in four different flavors, red velvet with real cream cheese frosting, a chocolate decadent cupcake, luscious lemon and finally a vanilla buttercream. I will definately recommend them for our next catering event in house.", "type": "review", "business_id": "5y6NVPJIug3LYmKp_at_yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fc84xziqvCO__-XlQH6yag", "review_id": "H-aksFzj7ua5h9qGe2pyzA", "stars": 4, "date": "2012-09-20", "text": "Monday and Tuesday night after 8pm, you can get any bottle of wine and a whole board of bruschetta for $20. It's a steal, and a delicious one at that.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "mEMZxvHpemSxn1gl7Lj1Zw", "review_id": "qtnj62s-bHufakJTqvFbng", "stars": 4, "date": "2008-03-22", "text": "I have been going to Postino since it opened. I remember the Matt Diamond era, Susan era and now the Brent Karlicheck era. I really like the evolution as to what it has become.\nNow granted, I am personal friends with Brent (and Matt) so I want to disclose this upfront, but I am elated with the new direction of the wine program as I think it is superior to most in its consumer friendly format.\nGrab a plate of bruschetta and $5 glass of ABC (anything but Cabernet) at the bar. Ask Brent or the chilled staff to help you pick something great.\n\nLike the mythical Arcas, you can bear the budget bacchanalian orgy right in the heart of Arcadia", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 1, "useful": 2, "cool": 4}, "user_id": "gEnU4BqTK-4abqYl_Ljjfg", "review_id": "gqays9sjWDz84RSKofr-pA", "stars": 4, "date": "2007-07-13", "text": "Wings + Beer + Football = LOVE\n\nI am such a girly girl 99% of the time but come fall, I sort of turn into a dude.....\n\nThis is not my most favorite place to catch the game, but a good alternative when I want to mix it up or my team is on a bye week. Good selection of boneless wing flavors.\n\nOh god, just writing this makes me yearn for the season to begin!!!!!!!!!!!", "type": "review", "business_id": "ZJxs1L4oMhX9GW00ty0aAg"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "N-D-d1Z4UybdlkK1HxlNPA", "review_id": "7OaoO3J1YXiL7K4mY4BF2Q", "stars": 4, "date": "2008-07-06", "text": "In response to a recent thread about Boba drinks in CenPho, I said that Rainbow served at least 1 flavor- chai- which my husband found to be \"just ok.\" When Hubby asked me this morning if I wanted to \"taste the Rainbow\" for breakfast, I asked him to check on the Boba situation. It turns out that Rainbow listened, and they now will add Boba to any of their drinks. The woman behind the counter said you can call ahead so you don't have to wait. Hubby's vanilla and my strawberry frap that he brought home today were still \"just ok.\" The donuts are still really good, and they finally have some stable hours, 4 am to 8 pm.", "type": "review", "business_id": "Xobu8FzHN0KUm5Lw3swypA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "EKwGhgLrM18ErVKKeYE2UA", "review_id": "KDMcMgcUyPEGhhqyOxbKvw", "stars": 4, "date": "2009-01-07", "text": "I've been coming here for 10 years and still love it. The bbq beans are really good. My favorite thing to get here is a jumbo baker (and they mean jumbo) with everything on it including a side of chopped beef and then I add their homemade bbq sauce to it. Sooooo good. Their homemade root beer and limeade are also yummy. I remember them having a customer appreciation day once a year (I think in May) where lunch and dinner and free! You would get a pulled pork sandwich, a side and a drink for nothing. The lines would be out the door, but the food is worth the wait. I also remember them offering a free dinner (can't remember the choices) on your birthday. It's a cute little place in downtown Gilbert. Check it out.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1RJORk4w9jxxWBKzOvOptw", "review_id": "I4pCFQmFbjnOthdqTAOtyQ", "stars": 4, "date": "2009-01-03", "text": "Another lovely mom and pop with fabulous authentic thai. The prices are very reasonable and I've never had a problem with the service.", "type": "review", "business_id": "j2a5uJz76rK9uTRgLn5TdQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "P1qwZrslRv9KS9vPJNXe4g", "review_id": "PEtxGLZlZwh2jmFXorauWg", "stars": 3, "date": "2010-10-23", "text": "Coming into the Phoenix area for a family party, we stopped off at Los Sombreros for some margaritas and Mexican on an otherwise cooler night in the valley of the sun. \n\nI was told they are very picky about reservations and, if your party isn't complete, no table. So our 6pm reservation was now in jeopardy because the last two of us (me and my fiance) were running late due to issues on the ramp at Sky Harbor airport, obviously out of our control. But they still didn't want to seat us... additionally, I overhead on the way to the place that they would only \"try\" to do their best to accommodate our party, making it sound like they were booked up solid until closing....typical Scottsdale always trying to look more happening and hot than it really is. \n\nMoving on, we somehow \"lucked out\" (go figure) and had a table no problem, so all the stress caused by the hostess was unnecessary and, in my opinion, pretty unprofessional, especially since the restaurant was empty by 8pm, again, typical Scottsdale. \n\nThe menu was brief, and I almost had to double check I wasn't looking at an appetizer. Most of the items are typical Mexican staples with a bit of a Southwestern American twist to them making the food a hit or miss if you ask me, some items were good, some were not. But that's really anywhere I suppose. \n\nThe one thing that stood out for me was the Guac. I will say this was flat out delicious but Guac is pretty had to screw up. \n\nThe margaritas in my opinion reminded me of something you'd get more at Chilis, a little too sweet for my liking but definitely drinkable. \n\nThe fundidto appetizer we ordered left the table empty twice and well I'm not really one to combine seafood and cheese, this blend seemed to have a harmony with others and I'd recommend it to a first timer, +1 if you request to add spinach. \n\nFinally moving on to the entrees, different contraptions from the kitchen filled our table with vibrant colors, assortments and sizes. \n\nI myself ordered what I was told is sort of the house specialty ,call it carnitas mixed in a chipotle sauce with veggies type of deal. While it was tasteful and was more than enough to get the job done for me, the flavor of the pork wasn't really there, at, all. \n\nI browsed over a couple other reviews and noted the same complaint but hey that's what hot sauce is for I guess. \n\nOverall it's an alternative to the chains hoarding Scottsdale road.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "k1ACFw3wmqkNGoiGeNLc0w", "review_id": "S9k10Kqi-Pk5TdfdEL_u6g", "stars": 4, "date": "2009-02-10", "text": "I stepped in for a quick lunch. I ordered the buffalo chicken wrap w/ fresh fruit. The location is cool, although I couldn't tell if they were actually open. The food was tasty, the fruit was pretty good. All in all, it fit the bill. I wanted a quick, healthful, lunch and That's a Wrap provided.\n\nI do wish they were open a bit later because I would love a wrap after a good night of drinking.", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-AEuEOee3vpMqAftPI4ATA", "review_id": "0kSbSUndwciGQTOKfpqYbA", "stars": 1, "date": "2012-07-25", "text": "I learned of this company through a living social deal. I emailed them to set up an appointment. The earliest available date was a month later, I went ahead and scheduled the appointment in spite of the wait time. One month went by, on the scheduled day of cleaning in which I was told they would arrive between 12 and 1... NO ONE shows up. I wait, at 3:30 I email asking why was this scheduled appointment not kept?... I've yet to get a response or an explanation.\n\nThere are many cleaning companies out there, my suggestion - try a different one than Maid 4 it all.", "type": "review", "business_id": "fRvYylF911uZ46smPhcG3A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "CtuoM6_Im-xBZMAqPKMQ8A", "review_id": "iPM89szQ70HHXLyFJtjhIg", "stars": 4, "date": "2012-11-25", "text": "I love the Drybar at the Scottsdale Quarter, so when I saw a Groupon for the new Phoenix location, I bought it right away. \n\nThe salon was very busy but I was seen right away. I received my champagne promptly and went to the washing station. The Groupon was good for a 10 minute floater (scalp massage), but I can't imagine mine was for more than 5 minutes. It was a nice bonus, but not something I'd pay for myself next time I visit. \n\nI have simple, short hair, so my blowout was pretty quick. The woman who did my hair did a great job of listening to what I wanted and was a lot of fun to talk to. \n\nI was in and out within 40 minutes. It only lasted about a day, so that was a bummer, but my hair stayed clean and fresh for four. \n\nDrybar is a step above other blow dry bars in the area - I highly recommend!", "type": "review", "business_id": "LcAamvosJu0bcPgEVF-9sQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "p7VF1Q2aW9HmwdHhKq8hOQ", "review_id": "Xup-s_RdBdmU49228bCIrg", "stars": 4, "date": "2007-04-26", "text": "Always drop by this place when i'm in tempe. Usually i do not like greek/mediterranean food, but this place is the exception. They give you pretty large servings of food when you order the dinners. I always get the lamb and beef plate. Comes with bread, meat, vegetables and some white cream sauce. All in all an excellent combination. Throw in the low prices and you got yourself a winner.", "type": "review", "business_id": "XBm9ffI2pK-A_HcoHXAbcQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4r4vhVSc3bYpRdKSAAivEA", "review_id": "Mv70EIrm0GyjzjC8OON1vw", "stars": 2, "date": "2011-04-10", "text": "5 star view...\neverything else is average...\nbar is small, food is ok, drinks are blah", "type": "review", "business_id": "OSlTIcDNSSt_83ciKwT1Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4a17OCvaJgzZzDPMJz7L3A", "review_id": "7O_HJT0DmaaZoV5yHJtoWQ", "stars": 3, "date": "2012-11-26", "text": "I feel as though this is strictly a local central Phoenix bar. Anyone from out of town probably wouldnt appreciate it as much as a local would. Before I started coming here I heard it was a tranny bar which it definitely is. However besides weekends you will only see one or two hanging around. Its karaoke is almost alwasy extremely busy which leads to long wait times to sing but its alright because the people there are pretty friendly. The only two complaints I have is (first) the occasional scummy person that comes in that just got out of jail or is high on drugs. I do wish they would do a better job at kicking these people out. My second complaint is the very small and usually dirty restroom. I like this place because I know the bartenders and the people that frequent this bar. Others might not be able to appreciate it as much.", "type": "review", "business_id": "hKB8OTUVIYLlDVWqFg8lnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bX5mIrDlyD8ZabvF_An7FA", "review_id": "_OaZMlx3OrudgiuzLBdglg", "stars": 4, "date": "2011-02-18", "text": "Food is great, but they use to let you get the happy hour specials for take out, but not anymore. I love their prime rib burger, if you have a few extra bucks to spend on the best burger in the world than go here.", "type": "review", "business_id": "9AbyBqGWHYZC73GlyAuTrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "LL2Kk0jjD9McDPfPEDbZBQ", "review_id": "yb5DiTkZTijruooFaZR36w", "stars": 5, "date": "2011-08-17", "text": "I was at The Rhythm Room and saw these cool people selling Tacos, so I checked it out. It turned out to effen awesome. Fresh quality food! ChiChi- lisous! Be on the look out for these guys! Chow down baby.", "type": "review", "business_id": "5CWKlH0uyOUF5EZIyewMXg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZxU3PjaGOdNfIEZ8aDjtRQ", "review_id": "sf8VtS6PzSVFyl1T30TgYw", "stars": 1, "date": "2010-12-18", "text": "I was there on a Friday night with a few friends in the hopes of a quick drink and nosh after a show next door.\nMy companion and I ordered basic drinks and were met with shots of liquor in the bottoms of our glasses and a blank look from the waitress when I asked if they were out of mixers. After this, we opted not to order any food (taking our cue from the inability to mix gin with tonic water) and were met with an outrageous bill (for our two 'well' shots). We questioned the tally and were met with a second total that wasn't much better. \nOur credit card was charged twice: $40 for some wet ice and a lemon wedge. There are many cool and artsy places in Phx where we can catch live music and nosh with friends. I'll pass this one up from now on.", "type": "review", "business_id": "IceZ4BtTz76eppjNWm-c6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gdm0ko75EnQwKWwYaPIwCQ", "review_id": "NL7PZvtmSwFUw7Cq7g615A", "stars": 4, "date": "2009-05-26", "text": "Unpretentious trendy spot in the middle of the pretentious downtown scottsdale atmosphere. Beers are 3-5 but it's worth it if you sit on the patio overlooking the canal. The place is very relaxed- Don't think many have found it yet. And the awkward waiters also make you feel comfortable... sorry Steve, you're awkward.", "type": "review", "business_id": "0qPmDwHa9NdvvIOgerR8HQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "WLowOhyzS0TNUemAwEryBQ", "review_id": "eW829q6AER4ik-E41Pbb1A", "stars": 4, "date": "2011-11-10", "text": "We arrived into Sky Harbor and decided to go into Tempe and Mill Ave....a tradition that we do each time we go to Phoenix. New from my last visit, on Mill Avenue, Canteen Modern Tequila Bar and we decided to give it a try.. It had a nice open bar area onto the road and the atmosphere was lively and fun. Happy hour was in progress and the selection of items were great. The house Margarita hit the spot coming in at $4 on happy hour and yummy. The happy hour appetizers were also great. Nice selection, worth a stop with a group of friends. Wait staff was fantastic and we had great service.", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "DryjeJWO-TXWiIYaBMYFzg", "stars": 5, "date": "2008-09-27", "text": "Caught Louis CK here last night... \n\nBeautiful theater... absolutely stunning. It was clean, the staff was really nice, and parking was a breeze. The sound was great, the seats were comfy, and I can't really find anything to complain about. Truly one of the most gorgeous theaters I've seen - down to every detail - it's my new favorite... I love it. \n\nL.O.V.E.\n\nIf you twisted my arm and forced me to complain - well, in the lobby where they were serving drinks, the line got a little excessive. It wasn't so bad really - but I tried both of the wine they were selling and I kinda hated them. This is more of a bit of advice for you to booze it up before you get there than it is a complaint. I can't recommend this place enough.", "type": "review", "business_id": "NonAmwnYs__eQGlzRYIBVg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gUK4eRO1iR9K6MlBIqbTeA", "review_id": "KVSaajeJwE_bsGfCgdH5hA", "stars": 2, "date": "2011-11-05", "text": "I'm giving this restaurant 2 stars because it was a typical hotel restaurant. Didn't actually sit at the restaurant area but the bar lounge. Service was very slow at best and on one night the waitress all but ignored us as she was chit chatting with other tables. The food was ok, I'd have to rate it on the same level as Chilis although more \"upscale\" selections. Only had the appetizers but based on those didn't want dinner. My friend had the breakfast one morning and said it was very average. I usually give better reviews on restaurants then what others give on Yelp but on this one, I beg to differ.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xjsIKyqLOqM8DyEhYh1IoA", "review_id": "8Xxm9s8aNAy8qkMyGT_FVw", "stars": 3, "date": "2010-04-27", "text": "Love the location and the re-purposed historical house \nStoked that the tortillas are fully warmed like a good tortilla should be. \nCrave the creamy, non-lard beans even more than the carne asada. \nDiggin the outdoor picnic tables. \nHesitant to order the corn because sometimes it has too much sauce n cheese, which overpower the pure joy of grilled corn. \nNot so crazy about my last experience where the cashiers showed more personality talking to each other or the kitchen crew than they did to me while taking my order. I'm paying $6 for a burrito, could it hurt to smile and maybe offer me a happy hour beer when I'm here picking up my take out dinner?", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e9puhHXfy27G-DZDf2HnbA", "review_id": "c0aS_dU55Obyx-GHsbAgXQ", "stars": 5, "date": "2009-08-14", "text": "Andrea has been a lifesaver- literally! She was watching over our furry monsters when our AC went out in July and we were across the country. She not only made an extra visit just to see if the AC was broken, but helped us find an open kennel to get our cats boarded. She's been our creature sitter several times now, thankfully with less craziness.\n\nHer rates are very reasonable and she keeps in great contact with you. Her initial visit with us went over all the little things we wanted done (like picking up the paper and bringing it in) and was very thorough. Since she offers a full house sitter and pet sitter menu of services, she's knows things to cover that we had not thought of! She's very professional and is licensed and insured. \n\nYour animals will thank you!", "type": "review", "business_id": "CbqO2LA7PWp4kbuZBPEa_w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "PmY_v_InZBZZbfIjOeRsGg", "review_id": "ZvxsuXFjWWqJIWP5RHfsmw", "stars": 2, "date": "2012-12-29", "text": "We were visiting Scottsdale from Carlsbad, CA. Came here with my husband and teenage son. We each ordered something different and none of us really liked the food. The tortillas served with the soup are the same served at Taco Bell. The entre plates are a huge blob of reheated beans and rice. The saving grace was the sopa pillas. I feel we wasted $75 for an unimpressive dinner and wouldn't recommend coming here.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 3, "useful": 7, "cool": 4}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "nxlJ3EoWDdpqUu2A4EqHrg", "stars": 4, "date": "2012-09-03", "text": "This should be called a speakeasy coffee shop. Why? Because you really have to be told about it to really know it's there! The shop has minimal signage on the exterior and it's housed within a urban multi-use warehouse on Roosevelt with different vendors and an art space. I can only imagine how cool this building must be to visit during First Fridays! Once inside, I was pretty surprised that the coffee shop is more spacious than I would have figured. It's pretty sparse inside, but there were plenty of seats to do some work or have a meeting. \n\nThe coffee here is strong and delicious. After drinking my non-fat iced latte, I had to refrain myself from bouncing off the walls! It's definitely coffee with a kick if you need a wake-up call. \n\nThis coffee shop definitely exudes the epitome of cool and I will definitely keep it on my list for a caffeinated visit in the future.", "type": "review", "business_id": "4VSP4PlU1r09iSC4BLr6tQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "51-53fVvMVBTwQQaUZSozg", "review_id": "nXJ-3Vy14LSpVZ03uSJ9Tw", "stars": 4, "date": "2011-06-18", "text": "Ok, I have been coming to Wong's Place for a number of years now. I found this little gem when I was wandering about Tempe (No I am not homeless, nor do I wander off when I drink) ;)\n\nAnyhow, the majority of the time that I order the food to go, it is really good. I have had only a few issues with the rice for the sizzling rice soup being overcooked but I will say that the soup is awesome and tastes awesome (Three flavor). Wong-Jo chicken is good with egg fried rice, egg foo yung, house deluxe chow mein, imprerial three delights, mongolian beef (not a huge portion, but tasty), and random other tastyness!! \n\nThey have not updated the decor and everytime that I come in to get my order, I converse with the guy that always takes my order. He is not The Mr. Wong, but he is like his right hand man. He recently told me that they have not fired any of their workers because everyone has been working there for over 10 years. Even in this economy when business is OK at best, they take care of their people. \nI hope this place never closes down or I will be sad for them, and hard pressed to find anyone who can mirror the sizzling rice soup and wong-jo chicken. \n\nIt is a typical chinese restaurant but I think the food is better than most chinese knock-off restaurants. I think that if you can enjoy the authentic atmosphere and the food (pink menu if you are scared of authentic chinese), then you should be satisfied with your meal. Personally, I get mine to go 99% of the time because I will take it home and not feel bad when I load my plate up with everything and go back for seconds!!", "type": "review", "business_id": "pSiR8m18iick2D7TFdmb-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nuDOTj9N32dLEXV9C-ehvw", "review_id": "-ak65RJiQwPVgjvNWmyGCg", "stars": 5, "date": "2011-10-03", "text": "I had the terrible decision to make to euthanize my 20 year old cat, Bandit. I was going to go to the Emergency Animal Clinic off of Scottsdale Rd. further north but I had previously had a bad experience there. I saw there were some good reviews for this Emergency Animal Hospital and, thank God I did. They were so kind and compassionate. They let us take our time, never rushed us. They knew it was a very painful thing to have to do. They made one of the worst things I have ever had to do as 'easy' as they possibly could have. They eased my nagging doubts about it without putting words in my mouth. I am ever grateful for their kindness on that incredibly sad day and would recommend them to anyone who has an animal friend who needs some emergency care.", "type": "review", "business_id": "i5LFOniek1pD8UEiEzGooA"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "AdEy5KAIlMAy8xHyuMQCFg", "review_id": "aYeAnImpHHr3D0IA9m-g8Q", "stars": 5, "date": "2008-07-22", "text": "I love this Gelato! My favorite combination is the panna cotta with the mint chocolate chip. Weird but wonderful. I am rarely down this way, especially since I've moved, but I still fantasize about digging in to this deliciousness! \n\nI only ever had great service, and fantastic product here. So far it is the best Gelato I've had, although I hear Arlecchino's is pretty fantastic as well. I miss visiting Angel Sweet, I will have to go back soon.", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "5wN78N4K0a39C-uPzPmxDw", "review_id": "eZo4zr3dJ8hnTCCytdml8A", "stars": 5, "date": "2009-09-26", "text": "I love Pizza-A-Metro and so does Joe Arpaio. I am quite certain it is the only thing we have in common.\n\nThis is where I take my foodie friends because they are usually so busy eating they shut up for a while. (I kid, I kid...) I have never had anything here that I don't find super delicious and crave-worthy. The first time I went here my party was personally doted on by Maurizio, who was over-the-top gracious and seemed to truly love what he was doing. While I don't see him every time I am here, the service never suffers.\n\nThe calamari is crisp and light, which is a nice change from heavy, fried calamari that is so ubiquitous in too many Italian joints. Hands down my favorite item on the menu is the Frescolina. The combination of the arugula and prosciutto makes my mouth water even thinking about it!\n\nSo next time you are at Pizza-A-Metro, my advice is don't loudly discuss if the portly man next to you is Joe Arpaio. Don't look him up on your Blackberry and pass the photo around to get the opinion of your fellow diners. Don't bring up that his mother died in childbirth, and how that potentially explains a great deal of the man's 'politics.' No matter how much wine you have had, do not forget how small this restaurant is. Because in the end, after he and his bodyguards leave, the server will tell you- Yeah. That was him.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IYAt8qZ2KLvMIxwxQy5KFg", "review_id": "G51FBrsIaJBMopw3zk6qGQ", "stars": 5, "date": "2012-10-07", "text": "Great Kobe on flatbread and the skirt steak is fantastic. Waiters are very attentive and helpful. I've eaten here twice in the days (conference) and I would go back. Their menu is diverse enough to try something new again.", "type": "review", "business_id": "29hR24tcAM3JZaXfA5xCxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_p9EnnLQg6KDlIRU2fYEJA", "review_id": "Np7qt0WVsfqZix7zlV1nmg", "stars": 5, "date": "2011-04-26", "text": "...NOW WE'RE TALKIN'! Killer Mexican Food! The chips 'n salsa kicks ass! You get a red, blue & regular tortilla chips with reg, spicy salsa & bean dip! Hellava start! A kick-butt margarita! Had Chicken Fajitas!...THE BEST! Cannot wait to return! Great ambiance.", "type": "review", "business_id": "e5kc0CQ4R-PCCDgb274gSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "b927p9pWxM9EYoNr_6PxYQ", "review_id": "RLZsqwzzm0dDuJfkobFjJQ", "stars": 2, "date": "2011-06-02", "text": "So everyone in Old Town has been waiting for a good sports bar forever. When everyone heard Thunder Dan was coming to town the excitement starting buzzing. Well this time Thunder Dan didn't hit this buzzer beater.\n\nFirst off it does get two stars for a reason so lets start there. The atmosphere is great. The venue is super cool and there is tons of tvs. \n\nThats pretty much where it stops. The food isn't great and is relatively slow. I have had a burger, wings, the chicken quesadilla and a couple of other things which didn't impress me. Plus the service was super slow...\n\nThis kind of reminds me of the Suns-Bulls series super exciting but just misses the mark of greatness. I am sticking with my old faithful two blocks away Zipps.", "type": "review", "business_id": "kgPjOtSeMd3CMdbnEmHbeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8DZZkj4m3VO8dnZzB5Gykg", "review_id": "gK6j3l1HKgR8_O8Vn7u5Hw", "stars": 4, "date": "2011-03-05", "text": "Great setting to enjoy good food!", "type": "review", "business_id": "BINYfrtGp3A4w0d5E7kbYw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "TrvVfQgZSZ4p0Z22efHfNg", "stars": 5, "date": "2008-05-27", "text": "Great selection of vitamins and supplements, good prices and I can get the special treats our cat likes while I'm picking up the goods for myself. Plus their rewards program is pretty straightforward.\n\nI also like that they are not \"all over you\" like the other local chain is when you walk in the door. \n\nI highly recommend the Vitamin Shoppe on Camelback!", "type": "review", "business_id": "fMqEPInEm9Fl5h8oJWPEjA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cBDAIpUYhVZeGJGDHW98BQ", "review_id": "ORxerTZucYcy21QctgLp-g", "stars": 5, "date": "2011-05-27", "text": "Went here for a work function today. What can I say, this place is awesome! A great variety of meats all cooked to perfection. My favorite was the bacon wrapped filet, yum!\n\nNice salad bar with good variety as well, instead of bacon bits, they have a bowl full of uncrumbled bacon.\n\nLastly a slice of cheesecake with strawberries, mmm.\n\nSimply awesome stuff! Taking the wife when I can.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "G-FyatjCEmspIGts2MTN0A", "review_id": "TEzUCAhyCDe7DReNqB30iA", "stars": 2, "date": "2012-05-16", "text": "I am not really a fan of CPK but I went here with a colleague as it was close by where we were working. I figured I would just go with a basic pizza (thin crust) and was less than impressed. For thin crust it was pretty soggy and for me that is a deal breaker. Service was good and friendly but the pizza sub-par IMO. Maybe the other items are better, but I thought I was safe going with a plain pie.", "type": "review", "business_id": "ut-kla-EA23nJOij_dcL0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-ZDJ8KSpOHhCPrwi6F-_Ug", "review_id": "x2KQET-oO_y-3W3IWXrjzQ", "stars": 5, "date": "2009-09-01", "text": "I'm not going to lie - I indulged in fantasies about Howard Roark during the course of my 90-minute Insights tour. His spirit and convictions were brought to life by FLW and being in this incredible complex where he lived, worked and taught was indescribably cool. The tour takes you around the property and through many of the rooms, restored to various periods of Frank's life. I was a bit dismayed at the disrepair some of the rooms are in, so I spent money in the gift shop hoping it will go to repairing some sad looking chairs and windowpanes. \nOverall, the tour guides are genius at describing and making you feel like you're seeing things through FLW's eyes with his vision on architecture and lifestyle. This is not to be missed!", "type": "review", "business_id": "rrd7NeAgARDNzPsxxsBJiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6E6Xl7e_uYUn1tFB45ck-Q", "review_id": "N0ZRCOmv-vT1l3B336MtBg", "stars": 3, "date": "2010-05-11", "text": "Went here for dinner on a Saturday night. Put our names in...and only had to wait about 30 min. Not too bad. The bar was a little too crowded to wait there, so we went a couple of doors down to pass our time.\n\nOn to dinner...we had a great server. He was super friendly, nice and was vocal with his opinions. I would love to tell you that all of his reccs were spot on...but they weren't.\n\nWe started with the pretzels and the cheese fondue. DELISH. I went halfsies with my friend and we shared the prime rib sammie and the shrimp caesar salad. The prime rib sammie was mediocre. The beef wasn't flavored at all, and when we got the fries, they were cold. Hot plate, cold food..not a good sign.\n\nWe did get fresh fries, I didn't finish my half, and moved on to the salad. The salad was good, but not great.\n\nAll in all, I would go for a drink and some apps, but wouldn't really want to eat dinner here again. I may have just ordered wrong...but two meh things do it for me.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "KHzLvvE-a-DDbovdstBDXA", "review_id": "RXrEBOzlOITzql7ql4H8TQ", "stars": 1, "date": "2010-09-19", "text": "Donuts are worst I've ever had. I bought 2 dozen donuts using their 10.99 sale and it was the worst donuts I have ever had in my life. All the donuts were dry and stale. I should have gone a couple of miles over and bought Krispy Kreme. Krispy Kreme donuts are always fresh. These ones were worst that those that sat on the shelf for a week in a supermarket!", "type": "review", "business_id": "toDZ6L_a_0lWU9O1JtQRGg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "ZDn42x7z6ZwINiqZzeTCwg", "review_id": "bU8yHRTyqE9SBhCaL6wLww", "stars": 5, "date": "2010-05-21", "text": "This is the best Cajun place in Arizona. The portions are great and the people behind the counter are really nice. I love gumbo and I have tried several kinds here and all of them were excellent. Yes the decor isn't 5 stars but seriously if you're more worried about mood lighting and soft cushions you can go to Pappadeaux's and get charged an arm and a leg for lower quality food. the drive and the price are definitely worth it for this place.", "type": "review", "business_id": "mwiNm868yAo8Xh8hO7Ke_Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "tPq1TK_cVlUtwucAlKaA6A", "review_id": "8O6PDuA7eCgxfW62XXtZRQ", "stars": 3, "date": "2009-08-04", "text": "I read quite a few reviews on Yelp prior to checking this place out with a group of 10 or so. We arrived and the table wasn't ready just yet - we ordered a variety of cocktails, menu driven cocktails, beer and wine. I had an 8th Street Ale - always a good choice. I had to ask for a cold glass to put it in and when I was served the 2nd one, they didn't include it. I had to ask again.\n\nThe food: Pretty good, actually. However, its totally overpriced and the portions are pretty small. So it makes the hurt on the wallet that much more severe. Our waitress was cool, she put up with a lot of conversations in our group, sometimes being loud and not paying attention.\n\nI would go back again, but most likely for lunch. Hopefully you would get the same size meal for a few bucks less. By the way, I had the pasta with rib eye in it (I forget the name) and my wife had the Carbonara. They were both good!", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 4, "useful": 3, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "WCvWGp6OaOxC2X31MXPWcg", "stars": 5, "date": "2007-05-17", "text": "The Rosson House Museum is a restored home from the 1895's. And it's also conveniently right next to the Teeter House Tea Room and across from Pizzeria Bianco. \n\nFor under $5, you can take a guided tour of Rosson House and learn what life was like for its residents so long ago. It's a really cool activity to do, and since it's close to so many great restaurants, you can go for dinner and drinks after your tour. \n\nWalking through the home, it's easy to imagine the lady of the house sipping tea in a dainty cup with her lacy gloves on. \nOr maybe it's just me. \n\nHouses like this tend to creep me out. I half-expected to see a ghostly woman in a pinafore around every corner, but let me tell you, I'm glad I didn't. \n\nEither way, coming to Heritage Square and exploring the historic buildings in it is a great way to spend an afternoon.", "type": "review", "business_id": "cbFlhBjmvV5XgspysHCQtA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Rr1q5BfuV9u6sJX98aOgCw", "review_id": "Ydc1XwgrFaEWKo0jR-hp1w", "stars": 5, "date": "2009-11-02", "text": "Dr. Dairiki is terrific. She is professional, listens to you and explains things so that you know exactly what she is talking about. I have never had to wait and the other thing I like is that she calls you back personally to let you know test results or if you have questions (plus it is done in a timely fashion.)", "type": "review", "business_id": "-34jE_5dujSWMIOBudQsiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "EJkV29QY_oHwSngQiTj2rQ", "review_id": "hfNyHHbO9yuwJ3paaj-TtQ", "stars": 4, "date": "2011-07-18", "text": "I just went here for lunch and mmm, mmm, mmm, this place is sooooo good! I had the shrimp and veggie pho and the broth was VERY well-seasoned and so delicious going down my tummy! We also had the shrimp spring rolls, which were also delicious and very refreshing. \n\nMy only complaint, and the reason I couldn't give 5 stars, is that only 1 out of 3 air conditioners was working in the restaurant. And on a day in Phoenix when it's109 degrees outside, plus the heat from the pho, we were burning up in there! We had to go get some froyo afterwards just to bring our body temps back down to a normal level! I look forward to going back when the temps cool down.", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "glRhDPETR9sI7-lvGzjPPA", "review_id": "4hzJE16oq-v_gMzJfnFAQQ", "stars": 3, "date": "2010-10-11", "text": "When Fresh & Easy started popping up everywhere, it was my new favorite go to place for quick and easy meals. They have a great selection of ready made entrees and salads that beat going through the drive through. The fact that there were always excellent coupons to be received could have been a big factor in why I returned so often. Key word, WERE, I think they have lightened up on their coupon circulation!\n\nThe problem started when I began to do my actual grocery shopping here. They have great prices on a limited, but satisfactory, amount of grocery items. Its the produce and veggies that are troublesome. I find that they start to go bad after 2 or 3 days, which isn't very convenient or money saving when it means I am throwing half of what I buy away. I am very conscious of expiration dates on items, and have even found myself throwing away items prior to their expiration. \n\nSo, unless your planning on cooking with your fresh items that day, I would avoid the produce and even some dairy and meat items. So what I am saying is, frozen, dry or canned stuff...I am pretty sure your safe with.\n\nThis location in particular has also been my least favorite to visit as far as friendly staff. I usually have to bag my own groceries....yeah, I know, self checkout keeps the prices down, however, when you have 2 or 3 staff members just hanging out by the registers with little or no people in line, it wouldn't hurt for someone to jump on bagging groceries...its a little customer service that may save someone from not returning!", "type": "review", "business_id": "GDzn6pU_pGpXc4kTLpR3BA"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "fY102CUYiK11hgQnsAI9Ug", "review_id": "PYxVUJCtbxSqR4qPITHq6w", "stars": 4, "date": "2012-04-22", "text": "Upon our overnight stay at Econolodge a few blocks down, the live lit sign along side of the street attracted me to try this restaurant. I remember the menu vaguely, however did not forget the amazing breakfast special the other half and I ordered. $6 for a plate of thick cut bacon, 2 eggs made your way, hash browns, and toast (white/wheat/rye, etc.) Customer service was great, the hostess and waitress made us feel very comfortable!", "type": "review", "business_id": "1AMncE6Lxdr6J9PeqZi4nA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "-zzhFGw6I9wA5EtivKn89Q", "review_id": "2qweq3UfTZy1PCo2MZ6wCw", "stars": 4, "date": "2012-10-15", "text": "Okay, since my latest review, I was contacted by the manager who expressed concern on my bad experience. Fran wanted to make sure they had the opportunity to make it right. I was impressed! I do want to say that even if the food sometimes needs a little sumptin sumptin, the customer service is Great and always has been! I give them superb credit for that & the ambiance is nice too. We went back for another try & we were satisfied. I definitely think you should stick with the thin or traditional crust, it was better. Also a note to update a previous review - they no longer have the Portobello Steak Sticks, not sure why, maybe a cost thing, but they were delicious and I will miss them! Another cool note that should be said because it can't be said about most places with an outdoor patio - they do not allow smoking in the patio dining area, which is such a refreshing change. It's nice to be able to enjoy the great Arizona weather this time of year. Thanks for that!\n\nFinal words... BoomBozz is on the top of our list again", "type": "review", "business_id": "k76odRRsXPErPzB0gjn-3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HuGmiFh9v-YxY9FUGx2xHg", "review_id": "UgyvGcJ4ZGkMg3QMWEt5_Q", "stars": 4, "date": "2009-09-29", "text": "Does anyone else think chips and salsa are part of the foodgroups? I do!\nYes this is a hole in the wall, yes it is in a scetchyer \"hood\" but it will be worth your time. \nMargarita's...check out their 2.99 deals or just for the heck of it get a piture and share with some friends. \nThe atmosphere can be loud (decor and patrons alike), but for this reason, it is a good place to bring kids because no one cares when your kids are as loud as your adults.\nOn to the food....Chimis are great, my husband always gets the heart attack style (this is not the name) chimi with white cheese sauce.\nThere are a lot of vegitarian options here for all you non carnivores.\nIf you are looking for good mexican food and mostly chips and salsa that should be part of the food pyramid, then Via Delosantos is your place.", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "lzzQ-pSFsP00aIH3bZgbAQ", "review_id": "lrYiGCwiL4itSiqyhDLwYw", "stars": 4, "date": "2013-01-02", "text": "I don't remember shopping at this location prior to the remodel.\n\nI can see myself shopping here much more often in the future. I'm already thinking about how much it sucks to shop in the summer when it's 110 - but covered parking?!? oh, yeah, I'll be there in the summer.\n\nNice and clean, easy to shop, wide aisles, no clutter in the end caps. SO easy to shop this store.\n\nWent in today for an advertised price on chicken that we were planning on having tonight. Asked the meat guy if there was any more chicken left. Was told that they were sold out. I told him that the reason we came to his store was because of the price and we were planning on eating the chicken tonight with dinner guests. I asked if he could sub something, and he said, \"SURE, no problem!\" Friendly, helpful, super easy.\n\nI also mentioned that the last time we came in, I bought something with a manager special sticker on it but was charged the regular price. The customer service guy refunded my money with no questions! Awesome.\n\nGreat store, nice selection of bulk items, fresh produce, large service deli, in house bakery with some incredible looking treats, clean.....\n\nI'll definitely be shopping at Bashas! As if I could rave anymore, it's a LOCALLY owned business!", "type": "review", "business_id": "Y6Qsu0EYDFtOOtxdYf51Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ULaEXc_OfmOzMcpEUExAJA", "review_id": "Ckn7A7lWGHsZIkXkRyzjUg", "stars": 5, "date": "2011-08-28", "text": "These dentists are great at explaining medical issues in a way that you can understand. They are honest and very smart. They don't take my insurance and I still go there (lets face it, dental insurance doesn't reimburse much, so it's only like a $15 difference for me to go out of network for a cleaning). I would never go anywhere else!", "type": "review", "business_id": "5oQOTAWwXRbd5gf2cbX0ug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0_nI0EtDmHdiBFIRL9RIlA", "review_id": "h-lOQTbEZys2wGabiyixNQ", "stars": 3, "date": "2012-10-17", "text": "It's pretty clean little place good tacos enchiladas and tostadas but not big on the chilie beef really lacked any flavor. Like another yelper said, they need a big menu board. If I was near by I may or may not stop by, I'd prefer Some Burros for this type of venue .", "type": "review", "business_id": "Esn7lfc9w6KVoX61FsXM3A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3VIRjR2V29TOaI9u64hMig", "review_id": "70TGn3LHXXySYjCVw4nXLQ", "stars": 4, "date": "2010-01-05", "text": "So after doing an internship in Downtown Phoenix, I was introduced to Carolina's. I was a little apprehensive at first, but I had heard many rants and raves about this hole and had to try for myself. After my first bite of Carolina's burrito, I was in love. It was awesome, and I continued to sample many of the items on Carolina's menu for the remainder of my internship, never once disappointed. I even brought home some of their famed tortillas - just those warmed with a little butter - simply melts in your mouth goodness. Awesome and cheap too!", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "AeViEDV-ZsYWaL3nRNzfwg", "review_id": "ismc4frvSipf8G1A6uZcEQ", "stars": 5, "date": "2011-04-01", "text": "I have been coming here since 1996 and the food just keeps on getting better!!! The jerk fried rice and emerald chicken are to die for and he snicker doodle cookies....oh my goodness. Every time I'm in phoenix, this is my must go see do eat spot!! The owner Frank is awesome.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fYayRBmQjB8f5eyH1WR-1w", "review_id": "cnkRf2FKSve0T-fYep7vaQ", "stars": 3, "date": "2011-09-13", "text": "I've gotten lunch take out here a few times. The only thing I've tried is the drunken noodles. While I think they are pretty decent, I have been having serious issues getting the right spicy-nes. The first time I got them, I asked for level 3 spicy. Their spice meter goes from 0-5. I love love hot and spicy Thai food, however these noodles were practically inedible. Yet, they were so delicious at the same time I devoured the entire thing. And I felt like I was going to die later, as my stomach felt like a fishnet stocking...\nThe second time I ordered them I asked for level 2 spicy. This time they were not spicy at all. At all!! They were so bland. I mean, they still tasted good, but were missing that drunken noodle kick! So, at this point I don't know what to do. Obviously every cook there must have a different idea of what each number means. \nThe last time I ordered from here, I simply said drunken noodles. I didn't specify a spicy level. I figured maybe this would give me the perfect in between spicy that I so desired! Well, when I got them, they were more bland than the level 2. And tasted kinda weird. \nI will give them another try as they are right across the street from my work, and I hope we can work out our spicy issues! \n4 stars for the service, they're really friendly here\n2 stars for the food, until we can work out our issues\nAnd 4 stars for the convenience!", "type": "review", "business_id": "17DI33J8TkcfzyoiIYLQIw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "Bc2UjSePEGvqSdHvz2HKGA", "review_id": "Qomkfq_Ebr8mjilJbhXGcQ", "stars": 5, "date": "2008-09-26", "text": "I will have to disagree with many of the previous writers here. I have been to Michael Minna in San Francisco, which is way more famous and crowded but this one is better. Let's begin with something that impressed me. When my partner and I sat down, someone came over and immediately handed her a black cloth napkin. Sounds simple, but it's nice when you have nice black pants on and don't want white crap all over them. Second, the food was great. The duck fries were really good (and free)... I had a great corn chowder with cilantro and a small grilled cheese sandwich which was perfect. (I never eat those). My main course was a skirt steak in a fantastic sauce. My dessert was beignets and creme brulee. The beignets were great and the creme brulee was good. (My gf makes it much better)...we each had two drinks, a pear martini which was excellent and an even better white cosmo. All in all, the food was tasty and the appearance of the place was nice and swanky. It's about time Scottsdale started opening restaurants that can compete with S.F. and NY.", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "4UuEnZ1i3SBcO0r8zMd05w", "stars": 4, "date": "2011-08-11", "text": "you will wait... ALWAYS...\n\nI COULD EAT A POUND OF THEIR HASH BROWNS. i get them to go!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_R7VHVlXk12JDJ_3oyqoEw", "review_id": "FjrOSyMkrVV_0MAE65IaHg", "stars": 5, "date": "2011-10-27", "text": "Our server Amanda was awesome with her suggestions and service! Would go here again in a heart beat!", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 11, "useful": 7, "cool": 5}, "user_id": "PYtryNSk30ytqOc_36sLPw", "review_id": "6sYC-4jw-chvJIEXXrgrbQ", "stars": 1, "date": "2010-12-04", "text": "Is it illegal to have good Chinese good in Arizona? We went tonight having high hopes of having high quality, fresh Chinese food and we were sorely disappointed.:(\n\nWe opened our take out bag and the white rice had been left off of the order...we were going to give them a pass for that...but on the flavor issue...there are no excuses...\n\nThe Peeking Dumplings were wilted and flavorless. The sauce that went with them could not revive them. The Chinese mustard was in little packets and had no heat...Viagra needed:(!\n\nThe Mongolian Beef was so salty it tasted processed.\n\nThe snap peas were stringy and overcooked.\n\nThe General Chow's Chicken...it tasted old like it was off an all you can eat buffet.\n\nHonestly...Panda Express is better...as least you know what to expect in a mall food court.\n\nIt wasn't cheap...and I'm not a food volume person but the portions were small...I was fine with it because who would want more of this plate of shame!\n\nI hope they can get there act together...but I fear the owner may be in over his head...\n\nIsn't there a Chinese Chef in town who needs a job!", "type": "review", "business_id": "FI4ns6iR4ZrhoaYjITf-Mg"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "-txH2zJSBZQHO6RWvoWXuQ", "review_id": "jC_DzYerSizDG3rUMsz-LQ", "stars": 4, "date": "2008-11-18", "text": "Oh. Mah. Gawd.\n\nLet me get this out of the way.. the ONLY reason I'm dumping a star on America's Taco Shop is because they charge extra for chips and salsa. I HATE that. Charge me if I ask for extra salsa or something, but otherwise, come on. \n\nNow. Said chips? Perfect. Salsa? Perfecter. My taco? Made me cry a little bit. I am picky about corn tortillas, but these were brilliant.\n\nGo to America's Taco Shop. I will see you there.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "RhuAclcyqUMxmUipjdfGIQ", "stars": 4, "date": "2011-05-02", "text": "Of all the Dairy Queens I've been to in my life in CA, TX and now AZ, this is the nicest and cleanest location I've been to. I guess that's what happens in Awhatukee.\n\nThe staff is fast when you order inside and also when you order through the drive thru.\n\nI could eat Chicken Finger Baskets and Blizzards all the time! I'm happy to live so close to this location and enjoy all the wonderful treats this place has to offer.", "type": "review", "business_id": "fRtuc2k17r6aZMJWEMcXFQ"} +{"votes": {"funny": 6, "useful": 9, "cool": 8}, "user_id": "b9XdpPlzZCVimhNb0z8CNA", "review_id": "mkPRiVoJ0nCtLGDH__WZ9A", "stars": 4, "date": "2009-07-13", "text": "First let me say, that as a straight guy, I'm always a little apprehensive about going to gay bars for karaoke. I know! I know! But my wife and I enjoy singing and have found it difficult to find places with decent sound systems that also have a decent catalogue of music, so I deal with it. I've been to Kobalt twice now, the first time with my wife, and last night with a group of friends. We had a lot of fun both times. The music selection is one of the best we've found, although the sound system can be a little \"off\". Sometimes the feedback can get a little strong on the wireless microphones. I guess we're just spoiled by our regular karaoke haunt, and our hostess who mixes the music so you sound really good. Here, it's just you and music baby!\n\nI have to say, the crowd at Kobalt is really different (in a good way) than some of the other bars in town. The patrons are very friendly, and very respectful (well, everyone except for the guy that told our friend she was built like a \"Brick Sh!thouse!\" I'm pretty sure he was just trying to tell her in his own way that she looked very lovely, which she did). But seriously, that was a one-off and you get those in every crowd. The bartender is really nice, very attentive, and remembered what we ordered from last week. Huge props and huge tips! The Karaoke host is great. Works in new singers in a timely fashion and makes sure everyone has a good time. \n\nThere's been a lot of talk about the smell of popcorn in previous reviews. It's true; they have a popcorn machine by the patio door. I've never tried it, but there's only been crumbs left when we got there both times so I guess it goes good with beer, apple martini's or whatever your choice of drink may be. I didn't find the smell overwhelming though, as some have said.\n\nAs for the catalogue, they have plenty to choose from. You'll find a nice selection of country, rock, and of course...Showtunes! You're almost guaranteed to hear Rent, Phantom, All that Jazz and plenty of old standards by Sinatra and the rest of the Pack. FTW!\n\nIt was a little difficult to find at first, but if you drive around to the North side of the building, you can park under the structure and you'll see the sign in the breezeway. I give Kobalt 4 out of 5 stars only because they don't have karaoke on a night when I don't have to get up early for work the next morning. If you're ever in the neighborhood, check it out!", "type": "review", "business_id": "snE3ZuXhcHgAVt3xTUGgzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-KCR0e2Nyc7a7qvqnr9njQ", "review_id": "rIeUBRHo6Kqnqy_EszaV_A", "stars": 3, "date": "2011-08-06", "text": "Very well done pizza...its like a pizza pillow, tasty, savory and rather doughy.\n\nThis is not my favorite style of pizza but nonetheless it was especially good pizza. The service staff was top notch and the store is very warm and inviting.\n\nWe will be back!", "type": "review", "business_id": "e_riFHMoJ1Yguvr0KtOkDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r9_tXmlmmm1OTtEzezcnRQ", "review_id": "d0sQiGw-25-IZ6iAU8lt7A", "stars": 5, "date": "2011-07-30", "text": "This QT is one of my favorite locations! It is always very clean and the staff is upbeat!", "type": "review", "business_id": "O5VAXnTDezn4eghfTTEWDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0bRCHX5BTblUWcfURIKR5A", "review_id": "jfglOTmum9i0f_4URGNE8g", "stars": 5, "date": "2012-11-08", "text": "The hula burger was awesome! Great service. The hostess is very kind and sweet. What a great find!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ETrSs9dpPwxqi1mYfbMmvw", "review_id": "_t_c7z371mezSOpBlrRyiQ", "stars": 4, "date": "2012-05-17", "text": "Three-star service, but five-star ambience=four estrellas. Let's face it, marina restaurants don't have to push too hard to succeed. Competition along the shoreline is minimal. When the cooler runs low on the boat, Lakeside Restaurant is the only show in town. You can tie up at the little restaurant dock, where the sign warns of a 30 minute limit, which is laughable given the snail-paced service. Sit on the patio and toss a few crumbs to the waiting ducks and, further down the food chain, the circling iridescent big-mouth carp. Feathered, scaled, and furry scavengers vie for patio scraps. The water is clear and calm, and the view stunning. The coffee is weak and watery, if plentiful, and the omelettes are big and fluffy, if bland. The heavily inked wait staff is polite if a little rough around the edges, but props to folks who are sturdy enough tackle a full-time wilderness gig like this. Note: these are the best restrooms within 20 miles.", "type": "review", "business_id": "bpPVn4nF8YR40BjhO6YP1w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "D5J4mKahKvUBJUTWanZwdA", "review_id": "ro8Oz6z4GjqcXk3_H-A5FA", "stars": 5, "date": "2011-08-23", "text": "Found this place through Yelp and a Yelping buddy so there you have it...the power of Yelp because we absolutely LOVED this place. Tucked into a neighborhood you have a very cozy, eclectic little joint. From the start to the end we received extremely friendly service. We of course tried the foods suggested in previous reviews and by the server. The pasta fries were unique, light and paired with great tasting sauces. A definite dish you have to try. We also tried the figs stuffed with chorizo. Also very good & savory. But the ABSOLUTE FAVORITE of the night were the chicken and waffles! My gosh is this the dish to come to the Tuck Shop for. The chicken was deliciously seasoned and had the perfect fry on the outside and moist chicken on the inside. The waffles were served with a butter that seemed to be whipped with possibly honey and the syrup was just the right sweet. All the flavors seemed to work with just the right amount of sweet and savory. The grilled fresh green beans were the perfect side. I think I would get this dish over and over and over again. Then I would go back and get it again. \nGreat place we will frequent often. \n\nP.S. They make their own tonic. Yep, their own tonic. GREAT tasting! Try it with the vodka they serve (haven't heard of it before but was very pleased).", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QDIhUXuNvXPY2Gv94QFiug", "review_id": "k6LHw2ByGIeRG9rCpcO9QA", "stars": 5, "date": "2011-04-11", "text": "Loved this place since it open but they have changed their menu up a little and it seems they have cut corners and products out of there repartee. The sandwich I got this weekend was very bland and somewhat disappointing in portion size I've grown accustom to at the \"WBC\" and they've discontinued making their bread salad. (Very disappointing) I will be back but with fewer expectations I guess.\n\nI received an apology letter from the founder and an offer to refund my money. I don't need a refund... this is not what Yelp is about, but it was really refreshing to know that a company still cares about their customers reviews. After re reading my review it may have sounded worse than my experience actually was. The sandwich I got was a new one from their menu named the Spicy Chipotle Egg Sandwich, it was good but I like SPICY!!! I may order it again and just ask for an extra egg and some more chipotle sauce. The gentleman did give me the recipe for the salad that I've enjoyed in the past. \n\nThis type of service is what makes a customer for life.", "type": "review", "business_id": "CV4DDFG6tII-ehzaWPXK4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZxU3PjaGOdNfIEZ8aDjtRQ", "review_id": "-6f_rCCG8ez4Cv6EONBefA", "stars": 1, "date": "2012-02-06", "text": "There are few resources in Arizona for dancers, actors and performers, so it's best to order online if you have the time to wait for shipping. Dee's Dancewear is overpriced and because they know they are the only game in town, their customer service (and return policies) have suffered.\nIn an emergency situation, you're better suited going to Mischa's Dancewear on 33rd Ave and Bell or Capezio's in Scottsdale. Otherwise, order online and steer clear of this establishment when possible.", "type": "review", "business_id": "qFLjQyq7HVAY7LN5Srwy_w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "RknsoxpICgtuuv46uaTpyw", "review_id": "h7PQAvi42HU82yd9cNimIw", "stars": 2, "date": "2008-11-30", "text": "When I was younger and first moved to Arizona, Serrano's on Rural Road became a family tradition to get mexican food. It was basically all I knew till adulthood. If I would have reviewed this place 10 years ago, it would have been 5 stars but now the blinders are off and I have money to try better places. One by one they all seem to dwarf Serrano's in most every way. I feel kinda guilty writing this and hope my family does not read this :) But it has to be said. I would still eat at Serrano's but it doesn't have the same feeling anymore. The Chimichangas are good and their bean dip is awesome. Nothing I have had is gross or anything but its just basic greasy mexican food. There are better places out there. Once again to any family reading this....I'm sorry :)", "type": "review", "business_id": "rlQCMHmaMjPzEh3BeaDkIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5qa1hx5GVHehlBQx0b5gFw", "review_id": "PiR7lltpkA4GP8gAeCJYIg", "stars": 4, "date": "2012-06-03", "text": "Loved the scenic restaurant, right in the middle of the farm. My #1 spot for a weekend brunch.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "YoBgKOdfpGH48LpIDSfoQQ", "review_id": "MucbqYtySTHlOM38XUmwWQ", "stars": 5, "date": "2008-07-30", "text": "Red Velvet, Check\nParking, Valet for Free, Check\nRatpack ghosts, Check\nFun People, Check\nStrong, yet good drinks, Check\nGood happy hour place, Check\nBeen Around for Ever & Deserves it Rep, Check", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "gvqh39oy-m10H7aNyVBL8g", "review_id": "jkZbmHqQSVjAw0tff3r-2g", "stars": 4, "date": "2009-04-11", "text": "Pretty damn nice!\n\nI made reservations for the Compass via OpenTable and upon arrival, i was greeted by first name. We were seated promptly and thank God I didn't pre-drink too much because the restaurant spins at a pretty steady pace. It's a great concept and for all the theatrics, the cost of the meals were very reasonable. \n\nI had salmon and opted for polenta with my meal instead of mashed potatoes and I'm glad to see that both grits and polenta were mainstays on their list of sides. The only miss for me was the chili cornbread which I didn't find to be that great, although my comrades seemed to like it. \n\nService was prompt and consistent and I must say I enjoyed my meal and the whole spinning experience.", "type": "review", "business_id": "4waggbCK-MSE9dbIdSMfPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6uYJ-ixRxPMyf-iEbhoz2g", "review_id": "H3EOU1LQkPOrLtK7UeKn2A", "stars": 4, "date": "2008-01-27", "text": "I found this place by accident. Blink and you'll miss it. Best fried catfish I've had. Totally not greasy. Thin cornmeal batter is the right amount of crispy. Fish is tender and moist inside without being greasy at all. Coleslaw was pretty decent. Cornbread was soft and had a hint of sweetness but not too much. Portions are good. Vegetarian options for the non-meat eater. I ate well for less than $10, tip included. Glad I found it.", "type": "review", "business_id": "yExYqENb4F6qH6kJxTOaSQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eW3-ObGbg_SrjN5Kk3Lz-Q", "review_id": "3loh0w4MoDKcp_U4KMPxtA", "stars": 5, "date": "2011-11-05", "text": "Every item that I tried was amazing. Owner made it a pleasant environment and he had a terrific voice. A must try in Central Phoenix.", "type": "review", "business_id": "NNGJQF3WeIHzGzweCpZ-VA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Og_fHEvQOzBHcWRX7g49cA", "review_id": "EJGXI07Bpman8_eq0OfSBQ", "stars": 5, "date": "2010-03-23", "text": "While visiting Arizona we were told we must try Macayo's. The margaritas (fruit flavored and blended) were a bit on the sweet side- to the extent that I was worried I might get a tooth ache. The prices here are very reasonable. I had the fajita quesadilla, delicious- I cant stop thinking about it. The service was friendly and somewhat efficient. This isn't a place you go for decor and ambiance- but they do have outside seating, always a plus in my book.", "type": "review", "business_id": "wzIPW_XyKc2DBWdOUM5hlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CEkNGnUQWGhQN60XD4E4Iw", "review_id": "bn9YV54GNvplRyPPkum2Zw", "stars": 4, "date": "2011-02-24", "text": "Excellent service. Thankyou Denise!\nFood was excellent...the two of us shared the C4 salad and a custom and pizza with a cappuccino and a latte. Everything was very good and the portions big!", "type": "review", "business_id": "vWnlScr9y2F6_ctDJZ6XLg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "1rcKVcEdGpuAjUSfNU4FoA", "review_id": "z8H_mkzyXTfEyUm9sUO8jw", "stars": 5, "date": "2012-06-03", "text": "Oh, how I miss this Goodwill store, which opened in September 2011. I moved to North Carolina in March 2012, and have not been able to find anything like it here. Large, clean, and very well organized, this store is thrift shop heaven. And it's all for a good cause: there's a job center right on site that helps people find work. Go on Thursdays, if you can, when a designated tag color is just $1. I've purchased a lot of name brand clothing here for $1 per piece. You can also check out certain Saturdays when everything in the store is half price. I got a great mirror that matched the dresser in my guest bedroom for $12.50. This place is so good, I would not be writing this review if I still lived in Arizona, because I would want to keep all the bargains to myself.", "type": "review", "business_id": "jS6flcYZwd3xbEfNsM0B3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mUa_Fpc5pZpFRKkqeuqCSg", "review_id": "XEIc9OjhrtDvKTMj0E0Giw", "stars": 5, "date": "2011-08-13", "text": "So freaking good. The drinks are great too. Ask for \"the icon\" not on menu, but very good!\n\nLove everything I had there! Service is great and food is absolutely delicious! Wish I lived closer!", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xr0WOufnic1HGML_jo3KSg", "review_id": "oA_Jv6juw-F83K7XOd5Ytg", "stars": 4, "date": "2010-10-11", "text": "I would eat here again. The breakfast is good but super fatty! Be prepared to eat a meal that makes it so you do not have to eat for the rest of the day.", "type": "review", "business_id": "y0weNFCIJF9bTgBbFST86A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1VYwbnwR7SY56s7YvJ20-A", "review_id": "nGwlPc5X5kSvoOTayr9o9w", "stars": 5, "date": "2011-09-30", "text": "Chipotle is my go to place when I feel like picking up a quick meal, and this happens to be my local one.\n\nAlways busy, and you'll almost always see someone you know getting some delicious Chipotle as well.\n\nPortions are huge, but no complaining because it's all delicious!", "type": "review", "business_id": "UCjtaUCtJPbTUouHtQURvQ"} +{"votes": {"funny": 4, "useful": 5, "cool": 2}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "W7uNh1aEMvoFRD96BXHALA", "stars": 5, "date": "2010-06-30", "text": "I remember when this was Fry's...back in the 70's. I think it's great when these older buildings are put to good use instead of being torn down for another new strip mall. What a perfect place for an Antique Mall.\n\nThis is a store that you could spend hours and hours really looking at everything. This Antique Mall has TONS of GREAT Antique finds...like REAL antique and retro STUFF, not recent overpriced crap that most Antique Dealers throw in their booth and try to pass off as something worth a lot of money. There are things here that I haven't ever seen at other Antique stores before.\n\nI quickly walked down the aisles, the prices seemed pretty good and yet some that seemed OVERPRICED. I wonder if Antique Dealers are wanting to sell merchandise or pay monthly rent to store their museum. Believe it or not, you can still get BETTER deals on ebay.\n\nSeveral of the booths seemed like they had a theme, like stepping back into that time era... they were merchandised nicely.\n\nThe restroom even looked like some grandmother's tacky bathroom decor, it really fit in well with the antique feeling.\n\nI will definitely come back here when I have more time to shop.\n\n\n.", "type": "review", "business_id": "xNfGoC9CW33GjSPLcfbwUg"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "Hkx9AvnmY_aFXb_mEAS6sQ", "review_id": "2oWb6-7uVRch19fmbnk8pQ", "stars": 1, "date": "2011-08-23", "text": "This review is based solely on service - not the food. \n\nI am sitting in a booth at RA as I type this - that is how upset I am with the host staff at ra. I called ahead to inform the restaurant that we would have a party of 8. When we arrived the girls at the front were so rude I almost walked out. We waited 35 min for our table and the entire time the host staff was looking my entire group up and down giving us the \"stink eye\". I am sorry that you are 18 years old, work for $8 and have a stick up your butt, but do not make us feel unwelcome. My girlfriend and I went to the back to use the bathroom - the host followed us back and asked us what we were doing - not to help us find the bathroom but just to be a snob. From here on out ra is ruined for me.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 4, "useful": 7, "cool": 6}, "user_id": "2rlBbFPHyZjXSFSE8r551w", "review_id": "ydSFkQQw5UiK2n2JRVtuxA", "stars": 2, "date": "2008-06-03", "text": "No offense to locals, because Glendale \"Glitters\" with \"Chocolate\" downtown, but this mall hastily developed around the silver Jiffy Popcorn pan that is University of Phoenix Stadium (misnomer, it is for the professional football team, the Arizona Cardinals, named after the omnipresent UofP distance learning and professional college, ala National University) and the Jobing.com (local based employment dot com) Arena (home to the NHL Coyotes) is really just a North Snobsdale (aka Scottsdale, Snotsdale, She'sGotTail) Kierland Commons Wannabee Mall!\n\nIt is 4 stories high, shaped like a football and stadium, with huge billboards facing into the 2 water fountains, its only redeeming value.\n\nIt is populated with typical Scottsdale type restaurants....Big on decor, small on taste, with chain restaurants peddling Chef/Designer highly stacked fusion flavors masking average casual food for a larger tab per serving. \n\nEven the hords of young, large bossomed hostesses, bartenders and waitresses in black t-shirts are the attractions that were first ubiquitous in Scottsdale, then downtown Phoenix around the Diamondback Stadium, has now moved to the west side of the Valley! Margarittaville, Johnny Rockets, Fox Sports Grill, Kabuki Japanese...all formula chains for the average masses who think they are getting something special, but aren't. \n\nMeanwhile, the Superbowl early this year, the reason why this complex was completed (and for the new football Stadium) has come and gone, the housing boom has collapsed, and the westside house prices have dropped 30 - 40%. Consequently, within a couple of blocks, the luxury condos are being auctioned off, the Westgate Offices atop the stores are empty, and so are the new office buildings. \nThe anchor Hotel the Renassaince, also a Westin of Kierland poser, is nicely lit but largely empty. There is a conference center attached, so it might get some occupancy other than Football season weekends, but the Homewood Suites nearby has got to be a summer bargain hotel.\n\nThis is classic Valley gaudiness at its worst. And it is set conveniently off the Loop 101 at Glendale Road near the Agua Fria riverbed, but otherwise it is a vast open field of former farm land. Still, it is the only decent mall within miles, so it is a beacon for the young and bored westsiders looking for something besides their quiet bedroom communities of strip malls and convenience stores.", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wipxoCTPDEFRbaa30KmO3w", "review_id": "JUCyFWWcTSLQPu7dKn4F3Q", "stars": 4, "date": "2011-06-30", "text": "I've been to almost all of the dog parks in the East Valley and this is definitely one of the best. I drive 5 miles each way daily to go there. It is by far the largest in Tempe (which is easy because the others are tiny). It is large enough to accommodate a lot of dogs and people (which there are at peak times), has lots of grass, 2 doggy water fountains so they don't have to drink out of community bowls, trees around the perimeter and a ramada with tables/benches, and other benches located around the perimeter. It is open early in the morning and late at night (there are lights on until 10 PM). There are also city supplied poop bags in dispensers which are usually stocked (although occasionally not, so bringing a bag doesn't hurt). The people are pretty friendly and the poop situation (people that don't clean it up) isn't that bad in comparison with many other parks, especially Cosmo and Chaparral. There is only one large section (no small or inactive section), but it seems to work out OK as the dogs aren't overly rowdy or aggressive in general. I've never seen a real fight. There is a sort of walking path around the entire perimeter and many do walk it for exercise. Overall, a well above average place to take your dog. \n\nLOCATION: It's a little hard to find. Take Kyrene to Carver (halfway between Warner and Elliot). West on Carver about 2 blocks on the left. There are other routes, but this is the easiest, unless you're coming from west of the park.\n\nAnyone is welcome to contact me for my opinions on the other dog parks in the East Valley.", "type": "review", "business_id": "0wcIW43ZFTeVFmRMvylZxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bKKVpwp1ERdWUl4lqc8ChA", "review_id": "GKpS14hUrX7vesh2c0zTCw", "stars": 5, "date": "2011-12-30", "text": "One of the best restaurant in town. I have been there few times and they really manage to wow me every time ! The owner if nice and friendly and is really on top of things. The service is great and the food is amazing ! We are going again this Saturday and I can't wait to taste their New Years eve menu. Happy New year :)", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V9vStLuNc4aqZO_GK2VTuA", "review_id": "IWTpi3QT5nAylKGZSp_kFA", "stars": 5, "date": "2011-06-28", "text": "Was in a few weeks ago and had the white bean chicken chili. superfantasticdeliciousness. i've only had one meal out of about 20 here that i didn't like. Wildflower is one of our favorite afternoon places to grab a bite.\nThanks, Louis!", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "qf2H6esJYrNf6XMCcGLZSw", "review_id": "5BvUvnhOHkOvT4zlLEW6BQ", "stars": 2, "date": "2010-04-20", "text": "If you order a top shelf liquor from the bar I suggest strongly you watch them pour. We had a gift certificate to use, the first time we tried we sat in the bar waiting for our table. Ordered 1 Grey Goose gimlet, and one just vodka gimlet. We watched the bar tender pour just that, when we received the bill we were charged for 2 grey goose. When we brought it to the bartenders attention she lied and said they were both grey goose. We waited so long for a table we left, and thought we would try again some other time. Next time, we ordered 2 Grey Goose gimlets, they gave us gibsons. When we sent them back waiter returned with our drinks in a tall water glass. They were horrible tasting. This time we returned them ourselves to the bar. Turns out they had to admit, because we were standing there, they were out of Grey Goose and asked if the could sub, and we agreed. 10 mins later we over heard a waiter bring out a \"Grey Goose\" on the rocks to the table next to us. Pretty shady!! Food was okay, service marginal. For the $$$ I would rather go to El Posto or Pizza A Metro.", "type": "review", "business_id": "kz12EsdDhr4Y_yZ2OlAQzg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3rZANqOuujtsbAfyGABVbg", "review_id": "dcGByj0XTg0hhdpPNnm-dg", "stars": 5, "date": "2008-09-08", "text": "hamburgessa heaven. Guac and bacon on a burger is ingenious. I do wish they had some curly fries or something but the burgers cant be beat. Also, the condiment BAR is brilliant", "type": "review", "business_id": "4AKcmN--0hbF0kX9pg8scg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "5ATM5m3jeXk7_tUgHyxprQ", "review_id": "rY65l9sPDE-rFWpfwROXvw", "stars": 5, "date": "2010-07-02", "text": "FILLY-B's!!!!! only 8 reviews?? NINE now!!!\n\nwow do i miss THIS place:\n\n- 24hrs\n- drive-thru or walk up only\n- ridiculously cheap\n- ridiculously tasty\n\nof course the arizona burritos are good, everything is good. i used to LOVE one of the combos... you get a beef burrito, taco, rice and beans... for UNDER $6. wow. color me silly and call me sally. they have bomb horchata too.\n\nreally good and fresh flautas/rolled tacos and breakfast burritos. damn, everything here is good, whether drunk or sober.", "type": "review", "business_id": "IFKTsVSSguMjLBA9mo0x0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l4Bn7UpQMk4BgUoRjUcRfA", "review_id": "YchHiKNYOgaXoLYHtTkQsA", "stars": 5, "date": "2011-10-06", "text": "Definitely one of the best barbers on the westside of town. Ely takes his time and makes sure you are satisfied. I have tried a few different barbers around town and this is the best spot by far! I recommend this spot if you're looking for a great and friendly barber!", "type": "review", "business_id": "H6AoAhl9HUcfM-qkurvnbw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "O-zVhDi_TeMs6R2Rz31g4Q", "review_id": "lztAHL-LKCXF-M4PxmmvPg", "stars": 2, "date": "2011-08-12", "text": "I am a very loyal customer to pure sushi and have been for over 2 years now. Up until about 6 months ago I would have given this place 4, possibly 5 stars, but with the horrible service I have encountered the last 6 months I'm only giving it 2. Normally I order my food to go at the bar and just take it home and eat it. But the for the last 6 months when I go in to order my food at the bar, its always the same bar tender working and she is rude. The last 3 times I have been into order food I ended up just walking out and not ordering anything. She is always taking to what seems to be her friends at the bar. I always know what I want right when I go in, so there is no need for a menu, she greets me and hands me a menu totally ignoring me telling her that I already knew what I wanted. Then she precedes to talk to her \"friend\" or whoever at the bar for 15 minutes before taking my order. I know all of her personal business and even what she plans on wearing to her friends wedding in a few weeks. The food is good, but considering there are so many other really great sushi places with so much better customer services i would not recommend this place at all. Now I totally understand if this happens once in a while, but it has happened every time I have gone in there for the past 6 months. I feel almost as if I were betrayed, I was such a loyal customer and referred so many people to Pure, I just hope they don't receive the same kind of service I do.", "type": "review", "business_id": "xCryT3Vzk_RLIkhiuUJwjQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "lC4X2crUuxT9Ac9BlOX4Uw", "review_id": "VTHjIW32FVT86A9DDwj0bg", "stars": 4, "date": "2007-03-15", "text": "As I revealed in a previous review, my family loves InnSuites. This location is nestled in the Squaw Peak Mountain Preserve, close to the prestigious Biltmore area, and offers easy access to downtown Phoenix, Scottsdale and the Camelback corporate corridor. \n\nInnSuites offers comfotable, clean rooms for a very rasonable price. And as with all of the InnSuites locations, the Northern location includes amenities such as free social hour and free hot breakfast with eggs, potatoes, waffles, toast, cereal, yogurt, fruit, coffee, milk & juices. There isn't really much within walking distance at this location, so either plan to hang around the pool a lot or you'll need to have a car.", "type": "review", "business_id": "6Ckmrpp6OW1pJ-3Pjg7VaQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "hnirQYfI4cjrzSMENyQTWw", "review_id": "Ss1DH_8pwBEP_pwBrAelbg", "stars": 5, "date": "2007-12-06", "text": "If you haven't been to this place - go! Seriously. It's amazing. It's the best little hole-in-a-rundown-strip-mall you can find. And it's cheap!\n\nNestled between stores like Big Lots and some electronic place with Mexican ranchero music blasting, this tiny place is hidden in the corner. The owner is from El Salvador, so don't expect it to be Mexican food -- there are many similarities, but the dishes themselves are different.\nWalking in, you can smell the homemade pupusas -- seriously, it smells like the roadside stands along the bus routes in central America. It's amazing. There are only a couple waitresses, and I don't think they speak much English, but the menu is in pictures, as well as in Spanish and some English, so you should do just fine.\n\nGet the pupusas - they're like thick, hand-made tortillas stuffed with either pork, cheese and beans or, my favorite, cheese and loraco flower, which is some green and edible plant that tastes a bit like asparagus, to me. It's definitely the best one. These things come with salsa and some coleslaw (if they don't, just ask for the salsa) and are very filling!\nThe other dishes are really good, too. For a low price, you can get an entire plate of things like meat with rice and beans - and this place doesn't skimp on the fixin's. They put slices of fresh tomatoes, avocado and all kinds of other stuff on the plates.\nI honestly LOVE it here. If you want to avoid the crowds, come at an off-hour... then you can just sit, relax and watch the telenovela on the TV in the corner. For dessert, pick up a piece of the cheese pie near the cash register.\nI can't recommend this place enough!", "type": "review", "business_id": "vxPPpj5jJKO8DtapF5S-NQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FKlpOJ05FZno9-JqCBLr5A", "review_id": "0M2u-dkQDvTq2lNpiumxTA", "stars": 5, "date": "2012-10-03", "text": "Honey jalape\u00f1o chicken lollipops and sweet potato tots are probably some of the most delicious things ever.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D4xQ2OZd22T7o8RzXPLVkA", "review_id": "seaOTfrdtgRVJgiMfrY1nA", "stars": 1, "date": "2012-05-22", "text": "I have never been treated so rudely in a retail establishment ever. I went to the shop with my daughter, her friend and my niece...all young adults. I showed a picture of the project we wanted make to the woman working there and she scoffed at me. I noticed she was playing Solitaire on her iPad...apparently we interrupted her game. She then proceeded to tell us that she would have to open the door and turn on the air conditioner because her mother, the owner of the store, would be back soon and is extremely allergic to fragrance. The girls and I had body lotion on, this is the desert for crying out loud, and not one of us had perfume on. Then the mother arrived, there was a brief conversation behind the curtain and she walk out with a towel over her mouth and nose commenting on having to open the door. Seriously? Unfortunately we had picked out some stuff to buy and I'm sorry that I spent the $68. I could have spent more but the experience was so distasteful that we hurried out. If I knew how to give less than 1 star, I would. It was unbelievable. I empathize with the woman and her allergies, but the situation could have been handled so much better.", "type": "review", "business_id": "uqrkLgKMUh9kM4L3L_jwyg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1_vo7C4RnAshpah4sAz2gA", "review_id": "qZuht1DN5jo8JsL1ggiJ1w", "stars": 1, "date": "2012-11-14", "text": "I don't think anyone who gave over a 2 has ever eaten Italian food in Chicago. \n\nI struggled to give 2 stars, but figured the wings were decent .\n\n#1) No celery salt on the Dog\n#2) No cucumber on the Dog\n#3) WORST OF ALL the GYRO, was not off a spit it was processed\n#4) Also, living 30 years in Chicago I have never had a gyro covered in more lettuce than there were onioins. \n#5) Since when does a Gyro (not in Chicago) have Feta Cheese & almost not Tatziki\n#6) The PIZZA IS NOT CHICAGO STYLE ITS 100% New York\n#7) Wings are a 6 out of 10\n#8) THERE IS NO DEEP DISH PIZZA OFFERED OR THICK CRUST???\n#9) I apologize they have now gone from 2 to 1 star... \n\nPLEASE CHANGE YOUR NAME YOU\"RE A DISGRACE TO CHICAGO!!!\n\nDon't think I will give this place another shot no reason", "type": "review", "business_id": "PJEJS5rNMRrIBVQDuU9qoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mbQpxYZ1yZqEsdxOnZmD8g", "review_id": "ONfSQ3RXI7T1yalj9fzkZw", "stars": 4, "date": "2012-09-29", "text": "Great place. Sushi was not wrapped up tied enough so it tended to fall apart. Also the roll was a bit thick that it is hard to fit it in your mouth (yeah, that's what she said:)", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "55ecDCpJIXzTWjEzMQ11Vg", "review_id": "pr36YWZsaXOhx1ehXPpg3Q", "stars": 4, "date": "2009-01-30", "text": "Went to Pho Avina (which I could easily recommend to anyone) a few weeks ago with my 2nd dad and he spies the Korean BBQ place (note their signage all says Korean BBQ and not Chuhgajib) and he grabs a menu and we make note to ourselves to check it out (of course, not until after I checked out the other reviews on Yelp)\n\nSo we head there for lunch today.\n\nNow, I know this about Korean food...I ate kimchi made by the mother of one of my daughters friends and it was good. Beyond that, I know that when I flip on LPGA on television to watch the hottee Paula Creamer, some Korean chick is depriving her of a victory and I am none too pleased but it does appear that they understand food...but I digress.\n\nLunch specials $ 4.95 - OK...I'm suspicious. Includes 3 pieces of california roll, salad, rice, vegetable and entree. Too cheap. \n\nWe order gyoza and egg roll appetizers. Evidently gyoza in Korean restaurant is different than Chinese restaurant but is scrumptious nonetheless. Egg rolls more typical to my expectations and very tasty - I'm optimistic. Tea is in big weird cup with no handle and waaay too hot to actually pick up but tea bag says Liptons...I'm still suspicious.\n\nSalad, underwhelming but I am impressed with silver chopsticks that work well for me.\n\nComes the lunch platter...\n- California Rolls, AOK \n- big mound of white rice, perfect\n- pickled vegables, tasty and interesting\n- sweet/sour vegetables, tasty and interesting...wishing someone could tell me what it was I was eating but hey, it's all good.\n- meat (I had bbq pork but forget the name) mildly spiced, nice, a little dry but that may have been intentional...my knowledge of Korean clearly fails me here. 2nd dad got bbq beef and it was very tasty, not spicy, much more moist.\n\nWe left stuffed, happy amazed that lunch could be so good and so cheap.\n\nPlace was packed and it's obvious why. Inexpensive, tasty, no disappointments and very clean.\n\nWoman who ran the restaurant wears sneakers and reminded me of a track star because she handled a packed restaurant but hardly seemed to work up a sweat and handled a bunch of to go orders as well.\n\nI have to say...49th Avenue and Thunderbird, two excellent Asian restaurants practically side by side and you can't go wrong at either place.\n\nYou can gorge yourself for $10 here. You could drink water and have a $6 lunch that puts a Big Mac to shame.", "type": "review", "business_id": "6Y-6Y6sy6qOQHrWI37zR1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yp90PduP1gD7kgCLWuQg4w", "review_id": "er9UtOcEf80iGbzch-cG6w", "stars": 3, "date": "2012-01-23", "text": "Alright, I'm not really sure I can give this place a fair assessment based on food. I came here last week and ordered the Lox and Bagels. So the plate came out to me and it consisted of Bagel (I'm going to go on a limb and say they are not made in house) cream cheese, a pre-made product, Lox, a pre-made product (although damn good Lox) capers, pre-made product, sliced tomatoes, and sliced red onions. So basically all they had to do is toast my bagel, and slice the onion and tomato and then just plate. Nothing revolutionary here. So this is why I cant really give Tryst a fair assessment. I would have to go back and actually order something that was cooked. It was a cute little place and has a lot of potential considering where it is located. I have to go back again and update this review.", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 4, "useful": 10, "cool": 6}, "user_id": "NqeD28GGg1Wdj9BfaHqr4g", "review_id": "6OtCtpvyWxDyCh4i_zzxxg", "stars": 4, "date": "2011-10-03", "text": "Whoa! This is the kind of laid back, homegrown, down right delicious place I expect to find in Seattle - not Phoenix! What an awesome surprise. Came here for brunch on Sunday and was so impressed that I can say I will make it a point to come back! All the breads and desserts are made in house and I was told everything is made with fresh local ingredients when possible.\n\nThe atmosphere is great. We sat outside and it was nice with prompt service, casual vibe that reminded me of Seattle or Portland, and the FOOD.... Wowie.\n\nThere were three of us... all three did omelette's of different kinds. I recommend the Local Breeze, sans prosciutto. So good! You can get potatoes or spicy cottage cheese as a side - I went with the cottage cheese and it was delish. The bread is also amazing. Nice thick slices for the toast. Best whole wheat bread I've ever had in Phoenix.\n\nSpeaking of the bread - they have a killer menu of different french toast options. If I had not been on carb restriction, I would have had one for sure. NEXT TIME. The PB&J and the Nutella sound especially good. Our friend got a half order and it looked terrific. \n\nI cannot stress how good everything was. But I can only give them 4 stars and not 5 because the coffee was really bad. A good brunch should have good coffee to go with. \n\nI will be back for brunch for sure and would also like to give them a try for dinner or lunch sometime. \n\nGive this place a shot in downtown Phoenix!", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "zigHnwA0FSGPGUE59lLFzA", "review_id": "eDD5v7j5bn5wlWfNzXFVtg", "stars": 5, "date": "2008-10-27", "text": "I am in love with this place. Everything is delicious. I have been in a few times now and hands down the best thing there is the asian mushroom soup. The portion size is perfect for lunch. They offer a sampling of 3 soups with bread, which is perfect since I can't ever make up my mind. Last time was in Janet was serving roasted red pepper and sausage frittatas and bacon and egg soup both of which were excellent.", "type": "review", "business_id": "E0fZHHInMb6xscHDrPlh4Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "jcqA92E_C1TfHOnd7rupkA", "review_id": "OnhLUmbXZ0-FXcqQfU9Xow", "stars": 5, "date": "2010-07-01", "text": "I booked our anniversary trip to the Westin Kierland through Priceline. It was so reasonably priced that I was a bit concerned it would lack quality, and after reading a few reviews on Trip Advisor I was worried. I was COMPLETELY wrong. This is a 5 star resort from the moment you park your car. The front desk staff upgraded our room, and this very nice gentleman greeted us with a smile every single time we passed through the lobby. They have golf carts available to drive you to your rental car. The food in Deseo is amazing. I would definitely recommend trying the ceviche sampler and the muddled cocktails. I can't forget to mention the amazing bread made with tapioca flour, they will even give you the recipe. \n\nWe especially enjoyed talking to the girls in the information center (the one that looks like a mine). They were VERY helpful in giving us advice on local restaurants and insisting we take a day trip to Sedona......we did and Sedona is now one of our favorite cities. Thanks to Ashley, Miranda, Tiffany, Chelsea, and Pat. When we returned from our Sedona day trip, we had chips & salsa, and two cold coronas. This was a very thoughtful touch.\n\nIf you are looking for a fine dining experience, Mastros Ocean Club is right across the street and has incredible food. I highly recommend the lobster mashed potatoes and the seared scallops. \n\nBack to the resort.......our room had a great view of the golf course which was massive. Although we are not golfers, we certainly enjoyed the view. Our room was a pretty good size and the Heavenly Beds are my absolute favorite. When traveling I will do my very best to ensure we stay at a Westin Resort.", "type": "review", "business_id": "SYqTY48DJa1cYhglvmgvsQ"} +{"votes": {"funny": 15, "useful": 14, "cool": 13}, "user_id": "7T2ul_LOzArDKjfVRDt-JA", "review_id": "clqHAvzKCrmUOzCmxjWRnQ", "stars": 5, "date": "2009-11-09", "text": "I see a lot of four stars...perhaps I'm too generous with my five stars. I'm a giver.\n\nAttended a party for Georgie on Friday night and had a great time. \nEasy to find, easy to park, easy to get a drink. \n\nPlus- HEY they have the same turbo nozzle a/c vents that I have in my home. I could live there. Exposed brick? Me too! Felt right at home.\nI love the way they display their art, I'm assuming from local artists. \n\nI would prefer to not have to walk down a flight of stairs after a night of drinking. However, no problems there - thankfully. :)", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1xFAHoJQZLfStQF6kU4dCw", "review_id": "nF8UttSNu33gc1XTpyBQtA", "stars": 2, "date": "2008-08-24", "text": "Very disappointed!!\n\nI picked this place because of the reviews that I've read here. I feel compelled to give my 2 cents worth.\n\nWe started out with jalapeno hushpuppies along with their remoulade. The pups were very tasty (good start).\n\nFor our main course, we ordered the fried green tomato salad to share, my wife ordered the gumbo with a side of fried okra, and I ordered the fried catfish with double okra on the side.\n\nThe lag time between our pups and meal was LONG......outrageously long. When they finally brought our meal, my wife didn't get her okra. They explained that it would take a few more minutes. Keep in mind, my plate had okra so I guess they must have forgot about hers. It was no less than 10 minutes before they brought hers out. \n\nWhen we finally received our meal the bartender apologized for the wait and explained that everything they have is fresh breaded and not frozen which is why it takes longer. I can understand how fresh breaded takes longer but you should find a way to do it faster or take it off the menu if it's going to logjam your kitchen.\n\nAll this being said, even after the wait, if the food was good I would be writing a positive review right now. The problem is, the food was just so so. The okra had NO flavor and was not fully cooked to a nice crisp crust. My catfish flavor was ok but the breading was pretty thick. My wife's gumbo was a little bland....almost like the roux was a little weak. \n\nI really wanted to like this place. After our first experience, I won't likely go back.", "type": "review", "business_id": "BRnnFoWl3iFydC5TwuGwgw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "vF4B6eFdoDmyV_l7MLHMzw", "review_id": "luCmKoinH3Swr7oECKqksg", "stars": 3, "date": "2009-02-10", "text": "Corporate... Juice... PIMPS!!! \nI lurve me some corporate pimp juice! I've been a fan of Jamba's juices for quite a few years... but over time, I had forgotten about the joys of Jamba until my sister (Reylynne W.) We went and I got something with oranges and strawberries in it... i unno what it had... but damnit it was good! :) Nice, clean and fresh, I loved every thick sip. :)", "type": "review", "business_id": "6NHkOtivA_gb_2EbbJbJ5Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nbofxFWHORebBHh10OgYLA", "review_id": "Om9mjFmMBIMiuJzQCyfRoQ", "stars": 3, "date": "2010-05-06", "text": "If I were to have written this review 2 years ago, it would have been 5 stars, but the portions keep on shrinking at an alarming rate. Today I had the meat plate and no more than 2 tablespoons of pulled pork, and brisket were on the plate. Also, what's with the staff? They are like robot drones! Absolutely no personality! The food's flavor, and quality, however, are very good, the place is always sqeaky clean.. and of course the decor is very amusing. Being a hungry hungry hippo, I would prefer a slight price increase, to maintain portion size.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fvD_bt42WeInitD52FM4MA", "review_id": "E-J784I7mK9tNPRnoRqF1w", "stars": 2, "date": "2012-08-12", "text": "Had a very disappointing experience today. All four in our group were disappointed in the quality of the food, especially the overripe cantaloupe and soggy potatoes. The place was busy which won't be the case much longer if they don't improve their fare. The service staff was friendly although I thought it interesting that no one asked us about our experience. If they were interested, now they know.", "type": "review", "business_id": "M0Ulu3PzwBumgOZJL-6KnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jEZNqvXjHcSaNtS1XkUz3w", "review_id": "sHX59q3vMQeZFf9klTrKpg", "stars": 3, "date": "2012-10-23", "text": "This was supposed to be my trip to have the best pizza in America. So imagine my disappointment that they don't even serve it at lunch. What human who eats pizza thinks it should only be served at dinner? Whaaat? I have since been kindly corrected by another yelper that this restaurant isn't the pizzeria. My party was confused, since the server said they DO serve pizza...at dinner. The soprassata focaccia sandwich was fine, but overpriced by about $3. \n\nI don't live here to try it again, so the first impression is the only impression. I'll leave it to all you foodie hipsters to prop up the rating.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YVyzM5JuquEGmSxWrlXzeg", "review_id": "LfzN2TR9xhVCojGaJKAHWA", "stars": 4, "date": "2012-01-18", "text": "I've never been to a small size airport like this before so it's hard to compare it to another airport. I really enjoy the small size of it, makes it unique. There are basically three buildings, you have the front check-in building, the back building behind the courtyard with gates 1-4 and then a middle building to the side with gates 5 and 6 which also has the baggage claim on the other side of the wall. \n\nI personally prefer Sky Harbor because I can ride the light rail straight there, but this airport does have a bus with half hour frequency. Take route 184, Power Road southbound and it drops off right across from the front door. Everyone seems more friendly here too, probably without having the masses wearing them down everyday, the employees here still have a personality lol. \n\nGreat low priced fares from Allegiant, good service, resonable food and drink option and it looks like they are expanding for Spirit Airlines to join this fall (2012). Overall a very good experience, I would suggest this airport as an alternative to anyone living out here near Mesa or if you don't mind the hour drive from the West Valley. I will most likely use this airport again.", "type": "review", "business_id": "2TWGIhh6y-f9fe-Q6kySGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "BXav9E4dd_elPz93EyofHQ", "review_id": "Wm9fX3GQFR5ScqvUP3tD8g", "stars": 4, "date": "2008-12-18", "text": "I love this place for lunch or a casual happy hour when I am in town. The Chips are amazing. They are not your typical tortilla chips. Every basket has a sweet, spicy and regular flavor. The food will not WOW you but then again this is a laid back tex mex restuarant with good margarita's decent food but a really good atmosphere!", "type": "review", "business_id": "e5kc0CQ4R-PCCDgb274gSg"} +{"votes": {"funny": 5, "useful": 5, "cool": 7}, "user_id": "QKW7sYPWPSsIcWqSiDzChQ", "review_id": "AXTB0sEigseOhATvD4NStw", "stars": 5, "date": "2011-05-09", "text": "i don't say, too many prayers\nsaint or sinner, i don't care\nwhich is worse, which is better\ncorinthians, apostles' letters\ndon't read the bible, preach the word\nno born again, but i have heard\nof saintly acts, around this town\nthe volunteers, each morning bound\nunselfishly, they give their time\na day, an hour, can remind\nyou how, sometimes, the way things go\nto count your blessings, never know\nhungry, homeless, most are blessed\nSt Mary's cares, for all the rest\nfeeding famished, forty years\ndonations come, from far and near\nwarehoused, sorted, then sent out\ndeserving families, who, no doubt\nwould otherwise, just not be fed\nbut gratefully, they go to bed \nwith bellies full and filled with hope\nthanks to St Mary's, most can cope\nwith unemployment, cost of gas\nmounting bills and dwindling cash\nhumbly they come, take what they need\na box or two, enough to feed \ntheir families, ease their malaise\nfor weeks, or just, a couple days\nso volunteer, you wont regret\nit's what you give, not what you get \neasy to say, you could, or should\nbut doing good, will do you good\nwe just showed up, put us to work\nboxes of apples, stand and sort\nwith kids from SARRC, autistic, all\nhttp://www.autismcenter.org/default.aspx\njoked and laughed, sacked and hauled\nbags and boxes, we 'gotter dun'\nside by side, some old, some young\nso be a saint, they need your help\nthen write and post, reviews on yelp\nthat maybe, someone else might read\nand too, will help, good folks in need", "type": "review", "business_id": "VAlzQ-qJsSoTcJTc_1Pd1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dT5JHk1aJQhOty1kwTitHA", "review_id": "ToxCAIRohbVM1vizNwUfTQ", "stars": 4, "date": "2012-05-27", "text": "I have only been to this theater once. I was hanging out with some girlfriends and this is the closest theater to where they live. At first glance, it looks like a typical movie theater. For the most part it is. The thing that I found awesome, was that it has a daycare center. If a couple wants to go to a movie and it's not appropriate for the child or they just want to do something for the two of them, they can bring their little one to the day care center. I can't believe all the parents, who bring their kids to adult movies. It's unacceptable and of course selfish of the parents. I hope other theaters catch on to this. \n\nIt's also right next to Buffalo Wild Wings and several shops and other restaurants in the area. Check it out.", "type": "review", "business_id": "m2hNiVSnMvXVRLMtsWUG_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "opBoaO-xNShH86ZW3N1RIA", "review_id": "_7ZkA5VyinBVL6fVh2tjJA", "stars": 4, "date": "2012-03-26", "text": "Went back on Friday and was disappointed to find they are closed from 12:30-1:30 on Friday...lunch time on Friday seems like a super strange time to be closed and I was unable to eat there due to the closure (and I drove out of my way to go there never thinking to call and make sure they would be open at a time that should be the busiest of the day). I will go again, but I will call before heading out of my way to make sure they are open and I don't waste my time on the drive.", "type": "review", "business_id": "saON8-nDZi5W64u1xGtmPA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "OeF4ktJqY5Qf_gf494uE_g", "review_id": "OoMRRx6VSTYVdNb3rZ5JzA", "stars": 2, "date": "2011-11-13", "text": "I'll put it this way -- this place is not worth $55 for lunch for two.\n\nTwo burgers, an order of fries, a Manhattan ($10), a beer = $55 with tip. Nice little spot, but hard to justify the cost.\n\nThe burgers were decent but not rave-worthy, the glass seemed underfilled with the Manhattan - though what was there was tasty.\n\nIf you like over-spending, this place is good. If you're more value oriented, skip it.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6h5PM9BhvhECbQ7ojgoNXQ", "review_id": "vyFzPAyk0e8nQVUedSeQgQ", "stars": 5, "date": "2011-10-25", "text": "Love this store! Were really helpful when I helped plan a replica white house dinner for DESERT SHADOWS MIDDLE SCHOOL for 370 7th graders. Gave me a discount on the party supplies I purchased for the event. Even called others stores to find me the extra stuff they didn't have. Love their halloween section too. It's my one stop shop for parties!", "type": "review", "business_id": "ppoQDk5EQjOJBYNEzYp9Hw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bTMdohssK8vaYBXa-Ynhqw", "review_id": "aWQLsOkTgmuIgdlHv-Q4ww", "stars": 1, "date": "2011-02-24", "text": "Let me preface this review ..I have lived in this area for 15 years and Chompie's has been the only option for good Jewish deli. In my 51 years I have never received worse service than from Chompie's They ALWAYS get the order wrong., Tonight after much debate I caved for my daughter who has strep throat. She wanted nothing else but matzah ball soup to make her feel better. So reluctantly I called in for take out at Chompies. I assumed the one thing on there menu that might be a safe bet and hard to screw up would be the soup. I returned home and called my daughter in to tell her I got what the doctor ordered. As I watched her pour it in the bowl we noticed it was missing one key ingredient......... THE SOUP!!!!! When I decided to call and tell Chompies this has to be the 10th or 12 time in a row they have screwed up our order. This was more than screwing up a order. This was forgetting the soup in SOUP. They told me if I wanted the broth I should have asked for it in a separate container. I responded I didn't think I had to ask for broth in soup! I WILL NEVER GIVE THEM A DIME OF MY MONEY AGAIN. I highly recommend to drive the additional 15-20 minutes in your car and find somewhere else when looking for jewish comfort food. You will be highly disappointed with Chompies. This is the first time I have ever heard of yelp. My son told me to come on here because this is a way to tell other people to avoid restaurants such as these. I hope you take my advice.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "37ORSB5c73-RuZnmKA_w_g", "review_id": "pNdvpwCyJaZvqsMDlzxc8Q", "stars": 5, "date": "2012-11-13", "text": "Warning, don't get deterred that there aren't any seats for you when you walk in... that's a good sign that the the tables are full with everyone stuffing their faces. I waited for about 15 minutes for a table to free up, and I'm glad I did. It was kind of a chilly night and I was feeling for something hot. I decided on the seafood noodle soup and pork pies. The noodles soup broth was lightly seasoned with a hint of white pepper (just the way I like it), the noodles were thick and hearty, and the portion was substantial. The pork pies (3) were like a flattened pot sticker that had been pan-fried on both sides, Yum!\n\nDefinitely, a place serving up genuine Chinese food with the finesse of a home-cooked meal. I can't wait to go back!", "type": "review", "business_id": "jgWAgT7LWPTf5wju9Q-kiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ojr9TTAgpj6pGDGJlKD6ow", "review_id": "V7tO6Nce2ZypS2JSqd3CfA", "stars": 5, "date": "2011-10-17", "text": "I chose this place because of the 100% rating on urbanspoon.com & the proximity to the hotel my family was staying at. We were absolutely blown away. Don't let the location of a strip mall deter you from this place. The food is absolutely perfect. I had the bouillabaisse while my 2 table mates had steak. Each dish was prepared perfectly. The service was also some of the best service we have ever had at any restaurant. The waitress was so attentive & detail oriented. I never had to ask for anything, she always knew exactly what I needed. My water & iced tea was never below halfway. At the end of the meal, the owner/chef came out to greet us & that was such a nice gesture. We were so happy to compliment him & his restaurant. My visiting family even said that they would gladly come back to this place on their next visit. This place is so great & you just need to go visit it!", "type": "review", "business_id": "NkTBJP2YOwUAUNzRqR2gJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V7pppn-r6tL_Yb2_msQQFw", "review_id": "23uo-Xkto0yCxnoNR2wDJw", "stars": 4, "date": "2011-09-14", "text": "In a reasonably late scramble for dinner, this pizza place was quite a find.\n\nThe location isn't altogether promising, right next to a Circle K and tucked in an itty bitty end in a strip mall. There are only about 7 table. Yet the owner, whose service was excellent, makes the most of the situation. \n\nThe wife and I split a margherita pizza. Out first, though, is the appetizer, which was small pieces of pita-like flatbread served with balsamic vinegar served over a tomato and celery salsa cruda. Nom. Worth eating in for. \n\nThe pizza itself was a thin crust... The crust was decent, the cheese was good, and both the basil and tomato very fresh. It must be nice having ready access to fresh versions of both year-round!\n\nWe were very happy with our meal. Pizza A Metro should be on your short list for a good Italian pizza in the area.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cqPcKMkgfWc5lu3ltuLdFg", "review_id": "DWFfqGlj3mJX8jextYj9Pw", "stars": 4, "date": "2010-03-28", "text": "i love this place and their food!\nwhat i mainly love is that their prices are extremely reasonable now so i can go more often.\ntheir steaks are very good as are their ribs and chicken\nas for appetizers, i love the signature Bloomin' onion and i recently tried their wings and i love them! it must be the seasonings and sauce\nthey taste very different.\nand the service is alway excellent \nbut when you do plan on going, make a reservation to avoid waiting too horribly long", "type": "review", "business_id": "LuTLXVyJvgshMlXTBw-Now"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pv4WfS5ix6MAZHAeX-37YA", "review_id": "9g8e2FXC2hwZlgkgBwmKzw", "stars": 4, "date": "2012-01-26", "text": "Burger was good, bun really soft and veggies were fresh. Sweet potato fries were very good as were the rings. I knock them for not having cheddar cheese, cant really have a stellar burger without it. The burger quest continues.", "type": "review", "business_id": "H91jZ9BiQZZ4_7OlEd6eQg"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "oXBahXJCXUEATm5IVexw8A", "review_id": "vYR6nx_5D9TLRGuGq1-cjw", "stars": 4, "date": "2012-04-21", "text": "This cute little neighborhood breakfast/lunch spot just opened up, and is the sister restaurant to Tuck Shop. The menu is small with super reasonable prices!! Not much in the way of vegan fare, but I managed to find a tasty dish: The Red Flannel Hash (beet, potato and root vegetable hash sans eggs). It was very tasty and had a nice amount of black pepper in it. I also ordered a glass of fresh squeezed orange juice for a grand total $8 and change. Not too shabby for brekky. \n\nMy dining cohorts ordered a frittata topped with sour cream and chives, a Portuguese doughnut and biscuits stuffed with some kind of meat (I forget the name of this dish) and were equally pleased with their meal.\n\nNot sure about parking, as we walked over (so awesome!) from their house. This is a quaint little gem with indoor and outdoor seating. They also have booze, so you can add a little pizazz to your wake up call. \n\nGreat place, can't wait to come back!", "type": "review", "business_id": "EFSU5EPU8VsZmrjbTxjc4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "aqY9phFO9Yz9tIsvCmPGpg", "stars": 2, "date": "2009-12-04", "text": "I am one of those people that talk crap about Gordon Biersch behind its back but I'm nice to its face. I go there and continue having expensive yet mediocre meals, but like I just said- I go there. My boyfriend asked me once \"why do it to yourself when you don't enjoy it? \" I don't know. Maybe I'm a masochistic eater. Actually, I'm just very agreeable and I work super closeby. AND if I didn't go there I would just walk over to Whole foods and spend a zillion dollars on a goulash-y takeout container that I don't even like after I pay for it. For me, lunch is more about getting out and doing something else for an hour a day. If someone wants to go to GB I will happily tag along and probably eat, even though I know I wont like it. At least there's not much harm in that, except to my wallett! PS- Lori is the nicest, sweetest server/bartender ever and chatting with her makes up for the crappy food!", "type": "review", "business_id": "GjvIDOEhdQB1oPrFeSpxBw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ky5-mOk8-9M-NlLr8Jh8rA", "review_id": "QKkHiSDIuwQbSNYxkWxozw", "stars": 3, "date": "2011-09-19", "text": "3 friends and I went for restaurant week. Iruna has great ambiance and charm. The service was top-notch, and our server made excellent wine recommendations. The desserts were amazing. The other food was just ok. \n\nHere's what we had:\n\ntapas - tortilla espanola (which was complimentary) was delicious; chistorra (chorizo in cider w/ baby artichokes) was also good; pan con tomate was surprising because it didn't seem to be tapas. rather it was huge chunks of grilled bread that didn't work well to distribute flavors and was oily.\n\nentrees - trout with salsa navarra, eggplant, roasted peppers, onion and tomato was very nicely cooked and had a nice balance of flavors. filet mignon with tomatoes and salbitxada was order medium rare but delivered very well done and over-salted. It was refired, and v2 was the right temperature but still over-salted. \n\nwe glanced at the patio on the way out which looks fantastic. We return to try some other tapas and sangria on their outdoor couches.", "type": "review", "business_id": "sjCRI-lCh4KLO_RYQdlEeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZdX3vDHav6AjNtaNzt-gbg", "review_id": "f942gG6Dy47yV72bo7zXPw", "stars": 5, "date": "2011-10-31", "text": "Mojo's was my favorite till I tried Menchies..much better flavors like Chocolate Covered Banana and even Pumpkin (awesome) for their seasonal! Lots of flavor, very rich, clean & priced at about what they charge at mojos..maybe a little more but Im not sure!", "type": "review", "business_id": "egCtkzJEMwu7-vpFcM7VmQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s2PpELgBrqasMYvgiMs1NQ", "review_id": "e2dKvF0Zv7wl-E078MNH0g", "stars": 5, "date": "2010-12-09", "text": "Went here before a Phx Suns game. DELICIOUS! Everything on the menu looked amazing. I forgot what it was called, but the open-faced steak sandwich was my favorite! All the dishes were even presented nicely! Will definitely eat here again!", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A_VCj_m1zqW0gc0zSzQ3tA", "review_id": "R_EWL3kHZt_2v8pfBAggnQ", "stars": 2, "date": "2011-01-14", "text": "What a shame this place is doomed. From a flavor perspective, I have never found such an interesting Asian/fusion style of food in a quick-serve setting. The food is remarkably rich and spicy, it's really refreshing to see a mass-market place be so bold. Being so deeply impressed initially, I really, really wanted to like this place. I have since given it about three or four tries. Yeah, not so much.\n\nFirst of all, I'm not sure whether it's the quality of the meat, the parsimonious manner in which it's cut or some combination of the two, but their meat is always tough and stringy. When its breaded, the breading is inevitably chewy and hard because the meat inside the breading is so insubstantial that all the moisture gets sucked out in the frying process. Not even the chicken comes in substantial enough chunks to be juicy. \n\nThe amusing thing is, what made me like this place at the outset was the delicious sauces. You're enjoying the sauces so much you can easily overlook how crappy the meat is. Alas, that will only take them so far, as time and time again you are reminded of the crappy meat as you are compelled to floss vigorously.\n\nPortions are another issue. They're too small for the price. Instead of takeout containers overstuffed with rice and entrees, grandma-sized portions are stingily arranged on a small plastic plate. I never have a problem finishing my entire meal and I always wish there was more. \n\nI think Pick Up Stix has a bit of an identity crisis. On the one hand, they want to be Pei Wei, all flashy stainless steel and fancy real estate. On the other hand, come on folks, it's takeout faux-Chinese (\"pick\" \"up\" - see what they did there?). The best takeout faux-Chinese is always known for generous portions at low prices. At Pick Up Stix, you unfortunately get neither.\n\nThe patronage reflects my opinion about the place each time I go: it's always nearly empty. I really don't expect it to last. That's a shame, I really will miss the unique flavor profiles.", "type": "review", "business_id": "nW_1gn19lMnS9IF1KlZ-aA"} +{"votes": {"funny": 9, "useful": 15, "cool": 13}, "user_id": "RxfFQxUtSIGYwTKU_rvAeg", "review_id": "Pm9Fc8J3lnwUpHlQ1UCbHA", "stars": 4, "date": "2011-02-12", "text": "Wow, this was one of the best dinners I have had in a long time. I definitely have my favorite spots but it is rare that I have an entree that knocks my socks off. For me, this was the gnocchi dish with the shitake dijon cream sauce. My husband was surprised that I ordered this, since I don't like mushrooms, and luckily for me, the extent of the mushrooms were some medium ones in the sauce. The gnocchi were very tender and the sauce was rich and creamy. I felt like I was eating a delicious mac & cheese with some soft foccaccia bread. OMG. We also ordered the porteguese style mussels that were a fave of my husband's. They were just okay to me but overall, were decent. We also ordered the chorizo and manchego risotto that I really liked. We each had a glass of wine. Our server was kind enough to let me sample the prosecco before I ordered it. Good thing I did because I didn't like it. The server asked what kind of wine I liked and then brought me a taste of their white blend which I enjoyed. Overall, before tip, our bill was $50. Very reasonable for three plates and two glasses of wine. \n\nThis place is extremely small inside with 4-6 small table inside and 3-4 tables on their patio. There were two servers and on a busy Fri night, service was slow. But they were very nice and apologetic, so I gave them a break. I noticed the kitchen staff worked extremely efficiently which is a plus for such a small space. I was very impressed. I cannot WAIT to come back here as there were several plates that looked amazing.", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "66-nmBKKCG-NetEtGL6pQA", "review_id": "KAWrPC9zFf0dbzbQWatDZw", "stars": 5, "date": "2011-01-24", "text": "i love, love, love the high level of customer service that paul and his staff provide at central car care. i recommend them to all my friends. good service, nice people, great prices, reliable..... what more can you ask for?", "type": "review", "business_id": "xJ9kdujal0bSGlZ9tsvrYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "3lzHa3OHiig1amqo5IzPsA", "stars": 3, "date": "2007-11-27", "text": "Valle Luna bats .250. Not high enough to put in the middle of the lineup (hell, probably not enough to even start), not low enough to send back down to AAA. Completely average. I'll admit, however, to frequenting the restaurant primarily for its bar which seemingly promotes about 17,696 drink specials and more on football sundays. Other than that, there isn't really a whole lot to say one way or another. Perhaps that says more than a lengthy review ever could...", "type": "review", "business_id": "NYIyTj2AZJpAo7XIM-Z7lw"} +{"votes": {"funny": 4, "useful": 7, "cool": 6}, "user_id": "E5QyEU6FCQwnTys0S73zNw", "review_id": "E7L2cT6fnj18q2eES0jmgQ", "stars": 4, "date": "2009-03-05", "text": "i've lived in the downtown area for like 85% of my life and have only ventured into the heritage square area a few times for Heritage Squarish events...usually it's a walk thru to the Arizona Science Center or to a parking lot. but i was here two weekends back to back for the NBA All-Star game tip off party and the Matsuri Festival a week later..and wow. this place can have some awesome things happening.\n\nthe tip off party...75-80 bucks for a ticket..and full range to entertainment lots of food and drinks to sample...free of course. plus the museum and science center were open. live DJ music and access to Pizzeria Bianco and Rose and Crown. totally made my night. the Matsuri Festival was alot of fun, saw Jack play the drums, saw some kids dressed up as anime and manga characters. no free drinks that day. but still was alot of fun.\n\nHeritage Square gets my 4 stars for being a cool place to have things to do. plus the old houses and stuff rock.", "type": "review", "business_id": "mDrnZvSXMbMIGE0IX9mMqA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Sjp6EYsqzdlTvymER6wBfg", "review_id": "GX24QXyev0hrXw4bNQsu5g", "stars": 3, "date": "2006-02-27", "text": "It gets all three stars for the view. For the prices charged the food should be oh, so much better. And the selection is very limited. But if you are trying to impress a date, and aren't too hungry, this is a very romantic location...", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uOdEsOgPW48Ky4j8U8CEcw", "review_id": "Qs8Ta_P-tIG4diwz01yaJA", "stars": 5, "date": "2012-09-15", "text": "Only 10 min away from walking distant.\nThis is really really really good, also really really really bad.\n\nI am almost finished with trying each soynami.... So far and not a fan of the one with banana.\nYET EVERYTHING is.... just... just good. Place on top of a Swiss Alp let me sing, dance, and exclaiming goodness oozing. \n\nAlso i can eat one and not feel lik I am creating havoc for my metabolism to compensate.\n\nRL:\n\nNOTE: Oddly takes an unusually amount of time to get into my hands. 10min?\nWorth the wait, worth the walk, worth the extra chocolate ;)", "type": "review", "business_id": "ZEdaJ8mcMpPiFWgDuSPqeA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "KepFAipDMPuIHS7TyQFylA", "review_id": "PBj4OFTu1vlKL94na8L-cg", "stars": 4, "date": "2010-04-22", "text": "I love the White Tanks! \nIt is one of the few parks in the valley that isn't completely surrounded by development, at the top are beautiful fields and you notice the fauna change. There is also water in huge white stone natural catchment areas, hence the name \"White Tanks\" \nHowever, recently there is a library being developed at the edge of this park, far from many homes and just plain uninspiring to think that everyone who goes there has to drive a good few miles just to read a book\nHere are my thoughts on the matter that I wrote in this article about the new \"Green\" library in AZcentral\nhttp://www.azcentral.com/community/westvalley/articles/2010/04/21/20100421-white-tank-mountain-regional-park-library.html\n\n\"I could not believe when I pulled up to the White Tanks to take a coveted hike through the beautiful hills, that the removal of huge cacti and the building of yet another public monstrosity was taking place. First of all how can anyone call this green? Can't we just leave one place in the valley free from so many cars, asphalt and brick? How is anyone supposed to get out there anyway? It is so far from most home development and completly in the wrong direction to support any kind of \"Green\" living and combining activities as most people do when they visit a public institution such as finding a place to eat lunch, a store to check out, or to mail a letter. Putting a library out away far from urban development and removing tons of cacti to transplant somewhere else is a crime against nature! \"", "type": "review", "business_id": "B_Ea839qdvPWa07YnpeIrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cWTf076MJ8TJ-75NsRUORA", "review_id": "gzZ_ai5d-sN-I81DinK-oA", "stars": 5, "date": "2010-12-24", "text": "Great restaurant! I had the brisket sandwich and loved it. They bring out fresh cornbread before the meal which is a bonus and small little donuts for after the meal. The restaurant has a great decor and is a very pleasant atmosphere. If you want some good ol fashion barbecue- try this place out, you won't be let down", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "e6jqQ_YXlGiLPi1z2HO0Pg", "review_id": "4P5agj5xG0KvcDTGrCrSGg", "stars": 4, "date": "2011-04-04", "text": "First, just be careful of sitting on the planters on the north side of the building if you have to wait for a table... sometimes you might get surprised by ants... \n\nNow, if that didn't scare you away (and I was trying a little, because I am hoping to tamp down the wait time a scoche) please enjoy yourself!\n\nPostino's Arcadia location is the original forerunner in the revitalization of the Phoenix scene. Postino. Cleverly located in a former Post Office. Thanks USPS. \n\nIf you find yourself here with a wait (not always, but sometimes) look about yourself. The patrons at this location are uber friendly. With a larger-than-average number of regulars, some of them have very good stories to share, and are particularly generous. \n\nWe waited one night and had two gentlemen with a high top table offer to let us share their space. It was a rousing good time full of mutual ease, and they left before our party of 3 had finished. When we went to pay, we found out they had taken care of the entire bill. Thanks guys!\n\nIt's that kinda place. A little magical, a little homey, a little bit of wonderful with great food and plentiful draughts, and just enough contemporary edge that you can impress a date, or drink with the dudes.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "GZFiCRwm-bVauSRtTKhb4g", "review_id": "o1twR2pI5yE6xE0HnRGnIQ", "stars": 5, "date": "2008-02-15", "text": "Sushi is not just a meal, it's an experience...Everything from the way fish looks to the crisp green of the seaweed is art. The smell of the sake and the sound of crisp sizzle on the grill create an environment conducive to stretching the palette. Yasu's does this like no other sushi place...The fish is pristine, the rice like air, and the flavors intense and varied. My wife and I live a stone's throw from this place you would never see it if you didn't know it was there. It's like a little secret that is starting to get out...All I can say is that it is hands down the BEST sushi in Phoenix, period. Get the fried oyster rolls, get the grilled mackerel or trout...just try it!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "acOfAooftS7jdWlhyI0CQw", "review_id": "wvuMON5vVA3pA2ilkTvk0w", "stars": 3, "date": "2010-12-01", "text": "I must be spoiled and realize that this is not a big grocery store. I tend to think the store is a good place in a pinch for Asian ingredients. Mostly, Chinese and Vietnamese products for those looking for Japanese products might have to go elsewhere. In a pinch it is great, hopefully with local support this store can improve.", "type": "review", "business_id": "yFQBmF9xwcnnpA6P1IcoEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "8TylC5srYSH10DbTnWktsw", "stars": 2, "date": "2010-07-19", "text": "The Beer is good, most of the food is ok, but I have a big issue with BJ's. They advertise their pizza as Chicago style deep dish. When you order one, you'll know right away why there isn't a single location of this chain in Illinois. The Pizza is more like something I'd expect to have ordered at Pizza Hut than anything I've had growing up in Chicago.\n\nHave a beer here before seeing a movie next door. Other than that, there's way better places to eat in and around Chandler Fashion Center Mall.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vatvtZ8rasqrJyqdaVllDA", "review_id": "iHM6CurNv6iu8ZdIseehPw", "stars": 4, "date": "2012-04-12", "text": "I really like this little dive bar and was quite taken back by the fact they were shut down yesterday. I'm a frequent visitor, and they have a decent selection on the jukebox (touchtunes). The food is typical bar fare, but decent.. got a kickin' deal on chicken wings on a Monday night. I hope they recover because they are the best thing for a dive bar fan in Gilbert!", "type": "review", "business_id": "xuEsUDFIWIEnBXvj1EBXlw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "C_pmkNPyze3U6tDMG2f33w", "review_id": "xaatHDJfJgwpWuvOduVvpQ", "stars": 4, "date": "2011-06-01", "text": "Great food, clean a bit old but nice", "type": "review", "business_id": "F3tqTcfKnljJcSyyqN0bbw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "gDVhQNwvCt2ioWvA7dSQ5w", "stars": 2, "date": "2007-03-08", "text": "This place is located right on Mill, with a patio that is right in the action.\n\nthey gimmick of this primarily college bar is their frozen drinks, which are tossed around in Kwik-E-Mart squishy style windows behind the bar that you can see. they come in plenty of flavors like red, green, orange, etc. seriously, they all taste the same to me, and after a couple they only become recognizable by color.\n\nthe frozen drinks are loaded with sugar and everclear (like the HIgh Octane) so it only takes two to feel super drunk and have a real bad stomach ache (which feels even worse the next day).\n\nthey also have regular beers and liquor, and even a menu - which i never realized til someone sitting next to me was presented a hamburger at their table. \n\noverall it's not my style, gimmicky, co-edy and obnoxious, and i only end up here when someone else wants to go here for some reason that i can never fathom.", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GsNB-KVGhlL9uwHMXi6P_w", "review_id": "PDiYm37pT4CFaX4FUgirBA", "stars": 3, "date": "2011-07-08", "text": "This Dunkin Donuts is hit or miss.\n\nWhen i run in here for just coffee, the service is usually very fast and prompt. When i run in there to order coffee and food, that usually becomes a circus. There have been times when i've waited over 20 minutes for my food. Usually it's not a problem, but when you have a business meeting that you have to attend to, it is. \n\nFast food, pffft. Bring a sleeping bag.", "type": "review", "business_id": "toDZ6L_a_0lWU9O1JtQRGg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "cGNGk7SLSpVUcvvvqDAL_g", "stars": 4, "date": "2011-08-11", "text": "great place to go with out of towners after a downtown game!\n\nthe drinks here are better than the bar food!", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 8, "useful": 12, "cool": 12}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "bhokMtCUqSO8ey-IF8ufPQ", "stars": 5, "date": "2012-01-05", "text": "01/04/2012\n\nI thank Yelp and ATC for giving me the great opportunity to experience a terrific performance of \"Daddy Long Legs,\" ATC's first musical production, at The Herberger Theater tonight! The two-actor (Megan McGinnis and Robert Adelman Hancock) musical, plus the invisible, but great assets, the orchestra and sound crew, entertained and amazed me w/ their execution of a well-written body of work. It had comedy, romance, deception, and sorrow, to name a few... what's not to like? Truly enjoyed McGinnis' impeccable timing, as well. It is sad that many people pass up the opportunity to watch live theater due to the higher ticket fees, and I cannot fault them-- what's easier to bear: $37 per person plus $3 parking fee, which you may buy at the box office prior to attending the show, or $10 and free parking at the movies (well, at least when you're NOT catching one in downtown PHX)? However, when you do decide to place the financial investment, you will almost always be rewarded w/ a highly-memorable night, believe you me! \n\nI had a wonderful time, and I would definitely recommend \"Daddy Long Legs\" to anyone who enjoys great acting and music! (Much thanks to McGinnis and Hancock for their lovely harmonies-- I cherished them!)", "type": "review", "business_id": "3byBKds6zEJ6zCDh90bhVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 3}, "user_id": "JuQIyyxHt-ghfd83UJeuHA", "review_id": "_iOX2s8AjOxnykyi9pUecA", "stars": 5, "date": "2008-12-23", "text": "I'd go back the next time I'm in town. Its friendly in here. My friends and I just went in here to peek but we were presented in glasses of rose. It was good, so I checked their stores of champagne (I like it pink). I should have bought a bottle but we were on our way to an interview or dinner.", "type": "review", "business_id": "qr5MMPq-DliAgaSvG47tdg"} +{"votes": {"funny": 3, "useful": 7, "cool": 7}, "user_id": "NqeD28GGg1Wdj9BfaHqr4g", "review_id": "Jt_Q4_t8Sb3wMdiMNoYxcg", "stars": 4, "date": "2012-01-06", "text": "The Vig Uptown is on my list of very favorite places to go in PHX! \n\nI'll keep this one simple: great food and awesome atmosphere that's chill, not pretentious, but still super cool keeps me coming back to The Vig Uptown.Sweet Central Phoenix vibe and location. I like it that this place is close enough to the Central corridor but also close enough if I'm headed over from Scottsdale or other PHX hoods. \n\nHappy hour is a great deal with half off all appetizers, 5 dollars for any burger and fries on Mondays after 4pm to close, and a stellar menu of comfort food that's still inventive. I adore the wings aka \"vings,\" the artichoke dip, the salads, the burgers, sweet potato fries,and anything I've ever tried here. Other good things: nice patio area that's really indoors for hot PHX days, fireplace area, a bocce ball court, the fact that it's in a repurposed 1950s bank building with a retro feel, and the Vig Rig: on weekends they will pick up/drive home if you want to drink a bit!\n\nOnly knocked them a star because: sometimes the service falls off when they're busy - I've waited way too long more than once just for a salad, etc. If it was only once or twice I wouldn't have knocked them a star...but they're usually busy and the service usually isn't very good. If they can fix that a bit, 5 stars for sure.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 6, "useful": 8, "cool": 6}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "7D1zLsGEYe8lOupuBQmh1Q", "stars": 4, "date": "2009-11-03", "text": "I was pleasantly surprised when I walked in and saw that Country Market had a deli here. I picked up a roast beef sandwich and some potato salad. When I was eating it my friend said it sounded like I was having a mouth orgasm because I moaned after every bite! If you live in the area and haven't been here yet try the sandwiches they're great.", "type": "review", "business_id": "Fnfz9bpjjg1E4eAih2XomA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KepFAipDMPuIHS7TyQFylA", "review_id": "I_uvEbao1ok7uZA8tjUuPg", "stars": 5, "date": "2006-11-14", "text": "Ah what a beauty and wonder Camelback mountain is. However I do warn beginners to use the easier trail on the East side near Invergorden which runs north south and turns into 64th st. It is a bit of a walk from the parking through the neighborhood but the hike is less treacherous and much easier and takes you up a gradual slope to the top. Be very careful it's easy to loose the trail on that side too. \nOf course all the Phoenicians like to go to Echo Canyon at Mcdonald and 44th street bend. Parking can be bad at peak times on weekends--I definetely recommend late afternoon hiking, less exhaustion from heat, less crowds and a glorious sunset at the top. \nHappy Hiking my Dear Phoenicians.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "hDopGRO8tvcT7Dj0noAWRQ", "review_id": "VpipbbN1xsIAnxFBILmCDw", "stars": 4, "date": "2009-03-26", "text": "I will have to admit that I was not a huge fan of the Keg, as I have been to the Chandler Mall location and I was not impressed. I was hesitant to try the new location at the San Tan Mall, but I tried it anyway. I have been there 3 times in the last 3 months, and I am glad that I did.\n\nI thought the waitstaff was excellent and very helpful every time I went there, and their menu has some really great choices. The bar was very nice and clean and the outside patio is pretty awesome. If you go during the cooler months, they have a nice fireplace and comfortable seating. The prices are similar to Outback, but the food is far better.\n\nI will be returning.", "type": "review", "business_id": "-tBiXT917wKlr6n9wSqViw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sgcHJp8DhSJ8JOFqPSOcNg", "review_id": "8thwWBFLZP8S2NE48zeoGQ", "stars": 4, "date": "2010-12-24", "text": "Best Thai food I've eaten in the Phoenix area.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "VgKl0wN7vozHqxKH_uBNWg", "stars": 4, "date": "2010-08-10", "text": "Not authentic, but tasty in its own way.\n\nI go here for happy hour.\nI really like the viva las vegas roll.\nThe crab cakes are of good value.\nFried calamari is a bit bland but worth the volume (big)\n\nOff the happy hr menu, my fav is the scallop dynamite roll.\neither you love it or hate it. It took me a couple tries to appreciate it.\n\n\nthe desert roll (bananas fried and topped with fruits, w/ a hint of white chocolate chip) was surprisingly good.\n\nWalking around the mall after dinner is pretty relaxing.\n\nDo not get the tempura icecream here.\nIt was nasty.", "type": "review", "business_id": "nk6_ipMkmUvUtq6Xvncf0A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "6CIxnHYCfM7D4hGx8WWYGQ", "review_id": "wmeUXmJvfd7f8xPnmFJ_cw", "stars": 5, "date": "2012-09-23", "text": "Very friendly staff, or a fast food place-- their customer service and friendliness is unmatched.. I go more often than not simply because of the experience every time! Thanks Micky!", "type": "review", "business_id": "_uUlWKhPmjFUUxOSS-EP_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SK5s2evxRsvRI1_i4GlzRQ", "review_id": "STTQd68tbYFKMnXD25aJ4g", "stars": 5, "date": "2012-11-05", "text": "Love massages and facials!\n\nI would highly recommend Enrique for a massage. Great technique. Great membership prices and great walk-in schedule for those last minute needs.", "type": "review", "business_id": "JYRp5gBs04z683JoO8ANOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "A2FF3rbujS4O760_400DVQ", "review_id": "om788omhnklOihtW0ECscA", "stars": 5, "date": "2012-08-15", "text": "This place is so unique! I was disappointed that it was closed the weekend of my birthday in July, but I won't hold that against them!\n\nThis bar/boxing ring/vintage store/food truck/soda fountain is super awesome! My cousin took me here a few years ago and since then it's been a place that I always show friends and family members when they want to go out downtown. The drink list is pretty extensive, with lots of organic cocktails served in cute mason jars. You definitely get a good sized drink! The beers are cheap, the food is so-so. I think it's a bit overpriced, so I'd recommend eating somewhere else beforehand. \n\nThe boxing ring is random, but I've seen friends go up there and fight in a drunken stupor, and that is a sight I'll never regret seeing. Some nights they have karaoke, which I've chosen to partake in a few times. I've seen DJ's there on the weekends, and I really like how they switch up the music genre each time. Sometimes it's rap, others rockabilly and oldies. On Tuesday nights they do FREE swing dancing lessons and I've been really wanting to try that!\n\ni love the vintage feel to the place and am surprised it's not packed all the time!", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qDODC_9fKsPQNsmYM6PkJQ", "review_id": "itLZYDK1BEZKOCpBGALO3w", "stars": 5, "date": "2012-01-23", "text": "Haven't been here since 1997! Man, now all the memories are back and can't wait to get situated in AZ for a couple days! ;-)", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fJ_sUnZfUX6aCnqOXookig", "review_id": "j-PuuOJDnyBf2AqSMZslFA", "stars": 4, "date": "2011-08-01", "text": "Great spot, but it get's wayyyy too packed! Sort of a double edged sword, if it weren't always so packed it probably wouldn't be such a hotspot, but being so packed makes me decide to not go there about 60% of the time it crosses my mind.\n\nMy advice, if you are gonna go, go early and lock down a good location...", "type": "review", "business_id": "vwZ15OkVO6PemAe87k0M-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "udK1-SLvAIHFGES_xEhahw", "review_id": "uf11ykR0p3eqfTZo13nSVg", "stars": 2, "date": "2012-10-10", "text": "It's unfortunate their menu only has 4 sandwiches on it. The food was good, albeit leaves a lot to wish for. It came on a plate with a couple olives and nothing else. I would expect more for the $9-11 price tag. \n\nThey market themselves as a sandwich shop but I just don't buy it. More so, it was a hipster hangout where it seems people go to look cool. Granted, the few items the did have were quite good, but I just expected a nice turkey sandwich, but that wasn't happening. \n\nThe service was on the verge of incompetent but the owner did swing by with a loaf of bread. Too bad we had to ask for oil at the counter to dip it in (our waitress was absent). \n\nTheir water was unpalatable and they didn't have a lemon, lime, orange or anything wedge to make it slightly less offensive. My friends that live in Phoenix told me though, this is just the way it is there. \n\nAll in all, I certainly won't be rushing back but there is plenty of room for positive improvements.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "YLE6GoJ61fb0QBF7JTkaJg", "review_id": "Sxa5L9mJL2AGdUTkx2yTYw", "stars": 2, "date": "2012-08-22", "text": "2 stars for the drive through. Everything else about this Starbucks leaves you wondering, \"why don't you just get back in your car and drive down to the other Starbucks on Daisy Miuntain\"...", "type": "review", "business_id": "brDiv7CufBg4bdFfPBY8Fg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "06FvM-0mpGxQSfoV4Em7bg", "review_id": "Y1w6hcnGEz74cP-_MZAK8Q", "stars": 4, "date": "2012-05-15", "text": "I came here with a friend who has been here many times and recommended it. I wasn't disappointed. First, we came during the lunch rush and it was busy. However, we were still seated immediately and served by a friendly waitress quickly. The food then came out in about 5 minutes! I had the rib tip plate, and it was very good. My friend had the pulled pork sandwich which was also good. It's out off the beaten path but worth the trip. When you pull into a place out in a strange location, and it's packed? Good sign.", "type": "review", "business_id": "X_J65cnN3jJWGYacyNwKGg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YcbKJqlmfvU1jkYN2pfotw", "review_id": "egNu3HXmzyjGX4QnExV6NQ", "stars": 4, "date": "2011-06-06", "text": "This review is composed as a companion piece to the other positives on this page, so please read those for details I won't repeat.\n I think Jason B.'s comments most accurately mirror my overall feel for this place. And, while I find Nick S.'s opinions undeservedly harsh, they do contain kernels of truth that shouldn't be entirely dismissed either.\n Regarding cleanliness: I contend that Tony's operates on the \"European Standard\". So ,if you've ever been, you know. If your home has anti-bacterial soap pumps at every sink, you carry antiseptic wipes in your purse or on your person at all times, and you fixate on the illusion of a 100% microbe-free world, you may want to \"pass\" on visiting Tony's. I'd assume then, that you would also avoid any contact with street vendors and food stalls in places like Mexico, Madrid, Bangkok, Hong Kong, et al? Yeah, we're all free to set limits on our individual tolerances, but at what cost to the fullest enjoyment of all that our one, single, lifetime has to offer? Scorpions on a stick, anyone? Perhaps a chilled brewski for starters. Do you do calamari, or not?\n If you're of the more adventurous sort, at least poke your nose into Tony's for the cultural experience. I consider this place a bona-fide living history museum, with a least three generations of family in evidence, and at your service. Want the lights on in the grocery? Ask. Have a question about ANYTHING? Ditto.\n Also, take time to see the mementos, memorabilia, kitsch, and exotic products liberally displayed on,behind ,and above the counter and entry. Yeah, there IS dust, but for me that doesn't diminish the faded, festive charm in the least. Nor does it alter the palpable sense of eras past, and present, that this place evokes in me. See the vintage ('50's?) black and white photo of Elvis w/some past friend or relation. Or, more currently, the color shot of, and shout out from, the entire Orangewood Cheer Squad of '09.\n I admit that not everything at Tony's is superfine, or to everyone's particular taste. I don't especially care for the coarse grind of their sausage, for example, but the sliced meats and cheeses are very good, and well priced. I WOULD recommend checking expire dates on groceries, since the turnover on these items is unknown. I've found outdated items at AJ's, Fry's, and almost everywhere else. It happens.\n If you're up for a purchase, let you senses (and common sense) be your guide. I \"second\" the votes for the subs, and the standard size, traditional cannoli @$2.15 is a bargain. (compared to $7 at Aiello's restaurant on Central, which I haven't tried.)\n Another bargain here is the bulk olives. While I'm not a big fan of green or kalamata types by themselves, a good tapenade is always welcome. With jumbo plain greens @$3.50lb., and Greeks priced at the upper end of $5.49lb., you can pay $11 and up for the same thing elsewhere. Let the Snoot in you decide.\n\n To wrap, YOU NEED TO KNOW about their SICILIAN olives.\nThey're black. They're ripe. They're wrinkled, and dry-cured, and shiny. They're salty,(very) not sour. They're earthy, deeply rich, and complex. They're meaty, satisfying, and delicious. They're addicting. They're sprinkled with fennel seed, red pepper flakes, and (on a good day) bits of fresh garlic. They conjure Mediterranean breezes, raven-haired maidens in aprons, and hillsides with goats. They're seaspray and sunshine; they're sublime. And they're $4.49. Match with a favorite wine, a crusty loaf, a chunk of cheese, and you're home.. Where the heart is... OR, you can eat them like candy. Try at least ONE in your lifetime.\n Sadly, Tony's skips the minced garlic more often than not. If your purchase comes without, I strongly encourage you to add your own at home. Makes a world of difference.", "type": "review", "business_id": "unPzS1QJJctlZyLGFSk_HA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "NaDqSm0gT9Hdz1ZvkBeEhA", "stars": 4, "date": "2012-03-28", "text": "Everything I have tried here is great. Prices are very reasonable. Few things are over $9 and many are about $6.\n\n Love the shrimp fried rice with a very fair amount of medium size shrimp.\n\nAppreciate that they deliver and our fast for only a $1 fee. They have a wide delivery area also so at home or work I can order. \n\nI highly recommend you try their food. They say it's New York Style. I just know its darn good! Every month I order from them a couple of times.", "type": "review", "business_id": "HibY2EcXQhd4_JK_E_RX-Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "BTYAjZDmI4rUq4WChEoZtQ", "stars": 5, "date": "2011-10-28", "text": "Why would I go to a restaurant and hope for the worst? Because I'm a snob and as a snob I was convinced that The Capital Grille would fall short of my extremely high expectations. Not so.\n\nBread basket: Outstanding onion bread, a pumpernickel/golden raisin bread, and some crisp cracker bread. Nice all around.\n\nExtensive wines by the bottle with some great values to be had. I did not check by the glass. Our wine was decanted artfully at our table and the staff had a ready knowledge of the vineyard and year we had selected.\n\nHusband had:\n\nOysters - Blue point tonight, small this time of year so no big surprise there, well prepared and delicious.\n\nLamb chop - Perfectly flavored and cooked, Frenched, the definition of how to prepare and cook a lamb chop perfectly.\n\nPotato Au Gratin - Typical steakhouse Au gratin. Excellent flavor, huge portion, guaranteed to please a crowd (or anyone that loves a delicious cheesy crusted potato).\n\nI had:\n\nProsciutto Wrapped Mozzarella - You can't imagine how good this is....a lovely thin slice of prosciutto cooked to crisp perfection wrapped around a fresh piece of mozzarella cheese, with just the right amount of melt but not escaping the prosciutto shell. A parmesan toast and tomato salad round this out. You might as well as shaved gold on the side.\n\nSliced filet - I'm not going to go into detail, just know that the answer is YES! (Is it fantastic? Is it cooked to perfection? Is the flavor wonderful? Is it a great cut?)\n\nAsparagus with Hollendaise - Awesome stuff. Nice to have a great hollendaise that I didn't have to prepare.\n\nService - Our server was so outstanding I'm going to contact the manager at this location.\n\nAtmosphere - We had a corner table that gave us great privacy. We could not hear our neighbors.", "type": "review", "business_id": "wqIB7hUTQnCswJV4UyYyEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "dqXrfceufjtje1I7mzyJ-A", "review_id": "k0lIXbUZSGD9ra8RAnwarQ", "stars": 1, "date": "2010-10-24", "text": "Brought a group to Metro for brunch, made the reservation a month ago, called three days ago to update and ask to be outside and people arrived and were told there was no reservation. Finally spoke with the manager and had that sorted out but when I asked for our tables outside and they couldn't accommodate. \n\nHaving the bartender wait on a party of 18 was idiotic. Not enough menus, slow, horrible drinks, no silverware, soup was burnt-how do you burn soup??? Attempting to fix the situation with beignets was a nice attempt until we heard the server swearing about having to deal with us. \n\nI host events all over the valley and never have I experienced service as horrible as I did at Metro. \n\nThey have recently changed management, unfortunately the great reviews I read when I made the reservation don't hold true anymore.\n\nUpdate 11/8/2010\nSince my first review I received a $50 gift certificate from the management of Metro. I decided to go for dessert last Friday night with 5 of my friends. I knew I couldn't just go with one other person, it had to be a group to show what they could do. \n\nWe arrived at 9:15 and were seated on the patio. I met the general manager and she was pleasant enough, I never saw her again. There was no one seated inside and the patio was half full.\n\nJesse greeted us and was the most attentive and understanding server when two guests needed to return their drinks to the bar because they were not made properly - it was a specialty drink from their cocktail menu.\n\nWe ordered beignets, apple bread pudding and triple chocolate delight. The beignets and apple bread pudding were good. The triple chocolate delight had absolutely no chocolate flavor at all.\n\nJesse was by far an excellent server and if you go ask to be seated in his section.", "type": "review", "business_id": "3ez4Qs56C_cC-l8x08l6Zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kpdpcrEauxA2bhg-f05W-w", "review_id": "oohcn8iuB17wCskadHA0bg", "stars": 4, "date": "2010-06-04", "text": "Eorth a trip for pasta or their salads. Both are wonderful. And if you like garlic they know what you mean when you say xtra garlic. They actually give you extra. Yummm. Of course you will probably not be kissing anyone that night.", "type": "review", "business_id": "zwToyWL4dT1clsFPK9wI2w"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "9Ij9o-nfCZR3Y2XE5GpqMA", "review_id": "xB5gx3cCAUBh9-c4oIH9tw", "stars": 1, "date": "2010-06-04", "text": "4 stars for the place itself and it's food/coffee.\n0 stars for the service, or lack there of. My business partner and I were in town for a convention. We heard we should check out Lola. So we did. We were excited. The lady (I use the term loosely here) who took our order was LESS than patient OR helpful. We asked a few questions. She barely answered us, then when we had to repeat the question she was nothing short of annoyed. An example. We asked where we could get a glass or cup of water. She mumbled something about the bar/table. My partner walked over and saw no cups. She came back and asked where the cups were. On the table came an exasperated retort. I walked over to inspect for myself. There were no cups on the table. So I kindly asked her if the cups should be on the table, if so there appeared to be none. She said they are on the table, but *sigh* I'll go check, but I know they're there! 10 seconds later she comes out of the kitchen with a tube of cups. IMAGINE THAT the customer was right. I watched this lady serve other customers. It appears that regulars are treated with a smile and courtesy and patience. Newcomers or people she doesn't like are treated worse than the dirt on the bottom of her shoes.\n\nMy suggestion to management, adjust her attitude or get rid of her! She is not good for business.", "type": "review", "business_id": "MMLEhoPYQif2PEIVxAfIKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0nCNOQv4VV2qYcqVno5ZrA", "review_id": "90LHmUuCjw_T_xLgUJ0zuw", "stars": 5, "date": "2011-02-20", "text": "Came here with a bunch of the crew from work during lunch, and wow! This hidden gem on the corner of Indian School & 48th Street is a must visit if you're in the Arcadia area. The food here is amazing, and there's such a wide variety including delicious tater tots (even sweet potato tater tots) and the mouth watering reuben that I had chosen. You get a good sized portion as well. Thank goodness for take-home boxes! \n\nThe restaurant is very spacious, and the staff is really friendly & laid back but get you seated and eating your food in no time. It gets better; the price of the food is VERY reasonable, in fact, I'm kind of shocked how inexpensive they are. A well deserved five stars!", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "d_YvNfvkpeI0fj2f0FJfng", "review_id": "N4U69xLF4wr-AAb5v421tg", "stars": 5, "date": "2012-03-09", "text": "First time eating Chicken and waffles and it was the best time ever.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MugvKza25c3fvNkI49B8IQ", "review_id": "C6Fi3HEJ1mhSmq9nPdqthA", "stars": 1, "date": "2011-12-11", "text": "I never knew green chilies were more valuable than gold. We ordered a dozen red tamales and a dozen green chilies. The person taking our order was not happy that we did not give them a 24 hour notice that their \"gourmet tamales\" require for such a large order. The red tamales were as dry as sawdust and the green chilies came with one small sliver of chili. The \"hot Sauce\" they have is nothing more than enchilada sauce with red chili flake added. Next time I'll just go to Del Taco where two dozen .40 cent tacos do not require a 24 hr notice from a family of 6.", "type": "review", "business_id": "xHe6WBPFINEHUIeq_5yEHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "50hJDFfg13-UOMHYDVpPCQ", "review_id": "9uhG2eW40yZ1tljcrpJHcw", "stars": 5, "date": "2012-07-22", "text": "I went to cowboy ciao for my birthday and was very pleased with it! My family typically likes to get a bunch of stuff and share so we started with a chopped salad, the shrimp appetizer and the mushroom appetizer. The shrimp were cooked perfectly and the mushrooms were really flavorful and delicious, however, the chopped salad was the star of the night! It was so good I ended up ordering another one because the first one was devoured so fast. I typically don't think of salads as memorable dishes but this is by far the best salad I have ever had and I would come back just for the chopped salad. To finish it all off, the server brought me a huge piece of delicious chocolate cake on a plate that said happy birthday which was a nice touch! I would definitely recommend this restaurant - great atmosphere and even better food!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Dc_Fvh982Tzm-mcCpheYkQ", "review_id": "PTYePGzYby-DZE3rlI_z3A", "stars": 4, "date": "2012-08-07", "text": "Great pizza We have enjoyed this place for quite a few years. Ingredients are above average. Love the fresh garlic topping\n\nTough to beat for quality pizza on the East side", "type": "review", "business_id": "h_764eIV-D3n7qjyBmluug"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "AXqt75N9cWVAxIRHsl6VAw", "review_id": "Kk4mkc2v9BDmyPFXn5FEVg", "stars": 4, "date": "2008-06-25", "text": "Very good noodle shop. I got referred here on my second day in town by the folks at Fujiya. They were right. I went for lunch and I almost could have missed it, tucked away in a little corner in a shopping plaza. But the outside appearance belied the cute interior. \n\nI am waiting for it to get cold out (or even mildly less than scorching) so I can go in for some Ramen!! Real Ramen - nothing like it. This trip I had Tempura and some cold noodles. - Good stuff.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M8DaT0zmcumO5gfdrf0KEQ", "review_id": "4jI2mKO_ZoJ0YLCri-vpRw", "stars": 5, "date": "2010-12-20", "text": "Love it here. Come regularly now lol thanks to everyone on yelp. Great food cheap price great service. Tho not 100 percent authentic Chinese food still great", "type": "review", "business_id": "m9Wqqma30o-hH2fAX7dnug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zSJLMv2mv2REr3NdQFo4qg", "review_id": "RNsf1_eBWf8ajZuRYMbKaQ", "stars": 5, "date": "2011-12-14", "text": "Absolutely beautiful grounds. Golf course, restaurants, shops, botanical gardens, tennis courts...it's all beautiful. Definitely book a room here as opposed to the main section of the hotel - I'm not exactly sure what the difference is, but it IS a different (and smaller) building.\n\nOur room itself was nice, but the view was what made it amazing. From the balcony, you can see the golf course, the mountain, desert views, cactus...everything. And the service was great.\n\nThe only complaint is that when I booked my stay, I was told that each guest would be assigned an \"Ambassador\" who would help ensure a great stay, or whatever. But throughout my weekend, this supposed Ambassador was never mentioned and didn't show up. Not a big deal, but if you're going to promise that service, then you better deliver.\n\nOtherwise, great stay. I would highly recommend this hotel. Great for a relaxing weekend.", "type": "review", "business_id": "pHb4JeWPn8GbyyRjkQ2r2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B1C6MjG2KzUtb7IqzjBj4Q", "review_id": "uZIq5oNCVw1qEB89w6BTeQ", "stars": 2, "date": "2011-03-04", "text": "Ate here at lunch today for the first time. \"eh\" is all I can say. I came in around 12:45 and even though no one was behind me in line the twerp at the counter made me feel very rushed. \n\nI ordered a Turkey Tom. This was basically a big white dried out sandwich roll with a couple of slices of turkey, a butt-load of shredded lettuce, a couple of sliced tomatoes and some mayo (I requested no sprouts which are normally also included). What is supposed to be gourmet about that? The sprouts? \n\nI also grabbed a chocolate chunk cookie. Not even worth eating the whole cookie. Really. \n\nI see no reason to return and don't understand how they can call themselves gourmet...", "type": "review", "business_id": "hVKTsUaaJkOKR9v5BY04_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LGyZobV9tV2Wg8_WCoWF2g", "review_id": "T9eHKGC5NXVq9eW1eZqStA", "stars": 3, "date": "2012-08-14", "text": "This place is nowhere near where yelp says it is. It is at Chandler and Ray road not in the industrial area.", "type": "review", "business_id": "ch10Snl3LVdj75lYbpLkpg"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "55GXsFLH4QYnTQqiijBtxA", "review_id": "BhaoeVeK9qSOUz4OscUQnw", "stars": 5, "date": "2012-09-29", "text": "What a beautiful facility. Attention to detail is what this place is about and the army of workers each takes his / her portion of the details and does a mighty fine job. If you want a high end place to stay. This is a good choice. When I made my hotwire reservation and ended up here, I got the deal of the century! I am sure the rack rate is high, but if you want comfort and great facility. this would be a wonderful choice! \nOh yes, Everyone and I mean everyone was soooo nice. The gardeners, the cleaning staff, the front desk, the parking attendant, all of them were super nice and fun and genuinely happy to be of service..", "type": "review", "business_id": "ZRrIwqIUMII1b2keMI8QRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MyvkUNl149hR2rKog38mYg", "review_id": "M6qlA5PM6HlfPUWgiGOOpA", "stars": 5, "date": "2012-05-25", "text": "I moved to AZ about five months ago and have had two tragically bad haircuts from two other \"salons.\" \n\nI wear my hair in a short pixie cut and it's very hard to find someone with the skills to do it right so I don't end up with a mans cut.\n\nI found Epic Salon here on Yelp and decided to give it a try.\n\nI could not be more pleased. My appointment yesterday was with Chey and she's wonderful. \n\nI am very exacting when it comes to how I like my hair cut and am fluent in industry terms so I can articulate what I want.\n\nChey listened very well and understood what I wanted. She totally delivered. \n\nI am so very relieved to have found her. And at $26 (cut only, no blow out) it's a real deal.", "type": "review", "business_id": "YmhskhHArN4CHTG49kC_hQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "mqyH3CqjMufsm5FccDrjLA", "review_id": "cg0HnTTmqOg_9n5pn4zESg", "stars": 5, "date": "2011-03-23", "text": "I do love rum and should review the Rum Bar separately but both the Rum Bar and the Breadfruit restaurant are equally awesome! \n\nGreat recommendations from the waiter... Brown Stew Chicken and Jerk Chicken are really good... really spicy on the jerk chicken but thats somewhat expected and perfect for me! I'll take my plantains baked over fried any day! SO GOOD! Really great place to go for not so typical food! \n\nThe entire place is quite small in a perfect intimate way. Their seems to be a lot of pride in the menu, environment and service, which is rare to see in restaurant employees. Not to mention a perfect location ... very walkable to other nearby bars and easy to make a whole night of downtown phoenix!", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "eatsTYGR2CNM-Huxgm_TVw", "review_id": "q1PmxUNt8-kq5cOJXu-htw", "stars": 4, "date": "2011-09-29", "text": "PCG is an excellent place to relax for brunch. You will find courteous staff, excellent table service, and good food. The environment was very laid back and relaxing. Definitely worth checking out if your in the area.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "weYT-xJwz8o7mLNWIhD6HA", "review_id": "TVH6G9H8r9t2FMGUeBFzfw", "stars": 4, "date": "2011-01-27", "text": "The pho is delicious, and the prices are fantastic. Definitely a hole in the wall and very authentic (not much English spoken here). Down side is that they don't serve beer (wha?! who doesn't drink beer with their pho?!) but otherwise 2 enthusiastic thumbs up. Will come here whenever we're on this side of town.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "84Lr632EZeyIyIUnW3t2Gw", "review_id": "Y9YBqNDT8rWequv2okF8xA", "stars": 4, "date": "2012-08-02", "text": "Service, awesome. Food, spectacular. Price, unbeatable. \n\nI can't tell you how many times this restaurant has saved my life. Richard is very understanding when I come in completely hung over, and knows to put extra kimchi in my side dishes. \n\nAlso, in terms of the local \"$20 all you can eat\" sushi specials, this is the only place that ever pops into my head as a place I need to go. Their sushi chef if spectacular and super friendly so it's always a nice time sitting at the bar.\n\nThey have a special lunch menu that is served only during the week, so you can expect the dinner menu on Saturday and Sunday regardless of the time you go. Both menus are amazing, it's just that the menus are slightly different in their options so if you have a specific craving (and I often do) you might have to concede to something different once you get there. It's mildly annoying, but the food never disappoints so I let it go.\n\nTry it, you wont be disappointed.", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_Pcu--HeFV94yAgHHdBQbQ", "review_id": "bmcw2DQr1G60CzDzdCuMQw", "stars": 1, "date": "2012-08-21", "text": "Worst store in the chain - I agree with one poster that it's not crowded but it also is out of items more than any other store. It also is so understaffed it's impossible to get help if you need it and if you ask someone that works here that you finally locate, my experience is that they wont know what your asking for anyway. I recently was in the store asking about a certain item by Susan Lenart Kazmer, the person looked right at me and said oh we don't carry that artist you might try hobby lobby they get a little credit for trying to help but Susan's line is a Michaels only item. I gave the woman the line name and said no we don't carry that I'm sure. I pointed at the huge display in front of me of Susan items and her answer, Oh that must be brand new. I said nope it came out three years ago now can you see if you have this specific item she said oh we can't do that and she walked off talking to her friend the only other employee in the store that i had seen. Ok bad but any store can have a bad employee right. so I go up to pay, a pleasant young girl asks me if I have a Michael's card? I say sure do and hand it to her. Oh that's not a Michaels card ours are red. I explain that it's a gold card for people who spend more money and that as a professional artist I'm there quite a bit. She says I've never heard of that before. Well it's a Michaels card just read the front it says Michaels right there. she stands looking at me so I said try scanning it I promise it will work. She scans it and then says oh it says you have a $5 off coupon loaded on this card. My response; good you get a five dollar coupon for every 100 you spend. Now she looks scared and says the dreaded words I'm not sure, let me call the manager. So 20 minutes go by and who shows up the lady that argued about the Susan Lenart items. They finally agree to try it and I'm finally out the door just 40 minutes later. And that's not even the bad part! I went into this store to have something framed that was three weeks ago they tell me every day it will be the next day all to no avail they use every excuse imaginable custom frames take time, or custom mat colors are hard to get. Each time I explain it's a off the shelf frame there only cutting a black mat. they say oh that should be fast will have it tomorrow. \n\nI wouldn't shop here again if it was all free this store is a joke just keep driving and go to the large store at Power and McKellip's it's a much larger store with competent staff and about twice the selection. It's well worth the drive and the cost of gas I live less than two miles from the gateway store and can still drive make my purchases and drive home much faster than trying to shop at the local gateway store. They have even framed two other items while I'm still waiting for the Gateway store to cut a simple mat.", "type": "review", "business_id": "oASUHHGDyzwrR32ajtvrQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4hR-tE1PYvp7Go5a8s8pmw", "review_id": "af5tCk0SFwj--Evz7cqI5Q", "stars": 5, "date": "2012-05-30", "text": "This is a small location but still packed with everything I need. They did start stalking more womens vitamins I liked without iron because they were always out when I went in. So I thank them for that!\n\nStaff are always nice and for the most part an answer all of my questions. They take an added effort to get to know their customers. They always ask about my son when I go in and this keeps me coming back because I feel valued as a person not just a customer.", "type": "review", "business_id": "QoTOOE-gVN4ELZU373qZxQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QhuESGhOQWnKqwlSrISm8A", "review_id": "5C8CfLgnDSNt8C3DWnVVpg", "stars": 4, "date": "2009-07-07", "text": "So there name on Yelp is a bit behind the times as they are now Monte Vista $2.25 Cleaners.. Still, at $2.25, I find them to be the best place in the area. You can't beat the price, and no matter what I drop off, shirts or pants to be laundered or dry cleaned, I always know it will be $2.25. I hate places where some shirts are $1.50 and some are $4 but you don't know until you get the bill.\n\nSame day service is available for dry cleaning which comes in handy if you are like me and wait until you are out of clothes before you drop things off..", "type": "review", "business_id": "FJdF6wu7TSMIyWtcPxeYYA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "G_6pOq1gA4jyJ3j8mjOyJw", "review_id": "pjb_G4idITKS9SXbs6f2nA", "stars": 1, "date": "2010-01-16", "text": "Bleh.\n\nMost of us have ventured to the rock at some point in time. It has always been quite awful, but I had some hope after new ownership took over and renovated the place. It is always sad to see a place that has potential, be complete crap.\n\nUpon walking in we were greeted by a small room used as a bar area, with random bar tables along the side. And whales. And scary looking people. And a DJ...well...kinda...he was playing music from a computer..you know...like you would so at home.\n\nWe ordered two beers and sat down. Why not give it a chance, right? Just when we thought that things couldn't get worse, we heard a sound. Like a squealing sound. Yes, you guess right, horrible karaoke ON A FRIDAY NIGHT!?!?! Why God, why?????\n\nWe chugged our beers and left.", "type": "review", "business_id": "AuMz7XGkjLcIUurp_AD51w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l9pvUVw8DShTeS_U92lj5Q", "review_id": "J-zsJ12d9cxiQQOmCUmsug", "stars": 4, "date": "2012-08-19", "text": "\u00a1CASH ONLY! But so worth it.\n\nI have been a regular at this place for the past 10 years. I am Mexican and for me this is the most authentic \"Cenadur\u00eda\" in Phoenix. \n\nThe food is authentic. They use the white Mexican cheese is used in Mexico. In Mexico cheddar cheese is not used on top of tacos or tostadas. Prices are very affordable. The ladies that take your order at the front desk had been there for at least 10 years and are very kind. \n\nRestrooms are always clean and this is so important to me. If a restaurant does not have the time to maintain its restrooms clean then I can not trust them in the food being clean.\n\nThe cons......BRING CASH! no credit cards are accepted. Also, they do not have the best control over flies. I always have a fly somewhere around my table. I think it has to be with no AC. They have some kind of cooler and fans. And they can have the Tv and the jukebox playing at the same time which is annoying. \n\nThe good news is that you can always take the food out.\n\n\u00a1Excellent food!", "type": "review", "business_id": "1nsxori657cAx2hiyYb4rA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XUO21xP47b5m3PMq5a13sg", "review_id": "Nz_S_NO5WJoEeZhBQunNYA", "stars": 5, "date": "2011-12-05", "text": "From the moment I walked into the lobby the staff displayed a level of professionalism that you don't get to see everyday. Each staff member that I came into contact with gave me a handshake and said, \"Welcome to our business\". I don't normally enjoy going to the dentist, but this has been the complete opposite. They made me feel very comfortable and confident that I was going to be happy with my experience, and I was! So I set up an appointment for my 9 year old son on the way out. Since then we have both been in to have work done. My son need one filling and he took it very well, then trotted off to school like nothing ever happened. I started with a deep cleaning from Bobbie Lynn Tucker , RDH. She was very nice and personable, did a wonderful job cleaning my teeth, not to mention gentle. I was never in any pain either during or after the procedure. My following visit was with Dr. Brittian, DDS. I needed a few fillings and I am very pleased with his work. Again gentle and quick. My teeth look beautiful and feel wonderful. They were great with explaining all the costs and have cool perks like a Rewards Program. I also liked the glass back wall that gives the patient a private calm view of the outdoors. The flat screens are cool too, but my only complaint is that when I asked quite seriously if they could change the channel, ( I dislike sport shows a lot) they were not going to budge. That might be something they want to work out. Other than that I really would recommend them to everyone.", "type": "review", "business_id": "SNyxwFx8i20SoDlN4dBS4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GGx560YuuFyrRo7X_-d-Vw", "review_id": "yQDMV26SXXrZedbbU-3aYA", "stars": 5, "date": "2012-05-20", "text": "I've been to this Pita Jungle a few times, about 3-4 and ordered carry-out once. Every single time my experience was great. Great service, great food, and great atmosphere. I've ate at the patio once during a rare cold winter night, and the waiter, without us even asking, put a heater right next to us. It was really nice and kept us warm while we ate our food. At times it gets busy, but the wait has never been too long and annoying. This place is great, and compared to other Pita Jungle's I've been to (the one on Shea, Tempe, and Downtown Phoenix) this Pita Jungle has to be the best. The ambiance is nice, and the decor is very welcoming. A big open room for the dinning space works well.", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "vHoKL-4FCgGSfDrPr43Opw", "review_id": "-n0iGtgawNw0lKzb2K1Mvw", "stars": 4, "date": "2012-03-10", "text": "I love shopping here! For the most part, the produce is wonderful and fresh. My only complaint in that area is the berries...sometimes they can be a bit moldy, but the last few times a fresh batch of strawberries or blueberries has been brought in, they've been wonderful. We love buying our meat here, especially the chicken sausages and tenders (when they are on sale). We also get our lunch meat here as it is much better than the stuff in a container, and cheaper than the stuff at the deli counter at a regular store. Oh, and the bulk section is amazing!", "type": "review", "business_id": "hHE4OHAc8dONTV8QsGLbWg"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "WWxCMDn8rVHIrIFoKRcRDg", "review_id": "QY5Iw88L2iPPk0g8a9hrOA", "stars": 3, "date": "2010-08-16", "text": "I like the lunch better than the breakfast at \"First Watch\", which is a bit ironic I suppose. Perhaps it should be named Second Watch?\n\nBut on to what I do like...\nThe \"Not Guilty Your Honor\" veggie wrap is good. It comes with a side of hummus, fruit and potatoes. Big meal!\nThe \"Burrito Vera Cruz\" breakfast burrito was pretty good. The Vera Cruz sauce is a mixture of salsa and hollandaise. I've never had it before trying it here and it was actually pretty tasty!\nMango iced tea is good! And they'll give you some to go if you ask!\n\nSomethin about the potatoes just doesn't cut it for me though... And as I mentioned earlier, the breakfast just isn't my favorite. I just don't dig their omelets much.\n\nSign up for their email club to get a buy 1 get 1 free meal coupon.\n\nNote: If you're vegan, order the veggie wrap and substitute avocado for the feta cheese. Get a side of salsa too.", "type": "review", "business_id": "E_wJCQ9L_0w5tJyrvr0lJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HEag_QERXNbyGmNgA6no2Q", "review_id": "Mu1ABCZw2nwohRLYJTXRbQ", "stars": 4, "date": "2010-05-10", "text": "it's tiny and awesome!", "type": "review", "business_id": "dks3rZEbVZlH-IZhnlcbug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "izQhXnfoP2vPeBtZ2rLU7Q", "review_id": "nnBjnMCS941dRw3h-GfWtQ", "stars": 5, "date": "2011-12-07", "text": "Picazzo's is a freaking miracle for gluten \"allergies\"! \n\nAlmost everything there is gluten free, and you can get something besides gluten free pizza. I highly recommend going during happy hour and just eating the starters - meatball sliders are awesome!\n\nPizza is very good as well. More reasonably priced than a lot of the chain places that get their (really friggin' expensive) dough from somewhere else. \n\nPeople with celiacs: rejoice. Picazzo's is legendary.", "type": "review", "business_id": "3jqOv6re-xPYOg7srmi7tg"} +{"votes": {"funny": 2, "useful": 5, "cool": 2}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "5Tnd97z4fKvfvAeYUns4Aw", "stars": 3, "date": "2009-04-18", "text": "I don't get the hype, but then again I am not a regular. \n\nThe beer selection is top notch, the sandwiches are worth the prices, the cheesecake really shouldn't be drowned in chocolate syrup but who cares, it really is a nice people watch place. I appreciate the well composed menu and not much more can be said. It has reliable service and sandwiches, hipsters and good beer. The lack of surprises make it a good place to take out of towners to see downtown and introduce people to First Fridays if you wanna brave potential waits, noise levels, and lack of parking on busy nights.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 4, "useful": 11, "cool": 5}, "user_id": "uc04YCxFi1ZUj5N9mfiUyQ", "review_id": "b69TnmaTCkD69MjlcAVlBA", "stars": 5, "date": "2009-07-08", "text": "Yes, she did go to another...it's a hobby what can I say.\n\nBy far, this is the LARGEST club I've been in! But my list of places to visit is still very long, so there may be bigger. I liked it here, the girls and managers, and this is important to me, were chill and nice. Some variation in looks for the girls but not much, but then again, maybe there is more to select from at night. I'm a day club visitor, because I hate to pay cover and other unnecessary costs. This place has a nice size bar, and a freaking huge main stage, with three, yes count them, three two-story tall poles (And some of the girls climb all the way to the top!). And it doesn't end there, there was a more private but large room toward the back with another stage and tall pole. There's an upstairs to this place too! I like to wander, I have a curious sense of adventure. I found multiple smaller private rooms up there, along with small mirrored rooms with single chairs. You know for that kind of one-on-one that no ones all up in your business about kind of room, just you and the dancer...Then there is the balcony that wraps around the upper floor, plenty of seating, with DJ in the center, spinning whatever the ladies on stage ask for (this is rare, some DJ's will tell you to take a flying leap if you demand a song, so I've been told...). This place is lit well too, not enough to make you run out screaming of blindness, but good enough to see. \n\nMay I add that this is the first time I didn't have to go through a dressing room full of half-naked women to get to the restroom, it was separate and had more than one toilet in it, yes, amazing I know! I've been won over, lets see the other places on my list top this!", "type": "review", "business_id": "qmwBQIX6QNx1OG4yxwBrFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5RxpP2Woo7CpOGUmKgDyAw", "review_id": "OIu74PtGlNOyO0rrpEVaaA", "stars": 5, "date": "2009-07-09", "text": "Absolutely adorable!\n\nThis place made our 5 (yep you heard it here...5) hour wait much more enjoyable. I think it we had to sit in the same building as the pizzas were being made and had to smell the delicious aroma of others pizzas for 5 hours, I may have gone nuts. Bar Bianco was relaxed and had everything anyone could ask for while waiting for your meal. We loved the Arizona wine and enjoyed a tasty plate of cheese and meat while lounging in the cozy chairs in the corner. \n\nNot only is this bar a great 'waiting room' before Pizzeria Bianco, but I would consider coming here just to relax and have a drink.\n\nCheers!", "type": "review", "business_id": "JR95uaM82xBUIZ-kQ785iA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T8zKK2NesKBqxQOGghmsHw", "review_id": "s-jh1Sht7J55XVd4R3Exbw", "stars": 4, "date": "2012-08-12", "text": "My boyfriend and I decided to drive around Scottsdale and find a place for dinner on a Saturday night. Our initial impression of the place was that it was going to be too rich for our blood; however, we figured we would give it a shot. The decor reminded my boyfriend of nightclub scene from Scarface. \n\nWhen they sat us down initially we were right next to the kitchen which wasn't too pleasant. So we asked to be moved to another location and the hostess moved us into their private dinning room which we loved. \n\nOur server was very friendly and informative, yet also gave us space. We ordered crab cakes to start things off. They were excellent but slightly over priced given the portion size. Then we ordered a bottle of wine that was very reasonably priced and to our liking for $24 - a nice Argentinian Malbec. We decided on this bottle after our server brought us several other tastes. I ordered the soup of the day and my boyfriend got a caesar salad. Both were solid. For entrees I got a salmon with asparagus and my boyfriend ordered seared ahi tuna. Both were cooked to perfection.\n\nOverall, being in the private dining room was perfect, noise level wise, and all of the staff made sure everything was up to par without being too over zealous. I would highly recommend this place.", "type": "review", "business_id": "5o5MLNPmAeakGgdqeGyMvw"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "ZZ5hV2jcxchiZo6C9AXq_Q", "review_id": "j2Mq8fV0FUG4Lj0ND01kXQ", "stars": 4, "date": "2009-12-29", "text": "being new to the area, i'm really on a quest to nail down my basic food groups: thai, persian, and mexican. mexican i've got down i think, but the other two i've kind of been baffled by. luckily i have my very own personal tour guide who invited me to lunch at yupha's one day. \n\nthe place is pretty cute but can get pretty crowded when in the full swing of lunch. the tables are kind of close together, so be sure you arent carrying a big purse or anything otherwise you'll be whacking people in the head with it.\n\ni had the pad thai for lunch. HUGE lunch portions. i could barely finish a third of it and i had a ton to take home for dinner. also if you arent into spicy, i'd definitely go mild. medium spicy is pretty groovin, but i dont think it would work out well for someone who only wants a little spice. yupha's also has an interesting salad bar/soup thing that comes with some of the lunches. check out the salad with the peanut dressing. mmmmmm peanut dressing. i loves it. \n\nservice is fast and friendly. take your check up to the front if you want to get out of here quickly. i think yupha's is going to be my work lunch thai place :). garlic beef here i come!", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4ijNZcDq3jiXF10K9lDRZg", "review_id": "IyDWAs6SXTDSrqN8dfQjFw", "stars": 3, "date": "2012-06-05", "text": "ordered the steak sandwich (medium rare). Came out cooked medium. Still very delicious. French fries were not good, way too salty. Server seemed as though he did not want to be there, with a grouchy attitude.", "type": "review", "business_id": "QzXFdjIbFRGhzL83goPPLA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "p2HAjzANC80wzLAZzZEL0g", "stars": 2, "date": "2007-08-19", "text": "I spent most of my first year being legal drinking age at this wild, college bar. It was fun then, but I got older, it wore on me. It's a big ASU bar and there's no escaping the drunk college kids. The guys can usually be found on the patio barking lame pick up lines at the female passerbys and the ladies are usually grinding it up on the small dance floor on the weekend nights.\n\nWith the summer heat, Fat Tuesdays frozen drinks are appreciated. But if you don't want to drink them with the college crowd, hit the bar during the day or early evenings.", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QT6vEIHFbwEZpYEugIzjsA", "review_id": "hlSiq0C-Z678vaaQvDxsbg", "stars": 5, "date": "2011-06-10", "text": "I think I may be addicted to this place. This location is a bit out of my way, but after a terrible experience at the Superstition Springs Buffalo Wild Wings this became my go-to place. All of the servers are incredibly nice and efficient, and my order always comes exactly as I ordered. I've been here twice during the 2011 Stanley Cup finals and was happy that they had the sound on loud enough in the bar, but not too loud that you had to shout to the other people at the table. The food is consistently perfect, the atmosphere is great, and all of the employees I have encountered are friendly. The drink specials aren't too bad either. You can't go wrong!", "type": "review", "business_id": "trG1k-K6Nq4YKcexa1AGOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OW_Eh1DsEnlTWALBC1xCHw", "review_id": "8f50f66_-ce3WZx_5rSLRg", "stars": 3, "date": "2012-04-02", "text": "This was the first Mexican restaurant my boyfriend and I had eaten at when we moved to Arizona. We had good hopes since we were in the West now. Not the case- there is a few good and a few bad:\n\nGOOD: It is a great location, in the heart of Old Town Scottsdale. Walking distance from our house !! The patio is the reason we selected this place; not too loud, secluded and enough space between tables .\n The food is also pretty good. Chips are awesome and so is the salsa ( I always judge the Mexican restaurants I go to by their salsa )\n\nBAD: the first time we went the service was just okay. But we just figured it was because we came on a Friday during lunch. But we have gone back to this place 3 other times and the service keeps getting worse and worse . I asked for water 3 times and never got it. My chips are never refiled and it takes FOREVER to get a beer and the bar is right there. I think I watched my beer sit at the bar counter for 20 mins. and of course it was warm when i go it since it was just sitting in the sun. I should have gotten it myself. \n\nWe will probably drive a little farther to get better service.", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RbCRHWZotVygDGy1wF6wHA", "review_id": "Nx65SPuCryK2JujzG55Q2A", "stars": 3, "date": "2012-01-15", "text": "The Service is great. The food is ok. The salsa.....horrible. Please rethink your salsa. Oh, and if you order a side of jalapenos they charge $1.99. I have never heard of a Mexican restaurant charging for jalapenos. Overall, just an ok place. There are better options on and around Mill.", "type": "review", "business_id": "FG_GRMLSj68ximzfrr9eWw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "iUW-BlT3Nyn96HX3uEJxNA", "stars": 5, "date": "2009-01-29", "text": "AZ 88 is a great date location. The atmosphere is excellent - always an artistic display, usually great music. If my parents ever make it out here from Wisconsin, I'm definitely taking them to AZ 88. The view of the Scottsdale mall is really cool, and the proximity to a number of the \"old\" Old Town bars is really convenient. The food is reasonably priced, with most sandwiches and dishes right around $10. They have a good sized bar selection, with some really interesting imported beers. I would absolutely recommend the AZ 88 sandwich if you enjoy buffalo sauce, and it's really hard for me to not order the little crackers with onions and bacon on them (even despite disliking bacon!).", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "TNUX-baP2gvFDajjErgsFw", "review_id": "GNshNppl3wrLiRYXQWfSJQ", "stars": 4, "date": "2010-10-16", "text": "I couldn't find anything to add to the previous review except I have never had a bad experience here no matter who did my nails. They are reasonably priced, friendly and one of the few nail salons I have been to that seem genuinely interested in the customer returning. The owners are friendly and the selection of acrylic colors offered is excellent. If your a magazine reader you might want to bring your own as they only have people and entertainment mags, however I've only had to wait once in nearly a year.", "type": "review", "business_id": "nWm5m-O88qprGsX4sjo0Uw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MqKtiMUnd1CdvNKUIlNspA", "review_id": "u-x32VTB32tWCBU5TEGqzA", "stars": 4, "date": "2011-08-21", "text": "This is one of very few East Valley theaters that has online ticketing through Fandango. The auditoriums have true stadium seating, and the chairs are spacious, and comfortably recline. The arm rests are movable, so you can snuggle with your honey while watching a movie. The picture quality is amazing!!! I only wish this theater offered a military discount, like it's Tucson Cinemark counterparts.", "type": "review", "business_id": "4Pf9DQBcR23A6Lg2pDsrBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "NQqCt3E28tpCjcdKzuA2Og", "stars": 4, "date": "2011-01-26", "text": "Me and my best friend wanted to check this place out. We both enjoyed it. Here are my pros and cons:\n\nPros:\n- There is ample parking across the street and the lightrail stops right by the bar so its very easily accesible.\n\n- The drinks are decently priced. I mostly had beer and they were all about $4 each. Bartenders were friendly, cute, and fast.\n\n- The music was good. I wanted to dance my little butt off.\n\n- The drag queens were fabulous.\n\n- No cover.\n\nCons:\n- We went on a Saturday night and the place was dead. I really wanted to dance but there was no one in the other rooms getting their groove on. I was disappointed.\n\n- Its mostly men. There were a few lesbian couples there but its mostly gay men. (This could be a pro, depending on how I'm feeling.)\n\nI look forward to going back on a busier night. From what I have heard, Fridays are the day to go so we will be checking it out another Friday.", "type": "review", "business_id": "jQt1xMibtitBczJN6LXT1Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "aIL13Bff3N_g_ynzgzpN7w", "review_id": "bMgiQZ85UizLBLXFKqtHOA", "stars": 4, "date": "2012-06-27", "text": "My wife and I came here to see what they had to offer. As we had bought a king size bed frame and bed. However because we can still cancel our order and felt our decision was on the whim as the mattress we originally purchased was on sale from another furniture store.\n\nWe came here to see what other options we had to choose from. Upon entering I already was prepared for the sales man attack, however we were taken back by how friendly and non pressuring environment we entered in. George the salesman was very informative on the beds, and was trying to gauge what we were looking for. After narrowing down to 3 beds another couple came in, we told him we can attend to them while we continued to drill down. He checked on us a few times and answered a few questions we had, but was not breathing down our necks. \n\nThe products: They had a good selection of beds for all prices ranges and were well organized based on color piece on the mattress. The sales were nice as well as the options in the clearance section which seemed very reasonable.\n\nIn the end we ran to the other furniture store to see the bed we originally purchased which we liked very much and kept our original decision. If we didn't find the bed prior Mattress Firm would have easily won our business and would recommend them to others.", "type": "review", "business_id": "JVmPxs-yN5VR1l4_-7MZww"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "nDhRLnmtlSoVVUA3y8dw7g", "stars": 2, "date": "2007-07-26", "text": "a little greasy for my skin but the presentation is organic and fun! \nglitter, rubber ducks, bath fizzies and tons of soap make for a great one stop shop when you're shopping for those girlfriends you have who like everything. \nthe style is unique making it a fabulous place to take a peek in but just not for me.", "type": "review", "business_id": "mWjlJ0Mvde4nBvM9nXlU-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7KINmvqlh8H3r5M933kTag", "review_id": "S7fxRPce-j6RbEGRvGWGmw", "stars": 4, "date": "2009-05-01", "text": "Although the boba here is decent (The Street on Dobson&Southern is better), I really just go here for the food. The small menu consists of meals that are authentically Taiwanese. The beef noodle soup ($5) is my favorite.", "type": "review", "business_id": "f9eFteZuBoZqzYg5UUrufw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "yov4PgFnEIOimzKdU2wV0g", "review_id": "J4HT1mMCOtra9NtiD24bUw", "stars": 5, "date": "2012-01-21", "text": "The best Chinese food I have had since leavong Chinatown in California. The crab puffs had crab, not Krab and were much more crab than puff. The food was cooked perfectly and delicious. I strongly recommend the Mu Shu Pork!!", "type": "review", "business_id": "stH6XAn2Drzol1H5oGvL2A"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "l81ILmOhky5bG7o4r3rkhQ", "review_id": "sasQCHBDh-e4-1eEFtp8ig", "stars": 5, "date": "2008-09-05", "text": "Four Peaks baby. This spot is awesome. Great place to meet up with a crowd, grub, and pound some craft brew. The food is great: dope appetizers , rockin' burgers, decent pizza, and daily specials. The beer is fantastic, hop knot being my fave. They have happy hour everday from 3-7 and 10-close with dollar off beers, a light night menu, TV's, and a pool table. I've gotten mashed here more than a few times. Sunday brunch is killer, and may I suggest you try the Stout milkshake, a little known secret, but good for the sweet toof. Don't miss out on the Peaks.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d8ZgWQENWo2DKu0sYAPqTw", "review_id": "Qq0KwPY8gAWORyH5v5VkHw", "stars": 5, "date": "2011-08-09", "text": "My boyfriend and I decided to try Boulders out last night because we wanted some good beer and it's within walking distance of my condo. Good choice on our behalf! \n\nWe arrived around 10:30 pm, so we took advantage of reverse happy hour ($1 off most pints on draft). They were also having half price pizza night, but we had already eaten pizza earlier in the evening, so we did not get a chance to try the pizza. Had we been hungry, it seemed like a great deal.\n\nI was VERY impressed by their beer list! They had the biggest beer selection I've seen anywhere. When I was shopping at a specialty store last week, I noticed a \"Maui Brewing Co. Coconut Porter\" that l was very curious to try - but I passed it up because it was $10 for a 4-pack (ouch). I asked the bartender at Boulders (Rob) if they happened to have that specific beer - and to my utter surprise they did! I was happy I was able to try it out before shelling out ten bucks to buy a four pack at the store. Two thumbs up! \n\nSpeaking of Rob the bartender, he was great. Very fast to take care of all the customers around us as well as my boyfriend and I. Made sure we had everything we needed without being intrusive. \n\nOverall, I had a really good first experience at Boulders on Broadway, and I will definitely be back. I dug the old-school ambiance with the wood paneled bar, we received very good service, and the selection of beer was amazing - truly something for everyone. \n\nIf you live in the area, I'd recommend checking it out!\nI plan to get some friends together and go back for one of their \"team trivia nights\" soon - sounds like a blast.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T8b2ZfgQR_mcCvfGVsKKrQ", "review_id": "uOTvP5Ik9ztLf0_HgLNk1w", "stars": 4, "date": "2012-09-16", "text": "Thai House is a great find! The restaurant is very clean and simple and the food was fresh and tasty (and affordable!). I had the Pad Thai and Spring Rolls. Both were gluten free. It's a great place for a week night date night with my husband. I can't wait to go back.", "type": "review", "business_id": "17DI33J8TkcfzyoiIYLQIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FbwfC_oJpLIbUDjvPju2fA", "review_id": "r8pbrjsyn2mnedH0SbYFVg", "stars": 4, "date": "2011-01-03", "text": "Simply put, The Grind provided one of the top five burgers I've ever eaten in my life. The peppercorn burger was piled high with toppings and as amazingly flavorful as I'd been told to expect. The service was friendly, attentive, and fast. The food was juicy, flavorful, and reasonably priced. Their hot wings were flavorful and the bread pudding made a grand end to the meal.\n\nThough my initial order was brought out slightly off (with cheese despite my request) they cooked up a replacement in under 5 minutes and had it out to the table in no time. Similarly, when a friend's drink was a bit too bitter for her taste the bartender mixed up a second version more to her liking, but did not charge her any additional fee.\n\nThe only downside: I found the fries a tad unimpressive and overpriced. Ah well, not the reason I came here. \n\nIf you're near this end of Phoenix I'd highly reccomend giving The Grind a shot.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "X7Z6rtSPvKOw2TvQx6ZFKA", "stars": 3, "date": "2007-07-26", "text": "Eh, this place is okay. I was not super impressed. The food was okay. I was not blown away. After being seated, we sat at the table for a good 15 minutes without anyone noticing that no one had been to our table once. We had to flag down a server. Once we actually did have a server, the service was good. I can forgive the glitch. Everyone has a bad night. But the food just lacked the wow factor. Even though I have a twenty dollar gift certificate (to make up for the initial service issue) I have not been back. I guess that about sums it up.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Y7KS04okqSFAbg1NyImHkQ", "review_id": "L1nh__Vsaf5KCioY5sAjJQ", "stars": 4, "date": "2013-01-03", "text": "I've been here a few times. I love that it's vegetarian friendly! I think I've ordered every vegetarian option they have, the most recent being the Veggie Cole Turkey. I think it might be my favorite. The mock turkey they use is divine and the coleslaw & Russian dressing are so tasty! \n\nThe staff is always super friendly and the service is always quick. Prices are a little higher than what you'd pay at any other chain sub shop, but that's not really a con to the place. The quality of the ingredients make it worth the price. And you get a lot for what you pay for. A small is more than filling! \n\nA few things I wish they would change is the fact that they use so much paper to wrap their sandwiches. It's quite wasteful and I feel like my small sandwich wrap paper takes up the entire table. Also, I really wish they would have a Veggie Bobby on the menu! I'm sure many vegetarians who eat there probably feel the same way.", "type": "review", "business_id": "tsom7jUEr_DetH65ZtEc3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yHKOttTv1sSVKMsdGmQjpA", "review_id": "aK5VfiAMMweu6h2Gy0PH7w", "stars": 5, "date": "2012-08-20", "text": "awesome and delicious place! good for groups!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "uBp2Jmip2qXQ0iWHUDY9sQ", "review_id": "6xQUJlsiD4xwqwAalgc97g", "stars": 4, "date": "2008-07-06", "text": "Why pay full price for men's clothing when you can find quality used items here? Well Suited consistently has an excellent selection of suits, sportcoats, slacks, dress shirts and golf shirts. You can also trade in your old clothing for store credit or cash. The credit is good at any of the different stores in the My Sister's Closet chain, including all of their stores that carry men's and women's clothes, furniture and kid's apparel, furniture and toys.", "type": "review", "business_id": "uuLYxKdJW_jfty1jMtXxQw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "r_n8QJIOvBh46ttodTT0hA", "stars": 5, "date": "2012-01-06", "text": "I am so grateful to say I have had the famous Rocket Burger. This place gets so much Yelp praise and for great reason. \n\nThe soda selection is off the hook every soda you grew up with and then some all in coolers in bottles the even got YooHoo.\n\nFries are all natural cut and amazing there is just something great about fries with the skin on them they just taste better. \n\nThe burger was Phenomenal I had the Santa Fe which had the amazing Rocket Sauce, bacon, and fried green chili. It was outta this world good. \n\nI will be a loyal customer and I am sure will post numerous updates to this review cause this place is just that good.", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "enKr3RZalPO3kNqNu33XWg", "review_id": "PIR6gvvn_BmH_0ZbRgR27Q", "stars": 4, "date": "2011-02-20", "text": "I will be very brief.......the food is fantastic,!!!!!\n\nThe service is hard to figure out though. Lots of staff but we were constantly looking for our waiter, the water guy, the plate remover guy. All seemed to be on break simultaneously. I strongly recommend eating at the bar until they get the staff better trained.", "type": "review", "business_id": "xz1fQwwVAhqA9MsmMaGyZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5mnhUiRWi-q6nX7TkicE2A", "review_id": "IyA3Nmp8W1IS7aqwtqiiCw", "stars": 5, "date": "2009-04-05", "text": "It's my fav starbuck cuz it's across the street form my house. It taunts me daily. Pavlovian response make my mouth water for a white mocha nonfat no whip everytime. The people who work there remember the regulars and offer suggestions and even help you save money by working the angles to get you the combination special price. Also a good place for people watching or picking up a little something on the way to the light rail or antiquing up 7th Ave.", "type": "review", "business_id": "e48Wa4YqFaMjMmN9iZ2G5Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "GpDsB_pSKS8nKOlXQXpifA", "review_id": "6z3iOeQNYG1KdT53oIivGw", "stars": 5, "date": "2010-08-29", "text": "We went to this place for my birthday, wanting to try out something new. We'd never had Ethiopian food and we were very adventurous. Be warned, we had a GPS and we had a very hard time finding it, it's tucked away in a little corner!\n\nOnce we found it and stepped inside, we were definitely wow'd! The waiter answered our questions about the food, and suggested that if we really want the Ethiopian experience, to try out the Strictly Vegan combo. We ordered Tikil Gomen, Misir Watt, Kik Misir Watt, Gomen Watt, Shuro Watt, and the Dubba. We fell in love with the Shuro and the Misir Watt. The Shuro is chickpeas in a cinnamon/spicy sauce, and the Misir is spiced lentils. Soooo tasty! Even non-vegetarians will enjoy this place, and they do have meat dishes.", "type": "review", "business_id": "fb9eLHJ4S--TyXsarJJo-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t2YBANsJYySOXvHyOjcZkQ", "review_id": "D0O1Dqr2clFdfpUbUzykew", "stars": 3, "date": "2011-07-27", "text": "I feel bad giving them a mediocre rating but I'm reviewing what's in their NAME. I drove about 9 miles across Gilbert (that is quite a chore) because I wanted to serve good roast beef sandwiches for dinner and I needed good bread. \n\nI had Boar's Head roast beef, tomatoes, horseradish sauce, avocado, roasted red peppers etc I just needed great bread. Where else in Gilbert should I go? I did a Yelp search and it agreed - to this place. \n\nI arrived around 4:15 and the pickings were slim. I got the last round of sourdough and a small nine grain. I asked her to slice thick, she walked to the slicer and said it has one setting. Okay I'll slice myself. \n\nBecause I love Cupcakes I also took a chocolate cupcake and my boys got a chewy brownie each. The total was about $16. \n\nWe got home the bread was hard (both) soft on the deep inside so I had to grill the sandwiches with butter not my plan but it's butter, butter fixes everything. \n\nThe cupcake frosting was good I ate the top threw away the 'cup' not worth the calories. I only allowed the boys to eat half the brownie each and save the other half for tomorrow as they were huge. The said they were really good. \n\nBasically, I'll buy my bread at the grocery store or at Paradise bakery as the wasted gas and time in the car was not worth it.", "type": "review", "business_id": "06kfoeRs9Acj82Yl3i9p_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vNTHCRZppCQvx-Rsha9U3Q", "review_id": "pJ9GyAPbdPRpz9INARb9ig", "stars": 1, "date": "2012-04-25", "text": "Had to eat here with coworkers for lunch today and was incredibly disappointed. My $8 caesar salad was probably the tiniest I've ever had. Service was slow, the entire table was nearly finished before mine arrived, and staff was unapologetic. I've had side salads larger than the full salad they served me for lunch. Overall a miserable experience and I won't be back.", "type": "review", "business_id": "fd0iSXEhwz-foQdS8SCKYA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "6fboUxwhAsUMx1F9yCzlMQ", "review_id": "M3rrKME9sLudvR0bnnM0aw", "stars": 5, "date": "2011-04-13", "text": "In short - Jen rocks!\n\nFinding someone I trust to watch my crazy crew is always a bit nerve-wracking. I came across Jen's Pet Sitting while searching for options, since I'm relatively new to the area. \n\nI decided to book a consultation with Jen to have her meet the furry family and learn more about her and her services. Jen is extremely professional and came ready to take notes and also spent a lot of time getting to know my critters. It was clear from her interactions with my cats and dogs that she loves animals and really understands them. \n\nAfter having a great experience with Jen during the consult I booked her to do visits over a long weekend. The hubs and I took our dogs along for the trip and Jen looked after our cats while we were away. She gave us regular daily updates about our cats while we were gone. Sometimes she sent pictures with her updates which was an added bonus! Jen spent time playing with our cats during each visit which was fabulous.\n\nI always know I've found a wonderful petsitter when I come home and my animals are a little disappointed to see me! We will definitely continue to use Jen in the future.", "type": "review", "business_id": "utVe80w-NAj9KMtIwJo22g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7KS3KW9TdHiKi4aW53e36g", "review_id": "ADltxRfbxp0TAZjlDkY6_Q", "stars": 4, "date": "2011-01-01", "text": "Great breakfast, great service. Yummy!", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vIBrfx6z6wvUFN5IJDLNyg", "review_id": "-tNQv06EWbeqquFkCUqNwA", "stars": 3, "date": "2012-11-29", "text": "The food was decent. My friend and I had the meatball sub and marinara chicken sub. I know this is stereotyping but being served food my real Italians I expected more spice and flavor in the food. The alcohol selection is small but has the essentials (beer and wine). I want to go back and check out the pizzas before I write this place off.", "type": "review", "business_id": "H6yfW3cQ--UOtCjjzTNekA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4Q3pqQ-WR7kSBJyhQvRipw", "review_id": "-TSbySalZvuypayvBrdtVA", "stars": 4, "date": "2010-05-06", "text": "Good food here. Nice atmosphere. Food a bit pricey, but if you share, it's not too bad. The Pecan Bar is awesome.", "type": "review", "business_id": "aBjWR-Mol58GMsRAdz2Tjw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3eit3w0zDbb-z57c9P60vg", "review_id": "aM0JoEyi9owGDLfgAfKxtw", "stars": 5, "date": "2010-10-14", "text": "The best Vietnamese I have ever had. Very authentic menu (not even in English). Great service and knowledgeable staff. The ambiance is lackluster, but this is typical with Vietnamese food. \n\nGreat for dining in quickly or taking home.", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1tbo1s2UhQvkF9LRRqLK0A", "review_id": "Je4MGN3YgZm74rdl7OvgEA", "stars": 5, "date": "2012-11-20", "text": "I have been to slippery pig a half a dozen times in the last few months since moving in nearby. I have nothing but great things to say about the shop. They are friendly and courteous and I haven't experienced any of that bike snobbery that comes with LBS. I am glad I found a local shop with great service", "type": "review", "business_id": "42Ai9wcFPE2HZ_aADGXI9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w50wON9lm40H_KRTPZjXnQ", "review_id": "eDyRB_AzNVgO7W8M2lOuWw", "stars": 5, "date": "2011-02-23", "text": "Awesome place.\n\nI am pretty sure that this is my favorite restaurant in Scottsdale. \nHoneycomb, radishes, and a huge heap of rainbow valley butter for an appetizer? what?! Whaat? I had to take a picture of it. The waitress gave me a hard time about this, but she was cool :p\n\nMy coworkers and I went on a mission to try everything here. I do remember the brussel sprouts being too salty. but everything else was great. spicy broccoli...\nfat-fat cooked potatoes....\nperfectly grilled ribeeyeeeee.. .yummm..\n\nbut i dooo remember the brussel sprouts being a bit too salty for me.. but i forgave them for this. \n\nIn addition to the great food, it's a cute little restaurant with a lot of character. The servers (who are also your bartenders - i thought this was a bit interesting) are really friendly. \n\nGood memories here!", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "IajbWwj6l-KHrfSEwZBLgw", "review_id": "CzUuQs-QpNEls1URRFSzDg", "stars": 2, "date": "2011-06-13", "text": "Stopped in Sunday for lunch after a high recommendation from a friend of mine in San Diego. She claimed it was the best sub she's ever had so I had to try it. Unfortunately my sub came up short with lack of taste and toppings. When we pulled up I noticed it was super busy and was thinking man they must have great subs for it to be so packed. Was lucky to get a booth inside but it wasn't as clean as others have stated in other reviews. I had to take one of their comment cards and wipe the table of all crumbs on the ground as others had obviously done from the looks of the floor. I had the Chipotle Cheese Steak sub that I split with my husband. The bread tasted ok, but it wasn't fresh out of the oven. They skimpt on the steak and hardly saw any onions at all on it. For the price of the sandwich I really was expecting to get more. The sauce was the best thing about it but I was wanting more of it as well. I won't be going back. Sad that it wasn't a better first impression.", "type": "review", "business_id": "1_43FZHx3P5D7X-CpIR9WA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kGELmMMIPh0DWnfJalYnIQ", "review_id": "_HCAHgEAReM-nS2Jlj-vkQ", "stars": 3, "date": "2012-07-22", "text": "Very mixed feelings about this hotel.\n\nLocation is very close to ASU's tempe campus, so it's convenient if you're visiting ASU. The surrounding city of the hotel is fillllled with methamphetamine addicts. And yes, it is very creepy- and that is coming from a 24 year old male.\n\nThe customer service INSIDE the hotel was great. The breakfast buffet also tasted good. The hotel rooms are nice, although they only have $5 water available which is annoying and the fridge is LOCKED so you can't store any of your drinks.\n\nThe reason why I docked 2 stars was not so much the tweakers, as it was the LOUD clunk sound whenever the AC turns off. From what I've heard, this happens in every room.\n\nSo, if you need to sleep with AC at night (and you will, in the summer) - be SURE to buy or bring ear plugs. It's the only way to get through the night - trust me....", "type": "review", "business_id": "I5ypI3aYbbTL8dAjnI3PDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B4wYawXXCI-5GR6FdCAGJw", "review_id": "Wu485BrgQjADx1yu9XCABA", "stars": 4, "date": "2010-07-16", "text": "Family-run restaurant that serves extremely yummy Iraqi food. Go up to the register if you want take-out and they will help you figure out exactly what you want. The cook is very friendly and can do extra stuff for you just let him know exactly what you're looking for. If you're staying in the restaurant to eat, they have fast service and its always served hot. Very good food!", "type": "review", "business_id": "mUVTlJSil_xyjPD6qMx8UA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RTjqsz0-YZzBNfe5xkxtjA", "review_id": "QUBQ1Lfhk8p5PeCrK6tBnA", "stars": 4, "date": "2012-09-26", "text": "Kale, miso, shrimp dumplings... all good", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "shkOSzUcN2hjIJpyufVS9w", "review_id": "8tKHEc5HL3cKjWIBzRZy5w", "stars": 3, "date": "2011-03-10", "text": "Decent little taco stand sort of restaurant. The burrito that I had was good, nothing to shout about, but a solid breakfast burrito. The nice thing about it was that you can order breakfast foods all day and it still tasted good.\n\nMine came out pretty quick, but my friend's burrito was quite long in arriving. They have some good combination burritos that aren't significantly more expensive like the ones you might try to get at other places. I would visit again to get a second opinion of the place.", "type": "review", "business_id": "Lx4ZFP6dIMzi7Ib-ljV-ww"} +{"votes": {"funny": 3, "useful": 3, "cool": 1}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "a0a5ybBNpoNuxDFd8sBSuQ", "stars": 4, "date": "2009-04-15", "text": "Really pulled a douche bag move by coming here at 9:45pm when they close at 10:00, but everything was closed except for fast food places, in which we didn't feel in the mood for. The hostess didn't give us any attitude and sat us...It was super dark, but had comfy booths. \n\nAndy was our waiter and he had such a great attitude, we apologized for coming in so late, but he assured us that we were fine. The salad was good, but kind of small, the buttery croissant that accompanied it, however is tasty. Hubs got porkchops and I got the chicken soup. Not bad, we ended up talking and laughing with Andy about the restaurant industry...too bad the bar was closed, I wanted to see if he wanted to drink with us.", "type": "review", "business_id": "Rus-ewyqLj2D1RlqK-je4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Hm8mxRyPSQqTPq0JVWNSpw", "review_id": "jA0HiokujOfyHycVruX_TA", "stars": 5, "date": "2010-02-19", "text": "My first and only experience there was excellent. The service was exemplary - the server knew the menu, was enthusiastic about it, and assisted us in choosing our items without being pushy. The food was exceptionally prepared and tasted excellent. The tzatziki was the best I've had. Nice and thick, with cucumber and spiced well with herbs and garlic. The spanikopita was also exceptionally with fresh clean tasting spinach and delicately textured phyllo dough. The pan fried calamari reminded me of Europe, fresh tasting, delicately fried in olive oil and not in the least bit chewy. The pita bread was warm and fresh and for dessert, the baklava had a complex flavor and tasted home made. \n\nThe environment was tasteful, old world European and exceptionally clean and organized. I will be back!", "type": "review", "business_id": "KLaxBc83JnxyGf7GP7enYA"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "ETrSs9dpPwxqi1mYfbMmvw", "review_id": "hX9qg597l3OCWd0EsV2bbw", "stars": 3, "date": "2011-04-10", "text": "Narcisse couldn't be more appropriately named...another Scottsdale scene club with a lively but predictable crowd of scantily dressed cougars, Middle Eastern royalty and upscale business folk. The music is hoppin and thumpin late and leans toward House, which is why I added two stars. We actually entered by taking an elevator up and walking through a kitchen in rather cinematic style, emerging right onto the dance floor, which was packed. I guess it pays to know someone. The champagne selection is outrageous here and packed though it was, our drinks arrived in seconds. The sky-high patio is a nice place to chill and check out the little skyline, but it's all about getting your dance on here. I would like to check it out for happy hour when fewer people are bumping into you and stepping on your feet. The Russian mobster-channeling bouncers are a little intimidating, but treated us well. An uber enthusiastic dancer knocked into my friend and shattered her Veuve glass, and all was whisked and mopped in seconds. The music sure beats the tired 90s cover bands that seem to be epidemic in this area.", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RCjuKSuPezW6qI3ZKgkncA", "review_id": "rTgDvc9hTAHOzw93uErZKA", "stars": 4, "date": "2011-07-14", "text": "Love the medium wings and green salad with thousand island dressing! The bartender CJ is da bomb!", "type": "review", "business_id": "hGQsnkndreW7b26XC2HVRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SgDWDjBr8fV7id1UnFaAFg", "review_id": "oiyY4oScJ5gffI0bpHTWBQ", "stars": 4, "date": "2012-04-06", "text": "Had a nice dinner here with some friends and family last Saturday night and it was really good. The eggplant parmesan was good, but two of us could have split it. They serve it on top of a big pizza crust, so it is very filling. My son had the God Mother pizza which had bacon, pesto and fresh mozzarella. The pizza was in the shape of a guitar. He liked it, but wasn't thrilled with the bacon. It would have probably been better with just the two main ingredients. The restaurant is casual and hip at the same time.", "type": "review", "business_id": "kK4AzZ0YWI-U2G-paAL7Fg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "Wy7f9DOuBEOenhnA7KIKoQ", "review_id": "GGykoH0QOvtJMdslH6ImNQ", "stars": 5, "date": "2008-04-02", "text": "I love this place. I especially love it on Tuesdays when it's free. \n\nI have been to many lectures, openings and films at the Museum and am always fascinated. \n\nThe changing photography exhibit is always fantastic. The fashion room is one of my favorite features. BUT my favorite piece is the firefly installation. I could seriously live in that room. I take everyone I know and everyone is always as mesmerized as I am, and I have seen it many times.\n\nI love the new contemporary wing of the museum. I also love the glass boxes on the sides of the building. One time we were there during a thunderstorm and sat in the glass box and watched the lightening. It was perfect! \n\nThe museum always makes me happy.", "type": "review", "business_id": "u0NbikWwP7TVkMkCily-4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XpejQYZqVcYGX7fYuYHzSw", "review_id": "McgTbfkTEai9y3vmfBpBXw", "stars": 3, "date": "2009-11-04", "text": "My wife wanted to go here a few weeks back for her birthday so we went on a Saturday afternoon. Parking was easy to find and there was no wait to get a table. Wish it had been a touch cooler, but it wasn't so we decided to eat indoors. \n\nHad a little snafu with our servers where someone who was not our waiter took our drink orders, but it was straightened out pretty quickly. We each ordered one of the signature drinks, the wife got cucumber lemonade (I think) and I got a green arnold palmer. I liked the g.a.p. For the meal, don't remember what the wife had, I got the chicken sausage pizza. It was fine, nothing out of the ordinary. \n\nBasically, that's how the whole meal was, okay, but didn't blow me away (not that I'm a huge healthy/organic foodie kind of guy though). I guess I'd go here again, but I probably wouldn't suggest it. (I did think the music was a little loud...)", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "QDFF87mFaSCr3AUAumKdmQ", "review_id": "KPSNFCMhp_kg6-68xZ-zaQ", "stars": 1, "date": "2012-01-11", "text": "Slowest DRIVE THRU ever!!!! Also the quintessential SHORT BUS Location.\n\nI frequented this location around dinner time since it is the closest to my home a few times and every time it is between a 10-15 min ordeal. When i worked at Mickey D's in the early 90's we had what was called 90 sec HBO( Hand Bag Out), from order to picking up should be no longer than 90 secs. This must not be a practiced any longer. I have to say hello when I drive up to the speaker due to getting no response. Then I get someone who is rude and say's yes. I order the big mac deal, buy 1, get 1 for a $1. The employee says they do not offer that, I advise their menu out front does. After 5 min of silence and cars backing up I pull fwd to make sure he is still living to see what is up. Total lack of cust serv service, he had to have the mgr show him how to ring it up, no apology or anything. This happened each time I went there. C'mon man", "type": "review", "business_id": "xH5axHFadmc7Veutt376TA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SHTJPF9xvkB912zkmvUw9A", "review_id": "LfqSRGXUVtRs8t0nMIRoyg", "stars": 3, "date": "2011-05-11", "text": "I have been to the original Vig and was happy to see that they were opening the Vig Uptown within walking distance of mi casa. So far, I've only been able to schlep over on weekends for brunch. I'll say that the food is good, but the service on my last trip was pretty lacking. At one point, my BF & I sat for nearly 20 minutes between the coffee delivery and the actual order taking. That seemed to be the standard for the day in what was a pretty empty restaurant. kept me from giving that 4th star for sure.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 6, "useful": 11, "cool": 10}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "0ei9Arzw3h50QDLB0VN05w", "stars": 4, "date": "2009-06-19", "text": "4.5: The only thing keeping this place from 5 stars is the location. The view from the patio is pretty much parking lot and the backs of buildings. \n\nBut, holy cow! The wine selection is VERY good. The staff are friendly and helpful and make excellent suggestions (thanks for the zinfandel tip! YUMMM). The prices are fair too!\n\nAnd, as much as I love green chile, my new fave is the fig and gorgonzola app. Still a pannini... I didn't know blue cheese could get that creamy when it melted!\n\nMan, I wish this place was closer... I'll still be back!", "type": "review", "business_id": "tA2DT7CGQPzgA6tTcTkXDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4muLyMlTP1ijRLACBBRcaQ", "review_id": "1gd82GFqO0_5XxJUKGqZ7g", "stars": 4, "date": "2010-08-17", "text": "I shop here a lot. They've been accepting expired coupons, which is great and every little bit helps. Returns have always been a breeze too as there isn't a deadline, should you receive a gift, don't have a receipt, whatever the reason. SO (yes, here it comes--the negative, which I always include) when the snippy girl (rare in this store) that I've never seen before when shopping here so she must be green to the policy?, inspects the item (no biggie--make sure it's there and intact), I start to wonder just a tiny bit. This is all after she made me wait for maybe 3 long minutes while she failed to address me standing there. She asks why I'm returning, which I explained but nothing was defective. Then there's a problem with the amt so she calls a manager, THEN she tells that mgr \"She's returning it because......\" as IF. The mgr ignored her, as she didn't inquire about my reason, which BBB doesn't really give a @&*^ now do they. Or perhaps she thought she could announce it so the line behind me could look in disgust as they waiting to BUY something waiting for another cashier to show. Didn't bother me but what the heck did she THINK I was doing here. At BBB, you can return anything, anytime, for any reason, no problem. So why this twit couldn't fathom my reason is bbbeyond me. That sort of attitude is a huge turn off and has she heard of secret shoppers, or just do your job with a smile, don't judge the customer, esp when the item returned is in NEW condition, unused and a very inexpensive return. What a bizzo. If they keep employees like that, I'm through. STOP it.\n\n I feel much better now.", "type": "review", "business_id": "rkGPf4cbyUJqHgKZPvaTnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_uLtybFNthITalKyAiFurA", "review_id": "XYBRk68egyxpeXzuhexOgw", "stars": 2, "date": "2011-08-03", "text": "Everyone I've talked to that likes this place says the same thing, \"I've been going there for years.\" Yes - and perhaps years ago it didn't feel like a dive restaurant in constant jeopardy of being shut down for health code violations. But now...\n\nThe food is completely, unmistakably mediocre. As is the service. Maybe it's not filthy - maybe it's just the lighting and decor that makes it look like that way. But I'm pretty sure the roach I saw dart up the wall was real.\n\n(Okay - that's a cheap shot - there are probably roaches in many places I've gone and I just haven't seen them. Fair point.)\n\nNothing about this place makes it a can't miss. I get the history, the nostalgia, and the fact that some famous people have dined there, but you can find better Mexican food all over the Valley and some just a short drive away.", "type": "review", "business_id": "soiGohHtWOltGeomkSxzEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O-nHK6gWRwtS-O3A2tYydw", "review_id": "prK2oCwdStN8_wyuToobWw", "stars": 5, "date": "2009-10-31", "text": "DD has great food, friendly staff, and a wonderful patio. The breakfast menu is the best in downtown Scottsdale. DD is also great for lunch and early evening. The Happy Hour menu is a great value. I have been there many times and the food and service is consistently top rate.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 4, "useful": 5, "cool": 4}, "user_id": "5wN78N4K0a39C-uPzPmxDw", "review_id": "28kJ8stP_LbJgVSLPdOQMQ", "stars": 4, "date": "2008-04-15", "text": "I'm a gelato purist, so Chill is right up my alley. You don't have a million flavor choices, but the ones they have are classics done right, so there is no need. The same lady is always working when I go, and she is very friendly and upbeat. They haven't yet perfected the multi-flavor ratio in one cup, but I'm sure that will improve, and I'm a huge fan of anything with a punch card. So far my favorite gelato spot in the Valley :)", "type": "review", "business_id": "tV97OH1LK00kUcX0Jig-sQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rlcJkEoYzuiS7iF5XfXCMA", "review_id": "blN43n5auAXjrf7tICNhvg", "stars": 4, "date": "2011-08-15", "text": "There is a Leinenkugel beer stand on the east side of the first floor heading toward Fatburger! SO so so excited to discover that! They only take cash though!", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4eONcOSuswZvlvWu8ftJHw", "review_id": "x8sFHH94WxMW_SuOZ4TAJQ", "stars": 5, "date": "2009-08-19", "text": "The Farm at South Mountain is a splendid little slice of the country- right here in the middle of the desert!\n\nThe plentiful green grass spotted with picnic tables makes me want to plan a family reunion. There are gardens and walkways to explore. From first glance, The Farm is a quaint, family-run farmhouse.\n\nVisit Morning Glory Cafe for breakfast and you won't be disappointed. I've personally enjoyed the Morning Glory Benedict on several occasions, while my brother is a big fan of the Farm Monte Cristo. Both dishes are made with as many local ingredients as possible... mmm... local-icious. \n\nThe Farm Monte Cristo is about as close as any breakfast food gets to \"groin-grabbingly delicious.\" (a la Homer Simpson) It's slow baked ham, over easy eggs, and melted cheese between two generous pieces of French Toast. Served with warm maple syrup, this is it, folks. The grand-daddy of breakfast foods. \n\nThe service here is generally solid. Our servers tend to be interesting, friendly, and adorable- all good qualities to have when you're serving breakfast to someone who isn't happy about being up early.\n\nI'll return... and return... and return. I'm hooked.\n\nI only wish Morning Glory wasn't closed for the summer! Killing me.", "type": "review", "business_id": "MLcXtnpzygZvQ9BtseLLlw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3E9XM4pk8APBYPUiI0X05w", "review_id": "vCUk6ZE4JgPFjUbnuBzvgg", "stars": 4, "date": "2012-06-18", "text": "It is a nice place. Actually when i have just come in, everything seems to look normal. Nothing different frm other nail salons. However, when a lady did manicure and pedicure for me, she did really good service. She always smile a lot, and made you feel comfortable. I will come back soon and tell my friends abt this salon cause they did a good job.", "type": "review", "business_id": "I5xBrzmTIUKHlj01JU6Z5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ij5AugUe4lIU-sVVUEeaBw", "review_id": "P_8JLwqCwRXsHcBU855Cnw", "stars": 5, "date": "2012-06-20", "text": "Just got 5 Diamond Dermabrasion On Arms, Back and Face and I Love it She is a perfectionist, Organize, Clean, and the most amazing quality service she finished my facial with Ice I basically melted This is My Best present for My coming B Day this Sunday I will Look like I am in High School this weekend with m Super Fresh Skin PaulGStudio.com highly recommends this better that The Red Door service and amazing and real Customer Service. She has a 1/2 off coupon on the entrance of the building for the first service Please Enjoy", "type": "review", "business_id": "KIYCsfv4__50laeYYVPAXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VFfFPP8gMpnhVYE7bD0qIw", "review_id": "q_VofveTOSDDhK0zGqOSSA", "stars": 3, "date": "2009-11-02", "text": "Went here for lunch on a weekday and thought it'd be busier. The slower setting allowed for more personal attention though. The chef even came out to talk to us and gave us free samples of some of the desserts. The food was good, but didn't blow me away. I think it's a nice option for a snazzier (it's a little pricey) lunch with friends.", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "M_C8-rexcexmn2zxwMmp-Q", "review_id": "vzuWb-Z8ZijzixFD-skbgw", "stars": 4, "date": "2010-02-08", "text": "I less than 3 this place. I've been more than a few and always leave smiling, full, and satisfied. The staff is friendly and fairly fast. I am not sure though how exactly one would determine that rock-a-billies as a whole would love this place. Maybe the grease from the stoves and kitchen floor? However, if you like good food and a fair beer selection this is the place for you. And they have good happy hour drink specials if you like to get really drunk. If you don't mind sitting on an unknown someone's lap then lunch rush is probably not a problem for you. Elbow room is the only thing that is lacking here. Of the ones I've tried so far the porky, lamb vindaloo, chicken tikka masala, and lamb & mint are all pretty darn good. This is making me hungry for a pasty!\n\nAnd the friggin' pb & j pasty is incredible!", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6xdpuvxbKunrARW1hMs1Ug", "review_id": "yhZOPK-cIpZTQItGraNIUg", "stars": 4, "date": "2010-09-09", "text": "So I finally made it to The Grind. A friend and I went for a late lunch (after 2pm) and had the place pretty much to ourselves so the service was spot on. We sat at the bar and drank bottled Kiltlifter...I've only had it on tap or from the can so that was a nice surprise. She had a burger topped with some sort of fried veggies and watercress...I know she loved every bite 'cause she refused to share with me. I had The Crisp Pork Sandwich. It was topped with swiss, pickles and iceburg and what I believed to be a house made BBQ suace. I gotta say I don't know where the \"Crisp\" part came in and the sauce was good but it didn't blow my face off with wows. To make things more (or less) forgettable it was room temp, at best. All that nay-saying aside...I killed the sandwich. It was a good sandwich. We shared the sweet potato fritters. I think I would've liked them more if I wasn't expecting something completely different...something with a \"no shit?\" factor. Admittedly, my bad. But everyone else should know they are pretty much sweet potato mash shaped into coins or pucks, breaded with mild seasonings and fried (possibly baked?). That's all. No hating...just saying. The sweet potato fritters at The Grind are sweet potato fritters....don't get all excited like my buddy and me did before ordering them. The room was tidy and clean. The music was the right kinda 2pm vibe. The bartender was attentive. The food was thoughtful but possibly not executed to it's highest potential. They have Kiltlifter in a bottle. If I were you...I'd go to the grind. Represent local talent, Phoenix. Chef McLinn and his colleagues...waiters, FOH managers, dishwashers and prep cooks are the Gin Blossoms or the R. Kline and the Peacemakers, the Jimmy Eat World or Eastonashe, the Headroom of the food and beverage, scene and attraction in this town. If it weren't for guys like Comer Smith, Jarrod Porter, Jay Bogsinski, Pattrick Fagan, Matt Carter, Payton Curry, Aaron Chamberlin, Chris Curtis, Beau Macmillan, and Matt McLinn we'd have no music-food to listen-eat. You might not love every single song the band is playing...but just knowing that they're what we got should be enough to get us to invest in understanding their talents and appreciate what they're doing for us. I can't make a pulled pork sandwich...but I know someone who can. You should go try these guys out...they sound-taste as good as any sandwich joint could. All they need is a few more groupies to spread the word and before you know it, The Grind is gonna be a classic.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "ro9-YMOXa53-_yECUBr1IA", "review_id": "-jmy8tVmq5ZWt2aUE6dE2A", "stars": 5, "date": "2010-07-28", "text": "Been going to Don and Charlie's for years now. It's kind of a family tradition. \n\nA sports hangout, you may see some players and coaches during the off season as Scottsdale is a big place for spring training. (This delighted my single girlfriends who took every opportunity to flirt the entire time I visited with them).\n\nThe bar is roomy and comfortable, with more than ample stools to accommodate my generous tush. Say hello to Shelley who is mi favorito bartender! You are welcome to dine at the bar, but the dining room is much more comfortable, with a great deal of banquette seating- which I adore. I often have the veal chop, or a nice, big NY Strip. Twice baked potatoes, creamed spinach......you know the routine in the \"good old boys' steakhouse.\" The best part is the house made chopped chicken livers which are simply to die for.\n\nValet service rounds out the numerous reasons to choose this place over others in the area. I almost forgot the comprehensive wine list, including wines by the glass.\n\nA must stop when you are in Scottsdale!", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "TlgyPPD4sz9FVoWNYHUcEA", "stars": 3, "date": "2011-02-07", "text": "I've lived near Old Town Scottsdale for years and in all that time I've never really taken to the streets by foot, aside from a weekly visit to the Farmers Market. At first glance you ask yourself how many Indian jewelry shops can the area possibly sustain? Well the answer is, the turquoise market in Old Town seems to be doing quite well. So it was on a recent exploration trip that we happened upon David's Hamburger's and Mexican Food. So for me the idea of killer burger and tasty Mexican good is a match made in heaven, were talking major food groups here. \n\nTucked between 2 galleries, David's is a blink and you'll miss it kind of place, very unassuming and humble. Inside you won't be wowed by the interior design but what they do have is functional and comfortable. With TV's at both ends of the hall like space, you'll be entertained by performance videos of 50's era rock 'n roll. \n\nI usually don't write much about soda pop, well never, but in this case the Cherry Coke ($1.95) was kind of special. When you order a Coke you can ask them to add a number of different flavorings from lemon and vanilla to chocolate and of course cherry. David's version is wonderfully fizzy and cuts through the richness of the upcoming meal. \n\nOf all the ways Mexican style meat is prepared, the grilled taste of beef is my all time favorite. If you enjoy this as much as I do then Id suggest the Carne Asada Nachos ($8.59). A massive pile of crunchy tortilla chips is covered in grilled beef strips, melted cheese, guacamole, sour cream and pico de gallo. While basic, I ate most of them myself leaving my partner to scraping the cheese off of the plate. If you'd like salsa on your chips, be sure to ask them to bring you bowls of green and red salsa. \n\nNow who doesn't like a big juicy hamburger? David's doesn't disappoint with David's Single ($5.99), say that 2 times fast. A 1/3lb patty topped with the usual suspects, then dressed with David's creamy sauce which to me was a thick version of Thousand Isle dressing, adding a layer of tangy goodness. Along side you have your choice of fries or you can choose to upgrade ($.99) to a mix of large deep fried onion rings and golden French fries. For dipping I a side of David's sauce did the trick in lieu of ketchup. \n\nThe Patty Melt ($7.25) is classic diner food. We're talking thick ground beef patty, melted cheese and grilled onions on your choice of grilled sourdough or rye bread. The wholesome grease from the beef patty and grilled onions is absorbed into the bread creating a creamy like texture, for me this is what a patty melt is all about. Of course the Guacamole Burger ($6.25) with its pepper jack cheese, bacon and guacamole is the marriage of Mexican and American influence. \n\nIf you're an early riser, David's also serves breakfast like Bacon Pancakes ($6.75) and Coconut Waffles ($6.25). Someone please pass the syrup. My only question, where is the breakfast burrito?", "type": "review", "business_id": "4YfXP-NxQXntqi0qAknU5g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "VNEqps27mp8-gTqTfzg7yw", "review_id": "W4LWUHQ3d3Y2nyPNSVXTdQ", "stars": 3, "date": "2010-10-23", "text": "Pei Wei is always busy, that's gotta mean something right? Wrong. There are restaurants that serve billions yet all they serve is a gross mystery. Pei Wei is no mystery though, the food is cooked in an open air kitchen. Even so, if there were such a thing as Asian fast food, Pei Wei would be cleaner version of it.\n\nMost Pei Wei's are situated in pompous locations where ever there is an AJ Fine Foods, but atleast they aren't located in the ghetto.\n\nAs far as the food goes, it is about as Americanized as you can get. So if you live in America and have American taste buds, it will appeal to you. Unfortunately if you want authentic Asian food you won't find it at Pei Wei. I don't understand why they even bother to put chopsticks on the table, the rice isn't even sticky enough to pick it up with. They are for decoration. They are part of the 'fake' Asian dining experience. Apparently, Pei Wei serves food \"manadrian style\" from Thailand, Vietnam, Japan, Korea, and China. In the words of Bill Lumbergh, \"Ooo.. yeahh.. I'm just not sure about that.\" Having traveled to China I can honestly tell you that Chinese food is different. Apart from the rice, the food lacks vegetable oil and garlic. In China those two ingrediants are used in many dishes and Pei Wei lacks them. When I first started visiting Pei Wei I ordered the Sweet and Sour, but I got sick of it. Sometimes the meat would be tough, sometimes the chicken would clump together all nastily. What I get now-a-days and what I got on this particular day was Mandarin Kung Pao. Even though the dish is spicy, that doesn't mean it has to be dry - and it was. What it was missing was some catalyst to bring out the spicy flavors and make them more vibrant.\n\nThe dishes at Pei Wei are family style meaning they are meant to be shared with several people. A dish and a drink will end up costing you about $10. If each person gets one dish, that's a lot of food, probably enough to feed a small village in Africa somewhere. It would be nice if they served each dish in two styles, family and single, large and small. Family style is great if you always visit Pei Wei with your family. But if you are out for lunch with people from work you might not want to share your food with your co-workers. They aren't your family. You don't know them.\n\nPei Wei is a modern Asian diner that is probably better than most of the mom and pop Asian diners out there, even if most of the food is cooked by Mexi-- I mean Asians.", "type": "review", "business_id": "gFGldPLVQdqbHQodU5TeUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TxOR39w0Mlbd4h1siXyb_w", "review_id": "8rU07y5scGgm2rpghbkMpA", "stars": 4, "date": "2010-06-11", "text": "Watched the Ignite Phoenix #7 viewing party here on Friday Night. Thanks for hosting. Had a lovely Americano while I watched. Great drinks and cool interior. The other guests seems to be talking about their food as being very good. This is a little out of my neighborhood so don't know how often I will be able to stop by, but if I am ever remotely close and need a little java, this is a great little spot.", "type": "review", "business_id": "F-ZOeAK1v7e5Rt2Mv5rVMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ngwtU9exHb5P3ehMUBxftQ", "review_id": "FTjqFTEhA8MqGYqlhtMaCQ", "stars": 4, "date": "2010-12-21", "text": "Love the bar! The two guys that sing and play music there Wed thru Sat nights are just amazing. \n\nManuels' has very authentic Mexican food. Best enchiladas and refried beans around. \n\nBar is adorable after being renovated recently. Restaurant could use some updating.", "type": "review", "business_id": "NJTIb6bro3gmfo7Gp6rDLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "t5qFxYP2t6ltRbvhqJsZAQ", "review_id": "6443pQKHzT6MsItVYa7o8w", "stars": 4, "date": "2011-01-17", "text": "This was my first half marathon. I enjoyed the music the buzz of tens of thousands of people all about to do a crazy long run. It was amazing seeing the sunrise over the city. I found the parking, shuttles at Tempe and food-court to be very easy to use. It seemed well planned for such a large event, just not enough bathrooms for the amount of people.\n\nThe PA for the full marathon kept going in and out so it introduced the 2 star athletes but you couldn't hear their reason for being there or accomplishments. \n\nBathrooms on the course were way too few and huge lines. I felt bad for those who needed them. I saw less than 10 at the first 2 stops for 12000 people. If you gotta go #2 on the course, too bad,... Take Imodium on race day I guess.\n\nBands and support were fantastic, but this was my 1st time so can't compare.... GU gel is always on me, great to see them out there. The course is NOT flat having a 'heartbreak hill' in it at mile aprox. 9. UPS gear check bag split apart at a feather's touch the day before the race. Good thing, i was going to use it. The top of the seam isn't sealed so any slight pressure/tear will open the entire side. \n\nHa\n\n\nABOUT THE AUTHOR-INTERESTING BACKGROUND\n\nMy first endeavor was a rolerblade marathon in tucson in 2004. I guess it's out of style now so no more skates. Used to do the New TImes 10k in phoenix every year too. GONE, sad.\n\nLast year I did the Tour de Phoenix 72 mile bike race on a 33lb. full suspension (no lockouts) mountain bike with slime in both tires and all my supplies on my bike and camelback... thought i was tough, 'till I tried running! Injuries were now a new thing now and it is much tougher per hour than biking, but about the same calorie burn... Still love both. I did a sprint triathlon recently too.\n\nWe all know running is 'hard' you don't get extra calorie burn from impact stress but something about running and especially in this event captured my interest. On the way to the zoo last year i saw the half marathon pass by and said \"I think i could do that NOW\" boy was i wrong... it took me almost a year to train for this event, but what a worthwhile challenge. \n\nI did this as a run walk 3 min run 1 min walk. I learned from the Galloway training method that this method is not only easier but faster than trying to run straight through. .I am capable of the constant run for this time but it winds up being slower than when i take walk breaks. I tested this with a 10k distance. I was 7 minutes faster with a run walk than running straight through. look it up, may change your life too. I took 50 1 minute walk breaks and i did my time goal of aprox. 2:30 with 1 bathroom break.", "type": "review", "business_id": "oRJgXbcawYd3kULBucqdnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6TTL3a3yvB-5Kmkz0IshYA", "review_id": "4Crzom7uBVRE7Klq1NSy_g", "stars": 5, "date": "2011-07-24", "text": "I was Frost bitten when the first location opened in Tucson. Since 2008, I have tried numerous gelato places and none have come close to the creaminess, tastiness and overall authentic fare as Frost. Each dip of the spoon is reminiscent of my travels abroad in Italy with memories that bring a smile to my face and pleasure to my tongue. \n\nThe San Tan village location is 25 minutes away but the drive is worthwhile. The staff is friendly, helpful and armed with spoons for you to sample any flavor you wish. I went with the dark chocolate and salted caramel. Truly delightful! Word on the street is there are 3 locations to pop up around the Phoenix area. I think Tempe would be a great choice! Hint hint....", "type": "review", "business_id": "8HQ8clouLGgee99KkR4vXA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yGq213PmiwYSYrhDLPWTSQ", "review_id": "sb60pi-68jjtk9pqqUibug", "stars": 2, "date": "2012-08-27", "text": "I Live close but will stop eating there. The service was slow, my friend complanned about a order he had and they said ow next time tell them to make it different for you? Really then I ordered another simple California roll Took forever. The Sushi is allright but the overall experience is worth driving somewhere else you lost me...", "type": "review", "business_id": "PlcCjELzSI3SqX7mPF5cCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rq46hVxWltv4OmgWN4_2hg", "review_id": "TFrjCKz6muUg7lOaqjLl1g", "stars": 1, "date": "2012-03-04", "text": "Beware... use only a credit card so you can stop payment if you need to. ( our sales person encouraged us to pay cash and get a 10% discount ). Big mistake, Any problem you're on your own...really... On your own! We've spent over $3,000 at this store and it has been a nightmare. Delivery took weeks longer then our sales person said & our paper work indicated. There was a mistake with the fabric, the paint was mismatched, what was to take 10 days took 3 months. Not a darn thing was handled properly. Every call we made to \"customer service\" was routed directly back to our sales person. We went back to the store in person but there is no mgr, no one except commission sales staff and a voice mail merry go round.", "type": "review", "business_id": "b3zJrtYqVg4ZXmiLN8V84w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oCFQmDotqcyIYAY1JyKUPg", "review_id": "Xez1kc_VkawZVRVOKLUxTQ", "stars": 3, "date": "2008-12-28", "text": "Good to know they still have independent films and they chose wisely what to play. Unfortunately this location seems to be attracting 40+ yuppies! I was shocked to see how many middle-aged and even elderly were at Camelview. That was a disappointment :/", "type": "review", "business_id": "GOlq9CGj4APl_S2jyhMr1g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "tKZ9rPYqSkaw38VxLnkcJg", "review_id": "2c3mlU7sXoNAQn-IR2gEtw", "stars": 5, "date": "2012-03-16", "text": "Don't usually give 5 stars, but this is good sushi. At first, I was a little skeptic of all the macadamia nuts on their sushi, but it is a great compliment.\nThe rolls are original and all very good. The Climax('s) and the Elliot are my favorite.", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Y7Jxglm9zeHipx8zrhULiA", "review_id": "3ND3AjsdWmZ3sNEVqkSaoQ", "stars": 5, "date": "2012-02-29", "text": "Great activity for kids. It's clean, spacious and safe.", "type": "review", "business_id": "RUZTqEmHP_K9pV4fyzJ7dA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "HOleI3jz1MLNUJ6cc1x0Pw", "review_id": "fqo1JvvrZZ19lwymADJhfw", "stars": 4, "date": "2010-04-17", "text": "I'm working downtown now (new themed list to come soon!) so I'm exploring the area from a different angle. I'm no stranger to downtown/midtown's happy hour and dinner spots, but I've never had to go out and search for breakfast or lunch during the day. \n\nI checked out Focaccia one morning when I hadn't had breakfast yet at the recommendation of my husband, Myles M, who works right around the corner. He said I should order the breakfast burrito, so I did, because he's pushy and I always do what I'm told. Ok, neither of things are true, but in this case, he had conviction and I obediently complied. \n\nThe breakfast burrito was worth every penny. Being a somewhat recent convert to pescetarianism, I got it with egg whites (cool that they had that option), spinach, green salsa and potatoes. The woman behind the counter made it up right there on the grill and it was warm and delicious. The potatoes were skin-on which gave them a great texture and flavor. The eggs were perfectly cooked and the green salsa had a great kick. \n\nThe hot coffee from the carafe I got to accompany it was airplane-quality, but next time, I'll just grab something from Cartel on the way back to my office. God knows the burrito alone will be enough to keep me coming back to Focaccia.", "type": "review", "business_id": "ssSeK9MYRCUjoabppekwoA"} +{"votes": {"funny": 5, "useful": 7, "cool": 3}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "Vhb4LNZmWhjnrefhLpkH2g", "stars": 1, "date": "2009-10-17", "text": "Received two more messages from \"Iolanda\" this morning. Thought some of you might get a kick out of reading them. I'm definitely never going back to 98 South. Hope this info helps some of you... BTW, don't you just love orangeheads?? Doling out insults are so much easier when hiding behind a mask!\n\n19 minutes ago: Obviously rebuttal is not your friend but jealously is your neighbor......\n\n9 minutes ago: Thought the drink was for your gentleman friend but your the one that had to abandoned it.....You really shouldn't have your picture posted ......pug!!! I mean easy target....Lets go west side .............yeppie!!!", "type": "review", "business_id": "ou5yH_kNEiN8J_GTSGYSvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "M_KeR3EJoIOBKGP6o9MhCw", "review_id": "iTXs7zAirspJU8VRtnqsSQ", "stars": 5, "date": "2011-08-23", "text": "Wow what a fun little antique,etc. store I stumbled across the other day! I stopped in at the Starbucks for a refresher and noticed all of this funky stuff out in front of the store! I went inside and it was a combination of an 19th century hardware store and art walk. There was just a little bit of everything-\nsome vintage, shabby chic, crystal door pulls - industrial - toys. The owners are great and are going to help me find a little period table I've been searching for. Lot of great accents! I'm hooked! I'll be back with a vengence!", "type": "review", "business_id": "TkBtRfqMpJ32B0ZM9zYxWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W8VVAWydRYFRFvCVii1UsA", "review_id": "618blGd-R-MzT2NX0_8Ccw", "stars": 4, "date": "2012-02-09", "text": "Fantastic place to have a vacation..love this place. Close to shopping too...", "type": "review", "business_id": "SYqTY48DJa1cYhglvmgvsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GywNr_rMfszS5R6VX8Qtdw", "review_id": "uD4UK0gSQwSSdPCFNtJZog", "stars": 5, "date": "2011-11-02", "text": "AMAZING. Everything we had was the best we have eaten; sushi, crab cakes, oysters! It's a MUST if near the Scottsdale Quarter! We chose to eat there 2 nights in a row, once for a reserved dinner and the other for the happy hour.", "type": "review", "business_id": "ZhMlXLXuZf5z7lxunHk2ww"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ygZTPe52ZhK9jOBzS8GQ8g", "review_id": "jPBlPTT3kj1bbJbDyeojHA", "stars": 5, "date": "2012-03-14", "text": "This was the perfect lunch! I got the Sack's Symphony with turkey, bacon, avocado, sprouts, tomato and cream cheese. It was SO SO good. The combination was prefect. There was plenty of meat and toppings piled on- it definitely filled me up. It's clear the place is a well-loved lunch spot- it was a full house at 1:00. I can't wait to go back.", "type": "review", "business_id": "jB1fFl1eIEPYe5FLpCZ5Jg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "9vxUUOoasnu8gtoXRwAhYw", "review_id": "64qFW2X1beHEAKtAmRRUWQ", "stars": 4, "date": "2009-03-18", "text": "I was looking for a reco for a 'significant' [eh hem] birthday dinner and foodie friend Jim suggested Mission because of Matt Carter. We had a 7 res and parked right in front...fire blazing out front, nice feeling. Inside, the decor is appealling but because of the lack of soft surfaces, its really loud. [Full disclosure: I did not inform them it was my birthday] We were seated along the banquette wall and were a two top next to a four on each side. Noisy, obnoxious. \n\nServer was very nice although stumbled over the bar order [and it turned out they made a scotch substition that they made no mention of]. Had I not already done my yelp research I would have been at a loss as to what to order. We skipped the apps and had the swordfish and the pork. Swordfish was a fine attempt but I thought over citrified and small bit over cooked. The pork tacos were genius. The combination of the pork, the sauce and the accompanying red onion, queso and cilantro on the home made corn tortilla just sang. The pork arrived as a glistening chunk that falls apart. Well worth the $32 and meant for two. You can also ask for more of the tortillas. \n\nWe shared the churros and milkshake for dessert. DEEEVINE. Warm chocolate churros sprinkled with cinnamon sugar and an amazing milk shake that we really enjoyed. \n\nI'd go back and sit outside by the fire and eat the apps and have drinks Plates are small to begin with and I think if you expect a crazy WOW dining experience, you'll be disappointed. I think the service is working out some kinks, the bar seemed okay [although the TV is this space seems well, off putting...] and the kitchen seemed to be cranking. \n\nI do think its very fine food. \n\n.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZHjFFM_sWM3Ky1PCqgnuKw", "review_id": "2udkAY82hihBOSMrVb1_Kw", "stars": 5, "date": "2012-03-10", "text": "Great shopping place for clothes, jewelry, art and home decor! One of those GREAT finds and the owners are really nice. It has boutique clothing at affordable prices, great atmosphere and FRIENDLY!!!!", "type": "review", "business_id": "YNH_ipgJX6DluTS46T8r9w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "4awtPy_a90mciUxOVQaENA", "review_id": "e10eDhtn5eWwumfhK6idSA", "stars": 4, "date": "2011-05-19", "text": "Great Concept!\n\nMy girls love this place. You have to really learn the schedule when the place is really busy (because it gets packed) and that is when the experience is diminished and the potential for getting hurt is heightened.\n\nThe big plus is the multitude of things to do. For the smaller,. younger children, they have their own set of trampolines and the bounce houses..well, who doesn't love a good bouncy bounce!\n\nThe older kids can experience the main attraction and I will tell you that watching some of the stunts is pretty amazing! Not to mention the dodge ball, foam pit and the maze...2 hours gets eaten up pretty quick.\n\nWhats great about this is that kids are being ACTIVE and really getting a work out. I was out for like 10 minutes and my butt was kicked...so this is a great way to get your kids moving and motivated.\n\nThe staff is young, but so is the staff at hot dog on stick...but they keep things pretty well under control and I have only seen one person get hurt in all the times that we have been there. Looking for common sense, good customer service, or a straight answer and you might have better luck talking with the floor.\n\nWorth the money...great value...and fun. A definite two thumbs up in my book.", "type": "review", "business_id": "S2pW9v2BOszKIec7qzQ_rQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3kzwkwD89YWBnSq7jdAZxQ", "review_id": "Wi5XeLHEg-RK7_uv0OzW2Q", "stars": 4, "date": "2011-11-25", "text": "Was in Phoenix for business and had to check out this starwood property.\nI've stayed at W's before so I wanted to compare.\n\nThe goods:\nStarwood property!\nClose to airport\nGreat price\nCool room - very hip compared to most anything else you're going to stay in.. Not quite a W but not your typically Sheraton either. \nFriendly staff\nHad this really cool video input box on the desk connected to the TV. Allowed me to plug my laptop video into the box and have it come up on the TV. Was able to stream netflix easily to the TV.\nThey have a bar\nEasy parking close to the door\nLocation drive-able to restaurants\nPool \nQuite\n\n\nThe not so goods\n\nBed and pillows kinda like a futon. \nNo formal restaurant. \nFunky frozen dinner/entries offering is more funky than useful to me and I travel a lot.\nThey do have a delivery menu from some local restaurants (A-Loft note: Ruby Tuesday's food sucks)\n\nI would give it a 5 if it had a formal resturant. \n\n\nWould I stay here again - yes for sure!", "type": "review", "business_id": "n25AWEdWRaNMdMI_uN_VOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y09Zhjx7671gvyPqHdAJ5w", "review_id": "fv6iCvVjBrXH1mVwshIEPw", "stars": 4, "date": "2012-12-08", "text": "This place is great! The pizza is so yummy, thick chewy crust and good sauce makes it one of my go to places for pie. The wings are fantastic with a diverse amount of different sauces to choose, from the classic mild, medium, and hot to BBQ, honey hot and my favorite sweet baby rays sweet chili.\nThe interior of the restaurant is large and nicely decorated with lots of wood trim and there is a kids play area and TV's to watch sports and such. Sit outside in the patio or take it to go.", "type": "review", "business_id": "5DanV2PGA1vk8i1Hhd8JrQ"} +{"votes": {"funny": 6, "useful": 5, "cool": 4}, "user_id": "W9n_ZyVCXD0HfPqn6qriOw", "review_id": "ic_Orde3PLC97_4EJqZI3Q", "stars": 4, "date": "2008-06-30", "text": "I want to make love to a cream puff sundae. Maybe even marry one. They're that good. Other than totally awesome desserts, this pace is a dump. The g-damn flickering fluorescent lights give me a headache.\n\nGo there for dessert, inhale it before the flickering lights give you a seizure then run before you get sucked into a shit-hole linoleum time-warp.", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "gnirIlRf-E9uBUZhRzvPzA", "review_id": "ysXcFqnWNQ33d_Qh0-cClw", "stars": 1, "date": "2011-03-28", "text": "Totally excited to try this place out, my grandparents, my mom and I (4 of us) came here for some Korean food. It wasn't too busy; just pairs of people from nearby offices coming in and out. \n\nUnlike other Korean restaurants, their lunch special selection is very limited. Special A consists of a sushi roll with a soda, special B = teriyaki beef/chicken (no soda), or special C, Korean BBQ Spicy Chicken. \n\nAs we were looking at the \"lunch special\" board, the lady behind the counter insisted that we should look at their full price menu instead. Here comes the awkward part: she then asked my mom \"are you Chinese?\" Even though she is, my mum looked at me all puzzled as in \"what does that mean?\" The lady proceeded by pointing at the \"seafood pancake\" section on the menu and saying \"I don't know why but you Chinese like this pancake a lot.\" Good thing my mom didn't hear what she said.. or else... \n\nSo we got the Spicy Chicken lunch special ($6.99), a bulgogi ($6.99), and a beef yakisoba ($7.19). The cool thing about this place is that it has a mini \"kimchi\" buffet bar, with trays of marinated tofu, potato, bean sprout, kimchi, broccoli and some other vegetables. It also has this delicious house special hot sauce. \n\nBy the time we finished a dish of kimchi, the food came, so it didn't take long. The spicy chicken, came in a bowl about the size of an instant-noodle bowl (but slightly deeper), was tender, with rice underneath it. The chicken was definitely marinated well; however, the last couple of pieces had tendons and big chunks of fat... what a bad way to end it. The bulgogi also came in a bowl, with rice underneath. The beef was definitely not marinated fully. The color was super light and the beef was close to tasteless. The biggest disappointment, food-wise, was the beef yakisoba. The noodles, occupying most of the Styrofoam lunch box, were sweet. Then there was an ice-cream scoop of rice, topped with 3 pieces, I kid you not, THREE pieces of dog-tag-sized, super-dry meat. \n\nIn the end, we just decided to bring the barely-touched yakisoba home for my younger brother (well, teenage boys tend to eat everything...). While my mom transfered the noodles to the plastic bowl (since the Styrofoam box was lidless), I went to ask for a plastic cover. This is the best part: the same lady, stared at me, pointed at the salad bar and said \"you can't take that home\". I thought there was a miscommunication, so I asked again for a lid for the noodles. Again, she pointed at the salad bar and said \"you are not allowed to take the kimchi home\". Wow seriously? Just b/c my grandparents are Chinese you assumed we were stashing kimchi in a bowl and trying to sneak it out? \"Look, I just want to take my noodles home, ok?\" She hesitantly gave me a lid.\n\n\"Hey, hey you. we chineness peple no steal kimchi becuz Confucius say 'no stealing kimchi'\"... only if I said that to her face...\n\nOh, and when we got home, my brother, aka our food dumpster, took a bite of the yakisoba and never touched it again. \n\nConclusion: If you want amazing Korean food and friendly customer service, please just go to Chodang. Chodang is WAYYY BETTER, hands down", "type": "review", "business_id": "7UZQ6qGX8lP7a3jokfYVjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uTyIIbOvXH_XZw7OEiTiNg", "review_id": "TbY0qDzbkqU5gP_UTjIKDw", "stars": 3, "date": "2011-02-28", "text": "Ok, they should be happy that I am understanding of the flying bug that landed in my dessert and died before it was served. Yes, I found it as I was eating the dessert, grossed me out, but not necessarily their fault. The manager came over and apologized and took the dessert off the bill and offered me another one. Anyway, the rest of the meal was great. My party and I had the scallops with green beans and capers. Yummy! I do like Pappadeaux's overall and this is the first time I didn't have a great experience.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EiD6jKEPhaPIWRvk4AQPDw", "review_id": "sTZU3JC26VsqnEMSw6kWEw", "stars": 1, "date": "2012-10-26", "text": "3 months, 22 emails, 10 plus calls and (I think) we have the final refund from Budget! \nStay clear of Budget Rental they DO NOT care about customers or resolving their monumental mistakes!", "type": "review", "business_id": "FYCVF_1qYm3x5DYCbmmK1g"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "Y1bWMPTcTf4GBP4OcTGnTw", "review_id": "gOV1oow2DyrG_d0-t_rwKw", "stars": 3, "date": "2010-08-06", "text": "Don't get me wrong, White Chocolate Grill is good and definitely a place I will go back to, but there is something that just doesn't click. Everything tastes good and the service is fast and efficient but it is more of a relaxed dinner that a meal you get excited about. I can't say for everyone I really don't like waiting a half hour for a table. Call me impatient I don't care, I really do not think many restaurants deserve that title even on a Friday night. I do love that they have an entire menu for gluten free diners. It's so hard to find gluten free in restaurants don't even mention an entire menu! I was impressed! I ended up splitting artichokes with parmesan (ask for no bread crumbs) with my mom and got myself a chicken caesar. Both were decent. We did end up ordering a gluten free chocolate souffl\u00e9 (make sure to specify that you want it gluten free because they had a normal version as well) which was amazing and I would definitely go there just for that. Overall a good family weeknight restaurant that is that is above average meal. Definitely a place to go if you have celiacs or are gluten intolerant.", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "U1GsZ4H3Ih7jZ6orRT708Q", "stars": 5, "date": "2010-06-04", "text": "I been here once and I loved it!! Food here is amazing! Decor is cute, felt like walking into someones home! It's communal seating so get to know other guest! Service was great, but before I continue....They're closing this weekend due to the lack of business! OMG! I recommend going before you miss out - take care Lola - what ever you want - you get :)", "type": "review", "business_id": "xdwPHc25l7_roZ9Kfea13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "toD5fpe7--5ljkAz1ee-cw", "review_id": "h8wpsGAv2jMNLVk_gCbBOg", "stars": 5, "date": "2008-11-12", "text": "I am totally addicted to this place. Tons of flavors of smoothies, and perfectly cooked Boba. Green Tea, or even Vanilla Chi - so far all the flavors I've tried have been fantastic.", "type": "review", "business_id": "Oz1w_3Ck8lalmtxPcQMOIA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nGvxLe5jdJGbxTYt9XjScw", "review_id": "TSnRYXMdWMIVBR1q_UGRvQ", "stars": 2, "date": "2011-12-04", "text": "USE to be the best Pizza in town. Unfortunately that was like 10 years ago. Now this place is overpriced at about $10 for 2 slices and a drink. Trust me you can find better pizza almost anywhere and they charge for ranch as do most pizza places. But isn't a pizza joint charging for ranch the same as a burger place charging for ketchup?", "type": "review", "business_id": "h762dZ33uhSKtLZ-21u6Jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "51ihQrxanlevNyCQut_NUQ", "stars": 4, "date": "2012-07-01", "text": "The BF and I got coffee here last night as part of the coffee tour of Phoenix!!. The coffee was alright, not too acidic, but not the most flavorful coffee, but the main reason for the 4 star review is they are open late and they deliver! How awesome! The people who work there were all friendly. The ice cream looked good...will have to try in the future.", "type": "review", "business_id": "DmkTDze8ruJr6o2f5GAvJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rRq4dTjGMY5DZpw8Yl_l-A", "review_id": "0Hwi_7eL2yspFF962axPrg", "stars": 4, "date": "2010-10-03", "text": "Pats is predictable. In the retarded amount of times that I have eaten there, i've never been served pizza i'm unhappy with. Best pizza slices in Arizona with good prices. Generally stopping by for slices is the easiest way to find good service with little to no wait. \n\nNot always the friendliest workers, but that doesn't make my pizza take longer or taste any different!", "type": "review", "business_id": "GvwDppcJLm9lso9iS2hSIw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "5o7opBKdsXz9p-SIQzcFWg", "review_id": "M-u-OywHecFw-9Yahzenng", "stars": 5, "date": "2012-07-03", "text": "Words cannot express how much I love the meat shop. I love it like a fat guy loves the place that sells him the best bacon he has ever had... because I am and it is.\n\nI'll be honest, it can be a bit intimidating walking in to the Meat Shop for the first time, if you aren't a chef and don't know your cuts, you may be afraid, but don't fear just ask for help because the staff are excellent!\n\nWhether beef, pork or lamb, the meat here is always the best quality, and knowing its locally raised and by people who care about what they are doing makes it even better. And price? I've never compared closely but I don't really think twice about the price here!\n\nBe warned! If you buy meat here, you will be ruined! You will never again be able to purchase that saltwater packed, antibiotic injected, hormonally treated, ammonia and pink good filled crap in your supermarket again!\n\nAnd that is a very, very good thing.", "type": "review", "business_id": "H010pkpCls0M-mjIzSCVlQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "RknsoxpICgtuuv46uaTpyw", "review_id": "wWwK4oB_3YJYHzOEUbMd9Q", "stars": 5, "date": "2010-01-12", "text": "I LOL just thinking about some of the cast members and skits that I have seen at Jesterz. The first time I saw Jesterz, I was expecting it to be pretty awkward and honeslty didn't know what to expect. I was blown away how funny it got at times. Good clean funny. We went again soon after the first time but didn't go again for a good 2 years, we went back recently and was kinda worried as the crowd was not as big as past times. Even with a smaller crowd there were tons of LOL moments. Writing about it kinda makes me want to go back.", "type": "review", "business_id": "IyldfEGfCVcEOb7SMlKs7Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "LTPOITOC6s_Txf4rbPI-5g", "review_id": "tSagcL0Gj9Y-Rv2CNbGf6w", "stars": 5, "date": "2009-01-10", "text": "What a great place to hike/ run/ shred! It's a great hike to shake up the routine with. A steep hike with bits of scrambling to a summit with amazing views. \n\nThe only downside is there's mad crowds of people snaking their way up and down the hill. I feel for humanity sake I must pass on some words of advice. \n\n1) If you need to pass- Just say \"Excuse Me\" or \"On your left/right\" or, if those don't work, \"Can I pass?\" Don't frustrate yourself and huff and puff behind someone because they can't interpret your grunts. \n\n2) The railing sections. Yes, it's steep but if you see someone running down using the railing and trying to go fast- LET GO and let them pass. There's this thing called gravity and it will keep you firmly on this earth. Trust me you're not going to fly off into space nor topple over backwards. Then you can grab the railing and pull yourself up if that's what you need to do. \n\n3) I can't believe I have to mention this- DON'T FREAKIN' SMOKE on the trail. Apparently there are some who can't savor life's moments without puffing on a cigarette. But if I see you smoking as I hike this thing I will be forced to kick you in the shins. I can't help it it's what happens when I inhale second hand smoke. \n\n4) Your trash does not add to the ambiance. Pack out what you take in. This includes dog owners. Pick it up. Nothing will decompose because this is a desert. Just sayin' \n\n5) Finally, sometimes in life when we arrive to our destination and find the parking lot full one must consider finding other options. Yeah, you in the SUV waiting with the engine running for a spot at the nearest stall to the trail head. Park down the road and walk up. Ridiculous. \n\nHappy Hiking!", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "59pVYStY0yKpRmODFIfDww", "review_id": "24Rd6U5gGEHTyL9Ni3WeUw", "stars": 5, "date": "2011-06-12", "text": "The BEST Japanese food in AZ! Guaranteed! When you are looking for original Japanese food, or the closest taste to Japan, this would be it! The sushi is soooo fresh and they always carry out items that are not available in other sushi place like uni or sweet little octopus that I love! Their ramen is also superb and if you come here for lunch, don't forget to check in their special of the day cause they offer a great price with superb taste and lots of variety for lunch!! Love this place so much!", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "fNfLXX_ce2TQPrdHCqPzZQ", "review_id": "-qaK0Og9Y-kamHCEnA5zAA", "stars": 4, "date": "2009-10-20", "text": "I met up with a girlfriend at borders. This Border's is across from the Scottsdale fashion square. The store is inviting, clean, bright, and new. They have a variety of books, and good sales.\nUpstairs is the Seattle's best coffee cafe. I had a coupon for a free medium drink when you buy a bag of coffee beans. I was surprised how good my cafe mocha was, better than Starbucks.\nnote: If you have little kids, they do have story time on Mondays at 10:00 AM. Every Friday is Bean Friday in Seattle's Best Coffee cafe. Buy a bag of beans and receive a FREE medium beverage.", "type": "review", "business_id": "RIRgqPezzlRVV4Y2G5TgoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sjp6EYsqzdlTvymER6wBfg", "review_id": "DTWJoQIVPjKVT4tGtOk_IA", "stars": 3, "date": "2006-02-27", "text": "I was so looking forward to going to this restaurant. It has a nice view of a man-made pond, but the food is barely average. If the ambience wasn't so nice, it would get only 2 stars.", "type": "review", "business_id": "q-qjZDKcBdDRuIUxj7b97g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YotZjCLjwvkj8Nth59I7kw", "review_id": "_T9a2jf6sOSgK9tosmbEog", "stars": 5, "date": "2011-08-28", "text": "I'm a sucker for a yummy coconut cupcake and Tammie Coe has the best around as far as I've tasted, and I've eaten a lot of bad coconut cupcakes -- all in the name of research of course. Keep 'em coming, Tammie!", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SWQ473Py5zCDHU4IbxlE2Q", "review_id": "cBuGiqccc8mE8x6f_JidHg", "stars": 5, "date": "2009-07-16", "text": "Great pizza and awesome must have guacamole pizza appitizer!!!!", "type": "review", "business_id": "o-OV2LkJxpcCHmI_d4TZiQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 4}, "user_id": "G_6pOq1gA4jyJ3j8mjOyJw", "review_id": "5D42dSu05inEQO7z_vRSGA", "stars": 4, "date": "2010-01-14", "text": "I usually try to stay away from the Arizona Mills mall. The mall itself has gotten crappier by the minute. Now, since I work close by, I was forced to go back to venture to Paradise Bakery. I honestly did not get my hopes up.\n\nSince it was lunch time, it was not busy at all. Nothing is worse that being on your work lunch, starving, and standing in line. I opted for the Chicken Walnut Sandwich, with a cup of Tomato Soup. \n\nThe sandwich was delicious and fresh. The bread was perfect as was the chicken walnut salad. You know...sometimes chicken salad can get really gross..slimey..salty...yucky. This one was perfect and the walnuts added a delicious crunch.\n\nOn to the soup. First off, I L-O-V-E tomato soup. It is my favorite. Would almost consider taking a bath in it. Hehehe...well, ok maybe not. BUT this soup rocked my socks off. Perfectly creamy, with a hint of smoky flavor, a small drizzle of sour cream and a few crunchy tortilla strips. YUM.\n\nSo, venture there to try the soup but scurry fast and take the food with you. Don't eat there. Take it somewhere, where you can have a moment alone with the soup. \n\nFinito.", "type": "review", "business_id": "nzfTy-pnGeEgQdRW2CUriA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YMB29SPB8Z_a2be4O5gxOg", "review_id": "LMNMznPijRFtrRnJGu3-Kw", "stars": 4, "date": "2008-02-24", "text": "Having a record store in the Memorial Union always made me nervous. Nearly everything in that building is specifically designed to rip students off and I didn't think that Hoodlums could possibly be an exception.\n\nFortunately, that assumption was incorrect. Hoodlums had a diverse selection, awesome sales, and an incredibly knowledgeable staff. The went well beyond the pop charts and were always helpful. The atmosphere was nice, particularly once they moved into the basement.\n\nThe store suffered smoke damage in a fire last autumn and the store is not going to re-open in the union. On their website, it states that it should reappear in the future in another location and I have my fingers crossed.", "type": "review", "business_id": "RS6V9TGTLQmBRuXsmWCOTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "84X86UrH-BlexZwZ2M0Y0Q", "review_id": "ufk7Kc1oiqS_OEGoIPiAew", "stars": 4, "date": "2010-11-15", "text": "You get a lot of food thats what I love! The guy was very very helpful although you know sometimes you just want a minute to think, that was noexisitant. The chicken is realld good, the ribs were better than okay, but not great. The beef was kinda salty. All in all though great bang for your buck!", "type": "review", "business_id": "3u7-xGwUKyGHkSexwBd9Wg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "-Gylxh4yUIsUbOeXyrqeHQ", "review_id": "DupG_4UiqngASoPLTolnYA", "stars": 2, "date": "2011-10-23", "text": "Okay...this was very surprising since it was just voted Best Southwestern food in PHX mag's Best of the Valley issue...and thus, it made us want to have a visit.\n\nI LOVE southwestern food...and I was very let down by this place. I feel like I should give it 3 stars...but as an \"A-OK\" rating, I just can't. If 3 stars were for \"OK food\" then I'd give it 3 stars. But truly, I have...I have had better.\n\nPHX Mag said to try the crab cakes, which we did, and they were delicious. Very happy with them and therefore expected the entrees to be just as great...but they weren't. : ( I had the salmon, which the waitress recommended and it was such a bummer. It had way too many conflicting tastes going on that didn't seem to blend at all. I lost my appetite after a few bites. My boyfriend had the shrimp tacos which were just...average. We were really disappointed. \n\nAgain, the crab cake appetizer was great and the two margaritas were as well - the Tontorita and the Prickly Pear - both very, very yummy. \n\nBut overall, if PHX Mag continues to recommend more lame-oid meals, I'm gonna have to start using it as wrapping paper instead of a go-to guide for great meals in this town.", "type": "review", "business_id": "TehSM5JrMRikSnjnnfulbw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "pvdXGtu6sAPDJiCIhfVBDQ", "review_id": "r1NrDLqFDKmaxVy70VoeMA", "stars": 1, "date": "2012-02-23", "text": "This place was horrible! I will never go back it was over priced and the best thing I ate was the corn bread you get before the meal. I had the chorizo stuffed tenderlion it was like chewing on a piece of rubber stuffed with soy. My girl freind had flavorless tacos with stale corn tortillas. three words it sucked, sucked, sucked!", "type": "review", "business_id": "hyff2JyqQgf85MaJZslHCg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ehhIzy0QaQ9B-V4VVMgYmQ", "review_id": "uWOai947MVYIhiQGstsdhQ", "stars": 5, "date": "2012-07-10", "text": "Just fantastic. I first went to Cornish Pasty in 05' a few months after they opened and fell in love immediately. Although a few things have changed over the years each one is usually an improvement and never a negative. \n\nIf you are not familiar, a pasty is a traditional British coal miners food. A hearty filling wrapped in a pie crust and baked. Kind of a hand-held meat pie. Cornish Pasty Co. has taken this simple and traditional dish and meticulously perfected each component. Their crusts are some how simultaneously hearty and flaky. Although their is nothing delicate about their seasoning it is never out of balance and all of the ingredients are always quality. \n\nBeyond just mastering the finer details of pasty science, Cornish Pasty Co. has also branched off into wild and exotic flavors. It's no shocker that the British know Indian food and it shows with the tika masala and the lamb vindaloo pasties. What is shocking is the refinement of the Greek and Italian inspired pasties. Perhaps my favorite pasty, from the cuisine most elusive to the British, is the Carne Avadado. This is a Mexican inspired pasty that will satisfy even the most snobby Las Cruses/El Paso foodie. If you have ever talked Mexican food with one you will know just what I mean. \n\nI have eaten nearly every item on the menu and not a one disappoints. It took me ages to get past the pasties and start ordering soups and salads. Now that I have had the spinach, mushroom, walnut soup, it is hart to save room for my old favorites. \n\nAlthough the mine shaft inspired interior is dark and cramped I have never felt uncomfortable there. The sound system is usually bumping classic rock and the employees are pierced and tattooed well beyond your typical wait staff, but everyone is friendly and service is typically good.\n\nIf I have to list a negative the only one I can think of is the food is consistently just a little better at the University location than the Dobson one. No clue why, but everyone I've talk to seems to agree, the Tempe store has the edge on quality. \n\nAfter you add a respectable selection of beers the only reason you won't be here every night is your waist line.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DFQ95g3s1oi-VcDZEO2TOA", "review_id": "e-QDXrRuDBSZOnzGLuAjOw", "stars": 4, "date": "2010-05-04", "text": "With a name like \"The Lodge\", I thought I was going to an old dirty restaurant with some of the neighborhood locals. We went here after a soccer game two weeks ago, and I have to say, I thought I was going to be disappointed. I expected greasy food, and grimy scenery. This was not the case, although the scenery was mildly disturbing as most of the decor included some dearly departed wildlife. I had a great sandwich I believe called the healthy choice, that was supposedly was healthy? It came on this great thick toasted buttery whole grain bread, egg whites, hollindase sauce, tomato and avocado. It was one of the best sandwiches I have ever had. I don't think it was a calorie saver by any means but I am sure it was just the idea it was made with healthier ingredients. For a lodge, this was a terrific restaurant, and yes this is a compliment by far, joking aside, as you remember my thoughts of what a lodge was all about. This is nothing like the local VFW. The only other scary part was this jerk at the bar decided to take his shirt off, and throw it across the room. And ladies, no, this was definitely not a pretty sight nor was it funny. They need to enforce the shirt and shoes required law here otherwise it will earn a lodgey reputation from me. Luckily, as this ghastly sight appeared, we quickly disappeared on our way home.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Yq-pv-frxMeQT9zWtdgUEA", "review_id": "X-hMQO91T8HvUS0fQFAYeQ", "stars": 3, "date": "2012-04-24", "text": "This goodwill is Alright, I have been to better. Their selection is okay, cleanliness is okay and organization is okay. All goodwill's prices are the same, as far as I know. The staff is helpful and I never have trouble finding somebody if I need help.", "type": "review", "business_id": "WorzvsB28dlSnCyuNslSdA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_rcvKZqCCzOcNjLf_V5y_A", "review_id": "YymSWhlV_Vb9p8b3puF4gA", "stars": 4, "date": "2011-09-28", "text": "Los Olivos is a quiet resturaunt in the Old Scottsdale city near the SF Giants spring training site. That is how I happened on this wonderful family style eatery. Arrived to the area to meet a Good HS friend and was way early. Used the Yelp app on my phone and soon I was here! Seated with out any wait. The place was just picking up since the ball game was not to far off and it was Dinner time as well. Service was very efficient and pleasant. I'm partial to Chicken what ever in these Mexican style resturaunts, and had a 'Chimi'. Arrived shortly and enjoyed it emencely.\nI would recomend Los Olivos to anyone. Looks as if they can handle most any size group as well! Everything is reasonably priced as well. Enjoy! Holla!", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vUM21g3cPEdSlI89oDttgw", "review_id": "BcHzjjfUtm5lTS6hV4WiTA", "stars": 4, "date": "2011-03-17", "text": "As I'm always on the chase for some of the best spicy tuna rolls, I would say Yen's is up there in my top 5. \n\nI haven't been in for happy hour yet, but I hear it is fantastic! \n\nWord to the wise though...do not get the dessert that looks like a pyramid. I can't even remember what it is called. But it claims to have a caramel center...um, not so much! \n\nIf you can avoid the desserts, then this is a great place for sushi and even specialty rolls. I haven't had any trouble with it being crowded or slow service like some reviews have mentioned. But I've only been for lunch and then another time late at night.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yzwPJdn6yd2ccZqfy4LhUA", "review_id": "YJNXlRUHB8z-GGD0vOJhGg", "stars": 5, "date": "2012-11-19", "text": "The castle is what drew us here. It's just the front of a castle with a reading nook in the bottom of the tower. The 3 year old was impressed as soon as he saw it. There is also a play area with big activity walls. It was a little hard for my son to comprehend being quiet while playing. Getting to the library was confusing with the GPS. Just follow the signs and park in the garage at the end to the left when you pull in. Well worth a one time visit.", "type": "review", "business_id": "oFW8Fjszgsmy39a5hUnoBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jPl_fIm16CLiV7M6yYigSQ", "review_id": "RrO_L0kXi57Teoxa7g6KYg", "stars": 4, "date": "2010-03-15", "text": "went for lunch today with my girlfriend. i had the chicken tacos and she had the mahi tacos. you get three little tacos per order. we switched one for one. the chicken was freakin great. i had a small chicken bone and some cartilidge in mine and i still loved it. seasoned well and dressed well with an adobo sauce, maybe. it had some green cabbage, some sliced fresno peppers and what i think was manchego. i loved it. the girl had fried mahi tacos (they offered the option of grilled rather than fried). it was good, had some remoulade and the same cabbage and fresnos on it. it was all good. the service, the food, the atmosphere, and the whole package. go here, eat here. be happy. quality over quantity. always. well done mission staff, well done", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LofguX32B2ewP4FUay2yNQ", "review_id": "nSDSUbynbyePy-rKBh1wYg", "stars": 4, "date": "2012-07-26", "text": "A little pricey for the portions but the flavors are outstanding. Homemade horchata is like my nana used to make.", "type": "review", "business_id": "zSzE4rW9FE3fGqiEzZ91Vw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rGaZmAwROLkDFo7lR9-Dzg", "review_id": "y00peMvECCREKVJnNSXh8A", "stars": 1, "date": "2011-06-11", "text": "This place is over priced and the service is horrible. I went there with my feiends and the server was very rude and degrading!", "type": "review", "business_id": "6nseTZb6WrGWcithRThfag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lxWwi3-EW9meZ_vOAP9JoQ", "review_id": "PL3HnzeZAu4CD8ibLCAlpQ", "stars": 3, "date": "2012-01-05", "text": "Average airport. \n\nI wish gate Marques listed which zone was boarding. There were three airplanes loading at the same time and it was near impossible to tell which gate was loading which zone. We just waited a few minutes and rolled the dice that our zone was loading.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "UoBfwbXaixelZBghbJ2cSg", "review_id": "Zb6LDlO3s9gjsNRR6dbhkA", "stars": 4, "date": "2009-06-22", "text": "As a vegetarian and sporadic health nut, I just love TJ's. They have a nice array of inexpensive fresh produce, including my beloved broccolini, for 40% of what Safeway charges. Huge selection of frozen veggie-friendly dinners, good for my on-the-go household. Greek yogurt, cheap. Nice beer selection with lots of cheapo wine. I try to buy all my supplements here too, as they seem to be a lot less expensive. Yes, I'm all about saving cash on groceries and whatnot.\n\nThe downside? It's not one-stop-shopping; a trip always requires supplementation with another trip to a \"regular\" grocery store. This particular TJ's is teeny-tiny-small, and always chock-full of obnoxious and/or oblivious people who wield carts like weapons. My favorite is the woman who thinks it's an awesome time to teach little Jimmy how to push his own wee cart and comparison shop, and lets the little bastard cruise all over the store willy-nilly. I'm all for giving your kid responsibility, but a) you still have to, you know, keep an eye on the kid and b) a super-crowded claustrophobic nightmare like this place after work is not, repeat, NOT the time to do so.", "type": "review", "business_id": "Sy-hmzSH1OmWpHmAfZtxRA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ZoU0sTLTa4wVVndrInbmTg", "review_id": "8smvaPjChMFtk9qZ2PYU9g", "stars": 5, "date": "2011-12-23", "text": "Dave at Dave's Ashtanga is the best yoga teacher. He is kind, considerate, patient and a very nice person. He will take the time to show you a yoga move or asana. He is very knowledgeable about different subjects. What I like best is once he said, \"here you can do nothing wrong.\"", "type": "review", "business_id": "CPjEow8UPIg1GfDrzmwpYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v0wqd0Ub6mu_5rZuar9gug", "review_id": "9bwjQQ7aLX4Evv_wsZyXzA", "stars": 3, "date": "2011-08-16", "text": "The hotel is a throw back in time - friendly people and nice simple resort. Love the free shuttle in the local area. The restaurant though is not bad, but the service can definitely be improved especially at breakfast time.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zGz5NI4sscO4_6YYH-qVtA", "review_id": "V9GeZGVIgRrP9bYKyDjNaw", "stars": 4, "date": "2012-11-05", "text": "This place shares with a Circle K.\nHate to say it, but get your 44oz. drink in Circle K for 86 cents to go with your chicken.\n\nBut I'm here just to deliver my Inside Skinny:\nTuesday has a leg n thigh for 99 CENTS, mild or spicy!\nIf you've had issues with freshness, go on a Tuesday, everyone knows about this deal and they're making lots of chicken all the time. LOAD UP!!! I get 5 orders and make it last a few days.\n\nMY PIG-OUT STUNT:\nTake the layer of skin from the top of a thigh and place on a plate crunchy side down, then peel off a chunk of chicken from the piece and place it on top of the skin. Apply a really generous amount of Frank's Red Hot or Trappey's Red Devil cayenne sauce. Fold skin like a taco and shove the whole thing in your mouth!!!!\n\nNo one can top this deal.\nChurch's tried but they just couldn't hang.\nSometimes the Popeye's thighs are a little small, but hey for 99 cents, what a deal!\nAttire: Formal (Jacket Required)\nHAHAHAHA!!! I just had to.", "type": "review", "business_id": "D0IB17N66FiyYDCzTlAI4A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "lw6YMo7l1csnQx43z9lqpw", "stars": 5, "date": "2009-03-13", "text": "Just a quick update.... Took my parents here for lunch today, and now I have 2 more converts! If anyone is still sleeping on this place, shame on you; you're really missing out. Why? DELICIOUS food made from QUALITY ingredients and FRESHLY prepared hot to order. Good stuff all around!", "type": "review", "business_id": "EWnSPExh_T5zTv6oMJOC5g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "x7QYSYyc_x63-61Z9SB8jA", "review_id": "z7cb3QxeN5fgpwKaDIFnDg", "stars": 5, "date": "2011-04-09", "text": "I love this place!!!!fun poker 3 days a week!!great food!!!great prices!!!even better people!!!!", "type": "review", "business_id": "DHk8is9rvfnATsW1AudWQg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "86Io8HRS_9cBUJyziXhSRQ", "stars": 4, "date": "2011-11-08", "text": "I had just been to the Chandler Deseret location and didn't realize the there was a second store nearby. This too is wonderful bookstore (though smaller then Chandler) where you can purchase both Christian and LDS items.\n\nThe only drawback to this location is there is no Lion House Pantry.\n\nBeing a non-Mormon, I've found the staff both friendly and helpful and have never been proselytized. \n\nSince I do have several Mormon friends, I've found the Deseret Bookstore a good place to go to purchase hard to find Holiday gifts.\n\nEnjoy!", "type": "review", "business_id": "1P8Yy8s5h2TK_SbweAz4TQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MfbH-4cBh0EXWd7IKEuEhg", "review_id": "tBJdg-VSk-1lYI9OWaDg9g", "stars": 2, "date": "2012-10-21", "text": "Pros:\n- Calm/Quiet atmosphere\n- Clean\n- Amenities are good *Hot tub outdoors and inside, large steam room & sauna. Nice sitting areas both outside and inside. \n- Products (Shampoo, conditioner & body wash were okay.)\n\nCons:\n- EXPENSIVE!\n- Beware of the 20%gratuity (i don't know who's idea this was but, i was a little offended at the presumptive 20% tip. I tip well when deserved but i like tipping on my own terms.) \n- Spa hostess at the front desk/checking in was snooty\n- 50 min massages\n\nI went in for Aji (swedish) 50 min massage, the massage therapist was personable and was attentive to what I asked her to focus on. I know the time limit was not her fault but 50 mins for a massage at these prices made me feel really ripped off. (i had a Groupon to offset the ridiculous cost but even that didn't make me feel better about the cost.) I don't know who thinks a 50 min massage is enough.......but come on an extra 10 mins wouldn't kill them!\n\nAll in all i would say skip it, it's expensive and for less money you can get a 60 min or 90 min and feel great because you didn't over pay.", "type": "review", "business_id": "qfFSS0A5OXUkCbTeC1fYLw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "sewG1yLHBNsP2dYJH3A86w", "review_id": "3nGgHWCRRa-9M4yD48ZniQ", "stars": 4, "date": "2011-04-24", "text": "Ok it's a chain, so there's that... But I'm like Bro'man and we luv us a good sammich! And Capriotti's didn't disappoint there.\n\nI went at an odd time and had the place to myself, it was quite clean and instead of just hanging out BS'ing the people were busy taking care of the place.\n\nSo the menu - short and sweet, that's how I like it. Unlike a place like the friggin Cheezecake Crapory with it's 80,000 menu items, none of them done well, Capriotti's keeps it under control and turns out a tasty sammy. \n\nI had the turkey sub with spicy peppers, mmm mmmm. I love the fresh roasted turkey like that, and the \"just like grandma made\" pickles. Well not like either of my grandma's made, but someone's grandma... The veggies passed the fresh & crispy test with flying colors and the sub roll was perfectly soft and chewy.\n\nYa it's slightly on the higher end fast sandwich price range, but its quality and pretty filling. I made 2 meals out of the 9\", with the meal deal right around $10. \n\nI have a Groupon for the place and can't wait to take my good friend and get him hooked. Next victim on my list: the Bobbie!!", "type": "review", "business_id": "DBoebGeuz91QAP3tSFYs6w"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "Pv7DGHzZ-uqIUdOsqPpsVg", "review_id": "rsp19tEZR_B3kzxicsijkQ", "stars": 4, "date": "2010-01-11", "text": "I am always on the prowl for a good burger so when I heard there was a new burger place in Tempe I knew I had to try it out.\n\nThe boyfriend and I went to Lobby's on a Friday night. It was not busy but the location doesn't really lend itself to busy. So we were able to walk right in and order. It's an order at the counter and grab a seat kinda place. We both ordered cheeseburgers and got an order of fries to share. I liked that the burgers were not pre-made frozen patties. They threw down two hunks of beef on the grill.\n\nThe burgers were tasty, a nice size - not too big, not too small - and the fixin's were fresh. So was the bun. \nThe fries were crinkle cut but they were crispy and good.\n\nThe atmosphere was fine, good for a quick sit-down and the staff was friendly.\n\nI hope they can survive in this location because they are worth a repeat visit for sure.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "X3YC_sUcSveCVOjamyDWyQ", "stars": 4, "date": "2011-08-18", "text": "great salads and burgers!", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "xNz9-XB-2Hy6rtPrQXkNBw", "stars": 5, "date": "2010-09-26", "text": "Fuego Bistro is one of my new favorites! A couple people have recommended it to me, so my boyfriend and I decided to try it for restaurant week. \n\nWe arrived about 15 minutes before our reservation to have a drink on the patio. The staff was super welcoming and friendly. Matt enjoyed a mai tai and I had a red sangria - both very refreshing. Our table was ready right on time and we had an awesome waitress who gave great suggestions on ordering... there were so many good looking options on their restaurant week menu. We're sharers, so we ordered with that in mind. \n\nDrinks: \nWe got the pomegranate mojito (very refreshing) and a peach-blood orange mojito (sweet, but very good)\n\nStarters: \nSignature empanadas: Tasty. The focus was the meat, I would have preferred more vegetables inside.\nSauteed prawns: The star here were the sauces - delicious!\n\nEntrees: \nCola Braised Short Ribs: AMAZING! Some of the best we've ever had. The short ribs were very tender and not fatty at all. The flavor was so good!\nPernil Asado (shredded pork): So delicious!! I made little tacos with their fresh corn tortillas. \n\nSides: \nGreen chili cornbread casserole: A little drier than I had imagined, but great flavor. \nMaple chiliglazed carrots: The glaze didn't really stand out to me, but good as far as baby carrots go.\nJalapeno creamed corn: I was pleasantly surprised - really enjoyed this one! \nChipotle cheddar mashed potatoes: A great side with the short rib. \n\nDessert: (By this point, we knew we'd need to be rolled out of the restaurant, but we HAD to have dessert since it was part of restaurant week). \nChocolate chip bread pudding: Really good chocolate chip bread with scoops of malted chocolate crisp ice cream. This was a lot of food after that meal, but I savored the bites I had. The ice cream was excellent!\nBanana burrito: exactly what you'd picture with scoops of the same icecream - delicious! \n\nI can't wait to go back to Fuego and tell my friends about it. Great service, charming atmosphere, and excellent dishes.... Fuego is a winner!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "hYph1O9SCO3B5tFmqzdOSA", "review_id": "ZVYiRNUem8TSfBIfoSYJNg", "stars": 5, "date": "2008-12-13", "text": "Never thought I'd review a supermarket, but since it's tough times for alot of people out there, I'd like to share my 2 cents..\n\nFirst of all, you don't need a card. The deals are for everyone and it makes it hassle-free during checkout. Now, about the deals ~ I find that Albertsons has the lowest prices and best deals and you can find them amonst any product you're looking for. It's WAY cheaper than Safeway for sure.\n\nThis is what i found yesterday: 88 cents for 2 (yes two!) snicker bars or other comparable chocolate bars, $1 for a bag of lifesavor hard candies, and $14.99 for a 24 bottle case of coors light. They also had 69 cent bags of frozen veggies that people were buying like crazy. Also, this location has really good cuts of meat. I'm Korean and was so excited that they had short ribs cut perfectly for Kalbi jjim (korean braised shortribs), and for $3.99 a pound, it was quite a deal!", "type": "review", "business_id": "YWDqj3nlQ6A13MJbuRvYDw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "HvaVgP0S0dFaCbBDIQIkag", "review_id": "83cmKpSCdvkUepzdUIMORw", "stars": 2, "date": "2012-03-04", "text": "We tried this out last night. We won't be back. \n\nThere is no indication when you walk in that it's a seat-yourself restaurant. We stood like idiots at the hostess area until somone asked us if we needed something. \n\nWe sat ourselves, and then sat and sat and sat because there was no server assigned to us. Perhaps that is a reason to seat patrons, so a server knows they've arrived?\n\nFinally, the hostess asked us if anyone had helped us, and she was very polite and took our order. \n\nOur drinks came out fairly quickly, but then we waited and waited for our food. This would have been understandable if the placed had been packed, but it wasn't. It was maybe 75% full (7:30 on Saturday) and there seemed to be plenty of servers. There was one large party on the patio.\n\nI ordered the vegetarian salad (can't remember what it was called) that advertised avocado, jicama, beans, and other yummy things. When it arrived, there was a tiny little mushy sliver of avocado perched on top, and no more to be found. It was as if someone scraped up the dregs of an avocado from the rind of an empty one and flung it on my salad. It would have been more forgiveable if they had just forgotten it altogether. Also, the white beans were undercooked. \n\nThe pizzas were good. I ordered the local organic vegetable one without cheese, and it came loaded with summer squash, roasted carrots, olives (local? Hmm...), leeks, roasted onions, and the crust was thin and crispy. My husband also enjoyed his pizza. \n\nI should actually grant an additional half star to the hostess/waitress, who comped my salad when I complained about it. I was willing to pay for it, but she offered to take it off the bill. \n\nThe final nail in the coffin was perhaps not the fault of the restaurant, but the large party out on the patio had 3-4 elementary-age kids literally running laps through the restaurant for the first 15-20 minutes we were there. If ignorant parents are content to let their hellions ruin other diners' experiences, then I'm afraid it's left to the restaruant to politely and discreetely ask the parents to please reign them in. No such luck. \n\nAnyway, this place has some things to work on. Fortunately for us, there are too many other great businesses nearby for us to give it a second chance.", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WUG7SjK9WtfU-3Y2Ua-XJg", "review_id": "tAu-WjBRdeiiddLDDFOukQ", "stars": 4, "date": "2010-09-12", "text": "I tried El Pollo Supremo based on a recommendation from my professor. I always though he was a smart man, but after eating here I know it. \n\nFor under $5 you get chicken that is juicy and flavorful and a plateful of tasty sides and condiments. Wrap it all up in one of the piping hot tortillas that comes with your meal and enjoy.\n\n Another testament to the quality of the food is the fact that on my most recent visit no fewer than three police officers stopped in for lunch. You don't get that kind of patronage unless you are everything that El Pollo Supremo is: cheap, fast, friendly, and delicious.", "type": "review", "business_id": "m_rEr3Vg1-f9Dg-Nag4FWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "vMvZp_yBFtjUVAiiO1TUuQ", "stars": 5, "date": "2012-08-09", "text": "Stopped back in here today for lunch with Arlin B., Robyn N. & Mike C. They're still delivering the same upscale Asian Buffet experience here as before, including atmosphere, food & table service that are just tops so it's \"Woohoo\" again for this excellent restaurant!! :-))\n\n(See previous review for more details. Weekday Lunch Buffet is still $11.99/$10.79 Sr.)", "type": "review", "business_id": "1sNa5oW9ZYX8MbMFkx9LzQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "Rtep3VNYoTnU64w3n3iDgw", "review_id": "fWDWpoGQGmKGqwsx2udStg", "stars": 2, "date": "2012-10-28", "text": "I was so disappointed. After drooling over these pictures and rave reviews for weeks I finally drove the ten miles to get my fantasy pizza. Imagine my surprise when they handed me this tiny box weighing almost nothing. I actually asked the waitress if she gave me the right order. Funny, she asked me where i'd heard about the place and I told her the internet, she said \"Yawp (sic) ?..yeah most of those are family or friends, we got 5 stars or somethin'.\" That explains ALOT!\nGee, good thing me and my husband weren't really hungry, twenty bucks for a snack? Not bad quality but tiny quantity for price. Sauce is kinda raw, undertaste of wine and exactly two nickel sized slivers of garlic sausage per slice. Cheese is good quality. I see why the place was empty at 7pm on a Saturday. If your single or on a date and don't mind high prices go for it.", "type": "review", "business_id": "VSPuvNSDUvlTl670lVAkkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bZMMPGHmxkkJjueTFBueIg", "review_id": "-ODXOtgNjEHWwUvRHRp1iQ", "stars": 5, "date": "2012-01-12", "text": "My daughter loves this place, unfortunately they ran out of money and are closing currently.", "type": "review", "business_id": "lKl_FUDVDwfJcC_jmzOjlg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_Uq8LfC6X3UJoTurlbiUrA", "review_id": "hSW2HPone8i8vO4uvNqBiw", "stars": 1, "date": "2011-07-17", "text": "DON'T GET TIFFANY UNLESS YOU WANT A SPEEDY EXPERIENCE\nPretty Nail tale with Tiffany-\nMy 10 year old first mani/pedi\n4:35 water and feet in chair only 13 minutes and painting toes. Prepped and painted fingernails from the chair- in 20 minutes. 35 minutes in all. Told owner I was unhappy and she said that a kid mani/pedii was 35 minutes then later 35 to 45 minutes. Tiffany never let it dry between coats so when she sat her under the light she told her only 5 more minutes and I stopped her. She said only the under coats will be wet and the top will be dry. I told her Really because you never even let it dry between coats. She said not 4 coat. Base 2 color and top is 4 ... well top and base dry fast she said...Owner said\" fast or slow it doesn't matter as long as the polish looks good and it looks good.\" I didn't tip her on purpose...not because I'm poor- I got poor service. I would expect this for a color change but not a spa pedicure/manicure. Very disappointed. You'd think the owners would realize that all the other patrons saw her take advantage of us. Get anyone but Tiffany unless you want a quick job!", "type": "review", "business_id": "Lklz5ClavxSzqnBrJQsJcQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "wRRVIAIo8AbdayfvWky7jg", "review_id": "PMqI44OjF6KCNe7jdpufYg", "stars": 2, "date": "2009-11-09", "text": "I've always been a fan of the Dilly Bird, it's just a delicious sandwich... I can't speak for all locations but the one in Mesa off of Southern was a real disappointment the other night. I waited almost 30 minutes for a cold turkey sandwich! After working all day and sitting in traffic for an hour the last thing I want to do is sit in a fast food joint for that long, especially when all the \"kids\" behind the counter are messing around talking about their homework and girlfriends or boyfriends and not working. I have been going to this location for a dilly bird for longer than I can remember, but unfortunately I will not be returning any time soon unless someone can guarantee I wont have to sit and listen to teenagers for a half hour while I wait for a cold sandwich.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0Ke0iSAPYi8hUVxLocAlYQ", "review_id": "ssBHkN2qVQ0SMmeUK4dksQ", "stars": 5, "date": "2011-08-21", "text": "I had a great burger experience here and intend to return the next time I am craving a Fuddburger. I also got to introduce a friend to Fuddrucker's for the first time, so it was a cherry-poppin' adventure. Not only are the burgers here tasty, but I love the fact that you get to pick and choose the toppings from their self-serve produce and condiment bars. One of my favorite things on french fries is Heinz 57 sauce and Fuddrucker's is truly awesome for including that amongst its vast condiment selection.\n\nAs a professed condiment whore, I was thrilled to discover a new flavor of Tabasco I have never encountered before... and I like to think I really know my Tabasco products, having lived in Louisiana for years. This Fuddruckers special-orders the Sweet & Spicy variety of Tabasco which is not only great on a burger, but would work as an egg-roll dipping sauce. Knowing that I must have it for home use, my dining partner graciously approached the manager who arranged to allow him to purchase a bottle. This was just one example of how efficient, helpful, and friendly the staff here are. Next visit, I will demand to meet the one who refers to himself only as \"Mr. Crusty Baker\" (see photos).\n\nThe restaurant also has a lot of shiny fun decor evoking shameless Americana and Route 66 roadside culture. The bright colors and the overindulgence in fast food goodness contributes to a heightened state of arousal that can only be described as a \"Burger Party Contact High\". You can just feel the burger love... the afterglow punctuated by the difficult click of the seat belt as you strap in for a ride back to a somber, less-gluttonous reality.", "type": "review", "business_id": "-h1WpfgqAmJcJDqyXXJ2og"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iDsAP_iWCSO3HRx5xVzy4g", "review_id": "_5P5l5cIa89Ayb44FAvnzQ", "stars": 4, "date": "2010-05-30", "text": "I loved this place. It was a little pricey but all the stuff in it had some kind of paperwork. The paperwork explained about the materials used. I thought the lady who worked there was nice. Don't skip go in---even if you don't buy you can soak up a little astmosphere,", "type": "review", "business_id": "9zjSYbbWV5WHt-Jl7vE1Vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HpKLR1mrb634jCnTXQr3aA", "review_id": "Dv3qie5gUN6R0_Dd2-QtIg", "stars": 3, "date": "2011-05-11", "text": "The restaurant reminds me of a quaint little countryside caf\u00e9. It gives me that homey feeling like a mom and pop store instead of the chain restaurant that it is. I like how whatever entr\u00e9e you order from the menu; you can get a complete meal from it. Each entr\u00e9e comes with a drink, bread, soup or salad, and their spumoni ice cream for dessert. However, if you want \"Italian\" food, you're not going to get it here. It's a very Americanized version of Italian food. They do have all the classics: the pastas, lasagnas, etc. I've been here several times and tried a few of their dishes.\n\nSpaghetti Vesuvius: cute name to start off. Spicy chicken sausage and meatballs with mushroom. I didn't think it was that spicy, but it was extra salty. It's a very flavorful dish, however the individual tastes are all mushed together. The noodles are a bit tough for me; perhaps undercooked. However some people like it a bit tough. \n\nGourmet Jumbo Crab Ravioli: There's not a lot of ravioli pieces in the dish. The edges that were not covered in the pesto alfredo sauce was dry. I did like that they used fresh crab meat in the ravioli. The creamy sauce was not bad and it wasn't too overpowering in my mouth. It was able to taste pesto sauce and still enjoy the texture of the crab. \n\nBaked Lasagna: This is the best of the 3 I've had. It has 4 kinds of cheese, ground beef, and pork. First of all they gave you a huge piece of lasagna. Then they topped it with mounds of marinara sauce. You may have to remove some of the sauce if it's too much for you. The noodles were cooked tender enough for my taste, but it was still able to hold its shape. And the meat was blended well with all the flavors of the dish. \n\nI do like the cute little serving they have of the spumoni ice cream. It's a great blend of pistachio, chocolate and strawberry. And it's just the right amount after a large meal. Maybe one of these days I'll go back just to try their chocolate desserts. \n\nIf you like an American spin on Italian food, then you would like this place. It's a convenient place to eat after shopping at the mall and their quick service is great if you're crunched for time. But the food is just average and not that special.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "N69-RgMXqRaZbIBbx2eH2w", "review_id": "f0r0hCMp_aSekTY_6gX1ZQ", "stars": 5, "date": "2011-02-03", "text": "True fine dining has come to the Valley.\n\nIf you are looking to have a special dinner, this is the place. And plan on spending 3 hours as it is a true culinary experience.\n\nThe tasting menu consists of options of 4, 5, or 6 courses, and they can be paired with wine, if you like. This is the way to go and even for tasting portions, they are not micro-mini.\n\nThe choices for each course are extensive. At least 6-10 each. AND, the coolest part, is that you won't find any ingredient repeated twice. NONE. Yes you might find tomatoes in the same night, but they won't be the same type. That's not easy to pull off, considering the variety of the menu.\n\nBut, while you are between courses, Chef Binkley will send out numerous amuse bouche - which, if you don't know, are tiny little one bit or one gulp appetizers like, mini sliders the size of a half dollar, or pancetta mousse in a shot glass.\n\nWe ate there for my ex-H's bday, and had 8 amuse bouche. Also, if you let them know in advance you are there for a special occasion, you will get custom printed menus for everyone at the table mentioning the special event.\n\nThe ONLY drawback, is the atmosphere. It definitely doesn't fit the quality and beauty of the food. But, I still give it a 5, as the food is superb.\n\nIf you are a true foodie GO. I was excited the whole meal, as I couldn't wait to see what came out next! If you are a meat and potatoes type with an uneducated palate, save your time and money, since you won't appreciate the menu at all.", "type": "review", "business_id": "yJMLD-6AggZNdC-GonVBsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kAHUx9Z-vwaahW5cpoUg0w", "review_id": "fao0nmygbjSif-ejbmfOpg", "stars": 4, "date": "2007-03-08", "text": "They had what i was looking for ... it wasn't easy to find but after asking 3 people I eventually found it. A folding table and shelving. The place is typically big and laid out like most other home depots. Know what to expect when you go and you won't be disappointed but if you want a lot of personal service stick to a local hardware store.", "type": "review", "business_id": "vxlYflN5Uuy83wufcw1BEw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6eO3LQ6dRXuz0g_F5GgAFA", "review_id": "fLtvPOF2AOUi86MrGG0GJQ", "stars": 4, "date": "2010-08-22", "text": "Worth the drive and more!! This absolute gem in the west valley is exactly what we need to have and support. a family owned business that is TOP NOTCH!! The food was exquisite and the service responsive and attentive. I am a HUGE fan.", "type": "review", "business_id": "-5rFC4EVrT-v8g1PSEf6Xg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8p8HZNmrkUBtMx_vmW9dNQ", "review_id": "m9nIJRGwrKDqutT3OWEMkQ", "stars": 5, "date": "2012-10-30", "text": "I've been coming here for several years. Can't find my first review. I guess it was too long ago. So here comes another one.\nThe woman who runs the place. I've forgotten her name. She is one of the most gracious, friendly, and kind people you can ever hope to meet.\nWhen I go there, sometimes with and some times without my wife, I alway order the small sausage sandwich. With ajvar and onion, this can't be beat no matter how you my search around. The sausages, cevap, are delicious and what's unusual is that the bread is almost as good as the sausages. Simply delicious from all points of view. They make their own sausages and their own bread from scratch. In fact they make everything from scratch right there in the restaurant. Their soups are do die for.\nA very favorite of ours.\nI give this a 5 star because in the Bosnian/Jugoslavian cuisine catagory, this can't be beaten.\nOne more thing worth mentioning: her Baklava is top of the mark. It's not as sweet as what you find in other restaurants. \nEverything is simply top shelf.", "type": "review", "business_id": "fm4X0SV2Kofj-57ZfHiZ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "00IVoTJHcLi9EgDQsFJAiQ", "review_id": "pbn7yQzhh_A3-1LhMvTERg", "stars": 5, "date": "2011-06-17", "text": "Try the Chicken Parmesan! It's the best I've ever had? Quite possibly. When I worked in that area we would hit it for lunch once a week. Donna is awesome in a take-no-shit-but-still-take-care-of-you kind of way. She calls it as she sees it and I think that's great. By your third visit she will most likely know what you are gunna order.\nI can't comment on the rest of the menu as I've only ordered the Chicken Parm. Yeah, it's that good.", "type": "review", "business_id": "j0Uc-GuOe-x9_N_IK1KPpA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "davqcAbwEHCL35nRFt-3rg", "review_id": "cO408In7U9XrCOdnSZb23A", "stars": 3, "date": "2009-09-23", "text": "I'm rather undecided about this place. The hygienists are great and the staff is all very nice and accommodating. Every time I have to have a tooth filled (yes I'm totally that person) I feel like I have to go back because something is wrong. For example not being able to floss between any of the filled teeth because the filling hasn't been filed down correctly. I don't feel like the dentist really listens to you either. When I felt like I had a problem with a tooth he told me it was fine and the next time I went back he found a huge cavity in that same tooth and told me I might need a root canal on it because it was so big. What a pain.", "type": "review", "business_id": "gLSU0UZ3LYhQoUUtIfHrmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ITBs8txD0Zu-YuxXCGqokA", "review_id": "AWzeDIiFidF-UumZjCH2fA", "stars": 4, "date": "2011-09-11", "text": "This spicy chicken soup is a must have when sick. Always makes me feel better when my hubby brings it home for me.", "type": "review", "business_id": "LmVcYycG_VI3S6RNgqiriw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "zz62WFb6v0k3cs8ygSu1FA", "stars": 3, "date": "2011-05-02", "text": "I am glad that I remembered this place for brunch this past Saturday because it was good food and I love the atmosphere in the area as well. I went with my BF and we put our name in, got some coffee and was seated quicker than the time the originally gave us, which is great in my book. \n\nI had the breakfast burrito with chorizo. I wasnt a fan of it, it was good but not GREAT. The chorizo really lacked flavor and punch...maybe I am use to the chorizo I get back home. My bf had pancakes with ice cream on top of it and it looked amazing and he loved it.\n\nI would come back and probably will to try some of there other things. This is not a place to go to thinking you will get in and out quick, there are almost always people waiting but the walk around Old Town Scottsdale is worth it.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IcIV2t78tbDehsPUsz2TGQ", "review_id": "yPegylNtYQ-jZSFXlAD4Qg", "stars": 4, "date": "2010-01-02", "text": "Went for dinner before a Suns game on a Tuesday, got there at 5 and got right in, but the place filled up fast after us. The atmosphere is awesome, a little brick house split into small rooms with a huge patio dining area. The service was quality over all. Very attentive at the beginning, forgot about us throughout the meal but showed up again at the check/dessert time. We had the Burrata with proscuitto for an app., which was awesome, melt in your mouth, almost sweet cheese, and the proscuitto was like pork butter, lovely. The pizzas were good but not what i expected when i hear thin crust. The ingredients were definately quality but the crust was a little fluffy and chewy for my taste. Bianco still tops the charts on pizza, but for the lack of wait, and quality of food, ambiance, and service i would definately recommend Cibo. I plan on going back to try some more selections.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "rsyXwlLjx6S-6Hni1s9ipw", "review_id": "qiBYXuHbIl21tAMXsseW2A", "stars": 1, "date": "2010-07-24", "text": "I parked in the Parking Garage, got my parking ticket validated, and still owed money for parking. The parking validation was worth $3.00. The charge for parking was $5.00 with $2.00 credit for the validation (not the $3.00 I was promised). I paid the remaining $3.00 charge, but then, the machine wouldn't give me a receipt.\n\nI am never going back to this location. It is off my radar from now on.", "type": "review", "business_id": "O48Mv1VkQYZrDkR6LhnY4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aJGbFSkf6zCBbadpcD5uow", "review_id": "r14bMoxOpzQGPI9akQY9nA", "stars": 3, "date": "2011-03-14", "text": "I've returned to this place 2 more times after my last review. Wait service was still inconsistent, especially with the dimwitted waitress.\n\nThe restaurant was plagued with \"out of foods\" often. A few months ago, the dimwitted waitress didn't tell us the appetizer was out till the end when I initiated the inquiry. Apparently she has already removed the \"out\" item from our bill.\n\nThe wait service for my last meal with a group of friends was better at 6:30 PM on a Saturday. We've got service from 3 different wait staffs. They were serving everybody else too. Not just us.\n\nThe food came out fast and the taste was right on this time. They were out of egg plant. We didn't tell them that 99 Ranch Supermarket was 2 doors down.\n\nSo diners, I still consider this place a good choice for authentic foods. I will give 3.5 stars this time.", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "PhPZDfvPLnwzWD-Eyw2MpQ", "stars": 3, "date": "2009-09-29", "text": "Where I live in Tempe, I can walk to the end of my street, hop on an Orbit which takes me to the main Bus Depot or can drop me off closer to the Light Rail stop off of Mill Ave. Not bad, right?\n\nI actually am enjoying the clustering of a real Bus Depot not anywhere near a residential area with plenty of security, lighting, public enough space in an easily accessible location in Tempe. I actually feel safe hanging out here at night and when I ride my bike to the station, all the bike racks face the security and transit office, so never had an issue with my bicycle here either.\n\nThe buses themselves are fine, I have had some very bad moments on the bus with the passengers (ie the 1st time I got on a Phoenix bus, a knife-fight broke out and I had to stay for a police report, another time two guys were reading hard porn right across from me), but its kinda nice mixing with people rather then being in a car-tomb.\n\nWhat I very much have an issue with is most bus stations. I have had bums passed out (dead?) on the seat, meth heads, a single sign with no seating in the hot blazing sun (I am looking at you Scottsdale), seats no shade around, fights break out at stations. I try to call the metro, they say it isn't their issue. Call the police non-emergency number, they say its the Metro jurisdiction. For this very bad situation alone, I don't take the bus at night since all the stations near the arts area and central are not well lit, full of sketchy people and the buses take too long to come by (if they even stop). For this I am grateful for the light rail for late night Phoenix excursions. \n\nMetro still has a lot of work to do, but considering the improvements I have seen with public transportation and bicycle awareness in the past 3 years, it seems to be going on the right route.", "type": "review", "business_id": "er20L6Wzviiin8OS9FqFmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nJ4SuIHBRkwu8ERCnQXBqA", "review_id": "zwMyUekn8vVDw1-BO0z01Q", "stars": 5, "date": "2012-04-12", "text": "Impossibly good Italian deli in the middle of the desert. Huge sandwiches on the most incredible bread you've ever had outside of NY. As someone who ate here 3 times in a 24 hr period, I feel especially compelled to tell you about their cheesesteak. HO-LY-SHIT. Easily the most decadent, flavorful cheesesteak I've had in a VERY long time - and I live 15 minutes outside of Philly. Im still in disbelief that they could pull something like that off. Ask for yours on the soft roll.\n\nI should also mention the sausage, peppers & onion sandwich, which was really good. I suspect they make their own sausage, which elevates them to superstar status in my book. The chicken parm sandwich and dinner are both equally good, and the meatball sandwich deserves honorable mention as well.\n\nI dont do cold subs, but the ones I saw coming out of the kitchen looked huge and tasty. Perhaps I will try their pizza next time I'm in town.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6wpEHXevnaIZp2kUTUfhxQ", "review_id": "L-k2ktpQsmQsXDlBYGT2aQ", "stars": 3, "date": "2011-05-09", "text": "It's okay. it's nothing like San Francisco food .", "type": "review", "business_id": "PNrOTfMmE0CJFV9YwSLzYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pErAerEObYkIYznI3GhS-w", "review_id": "OrpWxnie3P1SUK_3EGXeyg", "stars": 5, "date": "2010-09-26", "text": "This was my first experience with Lush (with many more to follow). I stumbled into the store because I could smell it 4 stores down, and I was drawn in by the aroma (I don't even thing I read the name on the sign...I just followed my nose). I had never seen anything like it! The giant blocks of soap, the colorful bath-bombs, the bubble bars (that looked like little cakes), and so much more! It was late December, so the sales staff told me that any left-over Christmas items were buy 1 get 2 free (what a deal on my first visit!). They demonstrated a bath bomb for me, and I was MESMERIZED! I got 6 Christmas bath bombs (4 of them for free!) and 3 travel-sized Snow Fairy shower gels (another Christmas product, and by far one of my favorite Lush products EVER). I also got some non-holiday bath bombs and melts because they were just too heavenly to pass up (I got a Youki Hi bath bomb, my favorite bath bomb ever, which was sadly discontinued sometime last year). I also got my first piece of Lush soap (Sexy Peel. all the citrus just makes me smile when I use this soap. It's sunshine in your shower)\n\nSince I used to work in the mall I would go into Lush whenever I had a break and get a couple things, and the staff always recognized me :) They even offered me a hand-cream sample one day when I was complaining of dry hands. I brought some of my friends from school in and told the girl behind the counter that they were newbies, so she rushed out from behind the counter to demonstrate EVERYTHING in the store! Literally, she showed us bath bombs, bubble bars, face cleansers and toners, massage bars, and dusting powders. I was so impressed by her powder demo that I bought some Candy Fluff dusting powder (another item that has since been discontinued. Vanilla Puff powder is a nice substitute).\n\nThis store holds a special place in my heart because it was the first Lush store I ever went to, and I will forever have fond memories of the staff that dazzled me, and every time I smell Sexy Peel Soap or SnowFairy Shower Gel I am reminded of that magical day :)", "type": "review", "business_id": "mWjlJ0Mvde4nBvM9nXlU-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FUMdzARf71drXyDZ7lkpWw", "review_id": "opqIDBk5QbxYtG3cjCZfpQ", "stars": 1, "date": "2012-11-01", "text": "$8 for a tiny sandwich with one egg, two greasy strips of bacon, and a stale muffin. They say it's pricy because they get it local? It has to have substance to be considered anything. So whack.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DnwHp_A92KvllfaUIdFraw", "review_id": "QX1mKLjrcQ4gkixLUFoTbA", "stars": 4, "date": "2009-12-20", "text": "Consistanly great steaks and flavor for sure. Today was our maybe 10th visit to Texas RH and we keep coming back. Today's waitress Stacie was an absolute DITZ and let's just say it's a good thing I was in a good mood. My Ribeye was as tender and tasty as I expect, wife tried the Ribs for the 1st time and they were tender for sure. Bring your appetite and some time (if you come Fri/Sat after 530) as I am sure you will enjoy as well!", "type": "review", "business_id": "5GpvSL1tlAjpgdJKZ5eLpg"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "IGkoathSlJmIOBDGo9vUZg", "review_id": "GSg1pGXc40IyrXW23Zgv0g", "stars": 4, "date": "2012-10-25", "text": "Only three stars? Wow--maybe it was the ambiance that sucks overall here--I don't know. I actually didn't go here myself. It was my wife. She brought me home a cheese enchilada plate and it hit the spot--even lukewarm.\n\nAll I know is that meal was better as a leftover than a lot of the fresh ones I've had at taquerias around the tri city area. Makes me wonder how it would taste if it were nice and hot. . .\n\nOkay--challenge accepted. I'll let you know.", "type": "review", "business_id": "bfDQai9X59uWK-XgP0t6rA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "r3_JcUFWGERe8ytAHQPDyQ", "review_id": "RVEbqITh8KsZkURDa-3g1w", "stars": 1, "date": "2012-01-01", "text": "I heard good things about this place, and was looking forward to what the \"basement\" atmosphere would feel like, lowbrow, a little seedy, etc. Sadly, too many middle-aged men wearing flip flops out on a Friday night. Flip flops? UGH..in Winter? Also, our waiter SUCKED! He acted like he had a hard night and was unwilling to suggest a beer, so I am sure he spit in my draft...Anyhoo, does not matter as I will not return.", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1UNDhcdgvL1N3SbRPbu7Ew", "review_id": "KR_8Vgo85xgwxG5XmFj7ZQ", "stars": 1, "date": "2012-02-11", "text": "Place is alright but for the waitress, poor service and things sent over we didn't order. We sent them back but had additional items brought and not brought on the tab anyway. She said me \"that couldn't happen\" and refused to take it off. Waitress included autograt. \n\nI have been here a dozen times and never get great service but enjoy myself. This time will be my last.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XLO0gE99ur2fv7VmPBJb3g", "review_id": "9pHzHNL7Hk7AHScDK27FOg", "stars": 4, "date": "2010-10-21", "text": "Gotta get the hot wings! They'll make sure you know what you're getting into, but even if you haven't had them before, just play along. They're worth it.", "type": "review", "business_id": "hGQsnkndreW7b26XC2HVRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IqrtFpXjwUhJNd28LUOOeg", "review_id": "oNWasO70MB71PSw00rN5vQ", "stars": 5, "date": "2011-01-18", "text": "Yen has amazing sushi. I would say that they have the best sushi in AZ. You have to try it to see how amazing it is. The service is great and I feel like I just stepped into Japan. The whole sushi experience is very authentic and perfect place to hang out with friends or take a date :D\n\nThere is only one thing I don't like. Sometimes it get's to busy so make sure to get there early (around 7 P.M) if you want to be seated right away.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hryUDaRk7FLuDAYui2oldw", "review_id": "q4hWqr55R2ngpiiuf4qiPw", "stars": 1, "date": "2010-10-30", "text": "The staff is friendly. But the physical hotel itself itself is comparable to a 2 star motel. The Holiday Express I stayed at is better than this. Priceline tricked me when I requested for a 4 star and indicated that this was a 4 star in name your own price.\n\nCons:\n1) They have cactus in the parking lot where when I got home late, it was dark, poorly lit lot, and opened my car door, step out of the car, and step on to cactus severely injuring my foot to where I can not walk anymore. Who puts low cactus in a dimly lit parking lot where when you get out of a car, someone can step on it? Being injured on vacation is no fun and very painful!\n2) hotel room and property is old, like from the 1980s though the front desk boy told me that the rooms were newly renovated\n3) Given the previous reviews I asked for a quiet room, but was given a room where the squeeking and thumping and wall shaking, woke me up at 5 in the morning. The neighbors flushing the toilet, showering, and running water can all be heard.\n4) the bathroom door is so jammed that it requires both hands, all of my body wait and a few minutes of wrestling with it to open/close it\n5) Requested a single bed, however upon arrival, was told that it would be 30/extra a night for a single bed instead of 2 doubles\n6) 80s style tube TV \n7) pink 80s decor\n8) worn down bed with body dent in it\n9) wifi costs 9.99/for 24 hours even though its signal is only 1 bar\n10) AC blasts loudly on and off during the night\n11) curtains are cut half way so tons of light comes in to the room in the morning. \n\npros: \n1) location\n2) staff smiles and says hi\n3) cleaning staff does a good job", "type": "review", "business_id": "czOxS1z2MGzPXNP3W1d0Yw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "8-mw_aotUGmP0k0s6QKwOA", "review_id": "LfYhmu7JvRxIJq9eyJ5dQw", "stars": 5, "date": "2012-06-25", "text": "Lives up to the local fuss. Quick, cheap, tasty and one of the few fast Mexican food restaurants that utilize yellow cheese, which is my cardinal rule of good Mexican food.", "type": "review", "business_id": "GjG2_JvHg6ISrLchOag_lA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qQns9dP75RNOWOVWI_ZKZw", "review_id": "Rn1OUvp2fMTI2nKtmYcM1w", "stars": 4, "date": "2011-10-26", "text": "I tried Pork on a Fork at the ASU Tempe farmers market. Beef brisket and pulled pork sandwiches were sold there in a small tent.\n\nMy sandwich (brisket) was very tasty, albeit a little plain (just meat and bread). There were three great BBQ sauces available - sweet/mild, tart, and spicy. I used a lot of all three, but spicy was the best. I felt like I could drink those sauces!\n\nAt $6-8, the sandwiches are a little pricey, but they are filling and taste excellent. It would be nice if they came with some corn, beans, or the like to round out the meal.", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mGpttS5cV5W6iKZOJ1KDgQ", "review_id": "6wrXyz4fOH9TjxsHHTjtEQ", "stars": 5, "date": "2011-07-24", "text": "I've stayed at several hotels in the Hyatt Place chain and they are all great, but this one in particular stands out as having the friendliest, most helpful staff.", "type": "review", "business_id": "NmtZuT8p4vNk259dvozbvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "fW1RBWhhVrZ5t-TURpIvlA", "review_id": "TjvdQBxP_uZR5Gd8b02jow", "stars": 4, "date": "2008-12-02", "text": "I know that Wal-Mart gets a bad rap at times, but I need to report how nice they were to me the other day. I went in there to buy some Christmas presents and found everything I needed and went to pay for everything. I apparently did not take everything off the kyosk of bags and left one package there. When I got home and these items were not in the back of my vehicle, I went back down there. They told me to just go and get two more pair of the item I was missing. I really felt they were so nice in doing that. Thank you Wal-Mart.", "type": "review", "business_id": "A0hxl-YmCYYn0j-X614fQw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "bjyNs56h8t57FYZ7y1_1Rg", "review_id": "4z3dGNGWPG9ldQRQPg0WFg", "stars": 4, "date": "2008-06-25", "text": "Holy crap Thomas is spot on, hilarious. The first thing I thought when I first walked in this place was \"I'm feeling mighty little\". \n\nBig heavy pieces for sure, dark woods, carved, unique. You need a big space to show off this stuff. Lots of Mexicali knicker knackers. I still have a few pieces with me here in Hotlanta, but it doesn't quite fit anymore....\n\nAnyone want to buy it? Shipping is only $5,000....", "type": "review", "business_id": "kwo6AogUjIG1qk-doJdFeQ"} +{"votes": {"funny": 2, "useful": 6, "cool": 1}, "user_id": "-bO7P1OtJBKN3rlGpolaFA", "review_id": "B613lHQDA6sQE-LYoj7hrQ", "stars": 1, "date": "2008-01-12", "text": "I haven't yelped in about 2 months, and I was waiting for a place to either wow me or disgust me. Well, this place was that bad. \n\nFirst impressions were all right -- the outside bar was neat w/ good views of downtown, and the fire pits were nice. No beers on tap though; and seriously, what's with the hip-hop club DJ at 7:00 pm? Come on guys, way too early for that.\n\nIt wasn't too long before three of us were seated; and after about 10 minutes, our waitress came up and asked us whether we were ready to ... oh wait, that's right, no menus yet, good job. O.k., so I ordered the Thai Spring rolls, which had a filling of lettuce, a single strip of carrot, and noodles. Seriously?! Main course, I ordered the curry, which turned out to be the worst curry in the world -- I don't even know if it was curry; it was more like a bowl of thick, yellow soup, with a few pieces of chicken and a couple of vegetables tossed in. Yuck. And then they only gave me a tiny bowl of rice. I'm sorry, isn't it supposed to be the other way around? My friends completely agreed with how bad the place was (I think they had some sort of stir fry, which they said was bland and pointless).\n\nSo yeah, I don't recommend this place. Instead, head a block over to The Roosevelt for some good beer on tap and some pretty good food.", "type": "review", "business_id": "VsO_rhXi5lgbaGxNwoEZsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "kacOkLRg_lcNA_wPE4bb1Q", "review_id": "JdFwHqb5Uro6SdXuh9PwSA", "stars": 4, "date": "2010-02-17", "text": "This place has a fancy exterior and you definitely pay for the ambiance. Definitely a sit down with a napkin in your lap kinda place. I have tried the tikka masala, pakuras, vegetable korma, and naan. It's all very delicious and the portion sizes are bigger than expected. \n\nDrawback: kinda pricey. Not a good place for cheap take-out. I ordered out for 3 and it cost $50!!!", "type": "review", "business_id": "_RBUU1y4yJrK0SPAd8z0-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z6OGpPPnGNDTOsLhf4KVzA", "review_id": "Ou4P7FMsCyJm7uYhsGcGig", "stars": 2, "date": "2009-05-07", "text": "Ordered the mushroom burger, they put canned mushrooms on the burger. Gross! The patty melt was good. But it's really hard to mess up a patty melt. My salad had a bug in it.\n\nService was nice. And they do have a yummy cider beer.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0-aWamipsRNfcgFYALX1KQ", "review_id": "XKHff6YV4yvaXVRA1DjwJA", "stars": 5, "date": "2011-05-19", "text": "Being a very experienced pho eater, I must say that the pho at the BlueMoon is excellent! That, plus the pho is 50% off, so that must have added to my utility. Veggies were fresh and the service friendly. Oh, and the appetizer came out only a minute after ordering. Meal was hot and came out just as we finished the appetizer.\n\nSpent a total of $13.61 (including tax) for (2) large bowls of pho, a Thai ice tea and a order of fresh spring rolls. Our bellies were stuffed and wallets intact.\n\nWill eat here again!", "type": "review", "business_id": "CMTDZRDnv_O0rwAvRVbjvg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "YrkflTZm3otwskJlEBtqkQ", "review_id": "_dh9-JPGgqdVGL-_xSGGhw", "stars": 5, "date": "2012-09-28", "text": "Love their pizza!!!\nVery fresh. Their cannoli was really good too.\nThey seem to have great selection of wines.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z3IUQL6wpTRBrVyW4XhlfQ", "review_id": "j5B1y_XEqbxESzg3gg-uZQ", "stars": 4, "date": "2012-07-03", "text": "This was my second time eating at Pappadeaux and I have to say that I was equally impressed as the first time. The service was excellent both times and the food is pretty good too! I had the Shrimp Etouffe the first time and it was an excellent choice and the second time I had the fried shrimp with a side of the Seafood Gumbo. I really liked the fried shrimp but didn't really care for the Seafood Gumbo, it just totally fell below my expectations (it was chunky and bland) but I was so impressed with the rest of my food that it didn't take away from my overall experience. We also had the Crab Spinach Dip...yummy!!", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CPbT7oLbZxz76O8CtDP7VQ", "review_id": "Y0ZFutGDYDNV4f6zcB2xbw", "stars": 4, "date": "2010-02-22", "text": "I had my first experience with Matt's this morning. A friend of mine had seen it on Diner's, Dives and Drive In's (or something along those lines) and was excited to try it out. The wait was about 20 minutes(arrived at 9 am) and seating is very limited but worth it!\n\nI'm all about the breakfast food so I was excited to try somewhere new. The menu is limited but covers all bases. The coffee (a special blend just for them) is local as is everything that they serve. I swear the bacon tastes better when it's from around the corner.\n\nI decided on the belgian waffle and a side of hash browns. SUPER YUMMY!! I appreciate the note on the menu that they only use butter and extra virgin olive oil... No trans fats here! The hash browns were a bit oily but tasty overall.\n\nAs I was leaving I saw a huge stack of pancakes on their way to a table... I know what I'm getting next time!!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "KYeLSM3MQpirmHukVV5Iow", "review_id": "1RcTkSQpeYkOeH6pYY1zRw", "stars": 5, "date": "2012-05-17", "text": "Beaver Choice is an excellent place which I have had the chance to visit three or four times. This is about as home-cooked as you can get in a restaurant. It's like eating at Mom's house, if Mom happens to be Swedish.\n\nI've had a few of the entrees -- schnitzel cordon bleu, pork medallions, seared gravlax -- and all were delicious. Especially the gravlax.\n\nThe sides are also great, and you usually get three per meal.\n\nThe poutine is perhaps not as good as what you'd get in Quebec, but it's easily the best I've had in Arizona. The fact that they even have poutine wins this place a few points.\n\nI have also had the opportunity to try their dessert specialty, the Beaver Supreme. This mess of chocolate, meringue, cream, mandarin orange, and possibly a few other things, is the sort of thing which you set out intending to only eat half in the first sitting, but ultimately find your free will diminished, invariably resulting in an empty dish and a fear of the onset of diabetes.\n\nAlso, it seems one gentleman gave this place low marks for the long preparation time on a chicken wrap. I just have to ask, why would anyone go to a Scandinavian restaurant and order a chicken wrap? Can you imagine what would happen if you wander into a Viking camp and order a chicken wrap? Your head would be off before you could recite one measly Odinian incantation.", "type": "review", "business_id": "5SS69rC8XWvdlD1OHifEEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "4DtBamDdmuYGozIHJN9cig", "review_id": "9ANWAwUBfm5NqCrYbQakIQ", "stars": 4, "date": "2012-12-15", "text": "Welcome to the funkiest place in Goodyear. If you've been craving sheet-metal winged pigs but regretting that Cave Creek is practically a day trip from the west valley, you may feel tempted to lie on the floor and weep tears of joy.\n\nThis Armadillo provides fine circuit training for working off breakfast at the Black Bear Diner, including a loft with moderately steep stairs. Like its cousin up toward Metro Center, it's an \"antique mall\" in the sense of focusing mostly on vintage items and less uncommon antiques, plus a smattering of \"collectibles.\" This is the kind of antique mall I prefer, since it really functions as a sort of fantasy department store for shoppers who have a middle-of-the-road budget but whimsical or retro tastes.\n\nLike the other Armadillo, stock here runs somewhat more to the frilly and ornate than to the mid-century modern, but it's not a total lock-out of swellness in favor of sweetness. Unlike the other one, there's a larger variety of dealers who aren't typical antique-mall fare: things like reproduction hardware, the aforementioned sheet-metal winged-pigs, repro tin signs, garden ornaments made from vintage dishes. This isn't my cuppa, but in context, it provides useful variety, and it fills booths (there are more empty booths here, but it's still fairly new).\n\nA number of dealers seem to actually be replicated here, including the scrapbook store. Also replicated is the cheery professionalism of the operation: clean restrooms, occasional seating areas, efficient check-out, and available snacks. When you're hiking a layout this big, these things come to matter.", "type": "review", "business_id": "idpRaOujsEvnI-LzDSKa6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Iq_2tq-f_NyhcAa6Yim-fA", "review_id": "z6ayw4d_bz_wAJciB-CF8w", "stars": 4, "date": "2012-06-23", "text": "Great sliders, come on all you can eat night! Bakery is awesome, ribs are ok, free breakfast on your bday! No clue how adam richman did the slider challenge, I wanted to cry after 10.", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "BzsCX6sbeV50SAsQmQldLA", "stars": 4, "date": "2008-08-22", "text": "I really enjoy this place for a relaxing dinner. They really know how to do a great salad and it's defiantly a plus when it's half off bottles of wine night.", "type": "review", "business_id": "vSWEXsXmJw5ozuF4zqE9ng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3gUxHXOvEXdzDhKDjnGgyA", "review_id": "0gMRwAmLCCIbJJmjsP5qcg", "stars": 2, "date": "2011-03-15", "text": "I have gone here quite a few times. I like having a diner close by for breakfast and newspaper reading. But this one is always short staffed. And there doesn't seem to be much management around to smooth things out. Food is usually good but staff always seems stressed out. May be due to serving hoards of poor tipping elderly.", "type": "review", "business_id": "SZvYxcvYYVRue9MXcEDjsA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v6jF7qJOyzO2SZR_qyBXLQ", "review_id": "0JrB4CJ9qrfmqhsxWcpHlg", "stars": 1, "date": "2010-08-17", "text": "I was not impressed. The food was bad & expensive. The wait is ridiculous. Don't go.", "type": "review", "business_id": "ho4Te6bO2tGs56h9PF2vuA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pcar062LKuhjXoe7E42YRA", "review_id": "hkmaKvOJ8gO-qeBOmpaV6g", "stars": 1, "date": "2011-10-17", "text": "This was the best camera/photography store in the valley. It has now been re-imagined and renamed as Photomart upon its move to Scottsdale. I recently visited the new location...and I was shocked! The store was extremely small, had very little to sell (I didn't even see a camera on display). They did carry some glass...but mostly a very small selection of accessories. I didn't even recognize any of the former employees. \n\nI encourage all the former loyal Photomark customers to visit Photomart. I'm sure you will leave disappointed. Two thumbs down to this lemon!", "type": "review", "business_id": "GiElN3AF8N4ZpfH6PNRjdg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "qkbiaiS8t8YHWx3J04NjSw", "review_id": "LgPRctVh8GavM4ZyBOtZZA", "stars": 5, "date": "2010-10-11", "text": "Always a healthy, fresh meal. One of my favorites is the hummus and grilled chicken appetizer(which is gynormous) and I have them add in some tabbouleh, then cucumbers on the side. Perfection. All the pitas, and the seasonal specials are always super good. Wine is also inexpensive if the mood strikes. Otherwise, great casual lunch and dinner spot that is extremely reasonable in price for the quality of food you are getting. There is something for everyone here, veggies, kids, etc. If I ever moved from AZ, this is the first place I would come visit upon my return. Parking can get hairy at the Arcadia location, and one time someone actually backed into my car when I was legally parked along a curb but that is hardly Pita Jungle's fault. The douche didn't even leave a note - but I digress and karma is real and nothing would keep me from coming back to Pita!", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7ToIE5d3_oyqJ6zyxg1OVA", "review_id": "l2OxHrUjH5FrdSyvwvCwPw", "stars": 4, "date": "2011-07-06", "text": "Met a friend here for lunch & had a great experience. I've been meaning to get here for a while, having heard great things. Unfortunately didn't get to sample the wine menu. But the lunch offerings were good - turkey sandwich was very flavorful with its crumbled goat cheese, vinaigrette, and fig jam on 9-grain bread. Such a large sandwich runs the risk of being dry, but no problem here. My friend got to enjoy the sausage mac & cheese; I was tempted by some of the other versions on the menu - next time for sure. Also, the place wasn't too crowded for lunch - no problems getting a table or parking.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Dl8ssN8MGZazTn5QAL3eJw", "review_id": "BFAvb86rMJiji41pk4BGOg", "stars": 1, "date": "2012-03-29", "text": "It's a good concept if the owners / mismanagement had bothered to keep a trendy or classy atmosphere. As it is save your money get fast food - McDonald's has less grease. We had to ask for plates for the appetizer platter (it is meant to be shared) so the sever handed my daughter 4 paper plates. \n\nMy salad wasn't a salad it was a paper plate of mixed greens - really no tomatoes, nothing on it or in it other than lettuce and she threw a packet of Newmans Dressing on the table just like the ones you get at Burger King or McDonald's. My steak - it was OK - I asked for medium and got medium well and that was the best part of it. The steak is served on a paper plate and when I asked about utensils I was directed to go get my own from around the corner - yup plastic ware for a steak on a paper plate.\n\nMy daughter had a burger and it was so greasy the bun turned soggy brown part way through then fell completely apart.\n\nService? Well let's just pretend this place is 100% do it yourself then it would be OK. The waitress walked away before my daughter finished her order. Never came back and asked how things were, nothing. Really if we were the kind to dine & dash it wouldn't have been a problem because she wouldn't have known we were gone. My daughter actually had to go find the server and ask for the bill!!!!\n\nWhat kills me is the employees exude an I don't care attitude which is also obvious in their actions (or lack of actions) and the message I got was the owner / mis-management has accepted this lazy unfriendly service because it's obvious by how poorly the place is run that it's OK with them.\n\nIt could be great but they would need to make a lot of changes - job 1 fire everyone & start over. If I could have given them 1/2 a star I would have - we won't be going back.", "type": "review", "business_id": "b3mfNkad2uxdlKLrS3hDCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SWoWXML68esw-UhHRjLBQQ", "review_id": "vCPw-x_bzxl0ebdhQdJyTQ", "stars": 5, "date": "2011-03-10", "text": "Free samples? One dollar churros? Cheap buys? Why not.", "type": "review", "business_id": "WUTSRw9kiDHmQeoylYfrnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0BBO-d1_Dr16Tc55x--ejA", "review_id": "7BQy8bQPmPYCzYs1p5wvig", "stars": 3, "date": "2009-03-08", "text": "Its refreshing to find one-of-a-kind places -- God knows Phoenix needs more of them to inject personality into this generic, strip-mall, chains-on-every-corner valley. Finding this unique sandwich shop, which is in a house that has been transformed into a restaurant, is indeed a welcome find. The real estate is limited, so parking is compact and circles around the back of the building.\n\nThe dining area is mainly indoors, but there is also a small patio facing the back portion of the parking lot, which is not very scenic. Inside there is art on the wall that can be purchased.\n\nThey serve wraps, bowls and salads. The food has been pretty good, although it did not knock my socks off. I ordered the Baja Bowl, which is described on their online menu as \"Southwestern chicken atop garlic rice, black beans, Monterey jack cheese and topped with lime sour cream and pico de gallo.\" It was OK, but the chicken was dry and cut in fairly large chunks. It could have possibly been microwaved -- not sure, but there were no southwest flavors to speak of. I have done a better job of cooking chicken on my George Foreman grill at home. Perhaps the garlic rice would have helped with the flavor, but I had substituted the rice with organic brown rice which did little to add flavor. Sour cream was not \"lime\". There was a small slice of lime served on the edge of the bowl. I would not bother ordering this again -- especially if I have a craving for some southwest food.\n\nOn another recent visit I ordered a wrap called \"Prince of Thai's - Spicy peanut chicken with baby spinach, garlic rice, fresh ginger slaw, cucumber pico and red onion wrapped in a spinach tortilla.\" That had better flavor than the baja bowl. Vegetable ingredients were fresh and good. Again, I was not very impressed with the chicken chunks.\n\nOne thing I think That's A Wrap needs to address is the use of styrafoam cups. Afterall their slogan is \"Healthy Food for a Hungry Planet\" and they have a link for a new restaurant \"Green\" for Vegan food on their website. For such an artsy, earthy place, I would have thought That's A Wrap would have made more conscious, earth-friendly choices. For that reason and the bland chicken, I give them an average rating only.", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "fAiVqZv7P_oc5CzGMX_G9w", "review_id": "2y4MLimYoqWg99RNEGD-9w", "stars": 4, "date": "2009-07-20", "text": "I really wish that I lived closer to one of the Crackers locations, because their breakfast menu rocks! After a field trip to IKEA with my mom and sister we decided to grab a bite to eat, I knew that Crackers had recently opened nearby, so we stopped by. The inside is very cute, feels like you are in someones country home. The menu has a huge variety of breakfast dishes, sandwiches, salads and soups. On weekends, they serve breakfast all day! \n\nI got the Carnitas breakfast skillet, and let me just say, they seriously have some of the best carnitas in town, no joke! The pork was so tender; covered with jack cheese on a bed of potatoes, heaven! My sister got the BLT, and they were not skimpy on the bacon! I have had some of their soups before, and let's just say, the Cream of Spinach & Artichoke is like heaven in a bowl! So rich, and creamy, it is like eating dip without the chips! \n\nThey are only open until 2:00, but it is great spot to grab a bite to eat for breakfast or lunch!", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kpY5I-J2Ch-4GmNrERBMGg", "review_id": "aglTWcaH9lMBZ5xsdx1HUQ", "stars": 4, "date": "2011-10-12", "text": "First time here and it was really good. I ordered the bobbie sandwich since I hear everyone raving about it. It was ok. Not my favorite. Place is really clean and wasn't busy at all for lunch around 1130. I like going to a place where I can get in and get out. Staff was really friendly. They gave me this punch card.. buy 10 get the 11th free. Very nice. About the same prices as subway so I wasn't upset. Plus the sizes of food are definitely moneys worth. At least I think. For anyone in the Chandler area, this is definitely a place to stop in and try.", "type": "review", "business_id": "STv-ED3M2xmRFMSvQbWGaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f5CqKZlqK9Sox9z9wuooCQ", "review_id": "qOpjfPoGk7ULO_y4_RpYsA", "stars": 3, "date": "2009-08-10", "text": "Some friends came in so a group of 6 of us went here. Cool little place with good atmosphere, basic and cozy. Wines by the glass were good. The bread was a bit stale but still pretty decent. We ordered a variety of things. The antipasto plate was good with several typical items. My tomato sausage pizza was good, not great. Needs some spice and flavor. The halibut over sundried tomato basil risotto with aspargus was very good but the halibut was a little over cooked. Otherwise, most everybody liked the food. One person ordered a dish and asked for a little spice but it was way too spicy and they basically couldn't eat it. Her husband ate it the next day because he could handle the spice but seriously it was way too spicy for most people. Not a bad place, would probably go back but won't drive out of the way as the location is a little out there.", "type": "review", "business_id": "uYj2NO1HZRNiD-de_pSdJA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "kCtnWnf0jYUSlMq6RBB-yw", "review_id": "9o4OOxC7-4N0nHXtfP172g", "stars": 3, "date": "2011-12-27", "text": "We stayed for three nights while visiting family for the holidays.\nGood:\nVery comfortable bed\nClean\nFunky/cool decor which is unique\nVery friendly and helpful staff\nFair price\nGreat location\n\nNot so good:\nPricey overnight parking that was a surprise upon check in\nNo coffee maker in room; this is pretty well standard for most hotels. We had to either go to the lobby for $4.50 per cup or drive off site. \nOn our final morning before leaving (2 1/2 hours before checkout) with our do not disturb sign duly mounted on the outside of our door, we were disturbed by a rap-rap-rap-rap of who I assume was the cleaner. WTF!", "type": "review", "business_id": "yZbPvIa_7nt7ekxi31SkUA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "cAJpG8briCwhX3KA7mly8g", "review_id": "Xqe-FjMHEsO-Q34GiMl3vw", "stars": 1, "date": "2009-07-12", "text": "Let me first say that we are fans of the W Hotel and have stayed in many of their hotels around the nation and are overall happy with the accommodations and customer service. \n\nI'm a local Phoenician who resides in the Arcadia neighborhood and frequents many of the wonderful restaurants and hotels this City has to offer. After hearing MANY negative reviews from co-workers, family, and friends, my fianc\u00e9 and I decided to give the W Hotel Scottsdale a shot prior to forming an opinion of our own for this hotel/restaurant/bar.\n\nDuring a night out on the town with visiting and local friends, we opted to give this place a try. Upon approaching the entrance of the bar, security tells us that we're not welcome here due to one of the members of our party not having closed toe shoes and another not having a collared shirt. The attire our group was wearing was more than appropriate for any Phoenix/Scottsdale restaurant/bar. Let me remind you that's is July in Phoenix, and over one-hundred degrees at the time of night we went to the W and the six of us just finished a dinner at an adjacent, popular restaurant. The staff was flat out rude to not only us, but others in line wanting and willing to spend money and support the local hotel.\n\nI will strongly suggest not staying here or supporting the quality of business they are running here. During a time of a slowing economy and tourism, many businesses are forced to rely solely on the best possible customer service to attract and retain business--the W Hotel fell way short of this.\n\nI was very discouraged after our experience here and will agree with the many other reviewers that this place in not worth supporting. \n\nPhoenix/Scottsdale has many great places to experience, so don't settle for this place.", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hbiJHDqJB5APidl-efOAjA", "review_id": "qJc1Y3DBPNCrnBsywQYY3w", "stars": 1, "date": "2012-01-11", "text": "Worst enchiladas EVER and decor from a 1980's attempt at a mexican restaurant. Taco Bell is a step up! But if you like soupy enchiladas drowning in cheez wiz this is the place for you.", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lli00i80n2wmetnimDZ4WA", "review_id": "ivZVMphZe3MS3ZOw7TmdvA", "stars": 4, "date": "2011-08-24", "text": "Food was good, service was great! If I didn't eat at Chili's so much inn the past, I would definitely go back, but since coming back to the US, many more other restaurants to try.....", "type": "review", "business_id": "nZBAnK1rOmV7bLVVDPJs0A"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "4lkTIhTuMhLprQprGlTRlA", "review_id": "sx5ggym-VTiIZ6nf4vpWgQ", "stars": 4, "date": "2012-01-09", "text": "This was the launch of our \"Seven Summits\" of Phoenix mountaineering adventure. Our goal is to reach all of the seven summits by the end of April and we are off to a great start. Although it took us two attempts (two separate visits) to reach the summit, we did it with a few breaks and plenty of gasping along the way on New Years day. It was our way of starting the New Year on the more active side of things. This hike really gave us a great work out with the steeper parts of the path allowing for a good sweat. The trail is a continuous climb with a few resting spots and with plenty of photo ops to the summit. It does get pretty crowded and parking can be an issue on the weekends after the early hours. There are picnic tables, ramadas, restrooms and of course a stunning 360-degreee view once you reach the summit.", "type": "review", "business_id": "vZBYSQtTbY9MaYu5qNuU8Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "gopGuEb-ft6cHKMyCZEvJg", "review_id": "so3Dk9OZZ2B7CAYASQ6GuQ", "stars": 4, "date": "2009-02-27", "text": "Went to Sticklers for the first time today, with a friend who works across the street. I'm a little leary of places that get talked up so much, but Sticklers was everything she talked about and more. \n\nA family friend once told me that the way to tell a good restaurant is how busy it is. Seems like common sense now, but how many times have you walked into a restaurant with less than 10 people in the whole place and then walked away disappointed?\n\nWell Sticklers was packed. My first impression was \"Crap, the line is 20 people deep and we only have 40 minutes for lunch...there's no way\"! Well I was pleasantly surprised when we got through the entire line, food in hand, in about 5! The guys and gals that work there are efficient and have it down. And they showed some great patience for a newbie.\n\nThe chicken salad and provolone sandwich was outstanding and the hot peppers gave it a great kick. Word of warning to the lactose intolerant - it's a 2-piller! The atmosphere was active and lively but not overly loud. We were still able to have a conversation without shouting. I just wished the people at the next table realized that. We didn't need to hear about their daughter \"wrongly\" accused of DUI...for the third time!", "type": "review", "business_id": "xWKtOLuIOVGZprcpGiqpQA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "cAbUcTEmsa2ofhYBeWiYeg", "stars": 3, "date": "2008-10-20", "text": "The place was pretty empty - even for an off night. The service was pretty decent, but like I said - it was empty. \n\nI've been in here a few times, but never when it's busy. The prices don't impress me, but I'd say you get a pretty decent pour for the money. \n\nOne thing I'd like to point out - a 1.5L bottle of Dom is less than 1000 bucks, but a 3.0L bottle of Dom is 3500. If you're a fucking idiot, get the 3L. If you're a smart shopper, you'll get two 1.5L bottles or else just by the glass - which works out even cheaper. Just so you know, it works the opposite way Costco does. If you're getting a big ass bottle of Dom anyway, you probably don't care.\n\nThe decor is red. It's very dark in here at night... dark and loungy rather than clubby. Similar to Merc Bar, but not as hip or hidden... even though they try to hide it with curtains. It's also pleasantly quiet in here... easy to have conversations. \n\nWith the patio door open, you're going to smell cigarettes people are smoking outside if you're sitting at the bar or on the couch adjacent to there. \n\nIt's a nice bar, but I don't know that I'd single it out as a \"place to be.\" I actually think the Mondrian is pretty nice - but that's based entirely on good memories that are completely unrelated to the place and have more to do with the people I was with at the time. If someone wealthy and hip was here from out of town looking to party, the Mondrian is one of a handful of hotels I'd suggest. Not so much because of Red Bar, but more because it's conveniently located within stumbling home distance to so many other better bars in Downtown.", "type": "review", "business_id": "QL3vFMAsEHqfi1KGH-4igg"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "Oq5CYkB4dQE_wmPgHu51bg", "review_id": "627TNM0A-APqZnK_jliRWA", "stars": 4, "date": "2008-10-29", "text": "Canal has been a stop on many a \"bar tour\" through the Waterfront / Old Town area. The bar always has a good crowd in the evenings and the patio is fantastic on warm nights. With summer finally clearing out and it now being possible to sit outside during the daylight hours, we made our way to Canal for some late lunch / day drinking on a recent Sunday.\n\nFirst off, what a great place to sit and people watch! This was the first time we had ever ordered food at Canal, so we were interested to see if the cuisine lived up to the hip decor and vibe of the restaurant. The baby burgers (3 of them) were served up on an \"English High Tea\" tray. Great presentation, and the actual taste of those little guys didn't disappoint.....ahi tuna / fillet mignon / ground chicken. The fillet was my favorite. What can I say? I like red meat!\n\nWe also had the fish tacos.....delicious! A great experience, all around. We're definitely looking forward to getting back here for dinner soon.", "type": "review", "business_id": "0qPmDwHa9NdvvIOgerR8HQ"} +{"votes": {"funny": 5, "useful": 8, "cool": 6}, "user_id": "NvDR3SPVPXrDB_dbKuGoWA", "review_id": "uqyaRUQ5sDleVcP2Wf9guw", "stars": 5, "date": "2012-08-10", "text": "I now consider myself an Arizonian. If you drive a lot on the 101 or 51 like I do, you'll get your fair share of chips on your windshield. You'll also have to replace a windshield like I had to do just recently. Apparently, chips and cracking windshields is common in Arizona. In fact, I seem to recall my insurance agent telling me that insurance companies must provide this coverage in Arizona.\n\nI had a chip repaired about a year ago near the very bottom of the windshield. Just recently a small, very fine crack started traveling north on the windshield from the repaired chip (a different vendor repaired the chip). I called these guys over to my house and they said it was too long to fix, so they replaced the whole windshield the next day.\n\nWhat great service, they come out to your residence or place of business to repair or replace your windshield.", "type": "review", "business_id": "I6yAKGBDclGh7UlvOfqV1A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jdeNI5TTTuM6mj3HTgstRA", "review_id": "lvTXEozP5_OzC0UriGGVVQ", "stars": 3, "date": "2011-01-11", "text": "The first thing I respect about Rula Bula is its ability to attract customers while keeping a low profile. No flashing lights, no 400 pound bouncers with angry stares, and no promotional cards being shoved in my face from down the street.\n\nI walked in and liked what I saw. It has an old school feel to it. There was a live band doing some Lady Gaga covers, and it sounded like karaoke. I wasn't impressed, so I ordered my Jameson (reasonably priced) and walked out to the patio.\n\nIt was a good patio, with a DJ in the corner. It had a different feel to it, and I appreciate how laid back it was. But it felt like something was missing. I waltzed back inside, admired a much better cover (of Micheal Jackson) and realized the one thing I couldn't find here. \n\nFUN.\n\nTo a west-sider like myself, Tempe is the Mecca of mischief, a place where I can have one too many and stumble back home with a story to tell. There was a dance floor, but no one was dancing. There were tons of people, but every group kept to themselves. Even though I don't go to bars to meet women, there was a suspicious lack of pretty ones in here. It's like everyone who was too old or uncool to go elsewhere came to have a Guinness in peace.\n\nI came here expecting a fun bar that wasn't a full-blown club, and instead of getting a happy medium I ended up with a boring dive. Don't get me wrong, I fucking LOVE dive bars, but I don't go to Mill Ave for them. Rula is a good place with good history. I can't hate on it. I love the interior, and I could see myself coming back during the day. It's just not worth going out of my way on a Saturday night.", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5-2JHDnSsoSaoRKDHPeTtQ", "review_id": "hiyGpBbffY0sfz7rXjQHmQ", "stars": 5, "date": "2009-09-15", "text": "I love everything at Market bistro, but I especially love the salads. I always get the create your own with their homemade and delicious buttermilk Caesar dressing on the side. That dressing is totally addictive! The other thing I would wholeheartedly recommend is the Market pizza with goat cheese, artichoke hearts, oven roasted tomato, baby spinach, mozzarella, parmesan and basil pesto sauce. It is probably my favorite vegetarian pizza. You can get it by the slice at lunch, but have to order a whole pizza for dinner.\n\nI've had the corn chowder with poblano chiles soup and it was great. I've not tried the roasted garlic tomato soup but my friend loves it. Had a sandwich here once, with tri-tip with caramelized onions, but it doesn't seem to match the description of the ones currently on the menu. The only thing I haven't loved so far is their Margherita pizza.\n\nEveryone here is always nice and friendly. I love that it's family-owned and still doing well enough to open another location. They now have online ordering, which I can't wait to try!", "type": "review", "business_id": "Uke8Pq1m918WW0n0_jEmWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "bWNjCQyTJttofo3dKtTTPQ", "review_id": "UWubK2igTMicUK6wzm6fzA", "stars": 5, "date": "2010-01-24", "text": "This place far exceeded my expectations and is far better than staying at a Hilton Garden Inn or Hampton Inn. This place is QUIET, CLEAN and for the money, you can't beat this place. It includes a HOT breakfast each day which means real eggs and hash browns served to you at a sit down cafe. This alone saves about $10 per person per day while traveling!\n\nThis place has THREE pools (nice if you don't want to hang out near the bar), basketball court, laundry facilities, restaurant, plenty of parking, free wi-fi, full kitchen, great housekeeping service (they cleaned our dirty dishes!), and a very courteous front desk staff.\n\nThe only downsides were the dim lighting and not enough wastebaskets or tissue boxes. But for the peace and quiet, I'll take that trade-off anyday!! \n\nThis place would be excellent for hosting reunions because of the pools, basketball courts and several sets of bbq's on central courtyards.\n\nIf you are looking for a fancy place, this isn't it. But it is an incredible bargain, comfortable, and very quiet.", "type": "review", "business_id": "PqJwKYHU_eHjw0q0NlULJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cjmZWVN9KU-LAmo5AnG6_g", "review_id": "v-bGz-7GxKKFQqKc9E7zQQ", "stars": 5, "date": "2012-07-28", "text": "Always fresh and perfectly prepared. This is the only place my husband will take Japanese visitors from out of town. Enough said.", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "eJuwXskIZgYONY5V5gyJsA", "review_id": "icjhOjJWyRAi_2jAKINMMA", "stars": 5, "date": "2011-10-24", "text": "Love this place. Everyone is fantastic. The girls up front can be spacey at times but their system is great and the email reminders are perfect.", "type": "review", "business_id": "ArjchfGWpXf3R8Ly9s52Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BWqYBrUPoddg6QtXbK4EOw", "review_id": "cBjAxtH6rU6AOjLfhZnuqA", "stars": 5, "date": "2011-07-22", "text": "We were in town on Business and Pleasure and had a chance to visit Aiello's with our Children, 10 and 7. What a TREMENDOUS experience it was overall and then to top it all off, a chance to win \"dinner on the house\" via drawing a number out of a bucket, was simply superb. We didn't win but will definitely come back next time we are in town as the food, staff, and overall dining experience was unbeatable!", "type": "review", "business_id": "UI5ghIUeHYxzwSfaDVUXOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZTF84I4I5x4TBpdoWwLEmg", "review_id": "MO27co7Z0p2hDI_-zS_OVQ", "stars": 2, "date": "2011-08-31", "text": "I'm from Philly and had to stop in when I found out a Rita's was open.\nIt wasn't exactly what I had remembered, Flavor was just OK and not as intense. Not bad, but not great.\n\nI prefer Repicci's Italian Ice. They don't have their own store, but it's carried at Cookiez on Mill in Tempe and also they are at a lot of festivals in the valley. You can also find quarts and pints at AJ's markets.\n\nJust glad there are finally some good Italian Ice options for us East Coast folks out here in AZ!", "type": "review", "business_id": "sHtnIhtnjB1uWMrZsM_Lsw"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "yXbBXm7ovAGj2crEWP7WWQ", "stars": 5, "date": "2008-09-23", "text": "We went to check out PNP for their 2 Year Anniversary show and were extremely impressed! Space 55 is the most charming space that I never would've known existed had it not been for this show being promoted on Yelp! The actors were amazing and we really were in awe the entire time we watched this 30 minute film being created right in front of us! I'd heard of Comedy Improv, but Movie Improv? I had no clue... \n\nSpecial shout outs to Mark J and Jenn H (our very own Phoenix yelpers) who did an incredible job on Saturday night. Congrats again, PNP, on your 2 year anniversary! I look forward to attending future performances for sure!", "type": "review", "business_id": "UvK70rJjOGLx44Q4qsWz7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tiyg_cQaPdUuSG95Xpi_sA", "review_id": "EMHeC6JD9WxGOzmQDEGgWw", "stars": 3, "date": "2012-06-07", "text": "The veg burger is fantastic - make sure you ask to try all the different aioli sauces especially with the tots!", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 10, "useful": 5, "cool": 6}, "user_id": "y9IKf7VckFc-fesWuDwgxg", "review_id": "VP_xZoyhvAByllpMMqbmTA", "stars": 4, "date": "2008-08-21", "text": "Last Saturday night I got my skate on.... (Before going out to indulge in more \"adult\" good times) \nI had a fucking blast and have decided that next time I go, EVERYONE I know is going with me. YES, that means YOU!\n\nMy date picked me up around 9ish and immediately made reference to the size of my \"huevos\" for wearing a \"red rag\" into the 623. (Like anyone's going to believe a 32 yr old white girl at a skating rink is a gang banger). He was joking obviously.... called me 2Pac all night...it was cute, whatever.\nUpon arrival I noticed that indeed, it is pretty street in there. No biggie, I grew up in Tucson where our skate rink was filled with cholos and meth heads. I don't judge, I high five.\n\nOne thing was annoying... .75cents for a locker, and only half of them worked. The .75 thing didn't bother me, the fact that they weren't marked so you just kept throwing more quarters in there and hoping for the best, did. \nWe strapped on our skates and took off. I haven't been in many years so it took me a few minutes to get comfortable. I can proudly say that I only fell once and it wasn't my fault..... what I can not proudly say is that I ended up on top of a 13yr old boy ...and from the very loud \"OWWWUCH\" that came out of him I'm pretty sure I punched him in the balls. The look on his face was sheer horror. (I still can't stop laughing about it). My date was pretty fancy on his feet..... I half expected people to profess undying love to him and call out his name as we left. (one dood kinda did)\n\nAll in all, one of the most fun filled evenings that I've had in a long time. Kudos Great Skate!!", "type": "review", "business_id": "M9t5569pgvJYurC8hX0E1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rAAgOfBRswWzbBhcmyyUMA", "review_id": "oZimprWuVcJb47N4j8kc7w", "stars": 4, "date": "2012-08-30", "text": "Went and got some delicious Boba today. Mango and Strawberry Banana. \nGuy behind the counter is very welcoming and friendly. :)\nMy choice place for quick to go Boba.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LnMMOFdCcHiYQOpagFINnQ", "review_id": "9nI4DlZNttD8jnrEb7pUYA", "stars": 5, "date": "2010-07-25", "text": "WOW!!! practically half price on everything compared to the chain stores. Staff is always very friendly and helpful, and i've literally saved hundreds of dollars since I discovered this store just under a year ago!", "type": "review", "business_id": "aMsEP51zdkdJpG7so9zmzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3miOUpoAr-NW7nGceQkYYg", "review_id": "fjqsBbqqUXUEPZfdIiXrwg", "stars": 3, "date": "2009-12-13", "text": "Chain restaurant that's just about okay for afternoon dining with friends. If I wasn't having beer at lunch I'd probably suggest eating someplace else. Food is good but in my experience their beer makes the meal. I've eaten here about half a dozen times during the past few years when in town for business weekends.\n\nIt is centrally located on the corner of Mill and Fifth Street in downtown Tempe, amongst quite a few other local restaurants. During my most recent visit I ordered a steak at lunch along with one of the seasonal brewed beers. Steak was okay but I wouldn't order it again. Beer was exceptional, so I wasn't unhappy overall.\n\nI love burgers and I think I'll stick to that as my primary choice when eating here in the future. I can't think of any times when service was particularly unsatisfactory, nor were there times when service really stood out as exceptional. I have almost always eaten here on a Saturday afternoon, and it's typically been fairly busy during the lunch hour. Never had a problem getting a table, which is important since I'm usually heading back for an afternoon conference session.\n\nI love the big glass beer mugs (not sure what size they are) but I can't always down the whole thing during a short lunch break (I'm a lightweight).\n\nOverall, good place to eat if you're hungry and in the downtown area, but I wouldn't go out of my way to get here.", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3hPmlMAP3PfHMiwNW_RUZg", "review_id": "2zUZrk19Bk10NN_nnkddaw", "stars": 4, "date": "2011-02-08", "text": "Very interesting sweet and sour had kind of a spice to it but good. The pork itself wasn't my favorite but it was good. The rice was very sticky. Unfortunately I had to get it to go so I missed out on a lot that the great food specials have to offer. But I would def go again.", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "JVeCUlDmcwJ3pteEdmzeHg", "review_id": "8W7HMoSDjuFbaCQx39AIYQ", "stars": 5, "date": "2008-10-27", "text": "YIKES!! Its a good thing that this place it a far drive for me - cuz it could spell trouble. \nIf you ever have a craving for a real delight and want to really 'enjoy a silent moment'.....try one of their coconut, lemon or dark chocolate cupcakes. Honestly I didnt care how many calories are in them....I was weak in the knees. \nThere is standing room only in this shop - literally I think my bathroom is bigger -but a big thumbs up for the cupcakes, and kudos on their packaging!!. (its definitely built into the pricing!)", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dKx6EdEQZ3-ngWOTd0AFpA", "review_id": "_zh2YOGOZDrXbwSi7DmFCw", "stars": 4, "date": "2009-10-26", "text": "Finally, a great Asian fusion restaurant. The service was super friendly. They even got me Yoo-zu tea because they didn't have honey. Server was great also and gave us recommendations about the amount and food choices because we asked - very professional. \n\nNow, the food...\n- spicy wontons: mmmm deliciously fried to perfection and i absolutely love that wasabi sauce\n- shumai: ehhh..though a lot of people on yelp liked it, the skin was a little hard for me\n- sesame tofu: cute little deep friend tofu cubes\n- shabu style miso with shrip: warm light soup, definitely a must try\n- red thai curry: omygosh, that almost took off my tastebuds..i wouldn't recommend it unless you like spicy beyond jalapenos\n\nOverall, a great experience, delicious food, nice ambiance. Oh, everything fried tasted non-greasy and rather healthy - a rare treat. :)", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "kOyW4HTOFNX1NqIA-eyKyA", "review_id": "156w7HZbZ-wO84aw5RBq3g", "stars": 4, "date": "2008-01-16", "text": "We've eaten at Taneko twice now, and while we like it, it's awful expensive for what you get, and I prefer a more authentic Japanese environment.\n\nTaneko starts off wanting to be a Japanese-style pub restaurant, but ends up throwing way too much Scottsdale into it creating a rather pretentious yet still yummy restaurant.\n\nThe food is excellent - I enjoy the pork meal that has the stupidly spicy mustard sauce. My kid likes the fried rice, though it is a little too much on the ginger side. There's a gimmicky hot-rock appetizer where you cook pieces of steak on a super hot rock. It's way too expensive for what little meat you get, but it's an awful lot of fun.\n\nThe service is excellent as well, though maybe a little too servile for my tastes. The wait staff go WAY out of their way to make you comfortable and quickly take care of any needs. I just don't care for all of the introductions - I'm not going to remember the names of the 4 or 5 people bringing me stuff. Still, I think that's the Scottsdale influence. Not bad, but not really my thing.\n\nOverall, I've enjoyed both of the meals that I ate at Taneko, but with better places to eat real Japanese food like Yasu, Sea Saw, Hiro's and even Sakana, I'm probably not going back real soon.", "type": "review", "business_id": "qgYWglXd2dkx5xUWPHCKcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dKMzuhnwGh3hGxP0QH7m6Q", "review_id": "wcNcrGEyS9SSFgJlAPYwPA", "stars": 5, "date": "2009-02-19", "text": "I have to say I am not a big Valentine's fan. I don't like Hallmark holiday's. We ended up by chance going to MiMi's for Valentine's Day and they had a great menu and price for that menu for the evening. I am just impressed by their service, portion size and just the overall experience. I just love this place.", "type": "review", "business_id": "qLXxp0rpzT4kG9tT3wZwfA"} +{"votes": {"funny": 3, "useful": 0, "cool": 0}, "user_id": "PZc3S5ql5-VzEZm9TuyCpg", "review_id": "dB62OZ5qf6S4X-Zu9FcUqA", "stars": 1, "date": "2012-03-31", "text": "My part Jewish friend has been raving about this deli so come payday we went to check it out. Ive been in Phoenix a little over a month and have been getting sick from the food here...diarrhea lots, shit my pants once... anyway, i like to eat in divey non-american cuisine. This place aint seedy enough for me, I suppose.\n\nI did not get ill from the food here\n\nHowever....\n\n $12.95 for a sandwich, fries, and a dollop of soggy coleslaw ???\n\nI kept hearing from my friend, his mom and the waitress that the sandys are HUGE.\nnope.\n\nThought we might split one.\nnope.\n\nMy sandwich was flavorless..err..thats a lie.. it tasted like stale bread.\n\n$29.98 for 2 sandwiches and 2 sodas (its an effin sandwich!!!). I only had $40 (only ?)\n\nLeft the waitress $5.\n\nGave my friend the other $5 to put toward a plane ticket to New York where he might experience Kosher (and a bit of his heritage) on a more realistic scale.\n\n..the fries were good tho.", "type": "review", "business_id": "PxeX1M8WtyPxX1MuuGIh-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V60Rzx_X6pgcrWJLxgL94A", "review_id": "y8SzsAgLPKkWFa5R753yZA", "stars": 4, "date": "2011-03-06", "text": "I went here with my mom while my dad had a dinner meeting. The atmosphere is hip but it's also got a mature setting. It is a really great place for young adults and even older ones. The price was good, the food was amazing! The portions were also big and MOST the staff was friendly. I overheard two rude staff members making fun of the customers. However they might not even work there anymore. Great place!", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9UNGbiE9k0fvMpCMJp0Gww", "review_id": "CjnzL6c2vU78SSl77u9puA", "stars": 5, "date": "2009-09-02", "text": "Habaneros is an awesome little gem stuck in the strip mall hell known as Scottsdale. If you are one looking for an original meal at a decent price, try out Habaneros. \nI am addicted to their chipotle sauce. You can find it in almost every item there. Try out the Shrimp or Fish tacos, they are delicious. Sometimes the food takes a little while to cook (and there could be a line). So be prepared if you are going there on your lunch break. The salsa is not as spicy as I would like, but I am splitting hairs at this point.\n\nGo try Habaneros, you wont be disappointed. Its a nice change from every unoriginal, corporate restaurant you find in Scottsdale.", "type": "review", "business_id": "kqGbGsG2p6Y3vkplCKyE9g"} +{"votes": {"funny": 4, "useful": 1, "cool": 0}, "user_id": "wJp8U2qXl_jYUgyW9thjGA", "review_id": "7ZujDqlte3aoLmFsa4P3oQ", "stars": 1, "date": "2006-01-08", "text": "I went here because all my friends were peeing their pants about how good it is. Wrong. The slow (perhaps retarted) staff with no customer service, alongside the barely mediocre tasting pizza both contributed to my disdain for this awful eatery. Fuck it...stick to Slices.", "type": "review", "business_id": "8_wUsDlOE8Guecq5RZZjDg"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "cebfUwMZxY30pgjiBLw6xA", "review_id": "TWcI16TuRg0RzZWwnDxXAw", "stars": 4, "date": "2010-06-29", "text": "I've eaten a huge percentage of the food on Green's menu and I love it all. If nothing else, come here to try the Soynami's (vegan Blizzards). I'm not a fan of rice or soy ice cream but this stuff is amazingly good.\n\nThe bowl meals are packed with great fresh vegetables. I mostly eat whole foods and don't consider the fake meats to be especially healthful, but I love to eat the fake meat here once in a while for the texture. It's so good. It's not exactly like the real thing, but it doesn't need to be. It's delicious as it is. \n\nThere is always a huge variety of people eating here all the time. It's always packed, always hard to get a table. Good for Green Restaurant!\n\nAtmosphere: The restaurant is made with green materials. Every time we go they are showing the work of a different artist. It's college-indie and casual.\n\nThe employees don't act super enthusiastic, but they're decent and polite and do a good job. I love the humor of whoever it is that writes up the food specials on the chalkboard. \n\nBTW, you can get vegan whipped cream here and it's SO GOOD! :)", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zAfxIeb4aX5XJA1g5C_1uQ", "review_id": "-cu3MI5GofQOgr3BAFPSyg", "stars": 2, "date": "2008-11-18", "text": "This might be a good way to kill time if you're near the airport, the food really wasn't that great. It tasted cheap and like it had been sitting there for a very long time. I had the caldo 7 mares and it was lukewarm, wayyy too salty, and the shrimp were mushy. It was pretty gross. The carne asada tacos were mostly gristle, and I couldn't really taste my enchilidas with the thick blanket of sour cream over them. For $20, I could've gotten much better Mexican food somewhere else.", "type": "review", "business_id": "VXIkI9_EbDbYHeO9IzKjJg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L3XWX_dd8_pYnRSMdppjDg", "review_id": "8c1LVNnWWprVoiHQkP_6Mw", "stars": 4, "date": "2010-11-21", "text": "I am always in search of good food fast...not fast food! I think Jimmy John's knows what they are doing, and should continue to knock out those sandwiches, FAST.\n\nI love that I can pretty much know, I will a) Not wait in line and b) be in and out in 2 to 5 minutes flat! Heck yeah! And get a very tasty filling sub.\n\nI recommend the Lulu, it is very good, and has tons of meat.\n\nOh, don't waste your hard earned money on the Avocado. This is my only complaint about Jimmy John's, they have pureed avocado and just spread it on like it is mayo, only they don't put much on. I think it is a waste of money.\n\nThis is my go to lunch place when I am in a hurry!", "type": "review", "business_id": "FUKRPXgUx9Gm8xo4c9VosQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F82JoyU1Y5yFuSeKfGxoAA", "review_id": "jNtfzJ7qObiUwIyHkMFzhw", "stars": 5, "date": "2010-11-04", "text": "I LOVE this place. Great food at great prices with great service in a great atmosphere. Great variety, great spices, great presentation, great menu. Every entree gets a cornbread dish skillet to nibble on. I think I would love everything on the menu. Can't wait to go back and try them all. Love It!!", "type": "review", "business_id": "z1Np8_oQECKWGCwJJ8864w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mlBC3pN9GXlUUfQi1qBBZA", "review_id": "sSKE-UMoM_1wjuW29yT9iQ", "stars": 4, "date": "2011-02-12", "text": "This place is great if you are looking for something sweet and are in Scottsdale. I had the tin roof sundae and it was out of this world. I love sweet and salty together. Sugar Bowl is also open late so its a great place to go if you are hungry or drunk or have the muchies and need something good to eat. The service, however, is a little slow and I would never dream of going during normal hours (I have been late at night) with the amount of kids that are probably there!", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "oRRHrcRPcEAnOepF3KPfsg", "review_id": "7OTX6no_YKFuZLxDatF0Fg", "stars": 5, "date": "2012-09-04", "text": "I have to give them a 5 for their Guacamole and chips.\nI am just in love with it.\n\nEverytime I go to the US, I have to go there.\nCheap, super tasty and I love the salad bowl option they have (as I cannot eat wheat flour).\nThe meat is always tasty and fresh and again .....their guacamole ....the best !!!!\n\nAlways clean and fresh with friendly staff.\n\nHealthy fast food .....\n\nJust wish that we had it in Canada !!", "type": "review", "business_id": "K2_Hmmo5crTYWiT_1sWnfQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "YTrENuteaA0cc5JPkmAHlw", "review_id": "mbl7pzonBNY8XaK5eumPdA", "stars": 2, "date": "2012-05-09", "text": "I had high hopes for the Habit since I live only a couple miles away, but it was mostly disappointing for me. I'm vegetarian, so I have no idea how their meat burgers taste, and they may be the best in the world for all I know, but the veggie burger was a tasteless lump for the most part. I do give them kudos for having a veggie burger, but either put more effort into it, or take it off the menu and go full-on meat!\n\nThe service was nice, and I like the design of the place, but there are too many good veggie burgers to be had in the Valley to waste my time eating this one. Parking lot is super-cramped, so if you need your meatburger fix, then don't come right at 12 or 6, unless you want to park in someone's yard.", "type": "review", "business_id": "BcRb2bBN9pGdV8Ef5-dKUA"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "rjlb-7-JcmM6fR64ZpyTug", "review_id": "JdR_rzoDyUJOC9eDF2iXNg", "stars": 4, "date": "2009-01-05", "text": "So, I avoided this place like the plague for the longest time. No reason really, it just never caught my attention. It always seemed to be empty, which led me to believe it must not be that great. Well, don't judge a book until you walk in and try the spaghetti! \n\nThe Bollo Neapolitan has been my favorite pasta so far and the steak sandwich is to die for. I'm telling you- I never order steak sandwiches and I fell in love! I've tried a few of the other pastas and they were ok, but the Bollo Neapolitan was my fav with the runner up being the Garlic Shrimp Pasta.\n\nNow for the Negatives. The chicken on the pasta just never really tastes right to me. I don't know what it is, but it has a very gamey taste. The dishes I've tried without chicken have been far superior in my view. \n\nFinally, I've never seen this place packed. That can be a negative or a positive depending on my mood, but I would like to see a few more patrons. So, if you don't want to wait in line at the other Italian joint in the AMC 30 complex (Macaroni Grill) or are looking for a non chain option, check out Neapolitan! The service has always been great too.\n\nBottom Line: I'm glad to finally have a decent Italian choice when going to the movies at AMC 30.", "type": "review", "business_id": "v6zRA0WqOODJjmpvstrpGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NgS8s99qQIiHOszKd-m87g", "review_id": "64J8_Mgm85_urWyi8F7zMA", "stars": 4, "date": "2007-05-05", "text": "I adore RA! They have a great selection of sushi. Go for Happy Hour. Its only a couple of hours, but you really get some great items for pretty cheap. You can even get a large Asahi for about $5!", "type": "review", "business_id": "nk6_ipMkmUvUtq6Xvncf0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "ifufAIjgZR2Q1FizJnUZJw", "stars": 3, "date": "2011-09-19", "text": "Wowza! This place is a total trip! No, I don't smoke, but if I did this place is probably the place I would go to. \n\nFirst off, the food was okay. I ordered some chicken wings, which wasn't really that great. My favorite was the Thai Curry -- it definitely had some pop to it. It's one of those that creep up on you. Milk please! My friend ordered some Sake that I thought was real good and smooth -- don't ask me what it was, the lighting was low and I didn't care much by the time I arrived.\n\nService was pretty good I guess, and then again the place was drop dead for a Friday night. What's up with that!? I'm sure the place gets hopping on 1st Friday, but that's only one day out of the month -- I sure it picks up quick!\n\nAmbience, was cool, just reminded me of the 70's in a way even though I didn't grow up during the 70's haha, but I thought the design and decor were pretty cool. Eccentric I think was the word I used. Bathroom was blue and that's all I'll say.......check it out! - Enjoy!", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Y66tK6ik9gP7AW9exNoRug", "review_id": "S0_rymuRwcyOgJ3YdDLmoQ", "stars": 5, "date": "2012-06-11", "text": "Fresh and delicious.", "type": "review", "business_id": "cNGI_5GbfNFbZBMQZ-s-UQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-L0bSNfErGer1UCEa6D4PA", "review_id": "4DxmctiMbyujXpt7BGElvQ", "stars": 5, "date": "2012-12-20", "text": "My boss took us here for a little Holiday lunch the other day and i have been dreaming about the burger ever since! Seriously, the term \"cheeseburger\" doesn't even to justice to the masterpiece they brought me! And the parmesan and truffle oil fries were amazing, too! The decor is kind of cool, sort of an American Teddy Roosevelt feel... Grand old pictures, deer head, and dark wood mixed with high ceilings and light colors so it doesn't feel all heavy. Ok, back to the food... \n\nThe burger has applewood smoked bacon and grilled onions mixed into the patty. It is incredibly juicy without being greasy! They top it with Havarti cheese, place it on a buttered grilled brioche bun, and serve it with a couple of different sauces... One was like a garlic butter type of sauce and the other was like a horseradish mayo. I ate every single bite and didn't care that i was stuffed to the gills or looked like a pig in front of my co-workers! To leave any bit of that on the plate would have been a travesty! I can't wait to take hubby here for lunch (dinner would be wayyyyyyy too expensive).", "type": "review", "business_id": "wqIB7hUTQnCswJV4UyYyEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "eiA073MhHpCdwBq8u_luZA", "review_id": "33S5MB3TZgtRUsLDEUDZZQ", "stars": 2, "date": "2011-11-21", "text": "Glorified panda express\n\nWith that generalization aside I was willing to give ol PF Changs another try when they served me a steamed shanghai shrimp dish that was devoid of flavor\n\nThinking less flavor meant a healthier meal I alas was given a shocking reminder of how this place sodium bombs there dishes when I read the nutritional info\n\n 'tear", "type": "review", "business_id": "xcOncADGPr9eki8OU5Ln7g"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "_1PmRIeiFmevDYJtHz4bkw", "review_id": "-TN2LO3ihHKaJKobbjATkA", "stars": 1, "date": "2012-02-20", "text": "Gross, plain and simple! I'll crave some quick Chinese Food and then I'm always upset. What a waste of money!", "type": "review", "business_id": "nLpV9fo8xml-QHOKyOje2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E5qFR0RBQBoXx8FbrOkdbw", "review_id": "p0FZQJMsrWbVGgztPAMdDQ", "stars": 2, "date": "2012-08-17", "text": "Other than the ambiance of being a Rock & Roll restauarnt, this place isn't good. The food sucks.\n\nI came in for a birthday party with 6 people, and not one of us actually enjoyed our food. We had called ahead (2 weeks) to reserve a table before a game. When we got there, the table had not even been set up. We were 20 minutes later than planned getting to our table, and we missed 1 entire 1st inning and the top of the 2nd because it took so long to get our food.", "type": "review", "business_id": "gkv2XvXpFgiq4Bb2XK7YmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bixj1Uu6cEam1J0BtFAK_Q", "review_id": "pFZHzPZ6W5vf6lROFPSbBA", "stars": 4, "date": "2012-08-19", "text": "My roommate and I stopped by here on a Saturday night with my groupon to see how this Fuego is holding up. I've been to Fuego Bistro before, and it was amazing, so this one at CityScape had a lot to live up to.\n\nI'd say this place gets less than 5 stars based on atmosphere. The place kind of feels like a cafeteria and the vibe from the entire patron situation is just bleh. The best part about the atmosphere was my own company and that of our server, Brandon, who was really helpful and chatty.\n\nAlso, while my roommate got the Chile Relleno, which was okay in my opinion, I had the Fuego Tacos with pernil (which apparently is pork), and they were delicious. I absolutely loved and devoured them. \n\nSome other key points: The drinks were very tasty and parking is very easy. We parked at a meter (which is free after 5p), and I'm told they can validate the parking ticket for the underground parking.\n\nOverall, I'd come back here. I wouldn't go here for a sexy date or if looking for something fancy, but definitely for a tasty dinner with great service.", "type": "review", "business_id": "aXRtJioBYidoHdS2GTTKhA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "Nbac7vW9AZlXG-CjXCvPpA", "stars": 5, "date": "2012-04-08", "text": "What a great way to spend Easter morning!\n\nAfter taking part in the egg hunt on the main grounds (and BTW, they know how to do it here: Massive dumps of eggs full of goodies. More than the kids could carry. Plenty of photo ops. Parents who weren't acting out scenes from Soylent Green.) we made our way to this nicely upscale coffee shop/casual dining spot. \n\nWe were seated 30 minutes ahead of our reservation, keeping my little guy from popping a gasket. I chose the $19 breakfast buffet, and considering it included a custom-made omelette with organic ingredients--as well as juice and coffee--it was a steal. \n\nService was wonderful and the staff was sure to make us feel at home. Well, actually better than home because I don't have people looking after my every whim and need while at home.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pB6-p_DMF0vLzLkHnO9MeQ", "review_id": "b8E4wJ8S6yLs1p4NrVQRQg", "stars": 1, "date": "2011-12-26", "text": "Simply stated..............a GREASY burger from start to finish..\n\nNOT 4 me....This place I will avoid while I continue on to a real good burger joint.!!", "type": "review", "business_id": "TuCAYZ89lP_s6D7Y78xNhQ"} +{"votes": {"funny": 5, "useful": 4, "cool": 5}, "user_id": "1PWFPOmqvLx3sGKuuKQr9Q", "review_id": "nzzY-6CorH1X6YNzwBVzyA", "stars": 1, "date": "2010-08-03", "text": "I'm very displeased with the service I receive from the Republican party in Arizona. First, they provide us with John McCain. Then, Jan Brewer. Then they crap SB 1070 all over us, which we didn't even vote on. I've never received anything but lousy politics from these people.", "type": "review", "business_id": "MsouJnTwEDlufZWS5oNy_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7cR92zkDv4W3kqzii6axvg", "review_id": "OUINQqKP-14HOrVkZOb1wg", "stars": 2, "date": "2010-05-10", "text": "Pastrami tasted good, but had a lot of tough tissue, and was near impossible to bite through. Rye bread was low-quality.\n\nCurly fries were tasty.\n\nCole slaw was yummy! Really the highlight of the meal.\n\nLemon bar was delicious, if a bit subdued. (I like the lemon to pucker my face)\n\nThe brownie was warm and chocolatey, but too many nuts.\n\nProbably my only visit, unless someone invites me.", "type": "review", "business_id": "Ql2cV2A9alEOlFySzEGNVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "odaj8Gm4jc7lF20WoZ8RZg", "review_id": "z8mvrgHn2SyaoqCs_HEesA", "stars": 2, "date": "2010-08-28", "text": "I've been to Buffalo Wild Wings before, but my first visit at this location was during UFC 117.\n\nIf you come here to watch fighting events like UFC I would recommend arriving 2 hours before the main card starts if you want a seat inside. I arrived an hour before the PPV portion of the fight started and didn't get a seat until half an hour in and it was outside. I ordered 12 regular wings and I was very underwhelmed. I felt the wings were overpriced because they are smaller than average.\n\nThe main reason why I went here was that they weren't charging a cover or bill minimum for the fight. Also, the atmosphere for a UFC fight was really good compared to the other BWW I went to in Tucson.\n\nIf you want a place with a good atmosphere for a sporting event, you should come to BWW. But your food expectations should be lowered a lot.", "type": "review", "business_id": "h1kwVr1eTpBK0rWfcm5QSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "OdcTDRehDfex0FijvOB28A", "stars": 3, "date": "2010-03-25", "text": "I went in yesterday for happy hour to have a birthday drink. I had the house margarita for $5.75. Actually I had two! They were good. I think I disappointed the bartender when I question him why his $7.25 Margarita he was pushing was supposedly so awesome. He claimed Cruz a local Tequila was the reason. I argued just because it's local doesn't make it good. LOL. \n\nThe house Rita stands up alone, as a good traditional Rita on the rocks. Don't buy the hype, as I saw half the crowd not question it and accept the pricier one on special as the way to go. \n\nThe place was busy. They were also hosting a MBA networking mixer just off the main bar. In addition to discounted beer at happy hour they also offered free food! I thought those days were gone but they kept a steady supply of warm chips, salsa, veggie tray, cold pinwheel wraps and one or two hot Mexican items (mini chimis, and bean & cheese nachos) coming. I was going to order a half price appetizer as part of my happy hour, but heck I went for the free food and was just fine. \n\nMy sampling of the appetizers makes me wonder how good the menu was, so I peeked at it. It looks pretty basic but tasty. I think everything was $12 or less on the dinner menu. According to the sign outside lunch starts at $5.99. It may be commercialized Mexican food but it's a step up from some places like Taco Bell and Baja Express for certain.\n\nThe staff seemed competent and to work rather well together. Even though it was busy the staff was calm and quick to serve, which is a good thing. They seem to recognize some customers as regular patrons which was also nice. \n\nThe woman's room off the bar was fresh and clean in this madness as was the bar and all areas I could see. \n\nI think I will be back. I think I could even become a fan of the place over time. It seems to have a good mix of people and an impressive straight male clientele, worth another look.", "type": "review", "business_id": "jzPMl-NoB5F2fwoHX3hN8A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "pfwmCVwb1Lhsq4pbxh30Ww", "review_id": "ehvtMQ0cTA2GE4xXxd-XyQ", "stars": 5, "date": "2008-11-19", "text": "I had to do some painting and needed help locating items and suggestions from the staff and boy were they ever helpful. Nothing like Home Depot, where you have to go and hunt down an employee and when you do they can't wait to get back to their break or whatever was more important than their customer. I was just overwhelmed by the courteous and quick service I received at this location. Even their quality of garden plants surpassed several other super stores.", "type": "review", "business_id": "lUE101QlZgUuIl8OdIzITQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "uptgzZkEm4ytmHuZKBtnhA", "review_id": "7ccpPAjN9mhfj1Q2sS5kRg", "stars": 4, "date": "2011-08-30", "text": "Parking: Nice lot, good amount of spaces and good lighting. \n\nCurb Appeal: Strip mall Bar and Tavern; Clean entrance, no major issues. Big tinted windows on the side facing Elliot to keep the sun out; the front looks like strip club (not a bad thing, just sayin'); It has glass block windows and a solid oak door. \n\nLayout: Cool layout; right side is a large dining room with good amount of tables and some booths. Off to the left of the entrance is a large \"U\" shaped bar with plenty of high top tables surrounding it. On the dining level there are numerous booths and table tops. \n\nAmbiance: VERY clean, noticed that a table stayed unbussed for only a few seconds before it was taken care of. Good sound system, lots of TV's showing variety of sports. I can only vouch for the Mens room, but it was actually REALLY nice. Good clean area with lots of room, plenty of soap and towels.\n\nFood: My group had a little bit of everything on the menu. Sliders were actually good, wings were good with healthy amount of sauce (Get the Maple Hot...different but good). \n\nDrinks: Plenty of beer on tap and at a good price. Even PBR for your hipsters out there; good micro and import selection, but not great. \n\nStaff: This is were they earn the 4th star. AWESOME. Everyone was friendly and seemed to actively look for ways to make the visit more special. \n\nThe Skinny: This place is good. I'd be comfortable bringing the guys here for some football or happy hour beers...and it's equally comfortable if you want to bring the wife/girlfriend/husband/whatever for some drinks and some fun. I suggest you give it a chance and don't let the \"dive bar\" reviews get you. I've been to a lot of dive bars, and this place is a few steps above that for sure.", "type": "review", "business_id": "zDfaNgSYLn-TwquB5A6AaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ACCUr3Ydw5XyPCmoIEdnpw", "review_id": "ZDvRD1Fn_QYI1dceH5qv1w", "stars": 3, "date": "2009-10-04", "text": "Wings in Buffalo aren't usually breaded. I can't stand breaded Buffalo wings. The sauces were good, I can't deal with the breading. The redeemer for this place is that they serve Roast Beef on Kimmelweck. I did not try it, I am sure it was decent though.", "type": "review", "business_id": "f7bGGG2dO0utA2Xcp4jsWg"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "4d4xIM4lBG8BDZrG9pAuiQ", "review_id": "z3eqTSmgMSoghwCb2FJZ0Q", "stars": 3, "date": "2011-06-21", "text": "Fine. Just fine. C+/B- average-- all around. \n\nThe decor was rustic and lodge-like, yet still open and modern. No complaints here-- aesthetically pleasing and lacking the bright colors and loud mariachi music of more traditional Mexican restaurants. The table we were sat at seemed to have been haphazardly wiped-- not totally clean. Our server was okay as well-- friendly enough, but seemed generally disinterested in her job and us and was not very knowledgable about the food she was serving. \n\nThe food was fine. The salsa served with the chips was totally fine-- fresh enough but not very flavorful-- a theme we would soon learn would repeat itself throughout our dining experience. We started with the avocado egg rolls with cilantro honey dipping sauce. These were the highlight of the meal-- the sweet sauce complimented the creamy avocado taste nicely. My only qualm here was the $10.50 price tag for 2 standard sized egg rolls. Seems a wee bit steep for what it was, but still very tasty. I ordered the vegetarian tacos and they were good-- not wow, but good. I appreciated the variety of vegetables and the fact that they had veggie tacos in the first place (many more standard Mexican restaurants do not). I do wish they'd had more spices. The side of rice was pretty good, but not as flavorful as I'd like. The veggie tacos are also served with some sort of pickled cabbage onion slaw (because the borracho beans that accompany the other dishes are cooked with bacon). The slaw was also fine. In general the food was acceptable, but a bit bland. I should also mention that the portions are quite reasonable-- two smallish veggie tacos and a bit of rice and slaw. Sometimes the portions as more traditional Mexican restaurants are absurdly gargantuan-- it was nice to see a normal sized and relatively healthy-seeming Mexican(ish) meal.\n\nFull disclosure here-- our visit to Black Chile was prompted by a card we'd received in the mail good for $20 off any meal. So we figured it was worth a shot-- and it was, but maybe not a return visit. Our bill (pre-discount) for the appetizer, 2 entrees, and two sodas came to $40. If it wasn't at the Biltmore, I'd say it was a little steep, but considering its location, it's probably right on. I'd go back if the food had wowed me, especially since it's in my neighborhood, but it didn't, so a repeat visit isn't likely. There are enough solidly 4 and 5 star places in the vicinity that 3 stars doesn't generally make me a repeat customer.", "type": "review", "business_id": "_-9pMxBWtG_x8l4rHWBasg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "S0Q02sah_5lTUvPwHL9xgg", "stars": 4, "date": "2009-10-31", "text": "Stopped there for breakfast. A cozy little place, with very friendly and smiling persons. Their house coffee is fine, but will have to go back for a dirty chai. I had also a bagel (just like any other). A nice drive through, and a good alternative to start the day!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "AM2X1tso9b62GhMobfTHAw", "review_id": "BTnz63v_GpAgZw_a3diIfQ", "stars": 2, "date": "2012-12-27", "text": "If I had written this review prior to an incident in September it would easily be 4 stars.\n\nThe bar tenders were awesome. One night I was carrying around a largeish trophy (Why because I own one). I put it on the bar to order beer and they asked me if I wanted a glass or if I wanted them to put it in the trophy. Yes, yes I did (although they did have to pour the drink into the glass first cause the trophy was to big to properly fit under the tap). This might not be a big deal to some, but since I've been kicked out of bars for drinking out of said trophy before and that was the first time I've ever had a bar tender be so cool about it. Every time I've been hear the bar staff has rocked even when they are extremely busy.\n\nFood. I think I've eaten here once, so I'm not going to comment on it. However I have been here when they switch from neighborhood bar mode to dance bar mode. If you are at a table still eating at that time they have no hesitation moving your table out of the way, if you're lucky they will tell you about it before hand.\n\nIt's a good place for watching football/UFC/etc. Could maybe use some more TV's. Music is nothing outstanding, it's your typical dance/top 40's/etc that you would expect at any college dance bar. Since the crowd often is college/recent grads, it fits the bar nicely.\n\nI don't normally include bouncers in my reviews, but after what I saw the last time I was there, it's affected my opinion of the place and is the reason the place is only getting 2 stars. If you are kicking someone out and the are leaving peacefully, there is no reason to put your hands on him, other than maybe to keep him from falling over the place. So when I see a bouncer aggressively pushing a guy who has thrown up his hands in surrender, and in the process the bouncer knocks over a girl who has done nothing wrong, that's just not cool. Maybe it's just me but I would think someone who works for the bar should be picking her up off the ground instead of nearly trampling her to help the bouncer who put her there while throwing out someone who is giving them no resistence on his way out.", "type": "review", "business_id": "sDozh6iTylTJD26d7xcgGw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "I_i3bHwfSFne6eTHPe4tMQ", "review_id": "HPH8ubLvQU0PgmKUdubDiA", "stars": 5, "date": "2012-07-10", "text": "This is my favorite spot, waterfalls everywhere, beautiful flowers, fun slide, and great food!", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nLXfL00a9nSjB7T_OqKscw", "review_id": "PH2brIyiSG3XdXgInaYudA", "stars": 4, "date": "2012-07-19", "text": "What a great place. We (family of three) went on a Sunday afternoon. What a fun place, great food, friendly staff. The manager was there, she let my son sit on the michanical bull. fun. fun. fun", "type": "review", "business_id": "C_eWAEOvkHZ_IZYGwjtpmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "19He-fV6qMeUHkaUgry51w", "review_id": "sKxtwP9oYzDkgf0TqdLtdQ", "stars": 4, "date": "2012-06-24", "text": "Love this place pretty decent sushi for a good price, I love that they have happy hour and reverse happy hour. They're even open till 2am for when I'm craving sushi for a midnight meal:)\nOnly reason I gave it 4stars is that the service is slow sometimes", "type": "review", "business_id": "nXKwzVKJCtIGd4HxXgjdnQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "F2g3F1MZpo9MDuFZajcs6A", "stars": 4, "date": "2009-01-03", "text": "freaking huge portions. the sandwiches are super yummy. the french toast, covered in bananas, and that crumbly sugary delicouisness is to die for...and you might unless you jog 10 miles afterwards. but the real treat is the desert counter...oh my god, even to just look at it is an honor. good bang for the buck.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 1}, "user_id": "PShy2RYNadDUhJf4ErOJ7w", "review_id": "81w8h2cbi7bZMOI8s-10mA", "stars": 2, "date": "2008-05-11", "text": "Blah\n\nFood is boring and sub par in my book\n\nThe ambiance is chill and super trendy Scottsdalish\n\nThe drinks are all old time drinks. Think Slow Gin Fizzes, Rusty Nails and Manhattans\n\nThe service is good though", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "j-aruJbrUGLP4ZwhQfDJHw", "review_id": "CgGO-VEEeUFngo0uf6Z7DQ", "stars": 5, "date": "2012-02-14", "text": "Simply magnificent. Easily the best Mexican food I've had the pleasure of enjoying in the States. I can't stop thinking about the carne asada Torta. The rice and beans are the best I've eaten. Tacos are simple and delicious. The most exciting part about it is that I get to go back and try the famed Bombero Burrito and other, more \"exotic\" things like the lengua and menudo!\n\nYou must go!", "type": "review", "business_id": "rDvz5jX65gpfONFu7er9Tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mqQOjNJ2tSoZtLHb3fzaCw", "review_id": "fL3WXz6lrQEkvJlKs9uOpA", "stars": 4, "date": "2011-07-26", "text": "I've now been here twice, one to eat in and one to carry out.\n\nAll in all, great prices, decent service, and semi-good food.\n\nI've had the pho when I sat down and ate at the restaurant. Not the best I've had, but at the price, really good and fulfilling.\n\nWhen I've carried out: had the bun thit nuon. Great stuff. Mi xao and hu tieu xao were just ok.\n\nI like that the whole place is very big (from a recent expansion, I'm reading). \n\nThe bathrooms are pretty good and the service is not too typical Viet: actually friendly-ish and not too rude/brusque.\n\nI would come back again for sure. The prices are what you would find in California, so that is just too good to pass up.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_wyCFNqRGkS3A0EmGCUNJQ", "review_id": "wya3YYqdvFVG2IuTfPglWg", "stars": 5, "date": "2011-03-08", "text": "One of the best dining experiences we had in Phoenix. And what a surprise, without Yelp we would have never found this wonderful \"hole in the wall\" in a space the width of a bowling alley. I had The Italian which was Pepperoni, salami, ham, mozzarella, basil, tomatoes & marinara wrapped in a delicious pastry shell. Imagine a gourmet hot pocket. Mmmmmmmmmmmm", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 1, "cool": 4}, "user_id": "0H9ne5frm1GjO6TjUwbxlw", "review_id": "dy_BNzGIzkzEgWlpw8izlQ", "stars": 5, "date": "2009-12-06", "text": "Cafe Monarch is more than a restaurant - it's an experience. If I had to put an analogy to this one - I would say that most restaurants are like watching a concert on tv and this place is like being in the front row at a great show. I was immersed in Christopher's beautiful world and entertained the entire time.\n\nAs Camille H mentioned, this place may not be for everyone. There is no menu provided to pick things from. This is not a place for a quick snack, although, I bet if you asked, Christopher would provide it. If you are a picky eater or have food allergies, call ahead of time. But if you go in with the mindset that you are going to be surprised with a meal full of the freshest ingredients, wonderful combinations of flavors and fantastic stories to every dish, you will not be disappointed.\n\nI am not sure I would bring my five year old to this place. She would enjoy it, but I think my husband and I will get most out of our dining experience with a babysitter. Since Christopher is a one man show - chef, server, host, story teller, etc. etc, each course takes awhile, and my child's attention span most likely would not last through the entire meal.\n\nFor a description of the amazing food we ate, please see Camile H's review. She described everything perfectly.\n\nThis is my new favorite place in the valley. I can't wait to go back! Highly highly highly recommend this experience!!!", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-d0M53vRvvZ_ZXL0nWbH5Q", "review_id": "mNYaWcbEq6nqtBRz5BDpGg", "stars": 5, "date": "2011-03-24", "text": "I have been coming to Lai Lai's for many years now and have never had a bad experience! The food is always great, and if you mess it up you have no one to blame except yourself since you decide what all you want in your bowl lol. Sometimes I don't make it in for a year or so but the staff always remembers me and that makes me feel very much at home. Lai Lai's is great!", "type": "review", "business_id": "mn1LFFcQwEpir38_mPYH_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mTx0GhWWV6NOAd_crYJw8w", "review_id": "nBYIuF4ck5q4OkTp8zF4AA", "stars": 4, "date": "2012-03-04", "text": "Everything I have had here has been wonderful. Very fresh. The service is good. The food is wonderful. I have eaten at this one and the one in Glendale. Excellent food in both locations.", "type": "review", "business_id": "GjvIDOEhdQB1oPrFeSpxBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0aQyjVmcytcjkiabuhkIgA", "review_id": "TQkbwXxOAROL4xWbFLjo1Q", "stars": 4, "date": "2011-06-01", "text": "Yes, I am a fan. Particularly of the brunches! They bake their pancakes which makes them ooooh so good. The King's cakes are delicious and are baked with bananas and chocolate in them and served with peanut butter (which I'm personally not a fan of). The portions are very very generous. On a nice day, the patio is great. Comfy seats, evap cooler outside, misting system. Most people don't know about their brunches I assume, since the entire place was empty when we were there at 10am. The dinners are great as well. The pulled pork sandwich and their pizzas are surprisingly good! It definitely has a commercial feel to it, but I believe it's a local business which I'm all for.", "type": "review", "business_id": "QVR7dsvBeg8xFt9B-vd1BA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QJcLiT1zTJMzrsXWi5RgOQ", "review_id": "ptxLIArkY2iJvYzqYkF8JA", "stars": 5, "date": "2012-05-31", "text": "I've only been here once, for breakfast, but I was very impressed and hope to make it back again soon!", "type": "review", "business_id": "GRFunGSUZxXqNCZJrN8Oow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iAXUAPxzKXxWMCiXLjY-ww", "review_id": "Uvq2tsy6FNrSycP-JLR3Kw", "stars": 4, "date": "2011-08-24", "text": "Reddddddd Robin.....Yum.\n\nWhiskey River BBQ burger is really all I get here so i cant speak to any other thing. Its just hard to stray away from that good of a burger.\n\nWhen I was here most recently, I ordered the sweet potato fries instead of the normal fries....they were great...however they dont have a sauce for them and there is also no brown suger or anything on them to take them to the next level...so you end up with good fries that get bland after about 5. :( comeon Red Robin, develop a sauce to go with those fries.\n\nAs always, the staff was very friendly and attentetive. I always seem to get good service here.", "type": "review", "business_id": "-GYx5GAx_-4XEsn7mFwdkA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "N-Hn3--2DO5HzvrNcRGRag", "review_id": "1q19O7RecORsrJD3vDFA_A", "stars": 1, "date": "2012-04-12", "text": "I really enjoy writing reviews praising a place for great food, service, ambiance, and value, or any combination of these. Unfortunately, this isn't one of those reviews. \n\nThis is a fish story... No, not about the big one that got away. Nor is it about the time I was fly fishing with my dad and had to rescue him because he stepped in a deep hole and sank when his waders filled with water.... this is about the trout that saved the day.\n\nWhen my wife and I arrived at the Greene House, it was earlier in the evening, still happy hour, though we were there for dinner not appetizers. Checked-in with the hostess and were quoted a quoted 30-45 minute wait for a table. We knew the place was popular so weren't upset with the wait as we were looking forward to a wonderful dinner.\n\nWent to the bar to order wine and that's when our disappointment started. We were sitting in plain view at the edge of the bar facing the entry and there were TWO bartenders, In spite of this, in the 15 minutes we waited, occasionally waving and saying \"excuse me\" to get the bartenders' attention, we never even got so much as a Hi, and certainly not an opportunity to order a drink.\n\nI had only just told my wife I wasn't willing to wait another 15-30 minutes wine free when the hostess pleasantly surprised us by saying a table was ready. Our relief was short lived however.\n\nAfter being seated, it was approximately 5 minutes before our server came to the table. We ordered wine and water.\n\nOur wine and water came NINE minutes later... a total of over 30 minutes since we entered the restaurant before we received our first beverage.\n\nWe skipped an appetizer, planning ahead for dessert, and for our entree ordered Rainbow Trout with a side of Truffle Parmesan Fries.\n\nApproximately 15 minutes later, our SIDE of Truffle Parmesan Fries showed up... sans trout. \n\nWhen asked about the missing trout, she said it'd be a few more minutes because the kitchen was backed up. When asked why she brought the side of fries, she said she thought we wanted them first, a leap of logic that totally escaped us. \n\nWhen our server said she could take the fries back \"to keep them warm until our trout was ready\", my wife and I looked at each other in amazement and made a spontaneous decision that given we were now STARVING, our original side of fries would serve us better as a hot appetizer than as a reheated side with dinner.\n\nFinally, a few minutes after our Truffle Parmesan Fries were gone, our trout arrived. As I indicated in the begining, it saved the day. The fish was fresh, perfectly prepared and exceptional.\n\nAs good as the trout was however, is wasn't good enough to make us ever return to the Greene House. There is no reason any customer should suffer through such slow and uninspired service when there are at least a dozen restaurants within a 2 mile radius of this one (much less dozens more throughout the Phoeniz metro area), that are SIGNIFICANTLY more enjoyable. \n\nSpend your hard earned money somewhere else", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xq10i6hsaFuIk-DCJGcohA", "review_id": "KtyaE9HrKEk1m7VXfsTSGA", "stars": 4, "date": "2010-03-13", "text": "We went here because it was the only decent place we could find open after the Suns game. Fresh fish sandwich was delicious, as well as the shoestring fries. Great service, nice vibe, I'd go back.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 2, "useful": 4, "cool": 4}, "user_id": "pv82zTlB5Txsu2Pusu__FA", "review_id": "t_H1vE4sYHSz4JY_tppO6g", "stars": 5, "date": "2010-08-13", "text": "This place is so cool\ni was startled to find that Tempe has something like this\nIt reminded me of the C.A.T. in Eugene.\nThere are soo many bike parts, and tools, frames of all kinds\nfrom what i've learned is that you can pay a small sum and build your own bicycle here, or offer to volunteer and have your bike for free by working off the debt\ni came here a while back to see if they had anything of interest, and wouldnt you know it that on my way a nut and bolt fell off of my stirrup so i thought perfect, now i can get another\nthe dude running the operation didnt charge me a thing\nso i left like a $1 in the tip jar\nit's such a priveledge to have something like this for the community, i just hope enough ppl reinvest their time into it so it can exist for generations of cyclists to come.", "type": "review", "business_id": "ntb-U-AwDqzcVJnVNh9sAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pqnYZy25nEwGAAjShOpJGg", "review_id": "pWn9Fof6PFZWIAdxEFNudA", "stars": 1, "date": "2012-04-04", "text": "Long wait for food, waitresses that don't know what they're doing, grumpy hosts, and crappy food that keeps us off the lake for 2 hours is not somewhere I plan on going ever again.", "type": "review", "business_id": "bpPVn4nF8YR40BjhO6YP1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "WRD9CtlO2c_qyO5ZdKbYQA", "stars": 3, "date": "2012-01-03", "text": "My parents love pho so I've practically been enjoying Vietnamese cuisine since the womb. Ha! No wonder I love it so much myself that it was always on the weekly dinner rotation when I lived in OC. Alas, I moved to North Phoenix and I dont have little pho shops or boba cafes on every street corner. I've learned that I have to drive a ways to Chandler/Mesa to satisfy these cravings. Imagine my surprise when the husband and I noticed Tea Lite Cafe when we changed up our movie theater location this past weekend. Of course, we had to try it out and we'd been dying for some pho for months now.\n\nWe both ordered the beef pho and took a seat. The place is small but there's plenty of seating and still feels spacious. The cashier up front was super friendly and welcoming which was nice. We didn't have to wait too long for our food to arrive...another plus. \n\nThe pho itself has really tasty broth and the beef was nice and tender. I was disappointed by the small portion of bean sprouts, mint leaves and limes that accompanied the soup. I'm used to overflowing plates of these veggies so I can load up my soup to my heart's desire. In fact, my hubby usually counts on me doing this since I end up eating all my veggies and leaving most of the beef for him. Double ha! But the lack of sprouts and mint leaves didn't put a damper on the great taste of the pho. What I did miss was the traditional pho ingredients like tripe, rare steak and tendons. I know, I know...sounds intense but trust me it makes pho taste soooo good. I guess I just have a usual when it comes to pho so I was a little disappointed when I couldn't satisfy my craving to the utmost degree. Woe is me. \n\nBut let me conclude by stating again that the pho here is really good and has a great flavor to the broth. I think the hubby and I will go back since it is so conveniently located to us. It'll definitely do in a pinch although I am sure I will occasionally find myself making the trek to get me some tripe!", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "kbJNDcsBE-U_GiOY43hwwQ", "review_id": "naPhRdEx39hEW-IfvpO5wA", "stars": 5, "date": "2010-05-23", "text": "5 ENTHUSIASTIC STARS\n\nThis is a large, well maintained botanical garden, teeming with birdlife and abundant in blooming cacti, succulents & other flowers.\n\nEven though it can be HOT, it is very easy to spend half a day here, as we did, wandering the trails. If you need a break, there is a patio cafe where you can get a cool one.\n\nThis place is a true delight and a great asset for Phoenix.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "0gMAvqyMl5b4oWqq1HokaA", "review_id": "luxaie_HxcMNuIZ13dZXIQ", "stars": 5, "date": "2012-05-25", "text": "5 stars? Definitely!\n\nUpon walking in, everything from the atmosphere, decor and staff was warm and inviting. We each ordered a 3 course meal, and agreed on different selections. The addition of a homemade mozzarella appetizer and an amazing dessert meant we each tasted 8 dishes that night. 8 amazingly unique and delicious dishes. \n\nWe tasted from every section of their menu, including raw (butterfish and albacore), cooked (gnocchi and risotto), and meat (short rib and pork belly). Pretty much everything was \"my favorite,\" and a couple of glasses of Barbara complemented the meal perfectly. \n\nIt was pretty quiet on the night we visited... if I may make a suggestion it would be to GO GO GO to Crudo. Like, now.", "type": "review", "business_id": "Xk3inJcuBGLhavUcdlINZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nDP1Ry-y5x-lZeOwULY88w", "review_id": "mrpHZFnKHAqmVCo_f8VcPw", "stars": 2, "date": "2011-07-04", "text": "We visited Frank & Albert's on a Sunday afternoon for lunch. Hardly anyone was there, as it was about 2:30 PM. We had eaten lunch there a couple of years ago on the patio, and I had a great time then. However, the temp was 114 on this particular afternoon, so the patio wasn't an option. We were the only people in there other than the dude who talked on his phone the ENTIRE time we were there. He even managed to order and eat his entire lunch while yapping. \n\nI ordered fish tacos, as I had the last time we were there. Something has changed. A previous reviewer mentioned this, and he was on the money. I received two constructed tacos . . .soft tortilla shells in the shaper with cabbage etc. only no fish! Two large-ish filets of fish were on the side! It was really messy . . .I had to tear apart the filets with my fork, smash some fish into the full-of-cabbage tortillas, and complete my own taco :( I gave up on the second one and ate the veggie taco and the fish separately. I really didn't like the seasoning on the fish, either. I thought it was too harsh and blackened. Ultimately, the fish tacos were \"meh\" to say the most. I will not order them again. My bf ordered a sandwich and since he must follow a special diet, he cannot eat mayo. He reads ingredients very closely and requests things he can't have be left off. His sandwich came slathered in mayo, even though it wasn't mentioned on the menu as an ingredient. When we looked around for our server, he was nowhere to be found. So, while I munched on messy tacos, bf sat looking sad for the next 5-7 minutes until we finally saw the server and flagged him down.\n\nThat being said, the server was AWESOME about making the new sandwich sans mayo, and we even received an extra order of sweet potato fries with sea salt. They were yummy! And when you see their house \"chipotle ketchup,\" DO try it! I looked for it in the Biltmore gift shop, but they didn't have any for sale. Oh well. \n\nI am not swearing Frank & Albert's off forever, but since I am only in Phoenix a few times a year, it will be a while before I go again.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S5hUJTLbnCxidsR5IRsKzQ", "review_id": "3fVk0RlqxXrhtQ7EL71MVw", "stars": 3, "date": "2012-04-05", "text": "Pretty good deli sandwich but a hassle for parking. Love the selection of things to buy sorta like a little market in NY!", "type": "review", "business_id": "LRuIY8JFqadCSYLo242MGg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mVPISwK-W6gmlbR5oemOsQ", "review_id": "YTzrrPFgcC7DjAr2Qp8U2g", "stars": 5, "date": "2012-05-25", "text": "Really delicious breakfast burritos! They are true Mexican-style! I get the ham and egg breakfast burrito and it comes with cheese and a fresh tortilla. They are inexpensive and really big! I'm so glad I work a mile from this place! I go at least once a week!", "type": "review", "business_id": "6Tt0mGKbMoAz1GsjkVhbMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "iPhoJlwisUKGGrA0QNmYMw", "review_id": "Ip0JXwa-hjoDunykO92Weg", "stars": 5, "date": "2012-10-27", "text": "Had my Snaaz 5k walk for education very beautiful park!!! Clean and would be perfect for walking a dog! There's lots of parking and also there is a desert in downtown Phoenix how nice! Real Arizona feel! I would definitely take my parents or my aunt for a nice walk on a fall morning :)", "type": "review", "business_id": "kcVUCvXL8e18XmBgBsXumg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TzRNJqZOti3QmNIGXjAzQg", "review_id": "jjzfYhmEGW1a12e7G9tWEw", "stars": 4, "date": "2011-07-21", "text": "Valet only parking, unless you want to try parking by the bank. Last two times we weren't able to. Not crazy about their cocktails (pretty weak) but the Bloody Mary was a welcome start to our Sunday brunch. It's not listed on their menu but they have gluten free options. Tried the egg bake, pretty good. The salmon and pork chile verde are delish (love the homemade cornbread). Overall, the atmosphere and food make this a great brunch or lunch time spot!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aQQn3GztQ_gTb0QOEnxyCg", "review_id": "9Z3B3FNCFrczj2Sw-r4e-Q", "stars": 4, "date": "2011-09-17", "text": "Excellent service and great tasting food. What more could you ask for? A bit pricey, but that is to be expected with the level of quality.\n\nThe wait staff will cater to your every need and will make sure your lunch or dinner is to your liking. \n\nI came here for lunch on a business lunch and it was everything I expected. I had the chicken caesar salad and it was great. \n\nIf you are looking for a place to meet up after work or to have a power lunch, I definitely recommend this place.", "type": "review", "business_id": "Ta-fY1c_E8qHBBDQGyxPkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hN-QujhRMXjgp7wmyQsw-A", "review_id": "MVs9wyF_ynm1z_0mL2oPtg", "stars": 4, "date": "2012-11-13", "text": "I've only been to the MIC 4 times but so far so good. At this time I have taken only the spin classes and I must say the room is amazing. The lights are awesome, the mirrored doors that open to the outdoors are very cool. Last week Todd opened the doors and we did spinning in the rain. It was so much fun. I also have to agree with the reviewer, Emily, that Todd's class is fantastic. It is filled with energy, great music, and is a very challenging ride. The one complaint I have is that the class is only 45 minutes, I would prefer it be an hour especially given the cost. I cannot comment on the yoga as I have not tried it but the yoga room also looks amazing. The cafe is a nice addition and the menu items that I have tried have all been great. I will definitely continue to do Todd's class when I can and hope to try out a couple of other instructors in the future.", "type": "review", "business_id": "Dy8d1vPTTutHUaqfI5-8Lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tozhcHsAWG2Zc-5Q7ubatQ", "review_id": "fe_4di_mXeamb6D0YLaWiA", "stars": 1, "date": "2011-06-04", "text": "I have received two pedicures and a manicure from this location. I usually prefer a more spa like experience but the cost is low and I was attempting to save a few dollars. Cutting cost may not be a good thing to do when it comes to body care. I won't be returning because I am concerned about health violations.\n\nPros:\nQuick service\nCheaper than the spa, salon\n\nCons:\nImproper cleaning of foot baths. I thought they were good until I saw them seat a women at a used station. They only took the sprayer and rinsed the dirty bowl. (I did let her know)\n\nThe foot massage was more like a foot beating. About an hour later my ankles felt like I had rolled them. It took almost two weeks for them to feel normal again.\n\nThe sent in the shop is of fake nails. If everyone has on a mask, I would like one to.", "type": "review", "business_id": "QGeliKMObpVZ3jP89--ZIg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "tTQwXGXwGrcEnrJ4gziGAg", "review_id": "EOLhi7r5TXelmdSHUL8z2w", "stars": 5, "date": "2012-04-05", "text": "Very yummy, my favorite roll is the Las vegas, and here they make a good one and it's 1/2 off during happy hour. I keep meaning to come for the all you can eat sushi! Try the Ice Cream sushi roll, this is one of the only places I know that does it and it is delicious!", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "4GJWpmNh6RIe0AW4wj8PEg", "review_id": "epmHGGJQ_GmdrM1hY6_rJA", "stars": 3, "date": "2008-03-10", "text": "what better way to end a perfect Spring training baseball day than with a marg, Mexican food and your girlfriends...\nthe local in the group said this place would be crowded on a Sat night, so we weren't surprised with the wait time, but if a place is used to being crowded....they should have a better wait plan. if the bar is full (which it was for a bit), there is not much space to hang and wait, once we got to our table, our waitress spaced....got us water and then never came back. i liked the menu, as it spiced up some of the normal Mexican fare...like the shrimp chilaquiles with chipotle cream sauce that was great! the guac is good, but deceiving as it comes out in this huge mound served in a pestle...in actuality, there is a lot of lettuce on bottom then cup of guac. and my house margarita was more tangy mixer than tequila, kinda ick.\n\ni think this place has potential and i might try it again if i could do it on a weeknight, but for now it just gets my average.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OdsfcVr3jejVR2y_3rcVtQ", "review_id": "1_v8k6f_YNvulIdN6y3g4g", "stars": 5, "date": "2011-05-17", "text": "I've been planning a visit to the Public Market for some time now, and was downtown today so I finally stopped in for lunch. I had the \"Friggin Chicken\", which was friggin delicious. The market fare is counter service, but when I was ordering the cashier was very friendly and courteous and brought my food to me out on the patio.\n\nThis was a very pleasant first experience, sitting on the patio reading a book, sipping my canned mint green tea, and eating my sandwich with a side of couscous. The atmosphere was very relaxed and there were others nearby sharing a bottle of wine, or just finishing up their lunch with good conversation. Speaking of the wine, there was an impressive wine and craft beer selection. I'll be going back to sample the beverages very soon.\n\nOn my way out, I stopped at the coffee bar for a latte, which was much more bold and flavorful than your \"Fast Food Coffee\" variety; a great way to finish off my lunch. If you're looking for a quick, inexpensive, fresh and local dining experience, check this place out.", "type": "review", "business_id": "Ax11wyp-FudujeU9nejQbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "yj_yJ_x0qvFhotz891qh_Q", "stars": 2, "date": "2010-02-12", "text": "If you have $6 burning a hole in your pocket, and would like a thimble full of ice cream, this is your place. They have a terrific selection of flavors, and you can sample as many as you want before choosing, not to mention they are part of a coffee shop too. Unfortunately, they charge you a thousand dollars for a scoop of it. I'd rather go to Mary Coyle and get a Banana Split for that price, or just save my money because the idea of paying $6 for a scoop of ice cream is absolutely a fool parting with his money.\n\nTwo stars because it actually was tasty.", "type": "review", "business_id": "seu8O6yPQ5Yz8kQv-KFnKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "J72XoQspNBmPsX2iKl2YvA", "review_id": "ch39MbgXMH8IpZTEozBe2Q", "stars": 4, "date": "2009-02-25", "text": "Still not much hair to cut but Helen does a good job and has developed a following of both men and women. Don't spread the word or I will have to wait longer.", "type": "review", "business_id": "v0ozmsV131z3de5p_-w3iQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "5hIcclyqd9yelg2BlsiXBg", "review_id": "44i4UuynNOgQxLwbbxoj2A", "stars": 1, "date": "2011-09-01", "text": "Ugh. I don't like giving a tough review, but this is a store that needs to address a couple things.\n\n1. The Service: Long lines and unpleasant cashiers. \n2. Outdated Store: This wouldn't be so obvious if they just did a little cleanup and merchandising.\n3. Produce: Maybe in this store they should just no offer produce. The little corner in the store makes you think it was an afterthought. \n\nI think just a couple things that wouldn't cost much money would go a long way in making this store a go to place for me. Not there right now.", "type": "review", "business_id": "0jDkXQdprSgbx8GeK0dcTg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "aIbwrnrP4kTufADO-jGZxA", "review_id": "saQ7um_U11tXGRYODzdMyw", "stars": 3, "date": "2012-08-12", "text": "First off, it's fast Chinese, and they lived up to their promise on that one, we did get our dinners fast. I am a huge fried rice fan; and I have to say theirs was horrible, stick to plain white or brown rice. However, I had the beef with broccoli and that was ok. It's not like Beef with broccoli is exploding with flavor anyways, so I can confidently say they didn't mess it up. What I do like about this place (besides how quick our food came out) is that you can do the meal deal , typically only offered at lunch, for dinner which gets you the egg roll and crab puff at dinner. I love crab puffs, again theirs was just ok and I didn't care for the egg roll all that much. Overall it was fast, filled me up with a huge portion that I took home lots of left overs; they were open kind of late - until 10, and it wasn't the worse thing I ever ate. Also, they had very friendly service.", "type": "review", "business_id": "KRqtYdnDpwqYfWkFhZYjow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sMIOqXFpm6XuBlaokNdpAA", "review_id": "uVGEIIXxZVNTNxwwn9-wGw", "stars": 3, "date": "2010-03-17", "text": "As a fairly new connoisseur of Greek food, this place is pretty good. I like their pita a lot, and the fire feta is quite addicting. The salad and rice aren't anything to write home about, and I'm not crazy about the tzaziki sauce here (love it other places)... the street gyros were decent, and the tea that they serve here is delicious when mixed with pink lemonade. I wouldn't go out of my way to come here, but I'll be back when I'm in the 'hood.", "type": "review", "business_id": "t4pkeGscooStLjy-Js5Byw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oBwb6ViGFerK2ATjGEOywA", "review_id": "XBViOsfJmEryDr7h3waZEw", "stars": 3, "date": "2012-01-06", "text": "Food is just 'eh... Just one more sushi place of many", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zyd78OiKPAqaMSC6OWLb6w", "review_id": "dtImfcUchWUjJ1CcUAwTFA", "stars": 4, "date": "2011-03-05", "text": "i liked this place. small inside\nlocated inside old town glendale so it looks sorta cute\nfood was gooood! got the sampler combo cause i didnt know what to get and the cheese and potatoes pierogi were yummm!!\n\nrecommended!", "type": "review", "business_id": "1cTI09YZ3uRPXt3YkznuPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ef7eJrSr7chDjDth0-k2HQ", "review_id": "CCIF8rs3w9GDRlV7FGaDtA", "stars": 4, "date": "2010-07-05", "text": "I like it here. The pizza is pretty good, the wings are awesome! Lots of good deals to be had here and the service has always been speedy and courteous. Very easy to feed a large group for not a lot of cash. I agree with the below comment.. very clean place, even the ladies room is nice and clean (hard to come by) which is very much appreciated.", "type": "review", "business_id": "tyH0l9SPwV2N8ExwILQ2NQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "jxBExkM5SUSPTdPmHG-wzQ", "review_id": "b3in2Y4DkeKdyzFGtTVaVg", "stars": 5, "date": "2009-03-22", "text": "We had read about this place on Yelp and a local had highly recommended it as well. It is located in an office building and not easy to find unless you know in advance that it is in the back of a big office building with a big parking lot. I will preface this by saying that we had just eaten the night before at a highly regarded Scottsdale restaurant in which the service was awful. Therefore, this place won a lot of points with the 4 of us immediately because the service was outstanding from start to finish. The restaurant itself is huge and it is beautifully decorated and immaculate. You walk in and they have a huge open fire spit BBQ chickens and Beef. For starters we had a Caesar Salad--a shrimp cocktail--a bit pricey and just okay, and a good house salad. I ordered their simply grilled fish of the day which was Swordfish with Guacomole on top and a corn butter on the side served with rice. It was a good portion and it was delicious. My wife had Salmon on a plank which was also very good. One of our friends had Short Ribs with Dr. Pepper BBQ sauce and grits. The portion was huge and he raved about the dish. Our other friend had the Duck Breast and it was very good. We had a nice wine recommended by our waitress that was reasonably priced and very good. The whole experience was excellent and we will go again when we come back to Scottsdale.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JPJDHHyWkOdqvH04LVXWDg", "review_id": "NP6DYMuE28YM9Qgq85lxgA", "stars": 5, "date": "2011-01-07", "text": "Love this gym. Not many know it's here..lunch time is the best to get in. I've been a member since Feb of 2009. \n\nWhile the trainers are nice, it's a revolving door. You are better off at this gym if you know what you're doing vs. needing 1-to-1 attention. Since LA Fitness just purchased PURE, this will only increase I imagine. Pretty disappointed that they no longer do monthly 're-programs'... But the gym itself is worth the monthly fee. \n\nIf you're looking for a place to be left alone to workout - this is it.", "type": "review", "business_id": "-SxeUGqnKy8YiEV5YA42Jw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "HWi8ntFMy81BVjAsgAwbrQ", "review_id": "EUWsGxLk7Lob6aCfdmmITQ", "stars": 4, "date": "2010-12-30", "text": "At the ripe old age of 3, it's time for my previous review to take a siesta. Over the course of that three years, Tempe Camera's only gotten better. The selection's improved (finally finding a happy medium between film and digital), the prices are even better than they were, and I dare say service on the retail side's kickass too.\n\nTCR is now my go-to photo supplier as a working pro. They've either got what I need or can quickly get it, they still know their stuff, and they support both local photographic education and the local photo industry. They're also the only dealer in the Valley that sells Think Thank Photo products, which are best damn professional camera bags ever.\n\nAnd if you're an amateur, they've got plenty of friendly, knowledgeable staff for you too. Don't be afraid to ask for someone else; like almost anywhere, they employ people of varying personalities. There are sales staff I don't click with at TCR, but I wouldn't classify anyone as distinctly rude. (If you want that, you'll have to try B&H or Adorama.) If you need lots of hand-holding, the ASU crush probably means you'll either want to shop at off hours or go to Photomark--TCR tries, but the crowd to counter ratio just isn't favorable at peak times.\n\nRepairs are still something they do very well at excellent prices. When I've had equipment serviced, it's been turned around quickly, relatively inexpensively, and works like brand new. Evaluation of your equipment is still free, as it should ideally be at every repair shop (but often isn't).\n\nThe lab's added a bunch of cool new services, including damn fine plexi mounting, and is doing a considerably better job with film than their old reputation for free scratches with purchase would suggest. Hundreds of frames processed with nary a scratch to be found.\n\nRentals I'm a little more ambivalent about. They've thinned the herd out considerably (about half the rentals inventory has taken up residence in the used equipment case) and the selection of lighting equipment is basically unchanged, but they've got the latest Canon and Nikon bodies, and everything's well-maintained and in good shape. Rates are good for what they do have--the question's just if they have what you want.", "type": "review", "business_id": "1qrrdRh4cgMW-dm5kVNmdA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "4xw2k2iAEGumGPYlvGlp5Q", "review_id": "9OB2NbDNZVaPpSpMYM8mfw", "stars": 4, "date": "2010-11-11", "text": "OK, not knowing what to expect when walking up to the RC when I saw a courtyard full of people mulling around, I thought a relaxed, quiet meal was shot to hell! Lucky for us, all the peeps walking around (seeming \"Zombie-like\") were waiting on Pizzeria Bianco, the Pizza place across the way! OK Back to the review of RC.. I have to agree with Francis L.. Good sliders, fish was below average BUT the Wedge Fries are awesome!! The fish itself was OK, but the breading was watery as if steamed from the inside! I was totally bummed because It had a good flavor.. but was inedible! The 'Tartar' sauce was another huge hit! not a creamy sauce but liquidy with tons of Cucumber chunks... The Onion Rings are worth a try.. and they have a nice Horseradish- ranch sauce.\nWe sat inside, nice decor... you gotta like the English Pub look which is fine by me! We'll be back for sure!!\nNutshell- Nice Bar menu, good bar food- GREAT drinks!! Great people watching spots from front porch area... Defiantly worth repeat visits!", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0rbL9XAJKe9sAvbTBqSQ4w", "review_id": "z2QOwXqWRk52uC4fiCofKA", "stars": 3, "date": "2012-01-31", "text": "Food was good. Service was not good. Only one waitress for entire restaurant.", "type": "review", "business_id": "shlAd7PLzWlQrkQ0uYcBBg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "S4y3RDjjVzmi_7mqQZ4Dnw", "review_id": "6MaP8rkKJqslEDg0VtvjKQ", "stars": 3, "date": "2012-12-14", "text": "This is a pretty chill spot for drinks & bar food. We went on a Sunday night after a big meeting that was held at the Phoenix Convention Center. They were able to accommodate a group of about 20 of us without any issues (not a whole lot of people there). \n\nTheir quesadillas and curly fries are quite good and I could not help reaching for the nachos again and again, but definitely avoid their Caesar salad (I know, who orders salad at a bar anyway?!)", "type": "review", "business_id": "2I666dqzs1XB6xigIKa9bA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "JS-lBKQ5bhNcthyUP4x2LQ", "stars": 5, "date": "2012-10-05", "text": "Our go to pizza place! Don't see how they could improve in any area. Customer service is excellent, immaculately clean and the food is PERFECTION!", "type": "review", "business_id": "6md4A90THda31wTg1bB3hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t2YBANsJYySOXvHyOjcZkQ", "review_id": "T9D4KgxG9paE-ad4FMXUWQ", "stars": 5, "date": "2011-11-26", "text": "Hands down the best cupcakes in the Phoenix market. Tammie Coe comes in second with the coconut but sometimes it's not as fresh as it could be at LGO. Milk chocolate is great, taste a sprinkle - it's really chocolate not wax. I had salted caramel it was wonderful. Dark chocolate is decadent. I did try the red velvet and it was good but I'm done trying to understand red velvet. I just don't get it.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vwP5p2RPyl9EazgK9u2w9w", "review_id": "JSjBiD0ZRxk21FGi3SP7OA", "stars": 4, "date": "2010-09-09", "text": "I normally go for reverse happy hour on Sundays! I have only had good experiences at RA! I dont really do sushi but I do drinks specials, My friedns normally get the sushi and they love it, the prices are really cheap during happy hour time! I normally eat the spicy seaseme chicken wings, shrimp tempura, pork gyoza, and I have tried the california roll and vegas rolls. Great place to hang out on Sunday night, it can be your pre party or a chill spot!", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aJfAJPoynVj-CBLGaXE22A", "review_id": "qLb2SVPI5ZA6WDGP52QeWw", "stars": 4, "date": "2010-05-02", "text": "Once again, the pizza was delish. They were super busy last time I went, and my gf and I had to wait a while to see a server, but they apologized for the wait, gave us two free sodas and were understanding that we needed our food to go ( Kick-Ass started in like 30 minutes!). Very cool.", "type": "review", "business_id": "jgbEZzERVI4yvAAtXWW93A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "WCTef_98bneZmqdwUvIf8A", "review_id": "Z_F34tqGjacS7OsnvK5v8w", "stars": 5, "date": "2012-06-21", "text": "I had a great experience with this company today. They sent out their tech Steve to fix my Samsung tv. He arrived on time and was able to quickly diagnose and fix the problem. He also provided some helpful tips to improve the performance of the tv in other areas unrelated to the issue.\n\nThe service was professional, prompt, and efficient. I would definitely use them again in the future.", "type": "review", "business_id": "9oJ3tIJfOd-34XoN-JLziA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Q-sOpdR6P2G7oedWzJSa0w", "review_id": "nlDDWyGzvLjIWtwvUsUOJg", "stars": 3, "date": "2011-10-22", "text": "Its been a few weeks since I've eaten here..but its only now that I have time to write this long, overdue review.\n\nHm...its upscale...kind of comparable to Mikuni's in Sac...but their menu is to some extent, smaller and less tasty. I don't recall exactly what i ordered but...I wouldn't recommend this place to friends. It was okay, nothing that stood out...and trust me, food, when its good...it sticks with me. :) \n\n Without further a due, edible but i would never crave for it again.", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qgc_li9aTDxw5nsuWwqi4Q", "review_id": "L6HivXFLh4eBuQ0bxACcAQ", "stars": 5, "date": "2012-08-22", "text": "I can not believe that pizza could be this good. I had good pizza on a recent trip to NY, and this really is the closest that I can find to the pizza out there.\n\nThey say that its the water, but I am skeptical of that. I guess it doesn't matter what they did to make the pizza, it was really, really good.", "type": "review", "business_id": "rhf8H7KZsMHRAprI5-D3sQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "dY1DjSfdl_2EOhBH0Jc-FQ", "review_id": "uvgWeoD9wVFFPrs3i4ogmg", "stars": 3, "date": "2008-08-07", "text": "I know this is going to be super girly but I love the peach beer at Four Peaks and the beer battered fries are amazing.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 3}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "vvA-ky_thU0pBqjzBsdymA", "stars": 5, "date": "2007-10-24", "text": "This is the most progressive, inclusive, welcoming, diverse, intellectually stimulating, public-service oriented church in the Valley, if not the West Coast. We've been to more than a few and can attest to that. \n\nPastor Jeff not only knows everyone's name but is genuinely concerned about everything that goes on in your life. The congregation is like one big family. Love for your neighbors is not just a commandment at this church - it's acted upon. \n\nIf you're sick of churches that tell you what to believe in and don't act what they preach, you'd better check this one out. Services every Sunday at 9:30am.", "type": "review", "business_id": "tRjvuIFBdIIxmQvffjLdIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w9NP9PLFFP-PYVbtGJX_aw", "review_id": "bu1GD2_3FikHkzV4WhQ5Bw", "stars": 5, "date": "2011-10-08", "text": "Dr. Ellis is compasionate, caring, and really demonstrates his passion for what he does. The entire staff made us feel comfortable from the moment we walked in to the time we left the office. They went the extra step to make sure my 5 year old was having fun at the dentist! I would recommend this office to anyone who has children. Dr. Ellis and his team are the best!", "type": "review", "business_id": "6-Fi2Mow6VY7DDhYq7Vhcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8R_D8gXoLU2AjEs0dOxXow", "review_id": "GHQHZZyqIFl2siyxZXgaxQ", "stars": 5, "date": "2011-11-20", "text": "So happy to have another option in our great restaurant rich neighborhood. The space is much larger than it appears from the street, and is broken up really well into comfortable areas. The open kitchen really does have an Italian country feel, and the lighting gives the very large open room a warm feel. Nice large bar as well. Best of all is the number of walls that open up to the outside-perfect for this time of year. Our server had the perfect combination of personality and humor-not too much, just right. The menu has a great selection, no matter your appetite. The Burratta was nice and creamy, with a nice compliment of apple slices and Rocket. The potatoes with parmesan, rosemary and perfect lemony aioli were off the chain. I wanted an order to take home! Pizza crust is very tasty and perfect texture. Hanger steak was perfectly cooked and seasoned. The brunch menu looks super yummy-we definitely have a new hangout on the hood. Great job, Sam Fox!", "type": "review", "business_id": "CSoURupWEyuyzkjMOExKPg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "ND95DgvN7ba8MabfXE3lsw", "review_id": "ZyQUKm5pvlrP-5F4qv95zA", "stars": 3, "date": "2011-02-07", "text": "I remember a time when Ikea was an almost legendary place where the angels would sing a greeting to me as I passed through the hallowed doors. \n\nThat was a long time ago. \n\nWhen I was younger (and significantly poorer) Ikea was the one true way I could get semi-stylish home furnishings at a reasonable price. Many a room was filled with fine pre-fab furniture that was always just a wee bit small. \n\nIt's funny how ones' tastes change. This weekend I ventured forth to Ikea in search of baby stuff. A good friend of mine is with child and wanted to check out what Ikea had to offer. \n\nWalking through the store I saw the same stuff I saw ten years ago, and while I could still see the appeal, I realized that it just wasn't as cool as I remembered. Ah well, at least I still have the memories (and the coffee table, end tables, TV stand and lamps). \n\nIkea is still great if you have something specifically in mind. My friend found a bunch of excellent decorations for the soon-to-be-born babies room, all for insanely low prices. I bought a few pillows. Yes, this is what my life has become. \n\nIkea didn't change, I did.", "type": "review", "business_id": "WUZxVr_CaRqEQgzvyeK5tw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "B-yfbXuQta2lDJC2o7pb6g", "review_id": "tdKeVkRQmnUVe9RmohEXOQ", "stars": 4, "date": "2009-08-03", "text": "I was taken here while visiting from Chicago and had one of the best margaritas of my life. I tried the house (on ice with salt) and it was fantastic, but what I couldn't get enough of was the strawberry-lime one. I couldn't taste a drop of alcohol...and that's when you know you have a good mixed drink on your hands. I honestly could have had three more it was so tasty, but my childlike tolerance for boozin did not allow it. \n\nThe bartender was super nice and friendly, we had many refills of the chips and salsa (damn you, I can never resist), and it was all in a southwestern chill environment. Supposedly the tacos are top-notch, I will have to give them a whirl next time I'm in town. \n\nI highly suggest going here for a happy hour or dinner.", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ukA4tAsH05itDYqhl7qBMw", "review_id": "RIBeyd8ZSk-shae7wP4dMQ", "stars": 4, "date": "2010-11-12", "text": "The chicken shawarma is stellar. I get it to go at least once a month, substituting veggies for the rice. Slightly pricey, but you get a lot of food and it's very consistent.", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 7, "useful": 8, "cool": 9}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "g2yZeiyZEByyeWKESEOklw", "stars": 5, "date": "2009-04-04", "text": "Thanks to Chris L's first review, OTFM has been on my list of places to go for quite some time. Unfortunately, I just can't seem to get my act together on Saturday mornings. Today was the day. I was ready by 9 (am, not pm)!\n\nAfter a quick stop at the ATM, we were there, Yelp canvas bags in hand, and not disappointed. I had to get that chocolate cherry bread from Phoenician Bakery. I sampled an itsy, bitsy little piece and it was still like heaven exploded in my mouth. We also purchased zucchini bread, honey (which I've already mixed with some mascarpone cheese and slathered on strawberries), grapefruit marmalade (yum), dates, and fresh flowers.\n\nThe breakfast burritos from Gil's Taste of Taos were some damn good burritos. Saving for next time...fresh produce (the lines were already long for McClendon's and I'm not one to wait for veggies) and everything else I wanted (like tamales).\n\nWe saw our own Gabi K's other half wandering down the street too...he looked so lost without her:( Hope he brought her some flowers.", "type": "review", "business_id": "Sb1_G-DMy26YHafNxxhVrQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "gIhEoQQLLUHbKbn2_TS1hg", "review_id": "C_HYu079qvxL7uQvu4d2Rg", "stars": 2, "date": "2012-01-02", "text": "I went here to try a new salon and they were very rude when i first walked in like, I was wasting there time, I just wanted to know about there tanning prices and they kept trying to up sell me on there other products even though i kept telling them no thank you, finally when i got a tanning bed they asked how long i wanted to go for, i said the full time and the lady tells me i should do less time because I'm a red head, I told her that i have been tanning for years now that I'm fine with the full time, she still gave me a hard time saying i should do less, finally i was like whatever and did less time. The only reason I give them two stars is because there beds are really nice and i got good color from them, but it was not worth the hassle for me to want to go back.", "type": "review", "business_id": "mVha7w96h_eSun6EAomuhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BiDA7uVJ5igMCsp4ZfpCpQ", "review_id": "_ya44j3weaEcU8z21jeRNw", "stars": 4, "date": "2010-08-14", "text": "The bad: the bar closes at 10pm. It seems like the western, country, wagon-wheel themed bar that you'd like to close down one night while playing some good tunes on the juke box and eating peanuts. And also the french fries, file those under bad.\n\nThe good: the hamburgers are pretty much delicious. Definitely go for guacamole, and add whatever you want from the topping wagon.\n\nI didn't try one myself, but I hear the cookies are good.", "type": "review", "business_id": "N_6bV3c3JagKW7sD3X9ldA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "j_Ntp28guy_zin28c9HrgA", "review_id": "xboddfytcjh8u26wFJRX8w", "stars": 4, "date": "2011-02-19", "text": "My croissant with ham, eggs & swiss this morning was fabulous & came with a bonus brownie (saved for later & was very yummy too!) & orange juice\nPlease try the iced tea!! The way the owner makes it is amazing & like nothing I've tried! He mixes a kind of apple cider that they make on-site with fresh mint.\nEverything is made from scratch! I love this and do not mind to wait a couple of minutes for beautifully personally made for me food!\nEven hummus is made from scratch from dried chickpeas.\nI was very pleased & my belly was full!", "type": "review", "business_id": "5iNDEyLJswlErDGD4OT6NA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "66ArGxlLyMgpajdY46ZsjQ", "review_id": "JSzn_pzw_WUl5qPlWjTWOQ", "stars": 1, "date": "2010-02-28", "text": "Ugh!! \n\nA 25 min wait greeted us before anyone recognized our presence. We were offered complientary champaigne in consideration. Who drinks champainge??\n\nWe were allowed to order wine prior to hearing of the chef's feast, which offers a wine pairing. That's dumb.\n\nWe ordered a meat/cheese plate. It contained head cheese. Hmmmm. Overpriced and oversalted.\n\n30 min later our salads came. The salads were ok and unfortunately the highlight of the meal.\n\n35 min later our main course came. Overcooked, uneventful, lame.\n\nI can't drink alcohol and ordered water. Twice I was left w/ no water for extended periods. Both times I was foced to ask for water.\n\nThere were no hand towels in the unisex bathroom. It's no fun to dry your hands using toilet paper.\n\nThe \"best\" part was saved for last. Quiessence automatically adds an 18% gratuity, which is OK assuming the service is at least adequate. It wasn't. Further, as our waiter dropped the bill, he explained the 18% \"goes to the house\" and anything additional we might addd, though not required, is most appreciated. Egad....why does the house need a service charge w/ the magnificent margins they charge for their normal food service? And why do they put their staff in the position of shaking down their patrons for tips?\n\nAlthough it's a very nice, calming setting, I found myself wanting to leave after the first appy. Food, service and ancillary were simply terrible. Stay away. You'll spend your $175 for 2 much better most anywhere else.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "mUQbkb7rHgJjib6ajULYNQ", "review_id": "6GuYwvqvE0mUY72DJ-nOew", "stars": 5, "date": "2012-07-24", "text": "Amazing thrift store! The owner was extremely kind and polite to me so I'm not too sure why one reviewer was saying he was rude. They had baskets of clothes out front that were free for homeless or needy people which I thought was great considering places like goodwill often overcharge for clothing that should be donated to those in need. Great find on a Robert cavalli jacket and J.crew pants that were literally like new. Prices were completely reasonable for quality second hand clothing. For sure will go back!!!", "type": "review", "business_id": "dFi7mkN0PBoFYt1untE3OA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "6vEntAZ8ZkH358EufNXbpQ", "review_id": "UZgLqbIdSKXQchqC6gFLwg", "stars": 4, "date": "2013-01-02", "text": "Great lean pastrami and cole slaw. Marble rye and challah were a little bland and dry. I always appreciate diet Dr. Brown's cream soda. Overall good lunch spot and handy location.", "type": "review", "business_id": "TpQMR-JFE5V0UPzTjjuwFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cCwj4RJSKU4-o9ZZ1VTtmA", "review_id": "WcY4lvCSlUj2rNZk9DUV9Q", "stars": 4, "date": "2012-07-27", "text": "Probably not the best pizza I've ever had, but definitely in the top 5! Had the groupon deal of 50% off, so that made it even a better experience. Not exactly the atmosphere for a \"date night\", but the quality of bread/sauce/toppings is fantastic. If you like specialty beer and pizza, there is no reason not to try this place. Will be returning for sure!", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "e68960uU4lT83NvnbG-6wg", "stars": 2, "date": "2011-06-24", "text": "So it's so freakin' hot in AZ I didn't mind that yet another frozen yogurt place was opening up in town. Stopped by on opening day to check it out. The place seems really small compared to Yogurtland and Zoyo, the yogurt is the same but they had these neat gummi butterflies as toppings that I loved. They were supposed to give yelpers a free gift but when I asked about one they said come back in a few hours because they weren't giving them away right then. Yeah right, this place is not worth going out of the way for.", "type": "review", "business_id": "apEc_VODyZJ9G3cvS_k2gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2CdbmUXg7kkmbJ1XSDrY-A", "review_id": "a5ypPR11-FNSLCtviImP_w", "stars": 2, "date": "2011-07-20", "text": "I went to Wildflower looking for a lunch spot that had wifi. I arrived at 11:30, and noticed every table in the small place was full. It was my first time there, it seemed a lot like Paradise Bakery (which is a good thing), so I ordered, hoping a table would open up. Price was about the same as Paradise. By the time my food got there, no tables opened, so I got the food to go. I got home, opened the food, and much to my dismay, it was quite a bit worse than Paradise. Also, no delicious cookie. Next time I'll just drive up the street a couple miles.", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7aVtVu6ANtsCEfXfYoSkTg", "review_id": "ijq0aSf6B9WYdt3_k8yY0w", "stars": 4, "date": "2010-12-04", "text": "I have been to Lux a few times now and it has completely won me over with its delicious coffee and mouth watering chocolate croissants . There always seems to be a line but it moves fast. Among the numerous coffee shops in the area, Lux definitely stands out.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "eBwBjylS66qPcHs2_ajLag", "review_id": "ATWL1tDkeM7wr729jy3Nzg", "stars": 5, "date": "2009-11-21", "text": "Scale of 1-10 (multiple visits):\n10 Food\n9 Service\n10 Atmosphere\n8 Value", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Di_8AmiLBwNRrE68bsaLMw", "review_id": "C5E6Gl5FStUO2zB5R7aDkg", "stars": 4, "date": "2012-06-07", "text": "The food was amazing and beautifully presented. The atmosphere was clean, quiet, serene.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "nMwgC0DuMsBR0V5v4-J8wg", "review_id": "il1MI97l21se7d10zQKMtg", "stars": 5, "date": "2009-03-07", "text": "As a former Bay Area resident, I have come to love and appreicate all asian food. Generally, I prefer Japanese and Thai over Chinese, however, when it comes to Iron Chef it's my favorite. The location is perfect as it's only a quick two or three minute drive from my house. Their food is absolutely delcious and is on par with a high end chinese restaurant. The quality of the meat, fish and vegetables is just excellent and it's always very consistent. I generally order the garlic chicken as I love spicy food! It's a wonderful mix of vegetables and white meat and the sauce is perfect, full of flavor and not at all greasy. I also like the fact that they offer brown rice as an option and their eggrolls are some of the best I've tasted. \n\nThe family meal for $29.95 is an excellent value and is enough food for four or five people. We ordered it for the two of us and had leftovers for a week! It includes sweet/sour pork, broccoli beef, orange chicken, chow mein, fried rice, steamed rice, soup and eggrolls. \n\nI sure hope that Iron Chef survives the recession. I try to eat there as often as I can :)", "type": "review", "business_id": "LR9mX-3mh_PIEeG1A5zqxg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "HOleI3jz1MLNUJ6cc1x0Pw", "review_id": "ogE7PV8dyHCDGDTKCc1y9A", "stars": 4, "date": "2008-07-17", "text": "This is a really good Starbucks location. Unlike a lot of the newer locations that have retro plastic chairs that look much more stylish than functional, it has lots of comfy upholstered chairs, plenty of plugs for web surfers, and a decently-sized outdoor seating area. The staff is really friendly and efficient as well. There is also a drive-through.", "type": "review", "business_id": "ieheWXxYPTM2stGLV7fEPw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qeVLQCePbacAwFL9mBaRbQ", "review_id": "PnOl5GHOOtIzyNHIVFrXoQ", "stars": 4, "date": "2012-01-11", "text": "The food is good quality. The atmosphere is nice. The owner and his wife work hard to make you feel welcome.\n\nSkip the chorizo gravy, everything else is a solid B.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8LAf67lQTjtsS98E55MYrg", "review_id": "RNMbS8twynIYGQpB79c8bw", "stars": 2, "date": "2011-08-24", "text": "First off nothing gourmet going on here at all. Its basically Subway with free delivery and they have to deliver it for free or there is no way in hell you would bother with the place. It's cheap, generic, flavorless food.", "type": "review", "business_id": "zmjWXerSZlB0eRLxrKevYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "11WMiRoB2sQxo61aJdSg6Q", "review_id": "1KPmbK4uSTLgVYyYCsrP2Q", "stars": 3, "date": "2012-04-28", "text": "Live entertainment, friendly, restroom clean, my dish was good, but my hubbies dish the meat was not seasoned at all and for a fajita they gave him a burrito flour size tortilla and took about 15 mins to bring a second one. Plus hrs are posted wrong on yelp. States open from 6 am to 2 pm even though they serve breakfast, lunch and dinner.", "type": "review", "business_id": "i41M_To0DAxuzZIGvU1wyg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kIddeMFsvL-iiBnjZXObKA", "review_id": "BhEIEMTULqqE8MQZIiH97A", "stars": 5, "date": "2012-11-17", "text": "The bar and wait staff couldn't be better at this location of PF Chang's. The food and service is better than any other 'Chang's' country-wide. We just moved here from NY and missed our \"local hangout\". The bar tenders and wait staff have made us feel at home. We go at least once per week for wonder food, drink, and company with the staff and other patrons. Thank you Clint, Gerry, Nate, Kyle, Nick, Angie, et al.", "type": "review", "business_id": "lut0g04VsYRyblR1Ad-8HA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7urpEPQ3oQFZNoykUUmZIQ", "review_id": "QZbyiEH6WQ6NhMyuhNuH6g", "stars": 5, "date": "2011-11-26", "text": "This is a family owned local restaurant at it's best. If you like to explore and support locally owned businesses, you should definitely give this one a try. They have a big menu and I have tried breakfast and lunch and both were excellent, but the breakfast is particularly good. I love the breakfast burrito. (to the reviewer that complained about the greasy chorizo...hello, it is chorizo, chorizo is sausage). I would go out of my way to stop and eat here whenever in the general area.", "type": "review", "business_id": "T9BPnYNKtk6B42W0cJJXnA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "W2vzaJP1ItC18xzA59WLwg", "review_id": "Pci-l3zCK0FVCnJaKliMyg", "stars": 5, "date": "2012-07-12", "text": "Thanks for helping me to find Valley Eyecare Center, fellow Yelpers! I visited their office as a new patient and knew from the moment I walked in that it was going to be a positive experience. The receptionist was friendly, the office was modern and clean, and the wait was super-short (~3 mins). I was impressed with care that was provided and didn't feel rushed when working with Dr. Eric Clyde or his assistant. The three words that come to mind when thinking of this office are: professional, prompt, and accurate. My visit was for a contact lens fitting, so no comment on their frame selection / service.", "type": "review", "business_id": "z5rbKDh_tM4ukP-leSU15Q"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "AWrrQRIwzIV4t3VAe9VWTg", "stars": 4, "date": "2010-08-09", "text": "Had the Korean Beef over white rice. What a great dish. \n\nThin sliced beef in a garlic brown sauce with onions and great taste, served with a side of white rice. NOTHING over the top nothing trying to be something it is not. Just good food.", "type": "review", "business_id": "3tk6Syyz5i967Ifuz_4o3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FzaOGf0SuHRPrk7huJZbcA", "review_id": "X7EsMHroYo_bH3kD6OYhxQ", "stars": 2, "date": "2010-08-07", "text": "I went because several people I know raved about the place, because I'm a lapsed vegetarian and I'm always trying to get back on track and heard the veggie sandwiches were incredible, and because I'm a malt freak and found out they have malteds there.\n\nI was disappointed. And my friend I was with who had been one of Stickler's die-hard fans said that, although it was okay this time, the place seems to have gone down hill.\n\nStickler's wasn't busy at all, maybe 4 tables of customers and 3 people in line, but although there were alot of workers behind the counter, the service was very slow. We had to wait a long time for our veggie sandwiches. Now my friend has been there when it was jam-packed and she said the service then was much quicker. We went about 2 so maybe the staff was worn out from the lunch rush earlier.\n\nThe bread was good, crunchy on the outside and soft inside but the vegetarian sandwich itself was boring. It's supposed to have Swiss, Provolone and American cheese on it. I couldn't even taste the Swiss or Provolone at all, the American over powered the sandwich and was more like a cheez-whiz type.\n\nI'm always on the look out for a good malt, one that really tastes like a malt and not a shake. My chocolate malt tasted more like a shake and I wasn't impressed with the ice cream. My buddy liked her vanilla malt though.\n\nThe one thing I did like about Stickler's is that they have the small bags of Miss Vickie's chips to buy. It used to be you could buy big bags in the grocery stores but now the chips,which are the best kettle chips I've ever had, are just carried in certain deli and sandwich shops.", "type": "review", "business_id": "xWKtOLuIOVGZprcpGiqpQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "G6hw5kMloYJDsCGskps0UA", "review_id": "L8i0WfrpIy_xPoGgtw4s9w", "stars": 5, "date": "2012-12-29", "text": "A yummy Mexican Sunnyslope dive. The oatmeal horchata is tasty! THE torta is really an experience!", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zKqwJFPFd5XenERIpCabIA", "review_id": "CkE5V0IbszSlqYsr2w__Iw", "stars": 4, "date": "2012-04-12", "text": "Love Abuelos! Best Mexican food!", "type": "review", "business_id": "jCOTob1avPH52RNuniylkg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GlyZqaff1iXpY91JH9gYcA", "review_id": "CNhZHstYmds0GlR7saEy1Q", "stars": 2, "date": "2012-01-24", "text": "Dear God I should have ran to the hills when I walked in and saw 5 out of 5 people working there with electric shears in their hands. I refuse to call them stylists. I mean all I wanted was a trim for my 7 year old. Just a straight line. I'd hate to see her take a sobriety test.", "type": "review", "business_id": "vcX9au3IW-Mwv9SNZ_0jQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bj9wNeEIdJulpKiVYZhYdw", "review_id": "DgtNk6X4Kr0s2eZ5yxTfqA", "stars": 4, "date": "2009-10-14", "text": "This place has some great food. I haven't yet found anything on the menu that I don't like instantly. The pizza, the sandwiches, the appetizers, the desserts... all good. Despite this, my favorite item on the menu is definitely the Berry Burst Cider. I haven't yet found any other decent cider in the valley.\n\nAtmosphere: good\nService: good\n\nMy only beef: I did once have the jambalaya and that simply left me wanting authentic Cajun.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mcox0O0lsc95Xz-QbTiU_A", "review_id": "d0Qli3upSKqUnaqXKf9zzA", "stars": 5, "date": "2012-06-24", "text": "BBQ Chicken plate is excellent! My wife says that the half order is fine. Usually take orders to go and food is ready on-time! We eat here on a monthly basis.", "type": "review", "business_id": "MhH1kl9faN3RvIO4ptumTg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KpC10_UEJuga43WadHCmYw", "review_id": "Tw2gQVqVfNxkER542XhZvA", "stars": 4, "date": "2012-10-26", "text": "O.K. , I actually like this theatre, why ? well because it is usually never crowded. Things are a little old and outdated, but I hate waiting in line, so this works well for me .", "type": "review", "business_id": "KvD6kCW5LLOMEkdCNzo_Bg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EeSBXLMh3CvjSqBpJWT9gw", "review_id": "TnQoeuYYvyBJMRbhFHfEBw", "stars": 4, "date": "2011-09-03", "text": "I am always on the hunt for a good breakfast spot.\nThis is definitely going on the list of regular places to visit.\nI had an enormous pancake the size of my plate; flavorful with crispy edges..perfect!\nThe waitress informed me that 1 would be enough for me, so I had an egg and 2 slices of bacon. All very good.\nThe coffee was good too, an added bonus :)\nMy husband had the avocado omelette which was also very, very good.\nInterior of the restaurant wasn't anything exciting...but the food makes up for it.\nServer was nice and attentive.", "type": "review", "business_id": "MQNJNjLLDfsIrqxG-DBMqQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sMIOqXFpm6XuBlaokNdpAA", "review_id": "D-Glqsc5fnWUbMF2IsyMLg", "stars": 4, "date": "2009-10-18", "text": "This is a good place to go when you're hungry, but don't want the \"blah\" weighed-down yucky, greasy feeling. I always order the greek pita, well, because I'm a feta fan! Yes, a large amount of the menu has feta, so if you don't like it, you may want to rethink coming here. The rice pilaf is delicious, I also love the fruit bowls (not a fan of the pasta salad). Chicken salad is good, but I think it needs some salt & pepper personally. Yaya's chocolate cake is really yummy! All in all, I enjoy this place!", "type": "review", "business_id": "tpIU_ZvIfCfCp36IgghlHQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 1}, "user_id": "_vTyqTbfhZ-SlQVxz9HH8A", "review_id": "bEPvmw1bKOj1NVyczW_Caw", "stars": 4, "date": "2007-12-23", "text": "I've always had consistent quality of food and service here. \n\nStandard menu....everything is a la carte. I've been to this specific location about half a dozen times....\n\nI recommend City Hall or Mastro's (N. Scottsdale), over Morton's. But between Fleming's and here, it's a tossup. I would eat at either....but I would probably choose Fleming's over Morton's.", "type": "review", "business_id": "_BhzcKojv1gjdRINe3Gkig"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "YpoJfcupG358FRkif09m2g", "review_id": "RsYrTUqAWjLt4MJdghrFpw", "stars": 4, "date": "2011-10-01", "text": "They try to be like In-N-Out, even down to the color scheme, but the burgers taste very different. They offer cajun fries which have some extra seasoning, and if you ask for your fries \"well done\" they don't come out as soggy. But if you're going with someone else, then one order of fries is all you'll need. They give everyone huge helpings of fries and I'm never able to finish a single order so I just share it. The burgers are excellent and the one thing that sets this place a part is the option to get fresh jalapenos on your burger. Don't forget about breakfast! This is where In-N-Out fails. The breakfast burgers are great after a night of partying.", "type": "review", "business_id": "jqZKv-7F54guDLalXEjHxg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dUrVJl5qi2CJWff7s8HJNw", "review_id": "coCPAhbaEH5imSLV0y7-0w", "stars": 4, "date": "2010-10-29", "text": "I had to try it. I had to see what became of the space that was once the finest restaurant in Phoenix/Scottsdale. The design of J & G made me think \"Really?\". As Mary Elaines the space was elegant, regal, sophisticated, refined. As J & G the space feels like a sleek flashy Vegas restaurant. I am still recovering from that shock. I was there to give it a try. So here you go.\n\nTasting Menu\n\nTuna Tartar (Delicious)\nParmesan Risotto (needed salt, but good)\nSea Bass (Excellent, so moist)\nBeef (Good, but excellent tasting steak sauce was ice cold)\nChocolate Cake (Wow!!!)\n\nCocktail/ Wine\n\nSidecar (awesome)\nSome sort of big red wine.\n\nOur waiter was good and explained the menu very well. There were some errors is service so I had to keep reminding myself this is not Mary Elaines. Its a steakhouse.", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "-Dof9NwAoQwRM-GVPZk5zw", "review_id": "AEdoulpl6swjISKfT41xpQ", "stars": 3, "date": "2010-02-03", "text": "This really amounts to 3.5 stars. I think after seeing all of the stellar reviews combined with my LOVE for Filipino food, my expectations were just too high.\n\nI took a few coworkers with me to check out the food and see if I had finally found a local Filipino eatery to curb my cravings. Not so much. The pancit (my favorite Filipino entree) seemed to lack flavor and/or seasoning. I also wanted more meat and veggies - maybe that's just due to what I'm used to. It was more just oily noodles and missed that flavor I wanted. The good news is the pancit is cooked to order so it's very fresh and hot - just be prepared to wait a few minutes.\n\nI was also very excited to get some lumpia. Again, not so much. They were tiny with some mushed ingredients in them. Also again, it may be just what I am used to, but I've always had ones which are longer with more fillings - stuff you can actually see and taste what's in them.\n\nOn a positive note, the folks there are extremely friendly and helpful. It makes me want to like it even more. I'll go back and give it another go - I'll give the chicken adobo (my other favorite) a shot for some redemption.\n\nA few tips:\n*If you order pancit, order first because everyone's items are not brought out at once and the rest of your party will be waiting on you.\n*It is a small place - tough to fit the 5 of us. There were only a few other tables to seat 2.\n\nI really wanted to like you Karey's Kitchen...", "type": "review", "business_id": "sZAzeccYUVPjlkrlMooV-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "napKYq5CsyGv2VbqddBjYQ", "review_id": "Ejd0KegGmvjU58C3KUAksQ", "stars": 3, "date": "2012-01-02", "text": "I don't usually write reviews very often (in fact ever). But I felt that the 4.5 stars does not currently reflect my previous sushi experience here. \n\nFirst off, the service here was really good. The waitress was really nice, very prompt and courteous and provided the food quickly. \n\nThe food itself, was prepared well, I usually eat a lot of nigiri and the pieces are ok in amount of fish, the rice was packed well and the quality of the fish was good.\n\nThe major downside in my opinion is that its pricier than I expected. I wish Yelp would provide \"2.5 dollar signs\". Granted, I did not come for \"Happy Hour\" which ends relatively early at 5pm. I go to a lot of sushi restaurants and for the amount of fish provided, I would have expected it to be cheaper.\n\nAlso, the edamame cost $$. Even the miso soup is not complimentary. Considering the above average price, I've been to too many other places that have the same price, same quality, and provided the necessities for free. Oh, I even forgot that a bowl of white rice for my child was even a charge. \n\nSo, the nickel and dime of things I would have expected compounded with the surprisingly above average price, I can only say that Yen Sushi was \"ok\". The other two people in my party (minus the children) also agree.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "G_hVb1z39juEqMAwh7ZNcQ", "stars": 4, "date": "2007-01-23", "text": "Suede has been around for awhile now. It's no spring chicken. But I still find the place to be a good time, if you can stand the wall-to-wall people and the loooong lines for the bathroom (only the ladies bathroom, of course). I think the drink prices are normal for a Scottsdale bar and they aren't any higher or lower than what you'll find at Myst, Axis/Radius or Six...strange, don't they all have the same owner?? It's a fun spot to go though and even if you're not feeling it, you can walk right over to Axis or Pussycat and not take much time out of your night to do it since they're right across the street. If it's a good night, Suede plays the best hip hop and rap music to dance to and the floor will be packed. On a bad night, the DJ is spinning techno crap (I'm not a fan) and my friends and I will go somewhere else for the night. There is never a cover for girls, although I think there is always one for guys on Friday and Saturday nights. Guys have to dress up a little too...I think Suede follows the no hat rule and the bouncer may take a look at your shoes too- guys can't wear sandals or sneakers (I think!) So definitely call and get their updated dress code before you head out.", "type": "review", "business_id": "AaYHMYoeOt-5nN32vTA_Dg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WsBMlEq2pPHE0fdgDHnW2A", "review_id": "z3DtJDeJTAolrI2t9ixsWw", "stars": 4, "date": "2011-10-31", "text": "Very good food with huge portions.", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "_8qo0ym2JDX2r4KYRaNYXw", "stars": 4, "date": "2010-02-23", "text": "I havne't been into Radio Milano quite as many times as I have been into Postino, but I have to say of those times I have, I was impressed. They have complimentary valet parking which in this neighborhood is a huge plus!\n\nTheir menu has many different dishes to choose from along with the daily special that always sounds great. The other night when some friends and I stopped in the special was short rib ravioli, yum right? Well, I wasn't able to fiund out, as they were sold out for the evening. I instead got the linguini with clams, and I am glad I did. One of the tastiest things I have eaten in awhile. It was with a light cream/butter sauce with garlice and leeks and clams. If you like clams I would deffinatly recomend this dish, it's perfect!\n\nThey also have some interesting things on the menu you I am excited to try next time I stop in; deviled eggs, olive oil cake, and their mac 'n cheese.\n\nTheir wine list was nice, decently priced as well. Radio Milano has a warm cozy inviting feel, anyone can have a good time. Just be mindfull that it is an open room, and talking to your neighbor as if you were at a football game is not the most polite thing to do. I wish the ladies that were out for a batchlorette party that night could have gotten the memo, \"they were loud\" is an understatment. None the less, we had a great dinner.", "type": "review", "business_id": "C1tH3sEQra33EOTk56Eu1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MBGZ-2HTMvfCBrG3G-R2AQ", "review_id": "HcUbUaI08DMVBttBeJZ0HQ", "stars": 5, "date": "2009-09-18", "text": "Tim is really a very friendly and honest guy. He will tell you what you need or what can wait. This place is worth going to! It will save you tons of money!", "type": "review", "business_id": "j_-oJf03893wsQe1q5sGPg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Jegks7c-o66A9LaxWYQLsQ", "review_id": "UJiWI0JuvnVC26gAtAwlTQ", "stars": 5, "date": "2009-11-25", "text": "When we first got here I felt disappointed until I realized the zoo is much larger than it first appears. Particularly worthy of checking out - the lions and tigers. Also do not pass up the monkey walk. The little squirrel monkeys are fun to watch. \n\nBe sure to shell out the extra bucks to feed the giraffes. It's a unique experience to be so close to these large, yet gentle, creatures. Definitely my favorite part of my visit.\n\nVisit Date: 11/19/09", "type": "review", "business_id": "1Ap6ZNCvyLLKHP0wvCk9yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Jx8VRjgsc3ikBKcP9wLlAQ", "review_id": "Au23Mw185CQdjVorbkId1g", "stars": 5, "date": "2012-06-30", "text": "Decided to call CityWide based on positive online reviews. We suspected a slab leak and a really expensive repair. Robert showed up within 20 minutes, determined the source of the leak within 5 minutes, and it turned out to be something really simple and inexpensive. He repaired it with a brand new line, we paid, and he left within a half hour of us calling CityWide. Very professional, friendly, and efficient! Would definitely recommend CityWide for anyone's plumbing needs.", "type": "review", "business_id": "3O-01lUwrdNCSrqDoJ7CvA"} +{"votes": {"funny": 4, "useful": 4, "cool": 2}, "user_id": "9UNGbiE9k0fvMpCMJp0Gww", "review_id": "2s0Es6Y6EYtCAHCA8oCn6g", "stars": 5, "date": "2012-09-13", "text": "Potbelly, you have been handed the torch.\n\nIt was a good ride Jimmy Johns, but you have no locations close to my newly purchased home. Its not you, its me. I promise.\n\nI love italian-style subs. The Wreck at Potbelly is fantastic. The Wreck salad is also great (for a salad). \n\nThis place is my new go to sub shack.", "type": "review", "business_id": "DUDr1kuGv6eh1_s2GWJVgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j2eM540C7mbF1TZvCMTluA", "review_id": "JSocnq8bLHvbyd3svlx2nw", "stars": 2, "date": "2010-12-02", "text": "This place came recommended by the hotel and some colleagues in Phoenix so my expectations were high.\n\nI went with the recommendation of the waiter and chose the salmon -- mistake. It was dried up and had zero flavor. The potatoes and asparagus that accompanied the dish however were cooked perfectly. I also had the wedge salad to start, which was more like two mini-wedges. Great presentation on the salad, but sort of strange with 1/2 a devil's egg in the middle of the plate. Good but strange and a little too small with the portion size. After all, iceberg lettuce is cheap. The waiter was attentive and staff were all nice. Not sure I would ever go back.", "type": "review", "business_id": "4FS5otEktCyI1aDpg_h03g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "TSk_XN1xy6Lyoczj-kdsTA", "review_id": "7tVnXQif_wkGCKcwSPMWzw", "stars": 5, "date": "2009-09-23", "text": "Okay, this just might sum it up... I LOVE YOGURTLAND WITH ALL OF MY HEART! Go get some yogurt, the end. \n\nNo but seriously, do go. :) All of these yogurt places have been popping up everywhere the past couple years, and when Mojo opened up at the Biltmore I loved it, but it was far away. Then, yogurtland opened up right next to where I live and i discovered it WAS BETTER! Sooo many flavors, and they change a few of them out every once in awhile. They have all the normal yogurt toppings, plus white chocolate sauce, chocolate sauce, and caramel sauce. Hello? Isn't this supposed to be healthy? Haha, it actually is if you take advantage of their freshly cut fruit. I just love it. I took my brother and he is the first person I've seen to grab the biggest cup they have, I asked him why and he said, \"It's so good, I can take some home and put it in the freezer for later.\" My favorite is pistachio yogurt with gummie bears! Record is 5 times in one week... message me if you've beat that.", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "xgrNgHOs8F5JvEX38IeCJg", "review_id": "pdi8jiHwJNyKUfDNowROhw", "stars": 3, "date": "2008-10-07", "text": "Honestly, I love cupcakes. Like I said in my Wicked Bakery review, eating a cupcake, unlike a slice of cake, gives one a sense of accomplishment. I like cupcakes. I like the sense of accomplishment you get from eating a cupcake. You may have had a hard day, but you finished an entire cupcake. That's validation. It makes me happy.\n\nSprinkles is a great place to go for a sugar fix, but I have to say there are some negatives. I have had a dry cupcake there. They are a bit on the expensive side.\n\nThe worst sin of all? Their red velvet is \"a southern style light chocolate cake with a cream cheese frosting\". I have to disagree. I don't detect any cream cheese flavor in that frosting.\n\nThe first time I devoured a Sprinkles cupcake it was magical. I was particularly impressed with the black and white- \"Belgian dark chocolate with creamy vanilla frosting\". I was in a shoebox Los Angeles apartment and the cupcakes seemed of adequate size. The next time was the new location am currently reviewing and they were consumed in a larger-than-shoebox Chandler house. They seemed a little small. The third time was in my car- a Subaru Baja, and the cupcakes, again seemed sizable. I'd have to think that consuming a Sprinkles cupcake in an SUV would not be a great idea- the cupcake to eating space ratio would be all off. \n\n\nFor true cupcake validation, I'll drive the 35.9 miles to Wicked.\n\nOk- you caught me. I might stop by for an emergency fix if I happen to be in the area, but I'll be thinking of Slade at Wicked... and I'll be consuming my confection in a small space.", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "zhVOlwBuEgdGlHjwgVf3Jg", "review_id": "TH5M4pgyEGrKWj9Rx2XGJg", "stars": 1, "date": "2012-03-14", "text": "And then it all changed...\n\nI think this is my very first review that has been demoted to 1 star after being on the coveted 5 star for a long time. \n\nSo, where do I start. After feeling dog sick for a few days, I finally decided to \"walk-in\" to this place because that's what they do now supposedly. They take walk in patients who are seen by the NP. I signed in at 8:20 and was not called in the back until 10:00am. Then I waited another 35 minutes for the NP to come in and see me. By the time everything was over, it was 11:00am before I walked out of this place. \n\nI asked to talk to Brenda, the office manager and was brushed off twice. Supposedly she is going to call me but would not see me when i was there for two and a half hours! I guess she didn't have the balls to face me at that point. What could she have said really? \n\nThe front desk lady did a screw up and let another walk in patient go before me even though he came 10 minutes after I had already signed in. When I pointed that out, she said he came before me and I had to show her the sign in chart. Instead of apologizing, she just kept doing what she was busy doing without acknowledging her mistake. \n\nWhen the NP did come see me, she missed a couple of key things in my chart that she totally should have asked me about. I was quite appalled. I had to point out a deathly allergy that I have even though it should already be in my chart. \n\nMy final analysis: In my opinion, don't go here if your health and time are valuable to you.", "type": "review", "business_id": "i9LWPgDrCRaHfXpSk4TjUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QocwkeVyChF2JoP_zKH8Fw", "review_id": "RJX8KkT_2nWxbu6jRYv4wA", "stars": 4, "date": "2008-07-03", "text": "Great food and atmosphere. Had lunch there on a Friday afternoon. Parking is a bit of a challenge. Had the pork pita which had onions, bell peppers, and pepper jack cheese...awesome...\n\nThe burgers are good too! The service was excellent.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MMgHZwm4rj8W1scW4cEq5w", "review_id": "JPIqotGAc3pSfOoBHSBZtw", "stars": 5, "date": "2009-06-17", "text": "What an exciting time. I am writing my first YELP review about the wonderful MOJO Yogurt I visited yesterday afternoon. There were so many wonderful flavors to choose from and the people there were nice enough to pass out tiny little sample cups. It was a challenge narrowing down my selections to a few flavors but I somehow managed. I ended up with Birthday Cake (that's right, there is Birthday Cake flavored yogurt, life IS good), Cafe Latte, and the divine Original Tart. After throwing on a few gummy bears I was a happy girl. I see in other reviews that some complained about pricing but I am willing to pay a little extra for quality and happiness.", "type": "review", "business_id": "1eJiyKXx_ruNu6F36BJQCg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "d7G5UmaTLSz6usEB00VpFg", "review_id": "Ri0RuGTucSDIYUD0BPUyNw", "stars": 4, "date": "2011-06-11", "text": "My husband and I frequent this restaurant quite a bit. We use to be huge fans of the Ahi Tuna burger with sweet potato fries (the fries rock). Unfortunately, they removed the Ahi Tuna burger from the menu which was very disappointing. I do like the Tiki fish sandwich though. I do which that they would included a fish sandwich on their lunch menu on the weekend. Although, when I have gone for lunch on the weekend and have asked if they can make a fish sandwich they have always accommodated me. \n\nI would give this place 5 star, but I think their one weakness is their brunch menu. I took a friend there for lunch because we loved their dinner and lunch menu so much, but it was very disappointing. We ordered Bloody Mary's and had to send them back because the horseradish was overwhelming. In fact, all you could taste was horseradish, no tomato juice or anything. All three of us sent them back and they could remake them because they were part of a batch that they pre-mixed - UGH! Plus, I was the only one that liked my breakfast. My husband and friend were not impressed. \n\nAlso, I adore their Hawaiian fish ceviche - yum!!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "GA9-h9rRosmKN-NzvyepLQ", "review_id": "H9bQyxFEtYb1YYSIfQfoUg", "stars": 4, "date": "2008-04-29", "text": "I used to LOVE this place. It was fun, vibrant and hip and the food was pretty good. The calamari salad with arugula was da bomb and still is. The food was definitely better when it first opened. If you drink enough alcohol to ignore the miserable wait staff then it's not so bad. The wait staff are unprofessional and could give 2 rats about your dining experience; but all you have to do is tip accordingly and hopefully they'll shape up. There are way too many places in Scottsdale to return here. I think I will give it one more shot. It is a shame b/c the food is pretty decent.", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 2, "useful": 6, "cool": 2}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "zCfFoD0BsWUjaBtjwMGaYg", "stars": 4, "date": "2010-02-08", "text": "On a cold winter day, the craving for hot comfort in a bowl makes a person do strange things. It found me driving to a kind of shady part of Mesa, while braving the cold winds in search of a perfect bowl of ph\u00f2.\n\nMy new holy grail of Vietnamese restaurants is Ph\u00fa Th\u00e0nh, located in a rundown strip mall on Southern and Extension. A good Vietnamese restaurant is usually kind of old, slightly dingy and super cheap, and in this case all the basics were met and exceeded.\n\nPh\u00fa Th\u00e0nh is a no-frills kind of place. Inside it screams for a makeover. Though clearly from another era, it is clean and functional. The service is friendly and the kitchen is fast.\n\nThere might be a slight familiarity here the owners of Ph\u00fa Th\u00e0nh and my favorite central Vietnamese joint Da V\u00e0ng are brothers. The menus of the two places are almost identical, and they offer a lot.\n\nThe No. 50 Ch\u00e0 Gi\u00f2 ($2) is what good Vietnamese cooking is all about. Two golden-brown, crunchy egg rolls filled with shrimp and pork are hands on and interactive. Served with a plate of lettuce leaves and herbs, you wrap the egg roll in lettuce and garnish with mint and cilantro, then dunk them into the house-made n?\u00f2c ch\u00e2m, a sweet and spicy dipping sauce. The fresh lettuce and herbs cut through the richness of the egg roll, which on its own might be slightly oily.\n\nApplying the same hands-on approach, the No. 54 B\u00e1nh X\u00e8o ($3.95) replaces the rolls with a pan-fried rice flour crepe. The exterior is slightly crispy, while the soft interior is filled with shrimp and bean sprouts. Of all the B\u00e1nh X\u00e8o I've tried, this version is by far my favorite. It's full of flavor and texture.\n\nPh\u00f3 (pronounced like the bad word) is not only fun to say, but fun to eat. Eight versions of the noodle soup are offered, from traditional beef to chicken. Pay attention to the menu description when ordering since you might wind up with unfamiliar cuts of meat.\n\nI'm adventurous and love the textures of beef tendon and tripe, so I was in heaven when my steaming bowl of No. 1 Ph\u00f2 Ph\u00fa Th\u00e0nh ($4.95) arrived. The broth was incredibly fragrant with clove and star anise. This really should be made into an air freshener.\n\nAlong with the condiments at the table, the soup comes with a plateful of basil and bean sprouts. But also include limes and chilis to add texture, flavor and depth to your pho experience.\n\nFor something hearty and comforting, the No. 7 M\u00ec B\u00f2 Kho ($4.75) is a bowl of chewy egg noodles filled with a beef stew. Tender pieces of stewed carrots and beef grace the rich and complex flavors of the dark and tasty brew.\n\nIf you're carbohydrate loading, order a slab of French bread to absorb all of the bone-warming elixir at the bottom of the bowl.\n\nFor food like this, a little shady is worth the drive.", "type": "review", "business_id": "IXB3PGgSmw4bjTe9ll-tQw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "WV9oNBkcw3HvzEP45OHQVQ", "review_id": "qHNjywcTsm7wdbiBn9K4gA", "stars": 5, "date": "2011-04-12", "text": "Thanks to Yelp I was able to find this hidden jewel. The place looks like a spanish style motel converted into a restaurant. With a cute garden in the back. I had already eaten so didn't intend on a 2nd breakfast. But stingy GF only allowed me a few bites so I had to ask Chris to whip up another plate for me. It was my first time having chilled salmon done that way and it was so good. Everything tasted so fresh. For the price you get to drink all you want. And I must have had at least 10 glasses of the orange juice with mixed berries. The food and the atmosphere reminds me of eating in Napa, CA. Will definitely return when I'm in town.", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "jM4qX4eiH9tIG9VUaN2knQ", "review_id": "jEguWDFMhLodVdfmb_ViIQ", "stars": 5, "date": "2010-01-30", "text": "This is one of my new favorites places to bring people who are from out of town. It's something different that I think real \"Foodies\" will enjoy. Although the restaurant itself is dark and cramped, it's worth going to over and over again. \n\nI ordered the Shepherd's Pie Pasty, it was very filling and delicious. Although I had to wait 20 minutes for it, it was worth waiting for a fresh out of the oven pasty. But if you're ever in a rush, a good thing about this place, is that you can call ahead and request for them to start cooking your pasty so that it is ready to be served once you arrive.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "MwAM4Nhmm_U827ijnGugLQ", "review_id": "Az_1DteQAecHWw0Jvx2XlA", "stars": 5, "date": "2011-03-07", "text": "Apparently fellow yelper Andrew and I are meeting in our dreams over maple bacon creme brulee! I'm seriously glad to see that I am not the only one having subconcious yearnings for this lil dab of heaven in a cup! All of the products are top notch though and who doesn'tlike creme brulee? Communists maybe? Chef Eric is awesome and so friendly too.", "type": "review", "business_id": "bS2iENq-r03NA7HcON3ujg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ROr4DQ-gxlfUKmiDC-qSEQ", "review_id": "J7MtPNuSCzIpUnfLSuz4ZQ", "stars": 4, "date": "2010-03-15", "text": "Thanks to Sara V. I learned about Total Wine & More through her and when i heard they were opening up locations in Phoenix, I was excited. Anywho, 6 visits later, I can honestly say I'm a fan of total wine and moreso than BevMo. I love that there's a wide selection of wines from all over. My favorites are Riesling, Moscato, Rose, Pinot Noirs and sparkling wines. Yes, I love the sweet kinds.\n\nAnywho, my most recent visit, had me buying two kinds of Rieslings both recommended, a Bree and the other one a German Riesling. I recently had Moscato the night before and loved, it was sweet like apple cider and very flavor, with it's apple and peach undertones...simply delish! The Bug Juice Moscato was YUM and elegant. I totally enjoy the selection not just for wines but for beers as well. I like that I can by some hoegardaan for cheap and I like the wine tastings going on. The staff's helpful and overall I like the layout and the prices!", "type": "review", "business_id": "ycBa5cnSa6hgdB7rb9rdiw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "FAxy_JuEOhhZl3C10LMY1A", "review_id": "KkG3lJgyemn-AVUhN1ZKDQ", "stars": 5, "date": "2010-02-16", "text": "I love this place, sure its kinda creepy and in the middle of an odd office complex but DAMN those donut holes chocolate cake not the glazed ones are good! Not to mention the NINJA BOWLS!! Good God get the Sizzling ninja, top that off with a fried egg, and pineapple, get healthy with some brown rice and white chicken and then DRENCH that bowl with NINJA SAUCE AND SRIRACHA (which comes standard btw) AMAZING! Don't waste your life away without having one of these ninja bowls at this donut shop, i never thought i would be able to say that statement with a straight face but i did! And for those wondering they don't serve pirates (some will understand this fact) Also if you come back a few times they might throw some free donut holes at YOUR FACE LIKE NINJA STARS!! I joke they don't throw them but you may get some for free (really though)!", "type": "review", "business_id": "ntH7Mo1JZdkglMiQXZy3Bw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "1w8mCNXZRHbaHW_1I2aJOQ", "stars": 4, "date": "2012-12-14", "text": "There's no better way to find out about a new eatery than to receive a gift card to one you've never been to (or heard of, for that matter). This happened to me when I received a gift card to Paradise Bakery. Being new to Phoenix, of course I Yelp'd it to find one nearby. I located this on on the SWC of Bell Rd and 7th Street while up at Sam's Club. \n\nParadise Bakery has sandwiches, salads, soups, sides, and of course -- the bakery items! At this location, you can eat in or take out. I like the Turkey Bacon Bravo or the Turkey Cranberry with a side of their excellent mac 'n' cheese and a drink. Getting this combo also scores you a free cookie! \n\nThis location is in the shopping area with a huge Target and many other stores, so the parking is hit or miss, depending on the time of day/week. And PB's prices are just a bit steep for what they serve...good food, but still a bit pricey.", "type": "review", "business_id": "RiJ8Agrw__NG6flFL7BpbA"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "WWxCMDn8rVHIrIFoKRcRDg", "review_id": "nGpuxjWld11UXTwx7TG-hw", "stars": 5, "date": "2009-12-17", "text": "Awesome loose leaf tea spot in the North Phoenix area. You can have a cup/pot of tea in-house, or buy a variety of teas to go.\n\nHUGE selection of loose leaf teas. If you're a tea fan, a visit to Souvia is a must-do.", "type": "review", "business_id": "6OFYUDvf2k4RXDfOomfi1A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "kNO6w6EIKo8u6GSykOHBLA", "review_id": "2TRWZJYVig64c6C1ESiajA", "stars": 5, "date": "2012-08-30", "text": "I have eaten here several times before...and I don't think I have ever left upset, I've always enjoyed my meals, but this time I can honestly say that I enjoyed all of my courses! \n\nI was with a group of four other girls. We all started off with the amuse. It was some sort of sous vide duck on toast. It was really good. Next we had our choice out of four starters...I along with three other girls had the sauteed scallop. So beautiful! Four out of five of us ordered the beef tenderloin. It melted in my mouth...It was perfectly cooked. The only bad thing is that I wanted more! \n \nFinally, you get to chose from four desserts. I don't like sweets, so I always bring it home to the kids. But, they are so beautiful!\n \nNow for the price...my meal was only $13 for everything! It doesn't get any better than that. I also ordered the orangecello for an extra $3. Well worth it!\n\nOnly sad part is that we were the only table there...Makes me sad! Everyone is missing out.\n\nOur server also took us on a tour of the school afterwards!", "type": "review", "business_id": "EgjFg_apjNerroqYiokcag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QiR2X306Yzd9fuJdKDhkGg", "review_id": "uGYlnndFk6o5j35yiYIhqA", "stars": 4, "date": "2010-05-25", "text": "If you're in the mood for a foodie adventure, I've got just the thing. A trip to the Caribbean! Head on over to Tempe and enter A Taste of the Caribbean restaurant. The bright yellow and green walls, red floor and outdoor furniture will make you feel like you've arrived. It's kind of scruffy and laid back - this is not the place to come for a quick bite. First of all, you have to make the tough decision about what to order. Oxtails or goat? Jerk chicken, of course, or do you want the milder brown stew chicken? Fish? There's snapper, tilapia, and shrimp. The menu is divided up into Caribbean Favorites, Friday and Saturday Menu, Lunch Specials, Rice Bowl Specials and Plate Specials. If all this has your head spinning, you're not alone. Our server, part of the family who own and run the place, seemed equally confused. But she was charming. Just accept it, and the slow service as part of the experience - don't worry, be happy.\n\n We ordered oxtails ($11.95) and Eggplant Curry Shrimp ($9.95). The oxtails, in a brown sauce, were fall-off-the-bone tender, fatty, as oxtails are, and totally delicious. The accompanying plantains were caramelized and a little crunchy. Perfection. A huge mound of rice and peas filled the center of the plate - moist and beautifully seasoned. And finally, a side of cabbage. There must have been a little sugar in the cooking pan, because it was sinfully delicious. Served on the side was a basket of roti, a homemade flatbread, similar to a flour tortilla but much softer. It was so hot we burned our fingers trying to pull off a piece. We had finished off the oxtails when the eggplant dish arrived (they were supposed to have come out together - it's a good thing we like to share). Be forewarned, this curry is not for the faint-of-mouth. I wasn't expecting the degree of heat - my nose started running and my eyes watered. But it was pure bliss, with flavor layered on flavor. The shrimp were perfectly cooked, although I wouldn't have minded a few more, and the eggplant was so tender it was almost melting into the gravy. There were also some pieces of potato, which had not been mentioned on the menu, hiding in there. The heap of rice and peas helped mitigate some of the heat. As you might have gathered, between the roti, the plantains, the rice and peas,and the potatoes, this is a carb-lovers paradise.\n\n Two odd things: a wide variety of Caribbean sodas are sold here, but no ice tea. And the rest rooms are in a different building than the restaurant.\n\n The only disappointment was dessert. I got a pineapple tart to take home (I couldn't have eaten another carb if my life depended on it). Our server had said it was the best of the two desserts available. Uh-oh. The tart was really bad - a smidgen of decent pineapple filling wedged between layers of leaden dough, tough and greasy. I was glad I hadn't eaten it at the restaurant, because it would have put a bad ending onto an otherwise extraordinary meal.", "type": "review", "business_id": "Tsff0UUVgrnawjI_xd2cKg"} +{"votes": {"funny": 9, "useful": 14, "cool": 14}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "MH1r59i6GuJR0jDeedsPaA", "stars": 5, "date": "2009-12-28", "text": "I picked up some brownies as holiday treats this year and they did not disappoint! \n\nThese are the richest, chocolatiest, moistest, biggest (3\" square) brownies you will find! \n\nI'm tellin' ya! TOTALLY worth the drive to Gilbert - except they're taking their own holiday break right now, so you'll have to wait until after Jan. 4, 2010 to get your fix! Still, worth the drive and worth the wait!!", "type": "review", "business_id": "xKV873WMxM0EJ7NTtu4Qhg"} +{"votes": {"funny": 4, "useful": 9, "cool": 4}, "user_id": "vn3lecMsL3kXVe-7hg3gLg", "review_id": "UEjPFR1a0cOvXYgn_qkB_g", "stars": 5, "date": "2011-01-08", "text": "No question -- my FAVORITE burger in the valley!\n\nI first got turned on to Lobbys at a Yelp Office Hours -- http://www.yelp.com/biz/september-office-hours-at-lobbys-tempe#hrid:kQOElzgklMRbAyWS8LhVFw - - and by my check-ins, you can see i've frequented there since. \n\nI've tried a lot of other \"great\" burgers -- 5 Guys, Smashburger, etc - but IMHO, none of them stack up to the food and the experience at Lobbys. \n\nThe burgers at Lobbys are so good that I crave them --I want to drive across town or plan out my day so that I'm in the area to get one! I just feel that there's more quality ingredients with a Lobbys burger -- the bun, the taste, the way the cheese melts over the whole patty, the special sauce, and the burger itself. \n\nAnd just as Lynn W says the service is truly superior here and \" He (Lobby) really cares about his business and it shows\". \n\nI've recommended many friends to check out Lobbys and have brought a few friends here -- everyone has loved it! Especially my Chicago friends that live in the valley. \n\nLobbys burgers is that raised bar that I measure all other burger joints to.", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YeK95nGGvYsssVHzcWpmkA", "review_id": "-R10qztbLF4M_Tz9iqu2fQ", "stars": 5, "date": "2011-04-12", "text": "By far the best asian market in the entire valley! I first discovered Lee Lee's tempe location and was so happy when they opened this location in the west valley. Amazing selection from produce, meats, and asian. The staff is super nice. Never have had a poor experience in all the years. Shelves are clean and organized. Prices are great too.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "VBKbZD9X4zruXYORIhJhhg", "review_id": "Lg2a8eMyneSe8gSyzTdAwQ", "stars": 4, "date": "2010-04-05", "text": "I pass by it everyday and my son goes to the daycare in the same center so I had been wanting to try it. I just recently started liking wine so of course I was excited about trying something new. \n\nWe were greeted right away, and seated at a table that felt like we had to shout to one another - haha... so we moved to the cozy little couch in the corner which was a 100% improvement. Intimate but casual and very comfy... and close to the tv (basketball). They played Sade all night which I really enjoyed... I love her.\n\nOur waiter seemed kinda weird at first and he did \"forget about us\" a couple times... but he made up for it with complementary glasses of wine, so we forgave him. \n\nWe tasted an Ausi white wine but I didn't care for it. Then we tried the Gew\u00fcrztraminer which I really liked. I guess I go for German whites??? But I'll be the first to admit I have no idea what the heck I'm talking about when it comes to wine :o) But I do look forward to lots of learning!\n\nAnyway, we ordered the bruscetta for a little snack which were all very good. \n\n*Smoked Salmon, mascarpone & taramosalata\n*Dates drenched in soy sauce with spicy Chorizo (my 2nd fav,mmm spicy!)\n*Fig, Prosciutto & Brie (both our favs)\n*Sun dried tomato, gorganzola & walnuts (we actually ordered the artichoke but got this by mistake, but we both liked it - and I'm not a huge sun-dried tomato fan either)\n\nI can't wait to go back and try more wine and more of the delicious sounding food! Crocodile, kangaroo, panini's... YUM!", "type": "review", "business_id": "9dopZKjYiKwPiw7kEQsEag"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "-F32Vl8Rk4dwsmk0f2wRIw", "review_id": "AhHedJNftPJarMm-nYDJeA", "stars": 4, "date": "2008-04-07", "text": "I love minimalism. If you can class up a place with a less-is-more approach, then you've exceeded the abilities of 95% of the American population. Fortunately for the Cen Pholks Lisa G has this aptitude that transcends through her decor and into her simplistic, but delicious organic food.\n\nNow, here's my deal: you put prosciutto on your menu and and I'm gonna get b-boy on your hardwood floors like Ozone in Breakin' 2. Lisa G's breakbeats the hell out of their prosciutto sandwich with caramelized onions, parm cheese, fig jam, and arugula on an Italian loaf. A side of balls and their Alamos Ridge Malbec and I'm fresh.\n\nService? Never had a bad experience, but who cares? The food outshines any flaws of a young dine-in.", "type": "review", "business_id": "TCqkBVN84Ek0oLmZGAX5xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_0wsW5uexL4r5Pe2HtmKSw", "review_id": "9X7vffM8LREC79yf5yRbbA", "stars": 5, "date": "2012-12-26", "text": "This was definitely the best meal of this year's holiday trip....\n\nThe Kale Caesar! is a very creative interpretation of the timeless classic. We loved the melted Scamorza cheese. \n\nI had the Applewood Smoked Duck for my entree, accompanied by a glass of the Siduri pinot from Willamette. The wine was perfect with the cherry sauce, besides the fact that pinot is a classic pairing with duck. A glass of Siduri for $12 is a great deal, too. I loved the way the duck was prepared, too, and it did not weigh me down afterwards like duck often can, either.\n\nMy wife had the buttermilk roasted chicken along with a glass of their creative (and delicious) interpretation of sangria. Roasted Brussels sprouts and sweet corn are part of the presentation. \n\nDessert was the decadent Dream Pudding Jar. We always get excited about an original dessert dish, and this one did not disappoint.\n\nService was top notch all the way, also.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wYzOrThSYP8WwioLfsu4vQ", "review_id": "3cfE-5xo_VkBc_5YkryHrg", "stars": 4, "date": "2007-05-15", "text": "Oh Orange Table, what can I say about you? I am, to say the least, a regular here. Completely by default, of course, given that I work directly over this great little coffee shop. \n\nThe food here: amazing. The coffee: the best. The atmosphere: perfect. So why only four stars? Because the service can be absolutely abysmal at times. Given, there are a few star performers here who give it their all, bust their ass, and never forget a customer's name. And Sue, the owner, really seems to genuinely care about each and every person that walks in the door. But the service is so unwaveringly slow that I am often prevented from eating here due to time constraints. Example: I once ordered a cup of soup to go-- soup, mind you, that is completely ready and cooked, just sitting in a big tureen in the back-- and it took 35 minutes. \n\nSo, yes, the food is amazingly fresh, inventive, delectable. The prosciutto is shipped in from Italy. The bread is natural and baked locally. The chef's in the kitchen are mad geniuses, whipping up sandwiches, salads, appetizers, all completely fresh and filling. But you absolutely must have the time to wait for it. I've never had anything I didn't like!", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "oqkU_xVofn8OAbLijTipng", "stars": 4, "date": "2012-06-07", "text": "Delicious, cheap (for how much you actually get), and oh yeah, delicious.\n\nI LOVE this place. I easily take home enough food for 3 meals. Great variety and nice people.", "type": "review", "business_id": "CdOb17NMdQpagyHSxv5mHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1Xxau4ghT7VWDdDwK9gjiw", "review_id": "KHf_TwGOCDSzhz3dDKDIeg", "stars": 4, "date": "2011-02-14", "text": "I love that it's all a self serve line. You pick your yogurt and can mix flavors and then add any other toppings you want! Fabulous!", "type": "review", "business_id": "GNC2WXRjEO8e7r5f8ZCVrA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ZXXNfqQfydJFLAqBtzwM-Q", "review_id": "9SjsRrEWhHuRlFL_EbN0FQ", "stars": 1, "date": "2010-08-12", "text": "Found the doctor via his website and called for an appointment. The ladies that answer the phone are sweet so I felt I made a good choice. I was taken into the room and a sweet girl asked me questions and told me the doctor would be right in. He came in quickly and asked if I would mind if someone that was following him would be present. Fine. The other guy walked in along with a lady (medical assistant maybe). No one introduced either of them. Dr. Racette didn't ask me one question and didn't address any of my concerns. He seemed to even brush off the questions I asked or responded with brusqueness. It was very irritating as a patient to be asking questions about serious topics like skin cancer and feel blown off. He prescribed a cream for me and was walking out the door minutes after seeing me and said he would have someone come in with the script. He never talked to me about how the cream works or what it does. Awful awful. Too top it off, they were supposed to call me with test results. I had to call them and the gal that answered said, \"no one called you with the results yet?: NO!! Will not see this doctor again. Sorry but I actually prefer doctors that care to take the time and actually address my questions and make me feel comfortable, not take 5 minutes to rush me through an appointment.", "type": "review", "business_id": "GQuUFerQlnyRoOGdA63EKA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Wd8HTLOxMPRbGfY4UxTYVw", "review_id": "bq0j-zqDOWLdsxfPyZCO1A", "stars": 5, "date": "2011-04-29", "text": "I honestly just got home from visiting Super Farm! I headed out their way because I wanted to try their milk - we are trying to spend our $$ on local businesses. It was great to actually speak to the people who raise the cows and see the cows with my own eyes! \n\nWe ended up staying for about two hours! Everyone was so friendly. We bought our gallon of milk ($3.49) and some butter ($4.99) and then stayed for lunch. Chef Matt - I hope I didn't forget his name!- introduced himself while we were buying milk and we decided to stay for lunch . The kids split a kid's cheeseburger and I had the chicken salad - sandwich. It was fantastic!! \n\nAfter lunch we visited the baby cows, the goats, and then stopped and had a big glass of flavored milk ($1 each - grape for my 2 yr old daughter and chocolate for my 4 yr old son). \n\nEveryone is so nice here - my children LOVED it and did not want to leave. Worth the 40-ish minute drive out there. (We live in South Phoenix)", "type": "review", "business_id": "hwafU4w-IYkIRZa_9LTupg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2_Npj9QcohAoSZBaqiOqZA", "review_id": "Wi_z-YjQbquzL85y2-IxUg", "stars": 4, "date": "2012-09-26", "text": "I tried this place on a recommendation of a friend. Their frozen yogurt is really good. The peanut butter flavor was rich and creamy. They also had a wide array of toppings. The only downfall is they were a bit pricey. I had the small cup whcich was not even full but once it was weighed cost almost 4 dollars. I would still say very yummy and worth trying.", "type": "review", "business_id": "O_5RlNmiyBRzwGZAwfsZFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YgsnAwvPAePG5sjhcrLr1Q", "review_id": "XRQN9hl5ZX4jbxirfpN5BQ", "stars": 4, "date": "2010-05-26", "text": "Good, Cheap, Chinese and Food - add Buffett and it is explains why Outlook has recurring event function. I would be tempted to live off the $3.50 lunch specials, but I would burn up my savings with time and gas.\n\nCombos come with rice, egg roll, crab puff and chicken wing.\nA la Carte comes with soup, rice, and fortune cookie (Take out = no soup)\n\nMenu does not have some standards, i.e., almond chicken - but cashew is certainly acceptable.\nSauce abundant but thin, flavors are not bold, and \"spicy\" is not. However, value for $ is substantial and got plenty of spicy with addition of hot oil.\n\nThey are tucked into a strip mall with little to no visibility. My sister has lived less than a mile from there for years and did not know it was there. I would not have found this place without Yelp -Thank You.", "type": "review", "business_id": "R7YlKfLpoFDAJQB9hBcQJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SCUnkjWh4ey1WhYBIDRTGA", "review_id": "1341BsjjROKjT6cDF2xSqw", "stars": 5, "date": "2012-04-07", "text": "We use yelp.com anytime we are out of town and want a great place to eat. We weren't disappointed again...Ramiro's is great...generous portions, great prices, huge selection...you can even get most everything ala carte. We were visiting my parents and told them about Ramiro's. They said they have driven by many, many times...not any more! I had the biggest, best carnitas chimichanga I have ever seen. Can't wait to come back and have the taco salad. Don't drive by this place!", "type": "review", "business_id": "T80zdmoHleRsTbRXJBLoFA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "-JCz23DksK1RarHxp03-Gw", "review_id": "CT5dx_CIhO0Iq6NrSljLiA", "stars": 5, "date": "2012-12-12", "text": "The best Gelato ever...EVER!!! Yeah I said it. What? Seriously, the best customer service I've experienced since the '70s. By the time I ordered I was nearly full because they encourage customers to try everything - easily 20 different favors to sample and choose from. My favorites are the dark chocolate, salted caramel, peach champagne, and black cherry. We've visited multiple times and have never been disappointed - same quality service and deliciousness every time. My kids referred them to a friend and he owner gave my kids free gelato on their next visit - they appreciate their customers. If your looking for your next vice, check this place out!", "type": "review", "business_id": "8HQ8clouLGgee99KkR4vXA"} +{"votes": {"funny": 5, "useful": 6, "cool": 5}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "fjkE-nCbG-BU0Z1w2kHkew", "stars": 3, "date": "2009-10-16", "text": "10/12\n\nFriendly and quick, although I had to point out a few spots where extra attention was needed (tar on one side was initially observed as paint scratch, until I told them to check it again). I also found a few spots that could've used another one or two swipes of the towel, and the sunglass case was never touched and thus dirty. \n\nBe sure to visit during the early part of the week, and not on the weekend to grab the best deals- I paid $100 for both interior and exterior detailing. Am so happy with the overall results- the spots between the bottom of my car seats and the floor are completely clean of caked-on food debris (I am living in the middle of the desert, after all) from a few mishaps throughout the years!", "type": "review", "business_id": "vvWx1pJvr3QuFb7IW4-KGw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "aIUefJBhBQ_UZEzryL6b8A", "review_id": "q94gMPm3YrwvA9hSIJgJhQ", "stars": 1, "date": "2012-07-03", "text": "I'm sorry. You're too busy to look up my club card information? Too busy too push the button to do the search, enter my phone number and click ok?\n\nI took the time once upon whenever to sign up for your card. And now, you can't take 5 seconds to look it up for me? Let me clue you in, the cashiers here have always looked it up. It always takes 5-10 seconds at most! Great customer service. Insert sarcasm here for the uneducated.\n\nOther Big Lots this hasn't been a problem. Just the one.", "type": "review", "business_id": "BJBzsvaCQ2mo8CWfQ1jPiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vUn91MER1jV-jT4crd3pOg", "review_id": "vl_qHmXSWAyyKZSqinoVnQ", "stars": 4, "date": "2011-01-26", "text": "I hate Thai food and I'm not a huge fan of curry but this place has changed my mind. Very reasonably priced and always a great option at lunch because they handle the traffic very well. Not only am I back on the Thai bandwagon but my favorite dish is the green curry seafood.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "QQ6R2bbgoWQRhv7lxdKmVA", "review_id": "tFIWgYyjTWztYFm2jvlO5w", "stars": 5, "date": "2012-12-17", "text": "Still a great place to eat. A little further from Los Tacos in AJ (home for me) since Los Tacos closed, i frequent here more often..\n\nIt is good.. I want to add that their green corn tamales are GREAT! \n\ntheir Green sauce seems to be a popular choice here on YELP's reviews. I like it a lot too!\n\nI plan to order more tamales for the holidays! hurrah!", "type": "review", "business_id": "Rg4dHuszzF0Mb4yqtoHSiA"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "BjwXX-sChcjx2E55B_7rXg", "review_id": "jsTH2unIBSGDUvWfmZxxLw", "stars": 4, "date": "2011-09-10", "text": "Anyone who asks, \"are you a vegan to lose weight?\" should come to Green and eat their words. And everything else.\n\nIn fact, I usually end up at Green with non-vegetarian friends because they claim that it's \"Food you can eat that I actually like.\" Every dish is addictive, flavorful, saucy, and filling. Classic hits include the chicken thai peanut bowl, the singapore tofu bowl (although the mock meats are a shame to miss out on), the vegan BBQ chicken sammich (I just watched a carnivorous friend down this with the delight and voracity of a young velociraptor), and then there are the eternally awesome specials.\n\nEven though you'll probably be stuffed post-meal... make room for dessert. It's mind over matter anyway. Order a Tsoynami - they're like McFlurries with vegan ice cream and epic swirl ins. Standouts include Tsoynamis filled with anything from frozen chocolate fudge, bananas, kitkats, hazlenut brittle, mint oreos and more.\n\nOn a another note, this is also the only strictly vegan restaurant in the Tempe/Scottsdale area with a lively, hip atmosphere. Even if you love steak more than anything in the world (and there are steak po'boys, might I add) at least stop by for a chocolate chip cookie and check out the awesomeness of the place.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "2W8kTEcYhkSL2yYSyHxOcw", "review_id": "LsRpL2j4BnVLGt0PXzusyw", "stars": 1, "date": "2009-05-07", "text": "After landing in PHX but before embarking on a 2.5 hour drive to Flagstaff, i thought Wendy's would be a safe and easy place to grab some food on the go...well, I was wrong.\n\n* Chicken Nuggets: dry, freezer-burned meat with extra hard double-fried shell.\n\n* French Fries: super hot, crunchy, over-fried french-fry-shaped fry-shells. so hard and crunchy that i thought i was eating french-fry chips.\n\n* Junior Bacon Cheese Burger: bacon and burger meat both tasted dehydrated.\n\nGuess what, last thing I want after a 4hr flight and landing in 100+ weather is hot, dry, crunchy, tasteless food!", "type": "review", "business_id": "g4Eit1EeeEGhTVik6AWYsA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "tHHLBvbNg1SM3_VVTLvZFQ", "stars": 3, "date": "2010-09-10", "text": "Luci's is a good neighborhood spot to buy your health foods, drop in for a coffee or fresh made baked good, or pick up some beer or frozen meat on the way home. I agree with Pamela's sentiment about it being a marriage of TJ's and Hi-Health with AJ's prices. \n\nI've had a couple of bad cups of coffee here, but in the 10-12 times I've been they have always been very nice and have remedied any problem very quickly. If it wasn't on my route, I may not stop here much though. Trader Joe's and Hi-Health are right next door to each other at 20/Camelback and you can save a ton of money if you do it that way!", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "i6Fv6h9lUdjzks3_L6sImw", "stars": 4, "date": "2008-10-30", "text": "I must say that this place was nothing like I expected when I read that we finally had an authentic Parisian patisserie in the Valley, owned by two REAL PARISIANS! I envisioned a warm, casual shop with fresh croissants, danishes, cakes, etc. like the places I experienced in Paris. Needless to say my expectations were way off - I should have been thinking less mom-and-pop Paris bake-shop and more Payard Patisserie, with delicate pastry works of art in a stark, hip space. We shared two desserts, a blueberry something-or-other and a lemon tart, and both were fantastic! So while it's a little more upscale 8th Arrondissement than casual 5th, it's still authentic Paris in Scottsdale, and who doesn't love that?!", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "iwZ_7QuZ1tzT6pIZmOlDQg", "review_id": "B1ECq1VW4jwBJ-drdaa9MQ", "stars": 3, "date": "2011-10-24", "text": "Agree with most posters about the setup - left much to be desired.\n\nI was smart and arrived BEFORE 4:00 P.M. so I could jump in early for some short and FAST lines. My 15-yr-old son was with me, and he's a fairly picky eater, which was one reason I brought him - so he could see that there are other foods he might like if he TRIED them.\n\nI got a lot of food between 4:00 and 4:30, when the lines were short. I probably got to try 10 trucks before we left at 5:07. We went back to some trucks more than twice or three times when we found something we liked.\n\nMy advice for future events:\n\n1. Help the trucks deliver the samples FASTER. Not sure how - maybe get them an extra staff member? But the samples on some trucks were coming SLOWLY, so that needs to improve.\n\n2. Better location, maybe not on dirt, and maybe a little larger. Once the lines got up to 20-30 people, the going was CRAMPED and it was taking a long time to get your samples.\n\n3. Maybe a lower price for tickets? Seemed kinda steep for the amount of food each person received.\n\nAll in all, I enjoyed the FOOD, but the rest of the logistics, not so much.", "type": "review", "business_id": "-5EWgRkudDlcCbQSIL_twA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tL_QF_iIGoaPd-otIGa22A", "review_id": "24B43Y-wUOaCk-wfPtOMcg", "stars": 5, "date": "2011-02-28", "text": "I was skeptical when I kept hearing how amazing Jimmy John's is. So I went in, and found my new favorite sandwich spot! The inside was very noisey, but I liked the atmosphere. The bread had an awesome fresh taste, and when I inquired about the difference between 2 sandwiches, the cashier was very helpful.", "type": "review", "business_id": "0NhcabzEyeCIMsNCPOX-MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DghMl81bONCh5ELnrgn4Fw", "review_id": "cUBlIaoTEMWtPmULbhAw-A", "stars": 1, "date": "2010-09-06", "text": "Walked in during late lunch hour. Did not get acknowledged for about 5 mins. When I finally got sat down, and served my salad, I found a hair in it. Got no apology. Just a sigh firm the waitress when she took it away. You can't pay me to go back here. The waiters are rude.", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "sgANmBtbAr1n99zlNzU99g", "review_id": "MxVbXiyamTMUSeJOb4hR6g", "stars": 3, "date": "2012-06-11", "text": "I have been to this place twice and I have had both extremes. \n\nThe Good: Shannon, California Sea Bass, Michelle (Manager's) Customer Service\nThe Bad: Fried Calamari, Our last waiter's breath\n\nThe first visit to this establishment was our encounter with Shannon. Shannon was a pure delight as our waitress. She made our first visit absolutely fun. My wife had a tilapia dish that she was less than enamored with but I had the California Sea Bass and that tasted very good. In fact, it was so good that I regretted not getting a glass of Chardonnay to go with it. The fish had a very nice texture and taste.\n\nOur second visit was our first encounter with the fried calamari. As our guest so eloquently said, \"If this was my first impression of fried calamari, I would not have liked it.\" The calamari was overcooked and there was so much oil running on the plate. We called this issue to Michelle's attention and she agreed 100% that the dish was not prepared properly. She gave us a coupon to come back there and eat at any time. \n\nHowever, our waiter's breath was another story. Whenever he spoke, I could smell his pungent (trust me, a lot better than what I really wanted to say) breath to the point I almost donned a gas mask. There are very few things that would cause me to lose my appetite. His malodorous breath and the calamari with more grease than a Jiffy Lube accomplished the feat.", "type": "review", "business_id": "rK9wysMZ3nh6b6dxiG-l_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "xXnZipKgmxQgrPjTXNm60w", "stars": 4, "date": "2007-03-01", "text": "I suck at bowling, and yet I love it. I love that I can like something some consider a sport. I love that it's totally ok that you aren't any good. A group of people who aren't good at something can have a great time doing it talking about how bad they are. \n\nThis is my designated bowling center. Sure, we go lots of other places, but this is always a solid central location. Plus, the fact that it's so close to the Biz is a definite bonus! (I've had several years of \"Bowling & Boogie\" themed Birthdays...I'm a geek, but I'm ok with that.)\n\nThough I've always called ahead just in case, I've never had trouble getting a lane or two here. The food is fairly decent too in a way that only bowling alley food can be. And what the heck is it about Bowling Alley bars??? My friend has a theory that the better the drinks the more games you'll play - both to keep drinking and then to sober up before you go home. \n\nThe facilities are a bit older, and you'll find a few areas that could use a bit of freshening up from years of wear, but I don't mind that kind of thing so much in a bowling alley. Hopefully you won't either.", "type": "review", "business_id": "qjXtirU34PdTjPVbup8cTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hWgFZPKXUj0bPCfDLwZHjQ", "review_id": "5pgtrjOVZaU1j8Fa7agmPw", "stars": 5, "date": "2010-08-21", "text": "I used Full Circle Auto Body after my daughter's car was in an accident. They were very knowledgable and helpful about insurance issues and got the car repaired quickly. They post progress of your vehicle with photos on their website which is so cool. I'll definitely use them again if the occassion arises.", "type": "review", "business_id": "VbsYTiNA9LCuUjnuiubjRQ"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "usQTOj7LQ9v0Fl98gRa3Iw", "review_id": "Y1Qei2UVrpwRTL_C23LGtA", "stars": 3, "date": "2011-02-22", "text": "Monday evening at 5:30p....\nThe streets are empty....we walk into the bar looking for a Happy Hour beer while we wait for a Yelp event to get started a few doors down. Noticing a couple of people on the sidewalk we expected more people inside....\n*crickets chirping* [You'd hear them if it wasn't for a few of the TVs that had their volume turned up.] The interior was welcoming and clean...but why are we the only ones here...\n\nThe bartender was rather indifferent and sauntered over like he was wishing he could be somewhere else too. We had a leisurely beer and tabbed out....I may have to check out this place again if I find myself in the area.", "type": "review", "business_id": "U-0hMfagGtjYZCYB1i0WNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-ku2SB6n6TOhp80Q4A1LRw", "review_id": "SHSvzrbBvqveLtSB-VHxxg", "stars": 2, "date": "2012-01-31", "text": "This place not recommend, food was cold, rice was soggy, lettuce wilted, and beans runny.", "type": "review", "business_id": "o2vKya6WSNcMNTxAcJsF1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iwdWUJMmZAMD_Y3YRGSg0A", "review_id": "Lw6ShzMb--i4Ezgpzih1og", "stars": 4, "date": "2011-03-29", "text": "A great place to experience some unique and innovative dishes. The Stetson Chop, of course, is the highlight of my Cowboy Ciao experience, as it tends to be for many others. But I've also had good luck trying other things on their menu, such as the Mini Mushroom Pan Fry, a less expensive alternative to the entree version.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cgoX_o37gaOm2S0kMtqORQ", "review_id": "cB8rE80vPUn8CqLx5nd7kA", "stars": 5, "date": "2012-07-10", "text": "I am basing this review solely on the Cauliflower Soup. Holy Heaven in a cup. We had Zupas cater lunch at the office, so I can't speak to the actual restaurant. But man, I wish I had a bucket of that soup.", "type": "review", "business_id": "0lEp4vISRmOXa8Xz2pWhbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IwiupaUMeltnd0a9Cp15tA", "review_id": "7w8lcy90ulaKtWK4CSbdrg", "stars": 4, "date": "2011-03-17", "text": "I had southwest salad. red velvet cheesecake mmmmmmm", "type": "review", "business_id": "ADJIoHN3uLx-JalYl3r3Dw"} +{"votes": {"funny": 10, "useful": 11, "cool": 10}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "RalSy3zqn1Ta27A3JRRotw", "stars": 5, "date": "2011-08-22", "text": "When a man falls in love, it's a special thing. Not because his calloused hands and heart are finally softening. Not even because he has found something that completes his very living soul. \n\nIt's special because he is simply, and utterly....happy.\n\nLadies and Gentleman of Yelp....I have found the pizza that makes me happy.\n\nI heard all the hype...\"best pizza in the country\", \"Oprah says it's the best\", \"The Food Network hypes it up\", \"Chris Bianco learned how to make pizza from Jesus\". Ok, I made up the last one.\n\nMy friend and pizza aficionado, Lance has been known to drive in from Los Angeles...just for this pizza, and then he would drive home. Sometimes, he'd even fly in. It had to be good, right? \n\nTonight, I chose Pizzeria Bianco for my birthday dinner because of the hype. I had made a pathetic attempt to dine here once, but myself and the individual I was with, we both were intimidated by the 3 hour wait. \n\nIs any pizza worth three hours? That's a personal judgment call. That night, I ended up dining at Nobuo, across the path....and it was a nice meal.\n\nI digress. I've been preparing for this trip. I read up on various press articles, and discovered that as of last week, they are open for lunch AND Mondays! Perfect. \n\nTonight, I dined with my parents. My favorite dining companions. \n\nWe sat down in the very intimate dining space. No wait at all. Perhaps, people don't know that they are open on Mondays. Fine by me.\n\nThe decor is nice. Simple, with a classic cucina feel. The brick oven is the star of this place. Clearly.\n\nWe ordered some bread to get started. It came with a little cup of high end olive oil. Fantastic! The crust was crisp, and the bread was chewy to the point where you can't help but smile when you eat this.\n\nThe pizza is phenomenal. We ordered two pizzas (for three people). One was half Rosa and half Margherita, the other was the Biancoverde. This way we were able to try three different kinds of pizza .\nAll three styles were phenomenal. The winner of the three was the Margherita. The tomato sauce doesn't overpower, the mozzarella melts like a dream, and a hint of basil. \n\nThe Rosa was unique, and also delicious. The Arizona pistachios take some getting used to, but pairs well with the red onion. \n\nThe Biancoverde was much more complex. Definitely a hearty pizza because of the ricotta cheese. Very tasty. It's topped with arugala, so you will get a nice earthy, and loud flavor. \n\nUsually when I eat pizza, I take a bite of the crust, and then I leave the rest. Not here. I went through the entire pizza slice because it's perfect. Chewy, crispy, and full of happy!\n\nTake it from me....this place is worth the hype. Look at the reviews from other Yelpers. Even the picky ones love this place.\n\nMaybe it's true. Maybe Chris Bianco did learn how to make pizza from Jesus. Sure as hell tastes like it.\n\nNow if you are wondering about the other stuff, it was also a five star experience: staff friendly and attentive, and the bathrooms are spotless.\n\nWorth the 3 hour wait? YES. Bring all your friends here? YES. Will I guarantee the awesome? YES.\n\n#300", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dhhhnpr_elfbD1xjMfAEjg", "review_id": "NHCfKP1O9G5nuJtutlzgHw", "stars": 5, "date": "2011-05-26", "text": "I'm usually not a fan of indoor tanning but post baby I felt like I needed a little pick me up color. I chose this place because of their good prices- 3 tans in a lay down bed for 17 dollars. The staff is so amazing and friendly and I got a nice brown tint after a couple of sessions.", "type": "review", "business_id": "2FiLqh18ypsamf2vZOj7eA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W5Pd_GmMem2LdHZkoxQCtw", "review_id": "3RQF9CbMHUquwgr1YqAiRQ", "stars": 2, "date": "2011-12-30", "text": "I have been coming to xtreme bean for several years and it is still a generally good place. the coffee is average or below, the tea selection is good, the atmosphere is ok but same old. The current staff is incredibly immature and act like children yelling, and even barking, at high decibels. I've never seen anything like it anywhere. I'll have to think twice about coming back if this continues.", "type": "review", "business_id": "IoFggnoj1P4EcmNEP2K6Ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bucwbyP1wOxRJe_RwmmAqw", "review_id": "f1jNO3ep2cxzJvigO02sYQ", "stars": 4, "date": "2011-03-31", "text": "This place is GREAT! I must have passed it a million times without knowing that it was tucked away in the complex. The sushi was awesome, the drinks were very reasonabally priced, we loved the decor and the atmosphere was very nice, kinda romantic if you are seated in the back away from the sushi bar. The service was great! We will definitely be going back.", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KFMF49A-B2ywzv8qcfoTOA", "review_id": "CdB-1aexiOMcz7Yf7VQ__Q", "stars": 5, "date": "2012-07-12", "text": "I love their food. Everything has been delicious, though my favorite is \"Bahn Mi\" inspired fish sandwich. Get it with a side of kale salad!", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FpCmGLWHe5Y-kDS7ZYaF5w", "review_id": "HP7I5z-axGcb1i4kZTHtng", "stars": 5, "date": "2011-03-22", "text": "I crave their jalapeno fried rice. AMAZING!", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SwFbQrbTboesoC9hUb4vOw", "review_id": "iGP6QWXXBflfRxZ4q_m6jw", "stars": 2, "date": "2010-08-25", "text": "Not good.\nVery bland Thai food, ugh, the two words do not belong together, bland and Thai!\nThe Peanut sauce was the worst ever.\nThe Pad Thai and Tom Ka Gai soup were blech.\nFresh rolls large but no flavor.\nThe service was decent though.\nJust disappointing.", "type": "review", "business_id": "VbXy3tH5RAu7HjT7VeMMgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HUjxOju8G9eB-h4RejLhTg", "review_id": "lDX0_aWKJ-0MGazcusrYmA", "stars": 4, "date": "2012-08-19", "text": "Charming cafe and it doesn't matter what you order. Breakfast - Lunch - you can't miss.", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "IAOCwB3c2c_-6_Y5rAjXIg", "review_id": "aC5FmmKumiHiDnL033gEMg", "stars": 5, "date": "2011-03-30", "text": "had a \"cap steak\" for the first time. Best steak i have ever had. Would recommend to anyone.", "type": "review", "business_id": "8m08a9xJKmANwmeuR-0bPA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "0LOQYfwdFetaQ-gc6h9NLA", "review_id": "UHahF56Mk28guTkHPhzwcQ", "stars": 5, "date": "2010-05-20", "text": "this place is amazing! So many flavors to choose from!!!! I LOVE this place!!!!", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bsr5z13fberCAGTsshR8Eg", "review_id": "fMlf7I_EdMdFfSphMgy2Xw", "stars": 4, "date": "2009-05-10", "text": "Went here with some friends and the pizza was pretty good. The ricotta cheese and tomato toppings were fresh and clean and very tasty. However, what I remember is a peachy-vanilla-martini which definitely got me a little tipsy, even before I finished it! But I'm also a lightweight. \n\nThe atmosphere was pretty casual and very well-lit. I loved their ceiling-high windows. Their service was attentive and pretty quick. 4 stars.", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "fxtsDmzjap5mkad2kecERQ", "review_id": "3XFWo6sM6Jf4_-7FfKEm_w", "stars": 5, "date": "2012-03-21", "text": "Postino's in Gilbert was stunning! Amazing outdoor/indoor chic atmosphere. Food and wine were excellent as expected! What another great addition to the Postino family! Loved it!!!!!", "type": "review", "business_id": "ss5gVggeSmAgMUeL65UvYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E9wKeRLWGpQxbKlc0zLlCg", "review_id": "R6TnUHrLdpmFTQugfOj9OA", "stars": 1, "date": "2012-11-03", "text": "Absolutely waste of time & space is this establishment. Don't bother checking in with the host to be seated as I saw many people just seat themselves although there was a 20 min wait for others, the staff rude, uncaring & could possibly be where all the servers go that can't get a job in any other Resteraunt. A complete disgrace & I would never give such a place my hard earned money, I suggest you do the same.", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FL1xj5qKFZkU5GXVBj5TUA", "review_id": "gzVngqZykXoiJ5edm4cyHw", "stars": 4, "date": "2010-01-04", "text": "Sure the food is good, but out of my last 20 take out orders they got it right maybe once. The people making the food look so high you would think you were at Cheba Hut, but I just love that damn Broccoli and Wisconsin Cheese soup! Their fresh dark rye bread is always great.\n\nI enjoy the Italian quite a bit and the wife LOVES their tuna salad. Great healthy place for food if they aren't too high to get your order right.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "EoTooNBcxu0Hy0-XeZI8aw", "review_id": "5cEq7_Zih0WOYjFsEX1sfw", "stars": 3, "date": "2011-12-04", "text": "When we lived in AZ, my biggest regret was not coming here. I've always wanted to try it.\n\nDoing our road tripping this week, I was able to. \n\nParking was easy for a weekday...we went in - through the wrong door. Oops. The server who was stocking things seemed surprised, but rolled with it. She said we could sit anywhere we wanted (we were a party of three). We chose a table for 6 so we could spread out a little and not be so squished. She immediately snapped, \"Not that - it's for 6 people.\" I almost said, \"Then don't tell us we can sit wherever we want...\" I refrained. That surly girl nearly spoiled it, but luckily our server saved the day.\n\nI saw the hot dog...you know, the 22 inch insane monster on the menu. I split it with my friend. We didn't even finish it. It was delicious, if a bit salty. I knew it was a salt overload because in under an hour my fingers were swollen. :( Oh salt, why must I love you yet be so affected by you?\n\nWe didn't finish it, but definitely enjoyed it. If I get this again when in town, I'll get it plain and still split it with a friend.", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 5, "useful": 6, "cool": 5}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "bngFuVhsD_uQTJWKAM5rig", "stars": 4, "date": "2008-08-06", "text": "It seems totally unbelievable that, not only did I hang out for more than an hour at a mall, but an outside one at that in 115-degree heat. I attribute my ability to withstand these two unfavorable conditions to two things:\n\nBonnie \nTea Infusion \n \n\nIt was Bonnie's choice to grab some drinks at what she described as a \"great, independently owned tea shop\" located at Tempe Marketplace. I'm not a tea connoisseur by any means, and I generally distrust fads (i.e., this silly-sounding thing called \"boba\" tea), but I agreed cause if Bonnie likes it, it's gotta be worth checking out, right? \n\n\nParking wasn't too much of a hassle on a Sunday afternoon, and we surprisingly got a space close to an entrance to the \"District,\" just outside of Barnes and Noble. Inside, the shop looked much like a Starbucks - and I don't mean to imply that it was uninspired or anything. It was clean, modern and consisted of a long counter behind which two employees busily hand-mixed tea and smoothie concoctions, along with a few tables/chairs. \n\n\nThe menu was extensive and separated into \"black,\" \"green\" and \"white\" teas, any of which I could get hot or cold...I think. I picked the tropics white in iced form, and B got my second choice, a peach mix white. Both were pretty delicious. There was also a selection of sandwiches and snacks that I did not sample - next time. I also ran into a good friend there who was delighted by the fact that they had this mystical \"boba,\" and so ordered a Chai-type version with blueberry-sized and -shaped balls floating on the bottom, and an oversized straw to facilitate sucking them up along with the drink. I tried one boba ball and it was gelatinous and chewy - not at all like what I expected - and an odd sensation, but I would totally order one the next time I'm in. \n\n\nBeing in the District and flanked by stores like \"Hottie Inc.\" and Guess, there were several teens inside hanging out in large numbers - boo. So, we decided to sit outside for as long as we could stand it. I was surprised to find that the several shaded tables and misters made for a pretty comfortable environment, and we hung out for a good hour or so before I got so sweaty I have to get mobile. \n\n\nSo, in summary, I would totally come back. Probably before or after a movie, to grab a drink and support an independent store among a mecca of chain retail. Plus, right across the way there is an ASU art gallery (closed Sunday and Monday) that we peeked into and actually cool, interesting sculpture art by local artist and asu instructor David Young. \n\n\nTouche, the District at Tempe Marketplace - I have to say I am impressed!", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 4, "useful": 1, "cool": 0}, "user_id": "AdVBY7Ow_ICQLfVEbf_nTw", "review_id": "jHVCK9VLFoedinfGBUHlAA", "stars": 4, "date": "2009-12-16", "text": "yo, bro, let's compare forearm tats and drink some New Castle. P.S. everyone saw you bif it on your fixie as you rolled up to the bike racks.\n\nfor real, most predictable crowd ever!!!!\n\nI can talk mad shit on this place all night long, but when it comes down to it, I love it. The location lends to its patrons- alternative college students living in the only historic (PHX like) neighborhood in Tempe. Plus it is right next to HTC, so everyone is sure to be rocking the flyest of -50 gauges. puke.\n\nbut.......the charm of casey's is in the cats. they are cool and roam around. Also, the best patio ever, and lots of room. Don't go inside unless you can't get a drink b/ your waitress forgot about you (which is most likely what happened). Or if you like old dudes 65+ eyefucking the shit outta you be my guest. Also, one night after I was there, the next morning someone had charged $2000+ on my credit card for an ad in New Times. shady......or recession? I think I know how this happened, they leave your card within an arms reach from the bar inside, face-up so any creeper with 20/20 can get a peek and thief you out of your identity and money, or maybe it was an inside job???\n\nbut I really like this place and still have \"casey's nights\" even though jimmy eat world sucks and I live in phoenix. \n\noh yeah, this place is haunted too....and if you are a girl do not go pee in the grotto.gross.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2HMJBY7WFiotdNCDpFGUIg", "review_id": "wkzQy1F12SSWSlaRpaAaXw", "stars": 4, "date": "2011-10-19", "text": "Great Happy Hour. Get the TACO BASKET~!\nThursday-Mexican Beer $3", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "azShrq85WGDDiOyQDnkSdw", "stars": 5, "date": "2007-06-16", "text": "ADORABLE PLACE!\n\nWraps, Pastas, Salads, Pizza, Gelato, Pastries, Sodas and Such\n\n\nSuper darling place that makes you feel so comfortable. Looks like they have computers to use (i don't know if there is a charge). The inside is precious, decorated to the T-- not a single spot was missed. Our food was placed on a silver tray and handed over to us to sit in a comfy booth and enjoy our wraps and pizza. It was really good. The place is just so darn adorable; it's hard to concentrate on the food when everything was so POSH while you NOSH. Get it?", "type": "review", "business_id": "J-ZZcapKrlAlq0h0zAnWKw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OHaNglacPVt189iLDIyXbg", "review_id": "MCiznZVa7bdIb1FpDqEVrQ", "stars": 4, "date": "2012-01-11", "text": "Such a great oriental market! Unusual fresh produce and aisles of every kind of noodle and sauce. Fresh fish. The only disappointment is we read on Yelp that they had sushi grade fish and they DO NOT. Boo! The only thing they had was frozen smoked eel (Unagi). We will definitely shop there often and it was a fun trip for the grandkids-", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a09ENYogqRn0sQ8J2D_rng", "review_id": "qyJGEFE2APx8DfBoXLKCtg", "stars": 5, "date": "2012-10-17", "text": "I come here at least 3 or 4 times a month. Best Asian food in Phoenix however it is now closed", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "eXiHAxrnvE64j4wTEOTEMQ", "review_id": "RQWa8LbLKuNUtrGO8101MQ", "stars": 5, "date": "2011-09-05", "text": "We love Roys. The service is usually outstanding and the food is wonderful.The ambience is nice and usually pretty hopping on a Saturday. My water glass is constantly being refilled because the people Roy's employ are totally on the ball. We have dined here 8+ times over the past 2 years and have never had a mediocre meal. They also have a delicious vegetarian menu if you ask your server. The wine list is comprehensive and they are known for their creative cocktails.We have dined here on both special occasions and regular Saturday nights. It is kind of like being on vacation when we go since it is located in the gorgeous JW Marriott. ...definitely in my top three Phoenix area restaurants.", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gdNJzMx9duSZCBdiU1QKFg", "review_id": "0g2uOcC07ilW6n_gX63KQA", "stars": 5, "date": "2012-10-09", "text": "Stopped in for the first time at PV Burger Company tonight. It was quiet, only one table when I got there around 6:20pm. Ordered a bacon havarti burger with fries and a coke; it came out to just over 9 bucks. \n\nThe burger came with lettuce, tomato, cucumber (???), pickled red onions, and thousand island. It was DELICIOUS. Beautifully toasted bun, great char on the meat. The pickled onions were a nice touch. The fries were skinny and crispy and had seasoned salt, which brings me back to being a kid and getting fries at the food court in the mall (good memories). I got a refill on my coke before I left, so I don't know what another reviewer was talking about when they said there are no refills on sodas. I asked and it was no problem.\n\nMy only gripe is that after I had ordered and sat down to wait for my food, a couple of guys came in and the guy at the counter immediately handed them paper menus (with actual descriptions of the menu items I'm sure, unlike the chalkboard on the wall), which I would have liked. I probably would have gotten an add-on for my burger if he had given me a paper menu when I was at the counter. Oh well, now I know for next time, because there will definitely be a next time in the near future :)", "type": "review", "business_id": "pAHUC05ceak48e745i6G4g"} +{"votes": {"funny": 4, "useful": 7, "cool": 0}, "user_id": "LF4zOXPFVdq7Xglb5yVcYw", "review_id": "WI4PbBLUGvL6PXrsPoyPgw", "stars": 1, "date": "2012-09-02", "text": "IF YOU HAVE KIDS YOU MUST READ!!!\nMy husband and I have never been more insulted at a restaurant than tonight at the Hillstone Restaurant (Biltmore).\nThis is the same restaurant group that includes Bandera and Houston's. \n\nWe deliberately went out early-- at 5pm -- with another couple and our son. He started to fuss on and off during dinner. Mind you the restaurant was already noisy when the GM Miranda Geranios instructed us to leave; other patrons were complaining. That was news to us- and we've seen far worse outbursts in the past from children. Ironically, our son at that moment was playing happily with the other couple when she rudely asserted herself. \n\nWe were in the middle of dinner and to add insult to injury, she didn't even offer to compensate us for a future visit without our little guy. Just go home without dinner and pay the bill. Of course, she herself has no children. \nTo ask a repeat customer to leave is absolutely disgusting. We will never visit any of their establishments again and wanted to share our unfortunate experience with our friends who also know the challenges of having a family.", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JCbnDoUBsUpryA3xWa3Urg", "review_id": "fCeVKfgnC20qlgXOWMRkrQ", "stars": 1, "date": "2008-08-09", "text": "07/09/2008 \nJust went there last week for the first, and last, time. I read the good reviews, so I was expecting much more. I am a first generation American; both my parents were German and came over in their 20's. I lived there for a few years, have eaten German food all my life, and have been to many German restaurants in many different states over the years. I really wanted to like this place, as there are not many German establishments around here, but this place was terrible! We were the only people in the place at 2pm, and still had horrible service. ??? We were ignored much of the time and then when the waitress did come, she would forget things we had asked her for. The waitress didn't understand German, as in the German MENU options, so I ordered from the menu using the English translations, and she was still confused. I had to POINT at the options. YES, there really is CUCUMBER salad on the menu. The bread was stale, the schnitzel was hard, there was a hair in my cucumber salad and my potato pancakes were just ...disgusting. They also gave me fries instead of the usual sides???? I am guessing that they just reheated leftovers from the dinner the night before, because that is exactly what it tasted like. Plus, I actually got charged the wrong prices - like lunch salad was 3.50, but showed up on my bill as 5.00, etc. I was too frustrated to even bring it up and just left, disappointed. Waste of time and money, I will not return. Maybe at dinner time things are better, but DO NOT EVEN TRY THE LUNCH! Yuck.\nOh, and the website is outdated- wrong prices and discontinued menu items.", "type": "review", "business_id": "I_N5b-CA6j0TFMpy1xYKdQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "uc04YCxFi1ZUj5N9mfiUyQ", "review_id": "nzsRXoX2fsa8gYTeBK_wJw", "stars": 4, "date": "2011-09-17", "text": "This place was real chill last night. I had been to the one in Downtown Phoenix quite a few times before and wasn't all to impressed, but this location is a whole 'nother animal.\n\nPlenty of space to do you.\n\nSomething so rare in cramped up tiny Scottsdale. Crowd was alright and the bartenders we're super nice. Might have to swing through the next time I hit up Scottsdale.", "type": "review", "business_id": "kgPjOtSeMd3CMdbnEmHbeQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "vhGwvm7sCXThBqJ2YQS13A", "review_id": "4cJjMRcRBDVMyWhNq0jA7A", "stars": 1, "date": "2012-04-04", "text": "I keep wanting to like this place. I want to support a local business, and yet....\n\nLast year I took my two boys there after a theater performance (Greasepaint! Excellent!), and after we placed our orders for lunch, I took out our SET game (it's a card game that does not use a traditional deck - great fun). WIthin moments, the server was back at our table. \"You can't do that.\" \"What? Play cards? It's not gambling.\" (Maybe I was wrong, but living here, you start to assume that an objection to something must be religion based). \"The owners don't allow it.\" \"They don't allow it? It's a matching game.\" \"No. You'll have to put it away.\"\n\nNow. I would understand not wanting us to sit and play cards if we'd finished eating and were just holding a table (assuming it was busy). However, this was during the gap between ordering and eating. I KNOW I should've just left then. Instead, I made my kids happy and we stayed for lunch (and ice cream!). \n\nA couple months ago I (foolishly) decided to try again. Didn't bother with the cards this time. The lousy thing this time was the mold on my son's bread. They DID remove the sandwich from the bill, but eish. \n\nI'd kind of like the \"Restaurant Impossible\" guy to come in here and give it an overhaul. I don't mind the nostalgia stuff, but the place does need a solid going over.", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "OEIoHR0ERrCqshpQ8qoV1w", "review_id": "LMBgdKmFUBWS5ogvS05jqA", "stars": 1, "date": "2012-05-17", "text": "This place needs to close their doors, get their act together, and then reopen. The atmosphere is boring and it is obvious that they did the bare minimum coverup from the last restaurant. The food is horribly boring and has no flavor. I ordered the chicken and avocado pizza and it literally tasted like nothing! We also got the nachos (which was actually just a plate of chips with one tiny pinch of cheese and soggy beef). In addition, the server didn't put in my order for my pizza, hardly apologized and then brought it to me 30 minutes after my friends were done eating. One of my friends ordered the ahi tuna and it was switched with someone else's special order so that had to go back to the kitchen and be reordered as well. The only thing I liked was the beer, and that too took forever and I had to remind my server several times to get me a refill. Way to much effort to get food and drink that is sub par at best.", "type": "review", "business_id": "MLAnvEcvDfOWELHUN_0xEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W4fBHIRoNh_qAJwORXKPpg", "review_id": "Q3rfRCoSzZzJIJudUfu53w", "stars": 1, "date": "2010-08-19", "text": "Thank you to Sarah L for bringing to my attention that the lunch menu from which I got my information about the $34 crab cake entree was for the NYC location. However, I did note that the crab cake appetizer at the Scottsdale location - presumably a smaller portion than the lunch entree - is $16. Yes, yes. It is Barney's and I understand the premium pricing. What I question is how Fred's scored only $$. I often eat out with those on a tighter foodie budget than mine; the $$ is misleading, when Oregano's is also $$. Just sayin'.", "type": "review", "business_id": "g9sBcVyH1MXLiTPDo06Wig"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "w98TrmskPMlMQLpz-Z8EVg", "review_id": "Xp7MD71aIM3R1NbAjuwoSg", "stars": 3, "date": "2012-03-30", "text": "Dinning here since 2003\n\nWings: Big and flavor full, special wing prices on Monday. \n Some of the biggest wings around, includes: celery and ranch or blue cheese.\n Four star wings. \n\nPizza: Delicious!! A medium is 14\" and the crust is thin, and foldable, New \n York style... with LOTS OF HOT CHEESE. Four star pizza.\n\nFried zucchini: Complete disappointment, for $5.XX ( $5 something) you receive \n 8 small zucchini rounds. \n\nChicken Tenders: Dry, small, inadequate. \n\nBeer, Pitcher of: ICE COLD, delicious draft. \n\n************\n\nAtmosphere: Mom n' Pop Shop... this place permeates family owned. There are \n usually only 2 people working, one in the front and one in the back. \n Definitely the kind of place where you don't want to piss anyone off, and \n they might have a shotgun under the bar...\n\nService: The waitresses are attentive and very close if you need additional service.\n\n*************\n\nWill I Return? Yes, I love those wings!!! Ugh... And the pizza, yum. I just won't\n order appetizers.", "type": "review", "business_id": "7McTmo8UxlqUlvDNXcMOWA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OcrBYYHdmG5siBi1wUkoYw", "review_id": "0qbLDVATHdBgEI0xPtEJeg", "stars": 3, "date": "2012-11-08", "text": "I would love to give Yoli's a higher rating but there were different factors that occurred that morning. \nWhen we arrived they were closing early and had very little left on their menu as they were reviewed by a local TV station and ran out of food. That is a good thing they were receiving recognition but not good for someone who was stopping in for the first time.\nWe decided to sit outside on the patio, water began to leak from the roof and you had to move to a different seat. They blew it off as \"oh well\", when food arrived, I was not impressed with what they had to offer. The food had little flavor. It is hard to give a fair rating because they did not have their popular foods available. It was disappointing that we paid $ for an average meal. We will try Yoli's again soon, we are hoping it is Wonderful!", "type": "review", "business_id": "kfscAJnLVf6J2uEte7g-5A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "epfWgfbJe9dK3-qGwk7-mA", "stars": 4, "date": "2010-01-27", "text": "I've never been to the former restaurant that was once housed in this quaint little building, so my first impressions may be a bit different from others. I have always adored this house. It's absolutely adorable and in such a good location. I read over the weekend that the new restaurant here was opening, so we made a point to visit it sooner rather than later.\n\nWe chose to go right after work, so there were only a few other people in here. I really like the setup with the bar in it's own little alcove and seating situated throughout the rest of the house. We were greeted immediately after walking in and we sat in a table by the window. While we perused the menus I couldn't help but tap my feet to the killer old school music they were rockin'. I ended up deciding on the grilled cheese to eat.\n\nThe food was very good. The sourdough bread was super toasty, literally grilled to perfection. There was a ton of cheese in the sandwich, but I don't remember which kinds. The important thing is that it was really tasty. My only complaint is that the cheese wasn't ooey gooey. it was melty, but I could still make out the shape of the cheese. In my book of grilled cheese greatness, it needs to be a little messier. The sandwich was also served with a side of chips or salad if you choose. The chips were good and I ate them all up. There was also a dill pickle, but I don't do dill pickles.\n\nI definitely think that this is a killer new spot that will do very well. I have no doubt that this ultra-hip but non-pretentious spot will quickly become a neighborhood favorite.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "2XTLe-BH7nKwL5WVCuD-Xg", "review_id": "gRz-pwh9wPlMvL76k1r7cg", "stars": 4, "date": "2010-03-07", "text": "Let me start out by saying I usually hate pawn shops, but when I walked into this Pawn 1st location I was surprisingly happy with how clean it was. \n\nThe employees were super helpful and friendly. They were even upbeat and humorous! It didn't stink like the other pawn shops tend to either.\n\nPawn 1st buys pretty much anything you want to sell and it is a very organized place. If I ever wanted to pawn anything again, I would definitely go here again.", "type": "review", "business_id": "CsO0gepSDPwR3Iw2qJJNdw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "aIAjAU-6NH583EkQ6E9KRw", "review_id": "4B66vU0iI22vqfccTCxBTg", "stars": 4, "date": "2009-10-08", "text": "First read about this in the recent 2009 Best of Phoenix and wow, what a great choice! The place is cozy and friendly (laidback atmosphere) with food that is a wonderful culinary experience. I enjoyed the roasted garlic in olive oil with the toasted baguette slices from the start menu, though the nosh plate might need some work (more types of cured meats, and maybe some of those tiny dill pickles). \n\nFrom the starter plates we had the crostini duo and the roasted grapes and brie on the multi-grain bread slices was popular with all - the one with the cucumber slices on them, a distant and less exciting second. The other starter - dates stuffed with homemade Chorizo and grueyer cheese, yum! The come on a bed of greens with some sort of vinegar dressing, which was a nice compliment.\n\nFor Sharing Section of the menu - the citrus brined fried chicken and cheddar cheese waffles, loved by all! I recommend ordering it early since we asked for it about 7 pm and it was the last one left. Even the braised greens were good. I was not so impressed with the halibut filet plate - nicely seasoned but frankly, a bit dry.\n\nOther thoughts - they really like cucumber here - they put it in the water (makes it quite refreshing), garnished my gin and tonic with it (homemade tonic, nice but not really wowed by it), and had it on the previously mentioned crostini duo plate - just seemed like a lot of cucumer. As for the service, it was good throughout the meal. The waiter kept things well paced and was a good source of information when asked, without being overly obtrusive.\n\nIf you haven't gone, worth checking out and if you have gone worth going back again. :-)", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sZmINZtvzbC6WoLX05mGcQ", "review_id": "UY_iB_Pr-dKCY1U0v_8r4g", "stars": 5, "date": "2010-07-24", "text": "This place is classic goodness! Everything tastes rich and fresh! Has a new modern feel with a twist of luxury and artistic flare. The food presentation is gorgeous and the food tastes even better then it looks! In a wonderful area of town and is built in the old post office. An inventive and one of a kind idea has really set apart this delicious place from any other restaurant in the valley!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "k2n8CdqJhZqZT_w36rzang", "review_id": "9fCs-xw3C4UQE9nqNeGFXw", "stars": 5, "date": "2009-08-11", "text": "A hole in the wall in South Phoenix.... \n\nI order: The \"Betty Boop\" - a plate with 1 waffle and 1 fried chicken breast. Add a huge mason jar of the sweetest & reddest Koolaid (or Sweet Tea - depending on my mood) and a side of grits drowning in melted butter and I'm a happy girl.\n\nTheir Red Velvet Cake is also amazing. \n\nI know fried chicken and waffles seem like an odd combination but it's really interesting and satisfying - with the syrup and hot sauce for the chicken.... Yum Yum. \n\nIt's one of my family's favorites!!! \n\nTRY IT!!!!", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b2DKC4kC8-QeSeGZ_MF3XQ", "review_id": "X-jUM9zZGckNLf4Axjwa3w", "stars": 2, "date": "2010-07-12", "text": "Went here for dinner, there were only about 6 other people in there on a Monday night. Even with 2 servers for 6 people the service was absolutely horrible. We almost walked out after not getting service for about 10 minutes. The food itself is decent BBQ. Not great but entirely edible. I enjoyed the blue cheese cole slaw. When my dinner arrived the waiter said that they gave me the wrong type of sausage, they left the one they gave me and followed it with what I ordered later which was nice. The ribs come dry, not wet but they will make them that way for you if you want. With a crowd like this I don't know how much longer they can stay open.", "type": "review", "business_id": "iung9K8cFAPLdA9k2DUoxA"} +{"votes": {"funny": 3, "useful": 0, "cool": 0}, "user_id": "SWoWXML68esw-UhHRjLBQQ", "review_id": "DvEwQEw2gFfzvughKQfzqQ", "stars": 2, "date": "2011-06-01", "text": "For some reason, these people seem to think it's OK to price a tank top, that probably has less thread count than my thong and cost about 17cents of labor to make, at $50. \n\nThey also seem to think that dressing up their mannequins like paraplegic color and pattern blind grandmas gives them business. Oh wait...it does! Because this is Tempe. And Tempe, as I can't over-repeat, is the devil.", "type": "review", "business_id": "VLu6SFIlUaisIwbHa2eNOA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "cOTyqUKTyy98XixWcw6apA", "review_id": "z8dFWnuPvnAc7NEtXUznQA", "stars": 4, "date": "2011-02-18", "text": "This salon is really cute. Fridays are 1/2 off single sessions and this is why I keep coming back. I use the level 2 bed and on Fridays its only $5 to tan. I wouldn't come here if they didn't have that though because membership prices are ridiculous and the customer service isn't that great.", "type": "review", "business_id": "OvV84elHGF1AVVy9eTLZ7A"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "kvL7bId7FbaMi19TFl3h9w", "review_id": "pt5ubYo59CVG-8WBI6iv7Q", "stars": 4, "date": "2009-10-01", "text": "Copper Star is a great example of adaptive use in the heart of the Melrose curve. Who would have thought that a building initially designed to provide fuel to cars would so work so well serving fuel to humans?\n\nTheir coffee is locally roasted and, while not my favorite, is well above average in Phoenix. Their drive-thru is a great feature for those mornings when I'm running late. For the coffee adverse, Copper Star serves chai, tea, smoothies, Italian sodas, and some unique drinks including a black cherry limeade. Foodwise, there is a wide selection of baked goods,including some of the best bagels. They also have decent lunch offerings, such as sandwiches and a tasty hummus platter. But where they shine is their 'home baked' cupcakes. (I've seen Mayor Gordon here on several occasions getting his cupcake fix!) \n\nDespite being in a converted gas station/garage, the atmosphere is quite a bit more cozy than most of the other coffee shops in central Phoenix. While the sandblasted block walls and exposed ceiling let that building's industrial past peak through, this is offset by rotating art work and selection of comfortable (if a bit dingy) couches and easy chairs as well as small bistro tables and long 'work' tables to choose from. The staff is friendly and helpful, and the owner, Bill, is a great neighborhood resource. He can tell you anything and everything going on along 7th Ave.\n\nAll in all a good place to grab a coffee and cupcake, meet a friend or get some old fashioned reading done. I can't recommend it for serious work requiring internet access, however, as the wifi access remains intermittent at best.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e9d9EQqOd2-NlX8WFx0aEg", "review_id": "yWhOqMcralD6axrkJj-Q2Q", "stars": 5, "date": "2011-01-26", "text": "The Roaring Fork is one of my very favorite restaurants. I am not a big fan of the environment, particularly the patio and back rooms, but the food more than makes up for it. The pork green chili served with warm tortillas is dreamy. I also adore the huckleberry margaritas. Can't go wrong.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "CJOjw2P9zkPxOnnmrY6KjA", "review_id": "jiVEfGOBqcBVSI2AXgtFPg", "stars": 4, "date": "2012-06-25", "text": "I've visited the Crudo in Old Town and was really excited when the new one opened in Arcadia. Visited with the bestie a nice quiet weeknight to enjoy some girl time. You can get a 3 course meal for $35 and pick from salads, meats or what I would call side dishes. It's a bit pricey for what you get portion-wise, unless you decide to order 3 meats..but who does that? The wine is very reasonably priced. The food is amazing! Everything is cooked and seasoned perfectly, and presented to be delicious. The decor is very simple, feels like you are in a big open warehouse. It'd be a great place to have a group dinner for 6-10 as they have these rooms that are a bit more secluded they could put you in. The service was a bit too good, to the point where we almost felt like she was rushing us even though there was nobody else in the restaurant. \n\nI'd visit again, but this is definitely a place to take another food loving girl friend- the boyfriend would be hungry and feel ripped off, it's just not his style...", "type": "review", "business_id": "Xk3inJcuBGLhavUcdlINZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JPesnSIxBrhknSJDr0em6A", "review_id": "4BXF12MufxE4v_qSvS6eOA", "stars": 4, "date": "2011-06-04", "text": "Great bagels & bialeys! Service was great, food was fresh, bagels & bialeys were like NY! I'll be a regular here! Also check for specials on Tues & Fridays", "type": "review", "business_id": "Fl9lKEaY10EnXxekPcHPPg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "36EGeUpdSLBmfFd4zpjXGQ", "review_id": "FNGllRNVZCmtrGOIMnSqAQ", "stars": 1, "date": "2011-08-05", "text": "This place sucks!! I moved to the valley and have yet to find that \"go to \" chinese spot, sooo I decided to give this spot a try. I called my order in and was assured by the employee that all the food is cooked to order, always fresh. So I picked up my food, and what do you know, I got some old azz fried rice with some microwaved shrimp. WTF??!! I give this place 2 thumbs down and I would not eat here if I was hungry as a hostage :(", "type": "review", "business_id": "TxDKDFQ3ovgzTaNcqKf2Uw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gg_OKjOAl_vVmdh5ZETuiw", "review_id": "mwEefGt1DjbA1EszSW6usw", "stars": 1, "date": "2012-08-28", "text": "I really hate to do this. This restaurant is fit for those that think Taco Bell is a great place for Mexican food.\n\nThe buffet was pathetic and contained maybe 12 items (no white rice). My sampling of their offerings ranged from terrible to mediocre. China Garden has, hands down, the worst eggroll I've eaten.\n\nGiven the atmosphere of the place it was plain to see China Garden had regulars. One guy at the cashier even commented that he'd been coming since 1970. I don't get it. This is the worst restaurant I have ever dined at.\n\nThe staff and whom I presumed to be the owner/manager was nice and friendly but that cannot make up for the poor quality of selection and food.", "type": "review", "business_id": "3fNGtIfuHwt0-DD9SSjO6Q"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "nDBly08j5URmrHQ2JCbyiw", "review_id": "INHh-M5bBCRVlA4azUYtvA", "stars": 4, "date": "2010-12-15", "text": "The \"hood\" is a colloquialism not intended to imply \"ghetto\" or any particularly dangerous neighborhood. I am a proud resident of the Biltmore 'hood and my neighbors are retired Mormon doctors who all own corgis and drive Buicks and have umbrellas with \"Vanguard Investments\" emblazoned on them.\n\nAnyway, even though the neighborhood isn't particularly risky it's dangerous just having this place so close to me. After a particularly harsh day at work I treated myself to the carne asada burro combo. Highly addictive, and there's probably enough fat in the tortilla alone -- never mind the filling -- to keep me and an African village or two going for a week or so. Nevertheless, it's delicious and a great antidote to an evening spent with too much single-malt and too many cigars and some women named Wanda and Clarissa. Those who know . . . . know . . . \n\nAnyway, go and enjoy.", "type": "review", "business_id": "Ddsln32r-uA7hq_0ksaNZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AE0K8fveXdUu89GnCSI16Q", "review_id": "I8_vccF7YuKneFaNTixwwg", "stars": 4, "date": "2011-10-26", "text": "We visited last week. The lady offered us a lot of samples of their food so we could pick out what we liked. The food was excellent and the service was great. The restaurant was very kid friendly.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "B06qRnmRlZZFA6VWm1_B7Q", "stars": 4, "date": "2012-05-01", "text": "Sometimes you just gotta have a burger. I was in the Scottsdale Rd/Grayhawk area and noticed this place where Nick's used to be. I tasted their burger at the Scottsdale Culinary Festival's Burger Battle and thought it was really good.\n\nThe CB&CB burger with tater tots really hit the spot for lunch. The burger and carmelized onions worked together really well. The tater tots were delicious.\n\nOverall it was a satisfying meal and I'll be back soon.", "type": "review", "business_id": "umdxfhSlk67yGEi8-S-bEg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "gUkotDV7acTJFHz9dC9j4A", "stars": 3, "date": "2011-05-10", "text": "Place is OK, I'm just not a big fan of what they have to offer! It's funny reading some of the complaints! People get a grip! Food is good, place is a cafe style, so your service is really up to you! Cookies are really good, my wife enjoys their sandwiches.", "type": "review", "business_id": "b9svM7RoDUAVnzjFBmf3Ow"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "OzhyF4c1a0aTKjMPHYkSlQ", "stars": 5, "date": "2009-12-14", "text": "After a long week of being trapped in a conference room, I really really needed to be outside. Pinnacle Peak helped to put me back in my normal happy place.\n\nThis spot is very popular and can get really crowded on weekends. I wanted to enjoy a little bit of solitude, so I arrived as the sun was rising. Good choice - there were only a few others around on this chilly morning.\n\nThe 3+ mile trail is an out-and-back route, with enough ups and downs to keep it interesting. Like a stairmaster, but better because you aren't in a gym squished next to some icky sweaty person. The well-maintained path is packed gravel, so you can spend more time enjoying the beautiful views rather focusing on where you are stepping.\n\nFor those that want to take their time and learn a little, there are small signs along the route that label various plants, as well as two rest points with markers to tell you the names of the mountains you can see in the distance. \n\nGet up! Go outside! You will love it as much as I do.", "type": "review", "business_id": "wjnqiWyMtZ7G_267lkwOng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLDgSR1q44fyLRi3Ea0Oqw", "review_id": "PYiwIy-wDebYS5EhGMDfuw", "stars": 5, "date": "2011-06-22", "text": "Love it and love the GF menu. It's amazing how many dishes they have", "type": "review", "business_id": "3jqOv6re-xPYOg7srmi7tg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8n4SarsuI9Km6lEtydiE0w", "review_id": "a3m7wZvCE8G-SHysCbHGrg", "stars": 3, "date": "2012-07-12", "text": "Bacon madness! Huge french toast! Cute little piggies decorating the orange walls!\n\nOink is a friendly, peppy place to go for breakfast. The food is pretty good, the place is happy, all-in-all I would say this is the perfect place to wake up in the morning!\n\nThe only irksome quality was our server, who seemed very nervous, checked on us at weird times, and said \"you're welcome\" too often (I didn't know that was possible, but it was). \n\nI enjoyed the jalapeno (!) bacon and the oink french toast. The cinnamon rolls were also tasty, but my group was disappointed by the eggs benedict. I would say the food could be better, but it's just awesome to have a local breakfast place somewhere in my neighborhood now!", "type": "review", "business_id": "fDZzCjlxaA4OOmnFO-i0vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rJfJ_o2EsadZIyfvOTjiiA", "review_id": "7vSAtODBT0frsv8pCgcCHA", "stars": 5, "date": "2012-11-26", "text": "Excellent service and great quality. I will always bring my alterations here. Had an emergency and needed a hem done in a couple of hours and they had it sone sooner than expected!", "type": "review", "business_id": "fINjAQ9_aqT87CRCoU2JLQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JkUJz70emHJOM8XVF-stTA", "review_id": "trbXS_dkW8yg6R0knD5XLA", "stars": 4, "date": "2010-08-01", "text": "This is the best Pho I've found in town yet. Good spring rolls to, the sauce was a little to runny though. I hit this place up 3 times a month to get my vietnamese fix.", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "He939GwJc3_CGCKST5Bw_A", "review_id": "Vja7FnGUajKvAZyleHdDhQ", "stars": 5, "date": "2010-08-25", "text": "Cary is one of the most honest and knowledgeable mechanics I've ever been to. He is caring to all of his customer's and his shop takes the utmost care with the cars they work on. I cannot recommend him strongly enough!", "type": "review", "business_id": "Ba1WZ4fWqJZTUwsmS_GDbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HI8rzP5dFKQMmZC6j1PjSg", "review_id": "VuNsQfd-M_xV1pfcneGypA", "stars": 5, "date": "2010-05-08", "text": "The interior is very industrial and charming; furnished with iron beams, brick walls and simple hanging lightbulbs. The lobby area has special imported drinks and other trinkets. There is always a line but it usually goes pretty quick because you're distracted by all of their deserts and miscellaneous goodies on display. I've never had a meal that wasn't awesome here. I usually find myself eating the simple but delicious Liberty Joe with their special spicy sauce and then finishing the meal off with a home-made snicker-doodle. Whatever you end up ordering, I'm sure you'll end up enjoying Liberty Market as greatly and as frequently as I do!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "jg08SGgRkBgdKAYh4DahVw", "stars": 3, "date": "2010-09-24", "text": "It's like being a Target girl but recognizing the value and prices of Walmart... so I don't make a point to shop here (vs LeeLee's with greater intl variety), but when I am in the area... I frantically think of what is low in the pantry so supplies can be restocked at a minor savings. The pricing is marginally cheaper -- to clarify, the auto 10% discount is calc off the non-sale items.", "type": "review", "business_id": "XYhVyCbzJCrYclR6J4LYSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0Sksoo-KZN_kltW2npWxeA", "review_id": "Sfn_8kwUm-Sug60MDRXA9g", "stars": 5, "date": "2011-09-12", "text": "I love happy hour! 3PM to 6PM EVERYDAY! This place has one of, if not, THE BEST!!! $4 Grilled Chicken Quesadillas, YES!! Plus $4 or $5 for a mile high pile of Green Chile Chicken Nachos? YES!!! And if you really want a treat...$9 for 3 huge fillet Mignon Tacos. Plus COLD BEER both bottle and tap plus reasonable mixed drink prices. Place is friendly, bar plays classic rock, most patrons seem to be regulars...once you eat there, you will be too! Friendly staff especially Hostess Judith and the young man with the red hair. I've been in the restaurant related business for 30 years, the prime phrase is CONSISTANCY and the food, atmosphere and friendly people are always consistant. Consistantly great. The owner, Andrew, always makes a point to great everybody. New Orleans Bartender exudes Southern Hospitality. Regular Menu is a bit pricey, portions could be larger, but food is great.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "rn8sw7zjQv0CWzmE3kNqSw", "stars": 4, "date": "2011-08-24", "text": "I was super excited to find a place in Arizona that has vegetarian pho!\n\nThe service was just mediocre. It met basic requirements without any friendliness.\n\nVery cost effective= CHEAP.", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g13P8XfDT5Zfcts4wai4-Q", "review_id": "qS7SLv3DGhvi0ks56u4q6A", "stars": 1, "date": "2010-04-26", "text": "We went here for a family dinner. Our family is loud and boisterous but not obnoxious. We asked to be seated in the bar since some of us wanted to watch the game. No problems so far.\n\nOur waiter was really nice at first, but seemed flustered and as if he wasn't getting the help he needed to keep up with his tables. I waited tables for 12 years and this guy was nearly literally scrambling to keep up, a sure sign of not enough help or lack of teamwork. Of the two hostesses, ONE of them could have bothered to help him out by refilling water, tea and soda for us, but alas they did nothing. We waited so long for drink refills that my husband got up and saw a pitcher of coke on the bar, so he poured himself a glass, which he was scolded for! I could not believe it, I was shocked. A guest should NEVER be treated this way. If anything, someone should have apologized to my husband for not giving us what we needed for the meal. \n\nThe chips were good, and they kept them coming, so props to them for that. They are served with bean dip and salsa. I liked the salsa a lot, not spicy enough for me, but a good amount and mixture of yummy stuff, including cilantro which I find many \"salsas\" don't even contain! To me, it is not salsa without cilantro. The teensy bowls of salsa they bring though need some rethinking. They should either bring one per person or consider a bigger size. It's only about 2 Tablespoons, and that aint much salsa (beware, some sides of rice and beans also come in these super tiny containers - three or four bites and it's gone)! Anyhow, we ate tons of chips and salsa because the food took SO long to come out. Our waiter sort of apologized for this by keeping us updated that it was actually coming.....someday.\n\nOur food came out a good 35-40 minutes after we ordered. Sadly, two meals were completely missing in action and the two of us that ordered fajitas (which came out of the kitchen very cool, not even the slightest bit of heat from the iron skillet or the meat) had to wait at least 10 minutes for their tortillas, so they couldn't even eat what was at the table, which was getting cold. After the two missing meals came out, one was the wrong meat, red meat instead of chicken. More waiting...the table eats, minus one. When everyone is nearly finished, the right chicken taco dish comes out. It was delicious, but overpriced. The chicken was nicely grilled and the tacos were served the way I like them, with a little bit of onions, more cilantro, lettuce, lime and pico de gallo. They also came with cheese, but I don't like cheese on tacos. They came on tiny little corn tortillas, which themselves were good, but way too small to make decent tacos that didn't fall apart. Plus, I ran out of the tortillas before my meat and other stuff was gone.\n\nOur waiter was really nice except for the scolding (I'm still floored by that), so I can't decide if he sucked or the place sucks, or maybe they both do...We definately won't be back.", "type": "review", "business_id": "nfyqtEoufkhjv97IueK7Ow"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "0aNgbOZyFvkns6KvrO2yLw", "stars": 4, "date": "2007-03-15", "text": "Oh boy. I was terrified of this place. Curry peanut butter?? Sun dried tomato peanut butter?? Sick! But once I went, I shockingly realized that somehow, it wasn't thaaat bad.\n\nWhile this is without a doubt, a place that little kids will LOVE to come to and one that adults will grudgingly take them to, if you have to eat here and you're over 12, I recommend getting the veggie sandwich. It was the least scary lunch option on the menu that wasn't going to taste like a dessert. It had sun dried tomato peanut butter, lettuce, cucumbers and cheese. And it wasn't half bad. But it wasn't half good either. Let's just say I was surprised that it wasn't disgusting, but I wouldn't go back again unless I had to take another little kid I was babysitting. \n\nThe child in question, a little girl by the name of Natalie, is my friend's daughter and she talked me into going here. She couldn't say more about the place- she loves it! And for lunch, she had some white chocolate peanut butter, banana, nutella and caramel concoction that made me sick just looking at it.\n\nBut if you want to bring your little one somewhere different and fun that they will love you for, come here. This would be a cute spot to have a little birthday lunch for your kids with a couple pals that wouldn't cost much at all.", "type": "review", "business_id": "NzbCi3p0HqU2SX__853VwA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QE6Bs0oeZj2RBULNqUvlUw", "review_id": "msH1becU3TTc8aO496-H6g", "stars": 2, "date": "2012-07-18", "text": "OK after hearing about this restaurant from a friend I decided to take the family out. First I must say that living in the valley for over 30 years I still and always will be a Haji Baba fan in Tempe Az. for life!(yelp them)\n\nSo, walk in and would agree that the ambiance was less than. Dinner tables were cheap and the table cloth was tacky. Oh almost forgot why is there a large mirror on the wall? Were given dinner menus by a impolite waitress who I suspected was surely going to be the owner. The first thing that hit was the prices! $$$ I kindly asked the waitress if I could just have a Gyro sandwich. The answer was NO! (rudely). Those are only available during lunch time! Ok, so next option was to gamble on a gyro plate priced at $14.95. We placed our order and waited. The food arrived on a timely manner. The food was hot and looked good. The tzatziki-sauce was a 10! Although the gyro meat was not to my tasting, it was ok for being real hungry. Eventually the waitress started warming up to us! :) \n\nPROBABLY WONT RETURN AGAIN.\n\nPros- Fresh food, Location\n\nCons-Couldn't get what I really wanted.(A gyro sandwich)\n\n-$$$ pricey! $36 for 2 adults and 2 children. (2 gryo plates and a coke.)\n\n-No kids menu. \n\n-Water tasted like it was from the tap.\n\n-Coke was flat.", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mRAPMBM3dbw8KXNit1aDCw", "review_id": "wZvQUscERCqAPC05KzX6KA", "stars": 3, "date": "2012-07-16", "text": "I do not see why people are so quick to judge an IHOP so harshly.\n\nIt's an IHOP for Pete's sake. The service is ok for being a chain breakfast place. But it is nice that this location is 24hours because my friends and I need a place to eat whether it be after bar hopping hours or not.\n\nThe food is consistantly not too bad (again for a chain) and I've gone back several times. Besides, it is great for people watching at certain hours of the day/night! :)", "type": "review", "business_id": "3YATaNAGANoFneE-4KK-JQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6h5PM9BhvhECbQ7ojgoNXQ", "review_id": "h7DqqdDkNA7eveJdwZUyKQ", "stars": 3, "date": "2011-09-10", "text": "Nothing special about this place. Clean and the food is okay. I go because my one son loves it. Have to keep the kids happy. Never had a bad experience but never had anything stand out either. My fav dish is the Spinach artichoke dip.", "type": "review", "business_id": "hNVcBhJSD5HyLKMf_Z7TaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qHqklkFS4JfKtcJDT1WMaQ", "review_id": "ug6By_jFiIbcOkYFbzsUNQ", "stars": 4, "date": "2012-08-22", "text": "I was really pleased with Bombay Spice..it's definitely not your typical Indian restaurant setting.. Think more contemporary American decor... I mean The Smiths were playing on the stereo which gave it a nice relaxing casual vibe. We were served by a great friendly waitress who really knew the food and explained everything real well.. You can tell she was very excited about it. We started with the appetizer sampler which had four selections of appetizers of your choosing..all were outstanding especially the wings and the chickpea ceviche. I then tried the Chicken Tikka Masala which had lots of great flavor and a nice kick then we checked in on Yelp and got a free dessert. Great prices and the way you order the food makes it really simple.. Great little casual place tucked away in the corner of a strip mall near PV mall.", "type": "review", "business_id": "3GAPcBG8SowgrpS6UHlDeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "X1nUGRyntlsoNEc_KMaSLA", "stars": 4, "date": "2007-09-21", "text": "I am so sorry I didn't come here sooner! This is a great sports bar not far from our house. The service was very friendly, and the killer wings (they also have honey BBQ) were awesome. They had tons of meat on them, which isn't always the case with wings, as I am sure most of you can attest.\n\nWe also had the margherita pizza, which was pretty tasty. There were numerous TVs scattered throughout the restaurant, and they had $1 beers (yes $1) when we were there - fantastic deal!\n\nThis place is definitely more chill than Fox Sports Grill (not quite as fancy or upscale), but it's a perfect sports watching or beer drinking venue nonetheless. \n\nOh, and they deliver!!!!!! Good choice if you live in North Scottsdale.", "type": "review", "business_id": "DvPsl-CtYj3Q5GnOgClyew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cE1-8mK1g8xZld5Y8u01tw", "review_id": "JStJgy5ksdO9ladkEvT2RA", "stars": 4, "date": "2010-09-10", "text": "Perfect greasy food for the night after a bender, or a family breakfast. I'm cool bringing my 10-month old here because it's noisy and with so many other kids around she pretty much goes unnoticed, except by the nice waitresses.", "type": "review", "business_id": "NWtC07BxIqQp76kugbvynA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uTEhgjhxFtIYI2ufdDD3NQ", "review_id": "KWQrjg_Ty2C4unwKx-Ly2g", "stars": 5, "date": "2011-12-19", "text": "Recently I had the pleasure of eating at this great new Iron Chef Jose Garces restaurant. Pulling up to the front entrance to the restaurant my girlfriend and I were greeted by extremely nice doorman who valet our vehicle for us. We were a bit concerned that we were going to get wet from the rain on this day, but thanks to the valet service the hotel & restaurant provide we stayed warm and dry! Now I must say we were taken back from the decor inside the restaurant... It was spectacular!! The way the restaurant is decorated just puts a smile on your face! Also, it gives you a feel for Iron Chef Jose Garces personality which seems to be light and fun. The food is absolutely amazing!! We split the \"IGNACIO\" Nachos which have black beans, tomato, queso mixto, jalape\u00f1o, chile de arbol, and radish, and the Barbbacoa \"Costillas\" berkshire pork spare ribs, chipotle-cider mustard bbq they were tender, juicy, and delicious! We tried the House Margarita the \"Distrito\" and the white \"Mexican Sangria\" both were spectacular!! I have never heard of a white sangria before.. But WOW it was amazing! All of the employees we encountered were extremely nice, knowledgeable, and sincere. This restaurant will definitely stay on my regular to do list! Thanks to everyone who gave us a wonderful experience!!!", "type": "review", "business_id": "lKQ5hnkSQ-XP80jNCH46nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Zlsy_1wAKbNrp4-c5V9uQ", "review_id": "B7mNUyn3bEFoqySstT7OAg", "stars": 5, "date": "2011-03-25", "text": "Amazing greek food! Definitely try the greek fries! I always try to come here every time I am in Phoenix. Staff is also always very friendly!\n\nAlso try the greek calamari. Unusually delicious!", "type": "review", "business_id": "Rg3INE2p4zQYvfMvJduEOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tPqbx-DzteHvl5fQZ_4Hsg", "review_id": "ZBYeB5Pm3fZMDWxkCHHlzw", "stars": 4, "date": "2010-09-29", "text": "Always good pizza, close to home and they serve beer and wine. Plus my kids can play video games and husband can watch the game.", "type": "review", "business_id": "uYQo0oDXI5NEoMJNWXnx8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u_5vw3B7boy7FVWtwA_ifA", "review_id": "3dRMtU5EMF35u3tCsrNp5w", "stars": 5, "date": "2011-01-21", "text": "Awesome, Big Ben sandwich is delish and chocolate/strawberry scones is one of the best I have ever had, and can't forget to mention the coffee and tea, great place", "type": "review", "business_id": "O7fXh4ODsi--5LmJKTHn2g"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "3Lz0foBbu0TARTdQJ_-Vig", "review_id": "jPr6F58kmLhgQdUUAUKtdg", "stars": 2, "date": "2011-09-25", "text": "I went to this place with my wife because it was new and we're always looking for new places to eat. We were the only two people in the place and would have thought that the owner, to make a good impression and show gratitude for what business he did have might have come by the table to ask how the food is, make small talk or anything. He sat at their front counter watching a baseball game when we got there. The waitress took our order, he went back to cook it and resumed his place at the counter to watch the game. We felt like we were putting the guy out to have to pull away and actually cook for the only two customers he had. \n\nAs far as the food is concerned: You can grill a great burger at home with decent meat and the fixin's you want to put on it. In other words, it wasn't anything special and certainly nothing that I would go back for. \nBottom line: Scottsdale doesn't need another $9.00 burger place and I wish the staff could have put more effort to appreciate our patronage.", "type": "review", "business_id": "rPp509oz4oFEdncoo7v_HA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "zFgjo-gVHQ6CGHcwJVI9uw", "stars": 3, "date": "2011-03-24", "text": "This bar reminds of an old pair of pants. It fits. Not too tight, not perfect. Just kind of fits. There's some holes in the knees, and its a bit faded. It's certainly not perfect.\n\nMulligans is that bar where you can go and kick it with your friends. You never know what kind of people you are going to run into. Co-workers, drunkards, bottle rats who got kicked out from other places.\n\nThe drinks are cheap. The beer selection is so so. The bartenders are pretty nice, but aloof. It's just an average bar though. Nothing great, nothing bad.", "type": "review", "business_id": "3g2ofV7mhEoPyfF7vFMObA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QrOSr8bzAjpIgyNftDLUBg", "review_id": "KuwJr_6BUt4tsrA6M3zbjg", "stars": 4, "date": "2009-06-04", "text": "While I am giving this restaurant four stars, I must start off by noting that the pizza here is mediocre. If you want spectacular pizza in Phoenix, don't kid yourself that it's at I-17 and Thomas. It's over at Pizzeria Bianco.\n\nHowever, the other items on the dinner menu are worthy of a visit to the 'hood. The Penne alla Vodka ($12.95) offers up pasta in tomato sauce with bacon, fresh basil cream and vodka. It is an excellent starter to split with a dining companion and that's exactly what the BF and I do every time we visit this place. The Cozze Posolipo mussels in garlic white wine sauce ($11.95) are also quite tasty as an appetizer. The complimentary warm pizza dough they serve with an onion and olive topping is a nice touch. For entrees, the Pollo Parmigiana ($14.95) is the classic breaded chicken breast with marinara, mozzarella and parmesan cheese served with penne. The Lasagna della Casa with Bolognese sauce ($13.95) is very good, but the portion is a bit stingy for the price. The BF often enjoys the Gamberi alla Pana ($15.95) that includes jumbo shrimp saut\u00e9ed with mushrooms in a brandy cream sauce over a bed of fettuccine. Please note that the brandy cream sauce is extremely rich. Another tasty option is the Spaghetti con Salsiccia ($13.95) with mushrooms, bell peppers, onions and Italian sausage in marinara sauce with a touch of white wine. The Cheese Ravioli ($13.95) is another great choice with the tomato cream sauce. For dessert, be sure to order a Cannoli Siciliani ($5.95) as it's the very best I have had in Phoenix. The Tiramisu ($5.95) is good as well.\n\nThe bad news is that this place is no longer BYOB. For whatever reason, the management decided that a restaurant that seats no more than 20 needed a full liquor license. I really hope that the investment in that spendy license doesn't lead to the undoing of this place. Given that they don't even have a bar area and I almost never see anyone order a mixed drink, I think staying BYOB might have been a better choice for this neighborhood joint.\n\nThe service at this place is also part of the show. The waiter may well be manic as he will either be way up or way down for your visit. The d\u00e9cor here is pleasant enough given the location of this tiny restaurant in a modest strip mall. If you happen to need a trip to the restroom, you will get the chance to traipse through the kitchen.\n\nAll in all, Pizza A Metro is ironically a great option for everything but pizza.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "kU1H01IMRDG268R5G-kdVw", "review_id": "nxSRWDLb7M9hAWYEoVYwmw", "stars": 1, "date": "2012-01-13", "text": "The food was okay but the portion sizes where the smallest I have ever seen....and I am a regular to fox restaurants. \n\nBabbo is much better.", "type": "review", "business_id": "CSoURupWEyuyzkjMOExKPg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "7r5Sm4qXSeSNXAVGm9CvyA", "review_id": "DOo3SKQYF_vLaqczi9nrmg", "stars": 5, "date": "2010-07-25", "text": "Food: great! Service: Excellent! I had the Frank Sinatra Calzone (you choose 3 items for the filling...I suggest what I had: sausage, pepperoni, and meatball). It was just like being back in New York. Loaded with Ricotta, too...They don't skimp here. The server was great too...Didn't catch his name, but he's a burly, bald headed guy with a beard. Very friendly, polite, attentive. Cool to look in the kitchen and see the pizzas being hand tossed...Wonder if the cook thinks I was looking at him...Well, I actually was, but only because he really got into tossing the pizzas and was entertaining to watch.\n\nGo there. Eat everything. Tip big!", "type": "review", "business_id": "kN8792XEJfCtpD5GJLmI6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5a1aiH93zMDh6xkcDI4ueQ", "review_id": "ZHaGd5whVo6r7MMtyDiZrg", "stars": 2, "date": "2012-10-11", "text": "I'm really getting ready to give up on this place......or boycott it a while.\nWhat's up!? It feels like it's a confused sushi restaurant. WHY THE HECK is the music always blarring?! You can 't even hear the person sitting next to you. Are you a restaurant or a club? Do you have servers or 'visual fluffers'? And if you go at Happy Hour, expect to wait 45min to even get your food. \n\n*Are there authentic sushi makers there?????", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "l_gYq9wGIHzihot_AmqeIQ", "review_id": "OQN1PixpxHHjFM9IsCe3kg", "stars": 1, "date": "2010-10-13", "text": "I was so, so hopeful. October in Scottsdale, yummy, tacos.....Wow! Rip Off!! $10 Just to get in (what was that for?). No shade unless you were buying a drink. Most places wouldn't give you salsa or taco sauce with your measly over priced taco. They seemed like the vultures who didn't care about the customer, just the $2 ticket they could grab from you.\n I had to beg for a napkin then hunt for a place to sit feeling watched by the other vultures waiting for me to get up.\nI was ready to leave after 45 minutes and my Pepsi had gotten warm, so I had gotten a cup of ice from the bar. I poured it in, took one drink and as I was leaving to hike back to my car, security stopped me and would n't let me take it out! \"It could have booze in it\". Well, by then, I was one angry little local. Dumped it all in trash and said to my sweet daughter in law who was about to \"go mad\" with me, \"Get me outta here!\". She had brought her 2 year old, thinking what a fun way to spend a Saturday morning and encourage our local businesses. Nope. Not good.", "type": "review", "business_id": "LaNjC1TOvprQUNkQ9Rio8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xnjqnfOl_5JRq_mouPxEbA", "review_id": "Qya9Tv2yuVYgCt0jsV1HyA", "stars": 1, "date": "2009-11-18", "text": "What happened to this place? The first time I went about a year ago, both the food and service were great.\n\nSecond time, last May, I ordered the same dish and it was horrible. Drowning in sauce. But, at least the service was decent.\n\nJust went a third time and it will be my last. Both the food and service were horrible. Went for lunch, sat inside and it wasn't very busy. Our waiter was totally out of it and only had 4 tables and hardly paid any attention to us and kept forgetting things, like taking our order to start. \n\nThen, even the food runner forgot to bring me half my meal after I asked her for it. In the meantime, I counted at least 17 staff member hanging out in the kitchen area, which is open, so you can see them and half of them were folding napkins.\n\nMy food was not very good and actually made me a little sick. This is a shame, especially because there aren't many places in Phx that have vegan choices, but for the price you pay, I would expect a lot more.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rqTWNarL28Q58GxfSeDtvw", "review_id": "GDachmflsPg5XUyK_BhdaA", "stars": 5, "date": "2012-07-05", "text": "I love that this restaurant can accommodate all types of people. It's a sports bar with Family style entertainment! The staff is always friendly and they aim to please. The food is always good and prices are very reasonable. The bar is on one side so it splits the Families with children on the other side with an amazing area with tvs to play Xbox and wii. Check this place out. You won't be disappointed.", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8-qt1pNsZVah5tr2JBQBrw", "review_id": "bMIm2p_s_jgRsuSi3Xt5BA", "stars": 1, "date": "2011-12-06", "text": "Honestly I don't get it. I went to Dos Gringos with a good friend of mine last weekend. I had never been to Phoenix before so I was excited to see what the city had to offer. After entering Dos Gringos we sat at our table for 21 minutes before a waitress came to our table. She brought us 2 beers and never came back. After 40 minutes we decided to check out a new bar since we obviously weren't welcomed at Dos Gringos. So we went up to the bar where I waited for 5 minutes so the bartender could take some pictures and shots with her friends. What I didn't understand was there were maybe only 20 people there and at least 6 people working. If I was the owner or manager I would be embarrassed to say that you run that establishment. I will never return and I highly recommend you stay away from Dos Gringos as you will be disappointed.", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "CaU3GiAgTRhZwUZABIaFNQ", "review_id": "g32C4xUYmbE2QlS854Agsg", "stars": 5, "date": "2008-12-30", "text": "I had an amazing dinner tonight at Quiessence. When we made the reservation they asked if we were celebrating anything; we were, so when we sat down we were given 3 glasses of complimentary champagne. \n\nWe started with a plate of three delicious cheeses. They have a huge selection of cheeses, probably about 20, and we chose a goat, a smoked gouda and a jack. All delicious and served with crostini, perfectly melt-in-your-mouth bartlett pears, pecans, honey and quince paste. Great start.\n\nOur next course we shared two salads - an octopus carpaccio and field green salad. Both good.\n\nMy main course was AMAZING. It was heritage turkey with mashed potatoes and carrots. I ate every bite. SO flavorful. My dad had a beef sirloin that was perfectly cooked and delicious with a side of fingerling potatoes. My mom got swordfish. It was not cooked properly when it first came out, but they promptly corrected the problem, so i can't fault them for that.\n\nThe ambience was great including a live but not distracting singer and a warm crackling fireplace. In addition, I want to give big props to the servers for knowing everything about the food they served. She knew where the fish was caught, how the beef was raised, what certifications the turkey farm had achieved. It is great to be able to get those kind of answers with zero attitude when you ask the question.\n\nMy only reservations would be 1) definitely is \"slow\" food, maybe a tad too slow but so delicious it was worth it and they said they were short staffed and 2) i'm not sure i buy that their seafood is sustainable. They served atlantic cod and atlantic swordfish. My understanding is that both of these fish stocks are pretty severely depleted. I asked and was told that the fisherman they buy from are committed to sustainable methods, but I'm not sure (personally, for me, at least) that it is possible to sustainably fish a stock that is in danger.\n\nAll in all though, a fantastic night and i can't wait to return!", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "z_OPi59Bb5QOgfuFw492tw", "stars": 4, "date": "2008-07-03", "text": "I went thier on a new wave night. I dont drink so its hard to find somewhere gay that I can enjoy sober. They had bitchin 80's music and had a good guy/girl ratio. Some were straight but I like that, its nice when breeders what to hang out just for the fact that they wnat to hang out and dont care if your gay/straight.\n\nThey also have a pool table wich is a rare find in gay clubs in az.\n\nI liked it :)", "type": "review", "business_id": "yPpPJyAF8pciHnhTF-C38w"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "CAm_VCWbpo40JLF3KNEQSg", "review_id": "v1U7OWLJWZzhAe591uEu1Q", "stars": 2, "date": "2008-02-24", "text": "Scuzy waiter. Scuzy manager. Overall just a bad experience. The food was pretty awful too. I don't understand how this place is so successful! The food was either waaaay over-seasoned of severely under-seasoned. A hole in the wall Chinese restaurant can produce better Chinese food. And at cheaper prices. Search around. It'll be well worth it.", "type": "review", "business_id": "CycfCC0OLvTjG3Eks8D1og"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "KdIVljQs1D1A8-pyfS4teg", "review_id": "yOzUD3HgusvV_oi6su066w", "stars": 4, "date": "2009-02-07", "text": "I found this on yelp and what a great wine bar! I went here last night after work with friends and we shared a bottle of wine and had sandwiches. It was so good can't remember either name of the wine or food.\nIt was very small inside which made it cozy.", "type": "review", "business_id": "tA2DT7CGQPzgA6tTcTkXDw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "yy3jXczrKljJGzjo24HWfw", "review_id": "_TxGwAmum8nz0rG4lRqiKw", "stars": 5, "date": "2010-11-10", "text": "My wife and I absolutely love this place. Yes, it's a bit pricier... but yu get what you pay for: excellent food and service! The patio is even cigar-friendly, which is a huge plus for us! We visit often!", "type": "review", "business_id": "-3xbryp44xhpN4BohxXDdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "El-nrOv6QtsmsOnkXQDknQ", "review_id": "6Nr3rKGooh3ltZ-cdf0d0Q", "stars": 3, "date": "2010-11-17", "text": "The Phoenix Hooters is directly opposite the Sheraton Downtown hotel where I was staying. Was really hungry and didn't want to eat at the hotel so decided to give hooters a try. Hooters girls are always a nice touch. I really liked this location since there was a lot of outside seating. The food is what you expect from Hooters. I had the pulled pork sandwich with fries. It was good but then I was very hungry. Food quality was good and arrived quickly. Can't ask for anything more!! Hooters girl was also cute!! I would come back with a crowed of guy for a drink and burger. Prices are very reasonable.", "type": "review", "business_id": "qsWxbgQwuomXvMseg23DGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0n2jq7LIPQOzs74kPLCDng", "review_id": "5XTqH2H2bZE7dOSuDJiQ3A", "stars": 4, "date": "2011-04-04", "text": "Had lunch here with 6 coworkers and the server accomodated 5 seperate checks with no fuss. She quickly brought out two baskets of soft warm bread that looked handmade, along with pouring out balsamic vinegar and light olive oil for dipping.\n\nThe server described the day's special, but we all ended up ordering eight inch pizzas (a lunch only size.) I had bacon and chose to have it cooked in the optional brick oven for $1 extra (not sure why they offer it seperately, but exp. at other places made me like the way it cooks better than reg. oven.)\n\nIt wasn't much to go on, but the food was good, the service friendly and efficient, and the everything was clean and neat. Recommended if you're in the area.", "type": "review", "business_id": "Eeonj15SXvfR6kgvh8BOWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OrkXYCH82NnidREHsGn4uQ", "review_id": "vMidgtEXj4nYqi6xwrkNMQ", "stars": 4, "date": "2010-10-23", "text": "Great Thai and Chinese food. Friendly family staff. We were served by their very cool 11year old son. Kind of place you want to support. Food was excellent and very reasonable. Go for the curry-", "type": "review", "business_id": "d-YNxMKL6ZhkiRhfUPxKHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "SNjgu3SWKKAour5YQ68XbA", "stars": 4, "date": "2012-04-03", "text": "I'm so happy they put a location in Old Town. I had been to the location in South Phoenix before and it was awesome as well. \n\nI had the Chopped BBQ which is Turkey, Chicken, and Beef all chopped up and cooked in BBQ sauce. It was very very tasty. They gave me two pieces of bread to make a sandwich and with the 1/2lb order I still had more left over. \n\nFor my side I got the Texas Cream Corn which I really enjoy. It has great flavor and is an excellent compliment to the BBQ. \n\nThe location has a nice patio for the great weather we are having and you can also sit inside on picnic style tables.", "type": "review", "business_id": "4ic-c1LquBiT0IuvKXuEyw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "HpKLR1mrb634jCnTXQr3aA", "review_id": "D4DgV_DYaL_BziovD17JsA", "stars": 3, "date": "2011-03-17", "text": "This place is a hit or miss. Hence why I would rate it as average. I've been here so many times for lunch because it's so close to work and because coworkers would suggest it. I've had all the curries and every time the spiciness is different even though I ask for a 3. Sometimes it's not spicy at all and sometimes it's so spicy that my mouth burns. \n\nI've had the eggplant with chicken, but the chicken isn't as moist and tender as I hoped meat would taste like. They chopped up the chicken in very small pieces and seemed overcooked. I would stick with the different types of curries (red, green, yellow) though. It's safer. The curry sauce would seep into the meat and make it more tender. The curries can also be different textures. I've had it where it's thick and creamy (the way I like it) or more watered down. The lunch portions are pretty small, but I guess it's enough for a lunch meal. \n\nBeware Swaddee's if you're not too comfortable with spicy. Just order a lower number and you can add more chili if it's not spicy enough for you. I still would recommend this place and try your luck with the food here. You may get lucky and have a great meal.", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "B__HK1IcMgCjCWUNhDVBQQ", "review_id": "nosJy0WYUnioptbjWKGKPg", "stars": 2, "date": "2010-07-13", "text": "This place is the perfect example of a tourist trap. Nice location not far of the main drag of Old Scottsdale, beautiful building and layout. The margaritas are good, but probably $2-$3 more expensive than they ought to be for every one of the many styles. I thought paying $5 for chips and salsa was a rip-off, but then when the chips tasted stale, I was even less happy. C'mon, if you have tortilla and factory in your name, you ought to have fresh chips. I thought the tortillas themselves were okay, not great, but okay. The carne fuego, or whatever I had the waitress recommended, was not good. Small chunks of fire roasted steak completely ruined by a gloppy sweet/hot sauce. The veggies that went with it were just okay and the sweet potato-stuffed chile was weird. It could've been great, but it was nowhere near good. Unless your Aunt Hattie who has never had Mexican food is in town from Ohio, i'd skip this place altogether.", "type": "review", "business_id": "_tkAI5Q5XQSfgbqJzDKSDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JkVP9S9tUyzfavsDQMgYzw", "review_id": "CmGZTr9hI0lGYCn6cA0zWg", "stars": 3, "date": "2012-02-02", "text": "Outside the treats, you get an adorable and sleek interior which is very comfortable and feels great to be in, and fun people watching to boot. Its a little expensive for the drinks - I figure that comes with the territory.", "type": "review", "business_id": "ZEdaJ8mcMpPiFWgDuSPqeA"} +{"votes": {"funny": 6, "useful": 8, "cool": 7}, "user_id": "6WrOT1dj6sigl_voiwQ7HA", "review_id": "3ZugwbyuHR2a06UWsht1CA", "stars": 1, "date": "2008-09-29", "text": "Ok..I told Amanda that anyplace that serves beer would have a tough time getting less than 2 stars from me...I wish there were 1.5 however. \n\nAs covered by Amanda this bar is about as straight as they come..this bar personified would probably call bars with any hippness at all the bad F word for gay folk. In fact this bar would most certainly over-use that word. \n\nDoes Puddle of Mudd, Disturbed and POD know that their songs are available in karaoke form? Do they make money from them? Who was the first person to say damn man I can not wait to scream this song to the MIDI music only version over some beers this weekend.\n\nI had a good time...but I tend to make the best of things. There was far more facial hair than head hair. I hate phonetic spellings.. Oh lord don't ever make me go back.\n\n...eff it...I changed my mind. 1.2 stars and I am rounding down.", "type": "review", "business_id": "d7AGrZaeU6eHsdS_V1RcAw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "d2RAl63RTdfZF7kcuKcj-g", "review_id": "zyBsC19FOPWQ8M_RpT-KKw", "stars": 4, "date": "2009-03-22", "text": "Yummy, creative sandwiches! Good prices. Highly recommended.\n\nService is generally a bit of an issue, so if you are one of the prissy eaters who doesn't understand that serving can be tough, you'll probably get your panties in a wad.", "type": "review", "business_id": "IceZ4BtTz76eppjNWm-c6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NT0lSOTRV8OMDUAOsjbGfA", "review_id": "c7kg3GIJnGvf7_EW9tgr5g", "stars": 1, "date": "2011-06-06", "text": "Lets just say i was not to please with my experience at Nails R Us. After two days my nails were lifting on about 4 nails by the end of the weekend i had 6 nails lifting, so i went back and showed them and she was like its normal. No it normal to lift but not after 2 days! They did fix them for me free of charge but were very rude to me!!! Will not be going back there or will not refer any of my friends there!", "type": "review", "business_id": "sL1G1aVWDZFgqoGuO_O0oQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "pYi-pUxgatw4972I2kxx1A", "review_id": "YE48dtETjrllWFpoTBaZqQ", "stars": 2, "date": "2012-06-15", "text": "My friend and I have been going to camelback spa for about 5 years for our birthdays. this past year we decided to try something new. We went to Desert Ridge Spa for a change of pace - man were we ever sorry we did. the facilites are not nearly as nice as Camelback, the food service sub par at best - while they did make it right - the fact that my friend ordered one thing and was given another and we complained to the waitress her response, was \"oh I was curious at which one of you got the wrong order\" Really?? you knew that and didn't come up to us? I asked for my burger medium and it came well done, I am glad I didnt wait for her to come back and ask how my food was cause it was 1/2 hour before she came back. I was parched for some water. Although they gave us our food for free - it was just inexcusable. Have had better massages at Massage Envy- will not be going back", "type": "review", "business_id": "jPhmaY35qGP2qNc68viXPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SS_4_2lxQPVHyvD6FRO0vQ", "review_id": "F2mWGD7zYA_E3eaDlzmEhw", "stars": 5, "date": "2011-07-07", "text": "Fresh bread....awesome beans!!! Raspado...tostitos!!!!", "type": "review", "business_id": "j6VY9UwaQCiEWfQtNyEouQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "syeVHkzH1kvf_u1CseOuCQ", "review_id": "N2W2KlxQEz5GfSeX1eTwQQ", "stars": 2, "date": "2012-05-24", "text": "I did not stay here but went to visit out of town friends who stayed here. The hotel was definitely not designed for anyone with any type of mobility issue - steps everywhere! Steps to get ice. Steps to get to the pool area. Steps to get to the lobby. Can you find a way around some of these steps? Sure - if you don't mind going into the parking lot and circling around the building while cars drive past you. The rooms seem nice but there is no way on earth I will EVER stay here. This hotel doesn't seem to have any concern for the disabled whatsoever.", "type": "review", "business_id": "I941jBn1KURuN-2wygJ_5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MITn8veG3s3WAAX6wiUJKQ", "review_id": "CimsEclp05is4OpdK__NhQ", "stars": 5, "date": "2012-04-12", "text": "best. grilled. cheese. and. tomato. soup. ever.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fIvDzLhs-cXbTKWp8P3eIA", "review_id": "CbPHYxK4B8bRpRha4W9Feg", "stars": 3, "date": "2012-07-11", "text": "For 6 days out of the week I eat tons of fruits, veggies, nuts, seeds, whole grains, fish, etc. Tuesday afternoons is my cheat meal and I really look forward to it. This time I was looking forward to pizza. I love pizza.\n\nWe dined on Tuesday afternoon, the place was kinda empty so we got tons of attention from our waitress who was wonderful. For an appetizer we ordered the rock shrimp with garlic, basil aolioli (sp) dipping sauce. The shrimp were okay, but needed a more flavorful dipping sauce maybe a spicy marinara or barbecue. For my meal I decided to go with the soup and 9 inch pizza lunch special: butternut squash & margerita pizza. The soup was actually quite good. The pizza was good, but something was missing. Oh yeah, the CHEESE!!! Seriously, do I have to ask for extra cheese on a pizza? I really look forward to my cheat day and the pizza did not live up to my expectations.\n\nFor dessert I went with the donut holes drizzled with caramel and sprinkled with powdered sugar. The order is huge, seriously there were no less than 30 donut holes. Cheat day or not it was just too much. My husband ordered 2 scoops of vanilla ice-cream. After visiting a local ice cream shop where everything is homemade, this ice-cream did not come close.\n\nLong story short, we will visit again only next time we will ask for extra cheese on a cheese pizza.", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hLvf2jhy3LK1Je1LBZAcGA", "review_id": "YbRtT5HUW-qodfjOBQTGAg", "stars": 4, "date": "2010-09-30", "text": "Great Bellini, loved the Seared Ahi, Portabella and Beef Tenderloin Flatbread and Spinach and Artichoke dip! I highly recommend you select the same on happy hour! 3-6pm 7 days a week!", "type": "review", "business_id": "ttLtsY1S2Angj6hvEdzwDQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "Eo0o6m0gKBMgmooN_ZeFGw", "review_id": "naxpAVMjrO65Fr5huy9f1g", "stars": 4, "date": "2008-08-13", "text": "repeat after me:\ncreamy polenta covered with young brocolli stems and seared sea scallops!!!!!!!!!\nyum.\nrepeat after me:\nburatta with charred bread, heirloom tomatoes and drizzed with olive oil!!!!!!!!!\nyum.\nrepeat after me:\nasparagus, radiccio and hearts of palm salad with truffle oil!!!!!!!!!\nomg yum.\nrepeat after me:\nchicken stuffed with marscapone cheese, fig and other stuff that's really yummy!\nyum.\nrepeat after me:\nspicy spagetti with fruite de mare - clams and mussells!!!!!!!\nyum.\nrepeat after me:\nravioli stuffed with goat cheese and other yummy stuff!!!!!\nyum.\ncute and attentive waitier: yum :)\n\ni stayed at the firesky and had dinner at taggio for two nights in a row - not by design but necessity and i'm here to report that even though i didn't choose this restaurant for both meals, i'd come back again in a heartbeat.", "type": "review", "business_id": "On_3zLdujQdvDbBYUirNWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "nBFyVu9NZ9zhY49LRoULKA", "review_id": "lTpCc1QyuzcROvgz-FxKAQ", "stars": 5, "date": "2012-01-10", "text": "Along with Bliss, FEZ is another one of my fav brunch spots. They have $3 specialty drinks (mimosas, bloody marys, bellinis...). The service is always quick and the servers are always attentive and very patient with my ridiculous modifications. They have a drink called a \"g-spot\" and it is fresh grapefruit, grapefruit juice, ruby red vodka and soda. It is unbelievable and on thursdays they are $3 (i think) The menu is different with kasras and stylish burgers but somehow we always fill up on the appetizers. The cheese fondue and the little pyllo pockets are my favs. Ive never been disappointed at FEZ and I absolutely will continue to recommend it and go back! (Thanks thomas for the corrections!)", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "Gj_398oemu73V9DEFSYZjg", "review_id": "8Yd53xAv5QKTi-_JgMfp4w", "stars": 3, "date": "2009-02-28", "text": "the food was okay, it's a bit pricey. I liked the big wood boat they served our sushi on. not my favorite but don't hate it either.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "mUUy72UfqmFj_krWclKELw", "review_id": "r2VSvC-j8NL3Ofc3eLxldA", "stars": 5, "date": "2008-09-29", "text": "i love trader joe's!!! \n\ni think they're selection of products are just GREAT!!! i can't get enough of it.\n\nthe place is clean and the people are friendly. it's right next to michaels which is also great. it's in a convenient place. it seems like the people there are nutty-crunchy which i love!!", "type": "review", "business_id": "4EeLblEpJc2VeBowa94YPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mEMZxvHpemSxn1gl7Lj1Zw", "review_id": "FvH04ALRAlAT9i1gpu9xTQ", "stars": 4, "date": "2008-03-22", "text": "I started going to Sushi Eye since it opened. I quickly befriended Paul and Richard Cho who are the owners of the establishment. A more genuine and convivial Father-Son team of restaurateurs have never opened an establishment in Arizona.\n\nKoreans (by ethnic group) are by far the largest sushi bar operators in the USA and very successful at creating American pleasing establishments. The Cho clan left Northern California to come to the Valley for sun, golf and open sushi bars. They succeeded at all three. Loud House music, Sports Center on ESPN and lots of Shochu, can accompany your fresh escolar sashimi and ASU roll. If your sushi'd out try the Nippon-Hawaiian fave, Chicken Katsu. A warm, \"Irasshaimase\" awaits all who enter this charming dollhouse sushi bar. \n\nBy the way, I drank so much Shochu at Sushi Eye that I took a little nap on the gravel out in front of the establishment until Richard Cho came and rescued me from passing out in the gravel. A sushi chef and a finer wingman never existed in Chandler", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LzT8mSfliJHhs68RTwQW5w", "review_id": "IaG7bMOPppuiojRXnvVzTA", "stars": 2, "date": "2012-03-14", "text": "I was excited about the concept of a haircut and a beer. So, when I saw an offer from Livingsocial I purchased three coupons. Here's the trouble... I went on a Tuesday night at 6:30pm and was told they will not honor the coupon until 7pm. However, I was told if I wanted to pay for a cut at the standard rate, they would take me ASAP. Nobody was in the joint and they refused to take my Livingsocial coupon until after 7pm.", "type": "review", "business_id": "fhe6HAP9_IAMDyH8OEEIwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8DEtfP9Fmp5X1DG6iTtXnQ", "review_id": "rMjYr2inkmKYJEVX-ggWyw", "stars": 5, "date": "2012-08-01", "text": "Attended the Table 12 Lunch & Learn event with guest Chef Mel Mecinas and was truly blown away. I have previously eaten off of the house menu, so was expecting just as spectacular presentation as Chef Beau Macmillan presents - I was not disappointed.\n\nOur party started the night at Jade, which I have written a review for previously. Great place, wont go into much detail there.\n\nThe meal started with with an entree of a rare tuna, bacon, asparagus, and hollandaise sauce. Second course was Korean short ribs, brussel spouts, and lotus root kimchi. For dessert, twas a bourbon banana creme with carmel popcorn and candied walnuts.\n\nThe meal could not have been more amazing, and the service was just as good. Have already booked the event on Aug 18.", "type": "review", "business_id": "2OY8xs4aqOt8eTnYokdrww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "bi-cjl__VcBUruHW2Ufjlw", "review_id": "ZcnmjcZIxHBkVqL4-4s46Q", "stars": 4, "date": "2010-01-21", "text": "I've been here twice, great decor, cute & really friendly staff, and lots of really nice people to shoot the bull with. I've heard the food is really good too, but haven't tried much of it yet. I did try the french fry basket, it was nice and huge, and the hot wings are good, they use Franks, so if you like reg hot, get the hot. Happy hour specials are a good value too. Will return often.", "type": "review", "business_id": "eqdEOyNbEvl-Gne_w3_0jw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uM-Vc-yM0Gr3MJRfZPeIwA", "review_id": "qUobZQ6GQX58NzNwXaV9KA", "stars": 3, "date": "2010-04-19", "text": "I'm not feeling the love here. Went to Hillside on the recommendation of a friend that lives nearby and loves the place. I would love it more if it was my local caf. We went on a Sunday morning, knew there would be a crowd but the wait in line wasn't long and we had a table right off. The entire line stopped while the order taker bagged up the to go portion of my order, my friends pie to go ordered at the same time took over an hour to get to the table. What was that? the food is good the portions large. They can't afford to get a number system for the tables? A wait person stood behind the drinks station/bar bellowing my name. not even stepping around. I had to stand up and holler because I COULD NOT FIND THE PERSON WHO HAD MY FOOD. The food was nice but living in the east valley I wouldn't drive cross town to eat here again.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "AFcPlRXsp2pDWsg24XUvzQ", "stars": 4, "date": "2011-07-25", "text": "Ok, Ok, I know I said I would never bring my clothes here, ever again.\n\nI was having a rather busy week, so I told my Dad to drop my clothes off to the cleaners. I thought he was going to take my stuff over to Continental where I usually go, but he brought everything to Seville. \n\nI was a little upset, but being the angel of a son that I am, I bit the bullet and smiled. I thanked him for helping me out. \n\nWhen it came time to pick up my clothes, I carefully walked in (knowing I slammed them in my past review) and quietly picked up my clothes.\n\nI got home, and noticed that one of my shirts had not been cleaned properly. There was a stain on it from what I think was cola. Later that day, I drove back to Seville, and they offered to clean it once more.\n\nFlash forward to the next pickup day, the stain was still there. I asked for a manager, and it happened to be someone that seemed to be the owner. He asked how much I paid for the shirt. \n\nThey gave me a check for the FULL amount. \n\nIt's very rare that I write a review update that spans a few stars (only DeFalco's comes to mind), but Seville took my crappy situation, and made it right. \n\nI was VERY hesitant in coming back the first time around, and it was only because I was forced to. I'm glad everything worked out the way it did. Not because I got a new shirt out of it, but because I got a better experience.\n\nWay to step up your game Seville. I'll be back if I'm in the area!", "type": "review", "business_id": "TjK3u3XIJA9nS2FJnti-3w"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "om64hB61Q9M8z98qJK9tfQ", "review_id": "Sw2NyNwWaUsuF-S6Woa5yw", "stars": 5, "date": "2010-11-22", "text": "I've often driven by here, & figured I'd go in & take a look sometime. \nBut I was looking for a clock-mini-speaker system that I use with my iPhone 4. \n\nWhen I had my 3G, I had a very bad experience where I was assured that a particular clock-mini-speakers I bought would work with it - but all it had was a cheap plastic adapter that the 3G kept falling out of - & then they gave me a hard time about a refund.\n\nThis time, I was again getting either glib reassurances & non-specific information, \"sorry out of stock\"s, or NO OPEN floor samples I could look at, at 3 other stores (including the big A Store with a lot of Jobs), not to mention conflicting info on Amazon & upon Googling. \n\nSo I thought to go into the iStore. Boy, was I pleasantly surprised! They had open, plugged in items that I could actually test my iPhone 4 in to make sure it worked. Even better, I began chatting with the guys there about various other iPhone & MacBook Pro issues, & found they had FAR more knowledge about BOTH the phone & it's peripherals and MacBook Pro's (and HONESTY about them) than I ever got from the \"really-really-smart\" folks at the Big-A-Store-with-Jobs who will promise you anything. \n\nSo, I would definitely go back there for honest advice & I would certainly bring in anything that needed warranty service. They also have a pretty nice selection of peripherals and better yet, they know WHAT WORKS WITH WHAT!", "type": "review", "business_id": "jkxwhmUKKPeKTZnRE4yL4g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "3kE6UBKKUvWTpMjQYsMfjw", "stars": 3, "date": "2010-10-14", "text": "Sometimes the downside of Yelp is that you read so many great reviews for a new restaurant and you garner these very high expectations. That's what happened with St. Francis anyways. Our bartender was not friendly at all. The dessert was very good however! Hopefully next time the service will be better - sometimes you just catch people on an off night.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TFoC8qQCI2VfQe3rB0Q0ng", "review_id": "oEb5CRSge82b_hK24rWH1w", "stars": 5, "date": "2010-04-16", "text": "As far as gourmet burger joints go, this place is the bomb! I am a huge fan of Deluxe Burger and now they have a run for their money! Plus the parking is much easier at Zinburger. I had the Zinburger, and we shared sweet potato fries and regular fries. Everything was delicious! All 3 of had the Zinburger, so not much variety at our table, but we all finished our burgers, and given the size of them, I was pretty surprised/impressed with all of us. The burger was heavenly, juicy and cooked perfectly. I would definitely go back, again and again!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KQURCNvwamJV1vXUiDm15g", "review_id": "BLl2A6L2yF4qs8pXavZyVw", "stars": 5, "date": "2009-07-03", "text": "I work across the street and love me some Hava Java. The morning crew is very friendly, and the coffee is great. I am a big fan of the Swiss chocolate blend, (or any of the flavored blends for that matter!) they are really flavorful without tasting at all artificial. I buy Hava Java beans and brew them at home, but when I stop in for a quick cup of coffee I always have a good experience.", "type": "review", "business_id": "2h9LsLPdJ7OvZrYJZhVdAw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "KqayigmkZK-fD0awCn12Xw", "stars": 5, "date": "2010-02-23", "text": "This is the largest urban park. Moreover, that urban part is great because I am 10-30 minutes from three major trailhead areas. \n\nFor hiking I like many points of entry, one of my favorites is telegraph pass, this is on the south side of the mountain. A new recently remolded parking lot is found on desert foothills parkway. There is a paved path that is about 1/2 a mile and at its end Telegraph pass is to the left and Desert classic is to the right.\n\nTelegraph pass grows in steepness towards the top where there are some larger stairs. At the top, there is a bench and you can then continue on National trail. If you head west, you can reach a great Ramada.\n\nFrom the pima canyon entrance I take the fire road to national, after the initial ascent it is just some rolling hills, I then make left to hidden valley where there is a great natural tunnel, Follow this trail to reach fat man's pass, contrary to the name there is a narrow gap that fat men cannot pass luckily you can go around, this meets back up with national trail. Many unique rock formations on this hike. \n\nFor shorter easier hikes from this lot, you can do the east and west loops and Beverly canyon all small trails that loop, and have a few nice views.\n\nFor Mountain biking my skills are not too advanced so I stick to the east end of desert classic, with mostly straight section and a few wash passes and slight hill inclines it's great for a novice rider.", "type": "review", "business_id": "PoRYjYUSjmeWM1WLsx_45w"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "fmsJOI_EwYj5QdFYXrjfow", "review_id": "IYvquxSHbKXSH2ru2dzaBA", "stars": 4, "date": "2011-01-28", "text": "food is good ,but they have to re-model those bathrooms they are piss soaked and the smell makes it all the way to the dining room oooff!!!!!", "type": "review", "business_id": "lnX2gaGdO0fNtykyFrp1AA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RHLKZQWKlfraZcFNjJYxpQ", "review_id": "FKU3Eurvig2XLaPUMu5Odw", "stars": 5, "date": "2012-01-10", "text": "They get five stars now. You know why? Three little words I long to hear: Gluten-Free Buns! (OK, technically that's two words, but I love them nonetheless!)\n\nThe buns are a dollar extra, but if you are like me and are tired of eating a burger with a lettuce wrap, or worse, with cutlery, just for the illusion of a sense of normalcy, they are worth it. And, frankly, quite tasty.\n\nI don't know if all RR are serving them now, or from the same bakeries/distributors, but I for one am glad for it!", "type": "review", "business_id": "BRhKD4BEMg6NagsD3z-0YA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pllc3jWFmwvkPcPYHTQs-g", "review_id": "w5fAOjo4Ifvl0hBrJ7oo4w", "stars": 5, "date": "2010-10-17", "text": "A most unexpected gem! If you are a wine drinker, fabulous flights! Great selection! I can't say much more other than... AWESOME!", "type": "review", "business_id": "a9Wk44qJLWoJQT-_H8MB-w"} +{"votes": {"funny": 2, "useful": 8, "cool": 4}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "lhfeBY6lVSJVNaYOtS0UMQ", "stars": 3, "date": "2008-04-15", "text": "I can't help but feel the same sentiment as Nathan S. - I sort of feel bad giving this place only 3 stars with all the other rave reviews.\n \nLet me start with the positives - \n \nI love love that the place is so small and intimate. Especially in comparison to most Valley restaurants that are just cavernous. And with the European-style seating you have to get friendly with your neighbors. Both of these things make this feel like a good NY restaurant.\n \nI also love the atmosphere and decor in general. Very authentic Spanish, very laid back, not all hip and modern like most restaurants try to be these days.\n \nThe service was extremely friendly, from the hostess to all of the waiters and waitresses and bus boys that came by.\n \nMy husband really liked the Sangria (Tinto) - he said it wasn't very strong but tasted great.\n \nIndeed, all of the food tasted very good. Our two favorite dishes happened to be the daily specials - the Eggplant Barcelona and the Turkish Custard dessert. But the Tortilla Patatas and the Gambas and the Spinach with Garbanzos were all great as well.\n \nNow to the negatives - \n \nFirstly, selection was dreadful all around. The wine list was very minimal, and the very limited bar didn't help. And there were only about 8 dishes to choose from. When I go for Tapas, the whole point is having a wide variety of small plates to choose from!\n \nEvery dish was DROWNED in oil. Literally, bowls of oil. The food just sat in my stomach afterwards, and I felt like I needed to take a shower to rid myself of all the grease.\n \nThe sizes of the dishes were very inconsistent. I know it's tapas, and I love me some tapas, but generally at tapas places I find you could likely split each dish three ways. The Gambas and the Spinach were both huge piles that could have been split up to 4 ways. But then the Tortilla Patatas was barely large enough to split two ways, and then our two favorite dishes - the Eggplant Barcelona and the Turkish Custard - were both smaller than a deck of cards and splitting them just two ways left us each with a single forkful of food. There was a party of 4 next to us that put in 1 order of the Pork Tenderloin and the waitress said, \"You should really get 2 or 3 orders of that so everyone can try some.\" 3 orders for 4 people to try it?!\n \nThen, right along with the food size is the price. $90 (incl tip) for the 4 tapas mentioned above, plus a glass of sangria, 2 glasses of wine, the dessert, and an espresso. 2 of the tapas were one bite per person. Yikes.\n \nThe food, while good, was nothing outstanding. There was no dish that made me stop and say \"wow, now that is well done.\" They were solid but not amazing. (As opposed to the Lomo Embuchado at Cobras y Matadors in LA that I was ready to marry and make babies with).\n\nSo all in all, I'd say a 3.5 star experience, rounded down because it just wasn't a 4 for me. I can't help but compare this place to my favorite tapas place in the valley, Sol y Sombra in the DC Ranch, where they have a huge selection of fantastic wine (and a full bar) and a huge selection of delicious and much larger portioned tapas for the same price.", "type": "review", "business_id": "xdwPHc25l7_roZ9Kfea13w"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "4K-PpsBC-DXRf2MItYi3Tw", "stars": 4, "date": "2011-08-27", "text": "Well, I've been to Liberty Market several times now and it's time to add my two cents. Yes, I know, there are already 250+ Reviews, what more could I add? Don't worry, I'll stick to the facts; consider this the cliff-notes version.\n\nTake the first parking spot you can find or drive the the lot west of the building. Walk in, grab a menu, and get in line. With all of the goodness on the menu, try to make your decision before you get to the register. \n\nA few of my favorites\n1. CORTADITO - coffee drinkers, do NOT miss this one! Cuban miro-latte, on the sweeter side, served in a pair of espresso shots or a bowl, perfection!\n2. Rancher Salad - steak, caramelized onions, blue cheese, arugula, do I have to keep going?\n3. Sweet Potato Salad - a unique salad, SO much better than your average potato salad\n4. Cinnamon Rolls the size of a human face, if you're into to that kind of thing, share with a friend, or four.\nthere are more, but I promised to keep it short.\n\nBack to the line. As you're making up your mind, be ready to answer the number of people in your party so they can set you up with a table. Try to resist the incredible looking, super-sized pastries and desserts in the case, or not, what the heck, just get it!. Pay the friendly cashier, proceed to the fountain drink station to fill your glasses, and maneuver the maze of tables to find the one with your number.\n\nJust a few tips. One, it can get a little noisy in there, so may not be the best place if you're planning a discussion over your meal. Two, LM gets busy and the staff is always trying to find a table for the guests in line by the time they finish at the register. So, while the dining room attendants are friendly and attentive, they are definitely trying to turn the table as soon as you'll let them.\n\nAnd now you know what to expect. If you don't like lines or loud places, this might not be your favorite place. Overall, delicious, fresh food and shinny, happy people to bring it to you. Let's just say LM is enough to get me out of my five mile Ahwatukee radius, and that is hard to do! Now you know the scoop . . . I'm out! Enjoy!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7MJJ4dacV5wzslKT3izK8Q", "review_id": "2SyBuAtRjEF8DMTzFvsK0Q", "stars": 5, "date": "2010-03-03", "text": "I live in the townhomes right next to this restaurant and it still took me 4-5 months to actually try it. Absolute blasphemy as I see it now. This is a charming little place, decor outdated enough that it's sweet again, friendly servers, and man, great food. The pesto cream sauce ravioli (I believe) will blow you away. The wine glasses are filled high. Everything is great quality. Prices are medium-range, most dishes ranging from $11-18 but coming with a salad or soup and bread. This would be a great, great date night spot.", "type": "review", "business_id": "9XX-sxaDFXlXO65WnuS65Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "F82JoyU1Y5yFuSeKfGxoAA", "review_id": "7b60WOm-OCmZgM6Bzfh3lA", "stars": 4, "date": "2011-04-19", "text": "Great service by the owner (Nick). He's very accommodating and aims to please. Friendly and helpful. I hadn't had an Indian fry bread in over 10 years. There were several meat choices to choose from and several vegetables to add on top. Unfortunately an earlier catering order cleaned them out of re-fried beans and bell peppers. The salsa was good, spicy but not hot. The owner kept the place open for me to enjoy my meal while we chatted. He even stayed open later to feed another customer that walked in after the place had been closed for 10 mins. He even gave me a coupon for my next visit. A truly caring owner. Nice place in a strip mall with plenty of parking.", "type": "review", "business_id": "sRhfzx8P_VAdmofWMSPD3A"} +{"votes": {"funny": 0, "useful": 4, "cool": 2}, "user_id": "lczLjHO7zIhrmSlOXI3ohg", "review_id": "wWeqZz_WqYpLF81e_J4-xQ", "stars": 5, "date": "2009-12-05", "text": "I put forth that we need to institute a new standard of measurement to be used for comparing coffee shops. Furthermore, I think that Cartel Coffee Labs should use this place as a standard for this new unit of measurement.\n\nI have to assume it's called a \"Coffee Lab\" for a reason. Too many coffee shops these days are retail stores, where coffee is an incidental thing in all the yelling, stupid names, and fancy colors. If you look at the menu of Cartel Coffee Lab, there are a total of 13 items. It's all about the coffee, plain and simple.\n\nThen again, there's really nothing simple about it to those who take their coffee as seriously as this place does. The artistry of their baristas is not to be trifled with. These people can make a latte so pretty, you really won't want to drink it (until you do, then you're happy you did). On top of that, the selection of coffee varietals is impressive. I've only tried one, but that alone was better than anything Starbucks tries to pawn off on the masses. Perhaps the use of the term \"Lab\" is because they've actually stepped beyond anything any other coffee shop has done. Either way, the formula that they came up with works better than anything I've come across before.\n\nThen again, maybe I'm being too hard on the other places. It's not that they have an intrinsically inferior product, but the reason for these places has been lost behind t shirts and mugs and open mic nights and selling you a card containing the same money you'd use on the place anyway...\n\nI digress. Cartel Coffee Labs is a great place with a fantastic product. If their WiFi is weak or the back corner gets dark, I honestly don't care. Their coffee is excellent and I'll be coming back for more.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 6, "useful": 8, "cool": 9}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "hzr2ge0wo-x6MlGsXzGrOw", "stars": 3, "date": "2009-03-30", "text": "Minnie and I stopped by Papago Dog Park today on a whim... \n\nIt was a beautiful day and since she was such a good girl in the car with me and at my afternoon meeting, I wanted to reward her. Rather than travel out of our way to go to Chaparral Dog Park (our usual dog park destination), I remembered seeing this place, specifically the fenced in / off-leash area, and we swung by.\n\nIt was just after 4pm, and there were a handful of dogs there, and more were coming the longer we stayed. It's a lot smaller than Chaparral, and the grass is not the healthiest I've seen... Unfortunately, there were several areas that owners didn't clean up after their pooches too. (Come on, owners, you give the rest of us a bad name!)\n\nAnyways, we had a nice 30 minute visit... Minnie sniffed out a few other dogs from behind and then they returned the favor to her. Don't you love how they socialize with each other?! Too cute.\n\nAnyways, will this become our dog park of choice? No.\nIs this a viable option if you're in the area? 100%.", "type": "review", "business_id": "oD3K3aT52uNdLaYmGnRV8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2nXVVKX3K4Httr7-IU1Rew", "review_id": "-dyBFg-hZGzkT5w4FH1S2Q", "stars": 3, "date": "2011-10-25", "text": "I was way excited to try this restaurant since it's so close to my house. I just assumed it was one of those places that looked like a dive outside, but served up a piece of heaven inside. Once I read the Yelp reviews, I was convinced I had made a sound real estate investment!\n\nMaybe my expectations/hopes were too high, but I thought it was just ok. I liked the chips and salsa, and the service was friendly without being in your face. We ordered a round of margaritas which tasted good, but were really weak in terms of the amount of tequila. My father had the garlic shrimp and octopus which was really delicious--if I go back this is what I'd order--and I had the fish cuilichi was ok, just kinda heavy and not really something that got me excited. The girly girl in me says, \"not worth the calories!\"\n\nI think I'll give it another try some time in the future--perhaps it was an off night.", "type": "review", "business_id": "NYBx4sdSVrN-I5Q8RfLMPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Q6FaSZpCtVv7PXECwDL1bg", "review_id": "a_V9wwlIeoD6VvJ9eYtwQQ", "stars": 4, "date": "2011-07-06", "text": "Fast service, attentive waiter, food cooked as I ordered, clean restrooms...What more could I ask for? I was on my way to a meeting at the Marriott so I stopped in to grab lunch beforehand. I was in an out in less than 45 minutes. Perfect.\n\nI'll be back the next time I am at the Desert Ridge mall looking for a place to grab a quickbite to eat without ordering fast food.", "type": "review", "business_id": "OmxAvtMyIvCVm16NFIOOUA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "rSxu4DcvWcilImgpcS8Tzw", "review_id": "Pu6gkAX-o91WZ2U1Qug5pQ", "stars": 4, "date": "2010-06-24", "text": "This is a great place to go for a glass of wine and appetizers with your girlfriends. My girlfriends and I went there to celebrate one of our birthdays. We sat on the patio by the fireplace. Our waitress was awesome she let us try as many samples of wines that wanted to. The wines are very good and pretty inexpensive. As for the appetizers they were just ok. The bruschetta is good, but the spinach artichoke dip was tasteless. This place stands out for its ambiance, great tasting wine and good service!", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CudlbVQsaP4d8LATjkgfFw", "review_id": "WRakYyGpQbpEdPfJZxSL8g", "stars": 4, "date": "2011-04-20", "text": "I've never had a bad meal at Z-Tejas. My favorite is the Jerk Chicken Salad, but I've also had some great scallops there. The cornbread is always delicious, and they're famous for their margaritas.", "type": "review", "business_id": "z1Np8_oQECKWGCwJJ8864w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YJ69qGzOvGYmxkjbQjAejQ", "review_id": "rlNhlySEjL752rXgA6pZ0g", "stars": 5, "date": "2012-04-08", "text": "First time having Scandinavian food, everything was excellent. Will return soon.", "type": "review", "business_id": "5SS69rC8XWvdlD1OHifEEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "IA3upsh-hkj-dglq_f8yFg", "stars": 2, "date": "2011-04-23", "text": "If you have a family with a lot of little kids, are absolutely happy with your body, and only want to leave your house to change your scenery, this is your place. If you are looking for a great workout, this is not your place. The hours are pretty bad and you have to plan your schedule around them. The cardio machines are good. The variety of weights is okay but they are all over the place. They have a suggestion box, but they don't take them seriously. The classes used to be good, but now the quality has gone down. The zumba class used to be my favorite, but not so much anymore. They should have different levels, but there is only one and it is slow. There are kids all over the place. I dont understand what parent would want their 6 year old girl learning to shake her butt, but I can't judge, I don't have a kid. Maybe when I have one I would want her to learn to dance low and shake it, so she can be asked to go on MTV. The majority of the classes are in the middle of the day, which is great if you dont have a job or anything to do with your time. Yoga? there were a couple good instructors, but they are not there anymore. What do you guys do to your instructors? Why do they run away? Why do you make it hard to get a good workout? I dont think I am asking for much here, just a place that I can get a good workout.", "type": "review", "business_id": "Pka4ncyteQ0nmq82AgPrYg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "fIvDzLhs-cXbTKWp8P3eIA", "review_id": "un2PW5io90ZteyCzn9Pv3Q", "stars": 4, "date": "2011-12-03", "text": "My sister and I went today for brow waxes. The establishment is spotless. Cleanliness is really important to me. My esthetician was Alexandra. She was very professional and explained everything she did before she did it. I've had many waxes and know the procedure, but it was a nice touch. \n\nWhen we arrived for our appointments we were told about their package prices. I'm a pay-as-you-go type person so I declined. It was not a hard sell and I really appreciated that. I made a follow up appointment in 2 weeks.", "type": "review", "business_id": "SF43rzRcmrHxaFNN3Pacjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pJ3kMwJQJsSZmewt_wzPPg", "review_id": "yPNKoTo0W2j-6CxfONssLg", "stars": 5, "date": "2012-01-31", "text": "This place is great!\nIf you talk to anybody they have a suggestion for a great flavor.\nYou can bring in food from another place to enjoy and just enjoy a great atmosphere.\nWith the music that someone has an issue with you can just talk to the DJ to get a suggestion they are MORE than accommodating.\nThey have a great happy hour prices! \nOverall great prices, great people, and a great time! If you have the right mind :)", "type": "review", "business_id": "Br9Ruk5yY9ui8OiKChWdgw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1pbDBfeOWnRVrotNPRzAzw", "review_id": "3akoBAMnL8-H1QJu9tCC-Q", "stars": 5, "date": "2010-08-29", "text": "This is definitely the best Indian restaurant in Phoenix. The tandoori chicken and aloo tikki wraps are to die for. You cannot go wrong with this place!", "type": "review", "business_id": "V9i9LnTg9H2XvzqCVBSOXg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "eI_iX-so_LNK_Tke1-osig", "review_id": "AhV6mFhMF7PgeReHce6zgQ", "stars": 2, "date": "2009-09-21", "text": "So, clearly the musician's make the night. Our night was not so hot. Half of the bad that we caught wasn't worthy of stage time, the other half was. The horn players were exceptional, the Keyboardist wasn't. I'll stick to the facility. The Rhythm Room is a Phoenix, classic on the music scene, or so I'm told. This was evident when Paul Reed showed up with his horn and just joined the band on stage. That was cool and made you feel like you were in the right place. Beyond that, I'm can't really claim that this place is worth the time. We'll have to try it again to confirm, yet my urge to do so isn't high right now. The neighborhood is questionable. The entrance is not obvious, the bar and the service are not inviting. The music area of the building is excellent. You sit very close to the band. The one thing they need to fix within that is two sets of band doors would allow for a much faster setup/teardown between bands. We waited for an hour between bands. The Rhythm Room is missing an opportunity here, they need a comedian or something the fill the gap. \n\nSome fresh eyes on how this place is run could really make some simple improvements. Just because it's a known classic doesn't mean that it can't change for the better. The one thing they have right is that the sound is good and if they're getting good bands, then it makes for a great night. The annoyances only become obvious when you have an hour to descern them between bands.\n\nThe musician's interaction with the crowd before and after shows is really cool. This makes everyone involved feel like they're in the scene.", "type": "review", "business_id": "JZJqJadk9pSoCGT7VTwBvg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "vSxaLh9RCl1BJDbIt0hxww", "review_id": "0fC3ZE4g1VrEe1G621IaPA", "stars": 2, "date": "2011-02-20", "text": "the pedicure was nice, I will give them that... but lady must have wanted 2 close shop early that day as I told her I wanted a pedi & an acrylic manicure when I first walked in. (She asked another customer to come back the next day while I was getting pedi). Needless to say, I didn't get my acrylic set, and towards the end, I could tell she was 1/2 arsing it... and they were a lil pricey... I mean, really, $5 for taking off my nail polish? I would give this place 1 star, but they did do a good job on the pedicure. not returning here...", "type": "review", "business_id": "cDlnR62ds1dcVdbjN1bYiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "sndE97Pal3tBiaI9NzP_wQ", "stars": 3, "date": "2012-10-19", "text": "This seems like a decent place to get a drink, if youre so inclined, before going thru security. \n\nThe service was so so, but I also think our waiter was in training. We didnt venture very far into the actual restaurant, just sat at one of the pub tables by the enterance to keep an eye on the security line, so I guess its good for that as well.", "type": "review", "business_id": "sspvIv6br3Vto2s5JkeiMw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "KYCW5xpBif5eqt-jvIHTdw", "review_id": "0FsbmwunV8wsSClhKg5lFA", "stars": 5, "date": "2008-02-29", "text": "In 1999, I was discharged from the United States Marine Corps.\n\nKeeping a high and tight well maintained was a real pain in the ass because barbers dont understand what the hell its supposed to be like. I am sure that many of you who keep this style of haircut understand.\n\nAny barber can sit you in a chair and cut your hair. This guy used a razor to get skin close on the sides, and a leveler (no, I am not kidding) to make sure that the cut was even.\n\nI have gone to at least 20 barber shops in the Phoenix, Mesa, and Tempe area. This barber shop beats them all.\n\nThis is the BEST barber shop in Phoenix. I have been a repeat customer for 9 years, and I will keep going back until they close up shop.", "type": "review", "business_id": "TYGIfpFrYYrKXOPexst5xQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "X8pfLhF0LABJ5LNeuowCKA", "review_id": "89DZILgPs_wpV_KASJWv0A", "stars": 5, "date": "2011-03-01", "text": "Tweet tweet. I decided to follow Market Bistro on Twitter just recently and am sure glad I did. This company really knows how to treat their 'followers'. \n\nI have been a fan of Market Bistro for 2 years now, they have such a comfortable setting at both locations and the food is impeccable not to mention reasonably priced.\n\nI have always opted for the Market pizza, a dish that includes artichokes, large sundried tomatoes and a flat parmesean encrusted dough. There hasn't been one time that I've visited Market and felt disappointed in portion size or my order. I have such an appreciation for an establishment that takes pride in their food's ingredients, atmosphere and customer service methods.\n\nAs for salads, If you can take the 'heat' I would absolutely recommend the Arizona Salad. The chipotle dressing, black beans, rice and tortilla crisps are a terrific blend of taste for your palette. You will feel right at home here in the southwest with each and every bite.\n\nIf you haven't already started your car or phoned in your order at Market, I'm 100% sure you are crazy.\n\n#BRAVO (hashtagging seems appropriate here).", "type": "review", "business_id": "Uke8Pq1m918WW0n0_jEmWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "180tLY4YhUAuckejm5v53A", "review_id": "Y5QW-2QbMS4e-5gggl5D1A", "stars": 5, "date": "2010-08-11", "text": "These little sliders are tasty, delicious and pretty speedy. You get two and you can get them with or without grilled onions. There is a home made type thousand island dressing on them that adds so much to these wonderous burgers! Fries are 5 star as well...also enjoy the people watching...Scottsdale at its finest!", "type": "review", "business_id": "nUIkqgFimmLsB50WXVwTfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E679YrWlyTpvkOBDhAssIg", "review_id": "uINIGEl3fVTessHqh4w9Kg", "stars": 4, "date": "2012-08-22", "text": "Good coffee good location, but not a place I'd want to hang out. It's not that inviting to me for some reason. That said, I do really enjoy their coffee!", "type": "review", "business_id": "e9djgIbIn-toCOwmRTpgCw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gVgbIRT9mJkeWSAzBA9i6g", "review_id": "N3Ut6LtL3lIOfTZDNzR-AA", "stars": 4, "date": "2011-04-04", "text": "Phoenix Muni is a great stadium to see Oakland A's Spring Training Games. Yes, it's older than many of the other Arizona stadiums, but it has a simple charm that serves it wall. Great seats can be found just about anywhere in the park, and for $22 we were in row 7, just to the right of home plate. It's also pretty easy getting in and out of both the stadium and the parking lot.\n\nThe only (minor) negative is probably common to most stadiums: there don't seem to be enough vendors (at least beer vendors; several people around us mentioned it), and the concession stands can get somewhat backed up at times. But for a relaxing place to watch baseball in the Arizona sun, it's hard to beat Phoenix Municipal Stadium.", "type": "review", "business_id": "n-Q7d10K0h6PyNewmiHLyg"} +{"votes": {"funny": 4, "useful": 9, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "XbG_brproKg8wYuQJTLjNw", "stars": 3, "date": "2010-01-07", "text": "Sauce has grown on me... particularly this location since this is the one I frequently end up at for a quick lunch or casual dinner spot near home.\n\nI typically order chopped salads at lunch. The chopped turkey & feta salad is what I had today. I had them add asparagus, which was a great call if I may say so myself! The large salad and fresh roll is the perfect lunch... fresh, filling, healthy enough, and pretty inexpensive when it comes to designer salads around town. I also like the spinach, pancetta & goat cheese and the veggie & aged parmesan salads. \n\nMy husband eats at Sauce often as well... he goes for a salad or sandwich. Last time we were there together, he had the salami, turkey, prosciutto & mozzarella panini. I had a bite and was pleasantly surprised! It had a nice balance of thin sliced meat, cheese, lettuce, tomato, and tangy red wine vinegar in between two perfectly grilled pieces of bread. The thin crust pizzas are pretty decent also. Depending on your appetite, sharing a pizza and a salad with your companion can work out to be a satisfactory meal... \n\nWhat I like about Sauce the most? Fast, friendly, and efficient service in a clean and casual environment. The moderate pricing is also a big plus in my book... especially in this economy.", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Nt77Zlby0TH1Cw0E6aDVwA", "review_id": "vvWPdmujhDXEMcr3AN1Y8g", "stars": 4, "date": "2011-05-06", "text": "Been to the Spotted Donkey in Carefree multiple times and always been happy. (can't speak to their new location on Hayden as we haven't been there yet). The drinks are very good, if a bit pricy and the apps are wonderful. Ordered the short stack of nachos, stuffed peppers and enchaladas this time. All very good and tasty. One note, everything seemed to be a bit \"saucier\" this time, especially the nachos. While the sauce is very good and tasty with a good amount of spice, it was a bit mcuh for me. I don't remember it being that way before so perhaps this was a fluke.\n\nWill definately be back", "type": "review", "business_id": "LdI-fcJDXGE7ns_jwWY2ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NiznCY3sXPh-nkQjoTPFrQ", "review_id": "KHCNZ7NRGoYydLAZPnguQg", "stars": 4, "date": "2009-03-01", "text": "We went to Ocean Prime the other night and it was delicious. I don't know if it was worth the money but it was definitely good. The setting is as attractive as any restaurant I can remember, with classical contemporary decor and a very cool display of alcohol bottles in the bar.\n\nI was in a party of seven and the prevalent dish was the bone-in filet. We had heard it was better than the steakhouses in Chicago. Well I'm from Chicago, and trust me, you get a better (and bigger) bone-in filet at Joe's. But it was still a delicious steak. The sides were terrific and the salads were good too. But those prices! Wow, value is not this restaurant's strong suit.\n\nAbout the only other thing I'll add is the service was below average, a concern considering what the prices were like. Our server tried hard but he was too slow and didn't get our order right.", "type": "review", "business_id": "JEreQgso7MH_Io3DXGsEOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oY0QNmFG77hNaNwpPTLShA", "review_id": "fHLAVvhnFKk1c9HHaA1xPA", "stars": 5, "date": "2012-08-18", "text": "One word to describe this hotel: quality. The pools were all warm and unique. The hotel has two hot tubs, one that changes colors at night and is next to a man made stream, the other is on its own \"island\". There are two pools, a lazy river, and a small pool. The rooms were comfortable and the whole facility was clean. One thing that must be commented on is the staff was not only efficient but they were very friendly and nice. All of the food and room service I ordered was filled with superb flavor and had good presentation. The hotel also has a botanical garden, herb garden, multiple lawns, and it contains different food services. I highly recommend the ranchero pulled pork tacos and the sushi. The Marriott burger, creme br\u00fbl\u00e9e, drinks, and fromage board was very good.", "type": "review", "business_id": "jPhmaY35qGP2qNc68viXPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iKDDbFu1lyA8-CVlGLFHcw", "review_id": "ljqWjeQK4Oxo04K7sWbBRQ", "stars": 3, "date": "2011-03-09", "text": "This place is your standard hole in the wall pho. They've got good tasting pho and spring rolls for cheap. :D The cleanliness is definitely lacking but more flavor fo' yo' noodlee!", "type": "review", "business_id": "IXB3PGgSmw4bjTe9ll-tQw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "yVAKdZa4iuV3Sq7tFMOGpQ", "stars": 5, "date": "2012-12-08", "text": "As good as all the others, and closer to home than most.", "type": "review", "business_id": "VNLiEBJyt7UfB1mI9puITg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "i1iaLhsO26OefrP-6Y41WA", "review_id": "8U_d6jPKi4yhU-Blb1Fmqg", "stars": 3, "date": "2012-03-14", "text": "U.S. Egg is situated directly across the street from Denny's. A nicer and classier environment than Denny's but the quality of food is similar (well, slightly better) and a bit pricier. Service here was really friendly however.\n\nOrdered the Triple Play (pancakes, eggs, and bacon) but substituted the regular pancakes with their famous protein pancakes which are packed with oatmeal, blueberries and cinnamon. Bacon and eggs are always good, tough to mess those up. The protein pancakes had a nice flavor, but the oatmeal which is mixed within the batter before they are poured on to the griddle actually messes with fluffy texture that I enjoy whenever I eat pancakes.\n\nIf you are really big on breakfast and brunch food and don't want to eat at a nationwide chain restaurant it may be worth it to check this place out, just temper your expectations on the protein pancakes.", "type": "review", "business_id": "zruUQvFySeXyEd7_rQixBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KT6aazXSAQsngVUYTYdPeQ", "review_id": "RKo6FENQyM2kOskKXGDuxA", "stars": 2, "date": "2011-01-23", "text": "I went to this place after seeing a segment on Diners, Drive-ins and Dives (Food Network). I thought that the fusion of Chinese & Mexican food would be good. I was a bit disapointed. The food was okay, but nothing too special. The establishment itself was clean and the service was quick, so kudos to them for that.", "type": "review", "business_id": "Lnohr9bpCbHNsomazXDg-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "KY7MQzgtx6Z5WFBIXVcoIw", "review_id": "Caph3q-MdbSShcHgKBly9Q", "stars": 4, "date": "2011-12-21", "text": "Stopped in there December 17th. They have a great sound system that fills this large bar up nicely. I got the sampler platter and it's all fried, and it was definitely edible, I was wanting more! Lot's of beers on tap. Chuck the owner is very nice and easy to talk to and always has a grin. Julie is a hard worker and keeps the beers flowing, take of the wait staff and they will take care of you. Oh they had a live band there, Whiskey Tango was the name of the band. I left there with money in my pocket, this place will not break you, it's a working mans bar. I will definitely go back there!!!", "type": "review", "business_id": "n_wZriiakBT7sVn87dpcEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "XCzaTPjSUgAOzdEUEUh1hg", "review_id": "Y4CtbRPa3ZmtisVL2wmbSA", "stars": 4, "date": "2011-03-30", "text": "This was my 1st spring Training baseball experience so I can't compare the ballpark with any other. \n\nHowever, as a newbie I can say that I appreciate the intimate setting. Every seat is a decent seat. Hubs and I had seat right behind home plate for less than $30. It's a really chill atmosphere. Feels like a college ball park.\n\nThe concessions are priced fairly. The bathrooms were clean. \n\nI had a great time. \n\nSee you next year!", "type": "review", "business_id": "n-Q7d10K0h6PyNewmiHLyg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "AOC3bEkZ7pTiXRdz0Tgp9A", "review_id": "y727z5s7ziROvku6F_rrIg", "stars": 1, "date": "2012-02-18", "text": "The service here was awful, we waited patiently for over 15 minutes for our server to come by our table. Finally a hostess came by and noticed nobody was helping us and got us drinks. Another 15 minutes roll by and finally our server decides to make an appearance saying \"have you guys decided yet on what you want?\", uhh yeah!\nOverall, service was poor and food was just okay. Won't be going back.", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0aouU2Yfzvdie87pI12-Uw", "review_id": "oncwn2geLvhpcQAwdbvicg", "stars": 5, "date": "2012-08-17", "text": "Good place to chill with a drink somewhere lowly lit and good live music. All the bartenders are really nice and that's always RAD:)", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "swJ6rmmGx4DCxosDfKTElw", "review_id": "wcbPYofgyCUsJOsjkY9Gtw", "stars": 4, "date": "2009-02-22", "text": "It finally opened! The sign has been on the building for at least 3 seasons, maybe more, but the wait was worth it. We needed a breakfast spot in this central area sorely. The order system is like Pei Wei, line up and order at the counter get a number and sit down. Bad news, the wait was long, the good news, the food is great. I guess, I revealed that I'm impatient and want instant gratification. Thank God that they gave me a cup for coffee after we ordered and got our number to pin on the table on those \"Alligator Clips\". Every time I use those things, I flash back to the early 70's using those clips for that last toke that then gave the super munchies.\n\nCoffee, $2.50 a cup for a bottomless cup with plenty of choices and in a to go cup. Atmosphere.....very hip look, open ceilings, nice patio, great colors and great sayings on the wall to remind us of cool sayings to remember while we nosh. Breakfast came pretty quickly considering how many people were in the restaurant . I had a breakfast burrito that was plump and was plenty of food. I just hoped for more....maybe those alligator clips reminded me of the munchies of the 70's. Sandra had a cinnamon roll and although I thought it could have been bigger....she enjoyed and said \"It was fine and filling\".\n\nSaw several friends there, all overweight and they said the portions were very satisfying. \n\nThis is stupid but I love it. The Dyson hand dryers in the bathroom. They are the best. I'll be back for more and they can earn that fifth star I'm sure.", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "YvF9xRLyvDLqMAVkRTJcAg", "review_id": "zV2ecdBhma5h9ZGIH-ih1g", "stars": 5, "date": "2009-04-16", "text": "Panda Garden is a family run Chinese Food Restaurant that is always friendly, and most importantly, delicious. You can order dishes family style and there's plenty of delicious meals to try. My personal favorite is the Empress Chicken, sweeter then Orange Chicken, but the flavor just melts in your mouth. I just had the Kung Pao Two which is Chicken and Shrimp, and its even better the next day as leftovers thanks to the generous portions. They have a good selection of sake and beer as well. This is my favorite Chinese restaurant and hope everyone else checks it out.", "type": "review", "business_id": "507GX11jtCsVYlzaur05_w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QMtB_nKKh9Z6OEFHE6b8Kw", "review_id": "OzOBjwkb_705280n5oikPg", "stars": 2, "date": "2012-06-20", "text": "I had a good bad experience while at Cadillac ranch. The inside decor was pretty cool and had comfortable booths, which I appreciate. We ordered three different appetizers that were on happy hour before our entrees. The Wontons, the queso dip, and the Chicken tenders. The tenders were good. They were beer battered and tender. The queso dip was pretty bland and the chips awful. They weren't stale but just obviously super low quality. The Wontons were obviously frozen and sitting on a bed of syrup. It was like having desert and appetizers at the same time. When it came time to order entrees i was the last to do so. I asked my server about an option between three entrees and she danced around all of them suggesting that I have a pulled pork sandwich that was clearly less expensive than the ribs, steak or taco plate I inquired about. I should have headed her advice. It isn't every day a server tries to under sale you I ordered the ribs and was disappointed. the texture was off the flavor was bland except for the sauce which was spicy and not good enough to mask the bad flavor. My server Liz was awesome. She was attentive and friendly. She noticed I hadn't eaten my entree and took it away. The manager came back and was apologetic he offered me another entree and I took Liz's advice and got the pulled pork sandwich. It was much better. The staff was good and did there job very well. It isn't their fault the food quality is so bad.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_8o_CVDQNWx3QluULdaTdQ", "review_id": "Y0MSBSg8AqpzLobWC8aTKQ", "stars": 4, "date": "2010-03-13", "text": "This place is great. They have the best veggie burger - yes veggie burger - that I have probably ever had. It is spinach based and has chopped jalapenos in it for some kick. When I buy an entree, my kid eats for free. So not only is the food good but it's very fairly priced as well. \n\nAnd much better than the regular Big Fat Greek Restaurants around town.", "type": "review", "business_id": "WyJRPTn2FCFdj2cYT9pqyw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "VKX0dQue8PQqNa2dMR4C_Q", "stars": 1, "date": "2011-11-15", "text": "Closed on Sunday? Looks like you've not only lost my Sunday dollars, but my business on Monday through Saturday too.", "type": "review", "business_id": "zht8__JJoxkozBhf_vuKYg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k0iLX341x3mm9golh9wejQ", "review_id": "q3Vep95DYShvBa3WmtUkXg", "stars": 5, "date": "2012-10-14", "text": "Beautiful hotel, great pool, nice restaurants, fantastic service, fabulous place to stay.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LdhwY7eudLlx1KFQQe9GwA", "review_id": "lc_GXewm6m5H4pIKmI8-ng", "stars": 4, "date": "2011-11-04", "text": "The Lodge has been a pretty consistent happy hour spot for me over the last year and a half. Their food and drink specials are a great way to wrap up the week on a Friday night. I like their chicken strips and the cheese curds are great. The pretzels are also delicious. Service is typically pretty good, you'll be able to keep drinks coming and food comes out quickly. There's a lot of entertainment there, with corn hole and giant jenga outside, and some video games and a pool table inside. \n\nI don't love the Lodge as much for a prime time or late night spot...It gets a lot more expensive and a lot more crowded. Go for happy hour, order some cheese curds and a $3 Miller Lite and you're bound to have a good time. The decor is kinda fun, there are random acts of taxidermy inside and it's very, uh...Log cabin like.\n\nA funny (but pretty well known) fact about this place is that Jared Allen (Minnesota Vikings) is a part owner of The Lodge, so from time to time you may run into him and some other NFLers there.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "u-M4jMYKXsj-l1BYdyNpRQ", "review_id": "0R7bd8_NwPPPWNRociExpA", "stars": 5, "date": "2011-08-03", "text": "*CASH AND CHECKS ONLY*\n*OPEN 9 AM, 7 DAYS A WEEK*\n\nLove this place. Took my daughter here a year ago to get her very FIRST haircut. We had Miss Tara, who provided us with a \"first haircut\" certificate and she also had these tiny quarter-size ziploc bags for my daughter's very first strand of hair that she cut. The haircut was $15. Along with the haircut, Miss Tara styled it and put clips and glitter in her hair. My daughter LOVED it. \n\nThe place itself was kid-friendly. There's a little kitchen for the kids to play with while waiting for their haircut. There are 3 big kid chairs for older kids to get their haircut. And there are 2 car-styled chairs for the younger kids. \n\nI took my daughter for her SECOND haircut today. We had Miss Annette. She was great. Again, my daughter got her hair styled after her haircut and got glitter and flowers put into her hair. The haircut was $15. We also got a punchcard, where you're 9th haircut will be free. \n\nThis place does walk-ins, but it is better to call and schedule an appointment since they don't have a specific opening/closing time. They take CASH ONLY so keep that in mind.", "type": "review", "business_id": "4jDDSE2q8X97FjJutOcAqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ORSWIOs1RIOf2ydv4hBQcQ", "review_id": "GUKYe2KRWkVHiWEkm3FJBg", "stars": 2, "date": "2012-10-02", "text": "It was an OK gyro for almost twice as much as the other places I've been to. It had a ridiculous amount of mutton sausage (that's what \"gyro meat\" is, fwiw,) and was pretty tasty, but not as good as a $4 gyro at Ali Baba. The price you pay for location, I guess.\n\nThis would have gotten three stars, but then it gave me indigestion all day and I couldn't eat dinner, so it loses some for that.", "type": "review", "business_id": "tWVuAPWXvW2g8ce0WWepXA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "8PSUiFWz11tGdYy9xEFPZA", "review_id": "aMDlBRwGJW8QUX0vE4_waQ", "stars": 4, "date": "2012-01-17", "text": "I stumbled in here craving breakfast because it was very close to the airport and very close to the Aloft hotel I was staying at. Yes, I am a tourist and yes, I am from a part of the US where cowboys are not common, so walking into a place full of country western paraphanalia made me smile. The service was good, the food was delicious, and I walked out with a few good photos. The coffee was a tad bit weak, but I'm a starbucks bold drinker, so I don't hold it against them.", "type": "review", "business_id": "1AMncE6Lxdr6J9PeqZi4nA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q7srymiZYDicJC9wEUU4kQ", "review_id": "fAkFNFCkEVUbkgwWaNj65A", "stars": 4, "date": "2012-04-23", "text": "Had the spicy beef lunch plate with four sides. It was outstanding! Great kimchi too.", "type": "review", "business_id": "i_H_yKtISROjQ4eruSwyPw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3q8FzgSsKSzjzQxC212Mug", "review_id": "u-p4Mua7xs1WCTYDRJ6hvA", "stars": 5, "date": "2012-06-11", "text": "Amazing bagels and a great staff. I always get the build your bagel sandwich it's heaven!", "type": "review", "business_id": "8H1DwdAAgSBtwDeb2R-hmA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "8leoUQELdWao6zLgRlAt3A", "review_id": "LrWCKKhPE15xO-j7_NWPew", "stars": 2, "date": "2012-04-18", "text": "This place used to be really good, but it just is not the same. The price is now the same as a sit down Mexican restaurant with real plates, and the food is microwaved and served like a fast food place. The things that are deep fried are greasy, and the things that are microwaved are tough. The prices just don't fit anymore, and that might be the location, and landlord problems. I miss the old day's There is no way Maria Munoz would ever consider the way the food is made today. The food, while it is still good, is over priced and microwaved. Real sad, and the amount of people going there is in decline.", "type": "review", "business_id": "68euKezXqyvsE49cIGdL2A"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "jq7PwMN9x8lmQcWZ8E0QeQ", "stars": 4, "date": "2008-08-05", "text": "I really like this place. I spent 2 years in Honolulu and used to eat at this great little place in China Town. I have been craving that food since I got off the plane to move back to Phoenix. Well, I found China Chili and I am SO glad I did! The Honey Walnut Prawns are so yummy! The fried rice and lo-mein noodles are smoky tasting, and hot out of the wok. Is it healthy? Maybe not. Is it non-greasy? Um... not really. Is it delicious when you're craving some really filling Chinese food? Yes. I wish it were closer to my place so I could have it more often, but I'm sure I'm sparing my waistline of more issues!", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "lPaYMDmJbAnv_3pmZH_inw", "review_id": "aCVCTzk3l7Ls_41HZSZYAw", "stars": 3, "date": "2008-08-21", "text": "You know when you make a copy of the original and its not quite the same? Juts a little fuzzy around the edges, not as sharp but usable? That is how I felt at the new location of Market Bistro. Similar vibe that I enjoy at the original isn't quite as pulled together at this location. Maybe the lack of a lounging area or the weird particle board chic tables? Or the fact that every table was dirty except one by the blast furnace (front entrance).. maybe the grease dripping on the glass in front of the grill? No forks? I'm sorry if I sound like a banging on MB.. but these are things that can be improved on. \n\nThe Mr and I shared a salad and a Cuban sandwich.. the control freak in me of course got off on the salad making.. this was probably the best salad Ive made to date.. you should be able to patent your creations! The Cuban sandwich was okay.. the ciabatta rolls are so thick and chewy that when you take a bite the toppings sort of fire out the back.. for a Cuban sandwich I think it had some sort of Asian spice, like cardemom?? Anyway, the Mr didn't like it at all. This being his first time he was confused as to why I went on and on until he took a bite of my patent pending salad, then it all made sense to him. The salads are just so complete and delicious!\n\nI look forward to coming again.. I just hope that they can make a perfect copy of the original or go for a different feel entirely.", "type": "review", "business_id": "Uke8Pq1m918WW0n0_jEmWw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "sUTQfzzxxc2c3g6cFH19pQ", "review_id": "G5PBgjdj7h4M4AG82EcHRw", "stars": 4, "date": "2011-10-23", "text": "Went there for my birthday .... \n\nAnother quality insured restaurant, it is inside of Four Seasons, it cannot go wrong .... \nThe restaurant is very classy with a nice and upscale environment .... and most of all with a very nice view to the phoenix area \nThe service is definitely top-notch and food was excellence as well. Had the sea bass and the filet mignon .... both were yummy .... and customized birthday desert as well .... \n\nWill go back for a visit for sure ... \nAlso if you are in Talavera, don't forget to grab a drink in the patio as well .... they have live music and watching the birds flying around the mountain (the resort is built into the mountain) was quite a view", "type": "review", "business_id": "H9wnP4BIctmRxMq43NPgAA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bAuKPiWTMtCoNNcPBGWssA", "review_id": "FcB24vEtWZaM4ZRZgxyyEw", "stars": 4, "date": "2012-12-05", "text": "I have been shopping at the Men's Wearhouse for a little over a year now. It's been my go to place for business casual clothing that is required at my job. \n\nThe staff has always been very friendly and not too pushy, even when they are working on the upsell to get me to buy a couple more ties or shoes.\n\nBeing neither Big & Tall or Short & Stout, I appreciate being able to go in find some slacks and get fitted to my exact inseam. Add to that a guarantee on the tailored items, I will probably continue to go here.", "type": "review", "business_id": "rWXKA8HuYnJKcUAh_TZZag"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "e6jqQ_YXlGiLPi1z2HO0Pg", "review_id": "mod2Fb2WRw4gTkbFeQqHnQ", "stars": 3, "date": "2011-03-14", "text": "Oh, True Food. I want to love you.\n\nBut you make me feel like I'm eating in a cafeteria. WIth such a contemporary menu and a staff full of bright shiny faces this restaurant is just a contradiction in form... the menu and ambience just don't match.\n\nMy advice is to sit at the bar. The drinks are well served by pleasant bartenders and do their job, the stools are comfortable, and from that locale you get to skip the experience of having dinner with a room full of strangers right at your elbow.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "FbXYzo-QVDr65QpVjndqiQ", "review_id": "RNfGy6KVym2ZlaP7i1Ud7w", "stars": 3, "date": "2012-08-24", "text": "went midweek and were seated right away\n\nTable was clean, service was adequate but food, meh.\nHasbrowns barely cooked and no flavor and the famous biscuits were more like mini loaves of bread with no biscuit consistency and the gravy was honestly just blah. After hearing such rave reviews I had to try it once but don't need to go back. Kinda sad because I love breakfast.", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ysg-bL8JKUcnJ1ks5RB2pQ", "review_id": "iKrrAL_IIdM4rsxJexg_iA", "stars": 3, "date": "2012-09-23", "text": "I really want to gives this Sprout's location 4 stars but over the past few months when I get a deli sandwich the bread has bean stale 1 out of 3 times I'm there so I can't do it. If this Sprout's can consistently not give me stale bread I'd be happy.\n\nOn to the rest of the store....\nSprout's is a great farmer's market with a great selection of produce as well as great meats, seafood and cheeses.", "type": "review", "business_id": "ezh7DWNch2eNHTUyAnV7lg"} +{"votes": {"funny": 9, "useful": 15, "cool": 13}, "user_id": "Ps1Db9zOatoF_76FZNO5CQ", "review_id": "DVWwtmVt-XFb3lXylbSQ8w", "stars": 4, "date": "2009-12-15", "text": "I was one of a party of 13 for a birthday party on Saturday night. Yep, I was odd man out again and in more ways than one as I will note in a bit. We got started a bit after 7 and first we got our drinks and spent some time chatting and reading the menus. Most of the folks there had been there several times before. Everybody but me wanted pizza and wings so I ordered fettuccine Alfredo ($18.95) with salad and garlic knots. I know it's un American not to be a fan of pizza and wings. Their antipasta arrived and I sipped on my beer. Then the pizzas came, then the wings followed by my pasta. Somehow my order got separated from the rest and I had to ask for my salad and bread which finally came last. The side salad wasn't earth shattering but was solid and the garlic knots were nice warm pieces of bread. The pasta was delicious. I mentioned I was not a fan of pizza or wings but I was coerced in to trying both a pepperoni pizza slice and a couple of Giovanni wings. Both were really good, the pizza was a thin crisp in spots crust. The wings had none of the heat I normally associate with wings. I had to take some of the pasta and bread home with me. After dinner there was warm Zepellies and the birthday girl got this huge ice cream/brownie/whipped cream thing which her husband and I finished most of. If you followed along, you will note I ate a lot of different stuff and I paid for it for several hours afterward.\n\nFor a large party we got quite good service except for my salad arriving late. I just had the one beer (25oz) but most of the women were there to get their drink on and amongst them had several different mixed drinks and with one exception (weak) all were done well.\n\nThis is a big sprawling place with 2 bars and more TVs than I have seen outside of Vegas. The original space which is sort of set off from the rest of the area has pool tables and darts. There is a good sized outdoor area too.", "type": "review", "business_id": "DHk8is9rvfnATsW1AudWQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "H4JbSzSC3dZXF_9D9dAzqg", "review_id": "KCjOl9-bNskd_XkSPj7qJw", "stars": 3, "date": "2011-01-30", "text": "Had breakfast at Joe's Diner this morning. I had the number 2, and a side of potatoes. It was supposed to come with 2 bacon and 2 sausage, but for some reason, mine came with four pieces of bacon. I didn't question it because the waitress seemed a little absent minded and we had to ask for a side that she had already forgotten. The few times she came to check on us, she would ask if everything was ok and would walk away so fast that we couldn't tell her what we needed. The positive here is that the pancakes were REALLY tasty. I would have given Joe's 4 stars if the service was better, but I think there could be some improvement there.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "IwxFKXDokKZdiD5iUdJPgQ", "review_id": "KcPdh8Kyz4MiyxjGcR_Zlg", "stars": 5, "date": "2010-05-08", "text": "This was such a good experience\nI was up all night with a extremely severe painful tooth ache\nI don't have health insurance so I didn't think I could afford a dentist\nFriends and Family told me to look up a dental school and thats how I found A.T. Still\nI called and they said they accept five Emergency patients a day at 1:pm\nIt was 11am but I didn't care I drove straight there and I was the first patient seen at 1p.m.\nit cost $15 to be seen, $15 for the X-Rays, and turns out my wisdom tooth was infected and had a cavity\n\nso they sent me up to oral surgery, it cost me $85 to get the tooth extracted\ni was nervous and they talked me through it and calmed my fears\nIt didn't hurt at all, I was numbed up and the student did a good job\n\nthey gave me a three prescriptions to take with me and I have to return next week for follow - up\nthe follow up appointment is FREE!\n\ntotally recommend this place to any and everyone!", "type": "review", "business_id": "uZ25ne-OUBwzjSkWPFRbUQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "kJ58pJCnNChRCyIuutwK0g", "review_id": "O_IX2aZrHvT6i8n1OxyjKw", "stars": 2, "date": "2010-10-17", "text": "Well laid out zoo.Space good for animals...More for kids than adults. Zoo had limited number of animals...who were bored,listless,hiding mostly. Water ponds for animals were stagnant with algae! All in all Not a great experience. They are going to expand it seems...but they should pay more attention to the animals they have . Celtcharm", "type": "review", "business_id": "1Ap6ZNCvyLLKHP0wvCk9yA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "66PQJEHC0tCWGMI4V9KT-Q", "review_id": "71pd7mRxVuAalunKrspG4g", "stars": 5, "date": "2011-07-07", "text": "Is there a way I can give LUSH an extra star???\n\nPros: Friendly & enthusiastic staff, incredible products, lots of samples, phenomenal smells, reasonable prices, and get this, an HONEST company!!! Read their bag, it'll make you love them more.\n\nCons: if you're sensitive to smells, brace yourself. Also, if you're the type that wants to be left alone while you shop, beware. The staff is excited about their products.\n\nDon't miss: R&B hair moisturizer (it drives men crazy!), Coalface facial cleanser & Brazen Honey exfoliating mask.", "type": "review", "business_id": "mWjlJ0Mvde4nBvM9nXlU-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Znu5KKqytHfmjbXfQo3f4Q", "review_id": "HLnH651YCnIy-shO48v-5Q", "stars": 4, "date": "2011-12-31", "text": "We live in the neighborhood so were excited to see a new place with a huge range of beers open up.\n\nThe decorations are a bit sparse, but we like to sit on the patio or the conversation areas near the bar, which are perfect this time of year. Yucca chips are personal favorites, as is the gnocchi bolognese. Burger wasn't bad, but a burger is just a burger. They're still adjusting their menu it seems, which I expect any place to do for the first few weeks as they settle in.\n\nI really love their commitment to craft beer, especially Arizona beers. $5 pitchers of AZ beer before 5:00 is not only quite a tasty offering, but appeals to my love of all things local.\n\nGive OHSO a try!", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qsRNxnsTbVL1ea83m-jY4Q", "review_id": "0_7Xo8OM0fxB6Qlp-qUNAg", "stars": 5, "date": "2012-07-28", "text": "this place is so darn cute! You might miss it if you are driving too fast. The food is like nothing I have ever experienced. I had the pot pie, mmmm was that tasty. All of the chicken and veggies are wrapped up in a pie type crust with the gravy on the side for dipping. I have never enjoyed a pot pie as much as this one. The only thing that was slightly off, was the lighting is very dark and the portions are small. With that said, the portions being small left us room for dessert. The dessert was out of this world! You cannot go wrong with any of their items on the menu! I will be back for lunch for sure, and will bring visitors to this location too!", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 6, "useful": 10, "cool": 7}, "user_id": "AnH84g9V10x41CXmCvcaFg", "review_id": "CUp2wLgXsP0o2PsErmF3Tg", "stars": 2, "date": "2009-05-07", "text": "No, I don't want to take the bus to get to the train. \n\nIn my opinion, they didn't go far enough for people who live in Phoenix. It may be a good solution for Tempe and Mesa residents commuting to Phoenix, but it isn't effective for Phoenicians who want to get from the north valley into CenPho.", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Zcx66YAlgyClDEhi5W86Hg", "review_id": "1yqOc7IaG9wHD4-BWdbBrw", "stars": 4, "date": "2010-09-16", "text": "Love sitting at the sushi bar, the chef's are always super friendly and really fun to watch. The urchin with the quail egg is a MUST for all you sushi lovers.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 7, "useful": 8, "cool": 7}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "i1SiwDWKGNvo7hNes8W4FA", "stars": 4, "date": "2012-07-25", "text": "I am not happy with the co worker who introduced me to Forefathers. Do I really need another way to feed my addiction to cheesy, beefy goodness? \n\nOf course I do!\n\nThis small restaurant in a Tempe strip mall has earned a special place in my heart. No, not just because of the artery-strengthening cheese. It is home to the best cheesesteak I have experienced since moving to AZ.\n\nWhile the menu offers a variety of choices other than cheesesteak sandwiches (chicken and even *gasp!* salads), I stick with what I know and love:\n\nRegular with Cheez Wiz ($7.35) - bring your appetite, because this sandwich is big! A generous portion of thinly sliced meat and that oh so important Cheez Wiz is nestled within a soft bun. It is gooey, drippy and messy. Perfect. If Wiz is not for you, it is also offered with white American cheese, Provolone or Mozzarella. While I prefer mine with just the basic meat and cheese, you healthy types can also get any combination of 'OMG' - onions, mushrooms and green peppers.\n\nFries are a very nice compliment to the sandwich. Let's be honest here, fries are a very nice compliment to nearly anything. Forefathers' fries ($2.55) are hot, salty and crisp. If you haven't gotten your fill of Wiz on your sandwich, you can turn those fries into Cheese Fries ($2.95). Either way, be sure to grab a container of 'fry sauce' (I am guessing this is some blend of ketchup and mayo). One taste and you will want to put this on everything. \n\nLucky for me and my cholesterol level, this gem is nowhere near where I live.", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QnMPMD8Nh3ErZGfMRGAeYg", "review_id": "IktgaHr6D1QppoYCvnxQtw", "stars": 4, "date": "2010-05-03", "text": "Some of the food here is fantastic such as the Chicken Corfu $14.95 and others like the Gyro I found to be less than good becasue the meat was very dry some parts burnt with the obviously strong taste of fish. I sent it back and they took it off our bill. The remainder of the meal which consisted of the Corfu, salads and soup was great and our waitress; the owners daughter promised to address the Gyro with the kitchen. This restaurant is located at the park in Fountain Hills with unobstructed views of the lake and fountain which erupts every hour spraying water more than 500 feet in the air. We took a nice walk in the park after dinner which was very relaxing. Recommended", "type": "review", "business_id": "vN4mFODLd-gLmDg261wsyw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "B3uJfHeRainL3piiAFjKtw", "review_id": "Y5FYhKI8lbzZzMlCR52x0w", "stars": 1, "date": "2012-02-11", "text": "2nd time messing up our carry out order. Boneless wings have bones and no carrots or celery again!! Hamburger with only tomato, cheese, and BBQ sauce had onions and lettuce, when we specifically said no lettuce or onion. Allergic to onions and don't like shredded lettuce. Thanks to Tiler for messing up our order again. Will not be back.", "type": "review", "business_id": "h1kwVr1eTpBK0rWfcm5QSg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CyRKjjsDl6a56vyr7lS1YQ", "review_id": "8f1qXD2WIWL4c8l9y_U9dg", "stars": 2, "date": "2012-02-24", "text": "Ok here is the deal, I am sad to only give ground control 2 stars because it should be way better. This is in walking distance to my house and I come here almost every day. I have coffee, muffins, salads,and so on.\nThe coffee is usually good, the muffin was great, the salad was so so bad, and the service is kinda strange. \n Its a small area you would expect this place to be really friendly and helpful, not the case. They usually are busy talking to the other workers or have some small project going on, never are they happy you are there its almost like they are bothered by you. the salad i had there was really bad, the lettuce was wilted and slathered in dressing, I sent it back and it looks like the \"chef\" just put it on a new plate with a little fresher lettuce and a lot more dressing. wasted my $7.00 bucks. Please Please Please Ground Control get your act together so I can give you more stars.", "type": "review", "business_id": "I7cItiwL8NOPM45ipSf1QA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "llkm_iXQszkN5DZvmqjNqA", "review_id": "RT74DgUWJsbTy7m7wZZ4cg", "stars": 3, "date": "2006-11-27", "text": "Not a bad place.... It is defiantly more tex-mex than authentic... but they have Mexican beer, margaritas and is in a good location.", "type": "review", "business_id": "0K35eGvzVRZEirNo5v_WfA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "I2CFVHx8YM3K0OKIs6vPXg", "review_id": "v7W5JhSOXylxC6ue1cyXoA", "stars": 4, "date": "2011-06-12", "text": "Jan Ross has one of the best selections of crystals I've seen - they literally had every crystal I was looking for, and I subsequently left as a satisfied customer. Friendly staff too.", "type": "review", "business_id": "o571CmC40T0zUzl7FXzqXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AitJM3uwO_dgOMhup0HAHQ", "review_id": "lwccamxKvhNo2M3IurBFXw", "stars": 5, "date": "2010-01-05", "text": "I absolutely love the food here! The sushi and Walnut Shrimp are cravings that I must give in to. This is a nice, small restaurant that is exceptionally clean and comfortable. Good for a casual date, lunch any day (their specials are a great deal), and the owner managers are on site most hours they are open. \nYou have to try the Walnut Shrimp!", "type": "review", "business_id": "jFoLuxZFScgt5ZXNPTIOhg"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "uTc1puvwUpFYryEHo4DNaA", "review_id": "lz_z74dUlIYPBbDXoMsGdQ", "stars": 3, "date": "2009-12-11", "text": "Finding this quaint location wasn't to hard... i like that there is a parking lot right north of the place... as well as street parking :) \n\nyou walk in the place and wow... its a completely different atmosphere... low lighting but in a calming way rather than creepy... \n\nthey have a DJ.. the music makes the setting but to be honest it was a little odd for my taste,,, \n\nOur waitress was very nice and helpful... automatically served us cucumber water... (which tastes amazing!!) and then asked for our drink orders ... a good waitress can seriously turn everything upside down or completely make your visit ya know... its a pet peeve of mine.. customer service... \n\nevery table had a pink candle lit... pink lights hung above the chefs area... it was just so relaxing! the mirrors on the wall around this cool looking splatter painting... i was diggin it... \n\neverything on their menu is served as appetizers... which kinda sucks.. they are all at least 6-12 bucks at least ... from what i saw.. and the waitress said that they recommend for people to get at least 2-3 a piece.... wow, on top of drinks.. its kinda pricey to me.. good thing we shared everything... \n\nthe lemongrass chicken (cant remember the full title) was amazing!! so good... the gyozo (dumplings) were alright.. a little too minty for my taste... we had this other thing where they bring you the hot stone and you cook your own meat... it was alright but the stone only stayed hot enough to cook the meat med rare... i don't like my meat to moo at me... so its was alright... but i prefer it well done... \n\nthe beef wrapped in grape leaves.. well i was soo excited to try them.. but was sadly disappointed... they were so fiery hot (spicy) that i almost had tears in my eyes... never did it say on the menu .. SPICY... after a server came over and saw us gasping for water.. he filled us up and said, oh yea those are pretty spicy... wow good thing i had my TUMS lol \n\nover all \nThe atmosphere was amazing..... \nthe staff was fabulous... \nthe food... eh... \nthe menu is crap... if your gonna serve spicy food you should say its spicy! isn't that some sort of health hazard?! \nand its kinda on the pricey side... \n\ni think i would go back again... But i don't think i would opt to... \nthere are alot more dishes i would like to try... maybe a different location would be better?", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "YiuCu8bWN3moIhhhfvp0CA", "review_id": "LHFxXA9pr0KU2FlhmNCgMA", "stars": 4, "date": "2010-06-25", "text": "One of my favorite aspects of this Central Phoenix wine bar is that it is still somewhat \"undiscovered,\" aka not teeming with hipsters and young professionals on a Thursday evening after work. It stays busy, but not jam packed. \n\nTheir Happy Hour is great, nice $5 small plate options, and you must try their cherry lemon drop martini. Seriously delicious. Get a ride from someone, because you'll probably want another :) \n\nThe decor is cool and they play French movies on a large screen in the back of the restaurant. I also have a special place in my heart for their awesome sweet potato fries! This place is a great option if you want a nice glass of wine and a bite to eat in Central Phoenix but don't want to brave the Postino crowds.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "Wn47EMhtvJQZTsfvvcnkJg", "review_id": "AVqE_IW94Pqxzvw7U3MLTA", "stars": 5, "date": "2012-01-09", "text": "Even for meat eaters, Green has a lot to love. A lot more than just tofu! I go here at least a couple times a month for lunch and it's spectacular 95% of the time. A few of our favorite items are the BBQ \"Chicken\" sandwich, Thee Argentine sandwich, the crab puffs and of course, the Tsoynamis. Everything is fairly priced ($8 for a sandwich, $7.50 for a bowl w/ your choice or rice or noodles). The only thing I don't particularly care for is the buffalo wings as I think they are far too salty. The ranch that it comes with is fantastic, though. Also, if you get something with cheese make sure to use Daiya instead of Teese. Daiya tastes much better, in my opinion.\n\nThe atmosphere is very artsy. There are always paintings for sale and there are a bunch of old car doors and hub caps over to one side. They just got a few booths which is fantastic if you want a little privacy. There is free wifi, a booshelf will all sorts of great reading, and the staff is always super friendly.\n\nAnother great thing about Green is the vegan market. They have all sorts of great vegan foods and books for you to spoil yourself with. It's the only place I know of where you can find Teese, Food for Lovers Queso and Soy Curls. As an aside, I highly recommend Soy Curls as a healthy replacement to the meat in your fajitas or cheesesteaks.\n\nAnother thing you absolutely must check out is their annual ThanksLIVING festival on Thanksgiving. They will load you up will all sorts of delicious and traditional Thankgsiving day food, veganized. \"Turkey\", stuffing, biscuits, brussels sprouts, asparagus, cranberry sauce, gravy, corn, pie and a drink. You'll get guest speakers, live music and local arts and crafts. Highly recommend.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "fiElz5yl1mSkse--Jhameg", "review_id": "Q3Tf6LY6AIIFBx8hF8a2bQ", "stars": 5, "date": "2012-07-11", "text": "Burger was delicious and fresh. Fries were well seasoned and crispy. Huge selection of bottled sodas from across the nation. Fun and good! Definitely coming back.", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t5oluA_-GZ6ykAjbSSngOA", "review_id": "PfJfj5sN1iNIQfoYKCiwLQ", "stars": 5, "date": "2011-09-24", "text": "Neighbors had told me how great this place is and after reading the positive YELP reviews, I decided to have dinner here with my family!\n\nFriendly greeting and service from the moment we walked in the door! Fast service and great food too!\n\nHUGE portions!! I recommend splitting entree's. We ordered 2 entree's between 3 people and had 2 boxes of leftovers we took home! I split the lamb kabobs and the meat was tender and juicy. Hubby had the Gyro's and loved them! (Gyro's were probably enough food for 3 people!!).\n\nModerate prices. Averaging about $15 bucks a plate, but the dinner plates come with the amazing Basmati rice with white currants, almonds and maybe a touch of cinnamon?\n\nI was told they had the best cannoli's in town.....so I had to save room for one!!...and they were pretty darn good!! \n\nTo sum it up...... FAST~FRIENDLY~FRESH FOOD!!!\n\nYummy!!", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E9rN5N6_39vyBVmqwZDqGw", "review_id": "A0lkdYsXJzORMq7343JsOg", "stars": 5, "date": "2011-07-27", "text": "I just went here for the first time with my boyfriend this afternoon. I got a Green Apple Snow and he got a Mocha... Blast? or something like that. We both loved them. While the drink was amazing, what was even better was the quality of their boba, they weren't too hard or squishy and they had the perfect taste. \n\nThe shop was really clean and nice and cool. I also noticed they had battleship and I think checkers and some other board games out for customers to play with. They also had a computer monitor I am guessing for games. I didn't go to look at it. I think there was music on but I can't remember.\n\nThe service was really fast, but then we were the only ones there. You can't use a debit/credit card for an order under $10 so we ordered an extra drink for our friend we were going to visit. We asked if she could make it when we were ready to leave and she was really nice about it. \n\nI can't say one bad thing about it. If I find something else on another visit I will update. As of now this is going to be my number one place to get boba.", "type": "review", "business_id": "f9eFteZuBoZqzYg5UUrufw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yJ22u_1l01H4NM3wCowIKw", "review_id": "V9zhvEIYlqN-Bo3b-_7MkQ", "stars": 2, "date": "2012-05-21", "text": "I wasn't really very impressed. Bajio isn't *bad* by any stretch, but it's certainly nothing to really rave about.\n\nThe prices were a little steep for what you get and everything (keep in mind, this is mexican food) was oddly sweet for some reason...and that struck me oddly. \n\nBurritos and such, served in a very Chipotle-esque fashion, but for a few bucks more than Chipotle. \n\nI don't believe I'll be returning. Not because it was a negative experience, just exceptionally \"meh\".", "type": "review", "business_id": "7Zo1DzdwZlGMxPu1AFMSsw"} +{"votes": {"funny": 3, "useful": 2, "cool": 0}, "user_id": "D-oZAfAXFBDfq_Px-IBquA", "review_id": "XhxwntBQgWJGuPJCuQo8Sw", "stars": 4, "date": "2011-09-30", "text": "The food is always awesome. Best in the area. \n\nThe people behind the counter need to pull their heads out of their asses. Don't be rude to me if I ask for an extra bag to carry my food. I'd be happy to let the food drop to the floor for you to clean up.", "type": "review", "business_id": "IQaND6HcN6NdtQ8QysO3Fg"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "NduGDKc6hLcb1S6OtW62XQ", "review_id": "WNHkeNwcHjSYFTKeB2pN3w", "stars": 4, "date": "2012-10-07", "text": "Ohhhh, I like, I like!\n\nFirst of all, if you haven't seen Distrito, scope the photos on the website. High-five to the interior designer. From the gold glittery tables to the gumball wall, this place screams fun, energy, and overall a kick-ass atmosphere.\n\nI stayed at the Saguaro for five nights, so I had plenty of time to get my dinner (and breakfast!) on at Distrito. Actually, for dinner, I had room service but Distrito is where it came from. I was absolutely starving after a long plane ride, so I ordered the chicken tacos, guac, and a plantain appetizer, and it only took about 20 minutes to show up. Win.\n\nThe chicken tacos were really, really good. Little corn tortillas, marinated chicken, slaw, radish, and a perfectly-sized slice of avocado. There were three of them and I could only eat two, but they were so well made. The plantain dish was also impressive, and had some black bean puree underneath that balanced out the sweetness of the plantains. The star of the show, however, was the guacamole. Tons of lime, zing, and flavor. I ate almost all of it and it was definitely worth it. Usually when I have guacamole it's just so-so and I have to add some spice, but this showed up completely perfect.\n\nWhen I had breakfast, things were also on point. They made me an egg white omelet with tons of vegetables inside, and my co-workers seemed to love other menu items like the pancakes and french toast, as well. If I lived in Scottsdale I'd definitely visit this place a time or two more. Consider me a fan!", "type": "review", "business_id": "lKQ5hnkSQ-XP80jNCH46nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qstP_Lt7cnMLYUsHc1jkSw", "review_id": "kiPtaJk2Hfz3L24rGVN9Mg", "stars": 5, "date": "2012-10-14", "text": "Recently moved from the East Coast. So glad Yelp introduced us to Il Bosco. I highly recommend the Biaggia pizza. It's amazing. Great food and great hospitality from this small little spot.", "type": "review", "business_id": "VSPuvNSDUvlTl670lVAkkw"} +{"votes": {"funny": 6, "useful": 14, "cool": 11}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "YAb7SNnJTEx5QUG1w7SWcw", "stars": 4, "date": "2011-05-07", "text": "Had to go into Scottsdale yet again, this time to the quaint Scottsdale Mall. Well went there for a reason, after seeing Jewel of the Crown on PBS \"Check Please\", I was hungry for some Indian food. \n\nMonday night: not busy a couple people eating out on the patio, and a large Indian family eating there, seems like they were talking about the recent demise of Bin Laden and they had their children there eating and studying, so I imagine it was all owners family. But they weren't annoying and well behaved. \n\nGreeted immediately, felt welcomed and liked the look of the decor with a kind of strange old time piano music in the background, they served us some crispy, spicy rice (?) cracker with two sauces. I really liked the taste of those.\n\nOrdered the Chicken Tikka Masala (medium heat) and we also ordered, oh what is it called, chicken something with spinach, and garlic Nan bread.\n\nChicken tikka masala was very nice, it came in a kind of pot that was still bubbling. I like that, the only thing was I would have preferred more spice, so next time will go with hot and not medium. The other dish was decent but could have used a bit more kick, but that was ordered mild so that was our error.\n\nGreat iced tea, very refreshing and they kept it filled without asking.\nI wish I lived in this area, all the cool restaurants are in SCOTTSDALE!! Son of a mother, why is that the way it is? Not fair.\n\nAnyways, enough about me, I would definitely go back, heck I would even go out of my way from Glendale to drive over and give it another try, it was definitely above average. The food was hot and fresh, with nice ambiance and service.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "w1LjSa5wMexRIQ-82LKWmQ", "review_id": "j7M2xtDaocrxyBTA0Z9VAQ", "stars": 4, "date": "2009-01-29", "text": "I wandered into this store while wandering down Mill on a Saturday afternoon and what a pleasant surprise it was. Their design fit perfectly with my tastes and I wish I had the extra cash to redesign my house with their products. \n\nThe salespeople were friendly and helpful, but not pushy. Great experience!", "type": "review", "business_id": "Pj22z5yPSozm_8G1OuzDwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "iPhoJlwisUKGGrA0QNmYMw", "review_id": "eRqNvi2SVEoBCowa0JxN-A", "stars": 4, "date": "2012-09-16", "text": "I love fro yo!! This place is near the light rail when you get off on mil. The have lots of favors and a great topping bar. Yummy fruit toppings including mochi and those boba balls that squirt out juice lol. I will be back a little pricer than the normal fro yo shop but also a great spot on a hot day and near asu :) I also liked how you could make smoothies with the fro yo and fruit :)", "type": "review", "business_id": "1eJiyKXx_ruNu6F36BJQCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PjKa_cQfBA6CNiNTNJX_jQ", "review_id": "Ul_CB4qgDSkdOqL4tJ47yw", "stars": 5, "date": "2011-11-24", "text": "If you are looking for a place where the service matches the food, look no further. This family style Americanized-Italian restaurant was beyond comparison. The staff is very friendly and if you have children, they will well entertained while stuffing their faces with amazing food. From the freshly baked bread to the main coarse, every bite was like a new adventure for my taste buds. They have a wide variety of food but I highly recommend the pasta dishes. Your mouth will thank you the moment you take your first bite.", "type": "review", "business_id": "pwfyeFSeM2y0JjWL8k9VNA"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "VJDqveoSVmz_qmVEJ4Qbhw", "stars": 2, "date": "2009-03-16", "text": "I went to this place once and the owner tried to sell me a large box, for shipping a guitar, for 30 dollars! My Wife has been in there before, and the Dude is really surly, terse & laconic. He has hired some youngsters who seem friendly and helpful- Had to pick up a fax from an insurance agent there recently- But, I wouldn't go out of my way to do any business there!", "type": "review", "business_id": "UDmbxiR9n1FKhHevNdOqCQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CtdGwLKodWXumk3ToyPckw", "review_id": "IlMOhzkvFknEhuFwhgdPqg", "stars": 5, "date": "2012-12-20", "text": "So, after finding out I didn't have to be a juror today, I decided to go to Treehouse to celebrate! I got 12 different cupcakes (intending to share with my husband and friends at work of course!) and wasn't disappointed. I love the caramel chocolate and peanut butter chocolate ones best! The only ingredient I hope Treehouse considers adding is avocado, since it makes vegan cupcakes decadently rich! One of the sister's who co-owns and is a co-baker was a doll. We both are hoping Phoenix continues to build up a variety of veggie- conscientious, healthy/delicious places to frequent.", "type": "review", "business_id": "OEWW22gUG_JADQ3h4ajXtg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "oi8YMJNkAFvMyIRhuy7qeg", "stars": 2, "date": "2012-04-07", "text": "For my hubby and I on a Saturday night Grimaldi's turned out to be pretty lame. The restaurant is decorated well and the hostess was friendly enough but the actual pizza was SOOOOO BORING. I seriously took a bite and wondered if I had missed the slice altogether. I will say I tasted a lot of garlic but that doesn't count for much when the pepporoni is bland and the sauce is useless. Now I'm a deep-dish girl at heart but I've had AMAZING thin slice at Classic Italian Pizza in Tempe. This place made me feel like I wasted my money and I woudn't ever want to bring anyone here including myself again!", "type": "review", "business_id": "PjBeWzCOCveiPuF-xqUaoQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LY9Q6sc4DtZ9ENNBv691rg", "review_id": "CKjA3lHFNGXX7v5tgPi7pA", "stars": 4, "date": "2011-12-05", "text": "Went to the Living Room over the weekend with some girlfriends. Having never been there before I didn't know what to expect. The place is super adorable, great decor. The bar set-up is very weird though. It's like, half bar then turns into half table. I had to wait for my friends to show up and we were on the list, and I had a hard time finding a decent place to just stand. The place was packed, and it was 8pm on a Saturday night, with a torrential downpour going on outside. I thought it would be quiet wtih the craptastic weather, but it definitely was busy. \n\nIt's loud. Not only from people talking/yelling but the music. I was screaming at my friends at our table. For being a wine bar, I thought the wine menu was on the small side. A good selection, but I thought I'd see more. \n\nThe crowd is definitely distinct. You have to really like it to tolerate the place. For me, I really liked it. It's livly, lots of young 30-somethings (although we ran into our old, formerly hot, teachers from high school which was weird), lots of good looking people, yet it didn't feel pretentious to me at all. I just moved here from a big city and I felt like I was back home. Which is a good thing.\n\nFood was average. I'd try something else next time I go back. This time I had the chicken pesto sandwich with a side salad. The sandwich was very good but the dressing that came with my salad was SUPER SALTY!! Gross! I just passed on it and ate the rest. \n\nI also like the fact that they do board games here. And the patio is probably amazing when the weather cooperates.", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XhW59Y52sNXPHtFYQ0i3zw", "review_id": "AhV_p-9pCyMgJr8axjgrkg", "stars": 1, "date": "2012-09-25", "text": "I called The Town Dump to ask if I could come in this week and interview them for an English paper about a small local business, and the owner was just incredibly rude. She didn't even let me finish telling her it would take five minutes of her time, preferring to interject and tell me to go somewhere else. When I explained that I've heard wonderful things about their business from friends, and that that sparked my interest, she said, \"Well, go somewhere else.\"\nI've never even been inside, and I sure as hell won't go now. Maybe it's just me, but I don't like shopkeepers who snarl at their customers.", "type": "review", "business_id": "fP_kRceHkKxPqgf0o1RfUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yY0tg2qd7Xfc83PmuPmZNQ", "review_id": "riSK3YU9hXm80tyFF-RnSg", "stars": 5, "date": "2011-01-02", "text": "I've eatin' a lot of pizza and can say without worries that Mama Mia's is the Best I've had -- Consistency, value and great service sets them apart -- They also have the best take out wings in town!!!!", "type": "review", "business_id": "k8JnZBspVOI8kLcQek-Chw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "yGs16xQiN3dLo03OQyto8A", "review_id": "dvN6k2OLu2H-ULd9Udc_AA", "stars": 4, "date": "2009-04-12", "text": "I was pleasantly surprised by Sauce. We went here for dinner last night, and wanted something quick, tasty and casual. Done. I think of it as a cross between a fast food place and a pizzeria.\n\nI had the Pepperoni and Crimini Mushroom pizza, and it was great. The crust is amazingly thin yet perfect for the pie. The center where the toppings are is a nice and soft but the edges are super crispy with a chip-like \"crunch\". The sauce and toppings were noticeably fresh and perfectly proportioned on the pizza.\n\nM had the Turkey salad, and she too was very pleased. I can describe hers much - as we both stuck to our plates!\n\nThe waitstaff was very pleasant and everything came out well; however nothing really blew me away to earn that 5th star.", "type": "review", "business_id": "JxVGJ9Nly2FFIs_WpJvkug"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "MMCiQSRLdhyUzkHyksST_w", "review_id": "SPL3w35BY2PlKN4mJszwjA", "stars": 3, "date": "2007-02-13", "text": "The pizza's OK, not anything to write home about. I sat on the outdoor patio, which is on the main street, so while entertaining to watch all the people go by (and there's a wide variety), if you're table's right along the outside edge of the patio (which I wasn't), you may end up interacting with the transients coming by. So, I got to observe everyone going by without having to interact with them, which was just fine by me, because I do like to people watch.", "type": "review", "business_id": "IoKd6IJaSZnR8KZTuHw-yA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SHlkGMta-B3lXzlQBtrUvg", "review_id": "chKVI0nbp7jff0OtK2JNNw", "stars": 4, "date": "2010-04-11", "text": "What a beautiful brunch oasis in downtown Phoenix. Sitting outside on an April afternoon, listening to jazz and feeling the cool breeze (thanks to the misters), I felt like I was in the Mediterranean by the sea. Or something like that. Anyway, I really dug the atmosphere, and the food was delicious. The Vegetarian Omelet was yummy, bursting with veggies, and the olives gave it a great flavor. The potatoes were perfectly cooked and seasoned, and the whole wheat bread was thick and perfectly toasted. I also had a few bites of the Banana Fosters French Toast, which is waaaaay too sweet, in my opinion, to be considered breakfast food but was a great finish to my meal. The coffee is good enough to drink black.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "Q1lF4SbvT5E2tQYEdmB_zA", "stars": 3, "date": "2011-10-13", "text": "I'm always on the lookout for cool places to bring out of town friends and this place seemed to fit the bill. It's a sustainable farm that produces Arizona's only extra virgin olive oil. I came in for lunch and as I pulled into the GRAVEL parking lot my stomach turned because I had expensive heels on and knew they were going to take a beating (I know, \"waaah\" right? But there are women out there that love their shoes as much as I do and will appreciate the heads-up). Once I entered the Olive Mill I was delighted to see how adorably quaint it was inside. The building was split in two, market on one side, bistro on the other with seating in between both and also outside. The market had testers of all their products, great idea but the food testers didn't seem sanitary so I didn't try anything. I ended up buying some awesome hand balm that I love. They had a really great wine selection as well. \n\nAlright so here's the bad part. The entire time I was there, not one employee greeted me or cracked a smile. There was one guy in particular that was going back and forth stocking shelves and was visibly annoyed by my presence. When I went to order my sandwich, I remembered I got a free drink with my Yelp check-in. The girl at the counter sighed and rolled her eyes as I scrambled through my purse to find my iphone and she said \"forget it, I got it.\" Their sandwich the \"Kalamata\" had its 15 seconds of fame on the food network so I was going to get that but opted for the \"Lucca\" at the last second because it has brie...I love brie more than I love most family members. The sandwich was a disappointment. All the ingredients were there but it was devoid of any flavor and I couldn't figure out why. \n\nI probably won't be bringing any of my homies here but I will drop by to buy products, I fully support local businesses.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "Oq3jMOJPcKcxde2cAqjxiw", "review_id": "5PhUKXXwg5n2u2uf6oxfVQ", "stars": 5, "date": "2008-07-05", "text": "Matt's Big Breakfast is a wonderful place in the morning to feel the life of downtown Phoenix. I have eaten there 5 times in the last year and each meal was worth the 10 to 20 minute wait out side on the sidewalk. \n\nAt 9:30 a.m. on Wednesday, July 3, my wife Marie and I ventured downtown and decided to have breakfast out. Matt's was on our mind. We waited outside only 5 minutes before getting a table by the window next to the kitchen entry. Busy place, but the service was great. Quick with the coffee for Marie and ice tea for me. Marie ordered an omelet with cheese and mushrooms, while I decided on the special, eggs benedict. We both had the home fries. \n\nWhen everything arrived, the meal was very yummy. Marie, in her delicate way, snarfed down her omelet with a smile. My eggs benedict was on a fresh English muffin, topped with ham, poached eggs, and a yummy hollandaise sauce. Calories be damned!\n\nThe whole meal cost $22.53 + 4.00 tip.\n\nYes the place is small and you'll most likely have a short wait for a table, but get over that, because the experience of eating good food prepared by great people is worth your time.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Neal_1EVupQKZKv3NsC2DA", "review_id": "QpW3qQCC7KpPfJSiRImQtw", "stars": 4, "date": "2012-04-21", "text": "It should be no surprise that the ambience and service at this restaurant located inside a 5 star resort is impeccable. What is heartening though is that the food is good as well. What was even better of course was that i wasnt paying for it:) (business dinner) \nWe had crab cakes and pork ribs for appetisers which was delicious. For the main course i had the Ahi with the mustard sauce that was so flavorful. My colleagues had the shrimp and butterfish and they liked their dishes as well. For dessert we had the upside down pineapple cake. \nI really enjoyed my experience here and would recoomend it to those who love seafood and want an evening of fine dining.", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "asoOzbwJYsyzOgqCNf4sAQ", "review_id": "_z_q3u_wlVI_owa1VykUlQ", "stars": 5, "date": "2010-02-09", "text": "The message I received was drip is toast. I don't drink coffee... a terrible character fault, I know... but Gina and her partner are wonderful hosts and have made a cozy little space to serve delicious food and drinks (I get the chai tea with soy milk.) I like that computers are no where to be seen, only happy people eating and drinking and enjoying conversation. This is a lovely little place, a gem. I enjoy every visit. It is especially nice to bring new people in that haven't been before (so invite a friend to brunch because it is a nice surprise.) The service is great, the food is made fresh, and everything I've tried is delicious, even my five year old loved her nutella on toast. Good things come in small packages and toast illustrates this perfectly.", "type": "review", "business_id": "kiB6ByG9PYQLHmGpg5SGZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "It6PUT2Ng2lyrnZMvA6fLw", "stars": 4, "date": "2007-08-15", "text": "A little pricey for my liking, but good nonetheless. I really like the feel of the restaurant: part Cuban, part Puerto Rican, part Spanish, all classy. A guitar player jammed away in a completely non-annoying way while we ate our meal and, to me, that is an accomplishment.\n\nOur Calypso Chips were outstanding. To die for. One of the best appetizers I can think of at the moment. For my entree, I ordered the Ropa Vieja which was made up of the most perfectly tender beef and tasty rice with beans. A little heavy with the peppers, however.\n\nDoes anybody else think plantains smell like feet? My date pointed this out and, although I was surprised, I'm inclined to agree. That won't stop me from putting some into my stomach as soon as humanly possible.", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 0, "useful": 7, "cool": 1}, "user_id": "Q43j4rd_K0YEjGAb7qB8MA", "review_id": "dcBve5auPfvSQwlcSo3M4A", "stars": 3, "date": "2011-01-12", "text": "After living 2 blocks away for over a year, i finally took the jump and decided to deal with the long wait to try this place out. Got there at 7:30 on a Tuesday night... 2.5 hour wait. (To be expected, but still pretty ridiculous.) \n\nWent next door to Bar Bianco, ordered a bottle of wine and patiently waited outside. I think that the wait is part of the allure for people. Also, after waiting hungry for 3 hours, the food becomes tastier because you are starving. \n\nFinally get a table at 10:15. Order the caprese salad and another bottle of wine. The ingredients are very fresh. The Mozz is excellent, the tomatoes are very very fresh and tasty and the basil was great as well. \n\nThe server didnt make any recommendations on wine or food. A bit odd. Given that the wait is 3 hours and that it's pricy for a pizza joint, you'd think that the service would be excellent. Not at all the case. This guy acts like everyone here is a regular. The reality is that with 3 hour waits for a table, i don't have time to be a regular at this place. \n\nWe ordered 2 pizzas to try.... Biancoverde and Wiseguy. They were pretty good, again with good ingredients. I wouldn't say it was the best pizza i've ever had, but very tasty. Asked for some Balsamic to go with the Mozz and Tomatoes... had to ask the server 2 times, finally we snagged a food runner, she got it for us. I shouldnt have to ask for something 3 times. I mean really, this place only has like 6 tables... pay attention to the guests. \n\nI guess the moral here is that trying this place is all about the experience and saying that you've been there. While Bianco is good you can go to Parlor or Cibo and get very good (comparable) pizza without a 3 hour wait. \n\nIs it good, yes. \nIs it worth the wait, nope.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zmPF5EwnljusywJ5sP3QtQ", "review_id": "3fYzo1Pfm73tR5mg3Mm3yg", "stars": 5, "date": "2010-11-26", "text": "I recently tried vietnamese food, maybe 3 years ago. I especially like the pho soup and spring rolls. Since then, I have been trying every place I can that serves pho. Out of every place that I have been so far, this place is always the one I come back to. It's a little hole in the wall type place. The kind you would drive by and never even notice if you weren't looking for it. The pho has some of the best tasting broth and is a good portion. It's about average price if not closer to the cheapest I have found. It comes with a good sized plate of sprouts, basil, mint, lime, and jalapeno. The spring rolls that I get have pork and shrimp in them and are a pretty good size. The peanut sauce that comes with them for dipping tastes almost like fresh made peanut butter and has fresh ground pieces of peanut in it. The service is fairly quick and very friendly, even with the fact that there is some language barrier. I was actually taken to this place for the first time by an ex-coworker of mine who is an old vietnamese guy. He told me himself that this is probably the best place he has found to eat pho at, and based on the fact that it is usually packed with asian people during lunch time, I am very inclined to believe him.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "5lq4LkrviYgQ4LJNsBYHcA", "review_id": "dfbCyy0y_jzeWotFcEuEuw", "stars": 5, "date": "2012-08-13", "text": "With a few hours past and a few tasks accomplished the next stop of my day would be at Pane Bianco - the sandwich shop from the Valley's most celebrated Chef, Chris Bianco. Having made my pilgrimage to the eponymous pizzeria during my first trip to Phoenix, Pane had been on my radar since the day I moved to town but given the lunch-only hours and my office location in North Scottsdale I knew a weekend would be best and as luck would have it a new website (http://www.pizzeriabianco.com/) and seven day 11a-3p schedule had been rolled out just the week prior.\n\nArriving at the surprisingly large space (especially when compared to Matt's and JoBot from earlier that day - and compared to Pizzeria Bianco as well) shortly after 11:30 and allocating parking in the free lot juxtaposing the Light Rail I debated for a moment whether dine-in or to-go was best and opting for the former made my way into the restaurant where two couples already sat. Greeted by one of two servers it was suggested I could take \"any seat I wanted\" and opting for a bench in the center of the room where a menu awaited I sat down to browse the menu as well as the daily specials listed on the chalkboard - almost all sounding appealing, but a bit different than the Saturday special listed on the website. With a small list of beverages available I was asked soon if I was ready to order or if I needed a few minutes I deferred and requested a glass of water that would never reach even half-empty despite me drinking from it consistently and the restaurant soon filling to capacity.\n\nHaving debated the specials but eventually undeterred from the reason I'd come in the first place I soon placed my order for a sandwich and an 'appetizer' which I was told would be 'just a few minutes' and as while I waited I checked out the small market at the Take Away section featuring the famous focaccia, cans of tomatoes, dried pasta, and apparel before returning to my seat where my items would arrive shortly - the first a Manchego and Tomato Sauce Focaccia del Giorno featuring Bianco's delectable wood fired focaccia in all of its spongy glory topped with sweet, ripe tomatoes and an ample layer of briny Manchego; at $4.50 probably the most expensive \"Grandma Slice\" I've ever had yet at the same time also probably the best...or at least on par with that at DiFara in Brooklyn for best of its genre.\n\nMoving next to the original target of my desire, a sandwich of Bianco's House Made Mozzarella, Tomatoes, and Basil on Wood Fired Focaccia my first thought was \"wow - that is a lot of cheese\" while my second, after a bite, was \"wow - that is a lot of flavor.\" Perhaps as pure of a sandwich as you can find and the result of exquisite ingredients on top quality bread there is really nothing 'special' about the composition of this sandwich aside from the fact that it simply works - a largely unmanipulated masterpiece only improved by a touch of sea salt and cracked black pepper.\n\nLargely unaware on entering that Pane serves dessert it was with much delight that I realized soon after sitting down that three options were available that day and while the flourless chocolate cake I saw emerge from the kitchen to the table next to me looked quite nice there was simply no way I was passing up the Organic Vanilla Bean Rice Pudding with Candied Pecans - another simplistic stunner with creamy Arborio rice imbued with a rich vanilla custard flicked with whole vanilla beans and a few pecans for crunch. Delicate and smooth, flavorful without being overly sweet, and *almost* thick enough to stand a spoon up straight it was not quite the best rice pudding I've ever had - but a top five contender without a shadow of a doubt - a reason in and of itself to return to Pane Bianco...though to be fair, if I returned it would take pretty spectacular daily specials to prevent me from ordering the exact same trio of items once again. With Chris and his team now two for two it is only a matter of time before I make my way to Italian Restaurant... and honestly, that time is likely measured in hours and days as opposed to weeks and months.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 2}, "user_id": "DqQzkxbhm4rEJpsIT3XxOA", "review_id": "q85E2hDVZLUZs4i55fV2xA", "stars": 3, "date": "2008-07-06", "text": "The person before me reviewed Phoenix Greyhound Park as a Flea Market. I....will be reviewing the Greyhound Park in Dog Race form. \n\nWe came here during 4th of July night, after many drinks and BBQ-ing and swimming at my relatives home. Prior to leaving to come here, it sounded like a good idea - I was comparing the dog races to the Del Mar horse races in San Diego in my head.\n\nBut, during the drive, I started feeling wary. This is Arizona, and they're racing dogs in 110 degree heat? What is the constant tugging at my heartstrings? This guilt isn't working for me. \n\nThe track is outdoor, while the patrons betting on these beautiful animals sit indoor in stadium seating, behind huge glass windows, watching giddily while drinking beer and eating snack bar-type foods. Admission is free. \n\nThey do keep the dogs indoor before racing them. I decided I'd relent and bet on a race, then immediately felt like an asshole when they brought the dogs around for the camera and I saw them dressed in numbered garb and muzzles. I lost, but I didn't bet for the rest of the races we stayed for, it just didn't feel right.\n\nEveryone else had a good time, though, especially the winners. \n\nHow can I get so excited about the horse races but not the dog races? I'm a walking contradiction.", "type": "review", "business_id": "vTDJ_ZbxUw1MUOPPG9esOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MBLcbQ_miC1c11cfXQRKoQ", "review_id": "LIiTbdS6A7PL20gJAauamw", "stars": 5, "date": "2012-03-29", "text": "I loved this place! A bit pricey, but excellent quality.\n\nBeen here twice and haven't had anything we didn't like. The meat is great quality and they'll cook it how you desire as opposed to places that won't cook something below medium well.\n\nGreat toppings for burgers, fries and shakes. Although everything is so big and filling I certainly can't have all that in one trip!\n\nDefinitely a decadent tasty treat.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TJ-Y-53ofI02KG4W2fbmkg", "review_id": "bINGrrPcEk_5HMM1no4dwg", "stars": 4, "date": "2012-07-13", "text": "So as our last restaurant in Phoenix, I decided to visit Green, due to its great reviews and popularly. I got the Kung Po with mock beef, which was only $7, which is super cheap and really good.\n\nThe restaurant is hidden in like a little corner, so it's a little hard to find, but the interior is nice and beautiful. As a tip, just remember that you seat yourself and you have to get the menus at the counter. Took us a while to realized that.\n\nOverall, super cheap, really good and nice place.(:", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oubVUZ_h4enNSrvWNo6_og", "review_id": "WilRu3WdeeEliLtIVEwRvA", "stars": 1, "date": "2010-05-18", "text": "Ok, im not getting the great reviews on this place. I FINALLY made it Lamar's before they closed for the day and tried a couple donuts. I have a few problems here. The big one, can we please list that \"only the donuts with holes\" are $5.49 for 6? Its a bit deceptive to just list the price of 6 and ring up the donuts and have them turn out to be well over $7. Makes me want to buy my donuts from someone else. \n Second, these donuts are WAY over priced and they are average at best. The maple bar tastes like you are eating spoon fulls of sugar they are so sweet. And the rest of the donuts I tried were pretty stale. This will be the first and last time I will be going to Lamar's. Give me Krispy Kreme or anyone else for that matter. Thank god for Lamar's we dont have Spudnuts in the valley because they would be out of business.", "type": "review", "business_id": "XfgU_1_X8eVX8_CqofAeIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_MLUOGwK-1jgwub4Wzwk_A", "review_id": "c5dKCGUV0T002S03t3cWtQ", "stars": 5, "date": "2012-07-23", "text": "I am disabled with MS. The heat of summer about does me in, esp. in the car. Because of this, and because the best thing I've ever done for myself was to buy an electric Hamilton-Beach water kettle, I drink TEA. All day. Loads of it. Teavana is MUCHO EXPENSIVE, though I adore it. I learned of the Tea District through somebody's ad and like them very much as well. But, I had no idea we had a genuine tea company in Phoenix. And because of HomeRun, I was allowed to buy THREE vouchers. And because DragonFly is so awesome, they let me use all three to buy tea online and have it shipped to me all at once to avoid huge s&h fees. It should be here any day, and I can't wait to try their Cab(ernet) against Teavana's Opus Rouge. I love red heavily tart, fruity teas. It doesn't matter to me if there is no white, green, or black tea in it. In fact, I prefer it to just be the fruit. I drink it hot, and then as it cools all day in my tea pot, I keep refilling and either warm each huge travel mug with lid in the microwave, or drink it room temp, or even add some ice if it is particularly strong. I can EASILY drop $150 at Teavana, or $120 at Tea District and just touch on what I most want. With your three vouchers worth $60, I got to try two bags of every flavor I most wanted, except Peach (as they are out of it, but Holly wrote me several times and made recommendations based on what I had in my cart).\n \nI know I will love it, and go back to order the Peach when it is in stock again. Thank you so much for finding a local treasure and making it accessible.\n \nSincerely,\n \nJudith Ann Hillard\nPresident of Addiction Overcome, Inc., a non-profit foundation\nAuthor of The Other Woman at the Well\nwww.addictionovercome.com", "type": "review", "business_id": "4K7nR-e9staGTNJk1ez7MA"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "N7lSh49zQ13sG3Jpa9E6cw", "review_id": "KeoQ3YfRQjRxBH0tj0n_yw", "stars": 5, "date": "2008-02-16", "text": "Do you like trendy shit-music and half dressed plastic surgery queens gyrating all around you, while you pay twelve dollars for your appletini? If your answer is yes, don't bother coming here. \n\nDive bars are plentiful in Phoenix, but the Bikini is in my 'hood. It's a dirty, unassuming place, with a couple of no-nonsense bartenders and a good jukebox. \n\nThere are a couple of rules to follow when visiting the Bikini: \n\n1. Bring cash. Cards aren't accepted, the atm machine is there for decoration only, as it hasn't worked in at least two years. \n\n2. Don't make fun of the guy in the overalls and farmer hat. He's my neighbor. \n\n3. Don't piss off the bartenders. Tip them well, treat them nicely, and don't order more than three dirty martinis. If you are nice to them, they will be nice to you. This includes, but is not limited to: the strength of your drinks, the price of your drinks, and whether or not you get a drink at all. They take no shit. \n\nIf you can't handle it, stay away. The place gets crowded enough as it is.", "type": "review", "business_id": "cqIHyZ3Q0D4vBi-vb4mi-g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "nF1TgXIlWNvFWtIWkhZgeQ", "review_id": "QtHzAPPIZos03egv8kmg2A", "stars": 1, "date": "2012-01-15", "text": "I have nothing more to add, but I don't want anyone to think 'only a few' people had complaints about this poorly planned \"festival.\" \n\nOh, wait, I do. \n\nI was there with my 4 year old grand-daughter (and my daughter), since there were going to be kids attractions as well as the food trucks. I thought it was nuts that 3 minutes of jumping around cost $3. But I guess it was consistent with the $4 water and $7 beers.\n\nAnd it would help if there was some roadway controls and/or temporary signage. By 11am, traffic backed up (down) Pima from the event to Indian Bend and over towards the 101. Cars were skipping ahead and cutting into line, further delaying entrance. \n\nIf success is measured by interest, the festival was a success. If by performance and customer satisfaction, not so much. And how can a vendor commit to showing and not have enough food to feed the presold ticket holders? Why risk your hard-fought reputation?", "type": "review", "business_id": "dNyjWz6CnYvrhPnpqNV5NA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "RAjbzyvqteC92y4PyOtyPQ", "stars": 5, "date": "2012-02-03", "text": "I'm so sad I didn't discover the Herb Box sooner. I went for a girl's lunch and was blown away - by the decor, the vibe, the view and the food - and this was during the winter. I can't wait for patio weather because this will become a weekend go-to spot for me. The salads and sandwiches are delicious and the fries and chips - holy moly! They're amazing and you'll get tons of them. The decor is perfectly shabby chic with a traditional twist and I could seriously move in. \n\nIf you and your mom and girlfriends love the quaint feel of Arcadia Farms, give Herb Box a whirl. It's got the same feel, but more modern. Love love love it.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 15, "useful": 18, "cool": 15}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "lqrDXjGHbORVbW7G5lu6Cw", "stars": 4, "date": "2010-06-24", "text": "Sundays are a good day to do, well, a whole lot of nothing. After a successful day of avoiding anything useful or constructive, a friend and I decided to stop by for some Irish-style refreshments. \n\nLocated in what seems to be the World's Largest Strip Mall With Confusing Parking Lot, this is a very low-key enjoyable place. It was not at all crowded on this particular afternoon, and as an added bonus, pints were Sunday bargain-priced at $3! I tried my first ever Dirty Pear (Guinness on top of Ace Pear Cider) - dangerously good. I wonder if it can be counted as a serving of fruit...\n\nYou can't have an Irish bar without fish & chips, and theirs is pretty good - a large slab of lightly-battered fish which was more than enough for sharing, served with a stack of crisp french fries. While I prefer thick-cut steak fries, these skinny ones were consumed with no problem whatsoever! \n\nThank you, Skeptical Chymist, for assisting me in my quest for non-productivity.", "type": "review", "business_id": "Vtx0VYkybAd71fzwgaoQ8g"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "n1h87EmG_HBlp33v3X_QuA", "review_id": "LLf9pyyGrDpZrtyWwYUNkw", "stars": 3, "date": "2007-05-28", "text": "I like to call this \"My Basha's\". On the positive side, the selection of wine and beers is pretty extensive, the produce is fresh with quite a few organic choices. The natural foods section has a number of pleasant surprises and they've added some new bulk dispensers there as well. I've had mixed experiences getting help in the meat section but the checkout up front is always quick, much faster than some of the other grocery store chains out there.", "type": "review", "business_id": "h-EkPjwF47mDPgrTGXLoIQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "PwemCNJqvGerNZHbSSbmFA", "review_id": "BmZOjX13vhqqkVz-uyhIxg", "stars": 1, "date": "2011-08-28", "text": "It's been a few months since I've been here, and what a change, not for the better. I usually get the same thing to start with, ceviche and pollo asado. Both are usually quite delicious, not this time.\n\nThe ceviche had absolutely no flavor to it. As if the chef tried to make it as flavorless as possible. I did not finish it as it was not enjoyable in the least. Now for the tacos. Stale taco shells, dried and overcooked chicken, slopped on guac and no pico de gallo. The tacos were so bad I tried to rescue them by asking for pico de gallo, since they did not put any on, and then I was charged $1.00 extra. Of course, no manager was anywhere in sight. This place simply doesn't care. On the bright side, the margaritas and salsa are still good, but the chips were stale.\n\nNot only will I not return, but I can no longer recommend this place to businessmen from out of town. I see dozens of new business people every day who stay in Scottsdale and they always ask for Mexican food, and I've always said Cien Agaves. No more.", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Up75EsxMwvYnHSxUrlDxeA", "review_id": "B6AdLX_fZ1wkg5Sa6SCYrQ", "stars": 4, "date": "2010-12-23", "text": "Came here in a daze after not having slept for a loooong time and flying in to the airport with Dad; reminds me of the nice breakfast diners in Chicago, got the combo with turkey sausage (still greasy--defeats the purpose), eggs (always the same everywhere), french toast (more white bread, nothing too special but filling), coffee. Nice atmosphere and no major problems, would be great for the weekend brunch!", "type": "review", "business_id": "rF5uvk0-2_N60UxJ1NRl0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wNxyGjz8b46qT1KAHjuYrQ", "review_id": "DPWM24p4SQN6jPwx2fIQgA", "stars": 5, "date": "2012-07-08", "text": "There is something for everyone on the menu. It's more than pizza. The service is great. Get a table on the terrace and you get the view of the park and fountain. I will keep going back.", "type": "review", "business_id": "vN4mFODLd-gLmDg261wsyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NG9gXWHQIESxfUEcKjA7gA", "review_id": "94HDqNdhWcwHo6c_p-Bkhg", "stars": 3, "date": "2012-11-24", "text": "This is a quick grab some decent food kind of place.. this is not by any stretch 'THE' place to go for Thai- It's best for lunch specials... expensive-ish for dinner for what it is. It's fine. We go for lunch because they are AMAZINGLY fast (insert premade everything), but when we get tired of the same 'ol same 'ol we head to Thai Hut.\n We have had some instances of meals being too hot/spicy for our table, so be sure you mean spicy when you order a spicy dish.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0LuN0DGTCkzpjAD3NyNN8w", "review_id": "QqH47anOmLMY-xCm_6kMdA", "stars": 5, "date": "2010-07-26", "text": "I cannot say enough good things about this place! The food is amazing and the customer service is probably the best I've ever experienced. Every time my boyfriend and I dine here the owner visits with us and asks how we are, etc. I've only had Pho at a couple of places in town so I can't speak to the authenticity but it tastes amazing and fresh every time. Places that make good food and offer the kind of customer service these places do (and family owned is always a plus for me!) are just priceless. UnPhogettable is always worth the drive to Mesa.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "bBS2Qsf--DYRXbYe5q4CcQ", "review_id": "MdcOO0halc4Z8S4iCUQgVw", "stars": 5, "date": "2012-04-21", "text": "Delicious salad, pizza, and wine. We got the Padre pizza which is not on the menu, but fig, prosciutto, arugula, and ricotta... so delicious!! The crust is perfect! \n\nThe best part is they have several BOTTLES of wine under $12. Yes, you could usually barely get a glass for that amount. Sold... ! We had the Four Vines ZIn that was amazing for only $10.99.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "2AGvtkiTpTy1yOVCA1gc-w", "stars": 2, "date": "2010-01-30", "text": "Are you serious? $4.50 for domestic beers during the usual \"happy hour\" time? That includes Old Style (we were there for the Cub game)!! At grocery stores you can get a 6-pack of Old Style for $4.50! And charging $5.50 for a Corona?! Cra-zy!\n\n\"World Famous Sliders\"? These were the worst sliders ever, I think Jack and the Box sliders are better. Almost $10 for six southwestern sliders with a patty the size of a half dollar that got lost in the bun, one jalapeno, a small square of cheese, and salsa to make the bun soggy. I know they have a prime location being right outside of the ballpark and all, but does that really give them the right to charge whatever they want? They are going to make money regardless, they don't have to be greedy about it!", "type": "review", "business_id": "bmtANWh8OrAB-QflXwI0xA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "NvqgVxpAM7wKjL9QeVWnnA", "review_id": "RqDMPH7kDUletkXHGGKQfw", "stars": 5, "date": "2012-04-23", "text": "I go to Pro's Ranch Market often for lunch- sometimes several times a week. I've had the street tacos, chile relleno, burritos, and some other tasty treats. I'm a huge fan of the agua fresca stand- my favorites are the strawberry, pineapple, and horchata. And the bakery... oh, the bakery. They have everything sweet you could want including individual servings of flan and tres leches cake. \n\nThe store itself has the cheapest produce in town, a giant meat counter, and a great assortment of cheeses. Ranch Market also has super delicious tortilla chips and salsas. This is one of my favorite places to go if I'm on my way to a BBQ or party- there are so many options!", "type": "review", "business_id": "ADn_CBhbn2QU3WzFzuXvWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8-mw_aotUGmP0k0s6QKwOA", "review_id": "lk9i5kSq52nxH3P_j8W97w", "stars": 5, "date": "2012-06-10", "text": "Love this place! A must stop for anyone downtown needing a snack or a drink! Very good happy hour and unbelievable flavor combinations.\nOn my last visit, I was pleased to try some happy hour toasts and fish and chips. Zero disappointment.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Km0MQav49WBjFQlifoylcQ", "review_id": "6nlHZlQ3t_ncf3GslCubaA", "stars": 5, "date": "2010-08-07", "text": "I have only eaten here once, but i cannot wait to go back! the service was phenomenal, the potstickers huge and delicious! the orange beef - just as good as a pf changs! I had a restaurant.com coupon, purchased $10 gift card for .80 cents! Highly recommend!", "type": "review", "business_id": "zxqvU415r_RtZRKDtdbIKQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "k_qZ47wApoqNwl7uNiiOBA", "review_id": "EBpbQiJjSqSN7-CE5iyYrg", "stars": 4, "date": "2010-11-10", "text": "This place is one of the \"dives in a strip mall\" that seem so popular in this state. Today was not the first time that I have eaten here but, after reading some of the negative reviews, thought I would toss in my two cents..... \n\nI like to go here for lunch. They are prompt and the food is the perfect amount for lunch....maybe a bit too much. I am a creature of habit. Once I find that one thing that I love, I can't help but to run comparisons to other restaurants. Erawan has 2 items on it that I have to name as Best in Phoenix......Mint Chicken and their Tom Yum Gai soup. FYI, you can not get that soup on the weekends though. \n\nSo, in short, this place is great for lunch and can't speak about how the service is any other time.", "type": "review", "business_id": "FHywRwdeksNsE8mGZU4PNg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "7Etx7u6SJWNiDSCPxLUy0A", "review_id": "8TAYioJ3VO6ly7RVHma51w", "stars": 4, "date": "2011-10-03", "text": "I recently picked up a few satin flower arrangements for a fund raiser event. \nIn spite of having bought a 'coupon deal' for the store, the owner Rachel was more than willing to give me the best possible pricing and pieces. \n\nThe arrangements were beautiful and she even custom made a couple of them for us. The colors and flowers she uses are very well picked and beautifully arranged. \n\nI highly recommend Flora Unique.", "type": "review", "business_id": "23sB_DG-bQO3luNlZ-vi4g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "WCBz-xTApNh4u1VA_HKNLQ", "review_id": "xnMHyMcHdaPjkCPgdz3B4w", "stars": 4, "date": "2008-10-23", "text": "Everything is awesome at this place, and authentic according to my Japanese friend.\n\nI just love the fact that they have more than just sushi. Their fish with rice dish was amazing. Since I've come to AZ, I've never seen this dish at any Japanese restaurants around here.\n\nThe staff is all Japanese, with somewhat limited English, so I guess you know you're at an authentic place.", "type": "review", "business_id": "T4ox3wUzFjWvyrjaTRoBbA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bMFSEta1Ju31P1EnssuUug", "review_id": "_Uhy9vpfyhe6iUyJiA_THw", "stars": 5, "date": "2012-02-09", "text": "I am not one to hang out in Downtown Phoenix before or after an event because quite frankly it's boring. However, when I visited Copper Blues on 2/4/12 prior to the comedy show next door I will definitely be hanging out after events.\n\nHere's Why ... They have a live band and over sixty beers on tap. It's a nice cozy environment especially if you sit outside. Budweiser drafts were only $5 and soda was only $3. We didn't try their food but I hear the same owner owns both Copper and Stand Up Live so I am sure the kitchen is the same so I am confident in saying that the food is delicious because it was at Stand Up Live.\n\nHappy hour is 4PM to 7PM Sun-Thurs so its basically perfect when any event is taking place during on those days.\n\nOn this Satuday night people were having a good time. The draft beer was perfect and fresh. The music was good and the bartender was real friendly and answered all of our questions cheerfully.\n\nWe had such a great time that me and my wife are going back to Copper Blues on 2/23/12 to hang out and drink with friends prior to our comedy show next door.\n\nThis is a nice spot and you have to check it out especially if you are going to the show next door !", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 1, "useful": 5, "cool": 4}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "_7DBu1UqUmMIRiGrX5S7XA", "stars": 4, "date": "2010-09-30", "text": "I recently visited the Arizona Science Center, & today came to check this one out, joined by Mike C. Ok, it's not the same thing, but I'd say this one rules! There's plenty to see here, It's fun for both adults & kids. A couple of the excellent features are an old MINE to go through, & lots of DINOSAURS!! :-))\n\nThe walkways kind of wind all over the place, so try to keep track of where you've been, & not miss anything. They've put a lot of work into this museum, & you're going to like it!\n\nOpen Tue thru Fri 10-5, Sat 11-5, Sun 1-5, Closed Monday.\n\nAdults: $10\nKids 3-12: $6\nStudents 13+ with ID: $8\nSeniors 65+: $9", "type": "review", "business_id": "AXixlciaDB5jo2NMZmSKoA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "jvwnIG5wEjdOsqkYJgN29A", "review_id": "jIoRhEZ8Bogj-skNLVtnZw", "stars": 5, "date": "2011-05-18", "text": "It's just a terrific steakhouse. One of the most upscale, all around dining experiences in Phoenix. \n\nIt's expensive. Very expensive. But probably worth it. Figure $150-200 for a couple.\n\nI had the double filet medallion with blue cheese melted and a wine demiglaze. Absolutely outstanding, amazingly tasty meats. Equal or better than Morton's or Ruth's Chris or Capitol Grill (that's on the menu for tomorrow night). Smashed potatoes were very good but nothing to write home about. Veggies were pretty good.\n\nStarted with the ceasar salary, with a big pile of anchovies. Perhaps the best Caesar I've ever had.\n\nDesert was the mouse cake. Good, but not to die for.\n\nTheir happy hour is also an excellent value. Come before six and drinks are half off, and they serve little mini steak sandwhiches, which are very good.\n\nHint: If you have kids, go to happy hour and have a drink or two. Cocktails are in the $7 range happy hour price. Cucumber cooler was quite nice for a cocktail. Let the kids eat the sandwiches, and then head to the dining room for a couple of filets. The kids are pretty full, you are nicely primed for a great steak, and the complete lack of a kids menu doesn't matter. \n\nHonestly, otherwise, there really aren't any good kids options. I know, it's not a great place for kids, even well behaved, but sometimes you want to celebrate a special occasion with family. \n\nIt would be nice if they offered a mini-filet for 12 and under for like $15, or a burger and fries for $10 for the kids. Just a thought.\n\nAnyway, great experience, great food. A really upscale, while linen, old style steakhouse kind of place to have prime beef.", "type": "review", "business_id": "ar90fbRbQtiyZLtwjwwXUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zo0KvseUN6Gho9y0JQxVnw", "review_id": "nfScBCNVTnkFDN8J_ECRXQ", "stars": 5, "date": "2011-09-28", "text": "Cozy place, great amounts of food for little money, they serve koolaide!!!! Its all great I loved it both times so far, once in 2003 when I went to review it for the school newspaper, and again 8 years later when I drove by it and the nostalgia made me try it again with the fiance", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "W9n_ZyVCXD0HfPqn6qriOw", "review_id": "ffd7WV58WgUtU1_OFX6dPQ", "stars": 3, "date": "2008-07-12", "text": "Decent gelato. Some real, some artificial flavors.\n\nComparable to Gelato Spot, I guess.\n\nNowhere near the same league as Arlecchino, though. However, any place that doesn't use 100% real fruit, chocolate, etc... will never compare to Arlecchino.\n\nIf you're already at Tempe Marketplace, MDG serves the purpose.", "type": "review", "business_id": "sS0bWeEwC04bDP-IvPQqrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2Zv2Mw3Mvs_a5KO8U17yiQ", "review_id": "_KlhuTMvwBmv1vxr45ivKA", "stars": 5, "date": "2011-06-28", "text": "Great food and very friendly service. Happy to recommend!", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "0N0ngSQ8Njxfuvdxm1RpFA", "review_id": "cCX0UZldlKf1xw3pXn3u7A", "stars": 3, "date": "2011-05-20", "text": "Durant's has that old, musty, dark, Mafia feel. Love the atmosphere and allure. We mainly sit at the bar, but have dined in. The happy hour specials are good, and we have tossed a few back here having great talks and enjoying the ambiance.\nNow for the bad: The food is overpriced for it's quality. The steaks look fatty, the salads wilted, and flavor pretty bland. It would probably be okay if we weren't looking at 20 plus dollars per entree. Back in the day, Durant's was very high end and elite, so I could see the pricing from that perspective. However, if they want to stay in the game, they need to keep the food up to par as well. \n5 stars plus for ambiance, relaxation, a throw back feel, and great drinks! 1 star for food and food prices. \nHowever, a major landmark in Phoenix, so please check it out! We never know how long these staples will be around. I would just recommend going for drinks and maybe split an appetizer. It does ignite the \"romantic mood\" and will leave you reflecting on those \"good old days\".", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z1tNqF5qJRpibGj-9_r9Ew", "review_id": "BG0uhZhCPn0hFMZj5FD_rg", "stars": 3, "date": "2010-12-17", "text": "I'm happy to report these cows gave their best for me to eat. Thank you dear moo cows thank you! These burgers are meaty goodness. Recently I went to a lunch with my bf, her sis and Ma on the fly for her b/day since her first choice failed to be open on a Sunday afternoon..... Not her fault their site said they would be open. Bastards shaking my fist in the air didn't update the site. \nD O U B L E Grrrrr! I suggested Zin since we were in the proximity. \nSo this is my 3rd time at this place. While pricey the portions of everything are large in charge & good. The ingredients are fresh, the meat juicy and the fries are crispy as they should be in my opinion. Note to your mother! Do not waste the fat & gym time on the creme brulee shake. It's nothing more then a fancy name on a regular old vanilla shake. Having said that... I am a creme brulee fan so that may have been it's downfall. I was expecting greatness and fireworks etc. I got a really good vanilla shake though don't get me wrong but name it a vanilla shake. Don't market it as a creme brulee shake. How to improve it and bring a tear to my eye? Put a creme brulee hat on it. Gimmie the crunchy, sweet I'm looking for expect and demand. Just put something on it to give it with that brulee feel or name it a vanilla shake. The best way to explain my feelings would be to say it was like setting up a date with someone on-line and having them show up and it's clear they are photogenic but possibly altered a bit and not the hottie in the pics on their profile. It is some one with a great personality and decent looks for sure just not the hottie. Still had a good time but my expectations were something else totally. The banana cream pie shake is de-lish and the Zin burger a def go. If you want a healthy choice go for the Tuna also very good and served perfectly rare. Mmmmm mmmm good.", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f01B5tRtqf3k6ak1pPSAWw", "review_id": "0YDEw6JTGp0gV_cCE8QxVA", "stars": 4, "date": "2011-11-29", "text": "Fun dive bar.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 6, "useful": 4, "cool": 4}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "h-7t2l3_tSl1XGaUtPIuhQ", "stars": 4, "date": "2012-05-18", "text": "When I left this place the bartender threw her fist up in the air and told me to go take on the world. How cool is that?\n\nI was impressed by how clean it was inside. Plus they have craft beer on tap for $3. Need I say more?", "type": "review", "business_id": "7_fkHRNNHSFVP0pQCWm4yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gu0klsF8p157mTZsnkxskw", "review_id": "evzdx8swS2b4dAIjgA-MVw", "stars": 5, "date": "2012-09-07", "text": "Yes, please! This place is AMAZING! I brought my family here after coming many times, and everyone LOVES IT! The wasabi mashed potatoes are KILLER! I HIGHLY recommend. I really don't know if there is anything to avoid at this place. Just love it every time! We have tried many dishes, and they are always flavorful and fabulous.", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vIBrfx6z6wvUFN5IJDLNyg", "review_id": "7vod2BNvl8H8xTREmt54iQ", "stars": 4, "date": "2012-08-15", "text": "Love it! It was pretty far away from my home in Glendale, but I think it was worth the trip. We had girls night here a couple weeks ago. We had a cute waiter, who helped us with our wine choices. We ordered 4 different types of bruschetta and they were divine! Will defiantly come back even though it was a little pricey It still wasn't that bad considering the quality.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "jLBh-z3JrJkqJfn5VN9OJA", "review_id": "6SCBZ2pQhHlyMjrWkC4Qtw", "stars": 5, "date": "2011-02-13", "text": "There's a reason there's a banner that reads,' Food Network Challenge Winner', hanging in their farmer market booth. I've had Pastry Chef Chris's gingerbread cookies; biscotti; coconut/chocolate cookies; and their carrot cake, and they have all been really, really, reaaaaally good! \n\nBut today, at the Ahwatukee Farmers Market, I was knocked out by what she calls \"Lemon Sunshine.\" Words can not describe how delicious their lemon and cream & graham crust tart/pie is.\n\nLemon tarts/pies are among my all time favorite desserts. I thought that the ones I had from TK's bakeries and Veronique Mauclerc were as perfect as a lemon tart/pie could be. Slice Cake Designs Lemon Sunshine pie is dangerously perfect...\n\nA must try!!!!!", "type": "review", "business_id": "b5F2WCGUnwfh7z9N2AZ-nw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sTLoavKyIGXnIYH-v1TOWw", "review_id": "F2Vy174l7Jnt3AqH_oCpZQ", "stars": 5, "date": "2010-10-03", "text": "This is my favorite breakfast & lunch place in Ahwatukee. The food is excellent. The service is friendly and they do what they do perfectly. This isn't a place to go for elegant sit down service. It's the perfect blend of self-service meets top restaurant quality food. \n\nHave the Croque Monsieur--or add an egg to make it a Croque Madame. You will not be disappointed. The bread and the baked goods are so good you could make a substantial meal off them alone.\n\nFinally, this is a small local business that truly cares about its community. They have shown up at two community fund raising events with huge boxes of warm, freshly baked cookies to donate. I'm grateful to have a place of this caliber in my neighborhood.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m7j9e53ycZxjWYBD7rZVng", "review_id": "ANQJoRZKwj1Z3gYrIUzFPQ", "stars": 3, "date": "2010-05-06", "text": "I have some issues with this place, but you can't avoid BRU when you are having a baby. It's got convenience, selection, and price going for it. \n\nWe set up a baby registry here mainly out of convenience. It was fine, but I started noticing that they'd randomly discontinue items from the registry and about a week or two later put them back on. \n\nThey aren't always the cheapest, but when you are strapped for time, trolling the Internet for deals isn't going to happen, and this is where BRU scores. They know they can get you when you are harried and need whatever.\n\nThe bathrooms are grody here. After being pregnant, I've seen a lot of bathrooms. It seems like a store catering to pregnant women, new moms, etc. would have nicer bathrooms because the likelihood is that we'll use them 9 times in a hour trip. \n\nStaff is generally friendly, and the store is well organized. Selection in store is good.", "type": "review", "business_id": "zk4O-WY-qmbuoXZbnQpsnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0BfSTRcQpBTeNlx9SuAGWw", "review_id": "si-nMGBPO5Q8Axg0zgly0g", "stars": 5, "date": "2011-07-16", "text": "I was impressed with this place. I had the Mongolian Lamb and an Asahi beer. It totaled $14.00 before tip which I thought was reasonable for dinner and especially for a lamb dish. The portions were very generous and even though I was starving when I stopped in, I ended up only eating about half of the meal before getting full. It was delicious. Tender lamb and a great sauce.\n\nThe waiter was very polite and helpful and the food came out pretty quickly. It was very comfortable inside and the decor was tasteful. I did not expect that one of the best Chinese restaurants (of course in my opinion) would be located in Avondale. I feel bad for frequenting the Pei Wei on Dysart and McDowell so often when a non-chain place of this caliber is right up the road.", "type": "review", "business_id": "-5rFC4EVrT-v8g1PSEf6Xg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "h0soVH3VlB0bTEa4yH6yCw", "review_id": "KuCvN60gblCDKjNdre3dlA", "stars": 3, "date": "2008-03-07", "text": "Hit up this joint a couple times while in town for Padres spring training the past several years .. it's great sports-theme hangout for large groups .. plenty of TVs, service is very good, food is decent, big variety of drinks .. but it can get a bit pricey here for a casual place.\n\nLocation is convenient for those hanging out in the franchise capital of the world--Peoria.", "type": "review", "business_id": "C0vHeuHvd8H-9pJ1Qsb48Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DghMl81bONCh5ELnrgn4Fw", "review_id": "bNwnXUDUIvG7ecckJYa2EA", "stars": 4, "date": "2011-02-20", "text": "Friendly service. Ordered the Veggie burro. Should have gotten 3 friends to help me finish it.", "type": "review", "business_id": "TnkxapUN4nWMz_z5h3qMYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6AzKyBQAJoFcqCJ6rzjHbw", "review_id": "0SDJ9SshIv2wAIkRS-wizQ", "stars": 5, "date": "2012-04-29", "text": "There're times when you eat something and you want more. Then there are times when you eat something and you instantly know you will never have anything quite like it. For me, I experienced both of those at Pizzeria Bianco. My buddy and I drove almost 500 miles from Santa Barbara for a Giants-Diamondbacks game and thought we'd try this place I had heard about. We arrived fairly late so there was about a one hour wait but man, was it worth it. We ordered a Biancoverde and a Wiseguy. I was a bit skeptical at first because they each didn't have tomato sauce like I was used to, but I realized I dont care much for tomato sauce in the first place and I'm always up for trying new things. BEST DECISION OF THE DAY. The Biancoverde was my favorite. It was so simple (3 cheeses, arugula, and olive oil) yet so amazing. It has left me wanting more to this day. The staff was nice and friendly, not to mention a few cuties. I will definitely drive 500 miles for it again. In fact, I'll be making my way to Phoenix in a few weeks, JUST for the pizza!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BtatRPR-wytl8lLwnokwPg", "review_id": "0Hmf7mezT9vjM1na6PiAGw", "stars": 3, "date": "2012-11-03", "text": "clean store, good parking - decent prices too with the gas points savings is a nice bonus.", "type": "review", "business_id": "OCfXJuLuGKS0s7pZsKCf0A"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "jqs0xPGhZwlyijqWLEgRyg", "review_id": "0jnv6bjndqHEK_vx1IWT2Q", "stars": 5, "date": "2007-10-10", "text": "i know, i know. this gelato is a bit on the pricier side, especially when you consider that phoenix now has a bajillion gelato shops, that each offer a million and one flavors for a few washingtons. HOWEVER, arlecchino is definitely the BEST. it's worth theprice, worth the drive, and worth the parking hassle. \n\nthe owners are super nice and accommodating, and although there is a sample limit, the workers have never said no more. the flavors are classic, inventive, fresh, and authentic. plus, it's such a cute, tiny little hole-in-the-wall shoppe, that you can't help but love it in all it's quaint glory.", "type": "review", "business_id": "LjqY98zL96sem_PxC6ZG3g"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "E-Bd5r6Z3zMGA75_D4IRKw", "review_id": "iwMIeeKW0b94FQ0H02QCUw", "stars": 5, "date": "2009-07-12", "text": "I first visited this restaurant after my friend pushed me to visit the Hawaiian festival at the Tempe Town Lake a few months ago.\n\n\"Big deal,\" I thought. \"How can a Hawaiian festival be fun?\"\n\nWell, the food was amazing. And after having half a rotisserie chicken, I was craving for more.\n\nA few days later, I finally began my search for the perfect (or near perfect) Hawaiian restaurant, in which I can satisfy my Hawaiian cravings.\n\nMy first stop was Mai Island Grill, located in/near the Arizona State University campus. Parking was a bit of a challenge; this is especially true during the lunch hour.\n\nWhen I finally found a parking spot, I went in and ordered. I had the short ribs plate. The plates include one scoop of macaroni salad and steamed rice.\n\nAfter placing my order for the short ribs, I ordered the Spam musubi.\n\nThe guy preparing food replied with a laugh.\n\n\"Is it good?\" I asked\n\nJay -- the man who operates this restaurant -- replied, \"Yes it's good.\" \n\nThen he said something about how the guy who laughs never laughs (or something like that).\n\nAbout 10 minutes later, my food was ready.\n\nThe food was fantastic; just what I was looking for!\n\nThe prices are very reasonable. Plates are about $10 and less.\n\nI also suggest that you try the fish, beef, grilled chicken, and pork katsu.\n\nAnd finally, I hope that this place continues to provide the same liberal portions. Also, I think it would be cool if Mai Island Grill began serving two scoops of macaroni salad and two scoops of rice (just a fantasy of mine).\n\nAdditional Notes:\n\n- Cash Only.\n\n- Opens late in the morning and closes early in the afternoon (call for exact hours).\n\n- There never seems to be any \"Lumpia!\" :-/", "type": "review", "business_id": "UYM3KZLe02XGmUx27AZl-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "j01IrAml7fGI4CORTM_qpQ", "stars": 4, "date": "2008-11-23", "text": "I actually love the Waterfront Grill. I have never been there during bar hours, so it might not be a good later in the evening, but I usually go around 5-7 for dinner and the food has always been excellent. I usually get the buffalo chicken wrap, but sometimes I go with the fish tacos. Both are excellent and the service is great (because usually my and my friend are the only ones in there - I often wonders how it stays open). The cookie desert is awesome! It is like the Piezooki and Oregano's. Just as good.", "type": "review", "business_id": "N9iPqBRI47bewLAeKBlkIg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "o3J4bMsi7t9gMCMjEd_4ew", "review_id": "jJnL6cBWunBRj2NDMFzIWA", "stars": 1, "date": "2012-10-22", "text": "They added broasted chicken to their menu... I love me some broasted chicken, so in I went to investigate.\n\nI do not love me THEIR broasted chicken.\n\nTo me it tasted rubbery and had a strange odor, and it was so salty that an hour later I could still taste it. I ordered a few pieces and I ate part of one and then bolted.\n\nI can't speak to anything else on the menu. Their garlic knots, for what it's worth, were fine.", "type": "review", "business_id": "JN2qXIuDXnV2d8WnSqd28A"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "lm7K16xQNoLh1Yc0yaTxuA", "review_id": "sY5yhQahnW9gcaf1hUzN0Q", "stars": 5, "date": "2009-05-14", "text": "I really don't like these types of Mexican food places because I feel my mom makes better Mexican food. Just a note: Not all Filibertos are the same. Food taste wise.....\n\nThis Filibertos is BOMB though! They make great Spanish rice, and beans! All the food is great! But I recommend the rolled tacos if it's going to be your first time here. I think it's combo #8 haha. They also have some old school arcade games. That's a plus for me haha. \n\nPlease stop going to Macayos they have the worst fake tasting Mexican food.", "type": "review", "business_id": "DXADDERHdunEdkwo9_t7gg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UNAhUulI9ehiEcUyrM99lQ", "review_id": "YviHqX8UF9L6qjEOFD_qiA", "stars": 3, "date": "2009-04-18", "text": "Growing up near this little hole in the wall, this place was a constant stop for my family. It's really good, greasy chinese food that basically tastes like you would expect it to. Now that I live farther away I still have cravings for their delicious orange chicken and chicken fried rice. If you're nearby during lunch try out a lunch special, really great prices!", "type": "review", "business_id": "mzbQCUmd135tsNW6hY3G6A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "j-aruJbrUGLP4ZwhQfDJHw", "review_id": "yx6ZbicEb2Pqbbb0OUF5Sg", "stars": 5, "date": "2009-05-07", "text": "Please give this place a try when you're making your next stop at Pita Jungle. This restaurant seems to be very underrated and overlooked. We went on a Wednesday night around 7:30pm and it was empty while Pita Jungle was packed. Just the two of us on the patio, which was very nice. The interior and atmosphere are great. Nice tables & chairs, candles, shelves with wine bottles and art, and a very nice bar.\n\nAn Iranian family owns the restaurant and cooks everything themselves. That's the first sign of a high-quality establishment. They were incredibly nice to us and brought us whatever we needed. They gave us some good suggestions, like their Iced Black Tea, which is fantastic. It has a few other elements to it including Lavender. They brought us extra pita when we ordered some appetizers as well without us even asking.\n\nFor our appetizers, we tried the hummus and the tabooli. The hummus was very creamy but a little plain. We wished there was more flavor or spice to it. Not a big deal. That was the only part of our meal that was not 5 stars, but 4 stars. The tabooli....ridiculous. I've never been a fan of tabooli. It usually has too much parsley. But their version was balanced perfectly.\n\nFor an entree, I tried the Chicken Shawarma and we split a side of Basmati rice with saffron. A huge plate of rice with great seasoning. The saffron and olive oil gave the fluffy rice great texture. The Shawarma was fresh and delicious. The chicken was cooked and seasoned nicely.\n\nFor dessert, we tried the Persian vanilla ice cream with rose water and saffron as well as the Baghlava. The ice cream was some of the best we've had. Great flavor. The Baghlava was a great complement to the ice cream. A nice sweetness from the honey and the flaky dough was great.\n\nSo in summary, great atmosphere, great owners, out-of-this-world food, and very affordable. Everything we had came to about $32. We will return many times in the future because their menu is very promising. Just wish their name fit the type of place that it is. The current name makes it sound like just another Middle Eastern restaurant, which it definitely is not.", "type": "review", "business_id": "6ie9xvy2WW1pn7RuBvGNhg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LS4pZdJnAx71TTJao6lNMQ", "review_id": "YZmoiRFz5bTBX8PF3M_FZg", "stars": 5, "date": "2012-05-05", "text": "Elmer, I love you.\n\nI have since I was a senior at Chandler High. Back then I was broke so I could only get a bean burrito and strips...and they were dang good. \n\nIf anyone wants to complain about strips just being chips and cheese they can suck it.\n\nNow days I am a little less broke so I always get the green chili burro. And it is always so good. Spicy enough to burn a little and the tortilla is always fresh...thanks man.\n\nAnd bless your little Mexican Heart, you serve corn dogs...so I can even come here with my crazy picky kids. \n\nI love you Elmer. I always will.", "type": "review", "business_id": "qW9UysjJw3y3CwEbzruEEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8RBt1D6rKLMVFVstL6UHBw", "review_id": "x9RQqFzUKS5EVfBrdoX6zw", "stars": 4, "date": "2012-01-29", "text": "We went to Christopher's with the Deal Chicken 3-course dinner. The food was very good and the service was just as good. The lobster bisque was a bit too thin for my taste and is something I would pass on in the future. The lamb was delicious and the tuna salad was tasty as well. We opted to order dessert and the mousse tower was delicious. We were saddened that they did not have the grand marnier souffle on the night we went, which was highly recommended. Will return!", "type": "review", "business_id": "1M4oczf2lmkdgbrJ3J7OqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DYC9uqPYAwI_q9J9RknWvg", "review_id": "rKR0NgykB2Cb1SeZFdpVFg", "stars": 4, "date": "2011-03-07", "text": "Our group enjoyed a fabulous lunch here this past Sunday. The patio is perfect for people watching on a beautiful afternoon. \n\nAppetizer: Crab Cakes. The guys really liked the crab cakes which appeared to be served with some sort of cream sauce with diced red and yellow bell peppers. \n\nAppetizer: Spinach Cheese Dip. This dip fits the standard and is served with crispy pita-esque bread pieces. \n\nI truly appreciate the large selection of Gardein entrees they serve for Vegetarians and Vegans that want to enjoy not-so- healthy bar grub like our omni friends. ** Be sure to note any dietary restrictions upon placing your order. I ordered the \"beef\" sliders original style and they came with cheese which was not mentioned on the menu. They gladly added a side of lettuce and the jerk and buffalo sauces to my plate. I adore there shoe string fries. \n\nMy companions enjoyed their ahi tuna salad and steak entrees. \n\nAs far as drinks go, there is a large menu sure to please everyone in your party!", "type": "review", "business_id": "cBpJIOrVXotDI0XAZH_k0g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "597KmijSB8ma9Qs7JKMJnQ", "review_id": "i408fRqV2iDVNZ5aNSLYUQ", "stars": 4, "date": "2010-02-27", "text": "The Sushi was fab!! We had some specialty rolls and Shashimi, both were very melt in your mouth fresh!\n\nService was a bit slow as I think they only had 2 waitresses for the entire place.\n\nCost seemed to be very reasonable.\n\nWould certainly make the drive from South Scottsdale there again!", "type": "review", "business_id": "cfy-C6XNFt-F-dCQfK7EDQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "KuPscbI0KPxudSMPZIcrCA", "review_id": "il8qsVyu7yKaGGMEOUUj1w", "stars": 4, "date": "2012-04-23", "text": "This is the king of asian buffets! The price is a little high but its worth it. This is one of the few buffets were everything you try and put on your plate is good. Service was excellent well, especially for a buffet. \n\nP.S.=You better watch out for me in the lines cuz I'm ruthless when I get in buffet mode.", "type": "review", "business_id": "y4bkwSDssQTlFOYZS76K7A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "kJyR4gT1pfCcNjEY9-YMoQ", "review_id": "Jbiizq9BovcWjMf_v4fAjw", "stars": 1, "date": "2009-05-25", "text": "this is a business located in the fry's grocery strip mall on mckellips and recker I wont say much but don't bother the waitless girl was about as pleasent as a hemroid the beer selection sucked. I belive the owner was there at least the guy looked like the owner. it's always amazing to me how the service can be so horrible w/owner in house.", "type": "review", "business_id": "jXLzmOjHQ7rV-zrX7myA9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O758lrR1X2zI-ySeyjdr6A", "review_id": "KRf8TTUOgKA0cDBZBP0OkQ", "stars": 4, "date": "2011-05-14", "text": "I really enjoy this place and have eaten there several times. They just recently changed their menu but I like the brew additions. The coconut shrimp are awesome and the ahi tuna salad is to for for! I did have the chimichurri flank steak sliders but they weren't good. Our waitress was great and offered me something else.", "type": "review", "business_id": "E28ht8IEiO6FZbKktSo0Xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iqh9hYsQqLgW50jTPisH3Q", "review_id": "LX9LESJoiYbStMRL1DtJhw", "stars": 4, "date": "2010-07-20", "text": "Delicious. Can't be the pricing on the lunch menu at a sit down restaurant. Great interior decor that doesn't scream Chinese restaurant. So far I've had the House Special Chicken and Sweet and Sour Chicken. Both were great.", "type": "review", "business_id": "1vYaGPKQzMebBJXFCGTH2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "KJs0wwwPaCxaCUrppfaCDg", "review_id": "v7EmGJ2LbxYsw5GdGCehpQ", "stars": 5, "date": "2012-08-15", "text": "Did I ever write about the time I left my ipad here? Didn't realize for a couple of hours. Heart racing, I called, emailed, hoped it would be recovered. What gracious responses! I got an email early next morning, lots of reassurances, help for when/ how to pick up... Ok so I've reviewed this place before, key words are wonderful creative dishes, a light touch for subtle flavor (right now I'm having a delectable plate of greens, shaved herbs, summer squash wrapped around burrata--- who woulda thought?) but most amazing is the heart warming genuine service of all who care for you here. Oh.. And there's mightly fine wine on \"tap\". Heh heh..", "type": "review", "business_id": "BCsYkzqxGY_xmi5q_ayFDw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "8dbRf1UsWp2ktXHZ6Zv06w", "review_id": "_I7FN1f5lr8DS0gh1kmnNw", "stars": 4, "date": "2012-04-30", "text": "Why did I stop coming going to Pro Ten Nail Shop? They are located very close to where I work and I used to go to this shop all the time, they do a great job on pedicures! I got what would be called a deluxe pedicure with designs on my toes for only $27 bucks!!! Can you believe that!! They have signs all over asking for the customer's to pay in cash, that why they can offer us the lower prices! I am more than ok with paying in cash and my toes are looking cute! I think I am on my way to becoming a regular again for sure!", "type": "review", "business_id": "DaQJ7ykf8MkEWrIYA_9J7Q"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "W9n_ZyVCXD0HfPqn6qriOw", "review_id": "W5DZLayKBCcDTb23Wlbc9w", "stars": 3, "date": "2008-08-11", "text": "It serves the purpose. That's about it.\n\nRaging Waters it is not. A smaller water park attached to a mini golf course it is.\n\nSlides are fun. Night splash is great--no sun, bearable temperatures and no sun burn. I definitely would never go during the day. I couldn't imagine standing in line for 1 hour+ with no shade, 110+ temps and broken misters (I didn't see a functioning mister in the entire park). \n\nPark could use a bit maintenance. Staff could use a bit of training. Lines were very disorganized. Staff didn't have much of a clue as to what was going on. Ex: spent our last 45 minutes waiting for the wave pool, getting into the wave pool and waiting about 15-20 minutes only for the wave pool to never come on and for the park to close. Losing almost a full hour out of the 4 that night splash is open was a bit disappointing.\n\nI'd probably still return. But only because there's nothing better in the valley.", "type": "review", "business_id": "0a8hLC1V7jgOjRigoBohAg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GTkZ-E3Fpu4YNGLeA3JJjQ", "review_id": "O93X3vyNlxTuvIgUCT68Iw", "stars": 5, "date": "2012-12-05", "text": "The food is EXCELLENT! We have been 5 times now, and everything we have had has been delicious! We will continue to dine w Bill and IL Bosco! The Caprese is AWESOME!", "type": "review", "business_id": "VSPuvNSDUvlTl670lVAkkw"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "ODW4e78LfvY5Ch4s1kzzjw", "review_id": "rvhEZFmoFaTsC5iHjMKjhA", "stars": 3, "date": "2009-03-25", "text": "The actual bar (especially the outdoor area) is really pleasant in the cooler months. That being said its also near the university so can be overcrowded with snotty hipsters at times. A good place to socialize with reasonable prices, and oysters, yum.", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 4, "useful": 3, "cool": 2}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "LeDecSQeRPBOOVBRHIPHsA", "stars": 4, "date": "2010-12-29", "text": "My first experience with PCG was at a small, yet fantastic Yelp event. I've been back twice and have been just as impressed.\n\nThe first time was for brunch, and I recommend the griddled corn cakes. No, I just don't recommend them, I insist you have them. Even if you are allergic to corn, take the plunge and try these...unless you might die, then stay away as that might be bad PR for PCG. Topped with smoked ham (that's what I had), chicken, or bacon and served with maple syrup, it was beyond good. I could eat this dish every day of my life. The black beans were okay, but I do think the breakfast potatoes are nothing special and could be improved upon. I was a big fan of a $4 mimosa, however! Yep, you read that right...4 bucks!\n\nSecond visit for dinner, and I ordered the cedar planked salmon. A generous piece of fish perfectly cooked and served with a delicious lemon aioli. The accompanying roasted beets were not my thing, and the mashed potatoes were okay (maybe I'm picky about potatoes?) I also tried a bit of my dining companion's beef tenderloin and it was butter-knife tender (that's what I cut it with). Served with a stuffed potato and mushrooms, I believe, it will most likely be my next entree. For dessert, we shared the Jack Daniel's croissant bread pudding. We actually shared half, and I most generously took the other half to my husband who I left at home. Although, I generally don't care for bread pudding, this is NOT your typical bread pudding and probably the best bread pudding you can imagine (other than that one recipe that uses a dozen Krispy Kreme doughnuts).\n\nAlthough PCG is a little bit of a drive for me (outside my usual 5-mile maximum radius), I will happily make that drive and return again.", "type": "review", "business_id": "Pfb6VOIiroqDWOebfgWGPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2y3LWFfyRp02EdjwcVv7sw", "review_id": "hToXrZeYpH9xUvflGywJaA", "stars": 3, "date": "2010-10-25", "text": "I don't know what Bar Smith is trying to be. I feel like instead of just saying okay we are going to be a X music club on Saturday night they decided to try and appease too many people. 90s R&B and Hip hop on the first floor Techno Electronica on the roof top bar. \n\noooooKAY.\n\nI visited the during the 4th Annual Pub crawl at 11:30 at night the place was still pretty empty. \n\nDrinks-Meh\nCrowd-Meh, I am still trying to find the young professional males in this area.\nLayout- I like it\nBouncers-Really big and Super nice but then again I smiled a lot and didn't give them a hard time about my ID. \n\nThe last 2 is what gives it the A-Okay and not a full out Meh. I could see throwing a party there, people love dancing outside and on rooftops. This has both and the first floor DJ was decent, all things considered. \n\nI will give this place another chance. \n\nMaybe it can redeem itself up to 4 stars.", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LT3L8-tthzD0IakgXm81pw", "review_id": "jLxo_UgnGfKHSPK7gGa5LA", "stars": 4, "date": "2009-03-01", "text": "This has always been our favorite local Chinese take out - and especially on Chinese New Year, the special menu. OMG its good. We always call for takeout, one or two items and we are so close that by the time I get in the car and drive there, its done...less than five minutes. \n\nThis place gets very busy, and if you get a chance, try out their Peking Duck, Hong Kong style. Soooo delicious!\n\nAnother favorite is the snow pea leaves (not on the menu!!! cost extra), and the Seafood Bean Curd Soup. I love the soup here, so many delicious morsels, you can't go wrong with it ever.", "type": "review", "business_id": "F3SEkW6v2LJ5y6Ldo5pPaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8dbRf1UsWp2ktXHZ6Zv06w", "review_id": "nndJbVEZS4Rwh1AJkgnlqw", "stars": 4, "date": "2011-08-12", "text": "Wound up at Rock Bottom by chance had been wanting Carrabbas all day, due to being brain washed by commercials on TV so that when a friend said lets go out for dinner I was all gun ho to say Carrabbas, then he said Im in the mood for steak I tossed the pasta idea out the window and said Bring on the beef, plus never been to Rock Bottom so I was thrilled at being able to try a new place! It was a Sunday night and the place was simi empty, which was nice. Service was fast and friendly and I liked the overall vibe of the place. I ordered the Texas Fire Steak which was top sirloin seasoned with crazy peper and smoking jalapeno butter, man it was delish!! Even the veggies were good! Looking forward to another trip there to try out some more the menu!", "type": "review", "business_id": "m34siNIv_F15LIzkmxP7-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "i2TRnWtvxxwJuynRKrw35Q", "review_id": "q1S7og5Hywdg41eyAttdng", "stars": 2, "date": "2010-09-10", "text": "I have been going here for 4 or 5 years now because I really TRY to be a loyal customer. I can't justify spending any more money here. \n\n5 years in the owner is nice to me, but still doesn't know my name. I go there 10 times a year minimum - so it shouldn't be that hard to at least RECOGNIZE me.\n\nI decided to have my wedding dress altered there this year because I knew and trusted her. She made a big to do about my dress and my wedding, but when I stopped by with my ENTIRE wedding party to pick up ALL of our dresses, she had no idea what we were talking about. \"Dress? What type of dress?\" \n\nUh, my WEDDING dress? The only one in the store? Hanging right there?\n\nEvery pair of pants she has hemmed for me - from jeans to slacks - has been too short, by over an inch, and she charged me SIX dollars to sew a button back on... when I brought her the button.\n\nI am sure there is better service elsewhere, along with better prices.", "type": "review", "business_id": "Yk1JsOodrxP4z4IjB6HBVg"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "cprrdOVWlDZU9iMCTMtKbQ", "review_id": "Eo9uNHC5PFLv-VFMZdEz9A", "stars": 5, "date": "2011-12-27", "text": "This is my favorite Sushi Spot in Phoenix. I see Sushi Chefs from other restaurants coming here to eat during their off time. =)\n\nThe prices are very reasonable, and all of the rolls and sashimi are very fresh and crafted to perfection by the old timers.\n\nThe Ramen Noodle Bowl is awesome, and nothing like what you would buy in the grocery store. It is topped with pork, fish cake, bamboo, and seaweed. I highly recommend.\n\nThey even have a fried salmon skin roll, which was very flavorful and not always available at every establishment. I wish that i would have taken a picture of the last one that I purchased, it was absolutely perfect.\n\nThey also offer Takoyaki, which is like an octopus dumpling ball. You would have no idea that it contained octopus unless you were familiar with the dish. these are absolutely amazing and highly addictive. You have to try these during your visit.\n\nThe last time that I was there, I had to try the Ichigo Mochi Ice Cream. It was green tea ice cream, surrounded by a rice flour shell and topped with whipped cream. It really hit the spot and I was so full but in a happy and satisfying way.\n\nIf you like Sushi, and you think that RA is cool, hit yourself on the head for being a complete fool and go check this place out and get schooled on what fresh authentic Sushi is all about. Your mouth will thank you for doing the right thing!\n\nCheers and keep up the good work at the place.\n\nFYI... Bring your own Saki if you need booze with your meal. I say, just enjoy the good meal without alcohol and see how happy and relaxed the meal makes you feel.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1oR3-73q1Ywg9SqdI_uSFA", "review_id": "22nuhj105OYLeMymo_qAfw", "stars": 2, "date": "2011-06-20", "text": "Food was amazing but the service was horrible! I would suggest to take out don't dine in. I ordered the eggs Benedict, instead of Canadian bacon, they put crispy bacon on it served it with hash browns and a salad with a balsamic vinegarette. \n\nThe two girl working there were so unprofessional from their interaction to the attire.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vTSJBEZbKOYT1txypteK4g", "review_id": "xCntzVvJX5KY6m6Q9PSH4g", "stars": 5, "date": "2011-12-19", "text": "5 stars isnt enough!!! I love the whole Briggs family. I have been going to this dentist since I was 8 years old and they have always been so amazing to me. I love that I walk in the door and they make me feel right at home. They are so sweet and everything in that place is actually super comforting.\n\nThey use the most high tech things I have ever seen, and its good to know I'm getting A+ care for my pearly whites. I recommend them to everyone I know!", "type": "review", "business_id": "YuDkHN0bbGqtXY8797O6Pw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "cwlz7-fym956qQXBQxxZHQ", "review_id": "t3aieVKULjWKrBm8LEF0RA", "stars": 2, "date": "2011-05-17", "text": "Food was ok. Servers ok but cashier was horrible! Ok, some people are just not meant to work in the food industry. At least smile! \n\nPlace had a very gross smell! At first we thought maybe because we were sitting kinda close to the restrooms but the farther we moved from there the worst the smell got! \n\nMaybe if I'm desperate enough I will go back!", "type": "review", "business_id": "-tNKk-eCLk_acdp4vEYcpw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "9uuPzUWC1m_TnMUV9kXu9g", "review_id": "jOY39UkAps322G3uS6qxGg", "stars": 5, "date": "2012-01-16", "text": "Can not say enough good about this place. I love it. I love it! I simply love it! We have always had really great service and the food! Well, the chips are thin and salty yumness and I love the salsa. They keep you filled up and aren't like other places which try to ignore an empty container!\n\nNumber 16 Combo is my guilty pleasure! I have had it many times the way it's intended: Chicken enchiladas with red sauce...but lately I've been getting it with Fundito sauce and I've gotta tell you: I'm hooked! Try it........it's a little more $$$ but SO worth it!\n\nI haven't had desert since I'm gluten free but the size of the fried ice cream is Gigantic. My daughter swears by it!\n\nMan, I wish they were open right now...cravings have begun anew....", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GuUQfQXqsN0MIGK4Lxvsjw", "review_id": "cgxBgtje6818w4uugwVx_A", "stars": 4, "date": "2009-12-06", "text": "I entered the CPK world late in life, and I'm sad about it because, apparently, I've been missing out. CPK is great! Contrary to what I thought, it's not just a place for pizza. Although the place can suit all sorts of tastebuds, I would recommend going JUST for the pizza. I went this evening for the second time in two weeks and ordered the BBQ chicken chopped salad. It maybe could've used a little more dressing, but it was still good, so I can't complain too much. When I went last week, I ordered one pizza from the MANY great options available, and I have to say, there is a reason it is called the California PIZZA Kitchen and not the California SALAD or PASTA Kitchen. So 'Yay! I'm a fan.' of the PIZZA here. The other stuff....meh. \n\nThe servers are always pleasant here, and I never wait a long time for the food to come out. Prices are what you would expect for a chain restaurant. Parking isn't usually a problem unless there's an event going on at Tempe Marketplace. The up-side to eating at this particular location is that you can browse the shopping area before you stop in or after you're done eating.\n\nBe forewarned: If you are ever asked if you want avocado with your salad, and you say yes, you WILL be charged extra. Look out for this sneak attack.", "type": "review", "business_id": "jsblnIZnHUQGufwVb_yX6g"} +{"votes": {"funny": 4, "useful": 5, "cool": 2}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "bqoctwIIG-JVwgMs4xQv7w", "stars": 4, "date": "2007-09-23", "text": "Are you one who likes the smell of a brand new car? How about the smell, or in this case, lack of smell, of a brand new gym? Now, for a limited time, a completely unsullied 24 Hour Fitness, at the MetroCenter, of all places.\n\nAt its current new state (it's been open for a week), this 24 Hour is in much better condition than the one on Camelback. No surprise there - everything inside here is brand spanking new.\n\nThe details:\n\n* In contrast to other 24 Hours in the Valley, this one actually will remain open 24/7 (versus closing at night on the weekends). The guy at the front desk said this is due to how this location is zoned vs the other ones.\n\n* The cardio area is equipped with 11 flatscreen TVs hanging from the ceiling, with one even tuned into soccer-centric GolTV (which means one less tuned to all those talking heads on brainless cable news stations - bonus). \n\n* The adjoining weight area is larger than the Camelback location and currently has all its dumbbells in place on the correct shelves, and all its weight machines are working. No new types of machines, though (this is a 24 Hour Fitness after all) but still all the standards, plus four flat benches and four incline benches. \n\n* Full basketball court (which could also be split into two half-sized courts). Camelback lacks this.\n\n* Large stretch/ab area which also includes some contraption straight out of Tron/Blade Runner. I stood there and looked at all the diagrams, acknowledged that it must be useful, and walked away.\n\n* Standard group X classroom, childcare\n\n* A spotless pool area. If you've been to many 24 Hour Fitness, you'll know that this is a hugely appreciated factor. I anticipate it's not going to remain spotless for long, but doing laps in a crystal clear pool was awesome. No dankness here (yet). \n\n* Spotless lockerroom with wood-paneled lockers and branded Dial Ultimate Clean hair & body wash. I'm assuming the women's lockerroom has their own corporate soap sponsor (I find all this a little odd, but go figure). But beyond soap, there's some contraption called SuitMate which is like a salad spinner for your swim trunks. Just throw your trunks inside it, press down, and in 30 seconds your trunks are water-free. How awesome is that?\n\n* Is going here after work safe for your car, you ask? Well, when I left the gym two hours later at around 9:45 pm, my car was still there in the parking lot, untouched. Seems like the MetroCenter is full of surprises.\n\n* All in all, a great gym that I'm sure will be a welcome addition to the area. However, it still rates 4 stars since:\n\nA) Although all the equipment is brand new and the latest edition of everything, there is fitness equipment at other gym chains that this one is lacking. \n\nB) I'm anticipating what the gym will be like in 6 months. If it manages to stay as clean as it is now by that time, maybe a 5th star will be in order.", "type": "review", "business_id": "Iu8jmmDFcDSf5PCdor1dvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fEAfppON9koHRyOOBqdS8w", "review_id": "ug28SU_QbaVc4X7llnCXSA", "stars": 4, "date": "2010-09-29", "text": "confirmed better than subway blimpie quiznos etc etc\n\nNot really much else to say that hasnt been said above. Wished they had more vegetarian options :(", "type": "review", "business_id": "rRe2eLIQ4MQ7d6vFL26Qdg"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "gKaG_JWPLXZ6WTY27TNg7w", "review_id": "o1re5uKCq4hX0QM6KKhUHw", "stars": 4, "date": "2009-09-22", "text": "China Garden is one of those places that I crave. I use to live not far from here as I was going through high school and a few years after. I now live in the surprise area but about every two months or so I go out of my way to China Garden for the yummy sesame chicken and teriyaki wings. There sweet and sour pork is also something to be desired. \n\nChina Garden does Chinese food the way it was done in the late eighties and early nineties. It's what I grew up knowing and came to love. The sweet and sour pork has the wonderful breading and is left to soak in the sweet and sour sauce. \n\nChinese food by today's standards leaves me feeling bloated and disappointed so I pass it up more and more. The only regret when I eat china garden is that it will be a while before I get to go back.\n\nThe egg drop soup is also some of the best in the valley. You have to go try it.\n\nI have been going here since 1994 and still love it. \n\nP.S.\nthey do take out and the portions are HUGE for the price", "type": "review", "business_id": "3fNGtIfuHwt0-DD9SSjO6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GLfNfPqs8VaaCnjOAOkMRg", "review_id": "swBcoXImg97WX95vUk2pYA", "stars": 2, "date": "2012-03-13", "text": "It is ok Mexican food, not bad but is overpriced for what it is.\n\nI don't understand why this place is packed every night of the week. The food does not warrant the crowds. I'm baffled.", "type": "review", "business_id": "BD74uSwDe175zEqfppDRvg"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "0Dngp-JFYvvXD4cy6plvbA", "review_id": "TzxYw25AGSH4U5AbkbxN6g", "stars": 4, "date": "2009-03-20", "text": "I can't stand 50's retro but this place is the cuteness. Well...I haven't technically been inside. Now, I knew this was a hipster hangout, but I wasn't expecting the cute girl in the apron or the boy with tattoos to actually be working on the other side of that window. They didn't seem to mind that I was slightly drenched in sweat having walked there under the sun of a blazing March afternoon. They were quite nice and gave my sister and I a bowl of water for our doggies. Tattoo boy said he would even make us more fries if we wanted. The fries ($2) were not the best and neither was my grilled cheese ($4) with tomato (yum!) and pickles (?). However, the food had a nice home-made quality to it and was all ready in about a minute. Peeps are right about the high-quality ingredients and the food is inexpensive. Holler.\n\nP.S. Don't forget the Ca$hM0nayyy\nor to borrow from a sibling!", "type": "review", "business_id": "tb24fvNJfHhyKEXkKn12Xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1lSFhUewKa22FwhXuVgFdw", "review_id": "ReKEC7gkFZIcaz14CnpH4A", "stars": 4, "date": "2009-08-16", "text": "Finally made my way to the new Lolo's in Scottsdale. Live close by and really haven't heard of it until about a month ago when I was renting a video at Blockbuster. \nDecided to go fairly late Saturday before they closed and at about 2pm the place was pretty packed. Was given a choice to sit at the bar which wasn't a problem. Impressed by the transformation as this location used to have a Tokyo Express which I would go to at least once a week. I was joined at the bar by 3 other people and given menus. Only issues I have with my whole meal is that they should have decided the bar so that people can put their legs underneath because the meal required a bit of gymnastics to fit comfortably. Other issue, but one I can forgive is that the 3 people next to me were asked what they wanted to drink, Koolaid, and somehow I became temporarily invisible and wasn't. Took about 5 minutes for anyone to bother to ask. I can't blame though because the place was busy and I who doesn't want a new place to be successful when the food and atmosphere are good.\nOrdered the Betty Boop (chicken and waffle, and so did the 3 other people next to me...I have that effect on people). Chicken breast and waffle were delicious and I definitely had a sugar high from the 2 gallons of Koolaid that were served to me. I'll make a note to maybe go for some Diet Coke next time. Definitely recommend the place and hope to check it out with my family or a group of friends to have better seating.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "lu0SQOlm3geli0OHioXtlw", "stars": 3, "date": "2012-01-23", "text": "Tooooooo crowded!!\n\nThat takes all the fun of the place. As a mountain is a nice place to go up without feeling that you will loose your lungs. Going down feels faster than up. Being in regular shape it took us about 50 minutes to go up. A moderate hike and doable by all the family.", "type": "review", "business_id": "vZBYSQtTbY9MaYu5qNuU8Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "liiYhDAP64C8uLyixBDWdg", "review_id": "IbKWtTsFGhIL67rWvIdZvg", "stars": 4, "date": "2010-10-10", "text": "I really like this place. There aren't that many lanes, so if you plan to go on a Friday or Saturday night, call ahead and reserve your lane. \nThis place has a lounge area with a good sized bar and couch area. Over where the 10 lanes are, there are about 4 pool tables, another bar, and another table and couches area. The end of the lanes have screens above them to watch sports or music videos. They play good music very loud. I had a really great time. \nMy only complaint, we reserved lanes for 4 hours, and when the 4 hours was up, they wanted us out immediately. They started bussing the tables just taking drinks away. I was busy changing my shoes and didn't notice the busboy grabbed my drink. Excuse me, I just purchased that. I let him know that I understood they wanted us gone, but should ask the person sitting there which drink is theirs before throwing it away. As we were leaving, I was at the other table in our area and the busboy asks me if any of the drinks on that table were mine. I reminded him that he threw mine away and he should probably be asking that question to somebody else. It really annoyed me. \nI would definitely recommend it for a Sunday fun day. I didn't feel like we could really relax and have a good time on a Saturday because it was too busy and the staff was looking to make money rather than have their guests entertained.", "type": "review", "business_id": "_OYlq2UoKPQO_ElqhC3a8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U7oMbMxoF0T-RlU4PhZGAA", "review_id": "ApOntHI-ACdtD8lzqHRFKw", "stars": 3, "date": "2010-02-15", "text": "It is a cute little restaurant, has a nice wine list. I ordered the Linguine with clam Sauce, and a glass of pino. Personally i think the food is actually pretty good, nice northern italian. But the service was just ok.", "type": "review", "business_id": "s0klhdxcAab0yEWw2Uuimw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fwIXyM_7HFRfkVQMne79AA", "review_id": "AlflZCiSITeQshAKNgUNYw", "stars": 3, "date": "2012-03-31", "text": "I really want to rate the place higher. I like what it's all about. Instead of pulling the building down and rebuilding something in that space, it has been converted to a community space. \n I went to see one of their cult classics, and the staff was ok. It was completely amateur hour - I guess that's ok for the type of movie, etc. The problem was this was a sold out movie, and the staff brought in folding chairs to sit on to watch - that would have been ok before the movie started, but ithey did it one at a time making noise for the first 30 minutes of the movie - clanging, whispering, etc. Then they kept getting up and down.\n They seating was pretty bad. Low seats that reclined - normally that's ok, but there's usually some spring to it. These had no support at all. Halfway through my back was hurting and would have to readjust - but there was no comfortable way to sit in the chairs.", "type": "review", "business_id": "CVkUxfuLx5AGLI6eDFU4RA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "8fTTvS499XCz4oP49kxq8A", "review_id": "o2aDt89mpURcy10qt3EZQQ", "stars": 1, "date": "2011-07-24", "text": "This location was a Groupon find... Won't be back. The girl behind the counter was nice but even though I had the groupon right in front of me, she had to read it several times and I had to explain to her what I was supposed to be getting with it. The red light therapy is a nice idea... But the room the bed was in was lacking. They should hire an exterminator, not leave sticky bug traps down with dead bugs all over the floor where people generally have bare feet... Yuck!!", "type": "review", "business_id": "wDZiLz0A7CIXoBqSjFRMeQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LN4cXKGPaGMDHm4nP9Idtg", "review_id": "cns5AxuPI8FzxtzNKN6CNA", "stars": 4, "date": "2008-06-29", "text": "Went here for dinner tonight. Service was great. They still bring out the plate of pickles, but now they also brought slices of challah bread and rolls (the onion one is awesome).\n\nI had the Vegetarian Delight Sandwich. Very tasty. The vegetable cream cheese on the sandwich was excellent. Huge portions. The tomato soup was good as well, but not as good as the soup at Bravi.\n\nI tasted some of the onion strings. Delicious. They had a dipping sauce that was a bit spicy. It was good too.\n\nMy husband got Aaron's Choice - some kind of pastrami/corned beef sandwich. He liked it, but prefers Miracle Mile. \n\nOverall a good dining experience, and I got some bagels to go!", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OytcPLkfaVPr7VUXG12wlQ", "review_id": "LD9WgzOlBTycGNg-OdnjpQ", "stars": 5, "date": "2012-08-06", "text": "Best Vietnamese food I've had, and I've been to some very good Vietnamese places. Very fresh and delicious.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "J76Ikg-NZNm2UztYQ00wVg", "stars": 5, "date": "2012-06-25", "text": "I Felt a sin coming on .......\n if i could give 10 stars i would !!!!\n\nLet me set the scene for you of this Kazilicious Sunday night .....\n\nWe enter through a solid planked door set in the rear ...(oh yes the\ntruth is inside) candlelit passageway leads you into a sexy,sultry\nstone interior that is softened by the plush seating , dim lighting\n,wine barrels .. i give his hand a squeeze and smile because we have\nhit the mother load within this sinfully sexy speakeasy .The Tuscan\ncolors coupled with the stone ..deep ,rich ,decadent !!! His hand on\nthe small of my back as we approach our seats as the intimacy and\nambiance takes hold .\n\nA bowl of olives, 3 cheese fondue with apple ,the Tuscany pizza\n....sexy damn noshes ..they know what they are doing here ..soft\n...firm....dip....bite ..yesssss SO beyond sexy here.....\n\nOh and the wine ,nectar of the gods, sign of fertility , here in this\nsetting it is like Ambrosia ,and your inner God or Goddess will surely\nblossom ,and romance will bloom ....\nIt seems like thousands of labels here - we went with the M.\nChapoutier Le Sizeranne 98' ....Heady ,earthy ,smoky ,deep ,sweet and\nripe .the smell of currants and berries .lovely texture ,full bodied\n.....DIVINE ! let the flirting begin ..coy toying of the glass stem\n..sweet smiles ..love words escaping on a whisper between sips.\n\nWe spent around $200 ,worth every penny in my opinion .\n\nPrior to the Kaz , the Rokerij was just about the sexiest spot to me\nin the valley ...these two must share the crown .\n\nSo to recap ; SEXY, SULTRY,SEDUCTIVE !!!!! posh,swank ...\nGood Service , lush wine selection ,yummy tidbits ...\nAmbiance up the wazoooo .\n\nA heady experience ..this is where lovers go ,a prelude to the\ninterlude of love !", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EeSBXLMh3CvjSqBpJWT9gw", "review_id": "9zgk_9Fu1o9WltOIQccF3g", "stars": 3, "date": "2011-03-30", "text": "Hmm-Didn't love it, didn't hate it. I was indifferent.\nI like the decor and if I could give it a half a star just for having an outdoor dining area, I would.\nThe menu left a lot to be desired for me. We went at lunch time so I don't know what the dinner menu looks like.\nIt was just ok. Nothing blew me away. It's nice for people watching and has a really nice location.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MfZszvOQNY_xdbA9ruz_zQ", "review_id": "-_E6jvslAhQHbjNJIKeFQA", "stars": 5, "date": "2011-06-25", "text": "Went today for the first time. The quesadillas were the best I've ever had. My husband had the Cuban sandwich, which of course I tried...it was equally delicious! The atmosphere made me feel like I was back in the Bahamas. And not to forget the staff. We sat at the bar, and the bartenders were wonderful and so nice!", "type": "review", "business_id": "E28ht8IEiO6FZbKktSo0Xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "010uctFbL3rzTlxeylzAsw", "review_id": "izamRtPGFqGjnl6r16Mgog", "stars": 5, "date": "2011-04-08", "text": "I dream about their chopped salad...I, too, would use it as my screen saver if I didn't share a computer.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6C30U6eLu10KNJYfhCUL2Q", "review_id": "q42ejTsrVgTzz0NOVA7Zpw", "stars": 5, "date": "2011-10-23", "text": "This is the best restaurant chain EVER!!!! I love EVERYTHING there and the service has always been A+. The fried zucchini strips (appetizer) are the best in the world, the Caesar salad is the best I ever had, even their croutons on the salad are better than any!!! Olive oil herb dip is Fabulous, the warm bread is like no other. Most of the dinners that I have tried have been excellent but the Chicken Bryan is magnificent. Waiters and manager the best.", "type": "review", "business_id": "VrqEeynr7KqucvEjpz8w_g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "zgpPapf1Rj1-4eX1zkA56A", "review_id": "4NdwnVzAkIXgaJWigRA2YA", "stars": 5, "date": "2010-08-19", "text": "Fun little place to just explore and TRY so many different samplings. The staff was great and super friendly! The lemon cupcakes were AMAZING!!! \n\nLittle tip: buy a baguette to try all the great olive oils and tapenades", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qg9Jn8GeqQ8EuxNUFDshCg", "review_id": "2TFl_P62BPRcSaEIVnaeJg", "stars": 4, "date": "2009-08-25", "text": "The tuna sandwich is fabulous!!! Definitely visit this place!!", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "ufHeqy-oyoef_ybRXA-Xuw", "review_id": "jfE4hi5E6FNDUAszn9_Dsg", "stars": 2, "date": "2010-07-12", "text": "This place wasn't that great for the price. I spent 15 on 2 mini grilled cheese sliders and a tea (basically bar food over priced) Not much to choose from on the menu plus portion size didn't equal out to what I paid for. The crowd is very Scottsdale and the staff wasn't that friendly. Definitely wont go back here again.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BeC9T1PMdGwZ512_gKaUxg", "review_id": "P5xnavtP2rJ3HLpAuSJbrQ", "stars": 3, "date": "2012-10-16", "text": "We tried this place after reading most of the reviews. I had rice noodle soup w/ fishballs, squid, shrimp & veggies and hubby had shredded pork sandwich. Both were good and plenty of food. The pork sandwich was so cheap, it was hard to believe it wasn't a typo. Beats a Subway anyday! The neighborhood is a bit shady but if you don't mind that, it is fine. Service was quick and we will definitely revisit this place. People kept pouring in during the dinner hours. Can't beat the price!", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "kvL7bId7FbaMi19TFl3h9w", "review_id": "9peQRzprCp4A_jzSLfte_g", "stars": 5, "date": "2009-10-29", "text": "Melrose Pharmacy is my go-to pharmacy. Not only is it in my neighborhood, it is independently owned and operated by Teresa Stickler. Her and her husband Kurt are people who care about the community. The fact that they provide a level of service that their chain store competitors can only dream of is a is the icing on the cake. They are also lightening quick, dispensing most prescriptions while you wait.\n\nMoreover, they are a FULL service pharmacy, they also offer delivery (handy when you feel like you are on the verge of death) and useful recommendations on the pros and cons on a on non-prescription drugs and vitamins (often recommending the lower priced generic brand). In addition, you can find a wide variety of homeopathic products, as well as a selection of snacks, books and small gifts.\n\nEven if you don't need to get a prescription filled, it's worth a visit to check out the retro interior and grab and grab a vintage bottled pop and candy. Better yet, stop by on a First Friday when the pharmacy features live music, and frequent art shows in the studio in the same complex.", "type": "review", "business_id": "saCtN9IoDXPFk1KuB2FO6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YP5eyNuicdw4pc6GzeBEQg", "review_id": "Fyi9QGf2dkumcd2wmDIrpA", "stars": 2, "date": "2011-04-01", "text": "I had a mammogram completed on 12/12/10. This facility has been covered by my health insurance for over a decade. But not this time. The doctor terminated his contract with the insurance provider on 12/01/10. Screwed for $300.", "type": "review", "business_id": "MbFxBwpqiXRWSvoTXt6Erg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u_V2O46KSoA5o9IgEZTD_Q", "review_id": "AQZWFKBm6dSfBdgE6AduxA", "stars": 5, "date": "2012-02-21", "text": "Loved this place!!!! Was searching for a great authentic BBQ place, and this is it!!!!!", "type": "review", "business_id": "ss8qF7hMxddIO1CQh99V8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nFnMOEJPy98wdEKAVzFs3w", "review_id": "OM-rHICHUtMSB4S7cDSL8A", "stars": 4, "date": "2010-12-10", "text": "You know what the 'bucks are all about, get a Venti for the long flight you won't regret it!", "type": "review", "business_id": "N1Dq9PyY1jDQdZcX4u8oFg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "h2heEPaqhuQTz-IC6csNjQ", "review_id": "SGjts-StAtmPax-pMWJ76w", "stars": 4, "date": "2010-07-06", "text": "Very old-school. Large portions and friendly staff. Good salsa and fresh chips.", "type": "review", "business_id": "Y293fHh5SZ0_9BZm4M6BCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zGz5NI4sscO4_6YYH-qVtA", "review_id": "ZiDDFVqmI5NFRTlpdz36Dg", "stars": 4, "date": "2012-10-19", "text": "Let's see.....\n89 cents at Taco Bell for a taco that has cheese like sprinkles on a cupcake, or a Baja soft taco that has FIVE pieces of tomato in it? \n\nYOU\nMUST\nBE\nJOKING.\n\nCompare your Baja soft taco to the picture sometime and feel free to yell at the counterperson. Yes this happened. Taco Bell should be sued for complete misprepresentation!!\n\nMEANWHILE at Del Taco..... \n\n39 cents for a balanced taco with a decent amount of cheese and delicious medium (\"Scorcho\") sauce --- THE CHOICE IS CLEAR. Plus the deluxe tacos are CHOCK FULL. I usually get 4 regular tacos and end with 2 deluxe ones.\nI've had the double cheeseburger once, nothing impressive there. It wants to be an In 'n' Out Double-Double, but it falls short, like when you were a kid and wanted Levi's 505's for Christmas and end up getting Sears jeans.\nCome for the cheap tacos and LOAD UP I SAY!\nThe burritos are OK too.", "type": "review", "business_id": "_gXpjRIjb5fv5f5IVGXvsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "exefpuK6O1ctUUqTxq5XLg", "review_id": "-GVc9mZfji7S3twgytIwCQ", "stars": 5, "date": "2012-01-27", "text": "Wow. If you're into owner-driven, husband-and-wife run, casual and unpretentious yet upper-class/comfortable \"fine\" environs, food, service, wine, and music (acoustic live music 3x/wk (with no cover!)), the kind of place where everyone talks to/welcomes everyone yet no one is nosy or cliquish, where the whole place cheerfully claps when Mrs Owner breaks a glass (and someone calls out \"it's earlier than that normally happens,\"), free wi-fi, where you have a nice patio with heaters and a front-row Fountain view, wine by the bottle from their extensive retail collection or yours -- with just a $5 corkage (as well as a decent (7-9 reds and 7-9 whites selection by the glass for $7-$10), a great craft beer selection (Union Jack IPA!), couches, nice hightops, an l-shaped bar, great local artwork (also for sale), this will be your new favorite place.\n\nIf you like stuffy, over-priced, boring, see-to-be-seen places with angry (or no) music, this place isn't for you.\n\nSecond time here and Mr Owner greets me by name. Are you kidding?! Does that happen anymore? And when I say to him \"that's cool,\" someone else in the bar comments about how I must be new because that's just how they do it here.\n\nYou can order anything off the menu from next door (Euro Pizza Cafe) for no up-charge. Amazing. Get the \"Dr Oz Saut\u00e9ed Veggies.\". Trust me. \n\nThis place has a great vibe and one part of me hopes these positive reviews don't result in oppressive crowds, but on the other hand, something tells me they'd handle it with a smile and 5 star service.\n\nGet here. Just get here.", "type": "review", "business_id": "0LCqaCnEGesFEhpa6qNauQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CJWaJ8MfppMDGCiMXyl0pg", "review_id": "i8PeT0FaEQseyCQHkKsJng", "stars": 4, "date": "2008-12-27", "text": "The name says it all. This family owned restaurant (3 to be exact) specializes in tortas but they also carry your staple Mexican fast-food affair you would find in AZ. Everything I or anyone else has had has been solid. Just in case you don't know what a torta is, the best way I can explain what one is that it is essentially a toasted sandwich with a fusion of Mexican and American ingredients. When it comes to TEG's tortas, there are a few standouts. One would be the cochinita.\n\nCochinita which is marinated pork is absolutely delicious by itself, but in a torta, it is absolutely scrumptious!!! My best description of what cochinita is to think of pulled pork that is braised in a slightly sweet, salty, and spicy redish/orangeish sauce. In addition, it has American sandwich staples such as mayo, shredded lettuce. What makes it a \"torta\" are the slices of sweet and sour pickled jalapenos and carrots and slices of avocado (and they do not skimp). What completes the sandwich, I mean torta, is the bread. It's always warm and fluffy in the inside and the outside always has a nice crisp texture from the grill.\n \nThe other torta I would strongly recommend is the carne asada. The combination of the carne asada steak with mayo, fresh pico de gallo, and lettuce along with the warm bread makes this torta an absolute winner (my mouth is actually watering just thinking about it!).\n\nThe Cubana, which has your typical ingredients that come with any spin on the classic Cuban, is also good. If you are a big fan of Cubans, then this one may be for you. But in my humble opinion, this does not anywhere near come close to the yummy goodness of the cochinita and carne asada.\n\nThe Hawiiana (Hawaiian) is also a relative good choice. With the combination of Ham and fresh grilled pineapple along with other condiments, it also is descent selection.\n\nAs I stated before, they do have staple Arizona style Mexican fast-food here and there are a few I would recommend. One would be the flautas (large deep fried rolled tacos).\n\nThe pollo is the one I would suggest. If you envision your typical fried rolled tacos with guacamole and cheese, well this is not that, this is even better! The flautas at TEG are larger with much more stuffing then your typical rolled tacos. In addition, they make them with yummy flour tortillas, not your typical corn. The shredded chicken is well seasoned and moist. The tortilla is always fried perfectly, light crisp on the outside with the inside of the tortilla still soft.\n\nThe burritos here are good, actually better than average, but because the tortas here are the showcase, everything else takes a backseat. The rice and beans are hit and miss, especially at the Chandler location.\n\nI used to give TEG four and a half stars, but with the mistake of expanding too quickly, combined with quality and consistency falling a bit, I would have to give them three and half stars; four stars would be stretching. I'm anal so three and three quarter seems to fit.\n\nFor example, the Phoenix location, which the Son runs and where he started the chain has a few issues. For example, the Cochinita at the Phoenix location is always drier and saltier than the other two locations. In addition, they have certain items only at that location that the other two do not. One would be their Sonoran style hotdogs, which are excellent and an item I would highly recommend. When I have gone to both the Mesa and Chandler location and asked for them, and unfortunately they said they don't carry them. I was disappointed to say the least. \n\nAnother example of inconsistency is the last time I went to the Chandler location. I brought a couple of out of town guests, and I was a little disappointed because the bread was a little too bready (dense) and not light and fluffy as usual. When all the ingredients are in perfect symphony, you have one amazing torta, but when one ingredient is off such as something like the bread being too dense throws off that harmonious balance of flavors and textures. In this case, it made a difference from a four and half star sandwich to a 3 star sandwich (which is still good in my book, but not great).\n\nThe best and most consistent is their Mesa location. I think that it is because Mom and Pops run that particular location (well they used to anyways). Everything has always been consistently delici-oh-so-good.\n\nOverall, would I still recommend Tortas El Guero, and do I still go? Yes, but I wouldn't rave about the place like I once did especially with the inconsistencies I've experienced as of late.", "type": "review", "business_id": "oZnDl9u2CImtvvKrc3KmPw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "h9d3VW5RTJymoFoLnN60_w", "review_id": "Rb9IR9AGn6LQLFT4PyeLng", "stars": 4, "date": "2009-10-27", "text": "I've been to both locations, and I wonder if is fair to rate them together or should I do it separate? \nThe Phoenix location is way to small for me, I don't like feeling like I'm almost sitting on my fellow diners lap and, this is a huge pet peeve of mine, I HATE smelling like food! Which is inevitable because the place is tiny. On the other hand it does have charm to it and the food is delicious.\n\nThe Scottsdale location I can move, don't smell like food when I get out but is more sterile. And then there's the food....\n\nI always ordered fried chicken (of course!) and the breast tends to be dry so I decided to do thigh and drumstick. Well, this last time the dark meat was fried to a burn:( And not only the skin but the meat too. I should have asked for two different pieces but I was starving, and my hunger won. A shame because I left without satisfying my craving for good fried chicken. The waffle was delicious as always and I ordered smothered potatoes which were very good. It seems with their mac & cheese people either love it or don't. I'm on the 'don't' group. It tastes milky and not very cheesy to me. I may try it again, because I love mac & cheese and I have the hope that maybe it was just bad luck before?\n\nService is ok, sometimes better than others.\n\nAfter careful consideration, I'll give it 4 stars. I'll visit again, I'm pretty sure, and then I may go up or down one star.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "oKzkyfGalJC3-BOeLLCcIw", "review_id": "F7VG9EWMQJtnFlCloVf2RA", "stars": 4, "date": "2013-01-04", "text": "The building itself has that Frank Lloyd Wright 70s vibe going on...not my taste, but our City isn't very old so I can live with this minor aesthetic annoyance. (Remember when they almost tore the Orpheum down? Not cool. Fight to keep history here folks...)\n\nAnyway, anytime I hear people begrudgingly ask \"What is there to do in Phoenix?\" I would have to suggest: We do have culture here, if you're willing to venture outside of your comfort zone and outside of the suburbs. \n\nPhoenix is privileged enough to have an Opera Company and Ballet Company who are great at what they do. I saw the Nutcracker most recently and GOODNESS, they all had impressive resumes. The conductor, and costume designer were definitely stand outs. \n\nAs audience members we are supremely lucky because the venue itself is small enough to ensure you will have a fantastic seat no matter where you are.\n\nI will go back. I can't wait to go back. My soul craves this, as should yours.", "type": "review", "business_id": "zDfs1Kyk8orFF8bRnSPx-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QD9zFX06J6Nqi8Ph_CE3CQ", "review_id": "nhTrPGuxaZXJopHe2Lth4g", "stars": 5, "date": "2012-10-15", "text": "This is a great Thai food restaurant. My husband and I have been here a few times and have been very pleased with the food, as well as the service. We usually order a few curries and of course the pad Thai. The food is always consistently good. Good Thai food is sometimes hard to find, you definitely won't be disappointed here.", "type": "review", "business_id": "shlAd7PLzWlQrkQ0uYcBBg"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "lEqTAm47rLt_6EI9Ey8kSw", "review_id": "kxqQPk-bX8KWne5I9lKJ8A", "stars": 3, "date": "2009-08-02", "text": "I was disappointed too. I waited an hour and then took at seat at the counter which is ok with me, but if you've got long legs your only option is to sit spread-eagled in order to get close enough to your plate and there's not that much legroom to each side. In the small space in front of the counter the staff was in perpetual motion squeezing past each other to get drinks, etc. My cheddar, jalepeno, sausage omelette was very good, but not huge, and the hash browns were crisp and tasty on the outside but soggy on the inside. The whole wheat toast was great, but no choice of toppings...I was given a small dollop of peach preserves. \nThe waffles next to me looked fabulous, but I'm not a fan. Basically I didn't think it wasn't worth the hour wait in 100 degrees and I was relieved to get outside where there was some breathing room.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w1LjSa5wMexRIQ-82LKWmQ", "review_id": "_rLKA5z57H-DCYUpbV0TPA", "stars": 4, "date": "2010-04-30", "text": "I liked this place... because it's a local owned place with delicious greasy food. This place was written up in the East Valley Trib in one of their \"5 to try\" pieces, which is where I first heard about it. But, I actually think it's funnier that I have been in \"Hall of Fame\", a store located direclty next door several times and never given Giant Hamburgers a second glance. \n\nYou walk into this place, past a grouping of tables and booths (only about 15 tables in the entire place) to the cash register where you order your meal. We each got a burger and fries and they were both great, a real gut-bomb, but sometimes you're in the mood for something that fits just that description. We sat and ate, and they came to bus our table for us. \n\nOn the way out, we noticed the \"Yelp\" sticker on the door. Bonus points.", "type": "review", "business_id": "AoO0FJyUm01lmIJJTcPWEQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "ast7yCfvhIwaD53OFSXoag", "review_id": "KlfXAjwNgh-aCDSYELWFKA", "stars": 4, "date": "2012-02-19", "text": "This Target gets the job done. Their shelves tend to be in a little disarray, and their makeup selections are generally lacking, but other than superfluous purchases I didn't even need to make, this Target has never let me down.\n\nThe grocery section is probably the cleanest and best in the store. I love perusing these aisles.\n\nTheir clothing section is pretty diverse, but because the store is somewhat small, it's packed in tight. It's a challenge to maneuver the area.\n\nThe biggest perk is its central location to southern Tempe. It's also very rarely busy during the day, which is awesome!", "type": "review", "business_id": "3dOUEmJjFfb8iW0H-kbEzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ClItHsk05vOKhg4O3DtMqw", "review_id": "YLO-muSGYKPzIVXNIQbLNw", "stars": 4, "date": "2009-09-06", "text": "I love Thai food. And I like it hot. Thai Lahna wraps these two expectations up in a perfect package. It's the most authentic Thai food in the Valley!\n Like so many culinary jewels in the Valley, the restaurant is nestled in a strip mall between a tanning salon and a yoga studio. The tables are covered in the same silks that I brought back with me from my own Thailand adventure and the staff is super friendly.\n I am addicted to the hot and sour soup with chicken. It's served piping hot with tons of vegies and even more flavor. I always choose the lemon grass flavor, but I'm sure the coconut one is equally delectable. The Green Curry (#71) is also a favorite because I'm a big fan of bamboo shoots. I usually get it with chicken. I also love the #55 (which I can't actually pronounce, yet alone spell) with beef. \n For lunch, the #6 will change your life. I like it with chicken and a TALL glass of water. I always order is spicy but for the faint of heart I would recommend going with the mild version.\n I generally order takeout but dining in is also a fun experience. I have not had one bad meal here and the price point is right on! Take a group of friends and have fun!", "type": "review", "business_id": "wct7rZKyZqZftzmAU-vhWQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "orenM5M73nvnRZClEFQNPw", "stars": 4, "date": "2010-07-12", "text": "Tried this place for the first time and had the chicken pho and and mongolian beef with red rice. All was delicious...but I especially loved their red rice, it was spicy and soooo good. Everything is very reasonably priced and you can even get it delivered from a service called You Buy and We Fly!!", "type": "review", "business_id": "hF0p0dYtDqOfDyKTVUeGZA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "uNzewpl1NSLmRcgwdxKt4w", "stars": 4, "date": "2012-01-29", "text": "I went here with a party of 4 on Saturday night and it was surprisingly dead. Not that that's a bad thing because I don't like crowds. The place is pretty sheik but you still feel like you're in a hotel. Service was fast and friendly but I think it was our waiter's first night or something. He was very awkward but it was ok.\n\nI was pissed we couldn't get the happy hour menu/prices in the main dining room. I know it is common practice for crowded places full of douchebags, but the bar and the main dining room were pretty empty so wtf?\n\nI'm a vodka guy and their vodka menu is pretty neat. They have 8 or 9 unique vodkas from around the US and clearly list their name, where they are from and the price. What I didn't like was their martinis. Pretty much the worst I've ever had anywhere. Tiny pours and full of ice chips. It was like a vodka slushy (oh snap I think I just invented something!!!).\n\nHere is a rundown of the food:\n\n* bread to start - excellent...love the lightly buttered and salted top\n* tomato and mozzarella salad - excellent - one of the best i've ever had. great dressing and ample balls of fresh mozzarella.\n* pretzel fondue - the pretzels were excellent but the fondue and mustard were no bueno. the fondu was gritty and the mustard lacked the kick that I love on pretzels.\n* burger - pretty solid but nothing special\n* mac n' cheese with Shriner's sausage - very unique and very tasty. it was worth having once but I wouldn't get it again.\n* tater tots - perfectly cooked. salty/crunchy on the outside, fluffy on the inside. The only thing that would have made these better is some type of aioli or other special dipping sauce other than ketchup.\n\nThe main dishes of the other people in my party looked excellent. I should have been more adventurous and gone with something more than a standard burger. Maybe next time. \n\nI was going to give this place 3 stars but I just can't. They try to think out of the box to create dishes that are unique, have fresh ingredients, and have a local twist. I will return.", "type": "review", "business_id": "9ziO3NpoNTKHvIKCBFB_fQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bFVetbys5Z74h1fcihmvOw", "review_id": "Ml3mNo4MnnxeCiwRQFRSsA", "stars": 3, "date": "2009-08-11", "text": "Pretty nice sports bar. A lot of nice tvs. Food is typical sports bar food with a few exceptional choices. Would stop by again if I was in the area.", "type": "review", "business_id": "M_Aur61hhpgId1mUzFZByw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0-DnHbefypwaHjA-fH8wTw", "review_id": "aoQTg5HqhzguKrygbUmccw", "stars": 4, "date": "2011-07-27", "text": "This local restaurant is a gem. This is located down the street from the Hilton at Squaw Peak and probably the best restaurant in the area that is filled with a lot of chain type restaurants. I had heard about the Rokerij small plates menu from office workers and I thought I would give it a try. My girlfriend and I did not have any reservations, so we went downstairs in their bar area and ate the bar. You can order the Mew Mexican specialities or the Rokerij side of the menu. There was so much to choose from so we decided to eat off of the small plates menu. We chose the 3 small plates for $25. I was thinking the plates were going to be small and that we would not be filled. I appreciated that on the menu they told you how many \"pieces\" you were going to get of each item. The tenderloin on toast with triple cream brie was delicious. The amount of tenderloin was just right and the cream brie made it taste over the top. The scallops were cooked perfectly as well. Thoroughly enjoyed the taco sampler. Everything is fresh and the service was great. The couple next to us ordered off of the New Mexican cuisine side. The servings were ample and looked very tasty. I have heard the menu for brunch is equally fanstastic, can't wait to go back!", "type": "review", "business_id": "IdnYOlL9aDfMu_S2kcaUkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "IVeQbntRfSZF7Kd109BpSw", "stars": 4, "date": "2012-09-21", "text": "oooooooooh man am I SO GLAD this place isn't near my house, I would gain 20 pounds in no time! \n\nMy sister took me here for the first time a couple weeks ago and my mind was blown by all the unique flavors they served! \n\nThe shop itself is very cute and modern. I like that they have a section in the back with a bunch of board games, very cool. \n\nAs for the ice cream I got the dutch chocolate and the horchata. The horchata was so so good, I cant stop thinking about it! \n\nThe following week I took the husband there. Again the ice cream was very good but the service was terrible. It was an older lady behind the counter and she really couldn't care less that we were standing there. She let me sample an ice cream and then I just stood there for a good 5 minutes while she did other things behind the counter. We did finally get served but my husband wasn't impressed with the serves one bit. This time I got my ice cream in a waffle cone, the cone was so light and airy, I loved it!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4nJDgx8xTdIF2e60kAbQ4g", "review_id": "gIdj1kUaUm5L3WVUWymc3g", "stars": 4, "date": "2012-04-04", "text": "Lunchtime out with a relative on a weekday, and La Condesa has a seat by the window. There is really nothing like its saloon-artsy walls for us to gaze. The Dia De los Muertos motif and wooden furniture make it perfect for easy conversation. \nMost folks seated around us already know where to go for lunch that's not too pricey and homemade. \nThe Horchata is nothing short of liquid dessert, filled with pecans, fruit and rice milk. You can avoid dairy all together with this and a special bullet burro with guac and lettuce.\nThe salsa bar sets the standard for good restaurants. It's wide variety of salsas leave little doubt what creative people run the place. My hope is that only a few people read this and try it. Otherwise, to my chagrin, the next time we park on 16th Street, we may have to WAIT in a line outside.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uq1y9VRH9vOy91x8f4TQSg", "review_id": "C71OVnA3EAksRiyBhh9EEg", "stars": 3, "date": "2012-05-07", "text": "There are definitely better places to go to in Old Town. Overall Martini Ranch is usually pretty slow and charge a cover to get into an empty place. Last time I went there my friend and I got our cover back because it was so dead. They do have good martinis though.", "type": "review", "business_id": "1mhywrdsgdqJM3OGZIpVtA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "F6QsMoJdvtohlbnST-fDyQ", "review_id": "0MAj6HuvWTlvvg428kPloQ", "stars": 5, "date": "2012-05-14", "text": "I came here for the first time ever on Mother's Day. They were packed ,the line was out the door and down the path. Still they managed to get everyone seated and quickly attended to.\nWe were a party of 10 our server was so great and i am sorry to say i do not remember her name. She had all 10 drinks refilled continuously. Brought us lemons and cleared the table with amazing speed, as well as taking care of a completely full restaurant packed with Children that were running under foot. The only down part was that they had plastic dishes but, with all those people what are your choices.\nI loved the food. I had shrimp and fish and vegetables. Nothing fried. The best part for me was the Chocolate fondu!! Although there were many different choices. You could never say that you did not like what they were serving. have seen a million adverts for this place and i am happy that i finally got to go.", "type": "review", "business_id": "NKMyRG-hK6_HNMlckY7Hxw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3gcWln_pMrg_Qt89BlfEUg", "review_id": "cgCFse0w-wOjm1eTT8Fl7Q", "stars": 4, "date": "2007-08-04", "text": "I have stayed in this hotel a few times. I think overall it's good. I am happy with the golf view. The restaurant is alright.\n\nUpdate 9/7/07 - I stayed over at this Hotel again....really great customer service!", "type": "review", "business_id": "SYqTY48DJa1cYhglvmgvsQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "Hjo31dXazWlZssOQnxnMHw", "stars": 4, "date": "2009-03-16", "text": "We have bought a lot of our marine/boating supplies here, as well as fishing gear. They have a very helpful staff, especially this fishing Dude named Issac, and they have just about everything you'll need for your outdoor enjoyment. However, I don't find their pricing very stimulating... They have an exceptional inventory, but you are going to pay full retail prices here. I prefer to get outdoor gear on e bay or at Walmart, at discounted prices. But, its a very fun place to browse and shop. The restaurant is pretty good too, and also fun!", "type": "review", "business_id": "UU-kkvyX6pyrl_4fK6Qpvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1WriFmPd3h0-L45cCDzrVw", "review_id": "u93ukANTQUyfQI2PINLuQg", "stars": 4, "date": "2012-04-25", "text": "I have to admit I was a bit hesitate about staying here after reading some of the previous reviews. We stayed in the 9000 section of the hotel which is behind the convention center part. I'd recommend this if you want something quiet where you won't get noise from the front parking area or pools. Yes, I said pools...a great thing for those of us who only wanted to relax and get some sun.\nEvery staff member that we encountered walking the property was friendly and always acknowledged us. \nWe had a two queen room and the room itself was very large and I liked that every room has either a patio or balcony. Our view happened to be of the basketball and tennis court but it was nice to be able to go outside and sit on the patio in the morning to have coffee and relax. I assume that we had a room that had already been renovated since the bedding looked new...and the bed was SO comfortable! \nThe breakfast buffet is good and it's nice that you can order eggs anyway you like them as part of that. Other than that we mostly just had drinks while laying by the pool. \n\nThe only negative thing that comes to mind is the fact that the toilets are VERY loud when flushed. I have no idea if it was the rooms next to us or above us but every time someone flushed a toilet in the middle of the night I woke up....I am a light sleeper but still, if there are more renovations to be done I hope this is something they can address.\n\nThe location is great and I can't wait to book my next trip back.", "type": "review", "business_id": "CD-2yHTSObgvAhW-pYHfMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "odaj8Gm4jc7lF20WoZ8RZg", "review_id": "tGry0EcrYXE53DjHdEWOgw", "stars": 1, "date": "2010-08-28", "text": "I ate here for the first time a few weeks ago on a Friday night/Saturday morning after seeing a show at the Tempe Improv.\n\nI came in around midnight and the place was not that busy. The waitress was pretty nice (did everything expected for a waitress) and the guy who I thought was the manager was easy to talk to. However, those are the only two good things I can say about the restaurant.\n\nI ordered the BBQ wings and they were TERRIBLE. The flavor was very bland and half cold. The blue cheese I ordered was quite watery as well.\n\nI also sat by the kitchen and noticed that a guy in the back was washing a stool in a sink near where the food was made. Needless to say, I won't be eating at Hooters anytime soon.", "type": "review", "business_id": "wOvAbdVYDaguotpdSALsfg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "XDVABSG5JRXry3Dm45vnyA", "review_id": "CBcv8KvsV2jxubwVvrJhHg", "stars": 3, "date": "2011-08-15", "text": "Would have been 4 stats based on prior visit. This past visit the service was just garbage. Not the servers fault, she should have never been on the floor in the first place. Pretty annoyed that she had to ask other servers for assistance while taking our order. What's the soup? I don't know, Jim what's the soup? Is there cheese on the French dip. I don't know? Karen is there cheese on the French dip? The food has always been great and we will be back. Hopefully I can give them 4 stars next visit? Oh yeah, love the.new location!", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "S_dxK8th_fjMYRuNc5l39w", "stars": 5, "date": "2012-06-25", "text": "The best !\n\nFrom my first shredded beef taco almost a year ago ..i have been lovin' this place.\nI also love the number 13 combo platter (.Mini beef chimi's ,Gauc ,rice and beans) \n\nThe tacos are 5 star fresh and yum ! ... AND reasonably priced.", "type": "review", "business_id": "oyzxIqrtzu-8sWlPhJVsLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "oSzxMYgem8Oi3f9wfoS_cA", "review_id": "wBNgwzIHJRE_P6nGZ50nMg", "stars": 5, "date": "2009-03-09", "text": "We showed up out of the blue on Valentine's night looking for food. We got a seat at the sushi bar right away, but the place was otherwise packed. I guess we were lucky. We passed on the V-day prix-fixe menu and decided to order as we ate.\n\nOur waitress was visibly perturbed by my wife's order of tap water to drink and vegetable tempura to start. Judging by her expression, she took us for deadbeats; it wasn't offensive but hilarious, we're old enough to be confident in our own opinions of ourselves. Anyway, the vibe at the W was definitely people trying hard to be cool and of-the-moment.\n\nIn any event, we struck up a conversation with the chef behind the bar where we were sitting. We initially ordered some basic sashimi dishes, but when I asked the chef for suggestions, he started rattling off a series of custom creations he could make. So we let him do his best, and he turned out a great collection of sashimi dishes, none, at least as far as I could tell, on the menu. \n\nWe had a great meal, and we would definitely return, at least if we didn't live in San Diego.\n\n(The waitress eventually warmed up, probably thawing as she watched us eat through plate after plate of sashimi....)", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OD7nfm02bJDvbz7nsikFsA", "review_id": "EPjdqHHenNpEdEb59Dv0-g", "stars": 5, "date": "2012-06-01", "text": "I didn't know what to expect from this store. It was over 105\u00b0 so I wanted something cold! You get samples to help you or confuse you in to many choices! I went with the basic: cookies& cream mixed with vanilla carmel. Do yourself a favor & get the large so you can mix plus go on Thursday for double stamp day!", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MWIfyGWBijcFJ-3JS1hWnw", "review_id": "Y_VehMo9LmLoNQN_pdW0Kw", "stars": 5, "date": "2012-06-23", "text": "Absolutely unbelievable!!! This is so worth the drive from Scottsdale to Tempe! But get there early as they close early and run out of food! It's so delicious my mouth is watering just thinking about it. I love French pastries, crepes and desserts! The macaroons melt in your mouth. I will be returning soon!", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BQBi0UVhsiut14E6uh1YKg", "review_id": "QEkvWRmUEYaMpDhur-pQ2A", "stars": 3, "date": "2010-08-11", "text": "Ok... So I am a sucker for a great breakfast joint that isn't some huge national chain. Maybe it's the fact that orange county seriously lacks many good breakfast joint option. Secondly, the fact that they have dog friendly patio service elevates the place in my book.\n\nOur trips to Scottsdale aren't complete until we make a stop here for breakfast. The portions are huge! The surprising part is that the food is good, which is not usually the case with places with places that do large portions (usually hoping that size covers up the taste).\n\nWith their Mexican options such as the breakfast burrito or huevos ranchero... They knock the cover off the ball. The green chil pork in the huevos rancheros is fantastic and keeps me coming back for it.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "lh1-4Sp3InwVLeKrEw0t4w", "review_id": "qkDdzI2wcxwg0SqZZYcMUg", "stars": 5, "date": "2012-08-08", "text": "Best Ice cream sandwhich I have ever had", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3PrvtLsXVbxVYaIfh4y05w", "review_id": "PRhlVT0v4F3CmKGc-FR08Q", "stars": 3, "date": "2011-03-10", "text": "Good vibe - and outstanding location - they definitely work well with a large group (10), delivering orders to the right person without asking \"who gets ...\" LOVE THAT KIND OF SERVICE. And not once, NOT ONCE, did the service people call any of our group \"guys\" (okay, okay, a pet peeve of mine). Horseradish potatoes are a bit salty -- and prime rib serving is definitely less than generous. That said -- the fish and chips were great, as were (according to one of our party) the pork and beans. Desserts are HUGE -- share with 2 or 3 others.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BgY9LwHmY8BO_lPI3pNRFQ", "review_id": "B_crZhY30U-KdQ3IsFMXqQ", "stars": 3, "date": "2011-01-30", "text": "This place isn't bad. The place is pretty big in size and I love that they have a drive-thru. I like coming here on the weekends, especially when I need to study, particularly in the vault. Some times they have live music, which can be good or bad, depending on if you're there to study or hang out. They have decent coffee, not the best, but not awful. And I'd prefer to go here over Starbucks any day.", "type": "review", "business_id": "IoFggnoj1P4EcmNEP2K6Ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e5YZvlSRknGmROE209SF3Q", "review_id": "cI9TMVFYjo5HwLrYmSaajA", "stars": 5, "date": "2011-04-20", "text": "Took Maddie here for a quick nail trim, was super impressed. Friendly staff, prompt service, and light on the wallet. What more could you want. My dog is with me always, so I wont need the boarding services, but will definitely make this my new pet vet! My co-workers have gone to the vaccination clinic they have where they were also impressed by the service and low price! Thumbs up for this place!", "type": "review", "business_id": "NadvCSdVDPx2K3z0827H9g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "i_djrvoDoOSb-WM6UsMNYg", "stars": 4, "date": "2011-05-18", "text": "This is a standard place to celebrate Birthdays. The drinks are delicious especially the kiwi and acai specialty drinks. The rolls are over $10, but they are unique and tasty. The environment is very cool and the location is great. Parking is bad just like everywhere in Scottsdale, you need to park in the street. Location is great because you can grab dinner here and then go out after. There is also karaoke available if you want to rent a room for a special occasion.", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "6fboUxwhAsUMx1F9yCzlMQ", "review_id": "rt8iVOy3zE4AHp-l0af3pQ", "stars": 3, "date": "2011-04-13", "text": "The hubs and I stroll through the indoor market when we are down at the farmer's market on the weekends. They seem to have a good assortment of items, though the prices are quite high. But I'm willing to give them the benefit of the doubt because they are a local business. \n\nOne morning we were at the farmer's market and decided to grab something for breakfast - its never a good idea to shop hungry :). I got in line for coffee while the hubs ordered breakfast. The coffee is fabulous! I like my food simple - so when the hubs came back with an egg and cheese I wasn't looking for anything fancy (eggs, cheese, maybe a little butter, salt and pepper on some sort of bread product). I quickly found out that this was some sort of a hipster egg and cheese. Lettuce on an egg and cheese? Who does that? There were also tomatoes, mustard and assorted spices. I'm willing to admit that maybe its just me and my underdeveloped \"simple\" palette. So if you are a hipster and you're hankering for an egg and cheese - this is your place. Regardless, be sure to get a cup of coffee, its awesome!", "type": "review", "business_id": "Ax11wyp-FudujeU9nejQbw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Odoe2LqAPrV0TjdXxkP7Mg", "review_id": "nFlPy6OdhjkQXP1g51r-4Q", "stars": 5, "date": "2008-04-13", "text": "Wow, this place is still here? I went there as a girl (15+ years ago) with the family on a regular basis. If it's still around, then it MUST be good!", "type": "review", "business_id": "N_6bV3c3JagKW7sD3X9ldA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "F6d_GAFAEuvIEW1Zg5KPRw", "review_id": "Y7VrHxxI2x8qkCl6qdmM-w", "stars": 2, "date": "2012-09-03", "text": "I expected better.\n\nThe ambiance is pleasant. It's lit well and the furniture is very new. The booth was comfortable. The bar appears to be a little dark and moody, but in a sultry way.\n\nWe were there on the Sunday before Labor Day, around 7 PM and it wasn't busy at all. Maybe 8 patrons besides us. We were seated right away in a booth. The waiter was very quick to take our order and explained the specials. \n\nFor the appetizer we ordered the cheese, fruit and crackers. They \"ran out\" of crackers and gave us toasted bread soaked in butter instead. We asked if we could have dry bread instead. They obliged. There were 3 pieces of cheese, all of which were the same and brie. Seriously, please diversify the cheese plate with more than 1 type of cheese. And have crackers to go with it, since t's on the menu description.\n\nMy girlfriend and I both ordered a quarter chicken. I had the true jerk sauce and she had the honey truffle sauce. The chicken quality was on par with Boston Market or Costco, maybe even fattier. We were seriously unimpressed. The sauces were good, but definitely did not blow your socks off.\n\nYou get to choose two sides along with your chicken. I had zucchini and whipped potatoes. The whipped potatoes come with your choice of three ingredients from a list of 12 or so. Horseradish, garlic and mesquite sour cream were my choices. The potatoes were excellent, both zesty and filling.\n\nOverall, I was unimpressed. This place is like an upscale Boston Market where the chicken is lower quality and the only improvement is in the quality of the sides. The sauces are good, but you can do much better.", "type": "review", "business_id": "Rj5gyaRIIwDX_OJa1LlE4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EeSBXLMh3CvjSqBpJWT9gw", "review_id": "VpJ7UzZKDy27kpvwX1GoXQ", "stars": 4, "date": "2012-10-02", "text": "I registered at both the combo Toys R Us/Babies R Us store by my house (on Bell Rd) and finished up at this location, since it had a larger variety.\nNice goody bag, ample selection of items. \nFurniture prices are over inflated, but that seems typical for all baby furniture. \nYou get lots of coupons too once you sign up for their rewards program which come in really handy!\n\nThere are changing tables in the restrooms as well as fantastic mother's rooms..which have a rocker, sofa, and changing tables, as well as wipes, diapers, etc. Great for breastfeeding discreetly!", "type": "review", "business_id": "t-jzbX3Qh-W8vikXexmkGw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "usQTOj7LQ9v0Fl98gRa3Iw", "review_id": "NnjsynTt-qqFehuqEehIfA", "stars": 3, "date": "2010-08-19", "text": "My sweet tooth was yelling at me! I had to stop in. Four times (to date) and each time I try something different. Other than the cheese curds (which where just ok) each visit was for the frozen custard. \nVERY RICH and CREAMY a little goes a LOOOOONG way. I have tried a small berry sundae, a pineapple malt, and a small black cherry cheesecake concrete mixer. \n\nThe sundae by far has been my favorite. I love the simplicity, the berries were not overly sweet, strangely artificially thickened. \n\nThe malt was nice and malty which I really appreciated and was rather thick even after melting slightly. \n\nNow the concrete mixer was the richest of the rich. Maybe it was because I decided to go with a cheesecake flavor (to which you can add any other fruit or topping flavor). It was very tart like cream cheese (about as tart as a good Greek yogurt) with small bits of graham crumbs swirled through and of course the blackberry flavor.", "type": "review", "business_id": "ykKSshfa9ANCZCuvM2LaWg"} +{"votes": {"funny": 1, "useful": 9, "cool": 4}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "HlXOJDG7iZpt-oIiV9tzDw", "stars": 3, "date": "2008-09-24", "text": "I went to Pei Wei last night for a casual girls' night dinner. It was a perfect place for a group of girls to meet because of the following:\n\n-it's cheap\n-it's fast casual so each person pays their own bill and then sits down (no stress when the bill comes as is often the case with groups)\n-there is plenty to choose from on the menu\n-for those that are picky or dieting, they are great about special orders, sauce on the side, etc...\n\nThat being said, Pei Wei is just average in my eyes; never my first choice of places to go, but I can always find something to eat... Last night I had the shrimp teriyaki bowl with brown rice. The shrimp tasted like it came from the freezer (probably because it did), but the veggies, rice, and sauce were all pretty good. I noticed they changed the menu a bit since my last visit, and a new 'special' is a Vietnamese Noodle Bowl - Pho type dish. The chicken lettuce wraps and edamame are always safe bets and hopefully will remain on their menu forever.\n\nI'm sure I'll be back to Pei Wei because of the positive factors listed above - the concept is a good one, just don't compare it to a high end restaurant and enjoy it for what it is!\n\nPS - shout out to all the girls that came out last night - I had fun seeing all of you and can't wait for the next one!", "type": "review", "business_id": "_ql42UadWUh9SgU09_c2mQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wvsMlpa6U9RV4-_pU4gBJg", "review_id": "0si6a9C7Np0w4DllNvwKdA", "stars": 5, "date": "2012-03-22", "text": "This is my favorite venue--we've held two events here, and I've attended another four.\nAs an attendee, it's clean, bright, FREE parking, good food, constantly refreshed coffee and beverages, and good layout. I love it. As a planner, it's a good deal for what you get, and it's a well managed event end to end. Conference staff are easy to work with, flexible, and they are there to support you. IT works and it works well. it's a great facility, food, service, and staff. Good open expo area too, if you have vendors, advice--do not use a separate room if you have a lot of vendors--put them in the main ballroom, and/or the vestibule, not in any other room. Vendors like to be showcased and have traffic, not shuttled off to a low traffic low visibility area --regardless of any price savings.", "type": "review", "business_id": "N2T_ToBx97ZSo3iW3r9xWA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "65_Tmc3eZxr9aMbF6rGcOg", "review_id": "fHT5m3-x8UpBmliStkiorw", "stars": 5, "date": "2012-03-11", "text": "Rarely give a 5, but truthfully? We set out to go to Giuseppes and stopped here...thought we were there...I'm sure Giu. is good, but Arrivederci is the bomb. We will keep going on every visit. Reasonable and really, really authentic. Bueno Sera is your welcome..and they mean it! We loved it. . . reasonable, too. b", "type": "review", "business_id": "fmWyI5ec05F8PJpx3eNpLg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qd_4Oc9RnxTmvOGtotYJzA", "review_id": "95oM9c2xw8K_ByOorm1g9g", "stars": 5, "date": "2007-09-04", "text": "The pool area was very nice. Every chair had a towel on it ready for you. The pool service was great. Greg Badger is the most hard-working waiter there. He was out in the sun in upper 90/lower 100 degree temperatures and was very helpful to all the guests. I ate at Elements the other times I visited Arizona, but the poolside menu is great too! I preferred the orange chicken bento box. Although edamame was not on the poolside menu, our waiter was able to get it for us. That is great service!\n\nThe bed was very comfortable; nice and soft. I also liked the wall-mounted, flatscreen LCD tv.The valet service was great as well. We were greeted everytime we drove into the Sanctuary complex. \n\nThe tennis courts were very nice as well. I played during the morning and made use of their ball machine to warm up.", "type": "review", "business_id": "xm8F51qKjx0cfdOSukTDng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8cwxbFmRnOXUOnAhaMhTzw", "review_id": "JHxx5aZObBmG7OKIlZfuoQ", "stars": 5, "date": "2012-04-17", "text": "We recently moved nearby Pho Ao Sen and dine there often. I love their food, the service, and also the atmosphere. My favorite's are the bun dishes, I always order the no. 26 with chicken instead of pork and they have a delicious vegetarian lemongrass beef vermicelli that I would highly recommend. Pho Ao Sen is a great place to dine with friends, mine have always enjoyed the experience.", "type": "review", "business_id": "yMUVflS-2SnOGafXmdHy6w"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "KwQs1O_M5Y83LYrmES7KIQ", "review_id": "Lcs_S1llDzNMZvjfA2vSpQ", "stars": 1, "date": "2010-09-23", "text": "Read al lthe hype, so decided to give Cyclo a try. What a disappointment! Portions were small and overpriced, owner thinks she's the next best thing to sliced bread. She needs to go back to Vietnam to remember how real Vietnamese food is prepared.\n\nGive this place a miss.", "type": "review", "business_id": "UIGFrEcoDsw05I1UOrxdOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "1twmYoqVmZUky9X2in-43A", "stars": 4, "date": "2011-03-23", "text": "Used a Groupon here, and it was a great experience! The express mani/pedi wasn't express at all - they took their time with me, and everything felt great!\n\nThe woman who did my pedicure was fantastic. My toes and feet look wonderful!\n\nThe woman who did my manicure was pretty good. The only issue is that she accidentally cut my thumb. When it bled a little, she just painted over it. It's now been a few days, and my thumb still hurts. \n\nOverall, it was a good experience though, and the staff was very friendly! I would return for sure.", "type": "review", "business_id": "won3i4Cpc4M8YnbWBHHUqw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "_dN47iPElN0QqRc1pmntvA", "review_id": "ioUQfVB76uyEuhUNI05M4A", "stars": 5, "date": "2011-01-25", "text": "I was in Phoenix for three weeks on a business trip and luckily found this spot on my 3rd day in town. I ended up eating here 7 times in 21 days. I brought my coworkers here, and they all ended up eating here at least 2-3 times. It's just that good.\n\nSo how good is it? Lets just say that their tortilla soup was the only thing that could cure my horrible hangover after a long night in Scottsdale!\n\nI've eaten the fish tacos, fajitas, enchiladas, nachos, and tortilla soup. All were exceptional! They also bring out chips with salsa, as well as beans, which was a nice touch.\n\nThe dining area is fairly small, but they do have an outside dining area as well. The wait staff is very friendly, and they will get you drinks as soon as you sit down, which is something that more restaurants should do! The food comes out very quickly, and they do have 2 TVs, one on either side of the dining room, which are usually tuned to a sporting event.\n\nI've been out of Phoenix for 3 months now and I miss Mi Pueblo! I'll definitely be going back the next time that I'm in Phoenix!", "type": "review", "business_id": "xBCfrESSbroTjhVcRfG4NA"} +{"votes": {"funny": 5, "useful": 7, "cool": 5}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "tnVcCjuSQYwA6cKXWZOxrQ", "stars": 5, "date": "2008-05-20", "text": "Ok so us 5 hot chix got all dolled up for dinner at City Hall it was about 7 when we arrived on Saturday. The service was top notch from the get go starting with the valet. We were seated by a pleasant hostess in the large main room. Our waiter was an entertaining gentleman, that's one huge plus I have to say about Mastro's is they \"usually\" have seasoned wait staff they really know their product.\n\nThey brought us the great basket of warm breads, we ordered bottled water for all and a bottle of some 06 Sauv Blanc that was mighty tasty. It was impossible to have an empty glass this night!\n\nEveryone had fillet's but me of course, I mainly had apps, side's, wine and desert ;) I did try the seared ahi tuna it was ok I wasn't too impressed with it though. Beefsteak tomato & mozz (see pics) very yummy! The creamed corn, sauteed asparagus and mash were all very good!! I couldn't talk anyone into the lobster mash or any caviar boohoo me. =( Everyone loved their meal!!\n\nMy g/f was coming back from the bathroom and missed a step or something somehow she lost her shoe but there was a busser or someone right behind her he picked it up for her and even put it back on for her! Now that is what I call 5 Star Service!!\n\nWe had creme brle they served it with various fresh berries and a huge bowl of their fresh made whip cream yum-gasm's were had all around. While Mastro's is not my top choice since I am not a \"Steakhouse kinda girl\" it was all good stuff. They always play some Michael Bubl and who doesn't just love him!?! It was about 3 bills total and we went home with doggy bags and full tummy's.\n\nP.S. I had their sweet potato fries they were good but I like the ones at Fez better....just sayin. (O_o)", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TgXQJsWCTVE4BFijf0kM8g", "review_id": "6bQta1HtLii1ic_G0bCcjw", "stars": 4, "date": "2010-01-19", "text": "I visited Sala Thai with a friend and I had the Pad Thai. Food was pretty tasty and very filling. It had a nice tang but I might have preferred to have a fork and knife to cut the very long noodles with. Other than that I'd definitely visit again.", "type": "review", "business_id": "WPmamMTGAmNYXGoXW1mWyQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "aM2nMnlpO9vInVtVw78eig", "review_id": "5aE_POeGQDIFSglAvwgIVQ", "stars": 5, "date": "2011-09-29", "text": "I love this place! My girlfriend and I go here to celebrate special occasions and the staff is so friendly. We sat at the bar last time and the bartender Jesse was so great. The happy hour menu was amazing too. $5 Mark West Pinot Noir! The manager was super friendly and came over to make sure we were doing okay. Great experience! Definitely recommend the calamari too!", "type": "review", "business_id": "8t80-omyflkywRfu9LPh6g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "FNFJ97BmcQklkYNQNRA7Ug", "review_id": "BGqBdmUgDbVoD0D_IWMbcQ", "stars": 5, "date": "2012-02-29", "text": "I can only vouch for the chicken salad, as it's the only thing I've ever tried in the 20 years I've been coming here. It's THAT good. I always think about trying something else, but why mess with perfection?\n\nWalking inside gives you the sense that you've stepped into a time machine and arrived in the late 70's. I, personally, find it to be awesome. Most of Scottsdale is lacking in historic flare. And yes, the late 70s is historic by Scottsdale standards. Besides, whatever money they're not spending on updating the decor is clearly going right into their magically delicious chicken salad.", "type": "review", "business_id": "kEyCMHBnohaWc81omLDfYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cCNucgcprU1pEr_TH5qfaw", "review_id": "VUTsA0j-yLDGSAuQM0Djyg", "stars": 5, "date": "2012-07-18", "text": "I would order silvermine over Jimmy Johns ANY DAY! They have the best meatball sub....compared to Jimmy' Johns it is GOLDEN (never mind the fact that JJ's doesn't have hot subs...) They are always fast to deliver and the food is always great. My go to sandwich shop **MUCH LOVE TO SM!*", "type": "review", "business_id": "OuGcrCgeTBrJnEGvLZ3JvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tCLJBVBcpzaYhHKW7yjPeQ", "review_id": "BjrkPzda0Li8TMokdQEHCQ", "stars": 4, "date": "2010-06-12", "text": "Great BBQ - Friendly staff, super atmosphere and reasonable prices - what else can you ask for? \nRibs and BBQ Chicken are my favorite. Try the Devils spit sauce if you dare.", "type": "review", "business_id": "4iJUNAUVYNEuh16yK6Virg"} +{"votes": {"funny": 1, "useful": 0, "cool": 2}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "4pXQ7ptvpqt3U7G1tHKzfA", "stars": 5, "date": "2007-03-31", "text": "Put it in the baby book. Baby's first AJ's. And you'll always have a special soft place in your heart for your first. \n\nI love that while this location is in a nice part of town, it's not quite the same level of frou-frou as many other spots. That means rather than dealing with the Scottsdale types who have to dress up to go to the store - you're dealing with a greater range of folks - but they are all willing to pay a bit more for the good stuff. I will say, you'll pay less for a box of cereal or box of triscuits at a Circle K than you will at an AJ's. And I don't think I've ever seen anything on sale. \n\nBut there is just nothing like their fresh food. Be it produce or the meat section, the colors are brighter, the items are bigger and you just know it's going to taste better. Their chicken breasts and pork chops are so amazingly good, and so large, you want to eat them all at once, but you just can't. You have to try some of their pre-prepped meats. My fav is a pork loin with apple stuffing. Wow. \n\nAnd of course, great pre-made foods too if you just want to pick up something to go. I've been suckered in to their desert section far too many times. And they are always good. But dang they can be pricy - so it really has to just be a special splurge. \n\nIf you haven't tried an AJ's yet, I suggest this one to ease you into things. There may be quite a few Lexus in the parking lot, but there won't be too many Hummers.", "type": "review", "business_id": "jTcLbRCOCnGB4wCgsIYswg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tNxNMmLZmCF2A_PXcSRVLw", "review_id": "wsoyEPmVgMsDX_6G_0_xSg", "stars": 4, "date": "2010-04-12", "text": "I have a cooking problem- I can't do it. However, I loved coming to Entrees to Go to make our meals. My husband bought a Groupon for this place and we decided to try it out. It was a wonderful experience, and that means a lot coming from me since I am not a fan of cooking. \n\nI love the concept of Entrees to Go. You prepare your meal at this place and bring them home in a baggie. Meals ready to cook and no mess in my kitchen = awesomeness! Everything you need to know to prepare your food is explained and if you have any questions they are answered immediately. \n\nThe only downfall...The price w/o a Groupon is a little pricey. Three full size entrees (each entree serving 4-6) is regularly $80. It's great if you work full-time and don't have time to cook on your own but it's a little high for my pocketbook. However, if money wasn't a factor I would cook every meal at Entrees to Go. \n\nLoved it!", "type": "review", "business_id": "UwWVGxJGhTBB5W7-uBlJPg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "muU7S-YE8D3FM5KgxOtFCw", "review_id": "4s938bfGLdbstz_9wySMlw", "stars": 2, "date": "2012-05-21", "text": "I stayed at San Carlos May 19th - 20th. It was merely \"okay\".\n\nI liked: \nHistoric old school hollywood feel. It was chic. I dug it. \nThe place had character and I particularly liked the outside of the rooms more than the in. We were in walking distance to the places we wanted to go. \n\nHow about no on these items:\nSurprise! No hotel parking. You can pay the Valet 20 bucks or pay 15 over at chase's parking lot. \nSurprise! They hold an extra $25 on your card in case of room damage. \nGhost lounge? It was Saturday night and the dance floor was empty. It wasn't the plan to go there but it was kind of depressing to see that....\nGhosty goodness? Nope. There was a somewhat weird vibe about the place but nothing really standing out. My house has had more ghosty vibes and action that I received here. \n\nIt has the potential to be pretty awesome but the surprise extra money you end up spending seems like it makes up the difference of what you save.\nI will probably avoid going here again, including the club.", "type": "review", "business_id": "_yfprBETaYgySkKyl8ZWMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EEsYi_yEGWADkWJxkkWcYg", "review_id": "vnxqFAvlKZv4d-UXad3qbw", "stars": 4, "date": "2012-04-11", "text": "Chick has the potential to be a restaurant we want to keep coming back to. The food will keep us trying for an exceptional experience, but some things needs to be fixed if Chick is to see it's first anniversary.\n\n1.) The space: Cute slightly upper scale boutique \"farmhouse\". Decor and lighting is warm yet modern. The only miss: The beautiful tables. They are heavily distressed with very deep grooves as if made from reclaimed wood. There can't possibly be any way for them to clean the tables thoroughly - The thought of a small portion of everyone's food that has dined here before me staring at me -- especially as time goes on and those grooves fill up with food & germs grosses me out. A piece of glass on each table is a definite food safety must. To make matters worse, tables are set with your silverware on the bare table. Silverware should never be placed on anything other than a fresh a napkin or table cloth. \n\n2.) The menu: The menu they offer is a little different from your average restaurant which can make for a memorable experience. However, putting a menu like theirs in a small but thick leather bound binder with just a couple items per page made us feel like unwelcome outsiders. The incessant flipping between pages with types of entrees and sides and sauces was quite frustrating. I recommend picking up the takeout menu at the front door and using that to navigate the menu.\n\n3.) The service: Awkward but very friendly. Our waiter seemed like a foodie fit for a restaurant like this, but his table presence left us feeling like we needed to make *him* comfortable talking to us or requesting anything. I had to fight most of the meal to have more than 3-4 ice cubes in my iced tea. After asking a couple members of the staff for a glass of ice, they kept bringing back my glass with just more tea and no more ice. At one point, the server brought my iced tea glass back without a straw. When I asked for one, his reply was \"can you use the one from your water glass for now?\"\n\n4.) The food: This is what made up for most of the other shortcomings especially because Chick is still new. I had the country pork with creamed corn and mashed potato \"bar\". You get 3 toppings with the mashed potato which the chefs will assemble for you. I chose mesquite sour cream, applewood smoked bacon, and Vermont white cheddar - Delicious! The creamed corn was very tasty as well. The mandarin orange chutney paired amazingly well with the pork.\n\nMy husband had the chicken and dumplings. It's a little different from the traditional C&D, but was very good. It's served in a lighter broth instead of a heavy sauce which was a welcome change.\n\nWe decided next time the hubby and I go, we would take our chances at the bar and avoid the servers until they can get caught up on their service skills.", "type": "review", "business_id": "Rj5gyaRIIwDX_OJa1LlE4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wkrHJekjUMxQrqs8n5ZQ-Q", "review_id": "IHqq9J-0gRin-Y5upCVapw", "stars": 4, "date": "2011-07-12", "text": "always consistent quality and value. we have been regulars of pappadeaux in our previous home of TX, and we still are big fans!", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "qwu5B9anH4AlEtau0K-6aQ", "review_id": "ynEa0Sr8buBkffNRlLmKVA", "stars": 4, "date": "2012-01-12", "text": "Nestled between the bright lights of the once famous Graham Central Station and a no-name BBQ place is a lovely gem I like to refer to as \"Skips\".\n\nThe bar side of this place is nothing too special. Don't get me wrong, its BIG for a bar, but the ambiance and furniture are pretty dated. So, unless you enjoy playing pool, I don't know why you would want to come here.\n\nThat being said, the pool here is great! They just got around 15 brand new Diamond 7' tables which play AWESOME. Their 9' tables also play well, but they have some PRETTY unforgiving pockets. So if you are a beginner, I wouldn't play on the big tables unless you like to be frustrated.\n\nThey have no house cues on the floor. you have to rent them up at the bar for $1.00. This is great because they can maintain a better quality cue for you (if you use house cues).\n\nTheir food is actually REALLY good! I've had their Turkey Burger which was moist and delicious. It comes with a nicely sized basket of fries. Also, their Nachos are ridiculous good (That's saying a lot coming from me)! The only bad thing about their nachos is that they use that liquid fake cheese... I prefer shredded blends on my nachos.\n\nThe waitresses there are uber friendly. Yes, UBER! They always make a point to remember your name and they are always SOOO busy! Make sure to tip them well. They will remember you!\n\nWednesday night is league night there, so unless you want to watch, avoid Wednesday from 7-10pm. Oh, and HH is from 2-7 and lots of the food (including the nachos and Turkey Burger) are priced to sell!\n\nGo shoot some pool!", "type": "review", "business_id": "ht17atGW3tP8dFeiJkXI_g"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "SNH5L8QZ4kT9unURQUrYow", "review_id": "Srj2SKvNwwQrJODZEzN_5g", "stars": 4, "date": "2011-03-05", "text": "Trendy, Current, and a young 20s crowd. You know its trendy when you see all the waitress' in black fish net tights and short black dresses. \n\nYou dine while they play a great music selection with lights all over! Its like eating at a lounge right before the place turns into a night club. Very city-like. \n\nCome for Happy hour!! I came here with 3 other classmates: Angela, Julie, and Natalie. When they said happy hour for sushi, I was thinking a low key place that was A-OK. I was completely wrong. This place is trendy and hip, which is unlike the suburbia of Mesa. \n\nDuring happy hour, my friend and I split the Calamari, Calamari Sushi Roll, chicken wings (6 pieces) and a Margarita, and it came out to $22. Not bad! I like the ambiance, and its definitely something I will be coming back to!", "type": "review", "business_id": "s26P-jeVUH9TjnTPQttPag"} +{"votes": {"funny": 2, "useful": 0, "cool": 3}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "M5dPZrWUF2zhZb4gCNxT_w", "stars": 5, "date": "2008-01-14", "text": "Thanks to everyone who put up with all the closed roads and driving detours yesterday for the marathon. As one of the largest marathons in the country it was really cool to see all the spectators, volunteers and bands supporting and encouraging the 34,000 runners. I finished the half marathon yesterday and the war wounds aren't nearly as bad, but I am sore as hell still. \n\nIt became clear at the startline that we really have to do something about the Capitol complex. That area is a disaster. Thanks for all the carb-heavy food and drink at the start and finish. I have never enjoyed spilling hot coffee all over myself up until yesterday morning. Thanks to the UPS drivers who hauled our stuff to the finish.\n\nThe half-marathon doesn't run through the most attractive parts of Phoenix, but McDowell Road is definitely a step up from Van Buren.. That's for sure. Could you imagine thousands of runners trying to dodge hookers on their way to the finish line?\n\nAnd also, thanks to the guys in my running corral who dressed up and ran as the Super Mario Bros: Mario and Luigi. You guys rock.", "type": "review", "business_id": "oRJgXbcawYd3kULBucqdnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IXn7pcVEnJUMlJExYdWPQw", "review_id": "svnV6nXHR-k49Hv3Oes7kQ", "stars": 5, "date": "2011-02-22", "text": "I have been going to Cartel for a while, and their coffee has absolutely spoiled me. I can hardly drink coffee or esspresso from anywhere else, I even buy their beans and brew it at home.\nMost of the bartista's are stellar, but expect to wait for your specialty drinks, not only because they are almost always busy, but also because making kick ass coffee drinks takes time.\nI suggest either the Honduras with cream, an iced agave latter, or a cappuccino (which you have to drink there).", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6AuI-RB8zGjT2f3iW2r19Q", "review_id": "bzygm-uUnBe3rcVyE_KVjw", "stars": 3, "date": "2012-08-13", "text": "Great great happy hour! Fun atmosphere! Great decor and best garlic edamame in the valley!", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Lzug6WSdwzdGECzcgHPEyw", "review_id": "aTBUk0VthOdgFxuxhsXjUw", "stars": 1, "date": "2011-06-10", "text": "So, there's no negative stars, too bad. Tried ordering take out before actually eating there to try it - good thing, you couldn't pay me to eat here.\n\nThe only thing about the Colossal Cobb salad I ordered was the price. $10 and change for lettuce just enough to cover the bottom of the styrofoam with a sprinkle of toppings. Where'd they get their chef, Chili's? What a disappointment. All the reviews say ' a lot of food' ...for who, an infant?\n\nI had also ordered a couple of carmelized cookies as well. Didn't know deep fried, greasy discs of oatmeal harder than concrete were called 'cookies'. Good grief, the bakery wasn't even good! Had to spit those things out before they took out a filling. \n\nThe only good thing about Chandler Chompie's is Jason's Deli right next door.", "type": "review", "business_id": "nmj5yK9dZ2atlM9RYDCRHw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "882WrHXhCvAACeYLXKa9_Q", "stars": 1, "date": "2011-07-10", "text": "I am totally baffled why this place gets such good reviews. I have been there a few times because it's close to my work and I received some gift certificates for my birthday. Unfortunately after the last experience, I can't go back. Although they are very nice and have great prices, I have to reveal the ugly truth: \n1. They don't put any effort into sanitizing the tools or the pedicure bowl. I actually saw them clean the brushes and tools in the water I was soaking my feet in and then just rinse out the bowl after they were done... not spray, soap, nothing!\n2. Reason #1 probably explains why my heals cracked so severely after my pedicure that they began to bleed. I had to use peroxide, neosprin, and bandages for almost a week to get it heal. \n3. They water down their nail polish... so much that it destroys the bond and polish never actually dries. \nI hate to bash a business with good customer service, but these practices are simply unacceptable. I obviously won't be back. =(", "type": "review", "business_id": "VlEzJ8gehlSMDtAtj0yNHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "00WpjbkLkxLhjd3oHUU7ag", "review_id": "ZZT9NNxZziCjSJTVuWo_7Q", "stars": 5, "date": "2012-07-19", "text": "If you want a deal for your buck, this is the place to go! You'll find Dewalt, Makita, Oster, Cuisinart, Farberware, Keurig, and many other banded items for a fraction of the original retail price. Yes, some items will be out the package, missing a manual, or may have a scratch or a dent but I rather pay a fraction of the price versus paying full retail at a department store. I rather save money and get a ridiculous deal for the same exact item I would have paid 10X more at a well organized and clean shop. From what I know this store has been open for nearly ten years; the owners are one of the nicest people I've met; they even offer free delivery with the furniture or any other large item you purchase. Stop by!! You'll get a kick from just walking down the unorganized, messy aisles; but once you get to the register to pay- you'll be happy!! \"Get more for less!\"", "type": "review", "business_id": "EExUrv6rX1ajgayj8oP7yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CMxTMgwFQVlB2ukMP7emVg", "review_id": "_HsSToROH9h-p6ytI1Y1yw", "stars": 4, "date": "2011-12-26", "text": "I visit this Subway several times a week. Staff are very friendly. Good customer service. Ingredients seem pretty consistently fresh. It's a standard Subway but differentiated by friendly staff and good service.", "type": "review", "business_id": "TepT2VeFe3tMYdAiqj12vg"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "UxqUq_Gq9XfPXbdzUcVhng", "review_id": "t-CBoiOR2ENjAZ_ED_xRCw", "stars": 3, "date": "2010-11-01", "text": "Old Town Scottsdale has a personality disorder. It tries to be one thing during the day and another at night. Merchants are gouged for hellish fees in order to provide the \"free\" parking so prices reflect this big gouge as some have to make up six figures per year (no joke). During the day Old Town caters to the typical tourists with skin that hasn't seen the sun since Eisenhower was president. The little shops sell a combination of crap and genuine goods. Restaurants cater to the over 60 crowd for lunch and the idea is to keep people milling around until they have spent all of their money. The perimeter of Old Town is alive with baseball, a hospital, banks and other real world establishments. At night the \"clubs\" open and each one thinks it's the Viper Room or the Abbey. Sorry, this isn't LA. High cover charges for lame, watered drinks and dead ambiance won't cut it. They make up for being dull with loud music. The rooftop bar concept seems to be dying off after locals who can't sleep through the racket take a few shots at the places from time to time. I can't blame them. A mile away the noise from these places is still thumping loud. It must be horrific to be at one of those rooftop bars. \n\nBut to be fair, Arizona is not known for night life. It's a place where the sidewalks are rolled up at dusk and they try to cash in on big events like the occasional Super Bowl. They also try to create a night scene Studio 54 style with a new \"hot\"place popping up and when it is no longer trendy, they change the name and it becomes something else. Restaurants in Old Town also change names in the summer in hope of fleecing the same crowd the next tourist season. Many are now corporate-owned and the local restaurants have had no choice but to follow the downward spiral. \n\nOn the up-side, look for the local bars and by that I don't mean clubs. The bars such as the Blue Moose are locally owned and serve up good food at decent prices, good drinks and offer friendly service. Stay away from the $30 per entree places and just go cheap and have a good time. \n\nIf you are the sort who likes to drop $15 on a well drink with a bunch of plastic people who are keeping up appearances with the last of their Visa credit line, AZ88 is the place to go. :)", "type": "review", "business_id": "4gIV5MYpCDbNI-bL3g_tSw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "HWlBlyh3DNl1QY_fDu2ncw", "stars": 3, "date": "2011-05-18", "text": "If it would be closer to my area, I could give it one more star. \n\nTheir special of $4 burgers is a good way to call your attention. The best was the service, the lady that took care of us was really friendly and nice. Another time I'll have to try their food.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rn-S3h35NiiAvKvEMDbtZg", "review_id": "Nj6Q9Vnd5BJoEjpcUaemZw", "stars": 4, "date": "2012-07-22", "text": "Fun place to get masks for all my robberies.\n\nI joke. but really you can get good masks at Easley's.", "type": "review", "business_id": "StiQ_lcCY8sX4JI-J6Mufg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TUdFSn-HscK6nZVaJlNpAw", "review_id": "xXeYBNiGan6RHWeoov7sYg", "stars": 4, "date": "2011-08-13", "text": "The best part about this place is the cozy atmosphere. We took our dog with us for dinner, and we were able to sit on the patio. So if you have a four legged family member, this is a nice chill place, with very good service. \n\nI had the Crab Cake BLT, and although it sounds unappealing, it was surprisingly good. My better half had the Windsor Burger, but commented that the burgers at Deluxe are much tastier. \n\nThe signature drinks are decent, but definitely on the sweet side. There appeared to be a good wine and beer list, which I will most likely opt for next time. \n\nBottom Line: I would go back without hesitation.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "5bs9-7Fwjuv4HiQNFVZTEw", "review_id": "xu7ZZRs27-Ke7zMb49ZrwQ", "stars": 5, "date": "2012-10-15", "text": "Hip hop sandwich shop. Not a traditional dining experience. Food was great, and prices were very great. Everything on menu was under $10. Mac and Cheese is worth ordering as an appetizer, and the BLT was rediculously delicious. \n\nI look forward to going back again, and probably again.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d0wJVf7Gv7v1B-HHYhxZtQ", "review_id": "PFFRwsdO5nfEtVkby1G9aw", "stars": 3, "date": "2010-07-10", "text": "Not terrible. I got the drunken noodles and pad thai. Not the best, but not the worst. Maybe I'll try them again and update my review...", "type": "review", "business_id": "NBvrN_ZDpmBCsPI1qLj1Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o8J-ergbGYjrUy85I_rxzw", "review_id": "VQgVLtd5xPydhMeJBhTKfw", "stars": 4, "date": "2012-10-19", "text": "Friendly, fast service. Got an excellent 20 oz. caramel cappuccino for $4.50. Just wish it were easier to get to when you want to just run in.", "type": "review", "business_id": "_AwvPzaNPGQ_QZSWgsfOiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VkuUr9DO7eefmsFQ_fEJTA", "review_id": "3vLZq2teUIqXnpnWWRNnNA", "stars": 3, "date": "2010-05-01", "text": "My boyfriend and I had heard about the great food and romantic ambiance of Coup des Tartes so we decided to check it out. Overall it was fine but we didn't think it lived up to the hype.\n\nWe knew ahead of time that it was BYOB but decided to forgo bringing alcohol because of the corking fees. No biggie. We enjoyed the lemonade and minted iced tea they served us. We weren't hungry enough for appetizers, so we just ordered salads and entrees. The salads came out quickly and did not disappoint. I ordered the Springtime Salad ($10) and absolutely loved it. Mixed greens with organic apples, red onions, dried cranberries, chevre, and candied walnuts with apple cider vinaigrette. They put just the right amount of dressing on it so it was coated but not drenched. My boyfriend ordered the Parmigiano ($9) and said it was very good as well. It was your basic Caesar salad with homemade dressing. Both salads were surprisingly large and could have satisfied us for dinner if we had ordered appetizers as well. \n\nThen came the entrees. Well, sort of. We sat there until we started to wonder if they were out hunting for our food. Then we thought maybe we should have ordered an appetizer after all to close the gap a little between the salads and the entrees. But really, why should we have to pay for something we weren't hungry for just so they can get their pacing right? \n\nAnyhow, the entrees eventually came. I ordered the Lambshank ($24) and my boyfriend ordered the Pork ($26). The lamb fell right off the bone and I didn't even have to use my knife! It came with a side of Israeli couscous, which I thoroughly enjoyed. My only complaint about this dish would be the sauce. It was a harissa spiced vegetable ragout with dried fruits. For some reason I was expecting something a little thicker. I felt like the lambshank was sitting in a soup. Actually, this sauce DID taste like a vegetable stew my mom used to make when I was little that I didn't like. It was a little bit of a turnoff to me, but not their fault I guess. (How were they to know?) I ate it anyway because the meat was cooked so well. My boyfriend's pork tenderloin was also cooked very well. It sat atop a bed of risotto and also came with asparagus. I tried a bite of it, but my dish was so flavorful that it tasted bland in comparison so I can't give it a fair review. He said it was excellent and finished every last bite on the plate, so I'll take his word for it. \n\nThe service was....ok. It was fine in the beginning but while they were out hunting for our food between the salads and entrees we were completely neglected and left thirsty. After we got our entrees it picked up again and was fine until we left. \n\nThe ambiance? Quaint and pretty, yes. But quaint does not necessarily equal romantic in my book. We were seated in a small table jammed into the corner. The size of the table was fine for two people, but it was way too close to the table next to us which had a party of four seated at it. Every time someone got up from it to go to the restroom, their backs were right in my face. We had a nice view of the patio out the window right next to us. That was until another couple was seated right on the other side of the glass. My boyfriend felt very uncomfortable for half of our meal because he felt like he couldn't look to his right or else he'd be looking straight at the guy sitting inches away from him. I was lucky enough to have been seated right next to the wall so I had the view with a little bit of privacy. The room could have also benefited from some white noise in the background because we could hear everyone's conversations and felt like we couldn't talk at a normal volume without other people hearing. There was some very soft music playing in the background but it could have been turned up a notch or two.\n\nIn a nutshell, I'd give the food four stars but the ambiance and service two and a half stars. I'd go there again to give something else on the menu another try, but I'd request a table on the patio to get out of that cramped little house.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "U8ayzBXrBzgjdrCYOzwNOg", "review_id": "Z-bEiRrqWJnod1AmLU217A", "stars": 5, "date": "2009-02-17", "text": "Had the best BEST time here tonight! My mama and best girlfriends treated to me a fun day for my birthday and I insisted on wrapping up the afternoon with happy hour on me. I've never been but we wanted to go somewhere nice and stopped in. \n\nThe restaurant is beautiful- we sat in a high back comfy booth in the bar which is really nice. The bar has shelves of backlit colorful liquor bottles above it (ala the Ocean Club bar). We has 2 rounds, including the Vitamin C martini, White Chocolate Martini, Flirtini and Black Cherry cocktail- they were all really great! We also got the colossal shrimp appetizer (which technically weren't all that colossal, they were just normal), the sliders (the bacon and maytag bleu cheese was amazing!) and the AZ Eggrolls (a bit on the greasy side but very tasty and perfect for happy hour). The tab was only $65 (it was happy hour and the prices averaged about $6/ drink and app). The service was also extremely good. \n\nIt's been a long time since I felt like raving about a restaurant- it was great!", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fwIXyM_7HFRfkVQMne79AA", "review_id": "7gKmdWNKf-dmR4qfOciz7A", "stars": 4, "date": "2012-01-07", "text": "I've been looking for a decent prime rib in the area for years with no luck. That's all changed now. I found Lafitte's on Yelp, and was surprised - I had no idea it existed. I'm glad I came though. The prime rib was easily the best prime rib I've had in this part of town, and may be the best prime rib I've had in the under $20 price range in years.\n The place seems relatively unknown - it's hidden in the Embassy Suites Hotel. So on a Saturday night it was pretty slow - hardly anyone there. That's really a shame.\n The food was very good. It started with the salad. It seemed fresh - it didn't look or feel like it came from a bag. The greens weren't overly cold or wet, and it was arranged nicely on the plate. The bread was a simple sourdough. \n We ordered the petite cut, and when our waitress brought out the plate, I was a bit shocked. It was much larger than everyone else's large cut. I could barely eat it - that's saying something. I had the creaole jambalaya as a side. It was tasty with some spice. The sausage was tasty. The vegetables were ok - a mix of squash, colored onions, etc.\n The waitress was friendly and courteous, and never let our drinks get empty. The nest part was that two of us ate for less than $35. I'll be back!", "type": "review", "business_id": "jZGPpPUNM2xe4N8qS4Tu3w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CI1RpU3YSeImNLniEUC6sw", "review_id": "bnoXAU2zNCI6_mWjCoTCjA", "stars": 5, "date": "2011-06-20", "text": "Love it here! Always unique and slightly dark art. Definitely a go see if you are in phoenix~", "type": "review", "business_id": "8qhGW34nVmI0OFzQz0uu9A"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "yy3jXczrKljJGzjo24HWfw", "review_id": "nzI8TNVkXZIkuaK6nXWYVg", "stars": 4, "date": "2012-05-09", "text": "Let me first explain that we came to the place on a bad night... Apparently, one of their regulars LITERALLY drank herself to death - spent a week in the hospital before whe finally died. Instead of a funeral, her husband and family set up a memorial at her favorite bar... The place was filled with long hugs and sobbing... all while the gal's husband was hammered and wobbled leaning on the end of the bar. Sad, sad, sad, sad...... on SO many levels.........\n\nThat said, we just tried to stay away from it all... and our server (Bobbi - hope I spelled it right) was really great in keeping happy, warm, and chatty.\n\nIgnoring the other patrons that night, then, this place is definitely a great little legit Irish pub (apparently the oldest in the Valley for you history nerds)!\n\nFirstly, they have all sorts of Irish food items (cottage pie, corned beef and cabbage, bangers and mash, beef stew, seafood, and they even have a boxty). We tried a couple different things that were all tasty!\n\nNext, almost all of their beer taps are dedicates to Irish or UK beers (Guinness, Smithwick's, Harp, Kilkenny, Magner's, Newcastle, etc...)... and they know how to pour a stout!\n\nThey didn't have live music that night (apparently, they normally have live Irish bands 6 nights a week)... but they played a great array of REAL Irish music the whole time!\n\nI read a couple reviews that claimed it's not an authentic Irish pub...... but I'm guessing these folks haven't spent a whole lot of time in Ireland? Understand that ANY bar, in America, has to have cheeseburgers and chicken fingers - because you're not IN Ireland... That said...... if a bar plays Irish music... has 7 of 10 taps dedicated to Irish and UK beers (with the other 3 Irish or UK STYLE like Killians, Kiltlifter, and Sam Adams)... has all SORTS of Irish food on the menu... real Irish signage (not shamrocks)... proper stout pours in two-parts... plays Irish sports on TV... supports the local Irish clubs..... what makes it NOT a legit Irish Pub?\n\nThis place is about as legit Irish as you'll find in Arizona... and worth a visit!", "type": "review", "business_id": "noLH_u4MJzfXYYHqcByjnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqDh0QDMoMAaBvJcakze5A", "review_id": "XKpBBOznAEjs11sHRWKIwg", "stars": 4, "date": "2012-01-23", "text": "Love this place. Every time I come here its like a high school reunion. There's wonderful people and a perfect atmosphere for drinking.", "type": "review", "business_id": "FpDSA0hl2TTWt_DEpYKBgg"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "XjKvFI9N7fo7i3fOOpkDVw", "stars": 5, "date": "2011-12-23", "text": "I never knew this movie theater existed. I mean I don't frequent paradise valley mall that often, and when I go, I have tunnel vision as I go straight to the stores I need to go to and get the heck out of there. So when Travelzoo had their movie special ( two tickets, 1 large popcorn and two large drinks for $15), I couldn't pass it up. The theater is small but very quaint. The seats are EXTREMELY comfortable and they kinda recline. How cool is that. Plus the best part? the staff are super duper friendly. A huge win in my book. I will definitely be going back to this cute little hidden gem of a theater.", "type": "review", "business_id": "kpzzEpXcHo9yzhUcz14chg"} +{"votes": {"funny": 2, "useful": 15, "cool": 11}, "user_id": "X_kPh3nt0AJPNPHye2rTlA", "review_id": "YPnhXTGo9_6SC8YWzPM0SQ", "stars": 5, "date": "2012-06-10", "text": "UMMMMMMMM...can I just say that this place needs to get more action! The pizzas here are FANTASTIC!! I discovered this place because it opened above SACKS. It is around the corner from my house and I am so thankful it is. The whole restaurant is open...I wish it had a little more space, but that is ok. First, the Tuscan Pie is to die for!! It has prosciutto, Gorgonzola, apple, arugula, a fig marmalade and balsalmic vingerette reduction sauce drizzled on top...at least I think that is what it is...I need to check the menu...but anyways its FABULOUS!!! I wish I could eat it everyday! I tried their Moroccan Pizza before they took it off the menu and it was awesome too! Every single salad is great and the wine and beer selection is great too! The staff is so nice and friendly. I get this to go all the time and bring it home...and I have shared this with my friends too. I love good Italian pizza and its great!", "type": "review", "business_id": "Cse5FvYuACIxljwaac2SZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "IE_nJq65Qpso5fN4tG9zjQ", "review_id": "blYDrFkb8plh3vk2mpY30w", "stars": 3, "date": "2008-03-05", "text": "Their salad bar here is lacking. I used to go to Whole Foods when I was too lazy to make anything to eat, but didn't want to be riddled with guilt about eating out. \n\nThe people who work here are friendly and they have a huge selection of canned veggies for salads, as well as other specialty items that may be harder to find out here.\n\nThey also carry the largest selection of Amy's Organic frozen foods that I adore. mmmmm tofu pockets...", "type": "review", "business_id": "MWoM_zf75KD0VcOm8Yb58A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7aVtVu6ANtsCEfXfYoSkTg", "review_id": "Uq16Vj6aGynP2pDE_q6Aag", "stars": 4, "date": "2011-02-19", "text": "There is nothing I enjoy more than a great Sunday brunch and St Francis did not let me down. The food and atmosphere were the perfect way to start off a relaxing day. We had to wait about 25 minutes before getting seated but it was no problem because our server brought us drinks while we sat and enjoyed the live jazz music. \nMy friend and I started off by sharing a GIANT cinnamon roll topped with caramel sauce. SO GOOD. We destroyed the pastry in minutes, which left both of us wondering how we were going to eat our meals. Fortunately, we are both gluttons and were able to pull ourselves together for round 2. I had the Eggs Benedict and roasted potatoes and my friend ordered the Wood-Oven Baked Eggs. Both were delicious. \nThe only thing I didn't like was that the tables were very close together. At times it felt like we were dining with our neighbors. Overall I would highly recommend St Francis' brunch and I am eager to return again.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tsjb0CJI4mes4C4CcSdxDw", "review_id": "4vzPJZfp3pJVekRFtM4NpA", "stars": 5, "date": "2012-08-17", "text": "I love this place they do the best job, I even drive 45 min because I moved and they are worth it! I'm always happy with the results. My nails don't lift or chip. I have also had a facial their and it was amazing. It was my first facial however I was happy and it wasn't expensive. I would recommend this place to anyone. Just bring cash for your tip, they do take cards but not for tips.", "type": "review", "business_id": "tpN254LPQTzGODnqI6RpSA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yJOzy6XfsmNRY42Oxex_9w", "review_id": "PpMdygt2_B4qsyRnkhLoXg", "stars": 4, "date": "2010-08-03", "text": "This place is great. It is very clean and the staff is very nice and accommodating. Every time I walk out I am completely satisfied with the work.", "type": "review", "business_id": "36DXgXqX09R-ICwhVY55Ig"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qQxDnjMexrsfltQV7I1mJw", "review_id": "vJ01SDG0_Q-BRqB5EFkj2w", "stars": 4, "date": "2009-05-20", "text": "Have only been here once before under too stressful of circumstances to remember, this trip to Olive and Ivy was fantastic. \n\nUsually going to lunch in Scottsdale is hit or miss with expectations, however today we had a lunch meeting scheduled for 11:30, I got a front row parking spot in front of the valet and had no problem being seated right away.\n\nSticking to my lunch salad trend, I ordered the Curry Salad with Chicken and couldn't have asked for a more perfect dish on such a warm day. The portions were great, the lettuce cool and crisp and even the \"handmade\" bread and pesto before complimented everything perfectly. \n\nThe only gripe I would have, understanding it is a Fox Restaurant, was how almost unnatural the wait staff was with how rehearsed and methodical all interactions were. Even down to the correct usage of \"I am well\" versus \"I am good\" seemed a bit out of place, but not a big deal.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "El-nrOv6QtsmsOnkXQDknQ", "review_id": "i8MLqL-5HGb6Ce-UMYRIng", "stars": 4, "date": "2010-11-19", "text": "I had dinner at Frank & Albert's while attending a conference at the hotel. Normal I try not to eat at hotel restaurants due to overcharging and quality of the food. I decided to try Frank & Albert's based on the reviews from Tripadvisor. Tripadvisor rates this restaurant as number two in Phoenix. We where seated on the patio next to the open fire pits. How romantic except I was with my work colleagues. Frank & Albert's is perfect for a date or anniversary. The location is nested in the luxury hotel setting directly below some kind of canyon. I ordered the Fillet Mignon. Yummy!! Everything on the menu looked so good. Frank & Albert's also had a great wine list. My work colleagues were very happy with my dinner choice. I used opentable to make the table reservation. I would definitely come back Frank & Albert's if I was in the area.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6X4f6bB9XQ1H0qtz1eUaFg", "review_id": "pK336aYSodY-wsAtGjbecA", "stars": 1, "date": "2011-03-08", "text": "My sister recently took her '98 VW New Beetle to First Class Auto in Scottsdale, AZ for an overheating issue. I'm normally the one who does the maintenance on the vehicle but I was ~600 miles away. She described the symptoms as follows: overheating light came on while she was stuck in construction traffic and went back off once she was moving again. I immediately suggested that the radiator fans may not be coming on for some reason. Since I wasn't around to look at it, she took it to First Class Auto.\n\nShe relayed the symptoms to the guys at First Class and also SPECIFICALLY requested they check radiator fan functionality.\n\nThey told her the water pump was cracked and leaking, needed a new thermostat and also replace the timing belt and serpentine belt while they were in there (water pump is driven by the timing belt on this engine--2.0L 8V 4 cyl AEG code). Well, a) I personally replaced the timing belt, water pump and serpentine belt about 10,000 miles ago as preventative maintenance. What's more is the car hasn't lost any coolant since the job. So the water pump being cracked is highly unlikely! I did not replace the thermostat, though. Once she called me to tell me this, I told her to decline the work and either take it somewhere else or wait for me to make a trip out.\n\nI had a job to do that brought me almost half way to the Phoenix area so I decided I would make the trip the rest of the way to have a look for myself yesterday. FIRST thing I did was check the radiator fans. I turned on the AC and the fans didn't come on at all. I pop the cover off the strip fuse panel that resides on top of the battery and found a melted 30 AMP fuse. Guess what that fuse is for? The RADIATOR FANS! Imagine that. Being a car that lived most of its life in Michigan, some of the fuses and the fuse panel itself had become corroded and caused the one fuse and part of the fuse panel to melt. The coolant level was exactly at the max level, right where it was after I did the maintenance on it 10,000 miles ago, not to mention I checked it before her recent trip to Scottsdale (didn't have to add anything. The car doesn't leak a drop of coolant).\n\nLocal dealer had a new fuse panel in stock, I swapped it out and replaced all 3 of the 30 amp blade fuses as they were all corroded pretty badly. The larger strip fuses were still decent. The radiator fans now work as normal and the car does not overheat. The hose coming off the thermostat also becomes pressurized and hot at the correct temperature as well, so that's definitely not a problem! Fans also come on automatically once the coolant temp hits 99 deg Celsius like they're supposed to. Problem solved!\n\nI drove down to First Class Auto today to give them a chance to explain/defend themselves, but there was only one guy working in the shop who she didn't recognize and no one at the counter. What great customer service!\n\nSo she COULD have spent the quoted $800 and STILL had the same problem! She just got dinged for a ~$40 diagnostic fee... for an incorrect diagnosis.", "type": "review", "business_id": "sDXXYFW9vhprUXa4b1jvWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Wgvq9BZwHLGY4jBqvJa8_g", "review_id": "_TeVfJv7f-WwoWk8h9B50g", "stars": 5, "date": "2011-03-09", "text": "I absolutely love this sub shop! Its the only place i will get a sub sandwich! I have been going here for over 10 years and i NEVER get tired of it! Mitch is an awesome owner and he really cares about the customer! MUST GO!", "type": "review", "business_id": "uJCH3sqVcqjOfLv3BB9E_w"} +{"votes": {"funny": 2, "useful": 4, "cool": 6}, "user_id": "0lxf4v5NuJ1U6Bk7SGAJ5w", "review_id": "kEme9wzC6witdR4GlpdYig", "stars": 5, "date": "2009-04-01", "text": "I'm one of those people that loves frozen yogurt. Anything that taste this great and is this guilt-free will get me every time. The Golden Spoon has a variety of flavors of fro-yo, and each delicious flavor is only 88 calories per 4 ounces. This is good news, my friends.\n\nOn top of that, the price is very reasonable. I got the mini (which is 4 ounces) and it rang up to $2.14. When I compare it to Desert Swirl (your other choice of fro-yo on the Westside), this is extraordinarily more affordable.\n\nThe service was not overly friendly, but just fine. The ice cream chick was happy to give us some samples.\n\nI highly recommend the Heath flavored fro-yo. Delicious.", "type": "review", "business_id": "86rvPGDd0Vq2O1UNOtF9dg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UnXyQqt0A5otAf10jMEz-g", "review_id": "ltkMlb3aA-dqsdb1_Mdp1w", "stars": 1, "date": "2012-10-20", "text": "After moving back to the area from Cali I needed somewhere to get my acrylics done. I usually like to get some kind of design or unique tips. After walking in I saw some tips I liked so I decided to try out this place. The first visit was bad the nail tech would not listen to the length of nails I was requesting and did a terrible job at shaping them. I always give people more than one chance so I went back and this time I got a pedicure first then the nail tech left the salon and I sat near the dryer for 45 min before approaching the manager about the length of time I had been waiting for a fill. He replied unapologetically that the tech had to leave to pick up her son from school... I sat another 15 min before I was seen by someone else. They also did a poor job. I will not spend my money somewhere that they do not value their customers. Not to mention they did a crap job and were overpriced when it came to designs and tips with prints on them. Don't waste your time here.", "type": "review", "business_id": "f_EJyhmr9KpPssLsfw_IXQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "XIo96RzHrKKtBQIMhZep5Q", "review_id": "D7frO7lxPHNXOrzSjqSRvw", "stars": 5, "date": "2011-09-03", "text": "We saw a small door with a sign over it and were intrigued, so we went inside - that's how we found Kazimierz. Once our eyes adjusted (it's dark inside, like any good speakeasy), I loved the decor. It's a wine bar with food that seems to be Egyptian flatbreads and then whatever the chef wants to make. We were there on a Saturday, right in the middle of happy hour, and enjoyed a ridiculous evening of items that were mostly $8. Wine flights, flatbreads, certain bottles of wine = $8. BOTTLES OF WINE. I'm sure they were just cleaning out old inventory, since they have hundreds of listings, but for these two wines, until they ran out of bottles, the bottles were $8. \n\nWe had the Northern Territory flatbread (pancetta, yukon gold potatoes, rosemary, cr\u00e8me fra\u00eeche and smoked gouda). Yum. We also had an open faced sandwich made with smoked pork belly, apple butter and melted cheese with sweet potato chips on the side. IT WAS $7. Between the $8 bottle of wine and that, I felt like I was stealing from these people. \n\nThe bartenders were great, as so was the music. I will, without question, be going back.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "kE2Dw1sKMeaDOpyZNVQKJQ", "review_id": "tRLcidz14qyKMXwkeZhkvg", "stars": 5, "date": "2012-10-20", "text": "This place is a lil bit of awesomeness! The food was great, the service was awesome, and the atmosphere was very nice! What's not to like about a great steakhouse that serves great food and provides awesome service.", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "EGuENavQY3Lz5XMR2kaZSg", "stars": 3, "date": "2012-05-24", "text": "This really is more of a lady's hardware store with more design/decorating stuff, small appliances, and such. But this time they had something HD didn't, and at a good price. Almost exactly what I was looking for, too.\n\nEven if you're a die-hard HD shopper, it doesn't hurt to check here too.", "type": "review", "business_id": "yFaf4-3_zEac5AUC84Vlcg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fqVacCA-n-XTP03pxncoYA", "review_id": "rv6w_yBtywS71DHmJ4qdXg", "stars": 5, "date": "2011-12-31", "text": "They do a great job! My old dry cleaner was always destroying buttons on my shirts. Never happens at Titan. Friendly staff, too. Also, good place to have alterations & shoe repairs next door...in the back of a barber shop.", "type": "review", "business_id": "RqpoHP1Ei8Wn_jX478kybg"} +{"votes": {"funny": 0, "useful": 5, "cool": 3}, "user_id": "EoTooNBcxu0Hy0-XeZI8aw", "review_id": "DNuvcgrzn950xjwb6-za3A", "stars": 4, "date": "2010-01-01", "text": "You know how you poke fun at people who go to a steakhouse and they order something like chicken or seafood? I'm one of those people, but this time I teamed my seafood with STEAK!\n\nThey had a prix fixe menu that carried over from their New Year's Eve dinner, but I skipped over that...\n\nI have to say, I loved my sirloin and 5 pieces of shrimp. Shrimp was done correctly - not rubbery or charred and *gasp* it was actually de-veined. I can't tell you how I've gone to nicer restaurants and their shrimp wasn't de-veined. So that alone got a little happy dance from me.\n\nFood was a bit on the salty side, but it didn't make me have a massive thirst craving when we left the restaurant. Server was friendly and knowledgeable, which was great!\n\nHubby ordered his prime rib, but they didn't have it blue which was the way he wanted it. It's all good, they still brought him out some of the rarest prime rib I've seen in a long time...\n\nFor an appetizer we ordered bacon wrapped scallops. I am a firm believer of 'bacon makes everything good!' and it did. The sauce that came with the dish was delicate and flavorful. The fresh rolls that came minutes before the entree was served were my favorite kind - light and fluffy on the inside while the outer layer had enough crunch that satisfied me, yet didn't make me feel like I was about to chip any teeth. ;)\n\nI can't wait to go back and try some of their other dishes!", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9sGrslfna8k-cyTR5NLYww", "review_id": "yaw_kOt0-cOU8t7Dip0yrQ", "stars": 4, "date": "2010-07-19", "text": "I knew this restaurant was, as my friend would say, \"legit,\" because a) the cooks in the back were speaking Italian and b) our server was in an Italia jersey. While I automatically assumed they were speaking Spanish, once I realized I didn't understand what they were saying, my anticipation level spiked. My husband and I both ordered the Cioppino which was the special of the night and it was fantastic. It was chock-full of seafood, mussels, clams, squid, baby octopus--amazing! The best part, someone, maybe the owner? came over to our table and offered my husband an extra serving, talk about service! The second best part, the homemade cheesecake for dessert. This restaurant is such a gem. The next time I go, I'll make sure I don''t forget a bottle of vino (no corking fee).", "type": "review", "business_id": "AX8lx9wHNYT45lyd7pxaYw"} +{"votes": {"funny": 1, "useful": 5, "cool": 3}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "S-j8b_Sr30uBAnIU0Oqx3w", "stars": 3, "date": "2012-08-02", "text": "leave it to corporate america to capitalize on a great idea (ipic) and roll it out, steamrolling everyone in the way...\n\n--book your seat in advance using the website (fandango's mobile site integration not working at the time of this review)\nI LOVE LOVE LOVE knowing that my seat is MINE, and if it isn't available, i'll just have to look for another showing\n--choose from either the exclusive cinema suites (think first class airline seat, and then some), or the more standard and rowdy \"fork and screen\"\n--efficient and hardworking servers and food runners.\n--the concept is excellent, but with declining food quality, it could die off quickly. why would i pay $8 for a (cracked) plastic bowl of popcorn? goddamit!\n\n#chicken wings gone south. they're the fatty and mushy \"pump-me-full-of-antibiotics-while-i-stand-in-my-own-shit-while-the-steroids-grow-me-bigger-than-my-body-was-ever-going-to-grow-in-90-days-fee-lot-meat\" SHIT \"chicken\"\n#that means they're cutting other corners too... yikes.\n#food often arrives \"dead\" cold. SEND IT BACK.\n#be careful to be specific when ordering; many items are similar and your server will assume.\n#effect of dining while you watch has literally put all the nearby restaurants out of business. the esplanade is a ghost town\nnote to lessees: always put a clause in your contract that competitors in the same property must be approed by you!\n\nHINT: push the service button between your seats as soon as you arrive, even if the server stops by to say he'll be right with you. the button starts a timer which sends an \"all call\" if someone doesn't reach you quickly.", "type": "review", "business_id": "EmlgWjs1ZzZEpDjZCSPLmw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0QxbEvjT5D3dWikIsUu6Rw", "review_id": "BXdmQqPyaa60MGKk9AaGpg", "stars": 3, "date": "2011-02-01", "text": "As I write this, I'm waiting for the toilet in the room above me to stop refilling, and the man to the upper left of me to stop his muffled, out of key singing.\n\nThat puts me in a weird head space, review wise. While this hotel is only three years old, it sounds like it may as well have been built in the 70's. I hear all the conversations of the folks in the hallway, I hear people walking down the hallway above mine, and for the past two days, the heavy footsteps of the person above me woke me up well before my alarm. \n\nNormally I'm pretty lenient about things like that but, c'mon. This is a roadside haven meant for business travelers (and tourists too stupid to see that this hotel is near NOTHING you're trying to visit Arizona for) to get some damned shut eye. It's a little tough under the current conditions.\n\nAside from, you know, sleeping. The rest of this Courtyard is pretty nice. The interior and amenities vastly make up for the absolute desolation outside. It's located off 91st, just north of the 10 freeway. There's a little patch of desert and an ITT Technical Institute across the parking lot that seems too small to handle the amount of folks who need to park.\n\nAnyway, back to the inside. This is a newer Courtyard. Marriott is drastically trying to get its old chains into a modernization fit to compete with Hilton and Hyatt's business lines. This renovation, (or new construction in this case) includes adding a \"restaurant\" for breakfast and dinner. And a bar across the way open from 5pm-10pm. Thank God for these two additions because the pickin's around the hotel are slim as a Calvin Klein model. I think there's a Chipotle around the corner. I didn't see you jump for joy. What, not impressed?\n\nThe rooms are the modern Courtyard style with LG flat screens, fancy shampoos, interesting art on the walls, wired and wireless internet...etc. This location has low tile showers with glass doors. Fancy. I'm used to the sliding curtain that ends up soaking the floor because it's all cloth anyway.\n\nIf they could get the sound issues fixed (lucky me, I'm on the side of the hotel NOT facing the freeway) I'd easily give another star. Proximity to anything worthwhile is pretty bad, but the point of this hotel appears to be for housing workers in the local warehouses nearby. There's plenty of regulars here week after week after week as the bartender told me a few nights ago.\n\nOne definite draw is that their weight room is pretty top notch and, of course, dead. You can easily be the only one in there night after night while folks who really need to use a gym will walk by you with minds set on beers, staring into the window as if to ask why anyone would try to work off the food they eat. Hmmm... I wonder. \n\nThe interior of this Courtyard vastly makes up for the desolation", "type": "review", "business_id": "fdZbEDgD0_wy4mTx6pjzZg"} +{"votes": {"funny": 3, "useful": 4, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "rOSBDZXTDDthpjOx8Suv_Q", "stars": 4, "date": "2009-01-29", "text": "One of the best local places to get your booze!\n\nBevMo has nothing on the charm, history, and liquor selection of a place like this! I am not into most beers or wines (of which they have plenty), rather I like to sample the odd/exotic Vodkas, Rums, and Tequillas.\n\nSportmans is a good value, but certainly not discount -it is so worth the better exprience tho- This is a store to browse, ask questions and take your time exploring.\n\nGive Sportsmans a shot - and you'll say \"No Mo BevMo!\"", "type": "review", "business_id": "uL_kqSm8ZqJ_3U88uwA8tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdlCmZIgdcS9njEDvXrBSA", "review_id": "mpQHmart5rR5h44rrO3Yuw", "stars": 4, "date": "2012-02-08", "text": "Great date place! I was worried that I wouldn't like what they picked for me because I don't like vegetables but the chef worked right around that. The cheese plate was very good but the bread that it came with was fantastic!! The short ribs were great. I loved all of my wine pairings as well.", "type": "review", "business_id": "_AvHni-xdRHmZ3XfYHwGkg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "PPKqCT-Nc3UxMWqL34x51Q", "stars": 3, "date": "2011-08-11", "text": "Yes I am writing a review about Red Lobster, don't judge me!! You all know you love those little cheddar biscuits more then life itself! \n\nSeriously, Those biscuits, good lord! \n\nHubs and I went here last night, his picking. He loves him some Ultimate Feast. I usually stick to the coconut shrimp. \n\nOur waitress was awesome, the place was packed to the gills but we never really had to wait for refills. She did forget to put in for the beer hubs ordered, but he lived (YAY)! \n\nThe food comes out hot and fast. \n\nWe also got an appetizer, did the \"pick two\" the mozzarella sticks were surprisingly good and the calamari wasn't just fried calamari but it came with fried broccoli and red peppers as well, super tasty!", "type": "review", "business_id": "iins67bZVJeDrjiOTZh8DQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gUr8qs00wFAk851yHMlgRQ", "review_id": "sPR0rSbruAfSpHJG0hM_Ow", "stars": 4, "date": "2011-12-18", "text": "I've come here too many times to count during my time at ASU. Each time I've frequented this place, I've pretty much inhaled whatever sandwich I got. I like the fact that you can customize your sandwich to order and I really like the fact that you get a little chocolate chip cookie for free with your order! (Their jumbo cookies are pretty darn good too!) Avoid this place during the lunch rush, as the queue can literally snake outside and around the building. Prices may seem on the high side for \"just\" a sandwich, but the ingredients are fresh and the people behind the counter are generally cool. \n\nNow....to work on using non-styrofoam cups....let's make this place even better and greener!", "type": "review", "business_id": "Y-NqaDy_1bb-Y5dQ33x-Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6TnX7mzI-jfgK6teWqIS9Q", "review_id": "bs7Oh8j8XPC8p4ypEzLZvw", "stars": 5, "date": "2012-11-16", "text": "We have had nothing but good luck at this franchise so far. We've been here probably a dozen times. It's always clean and the food is fresh and the way it ought to be. Yum!", "type": "review", "business_id": "zjBoVPJi27Ntm5neRuHGvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fwIXyM_7HFRfkVQMne79AA", "review_id": "ZAONPdkGRUOACDJ7DGE7Xw", "stars": 4, "date": "2012-08-18", "text": "Ihappened by during their soft open, and I was very impressed with the food. They have a great selection of meats and they are cooked perfectly. They even give you choices of regular or moist briskit (a little fattier to give it more flavor). They have a good house barbeque sauce.\n The facility is pretty simple - very \"bar\" atmsphere and TVs along the walls. The staff is great, and eager to make sure you enjoy the food. I'll be coming back.", "type": "review", "business_id": "G1LaLNJObuAwZGAcJ7OY0Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "F7zktmTInsmjF6NSi4tDUQ", "review_id": "CLeNZJO36QHBWeNgvEwWEA", "stars": 5, "date": "2010-01-24", "text": "Was at Zinc again last night and have to say the place keeps getting better still. Started with the crepes again, perfect again. Then shared the scallops and lamb shank for dinner. I'm not usually a huge fan of lamb OR scallops but they were recommended and I was feeling adventurous. The lamb - AMAZING. Melt in your mouth wonderful. More like a stew than anything with classic fall off the bone tender meat over creamy cheesy polenta. Their bread is perfect French bread too. This time of year (winter) there is a festive, buzzy energy with a good crowd but not TOO long of a wait. Make reservations though for sure. Oh, and Bobby's across the way in Kierland is a nice spot for a pre-dinner drink (400s Hollywood glamour meets The Jetsons with cool live jazz your parents or grandparents would have enjoyed back in the day).", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0zsGYi4ITkMEUdE8Zl5b6g", "review_id": "XfBtaJc1bYMtfWSSq8p8Rg", "stars": 4, "date": "2011-07-22", "text": "Picazzo's pizza is excellente! \n\nMy wife and I were told about this little pizza place by a friend who swore by it, so we decided to try it out. We are sooooo glad that we did because the food quality & taste was amazing. My wife loves it so much that when I asked her where she wanted to go for her birthday...Dr. Weil's restaurant in Scottsdale or Picazzo's....guess which one she chose? Picazzo's FTW!\n\nThe prices are a little on the high side, but I am a firm believer in the saying, \"you get what you pay for\" & this pizza place was worth every penny.", "type": "review", "business_id": "3jqOv6re-xPYOg7srmi7tg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LHQ2fuC2RDS-Md_dN2O1IQ", "review_id": "wbDauO1SM6P4fBVEQBZTfQ", "stars": 5, "date": "2010-11-06", "text": "Baiz Market is a \"Mediterranean\" type restaurant, or \"Arabic\" type food. Well, you could get confused and call it that. The fact of the matter is though, that this place has a very unique touch. This restaurant is a staple not only for groceries, but also its food. The owner is persian, so you can tell where the tastes are coming from. Its somewhat hidden in the heart of Phoenix, but that's ok, once you are there you will be glad you found it.\n\nThis place is unique because they make their own bread! Are you kidding me? I only recently found out about this place like 3 years ago, and I've been living in Phoenix for 20 years. The chicken and beef shawarma have a special, authentic taste because of the fresh bread. One of the best parts about the shawarma is not only its amazing taste, but the pricing is very fair as well. I don't think I can stress this enough, but the fresh bread just sets this place apart from all the impostors in the Phoenix metro area. Why haven't the other restaurants caught on? I know of maybe one persian restaurant that makes their own bread, but their pricing makes them a different story (I'm talking about 'The Persian Room' in Scottsdale).\n\nI just don't understand how other restaurants can serve the bread that comes in plastic bags from a manufacturer hundreds of miles away. 'Good bread' and 'Arabic bread' are all good forms of pita that have great shelf life due to the ridiculous amounts of preservatives, but they just don't taste fresh.\n\nIf you like the bread, head to the back of the store and there is a shelf of freshly baked pita bread, its baked throughout the day, I think. I can tell because sometimes my bread is still warm and the bag has a little condensation. Beware though, the bread gets hard and crunchy after a few days, so you really need to use it quickly. This isn't bad, its just I think they choose not to add preservatives to ensure the freshness of the pita.\n\nI usually just get the chicken or beef shawarma, but I decided I'd get a kabob plate one day because I also wanted hummus. The beef kabob plate came with hummus, bread, 2 skewers of beef kabob, and some pickles and onions. Wow. The beef kabobs were cooked perfectly, and were EXTREMELY tender. It was a tad bit on the lemony side, but I suppose that was necessary to make it so tender. Perhaps some of the best 'persian kabobs' I have ever had. The hummus was definitely good as well, I can't stand restaurants that crack open a can of premade hummus. This restaurant certainly did not disappoint with the hummus.\n\nI know friends in Tucson that make stops specifically at this place for shawarma, and rightly so. If you're weary of persian food, just check this place out. Its not expensive at all, food for two is like $15. The wide variety of ethnic foods is also interesting.", "type": "review", "business_id": "cOUS79i4vltKIc_hy4OZBg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ZvRWZgNQ9nkdqj-WuJTLJg", "review_id": "K09mGZvkvtNqukuf78ePdQ", "stars": 2, "date": "2012-06-20", "text": "First off made a reservation and arrived to be seated next to the extremely hot rotisserie. Very uncomfortable, not to mention it was 112 degrees outside that day. I asked to be seated elsewhere but the hostesses' excuse was that this was all that was available due to reservations. Well I made reservation but she just made another excuse that we needed to be a larger party to sit elsewhere. I gave it two stars only because my family likes their BBQ-I don't.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4ExRrMixBqPxFkF410CH9w", "review_id": "BPmxefhrFWgOeyhShsBJuQ", "stars": 2, "date": "2012-09-16", "text": "This is my second time trying this place. My first time was a week after they opened and the pulled pork was very fatty and greasy and the fries were awful. I figured now that they had sometime to work out the kinks I would try it again. \n\nI ordered the deviled eggs to start these were pretty good, I would order them again.\n\nI then ordered The Southwest sandwich. The bun was rock hard and just crumbled so I just took it off. The sandwich was supposed to come with a spicy chipotle ranch that I never got. \n\nI ordered a side of mac and cheese and it was cold in spots. When my server finally came to check on and acknowledge me after dropping off my food, I asked her if the kitchen could just heat it up a little. This took over ten minutes.\n\nWithout my asking they comped my $4 the price of the macaroni. \n\nAll in all the service was pretty lousy, especially when the server only has three other tables and there is more than enough staff on. The food was not worth the price. I don't think I will be going back.\nI will however continue to go to Copper Star which I love.", "type": "review", "business_id": "R3sbDS0YcJDedSmUjwE48Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V_7Ri8F_RdbDjF2FP_fnFQ", "review_id": "SL-ec684eHuFduLnTmkiOA", "stars": 5, "date": "2011-02-14", "text": "The single best ribs I've ever had at any restaurant. This place is brand new and off to a great start. The mac and cheese was delicious, the bone marrow was great (as usual) and the staff and chef were friendly and helpful. I'll be back here!", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8T0evnkvRaTomru7ghPGeg", "review_id": "hPx4vfYfmKkdwipCtSr-QQ", "stars": 4, "date": "2012-08-26", "text": "Very good food served quickly. Add a little hot sauce and some soy sauce, mix it together. Eat.\n\nPrice is low and quality is high. You really can't ask more than that.", "type": "review", "business_id": "6kQlOVkE6pZVHk-TIO_SGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GwP7klR69owmP-y1XCuSsg", "review_id": "xMP9L2tnPm0eLxGQvCTREw", "stars": 3, "date": "2009-12-06", "text": "love dicks, richardsons etc etc but come on I'm throwing down 120$ get some servers / managers with customer service skills.", "type": "review", "business_id": "9BJ5h9X1krpXFjKj0a6wbg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "jBuU4lovzxnHU64CAPM6xw", "review_id": "hYVa4vtKeiUP91ykroH0Og", "stars": 2, "date": "2011-04-15", "text": "Lee's Sandwiches has always been a pleasant place to go since it opened in Chandler years ago. From what I remember it was cheap and delicious. When I went back today, I found it to be cheap in a different way, as well.\n\nI ordered the #17 (Jambon and Pork) on a croissant and a large thai iced tea with no ice. 2 items, $9. Not quite the Lee's I remembered. They called my number and I walked up to get my food. Croissant sandwich, check. No ice in my drink, check. Thai iced tea...half check. My large cup was only half full (not being optimistic). Quite literally half full. I picked up my cup and asked where the rest of my drink was and was told that I ordered no ice (well duh). I told him I didn't order \"no drink\" and he said he wouldn't give me what I paid for.\n\nVery very disappointed. The only thing that saved Lee's from 1 star was the delicious sandwich.\n\nFood - 4 stars\nCustomer service - no stars", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "khPlizt3ava1xkbtAxHQnw", "review_id": "Fx5ZAY_yC-hqcQH0zH1RiA", "stars": 5, "date": "2011-03-20", "text": "Yum yum yum! Mexican food has to me my favorite type of food and Arriba is for sure at the top of my list for Mexican restaurants! This is a New Mexican style restaurant with lots of hatch green chilies in their dishes. You can also buy them fresh from here by the pound during the month of August. \n\nI have eaten here probably 30+ times and they are always consistent. The chips are always fresh and warm they serve two different salsas as well as bean dip. All three are the bomb! My favorite item on the menu is the whitesands chimichanga. Do not order this though if you can't handle spicy stuff. but if you are like me, the spicier the better, then go with this! \n\nEveryday they have good lunch specials. I like to go on Thurs because they have chimis for $1.99. For an extra dollar they will smother it with the white sands sauce. What a deal! And on Sunday they have kids day with a clown that makes animal balloons. And best of all, kids eat free! \n\nAnd if your a beer drinker they have a microbrewery too. I'm not a beer drinker though so I can't tell you how good it is. But the margaritas are on point!", "type": "review", "business_id": "xI0UZH734lJtm39DbLf-Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "VcN9i7sPrGSOn4BnpOJ9tQ", "review_id": "t4vpRcig7fv0FDGm_N_6Wg", "stars": 5, "date": "2010-03-30", "text": "LOVE the Four Peaks. Can get crowded as hell, and parking is a bit of a cluster F, but I've never ever not had a fun night there. The beer is excellent, the service has always been attentive, and the food is above normal bar standards\n\nThe fish and battered fries was very good, the tartar sauce is good, but ask for the cocktail sauce . . . it's fantastic. Heavy on the horseradish enough to feel it in your nose! And the Rueben might just be the best in town.\n\nThe happy hour is great. $3 locally brewed pints? Sign me up\n\nThe location and the it being an actual brewery gives it extra points. I had family in town this week, and I like to take out of towners to places that have a local AZ vibe. They definitely got a taste of MY Arizona. Next time they'll have to come during Pumpkin Porter season", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qyy2X0sjuwcikplzdATfGg", "review_id": "B414-q6teoKcHEpuanpBLQ", "stars": 4, "date": "2011-01-22", "text": "I really enjoyed dining here. It's a small space inside but plenty of tables outside. The flowers, the exposed beams, large bar - great atmosphere. \n\nI sat at the bar which is good for dining alone. The bartender is very friendly. I had the foie gras and the pork belly for dinner. The foie gras was ok because the brioche was over powering with to much sweetness. The pork belly is divine. The meat melts in the mouth, and the butternut squash and bacon bits compliment each other very well. The only problem is both dishes are so high in fat and I had to forgo the very popular cream bulee...... Another disappointment is that they don't have an espresso machine and only french press coffee.\n\nIt's a great spot to stop by when visiting here. Great date spot as well.", "type": "review", "business_id": "no_FXjscklz1SEzM_XnVgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1jJktRMj1OfMDo-clbYvrg", "review_id": "KAoePEAcVSV57mOILs40vw", "stars": 3, "date": "2012-09-01", "text": "Priced Decent, Quantity Heavy. Just ordered a side of chips and got almost a pound of chips. I love chips and salsa, but this was too much than i thought. Anyway the food was good and seems to have a authentic Mexican flavor to it. Worth a short once, particularly if you are pretty hungry.", "type": "review", "business_id": "9NT8Ne1DICkv0ebX-gVK5g"} +{"votes": {"funny": 4, "useful": 3, "cool": 1}, "user_id": "8JC-Yb3UDUv2FUl5ym1nVg", "review_id": "LwC4Rvl13snetFQrYPVqRQ", "stars": 5, "date": "2010-08-07", "text": "A burger? With anything I want? FINE....I'll do it.\n\nI need no convincing for a burger, fries and a coke (Thanks Carl's Jr.) \n\nEarleir this afternoon, after a heavy morning of househunting with a couple realtors, I decided to sit my fat backside at a table and eat. And eat well.\n\nI stumbled into the Five Guys at the Fashion Square mall. Not sure how long it's been open. Perhaps it was the grand opening?\n\nIt was PACKED! But I digress.\n\nAs soon as you get to this location in the food court of the mall, you'll realize that this is not your typical burger joint. They have their own seating separate from the mall-commoners. And their own bathrooms (CLEAN)\n\nYou get to the counter and you see a sign telling you about the potatoes they are using for the fries you will be eating.\n\nOrdering your burger isnt a gong show. Fairly easy. All the toppings are listed and all toppings are FREE!\n\nMy food was delicious. Got a burger with some of my favorite toppings: onions, tomatoes, etc. \n\nThe fries reminded me of an experience I had back in high school, when I held a girls hand for the first time. Soft, perfect and lovely. That's how these fries felt. Ok that sounded weird. Tough.\n\nOh, I forgot to mention that the soda fountains had COKE ZERO!! EFFING AWESOME! I MEAN THIS IS THE MOST DOPE SODA EVER!! \n\n(I'm really hoping this Kanye yelping phase ends soon, since my reviews make me seem like a bigger Jackass than I seem in person).\n\nUltimately, I left this place happy, satisfied and I will come back again.\n\nOh...the answer to the one question in everyone's mind? YES, BETTER THAN IN-N-OUT!", "type": "review", "business_id": "jvvh4Q00Hq2XyIcfmAAT2A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dB3jZ2gMTWKLb1RL0ed3MA", "review_id": "Dam8Axp73_lL1-bmS7N4hA", "stars": 3, "date": "2011-08-06", "text": "Ok so the look of the portions in the pictures are very deceptive. The waffle and pancakes arent big as they look, however I am stuffed so I guess the waffle was big enough. the food was very good, I thought it would be better, but I am not disappointed. I would come back here :) the waffle was not as good as the farm and the pancakes were not as good as first watch. but thats just my opinion. Next time I want to try some of their scrambles.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dUDzN6zl3j12zhByOrnF9Q", "review_id": "gPiV8NfmdSfbJ8Y9B5iD8g", "stars": 5, "date": "2012-04-14", "text": "Came here with the hubs- and we love the place :) We were able to eat here for significantly less dinero than you typically spend at any other sushi restaurant. The food comes by on the conveyer belts and the items are price coded by the color plate they are on. At the end of your meal you just add up the plates for your total. Each plate comes with 4-6 pieces of sushi- and they also have salads, desserts, appetizers, etc on the belt. If you are afraid that the sushi has been on the belt for too long or there is something else that you would like that isn't currently on display you can order direct from the bar. Win win :)", "type": "review", "business_id": "hDHYbekIzW-M5tljy1IP1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vWCksqJJfYjGGdD-yb9qGA", "review_id": "UHyaex5g_xBYqBUNCju2lQ", "stars": 2, "date": "2009-07-10", "text": "Yeah it kind of sux! Burgers aint that great (Though not terrible), girls aint that hot (At all :( ), place aint very exciting (or clean).\n\nYeah it is kind of cool that they are dressed as nurses and you get a little hospital bracelet with their name and such. However, putting on mandatory hospital gown is odd and kind of off putting (To me anyhow). They also do have a bar and sell unfiltered stogies of some kind. \n\nThey also do not take CC!!! WTF I say! Is is a bit too much \"Old times charm\" for my taste. There is an ATM right in there so there is no real need to bring cash with you. \n\nI do not know, whole thing kind of odd. It would fit my better in like Greer or Page or something, rather then in Chandler.", "type": "review", "business_id": "Zg-C1aYcoR2L5OIrA01MkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NmXOEr-_zlHGM0noE2Wrkg", "review_id": "E9e6c_YTWe4FDWyH5EyeeA", "stars": 3, "date": "2011-05-13", "text": "We had our first experience on a Friday night about 6:30. The servers were pleasant. Wild Thaiger has a nice patio dining facing Central, but it was a little too hot and they didn't have a misting system. The inside was clean with a combo bar and open kitchen. \n\nWe started with the Freshie Rolls with warm Peanut Sauce and Lychee Martini. Nice, but not the best in town (Pure Sushi Bar has a to die for Lychee Lemon Drop). \n\nThe entrees are huge and could easily be shared. We had the Kimow - hot and spicy clear noodles, chicken, broccoli, snow peas, sweet onion, Thai chili, garlic and sweet Thai Basil - Delicious!\n\nTo be fair, Thai is not one of my favorites, but we love to support local restaurants and this came highly recommended. Glad we tried it. \n\nAnd for those of you who like it HOT and SPICY - Wild Thaiger has you covered.", "type": "review", "business_id": "KPoTixdjoJxSqRSEApSAGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wcQZGCHp8fNJgfU6ajsAhQ", "review_id": "Y-DfhVRpbhv2Gttkjq1rIQ", "stars": 5, "date": "2012-08-18", "text": "On top of how good the food is, their customer service is excellent. I went to eat there on Thursday (the 16th), and had the best server ever. He was the bartender as well, and still payed tons of attention to my table. He was very nice, and very helpful. He had extensive knowledge of the menu. He was also very personable. He laid out samples of their various barbeque sauces while giving some details about each one. He squirted them out onto an extra plate he brought to the table, and he made the shape of a smiley face with all the sauces. He made that dining experience so good that I wish I could write a review about him personally and suggest to his managers that he get a raise! I couldn't hear him when he stated his name over a large group that had just come in and was moving tables, but he was wonderful.\n Also, one of the people with me is from the east coast, and likes vinegar-based barbeque sauce. They didn't have any of that kind in their current rotation of sauces, and he actually went back to the kitchen and explained the situation. A lady from the kitchen made a vinegar-based barbeque sauce from scratch just because one of us had mentioned how much we loved it.\n I've never experienced service like that, and really can't say enough about how great this guy, and all other staff I came into contact with, was! Great job to whoever hired him.\n The food was delicious, I love their fries! Unlike anything you can get anywhere else. I got the country roasted chicken- great seasoning, super moist and tender, while still having that chargrilled/roasted skin (my favorite). All of their sauces are so good; it's hard to choose just one! (And no matter how many times I go there, I always sample each one again).\n All positive things to say about this Famous Daves!\nOh- and I forgot to mention the corn muffins...beyond words! Seriously, you have to try them. Now I'm craving one, and I'm pretty sure they're not open at 3:00 a.m. I wish I could order them by the dozen haha", "type": "review", "business_id": "4iJUNAUVYNEuh16yK6Virg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bPY3vLbDjiFS-gbaLGNXMQ", "review_id": "9yQ6DpOO9NjnjW4qVXy4og", "stars": 4, "date": "2012-06-30", "text": "I absolutely LOVE the food from The Pitic! The place does look rundown and it is a rough neighborhood.. however those are the best places to eat aren't they? Food is made fresh to order and out of the 10 or so years I have been coming here the quality of food never changes. It is great for families and actually anyone looking for a great mexican meal. Their crunchy beef tacos are to die for :)", "type": "review", "business_id": "4NMElef11_YmVzxOpcsALg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Mva8f3RBztfxUQoUi47SnQ", "review_id": "fTluiClG-Hq9zjd18Fsb_Q", "stars": 5, "date": "2007-08-04", "text": "I called several pool service companies before choosing Desert Gator Pool Service. \n\nWhen we bought our house I insisted to my husband that we could take care of the pool...all we needed was someone to come check the chemicals once a month. Oh sure. After about one week, mustard algae, a bad storm, and a cranky pool pump, we were looking for a pool guy.\n\nWe called them on a Saturday and the owner of Desert Gator was kind enough to come to our home at 6:00am the following Monday to fit with our schedules. We had our service set up that week and have been very happy ever since. \n\nThey definitely got our pool under control and taught us quite a bit along the way. We still have them coming once every week - it's so worth it. Our pool was in bad shape after a recent storm and they were incredibly responsive. I think they came two or three times that week without charging us more.\n\n$85 per month...but can be a bit more if you need parts and chemicals.", "type": "review", "business_id": "AroAD6ARSEFmsrDzlzxObw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "180tLY4YhUAuckejm5v53A", "review_id": "dgjnyrO1p0j3tskKgNmrgw", "stars": 1, "date": "2012-05-28", "text": "I'm sad to report that we dined here for lunch and it was inedible:( Chef Aaron please come by and monitor your staff. We had the eggplant sandwich and is was a disaster. It was so overly oily and the bun and fries overwhelmed the plate. The shrimp and grits were so average with the shrimp being of low quality. The beer menu looked fabulous. So I guess if this is just a watering hole things will be fine...but if you choose to dine be prepared to leave hungry and unsatisfied. We hope this turns around. The decor is cool and the staff is really fun and helpful...and we are hopeful for a great place to visit in the \"hood\".", "type": "review", "business_id": "xOlzK02DWzETeZ8HbiEB0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q5dlLCEni_my05az9wIptg", "review_id": "Wz6ck_B59iW2ycgYV7ZMOw", "stars": 4, "date": "2009-12-16", "text": "Sakana is one of my two favorite neighborhood sushi joints. I love their calamari salad (although the one at this location is considerably smaller than the one on 59th ave) and agedashi tofu. The waitstaff is friendly and their bday song is always fun! \n\nInsider's tip: ask for some real wasabi!", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "LHukWNV03ShabMuJbaRrSw", "review_id": "AJZchirMerzo5qBYUG0yiA", "stars": 5, "date": "2010-02-15", "text": "Good rates\nGreat location- near food, shopping\nQuiet area\nRooms have kitchens\nFree Wifi and Breakfast\n\nFor a business traveler these are the big selling points- it's kinda basic but loads of features.", "type": "review", "business_id": "PqJwKYHU_eHjw0q0NlULJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "d9t-5lNTjoqFoevQ1sk5jQ", "review_id": "sd-aWEzrAV8CwrCbKvIVxQ", "stars": 5, "date": "2009-05-29", "text": "Doc and Edwards has been a place of refuge for 5 years for me. Hell, most of my friends spent their 21st birthday there. It is hard to explain walking into a bar and just feeling at home. It is so comfortable and wide open. Even on the most crowded days, I feel like I am on the cast of cheers. The employees there are good and the food is exactly what you expect. You can also order silvermine there with no delivery charge! The pool table rates have gone up in the last few years but if you spend a good amount of money on drinks, they waive the pool table fee. Or you could go for some ping pong, foosball, UFC, or big buck hunting. It has a great juke box but watch out for the lady that throws 20 in and slangs the worst playlist I have ever heard. If my girl would only let me, I would have my wedding there.", "type": "review", "business_id": "BJfjd8oEMW_zq8KTkixyig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IvT2oMfYzNCnyCLF0gxXhg", "review_id": "3cyAn0CQohU9C23AxKR2gA", "stars": 5, "date": "2012-09-11", "text": "Great gluten free Italian place! Tell all you gluten free friends, they will love you for it!", "type": "review", "business_id": "Zruvunhqw7cuyuoe7g09Gw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZtM1ZL3M2VYyc3l_K58lbQ", "review_id": "y9K_l8ZziP20l8vh_IE_yw", "stars": 4, "date": "2011-01-21", "text": "Breakfast is fantastic. Work on the coffee selection. Only thing holding back a star is no French press coffee or an espresso machine", "type": "review", "business_id": "MLcXtnpzygZvQ9BtseLLlw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "4YJRvI__DA8mUHC1ItoBPw", "review_id": "aG24D--nCUEgCysTzHfvdw", "stars": 4, "date": "2007-03-05", "text": "A co-worker of mine wanted to take me there because she said it is the oldest restaurant in town and walking in, that's how it felt. This place is all about the atmosphere, it's got that swanky kind of loungy,supper club feel to it. The wait staff are all dressed in tuxedos but, were a little curt when we asked for extra things. The food was pretty good we both got Chicken Giordano which was a little dry but had a good flavor to it. The dessert we had was amazing, three flavors of creme brulee..great to share and a nice change to the standard dish. One thing to watch out for is that they will try to sell you on their wine special of the night....don't get me wrong it was a great bottle of wine but, they push it on everyone!! Great place to go if you are in the Phoenix area!", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "KlLDE4egzf9VruPheiXHMA", "review_id": "qA0jXJZYXtIPnti1KiHjRg", "stars": 4, "date": "2009-07-17", "text": "Good food and freindly staff. They have a nice selection on the menu. After seeing the table next to me I wish I'd of had the house specialty....blueberry pancakes. Next time........", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "b4C9E7vTJrOdkJQA86xYSg", "review_id": "CexxnFUucFDwKjHTZNXRiw", "stars": 4, "date": "2007-10-03", "text": "I really like this place and would definitely come back. I had a blueberry martini that was dreamy and for dinner I had the halibut entree which was also very good. Their wine selection is very good... I did have a glass of wine too because someone ordered a bottle of wine and I felt compelled to help him out:) And from what I remember the service was also very good.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "rKzZEacaoUyhApD5BYxw0A", "stars": 5, "date": "2011-08-16", "text": "I can't believe some of the things I've been seeing people NAG about in their reviews for this new restaurant! I set my standards pretty high for Rice Paper and they did not disappoint! \n\nI took my wife on a date here last night because she really loves beef pho, and had been waiting for this place to open up! The atmosphere was very bright and welcoming, as well was our server! He sat down with us and quickly went over what was good and what was popular with most patrons so far. We took him up on a few of his suggestions and started with the fried calamari. I'm not sure what they bread it with but it was delicious, and the squid was perfect; not too soft, not too chewy!\n\nFor our main course I ordered the Shaking Beef, which was cubed filet mignon served over onions on a sizzling platter in a special sauce, with a side of rice and grilled zuchinni... again on the suggestion of my server! I HIGHLY RECOMMEND! My wife got the beef pho... at first I was a bit iffy on it because the broth looked very clear as if it were going to be somewhat watery... but it was VERY well seasoned! Our server told us that the broth stews for at least 12 hours allowing it to achieve the best flavor from the pho spices! VERY IMPRESSED! \n\nYes, it is much pricier than your average pho joint, but I'd rather pay a bit extra for a nice, clean and slightly upscale atmosphere! And the quality of the food is MUCH higher than the mystery meat you'll get in your bowl of pho at some other places! \n\nWell done Rice Paper, we WILL be back!", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "lTzYuNZ2IazfdkZfXELW1g", "stars": 5, "date": "2009-01-25", "text": "This is by far the best farmer's market I've been to in the Valley. Still small by comparison to LA and the Bay Area but is off to a great start with lots of potential and space to grow into.\n\nMcClendon has a great spread of high quality mainly organic produce and is constantly restocking so it's ok if you don't get there first thing. It was exciting to see beautiful Tuscan kale and broccoli rabe at prices lower than Sprouts. Meyer lemons and blood oranges were also available.\n\nPhoenician's outstanding loaves were only $3. You're welcome to sample - we particularly liked the Olive Walnut and Dark Chocolate Cherry.\n\nWe enjoyed Digestif's Frittata ($4) made with thin layers of potato, eggs, pork belly and spinach. Other combinations available were Dandelion with Goat Cheese and Mushrooms with Garlic Confit. Executive Chef Payton Curry is also there to demonstrate pulling fresh mozzarella which is served with a variety of sauces and toppings,\n\nIt was fun walking around this bustling market sampling food, like tamales, which we intend to come back for next week. If I can get myself out of bed at a decent hour on Sat, I'll be here for sure every week until the season ends in May.", "type": "review", "business_id": "Sb1_G-DMy26YHafNxxhVrQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "SP9lIen3l2_3QG9LxB8l7w", "review_id": "SqdpWVe2CNTDxIePpJelCQ", "stars": 1, "date": "2011-12-01", "text": "UNBELIEVABLE!! so enraged and appalled!! i took my 91 yr old mom in to the salon for a mani-pedi. after the pedicure she had the manicure and she asked for french tips. the GIRL claims she asked mom if she wanted gel nails -- she's 91, did not understand the gal's \"english\" and can't hear, so i presume she nodded. after mom paid the charge of $60 and i picked her up (i had another appt.) she told me about the charge and said she had never paid that much for a mani-pedi. i called and was told the normal charge is $30 w/$5 added for french and HE said to come back cause it was mistake. we did and the whole group of technicians said it was mom's fault for saying \"yes\" and would not concede AT ALL -- not in the slightest. i found that to be awful and mom felt very taken advantage of. i will NEVER return there and i caution any hearing-impaired customers to not use this business. TO ME and of course to mom, it was such a slam on the elderly. mom is a visitor from the east coast and at her age does not need to be treated that way. VERY BAD BUSINESS!!!", "type": "review", "business_id": "RyUIcbNgIjzTE01rguyXUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Xdu24yBabw0uq4GzKBhWaA", "review_id": "847ykx9jvDYmwcAeI284-Q", "stars": 3, "date": "2011-12-07", "text": "Solid. We hit up the happy hour which features 50% off booze and tacos for $1.50. I had the duck, shrimp, and cochinita pibil (pork). They were tinier than most street-style tacos I've had (and boy howdy, have I eaten a lot of those from Cali to NY) and even a little soggy. The duck was my least favorite as it had a rubbery taste and texture. The shrimp was A-OK but for my money, the cochinita was really where it's at with his super-porkey deliciousness. We also split the queso fundido (rich with cream cheesey chunks, whaaaat???). It was way tasty but it could probably double for spackle in a pinch. The most successful item of the night was the churros with goat cheese caramel. Between my 3 buddies and myself, we made quick work of that dish. Each of us had their house margarita which was strong (just like I like it), but I'm not entirely sure I'd order that drink for non-happy hour prices. One of the big drawbacks, however, was that our server was really rushed and we had a hard time getting his attention. \n\nOn the whole, I think I'd be back to try some other items. The chicken mole torta looked really appealing. Be forewarned though, it IS a spendy joint. Expect to pay $15 - $20 for most entrees. On a post-grad shoestring budget, it is certainly a splurge. We did love the mural outback and the groovy art inside.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "_lA4GgcUKW1f892o5jGhBQ", "review_id": "ynsk90vScBbq2t6_IC4gSg", "stars": 4, "date": "2010-07-21", "text": "I get a call on Thursday: \"Dude, I just got fired from UOP, we have to celebrate!\" If it was from anyone else but Ryan, I would have been shocked. However, he hated his job and we love Yard House, so I was definitely down to have some \"FU UOP\" drinks up at Desert Ridge.\n\nYard House has been one of our main spots for years. Right off the bat, the Happy Hour is fantastic; 100+ beers on tap, including some of AZ's finest and a couple amazing international brews. The servers usually do a great job of suggesting drinks as well. Traditionally I \"cleanse the palate\" with a Warsteiner Pilsner and roll from there. Friday night, I tipped back a few Kiltlifters as well, all brought in well frosted pint glasses.\n\nThe food has been pretty fantastic across the board. Personally, you can't go wrong with Firecracker Wings (sweet and very spicy wings) and the Spinach Dip. Their seared ahi appetizer and Caesar salad are both fantastic, with the ahi always perfectly cooked. The Southern Fried Chicken Breast is likely the best meal, though my pal is a huge fan of the Cuban Dip.\n\nThe one potential drawback is the service isn't always fast. Honestly, if you are going to relax and enjoy time with your friends, it's great. Beer glasses don't stay empty too long, waters get refilled (we only sit on the patio), and the food usually comes out before you get too hungry. Just understand that the joint gets busy for happy hour and you will enjoy the experience. Give me a call if you ever want to share some FU beers!", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T_kMEgHqIqwbHR_7yhqWFw", "review_id": "4Ti2bBt-ndllcf2zrQPKMA", "stars": 3, "date": "2010-08-26", "text": "Ye Olde Pipe has a great selection of cigars and a very big walk-in humidor, almost too big. I say that because as I walked around I came across a few boxes of cigars that were way too dry. With that said, I still found SEVERAL cigars that were fresh and moist. What I liked best about Ye Olde was the variety, they had several cigars at all price points, so if you can't afford to smoke an Opus X, they had plenty of cigars for less than $10. \n\nIf you aren't an avid smoker, I don't know if you will get any help because the staff did not seem very friendly or welcoming, but if you know what you want, there is a good chance they have it.", "type": "review", "business_id": "TLUD93ys-QxbnkQaLZGslQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "uBp2Jmip2qXQ0iWHUDY9sQ", "review_id": "hcYKFLCebfbd-KVANTvmvA", "stars": 4, "date": "2008-07-07", "text": "Why go to some new place that tries to recreate the ambiance of an old fashioned ice cream parlor when you can just go to an actual old-fashioned ice cream parlor? Unlike newer parlors, Mary Coyle's doesn't try to be self-referentially hip or ironic, they just serve good ice cream without pretense. The thing is, they must be doing something right since they're popular with all age ranges and different groups of people. Plus, it seems like the high school kids working there are having a good time and actually glad to see you when you come in.", "type": "review", "business_id": "wzP2yNpV5p04nh0injjymA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "M1EciT6_JAOakQrSlzZq-Q", "review_id": "bTTq70eFV3onI09yiebLew", "stars": 5, "date": "2007-05-27", "text": "Been here 4 times in the past 6 months. I love bringing out-of-towners here. Excellent art and history exhibits specifically related to Native Americans from the southwestern United States. Reasonably priced entrance fee. Go on the tour - they will tell you really interesting things about each of the exhibits you otherwise wouldn't know - makes the visit much more enjoyable. A must see for visitors to Phoenix!", "type": "review", "business_id": "SG_gEmEXL4ID6RAEinC5Bg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yhC4ErI6OT0DNle2SEtSZQ", "review_id": "AFKgh1Cw-gaO2qHalJBQHQ", "stars": 2, "date": "2011-01-04", "text": "Got a recommendation to eat here from a friend and was somewhat disappointed. Expecting a sit-down restaurant with wait service, I was surprised to find it layed out more like a fast food joint with the addition of a bar--kind of odd. The service was fast and friendly, but the food was average and didn't seem quite warm enough and got cold very fast as a result. The best part about dining here was the churro I picked up on my way out, which was surprisingly delicious. All in all, I don't see myself returning to the Blue Burrito Grille unless it's to pick up a churro or two after seeing a movie at the nearby theater.", "type": "review", "business_id": "MAFjNfDWJRgWCw8IOC7mew"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "U8Q4IYl4Q4DicpROht982Q", "review_id": "azvDTEdVtD0WkKKHRcuPYA", "stars": 3, "date": "2012-06-30", "text": "The property is beautiful and clean. Restaurant's were great. The problem is the front desk snobs. No personality. They messed up my reservations, made me and my family find our own hotel for the night that they messed up? They didn't even try to get us another room, despite me paying any price. After a long day of travel with an infant, toddler and wife, the last thing I want to do is look for another hotel at 11 PM, only to come back the next day.\n\nThe attitude of the front desk is sad and horrible.", "type": "review", "business_id": "5AsVHsqADuurv7NqG-RFLA"} +{"votes": {"funny": 1, "useful": 2, "cool": 4}, "user_id": "PzTP2RCSdBrZLbaxXgZ3kA", "review_id": "9EIM81R8PY3Kz7KePUW_tA", "stars": 4, "date": "2008-02-28", "text": "I was sworn to secrecy when we first came here with friends several years ago. I think it's some of the best Italian in town. It isn't fancy (a plus, in my book). It's small, so sometimes there can be a wait involved. Even though its small, because of the very personal service by the owner, the service can be lacking or distracted. The food, however, is well worth it! I try to get something new each time I go, and I've never been disappointed.", "type": "review", "business_id": "VpW40mznMS43CqdbelX2wA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "cVkxqYbrTSsaWN5dpDuXuA", "stars": 2, "date": "2011-11-17", "text": "Eh -- no. \n\nI stopped here for quick take-out one day while at work. They had no sushi at all (even though it's on the menu), and the menu itself isn't laid out very well for understanding what they have/what's included. I wasn't there to eat onsite, but good thing -- very little inside seating. The food wasn't all that good, and if the customer says \"to go\", then you should put utensils and napkins in the bag for me. The place didn't seem very clean either. \n\nJust not a good experience. Go somewhere else.", "type": "review", "business_id": "Em8zrIuxwBXnIZMDMreErQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "dUrVJl5qi2CJWff7s8HJNw", "review_id": "81aYJVPnSXbtsRHLSqnlng", "stars": 4, "date": "2009-09-26", "text": "\"Buy Local Coffee\" is what a sign out front of this establishment says. So that's what I did. I went to Copper Star Coffee to get my drink of choice, an iced coffee with cream. I enjoyed the flavor. It was better than Starbucks and quite a few cents cheaper. SCORE!!! I became a regular. I stuck with my ice coffee for months but their bakecase was calling my name every time I would enter. I found out Copper Star bakes their own pastries fresh daily. Another SCORE!!! No preservatives or high fructose corn syrup. I started adding a scone with my iced coffee. They have chocolate chip, lemon, blueberry, etc. Delicious!!! The apple sauce spice cake is now my favorite. It is a vegan pastry. It is flavorful and the glaze is so slight but fantastic. Not a vegan by the way. \n\nI have been slowly branching out among the Copper Star menu. Try the Black Cherry Limeade. The specialty coffee drinks are quite good too. The blended toffee drink rocks. The antioxidant smoothie is refreshing. The other smoothies are okay. They use syrup in those. I don't know how healthy that makes them. (Real fruit please).\n\nLet's talk about their sandwiches now shall we. I have tried their sesame tuna, the curry chicken, the deviled egg salad, and the veggie. All of them are winners. You wont be disappointed. Copper Star just unveiled there new sub sandwiches as well. They use a local butcher's sausages for their subs. Awesome. Way to keep it in the community.\n\n-internet access\n-community board\n-art work\n-misters for the heat\n-water bowl for dogs\n-drive thru car hop service\n-frequent customer stamp card\n\nThe Copper Star building is an old service station cleverly gutted out and made super cool. The staff is great and they stick around. Not a high turn over. It must be a great place to work.\n\nParking can be tricky. The majority of the parking is on the street and the parked customer cars creep into the surrounding neighborhood. You may have a little walk. Big Woop!\n\nA must. Check it out.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Jrx1fLr5JdqgHdIfMT7wag", "review_id": "lDEHoRGTujPGZ0gSQ8uP-w", "stars": 4, "date": "2012-04-23", "text": "This is my neighborhood grocery store. It's at the two locations I shop at most. It's always clean and well stocked and I never have to wait in line for very long.", "type": "review", "business_id": "CVk_Jk7vU9JlP-U_fArQqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Syc4pbEkL3bbzjO4X4HhQw", "review_id": "UVttEYsZIrhQ92RFLcK09g", "stars": 4, "date": "2011-10-22", "text": "Anyone else have this problem?\n\nI like to go out and socialize. I don't care if a place is a little loud or smoky (what do you expect in a bar). I have more fun if there is a good crowd, music I can dance to, and a full service bar that can make all those foo-foo drinks & shots I like.\n\nMy boyfriend on the other hand likes places without a lot of noise where he can just hang out, have a conversation and drink beer.\n\nWe finally found a place we can go that makes both of us happy: 16thh St Sports bar! This place isn't exactly a sports bar. Its defiantly not a club. Its not dirty, but DIVE would still be an appropriate description.\n\nThe dance floor + DJ and pool tables are on one side of the building. The main bar, main lounge, and the big TVs are on the other side of the building.\n\nMy boyfriend can grab a table and hang with friends without having to talk over a lot of noise. I can leave my purse & cell phone with him and go to the other side of the place to dance the night away....When I get tired or thirsty I can go find him and take a break. I love that they have lots of bartenders and waitstaff working. I never have to wait long for a drink even when I'm not drinking with everyone else from a pitcher.", "type": "review", "business_id": "cXx-fHY11Se8rFHkkUeaUg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "r2dEIHPmQ33AmdLkjYE1_w", "review_id": "9-f1CwpyMrqUoDRnqt8Pxg", "stars": 1, "date": "2009-09-21", "text": "As you walk in you are greeted by a sign that says Cash Only ATM inside alright times are tough I get it. Then you see the special board which read \"Good Food Takes Time\" and there is a clock next to that. Fine that's cool but the problem is that after waiting for our \"good food\" it came out and was awful. My wife said she has tasted better pancakes out of the freezer section at the grocery store. $30 later we boxed up the food only to throw it away. The good news is that we went around the corner to the Breakfast Club and had an excellent meal.", "type": "review", "business_id": "CEs_oJMtLsll3xBM9slBQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cyXlOAGH4tTOvMm1chXrTg", "review_id": "WIcqivfzW3anidXzTOBZQQ", "stars": 5, "date": "2009-07-16", "text": "This review is for the food only. If you care about parking and what kind of extras they sell that aren't food related you'll have to check out another review.\n\nI love LGO. The food is absolutely top notch and I love how the menu has both traditional fare and a few things you've never heard of like their Venice Beach Burrito which is filled with scrambled eggs, tofu chorizo, spinach, and other goodies. It comes with a side of salsa which also fantastic. I eat breakfast here all the time and I have never been disappointed. Also, if you're in a hurry grab one of their pre-made granola/yogurt/fruit parfaits, Yum!", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CmXr3Vik7WC6f5qwn4p9Nw", "review_id": "3jNOaX5bI2UMadrF-BEgJA", "stars": 5, "date": "2010-04-21", "text": "What a great little find especially for Phoenix! I've been there on at least 4 occasions and have never been disappointed and just had to let everybody know about this little gem! Recently I took my mother and we had delicious Singapore Noodles and Malaysian Rice Noodles (which are kind of like Thai's Rad Na but better). On another occasion my husband ordered Pork Belly Curry and really loved it. I wasn't as adventurous and had delicious Chicken Kebab Burmese style. Family owned, quiet, and very affordable. You have to really look for this place since its in a shopping center(its on the north side of Shea between 70th & 71st St in Scottsdale). Great early bird dinners as well!", "type": "review", "business_id": "KG3GwIcMKf0qYAtA-hN1MA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kxIzasUoiNzZKAV_i_iYAQ", "review_id": "6ElHHB9t1HsMbNuaOQ0HLA", "stars": 4, "date": "2010-07-27", "text": "I have been to this course a few different times. The summer deals brought me in because it is a little pricey during the season. \n\nThe greens and fairways have always been in good condition and I enjoy the challenging hills and strategically placed bunkers. I haven't really scored well on this course but as a beginner golfer I enjoy the challenge this course offers. \n\nWater jugs on every tee is crucial for the summer months.", "type": "review", "business_id": "7kAXbY8hjHhC-nZKR2Embg"} +{"votes": {"funny": 4, "useful": 5, "cool": 1}, "user_id": "LSf-IajkL99JQBZ3PzXnjQ", "review_id": "APMAhHLI3EQ09qmWxA4ZKg", "stars": 1, "date": "2012-07-18", "text": "Absolutely gross- I'm just going to be bluntly honest- who the F cares what the food tastes like when the place looks like a frickin' dump? It was so disgustingly dirty inside. Besides food, paper, trash- resting among the carpet- the tables were dirty, the bathroom was out of service and I feared touching anything as I was led to my seat... that's a problem.\n\nI've actually never seen such a messy restaurant before. Let me also say that the restaurant was empty when we arrived, and was filthy when we walked in and was filthy when we left. \n\nObviously no one that works at this restaurant cares about cleaning up between seatings. There's no excuse for a place to be disgusting like this. It's downright unsanitary. You serve food Valle Luna, you're a business Valle Luna- keep the place clean for heaven's sake.", "type": "review", "business_id": "E3RjJH45EX6rHYDs0TYSRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DnwHp_A92KvllfaUIdFraw", "review_id": "NXCMFRY083QqcbZHQjVqow", "stars": 4, "date": "2012-05-14", "text": "Back to Joe's.... been several years as we are Westside dewelers and on Mother's Day we had Mom & Dad with us and suggested Joe's after the hot experience out at Schenpf''s farm. Glad we went, Joe's really is quite tasty, is it the best? - Probably not but that is all relative! For the SE Valley, it's our go to spot for BBQ. We had the ribs, pulled pork, the Jumbo tater with Pork, coleslaw, mac & Chz, lemon cake, sweet patato pie. All were really quite tasty. The \"HOT\" sauce isn't THAT hot... but good lil kick. One time we will be there when it's not as hot out and get to try that nice large outdoor seating! - I gotta say the Lemon Cake kicks ass!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3nUQ4xbLlySDbkE03nyp-Q", "review_id": "GUCIEpH9oDmzmHfGQnpjBA", "stars": 3, "date": "2012-01-10", "text": "**********This Time We Didn't Do Carry-Out**********\n\nDefinitely better ......... when you eat there.\nThis place is like Pei Wei ........VERY LARGE chunks of meat.\nVegatables ...... NEVER.......Just like Pei Wei........their priceless.\n\nWARNING:\nHot Tea is available for $2.00\n*********Brown Rice instead of White ......... ALSO $2.00**********\nThe Soups are TERRIBLE.", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "i0A-c2yoHySmFhRV2sDR1g", "review_id": "YNaKNYuYZe3142ctwNLDbw", "stars": 5, "date": "2011-12-01", "text": "I was in this area and went here for lunch today based on the Yelp reviews. I had a molete and lengua, fish, and pastor tacos. Washed it all down with a Mexican coke, made an awesome lunch! Everything was so good I ordered a shrimp burrito to go and shared it with a friend after I left. I'll be back to try more things next time I'm in the area!", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "j3JBwrBomduNdWTC34Knnw", "review_id": "FWAcid1CnWAhzdVWtYCJcg", "stars": 5, "date": "2012-06-23", "text": "I love me some coffee. The french roast brew is perfect for surviving a long day of work. If you want something sweet, order the iced raspberry mocha. Just the right amount of sweetness without tasting like you're drinking syrup. The muffins are moist and delicious. The spinach salad here is surprisingly amazing (yes, they make spinach salad at this coffee place). The best part about this place? It is not full of hipsters and college students who hog all the decent seating and never leave. I can't wait to go back to try all of the other drinks offered.", "type": "review", "business_id": "z2YTaHtGod3i3BBbKiMNwQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "SGXahHRReksq3m_Zk9V20w", "review_id": "6mDIR-lRchR66s0dZICjxw", "stars": 3, "date": "2012-05-03", "text": "Another disappointed visit. I am starting to think this isn't a fluke and PB has lost it's magic touch. We went for my wife's birthday around 4pm on a Wednesday. We actually walked right in and sat down. We were both shocked as the least amount of time we have ever waited was well over 3 hours. \n\nThe staff was more attentive on where we sat than giving us a genuine greeting even though the place was empty except two other tables. We put in our order for a margherita with prosciutto, a wise guy, and a caprese salad.\n\nThe bread came out cold with some oil to dip it in. I can't remember if it was always cold but it would be nice if they threw it in the oven for 30 seconds before they serve it to you. Next our pizzas came out and the margherita was missing the prosciutto. Not a big deal. Maybe he didn't hear me, maybe the cook didn't hear him? My wife confirms I did request it and I'm not losing my mind. The pizzas were good but lacking the usual special touch. The crust was the best part which is not unusual but what was unusual was the rest was very lack luster.\n\nEven though the shop was dead our waiter never came back to us and was back behind the bar laughing and chatting with other staff members. Finally a blonde woman asks if we would like our bill. She brings it to us and when I give her my card I gently advise her they forgot my prosciutto and it's on the bill. Another guy brings the bill back for me to sign. The 6 dollar prosciutto is still on it. I inform him that there was no prosciutto and I told the other woman but it's still here. I don't know if she thought I was just making small talk or what but I sure am not paying 6 bones for some sliced ham that wasn't even on my pizza. He took care of it.\n\nHere's the deal. I don't know if it's because I didn't wait 3-5 hours to eat or if it's just falling apart without Chef Bianco but PB has definitely lost it's way and is quickly losing the legacy he created whether they want to acknowledge it or not. I used to think the staff was short and slightly rude because of how busy it was and dealing with upset starving customers brings them down but now I know that is not the case. They are just not good at what they do and have been there getting away with it for too long. Just because PB is famous and Chef Bianco is world renown doesn't mean you are. \n\nThe dough is good enough to come back for but there is simply no way I would ever wait in line to eat here again.\n\nIf you read my previous review you will see I am not a PB hater and actually was a huge advocate. I guess all good things really do come to an end.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QdypppSRw2H5UtMu1IebLw", "review_id": "2_HkFFyvkIYO8dfi0Nmybg", "stars": 4, "date": "2011-11-11", "text": "What a menu! My boyfriend loves sushi and I don't eat seafood, so going to these types of restaurants can be quite disappointing. However this place has the most extensive menu I've seen at a Japanese restaurant that is known as a sushi bar. The ambiance in the place is really romantic at night with dim lighting, nice music, and delicate plating. All the little details in the decor, like placing the chopsticks on a polished river rock was beautiful. Their menu offered everything from chicken and beef to lots of seafood. I ordered chicken teriyaki and it was delish. Their sauce tasted homemade and was lighter then most which I loved. It came plated nicely. I also had their tempura which was light and airy as it should be. The dipping sauce, also heavenly. My man seemed to enjoy his sushi and it looked nice as well. Overall it's pricey compared to other sushi places, however the ambiance of the restaurant and upscale choices on the menu make it worth it.", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "EKwGhgLrM18ErVKKeYE2UA", "review_id": "-D6g_1b50Nxvscbal0aSyA", "stars": 4, "date": "2010-02-13", "text": "So we finally decided to give Cibo another chance and I'm so glad we did!\n\nI love love love their patio. It's very cute and romantic especially with all the lights wrapped around the trees. The heaters keep you warm on a chilly night and it's much quieter than their indoor space. This place is a great date spot. \n\nWe both had the Prosciutto Cruda pizza and had wanted to try the burrata, but unfortunately they'd been out of it for the last week so we ordered the bruschetta instead. Our waiter also recommended the Valpolicella Ripasso, which was ok, but it was a little light for our tastes. The pizza was really good (the fresh ingredients really come through), but we weren't the biggest fans of the crust. I like something more substantial and airy. But for a thin crust pizza it wasn't soggy at all. A big plus! The bruschetta was also ok (don't get me wrong I still ate all of it and would order it again), but each bite just needs a little more of a punch. \n\nService was great and we met Karen, the owner, before we left and she is a doll. We had a much better experience this time around and we will certainly be back.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0qbfCsqgn7ol9m9CgAJ3WQ", "review_id": "un-QbuM1YkCs-wNr9lvSuw", "stars": 3, "date": "2008-07-25", "text": "So-so Mexican food. I have heard people raving about this place and I don't really get it. Don't get me wrong, it's better than Manuel's or Filiberto's... but that's about all I can say.\n\nOkay, their Pollo Fundido is good (but not great like you will get at Ajo Al's). But let's talk about the purple and teal accent colors that scream \"I was remodeled in the 80's\"! Lame.\n\nGood chips and salsa but small-ass bowls! \n\nOh, and don't expect to park in their little lot during dinner rush. Also, the surrounding neighborhood is definatly the ghetto-side of the Moon Valley area.", "type": "review", "business_id": "BD74uSwDe175zEqfppDRvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hqQietyMWhUDCoD8x_F3tw", "review_id": "SNffynGI3aC-Meb2vtEMJQ", "stars": 5, "date": "2011-04-26", "text": "It isn't often enough that I get to dine at Carlsbad, but last night I decided to have dinner there. I'll be completely honest, service is always a mixed bag. But then you figure when they're crammed to the gills (which is generally how it goes), you can't always expect Speedy freaking Gonzales to be your server. However, last night I don't think I could have sneezed between the time I ordered my food and when it arrived to my table. Excellent.. is all I can say about this joint.\n\nIf you're looking for some tasty New Mexican fare, get over there!! And if it's packed, let the valet park your car(CUZ ITS FREE)! Start off with a Dos Equis Amber, get some nachos(this vegetarian WILL eat the niblets of chicken in them nachos cuz it's just that tasty) and kick back. Preferably on the patio...because there's a waterfall!!! \n\nAnd if Jacob's working the bar.. expect nothing but the best in cocktails... seriously.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "sRgUoLpEWhu6jnr6Nqr9-w", "review_id": "xqRrpg2VyIxEOD-G6t_8Hw", "stars": 1, "date": "2012-05-08", "text": "This wendy's is terrible. I grew up going to Wendy's but recently the whole chain has become disgusting. This one is just a slow, disgusting chain. Blah, rather eat pretty much any where else.", "type": "review", "business_id": "JoqrcQuzD3yEvs9KvN82ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bJ-YCS-7wSlFL0FgPdU2FA", "review_id": "wrncJ3ksVdIqyZBqP9qx-g", "stars": 4, "date": "2010-04-18", "text": "This in truth had been my first \"Cajun\" eats.\n\nThe atmosphere was cool.\nThe service was good.\nThe food was rich and filling.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WkrnAtXbCvfPnb87m8319g", "review_id": "XLMY6qKw3dgG4zpdaVkakw", "stars": 5, "date": "2011-02-22", "text": "FANTASTIC little lunch/brunch spot! Went here with the family while visiting Scottsdale and really enjoyed it! \n\nWe had the Tuna Melt, which was delicious with their spiked cottage cheese! \nThe cranberry chicken salad made into a sandwich was DELICIOUS! \n\nThe omelets and scrambles looks great - I didn't taste, but then again, there was nothing left on the plate! LOL \n\nSmaller place so could be busy during peak hours, may call or try and hit an off time. Service was ok, wasn't anything special but the food was really cute and made for a really cute little lunch spot!", "type": "review", "business_id": "E5dqlvxPw9Q4XFqOMw_lqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CfQTjevxIX1v2BXmmOMKjQ", "review_id": "Z5wIXNPxMJJVktBJ181NKQ", "stars": 4, "date": "2010-03-18", "text": "Clean, comfortable, smoke-free, fast service, nice staff.\n\nAlso, their complimentary breakfast had a nice variety of food items. There is juice and coffee; bagels, yogurts, waffles and cereals.\n\nThe hotel was a lot nicer than I expected, and I would definitely stay here again.", "type": "review", "business_id": "iU2xL-h56_yPtfB42cH75Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "zjM_3HCFhicnxfccPf6bUA", "review_id": "hi0XKe-aOeWyfanGYbrPNg", "stars": 1, "date": "2012-12-13", "text": "They wouldn't honor pet co's online sale prices. That's the first time I've heard about this.", "type": "review", "business_id": "GIAcSwgHtT-ookKK4-dsLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "NsVvJ16TMIx5_-GwugAPgA", "review_id": "9hJzAyO-DotNgK8fnJPtoQ", "stars": 4, "date": "2011-03-25", "text": "Being a San Jose native, I know Pho and Vietnamese cuisine. Let me tell you, Khai Hoan is excellent. Definitely the best I have had in AZ and comparable to the best noodle houses in San Jose. \n\nThe pho (rice noodle soup) is great- beef or chicken. The dry noodles and rice dishes are generous portions, and very tasty. Great ingredients in everything. Make sure you get an order of spring rolls. . . \n\nIf you have not had Vietnamese food, check it out! It is fantastic. If you have had Vietnamese, go to Khai Hoan and you will not be disappointed.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7rqM7Vhys0NLcGH8lxSywA", "review_id": "TwyIyrx1Y9UY1VPFnMRzoA", "stars": 4, "date": "2011-01-26", "text": "My dog is very difficult and they do a very good job handling her. It did take a few times before she got comfortable with them. I am glad I found The Doggie Door.", "type": "review", "business_id": "-iJZ-PEnOw2oVUBFfg5wJw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "pv82zTlB5Txsu2Pusu__FA", "review_id": "ZUKU8l8jQ-_m2cK6b7Vm_Q", "stars": 5, "date": "2010-07-15", "text": "Arai pastry is so delicious!\nironically i come here not for the sweeties: confections, cakes, cookies, cremes, not being my style- but for their delicious savory treats! The breads they make here are top knotch, the various salty pastries are all worth exploring, the red bean one and the curry filled ones being my favorites. But the real deal, the Coup de gr\u00e2ce, the mamoth reason of what makes this little japanese pastry shop (in my mind) is their sandwhiches/ green tea shakes\nthat powerful one two punch of savory sagacity is what makes me want to live sometimes\nyes yes\ni find the world to be a better place with those items in my tummy", "type": "review", "business_id": "IW9yHeqnFCEbO5s1UCrqeA"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "LXYT1R1885ENf6O3tKhhbA", "stars": 2, "date": "2011-05-28", "text": "Our fearless Critical Mass organizer arranged with Cycle for us to end our May ride at that establishment. I was excited, because Cycle purports to be a pro-bicycle bar/restaurant. We rolled up, all excited. There were ample bike racks for our nearly 100 riders. However, when we entered the hotel, we were brusquely directed to the bar entrance. Having been to the restaurant before, I wandered out to check the dining room. I was immediately turned back at the entrance and told the dining room was \"reservations only.\"\n\nWell, the bar has maybe 5 tables, and there were nearly 100 riders. People who have just completed a 10-mile+ bike ride want to eat, drink, and be seated, not stand 5 deep in a bar line and then stand around holding their drinks. We were not even sure we'd be able to order food. We left almost immediately and went across the street to Portlands. Right after we'd ordered, we saw another group of bikers headed to Carly's.\n\nIt's not like Cycle didn't know we were coming. If you know 100 people are coming to your venue, don't you think you'd prepare to welcome them and encourage them to spend freely? Lame.", "type": "review", "business_id": "kJFS_3WlP6TFdNUYt6V6FA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "X5t6e37KpYRpWDqr30vMLg", "review_id": "DiXdI0QMSl-gFubWu2BGCw", "stars": 2, "date": "2012-06-18", "text": "We were excited when we found that we could add George and Sons to our delivery list. The food is good, not great, but it was a great option on lazy nights. Tonight when the food was delivered it seemed like the price was a bit high. There wasn't an itemized receipt attached to the credit card slip so I said to the delivery guy this seems high. He gave no explanation so I tipped as usual. Well turns out that there is a $4 delivery charge so this guy made a pretty big tip for driving down the street. I have no problem with delivery charges because there are some crappy tippers out there; I just hate having extra charges slipped onto my bill with no explanation. This will probably be the last time we order.", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "hMTocjR3ek1Ati1pl2oKLQ", "stars": 3, "date": "2010-11-01", "text": "* 5 stars for uniqueness - This place has very interesting food and flavors that aren't common around here.\n\n* 5 stars for the staff - Everybody was very fast and friendly.\n\n* 5 stars for coolness of the location and the establishment - I mean it is pretty cool that this place is in a nicely redone 100-year-old house in a cool part of downtown Phoenix. Parking is a pain though.\n\nHowever.....\n\nBesides feeling hip, cool, urban and trendy; I also felt hungry and ripped off after leaving. Sure, I could sit there for hours sipping saki and trying every one of their tapas and probably be ok hunger-wise but I would NOT be ok with the $100+ tab per person that it would surely be. For me this is more of a fun/interesting place to go before you go out to dinner.", "type": "review", "business_id": "nMHhuYan8e3cONo3PornJA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "ABTzVscqSV5Y31aQUTNhVA", "stars": 3, "date": "2010-01-31", "text": "Meh, I'm not completely sold.\n\nIt's so much smaller than a traditional B&N and they did not have anything I was looking for. Nevermind any of the school related supplies I would have like to seen.\n\nI don't think I'll come back here, I'll make my way to Borders (yada yada as you will). I won't be going to the next nearest B&N (Tempe) because I don't have a car and the energy just isn't worth it.", "type": "review", "business_id": "N8Bdlykr8F5xSs5D3SUb3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "m8qzAQab1IY28lDRGMlO3w", "review_id": "Yg7NgER9aAVz0ILwdvo3ag", "stars": 4, "date": "2011-02-16", "text": "Consistency every time i return in quality of ingredients, service and taste of food! how nice that one of the owners recognizes you and comes over to greet you. the friendly staff behind the counter and nice girls who wait on you when you come to dine in add to the positivity. \nmy favorite dessert is the yogurt with fresh granola and fruit. i wish this place were open a bit longer. \ni've had most of the entrees, loving the duck salad with the sauce, the fresh greens taste like it's gone from field to plate in the same day.\ni'll happily give this quaint bistro 5 stars if they stay open longer hours. i feel like this is scottsdale's best kept secret.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LAxqXAosUrSR6S4mVDIwOw", "review_id": "cZsdytG99iYRESkoJzD-5A", "stars": 4, "date": "2012-05-14", "text": "If you're in the neighborhood, it's not full of skivers having a session. Service was friendly and ample. Food was good. Exactly the pub we needed to find. A chat with a local Barney, the jig my daughter ripped into was heart felt, live music, and a boxty that tastes like my dad made it.", "type": "review", "business_id": "yc5AH9H71xJidA_J2mChLA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "JkyvCg99SMdfS6OZv2P3RQ", "review_id": "1LbjCQtxBOgquGtSvRKuXg", "stars": 3, "date": "2010-01-26", "text": "On a recent visit to Arizona, my mother and I ventured into this store. Neither of us had stepped foot in it before, even though she lives a mile away. \n\nThe aisles are broken out by cuisine, and the selection was awesome. I was particularly surprised by the Holland, Dutch, Brazilian, and British aisle, in market classified as Asian. Very unexpected. I bet they would be more business if they boasted to be more international. \n\nI really liked this place, but the word needs to get out about Lee Lee's. If more people shop, they will restock their shelves more often, and most items won't be so close to their expiration date. \n\nFinal points:\n- check expiration dates before purchasing\n- Generally clean but the shelved items needed to be dusted and straightened, especially the aisle with dishes. They were all over the place and had to hunt for matching bowls. It's a market, not a dollar store\n- If you can get past the initial fish smell, you won't be disappointed.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x-0Q8z-BIwHyN-KDjZbiSg", "review_id": "JjsTlbPjZvfsdWAKfnmFWg", "stars": 5, "date": "2012-11-07", "text": "I ADORE this place. Matt's has been a staple breakfast, brunch, whatever place for me since I moved to Downtown 5 years ago. They just moved to a great place up the street (where Verde used to be for locals) with more room so now everything isn't so crammed! Not that we all didn't enjoy their original house, this one just says, \"I'm still awesome, I just stepped up a notch.\" Everything is delicious. I love their 5 Spot, the waffles are great, and their lunch specials are always amazing. If you like jelly - try their homemade stuff. Try the bacon.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "_v9HbclDhe1GVgk4aGefrQ", "stars": 4, "date": "2008-07-07", "text": "I really like this place. However it does suck time like no other place.\n\nSomehow evertime you are there for over 2 hrs?\n\nI usually try on 60 items to get 1 that fits well, and cry a half dozen times about being fat :(\n\nThen I cruise the little kids clothes because the mens clothes are to large for me and the womens are cut weird.\n\nOne of my boobs is like a 3rd the size of the other so its soo hard to find clothes that dont make me look like a cancer survivor.\n\nAnyway, good finds here. Try the clothes on even if it says the size is smaller than you wear. A lot of times it says one size but is really another.\nMy girlfriend bought 200.00 jeans for 20.00 a piece because it said they were a 24 when they were really a 27.\n\n\nP.S. anyone know where to find some dress vests?\n\nThe womens ones are too short and make me look like I have flowing love handles and the mens vests are to big in the shoulders and ribs.\n\nI think I should try maybe a kids vest? thoughts?", "type": "review", "business_id": "WowrRUKvjiLX4zT12xU_yw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "KzFKfC6q_s7i6mUt8Q43FA", "review_id": "87UfBZ4-lp-oUXvVn79JgQ", "stars": 4, "date": "2012-09-03", "text": "http://stevelerer.com\n\nI traveled to Phoenix only a few days away from the LA marathon in March and was determined to start carbo loading early. My first stop was Matt's Big Breakfast, a place I had patroned back in 2010. That time I ordered the item that Guy tried on triple D and it was really good. He ordered the chop and the chick which was a pork chop and two fried eggs. It was delicious, with a great pesto topping, I only wished I could have had more pesto but they may have given it to me if I had asked.\n\nThe restaurant is small usually with a 10 minute wait even for one person. I didn't mind and hung out with the locals for a little bit before I was able to sit at the bar. The decor and ambiance is not much different than most other small breakfast spots but it is clean and welcoming. The staff was nice and took my order quickly and it was only a short while before my order of the hog and the chick was in front of me. Placed at my spot of the counter was beautifully cooked think cut peppered bacon, crispy hashbrowns, and two perfectly cooked over medium eggs. Everything on the plate was cooked really well and was a perfect breakfast. The eggs were right under medium which is where I like them and the hashbrowns were crunchy and crispy on the outside while still creamy on the inside. Somewhat like a potato latke, just without all the onion. By far the star on the plate was the think cut bacon. Sometimes when a restaurant says that the bacon is think cut it really isn't and other times it is so thick that it comes out uncooked. Matt's got it just right and peppered right to the edge of too much. Just where I like it. I could have eaten platefuls of this stuff, if only they were in LA at the end of the marathon.\n\nThe last thing in my order was the real reason I returned to Matt's. Each breakfast arrives with a side of bread of which you have a few options. Bread aside, the start was the strawberry jam they served on the side. The jam is without a doubt the best thing in the restaurant. It is super sweet with chunks of fruit inside. It has so much flavor in such a simple concoction, I could eat a jar of it. Too bad they only give you about two ounces. I wonder if they bottle and sell it because I would buy.\n\nAll in all Matt's Big Breakfast is a really solid breakfast joint in downtown Phoenix. No wonder it always has a wait. The peppered bacon was delicious and the rest of the meal was nothing to scoff at but, in the end, I would come here every time I visit Phoenix just for the strawberry jam. Check out Matt's Big Breakfast the next time you are in town and let me know what you think.\n\nOverall Review: 7/10", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "fUmu2OulTy_TZ0gpmX0neg", "review_id": "fiAcFKmov8zTky7GQZ3o2Q", "stars": 5, "date": "2010-03-09", "text": "What can I say that hasn't already been said about the food, or the view? I know, I'll share the best part about my amazing birthday dinner at Elements -- meeting Executive Chef Beau Macmillian. \n\nHe didn't duck away when we made eye contact in the hallway, instead he broke away from his staff and came right up and introduced himself. He was so incredibly personable. He could have easily ignored us. I'm sure he's approached on a regular basis now that he's such a TV personality. But instead, he chatted us up and he talked about how he was so inspired by Asian food and how he wanted to bring that influence into his food and to Arizona. Before we knew it he was taking us in to see the latest renovations to Elements' kitchen! \n\nHe proudly showed off the latest upgrades. Sure, there were new gadgets, but he even included skylights because his sous chefs said they hated never seeing the light of day. How cool is that?\n\nAnd to be revealed next month is an expansion to the kitchen that includes a table for 12 INSIDE the kitchen. Not a new concept for restaurants, but something Chef Macmillian is so excited about. There's no doubt that the food that he cranks out can be intimidating, but his latest endeavor speaks to his desire of having his guests witness the artistry behind the kitchen doors. This new addition promises to give you a full sensory experience BEFORE the plate even reaches your table - from seeing, smelling and hearing what's happening in the kitchen to finally tasting the finished product. Talk about mouth watering. \n\nHere's hoping that I will one day get to sit at that table.", "type": "review", "business_id": "2OY8xs4aqOt8eTnYokdrww"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "o8J-ergbGYjrUy85I_rxzw", "review_id": "sLpEY8sxH9ZaU4IHbCfEJw", "stars": 2, "date": "2011-02-05", "text": "Went around lunch today and got a blended double chocolate mocha. The staff were really nice and the building is really cool, but my coffee was more of a milk shake than any sort of blended coffee - I even asked to make sure it was made with coffee. It had no coffee flavour at all and certainly wasn't \"double chocolate\". I loved all their different seating, the vintage cash register and even one of the coolest bathrooms I've ever been in, but if I'm going to pay nearly $5 for a 16oz drink, I want it to taste amazing. Was also disappointed that they didn't have any real selection in the bakery case - it was all sandwiches, breads, and a tarte (which looked good but was also overpriced). They apparently won some prizes for \"best cupcake\" or something and there were NO cupcakes in the case when I went in.", "type": "review", "business_id": "jCUOqEK8Lln0PK3GeUl6IQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bDVQPjGPM6yVLD2cntJkrQ", "review_id": "ZcJpy6wWjDdJdXZT1xfazg", "stars": 3, "date": "2009-11-04", "text": "Other than being a little overpriced on some of their items, it's really good food. \n\nI've tried the pesto linguine, fettucine with marinara, grilled cheese with tomato and arugula, linguine with alfredo sauce, caesar salad, their chocolate and vanilla cupcakes, and their chocolate chip scone. \n\nThe overall price for two adults (with medium drinks) is always about $20. \n\nI wouldn't go there all the time, but every now and then I get a craving for their bread they serve with all their pastas or one of their cupcakes.", "type": "review", "business_id": "RFMcLH3_58eAwvSfvLhJew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "Qe6RuaZrsF7Iy40hh0HOfg", "stars": 5, "date": "2010-05-11", "text": "I love the lakes! Yes it's a lake in the desert! Dragon Boat, Outrigger, and Marathons! It's the place to do it. Not sure about the fishing part, but I do see people fishing there. What are they trying to catch hmmm?? I enjoy running there on a nightly basis and so should you. South side is probably the most scenic, but not to say the North side is bad. If you're a fellow photographer I would definitely recommend this place during the evenings :)", "type": "review", "business_id": "qkX9CmImtW97GHmt9NXKog"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "-EyEj5BujVFisco6OwmR8A", "review_id": "gCT2dY7lXdiljmh_8jSqTA", "stars": 4, "date": "2012-11-16", "text": "I was really surprised by this place! Soooo much better than that other \"bertos\" place! I went thru the drive thru so I'm not sure about the inside but I ordered the taco and cheese enchilada combo with rice and beans. I also ordered a side of chips. The food was very good and the rice was REALLY good! The chips were hot!! Loved it! Yum! I will be back when I'm in the area again.", "type": "review", "business_id": "lCh6iBHtgrDvPc_ZUwNRRw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "ci9mK1xSTvNCO8H2LYiAjA", "review_id": "ZaGj97PSMZVs1dvvTPfOzw", "stars": 1, "date": "2012-03-20", "text": "I would give this place NO STARS but Yelp! wants me to give at least one. \n\nI went here with my boyfriend last night for dinner and next to our awful Bucca di Beppo (Scottsdale) experience, I have to say, this one is on my list of MOST TERRIBLE restaurant experiences. The service was so bad, we didn't even get to try the food! \n\nTrue Yelper that I am, I did my homework before suggesting that we come here for dinner. I saw all the reviews about the \"bad service\" , but I paid more attention to the \"Cheap\" and \"Delicious Pho\" reviews because after all, you can't knock it til you've tried it. Yes, the place looks as divey as any food dive gets, yes the place isn't as clean as it probably can be, but hey, all the best pho I've had (Da Vang, Khai Hoan, Pho Thanh) has been from some of the diviest pho spots in town. I was excited. \n\nIt was around 6pm and the place wasn't busy (there were 5 other customers besides us, and 3 of them were on their way out), so we went ahead and sat ourselves down. The server gave us menus, and made her way back behind the cash register. \n\nAfter looking over the menu for less than 2 minutes (I usually go for the spring rolls + everything pho whenever I visit a new spot), we were ready to order. I tried to make eye contact with our server but she seemed to be preoccupied with laughing and talking with the pre-teen sitting behind the counter with her. I finally made eye contact with her, she looked at me and I looked at her, and she turned back to her conversation. For the next 15 minutes I tried to get her attention to alert her that we were ready to order - no luck. But then I noticed that both her and the girl she was talking to were looking over at us and laughing, occasionally pointing in our direction and laughing some more. I wasn't about to give up because I was determined to try some of their well-reviewed food, but after a quarter of an hour spent trying to get their attention with them just laughing and pointing at us, my boyfriend and I had enough. The way they treated us was disrespectful and humiliating, so we walked out and drove across town to another Vietnamese restaurant. \n\nWe are never going back to this restaurant, and I suggest you don't either. Just as it isn't acceptable for customers to be rude to restaurant staff, it also isn't okay for restaurant staff to be blatantly rude to customers who have not done anything to deserve bad treatment. We did not deserve the type of treatment we got at this restaurant and I am seriously fuming with anger as I write this review. I don't care how delicious and cheap your food is, you cannot use that as an excuse to make customers who come in feel like somehow they are undeserving individuals. \n\nThanks, but no thanks, Pho House. I don't need to feel disrespected and belittled just so I can try your cheap Vietnamese food. I have plenty of Vietnamese friends who have moms who can probably cook better than you can and will treat us a million times better than your staff did last night.", "type": "review", "business_id": "H83uIqLKcOSFcmJhXmc-lA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "eRhqwWWYneA3Wr_WYbmVGw", "review_id": "O8xO5sbKbJ5onDgMBDpEaw", "stars": 4, "date": "2009-01-13", "text": "Considering this is the only gym I've ever been in, it's great! They have updated equipment and lots of them. I usually go during one of the busy times and can always get on a machine, or do the things I want to. Plus they have classes which are good. And every time me & my boyfriend walk in & out of the Y, a nice gal at the food counter greets us and says goodbye. We still never order anything, though...\n\nThey lose a star though because I HATE WORKING OUT! Sigh...", "type": "review", "business_id": "6eax0w8j0tudDOkvWgmQ7A"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "-QFUut5cViBP9mYFHghZMA", "review_id": "t0kYmtUZlhpeTqCvuf7nEg", "stars": 5, "date": "2009-11-27", "text": "Okay,talk about coincidences....\nThe other day I was compli-chatting with fellow yelper Jarvis about hard to find music.\nToday I run into a past acquaintence while out and about.\nHow do either of these tie into a review of Boom Boom La Rue's?\nOkay,follow along if you will.\nSo I run into this past acquaintence who's apparently had a bit of a rough week.She tells me about finding this store in the middle of a bad day and it immediately turned her frown upside down.\nShe's raving about it.Then she tells me she has a yelp account and has added a review.\nI tell her I too have some reviews on yelp.\nToday I'm in that neck of the woods and so I stop in.\nHoly hell!\nThis place is a drag queen's delight!\nIt's insanely glitterific and there are beaded dresses and sequined accessories everywhere.\nNot anything I can personally do anything with,but I did manage to pick up a few things as gifts for friends.\nAnd none of it broke the bank.\nWhat does this have to do with my convo with Jarvis?\nA day or so ago we were discussing hard to find music and I brought up Nina Hagen.\nThe sales girl in this store was a DEAD RINGER for Nina Hagen!!!!\nFlame red spikey hair and clothes right out of 1978 pure punk rock!\nThat took me back to the good old days for sure.\nShe knew the stock,was able to make excellent suggestions by asking specific questions and wasn't the least bit pushy.\nShe was able to attend to several customers at the same time and created a very social atmosphere for everyone there.\nFor someplace I didn't expect to feel comfortable in,it was a pleasant surprise.\nWhile there wasn't anything there I would feel the need to buy for myself,I could see going back again and again to get gifts for friends.\nA great experience.", "type": "review", "business_id": "LkVnmNpOPrThbsj_vKKz_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "S103dsmqYSMlDR2SxVm5cQ", "review_id": "mOYD-9CwGtB9MYG24IhtOw", "stars": 3, "date": "2012-09-27", "text": "Eyebrows are a very touchy subject. I'm literally convinced that unless you make some serious cash, finding an excellent and meticulous aesthetician is like finding a needle in a haystack. Well, Yelpers, I've been searching in this haystack for three months too long, and each time I leave thinking, \"They really don't listen to what I requested and I wasted money.\" So, I decided, no longer was I going to leave spending $20.00 (tip included) on mediocre brows. I went back to doing my own, and I am completely satisfied. Plus, the music selection is terrible. A positive, it's neat that they text you a 24 hour reminder notice. However, you better be sure you show up, because they do charge fees for tardies and no-shows.", "type": "review", "business_id": "iXT19WQLq_5ua6uFNuVKpQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bTdw7g0mdvfeCyaPa56pBg", "review_id": "ePnPMrYUs5qaW8zQXxFSbw", "stars": 5, "date": "2011-02-26", "text": "We took our grandson (Sebastian) to the park for a thoroughly enjoyable visit. Sebastian wasn't too sure about the carousel, but the train ride put a smile all over his face. The visit to the Presidential railroad car was fun and educational for the adults. Sebastian liked it too.", "type": "review", "business_id": "X3icXUyW9vS4UXY6V_MR4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J5nb9AT1LDiGN4_hY0Au8Q", "review_id": "zQJJYaeoJ9gI2RkdFLDa7Q", "stars": 3, "date": "2012-12-16", "text": "I've eaten at quite a few Yogis Grills since they started opening up in Arizona a handful of years ago. Their teriyaki chicken is pretty good and you get quite a bit for your dollar. \nHowever!!! Two things. 1. No matter which location I go to the service always seems sub-par. It seems everyone that works at Yogis Grill just seems uninterested and lacks the ability to be friendly. *shrug* Its not overly bothersome to me but it would be nice to have friendlier service. 2. Their sushi, is not that good and they are ridiculously over priced. I can go to Kona Grill which is a nice restaurant and get much better tasting sushi for nearly $2.00 cheaper! I just can't get past how expensive their rolls are AND it doesn't taste much better then grocery store sushi. \n\nI'll still go there for teriyaki but not for sushi, its just not worth it.", "type": "review", "business_id": "amQir2cEG2MV625L0dE8aQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "79LOudEmAcxSYVA1SF5Ayg", "review_id": "MVs1sYWF9SqRFuYthPNLbA", "stars": 3, "date": "2008-11-21", "text": "I have to admit, I love a good Philly Cheesesteak sandwiches...So when I heard about this place I had try it. We made the drive down there...park in the parking garage off of 5th st. Walked to the resturant and was pretty impressed. Place was really clean, guys behind the counter were as nice as philly people can be. Then I looked at the menu, saw what I wanted to order and ordered it. I ordered an full size cheesesteak with cheese wiz...i made it a combo. I was shocked that it came out to like $13 for a sandwich, drink and fries. When I finally got my food, I was impressed with the taste but don't know if it's worth the $13 I paid for it. If you don't want the combo, the full sandwich is still $9. So if you want a good sandwich, be prepared to friggin pay for it.", "type": "review", "business_id": "hebts_NucpamjCG2B9VY5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1mal-cvLhyX8iGEt56_5Dw", "review_id": "OCD-PBeJFiu-arylgYqWTg", "stars": 3, "date": "2009-01-16", "text": "Dined here last Friday night. I know this is considered one of the better Chinese restaurants, but I am struggling w/ a 2 vs 3 star rating.\n\nThe eggrolls, pot stickers were good. Pot stickers are actually quite stuffed.\n\nI got one of the chow mein dishes w/ the noodles done Hong Kong style, fried. The dish itself was fine, but the noodles were weird. Part of them looked like they had not been put in oil and fried adequately...they were dried and stiff. I pulled that bit out onto my extra plate. \n\nThe daugher liked her Kung Pao chicken. Hubbie's shrimp dish was good too, but the broccoli ringing the dish could have been cooked just a little bit longer...it was pretty much raw.\n\nTable was a little sticky. \n\nUltimately, I felt I could go to another chinese restaurant and have a similar meal, maybe Tao would be slightly better? Or Tao is slightly worse? I can't get past those noodles. Yuck.\n\nI think ultimately if I'm in the mood for Asian, I'm not gonna go the Chinese route. Go to asian for me right now is Anise.", "type": "review", "business_id": "hrOsdyai-9B91cGjBspHqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "a1DUUGOKHbjuoL_Z90AnuQ", "review_id": "Tk_mNsO5kyXTZl8RW2FD-A", "stars": 4, "date": "2008-09-29", "text": "3 1/2 Stars.\n\nGirl's choice last night.... and we (my sister, my niece Carol, and myself) ended up at the Famous Dave's in Chandler. These Famous Dave's look like every other one... typically bright Orange and Yellow! At night, you must have deficient eyesight if you can't find a Famous Dave's! In the evening, Famous Dave's is just a lighthouse beacon in the middle of a drab mall!\n\nOn the menu...\n\nBlue Margarita (** 1/2) made with Blue Curacao - It's disconcerting when the last time you saw your niece she was just drinking Cokes... now it's Blue Margaritas. Must be getting old. In summary... not very toxic. Could have drank this in one gulp and wouldn't have had an effect! Machine mixed and made. Looked cool, though, with an Aquamarine Blue color.\n\nAll American BBQ Feast (****) Gimmick is that all this stuff ( Full Slab of St Louis style SpareRibs (*****), Whole BBQ Chicken (*** 1/2), 1/2 lb of Texas Beef Brisket (*****), Famous Fries (*****), 2 Baked Potatoes with all the Fixin's (*****) replaced the Coleslaw and Wilbur Beans, 4 Corn on the Cob (***), 4 Muffin Style Corn Bread (****) ) is served on a bright, shiny, galvanized Garbage Can lid. Some of the items definitely lacking in BBQ flavor.\n\nHot Fudge Kahlua Brownie (**) Warm, Walnut covered Chocolate Brownie, soaked with Kahlua Liquer and topped with Vanilla Bean Ice Cream, Hot Fudge, and (loads and loads of) Whipped Cream. Ice Cream and Kahlua was no-where to be found!\n\nTotal tab: $82.08. Not bad for the amount of food.\n\nService (****) This is a total generalization... but what the heck! The wait-staff at Famous Dave's is totally opposite from the previous evening's robotic lifeless performance from the wait-staff at Olive Garden ( http://www.yelp.com/biz/olive-garden-italian-restaurant-chandler#hrid:l6HajH2UNtb1EZMTj19Ccg ). I really don't give a darn if it's just a performance... the attitude that the wait-staff presents will be passed onto the customers... whether bad or good.\n\nTypical of all Famous Dave's you sit at a booth or table covered with Red and White checkered table-cloths. At the front entrance is a display of all the BBQ awards that Famous Dave's BBQ items have won.... mostly in the MidWest. Check out the lead-pipe utilitarian interior design... Cool!\n\nVery colorful and festive atmosphere! Kids or adults with a kid's attitude will love Famous Dave's.", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "2fIOERxnhD2F0NVnjsSizg", "stars": 5, "date": "2010-01-29", "text": "So. After 8 years of owning a Ford, it left me stranded on the road one to many times. \n\nSo I bought a '06 Hyundai Elentra (from a different location). Ive never owned a foreign car, this car appealed to me because of the low miles and still had a warranty. \n\nWell....it started to act a little funny. So I called up Discover Hyundai, as they are miles from my work. I spoke to Tim in the service department and he was more then helpful. \n\nThey had to keep the car for 2 days, because they couldn't get it to do what I was telling them it was doing...but they were persistent and finally were able to duplicate my issue. \n\nEverything was under my warranty. I was back on the road by the end of day 2! \n\nI will for sure be going back here for all normal maintenance and if any other issues arise. Thanks Tim!", "type": "review", "business_id": "gtQ1D8Fjl47Tn4X-QxVEFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aGVgkhy_nhNY7_9xGdNbqw", "review_id": "1PNkuluvajTz8R2tu4wAbw", "stars": 5, "date": "2012-04-04", "text": "I honestly wish I could give this place 0 stars just to keep people out of here- that's how much of a gem my bf and I think this place is. The not only have a more spacious theater, a bar, food beyond the typical nachos and sour patch kids (crappy, but it's there and basically just a bonus in my opinion) but they have 3 flavors of popcorn...3! Holy bajesus- we go for the Carmel popcorn alone. I don't even think we have had the regular or the cheese ever, maybe once. We go out of our way to go there just for that. This place is never that busy which I don't understand. Oh, and another plus, it's not the Tween's hangout on Friday nights. I will admit, we buy the living social or grouping every time we go there ($15 for 2 tix and 1 popcorn), but they already have our business.\n\nYou idiots who review a place after going to a highly publicized premier like the Hunger Games that you bought with a Groupon are just that...IDIOTS. No one wants to listen to your nitpicking, go to a useless site like Yahoo Local that no one reads so you don't have to make society dumber for listening to your complaining.", "type": "review", "business_id": "U6oNWTxVTnuuCL0BPRZCSg"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "o9qVoftkxrFwC6W5PImouw", "review_id": "XQPxEPmjgBirRyl9ipf3NQ", "stars": 2, "date": "2009-11-22", "text": "Am I missing something here? I've actually been back to America's. Twice after my first visit, convinced that I had accidentally gone to the wrong America's or perhaps stumbled into a nearby taco shop on 7th. \n\nAlas, the helpful Yelp photo informs me that I have, in fact, now eaten three times at the Famous America's Taco Shop.\n\nI can't emphasize how incredibly average and underwhelming the fare here is. See, I'm a burrito man, myself. I don't claim to know Mexican food or it's various subgenres, but I did live in San Diego for three years and I've definitely had what I would call over-the-top, blow your socks out your a** good Mexican food. The same can be said for any number of burritos. \n\nAmerica's, I'm sorry to say it, but neither your tacos nor your burritos live up to the incredible hype that now surrounds you (although, the salsa was really, really good).\n\nI'm still on my quest for the Best Burrito in Maricopa County, I'll let you know when I find it fellow yelpers.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-2S6keboidRPly-h5lBfkA", "review_id": "RcDdftzr2gEFhr6KqR0_SA", "stars": 2, "date": "2011-04-16", "text": "Food was pretty good but my biggest issue was with the service. We made a reservation and still had to wait an hour. Isn't the whole point of a reservation...so you don't have to wait an hour? One of the three hostess, tried to help at the end of the wait but by then all we waited was to eat/drink. All in all, I enjoyed my chicken and bbq ribs but would not go back.", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WxO2x4xGbHfeWfU_MbuzTQ", "review_id": "2vpAE2ObHMtpzAB-KtUCaA", "stars": 3, "date": "2011-08-02", "text": "When checking in I was greeted by the General Manager. It was nice talking to you Michael; I hope to see you at the Westin La Paloma. The Sheraton is great for a night stay if you plan on going to the airport. I stayed with my family for one night and caught a shuttle to the airport at 3:30am (Complimentary). Ugh so early, but my driver was very friendly. The night auditor was very helpful and was able to give my family a late check-out till 1:30. SO AWESOME! I love late check outs, they make your day/morning better. No need to rush. The bathroom is a little small, vanity area is limited but fully stocked and you get a loofa.\nMy little sister and Mom enjoyed the pool as well. Nice small patio area to enjoy from your room too. If I ever have to fly out of Phoenix or into Phoenix and have to stay over my choice is definitely the Sheraton Phoenix Airport.", "type": "review", "business_id": "VgtEm_L23SNZEsyNMKwhog"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5uilckC718css5xjHT5UEA", "review_id": "oG02BxZ8V9wTiHataDUBiQ", "stars": 4, "date": "2012-06-11", "text": "Great prices and fresh food ...", "type": "review", "business_id": "vB3vEjcw9dfHmgP8ac5ZMQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "OwBbmL2afMJBw4MCJ9_vig", "review_id": "vOgUclX5GDEEvLV-lrvt7A", "stars": 5, "date": "2009-08-02", "text": "My dad and I decided to try Great Wall because he had heard many reviews about the place and everyone insisted that you had to come try the Dim Sum. Since I was in town visiting, it gave us the perfect excuse to go.\n\nI'm happy to report that the experience was most excellent at Great Wall and that it lived up to the hype. Upon getting there, we were given a number to wait as the restaurant was completely full, there were probably 150+ people there dining, however, we were seated within 15 minutes. As soon as we sat down, the carts started rolling by with various plates of items to try.\n\nThe pancake, shu mai, shrimp, duck, and sliced beef inside a wrapper are highly recommended, all were excellent. I did have a bit of trouble taking the shrimp out of the steam container because their rice wrappers were sticking a bit, but that does happen.\n\nI would advise that if you have an allergy to shrimp that you make sure to ask the server what is in some of the items because they do come with shrimp, including their egg rolls. Since my dad has a shrimp allergy we did have to watch for that. I did want to try their egg rolls but I would have been the only one eating them, and they were big enough to make a meal in itself.\n\nThe sliced duck was one of the best I have had at a restaurant, well cooked with crispy tasty skin, and not too many bones to get in the way, and very reasonably priced at $6.25 for a plate. Most other Dim Sum plates are $2.25 or $3.15 so you can end up eating a lot for a very reasonable price.\n\nIf you love Dim Sum and are willing to wait a few minutes for a table, but you will get fast service afterward, this really is the place you want to go to. There are still so many more dishes to try as well, but that will be for another trip.", "type": "review", "business_id": "0db71MbrvcJnyk71COCJBg"} +{"votes": {"funny": 3, "useful": 5, "cool": 4}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "gA14FyhYdWs5V-buCe3v5w", "stars": 5, "date": "2009-12-31", "text": "Carlsbad Tavern is my favorite Mexican restaurant. I love the dark and cozy atmosphere inside and I love that they have Hoegaarden on tap.. I've had the machaca burrito and fish tacos here and both dishes were amazing. They serve New Mexico cuisine here. The only difference I noticed is they are big on green chile and use black beans instead of refried beans. I have a lot of friends from New Mexico and they all love this restaurant. The food here is delicious and flavorful if you don't live in the neighborhood it's definitely worth the drive.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iq46mlqoLmNQzTR1z8oqUA", "review_id": "eAoV5Vuhh1GvDK8FbqNyHQ", "stars": 3, "date": "2012-07-25", "text": "Meh.", "type": "review", "business_id": "jj-K19oswZARMwCQK-b37A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ilf7UPi_14f-rDsbtlDZvw", "review_id": "qKEAm9llhetmhDx5lvJsvw", "stars": 5, "date": "2010-07-04", "text": "Very consistent food. Definitely a second best to P.F. Chang's.", "type": "review", "business_id": "pAu8UuWTLTLai61TW8-tZw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "CBCdt-bHZkV5nP1Z2-UOIg", "review_id": "-prdDFUpX381ieBfT0tL2g", "stars": 5, "date": "2012-05-20", "text": "My wife and i just dined at this restaurant. I am a chef and must say that Chef Chris's concept is one I have not experienced.The food was outstanding, service excellent and the decore was creative,down to the flower pot wine bucket and old wooden crate that it sat on. Our entrees were served on either a bed of sundried ploenta or baby spincach and blackrice. What really intrigued me was the slaw made of shredded green papaya that was part of the appetizer course. Being a chef I had to share a neat appetizer, that i recently found, using a baby corn shoot! Chef keep up the suberb Cafe Monarch Bravo.", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W50T5WVx04EcAaE8GD3RyQ", "review_id": "83qNp4qKPg66XGacak74JA", "stars": 5, "date": "2012-08-05", "text": "I am very particular about where I go for sushi. I can name ten places I will not go to, and have struggled to find a place to frequent; until now. I have only been here about 5 times, but every time was a great experience. Great food, staff, prices,and atmosphere.", "type": "review", "business_id": "PlcCjELzSI3SqX7mPF5cCw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "jgYtI5zHyIiztN1K-qwWMg", "review_id": "DtF-LmAQH59qBVG3FDOo5A", "stars": 5, "date": "2011-01-11", "text": "My trip was inspired by Adam Richmond's visit and while I couldn't do the 12 slider challenge, I knocked out 5 and was close to taking on a 6th.\n\nThe GM stopped by to check on us and the waitress was great! Be sure to grab some fresh baked deli treats before heading out.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yJ8A_iGJO1aqXr9HY2QhjA", "review_id": "LMtStwia-JprPS55yGAkfA", "stars": 3, "date": "2007-05-27", "text": "A nice place to watch a game... nice that it is open enough that you can keep an eye on the game while you survey your many dining alternatives.\n\nI also they let some natural sunlight and keep the place cool at the same time.\n\nAnyway I don't have a good reason to give this place one star, or five stars, hence three stars.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qQb4pg5uqvjMOfGPWbIkeQ", "review_id": "OzOK548AuHvx7lh_WhMBvA", "stars": 3, "date": "2011-06-24", "text": "This place isn't all that but there food is OK. There are better Chinese options for the price (try Chinese Cultural Center restaurants). The restaurant itself is well furnished and clean but I can't get over the fact that people rave about this place.", "type": "review", "business_id": "xcOncADGPr9eki8OU5Ln7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RgqU8dg9zaSSkwAlyB5Isw", "review_id": "_DweoJoD2o_ehRE0aI1Zqg", "stars": 3, "date": "2012-03-21", "text": "We were here for a weekend during Spring Training and over St. Patrick's Day. Good location, within walking distance to Scottsdale Rd and also Camelback. Comfy beds and also friendly front desk. Here's the only issue: we had a hadicapped room. This I am sure is ADA compliant and that's great, but having an open shower in the bathroom that has slippery tiles can create a safety issue with slips and falls considering there is one drain that isn't elevated. So we had to put down about 5 towels on the floor that were drenched with water when we showered. Next time I'd like to stay in a non-handicapped room....\n\nAlso on weekends, try to extend the breakfast hours past 9:30 please!", "type": "review", "business_id": "GH6IPda304wJRxSRg9Ko3g"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "nppk9y63SWo7B8SjOJSVYg", "stars": 5, "date": "2012-10-31", "text": "Wine, booze and cigars. And friendly staff. There's not much else that needs to be said. Oh and great prices.\n\nThe selection and prices they offer are great. The aisles are wide and clearly marked. The cigar room has a great selection as well and the prices are low.", "type": "review", "business_id": "kUvJiI7teJ--m5i1ReG58w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QfdqvcKtLBr15pMggtAjHg", "review_id": "ZjUli4D6mg-W63jPl0T94w", "stars": 4, "date": "2009-03-31", "text": "i cannot give this place 5 stars because i went there today at 3:30 and IT WAS CLOSED. what business closes at 3? REALLY? oh phoenix, you're killing me.\n\nBUT the food (creative, delicious sandwiches and desserts), speedy service, and reasonable prices really do deserve 5 stars. The chicken/asparagus/havarti sandwich almost killed my taste buds with its deliciousness. i went for carry-out at a peak time (about 12:30) and TOTAL, from joining the 6-person line to walking out the door, I probably spent about 15 minutes there. very fast service=very happy jenny.\n\ni didn't get dessert, but i will be back on a day when i'm feeling either very fit or very depressed. maybe tomorrow, due to my 3 PM CLOSE TIME funk. crimeny. \n:)", "type": "review", "business_id": "mQfT3JYu18HN22DVylcE7A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "vtIWOPkTv3-Csv789oURgQ", "review_id": "UWcz0Mga9BeuLUpCRl57Dg", "stars": 5, "date": "2010-11-27", "text": "Any time I have out of town visitors who want \"real\" Mexican, I take them here. The chips are fresh, the salsa is divine, and after downing two baskets, you realize you need to eat an entree! I've eaten a variety off the menu, and nothing has disappointed me. The burros are stuffed full, the crisps are mouthwatering and the enchiladas melt in your mouth.\nThe ONLY downside is the location. Just not a great part of town, though they are trying very hard to revitalize it. Go there anyway! Just try lunch time first.", "type": "review", "business_id": "HUR7B6X_f_V_50w4pfoyyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-o3uGadqen-bc1HjMx_8Bw", "review_id": "19IYHrFMlfsgxnqY-67eyw", "stars": 2, "date": "2012-02-02", "text": "Save your money and go to Kyoto Bowl. Our waiter gaves us our metal bowls and then coddled my family like we're children. They have all the waiters follow us to get in line for the self-service buffet. They stand there like if you get out of line, you're bad. Weird...During this time, the waiter goes on and on about their food and what they have. Then when you get to the buffet, the choices are very limited and the food is so full of fluff you don't get to put much food in. Some of it is meant to be like sushi, uncooked, but since you put it in a bowl, it gets cooked with everything else. Oh yeah, and the place is loud. You'll have to sit elbow to elbow to hear your family. The novelty about this place is that you can watch the cooks cook your dismal amount on an open fire oven. That's the coolest thing about this place. They serve it in these trendy lopsided bowls. At this point, the food has really shrunk. The food is tasteless. Anyways, they give you the bill and even though somebody else paid for my bill, I was shocked by the price ~ $10 a bowl. If I had $10, I'd rather go to Taco Bell.", "type": "review", "business_id": "fHX1t2iDrhBAiq5wkc4tRQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FAxy_JuEOhhZl3C10LMY1A", "review_id": "qVeVAEkmnCa_LTkJuj7sxg", "stars": 4, "date": "2011-09-21", "text": "There are few places that are delicious hole in the wall chains. In fact there really are no hole in the wall chains except Two Hippies and they do it right. Upon entering two hippies you will see all kinds of crazy decor like a twister mat on the ceiling, chairs... on the ceiling, etc. Your food options consist of Burgers, Hot Dogs and Tacos, where as your beverage choices consist of regular stuff like various sodas to flavored tea and lemonade. The flavored tea and lemonade is AMAZING, the flavor in the flavored teas is so good you don't even need to add sweetener, that's impressive. The food is equally as delicious, I had 2 tacos one was fish (not fried, baked tilapia -so good and healthier) and green beef, they have a red beef and green both are cooked with different peppers and marinades, The green beef was amazing I'm def. looking forward to trying the red beef as well as the \"cactus\" taco which is just insane sounding. Two thumbs up, bring cash though because that's all they take :)", "type": "review", "business_id": "Xr2Qe7Se0WyH68nOxSn5aw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "tjopNJVCRg6xlKXn9YapbQ", "stars": 1, "date": "2010-08-08", "text": "Okay, did I say bad??\nWORSE.\nNegative five stars.\n\nFrom San Diego,\n1. they made us wait in line for ticketing.\n2. Made us go check our bags\n\n3. Bag agent told us the flight has been delayed 35 min and we have to wait in the \"special needs\" line bc we were gonna miss our connection flight. \n\n4. Booked another flight. Meanwhile got barked at my a brainless, incompetent, mean lady that was a complete b*tch to us.\nShe told us there was plenty of time for our next flight and that we should patiently stand in line (and miss that flight).\n\n5. Got on the runway. Plane circled around for about an hour. didn't take off.\n6. \"mechanical problems\".\n7. kept ppl on the plane for another hour.\n8. kicked everybody off saying we weren't taking off on this plane.\n\n9. made everybody wait in a long@$$ line that didn't move while we saw a ticketing agent to rebook our flight (while I held up a DELTA SUCKS sign made with pen and crayon on my sketchbook)\n\n10. hours later after not knowing what to do with us, they placed us in a hotel in downtown SD.\n11. We were to take an 8 PM flight the next day to LAX and then 2 hr and 45 min layover.\n12. 11:45 PM plane from LAX to Tokyo.... scheduled 4 AM landing in the far east, you kidding me? \n13. THEY LOST MY LUGGAGE. \n\n~~*~*~*~*~*~*~* another incident:\n\nLAX to Tokyo: \"mechanical problems\"\nstayed another hour on the plane.\nHad them shuttle us to a hotel in the middle of nowhere.\nLost luggage on the way there. It fell out of a bus!\n\nNext morning, 8 AM plane to Busan, Korea.\n\nSeriously, you expect me to go to work on Monday after all this sh*t?!\nSorry Delta, I'm so exhausted, sick and tired of you.\nF*CK YOU guys and your incompetence and sh*tty customer service too.", "type": "review", "business_id": "60SySAM54mgQiuDUMdD-Xg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "yhIPCe1_YnokKDCzyPIVgA", "review_id": "DAr6DTz1A0yjBNWA0w-DUQ", "stars": 5, "date": "2009-01-26", "text": "I grew up in Arizona and we went to Wongs every Sunday after church. Three years ago we got stationed in Hawaii. Everytime I come home, our first stop is Wongs. I love everything about it. Wongs is my comfort food.", "type": "review", "business_id": "sCv1wUWJhFmQEMw3A4lwXQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 3}, "user_id": "sfKMl7ERKuwxIh3HLXUg-Q", "review_id": "h_y-oqC4xEECVeB09nQ8ZQ", "stars": 1, "date": "2008-08-27", "text": "An upscale mexican restaurant in the area seemed like the best thing to have happened to me. I planned my visit for a quieter evening, and reviewed the menu again and again. \n\nHowever, upon our arrival I thought twice immediately. The parking was iffy, and the place didn't seem to stand up to the signage. Perhaps the art was not to my liking, honestly not a piece stands out in my memory. \n\n\nWe were seated immediately. \n\nOur waiter seemed a little off, not to mention the fact that he was insanely snobby and seemed to be moonlighting in the kitchen, where he disappeared for 10-15 minutes at a time. He did not fill our soft drinks once without being first flagged down (those of you who have experienced the close quarters will understand how ridiculous this is). \n\nHalfway through waiting for our food (which took 45 minutes, easily), the lamp above our table went out. We sat in the dark for a good 5 minutes before they even noticed. Which was actually a nice change of scenery from the boring beige walls. \n\nWhen the food finally arrived, we were too tired (due to having finished an entire bottle of wine) so we left. Unfortunately, we took our grub with us.\nI had some sort of mixed seafood entree with chorizo and a creamy sauce. It's no coincidence you're taken aback by the combination... it didn't go down too easily. Having dropped 90 dollars on the meal, though, we felt compelled to finish as much as we could stand. \n\nNormally I would make sure I got the name of the dish right, but since I am recommending that you not go there, why bother?", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "srNoX3QBtg4Rxa746JoWTA", "review_id": "5-WNi6j3KINGVL4YFH-PdQ", "stars": 5, "date": "2012-05-09", "text": "This is the ONLY place my wife and I will buy furniture from, absolutely fantastic!\n\nMy wife and I spent a better part of a month looking for a TV stand for our living room. Everything we came across was cheap and prefabricated. We stumbled on Sweet Potatoes while on our way home from another local store. The owner was extremely friendly and helpful. We found a couple things we liked but not the size we needed. The owner told us the pieces we were looking at are locally made and offered to call and see if they could custom make one. Not only did they agree but the price we were given was 200 dollars less than anything else we were looking at. We have since received the piece and could not be happier!", "type": "review", "business_id": "K2-uKeetXsz4IKqXodMLfg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "a58D196J4BxujUnO2-7_bA", "review_id": "D4M8NVsb9TiNS9ClpfJUbQ", "stars": 5, "date": "2012-02-08", "text": "My brother from San Francisco was in town and missing the sushi from the bay area. I decided I'd let him choose where we'd go out even though I'd never ever heard of this place before. It was definitely in a not-so-glamorous area, tucked on the side of a dinky shopping center (sorry shopping center). When we walked in I was pleasantly surprised by the quaint atmosphere and set-up. It's definitely small but everyone working there and eating there seemed to be genuinely having a great time. \n\nWe sat at the bar/long table in front of the sushi chefs which was a fun experience. We started off with sake, and it was pretty darn smooth. We ordered a variety of different dishes including sea urchin eggs, yellowtail shashimi and the king crab roll. They were even accomodating to make my brother dishes that weren't on the menu. The chefs are so nice and fun and the prices are pretty good!\n\nMy brother was extremely impressed coming from a top sushi city. I look forward to coming back and trying more of their extensive menu, especially for happy hour.", "type": "review", "business_id": "Tt6DYs0TyERWHWW5xiRL_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "QGzRZoWOM1PN6oIYFDnfgA", "review_id": "KktC3mdBbE8HtZXIEZ2FBQ", "stars": 5, "date": "2010-01-13", "text": "I love Taste Of China. I eat here at least once a week. Their menu is pretty big and the prices are small. Also, they are incredibly fast. If order for pick-up, it's ready in 5 minutes. Should I order delivery, it only takes 10-15 for the food to get to my house. My favorite plates are the crab puffs and the General Tso's chicken.", "type": "review", "business_id": "v6lMcqsBUT02TdO9ntvDpg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fL35GHzclQauHyVr0sjREQ", "review_id": "dTeEHfg60Uq3pY6-DM4DOw", "stars": 4, "date": "2011-06-30", "text": "Loving this neighborhood froyo joint. The topping selections are interesting and slightly different thatn some other places. They have these yummy little chocolate rocks...kinda like candy coated chocolate shaped like rocks. They were fun and tasty. A nice assortment of topping sauces too...peanut butter, mallow, strawberry. This place gets jam packed but they do have a good amount of seating both inside and out.", "type": "review", "business_id": "TeKAYmn3M_7_BYljXXZG2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yPPFHBcY1XQwpZbkSA8A7w", "review_id": "7mAyMeYAtTYEVS7gzF7I8w", "stars": 5, "date": "2008-06-22", "text": "Have been there several times. I'm quite fussy about where I eat and quick to condemn, so my continued custom says it all.", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "xzl_CFa1H2MUHPdgTmfFVg", "stars": 1, "date": "2011-08-16", "text": "You'll feel like you stepped in a time machine and landed in 1987. The decor hasn't been updated in at least 20 years. Looks like it's falling apart. The TVs are mostly 80s style TVs as well, although there are a couple flat screens as well. This is where the trash hangs out, of all colors. The pizza was greasy (which I like) but also chewy (which was gross). The wings were drowned so much in sauce you couldn't find them. Might as well get a glass of honey bbq sauce and drink it straight. Service was interesting. The guy that worked there was wearing capri pants and had a higher voice than my girlfriend. The price wasn't bad- I think it was like $22 for a large pizza, wings and 2 sodas. I'd rather pay a little bit more and just go to Upper Crust pIzza down the street.", "type": "review", "business_id": "qrIObcWKK3jeC3zfmR54kg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "2QkokcNKpgUG-Suif3JKJg", "review_id": "dgK1nxfTdrJpAnM2wJqkzg", "stars": 5, "date": "2011-09-25", "text": "First, I'm sorry this review is lengthy, but i really want people to understand how far a little kindness can go. \n\nI entered Mimi's Cafe at the end of possibly worst day ever. I came in looking to order food for takeout and get home to drown my sorrows in comfort food. i was directed by the hostess up front to go stand by the bakery and i would be able to order take out. i waited not 15 seconds and was greeted with a huge smile from a lovely girl named Danielle. She gave me a menu and told me to ask if i had questions and inquired if i had been there before. i looked at the menu for some time, unable to clear my mind enough to decide. She told me i was welcome to take a seat, and when i apologized for taking so long she responded with a smiley \"where's the fire? take your time, can i get you a glass of wine while you decide?\" wine was a perfect idea! I finally ordered and sat drinking my wine. i waited, and then waited a little longer, Danielle the young girl doing take out informed me the kitchen was working as fast as they could but are very busy, she apologized for the wait and offered complimentary bread and convinced me to buy a a second glass of wine. When she brought me the second glass i had just gotten off the phone and was visibly shaken with more bad news. Somehow this young girl had the courage to ask if everything was alright and what she could do to help. It was just the olive branch i needed. Just the inquiry was enough to make me feel better. i told her i was fine and thanked her for her compassion. finally my food was ready. She boxed everything with care for the drive home. All this time smiling. i couldn't help but notice Danielle interact with the other employees they always laughed or high fived her with each exchange. She had brightened my day, and it was clear she is a light for others in Mimi's Cafe. This is the kicker...my bill was $30 and some change...i gave her what i thought was two $20 dollar bills, but in reality was a $50 and a $20. The young girl ran outside and stopped me saying sir, I'm not sure these bills are right. i was overwhelmed by her honesty and told her no, i thought they were two 20's but the difference would be her reward for honesty. The food was tasty and just what i needed. Mimi's Cafe is a friendly place worth the wait for food or a table, and if Mimi's Cafe reads these reviews know that you have a superstar in Danielle.", "type": "review", "business_id": "EAMPV2fgs9cU21MXOgv3Ig"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "a91mmq66xnFouKJ1KnuFQw", "review_id": "wMbqc5LsxpwxzSk8FOyjPw", "stars": 4, "date": "2010-05-12", "text": "I am just providing a review for the Mother and Infant Care Department only, since my wife has just had our second baby delivered here.\n\nWe really enjoy our stay at this hospital. The facility is very clean and nice. Room are good size with shower box inside bathroom, so you can take shower during your stay and care for the mom. During the stay, Mom and the caregiver are entitle to have breakfast, lunch, and dinner for free. All you have to do is call and place your orders. The foods are quite quality and the portions are decent. I am really impressed with this.\n\nThe nurses are all knowledgeable, caring, and nice. They are always there when you call them and need them. Since this is our second child, it works out perfectly that the nurses only come by when we call them or when they do their routine checks. So, the rest of the time you are left alone to rest. The hospital where my first child was born was different. They let lots of interns and students come to our rooms all the times for training, so we were constantly bothered. \n\nHowever in my opinion, if it is your first child, you may find that having people around all the time could help you not to worry too much (since we all know nothing when the first child come).\n\nThe reason I didn't give this hospital 5 star is just because our discharge was taking so long. We thought we would be out by 11 AM, but we didn't get out until 3 PM... They said that because it was on Sunday. I think it make sense.\n\nOverall, I do recommend this hospital for any new mother.", "type": "review", "business_id": "b9oQ3GnRPyBST8J0OMGuoA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "JOLih1cf5UfTWWoKZHxW5Q", "stars": 3, "date": "2012-06-05", "text": "Threw a friend's baby shower here and it went pretty smoothly. We made reservations well in advance, and it was a small party. I'm not a huge fan of their food but it's always busy so clearly other people don't have my same opinion. The three stars is for the service, they were super attentive and everything was taken care of for our party. I just don't think the cheesecake is that great, I'm sorry! But the apps aren't too bad.", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "3ijmwHWMCJ9hx4Du8U4rZQ", "review_id": "nsJzvE3TpLZHEGth5hXuGw", "stars": 5, "date": "2011-04-08", "text": "This is quite literally the best burger I have ever eaten. The rocket bacon cheeseburger with 3 patties of meat on a 10 in. sesame sub roll and is nothing short of amazing. It could easily be shared. The cheese fries and onion rings are homemade. We love the casual environment and the huge selection of glass bottled soda. To top it off the prices are amazing! This is our first time here but we are hooked. We would love to see this place on Diners, Drive-In's and Dives, DDDinfo@mac.com, so if you love it here, nominate it!", "type": "review", "business_id": "F8q_9PUl-Lwjj9xIRPArcg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "uUoOpU5nXAY2m1qjTynhNQ", "review_id": "0OMgIKXCDZPYpiIl03jLPg", "stars": 5, "date": "2012-03-08", "text": "A real gem!", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zYgSDyEHVcMLRL1LLms7IA", "review_id": "vXqzWtUvMz4wEphS79tjxQ", "stars": 4, "date": "2011-05-05", "text": "Just had an early dinner with the kids tonight (kids eat free from 3-6pm btw). I had the prime rib and my wife had the fish special, kids had the mac and cheese. All were great meals. The reason to go here is to sit on the patio, it's fantastic! Not impressed that at 5:30pm I had to valet, when I'm with the family, I'd just rather park and walk (needed to walk off the prime rib and wine anyways!). This place is not cheap, and with $18 glasses of wine, there is no happy hour at the restaurant!", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RMX11FC48KZTYIeExtGUCw", "review_id": "nRxF1UJnmcbCfGe1CY1-Iw", "stars": 2, "date": "2007-11-26", "text": "While I give the management props for honoring our gift certificate, even though our total rang up below the minimum price, the food was teh ick. \n\nI got the fish tacos. I understand the urge to make them unique, and different from the thousands of varieties of fish tacos available in the Valley. But this attempt was a huge miss. \n\nThe tilapia tasted pretty muddy, even for tilapia. It was served with a really sweet, sticky, almost BBQ-style sauce. I was alternately pleased that it was so cloying that it almost covered the icky river flavor of the tilapia, and perplexed at this odd pairing. The avocados also had a funny, chemical flavor to them. Double-yuck.", "type": "review", "business_id": "RDX_MLThtKVPb22TvJh9rQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "lnP7h3slD1eM84GWuPys6w", "review_id": "4qadlMctvNyvfWAf1_tKmg", "stars": 4, "date": "2012-06-20", "text": "There's a special little place in my heart designated specifically for JoBot, so I'm thrilled to be the 100th person to get to sing the praises of this adorable little coffee shop/creperie/hole-in-the-wall bundle of amazing-ness.\n\nI came across JoBot by accident about a year ago while looking for a late night wi-fi spot to do some studying. It fit the bill perfectly, minus the fact that it was extremely difficult to concentrate with the loud music coming from the Lost Leaf, the interesting conversations that I couldn't help from overhearing, and the endless amount of scrumptious plates that kept parading past me. \n\nThat said, I've made several \"study\" trips to JoBot since. While I may not be as productive as I would be at some of those quieter little coffee shops where everyone has their nose in a book or a laptop, I find that I always walk away a very happy camper, every time. \n\nTheir crepes/tacos are delicious. All of them. Sometimes I feel as though the crepes are slightly undercooked, but once I dig inside to discover the tantalizing flavors that lie within, I tend to forget all about that. The root beer pork remains one of my faves followed by a strawberry/banana concoction for dessert. Yum, yum, yum.\n\nGo here if you want good coffee (the bumble bee is tasty), good eats, good conversation, good atmosphere, good prices, good entertainment, and free wi-fi at any and all hours (they don't seem to close on weekends). And if you're really feeling frisky head down a house or two for some NachoBot. Gosh I love this place.", "type": "review", "business_id": "5ambRqdTJt9vGwFzVI9HBw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "EfvXF2GNrGSEIZ4ODD29Vw", "review_id": "e-ZZ_oc1oSO9ELKkr7M5gQ", "stars": 4, "date": "2010-11-24", "text": "Amazing food! Great waiting staff, and the drink I ordered was very good and had the right amount of liquor. I will be coming back to this place for sure!", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1np8m00IO1XCsW5N8Z_72A", "review_id": "S_zstbgStZ6yU6qhn_GWzA", "stars": 4, "date": "2012-09-14", "text": "The workers here are helpful and nice. Especially the chubby Mexican man! He was awesome and popped up in the veggie aisle and then bagged our groceries too. Somehow we also got a 10% discount on our groceries (we didn't have a discount card or anything since we are out of towners). Even though this place smells like most Chinese supermarkets, I would definitely come back if I needed something.", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xYV1qRKVbWFXtRsCmxhpKQ", "review_id": "AYd30ISCn2gvrQBQd0U9Cw", "stars": 1, "date": "2012-01-18", "text": "Unprofessional, disorganized, and extremely low end care.", "type": "review", "business_id": "yn2gSwa1AnL2EQnVNSP5lg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "gg6KTSmKgevUB-IpGRub_Q", "review_id": "ePsDMjw328q0KR2S6MtumQ", "stars": 1, "date": "2011-05-18", "text": "Should be called The Bad Egg. Bottom line, the hotel's free breakfast tasted better than this and we got better service there. \n\nWe arrived around 945am on a Sunday morning and had to wait around seven minutes to be seated. The staff was pleasant enough. We were seated, given menus with water and she took our order for coffee and the breakfast special (loaded potato skillet). We sat for 15 minutes before we saw our waitress again. She finally figured out she forgot to bring our coffee. We finally got some coffee which was mediocre in flavor. Our food arrived about ten minutes after that. The skillet was supposed to contain sausage, bacon, onion, scrambled eggs, grilled american potatoes covered with cheese and sour cream. Mine had no bacon, two tiny chunks of sausage, no cheese, and the potatoes were so soggy, they tasted like someone had thawed them and thrown them in as an afterthought. It was so unpalatable i could not eat more than one bite, even after loading it up with salt and hot sauce. The waitress never checked on us once during the meal. She came back by the time my husband was finished. I told her the meal was horrible (in a nice way). She offered me something else. By that point, I was not feeling like eating anything else, I felt kinda sick. My meal was comped and we did get an apology. The manager explained that everyone LOVES that special and the potatoes are seasoned and grilled. The cook obviously didn't try my potatoes. Blech. Even with the comp, the total was over $15 for one special and two coffees. Very hight priced for nasty food, poor service, and loud/uninspiring atmosphere.", "type": "review", "business_id": "nP9zQBRNSxlnU8BsbqYI5A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "bkv0EMVYiwWf6ULKbEdqRw", "review_id": "gKaBiixy1EcsGnnz3YO7BQ", "stars": 5, "date": "2011-07-10", "text": "We went on a Friday night and even though it is off season here, the place was packed. Never the less, the service was impeccable as always. This is our third trip here and we have never been disappointed. I had the 14 Oz. NY strip and my wife had the prime rib. Both were cooked to perfection and seasoned ever so wonderfully! My wife tells me the horseradish is the real deal and not the runny stuff you get elsewhere...can't vouch as I hate the stuff. From the bread to the desert, every bite was worth taking. The old time ambiance with the dark wood and red \"leather\"? booths are welcoming. It's pricey and if you can ignore the geek with khakis, no socks and deck shoes ever so gently cradling his wine...(you KNOW the guy and he is everywhere) in the middle of a Phoenix summer, it is worth every single cent.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pUhzaeZmNU6KvcdvyDy2dw", "review_id": "6gqUah1RAyCjW98ThwqvRw", "stars": 2, "date": "2011-11-22", "text": "The service was great, but like all the other Fox concepts you pay too much for mediocrity. The short rib stew was good. The ribs were cold and the chicken pasta was bland. There are just so many better options in the area... What a disappointment. But I should have known better.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 5, "useful": 6, "cool": 1}, "user_id": "4dnDsoHuxUtzhaumxbpR5w", "review_id": "tiaIKw2BMHnbSwhlI9jLmQ", "stars": 1, "date": "2010-08-22", "text": "So, not following my own advice (ahem, NEVER RETURN), I returned here for a friend's birthday dinner a few months ago (I super love this person so how could I say no?). HA! Big mistake. Also, fair warning: there are several-a-CAPS-LOCK ahead.\n\nThe only pleasant thing about the evening was the reservation and seating were right on time for our large group (15 people). And of course because we were celebrating a super special person.\n\nI'll keep this update short and sweet:\n\n$3 for a CAN OF SODA? Get real. I knew it'd be overpriced but I was at least expecting a mini bottle or something. But a can? COME ON. You bought that in bulk and paid .03342 cents for it. FAIL.\n\nYour servers: IDIOTS. First it takes our server 15 minutes to come around the first time and take drink orders. Then she's back another 15 minutes after that taking the orders again. Did you forget? Were you not paying attention the first time we around? Why did it take 30 minutes just to order drinks? And on top of that we wait another 15 to receive them. FORTY-FIVE MINUTES TO RECEIVE DRINKS IS BAD. Very, very bad. \n\nAlso, not taking food orders until after we've been seated for ONE HOUR is BAD. VERY, VERY BAD. Seated at 8 o'clock, we didn't receive our food until almost TEN O'CLOCK. TWO HOURS FOR FOOD IS VERY, VERY BAD. Do you hear that, St. Francis? BAD.\n\nBecause I loathed the place even before this lovely birthday dinner, and because the thought of supporting such an establishment makes my blood boil, I ordered only dessert and the hubs ordered an appetizer (and add on a $3 can soda). Funny, that our bill was still nearly $30 for the both of us. Excluding tip. BAD.\n\nAlso, server: If you say you're not going to split a check, stick to your word or don't even try. Now, I'M glad you didn't stick to your stingy \"I don't split checks\", because I could foresee the mess of trying to split a $700 bill with 13 people I didn't know so well. Lucky for us, when we told you we were leaving early and asked for our check, you split it for us. A couple others caught on and did the same, but the remaining 7-8 people were not so lucky. \n\nBecause I realize my short and sweet is not so short anymore (or sweet, for that matter), I'm ending it here. NOTE TO SELF: heed own advice and stay away from St. Francis!", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kG8jkVFgOAOq6Ht6RvAjEQ", "review_id": "GcVfGuJ1zZQlPTmj-5gyOQ", "stars": 4, "date": "2012-10-07", "text": "Reasonable prices, good service, over-priced snacks (like every other theater) and comfy seats! I do enjoy this AMC very much though when I have to come here versus the Harkins on Northern.\n\nThe one MAJOR drawback and this is a BIG WARNING is that if you go on the day of a Cardinals home game, EVERYONE and I do mean EVERYONE has to pay $10 to park in the parking lots at Westgate. The parking attendants will give you a ticket to take inside and AMC has a person there to give you back the $10 but the fact that you have to pay it to begin with sucks. What if I didn't have cash on me? This by no means is AMC's fault. I suspect it's the City of Glendale's or the Cardinal's convoluted way to soak people but at least you do get the money back if you are paying attention.", "type": "review", "business_id": "K13dEvg4uimGQ1OcE5vGZA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "3dgVexCoDRym3uXunL2FiA", "review_id": "nlB090D4ZRD8fkyNoDHlYQ", "stars": 4, "date": "2009-12-11", "text": "On my second week receiving a small mixed box for Nature's Garden and LOVE it! It is more than enough for my fiance and I. It is the easiest way to get fresh, organic, and local produce, especially since it is delivered right to my door. It helps learn what is in season and how to make great new recipes!", "type": "review", "business_id": "Z_KjmNp3sMwodUBTSgFZGw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "yy9fTfze8azIJsvWKvHefQ", "review_id": "CQ-RmoxbBxJlYHAzvHEdag", "stars": 5, "date": "2010-11-30", "text": "SOOOOOOOOO MUCH FUN! The 3 of us went to Superstition Farm for their tour last Saturday. No, we didn't have any kids with us but we may have had a better time than most of the kids.\n\nThe beginning is a bit dry. You're in the \"classroom\" for a while learning about random facts related to diary cows. Moo. After that, it's a hay ride. Girls, let me give you one tip - Make sure you wear long pants or shorts that are long. Hay is very uncomfortable under your butt if there isn't enough padding. Anyway, the hay ride was entertaining but the best part had yet to come.\n\nOnce the hayride was over, the \"tour\" was officially over. But everyone stuck around to check out the petting zoo. The animals were all so friendly and we got to feed them as well. There was a hodgepodge of creatures from a young cow to sheep to rabbits and even a turkey. Yum...just kidding.\n\nIn addition, there's a black lab on the premise that was amazing. This dog would make an incredible soccer player. His reaction time is unbelievable - any team would be happy to have him as a goalie.\n\nAfter the animal bonding, we went to try flavored milk. Mine was butterscotch flavored and it was just ok. I was disappointed that the milk wasn't fresh from the farm but I guess it's not legal to serve unprocessed milk. Since we had a Groupon, we also had a chance to try Udder Delights ice cream. At $2.50 each, I would never pay for them individually. But seeing that it was included in my \"deal,\" we enjoyed them a lot.\n\nDon't be embarrassed if you don't have kids. Trust me, adults can enjoy Superstition Farm too.", "type": "review", "business_id": "hwafU4w-IYkIRZa_9LTupg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hi-L1qQ1P484O59kY0tXUA", "review_id": "89QxnDv0C_cYg1LHAlagSA", "stars": 4, "date": "2010-07-24", "text": "delicious! def got the sandwich Adam on Man vs Food got! i think it's called Del Reys! it was sooooooooo good and the sandwich was huge, the price was great! however, there was a long wait, so I'd say be patient for their services!!", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "83jzZLFAfrCUwZghWgcz4g", "review_id": "OM316QwpfG0JE8eK7ypCPA", "stars": 5, "date": "2010-09-12", "text": "I love going to this store whether its for just for the latest copy of guitar world, some strings, or a new guitar, the guy johnny is my main man lol he always gives me good deals and generally makes me and any one else i take there feel like we are the only customers, (in a good way!) every one remembers you and asks you how your day is going great \"mom and pop\" feel.", "type": "review", "business_id": "LCnxDGs7sx3IhxcW2wisZw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "xdl61MWMguYRSunH8CniQw", "review_id": "9fD7HuYRbw52Ps48PPE1Zw", "stars": 4, "date": "2010-07-24", "text": "Delicious. With me, i'm all about frosting. And Sprinkles delivers! Big, thick layer of frosting on every cupcake. I recently had the Mocha, dark choc cupcake with mocha frosting. Wow... It was so rich i had to take a break of about 5 min before i could finish it. I'm a big fan of the vanilla and banana. You just can't go wrong with cream cheese frosting, right? OH! And the best thing of all... You can get a \"shot\" of frosting! Yep... A 1oz dixie cup piled high with a flavor of your choice for 75cents. I usually eat my frosting shot in the store while waiting for my cupcake order. ;-) It's pricey, but its not an everyday thing... Its a treat and a good one!", "type": "review", "business_id": "AqbgC7Gul5Es1rRzGNLDFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4xaFdZzy5lIR_dTlC5muBA", "review_id": "89Dl0H39asZxC7RZRp8oYg", "stars": 5, "date": "2009-11-28", "text": "95 reviews? Guess there's nothing I can say about this gem that hasn't been said. We ordered the cheese pizza which is a really inexpensive but delicious tasting Margarita pizza sooo good. \n\nWe also had the vodka penne with tender big pieces of rendered bacon, tomatoes and fresh basil. The vodka sauce was creamy and seasoned very well. They included a ton of grilled french bread and cutlery because they knew I was staying at a hotel. They were really sweet and very fast at getting all that food ready for us. \n\nIt says on their website and on the yelp search engine that Pizza A Metro delivers but they don't. Not a big deal though the food is totally worth going to get yourself.", "type": "review", "business_id": "XkNQVTkCEzBrq7OlRHI11Q"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "fPHLPrymsyb6WSFFKoMrTQ", "review_id": "u9aMNOK1_eVF8PL_CpVSrg", "stars": 5, "date": "2011-07-28", "text": "Love love love this place. Tasty with great prices... who can beat that? My newest thing is to order a gyro-to-go and enjoy it at home. I'm a mom now so eating at a restaurant is a lot harder than it used to be. haha\n\nSee ya there!", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "xz92YNlTic68plJd721tmg", "review_id": "5WeIPwwwBQvJCdbfRw0nvA", "stars": 5, "date": "2011-05-12", "text": "When I get the urge to eat out, I'm normally drawn to more laid back restaurants where I can sit back, chat, and enjoy my meal. With a relaxing atmosphere and fun menu (Chicken & Waffles, and S'mores for dessert), I definitely enjoyed this place. My first time here was for a Yelp event so I was able to try just about everything. My favorites would have to be the mac & cheese and the beef brisket--both delicious! I'd say they've got their BBQ technique mastered, at least where the brisket is concerned. And the cornbread is probably the best I've had--so happy they handed out the recipe at the event. The service was great; everyone was friendly and very helpful. I was satisfied with everything here and definitely would come back--and probably leave with tasty leftovers!", "type": "review", "business_id": "O-ylVyHn6e6kaoJO-jHj-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "c4Ic9brP8hle_qMjbeejFg", "review_id": "7FrG3kWOaZviZeKbb7-_uA", "stars": 5, "date": "2010-08-14", "text": "The place did not disappoint. The moment we stepped through the archway, my friends and I were bedazzled by the ambience throughout the area.\n\n It really DOES feel like a tavern, almost like something out of Pirates of the Caribbean (Well.. kind of)\n\nBut yeah, the portions were overwhelming, and best of all? The food was spectacular. I sat outside, but honestly? I think the place is pretty both ways, so don't be too stingy on the location :)\n\nJus go.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "7s9BkBonSqGHdVkpC_qdbw", "review_id": "xbxfIfsBma_mHRBJPc5x4w", "stars": 4, "date": "2012-03-07", "text": "Yea, I was the asshole wearing a Jeremy Lin jersey to the Cub's Home Opener for spring training. I took some heat, but I came out alive in the end.\n\nHohokam seats about 12k and has a pretty nice lawn you can relax on ($9GA). I soon found out this is where most of the lushes (including myself) like to spend their afternoon. \n\nThe ball park is pretty nice, and clean as well. The staff inside the team store were very nice as were the bartenders. I even met 2 lovely older ladies from WI and Chicago, selling me beer. they were dolls! That was cool they got to work together, as they were here for the season (I wanna do that when I get older!).\n\nThere were a lot of options on food, being served by Ovations (the catering powerhouse behind the new Delta Menus), and had some great taste, and I am sure will be even better as the month progresses.\n\nParking is $7, and pretty much wherever you can find a spot. It was nice because it was a grass lot, and not dirt.\n\nA great place to check out if you are a Cubs fan or just like baseball in general!", "type": "review", "business_id": "WrMPN5glZGrbI3rvVtxJFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jYH7XmtmpTTBUQ315NR9gQ", "review_id": "VNOnenQK4vvTouCUTUvTPQ", "stars": 4, "date": "2011-02-04", "text": "Ate there for the first time last night and the food was fantastic. They did a great job on the remodel, so it's a lot more open than it was before. They have an extensive wine list and the service was wonderful. We will definitely go back!", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "m2T71nxPgzrmXi-cKE3U2w", "review_id": "Xw4LIQeqqGaX2oAFid5UDw", "stars": 2, "date": "2011-09-14", "text": "Not exactly what I would call a great place to eat. If you want to take your teenager out for a shake or ice cream you may enjoy it :)", "type": "review", "business_id": "NWtC07BxIqQp76kugbvynA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "0OQN3ie9_Wk_AIQBOBRXRA", "review_id": "GY3-YPoPaidUbBx2cafDHg", "stars": 4, "date": "2009-03-08", "text": "Being too \"frugal\" to rip out a perfectly good, if not ugly, bathroom vanity top, I decided to look for ways to improve upon the \"cultured marble\" 80's look that was going on. After talking with my co-worker and fellow-Yelp-er, Robert, I decided to go the \"refinish\" route instead of \"rip it out\" and put in new. \n\nAfter checking the internet I came across a company called \"Miracle Method.\" If you get a chance and you're thinking of having your bathtub, tile, vanity or kitchen countertop replaced, check out this company first!\n\nI did get an estimate on ripping out the tile around my tub and having a new floor installed, but that would have still left me with a no so great looking tub and an ugly vanity. Oh, and the estimate I received from the \"other\" place didn't provide tile so after all was said and done, I wouldn't be saving anything. So I bit the bullet and decided to spend the $1,600.\n\nSo the job was started promptly at 8:30a.m. on Tuesday by \"Shawn.\" A very nice young man who obviously likes what he's doing. (Sometimes hard to find in folks these days!) Tuesday involved cleaning, prepping and spraying the tub. Wednesday the tub was finished off then the tile and vanity were prepped and sprayed. Time on Thursday was spent applying several layers of sealant to the tile area and vanity top. Friday was a quick visit. Shawn cleaned everything up and returned it to a much better than original version of a master bath. \n\nI'm very happy about the final results and I'm seriously considering having my main bathroom redone as well. Again, if you're thinking about making changes to your bath or kitchen, check out Miracle Method as a possible solution to your problem! I'm a fan!", "type": "review", "business_id": "OVZaWBKy7VBT_ikOrDt6dw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P_LzcrlVXFdgBq_24UnlUw", "review_id": "jcaKt8dBjhcLoYuSL78Vnw", "stars": 4, "date": "2012-04-21", "text": "Excellent Park! As metropolitan areas go, Phoenix maintains a higher sense of civic duty than most towns, and that is reflected in its parks systems. White Tanks ranks in my TOP TEN list easily above #5. It is HUGE. It is DIVERSE. It has EDUCATIONAL FACILITIES. Bathrooms are CLEAN. And they have LOTS of EVENTS!\n\nCheck out the calendar of events at their web page!\nhttp://www.maricopa.gov/parks/white_tank/", "type": "review", "business_id": "B_Ea839qdvPWa07YnpeIrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b2DKC4kC8-QeSeGZ_MF3XQ", "review_id": "SAWuelaJRjm3IeTknIhw2g", "stars": 3, "date": "2010-05-25", "text": "If you are going out for beer than Papago Brewing in the same strip mall is a much better choice. But if you are looking for a true bar with liquor and beer than the British Open certainly qualifies. Not a huge fan of the food with the exception of the fried pickles. Typical greasy pub fare. Darts and pool tables and a good juke box. Service is usually pretty good every time I've been in there. Very dark and very much a neighborhood bar.", "type": "review", "business_id": "9r5YLKGTdQz_Q29cBifePQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DtTuVmtooVyMnGhwPrzLww", "review_id": "KyPBZKyR-6y2fBVj_L7zeQ", "stars": 4, "date": "2010-01-31", "text": "It was one of those lazy nights and we wanted something quick to eat. The place was surprisingly busy. It's off of Shea Blvd. I don't order their noodles because the last time I had them, they were over cooked. The food came out HOT and we shared our plates. I ended up taking the leftovers home and had another meal the following day.", "type": "review", "business_id": "Fs9fs_vX4PppqJvEkfr0BQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oGR0GPIbYOitJaa-VsvaFQ", "review_id": "dbPow-0tEsv4wAVRhZzvcg", "stars": 4, "date": "2012-09-03", "text": "Impressed , stopped 2 x before and the wait was to long . Made reservations for 5 this time.;).. Friends had recommened and raved about Becketts and had this on the short list for awhile. It was everything as advertised, ambiance very casual , GOOD Food, excellent service ( Adria was very good and made good recommendations ) and fair prices . Recommend the Osso Bucco pork but not a bad meal by the group . Sunday is AZ winery special which is a nice touch , must try the Pimms cup cocktail excellent! Can't wait to go back!,!,", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hac8HebtWiR0H2WmPg9AOg", "review_id": "fnEQ5thaDNloZHlvcyTYVA", "stars": 2, "date": "2011-04-08", "text": "Lots of people to help but too busy talking to each other...so, I left...", "type": "review", "business_id": "1QxI2IP3XfndDAY8nyZVPg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "psSPL5mstfnkLEMtYDsBjQ", "stars": 5, "date": "2011-07-31", "text": "They get 5 stars for the only thing I have ever had there. Every single time I have to get the Pizza Nortena. It is out of this world. It is meant to be an appetizer but we get it to go and have it for dinner.", "type": "review", "business_id": "QxEUzbLfCTXF6gHWJegWgw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gW-ukHucTfVCnFCKKxPJzw", "review_id": "TM0OXCu8Yk6H-Rb0BU0ERg", "stars": 3, "date": "2008-02-02", "text": "I love the layout of this outdoor bar. However, the price of drinks here and the lack of well options is a huge turn off. It's also going to be interesting to see if people are into the idea of an outdoor \"dance club\" once summer comes back around. \n\nThe view is awesome. I'm always up for supporting independent downtown businesses, this place just needs to make some changes to make me want to come back.", "type": "review", "business_id": "-A5CFmkgdMEggaihtyxX4Q"} +{"votes": {"funny": 3, "useful": 0, "cool": 0}, "user_id": "W9n_ZyVCXD0HfPqn6qriOw", "review_id": "HbZ06PXeK8WXk8i1tmeP-w", "stars": 5, "date": "2009-09-04", "text": "This dude claims he \"steals souls for a living\" and is \"the best photographer\". In the world. Ever. \n\nhttp://www.flickr.com/people/tysoncrosbie/\n\nI promise--there is nothing at all vain, hacky, narcissistic, overpriced or arrogant, whatsosever, about Tyson Crosby or his work.\n\nPhoenix should consider itself fortunate to be home to such a phenomenally over-talented, artistic genius. Big art cities like NYC, Chicago and LA would never be able to fully appreciate the photographic brilliance of the one, the only, the premier best photographer in the world-Tyson Crosby.\n\nHumble, poetic and unpretentious as he may be, I can't argue with him. The fist time I saw a Tyson Crosbie image, I j!zzed in my pants. Really, his work is that good. For real. No joke. I'm serious. Totally serious. I love his work so much, I want to marry a Tyson Crosby print.\n\nWhere is the button for 5 million stars?!!!", "type": "review", "business_id": "-svamR1_OzUeiZkZf4qotw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kacOkLRg_lcNA_wPE4bb1Q", "review_id": "Dn5byea4jaUd7NeDqwUB0g", "stars": 5, "date": "2010-02-17", "text": "Vegetarian/Vegan south Indian buffet! Guilt free conscience! What more could a girl want? I am in LOVE with the dosas. I always wish I had a larger tummy to accommodate all the delicious food. Udupi is proof that being vegan/vegetarian can be tasty and cruelty-free. Humble ambiance, no fancy decorations.", "type": "review", "business_id": "lhRUPA28pRIN1MnllN-o9g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "-YLjmeAqLY7ba5kptuOGRQ", "review_id": "aBKjXYHHHefnDTozws3Hgg", "stars": 4, "date": "2010-02-05", "text": "Disclaimer, I was raised in New Orleans, and miss good Poor Boys, Crawfish, Boiled shrimp, Jambalaya etc.... yadda yadda yadda, hear me whine...\n I try to be lenient when I go somplace because it's unreasonable to expect to find the food here that I would at the Magazine St. Po Boy shop. \nI was also raised on popeyes, every once in awhile I would hop off the Streetcar on the way to school and get a Chicken Biscuit w/cheese. \nAnd frequrntly I would get a 4 piece spicy, and even though it was a chain, it was a local chain with massive quality control. \n(and yes, odds are those years are most likely why over the past 3 years I've lost 250 pounds!.... Moderation kids!)\n\nOver the years, the chain was sold off, the original owner died, and Popeye's became more hit and miss, especially the further you got away from the south.\n\nHeck, you get your hopes up just to see a Popeye's!\nusually the stand alone's are better, and the ones attached to Gas stations are hideous.\n\n \nI've tried a few in the Phoenix area, And have been generally unimpressed. Not horrible, but just... a very thin flavorless crust.\n\nSo it was with trepedation that I went into this location, a drive through, attatched to a gas station.\nI went for a box of chichen w/biscuits. and I can say it was the best I've had in the city so far.\nThe man at the window was friendly, the chicken was fresh, good, solid breading. With enough heat to give a nice depth of flavor, cutting a bit deeper than other chains would dare... which is what Popyes is all about. (I'm used to some blazing hot chicken... not stupid mind you, just HOT.. this is not that, but a good flavor. With good moist flesh, and thick crunchy skin. And the meal made the travel home well.\nOne downside? I'm just not a fan of these biscuits, they werent old... but they were dry... and lack the lush, buttery flavor and texture that I love. These were more dense and hockypuckish than I prefer.\n\nIf your craving some Popeye's chicken... well, lets put it this way,,, I'll be driving 20 minutes out of my way to go here.\nThis is my first time... so Your Milage May Vary..\n\n \nSidenote, I'n no Church's Chicken fan, but I went to the one on Arizona Avenue... and I've got to say, thats some fine spicy chicken! And cheap! And a big box of fried okra makes The Bride very pleased indeed!", "type": "review", "business_id": "TOy2PLtojYMCaVzHsEzyhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bH40h15ScLYilmXssXtf3A", "review_id": "oGU0nYP_wzyffWt7HsZ68g", "stars": 3, "date": "2012-02-27", "text": "The very definition of an average brunch. My omelet was pretty decent, and it's nice that they let you choose a bunch of ingredients if you want to. However the breakfast potatoes are extremely weak, fairly bland and underseasoned and are probably not hand cut and prepared. They are mixed with an uninspiring blend of green peppers. The rest of my table seemed to feel about as enthusiastic as I did about their breakfast burritos.\n\nThe service was also pretty slow. Despite the awesome patio and pretty good eye candy among the patronage here, this place is definitely one you can skip.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "fkZ_t7co7VxO2jPI9bD5bg", "review_id": "35n-hs46cAWW_URVD2_KHg", "stars": 3, "date": "2008-06-14", "text": "Went to this place for the first time the other night.. Biggest plus for the place is that it has its own parking with some one checking to make sure you are there for the restaurant, the one thing I hate about downtown is parking. \n\nOn to the food, a basic dinner of Pork fried rice, chicken chow mien, and Kung Pao chicken... It was okay. The Pork fried rice was basic and the chow mien was too slimy. The Kung Pao chicken was alright, kind of disappointed in its lack of sauce but the veggies and almonds that came where good. Pretty much, this place is good for quick and cheap food.\n\nThe staff was helpful and kind and the restaurant had a cute downtown vibe to it with a random birdcage in the middle. Overall I would try it again, but will try something different on the menu.", "type": "review", "business_id": "-mz0Zr0Dw6ZASg7_ah1R8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TIDCANcQQbwkiEIdlbNImQ", "review_id": "fNoaiKImX1T9gF6nTwwhAg", "stars": 3, "date": "2009-10-12", "text": "Another place that's walking distance. Subway is one of those places where you can't go wrong....you got 5-dollar value meals or foot longs. The guys are really friendly and aren't stingy with the toppings. I'm not a big fan of the smell subway's have though. Eh anyways its just one of those places where im lazy and don't want to make a sandwich...plus it helps me keep my girlish figure like jared :)", "type": "review", "business_id": "-xBv8p9jzOkMyGlY07FMTA"} +{"votes": {"funny": 0, "useful": 3, "cool": 5}, "user_id": "6VZNGc2h2Bn-uyuEXgOt5g", "review_id": "kwxmuNqc5EcaErD2zYpoKw", "stars": 5, "date": "2005-04-18", "text": "Wood fired pizzas, scrumptious pasta dishes and bacon wrapped shrimp. How can you go wrong with a place that wraps things in bacon. C'mon, even veggies admit that things wrapped in bacon are good! Has a smokey atmosphere and a slight bar crowd but the food is outstanding.", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 3, "useful": 4, "cool": 2}, "user_id": "SMezBhXVe7op2XaMVlju6g", "review_id": "R8xfp6Qh6KBiA72587BHnw", "stars": 1, "date": "2009-05-13", "text": "I give this location no love. We went to this one rather than the one uptown on a Saturday night with a voucher from another location from a bad sushi upchuck experience. Going late at night with a mostly empty restaurant, we still ended up waiting 10 minutes to be sat, then SHOVED and I mean shoved in next to the only other table in the place - the hostess snickered at me when I kindly asked to move a single table down (really sick of bitchy hostesses in Scottsdale by the way - your job is not that hard so shut up and color for christs sake) Our waitress took another 10 minutes just to greet us, sushi took forever, and if you can believe it the fun hadnt even begun yet. \nWhen paying the bill, we present the voucher to the waitress, who says she cant take it. The manager came over with a bitchy look, basically trying to call it bull shyt and continued to give us the 5th degree about it for the next few minutes - certainly NOT appreciated. She takes it to the point where she calls the other location where we got it (taking ANOTHER 10 minutes) and finally gives us our bill back - only taking off our 2 rolls and 2 nigiri. This created one pissed off yelper instantaneously.\n\nDon't bother with this location - you could find bomb shrapnel in your soup and they still wouldnt give a damn. \n\nAnd for the sake of all that is holy - STOP WITH THE CRAZY I'M-TOO-SEXY-FOR-MYSELF SCENE! YOU'RE NOT THAT COOL!", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k6ZQA3DJ2EfZJMmadBlWNw", "review_id": "2dYKKklxdbh0VPqhrDo5MQ", "stars": 3, "date": "2011-06-09", "text": "Love this Cold Stone if only for the fact that around the time you would be leaving dinner in one of the close restaurants, the strip mall this location is in is basically shut down. We didn't have any wait whatsoever.", "type": "review", "business_id": "Jsrc6etsr4hM4OaVuGUyTg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "gMkEhaScV0fPNRVlTjLE6Q", "stars": 3, "date": "2009-04-28", "text": "Seriously the best 3am quesadilla I have ever had. It was big and gooey, with just enough browning on the outside of the tortilla to make it a little bit crisp. As an added bonus it was kind of cold outside, so it made a great hand warmer as well. Why only 3 stars? OK, you do have to sit on some questionable outside picnic tables and I don't want to think about how clean the kitchen may or may not be, but the entertainment value of watching tipsy people stumble around while waiting for their food can't be beat.", "type": "review", "business_id": "-xFO1E3OiDMmdqdjwUM_DA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qKvbgG-Z2REd7Sa68Iz-2Q", "review_id": "h8JqWxCUbbzhAqph6ONjGw", "stars": 5, "date": "2011-07-09", "text": "Dr Norton and his staff are friendly and professional. They have made my 3 children feel relaxed and comfortable. I highly recommend this office.", "type": "review", "business_id": "rV3lt01Gv1g5dkyNIWpaOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xFG4Ca2HHmbxDTkMlmHnjQ", "review_id": "LNng63r57T0ZoNM1C1lk3A", "stars": 4, "date": "2011-07-13", "text": "Very good food. The tepanyaki was great!\n\nIt does have a certain atmosphere though. Remember to dress appropriately. It can also be a bit pricey.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0VaL50rT2zkSk3pK3cTlCA", "review_id": "cj-4AH3vTOdcDk5b235P3w", "stars": 5, "date": "2010-10-16", "text": "This speakeasy was kickass. The staff is super down to earth and the menu is great. The drive thru is an awesome touch. I got the Turkey Club and it was reallllllly good. We received 2 randomly free samples of a shake and smoothie and had some good conversation with the guys behind the counter. It gets a little noisy if they're makin shakes in there, and the seating is pretty limited. I wish they were open later but so far I'm loving it!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BQnVtjs1WubXUxdAMozFvg", "review_id": "A1F5KxzbzTwLKsocnPPQWA", "stars": 4, "date": "2010-10-07", "text": "Part 2 of the business trip. Dinner with the sales team.\n\nWe always have fun when out on the road and this was no exception. \n\nThe need for sushi is somtimes primal. This was one of those nights. \n\nStarting off with happy hour prices that were awesome we easily knocked down three bottles of Sake while deciding what treats to order.\n\nWe ordered a tableful of great sushi- alot of variety and had a great time. The one disappointment was that the sushi just didn't have enough spice. Not nearly enough heat. The staff was excellent and very helpful. \n\nI would recommend Ra. The atmosphere alone- great music and fun staff is a good reason to go.", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "am9yAm4Ph7yk81sFkHlxig", "review_id": "kaILIsWvCFZkL1KyxjzEsA", "stars": 3, "date": "2010-04-07", "text": "I have been to this location several times because again, right around the corner from my salon. I so want to be able to give it a higher rating but every time I go the service is really not that great. Last week I went for wing and Wii night, 30 cent wings cant be beat. I have had better wings, but hey this is a Mexican joint and our bill was not even $4! But our waitress looked like she could care less about being there, never asked if we wanted a refill on our chips and salsa and never stopped by the table to see if we like our food. Now being in the service industry and having spent many years as a server I get that you think since the bill is so low your tip is going to suck. That simply doesn't have to be the case, we left our server a $6 tip and we weren't even there long. You get 4 tables like that an hour you are set, so perk up and smile, you never know how far that can go. \nI went there last night for Taco Tuesdays, $1 to $2 tacos can't be beat and the tacos are so tasty I always order 3, the mahi, crunchy fish and steak. The mahi was flaky and sweet, the crunchy taco had a sweet taste to it with the sauce and red onion. Not greasy at all. The steak was tender and flavorful. Again though our service was sub par. We had already finished our chips and salsa before we even got our water, took way to long, same with the food and it wasn't even that busy. We were sitting inside and there were only 20 people in the bar area and there was only one other table eating. Now our server wrote our order on her had, she seemed tired and frazzled, and we had to bring our bill to her at the end to check out, we waited a while before doing that. It seemed like she might have been the only server in the place, but she did have the help of a gentleman by the name of Frenchy. I liked Frenchy, big dude but with dry wit and he seemed like the jack of all trades for the place. Doorman, food runner, busser, you name it he was doing it. \nI will continue to come to Loco because the tacos are so damn good but I just hope they figure out the staff issues. I gave it 4 times and every time my complaint is the same, the service needs to step it up.", "type": "review", "business_id": "ilJiRYZgxjrEu2iexKu-pQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "sPDwsdNa22Y-52cbjiTyig", "review_id": "6oc20fsRY7DSLf6MQJQ1cw", "stars": 3, "date": "2009-09-29", "text": "I hate the heat. HATE. Yet I am doomed to reside in this heat haven so when my best friend raved about a place where you can sit outside in Arizona and not feel the heat I had to check it out. By the time I ventured downtown to glance at this place Phoenix was experiencing a cool down so the patio was very comfortable without the fans and misters. \n\nOur waitress was great and even chatted about our night and my favorite bar, SideBar. We got the L.B. favorite lavosh and I okayed the bacon even though it didn't sound too appetizing. It wasn't. I ordered some chicken sandwich that was on a french roll. The salad on the side was better than the sandwich. My friend ordered the classic turkey which was large but average. BUT I think ordering the classic sandwich was a boring mistake of its own. The fries that came with the turkey were greasy and when I ordered a amber ale and some guy brought a pale ale. I like pale ale so it wasn't too bad but it made me yearn for the amber. Yes, or course I ordered the amber next.\n\nThe waitress told us that the island bar was opening the next day but there were still ladders and paint cans lying around. I failed to notice until my friend mentioned it. The only really cool thing about this place is that it is in a historic building with strange bathrooms. Other than that I would skip it.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qj5EvKLNsjBycqHnJbtNCw", "review_id": "5W6SHMUmZ7yyfH_NtfYavg", "stars": 1, "date": "2011-11-20", "text": "Qver-priced, substandard food. Never met a cheeseburger I didn't like-- until now, (NOT a 1/2 lb.). Small portions of tired, room temperature \"fry-pieces\", burnt bacon, chicken tenders so hard, they couldn't be penetrated with a fork. Mediocre service; didn't bring kids meal cookie. Waste of $$$!", "type": "review", "business_id": "r8CwFUEQtL8gAT9KHnNhuw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Kc6eyirhmOH8vXBljMXDCg", "review_id": "5Z4wtumpdtUtClMC0z3Now", "stars": 1, "date": "2008-09-30", "text": "What was Dunkin Donuts thinking when they took out the selection of donuts and now only offer a choice of 10. It used to be you couldn't decide which one to get, now you just have to settle for what they have. This new and improved Dunkin Donuts is the worst. I will return for coffee when I get the urge...but never for a donut!! \nOh and another thing...my Dunkin Donuts used to have Baskin Robbins inside...that is gone too...again WHAT WERE THEY THINKING!", "type": "review", "business_id": "-KF9RQPkmIOHfE0tzUu9bg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aAOosIA2598fl8v2mcWoWg", "review_id": "QCFp5HqL3dMiISKikhY8Ew", "stars": 4, "date": "2012-09-08", "text": "I was only here for one night on 9/7, but I was very pleased with my stay. The place is beautiful, the rooms are big, and the people at the front desk were pleasant and efficient.\n\nThe only down side to my stay was that I lost water pressure in the shower Friday night. Fortunately, it was only brief. Other than that, I enjoyed my stay. This will be my base of operations for my next visit.\n\nAs for others' comments that there isn't anything nearby - That's what cars are for. Last I heard you can rent them here and there.", "type": "review", "business_id": "FQudBiBiz9bGQLF_kK8UCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_uWc9mBsSXz1gQw3rf-1fg", "review_id": "9BdHbRhfkb_JL9y20u-0Ow", "stars": 5, "date": "2012-05-25", "text": "Love the food here. Been here a few times and got the peanut curry twice and been delish. Thai iced tea was great as well. Only been there during lunch and everything seems pretty good so far. Went with coworkers and family and they all loved it too. Service was fast, prompt and nice. Will be back again to try other dishes.", "type": "review", "business_id": "ujLZmyy11g1JHCQTxRA3Dw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HqTe6A9GTLiaaBdDid0OFQ", "review_id": "fcyY0E-AObt-4m5zeFLSqw", "stars": 5, "date": "2012-05-22", "text": "Unique selection of antiques, linen and assorted pictures and estate jewlery along with new timeless designs. Located in downtown Gilbert worth the trip!", "type": "review", "business_id": "FA_PQwYxwrJTsxZFpMmshw"} +{"votes": {"funny": 0, "useful": 6, "cool": 3}, "user_id": "-hG9sBYkGRMjWPS08GzChQ", "review_id": "qN922EcB3wEISGuU9KHl0A", "stars": 2, "date": "2010-10-12", "text": "They get 2 stars, for the pickles. \n\nSo I'm from Jersey and was very happy to see all the NYC/Jersey stuff in this place. The walls were covered in things from my state so I figured they know a thing or two about real NYC pastrami. I was very wrong!\n\nThis had to be the worst pastrami I have ever had! What's with the places in this area advertising themselves as either being a NY style deli or NY style pizza? I mean, I know we're the most awesome people in the country and our food is the best, but don't say you're like us unless you really are! Maybe if you've never had the real thing, you think this is quality? This sucks giant donkey balls and I'm sorry I ever tried it!\n\nReally, instead of spending all that time trying to make your place look like Jersey and NYC, spend that time practicing making good food. That, not decor, gets you good reviews! If you're from the East coast and looking for authentic NYC food, avoid this place. They also claim their bagels are just like NY...yea, I won't be trying those!", "type": "review", "business_id": "nmj5yK9dZ2atlM9RYDCRHw"} +{"votes": {"funny": 3, "useful": 9, "cool": 8}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "mHtVn0-P1L-lbmxj9tHSiw", "stars": 5, "date": "2008-10-03", "text": "Honestly the best part of this place is the unbelievable deal you can get on pet related products. Because they are one of the primary income sources for HALO Animal Rescue, people that have pets, tend to make donations. You can almost always find pet carriers for under $10. They have dog crates for training and you don't have to shell out a fortune for them. They have fish tanks that will allow you to let little Johnny get his feet wet in the world of pet care and the associated responsibilities without breaking the bank. If you are a person that shares your life with animals, you understand the rarity of these kinds of deals!\n\nYes they have clothes, furniture, tchatchkies, etc., but the real deals are on the pet products.\n\nAs a side note, HALO recently leased the MCCAC location at 5231 North 35th Avenue (It was the previous Maricopa County run cat adoption center). So if you are looking for a companion (cat or dog), check them out and support one of the fastest growing no-kill efforts in the US.\nhttp://www.halorescue.org/index.html", "type": "review", "business_id": "9oDcnuvKphBrHB3yrMbJfA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JG4hYCxStBSWCKzEeAsnRg", "review_id": "rKrUaXv6i48mK9hd-7UL7A", "stars": 5, "date": "2012-10-16", "text": "My wife and I went to Harris Dental for a few years when we lived in Scottsdale. We moved out of town in 2009 but we have never forgotten the superb dental care that we received from Dr. Joe Harris (who had come highly recommended from our Austin, TX dentist as a person who keeps up wth dental research). Nor have we forgotten the fabulous and uniformly cheerful staff. So it wasn't really too surprising that we received a call from Harris Dental a few days ago - more than three years after we moved away - asking for permission to archive our dental x-rays and asking where they might send funds from a credit to our account. Who does that?", "type": "review", "business_id": "LY4WyxiRnmQTpo-9tGXetA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PXlvgzU25CBGA0JHzzpmOQ", "review_id": "ygaiWeJbyhUnu2Sp6PLlyg", "stars": 4, "date": "2012-07-29", "text": "mmmm, Canadian comfort food!\n\nWe're huge Keg fans, and when we moved from Canada to Tempe earlier this month we had to take the kids to the Keg. I love how consistent they are with the quality of service and the extras for the kids. The service is a little lacking compared to most Canadian Kegs I've been to, simply because the staff seemed so much younger and less professional, but it was still really good. The food quality was excellent, but the portions are very Canadian (read: smaller than US portions) while the prices are still what you would expect from Vancouver yet in an area where the cost of living is about 1/3rd. For the money, I'd probably rather hit Ruths Chris..minus the kids :)", "type": "review", "business_id": "DGtOkc0KNTyK8rDkmsPNYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "brJQSZx83UHyo3xR4VyX6A", "review_id": "u0ig6j15LLcvHsw2XLWo5w", "stars": 1, "date": "2012-10-17", "text": "We bought or second Jura Compressa coffee machine from Sur La Table. It was an expensive model priced over $3K. After 2.5 short months it stopped working. The only option they offered was to send it in for repair. When I asked to have it replaced I was told the turn around was 48 hours. Its actually 4 -5 weeks when all is said and done. I high priced item and thats the kind of customer service. Not to mention an expensive product that cant make it 90 days. Extremely bad customer service on this one.", "type": "review", "business_id": "OMXAkiWyKz0AM6PwwuP38Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z6Kz5DOd0-W3t_FoQIELAg", "review_id": "OCVxstcjTf3KeQdWrgQ7cw", "stars": 4, "date": "2009-05-10", "text": "Whenever I go here, it is packed - and for a good reason, the yogurt they offer is delicious - and they have a great variety of flavors and toppings. I love the self-serve concept, but be careful not to fill up your cup too much - it's a bit pricey and they charge in weight. (They only offer a one size cup that is huge - so if you fill it up with toppings you're likely to spend close to $10 for a cup of yogurt!)", "type": "review", "business_id": "TdNIQQcfslKjkey4-yAlKg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C5hDZleIfHtcXS9p4ZYBuA", "review_id": "xJcCUTWuvqzUOk3qd1moNg", "stars": 2, "date": "2012-07-19", "text": "This place is way under seasoned. The beans were ok. I hate that they use store bought tortillas. I don't plan on returning. There are better places near downtown Chandler.", "type": "review", "business_id": "lk-6NXfpSgvNw7zm0xtUVw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "gGNAr-cmCQUgA9B0QjVqAg", "review_id": "Yvnpd-7uOuQaIOnfvp-t8Q", "stars": 4, "date": "2008-03-08", "text": "This place is so busy - it is most definitely not a hidden gem, although it sits back in the neighborhood. The food and coffee are good - but most of all, I like that I can walk my dog here to get coffee and the newspaper on the weekend. I wish that there were more places that allowed pets outside. \n\nThe parking can be a pain and the ordering and picking up of food can be chaotic. But, once you get settled - this is a good place to visit.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "z06IHGXI_ofBc2DkAbCgnA", "review_id": "WQsr-cylIfzNixGY51er1A", "stars": 5, "date": "2012-04-27", "text": "I'm completely impressed by The Mission and I can't wait to go back and try more of their amazing food. \n\nMy husband and I chose The Mission for our 8th Anniversary dinner and had a wonderful time - the staff is extraordinarily knowledgeable and very warm & welcoming. Yelp steered us in the right direction as per usual, so we split the cheese plate with manchego to start, the pork shoulder tacos for dinner and split a pumpkin bread pudding for dessert. Everything was expertly prepared and delicious. The bread pudding was EASILY the best I've ever had. We usually don't order desserts and I'm glad we did, because I can't stop thinking about how amazing this was. \n\nMy husband had an Avocado Margarita and an Estrella beer (Awesome that they have this available - and it was even served in an Estrella glass - impressive). Since I'm pregnant, I asked if the bartender could make me a virgin version of their \"Sophia Loren\" with fresh strawberries & mint - score! It was delicious and I'll certainly be back to try it with the proper amount of booze :)\n \nLastly, how amazing is that Himalayan Salt Brick wall???? I NEED this in my house!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CioHHb-1cON75GXnU8KwUg", "review_id": "3Fw8s1Z0xeTaJnkA6txC-A", "stars": 5, "date": "2007-03-19", "text": "a G Spot is a myth. and Dr Graffenberg was a mad scientist.\n\nSo its no surprise that I couldn't find the Gelato Spot either. Shannon spouts, \"I love gelato so much, I would bathe in it\". Hmmm, that's interesting\n\nI drove in and around the dirt road\n... and went up and down Scottsdale \n... explored the box\n... looked south of the landing strip at Scottsdale Airpark\n... manually googled it\n... orally asked the passerbys\n\nRoad several times and I couldn't find it ANYWHERE\n\nMaybe I need to do more research. Perhaps some field research...Or a targeted focus group\n\n*** UPDATE ***\nIts on Shea Blvd?? No wonder I couldn't find it-\nI was looking down the wrong road\n\n*** UPDATE ***\nThanks Jake P for \"Yeah it is on Shea, in the strip mall area east of scottsdale rd near the Harkins Theater and Pita Jungle and such.... \"\nBUT the point of this review was sarcasm. i.e. g- spot is hard to find\n\n*** UPDATE ***\nNow I have a girl, \"Shannon W\", telling me where g-spot is. She writes, \n\"It's on 74th St. and Shea, in between Coffee Plantation and Pita Jungle.\"\nShannon W: The point of this review was sarcasm. i.e. g-spots are hard to find", "type": "review", "business_id": "Hlg5GDrdDtjeD8XGwH1eFw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "nsWA8mR_Egp6HRqwCD3a3A", "review_id": "t0Zmf5HTUPgtNFgrbZ7AKg", "stars": 5, "date": "2012-12-11", "text": "THis place is great! I need an adjustment every now and then but I live in Scottsdale and my regular Chiropractor is so good that he is always booked up ahead of time, so if I tweek my back unexpectedly I can't get in soon enough quite often. So.. now I have a place to go seven days a week that is every bit as good as my normal Chiro. I have only gone to the weekend chiro but my wife and one of my employees have seen Dr. Brian and they love him. So if you need a good Chiro... go see these guys any day of the week. Try em you'll love em!", "type": "review", "business_id": "Gr-1-hmNUVw5y-RJ_coaFw"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "8RNm-Oft6BsUWsXIdiLAUg", "review_id": "AyOq_Eo9GGLsFKVfWhO3UQ", "stars": 4, "date": "2009-02-08", "text": "I went to Tuck last night because of the reviews on here, and I loved it. It really is tucked away and all the better. It feels even more special. We had the panini bites, dates stuffed with chorizo, and the citrus brined fried chicken with white cheddar waffles. Not your greasy comfort food here. Everything was delicious and I can't wait to go back and try more.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "vF4B6eFdoDmyV_l7MLHMzw", "review_id": "QimuPOgwgY52ciZBazV1Gg", "stars": 3, "date": "2008-09-29", "text": "I noticed the sign for Shakey Jake's before it even opened. I waited paitiently for it to wait... I love barbeque! :) When it finally opened, my mom and I tried to get some grub there when we walked up, the cutest little boy came out of the resturant and told us they were close and would be open again tomorrow. We left disappointed but still wanted to give Jake's a try.\n\nOver a month later, we finally did get a chance to do just that.\n\nWe entered Shakey Jakes and saw a nice, new & clean place. There was a large counter, and several red t-shirt wearing workers dishing up what looked & smelled like yummy barbeque. We waited in line and were handed menus. The walkways were narrow and left a small amount of space to sit. We were feeling the scrunch! We then sat down with our menus and chose our meals.\n\nI went back to the register & was disappointed in the fact that they didn't have any more MacNCheese and there was some miscommunication when it came to my mom's order. I thought it came with Fries... and it didn't, it comes with a side dish. My mom wanted Cole Slaw AND fries... instead I accidentily ordred JUST cole slaw... but they charged me an extra fee for the cole slaw... so really, I just got screwed out of a side dish and it was pretty much downhill from there.\n\nI didn't see the lil baskets of utensils and lids and straws on top of the very tall deli case. I had to take our recipt and the cups and I pourd our drinks and sat down. The TVs were SO damned loud we were shouting at eachother. I wanted to scream \"can you PLEASE turn that down?!\" My mom had to use the rest room and I told her she needed a key, which I learned from a previous review.\n\nAnyway, finally our food came and our order number was called and I got up thinking I had to bring it to the table, when their server told me to sit down and that she'd bring it to us... ummm... okay? but as she did, she told us that the utensils were by the register. WTF?! ARGHHH!! I was JUST there!! It was ackward, uncomfortable, annoying and frustrating.\n\nSo i got up AGAIN, if I could have just picked up my own order, I could have also gotten my utensils in one big graceful swoop. I THINK the owners need to give out those lil numbers for their tables, think Carl's Jr. So there's no more confusion. AND give out those lil bags with utensils, napkin, salt & pepper packets. Because I'm 5'6\" and I had to get on my TIPPY Toes to see what the hell was in those baskets! Also, I ordered two medium sodas, and none of their lids fit. They were TOO small or TOO large!\n\nThe cashier was really nice, but the smaller things made this place intolerable. I couldn't walk to our table without hitting EACH and every single table and chair... ugh, that's the last thing I need. a reminder that maybe having yet another meal out is the LAST thing I should be subjecting my body to.\n\nI sat down and looked at my plate, the fuck?! I ordered pork ribs, and they gave me beef. I looked at the recipt and it said... beef. *harsh sigh* lucky for them, they both cost the same! I remembered reading their sign underneith the cashier that said they'd be happy to help you out if there's anything wrong with your order IF the food was untouched and IF you still had your recipt. sooooo... because the cashier hit beef instead of pork and I paid - I was screwed.\n\nChoosing to just go with it, I opened up my side dishes and the yams were good. nothing great, but still good. The cole slaw was way too sweet for me. The corn bread was good!! The highlight of the meal! their cornbread is better than LoLo's! There I said it! I just wish Shakey Jake's would make theirs bigger. The ribs were VERY good, they had a serious smoke ring and the sauce had a nice bite to it. My mom didn't care for her sandwich, she said there wasn't enough sauce and that the meat was very fatty. She liked the yams and the coleslaw. We both agreed that the peach cobbler was YUMMY! I just wish they baked it longer.\n\nWhen we left, I was full and not as aggravated like I was before. I do want to give Shakey Jake's another chance (maybe without my mom). To my yelpers, if you go - be sure the check your recipt, get your utensils right after you order & expect a server to bring your food when it's done.", "type": "review", "business_id": "JUlwoai_WikznIEQ7XCENA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "TICHOHCp6YN0zTACIVWRlA", "stars": 4, "date": "2009-07-17", "text": "The Roosevelt seeps a cool vibe that can only be attained by converting a historic house into a den of drunkeness. Ah, a banker's dream.\n\nThis is where my coworker, Dani, and I went after eating at Sens. She was going to a blind date and didn't want to show up alone, for fear that this guy would be a total psycho who would cut her hair and eat it in front of her. But this time, I already had two incredibly strong and delicious martinis from Sens and was very glad to have taken the light rail. I ordered the oatmeat stout and was quite pleased with it.\n\nCan I just say how much I loved the decor? I totally want to move in here...or use it as inspiration for our next home.\n\nSo, the blind date guy wasn't a total scode and I let after half an hour. Dani, who was apprehensive about meeting this guy--who's a doctor, and I told her if she wasn't interested toss him my way (sorry, honey)--ended up having a good time with a nice guy.\n\nWe both ended the night exactly the same: Passed out with a cocktail in our hands.", "type": "review", "business_id": "7cP7WFmWiTVh-raIL3N_Vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M9HJ0uOqHDEd9xc5LVmfdw", "review_id": "VLoai3EuA8J9TJB0wSk9lQ", "stars": 3, "date": "2011-02-26", "text": "I love this facility! It's clean and bright. It has an indoor track, a good number of cardio machines and weight machines. It has an awesome indoor basketball court which sometimes gets used for extreme training and volleyball. It has a couple of nice aerobics room, plus a couple of racketball courts and a rock climbing wall to boot. I primarily joined so that I could lap swim. Unfortunately, they limit the times that the pool is open to 5AM - 7AM, 11AM - 1PM, and 5:30PM - 7PM - times when there's a lifeguard available. And during the summer, the pool is overrun with kids, and the afternoon lap swimming gets pushed back to 6:30PM start. to accommodate the local swim team. These times don't work for me. Also, during the summer time, it was close to 4 swimmers per lane. The teenage lifeguards don't impose the slow to fast lane designations and don't remind people to circle swim. I never got a good lap swim workout. But the pool is kept up impeccably, and the locker room is nice (except during the summer time when the kids make everything sticky) A great facility overall.", "type": "review", "business_id": "6uHpB60vbJ6Qq8cw-zUx-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L7e0wSn90wfuETETNXdU2A", "review_id": "ABqCudcqDJDOC3ALJGHmnQ", "stars": 1, "date": "2011-10-25", "text": "What are you all talking about?! This place is awful. Theres a reason why these sandwiches are $3. I can't believe so many people like this place, (although the place was filled with the Chinese people and they have been known to have different taste buds ) You get a 10 inch piece of bread with a bunch of stringy cheap vegetables. From what they said, there was meat on there too, however i forgot to bring my microscope to verify if there was any on there. This place is like a middle school cafeteria smack dab in the heart of Tokyo's slums (i don't know any Vietnamese cities). Please, homeless people, save your quarters, you're too good for this place. They have good milkshakes, but if you really are homeless (as you should be if you're going to Lee's) you shouldn't be buying \"rich people\" milk shakes anyways, stick with the dollar menu.", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "H_JsAwjiGEOr_RlZmwfNsA", "review_id": "b3Wt5uMkZsk1bgr4g3sJMA", "stars": 3, "date": "2012-02-20", "text": "Had a coupon so decided to have lunch at Wildflower. The food was pretty good, similar to other specialty bakeries. The cashier was not super friendly, but the manager was. Would go back, just felt that nothing overly stood out about this place.", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8DPNGCkUS0w28RDXtJ8bGQ", "review_id": "MIfoKUSvAmzVCjyaQz0DwA", "stars": 5, "date": "2011-01-21", "text": "I have taken acting classes from Verve Studios on and off for four years, and have recently returned for another work out!\n\nAmanda is a true professional, a working Actor herself,and gets the actor to be real, not \"act\". Do not miss this opportunity to learn and grow, AND have fun.\n\n\nLawannah Curry\nPhoenix Az", "type": "review", "business_id": "W4pNRWFWi6U2P8265s0IPw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B5UBCB7rtRtRHkIb_rvNIA", "review_id": "vs5JFF5BpvTuxh8_23sysQ", "stars": 5, "date": "2012-03-16", "text": "Good JIB. Fast an friendly.", "type": "review", "business_id": "Xth3AXjbQVpvsUBNSFcxtA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uj-70y8y-eDCbDX67TK7yQ", "review_id": "6ZVT6Fv7OYWuvUwZTy9Evg", "stars": 4, "date": "2010-11-11", "text": "Visited for the first time on 11/10/10 around 6pm. The place was empty when we first entered though a group of people came in shortly afterwards.\n\nOverall the place was clean, comfortable and very inviting. The server was helpful and accepted the coupon we had brought in for coffee (buy one get one free). I ordered a 12oz soy milk latte (yes they had soymilk!!) but was disappointed to find out that they were no longer serving yogurt ice cream - I opted to try their blackberry sorbet. My husband had a 16oz Iced Americano and a frozen chocolate covered banana.\n\nI thoroughly enjoyed the soy latte, it was very delicious and filling! The sorbet was also very tasty and fresh. I asked for two scoops when I ordered it and it came in a rather large cup. I did not finish it all as it was just too much for me to eat. I suggest that you plan on sharing if you order 2 scoops! My husband liked his americano and frozen banana and wanted to go back for seconds.\n\nWe are hoping to return soon for some more delicious coffee and to try their waffles and ice cream cookies (they looked so inviting!)", "type": "review", "business_id": "DmkTDze8ruJr6o2f5GAvJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ugoqDrn6cPPD63Pt_CLi8A", "review_id": "C4oKH7gICW21NokUa4Tfuw", "stars": 5, "date": "2011-03-15", "text": "I LOVE this place! From the moment you walk up to the door, it is spotless. Sometimes you will be approached by an employee asking if you need assistance, majority of the time, you won't talk to one employee, which is great! I just want to go in, get what I need, and peace out until next time without the small chatter. \n\nTheir hummus is AMAZING, along with a few of the prepackaged meals. Their Creamy Cilantro Salad Dressing is OMG AMAZING!!\nSweet tea... LOVE IT!!", "type": "review", "business_id": "DbI6ezKctN4Z5SV7LvG4Sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "xXddQy6m2cLcz9tfQu5fyA", "review_id": "bAICGZsmA9WvZlLQIdr65g", "stars": 3, "date": "2010-07-23", "text": "The employees here are really nice and I like the island feel. The food is pretty good and I like it because there aren't many other places in town with Hawaiian food. I also like that you can get beer here.", "type": "review", "business_id": "EOCQ5E0lakUyBvUH0L9--g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DFQ95g3s1oi-VcDZEO2TOA", "review_id": "chxUSqN3W33h0iLg-GMd7g", "stars": 4, "date": "2011-08-03", "text": "I came here a few weeks ago and I really loved it. I thought it was great that most of the ingredients were vegan and vegetarian friendly. My husband and I came here for breakfast. I had a strawberry banana smoothie and my husband had a chocolate, coffee peanut butter protein shake to die for. And we had bagels that were very tasty. I would love to come back here for lunch, everything sounded excellent, especially the soup. I was also impressed with the staff....I thought that was the best feature of this whole place. They are super friendly, and this one guy, was SOOOOOOOO Funny the way he was greeting people and making jokes. It was very outgoing and it made the customers feel like they had been coming there forever even if it was their first time. It also makes patrons and business owners feel like they are an important part of the community with the camaraderie that takes place here. I am looking forward to returning.", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "zigHnwA0FSGPGUE59lLFzA", "review_id": "vobgySm0oMWQJTSt5kHt6g", "stars": 5, "date": "2008-10-27", "text": "This place is great for a big group of people. We originally thought we were going to have 6 people. We ended up having 11 by the time everyone showed up. The staff was more than happy to accommodate us. The Kota Athenian chicken is very good. The price range is moderate. All in all a fantastic place.", "type": "review", "business_id": "t54zAs7IftAVb9SKcCRotw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2y3LWFfyRp02EdjwcVv7sw", "review_id": "ZAVp0mqfdr7M9MtAJYfE5Q", "stars": 3, "date": "2010-10-25", "text": "I wasn't sure what to expect. This was stop 1 on the pub crawl. There was an emo looking couple in a booth a table full of patrons (they looked like regulars)\nThe artwork on the walls was dark and ecclectic, but the place didn't have a dark feel.\n\nI can't say this would be \"my\" bar. But if I were in the neighborhood I would go to this bar for a few drinks and some hummus.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9ryWdjTHVqqAoETSazV3sQ", "review_id": "4xaqgTW-HgcyAsFuf95z_A", "stars": 4, "date": "2012-03-28", "text": "This is a bit far from us, but we went and we had a great time. I loved browsing the local goods, and the fact that it's pet friendly was a huge plus in our book. The old lady who our dog sniffed, on the other hand, should probably take a chill pill. I also got a great bunch of fresh basil from this place, which had excellent aroma and taste.", "type": "review", "business_id": "Sb1_G-DMy26YHafNxxhVrQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "e-tEKhqFz0o0IB5r6C-OsA", "review_id": "AIVj3zSU0GtrQvjK0-h-5g", "stars": 5, "date": "2011-08-17", "text": "Dr Natalie is a compassionate, empathetic, caring DC. She listens, takes her time with you and always strives not only to make you feel better, but to keep you feeling better. Her new location is adorable. I highly recommend her!", "type": "review", "business_id": "JkXgwcfbWDZOc3i3PY2_wA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CcdJ_VhU_zqe2fL7G3eXug", "review_id": "5RBGQbLpYsGZovS8-QufSQ", "stars": 5, "date": "2011-06-02", "text": "I must hand it to them at Olive and Ivy! First rate atmosphere and food.\nThe pesto is the most flavorful I have ever had and that includes pesto I have eaten in Italy.\nWine selection is terrific. The breakfast, lunch and dinners are wonderful. The bar feels a bit like a meat market but that is the only down side.\nIt is beautiful, clean and worth returning to again and again.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0lJjLyGl06M2xwB8FL6XfA", "review_id": "E-hgzF9IMyp-k0XvcdEbCw", "stars": 4, "date": "2010-11-23", "text": "Shimogamo has been one of my favorites for a few years now so, i thought it was time to give them a YELP! Every time I visit I am always greeted by the owner (Yoshi) who happens to be Japanese and runs the restaurant as such. Fish is always fresh and consistently high quality, sushi chefs are friendly and always willing to let you try something new. They also have a nice selection of cold sake's available and some random ones in stock off the menu if you ask the owner.\n Atmosphere is very modern/contemporary and in a small suite located next to C-Fu Gourmet. They also have a traditional Japanese seating room in the back that is fun for larger groups etc.. If you are a sushi lover or even a newbie to this style, you will love it!", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "IO3AsR6cdMto7VCwfPzf2w", "review_id": "p6Opdqa3tSPrGURrWQtYJg", "stars": 3, "date": "2010-09-13", "text": "Unlike a lot of the other reviewers, I actually had a decent experience here. We came in yesterday (Sunday) around 2. The place was pretty quiet, excluding the plethora of football fans who came here to watch their games. They have a ton of TVs to do so, including a HUGE screen that was playing the Cardinals game. No complaints about that. Some of the guys were rowdy but hey so am I when I watch football. It took us a while to be seated. I'm not quite sure where the hostess was. As soon as we were seated we were helped by a very pretty and sweet girl. Our food took a while even though the place was pretty dead, but what we got was satisfying. We started with the nachos which were really good and then I got their jalapeno burger and my friend got their pork sandwich sliders. The fries were seasoned well and crispy. The service needs some work: nonexistent hostesses, disappearing servers, slow cooks, but this place could be a real gem.", "type": "review", "business_id": "K845ZDttFfx99zQ-0aE2tA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ab6te7czFqcMEJemHcyxsg", "review_id": "0aSLyHSgBFJCoDt523DH3w", "stars": 2, "date": "2009-12-21", "text": "Walking in to Five Guys, I was rather excited, and was looking forward to my experience. I have never been to a Five Guys before, so this was something new. My first reaction upon opening the doors was the music was blaring. Too loud, at least. The music was classic rock, which I don't mind. After walking up and reviewing the easily understood menu and waiting in line for a few minutes, someone took our order. The order taker seemed like she was having a long day, not seeming very interested in the customer. While taking the order, one could clearly see the kitchen. It seemed kind of like In-N-Out, but everyone was moving much slower. It was as if everyone was moving in slow motion.\n\nMuch to my dismay, they did not offer Dr. Pepper, my favorite soft drink. I was surprised that they offered other lesser known drinks, but not Dr. Pepper? Come on. After waiting about 6 or 7 minutes, my food arrived in a bag. A bag? Really? I was planning on eating inside, not take out. Even McDonald's does better than that. Digging through the bag I first took out the fries, which were in a cup, and I took a bite. My first impression of the fries was they were nothing special, and too salty. I like salt on my fries as it adds flavor, but there was simply too much salt. As a result, in addition to the fact that the serving was quite large, I finished only about half of my fries.\n\nNow onto the burger. I paid about $10 for my meal, so I was thinking to myself that this better be the best burger I have ever tasted in a long time. Unwrapping the product in its tin foil wrapping, I noticed that the presentation of the burger was sub par. The burger did not look appetizing, at all. Almost disgusting, as a matter of fact. The cheese was dripping over the bun, and I couldn't even see all the ingredients on the burger. Taking my first bite, it didn't taste bad. A pretty classic American burger taste, I must say. It did taste rather close to Wendy's. \n\nUpon finishing my meal, I was not impressed. My stomach felt greasy, and I felt the need to go hike a mountain a couple times, which I did, as Tempe Butte is close by. I felt my stomach almost on the point of rejecting it, it was that greasy. Seriously. Overall, Five Guys is way to expensive, unbelievably greasy, and makes your stomach cringe. The atmosphere is nice though, thus the two stars. \n\nIf you had to choose between Five Guys and In-N-Out, INO is the clear winner in every category.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "KnsWpD1e_hMoAVcN0ftiGw", "review_id": "4O_CjEJ9oDWWlHLTAEXEgw", "stars": 5, "date": "2012-11-12", "text": "OK, Where do I start?\n\nThis place is AMAZING! I love the food here, especially the fact that you can eat and watch a movie at the same time! Forget about the movie theater popcorn, you can get a rack of ribs here while enjoying your movie!\n\nBefore the movie starts, a waiter walks around with an iPod touch taking your order, usually during the previews. During the movie, you can press the Service Light to add more things to your order. About nearing the end of the movie, you will get your check, so make sure that if you want more food, get your orders in before the movie is over.\n\nPricing is good, it costs about the same as a dinner and a movie separately, why NOT kill two birds with one stone and get it all at once? The seats are REAL COMFORTABLE, as long as you get the love seat, or leather seats, just don't get the \"office chair\" seats, as those are like....sitting in an office chair for 3 hours watching a movie ;).", "type": "review", "business_id": "Yhfp_vgnh_GirZGeVhj7Gg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "uiur8sopp0iYRORmtj9cfw", "review_id": "7hI-uWCBw37Y0WHUAuOzQg", "stars": 5, "date": "2011-07-29", "text": "I've been in a handful of times, and last night was also no disappointment. After looking for a place to have a glass of wine late, I ended up here, as 3 or 4 other places in Old Town were either closed (Napoleon's and Tapas Papas Fritas both closed at 11 PM??? Well, Napoleon's closed forever, so I heard, but won't believe...) or dead. Citizen had a multi-course private affair they were finishing up. Kazimierz had some kind of themed jazz party going and was raucous and demanded a cover charge. But good ol' cosmopolitan-cool AZ88 was next on my list, where I had a fantastic Pinot Noir (and Tempranillo), cheese plate (their kitchen stays open till 12:30 every night), and warm and friendly convo with spot-on bartender Steen. Another bartender came in later and was relating his favorite summer drinks in a bon vivant fashion. They do have a killer Moscow Mule which is served in a copper tankard to keep it cool. \n\nI've been coming in here, on average maybe once or twice a year since around 2007, and let me say at AZ88 the good things don't change. They still have a tantalizing food menu (they are a full boar upscale restaurant), and a drink menu that, together, rival anything else, really, in Lower Scottsdale (and in much of the Valley). Not to mention the atmosphere that for me has the perfect combination of sophistication, decor, music (4 more stars for the DJ's mellow-ambient rhythms) service, and vibe that indulges all the senses wonderfully. I'm now making this place my default destination for treating myself or a date like VIPs, as they've shown what it takes to to be among the best at what they do.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wNqwKWaRjClmcKsoJJRFow", "review_id": "3W5xNpLoORZZDF-JCwnFTg", "stars": 3, "date": "2012-01-13", "text": "I don't really get what all the buzz is about. Coming from SoCal I think In N Out has this place beat. I can get a small burger and small fries from Five Guys and I am beyond full the rest of the day. The Cajun fries are OK but I kind of freak out when the bag carrying your food gets stained from all of the grease.\nWhy I'm giving three stars instead of two is that I JUST discovered their hot dogs and those are FANTASTIC. I never need to have another burger from here, I'll stick with my double doubles......but the hot dogs???? VOILA!!!!\nAnd their soda machine is really cool too. It's touch screen so once you pick your soda, you then get to add flavors. It's really cool. If they had a soda machine on The Starship Enterprise, it would be the soda fountain from Five Guys....except that it would have to be voice command.\nAnyway, I'll be back for the weiners and to play with the soda machine", "type": "review", "business_id": "qVN-P0aov4z5oknS12Cq1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_AuFTKgNYxqNFPyZMeA0qA", "review_id": "eIC9EZtzQkekZ-0_Z0culA", "stars": 1, "date": "2009-07-30", "text": "This place is pure crap! The players are sub-par and un-entertaining, (especially Mike Clement and Julie Martinez). , and the door men are ridiculously cheesy, and rude. \nI'm a regular at piano bars all over the country when I'm traveling (Pete's Piano Bar in Austin, Howl At The Moon in Scottsdale) and The Big Bang in Tempe is a terrible destination. Save your tips and bar $ for the aforementioned places and take my word for it.", "type": "review", "business_id": "Q_jHqufNoxdlgCtLbqrpsA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qRo9gHN5OiV1-peDuhCh-g", "review_id": "B4pRRXdQW2Lyr67wxQtWaw", "stars": 4, "date": "2011-07-31", "text": "Superb beer selection. Music was really nice and at a good volume. Really a great place to hang out and have a drink. We missed (aka were too tired to stay up past our bedtime) a jazz jam session. Will have to grab a coffee and hang out next time because I miss me some good jazz. It's so hard to find in Phoenix!", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Nl8kUgXO4zbnuWa7hm_aWA", "review_id": "vqfZcQXWkk-JfSMwMVQP8g", "stars": 4, "date": "2012-11-21", "text": "Upscale restaurant on-site at the Wigwam. The hotel's location means that there are few full-service restaurants close by - so we chose to eat here. We were very glad we did!\n\nService is great - fast, friendly, and prompt. Food was terrific (ribeye for me).\n\nWould definitely eat here again.", "type": "review", "business_id": "ypEtwQHobNJCZvPONO38WQ"} +{"votes": {"funny": 14, "useful": 15, "cool": 13}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "r4xT1urBMYKHXfxxui8Jlg", "stars": 4, "date": "2007-05-14", "text": "Cozy, cute and yes, a little claustraphobic...Coronado Cafe. Perhaps the latter adjective is my own issue, but at 5 foot 9 inches I felt REALLY tall. An adorable little home, with creaky wooden floors transformed into a comfortable cafe with approachable American fare. After navigating the dicey, sandy, lumpy parking lot I accidentally entered the kitchen door. My bad. I was redirected to another door and entered through the rear. Yikes did I just say I entered through the rear? Anyway a lovely staff person told me to go to the front and check in. Meandering through the cafe I really did find it lovely. Very neat, old yet modern and strangely very loud. It was a booming lunch crowd on a Monday. Taking Mom and Dad out for a Mother's Day lunch. We waited a few minutes for a table and were constantly being said hello to and asked if we've been helped by a friendly, friendly staff. Shout out to the staff! The menu, while not especially inventive, seemed fresh and yummy. The soup of the day was a tortilla soup with its own stamp on it. No tortilla strips atop the cup, yet and especially flavorful soup, creamy with a twinge of tanginess to it. Mom and I both had the turkey sandwich with cranberrry sauce. HUGE mother of a sandwich. I always wonder about the big sandwich because you cannot possible bite into it without making a mess. Not a strike against them, cuz it was very good, bread was fresh and turkey seemed unprocessed. Dad ordered the ham and cheese, but stripped away all the interesting flavors, because, well, because he's a dad and likes the meat and potato type menu. Dessert was a wonderful and decedent brownie with ice cream, chocolate and caramel sauces. Very good. Brownie was more like a cake though. Again, no complaint, cuz it was dee-lish. Service was so great I have to say. Friendly, professional and fun. I like the idea of eating in an old house. The contrast of old Phoenix with striking photography of modern New York strewn about the rooms was quite cool. I recommend a visit. I'm craving the tortilla soup and would love to try other items on the menu. Most importantly it was a wonderful way to hang with mom and dad (who ventured in from Sun City in their mini van, navigating the Central Ave. mess, God Bless 'em) and we truly had a good experience. Coronado Cafe. Cute. Cozy. Comfortable. And in the end, not so claustraphobic.", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "usyCze4iT4H8v3Q8Y7-XLA", "review_id": "3dHALSb_v2dzzMeLlr4cVg", "stars": 1, "date": "2011-11-19", "text": "If we hadn't arrived after a tiring day and prepaid online, I would have checked out. Furniture missing. Security bar sheared off. Faceplates for wiring gone. Furniture handles missing. Bobby pins and scraps of things on carpet - hadn't been vacuumed. Two remaining chairs badly stained. You wouldn't want to sit on them. No uniforms or name tags on staff. Pick another chain. The reviews for the other Ramada's in the area - which I read after the fact - reflect the same things.", "type": "review", "business_id": "TtdQtqjvN_K4449boXaU1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IbNzF_SIdZioYbLnL6F5Vw", "review_id": "zyKV0-TlAdmLEEh6Klv6wg", "stars": 5, "date": "2010-04-20", "text": "WOW. This places is incredible. I can honestly say that everything on the menu is wonderful. It's the perfect date place, since you can order booze to cure the date jitters. Also, you can satisfy your dieting girlfriend and still order a big plate of \"man food\". The best part about their menu is the fact that it is SO TASTY with being HEALTHY. The extra care in picking ingredients, grilling/cooking with little fats, and unique spice combinations truly makes PJ stand out. The decor's nod to local artists also helps make the dining room an enjoyable place to be. For a perfect healthy and satisfying vegetarian lunch I recommend the following: A small Greek salad with an order of the jalape\u00f1o or roasted red pepper hummus (PS: they'll let you order the hummus half and half!)", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "j2Zx2PYK7TdxtEPlvRmD1w", "review_id": "5-OpMBN0GGKmZjmBY0sZXA", "stars": 1, "date": "2012-12-20", "text": "Still a place that is unacceptable in my book--especially when a server there goes out of their way to message me privately on Yelp to complain about my punctuation, and signing off--every so \"sincerely\" i might add, with: \" love the B*tchy waitress from AZ88.\n\nWay to keep it classy over there.....", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5gmnzvjYprzK21Q5awYF_Q", "review_id": "gqlMr1IZw2WwZhn-jJsoxg", "stars": 4, "date": "2012-12-09", "text": "I love the concept of this place. There are three different restaurants each serving breakfast, lunch or dinner. This was the first time I went to the Farm Kitchen, since I usually go to the other place for breakfast. Anyway, their lunch did not disappoint. What I love about their place for breakfast, was delivered for lunch. There were yummy sandwiches, salads, side dishes, and dessert. I ordered the chicken salad sandwich and it was perfect. It was loaded with mayo, which I hate. It had full of flavor! I ate my sandwich outside in the sun surrounded by trees. Great place to take visitors too!", "type": "review", "business_id": "hBHkHYOk_E-6EgObC6MTdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jXj2c5sEOoHIc59-BSkxEA", "review_id": "cERN_MjgGv74n9Z_mMr6bg", "stars": 4, "date": "2011-05-08", "text": "I would recommend a visit if you happen to be in Scottsdale. Papago has a beer for every type of beer drinker. They have 100's of bottles in clear panel refrigerators, and 30 taps some of which are house brewed.\nThey have a great beer selection and awesome wings. What more do you need from a beer spot?", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yZHGqCWs678-5SSz0mWsVQ", "review_id": "zMBNAdUL7VMeoDv-xO9foA", "stars": 5, "date": "2012-10-20", "text": "I am from New York and always asked where do I get best pizza? Hands down Lamps Pizzeria is the BEST!!!!!! Always fresh ingredients and friendly staff and owner.", "type": "review", "business_id": "s685YHkO3lcId41bjp5KOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "My9DUYlhgwARA-6JJ8_Y6Q", "review_id": "s5yILQYwrO2f0D6wSApMSw", "stars": 3, "date": "2011-01-31", "text": "I decided to check this place out after getting a coupon in my Savvy Shopper magazine for 25% off. I am a fan of all of the little self serve yogurt places popping up but I must be honest that this place is no different than all of the rest. Be careful that you don't overload your cup or you will end up paying a lot by the time they weigh your dessert!", "type": "review", "business_id": "irVjrnurmB03bTaj9BXofg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IeWasXNEkwqQfil8twvRkg", "review_id": "9v_NBE0-Wm4gbhijay2Z1g", "stars": 3, "date": "2011-11-24", "text": "fry's is conveniently located at w germann rd and s alma rd, has a reasonably large selection, and prices are fair. when grocery shopping, i look for and purchase items based on the best value in terms of product, freshness, selection, and convenience. i check the weekly sale ads and circle the best buys usually at 3 different food & drug stores. since these are consumable, recurring items, i will look for opportunities to stock up when great deals come up. the site is clean, well stocked and well organized. common purchases include some baking goods, packed meats, breads, cereals, canned products and eggs. a surprising find...there's a sushi kiosk at the back of the store near the packaged meats section. so, i buy the freshly made sushi - spicy crab roll, cali roll and tuna roll. it's actually really good. i usually shop for produce elsewhere, same with laundry products, beauty products and dog food. those reviews to follow soon. scored a little lower since parking is usually a near-accident on the weekends, with so many vendors and customers-in-such-a-hurry at that busy shopping center.", "type": "review", "business_id": "6W9TRKrb72ZLl0h1KWvC1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "cjfJ3TqjaHJub-4k8Y4XFg", "stars": 3, "date": "2007-03-21", "text": "This is the \"other\" Coffee Plantation that I always forget about even though it is right by where I grew up. Weird, huh?\n\nActually, it isn't weird. Because this Coffee Plantation blends into its stripmall surroundings so seamlessly that you totally forget it's there. They take absolutely no chance with decor or ambiance. For all you know, it's part of the laundromat next door. \n\nCoffee isn't bad and it never seems to be too busy so it's actually an undercover great spot to get some things done without worry of distraction. Not sure of the wifi situation, but a good book on a rainy afternoon and this place would suit you well.", "type": "review", "business_id": "mUMikdLRJxeet5uWWGQeZQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "bmDivXQy-KB4_dPIS9ZA8w", "review_id": "pj8P3WZb2Ub_Fh30-hKAhQ", "stars": 4, "date": "2010-02-25", "text": "The employees at this location are sooo nice! Even when it's super busy they are still very friendly. My favorite thing about this place is it's open 24 hours! If you want breakfast for dinner or a milkshake at midnight you can have it! My fiancee enjoys their french dip sandwich whereas I always try something different. I just had dental work and have been eating like a senior citizen, so I opted for the mac n cheese. It was warm and gooey with a crunchy cheese topping- a great comfort food. Late at night this place is especially fun because of the people watching.", "type": "review", "business_id": "GpK9MeUjEd7rwhejG2ykww"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "mAuBHENS_DeFCQqrJC_UxA", "review_id": "IQm2Q-kfCwBbgApSeOjRdg", "stars": 5, "date": "2009-05-09", "text": "Hertz Gold Club service worked perfectly for me. My Toyota Corolla, booked over the internet, was in its bay and ready to go.\n\nThe buses to and from the rental centre were frequent and painless to use.", "type": "review", "business_id": "vORNz1hg_6zcNZ7KFvkL7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8n4SarsuI9Km6lEtydiE0w", "review_id": "-izfvgHPidDQJRMkg5qUUQ", "stars": 5, "date": "2012-07-12", "text": "Umm this place is awesome. I got a bike basket for 25 cents. 25 cents! Too often these days I run into \"thrift\" stores that miss the thrifty part, but not this one! It's fun to shop and you may end up finding a truly good deal!", "type": "review", "business_id": "zgobrpk3RbFz6o2M4uSl8A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ClItHsk05vOKhg4O3DtMqw", "review_id": "eAdHH-zHy3qvAzSQl-ujpg", "stars": 5, "date": "2009-09-04", "text": "I work right down the street from Press and have been a huge fan from my very first visit! The staff is unbelievably friendly and extremely passionate about their craft! Everything from the food to the coffee is first rate! They always accommodate my special requests (a little more of this, none of that) and always make good suggestions when I'm looking for something new.\n I love the yogurt and granola parfait (strawberry and vanilla yogurt for me with a bit of honey and light granola) for breakfast with a white chocolate latte. Also, the breakfast burritos are perfectly creative and filling. For lunch, my favorite is the cactus club panini with a small side salad.\n Also worth mentioning is that they have the VERY BEST iced coffee around. They call it an iced toddy and any one of the employees would be happy to tell you how it is different from regular coffee. I just know that it tastes amazing and seems to have a bit more of a caffeine kick!\n My favorite part about Press are their delectable desserts! The berry mascarpone cake pretty much makes you feel like you've won the lottery. And the ghirardelli brownies and chocolate chip cookies (warmed up) are a weekly addiction of mine.\n Starbucks is a thing of the past. I'm lucky to be in close proximity to Press, but I think I would even make the drive just for that mascarpone cake!", "type": "review", "business_id": "Kqn4J9NTgZdMAnV4HuYh5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fMfy2O2nPk3XWWmWSbszag", "review_id": "DN4qtQNZSG0yZ-WW0xgcew", "stars": 4, "date": "2011-03-10", "text": "This is my favorite place to get thai and I have not found a place to rival it.\n\nNow it's not perfect. I got on a regular basis (they know me when I walk in now... I go that much). The service is either great or slow, and the heat ratings varies enough that you can be surprised. The decor isn't fancy and it's hard to find from the street.\n\nNow that being said, the food is always great and across multiple dishes on the menu. I'm always satisfied with my lunch. \n\nIt gets busy every week day during lunch because of the Intel crowd so show up before noon. For dinner and the weekends, it's never that busy, so a great time to go if you have time.", "type": "review", "business_id": "vtQOervVVTXjhvSZQiZ6PA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "m5-3onu1zp4l50V-PmZKgg", "review_id": "nCzTSOBLvRfsXr208sHDYg", "stars": 5, "date": "2012-10-11", "text": "I have used Sandella's on three different occasions for catering lunches to business offices. \nJeff ( owner) does a fantastic job at not only running a great business but also with the quality of food he prepares for customers and excellent customer service and catering as well. \nMy offices that I bring lunch to love this food fare. It is a healthy alternative that many of my offices are craving after having so many lunches brought to them that weigh them down and make them feel like going to sleep after lunch. As a part of our healthcare community this food is something I feel confident about bringing to my colleges and offices that I visit. It taste great, it is made with only the best ingredient personally selected by Jeff and it is best of all , healthy.", "type": "review", "business_id": "cc9KFNrcY9gA7t9D1a3FpA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qXgmDv3GbOJJA9wWH5f3bg", "review_id": "zQ-Iki7tvOzmY_u5QQy24A", "stars": 4, "date": "2012-07-01", "text": "Went here tonight on a date with my BF. I was pleasantly surprised with the atmosphere, service, and food. All the ingredients were fresh and yummy. The Chow Mein was the best I have had in years. The staff was very friendly and attentive. \n\nI would give the one sushi roll, Golden Cali Roll, we got a 3.. it was just ok. The BF liked it more than me.", "type": "review", "business_id": "BINYfrtGp3A4w0d5E7kbYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gx9KOExE39H8KxufkKMR8g", "review_id": "4wnR-nqmfy2LyrWh2tMhOg", "stars": 3, "date": "2012-10-05", "text": "Good salad options. It is definitely tough to mess up lettuce and veggies. As for the rest of the selection, we must have just come on a bad night. The pasta was overcooked and mushy, not even close to al dente. Fresh fruit selection consisted of only 3 fruits, not exactly a vast selection. If you want a good salad, definitely the place to go.", "type": "review", "business_id": "-JL0CWSLkkzFHZXlctnf8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oQZeITmS8rppOi9YukhbaQ", "review_id": "-g3M_jmXAMN_FZ9x8L5uHw", "stars": 5, "date": "2011-12-30", "text": "I stumbled across this place after missing my usual Light Rail stop on my way to pick up a Zipcar at the downtown ASU campus.\n\nFirst I tried my usual caffeine fix...a nonfat double latte. Excellent.\n\nSecond trip back, I gave the breakfast burrito (plus bacon) a try. Delicious. The tortilla was as good as everything inside.\n\nThird trip, a beet salad and a bacon chocolate chip cookie. Bacon and chocolate for the win!\n\nI've been here three times and have not been disappointed. The decor is modest, but functional, as it should be at a good business with honestly good food. The barista is not only knowledgable and skilled, but is also a genuine sweetheart.\n\nIt's just a couple of blocks from the Jefferson and First Street Light Rail stop (East bound), so I've been stopping by on my way to work.", "type": "review", "business_id": "O7fXh4ODsi--5LmJKTHn2g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "cHnlIFP5WwJRer7_C2NUng", "review_id": "FSFkimdBRyZ3fEDbosRaLA", "stars": 4, "date": "2008-10-26", "text": "I went to Khai Hoan yesterday and ordered the rare beef pho. Now, this is the first time I have had pho before and I would say it is much like a glorified bowl of Ramen Noodles. That said, it was good. To me, not great, just good. We got the combination appetizer plate. The spring roll was amazing. The crab was great. I didn't like the \"egg roll\" as much as I thought I would, but it was definitely fresh. I had fresh coconut juice to drink and it was delightful. I would go back again for sure, but I would be ordering something other than the pho.", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "BDQjq30H2gFncFvaapvm6A", "review_id": "FPsHBn4QoPRQg0o57N9ckw", "stars": 4, "date": "2012-04-09", "text": "Cesar Chavez park is the best that the SW Valley has to offer! Located at 35th Ave & Baseline at the base of South Mountain, it's a great location for the residents of South Phoenix and Laveen. I've seen it very busy, but it also seems to be one of the best kept secrets in SW Phoenix!\n\nThere is ample seating throughout the park, including ramadas and benches. A 1.1 mile trail wraps around the lakes in the center of the park, making it perfect for runners and walkers. There is a small tot lot and playground on the east side of the park that families will enjoy. No matter what time of day you visit the park, you will find people around the lakes fishing. Be careful- a friend once tripped on a fishing line that a careless fisherman didn't remove from the sidewalk and broke his elbow!\n\nDrawbacks: this park is always dirty, as no one seems to clean up their trash after visiting and it is not safe in early morning or evening hours. Otherwise, enjoy one of the better city parks!", "type": "review", "business_id": "AlspsoZqH1LGCIBgnCAEuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LQAiv1A7xc30IRwm-EpwUA", "review_id": "6W0l6YPlPL3-HJmW0O-wmg", "stars": 4, "date": "2012-03-15", "text": "My wife and I originally went last Sunday only to find it closed. But since I had a Groupon deal I purchased last month, we went back Wednesday night to cash it in. And we're so glad we did. Kind of hidden in a shopping mall with movie theaters upstairs, we were quickly seated and served our drinks with chips and salsa. My wife ordered the fish tacos (2) with rice and black beans. Tacos and rice were both good. Black beans so-so. I ordered the Cuban sliders. 3 mini sandwiches w/ham, cheese, and a Cuban seasoned beef - oh so good - with a side of sweet potato fries. Wasn't a fan before. But now I am. Fries were hot and crunchy. I could only put down 2 and took 1 back to our hotel for breakfast Thursday. Would definitely return for another meal when in PHX again.", "type": "review", "business_id": "KBKDl08flVw1AqvM5ucVpA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "oIVsVM8H273aoT1JUmsDIg", "review_id": "p3wQa2i7KR_53cvRcieMAg", "stars": 4, "date": "2009-11-22", "text": "The main reason for the four stars is for their Angus Roast Beef Dip -- it is delicious! It is up there on my list of favorite French Dips. The meat is super tender and juicy, and the horseradish spread really compliments the sandwich. Plus, it is a great condiment to dip your french fries in. \n\nThe portions are huge -- my sister ordered the Sesame Chicken Salad and she barely ate half of it. I, of course, devoured my sandwich. They have a huge menu, with a lot to choose from. They seem to be known for their pizzas, which look really yummy too.\n\nThe atmosphere is similar to most sports bars, although I'd say this place is more of a \"high-end\" sports bar with chandeliers and mood lighting instead of ripped vinyl and dirty blinds. There is a massive flat screen TV. above the bar, and little ones interspersed throughout the restaurant. The wait can be a bit long on Friday nights and weekends, but you can call ahead to get your name on the wait list. And, they are nice enough to offer you some small pizza bites while you wait.\n\nOverall, BJ's is your standard chain restaurant/sports bar, but with a few extra niceties to make it stand out above the rest. I'll be back for sure, and maybe next time I'll venture outside my love-for-the-french-dip and try some of their other goodies.", "type": "review", "business_id": "i213sY5rhkfCO8cD-FPr1A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "PvCYySMGaIqknBgobceLzg", "review_id": "fnzmOhh79nb1qaRocnJ7Jw", "stars": 4, "date": "2009-04-23", "text": "As a travel consultant for cre8adventures.com, we came away impressed. This is a moderately priced getaway of unquestionable value. For travelers seeking style in an in-town locale, this chic desert retreat may currently fall behind the Mondrian, but it easily surpasses Chaparral Suites next door. The staff is showing off its Kimpton training, and the service standards were very welcome. This hotel gets high marks on all fronts.\n\nTaggia, the hotel's new restaurant, is a stylish Italian venue with a unique Ligurian-anchored menu that features fresh seafood and creative traditionally inspired dishes. A large kiva-style fireplace warms the alfresco section, and waterfalls surround it.\n\nThe only downside is that Kimpton hasn't fully finished up on the room makeovers yet. Compared with Kimpton's usual attention to room furnishings and design, these digs are mild-mannered. The older patterned carpeting was disappointing.\n\nStill Kimpton has done an admirable and feverish job at making over this property. Kudos.", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3c90aAhf_LjlQ_Y0YgXhEg", "review_id": "UUofuaCU-tVqF69dfZv_8Q", "stars": 4, "date": "2012-05-03", "text": "They are wonderful!", "type": "review", "business_id": "rE2InW2Jmjy6hzH3p4Iyjw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "IKZo2YnM2EaVwQ-N4b1m-Q", "stars": 2, "date": "2011-05-26", "text": "I prefer Petsmart better because they have a better selection and prices. I like Petco for their cookie bar so I can pick up some cookies that are friendly for pets for my pets. That's basically it, I only shop here on occasion because of the location. Go to Pets Inc in Tempe instead for a real shopping experience.", "type": "review", "business_id": "M3o2COfApfB9et5AwDZ-Pg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Sr-wB9G8KflQjbAS8Q3HQg", "review_id": "57LhN8-B5Gjnso6ogOmM0g", "stars": 2, "date": "2012-07-16", "text": "ALWAYS trying to upsell me on a number of services...high pressure too. I usually point out something that needs special attention (dog hair in the back seat, crumbs on the floor, etc) and they consistently proceed to do a half ass vacuum job. Two stars because the outside of the car usually looks nice and the inside is wiped down pretty well.. Overall, however, these guys need to step up their game. I used to bring my car here when it was under previous ownership and was always pleased with the service. Now I would prefer to drive 10-15 miles further to get a superior car wash.", "type": "review", "business_id": "H8oFMvZBeMDhCeeWGvQQdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4qGR9kNFDYQ4mQREG0aRJA", "review_id": "ZQsXwUotE3eDPQlL3w1iDQ", "stars": 3, "date": "2009-07-02", "text": "We were still on a search for New Mexican food and I read up on this place and it was also recommended by a friend. It was average, not very New Mexican. I tried the pecan grilled shrimp tacos and they were good! My boyfriend got the stacked enchiladas which was just ok. Still on the hunt for good New Mexican food in AZ.", "type": "review", "business_id": "s9XNBJAZ3ZcNW5u8BRZXuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "KF5Tq7SEi5ErIk6hDaEtRA", "stars": 5, "date": "2011-07-11", "text": "great wine selection except they are always out of greg norman and ive never got to try it", "type": "review", "business_id": "4xofmDvGh2aD8Lgd0PH8GQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9FbgqZ5u9WTLAs28nNafIQ", "review_id": "kXi4Qi3jq31ztIIFGT5n8A", "stars": 3, "date": "2007-08-13", "text": "This place gets an A for effort, but I think it falls slightly short. It's neat/cute that the wasabi is actually blue, and some of their rolls (like the pink dyed rice for the Marilyn Monroe roll) are innovative, but the food is only a little above average. I liked the rolls okay, but the best thing I put in my mouth was the shrimp tempura appetizer in the martini glass. That appetizer is to die for! The miso soup was pretty good, but not my favorite. We did like the fact that there were only a few tables and it wasn't a huge place with a million people, but the food just wasn't what we expect. We are going to continue hunting for our favorite sushi restaurant in Scottsdale.....the service here was very good, though, which made the experience pretty pleasant overall.", "type": "review", "business_id": "12Abu2ipAXn5RfXe9y_pdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z0_C4HRVvkLkyEsVGGMnkg", "review_id": "zvbIvnurRt0vZ9h9rRf5Bw", "stars": 5, "date": "2011-08-31", "text": "Great fruit and vegetables. Bulk items like nuts and cranberries are a good value. Check out the meat and deli. Cage free chicken and grass fed beef. Salmon and Tuna are fresh. They do have some good values here. The cashiers are good and give the nickel bag discount.", "type": "review", "business_id": "JXBdcBb3ivm89fhr6-yfSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "WuRcr-ina19oJxxZgMdd-g", "stars": 5, "date": "2011-08-10", "text": "I like their seating area. It has a nice sized inside area and also a bright outside area that is tucked between a walkway and another store. One of my favorite locations.", "type": "review", "business_id": "QIHyWCBG3ftvXbGdHQKdHw"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "o33IBagNFxdJhIrRTl691Q", "review_id": "z5uXQbUqJVwONdETb_qfMw", "stars": 3, "date": "2009-02-19", "text": "I didn't have a fully immersed Portland's experience, so perhaps I am selling them a bit short, but as far as my experience went, it was A-OK.\n\nWe stopped in because of its proximity to the light rail and our need for alcoholic refreshment. We had a couple beers (small selection - but we found something we really liked) and a glass of wine (reasonably priced, tasty) The service was fine, the prices fine. Everything was fine.\n\nAnd that's just it. Does 'Fine' merit a 'Yay! I'm a fan', four star review. No it does not. Maybe the food is out of this world. Maybe at night this place lights up and sparkles in a way that the daytime cannot convey. Its on the light rail, so I may give it another attempt, but on first glance, Portland's is just A-OK.", "type": "review", "business_id": "PdRzCJWP7nPdYoHPdd5SOQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "sKXvBM91tMQZTS4bDsyZcg", "review_id": "opm2r2elICA-cezRB9isRw", "stars": 5, "date": "2010-12-20", "text": "As a real estate investor, I need contractors that I can truly count on to get things done for me. This means that my calls get returned in a timely fashion, work is done properly, quickly and competently but most importantly, that I get quoted a fair price for a good job. \n\nDon't give me drama and definitely, don't give me any bullshit excuses or sales pitches.\n\nI'm so glad to have found David and Tracy. They run a tight ship, they are extremely professional and I sensed their sincerity from the word hello and I talk to contractors and real estate agents almost every single day.\n\nThank you for a job well done. You have definitely made the cut as part of my go to crew, not only for my rental properties but as a highly recommended vendor to my Sonoran desert friends, colleagues and neighbors.\n\nCheers!!", "type": "review", "business_id": "aesdfSIJ3oVF0IGvDuZ8wQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Wj0r9VOpoIyRpaa6y5XGmA", "review_id": "pJF6hQThKNP686z-uGF-4g", "stars": 4, "date": "2012-07-02", "text": "We had a great meal here!\nI started with the cheap salad as I was craving salad. HIt the spot.\nHubby started with smashed irishman drink and loved. He moved onto a draft beer.\nI moved onto Fish and Chips-they were light and just the right size.\nHubby had beef stroganoff-he said it was tasty.\nWe ended with the fabulous salted caramel-my fav thing of the night.\nI think the bill was $62 before tip-pretty reasonable to me.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "byYAUve4mM9cP5J0GeL2Ow", "review_id": "nmaQbP9ctNku7GHjEofb0Q", "stars": 4, "date": "2010-07-13", "text": "*Gamestop Burger*\n\n\nVisiting a friend in Phoenix I first see Smashburger from the street. Upon first glance my other friend and I thought it was a Gamestop cuz the sign looked just like it. We both said \"Haha, we thought that was a Gamestop.\"\nOur friend goes, \"Yeah I first thought that too when I first saw it. It's pretty good there. Do you guys wanna go?\" \n\nSo we ended up eating our first meal in Phoenix at Smashburger, and we were glad we did. The food was really good, and the smashfires were a great addition to our burgers.\n\nI ordered the BBQ Bacon & Cheese. It was quite delicious, and a little on the greasy side. BUT that's where all the flavor is!!!!!\n\nThis burger has some hot steamy buns. Yeah I said it .\nUnlike most places that use the typical sesame seed bun Smashburger uses egg buns. These buns are a lot softer and compliment the burger very nicely. \n\nI decided to order the smashfries which are seasoned with garlic and rosemary. These were an awesome choice. For those of you who may not like those flavors they offer regular fries as well. \n\nSeeing that I hadn't eaten since morning I also ordered the Arizona devil dog. This had guacamole, tomatoes, jalapenos, habenero cheese and a spicy chipotle sauce all on an all beef hot dog. I liked it. It was like nachos minus the chips on my hot dog. \n\nNow this place is on the pricey side, but if you feel like dishing out $8+ for a burger and fries then this place is not too shabby. \n\nDifferent locations call for different items on the menu, so don't be surprised if the Arizona devil dog cannot be found outside of Arizona. I say that they should combine all the regional menus to make one giant-mega selection-awesomeness menu. But I highly doubt that'll happen.", "type": "review", "business_id": "TuCAYZ89lP_s6D7Y78xNhQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "iwZ_7QuZ1tzT6pIZmOlDQg", "review_id": "LrwG8pXgEGakaoNcNKPCIw", "stars": 2, "date": "2011-04-07", "text": "Meh. Seems to be a little expensive for what you get.\n\nNothing \"wowed\" me at all.\n\nMany places similar to this one give you better food, and more of it for your money.\n\nBy the way - I tried this place TWICE and had same experience both times.", "type": "review", "business_id": "zSzE4rW9FE3fGqiEzZ91Vw"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "9MJAacmjxtctbI3xncsK5Q", "review_id": "83Qr8e79DJZJbBEma1Tzaw", "stars": 1, "date": "2012-04-09", "text": "I understand I'm not dude and so I'm not there to state at your \"twin peaks\" however, that being said I am there to buy a beer and when it takes the bartender 20 minutes just to get a beer I'm over it. So I was never gonna come back but was forced with a group of friends who wanted to eat and was just as upset as the first time. Fries were soggy and our server disappeared. We all decided were not going back. Just because your a good looking server doesn't give you an excuse for sucking.", "type": "review", "business_id": "CEswyP-9SsXRNLR9fFGKKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "K_gNqlirV0kppqCGnfGiOQ", "review_id": "b-HCYV8EvvyXHip5Fw9rHQ", "stars": 2, "date": "2009-12-22", "text": "Over the last 5 years or so, I've eaten lunch at Dilly's Deli a couple dozen times. The location is excellent, as it is near my office, and the interior d\u00e9cor is clean, modest, and charming. The music seems to vary, but on today's trip, it appeared to be a mix of oldies and jazzy easy listening. While I've never had to wait for a table to clear, seating can be limited during lunch hours. The service is friendly and quick and the menu offerings plentiful and interesting. Vegetarians will find a handful of options here, though it is likely you can request to omit meat from any sandwich or salad. \n\nCarrying Boar's Head ingredients is a plus, however the way their sandwiches are assembled and the ratio of ingredients used simply doesn't work for me. Oftentimes, I find my sandwich has a bulge of deli meat in the center and much less (and sometimes none at all) toward the outer parts nearing the crust. It has been my experience that the wraps are not treated this way, though the only wrap I've tried (Mexi) lacked flavor and tasted processed. \n\nI've eaten one salad at Dilly's - the Greek - and, while it is tasty, I discovered a dead fly in it halfway through and haven't ordered a salad there since. \n\nAs other reviewers have reported, the soups aren't as piping hot as I'd like, though the variety and additional \"daily soup\" is appreciated. \n\nThe bread is deliciously soft, warm, flavorful, and large - ideal for accompanying a soup or salad. If you're accustomed to filling up on a sandwich made with normal-sized slices, I suggest ordering a half sandwich so you can sample a side of soup, salad, or dessert as well. All sandwiches are served with a pickle spear.\n\nThe cookies and brownies get 4 stars on their own.\n\nToday I gave Dilly's another shot and ordered a new menu item, the Red Bird, on wheat. Personally, I'm not a fan. The Blazin' Buffalo, Dilly Bird, and Smokey Mountain boast far better flavor combinations, IMO. Also, my pickle spear had a hair on it.\n\nDilly's is a bit pricier than its nearby competition (All whole sandwiches are $6.99), though a reasonable price if shared.\n\nOverall, this is a higher quality sandwich shop than Subway, Blimpie, and the like. Unfortunately, the fly and hair experiences combined with the bread/meat ratio issue guarantee I will not return.", "type": "review", "business_id": "x-lEn6WxwqSNrdYdgjRsyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "57a1sTcwVkNVsxGO_h_3Yw", "review_id": "H28ewjaDAydOLfv6A-tUsg", "stars": 2, "date": "2006-06-03", "text": "This Baja Fresh really didn't impress me. It's pricey considering that all you're getting is meat in a tortilla. It doesn't have that Mexican feel to it and is unoriginal. There were bugs on the wall. The food is good however. Nothing special though. Since it's a corporate chain you can't expect sizzling flavor but I was left unsatisfied. There are better Mexican food places to go to.", "type": "review", "business_id": "R53UdKGf8uKUIqErS4vc0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "VXZz5o0Fv_hByWp2o6fOSw", "stars": 4, "date": "2009-07-06", "text": "True Food Kitchen claims to not be a health-food restaurant, rather a place for great food that just so happens to be healthy. Whatever you want to call it, when you sit down, you'll be handed a card explaining nutrition guru Dr. Andrew Weil's food philosophies and explaining their ingredients and food items until you no longer have an appetite. However, give this place a chance - it's not all about health at the sacrifice of flavor. The decor perfectly highlights the culinary concept, with clean, modern lines, big open windows, and LOTS of green. Andrew's Elixir, one of their refresher drinks, was delightful. The best food item we had was the caramelized onion tart appetizer, with gorgonzola cheese, black figs, and caramelized onions on a crispy flat crust. It was the perfect balance of the sweet mild onions and sweet figs with savory cheese and light, crispy crust. Our server said this is the same crust as their pizzas, so next time I'd like to try those. Next, we had the edamame dumplings, which is basically steamed won tons filled with pureed edamame in a light miso broth. These were good, not great. For our entree, we ordered the black cod, but we had to send it back because it was so fishy (and undercooked). When I asked the server if the fish is fresh or fresh-frozen, he said, \"Well, they're all fresh-frozen.\" Their fish entrees are $22, which seems inexpensive, but they're fairly small portions. For that kind of price in this type of restaurant, I would expect fresh fish. Perhaps the fresh-frozen fish is a cost-cutting measure in what seems to be the increasingly corporate Sam Fox empire. We went with the salmon instead, which was also undercooked but far less fishy. The roasted apples and pureed celery root were lovely, but the dish as a whole was a little overpowered by the mustard sauce, and the accompanying vegetables were weird. Prices overall are very reasonable, especially if you stick with appetizers, salads, pizzas, and sandwiches. True Food aims for the lofty goal of making great cuisine that just so happens to be extremely healthy, and occasionally misses the mark, but I give them credit for bringing Dr. Andrew Weil's philosophies on the importance of nutrition for the body and mind to the mainstream.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "FRHZ3iRRKr-XlZxrnAsKrQ", "stars": 2, "date": "2010-09-11", "text": "There are few things I cannot stand more than eating out for pizza-by-the-slice. Those are: slices so big they contain an entire days worth of calories and charging additional for traditional toppings. \n\nWhile I understand the appeal of this centralized pizza joint -- a slice is 1/4 the pizza itself. The crust is a couple inches high and the pizza itself is barely 1/4 inch. I had cheese and while cheese pizza isn't remarkable as is, the slice I had here was considerably unimpressive.\n\nWe paid $9.31 for 2 slices and a 20 oz beverage. \n\nWhat also put me off to this place was the cold staff and multiple things did not seem to be working right while there -- including their ice machine and their sound system (cut on and off). I was also not impressed how, never truly hearing of Sal's before, the employee made it seem like a chain of few. Go to their website and you will realize otherwise. This location is franchised.\n\nI will not return (unless I am not paying). Instead, I will take a jab at one of the other multiple fast food options on that corner.", "type": "review", "business_id": "0j2UisBk89SHqihr0IdlJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nkK3kbaiPAeR0puZ3GtZjQ", "review_id": "Ooh1nRWrpiND7mNpUt9_Mw", "stars": 3, "date": "2012-04-14", "text": "It usually takes a good word of mouth review from a friend for me to try a new Chinese restaurant. However, I was craving this cuisine and this restaurant is close by and tucked away in a small quiet strip mall. Wasn't busy at all on a Friday evening. We were greeted right away as we entered into the clean, open, no frills dining room. We ordered beef and broccoli, chicken fried rice and lo mien. As we waited our super friendly server offered bowls of egg drop soup on the house. The soup was a nice touch but nothing superb. I was satisfied with our meal but it was not the best I've tasted. Fried rice was a little bland. Beef and broccoli was delicious. Overall I'd say the service was way better than the food.", "type": "review", "business_id": "E93aiEHvf2secePlIeCxGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "FDJPcKtnVA48hfm36kf95Q", "stars": 4, "date": "2012-07-09", "text": "Surprisingly well organized displays for a location that regularly gets mauled by roving packs of shoppers. \n\nGreat sales and service, a pretty solid seasonal selection but not as comprehensive as some of the larger Anthropologies out there. The person who lays out the stuff at this store seems to space out the perfume bombs at a wider spacing so sensitive noses may be less battered by this store than some others in the Valley.\n\nThe clearance racks are gold mines for sizes 8+. They occasionally have shoes, bags and swim items being sold at clearance there from in-store returns. \n\n( Ladies 0-6 can enjoy amazing clearance picks at the Val Vista and US-60 location! That location also has stock from previous seasons since it is so far out of the way of the typical Anthropologie shopper.)", "type": "review", "business_id": "ORLTCEgKfdxMuGPhIc1O9Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "pA0i0S7HT6XBG6aSw1XK0g", "stars": 4, "date": "2012-01-07", "text": "Came here on a Thursday night and it was quite busy! Maybe all the snow birds are still in town. I made rezs and we arrived early,yet they had no plan as to where we sit. We ended up sitting on the Patio. Which would be nice in the summer or spring but , a bit chilly for Jan. They had 2 heaters outside. However, we were just a little to far away to feel them. We ordered a pitcher of the red Sangria wine, which they said they were out, but alass when they saw how dissappointed we were they made more! We were very happy about that so that gives them extra points. However, the Sangria was loaded with ice and there was ice in the wine glasses as well which made us even more cold. Skip the ice when it is in the 40's outside. We had the large Capresse salad which was excellant...The basil and cheese were huge and very tasty. Pizza was absolutly divine! Great crust ,wonderful mushrooms , and excellant Italian Sausage. Bathrooms were clean and parking can be a bit of a challenge. Lacks a bit of atmosphere. The busboys were very attentive i give them extra points as well they were really working hard.", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "fMUn3H7Y-hd14NaamqPByA", "stars": 2, "date": "2011-04-05", "text": "They play two kinds of music here: country and western. The place is about the size of my one bedroom apartment. It's a dive for sure. It's cheap though. But cash only. The food is actually not too bad for bar food. Overall this place doesn't impress much, but considering you don't have a lot of choices for Laveen, you can't really compalin either.", "type": "review", "business_id": "sKmclh-d2gJkzVVbLdTgtQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Q6H8EfK1mAfQ1nB6GSeMTg", "review_id": "xmN2Ui07Z2oK-cKcD9fzFg", "stars": 4, "date": "2011-04-22", "text": "Pretty good place. Separate bar area upstairs with lots of TV's for sports. Nice size portions. A little pricey, but big portions.", "type": "review", "business_id": "J3VvIU1ZDqg9a9e7zK-QSQ"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "QiR2X306Yzd9fuJdKDhkGg", "review_id": "JruecU8cRBHYBNdsp-mMkw", "stars": 5, "date": "2010-02-01", "text": "It's 1961 and we're having lunch in the courtyard of our Miami Beach hotel. Parker House rolls, sweet and salty, an open-face meatloaf sandwich with mushroom gravy. There's a surf board and a tiki carving amidst the flowers. But wait - something's wrong!! There's no humidity! Those are imported mushrooms in my gravy! I work to orient myself in time and space and find, what a relief, that I'm actually in Cafe ZuZu in downtown Scottsdale and it's 2010.\n\n The Valley Ho Resort, which houses the Cafe, is such a wonderful period piece. It opened in 1956 and was renovated in 2005 by a very wise design team that left the mid-century architecture and spirit intact. Cafe ZuZu is at the far end of the lobby, and its charming patio is surrounded with flowers. The decor is late 50's. If you're as old as we are, you'll recognize it instantly. The menu consists of \"Flavorful American comfort food. Familiar favorites with a contemporary twist.\" There are goodies like warm Maytag blue cheese fondue ($7.50), truffled grilled cheese ($9), beef stroganoff ($17), and (gross) tuna salad with cottage cheese which brings me back to my childhood a little too clearly.\n\n While waiting for our entrees, we received a basket of Parker House rolls. These are the nice squishy white bread treats that, if you can manage not to eat them all, make wonderful toys. You can mold them into sculptures, or shape them into little round beebees to shoot through your straw. My meatloaf sandwich ($11.25) was served on a thick piece of grilled white bread topped first with melty cheese, then the meatloaf, then the gravy. There was a mound of lumpless mashed potatoes alongside. They were so smooth Ken wondered if they were made from instant, but they tasted much too good for that. The portion was huge, I took half home (of course I knew I was going to have dessert). Ken had sauteed liver, beautifully prepared, atop a mound of kale that had been cooked with high quality bacon, sauced with a Madera reduction. He loved it. I surprised him by ordering a lemon meringue tart ($6) for us to share. There were several chocolate desserts that sounded good, but I had a vision of the mile high meringue toppings of my childhood. The tart had only modest swirls of meringue, but it had been made in such a way that it was creamy, as opposed to foamy, and it was really good.The lemon custard was the star. I remembered a gelatinous filling, but this was smooth and velvety, with just the right tart/sweet balance. The pastry was a cross between cookie and pie crust, and stood up well to the filling.\n\n This was not an inexpensive meal, but the portions are large and quality is excellent. Plus we had joined an organization called The Lunch Club, which every weekday, emails it's members a discount coupon for a restaurant in their specified zip code. So one of our entrees was free! (The discount coupons differ, some are 20% off the bill, others merely are for a free drink). But, to pay Cafe ZuZu the ultimate compliment - I'd come here and pay full price.", "type": "review", "business_id": "tdeHd2AVYlEnz9F1UGb84Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "69Q6PivlI-2ZWIqLlq5o5A", "review_id": "j_HMRt-rMm-2jefOqYOOhA", "stars": 4, "date": "2012-10-04", "text": "Coming from a place where there is mexican food on every couple streets, I have truly missed an authentic mexican restaurant or joint. This place is legit! Good tacos, good burritos, real good non-taco bell mexican! \nIf you want some real Mexican food, try this place out!", "type": "review", "business_id": "UJBSI5HydQgUhlTkC8ODDw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gdFcADm-9R4vra0VdALXkg", "review_id": "7ZbzSZtbP4rNqscdc49rzA", "stars": 5, "date": "2012-09-15", "text": "Love the carne asada.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P4XRTKPDREmWvPIg81CzUQ", "review_id": "0KGj22_xXQfH0hXNZGMCsA", "stars": 2, "date": "2011-02-17", "text": "I am a fan of taco stands in general, but....\nThis location consistently ruins my beloved bacon, potato, egg and cheese breakfast burrito. Every now and then they get it just right, but most of the time there's something missing from it. The bacon is frequently burned to a crisp, and the eggs...OH the poor eggs. They are browned beyond all recognition and sometimes just a thin layer of bubbly burned stuff.", "type": "review", "business_id": "1HNEj6kcEw369RX9Vlcixw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EXZrHtmzdtDHtH9MPNEhkw", "review_id": "ge71ru9yB0Uj3ms3SC0lgQ", "stars": 5, "date": "2010-09-13", "text": "St. Francis gives the impression you could be dining in one of the finest cities in the world, instead of the 5th largest cities in the USA.\n\nStart with their cucumber gin drink, and then order another. Goat cheese on crostini follows. Insist on extremely memorable whipped potatoes--a side order-- to accompany your salmon on red quinoa. Dessert MUST be the chocolate cake with peanut butter gelato accompanied by carmel sauce trailings and carmel corn garnishes.\n\nTry dining at the bar for an uncluttered view out the picture window opening, minus the glass.\n\nLoved it! Will happily return.\n\nThey split our entree for us AND were gracious about the extra trouble we caused--not a wimper. Truly superior service !", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "-kfkTOGKCkj1XfzWd7AkSw", "stars": 4, "date": "2011-11-15", "text": "Awesome Saturday breakfast buffet (until 11am). I wanted a resort style brunch setting to treat my folks too while they were in town. The service here is impeccable as are the grounds, which deserve a good walking through after you gorge yourself on heaps of fresh fruit, pastries, bacon and eggs. Located in central Scottsdale.", "type": "review", "business_id": "g-eZgnBDvSDguF8cUxKCkA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8qe2c5uRlAkvNFvDriBm1Q", "review_id": "kpvkiDOU0tD5ihodfqSgdA", "stars": 1, "date": "2012-07-01", "text": "\"No.\" \n\nIf you ask me about eating at Papaya Thai, that is what I will say. \n\n0 stars for the single kinda scattered and scruffy staffperson. \n\n0 stars for the cook who cannot prepare an offering from the menu as the menu describes it.\n\nIn this case, I was down to two remaining untried Thai restaurants within quick reach of the Valley Metro Limo, and both in Tempe. The other half was in Tampa, and since he does not care much for Thai, I get the chance to try one. \n\nThe limo arrived at Southern and Mill at 5:17 PM, and connected me with another limo at Broadway. With traffic, getting to McClintock took nearly 15 minutes. On exiting the limo, 5:50 PM, I walked back about half a block to the restaurant.\n\nOn entering the restaurant, I picked up a menu and rang the bell and a somewhat harried staff person came to greet me. He asked me where I wanted to sit, at a table with 1 bench looking directly into the side of a huge fish tank...or the next table, which would leave no buffer between myself and the only other table seated in the restaurant. \n\nThere are at least 120 seats in this restaurant. Why so fiercely contain people in the first three tables close to the door? You must get your business in fits and hurries and keeping only the 3 tables active is working for you? Then again, your telling me you are the only staffperson does not surprise me. The Help Wanted sign on the door was more than an indication that Help is NEEDED!\n\nWhen I was seated, staffperson offered to bring water. The phone rang and he was off, as he offered another version of \"I am the only staffperson here...\" I looked at the menu and made my decision. In the menu, there is a $2 charge listed for sharing. This goes against everything Thai I have ever known. The traditional Thai meal has everyone enjoying some of each dish served. Because of my proximity to the fish tank, I was quite up close and personal with the fish. The water probably isn't filthy, but the plexiglass tank is not helping the perception. \n\n6 PM, as the cellphone chime reminds me of the passing of an hour. I am waiting for water and a staffperson who can take my order. 6:01, the staffperson comes, bearing a pitcher of water and a (My eyes are rolling in opposite directions because I am either overworked or stoned) smile. He filled up my glass and asked if I was ready to order. I replied that I was and ordered Som Tom, the Thai name for the green papaya salad. Staffperson replied that he did not know the Thai names for the menu items. The phone rang again.\n\nStaffperson's attention was no longer on me. The phone, his Pavlovian stimuli, had taken him away. I asked if he had heard me. He replied that he needed to go answer the phone. He asked if I minded waiting, as he was the only staffperson. I said I would wait. Off he went, in pursuit of electronic interaction. \n\n6:10 PM, staffperson returns, apologizing for the telephone delay and asking about my order. I ordered the papaya salad without the green beans and steamed rice on the side. Staffperson took the order and went to the kitchen. The phone rang as he left the table, his pace quickening as he approached the phone. \n\n6:18 PM, the door opens and 2 potential patrons enter. The bell rings and staffperson rushes to the waitstand to greet 2 new patrons. \n\n6:20 PM, staffperson returns. He brings the salad and a bowl of rice. The salad that appears has some of the traditional salad ingredients along with ingredients that have no business being in the salad. Som Tom does not have cucumber, shredded lettuce or cilantro. On sending back the initial preparation, staffperson returned with the original preparation, advising the chef stated \"This is a traditional Thai presentation of the dish\". I sent the order back, citing the inconsistencies and asking for a new presentation.\n\n6:25 pm. As I empty my water glass, the salad I received previously is returned, minus the cucumber. In asking staffperson if this is a new presentation or if it is an attempt to correct the original, he replied that he did not know. I stood and left. While the advertisement on the window of the establishment says they have \"The Best Curry in the Valley\", they will get no second chance to prove it to me. For all the phone activity, there was no one who came to pick up a carry-out order. Between this and the somewhat glazed staffperson, I have to wonder if this place is not a front for a drug business.", "type": "review", "business_id": "km3g-wDO2KfhfnTvJrLJig"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dc3XOXCmEwhdjKwVSiEaPw", "review_id": "WUZ8N4cNNrN8X1XmYbsLSw", "stars": 3, "date": "2011-10-17", "text": "Cracker's & Company has always been a favorite breakfast destination. The food is always delicious and the selection more unique than other restaurants. My husband and I came in for a quiet Anniversary breakfast and although the place wasn't terribly crowded, we were seated right next to a table of ill mannered children and their mothers. I would have asked to move but our waitress was missing in action from the start of our visit. Before our waitress went MIA we ordered our drinks and entrees. In the past I have been given a small carafe of coffee but was only given a cup today which was disappointing. I ordered a carrot cake muffin when I ordered my entree and asked to have it served right away with my coffee. I also asked for the hollandaise sauce on the side of my \"New Princess\" omelet but it was spread over the top when it was delivered to my table along with my muffin. So much for enjoying my muffin with my one cup of coffee. However, the food was wonderful as usual. The service was horrible and the ambiance was equally as poor. I'd hate to see a wonderful restaurant such as Crackers lose their edge in this competitive food service industry. I'm hoping today was a fluke and the service will improve to its previous caliber.", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "zVwnqM2PcvXgnu8tscmS9g", "stars": 4, "date": "2011-03-16", "text": "I haven't been here in a while. I like how they have remodeled this Fry's, even though it is not even 5 years old, they revamped it a little. Today they had awesome deals for certain participating items. I am glad I read the flyer I got in the mail. I am glad I have their VIP card, I got a lot of stuff for only $45.", "type": "review", "business_id": "3gByPjJPMeTi1bKrvdNOdw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ywdRZsx3GSRHn92qdPLN4Q", "review_id": "3rObNTfPB-crd3qrm9sRsg", "stars": 5, "date": "2012-06-06", "text": "My wife called to have our vent cleaned since our dryer was taking over an hour to dry an average load. Our appointment was scheduled for 8 a.m. not for 8-12 as most places. He showed up at 8 and had the vent clean and working well. Excellent customer service and very friendly.\nThanks again,\nGary", "type": "review", "business_id": "DflKgFbxt9VuqjSoI21XFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_epzmxZ1Z9KNhtnKdDv4kQ", "review_id": "aVvyBUdYJ6BJbDbia38j2Q", "stars": 5, "date": "2010-12-22", "text": "WOW! I had read and heard alot of good things about Smeeks and I thought, \"It must be too good to be true,\" and while out shopping for a few items today, I was proven wrong. \nI walked in and I instantly felt like a kid in a candy store. They had candy, fun novelties, and I swear everything I looked at it made me think of a friend who would love to find it in their stocking on Christmas day. \nThe store was packed (it is 3 days before Christmas), but the staff was friendly, helpful and went around to make sure everyone found what they needed or if they needed a basket. \nGuys, I'll be back here throughout the year, and you should check it out. If it doesn't make you smile or make you want to sift through all the goodies, you probably kick kittens for fun (and that's not cool!).", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 5}, "user_id": "ApOSzkrrEza21WGcgLXkxQ", "review_id": "0i50QQFr7W0B37V02NyQRA", "stars": 5, "date": "2007-07-09", "text": "My husband & I are addicted to Cherryblossom's ramen. Mr. T is Japanese & I lived in Japan for @4 years, so take my word it's authentic.\n\nThe mix of foods is not so strange if you're familiar with restaurants in Japan. The ramen is Hakata style, made with a pork broth & may be heavy/oily for some people, so why not please everybody? Be sure to ask for \"Cha Shu Ramen\" to get a few more pieces of pork. (extra $)\n\nThe salads are also fantastic; warm lightly fried (10?)Shrimp on a fresh spring mix base with mango dressing, Shanghai Duck salad, and the Chicken Caesar was perfect, not heavily dressed like some \"roadhouses.\" \n\nMr. T & our daughter loved the Eggplant in Miso Sauce, & even the California Roll was good.\n\nIt's said Japan took the best of each country's cuisine. So there are French pastries, German beer, Italian pasta, and Indian curries. Save the banana bread for dessert if you can, or get one of their pastries. I've never have enough room.\n\nIf you like good WHITE bread, buy one of the Pullman loaves on the table by the front door. My first extra 20 pounds in Japan came from the good bread! (No whole grain breads were available 30 years ago!)\n\nI think it's too small for groups over six.\n\nMaybe we'll see you there.\n\nAdded 11/18/07\nI think that their menus are not all alike, so if ramen isn't on the menu you receive, you can still order it. (It's posted in Japanese on the wall.) For the basic, ask for \"Hakata Ramen.\" For extra pork, ask for \"Cha-shu-men\" or \"Cha-shu-ramen.\"\nEither way, there's really not much pork in it. That's why you need a delicious shrimp or duck salad.", "type": "review", "business_id": "AkOruz5CrCxUmXe1p_WoRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iUl8Qf_dknIJUgMGfSypFw", "review_id": "mRe9vckC1HgH6IV3IX2GWw", "stars": 3, "date": "2008-01-20", "text": "Dam you Doug !!!\n\nOk, I thought I be the first but Doug beat me to it. \n\n Any establishment that has a free happy hour for it's guest is a plus nuff said. Yes -the 4th floor grill is awesome and the bar staff will give you the In's & outs of Scottsdal-ing culture and the pizza they serve is pretty dam good- the complimentary breakfast was was actually good too.\n\n I'm not sure if they still do the free happy hour thing but what sold me on this lets say resort - is that while I was there , there was a whole bus full of girls that where promoting - some kinda of alcoholic beverage - and I heard from a good source many beverage companies uses the Chaparral as a pit stop for their promotional tours... \n\nWord- I guess they come for the pool's...", "type": "review", "business_id": "Xe-zwcsX5EikIK6Ul5bGlw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "XxW_WSU13NamMOjg_mXgvw", "review_id": "AyIIamOdHs3JCK4GVkH1Wg", "stars": 5, "date": "2012-06-07", "text": "Went here for lunch after riding dirt bikes in the desert. We have had Mellow Mushroom in Georgia and Florida, but this one was top notch. Very clean, staff very friendly , and food OMG to die for. \n\nThe garlic cheese bread is fantastic, and the calzones are my favorite.", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "m6X-e16VIJsRv3-64iNMfA", "stars": 3, "date": "2012-10-05", "text": "Pretty good place. You never actually know who is your server because several different people actually wait on you. The service can be slow at times which can get annoying. The space is pretty big, bigger than what it seems from the street. The food was so-so.", "type": "review", "business_id": "HQFscafV3wi5z4yOKdUGRg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "zvgQkY3MLsF6R1-PuktgaA", "review_id": "yKF8LATwt8Dh3pWVZyIDGg", "stars": 2, "date": "2011-04-21", "text": "I've always wanted to go here. The flames outside intrigued me. So we went on Wednesday night around 8pm. We were sat fairly quickly with no reservations for habachi. Music is pumping, and the crowd is a bit older/slightly cougarish.\n\nThe service was...OK. He went missing from time to time. He brought me a diet coke after I had only taken a few sips out of my glass. I must of gotten 4 new glasses by the end of the meal.\n\nSoup....is your basic mushroom miso soup.\nSalad...Tasty, spicy, had a nice kick. Fresh crunchy greens.\nFillet and Chicken....Eh....I found the flavors lacking, the steak a little chewy, and the chicken boring. Even the dipping sauces were lacking.\n\n74 for dinner plus tip for two. I think you can get better elsewhere. Not worth the drive down to Scottsdale, find a local joint closer to home.", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "o33IBagNFxdJhIrRTl691Q", "review_id": "EY9HpLQwcREVtWifjmXtGA", "stars": 2, "date": "2009-03-15", "text": "Talk about disappointed. I had high hopes for this place, what with its location and idiosyncratic name. But after an hour or so and a couple drinks, I couldn't get past the 'meh' feeling that was permeating both my inner ennui and this bar as a whole. That's when it hit me. Coldplay started to play over the speakers and I knew I had found the musical analogue for this joint. \n\nTurf = Coldplay. Trying to give you what want and failing epically. All the things you are supposed to like - the things you like about similar bands/bars have all been included. You liked it once, you'll like it again! Right? \n\nMuch like Coldplay's pomp and circumstance that is ultimately soulless, Turf Accountant fails to be genuine on any level. Its all carefully crafted to give you some blend of quasi-upscale, Irish, hipster cool, but it just fails to deliver. I knew it was time to go when I heard Chris Martin's voice. If you find middling boring, I suggest passing on Turf.", "type": "review", "business_id": "FeI75xIG8PF_XZ6P80gLBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "euyfAKtbWU92mg1jez1xKA", "review_id": "RZjLNQCe9IrjmGipDA93PA", "stars": 5, "date": "2011-09-07", "text": "Once you buy a steak from von hansons, you will never buy steak anywhere else again. This is the best butcher shop I have ever seen. Also great sausages, chicken, cuts of lamb. I also get my thanksgiving turkey here.", "type": "review", "business_id": "Qc-WTMIjVPv2qkL6q-Cnhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XyaIK2hN3SNMohT5AbKxbg", "review_id": "3SJhxHS2TE8iwI_uNIpVuA", "stars": 4, "date": "2010-03-18", "text": "Finally veered away from my usual sandwich or cold rice noodles and ordered the beef pho....darn it was good!", "type": "review", "business_id": "L_MtTn4IUBTmQtqqM2iFqA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aTi0NVrcPJWbN6jAsJVcAw", "review_id": "NPOqZHCZy3b8y0z3kja58g", "stars": 2, "date": "2011-12-01", "text": "Nah. I forked over $13 for a club sandwich, mac 'n' cheese, and a large Pepsi. The mac 'n' cheese was good, and the sandwich was just okay. I say take your $13 and go to Texaz Grill!!! WAY better food, and for $13 you can get dessert too.", "type": "review", "business_id": "fmuj7u1gflmEjW-h0v9bwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nYfpquFWxQC342RenTI3rA", "review_id": "35Mj4BycQBzXh-IEETgeGQ", "stars": 4, "date": "2012-01-15", "text": "The price and pho was awesome. The waiter was great with helping me figure out what to get. Tried #11, loved the beef tendon and tender meat but not a fan of the meatballs (there was a tiny bone in mine). I am a spoiled NYC bahn mi eater so the bahn mi wasn't my favorite (I thought the meat was too fatty) but the boyfriend liked the BBQ pork bahn mi. I also love the do it yourself take home containers, homemade hot sauce, and I even heard they will refill your broth. Bring an appetite, even with the normal size I was stuffed!", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 3, "useful": 5, "cool": 2}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "qfVZnSX6NfS1Ki3vB8UHCA", "stars": 1, "date": "2009-12-29", "text": "ok, let me be straight with you. i hate paying full price for anything. yes, i'm one of those people. i love a coupon. i love a discount. and i absolutely love a bargain! but i don't like to feel dirty when i leave a store. i felt really, really dirty when i left this store. ewwwwww. this is a yucky ross. dirty, dirty, dirty! the floors and clothing racks were filthy. i couldn't have bought something even if i wanted to because the store was so gross - i got black \"stuff\" on my hand after touching a clothing rack. the floor was so discolored i'm not sure what the original color was. parts of the store's floor were sticky. many of the clothes had indistinguishable marks on them, presumably from the dirty hangars and racks they are stored on. selection was meager, there wasn't a single shoe, bag, wallet, sock or home decor item that caught my eye. the trip was a waste of an hour that i'll never get back. never, ever again.", "type": "review", "business_id": "ZzkAAfn6Y4HGd2eUi34EHQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "P-mTLZ4dvsGjR7bbJJnwCg", "review_id": "nQC0qdMjTMueuUSoagEKug", "stars": 5, "date": "2008-06-09", "text": "Please know that this place is WORTH the long wait. I come to Phoenix once a month for work and I make sure I have dinner here. There is NOT one thing I can complain about. Remember, good things come to those who wait. I HIGHLY recommend waiting in the house next door and having some wine. The bartenders are very friendly. The main restaurant will call the house when your table/bar seat is ready. The pizza is baked in a stone brick oven. Real firewood is used, not like California Pizza Kitchen's gas oven. The owner himself makes the pizza. Every employee is genuinely nice. With each bite, you have a subtle taste of smoke (not overwhelming). The crust is thin and crispy...AND MOST IMPORTANTLY...you can fold the slice - for all you NJ/NY natives! My stomach is churning and mouth salivating as I write more. I am going to Phoenix this Thursday...guess where I'll be? PS-Guys, phenomenal eye candy.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "1GL8b9uNkrk3Udq5gSIIFA", "review_id": "vUQbnXoznZWnWxi-ph45xQ", "stars": 5, "date": "2011-02-26", "text": "You know, for a goodwill this one really isn't bad! They have a ton of clothes that are actually displayed to make them look orderly and clean instead of the usual crammed heaps and stacks you see. I love the books - a great selection of books you have always meant to read (and I don't mean the old classics, though they have those too) like James Patterson, Anne Rice, and all those gooey Twilight books. Looks like they moved out most of the furniture recently, but perhaps they will be getting a new shipment soon. Lots of knick-knacks and vases, and about 25 printers to choose from! Check here first if you are looking for one of the above stated items - they is a good chance you will find it!", "type": "review", "business_id": "fZWVI2Bjk6wJoRUB0s4Pzg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O758lrR1X2zI-ySeyjdr6A", "review_id": "FPaGbNkeYs2eznETt1T0HA", "stars": 1, "date": "2011-04-01", "text": "I'm not sure what all of the buzz is about because this place wasn't that great! I had the grilled cheese and it was hard and dry! There was this nasty drunk guy who sat across from our table and it was quite sickening! I will not be going back!", "type": "review", "business_id": "L2J3JfjXZLnX1rLhWKthqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "6aS7CrJBq4de_fUDoZd-kg", "review_id": "Wj9chTC9FK2DwEWtxAHoBg", "stars": 3, "date": "2012-02-02", "text": "I would have given this a higher rating except for the prices. Ok - in this economy, I am lucky to be able to eat out at all. However, $11 for their smallest sandwich and two small sides and a drink ($1.99 each!!) is a little pricey especially if you have a family to feed. They should consider making it a buffet since they charge buffet prices or giving you a little more for you money.\n\nBut, yes, the food is good.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "h2arxEI32_fQ8b6-rBsNWw", "stars": 5, "date": "2012-09-13", "text": "As far as sports bars go, this one can't be beat. You won't find one in the East Valley with better food, beer selection, happy hour, or a friendlier staff. This is hands-down one of my favorite places in all of Ahwatukee and the surrounding areas.\n\nI've been here bunches of times, and the only one bad experience I had (overcooked burger) they took care of the situation above and beyond.\n\nI can't say it enough: go, eat, drink, see for yourself: Public House is the best around.", "type": "review", "business_id": "qRBeZAFiId0ainBtpFSGuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "JGwBPn48sBb-9VaDX0CFOg", "stars": 4, "date": "2008-07-03", "text": "It's about time I write a review for Kona Grill... after all, I've been here more times than I can count and 2 of these times occurred this week alone! \n\nKona Grill is a chain which makes me want to give them only 3 stars, but considering their food is quality, they offer a fun atmosphere, and their service is decent... I'm giving 4 stars instead.\n\nAs many of the reviews before mine say, happy hour at Kona is great. From 3 - 7, they offer 1/2 off a small menu of appetizers, sushi rolls, pizzas, and drinks. (They also have a reverse happy hour from 10pm on I think). I can't speak for the pizzas (I've never tried them), but the potsticker appetizer is great, and so is the sushi. If I'm not concerned about happy hour prices, I've often ordered other menu items such as seaweed salad, edamame, nigiri, and the seabass entree too. I've never been disappointed.\n\nI usually do not choose Kona as a destination, but if I'm in the area, at the mall, or someone else chooses it, I'm happy going to Kona every now and then. It's good for what it is - take it or leave it!", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "ePduC-tSwrMQRjKI4Suh7Q", "review_id": "tfeXe9CDotajlWy3rFuqyQ", "stars": 1, "date": "2011-11-16", "text": "This place is the white-trash Chipotle. The food is mediocre at best. I mean seriously, how can you just up and steal Chipotle's idea! There's no creativity there. The Habenaro Salsa is flavorless and not hot at all. Seriously? I asked for HOT, not some yellowish tomato concoction for the people who can't handle real salsa! At least Chipotle has hot salsa (not too hot either but much better) for a fast Americanized mexican food. Of course I much rather have the real deal but I do like Chiptole for what it is. Not this crap that Qdoba tries to serve up. \nThe chicken is over seasoned and highly spiced/herbed you can barely taste the chicken. The Fajita veggie were the same. The product looked of very low quality. Oxidizing Guacamole and Lettuce. The meat looked unappetizing as well. Just not at the level of Chipotle. Although I have been here twice, this is the last time for me. I have been to one in Denver and for some reason thought it was better. So maybe it's management but I can say the food is less than good. I much rather go to Chiptole than this wannabe! Employees were dumber than a bag of Frijoles!\nThis place has the worst \"Mexican\" Food I have ever had next to a pre made burrito from 7-11 or a burrito from Taco Bell. Just disgusting food.", "type": "review", "business_id": "ZZevr02C4b_g9RwnezdvWw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "TCHjDUFtXR8s-UJyfdl1XA", "review_id": "1kPMe-M2TF5FN3XxfZKjTQ", "stars": 4, "date": "2010-05-11", "text": "Made an appointment on the day I went. I only had my lunch break, but they made it a worthwhile and affordable experience! No hidden charges for the exfoliating salt scrub. I received a beautiful pedicure in a clean atmosphere in under an hour. Success!", "type": "review", "business_id": "T5jyDe3MVb_4quR9qnoUcg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0XAQT93R8-IX65MtF3Ikzw", "review_id": "jlxI_ml1lVnSkgg6DXvKlQ", "stars": 4, "date": "2009-02-23", "text": "We've eaten here a number of times and have always had the best service and great food. All of the servers we've had were excellent and the manager always makes it a point to check on us and see if we need anything. No complaints and we'll definitely be eating there again.", "type": "review", "business_id": "BblCFCBYOJxU-tbvMDXuTQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iAD9GVUI8m5KaHgi1CnJBQ", "review_id": "2ennhxbzgVB4WZwBj8nlyQ", "stars": 5, "date": "2011-10-07", "text": "I see Jenny Strebe who cuts and Veronica Peebles who colors. They are AMAZING! I am so glad they opened Salon Stylush, it is the perfect size (not too huge and crazy) and it is so modern & cute! \n\nJenny is an amazing hair stylist with the accolades to prove it (she styles hair for fashion shows, magazines, television, etc). Jenny has been cutting my hair for years and she is super sweet and super talented. I trust her with my hair, no question, and recommend her highly. Also, she has a talent for men's hair as well. She cuts my husband's hair and that is one of his best qualities (I'd say!). There are so many men out there with bad hair - Jenny knows how to make it work for men!\n\nVeronica has colored my hair for years - and she is hands down one of the best in the industry. I never loved my color until I found Veronica. Now, I trust her completely and know she'll make my hair look great, and natural, which is important to me. She's also super sweet! I highly recommend Veronica as a stylist and colorist.", "type": "review", "business_id": "Jhl-pgZ_ArUOIOSnI4MWpQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QjYzp8ko7w010fEQ6DWTnA", "review_id": "nZwYc_NXQv88o1WKgHQcnA", "stars": 4, "date": "2012-03-21", "text": "Went in midweek for lunch with a few guys from work. Place was quiet, easy to get seats. Staff were super friendly and efficient. \nSome of the best wings I have ever had... Try the boneless wings, hot, and \"Finished on the grill\"... AWESOME!!! Also highly recommend the patty melt on marbled rye with sweet potato fries.", "type": "review", "business_id": "xmjv8g356v8Qo55ICjG8rg"} +{"votes": {"funny": 1, "useful": 7, "cool": 2}, "user_id": "joIzw_aUiNvBTuGoytrH7g", "review_id": "w3xIgSRAvSWGfP_hZEyeQA", "stars": 3, "date": "2009-04-16", "text": "I had very high expectations for The Breakfast Joynt because so many gave it 5 stars, which means \"As good as it gets, Woohoo!\" according to Yelp. My experience didn't live up to that but I'm willing to give them another try.\n\nThis location was formerly a bar that was transformed into a breakfast restaurant. The actual bar is still there, with a flat panel TV in the middle, but surprisingly the shelves are still empty all the way up to the ceiling. They've only been there around 6 months, so maybe this will change as they settle into the location. It has a very clean, upscale feel to it - something not out of place in North Scottsdale. It's also easy to find once you're off the 101 onto Raintree, and then north on Northsight... it's on the right and shares parking with Gold's Gym that is easily seen from the road.\n\nI found the eggs to be good, and recommend steering towards the omelet choices. Being from the South, it wasn't thrilling that the biscuits were somewhat small and square shaped, almost like a little dinner roll. They have their own style (and they've informed me that they are homemade) but I was looking for something more substantial to be smothered in sausage gravy. The pancakes were not served hot with the other food items, and they seemed to have settled and were somewhat chewy and elastic.\n\nMenu was rather straightforward and clear with sectioned boxes, with a nice highlight of their featured stuffed apple pancake. I thought the description of \"ham that falls off the bone\" was repeated far too many times.\n\nPrices were very reasonable for Scottsdale. The fresh squeezed orange juice was excellent. Owners are very concerned about customers with less than a stellar dining experience, so I'll be sure to give the Breakfast Joynt another try with friends and family.", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nN3Ym_sgqI5EQuC4AIJprA", "review_id": "SwfQezsYZcngfobqi0zWhg", "stars": 3, "date": "2009-09-01", "text": "Typical dumpy yet fairly clean little sports bar in a strip mall setting. Get your tires changed next door at Discount Tire and grab a few heinekins while you wait. Beware though, they call it coppers because it is owned and frequented by Cops and for some reason there are a lot of people missing limbs that frequent the place.?. hum. ho.", "type": "review", "business_id": "YWDfUAPwScdW_9GmGskkZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XgIhw-aWaq_Fx3ZVQGjnuA", "review_id": "gEPilwLMMgb1J_O-5Ep6Nw", "stars": 3, "date": "2009-09-14", "text": "A very good sandwhich shop! My boy and I stopped in here after a movie at the AMC. They have a neat concept with the bags on the wall where you mark your items.\n\nMy only wish is that they had cold sandwhiches as well as the toasted variety. I am not always (rarely in fact) in the mood for a toasted sandwhich.\n\nThe italian sandwhich I got though was delicious.\nNOM NOM NOM", "type": "review", "business_id": "yA9gOueRPoQ4-Y8Xdu8k3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hY9auEfm3Bdrdrwm8NlpuQ", "review_id": "j7ySLZbARMB52UDpqzbf2w", "stars": 5, "date": "2012-07-06", "text": "Love this place! Wish we had one here in CA. Great vibe once you walk through that door. Fantastic drinks and goodies!!", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YQlPh4qpDg3VP-xAjLw0NA", "review_id": "khRsB06gd9Rc0M1EDIyXbg", "stars": 1, "date": "2010-05-23", "text": "Price reflects quality and service. 5/2010 purchased wedding gown, brides maids and mothers (bride and groom mothers and grandmothers) dresses. Girls were rude and our brides maids dresses seems and straps fell apart just before the wedding.", "type": "review", "business_id": "Qxeh_4jjc9GfY5kSA8qwQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1nB6skFopaPCCPds1Bq81Q", "review_id": "JuNOX6tHhAPrwWcZH9HtNg", "stars": 5, "date": "2012-01-30", "text": "The folks here are the best!", "type": "review", "business_id": "ZcqPdNauzOR1BGSVSAocVQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "8KmHPVzyBW45_tXX8zU5mA", "review_id": "uO9OIauNnuURYOticL1flA", "stars": 5, "date": "2011-02-22", "text": "After unsuccessfully attempting a walk in gel at the posh looking \"Sundrops\" nail salon with my two year old in tow, I was drawn to a half deserted strip mall just down the street and a small space in the center labeled Andy's Nails. I Yelped the place and saw the decent reviews so I walked in and was immediately attended to by the friendliest faces I've seen in a while. Despite the fact that I was short one babysitter, they began work on my nails right away and when my toddler got restless, one of the very nice owners picked her up and carried her around for 20 minutes! Not only do they now offer Gelish gel manicures but they offer more colors than many other Arcadia/Biltmore/Camelback Corridor nail salons AND they're cheaper by anywhere from $5-$20! I'm definitely going back and going back soon! My toes are lonely...", "type": "review", "business_id": "aApHpyUbnqBJmL_3X6UFOA"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "63HOmdiJzMOw9figAu14QQ", "review_id": "EAKmueESsEa2cbP9nDUXng", "stars": 4, "date": "2009-04-16", "text": "Eat, drink, be merry.\n\nLove the atmosphere. Love the upholstered loveseats, love the bruschetta and salad. Love the open air.\n\nDon't love the horrid parking options. \nDon't love when I'm seated on the wooden chairs. How can we be expected to relax and drink up when our bums are bruising?\n\nServers? Easy on the eyes. Nice bonus for girls' night out.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "dcYrrajuQcIgBhvvRCL7yQ", "stars": 4, "date": "2010-07-07", "text": "I always have good time at this place. I could write a page about Geisha, but the previous reviews pretty much sum this place up. \n\n * Self servicing bathrooms (Ladies only) \n * Fantastic Happy Hour pricing- The veggie pot stickers are the bomb!\n * Hot waitresses ... barely of age to serve you alcohol =)\n * Private karaoke rooms that allow you to humiliate yourself in front of your friends only\n\nThe only thing I would steer clear of is the specialty drinks they are overly sweet and are not made with fresh fruit... even when they say they are. The waitress cleared that up for me last weekend =).", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aOFGoRqStaoxiTnnN0liWQ", "review_id": "cFSYdlrbCCB1Wpd637P4xA", "stars": 5, "date": "2012-09-22", "text": "Ever eat at a Steak 'n Shake? That's what Freddy's is: a Steak 'N Shake kind of burger and it's delicious! \n\nI liked the fries too: very thin, perfectly hot, not too much salt.\n\nNice people, the manager made it a point to get me my meal hot-off-the-grill, even though I came ahead of the \"call\" and again he met me while he was cleaning tables. {See my review of \"The Habit\": their manager never greets customers, can't solve problems from behind a door, always hiding in his office.} Freddy's Manager was OUTFRONT, ALL THE TIME, WORKING HARD! \n\nGreat burger. Next time I'll get the frozen custard. I was too full from my triple cheese, CALIFORNIA STYLE-BABY!", "type": "review", "business_id": "vR3eAwcgkh2EmVJegZO2dQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Oq5CYkB4dQE_wmPgHu51bg", "review_id": "0131TSv9ZpAce1KfxJcC2g", "stars": 4, "date": "2008-11-06", "text": "I like Blu Burger. If you're a burger lover and like to have it \"your way,\" this is a great choice for you. There's a lot of competition in the \"gourmet burger\" market these days. Delux is the Phoenix original and I'm a big fan. Stax (in Old Town) is also very good. I mention these others because, while I like Blu Burger, I wouldn't drive from Old Town all the way up to N. Scottsdale for it....I'd just go to Stax. And, vice versa. Blu Burger holds its own and does a great job, but not enough that I'm going to drive all the way across town for their \"take\" on a custom hamburger.\n\nIf you've got a group, Blu Burger is good choice for variety. They have veggie, turkey, and salmon burgers, in addition to salads and sandwiches (egg salad, anyone?). So, unless your friends are incredibly finicky, there should be something to please everyone. I also applaud the fact that onion rings and sweet potato fries are available as sides.\n\nAll in all, Blu Burgers is 4-stars all the way. Yummy food. Friendly service. They do the gourmet burger thing well and you'll walk away full and happy.", "type": "review", "business_id": "IF-BrFA4srTmLHk_fxOKkA"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "vrM_uBgwfDQ6bQxGVHdUGQ", "review_id": "RgsjiFl_ssM03WW0EMq7qw", "stars": 4, "date": "2007-11-02", "text": "Hey Guys, \nThis place is awesome....but I could be jaded because of all the wonderful wines I sampled! From the gris, cabs, sparkling shiraz, riesling to the chardonnay, this shop had what we were looking for and what we weren't looking for! The atmosphere was amazing and quiet for a Thursday night get together. Our hostess was sweet and doted to our every need. The food was amazing. I completely recommend the crocodile pot stickers. \nFor exotic wines and exotic meats appetizers, look up Down Under Wines!", "type": "review", "business_id": "S9LX8EtUHooCWGIGmrHUSg"} +{"votes": {"funny": 4, "useful": 8, "cool": 3}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "5DkvAySRPh0nxgm7YYPnNw", "stars": 3, "date": "2012-04-25", "text": "I've got to hand it to Smart & Final for providing some incredibly economic pricing options for both name brand products and supplies. It's worth a visit to save some big bucks by shopping here. This is one of my go-to stops for party supplies like plates, cups, napkins, water, etc. Think of Smart & Final like the Dollar Store meets Costco.", "type": "review", "business_id": "ua0V7dK0_lpChFE65qAx0A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "G47wUKM3bGfJOg9u3j7ZmA", "review_id": "lm-9ZFLQSHflyzJOzjoZIw", "stars": 2, "date": "2008-10-30", "text": "Stopped in on a whim. The whole plaza gives me the creeps (although I do like Yucca tap room and Capistrano's). But besides the plaza giving me the uneasy feeling, that even an unattractive mid-aged man could fall victim to a mid-day rape, I forged on. The rewards were less than stellar. I cruised the aisles of items looking for something I could purchase to add to my already cluttered abode. No dice. Everything is in that weird period, where it isn't old enough to be collectible, cool, or culturally relevant yet nothing is new enough to provide an upgrade. The only thing I thought was cool was a couple obscure punk CDs in the music section, but I already had the albums on my IPOD. I didn't see anyone else buying anything either but everyone did stop to talk to the old cooter working the register. He looks like he may be a plethora of knowledge and stories. I'm not trying to steer people away, just saying I didn't have any luck, but then again I didn't seek guidance from the wrinkled prophet dishing advise and offering a safe harbor to those fearing the dayrape.", "type": "review", "business_id": "BN5gV0OfIZQbQ7PXv4tG0w"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "D0Ap0nHdKIQKPyX4BUVM5Q", "stars": 4, "date": "2012-06-09", "text": "I have been to the Freddy's location in Gilbert several times and really enjoyed it so when I saw a Freddy's had opened in my \"hood\" I was excited. My daughter and I went over for some dessert and they did not dissappoint! The custard was smooth and creamy with lots of toppings to choose from. I have not tried the burgers at this location yet but if they are anything like the other location they will be very tasty. And don't forget to try the shoestring fries. I usually like thicker fries but these are nice and crispy and delicious! I'm so glad Freddy's took over this location.", "type": "review", "business_id": "vR3eAwcgkh2EmVJegZO2dQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jVNpBd3oF5Tch8O74BkEDw", "review_id": "1MUQ-ePSlwsDwO9QjzSyzg", "stars": 4, "date": "2012-08-09", "text": "Festive with a deep beer list. Great set up if you like live bands delivering music from up on high while drinking micro brews. Lots of tv's and pretty good selection of Az brews.", "type": "review", "business_id": "NIuaxYvM_-dzmgGXwPJ1Gw"} +{"votes": {"funny": 4, "useful": 7, "cool": 6}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "BcLe4aGMam8nwLIZj2DTzg", "stars": 4, "date": "2009-01-28", "text": "Took Mom for dinner Monday night. This was the second time I took her here, and it'll be the last! Guess Tapino just isn't for her. Out of the three small plates we shared, she only enjoyed the lamb kabob over quinoa ($9). It was the second-best dish of the three I enjoyed.\n\nI'd wanted to try a glass of rose ($7), since Mom is a fan, but she was \"too tired\" to have wine, so I'll have to bookmark that for next visit. We started w/ the butternut squash ravioli w/ sage butter ($8; mmm... I adore brown butter and sage... My Mom, however, doesn't). I appreciated the sweet creaminess of the squash puree against the slight toothiness of the ravioli. The sage butter added just enough salt to the dish, while the toasted candied pecan bits on top added impeccable crunch! How I wished I had all three pieces! (She ate one and didn't even enjoy it! How infuriating! LOL)The second dish we tried was the baked escargots w/ butter, parsley, lemon, and puff pastry ($7). Compared to the multi-faceted ravioli dish, this was a bit disappointing. While I enjoyed the textures that the snails and crunchy puff pastry offered (TOO crunchy, if you ask me! Those babies were bordering on hard! Where's the \"puff?,\" I ask.), the butter and parsley treatment fell flat. Mom again only had one. I believe there were 6 total. Don't misunderstand- I still ate all the rest... I was hungry!! :D\n\nLast, but not the least, came the skewer of lamb kabob (3 pcs; $9) w/ bell peppers and onions, served over cold saffron quinoa w/ cucumber sauce (served on the side). Thankfully, the lamb pieces were savory enough not to have needed the sauce. Loved the quinoa.\n\nCheck out the photos I took... I'll have to take a photo of the ravioli on my next visit!", "type": "review", "business_id": "AFx48YCp7n7dn-AXp71zAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zJ7Rvp193kl9L0ue-rDxyw", "review_id": "-TTuzwXV6Hj7FmZBKgGn7g", "stars": 2, "date": "2012-01-02", "text": "Personally, I used to come here a lot more often than I do. I've noticed, what I feel to be, a rather slide in the quality in the food. The carne asada burrito I recently got tasted okay, but the meat tasted lesser quality than I was used to. The guacamole was a bit thinner than i like. I gave them this score due to them having much better history with me and I hope/think/suspect they had a weak day. If they do better or worse next time, I'll post something that will reflect it.", "type": "review", "business_id": "Lx4ZFP6dIMzi7Ib-ljV-ww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "baPgGoTxeR35ooubPRlR5g", "review_id": "tGf7N5K_XIR-L4PsdPhqfA", "stars": 4, "date": "2010-02-22", "text": "This place has really delicious, insanely fattening brownies. They are really quite delicious, although they are pretty pricey. They do have really great sales, though! These make great thank you gifts to people (we've sent quite a few) and we haven't had a flavor we haven't liked!", "type": "review", "business_id": "E2F25cRcYf_bWtvbCht0EQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "Z8GY4AS6AfYjJCv20Z2HNg", "stars": 4, "date": "2010-07-24", "text": "Here's an update, because the buffet is out at lunchtime only now, with a regular menu at dinnertime:\n\nThis old place continues to be one of my favorite restaurants in the Valley, after 1 1/2 years & many visits. It's friendly, inexpensive, peaceful & comfortable (even with lots of customers), & always satisfying.\n\nThis time I started with a delicious bowl of Menudo, a nice salad & several kinds of fresh fruit, tasty Cole Slaw, & then headed for the Mexican hot table. Had some Spanish Rice, refried beans, a beef taquito, an excellent beef tamale (hand made, not some fast-food thing pretending to be a tamale!), & more, but saving room for some Chinese.\n\nThe tasty treats over at the Chinese hot table included TERRIFIC, big, meaty barbecued pork ribs, really good & crispy Sweet & Sour Pork (Hey Iain!), just-right fried rice, a steamed veggies dish in fish juice that included such treats as Chinese Snow Peas, all cooked just enough, & so on.\n\nWhat a great lunch for $5.59!", "type": "review", "business_id": "atbvu3MxnDgpQfZgvPZz2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Lp8fW8eyG86P1TlX6GcpVA", "review_id": "ZQYolR6yCPOYFbO9XdSWJA", "stars": 5, "date": "2012-11-30", "text": "Romantic, quaint, amazing! We were referred here by a couple of long time Phoenix locals, and we were so happy we took their advice. We ordered a white pizza, a anti-pasta appetizer, and bottle of Chianti. We were able to get a table outside and loved the atmosphere! Perfect date spot...", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "RGnODSWkk6lYIlAzlP0EBQ", "review_id": "HloiMQ8AjO-MM7Sh2t9jFQ", "stars": 4, "date": "2012-05-21", "text": "Went here for a saturday lunch with a girlfriend. The building is amazing and beautiful, very clean. I'm not generally a \"Scottsdale crowd\" type of gal, but the place was nice, and the music was good too. The menu looked so delicious that we had a hard time deciding what to get. Our waiter was very kind, didn't try to rush us, and gave us plenty of time to decide. \n\nWe had a house salad, dirty chips, and an order of sliders. The house salad seemed a bit over priced for what it was, but the dirty chips were really good! The sliders were average, and well priced.\n\nI really want to go back and try a happy hour sometime to try more of the small plates, our only regret was that the order of dirty chips was BIG, we could only finish half of it. A half sized portion would have been perfect, though!", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "GPPHDWEZGjiw777_iTOJ1w", "review_id": "c2RqKaQOPOsqg8IGQTq6NA", "stars": 5, "date": "2012-03-20", "text": "Another vacation that started and ended with US Airways. \n\nWe arrived/departed on time both ways. My normal sized butt still fits in seats so no issue there. I enjoyed my free drink and chitchat with the flight attendants. Brought my own snacks and read a book. All in all a good beginning/end to a relaxing vacay with the man friend.", "type": "review", "business_id": "bA-Cj6N9TEMlDlOh2aAnUw"} +{"votes": {"funny": 3, "useful": 8, "cool": 0}, "user_id": "XDVABSG5JRXry3Dm45vnyA", "review_id": "GGVqgEAZ50J0Fz15l1OL8w", "stars": 1, "date": "2011-06-18", "text": "First off I would like to punch the dip Shit on the food network who said this was the best chicken he ever ate. Yeah the place is filthy, but how they operate their business is redicolus. Service sucks, 49 minute wait for the food sucks, waiting 20 minutes from the first entree being dropped off until the last person luckily receives their food sucks, being told on the 59th minute of a hour wait for your food, that they are out of your side dishes, sucks, spending my hard earned money at a place that is Ass backwards in any kind of business sense, sucks. At first our group thought it was a joke, then the reverse racism theory was brought up, then we noticed that every table was experiencing the same lack of service. Black, white, purple,orange. They just sucked.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3w-JiPus8k-BR5PQ7egDvQ", "review_id": "aXtskk_ccWoiQZ_wSCdBVQ", "stars": 3, "date": "2010-03-28", "text": "Its not in a shell gas station anymore and i guarantee that Guy would never visit the new location on his show. I ordered the El Pastor burrito and i didn't like it at all, very dry and just not to my liking. I would never order it again but I'm sure there are alot of people out there that like it. The salsa was great and i couldn't get enough of it. I ate half of a bean and cheese burrito and i really liked that also, not the greatest tortillas ever but they are possibly #3. I would could back and id like to try some other type of burrito or some carne asada tacos.", "type": "review", "business_id": "uPDTnuR-sOi47blHH943lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qR09EUhlR6g_NU6u5gbI8A", "review_id": "S5kqxr5zGXnTmloiOdhEUA", "stars": 4, "date": "2011-06-17", "text": "Open 24 hours on week-ends, ample seating area (good for studying or hanging out and chatting), very welcoming clientele, and broad selection of coffee drinks, non-coffee drinks, and desserts, fruits, and random snacks.\n\nThe coffee isn't great but not terrible either. The Wi-Fi, while free, is fickle. \n\nOne of my two favourite coffee places in Tempe (other is Cartel off University & Ash).", "type": "review", "business_id": "IoFggnoj1P4EcmNEP2K6Ng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6gK6I7_AHJgiD_xwlMc2Uw", "review_id": "nfLoADHb5G4bhuU_ARGtQw", "stars": 5, "date": "2012-03-19", "text": "I love this place! People are very friendly and very clean restaurant. I come here with co workers for lunch on a weekly basis. I order a gyro pita and side of Greek fries, so delicious! The salads are huge and tasty as well. The Greek fries are amazing with feta cheese and a lemon butter sauce they put over the fries. I can eat here everyday!", "type": "review", "business_id": "TVJT7Xknd-ikf4vskcjKQw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "01nTwhHBaw8AHjQDb7JGBw", "review_id": "mkaQ7Y6djFDT5WN2g4bLdQ", "stars": 4, "date": "2012-05-16", "text": "Great fried fish and crispy onion rings....yum!", "type": "review", "business_id": "tcxNX3YiHNbaobEpPFyOtA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5oLJL8ImlYLkFm05J6oKqQ", "review_id": "vR2CMYThsCUC8RdaUqINFQ", "stars": 4, "date": "2011-01-25", "text": "Midday parking at this place is seriously a joke, but such is the case with a lot of swank midtown lunch spots. \n\nPizza was great, my East Coast hailing girlfriend gave it a thumbs up, which for an AZ pizza place is a huge kudos. We came to check out both this and the adjoining Pink Spot Coffee and Ice cream. We ate on the ice cream side, so I can't comment much on the decor of the Z Pizza side. \n\nGood ingredients, not the usual suspects, so that is a change. I will pay for good quality pizza, so the price was in line for the quality of the food.\n\nIt did a ton of lunch business but was efficient and the staff was smiling and not hating their life, which is always pleasant .", "type": "review", "business_id": "Shl6PtJERnowSJSC4IHbYQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "fH9OSIlijo9Obp8ZDq8rBg", "review_id": "so9a4cnFAtuU4TsWWbH_Ig", "stars": 5, "date": "2009-11-20", "text": "Awesome.\n\nSo much better than parking on site.\n\nSafe and good prices keep me coming back.\n\nFlying during a busy time, go to their website to make a reservation...that's right a reservation! Also print out a coupon for a couple bux off per day.", "type": "review", "business_id": "OoXySPyQuSHstMF2zpV_kA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qeAt3hJ-ifUnnjTR5k8OeQ", "review_id": "O1DUnVmKGWVfQVHJHU4PLw", "stars": 5, "date": "2009-02-02", "text": "My family and I ate here Saturday night.....based on the reviews of Yelp.\nWe were not disappointed, as a matter of fact, we were pleasantly surprised with every aspect of our evening. When you arrive at Bobby Q's, the outside makes it feel as if you are about to walk into a dive. However when you turn the corner and walk in the door, that is not the case. Very nice ambiance throughout the entire restaurant. They had wonderful mood lighting! I love low mood lighting! Our server was very friendly and helpful. Our meals were excellent. My husband got the Chicken Fried Chicken and I got the Top Sirloin. We started with the corn bread, which was delicious! I don't care if it feel apart at least it wasn't dry! My top sirloin was cooked a perfect Medium and seasoned exceptionally well. I really loved it and I love steak. Surprisingly the roasted corn was one of my favorites of the night, I don't usually gobble up corn when I get it with dinner, but man, this was some heavenly corn! My husbands chicken fried chicken was perfect. Pounded thin, with a light crispy batter, I hate to say it, but it might have been better than Texaz Grill's chicken! It was tasty. My son got the oven cooked pepperoni pizza and it was a large portion for the $4.00 price tag, he even took some home. Our food was excellent, there wasn't one thing we didn't like, the food was hot, the service was great, the atmosphere was great, we will return!", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "bcZd4ohK6CIT_BOQ0_O53w", "review_id": "9T2B05WckKkdksClxk6QcQ", "stars": 4, "date": "2008-01-20", "text": "More a comment than a review. Suffice it to say, I L-O-V-E this store! Much to my surprise and delight they are opening a second store at 75th and Cactus! Right in my own backyard , don't ya know. Woo hoo! Now all we need for the NW valley is Lee's sandwiches, and a solid dim sum joint to complete my favorite Asian trifecta!!", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "RsHIBC5MLxEqKoKEIGe4CQ", "review_id": "NK3JgrH6VTSOSgy7u_aI-A", "stars": 1, "date": "2012-04-30", "text": "The staff at this location was rude and unfriendly!! Also the store itself was not the cleanest I have seen!", "type": "review", "business_id": "iE1eq7kDacRwgvFZJmjfgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pgB3ZIh1rUc7eSq1-8OghA", "review_id": "ucyv8PIZdCG38yAn5-ocIA", "stars": 4, "date": "2010-07-06", "text": "I would give it 5 but, I want to try it again to make sure.\nVery tasty Mole. good drinks. Great atmosphere. Excellent service.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gjNhdZZ_2lI8QPfkKn_Omg", "review_id": "Ytf1ccd9yDb1YnPWr3gycw", "stars": 5, "date": "2010-11-23", "text": "Stephen G. hit the nail on the head - \"You buy a peaceful experience\". I was looking for a resort/spa but also wanted to take advantage of horseback riding as much as I could. This resort definitely exceeded my expectations - the staff is AMAZING (friendly, accommodating, etc), the food was delicious, the resort is beautiful and the rooms were also clean and well-maintained. Everyone I encountered went the extra mile with regard to service. I came back to NYC completely rejuvenated.", "type": "review", "business_id": "p8yg26BbovkfL2iw7Pcg0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OQMOgqS1NFIyAW4i66iDYA", "review_id": "475VAD94PDpgvrrM-J7IEg", "stars": 3, "date": "2010-01-19", "text": "Went to Prado for a birthday celebration and things started off very well - it's a beautiful dining room, and the live guitar music is a nice addition. The hostess and maitre d' were both friendly and personable. They pour you a glass of sherry on the way to sit down at the table, a lovely touch of authentic Spain. All good so far. However, the food is very hit or miss, as others have suggested. Some dishes really shined (butternut squash soup, bison short rib, pineapple coconut cake) while others really disappointed (one-dimensional gazpacho, chewy calamari, fish overpowered by olive tapenade). My advice: soak in the atmosphere and music at the bar, maybe snack on some tapas, but skip the restaurant unless you're okay with hit-and-miss. Such a shame, too, because I LOVED Chef Urciuoli's cuisine when he was at Taggia.", "type": "review", "business_id": "RLjA7TBXJfyqDfPuVCcrtQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UuwjD6MZf6Z6QlNphiXRjA", "review_id": "glNPCmaS1aVoo5yOxp6rWg", "stars": 3, "date": "2012-11-12", "text": "Sometimes there's a cover, and sometimes there isn't. In true nightclub fashion, you can never really tell what it's going to be either. \n\nI've never seen anything good happen downstairs. The music has never been good, regardless of the genre that night (Hip Hop, Techno, etc). And, the overall vibe is pretty lackluster.\n\nUpstairs, however, is house music heaven. Located outside under the stars, on a relatively small balcony, the vibe is always pretty stellar. Open air, video collages on the walls, and AWESOME music. I've never been let down yet. Even on a random Wednesday evening recently, when it was almost empty, the music was still amazing.\n\nIf you live in the Valley, you have to visit the upstairs of Bar Smith at least once. It's fantastic. It's a shame they've never been able to replicate any of the upstairs magic to the rest of the club though.", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "-Wa5j14Rhps3DC2SMaaatQ", "review_id": "4HjJF3o9B-YsLhi7FAXGbw", "stars": 2, "date": "2011-09-26", "text": "This was the last valley casino i had yet to visit, should have left it alone. \n\nThe casino had a nice array of machines, but they need to clean up more oftern, or maybe the patrons need to use an ashtray more oftern. \n\nyes there is a lot of smoke smell around, but they have a small smoke free area. \n\nThey also have what looked to be a very nice cafe, the food looked great and the prices were very reasonable, but we were just too tired to stay. \n\nPlayed for about 2 hours and hardly saw anyone win anything, or get any bonuses on the slot machines.", "type": "review", "business_id": "ipNveHQxPlRmgSe9CSt9dw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "raMSkwLdZ-kFea1fTY_-Ew", "review_id": "jWwoc50VheOEIeCZLyU3JA", "stars": 2, "date": "2009-10-25", "text": "I've been here twice...the first time was driven by a rumor that they made their own root beer. I'm a sucker for homemade root beer, so I had high hopes that this place would become a favorite. My husband and I were so excited when these huge glasses of RB hit the table!! And then confusion...both of us looked at each other and said \"WTF???\" Worst RB EVER!\n\nWhat the heck was in this drink that made it taste like ass? We looked all over the menu and found nothing. Then we saw the \"fine print\" on a small table sign...STEVIA. It's made with Stevia NOT sugar...I'm sorry, but I have to say that this is the lame-est root beer on the planet. If I'm going to treat myself to a big glass of homemade root beer, I want it to be delectable...sugar and all...no freaking high fructose corn syrup and no bloody artificial sugars (and yes, I know stevia is \"natural\" but who gives a crap...it tastes terrible anyway).\n\nAfter the root beer debacle, it didn't get better. The food was meh...service was not so great (there were moments of \"is she ever coming back???\"). I'd say, go here for the beer, sans root, but that's about it. Otherwise, skip this place and drive out to Four Peaks...you'll be happier all around.", "type": "review", "business_id": "3UMcsN9IjoeV8JZvC4apag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2XCsVpAMsGUykrM-BBFEXA", "review_id": "kUIfKhHboxTPLWw71p9RCw", "stars": 3, "date": "2009-05-24", "text": "When I asked the server where he was from, it led to a discussion about how historically trains would stop in Maricopa! All joking aside, this place is a good after dinner spot or happy hour spot to come and chat with a friend about why there are no Amtrack train stops in Phoenix! \nThey have a decent wine list and I would not really sit outside here because it is nothing really special...but the place has its purpose.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fwzW24Yx842aUri7hHtRFw", "review_id": "1cT3bBGjclcRxvPGZw_agg", "stars": 5, "date": "2011-11-16", "text": "This place is great! A coworker and I stopped in for lunch this afternoon and was blown away by both the food and staff.\n\nYou get a large bowl from the cashier and can personally stuff whatever meat, veggies and garnish you want. Then, mix a neat selection of sauces. Finally, watch the entertaining chefs cook your meal on a large heated stone.\n\nEverything comes out fresh, hot and delicious! Want a tip? Use the wax paper next to the chicken to \"stuff\" your bowl. Everything will shrink when cooked and this will allow you to have a bigger meal for the same price.", "type": "review", "business_id": "L-bpJXpA5875dLb7A4wh6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cEdFniwKOrG615SUAnGPew", "review_id": "7LeIXKwsmiHAWsf75jgRbg", "stars": 4, "date": "2012-06-17", "text": "My mother located this resturant and wanted to go. I of course, looked at the reviews on yelp and was expecting a lukewarm time wih flavorless food. I went to pepin last night and was pleasantly surprised to find the opposite. There were 3 adults and 1 child in our party. My 2 1/2 yo decided to get cranky the moment we sat down. The place was about 1/2 full. Our waitress came right over to our table and started to take drink orders. My mother didn't like the location of the table so they promptly moved us to a table of her satisfaction. The waitress saw my child was squirmy and offered to get her food out right away which she did. I had the red sangria. It was good but I've had better. My mother had the tiramisu drink that was so strong it knocked her sandles off but it was good. I had the paella which was good and tasty. My mom had lamb which she enjoyed. I forgot what the 3rd party had but he enjoyed his. My baby had chicken fingers and fries which were actually sliced potato and she ate most of it. The entertainment was great! I kept laughing to myself about the other reviewer who said they were intent on driving nails through the floor. Yes they were stomping up a storm but it was great. My baby was so entertained and yelling and clapping. Everyone was entertained by her too. Our bill came to $123 which is not bad for food and entertainment. Oh it was saturday night about 6:15pm", "type": "review", "business_id": "T8IP3Ns3cZCgdyPqt18Cbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VnVM74-AzIFFz-a-FJNMnQ", "review_id": "xBHrzYmk2n4qivM9TCOlSw", "stars": 5, "date": "2012-03-27", "text": "Great food and drink. The traditional margaritas are the best. Sara was our server and she was very knowledgable about the menu and was quite entertaining. The cheese enchilada that I had was one of the best ever.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hno-5CTo24tD9YRdglAZ2g", "review_id": "l90mgKwJKx35JAMsSBT1fQ", "stars": 4, "date": "2009-02-21", "text": "Sadly, another victim of Tempe Marketplace killing Mill Ave --this Z Gallerie location is closing and they're liquidating the inventory. If you've had your eye on something for a while, get your tuchus in there STAT! The entire store is 30% and sale items get an additional 10% as of this week. I got a $149 candelabra I'd been eyeballing for months -- for $40!! It was already on sale at 70% off and they threw in an additional 10% off the sale price. Cannot beat that with a bat!", "type": "review", "business_id": "Pj22z5yPSozm_8G1OuzDwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EWRc233WIE5wBtldzMuj_A", "review_id": "0dHxH81QwPCoNsUSb3JI9w", "stars": 3, "date": "2011-06-21", "text": "Definitely a solid choice for some quick healthier alternatives. Good Wraps with quality ingredients.", "type": "review", "business_id": "CC8Gn5h28utxP8i9zGorKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "49gP_g_eAFhVvjhWKYB_tg", "review_id": "AOWJ-gOMF0A7oBE6KAJsqw", "stars": 2, "date": "2011-05-03", "text": "Love the charm of the place. I only wish they had a burger that did not taste as if it were boiled. And yes, I tried this place a couple times wanting to like it.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0Jlviq1YD76N-WK_GUeDMw", "review_id": "zjFMYLyPombS9qiAbbW5CQ", "stars": 4, "date": "2011-01-09", "text": "I went here for a birthday party it was a group of 9 and everyone got good service. It was good in taste but more expensive than some of the ones that were closer to me in Mesa. I would go back but only as a group. If you are closer to this place than say Sushi Ave go here you wont be dissappointed.", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1ku7MeWxNp9F1tD7au5SGQ", "review_id": "P5G7cGUNEaP1pBN3Vic2IA", "stars": 4, "date": "2011-11-10", "text": "I have eaten here twice now and this place is phenomenal! Great price and amazing food. I highly recommend the baked ziti! I will go back at least twice a month.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "pt8KIaIl6R9bcvBaDsOusw", "review_id": "brz0_RH0PjeOgPg6lazj1g", "stars": 3, "date": "2012-03-18", "text": "Chicken schnitzel was amazing. Service was slow and server didn't know the menu. Didn't know what a knish was.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "PuTmcfPDLNUAKo68LmdZOA", "review_id": "a9QTFqCHNqE7YY4xo-qMbQ", "stars": 5, "date": "2011-02-18", "text": "I love this location, and I love this product. \n\nI think the prices are reasonable considering the quality of product you are getting. If you've only been to the Scottsdale Fashion Square location and hate it, give this one a try. It's got a much better vibe and is a lot less packed. \n\nWalked right in was helped, she grabbed what I needed and I was off. It took all of 15 minutes even with picking out a totally new foundation then I used before.", "type": "review", "business_id": "ipfPzCphX5cbfVE4rOUY6Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1IRyTTXa__KRxhxnz8fS5w", "review_id": "etX1xc1ewwvl9cQB_8Q7BA", "stars": 4, "date": "2009-05-07", "text": "I've been going to this place for years, and they have always stayed true to their own style. The place is a bit shabby, but the food is delicious. Their prices are decent, not too expensive not too cheap. The staff is friendly enough, and if anything ever goes wrong, they have no problem fixing it.\n\nAll in all, a good place to grab a slice of pizza.", "type": "review", "business_id": "lPtTXn7_VOwqypZs07j2nA"} +{"votes": {"funny": 2, "useful": 10, "cool": 3}, "user_id": "xs_fnNe0hofd7ZOupCjesQ", "review_id": "QP1jL_NQytlbWUPQ5yO8Kg", "stars": 2, "date": "2009-04-17", "text": "It hurts me to say this, fue to the fact that I love local businesses in my hood and I fully support them, but here is another restaurant that I wish would have been better...\n\nGood news...More restaurants opening in Downtown, more options especially late night options...\n\nBad news...More restaurants opening in Downtown wanting to make a quick buck but does not deliver on food and quality...\n\nI came here with a couple of friends really excited to try the only sushi restaurant in DT open for dinner. There has been some good review on the place and I wanted to give it a chance...I should have gone north to Hana or Yasu!\nWalking in, I noticed the decor was another warehouse looking restaurant trying to be modern...only thing is , its not. From the neon lights under bar to the wood paneling to the tin like tables, chairs, and barstools...its been done 30 times over. I wish it had more character, a little bit more distinctive. We are in the art district. I don't want to walk in a restaurant that looks similar to ones that are already open in the same area? Okay enough with that, the artist in me is rambling again..sorry..back to the \"food\" review.\n\nFood: The menu to me was a little confusing. For being a Sushi joint, it had so many other things also, mostly stirfry items. I decided to stick to what I came here to try, sushi. I ordered squid salad to start. I should not have ordered that to start. The salad was so salty and it was drowning in dressing...bad start...I then ordered some sashimi including saba, sweet shrimp, and of course my favorite toro. I was a little disappointed that they did not have uni..how can you not have uni! \nSaba...not bad...\nSweet Shrimp....foul tasting\nToro.....couldn't even bite through it\nA good sushi joint has to have fresh fish...good sushi needs to be executed by a sushi chef with good knife skills...simple as that..\nWhen your fish is not that fresh and your sushi chef fish slicing techniques are not there, you have a losing combo.\n\nMy friend out of frustration had the head chef make us something...He brought out the geisha roll.\nSpicy tuna is not my thing but out of courtesy, we did ask him to pick, I tried it..it was ok, again I am not too keen on chopped up tuna, which in this case tasted like it was food processed. A little too mushy..\n\nDrinks:\nBeers: Been done. Infused vodkas: Been done Cocktails: Been done.\n\nGood Points: Nice staff, cool Teapots, and clean restrooms\n\nAll in all, I guess I was hoping for a sushi joint that was more innovative and creative with equally good skills to execute. Maybe I am too harsh. Or maybe I am just saying it how it is...As I left the joint, I felt like I have been to a sushi restaurant like that so many times before...\n\nHopefully they will succeed with less critical customers unlike myself..best of luck!!", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qltgvF9T14PALwgVh2WAmg", "review_id": "WwejSg_0JSACP3_huRbXGQ", "stars": 2, "date": "2010-01-12", "text": "I know... I know... it's Phoenix but I expected something far better. Perhaps my mistake. Located in what looks like an old fast food location this is a no frills, no cart, and no nonsense dim sum experience. Don't think I will be going back (for many reasons) but if you are craving some bao or need a dumpling fix this place will do... just dont expect much.", "type": "review", "business_id": "yOYFhiTjT-SM4spKtDk92w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "TQ5eVGOFr_qB5_BbEd3Sow", "review_id": "PMqNJg0wK8JCpCpC_W12Bg", "stars": 5, "date": "2010-06-21", "text": "This place is as good as I'd heard. We came here for a day-late birthday dinner for my middle daughter/Father's Day dinner for her husband. She and his six-year old daughter ordered a Hawaiian style with pineapple and ham, he and I got the Margherita Pizza with garlic, tomatoes, olive oil, fresh basil, mozzarella, and romano cheese. Both were so delicious! He also got some chicken wings which were tender and juicy and not spicy at all, dipped in either of two great sauces, ranch or marinara. The pizza's were about $13 each for the larges. I usually have no problem quitting after two slices but the flavor squishing around in my mouth was so good I couldn't resist taking a third piece at this place. \n\nThe decor was pretty and the service was great--the server checked back several times to see if we were doing okay or needed anything.\n\n I would definitely be a regular if I lived near here. \n\n\nOn a side note, next door is the Aloha Kitchen which we had eaten at about a week ago and was also very good!\n\n62010", "type": "review", "business_id": "69c7z9ySnlqV87tITDGENA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "DnNbzD5N2qSlZzkc4btL2g", "stars": 4, "date": "2009-09-04", "text": "I am a shoe addict. I also appreciate a good bargain. Whenever I am bored and have a little time on my hands, I like to take a walk through DSW. I think it is kind of like playing \"dress up\". You can try on anything and everything. Such fun! This location is one of the better ones I have visited. It is well-organized, and the stock turns over regularly. It is one of those hit or miss places - I will either leave with nothing or with an obnoxious amount of new footwear. You just never know. It has a fairly large clearance section as well - if you have the patience to look, bargains can often be found. Definitely sign up for their rewards program - you will receive coupons regularly - yay! \n\nHappy hunting!", "type": "review", "business_id": "nl5ifGmOQMw-MlMO_tdnbg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9guDqgAz5IRYYXa0ByTVEQ", "review_id": "qwOB8mqoE63FrnbwZpUCMw", "stars": 4, "date": "2011-12-30", "text": "Fun place for breakfast. Prices were reasonable and food was good.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AKNRJ5YuUVixrj6P-ORofg", "review_id": "0LoLY69MxWPffGYuXGXKcQ", "stars": 3, "date": "2010-11-17", "text": "I can't comment on the donuts (which is pretty ridiculous seeing as that's the main draw here), but I was satisfied with the boba smoothies. They're definitely not anywhere close to being great, but for someone who's not picky about boba, they're really refreshing. The boba itself was kind of mediocre, but it had a good flavour and wasn't too sweet. I got a taro smoothie and a honeydew smoothie. \nThe honeydew tasted surprisingly good for being from a powdered mix, it was just like drinking a fresh honeydew melon. The taro was even better, although the drinks were a bit too icy for me. They were a lot better after I let the ice melt a bit, but who wants to wait?", "type": "review", "business_id": "Xobu8FzHN0KUm5Lw3swypA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "3mdjLGhT9zfwXHkcJdWx6g", "review_id": "aa5hKJwkYiTJwQ7mWHTPdw", "stars": 3, "date": "2009-01-06", "text": "Singray is pretty good. The location is nice but there is never parking due to the other businesses around. Not fun walking so far in heels. :) The sashimi was pretty fresh, but miso was a little too salty. Also they gave us cold oshibori towels when we sat at the sushi bar. I think I prefer the new Pure Sushi location next to AZ88. Once I was able to find it. Very modern cool feel and awesome food. Heard Stingray is opening another location by my house. (Biltmore area) Maybe parking will be better.", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "zqnAdayPsak5dbLF2gEvNw", "review_id": "qEiGnUUGu6qr_LY1G9uBfQ", "stars": 5, "date": "2010-12-14", "text": "Let me begin by telling you about my horribly debilitating fear of going to the dentist. It's epic. Weeks before an appointment I start having nightmares. Thinking about sitting in the dental chair makes me break out in a cold sweat. I require nitris oxide for a simple cleaning. The sound of the drill is enough to make me want to claw my face off. Basically, every visit has been the worst experience ever for the past 30 years....\n\nEnter Dr. Marcia Blazer. I read about her online when searching for a local dentist here in Scottsdale. I literally googled \"dentists for anxious patients\", and her name popped up. Her website appeared too good to be true. They offered nitris (plus), offered non invasive options for dental procedures (double plus), and offered a staff used to accomodating those with a healthy dose of dental fear.\n\nI went in for my first visit (a cleaning and exam), and I was amazed at how comfortable they made me feel. They were warm and friendly, and put me at ease immediately. During the cleaning, my least favorite part is always when they use the scrapy,pointy torture device to stab off all the plaque at the gumline. How happy was I when they used an air abrasion tool instead...felt like a cool stream of water on your teeth, and BAM, they're clean! They were so calming, that when I was informed that I had 2 cavities, I didn't even have a panic attack at the thought of coming in.\n\nFast forward two weeks to my filling appointment. I had requested nitris (hey, I was feeling better but still SUPER anxious), which they had all set up in the room for me when I walked in. Now here's my favorite part. As I sat in the chair, the assistant brought over two big boxes full of dvd's and asked me what movie I would like to watch during the procedure...What?? So I picked a lighthearted comedy (50 First Dates). I was then given noise eliminating headphones to use (goodbye horrible drilling sound), nitris (hello happy gas), and a few hand signals to recognize if I was supposed to open or close my mouth. And we were off! She didn't try to maintain conversation (soooo annoying when dentists do that), and before I knew it she was done and I was disappointed because my movie wasn't quite over! I was even told that had my dentist not needed the room I was in for another patient, that I would have been welcome to stay and just finish the movie!\n\nI have had several interactions with this office since then (regarding billing and follow up), and every time it is a pleasure to deal with them. I highly recommend this office to anyone!", "type": "review", "business_id": "yTVafrqgxkWrtUqr5yEg8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wUEp87FqOB9ew27Iz6zk_w", "review_id": "T3OCXrViDxuhqLyQ_TgLKw", "stars": 4, "date": "2012-10-01", "text": "I love their bruschetta. I get weird cravings for it and have to eat it at least once a month. I've always had friendly servers, although they can be slow with getting the food out. I was here last Saturday morning and the man next to me walked out without eating because first his order got lost and never sent to the kitchen. then when they finally took his order they still made him wait a long time for his food. that was probably just a mistake all around, but I felt bad for the guy.", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "GlidDdgzwCgcBbx_BcK-Hw", "stars": 5, "date": "2007-05-10", "text": "Stinkweeds shaped my formative years. Really.\n\nI started shopping at the (now gone) Tempe location when I was 15. I had a few older friends into independent music who introduced me to this record store. I begged my parents for rides and, when that wasn't happening, hopped on the bus for the hour-long trek. Totally worth it. 100%. I can't tell you how many awesome bands I began listening to just because I would browse the selection endlessly for something that looked interesting. If I needed something specifically, Stinkweeds would order it for me if they didn't already have it in stock. The staff was always welcoming and helpful, sometimes offering their own suggestions.\n\nBut it's just a record store, right? Wrong. Stinkweeds is the jewel of Phoenix, as far as I am concerned. Now that it's out in central Phoenix, I make it in far less. Total bummer!", "type": "review", "business_id": "Re0Xw-AYkn6NK7QRk3kPEg"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "45V7-1r79DEG0HbuaKYIlg", "review_id": "-lWfCerRUNTC7wkhsURj4A", "stars": 5, "date": "2011-07-07", "text": "Three cheers to Yelp for helping me find where in the Valley to go for real beef jerky! The fresh stuff which has more beef than chemicals. (The convenience store packages just were not doing it for me!) After checking out the website, I emailed good friends in Las Vegas (who used to live in Minnesota), asking if they were familiar with Von Hanson's. (They have 21 locations in Minnesota - and ONE in Chandler.)\n\nMy roommate and I went on July 2. They were running a special for NY strips - buy one, get one free - so that was added to the plan in addition to the jerky.SCORE! We picked up a half pound each of the peppered jerky and the cajun spicy. $18/lb. The NY strips were (if memory serves...) $14.99/lb, and the steaks were averaging a little over 3/4 lb - so super yay for the BOGO sale - it brought the meat down to regular grocery prices. I have to say - the quality of the meat is amazing! Just looking at the cuts in the display case, I can declare Von Hanson's makes AJ's look like Fry's! These were GORGEOUS! Quite possibly the prettiest steaks I've ever seen!I also grabbed a couple pigs ears for my dog, and the roommate picked up a package of her favorite kind of sausage (linguisa).\n\nAdmittedly, I am not a sausage expert. Plus, I live very close to Schreiner's - so while I would have no problem buying sausage from Von Hanson's, I wouldn't make the hike to Chandler just for those. The selection was quite impressive, though!\n\nOverall - this place has everything for carnivorial happiness! (Hey - if you understood the context, it's a word, right?) Great selection of beef, chicken and pork products. Tons of spices, sauces, rubs and marinades. Nice selection of unique beer and wines. Fridge and freezer cases with more meats, sides, and desserts! Yes, it's pricey - but the quality is certainly there to justify it.\n\nOnce home, we grilled up the steaks using our favorite rub. OMG amazing meat! Probably the best steak I've had in YEARS - and NY strip isn't even my cut of choice!\n\nThe peppered beef jerky is full of YUM - and this is so strange to write - but the Cajun is a bit spicy for my taste. (And I adore spicy!) It's amazingly good, and addictive - but almost requires a cold beer to go along with it to help cut the heat.\n\nThe Vegas via Minnesota friends emailed back Monday - they know Von Hanson's quite well - and are grateful there isn't one in Vegas - it would KILL the weekly grocery budget with how often they'd be in! They love, love, LOVE the place - and I am now under strict orders to bring them care packages from here whenever I come up to visit!\n\nOh - and Layla (my pooch) was pretty stoked about the pig ears - so in addition to my five stars, please add two paws up! (I didn't tell her they have a whole dog food and treat section - I am on a budget, after all!)", "type": "review", "business_id": "Qc-WTMIjVPv2qkL6q-Cnhw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WgdgOlb-OIwKxb1p4xWwRA", "review_id": "SGu1-pHnumdLlO6df4mr5g", "stars": 4, "date": "2010-10-31", "text": "Truly a great place! \n\nThe flights are FANTASTIC! The food great! \nService also great! \n\nTry this place! --- Seriously the fewer words to describe the greatness the better.", "type": "review", "business_id": "YQ19y3LYgmAHfgNFa01vyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YoiAnDZ_JPdi8Ixnn8vKMg", "review_id": "YuThK1S6ESo5nWRcAMXcLw", "stars": 5, "date": "2010-05-01", "text": "How could you write a bad review about a mountain? Great sight to see.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-jTC2CzyExvwluqo0RfD5A", "review_id": "XCZd6irKJ9pMmMjBCFWJtw", "stars": 4, "date": "2012-12-27", "text": "We stayed at the Sheraton downtown and Matt's was a short walk. Definitely worth the walk, and it helped to justify eating such a large breakfast. There is probably something there that is not very good, but we did not find it. When you get there, make sure you check in with the person running the register", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "YavFbDG7DUOTXJBLxpq97A", "review_id": "lO1hTfhz7kSuqncwEYF5RA", "stars": 4, "date": "2010-01-14", "text": "Prefer this place over other \"clothing exchanges\" in the area. \n\nFriendly staff...store is usually pretty quiet when I go in which is nice as I cannot stand crowds! Mens selection is a little skimpy .. however when I go there it's usually just to sell. On that note, they pay you 5% more of the retail value of any of your clothing than Buffalo does! \n\nAnd, it's always nice to be able to support local businesses!", "type": "review", "business_id": "ics35glmd7JXtY3qrq3jxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PzTP2RCSdBrZLbaxXgZ3kA", "review_id": "U3MSRT6I3oWBOUZFmlPNkw", "stars": 5, "date": "2009-01-21", "text": "Business takes me out to Mesa yesterday. After chatting with a friend about possible lunch locations, he tells me about Georges Gyros, near University and Country Club. I decide to give it a try, as it isn't too far from my destination. Situated right next door to Sun Devil Liquors, I'm surprised I hadn't been there before, or, for that matter, even noticed it. I guess when I hit SDL, I've got tunnel vision. First thing I notice is there appears to be plenty of parking, even at 12:30, for lunch. Outer patio, stuck out into the parking lot, not overly appealing, might be nicer in the evening, I guess? The interior is clean, plenty of seating, a small bar at one end, and a counter from which you place your order. Never having been before, I ask the counter-person for a recommendation. \"What's good?\" He suggests the Original Gyro, served with fries or a greek salad. Sounds good, I'll take it with fries. With drink, under $9. A few moments later (actually, I saw three other tables get served, so it seemed like a longish wait), a ginormous gyro arrives, with a huge helping of fries. The gyro was huge, overflowing with, umm, meat, gyro meat, I guess, white onions, diced tomatoes and cucumber sauce (Tzatziki, I think). The meat was well cooked, artfully shaved, and tender. The sauce was also very good. The pita? Warm, soft and tasty. The fries? Crisp and golden brown, and piping hot, about 3-4 times the size of Mickie D's or about 1/2 a 'steak fry'. I was very impressed with the quality of the food, the cleanliness of the dining area, and the presence of a bar. Most folks were eating gyros, or good sized greek salads. Other items on the menu include several different gyros, burgers, sandwiches, a decent selection of pasta dishes and all kinds of Greek and non-Greek appetizers. I plan on coming back, perhaps before a foray into Sun Devil Liquors...", "type": "review", "business_id": "XxE8YV18K6Cb7uvQLN3XZQ"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "lj_cm_MfchWv8Rxyg_3CMg", "stars": 2, "date": "2011-04-13", "text": "Bleh! \n\nI've heard good things about this place from my sister's friends (notice, I didn't say \"my\" friends) and I've always been curious. Errand days are kinda ho-hum anyway, so I was excited to finally check this place out. The reason I order a doughnut that is stripped off glaze and topping is that I'd like to taste the actual product. \n\nTwo doughnuts for my little guy and me for $1.60. As the girl handed me the paper bag I was extra careful handling it for nothing. Cold doughnuts? Am I just so used to piping hot beignets? Right off the first bite, I could feel the cheap hydrogenated oils coating the roof of my mouth. Then the second bite, the feeling is now in my throat. Eeek! I asked my son what he thought. \"It's okay,\" he stared at the doughnut and looked up at me. I grab his doughnut and along with mine threw both in the paper bag it came with and chucked it. Honestly, it would have been better to fry these sinful things in lard. There is something about chemically laden food that I despise most!\n\nWould I give it a second chance? Not until they change their frying oil!\n\nSorry, Bosa. One star is for the nice service and the other star is for being a local chain.", "type": "review", "business_id": "6HAwTnhNJoR5VNdfUrRoEw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UE1UIi95jSk5tAzOdtnjIA", "review_id": "kirVIzvZz1aAlH1-ERxr6w", "stars": 3, "date": "2007-12-16", "text": "I used to frequent this restaurant years and years ago. I was a student at the Deer Valley airport, and eventually a flight instructor as well. It was a great location with awesome views. The food was always descent the the service was great. \n\nNothing too exciting, but a great place.", "type": "review", "business_id": "8FNO4D3eozpIjj0k3q5Zbg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Qgupxwm_bHehtat82fvtog", "review_id": "8dK4ZrPWHYLkg8McqSJXvA", "stars": 5, "date": "2010-11-03", "text": "YOWZA! I love this place. I had heard great things about this place before and actually received some of the olives and olive oil as a gift last year. I decided to take my mom and try it out for lunch. The food was pretty good, but the best thing for me is that they have Cerignola olives! This was music to my ears when they told me they had them. I have been looking everywhere, checking every grocery store, gourmet shop in Chandler and Tucson and nobody has them. I can't wait to go back and try the rest of their menu! Oh and expect a little off roading, the parking lot is loose gravel :)", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "8varrFq44hjiwfRVAC8dZg", "stars": 4, "date": "2010-01-21", "text": "First of all note the name changed to AMF Scottsdale Lanes.\n\nHey it doesn't smell! Its a nice bowling alley and I can imagine spending a few hours here like I did tonight with my Phoenix Fabulous Forty Women's Club. \n\nThe bar is very nice for a bowling alley. They even have a pool table! \nThey serve decent food and cold drinks to your lanes with waiter service. \n\nAll the lanes, screens and scoring boards are new, clean and state of the art. There's no old smelly gross carpet to be avoided either, which is classic of bowling alleys I have been in! \n\nPrices for rental equipment and lane use is average cost. \n\nI had a great time and will definitely return to enjoy the faculties again and again. \n\nOh and the staff were so nice and professional also!", "type": "review", "business_id": "5oCm7qtm-e2hgJluCxhO-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6prHhofQ3sLSNHJRYUat-Q", "review_id": "mDDw5KvbJbkMWEUsrKy37A", "stars": 5, "date": "2012-08-01", "text": "Let me preface this story with the fact that it was not my little guy who I had to take in. I am dog sitting my friend's dog. They are on vacation. Dr. Alber and his amazing staff were unbelievable. I called at 5:15. They got me in at 5:30. Dr. Alber spent 40 minutes with me. Explained everything to me thoroughly. Little Rusty just has allergies and an eye infection but it was making him miserable. Dr. Alber gave me a plan of attack to care for it. EXTREMELY COST EFFECTIVE. $70 out the door, RX in hand and a tube of eye drops. I am in awe. I will recommend this clinic to everyone I know. I just cannot say enough good things about these lovely people. THANK YOU PRESTIGE ANIMAL CLINIC. YOU ROCK!!!!!!! I will now be taking my own little guy there. You guys are now the only vet I will ever use.", "type": "review", "business_id": "-dz2h55a0SdnBJEXQm9CAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0VNNqpD687meEu70X5knNw", "review_id": "-bHRpYfgPu8BX_9DycVutA", "stars": 3, "date": "2011-02-22", "text": "Over-priced for the size of the facility and equipment available. The staff is friendly enough, and seeing as how its the closest 24 hour fitness place in this neighborhood, i suppose they get away with the price :)", "type": "review", "business_id": "xqwIJpLhzk960kd94M8gRg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DnSDTBU1wZZXLNSw5eQbjg", "review_id": "YdWJwWIM6w1_YHUAWwkE3w", "stars": 3, "date": "2010-07-21", "text": "I love burgers and really wanted to love The Grind, but it wasn't meant to be. Unfortunately I had problems with the temperatures, both the restaurant and the food.\n\nI was here with my girlfriend on a Tuesday night. The restaurant itself is nicely appointed, with a sleek, modern look and feel. It was pretty close to full, but staff were still friendly and efficient. \n\nThe $5/glass wine special they were running was very nice. I has the peppercorn burger with sweet potato fritters. The fritters were very nice, crunch without being greasy, and not overly sweet. The burger was nicely composed with great toppings and flavors - the watercress in particular stood out. Unfortunately, the burger was also well, well done, and I had ordered medium. I should have sent it back, but was hungry and didn't want to wait. For a burger joint missing a temperature on a burger is pretty disappointing and it killed a lot of the goodwill the rest of the ingredients had built up. \n\nThe bread pudding for desert wasn't the best I've ever had, but was nice and the bourbon sauce it came with was a nice touch. \n\nThe other issue I had with The Grind is the temp inside the restaurant. I'll grant that these are the dog days of summer right now, and I'm sure it's hard to keep the place cool with the half open kitchen, but was pretty warm in there.\n\nWith the wine special it was ok value for the money I guess. But on a normal night with $10-12/glass for wine and $10 for a burger with another $4 for fries it's too pricey for my tastes, especially if they aren't hitting proper temps on the burgers every time.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E54TO3WE5HZ6zDKP8gFIgQ", "review_id": "wIy0qJII5phwUXqedeKFyA", "stars": 5, "date": "2010-05-18", "text": "Where I had the most delicious thing I ever put in my mouth.\n\nThis is a favorite of me and my friends, especially for sunday morning brunch. I would say we go at least one time a week. Their Quiche (especially the Goat cheese, caramelized onions, and wallnuts) is the best you will ever have and their salad dressing (which is made in house) is equally delicious. The most delicious thing I have ever eaten in my whole life was actually a rose macaroon. I have never had an emotional reaction to a food item before but I swear I almost cried and had flashbacks of my childhood being at the botanical gardens. Any way, if you haven't been here you HAVE to go. Its one of Arizona's few authentic cultural treasures.", "type": "review", "business_id": "tZXPhvufHhfejGrRp554Lg"} +{"votes": {"funny": 9, "useful": 18, "cool": 14}, "user_id": "MUHoBFzwRoXpCpgYSN8KRA", "review_id": "IlHZnUkUGWQk3j0vYcMydg", "stars": 4, "date": "2010-02-11", "text": "The new, old El Chorro Lodge has been reopened for all of two days, and a friend of a friend managed to secure a reservation during their soft opening, so I got an opportunity to check it out. I was impressed, but not blown away. Everything I tasted was quite competent, but if I had to choose a word to describe the menu, I would suggest \"staid.\" Perhaps even \"stodgy,\" but that may be more harsh than I intend.\n\nReview the dinner menu. http://bit.ly/aWqVVJ. There, see what I mean? Replete with Traditional American entrees and sides, at what I would consider fairly exorbitant prices. I would say that I wouldn't go back to eat this food at these prices, unless someone else was paying. \n\nI should note that a big part of why I wasn't impressed is because this place is simply not my style. The wait staff, attired in khakis and blue shirts, was a little too informal for the prices we were paying, I felt. The menu options were a little boring for my taste. The cocktail menu is exactly not what I'm looking for these days, although I will be very interested to see what Happy Hour looks like. The decor is a tad heavy on the Old Southwest theme, although to be fair, this place not only pulls it off rather stylishly but also is among the most authentically old and southwestern establishments in the Phoenix metro area. \n\nThe patio and open bar are fantastic. The bar area is considerable, and the patio is palatial - up above Lincoln Dr enough to be fairly quiet, with a gorgeous view of Camelback, sunset here must be incredible. \n\nAnyway, back to the food. Everything was very well executed, from the sticky buns we were served upon being seated to the desserts we ordered. I chose the soup of the day to start, a tomato/basil concoction that was quite hearty and thoroughly enjoyed it. The salads my dining companions ate looked boring to me, but they all claimed them to be excellent, with \"the best Caesar dressing ever\" and \"polenta croutons?!?\" being the verdict for the Caesar salad, at least. On to the entrees. I ordered the crispy duck, which I found to be delicious and quite hearty, though not what I would call crispy by any means. It was a very sizable portion, and very well prepared. My dining companions ordered the pork chop, the lamb, and the salmon, and we each sampled from each other's plates. I would try the lamb if I went back, but the consensus seemed to be that everything was very well prepared, with the duck being a winner. It was served with a heap of mushy sweet potatoes (just like my mom makes at Thanksgiving - delicious!) and red cabbage, which I sampled and declined to finish. Again, not quite my style. \n\nWe moved on to dessert - sticky bread pudding with a bourbon glaze and the warm chocolate cake. The bread pudding was a winner at the first two or three bites, but grew one-dimensional as I continued nibbling at it. The chocolate cake was decadent, among the best I've ever tasted. It was clearly made with a considerable amount of dark chocolate, which seals the deal for me. And in case you were wondering, my dining companions apparently have no stamina when it comes to dessert. Suckers. \n\nAnyway, as I've said now several times, this place is just not quite me. It's totally classy and very high in quality, but not quite adventurous enough for my taste. I'd love to come back for brunch, and once they unveil their happy hour menu, I'm sure I'll be back to check it out, but I won't be back for dinner unless I can convince someone else to pick up the check at the end of the evening. \n\nAs a side note, this place is so very Paradise Valley. It's a welcome relief knowing that there is a place that is so anti-scene out there. It's been a little while since I've been both the youngest and among the poorest in a room, and I will say it was a little comforting. Just don't tell the Scottsdale people about this place, and we'll all be happy.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SAAMpBGcVVNAww_4yZpIoA", "review_id": "LhkAHj7CAv6XGvr1tYX9aQ", "stars": 5, "date": "2012-11-14", "text": "Gosh Darn It! They had to be good. I was hoping, since they are so close to my home and right next to where I shop for groceries most often (Fresh & Easy), that they'd be horrible. Then I'd never have to go again... But, alas...too good to not go back, that's for sure!\n\nI've said it before, I'll say it again: if you don't like a lot of frosting, just wipe off the portion you don't want. Heck, if you're sitting next to me and my kids, they'll eat it for you!!\n\nI didn't think I was much of an frosting fan either so I wiped off most from the Chocolate Chip Caramel, only to find that the milk chocolate frosting covered with a caramel drizzle was UH-MAZING! Scraped that heap right back in my mouth where it belongs! Yum. Equally impressive it the dense, moist cake (as opposed to light and fluffy texture; these puppies are HEAVY). The White Chocolate Raspberry was chock-full of white chocolate chips and the frosting was not too sweet. It was the prettiest one as well, with white sprinkles and raspberry sauce drizzle. Thoroughly enjoyed the two other chocolate selections (Texas Milk Chocolate & Midnight Magic) as well--Yes! I had four, but only cut them in half so I could save the rest for (my husband) later.\n\nBonus points for presentation (the box is adorable) and variety.", "type": "review", "business_id": "lEUsYkm-IHF8_hJTAJDjHw"} +{"votes": {"funny": 0, "useful": 3, "cool": 4}, "user_id": "eatsTYGR2CNM-Huxgm_TVw", "review_id": "wAotgO0GaKmp2FMfnaWrlg", "stars": 3, "date": "2008-04-12", "text": "The Arizona Science Center offers a series of programs called adult's night out which are held the first Friday of every month. These lectures cover focused overviews on topics ranging from Genetics and Nanotechnology to Native American medicinal utilization of native plants found in the Southwest. \n\nThere is always interesting science or engineering content but the value and interest of the talks is essentially the somewhat direct non-mass-media poisoned or dumbed down views of the individual speakers themselves. While I would attend the talks regardless I have found additional value in the evening because of the extended hours that the science center offers which allows you to catch an IMAX film and see the latest flavor of exhibit (Body Worlds, Titanic, etc.) after the lecture. \n\nI would have loved to have given the Science Center 4 stars but I am constantly annoyed by the science center's staff inability to get one of the three microphones set up correct for the speakers ahead of time causing a speaker to waste 5-10 minutes every month.\n\nBeer and wine are available for purchase during the event. The adult's night out lectures are free, normal planetarium, IMAX, and special exhibit prices still apply.\n\nArizona Science Center Web Site:\nwww.azscience.org\n\nAdult's Night Out:\nwww.azscience.org/adults_night_out.php", "type": "review", "business_id": "MwmXm48K2g2oTRe7XmssFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BA0RTaT7_W1Xs_orzBpZ1A", "review_id": "mKHCbsaynfvACFLL3Nz05A", "stars": 5, "date": "2009-08-11", "text": "This place is an experience. I can't stop thinking about it!!! I love the weird odd flavors (Basil Lime?) and everything tastes so fresh and organic. It's nice to have something like this close by our house! A true guilty pleasure.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "J76z7gzmpM9B766vmRRukA", "review_id": "YK17hh1CjpA-GoiH7VlnXg", "stars": 5, "date": "2011-10-02", "text": "Being from Sweden you just like salmon and at Le Chalet you can get a delicous Nordique Crepe with salmon! Never had anything like that in Sweden! Besides the great crepe and friendly service from the owner Alain Keller I was also treated to a laughing experience. They have a comedy show twice a month. Great place to eat and have a nice relaxed evening!", "type": "review", "business_id": "Az69nueCy94SVKkWaNNR0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ioTLeBk0Kw7H95g-rtzXrQ", "review_id": "M4u_KOB3oSUJgWXJq4VKlQ", "stars": 1, "date": "2012-07-06", "text": "Very nice location but food was awful. Had a chicken salad yuck. Service stunk big time!", "type": "review", "business_id": "RShrvt5oIS40FrcX6bCHSg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "dny_S2iY4Wp2SisZzbZ7RQ", "review_id": "SkO0tzjC5Xyt4ZzMC9XS9w", "stars": 5, "date": "2009-10-27", "text": "This is a quaint little airport which is very convenient if you are travelling to the Tempe/Mesa area, or already know people who live there. I say it's convenient-- if you are flying in from Grand Island or Grand Forks or Rapid City or East Bugtussel, since the only commercial tenant at this decomissioned air force base is Allegiant Airlines, which specializes in flying you from nowhere to somewhere (Phoenix, Las Vegas, Orlando that sort of thing). \n\nBut from landing to sitting in my rental car it was maybe 20 minutes tops and I was heading out to lunch in the Phoenix area (don't bother with purchasing the \"snacks\" on the flight, just make sure you are prepared beforehand).", "type": "review", "business_id": "2TWGIhh6y-f9fe-Q6kySGQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "hjJPKQ1Ah91h3fVbc8GsOg", "review_id": "av5WbNQBNJABxaq8p5AM6Q", "stars": 4, "date": "2010-09-22", "text": "Post-annual-review day, I wanted to treat myself to a baller lunch, so Stingray at the Biltmore (BFP) came to mind! And it was a superb first impression!\n\nIf you are not accustom to the map of BFP, its located walking distance from the epicenter of everything, but its worth the little cardio!\n\nAfter stepping through some remodeling projects around BFP, I finally arrived to an artistic, grand entrance. And what I mean is you are fronted by a very tall, Japanese inspired wooden door with modern trimming. So far so good! =)\n\nI open up and was greeted immediately by the Host and was offered to sit either at the swanky bar/lounge section or the contemporary, bamboo decor dining area. I chose bamboo for the lounge seating.\n\nAfter being seated, I noticed a nice feng shui touch they had was placing a bamboo plant centerpiece next to a little pouring jar of soy sauce and a warm cloth they brought out to cleanse your hands with! What a great lunch so far and I haven't even talked about the food yet! =)\n\nAs always, beverage comes first and I decided on a cool refreshing mango ice tea! C'est bon! It had the right balance, not too much tea and not too much mango! Some places is really awful in trying to get the right balance!\n\nSo after spending a good 5 minutes and another 5 minutes and asking the waiter what is popular and not too filling, I opted for the Yakinuku, which is thinly sliced, NY strip steak with sauteed veggies drizzled with seasoned soy sauce. I was content with my selection--now the waiting. At this point I thought I gaze around and started to take mental notes on the high-end wall decorations and I mean HIGH-END! Time elapsed and my food arrived. The presentation was just as good as everything else around me. This place was on a roll! \n\nBefore I dipped my chopsticks in to my glorious protein dish, I had to take a quick snap for my Facebook upload. And finally, I went in for the kill! Tr\u00e8s d\u00e9licieux! It tasted great as much as it smelt great! BTW, it came with a side of white rice (not sure if brown is an option--didn't ask). I thought the meat was cooked to a tender perfection with the right amount of vegetables topped with very flavorful sauce. It filled me up just right. \n\nI typically do not order dessert, but because I actually had room to spare and this place was on roll like a hot craps game, I decided to order their green tea ice cream! All I can is, perfect, as expected. I've had this before at other places and its either just as good or a little better.\n\nWhat can I say? Stingray hit a home run for a great lunch escape from the office. I plan on doing it again!", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7tA04v45dzG8tADZGLrCzA", "review_id": "gvX0icZWc-YFMtoe9u193A", "stars": 4, "date": "2009-09-16", "text": "\"If the melting pot exists, the cheeseburger may well be its most palpable product; to take a bite of it is to take a bite of history...\"\n\n-Elizabeth Rozin, Primal Cheeseburger\n\nWho could argue with that statement? Checked out Delux Burger today; Delux is a burger joint that gets some serious buzz and numerous Best Burger awards from the local media. They are also a late night favorite since they serve food until 2 AM. This gives them street credit in my opinion.\n\nThe mystery dining companion, otherwise known as L. joined me for this burger excursion this evening; we arrived around 10:00 PM for a late supper. The seating is a bit cramped in the dining room and the patio. The Delux menu is very nicely limited, meeting my personal rule for just do what you do best. We both ordered the signature entree, the \"Delux Burger\"($9.5), starring a half-pound of freshly ground Harris Ranch beef; supporting cast includes a toasted demi baguette topped with Maytag and Gruy\u00e8re cheeses, sweet caramelized onions, applewood smoked bacon and organic arugula. We also ordered the Combination Fries \"a la cart\" ($6) which came out before the Burgers. The fries were fantastic! They were served in a mini shopping cart (making them easy to share) and included french and sweet potato fries. Two sauces were also included with the fries, a standard ketchup and a house aioli which resembled a thousand island type sauce with some kick. \n\nThe burgers came out shortly after the fries. They were impressive looking before we took the first bite - robust in size and the beef was perfectly cooked. Delux recommends to order their burgers at medium rare allowing them to showcase the juiciness of the beef; L. and I ordered our burgers medium and they were prepared perfectly. As we bit into these works of art, the beefy goodness oozed wonderful flavor onto our palate. The beef truly is the star of this show, however supporting cast complements it nicely without taking away from the magnificent flavor of the beef. This burger really hit the spot.\n\nI was able to command and conquer this burger, however L. was only able to master one half and took the other half home. Adam from Man Vs. Food would have been so disappointed with her. A few other good factors that Delux offers: Good service, fantastic beer selection, which are primarily microbrews from across the country, and reasonable prices. If Delux has a weakness, it's an atmosphere that's a bit trendy and possibly even slightly pretentious, but the burgers are so good that it's overruled.\n\nOverall, a fantastic experience... and another bite into burger history.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AWcwYAZyqZOheTNEwdAF8A", "review_id": "vDY6om5zK61q4RRy9ugTxg", "stars": 4, "date": "2012-08-19", "text": "I've not stayed at this resort, but have been here twice; once for a wedding and the other for a Lunch & Learn event. Valet service each time was quick and the guys were professional and pleasant. The grounds of the resort are kept meticulously clean and there were clear skies and greenery everywhere I looked; so beautiful.\n\nLunch & Learn (Aug 18th):\n\nThe event started a little past noon and ended a little past 3pm. We reserved for six, but it's based on a first come, first served basis. Two of us arrived a little after 11:30am and after paying our respective $75 fee, went to find a table that would afford us good views of the chef's station. Unfortunately the best tables (with direct views of the chef's station) had \"Reserved\" placards on them, so we ended up with one off to the right of the chef's station. I would recommend arriving early to grab good seats; tables are set for ten. There are two large TV screens in the room, in case you're not able to see the chef directly. \n\nOur event was hosted by Chef MacMillan (gave the guests a few good laughs), with featured guest chef Kevin Binkley (owner of Binkley's Restaurant in Cave Creek). The servers weren't obtrusive and kept our water and wine glasses full. \n\nWe started off with a glass of champagne, which wasn't great, but was appreciated and added to the festive ambiance. For this event, we were served three courses: an appetizer (chilled cucumber soup), entr\u00e9e (two-wash ranch chicken), and dessert (huckleberry semi-fredo). Each course was paired with a different glass of wine: John Anthony Sauvignon Blanc (white, appetizer), Andre Brunel Cote du Rhone (red, entr\u00e9e), and Pietro Rinaldi Moscato d'asti (dessert). I'm not usually a fan of Sauvignon Blanc (I favor Riesling), but the John Anthony won me over. \n\nChef Binkley went over his background and demonstrated the process that goes with making the chilled cucumber soup (which is quite involved). The soup, albeit a bit salty, was SO good. Everyone raved about it, and the best part of the dish for me was the charred red onion. The two-wash ranch chicken entr\u00e9e was good overall; however, my chicken was a bit dry and tough to cut. This might be a one-off thing since others at the table said their chicken was moist. Loved the sweet potato puree and Chantrell mushrooms. The only real complaint I had was the lack of a demo for the entree and dessert. With that said, I can understand why the chef needed to be in the kitchen...after all, we needed to eat, right? ;P\n\nOther highlights:\n* Live band entertained with great hits (a bit loud though for lunchtime)\n* Recipes to take home\n* Q & A with the chef (and photo ops)\n* Raffles for a few prizes, which two of my friends won (a gift box of caramel brownies and one-night stay at the Sanctuary with dinner)\n\nWedding (Friday, March 23rd):\n\nThe ceremony was held at 5pm on the grounds near the ballroom. The weather was a bit warm, but not unbearably so. The bride and groom were beautiful (so was the service), but it was a bit distracting to see people observing us from the windows of the Jade Bar, which overlooked the grounds where the ceremony was held.\n\nAfter the ceremony, we took a short hike up the stairs for cocktail hour, held just outside the ballroom. It was such a beautiful experience to have a glass of wine, nibble on hors d'oeuvres, chat with friends, and watch the sun go down (with the mountains as a backdrop).\n\nThe reception was held in the ballroom and was decorated beautifully. The food was great, the wine and alcohol was flowing, and the live (Latin) band made for a great evening. My friend used Sanctuary's wedding planner (and caterer) and they did a great job.", "type": "review", "business_id": "xm8F51qKjx0cfdOSukTDng"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "MUHoBFzwRoXpCpgYSN8KRA", "review_id": "yrpGtY09WTcAn95EMjuZ9A", "stars": 4, "date": "2008-06-16", "text": "This place looks cool inside and has a fun vibe. \n\nFirst the downsides: menu can actually be a little overwhelming, you get the impression the staff is overworked/crazy busy (how long does it take to make tea?) to the point where if there are more than four people ahead of you in line, you want to shoot yourself. Unless you have nowhere to be, ever. \n\nUpsides: huge selection, fairly helpful staff (paralyzing indecision? that's what they're there for), ambiance, coolness factor. \n\nI need to try the food here.", "type": "review", "business_id": "gWQlTK3o29rZGlw2YLUnhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LmCkhilB78gPm8uIU5nCWQ", "review_id": "qF54d25t_KIcrgef4VLBZw", "stars": 4, "date": "2011-04-26", "text": "I came to this place for my birthday celebration with my fiance and another couple. I was definitely in a good mood.\n\nTHE FOOD\n\nFirst, the salad bar. I am not much of a veggie lover, but the selection here is impressive, especially in light of this being a place where you eat the cow, not the cow's food. Besides a variety of veggies and dressings, you have a few cold cut meats, cheeses and smoked salmon to select from. From personal experience, tomatoes are good, all cheeses and meats are too. Salmon was simply delicious.\n\nFor the main course, it's all sorts of meat, mostly varieties of beef plus lamb and chicken. I liked all of them, but most of the beef was a salty to my taste (hence the loss of a star). Some of it can be explained by my getting the first cut off the meat several times, which meant that I got the salt seasoning in addition to the salt in the meat. That aside, the meat is high quality and the main objective here is to remember not to get too much too soon, so you can enjoy everything the place has to offer.\n\nSides were small (as they should be) and included polenta, mashed potatoes and fried bananas. All good.\n\nThe wine selection is extensive and from our limited tasting, quite good. We had Cabernet and malbec.\n\nSETTING\nThis is a rather large stand alone restaurant, but has surprisingly personal feeling, especially if you consider the amount of staff running around. It is not too brightly lit and has generally darker tones to the interior. There is also a cozy bar to the side of the main entrance that is a pleasant place to wait for others to arrive.\n\nSERVICE\nAttentive and not at all pushy.\n\nOVERALL\nI came here in a good mood and left in an even better mood and feeling like a python after eating a cow. Which was close enough to true amount of food in me. Highly recommend this both for the experience and the food itself.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "3NwAgpjNFe7SnYgVuGElWg", "review_id": "-OmDE81MMdn6HKxRovYZmg", "stars": 4, "date": "2010-02-26", "text": "I've only hiked Camelback once, but I felt so accomplished (albeit winded, and mere minutes away from passing out).\n\nWe started the hike at 6 in the morning, and got to watch the sunrise while we made our way up the trail. I thought it wasn't going to be a bad hike, but things get tougher about two-thirds up. Things starting getting vertical at some points, and I wasn't really prepared for that.\n\nIt was totally worth it once we got to the top, though - gorgeous, 360 view of the Phoenix metro area (and really, much more than that). And watching the sunrise with someone special is pretty awesome too.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KjGKNM9zEVIhiNEIS_RsHw", "review_id": "k5NjpMMpGYBoBc_Wg9jy-g", "stars": 4, "date": "2012-04-07", "text": "Very friendly but need to work on the bathroom", "type": "review", "business_id": "IuYs9ys6bwhK-s2_sUKsbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CSYsxP80N_cmMhN84Hamug", "review_id": "WzyvJl3KWNsZFxWkixfCyA", "stars": 5, "date": "2011-05-16", "text": "I just have to tell you that this place is amazing. Not only is the food top notch so is the service. It is a rare find to get awesome food, a comfortable environment and excellent service at a reasonable price all rolled into one. The homemade sausage is excellent, the pizza is perfect, the choice of deli meats is extensive and homemade side salads (red potato dill is my favorite) and everything on the menu is fantastic. I have read that people say the wait is long, (which I find unfounded) but when you are considering what you are getting, the wait means nothing. I have waited longer for Sysco reheated food in a restaraunt (bleh) and had worse service. I would take a 10 min longer wait for really good, fresh food any day. If you can't appreciate that then maybe chain restaurants is where you should stay. We really do our best to stay away from those and finding places like Defalco's is really tough. We will continue to be loyal customers and spread the word of one our favorite places to eat. Don't pass the opportunity to try this place!!", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "sDDVSSr9DZFGhexEt3ifnQ", "review_id": "sy8-Db3NMbIjMIv2K2wG_A", "stars": 4, "date": "2011-04-15", "text": "I stayed here for work and had some meetings in the area which made the location very convenient for me. I just hopped in my car and was at my office 5 minutes later.\n\nThe hotel seemed pretty new-ish and there were free cookies at check in. There is also a restaurant downstairs and a gym if you're into that sort of thing. My room was clean and well kept. My only minor complaint about the room would be that the air conditioning is super loud!\n\nThere are a couple of restaurants right outside, but they close pretty early. Other than that there isn't too much close by, but if you drive up the street a few blocks to Happy Valley, you can find every big box store and chain restaurant imaginable.", "type": "review", "business_id": "frqg5yt0EfmHqSKCvc8LMw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "xN0VqudpJzAbn05VF_1mcA", "stars": 4, "date": "2010-03-07", "text": "I've been to a few Ren Faires in various states (my favorite is in Larkspur, CO), and this is towards the top of my list.\n\nFirst of all, they have their shit together. From signs all down 60 assuring you that you're going the right way, to having a specific Ren Faire lane to a plethora of parking attendants, everything was organized perfectly.\n\nBefore I talk about the Faire itself, I have to say I was incredibly impressed at how disability accessible this place was. Between tons and tons of handicap park, ramps into each store, first aid people walking around with red cross flags so you knew where the first aid was, and even handicap reserved seating at the joust. I give them an A+ on that.\n\nThe shops were great; found an excellent variety of things for sale. I got a great cane, candles, incense, jewelry and more. Food was good too; lots of veggie and meat options. We got broccoli cheese soup in a bread bowl (soup was ok, bread bowl was super delicious!), falafel (good), chocolate covered nut rolls (delicious!) and a good juicy pickle. Drinks were huge for the $3 we paid, and could be found all over.\n\nI also liked how much seating there was, both in sun and shade. We were able to stay longer because of being able to take breaks.\n\nThe staff themselves were nice, but I didn't feel that many of them were as \"into\" their rolls as other faires I've been to. I'd say \"good morrow\" and get \"how are you doing?\" in return. Not a big deal, but just would have bumped it up to 5 stars.\n\nWorth the $18 the tickets were at Frys? Yes, but just barely. I hope they don't raise their prices!", "type": "review", "business_id": "pgz6IeaZgLuzqrk6HMPhzA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "yQZhcEFC12MEJhQ2xqD9MA", "review_id": "3J0jsj4byVmW_h0myRxpHQ", "stars": 3, "date": "2011-01-11", "text": "The hole in the rock was pretty interesting, but only for about 5 minutes. It's not a hike at all, more of a walk on unpaved ground. Once you're up there, the view is pretty cool, but the crowds of people and rowdy kids and dogs detract from the magnificence and romance. I'd think it's a great place to take kids, though, because of how easy it is. Good thing it's located in Papago Park so you can go and see the zoo or the gardens or Hunt's Tomb while you're there. If you go just to see the hole, it's kind of a waste of time.", "type": "review", "business_id": "NXsw4z0AtaILgS4-UxSWUg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "PNS9z4aFDbfhpIsHCfNvNg", "review_id": "kFOIrGR7o9sgFnxE8A-RRg", "stars": 4, "date": "2009-10-29", "text": "Fantastic pizza for the price! One of our favorite take-out spots. Ask for the daily special as you can usually get wings, soda and pizza for the price of a large pizza. Great deals, great prices and quick service. Not a place to go sit and eat - strictly take-out.", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "Aaafbip-U2aeTXbvinBLiA", "review_id": "01TTuE9wi2G9I7Ip3K3uEQ", "stars": 4, "date": "2011-09-14", "text": "Who's got the munchies!!!!! Friday and Saturday nights till 3 am, Mrs. White's is servin' up some yummy munchies including Fried Zucchini around $3 and entrees for $13. I had to have their fried chicken , pork chop and some gravy and rice at 12am! The fried chicken was cooked perfectly. The skin is crispy and tasty. The meat moist and tasty. The portions are huge and you will not go home hungry. The staff is friendly and helpful; always a pleasure to talk to them. Skip Filibertos or Jack n' Box after the party..movie..concert..and go to Mrs. White's!", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "caELu3OqZm8LkdikpmEB4w", "review_id": "KAJSVDeMI5bbU_OB_BzkMQ", "stars": 3, "date": "2010-07-14", "text": "Went here for fathers day with my girlfriends parents because they gave a free entree for dad. He choose the fish and chips which looked amazing, I had fish tacos, my girlfirend had the steak and her mom got a salad. Everyhting was good. The service was great and the beers were decent. It was everything I could expect from a chain and thensome. I might even go back.", "type": "review", "business_id": "n4mfUCDXHsg0GH50HzJpug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y05bv65OCTcZgB0GhO8_sA", "review_id": "QvBlywDSjJbyqnJqfTI9cA", "stars": 4, "date": "2012-09-01", "text": "Drove into Phoenix today and headed straight to Mrs. White's. It seems we were a bit early, and we had to wait outside while it opened. An employee came outside while we were waiting to grab a smoke. He was friendly and started up a bit of conversation with my husband about the place. It turns out he was one of the cooks.\n\nWhen were able to finally get in, we were offered drinks, and ended up getting sweet tea, which I don't care for. I got the smothered pork chop and two sides, the mac and cheese and the black eyed peas. \n\nWe got a corn cake to eat while we waited and when the meal came it was pipping hot and very good. Service was excellent and prices were reasonable. I recommend this place for some true southern food.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "GnZWh25MyJD1d5FMKl3QmA", "review_id": "Uiif0BxCoTm0Ztr8ONNWkw", "stars": 1, "date": "2009-10-30", "text": "I don't expect much when grabbing lunch at a mall, but I expect better than this. The seaweed salad was a generic overly soy tasting disappointment, the rainbow roll was barely worth eating - the shrimp on the roll tasted fishy, the fish was mealy-textured, and the rich was soft and too sticky. The yellow tail roll suffered from the same, and we luckily were cautious enough not to try sashimi. The miso soup was served barely like warm. The tea was served barely luke warm. That was when we finally got service, which took a veritable eternity. Tea refills? Good luck on getting someone's attention for that.\n\nThe inside is a dismal, cavernous sport-bar/pool hall sort of feel. Basically no redeeming features here.", "type": "review", "business_id": "r7Ge8_c5Y2TXthb4CSjzaA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "1F5G7Tdo14xzsGyISkHDvQ", "review_id": "ZlWSRXjlzatbex6gyQLfEQ", "stars": 4, "date": "2010-09-09", "text": "Phoenix has some absolutely amazing Italian pizza joints. And when I'm in the mood to spend some extra money and wait a while I go to them.\n\nBut man alive! Red Devil is pretty close in terms of quality and it's a lot more laid back.\n\nDuring our last visit, we sat in back. The space has several nice little tucked away areas so everywhere has a nice private feel. Our waitress was really nice and accomodating and was with us in just over a minute.\n\nSome of the fancier drinks were recommended, but we were content with just plain old lemonade. Just the right balance of sweet and tangy.\n\nThe bruschetta arrived quickly fresh out of the oven. The oil and tomatoes were spilling over the top and had a very rich flavor.\n\nThe Italian pizza was just right temperature wise and the green olives added a nice salty kick to the sausage.\n\nThe prices are reasonable. The staff is great and the pizza is delicious. \n\nPlus we met a 6 year old in the parking lot who claimed to be a princess. How great is that?", "type": "review", "business_id": "PEHJjxdw11TGFma9Zhz3ng"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RNSGaQSkC56tGPfKt9lHjQ", "review_id": "p28vkq1lvem7hu2KjuB3yA", "stars": 5, "date": "2009-02-17", "text": "I went here for my birthday this year. The best part was my friends picked up the tab:) The food was fantastic. When I found out from a friend who works here that the same chef who created the city hall menu is the executive chef at ocean club I knew getting a steak to compliment my fish was the right choice. The only down side was that everyone who went out that night were so full that we decided that it was a better idea to go home ad sleep than hit the clubs.....well maybe that wasn't a bad thing after all.", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gW3DYv-sOMtVMefnlUJcyA", "review_id": "LNcKkL6j-6mEVFFZt6-aOw", "stars": 5, "date": "2012-09-05", "text": "Wonderful place to hangout with friends ...small and cozy. Hoegaarden white ale with chicken tikka masala pasty is my usual.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 3, "useful": 1, "cool": 2}, "user_id": "FPWwCD73C0PlRdDfJ6Tuqw", "review_id": "nnSlvK-pDhWnZUZVEffn2w", "stars": 5, "date": "2007-03-26", "text": "I dropped off a ton of things here when I was liquidating my life in this town and it was a terrific experience.\n\nTheir donation program is quick and easy (just drive around to the back of the store and put it in a bin) and really helps out people by selling things at affordable prices and the profits go to provide assistance to the community.\n\nSuch great people at this location especially.", "type": "review", "business_id": "JQyPZXDqoABsotLk3ZD3Sg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "GTMQhwP94CJWHfcr884iQQ", "review_id": "FCwwRXTv8e2vRh1J0FLE8A", "stars": 4, "date": "2011-04-04", "text": "Had lunch with my Husband here today, we sat outside, it was gorgeous weather, the food is really Great, good variety, of ethnic foods !!! Not bad for the price !!!", "type": "review", "business_id": "Vn8qcaX64fkl8vByCsSvIg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Riuo3blbJUeY5FscBmAiKw", "review_id": "T0peZuUKnib-f4wQgxtTgg", "stars": 5, "date": "2011-07-07", "text": "I Love Lolo's Chicken and Waffles and you will too! \n\nRecently my fianc\u00e9 and I went to Lolo's. I had heard about Lolo's and Mrs. White's for years, but never took the time to go to the Phoenix locations. When this south Scottsdale location opened, I made it a point to go and try the food. \n\nThe food is excellent or in my best Brooklyn accent \"Forget about it\". But don't forget about it, the MAC-N-CHEESE is a most try. The chicken is FANTABULOUS, the COLLARD GREENS are on point and they serve Kool Aid. Yes I said Kool Aid. I must have had a gallon of GRAPE KOOL AID. Before this, the last time I had Kool Aid was 1968. \n\nThis place is very popular, so you may have to wait for a table, but it is well worth it. This place is so popular that Sports, Music, Acting and Reality celebrities can be seen here regularly. When we were there we saw the rapper Biz Markie. He did the song \"Just a Friend\" back in 1990. \n\nThe only down side - although the service was generally good, it gets so busy that at times the server may get distracted and may not come back to you as timely or often as you may like. \n\nBOTTOM LINE, I LEFT FULL, HAPPY AND WITH A KOOL AID SMILE. TRY IT YOU WILL LIKE IT", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X0hPero71jN7D0RkJVOsBA", "review_id": "w7bdwvf-KpTxIHUaWhlw3A", "stars": 5, "date": "2011-02-28", "text": "Love Belly Rubz!! At first little Oscar was timid about me dropping him off but when I came to pick him up he didn't want to quit playing! He has really bad separation anxiety and hates kennels, so it is always worrisome when we try a new groomer. He loved playing and came out looking so handsome! We will be returning to Belly Rubz this week for some more play time and grooming!", "type": "review", "business_id": "ekKMQ-L6dHFobFz5d0w7Dg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a4LJJU26cSE7k12-0sEw0Q", "review_id": "vGY_HudPAA2s7IcYp-Hm8g", "stars": 2, "date": "2012-08-11", "text": "Not a great experience last night at Eastwind. I'm going to start this by saying that I've been eating here for over 20 years, when it was Tokyo Express and now Eastwind. I was a customer weekly when I lived closer, now it's every 60 days or so.\n\nWe went for dinner around 8:00 and it took way too long to get seated in the half empty restaurant. We were seated next to a family that must have been friends or family with one server, as she was constantly at their table. She was there while we were waiting and obviously saw us before finally showing us to a table. Our server was a guy that must have been new, as he seemed very nervous and didn't know the menu. \n\nSo we ordered the sushi sampler for me and the Korean beef and a veggie roll for her. I got the sushi, but not the salad and soup that it comes with. The veggie roll turned into an egg roll. Everything came at once, and the server didn't make his return until we were done. After consulting with server #1, he took off the egg roll and our drink. Guess that's supposed to make up for it....", "type": "review", "business_id": "3N__CAwM5VZOhRKmxMtImw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sRMG12fVSNEV3v--hxv70Q", "review_id": "t-hWR-vUV2sm6mKGB4_y-w", "stars": 1, "date": "2012-04-16", "text": "Wish I could rate negative stars.... With so many bar choices this place is by far the worst.\n\nLast Saturday a group of friends went out for a friend's birthday celebration in Scottsdale and decided if we split up that we would meet at the end of the night at Loco Patron. It was increasingly obvious that the staff was hostile and irritated that they could not close up early. We finished our last call drinks and started to head out. The friend who was celebrating his birthday waited behind at the bar until his friends left the bathroom. At this point two bouncers became extremely agitated at our friend and demanded that he put down his drink and leave. My friend started to explain his reason for not leaving (friends still in bathroom) but was quickly cut off. I watched from the patio as the two bouncers (both obviously larger in height and weight then my friend) quickly escalate from talking to both grabbing my friend under the arms and start to carry him out. As he was carried backwards he lost his balance and tumbled back with both bouncers on top of him. The bouncers slammed him down headfirst on the cement outside of the establishment, pinned him down with their elbows and hit him. At this point I had run behind the bouncers and was yelling at them to get off of him. I had already taken out my phone to call 911 and I quickly tried to take a picture to show that they were using excessive force. We demanded to see the manager at which point the bouncer said he was the manager and refused our request. He swiped my friend's phone down out of his hand and broke it on the ground. Several people had called 911 at this point and we waited outside for the police to arrive. The police arrived and took down the bouncers' information and stated that they would be recording this incident.\n\n I am absolutely adamant in saying that neither I nor my friends will ever frequent Loco Patron again. We were treated disrespectfully by untrained staff who were either too eager to close up to get home or get a power high by manhandling non threatening, non physical patrons of their establishment. Based on the behavior of the two bouncers I assume that this bar operates without any written guidelines on how bouncers should conduct themselves. What I witnessed was full on assault and an infringement on human rights and I plan on writing any regulatory agency I can think of. These people make a bad name for all of the bouncers out there that conduct themselves within the guidelines of the law.", "type": "review", "business_id": "ilJiRYZgxjrEu2iexKu-pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "bx3xc5XmamCkFZqXaPGMgA", "review_id": "DtYdeyUDRgw0Ef1StBBIPQ", "stars": 3, "date": "2012-03-20", "text": "Great place, well maintained. It's big airport with some long walks.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VodW352e1lTJbOBqTdiCOw", "review_id": "UjgbxQ9cu-oYhZwb5BLo8w", "stars": 4, "date": "2011-01-28", "text": "The best Chinese restaurant in the east valley in all categories from Dium Sum to banquet style dinning. Their steamed fresh fish with ginger scallion is my favorite. I have been coming to this restaurant for 5 years and never had a bad meal. recently, they even invented some new dishes for the weekend luncheon carts.Tthe stir fired radish cake with bean spout is delicious!", "type": "review", "business_id": "sgBl3UDEcNYKwuUb92CYdA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XXVfsLunIiz3xDeK17aHFQ", "review_id": "1_DpuRsidT3B_hyndwck3Q", "stars": 4, "date": "2011-03-28", "text": "The Pho was delicious, the place was cute, and the prices were decent. Also, the service was amazing! The waiter offered to warm up my son's bottle. Good service goes a long way, so we will definitely be back!", "type": "review", "business_id": "yMUVflS-2SnOGafXmdHy6w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "PY6a5DTygDqf52eQMtii5w", "review_id": "8Hxmm9e4G-H86RmGSW0j_Q", "stars": 2, "date": "2009-04-12", "text": "Ahh man,\n.....I REALLY wanted this to be good.\n\nBut honestly, you end up with something that's more like \"flame broiled\" than the earthy wood-fired imagery you pick up from their corporately consistent signage, menu, and decor.\n\nThat being said, it's a cool concept, and great crust- but the signature pizzas like the \"Greek\" end up feeling themed ,and lacking of soul and an intuitive fussing-over that they need to really be crack good.\n\nThe salad's, while seemingly possessing all the right stuff- are the same. Too salty/ too soggy, and somehow too rich.\nThe gelato tastes like it must come from a squeeze tube.\n\nAnyhow- enough bitching. Better than Pizza Hut, but for all the fuss and flash, you expect alot more.", "type": "review", "business_id": "qXNDOT15YefmozPnrbZJGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nprSBcvBhvzyIbacEwzDLQ", "review_id": "2Nci3cdKa0t32NeolLOfQA", "stars": 5, "date": "2011-11-04", "text": "Beautiful country setting in Phoenix on an old farm. Watch closely because it is easy to miss as it is actually an old farm near the Legacy Golf resort at South Mountain. \nVery good home made breakfast with fresh ingredients from the farm. \nOrange juice was fresh and tasty. \nEggs and bacon were very good. Biscuits and gravy were excellent. \nThe setting was the star of this breakfast!\nI would recommend ! You won't be sorry !", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "TODYSp4aWM5pP3J1R3-HcA", "review_id": "RjmuZF3DV8CmNGmw7k31Ig", "stars": 4, "date": "2012-12-29", "text": "Get to the airport early and relax with a nice drink and some tasty food at Chelsea's Kitchen @ Sky Harbor Airport. \n\nGood beer selection.\n\nTasty appetizers.\n\nWait staff is friendly.", "type": "review", "business_id": "OE7RmfGvpvSEv4g3xDKfSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5c-kJ8aR4OD88y8k1eQuhw", "review_id": "m9zwITNFnht7ImkVuZttdg", "stars": 3, "date": "2012-02-18", "text": "When I came here I got half a dozen donuts and one of those boba drinks. The donuts were really good, but I wouldn't say they were any better than a Dunkin Donuts or Krispy Kreme. The boba drink was so good though! I'm really happy they have those. :)", "type": "review", "business_id": "UxxPsF0oxTOideIpuppK8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2OLdiDZNdrPkdjp1WmW0-w", "review_id": "VXZqsio20JLl2Te84-4fHA", "stars": 3, "date": "2010-02-01", "text": "Cherubini is a clean, comfortable coffee shop. The employees are friendly, but no more than every other coffee shop I've been to.\n\nI had a decaf drip coffee, which was just o.k. Nothing to complain about but not particularly noteworthy.\n\nI sampled 4 donuts...raised with maple, cherry iced cake, blueberry cake, and sugar raised. The donuts were about average or a little higher. Better than Dunkin but nowhere close to BoSa. The cherry iced cake was the best, but all the donuts seemed a little too sweet. I'm a donut fanatic, so I don't mind sweet...but these, just a little too much.\n\nKudos for keeping up a good appearance and free Wi-Fi, but I won't go out of my way to visit Cherubini again.", "type": "review", "business_id": "o5x6DF0KK1OBsiUOx2gavg"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "bphQYJXrJZomo_zxnx304A", "review_id": "rC5_xNnMrzhoAJYuRLD7oA", "stars": 4, "date": "2010-03-05", "text": "Love this little frozen yogurt paradise!! I like Golden Spoon, but this place is definitely a notch above. The toppings bar alone is a reason to check it out.....can you say Fruity Pebbles anyone? How awesome is that???\n\nI like the fact that you choose how much or little you want in whatever combos you crave. The flavors are also really yummy, and they always have a good variety. It's a great place to take kids, as they tend to like anything interactive like this. I'm so happy I live close & plan on coming lots as the weather heats up.", "type": "review", "business_id": "jEkaxdgLxUCf4jtUnCPVWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "chI2p-ROg2tXI2-tT2_G2A", "review_id": "f4pW-wp6nu_jxgI-3nMYNw", "stars": 4, "date": "2012-01-24", "text": "The best way to get coffee is through a DRIVE THRU! And that's the beauty of DB. You can just drive right back and get a coffee beverage.\n\nI had an iced peppermint mocha concoction that put me back about $4. A little steep but it was huge. I think the gal said their iced drinks are only one size. \n\nI still think Starbucks is better but DB is a close second.", "type": "review", "business_id": "K4Oo7A5Kp5eSgBV7MgOu8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7knTjXA1lNJw7AMIIJi4YQ", "review_id": "2lWFTtG6S4W-HNAlOmv9Ng", "stars": 2, "date": "2012-01-01", "text": "I could not find a place to park my Honda Civic and enjoy the trails. After about 60 minutes of looking. I gave up. Need more options to get there, and where to park the car so that the trail can actually be enjoyed. I will save my time and go elsewhere.\n\nSuggestion: Should consider developing an offsite parking area, and providing a shuttle to the entrance (perhaps for a small fee)...and let it be known where to find the shuttle.", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "vveCBQXOFJbKsX4qucvDsg", "review_id": "0E5AGtGB1xnWldDhnQ2aFw", "stars": 2, "date": "2011-01-14", "text": "I graduated from Marinello at the end of August 2010, and let me tell you, I was glad to get out of there.\nWhile the teachers were very knowledgeable in their trade, the program and administration is less than desirable. When I first toured the school and started classes in January, I was promised many things to learn, one of them being makeup classes. Still to this day they do not have those classes available at the school, and those were pretty big reasons to why I wanted to go there.\nThere was also a lot of drama in the midst of my schooling there. Several administrators left, a teacher left, and they changed everything that we were used to. They started focusing on advertising instead of getting students product to use, and there was a lot of times when school product would go missing when they didn't go missing before the administration change.\nbesides those things, the school is okay. At the very least, it will teach you what you need to know to be an aesthetician in the state. But I definitely wouldn't go there again, and I definitely wouldn't recommend anybody to go there. Be sure to look around at other schools before you decide what's best for you.", "type": "review", "business_id": "uzETXY35sIROqx6nnGuq-A"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "lS3fw81m9FKT82Hbgk3OSw", "review_id": "Stkq1LlRMjTqFX-oa_MOOA", "stars": 5, "date": "2009-10-20", "text": "We ate here to celebrate our engagement during a weekend getaway to AZ. My fiance had coordinated with the restaurant beforehand to have rose petals and 2 glasses of champagne set for us before we arrived. The rose petals were fresh and a mix of red, yellow, and pink... beautiful colors!\n\nI ordered one of their fish dishes that came is a REALLY hot skillet, and I accidently burned my hand on the skillet. We saw one of the employees walking by, so we asked if he had anything for the burn, and he ran off looking for burn spray and bandaids. He was back in no time with everything I needed to treat the burn - amazing service! I THINK his name was Nick, but I can't remember.\n\nGood job, T Cooks!", "type": "review", "business_id": "fVgrpVyp-nPLTac9YIjTug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "Gl5qB1ZIgnfLw0UeXclZeA", "stars": 5, "date": "2011-10-14", "text": "i've never had a problem getting assistance here, except when it's busy, usually on a sat/sun. it's not that far from the house, maybe a mile, so i if i'm in a real bind, i come on by here to pick up some stuff. \n\nthey've offered groupons here and with those, i've bought some power tools and hardware. ace brand is cheaper price but the quality seems to be just as good!", "type": "review", "business_id": "gArdR71Kk3pFajtEqLrFTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AXHAksv-Y84Ww5uVw8RdHA", "review_id": "NRXCdY7bTcFk6gmHOYieEA", "stars": 4, "date": "2010-12-12", "text": "Upon suggestion of the \"Scottsdale Native,\" I landed here one night for dinner. This place is part of Fox Restaurant Concepts group who is also responsible for Culinary Dropout, Wildflower, Modern Steak, Zin Burger, Sauce, Montana Avenue, Bloom among others. \nATMOSPHERE: Awesome. Very happening, trendy with mostly young professional and older folks. Huge place with big open space. Great for groups with long table seating either booth or traditional table or couch. The wall opens up to the outdoor patio where you can sit on couches. We sat inside since it was a bit chilly.\nFOOD: Latin/Mexican inspired menu. Huge portions!\n1. Complimentary chips/salsa - didn't have any chips as I like to usually eat my salsa by spoon since it's lower calorie that way. Good flavor, nothing spectacular. Wish it were a bit more chunkier. \n2. Fish tacos - the Native and I split this dish and it was brought out split for us. It was like 2 entrees! I'm glad we split this since it was a ton of food. The dish came with rice, pinto beans (choice of black beans as well). Mini fish tacos (4) with grilled fish, avocado, pico de gallo. Very yummy. Always a fan of the grilled food even though it increases your colon cancer risk. \n3. Crab and shrimp ceviche - containing cucumber, avocado, radish. Nice flavors. Not memorable however so there not much to write here..... simply because I can't remember..... I know it wasn't bad though.\nSERVICE: No complaints here. Attentive enough.\nPARKING: Private lot. No problems finding a spot.\nCONCLUSION: I think I would come here again more for the atmosphere but food is good too!", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "KYeLSM3MQpirmHukVV5Iow", "review_id": "YjFxvAr1p_KNhdZVDX3PUQ", "stars": 4, "date": "2010-08-03", "text": "Stonecreek is a nice place to play, and the price is fair. I do like the layout. Fun but not gimmicky. The scenery is nice, too.\n\nI will have to agree with others about the ball vacuum (aka creek) running right through the middle of the course. \n\nThe staff also seemed nice enough when I was there. I'm not sure what others were complaining about. Overall, it's a decent place to play, and its location makes it ideal if you're meeting people from the other side of town.", "type": "review", "business_id": "0Vty6xYvihX-kmsocY1HWQ"} +{"votes": {"funny": 3, "useful": 8, "cool": 4}, "user_id": "KcI2VGSvRhLAmw6vZrc8WQ", "review_id": "JeUZrbQStR_KL53D0hitCA", "stars": 1, "date": "2009-08-10", "text": "This place used to be amazing. My favorite memories of past years is going to this seafood place with my parents. It's not the same anymore.\n\nWe went for my wife's 30th birthday. My dad decided to join us. My wife ordered steak and shrimp, my dad ordered steak, I ordered a crab stuffed lobster. I have had the crab stuffed lobster many times before. I was craving it.\n\nWe got our appetizer's. Dad got snails, wife and I shared steamers. My dad was happy with the snails. But then again, how can you go wrong with snails doused in garlic and butter? The steamers were steamed little neck clams in a garlic broth. It was not long neck clams like the rest of the world calls steamers. I wasn't about to argue with the server that these are the wrong clams.\n\nThe food came and for the first time in my life I was asking the server to take back my meal before I even tried it. It looked dry and over cooked. I told the server I've had this dish many times before and this is not the way it's supposed to be. He told me this is what it's supposed to look like and begged me to try it. I took one bite and I couldn't even swallow it because it was so dry. Of course the server was gone by this point and didn't come back for 10 minutes to ask me how it was.\n\nWhile I was waiting for the server to return, I told my family I was just going to get the steak. They just shook their head and told me not to. I took one bite of my dad's steak and spat it out. How do you screw up steak this bad? It tasted like beef jerky and butter. My dad and wife would have complained too, but it's my wife's birthday and I am already stealing her thunder. I swapped my meal out for a steamed lobster. How do you screw up a steamed 1 1/2 lobster? Fortunately, that came out fine.\n\nSo we left hungry and $300 poorer. I used to not mind paying the money they charged but now, it is not worth it. I am really hoping people stop coming here so they can just close down.", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "SHi0ZKtsebge11hV5LfbQw", "review_id": "OrZbkGCyQaiYEHBHCnn9Bg", "stars": 5, "date": "2010-05-01", "text": "Fantastic meal. Fantastic experience. \n\nI am a vegetarian. I cook a lot and am very conscious of food preparation, starting with sourcing. I don't just patronize Farmers Markets, I patronize CERTAIN Farmers Markets....that sort of thing. Long story short, if I am going to dine out, I want something very special. VERY special. \n\nQuiessence exceeded my expectations at almost every turn. I dined there with my son and daughter-in-law...both truly expert cooks...more knowledgeable than I. \n\nAll of us were BLOWN AWAY by our meal. We got the Farmers Feast without the wine pairings so we could choose our own wine. I got the vegetarian...they got the carnivore (or ominvore or whatever they call it!). Truthfully, labels are irrelevant. It's all in the taste...and the tastes are sublime!\n\nI was impressed by how much variety was in each plate. Theirs were similar but each a little different. More importantly, there was a marvelous progression of very carefully crafted flavors. \n\nThe most impressive thing: The chef clearly wanted to offer his own interpretations . That he did so while letting the fabulous ingredients speak for themselves is truly remarkable.\n\nThe setting is beautiful. The servers are unpretentiously proud of their community and the work they are doing and seemed to enjoy our enjoyment as well.\n\nOur only criticism (and it is minor) is that although the desserts were beautifully crafted, we felt that they did not reflect the intentions of local sustainability. There is so much wonderful local fruit (used in other courses, I might add!)...perhaps adding some to the desserts would carry out the theme more completely...I'm sure the chefs' creativity can conjure more ideas than I!\n\nThat said, I will return! As often as possible! Quiessence and the Farm at South Mountain are an unparalleled resource for the Phoenix community...easy to get to from any part of the Valley...no excuses, folks!...Go!", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "euEN9CF87grHHuMY3WyrfA", "review_id": "TobE2zOtThpVhcg0iRygYg", "stars": 4, "date": "2012-01-09", "text": "Youfit is always very clean and the staff is really friendly. Trainers are not pushy if you don't want to be trained. The only downfall was when I signed up it said unlimited tanning, but they have no tanning beds. All in all though I am comfortable there and don't feel like it's a huge pretentious gym. I was made aware of the yearly service fee and which month it would be charged as well.", "type": "review", "business_id": "_ZFiCMNEoAX3InUXhZVYOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ap6LoTZwP8zRCeT2rYo2eg", "review_id": "9QYfsZ7FaraQ7loA4Qbqnw", "stars": 2, "date": "2012-05-23", "text": "We kept seeing this place on trips between PHX and San Diego and decided to give it a try. The atmosphere was right out of the 60's/70's era of Space exploration & Sci-Fi and looked promising...until we met the staff. Host & waitress were snooty, had no personalty and devoid of any basic courtesy. \nI had the Beef Chimichanga which was rather good and my companions were happy with their Liver Steak. We had to ask for drink refills much to the chagrin our our waitress who looked like she owned stock in Cover Girl. Near the end of our supper she all of the sudden started shamelessly flirting and getting pretty touchy feely (ugh)! We noticed that she did that with other tables and wives/girlfriends didn't appear to appreciate that. This was an obvious technique to garner \"gracious tips for the privilege of her service\". \nAt the register the host was very lackadaisical in settling our tab that we could have probably just left without paying and they would have never noticed. When he asked if we would like to leave a tip I answered \"Yeah, go buy yourself a personality!\" \nWhile the food isn't bad the service killed the whole experience! Gila Bend literally looks like a Ghost Town, so if you want to stay in business you need to respect your patrons. Honestly, I don't think we'll come back...", "type": "review", "business_id": "dMXYzSsh7CnIX_6KixDW8A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "nhqrPfmHegblEc4RtkiXHQ", "stars": 4, "date": "2008-05-27", "text": "I love Fate, and have been there dozens of times. I agree with a lot of reviewers about the attitudes from the girls who work there. They act as though you are a bother. I can't understand why someone would work a job they hate. The food though, is incredibly tasty, and has plenty of options for vegitarians and carnivores. I like the hipster atmosphere and the food a ton. The drinks are weak, and overpriced, but the food reasonable. This translates over to next door where they charge 9 bucks for a well drink. They also treat you like scum. I'm only giving this restaurant a 4 because I pay a lot more attention to food quality and taste than I do service. I also love the fact they are open late. I work til 10pm most nights so its good to have an option that isn't fast food.", "type": "review", "business_id": "VsO_rhXi5lgbaGxNwoEZsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B2at0hn3SfbcPS54Rr_xXA", "review_id": "lwaPXul0D8mKK_UpMsxo7A", "stars": 5, "date": "2012-03-26", "text": "what can I say - we're CF regulars...just love the place. I guess we are lucky because we have never had to wait more than 15-20 minutes for 3 of us. We eat here at least twice a month and we always start with the avocado egg rolls - they are to die for and the dipping sauce is yummy! I usually get a Glam burger - the only time I eat red meat - and so far have not had one I did not like. I often take 1/2 home so I can save room for some cheesecake, an absolute must when at CF. We have never had a bad cheesecake and try a different one each time. This is the only hamburger that I have liked the next day - usually hamburger is the one food that is not a good take home food as it just does not taste good as a left over - but I have actually eaten it cold because I took a bite before heating it and just kept going...yes, weird I know.\n\nIf nothing else, go there for some avocado egg rolls and then treat yourself to a cheesecake....I'm totally addicted! Absolute divine decadence! ;D", "type": "review", "business_id": "78IaYCf9ktUep4UhhjXbTg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "3Os_YL0W-VCx0vy84bQJ8w", "stars": 4, "date": "2008-05-16", "text": "This place is similar to Rays on 3rd St. It was lunch time I had an eggplant parm sub very good the eggplant was nicely breaded not gooey and gross. The kid had a slice of cheese the slices are HUGE. The pizza and service here are always good. I suggest this place for dinner more so the meals are way better they come with a house salad and they have more options pasta and such. They deliver too.", "type": "review", "business_id": "lPtTXn7_VOwqypZs07j2nA"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "NjcHcAq5iT-7B-Ka_WLKgg", "review_id": "84nj4n2ip8uSE4SAjBa1TQ", "stars": 5, "date": "2012-09-07", "text": "Had some amazing cuisine at Milagro's. The chef is truly an innovative genius. Our food was so unique and delicious. Plus, the weather was so nice that we sat out on their beautiful patio and watched the sunset on the purple mountains. I highly recommend the PB & J appetizer. It's nothing you have ever had before I can assure you. I would also highly recommend the swordfish dish and tacos.", "type": "review", "business_id": "Q2FaJ3zB6ZuGgvqUqhdc_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_Nn8lZA9B-1nE0xP-L6hng", "review_id": "a-CPrPFDlOtG_k1fDUHleQ", "stars": 5, "date": "2010-07-03", "text": "Decided on a whim at the last minute to go here for dinner tonight, I guess that's not the thing to do here. Worked out perfect though, arrived at just about 4pm to see a hand full of people waiting and the the restaurant didn't open till 5pm. After a short debate we decided to stay, it helped that there was ample shade. The wait while hot was not uncomfortable and for the most part, newbies and veterans honored each others arrival order. 40 seats is not much for a place that does this much business and it was surprising to learn that most waiting were from out of town. I also learned that reservations are accepted on line for parties of 6 to 10 and only 3 reservations per night. Reservations are usually 1 1/2 to 2 months out. Luckily for us there was only one reserved table for 10 ahead of everyone. 5 o'clock rolled around and the loading procedure ran smooth as clock work and we had drink and food orders in by quarter after. Service was excellent and fast with just the right amount of time between salad and main course. I could not have asked for much more from my food, maybe a bit more basil on my mozzarella and tomato salad, everything was amazing including my Mexican coke. We ordered 2 pizzas, both wood fire baked to perfection. I could have eaten a whole loaf of the bread that comes with the salads, or for $2 on its own. None of our food was greasy or soggy, the olive oil they use is excellent and the fresh mozzarella mouth watering. I will go back again, planning on getting there an hour before opening. Although the food is amazing and well worth an hours wait in the Phoenix sun and heat, I would not wait for 4 to 6 hours as some people do. So for me this was a win and a lucky last minute dinner decision.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "fVwT1t-Sv4o_pDA5K-CUEw", "stars": 4, "date": "2007-03-26", "text": "I think it was the guitar playing chicken that caught my eye as I drove by. Then it was the \"Now Open\" sign. New business? Figured I had to try it.\n\nRock-n-Roll Fingers is a SO cool concept. Chicken fingers, waffle fries and Texas toast - that's pretty much the menu. The Chicken fingers may be fried or Buffalo style - but they definitely won't be from frozen chicken. They use only fresh Chicken breasts - no skin and no bones - and they fry only in Canola oil to make for the least unhealthy fried chicken they can. They have about 7 different dipping sauces - from Ranch to Thai sweet chili - though they are known for their Special Sauce. It's a secret recipe, so of course I had to try it. Pretty dang good. I also loved the BBQ which was more tangy than sweet and went perfect with the chicken. \n\nAs for the chicken - have you ever had chicken so juicy that you though it might not be fully cooked? Maybe it's just because I grew up eating overcooked food, but every once in awhile when I get chicken cooked so perfectly I have to look to make sure it isn't pink. It was SO juicy I was really shocked. And though fried, it wasn't a thick and overly crispy batter - just enough to seal in the juices while leaving you with a tender and flexible piece of meat. The waffle fries were out of this world. The Texas toast was SOOO good! \n\nWhen I got back to the office I was super excited to learn two things. This is an independently owned business - this is their first location. And even more cool - they have gotten a perfect score by the Health Department more than six times in a row. Wow. \n\nSo you can eat some really great food and support a new local business for a $5-7 lunch. Not bad. Not bad at all.", "type": "review", "business_id": "hJVt1P4FOvj-soabliLdaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nM3vfxr6fcnN_nXdzwbVCw", "review_id": "qgCkF6eAqGy6-XXGsmtvQA", "stars": 5, "date": "2010-02-15", "text": "Great time, great location, ability to park in garage behind it. Beautiful decor, candles, white furnishings, trimmed in wood. Excellent vodka choices that will have you dancing on that raised table all nite which gives you a cool panoramic view of the place. See if you can spot the dj booth! He's cool, friendly door staff. The bartenders kind of ignore you and there's a brunette girl bartender-stay away from her. Downer attitude, and she will charge you for 2 drinks even though they have a 2 for 1 special. But it's a cool club and it's 99% certain you'll have great time.", "type": "review", "business_id": "4juYmq_YpvdV8HZ1r0AWBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7PNLpIGi7OZzWcbdfu8alw", "review_id": "799y4miwZfz65itVhHoImQ", "stars": 5, "date": "2010-03-28", "text": "We drove in from LA for spring training. Had a free evening and the old Pizza Hut remake looked interesting. To our great surprise, we had one of the best Thai meals in a long time. Once you get inside, you'll forget this used to be an old Pizza Hut and you'll be transported to a bit of Southeast Asia. Good food, good service...and the price is great. I loved the eggplant with beef and the Pad See Yew (spelled differently). Was going to go again, but they close on Sundays...boo. Don't know if it's consistently this good, but for our one night in Phoenix, we were pleasantly surprised. Definitely worth a try if you're looking for good Thai food. You don't necessarily have to have a lot of heat in your food because they have plenty of dishes for chili-adverse people like me but it's there for those that need the heat. The food presentation and description will remind you of Chinese cuisine, but the flavors are unique and delicious...and definitely NOT Chinese. The Thai fried rice is definitely more than a side dish...it's a meal in itself. Try this place and you won't be disappointed.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rYG_FSHAdLp2BmkKKCt_IA", "review_id": "gldQW-9I3o94uhysZ1lTNg", "stars": 5, "date": "2012-03-08", "text": "Beef gyros are always good here.", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OhZEYs9jzyiTaSu_CfeVUA", "review_id": "RQK-UvRGLts4P2GqIgntMw", "stars": 3, "date": "2010-04-24", "text": "PPP was decent. The white chocolate beer was delicious. I will be back for some more of that. I cannot wait to go back for happy hour. Steak is steak to me. It was not out of this world, but it was good. The sides were fair, beans and bread. The beans lacked flavor, but I might just be biased, my dad makes a mean pot of cowboy beans. The whole restaurant is very kitschy. Everything revolves around the cowboy theme. This place would be great to take tourists. \n\n-1 for undercooked steak \n-1 for tasteless beans", "type": "review", "business_id": "GaeokhqmZYuPr7i1EZtnHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KlLDE4egzf9VruPheiXHMA", "review_id": "I6_ZjzOJViaLkI9XHvJXwA", "stars": 3, "date": "2011-09-05", "text": "I had seen these around before but never stopped in. Started with a drink menu and was quite happy. Good selection of Margaritas and others. The dinner menu was good as well. Drinks were excellent and food was tasty.\n\nI'll make a return trip if for nothing more than a drink. A-OK.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "I0YYbQJCYlCI9562brPbpg", "review_id": "foG5f_oSawxWk6XxB1E_PA", "stars": 3, "date": "2011-11-03", "text": "Foot Locker is home to the largest selection of athletic shoes in the mall but the pricing could be better. Their inventory also includes a dozen or so Foot Locker exclusives like several Nike Air Max 95 colorways. \n\nFoot Locker sweats, hoodies, and other athletic gear are generally durable, fit well, and priced well. The Chandler store also places some focus on team athletic apparel and miscellaneous sports accessories. \n\nThe sales aren't that great. I saw a pair of Jordan CMFT's in the white/gray/black colorway selling for $80. I bought the same pair at a Nike Outlet in New Jersey in July for $50. What's up with that?\n\nI can't call it...", "type": "review", "business_id": "Sbgrvtk0P2Zc-ckTjEVFZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lV5EpiOMlitMVjk5r6yBSw", "review_id": "heVYtq0ahdM-u7aeuSKoAA", "stars": 5, "date": "2012-03-23", "text": "My daughter and I really enjoy eating here. We tend to order the same thing every time because it's so good. She gets the grilled cheese and tomato soup combo and I get the grilled salmon nicoise salad. They both rock. It's cafeteria style all the way up to the point you pay, then you are served the rest of the way by a waiter who brings you your food and takes care of you. The food is always very fresh and delicious. And by the time we're out of there, it costs no more than eating in the food court but the experience and quality of the food are miles beyond. Highly recommended.", "type": "review", "business_id": "NOq_vpCfCfYdMRPbaUG53w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "beKlmyoDlGIMI4It65QX9w", "review_id": "bebRC66Md2xSxFREzzhvqw", "stars": 5, "date": "2011-04-19", "text": "Found the Tuck Shop on my Urban Spoon AP and what a grand surprise it ended up being! \nIn the heart of Coronado this little house has been transformed to a true Phoenix jewel!\nThe food was amazing..we had pork with a pasta and broccoli. The pork had two amazing sauces that my boyfriend I argued over which was the better. The pasta was okay a bit of a cumin flavor but great once we mixed it with the pork's sauce. The broccoli was a great fresh touch. \nThe manager came over and spent some time talking to us more about the menu and plans to open another place with a different menu soon. A must try if you are a down town kinda person! \nThe crowd was a mix of tshirts casual to formal and the patrons ages ranged just as much. The menu changes with the season so go check it out! Only complaint I've heard from people I've recommended was the lack of choice if you are a vegetarian.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Uo5f4qhP0122j71IcJ1EOg", "review_id": "_1Qp2Zj-dzTiUl6gQLly7Q", "stars": 5, "date": "2012-09-11", "text": "For a sub shop, great place.\n\nDelivery is freaky fast for sure. I order delivery half the time.\n\nPro's\n- fast delivery\n- quick service if ordering onsite\n- staff friendly\n- food is good\n\nCon's\n- No WiFi. Would like since AT&T service spotty near this building. \n\n\nGood spot. Glad there is a location here.", "type": "review", "business_id": "RQe1UP_PZ0vdmg9oCYFKqQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gdzmrSqphtyaOuSVVJzZEA", "review_id": "uWDhKPLgcE-xaKQwrSZXTw", "stars": 4, "date": "2010-11-13", "text": "high quality sushi fish. expensive. good atmosphere. good service.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "weBPiwvT2a5t-2lRfZjr5w", "review_id": "QIE0AqHEHsf3X0m4unWKjQ", "stars": 1, "date": "2010-03-23", "text": "Maybe I ate at a different restaurant than the other people, or once they got through the \"soft opening\" they gave up, because this place was not good.\n\nThe service was mediocre at best, they seemed scattered and unfocused, took five minutes to get water. I gave up on ordering anything else after that.\n\nThe food? Bland hamburger, that was cooked perfectly in the center. Too bad that outside of the center inch it was completely overcooked and dry. Soggy duck fat fried and average sweet potato fritters. \n\nLet's talk about this \"coal oven\". While the burgers are cooked in a coal oven, you could tell by the smoke hanging over the restaurant, they are cooked in an iron skillet i.e. pan fried! The coal adds absolutely zero to the burger.\n\nOverall, if I am going to spend $10 on a burger with no sides, it better be perfect, and this wasn't. I would also hope $5 would get me more than two fritters.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "23q22aC_tL8BW5FYBnrsAQ", "stars": 5, "date": "2011-01-20", "text": "Dining at Roaring Fork was enjoyable. The decor is warm and cozy, with an upscale vibe. Our large group was accommodated for on the patio, and since it was happy hour, we were quite a demanding bunch. The service was a little slow, but all drinks and food came out perfectly. \n\nI had trouble deciding what to order because everything looked so good! I split the Big Ass Burger (a huge ground chuck patty with cheddar cheese, peppered bacon, thick-cut tomatoes, pickles, and onions) and a kettle of fries with a couple friends. I also had the mixed greens salad (field greens with candied walnuts and feta, with some sort of vinegarette). The ahi tuna looked really good, as did the fish tacos. I also heard raves about the green pork chili. \n\nSo many amazing options & a great atmosphere--I'll definitely be back soon!!", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YbX50QSur8AzSwZm7KoTkw", "review_id": "spLfBMgvQRSeW0COol5kkw", "stars": 5, "date": "2012-06-13", "text": "Amazing food. Great date night place with an impressive wine list. Definitely come her again and more often.", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MUs9MnY35Vd_reFiwfxdPQ", "review_id": "JoS2aaYZMZ6-LDvV5Bq0uA", "stars": 5, "date": "2012-10-10", "text": "NEW LOCATION FOR 2012: \nPortland Parkway in Downtown Phoenix, Portland St. & Central Ave, right across from the Roosevelt Light Rail Station! \n\nSaturday, November 12, 10am-4pm\n\nFind more info here: http://www.localfirstaz.com/fall-festival/\n\nBigger location = more fun!", "type": "review", "business_id": "r0tvPoP73F9INWAEujiMPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sxnf44EtX5Kwpskl2VZCNw", "review_id": "Uw8Bp-9DRCEzrvuAHCP4bw", "stars": 4, "date": "2012-06-18", "text": "Checked in last night with a large group of people and gotta say: the staff is super professional and very nice. Clean, quiet rooms. Amenities are quite as nice as the Marriott (small pool), but there is free WiFi (connection is good and consistent) and breakfast and dinner snacks come with your room. So, good value.", "type": "review", "business_id": "P3XTxImHMkOCY9f7RDUvvQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "QkFRhFSMVf0kP4MzFUqlKA", "review_id": "rsEM2D8QKpo_hiBtiLMO0w", "stars": 5, "date": "2011-11-28", "text": "I am a huge fan of this restaurant. I love their locally grown fruits and veggies. I love their healthy options. I had their brown rice with curry sauce, veggies, and organic chicken...it was incredible! Can't wait to travel to Arizona again and return to this wonderful restaurant!\nPLEASE OPEN ANOTHER LOCATION IN THE SAN FRANCISCO BAY AREA! It would be a hit!", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ak-1d41OjOHuq3m2cAPnCg", "review_id": "NlofY9xnGbdafOI2W_ersA", "stars": 5, "date": "2011-12-28", "text": "My daughter began taking classes at Encore 6 years ago. At the time she had a bit of an attitude and didn't do too well with other girls. She instantly fell in love with Regina and took numerous classes from hip hop (her first choice) to ballet, jazz, and lyrical. I watched my daughter blossom into an amazing young woman as well as an amazing dancer. Regina involves the girls and boys in the competition experience so that they have more opportunity to learn confidence and self esteem. My daughter has had the opportunity to travel to California and Las Vegas with the studio to participate in Nationals and Master Classes. Encore is not JUST family owned, it is a family environment. I checked other studios but found a less than friendly welcome to new participants. I couldn't recommend anything more than Encore and the skills that your child learns. My daughter now works at the studio as well as dancing and my youngest daughter is taking her first classes now. I am looking forward to another 6 years or more with the Encore family.", "type": "review", "business_id": "nf-XFT_vCyPveDM6Q51xxA"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "83WQ3yROY6olQen0wP718Q", "stars": 2, "date": "2012-05-10", "text": "Abridged: \nI'm gonna be real with you. I am not in love with Pizzeria Bianco, and had I actually had to wait in line, this rating would probably be lower. My group was lucky enough to receive the last table without any wait.\n\nMaybe it was the fact that it's hard to impress me with pizza. Maybe it was a fluke that won't happen again. At least that's what everyone keeps telling me. But honestly, I just wasn't that impressed with the $19 pizza I received. Sadly, the leftovers I took home ended up being tossed because I was afraid to try it again. \n\nI've been worried about writing this for awhile (it's been sitting here unfinished for nearly a year), but in the end, my opinions haven't changed, and I sit here, still scared to return. If someone dragged me there again, or had a party there or something, I'd probably give it another shot, as I hate to write off any place after a single trip, but I honestly felt just eh about the whole thing. Thankfully none of my visiting out of town guests have cried for me to take them there.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q6-5KZu-jufADiCn5BTF1Q", "review_id": "WtZoFxEm_Y5e2sEUi2jqcA", "stars": 2, "date": "2013-01-04", "text": "I work in fine dining, and this place would have failed any shoppers report. \n\nThe server never introduced himself and was negligent in attention to us. \nThe food portions were so small I was very disappointed that they charged so much.\nManagement was scared and hesitant to check in on us and primary paced the restaurant dreading any social interaction. \n\nMy biggest concern and reason I am bothering to write this review is the PORTION SIZE. And perhaps it was just what we had ordered, but the Hamachi was barely more than two bites and the Dinosaur salad was just cheesy large kale pieces. \n\nDrinks were tasty. If ever I go back, it will be for their bar ONLY.", "type": "review", "business_id": "kr3EFhoSwbJPrL_e_RD39g"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "lmiDCrmas8TxRsbIGZX9Pg", "review_id": "a6KFfl8zy5RSYtOwz-fMEw", "stars": 3, "date": "2011-08-02", "text": "This gym is alright. I thought from the way it looked outside it would be much bigger, but it does the job. Staff is friendly and welcoming. I rather enjoy all the classes here- especially zumba. The instructor reminds me of a young Richard Simmons heehee. Yes, there are some touches that scream \"90's\" like the neon signs by the locker room, but who cares. It's a gym not a prissy spa. I'm there to sweat!", "type": "review", "business_id": "ttpZx2t4fMAApdU9MFG91w"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "4xdfcdhZSShne6aIVp1cMA", "stars": 1, "date": "2010-10-08", "text": "Ugh. My tip-off should have been the Guy Who Saw Me Reading The Menu and came outside to tell me the food was good. But I was craving Chinese, I work near the COFCO center, and it was threatening to rain. I scanned the menu, found Kung Pao chicken, and ordered up. They told me 5 minutes, and they were accurate. Price was reasonable. Waiting area was comfortable and well-decorated. Food was inedible. I got the lunch special, which include soup, egg roll, entree and fortune cookie. I couldn't eat any of it. The soup (hot and sour) was way too sour. I felt like I would get acid reflux if I ate it. I couldn't order the fried rice, because it contains peas (I've learned to ask...childhood trauma). The rice was clotted together and difficult to eat. The kung pao chicken contained a suspiciously generous amount of meat...so much so that I questioned whether it was actually chicken. I watch too many movies. The egg roll was just gross. It seemed like the wad of mushy veggies was wrapped in biscuit dough before it was deep-fried. The fortune cookie was stale, and the fortune was even lame. I would've done better to get soaking wet and hit up Panda Express.", "type": "review", "business_id": "2unQHR9uaRxk3dsW6f3MGA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "A2FF3rbujS4O760_400DVQ", "review_id": "-lvzcbzSdVqKTqYcAhOhOA", "stars": 2, "date": "2012-08-15", "text": "Humble Pie is right across from one of my favorite hang-outs, The Main Ingredient. I've seen this place numerous times and one day we saw a Groupon for them, so decided to purchase it and give it a try. \nThe place was fairly dead for a Saturday night. I had always seen this place packed when passing by. Maybe we missed the rush? \nThe service was nothing special. Our server had no personality and seemed bored. I ordered a pizza with pistachios, parmesan and red onions and my boyfriend ordered some kind of BBQ chicken pizza. The pizza was dry and didn't have a ton of flavor. It wasn't AWFUL, but it wasn't REMARKABLE either. We left unimpressed and don't really have any craving to go back there again. Wish we understood what all the hype is about. Maybe we just ordered the wrong pizzas?", "type": "review", "business_id": "QkyN2vqQidQhotvOtPIrkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wy8Yd_vCWDjiz9rMo4HfqA", "review_id": "GqMxrKvTrkDeG4ZS5mSlqg", "stars": 2, "date": "2012-11-07", "text": "So the place has Christmas lights, and a fair amount of ambiance, and supposedly there's a shirtless shot at 1:00 - which might make going back worth it. Other than that, the service was less than lackluster, the domestic kegs all seemed flat. In other words, go somewhere else unless it's 1:00 and you want to see some daytime nudity.", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "QzA6ZW1NFid32_g_fsapIg", "review_id": "zy6ejdZ8_lQt1a7wKvO3wA", "stars": 1, "date": "2010-07-17", "text": "Good prices but this please is honestly not worth the hassle. First of all you have to leave your purse at the counter. I am not comfortable doing that anywhere. Who does that? The only place I have ever seen this before was ASU's bookstore. \n\nThen you walk in this warehouse that has NO air conditioning!!! I made the mistake of going yesterday in the middle of the day (111 degrees out, yikes!) Then you get inside and you have to carry a catalog to refer to for prices since items are unmarked in large boxes. \n\nIf they had a/c it would have been worth it to save a few bucks on the toys my dog destroys in minutes but no air conditioning??? IN ARIZONA?? Madness!", "type": "review", "business_id": "Dj3i6a_vboALYTRKTmBABQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "LXWAXIeYFIdgd2JVPF-9qA", "review_id": "lu3D6AtN2mDxUk4UhL0sLQ", "stars": 4, "date": "2011-04-17", "text": "Crazy busy on a Sunday morning @10:00, sat at the bar..quick service..both ordered the Calf. Benny, Next trip the pork carnitas. Waitress recommended the Southwest carnitas which looked awesome.\nGreat place for breakfast/brunch.", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D2NKLp8yrK-49RKslrOnpw", "review_id": "Ax6qRlyEfp56TJu-yhG8NQ", "stars": 1, "date": "2011-10-18", "text": "Here's a thought, don't post on the door to your restaraunt \"Up scale Mexican Food\" unless you can prove it. This was not upscale, it was barely pass-able as decent. Didn't help that the waitress got both of our orders wrong. Will not return.", "type": "review", "business_id": "TAlmdEr0RNWZh9IiUS_BLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gc2D5JdO5mvPZCZyI2Zghg", "review_id": "uYHle6vzLZQqs8Y1djdQIQ", "stars": 5, "date": "2012-10-24", "text": "Great service, great food, highly recommend. We had the scollops and they were to die for, the scotch beef and mac and cheese were also amazing. Will definitely go back and recommend to friends.", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 3, "useful": 11, "cool": 8}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "Az6m9a6YHw9qstIFmeg4oQ", "stars": 5, "date": "2009-01-13", "text": "The Montelucia Resort is home to Crave Cafe, and the fact that I was blown away by how beautiful the resort is has nothing to do with how impressed I was with Crave.\n\nWhat are you craving at the moment? Perhaps a cup of coffee? a scoop of gelato? an empanada? gourmet pastry? homemade tomato soup? perhaps a panini sandwich filled with turkey, cheese, grilled eggplant, and cranberry compote? red wine? magazine? fresh fruit? Diet Coke?\n\nWhatever your 'crave-ing' - Crave has it all!\n\nIn addition to pretty much anything your heart desires, Crave also has an extremely friendly staff and offers limited seating (in and outside) with gorgeous views of Camelback mountain.\n\nAfter a full tour of the resort, we were hungry for lunch and decided to have a quick bite at Crave... We shared a sandwich, slice of quiche, and tomato soup - all of it was delicious! I am sure I'll be craving a return trip to the Montelucia sometime soon, and when I do, I'm sure I'll pop into Crave for whatever I need at that time.", "type": "review", "business_id": "o2BeeJmpf_J9EmC8HQoHRA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "Uw3wTuKVbGrwqLqjNqXphg", "stars": 4, "date": "2009-03-30", "text": "yumtastic!! just don't forget your safety whistle and pepper spray! ....even during the day....", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Vsfr0PxH_A458czK15n8dw", "review_id": "0cr4EdYQFAybYMFIXXNKWQ", "stars": 3, "date": "2012-02-22", "text": "This store is a average. It has a six month wall. This place does not bag and board new issues unless asked. The store specializes in new stuff only and has almost no back stock. The store has tournaments for card gaming on weekends. The staff doesn't talk to new customers much or ask them if they need assistance. Note for true comic fans...\nThis store is good for new comics on Wednesdays and supplies but that is about it. Dime-a-dozen store... nothing special.", "type": "review", "business_id": "W6TgqysHj-5rFryJ2IIyfQ"} +{"votes": {"funny": 3, "useful": 2, "cool": 1}, "user_id": "oexyVjQSZ62qT7tpxgOcKg", "review_id": "qm3CjELLt16JjVRFJDwLnQ", "stars": 5, "date": "2011-11-08", "text": "Please excuse this review as I am writing it as I come to from my food coma. We just moved to Phoenix and at the time of dining we were not familiar with the Fox Restaurant Group. We happened upon CD on accident on a Tuesday night. I must say the place was pretty hoppin' for an early week night. We ordered the pretzels with fondue, the fried chicken and the steak. It was so good we didn't even speak to each other through the entire sitting. It was the kind of meal you don't mind having indigestion after because you get the pleasure of re tasting the deliciousness. Gross, I know, but you know what I'm talking about! The server we had was as good as a ghost. We never wanted for anything but he left us alone. I wasn't super crazy about the monkey bread but my honey ate it like we hadn't had a ridiculously large meal 15 minutes before. I'd kinda like to shave off like a 1/4 of a star because the staff was ultra trendy/Indie as were a majority of the patrons. They looked like H&M and Urban Outfitters threw up all over them but if that's the gimmick I'm ok with it since the food was so amazing.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8bb1QKOcn35AtX94Hibo1g", "review_id": "RHxWfzsTePXDm6YnbDQ5zA", "stars": 2, "date": "2013-01-03", "text": "Cannot rate their technical service because they NEVER SHOWED UP or CALLED TO RESCHEDULE. I made a service call appointment with Flores Air and received a time of \"around noon\" and we will call in advance. I received a call at 11 and they said they were in the area and could be there in about 45 minutes. After a no-show, I called them around 1 and the man said they were stuck at a job and would not make it. I rescheduled with them for two days later. They said they could get there around 3. No call that day and I have not seen them. Today is another day and still no call from them. I will not be calling them back again to schedule another NO-SHOW. Customer service is non-existent", "type": "review", "business_id": "YXp62JdXJDzX0EuRv_zgMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VgdDYz0-i1kDszfEu5nFdg", "review_id": "8NxK5DXJTR46pKghCYJlSA", "stars": 4, "date": "2012-02-13", "text": "This is a wonderful little find. We sat on the 2nd floor patio and it was the perfect fix for a busy day. We sipped wine in front of the fire and watched the sky change colors over Camelback Mountain. The service was fabulous. They didn't rush us and without asking, split our shared orders for us. The food was fabulous! OMG! You HAVE to get the walnut Gorgonzola salad with the warm sweetened balsamic dressing. Mmmm. I would get that again in a heartbeat. We also split a flatbread with fries and it was excellent as well. I will definitely go back.", "type": "review", "business_id": "Cse5FvYuACIxljwaac2SZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "VqDKlhAtDIRjxQdwvqusBQ", "stars": 4, "date": "2009-11-20", "text": "I have been to this place twice so far. The first time I had no idea what to expect since I never heard of it before. I honestly have no idea what to compare it to but I guess the closest thing is Texas Road House judging by the reviews here on Yelp. Anyway, I know its not the classiest joint with the best food, but anything is worth a fair shot. The first time my wife and I went we were in the area doing some shopping and just wanted something quick and casual for dinner. We didn't expect anything great but to be honest our expectations were exceeded.\n\nThe happy hour is pretty good. $3 pints and 2 for 1 cocktails/wine. Both times we went we ordered a 2 for 1 drink which would have been ok if they didn't charge too much for the first one. I mean $5 for a small glass of Yellow Tail? They are giving you 2 though so I can't complain too much I guess.\n\nThe thing we love about this place is the 2 meals for $13.99 special they have going on. There are some pretty good options if you stay away from the fried stuff. So far we have had the chop steak, steak and the salmon. They are all very good and decently sized. They prepare them however you want (sauce on the side, etc.) and everything comes with 2 sides. There are 10 or so sides to choose from. I get a side salad and some grilled onions or mushrooms to go with whatever meat I am having and they are always very good. My wife always gets some sort of grilled vegetable and they are good as well. \n\nThe service is very fast and friendly and the food always comes out pretty quick. Oh yeah, and I also am a fan of their peanuts as well as the rolls that you get to start.", "type": "review", "business_id": "puy0PzIcCgR3KWJI7llBFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hI9F0tAwQE0T1mZM9_HysA", "review_id": "Wl-qZPyjdGqwtDWjguPFrw", "stars": 5, "date": "2010-05-12", "text": "The people at this title company are as good as it gets.\nThey are eager to do a really good job for the agents that use\nthem. Bill Risser and Paul Guenther are techno pros regarding\nthe Social Media techniques and readily share their expertise\nand time to teach the skills of Twitter, Facebook, Hootsuite, and \nother aspects of Social Media which agents can utilize to serve their clients in a diligent and efficacious manner. The buyers and sellers of property will really gain by using them because their handling of the transaction will be efficiently and quickly finished.", "type": "review", "business_id": "PrYz1XEnvGJ-5Q0VVPCLnQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_bHzW18Vg1gxTMoR1fFZhA", "review_id": "KWYgMg391OHHYkV74usyXA", "stars": 2, "date": "2012-10-21", "text": "This restaurant was just okay to me. I ordered a thin crust and it was just average. The garlic cheese bread was the best part of the meal. It was tasty. The staff was friendly, so that was a plus.", "type": "review", "business_id": "ILsZjIibFtGHMDELeX610Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "FX08eHC3TK29JEilRt5V-g", "review_id": "b9_bJ5QMh6kKj-rRPjJLDw", "stars": 5, "date": "2011-10-02", "text": "prepare to spend a few hours here and really have a romantic experience. the food is divine. the service is laid back (in a good way). the chef runs the whole show and plays all hats. the menu is forever changing and when you make a reservation he will ask you questions so he can tailor your meal and experience to your needs. probably not a good first date place because if the date goes wrong, you will be stuck for a while. perfect spot for an anniversary or something. or even just to have a nice meal with people you know and care about.", "type": "review", "business_id": "L-uPZxooP_ziXCtRrWi8Pw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "zgCO0TnkvfohTmwPTwP7Ew", "review_id": "luRxpQ6ILLt0Dlz1S41gVQ", "stars": 3, "date": "2010-10-07", "text": "Bar Smith has potential to be a chic hot spot in the heart of downtown; just a few steps away from the symphony hall, Chase Field, and the US airways Arena. However, this place, despite it's pseudo-hipness fails to deliver in the cocktail department, which, with it's continuously crappy music, would be the only real reason you'd come to this bar. It's really a 2.5 star place-- bartenders are nice,but don't really get the job done. When you're paying over $8/drink, you'd at least expect them to do that. The roof is cool though so an extra .5 stars for that.", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cBG3WD3mKDfZ1BNu7Do50A", "review_id": "pAVUh5YETvzw2s9Br3nokQ", "stars": 5, "date": "2012-10-05", "text": "Hands down, the best pizza in the East Valley!!!! Tastes like I'm back in New York City, that's how good the pizza is! They do all sorts of combinations and toppings. Mmmm mmmm good. The hero sandwiches and wings are good too. Located in a strip mall next to AMC movie theaters, it's a great place to go before or after the movies. And they deliver, too. Much better quality than chain pizzerias.", "type": "review", "business_id": "lTk4l6YgxNXNaMCD9mcD6Q"} +{"votes": {"funny": 2, "useful": 7, "cool": 6}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "KoNrflvC-T14zBJEA6Z0Rw", "stars": 4, "date": "2009-04-24", "text": "The really interesting thing about this preserve is that it's in the middle of Gilbert. You'd never expect to find a nature preserve tucked between the unassuming Gilbert Public Library and track-home neighborhoods. Yet, it's there, and it's quite a gem of the east valley. \n\nThey have multiple things going on all times of the year, from guided bird watching to night-time observatory star gazing. The preserve is a little sanctuary of nature and beauty within the confines of our sprawling metropolis and I absolutely love it. \n\nWhat I especially enjoy is how the Gilbert Public Library looks out to the preserve with its giant floor-to-ceiling windows. So even when it's sweltering in the dead of summer, you can still go to the preserve and enjoy the beauty while reading a book in the library.", "type": "review", "business_id": "ZCE_ZHlZGpWPGICWpGNrdQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "rBo4aei3_vQvovryCsF0lw", "stars": 4, "date": "2011-06-24", "text": "Delicious, fresh, flavorful, with a lot of meat and vegetarian options to please any discerning palate. They also offer soups and salads, which I hear are equally as delicious, and many different options for sides. It's sad to see that this plaza, which used to house Michael's and several other stores, is now nearly defunct, and the last remaining vestiges of this plaza's prime days is this deli, Pong Pong Chinese food, which is right next door, and a few other specialty stores.\n\nMy favorite so far is the Southwest wrap. The Buena Bella vegetarian sandwich, though touted as a healthy alternative, seems to be a bit too salty to make it really that healthy for you.", "type": "review", "business_id": "bF7KQ6AQK5rBS7aOFKtlWg"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "2yIPrAxUx7qft-6AdoSx2Q", "stars": 4, "date": "2009-03-20", "text": "The husband and I went here for breakfast the other morning at about 9 am. The patio was about 2/3 full but the inside was empty. When you first walk in, you are greeted with menus that are extremely reminiscent of Pei Wei. Turns out, you order the exact same way at said restaurant and you even get a number and choose your own table. As I sat waiting for my food, I contemplated whether or not this concept worked well for breakfast. The place started getting busy about 3 minutes after we sat down and I discovered the concept works quite well.\n\nSo many things on the menu looked delicious, and I had a hard time deciding what to get. For starters, they have pancakes with peanut butter chips! YUM! Any restaurant that does peanut butter chip pancakes gets bonus points from me. The rest of the menu varies from omelets to brizzas (breakfast pizzas) to good ol pigs in a blanket. The husband and I decided to share a few things. We got the peanut butter chip pancakes, the pigs in a blanket, and a cinnamon roll. The pancakes were awesome and HUGE! After just one I was already feeling full. The pigs in a blanket were absolutely delicious, primarily because of the yummy and kind of spicy breakfast link. The cinnamon roll was also tasty, nice and fresh, but not too cinnamony. \n\nBack to the concept of this place... once it had started to pick up again in terms of customers, I noticed how quickly the cashier was able to clear out the line. I also noticed that the food was coming out at a really quick pace, and absolutely nothing sat on the line waiting to be served. It works really well, but I am most interested in seeing how it works when the place gets absolutely slammed.\n\nOverall, this is an excellent place to try. You will not be disappointed with your fresh and delicious breakfast that doesn't make you feel heavy and gross after you leave. A cool place for sure.", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "lmDgEYFGNbjzPYjUUG58AA", "stars": 4, "date": "2011-06-12", "text": "Let's see great coffee....great muffins....good service....coffee drinks need some work though. D&D never lets me down when it comes to plain ole american coffee....but there attempts at making coffee drinks to compete with Starbucks and even Mcdonald's for that matter come up lame. I tried for example the frozen hot chocolate the other day....taste like plain ole chocolate milk with whip cream. The coolatta's and other frozen drinks are not bad but Starbucks is much better.\n\nHowever with all that being said....no one makes a better cup of coffee.......... by fast food standards anyway..... than does D&D. The coupons I get every couple of weeks also rock because I can get that great coffee cake muffin they make for 99 cents. I also get get coupons for 1.00 off combos.....free doughnuts....and even 99 cent for large coffee's (although I never have that size...LOL). So if your looking for great coffee and maybe a cheap breakfast to go along with it give D&D a try and remember to Eat, Drink, and be Merry my Friends!!!!", "type": "review", "business_id": "_8IwRyq-N0kQqnTB-NTUwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "AMKiaeevcw1k75yeRgNAxg", "review_id": "uPXZoW4S8ISdSb__dIgc3Q", "stars": 5, "date": "2012-10-23", "text": "If your day is lacking a good decision, this place will change the course of your life - at least for an hour.\n\nI have only ever ordered the Oggie (I'm a one pasty kind of guy), but most of my friends have had their way with the rest of the menu and it doesn't disappoint.\n\nEasily one of my favorite spots in Tempe. It's also a much larger version of its former self so you no longer have to gladly wait an hour for a table.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "hFG1Lira7tL_PElq6bdAAw", "review_id": "dulcNLRZx-2YOP4TQejaJQ", "stars": 4, "date": "2008-12-07", "text": "Bianco is a great place to go for a reasonably priced dinner with good ambiance and solid rendition of Mexican food. \nYup, there are holes-in-the-wall tacquerias with tastier food. But Bianco is spot-on in terms of overall concept with good service and modern furnishing. Puts this on a repeat list.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "19FkHmJef18CJedDPgJ_yw", "review_id": "TN9w62yuUBAltMmfY7kREw", "stars": 5, "date": "2011-08-24", "text": "You speak Italian to me and provide mouth watering, soul lifting coconut gelato with micro-chips of chocolate in them?! I only wish you weren't 30 miles away...but I would walk in 116 degree heat to get there - for real!", "type": "review", "business_id": "CKjcewWeWvdJ7TzOQbZOIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zYgSDyEHVcMLRL1LLms7IA", "review_id": "j3rrVyshgMxKo2sB5nHGig", "stars": 5, "date": "2010-06-06", "text": "The place is a hole in the wall right behind the PHX car rental center. Arrived at dinner time, and had the best Mexican food! I had the #5 Machaca Plate w/rice, beans, & one of their homemade tortilla's burrito style. It was just amazing, and so cheap ($5.65). The only issue I have with this place is that its very well used, and looks very dirty, I did find it a bit sticky. Maybe this is a better place for pickup. If you want a clean restaurant, their North restaurant on Cactus Road restaurant is much cleaner.", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HxMkDhc-nyZbt9KZHMZF9Q", "review_id": "kgyVk9N13Ke2A9fnxTennA", "stars": 5, "date": "2012-06-10", "text": "I'll be back! \n\nLaura certainly doesn't need my review for help, but all of these people are correct. She is meticulous, easy to be around and takes joy in her work. When I read all of the 5 star reviews, I sort of thought they might be written by friends because they were so gushy. I found her via Yelp.... and loved her! \n\n$20 eyebrow wax, takes credit cards.", "type": "review", "business_id": "Evg8IfqcHSyTPV9sLNhArw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2PrEVYskE4RU5_61hM8jWw", "review_id": "pfIZix8LtHgsRJTe_48x3w", "stars": 4, "date": "2011-08-22", "text": "For a brewery type restaurant they do a pretty good job, in fact mabe the best one in town for me. Most of these type of places do a very mediocre jobs with a very extensive menu. \n\nBJ's has a great gluten free options. the pizza is very good, probably the best I've had in town. good selection of beers. service is always pretty good.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FFzadNTcO4mwRSELjBq9Cw", "review_id": "BMmK7VMY4KuG74GaZBZaQg", "stars": 4, "date": "2011-02-15", "text": "Having recently moved from the Bay Area, I had ignorantly thought that there wouldn't be any decent ethnic, especially asian ethnic, food. Thankfully, I am completely wrong! Elephant Thai is a good thai place with a varied menu, freshly made food, and nice atmosphere. An added plus to the Tempe location was that they allowed us to bring our small pooch to the patio area where we dined. We did have the corn cakes, which were ok. I don't remember them being bad or great...but my husband likes corn a lot, and I think he enjoyed them more than me. The green papaya salad was as close in flavor to the papaya salad we had freshly made for us on the beaches of Thailand as I'd expect around here. We also had the thom ka soup which was really tasty. It was a while ago, so I can't remember the entrees we got. I probably got the pad thai...just to try it, and some kind of meat dish. I definitely don't remember anything being awful...and although it might not have been exceptional food, it was enjoyable. Thai ice tea was yummy, and my husband had the limeade which was too tart for me, although he thought it was really sweet and quite good. I do remember that for 2 people, what we ordered was a huge amount of food that we had no chance of finishing, and yet the final bill was quite reasonable. \n\nWe weren't able to order any dessert, but I did notice that they had the sticky rice w/ mango on the menu. It probably wasn't in season anyways, but I will definitely be ordering that at some point. This will definitely be one of our go to thai places.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZOQDa60lRcvR9Sb7VU6eKQ", "review_id": "sAoUwDbsv2C0X5GXcCMs3g", "stars": 5, "date": "2012-06-18", "text": "Awesome Mexican food, fast service at drive in or sit in and eat...try the new fish tacos, they're great, and authentic, too.", "type": "review", "business_id": "9NT8Ne1DICkv0ebX-gVK5g"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "07QrlEBAY9bp7ivPl3_tDw", "review_id": "3EWJz2XAiFELIVLQHgSvXQ", "stars": 1, "date": "2010-01-19", "text": "I only ask for two things when I'm flying. To land safely. And to not fear planes while on them.\n\nUS Airways only delivered on one of those, and I'm still undecided on the first one.\nTook a flight late from PHX to SFO. Two hours isn't too bad. Unless of course it was the longest two hours of your life and you could hear people in the cabin praying for their lives.\nI understand that turbulence is normal. But I would rather you cancel another flight because it is too dangerous to fly, then to put passengers through the scariest flight of their lives.\nOh and when you finally do land and are thanking your maker that you are in fact still alive, its probably best that you don't have to overhear the pilots saying \"Wow, that was scary. I'm surprised we landed alright.\"\nMorons. They should pay for the trauma I'll have for the rest of my life.", "type": "review", "business_id": "5M7YgorCUTEZkKYNbKDHTA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HFzJb1EnBsB6fD5s-9fXUA", "review_id": "5rl6W3knAM60bAKzCp1emA", "stars": 5, "date": "2011-12-22", "text": "This, my friends, is THE place to get some very authentic Chinese food. \n\nThe servings are HUGE for what you're paying...shucks, they are huge no matter which way you look at it so be careful not to order too much food unless you want leftovers. Who doesn't like leftover Chinese food anyway?\n\nMy recommendations are the Sweet and Sour chicken, the Egg Foo Yung and the chow mein. You will not be disappointed.\n\nYou'll also find the soups on the back of the menu at an average of 4 bucks or so. You will be pleasantly surprised when you get the bowl...it can feed at least 6 people. She will bring small bowls out and serve it for you right at the table. Give the hot and sour soup a try.\n\nAs for the service, it depends on how you look at it. Don't be afraid to get up and refill your own water. Shoot, the waitress is the only one that's there, give her a break already. She must own the joint with her husband because there is always this little kid in the corner playing on his laptop. So, get your own water and your own take home containers if you want. She doesn't have a problem with it.\n\nYes, the place is a little worn but you don't go there to look at pretty stuff. It's not dirty, just broke down. You'd be broke down too if you practically gave away your food in abundance to your customers. Who has money for new furniture if you take care of your customers bellies. The lobster, crab and fish are fresh and cheap. Try finding lobster somewhere else in the valley for 10 bucks a pound, I dare ya. \n\nSo, head on out, just don't go on a Wednesday, that's their day off. They are open 11AM to 11PM every other day though. You can call in your order and pick it up if you don't want to look at the place.\n\nOh yeah, and if you ever go in there and it smells horrid, it's not the place, it's a popular dish that some customers order called \"Salty Fish\". It stinks to all heck! If that plate comes out I usually pack up my food, giggle and finish my meal at home. I don't mind one bit, that's just the way it is.\n\nOh and the waitress does speak good English, however, you wont find many Caucasians frequenting this place. That means the food is pretty authentic!", "type": "review", "business_id": "Xsl-i1otDd3GXJEkkKJCaw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4kfvccmKDUgCXu_jLYm5dQ", "review_id": "xqsbbNR4VMiSL6m2wl5Nag", "stars": 4, "date": "2011-01-29", "text": "Citizen Public House is a great addition to the Old Town dining scene. I love seeing restaurants crop up in that part of town that aren't just catering to the bar scene and making the food an afterthought. My girlfriend and I made reservations for Friday night expecting Bernie Kantak's new restaurant to be packed. Much to our surprise when we arrived, the place was pretty dead with tons of open tables. We purposely arrived early to enjoy a cocktail at the bar and even though we could have been seated right away, we pressed forward with our original plan.\n\nAt the bar, I ordered my usual cocktail while the GF ordered a sangria off their cocktail menu. We also ordered an order of the bacon fat heirloom popcorn from the bar snacks menu. My cocktail was perfectly made and my GF loved the sangria. The popcorn took forever to come out, but when it was delivered they also brought out an order of the calamari compliments of the chef. The popcorn was a little bit burned and we both thought it could have used some salt, which was surprising since we thought the bacon fat would have provided that flavor. The calamari was perfectly cooked and not greasy in the least. I enjoyed the pickled fennel on the side, but my GF isn't a fan of fennel, so she didn't try it.\n\nAfter we finished our cocktails at the bar, we moved to a table for the main event. In an unusual move for us, we skipped wine and stuck with beer and cocktails, but I did eye some good finds on the concise wine list. For our appetizer, we ordered the sausage of the day, which was a beef based sausage with a cabbage casing. It was very unique and we both really enjoyed it. For our main courses, the GF ordered the AZ B.L.T. and ordered the Pork Tender Loin. The B.L.T. had tons of perfectly crispy bacon on it, but we both agreed that it was really good , but not great overall. The Pork Tender Loin, on the other hand, was excellent in my opinion. I loved the figs and the sweet potato-chevre strudel. Of course, you could put chevre on anything and I would like it.\n\nWhen it was time for dessert, we knew that we had to try some of Tracy Dempsey's latest creations. We normally split dessert, but decided to each get our own. The GF got the cookies and milk and I had the chocolate toffee bread pudding. The cookies are delivered in a bag that you can take home, which is great because you probably won't down the generous serving of cookies in one setting unless you're sharing. My GF was quite happy to take home a little bag of cookies to enjoy later. My bread pudding was awesome and I wish I could have purchased a gallon of the Maker's Mark ice cream to take home with me. I'll definitely be craving this dessert in the future.\n\nThe atmosphere of the restaurant is a little austere, even for my taste. It just seems like they could a little bit to make it a little bit more warm and inviting. Service, while extremely friendly, was a little bit uneven throughout the night starting with the snacks at the bar taking a long time and continuing with confusion over what tables plates should be delivered to. Keep in mind the restaurant has been open for only a week, so these are things that can be worked out.\n\nWe were really surprised to see the restaurant so empty on a Friday night, so I hope more people give it a try. Citizen is a really good neighborhood restaurant that has the potential to be great. We look forward to trying it again to see how it improves and evolves. I'm really hoping it's a successful staple in Old Town for years to come.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mgrcyvw45-7JU5wCCT6-oQ", "review_id": "Kba4TmXBgHd_zk-UbDiKkg", "stars": 4, "date": "2009-08-07", "text": "THIS PLACE IS GREAT IF YOU ARE TRAVELING WITH YOUR DOG!\n\nThe double bed room was extremely clean and updated. Nice fluffy pillows and duvet covers. Bathrooms nice and new looking. The daily breakfast bar was wonderful and the sitting area clean and nice. \n\nThe one issue was the AC. Jeez it was a rattle bucket and kept us up at night. we would turn it off until we would wake up sweating and then turn it on for an hour, wake up and turn it off.....oh brother. I would have liked a good night sleep, since everything else was nice. \n\nPets welcome and that was a bonus.", "type": "review", "business_id": "ABUqetCAtUcDLHWhpsSL3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pcKja1DALwaeWy9G6VjvEQ", "review_id": "J2dF8Qp2SepmBB-Y1NrS3Q", "stars": 5, "date": "2010-09-08", "text": "Two other AC companies were going to charge me double for the same fix. Accutemp has a new customer for life! Highly recommend!", "type": "review", "business_id": "B60TXdNB8ziFyI2XH4Wlaw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "hV225B_UgT368FKzOk2daw", "review_id": "6SVB0ptxqyEQWwosoZu1WA", "stars": 5, "date": "2008-01-13", "text": "If you are looking for TLC in very unique pet products and family style customer service, Posh Pet Boutique and spaW is where you need to go. They have retailed my collection of Decadent Digs there for going on 3 years, since the first day she opened her doors. I have seen her business blossom and become the destination and extra sunshine of the Troon Area. Her loving warmth (sort of Doris Day way) makes you feel like you are in her home and makes want you to come back often. She carries a huge collection of class act merchandise from cute clothes to a killer Kitty high-rise and offers excellent grooming. She is worth the trip.", "type": "review", "business_id": "Mh04jeZN1kKfS_u3JU-I_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LoYy8ruCxPZZPF78_Bu2eQ", "review_id": "fGjOanMCzC4n6FnVhZ8iOg", "stars": 4, "date": "2012-05-30", "text": "Well, we all went to a going away party here at Casey Moore's Oyster House and the place was fairly nice lots of security around but very limited parking (we parked a few blocks away and had to walk in) food was good but my onion soup was way to salty though and the dip sandwich was by far the worst item to order on the menu (just sliced meat and bread) and I had order it. My wife ordered the shrimp scampi and for some reason it came out with a heavy cream sauce, no complaints because it was good but it was not scampi. Tuna was perfect I had a chance to taste it and that cooked perfect and I did notice a co- worker leave the 1/2 of the fish and chips on there plate no a good sign. Clam chowder was good as a few friends did say they enjoyed it. Calamari was off the chain \"Perfect\". The server was warm, friendly and polite and had some great suggestions for dinner and was very patient and waited for us to have few rounds before we ordered dinner. The place is pretty big and it seems that if you would come and sit in a different place each time it would be like going to a different place. Music was jamming something for everyone. Folks were friendly and the place was packed. \n\nNow, cleanliness it seems like it could use a wipe down, moping an a power wash in a few spots but I guess after a few cold ones you don't see it anymore. Will I go back? Yes, I would, affordable food, good music and folks all in a good mood I'm there.\n\n4 stars due to they are still a littler ruff around the edges.\n\nPeace :)", "type": "review", "business_id": "2ceeU8e3nZjaPfGmLwh4kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j0CbgXhpwS8b7qKgZnPmWw", "review_id": "z9BrZS-fUHra7bt1OTbzyg", "stars": 5, "date": "2010-09-12", "text": "\"MMMM. THIS IS. A TASTY BURGER.\" - Jules. Pulp Fiction.\n\nI like this place, my siblings like this place, and it's the best thing I've got to remembering better times back home in California. \n\nIt's a quick fix for people who want good burgers at a decent price. It always hits the spot when I'm feeling like a fatty. :)\n\nEven considered biking all the way here from my house when my car was dead and going through the drive through. (Coz the cool kids did it back then... In CA anyway haha. And employees didn't care.)\nI agree that drive thru is an atrociously long wait during the afternoon (after school). \nPeeps who work here seem pretty chill since I always ALWAYS, ask them for the hats and throw dozens and dozens of ketchup packets in with my to-go orders. Biiiiiiiiiiig plus!", "type": "review", "business_id": "X6mWr96ibKdXQSA6mpH90g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iwZ_7QuZ1tzT6pIZmOlDQg", "review_id": "thPwnvZR8JSVTahoxhZ-hg", "stars": 5, "date": "2010-07-30", "text": "Fresh. Tasty. Interesting. Good \"People Watching.\"\n\nLove everything I have tried here. The Happy Hour \"tapas\" are excellent. My daughter could not get enough of the garlic chicken one.\n\nThe 3-bean plate is delish - kinda like \"meatless chili\" but you don't miss the meat. \n\nThe fruit salad is massive and the fruit served with it is completely top-notch.\n\nWait staff is mostly cute college girls, which is hardly ever a completely bad thing. Never had a problem with good, attentive service, which CAN be a problem sometimes.\n\nI go eat there as often as is reasonable. Highly Recommended.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "eIUqiesI0G5oUDPkbNjX0g", "stars": 1, "date": "2011-03-22", "text": "I had one of the worst experiences of my vegetarian life here. I had been to Johnny Rocket's before and gotten the vegan option so I knew I would be ok going here. I was out with my meat eating sister and my pescatarian husband so I figured this place would be the best for all three of us to get what we want. \n\nWe get in and I ordered a burger that wasn't the Streamliner (1st mistake), and just ordered it with the BOCA burger. The waitress takes our order, my husband also ordered his with a BOCA. \n\nAbout 20 minutes later the food comes out. The patty looks right. I was a little apprehensive and I should have gone with my gut feeling on not eating here this day, but I ignored it. It had been awhile since I had eaten a BOCA patty (over a year), so I THOUGHT it looked right. (2nd mistake)\n\nI start eating it and about half way through it the bill hits our table. It was crowded in there so the waitress must have been trying to get us out of there. So I look at the bill and notice both my husband and my burgers say Turkey substitution. I immediately start to freak out. We call the waitress over and explain to her that we ordered BOCA, why does it say Turkey? She then tells us that it is BOCA it just says turkey. I say, no that doesn't sound right. So she goes to talk to her manager I guess because we never saw her again. The manager comes over to our table and apologizes profusely for what happened. I'm upset because how the hell do you confuse BOCA and Turkey? I mean, really. I know some people might think how did I not know the difference. And I thought that to myself as well, but the truth is it slipped by me even though it shouldn't have. And it hurts me every time I think about it. I will never come to this Johnny Rockets again, if any of them ever again because of this experience. \n\nAll I can say is, if you are vegan or vegetarian, and you go to any of the Johnny Rockets, make sure that your waitress/waiter knows that a BOCA burger isn't meat. Stress that to them. Because obviously they aren't trained to know what the difference is.", "type": "review", "business_id": "hxw-JWXKkYOSjZP0iZlj7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-nixD-_P51FMF1h9GXBtMQ", "review_id": "73kMvaRDICT8ekn5dMYKIA", "stars": 2, "date": "2011-02-14", "text": "Happened to be at the mall around 6:30pm and decided to go to Z'Tejas for dinner. It was a 25 min wait. Looked across the way and saw lots of open tables at Kona Grill. That ought to have registered as a red flag but since I was starving I guess my mental acuity was off. The hostess sat us in the back of the restaurant with a clear view of the hallway leading to the restrooms. We commented to our hostess that we were awful close to the restrooms. She chirped, yeah. End of discussion. I ordered a grey goose on the rocks, you know, vodka and ice in a glass. What I got back wasn't grey goose and it was mixed with soda, but it was in a glass though. My wife ordered a rib eye sandwich, medium. What she got was still breathing. My Korean chicken was almost warm but I attribute most of that to the spices. It was good but not great. I will say that our server was terrific and the manager did come by to check on us. This used to be a good spot but seems to be going through a transition period to become mediocre. Too bad.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "6lJK2VDBJWY2JSLOf7JRiQ", "review_id": "c6h7sVmpMUmTTRtYans4Dg", "stars": 4, "date": "2008-07-19", "text": "Being from out of town each time I visit Surprise Portofino is a must stop. The decor could use some sprucing up but over all it's neat and clean. The service is excellent. The staff is very attentive. Always willing to bring you another plate of wonderful bruschetta (and it's free!). \n\nIf you go an a weekend in the evening you get to hear the sounds of Buddy Raymond. His tunes add to the ambiance. He is very entertaining. My family has actually become fans of Buddy and look forward to his oldies. We only visit Portofino on nights that he will be in attendance. \n\nI had the pleasure of visiting Portofino last weekend and can't wait till the next time!", "type": "review", "business_id": "wCqLDgQKqt_4BTm884MKmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eiA073MhHpCdwBq8u_luZA", "review_id": "Fuc_gBqciBUdi0lePpkqhQ", "stars": 4, "date": "2011-05-09", "text": "Some hits and some misses.\n\nHits : bruschetta and salads\n\nMisses: Pizzas other then the margherita (luckily though I got the scrumptious tomato and mozzarella pizza)\n\nGreat service and pretty good food.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "koCnQtL67F01I-P9DbUemA", "review_id": "SGP-9umjcLl-4YywUHseuA", "stars": 4, "date": "2009-08-12", "text": "This place really hits the spot. It's everything a hamburger place should be and nothing it shouldn't. Their burgers are good-sized and delicious. I attribute their scrumptiousness to the bread in the buns, but their meat is phenomenal as well; add some cheese and green chiles, and it's like a bunch of awesome ingredients decided to get together to take part in creating one of the best burgers in town with a little help from the grill. The fries are effing good too.\n\nThe pitchers of beer are cheap and cold, and if you want to feed your inner hipster they also have bottles of PBR and cans of Schlitz. Not a lot to feast the eyes on - the place has a real old-school \"bar\" feel - but the food compensates for what it may lack in elegance.", "type": "review", "business_id": "CNvPqN9pa5aJRn-Npcqgdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3MSa_fdxgsaY9yF9vqmeUg", "review_id": "bAdWLDMXdQThkdg4UPfxkQ", "stars": 3, "date": "2011-05-19", "text": "Great breakfast! The rest of the menu however is average.", "type": "review", "business_id": "qR83gr56v7IjWEyfxAkg7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z2PJ8bhclMLAxQLfgZvE8Q", "review_id": "x6xMiBNqF9Na0vFGz8KpFQ", "stars": 4, "date": "2012-05-17", "text": "I heard about this little gem earlier in the week, and after looking at the menu online and reading some reviews from fellow yelpers, I decided I would try it out. The restaurant was very clean and I enjoyed the music playing, but I think it could use a little more color in the dining room. I was greeted upon entering and was asked if I had been here before. The waiter was very friendly and took the time to explain some of the dishes to me. I asked about the pof pof and he explained that they are like donuts, but better. I passed on them. I ordered the jerk steak over jolof rice, a meat patty, and plantains. First came out the meat patty. The pastry tasted like cornmeal to me, and not flakey like I had hoped. The filling was quite good and just enough spice without going overboard. The steak was very tender and flavorful, with a little bit of heat. For the price, you get your money's worth and I'll have enough left-overs for tomorrow's lunch. Before leaving, the waiter gave me a complimentary pof pof, and in my opinion, it was better than a donut.\n\nI'll definitely be going there again.\n\nJohn H", "type": "review", "business_id": "mWTFbL-ilQiQ9iQwPnViQw"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "hGbHPwuT2VMtiyyQr8zxHA", "stars": 2, "date": "2012-02-05", "text": "I could remember Tokyo Expresses were everywhere in the valley. I loved their food. I was surprise to see them around and excited to eat the food again. We entered the place and it smelled like bleach. STRONG. It is ok. We move to the menu and ordering area. Everyone picked out their meal. Ordered and sat down. We got our food pretty quickly. I got the Katsu Chicken meal (side sui may and drink). The sauce in the Katsu was kinda of bland. I remember the sauce was savory. The sui may, I am sure was the pre-made frozen kind. I was hungry so I ate it.", "type": "review", "business_id": "EuNV8_SReV_3KeET2Ums6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LKhkxFZDD7EWMuqf8FlP0A", "review_id": "C0kNEDhZzMpeg-mGJjL9RQ", "stars": 5, "date": "2013-01-04", "text": "Quality sushi, fun ambiance, and the chefs there are a blast to talk with. Definitely worth a visit.", "type": "review", "business_id": "un3KC2gyMrSG6yqjVRctXg"} +{"votes": {"funny": 0, "useful": 7, "cool": 5}, "user_id": "hFtlFksrcLaWHGPNa6SmeA", "review_id": "hy5FtMQLmhS6sA58ZUkYEw", "stars": 4, "date": "2010-01-11", "text": "I grew up at Word of Grace (now City of Grace). Way before the new buildings and it just the small little church. I love Pastor Gary. I would give him 5 stars. We moved but I had always considered this my home church. When we moved back to AZ I started again and was really disappointed with the young adults ministry and praise and worship. I left when I wasn't getting anything out of it and not much longer did they join with City Church. I think they are struggling but I have hope for them. Pastor Terry is the new head pastor and he has the Joel Osteen vibe, which isn't for me, but he is very nice. \n\nThey are non- denominational and love their congregation enough to handle sins or situations other churches don't want to touch in fear of being labeled as 'haters' or what not. I hope that anyone who attends will understand their views do not come from hate. It makes me sad that the other reviewer had such a negative experience and I don't doubt that she wasn't treated with kindess as every church seems to have those rude people. I am not sure what she means by 'closed-minded' but I know there are people like that at every church. I hope others do not have that experience and I hope the church can work on that as a whole. people need to feel welcome and accepted as they are. \n\nThey are also awesome with the community- homeless outreaches, drug addiction help, and so many things I cannot begin to list. If you ever want to help your community City of Grace would be a great place to get ideas of where/how you can help. \n\n If pastor Terry isn't for you I would recommend Cornerstone Chandler(my home church) or Central Christian. They are not closed-minded but they also won't ignore sins that are major issues. IE divorce, porn, sex, sexuality, infedility, etc. Good luck on finding your home church!!", "type": "review", "business_id": "bgipXs1CRQ8OBLXc4TBdjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "_QBSgyq0n_HHAa3UpwZfsQ", "stars": 4, "date": "2011-07-03", "text": "Not too many video stores around. I will probably be joining Netflix soon, but for now this place works as a video store. They have movies Redbox doesn't have yet, in addition to older movies Redbox will never have. The service has always been good here. My girlfriend has the mail in deal so movies are mailed to her then you can take those and exchange them at this place for different movies.", "type": "review", "business_id": "FOQ2xb539Hh6Xftznwy1kg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8fAC-siPU2THWDHF1wEdEA", "review_id": "zeO2TcvjkntjMYz2kLdg8Q", "stars": 5, "date": "2012-01-27", "text": "Best customer service you can find! I buy all of my reptiles and feeders from these guys!James the owner is awesome and very eager to answer any and all questions you have.he will even probe your snakes for free!Every animal i have bought from them has been in tip top shape!Their prices are great and the employees are awesome!I suggest them over any and all shops in the east valley including az reptile center and predators.Give em a shot you will be glad you did!", "type": "review", "business_id": "FRT-kdKefurxLzcsW2JNhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bieJ0AblSMhhqpa5GriXpg", "review_id": "fggwkxVu8VmZ0DD9Urh-KQ", "stars": 5, "date": "2012-04-03", "text": "Fantastic restaurant. Service was great. Food was excellent. Their happy hour from 3-7 is great. 3.00 entree's. Everything from a 1/2 pound burger to margherita flat bread pizza is just 3.00. \n\nAmazing appetizer is the shrimp and eggplant in black peppercorn sauce.", "type": "review", "business_id": "o_w69y1M6pkKetd1w43i_w"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "e9HWnHUYlt9758oileaISw", "review_id": "LOL_VN9Q5JH38WkJP7yYHQ", "stars": 1, "date": "2010-09-18", "text": "Don't know where I should start. Grand opening was on September 17th, 2010. We went to try this new Dim Sum place at the Mekong Plaza as they heavily advertised in the chinese newspapers and were advertising 30% off.\n\nWhen I got there, the biggest eyesore is that they tried to make their portion of the Food Court as a regular \"Chinese\" restaurant. So imagine the picture of chandeliers hanging in the middle of a food court in the mall. It just looks too tacky, I thought they should've went with a more fast food type Dim sum like they have in San Gabriel, California.\n\nUpon checking in with the hostess, they don't even issue numbers, they only call you by name. So that was already pretty different from how usual chinese restaurant run things. Totally not efficient at all.\n\nOnce we finally got a seat, things got worse.\n\nOur \"Har Gow\"/Shrimp dumpling was raw! The skin was thick and clumpy, the shrimp was severely undercooked. We asked them to exchange for another one, and it was still raw. We also had to exchange the shrimp egg roll as it was also raw. Their excuse was that they were too busy and did not have time to fully cook the food. Ok.....so how are the other 100s of asian restaurants able to serve dim sum at a fast pace with fully cooked food? That was probably the lamest excuse.\n\nThe trademark \"beef internal organs\" that I always love to order was pathetic. They charged the large price for a tiny little bowl, there were only a few tendons and mostly filled with Daikon. \n\nThe BBQ Pork bun, another staple of Dim sum, was not that great either. There was barely any char siu in the bun, and the exterior of the bun was not fully cooked.\n\nI understand that it is their first operating weekend, but the idea of a nice chinese dimsum place at a food court just doesn't fly in my opinion. They even offer wedding banquets here too. \n\nI don't think I'll be returning here unless they really upgrade the quality of the food. The idea is definitely novel, but will be a hard sell.", "type": "review", "business_id": "wH_kpDuTE6ChDAp5AlMfJA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kdI1Jh6wN6WzeTM4-fapOw", "review_id": "RFtI9BfEPyqmEFqsojVqyA", "stars": 3, "date": "2012-04-28", "text": "I like it better then Denny's so I stop on by to get some breakfast. It's okay not the best place in the world but if your having a hard time picking between after hours with Dennys and Waffle house I would pick waffle house for sure.", "type": "review", "business_id": "EEC7t11ciQ6XUjkudRbYSg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "_C8Cx6g2qowNt9RfhENrFQ", "review_id": "oBrE7tr_OLmlIxz9Ryvnjg", "stars": 5, "date": "2012-06-10", "text": "If you have never been before you should really try harder... Your mother taught you better than that. Go and buy a smoked pecan paleta.", "type": "review", "business_id": "_TekkyyFeX_8MBepPIxuTg"} +{"votes": {"funny": 16, "useful": 6, "cool": 13}, "user_id": "6WrOT1dj6sigl_voiwQ7HA", "review_id": "ie7fgIPhIvYP5O_Ln8Evyg", "stars": 4, "date": "2008-11-26", "text": "A dark night in a city that knows how to keep its secrets. But on the 12th floor of the Acme building, one man is trying to find the answers to life's persistent questions: Guy Noir, Private Eye. (THEME) \n\nIt was a night in November. November 23rd in fact. I remember the date because it was my birthday. The snow birds that had started to flock from their summer homes had long since retired for the evening and the godfearing people of Phoenix had closed shop. My two lovely companions and I were looking for a place to fill our bellies. Like moths to a flame we were attracted to a dim light coming from a dark parking lot. We exited the car.\n\n\"Are you going to Mama Mia's?\"\n\nA beautiful petite girl with the kind of body men write home about stepped out of the shadows. I was going wherever she took me.\n\nWe were led through the kind of kitchen you only see in mob movies. I wasn't going to ask what they put in the sausage.\n\nWe stepped in and figured out our toppings. Trying to figure out toppings for one pizza between three people you may as well be figuring out cold fusion with a box of toothpicks and some masking tape. But with the plethora of options I felt like I had a bag of bananas in a monkey whore house and we narrowed it to basil and fresh tomato.\n\nThe pizza was exactly what a tired and famished private eye like myself needed on a night like this.\n\nMan working register- \"Is that a wig?\"\n\nJetta-\" Yeah its a wig.\"\n\nWe left the pizza joint as happy as a twister in a trailer park.\n\nJetta- \"I am so getting a weave.\"\n\n (THEME MUSIC)\n\n A dark night in the city that knows how to keep its secrets, but a light shines on the 12th floor of the Acme Building -- Guy Noir, Private Eye?. (THEME UP AND OUT)", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "SwbKEXKORLUSaz4VjjHckw", "review_id": "YPOe2_7ffDjZLBY_AQZxBA", "stars": 2, "date": "2011-09-29", "text": "Not impressed, loud atmosphere, bland overpriced sandwiches. 10 employees behind the counter and no clean tables. How many people does it take to make a sandwich? More like the employees are just here to hang out with each other than work.", "type": "review", "business_id": "HUU_y-nnIWWIpqMlB-8L2Q"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "6WrOT1dj6sigl_voiwQ7HA", "review_id": "Sdtg4GXYv1fVbrFRi9A6CA", "stars": 4, "date": "2008-04-24", "text": "Lovato's was the first place that I ever went to spend more than $12 dollars on a haircut. They are awesome. The place is family owned, and Art and his son Scott both had their turn at cutting my nappy hair and made it look spectacular! \n\nI have since opted for someplace closer but often miss conversing with Scott about working out with his Ultimate Fighting friends. He often had the bruises to prove it. \n\nArt would generally blow dry my hair making it slightly poofy and not unlike his own Frankie Avalon style, but once I got home and styled it on my own, the cut was perfect.\n\nMrs. Lovato, whose first name I really wish i could remember, always offered some ice cold lemonade while I waited and I always felt like an honored guest. \n\nScotts kids can often be found sweeping the floors in the summer and they are about the cutest things you will ever see.\n\nFor guys that like a masculine place to get their haircut, but want time and attention given to their look at the same time, this place is perfect.\n\nThey do all that chicky stuff too including waxings but I can't say that I got experience from them on that end.", "type": "review", "business_id": "qurW9PjV90saHESwsGAwdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YVaOouu_PCAhJ-GwDlrMBQ", "review_id": "-PEGprOXaXIgPU1ur9XOAA", "stars": 1, "date": "2012-01-20", "text": "We ordered. I had to return my chicken tenders. Undr cooked and rubbery. My wife ordered a hamburger and is now home throwing it up. what a horrible experience. We have been huge fans and now this? I called and spoke with someone who barely has a grasp on our language and they said they would get right back to me. Still waiting My wife is in bed looking so sick. We will never return!!", "type": "review", "business_id": "UdXn5e3o_biQoUNv0L-RYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGvxLe5jdJGbxTYt9XjScw", "review_id": "7v9LusLvXnauqwLHMJD-ng", "stars": 4, "date": "2012-02-04", "text": "Only a Mexican food snob would undrmine such a great Traditional restaurant (and believe me we have plenty of those here in Arizona). This is old school Mexican food folks and it's about as good as it gets. The atmosphere is classic and I personally enjoyed it but it is not upscale but then again Mexican food normally isn't. It's simple and that's what Arriba's is. If Arriba's were located in any Eastern state it would easily be the best in the entire state. The beans were great the salsa was delicious and the service was fast.", "type": "review", "business_id": "xI0UZH734lJtm39DbLf-Bw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "duTeTiNX__zYcznMX5CgMw", "review_id": "pkZtuVqL3wzGM-aUv70TQg", "stars": 1, "date": "2012-05-26", "text": "Hot Breakfast..........NOT, Again cold food when it supposed to be hot....people beware of this over price place and lack of care for the customer it seems that this is the way of doing business.\n\n*** Again a nice place to visit but DO NOT EAT HERE.*** And DO NOT CARE!", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Mex8qXT7nR89uTKX_qtgSA", "review_id": "G6B4Ko9Abr77IdzOGthYDw", "stars": 4, "date": "2010-11-08", "text": "I'm a horrible haircut customer. I never remember how I get my haircut and squared or rounded, I just don't keep track. I've been to all of the chains and was thinking that maybe I should finally find just one person to cut my hair for now on until I got a coupon. I really enjoyed my visit, I didn't get the MVP thing cause I wasn't expecting it and I didn't have time for it. They are all pretty knowledgeable and quick. Only once was I not fully happy with the cut, but it's hair it grows back. They are a bit more pricey but I always go with a coupon, I get them every month. I'm not the most talkative person so it gets kinda awkward when you sit there in silence so I love that you can just sit there and watch sportscenter.", "type": "review", "business_id": "YNHPzgdHVpAsvHcvCBQzow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kdg9I9r4EVg06cmEaQcwbQ", "review_id": "3Bd56NVx5Kzt-VvqDSDjtg", "stars": 4, "date": "2012-12-17", "text": "Food is great. Best Thai in West Valley. Always get takeout so not sure about the service, but takeout is always ready when they say it will be ready. The atmosphere is quiet and cozy - about a dozen to fifteen tables or so. Place always seems clean when I pick my food up and has the type of decor you'd expect to see in a Thai restaurant. \n\nI usually get red chicken or beef curry hot, and my wife gets green curry mild. The food is excellent. Their egg rolls aren't very greasy like most places. Spring rolls are also made fresh to order with fresh veggies. The only thing is, sometimes the spiciness of the curry will be spicier some days and not as spicy others. Other than that, this place is great.", "type": "review", "business_id": "AsX-6ECbV83zGJLUVMre9w"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "9_iaIEgmpJNYE_tBEvrsTw", "stars": 4, "date": "2006-08-08", "text": "I almost wept when I saw they had opened a Slices at this end of town. I don't know what makes this pizza so wonderful, but it's delicious. Try the veggie or white pizza... I hear the potato bacon is good too.\r\n\r\nThe downside:\r\nThe place is usually wicked hot inside. I dunno if they are trying to save a couple bucks and not run the A/C but those ovens make it warm! Just grab your slices and go sit outside in the foodcourt area instead.", "type": "review", "business_id": "0ieEqGInYunNBaBzg8j_WQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "aPQuGzqs4D8my3K0vXjb8Q", "review_id": "i8aP8MQiESrkl4yHApYRJQ", "stars": 4, "date": "2008-10-03", "text": "The food wasn't phenomenal but it was very good. The service was excellent. The decor was very cool. A good experience. Great selection of wines by the glass. Very pleasant experience.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 15, "useful": 14, "cool": 15}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "peXCfNb0h1DwWlr49XalUA", "stars": 3, "date": "2009-09-19", "text": "Clich\u00e9 Central. \n\nStyle without substance can be summed up in their cheese plate: pineapple, melon, grapes, herbed chevre, Babybel minis (they even leave the wax on for ya) and cubes of pepper jack and colby jack served with sesame crackers. I can't make this gold up. \n\nThey serve a lot of \"martinis\" as the name implies, very few of which actually contains the ingredients for a proper martini. But then again, now that I've described the cheese plate, this should come as no surprise. \n\nIf you, dear reader, decide to open a bar, it's really quite simple. Get everyone drunk, quickly, and hire bathroom attendants willing to squirt soap into your customers' hands. Oh hell no, we're not in a recession. The Ferrari up front was paid in cash, I'm quite sure. And that woman over there? 100% real. \n\nOk that degraded fairly quickly. Like my evening. \n\nIf you strip everything away and look at it for what it is, Blue Martini is stylish spot to get drunk in an attempt to forget reality. If that's your thing, and want to feel better about your age, check it out.", "type": "review", "business_id": "ttLtsY1S2Angj6hvEdzwDQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "y7sq26EXGz7XG7DSo8TOuQ", "review_id": "yk08_3Uobcmd-ZuIsHva-w", "stars": 4, "date": "2011-04-15", "text": "So I came here in search for Phoenix's best Macaroni and Cheese. Yep, that's right, me and the inner kid in me are in search of the best Macaroni and Cheese. \n\nSo, ordering was simple!\n\nSo, how was it? Pretty good! It was more cheddary than, say, Beckett's Table (which got me started on this dance).\n\nThe atmosphere was pretty cool there. However our wonderfully bubbly waitress probably came over way too much. Also, nobody coming over to refill our drinks (iced tea) could figure out that we had tea and not water. Oh well.\n\nOn a separate note, I've gone by this place around 2AM it looks like a madhouse. Could be a rather interesting time around 2AM!", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "rmjrLW4KSLGGDkS6z5cbFw", "review_id": "pVX13ENQyFwMjIFmpJXIoQ", "stars": 5, "date": "2012-04-06", "text": "I absolutely LOVE Club SAR! I joined back in 2010 (I think...). At first, I just went there with my ex (who lived in So Cal and had been boxing) because I have always loved the sport of boxing and wanted to get into it myself (maybe even join the boxing team). Sadly, I exceeded the age limit to join the boxing team, by a few years... :-(\nBut, at least I could still learn and get fit. :-)\nWe just walked up to the entrance and just took one quick look around and it seemed crowded and small so we were not impressed. So, we left.\nI found out this used to be just a boxing gym before but eventually they added other classes and equipment for others to enjoy. \n\nGlad I went back later on my own and found out how affordable it was!\nI checked and tried a few other Fitness centers and gyms nearby but, when I decided to actually try one of Club SAR's boxing classes, I was hooked! For a mere $3 (a day) drop-by fee, I was able to get one of the best workouts I ever had. I joined after I found out it only cost $75 for the whole YEAR which includes ALL the classes I can take (Boxing, boxing conditioning, Yoga, spin class, kickboxing, weight training, MMA... Yes! MMA too, which I personally love. :-) ). Jonathan & Carlos are great and so is Tom. They're funny, friendly, and they actually remember you after only a few classes. \nThe pricing has gone up this year but it is still by far, the BEST possible deal you can find anywhere in the Valley. \n\nFees \n \nYEARLY Membership Resident Non-Resident \nAdult (18+ years) $99 $150 \nChild (14-17 years) $50 $75 \nDaily Drop-In Fee $3 Residents; $5 Non-Residents\n \nIf you are serious about getting fit, staying in shape and getting a good old-fashioned workout without all the \"posing\" and pretentiousness of other gyms which are more like \"meeting places\" and \"meat markets\" for the young Scottsdale wannabes, this gym is definitely for you!\n\nPersonally, I recommend the boxing classes because they will kick your butt, they are fun, get you fit and, in shape. :-)\nThey just got new heavy bags so there are 2 heavy bags, 1 hooks bag, several \"Bob bags\", 2- double-ended bags and 3 speed bags in the main workout areas. Plus, a bunch more standing weighted-base heavy bags in the other \"kickboxing/Yoga room. And, in case you didn't notice from the picture, a full-size boxing ring. \nYes. I am totally endorsing this gym! \n\nP.S. This is a \"no frills\", serious gym. \nSo, no whinnying and crying. Suck it up and do some push-ups! ;-)\n\nCall them for more details: \n(480) 312-2669", "type": "review", "business_id": "9CstkLhqS4fXT0VUgu60dA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "z3r8mJ-otQYrwjlBI9KGyA", "review_id": "xqPbB0e_VSM9LJafV2EHYg", "stars": 5, "date": "2010-09-17", "text": "I had an awesome experience here and highly recommend Dr. Dachs. He is here to be a good dentist, not just to get rich. His hygienist was a rock star: So nice and very gentle. I nearly fell asleep during the cleaning.\n\nI found my way to this practice after a horrible experience at another dentist just half a mile away (see my review of Belmont Dentistry on Raintree). Dr. Dachs was just so helpful and reassuring while still maintaining a very high level of professionalism. I am very thankful that my \"second opinion\" quest led me to him. I now finally have a top-quality dentist in Scottsdale I can trust!\n\nI definitely recommend selecting this practice. It may take a little time to get in, but it's worth it. They also work well with insurance.", "type": "review", "business_id": "BluXDgvhSEMmvyjTiegWoQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "udzY22a6foBOcsU7_7nIPA", "review_id": "QER9RDbcyScD66nNqDLZxg", "stars": 5, "date": "2009-07-22", "text": "Woohoo is right. My hubby and I have gone a few times for happy hour and always enjoyed ourselves. Last night was the best so far. We were enjoying a few Left Hands and ordered the Tuesday night pizza special. It was 2 for 1 basically so we each ordered our fave. Apparently the GM thought my pizza was too done so he brought out the \" burnt\" one and already had another one cooking. I actually like my pizza that way but hey, I could understand where he was coming from. The second pizza was beautiful, a work of art. My husband's pie was great, all he kept saying was how great the crust was. I wil definitely bring all my friends and clients here. Special service too! thanks again to Dan the general manager and our delicious server Reina ( sorry there isn't a better word,is there?) Linda and Ron", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "FjDjBFljL21IvyRhSGpPTQ", "stars": 3, "date": "2009-09-22", "text": "I tasted my first Qdoba burrito last night. I went with the Queso Steak burrito. The burrito was hearty with lots of meat, rice and beans topped off with pico and some cheese and sour cream. My wife enjoyed her chicken burrito bowl with similar ingredients.\n\nI've had many burritos from taquerias to the burrito chains. Qdoba falls somewhere in the middle. I would gladly take a Qdoba burrito over a Chipotle or Una Mas burrito any day based on my initial experience.\n\nThe staff was friendly and we were in and out for our take out order within 3-5 minutes.", "type": "review", "business_id": "ZZevr02C4b_g9RwnezdvWw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "FSpFbpXpW7R1UjZwQmIqWw", "review_id": "SlVJCPTpTjGTRfJywsKVYA", "stars": 4, "date": "2012-01-08", "text": "I went here for dinner last night with a group and we had excellent service. The specialty drinks were yummy and were a deal! My favorite (out of two I had tried) was the ketel-one pineapple martini! My sister had a house salad, the dressing tasted homemade, and the croutons were nice and crunchy! I had the Positano Steak Sandwich which was great, my only complaint it was a little too salty, and the fries (and I love fries) were tasty! Other people had the lasagna and they loved it. My sister had the baby back ribs and loved them. If you're looking for a pub-like restaurant that has good prices, pretty tasty food (with a good variety of items on the menu), and excellent cocktails, Keegan's is your place!", "type": "review", "business_id": "SgTjnyElc26gPUghVuCuSQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "aEZarRBZY7qEMNKk5nePxA", "review_id": "CMkjJvIAhiFVHOAv85LUvQ", "stars": 5, "date": "2009-07-08", "text": "Roka Akor has a classy atmosphere, and a slightly formidable menu to pick from. Everything looks so good, and in a new environment, I want to try it all! But my date and I, after much deliberation, decided to \"go for broke\", as it were and if we couldn't finish, at least we had a good sample of the menu. \n\n For an appetizer, we got the butterfish tataki and the burnt red tomato salad. These were yummy little tidbits that disappeared off the plate quickly. The butterfish was delicate, and the salad was great - the greens had all sorts of different flavors, and not that \"generic clump of lettuce\" flavor I hate.\n\n From the sushi menu, I was feeling adventurous and had never had raw red meat before, so I ordered the wagyu gunkan. My date saw the amount of green onions piled on top of this dish and oh-so-chivalrously gave me his piece. It's true that you needed a healthy appreciation of green onion to like these as served. The wagyu beef is ground nearly to a puree - which I wasn't expecting, and I thought the onion was a bit much.\n\n At for the skewers we ordered, my date liked his sweet potatoes the best, but I was partial to the crispy BBQ. These turned out to be two large ovoid and solid shapes of rice, run through with a skewer. Pure white sushi rice in the center, the outside was caramelized with what tasted like the sweet BBQ sauce that comes on eel sushi, which gave the whole thing a nice, crispy shell.\n\n At this point, I got to what I consider to be the crowning achievement of the meal: the yuzu marinated black cod. The cod, cooked on the robata grill in a leaf, was meltingly soft and delicately flavored. It was an effort to be share fairly. I believe my date said after our first taste of it, \"Just eat what you want and I'll finish ...\", I looked up from my chopsticks, \"... you know what? Just cut me off half.\"\n\n I wasn't sure that I could handle dessert after eating so much, but we finally decided it wouldn't be fair not to give the dessert menu a looking over, right? So we ordered the baked green tea custard, and it was a perfect pick after a gut-busting meal. Light and airy, it also had some carbonation to it that tickled my taste buds and made me giggle a lot as I was eating it. \n\n Our sampler of shochu ranged from impressive to harsh, at least to my taste buds. In order starting with least harsh: pineapple, honeycomb, raspberry, and apple. I didn't like the last two, but the pineapple was, in my mind, a fairly dangerous thing to drink when you're not paying attention. Smooth.\n\n That's it for the food, and as for the service, it was swift and considerate; glasses were kept full, and empty plates whisked away. There was, however, one glaring exception that nearly overpowered the entire evening with its oddness. The waiter, who had up till this point been very nice and chatty, helpful about menu items, and generally a pretty cool guy, handed me his phone number and told us to call him any time we wanted to go partying. \n\n What am I supposed to do with this? Are we going to call our waiter up and say ... well, what? It flummoxed me.", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sjq20F6TBdb1PD3SyM2sDg", "review_id": "zNznH47zm3vc9qZGTlggbw", "stars": 5, "date": "2011-07-27", "text": "I love this place. My gf and I go every time we visit her parents in north scottsdale. \n\nPro's\nquick and easy. good service. clean. good food. good management. not too expensive. they also post nutrition info on their menu (that alone is laudable). \n\ncons,\n\nthe salad dressing is quite sharp.", "type": "review", "business_id": "t4pkeGscooStLjy-Js5Byw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4r4vhVSc3bYpRdKSAAivEA", "review_id": "1SlDknKfyWbzmyBfcysd6g", "stars": 4, "date": "2011-04-10", "text": "Go here frequently, and have never ran into any of the issues other's have yelped about...\n\nBest rolls\nVegas\nDamn good\nSpicey cowboy/cowgirl\n\nI like sashimi...but unless I'm someplace where it just came out of the water...I'm not eating it...so can't comment on that.\n\nWe usually go late in the afternoon and have always had good service and once we had a birthday party with 15 people on a busy night..\n\nMy Only complaint is the bathroom...it needs some work.....and I do not like hearing employees talking on their cell phone while sitting on the toilet.", "type": "review", "business_id": "bZivzFTkkjNtUBSuMhoCtg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vqPpdUmFxd43rgm-j517Sg", "review_id": "DP-5FdE3zulET-QD50V8NA", "stars": 5, "date": "2012-02-22", "text": "This is my favorite restaurant in Tempe. The food is great with many vegetarian options. The atmosphere is usually pretty quiet and the servers are all nice. Highly recommended", "type": "review", "business_id": "fb9eLHJ4S--TyXsarJJo-g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "3vDMNCeaiS6SgaheUZv8qA", "review_id": "t6BAIdNnHlSZ13b7hhYZWA", "stars": 5, "date": "2012-08-17", "text": "This place is everything a sports bar should be. Lots and lots of TV's...for one. I love being able to watch 4 different sports and play trivia all at the same time.\n\nThe drink specials are pretty decent. They're not a dollar or anything, but the big beers are cheap on happy hour.\n\nThe food is great! So far I've only tried the spinach dip, wings and their all-you-can-eat fish & chips. All of them were seriously delicious! These types of food are pretty standard in sports bars but I've definitely had my fair share of unfortunate food items from other places. These certainly surpassed my expectations.\n\nAnd last but not least, their star of the show, Debbie. One of the best bartenders I've ever seen. She runs that bar like a champ, knows nearly every face that walks through that door, and pours great drinks. And by great, I mean a good stiff drink that's not so strong that you can't taste anything else in it.\n\nWe frequent this place quite often, and for good reason. Do yourself a favor and stop in!", "type": "review", "business_id": "DHk8is9rvfnATsW1AudWQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sBqEuMZAa6XXGNzfM4ogyA", "review_id": "J7EM48loaoPizMkm1_-CPg", "stars": 4, "date": "2011-09-24", "text": "This is my second time @ J&G's. First time I hoenstly hated it. Second time WAYYY better!\nMy bf & I stayed @ the Phoenician for a little stay-cation a few weekends ago. We decided to give J&G's another shot. We are both happy we did! When we came in our table was not ready so they sat us at the bar. We got 2 drinks and snacked on yummy popcorn and nuts - SO good! I wanted to bring it to the table lol - don't worry I totally didn't!\nWe ordered a bottle of white wine and my bf ordered the Crispy Calamari ($12) to start. I was shocked when he said it was really tasty! He is so picky with his calamari, so already off to a good start! I ordered the Arugula and Boston Lettuce Mustard Vinaigrette salad ($10 i know I am such a cheap date) and he ordered the Pacific Halibut Summer Vegetable Vin Cilantro ($30). We also got a side of Roasted Mushrooms Herbs and Chilies ($9) and Steamed Broccoli ($9). Overall the meal was very good! All the flavors were amazing and so was the service. We will definitely return! :)", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jMGNNb-vpLcwFikrxIlTkQ", "review_id": "KCsN1gBovcwqlCRrNfVbyA", "stars": 4, "date": "2010-08-20", "text": "Another fox restaurant concept-- healthy and simple. I liked going here, the service was great but the portions were kinda small and most of the patrons were really ugly. I did have something pretty amazing there-- a marscapone creamed corn-- it was awesome!", "type": "review", "business_id": "ABrSt3fsirLrUYNVrD3fbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zxnoE5IjuWoI9mF1gwyg5w", "review_id": "POr__YNDkjuYZEuuzfd53g", "stars": 3, "date": "2012-03-21", "text": "Nice place...Need more restaurants..! Pretty huge airport...so long walks..!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jLBh-z3JrJkqJfn5VN9OJA", "review_id": "tqwUJAl5oQYg-lUbqItLXQ", "stars": 5, "date": "2010-07-18", "text": "Sam, Sven, and all the vendors here make the market special.", "type": "review", "business_id": "rCh0P0uRkcjcChXqVeIUaw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GNVnN2A0FleRHO2oGFidvA", "review_id": "LKn9bToyE1Cs-1Mp5JvIIA", "stars": 5, "date": "2009-06-08", "text": "I am being generous with my review. I am biased since this place has been one of my favorite restaurants for years. I love it in Georgia and this place continues the tradition of rocking faces off - Italian style. \n\nI went to this locale for my birthday party with about 20 friends (unbelievable, I know). This place was more than accommodating. The waitress was fantastic, even though we were a pain in the butt come check time. I took her suggestions for our family style dinner and not one disappointed. I highly recommend the Rigatoni D and Chicken Prosciutto. Both were fantastic entrees. To top it off, we finished out with killer tiramisu. \n\nThere is nothing bad I can say for this place. The atmosphere is what you would expect from a large italian restaurant. I personally love that their waiting area is also the bar. That is just good thinking. It truly is a killer place that is perfectly nestled in north Scottsdale. I am in love...", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_t_3Dl44GbyMo35IMtlT6Q", "review_id": "2Ouk1wfM0BtHik9tBdUo0w", "stars": 3, "date": "2009-10-19", "text": "1. Good Customer Service\n2. Clean Atmosphere\n3. Good Margaritas\n4. YUMMIE Carna Asada Burrito", "type": "review", "business_id": "_mt0EQgGCG-qrLy51RnQag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V7pppn-r6tL_Yb2_msQQFw", "review_id": "VvczNz2NhOE8YcPI3pRTIQ", "stars": 4, "date": "2011-09-14", "text": "It's a cafe on a resort, so you figure you're about to drop major amounts of dough on average tasting food, right? Happily, here it's not *that* bad. \n\nI got to order 3 different things from here. The Java Chip blended coffee (possibly actually called a frappe) was.. good, but not $5 good. Starbucks offers better quality, and premade mix, for less. \n\nThe second thing I ordered was a scoop of rose water gelato and a scoop of mango peach gelato during half price gelato. Much better. The gelato was smooth, rich, and very freshly flavored. \n\nFinally I had a feta cheese and spinach empanada. This was also very good, the feta being subtle and the empanada having ample amounts of spinach baked in a perfectly crusty bread.\n\nOverall, good quality food, OK quality drink, decent value for your money.", "type": "review", "business_id": "o2BeeJmpf_J9EmC8HQoHRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2XCsVpAMsGUykrM-BBFEXA", "review_id": "ktfhZv5fyxVO3UQIOiN2Ig", "stars": 5, "date": "2010-06-09", "text": "I searched hi and lo and had only been able to make good on the very lo with regards to good Chinese food in the Valley. I am VERY picky and I rate most Chinese food places based on the thickness of the membrane of their won-ton soup and the colour of their fried rice. Having passed my non doughy and not yellow test ( yup people, some places give you frozen dumplings versus fresh and yellow \"Spanish Rice\" in a Chinese restaurant), I was able to look into the quality of their other food items.\nWhen you can deliver Mei Fun Singapore style noodles perfectly seasoned with no greasy residue, I feel you deserve that illusive fifth star. \nService was pleasant and there was a lot of foot traffic for take away items. I also note that they offered iced Thai tea with cream. My buddy got a plate of broccoli, tofu, and a wonderful Kun Pao sauce. Sorry, but I think he created it himself and they make everything to order just for food snobs such as we.\n\nHmmmm. I am getting hungry. I think I will go there now. Wonder if I should get their pepper steak.", "type": "review", "business_id": "EWnSPExh_T5zTv6oMJOC5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "YwISM44nNmOSeXdsL-qZYw", "review_id": "f_ht9DtX7cfbgDoGLputhQ", "stars": 4, "date": "2011-02-25", "text": "I can't speak to the selection, hours, owners, or resident cat. I can tell you that we noticed an 'honor system' as we walked by tonight with our Mojo. An honor system in this day and age?! Yes please! Friend and I both picked a $1 paperback, shoved our bills under the door, and walked away feeling like winners, a silent invisible transaction between fellow bibliophiles...absolutely lovely!", "type": "review", "business_id": "yOqbQmXXUYmgeBbimTbv2Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kVYRVCTyN6kb-HqNOhWDDg", "review_id": "ub93M2SwRWJkEwSNs8xdnw", "stars": 3, "date": "2007-01-26", "text": "This is more of a pizza joint for people who have young kids. They have kid games and it gets pretty noisy in here. The pizza is not too bad . If I was craving pizza, this place would not be high on my list but, it was an 'interesting' experience nonetheless. I suppose If I had kids or I was a kid I would probably enjoy coming here.", "type": "review", "business_id": "oAxR0TJhPHMrN_hjQWBWMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zGLzpRlor83RVDcUjBCp1Q", "review_id": "ZBHnXCJn8l_GFfrE2ki7Jw", "stars": 2, "date": "2010-04-26", "text": "They were absurdly busy. I had a bar's eye view of the care that goes into the $3.95 1/2 dozen oysters. I would not order them myself. Dinner felt rushed, I didn't feel like a very valued client, and the poor gentleman next to me waited at least 25-30min for his 1/2 dozen oysters (carelessly drained of their delicious fluids).\n\nMy dinner was good, but relied heavily on it's fat content to carry it's flavor. My cocktails were good, I would come back for those.\n\nIt took another 10min just to pay my tab after I had finished. My dishes were cleaned up by a bartender who looked like he just run a marathon, dripping with sweat. Not exactly how I like to finish my evening.\n\nThanks, but no thanks Pappadeaux.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CtHJ8YRU8Rnn-vEGhgoupg", "review_id": "Ij8CuZ18Fue9yEnrnggQrA", "stars": 5, "date": "2009-01-04", "text": "So, my friend and I went first to Yasu because we heard it was great. We were traveling on business and therefore using company plastic. So, we show up and the kid working the door says in a very \"Spicolli-like\" voice, \"uh.... our credit card machine is broken tonight\"..... So we replied that we were on expense accounts and would there be any way they could manually run our credit cards... The guy replies, \"dude, you're outta luck\"....\n\nFunny, considering that I am a guy who eats out a lot and am not afraid to spend a lot of money in a place when the food and service is good... I wont be going back in there...\n\nSo we made our way to Hiro..... We were pissed and hungry after driving around and dealing with idiots all over town. Hiro was just what the doctor ordered. We sat down and were greeted and served drinks right away. We put our sushi order entirely in the hands of our chef who did not disappoint. He brought out order after order of fresh delicious sushi and sashimi... We had beer, sake and a great night.... When it was said and done, we spent about $250 for the two of us which was a lot but well worth it..... I'm sure you could go and have a great meal for much less, but we were going big and NOT PAYING!!!!! Morale of the story is that Yasu's children working that night ran us out and straight to their competition where we will be spending money in the future... Go check out Hiro!", "type": "review", "business_id": "DxUn-ukNL27GOuwjnFGFKA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "vFVwBMVzLByC7PcqpdqVSA", "stars": 3, "date": "2012-08-03", "text": "Totally sufficient for a few rounds of pool or darts while keeping an eye on the 67 tv screens they have mounted on the walls.\n\nJust stick to the cheap pitchers of domestic beer. I ordered a rum and coke and it tasted like cleaning products. \n\nI would come back, but only if I didn't feel like driving all the way to Lucky Break in Tempe.", "type": "review", "business_id": "qb4PzVr19bXXLBf71dd5kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gSBvJ5FqFeSKRJaPiamttw", "review_id": "egNxMtjZNRrpC06LNCyOtw", "stars": 2, "date": "2012-10-06", "text": "Yikes. The only reason this place gets 2 stars instead of 1 is because I think their Baja chicken burrito is super tasty & their Mango Salsa.\n\nCons:\nThe place is dirty (dont take my word, read the other reviews)\nThe employees are always bullshitting until they rudely ask you what you want to order.\nThe employees never offer suggestions, which may be an English Language barrier.\nThe front door handle was broken my last time I went in here. Unreal.\nThe burritos are likley to squirt and get extremely messy on the last few bites....sick. Dont eat in the car unless you have a blanket in your lap, gross. \n\nIf Im craving a burrito, I will likely just go to the Chipotle across the street and wait in line for 15 mins VS this place....I think the only way Ill come back to this location is strait up steal their salsa and limes from their salsa bar.\n\nThis place would be better if they got friendlier harder working employees that actually cleaned the place up a bit.", "type": "review", "business_id": "SYHatptm7gpcmYjW1d-o5A"} +{"votes": {"funny": 2, "useful": 6, "cool": 4}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "Hw-r-J4GbFT8UCos5ci_fQ", "stars": 3, "date": "2010-10-17", "text": "Calling all Vegans, Gluten Free's, Vegetarians and those who enjoy eating healthy. Nourish is probably your Garden of Eden. Hidden within the Optima, Nourish is a health food fan's paradise. The environment is fresh and clean and so is the food. \n\nUpon walking inside, I noticed how calm and refreshing the restaurant was. Everyone had the same calm attitude and I could tell that this is a restaurant you visit to relax and still feel healthy when you leave. The menu is detailed but not overwhelming. The only overwhelming part was trying to decipher what each icon indicated and soon I learned that most of the food is gluten free, vegan, vegetarian or some other food lifestyle other than carnivore. But, for those not following an alternative food lifestyle, it's still incredibly tasty and makes me rethink my cuisine decisions! \n\nNourish serves breakfast all day (bonus) as well as lunch. It's a great brunch spot. The eggs Benedict is spot on. I can't tell what sort of herb or tweak they add to the hollaindase sauce but it doesn't taste like your typical eggs benedict. Their breakfast sandwich is tasty as well but a little bit more on the dry (and healthy) side. Their ingredients are fresh as is their produce. If they push the cinnamon roll on you it's because it's like a cinnamon god's protege and worth every calorie consumed. Plus it's flowing with frosting. \n\nNourish has a great patio for dining as well as spacious seating inside, but the patio is covered enough that even on a hot day it's comfortable to sit outside. \n\nSo in summary, Nourish is a good choice if you're looking for a healthy meal that will fill you up. I will absolutely be back and I can't wait to try some of the lunch items that looks tasty. \n\nNote: Be sure to check the times before visiting Nourish. I was surprised to find out that they open at 11:00 on Saturdays but 9:00 on Sundays.", "type": "review", "business_id": "ItMihRR-t810HgctGofF3g"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "MjLAe48XNfYlTeFYca5gMw", "review_id": "vW559mVjxmGmpw3yUnjYBA", "stars": 3, "date": "2012-11-20", "text": "I'll go easy because they just opened this location.\n\n1) The onion ring batter won't stay on the onion. The onion was a bit raw too. Try soaking the rings for 24 hours in buttermilk. Then coat twice. Season the flour with garlic and pepper. Works for me!\n\n2) The happy hour menu is weak!. Pretty much chips and snacks type stuff. Nothing good like sliders etc.\n\n3) The kids mac & cheese is out of a box. Really guys? It takes two seconds to make mac & cheese from scratch. Go to allrecipes.com if you need help.\n\n4) The burger meat is good in flavor but the burger lacks seasoning.\n\n5) The menu is way too big. A scaled down menu with better quality would be better.\n\n6) The nachos are nasty with that queso cheese. People love traditional nachos. Stack them high and layer them with cheddar. all the toppings. You are a sports bar.\n\n7) IMO.. drop all of the steaks etc from the menu. You're a sports bar. Leave that to Mastros and Flemings. People want GOOD bar food in a sports bar.\n\nBottom line.... love the atmosphere, food is OK, beer was cold, price is a little high for what you get, menu is too big, quality of food is OK. What would I do? Interview a new fresh Chef to bring in some changes. \n\nGood luck. I'll stop by again for a happy hour and give you another try. Cheers.", "type": "review", "business_id": "NkGQRN6ahwQoFEAlHq8NHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zJurvQwVqI5ripRGQaTIlA", "review_id": "ZQrEdO3YpwRI7UZcZ1AYSg", "stars": 2, "date": "2012-02-02", "text": "Eh... pasta is way to salty. Just just cause Mario B says cook your pasta in salt water, doesn't mean you have too and then dump salty sauce on top of it. Tried to tell the manager but got blown off. Just because you work for FRC doesn't mean you know what good food is. Also, pizza greasy.", "type": "review", "business_id": "CSoURupWEyuyzkjMOExKPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Iqqy89mlRXExxeP8RZqCUA", "review_id": "11Cbpvk0QQvqWsQBRh_Gbg", "stars": 4, "date": "2012-01-05", "text": "Best cheese steaks since the last time i was in Philly. Highly recommended", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bPWCuFEaVL5F6dT3JgivLw", "review_id": "rygxpQDuH5mfxbPt8tTjmw", "stars": 3, "date": "2010-12-30", "text": "I don't know if it tastes like Chicago or not but it's reasonably safe to say that the stuff is cooked to order and consistently greasy and overstuffed, so maybe it is like Chicago?\n\nThe atmosphere is cool I guess, but I'm a Bears fan so it's cool seeing the old memorabilia on the walls.", "type": "review", "business_id": "AH2pJa2nfvxXkfFP1P-waw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JTwQpwYexzuEkYY53XHdVQ", "review_id": "OKh2j7gfxprNY_BcKSOp5w", "stars": 5, "date": "2012-03-12", "text": "Tuck Shop is definitely one of my favorite restaurants in Phx. Everything is superb from the service to drinks to food to overall experience. Definitely go soon!", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QEy_xoEcmL0y6N8YLPUhCw", "review_id": "yibnwtn5mEDj1vauF3xJNg", "stars": 5, "date": "2009-08-18", "text": "This subway is one of the cleanest, and most efficient subways I have EVER been to. I've only been in the evenings, but I have to say every time I walk in, someone is always cleaning something. Their employees are friendly and the food under the glass is fresh looking and appetizing and in their own bins. Sometimes you can go to a subway and the prep area is a wreck. Thats what makes this Subway so great. Everything is in it's place, and orderly and makes you feel like they take pride in their work. Absolutely I will go here again, and I can't say that about many Subways unfortunately.", "type": "review", "business_id": "Vvh2Hd4SsZjEEfKLNKAEWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0wbS1b2Fwurs_jjxbfJE4g", "review_id": "eaV_l-YPe80-nK_ZbOPHDw", "stars": 5, "date": "2011-07-24", "text": "Its not a standard restaurant as it is in the middle of a grocery store...but thats just what it is get over it! The food however is fantastic! I ordered the samosa chaat...A samosa covered in chick peas and other sauces and chatney. A delicious Punjabi snack! The portion was very generous and the price cheap. I also recently ordered a dozen samosas to bring home and serve at a dinner party. Very convenient and good service. I will be a regular from now on!", "type": "review", "business_id": "Z5v1F-tAV897ZmM32N0wfQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "gEA9RJY4oSGk3P29_rGAsw", "review_id": "cAavQMNSeNdnLJXbMqynvQ", "stars": 3, "date": "2009-10-06", "text": "Sam is da man.\n\nI was very impressed with the fare here. I had a bowl with noodles and chicken on my first outing, and it was awesome. Another time I came I felt way hungry, so I ordered the SUMO bowl. Whoa. The bowl is a 32 oz bowl, I could have had it all chicken though. The beef is meh. I agree with another yelper that the eggrolls are subpar. They are grilled I guess? I dunno, lame. At another location they had these \"carnival\" cookies that were awesome. Another variety of cookies were the butterscotch. OMG. Amazin. So yes... Sam is da man.", "type": "review", "business_id": "0EBR4wDqtkbMC-wghpctEg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "K2t_85TGaA5gPjsG58FTHg", "review_id": "UxKjwoObUfvLUoNoRwcKrA", "stars": 5, "date": "2010-02-23", "text": "As one of my fave restaurant's in Scottsdale, the Herb Box is the perfect place for a great patio and lunch. At dinner the atmosphere is subtly romantic with string lights illuminating the patio. Other than the ambiance, the food is some of the best fresh local food I've tasted. A personal favorite is the Free Range Chicken with Goat Cheese... Can you say tasty? My mouth waters just thinking about it. Walking in, the crew at the Herb Box is some of the friendliest you'll ever meet (and the funniest). When you go, make sure to save room for dessert... the cheesecake of the moment is always a win!", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Tz6y8QJ-OHEeG7n4aEYcLw", "review_id": "rP1zhsbjbCjY_2tLEW85Ng", "stars": 5, "date": "2011-08-24", "text": "I was referred to Jones Family Dentistry for an emergency procedure. I cannot express how incredible the staff and doctors were. I appreciate all the time and help they gave me. The follow up phone call really showed how caring they are. AMAZING Dentists!!! My family has a new dentist. Thank you!!!", "type": "review", "business_id": "m9i6aX4nmuTwqO5PjeLNZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bORzRtWe59DOG9Q8oiGSgA", "review_id": "mZHPFBjcBq5TQgp2Rzvckw", "stars": 2, "date": "2012-01-11", "text": "Store is never stocked. Always out of stock on items. The Walmart on Bell Road is much better. Always has what I need - all the time.", "type": "review", "business_id": "7wCysP5dwB0KdoPeHH2i2g"} +{"votes": {"funny": 1, "useful": 6, "cool": 2}, "user_id": "BfetZm9fa0zqyAFn8vo_6w", "review_id": "vOzUziyuZz8psJCYNau-Bw", "stars": 2, "date": "2010-07-22", "text": "I got 3 strikes at Verde, hence...I'm out! Strike 1: Not very vegetarian friendly. Strike 2: They have all the necessary items to make nachos, but when asked if they would make me nachos I got a very quick and blunt \"NO\". Strike 3: When forced to order a meat dish and request they not include the meat (the most EXPENSIVE ingredient) not only did they make no attempt to substitute the meat with maybe beans, or guac, or extra cheese, they still charged full price! I don't want to eat meat and I sure don't want to pay for it. \n\nAnd as far as the food, well, they got that part right, for a place that serves fine fast food, when you ask me how my meal was, my response would be \"Fine\".", "type": "review", "business_id": "hZRLGfRrZTo9up2P-0aAHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Rt0-P8j-JtfAeaZAGYa8ig", "review_id": "fSrHsZ4bmp2BjlksrpWWog", "stars": 5, "date": "2012-05-07", "text": "Being from San Antonio I missed Rudy's so much! This Arizona location is similar, but different. The BBQ is definitely a winner, but their now commercialized packaged BBQ sauce is horrible! Bring back the other stuff in the Styrofoam containers! I will still keep coming for the brisket when I'm in the area!!!!!", "type": "review", "business_id": "IWwt0vm8lYbVoyGSPd2Z9A"} +{"votes": {"funny": 4, "useful": 6, "cool": 4}, "user_id": "Ps1Db9zOatoF_76FZNO5CQ", "review_id": "AMbOLJwByQ7st4EOO1Wfmg", "stars": 3, "date": "2009-02-08", "text": "Amanda B organized a UYE for Dim Sum here today. They do Dim Sum from a menu instead of carts and it works really well. They also have a picture menu to look at with many of the items on it so folks like me can have a better idea what to order just by picking the picture of stuff they liked on a prior trip. We were pretty much the only folks there for quite a while and we had the full attention of the staff. Not all of the staff is fluent in English but I can only recall that being a problem with the tea. I liked my choices a bit better this time, experience helps, and Marian H was helping me with sauce pairings as there were several to choose from.\n\nI almost gave them a 4 but for the restroom. The fixtures had a lot of corrosion around them and in general the restroom showed a lot of wear. I flushed the urinal and was washing my hands and it seemed like the running water was very loud, I looked over at the urinal and the valve had stuck and the place was indeed flooded. I beat on the valve with my fist until it rocked back but by that time the floor was quite deep in water. I mentioned it to the hostess and they had someone in there with a mop quickly.\n\nI would definitely go back here again.", "type": "review", "business_id": "yOYFhiTjT-SM4spKtDk92w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9bP3urjM__IP5csFh9ZsuQ", "review_id": "Ghbad4hgTEolB6zZJNmCAg", "stars": 2, "date": "2011-07-06", "text": "Been to this place only once. Coming from Chicago the experience at this place was ok, but I've had much better. Would not go again since I think there are better places out here.", "type": "review", "business_id": "iNvY0zAlaD_ye7Z6rHu-Ug"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "-XBrsGGSP1wTZrhX_krckQ", "stars": 4, "date": "2010-05-03", "text": "So last Monday the hubs and I got invited out to join some friends for $3 burgers at Maizies ($4 if you add cheese)\n\nFor 4 burgers (All with cheese on them) and 4 beers our total bill was only $30!!!!!!!! That is a smoking deal if I ever did see one! \n\nOur burgers came out fast and hot. They serve them on chibata bread! They give you a little side of chipotle mayo that is delicious, but not enough to cover a burger.\n\n\nOur waiter was super fast and friendly! We will for sure be going back", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LP8JFPcEtA0ti8g_BRBX4w", "review_id": "uCw_dEKiJ_CCZs8oUc4Q8A", "stars": 3, "date": "2010-11-28", "text": "Wanted Thai food near Chandler tonight but realized few are open on Sundays. Here's how the morning's research played out:\n\n1. Great reviews for Thai Rama on Yelp but no hours of operation. Strike one.\n2. Look for hours on restaurant's web site. Strike two. \n3. Call restaurant. No voicemail greeting after 34 rings. Strike three looking.\n4. Discover Facebook page, which despite having just 85 fans does include hours of operation, as well as some nice feedback from patrons.\n5. Will try Thai Rama tonight with unfairly high expectations. Hope the food is worth all the effort it took to get the most basic information.", "type": "review", "business_id": "cT_rocMh92B9t62Disp6gA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XbzB2i2fjggHsPXtQcOJUA", "review_id": "BmaFuZpxPs9Eg-F4ju-l4g", "stars": 5, "date": "2009-06-07", "text": "Sunridge Canyon has been one of my very favorite courses since I first played it 6+ years ago. I have to admit I did work here for a two-year span several years ago, but it was one of my favorites before, during, and since then.\n\nIt's not as hyped as Grayhawk, Troon, and some other courses but it's just as great of a layout, if not better than some of the more popular high-end courses in the valley (definitely better than the overrated Grayhawk). The course has the rare distinction of being very playable yet very challenging at the same time. You'll be toast if you don't hit it fairly straight on most holes, but you won't be punished for hitting it where you intended like some of the blind-shot-heavy courses (i.e. We-Ko-Pa) here in the valley. I've shot in the 70s one day and in the 90s the next out there.\n\nBesides the superb and scenic layout, I also like the simplicity of the overall complex. It's not at a big resort, there aren't multiple courses, and there is no grand clubhouse (not that all those things are always bad). It's just the 18 holes, pro shop, and a restaurant that serves up some pretty solid food. The staff is friendly and helpful, too. It's like a neighborhood course albeit a high-end one. \n\nThey have some great summer rates for locals this summer: Any day, any time for only $35. I recommend all valley golfers to enjoy that rate while it lasts. I played yesterday and the course was in good shape tee-to-green, and outstanding shape on the greens. It's been awhile since I've seen greens roll this well on a $35 course here in town.\n\nOne last, but important, note: It gets WINDY out here. As in, it gets windy every day. The course plays through a canyon and the winds are swirling all the time. An early morning tee time is best since it gives you your best chance to take on the uphill back-nine without the wind gusting in your face.", "type": "review", "business_id": "oGYPsU7IJPhyVpd0F5lfTg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "jg_HqwaKLvacmjI8L41MLA", "stars": 4, "date": "2011-01-07", "text": "This Ace Hardware is another gem for the locationally challenged Desert Ridge residents of which I am a part of.\n\nThe staff is helpful, they've always had what I needed and it's located in a plaza with several good restaurants, a gas station, Starbucks and a Safeway. \n\nIt's so much better than running The Home Depot for an item you need, but will never be able to find on your own. That's the great thing about Ace, you can always get help when you need it.", "type": "review", "business_id": "KCKq8rwYSaVFHP8w694TAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ia-Bk0oHTcutM7_Kq6Jrlw", "review_id": "coExktpilQIUCVAdjUfPhg", "stars": 3, "date": "2010-10-11", "text": "I visited on high reviews. I think it's a little over-rated, but good none the less. My burger was a bit overcooked, food was overpriced but the service was top notch. Great service, exciting atmosphere (although a bit cramped). I would go again with hopes of a better burger.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "eJGh4UF0zHIPPLZG1NkpgA", "review_id": "4gwyUW9HiZOIc3QWAyukTg", "stars": 5, "date": "2010-05-23", "text": "Inside the Clarendon Hotel in central Phoenix, Gallo Blanco has quickly made a hit for themselves with hipsters and urban dwellers alike. They offer a refreshing alternative for hotel restaurants, with lively ambiance and great food and drink.\n\nGallo Blanco's tacos are surefire hits. They're served individually, and come lined up in an appealing silver taco stand. We've ordered the carne asada and shrimp soft tacos, and, wow, they're really mouthwatering. The shrimp is flame grilled and seared, bringing out a nice full flavor. The guacamole is slightly sweet and chunky, and paired with outstanding tortilla chips, this is a must-order appetizer. Even the sauces (I prefer the red chipotle one) are addictive, either to accompany the supreme tacos, or to be enjoyed alone on chips.\n\nThis restaurant is a fine addition to the emerging downtown Phoenix foodie scene, and with prices extremely reasonable, you get a lot. A good sized meal for two (sans drinks) could ring up at $30-35, which is a good value for great food. Try Gallo Blanco, bring friends, and get a bunch of items. Although I haven't explored the rest of the menu, I sense that Gallo Blanco's items don't stray far from excellence.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s0G9Z_P8gTSQF6uKgcOZ0w", "review_id": "ClGtiTpDEscUGdgKYwmf_Q", "stars": 4, "date": "2011-08-13", "text": "Definitely going to make this a normal visit instead of waiting 3 years to try it. Kool Aid in a Mason Jar was all I needed to see to know this was not going to be a typical dining experience and something to remember. Food was amazing, the staff was friendly and the prices for the portions were more than fair. Only the off beat location prevents me from making this a 5 star review.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZXTIFYJPsqBDeBaoGKJc_Q", "review_id": "EsT5tyL6beb-lT0OLmWyog", "stars": 5, "date": "2011-03-08", "text": "I love pueblo pediatric also! And, also surprised there aren't any reviews!\nThere staff is always friendly and helpful. Rooms are always clean.\n I take my baby to Dr. Salek. He always answers all of our questions and never makes us feel \"stupid\" for asking. He also takes his time and even asks us how we are doing. Most physicians these days are in and out of the room before you can even feel like your questions are answered, but Dr. Salek really takes his time. \nI went in during a very busy day...flu season actually. My baby had a fever and I called the office to fit me in. They did surprisingly and I saw Dr. Salek. He examined my baby and reassured me his fever is fighting off infection and not to worry. Well as any mom, I was worried and continued with my questions...I was there for 30 min with him and not once did he make me feel rushed. I even thanked him for squeezing us in and he replied \"we would rather stay later to see all our sick patients than to send you to urgent care because we are overbooked\". \nNow that's what I call service...if only MY doctor would fit me in and not send me to urgent care!\nI haven't seen the other physicians but am sure they are just as good! Also, they are a private practice from what I know so each physician owns part of the practice...meaning they take pride in what they do!", "type": "review", "business_id": "MmS6Bt9RBCUDHdw58i8cjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LycBOkA2piDMQTdpkY5YoQ", "review_id": "_JrBMUKMGk7iaz3Ji4AuOw", "stars": 3, "date": "2011-04-10", "text": "It was maybe two months after this place opened that I decided to give it a try. I didn't go to the restaurant, opting instead to use their delivery. I placed a large order for two (~$80) and the food was ready and delivered withing 30-45 minutes. The food was of decent restaurant quality and definitely a good place to get steaks, but it was no where near the quality you would get from Texas Roadhouse or Outback and neither is the price. I'd definitely recommend trying them if you are looking for a cheat, good steak fix.", "type": "review", "business_id": "k3VlKirVjVK6t6cDFvCOpw"} +{"votes": {"funny": 4, "useful": 3, "cool": 3}, "user_id": "feDtiv33q5Td6HvmiKDYoQ", "review_id": "QzNwiSvEqQwWsitGmiGXOw", "stars": 4, "date": "2009-01-02", "text": "I'd always heard tales of the fabled Sonic Drive-In, but it was like a whisper in the wind or a thief in the night...I never truly believed. Legends with tantalizing visions of juicy burgers, golden fries, creamy milk shakes, and flavored sodas came across state lines into Los Angeles, but how could such wonders be true? \n\nWhat began as an ordinary day would end in a night forever seared into the archives of my mind. As we were blindly driving through the dimly lit streets of Phoenix, an illuminated sign appeared to us, as if an answer to a prayer. Sonic came to us all at once in a haze. We ordered burgers, fries, onion rings, popcorn chicken, a corn dog, chili tots, and shakes upon shakes! Oh, the bargains! We laughed! We danced! We wept! The next morning, all I had was the echo of a stomach ache as proof of the marvels of the night before.\n\nMaybe, just maybe, if I clap my hands enough and really believe, one will suddenly appear in the South Bay. One can only dare to dream.", "type": "review", "business_id": "A-ZhvQa5A-XSqZB3HH6TVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "D9aj6AjCyLp-zp8fozL8aQ", "review_id": "AjntZYa-1nlKOLkxCSKOSw", "stars": 4, "date": "2007-08-05", "text": "Decent wash, generally pretty quick. Used to be Octopus Car Wash. Has lube and detail center, although I have never used that service. \n\nOne of the better wash places- way better than Danny's for sure..", "type": "review", "business_id": "tI600wWPFDc4bxEvrbBpRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "pV7C6w6rQLYl7BS9-J8cUA", "review_id": "cQnjSrJ5jLhkEIt9xgC2Vw", "stars": 4, "date": "2011-03-05", "text": "This restaurant is close to my office, so we go for lunch at least once a month. I love that it's bright, with great modern decor, and the seating is comfortable. Service is always very good. The prices and portions are a average for the area. The cuisine is a twist on Sonoron, but nothing extraordinary.", "type": "review", "business_id": "VKNl2-aF4n1x7lPVyU-Mag"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "JEfRjBaNqdInGz2_Zx3mxQ", "review_id": "T5GjSfKEl4tRrPoaaJ_tBg", "stars": 4, "date": "2009-12-06", "text": "i enjoy Barcelona.\n\nwhen i moved to Scottsdale, AZ, this was he first bar i went to. It was right down the street from where I lived (which ended up being a great location). \n\nall of the greatest friends i made during my year there i met here and im still in touch with today,\n\ni normally dont get into that whole \"club\" scene...but i always had a blast when i was there. \n\ni do have to say i would never go there looking for a Mr. if i was single. i don't care for Scottsdale men, they are WANNABE's, drive their BMW's yet live with like 6 other roommates just so they can AFFORD that BMW. If there was a section on Yelp about Scottsdale men, i don't think there would be enough room for my negative opinion. this place is full of them YES. \n\nBut like i said, the service is great, i loved my bartender James. and i always had a BLAST when i was there.\n\ni miss you Barcelona. xoxo", "type": "review", "business_id": "6YWp7frmHKuPLYSlPyUdsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "edNdxDyzMiZCHEBMbo8H4Q", "review_id": "jN3T5zU6P5fZolndTLWYCw", "stars": 5, "date": "2011-02-16", "text": "In a never ending quest to find new lunch spots me and a coworker stumbled upon this place. Hearing it from another person we were originally looking for somewhere else.\n\nOverall I thought the food was excellent. A generous portion, and a price you can't beat. A little difficult to order but got exactly what we wanted. Only problem I can see is no where to sit. So you have to take it to go. Still worth it.", "type": "review", "business_id": "Jw1ucgEz9SlUKK7_7sqOdw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "dQO0tQISZyb9L4d5ASnXyQ", "review_id": "b_oj5jIX4iHLNpt9RQq1BA", "stars": 3, "date": "2008-11-30", "text": "Playable muni track for players of all abilities. If you've never played golf, this would be a good course to learn at. For low handicappers, it's birdie paradise. Kenny Mac has a large chipping green and two putting greens, as well as a driving range equipped with crappy range balls and mats which I refuse to use. \n\nThe course itself is wide and flat, and is certainly not a destination golf course. The fairways have generous landing areas and the rough is hardly penal, while the greens are mostly accessible and large. During the summer time, the fairways run out and the course plays extremely short. \n\nBonus 1/2 star for having lovely cart girls.", "type": "review", "business_id": "7TTGDhtXBTeii0uPxOSgyA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "wLuDGMXytNVTF8ZU2gwUEQ", "review_id": "XCOHKPe_PKB3SVBBNn9wfA", "stars": 5, "date": "2012-02-01", "text": "Move over Jacques Torres! Angela has come to town and just might be the next big thing for Phoenix (and the confectionary world!) \n\nI happened to find this place just on a whim....I was reminiscing the other day about all the wonderful chocolatiers in other big cities, and it occured to me 'maybe there is a chocolatier in Phoenix?' Sure enough, there is!! (thanks yelp!) and she's GOOD!!!! \n\nAngela is as sweet as her candy is! She explained how she just started this business in October of last year; she is a self-taught, talented and creative, as authentic as it gets, chocolatier! She uses all organic ingredients, including fair-trade organic chocolate. You will find many whimsical truffle flavor creations like Raspberry Rose, Mudslide, Strawberry Balsamic, Lavender Lemonade, Madras Curry, Avacado Wasabi, Maple-Smoked Bacon (yeah, I KNOW!)....and like a million more! AND the best news of all, is that she says she has perfected a dairy-free recipe for truffles...I. CAN'T. WAIT! I hope I'm the first to order that batch!! Besides beautiful, flavorful truffles, she makes her own marshmallows (in various amazing flavors as well) Chocolate Bark (which is always dairy-free) and even different hot chocolate mixes. \n\nThe most amazing thing of all is....now, get ready for this....all of this magic comes right out of her home kitchen!! THAT means, everything is made with *love* :) So, if you happen to yelp this, like I did, the map will actually take you to her business, which is located in her house, in a neighborhood (a little confusing at first....) but it IS LEGIT! She said normally it's by appointment only (I was not) but she gladly had me in and I got to see some of her gastronomic creations anyways (yay!) However, she says that she normally sells her stuff at the South Scottsdale Farmers Market (Wednesdays) and the Tempe Farmers Market (on Warner and McClintock on Saturdays) In fact, if you go to her website, you can customize a box of chocolates and pick it up at the farmers market of your choice... (can't wait to do this!!)\n\nNeedless to say, this made my day...no, like, my week! SO excited to have a real, gourmet chocolatier right in my own neck of the woods! Woo hoo!!", "type": "review", "business_id": "QMIR_VeLPSOp-d730i5mJA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "_4lqpCYCqOQzbB6xQGGhrQ", "review_id": "z5h9wURk-smtCzZ8pbyxlQ", "stars": 2, "date": "2011-04-25", "text": "I used to be a huge fan of this place, but it was just ok this time around..\n\nA bunch of us went and I ordered their steak for two.. 22oz. Thought it might be good. It was dry and had no flavor. She had asked at the beginning \"Do you guys want A-1?\" I said \"No thanks.\" A good steak shouldn't need any sauce. I should have asked for a ton of it.. just ugg..\n\nWe also got their artichoke, which was actually not too bad. I love the one they do at Cheesecake Factory. if you combine both, you have the ultimate smoked artichoke. \n\nEveryone was ok with their meal and one of my friends loved his. He got the chicken fried steak. Cant really mess that up I guess. it was pretty good. \n\nId go back, but Im not the fan i used to be of this place.", "type": "review", "business_id": "c8XlQvVNwKhH9BOHEObtNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "qQ7hWJvzM9qZyiyzdsXGtQ", "stars": 4, "date": "2011-02-08", "text": "Great service and large portions. I like it. Nice, clean building too. I had the alfredo and it was tastey and was really like 2 meals beacuse I had the leftovers for lunch the next day. A little pricey, but not too bad.", "type": "review", "business_id": "v6zRA0WqOODJjmpvstrpGQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uqEQsMbvsQQcqKpZrPyYwQ", "review_id": "IDJNccH5xoGU-_we9OU2kQ", "stars": 4, "date": "2012-11-15", "text": "Pho is great every time, service is fast and friendly, potstickers are the best I have ever had and they are only $3.50. Plus %10 discount for Intel employees.", "type": "review", "business_id": "4zfrcEmGvZ4oYKx_revTxA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_tTNzjkD-pvWqSb-Ahw9Uw", "review_id": "Qv1jJdZftPlfJef45OX3GQ", "stars": 5, "date": "2011-03-27", "text": "Bomb .....................................................................................................................\nHeated toilet seats", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vzAvkSRois2VMqj_AT7xVA", "review_id": "W2wNTUAq5AFVgTiJsXRkqQ", "stars": 4, "date": "2012-02-09", "text": "My first time here. Service was fast and friendly. Had a HUGE slice of pepperoni to go. Really good, fresh, flavorful pizza. Love that I can get it by the slice!", "type": "review", "business_id": "XKFGZwvsk3GVzd1CZdWpIg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UFQ4WzoA5emSWsSpzOtyAA", "review_id": "NDFCbn9vIRXnAJtjIUHriQ", "stars": 5, "date": "2012-01-07", "text": "Just went to this theater last night, and it was great! Started with friendly staff...every one of them! (not common these days) Went to get a popcorn, and the nice girl suggested....\"why don't you press your button at your seat and someone will come serve you! Take advantage of the service!\" We went to our seat and after we pressed the service button, someone came within a few minutes. There was a full menu at our fingertips...including alcohol and specialty coffees. Our seats were comfortable, leather (or pleather), roomy, we could stretch out our legs without touching the chairs in front of us, we had 3 cup holders between the both of us, and the seats leaned back. Not a bad seat in the theater...we got to pick our seats BEFORE we went into the movie on a touch screen computer/pad. \n\nI'm really impressed with the prices, too, because for just $2 more than a regular, cramped, loud, teenager-infested movie theater, we felt like we were getting First Class treatment, all night! The snack, food and drink prices are typical for a movie theater; but not more than it would be elsewhere. Pretzel was about $4.50 and Hummus was about $6.50 for example. \n\nI'm sad to read Ruth Ann's review because it sounds like an isolated incident, and it also sounds like they did a lot to take care of the issues she had...an experience can't be absolutely perfect. In my case, there was a little bit of stickiness near my cup holder, but that's not something that will bring my experience down an entire star or 3! \n\nGo to this theater! It's really a great night out! (As long as you like the movie you pick, which we did :)", "type": "review", "business_id": "U6oNWTxVTnuuCL0BPRZCSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "r8xfTpifZ7gP5Cd5CSQaIQ", "review_id": "ReCxfxjT5EPqIn5vvBR_0g", "stars": 3, "date": "2010-09-20", "text": "3.5 stars. Went to the Calo Flamenco show this past Sunday, brilliantly talented company of dancers and musicians.\n\nThe Center just completed a year-long renovation this May, completely refurbished all 1,500+ seats, added guardrails and orchestra level handicap-accessible seating, and enhanced their central A/C system. \n\nThe Chandler Symphony offers free concerts on monthly basis. The Center's programming schedule can be found here: \nhttp://www.chandlercenter.org/performances.html", "type": "review", "business_id": "vF4d_jh3shJx8jU39AZdqg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "Pr2joZGKMm_GHqvKZTSlpQ", "stars": 5, "date": "2010-02-10", "text": "House special chicken is a must. This is not a fancy schmancy place so you know the food will be good! Never have had to wait for a table. The banana thingies they give you for dessert are awesome too. I give it 5 stars because of the huge selection. Pei Wei and PF Changs are ok but they have a limited menu. And a LARGE wait!", "type": "review", "business_id": "lAGDe38li38fyf971CslFg"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "Xzx04tG4ndBxM3YSsdfHmQ", "stars": 1, "date": "2009-03-28", "text": "Some of my friends brought me here last night and the first thing that came into my mind was that this was a set up for To Catch A Predator. I was ready for Chris Hansen to pop out and grill me with, \"What are you doing here?\" If you feel like Kubrick's Lolita really speaks to you, as in it mirrors your life, then you've found a place to feel comfortable in your pervert skin.\n\nIf you're of age to consume alcohol, they've got a bar here. The thing about this bar though is that they're really sloppy about pouring drinks, ie. a Manhattan should not taste like a barber's cleaning solution. The decor and set up of this place really needs a face lift.\n\nA few pluses though... If you're under 21, I could see how this would be appealing. I'll admit that the under-21 clubs that I went to when I was under 21 were fun, but now that I think about them they really suck. It seems like an alright experience if this is your first step into the club/bar world. The DJ's here spin pretty much straight hip-hop which is fine, it's very mainstream though and nasty bumping music.\n\nIf you go here you're one of three types of people:\n\n1) You were dragged here by your friends\n2) You're under 21\nor, 3) Your usual excuse is a heart-felt plea, complete with waterworks, that goes something along the lines of, \"I swear, Officer, I thought she was 18!!!!\"", "type": "review", "business_id": "3utuLtXNNvXAzwTgpyD9vQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H_JsAwjiGEOr_RlZmwfNsA", "review_id": "0xA6Q_vQhVI4hZh7Wvaw5Q", "stars": 4, "date": "2011-11-06", "text": "I came here for a Yelp event and had a great time. They have the place somewhat divided into two sections- bar and restaurant. I liked that the patio opens right into the bar so you kind of have an extended bar. The food was really good and the staff rocked. I have been meaning to go back. I'll put that on my to-do list!", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BtQVxFotHFK3T2FtIrBWmg", "review_id": "TVWhHE1oRBFbWiDEsOe8aQ", "stars": 5, "date": "2012-03-18", "text": "These girls know how to make working out awesome and fun!!!! Quality instructors, will not disappoint!!! Lots of variety!!!", "type": "review", "business_id": "bBjBTLRk0jxEySjixSFUkw"} +{"votes": {"funny": 2, "useful": 0, "cool": 2}, "user_id": "e8Ux_b9e3OGceknRqi44WA", "review_id": "QRn7Ayjmpe79GxTp5VYQ9g", "stars": 4, "date": "2010-07-11", "text": "Super fun!!! I haven't been to this park in years so i definitely was overdue for a fun and wet time!!! \n\nI went this past Saturday with my friend and although there were a lot of people there it was far from crowded! The longest line i had to wait in was for that toilet-bowl type slide.. (which was super scary for me, btw). \n\nI would rate this place with 5 stars however, their food selection is very unhealthy and ridiculously expensive. My friend and i wanted to bring snacks (healthy sandwiches & water bottles) inside but our ticket voucher stated that food & drinks were prohibited, bummer. \n\nPrior to heading to Sunsplash, we filled up on a super yummy & filling breakfast at Cracker & Co, conveniently located less than a mile from the waterpark! About 2 hours into our wet & wild time, we did take a break and treat ourselves to two large icees (for $8, nuts.. right?).. and before we left we had a scoop of ice cream each for $3.. each. Ha. As i was chowing down, i looked over to my friend and said, \"we could buy a half gallon of ice cream for the price of this ONE scoop!\" Sheesh.. whatever, it was worth it.. we supported our economy that day. You're welcome Economy! Lol\n\nOver all, i had a blast acting like a dork & reliving my teens. There were tons of lifeguards on staff & they helped keep everything safe, organized, and everyone happy. I am planning on gathering more people, including my boyfriend to go THIS weekend too! We might try a different park though, just to keep things fresh!\n\nThe wave pool, the lazy river, the variety of slides, the lily pad cross... Sunsplash is a SUMMER TIME MUST!", "type": "review", "business_id": "0a8hLC1V7jgOjRigoBohAg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "Fpd-Q0_stZUq4jP1DtLxjw", "review_id": "ih0n8GeFN5YFdq_QJdNcLg", "stars": 2, "date": "2009-10-09", "text": "There's 1 casino my tia wont go to, but she doesn't remember the name of it. Guess what? I think this is the place... \n\nI thought Wild Horse Pass Casino was already open. No! Not until Oct. 30. I think Wild Horse needs to reword their billboards. So we drove a few minutes down and ended up at Gila River Casino. Next time, I'll pass! \n\nSuper small, lame security and the machines suck (literally, the machines inhale your money like it's water). I spent $50 within 3 mins without winning anything. What made me scratch my head was the set up of the machines. You'll see a row of .25 cent machines then a random $5.00 machine in the middle of it! Or a row of $1.00 machines and a random $25.00 machine thrown into it! What the heck? \n\nAgain, I'll pass on Gila River.", "type": "review", "business_id": "O6ogkhJOdaX81sNC9_RAOw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "--TqfVGywiYWh7Sn9ksBmA", "stars": 4, "date": "2011-10-17", "text": "Sadly, this Souper Salad has closed. :-(", "type": "review", "business_id": "m_fi31gTJ1aASUZbS3QioQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "f-xJLG6AsPqifz_otUP8wQ", "review_id": "FRoQi0lZiE39b-XLm-M63A", "stars": 4, "date": "2010-03-29", "text": "It was a Sunday morning & Mimi's was PACKED! We walked in, gave the hostess our name & told the wait wouldn't be too long considering it was just the two of us. The d\u00e9cor was French quarter New Orleans-themed, with Parisian style knick knacks & art work abound. A bit on the kitchy side, but quite nifty IMO! What I found to be not only impressive but wise was that they had free coffee, mini muffins & sample size nut loafs for the waiting patrons, which mostly consisted of seniors & families. \n\nFollowing the hostess to our table, I couldn't help but notice, the humongous portion size of ALL of their dishes. \n\nThe menu had so many mouth watering choices, but considering I was feeling ill, I ordered a bowl of granola & a (YU-MMY) buttermilk spice muffin. Boring I know, but lemme make it up to you by talking about moms dish, the 3 egg avocado & crab omelet which was made w/ jack cheese, tomatoes, scallions, bacon & asiago cream sauce, accompanied by red potatoes, choice of one of their mega-sized (hot & fresh) muffins & fresh squeezed O.J. \n\nThe service was on the slow side, perhaps understaffed or just overwhelmed, but our waiter made it up to us by giving me choice of beverage & extra muffins, no charge. \n\nFor those of you who want healthier options, don't you fret, they offer a Fresh & Fit menu as well. \n\nAll in all, I really enjoyed my dining experience @ this Mimi's location & will definitely return if I'm ever back in Phoenix.", "type": "review", "business_id": "-WZIxGXJHMGidZXRhKxP3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zPiEroQrxxyBrHSUAcymBg", "review_id": "DQBVIeOxiDnfsDJGDB14hw", "stars": 3, "date": "2011-12-16", "text": "Does YC's stand for \"yucky chinese?\" \n\nThat's what I'm wondering as I am slowly trying to put down this food. This is such a fun and exciting concept, and the service was beyond amazing, but wow... this \"food!\" My sauce to meat/noodles/vegetables ratio is about 100:2. Being that you're supposed to choose your own food/sauce, including the amount, it should be my fault; however, the nice young lady who works there made my sauce. There's a menu board of how to make your sauces, but since there are two meal sizes you can choose from, I think they need to re-doctor those recipes to fit each of the sizes. I feel like I'm eating spicy soy and sesame sauce soup. \n\nI think the price is pretty reasonable for everything you get: meal, drink, soup, great service.YC, re-doctor your sauce recipe and I may consider my return.", "type": "review", "business_id": "L-bpJXpA5875dLb7A4wh6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "p5JVI5TkPtUtKq2_J3DrDA", "review_id": "r_iDneLEBvaT1unCtxzojw", "stars": 4, "date": "2009-01-22", "text": "I've been to Joe's & Bobby Q's but Dave's takes the BBQ on this one! We got Dave's family portions for one of our many tailgating experiences. We tried all of there dishes and the beef brisket was delicious as was the pulled pork. And don't forget the cornbread muffins. While this is a place you cannot go often or you will be the pig! Its worth the calories every now and then!!", "type": "review", "business_id": "u9MKnG0PqI8N7ixSfrrTiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V-ixKMzLSMxDzdEJ9TF2Ew", "review_id": "ULSTEGAK19J8UW8VNAsJ2A", "stars": 5, "date": "2011-03-28", "text": "As a Massage therapist I really need to get worked on to make up for all the massages I give. Kristi is my go-to massage therapist. With over 20 years of experience in the healing arts she's got amazing strength and sensitivity. AND--she's a great listener--it's kind of like getting a counselor and therapist all in one shot. It's the best hour of my week! \"", "type": "review", "business_id": "m-32wtMGKTJe_8Z9gn_kAQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "lVomYoc1M3-4-qawV_gsKw", "review_id": "adLepXF2WR9ZgeL3_eIZMQ", "stars": 3, "date": "2011-07-27", "text": "Went here because of a groupon, will probably not go back without one. \n\nCons:\nOverpriced, flat out. Plus, like other reviewers have said, they RUN OUT of a lot of good stuff. Also, I know this is something small, but as their menu changes, they should update it online. Had I known the menu would be so different, I would have waited for another week to get a meal I would ACTUALLY want (as opposed to settling). Also, we had reservations and had to wait 20 minutes. Not a huge deal, but a personal pet peeve.\n\nPros: \nThe food was good, but like I said, overpriced. Since I had a deal, I didn't mind as much. Atmosphere is nice, and I loved the extras (we got a few small tasting, palate cleansers?). The cotton candy was fab, and though the strawberry dessert was NOT my first choice, it was truly delicious, and I may go back JUST for that dish! I love the location, and the staff was incredibly friendly, informative, and courteous. \n\nKnock down the prices and I'd give it at least 4 stars!", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GiROQFEsNS9-uRobLQHSkg", "review_id": "DhUin2-qKsd1qiLlRTeWjA", "stars": 4, "date": "2011-06-07", "text": "I love this place. A little on the pricey side but the food is awesome and the staff is always cool.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "yEdoJsi3f0IEar6FOHgwjw", "review_id": "oaD76n8LOnh2GxGw9sZqkQ", "stars": 5, "date": "2013-01-01", "text": "We made a last minute decision to go out on New Year's Eve. The restaurant was very busy but after just a few minutes a couple of seats opened at the bar ( our favorite place to sit) and the bar tenders, Blake, Kennan and Clair were ON IT! They were very busy, but did not miss a new face at the bar or a glass writing for a refill. The food was excellent. My husband had the baseball steak with twice baked potato and I had Prime Rib with lobster tail and twice baked potato. Everything was cooked to perfection. Oh yes! Start with the garlic cheese bread as it is yummy!", "type": "review", "business_id": "-3xbryp44xhpN4BohxXDdQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "PY6a5DTygDqf52eQMtii5w", "review_id": "T4P7U2qMnWHwHwG6MHqb3g", "stars": 4, "date": "2009-04-12", "text": "This is the old Rigatony's on Brown Rd- If you've never been, it has a Buca di Bepo-ish, before Buca was cool, sort of feel. They even serve their house chianti in a small water glass, instead of a wine goblet- adding to an authentic \"Joisey\" kind of feel.\n\nThis is traditional Italian-American fare, rich and flavorful- with big portions. The Chicken Piccata is crack-good. It's served in what I've come to learn is a Sicilian style, with a n awesome relish of tomatoes, capers, and green olives and a side of addictive Fett Alfredo. It never gets old.\n\nAnother great authentic dish is their Cecca- you can get it as a \"Pie\" (Pizza, that is) or over pasta. You just have try it. It's rich, refreshing, and explosively flavorful all at once.\n\nThe house salad is a variation on a traditional AntiPasto theme- and is a meal, and event, in and of its self.\n\nThe best thing about Mardeneley's is that EVERYTHING on the menu is good! It only gets Four stars because it could use a bit more snob appeal (and a better beer selection).", "type": "review", "business_id": "VTyfRdPJS3AVZOWDXIAhyQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "tKNpKiQUsOx-UfMMArBxbQ", "stars": 4, "date": "2011-07-26", "text": "The three of us ate at Famous Dave's last evening and had a really nice time! \n\nWe stopped in around 5:30 or so and were seated at a booth in the bar area. It was still early, so there was plenty of seating throughout the restaurant. Our server came by a few moments after we were seated and asked about our drink order. Nice. \n\nIf you have never been to a Famous Dave's, it's sort of like a Texas Roadhouse, which is a complement. I've had some really good BBQ over the years in local Roadhouses throughout the US, and clearly this chain has copied the model. \n\nWe started with some onion strings and chicken tenders off the Happy Hour menu along with our drinks. Both were good, but ordinary. What made them good was Dave's sauce. At each table you have five or six choices, as well as the sauce that came from the kitchen. \n\nFor dinner we order a Pulled-Pork sandwich with sides, a large BBQ Huli platter and some Texas steak tips grande nachos. Each was delicious and large enough that we couldn't finish. One observation on portions, they are large -- like two Styrofoam take home boxes large \n\nFor dessert we order some $1.98 mini puddings and brownies. Just the right size for everyone after a large dinner. \n\nFellow Yelper Scott D put it best in his 7/23/10 review: \"Famous Dave's consistently delivers no matter which location you go to\". Our party of three heartily agrees! \n\nThe tab came to $69.49, including taxes but without tip. We thought that was fair given the serving size and the tastiness of the food. We will be back! \n\nEnjoy!", "type": "review", "business_id": "dUi5Lg1Ay3HwK0p_ZaXNYg"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "UQLWaa3K8ajDq0J2zSltnw", "review_id": "3UJmNaH7OZoye15uzB6vRQ", "stars": 2, "date": "2010-10-18", "text": "I've been here twice, which was obviously enough. The first time was in 2002, before I was old enough to drink legally. It became obvious to me then that state fairs are only fun for people over 21 or under 12.\n\nIn 2008, I came with some friends who bought a $6 hamburger at one of the tents, took one bite, and threw it in the trash. One of them remarked later that it was the only time in his life he'd spit food out in disgust. While this was happening, another friend and I asked a toothless Vietnam veteran manning another tent where we could find the nearest restroom. His reaction suggested that we were insane for asking such a ridiculous question; we surmised that perhaps, due to some bizarre war injury, he had not taken a piss since 1973. Bottom line, customer service is not high on the priority list at the state fair. Nor is edible food.", "type": "review", "business_id": "FkHhy6kWeoJf0xJTqzRWmg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "NLDDaat42UQXQCOpU4e2TA", "review_id": "imTtqUUglJcjt2my7G2PrQ", "stars": 2, "date": "2009-04-27", "text": "OK, I am new in town so I was unaware that they are trying to change the name of this event to The Great Arizona Picnic, or something of the like. Well, thank God because when I hear \"culinary,\" my mind certainly does not think of Dos Gringos...or any of the other Vendors represented at this event. And why the hell, after paying to enter, would I pay again to enter the fenced areas!? WTF!? \n\nI come from a town where festivals are managed better than most corporations so I believe that I am spoiled, but there is no excuse for the long lines encountered here. I counted over 60 people in line waiting for pizza...pizza! Lines to enter, lines to use the ATM, lines to purchase tickets, lines to eat, lines to pee......\n\nObviously I feel passionate about this particular review, and for those that love this festival, I apologize. I will say that many people with whom I had spoken who had been coming to this festival for years said that it is no longer what it once was.\n\nOn a positive note, the people watching is tremendous. I have never seen so many beautiful people in one location in my life. And I would agree that it all depends on the company. Great friends make this a fun event.", "type": "review", "business_id": "r7GXuj4rr2vGPU_pklxcQg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "K5T9yaw-iOL_-RW5XVofMg", "review_id": "4JoQpdtA0_XZlH8Mp86V5g", "stars": 5, "date": "2011-04-21", "text": "Greatness in the form of food, just like the other locations. \n\nThe service was particularly good at this location. We sat at the bar,and while the other customers were mildly annoying, the late night bartenders were up beat, witty, and very personable.\n\nThe atmosphere was par for the course.\n\nAll in all, if you are reading this review, get your directions to this location, close the browser, and go eat!", "type": "review", "business_id": "TQhP4vCMjvX527YMxPfuUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ho9wE60C0HfVaGQiwatZeA", "review_id": "trfZP2pBuKHZBuI7h4h1LA", "stars": 4, "date": "2012-07-10", "text": "Stayed here for my best friends birthday. We just wanted a relaxing weekend and that's what we got. We liked that the pool was open 24-7. There was a bar at the pool but nobody attending it which blew. So we would have to go inside in our bathing suits to order our drinks since they didn't have a menu outside. People say the rooms are dated, but we thought they were nice. We enjoyed every part of our stay with the exception of the bar out by the pool not being open.(If theres a bar, someone should be working it right?)", "type": "review", "business_id": "AZq_SBJsqsleJkQCksYsjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0UCWOfFSbSk-tXPd17_Wmg", "review_id": "r6nzRsf5goTllOfoGQU9hA", "stars": 4, "date": "2010-05-31", "text": "I actually haven't had any of the cocktails here yet but the menu looked really amazing. There are lots of sake cocktails and yummy-sounding martinis and they have a pretty good beer list, too.\n\nI had the tofu with red curry sauce and it was really good. I also had the oyster mushrooms which were also really good. I really like tapas as an idea, the small, inexpensive plates so you don't feel like you're spending a bunch of money even though you end up spending like fifty bucks. \n\nMy friend happened to know the guy who was our waiter and he was very sweet. Overall I'd say it's a really great place to get a quick bite and have drinks with friends if you're feeling a little bit fancy.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "THC7I7imU3jkhYN1ibSH3w", "review_id": "1lLOC-FQQZP8wM86PRnKOg", "stars": 5, "date": "2010-01-26", "text": "Awesome, delicious lunch or dinner takeout place! Quite a dive in terms of decor, so don't expect anything fancy. There are folding tables and chairs, if I remember correctly.\n\nAnyway, I had jade red chicken and emperor's chicken quesadilla and both were SO GOOD. The idea of Chinese - Latino food sounds odd, but I'd heard of it before and just never had the chance to try it. They have all sorts of combos, mostly with beans or rice as a side (get it? chinese and latin food both usually come with rice....!). So before you knock it, if you're in Phoenix and looking for a place to eat, this is it!", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hKJsae1YDM57ujATRpnjAA", "review_id": "z8m4w7OlpnA6SxsCRi0Lnw", "stars": 4, "date": "2008-11-24", "text": "out of the three filipino restaurants in Mesa i think this is the best, lots of choices in the food, and the cantelope drink is a must have. the portions are really good, and price is very reasonable. i took my friends there last week and they liked it. only thing i ask the cook though is too go a little easier on the grease, but than again it wont be a filipino dish if there weren't grease oozing out of it lol", "type": "review", "business_id": "yC3ydbHAJTZ22FZp4LynFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FEdeDneIRH2IjKfneDA-vw", "review_id": "IwCKq03IdacOQiPJhJfTog", "stars": 1, "date": "2009-10-07", "text": "in addition to sucking, it's also expensive.", "type": "review", "business_id": "1eBJyYf3JEccqXUFxG1VWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ZEc0JBnmJHpak2cNyCIPA", "review_id": "I3OVhm125X3akj4x8wVxbw", "stars": 3, "date": "2012-12-02", "text": "I LOVE in n out burger, but this particular location kind of lacks.\n\nI order a double double, mustard grilled, no onions with chopped chillies.\n\nMy burger came with onions and without chopped chillies. Also mine and my girlfriends buns were stale.", "type": "review", "business_id": "18oecrR4bf-ctLvVGEaSLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eLOGS2cLzi-RKBqdOPpw8A", "review_id": "XD4Fj0QAjmdipcOXUB_XTQ", "stars": 2, "date": "2011-04-17", "text": "In my ongoing search for great Chinese food in Phoenix this place is a speed bump", "type": "review", "business_id": "aozcOaCMwOHG8s-lbZ6_gA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7o7MF9B9lxcWupE8jiLOaQ", "review_id": "6LWNjmEpltmwc8Lo_dw2qw", "stars": 5, "date": "2011-11-04", "text": "I can't believe I haven't wrote a review for Ted's yet! By far, one of my favorite places to go. You can get full off of some tasty food for a great price. I normally get a hot dog with mayo, onion, hot sauce and a pickle. I also like the corn dog and onion rings. I can always get a satisfying and fulfilling meal for $5-7. Love it!\n\nCan get a little crowded on the weekends, but generally all the people are pretty fast and nice.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yMQHn_kmQF1_47d79oGhvQ", "review_id": "JNn06tNrrMk_gdq0aRxqrw", "stars": 5, "date": "2012-04-24", "text": "Great place to go before heading to the zoo. Not a lot of seating if you're with a big party", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "K0accMAdHc3qfVBHCirOUA", "stars": 4, "date": "2012-05-28", "text": "This HD is very good. They seem to have knowledgeable people. When I was putting in my irrigation system a while back I got a lot of good info from their plumbing guy. Apparently he was a master plumber.\n\nOn this trip I needed a overheat sensor for a can light. The lighting guy had a can he said he couldn't sell because it was missing something, and proceeded to rip the sensor out for me. No charge. That's customer service!", "type": "review", "business_id": "9uMnQTDD0hi_ivp_te6s4A"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "L6-K7i4Ir1blOPOpLM3AcA", "review_id": "kmLbMKOQ9mmvU6FT4eOSpA", "stars": 5, "date": "2010-04-18", "text": "These guys know their stuff. Professional staff and great location.", "type": "review", "business_id": "ShUSw5yD7EFWBOiq_CuHMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "y7iru3-UEZC7nNOzFZvdcQ", "review_id": "ZNFGyC5e1xtzXZLFhBzxIw", "stars": 5, "date": "2011-03-26", "text": "From the moment we walked in the door we were treated like celebrities. I wish I was one after leaving here! The food was some of the best Thai we've ever had, and I live in Chicago and have tasted dishes more than a dozen different authentic Thai restaurants. \n\nWe never were without a glass of water or a full glass of wine. I wish I lived here so I could make this a regular stop during my weekly Thai and Sushi cravings. \n\nThe Tilapia was out of this world - topped off with a delicious medley of mint, onions and lemon leaves. I highly recommend the Spring Rolls - very fresh and tasty! Give this place a try - you won't be disappointed.", "type": "review", "business_id": "qSLdUiI2edATC3KBT2zf4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "iKsgTJHZaZUEbOmmEQKC0g", "review_id": "Hw40iX1EQHx7v5CqoLuc_Q", "stars": 5, "date": "2012-02-19", "text": "Visited this great place last week with my parents and sister and we all had a great time! The service was a bit \"in the weeds\" but everyone was friendly and nice and the food was very good. The tour is worth the $5 and then some, very informative, and our guide was very funny and knew her stuff! products for sale are lovely and the drive is worthwhile. It is a bit way out but it was different and a great way to spend Sunday. GPS do not like the address so try google maps and your phone/ipad it will get you there.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "hSEv6hOHIJt2kaFHr2vsPw", "review_id": "_VpM0qDomGw-j81lLcWKmg", "stars": 4, "date": "2012-08-05", "text": "Wow! Some of the best barbecue in the state!! The pulled pork and the BBQ Baked Beans are a must try!!!", "type": "review", "business_id": "yYbd9P1KmlPSKmQxo68n_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "F_M4GMKXy2EUZFQeo_MtjQ", "review_id": "wlEieep6ZlttVFDesoz4vg", "stars": 5, "date": "2011-06-27", "text": "This place is great. All the food is fresh and always good. They have a great happy hour daily with a very knowledgeable staff. I highly recommend this place.", "type": "review", "business_id": "wH9WtaTlrRawH_IpK90RPg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "ngFqU9PPLZ9zLv34mLVE9Q", "stars": 3, "date": "2008-10-30", "text": "I admit I'm not a huge BBQ fan, as it usually makes me feel like exploding afterwards but since my dining partner loves BBQ, we've eaten here a lot. The meat is pretty good but at least one of the meats has been dry each time I've been. My favorite has been the ham. The spicy BBQ sauce is pretty darn tasty too. \n\nI've found myself putting black pepper on the mac and cheese to spice it up and haven't been all that impressed with the rest of their sides either. I'm a big fan of sides at BBQ places, even more than the meat, so when sides disappoint I get sad. :(\n\nI dumped out their homemade root beer after one sip. Don't know what was about it but it was very *off for me, and I seriously love root beer. My dining partner loved it so ehhh...maybe it's just me. \n\nThe place is very interesting on the inside, the decor reminds me of a mid century cafeteria but more modern. They have a huge hand painted mural of a farm and a large outdoor seating area for parents to let their kids run around in while they eat. \n\nJoe's gets packed. I've seen the line wrap around to the outside on the weekends. I don't think it's worth waiting the 20-30 minutes in line for, but then again I don't think a lot of places are worth that wait for cafeteria style dining.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qjumhaqvwFHz68ogEJKRXQ", "review_id": "gCXpcuxN3N_R7v4nq1BEcQ", "stars": 5, "date": "2012-04-09", "text": "Attention all parents, nannies, guardians etc. Koko bees is tons of fun! The kids are all smiles & full of laughter. Terrific environment: oodles of play houses, dress ups, costumes, toys, themes & settings! The little ones imaginations can run wild. They even offer fantastic dance, sports, yoga and tumbling classes for the children! This is a great place to come with the kiddos!!", "type": "review", "business_id": "uvgI3CcxHnyGb_akVb8TCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O_KD0lyV0VlwMdPF2k6lqA", "review_id": "kzYtTggi0J4-GLo5QRM-Cw", "stars": 2, "date": "2012-02-23", "text": "I've fequented here often enough to know that all the majority of the games here are all those ticket games and little claw type games. I come to hang out with friends and play some games. I can in on tuesday night around 6pm and thought to have dinner there since I had a coupon for the place. I really didn't care about price at the time with the coupon.\n\n After being seated our waitress got our drinks took our order and everything was fine. After we recieved the food we were left unattended for quite some time. When the waitress finally returned I had to ask for a refill and some ketchup as well. My drink was empty so I would assume that would be something that the waitress would ask but I caught her before she left. My boyfriend did not recieve a single refill the entire night and we were there from 6pm to 9pm.\n\nWe had friends meet us there and we just chatted it up for some time. It wasn't for some time that we realised that the place was bare not just of customers but of staff as well. It was as if they closed the place down and just left us. After the waitress had taken our check and cashed us out that was the last we saw of her. The plates of our food were still in front us the entire time and we had kind of placed them all together so that she could come and just take them...kind of thought that the bunch of plates stacked together would give the hint we were done but I guess I shouldn't be so subtle next time. \n\nThe food was ok at best. Nothing bad nothing good in hind sight though if I had to pay full price for what I got if that waitress had left us like she did and I didn't frequent the games I would've walked out. Probably wouldn't notice. \n\nAll in all go for the games if anything else. The games are even ok that is IF they are running. Sometimes I come in and games are off or not working. This is just a place that is convienent for myself and friends to meet up.", "type": "review", "business_id": "TMq92PhrL-tQS3qOsNIXUA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "btfv0CFoDX6vJCPms6-Irg", "review_id": "iWGAoY8Rge0GQOZW4Kd06g", "stars": 4, "date": "2008-11-24", "text": "Had myself a new york striploin and it was quite good although I do hate paying these kind of prices for steak. I really thought the vegetables were more special than the steak, but if you compare what kind of quality steak you get here compared to say Donovan's (high quality steakhouse in CA), I've got to say that I like the overall package presented at Keg Steakhouse with respect to the quality and price.", "type": "review", "business_id": "-3xbryp44xhpN4BohxXDdQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lKze8Z4vzqgN5R8Bq8F_vA", "review_id": "qwm-L-iO4IHHEPmE8rx73w", "stars": 5, "date": "2012-11-22", "text": "I split the veggie platter with a friend and we only got just over half way through it. Got the rest to go. I couldn't wait until I had room to eat again so I could eat the leftovers. Sooo much good stuff. I'm usually not a glutton, but there are a precious few places where I lose all self control and beach myself and this is apparently one of them.\nWe were there for an hour and half and asked all sorts of questions about how things were made and what they were. The lady that waited on us may have been the owner. She was cheerful and happily indulged our questions.\nIt's a large restaurant with plenty of seating for large groups, but it also seems to be an authentic family outfit. They have a few beers in bottles and apparently authentic music.\nI'm sad that I'm moving out of this neighborhood right as this moved in! If I weren't leaving, I'd probably give up cooking entirely and just eat here every day, or try to get take-out.\nIf you're downtown or on the east side of Phoenix, it's worth the trip. Really good ethnic places outside of the Italian/Chinese/Mexican/American mold are a treasure here in Phoenix. If you're from somewhere more metropolitan, you know what I'm talking about. West Bring friends, dates, clients, and employees here and impress them.", "type": "review", "business_id": "1udzLbeQxmLTbOtgyVP0kQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "swJ6rmmGx4DCxosDfKTElw", "review_id": "oX0IOkDALa6VkORxXY2nOQ", "stars": 3, "date": "2009-01-14", "text": "Well, it dropped a star for me, and I'll tell you why. Eaten there probably 20 time in the last quarter. I've had it all; All you can eat sushi, bowls, desert, beer. Ate alone, ate with Sandra K, ate with son and family (including 3 year old grandson who plays drums with the chopsticks) had a party of 12 there.\n\nService....slow on Saturday for the AYES, otherwise I can't complain. There are some \"bright\" spots. First, it's close to my neighborhood, a start and there is more than sushi and that is helpful when you have non-sushi lovers with you. The bowls are very good and you can order them in the heat index you like. Funny names to them as well, like the \"Exit Wound Bowl\" or \"The Classified Bowl with this description;Don't Order this Bowl\".\n\nSquid Salad is great, great, great! Calamari, ok. Hey they put a lot of thought into their beer selection and that is cool. And their dessert sushis are very unique.\n\nAs for the sushi....I now have way too many sushi restaurants to try and they are all falling over themselves for your business. Sushi has become really \"hip\" lately but there will be a fall out in this category as the economy continues to slow and people, let's face it, are pulling back. This is not a place for a sushi purist, but give me good food, a cool gathering place (close to my central Phoenix abode) and I will be there. Sushi has got to get better for me to rate higher and \"earn\" my business.", "type": "review", "business_id": "c0RSs2KYK5Y-ZlSrNq9LyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "3VIRjR2V29TOaI9u64hMig", "review_id": "zWhVRsQ80-6EVlT4EIU6MQ", "stars": 4, "date": "2010-07-09", "text": "So far the only thing I have eaten at Verde that was not awesome was breakfast. Don't get me wrong it was yummy, but lunch or dinner is much better here. My favorite dish is the tacos al fresco. Two fresh tortillas loaded with fresh colorful veggies and coated in a delicious vinaigrette. Did I mention everything is super fresh? The rice and beans are also very good. The salsas and guacamole are also awesome. One is smoky while the other has great tang and spice. Nothing, however, outshines their delicious tortillas. I love walking by and seeing someone preparing them in the window. The decor and atmosphere are also great. The owners are super nice too. I really can't complain about this awesome place!", "type": "review", "business_id": "hZRLGfRrZTo9up2P-0aAHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BFzp34CongI8FAnFrC4WNA", "review_id": "7lR08Tui3SORRFiIs7C6fg", "stars": 1, "date": "2012-09-09", "text": "Our bartender was rude and impersonal, to start. When my wife ordered a diet coke, you could see her disdain. We saw her once more, when she took our food order, after which she sat in the corner and ate. The remaining staff dropped off our food without a word, and never came back; in fact, I had to flag down the manager to get cashed out. The food was sub par. My wife's Shepard pie was all mashed potatoes, and my chicken strips were incorrect and with the wrong side. Also, my fries were soggy because they had been placed over excess sauce. \n\nPoor food, awful service, overpriced beer. Visit the Kyrene location or don't go at all.", "type": "review", "business_id": "WiAY7lyT-DC7Zk3StMMp0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hws92rePVainOwONgFG2Hw", "review_id": "TVUUO1gxwBiATfntwXhmXA", "stars": 3, "date": "2010-07-19", "text": "Service - 5 stars (which is so rare). Food 2.5 stars. \nMy husband and I are a little picky when it comes to steaks (we eat Morton's and Mastro's) but we wanted to try a new steakplace while visiting Phoenix and Durant's had great reviews. \nWhen you get to the restaurant, you walk through the kitchen (pretty cool to see everything) then you're greeted by the host. We came for a pretty early dinner and literally every single person - host, kitchen staff, waiter/waitresses greeted us. The decor is pretty cool - kind of burlesque-ish, all walls are a deep red, there are huge vases of roses everywhere.\nOur waiter Fred was awesome!! Very friendly and professional. I had their vegetable beef soup (good but salty) and my husband had house salad. I ordered the trout with lemon caper sauce which was very bland. My husband had rib-eye and it was also bland which was surprising. Their dessert - trio creme brulee - was the best part of the meal! So from this meal we decided if we want steak, we're sticking with our usual Morton's.", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "0y6tjRANTAx-KIbiCRcu3A", "stars": 5, "date": "2011-05-19", "text": "Bruce saved my day, my computer crashed this morning and I gave him a call and he was able to come out same day. He went through my whole system at my office and even updated my anti-virus with a free AVG instead of paying for that crappy Norton service. He was able to go through and recover all my files and found out the operating system was corrupted. He saved my day and completed everything same day. Thank you Bruce!", "type": "review", "business_id": "DhDCnjPyZGUN3x5WzluRTQ"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "ZKs7NR45Fi27wcIoAilEMQ", "review_id": "n0lC_z4j_vw_UZpcKs1gXQ", "stars": 2, "date": "2010-02-15", "text": "If your products weren't my number two love I would abandon you!!! I only say this of this location! One associate was SO snotty I wanted to punch her, and I'm not a violent individual! Fashion Square receives my loyalty...", "type": "review", "business_id": "7wRpeQV6cqbx7qgEO94owA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mNrdpZFYHOLtYXJcIrKPyw", "review_id": "zYJRUO5lcYYexpjUxaCwFw", "stars": 5, "date": "2011-03-20", "text": "went down to Scottsdale for Spring Training (Go Giants!) and we decided we wanted to have a nice, sit down meal instead of bar food or ballpark food every day/night. Eddie's House fit the bill perfectly.\nFood - excellent. Tuna Tartar \"nachos\" were great. I had the scallops and they were perfectly cooked. Also had a size of Fiddler's Ferns which I've only tried once before. they were excellent. Berry Cobbler for dessert also excellent. \nService - excellent. very nice waiter who was very attentive.\nLocation - close to downtown but not on the immediate Scottsdale Road path. \nAtmosphere - also excellent\nPrices - being from San Francisco, the prices were unbelievably reasonable.", "type": "review", "business_id": "He9Dar4bk2vyeiPC7TkUgA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "X3lQtlRJZFtwE1gP45x3Vw", "review_id": "LGURVvqFw7L1u2Na4fzPBg", "stars": 4, "date": "2012-01-10", "text": "We like this restaurant, It is always good food and good service and convenient to our home.", "type": "review", "business_id": "NuFs1Sh5wUa7ZLISMtCMRA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0qAgcZQ3uT4BrvA_P0LW0Q", "review_id": "L_jA5wIheHgsMxcHqCoosQ", "stars": 5, "date": "2011-10-15", "text": "I rented bikes here for the first time today and took them for a ride on the green belt. It was so fun and the husband and wife working the shop were so friendly and helpful! I will definitely be a returning customer and recommend this to people who are looking for a fun outdoor activity.", "type": "review", "business_id": "kLfJNtvpbomNTD8tqm7ukQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "W9ZG5q-QIblXYeHgaPS5Uw", "review_id": "yQvdduZssbdi244ErD_hIw", "stars": 4, "date": "2011-12-05", "text": "Never had a bad meal or a bad beer here. Great selection of brews and the food that they make is simple and GOOD. Great recipe for success. Service is a little spotty but expected due to the fact that these are college students who really (speculating here and actually giving the benefit of the doubt) don't care too much about customer service - it's just a job to them.", "type": "review", "business_id": "W7xb2iS4cYL14Yi5LOGSkA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "X7MpG6myZOkZhovgwndQPw", "stars": 4, "date": "2010-07-14", "text": "Yay! I got to try the happy hour finally! They even had a sweet band playing in the dinning room, great ambiance. \n\nOn 4th of July weekend the girls and I got a room at the Valley Ho and ventured over to Vic's for some much need food around happy hour time. The fun drinks were totally wroth it! I got the burger on the HH menu, it was sooo yummy, huge and came with a bunch of fries and was only $3. Crazy right?! We were pretty tired so we couldn't stay long, but next time I want to try the calamari, hummus and other fun drinks.", "type": "review", "business_id": "uI4YqMarUpchI4I3ZWgOGA"} +{"votes": {"funny": 3, "useful": 4, "cool": 5}, "user_id": "tlSSQwfHYJany7wPoTH46A", "review_id": "KrGuO0DXCX0pLH8SVOyvnA", "stars": 4, "date": "2007-09-20", "text": "I think I'm in love. If I only lived closer to Downtown Phoenix, I'd leave my mark on the Lost Leaf in the form of a permanent intaglio of my ass cheeks on a bar stool. \n\nIt's tucked away on a side street in a humble looking home cum art gallery cum bar. It can be a little tricky to find since no sign exists, so keep an eye out for the neon lit open sign. You definitely don't want to miss out on this place by becoming frustrated after fruitlessly ducking down side streets, saying fuck it and going to The Roosevelt. While it wouldn't be a total bust, you'd be missing out on the warm and inviting ambiance of the Lost Leaf.\n\nThat's really what won me over about this bar. It made me feel downright cozy, with exposed brick and wood, local artist's artwork decorating the walls, and the actual kitchen serving as the bar. The main room is large enough to host a large group, but small enough to be homey. The acoustics are very good (soft talkers rejoice!) and the music playing was loud enough to add to the mood, but nowhere near the point of drowning out conversation. There are a couple rooms in addition to the main bar area that you can duck off into for more intimate conversation, as well as an outdoor patio that's a little on the small side but, super score--there's ceiling fans!\n\nI found the prices to be very reasonable and the service to be unpretentious and helpful. There are no beers on tap here, but the selection of bottles is mind bogglingly extensive. I had to ask the bartender to get me his favorite pale beer and I ended up finding out that I am also in love with a brew called 1664. Looks like a wine cooler, but manages to be respectable instead of laughable.\n\nSo bring a couple friends with you and indulge one night, and then another, and another. You'll be love struck too.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YeK95nGGvYsssVHzcWpmkA", "review_id": "roCITLlb_RwydpGd9ZO_JA", "stars": 4, "date": "2011-03-19", "text": "We've eaten at this location quite a few times. We've always enjoyed it. The pizza is great and the employees are friendly. We also threw my son's 6th birthday party here in sept. Our hostess assigned to our party was great and very patient with all the kids. My son said it was the best party ever. We'll definately be having more parties here!", "type": "review", "business_id": "fecYnd2_OTDECk7bd6GOFw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1ADzO1AOjVDuByLzaX3pgg", "review_id": "HZAEVgeQE-VkHGTIk_GpbQ", "stars": 5, "date": "2011-01-29", "text": "Love this spot - it's pretty close to the convention center so Natalie and I went here to check it out. The bacon is awesome here!\n\nTheir philosophy is great too - local, organic, etc. etc. The place is tiny and quaint too and as always it's great to support a local independent business. \n\nBest breakfast in Phoenix that i've had and definitely one of my fave spots - went there the next day too - got the special and it was delish - check my photos to see what we got!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tHz9cWxwSfcP4qRaPIHvww", "review_id": "FXC4mW_eL6GMN7SsbSgzAg", "stars": 4, "date": "2012-10-18", "text": "The husband and I had driven by Hula's multiple times, saying it looked interesting but we were always on our way to another destination. We finally stopped in on their 3rd Anniversary and boy, are we glad we did. The wait for a table was probably 45 minutes, but the place was packed and in all consideration, it wasn't as long as other places we've been. Plus, we wanted to sit outside, since a band was going to be playing. (Who were awesome, btw.) Drinks were $3 all night, special anniversary prices, and we tried the Dr. Funk and the Painkiller. The Dr. Funk was delicious! The Painkiller is similar, but had cinnamon or another spice in it that I didn't care for. I ordered the coconut shrimp egg rolls to get us started and they were fantastic! For dinner, I had the coconut encrusted butterfish and the husband had a pork plate. (Mine was delicious but the pork was just okay.) Our friends had steak tacos and a salad. The steak tacos looked so good, we had to come back a second time. The second time here, I had the steak tacos and the husband had the steak dinner. Mmmm, the steak tacos were totally worth it. (We also ordered the coconut shrimp rolls again - definitely a favorite.) For dessert, we got the brownie with macadamia nut ice cream. The brownie wasn't anything special but the ice cream was good. When we checked in on Yelp, we received $5 off our bill. This was a nice surprise! Totally check this place out - we'll definitely be back!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lt8EDfC80IpHzGKlj8qGpA", "review_id": "-vYN_QTOpFt-fLxcIzugwQ", "stars": 5, "date": "2012-03-07", "text": "The name is so misleading, because this is the most charming dining spot I've ever eaten! \n\nI dined here for lunch with a friend and was blown away by everything about it. First, it's location is tucked away near ASU campus in a quiet little neighborhood. It appears to be a converted home built in the early 1900's and lots of beautiful mature trees and plants growing in their huge, and I mean huge outdoor patio area. I only dined outside, but honestly with such beautiful weather 9 months out of the year here, why would you dine any other way! \n\nThe service was excellent! The staff was extremely attentive and always checked up on me while I drank water and waited a while for my friend. The menu was amazing. I never once read a menu that I wanted to try everything on here. They had a huge variety of dishes at what I can only describe as American/French fusion. It all looked so divine. And from what I've been told, their menu changes frequently to new seasonal dishes. So I can't wait to see what they offer when I return. I went simple with my meal having this delicious quiche, fresh fruit and a cup of their corn chowder soup. The soup was so rich and creamy, I could have ordered and ate a whole trough! It was that good. The fruit was clean, well portioned and fresh. I'm very particular with fruit, and hate when the fruit looks soggy and overly ripened. And the quiche was heavenly as well. Just the right amount of ham and tomatoes with alot of flavor.\n\nSince I was here for lunch only, the prices were reasonable. I've heard at dinner it can get expensive.\n\nThis was an unforgettable dining experience and recommend this to everyone to try at least once.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "4ywb0jhJePq3eNvDgIAGGw", "review_id": "HcZ-HvaZyD7uDUI9IFtRDQ", "stars": 3, "date": "2011-05-12", "text": "They are known for their CARNE ASASDA and it does rock but dang this place was nickle and diming me at every turn! \n Everything is ala carte, and the tacos are so small,3 bites and its done.\nFor the price tag it should at least come with a small bag of chips.\nHonestly the chips were so average it was disappointing. the salsa that comes with it was mediocre considering the hold out factor applied. The salsa that came with my tacos was exceptional, that should be their signature salsa for everything.\nSodas by the can, no refills,,geezzz,, another 3.00 bucks later.\nI think I ended up spending over $12 for 3 small tacos and small basket of chips, and 2 sodas in z can. \nFor that price, I want more atmosphere or at least a 4 bite taco.", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "4CZW7wofHjv55ml185QPOQ", "review_id": "gcV68SxJlp5X_ITBv_z_FQ", "stars": 4, "date": "2011-09-14", "text": "So this place was under another name from another fame, but the owner is the same. (ha, crack myself up). The food is way better, the space is way roomier, They have like 100 TV's and the fact they didn't kick me out on opening NFL Sunday because I was on my roller skates makes mama very happy.\n\nI plan on going here for all the 1pm games for the rest of the season. They are kid friendly too. Can you say no babysitter needed, take 'em with ya. They need their own roller skates tho.\n\nFOOD: recommend the pretzels/mustard - the cooked kind.", "type": "review", "business_id": "oT6K-uJgGLq3FbcQQn3ivQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "Vg9irIjRKJIXnNayILhYCA", "stars": 3, "date": "2008-06-03", "text": "It is with great regret that I give House of Tricks three stars.\n\nI've been here twice. The first time, friends invited me and the wifey here for dinner. Seeing the patio, I thought, \"oh, this is really cute.\" Once seated inside, I thought, \"oh, this is really cute.\" Seeing the prices on the dinner menu, I thought, \"oh, this better be really good.\" Long story short, it was okay. My friend, who had only been here for lunch, apologized for the unexpectedly high prices. I didn't care too much, I guess. It was edible. I'd probably come back for lunch.\n\nWhich I did, with co-workers in tow. The prices at noon were certainly more agreeable and we all looked forward to a pleasant meal. Suddenly, this gem of an exchange occurred between our waiter and my boss, Debbi:\n\nDebbi: How large is the quiche? I weigh 230 pounds, so I'm a big girl.\n\nWe giggled. Debbi loves to joke.\n\nWaiter: Well, it's not as big as you.\n\nBad form, dude. Bad form. You're lucky we paid lunch menu prices.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bDVQPjGPM6yVLD2cntJkrQ", "review_id": "MYcczOB_c_G3X4QEM2yD5w", "stars": 3, "date": "2010-02-01", "text": "My boyfriend, myself, and his 3 year old foster sister met up with his mom, dad, and 2 year old foster sister. We were all heading up to Prescott this past Saturday (1/30) to play in the snow. When we got there, they were already set up with drinks & pancake balls (strange, yet greasy & delicious). They'd placed our orders as well since they texted us for them when we were still 15min or so behind them. The food was good. The service was just okay this time since I can't remember if anyone ever came to give refills on anyone's drinks. I know they came by and asked if everything was okay a few times, but that was it. Still, friendly staff. The bathrooms weren't anything spectacular, but it's a bathroom...at a Denny's. \n\nAnyways, we all left full and went on about our day.", "type": "review", "business_id": "RQbD1athZFAke0zBTEqgwg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yJ22u_1l01H4NM3wCowIKw", "review_id": "VTHAgGIL57QnfIbGG9gXHw", "stars": 5, "date": "2012-05-10", "text": "Amazing.\n\nFogo de chao is nothing short of out of this world. It is expensive, but as soon as you start, you'll know exactly where that money went.\nSeriously. Try it.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "oe_QopcqJ8RJMrW-DJLodA", "review_id": "zvuI-Q74i25kga0RkHiUYw", "stars": 4, "date": "2012-09-24", "text": "I went here for dinner since my friend said the the location in Cave Creek was one of her favorite Mexican restaurants in the Valley. However, living in Phoenix and Scottsdale, we decided to go to the Fountain Hills location. Plus, another friend lives there so it was a more central location for all of us. \n\nWe arrived around 7 and it wasn't crowded at all, we got a table right away. We got chips and salsa to start which was perfect since I was really hungry with it being way past my dinner time. One of the girls got a pomegranate margarita and she said that it was really sweet but good. I got the fish tacos and they were delicious. Probably the best fish taco I've had. I was expecting some sort of fried fish, probably cod. I was pleasantly surprised that it was grilled and the two tacos came wrapped up in the foil pouch they were cooked in. It also had this really good sauce. The hard shell tacos that my friends got also looked really good. The shell looks homemade, fried, and super crispy. My friend asked for extra cheese which they brought out in a small dipping bowl. She was also charged extra for this. The tacos didn't come with that much cheese to begin with, so that's kind of a rip-off. The price isn't that cheap either, I would definitely say it's on the pricey side. \n\nThe atmosphere was just okay. I was reading how it's the most romantic location, etc. but maybe they're just referring to the Cave Creek location. All of the employees were nice and even took a group photo of us at the end since my friends were visiting from all over. I definitely want to go to the Cave Creek location in the future to see what all the fuss is about, but it'll definitely be more of a special occasion thing since it's definitely a hike from Scottsdale. In the mean time, I'll stick to my other local favorites for tacos.", "type": "review", "business_id": "XK5FFbrKWMjRqc6ZbSTknw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nmztWUc9gAO76-1vn8M09w", "review_id": "SWdRuN3xy_pc6Sj5MnHwOQ", "stars": 5, "date": "2011-01-18", "text": "Man the chompie sliders is the bomb. Wish there were some in LA. Man taste so good and flavor.", "type": "review", "business_id": "0K634ehk41ZRc4kj3NTAEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-cgz6qu0nnJZ_pWX-NlScg", "review_id": "tiBdD_8-eiPBQlHLoF_MFA", "stars": 5, "date": "2010-08-28", "text": "The sushi was fresh and excellent! The service was almost too fast. I did not find the prices to be out of line with the quality. Our daughter loved the miso soup. The one thing I really appreciated is that they will make what you want, whether it is on the menu or not. If they have it, you can get it. I know we'll be going there often. \n\nOne thing though, this is a busy, noisy place. It is not large either. If you are looking for quite and relaxed, this perhaps isn't the best choice. If you want good food in a noisy cheerful atmosphere, like a bunch of friends or after work, this fits the bill.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MI_ZFuJ55bRnaarjYzkKRg", "review_id": "OQCvM5dw3phiR0OLQt-_YQ", "stars": 5, "date": "2012-01-01", "text": "Great place to take the kids to play and have some bbq. Nice outdoor area and good solid bbq.", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "63r0aX7XtwQOD36XfsImPQ", "stars": 4, "date": "2006-10-07", "text": "I love to hike Piestewa (formerly known as Squaw) Peak, obviously not for the solitude - since it's so crowded. \n\nIt's a rigorous 2.4 (round-trip) mile hike and NOT for beginners. But it is the most fun. \n\nIt reminds me of our version of the New York street scene - almost egalitarian in a way. You see people of all sizes, ages, ethnicities, physical abilities, socioeconomic levels, families, friends, lovers, first-dates. This is where you see Phoenix's diversity, ladies and gentlemen.\n\nIt's definitely a wonderful first impression of Phoenix -- from the cross-section of society to the people-watching, and last but not least, the AMAZING breathtaking views, of wildlife (like roadrunners, chipmunks, and lizards), flora and the Valley below.\n\nIt's been noted as one of the most hiked trail in in the nation.", "type": "review", "business_id": "vZBYSQtTbY9MaYu5qNuU8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W-VlJfTsCTBjknjIoTgUqw", "review_id": "PerNQjbCord5HrsoatjNZQ", "stars": 3, "date": "2012-04-01", "text": "There is a certain sense of nostalgia that exudes from Phoenix Muni that you don't really get at the newer Spring Training facilities in Arizona. True, it is the oldest still in use, but it feels more intimate and more geared towards the spirit of seeing your team before the season starts. It's less about business and more about getting back into the swing of the things, having a few laughs on the basepads and shaking hands with the people who really live and die by their fandom. \n\nMost of the seats beyond 1B and #b sides are benches, another throwback, but really, there isn't a bad seat to watch a game. Get there early if you're into meeting players and getting autographs and also be prepared to wait in lines for food or drink. Even when ALL the stands are open, they are not enough to service a packed house of hungry fans. \n\nBring cash, only a few places accept card.", "type": "review", "business_id": "n-Q7d10K0h6PyNewmiHLyg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2PGSd993Aw8cQHym6qO2DQ", "review_id": "IiJnNTKdGIOs5LWYF6IzMw", "stars": 4, "date": "2011-03-27", "text": "Who doesn't love $3 well drinks? Relaxed, social, no frickin' paid seating!! Except that I was propositioned to \" Swing\" by some totally gross dude, I Lovd this place to start the evenings!!! Great cheap drinks. What more do you need?", "type": "review", "business_id": "3g2ofV7mhEoPyfF7vFMObA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JQsyLbRcUGM1Z4zYrI3nOQ", "review_id": "gxZXZmZjVh0Aupz_zu53qg", "stars": 5, "date": "2012-10-27", "text": "If I won the lottery and just wanted to spend a few hours a week working, it would have to be in this store. One, because I would want to be there just to see all the THINGS all the time, and two, because I would be able to spend all my money there. This place rocks.\n\nThis place has three buildings- the west one has pricier items, but the stuff is GORGEOUS (see previous lotto winning comment). The east one has very reasonably priced items, contains seasonal trinkets and specialty food items. The south building has kids stuff, pet items and clothing/purses as well as some home items. It is the BEST place to find a gift for someone, or spend your overtime check on something nice for yourself. \n\nWant nice stationary? A cute soup tureen? A garden item? New collar for your dog? Fake fruit for your centerpiece? Gorgeous picture frames? Cute gauzy dress? Hip handbags? Pretty bangles? Antique key holders? Whimsical signage? Artful platters? Decorative bird cages? Catch my drift? They have EVERYTHING! :)", "type": "review", "business_id": "_4_84uCAFDI2VHHEQz5f2g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iIQbATX70Jsbosv4OE2tHQ", "review_id": "rW8ZcTh1iocEiJ03Bh6rCQ", "stars": 1, "date": "2012-11-13", "text": "Worse pizza I have had in a while. We ordered 3 slices and they tasted like they had been sitting out for a while and nuked. Crappy service too. Salad was plain and all oil no vinegar for dressing. . Service half ass. I am surprised they have remained in business fo several years. Also they apparantly have no AC it was VERY warm inside even on a slightly chilly day in Nov so we sat outside the inside was so hot and stuffy. this place totally sucks.", "type": "review", "business_id": "s3D7EEo1Or4SsxRRjURJwg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "TTP7l5g4QUVCpQZ9NTAWqw", "review_id": "aCI-cfEPw4xYKhaHIIkiCw", "stars": 4, "date": "2011-03-19", "text": "Be sure to save up for the $3000 coffee machine they demo'd for me! Nuts! I could never imagine paying as much for a coffee machine as I would for a used car!\n\nI am really wanting to take one of the cooking classes they offer here. Soon maybe... Hoping for a Sur Le Table Groupon!", "type": "review", "business_id": "yDnRf8m_YI4AXHVGH6-fuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3BCH4AfHZshEaegNmPpN2g", "review_id": "zfWIfKDDhn1cdzJpJtw9PQ", "stars": 5, "date": "2011-10-06", "text": "Love the convenience store. I stop every morning for a soda on my way to work. They are friendly, efficient and clean.", "type": "review", "business_id": "iAyDiyR-Pv3Q7zt7qqixrQ"} +{"votes": {"funny": 4, "useful": 6, "cool": 4}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "yfud50sGM2bhpsWRyxSkRQ", "stars": 4, "date": "2009-10-24", "text": "Pros... Quick, good, cooked right, self serve condiments, friendly staff. Good choice of size and type of meat. fresh buns, self serve drinks. Good Good Good.\n\nCons... The place is a little run down, they sometimes no self serve trash bins.", "type": "review", "business_id": "Jj7bcQ6NDfKoz4TXwvYfMg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "khPlizt3ava1xkbtAxHQnw", "review_id": "aOSiBNsA9pa9ozCUpsjESQ", "stars": 5, "date": "2012-08-21", "text": "I threw my friends bachelorette party here this Sat and had an amazing time! Though this place is very fancy and classy they are super laid back with the partying and drinking. Makes for a perfect mix! We went all out and got a table with bottle service and two rooms to stay in. They gave us a bottle of champagne for free and brought it up to the room for us to toast which was cool. We had 18 girls in two rooms and we didn't get one complaint! We stayed at shade, the club upstairs by the pool, until 2am and then changed into our swimsuits to go for a dip in the pool. I love how the pool never closes so you can drink all night long! Shade also plays great music which we loved. Good mix of different stuff so everyone was happy.\n\nI did have a little bit of issues with the woman who booked our table. Her name was Haley. She was not very responsive and didn't return my calls, emails or texts. I wanted to decorate our table but wasn't sure what was allowed and she never answered my questions. But the night of the party I mentioned this to the manager and she brought us a free bottle of champagne and sincerely apologized for the trouble. This was enough of a redemption for us. It couldn't have went better! Thank you W for an awesome and memorable night!!", "type": "review", "business_id": "-sAoGZTnFtDZUY9JYWHqlg"} +{"votes": {"funny": 9, "useful": 7, "cool": 5}, "user_id": "tBkuKR6UDj-XkgtXoTANZg", "review_id": "SJroKRys5G5DV1uQz-W5LA", "stars": 5, "date": "2008-05-13", "text": "a weekend of debauchery was spent here when i was 18. somehow we broke two lamps that were hanging on the walls. like high up on the walls. like above head level. don't ask, because i don't remember how it happened either. we tried to steal lamps from other rooms, but the maids kept catching us. so we wrote, \"I O U 2 LAMPS :(\" on one of the lampshades and left it at that. one night, my friend jonathan got really drunk and angry and lonely, went to the pool, and threw all of the poolside furniture into the pool. we seriously destroyed that motel. i'm not kidding, there was so much filth in one of our rooms that you couldn't see the carpet. i felt really, really bad for whoever had to clean that up. but the best part was that we didn't get charged for any damage we caused. thanks, motel 6!\n\nno wonder my useful points are so low... i use yelp more often to showcase my anecdotes than to actually review things. i'm useless!", "type": "review", "business_id": "HwnC7hT0uIWuBq4CRtk_fw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "o1jc-nqCqeZ6Iq3AIve69g", "stars": 4, "date": "2010-03-08", "text": "I feel like an East Coast gangster when I roll up to LGO for breakfast. I'll take the Jersey Girl... pump fist and hair toss!! Hands down, it's the BEST omelette I've EVER had. And the fresh-squeezed OJ hits the spot. \n\nAfter a hike at Camelback, it's relaxing to come and sit on the patio... if you can find a spot. Weekends this place is a zoo!! During the week is pretty crazy but has its peaks. \n\nThe French Toast is pretty tasty and they do pastries just right. Muffins are baked fresh, toast is always spot on perfect. I want their toaster!\n\nI've had the pizza, which is pretty decent but not the best I've eaten. The salads are delish.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LP0bl3GKToABt3lnpSvA2w", "review_id": "oCgR-2vAKsjIsxx8yzfDEQ", "stars": 4, "date": "2011-09-17", "text": "Sushi and birthdays go hand-in-hand. I returned to Phoenix just in time to hang out with my friends for my birthday and they took me here. This place gets packed during happy hour for their half-priced sushi rolls and great drink specials. \n\nStingray is a beautiful restaurant in a high-class location. The patios are spacious and there is a lot of seating indoors too. \n\nThe sushi is well made and I will return...however, during happy hour. The prices jump up and the place gets empty once happy hour is over.", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "7A--K2Yb_i8fhqZEUn3b-A", "review_id": "5KTv4675TzICY5Y5cQoZgw", "stars": 1, "date": "2011-12-16", "text": "I just finished my G & S meal that I ordered to-go; actually, I just finished throwing it out. It was HORRIBLE. And by horrible, I mean shamefully bad. And by shamefully bad, I mean, heinous! I had a very disappointing experience here about a year ago but I thought I would give it another try. I should have proceeded with caution when I asked the long-term employees at the neighboring Blockbuster what was good and to the person, they all stammered and failed to reply. Seriously, zero out of four could give me one \"great\" dish! I've lived in both Mpls & Chicago and my Ex used to travel the Orient and we were always surprised at how POOR the quality of Asian food was in this area and WHY the people here, seemed to like it!? It's absolutely baffling!\nI had the Orange Beef & Spring Rolls. The Orange Beef looked scarey right in the container. But when i ate it - UGH! The texture was all off and the sauce..... it had these big, clear, GELATINOUS, ..... ugh ugh ugh! I can't even talk about it. Like biting into a ball of corn-starchy orange extract! I'm still sick from those few bites! [Truly.] And while I ordered vegetable spring rolls, I got what tasted like low-quality hamburger meat! In fact I finally identified the flavor and texture as: SAUSAGE! It was like an Asian Spring Roll with chunks of Italian Sausage inside!! How's that for a combo? Ugh...... [stomach turning]\nI'm sorry, I'm a Single Parent and I'm usually grateful to have someone cook for me. Grateful even when i am paying. But during \"tough times\" when i actually \"treat\" myself and then plunk down $20(!!) for unedible... yuck - it's totally, TOTALLY unacceptable! \nShame on you, George, for offering such little quality control and not aspiring to a higher standard overall. No wonder the place was (not) hopping on a Saturday night!\nSimply one of the worst meals EVER.", "type": "review", "business_id": "ZdQbDVZWDsO-d7q2qW8E3A"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "SCkg1fUjBVOze8wWlTGCog", "review_id": "5VS5HUxIIECRzd1E1wu8BQ", "stars": 3, "date": "2010-08-14", "text": "A hand-job with gardening gloves.....\n\nI went looking for Scottsdale Auto Salon to get a hand wash tint quote on my new Mini today. Finding it out of business, I whipped out my handy-dandy Yelp iPhone app looking for a nearby alternate to at least get the wash done and found Classic Car Spa. \n\nExpecting to pay a bit more for a traditional hand wash I was surprised to find a machine assisted process. I'd spent way to long trying to locate the place (thank you Google maps) so I just opted for their supreme wash, which includes both interior and exterior detail.\n\nMy son and I watched the car move through the process and saw that at least the 'wash part' was done by hand, but they used the same mitts from the filthy truck that had gone through previously. -1 star\n\nAfter seeing this, I should have watched their 'interior detail' more closely. When I got the car back there were lines of dirt in my white roof, and water spots on the accent chrome. When we got in the car there still bits of chip on the seat and floor mat from my sons spill the day, and it was obvious that the dash and interior hadn't been detailed. (Unless they refrain from using any product what so ever on the interior of the car. The dash and steering wheel were bone dry and dusty.) - 1 star\n\nI should have brought it up to someone, but my husbands' and sons' hunger won over and we just left. Thankfully all of their other locations are to far out of the way to bother detouring to again.\n\nThe staff was friendly, and their waiting area was pleasant with lots of drink choices, although I'm not sure their waiting area was comfy enough for anything longer than a wash.", "type": "review", "business_id": "ncxBZxetREZ_jCma0c7mHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "RgKTVm_tNDD1uR5iIbFpig", "stars": 3, "date": "2011-08-14", "text": "I went here last night with the BF and another couple, and we all had really high expectations for this place that just weren't met. Not to say it was bad, it wasn't, it just didn't live up to the hype. The space is very cute and warm feeling. I like how the chairs don't all match and it has a very homey feel. The service was also very good.\n\nThe BF ordered their home made ginger ale and it was very interesting. It tasted like liquid ginger, which was pretty cool. For food, we started with the nosh plate, which was probably the best thing we got. It had this delicious onion jam type stuff with some crackers, cashews, some meat of sorts, and a really good cheese with dill on it. The onion on the cheese was soooo good. I could have just eaten that for dinner. Then we ordered mains. The BF and I shared the chicken and waffles and our friends got the mac and cheese and the flapjacks. I was not a huge fan of the chicken and waffles, and I was so excited for it! The waffles weren't crunchy at all, which I think would have been nice texturally, and the chicken was encased in the fried coating, but once you cut into it, the fried part just fell off. It didn't adhere to the chicken at all. Also, it was very thick and didn't have a ton of flavor. This was very strange. The sauce on the waffles was good, it was a honey butter or something, and the chicken was moist, but together, it was a disappointment. It did come with some wonderful green beans though.... they were seasoned and cooked perfectly. I tried my friend's flapjacks and thought they were a little strange tasting... but not bad. I didn't try the mac and cheese, but my friend thought it was good. \n\nWe finished with a shortcake that has strawberries that were macerated with balsamic and basil and had some kind of cream in it. This was very good, I loved the earthy flavor that the basil brought to the dessert and the strawberries were flavorful and tasted fresh. \n\nOverall, it was good, but not great. Maybe I had too high expectations, but I probably wouldn't run back here in the future.", "type": "review", "business_id": "rQ4z0EStSZE4acgkne6Hmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_qT3bYTRwfaoJ9fForuFpg", "review_id": "INDZ9AiW3vhZ3jSP5oHEFQ", "stars": 3, "date": "2012-08-27", "text": "I've only been the their location on Central Ave. When I went to order my usual I was informed that this location doesn't have french fries. Ok bummer... I'll get along with it.\n\nWe went later in the evening and the place was really dead. I'm sure at lunchtime its much busier.", "type": "review", "business_id": "xfk9eY8gmwn8qsbyd-W6lQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ZVBvgWyq0ZP-Td2SXMeDAA", "review_id": "7ZRJsKkEFViHU75xr-Lr7Q", "stars": 1, "date": "2012-04-09", "text": "NOTE: This review concerns the Roberto's on Union Hills and 7th Ave. NOT the Roberto's in Anthem!\n\n\nI am only giving it one star because I can't give it 0. Simply put i was very sick after dining there recently. This was the only meal I did not share with my family and therefor the only culprit to my food borne illness. I have enjoyed this place in the past but recently the quality has gone downhill. Now they are closed on Sunday's.\n\nI wish i had read recent reviews on here before i had gone. they have slipped VERY far since there Diners Drive-ins and Dives days. \n\nthe guy that both took my order and cooked my food was obviously drunk. sitting on his cellphone playing what appeared to be a video game when i walked in.", "type": "review", "business_id": "QNo69O4cy6a3HGb6RrGWzA"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "eqdQie8Y8wg6NONUHlVwzw", "review_id": "zm7KvZN_6qEWk9zWd_XvPQ", "stars": 1, "date": "2010-05-05", "text": "After stepping off the plane hungry, I looked around the terminal for food as I walked to the next gate. \"Wait a minute, I'm in Arizona. I should get some southwestern style food or mexican food. Is that a burrito place? Surely it can't be bad.\" I ordered a #1, standard burrito. I take a bite. And another. \"Not bad I thought.\" Then I took another bite. And promptly spit it out.\n\nThe cheddar cheese in my burrito was moldy. And no, I'm sure it wasn't blue cheese. It was even obvious visually. After pointing the cheese out to the manager, she brushed it off as \"the bag was just opened, it's not possible\" even after showing the obvious mold. People around me started looking uncomfortable. Someone muttered \"wow\" and stepped out of the line.\n\nThe best part? I wasn't even offered a refund or a new burrito, or an apology for the moldy burrito. Are you kidding me?", "type": "review", "business_id": "oWb5JjxoPaFSmpGwJ3-Ntg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pUhzaeZmNU6KvcdvyDy2dw", "review_id": "1vy4zZEyu6rUM7fza5urgQ", "stars": 1, "date": "2011-10-25", "text": "I used to love Quiznos.... I would go out of my way to get a turkey bacon guacamole sandwich any day. At this point in my life I will no long be giving any money to this sorry excuse for a sandwich shop. The staff is rude and careless. I was given obviously bad guacamole... Which I didn't realize until i got home a took a bite of my sandwich to have the fowl taste in my mouth. It took 20 mins to get my sandwich, there was only one couple in front me. I'm done with this place. I should have went to paradise bakery across the street.", "type": "review", "business_id": "Uty42E_VZV_iGMYiY_WB5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s339yiWq3AnDbY-dRyqDVQ", "review_id": "EduYXl9qzGIHzn_ucCTXlA", "stars": 4, "date": "2010-05-31", "text": "I have been to the particular location many times. Except for the wait, we have always had a good experience. I just love that deep dish pizza. I am sure it is on slice away from stopping my heart, but not here for the health food.", "type": "review", "business_id": "i213sY5rhkfCO8cD-FPr1A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "63HOmdiJzMOw9figAu14QQ", "review_id": "QInmZS5p7jF85RwLTsWYYw", "stars": 5, "date": "2009-04-16", "text": "If you're willing to run out for lunch a little early, enjoy the lively patio atmosphere will dining on yummy vittles.\nA When-Harry-Met-Sally picky eater, I, um, grilled the waiter on seafood's sustainability and ingredient origin, and he was good-natured and knowledgeable.\nA perfect eatery for a casual date or girls' day out. \nYay!", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yJihBbisa05Yz6FUQtzE1w", "review_id": "ZMHfSBf4lLJCsGxQY8RYlQ", "stars": 4, "date": "2010-01-15", "text": "We went over for dinner- had the spring rolls, chicken curry, and lemongrass chicken. The spring rolls and lemongrass chicken were about a 3 star, but the chicken curry was really good and made up for the others. We also had the coconut water, which was fresh. Prices were reasonable we paid around $30.", "type": "review", "business_id": "3OauvrqUU8nDLWcW6q9hGQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "DfJ8B8T1fgNA6_ZT-aeUlQ", "review_id": "iWKdWQzxDRzonRWlwGz-Og", "stars": 4, "date": "2011-01-07", "text": "This place ROCKS! It's a little loud, but it's worth the visit. \nGranted, I cannot pronounce half of the things on the menu, but the Jalapeno Cilantro hummus is to-die-for delish. \nThe Greek salad is awesome, as are the gyros. \nI've never made it past the hummus, gyros and salad, but it is consistently great food and quick service. \nAlways busy, but isn't every good restaurant? \nGo! It's yummy! This location is my favorite, as I think the one at Desert Ridge has slightly different tasting food (on the negative side of different tasting, that is).", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "kxyuyoZFh3c5Ll66f0cxZw", "review_id": "9llQ6Fjv4w52xE3JakKdbg", "stars": 1, "date": "2012-10-26", "text": "MY EXPECTATIONS WERE EXCEEDED! I've been searching for so long to have a dinner experience that MET all of my expectations - for a restaurant that I SHOULD NEVER PATRONIZE. Mimi's in Goodyear actually exceeded my expectations. On Oct 26th, while visiting the area, I made the unfortunate mistake of recommending we dine at Mimi's because of previously good food and service there. But, alas, if the old Mimi's quality still existed, they wouldn't have exceeded my expectations for WHAT NOT to experience in a restaurant.\n\nLet me recant why YOU or ANY ONE ELSE (except those people you truly dislike) should never patronize this facility. First of all, the interior temperature was at least 80 degrees (when it was less than 65 outside). We had to ask for the air conditioning to be turned on.\n\nNext, we ordered the artichoke dip appetizer. It looked funny. It tasted funny. The tortilla chips actually resembled pita chips. If it walks like a duck, quacks like a duck, it must be a ______.\n\nI ordered the chicken cordon bleu which is supposed to be served with \"seasonal vegetables\" and \"homemade mashed potatoes\". Can someone explain to me how MIXED seasonal vegetables can be served where the brocolli is steaming hot, but the carrots mixed with them are literally still frozen in the middle? That's a feat. My \"homemade\" mashed potatoes? Cold. A sliver of butter placed on top of the mashed potatoes would not even melt to graphically show our waitress \"the problem\" . Even after this effort, no offer from the wait staff (or manager-missing-in-action) was ever made to either warm up the potatoes, replace them ......or, perhaps, use them as wall spackling.\n\nAfter all this, they sincerely asked us if \"everything was all right\" and \"would we care to order dessert\". At least they have a sense of humor.\n\nNever again.", "type": "review", "business_id": "fd0iSXEhwz-foQdS8SCKYA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "U5TnaAf__Bn1wbe44T4c_g", "review_id": "U5tVpgn_J3nRCEwyOshhRA", "stars": 4, "date": "2012-01-08", "text": "Clean establishment. Rows of freezers in the back. Hidden from the street. Greeted by name what must be one of the regulars. Carries both Modelo and Dos Equis. Slowly made food for being dead. The green enchilada sauce is a must. Green chile chimis are fantastic.\n\nFor the price, it was certainly filling and enjoyable. A place to come back to if you're craving decent Mexican in a sit-down environment but are too far away from a Blue Burrito Grille.", "type": "review", "business_id": "68euKezXqyvsE49cIGdL2A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "qRo9gHN5OiV1-peDuhCh-g", "review_id": "N23aEDYVXR7WDnqJXtXZgw", "stars": 4, "date": "2011-01-28", "text": "This place has the most AMAZING selection of cheeses. EVER. Boyfriend got me a tasting selection of about five different cheeses for my birthday last year and I was in heaven. Truly amazing variety and all were super yummy.", "type": "review", "business_id": "G_2CWsU7GYwhNqptrLXUBg"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "SBbftLzfYYKItOMFwOTIJg", "review_id": "WKBfPAhdN7GM7sC-FbJOVA", "stars": 5, "date": "2009-02-12", "text": "A philosophical elder of my profession commonly says \"Everyone needs three vices. Sex and chocolate don't count.\" \n\nIf I still lived in Phoenix, LoLo's Chicken and Waffles would definitely be one of my vices. The chicken is pure fried goodness. The mac n'cheese is creamy and crispy goodness. The waffles are BEYOND DELICIOUS. \n\nIf I could give any future LoLo's consumers a hint it would be this: if you are sensitive to too much sugar like I am, don't waste your precious pancreatic islets on the beverages. I succumbed to the peer-pressure and got an Arnold Palmer, which of course comes in a quart-sized Mason jar. I reached my sugar capacity before the meal even started. I can only imagine the explosion of flavor in my mouth I would have experienced had I not wasted all my buds on sweetened tea and lemonade.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "18buMk5M3IMnfwazFPka8A", "review_id": "vaHO1MNj18aarJYiVMBbTw", "stars": 5, "date": "2012-05-20", "text": "Yum! The toasted barley app is delicious. My boyfriend and I shared the eggplant sandwich and the monk burger. Both of the sandwiches were outstanding. The service was great too. We will definitely go back.", "type": "review", "business_id": "xOlzK02DWzETeZ8HbiEB0A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "a5q6s4Lm5LpXb7662LDccA", "review_id": "xA0NcSxyTFOs4WvuYdIZBQ", "stars": 4, "date": "2010-06-29", "text": "\"They outta chicken or day just dont had none.\"", "type": "review", "business_id": "JHUcIssf3crggsVxfQ8q8w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "0Jlviq1YD76N-WK_GUeDMw", "review_id": "OFatB40F-vEhDbIQaVRhow", "stars": 5, "date": "2012-12-10", "text": "I am giving this location 5 stars cause its been my stomping grounds for atleast 12 years now, its always very good, clean, and I have never had a bad experience here. Wendys locations are just class acts, they are always my go to burger fix. I also made this my daughters first burger when she wanted to finally try one so she could have a good experience for the first one and always have a tasty burger to judge the rest by for her life. If its good enough for my daughter, then its good enough for you :) eat up and review.", "type": "review", "business_id": "BRaQrgYVR17bd_zr-wNSlQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "Rg4gzsz3w00vRlIOXcGUIA", "review_id": "OhvAagILH8MRpZOjDeYEOw", "stars": 3, "date": "2009-04-11", "text": "Went back to Liberty Market the other day and bought the Molinari pizza. A friend had complained that the outer edge always burned while the middle stayed too soft and undercooked. I like the stuff that comes on these pies, so I figured I would give it a shot.\n\nShe was right. It wasn't unedible, but the middle part was pretty scary. I have no idea how they should fix this problem but this pie wasn't great even though I still love this place.\n\nOh yeah, Joe, you also need Sweet & Lo!", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OQPPH3MMG7paqfw1THYGsQ", "review_id": "XoBx5_7__zK_dWg08TbmVQ", "stars": 1, "date": "2010-07-26", "text": "The location has closed (AGAIN). Not good if you have prepaid washes or other credits as the business has closed. Some speculation on other sites is that they have filed for bankruptcy again.\n\nDon't bother stopping by to use their services as the facility is cordoned off and a big sign says \"business closed\".", "type": "review", "business_id": "NSkmg9I32-BccQsfXKHdAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xU7n0NjHdui0VQShuxEXJw", "review_id": "Ivz8DaqoQbXoom7cUxHTHA", "stars": 2, "date": "2009-08-23", "text": "Just OK for lots of money. Service was very good, food was nothing special. Butter was rock solid, not spreadable. I would look for another seafood restaurant before ever going back to this one.", "type": "review", "business_id": "OypZxwm-jS9QfUwgBmzeyw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "cT4vUqsgqLdGm695YUjYLQ", "stars": 5, "date": "2008-05-01", "text": "I think this is the best fast mexican food in Chandler or the surrounding area. The food quality is high and consistant. The prices are downright CHEAP. I really like the bean and cheese burritos and the chili relleno burritos. The jalapenos and carrots are a must and I am thrilled that they started selling Tamarindo.", "type": "review", "business_id": "Lx4ZFP6dIMzi7Ib-ljV-ww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "tfYiqaLU5swUfMO9JJp9Dg", "review_id": "RZR-7H08xrPVTusHSawFvw", "stars": 4, "date": "2009-11-23", "text": "Breakfast, Lunch or Dinner, love Wildflower. For breakfast the stuffed french toast is awesome, lunch any of their sandwiches are good. I don't really care for the salads but I love the Potato cream cheese soup. The ice tea is so good and the desserts are wonderful. My favorite thing is the Salmon Alfredo, that they serve with yummy garlic toast. \n\nI like the order at the front and they bring it to you, very convenient and I don't have to tip!", "type": "review", "business_id": "CV4DDFG6tII-ehzaWPXK4g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "YuatdmTpwSjym3GwUtSaPA", "stars": 3, "date": "2009-12-04", "text": "I can only give this place an OK because that's just what I have had from them so far- food that was ok, not slap your grandma good! The menu is kind of hard to understand but I know that I like chicken pho so I ordered that the first go-round and just wasn't wowed like I wanted to be. The noodles were good but the broth just wasnt to my liking. The second time I had pork noodles (dry) and it was better but still not GOOD. JD had the spicy noodle soup and that was good too, but , again, you guessed it-OK. I haven't given up on it yet because it is so close to my house and the people are so nice and friendly. Any suggestions on what to order won't be ignored.", "type": "review", "business_id": "3OauvrqUU8nDLWcW6q9hGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sul0rJDvTT9QTMGiuA52WA", "review_id": "SpsG9nQNrk1jO446zqdK-g", "stars": 5, "date": "2012-09-13", "text": "Best pasta I have ever had. Don't go there if you're looking for a two-pound chicken parm or endless breadticks.", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kSvFC3l_v1T6Q6S89IjqDw", "review_id": "R4OYHqwjWHQEg8VSHAeWuA", "stars": 5, "date": "2011-07-21", "text": "This is my new addiction! Took some friends and family here to celebrate my mom's birthday, it was her first time and she had a blast. \n\nOur first chef Poncho isn't at this location any more which we were disappointed about but ended up having another great chef named Sam. He was funny and the food was great! I tried grilled shrimp for the first time and I am a fan. \n\nOur waitress was awesome! On top of everything, funny and she told us Sam was the head chef and that it was an honor to have him cook our food and that she was so glad we got him, seeing that it was the first time for almost everyone in our group to try a place like this.\n\nWe have also had dinner on the patio when it was cooler out and enjoyed it too. I will be eating here often.\n\nThanks Hayashi for always making my dining experience fun and delicious", "type": "review", "business_id": "sI-2c9HZ0RjZX1OU-5DW0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fLjjtm4beQfqPxLfeuqboA", "review_id": "aHH5Bmfi0pWUhD7V5lMGbA", "stars": 5, "date": "2012-07-29", "text": "This is the only work of his that I have seen in person. After living in the valley since 2002, I FINALLY decided to head out that way. I found the information about the life and times of Frank Lloyd and his 3rd wife very interesting. The house was amazing and beautiful. I especially loved the local rocks cast into the concrete, and the lines that created a flow. I would highly recommend this tour to any one with an interest in form, function, and beauty.", "type": "review", "business_id": "rrd7NeAgARDNzPsxxsBJiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "oVWlHAwQBOqP0TuK6cifIg", "review_id": "IK9QPImSRZNqng0MonmvLw", "stars": 3, "date": "2012-03-10", "text": "Pleasant and beautiful. Feed the koi fish cheerios. Bathrooms are out of a catalog...I want that! Walk at a snail's pace, because it's not terribly large. When you're done, walk down to Pita Jungle or Lola Coffee!", "type": "review", "business_id": "HiTpXu1BNE2DlvjyqpObjw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "qaAmAU9T_t84UDGiBI98sw", "review_id": "Y40PS2JdUlbAIbsQ9NVeYw", "stars": 4, "date": "2010-11-13", "text": "If you can avoid the vintage smell you're golden. \nI walked in - smelled grandma's place with a hint of Goodwill and decided to get myself acclimated and walked about the store. They have quite the selection of vintage furniture, jewelry, and clothes. I fell in love with a few jackets but was all about trying some phosphates and getting my munch on. \n\nPlaying it safe I first ordered the cherry lime phosphate BUT holy carbonation they have a long list of flavors that all sounded if not yummy definitely interesting. \nThe food is so good - my chicken salad sandwich was fantastic and came with the best potato salad I've ever had (don't tell my mom). \nI was going to order the champagne phosphate but my pinup girl waitress steered me into getting the pineapple. It was so sweet and not very pineappley but still good. \n\nFor the lady who made a post about no french fries I just want to say, really??? It's nice to have other options and they keep it simple, unique and delicious. I can't wait to share this place with my friends and family.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "n5rmItEqGu5eGwm5yfgOHw", "stars": 3, "date": "2011-01-29", "text": "Typical chain \"southwestern/Tex Mex\" food in a corporatey atmosphere. They have some tasty dishes and a killer sunday brunch, but everything on the menu is kind of ambiguous.\n\nPrices here are about on par with most places of this type (I put it in the Applebee's, TGI Friday's, Charleston's, etc.) category. \n\nI enjoyed my visit to this location better than my visits to the PV and Tempe locations.", "type": "review", "business_id": "z1Np8_oQECKWGCwJJ8864w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "LjqRoxm1-OwhkGxo3aYmTQ", "review_id": "-Ix31W3vK3y9aRMFt60R3w", "stars": 2, "date": "2008-07-17", "text": "My name is Christi and I'm a carb addict. Bread with my pasta. My lover's pizza crust (classy, oui?). Hashbrowns with my French toast. \n\nI've tried to quit, but I can't. And, I've also resigned myself to the life-is-too-short theory, so what the hay, bring on the starch.\n\nI did almost get a salad at Bar Louie's because it was a pretty late dinner and I wanted to save room in my belly for dirty martinis. But, they have an appetizer that I couldn't live without trying - Warm Pretzel sticks. 4 huge soft, warm pretzels covered in salt, served with cheese sauces and honey mustard dip. Simple, yet during my carb withdrawl that night, it was the greatest tasting thing I had ever eaten. \n\nI can vouch for the pretzels, but other than that, the service blew chunks. Over 15 minutes to get shots of jager when we were the only table in our server's section. When people order jager, that means they're on a mission, so give it to them...fast! \n\nWe canceled our drinks and left to drink wine in our hotel room. We knew we'd get drinks faster there. \n\nIf you're gonna go, go for the pretzels, not for the jager.", "type": "review", "business_id": "5Wej_VIpvaXhRTXrdpPQ6w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "TBP7qPt0cPjtSh_k7OTMQw", "review_id": "e7Qz1hkaMUKgIZwRlj0gtg", "stars": 4, "date": "2009-04-16", "text": "pros\n\ngood pizza\nfancy , expensive but not outrageously expensive\nclean interior\noutside setting with heating lamps to add to setting. \ngood drinks (got a green tea, the name of the tea, called \"Infusion\", lives up to it's name!!!)\nthe design of the outside, and inside, makes the place a 5/5 for the interior. the food is great! me and a friend shared pizza (toppings were meaty sausage and cheese). the bill didn't come out to a large amount. the wait was a tad excessive. there's a bar. friendly service.\n\n\ncons:\nnone for me, been here only once and will never be here again because we were tourists", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ASDRgz4AAaJY9IvTrIJNsg", "review_id": "vsXj6dELMZYb3Z_0kMN-Xw", "stars": 1, "date": "2010-12-15", "text": "First off the woman who answers the phone is not impressive at all. I called to consign my furniture and when I asked her about some info on the store,, she said \" do you want to consign your table or not!\". Quite rude. That was a turn of for me.....\nThe next day I went in the store for some info but when I entered I knew this wasn't the right fit for my Robb & Stucky table. The place had older style furniture..dated couches, florals, mauves. There was one accessory that I would buy in the whole store. \n\nNeedless to say, I won't be coming back or consigning my table or anything else...rude stuff + gross stuff...what more can I say!", "type": "review", "business_id": "16SBP4NJhr7PTOW-WnRL5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "SEDFpR4oMPKqXMjbJiMGog", "review_id": "mZWmmsB49IAIi0i6Kf9B6g", "stars": 3, "date": "2012-07-25", "text": "Inexpensive for the early bird special. $5.55 for the combination plates that include egg roll, soup, rice, and your selection. If the food only had more seasoning or flavor? It was very bland and flavorless. I usually do not use soy sauce, but needed to use it to add something to my dish. \n\nNeat features: Koi pond inside with a bridge over it.", "type": "review", "business_id": "Wg_mT_9_tLbsLfzTtnOBqA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "V6rhoTCw7S6H8eHwv2M6Vg", "review_id": "8YMNavgYg6aTEzkmtvxdkg", "stars": 5, "date": "2011-01-26", "text": "I love Gabriel. He does an amazing job every single time I'm there. I generally get two peekaboo highlights put in, and a cut and style, and always leaving looking great. His attitude is always upbeat, it would be impossible to spend any time in his chair and not leave in a good mood. The salon is always clean and comfortable. I never feel like I'm being forced into spending more money or buying product, but when I have a question about what I should be using in my hair Gabe always makes excellent suggestions. I have recommended him a good friend and my mother and both love him. My mother even left her stylist of 10 years to start going to him because of the excellent service he provides.", "type": "review", "business_id": "TTjdeeMfTw9s9vg4T1a3pw"} +{"votes": {"funny": 3, "useful": 12, "cool": 6}, "user_id": "HaDEZSNSTNFmq6laVB6ZMQ", "review_id": "xp6Pfn9xSeM-NiDfAhI1pg", "stars": 2, "date": "2009-05-30", "text": "Trust me... no one wants this place to do well more than me. However, after 4 visits I have to confess that it is a solid 2-stars. I'm confident in my comments... and maybe a little heartbroken.\n\n1. Loved Chef Wade Moises when he was at SASSI in Scottsdale. I'm a fan for god's sake.\n\n2. I'm a big pasta-crazed fool. Seriously love it. \n\n3. Love dwntwn Phx.\n\nSo what could go wrong? \n\nService: \nNo one to greet you properly at the door. The space is awkward enough as it is. Staff was always inattentive and often seen hanging out at the bar. When asked why cocktails the \"signature cocktails\" took so long to prepare, the server responds clumsily \"Because I had to read and learn how to make them just now.\" Yikes.\n\nBack to the greeting... We waited about 2 minutes in the doorway listening to staff sitting at the bar chat about how they hoped they could close early that night. It was only 4:30 pm.\n\nVibe:\nThe space feels cold and almost clinical. With the lack of fabric in the space, it feels like I'm the ER of a hospital (minus the curtains that surround each patient bed.) The staff certainly doesn't add warmth. Also reminds me of a corporate staff break room. Art on the walls is just bizarre (read other's comments.)\n\nThe Cocktails:\nThey look good on paper. See my comment above about Service. That's all I can really say. \n\nThe Food:\nEach time, the Fritto Misto app ($9) was salty and sad to look at. Orecchiette with Sausage ($15) looks fantastic on paper, but never quite right. \n\nIn fact, I've tried every pasta dish on the menu. I'm simply heartbroken. I crave handmade fresh pasta, but the pasta here just leaves me guessing... I'm I the odd ball out? Why do all these Yelpers love the pasta? It's wimpy and the proteins almost taste boiled (texture and flavor.) Approx quote from a guest, \"gummy handmade pasta that looks like bloated playdoh in water.\" The sauces seem near amateur as if they were never tasted before serving. Usually on the salty side.\n\nForget about portions, price, space, ambiance, whatever. The important question... DOES IT TASTE GOOD? \n\nSadly, no.\n\nAt each visit, I brought other notable chefs from the Valley. In one instance, the five of us ordered an entire dinner, ate a few bites of each dish, asked for the bill and decided to head next door to Sens for dinner (which is another review in the making.)\n\nI'll wait till sometime in the fall season before heading back to Pasta Bar. Maybe it needs more time (although it's been open for a few months already.) \n\nAs always, I'd encourage you to try it out and make your own decision. Wade is a talented chef who can do amazing things in the kitchen. I have faith in you my friend!\n\nSide note... for those of you who fixate on butter and bread service at restaurants, do us all a favor and stick to your cheap filler salad bars. Bread and butter service is simply never worth commenting on as a crucial component of a meal unless it's stellar. (BTW... I realize the irony of making commentary on the worthless comments)", "type": "review", "business_id": "r3r_bAfa6pZKIhQB82FizQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "P_LzcrlVXFdgBq_24UnlUw", "review_id": "9OwfnHMWuznxk9pckE6cDQ", "stars": 2, "date": "2011-01-29", "text": "Ok... I'm a Die Hard Jimmy Buffett Fan - a Parrot Head through and through!\n\nBut... This place sucked. I've been to half a dozen different Margaritaville Restaurants and I knew what to expect, but this one by far failed to meet my minimal expectations.\n\nThe service is slooooow, food is canned and poor quality, drinks are weak and expensive. The only upshot was all of the Jimmy Buffett paraphernalia and music, and I've already got a lot of that stuff.\n\nThe next time I'm itching to get my island groove on, I'll do it right. We'll grill chicken and burgers in the back yard, put the booze in the blender, light the Tiki torches, invite 20 or 30 people over and jam to Jimmy. More fun to set sail to St. Somewhere in your own back yard than it is to have to endure the Glendale Margaritaville.\n\nFINS UP!", "type": "review", "business_id": "YeDYa6tYL16CyqYvUVOtLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "Q78i-PR6G2Nve0lfJ3YnGg", "review_id": "rzoYyjTXT5ga6RsgzhLa9w", "stars": 5, "date": "2012-06-20", "text": "If you want a good meal that will fill ya up, for a fair price...Wally's is a great choice!\n\nThe menu has great variety. If you want a burger, there are many to choose from. Each is huge and juicy, and comes with your choice of a side....go with the blended fries that include deliciious sweet potato fries.\n\nWant a salad? Again, many to choose from...my favorite is the chinese chicken. And, in case you missed my earlier comments, expect a BIG salad.\n\nAnd, if you're not watching your calories, then try any of their specialty mac'n'cheese dishes. WOW!\n\nI can't comment on the desserts because I can't eat anything beyond the entrees...but, I've seen others order a dessert; they looked yummy and - you guessed it - HUGE!\n\nAnd, here's the thing about Wally's: they're \"good people\". in addition to providing you with a great meal, Wally's staff are active supporters of non-profit organizations in the greater Phoenix area. I have first-hand knowledge of their support for the Valley of the Sun Unted Way, and the Boys and Girls Clubs of Greater Scottsdale. I have no doubt they support other causes.", "type": "review", "business_id": "6TuM3UyFP9O9uzTP0dVZMw"} +{"votes": {"funny": 20, "useful": 15, "cool": 15}, "user_id": "emNXAAschSlcvqmDZFj5TA", "review_id": "OA_eRg3yvFdCv2UQV2MHoA", "stars": 5, "date": "2009-10-28", "text": "Drinking coffee from Cartel makes me want to get my own San Franciscan SF-25B Coffee Roaster, in much the same way I wanted my own pottery wheel after seeing the movie Ghost.\n\nIt's. That. Good.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pNNo7mVPI8j3HFCw9tuzPA", "review_id": "7xEKnQPNDz7-EwMTXsqjZg", "stars": 3, "date": "2011-06-19", "text": "Super fast service of OK-tasting subs. I've definitely had better, so the signs hanging all over the place that claim that they're \"gourmet\" is definitely a bit of marketing puffery. Yes, it's gourmet compared to....actually, I think Subway makes a better sub, so I can't really compare it to being more gourmet than anything really. Maybe it's gourmet because they put a ton of sprouts (and lettuce) in the sub? \n\nI will give the place props for the very speedy service. I ordered my sub and it was handed to me within 1 minute. Another thing I noticed about the place was that it was filled with male patrons. If you're a single lady looking for a manly man, come to Jimmy John's.", "type": "review", "business_id": "le1IsRLrTq2Xo78RyFpsnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q_depZqSFOtI0kT3F6Ihbw", "review_id": "UqQajW_qq-42RUm376XdXA", "stars": 3, "date": "2011-03-25", "text": "Good Chinese food, great value -- especially for lunch. China Village is one of my regular haunts for Chinese food when I'm in the neighborhood. The building may look run-down, but the food and service are good.", "type": "review", "business_id": "3DMvGD8ZmlMQmhwV66hdSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gJEJg1fPVDPnkdcVFbVlBQ", "review_id": "L9vNexAqXeDn9VKBQ_2-NQ", "stars": 5, "date": "2011-04-30", "text": "At length: A trip to Kauai for our friends' wedding several years back led us to Puka Dog and the discovery of another type of holy matrimony: the perfect union of frankfurters and tropical fruit. Our friends are still together eight years later, but how my hot dogs have longed for the companionship of a little pineapple and banana relish.\n\nDisconsolate from my long lost love, I have abstained from the hot dog community (except for Ted's, because it's amazing and what happens in Tempe, stays in Tempe) until a new beau arrived: Maui Dog.\n\nIn short (ish): Yummy, yummy, yummy, I've got Maui Dog in my tummy. I tried the Sweet & Spicy Dog (favorite!!!) and the Lava Dog (messy!!!) and the house made fries. Everything was delish, and I'll be back to try the rest. The restaurant is a cute, clean, pseudo-dive (kind of a Two Hippies vibe) with a few tables inside and a dog-friendly patio (tee-hee). It's funky and it's affordable. Go ahead, try it. You just might fall in love.", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qw-XefCQKAyQkbAxbmD6aQ", "review_id": "r8r4aZHyTtPk5Ntad7FDaA", "stars": 5, "date": "2012-02-28", "text": "The service here was wonderful, really friendly and personable. And the food was OUTSTANDING! That Brulee burger was perfection, paired with some fries and a marshmallow shake. I wanted to stay in town another day, just to come back here to eat!", "type": "review", "business_id": "pAHUC05ceak48e745i6G4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Gylxh4yUIsUbOeXyrqeHQ", "review_id": "Rluzf-g97XfB_xdTeN63cw", "stars": 5, "date": "2012-12-01", "text": "Best sushi in town.", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "2hXL2ExBsgjJNpm6BJy0lg", "review_id": "ov3wOSA40p8l7jlS_sZqJg", "stars": 4, "date": "2012-06-16", "text": "I have visited Windsor twice now and I would describe it as fun, trendy, and a little hipster. The drinks are great, good combinations with fresh, unexpected ingredients. I love the 80's soundtrack, my only complaint is that it was a bit too loud at night, so you had to scream to talk. The food is very good, kind of a modern take on comfort food. The brown bag chicken sandwich had a lot of flavor and the mac and cheese is done really well, just the amount of flavor and creaminess. The crab cake BLT was very good as well, the cakes were mostly crab, very fresh tasting.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "U5JyHRVayfHRHipogAq84A", "review_id": "Tp5BCuA3xyONjY0VMho7YA", "stars": 4, "date": "2012-06-06", "text": "Oh lawd!!!\n\nSo, I'm a relative nevercomer to this cuisine. Like most people, I hear 'Szechuan' and I think 'just spicy Panda Express food'. Meh. I couldn't have been more wrong.\n\nI was in Atlanta with a friend, and he took me to a place that specialized in Szechuan cuisine. I had my first experience with Szechuan peppercorns there, and I was hooked. All I can say is, if you haven't already tried authentic Szechuan cuisine, then you owe it to yourself to give this place a shot. And if you HAVE, then you already know what I'm tombout and you probably already eat here all the time any damned ways. \n\nEnough other reviews have touted the wonders of that amazing spice, the Szechuan peppercorn, so I'll let their words be the guiding lights of wisdom for that. What I'm gonna tell you is- I travel all over this great nation of ours, and this place delivers the goods, in the way that I want them. The food is inexpensive, it's reliable tasty, and it's exactly what it's supposed to be. Other people have complained about the service, and to that, all I can say is: \"get over it\". It is what it is, and I haven't had any problems here. Their food is exactly what it should be, it tastes exactly like it's supposed to, and I love it.\n\nStill keeping an eye out for one of these Asian girl + white guy couples, though...", "type": "review", "business_id": "rOHs19lhPWXiuPMHzNbJZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "t_jYLnGYRO0zxqScljX8Rg", "review_id": "LvD6deYIQ_Nl8kzSMIKAAw", "stars": 1, "date": "2012-10-09", "text": "I have only been going to LA Fitness for about 6 months. I live in Scottsdale and work in Phoenix, so I go to the 20th St & Camelback, Scottsdale and Oak and McCormick Ranch locations. The Scottsdale locations are GREAT! They are clean, the staff is really nice and I see people cleaning the equipment when they are done. What is it with the Camelback crowd? The place really smells bad! It really needs a good cleaning. There has been this big spot on the carpet in front of the womens locker room since I started. I was on the treadmill the other day really noticing how stinky it was and then the guy next to me finished up and just walked off, I swear he was sweating like a pig, left the equipment drenched! UGH!!! Good God! I couldn't believe it, Can't the employees make these people clean after themselves?? The reviews are right about the staff just hanging around at the front desk.....they should be cleaning something, anything. It really is a shame that this centrally located facility is a real stinky mess!! I can't wait for the new one to open on 7th Avenue! Maybe then they may clean up their act.", "type": "review", "business_id": "yRga-WpyfZRz8Es4OpyMhA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bqOdnzSn0Dj7-a_SlLc8HQ", "review_id": "kFBwGlC1CM6jtX2V_-Wxmg", "stars": 2, "date": "2012-02-07", "text": "Unfortunately this UPS location is less than friendly or helpful. Try the location near Fry's in Fountain Hills. They are very friendly and helpful!!", "type": "review", "business_id": "plPRO44rGZHQWyOzgH-5ig"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "Qbjjv9H_JQ-9IgjvXaRLPQ", "review_id": "vFQuay8eMRYhcrLCmTq8_A", "stars": 3, "date": "2012-07-28", "text": "I will start with our experience from the time we walked in. The customers sitting in the restaurant stared and some laughed. I guess we missed the whites only sign on the front door. However my husband and I love to try new things and don't care what people think. The hostess however was nice and pleasant. Our waiter was also great. The food here was delicious for an appetizer we had the stuffed mushrooms which were to die for. Our main entrees were the German meatloaf and my husband ordered the tenderloin. My whipped potatoes were so delicious. The cabbage was awesome not to sweet not to salty and the meatloaf was refreshing. My husband enjoyed his tenderloin and fries as well. It was seasoned perfectly.\n\nThe skinny is if you don't mind being treated like the 13th amendment was never signed by the patrons of Haus Murphy's and want some Excellent German food this is the place to go. The staff here were great though.", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Y8qbeE1E6chGtorUpQGZ3Q", "review_id": "CCLNquEEZBypPb5lPZUD6A", "stars": 3, "date": "2011-05-18", "text": "tip: if ordering in the drive thru - either there is no speaker system or it's out of order - when the person wearing an apron walks up to the side of the menu and stares into your car that means \"Hi, can I take your order\" There was a few seconds of awkward silence and wondering WTH this person was looking in the car for before we figured out she was there to take our order :)\n\nSince moving to the west valley from southern CA we've been itchin' to find a replacement for Alberto's or Taco San Pedro. Humberto's reminds me of awesome hole in the wall type Mexican food, but unfortunately still leaves something to be desired.\n\nWith that said here's info on what we had:\nIf you're from So Cal and have had Northgate's shrimp ceviche Humberto's comes awfully close. Verdict - Ceviche - good.\nCheese quesadilla - cheesy - did the job\nNachos - good\n\nIf you've been out late partying it up and need to satisfy the munchies monster Humberto's should do.", "type": "review", "business_id": "Zpl8mUrhJJizHHOhbP4bxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tCobUVoJSBdFrb3041vklg", "review_id": "tLgLjWNiMctzj0ezxKEE_Q", "stars": 1, "date": "2012-10-07", "text": "Ok I'm very surprised by the reviews on here. I'm not one to want to write negative reviews but our food was so bad I couldnt help myself. Maybe this place was having an off night tonight but their pizza barely had any cheese on it and the crust was soggy. Unfortunately the pizza was better than the wings that were overly breaded and soggy as well. Thank God we had a groupon and didn't have to pay full price. Won't be ordering from here again. Disappointing :(", "type": "review", "business_id": "l6EcX0blOzMqHWSdTHXLLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zLIV35n1gZ4fg6cGSRqNIA", "review_id": "8ZxOXO0p5xT378RnAmV6nw", "stars": 4, "date": "2007-03-05", "text": "Really great happy hour. The wines by the glass are $5 and are a much better value than the tapas they have on special (also for $5). The tapa plates are tiny, hence the 4 stars only. \n\nMust have: eggplant canelloni, manchego cheese, pancetta dates, Foie gras (just because I LOVE foie gras)\nSkip: Lobster corn dogs -- while this was interesting, you couldn't taste the little crumb of lobster inside. \nSo-so: yucca frites, French fromage\n\nAll in all, a lovely way to spend an early Sunday evening.", "type": "review", "business_id": "YI96mMSf2GxXq7aFHLHx3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oG7z4APa-gjggR5Sv1ivCw", "review_id": "fZXhCxuyzY8mUpgkeg96Aw", "stars": 4, "date": "2009-11-09", "text": "The other day, had a lunch from there. \n\nNo, didn't eat at the restraint, but we picked up a very sizable lunch for a family reunion. The lady that helped us was very gracious, and accommodating. I know, how can someone helping with take out be accommodating, because, my sister, being the wild and crazy type (and to accommodate her husband) ordered 12 Pasteles uncooked, just as raw as can be. Why, so he could freeze some for Thanksgiving. That's the Puerto Rican in him. A holiday is better when it reminds you of childhood. \n\nThe food was excellent, the Ropa Viejo nice and tender. The Paradise Pork (I think that's what it was) was also very good. And didn't taste like a pig. (The only good part of a pig for me is the other food group: BACON!) \n\nAnd we all discovered deep fried plantains, excellante'. \n\nDessert was rich, sensual, wonderful and sexy!", "type": "review", "business_id": "8v1MWkAeU3nEuqGd27jZeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oijTMVRAYB6DrSkhLlaHjA", "review_id": "R0Q7dMneHy0g50N_QtIkXw", "stars": 4, "date": "2012-03-18", "text": "I've been coming to this place semi-regularly since they opened, and I love the drinks and service. You always get a friendly welcome and the staff is eager to explain the menu.\n\nI'm a chocolate-lover so I usually order a Frozen Hot Koko with almond flavoring...SOO GOOD!!!\n\nThe only thing keeping it from 5 stars are the prices. Like most places, prices are set so that the large is the best value, but a pair of larges for me and the gf runs about $20, so we only go a few times a year. Still they have a few ways to save- a loyalty card program and loyalty tiki cups.", "type": "review", "business_id": "9cmq0_NV08ejfNsSgr2c-Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "d52dRQsUK2daiOtdlw-wLw", "review_id": "YV3ia99QsZceEIOm3ezEYQ", "stars": 2, "date": "2012-02-29", "text": "Food was marginal....Sunday brunch. Prices were stupid. And I felt like I was in a New Orleans' night club...on Sunday morning. Ick", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "I-sHax6SY-Pqc7xfbHnUyw", "review_id": "Un80qMN0QR8dNopmZEUgog", "stars": 5, "date": "2011-08-11", "text": "Be sure to see Taylor, her service is great, the food is awesome, had roast beef sandwich ...and a plank of bruschetta! But without good service the experience lacks. Be sure to try it out.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "PnEAXZ7WyJMYBr9IIulh5Q", "review_id": "OJuPyrI8oji5YxlszG7nLA", "stars": 5, "date": "2011-02-17", "text": "I am a huge \"foodie\", from a long line of \"foodies\". I grew up living in hotels and on room service and fine dining. This is the best, very best, breakfast restaurant EVER! I have been living in Tempe for about six years now, the first two sad sad years I did not know that this wonderful place existed...after my first visit, this is my go-to, best place to recommend, favorite breakfast place to eat at! If you go on a Sunday, it will be very very busy. Everyone is super friendly. The place is very clean. Prices are amazing! Cheaper or as cheap as the nasty breakfast places or fast food. Huge portions and great quality food. I have never had a bad experience here, and to be honest...even if I did, I wouldn't care. I feel like home here. Everything on the menu is delicious! I've tried almost everything. Here are a few of my favorites (don't forget though, I love it all) :\nO'Pear Grenache Omelette, Greek Fetash Omelette, English Harvest Omelette, Huevos Con Chorizo (with scrambled eggs), and the Blueberry Hill Girdle Cakes (pancakes! you can order half an order or little ones...we always get an order to share at the table). Their potatoes are delicious and crispy, the english muffins are great and their homemade jam is absolutely amazing! I have bought many jars of their jam to give as gifts! Just delicious! I wish everyone knew about this well kept secret. DON'T LISTEN TO ANY REVIEW UNDER A 5 STAR! This place is the best, bottom line. Try it. You will be hooked.", "type": "review", "business_id": "nvaAUTTl7oqiJDhuimNG6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CEEIQq93JO8aSRx25wir9g", "review_id": "3YMd477-JkPvQ_95D7d3lw", "stars": 4, "date": "2012-08-20", "text": "We were craving some BBQ, and hadn't been here in a while, so we decided to head over. It wasn't overly crowded on a Sunday night, but it wasn't empty, either. Hubby and I ordered the same thing, 2 meat combo (brisket and baby back ribs) with double grilled veggies--extra grilled. For some reason, we both got the same thing, sometimes that happens. \n\nFirst, we got our cornbread, which is always so delicious. They serve it with butter, but you don't really need it. Our meals came quickly (we didn't order appetizers), so we dug right in. The brisket, as usual, melted in my mouth. It's probably one of the best places I've ever been for brisket, and that's saying something. I always order it wherever we go. Also, my husband is NOT a brisket eater, but he will order it here. Now for the ribs, I need to let you know, I'm a sweet & savory BBQ fan, definitely not spicy. I've had the ribs before, and they were always sweet and tender, plus they literally fall off the bone. These were like they usually are, fall off the bone and tender. But, there seemed to be a spicier rub on them, which was a little off-putting to me. Even my husband mentioned it, and he doesn't mind a little heat. Neither one of us remember them tasting that way. I dipped them in the sweet BBQ sauce, and that seemed to cool the spice a bit, and I did eat them all, but I'm not sure I'd get them again. And, lastly, the grilled veggies, which consist of green peppers, zucchini, squash, onion and mushrooms--wonderful!! I love the charred grill taste, and I gently dip them in the sauce. I really adore them!\n\nWe rarely get dessert, because we're so full. We have taken some cobbler home before, but it's never quite the same as having it fresh from the kitchen. Plus, they bring you each a fresh mini sugary doughnut with your bill. These are the perfect finish to a very good BBQ meal. They bring them to you in a bag, but to be honest, they've never made it out the door.\n\nThe only reason I'm giving this restaurant and meal 4 stars instead of 5, is because of the rub on the ribs. Other than that, it was a perfect meal.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kNoJOBs6yFuEE-HFkSLcww", "review_id": "7jNcO2ybXz2rZkHbQMKqmw", "stars": 3, "date": "2010-12-30", "text": "It's an upscale casual restaurant with nice decor- 4 star, a quick meal before or after shopping. A quick meal means only if you get good sever plus quick service.\n\nWe went to have brunch on Sunday and it was pretty packed in there. After looked at their simple brunch menu, we decided to get Grilled Hanger Steak with Scrambled Eggs, and Cinnamon French Toast with Fruit Compote & Syrup($8.50). \n\nIt wasn't too impressive, the food was just ok- 3 Star. I think you pay more for the ambiance than the dishes. The service was alright- 3 Star.\n\nIt felt like you are in the market with chit chat and bargain noise, which i thought it was kinda annoying.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "VxUqqs1r9fwaI_ga2-aulg", "review_id": "n4ewVmhgYpgb1WjDxPP0_w", "stars": 2, "date": "2012-10-03", "text": "A group of four of us went last night for the first time. I had purchased a Groupon, and was excited to check out a new winery. The service when we arrived was dismal. It took a tour leader from another group to flag someone's attention. We had reservations yet they acted surprised to see us. Given all this, if the wine had been great, we could have forgiven the service...it was not great. I don't expect the wine to be of Napa or Sonoma quality, but at least make up for it with your service.\n\nDisappointing, and I'll stick to other local wine bars moving forward. I honestly can't believe this place has an average of 4 stars...", "type": "review", "business_id": "-UnYs8XvV1M983xZoREdng"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "UTt78HkUgvATBJxhXIPZJw", "review_id": "s4NJKuyGmkRDs12W4vu5JQ", "stars": 5, "date": "2009-07-03", "text": "It is sometimes difficult to start out busy and maintain great standards from the beginning. The Parlor seems to be nailing it. Hip yet comfortable decor. Very creative design, and I loved he subtle yet present homage to the former tenant Salon de Venus. As soon as we walked in we were greeted with a warm and sincere smile, and that same enthusiasm was felt by every single staff member we encountered. \nAh the food! Fresh ingredients, a great light pizza crust, and an original beet salad all had us raving. The only minor picky foody issue was the Nectarine Crustada for dessert was luke warm at best, would have liked a nice hot dish to melt that delicious ice cream. \n\nBut why nit pic? This place is a big hit, from the moment you walk past the fresh herb and vegetable garden, to the fantastic staff and the savory food, this place is already on my regular rotation.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_UhFmYeZOzi2GTFkSUuo8A", "review_id": "1v4JIRAAGKa1bGFrbswn8g", "stars": 5, "date": "2011-11-21", "text": "We were staying at the Claredon and the desk clerk (who is also from Yuma) told us that their restaurant was voted best Mex in Phoenix and she swore it was true so we had to try it.\n\nThe elote (roasted corn with cheese and smokey paprika) was fab, as was the ceviche! The carne asasda taco was tasty, as so many have already said. The real stars, however, were the pork belly and vegie tacos. I'll be dreaming about those til our next trip north.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "XYXA68TWwyHle2Y43zkD1g", "review_id": "BC0G2sewKVi0ZYWly6O82g", "stars": 5, "date": "2010-03-21", "text": "Everytime I think of Chodang my mouth waters. I love the spicy tofu soup they serve here along with their korean style dumplings. Their portions are just right. If you don't like spicy foods you can tell them to not make it spicy. I also love the condiments they serve before the meal. Love it!\n\nI like their decor. The tables and walls really go together and you definitely feel like you're at an asian restaurant. Everything is neat and clean (even the bathrooms).", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gDl4dMYPpuuIaNAW_Bh3qQ", "review_id": "PXiin-FrcnQ3MhAQRHsTZQ", "stars": 4, "date": "2012-03-13", "text": "We had a restaurant.com coupon. They also have happy hour specials on appetizers. You cannot combine specials with the coupon.\n\nWe started with edamame and mussels. I have never had mussels before, just oysters and clams. The mussels were eff'in awesome. They were not super chewy and the way they were seasoned and served, spicy and bold, was seriously amazing.\n\nThree of us polished off three different rolls. Spicy tuna crunch roll, over the top. What the heck roll, another spicy roll that was seriously good as H\u20acLL! Screaming roll, spicy tempura style shrimp roll with a delicious crunch. Spicy is the way to go with sushi rolls.\n\nFor dessert we went with mochi ice cream, served in four flavors: vanilla, strawberry, green tea and mango. The green tea and mango were my favorites.\n\nSuch a good dinner, now if only they served alcohol.", "type": "review", "business_id": "zsWJEyP8YyJkux0muGtiVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M3a0CsA85GvH8W5wwIptPg", "review_id": "kf6FDes-WsH94rEIrSmgAQ", "stars": 5, "date": "2012-01-23", "text": "I love this place! I've been here twice now and walked out with great finds both times. They have a large variety of clothes - work-appropriate & fun cocktail dresses, fabulous shoes, jewelry, casual skirts and shirts, and more. The employees are very friendly and helpful. \n\nAnother reviewer mentioned $700 boots, but I haven't seen a single item priced over $100. I actually got gifts for my cousins, 2 hair and jewelry items apiece, for under $20 per person (and in the same visit found a dress for less than $40 that got me half a dozen compliments at a holiday party that night!)", "type": "review", "business_id": "zhS1u1XtJV69nosLL6H7hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sCRy3cQgHEJQiCQJrvKkRg", "review_id": "UrANiXCSUMVLQ9CVzPdyYg", "stars": 5, "date": "2008-11-22", "text": "After weeks of anticipation, Side Bar has finally opened. As you ascend the staircase to the second level, the reason for the long wait becomes apparent. The attention to detail is amazing. Once layered with crumbling plaster, the walls were meticulously stripped to reveal the historic brickwork. Other historic elements include the original steel casement windows that feature a view of downtown phoenix and the surrounding area. Tastefully integrated with these elements is a contemporary interior design. The lighting consists of warm colors that set the stage for the laid back atmosphere. No expense was spared when designing the bar and tables, which are made of dark exotic woods. Seating included organically shaped bar stools that adjust to a comfortable height and depth. There are also several u-shaped sofas that create conversational areas. Behind the bar you'll see an array of artistically arranged circular openings backlit in a warm, yellow tone. Thick glass shelving lines the back wall along with a fine assortment of liquors. The \"soft opening\" menu included wines and locally brewed beers among others. I tried a White Russian and my wife had a glass of Chardonnay. Both were very good. Prices seemed to be close to average for the area and when compared to the experience, were a good value. I had a chance to speak to one of the owners who was glowing with excitement. After two years of remodeling and working with the city and adjacent historic neighborhood, his vision has become reality. In addition to a brief history of his endeavor, the owner informed me that additional overflow parking will be available adjacent to the main parking lot. Parking was one concern originally voiced by the neighborhood and city. The owners may also experiment with weekly art showings by local artists. Maybe they can arrange for it to coincide with First Fridays. Within walking distance of Side Bar, dining includes Pei Wei, My Florist, and Zoe's Kitchen. \nIf you're looking for a unique hangout in an urban setting, then Side Bar comes highly recommended.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "6NOgM7NLos60OkWOmi6G-A", "review_id": "Pz6Eh5npDhSTeuX4uZqtQQ", "stars": 5, "date": "2012-01-01", "text": "Went to Cracker Barrel twice while vacationing at our home in Litchfield Park. All the food we ordered were very good and the service was good also. I highly recommend their pancakes.", "type": "review", "business_id": "NuFs1Sh5wUa7ZLISMtCMRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7o7MF9B9lxcWupE8jiLOaQ", "review_id": "breTkAJpsdmO2YXCantl6A", "stars": 4, "date": "2012-06-03", "text": "One of my favorite parks that I've been to! There are two areas, small and big. I have a small dog so I go into the little dog park. The running room in this area is much more limited than the big dog area, but that's ok - it seems to be enough room for the little ones. There is a water faucet to fill up water bowls and allow your dogs to cool off.\n\nOne of my favorite features are the trees! It's a mature park and the trees are gorgeous. They provide lots of shade and make for a relaxing soundtrack. \n\nThis is one of the furthest parks from my house, but I always make the trek out there just to come here.", "type": "review", "business_id": "eGj1NnvbIUVWgDYQWEOwQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Esi0LF6paDqj7W0LcDX4AA", "review_id": "D-Usa-jdowXyQFp0hkk2_g", "stars": 5, "date": "2012-08-31", "text": "Grassroots is right around the corner and we drive by it every week on our usual Friday-Dinner-Out. I always assumed it was more of a pub than a restaurant. My wife and I arrived around 5:00pm and were seated immediately. The waiter was super attentive and knew the menu and preparation of everything I asked about. \n\nWe started with an AMAZING appetizer special of burrata* with ciabatta tips, their house spicy tomato jam and arugula with champagne vinaigrette. It was described as a sort of an experimental combination of preparations from other dishes. The burrata was silky smooth and spreads onto the ciabatta like softened cream cheese. The play of flavors in this dish was excellent, we'd go back here just for this dish alone.\n\nMy wife ordered the lobster bisque as her entree, which was smooth and creamy with a good lobster flavor. I suspect we could have asked for bread on the side, but it didn't come with it by default.\n\nI ordered the short ribs with roasted asparagus and jalapeno cheddar grits. The ribs were cooked just right, just a little pink and tender with a concentrated glaze of delicious sauce layered on top. The sauce had a light smoky flavor with a fair amount of saltiness, and appeared to be a long simmered reduction with bold flavor. As others have mentioned, the jalapeno grits are very good, not spicy by any means but a little crunch from the jalapeno pieces, creamy and well prepared. I strongly recommend the short ribs to anyone.\n\nWe splurged with dessert of key lime pie and a banana split. The split included three large scoops of (what appeared to be) homemade ice cream and topped with caramelized pecans. The key lime was tart and delicious.\n\nThe portion sizes were perfect and considering the careful preparation and unique flavors the price was appropriate. It's a little more expensive that I would like to put Grassroots into our weekly rotation, but I look forward to visiting it again and sample more items off the menu when the budget allows.\n\n* I didn't know what burrata was: http://en.wikipedia.org/wiki/Burrata", "type": "review", "business_id": "3wLLf8wRqD1ZQowi9aZSoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MMTH5K-4i6-zcuasXA-gOQ", "review_id": "ftDiNM976ePkYb7ue5iBIw", "stars": 5, "date": "2012-09-22", "text": "This is my love note:\n\nYours beers are so delicious, your food is absolutely scrumptious. I wish I could spend forever and always with you. If I could just never work and sit inside of you all day eating and drinking, why, I think I would be the happiest gal on this side of the Mississippi River. You are great, don't change, and please, stay with me forever and always.\n\nI love you to the moon and the stars Handlebar,\n\nKatlan", "type": "review", "business_id": "_Ne4sL68IW6lEXYvrnkt-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QGQVXiICewN5PQsd83-d7Q", "review_id": "3ngnrNOkeUMT_QIsl5EjeQ", "stars": 1, "date": "2011-12-17", "text": "This location is now closed.", "type": "review", "business_id": "hnRqJND9awRC80aRwfQ1hg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CifiiSoeEAX9KOKK-QHuhg", "review_id": "zg0EScWTwmfrmsy2dWy1VQ", "stars": 5, "date": "2012-10-14", "text": "I stayed at the Motel right across the street from this restaurant when I stayed in Gila Bend. I had been driving all day through the hot desert and really wanted to kick back with a cold beer and some good food. Little Italy did not disappoint!! I got a large pizza that was AMAZING!! Plus the service was great too. Fast and friendly.", "type": "review", "business_id": "_A4zWsLoLbjozEJYHLDx0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "5RA1yMlY9ZpK3DXsW3nEMw", "review_id": "mA1km9oCjlzujylkarUfGw", "stars": 5, "date": "2012-07-26", "text": "Chef Bianco does it again! The homemade pasta is unreal. You can actually taste the freshness of all of the ingredients. The pasta is thick (like homemade pasta is supposed to be...) but not heavy at all. I also loved the casual vibe and the staff was very friendly and nice. You really feel like a guest sitting in the kitchen in a home somewhere in Italy.", "type": "review", "business_id": "BPi1Q5wX0_o5VlO_XRyYuQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "2XCsVpAMsGUykrM-BBFEXA", "review_id": "S1k-x_TQQ44qu9RNoDCtoA", "stars": 4, "date": "2010-07-12", "text": "Indian food is often minimized by attempts to make it less exact and somehow more palatable by other cultures. This is at the cost often of not allowing the original beauty of the cuisine to be savoured by all. In fact, my visit to the Indian Paradise was not without some sarcasm and pessimism on my part given that so many places in the area get it wrong when it comes to this genre. \nBoy, was I wrong! Don't let the fascade of the place fool you. When you enter, it takes a few seconds to smell the fact that you are going to have the genuine article here. If you go at lunch time, you can experience the buffet. I went on a Sunday afternoon and the place was perfectly poised for a sunset dining experience.\nALL the food...from the nan to the lamb curry, to the tea, to the samosas to the califlower....EVERYTHING was really good. But I have to also add that there was a certain family-like atmosphere created by the staff and the service was unassuming yet intuitive. I found that I did not want to leave. I just wanted to stay here and talk and snack a little. That's kind of hard to achieve in a strip mall restaurant yet, this did not feel like that.\nYou should go for yourself and see if I was just way too nostalgic for good Indian or whether its really worth 4 stars.", "type": "review", "business_id": "xEg0-xrQywU5K-WQO7cy0w"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "VnJVvpEslSKtasBO-yf1fA", "stars": 1, "date": "2008-01-14", "text": "Why can't the attendant understand a simple direct question?\n\nCan someone please tell me just where the Hell I'm supposed to put my freakin' drink?\n\nand worst of all ... my balls don't fit in this place.\n\n*one extra star for the bartender offering me her personal lighter \n*minus the extra star for not having any matches", "type": "review", "business_id": "MSnAOSajkFXLojJWgRjMCg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "hIb1ikbIMI0t1EK4gPsK_A", "review_id": "Cv-SscGrej3vp2oPmAH_aA", "stars": 4, "date": "2012-06-23", "text": "I found this place whilst trying to find good mac and cheese places on yelp. I'll be honest, I love my wine and I love my cheese. Bonus points if its melted over mac.\n\nAnd they do great mac and cheese. Some better than others- my favorite so far has actually been the spinach and pesto. If you want the chorizo, I say pass. The spinach or the bacon is much better. If you're into bleu cheese, the bleu cheese mac is VERY bleu. Take that for what it's worth. \n\nThat's not all they do either. Their entrees are consistently great. My boyfriend got some scallops that were incredible, though I don't think it's on their menu now.\n\nTheir wines are great too. I'll be honest, I'm no connoisseur, but they had a moscato from Israel that the bf still drools over. It's enough that the next time I was there I picked up a whole bottle, just for him. I've also had one of their mojitos and that was great as well.\n\nAs a note- if you're in for happy hour and get a cheese plate... I really do think its better to splurge and get a regular cheese plate. I got a happy hour cheese plate, and it's... miniscule. All of the stuff that made their non happy hour cheese plate awesome was diminished. 1 cheese instead of 3. No boursin. Fewer crackers. Less of that fantastic orange blossom honey and apples. You get my drift. \n\nDefinitely a must try. Service is great and attentive, and it's always been nice and quiet when I went in.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cUMxaIaeZovQTYBBxcQKzA", "review_id": "hWNEVE9pBKqMahKDS813SA", "stars": 4, "date": "2010-01-30", "text": "Sorry Jesse had such a bad experience here. I have been using this place for about, well, from the week they opened as it is so close to my office.\n\nThey have never lost or damaged any of my clothing, and I drop my wife's delicate stuff off here as well for dry cleaning. They have also always been true to their word on when I can pick up my clothes - although I am usually days late on the pick-up (one benefit of being a clothes-horse I guess). \n\nTwo doors down from Dunkin, so fantastic to drop and pick the rags and then grab a cup o'joe before hitting the office. The women who work there aren't too hard on the eyes, either, which is always a plus.\n\nHard to believe they are still using a dot matrix printer, but that has no impact on service.", "type": "review", "business_id": "0b-zTb8lUrUAOTyGLuZ2KA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OrkXYCH82NnidREHsGn4uQ", "review_id": "OhfjN2nrJqOt6jeZUOCtsg", "stars": 1, "date": "2012-01-18", "text": "Out of business", "type": "review", "business_id": "0yBs5wbVw9gTIDe9Z-rMTg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "1cR5-LZcSYcACxhGe3DEVA", "review_id": "flEV79cjZ1igxMS1GHNc1g", "stars": 1, "date": "2007-12-08", "text": "Ok Im giveing Del Taco one more chance....\n\nI go in what is your best chicken Idem....\n\num Burrito or taco? he asks\n\nHave you had the Burrito?\n\nno....I haven't had ethier...\n\nHave any one eaten anything here? I ask the rest of the resturant crew....they All shake there heads no....\n\nok so even if the food was discounted or free no one should ever eat del taco.....regardless I did eat a burrito.....\n\nand my worst fears where confirmed....I could have dumpster dove at a taco bell and gotten better food......\n\nFeed me bad food once, shame on you.....Feed me bad food 4 times Shame on ME....", "type": "review", "business_id": "_gXpjRIjb5fv5f5IVGXvsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Rz7qXI6Vu-fzuCViv7_veg", "review_id": "Av85Kq3ZOkGQ8inxyBZojA", "stars": 5, "date": "2012-02-17", "text": "I can't believe we get to review a free publication. Nonetheless, it's important to know (especially for Dave B., who obviously didn't do his research) that this magazine is published by a gentleman who grew up here in the valley and wanted a way to promote all of the great, creative people and activities they are doing by making a free magazine. He decided this 17 years ago, and, despite pretty much breaking even (it costs money to print and distribute thousands of magazines and no, the ads do not cover the full cost), continues doing so in the name of cultural awareness. Notice that the photoshoots use local designers, local models, local photographers, and local locations. The articles are about artwork currently displayed in local galleries, businesses (like restaurants) and bands that local folks have started on their own from meager means, and about up-and-coming events like the taco festival (started by a local), fashion shows (again, utilizing local designers and run by locals - no Dillard's show coverage here) and about people in the valley who are trying to make a difference in our community. If the magazine doesn't seem critical enough, it's because the people who are the magazine decide what to write about, and therefore don't have to waste pages with hateful criticism when Java can be promoting a local chef or a cool new local jewelry designer. When it's run by a local, written by locals, and put together in the publisher's dining room, I can't think of any magazine with MORE credibiilty and freedom. The publisher and writers are meticulous in choosing to write about what moves them rather than what the latest hype is. That's why you read a story about the man who purchased a building and was designing it into a venue before it was the Crescent Ballroom. That's also why you'll read the backstory on five locally owned, little-known coffee houses at far ends of the valley. The candid shots in the back are a tribute to local events the publisher attended but maybe an article hasn't been written about, or to local artists, designers or patrons of the arts. While it's always interesting to hear what people think of Java, knowing what really goes on behind the scenes gives me nothing but respect for the handful of folks to who put their blood sweat and tears into creating this free publication each month.", "type": "review", "business_id": "kkLXf6hj9fj8_gTj-CCPBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OR8LO7yYfZUSoC-sgGDF7Q", "review_id": "7o_zGSWpWsiN8p6TX_v9EA", "stars": 5, "date": "2012-11-08", "text": "This place was AMAZING! I have stayed in probably over 100 hotels, this one was the BEST hotel I have ever been to... staff was extremely friendly, I WILL be back!", "type": "review", "business_id": "rLAeltELaGdQKh_LYIllEA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "8_ztfjt9_RsKS-cQ9KlqKg", "review_id": "x8V3YJ4p7eslFd57gUjJ6A", "stars": 3, "date": "2012-01-04", "text": "-1*\n\nDropped in for my 3rd visit & still no menu board or the other offerings that made them different....no cupcake, boba, etc. Tried the pistachio fro yo & it had an artificial after taste. Guess I'm driving back to Yogurtland for now.", "type": "review", "business_id": "R7fAXkib9dnkYtFqOv1HDA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "ebycwAcOjpzl7J7hoQmf_A", "stars": 1, "date": "2011-12-27", "text": "Overcrowded, sprawling mess of a mall (and I normally like malls). Traffic and parking are almost as bad as at Tempe Marketplace. The confusing layout makes it hard to find specific stores (even with the help of the directories).", "type": "review", "business_id": "8qL697NwICTc_ac0-26Ycw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "iR1YKCN-siIlTcnA0IsSZQ", "stars": 5, "date": "2011-03-04", "text": "Finally had a chance to watch a game here! Just moved to Surprise in July, and have been waiting for spring training. Very easy parking, and the seats are great! It does not matter where you sit. The diner have great food. I will be coming here a lot!", "type": "review", "business_id": "L3BSpFvxcNf3T_teitgt6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_jjIaczpcVDpHlH6l334rQ", "review_id": "Zv5GGJf1wJf6_MT_sN787w", "stars": 2, "date": "2008-10-30", "text": "Lost 2 stars! Sat in the restaurant for 15 minutes ... no waitress ... no water ... no nothing. We left.\n\nSad part was there was people who left, then came back and got service before us. The guy who came in after us got seated, hot tea and his order taken while we just sat and waited. SERIOUSLY doubt we will be going back now. If you have an hour or so to kill, you can wait for your food/service in there.", "type": "review", "business_id": "90AXjqb4O-wrTHDKDoDUzg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bswV-wIGU9Bw4mbxSPdykg", "review_id": "RN_kryNEXSVJlknpxb0ceA", "stars": 4, "date": "2011-12-08", "text": "I have been going to Niro's for several years. You can always count on them fulfilling your your order very quickly and with consistently good quality.\n\nWhen I am in a hurry between meetings I can count on Niro's to deliver a better experience than I could get at a random fast food joint.\n\nThe gyros are good, the french fries are hot and crisp and the service is always friendly.", "type": "review", "business_id": "nBrD6TxddhHx4FhMk32JvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "nhysTbkA09SymSrCjdTaVw", "review_id": "WeNhaODwNX1qmMXp5Y2bMg", "stars": 4, "date": "2010-12-24", "text": "I've got to admit, fishing at the Water Ranch pond kind of makes me think of the Beverly Hillbillie's \"cement pond\". But I really like it! \n\nThe location is perfect; right at the intersection of Guadalupe & Greenfield. Parking is no problem. The walk from car to water is little more than a skip, hop and a jump. Very easy for my elderly dad to take my son fishing. \n\nThe fishing is easy too. The pond is stocked with Trout, Bass, Catfish and Sunfish. We've been catching nice trout (10-12 inches, Yum!) using nightcrawlers. I'm keep hearing that white power bait works too. Although the bottom of the pond seems to have several rocks, snags don't ever seem to be a problem. Maybe best of all, the edge of the pond is a cement curbed sidewalk. Like I said, Jethro Bodine would be right at home. I suppose if you are gonna be an \"Urban Fisherman\" you might as well do it right!\n\nNot much into fishing? No problem. There is a wonderful library with windows looking out over the pond. There are paths for a nice walk. There are birds everywhere. There is even some kind of observatory (haven't checked it out yet, don't know the details).\n\nAll-in-all, this place is exactly what you'd want... and more.", "type": "review", "business_id": "ZCE_ZHlZGpWPGICWpGNrdQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "EoTooNBcxu0Hy0-XeZI8aw", "review_id": "7tV9hSVrmCesdDJ5oynL-Q", "stars": 4, "date": "2010-02-11", "text": "Dropped in today for the first time...and can I say it's worth the drive?\n\nNo attitude. No c*nty saleswomen like that OTHER PLACE THAT SHALL NOT BE MENTIONED.\n\nCashier, sales people and customers were all so darn friendly and helpful I don't know what to say other than...YAY! I'll drive the 20 miles here to get my dog the food he needs.\n\nBuh-bye local business pet store that's closer to me and sells the same brand of food I buy for my dog...I'm a fan of the BEAST!", "type": "review", "business_id": "v_aTapvcfKRL6O5au6Ru5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y4Ix-FgsKRMu9xyOly9dXg", "review_id": "fvCPmju1BBWm9UcQh5Mu0A", "stars": 3, "date": "2011-09-16", "text": "We stopped by and rode the train, which was a good history tour. We discovered the history of gold mining in the area and some of the local lore regarding the Superstition Mountains and the Lost Dutchman Gold Mine. I would like to come back and spend more time exploring the restored ghost town. The train ride was a bit expensive for what it was although I enjoyed the Hurry-Up Henry the conductor.", "type": "review", "business_id": "O4jXtRnS_R9SyM7ckMhFmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1lSFhUewKa22FwhXuVgFdw", "review_id": "zT_e1VGeFMHLLcJ9SkS6dQ", "stars": 3, "date": "2012-06-11", "text": "I do love Chinese food, and for such a big city I find that Phoenix (or at least Scottsdale) lacks in options, either because they aren't the most welcoming of places, or simply because there aren't that many (compared to sushi restaurants for example. I've been to this location maybe 3 times since moving to Phoenix (8 years ago) and must say that I usually go because a friend as a \"Pei Wei\" craving. I found the food to be ok, but I'm typically one who doesn't like spicy food as I find it takes away instead of enhances the flavor. I wasn't too hungry and decided to take the chicken fried rice. I have to say that my favorite chicken fried rice is the one from Tottie's in Scottsdale that not only is delicious but always gives me left overs for lunch the next day. Portion was ok though the fried rice was a little sweet and the person I was dining with had the chicken lettuce wrap which wasn't too bad either. Service was disappointing as our food took about 10 minutes to come, but I must say the staff was helpful when I was asked where to get takeaway boxes as well as a takeaway cup. I'd give it 4 stars if after a handful of experiences I had Pei-Wei on my \"must have\" list but with Pita Jungle, Sack's , Subway, Rubio's, etc. nearby, the competition for \"fast casual\" is stiff and Pei Wei just doesn't cut it for me unless I really had a craving for Asian food that day.", "type": "review", "business_id": "9Vu9KhK2-kBSM-FXvxXGNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6svwwImg6nLwUc5DPp2L9Q", "review_id": "v6qClAjOR2gnWTZZIsKyrQ", "stars": 4, "date": "2010-03-01", "text": "Orange Table is one of my go-to spots in the valley. The food and atmosphere are superb. The wide assortment of beverages certainly strengthens OT's menu when pairing food and drink.\n\nI will admit that while the location may seem hard to find, there are times where I've had to wait, and wait...but if you enjoy great food then it is worth the wait.\n\nTheir salads and burgers (especially the wine burger w/ cheese and red onion) are fantastic!", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xcnGEs7YEVPFG1jBaWxoSA", "review_id": "xmJXKHz6UtJ7K3wHLNmprQ", "stars": 2, "date": "2011-02-01", "text": "I'll be honest--this place is good for Americans... but not good enough for Chinese people. The waiters were sort of rude to us, despite our being able to speak their language.\n\nFurthermore.. what kind of authentic Chinese restaurant serves dinner out of plates? Blasphemy! Our table to had to go out of our way to get bowls! I'm surprised they had chopsticks.\n\nOtherwise, their mock food was salty and pasty, perfect for Americans in search of a good Orange Chicken replacement. Wait.. salty and pasty? It's supposed to be a (insert meat type) dish, consisting of subtle flavors and intense chili pepper action.\n\nNeeext...", "type": "review", "business_id": "yQONzVpX-DEpGSuKMIov6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zLgkT2QxH8aauHzeLb44-g", "review_id": "cTBVg8mkrFYtwC3gX9_YOQ", "stars": 5, "date": "2010-03-11", "text": "Amanda was very helpful when we looking at the ferrits..... A great pet store.", "type": "review", "business_id": "Rfp9HX_RhdcMwiKA8Wfl4g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Z-fvuSqI5SSiZUksPJ_QiQ", "review_id": "sGEKFSmQMIwamJBWeaAejQ", "stars": 4, "date": "2009-10-11", "text": "Great Korean Kalbi and other table top meats.\nrest of the dishes wasn't that impressive .\nWeekend could be really busy you might need to wait for a while to get your food.\nbut weekdays pretty slow.\nIf you like Korean BBQ, this is the best place in chandler ,gilbert area.", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "qszN7-BCx_SrtbNclhubTA", "review_id": "H_ffG8AhtGoca2jtuqKsvQ", "stars": 4, "date": "2009-06-11", "text": "Margie's just opened about two months ago. I stumbled upon it while looking for the Eba Cafe. This little place is open Monday-Saturday, 5:30am to 2:30pm. It is a great stopping point for commuters looking to get a coffee or breakfast bagel pick-me-up, check some email (they've got FREE WIRELESS!) and head into or out of Tempe.\n\nI ordered a simple coffee and the egg-and-cheese toasted on an everything bagel. Tasty and a truly satisfying treat without a ding to the wallet.\n\nThe place is very clean, soft comfy couches near bright windows, and Margie is just delightful. Great place to chat and concentrate away from the main throws of other well-worn coffee houses.\n\nExpect to find me there often--mainly because I want to keep this coffee house close, alive and well!", "type": "review", "business_id": "Sv_lFIgh5CnfC31mY5Uo7A"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "ddusn0qejUfNEUqSWCDU_Q", "review_id": "axeQ0udNugsNbj0sktLvBw", "stars": 1, "date": "2011-08-06", "text": "The bill was 150.00 and that was after a free appetizer coupon they sent me via email. The food was no where near worth the HIGH price! The service was not up to par either. I really can't believe people pay such high prices for food that come with NO sides, etc. I got iced tea to drink and it cost a whopping $6.00. That's right folks....6.00 for a glass of tea. What is that 100% profit/mark up? I paid 12.00 for a soup sampler. Each of the three soups were in a tiny espresso cup. My salmon was no better than what I get at Texas roadhouse but it was three times the price. I would definitely not recommended this place. If you want a fancy, awesome meal go to Houston's! The one thing that was great were the rolls (they were free too)! Don't get me wrong the food is good but not worth the price tag! You can get just as good food a lot of other places for a lot cheaper!", "type": "review", "business_id": "H9wnP4BIctmRxMq43NPgAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "N4878r3seZOjglSOSN4kuw", "review_id": "rO4l5SrmgRhWL71OvqrA8A", "stars": 5, "date": "2010-08-09", "text": "Well thought-through details make Lux amazeballs. \n\nThe espresso is good. Really good. Like, I need to order an espresso along with whatever else I'm ordering just because it is so delicious. \n\nThe food is beautifully presented (little light on the gluten free snacks, but there's fruit, so no one is starving). \n\nThere's plugs all over.\n\nThe furniture is mostly easy to wipe down.\n\nThe bathroom door has written out instructions so no one is confused on when the door is locked. It also has nice smelling soap. \n\nThe patio is really pretty.\n\nThe clientele seems ridiculously cool. I kind of feel like maybe I'm going to be cooler by association if I hang out here. I'M GIVING IT A GO. Let me know how I'm doing.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "12IhQ6toyh_sPs_o-6pkhg", "review_id": "XqD6ZzhvmjN9keLcGarv5A", "stars": 5, "date": "2011-07-25", "text": "The best Burgers in Town!!!!! I have been hooked on their yummy burgers since the first bite. I used to always drive by this place and notice that the parking lot was always packed........and no wonder, they are Wonderful!!!!! Their custards are extremely yummy too :) Worth the drive from North Scottsdale. I haven't tried anything else off their menu besides the burgers, custard and fries. Always tell myself that I will next time but when the time comes I just can't pass up my favs :)", "type": "review", "business_id": "U605aUo9MJn5vgLfP3yYKg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "iKi-FUw5x7A220fVvEcNuw", "review_id": "xrUOY2XtJZK7PA3dDUBdig", "stars": 2, "date": "2010-05-22", "text": "Possibly the creepiest convenience store I have ever been to. I mean, it's sandwiched between a strip mall and a giant dirt lot.", "type": "review", "business_id": "09Kv1q51BlUyLznzNnL5Xw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QzA6ZW1NFid32_g_fsapIg", "review_id": "mrQ2HUaYLzarMPvHyWm0qg", "stars": 4, "date": "2010-02-19", "text": "LOVE this place! I meet my husband here for lunch as often as I can. It is a bit pricey for being a fast food place but the food is so good. I always get the pita pizza and the pasta salad. Excellent place to eat. The decor is funky but the staff is usually really nice and again, the food is great!", "type": "review", "business_id": "trAvQPp7gps0Btk-2AmLpw"} +{"votes": {"funny": 7, "useful": 7, "cool": 4}, "user_id": "YzNZNgpOy9tthDnczS_ajg", "review_id": "MjAXkN1_QzChPe6GvbohlQ", "stars": 5, "date": "2012-11-26", "text": "AMC Esplanade is by far the most successful navigator of the new \"Dinner and a Movie\" blue ocean the theater industry is starting to penetrate (that's right, I just referenced Blue Ocean Strategy, get over it). No, it's not an extremely enlightened idea. I've been sneaking Bacardi into theaters since 2003 so it's about time theaters realize they should probably attempt to turn a profit off of it, but AMC really upped the game by not only providing me the option of purchasing alcoholic beverages from THEM, but also upgraded chairs, and a ton of delicious food (Including the obligatory $4 box of candy which is hilarious sitting next to a $9 burger. Like \"Don't mind this $9 full meal over here, we still stand firm that Gummi Bears are worth their weight in gold.\")\n\nYes, it's more expensive than a regular ticket. Almost double for the nice seats. But trust me, YOU WANT THOSE SEATS. You will regret not getting the $15 seats if you don't buy the $15 seats so just pony up the cash and delight in the fact that movie theaters are now almost as comfortable as watching a movie in your own home. \n\nThis theater is so nice it even makes bad movies tolerable. I saw The Master here and probably would have stabbed myself in the eye with my embezzled Bacardi flask if I didn't have a comfy recliner and three glasses of wine to get me through it. I seriously won't go to a movie anywhere else and I guarantee you'll say the same once you go. FIVE STARS.", "type": "review", "business_id": "EmlgWjs1ZzZEpDjZCSPLmw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fUs5XxOR82Hfrnyl4wi2QQ", "review_id": "2BJn2bP6izov3oEKD4tLcA", "stars": 3, "date": "2011-10-04", "text": "Went for lunch again with my wife and SIL yesterday. Was pretty disappointed and they are losing a Star each of the last two times. We ordered four entrees -- A combo Nam Yeung Noodle salad (I forgot the Korean name), Pork Tonkatsu, Seafood Tofu Soup, and a dinner portion of Kalbi. We got there at 2:00 pm and we were immediately told that they plan to close at 2:30 pm even though their lunch hours are until 3:00 PM -- WTF?? So we ordered quickly. Within a minute the tonkatsu order came out and it was cold; probably premade or something, and the meat used was very, very thin (again) so it was very dry. The Seafood tofu soup and buckwheat noodle salad were OK. The order of kalbi came out last, but not on a sizzling, cast iron plate, so the onions on the bottom were raw and not \"grilled and caramelized\". \n\nDon't know what is going on here, but each time we go, it seems that they are slowly going downhill. So we have decided to look for another restaurant option for Korean food in our area.\n\nSorry for this seemingly negative update, but I want all yelpers to know of my opinions and observations. We used to be big fans of this place.", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "N6q91wGo-JY1yo-fMycjGQ", "review_id": "S5-8EwAv43DgAXBLl7rTuQ", "stars": 4, "date": "2012-12-17", "text": "Ahi tacos, rib tacos and ribs are all good but a little overpriced. Service staff is always top-notch. Both the beer and wine lists are good, mixed and specialty drinks are nicely done.", "type": "review", "business_id": "3oZcTGb_oDHGwZFiP-7kxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zZOuBvGMgUbmFJAoKABVSQ", "review_id": "xafsPNDcoVfJxtYViEDHfg", "stars": 4, "date": "2012-04-27", "text": "Similar to Joe's Farm grill we make sure this is one of our regularly yearly places to hit whenever we can. \n\nPiles of BBQ'd meat? Yes please \nFree birthday meal? Hell yeah\nHomemade rootbeer? I'm moving in\n\nWe've had consistently great food and service every visit and to top it off on my birthday they gave my friend a free meal too because he was in the military. You can't beat that kind of hospitality", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "PD9BRfQV0YUhS6i2c49PUQ", "review_id": "LoUkqJXndLVaKzt3qfCI2A", "stars": 1, "date": "2012-05-20", "text": "One star for the most terrible service in recent memory. Our server \"DK\" was outright rude and horrible, and outright ignored us when she wasn't making us uncomfortable. As a former waitress of 14 years, I have the utmost respect, patience and tolerance for my former bretheren - but this woman needs to go. BAD DK! Otherwise, our Teppiniyaki (sp?) chef was wonderful, the food was delicious and fresh and a solid four stars. I have been going to Kyoto since 1995 and it remains a fun and festive place with very reasonable prices. Too bad it was ruined this time by DK! DK needs a different job, more suited to her personallity, like euthanizing kittens or something.", "type": "review", "business_id": "YEQkTCmphjr6XKPh4m93AQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "CAlxnkAuqNetlUmWtCQ_eQ", "review_id": "rlOi6C0JP0DQAC7yXhdHUA", "stars": 4, "date": "2008-12-20", "text": "Sidebar is a trendy, hip down town bar located above Pei Wei and Starbucks.\nThe bar is small, the decor is modern with a retro feel (Urban Outfitters, maybe?), dark wood, curvy white bar stools, ambient music and muted lighting.\nThe beer and wine selection is good. A little pricey ($3 PBR, but at least they have it, and $5 Blue Moon), but not too bad. They have a good selection of spirits, too, Patron, Chopin Vodka, Booker's Bourbon, as well as the standard stuff, so there is definitely something for everyone.\nThe \"smoking patio\" is a stairwell that leads outside the building. So, needless to say, it can get a little ridiculous with people crammed on the stairs puffing away.\nThe place was cool. The crowd was definitely the hip and trendy crowd, but not too pretentious. \nAfter a second trip here on New Year's Eve, I am sold. The cover was only $5, the staff is/was friendly, warm and welcoming. They have great drink specials, not just the price but great creations.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "gAGh13s6WNXdZ3P9ETRgqA", "stars": 4, "date": "2012-08-22", "text": "This studio is probably the best hot yoga studio I have been to. I went there several times a week for about a month over the summer and enjoyed it every time. I love the music they play and I love that the teachers are knowledgeable and motivational. I really got a great workout while going. The space is clean and even smells good....that's pretty awesome for a hot yoga studio. I like that they have wood floors...it makes me feel like they can keep it cleaner and it's easier to balance on. The reason why I knocked it to 4 stars is because it is simply unaffordable. I have a fairly good job, but I don't think I could afford to keep going. If this place was reasonably priced, it would definitely get 5 stars from me.", "type": "review", "business_id": "fxgmP9FrYBC5ZysZTCbnEQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "bkR1tRtCi5ZG4qbdYM-LYg", "review_id": "3-QIcmZ7L6_qrwanbX4l4g", "stars": 4, "date": "2011-11-06", "text": "Love, love, love this place!\nGreat atmosphere, great for large groups, casual and fun! Have been here a number of times, and have yet to be let down.\nOrder the sweet potato tater tots! Oh my goodness! Life changing!!!", "type": "review", "business_id": "MXOdsPTLQPsQK9hUq01DWg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Snc090I2QOdJ2IhsDElbTA", "review_id": "snNO0BU9_D___6dU972q3Q", "stars": 1, "date": "2011-08-06", "text": "Entering the store is visually overwhelming. There were so many things take in, I thought I'd found my new grocery store. \nI wandered for a good 40 mins checking everything out.... \nAfter the ether wore I began to realize something. While the selection was wide, it look OLD. \nI raced to the fresh fish and noticed that even packed in ice their little fish eyeballs where cloudy and sunken into the sockets. \nI looked at the frozen section and found some fish that had a sell by date of 02/2010. There was other fish that was packed by the store with no packed on or sell by dates. There was canned and boxed food past their expiration date. \nI checked out this place on the Maricopa County health department and they had their fare share of customer complaint driven inspections.", "type": "review", "business_id": "ehy9Vy1BKc9shO74chuUAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-kIvLyWpY17aRa0vPp-RmA", "review_id": "6TI-dx9VI1szSx8Lsy9mNQ", "stars": 4, "date": "2012-07-02", "text": "One of my favorite restaurants in the valley. I usually go for the turkey wrap or one of their pizzas. On this day we went for happy hour, which is daily after 9pm and tried several tapas and a 4 peaks beer. Everything was really good.", "type": "review", "business_id": "qwmHm3s8p7J12AIY6Co8HQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NrRS56Dv52m2BND-9v1qWw", "review_id": "n9AURkoU7HWbvEJQT9ZSYg", "stars": 3, "date": "2009-10-16", "text": "Good food when it's slow. Not so good when super busy. This is usually a great place to stop after watcning a show at the Harkins theater nearby. If the lot is full on a Friday or Sat night I would pass and go somewhere a little less overwhelmed. Although the service there has always been pretty good for us, the food is hit and miss.", "type": "review", "business_id": "QzXFdjIbFRGhzL83goPPLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "E7eSeswd7eu9wOFVJhhoUQ", "stars": 5, "date": "2012-10-11", "text": "I have no idea why I haven't dined or noshed during happy hour at this place more often, I've always had great service, great wine, and great food. There is no adequate excuse , but anyway, my third adventure here made me update my review to 5 stars because 5th and Wine has earned it.\n\nThe wines by the glass range from $8 - $11 unless you come in before 6pm then they are only $5! Those prices alone should make you want to come here for drinks with friends. The servers have always been cool with offering samples if you can't make up your own mind between two wines despite the recommendation from the server and your friend saying \"just pick one!\". Due to this fact, I've always had a glass that I have enjoyed, which is usually a Zinfandel. \n\nI have now had the pleasure of experiencing all of their different types of bruschetta. My top two favorites are the Prosciutto, Mascarpone, Figs, and Tomato Jam which has a great combination of salty and sweet, and the Apples, Brie, and Fig Jam one which is on the sweeter side, but not overwhelming because the bread and the tart granny smith apple slices help balance out the flavor. The Chopped Salad is very light and refreshing option to accompany the brushcetta appetizer. 5th and Wine is also a restaurant so other food options are available, I have sampled the Chicken and Pesto Pasta which has a delicious cream sauce and their Mac & Cheese which is super rich with the two types of melted cheese, but both items are delicious.\n\nThe atmosphere is great whether you are sitting inside or outside. The lighting is soft, giving more of an intimate feel, yet this place still remains simple and casual, which I love. The outside patio is great, it is a courtyard that offers peeks into store windows while remaining private from the traffic of Old Town. The times I have been here it has never been super crowded and I am able to just walk in and be seated right away. 5th and Wine still feels like a hidden gem and you must try it out!", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9bCDKM3_s4cYhR8Vzzk-hw", "review_id": "46zgBBMnbn1-pNQbbVfNoQ", "stars": 5, "date": "2012-02-18", "text": "Haven't been to a Vietnamese restaurant since I left Colorado, almost three years ago. But for what it's worth, this is the best, most authentic Vietnamese cuisine I've had so far. =)", "type": "review", "business_id": "47A3pWsdYNhFFy9gUEVcYQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "EP3cGJvYiuOwumerwADplg", "review_id": "R1ld1p4VWdcXx_Yh5pPUhQ", "stars": 4, "date": "2011-05-09", "text": "I like that we have a sports venue in the West Valley, I think that this place has tons of more potential but under the current recession it will take time to recover and get the growth we need all around this place. I love that Cabelas is over here and 2 movie theaters nearby. I enjoy the food options when we are in this area and sometimes drive out of my way to come here since Park West is also nearby on 101 & Northern. We came here this weekend and the kids walked around with us and we enjoy all the fountains and the kid area where children can play in the water.", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "6RX-jDD9bhRsiiYvJg-p4w", "review_id": "IngN3er9lXFtVYKOh-CIBw", "stars": 1, "date": "2011-02-21", "text": "Slow service, staff needs more training. There's like 4 managers and none of the know what they are doing, i don't think this place is going to make it. Sorry but you lost 4 very good patrons Saturday night because of your poor customer service", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "nWouNfZD3Pw08RYizxkqcA", "review_id": "moYPmxM_pA8kqweoHZqE7A", "stars": 4, "date": "2007-08-25", "text": "It's usually a ghost town at the downtown Phoenix bars, but when a game and/or concert is happening, suddenly the bars are bustling. Such was the case last night at Majerle's, former Phoenix Suns player Dan Marjerle's sports bar. With the Beyonce concert across the street at the arena AND a D-backs game at the ball park, Phoenix was a hoppin'.\n\nMy friend and I stopped into Majerle's, which I've been to a few times before, for dinner and drinks before going to see Beyonce. I had a cheeseburger and Cesar Salad. While I realize it's hard to mess up a Cesar Salad, my salad was seriously the best Cesar I've ever had. And my burger was packed with flavor. No wonder AOL named them Best Burgers two years in a row. We also had a wonderful chocolate martini (with Vanilla Vodka, not creme based) here. And on Fridays if you're in the mood to really start the night, the bar offers a Corona or Pacifico with a shot of tequila for $7 as part of their Sizzlin' Friday special.\n\nMy only complaint was that our waitress suddenly went M.I.A for about 15 minutes when we were trying to close our tab so we could go to the show. But I'm still going to cut them some slack because this is one of a few fun places to drink in the downtown area.\n\nHOT TIP: A second Majerle's will be opening in Chandler in the fall.", "type": "review", "business_id": "45puCRQ6Vh_IIAy7kkfFDQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-LZnto8cNbazcP-J1i1d2Q", "review_id": "DaDG1NyD9YqCQLLLbXzJjg", "stars": 4, "date": "2011-06-07", "text": "So glad I decided to stop in today! Double stamp tuesday! Try the chai high! It is the perfect blend of tea and smoothie in one!!!!", "type": "review", "business_id": "6YbF8_YCRDPXU0_iwh-sZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tPNndYGOnX0nQ7OymY_B-Q", "review_id": "fLAePHFG2fvBsz_tSAitAg", "stars": 3, "date": "2012-10-08", "text": "Went here before the Jason Mraz concert and the Rock Shrimp appetizer, beers and cocktails were very good, however the service was a little slow. I ordered the angus cheeseburger and it came with a 1000 island dressing and pickles, a glorified Bigmac, what a disappointment.", "type": "review", "business_id": "Xq9tkiHhyN_aBFswFeGLvA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gP-l_Gb8PWTsqupoKqsccQ", "review_id": "2-WBj2O4C3M8nf8NBunAfg", "stars": 3, "date": "2012-02-19", "text": "Dropping down to three stars ... On a recent visit, I saw TWO roaches on the main floor of the restaurant. No one seemed to care, so I got up and stepped on one. I pointed out the other, and one of the staff killed it, but they didn't seem surprised. I know that roaches are hard to control, but having two of them wandering about in a busy restaurant just isn't a good thing. \n\nAlso, our waiter was an overly chatty guy who seems to think we are interested in his voice. They had some good staff in the past, but I suspect the owner, who likes to get drunk and hang out on the patio, gives me the impression of a guy who would be difficult to work for! \n\nThe food is still decent and better than anything else I've found, but I'm looking for alternatives ...", "type": "review", "business_id": "V9i9LnTg9H2XvzqCVBSOXg"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "dcWNhMfe67XhUPeeBTzJFQ", "stars": 5, "date": "2011-04-25", "text": "Had a fabulous time here with my husband celebrating my birthday last weekend. We both got \"The Farmer's Feast\" and it was truly amazing. I was not expecting that we would each get unique dishes so that let us sample even more of the food (though the hubby didn't really share too much). I highly recommend this option for anyone dining here. \n\nThe antipasti was a great selection of cured meats and local cheeses. Next, I had a wonderful salad that was a great combination of sharp peppery flavors mixed with sweet. Strawberries, arugula, radishes, yum! For pasta course I got gnocchi with a rich and tasty cream sauce and my husband got ravioli stuffed with yam. His dish was amazing, I had to fight for a couple bites. For the fish course I had poached halibut that was served with some kind of really flavorful sauce and a vegetable puree so that whole thing was extremely delicious. The hubby got a very lightly seared tuna fillet. I was very surprised that he enjoyed it so much since he is usually not a raw fish kind of guy. For our main course I got a pork tenderloin and the hubby got braised beef... just lucky we each got our favorite meats. Each came with other vegetables and starches on the plate so they would have been an ample meal in and of themselves. For dessert, I got a goat cheese cheesecake that was truly amazing. One of the best deserts I have ever eaten. Very rich but the pieces were small enough so that it was not heavy. The dessert did not have too much sweetness so it went well with the ice wine it was served with which tasted like pure honey. Just fantastic. The hubby got bread pudding which we didn't much care for and it came with a sorbet that I didn't try. I got the wine pairings with the meal and every wine just complimented the dish it was served with so beautifully that I was really glad I added that option. Also, it ended up that you got a half glass (at least) with each course so I think it is a good value (the wine pairing was an extra $45.) \n\nI do agree with a couple of the reviewers who mentioned salt. There were a couple of dishes that had just a tad too much. However, I think that was not due to a mistake of the chef, I believe it is just because they use cured meats in a lot of their dishes. Another reviewer mentioned bad service but we did not experience that at all. Our server was extremely warm and friendly. She was very knowledgeable on the food and could answer any questions we had for her. She also took the time for each course to explain each dish and in my case the wine and why they went together. Only one time did my wine not come out at the same time with the food course and in that case our server apologized immediately. I do agree with some of the reviewers that the service is very slow... however, I believe that this is intentional. They have created a very cozy and comfortable environment and they want you to linger and enjoy yourself. With the Farmer's Feast in particular it took us almost 3 hours start to finish but I enjoyed every minute of it. It was nice to have time in between courses to sit and talk and relax. The spacing also kept us from feeling too full by the end (it is six courses after all!) or from letting the flavors from one dish influence the next. I was able to enjoy each course separately and independently with its own unique wine. It was pure food heaven. This is not the type of place where you would stop in for a meal before a show or event; when you come here, this should be your only destination for the night and it is such a great experience that it will be enough! We truly had fantastic night here.\n\nOne warning I will say is for ladies, you need to be prepared for the rural atmosphere and the walk from the car to the restaurant would be challenging in heels (I had been warned so had wedges). In fact the dress code overall was a bit more casual than I was expecting. Kai at Wildhorse Pass resort is my absolute favorite \"special occasion\" restaurant and so we were making a lot of comparisons between the two. My husband made the comment that when we were at Kai we spoke in library whispers the whole time and felt a little awkward at times (you know the type of place where you feel like if you use the wrong fork you may end up getting kicked out) but at Quiessence we were chatting away the whole time and completely at ease. It is definitely a much more comfortable and relaxed environment then any other I have experienced at a restaurant of this caliber.", "type": "review", "business_id": "-yxfBYGB6SEqszmxJxd97A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EaPbAu2q7Om6cXF9bqUG5Q", "review_id": "KbVap2hs0EchcYIigRPy-A", "stars": 5, "date": "2011-04-10", "text": "Good service and good food! I ordered the burger sliders for lunch without the 1000 island dressing and loved them! A quick little meal for those on the go! The attendant even offered me a nice tall glass of ice water to go while I was waiting.", "type": "review", "business_id": "nUIkqgFimmLsB50WXVwTfg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eWb3LTlYzRGrP4DiQjHXcA", "review_id": "-4JCxtAV17hsXxxLxkSMHA", "stars": 5, "date": "2011-09-13", "text": "I've been a regular here the past 3 years. Other than the wait being long, the five spot sandwhich and waffle make this place one of my favorite in the nation.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "nOmXHUGjKNnEen3saS9XhA", "stars": 3, "date": "2008-05-27", "text": "This place is so cool! The menus are on the walls in sharpie along with signatures from a lot of local athletes. They will not present a bill to you, but rather trust you to tell them what you ordered and pay the correct amount. The food is great, artery clogging, and comes in huge portions. I like the smothered chicken with yams and green beans, and order it every time. I always want to sleep off the rest of the day too. Saturday they do a great rib plate. Good spot for those working or living in the city.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yTAwEOYH9-ReFv55s-vpwA", "review_id": "3CuvbAbPF9nWG7HNHIoCUA", "stars": 2, "date": "2012-01-19", "text": "Not long ago I went and got takeout - and everything tasted kind of fishy.", "type": "review", "business_id": "z4KFTJQsAdxqMZA7Fx0A9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XDFrc8vbUCswgkooPUau2A", "review_id": "l8wmmuIQIzBPNutD6GblxA", "stars": 5, "date": "2011-08-26", "text": "Barb at Tees and More does a great job. They provided our company shirts and did a perfect job. Fast service, great service and great people.", "type": "review", "business_id": "tr_Fr0RHF45P-IBYZrNELQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dn5lLgRj87xmJSF4BhHSIw", "review_id": "Ennx8XBgPNaRghTyu6qn1g", "stars": 3, "date": "2011-07-03", "text": "I don't eat a lot of pasta and I don't come here all the time. However, I think the salad with pesto dressing and the garlic Mizithra (spaghetti with bacon, mushrooms, brown butter and cheese) are very good. I have heard that the other stuff is good, too. I have only been here for lunch, so I don't know what dinner is like. \n\nSit in the trolley car -- you can ring the bell!\n\nIt is located conveniently off the light rail stop at Central and McDowell, near the Phoenix Main Library.", "type": "review", "business_id": "DlCtdbceo4YNSI53cCL2lg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wE1NBJRLbkhFSWjfJbGEjQ", "review_id": "O_JTNTRvny-XD-roqfDKiQ", "stars": 3, "date": "2011-02-22", "text": "I stopped in on my lunch break. The BBQ isn't bad for a fast food type of place. I had the brisket on this particular visit. The BBQ sauces weren't the best I've had. If you are in the area and looking for BBQ, I recommend Pork on a Fork.", "type": "review", "business_id": "A4GZVV0M7qRokP1TC7jn4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "q0SIbZZ8hMFtVP9G6S5Dpw", "review_id": "V27Lu3OfXGx0InVMeBjxcg", "stars": 5, "date": "2011-07-25", "text": "Mid size American airport with very good organization, very straight forward, no hassle. \n\nSecurity is a little slow and priority lane isn't really priority, it's more of \"let's make fun of first class flyers getting pissed\" lane, so let's welcome first class flyers with big giggle!! \n\nMany stores and food quality is okay. Seating areas are limited, at least for the Terminal 3 before security, so be aware. \n\nLots of volunteers working here to guide you to the right place, there may be more volunteers than passengers. Haha.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uZG-IiG2fE7LSoEtlWp2Sw", "review_id": "tJzaK6DryQnco5kCg9tn0g", "stars": 5, "date": "2010-11-20", "text": "I did not know I could still be creative since it had been years since I had done anything that involves even a minor level of creativity.\nBut what fun was this!\n\nA girl friend took initiative here to organize a kitchen tea on a recent Saturday afternoon. We were a table of 6 girl friends that were scheduled for some pottery making! \n\nMy initial idea of this venue was admittedly a little different but better than expected in so many ways!\n\nFor one we did not have to get all that dirty. Not dirty at all really. Also not that I mind dirty. This is for those who wonder whether to go or not to go.\n\nAnd two - we were able to bring along our own food and drinks which made for excellent responsibility sharing in the wining and dining arena.\n\nOnce we were set up with our party arrangements and have had some snacks and champagne we were inspired to start our artistic journey. The idea was to have each of the 6 friends make a dinner plate (or item of the bride to be's choice) which we will then give to her as a wedding present. I thought this idea was really original.\n\nSo the bride to be selected her dinner plates of choice after which we were briefed by a very friendly and sweet staff member as to the different effects that the paint will have once the plates were baked. All informed we went to select the different colors we needed for our different art works.\n\nEverybody started painting and each one of us got really involved with their own creation. The event took us much longer than we anticipated but in such a good way. We finished about 4 hours after starting off but much enlightened by the activity.\n\nEverybody agreed that we will have to go here again for the sheer enjoyment and good feeling of togetherness it promoted. I have not yet seen the end product as one of our friends went to pick up our designs - but we will presenting our collective gift to the bride to be soon :)\n\nGo go here for a stimulating outing with good friends/family/kids!", "type": "review", "business_id": "TLnAS5Qx9Q2KK3mZi0Lyeg"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "vtC_cpesIJZ3--W9J-UIXA", "review_id": "qzWXH0BSp9MebctZmVF7XQ", "stars": 5, "date": "2012-06-21", "text": "Stingray Sushi is where we go for sushi .\n\nSleek ,beautiful interior and very ,very clean ! This dining house has large 13 or so foot doors that when open ,seamlessly link the patio potion with the interior dining area ,a very good design flow,indeed. The patio itself is very comfortable as it has great seating .\nThe service has always been wonderful ,the sushi very fresh with beautiful presentation .We like to get the sushi boat , edamame ,and beef yakitori.The fire dragon rolls( though on the small side) are also yummy.\n\nDrinks are very good here ..the sinful orchid (yum)a very pretty drink .And their HH is really good as well .", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "PYtryNSk30ytqOc_36sLPw", "review_id": "77rDWBjZ11-LTSi4ncHlsw", "stars": 4, "date": "2011-08-01", "text": "Sauce is a great Quick Serve place. I had the Chix Caesar Salad it was large and filling and quite good. The sangria is nice as well...I like the koolaid touch around the edge of the glass. My man had the bruchetta caprese style and it was awesome...the tomatoes were perfectly ripe and the mozzarella was fresh and creamy. The bread was a really crusty yet fluffy yet able to hold up to the mix piece of wonder...we found out they get it from LaBrea. If you want a great quick lunch or dinner check it out...we look forward to trying the pizza and pasta next time!", "type": "review", "business_id": "AryNioF9fxl8RYGiIE7fSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QE6Bs0oeZj2RBULNqUvlUw", "review_id": "O3C6XSdVwcc99Rxkn8SdAQ", "stars": 1, "date": "2012-10-21", "text": "Waffle House was packed, Over heard another couple taking about \"Fast Eddies\", With a 20 min wait ahead of us we decided to try it out. Walked in looked like a senior center. Tables and chairs were very out dated. We sat down in a booth. Food was still on the table and the cushions were dirty. Waitress came over after 10 min and asked what we wanted to drink. 10 min later she brought out or coffee. Placed the order waited another 20 min to get the food. The diner wasn't busy at all. I don't know why the wait was so long. The food was ok, service was horrible. One thing that really grossed me out was the a/c return next to the office door. Look up and you will see probably years of dust that has collected. I showed the waitress and she really didn't care. I told her that if I would of saw that when I came in I would of just walked out. GROSS! Sorry Waffle House I will never betray you again.", "type": "review", "business_id": "iAYzRvyBrSkJDu_XZ-E1zQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "zn81QpflLDUaGZkCMUowCg", "review_id": "HiqoMER97hnLdKYeuaogAw", "stars": 1, "date": "2010-05-10", "text": "This place has the oiliest food I've ever eaten in my life. I had carry out one evening (two dishes) and the entrees were soaked in oil. I had to rinse with water my eggplant dish three times just to eat it without feeling sick to my stomach. I wish I could've washed the other dish too (but it wasn't one that could be washed--it was a wide-rice noodle dish).\n\nCan definitely taste the MSG in these dishes too.\n\nReally not sure what the fuss is about.", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZzXsskFHBYlHigIC0mX9lg", "review_id": "0sO2827rO4t7aW-9JXu3WA", "stars": 4, "date": "2012-10-20", "text": "Monday... BIG screen football, volume up, don't come here Mon night if you don't want to be immersed in football. $5 burgers that are reg $10, combined that with happy hour deals 4-7 pm every day of delicious GOOD drafts for just a bit over $3 & all flatbreads & apps 1/2 price. At normal prices I would feel more 3-star. But if you know what you are getting into & come for deals, it is great for what it is.\n\nWaiter was VERY knowledgeable of menu, helpful with suggestions. \n\nAtmosphere really is great with the dark wood ceilings to floors, big place but broken up with all sorts of nooks, interesting apothecary stuff Apollo over in cabinets, with Seattle Seahawks stuff thrown in.", "type": "review", "business_id": "Vtx0VYkybAd71fzwgaoQ8g"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "xc4ba_FseEUbSbRRoUdG6A", "stars": 5, "date": "2010-06-23", "text": "If it's an emergency, they will generally see you asap. When we used to live in Desert Ridge, we had 2 dogs, 2 cats, there were times when I needed a vet immediately, and generally they will accommodate you in such a demise. They see you pretty efficiently, but of course they will suggest things that I feel are not merited to add onto a bill, but it's your right to question their additions and refuse, of course. I've never found them to be arrogant or pushy, they will easily offer other options, or be ok with your decision.\n\nDuring 1 extremely difficult period with our beloved Rottie/Sheppard Mix, they were very understanding to the emotional distress we were experiencing with regards to his advancing old age - he was 17. They were happy to provided us with care during his aging. Sadly, it came to a point that his quality of life was no longer conducive to allowing him to continue in the state he was, and it when it came to making the horrible and very sad decision to allow them to put him down, the entire staff were so understanding, caring, and totally sympathetic to our demise. They allowed us to hold him, cradle him and pet him the whole time. We were allowed as much time as we wanted before, during and after the whole life-altering circumstance. They even sent us a sympathy card, signed by all the staff, after the terrible ordeal we went through.\n\nDuring another trying experience we had to endure, our boxer mix was attacked by another dog and needed emergency care. We were now closer, and under the care of the Tatum/Shea location, but they were unable to see us. This location was able to open up their schedule to see us under this distressing circumstance. They provided expert care and glad to say that he mended just fine, with no lasting ill-effects.", "type": "review", "business_id": "OhPg5mP2v6CseLpIw7FlGg"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "tlSSQwfHYJany7wPoTH46A", "review_id": "QiibMU5XGoBo4VWKbpAodw", "stars": 3, "date": "2011-01-05", "text": "I just don't think I'm much of a brewery gal. Granted, the beer here blows Four Peaks out of the water, but I'd much rather have a nice cocktail than chew though a specialty brew. But if beer is your poison of choice, they've got just about everything. The happy hour is kind of weak here though, with like a buck off all drafts. Thoroughly meh.\n\nYou can peruse the coolers and grab a cold one or choose from 20+ drafts they have on the menu. No Bud Light here though. Sorry frat chumps. They used to have a ton of wine here as well (like, ages ago) but it has since been narrowed down to just four choices, none of which were calling my name this last go round. Their Orange Blossom wheat beer was a bit like drinking an orange creamsicle in beer form. Almost like a cider with floral notes, a light finish and a super creamy mouthfeel. (Oh yeah, bitches. I just went there.) The perfect beer for the novice drinker to enjoy. Their IPA was also pretty decent, but was more bitter than I care for, although it stayed far away from feeling like I was drinking a bottle of grassy perfume. Solid.\n\nI thought they had deals on happy hour food (again, like a buck off) but last time I went it was no dice. At least the food's reasonably priced. Tasty rueben, craptastic hummus, crispy quesadilla. \n\nThe acoustics in this place are kind of shitty, so go on an off time when it won't be packed, or run the risk of smiling and nodding amicably while hearing every other snippet of convo. The high top tables are also really uncomfortable for shorties like me to sit at, but c'est la vie. My biggest peeve about this place is the gigando assy television against the wall. For a place this small, a big ass mofo tv is just not the way to go.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "ZsqSDOeYGb-DinY6x3-YgQ", "review_id": "4LoK_n7rVcU1oleZGPXF3w", "stars": 4, "date": "2009-07-27", "text": "This restaurant is close to my office, so it is a regular stop for either a great Mexican breakfast or lunch. Never been dissapointed, nor have any of my co workers. Try the Huevos Rancheros or the Chiliquiles ( With the Green Sauce ), it is a favorite.", "type": "review", "business_id": "tNdb_01AHU3O1_ISE2Mf1w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DTSbKTuy1Zc-SO3RpbjGOQ", "review_id": "Xesu2P1w2NdIhmsgEtkeHw", "stars": 3, "date": "2012-05-10", "text": "I've been there twice. Only a girl serve the table. If there are too many people,you have to wait for a long time. \n We ordered the tofu soup. That was great. Others, just that taste. Not good not bad.", "type": "review", "business_id": "6Y-6Y6sy6qOQHrWI37zR1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "R0ekUK-osGP9AoUtyrAEUw", "review_id": "AAVhWT301YqbZQ-Oxp3NlA", "stars": 3, "date": "2011-05-23", "text": "La Condesa is in a rather unassuming location in Phoenix. But has a nice atmosphere when you get inside. The first thing I noticed was their huge salsa bar. We sat down and were brought menus and chips. I tried most of their salsas. They all had their own very unique flavor. the peanut salsa was really interesting. My favorite was their tomatillo salsa. \n\nI ordered the Oaxaca Mole taco and a carne asada taco. The mole was excellent with great flavor. The carne asada was bland and flavorless...huh? I dumped salsa on the carne asada taco and when finished was rather disappointed in that particular offering.\n\nAlso ordered their calabacitas. They were seasoned well and tasted great. \n\nI had a bite of my partner's pork taco and it was amazing. \n\nI am glad we found La Condesa and I will definitely visit again to try some more of their menu offerings.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xAVu2pZ6nIvkdHh8vGs84Q", "review_id": "G3A65rnTkbaCQE3HfnKp5g", "stars": 4, "date": "2012-05-25", "text": "This staff at this United Blood service is first rate. Always quick and effiiant. They are always staffed and ready to go when I arrive for my appointment. I've donated blood at this location 10+ times and have never had to wait. Of course, I can't encourage everyone enough to donate and donate often.", "type": "review", "business_id": "qxLOhhbHYRCnJlZmqntdLw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "shkOSzUcN2hjIJpyufVS9w", "review_id": "TQIOItBX3YcI2MvzJ04Jfw", "stars": 5, "date": "2011-05-08", "text": "I am not a connoisseur of cupcakes so I don't have a ton of references to use on this review. That being said, I'm not really a big fan of cupcakes either. This place is family owned and operated. There's a wife and husband who run the place and the wife's sister works there also, which I thought was great. It is in the strip mall towards the western end of the shopping center.\n\nI tried a variety of the flavors including the Reese With-a-spoon, and a chocolate, chocolate chip cupcake. Coworkers that I shared them with, who are cupcake aficionados, really enjoyed the lemon and red velvet versions. While slight pricey for a cupcake, (slightly north of $2 per cupcake) if you have a special occasion or just want a special treat these cupcakes are incredibly moist and delicious. They also do custom cakes and cake pops, though I can't speak to either of the latter two.", "type": "review", "business_id": "zofs5Ig8kgvtFyp3ySoSBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UPtysDF6cUDUxq2KY-6Dcg", "review_id": "qJK_2c5pvNlnIVWrJyUuUw", "stars": 5, "date": "2009-07-09", "text": "So much food for so little money, and they have kids meals that the kids will actually eat. If you do not like what they offer in the cafeteria you can get food downstairs like Pizza and hotdogs...what kid does not like Pizza or a hotdog?\n\nI had the meatballs and mashed potatoes and they were so good. I wish there was something bad to say about eating in a furniture store cafeteria, but there really is not - it was great food, great service and fun for the kids (there is a play area with a TV that they can eat at too (so the parents can enjoy their food too)\n\nMy wife had the herb chicken and it looked great too, and she said it was really tasty too. She loved it. The desserts were amazing too, and very filling --- SO MUCH FOOD for SO LITTLE THE MONEY!\n\nI wish it was not so far away from Queen Creek, or I would hit it up so much more often!", "type": "review", "business_id": "oBVS96DtPGk9GU8zPx5Hjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "u4MQp3zX9RolLtNnp9FxoA", "review_id": "K2VH5I1ufm1Hw9jT0VJexA", "stars": 4, "date": "2012-01-03", "text": "It's not only a book store but also a community wherein a lot of readers meet. They also have a wide selection of used and unused books as well as novelty items so I get to do my shopping at the same time!", "type": "review", "business_id": "GwSdGrvaXi4BdXNSWKn-EA"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "raCtfWSWifX6KmuPGSu1yg", "stars": 5, "date": "2011-04-27", "text": "Imagine for a minute that you're waiting in a really long line. No, it's not the line ride. You see a menu on the wall with your ordering options, but before you are anywhere near someone that could take your order, you're yelled at.\n\n\"Hey! What do you want?\"\n\nDon't be afraid, but don't be surprised either. Keep your cool and order your dogs. Immediately start thinking about if you want fries or rings (onion rings) and be prepared for when you're called upon again. Then watch as your hot dog is mutilated in front of your eyes and what appears on your tray is what looks like a hot mess of decapitated food.\n\nNever fear though... because it is amazing. Well worth the wait and one of the best dogs you'll ever have. My favorites here are the white hot and the bratwurst. Whenever I know I'm going, I end up salivating like Pavlov's dog for hours.\n\nThe booths are classic hot dog stand style and the pennants lined up along the top of the walls are fantastic to look at. One started a whole conversation and research one day about a basketball team we knew nothing about.", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "tdNV2Wb0LrFpm1Yfov_Klw", "review_id": "GNCjDt-_8C0cdKVJD00Q3w", "stars": 4, "date": "2009-02-17", "text": "Oh good another Paradise Location for meeting up with friends after work. Clean neat and well manned , the worker bees seemed in real force, cleaning refilling and picking up plates. Nice to see. \nFood wasn't quite paradise but it was tasty and filling . I usually have the panini with chicken and artichoke but today went for a Chicken wrap.Tasted like a chicken wrap. The peach decaf teas was refreshing and the mango tea was too. \nI love the casualness of the setting and the ease with which you can order at your leisure . If you are meeting people with different time constraints , this can be very helpful.", "type": "review", "business_id": "euSK0uPFinytVDR_UROMTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TmEPymvZ2Q9QCSJi6Q63Cw", "review_id": "5lp7FVVwKZieGOClKlclqQ", "stars": 1, "date": "2010-03-07", "text": "My husband and I heard great reviews about this restaurant and we decided to give them a shot. One word can describe this place GROSS!!! The food sounded great but then you took a bite and ewww disappointment. The salsa was lame, the chips stale. There were only two good things about this place the soda and the waitress was nice. Other than that don't waste your money GO TO ABUELO'S...it may be on the west side but it never disappoints.", "type": "review", "business_id": "jzPMl-NoB5F2fwoHX3hN8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uVU1FyUPPVxzZ8jbye-rFA", "review_id": "mJIV2UpS6jiW_nKi71cOIw", "stars": 4, "date": "2008-12-09", "text": "I remember this place being good the few times I went there. I had a chicken salad sandwich one time that was awesome. I miss it.", "type": "review", "business_id": "5-X03Zc0nN7U5eoe8uFUdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Ek_t82OUnerdlO0D-GVcxA", "review_id": "w-kcoFCZhFiIoM9GuOQ9yg", "stars": 4, "date": "2011-08-27", "text": "oOoh been here once for dinner and about three times for lunch...it's really a great place for a quick and easy meal and it's not too fatty like other fast foods..and it's pretty cheap. \n\nI love their 3 piece dark meat rotisserie chicken that comes with a delicious cornbread (I'm usually not fond of cornbread) and two choices of sides. I've had the creamed spinach, corn, veggie mix, squash mix, roasted herb red potatoes and sweet yam which is my least favorite....the sweet yam casserole is just too sweet for my taste...so not a big fan of that one..other than that the other sides are pretty good. The meatloaf meal is also really good...two really good size slice of meatloaf also with a choice of two sides and a cornbread...2 bucks more expensive than the chicken but sometimes you want something besides chicken. heh\n\nSo for a quick easy cheap semi-healthy meal that does not consist of a hand full of grease (burgers, pizza, tacos of that sort..) then Boston Market is really a fantastic choice =)\n\nYummers!", "type": "review", "business_id": "aSW8D-uiz8mupVU8XNlZlw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tWM0SfyOhevQfhj2r15Rwg", "review_id": "KKLGZO2anwwzYy5SVf7E5A", "stars": 5, "date": "2011-10-18", "text": "We stopped here on a Thursday night on a raving referral and they we not exaggerating - this place is fantastic!\nWe are always a little hesitant to try a new place when an omnivore suggests it, but as vegetarians, we found Sekong by Night so accommodating! They offered to convert nearly any dish on their menu into a vegan alternative, and it was delicious. The spring rolls are really big, and they swapped their fish dipping sauce for a vegan version. We had the Phnom Penh Noodle Soup with tofu & veggie broth (just like the Vietnamese pho!) and the Katheaw Cha rice noodles with tofu instead of beef - AMAZING. \nService was top notch, and as many other reviewers noted their prices are unbelievably low for the quantity and quality of food that you get.\nLooking forward to our next visit and trying more fantastic dishes!", "type": "review", "business_id": "nlFlIeziD-4nNUF2B337Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_p9EnnLQg6KDlIRU2fYEJA", "review_id": "GQIljxu_QXhIP4btPOcAug", "stars": 3, "date": "2011-10-17", "text": "I ordered the Peanut Panang Chicken.... I rqstd to the waitress that I wanted extra Bell Pepper. When it came, it had -NO- Bell Peppers at all.... i actually didn't realize this until about 5 mins into eating it. could not find our waitress, I waited about 7 mins, finally, I had to get up & search for her. I found another waiter & told him my problem. He took my Dish, but then came back to tell me that they are \"All out of Green Bell Peppers. Would I like Red Bell Peppers\". I said yes, of course. This whole experience has put a sour taste in my mouth about this place, which is next door to the 'mediocre' Good Egg on Central. I like Wild Thaiger on Central MUCH better instead!", "type": "review", "business_id": "IRxBQfA7FdHhzrPjtBxuuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C_uA1JTMe8QteqDEG0UjyA", "review_id": "UnGcmnPGMyPkBTD-0MECuQ", "stars": 3, "date": "2009-05-25", "text": "For cheap pizza, it's as good as it gets. More selection than the other cheap pizza places, and the quality is way better. The wings are delicious also, especially the Cajun flavor!!! If your looking for something like one of the big chains, then go there, but this is good for the money. If you want gourmet pizza, then go pay for it, don't look for it at the bargain places. I paid $29 for an XL pizza with two toppings and 20 wings, and everyone was happy! Just know that it's really fast pizza, but it's better than the other big guys!", "type": "review", "business_id": "PYqGWEWUH6x-BO-lIS2hPw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-cms2ELbzY2rSyGCVcioUQ", "review_id": "2PGogS3a-skLtTzjgZ8ihg", "stars": 5, "date": "2012-09-12", "text": "C'mon! Fresh sandwich lunch for $3? The place makes it to order, incredible variety of baguette style sandwiches. Cash only, but the have an ATM in the lobby with a low fee. Or is it no fee? Anyway, great coffee and drinks and teas. Line moves super fast. Number pickup system is funky. My family packs these things to take home on the plane!", "type": "review", "business_id": "e9nN4XxjdHj4qtKCOPq_vg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "PYmsFrmxGeR4eCvFZheXDA", "stars": 3, "date": "2008-08-29", "text": "It's true, there is a real bull and a slide. This place has been around forever, I think my parents used to go there back in the 70's. \n\nI can't say much about the food since I've only been here for happy hour, which was pretty decent. Their HH included top shelf for 3 bucks and some cheap beers. They also have appetizers on the HH menu, sliders, quesadillas and potato skins, that sort of stuff.\n\nPretty nice view and going during happy hour you can see all the people sitting in traffic on the 10 and cheers them from the balcony.", "type": "review", "business_id": "wZwZcte4lcbu51NOzCjWbQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "7ZRo9le7JUjRXT_lSgre6Q", "stars": 5, "date": "2011-04-18", "text": "I'm fairly new to the whole Costco experience. Now that we've bought a house it's time to buckle down and buy in bulk! As as new user I'd thought it would be helpful to post the following neat services Costco has to offer:\n\n1. Great deals on contact lenses. Before I would buy my contacts from justlenses.com but through Costco I bought 8 boxes (a year's supply) and received $50 off! $25 off via instant rebate at the cashier and another $25 off via mail-in rebate which came in less than a month after the order.\n\n2. PIZZA AND HOT DOGS. The take out pizza is huge and only 9.99 and the hot dog and coke pair is only 1.50. These make for a delicious and quick lunch. They also have smoothies and salads if you're looking for something on the \"lighter\" side.\n\n3. Food expos come and go often. Recently I got a deal on a 10 pack of pita bread, a huge container of hummus and pita chips for 12 bucks. The company was from California and let customers try as many samples as they pleased. It was well worth the money and super fresh!\n\n4. And here's where I feel Costco has really benefited me. My fiance and I booked our honeymoon to Tahiti through Costo Travel! I'm big on comparing prices before making a big purchase and Costco was hands down the best price. It included seven nights, hotel and round-trip airfare all for one great deal. The customer service agent I spoke with was friendly and more than willing to answer my 500 questions about travel. I would recommend Costco Travel to anybody looking for reliable customer service and excellent travel/airfare packages.", "type": "review", "business_id": "ZAd2hniecnqH00t01ODQ3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a_V8LRfMxGvpGtTwR2olrg", "review_id": "8CMXkvJ__S0Fbkpq1RlFlw", "stars": 4, "date": "2012-12-05", "text": "Great food at a great price. Not the best Italian food but definitely a step up from all of the national chains. Also great lunch prices", "type": "review", "business_id": "RQWliUrWic_b5FZEj3JThQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xfz_Bb4RIYH7N3luWqbyHQ", "review_id": "h4DCMEWyyhuuIXoDisEvhw", "stars": 3, "date": "2010-01-26", "text": "This place was highly recommended by various websites, so I gave it a shot when I was in Scottsdale. The service was great and the food was good. \n\nWe sat in the bar area which was lively. It feels like a neighborhood hangout, so everyone looked like they were friends and having a good time.", "type": "review", "business_id": "gHKB66up5VluCWT4vuSZpw"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "jvwnIG5wEjdOsqkYJgN29A", "review_id": "kGHQ9_lmTz4uHEzEV1jN1Q", "stars": 3, "date": "2011-07-15", "text": "Third time back. This is my 9 year old daughter's favorite restaurant for special celebrations. Maybe because the portions are sized for her. \n\nJust kidding. Sort of.\n\nAlways good food. Sometimes terrific. But never consistently, hit the ball out of the park good. \n\nThe bill creeps up on you. We can't ever seem to walk out the door with less than $80-120 bill for 2-3. \n\nLast night, had the filet. At maybe 5 ournces, bigger and more substantial than the last time, when I think I paid $32 for 2 ounces. Seriously.\n\nLast time the steak was perfect. This time, they overcooked it, but I didn't have the heart to send it back. So my wife ate it and enjoyed it, and I got her salmon.\n\nSalmon was just okay. BUT, the bed of rissoto, one of my favorite dishes, was delightfully rich and creamy.\n\nOverall, it's not a terrible value. And it's a cute little french restaurant. COMPLETELY and totally not appropriate for small children, so don't even try. Great date place.\n\nWhatever you do, you MUST try two things: \n\n1) Onion Tart - it's just a slice and a side salad as an appetizer, but OH what a slice.\n\n2) Berry Tart - the deserts are what makes this place go. Save room. \n\nRemember this:\n\nIF YOU GO TO A RESTAURANT WITH TART IN ITS NAME, AND DON'T ORDER A TART... well, what can I say. Just don't do it.\n\nWill be back, as I always have, and will promise to only feel slightly mugged next time I pay the bill.", "type": "review", "business_id": "LzpR_jE6VIutJ08s2cdRrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1NWEP3GpFxrADPXYYTiWLg", "review_id": "SuTWGGmGzZC_fwoa9-YWMw", "stars": 5, "date": "2011-02-15", "text": "PHENOMENAL place for Chinese cuisine. The portions are HUGE! My fiance and I always only order one thing and share it, and still always have leftovers. The menu prices are very reasonable. Including tip, we usually don't spend more than $15 for the both of us for dinner. They are very personable and attentive to your needs. I love that it is a very dainty, and has a very laid back atmosphere. The lemon chicken is our favorite!! :) They are also very kid friendly. We have an 18 month old son who always leaves a nice pile of rice on the floor every time we leave lol, but they love him! Highly recommend!", "type": "review", "business_id": "CqKiF2X0_4erH02-CUiweQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EpC7vMp0hg1wGBQ6fzzoQg", "review_id": "w8E_0tKsXCf6sREqI65kVA", "stars": 5, "date": "2009-01-24", "text": "girlfriend and i always stop here on our treks to lee lee market. If you haven't tried pho (pronounced fuh) , this is a great spot. Basically its a beef soup thats a thousand times tastier than campbells. its served with a plate of crisp and fresh veggies, like bean sprouts, jalapenos, basil, etc, that you can throw in the soup. i recommend using the spicy sauce that has roasted garlic in it instead of sriacha. we also had the lemongrass beef salad which was equally good. Everything is fresh and tasty with great service. \n\nmake sure you take dobson for the easiest entrance as pho ao sen is facing west!", "type": "review", "business_id": "yMUVflS-2SnOGafXmdHy6w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "ezxgXFeFA15ooTd1d_rdeQ", "review_id": "iTZCkFT1uXoGGUNBC2_IGw", "stars": 1, "date": "2011-07-12", "text": "Nice facilities, nice AC, but two FATAL flaws:\n\n1. Children running around yelling and screaming at all times. This is a failure of the parents and, more importantly, of the staff who apparently REFUSE to enforce any kind of policies against noise whatsover.\n\nTo parents and staff: THIS IS A LIBRARY *NOT* A DAYCARE!!!!!\n\n\n2. The \"collection\" here is 90% DVDs and \"Dummies\" books with trashy novels thrown in for good measure.", "type": "review", "business_id": "2CYIJPEd2SQ38khwuULvAw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "n9Zg0jlOGtxfIrvoPm6Hhw", "review_id": "auzbQeAujcH2EuuHDEY61g", "stars": 2, "date": "2009-08-20", "text": "At first I was happy to find a dry cleaning shop that was on my route to/from work and had good prices. The whole pay in advance thing and only accepting cash or debit card (with a 50 cent charge for debit) was a litte inconvenient, but that was OK. The first few batches of items I brought in came out great, but then the quality started to go downhill. I finally gave up on this place when 3 separate batches of items I brought in came back wrinkled, like they were not pressed completely. Even the simple items like pencil skirts looked like they hadn't been touched at all. Huh? A low price is not really a bargain if I have to iron everything again myself once I get home. Thanks but no thanks!", "type": "review", "business_id": "cAhn-O2kSI0BNPSCDKdNTQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "omGocLsyIYeiHPviDOAa3w", "review_id": "MFEGc4-SXd5ipDyT8hg7bw", "stars": 3, "date": "2010-10-17", "text": "3 Stars only because the house margarita and guacamole was so good. The food was decent (fish tacos), however the patio atmosphere was a bit sad. I understand this is more of a bar than a fine dining restaurant but the patio tables had no place settings, condiments, etc... Just cheap metal tables and chairs. Also - there was no music out there, just this incessant humming of a back alley generator. \n\nThe service was a bit sporadic out on the patio as well. We were asked by three different servers if we have a server yet. Not much in the way of organization. \n\nMaybe management just hasn't gotten around to fully organizing and furnishing the patio yet. I hope they do, because they are in a great location and the food and drinks give them lots of potential.", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Sa64rQmghfE9i17_dRIDyw", "review_id": "5laPcPl6WaKfj0PXM8WZHw", "stars": 5, "date": "2009-05-21", "text": "I was hoping to be the first to review Grayhawk Family Chiropractic, but I'm glad to see Heather feels the same way I do about them.\n\nDr. Frank Sorrentino is a true professional. I've suffered from low back issues for years and Dr. Frank always knows how to treat the problem. Between regular visits and the website they set you up with to demonstrate stretches tailored to your condition I'm glad to report I've been in good shape for a while.\n\nWhether you have an ongoing issue or have just injured yourself Grayhawk Family Chiropractic is the place to go.", "type": "review", "business_id": "T4XMgqYiEsALBW_st6diUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LZZNgNIuA2W4mn-5LLH24g", "review_id": "_0Y6QAT1dBOVmYOXIoVpKw", "stars": 4, "date": "2011-03-21", "text": "Tough to rank this place... it is a retirement community first off. The club house is awesome. Pool is salt water and heated. Courses are nice, little bit of a challenge but basically flat. The putt putt course is very challenging and really cool. I'm not impressed at all with the club food and suggest staying away from the roast beef. It seemed fake.", "type": "review", "business_id": "is-olmqaSZ0KCoe-_ftW5w"} +{"votes": {"funny": 5, "useful": 3, "cool": 2}, "user_id": "45V7-1r79DEG0HbuaKYIlg", "review_id": "wWAlAO4zG_EdzyDmjVlGXw", "stars": 4, "date": "2011-06-13", "text": "Now accepts plastic! Now accepts plastic! Did you hear me? Harvey's now accepts plastic!\n\nI've lived around the corner from Harvey's for a little over 4 years now. I had lunch there once in the mid 1990's, and went in to watch a Suns playoff game a few years back when my friend was decked out in Spurs gear and we were nearly lynched at Half Moon. Quick lunch with a girlfriend who was in the mood for a burger about a year ago. \n\nWhile I love, and I do mean LOVE a good dive bar, this place scared the crap out of me. I'm young, not hideous, female, and not of the meth-head variety - so not only did I not blend, but I felt targeted. Sad, really. The ONE bar within easy drunk stumbling distance from my house, and I wasn't happy going there. During a weekday for lunch was more or less okay. But evenings are when the freaks come out. And I don't mean the freaks like me. I mean the dangerous crazy ones - not just the fun crazy ones. There's a difference!\n\nWell, enter the new roommate. He was disinclined to believe my review, and insisted we go. I resisted until late Saturday night, when he came home at 1am and insisted I get dressed so we could go there for an hour. Maybe I was tired. Maybe I needed a change of pace. Whatever the reason, I gave in, got dressed and we walked over to Harvey's.\n\nYAY! According to Echo, the bartender (yes, it's her real name. her parents are hippies like mine), the owner has been working hard to improve the place (read: clientele) for over a year. It shows! \n\nEcho is three shades of awesome - the perfect gal to be running the bar! Easy smile, quick wit, great sense of humor and the talent to mix a great drink while cooking any of the grub from the menu. She is a one woman show and pulls it off like a champ!\n\nJune drink specials included $2.00 Beam 5 Star bourbon, Yukon Jack, and I don't remember what else. I asked for a bourbon and coke, the roommate asked for his bourbon neat. (Brave - cheap bourbon *needs* to be cut with something!). The pour is solid and consistent Oh, and did I mention you can get a mixed drink, anytime day or night for just two bucks? For $2!!\nTwo drinks for me, two shots for him, a beer chaser for him and a cheese wineburger split between us. Under $14!! Holy hell, it's cheaper to drink here than it is at home!\n\nAnd at home - we don't have the entertainment of the other patrons. Like Cowboy who would do the splits on demand. And suggest my roommate go through the needed steps for a game of \"rodeo\" with his girlfriend. You just can't make this up!\nOh - and he bestowed slightly drunk me with a new nickname.\nApparently, I am a \"prick ass bitch.\" I don't know how he meant it, but I am taking it as a compliment and will wear it with pride!\n\nOh, yes. I will certainly be back! A LOT.", "type": "review", "business_id": "ntJAKLAq0cXzzdFgPoo0Iw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CgfIRB7t_7a8l_MlrUuX6A", "review_id": "mGHKnvoyK-eF_WzhT3QOSw", "stars": 4, "date": "2012-06-16", "text": "Lacking a clean or acceptable Chinese restaurant in Casa Grande, I discovered this jewel while showing homes in Anthem. Menu has many choices and restaurant is clean with attractive decor. The dishes I have chosen so far have been excellent with nice portions. Service is friendly and efficient. Well worth the drive from anywhere in Pinal County!!!", "type": "review", "business_id": "VfzUmXIgowYKutptfwR7Aw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "Aqv8nmSkIgc3C2aCfdKcFA", "stars": 3, "date": "2012-03-26", "text": "Saigon Nites is one of the few Pho joints on the North side of town.\n\nI ordered me a bowl of Pho as usual, but I think the waitress made sure I knew what I was ordering, so she repeated and asked \"Beef Noodle Soup\" ... Yes, \"Beef Noodle Soup\". I forgot I'm in N. Scottsdale where culture can be lacking at times. I'll have me a bowl of Asian man soupy stuff and some noodles - wink! I also ordered some ice coffee with condensed milk - can't have Pho without one of these drinks. \n\nOverall, the Pho is okay. I'm somewhat of a Pho Nazi and this didn't really past the test. My ice coffee was excellent - Why? It was served just right! Not too strong and not too lite. I'm really used to having it strong and simmering it off with some water to weaken it. Not today my friends! \n\nService and ambience is okay. I really enjoy the Vietnamese art here especially the portraits of the Ao Dai...Girls in Ao Dai - oh my! - Enjoy!", "type": "review", "business_id": "jf4RUa9EQO37hqxRCxbEXQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "fYayRBmQjB8f5eyH1WR-1w", "review_id": "zhfp4kaBwDLFPtiCiTG2ZA", "stars": 4, "date": "2012-01-03", "text": "I like Buffalo. They always buy my stuff, and I like looking around at what they have. \n \nI think the reason a lot of people don't like this place is because they try to sell ugly nasty shit that no one wants to wear. It's a recession, so, you're not going to get top dollar for your J Crew tee shirts that you bought 4 years ago that have pit stains and are hideous. Duh.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "sPEFql7fLp0oouFxnooGpQ", "review_id": "EjGiSg2TkOFHV_TOpseqDg", "stars": 5, "date": "2011-11-05", "text": "This cafe provided me with my first Ethiopian cuisine experience. It was delicious and I am eager to go back. The most impressive thing to me was their selection of vegetarian dishes. They had as many options as those with meat which I really appreciate (doesn't happen very often.) The service was great. You can tell this is a family run restaurant that cares about their patrons. The food is very reasonably priced which make it easy to try a variety of dishes. \n\nWe started with the shorba which is a lentil based soup. This was probably my favorite part of the meal, it was absolutely delicious---satisfying and hearty. We also had the vegetable combination which had 5 different dishes served on the injera, a crepe-like bread you eat the main dishes with.\n\nThis is a fun way to eat (with your hands) and opened up a new world of foods for us! Can't wait to go back and devour a bowl of shorba.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "RT6qe2ZAANWsBBZLhbTxKw", "review_id": "jPZphpCBUZobuzNzLQY4Sg", "stars": 5, "date": "2009-02-05", "text": "This is hands down the best place for bagels...\nbut more importantly... after all my travels it has the BEST Bialy ever.\nI just wish they would open on in Greenville.\nOh it is soooo good, a poppy seed bialy toasted with cream cheese...\nI guess I can only hope they are always open when I visit Scottsdale...\n.n", "type": "review", "business_id": "El_0LAdJ1R0-nL_lHzBT-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y5vDLDoA5Khmzh285yNUQw", "review_id": "glBPsp_i7ylnKHkxz_CWVg", "stars": 3, "date": "2012-05-03", "text": "Hmm...this place has a good lunch happy hour, but the choices in the menu are kindof limited. The food isn't bad, but it's not amazing. So, three stars for being average i guess?\n\nI do come back every so often so I guess it's a plus.", "type": "review", "business_id": "gqLWBFxOKag8dXwVxEvTrg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3PHlBza2z6FV29vvUGZV6g", "review_id": "cmP4uWEXq4yPcOQEFWIByQ", "stars": 4, "date": "2012-04-06", "text": "Great food, great atmosphere. Look for the grafetti out back. Not \"Mexican food,\" but Mexico City cuisine.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "vmlDLL8TwdLP3YwxHj6F4A", "stars": 4, "date": "2007-10-05", "text": "Union is a nice cozy place set on the fringe of Old Town Scottsdale. The inside has a nice homey feel with booths that have extra throw pillows (love that) and soft lighting and desert scape paintings. A big drawback is that while half of the seats face the lovely paintings the other half face the kitchen. \n\nThe wine flights are good but the pours are inconsistent and not as hearty as in some places. The bulk of their wine menu comes in bottle form. They do offer 8 oz pours of wine for about $15 a glass. Be careful when you order, as we were given 8oz pours and had no idea we were getting them. \n\nThe food was quite good, they actually had real grilled focaccia and this garlic cream butter that was delicious. Its tapas style and we ordered three and it was more than enough for the two of us. All of the tapas we ordered were well prepared. We also ordered dessert which was very mediocre. \n\nI would come back again but probably for a happy hour. As far as food goes it wasn't my favorite at a wine bar. They do have a patio out front that looks like it would be very cozy on a cool evening.", "type": "review", "business_id": "shUiQtVZpk_YCUmMYJZf-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qlbiTIcn1-hDeHhEF1PLyg", "review_id": "ujWd0VmmyuMkseB4k0u0Gw", "stars": 2, "date": "2011-07-03", "text": "We went to \"THE PLACE\" for breakfast/lunch today. It must be a popular spot and was very busy. There were 2 specials of the day, Eggs Benedict and a French Toast stack. Both came with a choice of potatoes.\nI went here based on the reviews from fellow Yelpers. \nMy daughter ordered the burger, it came with fries AND salad for under 7.00. The burger was very well done, but it was 1/2 lb of ground beef. The fixings were on the side and it arrived on an unremarkable hamburger bun. The fries were crisp and the salad was fine but it was DRENCHED in a watered down thousand island dressing.\nMy eggs benedict was fine. Nothing to make me want to order it again, but not bad either. I would try their pancakes next time. They looked pretty good!\nMy husband's french toast stack arrived. 3 pieces of french toast with ham,egg and swiss cheese between the layers. Kinda like a Monte Cristo sandwich. They bring out warm maple and berry syrup. My husband liked it. But, said he would try something else next time.\nI ordered my hashbrowns extra crispy, my husband ordered his \"burnt\", his order came out exactly how i wanted mine. Crispy dark golden and cooked well. Bummer I had to just eat the top of mine. We also wanted to try the biscuits and gravy. What a big let down. Quantity does not equal quality. The biscuits were large, and the gravy bland. Our service was ok. The people working there seem nice enough. They were giving out free THE PLACE frisbees.\nThey will be closing 7/21 and will re open 8/1 at the new location right up the street at 51st ave and Bell rd, in the old 3 Margaritas building.\nHopefully I will be able to update this one day and give a better rating.\n But for now, I will stick to Ronnie's Cafe on Cactus rd. as my go to breakfast joint.", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "OoyMyBD0a-QmEJrFzw78Fw", "review_id": "18bXhCOgwf_-TnvRSr8zWA", "stars": 1, "date": "2011-05-14", "text": "The wash ain't bad....but the process to get it done is pathetic. The ticket writers at the entrance move in slow motion. They try to upsell at every opportunity. Four cars backed up waiting to order their service...and the crew is standing around with no cars going thru.\nI'd rather drive my car dirty then endure the agony of incompetent management.", "type": "review", "business_id": "ncxBZxetREZ_jCma0c7mHA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "k2u1F6spBGhgk2JtAe97QA", "review_id": "jbEge4WZdQLOGuuO9mSTaw", "stars": 4, "date": "2012-09-27", "text": "Somebody please tell me why QT is the best gas station/convenience store ever?\n\nThe layout is the same for every one. The bathrooms are always less gross than other convenience stores. The service is always phenom. Gas is usually relatively cheaper than other stations in the area. Plus its like a one stop shop for emergency \"got to have it now\"s like snickers and chicharones and energy drinks and milk and wipies right? Hahaha!\n\nI don't know. My yelp told me to write a review... =D", "type": "review", "business_id": "MHy50GRrcXxMORpF_-kNCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Q5dlLCEni_my05az9wIptg", "review_id": "iNH54kIw3a0CpXV9n-jpFQ", "stars": 4, "date": "2009-01-11", "text": "Sakana is one of the few sushi places that I return to. There is usually always a wait (no reservations, which is a PITA), but the sushi is fresh, service is quick (so it's not always super friendly), and the calamari salad is SO effin good. Their lunch specials remind me of something I'd find in So. CA-- tasty, filling and reasonably priced. It's lively on the weekends with several tables doing sake bombs so it's a fun place to celebrate birthdays.", "type": "review", "business_id": "gqLWBFxOKag8dXwVxEvTrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ujDoMIAlFDAP14ebf5Xczw", "review_id": "PlzOnJG_MrVvO6kCPVPl8A", "stars": 5, "date": "2012-03-31", "text": "I am very happy to say that Angela's truffles are taking off here in Cottonwood. I hope I am allowed to say I am a proud purveyor. When they arrived I was impressed by their design and further blown away by the flavor. (Tears in my eyes...) My darling, have no fear, there are people up here who understand flavor, quality and most importantly: Great Chocolate! My beautiful patrons have latched onto these delectable wonders and I am happy to say The Cocoa Palette will always have a place in Northern AZ Wine Country with Bonne Lait! Bravo mon ami!", "type": "review", "business_id": "QMIR_VeLPSOp-d730i5mJA"} +{"votes": {"funny": 1, "useful": 4, "cool": 0}, "user_id": "XXVfsLunIiz3xDeK17aHFQ", "review_id": "AfvArcoRrCIju2GGiItIJQ", "stars": 1, "date": "2012-02-08", "text": "I guess this is an east coast/midwest thing because I really don't get it. I'm not a picky eater and I HATE wasting food and money, but I could not finish my plate. I ordered french toast and I was not aware that my french toast was going to be deep fried. Seriously, when I put my fork through it, a piece of fried toast hit me in the eye. My husband was also not impressed with his food. If someone would like to suggest something delicious on the menu that I should try, please let me know because I currently want to vomit every time I see a Chompie's.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FSbzWWUImH15i7eLbN_NIA", "review_id": "X4oFiD03-HIhZsu-aKUSQQ", "stars": 5, "date": "2011-03-31", "text": "I had a mani/pedi and they did a wonderful job every time I visit.. The place is clean and the specialists are very nice..", "type": "review", "business_id": "YTJCfo47UHkGVgIsjPRRaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "nGvxLe5jdJGbxTYt9XjScw", "review_id": "GskYdaShicrZ_1dzsH1kog", "stars": 1, "date": "2011-12-16", "text": "Shocked this place has 4 stars. First off you can always tell if a Mexican food place is good based on the beans and the salsa. Well guess what both suck! Eat at el molino's and you will never come here again!", "type": "review", "business_id": "h7hr0v3E1ulU2sXNItD5UQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IkC2BKzADqgPlvaac5gRHg", "review_id": "o12QHoZXFitUgTOXqZLjjA", "stars": 4, "date": "2011-06-13", "text": "I love that the airport has a place with fresh, healthy, customizable food! Paradise Bakery has a salad bar (how often have you seen an airport with a salad bar?!), and though they don't have the hugest selection of toppings there are a good number of interesting options beyond just tomato/cucumber/carrots. The bakery section has a lot of tempting treats and a good standard selection of sandwiches.", "type": "review", "business_id": "E0f8jFeNaL8ARG-vq3apVA"} +{"votes": {"funny": 2, "useful": 2, "cool": 0}, "user_id": "-eIsz3-MIQT6ueiM4MusHg", "review_id": "q8vdAmKI2h1eOtoWGYkz7A", "stars": 2, "date": "2010-05-14", "text": "I'm torn with Cream. I've been to the usual clubs and lounges in Scottsdale enough to be sick of them, and Cream was something new. I like that Cream is emulating Vegas-style nightclubs, but it's obviously trying too hard.\n\nThe decor:\n\nFirst of all, this place is PAINFULLY tiny. I've only been here once, and while it was half full, so it wasn't completely unbearable. But I can't imagine what it must be like when they have guest DJs and other performers in. A tiny place that's packed isn't popular. It's just... small.\n\nThe walls are covered in white (leather?), the tiles are white, everything is white - I get it, white like Cream? I appreciate the commitment to the color but the theme is waaay off. The hard surfaces make the place look cold and very hospital like - I would have liked to see more smooth lines and softness in the design, more flowy like cream.\n\nThe atmosphere:\n\nThe dig the loud music and the techno. I get so sick of hearing the same stupid songs on the radio. I love the change in scene. Phoenix/Scottsdale is so stale in terms of music. This is a nice change. But it's too loud when you can't even put an order in for your drink. I literally had to pull myself onto the bar (I'm tiny, 5'3\") so I could give my order directly into the bartender's ear.\n\nThey also had a really cool entertainment act - a girl hung from a hoop suspended from the ceiling wearing a white bikini. She was clearly talented in her hoop manipulating and was mesmerizing to watch, but like I said, this place is TINY, and there were several instances in which she was inches away from kicking people in the face. And THAT would have been worth the ridiculous cover I didn't pay (I try to find any way not to.)\n\nThe drinks: \n\nOverpriced and terrible. Maybe the bartender THOUGHT she heard me say I wanted a glass of vodka piss, because that's what it tasted like.\n\nI doubt there will be any improvements made that will make me like Cream better, but here's hoping.", "type": "review", "business_id": "3XG4-xRNCHPQs2sAYa66pw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7aMUGpEAhstdk4ZuH7qOWA", "review_id": "qSMaUcXdTV_RuxRnba-K7w", "stars": 2, "date": "2012-09-12", "text": "Extremely slow service, hostess and manager were both rude. I noticed that 2 tables that sat after we did got served first. \n\n4 out of every 10 people that walked in, walked right back out once they saw the line. \n\nWe waited 35 minutes for a table. This was my first and last time at this over priced Denny's", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "LcWp2WChE9HpqdMEM8D2VQ", "review_id": "2s7Nk4IMOqlfR-ZTg5FVHA", "stars": 4, "date": "2009-08-05", "text": "BEST FRY'S YET\n\nFeelin' a little blue, need a doc? No big deal, stop on by...\nForgot to cash in your last paycheck? Pshh, Bank of America ATM AND bank up in this joint\nCrammin' for the next exam? Get your coffee fix on your way out\n\nFood, deli, bakery, flowers, home furnishings, school supplies, I don't know where it ends...\n\nAll I need is a bed and I could live here...\n\nOh wait, they sell them here too.\n\nAnd all this time I thought they just fixed computers and sold TVs", "type": "review", "business_id": "nn7Q8EAysCr3D9PEqZEgkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0KuR8Sy6NKE46MZf4O6MBA", "review_id": "-OfjUL0XavsDwNkaLwKNSA", "stars": 3, "date": "2010-07-31", "text": "I stayed here in March'10 and thought the place was alright, nothing to rave about but here was my experience:\nPROS:\n1. Location was good for what I was there for (work)\n2. The nightly rates were really cheap (this had to do with my company more than the establishment though)\n3. Easy enough drive to/from the airport\n4. You can almost bypass Phoenix altogether getting to Scottsdale.\n5. Their was plenty of shopping places about a mile and a half up the road (think Best Buy, Target, McDonalds, etc...)\n6. A pretty happening restaurant/bar up the street that gets two thumbs-up\n7. The rooms were actually really spacious and nice...it was like having a luxury one bedroom apartment scaled down for size (full kitchen, massive bathroom, den seating area & king size bed in a comfortably sized room).\n8. Hot tub was rockin' & nobody gave us a hard time about having glass bottles out there.\nCONS:\n1. Once I checked in, I had to lug a ton of stuff over to a room in the one of the back buildings and I couldn't see my rental car (maybe I'm weird...but I like to have my car close by)\n2. I unpacked and got situated to find that the internet in my room wasn't working (Must have!), called the front office and they had to move me to an entirely different room (mind you I just unpacked...AGH!)\n3. I ate dinner a couple times with co-workers in their lounge, & while it was good...it wasn't great, so we all ate at the restaurant/bar up the street the rest of the time.\n4. Be aware, you stand a decent chance of see spiders looming around...so you have been warned, but otherwise it's real clean.\n\nI'd stay here again pending that I got the same room rates that I did last time, but it's my understanding having talked to the girls at the front desk that we got booked at unusually low rates.\n\n***Don't get sucked into any of that \"time-share\" crap...they don't push it like some other places I've been...but it's NEVER a good investment***", "type": "review", "business_id": "l5oUrgQ190l8CcN8uzd_pA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4IxLt4QvCsJEdaNvH9QApw", "review_id": "KEYyIpt2maY84dDfK4Qx8g", "stars": 4, "date": "2008-05-20", "text": "Not much to say about Lola's. Its cute. Its quaint. And the food it utterly delish and authentic. Oh, but bring a sweater....they usually have the air on \"Polar Bear\"! \nThe only reason I didn't give this place a 5 is b/c of the freezing temp and the community seating. Doesn't bother me....well, maybe just a little. Can be a bit noisy and bad for private conversation.\n\nBon Appetite!", "type": "review", "business_id": "xdwPHc25l7_roZ9Kfea13w"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "-ONVaeQC7HOPD2FicuDNng", "review_id": "IQECTxd6Xeh48-fQzRD5fQ", "stars": 3, "date": "2007-09-22", "text": "Firesky Resort is a marvelous place to unwind and enjoy the warm dry evening air and fire-lit torches. Whenever I have the opportunity to stay in the Kimpton Hotel Group's locations, I always know I've made the right choice. The hotel was beautiful, hip and inviting. \n\nI gave them three stars because the rooms were a nice, but not fabulous, the amenities of L'occitane products definitely helped. The restaurant Taggio was fine, wasn't spectacular and definitely was the part of the hotel which was least memorable. \n\nThe staff was friendly and helpful. I'd stay here again, but with the expectation of enjoying the wonderful pool/cabana area and leaving the resort for dinner. Scottsdale has so much to offer, what was I thinking....", "type": "review", "business_id": "UKgSs_SJzW9fu4CwhIV1yA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Vx0dDvBvRYXcn5dgnpzvUw", "review_id": "qek2cMLdOgShpXhSNdXq6g", "stars": 5, "date": "2011-10-25", "text": "Well, it's fresh, and it's easy. Perfect words to describe this cute, clean little store! This was my fave F&E in Phoenix because it was a mere block and a half from my place. I STILL miss it, and I moved away from Phx over a year ago! I popped in here several times a week to pick up staples, (it was always an adventure to see which prices had been marked down-- they even have a section in cold foods where they mark older stuff way down). I appreciated their little bundles of veggies which were sold in just-right amounts (as in, not so much that some of it will end up going bad). This market was also great for soups (their brand was my pick, although they have a selection of major brands as well); it was also my go-to place for prepared healthful lunches perfect for work (like the F&E pre-made burritos and pasta dishes). \n\nCheck out frozen foods too-- there are reasonably priced items like tempura, and special organic seafood dishes I never found anywhere else. \n\nI also liked the casual setup of the checkout area, with the option for a cashier or self-serve. \n\nAnd...wait for it... I just found out they are opening at least two F&Es in Sacramento!!! (okay, that won't likely cause much of a stir with the Phoenix crowd, but I am so excited they'll be open in my area!)", "type": "review", "business_id": "6fR4ncWEfdMLk9AacDsRzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g5hVihQ30Nn-XoswvlvMvQ", "review_id": "WgbQbDWrOe_fSAUP-y4mlw", "stars": 1, "date": "2012-12-27", "text": "sslowest drive through ever!!!", "type": "review", "business_id": "0le8kj4gIHe9aZ1NfS2_Ag"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "huE7A2WBkTJTyEr2K8Owzw", "review_id": "5w6DSnvrq74jGL-oIxRTsg", "stars": 5, "date": "2011-08-31", "text": "The food really is exceptional. Its like the chefs create these perfect little bites, and they literally are bites, of food that are so interesting to taste.\n\nI'd recommend the sampler dinner. I want to say it runs about $40- $50 but its worth it as long as you like what's included.\n\nIT IS EXPEN$IVE. BUT the BF and I have been dying to try out this restaurant due to all the rave reviews it has been receiving on Yelp. LUCKILY a Groupon appeared for NOCA and we jumped on the opportunity. Turned out the fab deal was only marginally helpful. Even with the Groupon it was still a $150 dinner (plus the cost of the groupon...). Granted we did get a bottle wine (but the cheapest we could find), espresso and a french press cafe... It's like you analyze how much everything costs as you're ordering and are still shocked when the bill comes- I hate that.\n\nOur reservation wasn't until 8:30pm at night, no big deal. The restaurant was still PACKED! AND people kept coming through the door!\n\nIt is not a large venue. And the tables are CRAMMED, uber close together. I know that the four-some sitting next to us are going to Isreal next month, right after their family vacation to Minnesota....", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 3}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "UTTTcbb-p-RmWtG5UGpSoQ", "stars": 4, "date": "2007-07-20", "text": "Saketini opened not too long ago, so they're still having grand opening specials. Get 'em while they're hot!\n\nI haven't had their food yet, but I have partaked in their fantastic drink specials. They have $2 well drinks for happy hour. Woo hoo! Plus they have a reverse happy hour too, which scores them another star. Any place that offers late night drink and food specials is alright in my book. Once I try the food, I'll be back and I'll update the review.", "type": "review", "business_id": "nXKwzVKJCtIGd4HxXgjdnQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "xx2j7XRWLFN7QavS5jcbFw", "review_id": "DuPspPuJcLwzgFOrVVQmCQ", "stars": 4, "date": "2008-06-15", "text": "Golden Panda has a special place in my heart; the part I clog with orange chicken. I'm sure its not the most authentic Chinese meal, although i don't know, but i consider it the best Chinese take out in the area, solely based on this one item. \n\nAlthough I get the same thing every time i have on occasion tried other items that people with me have ordered. All the chicken entries are good, the same lightly fried chicken just different sauces (general tso is my 2nd favorite). The beef dishes are terrible. The seafood is just ok. The won ton soup is really good as well and is usually the second thing i will order if orange chicken isn't enough. I cant remember if the pork is any good but the won ton soup has pork in it so i would give it a shot if you like pork far more than chicken. \n\nThe owners and servers are a bit jaded by the high school students that frequent the place during lunch but will warm up quickly if you go in there a few times. Food comes fast by the way so make sure that when you get take out that you let them know if you will take more than 5 minutes otherwise it will be done and waiting for you after 5 minutes. \n\nThe store has few tables where you can eat but for the most part is a takeout/delivery based establishment. However if you do eat there they have Barq's red cream soda on their fountain.", "type": "review", "business_id": "pa_Ft6pLLWo-w_iopBsu0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "4_YfcfHkCem1onJFkItxjA", "review_id": "V7I6T6jIUcDFgl_tKO1xdw", "stars": 3, "date": "2007-03-28", "text": "Having been to about ten 24 Hour Fitness locations here and in California, this location is probably one of the least impressive. \n\nWhile the staff is friendly and the gym itself is clean, the facility is small and on only one floor (note that it is a 24 Hour Active, not a 24 Hour Sport), and has an industrial feel - like it used to be an old Costco. Weird. It's never really all that busy, so waits for machines or weights are minimal. Gymgoers in North Phoenix will be happy to know that a new 24 Hour Fitness Sport is opening on 43rd Ave. and Bell in May.", "type": "review", "business_id": "oGZIo6Pim2C3NavFDYExYw"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "PGxSH87ZPZW3lHsQA5mJtg", "stars": 5, "date": "2012-06-12", "text": "This is my favorite public pool in the entire valley. It's super cheap - 2.25 for adults, 1.00 for kids. You can bring in drinks and snacks as long as they are not in a cooler (weird). They have a snack bar. It's very clean. Oh and the most important part, they have a lazy river, two big water slides, a whirlpool, toddler play area with more slides, basketball, lap pool, diving boards.... I think that's it. It's quite a drive but it's worth it.", "type": "review", "business_id": "AhB6sqGJY-S4hqyk4Ta8vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cjhSTaDI5XffCXRJsXPmSQ", "review_id": "Y3z--Y7xmtjUX-5JTLyndA", "stars": 4, "date": "2011-07-10", "text": "I have just relocated to Scottsdale and eager to find a great wine bar and/or restaurant with a great wine list...and 5th and Wine was the one place that everyone recommended, so I was eager to check it out!\n\nI decided to check it out one night after work, and asked a few co-workers for some delish food choices to try...the bruschetta was the one to try!\n\nI loved the ambiance, very social atmosphere, nice bar scene and small tables, but they also had another room for tables further away from the bar which was more chill and quiet atmosphere. I was quickly seated at a nice table in the more quiet area, and could scope out the scene. \n\nI started with a delish glass of Charles LaFitte - Brut France sparking...which for $9 was a deal and refreshing!\n\nI quickly scanned the menu for the bruschetta and my mouth started to water with the selections. I opted for the prosciutto/fig/marscapone bruschetta and the standard mozzarella/tomato/basil bruschetta! Both were totally delicious! The bread was lightly toasted and a bit soft...not like your typical \"crunchy\" bread bruschetta...which I actually enjoyed more than I thought I would. \n\nI ordered the Beef Bourguignon Julia Childs' \"Beef, Wine, Bacon, Mushroom Stew\" over egg noodles...for $16.96...again, a total deal and totally tasty! The beef melted in my mouth and the mushroom and sauce was hearty and flavorful!\n\nAll in all, the meal was wonderful, and the service was great - very attentive staff - Jonathan, my waiter, was super personable. I also met Scott Yanni, one of the owners, who came over to see how my meal was...and he was very gracious when I told him that I just relocated here and was very happy to find his restaurant as one of my new favorites!\n\nI will definitely be back for more of their great menu and tasty libations!", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zTgFzcfAUuUkDWix6FKYqQ", "review_id": "JTDnd6DHhZztuBQTkk5oVg", "stars": 5, "date": "2012-08-27", "text": "Just came from there as part of my trip down the Apache Trail. My 9year old daughter loved it so much she insisted on stopping in again on the way back. The town is really cute with tons of photo ops. We picked up a few fun souveniers and some prickly pear fudge. We did this in 100 degree temps and still enjoyed it. For those curmudgeons moaning about this being a tourist trap, RELAX....the kids love it. This 40 something mom loved it. It's free to just walk around. But definitely do the Mystery Shack. Weird and fun. I actually got dizzy in it.", "type": "review", "business_id": "O4jXtRnS_R9SyM7ckMhFmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ajEWtu_h76FDdEDxwdTWmg", "review_id": "LejfQ5QUUn_DsyqjxCT-HQ", "stars": 3, "date": "2010-04-27", "text": "I usually get the Arizona Smashchicken or the Arizona Cobb Salad. Both are always delicious! Sometimes they are really spicy and other times not so much. I guess it depends on who is making it and how many jalapenos get in there. The chicken is really flavorful, unlike a lot of other chicken sandwiches/salads where the chicken is bland and adds nothing to the meal. I think I am the only person I know that isn't a fan of the Smashfries. They are generally tasty, but I would far prefer regular fries. I really like this place, but its a little pricey for what you get. Lunch for two will probably set you back a least $20... its not too bad, but your $20 will go a lot further other places.", "type": "review", "business_id": "LYLGCIqNQQrpMwOxJ1hlrg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZirtwB_QHFUGX_7x02jf5Q", "review_id": "Hop9dDEysATHyBwSgz_Yyw", "stars": 5, "date": "2012-03-05", "text": "This place confirms why \"hole in the wall\" places are the best places to get food. Its virtually impossible to find the place but once you smell the aroma of home-cooked Mexican food, you know that you're there. Usually there is a long line; however, their service is quick. With the combination of their swift service and decadently savory food, Rito's is a staple Mexican food stand that everyone has to visit when in Phoenix. I always have a green chilli burrito and haven't quite ventured out to other things on their menu, but I have never heard anything less than positive about what they have to offer.", "type": "review", "business_id": "Xo9Im4LmIhQrzJcO4R3ZbA"} +{"votes": {"funny": 0, "useful": 9, "cool": 2}, "user_id": "rR5W8Bj-IGu6sw1_1v4m7g", "review_id": "nDMBoH-RR-dwTetO6ZW3qw", "stars": 1, "date": "2010-11-20", "text": "I am furious.\n\nIn the last 12 months, I have had at least scheduling issues, from them calling me at 8AM on a Saturday morning (my 1 day off) to cancel my 11am appointment to last Saturday, when I went in only to be told someone had messed up, and actually booked me for the NEXT week, and despite me driving all the way out there at 11am, they couldn't get me in until maybe that evening, and then not with someone who had experience in deep tissue/medical massage. I was irritate and ready to ask for my membership refunded then, but Ashley the clinic manager promised me that they'd give me my next week appointment free of charge, and that she'd personally be certain there were no more issues. As I literally couldn't turn my head to the left due to pain, I took her up on that. BIG MISTAKE.\n\nYesterday (the Friday before my \"correctly\" scheduled massage, I went out of my way to call in and confirm my own bloody appointment, to try and avoid last week's debacle. According to the woman who answered the phone, it looked like my schedule therapist was actually scheduled off, but she went to talk with her manager, and came back to the phone telling me everything was ok, and that she'd call with any issues. Then yesterday evening, I got ANOTHER confirmation call from Massage Envy, confirming and reminding me of my 11:30am appt on Saturday with my preferred therapist. GIven that I've had 3 migraines this week (versus my 0 or 1 when I get a massage the weekend prior), I really absolutely needed to get in, so I felt more confident.\n\nWell, I was just woken up at 8am...again. On my day off...again. To explain to me that, big shock, they messed up my scheduling again, and that apparently, my therapist was off today. Despite Ashley's promise of it not happening again. Despite me being pro-active and calling to confirm. I am sitting here in pain, so furious at this repeated treatment that I can't even go back to bed...and the best part? They don't even have a manager on duty I can complain to.\n\nMy treatment at the hands of the booking/front desk staff has been any thing BUT relaxing. I continue to walk out of there frustrated, angry, and occasionally in tears. I know they say Fool Me Once, Shame On You, Fool Me Twice, Shame On Me, but I was trying to give them the benefit of the doubt. I'm pretty screwed for today and the next week, but luckily, an Elements place with a similar concept opened recently in the general area. At this point, it literally cannot be any worse than massage envy. As much as I love Talisha and Aisha as massage therapists, getting a massage should feel good, and not like you're just a number to them, not like you actually have to spend more time trying to get a damn appointment than you actually get to spend IN the appointment.", "type": "review", "business_id": "CWoXwnoxdFihXB1KhH9goA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B24c_xt-kU-GpH42ZWlksg", "review_id": "YCeTzxmQDiBRnqZGATtPpw", "stars": 2, "date": "2010-09-13", "text": "Checked this place out today for lunch as a possible spot to watch NFL games. Took advantage of their lunch menu and got the sliders. I get my bill and $2.50 is added to my bill for a beverage. I was drinking water. Apparently, you have to buy a drink to take advantage of the lunch specials. I was not informed of this and was pissed. On top of that the sliders were mediocre at best. These specials that have these restrictions drive me crazy. A heads from the bartender about the beverage deal would have been nice. When I questioned the bill, the original bartender who took my drink order said, \"she didn't tell you?\" I'm not going back to this place.", "type": "review", "business_id": "_TWT58PWunYIyPgpz1fuog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8ZwIPH1FTDjte17bXVIspA", "review_id": "KMZSU1O5LzMWiuziuFjicQ", "stars": 5, "date": "2008-12-02", "text": "I was very excited to find this place as you will be when you walk inside and find nice clothes and accessories for even nicer prices! There are several locations throughout the (east) valley. Treat yourself. You will be happy you did.", "type": "review", "business_id": "IbhWOItXWvpZvnx3-USiLw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "0AZPm9X5V-and7oT-Lbtwg", "review_id": "oY58TU4ye0FdKYMRkFOiWg", "stars": 4, "date": "2012-05-16", "text": "Back in town and back to our favorite hotel in the area. Right across from North Mountain preserve, where we love to hike in the morning, or a 10 minute drive over to the Squaw Peak area.\n\nLove the \"falls\" pool area - but if you like quiet, there are other pools - we just enjoy the music and the cocktail service. Different Pointe of View is supposed to be an awesome restaurant at the top of the resort with amazing views, but we usually opt for local, regional restaurants... Via Delosantos, Aunt Chiladas, Mi Patio are some of our favorites.\n\nOnly reason for 4 stars this time is that I used Hilton Honors points for our room and I am a Diamond member.... not impressed with our location at all. We love being up high in the cliffs where you have a view, and this time we overlooked the top of a building. I was bummed... especially since we are return guests. (didn't complain, however...not my style). Next time I will request a better view.\n\nHave to say, however, that upon arrival, we were assigned a room with a group standing right outside on their balcony.... loud, smoking and arguing. We immediately called the front desk to ask to be moved and they arranged it right away, which was nice.\n\nEvery time we visit the same people are working in the pool area - and we always feel welcome. Excellent service and friendliness.\n\nCan't wait to go back.", "type": "review", "business_id": "yR6kgWuMUNG6fjOrzzhfeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "g-p9oxVKCSVfM-SNAZE93w", "review_id": "IVVf4NUgklkQUxV2la2NgQ", "stars": 4, "date": "2012-08-16", "text": "I went to this place with a family member upon their recommendation. \n\nThe salad was amazing! I forget exactly what it is called (cowboy chopped salad I think?) . Firstly it's gorgeous (comes in rows of the ingredients which are beautiful colors; arugula, tomatoes, pepitas, dried currents, chicken, asiago cheese, and dried corn for some crunch) Then when it gets to your table they pour on the dress (a creamy dressing with a slight basil taste to it), and it all gets mixed together. \n\nI believe it usually comes with salmon instead of chicken but we ordered ours with chicken and it was a great fit, I highly suggest it. \n\nThe rest of the menu looked amazing too, but I'm not sure I could go there and not get the salad. So I suggest going with multiple people, splitting the salad and then splitting another entree. \n\nThe decor of the place could probably use a little sprucing up and it's a bit on the cheesy side. \n\nService wise was unfortunately not the greatest experience. It was a slow time and we had a hard time getting our bill or being asked if we needed anything else. Thus the deduction of a star. But I would still give it another try just for the food.", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GZdf2mPWMN_f1HeSkCtYaw", "review_id": "G95Bg8aLINvEj43DZApmXw", "stars": 4, "date": "2012-05-29", "text": "This place use to be a Wendy's for years since I lived down the street. Still, they made it look nice on the inside (they have a drive thru!) and they even had a man playing his versions of classic rock songs on guitar which was nice. The Hostess was also our server and she was super nice (Go Erin!). \nWhen a girlfriend of mine and I walked in we saw the specials for the day and when I saw avocado curry I was sold since I'm addicted to avocados. We got the lettce wraps which was good (wish it didn't come with iceburg though) and got it simply because it came with I believe their sweet and sour sauce AND the peanut sauce. LOVE peanut sauce.\nFrom what I saw, they had a full bar. Beer selection was good, nothing on tap though which makes me a sad panda. I had to order the thai tea which was very good and tried the thai coffee, also good.\nAvocoda curry was amazing! Though when I got the bill I was sad to see that it cost $18... I understand that when they say it's the special, it means that they don't serve it on their everyday menu.\nI'll most def be back, very good place!\nP.S. Came on a Monday night.", "type": "review", "business_id": "cInzGnaFZ3EIItvFXl1MvQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "o1Q0IMCgEI4P13SWiZUXrQ", "stars": 1, "date": "2011-10-20", "text": "Decided to give Tempe Marketplace another try after reading recent reviews (hoping that they had improved). I had to ask myself if we were visiting the same place. The traffic and parking situation are still horrible and the loudspeakers in the parking lot are unacceptable. The JC Pennys and Targets are crippled versions of their regular stores at other malls. The stores here all open too late (11am, REALLY???) to be useful in our uber hot summers (except for a Targets that opens at 8am). \nEven though I am a Tempe resident, I will continue to choose the Riverview shopping area on Dobson over this mish-mashed monstrosity.", "type": "review", "business_id": "OOCLVeqqMFfSnKa7liv0Kw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "O3huqF3nBeWP9Zd6NmCAaQ", "review_id": "VA9vhFnVTB-qYWkj2dKtGA", "stars": 3, "date": "2011-08-16", "text": "This bar is ok to hang out at. I think its sort of frumpy. The drinks are fine, I've never eaten there. They have PBR there. \n\nLots of local people mostly regulars. Anyone can go there an fit in there. I have been a few times but it's not a place I spend a lot of time.", "type": "review", "business_id": "Y-5knOy4atrpy-TJU7gEfQ"} +{"votes": {"funny": 11, "useful": 9, "cool": 8}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "41dG-J3dwBuER-pOKiQTLg", "stars": 2, "date": "2009-03-03", "text": "This location is a glorified garage sale. It smells and nobody speaks English. Children are running free pulling clothes off racks and smashing into people. \n\nIf you are lucky, you can find shoes, but I have never found jack shit for clothes.\n\nGo upstairs to Marshall's and spare yourself.", "type": "review", "business_id": "Nj6ITW0Zhl7LpovGIH6SAg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "6E_RdVKdk-LMp5BoB9mJ4g", "stars": 5, "date": "2012-09-05", "text": "This location opened up just 3 weeks ago, and offers high quality, natural products for mainly cats and dogs, although there is a very basic small animal section. The emphasis is on foods that are more nutritious, healthier, and that don't have corn or soy in them. There is a large freezer section in the back with a good selection of raw food meals. Also, there is a plethora of treats and toys for your furry friend as well. The small animal foods section has a few small bags of hay, some treats, pellets, and toys. I wasn't too impressed with their rabbit selection, and they did not offer high quality brands such as Oxbow which is a bit surprising since they have so many high quality dog and cat products.\n\nJill, the manager, was very enthusiastic and is very passionate about providing the best products for pets. She showed me various treats, foods, and toys, and provided a lot of educational material on dog nutrition and health. She provided a free sample of some nice grain-free dry dog kibble which is highly recommended on dogfoodadvisor.com, which I appreciated a lot since my dog is a bit picky with the food he eats. This is definitely a place to go to spoil and pamper your dog or cat!", "type": "review", "business_id": "I_mPpc15e_97LXM1DiJVaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "PRtRbjwrsz-c4VtYaAOh0w", "review_id": "VCZYX24hy6kYAGKgxY7twA", "stars": 5, "date": "2011-01-01", "text": "This is the best ice cream I've ever had, bar none! I had the salted caramel, and it was wonderful! I felt like I was 7 years old and enjoying my first ever ice cream cone. I also love the decor of the shop, the braille on the back wall is so cool (although I do wonder exactly what it says!) I also bought a pint of their ice cream at Whole Foods, I love Sweet Republic and everything it stands for! Totally recommended!", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kYgPm0uUJo7cO94b84qBog", "review_id": "ZAOfTFuQ86oQ_Rv5lYwzFw", "stars": 4, "date": "2011-04-08", "text": "We went to the Science Center for their body exhibit and then walked around to find something to eat. We chose The Rose and Crown because it was close, not too fancy and the music pouring out was great. We ate out on the beautiful porch of this amazing house and although we don't drink, we were welcomed and enjoyed the experience. I asked the waiter for his dinner suggestion and went with it (fish and chips), my husband ordered the shepherds pie. Both were quite delicious. I even took the time to use the restroom and to see the inside of the restaurant and enjoyed the ambiance throughout the pub. \nI will definitely be back with friends to enjoy again.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "y2ClTl6I-utHQ4Les8zGTQ", "review_id": "bGgmdMteBYZY_mQtSWxpDw", "stars": 5, "date": "2012-08-02", "text": "This 5 star rating is mostly for their boba! They are cool about how many flavors I put into my boba (usually about 4!) unlike other boba shops that only allow like 2\n\nTheir ramen is pretty good and decently priced. However, I don't like coming to this place much ONLY because I don't like coming out smelling like an Asian restaurant.", "type": "review", "business_id": "j7XuypdW_w935NhjbvKPQw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1IN64kMGtO88yd3r6iUV6g", "review_id": "TMAUfoOs-EoKm3NhAyGvUQ", "stars": 4, "date": "2009-05-03", "text": "Just went tonight. Was looking for some late night Mexican food and atmosphere a step above most things that are open this late and found success.\n\nThis place is definitely trying to pull off cool and I think they do a pretty good job of it. Their expansive selection of Tequila, enhances the mood they set out to create.\n\nI do not like that you had to pay for chips and salsa but the food was pretty cheap for how nice the restaurant was, so I think it evens out. \n\nThey might charge for chips because it's the kind of restaurant where you could spend several hours drinking and if people ate chips the whole time that was happening it wouldn't be profitable. I say this because their alcohol is a good deal. 16 oz. Dos Equis for four bucks on tap and it wasn't happy hour!\n\nThis place is a balance of modestly priced mexican, drinking and nice atmosphere. The food is not amazing but it's good, and with the atmosphere and wanting to eat at 11 at night this restaurant/bar is overall impressive. (If weren't for the late late night aspect would probably only give it three stars)", "type": "review", "business_id": "ObYf1kZVWfL8NocxUwGJKg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "4gxyGvXlf-nXKS8qqSqtmQ", "stars": 4, "date": "2006-08-09", "text": "Via Delosantos is one of the few places in Phoenix that a vegetarian can get a good Mexican meal. Neither the beans or rice are cooked in lard, which is hard to find in this town. The chips and salsa are premium, just watch out for the fried potatoes and such - very greasy.\n\nThanks to Philip's illuminating review, I hadn't heard about their health code violations. It's something I'll keep an eye on in the future though... if they take another dive like they did in 2004 I'll keep my distance for a while.", "type": "review", "business_id": "CFaRVxsnN4Zjf28cbORKIA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "RNoMJJwCVz8AAR-usCvYUg", "review_id": "mKMS_fetps3GjFtDAcCY1Q", "stars": 5, "date": "2012-09-01", "text": "I really love this place. I'm not sure why there are so many mixed reviews... maybe what they ordered? I always get the regular size custom burger... blue cheese, mayo, lettuce, tomato (and sometimes bacon). Simple and delicious. The rosemary fries with Smash sauce are also amazing. The only thing I didn't care for were the fried pickles... a bit too salty.", "type": "review", "business_id": "3E_toMWSUCuhRJzG1eml8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zCCuNgxv3C9TCKqdXRdTZQ", "review_id": "kDCQvdtLbV3dnc5Ny-IUVQ", "stars": 5, "date": "2009-03-05", "text": "My husband and I LOVE El Metate... we joke about putting a line item in our budget for this place we eat there so much. Their food is delicious, they are family owned and operated - always friendly. \nTheir hot sauce is to die for, both green and red. It's possible I like El Metate better than Amados!", "type": "review", "business_id": "0UWfvm0ah-8DVSm3nkbsMg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "vKZSrW5pXNHZrl6_Vq8xyw", "review_id": "OQhXgCGbH3W6kS9q-_DusQ", "stars": 1, "date": "2012-11-15", "text": "One hour. That is how long we waited after ordering before we decided we would rather eat anywhere that wasn't here. A crushing, impressively underwhelming experience in lack of service.\n\nWe arrived, found we had free valet parking? With a teensy parking lot, this works, thank you. A good selection of indoor and outdoor seating? Also a plus. Setting expectations and/or taking care of waiting customers? FAIL.\n\nOn a beautiful AZ autumn morning we came here (tho we entered Rockerij). We asked to be re-seated outside because inside of Rockerij is dark as a tomb and had loud, conversation intruding, music. We were reseated by the fireplace, and a waiter came over shortly to take our order. Bam. So far so good...or so we thought. 30 Mins after placing our order, I ask another waiter to check on the status of our food and he cleverly asks about what we ordered (exactly)...so we think it is being taken care of. 40 MINS after placing our order, I have still only had my coffee refilled once...and had to flag down another waiter to inquire about the status of our food again, because our actual waiter is nowhere to be found and the previous \"drive-by\" waiter never returned. A few mins beyond that, this guy actually comes back and indicates that our order is nearly ready and should only be a few minutes longer. Shortly thereafter OUR waiter stops by with comments of: \n\n\"I don't know why it's taking so long...\"\nand\n\"I put the ticket in right after I took your order...\"\n\nSo...as a waiter...maybe it might be part of your job to check on the status of an order say...15mins after bringing it by the kitchen? Perchance? What do you think?\n\nFIFTEEN (15 == few?) minutes later, we still had no food and I'd had quite enough. Out the door we went.\n\nOn a comical note: As we were outside (another 5 minute wait because the valet had our car either parked in Egypt somewhere or tandem?) our waiter came out to find us to let us know that our food was ready if we'd like to come back inside?\n\nOh R E A L L Y? The Clue-Delivery Train will be visiting you shortly. Facial cues you may want to look for in the future are:\n1) the furrowed eyebrows\n2) fuck-you facial expression\nand\n3) curling fists\n\nIt seems that we are not alone in this. Courtney W.'s review (10/14/12) is representative of what we experienced.\n\nI am dumbfounded how they have any good reviews. There must be a serious drought of sit down restaurants in this part of town, because this crap would never fly where I live. I cannot tell you how much I am looking forward to NEVER COMING HERE AGAIN.\n\nP.S. They own 3 restaurants apparently: Richardson's, Rokerij, and Dick's Hideaway...all right in the same area (Rokerij and Richardson's being attached). \n\nP.P.S. They all serve the same menu. It is NOT amazing. I have previously been to Dick's. Yes, it is good. No my socks did not come flying off.\n\nP.P.P.S. ProTip: Drive down to Central Phoenix and go to Durant's, Portland's, Switch, or Fez. All of these places have exemplary service and food to match.", "type": "review", "business_id": "IdnYOlL9aDfMu_S2kcaUkQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "cNUzXleO__xO8Ztpg61ixw", "stars": 5, "date": "2010-03-01", "text": "Love the shows the promoters bring in. Cozy spot where I've seen Owl City, A Fine Frenzy, Landon Pigg and more. Plus they are generous with the Malibu Rum :) You will need to visit the bar to get your own as I've never really seen cocktail servers. Oh well... \n\nAtmosphere is laid back, chill. A large patio. And yes, the Shaker Room. The hot, shake your stripper ass, place to be.", "type": "review", "business_id": "1mhywrdsgdqJM3OGZIpVtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vCvtdiwIR52fnByQH7ciZA", "review_id": "GwigThV8Ww46QzpA36gucQ", "stars": 5, "date": "2012-09-21", "text": "I really love the chicken and how it already comes with pickles o. The sandwich ... Fave.. I also love the buffalo sauce very addicting", "type": "review", "business_id": "ihMUU9D2mcgrp7fi8lmqJg"} +{"votes": {"funny": 6, "useful": 7, "cool": 5}, "user_id": "ZXZere7_WFGPkAhAaDqsmQ", "review_id": "5e20T-b8vYqXZZn03Gu8Pg", "stars": 2, "date": "2011-06-16", "text": "four star average?\nWhy?\nThis place is a chain restaurant with a silly name - the family made me eat here and I will tell you this - the only thing four star here are the sexy tall young fit waiters.... everything else is weak and salty...\n\nAt least they serve bourbon - but seriously the cocktail menu was silly and the preparation by the untrained bartenders was obvious - silly rolls with honey butter oh that's cute -\n\nthe food was applebees meets outback - one of those taste of the world menus - my dad was silly enough to order the prime rib - it looked like a swanson frozen dinner - poor dad - IT IS CALLED WHITE CHOCOLATE GRILL - what does that mean - oh it means we are silly and have duped people into thinking we are a trendy restaurant.\n\nSo sad - seriously the service is lovely and attentive the food is better prepared and home with more flavor and less salt - i guess the real french fries - the string kind were yummy but I needed to up my BP meds.\n\noh and a funny decor thing - they use rolled up, stacked utensils in napkins as sorta sculptural decor around the restaurant - sorta weird", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "ca2Sa9Enqg2GlWFQ95p8bw", "review_id": "CYhyVxG332YrY7_J6xIv5Q", "stars": 4, "date": "2009-05-31", "text": "I am beginning to be hooked on sushi. Two years ago, I would have told you that sushi was just wrong....but now I am wrong :)\n\nI went to Sushi Eye on Friday with my wonderful and lovely friend. (You know who you are) I was excited to go there, especially with the rave reviews. At first I was a little put off since I thought that our server was a little bit of a moron with a splash of attitude. I ordered an iced tea and before it took her over ten minutes to come back so I could get some pink packets to sweeten it up. (And that tea was dark!)\n\nAfter that little slip, everything was perfect...(though my miso soup didn't have any seaweed in it...which is odd in my book) I had the Spicy Scallop and the Philly Roll...both were awesome! And my friend's California Roll with Asparagus was the best. I will have to order that next time for sure.\n\nThe sushi chef was very nice and the other server there was more attentive. I loved the menu and it had a lot to offer. (And since I am don't know a lot of my sushi yet, I liked it that they had descriptions) The place was clean and I really liked the layout. I will have to go there again and have some sake as well. :)", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0SH_57eHXYWuGztkRxC9Vw", "review_id": "HhhdKGytEu5mXlM03xM1pg", "stars": 5, "date": "2011-05-08", "text": "This place is great!", "type": "review", "business_id": "BW-64ad2ikPu8M48nV69wQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "b0iJnmLsIfnPI3VwyY4Ulw", "review_id": "SnRf2nyxAmfm7MigNtcCNg", "stars": 5, "date": "2012-01-21", "text": "We traveled from Anthem to find this little Turkish heaven. The drive was worth it. \nLoved everything about this place from the service to the food! Definitely be back.", "type": "review", "business_id": "fHGb1TiZbYAFxxwADhIYQw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "9HhwtAe8mOQiI8_hXQhtXA", "review_id": "aVOyYWa_xkJXRbILFlFKOA", "stars": 5, "date": "2012-08-04", "text": "This place is great! I really appreciate the extreme friendliness and kindness of the employees. Best customer service. Also, the variety of favors is fantastic!", "type": "review", "business_id": "8HQ8clouLGgee99KkR4vXA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ypz7hxOCnrg8Y8vxHJU-sQ", "review_id": "RM_T6mXcA60AdIJDQekOHg", "stars": 4, "date": "2012-10-01", "text": "This place is very cool! I went here after work with a sorority sister for drinks on a Friday night. Ended up staying for like 3.5 hours.\n\nFantastic atmosphere with outdoor and indoor seating. Lighting is dim and intimate indoors with rustic seating areas and large booth perfect for groups getting drinks together. The outdoor patio is sectioned off in a covered area with tables and smaller seats while an uncovered area hosted seating for peeps who rode their bikes in.\n\nThe drinks are pretty yummy. If you're into fruity, girly cocktails there isn't much to choose from, but for a more mature, grown-u beverage, you're in luck. Hit the happy hour (which sadly ends at 5pm).\n\nIt gets a tad loud and it difficult to tell the wait staff apart from the customers because they're all in street clothes but they're very attentive and sweet. We ordered the fondu plate and it was great. Pretzels, sausage, apples and the cheese... perfect for sobering up a bit from those yummy cocktails.", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 1, "useful": 5, "cool": 4}, "user_id": "XTFE2ERq7YvaqGUgQYzVNA", "review_id": "PhIc4XJgZzrHuWBrQbnOEQ", "stars": 4, "date": "2012-11-06", "text": "This is one of those places that I always seem to forget to review. I guess maybe because it seems everyone already knows this place is great!!\n\nThe important details you need to know:\n- Live music sometimes\n- Great happy hour food specials\n- Most wines (3/4 of the wine list) is $5 a glass before 6pm. Use your Yelp check-in offer to drop that to $3. YES I SAID THREE DOLLARS!!!!!!\n- Great bruschetta, burgers, and everything else. Chef's specials are often enough vegetarian so that's nice for someone like me\n- Great back patio that isn't super obvious to a first-timer that it exists\n- Clean bathrooms! You know all of the above doesn't matter in the slightest bit if the restrooms are nasty\n- Wine specials on the 5th of every month. Now, I have never participated but I think it's like $2 for a specific wine. But since you can use the Yelp check-in offer, I haven't bothered since it's cah-razy cheap every day!!", "type": "review", "business_id": "s1dex3Z3QoqiK7V-zXUgAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ITunAJbCR-1rBPrXfzOiRA", "review_id": "9rXM4TFIt5P_FcqeNo1bMw", "stars": 2, "date": "2011-04-17", "text": "I love the outdoor space at this restaurant. We had a very friendly waiter serve us. We started out with a delicious gin cucumber cocktail which was so refreshing. For an appetizer we had the chicken arugula flatbread that was tasty but definitely could of used a bit more flavor. The caesar salad made with kale was so salty that we were not able to eat much of it. The romaine salad was okay, nothing special. The entree, halibut was so dry it was totally inedible. The roasted vegetables were just so-so. I ate here in December and loved it but this time I was very disappointed. I am in no hurry to return, except for a drink.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uWeMgQMWd_dxqSxPpnd-qw", "review_id": "foq4A5JLCEmboYcpqWbUiQ", "stars": 4, "date": "2011-01-22", "text": "I had dinner at the True Food in Scottsdale on a Thursday a couple of weeks ago. There is really nothing not to like here. the restaurant itself is great looking and will be wonderful when the weather warms up as all the walls are glass doors. I thought alcohol was well priced or least the wine was as you get glasses starting at $6. we shared the lettuce cups as an appetizer and they were quite tasty although messy to eat as are all the dishes that use lettuce as a tortilla. I had the puttanesca with a twist--no anchovies--instead with ahi tuna--it was quite tasty and was a right sized portion. My sister in law had a tofu curry--that also was quite flavorful--even though I am not a fan of curry and can take or leave tofu. head the chocolate cake for dessert which was just right. I will definitely go back-all in all a pleasant evening.", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ItLnXJx4M4dM4gQFJLS8Xg", "review_id": "FpvbUQaIoNwH2zcfBQ7QdQ", "stars": 5, "date": "2012-10-28", "text": "Wow these cupcakes were amazing!! The frosting was picture-perfect. I tried Vanilla Salted Caramel and Pumpkin and both were so good! The cake on both were super dense and moist. Vanilla Salted Caramel definitely was the best of the two!", "type": "review", "business_id": "6dqDSEMDqTA-wNOdWtshUQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "ROr4DQ-gxlfUKmiDC-qSEQ", "review_id": "8ELy-3wYplMcVGEJhWhqzw", "stars": 4, "date": "2010-07-28", "text": "If only it wasn't all the way up there... i'd be on it like a lush at the FEZ happy hour... margaritas, martinis oh my! Anyways that's how I would describe my dinner outing to Los Reyes de la Torta with my best, Sara V. \n\nShe thought of it and I bought it... so off we went after work on Monday night to Los Teyes de la Torta for some Torta goodness. The only Torta I've had prior is at Gallo Blanco. and they Ribeye there is delicious but here we were at Los Reyes and the menu was huuugggge! Sara V. was hungry so we started with an app, the chicharron quesadilla estilo del rey which is with queso, pico, onions, and jalapenos. I got horchata as a drink, and Sara V. got mango juice. Felt tropical and I guess it went with the feeling of mugginess outside. Anywho, the quesadilla was big, and really a meal in itself. For our entrees we decided to split two tortas, they were the Arizona Torta and the Mexicana Torta - steak, sauteed onions, jalapenos. They were both big in its own right, half a torta is filling on its own. \n\nSum up our experience, the tortas are really good, altho i can always pass up the Mexicana and try something else. The horchata was alright, nothing phenomenal unlike La Condesa which has a very interesting and really yummy Horchata. Not a big fan of Mexican mangoes coz personally I don't think that they're sweet, Filipino mangoes are still Queen! The quesadilla was yummy, liked it very much. I think it's proof that when more than half their clientele are Latinos is that it's a good torta shop. The dinner was not pricey and I had leftovers but really liked it and will come back soon!", "type": "review", "business_id": "bzDs0u8I-z231QVdIQWkrA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zyd78OiKPAqaMSC6OWLb6w", "review_id": "PbpmnNUaILWvEtHVuXFioA", "stars": 4, "date": "2011-07-05", "text": "came here one night alone. the hostess sat me down and kept staring at me as if there was a problem eating alone! i found that a little rude.\n\nmy waiter, however, was nice. I only got the french onion soup and chocolate souffle for dessert since i heard good things about their soup. it came out in this cute little cauldron, piping hot, cheese all gooey, and several crispy chucks of cheeses were tucked near the edges. it was good french onion soup, although i have not tasted enough different french onion soup to judge it as one of the best. \n\nthe chocolate souffle took a while to make but it was quite delicious. my server brought it out and poured this warm choc sauce infused with some sort of liquor. the etoh didnt evaporate so there was still a strong taste to me, which i dont prefer. the souffle itself was soft and fluffy which was good.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "WHGflHhaY4YFIVawor2iLg", "stars": 2, "date": "2007-03-02", "text": "i was really unimpressed with the pizza here.\nit's conveninetly located, but never very busy, even at it's prime location by a bar even on a friday night.\ncheap slices, and easy to get in and out of, but of all the many, many people i know who frequent this area, none of them really ever eat there.", "type": "review", "business_id": "Mh85-BDqDHlngT8G2ZnRWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "gkwc5gC9eayRtcJ5X-z8AQ", "review_id": "0IoUUKgQwGaHjF1i23nspQ", "stars": 5, "date": "2011-12-07", "text": "I am 5'0\", so I require a lot of alterations and it is essential that I have a good alteration service. I will never go anywhere other than Elegant Reflections for my tailoring services. I have had innumerable pairs of pants hemmed here and have been completely satisfied. They have nice private dressing rooms with real doors (I refuse to undress behind nothing more than a curtain), everyone on staff is competent and very friendly, the prices are reasonable, and they are almost always able to complete your alterations in less than a week.\n\nI have only ever encountered one issue..when I had two pair of very thick trousers hemmed with a cuff at the bottom, the cuff seemed loose. Since I didn't want it to get caught on something and come apart, I took them back to be adjusted. The second alteration was done in just a couple days (in winter, which tends to be a busy busy time for them) and the new stitching was nearly indestructible!\n\nThe staff here also seems to have an exceptional memory, because even after a year hiatus- they greeted me by name!", "type": "review", "business_id": "CqmCV_6NV3pwYXkjDtG9bQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "gN03qFYysM5DbgjuV6N0QQ", "review_id": "-wXH0RRTSmyHPhEY68bH1w", "stars": 4, "date": "2012-04-15", "text": "On display were High School Kids Art from Apollo, Cortez, Glendale, Greenway, Independence, Moon Valley, Sunnyslope, Thunderbird and Washington. Ribbons were awarded to the most talented and there was art extraordinaire.\n\n I can see Mike Nielsen has a genuine appreciation for the Sunnyslope Art Walk participants and enhances our community. His interior design work for home and office look very cool.", "type": "review", "business_id": "Jf-FUvn6j86oPQhKNIHFJw"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "-uoJu5AiH5Vp3AgMCrNATQ", "stars": 4, "date": "2009-04-01", "text": "Glad to say this place is still going strong a little over a year after my first visit/review. Wanna try it? Then visit on a Tuesday night for $1 tacos and $2 cervezas! They have amazingly good Tacos and Salsa, and an excellent Tequila bar. Do try the grilled corn on the cob.\n\nExcellent place to hang all night with friends - great drinks, great food, great prices.", "type": "review", "business_id": "KoIRdcIfh3XWxiCeV1BDmA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o2CGc1kQHEFkYOECM3NFdg", "review_id": "BZOu01JHq8EdZtPz6j3sqQ", "stars": 5, "date": "2012-10-08", "text": "I'm going to be an uptight stickler here, and only review the pizzeria portion of LGO since the grocery part can be done under as a separate business. I hope others follow suit. Sorry, I'm super nerdy about this stuff.\n\nAnyways, the sourdough crust is my favorite pizza crust in all the land. I love the flavor and how it's always glistening with oil when it comes to the table. The toppings are really special here. If you even remotely like avocado, get their avocado pizza. The lemon zest puts it over the top. The corn with goat cheese is my next favorite. The only one that I haven't liked is the the rocket man. It tasted fine, but the heavy toppings were too much for the thin crust.\n\nWe also had the fortune of trying their grilled artichoke appetizer one evening. I couldn't get enough of it! It's not on the menu (seasonal item I'm sure), but we asked about it when we saw plates of it go by.\n\nExtra bonus points for the large selection of cheap pizza wines. Any time I can get a decent bottle at a restaurant for under $20, I'm a happy camper.", "type": "review", "business_id": "7SO_rX1F6rQEl-5s3wZxgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "NTSDlVbBNw34dV1t7eFRNw", "review_id": "lqpr8UHf1WeMOhYE3MS4XQ", "stars": 4, "date": "2009-05-25", "text": "this is not in the mall dq a real road side flash back", "type": "review", "business_id": "5pojYKKvohZ1kQBdSBAb1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EJaoDaba5ew7Pr1r8fT4NQ", "review_id": "lAJtSlaIl81kDWKHmddedA", "stars": 3, "date": "2012-06-02", "text": "I came in on an early Friday morning to buy a dozen and a half of donuts for my co- workers. The man behind the counter found it odd I order such an amountapparently, by the way he repeated my order. In my case 1 dozen would have been too little, 2 dozen too many and I didn't want to waste any. That alrady made me feel uncomfortable. Just fulfill whatever order you get, I am customer. It was my first time here, after many, many drive by's. He asked me what flavors and suggested to make a mix, I didn't have a preference, as I just liked an assortment. Again I was frowned upon. Just give me your bestselling flavors...what's the problem. Well, I guess it was once and never again. The donuts were fresh tasting, but the service was far beyond friendly. To bad, you could have earned a new customer.", "type": "review", "business_id": "ytcm2DXuJWKPTqCtr6uJ4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IJKdg7KSekmIm_6LJsfvUw", "review_id": "OyisBZlWvyjZNXF_T5zOLw", "stars": 4, "date": "2010-03-24", "text": "Love this place. Great selection of beers, cheap ($3 per beer) happy hour, relaxed atmosphere and walking distance to the Light Rail. Some nights they have live music which isn't always to my taste but I like that they provide a venue for local artists and musicians on top of everything else. On First Fridays it's packed (so good or bad depending on your feeling about crowds - I avoid it those nights) but on other nights ... it's just a very cool and comfortable place to hang out. Sometimes parking is kind of hard to find.", "type": "review", "business_id": "pQ3kRVmttsV1bHxuTf7TAg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "QEDVhdE7tK6aQp1WuJY69g", "review_id": "B1jXFJYt9s38M33xyqtPvw", "stars": 3, "date": "2007-07-24", "text": "It's the kinda place where you're certain the employees don't spit in your food.\n\nBest Taco Bell I've been to.", "type": "review", "business_id": "L7i9j66ph3Uz5i56OXIICg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WVm03gFSsTjzgWfS0XXLBw", "review_id": "WwmrZHRhYWbfachDVKYLZw", "stars": 5, "date": "2012-07-28", "text": "Cartel is my go to coffee place. If I could drink here everyday, I would. The barista who seems to always be working sunday mornings makes the best lattes that I've ever had, ever. Each one always has a cute little heart or leaf shaped on the top which obviously is their secret as to why they're so delicious. I've never gotten anything else because I've already discovered the best. If you're cool, you probably like to hang out here on the reg. \nI definitely recommend, best coffee in Tempe by far. \nIt's a little hard to find if you've never been before, right off university on ash across from the circle k.", "type": "review", "business_id": "lktu5JPDlQUG-7cV7gOzDQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "ai2W745a8wrLHJr7TY0FCA", "review_id": "tmd_ihdNuq7NqF0uzahX8w", "stars": 4, "date": "2009-01-27", "text": "Carly's is a cute little restaurant with a fun atmosphere. My friends and I started off with the Feta Rosa and it was a great start! Amazingly delicious- I even added some to my sandwich because I couldn't get enough! I had the pear sandwich with orzo salad as my side and loved every bite! Yummy pear, pruschetto, and cheese perfection!\n\nCarly's is definitely worth checking out. It has great food and a great atmosphere to boot!", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "hDq2YuMHjB_7KvK8zZCCcw", "review_id": "1gzDuWfUnYDXsYqEjpRCKw", "stars": 3, "date": "2012-01-25", "text": "The service we had was good, food was alright, the prices seemed high. Just a sports bar. \n\nFine never going to again.", "type": "review", "business_id": "55seKyxRWUmHC1s52xk45g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "-WJ9HJiBLoUS9yNhiE6jbw", "review_id": "h9OyvqG4jjZsK9VNuvbb5Q", "stars": 4, "date": "2011-01-23", "text": "Decent menu which includes the traditional satay, tom yum koong, curries, pad thai etc. What threw me off was teriyaki, sweet and sour chicken, kung pao, chow mein. Food is good with great portions! Careful on the heat scale. 10 is blazin...\nWeird thing....I was really thirsty after the meal. Usually that's the result of using the other type of SaLt. \nOverall the place is clean, modern, and staff are attentive. Curries are 10 bones, Fried rice at 9, and most entrees at 9 bones! Price is a buck plus more than our So Cal places. Give it a try, food is good, and service is fast. \nDamm..I need to drink another bottle of soda!!!\n.", "type": "review", "business_id": "JiLK9QPjd53pOBEAaY83lw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FgauKBp6w-_8hOY1CRYMoA", "review_id": "CTMPP1y-BMZ70UHGj-DAfw", "stars": 1, "date": "2011-06-29", "text": "As I promised myself, I'd go back again to try it again. Yyyeeaahhhh...sooooo....the food is still not good. I got the mongolian beef and it's like \"wha? really? is this IRL?\" \n\nI'm a chinese food kind of a fan, this restaurant, I'm not a fan of.", "type": "review", "business_id": "NmYTwkqyaCtEg3wifBkxkw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t-27_YZKsk9tMbAiwQKCwQ", "review_id": "h7fbLrNtziYZjkRQvgmSvg", "stars": 5, "date": "2009-07-18", "text": "If you are staying in Phoenix for any length of time, this is a must stop for at least a cocktail. From walking through the kitchen, to being seated promptly in a booth, this is quintessential gastronomic delight. Durant's is an icon and legend. Period. Wine list is great, have a well-versed sommelier also. I never order Filet, but when in Rome...", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "zHH2Iz49wCZYYDLBTv0YOg", "review_id": "PImnsWzkTPjwX_4r-2YhCQ", "stars": 5, "date": "2008-08-11", "text": "Yeah, yeah, I know there are already like fifty-something reviews for this place, most of them four or five stars, I don't care. Here's one more, another twig on the bonfire celebrating Richardson's awesomeness...\n\nThe food's the same awesome New Mexican cuisine as Dick's Hideway around the corner, but eating here is a totally different experience. The dark pueblo interior with Native American rugs surrounding the high-backed booths provides a great deal of privacy for you and your party. I recommend any and all of the seafood dishes - my favorites include the shrimp quesadilla and the scallops... OMG the scallops, so good when I think about 'em they make me lose control and type text message shorthand like \"OMG\". Of course my friends constantly remind me that as much as I love the food here, I can't truly appreciate it because I don't eat the meat dishes, which, according to them, are even better. And they're probably right. They usually are.\n\nWent with a group of 6 last week, which seems to be about as large as the booths at Richardson's can handle (for much larger groups there's a private room available at Dick's). Service was super friendly and extremely efficient. Yeah, it can be a little pricy depending on what you order, but in my opinion, totally worth it. Sometimes you gotta splurge.", "type": "review", "business_id": "B8ujMtvvpHyEQ2r_QlAT2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "d8s1LoZFes3UXolENDF0_A", "review_id": "ojEsf1hnwQHG6Ob6UOR-AQ", "stars": 5, "date": "2012-01-11", "text": "I LOVE White Lion Tea. The company uses great quality of everything!!!\nMy favorites are Tuscany, Ginger Peach, Green Passion Tea, White Ambrosia Tea as far as I have tried :) \nEverytime I opened a tea bag, I have to take a good deep inhale from a tea bag. It's smell soooo great as the tea taste.\nThank you White Lion for having such awesome products !!!", "type": "review", "business_id": "FtIZP3Jt-sri23CO84C4gw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "koxaBzK7GSHpAA1BLw2L5Q", "review_id": "DCrShxcgMAVTVHYzBJQRAA", "stars": 5, "date": "2012-12-04", "text": "The new Kale salad is to die for! \nI love this place! Every time we have lunch here it is busy but somehow the staff always finds us a seat! The food is always really good and the speed in which you get it is amazing. This is the best lunch place in the valley!", "type": "review", "business_id": "ojjtPlnSmCX1zCzWL7JoNQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "-OMlS6yWkYjVldNhC31wYg", "review_id": "tdNniSuSdxp5wvfhikAiUg", "stars": 5, "date": "2010-05-02", "text": "The slices of pizza are cheap, huge, and very very good. I really don't have to say anymore.", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "C6yeumUSDmdMYT2GxjKhKA", "stars": 1, "date": "2008-07-06", "text": "Nice looking place with average food and horrible service. Everything took forever and no one came by to see how we were doing. We literally watched our server going around setting tables and taking napkins off of empty tables rather than making himself available to us. He wandered around from table to table in a completely unoccupied area of the restaurant the majority of the time we were there. The food was luke-warm and nothing special. I was only here once so I hate to be so down on the place, but based on the other reviews my experience sounds pretty typical. Don't waste your money.", "type": "review", "business_id": "oxsCvEkQNNIbOPDt_QK_0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Aslq99yqmuVZdFMxasei-Q", "review_id": "7rTnJ-9-1bFRWOZmcQFmhw", "stars": 5, "date": "2012-07-30", "text": "I'd love to give this place MORE than 5 stars!!!\n\nIn Phoenix a few weeks ago I needed to planb a nice dinner for a group of 10. I thought about a few places and wanted to come here because of the view. (Get it? Different Point of View.....?) Anyway, while I did initially pick DPOV because of the view, I fell in love with the perfect service AND the perfect menu.\n\nThere were great options for my picky group, and not one person left unhappy, or hungry. In addition, they seem to have a pre-fix menu with a nice price tag if you're ballin on a budget. \n\nEverything was AMAZING and it's definitely one of my favorite restaurants in DC!", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b6A7LFRsDr6P8gMgCzP1cg", "review_id": "VfBddVandcTYppp-zuKtTg", "stars": 3, "date": "2012-07-17", "text": "Stopped in for some macaroons and coffee, the food and coffee were decent. The place itself was kinda dirty, stains on the floor, saw a couple of flies, and sat in an uneven chair.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "R0KPnPBC7bimj2uyLXYeDg", "review_id": "gB_DuxeQcD11Bn7s0gVmzQ", "stars": 5, "date": "2011-10-24", "text": "Great multigrain sandwiches. Nice patio too!", "type": "review", "business_id": "di2QHs2SrY0XFHcfAq_k2A"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "aFh79e55bjxj5XD5vkob8Q", "review_id": "AsWugluCn1Ym7HmBFeUwIw", "stars": 5, "date": "2007-07-26", "text": "Where to start???\n\nThe owners are very kind... say hi to Benny in the kitchen!!!\n\nMy wife and I found this place while living in the culinary-void NW Valley of Phoenix, and we have eaten here probably 50 times over a 3-year period. Everything is good:\n\nGryos\nChicken Pita\nSouvlaki\nGreek Salads are probably one of the best salads that we have ever eaten\nFries are always fresh\nZatsiki sauce is stellar\n\nThe atmosphere is a bit void, but people don't come to 35th and Thunderbird for the atmosphere... they come for great food at a great price.", "type": "review", "business_id": "LxNehlnStQY_rxEwiPof_g"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "A_O8wZOsMTPwyeYA4-Rsow", "review_id": "ub9QfxatKjVDMAtrt6_MoA", "stars": 3, "date": "2010-05-17", "text": "I'm always perplexed when the staff knows nothing about their on-line specials. This time it was the Yelp ad. Luckily it was quickly resolved by the bartender this time which was refreshing. \n\nThe place it's self is a pretty generic bar. I just had a few drinks along with the Crab Cakes which were actually pretty good.", "type": "review", "business_id": "JxgoluY8hnC34cys_f80xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "xCY9C6KN9xTDzKrow9iivQ", "review_id": "x-79G__QUUYnE-OsEyjrrQ", "stars": 5, "date": "2012-07-11", "text": "This is a cool dive away from all the Old Town BS. The jukebox is one of the best I have heard in some time. They were playing songs I never heard of so I know I'm going to be in trouble in the future by using Shazam to identify songs and then buying them from my phone!\nAnyway, just be sure you eat before you get there as this is all about hanging in a dive and having drinks. They have lots of beer and the bartenders are cool. If I lived closer I would hang out here much more......", "type": "review", "business_id": "679pJn1KyKr2X8NcQNyMzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SLvZfeCztX7QaNbJs_7ikQ", "review_id": "ROw0XDHF1TcGXfktqfdnVA", "stars": 4, "date": "2012-01-03", "text": "Went to this location last week - was nervous to go because although I love waffles, and fried chicken, the idea of eating them together freaked me out. But my husband is a huge fan, so I decided to suck it up. I'm glad I did... Although I typically prefer my waffles a little crispier than LoLo's makes them, the flavor was to die for!!! And who doesn't love some delicious fried chicken! I know I do.... Try it! You'll love it!", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KOxd6rC7dtk5BmniPmHfTA", "review_id": "b5tP2ZU27NPVgUfgulAKzA", "stars": 5, "date": "2010-07-04", "text": "little known secret- the golf course bar!!!! amazing margaritas and a super-cheap happy hour. didn't mind watching the cute guys checking in after a long day of golfing, either! my bff and i were so happy to have stopped here after our day at the spa.", "type": "review", "business_id": "O_ZNZDr6c5CsK6GgsKdDeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "75ag2Y7YNHDohV7KWArWBA", "review_id": "1t8LNCJ2d113n8dSPsdJ7w", "stars": 4, "date": "2012-05-26", "text": "I consider myself fortunate enough to have had a business lunch here a few weeks back. The food was excellent. Steak and potatoes just what a man wants! It was very well done and finished with a 3 berry cheesecake. Worth the moolah!", "type": "review", "business_id": "QdbZyl-LWFS54u93Vjd5SA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ABNVoUg46SfdXwRVDla0_A", "review_id": "4DXtrksVLvLNQ3v-sngmaQ", "stars": 5, "date": "2013-01-02", "text": "We recently took a weekend getaway to Phoenix and stayed here. The Hotel is beautiful and our rooms were spacious and very comfortable. The staff here are topnotch. I love the lobby wine & hot apple cider hour in the afternoons, and the lobby coffee & hot chocolate bars in the mornings. We had access to the Golds Gym across from the hotel and were able to get a good workout in their cardio theatre. There is an outdoor skating rink right outside and a small shopping/dining area. It is located right across from the stadium and could walk to our event. I would definitely recommend staying here, especially if you are attending an event at the arena.", "type": "review", "business_id": "ORiLSAAV4srZ_twFy1tWpw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "4uw7hCPC3owbFuhAkyxrAw", "review_id": "ZcHOmrI0jCM_JUvKSEt6mw", "stars": 4, "date": "2012-05-31", "text": "Consistently a good experience. Not a fancy place by any means but a great neighborhood restaurant with friendly staff and good food.", "type": "review", "business_id": "k8q3ypIoIzchdp3RoRUsJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TQ5eVGOFr_qB5_BbEd3Sow", "review_id": "gl9cSsDFus9HE-G3igNqDQ", "stars": 3, "date": "2012-10-17", "text": "Angela, the Nurse practitioner, was great. baby had a gooky eye and we took her to this urgent care office to see if it was Pinkeye so it could be treated early on. It was Friday and her regular Dr. was booked up. Angela said there was no Pinkeye but she had pus in her ears and had a minor ear infection so she prescribed antibiotics, amoxicilon I think. The only hitch was when the baby had her regular dr appointment the next week he said there was no infection so we were left to wonder who was right.", "type": "review", "business_id": "3Jtu-vKe3LDUc5haxT6aPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "AqC7BsBnbwIhVa0t_SFc5A", "stars": 3, "date": "2008-12-05", "text": "Was here for a KYOT Wine-Down-Wednesday event a couple of years ago. The bar area was packed. Stood around waiting for a table to open up- very uncomfortable as the area is pretty small. \n\nI remember trying the New England clam chowder. Tasty, but it had too much potatoes and not enough clams. Had something else, but can't recall which, and the current menu online reflects a few changes. \n\nI do recall thinking I would like to come back and have lunch or dinner there, so I'm giving it three stars.", "type": "review", "business_id": "OypZxwm-jS9QfUwgBmzeyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DMtlC2TpVEimIn0D07HnUA", "review_id": "2aZXL6Do1uejgTIOdLJdBw", "stars": 5, "date": "2010-11-13", "text": "I can only add my gushing praise to the other reviews. Not only is the food outstanding (pork osso bucco, green chile stew and pecan/fig pie), but the ambiance and service really help make this place a standout. So many places have arrogant, stuffy service, so Scottsdale. Not so here. Also, the waitstaff had opinions about the food - which dishes are his favorite and why. Elegant but comfortable atmosphere, reasonable prices, and a real enthusiasm from the staff (and a chef, who came to visit with folks that he knew who were sitting near us). The food is rich, but did not seem unhealthily so - not bathed in salt and heavy cream sauce. Perfect portion size, with a balance - meat, grains and veggies. So happy that Beckett's is in the neighborhood!\n(Oh - and no valet! I hate valet parking when there is an ample adjacent parking lot, and spots are only limited because the valets put their cones in the available spots.)", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "4GzBe-7iyLaCFHfqbChXyw", "review_id": "kdVbwoAxXpgI8wDZtKpYig", "stars": 5, "date": "2012-05-08", "text": "I had lunch there recently and was very impressed with the food, friendly service and excellent value. I had a lunch special -- two cheeseburger sliders with sweet potato fries. They serve the burgers with several pieces of fresh crisp lettuce, tomato and onion. We will definitely go there again.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "TWrWanhB9ueePwov6XxUWQ", "review_id": "ooBK1qxfjiHattgbh6wXGA", "stars": 2, "date": "2012-09-15", "text": "Uninspired. From the food to the staff, just another mediocre Chinese restaurant in the valley. I expected something better.", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "kNO6w6EIKo8u6GSykOHBLA", "review_id": "3JAUGGP2eizdV8gk3WnbVg", "stars": 3, "date": "2012-11-25", "text": "Met a few friends here for happy hour. They had $5 martinis, but that's not what I ended up getting. They have a drink special everyday. That day they had the Walter Crankite, I think! It was like an appletini with cranberry juice. We didn't order anything else. The service was great. Our servere was very attentive.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Hnlxl7kQRem4uOnbgLEcIQ", "review_id": "pOzGCqEIT1ATSwhvlkcVKQ", "stars": 2, "date": "2012-11-03", "text": "Seriously the most pathetic burger I've had.... ever? On the level of a Burger king or the like. With tip I paid $15 for the burger and fries. What a waste - and they even managed to get the order wrong. A buffalo burger that had no buffalo sauce on it. When I told the waiter he made up for it by bringing a little cup of sauce. Oi... pathetic.", "type": "review", "business_id": "VFjeCLwVMguUNWH-DeOgyw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "6kmPFBSUOZqu8kQpOBzD7Q", "review_id": "GdfTZukhqOESWhvucBBkSQ", "stars": 4, "date": "2012-10-27", "text": "Came here for dinner and dim sum. Dinner probably deserves 5 stars but dim sum was probably 3 stars, so I'll just average my experience to 4 stars. \n\nFood: \nDinner: There's these dishes that are on sale right now for less than $10 and most of them are clay pot dishes (which are DELICIOUS!). All the dinner items we ordered were AMAZING! Especially the green beans! Those were flavored and stir fried to perfection! I've had this dish many times at many different places and this was by far the BEST green bean dish I've ever had! The clay pots were ALL amazing! Everything tasted SOOO GOOD! \n\nDim sum: Not enough dim sum items and the ones that did show up were only ok. We were sitting around for a really long time and nothing would come. When the ladies did come by with the carts, they would not even try to sell us anything. We had to be all proactive and ask everyone what's in the carts. Even when we did that, the ladies would just say \"nothing new\" and push the cart away. We had to order things from the kitchen but even those things would take forever to come. A few of the dim sum dishes we ordered came AFTER we asked for our check and paid already. \n\nService: \nDinner: Great service! No complaints there!\nDim sum: REALLY SLOW...why was there no food??? \n\nAmbiance: \nThis restaurant is in the middle of a food court of a shopping plaza. They just put up dividers to section off the \"restaurant\" from the rest of the food court. I was hesitant to eat at this place, but I'm glad I did because dinner was amazing! Dim sum...that's a different story. If you get over the fact that you are really sitting in the middle of a food court, then it's not so bad. \n\nPrice: \nBoth dinner and dim sum items were pretty cheap. \n\nOverall: \nI really liked eating dinner here! All the dishes were delicious! Dim sum probably would have been better if there was more food and the dim sum ladies were better about showing us what was available. I would totally come again for dinner but maybe not dim sum.", "type": "review", "business_id": "wH_kpDuTE6ChDAp5AlMfJA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "GyFmGA5UQZ4pXdx1lUH86g", "review_id": "pzdA36d4e4CzayiSOgj_wQ", "stars": 4, "date": "2009-11-02", "text": "double-double, protein style, with pickles and spread only please. and a medium iced tea. in-n-out gets it. i like my burger the way i like it, and they don't mind serving it my way. they have never screwed up my order. they have the best iced tea, and fresh lemon wedges that aren't pathetically small. they pay their workers a fair wage, and you can tell - they're all nice and happy. love me some yummy, cheap eats and service with a smile!", "type": "review", "business_id": "X6mWr96ibKdXQSA6mpH90g"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "3dno9Y7mtvi2tq6IfMpDeA", "review_id": "U5RUvQltXtD_x0JFSusbrg", "stars": 4, "date": "2011-12-12", "text": "CARLOS O'BRIENS IS MEXICAN FOOD! Sorry for yelling but I nearly dropped my phone when I started reading reviews from people expecting Irish fare.\n\nI've been eating at Carlos for 22 years or so. I remember being quite young going to the 12th Street and Northern Location.\n\nThey have, hands-down, the best Pollo Fundito Chimi I have ever eaten, and boy have I eaten my fair share. 5 stars\n\nTheir chips and salsa are also always fresh. The chips get also 5 stars. Always fresh and hot. \n\nTheir mild salsa is very mild and watery. Not my style but it fresh. I mix the hot in with the mild which works form me.\n\nShredded beef tacos are also 5 stars. Love 'em.\n\nFried ice cream is also yummy. I'm not a desert guy so I won't attach stars to them but yum yum.\n\nOther tips are to come at happy hour. Good deals. Lunch specials and portions are just right also.\n\nCarlos O'Brien's is a great place that just gives me comfort knowing that it is there when I need it. I spend so much time trying new places, especially mexican, that this old favorite tends to get skipped because the closest one is 15 miles from the house.\n\nWhy only 4 stars? Only because there are more authentic places like Los Dos and Rosita's Place that get 5.\n\nI'll be back. I always will. Next time sooner than later. That darn Fundito calls my name.", "type": "review", "business_id": "qHjUo2foq-IXF6Tk1Iz3WQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5RtJforBznyxFKQpdvBZDQ", "review_id": "ZRlXng9pn0I3s0MizBF_tg", "stars": 5, "date": "2011-08-16", "text": "One of my fav sushi places in the Valley. Great place to take someone who has never tried sushi or still is unsure of what they like. Great place to take someone who loves sushi but is indecisive. Some of my favorites include the spicy shrimp/crab roll, Phoenix roll, and their squid salad. Plus - you can't beat the Vegas roll - $1.50 for 3 pieces? It's a steal! Definitely one of the more fun sushi places in the Valley!", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Kcmic9TLUlu_dFPC_mNhAg", "review_id": "uScULKPU8e1vjo8-UwVVeA", "stars": 4, "date": "2008-11-10", "text": "We were in Phoenix this past weekend for a wedding and wanted a low key, fun, yummy mexican feast before heading for a night out on the town.\n\nLos Sombreros was recommended to us by the concierge at our hotel and it was great! We sat on the adorable, sparkly light-lit patio and stayed warm with the help of two heaters. The place was pretty busy but not too loud. The margaritas were huge and strong as can be and made just the way we liked em! We shared an order of guacamole - i was slightly disappointed since other yelpers RAVED about it - i thought it was pretty standard, a little better than \"just OK\". Both of us ordrerd the chilaquiles (he shrimp, me chicken) and they were fantastic although it would have been great if our server told us that each dish was a legit 10 lbs! We EASILY could have split!\n\nwe had such a fun time, the service was good, food was good and the patio was a great backdrop for a casual, albeit fairly romantic meal.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "Yq-pv-frxMeQT9zWtdgUEA", "review_id": "RrjsFr7ZrjwoH04UuCJLjA", "stars": 5, "date": "2011-09-22", "text": "I'm pretty sure that Palee's Crown is the best Thai place I have ever been to. The service is always great, and the Owner comes out to talk to us whenever we are there.\nThe food is so amazing, I have never tried something that I disliked at all. I especially love the Pad Thai and the Currys. I am always full and completely satisfied by the time I leave. I also recommend trying the Thai Iced Tea to drink if you are like me and enjoy weird authentic drinks, and for dessert be sure to get the coconut ice cream. Don't make excuses about trying to spend less money or that you are being careful about what you're eating, just try it.\nThe prices are good and if you're not sure what to try, stick with a curry but remember that Asian spices are very distinct, and very spicy.", "type": "review", "business_id": "07OyvsOpqTWuyTtvE4_gcA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3MoghgXc3USMbgm1S1Nkdw", "review_id": "iL64xzahgvRP1-P1QApRMg", "stars": 5, "date": "2007-04-10", "text": "We found Ippei happhazardly through United Airline's dining points program and were instantly hooked. We now frequent the place at least once or twice a week.\n\nA great atmosphere with a very warm and welcoming host, Michael. It has all of the ambiance of a very chic place, without the attitude and pompous feel. The wait staff are all very attentive and pleasant. The drinks are creative. And if you're lucky, the owner may join you in a sake bomb, though he insists this is not authentic Japanese tradition.\n\nI'm not a huge sushi person and was mainly brought along by my friends, so I can't comment on all the finer touches on the sushi and whatnot. I can say, however, that if you ask really nicely you may be able to try a roll that the chefs are working on that is not yet on the menu, including a rib-eye roll that is absolutely delicious and friendly to those of us that shy away from sushi because of the whole raw fish deal.\n\nPrices are very reasonable. This is an up-and-coming spot that is still fairly quiet, but not for long. Come now before you have to worry about getting a reservation a week ahead of time. As it is now, you can just walk in.\n\nGreat place to bring a date - low lighting, great service, great food, lots of fun.", "type": "review", "business_id": "omxi9nCCCM9OXVGsQQ1L5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "n_p5TE2OAWByYFzYG1mR1g", "review_id": "qfqzAIclH68KH8iZo0BXTw", "stars": 5, "date": "2012-02-26", "text": "Very clean with and old fashion cinema atmosphere. Snacks are very expensive so if popcorn and soda are a must for you, expect to spend alot of money. The amazing reclining seats are worth it though. I definitly recomend Cinemark 16 as the place to go to watch movies! \n Also there are alot of great eating places next to it or within walking distance to do the dinner and movie date night!", "type": "review", "business_id": "4Pf9DQBcR23A6Lg2pDsrBQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "3cfqpTfcpfHoaSkYM26dUw", "review_id": "OkMx40GPIN65mbj1wN4twA", "stars": 3, "date": "2009-10-14", "text": "While in Phoenix for about 36 hours, I lunched at Hooters twice. It was easily located across from my hotel and it was a weekend, which meant I could catch both the collegiate and professional football games as well as playoff baseball.\n I take Hooters for what it is, pretty decent fried food, a restaurant that caters to men, and always has a game on. This in mind, I didn't anticipate anything other then a beer and something to eat.\nI sat at the bar both times and the bartender, Brittany was extremely friendly and made a point to learn (while IDing) and remember everyone's name-- which I thought was a nice touch. She was always willing to change channels to make sure everyone's game was being aired which was appreciated as well. They have a good football special-- 10 boneless wings with all you can eat fries for $5.99 during any football game. The $3.50 25oz Shock Top beers were a deal as well. \nIt was odd for me to see a kid's birthday party in the restaurant on Sunday, but to each their own.", "type": "review", "business_id": "qsWxbgQwuomXvMseg23DGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LqgGgWi3FLHBViX9tmZ9sw", "review_id": "K1jY5uTFXGW8hWNCCJloAw", "stars": 4, "date": "2010-08-04", "text": "In the mood for a little snack? this is the place. Don't remember what I ordered (my indian friend helped me), but it was good! and also try desserts!!", "type": "review", "business_id": "3YrW77yHkp3JIyTGYCS_Nw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ky5-mOk8-9M-NlLr8Jh8rA", "review_id": "0y1FdoWOI85_kWx1rKfyUw", "stars": 4, "date": "2010-07-05", "text": "We had a great first visit here for brunch. They have a creative brunch menu with traditional breakfast items with a twist, lunch items, and great-sounding desserts. Our party had the sunflower salad, bacon and eggs, steak and eggs, the hummus platter, and the sweet potato chips. Everything was quite good and very fresh. We really enjoyed the sweet potato chips - not greasy at all, just sweet potato flavor with a hint of seasoning. We'll be back to try some of the other menu items. \n\nGreat atmosphere and pretty small dining room which makes it quaint and cozy. Unfortunately we had the table right next to the kitchen doors which was the only unpleasant part. Bussers and waiters would come flying out of the kitchen and then stand inches away from me with load trays of food trying to figure out what table they were going to. The water refiller seemed especially hungover as he literally stood next to my arm for 3 minutes trying to figure out who needed water. They should put a divider between that table and the kitchen. Also bar service was slow - 15 minute wait for 2 mimosas. Waiter apologized but still...\n\noverall a good experience. Big fan of the atmosphere and menu. Can step up the service a bit.", "type": "review", "business_id": "qd1ajiZRCwqEQJqCgoN1wg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z6Kz5DOd0-W3t_FoQIELAg", "review_id": "pSprYO4dvKGZyR7YfXSYoA", "stars": 5, "date": "2010-08-04", "text": "This is one of our favorite pizza places - for the food, value, drinks and great atmosphere! I originally discovered them at the Scottsdale Culinary Festival, and am so happy I did!\n\nIt is in a great location, walking distance to a bunch of fun bars so it's a great place to start the night in Old Town. My husband and I's favorite thing on the menu is the margarita pizza. The crust is so crisp and perfect! As for drinks, Jac's has a really fun cocktail menu, and also a good wine selection. Our favorite: the ONEHOPE Cabernet Sauvignon. Affordable, smooth, and pretty cool that half of the profits are donated to charity.\n\nDefinitely check this place out, you'll love it!", "type": "review", "business_id": "eRb0wjIVlj0bbfmePKZLng"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "tIqEPzKIviNNkhqdqAFmTg", "stars": 2, "date": "2010-04-21", "text": "I wasn't feeling RnR at all! We don't usually venture into Scottsdale for many reasons, but the siren song of a non-pretentious late night eatery was just calling to us. Unfortunately, non-pretentious doesn't apply to the prices. We came shortly after opening day, so I completely forgive the awful service, the place was packed. I was irritated though when we were told they were only going to be serving sandwiches and burgers, nothing else, even though we were specifically told that this place would have breakfast all day. Breakfast is what I wanted. Oh well. \n\nWe ordered the burger and got some mini corn dogs as an appetizer. The mini corn dogs left a lot to be desired. They were served with plain ol' ketchup and plain ol' yellow mustard. Yuck. The corn dogs were only okay. The breading around them was way too bread like and it was just lacking in flavor. The burger was enormous. Unfortunately, what it lacked any flavor. I guess what it lacked in flavor it was clearly making up for in size. The bacon that came on it was equally huge, roughly 2 inches wide and at least 8 inches long... (that's what she said! Ohhhh!) Anyway, I was obviously not impressed. We might come back sometime, because their breakfast really does sound wonderful, but hopefully they've figured out how to efficiently serve a busy restaurant by then.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "5Ka8MMYEoZfsU-jZzUt00Q", "review_id": "1tuBU55FKBjP_m60P0qt6A", "stars": 5, "date": "2011-04-06", "text": "I saw the review below and just thought it was ridiculous. RIDICULOUS. \n\nElderly people work here or volunteer. You expect customer service that you'd receive at a high-end store. No. People die and their things that are usually in good condition are donated and are resold at really cheap prices. No, the people there will not be making sure you're finding everything okay, you're on your own... and that's how it should be when you're thrifting.\n\nI usually find great things. Glasswares, books, shoes, purses. They have amazing furniture that is so cheap. They have many half off days and various sales throughout the week.\n\nJust make sure you go on a weekday or Saturday and before 2pm.. all the stores in this plaza close at 4 and are closed Sundays.", "type": "review", "business_id": "fib0PyPJ2yJO7i8TLnuqXA"} +{"votes": {"funny": 15, "useful": 16, "cool": 13}, "user_id": "1kED3-g-gqnc4JgHe89Xqw", "review_id": "JKOC10z19xzEQGCeXbOvOA", "stars": 5, "date": "2009-12-08", "text": "Move over Maizie's you've been replaced...for brunch that is. I have a tradition with a lucky few of at least once a weekend going to Maizie's for their brunch and getting smashed. Oh, and we eat a little too.\n\nEverything changed this weekend though when we went to Postino on Central for their brunch debut. The food was so ridiculous good, that we actually forgot to drink. Did you hear me?? FORGOT TO DRINK!!\n\nSince it was our first time there, we ordered a variety of options. I had the Country Toast, which was toasted MJ Bread, topped with Italian Ham, Gruyere Cheese, and a sunny-side up egg. Ho-ly shit. Each bite became increasingly better than the last. It was the perfect bite over and over and over again. The ham had a nice little spice to it, the gruyere cheese had an intoxicating tang to it, the egg was, well, an egg, and the toast really brought it all together incredibly. And it was huge. I barely got through half if it before I had to give up.\n\nMy brunch date got Postino's take on French Toast. To be honest, I am not huge on sweets first thing in the morning, however I would have bathed in this french toast. It was creamy, not overly sweet, and literally melted in my mouth.\n\nI ordered a White Peach Bellini at the beginning of our meal per norm and while it was spectacular with actual peach puree in the bottom of my champagne flute, I completely ignored it after the first bite of my meal. Me. Ignoring anything in a champagne flute. I know.\n\nI feel a bit like the blase housewife who just cheated on her husband for the first time with the pool boy, but I'm sorry Maizie's, consider me shacked up with said pool boy every weekend in the early hours from here on out!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "23kkvZDxdGVEaIT8PCKq9g", "review_id": "zKVQJU2uuhipYIeX9hBqoQ", "stars": 5, "date": "2012-12-20", "text": "This place is home.", "type": "review", "business_id": "HvfefhU4b38wcSulkBzA1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OfdeghMqb1gwh3uJqNpTRQ", "review_id": "e2PMUf7ooc4p7ZwHMkNAuA", "stars": 5, "date": "2011-12-21", "text": "These guys are great!I Even though they specialize in Mercedes, they never have a problem with my BMW X5. The owner, Charles, knows what he is doing and never tries to up-sell you on unnecessary work. Mary (Charles' wife) is a really sweet lady who always gives me a ride home and picks me up when the car is ready. While Aurohaus doesn't have loaner cars like the dealership, they are extremely competent, trustworthy, and charge reasonable prices for their services.", "type": "review", "business_id": "quzkSK2uZEl-j_24vZmdMg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Igd4Gw_08sA2Ngl2AMVEfw", "review_id": "17OSqK80vcdX7SNHXtJwhw", "stars": 4, "date": "2012-07-08", "text": "This is the best place if you want to escape Arizona and feel a bit of wine country. Best place to spend a Sunday afternoon. My favorite part is uncorking a bottle of wine, and ordering lunch to be eaten outdoors. So spring weather is the best. Buy a mini loaf of bread and try their delicious olive oils and spreads...super inexpensive appetizer at just $1.50 and the samples are free. They offer many sandwiches and the waffles with berries are to die for. Looking forward to trying their pizza...on my next visit. Regardless of what you choose follow up with gellatto...yum or take home some olive oil cupcakes. Delicious and moist...but a little spendy", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "0wNFzxEof0RDrWPLjDlwZg", "review_id": "JRCQ_diJvU2Py-UPncudYw", "stars": 1, "date": "2011-09-09", "text": "HORRIBLE service - did nothing to correct our experience.\n\nOn July 7, 2011, my date and I arrived around 6:30 pm, well dressed and ready to enjoy a celebratory dinner without any financial limitations. We would have easily spent $250+.\n\nInstead, after an hour of being seated to review our menus we were never offered more than a cocktail.\n\nTables around us were receiving quality attention by other servers...complete with the run down of the specials, house favorites, answering questions, etc. We, on the other hand, were lucky to have our make server look at us, much less take us to the next step our level in our dining experience.\n\nWhen the table behind us, seated a good 15 mins after us, received bread before we were, my date and I decided that was our tipping point and would not stay any longer.\n\nWhen our server came to ask if we were ready to order we informed him we would not be staying for dinner and would like the bill for the cocktail.\n\nNever once did the server apologize, offer what he could do to make things right, etc. \n\nNeedless to say, we were stunned. The hostess thanked us for dining on our way out...again, we both gritted our teeth with frustration. However, later we discovered that after an hour of sitting in the dining room, we were there long enough to enjoy a meal. It's unfortunate we never got the opportunity to, however.\n\nWhat did go right was...we were promptly seated and the cocktail server provided decent service.", "type": "review", "business_id": "o1GIYYZJjM6nM03fQs_uEQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "mWI0jgWEADAQXO0798TG7w", "review_id": "XaDM8kVroIocb6bNnzB0-A", "stars": 5, "date": "2011-11-27", "text": "wow. this place is a gem. highly recommend it if you're looking for a great place to take a date or chill with some friends out in the patio over some wine. \n\nvisited friends in the phoenix area over thanksgiving vacation and they took us here on a Saturday night. i dont know much about the chandler area but this place could easily rival any of the popular wine lounges here in san diego. \n\nas for food, our group ordered a bunch of the bruschettas, flatbreads and a couple sandwiches to share family style. we all enjoyed all of it, i especially recommend the fig chutney, that was absolutely amazing. from the sandwiches, the shrimp blt definitely stuck out as my favorite. overall, everything was very good and the service was great. \n\nas for the wine, great selection. the staff was very helpful in helping us pick out the perfect bottle based on what we like. in fact, i think i found my new favorite wine thanks to them. if you're a wino like me, you'll love this place. \n\nas for the ambiance, they nailed it. awesome patio and great decor. the attention to detail is definitely noticeable. very chill spot. \n\nps. check out the door to their wine cellar, i want that in my house. it's gorgeous.", "type": "review", "business_id": "FCcFT610nQBVcRdY-devQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vrM_uBgwfDQ6bQxGVHdUGQ", "review_id": "_Dyahb7sgMOvfEtTunG_tg", "stars": 4, "date": "2006-11-01", "text": "Zipps is a rocking place with TV screens in all viewable angles. The atmosphere is great and this place really packs it in on game nights like Monday Night Football. Smoking is outside because this place is around the Tempe border. The service is great and the food is even better. Try the chicken tacos!\nGood times had by all!\nCheck it out some time!", "type": "review", "business_id": "7TMf1NuuAdvhG7IojZSKnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cwWJ6ydDLjl0AUu_KINZww", "review_id": "R4Bxpk5_jhmysfUgimz5Qw", "stars": 4, "date": "2010-12-29", "text": "Expensive for having grown their own food. Good product and fresh", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "BX9K5JMU-NnjxJaNKxImpQ", "review_id": "M0cNAIDg9kwyRCmp9HaQDg", "stars": 4, "date": "2010-02-03", "text": "This place has had awesome bread since day one. Whatever else you walk out with is just a bonus. Actually, I have to say that the produce selection is getting noticeably better each time I walk in. I still don't think it's quite suitable for everyday shopping, but it's coming along pretty well.", "type": "review", "business_id": "6yuY73ycyyPiIG3zWkXqPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M3H8du5TxqlTY7qJd4FDbw", "review_id": "qDT07PQru1-stOA0OyJFIQ", "stars": 3, "date": "2008-09-13", "text": "Kashman's has great food but you really have to gear yourself up for the rude owner (artichoke lady) and some of the mean, crotchety ladies that work behind the counter. \nThis is not a good place to place your order by phone. They're always nasty and short with you on the phone and then when you pick your order up, they get all bent out of shape because you have no place to stand and wait for your order. \nThe guys and gals that bus are usually super efficient and very friendly and the food is above average. If you're looking for good food and a verbal lashing from the staff that work there, then Kashman's is your place to eat!!", "type": "review", "business_id": "b6ZagkhPwEwQCDBB7KkVPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1MGIoKLw1oq8HR15DsIUXg", "review_id": "KaYVholRn87KrdsXoMRlcw", "stars": 5, "date": "2011-04-03", "text": "Yum! Healthy selections and delicious flavors!", "type": "review", "business_id": "djYFLq4Bkqpkd14-0IJfug"} +{"votes": {"funny": 5, "useful": 2, "cool": 3}, "user_id": "QxvFfB6XschULUPnZel2Vg", "review_id": "Yi2D8gFYtU80C5CgnZqRkA", "stars": 3, "date": "2009-03-29", "text": "I really don't know how to rate Lolo's, because, frankly, this place killed me. It was only temporary, but I was definitely dead, heart stopped, for a solid five or six seconds. \n\nLolo's is serious eats. So good, it was just painful. Literally. I really don't think I can return anytime soon. I know it's for the best.\n\nI'm nowhere near joking.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ewnwxqKtpDv8erOIZkCpjA", "review_id": "AxQD_6Ts84hXyjld6AtreA", "stars": 4, "date": "2010-12-28", "text": "Very authentic and very good Vietnamese food. Great value for the money and clearly a favorite with the local Vietnamese. The spring rolls were very tasty and came with a terrific peanut sauce. They also provide many other typical condiments on the table to spice up your dish. I had the slice beef Pho and it was delicious! I'll be back.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "jt8jtEY1K6TD1FBzYa7HGw", "review_id": "bTSrBsqYrE7bx7jB4_OX_w", "stars": 3, "date": "2006-08-24", "text": "Zoe's get's a solid 3 stars b/c they have the raddest, most sinfully delightful chocolate cake around. The best part is it's only $2.00! The reasonably sized slice of cake totally makes up for the boring, albeit sometimes satisfying food. The chx kabobs are pretty awesome, enough for two people. Comes with two huge scewers of chx, peppers, cherry tomatoes... over a bed of salad and rice pilaf. Pretty delish. The Gruben Sandwich is also a hit. FYI -- If you don't like Feta, stay away from this place. They put it on just about everything. They trully believe in that old addage, \"Feta makes it Betta!\"", "type": "review", "business_id": "trAvQPp7gps0Btk-2AmLpw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wb7P7e3q11TZLxd9QjEmxA", "review_id": "IMrAF5brjL_F0EkhGDCrAw", "stars": 2, "date": "2011-06-05", "text": "Like many car washes they do what it takes to scrape by. I am still looking for a place that actually puts a little extra elbow grease into it. I am tired of being upsold on exterior waxes etc and they cant even take the time to vacuum my seats.", "type": "review", "business_id": "cTFq_1sAnQUb9eMZO6FlvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fNwxFRCdfa5jX5-smziurw", "review_id": "pQMeYHgglnNf8fjtzMJrFA", "stars": 4, "date": "2011-02-05", "text": "I'll keep this sweet and to the point, realistically, i'd give this place a 3.5\n\nPros:\n*willing to accommodate food allergens- I've vegan, and super lactose intolerant.\n*beautifully decorated restaurant, well plated food.\n*the food is made to order, even the sauces.\n*I liked some of the inventive touches in their food- my curry with peas, pumpkin, baby corn.\n*one of our companions asked for extra sauce and they very kindly made more\n\nCons:\n*Portions are ridiculously small for the price. Everyone at our table of 9 ordered a separate entree, and no own was full, even the ones who got appetizers.\n*My throat was killing me, so I asked for some warm water, instead of iced, while I looked over the menu- they brought back water that was colder than room temp, without the ice and I was politely informed that this is what they had. But I wonder how in the world they serve hot tea on the menu, if they don't have hot water in the kitchen. \n*Some of the veggies in my curry were undercooked (think aldente potato)\n\nAll in all the flavor of the food was good, but 1 cup of rice and 1.5 cups of curry does not a 18 dollar entree make. You really are paying for the ambience and customer service.\n\nIf i had a special occasion, i'd prolly visit here again, but when i'm needing a thai-fix, there are other places around town that have equally great food, without the upcharge.", "type": "review", "business_id": "mPGgxatANSPw9KbMluhXkA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "NqeD28GGg1Wdj9BfaHqr4g", "review_id": "3CPuYkZubcFUdQqVB8h6NQ", "stars": 4, "date": "2011-03-14", "text": "Home to the Mariners and Padres Spring Facilities, Peoria Sports Complex is a pretty great place to take in the action. I have seen a decent number of games here over the years. Most recently I saw a weekend game sitting out on the lawn. It does not get much better than relaxing on the lawn, watching some baseball, hanging out with your friends, and getting some color in the 80 degree heat. \n\nThe practical details: (1) there are a TON of food options. Maybe too many, if you believe in such a thing. Food of all kinds is everywhere. You can get all the standard ball park fare and some more exotic things, too, like noodle dishes, sushi, fry bread, etc. (2) Ticket prices are good - sit up close for 20 bucks on down to the lawn for 6 bucks. You can't beat it for getting up close to the action (3) Parking is only 5 bucks in the lot, which I think is really decent, but if you want to walk a little further you could find street parking across the street.\n\nBEST DEAL IN THE PARK: $9 for a 32oz. soda with unlimited refills. A large one is $5 and not as big, so if you get even two this is a great deal. On the hot day I was there we filled the sucker up three times and once more before we left. Well worth it.\n\nIn short, if you're doing the Spring Training thing definitely come to Peoria. It's super relaxed and one of the best places to enjoy some baseball. You will want to keep coming back!", "type": "review", "business_id": "oajNY_oTIMb7YZsor7Xonw"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "TT-6PvXKmu3C5kkc9iS7Fg", "stars": 5, "date": "2010-08-26", "text": "If I could only eat at one place for the rest of my life, it would have to be at FnB. This is ultimate comfort food for me - with the bulk of the menu highlighting local in-season organic vegetables from McClendon and other local farms. Charleen prepares dishes that pay the ultimate homage to the vegetable and the farmer with perfect seasoning, contrast, balance and temperatures. \n\nBeyond vegetables, the housemade burrata was light as a cloud and shrimp grilled to perfection on the mesquite. Dishes at FnB are simple but often the simplest dishes are the hardest to get right as there is nothing to hide behind - ingredients have to be fresh and of the highest quality and execution must be perfect. Charleen and her crew strike it out of the park almost every time.\n\nService is professional, attentive and friendly. Pavle and his team make you feel right at home, which is the other reason why I would happily eat here everyday.", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "MKZh-O5OLJcR1exReXhJHQ", "review_id": "_B5LP2SYPwavTKm1SrsBzA", "stars": 4, "date": "2012-11-25", "text": "Recently, I found myself in downtown Mesa looking for a place to sit an write a while while my son went to a concert - I had 4-5 hours to kill. I planned visiting one of the coffee houses within a 5 mile radius but my lack of familiarity with Mesa made that a disagreeable prospect. Fortunately, I noticed Lo-Fi Coffee, which was literally part of the concert venue building, before I began my trek. Lo-Fi was a comfortable place that served good coffee. But what made me a fan of Lo-Fi was the barista, an Air force vet who was friendly and went out of his way to make me comfortable (they closed at 9 and he let me sit in until 9:30 - concert lasted until midnight). If I lived closer, or if Lo-Fi opened shop nearer where i live, I would go back again.", "type": "review", "business_id": "_uy2i0KjsilMG0kGHr9q8Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "ghQRCJANXdMuYwtaPJAuPA", "stars": 4, "date": "2010-12-26", "text": "This place is old school. i.e. you don't come here for the service, or the ambiance (especially since it's in a scary part of town). You come for the food. Come with a group of friends, whether for dim sum or a late night dinner. You need a group of people, I hate coming here when its just mean and three others. I like to taste and sample lots of goodies. They have great live seafood (a must in my book) where you can walk by and see what looks good that day. Be brave and check it out!", "type": "review", "business_id": "0db71MbrvcJnyk71COCJBg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Tj_9R74Z9C8N6pbhgj4xJw", "review_id": "w00HQ1YXGJdbH4-Nc07KvQ", "stars": 4, "date": "2009-05-29", "text": "I liked this place...it's a little dark. I went in the middle of the day so there was probably more workers there than movie goers. And the staff looked pretty bored actually.\n\n3 bucks ain't bad for a movie. I thought the place was clean and a decent selection of movies and refreshments. I come from a small town so even this theatre is an upgrade for me.\n\nFor three dollars I will most definately be hitting this place more often.", "type": "review", "business_id": "Ay840nDkj5qfHTAKSrb1Sw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RL9-QudgjWYw9l78d__uyA", "review_id": "86x4Nu0sh7-Fp6u3XEPLmw", "stars": 1, "date": "2011-10-11", "text": "They served us stale rice. Average main dishes, not as flavorful. Not enough meat in the lamb dishes. Overpriced.", "type": "review", "business_id": "V9i9LnTg9H2XvzqCVBSOXg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "meuqHEjGCmrO3zDlr6OU7w", "review_id": "tm0R3WQhselebf5mOSe5OA", "stars": 4, "date": "2008-03-01", "text": "Very pleased with this World Market. The prices are good for the wine glasses I've bought there (good selection too!). The wine is good everyday wine, and priced reasonably. The help is always friendly and courteous, and the food section---(well, I've been there at least 6 times, and I always seen to find something new in the food section!).\nThe only reason I give it four stars instead of five, is the parking arrangement and it is not easy to get into its' parking lot.... I think the prices here ae better than Pier One....By far!", "type": "review", "business_id": "u8bQvtkVa5lW-SNwRLH6Vg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "lNe79WfSsizAHth7ZPmkfg", "stars": 3, "date": "2010-12-01", "text": "Taberna and Ninfa's are owned by the same restaurant group out of Houston. Is it a coincidence that the FTR for Taberna is by someone who has only reviewed both of these spots and gave each five stars? I think not.\n\nHere's my objective review:\n\nTaberna is in the Scottsdale Seville where Roy's used to be. They have a large outside patio that will be great when the weather is nice.\n\nI ate lunch at the bar and enjoyed chatting with the friendly bartender. The menu is upscale Mexican food. \n\nI liked the basket of chips they brought out to start. It came mixed with chips and plantains and two nice salsas.\n\nI also ordered the al carbon steak enchiladas. They were good and spicy served with what I believe was a mole sauce.\n\nOverall the quality of the food was good but a little expensive. I would come back, but it's not at the top of my list.", "type": "review", "business_id": "xz1fQwwVAhqA9MsmMaGyZA"} +{"votes": {"funny": 4, "useful": 5, "cool": 6}, "user_id": "fiyOnIEKBOgj00NJLwDBVg", "review_id": "4F3HauOCtY1qJ2wFcKLDeQ", "stars": 4, "date": "2012-11-28", "text": "We had a fun, early dinner on the patio here at BoomBozz. The advertised happy hour specials appeared to be a very good value; my fave was the soft pretzels & cheese. I also had the wedge salad and it was excellent - they don't skimp on the blue cheese! My son had the pepperoni pizza and even his discriminating palate was very happy. A crisp blonde draft (for me) and ice cream (for him) polished us off and we left full & happy.", "type": "review", "business_id": "k76odRRsXPErPzB0gjn-3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5RcTRr4GmKcYpjB9_6-Rqw", "review_id": "N3pKA0BolUov4o4amvX4CQ", "stars": 3, "date": "2010-11-16", "text": "I had lunch here and had the sashimi tuna salad. It was fresh and tasty. I also ordered the miso soup which was actually quite good. Real chopped mushrooms and scallions and it wasn't too salty. It didn't taste like standard powdered miso that you would get at an average japanese restaurant. I also tried the cucumber lemonade which was quite good. Overall the service was attentive and our food came out promptly. My coworker had the seared tuna sliders and sweet potato hash which he looked pleased with. The portions were perfect for what we were in the mood for which was just something really light. It's a great place for lunch, the ambiance is nice especially if you're sitting on the patio. I'm not a huge fan of fusion style restaurants so it gets a 3 star rating out of me, but it's a nice place for a quick healthy meal if you're in the area.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "SBbftLzfYYKItOMFwOTIJg", "review_id": "OYzuUknSKM3ahvuXvO3VtA", "stars": 5, "date": "2008-07-13", "text": "Two weeks after I dropped off my computer for service with the Geek Squad I got it back with a new screen and hand rest. They said 3 weeks and I got it in two!!! And the open-box computer I purchased to use while mine was in the shop was returned with no problems. \n\nI was so happy we purchased a new Toshiba DVD player for $40. Who knew that DVD players could be so cheap? I've been using it all day and it works beatifully.", "type": "review", "business_id": "YKDyaK3TKoZRCEgwnhczkA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "Or8fekxdMzZdF_Xvg0TYaw", "stars": 5, "date": "2009-08-05", "text": "i'm not a vegan or a vegetarian, i thoroughly enjoy sinking my teeth into a thick juicy piece of medium-rare steak. and i love eggs in the morning and chicken tacos at 2am. i am also very hesistant to try anything the attempts to substitute for meat, because i think it's just psychologically strange. BUT ever since my friend turned me onto green about 2 years ago, i've had nearly everything on the menu. and never been disappointed or grossed out by anything.\n\nmy favorites: number one absolutely has to be the mexi-cali burger. i could eat these everyday. it has the flame-broiled taste of a real burger and even the bright red color of raw meat, but don't let it freak you out. it also comes with hummus, bright orange nacho cheese, and chipotle sauce. this burger is SPIIICCYYYY so beware. their fries are crispy and perfectly seasoned. also love their soy ice cream treats, soy-namis, my favorite being the raisin with captain crunch. their lime-ade, lemon-ade, and teas are always fresh and delicious. i also love the diablo red bowl which is another dish for spicy-lovers and comes with fresh roasted eggplant (yummmm) and tomatos. \n\ntheir pita chips and hummus are to die for. they're crispy chips which i enjoy better than just a regular pita being served with hummus. and their buffalo wings are almost as good as the real thing.\n\ngreen nails vegetarian and healthy mock ups of american food right on the head.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "NWCaFYFDoj77ouA9kEI_kw", "review_id": "N3Cq3ayOoUJqvdTB16qlNw", "stars": 4, "date": "2012-06-01", "text": "I LOVE PITA JUNGLE! Why aren't they in Chicago?! Damn this unhealthy meat-lovin city! Let's try something different...\n\nAnything I've had here was remarkable, and I've tried a couple of different Phoenix-based locations, so they're doing something right. Try the jalape\u00f1o hummus for a great spin to a Greek dish, and if you're really hungry, I highly recommend any of their lavosh pizzas. My favorite though? The Chipotle Chicken Lavosh Pizza, of course! It is delicious and mouth-watering.\n\nI deduct 1 star solely for the fact that their parking lot is VERY inconvenient and way too crowded.", "type": "review", "business_id": "eGevCRobYnA_HSj60sEWvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HFIuj45MwNx-cJkTamazSQ", "review_id": "Km2Xi1TjNegRlEczdim4QA", "stars": 4, "date": "2008-11-21", "text": "Love the veggie rolls ! Also, the saki bombs are quite bomb =)", "type": "review", "business_id": "NDKkce5Au-o_OhIt5f2ZBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "gdLc6dq1NpjHj47WBUNZ_A", "review_id": "gGlA2hAnvqof5BOj484raQ", "stars": 5, "date": "2007-11-19", "text": "Contrary to the reviwers below...I love Matt's. Yeah the wait is long...the place is small...once I went in the summer and I was sweating in my coffee...\n\nBUT....\n\nThis is Phoenix people. When the breakfast choices are a tasty meal at Circle K (heated under heat lamps) or Denny's and IHOP, you can't beat Matt's. \n\nI love breakfast. I eat breakfast everywhere I travel on business. I have never had a better breakfast than at Matt's. Fresh ingredients, great food, excellent bread and jam...kick $ss hashbrowns.\n\nI wish the place was bigger (and cooler) and the wait not so long. But as a special breakfast treat...you can't beat it. Just bring your own fan.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "Oq5CYkB4dQE_wmPgHu51bg", "review_id": "s7XJdtzYc6TdB5NN-hi76Q", "stars": 4, "date": "2009-01-04", "text": "Ate here kind of randomly on New Year's Day, and it was pretty great! I was looking for a hangover solution and the food here really hit the spot. Great selection of breakfast items and friendly service. The southern scramble that I had was delish. The coffee flowed as readily as the wine had on the previous evening, so I walked out of Scott's ready to face the new year (right after the nap that I planned). Also, sitting outside was some of the most interesting people watching I had experienced in years.", "type": "review", "business_id": "PxeX1M8WtyPxX1MuuGIh-g"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "kDJ9PRlYugp5RIa9ontPZg", "review_id": "tWkjlwwmivawiyyCN67xyQ", "stars": 5, "date": "2007-05-11", "text": "For the past ten years (ever since FunSports occupied the same unit), this place has been the one-stop shop for my biking needs. From BMX at age 13 to road cycling in adulthood, SMC usually has what I'm looking for. The prices don't really compete with larger chains like Performance, but they are reasonable and the service more than makes up for the difference. When I was getting into road cycling, the guys at the shop were very helpful with selection, fit, and pricing. A+!", "type": "review", "business_id": "fIKyldfAWFJOTT1mHWw6gQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "qlbiTIcn1-hDeHhEF1PLyg", "review_id": "6uA3CfgALceuzRYs6bdtmQ", "stars": 4, "date": "2008-10-16", "text": "My favorite place for Dim Sum! I have been going to Dim Sum since I was a kid with my Asian mom. I especially like this place because it serves alot of shrimp dishes, and thats what my family loves. I usually go on a sunday. It can be a long wait, but I never had to wait more than 20 minutes for a table. The grounds are fun, there are a few places to see..like the koi pond out back and the bridge and gardens. I have been to San Francisco's china town for dim sum and this beats it! The only thing is, sometimes you have to wait for something you like to come around, and by then it isnt as piping hot. Especially if your seated on the outskirts of the dining area.", "type": "review", "business_id": "jbKVbSz51F8IcewsiRQu4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NIzF5MMddl12972ID8loRw", "review_id": "IQiXH35tIDCfZqN6ELrMnQ", "stars": 4, "date": "2012-01-18", "text": "Some buddies and I went to Scottsdale for a golfing boondoggle last week and a couple of guys in the know directed us to The Mission.\n\nDANG!\n\nWe let our server, Jonathan, drive the car so to speak. He quizzed us on our likes and dislikes and brought us our orders (we didn't specifically order). We had 7 people in our group and every plate was spot on. \nWe started with the chicken (thigh) tostadas and the crispy cola pork belly tostadas. They were great; particularly the pork belly ones. MAN were those good. My dinner was the Chorizo Porchetta which brought a big hunk of slow cooked pork that shredded beautifully. Along side this hunka hunka porky love was a salt block carrying 10 small corn tortillas to build little tacos from. Some tasty accompaniments: sauce, onion, & cilantro, finished the presentation. It was a fantastic dish. The other 6 dishes were just as great. To note: the honey chipotle grits that my buddy got were super tasty. Especially when you dumped some of their ghost chili sauce (forget what it was called). Desert was the Pumpkin bread pudding (YUM!) and fried bananas. \n\nAll in all, a fantastic place. Really good.", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HOAFwraJMBTcYy1qTmFmgQ", "review_id": "Jwxsz2CEdLOyKGEoBUUQMQ", "stars": 1, "date": "2012-06-17", "text": "Not lesbian/gay friendly at all. I should have read the previous review before going.", "type": "review", "business_id": "-O7H5LhBkE13VQZB0QZI0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "P-y83T3BpOTneosph713dA", "review_id": "UtWkrTUFhMjXQbXb7iW--w", "stars": 4, "date": "2012-01-03", "text": "Good Whole Foods location overall... The workers are very nice and attentive, and the food selection is good! Not the biggest Whole Foods I've ever been to, though.", "type": "review", "business_id": "dC6rDLGRoch_DOZk5kLkWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CJOjw2P9zkPxOnnmrY6KjA", "review_id": "HV_FhhqsGQS_iMTpDBfvsA", "stars": 5, "date": "2009-03-18", "text": "I'm almost hesitant to tell you about my favorite sushi place because it's already pretty busy... But oh well. I love Sakana. It's a comfortable restaurant, I don't feel like I have to get all dressed up to go there. Don't let the fact that it's in a strip mall turn you off, inside is small, but nice. Their sushi chefs are always very professional and keep their bar very clean- that's so important when dealing wih sashimi. We've taken a lot of people to Sakana and it has never disappointed. We have tried almost all their special rolls and love their sashimi too. Their service staff are authentic and sweet. I've never been disappointed.\n\nNow....stay away...cause I don't want to wait for a table....", "type": "review", "business_id": "gqLWBFxOKag8dXwVxEvTrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nPbt-JysLj9vuAkODo3X1A", "review_id": "fmPEuNP0a6WYYmy1RTzRsQ", "stars": 1, "date": "2012-07-31", "text": "We used to go to this UPS store quite frequently and had been satisfied with their service, but it has been at least a year since we regularly patronized the place. However, we had a really unprofessional experience here recently. We went there for rotary services for purchase of home which one employee refused to do and handed off to another employee (because as she under her breath, notary services were a pain). This employee could not help us either as \"he had never seen anything like it, and he didn't know want to have anything to do with something that had power of attorney on it.\" I guess we are one of the first people around here to sell a home. While we waited for this man to do something, the employee who handed off our paperwork, tried and failed to scan a document to email and was quite verbal and (sorry) hickish about these \"stupid\" machines. After looking at all was going on, we didn't want anyone here handling our notary services. Eek - felt like we dodged a bullet. Also, don't think I will be going there for any other services. I felt like my IQ dropped 20 points when I went in there.", "type": "review", "business_id": "v1zN2kMLLB3B-D8FTEOWkQ"} +{"votes": {"funny": 4, "useful": 5, "cool": 6}, "user_id": "jqVeTSin5GeRm0ceSg-PBA", "review_id": "7tFUmc1mn0z0qgoprkoY2A", "stars": 5, "date": "2008-03-31", "text": "Another place that is really serene and makes you forget you are in a large city! I really liked the Desert Botanical Gardens and I am totally not into flowers or botany! We had been to DBG once before for Luminarias, but it was so dark that we couldn't see much. I'm glad we returned in the daylight.\n\nWe took my inlaws yesterday after brunch and they absolutely loved DBG. My father-in-law is totally into photography, so DBG was awesome for him. We saw tons of people with cameras, so it is a photographer's haven. I really had no clue there were so many types of cactus. There are hands on activities scattered throughout (probably for kids on field trips) and boards with information, which comes in handy on the Sonoran Desert Trail when you want to figure out which mountain in the distance is Camelback, Piestewa, Four Peaks, etc. We saw little lizards, hummingbirds, quail, and ground squirrels while wondering around as well.\n\nThere is much to see and you can get through the gardens as quickly or as leisurely as you would like. We spent about two and a half hours there, which I think is a perfect amount of time. You see everything and are ready to leave by the end. A very nice place to take visitors on a nice day.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "gi17Rp-HyIEJ6turV-EZDw", "stars": 5, "date": "2012-02-22", "text": "I indulged big time at Indulge Burgers & More during Fat Tuesday yesterday. There are a tremendous variety, including many healthy options such as a turkey or veggie burger. The best part I like is that you can build your own burger with all sorts of yummy toppings. I had the turkey burger, and the turkey was one of the best I have ever tasted. Sometimes you can taste like of the darker meats and fatty parts, but I felt like this burger was very clean and lean. I would highly recommend the sweet potatoe fries that you can order. You can deep those fries in what tastes like a warm marshamallow dip. The price is not too bad either for what I call a luxury burger.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GyOwPYGX7-ntxcmvK5Ac0g", "review_id": "kWe7WzAeLPnz6aBz0RCTeA", "stars": 5, "date": "2013-01-01", "text": "Bosa Donuts at Southern and Mcklintock in Tempe is part of a strip mall that I have been visiting since I was just a kid. Except, back then, Bosa Donuts was a Taco Bell. A few years back Taco Bell moved a half mile down the road into a new building and Bosa Donuts set up shop. About a year ago I discovered another new store in this strip mall which is Fallout Games, an awesome video game store. For this entire last year I've been driving past Bosa on my way out of the complex after visiting Fallout Games and taking a curious look as I drive by but until this week I had never tried it. After reading all the positive Yelp reviews, I had to give it a go.\n\nWell, first off, It's 24 hours, which is huge in my book since I'm almost always up until four or five in the morning. The drive through display is lighted and shows their menu but you have to actually order by pulling up to the window. Since I was there at 3am I asked what was fresh at the moment and the guy was very patient and helpful with listing off what he had available. I just got a few frosted donuts (or raised, as they call them) and was on my way. Right off the bat, I noticed the box was pretty heavy. I only ordered a half dozen but it felt at least as heavy as it does when I get a dozen at Dunkin Donuts. When I got home, I opened the box and realized their donuts are at least thirty percent bigger than Dunkin Donuts of Krispy Kreme.\n\nAnyway, the donuts are awesome. Best tasting donuts I've ever had. I probably shouldn't make it a habit to come here twice a week, if I want to live past forty, but I'll definitely be stopping by once or twice a month from now on. Hope this place sticks around.", "type": "review", "business_id": "Trar_9cFAj6wXiXfKfEqZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9zp_JEmUScBI1lx9RuxGiA", "review_id": "MQ0RIVUsLLyzVW00rQuTWA", "stars": 4, "date": "2011-03-08", "text": "Still a fan. I'm incredibly impressed one of the staff even remembered my name and my last purchase on a return visit.", "type": "review", "business_id": "ics35glmd7JXtY3qrq3jxw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r63D6SDvVnl61L5ASo1Csg", "review_id": "CBJQBj6yDRmVESmWqCyUjA", "stars": 2, "date": "2012-12-07", "text": "Summary: not impressed.\n\nArrived early afternoon, ironically maybe that was the problem - there wasn't enough going on, place was dead. I would have hoped that a restaurant manager would realize that the few customers they may have at a slow time are just as important as those on a Friday night rush - standards are standards, you either have them or you don't.\n\nWaitress was pleasant but not attentive - with a total of 3 occupied tables had to get up and get her attention for more chips. Chips though were very good; needed hotter salsa.\n\nMy friend had the steak fajitas; tasted OK but just luke warm. Fajitas are supposed to be sizzling hot; duh.\n\nI had a so-so tamale and chicken enchilada. Enchilada was just warm, mostly a flat layer of cheese. Tamale filling was tasty shredded meat (as it should be) but corn meal was barely warm and almost tasted only partially cooked. Refried beans weren't warm enough to even melt the grated cheese sprinkled on top, which consequently then pulled off in a single congealed mass when I took a bite. \n\nFinally, the Cadillac margaritas were just average at best. \n\n$50 plus tip for two meals plus two margaritas; not worth it.\n\nThe place looked promising and has a cute patio area but we won't be back - someone's not watching the store. I'm trying to be generous with the two stars as some other Yelpers seem to like this place; maybe things can get better.", "type": "review", "business_id": "WxpCYziMlEy8mrEa_VcB1w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "UofojaVIT3m8qPXHl9J0nw", "review_id": "egym0nlAOtzV5KdxozAe1Q", "stars": 5, "date": "2012-06-25", "text": "We went there right before my Grandma's 100th birthday. There were about 20 of us. The place was busy but we called ahead and they put our name in even though we still didn't have a final count of people. The place was busy but I know why. EVERYONE had a different dish and we all loved it. Everyone wanted to taste each others food because we all liked it so much. We all seem to think we are food critics and we loved this place. Extensive menu and they seemed to nail everything we had! The staff was amazing and would go back in a heartbeat!", "type": "review", "business_id": "2nzUx_M8Szyzsf4CszHasw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "59pVYStY0yKpRmODFIfDww", "review_id": "sOegvt2fE5rbv1tckoo2Iw", "stars": 5, "date": "2011-07-21", "text": "Definitely the best choice of eating chinese food in the city where you have limited good Asian food around. The Singapore street noodle (curry noodle) is always been my favorite and the crab wonton is just a great appetizer to start! I also like their orange beef! Definitely worth to eat for!", "type": "review", "business_id": "xcOncADGPr9eki8OU5Ln7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gDFL_qyyCVcpmdTdCfU_gQ", "review_id": "JgiKP6v5TNi6NNxqjwkf5w", "stars": 5, "date": "2011-05-21", "text": "\"You want a piece of me?\" said the gargantuan mango tango eggees cup. I said \"YES, I DO!\" and give me a big ol veggie samich and some fries to go with my brain freeze thank you very much. \n\nTodays order is same ol same ol 12 inch whole wheat extra veggie grinder with extra crispy fries and a bigee flavor (mango tango) $6.50 w/ the captain card. How can you beat this kind of scratch for two people. you cannot.\n\nIt was Yuuuummmmae!\n\nUnfortunately there is not much choice for vegan here but its all about the eegees!\n\n\nI now will add eegees to Best vegan for the money! and to Best far away vegan. \n\nCheck it! you will be glad you did!\n\nReview time\nCurbage: 10 I really like the fancy shmancy new eegees,but I like all eegees\nP factor: 10 very clean as usual\nOrdering: 10 no wait at all\nMeal arrival: 10 even with extra crispy fries it was fast\nTaste test: 10 yummy today and the mango tango is now my second fav to cherry cider\n\nSummary: 10 Thank you eegees! see you next month.\n\nLate gordo", "type": "review", "business_id": "Nc2TtVj6py6dHH_XdWAKRQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y-wRMqFtawAekwYQMoJ4HA", "review_id": "cNKP5FvfCcmWSBu4OuEMWA", "stars": 3, "date": "2011-05-25", "text": "Decent food at a good price. Bargain lunch specials in a good atmosphere.", "type": "review", "business_id": "W4eKE-fT24h_8b7apHh12g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Zq1J3jo27l5m2ntTZPOSgA", "review_id": "UoFzznahZJq9LVU7WZG4eg", "stars": 5, "date": "2009-12-16", "text": "I was also roped in with a flier on my door, and ordered this a month or so ago when they had their deal for free cookies, salad, and drink with a pizza order. Upon delivery, I was given another coupon for the same deal and a few weeks later received a handwritten thank you note for ordering with them and a coupon for a free order of cheesy bread, no purchase necessary. Needless to say, this has become a go-to pizza option for me. 4 stars for food taste and quality, an extra for great service and good deals.\nSalad is pretty average but good enough for me with a pizza, pizza is particularly good, cookies are awesome, cheesy bread is cheesy enough but not just a pile of melted cheese. Their sauce is really tasty- tastes fresh and not too sweet. Delivery is free, and on time. The longest time I've been quoted for a pizza (at 7:00 on a Saturday) was 45 minutes, and they got there in 23 minutes (I wasn't timing them but I did notice how quick they got there). They have a hot'n'ready special that's only a dollar more than Little Sleazer's and ten times better. And if you don't think it's good, you get your money back. So really, you should just try it. Okay? Okay.", "type": "review", "business_id": "nd1hq7xxzrL_s420QqhDjw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "M_bnwy1RWODDcAi3C0JU-w", "stars": 3, "date": "2010-09-27", "text": "First I want to thank Hula for saving my date night. We headed out for Postino Central for their wine and bruchetta special on a Tuesday and were disappointed to find out there was an hour wait. So we headed up central looking for an alternative. I saw Hula and remembered I've wanted to try it for while, so that's where we ended up. I started with a blood orange martini and sweet potato fries. The martini was awesome, but I have to say the fries had potential, but they weren't crispy. For dinner I had the Jamaican jerk tofu. It was pretty flavorful and the corn cakes and plantains that came with it were a nice addition. The meal was good, the service was great and the overall ambiance was chill yet urbane. It wasn't the best place I've ever been, but I'll definitely go back. I love that there are several vegetarian options to choose from, so I'm eager to see how the other entrees turn out with tofu.", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "tTa7FOsuzCMJNyM9d4Riew", "review_id": "evzFA-eKu9xjIlpyP3KcCg", "stars": 4, "date": "2008-12-23", "text": "this place is growing on me. i wasn't a big fan at the beginning thinking they cater to the yuppy crowd that wants to be seen. i still think that's the case, but i think people truly go for the atmosphere and good food. the vig cobb is really tasty and you just can't go wrong with sweet potato fries...my weakness! the interior is really cool and creative and the vibe is casual and friendly. lunch hour tends to get a little busy, but they have a decent amount of seating for such a small place.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m011mMHSFa3nXSk5anCVKA", "review_id": "yLDTP6tFzKTd6RAYP0mrgg", "stars": 2, "date": "2010-05-08", "text": "I so wanted to love this place. I'd heard great things about the food, love the concept and was looking forward to a wonderful experience. What a disappointment. \n\nWe were seated within 20 minutes or so of arrival, which was great considering the crowd. It was nice to have somewhere to walk around, and we were able to serve ourselves tea and coffee while we waited. \n\nOnce seated, however, it took 20 minutes for anyone to take our order, and another 45 for the food to come. Our food arrived cold. Husband and I both ordered eggs \"over medium;\" mine were runny and undercooked, his were hard and scaly. \"Home fries\" were a mound of mushy, under-seasoned potatoes. We were offered jam when the food came, but the waitress never returned with it. My husband asked one of the other staff if they had any jam, received a curt, \"yes\" as a reply, but they didn't offer to help in any way. \n\nFor the prices (average $10 plus $2.25 for a self-serve drink), I can think of many places I'd rather spend my dining dollars. Yes, the grounds are lovely and I like that most of the food is from local suppliers (which does not mean it was raised on THIS farm, BTW), but there are many lovely patios in Phoenix with much better food and service.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rviVgJFfVSBKEyRFFkH05A", "review_id": "0vX6RbUei3HY6y9el3fhSw", "stars": 5, "date": "2012-01-01", "text": "Delicious yet again! Pho, garlic green beans, papaya salad...they can do no dish wrong. The owner, Justina, is hip, cool, gorgeous and awesome! It's BYOB so bring a nice wine or beer...no corking fee so don't forget to tip well!\n\nIf you're eating and there's a big line of others waiting, please do what we do and go across the street to gelato so that other people don't have to wait an hour.", "type": "review", "business_id": "UIGFrEcoDsw05I1UOrxdOA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ky5-mOk8-9M-NlLr8Jh8rA", "review_id": "0LSY_YArQS6a6yPJAph2aA", "stars": 4, "date": "2011-12-14", "text": "One of my favorite boutiques in Scottsdale, I can always find something I don't need but have to have at Elan. Lisa and her entire staff are friendly, helpful, and always have great suggestions. They keep the inventory fresh and edgy. Some of the pieces I've gotten there never fail to get compliments. It can be a little pricy, but everything I've gotten there is well-made and things I'll wear again and again so... Lisa puts on some great events and really engages with her customers.", "type": "review", "business_id": "H8nW4fDIaeIs-g-c2zkiTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EtMfNbEe6ngq6a4p3y3cWQ", "review_id": "lv1gDBn5FfVv5MGHxeUDRA", "stars": 3, "date": "2011-12-30", "text": "For vegan fare, it's passable. I liked the food, but not totally in love with it. The teas were the best though, and didn't have any dessert but it sounded amazing.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9oSiU2b45v5HwkkvgrXYBg", "review_id": "fcjwUTuRrgi66nZZb-Tb9w", "stars": 2, "date": "2012-09-20", "text": "I really liked Joe's; the food and service was always good. But one bad experience has me wondering if I will ever return. The problem I had was with the service. We walked in on a weekday around 11, the place was pretty packed and there was only one server on the floor. We grabbed a table and waited about 10 minutes before she came over with water. We told her were ready to order, to which she replied \"I am really busy and have other people who need to order ahead of you.\" In my 16 years as a chef, I have never heard a server say that. She didn't even offer to bring us coffee or anything. If anyone from Joe's is reading this, here's a little crash course in restaurant 101...if a customer says they're ready to order, TAKE THEIR DAMN ORDER! Anyway, we ended up walking out. Guess we'll be eating exclusively at Matt's Big Breakfast from now on.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "OooQ5FVrs9cyEcwp7EaYrw", "stars": 4, "date": "2008-05-16", "text": "Aww, too bad these guys went out of business. I actually only went there one time, I live in Chandler, so it's just a little out of the way. But I stopped through the drive-thru and thought if I lived near-by this would be my coffee place. Whoever took my order that day was very friendly.", "type": "review", "business_id": "QQ-lSbz4ARm1MQA5z8-nAw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "LT3L8-tthzD0IakgXm81pw", "review_id": "DZbyjwQYc72n0MhoL6GBHg", "stars": 5, "date": "2009-09-11", "text": "Marcellino and Sima are finally back after their yearly 1 month Italy vacation (re-opened September 10th)....and are we glad they are back! \n\nWe had a fabulous duo appetizer: fresh fig and prosciutto and the second was a filet (carpaccio) with shaved mushroom and black truffle! Delicious! I've always been a fan of prosciutto and melon, but the fresh fig was tremendous!\n\nMarcellino also brought us a fresh black truffle cream for his crusty bread, mmmm, amazing. I don't think you can get this anywhere (fresh), even here if you ask for it, but we were lucky to be in the right place at the right time!\n\nPasta duo was tortellini with even more truffles and a wild boar pappardelle. Best hand made pastas anywhere. Perfect!\n\nMain course was a perfectly cooked filet with his mashed potatoes and julienned vegetables...and more truffles! So right...so full! I'm so glad we had an hour spinning class before embarking on this journey!\n\nWe ended up skipping desert and had some left over to go! What a perfect Italian dinner paradise!\n\nWe can't wait to go back for opera night...and of course we are waiting for his next wine dinner. Best in the valley.", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "cCwj4RJSKU4-o9ZZ1VTtmA", "review_id": "6AvhXtIv9Z89aHY1y9WUXQ", "stars": 5, "date": "2012-04-22", "text": "When I found out that they do banquets here, I was quick to make a reservation for a wedding rehearsal dinner. The service was as good as it gets...period. The food choices my wife and I had to decide on were plentiful, and the result was beyond fantastic! From the appetizers, to the main courses and finishing with yummy dessert...this place rocks.", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9IoWmskJG2sz7hEFAfqV3g", "review_id": "EOW1LE_LVYX0kmvCh9rU9g", "stars": 4, "date": "2010-07-05", "text": "Fun Fun Fun! If you're looking for some fun for your kids or you just need to get out some stress yourself, come here. Enjoy the adrenaline release you can get by shooting at other people in a dark maze with your laser gun while trying not to get shot yourself. This place is great. :)", "type": "review", "business_id": "2Rcde1wjg6FeczFB3TwS4A"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "nx2PS25Qe3MCEFUdO_XOtw", "review_id": "LwcpYSsDA0aPsCLWf_juMA", "stars": 5, "date": "2009-04-27", "text": "Fez is RIGHT down the street from where I work, hence due to its location + general fabulousness, it has become a regular spot for happy hour.\n\nHere's What we LOVE about Fez:\n-Sweet Potato Fries (sooo good--sprinkled with cinnamon by the way)\n-Kisra and Hummus!\n-The Black Bean Burger (the first time I ordered it, I asked the server: \"Now, is this one of those really bad black bean burgers or does it actually taste good?\" She said, \"I totally know what you mean, no this one is good.\"-and she was right!)\n-Margarita Mondays (aka 2 for one Margaritas--check out the pomegranate one!!)\n-The atmosphere--blue and green tones while still being warm\n-The friendly service\n-The close proximity to light rail\n\nHere's what we don't like as much:\n-The slow service (sometimes it gets kind of bad, I feel like you have to be an active restaurant goer and hail down your server--otherwise you may never get to order, get more water/another drink, or get your check)\n-When happy hour ends (I mean, who likes that anywhere?)\n\nFez makes me very happy to work in downtown Phoenix.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "8VGcy_9Pbcn_oa0eCxSGow", "review_id": "GBQaJ5vmW9Jnrtt8MLXKpA", "stars": 4, "date": "2009-05-05", "text": "We stopped in here on a hot summer afternoon, grumpy because we had been on a wild goose chase for mint. Couldn't find it anywhere, like Fry's, Basha's, or TJ's, even in those teeny tiny overpriced little packages. They have it here in big bunches for something ridiculous like 59 cents. Since we had friends coming over for mojitos, this made me happy! It's just about mojito season again, so I'll be headed back to this location. The produce section was large and had some good-looking stuff in it. The location isn't really too scary.", "type": "review", "business_id": "VkdjWDnu5EDqT8PIhb4y3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F82JoyU1Y5yFuSeKfGxoAA", "review_id": "H3uoWZiwzZ4zwTFKh10wLg", "stars": 3, "date": "2010-11-04", "text": "Average Cajun food, nothing special. I came here late on a Tuesday night. Few people there. It's a dive of a place in a strip mall. A bluesman was playing nice quiet blues on an electric guitar...very nice. Kinda scruffy place with all the basic Cajun staples. Nothing fancy. Decent brews. I think the bar tender was waiting tables. I probably won't be back, but I had heard it was great and wanted to try it. I think I like more upscale digs and fancier/pricier fare.", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kJyR4gT1pfCcNjEY9-YMoQ", "review_id": "6khLfob_dUoYcDWk6FMXfQ", "stars": 3, "date": "2011-04-30", "text": "I decided to give this place a whirl yesterday on my lunch about 5pm from work the space was nice open airy the staff from front of the house to The wait staff all were very friendly linens on the tables as well as linen napkins the only thing was the menu was a little lack luster the appetizer selection was fair. Hummus,tzatziki , served w/flat bread ,selection of olives a couple of pork belly selections I had the lamb burger I ordered medium it was served a more rare but was still good the did offer some higher priced entrees and there were other selections of burgers and sandwiches thus the name gastro pub they had some good beers on tap", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fksrAfKZYrhCzOjUIoFudw", "review_id": "2tjXPUf8vtKGoojtM7YI6A", "stars": 5, "date": "2012-03-17", "text": "i go to debon every 3 weeks for aki the hairdresser. she's very nice and asks you a lot of quesitons to make sure you get what you want. she is reasonably priced.", "type": "review", "business_id": "ZmPD_EkSQX0QP9jB2bv13Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "jyiqDgqKJKrEHC61s7hj9Q", "stars": 4, "date": "2010-07-23", "text": "I just went here for lunch. I really have nothing to add to the other reviews on here because they pretty much all sum it up. It gets crowded, the ordering process is a clusterfuk, they place looks sketchy and dirty, the staff is very friendly and helpful, yada yada. The place isn't worth all the hype but definitely is worth a visit if you are in the mood for something unique. Its not the healthiest or highest quality cuisine, but it is a pretty solid place and worth a shot.\n\n* Jerk Chicken = very good\n* Pollo Diablo = spicy and awesome and my stomach is going to hate me later\n* Jade Red Chicken = excellent\n* Pork Fried Rice = very good\n* Red Salsa Stuff = excellent\n* Refried Beans = standard\n* Snickerdoodle Cookie = awesome", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 2, "useful": 7, "cool": 3}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "tjVEbTBYmO12fFADcald5g", "stars": 2, "date": "2010-09-02", "text": "A new player in the Downtown Phoenix food scene, Bliss is a creation by the folks behind the Fez, Switch, and Ticoz empire. They occupy a buliding once occupied by Fate and Nine|05, the former of which was one of my favorite restaurants.\n\nEntering the restaurant, we were greeted with an odor of mildew and dirty water, which isn't exactly a pleasant way to arrive into an establishment. Being the only ones seated in the small space, we were able to really examine it, and I noticed one glaring difference between the way they have it set up and the way it was set up; it feels like a cafeteria. The installation of florescent lights, heat lamps, and massive amounts of stainless steel in the open kitchen make this place feel like a lunchroom at high school. Whatever, we can deal with it. An overview of the menu showed several options which seemed like drunk food... fried everything, cheese crisps, foot long hot dogs, slider burgers, tacos, grilled cheese, etc. Apparently \"comfort food\" means deap fried grease? NO THANKS. I ordered the Braised Beef Tacos, which had the consistency of paste, but were average in taste. \n\nMy biggest gripe with this place is the microwave (not even a turbo chef) sitting front and center in the kitchen. Look, I understand that some restaurants use microwaves (usually not good ones) in their kitchen, especially if it's a cold kitchen (which this isn't) but having it in plain view and audible in the dining room is just atrocious. I truly hope someone from the restaurant reads this and hides the thing. It made me completely lose my appetite when I saw them heating my girlfriend's rice for her chicken skewers in the microwave. yuck. She did mention she was neutral about her food. We are people who go out at least once a day for a meal and try a new place every time, so we know food. \n\nEveryone we encountered was nice, and the service was very friendly. Everyone seemed interested in how well we enjoyed our meal, the space, and they seemed interested in welcoming us back. Unfortunately, the place looks kind of makeshift on the ReBar side, and like a cafeteria on the Bliss side. I'm not really sure why it looks makeshift, perhaps it is just because it looks like a temporary wall in the back of the room, or because it looks so bare, but it looks like they are in there just for the time being. \n\nI feel compelled to go here again but only for drinks out on the patio. The inside looks like Mexico, the food wasn't very good, and the cafeteria/microwave issues pretty much summed up this is not a place for a nice night out dining.\n\nI also find it interesting how many reviews are by orange heads or people who were here for the \"vip opening.\" c'mon, try the place before you write a public review of it, and by try I mean eat some food, and actually experience it.", "type": "review", "business_id": "PwxvN0SnAGPdqXdNEYVT3g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-JCz23DksK1RarHxp03-Gw", "review_id": "2j6g8_TLzE5Ua1MoPsDlpQ", "stars": 5, "date": "2012-10-31", "text": "This place was great... Well as great as a doctors visit can be. They called us (my son was the patient) back within 5 minutes and immediately saw a doctor. She was kind and took her time - asked a lot of questions and did not hastily diagnose and fully explained to us what was going on with my son's health.", "type": "review", "business_id": "fATj2lCnnjw2GHH4iL0TIQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "roTLGM_IqrYi3QSQNuzxlw", "review_id": "28Pk6nBytxscDAJni5sloA", "stars": 5, "date": "2011-10-22", "text": "This is true personal training at a fraction of the cost. It's fast, convenient, clean & friendly! You choose the style of fitness YOU want, and your workout program will be designed specifically for YOU. And you will see your progress after each session. AWESOME!!! I like it so much I'm going 6 days a week!", "type": "review", "business_id": "OhCRdO-4v4zV90TMbR7Qfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4yVZLUC_siQmWDkbKLM5YA", "review_id": "otVTsasenx64EvkoqoH2vA", "stars": 3, "date": "2010-11-24", "text": "This place is pretty good. better than average but not great. Fish fry on Fridays is ok if you like DEEP battered fish. nice atmosphere lots of TV's.\nUquiel Beer on Tap", "type": "review", "business_id": "bx5Yc7-_E8wz3Lahpq88mQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2G5N1YvbqQ_9Wa3UEMMbnA", "review_id": "T7ht0i7McrJoEgBdG1rlLA", "stars": 5, "date": "2011-10-17", "text": "If you are looking for only raw vegan food, this is your place. Nothing is cooked, everyhthing is 100% raw. They offer a variety of creative options from appetizers, wraps, soups, pizza and pasta. They have freshly squeezed juices, smoothies and a variety of different health shots. The dessert is yummy as well. This is a must try!", "type": "review", "business_id": "5kB59vuc4yufpGNNrF3Efw"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "UTt78HkUgvATBJxhXIPZJw", "review_id": "YKXgZI-ghJBCbJPhs0kZmA", "stars": 4, "date": "2009-10-08", "text": "Sure it's walking distance from my house - so I was hoping I would have a new place for my morning tea. After finally re-opening after the fire on 16th and Bethany Home, I was excited to check out Luci's.\n\nThe design of the the place is fantastic simple, sexy, a little modern and throw in some retro corner grocery feel. I was greeted with fun, friendly service, and then left with a great pastry and a tasty ice tea for the road. \n\nThey seem to still be working out some kinks since the re-open, but I see it only getting better. In fact I just got myself excited. I think I am going to head over there now for my morning snack.", "type": "review", "business_id": "St3jS0PnF1lulH1ggA4Jgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T7J9ae0wTskrI_Bgwp-4cA", "review_id": "PSpeEEprBYkRBb60bLBgFA", "stars": 1, "date": "2010-04-05", "text": "This place is disgusting!! The bun was dry and stale. The veggie burger was yucky... I don't think I have ever had one I didn't like before. The kids meals are miniscule. The topping bar is so simple and plain. The dips are not very good... cheese dip is YUCK! Drink choices stink. Cookies taste raw and boring. Almost forgot to add that the two young kids didn't even care for the french fries because they are seasoned. I thought they were a total waste of calories. I can't believe the prices either... so not cheap or even worth what you pay for.", "type": "review", "business_id": "0m0KmAYGvC34MfwJIEgCEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "N-99DP_5HneEa-6So6a3pg", "review_id": "PPDfQeTai1uq2Sz2Z1RjLw", "stars": 4, "date": "2010-02-02", "text": "Been there many times with many friends, not fancy food but decent, fresh, local, organic at a good price with none of the pretentions that one would associate with the whole organic/green mocvement in dining. That being said the food only gets 4 stars based on the price plus the 5 star brownies...food is above average but not by much, the atmosphere and price are what i enjoy most", "type": "review", "business_id": "qlrZzAktK8wODSHxhLEK7w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HR6mu6sZz4ptVWbkT4uOvA", "review_id": "N6w7xp1bgOAEYSSnfbPtdg", "stars": 4, "date": "2010-03-01", "text": "Worth a visit. This is good food, not good people watching. \n\nThink: Colorado take on southwestern food. \n\nAte: Pork Green Chili app. Grub. Little kettle of the stuff with four fresh made tortillas that arrive folded in a white paper bag - hot. 4.7/5 for flavor, quantity, value, and presentation. \n\n\"Big Ass Burger.\" All made in house. Even the bun and fries. I don't think they keep the cattle there though. Burger was loosely packed, over-cooked, and a bit salty for my taste. But I am a critic. Jen thought it was average too. Also now $13 - was $10 6 mos ago according to other reviews. 2.75/5\n\n\"Huckleberry Bread Pudding.\" Whoa. Like a hot gooey berry muffin with Ice-Cream. Awesome. Jen thinks it might be her favorite dessert of all time. 5/5\n\nWe were a little worried when we saw all the snow-birds in their ivy caps and studded mom jeans. Turned out to be just fine - and the service was pretty special for how reasonably priced everything was. Portions were serious - Jen and I shared everything and were stuffed. Can't imagine orgering your own app, entre, and dessert. No way. \n\nSorry about the typos. It's bright out here in the Scottsdale sun by the pool...", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JdNERlRX2ghg3v_rNSt8Hg", "review_id": "zTWFbNTWwGtHlDpxggnlUA", "stars": 5, "date": "2011-02-04", "text": "Authentic mouth watering food.\nGot the steak fajitas dinner....extremely satisfied.", "type": "review", "business_id": "Yb2pNCxYR32XKmpirqJqeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wi8bnLyWpJOt_DV8zqgfZg", "review_id": "ok2Gr4WSvZ5fJSp_Wz59Pg", "stars": 5, "date": "2011-09-13", "text": "I love that they are kid friendly and that chef Aaron came by to ask how everything was. Delicious food.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gz6a5ATa6Sg0QlfiCHPcZg", "review_id": "tOBYUw_3va01wu004bQp0g", "stars": 5, "date": "2008-02-10", "text": "I cannot believe I am about to say this:\nAIRPORT FOOD IS GOOD.\n\nFor any of you who eat in airports on a regular basis, you've surely come to accept the fact that airport food just sucks. It doesn't matter how much you spend: the bread is stale or soggy, meats are dry and tasteless, and forget fresh veggies and fruits of any quality.\n\nI was just shocked when I visited the Roadhouse at Sky Harbor recently. I had an hour before my flight so I ordered a Stella Artois and a french dip. I wish I'd had a camera to catch my expression when I bit into my sandwich. The bread was soft and warm. The meat was tender and tasty. The cheese was really good; no joke this was real cheese. And HOT au jus? \n\nOMFG I almost freaked out it was so good! I couldn't wait to tell my server how pleasantly surprised I was. She kinda laughed at me and said they get compliments on their food all the time. AT AN AIRPORT? Folks, this is the best kept secret at Sky Harbor. I will make it a point to go out of my way to eat there in the future, even if my gate is in another termial!!\n\nThis place is in the low B gates - try it and you won't regret it!", "type": "review", "business_id": "KoJ4jNSmqYbmKqcoh-2dNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Eq6j-P0ipCIlhI1GqrbpWQ", "review_id": "G6yLYFSFdL0Zkdf907rPvQ", "stars": 5, "date": "2010-08-14", "text": "Amazing food and excellent service. LOVED the porcini rubbed delmonico.", "type": "review", "business_id": "QdbZyl-LWFS54u93Vjd5SA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "OqgL64SkHicaRtYpw08r9g", "review_id": "m8mOG3QWCfr7SR0km3xJ1g", "stars": 2, "date": "2010-09-21", "text": "I used to be a HUGE fan of the breakfast club, even when I had to wait in the 100 degree heat with a hangover and now I am not. I have had the eggs Benedict, the breakfast burrito, and the Greek omelet and they are all bland and quite frankly taste the same, even with the red and green sauces on the burrito. I ate there again last weekend (because my boyfriend wanted to) and I had the lox and bagel, which was down right gross. The salmon was the nastiest color and tasted almost as bad. The bagel, was well, a bagel, but not even a good one at that. Next time I am in Scottsdale I will be going elsewhere for breakfast, I'll skip the wait and the bad food.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 1, "useful": 1, "cool": 3}, "user_id": "PR3BwoHUujKqnO9uACPS6A", "review_id": "2osp0HewAtm1cw77uzMegA", "stars": 4, "date": "2008-02-05", "text": "This place is yummy. The service might not always be, but the food is. They have a sexy bar and great intimate decor and a South West feel that isn't done with terra cotta colored paint and teal cacti pictures. I love the Jelapeno Benedict and they have AMAZING margaritas. And they serve brunch till super late.", "type": "review", "business_id": "9BJ5h9X1krpXFjKj0a6wbg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qHIQkZ_l3nYpHnFFj8Qt6w", "review_id": "j2OZUaNGzWaasCdqbtXRYw", "stars": 4, "date": "2012-03-05", "text": "I've always had a pleasant experience at Mojo in Tempe Marketplace. I have been to this location about 4 times and they always provide good quality and value. My favorite is the red velvet froyo.", "type": "review", "business_id": "WfYQE-MZCQb_BOyW7lWh9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "69u07iiOtbtRvLS6I4-DTw", "review_id": "zXmKy7kjlGhUIuEIKu-VdA", "stars": 4, "date": "2010-06-12", "text": "We really liked this place. I got the grande burrito with zuchinni & peppers i it which was really good. Loved their carne asada and the prices were great. I wish they ha more on their dessert menu. Would love home made churros! Staff was friendly. Would for sure go here again. Much better than baja fresh, rubios, tace bell & most other mexican places around PHX that we've been to.", "type": "review", "business_id": "kyWbn54rsIlS3vbpDo0qPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BVZ7iTR_nI3jzdQidze1UQ", "review_id": "2K-UHZrmE5SJXLQlxZdicQ", "stars": 5, "date": "2007-10-31", "text": "One of my favorite places to satisfy my sweet tooth! I typically will get sorbet, and on this evening I decided to get the Raspberry sorbet. I believe that this Gelato Spot location has the nicest ambiance of all the locations. After getting my sorbet, I enjoy sitting out on the patio.", "type": "review", "business_id": "LHzVPddSPzMECho55zCf0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Wy7UEqtBkjvjIOjn60UcPQ", "review_id": "K43kx5KUQ567ilD9h6PP4g", "stars": 5, "date": "2012-07-19", "text": "This was the first place my husband to me out to eat out when we started dating, OMG I loved it. The staff is always extremely nice prompt at this location, we enjoy their food and I epically am in love with the 99 cent margaritas they are the best. We always have a wonderful time here new and old memories.", "type": "review", "business_id": "y6uO4ydAwBHUujfiSktxZg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "aFh79e55bjxj5XD5vkob8Q", "review_id": "0wsuSC-c-bqs6xVAhAkqhg", "stars": 5, "date": "2007-07-27", "text": "I am a transplanted Midwesterner, so I love me some breakfast. And by breakfast I mean: Hashbrowns, sausage, bacon, pancakes, and biscuits and gravy. \n\nMike and Rhonda's makes a mean breakfast with huge portions. For $7 you can have bacon/sausage/ham with hashbrowns, 2 eggs, and biscuits & gravy/pancakes/toast. Come hungry or share.\n\nThey also serve classic american lunch fare: burgers, chicken strips, fries, meatloaf, etc.", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z3qVl-1JgYnAe4py6VC5ug", "review_id": "fVuAmpn19tmVJxuCEfxbiw", "stars": 1, "date": "2006-06-29", "text": "This is one of the franchise store of Ritz Camera in Chandler. The store's staffs are nice, however, their photo lab is miss leading. They make the price in very small fonts and hanging on the ceiling. \n\nFor the first time user to print photos in the lab, I was charged for $45 for just few 4x6 and 8x10 print without sign-in as member. I asked for canceling order prior they print the photos. I was told \"Too late\" even it's still in one of their store pc for ordering prints. \n\nSince they are franchise, I should be able to return or exchange the accessories I bought for my Nikon D70S camera in different store. I was told \"No\". I can only exchange or return to the stores I purchase them. \n\nI will not buy anything from them again.", "type": "review", "business_id": "L1BrWBGpGBf0vmjThJ9qzQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "Jnt2z0W4hzc63qau4pCjIA", "stars": 4, "date": "2010-11-23", "text": "4 1/2 stars - really great place! The decor is nice with cool artwork and beautiful flowers on every table, the service is friendly and food is authentic and delicious! There happy hour specials are pretty good as well!", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wJzMpk54FF2jeENqMBJ24Q", "review_id": "Rdeg17BG8611tCiwpG8sGw", "stars": 3, "date": "2012-04-11", "text": "Best time to work out at this gym is in the early morning. Went in the afternoon a few times and it's usually packed. \n\nThis place has everything I need to work out. (threadmill, free weights, machines, basketball court, swimming pool, and sauna). Rarely do I see any of the machines out of order/ broken. Although the men's sauna bench was broken for maybe 2-3 months before they finally fixed it.", "type": "review", "business_id": "xT93fKSkismzy38eJOIFmA"} +{"votes": {"funny": 0, "useful": 6, "cool": 0}, "user_id": "oy_0JzDPYGXBZ2YhDhxK9w", "review_id": "3S1i6erH7IL3-hWGOL1bTQ", "stars": 1, "date": "2012-07-27", "text": "I wish I could rate this place higher but my blow out is terrible. I asked for a blowdry with lots of volume and curl. It seemed that the cross between the mai-tai and cosmo would be perfect. My hair is flatter than what I walked in with. My hair is curly naturally so has decent volume, but for some reason its flat! Also the stylist pulled my hair alot while blow dryng and apologized for hurting me which I appreciated, but have never experienced with a blowdry before. I don't think I'll be coming back, sad since I love the concept and the salon is lovely.\n\nUpdate: They offered me a make up blow out. I decided to try the place out again, thinking it was a fluke that my blowdry was so awful. Mistake! Not only was my second blowdry here mediocre, I ended up paying for the service. I wrote to their manager who had offered the complimentary blowdry, but no response.", "type": "review", "business_id": "7Y7p1NHDj0iGQN7IbBp5jw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "J92bzxYVmyoLHULzh9xNCA", "review_id": "4IQ0g-b7Dhmx5ybiQomXow", "stars": 1, "date": "2012-07-29", "text": "Well, I guess the bar is much lower in Flagstaff, as we went to their restaurant in Glendale for breakfast. It was less than mediocre. Starting with the coffee, which tasted awful..it was very bitter and watching the waitress pour old decaffinated coffee into a regular coffee pot! Unacceptable. I had bacon and eggs...fair. Asked for the hashbrowns to be well done..didn't make a difference, I guess, as they came out raw. Also, asked that my toast be dry...came out saturated with butter. My husband had the chicken fried steak with gravy...you could have plastered a house with the gravy! As you can tell, we will not be returning. The reason we went, was because of their article in the paper this week. Just shows, that you can't believe believe everything you read. My husband, \"jokingly, suggested, that we cancel the paper!", "type": "review", "business_id": "pa6K7DGByxBXxcVJ59nWMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zMx_sj5v_wQhGD4Udm8rSw", "review_id": "uJDLbfFnFGh_mG0u3N5w2Q", "stars": 4, "date": "2011-05-05", "text": "I ordered the Chicken Pad Thai and Green Curry, YUMMY food was very good, ordered it spicy and it came about medium. But the food was what I wanted and expected, service was good I asked for an opinion on the curry and the waiter happened to agree with everything I asked. \"how about this is this good, YES he would reply\" made me wonder if he had tried it all. Beer and wine are both served. I liked this place and will return.", "type": "review", "business_id": "2bdKR3l4o-S1CscLqqnvVw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "nMwgC0DuMsBR0V5v4-J8wg", "review_id": "hPncywhJYLYG-QyjPr42OA", "stars": 5, "date": "2009-11-01", "text": "I love, love, love the Keg! I've been to this location as well as San Tan Village, Tempe Marketplace and Desert Ridge and have had nothing but exceptional food and service. I really like the atmosphere, it has that dark, cozy steakhouse feeling without being too stuffy or pretentious. \n\nWe enjoyed an excellent Halloween dinner here last night which included a \"Keg sized\" glass of Fetzer chardonnay, a margarita (very strong), the Keg Classic Dinner (ceasar salad, 7 oz filet wrapped in bacon, mixed vegetables and a loaded baked potato), bacon wrapped scallops (an appetizer that I ordered for my entree) and their fabulous bread with whipped butter, YUM! Our server was very outgoing and friendly and offered suggestions as far as the menu. The bill with tax and tip was $68, really an excellent value.\n\n Overall, a great meal and dining experience. I will definitely be back and can't wait!", "type": "review", "business_id": "xMK01ZbVUYLLoyqoeWAIVw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "js_yEOWZfqr5b_z2QEZIQw", "review_id": "DQbSGXSMKZKFmRmf68fiYQ", "stars": 3, "date": "2009-07-06", "text": "We stayed at the Pointe Hilton over the July 4th weekend are were very impressed with the amazing pool facilities and poolside food service. However, I would send caution to anyone planning to stay at this hotel: if you do not have children, this probably is not the place for you. Screaming children swarmed every corner of this massive resort! So if you're looking for more relaxation and less SpongeBob, I'd suggest checking out the other hotel options in Phoenix.", "type": "review", "business_id": "N1xMSUfv1GmfHGa9a3VuJw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "MVjV49GPz1pO-n_oaxdzlA", "review_id": "dbFSsCZwGS8Vuu2L7QDbGw", "stars": 1, "date": "2011-06-27", "text": "I decided to break from routine and get a haircut at a local Great Clips. I called ahead and asked if they had an experienced barber that could do a flat top. The lady assured me that they did. I was Leary to say the least when she sat me in a chair of a 20 something fibbertygibbet dressed like Madonna. Half way through this butchering, she asked my advice and then the advice of the owner on how to accomplish this haircut. Kid you not, it was an inch longer at the sides than the center. I looked like a cross between the Gunny and flock of seagulls. I went home, set the clippers on 3 and finished the job......Would not go back here unless I lost a bet.", "type": "review", "business_id": "Y-BtrSR6NebejB34_Z-oWQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NmUN9q27IU3DiueGJvdt1Q", "review_id": "2P1sh7g0Y53Hbj9SVYN6TQ", "stars": 3, "date": "2012-01-05", "text": "The food is good, but took a while to get to us.", "type": "review", "business_id": "-vHWAsiX0iHWJw-pkqv32Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zS4tNnZaHqZZamzo0mPExg", "review_id": "iImgqTay3TRXi2qjUKgJSw", "stars": 4, "date": "2010-01-14", "text": "Very consistent, thin crust pizza, made with fresh ingredients and excellent cheese! The market place is lively and the atmosphere is festive!", "type": "review", "business_id": "x4L42igQPv4TFlqGR2Wthg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "odsfSlKTZSsuunDxcXUUuw", "review_id": "ORQmSJCsn3HXIQ3iVWmONw", "stars": 5, "date": "2012-05-30", "text": "I am OBSESSED with Ra. Thank God that it is a chain restaurant otherwise I don't know how I would get my fix when in different states. I don't care what everyone says about the best sushi, blah blah blah. This place is THE best!\n\nFirst of all it has the BEST happy hour! I was introduced to the restaurant's best items during happy hour when it was less expensive to be adventurous. My absolute favorites are the Sweet Onion Salmon, Salmon Carpaccio and Shishito Peppers. The Sweet Onion Salmon's sauce is to die for, the Salmon Carpaccio is soft and creamy with a nice kick of wasabi and the Shishito Peppers have the most amazing garlic-type sauce! I usually order the peppers with a side of white rice and drizzle the sauce on it for a more filling meal. \n\nOther favorites are the RAckin shrimp, Uchi No Salad and Vegas Roll--basically any of the happy hour items are great!\n\nOh and I can't forget about the desserts, if you have any room left you have to try the cinnamon tempura ice cream, but share it because it is very filling.", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "FKVlUZC2NBwO4VDvA908zA", "stars": 4, "date": "2007-12-03", "text": "Two times a year, you can meander down Mill Ave and the adjoining streets to look at an array of art for sale. Everything from jewelry and pop art posters to handmade kitchen utensils, photography and abstract paintings. \n\nIf you go both in Spring and Winter, you're likely to see a few of the same artists. For the most part, Tempe Arts Festival does a great job of providing variety. Plus, it's fun to wander and look at things you may not have seen before - let alone expected to see at an arts festival. \n\nThis isn't the most exciting of art festivals. There's really no live music, unless you count the occasional melodies of flutes you hear when you walk by the vendor selling his handmade wooden flutes. \n\nI've been three times and enjoyed myself every time. I wasn't wowed. I never saw anything I couldn't live without. But, like I said, this is a fun event to mark on your calender for both Spring and Winter - even if it happens to rain during the festival. \n\nI give last Winter's and this Spring's festivals both a 4-star review, for the weather and company were great. It was my first year going, and I was happy to see that Tempe offered the Valley something that appealed to people who really do try and appreciate art. After all, it's a \"consumer\" type of event, geared toward bringing the community and artists together. I can appreciate that. \n\nI give this Winter's festival a 3-star review. The rain didn't phase me. I can deal with a few sprinkles. What bothered me was the mixing of ASU and UofA fans, both groups beginning to gather down on Mill Ave for the football showdown. Don't get me wrong, I love a good sporting event and understand team rivalry. I just thought it was unfortunate that the upcoming game and the fans' excitement took over the relaxed, casual feel that the arts festival usually has - you know, when you can walk down the street and look at art without running into an impromptu cheer section. \n\nYou see, fans were screaming in the streets - hollering insults to the other team - and waving their school's colors high. (Once again, I understand the fun of that. I just didn't expect it to be all over the streets in the early afternoon. Maybe I'm naive, though.) The fans were a definite distraction from the art festival. Knowing what would happen when alcohol was mixed into the equation, my friend and I decided to bolt. \n\nLucky we did. Seems like Tempe can't handle a few rain droplets, for when we were walking back to the car, a street lamp post nearly fell on our heads. Talk about a commotion. \n\nI'd much rather attention be fixed on the art festival rather than any football game or falling lamp posts, no matter how dramatic both of those things can be.\n\nI s'pose this echoes the old saying, \"There's a time and place for everything.\"\n\nWord to the wise: Parking can be hard to find, or require you to shell out $10 for a spot. If you can, park somewhere closeby that's free of charge and hoof it on foot.", "type": "review", "business_id": "yJYQ5P3TxP8i-u_GK8NO_g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EJaoDaba5ew7Pr1r8fT4NQ", "review_id": "t8z_np9fch9CdDbLrqyQzA", "stars": 5, "date": "2012-04-24", "text": "The best Asaian store around. Love the selection. Awesome smoked herring for cheap. Everything is so much cheaper and better than any other Asian store I've been.", "type": "review", "business_id": "ehy9Vy1BKc9shO74chuUAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2YrJ7dUrF1jvaAo-Kp2r2w", "review_id": "J73BLMQ62VcYOX915sWJGw", "stars": 1, "date": "2012-04-23", "text": "we visited on april 15th and And also Sunday April 22..\nI have twice now gone to your restaurant and twice been told that I couldnt use my BOGO coupon. The first time my mother went to pick up our order, she was told we didnt order the right food and we had to order off the main entress. The second time we ordered, I was told that we had to order off of the DINER SELECT menu. I did not have my coupon handy, and when I was able to read it, it says specifically, \"Offer valid for one complimentary Diner Select with the purchase of another entree. Complimentary Diner Select must be of equal or lesser value to purchase entree. Valid entrees include SIGNATURE DISHES, BOWLS, SALADS, DINER SELECTS AND LETTUCE WRAPS.\" So why, on two separate occasions were we told conflicting information and not allowed to use the coupon, thus spending a small fortune on food, TWICE?!?!? Your customer service is far from what it used to be and I doubt you will be getting more of our business any time in the near future.", "type": "review", "business_id": "9Vu9KhK2-kBSM-FXvxXGNg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "g_uCN5y6wuz265tUxIICmQ", "review_id": "a-tarNmx5GDkYzRwbMdY8g", "stars": 5, "date": "2010-07-11", "text": "What can I write that has not been written about the greatness of In-N-Out Burger! Maybe my love is borne of the separation from it my primary residence in Dallas compels. I hope that when it opens in Dallas (yes, the plans for that are public), nothing changes.", "type": "review", "business_id": "EzwpoKQrHgDHwpuCUw074Q"} +{"votes": {"funny": 5, "useful": 2, "cool": 3}, "user_id": "J1_dnSaVYi17BoxK00y9AQ", "review_id": "ijRGvI7Ti7ciSa7kpBDltA", "stars": 2, "date": "2008-09-16", "text": "I will still call it the Counter, because I'm the curmudgeonly type that is sometimes slow to accept change. (Who is Chloe? Fox Restaurants need not have changed the name just to eliminate the boutique...)\n\nThe food has always been tasty. The split pea soup is absolutely amazing. The hot turkey sandwich is delicious, the chopped salad is a spot-hitter. I don't think the prices are too terribly high, after all, it's in Kierland, which isn't exactly a discount enclave.\n\nThe service. Ah, the service. First, let me spare the hard workers in my tirade. The cooks, and those who actually are putting together food and cleaning, do a fabulous job. The servers - or register-runners, have been incredibly disappointing. They invoke this kind of back-story imagery:\n\n\"Mom! My gas card didn't work, I almost didn't make it to Dana's party, I mean, can you imagine if I would have run out of gas, and had to talk to a commoner?? Wtf, Mom!\"\n\n\"Shannon, your father and I decided that you need to pick up a part-time job, we will still pay for your BMW, your insurance, your condo, your cable, your birth control, your health insurance and your part-time college education, but we think it's time you worked about 8 hours a week.\"\n\n\"OMG! This is soooo ridiculous and unfair, Mom, wtf!\"\n\nAnd that is how Shannon (name made up) came to work at The Counter. And that is why she sucks at service. And that is why she doesn't appreciate how hard the rest of us work to purchase an $8- sandwich, and how a simple smile, some humor, and a \"thanks for coming in\", or \"how is everything tasting today\", could make such an enormous difference in someone's dining (albeit counter style) experience. \n\nInstead, after ordering the Chopped Salad and the Pea Soup from \"Shannon\", the cook brought me my soup, and I enjoyed it. And I waited. And waited. There was no ticket, there was no chopped salad in the works. (The prep area is fully visable.) I graciously asked the cook if there was an order in for a chopped salad, and she said, \"oh no, I'm so sorry, let me make one on the fly for you!\". She did, I ate, it was delicious, and I thanked her. \"Shannon\" then presented me with my bill a full few minutes after I sat in front of an empty plate, I paid, and as she handed me my change she said, \"bye.\" I don't think I need to elaborate on that. \n\nSo - to the Shannon's of the world - hurry up and get a rich boyfriend and become a trophy wife so the rest of us don't have to deal with your shitty service, bad attitude and hateful unsmiling demeanor. And to the awesome cooks and service folks out there who manage at least a smile, bless you. Bless you, every one.", "type": "review", "business_id": "Oj79-vTnjQk_jLr6oNbT0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "L3Jsd79upFBPk2z4EBOsVQ", "review_id": "2Wm-u9udKjNhBzR9DTIGJg", "stars": 4, "date": "2012-01-24", "text": "This is your typical airport restaurant that pretty much has a monopoly because your choices past security are pretty slim. However, this place has four saving graces - decent connection to the free airport wifi, a tv that had the NFL playoffs on, a full bar with delicious long island iced tea, and the french fries. The french fries are delicious! The burger is ok; I couldn't finish it all. My bill came to $20 for the food, long island, tax, and tip, which is probably about right. The waitress, whose prompt service resulted in no problems, filled up my water bottle for me (instead of using the water fountain), which pleasantly surprised me. So, four stars it is!", "type": "review", "business_id": "jZ58NvLSZ6oVYlRta1zUNQ"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "4UUIpbOTPmu43wuC2aSGkg", "review_id": "TAo0fNJ7r_TngU6CiCLl2A", "stars": 2, "date": "2008-11-25", "text": "I went to Sutra to attend the mixer where Yelp was being featured. After soaking in the cool \"sceney\" vibe, I decided that I was hungry. I asked the waitress for a menu. When she came back she told me that the right hand side of the menu was half off and made a couple suggestions. I love the names of the rolls that Sutra has. There were selections like \"Cougar\" and \"30k millionaire\". I had one of each. As if the rolls were made to live up to their namesakes, they didn't impress me; they merely annoyed me. The lack of freshness and flavor were the biggest factors in Sutra's failure. I ended up leaving plenty of sushi on my plate, but I was relieved that they were half off, otherwise I would have returned them upon first bite. \n\nI would not eat at Sutra again if I had a choice. I would advise you to eat elsewhere and come to Sutra to see and be \"scene\"!", "type": "review", "business_id": "LxE7D6uigL3vLaasPU7Ewg"} +{"votes": {"funny": 2, "useful": 4, "cool": 2}, "user_id": "palND-kF1qpMLhkcgAnSxA", "review_id": "SX3oQIQycIa7cEXzx1wIgA", "stars": 3, "date": "2012-07-23", "text": "I have to say I was pretty disappointed with our brunch experience here. \n\nOk class, let's have a lesson. What makes a good, traditional, Eggs Benedict? \n\nEasy question, you say?\n\nAnswer: Nice crispy, toasted English muffin, meat of your choosing (let's go with Canadian Bacon), creamy delicious Hollandaise.\n\nWhat am I missing, class?\n\nAh yes, a beautiful poached egg, which bursts when pierced, spilling it's silky, golden yolk. \n\nOk so now that we've had our lesson, let's put it into practice. My eggs Benedict was served with three quartered tomatoes, very very very crunchy potatoes with no seasoning and two eggs Benedict. One was completely missing a yolk! Bummer. When our server came over, I told him and he brought out a new one, but the yolk was overcooked. Bummer, times two. My friend also had an overcooked egg on his plate.\n\nFor the prices they're charging, we should have had four perfectly cooked eggs and well seasoned potatoes. It's brunch, not brain surgery. \n\nThe space is beautiful, and the server was pleasant, but I won't come back. Too many other places to try for brunch.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gjph-223Qy0xmoBRNBo-4w", "review_id": "9mbS4N24OZy3MFEQA_M7eA", "stars": 4, "date": "2009-10-08", "text": "I've been for lunch half a dozen times and usually sit at the bar. Their beers are great. I'm a home brewer and am pretty discerning in my beer tastes. Their HopKnot IPA has a huge nose of hops if you are a hop lover--which I am. However the 8th Street Pale is probably my favorite. It is a great balanced English style pale ale--without the bitter edge of an American pale ale like SN. On a hot day their Kolsch is super refreshing and reminds me of being in Germany. I've had mostly burgers and fries there and they are good. The atmosphere is casual and the staff is friendly and attentive. If you are a craft beer lover it is a nice laid back destination to enjoy a brew...or two. They also pour growlers and sell cans of Kolsch and Kiltlifter in 12 packs.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "GPchh5Jw7Go8nhI7WqF-ug", "review_id": "55K59eG8bvViey-fcezXzQ", "stars": 4, "date": "2012-04-05", "text": "Ask to sit outside, if you can! The patio is wide, clean, and fresh air goes great with a Grand Slam. Very kind manager working the day we called to see if we could bring our dog with us before we had to run off to her dog training. She said they don't normally allow pets out there, but since there was nobody outside, she would allow it unless someone complained. We got there, passed the pup over the gate, and had brinner like champs while watching the traffic. The manager came by to check on us and even brought out a bowl of water for Tatum. Like everyone says, it's Denny's food... what do you expect? But I think the hospitality makes all the difference.", "type": "review", "business_id": "UYHa5iKUddnZrlxF7taI0Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "hfGrlr9IgsG72d8-dXuKDQ", "review_id": "wQp-Zi_XUXJErJg5SRkykw", "stars": 5, "date": "2012-11-28", "text": "Steak cooked to perfection.", "type": "review", "business_id": "O-Xa9GCFWI65YiBD5Jw_hA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sVOg6fYIlKLqpq7ptRZIsA", "review_id": "jOIy9UscRIrJwXkKPf7JfA", "stars": 1, "date": "2012-03-17", "text": "The parking is my beef with this place. Why does a customer have to pay $12 for each time we park at the garage? If you move in and out three times, that's $36 for parking. Yes, my company was paying, but this was just outright stupid and I wouldn't make my company pay for this again.\nI've been to Phoenix twice since then, and I've avoided this place and stayed at the Marriot. Much better place.", "type": "review", "business_id": "KNIFSqzQADOZWDO_7T-KzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1qdj_KsKTguk-vA4cVYMaQ", "review_id": "bB8w2NCLaFqe87mm0s4IQw", "stars": 5, "date": "2012-01-23", "text": "So glad to have found great Thai in my neighborhood. We thought when we moved away from Tempe that we had lost our access to great ethnic food. Luckily we found this little gem. Great ambience, friendly quick service, and fantastic food. We ordered the green curry chicken and the drunken noodles with vegetables. Great sized portions for reasonable price. We got ours on a 3 out of 5 scale of heat and it was perfect for us. I have a feeling we'll become regulars.", "type": "review", "business_id": "WPmamMTGAmNYXGoXW1mWyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "lOvgjEkecLfVJwJriEjt2w", "review_id": "eeAZx1YUpN_4lwLL-_v5dg", "stars": 5, "date": "2012-06-19", "text": "As far as indie record stores, this is truly as good as it gets in the valley.\nIt is a breath of fresh air because it is a REAL record store, and you can sample CD's along the wall to get your music fix.\nI love how they have a list of recommended new releases. I definitely refer to them if my music is getting stale.\nRecently, my husband and I have bought albums from Beirut, Andrew Bird and Iron & Wine. They have everything your heart desires- so go and get you some!\n\nOH- and I just found out you can buy concert tickets there, and they usually give out a free \"Magnet\" magazine with each purchase. Woohoo!", "type": "review", "business_id": "Re0Xw-AYkn6NK7QRk3kPEg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JVTvEtBDi-WDqB0PSTf4BQ", "review_id": "8h_4HMuDeLFfvMIE9FhZnQ", "stars": 3, "date": "2008-10-02", "text": "Good: 22 courts, backboards, big pro shop, cold beverages, ice cream, nice clean bathrooms, nice people work there.\n\nBad: Pro shop seems to only carry women's clothes and old old school mens cloths, the lights are the second worse in the valley (after Indian School Park)\n\nI have never paid for courts because I play on a league so I dont know about the rates. The courts were clean and well kept.", "type": "review", "business_id": "bGYQiDTdpTc_ok7cYsZzoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HY9A-ShZQ1MvdFvEhNY4LQ", "review_id": "N_hL1-fyunhVpDDX6fz9Sg", "stars": 1, "date": "2012-07-03", "text": "The owner has changed hands & this place isn't what it used to be. If you want up to date paper & quality product...go to Scrap Happy OR Crop Girls!", "type": "review", "business_id": "iHmfkYeEsIxbAqEj3dloQQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "9JoA1TV3OMmliDXPx5_fHw", "stars": 3, "date": "2007-02-07", "text": "I like the Bamboo Club, but it doesn't seem to bode well with purists. It is a very Americanized spin on Chinese food, with some dishes it works well and others not so much. \n\nI struggle with a fierce addiction to Panda Express so I refer to it from time to time, but I feel I'm justified this time. Bamboo Club is like a deluxe version of Panda Express. In fact, their best dish is also the orange chicken, only done much more tastefully than their greasy counterparts. \n\nIt's a little overpriced considering what they are offering (semi-glorified mall food) but, all in all, not bad.", "type": "review", "business_id": "yLfYR-PvIzAv9DnEH68Rgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ggEHaGGCiUVmE2N5iZy6DA", "review_id": "-ivArEXg8QSoZr4l6TD-pg", "stars": 4, "date": "2010-08-18", "text": "I was reluctant to try this shop at first. Some of the reviews that popped up via Google lead me to believe it unpleasant and not well-stocked. Well, you can fool some of the people some of the time, and today, I was no longer fooled by whatever weird people out there have it in for Double Joy Beads.\n\nFirstly, their Czech seed beads are the cheapest in town. I'm not even kidding. I purchased six half tubes and one full for around $10. The organization thereof leaves something to be desired, but at those prices, browsing should be a joy. \n\nTheir pressed glass and fire polished selections were of average number and price. \n\nIn the Swavorski department, standard bicones, cubes and rounds are not available as singles- only some of the pendant materials, and even then, some come packed two to a bag. I was a bit vexed by this. What if someone wants one Baroque for a pendant?\n\nThe back sported a nice assortment of findings and stringing materials. Particularly impressive: a display of natural copper items ready for raiding. Sales bins occupied the front- some bags currently up for less than a quarter. \n\nI found the clerk on duty during my visit was more of the hands-off type, but quite personable when I checked out. \n\nThe store itself is a bit hard to find, tucked in a winding strip mall. It's directly across the street from Arizona Art Supply. That street is Scottsdale Road, but if you can see the art store from the side where Double Joy abides, you can't be far.", "type": "review", "business_id": "uqrkLgKMUh9kM4L3L_jwyg"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "MYLBku4sRCoZmi4Z7yESGw", "review_id": "537SAjlaQaV1vkePOb-EPw", "stars": 5, "date": "2011-12-30", "text": "One of the most memorable breweries I've been to, not because of their personal beer choices but because of how they run the place. They have over 30 beers on tap from all over the country. If that's not cool enough, the entire back wall of the place is refrigerated coolers full of bottles and cans of even more craft brews that you can hand pick to drink in house...OR....build your own 6 pack to carry out. Brews from all over from Epic, to Dogfish, to Maui Brewing, to Sierra Nevada and the list goes on...and on....and on. It really is a nice concept!! Oh....and their food is great too. Mostly your normal bar food but pretty tasty.\n\nAs for the service? I was incredibly impressed at how the girls that were serving us really truly seemed to have some serious beer knowledge. They were able to help us pick the right beer for our liking and they were right there when the brews disappeared regardless of the fact the place was packed.\n\nKnow before you go: Don't let the exterior fool you! It's a small portion of a strip mall...look hard or you may miss it", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "XqMkm-DD9VsdcKx2YVGhSA", "review_id": "7Lvwa3c3CJvrFxfhUkEMIA", "stars": 4, "date": "2010-07-11", "text": "Cho Dang - Fo Sho! Looking for Korean food can be tricky. Cho Dang offers my favorite entree cooked just right. Tofu Soup w a fresh egg - yum! Broth could be spicy but definitely worth the burnnnn....urrr!!! Decor of the place - I dig! Dark wood flooring with some picture frames of plants; then the ceiling is painted sky blue to give you that outdoor serene feel. Service was great - my waiter was a young man that couldn't tell me what Hite beer taste like (told him to take a sip and let me know :) ) Shhhh...don't tell anyone. Needless to say my dinner was delectable - definitely a return place - enjoy my friends!", "type": "review", "business_id": "_CG5zJAoNN6gszjhSyUcww"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "9TFwQbcSIHb-nXSHvFMCgg", "review_id": "H0BfUTLr8yqd7YdFbYNRIQ", "stars": 5, "date": "2012-02-28", "text": "Been a patron since this eatery first opened. This is honestly one restaurant that has not been hurt by the economy. The food is that fabulous! My absolute favorite salad is the Turkey Waldorf. My children always get the side Caesar with Potato Cream Cheese Soup. The husband always gets either a Cranberry Scone and Onion Bagel slathered with cream cheese OR a Pretzel and some sort of sandwich. \n\nThe only downside to this eatery is their lack of seating space during the lunch rush hour. Get there by 11am if you actually want to sit inside, otherwise on a windy and cold winter day you might find yourself outside sitting on the patio (as I have done in the past.)\n\nEven with the lack of seating during rush hour lunch....I'm giving this place five stars and making sure I'm there before the rush hour. :-) Happy Eats!", "type": "review", "business_id": "RFMcLH3_58eAwvSfvLhJew"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YZQYRysjzIHUa57ffbJWsA", "review_id": "-JFnqCMGxF3KbiJe4KNsZg", "stars": 4, "date": "2006-12-27", "text": "Julio G's lunch menu offers some very delightful dishes. I recommend the beef flautas special with rice and beans. The wait staff was very nice and efficient. Good group restaurant spot!", "type": "review", "business_id": "uEW1NwL9h5N0zI2Ip9UKrQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "ru8p3RTlk8f9LB_3zLXURQ", "review_id": "0hd9ZhRpts7eP4fFS0jxQQ", "stars": 2, "date": "2011-02-27", "text": "With a name like America's Taco Shop, I had to check the place out. \n\nGot the \"homemade\" ceviche and the carne asada taco. Thought the prices were a bit high for the quality and amount of food that I received.\n\nThe ceviche and tortilla chips that came with it were a bit bland. The carne asada taco was good but not spectacular.\n\nWhat got me though as I sat indoors in their dining room was I started to notice how dusty everything was. There was a grimy layer of dust over all the decorations on the walls and the tops of the condiment bottles were frankly disgusting like they had not been wiped in ages.\n\nSo I decided to check out their bathroom. Sure enough, the ladder they had leaning against the wall had a layer of dust on them . . . . \n\nand I felt a little grossed out . . . let's just say, if the public areas like the dining area and bathroom are not clean and well care for, I don't really want to imagine the condition in the kitchen . . .", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Ry48Bta6spNowOkiMNC_xg", "review_id": "aiDZGZcKSDGfblmMyBhsnw", "stars": 4, "date": "2012-11-19", "text": "Stopped in for lunch with an old friend. We had lots to catch up on, so got a booth inside where it was quieter. The decor is true to Tom's heritage at this location, modernized with lots of historical pics on the wall. The Governor's Room has an attractive gleaming golden state seal over the doorway. \n\nService was excellent. Food was OK. Great bar with Tom's specialties, where I don't water, so no info on that. I should have had the 1929 chili, or a burger to really try the food. I had a Cuban sandwich with house salad instead. The salad greens were fresh, the tiny Tom atoes sweet and crunchy. The sandwich was a Phoenix Arizona Cuban sandwich from Tom's Tavern, not like a Cuban sandwich made by somebody's Cuban mother or Abuelo using all the right Cuban ingredients. Kind of like Mexican food in Yellowknife, Yukon Territory. Good test.\n\nNext time I'm having the burger. There will be a next time.\n\nAmbiance 1\nService 1\nCleanliness 1\nCuban Sandwich 1", "type": "review", "business_id": "2I666dqzs1XB6xigIKa9bA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "s8fJCSltyub39Q1dqzjb6g", "review_id": "zcqL-Zs4Kmbg3Tn5Y4ZekA", "stars": 2, "date": "2009-12-19", "text": "The burger I had there was tasteless and had a weird texture. The fries were decent and their signature Rootbeer was delicious, but I've definitely had better elsewhere.\n\nIn all fairness, I did not try their frozen selection, so I will definitely come back to give them another try.", "type": "review", "business_id": "Y_Y91oeUrIwYa18F8ey5NQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "wIi2J1UGRB2G_3vu5eNK3g", "review_id": "dYCrJzhJs-jELKVGz7TCSQ", "stars": 3, "date": "2010-03-03", "text": "i love mac n' cheese & i love the dark. \nthese 2 facts make me like this place.\n \nthe service was good. the prices were reasonable. they had a decent selection of craft beer & local wine. the dark colors and candles were comforting. (however this atmosphere makes the headlights from the cars parking up against the windows somewhat more obtrusive)\n\na solid 3 stars for me.. i wasn't blown away, but i wasn't disappointed.\n.\n.\n.\np.s. i think maybe i'll miss lisa g's..?!", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b2DKC4kC8-QeSeGZ_MF3XQ", "review_id": "f1FImVsdpvR8rNc9F95tCA", "stars": 2, "date": "2011-01-12", "text": "This place is a must go if you are some beer starved party animal ASU student but as an adult who is one step beyond the let's get blottoed for the sake of getting drunk this place isn't really worth visiting. The beers really aren't that good compared to Four Peaks/Papago/Sun Up/San Tan, or any of the other brew pubs around. Really wasn't that impressed with the food either. The only reason I gave it an extra star than one because the service was good, of course there were only one other group in the place at the time.", "type": "review", "business_id": "ZztUsJyGDwPySepmXRG13g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7o7MF9B9lxcWupE8jiLOaQ", "review_id": "kWPsNiuhlVH14mZtLBGcaw", "stars": 5, "date": "2010-08-23", "text": "I love this place. It is one of my favorite Antique shops in the city! There is a wide selection and variety of booths and items. There is everything here from match boxes, cute purses and hats to retro/vintage furniture, wacky mannequins, old cameras and old toys to reminiscence over. And! They are decently priced and have a nice helpful staff.", "type": "review", "business_id": "xNfGoC9CW33GjSPLcfbwUg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6qL7A04QNfLAj5Tkig34YQ", "review_id": "sOs2dB9rbO7p-MB2EJ3cvg", "stars": 4, "date": "2012-03-14", "text": "I am not as enthusiastic about the Cornish Pasty Company as some, but if you are looking for this type of place to eat, you will probably enjoy the experience.\n\nA Pasty is basically a turnover; at Cornish Pasty Company, it is a very big turnover. One is a meal. Here they precook them until they are almost done, then finish them when you order. This process introduces a drying effect that detracts from the product. They do serve a sauce with each pasty, and as the sauces we tried were quite good, you can use the sauce to counteract the dryness. When all is said and done, the pastys are tasty. But not knock-your-socks-off great.\n\nThe atmosphere at Cornish Pasty Company is cramped and noisy. It seems more like a college hangout than a restaurant, and this is not surprising because it is a college hangout, but one where the quality of the food has attracted a wider clientele. If you like this kind of atmosphere, you will be right at home at one of the few small tables or at the bar. I prefer the bar.\n\nPrices are low (typically about $9 for a pasty), considering the size of the meal.\n\nHints:\n1. It is always crowded. Try to come at an off hour, like 4:30 on a weekday.\n2. Skip the very average salads and the oven chips (dry, tasteless), and probably the other appetisers. Just get a pasty. If you are an abnormally big eater, follow it up with a dessert pasty.\n3. It is a bit hard to find. Turn North on Hardy from University to find the Cornish Pasty Company in a small shopping center hidden by a large gas station.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z7aw8EbiklwKeaIzGj5Otg", "review_id": "swAgg95rDJ6I2SLOGkTZdA", "stars": 2, "date": "2009-12-30", "text": "I've never been to a restaurant where we (a party of 6 with a reservation) sat at a cleared table with no water, no bread, no cutlery, no service for 15 minutes before receiving a menu .... when we finally had someone provide a menu, it then took another 15 minutes to get the wine we ordered. \nStill no bread, still no food. \n\nThe server dumped the wine bottle on the table (unopened), and went to find glasses. 10 minutes later she then threw the bottle opener at our table so we could open the wine ourselves while she went to find glasses. Most (!?!) of the wine glasses arrived within the next 10 minutes, and still no bread or food. \nDo I need to go on? \n\nAnd while the server apologized profusely, she never offered to take anything off the bill or even a dessert on the house for our clearly disgruntled group. \n\nFood was fine -- the house-made burrata is quite remarkable. But not enough of a reason to return. Others we were with have had better experiences, and I would hope for the owner's sake that our dinner was an aberration...", "type": "review", "business_id": "0AZiq_OMKs3I9lTmwd5PSg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "678M9FKyQPa_QDWEnCSxFw", "stars": 4, "date": "2010-01-31", "text": "It was a busy Friday when I went - about the time that everyone gets out of work early. So you'd expect more than ONE cashier there. But nope, no such luck. \n\nThere were about 5 people in front of me and the line took about 10 minutes. But we had decent conversation about how the local library was going to be closing in the near future.\n\nOverall, I generally like Borders over B&N in the coorperate book world, but probably won't be coming back to this one if I feel the need to buy a book. I will if I want to relax, sit back and perhaps browse at some magazines.", "type": "review", "business_id": "N_TlJCR5AkZhmrCDqbm2tQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "d_Ima0-9breBd8T9wAth9g", "stars": 5, "date": "2010-07-24", "text": "Jon, Tess, Charlie, Erin, Kathleen and whole gang are the best!!!", "type": "review", "business_id": "CVp1BFI5gpXqo31C6Lwkjw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "F9NM9hDWNTfPG7eWhEc7pg", "review_id": "kkfd3jYQr_lXEd-lBAJ8Sw", "stars": 5, "date": "2012-11-20", "text": "Our waiter was Vincent. Very polite, helpful, accommodating, and knowledgeable about the menu and the taste of each item. Service was A+! The food was fantastic. No errors, was tasteful, unique, and fresh! I will definitely come here again.", "type": "review", "business_id": "gFJtzwGmDTABRwL2F8GsSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-d0M53vRvvZ_ZXL0nWbH5Q", "review_id": "GChHCIb-YQls3eZ-C2E2sw", "stars": 2, "date": "2011-10-16", "text": "I had been wanting to try Sal's for quite a while but never got around to it. Until today! I got a side salad and the 14\" Sal's Favorite. I must say, not impressed at all. The salad was made of what looked like a bag of pre-shredded lettuce. And not very fresh either. The pizza was just ok, I've had much better. Very sad and disappointed, unfortunately I will not be going back to Sal's.", "type": "review", "business_id": "74qDPs2dR6gSzDp6N1U-Og"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YwISM44nNmOSeXdsL-qZYw", "review_id": "sm2GQCeK-Ez4YCBp8TxPXQ", "stars": 4, "date": "2008-03-11", "text": "Had to write a quick review to this place. \nIt kicks Denny's ASS. \nThe food is always done well, eggs made to order, fries always hot and crispy. \nSandwiches are full of good, fresh ingredients, breakfasts are all delish. Waitresses are a good sweet/salty combo.\nMy friend made a side comment the last time about wanting my pickle, because she had breakfast and I had a sammy. The waitress, without a word, came back to the table with a plate of the crisp briny spears. Nice xtra touch!\n\nAll in all a pleasant,cheap, laid back, 24/7 diner, which is damn hard to come by in this day and age.", "type": "review", "business_id": "4rySWsfL5enT7t4XuVNJuQ"} +{"votes": {"funny": 1, "useful": 5, "cool": 1}, "user_id": "9F3ZmyGKIA6ALNWgEq3Log", "review_id": "Bc8IqLkd83WIf9Pk2IkipA", "stars": 2, "date": "2012-06-12", "text": "I hate giving this place two stars, but the service has always been inconsistent. I've been coming here since 2006, and the food has always been excellent. Service has been spotty though; during my most recent visit our server blew off two of our drink orders and I had to order from the bar myself. Honestly if they would hire some frumpy old veteran servers then I bet everything would improve ten fold. Anyone else ever had this problem?", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 5, "useful": 10, "cool": 9}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "SOizwSwvCt72RVGnnjq6Kw", "stars": 4, "date": "2009-08-09", "text": "While waiting for Ayesha to have dinner at Thai Elephant, I tried not to let the meth-crack-head who pretended to talk on the pay phone deter me from a great meal. She had no shoes on and walked up to the pay phone and started talking. It hadn't been ringing and she didn't dial a number. \nI'm a sucker for Touch of Thai's catfish dish, and they had the same one on the menu. \nIt was good, but the fish was a bit overcooked. I would have liked a bit more \"sauce\" as the dish was a bit dry.\nService was excellent. My iced tea was refilled without asking throughout our meal.\nOf course, spending and evening with Ayesha over spicy food as we both wiped our noses from the heat of curry can't be beat!", "type": "review", "business_id": "NH67MdKaFGNcP-dlu56pyw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mt1Sy0paU9h9f9e8FUTWdw", "review_id": "podNEIPfgVzekzx1fauTPQ", "stars": 3, "date": "2011-05-11", "text": "Nice restaurant, good food, SLOW SLOW SLOW Service.\n\nWent there with a group, and the food was all good but the service wasn't great. I ordered Chicken Katsu before the rest of the group ordered tons of Sushi...the Sushi came out slow, but no one cared. And then I realized we had been there 2.5 hours and I still didn't have my Chicken Katsu - I asked the waiter about it and he had totally forgot. I eventually got my food but everyone else was done eating - he was apologetic and we got a free dessert but it just sucked for me since I don't eat sushi...", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "5-2JHDnSsoSaoRKDHPeTtQ", "review_id": "mPTLQUEAfccRD3Cgetstig", "stars": 4, "date": "2009-12-23", "text": "I don't have much to compare it to, since this is the only Venezulan restaurant I know of in AZ. It's very small, definitely family-run, with what looks to be the adolescent son taking orders and bringing out drinks. The young man who seems to be the owner shares the space with Rosati's. \n\nMy foodie group saw a write-up of this place in the newspaper so we decided to trek out to Mesa. It was pretty darn good, especially for the price!\n\nThey were out of Guayanes (the newspaper had recommended this arepa) so we ordered three other arepas. In case you don't know, an arepa is a corn fritter type sandwich. We had the queso de ano, which appeared to have a salty cheese and potato in it. It was very yum. We had reina pepiada arepa, which was like a mayonaise-y chicken salad with avocado- we didn't care that much for it. But the Pabellon arepa with fried plantain, shredded beef, and black beans was a hit.\n\nWe also had the pabellon plate which was quite yummy with the best fried plantains I've ever had. Oddly, the rice was a bit hard and dry. The cachapas jamon and queso de mano was a favorite with my fellow foodies- kind of like a pancake sandwich with ham and cheese. We finished with the quesillo (tastes exactly like flan to me) which was very good.\n\nI'd say it's a bit of a drive for some of us, but it's definitely worth checking out. Not for those looking for heart-healthy eats!", "type": "review", "business_id": "It8Q9-l1EEtTr9NPpTgGPA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vt0y5E2LUFeG0_PZ1b3d_Q", "review_id": "AyW23Q1JezoqckWQtLfePQ", "stars": 4, "date": "2012-03-28", "text": "Cool hotel bar in a cool hotel. Get a booth and enjoy the crowd. Be sure to get a cocktail or four at the hotel lobby bar before dinner during happy hour. Cool place and glad we checked this place out.", "type": "review", "business_id": "tdeHd2AVYlEnz9F1UGb84Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ix2q3b4FcbeV7L52Lxj33g", "review_id": "O7mqsMPn90yNwioxGvWDVw", "stars": 4, "date": "2011-07-29", "text": "4.5 Stars\nThe seafood tower was amazing and my ribeye was very good. Very expensive. Much better experience than the ocean club in Newport Beach.", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4hrVQL0nc9JHfzW1OZV48w", "review_id": "lZVKOyoXbFlyyLj8SP1-Kw", "stars": 4, "date": "2012-11-25", "text": "Open late, that is a huge plus! Been here for lunch and for dinner, also in different times of the year. Service is always stellar. Food is always good. Sometimes there is something weird with the check such as charging for things that were supposed to be included or full price for happy hour items or something like that. Not sure why that keeps happening, there seems to be some pressure on the staff. \nOtherwise, the place is trendy and seems small and loud in the busy times, spacious and accommodating when just the right amount of people. \nBest time is dinner, in a booth, not on a weekend and when you are really hungry as the food portions are generous.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6Locm87mkNkfVMzgwbRDaw", "review_id": "OLQ8Va7P37hKQaUh8jXGwg", "stars": 4, "date": "2010-07-27", "text": "I just stayed here a few nights back, and I thought it was pretty great. Comfy bed, nice sheets, free Internet, good temperature control, Aveda products in bath. The hotel itself is a bit of a hodge-podge decoratively; kind of like somebody got a subscription to Wallpaper and decided they could be a decorator. That said, altogether it is sort of winning and it feels like a good value. Plus, the restaurant downstairs was perfecto when we visited.", "type": "review", "business_id": "8ZwO9VuLDWJOXmtAdc7LXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iKbTz_0m4rEOB4yTL12VSQ", "review_id": "EXiTtoAhcLtX7h4s5Ddodg", "stars": 4, "date": "2012-04-07", "text": "I'ld give 6 stars if possible for each and every appetizer we have had. The tomato soup, caesar salad, beignets, and crab dip are all way more delicious than they have any right to be. However, the stand out is clearly the shrimp canap\u00e9 - one of the best appetizers I've ever had. Period. \n\nThe other side of the coin is the at-best mediocre entrees. The first night we had a gift certificate and ordered an absurd amount of food and ended up leaving both the burger and meatloaf largely untouched. On subsequent visits the appetizers were consistently amazing and the variety of entrees just didn't live up to the apps. The blackened tacos were bland and tasteless. The meatloaf was swimming in liquid. The burger bun was overly toothsome and the burger bland. \n\nLong story short - order appetizers (which there are more than enough of) and you will be happy. Also happy hour is great but the wine is overpriced otherwise. \n\nTake away = worth it for shrimp canap\u00e9 if nothing else!", "type": "review", "business_id": "XeoeF0twXRV4mUZJgIjc8A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "IMsUuPGFQoNMeZzbhqtiCw", "review_id": "NcoKTo4t4esEMvsbanIebA", "stars": 4, "date": "2007-11-25", "text": "Standing like a paragon of virtue in a sea of decadence, U.S. Egg's Scottsdale's location is place of redemption, both for your soul and your appetite. Open only for breakfast and lunch, the restaurant attracts as diverse a clientele as the 'dale itself. This is not somewhere that relies on being a tourist trap: some locals are known to eat here daily.\n\nIts location is slightly outside the Old Town Pale, but still within walking distance unless it's the height of summer. Secondly, it has its own parking lot, making it as accessible as Denny's or a Marie Callendars. Nevertheless the lot is often full on weekend mornings, and you will definitely see people waiting. unless you arrive very early or late. There is both an outdoor patio seating area and a large indoor dining room.\n\nHaving gone numerous times alone, I am always impressed how quickly I am seated. No bias against tables for one here. The servers are all personable and graceful...yet not self-aggrandizing. This is not a Michelin four-star restaurant however, and you should not expect being waited on hand and foot. Given the volume of service, it's also commendable how few mistakes are made and how prompt everything is.\n\nThe food is also excellent. Although you can order both lunch or breakfast, I tend to crave the latter more. There's plenty of variety on the menu and they have both innovative dishes and old staples. This helps to explain why the uber-fab Scottsdale club kids patronize this place just as much as the Cadillac set. Prices are very reasonable for Scottsdale, though perhaps too much for a dirt-poor college student or person living only on Social Security.\n\nThe building also capitalizes on Arizona's sunny weather with high ceilings and plenty of windows...causing plenty of light to splash in and helping to evoke that sense of morning and freshness. There's plenty of ambient noise as a result...but it's almost reassuring. Not to mention that the hearing-aid crowd and club crawlers may be too deaf to notice.\n\nU.S. Egg is not flawless, however. From a cost point of view, the restaurant has to contend with the fact that breakfast is usually the cheapest meal of the day. Without a dinner menu though to recoup cost, diners have to grin and bear any perceived cost imbalance from say Denny's. Neverthless it's still worth it, in my opinion. The other shortcoming stems from the food. Different dishes often rely on the same sides. If you get sick of their potatoes for example, you can be really out of luck despite ordering something different every time. Moreover their signature dishes again may not impress truly demandng foodies.\n\nWhile it may not cure your hangover (or incontinence), U.S. Egg remains firmly on the map for locals. Managing to please all of Scottsdale is a tall order, and the owners, managers, and staff all should stand tall and be proud.", "type": "review", "business_id": "zruUQvFySeXyEd7_rQixBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "_PrNbtn0GETIAODetNHytw", "review_id": "yNkbGXTg9q_Bl293-hpgww", "stars": 5, "date": "2009-07-25", "text": "Holy WOW Batman!\n\nThis place is ONE-OF-A-KIND...it's Awesometown & it's YUMMY!\n\nOnce you step inside you'll instantly get the picture. It's WOW factor is off the meter.\n\nSmeeks sells a never ending selection of treats of all kinds...it's THE PLACE for unique, off the wall, goofy gifts. AND CANDY. \n\nI give a big round of applause to LOCAL, small business owners who stick their necks out in ANY economic climate but in today's woe-filled world of running a business, they become instant SUPER HEROES!\n\nIf a picture is worth a thousand words, you can take a peek at 25,000 more reasons to visit Smeeks here:\nhttp://monkeywonderland.com/blog/", "type": "review", "business_id": "ncuj9qx4WjprfJfYJGdmtQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "tmTxuDadTVc-KFyhvPuseQ", "review_id": "J08O_AWboVS3S-gV8p2Wvg", "stars": 1, "date": "2011-04-20", "text": "Wish I could review this place on service but I wasn't able to get one. Walked in at 1 PM on a Sunday afternoon for a mani pedi, was told by the front nail tech to have a seat. I get it, I walked in on a Sunday afternoon so they are going to be busy and I am fine to wait. My wait turned into 30 minutes and no one said a word to me. Then the front nail guy tells me it is going to be another 20 minutes before someone would be able to get to me. You know your salon, you know your techs and how long it will take them to do a service as well as how many people are in front of me so it would have been nice to have gotten a expected wait time before I wasted an hour my time. I ended up leaving and going to another salon who saw me right away \n\nThe place in general was dirty, nail polish spilled down the wall and dust everywhere. I did not get to see how clean their pedi baths and chairs were but the front waiting and front desk area was filthy.", "type": "review", "business_id": "aApHpyUbnqBJmL_3X6UFOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ac7dJXB_JN_J40ZOunnwAA", "review_id": "jV8urg-jD-Bcmbw7sRCP5g", "stars": 2, "date": "2011-05-03", "text": "This place looks sleek from the causeway, but the food is marginal. We had the veggie taco plate and the veggie burrito. Both lacked flavor, even the \"spicy\" salsa was bland. Server was friend and attentive, that is the only reason I am giving it two stars. I would just go here for a drink next time and skip the food entirely.", "type": "review", "business_id": "k_aOcqWOHWprjs7ykdzlAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k1iTMp7uW1CSQFCq4jl56g", "review_id": "qS2a6XOdlGgF5h0l7k1B_g", "stars": 1, "date": "2012-01-30", "text": "OH MAHHH GOSH, what retards they have working here. Came in to pay for my phone bill and literally stood in line for 40 effing minutes. They had TWO ppl out on the sales floor that afternoon and the store was freaking packed. Really? What genius decided to schedule TWO freaking meat-heads who knew diddly squat about anything on a busy Saturday afternoon??? And no, I don't care to upgrade my phone. I JUST WANT TO PAY FOR MY BILL AND GTFO OF THERE!!!! Do you really think that after such poor service I am going to want to up your commission rate by purchasing/upgrading my phone with you? NO.", "type": "review", "business_id": "ZdyxpksKc1Go0WNuFv9Pjg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ja8FvcWiWHEXME2vmTPTkA", "review_id": "mskE3wn8J8tLHHOiOPRDKw", "stars": 5, "date": "2012-04-12", "text": "Definitely an awesome buffet. Not your typical buffet stereotype. Love the sushi. Great variety of things to have. If memory serves, it was 19.99 when I was there. I think a tad high, but someone mentioned 25 bucks, so maybe it's come down :-? Sake is priced well, and the beers.", "type": "review", "business_id": "1sNa5oW9ZYX8MbMFkx9LzQ"} +{"votes": {"funny": 6, "useful": 14, "cool": 13}, "user_id": "s8fJCSltyub39Q1dqzjb6g", "review_id": "j_B9YUo9vUXdclPbadiseg", "stars": 4, "date": "2009-10-07", "text": "My company is into giving back to the community, so they invited my department to volunteer at St. Mary's during work-hours this week. It was a great experience and I would do it again! We filled boxes that get passed out to families in need. It makes me feel so good to volunteer and help others. And I feel so lucky to work for a company that supports and encourages this kind of service! \n\nSt. Mary's was the first Food Bank in the world, they have expanded into a national effort. I also learned that 1 in 5 children wake-up and go to sleep hungry, 1 in 7 adults (18-64) have to decide between eating or buying things like gas/rent/bills/etc, and 1 in 12 seniors (64+) are struggling with bills/medical needs/food.\n\nHelp someone else and make yourself feel great - volunteer!!", "type": "review", "business_id": "VAlzQ-qJsSoTcJTc_1Pd1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HvaVgP0S0dFaCbBDIQIkag", "review_id": "0EQA4piRJdL0QtrA2oJeqw", "stars": 4, "date": "2010-05-16", "text": "Tried Bombay Spice last night. After reading the website and reviews, it seemed like it would fit perfectly our combined need to finally find good Indian fare in Phoenix AND not blow our calorie budget (husband and I are trying--and succeeding!-- in losing weight). Success on both counts!\n\nIt was Saturday at about 6:30 and we were seated immediately. The place was almost full. We sat on the patio, which was lovely, but might get too hot during the summer (I didn't see any misters--You're Welcome, Mother Earth!). \n\n Service was attentive, and our waitress gave us several recommendations. \n\nWe ordered:\nSomosas (baked, I think, not fried, which made them a little messier to eat but still very very tasty).\nNaan (chewy, moist, naan-y...yum)\nGrilled Shrimp skewers (a little on the skimpy side, but very tasty, and served with grilled peppers and onions and a delightful mint sauce).\n\nWe each ordered individual entrees with basmati. They encourage you to order the two-entree choice, but we were trying to avoid over-ordering, and it turned out to be exactly the right amount of food. \n\nI ordered the Cauliflower and potatoes, which was moist, savory, a little spicy, and very tasty, albeit lacking a little in the sauce department (I would have liked a little something to spoon over my rice).\n\nHusband ordered the Chicken Tikka Masala, which was exceptional. They claim that they don't use cream in their food, so I don't know how they made the masala sauce so creamy and good, but they did and I'm not going to question it any more! I would have licked the bowl if we had been at home. \n\nNext time I think we'll get some apps again but try the Bombay Plate to share, which is 5 entree choices and rice. That way we can try a whole bunch of things. \n\n$35 before tip for naan, two appetizers, and two single-choice entrees. Not bad for a Saturday out. We'll definitely be back, even though it was kind of a drive for us.", "type": "review", "business_id": "3GAPcBG8SowgrpS6UHlDeQ"} +{"votes": {"funny": 12, "useful": 13, "cool": 8}, "user_id": "ZZ43etAB2n_T53YBYtf8Dw", "review_id": "c9KKGMNN9HSPP1BzLZhFTA", "stars": 4, "date": "2008-07-07", "text": "I always have fun here.\n\nI went here on new years this year and had a good time.\n\nI did see the most pathetic lesbian here. She wore her make up and dressed just ike the Shane Character in the LWord.\n\nAl I could think was, WOW what a loser.\nand I wish I was that skinny\n\nDo you have no personality that you wear a costume everyday.!!\n\nSo I was with my girlfriend in line and we were holding each other. She walked away for five seconds and asked my girlfriend for her number.\nMy girlfriend totally dissed her.\nI walked up and you could see the fear in her eye. She just kept saying Sorry, Sorry, Sorry.\n\nWell anyway aside from that I like this place.\n\nBut dont go in the bathroom unless you have to. There are always tranny's doing coke or k in the womens bathroom.\n\nMake sure and use a tissue to lock and unlock the stall", "type": "review", "business_id": "jQt1xMibtitBczJN6LXT1Q"} +{"votes": {"funny": 3, "useful": 3, "cool": 6}, "user_id": "lC0KGXmIhyjzghBUlVnkhQ", "review_id": "4oplrng2W2PyyvfS72KiOw", "stars": 5, "date": "2011-08-09", "text": "MMMMM. Let me break it down for you...when you can hear staff in the kitchen saying \"oh wow, that looks amazing\" as plates are coming up in the window, you're in for a treat. I mean the fact that they see these dishes time and time again and are still excited by them....! Then flash forward to the next day and if you're heating up second lunch (I like to eat) in the office micro and employees comment on the delicious smells, yeah you're doing a-ok! I was solo this time because Gabi M was home with baby Mess and I didn't think to call Jarred (sorry bud!). Eating alone certainly wasn't as much fun but it was delicious. Eggplant is a must. You just HAVE TO get it, done. In addition I also had a really yummy chicken dish with wide noodles, veggies, basil, and a spicy/sweet sauce. SO tasty. The portions are enormous, so don't balk at the prices. Grab two entrees, share with the group, take home leftovers...that simple ;).\n\nKnow Before You Go: I'm only in Scottsdale one every other month and Tottie still remembers me when I come in, and that rocks! Big fan.", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 0, "useful": 7, "cool": 0}, "user_id": "v09OVnv2yU8z2-uok-07EQ", "review_id": "stuJwnGu1UXYBjV7f8fFZQ", "stars": 4, "date": "2011-02-08", "text": "Don't let the name deceive you. Beaver Choice is an EXCELLENT dining experience. \n\nMy girlfriend and I decided on a whim to give it a shot (after making the obligatory puns and double entendre's on the name). After staring at the menu for two minutes, trying desperately to decipher what we were to have, we gave up and asked the guy behind the counter's advice. His name was Chris and he was extremely helpful. He sold us with free samples, rather than descriptions of the plate. \n\nI ordered the gravlax; my girlfriend ordered the laxpudding. We entrusted the quality of our meal to the word of Chris and the small sample we tasted, because, in my mind, the ingredients had no business being together in one dish. Both dishes were based on lox, aka smoked salmon. \n\nWe were both pleasantly surprised at the dish that greeted each of us a few minutes later. The food was EXCELLENT! And while not the cheapest dinner in the world, you get an enormous bang for your buck. Your plate is literally stacked with food. Kudos if you finish it all. \n\nBottomline: Beaver Choice has a weird-ass name, but it serves some of the best food in Tempe. We will be back for sure, and I encourage each of you to give it a shot. I guarantee you won't come away disappointed!", "type": "review", "business_id": "5SS69rC8XWvdlD1OHifEEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fgNjgqVP5dNgQFfQLyjXyQ", "review_id": "sZetg2MgIYxLu-Z44FIlYA", "stars": 2, "date": "2011-12-06", "text": "I love love love consignment stores...and walking in this store, the smell was great... however...\n\nI have to say i am disappointed with My Sister's Closet. I had heard such great things, so I was really excited to go. They did have some amazing designer purses, including a $3400 jimmy chu purse that was huge and gorgeous for $1899. \n\nThe designer section clothing was hung on nice wooden hangers with their logo (Nice touch). \n\nHowever....... The items I saw around the store, and my friend with me agreed, seemed like more than 40% really were more appropriate for a thrift store, and a lot of the items were really dirty (and still had high prices). You could see food stains on a dooney bag.. a coach wristlet, black, had white food smeared all over it... still highly priced for as dirty as it is. The thing is... even if it is a brand.. sometimes your store reputation is worth more than the 10 bucks you'll make by selling something dirty. Just my .02. \n\nI saw sensors put though jeans pockets, wallets (in the leather!) and other questionable placements. When I asked about it.. the sales person just said, well maybe there is someone new who does not put it in the right place. That damages items people are buying, and they may not realize the big holes placed by those sensors. \n\nI loved there \"on the web\" tags. I've never seen that before, but they are really pretty and catch your eye if you want to take a closer look. \n\nI prefer consignment stores to identify the sizes on the hanger by color coding or some such to make it easier to find my sizes. I get bored really fast trying to find my size.. As a consumer, I would have spent more time looking had I been able to really scan the racks easier for size.\n\nThe shoes are nicely organized.... and clearly labeled. They were not over crowded so it was easy to see the shoes. \n\nThere are some positives.. I purchased a le sportsac tiny bag for 9.99, it was new so i do feel it was a good deal. but really be careful what you buy.. The prices for the purses seemed high for used resale and their obvious usage stains.", "type": "review", "business_id": "OkRzw22eDg45do8i-1jHow"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qRo9gHN5OiV1-peDuhCh-g", "review_id": "8diZqCG-JIUBjTcPy-Ockg", "stars": 4, "date": "2011-04-08", "text": "Yummy in my tummy goes the won-ton soup. It is my go to for when anyone is feeling sick and totally hits the spot with all its veggies. Best in the valley, IMHO. The fried rice is also really yummy here. They don't skimp on the veggies which I love. \n\nLast visit to eat in was a couple weeks ago and the waitress/owner(?) was super nice to us and our French friends visiting from across the pond. I will definitely make an effort to eat in more often instead of ordering out.", "type": "review", "business_id": "XbVqzUHS3c9FhG4lI13c3Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "kq5Pdsy8Znyh9KEkxWT_QA", "review_id": "DnLwKwS88h6zqUdqHflczQ", "stars": 4, "date": "2010-03-04", "text": "Carly's Bistro is one of my new favorites - especially now that I'm moving downtown! Very vegetarian friendly, and lots of yummy dishes with tons of flavor! Their hummus is TO DIE FOR! So much flavor!!! My favorite sandwich is the Europa with roasted red peppers, artichoke hearts, tomatoes and spinach and smoked mozarella on cibatta. Delish!! \n\nThey also have a fantastic beer menu! Quite extensive with a type to make anyone happy! \n\nThey're a great location for parties, and offered happy hour prices on all drinks during the event.\n\nI'm going there for dinner tonight and can't wait!!", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "J2AWK69TkltyPCZPbVyhfQ", "stars": 4, "date": "2012-09-17", "text": "I had no idea they were open for lunch! Perfect since the boy and I were down town during lunch the other day. \n\nWe stopped in around 2:30 inthe afternoon. No Wait! I couldn't even believe it. I hadn't eaten there since I was a little girl, but it was just as good as I remember.\n\nWe got a couple beers and split the Margarita Pizza. It was sooo yummy! Perfectly crispy on the edges and lots of flavor. The service was a tini bit slow, but no big deal, we loved it. \n\nIf you want great pizza and dont want to wait the normal 3 hours during dinner, you should hit up Pizzaria Bianco while the sun is still up, less wait time if at all. \n\nEnjoy!!", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RL3exTbJkDfOmlB5ByaPdA", "review_id": "Ejk8EkaRYjIHxKPYCm60qQ", "stars": 4, "date": "2010-08-15", "text": "There are two places in Phoenix that have the BEST barbecue sauce. Honey Bears is the \"Not sweet\" one, LoveJoys is the \"Sweet\" one. Love them both.", "type": "review", "business_id": "aVBebzA7D9DpQ-JbiCxQNg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "oGSzG4TlTFR38JtHUvsGyA", "review_id": "xE4U7nr6T1dBz5IXZBWRtQ", "stars": 5, "date": "2010-11-17", "text": "Been a loyal customer since they opened ten years ago. Quality cut and great people. These are professional barbers who have been doing this for years. No froo froo! Russian not spoken there!", "type": "review", "business_id": "P1mtrjPrvZpxRDVTQQ_Zxw"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "6G8vLJUi1Ees2qC3RGA3Nw", "review_id": "3VByh5FvxtHnG4vPrD2CLQ", "stars": 5, "date": "2008-05-29", "text": "Had lunch here with my wife today. It's the second time I've been and her first. After my first visit it rocketed into my top five favourite restaurants of all time. They have some top notch food, and the best thing is that it's such a deliciously welcome change from the bottom-feeder's Mexican crap that you see all over Phoenix. The menu is varied and I think I eventually will want to try everything. Appetizers include fried alligator and frog's legs. The main I had today was their Mardi Gras Pasta, which is linguini with tomato, thin-sliced garlic, andouille sausage, crawfish meat, onion and delicious shrimp topped with a really nice creamy sauce. Absolutely delicious. The wife had mahi-mahi with an even NICER sauce, and dirty rice on the side. Although a tiny bit on the pricy side it's definitely worth coming back to. Large open seating (outdoor seating also available), dimly lit, old-style jazz, a large full-service bar and a very quaint outside waiting area with water feature, giant fans etc. The service was also great and both times I've been, the waiters have been very helpful (the first guy told me that if I got the large serving of alligator, to try it 'half-blackened' - a great tip which allowed me to taste both 'styles' of the appetizer). They also have things I've not heard of before like etoufee and opelousas. If my dad didn't live over seven thousand miles away I'd take him here in an instant - he'd absolutely love the place. You will too.\n\nOh yeah, they have creme brulee (with fresh fruit) and sweet potato pecan pie, amongst other things, for dessert. We had the latter - yum.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TipKplskSSMKdy5uQmYGVw", "review_id": "g7VR45bxzGwnBf29fpdH_g", "stars": 5, "date": "2012-02-20", "text": "Owned by a serious, James Beard nominee, this is high taste, funky fun for killer Mexican food. We sat at the bar, and joked with the cool bartenders for a while; all the time trying a myriad of different tacos. Every single one was great! This is the real deal, with a creative edge.", "type": "review", "business_id": "bOB11LVavtN9PWTNwR52Tw"} +{"votes": {"funny": 5, "useful": 6, "cool": 4}, "user_id": "k2u1F6spBGhgk2JtAe97QA", "review_id": "Jh7DzXUdTCzADOV5MkzfnA", "stars": 4, "date": "2012-12-04", "text": "My mom and my son and I went to old town on a Thursday to check out some galleries and listen to some of the buskers! So after our perusing we stopped to get ice cream. \n\nReal ice cream! Petersen's is a really cool place and it's brand new! Just opened 11/23 I think. Well they have lots of great flavors like Georgia Peach, NY Black Cherry, Cappuccino, Peppermint with real peppermint, lots of sorbet, lots of chocolate stuff that I didn't want to try, and old favs like cookie dough, butter pecan etc. \n\nThey also sell pints and also gallons I think! \n\nThe staff is super cool and well educated about the history of the shop. I think the girl said they originated in Chicago and that the tiles in the ceiling are from the original location! I just thought that was so cool! She also said that they could sub the milk in your lattes and coffe with ice cream to make pepperment lattes and more wild flavors! I thought that was pretty rad. \n\nAnyway, if you are in old town I highly recomend you check this place out!", "type": "review", "business_id": "8XmJg-Uy9FtOqlDOaSJsZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "l53FUDHRHLg7BQ89KgAtxQ", "review_id": "IbNlNnTM22bTGHYsRIQ0Aw", "stars": 4, "date": "2007-04-05", "text": "This isn't a place that you go a whole lot - but BOY are they helpful when you need them!\n\nI brought in my cordless phone that has some special battery internally that was slowly dying to the point that I could only talk on the phone for about 10 minutes per charge. Not so fun. I brought the phone here and the guy was super helpful to find the right battery that would work. While I was there I saw folks getting batteries for SO many amazing and unique things. \n\nSo if you're looking for something a little more complex than a Duracell AA, you should give them a call. And even if that's all you think you want - if you're in the area you might want to go by because based on what kind of product you're using it for, I heard them suggest different brands/types of AA battery. Not something I normally want to think about - but handy to know.", "type": "review", "business_id": "_TsQL0GYnStvozi_xOtV2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GJAFlck0bmtYgwZ1pEt61g", "review_id": "ODKUFux50Nv78i_cROfhRQ", "stars": 4, "date": "2009-04-24", "text": "Amazing food and I prefer the atmosphere at this location.", "type": "review", "business_id": "vARjqeIkSNsazHltujiq4Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "g6e53q-wNxtbz5KI9B3pnw", "review_id": "3eiYDcA_DLY3EsEllcImoA", "stars": 1, "date": "2009-05-09", "text": "I hate for my first official review to be a one star review but Macayo's really disappointed me last night. When I first pulled into the parking lot last night I was surprised to see how many empty parking spaces there were. I immediately got excited because normally any restaurant on Bell road any night of the week has a wait. However, when I walked inside I saw a slew of people waiting to be seated. I walked up to the hostess stand and put my name on the list and the hostess did not give me a time quote and when I asked how long it would be she quoted me, \"not too long.\" We waited about 15 minutes before being shown to our table which is where the trouble really began. \n\nOnce we were at our table we were quickly greeted by our server (yay) however, she told us she had another table's drink order to get and then she would be back for ours (boo). So we waited for her to take the other two tables drink orders before coming back to take ours. \n\nAfter about 10 minutes we got our fountain drinks and then 5 minutes later she came back to take our food order. Then it took about 50 minutes for our food to come out. Seriously, 50 minutes.... that's about how long I planned to spend at Macayo's not how long I planned on waiting for my appetizer of taquitos to take to come out. And to top it off we were missing a side of rice and a side of baja sauce. We decided not to mention it as we did not want to wait another hour for the two items to come out. So, after eating and waiting for our drinks to be refilled 3 times we finally got the check to which the server apologized for our wait. Apparently, she couldn't have apologized at all during our 50 minute minute wait she needed to wait until tip time. \n\nI don't recommend going to Macayos. You might have better luck at any of the other 10 Mexican restaurants on Bell Road.", "type": "review", "business_id": "h26RO7jLyJ6YPHegwpQUPQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_h2h6TX5xhhWFIPMnpMd3g", "review_id": "BRKLL3DwD6HE7d4TZM-dCg", "stars": 4, "date": "2012-07-02", "text": "Awesome job rejuvenating this bar from the dark dive bar it was. They have a great selection of brews from all over AZ, the US, and the globe as well as a very decent wine list. Thus far I've tried the pork tacos and the grilled cheese, both of which were delicious. Service was a little on the slow side as our server was clearly over-loaded.", "type": "review", "business_id": "wNsmt1hF1uv3YvbwXZMAoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mqELWLgzXtcQDCxY60Xkyg", "review_id": "WtmKdxFLjOueWlI6uN10EQ", "stars": 4, "date": "2010-08-29", "text": "I love F&E. Been shopping at the 12th street location since it opened there doors. This store works best for me since I live a very busy lifestyle. The pre-packaged foods, fruits and veggies make life easier for me. For a small store they have a great variety of things to choose from. This is not a one stop shop to find everything, however they seem to always have the items that work best for me. They don't have as many Safeway or Fry's grocery deals, but they have discounted items regulary to choose from. There prices are slightly higher then Trader Joes for the amount of food.\n\nThe store is always neat and clean. There is tons of help incase you have guestions. You can bag your own or there is someone there to help you.", "type": "review", "business_id": "6fR4ncWEfdMLk9AacDsRzQ"} +{"votes": {"funny": 2, "useful": 6, "cool": 1}, "user_id": "BHLMwsKIFaZQYSjQ5j0KOA", "review_id": "zCZR_W3ufhOr6sED_mkjpA", "stars": 1, "date": "2012-12-17", "text": "If I could give zero stars, I would. Just about the worst experience for my friend and I. We came in for a quick and easy dinner. After being ignored at the door way repeatedly, we sat ourselves. First, we had a girl server who said shed be back with menus, but right in front of us at the bar we see her flirting instead of coming back. Our server switched to another guy who was just as bad at serving. I have no idea how this place ever received more than one star based on the staff alone. They're lazy, slow, and completely ruin the entire experience of dining there. The happy hour prices are great, but there are other RA's so do yourself a favor and go to a different location.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "v-QA7zDJ6Y07LoW5M9BjRw", "review_id": "EkStkYu5X036HWWEdrrgrw", "stars": 4, "date": "2010-05-20", "text": "Step back in time! Every once in awhile you start to look for something different for lunch and then pops up a place like MacAlpines. Besides the great 50's atmosphere and good food, this place will have you smiling and reminicing the moment you step into the door!\n\nI am not downtown that often but rest assured, I will be back to this place.", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZkMwOom9fRaZvJxgjZOVXA", "review_id": "jcF1k1BmTR0HRZRYk9qBNA", "stars": 3, "date": "2011-12-06", "text": "I visited one Sunday afternoon just to check it out in reply to an ad I saw to visit for free for (5) days. Typically, when you respond to ads like that from a gym, the staff requests your information such as name, address, & phone so they can sell you on a membership later. That was not the case with me. It was very informal. I advised I was not a member and wanted to give their place a shot. The guy in the front desk said come right on in; no personal information requested and no tour. I'm glad there was no sales pressure. I thought the no tour part was kind of odd, but after doing my walk through, I understand why. The place is not very big. They have weights and cardio machines and the treadmills each had a personal television on the machine. The whole facility appeared clean and there were free towels for the taking for your workout. The lockers in the men's locker room were really nice. They were made brown wood. You can view a sample of the interior of the facility on their website. They looked really classy, but they were not free. There were cabinets offered outside of the locker rooms that you can keep your personals in with a latch that allows you to insert your personal lock on. There was also a small room for classes.\n\nI wasn't very impressed with this gym mainly because it was very small. I came during a Sunday afternoon when most gyms don't see much traffic so I don't know what it's like during normal high traffic periods such as early mornings and after 5pm on weekdays. I would imagine that due to the small size of this gym that they cater more to the very local crowd. I wouldn't give this location a poor rating because there wasn't really anything that stood out that was negative other than the limited space and equipment. You might think of this location as the alternative to the larger chain gyms like 24 Hour Fitness, LA Fitness, or Lifetime Fitness. You can always take a look for yourself; apparently, they don't provide too much sales pressure for visitors. Anyway, that's my say on Mountainside Fitness at Bell Rd in North Scottsale next to the Ice Den skating rink.", "type": "review", "business_id": "jXmrfhAx6NIPmjuMWDj4dw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "AirVzN1BVQBmq5zY0YMNYQ", "review_id": "BxhQDNhovg61t-cepw91kw", "stars": 4, "date": "2010-04-25", "text": "This was our last stop on the Urban Wine Walk yesterday, and it was a great place to end the day. Because this was our last stop, we were too late to get the wine special, however we decided to stay and grab a table on the gorgeous patio and get a (full) glass of wine. We also ordered some sweet potato fries to munch on.\n\nThe patio was awesome and I love how the \"inside\" opened up to become an extension of the patio, or vice versa. We were lucky enough to be experiencing one of those perfect Arizona days and I felt like I was sitting in a good friend's cute, cozy backyard . . . with table service. Speaking of the service, no complaints from me!\n\nThe original plan was to get dinner, but the wine, fries, and good conversation were enough to fill us up and take us to the end of the night. I can't wait to go back (soon, to enjoy the patio) and try all of the delicious food I was reading about on the menu and now in everyones reviews!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "6ZaL_4E6wA1y6ncCa-8C9A", "stars": 4, "date": "2010-02-17", "text": "My birthday cake came from Tammie Coe and it was AMAZING. \n\nIt was beautiful decorated with amazing frosting. But it was the inside that won me over. Gooey, decadent chocolate, oh my! It was so rich, I ate half a slice... but it was oh so worth it!", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 6, "useful": 5, "cool": 6}, "user_id": "kffxYQVQsEpF1DVlQlcGCg", "review_id": "4dgAgSHDa9iH85_uCMBVMw", "stars": 4, "date": "2012-09-25", "text": "This is the very first time I have ever been in here.This location anyway, the first one was in downtown Seattle. \n Yes, I came with my girlfriend. Both times,but it is a cool place for men as well.\nSamples of colonge, creams ,lotions and anything else you have ever wanted to try. \nThey will even give you samples of things to take home. They will make you a sample of anything you would like to try.\nIt can be challange to get inside the Scottsdale Mall at times.\nBut, on this day it was not too bad,(during the week) and early in the day.\nIt is a cool place,with lots to see and try. Loads of people wanting to help you as well.", "type": "review", "business_id": "pdxyZdnwltQXcu-kD5rpXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "mEMZxvHpemSxn1gl7Lj1Zw", "review_id": "6-JMWkiYMLI84WXzl_xvEQ", "stars": 4, "date": "2008-03-28", "text": "Roka Akor Scottsdale is an extension of the celebrated Roka in London.\nI attended the opening night and a follow up for lunch the following day. Overall, I was impressed with the offerings of fresh sushi, and robata grilled tidbits. The dish that really won me over was crab hot pot and the creamy rice was absolutely zoftik.\nI drank many fresh sochu infused cocktails, and crushed three bottles of sake with skilled Kikisake-shi, Sayaka Watanabe. This Japanese sake sommelier is London-based and the zuma-roka group sake trainer. They do have a fantastic sake selection. Easily the best in Scottsdale. She loved my sake brand I created with Midorikawa called Green River, and my low alcohol brand sake, Koide, as well.\nThey also have a great Italian Sommelier named Alessandro Marchesan, who is also based out of London. Too bad they are only loaner personnel from HQ in London.\nThe room is clean and beautiful with post modern Asian inspired lines. The staff is eager and young, but quite unskilled in refined service. I am sure that will be a long cycle for the Roka management to fix. I have a dear friend who dined there on her birthday. She told me the service was \"shockingly bad.\" She then reiterated that is was, \"so bad that it was entertainingly bad!\" The food great and hopefully the service will match soon. Kanpai, Roka..kudos on your sake program.", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9qbNt1lvi7ZvXkHOgFguMA", "review_id": "a8RmP9xeCGIlfFFI2uGiSA", "stars": 4, "date": "2011-04-30", "text": "Been dining here about a year and still trying diff things from the menu and all have been good. I don't think the heat is unedible even the hottest plates are just \"good\" hot.", "type": "review", "business_id": "YxLiLBNTm4cOg7OlKKLmVw"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "m45-62YW1-eFJrsydFyqhQ", "stars": 5, "date": "2008-12-10", "text": "Superb gelato - some of the best I've ever had! The guy behind the counter is the owner, and he takes pride in his gelato.\n\nThey only use real sugar, not high fructose corn syrup, and nothing contains hydrogenated oil.\n\nI tasted a few flavors and settled on the coconut... it was sublime. \n\nDefinitely some of the best Gelato I have ever had. When I need a mid day sugar rush... I'll be back!", "type": "review", "business_id": "dP3bRr_N7Z8SkHNkZBXonw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fLjjtm4beQfqPxLfeuqboA", "review_id": "vTq6GalikN1nPE5kjGgAOw", "stars": 3, "date": "2011-04-10", "text": "We've been in the market looking for a church for the family to start attending. Chandler Christian seemed to be a nice offering since they are located fairly close to the house and have a decent size to offer something for each group (parents & children). I've gotten some good reviews from a family that I know that attends. I LOVE that they have a service on Saturday, as that is ALWAYS a plus for me.\n\nThe sermon for today was an interesting one, and it seemed to be relevant and on topic for today. The pastor took an updated slant to the story to make it a bit more relevant to today's time. My husband was even laughing at the pastor's jokes. My mother-in-law even commented on how she liked the music. I did notice that the verses that they pulled up were not the verses that I remember. I believe it's due to them using a different version.\n\nAll of this being said, the service seemed to be a good one. The signage indicated that this was non-denomination; however, the service reminded me one Baptist services from childhood.", "type": "review", "business_id": "PT7V38tg1Re9MLIrEwdh8w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W9ZG5q-QIblXYeHgaPS5Uw", "review_id": "XrX0-4zGrKQbJxSkj3tEkw", "stars": 4, "date": "2011-12-14", "text": "Who the heck doesn't love huge amounts of toilet paper and free samples of food... come on now!", "type": "review", "business_id": "fOERqjUznd2KBMKrxlMUww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hJBOxmNREXmMGTfXgMcGug", "review_id": "z3pSiipCrQM3B6i9PrnoGw", "stars": 5, "date": "2010-03-30", "text": "Best steak I have ever eaten is at Ruth's Chris steakhouse. Comes to your table sizzling hot. Sides are sold individually but are pretty good. The deserts and appetizers are awesome. Being an upscale place be prepared to take a hit in the wallet. If you really want to impress a date this would be a good place to do it.", "type": "review", "business_id": "sbjb1qNUcqQomJvcgPuJCg"} +{"votes": {"funny": 6, "useful": 5, "cool": 6}, "user_id": "v5k-__wHo2xPI25WO-dcQA", "review_id": "6hTGSj4vZzj33LW0ZwCwlw", "stars": 5, "date": "2010-04-01", "text": "The last time I was at The Vig, they tricked me.. You see, they have these glass doors that they open up in the back of the restaurant when its nice out, and sometimes, when you go through those doors from the outside to take a trip to the loo, they close them on you, so like an asshole, you attempt to walk back outside the way you came, but instead you bash your head and knees into the glass window in front of 35 people. Be mindful of this.\n\nBut hey, at least they had the most amazing wine specials that night and I was saucy enough to laugh it off and take a bow. And then I hid in the bocce ball pit for the remainder of the evening where I somehow acquired 200 bruises. \n\nI love the Vig. Even when I'm embarrassing the shit out of myself.", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2gvAjt4fV9YsjDZHEqCTpQ", "review_id": "edqj4YI0oxMGHN7L65Zb1g", "stars": 4, "date": "2009-12-23", "text": "Great burgers and menu offerings. You would expect to get a good burger with a name like that and you do. The sweet potato fries, Frenched fried onions, and Salmon Salad are very good too. \n\nThe decor, location, and menu are restaurant alternative for the area. \n\nThe menu was a little confusing and little pricey yet the quality of the food is there and considering the location of the restaurant pricing isn't an issue. \n\nI do recommend to restaurant to others.", "type": "review", "business_id": "9Ep4sguv3HH_8lWyzSogjw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "y5TsYk1VTXgbNoYCWw-IPw", "review_id": "g6-nj_J5zKyWMKfJDdqjjQ", "stars": 3, "date": "2010-01-08", "text": "Ahhh... Zinc. It's been a while since I have left Paris. Being a resident and citizen there for so long, I would like to think I can spot a decent French fare. I have now been to Zinc three times, every time I ordered something different, so far the food has not dissapointed as much as the prices have. Wow.\n\nOkay, okay, you have a spot in Scottdale, it's a nice little posh area with plenty of traffic, designer furniture and nick-nack and artsy stores that typically have things that would require your to take out a 2nd mortgage to afford those things that often just gather dust, one season at a time at home. You would think someone on that strip would be the one to say, let's have reasonable prices. Zinc is not one of those.\n\nThe restaurant has the name Bistro in it. They have folks dining out on the sidewalk, dining with noise and the occasional smell of BMW exausts... That's beautiful and very Parisian, also very Bistro. Here is a wake up call though... Bistros offer fares with decent prices, a prix fixe menu and simply good simple food. \n\nThe prices were incredibly high for what you do get. Unfortunately the charm of having an outdoor patio and serving fries in fake newspaper doesn't cut it. The Steak Frites (a hanger steak w/ fries and a brandy sauce) is a French Bistro Classic, a staple if you will and that was the only thing that was fairly prices for what you get. But if you knew how much those cuts are to get from a supplier, you'd be asking questions about the prices even then.\n\nOn two of those occasions we had cheese plates, it was more of a mix and match, you could pick from a few Chevres, Softs and hard cheeses, they were incredibly small portions but the breads that came with the platter was very tasty, warm and fresh. It is typically served with a ramkin of olives.\n\nSo overall, sounds like I am bashing this restaurant, I am not but I am dieing to find a reason to go back because there is something good about it, the atmosphere, the lighting, the seasonal menu. But little things keep me from enjoying Zinc. Such as the time we sat at the secluded back part of the restaurant, the small courtyard. Very charming, though some of the waiters, and cooks smoked right outside of the courtyard's gates. The smell of cheap cigarettes and mumbled chatter caused us to ask for another table, when we did, we were all the sudden looked as \"picky customers\". \n\nOne more tip Zinc, you may want to get the mall janitor to move his trash can from the view of your utmost beatiful courtyard, such promise, undelivered due to tacky flaws that could have been prevented by an attentive manager or even a caring waite staff.\n\nDon't miss: Dining in the courtyard, or the sidewalk.\nSkip: Specials that are simply trendy", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "fl6oI21uXoxVMwfR6lFanQ", "review_id": "pwwdUSZ0KO7Yfu8sNQ9nxQ", "stars": 5, "date": "2011-10-19", "text": "I'm so happy this store is located so close to my house! Every time I come to this store I get great service. I mainly use this store to get food items for my dog or the grooming salon - where Zombi has never had a bad experience. This location also has a Banfield Vet Hospital, PetsHotel, Doggie Day Camp, Training services and at times has adoptions. My best friend has used both the PetsHotel and the Doggie Day Camp for her pooch and has never had a bad experience. I also used the Banfield Vet to get Zombi up-to-date on her Rabies and the Vet was super nice. The best part was that I didn't even have an appointment, I just walked in and they were able to fit me in after a five minute wait.\n\nMy only pet peeve (pun intended) is there is usually only one cashier working and the line can get pretty long. However, it doesn't take long for another employee to open up another line to speed up the check-out experience AND they usually show up on their own, without customers complaining about only having one cashier. Bonus!", "type": "review", "business_id": "GZNEPuEPqs7JIswUhOttnw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "a5t40JYMQUY-rccT5-HQHQ", "review_id": "9wzMmcRUiDcooOiyejzXZQ", "stars": 4, "date": "2008-09-26", "text": "A relaxing place to have wine, and talk with the very knowledgable (what is the difference between cab franc and Carm\u00e9n\u00e8re), great service (waitress came on time and performed pourings properly) and sexy (well at least the waitress) staff. \n\nBlue/Black diamond wine bar - Great for me and deliberate by the wine bar - Medium/Advanced wine patrons come on down. Newbies stay away because you're not going to get educated. Just dont tell anyone about the place during live music night...\n\nI continue to come back year after year when i am in phoenix because of the athmosphere and wine selection. Very extensive wine selection (3000+ bottles) on file make you wonder where are they hiding it all in this cozy location. \n\nAnd now the critque:\nWaitstaff has a bit of the starbucks effect where they are act with an aire of being smarter than the patrons. \n\nThey serve Bistro and flatbread style food - perhaps my choice was silly but it over salted my palatte to the point it started to strip the roof of my mouth. With such a wine list, a little more probing from the waitstaff to make the pairing work out would be helpful. If you're going to act smarter than the patron, be more 'intrusive' in helping pair the menu.\n\nI am used to wine bars around the country and the prices are above average most likely caused by the scottsdale area effect. \n\nFinally, bring your solid black \"going out to the club\" outfit - seems to be the uniform of choice of this speakeasy-like patrons. Great dark athmo to take and sauce liberally your date.\n\nGive it a shot.", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "e6jqQ_YXlGiLPi1z2HO0Pg", "review_id": "pJgM37N3r9lZfq3FVCsjow", "stars": 4, "date": "2011-03-15", "text": "I always forget and tell people that Pomeroy's is on Central. I think it must just be that cool - I'm trying to pull it closer to the other really good places to go. It is, in fact, on 7th St. and if you tie it on a little tight, the grocery behind is, in fact, open late. \n\nIt looks like a bar that should have a few regular bar flies and music that screeches to a halt when someone new walks in. And by that, I mean it's the most endearingly divey of bars.\n\nThere's shuffleboard, just give your id to the bartender in return for the pucks. There's pool, but you pay quarters for that. The juke box is electronic and you should expect that you're gonna hear Def Leppard at least once during the night. The regulars will help you learn darts, the food is griddle-fare and the guys behind the bar are always good for a chat or to grab you a pint. \n\nPomeroy's should definitely be on your rotation of places to be in Phoenix.", "type": "review", "business_id": "_GS1R0LTwr6h8rMWY_8U9Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "H6fszVMVr0syml5qOmp6RQ", "review_id": "2lJ8I2bneL0O73gKxb8faQ", "stars": 4, "date": "2010-01-24", "text": "This is the second time we visited India Gate. The service was as good as the last time we were there. The waiters are attentive and friendly, willing to explain in detail what and how each dishes were made (for those of us who has no idea what some of the items are on the menu)\n\nCozy place to have a nice meal, reasonable price.", "type": "review", "business_id": "wy_R4crNr1BH0CP87y9UHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "114nj5lyzBf6BTkuPSUINQ", "review_id": "lBn8SVtjJnFH5DOMQpV5kw", "stars": 5, "date": "2010-08-28", "text": "I visited this place in January while I was in Phoenix and I miss the food! My vegan friend suggested this place to me and my other friend (we were skeptical that vegan food could taste good)...she proved us wrong!\n\nThe food here was delicious, I'd eat here regularly if I lived in Phoenix! When we arrived, we were worried about the hours since we got there pretty close to closing time, but they were cool! We shared the samosas and buffalo wings for appetizers. I ordered the Thai Peanut bowl with mock chicken and noodles for my entree. I felt like everything was flavored well and while I enjoy meat normally, this opened my mind to trying other vegetarian places in the future. I liked the ambiance here, great place to grab a bite with friends and chill. It was the perfect place to stop by after a busy weekend! I'll be back next time I'm in the area.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "xpQ1patVNb8dyDQvGV8Zvg", "review_id": "t1bEfexVuIMvwMVcy9Iyjg", "stars": 5, "date": "2012-05-12", "text": "This is one of my favorite little gems in Phoenix. I've never had better pho than here. I usually order the \"spicy beef sate\" pho, which is miles above the rare beef pho. My family and I also order the pork \"spicy treats\" which is a roll-your-own spring roll. It's delicious and fun! One order feeds all five of us. \n\nThe owner is also extremely nice. They also offer discounts to ASU students! Have to love that.", "type": "review", "business_id": "L-GfuOmn9mv55571uXvf2A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "1RJORk4w9jxxWBKzOvOptw", "review_id": "d9MK-XkOA_5QcuEIN0V7yg", "stars": 4, "date": "2009-01-04", "text": "I just love this place and I always leave feeling refreshed and relaxed. Highly recommend any of their spa treatments.", "type": "review", "business_id": "iiK8n-m2mUzItIBxGGaVIQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eicY263RLPCOLrNGSGekvQ", "review_id": "JtyAE5wnR-gF8yemEgmLoQ", "stars": 3, "date": "2010-04-06", "text": "I love that walking through the doors of the Sugar Bowl is like taking a step back in time but what I don't love is that it looks like it hasn't been cleaned or had any restoration work done since the day it opened. Lets be honest though, I didn't come here for the decor, I came for the ice cream. \n\nI was very excited when I saw the sundae covered in chocolate, cherries and marshmallow creme. I love marshmallow creme and chocolate, always a recipe for success when these two ingredients are combined. Well, no luck. They were out of marshmallow creme. I got a brownie sundae instead, only ate half and decided that it was only ok. \n\nI probably won't go back to this place. There are too many good dessert options out there. Though if my friends insisted, I would more than likely oblige.", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "aj1atE6H4Jf9mfsHvWhn2Q", "review_id": "RLMOOCHGg05SLoTJy_6SpA", "stars": 1, "date": "2010-08-02", "text": "Im going to have to agree Whole heartedly. And i informed the manager of it as well. I picked this one because it was close to the Airport and the Light Rail. The noise from the Airport wasnt to bad. But it was the Train Horns all NIGHT LONG and ALL MORNING when your trying to sleep. I wouldnt pick this one, the neighborhood wasnt bad despite what people say. But the Train noise is just unbearable. I got it for the Click 6 rate which was reasonable. Stay Elsewhere. I should of picked one further down that was right off the light rail.", "type": "review", "business_id": "CvldwdURDzZk-3cAlcW3uw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8SL2Wj7oey5WNEKiquXlig", "review_id": "brNKE0mA3DBM3gi-RjhJnw", "stars": 1, "date": "2012-10-03", "text": "I should have taken my own advice and stayed far away from this place. Our most recent visit ended hastily when I was served rotten tuna and got barely a \"sorry\" from the staff. I could smell that the fish had gone horribly, horribly off when the ahi tuna salad was put before me by the waiter, and I'm shocked that the kitchen actually thought they'd get away with sending it out. The waiter disappeared so quickly from my table that I had to go hunt him down to point out the bad smell at my table was coming from the food, and he took my plate back to the kitchen and five minutes later came back to say, \"okay, we all smelled it and there's definitely something wrong there.\"\n\nSeriously? You had to go pass it around to confirm that I'm not crazy when you can clearly tell within ten seconds that this is not how raw fish should smell? After all this, their solution was to comp an appetizer, not the salad, and eventually gave me a new salad to go, which I decided not to eat just to be on the safe side. \n\nLook, I'm not scared to eat week old leftovers or sushi at a divey joint and I don't really get freaked out by the cleanliness of restaurants, but this could have been dangerous. I have absolutely warned off all my coworkers and friends against this place, and now I'm warning all of Yelp. It could have been handled in a way that left me confident that it was just another new restaurant kink, but the awful service made it clear that's not the case and I shudder to think of what new low they'll sink to.", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GV40APiM60CXnX7TAzYV0Q", "review_id": "xmtnXNBEyi6LR5OaP9H_JQ", "stars": 2, "date": "2011-09-27", "text": "These donuts don't taste good anymore. They have an aftertaste like they are using a different type of oil", "type": "review", "business_id": "mCJxU7hLag7xOhOz3z-cwg"} +{"votes": {"funny": 3, "useful": 8, "cool": 6}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "g_rBgIUPJER87CLkOSfY_w", "stars": 2, "date": "2009-12-31", "text": "Had a fun UYE get-together with Brian S. & Norm R. today to give this little Venezuelan cafe a try. I had a Carne Esmechada Patacon, which is a sandwich with slices of plantain for the top & bottom, fried crisp. (A plantain is something like a huge banana.) Inside was a moderate amount of shredded beef & some other things. It was good, but it cost $6, & for a full-sized meal you would have to add a couple of other things in the $4 range, & end up at about $15 for your lunch!\n\nFor half the price, I would give it twice as many Stars.", "type": "review", "business_id": "It8Q9-l1EEtTr9NPpTgGPA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "yY9yRsCoBM8AYBEZKNMIRQ", "review_id": "NpkfnXsIunIF8WjLgKaZ0g", "stars": 5, "date": "2012-04-20", "text": "Love this place. Friendly staff. Always a treat to see what's cooking on the weekend. I don't mind standing in line to order. Great way to meet new friends and talk to old ones. Ask Kiersten about the cortadito.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r2KPiKG0S3M3w9FvQbm_lw", "review_id": "hwy_gtbDPdzvUVtMdgMWqA", "stars": 3, "date": "2011-08-12", "text": "This theatre is very conveniently located in the Arrowhead mall which of course makes parking a breeze. It isn't my favorite in town because there always seem to be tons of teenagers here (i'm sure BECAUSE it is in the mall) and yes I know if they are too loud then we are too old. In any case the theatres are busy and bustling. The concessions seem very high but I guess that is a trade-off for the convenience.", "type": "review", "business_id": "-nPwp-pg-pTEO2nqo1h_lg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uVYsE8KsrMAndEAQeYc0TQ", "review_id": "8TuGCR1lQ221S4zxlxNTRQ", "stars": 4, "date": "2011-05-24", "text": "Love this studio! Teachers are nice and accomodating. This is possibly one of the best yoga classes I have studied. This is a place where you sweat your ass off while listening to music and meditating. Love Sumits Yoga and love the studio in Chandler. Best part is the practice is expanding so check out the website. www.sumitsyoga.com", "type": "review", "business_id": "fxgmP9FrYBC5ZysZTCbnEQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "etQpUPdEqLeETwBJvvo-zQ", "review_id": "ocsU8xA9IPYhfpIBJPGBHQ", "stars": 5, "date": "2010-08-21", "text": "Paradise Bakery is one of those places that you can count on for always having something good when your driving around wanting more than a burger and not a sit down meal with a waiter. \nI love the Cranberry Turkey sandwich with fresh fruit. The nice thing to consider is that you can get a whole or a half on the sandwich of your choice.\nOnce you feel good about the healthy choices you've made you encounter the cookie section at the register. All I'm going to say is that the chocolate chip is to die for!! The chocolate chips just melt in your hands!! Doesn't get any better than that!! \nParadise Bakery does also have a great breakfast should you want a nice place to go after a nice hike or just want to treat yourself and a friend to great place to visit. \nPut Paradise Bakery on your \"always good\" list!!", "type": "review", "business_id": "af7ZkF4r4ywWQF-QTXvsCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "mYEM5_NAVBkto88I_RF7ow", "review_id": "-xT8TQkA5z6XqNeIkYlZtw", "stars": 4, "date": "2008-06-14", "text": "I think half the fun of a used bookstore is the treasure hunt. This used bookstore is better organized than some of my old haunts in Dallas but I will survive.\n\nI think of used bookstores similar to looking through your Grandmother's attic at her book collection - it isn't supposed to be all shiny and new.\n\nBookman's has a decent selection of books, I've found an entire collection of Rishdie one afternoon! Of course it is always going to be a crapshoot but that is just the way it is in used books.", "type": "review", "business_id": "xLCbkTYQaP-nij6mEfaw7A"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "YnU-qgATIaFB0EZy8KpuuQ", "review_id": "M_6ZhvwF9EcIUsORWAyefQ", "stars": 5, "date": "2008-08-13", "text": "Some of the best Italian food I have ever had. This is a favorite for my wife and I. Sima and Marcellino are very nice people, very inviting. The bar is small but fun to hang out at. The food is always fresh and delicious.\n\nWatch out for Marcellino - he likes to push the truffles.", "type": "review", "business_id": "MLVKDbuI2xaOJQ4-NZj2MQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 6}, "user_id": "qASPib1Z8ft8e96dtbh66w", "review_id": "PHmKjnfiKSyx68NXqbf-6A", "stars": 4, "date": "2007-09-15", "text": "Merc Bar reminds me of a friend's basement...but your cool friend who has the basement with the bar and neat 70s lighting fixtures. (I think it's the wood paneling that gives it this feel for me.) I love that they have magazines you can read, it just drives in that you're at home feeling a little bit more. But yes, its very dimly lit. I remarked that I thought Bonnie was right and they did run out of lightbulbs.... We were there fairly early in the night and it was very laid back. (My husband was in shorts) I didn't get a snobbish vibe.\n\nThe bartender was good, although I asked for a drink with Ketel One, Red Bull, champagne and grapefruit juice and he gave me one with Ketel One, champagne, Chambord and pineapple. Close, I guess. They have bag hooks under the bar which is something that I haven't seen much of here in Arizona and I was really happy about that. (I hate having to sling my bag off the chair or lay it on the bar.) \n\nOh, it looked like they might have free wi fi because there was a dude in a chair with his mac laptop.\n\nUpdate:\n\nOk, so I came home from Merc Bar one night ready to write an update to discover it was the ROTD! Strange conicidence, eh? \n\nThis time out we were there on a Saturday night which is a little more hopping than an early Friday evening. Still casual though, people in jeans, sneakers, t-shirts. (There were people who were more dressed up, but there was definitely those who weren't.) We were seated at a table this time which I would suggest since it gets full. Even though it was a Saturday night I still didn't get a snobbish vibe, it was a laid back atmosphere. Our waitress was a little slow, we had to flag her down every time we wanted something which was a little annoying and she didn't know what a Kir Royale was. The music was good, well chosen, and not too loud.\n\nI really dig it here....I actually don't mind driving \"all the way\" to Phoenix to come here!", "type": "review", "business_id": "peA3F-PnIfijYr8HuG-A-Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EoswR0pXxeq5X2riYzlvow", "review_id": "1Pa91XTa7Xzu2k3pq9Ds3g", "stars": 5, "date": "2011-02-20", "text": "True Mexican street fare - at first a little intimidating for this Gringa, but it was awesome. The owner Dan (who happens to be a Culinary Institute trained chef) put together a variety pack for us. Everything is small and cheap, so you can get a whole bunch of different stuff to try. $30 fed 5 people.\n\nOn the NE corner of 19th Ave & Glendale, next to 7-11. Give 'em a try - you won't be disappointed!", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "RbCRHWZotVygDGy1wF6wHA", "review_id": "BuENS426C07RhCAixzzCVA", "stars": 5, "date": "2012-04-15", "text": "I had lunch at Lon's and wow, what a great experience. Great food, great service and great ambiance outside. I met the Chef at an event and he was less than friendly. Maybe he was having a bad day? His unfriendliness aside, this is a must try if you are in the area.", "type": "review", "business_id": "EHi-lebXGWjSktl4WvSoow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2EgPOQF3cwLpeCEHINLtmw", "review_id": "nxVbd4HuG8utORlic88Ymg", "stars": 5, "date": "2012-04-01", "text": "I love this place! Been to a few different locations and the pizza is always excellent. Yesterday, my boyfriend stopped by the Camelback and 10th St. location and picked up pizzas to take home (he called in advance, as the pan pizza takes at least 30 min). I had a veggie, tomato, basil, garlic, and he had a meat combo-pepp and sausage. So delicious. The only complaint he had was the parking situation there. It is kind of tough, but well worth it. I absolutely recommend Oregano's!", "type": "review", "business_id": "ML1RJdeZ7bbfMrHvJ7m99A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gkpMjWWEDKbiWSWzgubq3w", "review_id": "4rxbsu3c6AqQ9n4j9mjMpw", "stars": 4, "date": "2011-03-14", "text": "Came in a couple of weeks ago with my cousin and we both really enjoyed what we had ordered. We came in during the \"happy hour\" and got 3 appetizers: Baba Ganoush, Tzatziki and Feta & Olives. My fave was the feta and olives. I liked the Tzatziki but it was a little too minty for my taste. If there was a way for the mint to be toned down a lot, it would be much better. The pita bread was very soft, fresh and warm. Very complimentary. I'd love to come back and try the Spanakopita, Mediterranean Garlic Shrimp and perhaps see if the Tzatziki could be less minty. Delish!", "type": "review", "business_id": "9em_vfSjwcPqQgU8Zj-hzA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Z1nh8W4d4YWkEAc0VHfFQ", "review_id": "ER_kqxCrzXP9vm7qi2TyNw", "stars": 1, "date": "2012-08-25", "text": "I was really disgusted with this place. I should have known when we walked in on Saturday at 12:30 PM and there was no one (not exagerating) there. But we were hungry and hot so we stayed. I wanted shrimp tacos but no shrimp at tacos del MAR...just frozen fish that you need to order 5 minutes ahead because they need to microwave it. It's breaded and precut...couldn't they at least get the kind that has different shapes and looked like it wasn't completely processed? The kids had bean burritos which they usually love anywhere but didn't like at all. My husband's chicken burrito tasted like a school cafeteria. The clincher was that the unsweetened ice tea tasted rancid. I think they let the tea bags go bad or something. Gross and how annoying that they don't have seafood. Wahoo tacos from La Jolla please come here to AZ!!!", "type": "review", "business_id": "eP2WTbTQDCLj6FPNd6Il5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "YPk47NcyWSkk-541OxyzMQ", "review_id": "quJyy14bw2xiUyzvu00k2g", "stars": 3, "date": "2011-03-03", "text": "Very nice happy hour. Its dark inside but the beer prices are good and they have free sliders, chips and salsa.", "type": "review", "business_id": "7U8TYNW4Mvx6m3zexsO0sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BEhWehvv4OIz4sky-eOu6Q", "review_id": "860woXxtRMu4Hikyp6e49Q", "stars": 5, "date": "2012-08-26", "text": "What a restaurant! Absolutely loved my experience at Tarbells. I've been hearing rave reviews for quite sometime and decided to try it out recently. My party and I sat at the bar, which was a great choice because the bar was comfortable, rather large and really social and fun. The bartender (young woman) was fabulous, inviting and very nice! She was very attentive. A guest in my party dines at Tarbells often and she had his drink in front of him by the time we walked to the end of the bar.....Now thats some customer service for ya!\n\nFood = We started with the Calamari. A favorite dish of mine and this one was outstanding. Two very different but delicious dipping sauces. A roasted red pepper and a pesto mix. Not sure which one I liked more :) I enjoyed the pan-seared jumbo sea scallops. TO DIE FOR. I am a huge scallop fan and these were done just right. Caramelized, giving them the right amount a sweet....and it was served over very yummy risotto. Another dish enjoyed by my party was the Fennel Sausage Pasta dish, the fennel sausage was AMAZING. \n\nOverall experience was fantastic, as soon as I get another opportunity I will be dining here again! :)", "type": "review", "business_id": "zG_wv69bsllw_PWhOmoAKQ"} +{"votes": {"funny": 5, "useful": 5, "cool": 4}, "user_id": "6kmu0mYbdpMIOZ6Y0eVsxg", "review_id": "JYUj19sJnrPMG_ljv-7heQ", "stars": 5, "date": "2008-05-02", "text": "NOTE: I only had take-out, and it was brought to me by my boss. She rules!\nShe got me a hummus/grilled/marinated chicken combo. It has 3 different hummus...es...es (HA!): roasted red pepper, jalapeno and plain ole' hummus. They are sectioned off in the big plastic container, which rules for my OCD, as I don't like my food touching. In the center is a PILE (a total monton!) of grilled chicken. It's got some sort or spicy rub on it, but not too much kick. It had been marinated, too. And tender....I think this is the most tender chicken I have ever had. It made my own tender spots as juicy as the chicken was!\nI'm not big on pita, so instead she got me a side of cukes. \nThis thing weighs a ton and I've been eating it for 2 hours. I have made a mess in my \"Make me Yelp\" boyshorts.", "type": "review", "business_id": "w19cemjVR8u02PgjFpJ7Mw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "DOJbGtr2vWTKSSl91xpsag", "review_id": "YkqZd8kGtA40bS4BIvVK1w", "stars": 2, "date": "2013-01-01", "text": "These are not real French treats. I'm surprised some of the reviewers say they've been to Paris. First of all, they're not macaroons (those are Jewish coconut cookies) they are macarons (one \"o\") and these were the most amateur macarons I've seen. The feet are big (the feet are the rim of the cookie) and the cookie body itsself is airy and thin whereas a true macaron is light but doesn't actually have air pockets in it (the cookie dough is still present throughout). The filling is not ganache like it should be - it's a buttercream like you use for cupcakes. \n\nChocolate croissant was decent so I'll add a star for that.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pahxsi5vKzTNMMXsHs4SLQ", "review_id": "NJa3QwpweUzJ7QseSzBLug", "stars": 5, "date": "2012-12-30", "text": "I live in LA where these shops are on every corner. I can say without a doubt, this is the best FroYo I've had!\n\nOn top of that, the store staff is super-friendly and the place is immaculately clean. They are also serving gelato, pastries and fresh coffee/espresso. Check it out!", "type": "review", "business_id": "zp5k6funVelIOVuqdY0mDA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JTd_HLrtLDg7YSjLq_8I_A", "review_id": "cagJp-71nespvYjDJEojww", "stars": 4, "date": "2012-12-17", "text": "Out doing some shopping w/the Ms, Stopped in for a quick bit to eat & WoW was the place packed! She had never been & I had to see the Hostess for a table, when two seats at the bar opened up. Now my honey doesn't useually like sitting at the bar stools as she has a bad back but we were kind of in a hurry, as is everyone this time of year. I hadn't been in a Chompies since 1980...WoW what a mistake, I forgot how damn quick the service was & how GOOD the food was!!!! My girl even said the bar stools were comfrotable & that this was here new favorit place! I will be back soon!", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a09ENYogqRn0sQ8J2D_rng", "review_id": "YHHI1rF02DlpuwiAnxX3EA", "stars": 5, "date": "2012-11-14", "text": "will review after I eat. Ok so we ordered a Mongolian beef combo plate, sesame chicken (YUM) and pork fried rice , and sweet and sour pork. This was really really good food. Good prices. When we are in the area we will definitely go back.", "type": "review", "business_id": "CICu2tclxRB7JgW_I2a8rQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "khPlizt3ava1xkbtAxHQnw", "review_id": "Dq1Ut05-6cXrzEft-tMwHQ", "stars": 5, "date": "2011-01-23", "text": "This is a good store for your beauty needs. They are open until 8pm too which is nice.", "type": "review", "business_id": "9tzh2vfZh5a7dMCDI4g7Jg"} +{"votes": {"funny": 4, "useful": 2, "cool": 4}, "user_id": "TDbKPzfPclw3MxrpBISVcA", "review_id": "Vu_JoqKTjQTaopeFK0V00A", "stars": 1, "date": "2009-09-15", "text": "Wow. I'm not even going to wait until I'm done before leaving a review. I just placed my order, 30 minutes after sitting down.\n\n11:35 - Sit at a table for 8 an order drinks. So far so good.\n\n11:39 - Things were going alright when we had a table of 8, but when a few more people showed up to attempt to give Floridino's some money in return for a quick lunch, all hell broke loose.\n\n11:41 - There was a room next to us with a bunch of empty tables. \"You can't sit in there. We don't have a server in there.\" Screw it, we picked up our drinks and moved in. If they can serve us at that table, they can serve us one table over in this other room.\n\n11:45 - We asked to see the manager.\n\n11:50 - \"We can get you drinks in here, but not food. We have to wait for a table to open up out there. Then we can serve you.\"\n\n11:52 - Someone who looks like a manager peeks into the room and leaves. We still haven't spoken to a manager...\n\n11:55 - \"We don't want to overwhelm the kitchen.\" (Hmm.. If you didn't want to \"overwhelm\" the kitchen, maybe you should have taken my order 20+ minutes ago...)\n\n12:05 - They're taking our food orders in the Forbidden Room. I guess they're not as allergic to accepting our money as they led us to believe.\n\n12:32 - Just received my food in the Forbidden Room. Pretty much exactly an hour after I got here.\n\nYou suck, Floridino's.", "type": "review", "business_id": "y75baZnoI51J8WS7NK9FHQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "omGocLsyIYeiHPviDOAa3w", "review_id": "2Jfy0EnW9PEFjhbMpdWwSA", "stars": 4, "date": "2011-07-20", "text": "KIerland Commons is a fantastic development. Lots of great shopping, restaurants, lofts, etc.... Only problem for me is that I live in Scottsdale and frequent the Scottsdale Public Library, therefore I want my tax dollars to go into Scottsdale's coffers so I will try to do most of my shopping and dining across the street at the Scottsdale Quarter (except for Zinc Bistro - I'll keep going to Zinc regardless of what zip code it's in).", "type": "review", "business_id": "e9JhcYEgNbRL8i8CTdQO2w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L8NC1S3O0AgBwrysvG1wfw", "review_id": "JntrvnrvBwRtHVcBmtj5aQ", "stars": 4, "date": "2012-08-20", "text": "I hadnt been there in years, and it was all I remembered. I went with a coupon that I go purchased on the Living social website. Champagne toast, appertizer, salad and all you can eat entree. They also do a complimentary photo for you. Very quaint and romantic. But the food was fantastic. We had the cheese fondue that was just delicous. The meat course was also wonderful. But the thing that really made our experience great, was waiter. He was great, and funny and he was there when you needed him.\n\nBut I do not suggest turning up there without a reservation. You can make reservations online, very quick and easy and you get a confirmation.", "type": "review", "business_id": "FOfhEC6rN23RQaUlsR2byw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "_mo4LtybzPjvg-i6meN-tw", "review_id": "NtTnVIOi8PGcKwIW3ch8mg", "stars": 5, "date": "2007-09-16", "text": "Still my most favorite hot dog ever and I think the magic is in the presentation. They've got the best hot dog sleeve. It perfectly holds the dog, lots of chili and it's not messy.\n\nAnother must have is a Cherry Lime Squeeze; Sprite, Cherry flavor, squeezed limes and maraschino cherries.", "type": "review", "business_id": "4vz9I9b6bGEEuRGr3Ry5bA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RpMaIvO4JTEvh55UfU2qDw", "review_id": "GxJMPDcLTgbUwPGjUQO41w", "stars": 5, "date": "2012-01-17", "text": "Healing hands! A dedicated, professional therapist/intricate bodyworker who listens to your needs to develope an individualized treatment. Focused in addressing my health concerns and goals. A message like no other that left me feeling restored with the added bonus of \"spot on\" nutritional advise ... an overall concern for your good health! To feel renewed ... highly recommended!!!!!!!!", "type": "review", "business_id": "xpdh4XXiCTbO3yctj3uK7g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bkaMd3Fk8a7yT4tkthHDbA", "review_id": "9wfMQeP8p_eU6vtAnI3EAg", "stars": 5, "date": "2012-04-23", "text": "I go there often. Love the food. Love the atmosphere. Great beers & usually great service", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4QQ8qzf5TID7B_Enca7juA", "review_id": "6POhowmNd6PKL_XSDtgwOw", "stars": 3, "date": "2012-05-29", "text": "So I'm torn on how to rate this place star-wise because honestly, there were a few things that were 10 stars and there were a few things that were 1 star. So let me break it down for you. We walked in to this cool little spot on the Sunday before Memorial Day and it was about half full. It looked like it was VERY groovy but I seriously had to use my phone to walk around because it was SO dark. We sat at the bar and not one of the bartenders addressed us for like 15 minutes. Maybe they couldn't see us? Anyhoo the wine list is interesting and I was having a hard time choosing something. The one bartender that finally waited on us had NO personality. I asked for a taste of a few things they had by the glass. They sounded very interesting but I had never heard of quite a few of them and I pride myself on knowing my wine. The first one I tried was a syrah blend that had something to do with chocolate and it was just that...too chocolatey. My friend ordered a glass of the Justin Cabernet which is always a safe bet. I then asked for the Tannat they had by the glass. It was awful. It taste like it had been opened for days. I told our personality challenged bartender and he went and tattled on us to maybe the manager? The manager then came over and was pleasant if a bit condescending at first. He said \"well have you ever had a Tannat? and I said \"actually, all the time, I know what they're about and that is no Tannat\" he then did agree with me and said \"just tell me what you're looking for\" I told him I wanted a Cabernet Franc or Grenache which they didn't have either by the glass. He ended up pouring me something that really was delicious. He definitely redeemed the evening because he was professional and helpful. We then ordered the flatbread with pesto and a few different cheeses and it was seriously one of the better flatbreads I've ever had. They had two guys playing live music and they were very good. So my break down is:\nAtmosphere - 4\nAttitude - 1 except for the knowledgeable bartender, he gets a 10\nFlatbread - 10\nQPR - 10...for those non-winey's this is quality price ratio", "type": "review", "business_id": "P5uC-zfGG6yqoQDUyqyAvg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pd8xFpF6PUIqq7nOAdF1cg", "review_id": "ymI6uljpSU0CWtQlT3MyIg", "stars": 2, "date": "2011-11-05", "text": "If I've come to your Starbucks over 30x within 5 months and you still don't bother learning how to pronounce my name correctly then I don't know what to say. I always order the same drink: quad espresso with 3 pumps of white mocha and 80% of the time they don't get my order right! The baristas always ask if I want water or milk with it.. Seriously? I ordered a damn espresso for a reason. If I wanted water or milk then I would've ordered something else and NOT an espresso! And my drink is one of the simplest drinks to make too!! Just brew 4 shots, mix in white mocha syrup and add ice.. But they always somehow mess up by asking me stupid questions. If it weren't for this sb being the closest to school, I would definitely frequent the Thunderbird location!", "type": "review", "business_id": "4fO13y8cHH5Loaae7rnExA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7nG2ux7uLpARvKZCwYTzug", "review_id": "T9pXs_Zo_pAhfsg8EBuDQQ", "stars": 3, "date": "2011-05-23", "text": "Sushi is absolutely nothing to write home about. They have happy hour all day everyday, which is a great way to start your night. The Korean pork tacos are bomb! Great location in Old Town Snottsdale. Love the staff and atmosphere!", "type": "review", "business_id": "RmA5zN-Bs89lsTuY6v8W3Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ufoJvi-v9MTa7FBlIhdxig", "review_id": "Ap1gkO9NfR3BhGXewdkq1A", "stars": 1, "date": "2012-09-18", "text": "Went to Sol for restaurant week. Was less than impressed with the bitter salad with MIA avocados, the carnitas that were very bland and boring, the rice was delicious, however the black beans tasted like aspirin, dessert was a dulche flan that was hard, solid and icky. Service was average, took 2 hours to get thru dinner. Best part was the refreshing wine and beer!\n\nCheers to SOL, we wont be returning.", "type": "review", "business_id": "nFo_63pTr-4ZhakuaRFOCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yoa2y89jR7tAnWRLSDca7Q", "review_id": "UV8_hIzpk2R34QzKBp8Vag", "stars": 4, "date": "2012-06-17", "text": "This is a cool spot. It does live up to its name in that the restaurant has a posh, bistro like ambience to it. You can get burgers like a la carte by getting them in 3oz, 6oz, or 9oz sizes, so it's possible to mix and match to try different burgers. I had the Wagyu (kobe beef) and the Lamb, and they were pretty average. Meat wasn't extremely tender or anything and the bun was so-so. Sweet potato fries and onion rings were really good though. They have several four peaks and Grand Canyon pilsner on tap. \n\nI think overall the food is par to a cut above par, but I don't think I go there for the food - it's definitely a fun experience everytime you eat at Stax and the varieties of burgers are what makes it. Check it out!", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "HuGmiFh9v-YxY9FUGx2xHg", "review_id": "oMPMjKnQcJi0tAxJW_Iorw", "stars": 5, "date": "2010-04-25", "text": "Had a wonderful birthday dinner at CIBO last night. This was about the 3rd or 4th time visiting this quaint house turned restaurant, and now is the time to YELP. \nCIBO has wonderful appetizer of antipasti that played with my taste buds! Fun to make your own brushettas.... \nMy husband and I shared the Rustica delightful, delicious, delectable.... \nAnd the creps...what can I say...I didn't need it, but I wanted it, so I had it, so there! Fresca creps with fruit, vanilla ice cream and fresh whip....Mmmm...food coma. Lovely service and birthday!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GhCA6N7sRYZHBr5QKAcCWg", "review_id": "c9ywzHA5-AcFbyROabEWhw", "stars": 3, "date": "2009-06-13", "text": "One of the reviewers said this owner wants to run a restaurant - I completely agree. That has good sides and bad of course in short it isn't Palette ... We stopped in for brunch last Sunday - the French Toast is Challah [which I love] restaurant-baked I think - and seemingly not fully baked - the center was dough. The scrambled eggs were adequate - the restaurant-made salsa verde was excellent; the Schreiners sausage as expected. That was all we had - quality not a compelling reason to return ... until the service is factored in - crisp timely and friendly. I'll be back to try dinner.", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "daCwtoylep8ivghIt76p9w", "review_id": "4Ul8QbXhSWluLd1rUh7lGA", "stars": 5, "date": "2012-10-23", "text": "I was surprised by the depth and distinctness of the olive oil. I was expecting oiliness with hints of flavor, but instead was pleasantly surprised by bold flavors carried on an already flavorful oil. This place far outshines other oil stores which add flavor essence to their oil. They infuse the flavors here, making them stronger and more authentic.\n\nOverall, great oil and balsamic vinegar. Try their food, such as the sandwiches. And definitely try as many oil samples as you can. The oil is not too expensive, ~$20 per bottle. Well worth it if you like to use it on bread or to add some great flavor to a salad.", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RWXHIBiGdhv9SqYMBhGagw", "review_id": "ykk4oidsZ0TJtTj_53hfnw", "stars": 5, "date": "2012-03-13", "text": "Best cajun food in town, not just from a truck. Phoenix doesn't have the greatest selection of cajun offerings so I was amazed at Food Truck Friday to find Jamburrito. They have a pretty stellar selection of meats & meals considering it's from a truck.\n\nThe spices were perfect - just spicy enough to enjoy but nothing that's going to harm. I had the catfish once and the jamburrito twice... not in one sitting because the portions are VERY filling.", "type": "review", "business_id": "5WRpxAc9lvonVGfuX34hlw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GeGDZ02UfARKBRl7LqKZuA", "review_id": "MzvfNC5KW7owsTgLfAqbXA", "stars": 4, "date": "2012-02-22", "text": "Planet Sub is definitely a good option for solid, good tasting subs. I'm next door at Gangplank a couple times a week and we usually hit this place up for lunch. It's much better than the last place that was in this spot, has tons of options (we decided you could eat lunch there for a month and not have the same sandwich), and friendly staff. I'm definitely glad they put this in. It's a great option in the downtown Chandler area.", "type": "review", "business_id": "3rUk-WyCv_wMQR5HbTqD4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Cy4tE3RIae4cadipZzJtHg", "review_id": "SjR1doIGJAzPt-A7mpFNpA", "stars": 5, "date": "2011-12-30", "text": "Great service, atmosphere and of course great food. My wife and I decided on Blue 32 last night for dinner. We have been there many times, but we felt we needed to share our experience. We enjoyed sitting at the bar having a few drinks and visiting other patrons. Around 9:50 we realized the kitchen would be closing. I asked Daniel and Baeley the bartenders what time the kitchen served \"dinners\" of course he stated 10:00pm \"OOPS\". But Daniel said they would prepare what ever we wanted. I asked him to check to see if they have already started to clean up first. We do not like to ask the kitchen staff to prepare dinner if they had already began or completed clean up. Daniel returned to say that yes they had finished the grill, but he again repeated that they would still prepare anything we wanted. At that time we declined to have the kitchen staff prepare anything. But a moment later, Roman the chef came up to us and sincerely stated that he would be more than pleased to prepare whatever we wanted. Still we were not wanting to make such a request that late, but with his sincere and friendly personality he still insisted that they were more than willing. So we asked him to pick and prepare something of his choice which turned out to be the best two burgers that we have enjoyed in a long time, a Bacon Cheese Burger and his speciality Texan Jalapeno Burger both with extra crispy bacon just the way we like it. SOOOOO....we would highly recommend Blue 32 and it's staff including by name, Roman the chef and Daniel and Baeley the bartenders. Every time we have gone to Blue 32 we have had nothing but a great experience, this place is a must!!!", "type": "review", "business_id": "14K90G-hbfk795NY7cKxMA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iwZ_7QuZ1tzT6pIZmOlDQg", "review_id": "-7a1Jd8Be4JawHloXKCxoQ", "stars": 4, "date": "2012-03-30", "text": "The date shake is like \"the best vanilla shake ever\" with little tiny pieces of chopped up dates coming up through the straw the whole time.\n\nAwesome.", "type": "review", "business_id": "RxjHseEfxowNP2L6uH7FpQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YZ82I51Zedr9U6e13DO82A", "review_id": "ByzUd3aDCVe_E_WLrxfdqA", "stars": 4, "date": "2010-10-31", "text": "We went early, so we didn't have any of the seating issues others have mentioned. The decor and set-up was neat, and the bartender was friendly and attentive. I agree that the drinks are pretty expensive -- but the White Rabbit was amazing. I'm not a big fan of mixed drinks generally, but horchata and white chocolate liqueur? Awesome! I'll definitely be back. Great place!", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rSbqoimVUWPEbNSGwyjI-Q", "review_id": "OYLBgL6ZgFP4MSsV8_qV3w", "stars": 3, "date": "2011-06-06", "text": "The Doubletree is the resort we go to when we don't feel like paying to much for Scottsdale resort. They have good rate rooms if you are a triple A members also.\n\nThe pools are fabulous just a place to go and hang out for the day if you don't fee like checking out the Scottsdale area.\n\nThe bed are OK I can't say its the best night sleep, but they do serve their purpose. The rooms could be nicer, our bathtub had slow drain so I was standing in dirty water while taking a shower.\n\nThis last stay I did order room service and they said it would take 45 mins, but it took more then an hour for it to get to me and all I ordered was a salad. They were doing some kind of construction with some of the rooms, so it was noisy during the mid day.", "type": "review", "business_id": "CD-2yHTSObgvAhW-pYHfMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jGmnd3qIBPezcuxG0qyD7w", "review_id": "Qvg_zRg_ttyA47MCM7MIdg", "stars": 4, "date": "2012-08-03", "text": "i used to come here all the time with my family, right after work we'd head over here for some delicious pizza and AMAZING salad! Pablo Picasso Mexico Salad. was sent from heaven, one thing. I haven't actually had it since I became vegetarian a couple months ago, but the salad without chicken would not be a miss!! You may be curious to know why we haven't been here in so long, well just ONCE we saw a cockroach on the wall that grossed us out, and that's why this place loses a star. Other than that, I recommend it without a doubt. Thin crust pizza is way better than the deep dish here!", "type": "review", "business_id": "ML1RJdeZ7bbfMrHvJ7m99A"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "5OLKI0NgQrrL-v0PB1dIlQ", "review_id": "dRzhhyi1e34GiHuV6Mvkyg", "stars": 1, "date": "2009-03-13", "text": "I would not recommend this place to anyone. I went there looking for a gift. I received no help. The girl was too busy helping the wives of the baseball players. I guess you need a large bank account to receive help in this store. Also, they did not have a very good selection of items. I think I will take my business to other stores who care about their customers.", "type": "review", "business_id": "btyYig6bD3BOoal_yasnDA"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "TxOR39w0Mlbd4h1siXyb_w", "review_id": "3cnyJU2lCKG4qc3zatEslA", "stars": 5, "date": "2010-03-16", "text": "I took my computer to RedSeven recently when my friends were calling and telling me I had a nasty virus that was sending out gobs of email every fifteen mins. I had no idea my computer was infected. I was hesitant to do so because I needed my computer to do some work. No worries, the fellas over at RedSeven hooked me up with a loaner. I was able to get online and get my work done and get my home PC back the next day without missing a beat. I was going to take my computer to one of those BIG BOX store repair places. I am so glad I didnt. A friend of mine took their PC there and when it came back all of their family pictures, music and email was gone. I will only be using RedSeven in the future and I suggest you do the same.", "type": "review", "business_id": "ShUSw5yD7EFWBOiq_CuHMQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "X8y2ujS7YxyjFVH13eZsPw", "stars": 5, "date": "2008-09-11", "text": "I have to admit, I normally don't like Chinese food. In fact, it's just about the only style of food I haven't fallen in love with at some point in my life. This is a real problem when you live with someone that would die for Chinese food at all hours of the day/night. \n\nI figured out why I never liked Chinese food when I first ate at Asian Cafe Express. It's because everything I've had has been Americanized Chinese Food!!! It was like an epiphany and seriously music to my tastebuds when I actually found Chinese food I not only liked, I LOVED! Having authentic Chinese food changed my opinion completely about this cuisine.\n\nI have to agree with the others... save yourself the time and skip the first few pages. Go straight to the back of the menu to find authentic Hong Kong Style fare. Holy mother of god, everything I've tried has been outstanding and each time I leave saying it was the best meal I've tried thus far. \n\nEverything is extremely cheap and the service is superb. The wait staff are always very helpful and knowledgeable about their food. They'll be quick to recommend something if you're having a hard time deciding. Just ask!", "type": "review", "business_id": "XMRj865sZBPWCI7tx0uBWw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "jZL3u6BzkJWFqT3SPIokyA", "review_id": "Z7okSCJloti8ri0pjohQgA", "stars": 4, "date": "2010-08-27", "text": "Finally tried the only \"real\" Chinese food restaurant in Maricopa. Played it safe with Sweet & Sour Chicken, Crab Rangoon, and Pork Fried Rice. With delivery, it was only $14 +tip. \n\nThe fried rice was great, it was a little more of the \"East Coast\" style I grew up with, dark w/ lots of juicy nuggets of roast pork. The chicken was good, but then again, it was a (VERY) safe choice, next time I'll try one of the \"Chef's Specialties\". Crab Rangoon was good, unlike Panda Express, there was crab (krab?) in the cream cheese. \n\nIf you're in Maricopa and craving Chinese, don't go to Panda Express, definitely give Great Wall a try, it's in the same plaza as Panda and if your party is 2 or more, you'll save yourself some money!", "type": "review", "business_id": "-mLcpJYfX8tw8LR9bq018w"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "Bza-l75OiKcMRmTYILpyfQ", "review_id": "8tZ01qB3MQyPaB31Kom6lQ", "stars": 5, "date": "2010-05-28", "text": "Like Sex or Tobacco? Hells yeah!!!! were not looking for vanilla yes' here, this place pulls out all the stops\n\nIf Ichi Yakaguru the new york club promoter and 9yo Japanese pimp needed anything, it could be found here.\n\nThe best selection of DVD's and printed material i have come by in awhile... lots of Toys so much stuff a lot of it is hung above the head, so look up.\n\nLingerie, Tobacco, Human Fire Hydrants, Hobos with Soap Sud Beards", "type": "review", "business_id": "gCnyFIE2jYeKCfQx42y4Dg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "icxJ-bAxZuhyEbOtmHdM9Q", "review_id": "ClSI3WMwwDutHeCF0qx2bA", "stars": 4, "date": "2009-12-23", "text": "The wifey and I went here last night and it was pretty good. I had some pork dish that was amazing and she had filet mignon tacos that were delicious as well. I really should have taken better note of the exact dish name I had but alas... I did not. \nAnyways, great atmosphere, friendly staff and really good food. The only reason I'm not giving them a 5 is because they charge for chips and salsa and their salsa was pretty weak. By weak I mean not spicy. Come on, put some peppers in there!", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sbNbxmGNodDJukgSXBFD4Q", "review_id": "-bhGum5dFkrNib8qiRWmnQ", "stars": 3, "date": "2011-07-08", "text": "We'd wanted to try this place for a while. We went there for lunch and had a cheeseburger, fries, and coke. Everything is ala carte which makes it a little pricy (came to nearly $9). The burgers are OK, not bad, but not as big or as fantastic as I'd hoped. The fries were really good though...extra crispy. The atmosphere is really relaxed and friendly. We had our 9 month old and there weren't any high chairs that we could see, so it made it hard for us to eat (one had to hold her the whole time). Overall it was a nice place but not as great as I'd expected. We will try it for breakfast though sometime because the ratings on that seem to be pretty good.", "type": "review", "business_id": "AoO0FJyUm01lmIJJTcPWEQ"} +{"votes": {"funny": 2, "useful": 4, "cool": 5}, "user_id": "44R1syuo0et8sLtRnCojkw", "review_id": "Z_8cjP-Dvo2WUQ1qlr5yPA", "stars": 4, "date": "2013-01-02", "text": "I went here with my parents on a super crowded Friday evening. We had to wait about 40 min, but decided to order a couple of drinks while we waited. Once we finally got seated, I decided to order the Chicken Madeira, which is their most popular dish. It was sooo good! It was a huge portion, but I somehow managed to finish it. I can see why everyone loves it! My dad ordered the Ahi and had to get them cook it more b/c it was practically raw and cold. It was probably supposed to be like that, but he didn't know what he was getting himself into. They took extra care in getting this done - both our waiter and the manager came over to make sure they were on the same page as my dad before cooking it more thoroughly. They also brought my dad a complimentary house salad while he waited. We decided to end our meals by all splitting a piece of their Peanut Butter Cup cheesecake. OMG. So good. Most importantly, we found that the service at this location was really good! Our waiter was funny, and rolled with the punches...nothing seemed to phase him.", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3x1MykIUtUJjIUk-pji2WQ", "review_id": "GZ7jHYxZh0zC9wooSyhKfw", "stars": 5, "date": "2012-01-03", "text": "Been here twice now and wish I could say more. The food is delicious, the set up is really relaxing and service is great. A great place to take an out of town guest. Happy hour menu has these amazing tofu tacos that I highly recommend. My boyfriend had the Pork tacos which he said were also delish. Definitely check this place out!!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "JZtiU9J8T-IYJI_OvfbQBw", "stars": 5, "date": "2009-08-21", "text": "Mims Burger & Mexican Food was revealed to me by my sister and sometimes when I think about it (even when I JUST ate), my stomach growls. The restaurant itself just SMELLS GOOD sitting there and waiting for your food to arrive.\n\nThe strange name would sort of, you know, ordinarily turn me off from trying the place because I think when restaurants serve this AND this they usually just serve two wildly different forms of food, both of which suck. Mims serves legitimately good Mexican food, burgers, hotdogs and everything else.\n\nEven if you're NOT in the area, it's worth going a bit out of your way for it.\n\nFive stars. Places don't get much better.", "type": "review", "business_id": "-b_VjHZmA7-8LVWp6z36VA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NwHMMfnsiVSW_TKSRf4prg", "review_id": "mC1Y2H2IfqcJBm_V8DTYTg", "stars": 1, "date": "2012-09-05", "text": "I was searching for a unique item to give as a Thank You gift and I stopped by Practical Art over the Labor Day weekend after viewing some items on their website. I was extremely under underwhelmed by the service I received and do not plan on returning. \n\nWhen I arrived the young woman behind the counter was having a personal conversation with an acquaintance. Besides the employee and her conversation buddy the store was empty. I spent about ten minutes looking around and the young woman did not have the common courtesy to acknowledge me with a simple \"Hello\", even as I was viewing items directly in front of the counter. When I was leaving the store she did break long enough to say \"Bye\".\n\nI believe it is very important to support local business but I will not spend my money here. I did find several items I wanted to buy and made note of the artist. I have done the extra leg work to reach out to them to find out how to purchase their items through other channels. I do not feel they should miss a sale due to the sub par customer service at this location.", "type": "review", "business_id": "yoLlJDTXafbS3PG-lee-dg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "1L_NAI3Q2dLL_Xl1jxSe2Q", "stars": 2, "date": "2012-12-12", "text": "Vegan Mexican with a urban funk to it. Should it work? I dont know. Did it work? Not really.\n\nWe walked in, it was empty quiet and after 20 seconds a surprised guy walked in and greets us. We take out seat on the purple booths and browse the menu while we sip watermelon water. Things got a bit stranger from there.\n\nThe menu had many interesting options, but each one we tried to order we found out that the didn't have chips, mushrooms or chorizo, key ingredients in many of the things on the menu. We had to just ask what can we order.\n\nWe ordered and waited, as the sun set it became quite dark as no one had turned on the lights. Another customer walked in but the waiter was busy working as a cook. It became even darker as we waited. The other customer finally was given a menu and the lights were turned on, however it was still pretty dark. \n\nOur tacos came, they were a bit small we each had 2.5 tacos I assume the 1/2 a taco to make up for the lack of chips on the side.\n\nThe tacos them selves were good, nice flavors crunch etc. for $8-$9 they should be good. However the other problem sunk in as we were leaving, we were still hungry and after $21 and 45 min we were less than happy.\n\nThe next day they had posted a photo to Facebook, not about their food, or a special but look how how our waiter/cook is. \n\nSo I guess if you want to look at toned male waiter this is your spot. Otherwise there are many kinks that need to be worked out.", "type": "review", "business_id": "-UT6IHfVW_2yzz1bf8WI5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GPMNR6WVfSE2qOwX0ZcVGw", "review_id": "MCxKinv4Y33A4ZKjjSXYHQ", "stars": 1, "date": "2012-02-16", "text": "Went into the location and waited minutes for someone to appear to ask us for our order and even after we said Hello they didn't acknowledge us. Had to repeat order several times. It was very frustrating how nothing seemed to be in stock, no philly cheese steak nor soup was available. I heard someone as I was leaving being told some type of bread wasn't available (which is actually understandable, condiments and bread sometimes run out or need to be retrieved/baked). \n\nFelt like we were being rushed and just didn't feel like a clean place. Will not go back.", "type": "review", "business_id": "NtizlEdtnJX0tteMdZ-6tw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "D9PU9OmIrCvolQWDxBRYlQ", "review_id": "6AwmuNUKyuOnX_mlINhWdA", "stars": 4, "date": "2010-06-03", "text": "Hubs booked this kitschy place for us because, well - the other options in the-middle-of-nowhere-AZ were very slim and besides, who doesn't want to stay in motel called Space Age Lodge? \n\nAnd man! So surprised! I thought we'd be staying in a very outdated motel room. I mean let's face it, most motels that claim \"newly remodeled\" usually just put in a new tv. But when we opened the door we found new furniture, a very plush bed, new lighting, flat screen tv and a rather large and new \"mini\" fridge. It was really nice - compared to other Best Western's I've visited. \n\nThe train is right behind the hotel, but to be honest, the A/C was cranking the entire time we were there (Arizona in June) so we could hardly hear it. \n\nAnd to top it off - we got free breakfast! Not just a continental one either. We had our pick of any breakfast entree and beverage. Came out to a little over $20 of free food! Basically made the room rate $60. \n\nYeah for the UFO place!!!", "type": "review", "business_id": "sI1bvFfUCeFVz1twmLJcAQ"} +{"votes": {"funny": 5, "useful": 4, "cool": 4}, "user_id": "-Dof9NwAoQwRM-GVPZk5zw", "review_id": "OIp5gapOlB6B9EBCMgUf_A", "stars": 4, "date": "2008-04-09", "text": "We've got another first timer here...!\n\nI am just as shocked as the next person that after many years in Seattle, I had never had Bubble Tea. Gasp! You can get it almost as readily as Starbucks. I learned it's also called Boba and maybe one other name. It's all the same to me. Same-same.\n\nI had my first boba initiation at the recent Office Hours with Gabi. I was completely overwhelmed by the options presented to me: what type of chewies (for the record, that term just doesn't seem right), base drink, optional flavorings, etc. It was a lot for this gal to handle. Luckily, Alica B. was at my side leading me down the boba path. \n\nShe helped me pick out a concoction of Thai iced tea and regular boba. Gotta start with the original boba, right? She ended up with a coffee drink with coffee jellies. I feel like I'm now \"in the know\" because she asked for the coffee jellies and even though they weren't on the menu, they indeed had them. That's a little insider's tip from me to you. Wink wink. She was so excited I thought she was going to consider this woman the Patron Saint of Boba and commence worship on the spot.\n\nI was surprised to find how incredibly filling boba is. I wasn't hungry for hours! Overall, it was good. I don't see myself craving boba, but if someone wants to go, then I'm in. I'll check out the jellies in my next go round. If the craving is boba, I would definitely recommend this place!", "type": "review", "business_id": "Oz1w_3Ck8lalmtxPcQMOIA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VgdDYz0-i1kDszfEu5nFdg", "review_id": "YAyei_j3SvGQLCtzJjriDw", "stars": 4, "date": "2012-07-17", "text": "I went here with my book club and they definitely gave us lots to roar about. Their Happy Hour is only good in their bar (which was fully packed) or out on their patio. Their patio is fabulous! Who would have thought a patio in Arizona in July could be so cool and welcoming. Great atmosphere. The waiter was very accommodating about all of us arriving at different times and peppering him with various drink and food orders. I had the most delicious Huckleberry frozen margarita. Perfectly smooth (out of a machine to be that consistent). It was basically a plain lime margarita with a generous drizzle of huckleberry sauce on it. The huckleberry sauce was slightly tart (not syrupy or sweet) but delicious! It went down very smooth. I had the fish tacos which were messy and the salsa verde was finger licking good. I am amazed that, during the summer, they have Happy Hour until 10 pm!!! Woohoo! Overall, a delightful experience and I will go back.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1iJ0AwkYqDKHYMdUVarN0g", "review_id": "Cts3HvXeGnPfYlSz2PBL0g", "stars": 3, "date": "2011-04-04", "text": "Patio seating is lovely!", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1qw1NflQJvb0WhKn-_hwDQ", "review_id": "cM7EgnZayKb7F92-NOv27A", "stars": 5, "date": "2011-05-13", "text": "Dear Lo-Lo's why do you have to be so damn good!? I really wish that when I had you last weekend you had been dry and tasteless so that I wouldn't have to come back and eat Fried Chicken and Waffles again... but now you have made me an addict to your delicious mouth-watering juicy breasts & thighs... Woah where is this going?! LOL Thank goodness you do takeout for now my husband will have to do his husbandly duty and pick me up a piece or two on his way home from work.... \n\nTruly wonderful... I never had waffles with fried chicken before and I'm not sure why I was so surprised at how great this pairing would be but I was... Great service, everyone was friendly and upbeat and seemed to actually enjoy working there which is definitely a PLUS! ;-) I love you Lo-lo's!", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "lbjnAe_px0NaNVx-sPqM_Q", "stars": 5, "date": "2012-01-12", "text": "I have completed this run (obviously not the 27th annual edition) 5 times now. The course is always the same - a bit hillier than other Papgo courses as it takes a right along the sidewalk behind the zoo, but the organization is always excellent. The t-shirt is another good draw to this event - a long sleeve shirt that changes color in the sun. There is always food at the end, a raffle, and a great crowd. One of the best events on the racing calendar each year and an excellent way to start the new year off right!", "type": "review", "business_id": "eevmoukqJtU2l9tZmm-HKg"} +{"votes": {"funny": 3, "useful": 2, "cool": 3}, "user_id": "qRo9gHN5OiV1-peDuhCh-g", "review_id": "c6olUYIIH7OMHsux2Wi4oQ", "stars": 5, "date": "2011-07-24", "text": "This is my absolute favorite restaurant in Phoenix. This is where we go to celebrate and to enjoy a night out with amazing food and great service. Noca is an experience. I wouldn't recommend trying to quickly hit up a meal here before trying to catch a movie. I can't imagine trying to rush the experience!\n\nOn our most recent visit I immediately ordered my favorite cocktail- the Dirty Bird. It's so perfectly crafted and smooth...plus there are bleu cheese stuffed olives. Sold! I felt a little bad because my fiance wanted to celebrate our new jobby-jobs with prosecco... my bad. Lay off me when there's bleu cheese stuffed olives and vodka involved mister!\n\nFirst up was the mixed salad. I love how it's not overloaded with cheese and candied fruit. It's the perfect balance of flavors. \n\nWe then had the lobster roll and it was absolutely heavenly. I really hated to share that but I needed to save room for the scallops. The scallops were so perfectly cooked and the plating was gorgeous. The flavors were outstanding- absolutely sublime. Ryan actually asked me if I remembered his name. I just smiled.", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "i-irTdF9JerNf0hG64EpEg", "review_id": "i9CY2KH6TIvyCgo-D4rJUw", "stars": 5, "date": "2012-06-26", "text": "I found this place based on Yelp reviews so I feel obligated to add one more 5 star review to the mix. I needed to get a chain fixed on my bike and was not looking to spend a ton of money or hours trying to fix it myself. So I stopped by and had them take a look at it. \n\nThey recommended a full tuneup to keep it in tip top shape and spent the time explaining and demonstrating why it is deserving of spending money beyond the chain repair. I ended up passing but didn't feel like they were trying to take advantage of me. Since it was close to closing time I left the bike with them overnight and got a call late in the morning the next day for pickup. It has been as good as new ever since. \n\nHaving my fair share of riding in the Valley of the Sun I'm sure I'll be back soon for some inter-tubes or a spare part for whatever craigslist bike I happen to be riding around at the time.\n\nProtip: Check out the unique bike artwork they have around the place. Also they have a small BMX (?) track in their \"backyard\" you can ride around and do jumps on anytime.", "type": "review", "business_id": "rRXGdtqUTBtczey1DGenEQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "CHnSp6logJJND0Tx86LTgA", "review_id": "CkqZTWY-qzWBsveljx21pw", "stars": 4, "date": "2008-12-11", "text": "I love Stax. They introduced me to the world of quinoa. Their quinoa black bean burger is sensational. I do the \"Build your own burger\" and get garlic aioli and the house ketchup. I am a big fan of their sweet potato fries, as well. The service has always been great and the prices are reasonable. This is a good alternative to Delux, if you are in downtown Scottsdale.", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ec0_hyghnX9jZQW20OYeoA", "review_id": "iIB0N9XneiSfuel6RYvfWQ", "stars": 4, "date": "2009-10-29", "text": "The staff was great, from the owner Bruce meeting you at the door to the bartender Sharon the friendliness of the staff stuck out. \n\nI had the T.T. Burger which had cheddar, sauteed onions and remoulade. The burger was excellent, and the coleslaw was great. I am not a slaw fan, but this slaw with Bruce's mom recipe that included vinaigrette was wonderful. My only complaint may have been the fries were slightly overcooked for my taste, but I would go there again.", "type": "review", "business_id": "1f_DXcxpAKfILKK6cDPLxQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "Gu_tCn0lDuYBtd1NB1-Szw", "review_id": "vtbbkfMP_0D5rXz2Fz_UJA", "stars": 5, "date": "2011-03-03", "text": "I had such a great time at this place both times i went. The first visit was a sushi dinner extravaganza with my sister. The place was literally a 10 minute walk from my childhood home, where my parents still live, which was the first bonus for this place. Once i walked in my excitement grew. The place was small and intimate although a bit on the hot side. Our waitress spoke with a heavy japanese accent and she was very friendly. \n\nWe ordered a bunch of rolls, they have a fairly small selection of rolls which is fine with me, and some nigiri. They even had Uni! i dont know how it is in phoenix but i live in Salt Lake City and Uni is incredibly hard to find there for some unknown reason. Anyways the sushi was well prepared and tasted very fresh. Their yellowfin was just amazing!\n\nMy next visit was a lunch with my mother a few days later and we ate mostly non-sushi offerings which were also very good. I had yakisoba which was delicious and my mother had the bento box with teriyaki steak which was also fantastic. \n\nThis place is a real gem and for me personally the location is perfect.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "sdTdf5zwsPGDw4vBnKks-w", "review_id": "fnQ0l_XSIiDU7VGluH0nxA", "stars": 3, "date": "2010-01-01", "text": "I came out here Halloween to party, since everything place on Mill had a line we just picked this one place to party for the night. Drinks are cheap, I was shocked at how low the bill was at the end of the night after buying rounds of drinks until our party got their buzz on, but maybe its just me used to Hollywood prices. T_T Out in LA you get used to paying for parking, cover and then exorbitant prices for drinks. \n\nI love their signature cherry vodka drink, its tasty! Its kinda like a Shirley Temple?! Service at the bar was quick for the amount of people there. Plenty of room for dancing which is always a plus.", "type": "review", "business_id": "5U1ArcV-HXR5UlkdQx1a9A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "N_VjIz6pErO-9jKNOWVouQ", "stars": 4, "date": "2011-08-02", "text": "Decent farmers market with several friendly vendors.\n\nLook for the jalopeno peanut brittle, the incredible maccaroons, sweet republic ice cream and crepes from torched goodness! lots of yumminess and it is dog-friendly!", "type": "review", "business_id": "Sb1_G-DMy26YHafNxxhVrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "rL3dPeKDTybG_ct9OCXGAA", "review_id": "eKL1a_O8CnliR4wQfbktIA", "stars": 4, "date": "2012-05-15", "text": "When you go to a place called \"Fajitas\" you order the dang namesake! I've had all the different fajitas they offer and I love all them, my favorite is the shrimp it's lightly seasoned and grilled to perfection (side note: order the onions and pepper caramelized)! The tortillas are strong enough to fold without tearing yet still have a nice flavor. The toppings are always bright and fresh, the guacamole is legit. My coworker has talked me into always ordering a side of Queso with the free chips and salsa. Albeit the restaurant is old but the staff is super friendly and detail oriented. And yes, no matter what you order you will smell like fajitas so make sure you don't have anywhere special to go after eating here.", "type": "review", "business_id": "TgxDGx7L_JICWbuBUCGVqw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jdoGEEy5s-5L1O_lNzEi2g", "review_id": "VUj3qlPdSXxKL6CUOgELKg", "stars": 3, "date": "2009-12-08", "text": "I had the Soppressata with Aged Provolone & Roasted Peppers. It was a solid sandwich overall. The quality of ingredients was pretty good, but the only part that gets me is the price. $8 + tax? Wow all that \"supply and demand\" stuff I learned in Econ class wasn't a joke. Worth trying once, but I don't think this is a place I'll be grabbing lunch at on a regular basis.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "34gJ_KlP3RM6jotNT6TcDQ", "review_id": "qeNauCfsJXaeEnGtsb78vA", "stars": 4, "date": "2012-05-28", "text": "Upper Crust is like Grimaldi's on steroids. The two places have nearly identical decor and the pizza is extremely similar. Upper Crust uses a little more cheese which is nice, but they also use cornmeal on the crust which I am not crazy about. The wings are huge and delicious, especially with the honey BBQ sauce. The meatballs are nothing special (with or without the mozzarella cheese), but Stephanie H would disagree. Happy hour is Monday-Friday 4pm to 7pm and on Wednesdays they offer half off on bottles of wine. \n\nOverall, it is a very good pizza and I plan on returning. Next time I'll be giving that pizza cookie a try. I really liked Upper Crust, but Grimaldi's in Old Town is still my favorite for traditional NY style thin crust pizza.", "type": "review", "business_id": "Pg8OPh1D2ws0xO-I-8ppoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MfZszvOQNY_xdbA9ruz_zQ", "review_id": "gw-uSjSPb4w_i3-x5fCRjA", "stars": 5, "date": "2011-06-25", "text": "Wedge salad is delish! Love the fact that it's organic, as well as the fact that the pizza dough is gluten-free...sure beats having my husband sneeze for an hour, after eating \"regular\" pizza. I will say, the pizza is pretty good...and this is coming from a girl from Chicago!", "type": "review", "business_id": "Zruvunhqw7cuyuoe7g09Gw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "rk-QLuEgeDYJAmTHNOl13Q", "review_id": "udgc9PxxD-U-ne-drBFy4Q", "stars": 4, "date": "2011-08-01", "text": "From the moment you enter this place you get the feeling that you are entering some swanky underground restaurant, the lighting is dark and the decor is mysterious!! I am in love with the fashionable staff who come to work wearing what they want as well as the chef in the back with the 12 inch mohawk. The drink menu is stocked with exciting choices such as \"In Between the Sheets\" and the \"Dirty School Girl\"! Not your average bar! The BEST thing on the menu in my opinion is the House Made Fettuccine. Honestly the best homemade meat sauce ever and I am hard to please considering I was raised on Bolognese sauce! A great place to take a date whether it be your first or 100th this place will never disappoint.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BaHlhZ4dUO1AUY87ZXY6Tg", "review_id": "q0etOH84ZVPbxjYggae-1A", "stars": 5, "date": "2011-06-06", "text": "Parents, please let ur children explore on their own! I c parents following their kids around !", "type": "review", "business_id": "jdtc9AARnZLOi38Qvkdm7Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "dOhJ6mf09CTJciqW0lbKug", "review_id": "wt87CmXPtlwRdItR74_5Gw", "stars": 2, "date": "2012-12-12", "text": "It's ok, good for a quick bite. I don't understand the almost cult like following.\nMade a mistake and had the shake instead of pop and was sick for hours.\nStaff was very friendly, but they needed someone dedicated to keeping the place clean.", "type": "review", "business_id": "g9jX2oXQr8zrOQgynYnYjQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "7RXtu3n5OfNsgmRT3b2x7Q", "review_id": "PkOP32jQaFmDPhzN2igy2Q", "stars": 2, "date": "2012-06-12", "text": "Good service. The waitress was friendly. but the food was just icky and the Place smelled bad! like sewage pipes. I had a glass of wine. there was no way I was going to order a mixed drink while she was tearing the bar down. \nI didnt feel good after eating the food. I had a coupon so it made the total bill cheap. But i would have walked out if I had to pay full price because The atmosphere they boast should provide better food.\n\nNo Not good dont go", "type": "review", "business_id": "QzXFdjIbFRGhzL83goPPLA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "3kBRJk0uWE4HQ9A0Yj2xYw", "review_id": "rEyg5tdoh-v50sR13KGGmA", "stars": 5, "date": "2012-04-30", "text": "Originally came by to get a watering system for our chickens and ended up buying something for every member of our furry family! They have everything here for cats, dogs, small birds, rabbits, poultry, horses and more! The customer service was excellent, we were even given free samples for our chickens without even asking and were given informational sheets about some awesome products we ended up buying as well. Both of the people working were concerned with taking their time to help us, not about making a sale, and will even special order some products for us if ever needed. We don't feed our dogs dry food anymore (they now eat raw instead), but when we did, these are the premium/healthiest brands we were buying at a much higher cost at other retailers.\n\nThe prices are low, the hours are convenient, the customer service was great, the products are healthy, and the selection was large for how small the shop is, what more could you ask for? Great first visit and we will definitely be coming back again!", "type": "review", "business_id": "Lc3-XLmobyijQpOxHdEPFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3Zi1udoY2iT9s8Q3X6tgZQ", "review_id": "gtpzXg4DIyqpAwcL_E0atw", "stars": 4, "date": "2011-12-12", "text": "Combination chicken fast food joint and gas station? Yessss! It's so convenient when I need to fill my car and my stomach! Joking aside this Popeye's isn't bad. Pretty much what you expect if you like their chicken. All of the workers seem really nice here too, they normally let you know if they have any specials but I would be sure to ask them just in case. And while you're waiting for your food you can just pop in the gas station store (they're connected). If not, they also have a drive-thru.", "type": "review", "business_id": "HFj8LRDtS62uGAj-J_eNOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zPZolvtHRjv6xAXl_9reXA", "review_id": "Jkvu5OwutuOWyLD6qKHv5A", "stars": 4, "date": "2006-12-04", "text": "My girlfriend and I had dinner here with my brother and his wife this past Saturday. It was packed outside so we had to sit outside which was fine. If anything it got a little too warm under the heat lamps, but the atmosphere was fine.\n\nFood was very tasty across the board. We had steak and organic chicken on our side of the table both of which were cooked exactly how we wanted them. Juicy and tender. \n\nService was excellent. Recommended.", "type": "review", "business_id": "LfKPiwth-lGmCKTxlDoV9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9iK_an2jNnbaH1GCzPQKUA", "review_id": "o5yxmUgBXhvHfNCvbBxPuA", "stars": 3, "date": "2012-05-27", "text": "Great sushi, not so great on speed. Cute place, friendly staff. Try the Vegie Goyza, it is great. Sushi rolls are a bit large for one bite. Asked if we wanted a Tea refill as we were leaving. Huh?", "type": "review", "business_id": "gUt-pPUpOVVhaCFC8-E4yQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kG0XNpPjIihErYXINk7OYA", "review_id": "iXT5dAq4jV0o3hcmh2Ayug", "stars": 4, "date": "2011-10-06", "text": "This is my favorite of the Yard House restaurants and not just because it is on my side of town. The food always seems to be done just right and my husband and his sister enjoy the beer. Would have given one more star but my husband has yet to find any food item that makes him want to go here over some other restaurant. Since I just can't seem to get enough of the grilled cheese and tomato bisque soup it is very disappointing that he doesn't want to go.", "type": "review", "business_id": "cBpJIOrVXotDI0XAZH_k0g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Nj4hLqsNh0vpIt0-HwakHA", "review_id": "pyHsNEiyma9a020tXJZCDA", "stars": 4, "date": "2011-11-19", "text": "So I am not usually in the Tempe area, but a friend told me about this place. So I though I would go try it out. I got a Grande Latte that was around $4. Not a bad price. But what made it worth it was that I guess this Friday I went was a Free Shot Friday. So I got an extra Espresso shot in my latte making it a triple for $4 bucks...no that is a deal. Not sure if they always have the promotion on Fridays. But it sure did make my morning a little better.\n\nTheir menu is very easy to read and give those no too educated in the was of coffee a good description of what each drink is and how it is made.\n\nThe had a ton of great looking pastries even though I didn't sample any. Cakes, Eclairs, Scones, and I think even what looked like cheesecake. \n\nThe decor was very interesting. An old fashion coffee house meets a gypsy vibe. I think they have Wifi too. I saw a few people on there computers.\n\nThe service was a little slow I think. Felt like I was waiting for my drink for 10 minutes and the place was not really that busy. This was probably because of the guy ahead of me when I walked in who had about 7 different modifications to his drink. I have worked in a coffee place and those people are kind of annoying. So I will let them slide on the time of service.\n\nOverall a great experience. Would have been 3 stars, but when you get something for free, in my book that is an automatically another star.", "type": "review", "business_id": "dewq6aevfoNFvJBqM7PG5A"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "BDQjq30H2gFncFvaapvm6A", "review_id": "JmzVCdRVnN0b4PQd87rMqw", "stars": 2, "date": "2011-08-02", "text": "I've known my way around Sky Harbor Airport since I was 4 years old and Terminal 1 was an actual terminal. In the time since then, their attempts to improve the airport, transportation and parking, and terminals have made it extremely confusing. Get in the wrong lane and you'll end up in the parking garage, when all you wanted was to drop off someone at the Departures curb. \n\nTerminal 2 remains the most accessible, with a parking lot located across the street and few airlines stationed there. Because only a couple airlines now use this terminal, security is a breeze. However, it's the oldest terminal, smells bad (like rotten pizza) and doesn't appear clean. \n\nTerminal 3 a little more of a hassle, although they have a parking garage attached to the terminal allowing you to enter any level through the elevator. More airlines use this terminal and it's much smaller than Terminal 4, making it easier to navigate.\n\nOh, Terminal 4. You're so nice, new and clean. You have access to great restaurants like Flo's Shanghai Cafe, Einstein's, Quizno's and more. I love Taberna del Tequila for a drink just prior to my flight inside security access (I don't like to fly, I prefer a bloody mary prior to boarding). You have tons of shops from Borders Books to local AZ tourist junk. I would like to love you, but you are just a mess. It's way to difficult to navigate your lanes to get where you're going, pick up and drop off is dangerous due to the people who pull away from the curb into lanes without looking, and security is painful- not only is there always a LONG line, but TSA agents regularly yell at people to \"pay attention!\" I dread flying out of Terminal 4 because I have to leave extra early for all the BS.\n\nThere are much easier airports to navigate and use, but we're stuck with Sky Harbor. I can only hope the light rail access once complete will help in making it a more user friendly airport.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "HZ3ItZ23xZHqjUjRIdPi7Q", "review_id": "H_3MSr25x4aGU9cFhlMHTw", "stars": 4, "date": "2010-03-25", "text": "Always there and (almost) always reliable, Seamus McCaffrey's is still my favorite place to grab a beer downtown. Last Friday night, I convinced a couple of friends that we ought to go check out the newly burgeoning night life in downtown Phoenix, since they had both moved away in recent years. So after being thoroughly un-wowed by the Roosevelt row area, we decided to head back to our favorite old standby, Seamus.\n\nMy only complaint was an out-of-order men's room, which gets a pass for being in a known old building and for the bouncer explaining our other options politely and immediately. After all, what's an Irish pub without a pisser? Thankfully, still a pretty good Irish pub in this case.", "type": "review", "business_id": "-gefwOTDqW9HWGDvWBPSMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "yz_j8mA3pnkdWkZ6nimBwA", "review_id": "bi1TCH_RAg1Lt2bIGXcVFQ", "stars": 2, "date": "2011-04-19", "text": "With all the hype before this place even opened I epxected a whole lot better. There are so may flavors lacking in the basic tacos. The tamales are so generic and dry.\nThe place is nice and clean and the staff is friendly and the little salsa bar is a nice addition which I had to give this place 2 stars. If you want geat tacos go to Gallo Blanco or to Americas.", "type": "review", "business_id": "WYk91WPklqRWuk9z9DsPDw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "d9OpkgeZ2kxVoXfWlhJh3Q", "stars": 4, "date": "2009-02-20", "text": "I've always sorta had mixed feelings about this theater. On the one hand, there aren't a whole lot of options to see independent film in AZ besides this place and Camelview, so I've got thank Dan Harkins for those outlets. On the other hand, there are times when this theater plays the SAME movie for weeks. An examples of this was with What The Bleep Do We Know?. I hate it when this place does that, but it's nice to see films here that wouldn't normally get play at Camelview (ie. Che: Parts 1 & 2, Let The Right One In, etc.).\n\nIn all, this place is a bit like my own Cinema Paradiso because I have so many fond memories in this theater. There was a Pulp Fiction screening when I was in high school and I got to go to an advanced screening of Slumdog Millionaire and actually got to meet Danny Boyle when he showed up for a Q&A afterward. I just wish they had midnight screenings of classic/grindhouse/cult films like The New Beverly in LA.", "type": "review", "business_id": "Zu93JuSKbponnD3Mx5zpEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cc-NjTz637u7EtFd83dn_w", "review_id": "n79EcqmEPfFv78iDPrcs6g", "stars": 4, "date": "2010-02-23", "text": "Yummy food!!!! Period!!! Sandwiches are great!!! Customer service is great!!! I was at the counter while ordering, i was asking about the cake, they had on display and the guy gave me a free slice o cake cuz it was my first time there!! cool place, good food.", "type": "review", "business_id": "tpIU_ZvIfCfCp36IgghlHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IzAHGTkF41fhhZ8pRnGgww", "review_id": "23Jiy_H33Sk7maaaTLJV0Q", "stars": 3, "date": "2012-01-29", "text": "The food...delicious. The atmosphere...relaxing. The service...pretty spot-on. The pricing...ehhh, not my thing here. The only way I was able to eat here was because a family friend treated my family out. But if you're looking to spoil yourself or anyone you know, with food, this is the place to do it. \n\nI ordered the Chicken Romano (pan-seared with a blend of romano cheese & panko breadcrumbs, with lemon shallot butter, tomatoes, asparagus & yukon gold mashed potatoes). The chicken pan-seared with bread crumbs was great to eat, crispy on the outside and juicy on the inside.The asparagus... I've had better, but the yukon gold mashed potatoes were silky, buttery and made perfectly. They went well with the chicken romano.\n\nMy dad ordered the NY Strip, and they were kind of enough to cut it up for him since he was handicapped. They checked up on us frequently. THE ONLY THING I WOULD COMPLAIN ABOUT WAS THEY ACTUALLY CAME UP AND ASKED IF I WAS DONE (ALREADY GRABBING AT MY PLATE) WHEN THE FORK WAS STILL IN MY MOUTH BECAUSE APPARENTLY I WAS STILL EATING. Since that ruined my entire experience thus far, I just told them to take it.\n\nIn addition, the entire table got an order of the unlimited salad bar. The salad bar was great, but nothing like the choices offered at Souplantation. Also, because I ate the salad beforehand, I wasn't able to finish off the main entree I ordered. \n\nWill I be back? Probably not.", "type": "review", "business_id": "q-qjZDKcBdDRuIUxj7b97g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HavRojH3G8AlJchZXonaOg", "review_id": "37OUFjqDHZpGgqZAHgy4bA", "stars": 4, "date": "2012-08-27", "text": "Home made fresh noodles. Reminds me of San Francisco china town food.", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U6Uwhvf-HpigDGmQN6UVrQ", "review_id": "7LZ3ipwHjxbK36sB8XjytA", "stars": 5, "date": "2012-09-07", "text": "Everything I have tried here is awesome! You can't go wrong with your choices! Service is ok. Could be better. Not very personable!", "type": "review", "business_id": "ewZlgc22xN5NNQ1H7U6Y7g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "XMAqt8jG6GfrW5WuD5LNfA", "review_id": "iMEdCsxdwseu___7uDB_Ug", "stars": 2, "date": "2012-07-14", "text": "Food is OK - sometimes good - used to be great. The service is terrible and a 25 minute wait for lunch on Saturday at 1:00? Seriously? It seems the restaurant relies on takeout - hostess ignored folks waiting to get on the wait list (irony intended) to serve carryout customers - could the tips have an influence?\nWe were finally seated - had Shrimp Pad Thai and Red Chicken Curry - the curry was very good, but shrimp was overcooked and the dish tasted substantially different from last visit. The restaurant is incredibly loud, to the point of distracting. \nWe used to go here often, but will be eating at other places from now on when Saturday shopping.", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "ZiMCaIaUlBmVnNjREY0W6Q", "review_id": "nKuQxSWZQD-Jh4zQPnfcqw", "stars": 2, "date": "2012-05-02", "text": "I was here once. A reasonably sized girl broke her white plastic lawn chair and tumbled to the ground. I averted my gaze and tried to focus on my overpriced mediocre eggs benedict. My friend just laughed and laughed. I guess I should have ordered the mimosas, too.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "MmPOU8kbuwkE4NedXe-qZw", "review_id": "nnS89FMpIHz7NPjkvYHmug", "stars": 2, "date": "2008-05-27", "text": "Being a creature of habit anytime I want good sushi I go to Tokyo Lobby. Well, my group wanted to branch out and try something new so we decided on Sakana. Not a fan. And what's shocking to me is this place was packed! The restaurant opens at 5:30 on Saturday and we arrived at around 5:45 and were lucky to get the last open table. I don't get it...\n\nMessy rolls that all tasted the same. We ordered the tootsie roll and the crunch roll, both tasted similar, except of course for the crunchy captain crunch on top. Just a mushy mess, that was hard to eat. Bland tempura. No bueno. I did, however, have a very good tuna poke salad, but I would not go back just for that. \n\nIf you want good sushi on the west side, or the entire valley for that matter, say no to Sakana and yes to Tokyo Lobby.", "type": "review", "business_id": "gqLWBFxOKag8dXwVxEvTrg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TQKPQR8csbXmC-_-2XB0PA", "review_id": "rZbUfLjag57St_AXUXNEqw", "stars": 1, "date": "2012-04-01", "text": "If only I where rating this place based on their sushi I would give it 5 stars. But, I'm not rating it based on the food. It is purely based on the customer service in this establishment. Be warned; if you have a large party this is NOT the place to go. I've been in the restaurant industry for over 20 years and I have NEVER heard of a restaurant not splitting checks for large parties. So for an over 500.00 bill they will take 15+ different forms of payment but won't split up the check by individuals or couples. How does this make any sense. To make matters worse; they bring out the sushi and I quote \"family style\". Since when did sushi get served family style? Here is the problem. Sushi is expensive, not everyone at the table ate it and when served \"family style\" someone else may get what you ordered and you won't have a clue it even made it to the table. We spent over 40 minutes trying to figure out this bill, SERIOUSLY! When I asked the manager her generic and obviously well rehearsed response was \"this is our company policy, we do not split checks for large parties\". This is absurd. So not only did we have a heck of a time figuring out the bill, I'm pretty sure no one really knew who had what and if they had added random things to the bill. How could you know with that many people ordering???? I never received part of what I ordered yet it made it on that bill. So here we have to pay it regardless of what we may or may not have received? I understand that adding gratuity to a party this size is also common practice which I don't normally have a problem with but how about some EXCELLENT customer service in return. If policy is no separate checks, at least tell everyone as they order or as a group that this will occur. They said someone was told when the reservation was made. The reservation was made for 25 people! It would've taken 2 seconds to again relay this important piece of information. Worst experience ever!", "type": "review", "business_id": "G5SASWuL_CVxpgwXXGC4DA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BVx7_5ox_erPCm2Id3Ncmw", "review_id": "_0BGgf3grew5jfV9BW07qQ", "stars": 4, "date": "2010-07-05", "text": "Okay, so a group of us go out practically every Friday to the same old places for beer and food, but mostly for beer. So to break out of the norm, I was in search of a place with excellent beer and good food and somewhat close to home. So onto Yelp I go and came upon Boulders, and the reviews were pretty good and definitely worth checking out. So we all pack into the car and head over to Boulders. The parking is great, plenty of spaces to go around. You walk through the patio, not bad with all the misters, felt like I was in a rainforest, but very refreshing. So you walk a little further, watch the steps, and there's your bar. Very open, plenty of hightop tables and lots of TV's. The beer menu was plentiful. It should make everyone from the microbrewer to the coors drinker happy. I was pleased because they had plenty of vegetarian meals, or dishes you can substitute meat for veggies... and for you meat eaters out there, I was told the burgers were delicious and the waffle fries were soooo tasty. The staff was helpful and attentive as well. I would definitely add this into our Friday night rotation. If you're looking for microbrews, this is a place to check out. The atmostphere is kicking and just an all around good place to kick back.", "type": "review", "business_id": "-EctXOb3B7T177jGYUhjVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sljlQDKEhsHDt9Mx5B2b9A", "review_id": "2_PaDmpdqhdEK6dl7BM8MA", "stars": 5, "date": "2011-03-27", "text": "I went here on a Saturday night and sat outside listening to the band playing in the background. It was part of the Music Under the Stars, or whatever it called, very cool and fun though. BTW, I see a lot of people commenting on how loud it was, to all you yelpers, take that with a grain of salt, it's a pizza place near a large family residential area on a weekend, what do you expect, I guess it's an expectation thing. By no means is this going to be a quiet candlelit dinner for two. It's a classy, family oriented pizza place. \n\nWe ordered the caesar salad and small pepperoni pizza. Very well priced, and the pizza in my opinion tasted delicious. It seems like everybody has some weird opinion on how good pizza is, and I guess I have a weird opinion as well. Here goes...the size of the small, is not small it was more like a medium (value! winning!)(sorry lame Charlie Sheen pop culture reference) anyway, it had a faint sweet taste on it which i really like, the cheese was good, not too much sauce, and the pepperonis were very flavorful. They were the small kind and they were just great. The Salad was good, salad is salad, it's hard to mess that up. \n\nWe were helped by an awesome bartender/server named Chandler. Cool guy, really nice, he kept us entertained. \n\nWe'll be back I want to try some kind of meatlovers next time we go there.", "type": "review", "business_id": "x4L42igQPv4TFlqGR2Wthg"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "d8geeKYzPeGp8uSP8C6PTw", "review_id": "umlD45tB3DEHiKuVLDN_sA", "stars": 4, "date": "2008-07-27", "text": "Wow, I am surprised at the last review. I have found the food at Bada Boom Pasta Room to be excellent every time I have been there. I am in love with Mr. Pink's Pasta. It has a delightful vodka sauce, and you can also add proscuitto wrapped shrimp as well. They have a fantastic martini selection a well, and the decor it hip and fun. Did anyone say red velvet walls? Great place!", "type": "review", "business_id": "3yRq8DjiSt4lSPEonpSaLQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "liiYhDAP64C8uLyixBDWdg", "review_id": "ZBKtc84KW5q9DtscOB974w", "stars": 5, "date": "2012-01-16", "text": "There's a certain amazingness that comes from fresh made ice cream. It's soft, creamy, and not filled with high fructose corn syrup and preservatives to keep it together for months in a freezer. Growing up in Arizona, we always made homemade ice cream in the summer and if you've never experienced homemade ice cream, just go to Churn.\nI had the banana ice cream with caramel sauce on top. I can't say anything bad about it at all. If someone doesn't like their ice cream, it's because they've been subject to all the fakeness added to ice cream in the stores and national ice cream shop chains. \nThe shop has lots of toys and candy and knickknacks that will give you a sense of nostalgia. I'll tell you what sounds like the best day ever: riding my bike down Central on a beautiful Phoenix day... stopping in to Churn for an ice cream break (and then popping into one of the restaurants nearby for a cocktail).", "type": "review", "business_id": "tAmevVP8B7PiWxcJ0PlYVA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T5mD6ggC7fh48QgXR0LevA", "review_id": "rFe_1ZTVr4BEsJ5U_vSj-Q", "stars": 4, "date": "2010-01-31", "text": "I'm a Sprint customer so maybe I'm biased. I'll just say that upfront.\n\nI got another phone on my plan and had no problems. At all.\n\nOnce I told the salesperson that I lost my connection cable for my BB 8330, he gave me one free.\n\nScore.\n\nThough, minus one star for not being a repair store.", "type": "review", "business_id": "aIpqc26pFPyEglBrs0k7EA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Cj6tGJrLEdN35H9cR6b8Lw", "review_id": "3NeeZn65Gi-l6qeJWlrblQ", "stars": 4, "date": "2009-09-04", "text": "Before I shop at Whole Foods (which is on the same lot), I buy organic produce at TJ's because it tends to be much less expensive. \nAlso a fan of the delicious frozen gluten-free pancakes, the organic vegetable pizza (which you can microwave in a pinch), the gluten-free ginger cookies, the should-be-illegal-they're-so-delicious lemon madeleine cookies, and the canned cat food, which has a minimum of junk. Hubby also loves their frozen chocolate bananas. I just wish that all of the TJ's stores stocked more organics.", "type": "review", "business_id": "Dsvx2LEC8jk9nuGsg1Kqhg"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "9eY0M7voV1g_cm4ddI4OCw", "review_id": "PxQUaU25pQ1ybUjcv_JCZA", "stars": 3, "date": "2009-05-03", "text": "If you have ever eaten at an exceptional German restaurant, you will be ruined for life. Years ago, the Haus would have gotten 4 stars. But after being turned on to a little gem in Gibson City, IL called \"The Bayrn Stube\" my appreciation of fatty meat and spices stuffed in an intestine laid on a bed of sauerkraut and red cabbage has been forever changed. Haus just doesn't quite measure up. The cup of soup before the entree tasted like it came out of a can and the bread looked like the sheets of Hawaiian bread you buy at wally world. Probably the biggest turn off was when they brought out the brown mustard still in a plastic squeeze container. \nMy meal was the Nuernberger/Kassler combo for one, and I had enough left over for breakfast the next day. Their sausages seem to be of lesser quality than I would get at Sunflower and the red cabbage had some pork gristle in it. Not that I mind a little pork fat in my cabbage, but not chunks, and definitely not gristle. My friend ordered the Huehner (Chicken) Schnitzel, which had a very good flavor, it was the best part of either of our meals. They do have a nice selection of good beers on tap, no Aventinus though. \nIf the food was anything other than German, it would get 2 stars. It is nice to have somewhere to get a schnitzel when I'm in the area, but I wouldn't drive out of my way to eat here.", "type": "review", "business_id": "zOCdVUKUN3b-obT67Qjyww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GLwSntMlUtHUYCGFikHVHw", "review_id": "Ub_EVO5-TTNFlEsuOlHG4Q", "stars": 5, "date": "2012-04-11", "text": "Top notch. He is now my go to barber. Charged only $16 for cut and beard trim, but I throw him a tip on top of that for an exceptional cut. He will ask you questions throughout the cut to make sure you end up with the cut you came for. Can't go wrong with this guy. And what a cool place!", "type": "review", "business_id": "JrQuZeFYMOyO7pgt2QsS0Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jZK9oNsuWe4qtX5KBt6Dqw", "review_id": "p1zmTSim_CriGLngyDM2Ow", "stars": 5, "date": "2010-06-23", "text": "By far my favorite Mediterranean restaurant in Arizona! The service is always awesome, the place is always clean, and the environment is always welcoming and friendly. I love hole in the wall, family-owned restaurants because [at least the ones I have been to] there is always a sense of pride in their service and their food. I've been to this restaurant a few times and have loved everything I have tried. I like being able to taste flavor, not seasoning, and their Dolmeh appetizer is just that: a perfect medley of herbs, grape leaves, and rice. \n\nI usually order the #6 - Beef Kebab, but I have tried their #3 - Chicken and Gyros and #7 - Lamb Kebab. The meat, be it beef, chicken, lamb, or gyro, is always moist and tender. Like their meat, the grilled vegetables have a perfect blend of crispy and lightly seared on the outside, but juicy and steamed on the inside. The basmati rice is always thoroughly cooked and flavorful. The same goes for the Homous, Baba Ganoosh, and Yogurt Cucumber Dip. I highly recommend their house Combination Platter. The pitas are always warm and their homous and ganoosh have the perfect texture. \n\nTry to go around 5p to beat the dinner rush. The place is always packed on Saturday nights, so show up a little before regular dinner time if you want to ensure seating for your party!", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "RqypbpctRh-GW6y-rq5zlA", "stars": 5, "date": "2009-03-16", "text": "i just finished licking my fingers clean and almost ate the dressing-drenched paper that held my very first, and surely not last, lucky boy international burger.\n\ncrispy bun, tons of dressing, fresh lettuce, tomatoes, pickles and onions, and a perfectly tender, smokey burger. thick, perfectly salted, crunchy on the outside and soft and burning hot on the inside fries. thick and deliciously sweet chocolate and peanut butter shake.\n\ngone. in less than 5 minutes.\n\nplace closes early, so unfortunately there will be no drunk trips through the dangerously narrow drive thru.", "type": "review", "business_id": "lvpXyfTDF5WZnjzc36r5Wg"} +{"votes": {"funny": 4, "useful": 8, "cool": 7}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "ew3mLlCiwBalU01_2_eufg", "stars": 3, "date": "2009-10-19", "text": "These folks pour a DRINK for $3 on Saturdays! They have daily specials and the Saturday special is $3 SoCo or Three Olives. Saturdays also offer a turkey cheeseburger and fries for $5, but I didn't try it. You can see all their specials by hovering your cursor over the day of the week on their home page (http://www.16th.st/index.html)\n\nIt was NOT crowded when we cruised in for the Sun Devil game this past weekend. We were greeted by a guest who asked if we had a reservation and then hollered to the waitress who said there may be a wait. At least they have a sense of humor!\n\nThe advantage for us was we got to take our pick of the TV we wanted to view the game. There were two Texas Hold 'Em poker tables going (not my thing so I don't know specifics) and I saw pool tables in a separate area -- photos on the website make it look like there's shuffleboard too.\n\nDefinitely looking forward to going back. It was a great place to watch a game. I'll have to try the food next time and maybe they'll get a bump to 4 stars (although, I observed their nachos are real cheese nachos, and I'm a fake cheese nacho girl so I'm gonna have to pick another game day food!)", "type": "review", "business_id": "cXx-fHY11Se8rFHkkUeaUg"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "mU5GwCA4uiD0-RH1qt3jrQ", "review_id": "52CZjnpWg0Xm2xLNX66QCw", "stars": 4, "date": "2008-02-01", "text": "I told myself not to buy clothes at Macy's since I did not have that much room in my carry-on luggage. Darn you Macy's!! Why did you have a bazillion racks of clothes that was on sale!!! NooOOo.. I could not resist the temptation and bought 4 shirts for $60. I wanted to buy more too!! \n\nI have a love-hate relationship with this Macy's.", "type": "review", "business_id": "G2Re2E5Jkv_UF1xrenSsDg"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "NrRS56Dv52m2BND-9v1qWw", "review_id": "XylYT-qEexVQvi9kQayfcg", "stars": 5, "date": "2009-08-02", "text": "This is a GREAT place to eat! One of my favorite lunch stops as you can see if you follow my facebook photos \"Lunch With Stew\". My favorite thing there is the Buffalo Chicken Pizza. mmmmm, mmm. Kevin O'Donnell is from the Texas Hold'em family of final tables and occasionally will play the tour. Super great guy and he also has a super great restaurant and sports bar.", "type": "review", "business_id": "QVR7dsvBeg8xFt9B-vd1BA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tFyQbNbBQEyEc9oCr1pJUg", "review_id": "ghCbfrZmjCZ4ax-SM6S9ow", "stars": 5, "date": "2012-12-04", "text": "Amazing sandwhich joint. A must go place to eat!", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WhhKmQRrzAgyMiC7AoXB8g", "review_id": "2dAXW2v95-zXZiDmVbCgLQ", "stars": 4, "date": "2012-04-12", "text": "On one of my Scottsdale excursions recently i got taken to Delux by a friend who said they make, \"the best burger she has ever had.\" So obviously i had to put this to the test.We started with sweet potato fries which were served in a mini shopping cart which was entertaining. They were cooked to crisp perfection and lightly seasoned and still had the incredible sweet potato taste. I got to try the clasic delux burger itself and it was quite amazing, incredibly juicy and cooked just how i like it. We also got the lightly seasoned original fries as well which were just as good as the sweet potato ones. i also got to try the turkey burger which was also juicy and flavorful, along with the chicken panini which was incredibly tasty. it was a great lunch every one i was with enjoyed themselves and I am glad my friend recommended it.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Cz14fLzWMXg-7-oRpBGFag", "review_id": "mumqLJagsjP9TErFbRmMxw", "stars": 5, "date": "2011-07-26", "text": "5 stars all the way. \n\nLet me begin by saying that I'm a big fan of the products. The store is done in very warm tones and the drinks are incredibly aromatic and these 2 things combines seem to make all my stress melt away when I step in the door. \n\nI'm not a huge coffee fan, but I can order some of the coffee drinks here. I'm completely unable to drink the caramel frappuccino from Starbucks, but I can't get enough of the caramel ice blended from Coffee Bean & Tea Leaf.\n\nSo now that we've established that I love the product, we can move on to the real reason this place gets a 5 star review--the staff. I've never seen anything like it. If you come in 3-7 times someone will probably know your name and might even know your drink.\n\nLeila is the best at this. She knows peoples names, their drinks and if you come there often enough she even knows which car you drive. She'll see a regular customer's car pull up and she'll have the normal drink ready and waiting for them by the time they walk through the door. THAT is the epitome of customer service.", "type": "review", "business_id": "B-FG89Jw729_i5rfA7FT7A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9OiOuOhxnXZ3zcqFaIZiOg", "review_id": "TQ893vMDBwNwMeJpyBpB4A", "stars": 3, "date": "2011-10-31", "text": "ok experience, just got to a point I did not want my membership anymore and it was complicated to stop it all. I just did not like the autopay committment.", "type": "review", "business_id": "nw2YkHEjzSj-_0aIiKB7rA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4sIK_74UwkKU9YQXIfgCdg", "review_id": "m5JOM5okVoB7-CodGxytdg", "stars": 4, "date": "2012-12-31", "text": "Occasionally I just feel like going out for just basic breakfast, i come to this particular MacDonald's. It's a place to have a big breakfast and watch some of the interesting people that you now are regulars among others. It's always clean and the service pretty quick. it's by no means and exciting venue! is okay for what it is. I am not a big breakfast eater so it serves the purpose when I am in that particular mood.\n\nWhen I am traveling I often go to a MacDonald's for breakfast. I usually need to eat something and can count on pretty standard fare and a decent price. If it's just before catching a plane in the morning, a Greek meal that I might prefer first thing in the morning might not set well at takeoff as a big breakfast..", "type": "review", "business_id": "74NT13vpDleoNrkxQdEpsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "APLIPfq1Rf8QyhHHk2uAyA", "review_id": "0q2I70f7p5TGWSh1bGHk5g", "stars": 4, "date": "2007-05-18", "text": "As far as malls go - and I hate malls - this one is tolerable. Just speed past the food court to avoid a cluster you-know-what. \n\nIf you like upscale, this is your place. Me, I typically hit two to three stores and leave. But maybe that's just my shopping style.\n\nIf you have the cash to blow, the time to spend and the desire to shop, then this is your mall.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "hDlSSyDreM9xY4yQWPm54w", "review_id": "R0A19zt2GyhjGmVce3d_tw", "stars": 1, "date": "2008-04-14", "text": "Quick spot for a mall-made mayo-based California roll. This is where you go to learn how sushi can go wrong.\n\nYou've been hard at work doing swipe-and-sign. Perhaps you even dropped a thousand bucks at Neiman's on a worthless Jhane Barnes' sweater and some silk-lined Zanella slacks or three thousand on a whats-left-of-last-season's-collection of Brioni blazer. Whatever your fancy, you're toting a wrist full of roped, glossy, shooshing-sounding bags with tissue paper sticking out the tops. You just want a break and some cool refreshing sushi.\n\nIt's OK, but beware. Unagi and other \"hot\" items have a \"beep-beep beep-beep\" before they get to you. California and spicy tuna rolls come real quick -- 'cause they come from a vat of mayonnaise. Rice is not right either. Stick to tuna and salmon sashimi and miso soup.\n\nIf head chef Rick is there (think Kyoto of Empire at 24th and Camelback, then Ichi Ban, University off McClintock), ask him to make you a Fat Bob on Acid, for good ol' times' sake. Or just go to Starbucks, tide yourself over, and find a real sushi restaurant.\n\nAnd about the Brioni... Don't sweat the buyer's remorse. It'll make a great tax deduction to Florence's.", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FBE0gDdN4fZH-6uo-mWgPQ", "review_id": "0aa3LhWitRTTGuzUhdcwzw", "stars": 5, "date": "2012-10-20", "text": "Stay in the courtyard recently and have no complaints at all!! RIght when I entered the place , the staff greeted us and they were all very nice and helpful with everything. Although i only stayed there for 1 night , i thought the rooms were very well kept and the bed was amazing! The first thing i do when i check into the room is look at the bed and sample how if feels and this bed was amazing! The rooms are about normal size and has a tv , desk , chair , etc..... Wifi is also a must whenever i travel and no complaints here. Wifi was fast and easily available. Did not have a chance to see the gym or the pool but they do have one. Overall , i would stay here again if i come by Phoenix!!", "type": "review", "business_id": "7sNFLjSyinVqeQ_Teg2WRQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "zCC6huLkNBEr3JUgQyxJbg", "review_id": "g-9ZKp70OA-YDiWuA8bi4w", "stars": 4, "date": "2009-08-16", "text": "The best part about Logan's is the rolls - and I don't mind that you do not need to add butter because it is already dripping with butter. YUM! I can taste a hint of beer in the roll as well...or it could just be yeast..or wishful thinking. I am trying to be healthier, so I went with the salad and water. The anything-and-everything salad does have some good items included - craisins, pecans, egg, grilled chicken and a good balsamic vinaigrette dressing...but still it was a salad. Maybe I should have ordered the grilled streak salad...but the peanuts are a free appetizer and you can throw them on the floor. What fun! The sweet tea is outstanding and reminds me of my days in Atlanta.\n\nAnother review commented about the similarity between Logan's and Texas Roadhouse. They are very similar, but I wouldn't say Logan's is a knock off. Plus Logan's was started in 1991 to Texas Roadhouse's 1993, so perhaps they are the ones being imitated?\n\nCome in for a sweet tea, free peanuts and the excellent rolls. The rest is about your average steakhouse. Two salads, one tea and a water - $22.", "type": "review", "business_id": "WHd8fLeMeWKUK6sPyeB-UA"} +{"votes": {"funny": 4, "useful": 1, "cool": 0}, "user_id": "Ofxlhi_HKp7myFDpwg9aIA", "review_id": "rAhZ_nV116_uxZnVEAWXmg", "stars": 4, "date": "2008-12-01", "text": "Yay I am a fan...ok for the ladies...this is a tough bit, I have shopped here with girls who literally will hide good finds in other places of the store so they can come back and get them later, most of the time they are gone. \n\nFunny huh, this place literally looks worse then some of the barrio shops in rocky point, it seems like it is the day after thanksgiving every day there, and people literally throw stuff anywhere.\n\nFor the guys this place is a pretty good place to go, the deals on shoes are unreal, nikes that are $100.00 bucks for like $20.00, you can't get that anywhere. \n\nYou can also get top notch clothing and make you look like a true Scottsdale deuschbag for less then 100 bucks Rolex or Tag Heur watches will not be found here, sorry deuschbaggery only goes so far at last chance. \n\nIn any event this is probably one of the best bargain basement places in the valley to get top notch stuff. \n\nTwo things you need to know about this place.\n\n1. They restock every Sunday, so Sunday mornings here really are like every black Friday after thanksgiving, you might get trampled to death like that guy at Walmart or shot like those two dudes at Toy's R Us..and it could be your last chance:)\n\n2. Check all your shit seriously, allot of this stuff is here because it is damaged, so be careful they have no return policy that is why it is LAST CHANCE!", "type": "review", "business_id": "Nj6ITW0Zhl7LpovGIH6SAg"} +{"votes": {"funny": 6, "useful": 3, "cool": 3}, "user_id": "xkTbpCc-YhU8-EXZDA7u0g", "review_id": "FlzwpccnrO-4-m7Fx2YEAA", "stars": 2, "date": "2009-04-29", "text": "The furniture was nice, but I didn't get a welcoming vibe in here at all. First of all, it smells like a dead cat in there -- perhaps it's the mid-century furniture, but whatever, light some incense or something. Second, the guy working there was completely cold. No hello, no how are you, no welcome. He just stared us down the entire time, not saying a word, making sure we didn't touch anything at all. It's a frickin' furniture store! How can you not be allowed to sit on the couches? I don't care if they're vintage or antiques or the like, it's not getting my business.", "type": "review", "business_id": "xWcTt1L4vQC_QkPfPBVlCw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "F6QsMoJdvtohlbnST-fDyQ", "review_id": "XZa2oz1Aop-Gz2af4MclZg", "stars": 3, "date": "2011-11-05", "text": "I have to say i avoid this store as much as i can. I have lived in this same neighborhood for 15 years,so i have had to go to this store many times over the years. They just never understand Customer service at this location. It is very close to where i live but, i would rather drive a little further for fresh and Easy. However, i this night i thought i would just stop here for a quick shopping experience. My boyfriend was really sick and i wanted to take him some fresh Chicken soup that they make and sell here. So here i am at 6:45 at night on a weekday. One cashier is open ,yes only one in a store that size!!! Mind you the store is packed. The line is all the way down the frozen food isle. There are 4 registers where you can check your self out / But, no one is there to help them( all 4 busy).. And it is winter in molasasville. So slow. I am sorry and don't want to sound like i am above it all,but i do not have time to waste like this. This is not a one time experience either. This is one of the biggest reasons i hate going to this store. I have been to other Safeways around the valley that are not like this. The one on 7th Street for instance. They never behave this way. Sorry to say i will continue to avoid this shop!!", "type": "review", "business_id": "VK54dQNl1VlwtDxjTocxhA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "1x1M3I42UF4mG_45W1cZcA", "stars": 4, "date": "2008-08-23", "text": "OMG, oh so good. Gives me gas and makes me tired after lunch, but it's well worth it.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PlElSxv5-h60-88_1EVLuw", "review_id": "rOOfSaJCEkTnvmqvdbt8uQ", "stars": 4, "date": "2012-09-08", "text": "Sunset rise on new year's eve. Gorgeous scenery. Great short ride, but you cover a lot of ground with a lot of different amazing views. Saguaros everywhere. Great view of the lake from the top of the hill. Friendly staff. Drawbacks: horses seemed pretty tired by the end of the day (we were the last tour). Even though my horse misbehaved, our tour guide handled him very well. Looking forward to more rides when we return for vacation!", "type": "review", "business_id": "ZuFdIKk_5x140kpUmRTo2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "B55SnzOSjF3Q-HCS4BKrIQ", "stars": 4, "date": "2012-07-05", "text": "Very excited to try this place out. I tried the sampler of all 4 beers and really enjoyed them all; however, the watermelon ale was my favorite. Great service, cool, relaxed atmosphere and delicious beer = a winner!", "type": "review", "business_id": "edcGkJ6qPs3lUnSz9pqoGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JxizK08K88qgrxL6dGb6yw", "review_id": "6M5tZArDCgjXph-AQxHf3Q", "stars": 4, "date": "2012-03-28", "text": "Same menu as Phil's Grill but you can reserve a table on this side. Food is wonderful and service is great. Love the daily soup special. Try the wings but ask for them to be a little on the crispy side. The ribs are wonderful and they give you a lot. If you order the fries as an order be prepared to share with everyone in the restaurant. They give you enough for an army. Sunday night is half price wine and $5.00 burgers. Get there early as they pack them in.", "type": "review", "business_id": "ltk2xcvDFvuljYIpMnRqAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Vk-hJ1i5ZagPM87Kv9FOnA", "review_id": "4x5yLG7_yGLuN-w6fV0eBw", "stars": 4, "date": "2011-02-02", "text": "I love every place on South Mountain. I've been wanting to try a Monte Cristo for awhile now. The wait was well worth it. Massive flavor explosion in the mouth. Finished it off, chased it with fresh lemonade, and seriously wanted to order round two. For sure will be back next week for that second one.", "type": "review", "business_id": "9yKzy9PApeiPPOUJEtnvkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LcbCDjtqNP2IcGuBdrcBzQ", "review_id": "Cjzu_kQeY2e3ToXHSGKfNw", "stars": 1, "date": "2012-12-29", "text": "I usually do not complain about bad food but the fish and chips gave my wife a serious case of food poisoning. So if some manager reads this please check out your fish supply or change the cooking oil. She never gets sick and has been sick all day (December 29, 2012) from the meal eaten December 28, 2012.", "type": "review", "business_id": "sspvIv6br3Vto2s5JkeiMw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "7zDqr2I0-xpw9HF5Ha54cA", "review_id": "ESIuov-MzGqSkucA8l7d4g", "stars": 5, "date": "2010-04-05", "text": "Still in love with this place and how much care they really have for all of their clients. \n\nI hit another, I want a piercing moods and swung in on a lunch break last week, determined to get this piercing I thought would be perfect on me. \n\nAs usual Jo was absolutely amazing. He brought me back and we discussed what I wanted and when he looked at how my ear was shaped he said that I may want to try something like this (then drawing dots where they would go). He took into consideration my piercing past and said it's subtleness and the petite jewelry would suit me well.\n\nAnd as always, I came out super impressed and ready to show off my piercings. They still look amazing a week later. I'm still in love, and they are perfectly healthy. Job well done. But I'm not surprised.", "type": "review", "business_id": "97Z7j4vH0kfzL10AONi4uA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ETIAM78kYT_xPM8b2iqi7g", "review_id": "mkEfn0UMgmphtiMpZDSE_w", "stars": 4, "date": "2009-05-11", "text": "Ok....my 2nd review of an \"Irish\" pub. And we're getting closer. Good ambiance - I really thought it looked much like a few pubs I visited in Dublin (tho no pictures, that I saw, of the famous revolutionaries, no flags, no old photographs. But a good draft beer selection. And a really good Irish menu - we had the fish sandwich and the banger sandwich (lunch menu) which included chips (french fries) and I ordered a side of curry dip for the chips. Good stuff.\nGood Irish music (cd's) playing in the background - not obtrusive. And a very good wait staff. The bartender greeted us the minute we walked in. But sorry, folks, music is Thurs thru Sat and no Irish music that they admitted to - cover bands instead. So I'll keep looking, but I'll stop here when I'm in the neighborhood.", "type": "review", "business_id": "zDyx_BL0RJbXWpXSFfrf8g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "2L30O7G8IQ6HILpR0t5RFA", "stars": 5, "date": "2010-03-24", "text": "part of a social event, we only had app's here. quite delicious crab cakes and a shrimp fritters with mango sauce. the portions were gigantic and actually big enough for a meal. i was slightly full afterwards. part of the roaring fork, wildfish franchise, they also offer a great happy hour. seems a bit high priced but our bill was taken care of, so i'd save this (for the middle class foodie) for a special event.", "type": "review", "business_id": "qiwajZigq_2twTmYofPmDQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MPRRpCrzvYA9jbNVEcMDDA", "review_id": "c4Vngc4Uxy9sQstQ_4Wapg", "stars": 4, "date": "2011-10-19", "text": "This place makes some of the best vegan gelato/ice cream I've had. If you're vegan, skip the (kinda gross) soy froyo, and eat one of the gelatos. The service was super friendly and all the gelatos were super tasty. I had a big scoop of peanut butter soy gelato. It was by far the best peanut butter based ice cream I've ever had.", "type": "review", "business_id": "tV97OH1LK00kUcX0Jig-sQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "g_HNO8oUoYDKd4yJi2_yvg", "review_id": "2JGPmNX9KJPhyU0TSPTeXw", "stars": 5, "date": "2012-03-31", "text": "Okay, I admit it - we are waaaaay late to this party. We tried once before but the hour-plus wait was just two much for the four starving carnivores with me that day. This time our strategy was to go early on a Saturday morning as close to 6:30am opening as possible. We arrived around 7:15 (it WAS the weekend after all) and only waited about 20min for a table for two. \n\nI had the special of the day - 3-egg scramble with andouille sausage, fresh local baby spinach and fontina cheese - YUM! The sausage had just the right enough of bam and the home fries with rosemary and onions rocked. My companion had the hog and chick - awesome meaty bacon with that.\n\nGreat value for the price - I packed up at least half my meal for the starving teenagers at home (who could not be roused at dawn). If you haven't been, get up early, bring a newspaper and rest assured Matt's Big is well worth the wait.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aAOosIA2598fl8v2mcWoWg", "review_id": "4oVXKR4TrryBNNoGFBhvog", "stars": 4, "date": "2011-08-13", "text": "Very nice theater, with a very friendly staff. The seats were comfortable, the popcorn was fresh, and the place was clean.", "type": "review", "business_id": "2UfTG6BpFgeMREXQdAd_TQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AF1FkKODDmXFbVhlNIp4vA", "review_id": "nBl7D6aJd4HJrB49tczpJQ", "stars": 4, "date": "2012-06-06", "text": "I've been going here off an on since 2004, and have had pleasant experiences. It seems like the same guys since the first time I went, which to me tells me they have experience and a loyalty to their company and customers. They are always nice to me, and try to explain what's going on with my car as well as present me with options for repair. They are also great about trying to save me money by doing things like contacting manufacturer's about warranties, offering me packaged deals that cover what i wanted anyways, and providing discounts. \n\nOne time I went for a package deal that was actually cheaper than the individual things i needed done for my 60,000 mile checkup. Part of the package included new filters, but since I had just switched them out myself and they were still in practically new condition. They went ahead and gave me the new filters, saying that I didn't need new ones, but i paid for them. I really appreciated this even if they only cost a few bucks each. \n\nAnother time, it was slightly unfortunate in that it took a very long for them to get to my car and complete all the repairs/order parts etc. I waited patiently and didn't complain and they were very grateful. They kept thanking me for my patience and apologizing for the wait. When the bill came they had given me every special and discount available including an overall discount on the bottom line for the wait. It's not often that companies will give you anything without you having to bitch. While the wait was unfortunate, they did what they could to make it an overall good customer service experience. \n\nOverall good customer service, and a place that I trust. \n\n**as an added bonus, the mesa library is within walking distance.", "type": "review", "business_id": "7cfh_iFrzh2489palOKKmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "mU5GwCA4uiD0-RH1qt3jrQ", "review_id": "x_mfZv-3kEPkjb-2sMmynA", "stars": 3, "date": "2008-02-01", "text": "I'm used to Ranch 99 back in Northern California, and this supermarket wasn't anything spectacular. This is a good place if you want seafood! All of the traffic was around that area. The food from the take-out section didn't look too good.\n\nThe market also has the bakery, peking duck, the flattened 1/2 duck, and roasted chicken. \n\nThere is also Hong Kong Express to-go food where you can order noodles, dim sum, congee, boba drinks, rice dishes, etc. It's right next to the take-out food. \n\nThe most interesting part of the supermarket was the selling of Chinese pancakes in front of the store. You can order mini pancakes with either a red bean, coconut, or custard filling. Each pancake is made to order and is $.50 each. I tried both the custard and red bean pancakes and it was pretty good! Cash only payment for the pancakes. You also have to wait awhile for the pancakes since there is a long line.", "type": "review", "business_id": "ozWBsvbeM2LSPsRDsYKr1Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E9jtD7EFBRQDaswk6goqDg", "review_id": "o-bfCYYDlc-h2Hbycr2TXw", "stars": 5, "date": "2011-01-27", "text": "Busy place, but everyone is nice and I keep having to go to the cell lot because of late baggage from my original destination. They charge a lot to deliver so better get your bags checked 45 mn early...", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "A99dyhEqcd_yXKPfBWeZHA", "review_id": "oIJdEFAtJP2KDPwnNFtkEQ", "stars": 3, "date": "2012-10-03", "text": "A pretty big group of us came here for my bro's bday and had a good time.\n\nWe had made reservations for a Sat night, and when we arrived, we were immediately seated. Our server guy was friendly, quick and did a great job of attending to our large party.\n\nThe ambiance was more relaxed (and less pretentious) than I had expected (considering you're in Old Town Scottsdale), so I appreciated that. Parking was easy.. not sure how we lucked out on great parking spots on a Sat night in the area, but we did!\n\nThe food:\nMy sister's coconut fish was very tasty.. addictive probably because of the creamy coconut milk and the sugar they obviously added.. still delicious.\nMy pork lettuce wraps were tasty and I had the option of getting them with red/purple leaf cabbage, which was a nice change. The meat was savory and seasoned well and my portion was so big, there was no finishing it.\nMy bro's seafood curry was a hefty portion (as were all the rest of the dishes in our party) but I wasn't a big fan of the flavor.\nMy hubby's spare ribs were overly-flavored (yes, that does exist) and I didn't enjoy the bite I had.\n\nIm not sure how authentic this Thai food is, but it was tasty... Thai food is quite healthy (yes, I do believe coconut fats are healthy), but all the sugar added for flavor enhancement of the currys is not very Thai.. nor appealing to me. For a once-in-a-while occasion, I'd go.. but it's not really on my \"must go back\" list, sadly.", "type": "review", "business_id": "SMpL3z4FLF07bRA6-y22JQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "BeC9T1PMdGwZ512_gKaUxg", "review_id": "jk3X3igjYG9PGOoLeJJYaA", "stars": 3, "date": "2012-08-26", "text": "Good flavors, fast service. Love their green curry. Great happy hour where appetizers are 1/2 off the reg price. The downside is that most of the appetizers are deep fried. I like lunch better than dinner as they offer a nice salad with the meal.", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "ANTrWPSoOqbXkvLvxes-aA", "review_id": "p1pev14f3VKcAyO8I2RcOA", "stars": 4, "date": "2012-03-31", "text": "HUGE fan!\n\nLove Poncho, the birthday strobe lights, the food and the service. \n\nThis is a go-to for my boyfriend and I when we're looking for sushi. More likely than not, we'll opt for the all you can eat option for $20/ person. \n\nWith that comes with miso soup, salad, sashimi, your AYCE picks, ice cream and with a special frequent customer request, this awesome pan seared, naturally fatty sea bass belly and salmon cheeks, which are AMAZING. Not a taste for everyone, kinda bizarre for most. But this will be well appreciated by traditional Asian taste and PERFECT for me. Loyalist here.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZoiBl0VS-36RXokRTJPlSw", "review_id": "iOhRbJFCSbU93M4w3h6Dqw", "stars": 5, "date": "2011-01-22", "text": "We love Dr Steve!", "type": "review", "business_id": "jMxPbB_qhCONidfVsf3uBA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Lp_Ykqfbv5Q-oyGYlMGJRg", "review_id": "d0DrtIgaI7ovGRQFudxFZw", "stars": 5, "date": "2011-03-14", "text": "This mall has all the upscale shopping that you will ever need. Just make sure you come here with your credit cards in check as you are bound to fall in love with something when you come here.\n\nThey have some of the best department stores in my opinion, and if you're looking for that perfect dress for any occasion, you have tons of options to choose from.\n\nI love how clean and perfect this mall is!", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "VD-RoEyU02NGG7655PMfSA", "review_id": "pAYFUvIe1L7z17MCkze0DQ", "stars": 5, "date": "2010-07-23", "text": "This is a great Radio Shack. The staff are older, and very knowledgeable with their product line. If you need odd batteries, check this store out first. I needed a watch battery, and found that they were the only store in Phoenix to carry it. It cost be all of $5 bucks, but saved me having to buy a new watch.", "type": "review", "business_id": "zC3wliBhYA7MkOel6qtuTw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "A3PEy6o-lQ-kRX3PXJo3hQ", "review_id": "oH9OVWWQ6eUvHZwlLmdeHA", "stars": 5, "date": "2010-02-23", "text": "Not only does this place get it's ingredients directly from Italy, it makes a variety of flavors fresh, daily! \n\nI got my first taste of gelato when I visited Rome Italy a few years back. I've tried other gelato spots around the U.S, but nothing has caught my AMORE, or the authentic Italian flavor, more than Angel Sweet. \n\nSo far my favorite combo is the \"most popular\" Panna Cotta with Banana, (which an employee recommended), Hazelnut and Pistachio, as well as SUPER Dark Chocolate again, with the Panna Cotta.\n\nDon't forget your punch card, buy 12, and get one kid's size free!", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hDkuZWTXVZRYqWojl_rx_Q", "review_id": "NF44zbH5km75xnXpbmFObA", "stars": 4, "date": "2011-07-12", "text": "Yum! Delicious tasting pizza, a wonderful atmosphere, and oh those Nutella crepes are devine!", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "1HfB456zIj_n_trw8Ebe7w", "stars": 4, "date": "2011-03-05", "text": "My man took me to Fuego for a pre-birthday meal on a Wednesday night. I was surprised to see how many diners were there a. Because it's a Wednesday and b. Because it's in such an odd spot!! Once you get past the randomness of it's location, you will see how quaint and homey feeling it is. The two servers working the front of the house were friendly multi-taskers who welcomed, advised and fetched drinks while we decided on, then waited for our meal. We started with the scallop app and agreed that it was great, although small (3 scallops/$13). How bout one more tasty morsel? Apparently, it was small to save room for the hulking entrees we graciously received next! Wow! I had the seared ahi-a huge portion of it spicily seasoned, lightly seared, and great tasting! The man had the stuffed chicken breast, and inhaled it. It looked great as well. Also in the \"great\" category were the side dishes! Omg, the cheddar massed potatoes were so freaking scrumptious I could die! I also had the jalape\u00f1o creamed corn, that I mixed with the potatoes to make a combo from heaven! Man got the green chile cornbread casserole, which sounded meh, but tasted incredible! Such a fantastic meal! Stuffed with amazing food, and pampered by attentive servers, I was disappointed that I couldn't give Fuego 5 stars. But it wouldn't be prudent. \nWhy, you ask? \nBecause the sangria sucked. I had both the white, that tasted like watered down kool-aid, and the red, that tasted like old, cheap red wine mixed with coke a cola. They both sucked. Not good. Hopefully it was an off night, beverage-wise and I just happened to be there for it. Everything else was spot-on!", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Dc3nvTY7eWjOFWM3lvAztg", "review_id": "pv4iPzmxeSF5pG47OzLdAQ", "stars": 4, "date": "2010-04-30", "text": "This is in a really cute part of Chandler. I've driven by a million times, but never paid attention to the all the restaurants. We went here for lunch based on the great reviews it received on Yelp. \n\nI can't really add much more to the other reviews, but just wanted to be one more person to say that the food is delicious & service was excellent. Great ambiance & music too!", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Kdv_6GNMx5QF4f6aEdjbHw", "review_id": "MHEZCvdj2RCJk3_uFbcb9g", "stars": 5, "date": "2011-06-29", "text": "I LOVE LIFE TIME!! It's always clean plenty of machines to work out on that are in working order! HUGH VARIETY of classes to take and keep you from getting bored. My kids LOVE it too and ask when we are going to the gym. They also have the rock climbing wall, basketball and Squash courts and outdoor and indoor pool with life guard and a water slide at both. The out doors and indoors have a lap pool as well . The inside has 2 extra large jacuzzi and of course your steam room and saunas. I personally love the locker rooms they are so nice to shower and get ready in they provide everything you could think of ( just like a 5 star hotel!! ) This place keeps me motivated You Gotta try the Zumba class and Strictly strength class!!!", "type": "review", "business_id": "b78Cnqgeb4GoHqPobBXsjw"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "WQFJ8_V1lao4oZ_FKbk5Zg", "review_id": "NeHydq5dEAXXvOJh-HTtQw", "stars": 4, "date": "2011-04-25", "text": "Foothills Park in North Glendale, AZ is a more than just a dog park!!! This park has a skate park, an aquatic center / fitness center, baseball/softball fields and a branch of the Glendale Public Library.\n\nOn the north side of the park is the Foothills branch of the Glendale Public Library. Here in 2011 this branch has started closing earlier a couple days a week and they are now closed on Thursdays and Sundays. You can still request books online to be transferred to this branch for your convenience.\n\nThe dog park was recently expanded with a new section of dog run that connects the front of the park on 57th Ave with the back of the park behind the library. Parts of the dog park are closed a day a week for maintenance, but part of the park is open every day.\n\nThe baseball fields are the area of the park I use the most. Arrowhead Little League (www.ArrowheadLL.com) is based at this park and they play two seasons - Spring and Fall. The City of Glendale also runs baseball and softball programs at this park. \n\nA playground sits on the South side of the baseball fields, just North of the wash.\n\nThe Aquatic Center (www.glendaleaz.com/foothillscenter/) has an outdoor pool with slides and lap pools. There's a fitness center indoors with all the equipment of a normal gym plus a rock climbing wall and full indoor basketball court. The kids love to hang out at the rec center.\n\nThe skate park on the west side of 57th is an area I've avoided thus far. It's usually packed with kids riding skateboards.", "type": "review", "business_id": "BtKwRZRMyTIi9BRFk-75sQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "RP3-rEZAYqbkX50ixDFbTQ", "review_id": "eJl3BaI9KB3kzdKfDmVgog", "stars": 1, "date": "2012-04-12", "text": "My son and his family arrived into Scottsdale Tuesday April 10 on there way to California. We decided to eat at RnR before they continued there trip. My son and my wife ordered a hamburger and fries. The fries had no taste and my son asked for two new orders. My grandchildren ate the original fries, while the new fries loaded with Parmesan cheese. The fries were not hot, nor had the cheese melted. I had a few of the fries and did not have as severe a case of food poisoning as my son and my wife. \n\nI have recommended RnR in the past. I do not think I will in the future.", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hcctCQy3bdZMezrUKkZLtA", "review_id": "kYhKWql0mcqKkfEyTDFmIw", "stars": 4, "date": "2011-04-14", "text": "I love Greek food. I have no idea when I became so enamored with Greek cuisine but I am glad I did. I end up craving it at least once or twice a week so when I met the fiance for lunch today near his office I mentioned aforementioned craving and he led us here to Cyprus Grill.\n\nThe place was pleasantly busy but not overcrowded. We ordered at the counter and out food came out pretty quickly. We tried the gyro pita as well as the gyro plate. We cleared our plates in no time so I guess that means the food was good, right? \n\nThe gyro meat was tasty, moist and flavorful. The rice was delicious and the tzatziki sauce was refreshing. We decided that we'd be going back for future lunch dates whenever possible. Besides, you can't have too many go to Greek spots in my opinion so this one's definitely going in our books. Done and Done.", "type": "review", "business_id": "Rg3INE2p4zQYvfMvJduEOQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "--65q1FpAL_UQtVZ2PTGew", "review_id": "BqNpHEKVrpJEAhkRHJ46xA", "stars": 5, "date": "2011-05-23", "text": "For those of you who love Indian/Pakistani food, but hate dives, Z-Grill just may turn your whole world upside down. In all foodie honesty, Z-Grill is home to some of the best Indo-Pak food I've ever had. This praise comes with a reminder though...it is divey.\n\nZ-Grill is located inside Zam Zam World Market, which is a decent little grocery, but it lacks the umph that other well-known ethnic groceries delivery. With that being said though, other groceries lack Z-Grill, and this is why it matters...\n\nEverything I've tried from the restaurant, and I mean everything thus far, delivers. From the hummus, to the samosas, to the chana and even to the paneer masala and chicken karahi, I've only been disappointed when I realized that I was down to the last bite. The flavors are robust, the sauces are spicy and, surprisingly, the prices are unbelievably reasonable. It's safe to say that I'm addicted to this place. \n\n**A word of caution when trying Z-Grill. They are sometimes out of items on the menu. I find that charming cause they have to make everything from scratch, others might not. If they happen to be out of something, do yourself a favor and just try something else.**\n\nI cannot say enough good things about the food from Z-Grill. This is a must-try in the valley for anyone who has a love for spicy Indo-Pak food. Go try it!", "type": "review", "business_id": "j7-YRDU63fw975an55zHGg"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "4ozupHULqGyO42s3zNUzOQ", "review_id": "f0-le0ob-ZieOJvkUvFgBQ", "stars": 4, "date": "2010-06-28", "text": "The name sounds like it's straight out of a book filled with a happy storyline, friendly characters and sunny days. And Chestnut Lane, the eatery, lives up to expectations. For the ultimate lady who lunches, this should be # 1 in her book. \n\nI discovered this lunch spot awhile back and immediately made my way there to check it out. From day one, I was hooked and have visited several times. Chestnut Lane is small, quaint and every bit as charming as the house they call home. When I first walked in, I saw gorgeous fresh salads to the left, begging me to take them home. Fresh pastries, cookies and cupcakes lined the counter top and refreshing water made their home in reusable milk-type jars in the refrigerator. The owner runs the shop and takes great care of the environment and the food they serve. From ladies who lunch, to professionals on the go...this spot is normally packed during lunch hour, so get there early. \n\nMy favorite dishes include: the lobster salad (worth every penny), the tuna meld, chopped salad and honey roasted chicken blt. It's hard to escape without a bag of their delicious cookies or a mini cupcake. If it's mini, that means zero calories right? :) For those looking for a healthier option, their fresh fruit is full of amazing berries, etc. \n\nHours: Better hurry and make it during store hours! Chestnut Lane is only open Tuesday-Friday from 8-3 and Saturday from 8-1.", "type": "review", "business_id": "JW6fDZOuUKtJyZGeldh0xA"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "Mmew2rqnwj8FW3qD9wsaQQ", "review_id": "leXN15iXBgo2s-INMklJmA", "stars": 3, "date": "2010-03-08", "text": "I've been frequenting this Savers since the day it opened a few years back... \n\nThey have a great one dollar tag sale on Mondays which is pure bliss I tell you!! Having a tough week, head over to Savers with a 20 dollar bill on Monday and you will come out a new woman with a new wardrobe!! \n\nMy mother is the one who actually got me hooked on this deal lol.. The original frugality of the family lol. \n\nOverall, I cannot give this thrift store five stars just because I am a thrift store whore and have visited about every thrift store in and around the Phoenix area and have plenty of experience with many other thrift stores. \n\nThis Savers requires a lot of digging, but some of my best finds have been a Dooney and Bourke gently used wallet for $16.00. Banana Republic black sling shoes for $5.99. Brand name NEW work out clothes and plenty of NEW with tags vintage dresses all under $9.99. \n\nThis Savers is okay for just cheap everyday wear, other than that you won't find many unique and extravagant pieces here. Also, for some reason, everyone that shops here is really nice and friendly, no competiveness at all :)", "type": "review", "business_id": "P2hdIBaOhbDwYfFcyokpyg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "E3-93iTqkix1JRjqZNv5kQ", "review_id": "py9CNLEoBarrM1EaVfRg9A", "stars": 2, "date": "2011-09-25", "text": "I guess it's not really the most accessible place, but Frank & Albert's is located in the Arizona Biltmore Resort & Spa and serves as one of their restaurants to their guests. Since the other breakfast place they had was only a cafe that served baked goods, I decided to come here to have a proper breakfast.\n\nWhen I asked what they recommended they immediately said \"the Biltmore Benedict\". I was easily sold so I ordered one, and a coffee.\n\nCool thing about the coffee is they just bring you a carafe to serve yourself coffee as you please. Not sure if this was because the waitress was lazy, but I thought it was nice.\n\nThe eggs benedict themselves were not the best. On one hand the ham that they used was overcooked (ie. jerky). On the other hand the english muffin was over toasted and too crispy, which kinda ruined the overall consistency.\n\nIt is a nice patio that they have to sit on, so I will give them that. They apparently have a bird problem where birds kinda come and scavenge for food. I didn't really mind it.", "type": "review", "business_id": "qkbloHdDZuHf_0wTqUGPjQ"} +{"votes": {"funny": 0, "useful": 7, "cool": 2}, "user_id": "yHCzZTF641SyRQGoefRvQA", "review_id": "cnFSJ52zVRmXT3JcrOmdUw", "stars": 5, "date": "2007-07-10", "text": "EXCELLENT TRIP TO THE SPA!!!!! \n\nA trip to the Aji Spa (located at the Sheraton Wildhorse Pass Resort and Spa) was at the top of my list during my recent trip to Arizona on Memorial Day Weekend. We made our reservations well in advance. Having gone to a few spa resorts, I couldn't wait to pay this one a visit. \n\nMy cousin and I were each booked for the Little Yellow Bird spa package, which was comprised of 2 services each. We arrived about 15 minutes prior to our appointment time and was given a tour of the spa. After changing in the women's locker room, and relaxing in the private women's lounge area (there's a large lounge area, but it's co-ed), our masseuses met us and brought us into our room. My cousin and I decided for our first service to be the Companion Massage. After only having solo massages, I was interested how a companion massage differed. The 50 minute Aji Massage flew by. My masseuse was professional and the massage given was very comfortable, relaxing and beneficial. \n\nAfter our massages were completed, we had some time in between our next service, feeling a little hungry, we decided to grab some lunch from the spa's cafe. I ordered the flatbread pizza and it was TO DIE FOR! Seeded flatbread topped off with a garlic peppery aioli, grilled chicken pieces, pesto sauce, marinated bell peppers, melted cheese and avocado. My visit was a month and a half ago and my memory, a little fuzzy, but that was one of the best lunches I've had in a long time!! \n\nAfter lunch sometime, we each were up for our second service, our facials!!! Due to my skin type, I received the Aji Rain Facial. My esthetician was wonderful! Her hands were soft and gentle while working on my face and we had some lovely conversation during the 50 minute procedure. I left that room with my face feeling renewed, clean and fresh!\n\nAll spa treatments include full use of the spa's facilities so we definitely made well use of that! After our facials, we used the sauna (the steam room was out of service during our visit) and whirlpools located on the women's locker side. We then relaxed and lounged by the outside pool. The Aji Spa is such a calm, warm and relaxing environment that I ended up taking a nap! Outside! In desert heat! Thank goodness for the wooden awning with misters attached and the huge patio umbrellas providing shade! The staff at the spa provided excellent service! From the front desk, to our masseuse, the esthetician, the cafe staff and the locker room attendant! While napping, one of the staff from the cafe even brought us iced water with lemon and cucumber slices in it!\n\nOur appointment started at 12pm and with our 2 procedures, and lunch, we should have been done and out of there within a few hours. But the point of visiting the spa was to relax, and with Aji Spa being such a lovely place, we just didn't want to leave! We finally left nearly 8 hours after our arrival, and we would have stayed longer if we could! \n\nI highly recommend Aji Spa to anyone visiting the Phoenix area, or if you're looking for a new spa to travel to! Aji Spa is a beautiful spa with excellent staff and service. They even emailed me the same day of my service as a \"Thank You\" for visiting and included a discount coupon on my next visit! A 5-star spa, indeed!", "type": "review", "business_id": "qfFSS0A5OXUkCbTeC1fYLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XMwsFSfJLOlYIs3Pe6xdcg", "review_id": "pLuclbtZtsvW8Zc7FonzZw", "stars": 5, "date": "2012-06-05", "text": "The french toast was delicious! Toddy was especially good", "type": "review", "business_id": "BLgkoO4MKq00V2o9jOf5zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CoO7q1yFPVy-nRqPOYLglA", "review_id": "loRSSYODeSxbDIqPVi-JGw", "stars": 4, "date": "2010-05-02", "text": "A few co-workers and I were in town for a conference and decided to check out this place on a Tuesday for lunch. Service was fast and the sandwiches were good. The bread was fresh...I would suggest splitting because a whole sandwich is just too much for a regular appetite.", "type": "review", "business_id": "LRuIY8JFqadCSYLo242MGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TTP7l5g4QUVCpQZ9NTAWqw", "review_id": "Iio56qtveYEytPTJe1uaog", "stars": 4, "date": "2011-03-04", "text": "I love the Starbucks in the Safeway here. Marissa...the girl who is normally the barista...is so nice!", "type": "review", "business_id": "Sm-KSR7qtHmP-Z1yBPxedA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "t6qe0BXW0owmfvljlNZSWw", "review_id": "F-AKCYEr--6ZEcoFRxlq9g", "stars": 5, "date": "2011-01-02", "text": "This place is awesome. Affordable, tasty food. Simple and clean country environment.", "type": "review", "business_id": "bEQjf7c-9qkNWgXvriSGZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "LNW2d7TDLB7XHT-V8k-6Jg", "stars": 4, "date": "2010-09-08", "text": "I haven't been in a while but I remember being impressed. Nice ambiance, especially for a Thai restaurant.", "type": "review", "business_id": "KPoTixdjoJxSqRSEApSAGg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qcBEh_PFohFIJFcK9J23Sg", "review_id": "loM2AWQF8H1rHQOOt7MTIQ", "stars": 4, "date": "2008-01-04", "text": "We ate here while waiting for our tire to be fixed across the street. This place used to be The Vine for many years, until it closed and the building became two different restaurants. \nThe service was very friendly, and the menu had many different items in case you don't like sushi. We tried 2 different Bento Boxes of ribeye teriyaki (the online menu lists it as new york strip) and chicken teriyaki. Bento boxes come with so much food! You start with a pretty good Miso soup, and then the box comes with salad with a yummy soy vinagrette, two pork potstickers, rice, and fruit - in this case, orange and apple slices. The steak was tastefully seasoned and melted in my mouth. The chicken was tasty as well, but I liked the beef better.\nThen we opted for a few pieces of sushi, since this is a sushi bar. We had the Nigiri salmon and cooked shrimp, a california roll, and a house specialty called the Tukee Roll. It is basically the california roll that is rolled in crunch tempura bits, and drizzled with unagi sauce and miso orange sauce. This was one of the best rolls ever! A great twist on the plain california roll.\nOur iced teas were a bit pricey at $4.50 for 2. Too bad we were too full for dessert. Check out their website for an unusually tasty menu. www.tankedfishaz.com.", "type": "review", "business_id": "oMw1SaH_zEbOOufTsGuk6w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "w8ZOVM1E1m4jNgHRUSAzLQ", "review_id": "L6XP76Fry30BPcObDM4vuA", "stars": 4, "date": "2011-01-18", "text": "This hotel is amazing! The staff is very friendly, it's very clean and it has wide space for a hotel room, nice swimming pool with a heated pool. They have free breakfast and free dinner:) and it's pretty much near with everything you need: mall, restaurants and bars:)", "type": "review", "business_id": "0xDNu8EhXAaHVfhHjkYUHQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1uwqR1r9nMDgI6RZT_bL2w", "review_id": "We9A4seK9gy842dmfsIRaw", "stars": 4, "date": "2009-09-27", "text": "LOVE Oregano's! They have delicious pizza, pasta, salads, wings, everything. The portions are huge and the prices are right and I can honestly say I've never not left Oregano's full and satisfied! Plus the atmosphere is fun as well. If you've saved room after your meal, try the pizookie, it's amazing. Giving 4 stars because there is always a huge wait and they don't take reservations or seat you until everyone is there, and also because the deep dish pizza was far too cheesy and saucy when I tried it (more than a deep dish should be) but everything else is superb.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "lGHGgbkOj3aoVLKcOnARxg", "review_id": "ZrNfIWRPOMOfVpvkgx4jGg", "stars": 5, "date": "2009-06-18", "text": "Fantastic Happy Hour 3-6pm! Half price appetizers and good drink prices. I like their Sushi and Garlic Noodles.\n\nAnd pretty much everything I've had there is good. I had a Peppercorn Steak about 2 weeks ago and it was amazing. It's right next to the movies so it's a good place to meetup too.", "type": "review", "business_id": "8cL7aJVKTYmLguzXEAS3Lw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "U8ayzBXrBzgjdrCYOzwNOg", "review_id": "PYSY5WvX-RVU-gmNc4zx2A", "stars": 5, "date": "2010-12-27", "text": "Went here for the first time last week and had a great experience. The restaurant was very clean, the service was great. The best part? The food. I've been in AZ for 10 years now and I can say without a doubt that its some of the best food I've had in a restaurant (and this from a pregnant woman no less ;)\n\nI had the fried chicken tenders, cheesy grits and fried okra. First, the food came out piping hot, I mean steaming and hot to the touch. The batter on the chicken was thick and crispy. The grits were cooked to perfection- dry enough to hold together a bit but still moist. And the okra was fantastic, too. It didn't hurt that my fresh lemonade came in a mason jar, either. \n\nI will be back. a lot :)", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "4oxk-dhpdrtMeq6Ks-6uJw", "stars": 2, "date": "2011-04-03", "text": "This place is a bit scary. (And since it is a Chinese restaurant, that means a little more than scary). It's dark, (even though its been remodeled at least once since it has changed owners a few times). It serves mostly Cantonese based cuisine although most of the waitstaff tend to speak Mandarin. I'm actually Chinese and notice these things. There is some live seafood. I usually go here for lunch when we have a crowd. It is inexpesive and fairly quick to get in and out. A bit heavier on the salt and sauces than I would like though. I tend to go to my old standbys Great Wall or my newer loves Nee House or South China knowadays.", "type": "review", "business_id": "Xsl-i1otDd3GXJEkkKJCaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pv7DGHzZ-uqIUdOsqPpsVg", "review_id": "k-FfTT_iv-YOzX_SqyFOzQ", "stars": 5, "date": "2012-12-26", "text": "The boyfriend and I like to do little staycations every now and then so when we saw a deal advertised for the Camelback Inn we jumped on it. We stayed two nights in just a regular room, I guess. They had several different kinds of suites (even rooms with a private pool!) but our room was a standard room with a nice patio facing Camelback Mountain. The room was spacious and clean, the bed was comfy and the patio was the perfect place to enjoy breakfast.\n\nCamelback Inn was much bigger than I expected. Lots and lots of buildings spread out over the property. It's not the easiest place to find your way around but at least it's pretty to look at while you get lost. At the back of the property is a little ghost town set up. It looks like they do corporate events - cowboy cookouts - but nothing was going on while we were there. But we had fun wandering around the \"town\" and taking goofy pictures of each other.\n\nEven though it was December it was warm enough to hang out by the pool. The pool is heated so that helped and there are two hot tubs as well for really chilly days. They have an abundance of lounge chairs and even offer float rafts and fun noodles for the pool. There were kids splashing around but the area is big enough you can hide away from the action if you prefer.\n\nWe ate at two of the restaurants while we were there - BLT Steak and Rita's Kitchen and both were fantastic. \n\nWe loved our Camelback Inn staycation and would not hesitate to go back - especially in the summer when the rates are low!", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "h_gopaLFyHShSrjB84JrwQ", "review_id": "TjfAFeidC47fnzVwZ2glWw", "stars": 4, "date": "2010-04-23", "text": "I loved the crispy crust of the pizza thought it was super good. I think if you haven't been there and are at the San Tan Mall shopping that its worth a visit. We went on a double date and it was a pretty good experience. The only issue I had was that I thought they had a very small dining area, which was probably the reason for the 45min wait. Also we went on a friday night and probably because of the small area it got very loud, which I know the management has no control over, but just an fyi of my experience. I'd say if you haven't been and you love pizza its worth the visit. I may try and stop in for lunch sometime but definitely not on a Friday night, it was just too busy.", "type": "review", "business_id": "winRNt7prallDbpaDMS9Ig"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8n--xRBQ9eLDi0vpQ5fGFQ", "review_id": "6ExO3PXJ4J395Ux889Ernw", "stars": 4, "date": "2012-09-23", "text": "My hubby and I have been fans of Roy's since our first time at the flagship location on Oahu . . . and we've watched him expand to the mainland. Our experience with the mainland Roy's have been hit and miss, but the Marriott Desert Ridge location pretty much knocks it out of the park! We went at the tail end of Arizona Restaurant Week. We really liked the menu options for this special week, and the warm chocolate souffle cake is always out of this world . . . If that was the only thing that tasted good, then we would feel we got our money's worth . . . but we didn't have to worry about it because everything was perfect from beginning to end.\n\nWe had an adorable server who had a great personality and excellent people skills. She was unassuming and let us linger between courses. As I am a stickler about food coming out too soon after just finishing one course, this was just perfect! And so relaxing. The ambiance on the patio, which is where we chose to sit, almost felt as if we were on one of the islands, not in the middle of the desert . . . with the tiki torches lit and the sound of the babbling water features throughout the resort, it came pretty close . . . it was just missing the trade winds. The resort had a band playing as well . . . they were pretty good, a few ups and downs. I would have loved if the music was a little more subtle than the pop-jazz mix they were playing . . . oh, but I have digressed. \n\nMy hubby and his daughter chose the restaurant week menu. Hubby had the Grilled Szechuan Spiced Pork Ribs Smoked & Glazed in Roy's Original Mongolian Sauce. A bit cliche, but they were finger lickin' good! My step-daughter and I shared the Crispy Spicy Ahi Sushi Roll with Ginger Wasabi Beurre Blanc -- it was huge and almost a meal. The rolls were fresh, crunchy, and had a little kick . . . not too spicy. It was a good thing I agreed to help her with it! For entrees, my hubby had the Roy's Original Hawaiian Blackened Island Ahi with Spicy Soy Mustard Butter Sauce. It, too, was an ample portion of tender ahi that was complimented by the sauce but no overpowered by it. My step-daughter had the Roy's Roasted Macadamia Nut Crusted Mahi Mahi with Maine Lobster Essence. Another nice portion of perfectly cooked Mahi. We all were starting to feel the aloha spirit . . . I had to be the exception by ordering off the regular menu and chose my most favorite entree of all . . . the Hawaiian Style Misoyaki Butterfish . . . Aah, what a delight, so melt-in-your-mouth delicate . . . I was in island heaven.\n\nDesserts were total home runs -- the melting hot chocolate souffle is mandatory for any chocolate lover. In fact, it tastes the same at every Roy's we've been to . . . it never disappoints. A total surprise . . . and a delightful one . . . was the chocolate coconut cheesecake which came with a side of mango sorbet . . . or did she say it was pineapple sorbet . . . whatever . . . it was the perfect accompaniment to the light and fluffy cheesecake.\n\nWe also ordered a bottle of Newton claret which was a modestly priced wine and as my husband said as he swirled and sipped it . . . \"I know my wines . . . \" Having to always be the exception, I ordered the he Original Hawaiian Martini, which was what I considered my dessert. It was a juicy combination of Maui pineapple, vodka and coconut rumMMMMM!\n\nIt was truly a beautiful evening from start to finish. You may be asking why I didn't give it five stars then if there were no misfires . . . that five star is reserved for Roy's Hawaiian restaurants that really do create the aloha experience with some special touches only that can only be enjoyed there!", "type": "review", "business_id": "corPOxxIBRJ7DSpryYvorw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "c5JW3ZAFA6KTFipc8eBv9w", "review_id": "08pbfOohGVEMe4GeZvY8Jw", "stars": 4, "date": "2011-10-05", "text": "Just recently drove by this Target. It was one of my favorites. Now it's closed!", "type": "review", "business_id": "ZggSeoAXX2yYZnxbHcUaGQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "dWMP2lpyhQTe028N0wAgKA", "review_id": "Doyuw0djl829Rc1dsEoJKA", "stars": 5, "date": "2012-02-18", "text": "Yes, the place is busy every time I go there, and it takes 20 minutes or so to get your order\nYes, the inside is cheesy and cheap with folding tables and could definitely use a makeover\nYes, the location is...ummm...well lets just say its a \"working class neighborhood\"\n\nBUT they've got the best fish tacos I've ever had, and everything on their Mexico City street food style menu is outstanding. The $1 tacos are \"mini-tacos\" so get 3 or 4 of them, a couple of fish tacos, maybe a side of rice and/or beans and you will be all set.\n\nGo there. Just leave yourself plenty of time, it's well worth the wait.", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "9v8IyMk_S6eJujux1Cno7g", "review_id": "Po6VK2gjcw0PDSMOnDAyaA", "stars": 5, "date": "2008-06-06", "text": "Food--The fire roasted garlic tomato soup is excellent. They sprinkle tortilla chips for garnish over a tiny dollop of sour cream. Mmmmm. Yummy. The mixed green salad with albacore tuna is also a delightful choice, as is the turkey wrap and CA Chicken sandwich with pesto mayo. Drip coffee and espresso drinks are good, too. Overall, everything tastes great because it's made fresh. No pre-packaged items here.\n\nSeating--Lots of booths and tables inside and out. They have a cozy little set up with what looks to be 'lounge' chairs that accommodates 6 with swivel tables perfect, for savoring your beverage of choice. The rest of the dining area looks like it has capacity for about 100 people, if all seats were filled despite a placard declaring the maximum capacity is '311'.\n\nPeak times--avoid lunchtime during the weekdays. It would appear that all of Surprise is feenin for a sandwich or soup/salad special from PB during 11-1PM. The lines are long and you can forget about getting back to work in under an hour if you factor in commute time, food prep & consumption. IT'S IMPOSSIBLE. The only time service has been 'fast' is during breakfast. I've been there for a breakfast networking event and on a Saturday. During these times, I received my order promptly and had little trouble locating a table.\n\nFree stuff--this would include WiFi, bread samples with tasty spreads, muffin and/or cookie bits. Bonus points for free stuff!\n\nPB is open Mon-Sat 7AM-9PM and Sun 7AM-6PM.", "type": "review", "business_id": "b9svM7RoDUAVnzjFBmf3Ow"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "umk_6ysXhErEbSRaWTZn8Q", "review_id": "KK01fqD9jDXQofPfgrTRgg", "stars": 5, "date": "2011-05-23", "text": "Awesome! I highly recommend this place! Incredible atmosphere inside and out, the bar design is superb and the patio is the perfect spot for relaxing and enjoying drinks with friends. I went for the second time recently and have to give this place a stellar review. The menu is innovative and fresh! The mixed drinks are killer and the wine on tap was an extremely pleasant surprise. Plus, you can't beat their happy hour seven days a week! \n\n I have had the crab cake BLT and the halibut sandwich, which were both out of this world! Everything I saw coming out of the kitchen looked amazing and I can't wait to go back and try all the others. The servers were great and knowledgeable about their menu which is always a big plus! As a parent, I love that this place is a perfect day/night out spot for a date or hanging with friends but also a family oriented neighborhood joint where I can bring my kiddo along! Love that Churn is right next door to get some yummy dessert after an incredible meal! The design is spot on for this area! Great job!", "type": "review", "business_id": "FURgKkRFtMK5yKbjYZVVwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VwcyU7sYIAXjs2Lw-Alz4A", "review_id": "lA5gRAPA7EylIrLLxpohJQ", "stars": 4, "date": "2012-03-14", "text": "Yumm! Thai tea, spicy Thai beef salad, number 23a and a 32, all of it was delicious! I recommend this place. Just don't go in a hurry because you will be there a while", "type": "review", "business_id": "qyNtVViurIcChc35mfYIEw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "wttePGxhTumTTUinL5tlTg", "review_id": "m5MnJVA7pM4K2fffIBYRcg", "stars": 2, "date": "2011-09-13", "text": "Can't remember the last time I was at a Hard Rock Cafe. This visit was only memorable for 1) Amanda Peachey's gorgeous face and voice 2) the jungle like humidity inside the place.\n\nOur servers were attentive. Our drinks were frequently refilled. But it's just not as \"hard rock\" when it's so family friendly. It's a very small space, and being in downtown Phoenix on a Saturday night in summer, it was sparsely populated as well. \n\nMaybe I'm missing the point, but overpriced drinks and signed guitars on the walls do not bang my shutters.", "type": "review", "business_id": "gkv2XvXpFgiq4Bb2XK7YmQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lSmP-JwAHbtTZbxpV4OX3A", "review_id": "HlodcyjNnVkBgOkubIaYxg", "stars": 4, "date": "2011-01-18", "text": "The Breakfast Club is as good as you'll find. The blueberry pancakes are superb, their coffee is beyond description. For a change of pace, try their Eggs Benedict, Southwestern style. A GREAT spot within walking distance...a beauty.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PMCrTvBpGXOIep1zmHEjkg", "review_id": "tD3GV_P5RazwVeRcNgLhuA", "stars": 5, "date": "2011-08-05", "text": "Thomas was very welcoming and a great server/bartender. Came in close to close and still gave us ample time to enjoy our late night date. My lady and i's date night are few and far between so to be able to have a experience like tonight is very appreciated. Kudos Thomas and citizen!", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "mmJzZPMT06-4jRhf5L8laQ", "review_id": "AksbQqi1J1KYIlqJt8BETw", "stars": 3, "date": "2010-07-13", "text": "Appears to be CLOSED.\n\nPhone number not in service. Went by last week & was all locked up with a realtor sign on the building.", "type": "review", "business_id": "m51fZnQueyj1q1Ra_yDQjQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-rC7cl8eCWNQGLzLDnoRQA", "review_id": "l2qDjHbVQ5CVREPcWA18Ww", "stars": 5, "date": "2011-09-29", "text": "Dr. Ken Danyluk and his team offer an Extraordinary Orthodontic experience. Team Orthodonitcs offers many Orthodontic soluitions for all ages. Whether patients choose traditional braces, Invisalign or \"Hidden Brace\" lingual braces behind their teeth, they always leave happy!", "type": "review", "business_id": "iZwSI8fB_xa8nPAkwqhJwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7iwFdxqqTYYnnesxA6iy5A", "review_id": "nmVnlLomZGCu3i6bSMX46Q", "stars": 4, "date": "2011-02-11", "text": "I really love it here. There is a big window that looks into the kitchen where you can watch the noodle chef hand make the noodles for your dish. My favorite is #17, Beef with lemon garlic noodles. The beef is sliced thin and served cold. The sauce is a fish sauce, the fish smell is pretty strong, but it doesn't taste strong, the citrus and garlic are more evident. The only reason I'm not giving 4 stars is because the water taste really funny here. Opt for a soda.", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "DueHdFSnn75LVHQmXM0x0A", "review_id": "jizjfpYrkhPBkpwx4b4WhQ", "stars": 5, "date": "2011-12-28", "text": "Let's start by disclosing that I grew up in New Orleans, went to school in Lafayette (home of the Ragin Cajuns), and REALLY know good New Orleans/cajun food. I grew up eating great po-boys, gumbo, red beans, and wouldn't consider eating any of these if not well prepared. That said, I can truly say that Jennifer and the Flavors of Louisiana gang make cajun food as good as any you'll find in New Orleans--SERIOUSLY. The po-boys are spot on (though the bread could be a little crustier) and the chicken & andouille gumbo is even better than mine--and, I assure you, that's DAMN GOOD. Frankly, I've never had better. The only thing that is not \"as good as it gets\" is the red beans and rice. They're good, but not quite the creamy \"Washday Monday\" staple that I grew up on. My cajun grandmother has Jennifer beat on that one, but not by much. \n\nBut, if you want a special treat and want to taste something that kills all, get a sausage po-boy. Hot sausage or smoked sausage po-boys are a New Orleans staple and my favorite po-boys of all. But, Jennifer blows them all away with her home-made andouille. Simply put, I've never had better sausage--ever. It's the reason her gumbo is soooo good and her po-boy the best ever.\n\nI've eaten at Flavors many times, even though I live across town. Every time I go, I eat like a pig and bring some home to eat later. I have no affiliation with the restaurant, but wanted to post this as a review from someone who really knows New Orleans food and as a thank you to Jennifer and her crew for giving me a source for the best flavors in the World (not just Louisiana). As a matter of fact, I even overlook the fact that Jennifer is from Baton Rouge, instead of New Orleans or Lafayette and for not having any USL/UL Lafayette paraphernalia on the LSU/Saints wall. At least that is, so long as she keeps her promise to open another restaurant on the east side of town--that is, a lot closer to where I live.\n\nIf you want the ONLY good cajun food in Phoenix, treat yourself to Flavors of Louisiana. For me, it's just like a visit to any of my favorite po-boy shops in the old neighborhoods. It really is that good.", "type": "review", "business_id": "mwiNm868yAo8Xh8hO7Ke_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e74v9ab0-PgmiwBhdbj_XQ", "review_id": "y1vMRm5hml7AnilMCv6ivg", "stars": 5, "date": "2012-09-23", "text": "great sports bar. TV's galore. Good food. Outside patio. While many places claim to be sports bars, for some reason they wind up not paying attention to the TV's and wind up with hair removal infomercials playing.\n\nThis place knows what they are doing with the tv's. I was watching the manager who looked like had a spreadsheet with every game planned out and on what tv's. They also play the sound from the premier game.", "type": "review", "business_id": "01cEFI5Pq_RyEwM3GSTopQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PvZlZMua6J5h6IAXZ5kYzA", "review_id": "Turp8Fsio2UB0iCwXzjuYA", "stars": 2, "date": "2011-09-16", "text": "Have been here several times prior, food is ok and service is mediocre at best. Sitting at the bar to eat and drink does not = fast, quality service. It equates to unattentive bartenders watching sports rather than clearing plates or pouring drinks. An empty pint should have another offered in its place, and napkins on plates are clear indicators that one is done! Fifteen minutes passed before plates were cleared!!! Service MUST improve!!!", "type": "review", "business_id": "GHYOl_cnERMOhkCK_mGAlA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cTqjCINamOfIpUoLEzcczQ", "review_id": "mXs2Hpl595jprF_H-16vlQ", "stars": 5, "date": "2010-03-08", "text": "Probably the best mall I've ever been to. Anchored by five mega stores - Nordstrom, Nieman Marcus, Macy's, Dillards and Barneys New York. It's so big, it took a couple of hours just to walk it.\n\nMy wife called it the best mall she's ever been too. Nuff said.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 2, "useful": 7, "cool": 3}, "user_id": "ikm0UCahtK34LbLCEw4YTw", "review_id": "r1BRTbYj6E0hho0yd-Xt1Q", "stars": 2, "date": "2010-03-12", "text": "When I bought my house a year ago, it came with a big, half-dead front lawn. I decided to do a desert landscape out there instead, & called a number of landscape contractors I found here on Yelp & also at the Home & Garden Show at the fairgrounds.\n\nI soon learned that this is an unprofessional industry overall. I had several company representatives never return my call to set up an appointment to come over & do a survey. I had others schedule an appointment & not show up. I had others come & do the initial survey but never get back in touch with me with a price. One guy I called said he would look at my yard on Google Earth & email me a survey. (He never did, & I guess a $3500 job didn't make it worth his while to come over for a few minutes!) I had a couple of others who got back in touch but with only a materials list. I had asked for a sketch of what they would DO with my yard for all this money! After probably more than a dozen tries, I finally had 3 legitimate, complete surveys in hand to decide between, & the price range only varied about $500.\n\nOne of my surveys was from Tom Baird at Creative Environments. After the survey, he emailed me a materials list & a CAD drawing that gave me a good idea what my new yard would look like. I liked it, so I went with them. Next, though, my job got handed off to another company rep, David Inness. David was likable, but the job ended up changing considerably from the agreement I had with Mr. Baird. For instance, I was promised that a BobCat skip loader would be used to dredge down 4\" to remove the old grass before the new materials were applied. That & other promises were not fulfilled.\n\nOn installation day, three workers (& no \"Foreman Chico\" whom I was promised would be here) came out to do the work. They didn't remove the grass at all, but rather put down some black plastic material over about HALF (!) of the yard. I complained, & one of the workers called Chico on his cell phone & handed it to me. Chico explained to me that they weren't going to dig down, or put down any more plastic, unless I wanted to go to the hardware store & buy some more myself! I tried to call David Inness, but he was unreachable.\n\nThe materials included a big pile of dirt & a big pile of gravel to be used for the job. The workers hand shoveled the dirt to form the contoured mounds as planned, but then only applied a very thin coating of the gravel on top, leaving most of the big pile on the driveway, AND LEFT! That was it, they told me, & that I could use the rest of the tons of gravel that I had bought in planters around the place, or if I wanted, they would have it picked up in a couple days!\n\nAfter trying to call for a day or two, I finally reached David Inness, who got the workers to come back over & finish applying the gravel, which they did, but unevenly. The gravel depth ended up being zero to 3\" deep. I moved it around some myself to even it up, but I shouldn't have had to, & since I didn't get the dig-down preparation, the gravel was already skating out onto the surrounding driveway & sidewalk. David had the workers now dig down a little around the edges, so that the top of the gravel would be down about an inch to stay put better.\n\nThis was the worst contractor experience I have ever had in my life. The only thing saving it from a 1-Star rating is that the nice plan for the layout of the dirt & plants was followed, & the yard does look good now. Of course I have a problem with grass coming up through the gravel, since it wasn't scooped out as promised. (I attempted to kill it ahead of time with weed & grass killer as directed, but all my estimators told me you really need to do both.)\n\nIf I had it to do over, I would have gone with Michael at Breese Landscaping instead.", "type": "review", "business_id": "NLwjvGh628IcuGGPpqirNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "64zr0ya6XxOYGZ4ao3WZ-Q", "review_id": "5H6qXUpaIsIlvWAKzCQbqg", "stars": 4, "date": "2011-10-08", "text": "After work one night, I had a rediculous craving for some Thai Curry, so I remembered driving past this place and always seeing cars parked out front. So, I thought, let's go there! Glad I did! I was a little freaked out when I pulled up @ 7PM, and there were no cars in the parking lot. Then again, it is in Sun City, so their dinner rush ends @ 6, so it made sense. I ordered the Yellow Curry with Rice and the Fish Patty with Cucumber Chili sauce as an appetizer. Everything was so flavorful! I would recommend this place to anyone looking for a great Thai experience. I did not give this a 5, only because I am still learning about Thai food.", "type": "review", "business_id": "8qrICL2tS2Rq7b5gxUdQwQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "8JyI7UXoXW_7XzbXwfpAUA", "review_id": "WRjFmBN_zxtQz1JzMtrhaw", "stars": 4, "date": "2012-03-27", "text": "Got the chance to go out with the wife and WITHOUT the child, so we decided to go here after reading about Beckett's Table in the paper.\n\nA lot more casual than I was expecting, but not necessarily in a bad way; I just assumed that being voted into the top 5 restaurants in the city, the place would have a touch more snooty-factor. Kinda like an upscale, family restaurant if that makes sense.\n\nI started with the creamy grits and schreiner's sausage trio. I have to say it was my first time for grits. Solid dish, I may prefer polenta to grits, but this dish was done really well. Wife went with the brussel sprouts. Very tasty, but strange to see as an appy - thought it might be more of a side. Seeing as they're not on the menu anymore, it doesn't matter.\n\nMains: I had the Short Ribs and my broad had the Cast Iron Chicken. I was blown away with the short ribs - they were indeed fork tender, as I didn't lift my knife once for this plate. Great flavourful mash with the red wine reduction. Truly a great dish. Wife's chicken was great as well. Smoky, tender chicken with the incredible stuffing.\n\nBacon cheddar biscuits were ordered, but we had to take them home as we were both stuffed. A little dry, but good the next day, however.\n\nService was rushed in the beginning, as our waiter asked how are meals were, but was gone before I could answer. He was in the weeds though as it was hella busy for a while. He made up for it later in the meal.\n\nDessert: wife had Nutella pudding and it was adequate. The coffee creme brule on the other hand was outstanding. Thick and rich, and packed of caffeine. Good finish. Oh, and good cocktail menu too.\n\nWill return.", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "I-P1v7sRjDLEfVOndp01kA", "review_id": "zSCxecTIDgIJBGchinOCCQ", "stars": 3, "date": "2012-04-28", "text": "Friendly staff and clean office.\nFrom what I have seen, somewhat frequent turnover with the Dr.'s I've had.\nRight now I have Dr. Susman, she's concise, to the point, compassionate, easy to understand.\n\nOral surgeon Dr. Lillien does his job well, I got my wisdom teeth out without complications or infections later.\nHealed up pretty well.\n\nScheduled out pretty far so difficult to get an appointment in if you have specific avail abilities.\n\nCertain staff could use more training on procedure and techniques to expedite the process and minimize x-ray radiation time.\n\nJulie is doing a breast cancer walk, so donate (personal check) and get teeth whitening kit for 99 dollars.\n\nAbout staff:\n\nKendall is very friendly and professional.\nNoreen seems like she could use more training (quite a few x-ray retakes with bite tabs), but she was friendly overall.\nThe process took a bit longer than I anticipated.\n\nSuggestions:\nTrain the staff thoroughly, with technique and procedure so it can speed up customer service. especially with bite tab as well as the other kind (the red circular one). Customers like to minimize their radiation exposure time : )\n\nClean office and helpful reception staff. Dr. Susman was to the point and very clear about wahts going on and what to do next.\n\n\ndownfall:\nScheduling can be somewhat difficult if ppl have specific avail abilities but in general, reception staff is very helpful", "type": "review", "business_id": "OesTe3GNqcnIk0ZGOhiM7A"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "Ovpa3S8xD96dLE5eDxcxJg", "review_id": "L_P1kb1cJYLHt9GWuz2fhg", "stars": 4, "date": "2007-02-28", "text": "How much is good pizza worth? Is it worth being subjugated by a tyrranical owner slinging expensive pizza? \n\nMaybe, but only if it's really good, which the pizza at Joe's happens to be. Decisions, decisions. \n\nIt smacks of the soup nazi in its unfortunate contradiction. If the pizza weren't so delicious, this would be a quick and decisively negative review. Sadly, for me the reviewer, for me the consumer, it isn't that easy.\n\nMy suggestion is to go during the day, before Joe is embittered by partiers and the lunch special is readily available.", "type": "review", "business_id": "4A628qyYpA4EhN6w6o-MYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FlQVCUaTh1Jd2Z9T039oKA", "review_id": "v6HDcM5gtcgd3GszQTiOKg", "stars": 4, "date": "2006-09-14", "text": "Fun bar. Gets PACKED during happy hour, and on weekends after 9pm. Sometimes the music is a little too loud to hold a dinner conversation. But hey maybe I'm just getting old.\n\nThe sushi is CONSISTENTLY good, above average good. Yes, as other reviewers noted, you can find better. But no other sushi place I've been to in Arizona can consistently serve up good fish every time I come in.", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wdJXFw8krKY6AXjjJ76qSw", "review_id": "jDbpIl98vhmHipZsRxB8rg", "stars": 1, "date": "2012-10-31", "text": "My wife and I have going to this restaurant on Thursday night for past three months to have a beer and a slice. A couple weeks ago I went there for the usual but there was an NFL game and a World series game on and the restaurant was busy. I put my name in and waited for my wife and the table. 30 minutes went by and wife had not shown up and the table had just become available. Hostess said I can't seat you unless your other party shows up first. I called my wife, she cancelled. Hostess would not seat me as a single...TERRIBLE..Hostess did not tell me this when I first put my name in. WON'T BE GOING TO ANY OF THE ZIPPS EVER AGAIN.", "type": "review", "business_id": "PN3aQAH-RONnK-ahkNm0xg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "9zp_JEmUScBI1lx9RuxGiA", "review_id": "e8FpsGoc9qozmle_lhs5Sw", "stars": 3, "date": "2009-12-29", "text": "Every time I visit my parents, I pass this place and see a long line of cars. Curiosity (and a good set of luggage my parents found here) finally convinced me to stop by. \n\nWell, it's a flea market. WYSIWYG. There's the good (nice luggage, some nice jewelry, some good foodstuffs), the bad (the same \"authentic\" Southwestern stuff you find in any gift shop from San Antonio to San Diego), and the ugly (several \"I [heart] Columbus\" Beanie Babies). \n\nI'll come back if I'm looking for something in particular (chiefly luggage or salsa) or want to get a souvenir for a relative I don't like very much.", "type": "review", "business_id": "RV9yiJmJNEpFv-CqgOo71w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "kp6CVuBi3m_3t-kRPKtIEw", "review_id": "5xD9jYF-ApUiuEUGVbuZZw", "stars": 5, "date": "2012-11-09", "text": "I have tried finding a spin class in Arizona that is of the intensity and variety that this studio offers. Bar none. The CoreBalance Studio has dedicated instructors that push you to your limit in an encouraging way. The unique thing about this studio is they use the \"RealRider\" (or is it \"RealRyder\"?) bikes that cause you to turn right and left to work your obliques.\n\nOutstanding workout! I recommend it to everyone who wants to get into shape.", "type": "review", "business_id": "X5j76x6F5RbbeqD6J51iqQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "FHJUj7EHB9nB2czVOzQX3Q", "review_id": "_xQr04YPWVgL1MlwEUHUyA", "stars": 5, "date": "2010-01-27", "text": "This is another one of those restaurants I would have never known about if it wasn't for Yelp. San Diego Bay Restaurant is tucked away in the corner of a shopping center on the main drag in Guadalupe.\n\nIt's taken me a long time to review this place. The first time I went was over two years ago and I've been back a few times. I have to admit, I've never had better Mexican seafood. \n\nUnfortunately since it's been awhile, I've forgotten what I ordered. I can tell you this though, every dish has been superb. Each bite was like heaven. I left wanting to try everything on the menu. \n\nThe servers always steered me towards great dishes with their recommendations and I've taken many people here, much to their delight. They've all raved about it.", "type": "review", "business_id": "QxpX4slDIOGFEHlPV4mrSw"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "wfvmwhhadHfpM9UoTV0OMA", "review_id": "bo_eoPn_Nixu0wF8HS41-Q", "stars": 2, "date": "2008-05-24", "text": "I couldn't agree with David more. The owner is definitley an interesting person. The more money she thinks you make, the more she will talk to and love you! So tell her you are RICH!! (Sorry Didi C.) As for the food - Ho hum VN food at high for what you get prices. The Pho is very avg and double the usual price. They don't charge a corkage fee for BYOB which is nice.", "type": "review", "business_id": "UIGFrEcoDsw05I1UOrxdOA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "JCfHBL4zGkPjtKVd9hS_Bw", "review_id": "OPGWwdPHofYIPx5izlGUXA", "stars": 5, "date": "2011-11-23", "text": "Picazzo's Organic Italian Kitchen is a gem in the many pizza locations that can be found in the Phoenix area. Picazzo's boasts a menu which includes appetizers, salads, organic and gluten-free pastas, and of course pizza and dessert! One cannot go wrong with any of the categories of foods Picazzo's offers, but there are certainly favorites that can be ordered upon ones first visit. \n\nPicazzo's offers a casual yet sophisticated atmosphere upon entering their establishment. One is greeted immediately by their hostess at the door and then you are seated promptly at one of their many tables (or the bar area if you prefer). The atmosphere is roomy with their ample seating, and friendly upon entering.\n\nOne of their best appetizers is their Mama's Meat-za Balls ($9.50). Made with three meatballs with mozzarella, artichoke hearts, organic tomato sauce, basil, and Parmesan, it is a savory appetizer that easy starts the meal off on the right foot. \n\nOne can choose from one of their many pasta dishes or their pizza creations, or even create your own creation. If going with one of their creations, I would recommend their \"Nonna's Favorite\" (gluten free) ($16.50, $21.00, $25.00). This pizza is a delicious combination of organic olive oil and garlic, Fontina and mozzarella cheeses, mushrooms, tomatoes, goat cheese, Kalamata olives, and basil. Melts right in your mouth and one can easy eat more than one expected! \n\nIf even after all of this you still crave something sweet - One cannot go wrong with electing their \"Classic Chocolate Chip Skillet Cookie\" ($7.00). This sinful combination includes two scoops of organic vanilla bean or coconut vanilla ice cream served with your choice of organic chocolate, chocolate mint, or chocolate raspberry sauce over a fresh-baked chocolate chip cookie. Oh wondrous dessert indeed!\n\nPicazzo's will leave you most satisfied and delighted with all that is good. With the finest ingredients, Picazzo's takes great care in delivering the best in atmosphere and dish. Stop by Picazzo's Organic Italian Kitchen today for an unforgettable meal.", "type": "review", "business_id": "Zruvunhqw7cuyuoe7g09Gw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ngR1Y009kpsuqWRdlKp7hg", "review_id": "zwopvGh5_9HZSbmA1ZG2eA", "stars": 4, "date": "2011-01-31", "text": "This place was unique for me because everyone seemed like they were inside smoking but it was an indoor outdoorish place. There were heated lights and it was the only place that I found pretty crowded where if you walked the streets there weren't a lot of people. \n\nThe food was good, I had the steak fajita, which you can't go wrong because its just steak. But I also had a fish taco which was pretty good. My boyfriend had the pick three meal, so he picked tacos, chimichanga, and enchilada. His choice was good and the chimichanga was delish. \n\nThe bathrooms were very rustic looking but it seemed to look that way, decent for a funky place like that.\n\nThey had live music Friday night, where a guy was doing bad covers on a few good songs.\n\nThe waitstaff was overall nice and they checked back at us here and there.\n\nOverall I'd go back if I was in around Scottsdale again!", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "sqLsoqm3lNxvfkOQ_wXucw", "review_id": "4KantXjpguK6eAmec9d2AA", "stars": 5, "date": "2008-10-16", "text": "What can I say about this place? I love it. Its straight up the road from my place. You can find everything here, not just Asian food. When I get a hankering for Bombay spice, off to Lee Lee I go. I love LOVE their meat counter. I get chills deciding which pork hocks I want. The fish fry service is nice. They have stuff I can't live without and can't find anywhere else i.e. aloe vera juice and those sinfully delicious dessert rice and of course, the makoks. The cashiers can be a lil raunchy though just smile and nod. And a little known secret? The vegetables are freshest on Fridays.", "type": "review", "business_id": "5KG0A3WlC7K3DAXtrIFFjg"} +{"votes": {"funny": 0, "useful": 4, "cool": 3}, "user_id": "2_31RaL6kz0vRQX41g9iXw", "review_id": "9s1sRHS73n4SJc8t7uND4Q", "stars": 4, "date": "2009-12-28", "text": "I needed to get away and Hyatt vacations was offering these rooms for a steal ($79 a night Xmas week!) so I decided to come here. The grounds were absolutely beautiful. Unfortunately they had a freak cold spell and I was unable to use the 10 pools, jacuzzi, waterslide, or any other outdoor facilities, but I did take a short walk around. I also had a balcony looking out at the pools and the mountains, but unfortunately it was too cold to utilize that too. The restaurants were too pricxey for me so I can't speak to those. Parking is free at the hotel. I did check out the Native American Education Center and thought that was a nice thing to have. I never did make it to the spa unfortunately. \nService was top notch: when I first arrived my key did not work and I stopped an engineer in the hall who got a new key sent up, and when I asked her where the ice machine was, she said I could call the bellman and he would bring some to me (I couldn't be that lazy, so I did go down the hall and get it myself). The bathroom was stocked with Portico products (decent sized bottles) and had a ginormous shower with a rainfall head and a handheld jet. I also appreciate the small light under the mirror which I could leave on at night rather than having to leave a larger light on. There was a refrigerator in the room which I used to stock water and bubbly from the Safeway down the road (the hotel is very convenient to many restaurants and shops). One of the best things was that the wake up call was a good old fashined person, not a machine, and she offered to call me back--gotta love a live snooze button! When I went to check out, the folio on the TV showed charges, so I called downstairs, explained I had prepaid the package, and the front desk people solved the issue very quickly to my satisfaction. Also, they have machines by the front desk that allow you to check in and print your boarding pass.\nMy one complaint and why I did not give it a fifth star: charging for internet. Seriously, in this day and age, that to me felt like it was nickling and diming the guests, many who pay a lot to stay at the resort.\nFor those who go to Scottsdale, I definitely recommend the Hyatt at Gainey Ranch (and check out the Hyatt Vacations website for some good deals).\n\nUPDATE: I checked my cc bill three days later and they had double charged me after all, despite giving me a zeroed out receipt. Poor form, Hyatt. She credited back to me, but what if I hadn't noticed?", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "jwSTtW_q8PULge2dK1t_Lg", "review_id": "ndSwfewtSaTTjXNm2wR71Q", "stars": 1, "date": "2010-12-23", "text": "I was excited to go to the lululemon athletica at Scottsdale Quarter because I really enjoyed shopping at the previous store that closed in Scottsdale. Well something has changed... I walked into the store and while there were more sales clerks than customers, no one said a word to me and no one asked if I needed any help. They were all too busy talking with one another. And to add insult to to injury... one clerk had to walk around me (didn't ask if I needed help) and went to play with one of the customers dogs.... I had fully intended to buy a Christmas gift there, but left because the service was so poor and I did need help with the sizing. I went over to the Nike store and had a totally different experience, very positive. I'll stick with Lucy and Nike where they appreciate their customers.", "type": "review", "business_id": "t0NencbvVVlH6mcRlNTPcg"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "N3L6SDymSRkYQtTiSDmXSg", "review_id": "dMBZ3Cklh4T6BMNhN4VLGw", "stars": 1, "date": "2008-07-09", "text": "It saddens me to say that this isn't the worst Mexican restaurant we've eaten at, that's on Oahu near Waikiki beach, but it's close. \n\n Damn it we had to drive by Arriba's to get to this place. \n\n I had a chimichanga that was a little anemic, though what there was of the filling was ok, beans tasteless, rice looked the part but as spicy as your average UK meal involving boiled meat and root vegetables.\n\n Erin's Fajita salad was similarly lack luster with all the appearance of being tasty yet bland chicken. Usually, unless there's an attempt at \"chefing\" as opposed to cooking I'll order a basic dish ( I don't shoot the chef though and trust me these guys are safe from Agent Sands , very safe) for the first time out and if the beans/rice suck.. no return.\n\nOverall It feels like aliens, space ones, are running the place and they learned cooking from pictures. It's certainly a mistake we won't be repeating.", "type": "review", "business_id": "WM8sy8FjrU3PpxN_NI02ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "03kllIN9ASWGmecQPLPqZA", "review_id": "2D-wwYsCXuzku_9m06XOsQ", "stars": 2, "date": "2009-11-24", "text": "Went here about two months ago and am only now getting around to reviewing it. I think that should stand for something in terms of my experience there.\n\nThe service was ridiculous. If one is going to charge the prices they charge for regular Americanized asian food... at LEAST make sure the menus you hand people are clean. Or your plates for that matter. Or silverware. Seriously! Did EVERYTHING have to be covered in grit or a mysterious sticky substance?\n\nNext up... the menu. Not everyone eats meat. How about a little more choices for us who prefer tofu over dead animal?\n\nI ordered the Coconut Curry Vegetables. Bland bland bland. I've had more flavor out of an unseasoned packet of ramen. And would it kill them to actually put some tofu on the plate?\n\nI guess I just don't understand the hype. The prices are ridiculous for the quality received. You're better off going to some little hole in the wall place where the food actually tastes like food and not reheated leftovers.", "type": "review", "business_id": "UtUXhKh7vOVvWJF48IzJvQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Tf8KjdTkI5XpCSWLVF9ytA", "review_id": "gSy1gUfzzjPl7dG6PLy-EA", "stars": 5, "date": "2012-11-25", "text": "We were in AZ visiting out for Thanksgiving and really wanted so go AZ mexican food but had to go to a place with a full bar for some Margaritas. This place came up on Yelp and looked interesting so we figured we would give it a try. The food was pretty good. My son had a cheese crisp, wife had beef enchiladas and a chicken taco, Mother-in-law had pork tamales, and I had the beef green chile. They gave us to big baskets of chips and salsa (which we eat too much of!). Everything was pretty good, but the margaritas were really good. I always try the house first time I go someplace since I think it is a good judge of how good a place is and theirs did not disappoint. I think they should advertise them more because they are so good. Very fresh tasting! Next time we go back to AZ we will definitely visit again.", "type": "review", "business_id": "OPKUjv6D5G46Lh2BHP20fA"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "OMKl9Tg_z7v7QySoGJJVMQ", "review_id": "mJ9ufgheE0JMrgfc9uoXVg", "stars": 5, "date": "2012-10-04", "text": "This place is perfect! Great food, great service and friendly people. We will be back over and over again! We ordered a few different things on the menu and all were excellent (Stetson chopped salad, scallops, testosterone salad). Lovvvve it!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7D6am_X5g_jcSwU6_mUivA", "review_id": "eYEBECb94_2kOmA6MAywOQ", "stars": 4, "date": "2011-09-01", "text": "I enjoyed this place. It was a nice change of pace. I'm really not into spicy food, but the food wasn't really spicy, although it had a nice kick to it. The place was a little small for my taste, but the food made up for it. The staff is very friendly and the prices were reasonable, compared to the huge servings of food. \n\nI went with a group. I had a blood orange mojito, and we shared some of their chicken, cornbread, creamed corn, steak, prawns, and the chipotle mashed potatoes.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ERjpvYJvL_36PwuliJwJ3Q", "review_id": "gzp-Yn7CasmFR1XVYUmpWA", "stars": 2, "date": "2009-04-10", "text": "I'm pretty sure these bagels have never seen boiling water, and to be honest they reminded me of nothing so much as the tragic frozen failbagels of my childhood. I guess our first warning should have been the exceptionally alarming \"CAPPUCCINO\" poster in the window, showing what appeared to be (coffee?) chocolate milkshakes with whipped cream and chocolate. :(\n\nTwo stars because it was, technically, an edible bagel, though my husband and I only managed to each finish half of ours.", "type": "review", "business_id": "bc_nukU3dtZ6zGm4oXqeuA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "FoW_qBwD2eEoWYQyG7WcRg", "stars": 4, "date": "2012-05-11", "text": "Four days and maybe seven hours ago, our hunger brought us forth to eat cheesesteak, to try a new restaurant, conceived in Philly, but dedicated to the proposition that not all cheesesteaks are created equal.\n\nWe shared a large chicken cheesesteak with everything (onions, bell peppers), and cheese wiz, along with some sweet potato fries.\n\nThe chicken cheesesteak came with a good amount of tender chicken, with a lot of flavor. There is a free-range mini fridge that is stocked with sweet , hot peppers, and fry sauce which is nice so you can customize your order with as many or as little peppers as you want. While the ingredients were good quality, the cheesesteak as a whole naturally doesn't really compare to any I've had in Philly, but it's good for Arizona!\n\nThe sweet potato fries were my favorite part of the meal. They tasted freshly cut, and were excellently cooked with just the right amount of crunch while still tender and sweet inside.\n\nSo would our forefathers be impressed by Forefathers? They probably wouldn't know what a cheesesteak would be, but if they tasted one, I would say they would be!", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "wYZpMnp2e2Np0zf89uFg-g", "review_id": "AJ3OBkWvAzS8pm-Q1MUl7g", "stars": 5, "date": "2009-12-15", "text": "I had a great dinner there. One of my best in a long time. It was sucha treat. Once in a while you have to take care of yourself and just enjoy what life has to offer. \n\nChef Juan was great to talk to. Seems this guy has been there sinsr they broke ground. \n\nIf you truely like yourself take a walk around the grounds after dinner and smoke a cigar at the big Fire Pit or over by the dock.\n\nLife is good.", "type": "review", "business_id": "g-eZgnBDvSDguF8cUxKCkA"} +{"votes": {"funny": 2, "useful": 4, "cool": 7}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "guEmPWK-7G-TA2k-MAcbLQ", "stars": 4, "date": "2012-06-02", "text": "It's rare that I have a date with my husband on a Monday afternoon/evening, but this past Memorial Day, we did just that. After a quick visit to the Science Center (the Van Gogh alive exhibit is a must-see by the way), we were hungry so we headed over to Rice Paper. Neither of us had ever been before, and we were pleased with our experience.\n\nIt was a tad bit too hot to sit outside, although they do have a covered patio with misters. We walked in and were seated and greeted promptly by Al, our server. He's quite the character. He made us laugh quite a bit in addition to being attentive and making some recommendations. We enjoyed the stylish renovated house / hip colorful atmosphere as well.\n\nWe ended up ordering a few things and sharing. Highlights included the firecracker shrimp. a spider roll, a shrimp roll, and a zen salad. Everything was light and tasted fresh. We really enjoyed the dipping sauces that came with the spring rolls. They've got such a huge selection of the spring rolls, that I can't wait to return to try some of the others. They don't have a huge selection of Vietnamese entrees, but it appears that they will custom create a bit upon request.\n\nI highly recommend going for the \"food happy hour.\" It's from 3pm - 6:30pm and includes $6 appetizers & $1 off all spring rolls. Such a deal! We didn't take advantage of it, but the \"drinks happy hour\" is actually 11am - 6:30pm and specialty drinks are $6, house wine by the glass is $5, well drinks are $4, and draft beer is just $2.75.\n\nIf only Rice Paper was a tad bit closer to home, I could see myself being a regular... Instead, I'll keep it high on my list of spots to return to when I find myself heading downtown!", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "WA1cLGGfTyj6bCgfP9mf2Q", "review_id": "H2zAqv3nmj51R2C4k4U3Mg", "stars": 5, "date": "2011-05-20", "text": "Love it! Closest thing in Tempe to the food we actually had in Thailand.", "type": "review", "business_id": "puFrm8eNizztqaWr_e32pQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6r-WELTsUsWe77AEBdVG3A", "review_id": "E5ni1eW_mqcHrIfpMwrlmA", "stars": 4, "date": "2011-04-19", "text": "Recently ate at Macaroni Grill at Desert Ridge, went with friends and drank wine and ate light, just grilled veggie platter with rosemary bread. It was so delicious. The veggies were grilled perfectly, very flavorful, the bread was perfect dipped in olive oil with pepper. We drank the family wine which is the house Chianti you pour yourself. Had a perfect evening, stayed almost 3 hours. Service was excellent!", "type": "review", "business_id": "UexMw8s7B1J-RtFOQtCCsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aRgTBYbG-eZipFRIipGlrA", "review_id": "JVoPK0aYG7KSOVzIJ5PfMw", "stars": 4, "date": "2010-10-11", "text": "This is an outer arts district staple in the Valley. The neighborhood is spooky if you don't know the area, but it is worth the possibility of having your car vandalized to stop in. Great live performances, mellow guitar, etc. and fantastic food. Hummus plate, Mm. Greek salad, yum. Cheesecake, yes please. The service is European style so expect to wait and wait some more. Seat yourself inside or out on the lovely patio.\n\nAcross from a fun locally-owned boutique you can stop by if you're there earlier in the day. \n\nI stocked up on the 70% off gift certificates for this little gem of a place at: http://www.citydeals.com/deals-merchant-Paisley-Violin-Cafe-Phoenix-AZ-LOC41462852.html?id=2852\n\nYou can thank me later. I'll probably be at the table next to you.", "type": "review", "business_id": "IceZ4BtTz76eppjNWm-c6A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pOim-Tccfc6Aw0ynGdPmYw", "review_id": "SqxwrURoVC6fbodSIIw3BQ", "stars": 5, "date": "2012-07-05", "text": "Love this place !\n\nFood is spicy and always cooked just right. Menu changes every so often and have nightly specials too. Service is great. No matter what night you go it is busy.\n\nit is a great little find.", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 6, "useful": 11, "cool": 10}, "user_id": "Q96IRvil6RNgdLmGKuh81A", "review_id": "FgjKa1m9xEqClca2I6V3mQ", "stars": 5, "date": "2010-09-13", "text": "Cibo! Cibo! Cibo! I love you and your cute old farm house, your amazing pizza, affordable wine, awesome crepe desserts, and fabulous staff!\n\nI want to live in the apartment above the restaurant!! \n\nGo to Cibo for awesome food, charming atmosphere, and a great time for a girls night or on a date. Cibo has quickly become my favorite place in Phoenix! \n\n*They're closed on Sundays...found this out the hard way.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "3yc5JeWwQVhjx22Lx6OQ0Q", "review_id": "jGWhZk2vi5wzdqSlcOk-dw", "stars": 1, "date": "2008-06-08", "text": "La Grande Orange Grocery has a problem. It can't decide what it wants to be when it grows up, and that makes the overall experience iffy. Is it a quick mart? A grocery store? A restaurant? A coffee shop? Unfortunately, it can't be all of them.\n\nI love La Grande Orange Pizzeria, when there is table service, fun wait-staff, and delicious food. But during the day on the weekends, the Grocery is too busy and unorganized to tolerate. It is not set up for the crowd, they do a poor job of line management, and when there is a line to order, the rest of the Grocery is impossible to navigate. To top it off, the counter staff shouts at you when your food is ready. Unnecessary.\n\nI'll certainly be back at night for the pizza, the delicious wings, and to partake of the best gelato shop adjacent to LGO. But I'm afraid that I won't be back for the weekend chaos.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "-pwv5EDTQOHQr6SiLSedcw", "stars": 3, "date": "2011-08-16", "text": "Pool supplies next to Quiznos Subs!", "type": "review", "business_id": "U1Xat7TmxO7Umk2iyhsa0A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "chI2p-ROg2tXI2-tT2_G2A", "review_id": "klP9dr23QB7nsJS48HJTaQ", "stars": 4, "date": "2012-04-29", "text": "A very inconspicuous coffee shop located right below Elizabeth Arden's Red Door Spa. \n\nThey have a couple of pastries but just ordered an iced coffee for $3.00. It was a bit ''watery'' for my taste but on a hot afternoon, it hit the spot. \n\nWish they had sugar water to flavor it but didn't see it available.", "type": "review", "business_id": "6nH0DLfofTytTeZJSkprgw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0F2cVoPyMrzsqIyv_spDFg", "review_id": "F1MDo7oyKx9_32fkTiwFEQ", "stars": 1, "date": "2012-05-17", "text": "I found Gaylee to be the most unprofessional nail tech. I found her on an internet deal. I called her on Sat and requested an apt on the following Friday. She never returned my call till I reported her. She denied my 5 messages and said she only got one msg which she couldn't return cause she lost her voice. She conveniently had a voice after she was investigated. I would never trust her to do my nails. Yet reading the reviews she did return some calls.", "type": "review", "business_id": "7XulXhz9PN2ctxtv0B0b7Q"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "ky9pQ8AKufvZ63IxR41jGg", "review_id": "L285u6cNVPxVobRiAGTgIg", "stars": 4, "date": "2011-03-04", "text": "If your going to see the Phoenix Coyotes at Jobing.com arena.....or the Arizona Cardinals at the University of Phoenix stadium....then you you can't really miss the experience that is the Westgate City Center. Now it is not a spectacular mall by any means...and the parking is a bit confusing...but it does have it's own flair and style. During the summer months it is the perfect place to go after a game or event at the stadiums...because you can grab some dinner....a drink...take a nice walk....or just hang out and watch the stars in the beautiful skies over Glendale Arizona. The best part about all of this along with the close proximity to the stadiums.....is the parking is FREE....can't beat that. Eat, Drink, and be Merry my Friends!!!!", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "F66ALXcvZJcpGMbJ90zS8g", "review_id": "TgehaXzkJHxD4isfJ_-lcQ", "stars": 2, "date": "2011-11-14", "text": "The kids and I LOVE Starbucks but this one leaves a lot to be desired.. We have been here a hand full of time and each time I keep asking myself why do I go back to this one? \n\nThe service there is almost rude. They seem as if they are annoyed to be busy. They never seem to be happy to service you. Drinks take forever to make, even though they aren't as busy as other ones are. We won't even go into the fact that my order has been messed up the last 2 times.\n\nThe main issue I have is the fact that 3 out of 5 times when sitting and relaxing with a snack, someone has to sweep the floor near me. Really? While I am sitting there?\n\nThere are much better Starbucks and I think I am going to try some others locally.\n\n\n12/06 - The kids and I went in today for our \"snack\" wanted to say things were better today. I am not going to change my rating until after my next visit ;)", "type": "review", "business_id": "gsNv5QNfuFnD8eMhejSmGg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iUl-ctdtKfCW2cXJri8tFA", "review_id": "dJEpptp4oy-naFdEn7_hgA", "stars": 5, "date": "2012-10-11", "text": "Thanks for the positive reinforcement talk, and explaining, I just need to take my time. Thanks Robin, you encourage me,\nI have been sick, and so has my family. I have missed the last couple of weeks and boy can I feel the difference. You know when miss something for a period of time?? Then you have to start all over, but that o.k.\nThank you again Jim and Robin for taking those few extra minutes to ask me how I am doing and how my kids are since I have been gone. Thanks so much for caring, weather its about my kids or my knees or the fact that I have a pain pump in my stomach and have a hard time laying on my stomach, which Robin saw I was not putting full weight down on my stomach. She asked me after class what was going on and if I was O.K. She made me feel important and cared about. Where are you ever going to be working out and after class the teacher checks in with you, to make sure everything is alright. Jim and Robin Love this practice and so do I. I feel what makes them different is the caring aspect. The checking in with you. If you ever have a question, Jim and Robin will ALWAYS take the time answer questions or just see how you are doing!!! Thanks Jim and Robin! I will be back soon!!!! Thank you for being the best Bikram yoga around and thanks for just being non-judgmental, caring, and hopeful for everyone in the class to push harder and just do it the RIGHT way!!!! Love your studio, Love Robin and Jim as people!!!!!!! This is the perfect place to either start or to be challenged.\nThanks, Nicole Skarderud", "type": "review", "business_id": "z1SUerxBQY9EgLaiRf_QDQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "QT-7jpsEuCR-pFro59KBtQ", "review_id": "yz_WHG25INZ69qaPg_VLVg", "stars": 5, "date": "2009-09-22", "text": "My husband and I have been going to the Touch of Thai for years. We meet up there at least twice a month for a lunch date. On special occasions we take friends and family there for dinner. I love the wait staff - especially Nick! His wonderful sarcasm and jokes always make our day! \n\nFor the amount of food you get at lunch at the price they charge - you can't beat it. Everything is homemade and tastes fresh. #3 Yellow Curry is my hubby's favorite. Rich coconut based sauce with yellow curry. The chicken is tender and the potatoes and carrots are cooked perfectly. I venture off and try things from time to time. The food is spicy. I like the incorporation of fresh herbs into the dishes. The soup served with lunch is always yummy and changes from time to time. We always get a side order of spring rolls. You need to try these! I like the Pad Thai as well as the #5 and #7 lunch specials. Meals are served fairly quickly. \n\nSometimes we have to get up and refill our own water glasses however I find this to be a wee bit charming. Feels like I am home. If you go there on a regular basis the servers remember you, have your order into the kitchen before you even are seated, and always say hello and smile.", "type": "review", "business_id": "qyNtVViurIcChc35mfYIEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L3-csFTxPRnG9eVIYoVoGA", "review_id": "meUcBjICsw7rTfuk1-Ucmw", "stars": 4, "date": "2011-08-08", "text": "Was not satisfied first trip, service was awful and place was deafening. But we thought food was worth trying again. So, now that the place has been open and matured it is much better. Our sever was good, the place was about 1/2 empty which made the noise level much more bearable.\nFood, very good. Not chicago family run good, but for the valley very good.\nI asked for my shrimp to be spicy and it was. Hsb can't handle so hot and his curried duck was mild as requested. The mustard wraps, unusual and tasty. Hsb loved the peanut sauce. Chicken and lemongrass salad, good flavors. We will be back.", "type": "review", "business_id": "NCtzWkMbE13r2M2Sg0wH9w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "OJIDOnY4HTKEdREfs0xP4Q", "stars": 4, "date": "2010-04-11", "text": "Honestly I go here rarely. My recent visit was to watch my godson while his parents were doing family picture photo shoot in the Chinese gardens and pond areas. You can walk the whole cultural center and its gardens in 10 minutes, so there isn't alot of sightseeing here. But to get a little glimpse of some replica gardens and seating structures from China, where else to go? So 4 stars for the somewhat idyllic gardens in back behind the shopping plaza, cuz there isn't any other place in the valley like it.", "type": "review", "business_id": "PsuvqWNmLBU8ABkch2d9vA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "EOlGkRn-83UnF7634dOUKw", "review_id": "pbt8kaTVBcBWsbR4AWiX_g", "stars": 4, "date": "2009-05-03", "text": "Pretty cool place that appeals to 2 very different crowds. \n\nMy friends and I stayed downstairs for the majority of the night. The hip hop music was pretty good and the DJ had a excellent music selection. The bartenders were very friendly, except for one of the blonde girls. When I put my empty beer bottle on the bar, she took it and I raised my hand to say \"thank you\" for taking it. Then she came back with another beer that I didn't order, and I think she got a little pissed because she misunderstood me. At the end of the night, I asked for some water and she only gave me a bottle instead of just a cup of tap water and charged me $2. Don't be a hater lady!!\n\nGET A SHOT OF CAFE PATRON!!! If you like coffee and patron, it's literally the best of both worlds. And, to top it all off, they are only $3 A SHOT!! Very reasonably priced. I had 3 within a span of an hour (I'm a heavyweight so I wouldn't recommend that for everyone!)\n\nUpstairs, they have techno/house music and it's packed like no other. The people are really cool though. They have friendly battles and it's pretty cool to just watch them for about 10 minutes. Depending on your scene, you can pick either floor.", "type": "review", "business_id": "7_7fxuG9ESAFmx-AiMsJHg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uVywgLchTCdLmlMV7yaWOg", "review_id": "oL1gZrDnDfFrLl2EudOXOA", "stars": 5, "date": "2011-01-10", "text": "Pho-k yeah .......and the spring rolls too ........", "type": "review", "business_id": "Zy2vca7i9QFGRKa4m0C__A"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "Wuh0Tdv8WGpDwbu0ICOWpA", "review_id": "tT47mzzTOUDEVLeYCZa3ow", "stars": 1, "date": "2012-05-25", "text": "Tonight at Noca Phoenix\nNo dinner -waited 1.5 hours with no communication only to be told they were out of the fish I ordered left the restaurant 2 hrs later very hungry Very \ndisappointing", "type": "review", "business_id": "DcrM4hwDcU2G6vuh2cnaYQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rC11FhTVhZsC4KXHvXelQg", "review_id": "hIp0LojvxVFyNwNJZn_Qzw", "stars": 5, "date": "2010-05-09", "text": "I love Sapporo. They have reasonable prices, a big menu, great music always playing, entertainment (people watching), etc...\n\nTheir sushi is very good. They have fun drinks. \n\nIf you make a reservation for dinner you usually don't have to wait.\n\nP.S. They have amazing deals for happy hour, but get there early cause it gets packed!!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Li5WZKEP243vOoQeP0ftiQ", "review_id": "CibTKYSXgA8wCzKBSqZmkg", "stars": 1, "date": "2012-04-16", "text": "Won't be going there again. Our chicken was pink! Manager was a prick in regards to that and service was all around crappy.", "type": "review", "business_id": "U7jOpLoLXYphWFqS6JO8mQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PUpoXVAuLunyXX-oZB23uA", "review_id": "cdSp_2zKL6FaMIqa11yl9g", "stars": 4, "date": "2012-08-19", "text": "I stayed here with my family (3 people in 1 room) for 3 nights. What first attracted us was the rate, but what made us happy with the choice was the cleanliness, coolness (literally--good air conditioning), and accessibility of the hotel. It's wheelchair accessible. The best part of the hotel is the staff. The front desk team was incredibly helpful--much more so than you typically see at a chain hotel--and they gave us regular maps/handouts as well as printouts that were tailored individually for our needs. Even more astounding, though, was the cleanliness of the room: the staff cleaned the room so well after our first night that when we returned on day two, it looked like we had just walked into the room for the first time. (In my experience, most hotels do a better clean-up job in between guest stays rather than do a good job every single day, but these folks are the exception.)\n\nReasonable, hot breakfast. Eggs, swine, cereals, pastries, juice, milk, coffee, fruit, yogurt... You've had it a million times, but they do it just fine.\n\nThe definition of 4 stars is \"Yay! I'm a fan.\" And that's true. Didn't give it 5 stars because it's not \"Woohoo! As good as it gets!\" to me--mostly a product of the location and lack of distinctiveness as a hotel experience--I would only give 5 stars to an excellent \"destination hotel,\" and that's not this place.", "type": "review", "business_id": "RmpxrudpbCPmEnt4jSlpnA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BiDA7uVJ5igMCsp4ZfpCpQ", "review_id": "3CXTmARnSNbnvMv-Tf903g", "stars": 4, "date": "2011-11-21", "text": "I'm from New York, so you can bet the firs thing I asked everyone when I moved to Phoenix was \"where should I get some good pizza?\" Everyone responded \"Pizzeria Bianco!,\" but a few wise ones told me to avoid the crazy wait and check out Cibo. Still haven't made it to Bianco, but why bother? I've been to Cibo 3 times in the past few months and wouldn't have it any other way.\n\nThe service has always been spectacular. There's a good selection of beer and wine, and an almost impossible-to-choose-from selection of pizzas. We're not talking New York thin-slice sauce-and-cheese, we're talking locally sourced ingredients and artful combination. Perfect crust topped with the perfect combination of delicious meats, cheeses, and veggies galore.\n\nYour least favorite part of the meal will definitely be trying to pronounce the names of the pizzas. Your favorite part of the meal might be the pizza, or it might be the ambiance (hard to decide between the cozy outside with live music and fire pit or the quaint inside that boasts everything downtown Phoenix is good at). \n\nGo with a group of friends and stay a while.", "type": "review", "business_id": "V1nEpIRmEa1768oj_tuxeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UL9chyH0a4Pj8J_9M6WSpA", "review_id": "yBOzJp7G-yWzzunrdGJapg", "stars": 3, "date": "2009-07-26", "text": "I stumbled upon this Friday's while walking around Phoenix on a Sunday afternoon. I wanted to just go up and have a drink and then take some pictures of the empty baseball field. Phoenix was completely empty!\n\nWhen I got closer to Chase Field there were some more people and I realized that there was a game going on! I didn't think I would be able to get into Friday's because of the game; however, it wasn't very busy! I sat at the bar since I was by myself. But once I was there awhile, I noticed there were still tables open looking out into the ballpark. So basically you get to watch the game for free as long as you are ordering stuff. I thought that was pretty cool.\n\nAs for the food/drink...\nI ordered a daiquiri when I sat down. It was pretty bad. Almost too slushy. I looked through the menu and asked if they had any smaller portions or lunch portion. I was told that since it was a game day they have a different menu and everything is larger. So I didn't order any food.\n\nThe service was good. The waiter was nice and another waitress named Kimmy even came up and talked to me for a little while. I'd definitely come here again just for the view.", "type": "review", "business_id": "1-1VcGTL3GyCqUpXZLFTZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QOr2VtUFGZXJTxhvH5VhXg", "review_id": "E1XMtLsow47LmvrqCHJRNg", "stars": 1, "date": "2011-11-19", "text": "Having a miserable experience flying from Boston to Reno. My connection was in Phoenix, and the flight from Boston was running a bit late. I asked both of the flight attendants if it would be possible to deplane before the other passengers as I had a very tight connection to make. One actually laughed at me and told me I would be fine. 12 hours, a horrible nights sleep (as they did not offer me hotel accommodations) and two delicious airport meals later I am sitting in the terminal waiting for my flight from Phoenix to Reno to board. Sorry buddy, not really fine. I missed my flight by 5 minutes. I would have been fine if US Airways offered their customers with tight connections the opportunity to deplane first, as every other airline I have flown on does. Will avoid them at ALL costs!", "type": "review", "business_id": "bA-Cj6N9TEMlDlOh2aAnUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "edNdxDyzMiZCHEBMbo8H4Q", "review_id": "2pWGiV-hB0fh3DoW7jgHTQ", "stars": 4, "date": "2011-03-26", "text": "went here for breakfast with some friends. it was pretty busy and only had to wait maybe 10-15 mins to be seated. not too bad. quick service, we had coffee almost immediately. \n\nthe food was delicious. standard breakfast food in my opinion. i got the corn beef hash meal. everything was good, and cooked the way i like. i would definitely come back here if i was in the area!", "type": "review", "business_id": "UI8iKvzhGn2qZCGIqtQqrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "9GHSDxMZMQ_nbnI2xS4AjA", "review_id": "kknuhnM3NM3XwcY7NRJR-Q", "stars": 5, "date": "2012-06-23", "text": "Celebrated my anniversary here. Everything was amazing. Enjoyed the filet mignon and the lobster with prawns. Luis was our server and made our experience truly amazing. He made everything perfect. He gave us our space, but at the same time entertained us when appropriate. He recommended a great wine to pair with the lobster, and made sure we were well taken care. We capped our meal off with creme brulee and a dessert wine. We will definitely come back here and ask for Luis again.", "type": "review", "business_id": "3Zsjlum5kl5N5KV712aTMQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1kbCpvI2Rg2SrvqNHX2BQw", "review_id": "K5oanAKRhQ4IfvE_K6kfCA", "stars": 4, "date": "2011-12-06", "text": "We had a great lunch and enjoyed our visit tremendously. Of special note though was the help I got from one of the guys on giving me some directions to Florance via the \"adventure route\", It was very nice of him to spend this time with me. Thanks for the great service. If you vist juisit make sure to take time on the patio and enjoy", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "SNH5L8QZ4kT9unURQUrYow", "review_id": "QHqYjvqvtn7Zh9bgvNYxtw", "stars": 4, "date": "2011-02-21", "text": "Rare find in the East Valley! \nCute Cupcakes and the place definitely has character!\n\nI ate a coconut cupcake with sprinkled coconut and glitter on top. I only bought one cupcake and took it hope to share with my 3 roommates. It made me wish I had more cupcakes to share with the rest of them! We took our forks and gulped it down. \n\nThe pink frosting was delicious and melted right in our mouth. The cupcake itself was very rich and moist. They must have substituted milk for the water while baking it, I could tell, so moist and mouth watering. \n\nI will be coming back here to eat for breakfast and lunch. Its a great place to study.", "type": "review", "business_id": "JuBygU4XDjqSeW9okyvbsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "F3IAjFGRh5cBSS5es3CgCQ", "review_id": "s2cybrOvOqRqhD1MCSlw2w", "stars": 5, "date": "2012-06-28", "text": "Very small, but wonderful food and wine. Some of the staff mentioned that they worked previously at Bomberos Cafe & Wine Bar (now Timo's Wine Bar).\n\nThe concept of this place is killer.", "type": "review", "business_id": "XU5Fb3TosXDUJcNRWQM5cA"} +{"votes": {"funny": 1, "useful": 7, "cool": 6}, "user_id": "g84VjttN28PWiv_WtdhnSQ", "review_id": "EqW0Vvu8B8LaIXJQduQeSw", "stars": 5, "date": "2007-07-28", "text": "The Harkins Camelview 5 gives Arizonans the unique opportunity to see movies that are normally reserved for screens in NY and CA. Without this theater there would be very little chance to see independent or foreign films in Phoenix. I give a lot of credit to Dan Harkins for keeping this theater open. He certainly can't make much money at this location. It's financially impractical to keep such a small theater operating on such prime real estate. This just shows Dan Harkin's commitment to sharing great films with the people of AZ. \n\nThanks Dan!", "type": "review", "business_id": "GOlq9CGj4APl_S2jyhMr1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AMB8rfw34dGm_q2MfaTkcw", "review_id": "IaJB0iSUO4FYm-Uz7GmZvg", "stars": 4, "date": "2010-12-01", "text": "Burritooooooo lunch special!!!!! awesome, tons of chips and salsa", "type": "review", "business_id": "oqZPXoenkQvAKQJ2pDCo0A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vp1LUMkedWATnFeVFteASg", "review_id": "KRhGjSsM20Yj_gDxV5EhlA", "stars": 4, "date": "2011-07-18", "text": "If you want a good neighborhood bar, Ernie's is exactly that. This is the place I go when I'm not looking to get all dolled up but I still want to go out. There is nothing unique about it, it is just a bar that is good at being a bar. It also has all of the best activities for drinking. \n\nI LOVE shuffleboard and a dive-bar is not a dive-bar without it. Great thing about theirs is it is in the patio area so you can smoke while playing (I smoke when I drink, yes filthy, disgusting habit I'm aware) ...sometimes they charge like five bucks for the pucks other times not, depends on the bartender I think. \nThey also have two pool tables, and I think golden tee. \nTheir is a room that has karaoke. I am a singer and enjoy karaoke from time to time, the night I participated there were some amazing singers and it was really fun to listen to everyone. The karaoke DJ. has a really good selection of songs, lots to choose from you will probably find what you are looking for. \nI tend to get hit on every time I'm there which I guess is an ego boost but I would prefer to be left alone at a place like this. I'm usually in the mood to do my own thing with my own friends at a place like this and don't feel like making new friends but that's just me. \n\nNot sure about their drink selection, I always just get Michelob Ultra (lame I know) or cranberry/vodka...the mixed drinks are strong, their well is gross though but to be expected. \n\nAlways a good laid back time at Ernies. They can count on me as a regular.", "type": "review", "business_id": "9DsXB8T3UwBYiLPiLJJuNQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "xdWsnbaTEfBMVHttqZDHxg", "review_id": "dbCgw1pJ6yLOYo7LexBpYA", "stars": 4, "date": "2010-06-26", "text": "I unashamedly adore this place. And it's not b/c I spend gobs of money here... it is b/c I don't have to drive and zig zag all over the Valley to sample (and decide if I like) many of our infamous local food offerings...\n\nEssence's macaroons from Tempe, Tammie Coe cupcakes and MJ's breads (what I always look fwd to) from CenPho, growing selecting of gelatos from all the places you read about... it's a one stop sample shop (ok, you pay for it), and a place I always hit when I'm up in N. Scottsdale.\n\nThe $5 cheese boxes are great, a mini variety of 3 cheese in their to-go section is a great way to try new cheeses w/out risk.", "type": "review", "business_id": "O510Re68mOy9dU490JTKCg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3eit3w0zDbb-z57c9P60vg", "review_id": "UCDcNMleHjT8iC7fgQq78Q", "stars": 4, "date": "2011-05-13", "text": "Good, quick option in downtown phoenix. We dined here before a Suns game and we got in and out with great service and delicious food in under 45 minutes. The Pho was very good, as was the noodle dish I ordered.", "type": "review", "business_id": "NLVcGseUhgQdABs1mIYk8g"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "nBWpiVYE1tA-KwD3FUTklA", "review_id": "UJGo_fgwI_hgctJUkGolSg", "stars": 4, "date": "2006-12-10", "text": "It was a busy bustling little town perched atop a small hill between the mighty Superstition Mountains to the east and the Goldfield Mountains to the west.\n The first gold-strike was made in 1892, and it took just a little under a year before the town came to life. One rich strike after another supported the town and approximately 4000 people who lived in the district for five rich years.\n The town boasted 3 saloons, a boarding house, general store, blacksmith shop, brewery, meat market and a school house. Just when it looked like the town would outgrow Mesa, the vein faulted, the grade of ore dropped and the town died a slow painful death. After several unsuccessful attempts to reopen the mines, the town did come to life again from 1910 on and off until 1926.", "type": "review", "business_id": "O4jXtRnS_R9SyM7ckMhFmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b2DKC4kC8-QeSeGZ_MF3XQ", "review_id": "aqWGYrBWyX0wJs8yhhgXBw", "stars": 4, "date": "2011-12-28", "text": "While I am not usually a fan of corporate restaurants and brewpubs, BJ's in Chandler is an exception to the rule. The beer is fresh as it is brewed on site and they usually have a couple of offerings that set them apart from the main street amber ale brewpub crowd. The best deal is the all you can eat soup and salad at lunch for around $8.00. Food is above average pub food and the pizzas are a ok. They also make root beer for the kids.", "type": "review", "business_id": "IMGW6y8wHQCfr_6k-YXg_A"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "ARe8Nr_YehB2ubsGJhZ-hg", "review_id": "jDxrMKFG09JCmTQoAYg1mw", "stars": 3, "date": "2011-03-25", "text": "Traveling sure makes me hungry! After a long flight from Chicago I was just about to break into my 3rd bag of pop chips when it was time for lunch. Hooray!\n\nI joined the infamous Lindsey F and Gabi M for lunch here at Daily Dose. When we walked in Gabi told me it was a 3 star restaurant. I wasn't sure why we were eating at a 3 star restaurant when surrounded by so many fabulous dining establishments, but any food would do.\n\nWe were able to grab a table immediately, the menu is pretty extensive and our waitress was friendly. But yep..3 stars. My rock shrimp tacos sure beat another bag of pop chips, but weren't anything special. And the friendly waitress forgot about our hummus appetizer.\n\nIf I was in the area I wouldn't hesitate to grab a quick bite or drink here, but nothing here to hop on a plane back to Phoenix.", "type": "review", "business_id": "e8FMAuTswDueAlLsNyLhcA"} +{"votes": {"funny": 1, "useful": 3, "cool": 0}, "user_id": "DMmskLAvRS4wZDQhXRL0Qg", "review_id": "aT3CxLvtslU3c7cSlLU54Q", "stars": 3, "date": "2012-04-24", "text": "Food is good. Don't take kids though.\nKids pasta was $7 with no accompaniments.", "type": "review", "business_id": "BPi1Q5wX0_o5VlO_XRyYuQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lJkAh61J1180sPmdt4OK4A", "review_id": "KJB4mpxZ3W0oxtNzYOQzag", "stars": 5, "date": "2011-04-04", "text": "Excellent place for a nice dinner, A classy place to bring friends for cocktails and food", "type": "review", "business_id": "oXKPSI-RUqOvmuSCh_DEQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "OHkMbVbIeEQEGuFQZ36qDA", "review_id": "XWqn08mwWUVGpY69iW_j1g", "stars": 3, "date": "2011-07-07", "text": "Decent upscale place in Tempe. Great ambiance outdoors on the patio. Service is very sketchy...sometime good, sometimes bad, never great.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ItWQ-pBKzau5hg33tAxwRw", "review_id": "LR50AbUcCHlfYCMhJW45Dw", "stars": 1, "date": "2012-03-15", "text": "Went for lunch. Took over 30 min for food to arrive. Ordered chef salad. Made with processed turkey and ham. Also with processed cheese slices. childs choc milk was not mixed up. Kraft mac & cheese on kids menu. \nWon't come back again.", "type": "review", "business_id": "rLv5DPLnO67TCHIbbBWYPA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3am2PwtajoR3LIlP7XZtbA", "review_id": "Oh7UCF9eWZJlHuXHL1C4wQ", "stars": 5, "date": "2011-05-06", "text": "I love the Valley Ho! It's a beautiful property with great rooms, a fantastic pool, an excellent restaurant -- Trader Vic's and a really nice spa. Be sure to stay in the newly re-modeled Loft Suite. It's two stories and it's fantastic! If I was to take a stay-cation, I would be sure to stay at the Valley Ho! And for all you out-of-towner's who want to stay in Old Town Scottsdale and be close to great shopping, restaurants, and nightclubs, the Valley Ho should be at the top of your list!", "type": "review", "business_id": "6Kon3cR5ZEm5rmYKlpcfcw"} +{"votes": {"funny": 1, "useful": 5, "cool": 6}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "n3Ze46ehctKD0TGAOi1MIA", "stars": 5, "date": "2012-03-11", "text": "Going to Desert Botanical Garden is the perfect field trip for a beautiful day like today... I've been to DBG a handful of times for events, exhibit openings, meetings, and of course Yelp In Bloom (a yelper party that I planned a couple of years ago)... but today I went with my son and we met some other friends with the sole purpose of checking out the butterfly exhibit.\n\nWe didn't get lucky enough to have a butterfly land on us, but we did see tons of gorgeous butterflies. There were orange butterflies and yellow butterflies and striped butterflies, etc... The flowers in the pavillion are pretty to look at as well. We visited the gift kiosk afterward and took home a butterfly finger puppet, which I know we will get tons of use from (only $6.25). The exhibit runs until May 13th, so don't miss it!\n\nAnd if you do find yourself with more time while you're there, definitely check out the design for a living world exhibit as well... I saw that when it first opened and it was really cool. The photography alone is worth a visit.\n\nI just wish I had more time to explore DBG more often!", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y1pcDeo5NWpYOjGdAvr05g", "review_id": "JTUUQNlYOgmgrQRthk-1qw", "stars": 5, "date": "2012-12-01", "text": "This place is awesome. Just bought a loose super powers darkseid. Will def be back for more. Lots of loose figures. Great prices and friendly staff.", "type": "review", "business_id": "9AwAmDwjNX_WUuhSdYTKQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e_UWyLsNM4SxEwpXm8rOSg", "review_id": "6EDA2uXRsuq2oCUfVZBO5A", "stars": 5, "date": "2011-03-04", "text": "This place gets it right from the moment you walk in the door. Signed baseballs jerseys and bats by legends on the wall, a friendly host to greet you and when you sit down they ask if you want free chopped liver. It comes with bits of egg and onion, warm rye bread and bagel chips. \n\nOur waiter, Jeff, was friendly and attentive, even lending us his flashlight to read an old newspaper story in the rafters. The cream of mushroom soup made from scratch was superb. Our mains were baby back ribs, the specialty of the house, cooked perfectly with a flavorful sauce. The 'broasted' chicken was to die for: moist and juicy with a crispy outer skin. The fries were piping hot, as they should be. And the portions are beyond generous.\n\nWe topped it off with key lime pie, light and tasty, an ideal complement to the meaty mains. And the bill was under $60, an amazing deal. As a bonus, some of the players drop in during spring training.", "type": "review", "business_id": "bc-lE-wGVAsUrX-kJhtY-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zar2wOyyin0r3tbBGtqXKw", "review_id": "KCSKgCcREKeQoA9YIcxRXA", "stars": 5, "date": "2012-10-25", "text": "My family has been going to Dr. Brittan for 10 years. He is an excellent dentist and can handle any situation you can throw at him.", "type": "review", "business_id": "SNyxwFx8i20SoDlN4dBS4Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "C1kS98KgRKB08yflIEq7_A", "review_id": "-iJ78sMZgqaFORMqVeguBA", "stars": 3, "date": "2012-03-07", "text": "I went there on March 7th in the late afternoon. My friend ordered before me and got a burger meal. AND THE POWER WENT OUT RIGHT AS I WAS ORDERING!! My friend ordered about 5 minutes before me so I got to eat some of her steak fries....the were awesome!! Other than that not much else to say. Gotta try them again some time. The Nutter Butter Shake looked full of calories but delicious. Better luck next time!", "type": "review", "business_id": "r3FHkf6lbmMUh3oPSrlIvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1JzbzyIYQ0wi5KXU3tNnfA", "review_id": "NxwKxmedqHIwmXpgg7-VRA", "stars": 3, "date": "2011-04-03", "text": "I have been to this restaurant several times. I can say it has been better each time with the first time being absolutely terrible. Why did I return? Because I was with a friend who wanted to try it and I couldn't believe it would be so bad the second time. It was a bit better and most recently it was good. The hostess initially was very \"French\" in that she was affected and snooty and yes, a young American woman. Initially we had a very bad experience with a fire alarm that continually went off, the staff didn't apologize and did not comp us anything. Other diners just left without paying or waiting for their meal. It has since been better, but I certainly am reluctant to return. There are many other restaurants from which to chose!", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 5, "useful": 13, "cool": 5}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "rPi2foQmJJ9GBFZKA5JgTw", "stars": 3, "date": "2010-08-15", "text": "Yelpers prove to be right yet again with the average 3 stars on this one... \n\nI was craving sushi and had a hot date with my sister-in-law last night to do dinner and a movie... It just so happened that Eat Pray Love was playing at the Tempe Marketplace Harkins Theater, so we decided to meet at Kabuki before the movie. \n\nI walked in first and asked how long the wait was for two... I as told 10 or 15 minutes. Not so bad... so I decided to wait. I walked outside and met up with my Alexa and we came back in about ten minutes later... As we did so, two other women came in and I saw that they were seated right away. I looked at Alexa, looked up at the hostess stand, was thinking (WTF), and then went and asked nicely where we were on the list. \n\n\"There are two tables before you,\" I was told. \"It will likely be another ten minutes or so.\" \n\nAt that, I responded, \"is there another option, perhaps sushi bar, that I don't know about?\"\n\nAnd alas, there sure was... (they neglected to give me that option when I originally checked-in). We were seated at the sushi bar at that moment and went on to have a very underwhelming meal. Here's why:\n\n-While the large portion cucumber salads we ordered were extremely tasty, the cucumbers were cut lengthwise in such a way that it was difficult to eat. I prefer cucumbers diced in smaller pieces so they are easier to eat!\n\n-Service - our waiter wasn't the friendliest... I felt kind of rushed by him when we were there. Additionally, since we were seated in the middle of the sushi bar, all of the wait staff would reach over us to pick up the sushi for their tables, which was very distracting while we were eating! Perhaps they could've moved the sushi ready for pick-up to the side of the sushi bar to avoid distracting guests in the future?\n\n-The sushi itself was good; not amazing. We had a Sunset roll, a Lotus roll, a Large roll, and an order of Ikura. I didn't realize the Lotus roll was going to have a ton of mayo along with the baked Lobster that came on top of it... it was a bit on the creamy side for my liking.\n\n-To top things off, when the bill came, they overcharged us... a simple mistake, but given our experience, it was just one more negative thing... and then when I pointed it out, I barely got an apology at all.\n\nWith so many other restaurants to choose from in the Tempe Marketplace, I am not sure I'll return to Kabuki. If I do, however, I will wait for a regular table!", "type": "review", "business_id": "AhpzPZH3b0PGT9mVoLCQDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2HsbXpcFBvFa-roHMqxgBA", "review_id": "0kkaNrhXArqKW4NpnHSpHQ", "stars": 4, "date": "2011-09-03", "text": "Great new multi-purpose entertainment facility that just opened. They just started serving food last night and I had a fabulous \"Punk Panini\" sandwich ... value for the price....and a rock band going last night.....\nCan't wait for the theater to open and the bar to begin serving in the next couple of weeks.....", "type": "review", "business_id": "OmfLT4ZxFGiNygGmKcgE6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bEJMn_jbXWHTmDPzPOflRw", "review_id": "em-TC3alO_P0g-vKWguKiw", "stars": 4, "date": "2010-08-29", "text": "Yummy yum ! I ordered the little cheeseburger and cajun fries....It was really well done...I luved it and will go back soon...someday when the craving for burgers and fries strikes again !!", "type": "review", "business_id": "VsrvWdZL2993olnW3z8R3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lwppVF0Yqkuwt-xaEuugqw", "review_id": "hX39R4L2BTbBZTqFWi6JGw", "stars": 4, "date": "2010-01-02", "text": "We arrived at the store several months ago to create a wedding registry, which was an okay experience. A \"registry expert\" sat us down and went over the basics, and then wanted to walk us through everything we may need on our list. We weren't interested because we're already home owners and just needed some entertaining extras and a few other items. Luckily, after awhile she got the hint and left us alone. \n\nAnywho. Gifts began to arrive and were shipped directly to us, big plus. Then came the true test.....returns. Easy as pie! No problems! I even wanted to exchange some items for a Kitchen Aide mixer (which every domestic woman needs!), and forgot my 20% off coupon. Oops. Luckily, the cashier found one and let me use it - which saved me $80 bucks. \n\nEveryone I encountered was helpful, the only downside is that it's a little unorganized and seems crowded with merchandise. Anytime I am in need of a kitchen items, I'll grab my 20% off coupon and return!", "type": "review", "business_id": "rkGPf4cbyUJqHgKZPvaTnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eapbAr6Zi5G8rK62gaWT9Q", "review_id": "d9tq5UR__qPizk4dmAdQTw", "stars": 5, "date": "2012-08-29", "text": "Love this store!", "type": "review", "business_id": "ezh7DWNch2eNHTUyAnV7lg"} +{"votes": {"funny": 2, "useful": 6, "cool": 4}, "user_id": "P_LzcrlVXFdgBq_24UnlUw", "review_id": "meu41PvHcNjcYxPqsM2UYw", "stars": 5, "date": "2011-06-20", "text": "I'm not a big \"organic\" kind of guy. I could care less about hormone free this and BPA free that. For me it all about flavor and service - it has to be better than I can make it myself and you have to take better care of us than I can.\n\nHaving said that, I'm HEAD OVER HEELS in love with the food at Tryst! Service is family oriented too. They treat you like a regular on your first trip in the door and burgers are to die for.\n\nAs a die-hard burger man, this is my default stop. It is close to the house, in a pleasant shopping center, and has the best burger I've ever eaten in Phoenix. I'd give it an extra half star if Yelp would let me. This place is that good!", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "S9R4_Vb25wdyHv95H_JP6A", "review_id": "-JSXM_YGU7RQi9vlxL_b8Q", "stars": 4, "date": "2010-05-04", "text": "I've now been to the WCG twice. The first time I went, I only had a salad. Only salad has new meaning here as they have some fantastic salads. In fact, several people at the table said they had never had a salad so wonderful. I also heard that the seared Ahi was to die for. Salads were just filler as prelude to desert however. Everyone at the table ordered something different and they were all passed around. I can highly recommend the cheesecake and the banana pudding. Both were outstanding.\n\nOn my second visit I tried the Parmesan crusted filet. It was to die for and I ate way more of it than intended. I also enjoyed the mashed potatoes and shared someone else's honey roasted carrots. Tablemates had ribs and the steak sandwich and both had rave reviews.\n\nOverall the service was wonderful, the atmosphere is relaxing and reasonably quiet even when the place is busy. The food is excellent (I have not heard a bad thing about any dish) and the dessert is worth the trip. They even list it first on the menu; a sure sign of something great!", "type": "review", "business_id": "XWvht_1ZLdK7EHJ3jo4q0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "WflEF3597OItD39ygq9C8A", "review_id": "rvES6f9D-O0oHQPmzrQoJg", "stars": 5, "date": "2011-01-28", "text": "After eating chocolate covered bacon for desert (yeah, that's really one of the options for desert), I say that I was completely stratified with Beckett's Table. From the moment I called to make a reservation I knew that this restaurant was going to have great staff and service. The staff greeted us at the entrance and give us options for seating. I was VERY pleased with the pricing on the menu especially the wine bottle prices! It's just a matter of time, and I will be back for an evening meal! Speaking from living in the Arcadia area, this is just the restaurant we need in the area--a nice community restaurant with pleasing food! If you are looking for a nice dining experience, this is the place for you!", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "vhxFLqRok6r-D_aQz0s-JQ", "review_id": "nai7U95Uq3fBqQY-OyMi_Q", "stars": 4, "date": "2011-07-07", "text": "Finally another downtown lunch option. I'm viewing this as the \"in-between\" place, in-between Arrogant Butcher's heavy on the lawyer, heavy on the political scene diners, and in-between \"Celtic-Hooters\", I mean, Tilted Kilt upstairs. The food menu is interesting, a lot of appetizers. Not enough salads for my taste. \nCompared to Arrogant Butcher and likely Tilted Kilt, the menu has less salads and less fried foods, but it'll be hard to find something healthy to eat. It veers towards the comfort food side, with options like chili with cornbread souffle, and flatbreads served with burrata fondue. There are a few flat bread options on the menu which is their version of pizza. The day I went, the lunch room was busy. (You enter in through the a lobby shared with Stand Up Live). Didn't get a chance to try out their amazing beer selection, will have to try that out the next time I'm here for a show. The management and service is very friendly. (Not in a scary way, just in a \"I really want to enjoy your experience way). This is in sharp contrast to the service at Lucky Strike across the way which I've found to be downright rude at times. Keeping my fingers crossed that they continue to do well.", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Yk37VAp452K7FwHWd1rrQw", "review_id": "XBedl2cEMZihflfuoPIphA", "stars": 4, "date": "2009-05-30", "text": "Went to the market for the first time today and I enjoyed myself. \n\nI loved seeing the herbs and plants I could grow for my own veggies (some of them were \"pre-tortured under the AZ sun\"... loved that line) and smelling all the great concoctions that people make.\n\nThe creativity... it's awesome. I love going to those craft fairs and seeing stuff, but I like seeing soaps and art and other various items that people will put together on their own.\n\nIt was super nice that they had portable evap coolers blowing down the aisles and lots of shade. \n\nIt was very comfortable, lots of tasters and the music is great.\n\nI told friends that I would be going here today, and they all said, \"Oh I wanna go!! I'm so jealous!!\"\n\nNow I see why. :)", "type": "review", "business_id": "b3MaC7nWia6uYvJrP8iu1w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Z_8P1viBB-8B88oNEiBb7g", "review_id": "CkFL0XCQrFjsThYmhxFmow", "stars": 5, "date": "2012-07-28", "text": "The whole market is awesome.I like that if you did not bring enough cash with you that you can pick up a blue ticket at the information booth that the vender will stamp then hold your items for you then you may pay by credit card at the information table where you picked up your ticket.The veg are great.the free range eggs are the best.the french baker from Tucson is pretty darn good.this market is for sure one of the better ones I have seen.worth any one checking out.Note support your local produce and growers/farmers.Support Organic!! One more note this information and option has to do with the farmers market out side open on the weekend from 7am to 11am", "type": "review", "business_id": "b3MaC7nWia6uYvJrP8iu1w"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "A7v8TX0r0OziLD5u8p6wgQ", "review_id": "-25RrM8ltiVzNtM8mJMy4w", "stars": 5, "date": "2008-10-30", "text": "The best fried chicken I have ever had\npork cutlet is not to be missed either\nthe collard greens flavor is unbelievable and purely vegetarian broth if you can belive that - absolutely no sourness\n\nI regular have to make pilgrimages for my pregnant wife here.\n\nNegative - cash only", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 6, "useful": 6, "cool": 6}, "user_id": "0O0WByGmSVbF7iNs4uxi0w", "review_id": "W9Ffzsoma1hKsLEnxHglwA", "stars": 4, "date": "2010-02-28", "text": "As a visitor to Scottsdale, I thought a stroll through the farmers market was a great way to get a taste of the local flavor--literally. And it was! There's a great mix of vendors, who sell everything from baked goods to coffee, from vegan wraps to preserves. There are also some interesting services like pet massages!\n\nLike Vicky T. said, it was surprising to see dogs with their owners wandering through the farmers market, because that's against code in California. But I thought it was great, and with the pet masseuse and a doggy and kitty treat vendor, it totally made sense.\n\nFarm Sessions, where local chefs give cooking demos with produce from the market, is a great idea I'd like to see at my local farmers market. It did seem odd, though, that all the produce at the market was in one corner. It was the shadiest spot, so maybe that's why?\n\nAnyway, this was a great way to spend a Saturday morning and was very relaxing compared to my local farmers markets, where I often feel like I need to start throwing some elbows to get through the crowd.", "type": "review", "business_id": "Sb1_G-DMy26YHafNxxhVrQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "6hRKotVFPYL7Ci0hipN9Eg", "review_id": "jyqulMgIQz4qd37ZoQY_2g", "stars": 4, "date": "2008-06-05", "text": "I really enjoy That's A Wrap... all of the food I've ordered here has been really enjoyable, plus it's all a really good value for the money. My favorite wrap here is the Prince of Thai, sin pollo con tofu. The Veggie Bowl is also another good option and I'm pleased they can make anything vegetarian. Worth a stop for lunch, however, the parking lot is tight and I have been here more than once when it was full.", "type": "review", "business_id": "ZoQAOnEFnyHjSpomtfqesA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "so9owE1BlWDslVNZJUYugA", "review_id": "tPXP3dwMAz5ynBfzgOn5mw", "stars": 3, "date": "2012-02-11", "text": "Decaf coffee was the best thing going here. Big cup, super hot and tasty. \n \nWhite flannel hash was a miss. For me the flavors were off. Too much salt and way too much garlic, for my taste. Service was polite but a bit slow for how empty it was. If you like garlic and a heavy hand with salt, this might be your place.", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 7, "useful": 3, "cool": 3}, "user_id": "BrJcbK_lH0irQcNSNBEQHQ", "review_id": "dXmgGJTDhC0AbCPNXfi7EQ", "stars": 1, "date": "2008-04-10", "text": "The food is simple, pure and uncomplicated; you taste (and hopefully enjoy) each ingredient. However, as with most minimally processed cooked foods, it does not travel well. So, eat in. Luckily the decor is modern and compliments the menu well which makes eating in a pleasure. \n\nMy only down note is on the service. If you are not careful when you enter the restaurant, you may enter through the door of invisibility and will become invisible to the employees. As a result, you may stand at the counter while they work around you but do not recognize your presence until the invisibility dust (or whatever makes you invisible) wears off. Based upon my late lunch experience today, the dust takes 4 iPhone e-mail responses or texts to be removed (10ish minutes). Regrettably, I only had three unanswered e-mails in my inbox and had to leave before I could be seen by the employees. On a positive note, when you leave (regardless of the time you waited), the invisibility dust seems to be removed. I know this as no one honked or screamed at my car as it drove away without a driver.", "type": "review", "business_id": "trAvQPp7gps0Btk-2AmLpw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hANn-OzlMa_bDl31nWZwkA", "review_id": "xKXXSqimCGmwSSM6A2IaGA", "stars": 3, "date": "2013-01-04", "text": "I was not impressed. For a business traveler, there are better choices nearby. \nWhen I drove up, the valet told me there was no self park, but I could see it less than 100 yards away from my room. I used it during my stay, and it was convenient and much less expensive. \nThe entry of the hotel was constantly blocked by party goers, and I couldn't find any alternate entrance/exit. \nMy bill was wrong at checkout. They adjusted it, but then mysteriously placed an additional unauthorized charge of $13.94 on my credit card. \nSeriously wishing I opted for Embassy Suites across the road...", "type": "review", "business_id": "HLQUH1VAw4KbSV-IhxOPEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2K3lSMLFIhbpdXUWAdgYHw", "review_id": "XKwhyz7BIeEJRe5smDil-g", "stars": 1, "date": "2010-03-01", "text": "For frozen yogurt quality, I give this place a one. Honestly, it's small, there's very little variety in terms of toppings, and the yogurt tastes cheap... Probably because it's a big franchise. There is a reason why you're paying less for an ounce... Truly - you get what you pay for. \nThe concept is neat, sure, but if you're looking for pizzazz then you should try Yogurtini... It's just up the road from Yogurtland. Anyway, the single star says it all... \"Eek! Methinks not.\"", "type": "review", "business_id": "djYFLq4Bkqpkd14-0IJfug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hgzGSMl2m3ZpbVMnnbHJAQ", "review_id": "j1GkoGCAq2ZLrwvRh53MxQ", "stars": 5, "date": "2012-08-04", "text": "Ii am addicted. spectacular service and consistent, quality. food every time. i have been ordering take out and dine in for months and grimaldis does not disappoint. only once...they gave my takeout pizza to the wrong person....christine, the manager, very generously apologized, comped my new pizza, and bought me a glass of wine as i waited. grimaldis is a class act and has a fantastic staff with excellent food. every time.", "type": "review", "business_id": "dcd3C1gWv-vVdQ9XYV8Ubw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "WgpyvVqYAc3FOvk-G-Erwg", "review_id": "oGtSU2M-vv8Hh5DMCXJWvQ", "stars": 4, "date": "2010-10-02", "text": "My girlfriend and I were hungry and wanted to try something new, so we hopped on the netbook and fired up Yelp. We tried Crazy Jim's, and boy was this a good pick. When we 1st rolled up to CJ's my girl was like \"I don't know about this!!!\" I said \"lets just go in and take a look, if it is clean inside then lets try it\". Once inside the place was small but quaint and most important it was CLEAN. So I ordered a veggie pita and got the pasta salad as a side. The food was ready pretty fast and I had envisioned something like a sandwich that you pickup and eat but it was all laid out over my plate. The pita was very good and I give a big thumbs up to, the pasta salad was kinda plain. My girl has a greek salad and she liked it but wasn't too crazy about the dressing. I would definitely go back to Crazy Jim's and eat. As a matter of fact anytime I am craving that veggie pita, your boy \"E\" will come to visit. \n\nps. Our server was great also, friendly, fast and helpful.", "type": "review", "business_id": "0dIChGWBs9ueUXl0hhkw2w"} +{"votes": {"funny": 2, "useful": 3, "cool": 0}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "Giqs3sVmwBdHuxIv6uPA2w", "stars": 1, "date": "2010-03-23", "text": "\"Fake\" (or rather condescending) service from the \"Service Manager\"...and he didn't even acknowledge me when I asked the status of my car (uh, more like IGNORE). Ended every sentence with an impolite \"No ma'am\" or \"Yes, ma'am\"... ya get the scenario. Basically, the guy was a real JERK.\n\nThey couldn't even figure out HOW to fix my car, even when I TOLD them what was wrong with it ( had been diagnosed at the Dealership). Two guys were sitting there staring at the computer (as if it was going to magically speak to them). At least they didn't charge me, but what a waste of time waiting for 90 minutes....", "type": "review", "business_id": "1uFIjxwBRi8vGqc6vpNO9w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Br9mpMhkVunsp8Un5GpYWA", "review_id": "gwbYi4ykkOKh3CKJXIbtcA", "stars": 4, "date": "2012-01-27", "text": "The Hyatt Place Scottsdale is a hidden jewel in old town, just off the main drag this place is perfect for a weekend getaway. They offer complimentary breakfast which is pretty standard but nice and even have \"real\" plates and utensils vs. plastic products. They also have free WIFI and the rooms are HUGE! It is a great place to take the family since the kids can stay in the first part of the room on the sofa sleeper while you can crash on the comfy bed closer to the TV.\nThe only reason I give 4 stars vs. a perfect 5 is because the pool is really small and not that great. If they upgraded the pool a bit they would be golden.", "type": "review", "business_id": "kApEJUSJFIMitJRrhutAfA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aM0LYqvjHQcx1cgihiFhRg", "review_id": "nV364mAGFk-5MfX_GqFVFg", "stars": 2, "date": "2009-11-18", "text": "The service was slow, the server knew nothing of the wines on the menu and knew nothing of proper wine service. Boo.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "r1_Dt2mXFhfSnW5Ew5T1Rg", "review_id": "IbMBvrxPpXrJiH0D0P52AQ", "stars": 4, "date": "2011-05-24", "text": "I'm not a fan of Thai food or buffets but this place is great. Food is great and it very decently priced! It's not super busy, so the food isn't always \"fresh out of the kitchen\" tasting, but I really enjoy the Pink Pepper!", "type": "review", "business_id": "Nz_AasmpsQ8MLSqhCTRVoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s7Tm9oYWqRlBm5ex2OQ1nw", "review_id": "WuaBQ-6u8AbkOyQHxO_lhQ", "stars": 4, "date": "2011-02-12", "text": "Decent place for pizza. The only place in the West Valley to get decent Margherita pizza. Not the best but good enough to satisfy.", "type": "review", "business_id": "74qDPs2dR6gSzDp6N1U-Og"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "15cUUq1KnmjYOPoEbbydqA", "review_id": "q4-tqgbDGXC5GZ9goxP6XA", "stars": 4, "date": "2010-02-17", "text": "Blurb for iPhone App: Great Enchiladas, Chips and Salsa made fresh, but beans left something to be desired. Give it a try nonetheless.\n\nI just wrote the last part because I will be on the Yelp app, and notice that I often start my review with something that is not useful at all... which is that everyone sees when searching on their mobile phones. So I guess you could say I'm optimizing for mobile. Ok, now on the full review. \n\nTook off a star for the beans... they just weren't great. The person with me had a taco salad, and said they didn't get a lot of meat in it... and the rice was good, but not great. However, this was balanced by the chips and salsa (which I always eat so much of that I'm not hungry by the time the food shows up) which seemed to be made fresh, not too hot, but with plenty of flavor. The \"hot\" sauce (hot is entirely objective here) was very good, and I used that for my chips as much as the salsa. Didn't ask if they had anything hotter, as the true chilehead will think it's pretty mild...\n\nI had a chicken enchelada with green sauce and a cheese with red.. and although I usually like the green better, the red here is great. One word of advice however - don't step on the scale the next morning, because you are going to stuff yourself while you are here.", "type": "review", "business_id": "DXBPI8rR9f_IthOGPDWoIQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "AuQ28IMcqAloDmlFI7CKoA", "review_id": "OFzvW2jnI-dnleHa8v3O5g", "stars": 5, "date": "2012-06-13", "text": "Obligatory stop for a drink...Dodey is here so that is always good", "type": "review", "business_id": "p5HEHFZwbztIkpI4ItbX2w"} +{"votes": {"funny": 6, "useful": 4, "cool": 4}, "user_id": "DqQzkxbhm4rEJpsIT3XxOA", "review_id": "sAlc-va-Enm37cgz3kR0mA", "stars": 3, "date": "2008-05-23", "text": "What vegetarian goes to a place like Logan's Roadhouse? The kind that will sacrifice herself for the sake of her people because she drove all the way from San Diego to AZ at midnight and had no kind of sleep, but still managed to get there and say, \"Hey, I'm taking all you fools out to dinner, my treat, where do you want to go???\"\n\nAnd, they picked this place. Oh woe is me. \n\nIf you've been to Texas Roadhouse, then you've been to Logan's Roadhouse. I'm pretty sure it's the same damn place. Peanut shells on the floor, MEAT and potatoes galore, and loud people everywhere--Which is fine, because my people are very loud. \n\nThe overloaded mashed potatoes was a hit, I was pissed that they were out of onion petals, and our waitress seemed really confused. But, she was nice, so I can't really talk too much crap. \n\nAs long as everyone in my party had a good time, I'm happy.", "type": "review", "business_id": "TRD-6PxJX2fWL91dRrny6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vzTqQHtC0lHzBYsl2Jbs8Q", "review_id": "YjA3C4gyP0s_7rlYp1M0Sw", "stars": 4, "date": "2012-08-11", "text": "Sandwiches are very above average in taste, but they are on the spendy side.", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2fdyqZooz7YSZ5vgkDLxxA", "review_id": "PHKjWkJze_fRdaUlwG2ISg", "stars": 4, "date": "2010-09-11", "text": "Great beer, really good food and no wait.\nOk yes it was noon on a Sat but that can be hard to find\nany day of the week, at any time.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RXueZzFMARyR16QBtxlFeg", "review_id": "64vt8IGCHT0S8Zco3zRmdw", "stars": 4, "date": "2012-11-02", "text": "Thank you sir, may I have another. \n Although I didn't have to revert to Oliver Twist-like methods to punish myself gastricly with this greasy, plentiful, delicious food, and it was quite easy on the wallet, I feel like I shouldn't have come here. This is a guilty pleasure whenever I travel to sections of the country that have them. Nice big portions piled on plates that I'm pretty sure were clean, the staff hollering out orders to the assembly line that never seemed to cease. Awake and alert, this place is good. Hungover or Drunk, this place is Frickin' Candyland. Bottomless coffee, Waffles as big as your head, overworked waitresses franticly running from table to table.. ahhh the American dream.", "type": "review", "business_id": "eONS7DP6U9BV3lkqGAUbOg"} +{"votes": {"funny": 4, "useful": 5, "cool": 5}, "user_id": "ST8Yzlk2MqKlcaLqL2djBg", "review_id": "y6sdmbdlkPUK-b4sKGNuDg", "stars": 5, "date": "2011-06-25", "text": "was i ever lucky to pick dr. karawi from a random list of doctors near my home from my insurance website.\n\never since i was a kid, i barely remember seeing my dentist. his hygienist came in, cleaned my teeth, then the dentist came in with his long nose hairs and big belly and bald head and stinky breath and started shoving sharp metal objects into my teeth. then he left, saying only \"hmmph\". he had a beach house in the cayman islands.\n\ndr karawi is exactly opposite of that (don't know if he has a house in the caymans though). what really, really, really surprised me was the karawi cleaned my teeth....the Dentist! he does that for all his patients. i asked him why, and he just said he likes to get to know his patients. how novel!\n\nhe is extremely friendly and likeable but always professional. he will joke and talk to you about your vacations, plans for the weekend, etc, but then always keeps it serious when discussing your dental care. i sincerely appreciate his services and friendliness. we liked him so much, even invited him to our house warming party!\n\nso for excellent dental care and outgoing service, Dr. Karawi is your man.\np.s. he's not bald, doesn't have long nose hairs or a big belly, and his breath doesn't stink.", "type": "review", "business_id": "wPb6f04NSnQc1aCPOR1sEA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-uYfeJs1HNUBRDEBYdv7zQ", "review_id": "N7CUeQkSBc4pdkPGu7aR-g", "stars": 5, "date": "2011-06-30", "text": "We have been meaning to try The Mission for awhile, and we were extremely impressed. We are self-professed foodies, good cooks, etc.\nLet's start with the fact that they seated us promptly at our reservation time, and that reservation had only been made that day.....surprising, because the place was packed!! Alfonso was our waiter, and he was awesome and didn't hesitate to make suggestions that we were happy to add to our dinner. First, the margaritas. ....this place knows how to pour, and they are fresh - the only way we will drink them. Next - there are only 3 places in Phoenix that can make good table-side guacamole, and this is the best of them. Alfonso suggested a fried pork belly/cola reduction appetizer that I had to be talked into. OMG....heaven, and such a complex blend of flavors that the sweet, crunchiness of the pork belly can only be described as \"worth it\" if you are balking at the issue of pork belly.\nEntree: we chose the Chorizo Porchetta and the Scallops. Both were excellent and may I say that the timing of each course was unbelievably prompt. We never waited and yet didn't feel rushed.\nDessert: I confess that I read the dessert menu first before making dinner decisions, and while other reviews loved the selections ...I wasn't blown away. The churros were small and dough-y, and the milkshake was just to heavy/sweet after a meal.....better to fill the churros with a cheese and serve them warm on dulce de leche ice cream. Fried bananas didn't excite me either. Bananas are bananas..... The pumpkin bread pudding seemed heavy and Autumn-like for a 110 degree day in Arizona and did not compliment the Latin flavors of the dinner. I feel their dessert menu needs to be expanded in a way that compliments their cuisine....some citrus sorbet, chocolate-with-red-chile cake, lime cheesecake. At any rate, I still give them the full Monty on stars!!!", "type": "review", "business_id": "YKOvlBNkF4KpUP9q7x862w"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "JkMOQaMjlBHMqp6gj-hL3w", "review_id": "lDUwVQpKtBPKBCxhtR61JA", "stars": 5, "date": "2008-09-22", "text": "My husband took me here on a Friday night ...after hearing good things about it from coworkers.\n\nWe sat on the patio which had plenty of misters and overlooked a park, it was a very relaxing environment.\n\nOur server, Carla, was as cute as could be and was so nice the entire evening. She was one of the most attentive servers that I have had in a long time. She was so genuine and really added to the experience that we had here...thank you Carla !!!\n\nWe ordered a bottle of red wine that the husband picked, I am not sure what it was but it was damn good ($23 for the bottle). As an appetizer we had the Piatto Misto, which was an assortment of Italian meats, cheeses, olives , and breadsticks ($14) and this is definetly enough for 2-3 people. The meats were excellent and the cheese was tasty also. My only recommendation would be for them to not cut the cheese into tiny little cubes...that was odd because the meat was sliced and you could not incorporate it very well.\n\nFor dinner we shared a pizza.. The Sofia..it had Scamorza (Smoked Mozzarella),Parma Prosciutto,Parmigiano Reggiano ($13). It was ooh soo tasty. We could not eat the whole thing...there was like 3 pieces that we ended up having boxed up.\n\nThen we had dessert.....I am still in heaven just thinking about this dessert. It was the Dolce Della Casa...Slightly Charred Sweet Calzone\nfilled with Chocolate Hazelnut Sauce and Banana topped with Vanilla Ice Cream...OOOOOhhh my God. This was by far the best dessert that I have had in a while. It was so gratifying...I had goosebumps after the first bite. I would recommend ordering a small and sharing it because it was huge ($7). I can die a happy woman after that dessert...and if this was a first date ...that would have been a guarantee for sex !!! \n\nThe community here in Verrado was absolutely amazing, I wish I would have known about this neighborhood before I bought my house in Goodyear. If you live nearby I would recommend checking this place out and spending time looking around the neighborhood.", "type": "review", "business_id": "L1ymPhPjisiSD6RI1NtnQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "76SlIVfcXJujKQ3xSyYtOQ", "review_id": "c7UBikwEOZfG2kTUQ3M3EA", "stars": 5, "date": "2010-03-09", "text": "Great surprise-- I have driven by this place several times-- food was excellent-- I had the Enchantment platter-- just the right amount of heat without being overwhelming-\n\nCool cave-like atmosphere inside and fun patio area-- I will definitely be back and bring out of towners", "type": "review", "business_id": "b5cEoKR8iQliq-yT2_O0LQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "1hVNXprd3EDijQqZ7wy7aw", "stars": 4, "date": "2011-08-10", "text": "My daughter treated me to a facial here for my birthday. It was lovely and included a massage of my feet and hands. The student was very professional. It normally costs $33 for the signature facial, but was only $25 for my trip since they were running a back to school special for the month of August.", "type": "review", "business_id": "qC5Uv1j4id7MPM-8YrjW6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "musPMVwcTY50Vp9wlyJ_ug", "stars": 5, "date": "2010-08-02", "text": "I love Stinkweeds. Owned by local commerce booster Kimber Lanning, Stinkweeds provides better selection and pricing than many national vendors. The staff are helpful, and if they don't have what you're looking for, they'll happily special order it for you. The parking lot is smallish, but I've never had a problem finding a space. The central location is a big plus. They share the plaza with other locally-owned businesses, so it makes for a fun shopping excursion. Their listening stations are well-stocked with a variety of music, and the staff loves to talk music, as well. They also carry a great selection of music mags, as well as some books.", "type": "review", "business_id": "Re0Xw-AYkn6NK7QRk3kPEg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pf4qcDBKqkWG4uuHnwRMlw", "review_id": "Nor4neSd96yxIzcZ_sVQ-g", "stars": 2, "date": "2010-11-18", "text": "I don't usually review based on one visit. But when the experience and food is as bad as this, I'll make an exception...\n\nThis place gets two stars for the multiple big screen TVs. If you're here strictly to watch sports and have a beer or three, you'll be fairly happy. However, I came here for a bite to eat, and that's when there where I ran into problems.\n\nThe bartenders are a disgruntled lot. Their sour mood when I sat down set the tone for my whole experience here. They're not all bad. One of the male bartenders actually smiled occasionally and chatted with some of the customers.\n\nThe food. How can you screw up cole slaw? What more can I say? \n\nBeyond that, if you're in the area to watch a game, this isn't a bad choice. Just swing by McDonald's or somewhere else for dinner.", "type": "review", "business_id": "kYQxOeJRFYats6cxVFnILw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qkNxavKKK5TZsvaXdnHNPQ", "review_id": "QrV78zogKdN8l345KyIIMQ", "stars": 2, "date": "2012-03-29", "text": "Good = Happy hour is a great deal but it's always PACKED. The open atmosphere is awesome in the spring/fall but there's not much seating so you'll likely end up waiting.\n\nBad = Parking. There's never enough and it's a tight parking lot. Prices. It's expensive. If I want to sit outside with friends and enjoy a bottle of wine and nibble on some fancy cheeses, I might as well do it at my house for 1/4 of the price. Then I can drink as much as I want without the overcrowding and $$$$.", "type": "review", "business_id": "q9WaFYhlOZCrfXJQTG5t_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HNASrZhKABaDbGysyoK64Q", "review_id": "wQE2rzQ5CHnS3iby8sM1Tw", "stars": 5, "date": "2010-03-19", "text": "Have you ever walked into a bar or restaurant and instantly felt at home? That's how I felt when I walked into the Grind last night. The place has a great vibe, fantastic food and cocktails, and a friendly staff. Some of the highlights of what we ate last night... The burgers are phenomenal, the cable car drink was unusual and tasty, how could you not love donuts, and the bacon... oh the bacon... I highly recommend swinging in for lunch or dinner so it become one of your favorites as it is now one of mine.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3KnIBtTFpS_VNtvcZT4WbA", "review_id": "3sr8RO5HtBlbg-cQseIrmA", "stars": 5, "date": "2010-01-04", "text": "stopped here on our way home on a road trip. if i had known, i would've stopped on the way out, too. the bear name drew me in (and the assumption that a diner would have chocolate malts). \n\nthe food was fantastic. boyfriend ordered \"bob's big bear burger\" and it was probably the biggest hamburger i've seen in person. apparently it was delicious (how he ate the whole thing, i will never know). i ordered some sort of burger basket combo, featuring a much smaller cheeseburger (which was delicious), hearty portion of fries (which were ok), and the chocolate malt was only $2.99 (instead of $4.50-ish) with the combo. And it was one of the best chocolate malts I've ever had. And the prices were reasonable. And I actually loved the kitschy bear theme. Can't wait for another trip that takes me through Phoenix (and I never thought I would say that).", "type": "review", "business_id": "619v4z_tj2NiZWuX1tPdrw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "esomNneHvsEv91MmraM5ug", "review_id": "KWRuNZsIE8Hj_IDSsdt6hQ", "stars": 4, "date": "2010-03-13", "text": "This was my first trip to Culver's and it came highly recommended. At my friends suggestion, I tried the butter burger deluxe, fried cheese curd and the.....I forgot what it was called, but the frozen custard - basically the equivalent of a DQ Blizzard.\nThe burger patties were paper thin (thus the reason I ordered the double), the lettuce was crisp, tomatoes fresh, bun soft and buttery. I thoroughly enjoyed my burger. Very flavorful!\nI had never had fried cheese curd and had no idea what to expect. The closest thing I can think to compare these to would be mozzarella sticks. They are about the size of a grape, and full of salty cheesy goodness.\nThe custard was delicious! I had the vanilla with butterscotch and oreos (I ordered butterscotch and brownie pieces, but there was a mixup, but I had no complaints).\nI really loved everything I had. The menu is big and I can't wait to go next time so I can try something new. \nThe thing I didn't like was the bible verses all over the walls.\nSeriously?? It's not that I am anti-religion or anything. I am Catholic, went to Brophy and go to church twice a year. I don't need it thrown in my face while trying to eat with my friends. take a tip from In and Out. Put them on the under side of your cups. Work on your subtlety Culver's.", "type": "review", "business_id": "ykKSshfa9ANCZCuvM2LaWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_LIGXXPQzba-ldVRM5KWtA", "review_id": "4vwW6RqF2F3waWlweEhqEQ", "stars": 5, "date": "2011-04-23", "text": "We ordered seabass and ribs. Both excellent choices. Service very good. Ambiance was unexpected. Felt like we were in hawaii with an open feel with palm trees. Used restaurant.com coupon. Great deal.", "type": "review", "business_id": "g-eZgnBDvSDguF8cUxKCkA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iWh7h24DpKWFtKZGl81kxg", "review_id": "qm4Hqv0kgIvc1Fh61Rl19A", "stars": 4, "date": "2012-12-06", "text": "I'm so torn on RA. (I know. I'm a brave person, getting up and going to work everyday and functioning with such a heavy load on my shoulders.)\n\nReally though...I feel like I should have outgrown RA by now, but I haven't. I initially went to the Tempe location back in the day when I was 18 and hated sushi (forgive me, I was young and stupid. Mostly stupid) and ate noodles every time I was forced to go there by my ex or my friends. Now I am pretty well-versed on the sushi world and eat it every chance I get.\n\nNo, RA is not the best sushi restaurant in town. No, it is not the most authentic. But it always draws me back in. The happy hour, the drinks (Umami Punch, you are my liquid soulmate), the special rolls...I can't help myself. (\"I wish I knew how to quit you\"...)\n\nI WANT to hate RA, mostly due to the douchebags it tends to attract, at ANY of the locations (we live in 'Tukee now, so obviously we frequent this location a lot), but I still can't. We went a few weeks ago for happy hour with some friends, and it was busy (of course). No biggie, we sat at the bar and had a drink or two while waiting for our table. They told us 15-30 minutes and we realized it had been longer than that...went up to check on our spot and lo and behold, our buzzy-thingy was not working and they had skipped us on the list and because of this, have missed the happy hour cutoff. NOOO! I needed me some cheap dranks and sushi! We sat down, the waitress talked to the manager about what happened, and the manager came over and talked to us, apologized, and let us know any food we ordered (sadly not alcohol as well, but I understand why not) would still be happy hour pricing. Pretty cool, as some places would have had a pretty \"oh well\" attitude about it.\n\nOverall, RA is like crack, and once you've had it, you'll develop a habit you just can't kick. Pass the soft shell crab roll, please...", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rPGZttaVjRoVi3GYbs62cg", "review_id": "7iu_6L7pzpfgpswxzeR7sw", "stars": 5, "date": "2006-08-15", "text": "Pita Jungle is a great place to get inexpensive Mediterranean food (as long as you don't mind a bit of a wait).\n\nThe food usually gets served up really fast, but then your waiter leaves and -never comes back-. I'm not ususally a stickler for outstanding wait service, but I do like to get my glass refilled and be given my check in a timely manner.\n\nNever-the-less, the food is so good it makes up for any other flaws.", "type": "review", "business_id": "Ez2MFsVT5lJZ05yvK_0AXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wo4b_NZrBfWLoPE0c_9Qng", "review_id": "T80AkuQGHYsIca1hcMkYqg", "stars": 5, "date": "2009-12-06", "text": "Been there twice now. Great servers and the owner is a sweetheart. I ate the Pechuga Asada and a pupusa Locoye(sp?) this time. The chicken was made right, great beans and rice, fresh avocado, big portions and the salsa and chips are excellent. I live two blocks from here and I need to wake the eff up and go here more.", "type": "review", "business_id": "rbiRLiFTG098z9JaK3Nshw"} +{"votes": {"funny": 4, "useful": 4, "cool": 5}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "Hu7sSywF0olRbPAm3-GATg", "stars": 4, "date": "2009-02-26", "text": "Kristi's review said, \"Great romantic spot to bring a date. Secures that you will be getting action later, trust me.\" Well, that's good enough for me. And before the Yelp paparazzi shows up to muckrack... no I didn't take Kristi to Cheuvront's. I know better than that - I only hang with Kristi at dive bars. \n\nSo I did take my lovely date to Cheuvronts. The decor and ambiance - think wide open and urban and dark without being too dark. It really set a mood. We ordered a bottle of wine from a fantastic list, along with a cheese plate and a pate plate. We had them select the cheeses to pair with the wine we had chosen with a few instructions as to cheese preferences. They have a selection of pates as well, and we had them choose similarly.\n\nThe cheese plate contained three cheeses, all superb. It was served with (good!) bread, some nuts, and some dried cranberries. The two pate plate was similarly served with bread and dark, delicious mustard. The pates were fantastic - the cheese plate and pate plate seemed destined to be served together. \n\nThe food and drink were great, the service a little spotty especially since there weren't that many people in there. I'm guessing the waitress just didn't want use to feel like she was bothering us. After taking our time to enjoy the wine, cheese, and pate, we were both feeling full with no room for even dessert. \n\nOverall, a great meal, my date thought it was one of the best places she had ever been to, and I'm clearly going to have to pay more attention to Kristi's reviews.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Akwr-Kqif-NylJ3-EUlnWQ", "review_id": "LuAf4axGH_j46Hb0j6emGQ", "stars": 3, "date": "2010-04-02", "text": "A timeless classic a place with more shows than I can / care to remember.\n\nSeen a lot of up and coming people here as well as some pretty good regular nights as well.\nAlways an interesting collection of different music styles mixed in with a ton of talents of all sorta both local and elsewhere.\n\nCheap drinks and plenty of pool tables.\nOld school video games and of course darts\nPizza and bar food that is actually decent!", "type": "review", "business_id": "Cp5_NSJFNgylD5SUdmT8nQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "iD4jhROZcY4MsUXphSTfgw", "review_id": "jYjqxUBagtPmdHOs25SoCg", "stars": 5, "date": "2009-01-23", "text": "super great neighborhood bookstore. it's local and not owned by the man. jimmy carter will be there signing books in febuary. They have new and used book and something is always on sale. It's attached to wild flower and next to macs.", "type": "review", "business_id": "GwSdGrvaXi4BdXNSWKn-EA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VLEicvujLbpjHO8nP2uGgA", "review_id": "jP1Tccmnq2DgiUJA3KKBmA", "stars": 5, "date": "2010-06-24", "text": "I eat there about 3 times a week!! The antipasto salad and bread are addicting and can't be beat!", "type": "review", "business_id": "RQWliUrWic_b5FZEj3JThQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3CrMsd5tB7LW5gQUdvI_PA", "review_id": "vOTfl495sFIAmzja0E5_AQ", "stars": 5, "date": "2012-07-12", "text": "I've been coming here for years...the best. One of my favs is the lulu wings.", "type": "review", "business_id": "24qSrF_XOrvaHDBy-gLIQg"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "LsJ4Fytw1NNcR5Y_3AIOzA", "review_id": "u3gSlkv3TlTpo3m0ZxvsUg", "stars": 3, "date": "2009-03-23", "text": "I want very badly to love this bar. I really do. It has all the promising combinations of qualities I look for in a local locale. \n\nGreat beer. I have no qualms about ordering the French Canadian Hefeweizen (that I can't even pronounce, spell or at this moment recall) with one glass all to myself and lick my lips at many other brews on the menu. Add a wine list beyond belief and liquor if its your poison too.\n\nThe proximity to my own compound and the blossoming bud that is the central Phoenix renaissance is always worth a gold star; why commute when staying local is a better option?\n\nThe staff and owners of the Sidebar are fantastic. From my induction many months ago they sling the drinks with pride and the effort in the setup and delivery of the place doesn't go unnoticed. \n\nThe decor is where things start to slide. Not because the place is hovel, far from it. Everything is crisp and new. From the hydraulic bar stools, to the multicolored ambient lighting to the comfy lounge couches, to the super clean bathrooms; this place is a slice of upper crust for those of us who don't normally even thing to nibble from such a decadent pie. Herein lies the problem or as my former boozing partner visiting from his new digs in Portland put it, \"I'd like to see this place with about 10 years worth of dust on it.\" Not my style, but I dig it and Phoenix sure as hell needs a place like it.\n\nIn the end I will go back and don't mind in the slightest having a place like Sidebar to show off to East Valley dwellers and Scottsdale brats, but every time I reach for the front door I pause and am sad.\n\nA mere few feet away lies the corpse of the beloved Emerald Lounge. A dark, seedy, dirty, smoke filled haven of locals, live music, art and personality that is now nothing but a painted over ghost. So please, support your local bar, bring your friends and keep the sidebar real. But remember to pause for a moment of silence and drink one to the ghost below your feet; us locals will thank you.", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wV8cHyOIuZ_Z8VeG-hlBQQ", "review_id": "Nc4T5CUN8djNa3oLHngMgw", "stars": 2, "date": "2010-01-02", "text": "VERY BAD SERVICE + BELOW AVERAGE SUSHI = 2 STARS.\n\nThe 2 stars is because the quality of food is below average and not that great. The Salmon looks like its been on the plates forever and has a real slimy look. I've had way better sushi in some all you can eat places!! Basically the only good thing is the gimmick with the conveyor belt. I would advise the reader to save his/her money for a better sushi place like Kabuki.\n\nThe next bad thing about this place is the atrocious service. They never bring you the drinks or seat you in a timely manner. God knows what the waitresses do over there...they run around as if its their first day at work and never get anything done like clear tables, get checks etc. I've been here a couple of times and I saw that the 2nd time, the patrons were not even waiting for the waitresses...they formed a line at the cashier like Denny's.", "type": "review", "business_id": "EC9WB-iVjd28B6R6KIZ8TA"} +{"votes": {"funny": 5, "useful": 3, "cool": 1}, "user_id": "mym5tXZoZCbuPCYQzI5Ysg", "review_id": "BB25ZzPDYHnwgd4v3Gbxig", "stars": 3, "date": "2010-07-08", "text": "I feel like Top's has been getting angrier and more bitter over time. I called on Fourth of July just to see if they were open and they guy on the other line told me, \"Yeah and we're a madhouse. Each minute I spend on the phone with you is another body out the door,\" and hung up on me.\n\nI wanted to call back and tell him, \"You know, the amount of time that it took you to say that, you probably lost two bodies out there door. You could have just said, 'Yes we are!' and that would have sufficed. Instead, you had to be snarky so I'm calling you back specifically to waste your time.\"\n\nInstead, I'm just going to Yelp about it.\n\nOn multiple occasions coming back over the past few months, I feel like I'm tip-toeing through the house when someone's mad at me. I don't get it. There's a serious vibe of negativity going on. Specifically, the guy who acted like a fuckface over the phone has been snarky and bitchy a few times to me. \n\nOh, and refrigerate your fucking beer. I'm tired of having to pop my shit in the freezer for 45 minutes cause the beer or champagne I buy is piss warm.", "type": "review", "business_id": "me3myIgtuIgLEC5jd97uZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wtn-JNypbM7IupJm9t40Hw", "review_id": "jF-CoMuywJpnC1bGy-sbAg", "stars": 5, "date": "2010-12-20", "text": "This place had amazing food for reasonable prices. They have tiny card games at the tables which was pretty neat too, it keeps you busy while you wait for your food. The bar was neat, and the atmosphere was ok. I did not enjoy the music, and it was too loud to ignore. The service was pretty good, but the waitress made my friends and I uncomfortable, like we shouldn't have been there. It might have just been that one particular girl, and I would still go back. Don't dress too casual...", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "E83jZ7j07Hx-RcRiTbA_kg", "review_id": "GiuBzrMbSAe1L97v-_mRtg", "stars": 4, "date": "2010-06-25", "text": "OK, I'm somewhat between 3 stars and 4 stars on this. I really want to like this restaurant a lot so maybe I will have to return again and try another dish.\n\nPositives:\n\nPrice!!!! Wow, the prices are amazing. I got the hand pulled spicy noodle dish ($4.00), my boyfriend got the hand pulled pork noodles ($5.95) and we shared the pork dumplings ($4.95).\n\nThe dishes provided rather generous portions (we ended up taking half of our meals to go). \n\nThe dumplings were quite tasty (approx 8 large dumplings)\n\nI got the passion fruit smoothie with boba which was quite good (I love bubble tea so much and this place is pretty legit).\n\nThe restaurant was really clean and the window to watch the noodles being made was really interesting and ingenious!\n\nNegatives:\n\nMy noodle dish just really didn't have a whole lot of flavor and was not even remotely spicy for being titled 'spicy noodles.' \n\nAll of the food was really rather greasy. The sauce for the noodles was pretty much pure oil and the dumplings/sauce were pretty oily too (but still tasty). I was just hoping for a bit of a cleaner feeling meal instead of heavy greasy food. Maybe if I try one of the soup dishes next time I will have better luck! \n\nThe experience was overall a good one and I would like to try this place again, I was just a bit disappointed with the grease content of the foods which gave me a bit of stomach ache. Regardless, this place is worth a shot!", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "dW7dXceuBcQ2UgNbEmAiZQ", "review_id": "JPDl0DIa1yToQLSrakMD0g", "stars": 5, "date": "2012-02-27", "text": "I had a craving for Mexican- American type food, and since there is no longer a Chi-chi's around my friend suggested we go here since I was visiting the area from out of town. She is a frequent diner here, and loves it. I really enjoyed my experience as well. \nI love a great Chimichanga along with re-fried beans and ordered a much needed strawberry Margareta. So lovely!!!! I enjoyed everything on my plate!\n\n I Loved it so much I suggested we come back my last night in town for drinks and appetizers.\nWe decided to order the Mini Chimi Sampler, Macayo's Famous Cheese Crisp that I ordered with ground beef (it almost looked like a cheese crisp pizza),Guacamole Dip with chips. They also offer free salsa and chips every time you arrive.\nLike my friend- I would be a regular here. I know when I visit my friend that she and I will go back- at my suggestion and to her delight!", "type": "review", "business_id": "wzIPW_XyKc2DBWdOUM5hlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W5fdWpuyWBhfOsd0C_qq6g", "review_id": "Ri6CPjoiGfVxqBkdMHFV9Q", "stars": 3, "date": "2010-08-23", "text": "I've been eating here for years off and on. I used to live close by and went often. The quality of the food started to go down and we stopped going. Then they changed owners and it's ok to eat there again. \n\nFlamingo Palace is just what you'd expect from a strip mall Chinese restaurant. The food is so-so and the service is pretty good. We really like the hot and sour soup and the Flamingo chicken. \n\nI can say that through the many, many times that I've been to Flamingo I've never had an experience that made me NOT want to come back.", "type": "review", "business_id": "aozcOaCMwOHG8s-lbZ6_gA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y6TszIl9rQiO9vWUUJJJZQ", "review_id": "AbuDZvjREtVNVAQO23acEg", "stars": 2, "date": "2012-03-18", "text": "Lets satrt with the good, The brisket was a solid 7 on a 10 point scale.\nI didnt like much else about a place even though I have been wanting to try for some time. It was cold and rainy today and I really wanted some comfort food just as I was passing BE BBQ. So I stopped in and sat at the bar. From the moment I walked in and sat down The poorly trained bartender struggled with every step. It was also very obvious that the well trained staff was frustrated with him to no end. The Bartender knocked a plate of food out of one servers hand a the entrence to the kitchen, he couldnt settle a check with special instruction twice, and his amaturish drink pouring skills shined bright on this cold and cloudy day.\nOK Yelpers I admit Im a 20 years restaurant veteran and maybe thats why I was so stressed out watching the goings on but he things I was seeing was like a train wreck! but I just couldnt help but watch.\nOn to the food, I had extreemly high expectaions about the food and I even expected the prices to be on the Scottsdale side of high. What I wasnt expecting was the tiny BBQ Brisket sandwich, and I mean like 3 bites tiny.The BBQ Sauce was so heavy with chili powder and with almost no vinager it was gritty. The fries served with the \"sadwich\" were also covered with tons of chili powder. The meat itself was tender and flavorfull and well smoked, but I was surprised that it was a cold, that was a turn off, but not as much as the small chintzy portion.\nWell at least Big Earls is off my bucket list of must try restaurants, and as far as BBQ options in Scottsdale well that list is certainly shorter too.", "type": "review", "business_id": "WaO_hAunQrZ--vI308rHQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hi7VohxSS5OBt98w4j8t4A", "review_id": "5_AMdHdZQ2nvqex5j0SRkQ", "stars": 4, "date": "2011-01-08", "text": "I usually hate chains, especially Italian ones like Olive Garden and Romanos. But I was pleasantly surprised my Maggianos. We went because we got a gift card for Christmas but we are probably going back. \n\nThe bread and the dipping oil they start you out with is pretty good. I wish the dipping oil was just a little more seasoned though. My husband ordered the linguine and clams which he said was just ok. My stepson had the crab and shrimp cannelloni which he enjoyed. I really liked my eggplant Parmesan. It is the best egg parm I have had at a chain. The sauce is fresh tasting which huge chunks of garlic.\n\nOne nice surprise is that our server said that my dish qualified for a free take home dish of the same category. So I ordered the gnocchi and had a nice dinner the next day.", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JHmO-lVrHA0njKnQnZ8qLA", "review_id": "EHrQrsrZ5PqX_DlnZKB-Nw", "stars": 2, "date": "2012-10-24", "text": "Strange just strange. I park here when I travel out of town. I used the valet parking once last year and don't remember any issues. Today was my second time... I dropped my car off last week. The airport shuttle was waiting for me at baggage claim when my flight landed at midnight. I went to pick up my car after a long flight as was told \"it's at the front\", the valet guy pointed and disappeared. I was left standing alone wondering if there was another side of the hotel where my car was?? I walked into the lobby and the receptionist was quick to tell me there is a balance on my account. Huh?? Number one I don't have an account at the hotel and number two I didn't stay here overnight. Again I'm standing there thinking what is going on, is he getting my mixed up with someone else? Finally he explained the parking wasn't prepaid and I needed to pay in a order to get my car. He gave me a bit of an attitude as if I was refusing to pay. Dude, it's 12:30am, I just got off a long flight & didn't realize my fianc\u00e9 didn't prepay online when he set the whole thing up for me online. All this confusion could have been spared if the valet guy would have just said \"you pay at the desk\" instead of \"its at the front\" which is unclear and indirect. I think next time I go out of town ill try a different parking garage.", "type": "review", "business_id": "UtVMTQwKxQMJBQSlbuEqCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "SSGhIunh6uhGTFc67ILZ0g", "review_id": "ZZAoJF8Tuu7qwY8GL0pcyA", "stars": 5, "date": "2011-08-09", "text": "Great place to grab a coffee with decent prices and a great atmosphere for sitting down to do some work or catch up with a friend. Would definitely recommend!", "type": "review", "business_id": "BdSY-BHmH0BCCv47mOOS0g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QAMNtBlBPpHwGhugOIaumA", "review_id": "48QIHSZrQ2hq9PVTv_QNjg", "stars": 3, "date": "2012-07-07", "text": "Nice park. But people need to keep an eye on aggressive dogs. My 4 month old puppy was beat up by another dog this morning. 7-7-2012 We were the first ones out there this morning, around 5:15am We were just out there walking around, This lady and her grey/ and white dog. Was walking around. Then the dog came up to us for no reason, and jumped on my puppy just started beating him up. The owner didn't even do nothing.. The dog was almost killing my puppy. I yelled at the dog tried to stop him. Then he attacted me. Bit me very bad on left hand. The owner asked me where I was going I said west valley hospital. I was very scared. She said she would meet us @ the Hosiptal. I never saw her show up.. Those kind of Aggressive or angry dogs shouldn't be allowed out there. Yea go at your own risk. But people should \nnot let angry or aggressive dogs out there. The owner didn't even say sorry or give me her name, nothing. Shame on her. And her aggressive dog. I hope she teaches that mean old dog some manners... Brenda Hansen... The Hosiptal visit was long. But west valley took special care of me.. Thank you Hosiptal", "type": "review", "business_id": "IX5FfZL4P7WGOG-xwdD4wA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "gOV8nHj7JIKHoBUJKHZPuw", "review_id": "-h8KQnlgi71F1c3xj3UPnA", "stars": 5, "date": "2009-06-20", "text": "Recently ordered Spinato's again and just had to update to 5 stars... as much as I've always loved NYPD, I have to admit that this really is the best pizza I've had in the valley. It's not fair to compare the two, as they're totally different styles, but it's just so good. And they're local. Can't beat it!", "type": "review", "business_id": "pF7uRzygyZsltbmVpjIyvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Y_4cPHyChd9mLJktSYo5LQ", "review_id": "KLkUcJxn16bWbbBkJ7cwFw", "stars": 5, "date": "2011-02-07", "text": "We held a meeting planner's luncheon inviting local clients to our hotel that host regular meetings. Our theme was \"getting to the core of your meeting\" and the entire event had an apple theme. Yuri's Popcorn created a special flavor green apple for our event and it was a nice compliment to our other offerings. Our attendees absolutely loved it and were excited about all the creative and delicious offerings, including centerpieces with an arrangement of candies and popcorn beautifully arranged into a bouquet of yumminess.\n\nSeveral months ago, we hosted a lemonade stand for a client serving glasses of flavored lemonade. Yuri's created another fun flavor....lemon....that was well received by all.\n\nThey offer the perfect gifts for clients and everything is very affordable when you're on a tight budget.\n\nThank you!", "type": "review", "business_id": "SwMqbqCLXy8XDH1rEGQ8rw"} +{"votes": {"funny": 2, "useful": 2, "cool": 3}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "ivrzhiTPDL9VhrrUO6Bn7g", "stars": 4, "date": "2012-05-19", "text": "It was a hot day with great bbq! With the Yelp discount, admission was reasonable ($6) compared to the original $12 price, and there were a good number of bbq stands to try. Samples consisted mainly of pulled pork with bbq sauce, although a few stands did sell items such as hot links, rib tip, and brisket samples. I would have liked to see more stands that sold plates of food rather than samples, for those with a bigger appetite. Towards the back there were also some stands that had food and home items for sale (e.g., Cutco knives, clothing, salsa, etc.). It would also have been nice to see more items for sale that were bbq related (aprons, grills, tongs, etc.). All in all, I'm glad I went!", "type": "review", "business_id": "6_nvD0eUrr6oN8djmJtaQQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "-F32Vl8Rk4dwsmk0f2wRIw", "review_id": "2IKCbs8HL2XQyjCoC0EvOw", "stars": 4, "date": "2008-04-02", "text": "Hey, its difficult to find anything particularly wrong with this stadium, which is especially remarkable coming from an obstinate sports fan who intends to hate before he loves. \n\nImmediate impressions of the stadium are that it is very well-designed and constructed with fan comfort in mind. Chase nails this aspect solidly. The concourse are rife with eating and drinking options. You literally cannot walk 10 steps without tasty, delicious stadium food beckoning your fat ass to indulge; polish dogs, ice cream, 24 oz. bottled beer; Peter fucking Piper Pizza (Mmmmmm!). The concourse also opens up brilliantly into the field of play, and one can go take a break from the seats but still have the ability to watch the action on the field. Very important feature, particularly with baseball where sitting down can become monotonous. \n\nThe actual field of play is marvelously constructed, with modern and classic designs colliding. The dirt path from the mound to the plate is a throwback to the 30s, while the pool in the outfield adds a very unique and \"Arizona\" touch. Pretty damn cool. The classic clockface in centerfield is beautiful, and the grade of the stands are perfect for the noise to reflect off the metal structure. Now that its under new management, they are opening the roof much more, which is a HUGE plus. Many fans have been complaining about the lack of open air since the stadium opened.\n\nSo two things that I don't like about the stadium, one ornamental, the other functional. \n\nFirst, the hokey, 90s-esque mosaic on the outfield slats. Jesus. How about an update? Its just looks so fucking bad, its almost embarrassing, and has prevented the outside of this architectural masterpiece from aging with grace. How about HUUUGE pictures of current players, or true windows to let the light in and perhaps a view of the distant skyline? This would require, of course, for PHX to actually knock down the Garage Mahal and actually build an outfield skyline.\n\nThis leads me to problem #2, the aforementioned \"Garage Mahal\", the most deplorable, atrocious boner yet for our mentally-ill city planners and officials. What a total fucking waste to build the most useless and overly enormous parking garage that ultimately discourages people from walking through downtown before and after the game, restricted the potential for bars and restaurants to be placed there instead (fuck, they didn't even give the option for ground level retail), and mostly sits at 1% capacity on non-baseball-days. That would be 284 days of uselessness. \n\nThough this isn't the D-backs fault, it is a result of stadium proximity, so as a penalty, combined with those silly mosaics, it loses a star and red pigment.\n\nOverall, however, Chase field is the tits and will eventually be a MLB classic.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GE-34FoRSTKuw8OWBc4YrA", "review_id": "UTASTu3fRPyLthaAQ5Hnxg", "stars": 1, "date": "2012-03-21", "text": "I came here at noon during spring break. When I walked in, no one was there. I rang the bell on the counter. No one came out from the back. I waited and rang the bell again. Nobody. I waited and rang the bell a third time. No one. I walked out having been unable to even find an employee much less place an order and try the food. Pathetic.", "type": "review", "business_id": "OmJ283Un9mAbr_gc7v4N4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Pwzztdd1B8m536_C2p6zgg", "review_id": "84SAmhSIsNlHFn_rHmePZw", "stars": 5, "date": "2012-02-17", "text": "Friendly staff and great Americanos!", "type": "review", "business_id": "Gdmig8uYu5Mdfcgn0XsT3Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "yXqQqH8Vr1cmFsWif7lGBw", "stars": 5, "date": "2011-10-27", "text": "An amazing section of light bulbs for just about anything you need. Most are in stock, reasonably priced and ready to take home. I have brought in several odd bulbs that I needed to have replaced with no markings on them - They always come through like champs. \n\nTake my advice and covert your old bulbs to LED - Well worth the cost for me just to not have to replace burnt out bulbs all the time - some of my lighting is very hard to get to and Halogens are so damn hot!", "type": "review", "business_id": "z1CjVXv6M6RbWhZO1lIExA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jMGNNb-vpLcwFikrxIlTkQ", "review_id": "iSxZ2wCLeh738TfpVVz5Xw", "stars": 3, "date": "2010-08-26", "text": "Glorified Pei Wei", "type": "review", "business_id": "enbTOcl7WNgsjsAtmhvDRA"} +{"votes": {"funny": 4, "useful": 0, "cool": 0}, "user_id": "31tjiU793jocP_DKwn1V8A", "review_id": "_iENJ8oDR9SLQ6aM5xSCoA", "stars": 2, "date": "2008-08-31", "text": "So when you walk in, walk to the right and have the machine scan your card. I'm telling you this because I looked like a douchebag because I assumed that the Bally worker would scan my card. \n\nOh yeah, you'll smell urine. \n\nLike, did someone just go crazy and piss all over the place? Seriously, how does a smell get so horrendous like that? What is that? \n\nThere are a lot of treadmills and they're recent...not new...they look overused...but yeah. I'm sensitive to smell... I couldn't even exercise.", "type": "review", "business_id": "gD0k_0kKi6Zj46Wg4WzP8Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "JgDkCER12uiv4lbpmkZ9VA", "review_id": "vEp6Fu9SYHKmpJcHTT1SKA", "stars": 4, "date": "2010-08-26", "text": "I order the same thing at every Vietnamese restaurant. Rice Vermicelli Bun with Grilled Pork and Egg Roll, and spring rolls. This order does not change. Ever.\n\nThey do the pork here more like a pork patty, or meatloaf if you will. In Vietnamese cuisine, there are two different ways to do it, the other being grilled slices of pork. I don't know which I prefer as they are very very different.\n\nYou get a large amount of noodles, very fresh vegetables, and a generous portion of meat. The sauce is tasty, and everything seems very high quality. Spring rolls are good, as is the peanut sauce they serve them with. The service could be worse, but not much. It's pretty horrendous. Atmosphere is typical of a Vietnamese restaurant, total dive.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IpCH-jaFA-1YgCdi6YmnFg", "review_id": "xiQFTr-DwzNqvkLcsbpWUQ", "stars": 5, "date": "2010-05-20", "text": "Been twice. Authentic, high quality & great price for what you get. Salsa de Chile de Arbol was the best!! Loved the decor. Orchata tasted fresh, which is a rarity in most Mexican Restaurants.", "type": "review", "business_id": "zp713qNhx8d9KCJJnrw1xA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "R1ZoIgMxusX4kvDiHHzisw", "review_id": "NQhqeF7j8P-uWLsVjcwRRw", "stars": 4, "date": "2009-06-13", "text": "Lash Extensions by Cher here are AMAZING \n\n_Affordable. \n_She listens to your every wish for the final product. \n_Very friendly. \n_Accommodating evening appointments. \n_Reasonable amount of time to complete. \n_She is pretty busy so make appt in advance. \n\nI wouldn't go anywhere but here for lash extensions! \nCher is the greatest =) \naaand no I am absolutely NOT Cher haha just one of her very satisfied customers.", "type": "review", "business_id": "TTjdeeMfTw9s9vg4T1a3pw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2yADbgjdAsKjDQMgmn49XQ", "review_id": "ZEI1OHOntJqtEn4AbL9pSQ", "stars": 2, "date": "2011-12-01", "text": "I was very disappointed my last experience at Sauce. I ordered a spinach and apple salad with chicken. I think the apples were from a few days ago wtih no taste and the shredded chicken must have been in the freezer and put on the salad.\nThe kids however did enjoy their mac and cheese.\nThe salad was terrible!", "type": "review", "business_id": "JxVGJ9Nly2FFIs_WpJvkug"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "jQxxHLXLbFsNYNWNdSjRKQ", "review_id": "2LIxNbpGl--S1u2sywq90g", "stars": 3, "date": "2009-08-25", "text": "You are seeing a continuing trend here. When it first opened it was a 5 star place but since then the pizza has been inconsistent and going down hill. The last pizza I ordered, the crust was soggy and it had too much yeast. The cheese was also too rubbery and tasteless.\n\nI grew up watching 90210 like many of us \"old folks.\" They had the Peach Pit. Do you remember that place. Well Jimmy and Joes is the pizza version of the Peach Pit. Yes, me and my 30's felt age inappropriate when I arrived. And I immediately felt like I was in high school again when I went to grab a tiny ketchup cup to grab some wing sauce and they said it was 60 cents. Another person walked in and they gave him a hard time because he didn't have his coupon on him even though he read the coupon code over the phone. It had that high school vibe..you know the one I'm talking about the...\"I owe you 3 dollars and I'll pay you back tomorrow.\" vibe. That vibe is felt when you park there. There is limited parking as it is and whatever parking they have, there are signs that limit you to 20 minutes parking almost implying they don't want you to eat there. I was too afraid to take napkins because I'm sure it had some price or limitation attached just like everything else there.\n\nI've eaten here several times and I've reached this conclusion: eat at the place but don't pick up pizza here. JJ specializes in the one slice and drink. Their short slices are done well and if you don't eat it hot when it comes right out of the oven, it loses it's flavor fast. I've picked up pizza and it's almost like two different pizzas. When I picked it up, the cheese was exrtremely rubbery and the crust was so chewy like steak. This is a great place for a short lunch or a business lunch but I wouldn't order several pies if I was hosting a Superbowl party or had people over.", "type": "review", "business_id": "yKbXWo_6VlS3mD_RcPquog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JiIb7xzIAmFODMQ0i4I1QA", "review_id": "zRSIHgqLIOqbxUn7g6vRAA", "stars": 2, "date": "2011-02-19", "text": "Very slow service. Food is typical for BK.", "type": "review", "business_id": "0le8kj4gIHe9aZ1NfS2_Ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "SveiOSU6AHrjAY5cbewRvg", "review_id": "cZMdMiD74jtqcLWLJ9kPEA", "stars": 5, "date": "2010-11-20", "text": "Well I have been looking for a good barber and I have just found him. Like many other of the reviews it is very hard to find a good barber and if your looking for one go here and see Phil. I saw the other reviews on yelp and thought I would try him out. I went and got a haircut wash and an honest to goodness hot foam straight shave (hard to find now days) and it all came out wonderful. I thought the prices were in line for the area and maybe cheap for the service. 32.00 for all the services, I think it is 17 for just a haircut. I recommend anyone to go see him if you need a good cut or shave.", "type": "review", "business_id": "0iDFiC3ThklulFzSlJqaOw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "1kDUQZY0FQ6qyCSTR3hGpg", "review_id": "Orcxno3LxwHIZ1l5izWXhA", "stars": 4, "date": "2009-03-29", "text": "Great place, great food, great environment .", "type": "review", "business_id": "X7FAAKkwOwaUUpR8QPChyw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Qz_WQ6blpBBSaEwsofbB_w", "review_id": "G2OVqZAkNl5OBrzeTrX8hA", "stars": 4, "date": "2010-06-15", "text": "This was the first Thai I have had and it did not disappoint.\n\nI went to Mint Thai with my in-laws, who love the place, so I had high expectations. It's a nice restaurant, with ample seating, and a good atmosphere. The menu can be a little intimidating. Each dish is numbered, named, and has a description, and there are something like 70+ dishes to choose from, plus spiciness options, so it can be kind of hard especially for a newbie.\n\nI picked something in the 60s with chicken and red curry. It was really delicious, with unique flavors and a good spiciness. My only difficulty was that my food was basically swimming in the sauce. I ended up packing some up to take home, and ended up with a plate still full of sauce.\n\nOther than that, this place was delicious. If only it weren't so far away, so I could try more of their options.", "type": "review", "business_id": "RFeDe3fNr14kvUKlVx6_4w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Zwtx7FLZcK5F2P0-Tz8mHg", "review_id": "4DjLBAUUvYcSdP8uPcMeug", "stars": 4, "date": "2010-11-16", "text": "Nothing about it was good for me, but everything about it was good! My friends have been raving about Forefather's for the past year and despite working less than a mile away I hadn't tried it. Being a vegetarian I figured there would be nothing for me to eat. I was wrong, they have a nice salad menu (that can be modified) and their tomato soup and grilled cheese is fantastic! I wanted to try the sweet potato fries, but couldn't possibly put one more thing in my stomach. The place is nothing fancy, order your food at the counter, and pick it up at the counter, but the service was still great. I'll definitely be back next time I'm in the mood for some greasy comfort food.", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "HfNSOBGT7payhKfl998BzQ", "review_id": "B1XZotQ3xRyXAKgpoSIm-g", "stars": 4, "date": "2011-08-29", "text": "I'm tired of trekking to the east valley for Lee's Sandwiches.\n\nThao's hit the spot. The marinade for their grilled pork is excellent, very flavorful. I was surprised to see that they are a full service restaurant, offering pho and a variety of plated meals too.", "type": "review", "business_id": "-_npP9XdyzILAjtFfX8UAQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "UgttlReSB8g9YF3URK8BPw", "review_id": "GoPGEun04Nfv4vj_oILJqQ", "stars": 5, "date": "2009-03-12", "text": "After a night of debauchery with friends, my friend and I found ourselves craving a comforting bowl of Pho. I've been a regular at Cyclo's for quite sometime but decided to branch out and try something new. I was pleasantly surprised with Pho Ao Sen! I am always happy when I enter an Asian restaurant and see Asians patrons...probably sounds a little weird but to me it speaks volumes. The tranquil aesthetics of this quaint cafe made us feel welcomed and relaxed. The decor had a modern Asian feel: minimalistic organic zen with soft ambient music playing - perfect for a Sunday afternoon.\n\nWe ordered the Pho Dac Biet Bo Vien- House PHO'nomenal (House special combination of *sliced eye round steak, well-done brisket, well-done flank, soft tendon, tripe, and beef meatball) and the Pho Tai (Sliced eye round steak) and Goi Cuon- Spring Rolls. As with most Vietnamese restaurants the portion size of Pho is quite large and we could have shared. Both were delicious, filling, and had a nice aroma but nothing too overpowering. I've experienced a few places that use a little too much anise, so much that you can't get an overall sense of all the delightful herbs and spices used in this delicious creation. The Spring Rolls had a very fresh crisp flavor and were the perfect accompaniment to the Pho. \n\nI give Pho Ao Sen 5 stars! Best Pho I've had in the valley, beautiful atmosphere and friendly staff makes me one happy girl! :)", "type": "review", "business_id": "yMUVflS-2SnOGafXmdHy6w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "ohRev2g3tvXpV3gBnhC-og", "review_id": "XLoy0elbJ0tbApBfBNaXYQ", "stars": 4, "date": "2010-01-11", "text": "Great China chinese restaurant and super buffet there is no the in the name.But there is some good food inside the place.the decor is average and are booth was comfy but well worn.The buffet had about 80 items ,about the super buffet requirement.They had a small sushi section and the sushi was very tasty.The wonton soup i had was very hot and good it had most of your typical trays with a couple of different twists on some like the stuffed clams were huge and and they had some good sole,that thet called snow fish?When i left this place i was stuffed and everything i ate was good.So yes Great China gets 4 stars.And for Norm R. they got the almond cookie packages", "type": "review", "business_id": "3DCjixw25ebL2_sAvNUBUg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "yGzrkjrjRI9TRdjAAMc5dQ", "review_id": "9SFRJk6btO9J-jLeYnDBnw", "stars": 4, "date": "2008-02-21", "text": "I love Los Favoritos! Mi favorito is the chorizo breakfast burrito (most popular item there?). Interestingly enough, I think it's bigger if you order it for dinner than for breakfast, but for either it's plenty big! Muy rico with salsa verde. I'm embarrassed to say that I've only had a few of other things on the menu (quesadilla and other burritos), but they've all been delish! For some reason, though, I just get my mouth set on chorizo burrito. It's seductive.\nThe folks there are very nice and sincere, and they know English well enough, although I think some are working on it. \nTip: You can order ahead! Especially helpful if you're going during the lunch rush, when it seems like every kid from Seton H.S. is there. it's pretty nice to breeze in and pay and grab your stuff when there's a gaggle of folks still waiting for their order to be called. \nTip 2: If you don't order ahead, you can place your order there and then go across the courtyard to Starbucks to grab a coffee (that probably costs more than what you got at Los Fav's) while you wait for your food, if you're so inclined. This is a bad habit you might not want to get into. Believe me!", "type": "review", "business_id": "Lx4ZFP6dIMzi7Ib-ljV-ww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CWi2e0K7UjDZkIpFxo18Ug", "review_id": "93j5nG44gNVFi7ZHbqUuNg", "stars": 5, "date": "2012-11-15", "text": "Consistent with the east coast stores, great flavor selection, friendly and accommodating staff. \nThe regular size doesn't look big but it is plenty for the price, not to mention the staff consistently fills above the top the cup on all products. \nA much better value than Cold Stone, Baskin Robbins, and self serve froyo.", "type": "review", "business_id": "xNmhVSujLo1kC9cgjOE-sw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "2FtCOwNwd6UsBgScSc1_Ug", "review_id": "OUuNSWiMSBl5zFJdo06kVw", "stars": 4, "date": "2012-02-08", "text": "Nice little wine bar. I enjoyed a flight of whites and one of their specialty salads for lunch. Pretty tasty. The food won't win any culinary rewards, but it is good and the ingredients seem fresh. Minor niggle, they only seem to have high-top seating... when all I want to do is curl up in a booth and drink myself silly, this can be a problem.", "type": "review", "business_id": "a9Wk44qJLWoJQT-_H8MB-w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XpSZrY_Ym8GGx7SNEd0q9g", "review_id": "5yqrmHhUQzb_d22HrslTHA", "stars": 5, "date": "2011-02-28", "text": "I can't say enough wonderful things about this branch! The manager is fantastic, the other employees are happy, enthusiastic, and efficient. Not to mention that everyone there has impeccable manners and they treat their customers as customers deserve to be treated! Go to this branch, you'll understand what I mean!", "type": "review", "business_id": "WIDZSGjX4GGKIp1nZoHepg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "188v8fiXebMrsPAB4PJ_PQ", "review_id": "HUEWTzsGmoxxjR-gPq9fTw", "stars": 2, "date": "2009-09-06", "text": "So, I say to myself, \"half price sushi for lunch? Oh yeah! You betcha!\" well, even at half price, it's tough for me to get excited about thus place. \n\nThere's no real creativity (except for the disco balls during \"happy birthday\", seriously, uh yes) and it's fairly generic fare. The 2 stars are really for the fact the service was Johnny on the spot for edamame, miso and salad. The main fare though, just plain lacking. You're better off heading a mile or 2 down Ray over to Ra.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "v6RtrOvdoMjwLYWyieeFNw", "review_id": "9s6tEorM4qvhaHFjVDxeaQ", "stars": 4, "date": "2012-02-18", "text": "Every time I head to Phoenix, I have to head to Chino Bandido. The food is in large portions and very filling! It is interesting how Mexican and Chinese food come together but it seems to work as this place was packed. I ordered the vegetarian quesadillas and it was loaded in raw veggies but I would have liked to remove the cheese and I was not sure if I could because it was so packed in there! \n\nTry the food out, you will not be disappointed.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "vMDrP3b5PZFZLmRLrJrGYw", "review_id": "IOjAUnSJ0ZS6WDgq63l7sw", "stars": 4, "date": "2012-03-21", "text": "Stumbled into this place while vacationing in Scottsdale for Spring Training. I was suffering from one of those hangovers that makes you feel your pulse in your dome. My buddy(who was campaigning for breakfast at Taco Bell..who does that?) was driving like a kamikaze pilot and responded to the vehicle full of people pointing towards Paradise and grunting uggghhh. While walking up to the door an odd brown dribble stain was pointing us towards the entrance. Didn't know what to make of this. Also wasn't sure if it was from my friends who had plodded in ahead of me. Once entering this fine establishment my not-so-working-correct brain couldn't comprehend the two different counters. Also confusing was the two menus. Being told what was going on by a nice gal behind the counter didn't help much since English was definitely my second language at this point in time. After just pointing at what I needed I was ushered along to the cash register. I got my number sat with my group and waited.....and waited......and waited. As more time passed I began to ponder what the actual construction and building time for a croissant sandwich was. Also helping was my wife reminding me of every person that got there food ahead of me. We were asked how are food was a couple of times so I figure they could sense my frustration as to not having it. Then my glorious croissant sandwich was brought to me. It tasted absolutely magnificent. I could have died right then and been happy. To make up for this delay the manager brought us THREE boxes of cookies. I didn't catch her name, but damn if she didn't pass customer relations 101. Tossing me a free OJ would've been sufficient, but to give this wild pack of drunken animals munchies for the weekend went above and beyond. I will definitely crawl back in the next time I visit Scottsdale.", "type": "review", "business_id": "TisnIBR2lMvT1DMC95_eHg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bpfxmW8wK5aWY61c_5E77Q", "review_id": "XXr1_UvBr7EuKbarVdZ7nw", "stars": 5, "date": "2011-04-16", "text": "Had the meat pizza last night and it was truly one of the best pizzas I've had in a long time. The owner is always very welcoming and warm hearted!", "type": "review", "business_id": "podj1OWSL3oEJsOpGj8SUw"} +{"votes": {"funny": 6, "useful": 6, "cool": 3}, "user_id": "bK6v8n3zyycr7Eo0-PHJlg", "review_id": "9QI-LfxIKIZ28FJ-2Gnnlg", "stars": 1, "date": "2008-02-08", "text": "what can I say about Glam... well, i really, really despise it. Every time I go there, I regret the decision. And in my grandiose style, I'm going to say why in a list:\n\n1) Cash only!! But listen to this, the bartender will take your debit card, charge you a fee, and give you cash, which you can then use to buy drinks from the same bartender that just did the whole transaction. WHY???? \n\n2) The location kinda blows. It's in a weird strip mall across from another strip mall. Have you ever driven by there in the day time? It's shady then, imagine at night time.\n\n3) too hipster. I feel like I am not allowed there as I work for the man, do not wear black leggings, or have razor cut bangs. I, in my mall clothing and \"mainstream\" style, stick out like a sore thumb.\n\n4) The music is just a little off.... ii dunno how to say what I am thinking, it's just off.\n\nOkay, the floor is fancy. That's about it.\n\n(sorry, I'm a bar snob and Glam deserves my wrath)", "type": "review", "business_id": "tTOWEYkyIZdwVEoXDmpm2w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "oYiskdGb0XYT2NjRb-s_qg", "review_id": "Zn_VrwXE4OcYPwd1HdWg5A", "stars": 1, "date": "2011-05-04", "text": "Very loud, crowded and quite unpleasant. I felt very cramped and the environment was very uncomfortable.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fcN4Ia18HJRQkHTzKuWi6w", "review_id": "v-zFGwZIT38cSi5R55PVSw", "stars": 2, "date": "2012-09-21", "text": "This place screams, \"NO\"! \n\nIndoor seating? No. I ate outside in the heat. \n\nWater? No. I asked for a cup of water with my meal and was told they only have bottled water and soda for sale. \n\nStraws? No. I walked to Safeway to get a gatorade and they don't even have a straw for me to use. \n\nCan I use the Now Groupon for a 14\" pizza? No. Only good for the 12\". The groupon wasn't clear and the cashier didn't tell me that until after I ordered and bought the Groupon, which I told him about when I walked in the door. \n\nTo add insult to injury, all toppings cost extra. some are $1.90 each. Plan to spend a lot of money and be underwhelmed with mediocre pizza if you don't head the warnings posted here.", "type": "review", "business_id": "gvSB2TlcxAOs_ppZ44iirg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-YLtOLwOh1_xxxBnGtuvNg", "review_id": "TjdrWTs4Urn3soY-GaWf5w", "stars": 5, "date": "2012-03-22", "text": "Great tire shop. I brought in my car because I kept losing air in a tire, they found a nail, removed it and patched the tire in 10 minutes flat. Very nice people, and very fair prices.", "type": "review", "business_id": "3p78HMBZjl8ZiLo_MM3Rzg"} +{"votes": {"funny": 1, "useful": 4, "cool": 5}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "iRyy3qunWudCYL9Kz1Fmlg", "stars": 5, "date": "2007-06-26", "text": "Spotted Donkey Cantina is amazing! They have delicious Mexican food, and fantastic margaritas to wash everything down with. You do have to pay for chips and salsa here, so there probably won't be any of that four bowl snacking before your main entree's come, but the medley of salsa's it comes with make it all worth it.\n\nI've tried quite a few of the dishes here, and they've all been excellent. In no particular order are my favorites:\ncheddar enchilada's with hatch chiles and rice...spicy!\nsanta fe macaroni and cheese...again- spicy!\ncod and shrimp tostada's- delicious!\nshrimp fajitas\nshrimp tacos\n\nAnd for dessert:\nfried banana wraps or the mango margarita sundae!\"", "type": "review", "business_id": "LdI-fcJDXGE7ns_jwWY2ow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zcSzK5KQmnsyg0umeezTYg", "review_id": "i4036CvFbar5Y5fdrDJBSA", "stars": 5, "date": "2012-02-12", "text": "Always consistent. Great service, great carne asada and a pleasant patio on a beautiful day.", "type": "review", "business_id": "3l72FflaaeI0tWEAWN3-gQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "4pi5L3KDxNiYLMQG7rTkdw", "review_id": "Xgazapi1MWikFK-ZHF-L0g", "stars": 4, "date": "2011-12-10", "text": "Ahh, the crave. Having grown up Vietnamese, I consider myself something of an expert on Vietnamese cuisine. So I've had great (of course, my grandmother's and mother's food is 5 star), and I've had horrible. Pho Van (putting accents on the vowels is difficult with an American keyboard, so I'm not going to bother) falls in the middle--not my favorite, but not too bad.\n\nWe started with appetizers. Cha gio, which is a pork filled roll in a won ton wrapper, was okay. It tasted not so fresh, but had good filling, and the Nuoc Mam (a fish sauce used to flavor) was okay. My wife and I had Goi Cuon, which is a shrimp and pork, with vermicelli noodle rolled in a rice paper wrapper, was pretty good. This is dipped in a peanut sauce.\n\nI had the basic Pho Tai. This is a soup, typically pre-prepared by putting cooked rice vermicelli noodles at the bottom of a bowl, and then very thinly sliced beef, and then hot Pho broth poured over the soup to essentially reconstitute the noodles and cook the beef. The secret to Pho is really the broth. Typically, this needs to stand on its own to make a good judgement. It does--it was flavorful, tasted fresh, and had a very rich flavor. I was pleased. For my own purposes, I do add Hoisin Sauce and Srirachi Hot Sauce. Having eaten here once before, I knew I wouldn't be disappointed. The only criticism I would have of this Pho is that there's not enough of it. The standard bowl did not have much in the way of noodles or beef. For $8, I was hoping for more food.\n\nThe rest of my family members had Bun Thit Nuong Cha Gio. This is a traditional dish with rice vermicelli noodles, barbecued pork, and cha gio, over which you pour Nuoc Mam. There is a bed of fresh vegetables. This is what I typically think of when I think of Asian Salad--it's bean sprouts, lettuce, mint, and cucumber. The barbecued pork tasted quite good as did the Cha Gio, once again. I found this food quite good as well. \n\nThe restaurant was very clean, relatively quiet. There's a very pretty fish tank. The decor was very nice. The staff was attentive, and service was quick. I note though that it was 5:30pm on a Friday, and the restaurant was unbusy. The Nuoc Mam smelled very funny to me though--I'm used to the smell of this food additive, and this one smelled quite odd to me. We are talking about something called \"fish sauce\" though, so I'm sure there are variants. It tasted fine so no worries. Staff needs to use cleaner towels when they wipe the tables as it does leave its own smell as well.", "type": "review", "business_id": "dipzJ5BExpm6BtJ91mXd4Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mz76QextIDVa2alekV8xcQ", "review_id": "1weJge2eJmR97srLi-EhTw", "stars": 4, "date": "2011-09-24", "text": "VERY nice. The owner supports soldiers; we used a USO voucher here for a quick last-minute getaway before my husband deployed. The rooms are very clean and seem really updated. The staff is extremely nice and helpful, and the breakfast is pretty good. It's also RIGHT next to Ikea, can't go wrong there!", "type": "review", "business_id": "iyTQbU_XdznZ48AzeQfbdg"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "J2GbiIGX7KcU-VNA1c9uYA", "stars": 4, "date": "2010-02-14", "text": "Again, I'm trying to mix things up again on my end, and since Gold Bar was packed with no seating, I decided to go elsewhere and get my internet and coffee on. This place is a little out of the way for me, but they offer free wifi, have great hours and serve donuts!!!!! Hooray for donuts!\n\nThe place is small. Counter seating only and its limited. Parking is adaquet, and considering its a Sunday afternoon, an open seat is always a sight to see.\n\nService here is fine, and their donut selection is decent considering how late in the day it is for these guys. I don't go to Dunkin Donuts often, but thier always there when I need them. I love the free wifi too! hooray!\n\nThe one downside to this whole thing?? ITS FREEZING IN HERE. I feel like I'm in a morgue its so dam cold. \n\nAnyways, I will be back!!", "type": "review", "business_id": "IK8ID-Dq7LZsPppx4sKLhg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EIQ8gPTx5L-zXPlYDwWGeg", "review_id": "bQedwDbtiXqTMt_hTAt8zg", "stars": 5, "date": "2012-10-05", "text": "I had a really great experience at the Havana Cafe.. Everybody there was super nice and the service was great... I don't think our water glasses ever got to less than 1/2 full. The food was excellent. Price-wise it was a little more than we expected, but totally worth it. The sangria and drinks were kind of pricey, but ah well. Overall a very good experience- we will be back!", "type": "review", "business_id": "yJr24Yy1K6bt2G9fX3_zPA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "MhWBj3oDg4DevVEpUeqTaw", "review_id": "GC39RGV36uGhk0yDKb7v0Q", "stars": 4, "date": "2012-02-15", "text": "Stayed here on Feb 10/11/12 was over all good experience.\nWas judging horse show, so, hours a bit strange. Desk staff very polite & helpful. Due to injury, used small suite w/disabled capacity $10 more. Very comfortable, good bed/pillows/amenities. Clock radio wouldn't allow wake up. Lots of TV channels. Following afternoon, was shy coffee, shampoo, soap, etc., went to desk & resolved(housekeeping problem).\nBreakfast was OK on first day-not really different than most good hotels. Second day, Biscuits & gravy good. Lady taking care of breakfast room OUTSTANDING. \nIf this hotel wants to host horse show folks, they might consider animals, and taking a security deposit. As a judge, I do not bring animals. In normal travel I do.\nWould certainly come here again.", "type": "review", "business_id": "mH-OXF1ilnaPC2kry9Ox1g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yH0ch7w37Y29QBqsSCMFbw", "review_id": "sMLSwQ9cbz7pQGqnI9uApQ", "stars": 1, "date": "2009-09-07", "text": "I enjoy falafels and my boyfriend really likes Gyros. So, when we received a coupon for Daphne's Greek Caf\u00e9 we were jazzed to go check it out.\n\nWhat I noticed right away is it has kind of a fast-food sort of feel to it and I thought, OK, its catering to people on their lunch breaks. However, the food itself is like Greek fast food for people who have never had anywhere near really Greek food before and so they wouldn't know any better.\n\nThe plates are astatically pleasing with everything arranged nice and neat. This amounted to zilch to me. When I got to eat, I want plenty of food and I want quality as appropriately expected from the type of establishment I am eating at. \n\nAt Daphne's you get a few little thin slices of what may or may not be real gyro meat. The falafel meat is little over fried disks. That's right disks. Not balls of falafel meat where the outside is slightly crunchy and the inside is meaty and moist. The pita bread is not. It's just some flat bread cut into little triangles. The tzatziki sauce is ... what the heck is this stuff in this little 1 inch paper cup? The vegetables were fresh.\n\nThere is more to complain about with this place, but you get the picture. I'm thinking that anyone who likes it here just doesn't know what real Greek food is like.", "type": "review", "business_id": "VVPVg9aJzNczTgeM36TGJw"} +{"votes": {"funny": 18, "useful": 13, "cool": 14}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "SV3tciZCCvGa6N-LVnZ5VA", "stars": 5, "date": "2007-09-17", "text": "Gourmet markets, to me, are like candy shops to a sugar freak. \"Hello, my name is Thomas. And I am a FoodAholic.\" There I said it. Do you feel better. Huh? Oh. Sorry. Didn't mean to get so defensive. But how can you defend AJ's? How? How I ask you? Ok, so it's REALLY expensive. And, yes, they should provide a blood donor center at the entrance to give cash on the spot for shoppers plasma. I HATE huge markets. Fry's too big. Safeway just right. AJ's just right and then some. The produce section is perfection. Not mounds and mounds of produce you know is wrinkling and rotting more than Bea Arthur in season 6 of the Golden Girls. Cute little baskets hold just enough fruit and veggies to select from and not too much where you know it's all riddled with germs and spiddle. The meats and cheeses? Oh, my! The filet (at a whopping $34.99 a pound) is worth every bite. Of course it'll be a year or so when I would pay that much again. Hello? Blood donation station idea! The ready made food is dee lish...curry chicken salad and brocolli delight to name two. Yes, it' s called brocolli delight. My gay ass did not name it. I would have called it beautiful broccoli. Just rolls off the tongue better. I've never had a cart wobble...see Fry's review...they ride smooth and apparently are good for the enviornment. Flowers, baked goods, dishes....AJ's. It's here. I'm queer. Get used to it.", "type": "review", "business_id": "Mng1FUcW-xRSdsDkowQm2Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PAU2oAdPnEiYsCASNkel8g", "review_id": "whWEjonHdYC0VTPRWXRDIw", "stars": 4, "date": "2011-09-19", "text": "If you need fake nunchuks, old china, random golf clubs, and a great selection of clothes to sort through, then this is your savers.", "type": "review", "business_id": "NLek5KCyuf9HHIMFJDEf_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gqxJR_3_NkNypzS678QPuQ", "review_id": "ob34u8KC1_omPQRIg-2fDw", "stars": 4, "date": "2012-06-25", "text": "AZ 88 was a great experience all around. It's a fun, hip and hopping place. They have an excellent bar selection, and although all I can only personally speak for is the to-die-for burgundy burger, there were four us and everyone was raving about their meals.", "type": "review", "business_id": "JhupPnWfNlMJivnWB5druA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "4vECjx1eQSWCHfM3ZSbrNA", "review_id": "197r0HvEBKF_D2qwLHarxQ", "stars": 4, "date": "2010-08-29", "text": "I go there once a month or so with friends. Yeh, people watching is the best. I like to dance too, and I don't care if people think I'm horrible. I'm usually laughing and having fun. And that's the point, right? \n\nWhen you get tired of one room, go to the other. It's fun.", "type": "review", "business_id": "452qcsoV-d55n0V7Osh50A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "Iv7fQNT5LrrJcDx8AbNkXA", "review_id": "DL4O55L68FT2UAv5vgDW5Q", "stars": 5, "date": "2010-07-07", "text": "This place is fantastic.\n\nAbout the restaurant itself. It's right by downtown Phoenix, and in fact right next to a Light Rail stop--so keep this in mind, parking is metered and sometimes hard to come by easily, if you live by a light rail this may be the smarter option. The place is seriously tiny, only about 6-8 groups of people can be seated at one time. A slight drawback is that there is limited outdoor seating, which, given the predictably large lines even on weekdays, is a problem. The Phoenix sun will make a 45 minute wait seem like an hour and a half wait.\n\nNow about the service. I've always had a good experience with the people who work here. The first time I came here, apparently one of the owners saw that I looked lost, because she came out and very kindly explained how people are seated, where I can go to get coffee in the meantime. She even suggested I leave my cell phone number and she'll call me when my seat is ready, in case I'm shopping for example. The waitresses always serve us quickly and never leave us hanging, and they're always smiling, which for some reason makes the experience so much better.\n\nNow for the best part. I swear, they put crack in their food, because although their breakfast options are simple, they are out of this world. The first time I came here I got the waffles. Perhaps it's because they use REAL maple syrup, or all of the ingredients are organic and locally grown, but they make the best waffles I've ever had. I don't even know how one makes a good waffle really, it seems pretty formulaic, but it's stellar. I ordered it with bacon, which was also wonderful--the bacon used was the good stuff, not the excessively fatty bacon you buy at the supermarket. Every bite is spectacular, and when you're done, you're full, but not the kind of full you'll often get at breakfast joints where you think you're going to explode or take a nap--full, but refreshed.\n\nThe second time I came I got the pancakes. Not the best pancake I've ever had, but still, superb and the real maple syrup just sends it through the roof. The third time I went I got the waffle again (see above).\n\nBefore I came here, I was excited about leaving Phoenix for New York due to the incredible array of dining options you get in that city. Now I'm worried there won't be anything as good!", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Bc2UjSePEGvqSdHvz2HKGA", "review_id": "-uo2Ijn9Uxi-cAQUS4sYEw", "stars": 5, "date": "2009-11-26", "text": "I will continue to give this place five stars for so many reasons. First, the menu is very creative, and offers a great variety of healthy food, with an Asian twist. This time I had the shrimp curry, which had lots of fresh vegetables, and instead of a heavy cream curry, it was a much healthier broth curry. We had the edamame dumplings again, which were as good as I remembered. It was kind of cool to see Dr. Weil eating there last night. It's good to know that he likes the place enough to dine there.", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "H77zOFVd2Jb4pGrNZ5CLTA", "review_id": "yVbZt8owdkeBpYh978MmTw", "stars": 5, "date": "2012-07-24", "text": "We used the taco cart for my 30th birthday this past weekend and we came away very impressed. Eduardo was the guy that came to our fiesta, and he was incredible. When he arrived, we experienced a haboob and he immediately stepped in and helped bring in our decorations and furniture. He waited about 30 minutes until serving because we were unsure if the haboob was going to attack again. My wife and I are both in the restaurant biz and so were many of the guests, we all came away impressed with the food quality. Next time we throw a party, we will use them again! Make sure to get the el pastor and carnitas. Great job Hector & Eduardo.", "type": "review", "business_id": "tigIXsvKMb4xCiZP56oSPQ"} +{"votes": {"funny": 0, "useful": 7, "cool": 3}, "user_id": "zfysCL-0uQNCWdGvzZ6QWA", "review_id": "CG09Mfp-FSWLegNFCwq_EA", "stars": 5, "date": "2012-07-10", "text": "I came to Timo for my birthday last week after hearing rave reviews about it from a few friends of mine. I met up with the fabulous Jennifer T. and I was so happy to check this place out!\n\nI like any place that I get to walk in through a back door. I passed through the very chill looking patio area first, another plus in my book. Plenty of outdoor seating that looked dangerously inviting once this hot hot heat cools off. Inside was intimate, but with the large windows, it wasn't dark and depressing. Like your own little happy wine bar world.\n\nThey have an amazing wood burning oven. Normally, that itself is plenty good enough, but then there's the food that comes out of that wonderful oven. I only tried the spinach and artichoke dip, which was the best I have ever had! It didn't have a pool of oil (first time for everything!), it was so fresh, and I really appreciated seeing the bread sliced fresh right in front of us, since we were sitting at the bar. I saw several other things (flatbread) come out of that oven, and I will have to go back to try them! Everything smelled delicious and was presented with a touch of class without being pretentious. I was also very intrigued by the eggplant dip which is apparently \"better than baba!\" \n\nNow for the drinks. Holy cow. I've been drinking a few years now, so safe to say, I've tried many, many drinks. Or so I thought. Coconut mojito anyone!? Made with Ciroc Coconut vodka! As tasty as mojitos are, I don't get a long well with rum, so vodka was a pleasant surprise, and the coconut just brought the mmmmmazing factor to a whole new level. I also tried the white sangria, another 5 stars. Great wine list too- Apothic Red is one of a few reds I like, and they have it! \n\nThe staff was top notch as well. I arrived shortly before a shift change, and both bartenders were personable and hard working, and truly seemed to enjoy what they were doing. I'm pretty bad with names unfortunately, or I would love to mention them.\n\nI can't wait to go back! For drinks and food! I think I'd even go alone for lunch if I didn't have any company!", "type": "review", "business_id": "7tTK3VPlFtBGBHm8-LZIUg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_X1zedRYJt_pf7fosmForA", "review_id": "IGCVnArVT0zFDZvJqasjHw", "stars": 4, "date": "2012-01-25", "text": "Good pizza, nice place & the owner was very accommodating. I'm a fan.", "type": "review", "business_id": "ImVx220_Pcp2iB5uworODw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SMAiS6Am92JmV8EvxQtPvg", "review_id": "hAadea0-D3qRGrsLIhHfvw", "stars": 5, "date": "2011-04-01", "text": "Joe's is truly a special place!! What makes this place so awesome is that you literally feel like you stepped back into an American farmhouse situated somewhere in the 1940's. The employees are fully compitent in their abilities and they seem happy to work there. They have homemade root beer, which is very tasty and leaves a smooth and flavorful aftertaste. They also serve Barq's Red Cream soda from tap, which is impossible to find anywhere in the southwest. The outdoor dining area has benches in a picnic style setting, while the indoor dining area features a vintage John Deere tractor as the center piece. The side dishes are kind of small (one scoop), so you might want to opt for and extra side...the mac and cheese rocks!! I also recommend getting cornbread or lemon cake for desert!!", "type": "review", "business_id": "5VMajxduxfLPSyQkVFKESg"} +{"votes": {"funny": 24, "useful": 19, "cool": 16}, "user_id": "J3rNWRLRuZJ_0xsJalIhlA", "review_id": "rIgBv_LEXYcFRZf0NQcKKw", "stars": 3, "date": "2011-01-29", "text": "In the age old debate of length v. girth, Sky Harbor is clearly a proponent of length. I swear this airport is three miles long. And if you have a connection... well, good luck running across the entire airport from people mover to people mover. It's one long, long, long, long, line of hallways and people movers. \n\nOver and over and over and over again. But... they've got free wifi! ...oh, that only works about 60% of the time. Well, it'll do. They do have clean-ish bathrooms and loads of options as far as airport eateries go. \n\nBut if you take one thing away from this review, let it be this: Length isn't always the answer.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "x0r-IamYgKMgF3v7tJ_PTg", "review_id": "WRyP_t2QX3x4ndCDDLaMAw", "stars": 4, "date": "2011-03-28", "text": "we come here about once a week. the soup in a bread bowl is yummy- i usually get a wildflower salad with the pesto vinegarette, which is amazing! their grain mustard is also amazing and the service is usually very good. the clientele can be interesting so it is a good place to people watch :)", "type": "review", "business_id": "35uDzLpJlbSztgkJLtg1kw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IVb9YMopuGyt5jJ7rjwoqg", "review_id": "pBa7hN_C_5djBh8ms0L_xw", "stars": 4, "date": "2011-01-07", "text": "I'm a loyal patron of Steve's Krazy Subs, so i don't want to get involved in a family rivalry. However, sandwiches are my business and they deserve a fair critique regardless. At first approach, Neds is much more of a professional looking sub shop. Nice large dining area, clean, fancy tables (*more on those in a minute) I was glad to see that Neds had the same lunch special...8 in poorboy, chips and drink.$1 more at Neds, but you get bigger chips. Tasted exactly the same, so tough to compare. My only complaint is the booths. Probably great if you are 6'5, but for common folk, pretty uncomfy.", "type": "review", "business_id": "YTR7zYN7F-zP98sqFTS2-g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e0Rls_7QxkVcFJtUXDaA0A", "review_id": "Jel_o_ypKLWPk1hfbUty-g", "stars": 2, "date": "2012-09-26", "text": "I judge a soul food place by its fried chicken, a donut shop by its old fashioned, an ice cream place by its vanilla, and a Greek place by it's gyros. The gyros here are bland and wholly unspectacular - and sourced from the same frozen food purveyor (Sysco?) as every other gyro stop in Phoenix. The cloyingly thick pita didn't help either.\n\nI don't know why it is so challenging to find a legitimate rotating spit gyro in this town - but it is. Especially near downtown Phoenix.\n\nRecommendations welcome.", "type": "review", "business_id": "FY_OXEVcewAQFZuu6fynLA"} +{"votes": {"funny": 10, "useful": 13, "cool": 10}, "user_id": "vsXP832M0kOxKpfduD7dWw", "review_id": "BhxmTjAN9MybthTa_0hYAQ", "stars": 1, "date": "2010-07-02", "text": "I don't intend to return, but based on the way we were treated by the kitchen earlier this week, my \"uncouth\" self doesn't exactly feel welcome anyway. However, I'm not quite convinced that it's my loss... \n\nIt had been almost a year since my original visit to Breadfruit which did not overwhelm (as you can judge by it taking me a year to make it back) but I did have an appreciation of the option for Caribbean cuisine. \n\nSince a friend and I were going to be downtown for an event, I suggested Breadfruit for our dinner spot. We enjoy good food and supporting local. The option to pick up wine at the Public Market next door and have the already reasonable corkage fee waived was a bonus, as we had really enjoyed a couple of the Arizona Stronghold wines at a recent FnB wine pairing and thought they would pair well with the Jamaican heat! \n\nWhile the scallops were delicious and cooked perfectly, 2 for $12.50 -- $6.25 per scallop -- is a tad steep in my book. We also shared the Jerk Chicken Salad ($9.95) and the Jerk Prawns Off the Grill ($14.95). \n\nHere's the ultimate rub, the bottom of the menu states \"no substitutions or modifications\"... Since when is cutting a KFC-side-sized ear of corn a \"modification\"? \n\nAt the same time, the menu describes the restaurant and it's offerings as \"Nothing fancy; simply good food that nourishes and rejuvenates the body.\" \n\nIt seems like cutting something in half so we could easily share it -- particularly after the plate has been delivered to the table for us to appreciate it's \"beauty\" AND after we've communicated to our server and demonstrated with the first two courses that we were splitting the items -- is in the vein of \"nothing fancy.\" \n\nHow about providing the customer with an appropriate utensil to cut it themselves, then? \n\nThe fact that the chef was obstinate in refusing to cut the KFC-side-sized ear of corn provided with our entree screams \"pretentious and grandiose\" and tainted our entire experience. \n\nTo quote my dinning companion, \"You are not James Beard and James Beard would've cut the corn!\"", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 2, "useful": 8, "cool": 2}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "PjZyG3gQPe0da8SV3H-mvQ", "stars": 2, "date": "2012-11-11", "text": "Let's put it this way... \n\nI ordered two topping-heavy small pizzas from Naked Pizza. I had a Groupon for $20 that only cost me $10. So, keep in mind I am rating this on my entire experience that cost me merely $10 out of pocket.\n\nThe good? The garlic topping is delicious. The employees were friendly. They were generous with their toppings. \n\nThe bad? Daiya cheese is disgusting on this pizza and tasted like raw dough. If you're off dairy, get the pizza sans cheese. It will probably be a lot better!\n\nThe just okay? The crust was okay-tasting, if not a little plain and dry. The sauce was pretty good for one of us and just okay for the other. \n\nThis is one of the two times in my life that I have ordered pizza and not kept the leftovers. Of two adults and three kids eating the two small pizzas, we were left with one and a half 10\" pizzas, which we promptly tossed in the bin. My daughter disliked this pizza so much, she picked off a few of her toppings and then told me she was full (when she said earlier how famished she was). \n\nI am only rating this pizza two stars versus one because I can see that it would be \"better\" without the Daiya cheese that I chose to have on the pizza instead of mozzarella.", "type": "review", "business_id": "gvSB2TlcxAOs_ppZ44iirg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "-twH-2L0l6AOlTDdp01wuw", "review_id": "LkJ3_bpiTyPje6LOmMT26w", "stars": 5, "date": "2008-10-14", "text": "Pita Jungle is a staple favorite of mine and my boyfriend's. Healthy, hearty and great service. It's too bad that a lot of their prices have gone up (as have other restaurants) but I'll still patronize this place. Read as: some things went up in price almost two dollars, but you can still have a meal and a drink for around $10, more or less, depending on what you order. I definitely like this place over the new one across MCC on Southern - there's something about being by the lake that makes it special. Even if there are stinky ducks there from time to time. ;)\n\nOoh - and the gambas con ajos is my favorite appetizer! :)", "type": "review", "business_id": "1Duul3qCnLrNak1Np-iHfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bWNjCQyTJttofo3dKtTTPQ", "review_id": "vFX3raAkep6PmTemBJHU7Q", "stars": 5, "date": "2010-01-24", "text": "This is my parents' favorite place to eat when they come to Phoenix so we dropped by twice on our family vacation. The owner/proprietress convinced my mom (in mandarin) to let her pick the dishes for our first dinner so we didn't even know what would be coming. The cold smoked duck was sooo delish as was the special mountain leafy green with bean curd shreds (all minced fine and not on the regular menu). There was also a shredded pork dish with bamboo (excellent) and a pickled vegetable with fish soup. The soup wasn't really my thing because it was heavily seasoned with white pepper which I hate but the rest of my family said it was exceptional.\n\nOur second visit was for lunch before heading off to the airport for the return trip. I could have eaten the entire scallion pancake myself as well as the cold spicy pork belly dish. Luckily, we ordered two orders of fried potstickers because those were delicious as well. We also had some tasty steamed pork buns but I was stuffed at that point.\n\nIf you really want to experience authentic shanghai food, let the staff order for you, you won't regret it.", "type": "review", "business_id": "2unQHR9uaRxk3dsW6f3MGA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZDZr9jCc9FznutQB_kGvLg", "review_id": "EN0E7XtF_vgdLCXLyDBydw", "stars": 4, "date": "2011-11-26", "text": "I am now a loyal customer of papa johns thanks to pizza hut. Papa Johns is always consistent and friendly and has flavorful pizza.\n\nRead my review for pizza hut on val vista/warner\n\nI'm a fan of pizza but this place has some serious quality control issues. Last Saturday I ordered a supreme pizza for pick up. I went to the restaurant and stood at the counter for 10 minutes without being helped. Finally I asked the delivery driver on his way out the door if someone could help. He doesn't say anything to me turns around and sends someone out to help me. The cashier doesn't greet me or apologize for the wait just asks for my name. I get my pizza and go home open the box and take a slice out and notice its completely doughy, stretchy and not even close to being cooked. I am so pissed now. I call pizza hut and ask to speak to a manager, I'm then told to hold then the phone call is disconnected. I call back and get the manager Josh this time and tell him the situation. Josh did apologize, I told him there's no way I'm coming back for another pizza or having one delivered covered in spit, I told him I wanted a refund. The manager did refund my money. I ended up calling Papa John's to order a pizza, the team member was friendly and polite and my pizza arrived in 30 minutes and fully cooked and fresh. Papa John's delivery driver was also very polite and thanked me for my business. I will not being ordering from the Pizza Hut on Val Vista and Warner. Papa John's now has a new loyal customer!", "type": "review", "business_id": "5Q9346DVAZBlZ8z_Q8saIg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3hPmlMAP3PfHMiwNW_RUZg", "review_id": "RXv4MzN6KH2U4BvdAZr5cA", "stars": 4, "date": "2010-02-27", "text": "Enjoyed the weather outside today and sat outside on the fake grass patio for lunch. I ordered the Oreganos fav Jr salad and the sausage pesto pizza, I did however manage to convince myself that I was too fat for a pizzookie(though I don't recommend you talk yourself out of it...I've been regretting since I left!)\nThe salad was amazing like always. This particular pizza I tried for the first time! I loved the sausage, very full of flavor but could have had a few more on it. The tomatoes were good as well. But the pesto sauce...kind of lacking. Not too flavorful, couldn't really tell it was there. But I am never disappointed by the tomato sauce pizzas...do try. This location is great to visit because they are usually not \"as\" busy as the other locations.", "type": "review", "business_id": "o-OV2LkJxpcCHmI_d4TZiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "-L0i4tIcOIbAq_gPvykkLA", "review_id": "HyjTny7cPNMsyBn5Mi4vrA", "stars": 2, "date": "2011-08-14", "text": "The \"chicken burger\" with jerk sauce was gross. It was dried out with terrible flavor. The only saving grace was that it was small, which says enough right there. As another reviewed said, it was a ground chicken patty when I was expecting a grilled chicken breast after going to places like Johnny Rockets where I believe they have a similarly named section of the menu that refers to chicken breast sandwiches. I realize I have myself to blame on that misunderstanding, but it was still a terrible sandwich.", "type": "review", "business_id": "hCtyvahPsEOUb38LKxEQNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XFgkghaWowkrTEgOtOEpPg", "review_id": "03rHd59VFtY_cO1x3lNoKA", "stars": 4, "date": "2011-06-29", "text": "This place defies being stuck in a single category. Their menu is a bit eclectic and my only regret is not getting to try more of it.\n\nThis place was right around the corner from my hotel on a recent business trip. We liked it so much, we ate here a couple of times. I'm sorry Alex P. felt that he was getting attitude. One of my coworkers asked if he could have the daily special from the previous day because he had liked it so much. They told him it wouldn't be a problem and fixed it right up for him. The food was good and reasonably priced. I was there in April and enjoyed getting to sit outside on their patio and enjoy the awesome weather.", "type": "review", "business_id": "9BH18avE46LlHMvJn67MaA"} +{"votes": {"funny": 0, "useful": 4, "cool": 1}, "user_id": "-txH2zJSBZQHO6RWvoWXuQ", "review_id": "DVpIicG7xl8HtsWXGQ87cw", "stars": 5, "date": "2010-11-15", "text": "I haven't written a review in ages, but this place is SO GOOD that I'd be ashamed of myself if I didn't review it.\n\nI am the most hyberbolic person in the whole world in the history of time, but this time, when I say that it was the best pancakes I've ever had, I'm not kidding. Just insanely delicious. Scrambled eggs were also some of the best I've had (and come on, they're scrambled eggs, so you don't expect that much variety), and the breakfast potatoes were very good. I couldn't pinpoint the seasoning, but it's different than you usually get.\n\nCoffee: Yum. I don't think I'd even heard of Arbuckle's, but apparently it's got a great reputation, and deservedly so.\n\nThe owner Joe stopped by our table, and was super nice and genuine. Service was just fine too.\n\nI'm sure Joe's will get a reputation and huge following soon, so believe the hype and check it out.", "type": "review", "business_id": "D1T1jtCfTfXD-cQE3QViow"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "sqLsoqm3lNxvfkOQ_wXucw", "review_id": "0iEXWvrpgxlQDZBHgVLybA", "stars": 1, "date": "2008-10-11", "text": "My boyfriend and I tried this place last year and we haven't been back since. The food was really unspectacular, they weren't really that hot. The price is a bit high since there's a restaurant by the same name on Southern and Dobson that serve much better food for less. The decor was really tacky and they should paint over the mural, it does not appeal to their clientele. Lastly, the staff was not nice.", "type": "review", "business_id": "4XTcSltd2GydhvOzAV4SaQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "T9TTC-Eb3SpBItMnmA7zXg", "review_id": "KPkndKjIpGq7w8BFZ4smcw", "stars": 5, "date": "2011-04-24", "text": "Fast service, the woman who did my hair was great and it was the cheapest hair cut I've ever gotten. I was told that my hair cut looked better than when I was paying $200+", "type": "review", "business_id": "eWsd7tTVvCbh41vFaEJ4vg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "uQpHNWs-tZbwLAE00ywR1A", "review_id": "ZXDrDliTRwEhZSXOpzpp3w", "stars": 5, "date": "2008-09-07", "text": "My husband and I LOVE LOVE LOVE this place. Every time we drive by he wants to go in and eat. Even if we are driving home from a dinner we just had!! \n\n1. The people that work there are AMAZING. They are so nice and hospitable, always glad to see you and let you decide the type of dining experience you want. (romantic date, take out, quick bar eats, etc.) \n\n2. This is the freshest place for seafood I have found in Phoenix. I don't know how they find half of the stuff the serve, but they do, and it is just off the boat. (I lived in Boston for 3 years and they get stuff I crave, like Kumomato Oysters, all types of fish and meat from East Coast farms) \n\n3. Pricing is right on...since they are serving stuff that is difficult to procure, I am always amazed at the value they present. \n\n\nKeep Rocking Yasu!!!", "type": "review", "business_id": "KBG28p3lGX17hOPoHhq5PQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "eapbAr6Zi5G8rK62gaWT9Q", "review_id": "ePCxyKUc6dHhxYW5o-mOIg", "stars": 1, "date": "2011-11-03", "text": "The salad plates were not chilled... As they usually are it however is a busy night but something's are expected at the olive garden... The food tasted like it was under a hot lamp for so long it tasted almost hard and also under cooked for the seafood... Not a great experience at the olive garden there are certain things expected... The expectations are not that high shouldnt be that hard to do....", "type": "review", "business_id": "OIBrslaVxFxaaGUsYFUujg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "dEqyN5C0z-9xnwnFw9J_OQ", "review_id": "mQawrfHjo6P00XpQ6MButA", "stars": 3, "date": "2011-03-25", "text": "After a business trip, I reeeeeally needed a massage. Facility was alright. I personally think it needs an upgrade. Right off the bat, the area with the lockers (and really where you would get nakey!) is very public...that's the first area that everyone walks through.\n\nThe outside lounge area was also VERY tiny. I went out there and walked right back in because it was full with little privacy. By that I mean I walked out there and BAM! A large naked woman scared me back inside. Really? G. D. people! I'm trying to relax. Naked out of shape people stress me out! Just ONCE, I want to see a naked hot person walking around. And if a woman goes nakey, do some basic maintenance first although that much hair does prevent seeing everything, so it may be a blessing...ugh, you know what? Just stay clothed. Please?\n\nBut my masseuse totally made up for that. 60 minutes of amazing...I forgot all about business and naked people who should be naked in private! 3 stars because Joelle worked magic! She was great and super friendly. Even though the facilities weren't the best, I would consider returning for her massage.", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WKxEVjx7cJI13lSk7ZIqZA", "review_id": "U6JOtnI0fBeVYJhYfYSzbQ", "stars": 2, "date": "2012-09-08", "text": "Don't get Breonna as your server. Didn't ask if we wanted another drink after we decided to stick to appetizers. She didn't appear to know where the water was or remembered we were at one of her tables. Food was good as always.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Q5dlLCEni_my05az9wIptg", "review_id": "BgGyYpjjQInBMbNqE1IMvw", "stars": 4, "date": "2009-01-11", "text": "Sketchy name indeed, but their grilled chicken pita sandwich is the bomb! It was filled to the brim with saucy, tasty goodness. I still think about that damn sandwich. I need to go back soon!\n\nInterior was a bit lacking, service was OK, but the food is sooo worth it. Looking forward to trying other things on the menu.", "type": "review", "business_id": "0dIChGWBs9ueUXl0hhkw2w"} +{"votes": {"funny": 8, "useful": 10, "cool": 10}, "user_id": "m7vtKWpZ9wdEQ95wJxrMrg", "review_id": "TZCONpt5xdDDJMGqavtfmA", "stars": 5, "date": "2012-01-18", "text": "When people feel a cold coming, they pop a zinc lozenge or tablet to boost the immune system. I have a much better way to get my zinc supplementation: I head over to Pier 83 for their terrific fried oysters. With the first crunchy bite I begin to feel so much better. Placebo effect, probably. But hey ... as long as I get that feel-good boost, I don't care. The fish and chips are also the best I've had in the Valley. And to think that I've previously been trying to get my fish 'n chips fix from the likes of Pete's ... yikes! And their clam chowder is delicious; I don't need to feel under the weather to have an excuse for ordering this tasty bowl of comfort. The friendly staff and comfortable informal atmosphere complete the enticement for many return visits.", "type": "review", "business_id": "bzXDUQ-5Odzx5WZNoSoANg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CwNFSTYMitNBkw0k2tHWtg", "review_id": "gl10EgTJLqqc-cjmAZco4w", "stars": 2, "date": "2009-04-13", "text": "Everything here just seemed so very dry to me. Like it was mass prepared a few days ago and they reheat it, put sauce on it and serve it. The sushi felt the same way somehow.", "type": "review", "business_id": "jLxo_UgnGfKHSPK7gGa5LA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lk2kaOszLpP7tnVtCJclww", "review_id": "w5x2DR91nNX2TS5nI7dzNg", "stars": 4, "date": "2012-04-01", "text": "Clean, modern hotel with spacious suites including decent sized refrigerators (easily accommodates a 30 pack). \nStaff was fantastic and went out of there way to work around hiccups. Local shuttle, free breakfast, managers reception in the evenings; and all within walking distance of Scottsdale Stadium.", "type": "review", "business_id": "k5ACtpeFvNCWnjizgd2IPQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "gsyguOgT2Dnjw-OYw14XDw", "review_id": "pBd6ZpP11-_JCezcQxuxLw", "stars": 4, "date": "2011-03-22", "text": "Let me just say that The Hungry Monk has everything you need for a good happy hour. TVS surround the bar area, plenty of spacious seating and a friendly staff await your arrival. Definitely a family friendly place as well...\n\nIf you get a chance try an entree that comes with pretzel bread as a bun-it was kick-ass! \n\nOh, and I haven't been there a lot but I know they have trivia and karaoke nights too.\n\nGood times Hungry Monk!", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wwPZ6d9JM62ckIkKdmuYiA", "review_id": "8WOLpxLXdcbBCZboafmDcg", "stars": 3, "date": "2011-08-09", "text": "This place was just okay. While I can't claim to be an expert in Korean food, I am used to the Korean bbq restaurants in Los Angeles and I can say that this place cannot compete with those restaurants. \n\nFirst, they didn't seem to have the proper ventilation for Korean BBQ. I have never been to a place where you could see smoke throughout the restaurant from people cooking at their table. Second, the service was AWFUL. It took them forever to just greet us and bring us water and the fact that it was toooo HOT in there did not make us happy to wait 15 minutes for our water or for someone to even acknowledge our presence. \n\nThe food was decent but the seafood pancake was super disappointing. They didn't even chop up the green onions that they put in it (seriously, like entire stalks of green onion) and it had no seasoning... I may give this place another shot but as for now, I'd give them 2.5 stars if I could.", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "fUs5XxOR82Hfrnyl4wi2QQ", "review_id": "jHl3_H8ziVZvXpBT-5aC0w", "stars": 1, "date": "2012-02-28", "text": "I always have customer service problems with Fedex. How the heck did they get to be so big with the crappy way they treat customers? I use the Internet a lot for purchases and about 60% of the time, they screwed-up and then their customer service has major difficulty fixing the problems. I have asked for shipments to be held at the closet shipping location to my office and they ship to my home. Another time I asked for the same thing and they held it at the regional depot instead of where I asked that it be sent. I can go on and on about the screw-ups I have experienced with Fedex. \n\nBut this time they really pissed me off. I get a harassing phone calls from a collection agency that says they have been contracted by Fedex to collect an overdue bill from me in the amount of $4000+. I have asked them for details and all I get is harassment. So I asked Fedex for help and customer service told me to contact Fedex Revenue Services, which I did. I told them that I am getting harassing phone calls from XYZ collection agency and the person who keeps calling is named Chris. I also tell them that the alleged amount owed is $4000+ and the account is supposedly in my name. So I ask that they investigate and tell me if I indeed have an overdue account in my name for this amount. (I know I do not have such an account!). Fedex then tells me that they cannot help me because I have not provided enough information. WTF? How much more information can I provide? Do they want my height and weight? Maybe my blood type? Maybe I have to provide the names and birth dates of my children too?\n\nThis is why I say that Fedex really blows!", "type": "review", "business_id": "MVQCklTeI9wYVvGxx-wF3w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "vGxEuRrX_UmW5MhOAEpCvQ", "review_id": "B2jty3n44AR4INO6LcfU2Q", "stars": 4, "date": "2008-10-31", "text": "I can only comment on two of the smoothies because I am on a banana kick and I choose from one of the two: the Bananrama or the Peanut Butter Chocolate. Oh so good! And now they do offer more than one size! I have started getting this for dinner versus food! I love it!", "type": "review", "business_id": "dA64XqxzgKiDx_PA-V30HQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Q07J2TiFSJvO8jpwQNGLMg", "review_id": "5lrC5ekGmkv3BVA2InYMLg", "stars": 3, "date": "2012-02-12", "text": "Great service. Good food. Had baked scallops. Reasonable prices", "type": "review", "business_id": "9XX-sxaDFXlXO65WnuS65Q"} +{"votes": {"funny": 8, "useful": 10, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "xFVs_Ya2YLejW9tKgIvdbw", "stars": 5, "date": "2009-08-02", "text": "I was given a $100 gift card to use at Willow Stream Spa last December... I've been waiting for the perfect day to use it since then. Well, guess what? Today was that day!\n\nWith my fiance out of town for the weekend, I took advantage of some much deserved \"Gabi time\" as I like to call my downtime. I called a few days ago to make an appointment and I asked if there were any specials going on. Lucky for me, there were several! The one that was most appealing to me was the \"book any 60 or 90 minute treatment and get a complimentary 30 minute treatment to go with it.\" I chose to book a 60 minute aromatherapy facial and a 30 minute complimentary massage to go with it... I was in heaven!\n\nI'll back up a moment and just say that I've been to the Willow Stream Spa before... years ago. Today was even more heavenly than I remembered. I checked in around noon and didn't leave until after 6pm. I could've stayed longer, but I had to come home to take Minnie out!\n\nThe Willow Stream facility is gorgeous and includes every amenity you can imagine... I started out in the fitness room for a quick workout and then took a glorious shower before my massage and facial. I had Tomi for my massage and she focused on my neck, back, and shoulders... (I've been having shoulder pain so I think she customized this based on my situation). She was fantastic but with just 30 minutes, it felt like a tease... my facial made it all worthwhile though- it was pure bliss! Heather was my esthetician and did a fabulous job. I highly recommend her - she explained every product she was using as I fell in and out of a relaxing sleep while she not only worked on my face but my shoulders, chest, neck, scalp, hands and feet... the products felt amazing and smelled good too. So much so that I bought a couple on my way out. \n\nAfter my services, I had lunch (a delicious salad with veggies and chicken) while I wrote some thank you notes and read my book... It was so peaceful. It was like an escape from the world and I enjoyed every second of it!\n\nSo, bottom line - if you are thinking about getting a spa-lover like me a gift anytime soon, Willow Stream Spa giftcards are always welcome... what an experience! I'm feeling energized, relaxed, and peaceful.", "type": "review", "business_id": "AtoMSHZ-lO7kxHRBdioMtA"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "g2ihR0ZFKCEnKB7YPviuJQ", "review_id": "YXeRq81_DMuA3ghAkomJmA", "stars": 1, "date": "2012-07-31", "text": "I am *floored* that this place has 4 stars. Literally fell out of my chair, picked myself up, then continued on to write my review. \n\nThe staff is friendly at this restaurant - I'll give them that. It's relatively clean and has decent prices. That's where any positives end. The food here is absolutely disgusting. Nothing has any flavour - no flavour at all. None. Nada. The salsa is peppery water at best, the beans are mush, and the rice just tastes like plain white rice. I had a ground beef burrito, which I'd think would be difficult to mess up... Nope. Not for these guys. The beef itself was unseasoned burnt 80/20 ground beef. There was at least 3lbs of sour cream. And for God's sake -- even the \"cheese mixture\" had zero flavour. I've eaten better pizza boxes. Pass on this places, dudes.", "type": "review", "business_id": "kqGbGsG2p6Y3vkplCKyE9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "s7Tm9oYWqRlBm5ex2OQ1nw", "review_id": "DiAbV1ZVNhG98vPkDbgk9A", "stars": 3, "date": "2011-02-03", "text": "Everything was average. Fairly clean place. Banh Xeo had to much bean sprouts. The proportion of veg to meat was off.", "type": "review", "business_id": "jf4RUa9EQO37hqxRCxbEXQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "vuUddBhwlrVijAAFvK5UTg", "review_id": "QAf7H_gBqOz3WRpFNFPcUw", "stars": 4, "date": "2011-05-17", "text": "The Vig is a breath of fresh air as far as the bar scene goes in uptown Phoenix. Nice ambiance, good vibes from both customers and employees, and overall a great concept. Anyone can come here and feel comfortable.\n\nWe went for burger night (Monday night people!), not knowing what to expect... Here's what to expect: a giant effing specialty burger (3 to choose from), cooked to perfection, served with a hearty portion of fries or sweet potato fries! FOR 5 BUCKS!\n\nOur waiter was either stoned or really new at his job... I'll give him the benefit of the doubt even though he talked like Jeff Spicolli, and say that he was probably just new. But hey, I'm not gonna bitch on $5 burger night...", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "HjhR3u17OjxD4s8t3toTfg", "review_id": "KMdKviFy8oyix7MIsb9Hzg", "stars": 4, "date": "2011-01-14", "text": "For a taste of the exotic, the allure of eating without utensils, and a journey to Ethiopia...Lalibela is your dining destination. \n\nAlthough this cozy restaurant is located in a strip mall in Tempe, the African art, woven baskets, and boxes of Harar in the hall (Ehtiopian Lager, which is delicious!) give you a small sense that you have stepped into another world.\n\nThis illusion stays well preserved as you peruse the menu and realize you have never seen anything like it, starting with your inability to pronounce \"Yekik Alicha\" (split peas).\n\nBut do not be daunted by this new territory. Start your adventure to Ethiopia with the \"Yekemem Shai,\" a black tea with cinnamon, cardamom & cloves. If you are new to Ethiopian, and not sure what to get, the Lalibela Exclusive is the most fantastic combination of dishes you can sample. Here, you will have a smattering of meat and vegetarian dishes ranging from \"Yebeg Alicha Sega Wat\" (lamb cubes simmered in kibae, onion, turmeric and herbs) to my personal fave, the \"Yekik Alicha\" (split peas cooked with onion, turmeric and herbs).\n\nOnce the food arrives, the basket of \"injera\" (bread closely resembling a crepe) will become your eating utensils. Don't be shy, tear off a piece, and use it to scoop the delicious morsels off the plate and into your expectant mouth. You will not be disappointed. In fact, you may feel as though you have just stepped off University and into a traveling caravan in the Ethiopian desert.\n\nWhether you are a carniverous adventurer, or a vegetarian swashbuckler - you will enjoy the richness and flavors of this unique cuisine. Bring a large appetite, as the food is quite filling. Dominant meats are beef, chicken and lamb. Savory veggies to be enjoyed are lentils, peas, cabbages, and collard greens.\n\nFor a lovely gustative to finish your meal, order a glass of the traditional Ethiopian sweet wine made from honey.\n\nOverall, from the service to the food, to the ambiance, an excellent place to bring friends, or a date ;)", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "8lrTKMjIJ9kt7rfVtjq3qg", "review_id": "qn2LW7c8V6-KbFuYavJ56Q", "stars": 5, "date": "2012-07-24", "text": "Very friendly staff, cute decor! Small, but don't let that fool you, best sandwiches ever!! The egg salad sandwich was so good, it reminded me of the egg salad I enjoyed as a kid! Their potato salad is made there and soo yummy!! Talked to the owner and she was very nice.", "type": "review", "business_id": "JLrAD5J7O0xIdtUHb21jvQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "oHn52UJAeJQJxDOob4FEAw", "review_id": "7Fy7r6k7pf7m0euNtwAykg", "stars": 4, "date": "2010-05-31", "text": "Mmmmm, Mmmmmm, Great food. The popcorn shrimp here are to die for-they leave a wonderful lasting impression. So does their desert plate...The service was wonderful and quick and attending to us. Also, we had been lounging at the pool all day and were not looking so sharp but they didn't seem to have a dress code or anything as they were more than welcoming. It is a bit pricey but i'm not sure you can expect anything less when going to a W Hotel. I recommend this place to anyone who wants a more chic sushi experience, cool atmosphere, doesn't mind paying the extra dollar and enjoys tasty food.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aJGbFSkf6zCBbadpcD5uow", "review_id": "ZTj7QiH2103O3kPSpNrD-g", "stars": 2, "date": "2011-03-13", "text": "This is my first time using Groupon. It's one way to enjoy various cultural experiences without investing too much money just in case. Obviously the restaurant can well benefit from the exposure without costing them too much. It's $20 voucher that I've paid $10 ahead. The restaurant only got $5 I believe. And I did Yelp! extensively before hitting the BUY button.\n\nI understand that it's hard to find authentic foods in USA. Everything is Americanized for one reason or the other. Most Americans I know (not those that I don't know) can't handle strange taste, texture, weirdness, repulsion, and various dislikes. And I know that it's hard to get the same fresh or processed ingredients and spices from home countries.\n\nThose are my pet peeves alright. And there is one more before I get onto the review. Comparison can be deadly.\n\nI have tried Latin American foods (including Yucatan, Oaxaca, Belizean). So my knowledge is nil on Venezuelan foods. But I do have taste buds and experiences from various food cultures.\n\nOverall. It sucked. I was referring to the taste, variety, and uniqueness. It didn't worth my dime. My friend and I had the Media Bandeja (1/2 the regular portion) for $25. The big plates came with 2 big serving of steamed white rice, 2 small cups of black beans sprinkled with cheese, half an ordinary avacado, 2 fried eggs (Chinese style, I cooked that all the time), 2 plain arepas (round flat breads), one chorizo sausage, one blood sausage, 2 scopes of shredded beef, one small steak, few green plantains, and few sweet plantains.\n\nThe blood sausage tasted like burned tired. I had blood pudding much tastier and smoother and more colorful that that. I grew up with blood pudding. Yummy!!! That maybe the reason that I'm vicious now. Heed my warning, it's not good for cholesterol.\n\nThe steak had tasty flavor; it's ordinary though. I believe it's 5 oz shrunk to 3 oz. The shredded beef reminds me of sloppy Joe. It's OK for the taste. The sweet plantains are regular fried plantains as found in some Chinese buffets or regular dessert menu. It's good for the sweetness but nothing more than that in this restaurant.\n\nIf you give me a steam bun or silver thread roll (both are steamed rice dough), I can tell how much salt it contains, the chewing satisfaction, the freshness, and the steamed distinct aroma. And I can eat it plain. Arepas? What's that? It's an tasteless, odorless, chewy carb that didn't excite my taste buds a bit. Boring!!! Honestly, I had no clue how special it was supposed to be. It tasted better after I stuffed avocado and shredded beef inside.\n\nThe green plantains were like hard cardboard. Fried carb without taste, but it has a green tinted color.\n\nMy friend also ordered Tequenos (fried breaded cheese sticks)... really tiny for $1 each. Chinese egg rolls ($1 each) are twice as big and they are greaser and tastier. (I ain't a size queen).\n\nThe Empanada Ham Queso was so tiny with 2-bite size for $4. Come on... are you kidding me!!! Calzones are more complicated and much bigger with ham and cheese and more ingredients, for similar price. (Again, I ain't a size queen).\n\nMy point is that it's so ordinary that I couldn't see the cost value especially for Bandeja. I can serve up the same plates at home with minimal cost. I know the restaurant needs to earn money for cooking, serving, paying wages, and renting the space.\n\nWe were the only table that night. The wait service was ordinary... between a bus boy and minimalist. The ambient was plain... and not a place you expect to pay $40 for two (before Groupon).\n\nSo diners, I enjoy a chance to have a different cultural experience. You should give it a try. Due to a lack of familiarity, the foods tasted bland and boring. I don't feel like gaining any new knowledge except a few words on the foods. I feel like they were serving home cooked meals or peasant foods as ambrosia and they charged accordingly. That's my problem with this restaurant. And I have a totally different experience than the Yelpers here.", "type": "review", "business_id": "It8Q9-l1EEtTr9NPpTgGPA"} +{"votes": {"funny": 7, "useful": 3, "cool": 2}, "user_id": "7GC9fVWKa4a1ZmBGLH6Uww", "review_id": "cKzMqpq04FA5BGbpyy3aSg", "stars": 1, "date": "2007-03-05", "text": "HA HAHAHAHAHA! \n\"Pit\" is right.... man, this place would have been a terrible idea if i wasn't already expecting lameness.\nnow occupying the space that has seen the death of not one, but two dance club (411 and Level), Peach Pit Afterdark.... I mean Cherry Lounge and Pit is beyond ghetto.\nopened by the same people who do sugar daddy's and dos gringos, this place has all the sexiness and allure of a Trails commercial. You know? I was half expecting to turn a corner to see a neon colored bikini-clad bleached blonde on top of a motor boat. well, they've updated the look of the cage-trapped go-go dancers to mini panties with knee-high dragon rider boots with fuzzy muppet skins adorning them.\n\nthe vids of drunken lounge-goers (a la daddy's and now dos) playing in tiny screens on the walls in hallways and behind bars in tact, interspersed with footage of seriously hagard looking chics doing \"sexy\" things like sucking on lollipops, cherries, winking (yes, she was winking right at you, wasn't she? inviting you in to her red-drenched lair to bask in the glow of a alcohol doused club circa 1992).\n\ni'm not sure what the DRESS CODE we were so violently and largely reminded of in line, but the girl in front of me had on an oversized T-shirt, baggy jeans and flip flops (?) and they took her $5 and let her in no problem. i also saw a girl dressed exactly like peggy bundy...no joke, spandex black calf leggings, long spandwex shirt in orange, heels and a giant boob belt. it was so incredible i took a picture. she was not impressed with my observation, so i had to sneak the photo.\n\nanyway.... take it for what it is, a club owned by dos gringos guys on mill ave.", "type": "review", "business_id": "5U1ArcV-HXR5UlkdQx1a9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "90a6z--_CUrl84aCzZyPsg", "review_id": "yE2Ha-0yns7pM2LPG2PjTA", "stars": 4, "date": "2011-01-04", "text": "This place has consistently good food on EVERY visit. Lots of choices and really fast service! Lucky to have this so close to work. Check the soup and sandwich combo. Salad bar rocks too.", "type": "review", "business_id": "732Z5HGLEEBjAgXxfnuXlQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XG7y5p6ACHkrtlkinvynnQ", "review_id": "VYfpqw3R6kRMFafzwyjaOA", "stars": 5, "date": "2012-03-04", "text": "i love this place and eat there every time I'm in the area. Pizza, pasta, appetizers all fantastic. Plan to spend some time waiting for a table. We always have fun just eating at the bar. Yumm", "type": "review", "business_id": "kFVapB4z_5VoOnYazF_ERA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "wlZpcF8plwKlxigp0cNDHg", "review_id": "mqqXTVWCzU1UuOLVy2L8eQ", "stars": 4, "date": "2007-07-25", "text": "I had a lot of fun at this place. You know you aren't getting \"authentic\" sushi so you put those expectations aside. This is a great place for groups like bday parties. The restaurant isn't that big and they don't take reservations so you end up waiting a while, especially on weekends. We went on a Sunday night around 7:45pm and had to wait almost an hour. I recommend getting the sushi boats which is basically an assortment of sushi. It's a pretty good value for the price. The miso marinated cod is fantastic, but the shrimp, scallops and garlic spinach dish is just ok. The scallops dynamite is really rich. The restaurant is noisy inside so it's not a place for a quiet or romantic date.", "type": "review", "business_id": "9VZ_imQjvgtpt3k6W6AQ_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DbFSdCeJNnc8Bxqg7HXIpw", "review_id": "xvPjVMI8dRlK4bNZXAUmvQ", "stars": 5, "date": "2012-08-03", "text": "This is an awesome family owned business. We've had consistently fresh and delicious food each time we've been here. They homemake things like their ranch dressing to take them to a different level than other places. Highly recommend this place. Prices are not bad either.", "type": "review", "business_id": "0kcStBtW94p-ooaaA2PbIQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "Vdi-fbSA36s6jffY7iDbXA", "review_id": "eDaeNy-n_LLcnu4yHxSfjg", "stars": 5, "date": "2010-01-28", "text": "When cowboys ride off into the sunset, they probably stop at Greasewood Flat for a burger and beer. This rustic little bar is located a bit outside the city right near Pinnacle Peak and is definitely worth the drive! You'll know you are in the right spot when you see the antique farm equipment and suddenly feel like you are walking up to an Old West saloon. Say hello to the mule on your way in. Outside they have picnic tables, horseshoes, and fire pits (gets chilly out there in the desert!), and on the weekends they have live music and dancing. \n\nInside, the bar is pretty small, and the place is covered in dollar bills and business cards left by satisfied cowboys and cowgals. For the nights without live music, don't you fret, they have a jukebox with tons of country hits. The night we went it was the bartender's birthday, and the regulars were definitely having a good time. \n\nBoth a historic landmark (120+-year old original stagecoach stop) and a dive bar, Greasewood Flat is clearly special to Arizona, and is a definite must see. I'll be going back on a weekend to get the true Greasewood Flat experience and hopefully see a cute cowboy or two..", "type": "review", "business_id": "DjdA1xbHki_lopCSxf-Egg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "vBzCrDzjCBjSknh8CDtRlA", "stars": 4, "date": "2010-11-18", "text": "Even though there are only two things on the menu that I can eat, they're damned tasty and the service is incredibly fast. I am a bit surprised by all the five stars though, you people do realize that this is just a chain sandwich joint, right?", "type": "review", "business_id": "S3ccQHpkBQTBBfRB-Q4adg"} +{"votes": {"funny": 1, "useful": 3, "cool": 1}, "user_id": "h3TnHCqFga0VgPO390PjKA", "review_id": "bV7Ifw8Qy30Du_1sYibPIA", "stars": 5, "date": "2012-06-14", "text": "Full disclosure: one way or another, I have only been to Roaring Fork for the Happy Hour, but the happy hour is darn good. You can, and you should, get that kettle of green chili pork or the big-ass burger, or better yet, share the two with someone nice. The huckleberry margarita is so good, I've had three in one sitting (no, I wasn't driving!). I fully intend to get over there for dinner soon, because I keep seeing the sugar cured duck on the menu and just thinking about it right now my mouth is watering. It gets pretty busy during the happy hour, though, so be prepared to wait a little if your party is large.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "UCQNrwN4_hHHTWYa8cqe_Q", "review_id": "-QmJankXPnkCGXSqmzYT5w", "stars": 4, "date": "2012-02-13", "text": "Had to bring my wife's necklace here to be repaired. Service was great, the pretty looking girls were very helpful. In all, we had a very good experience. Looks like we will be coming back soon. Wife had her eyes on something?", "type": "review", "business_id": "DrTsV4u-X6hft0aRjKCwMg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "jT1XoRAy5l-HBiAacyh9Tg", "review_id": "1jpfvBAxAI57ljgQZUFuXw", "stars": 4, "date": "2012-08-06", "text": "Love spicy Mexican food? Well then this is the place for you. They have great food, great service and great beers to choose from. My family and I go here often.", "type": "review", "business_id": "9tSHBEoAhKu-tkU8n6SKjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "325QatjmjSgREU53oS917Q", "review_id": "mcI2uOYjPmlaUeT7Pggpkg", "stars": 4, "date": "2012-04-19", "text": "If your boyfriend is a baseball player and is in Spring training.... Watch out for the heat...as it gets SOOO HOOOOOT and SOOOO DRY...... i literally had to stand with my legs apart and my hands on my waist to air what needs to be aired.\n\nYup. Support thy boyfriend..... I can't wait to come back here this May for Minor League Spring training! I probably will be wearing a bikini and a see through dress. \n\nBut really..I've never seen fields so well managed here... I've only been to where the Royals practice....and It's quite amazing! This May, i'd definitely see games at the Texas side.", "type": "review", "business_id": "L3BSpFvxcNf3T_teitgt6A"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "wesv2JOGalpF1OALPoyZqw", "review_id": "H74-hkCQUFJqVSeynipJEQ", "stars": 4, "date": "2011-07-18", "text": "Great Crust. Great ingredients. Worth the hype of Peter Reinhart's book American Pie? Not sure. It was great though.\n\nNo fresh ice tea kepts it from getting 5/5.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1WMpiFX4oNeET9SXszBSwQ", "review_id": "mdB17tYuqe7oP6kRUCL03A", "stars": 4, "date": "2012-06-29", "text": "I've been to China Magic Noodle many times over the years; it's one of my husband's favorite places to eat. The employees are friendly and prompt to provide service.\n\nI always get #34 (Beef, Noodles, w/XO sauce) or the #27 (Seafood Noodle Soup) and love both. The noodles plates are big; unless you are a big eater, expect to take some home. The mango smoothie w/boba is also delicious; you can taste the fruit and know it's fresh.\n\nI agree w/some of the other reviewers regarding the smell - this place definitely has a \"smell\" to it, who knows what it is - but it's not a disgusting/offensive smell. Overall the place is clean, the service is good, and the food is great!", "type": "review", "business_id": "jfDBaBgwINrGYAo8p2MJ4g"} +{"votes": {"funny": 1, "useful": 8, "cool": 1}, "user_id": "CP-IE-zyc2Mv3jlaceElVQ", "review_id": "wQ6JvcxUtNTqV921FgleZw", "stars": 4, "date": "2010-06-28", "text": "Another indoor (two-story) Westcor Mall that has gone through a few minor changes over the years (updating the restrooms in the Food Court area, adding Dick's as another anchor store, adding the kid's play area, etc...). It's also seen many big and small Retailers come and go too.\n\nWhen this mall opened back in 1994, Robinsons-May was the ONLY store open before the rest of the mall. There were empty fields in the surrounding areas and orange grooves in other parts. It's hard to believe, but the ONLY restaurant open at the time in the area was Applebee's across the street.\n\nFast forward to today, the Mall still attracts shoppers from all over, since it's the ONLY indoor mall in the West Valley (not counting Desert Sky Mall-don't go there!).\n\nAnchor stores: Macy's, Forever 21 (in the former Mervyn's building), Dick's Sporting Goods, JC Penny's, Sears (formally Montgomery Wards), and Dillards.\n\nAMC Movie Theater is located inside the mall.\n\nBesides the Food Court, there is a Chevy's, Johnny Rockets, and Miracle Mile Deli.\n\nSome newer Retailers include: Sephora, Coach, Disney Store (they came back!), Apple, Swaroski, and J. Jill. The mall stays pretty full of Retailers, once in awhile, there are a couple of empty stores, but not for very long.\n\nThis is still a popular family friendly mall to visit and shop. Westcor keeps it updated and clean.", "type": "review", "business_id": "9ggd0DySEZNw990JGaFSQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lFa_Rh34tK6hSPYAZZ8Jyg", "review_id": "u0gBoNNJkSR0MKs6sr1NUQ", "stars": 4, "date": "2007-12-01", "text": "Food : Fried. Carbs. Cheese. Yum.\n\nSelection: Main specialty and dessert. Sufficient. \n\nPrice: Under ten bucks a pop. Great.\n\nParking: Sucks! I nearly died after having to park across the street (no room at the inn) via a running jaywalk across the 7th ave midday madness. However, I don't care. Gluttony is so worth it.\n\nHours are rather limited. Better for me anyway, otherwise I'd have to start popping Lipitor because you'd probably find me here way too often.", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jIHaXo4-KR9kvh2J7eMkIA", "review_id": "eyzRIGw-KkaQu1eSmFTN4g", "stars": 4, "date": "2012-01-08", "text": "Best prices in Phoenix nice ladies, will do exactly what you ask with your hair", "type": "review", "business_id": "ky6G0NMJZg96mfXpgDiopQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 1}, "user_id": "7C-jyTrOX-iJ-MrSJuh-8A", "review_id": "zw2jx70RaKSE5k1sW9e3Gw", "stars": 2, "date": "2010-11-05", "text": "The fry bread in itself was great, it is just what goes inside it is not that great. I have been wanting to come here for a long time since I have heard so much about it. I got a bean and cheese fry bread and the beans came half smashed with whole pinto beans in it, which I can't stand. The beans are not very flavorful when they are whole. The cheese was a thick shred which didn't melt and it was altogether disappointing. \n\nMy partner got the fry bread with ground beef which he said was not flavorful at all. It was like they just cooked the beef with no flavoring at all. Maybe they were having a really off night? Yelp, why have you been betraying me lately? I keep going to these great reviewed places and they suck.", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "k7Xr66X9YcQLbTFV5yE7lg", "stars": 5, "date": "2011-08-11", "text": "i love the $5 happy hours. all the dishes are a great value and delicious!", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DuwTSY4hS03iHS_UuBW3_w", "review_id": "xAIBrFbhZE8xfchmS_LtOQ", "stars": 4, "date": "2012-05-10", "text": "The owner is extremly friendly. Great place as all the other Yelpers have said. I ordered the Blackened chicken sandwich with patato salad. Not too spicy, but just right. The patato salad was extremly good. If your out and about in the afternoon looking for lunch, stop in here.", "type": "review", "business_id": "aDBT5MB0L2JCUo3kqgFRJw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "34gJ_KlP3RM6jotNT6TcDQ", "review_id": "iaSTYxw91xc0VxoHydtX6A", "stars": 3, "date": "2012-03-20", "text": "I'm gonna have to hide this review from my girlfriend who is from Wisconsin and a big Brewer fan. To be honest, this is my least favorite stadium to go to because of its location and just overall mediocre atmosphere. It has an outfield grass area, but it is kinda boring. Maryvale is a no frills ballpark, so if you are going to a Spring Training game to actually watch some baseball, this is the stadium for you. If you want to go for the game, the scene and overall experience, I'd recommend a stadium in Scottsdale. For what it's worth, a friend of mine says this is his favorite Spring Training stadium, but frankly I think he feels that way since it was the one stadium he actually played in while in college. I personally like to go to a game and then head over to some bars or restaurants, but at this stadium I check out the game and then get the hell outta there!", "type": "review", "business_id": "zyCrtvCPdSZDhUrH86vbeA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xdu24yBabw0uq4GzKBhWaA", "review_id": "IkGG3SeJxcx1_dd9krzKIg", "stars": 5, "date": "2012-01-24", "text": "It's high time I wrote a review for Desert Jade. I grew up on their food. So many amazing family memories were created here so it's tough for me to go anywhere else and be quite as happy. The owners know my family and are always ready with a hug. This is truly a real-deal Phoenix institution. I have so many favorite items but here are few must-tries: chicken lettuce wraps (I'd been eating these here looooong before so-called \"fusion\" joints like PF Chang's had them on their menu), sizzling rice chicken, sesame chicken, Desert Jade chow mein, honey-dipped chicken wings, any one of their delicious soups. So much to choose from and it's all done exceedingly well with true consistency. Support a local, family-run joint for truly fabulous Chinese food!", "type": "review", "business_id": "m9Wqqma30o-hH2fAX7dnug"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "Yl8pSOZnIBNTnKoRWK_RIA", "review_id": "H_J93X4GgNmQFDMnCNMw0w", "stars": 5, "date": "2012-08-28", "text": "I wish that this place were not so good - I have not been able to drink the coffee at my office in weeks. The location that One Coffee occupies used to be a coffee shop graveyard. Several coffee houses went out of business in this location, unable to compete with Starbucks. One Coffee has bucked that trend and it is not hard to see why. One Coffee has great coffee and it is amazingly consistent. The staff is always friendly. This place is certainly doing something right; everytime I go in there it has more and more customers.", "type": "review", "business_id": "dHgoX3L2AKYixgH8hmJjfA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "tVdp2HWbzP-5E06e1MveoA", "review_id": "FfEgFSokdC4KtbM3KdL_tw", "stars": 3, "date": "2012-06-21", "text": "I don't know why it is that all these airports have such a major lack of seating. The staff here are friendly, and security is quick, but I just wish they'd work on the gate areas and add more seats. Need an example? Sacramento International's new terminal.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hqJuL8kEWfKf_MmLBWfY5g", "review_id": "nSvicNy_UTfQtp6s7HqdHA", "stars": 1, "date": "2012-01-12", "text": "I bought a deal off of Living Social and waited a while to call them, figuring they'd be swamped with business. Now I can't get them to call me back so I can use my deal. (NOTE: There were no reviews of this company on Yelp BEFORE the Living Social deal.) Of course, Living Social is no help - their website says I need to call a consumer advocate in my area. This kind of thing, I predict, will be the demise of every deal-of-the-day site: the company selling the deal bears no risk of having to pay refunds if the business providing the goods or services doesn't perform. I have since cancelled my subscriptions to EVERY deal-of-the-day email out there. Lesson learned about TWO companies with no ethics.", "type": "review", "business_id": "JuyVq7GwY5EZ_gL5cGfPiA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "S_PtppfOHr4f1_gqYAyRjA", "review_id": "TZmsOo25aK-xJBsTpAY_wQ", "stars": 4, "date": "2011-02-02", "text": "A classic hole in the wall mexican restaurant and a Phoenix icon. Known best for their machaca and their hot, freshly made flour tortillas. Good food at great prices.\n\nFor a photo of the best chimichanga in Phoenix and a full review, check out my blog post: http://blog.phosyzzle.com/carolinas", "type": "review", "business_id": "d52zg-S0o940WUCK-nNiKw"} +{"votes": {"funny": 1, "useful": 7, "cool": 2}, "user_id": "VJAcgA7zTolWhp1OuSKR3w", "review_id": "NsG07wXTODXZ4_klP-b-6A", "stars": 1, "date": "2011-01-24", "text": "The Duce is a disaster. \nAs an Arizona native and a downtown local I root for cool interesting places downtown. I wanted to love this place. The 1st time we tried the Duce I was extremely let down by the customer service. The parking is atrocious. It's as if you are inconveniencing the staff by asking where you order food. They were out of just about everything we wanted to order. So disappointing. \nHowever I decided to give them a second shot. Everyone has a rough night. We went to an event there last night the entertainment by Scandalesque was AMAZING... same TERRIBLE customer service from the staff at the Duce. Management needs to wake up. Great concept. Horrific customer service and staff.", "type": "review", "business_id": "OdD1GuGNQ64ssJmMJ_D9RQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "GkWuTgewni9bzPM4HUCO-g", "review_id": "hqthMrQsUIpZOqUph4aJ6w", "stars": 5, "date": "2008-09-06", "text": "NOTE: Ignore the reviews above. It looks as if there is some deliberate attempt by the Udupai owners to pose as members and bash this place. Yes, this owner used to own Udupai Cafe and Udupai Cafe is another dosa house that competes with this eatery. If you read my other reviews, you know that I'm critical and my attention to detail is there so I'm not one of these people who likes every place he eats at.\n\nPositives\nI'm Indian and I can assure you this place is good. I have never been to Udupai Cafe but based on its failing health inspections, I would be scared to eat there. Woodlands is a nice CLEAN eatery in a nice part of Chandler. It's not a restaurant. It's basically a Dosa shop. They specialize in Dosa and offer several types. They also have excellent Indian Chinese dishes. The food is consistently good and I have eaten there on several occassions. This is a lunch/light dinner place. Don't think of this place like a restaurant. There are several types of Dosa and that's what this place specializes in. The restaurant is also modern and not is some ghetto strip mall so don't worry about failing health codes here...at least not for a while.\n\nNegatives\nTheir non-South Indian dishes are not so good. For non-Indians, they should be informed that this is a Dosa house so order dosa and other south Indian dishes. Don't order your typical Indian restaurant favorites like palak paneer (it wasn't good here). The owner also says every dish is excellent which isn't true; he is kind of a businessman so he doesn't really care about telling you which dishes stand out. Stick to the Dosa and the Vegetable Manchurian. Their mango shake wasn't very good. Their chiku shake is great.", "type": "review", "business_id": "APgL23vh7f7H_wAGTl57xQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JeYk23C6S1BIw1roLc6sxg", "review_id": "ptYY2iyDVK_HQTwgl3pKag", "stars": 5, "date": "2012-08-01", "text": "Mail Call is a full service shipping store. The owners are great-they are friendly and accommodating. I purchase shipping supplies from them are their prices are very fair, much less than a larger place up in the airpark. They take care all of my local needs and get the job done. Kudos to Mail Call!", "type": "review", "business_id": "IvErHIfI6MzCu0zYJgRrhw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "RRTraCQw77EU4yZh0BBTag", "review_id": "55LM-uIiY2deeWomjuA5VA", "stars": 4, "date": "2008-03-20", "text": "I've been eating at Hap's since they were in a trailer in a parking lot on 24th and Jefferson. And for those of you who have don't hail from the south, you will find this to be extremely good BBQ. I always opt for the 2 meat combo dinner with smoked lamb and pulled pork (sometimes beef brisket). Served up with cornbread and mashers plus BBQ sauce and mint sauce on the side. My one gripe is they don't serve corn on the cob. Head over just before or after the busy lunch hour and escape the wait in line. \n\nI don't see Honey Bear's getting New Times Best of Phoenix consecutive years in a row. Not to say that Honey Bear's isn't good but I guess it depends on what kind of BBQ sauce you like since the sauce makes it. Hap's was also highly regarded in Sunset Magazine's Best of the West and several other publications hung on their wall.", "type": "review", "business_id": "39oUcXr-06fcfT_MZ94z-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O8w525BpmlvbocQRhavfmQ", "review_id": "7JeaEtlIOunTbpkviFO3Hg", "stars": 5, "date": "2012-01-01", "text": "I love the other locations of Thai Rama and this one is no exception! Food is fast, fresh tasting and well seasoned. The lunch specials are unique and delicious, and the service is good. Far superior to the Char's Thai restaurant that used to be in the same location.", "type": "review", "business_id": "1621ir5mjVgbHwxCbMAEjg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ESrdXpT1yF7KZX52bPpnJg", "review_id": "Mh3lDYB-TXpeP8OelTw_Xw", "stars": 4, "date": "2012-01-25", "text": "I visited this location a few months ago for the first time, and returned for my second visit the very next day. \nI got their standard chicken and waffle plate on my first visit, and just chicken and macaroni the next day.\nBoth visits were pleasant and the food was delicious.\nMy only criticism is that the waffles I got were a bit on the thin side. I've had chicken and waffles from many different soul food places all over the US and in comparison LoLo's waffles were just okay. The chicken on the other hand was A+. It was tender and juicy and well fried.\nI see myself coming back here again.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "9mjItdXixKECanLV6RBIrw", "review_id": "GT2qspVs31iYw09RUyJWkw", "stars": 5, "date": "2009-05-25", "text": "This is a great place in an extremity of the Valley. They serve both Korean and Japanese food. They are quick and attentive. Having lived in South Korea for two years, I can honestly admit that this is some of the most authentic Korean cuisine I've had in Phoenix. I typically ate bibimbap once a week minimum over there and I can't really tell the difference between Takamatsu's version and the stuff I had on the other side of the Pacific. I noticed they offer a list of other, more obscure foods I learned to love over there, including naengmyeon (cold, spicy noodles), japchae (stir-fried glass noodles), and several other dishes. They also follow tradition and bring you several side dishes. Love it or hate it, kimchi accompanies every meal, as do spicy bean sprouts, a tangy spinach dish and a few other random sides. It's a little bit more expensive than average restaurant prices in the Valley, but definitely worth it when you consider the sides that come with it, and a complimentary spiced tea for \"dessert.\"", "type": "review", "business_id": "Lvf3N3cfLAmOc5y8Eg8KDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-YajQUo9WA1n7A1w8nic8g", "review_id": "f8wzCOA8hF6qSQIVfEBkDA", "stars": 1, "date": "2012-07-03", "text": "Dr. Pierrend is ok, he will write prescriptions for about anything without really investigating if the are needed but he seems like a nice guy. The staff are horrible. They tried to charge me 2 times for lab results which are covered by my insurance. Refused to give me the results without billing insurance for an office visit. I would not recommend this medical provider to anyone. Everyone in my family has gone to PMG and has a bad story to tell. If you are smart you will look elsewhere for medical help", "type": "review", "business_id": "g2be7RLUWSbow_p5AUjBwA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oJemHCiaTaFJhCGYA9F1qA", "review_id": "GTu-AyZ6M5XqTWUoPtMwvg", "stars": 3, "date": "2011-12-08", "text": "I'm sure this is a lovely Spa and Resort; sadly I was here for a conference. Being the good worker I am, I did not see the pools, spas, or golf course. I saw the conference rooms, my hotel room, and the restaurants. I have to say the hotel rooms were nice, very large, each with a little patio. The restaurants ands bar are all super expensive and not worth the price - but if you are sans-car you are trapped. The saving grace here is the little 'coffee shop' by the entrance. There they have very tasty sandwiches and beverages for a decent price - grab some eats there and go sit outside or on your patio. You'll feel trapped on the complex...18 bucks will get a town car to take you to Old Town. To get back to the hotel, go into a restaurant and ask them to call a cab for you...its hard pressed to find cabs on the street (least it was in the afternoon where I went into town).", "type": "review", "business_id": "xtX2qS64zP2NRPV_7NNqHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_aguQTUp7kMlWhWr2mojdA", "review_id": "OsxQ1UfucWBr2bbzaznY8A", "stars": 5, "date": "2008-12-26", "text": "Fabulous place to get wine, beer, spirits. It also has amazing keg selection.", "type": "review", "business_id": "cIQ5qYFvkI6kIFGgHXsFTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "uq1y9VRH9vOy91x8f4TQSg", "review_id": "NiM3h6kuLz9u9XDvFNOqpg", "stars": 5, "date": "2012-04-08", "text": "Best bruschetta I have had here. Good wine selection as well.\n\nMy favorite bruschetta are:\n-smoked prosciutto, fig, mascarpone, truffle oil\n-roasted chicken, sundried tomatoes, goat cheese\n-pulled pork, housemade pesto, roasted red pepper\n-mozz, basil, roma tomato, qc olive oil & balsamic", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "S_LAaGC89w7oW5SXKQO2tQ", "review_id": "CyJM2RUAZPXDSqeTduXdYA", "stars": 2, "date": "2011-05-24", "text": "Came here on a Friday night to split some wings and a cheeseburger with the lady. Well, if you want to split a burger they charge you $1.50 for this. Hmm. Why were my wings not charged an additional $1.50? I understand their thought process but we were not hungry enough to order 2 dishes and waste food. Also, for a sports bar on a Friday night, I expect beers to be continually full, not waiting 10 minutes in between. I'll be back for the wings and for a change but the customer service definitely will be remembered.", "type": "review", "business_id": "7TMf1NuuAdvhG7IojZSKnw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "E57V8rkRheDr5g_9MNAQwA", "review_id": "L3vTxnQ6l4gBmbP15Rb-BQ", "stars": 4, "date": "2011-01-30", "text": "Had the pleasure of enjoying House of Tricks last night, for the second time in the past twelve months.\n\nWith a party of six, I was excited to get to see a range of dishes and try out most of the menu via my dining companions choices. The restaurant, found in Tempe near ASU, is not hard to find and houses both indoor and outdoor seating. The outdoor seating is where we ended up last night and between the fire pit in the middle of the grounds and the abundance of trees/greenery, the setting works quite well. \n\nOur party was seated immediately and without problem, the night was off to a solid start. Our waitress, Jamie, was both friendly and courteous. Jamie had a great understanding of the menu, the specials and especially the wine. Her recommendations for multiple members of the party worked out perfectly. Each person in our party ordered an appetizer and off we went.\n\nI had the pork belly, on Jamie's suggestion. Other choices within our party included the salmon cake, sweetbreads two ways, and the scallops. I thought the pork belly was great. It had a pea puree as a base sauce and some baby carrots that just killed. The scallops were tasty and cooked perfectly. The sweetbreads two ways were a bit of a letdown. As a lover of sweetbreads, I have had the pleasure of tasting some of the best variations of there preparation. These were just not that great. They weren't cooked properly and the seasoning was lacking. This would be the only lacking dish of the evening.\n\nFor the entree, I had the pork osso bucco. This was a real treat, cooked evenly, tender and tasty. Other entree selections around the table included the ahi tuna, the salmon, and the duck. The tuna was the standard seared variety on a bed of mashed potatoes. Both diners who chose this selection were quite satisfied. My companion had the duck and while she certainly enjoyed the dish, she found the duck slightly fatty. All around, the entrees were solid and plates were cleaned. \n\nWith little room left for dessert, we ordered three selections for the table to share. All were good and once again our plates were cleaned off. The dessert best was agreed upon to be the homemade smore the restaurant produces. \n\nAll in all, this is a solid restaurant with a good atmosphere and good service. I would eat here again and recommend you to do the same.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Rk95w-MMDzXzIvCF0SJUtQ", "review_id": "u9Y4kSGD7tRIy3UP1e_UoQ", "stars": 4, "date": "2007-08-02", "text": "My vintage shopping in the Phoenix area has been disappointing so far. Goodwill, Salvation Army, and Savers are in their separate boat of cheap stuff that is rarely vintage. Buffalo Exchange shouldn't even be called vintage, because it is not. \n\nIt is much more of a consignment store. Most of the things are new (or lightly worn) and are cheaper than retail prices but more expensive than Goodwill. The selection really isn't bad. I have found a few things here I am really happy with. \n\nExample: A sweet pair of orange high heels from Steve Madden I think. (I don't really give a crap about brand names, I buy things because I like em, no matter the name). They were thirty bones (not too cheap) but probably a lot less than they would have been at the mall (I am guessing, 60?).\n\nIts still a fun store despite the vintage confusion. Everyone who works there I think gets all the good clothes first because they are always so freakin' adorable! Super friendly (not the fake kind either, can you believe someone is f*cking the handshake in this metropolis?). \n\nSo get over there. You will find some good stuff. Just don't even bother selling anything unless it is high end brand name or the best vintage find you have ever gotten (and that one is even not a guarantee).", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "PZ9FB1czAYXuxLH7eegBvQ", "review_id": "daHByG4KO0Bsjohfk8O0mA", "stars": 5, "date": "2012-03-24", "text": "If you want Cheap go to Walmart! \n\nBut if you want authentic eclectic trinkets that you will proudly own and showcase in your home this is the place for you!", "type": "review", "business_id": "OovMUso3GHEuvwDObeHy0Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hGitwL2Ixiq3C6mJyQrlPw", "review_id": "wpdE7zStXo1i1FamFBr__w", "stars": 1, "date": "2012-12-15", "text": "Very unpleasant experience. Creepy male doctor. Uncaring. And no help.\n\nI went to this Urgent Care with a swollen ankle so painful that I was nauseous, dizzy and having vision problems. The doctor interrogated me and advised me to get my head examined. I'm not kidding. \n\nMom was right: good doctors don't advertise. This place actually solicits Yelp reviews.", "type": "review", "business_id": "gyPSkAFyz_fQLX1KOEI5Qg"} +{"votes": {"funny": 5, "useful": 11, "cool": 5}, "user_id": "g3z_RHT1oBH8e8vKcAUhTQ", "review_id": "tG3SHTfIlRwr2B02aO9-ZQ", "stars": 2, "date": "2010-01-26", "text": "BLAH is really all I can think of. Blah, Blah, Blah.\n\nEverything tasted the same. Everything! I got an open chicken burrito which is basically a burrito in a bowl, opened. It had chicken, rice, cheese, peppers, onions and the shell. \n\nI ate a piece of chicken, tasted like the grill. I ate some rice, tasted like the **Burnt** grill. I ate an onion, tasted like the grill. I are a pepper, tasted like the grill. I ate the cheese, tasted like a burnt grill with cheese on top. \n\nYUCK! I ate about 4 forks full and was so disgusted I had to chuck it.\n\nFail of an airport dinner to the max!", "type": "review", "business_id": "oWb5JjxoPaFSmpGwJ3-Ntg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vRWaXe7TfFvFgwkdzJL2cg", "review_id": "ncJBYqQhYA-ZOPa3D_qj2Q", "stars": 5, "date": "2012-11-17", "text": "Huge Fan of this place. People in the food industry should take a lesson from these guys as they have great customer service. Huge fan of the sandwiches.", "type": "review", "business_id": "-AAig9FG0s8gYE4f8GfowQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bKKVpwp1ERdWUl4lqc8ChA", "review_id": "wUXxGGEKHT3ThSCptUx4kA", "stars": 4, "date": "2011-11-15", "text": "I like Over Easy. The former location had more charm but this one is bigger and you don't have to wait as much :)\nThe food is great and the owners are wonderful and friendly. \nWe just ate breakfast there. I got the 3 eggs over easy with mushrooms. The eggs were way too raw. I told the server about it and I asked to just get 2 eggs over easy instead of remaking the dish as the kid in the table was getting grumpy. That's what I ate for breakfast. The server didn't take it off the bill. I wouldn't say anything about it but I didn't get to eat the dish I wanted but still got to pay for it. Not cool.\nThe Ppllo Loco is great ! \nHopefully this is a one time issue and the owners are still on top of everything like they used to be.", "type": "review", "business_id": "Y-9dJvw-J2d9QKfuL7mKgA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gk3VxZ95do0-WgeVuGMVWA", "review_id": "fDDWVaufzskYB9YeDIoVIw", "stars": 4, "date": "2011-01-23", "text": "Tried this place through Groupon.\n\nDon't have a palette or interest in wine types, so I can't talk about the wine quality. I had all their sweet wines and liked them.\n\nThe cheese plate had four of them, I wouldn't say they were uniquely different from one another. There was sage derby, brie, mahon and something else. One of the crackers that came with the plate was very hearty and nice, the other was horrible - like oily tortilla chips that weren't fully fried. The plate also came with cranberries, apricots, grapes, olives and salted nuts and seemed like a good value. \n\nOverall though I had a good time, and thought the combination of wines and cheeses I had was good. The decor was typical AZ type, brown and beige. They had live music. We sat at the tasting bar but there were groups at tables too. Outdoor seating was available too. Saturday evening was full but not overcrowded.\n\nThe person who attended on us was very nice - Christine I believe her name was. Another guy who talked to us first thing when we sat down asked and classified us as Groupon or non-Groupon, which felt weird but I guess that reflects how many Groupon customers they had had. He also said \"you are not drinking to make me happy, you're drinking to make you happy\" when we asked him if he had recommendations which I thought was weird at best.", "type": "review", "business_id": "-UnYs8XvV1M983xZoREdng"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "obeCL4RSBKnG_LiO9dvE4A", "review_id": "kO5Ar0XS52-cVdmJEOFtbA", "stars": 4, "date": "2012-04-26", "text": "To quote my boyfriend, we like this place because \"they're solid.\" Every time we order here, the food is great and fresh. I always get their sweet and sour chicken and I am never disappointed. Instead of chicken chunks coated in batter, this place uses a chicken breast with batter that I would describe to be a thin tempura like batter. There is no excess batter or fat chunks to deal with it. The service is fast and we see the same waiter every time we eat here. This is the my go to place for Chinese food.", "type": "review", "business_id": "0QTn4pMzKv1mnQifcP9YoQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7knTjXA1lNJw7AMIIJi4YQ", "review_id": "2Ljr0rFBkyDzjK_o3Vmo8Q", "stars": 4, "date": "2011-12-10", "text": "This was my first time to Sekong By Night. I have had Khmer food before, which is ironic, as my wife is from Vietnam, but never had Khmer food from Cambodia. She has to come to the USA to experience Khmer food!! I have eaten Khmer food in San Francisco CA, and in Siem Reap.\n\nBoth my wife and I were pleasantly surprised with Sekong By Night. It looks like a tiny little forgettable restaurant from outside on the street, but once you step inside. you can see the owner put some thought into the decor. It really looks Asian. It is as though the owner went on a shopping trip to Phnum Penh and came back with tons of artwork for the place. \n\nThe Amok fish is really nice. Reminded me of a cafe I had dinner at in Siem Reap some 9 years ago when I was seeing Angkor. The fish was fresh. My wife wanted to switch with me (she ordered the Katheaw Cha). \n\nThe Katheaw Cha is also very good. \n\nI ordered a Coconut Juice as my drink expecting it to be canned. It was fresh, and smelled fresh (a pleasant surprise!!!)\n\nMy wife ordered the Grass Jelly drink, and it was also good. \n\nI really wish that this place was in Mesa AZ, as I would go more often. Maybe so, I will make the drive again to this place from Mesa as appropriate. This place was a pleasant surprise and I wish the owner great success. I want this restaurant to succeed. \n\nThe only place where the Khmer food was better (for me) was Siem Reap, but then it is perhaps a little unfair to compare a restaurant in the USA to what really is available in Cambodia.", "type": "review", "business_id": "nlFlIeziD-4nNUF2B337Yw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eDjNezOwrm7l0fuEiiXEbA", "review_id": "qz5qGlXt08a0T4Wo-_6gow", "stars": 5, "date": "2009-09-09", "text": "My daughter and I got a recommendation from our nail tech at Scottsdale nails. WE LOVE VIETNAMESE FOOD and I was so glad to find this place. It is as good as what I used to get in Oakland, CA. The location is a little strange but once you are inside the interior is nice and tranquil and the service is very friendly. We enjoyed our noodle soup and spring rolls and we will be back for more!", "type": "review", "business_id": "jf4RUa9EQO37hqxRCxbEXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "vwkbXfn1j6yDGcv9VgePaw", "review_id": "9NdXuuGm6KrdmF3KwXYPSA", "stars": 5, "date": "2010-10-20", "text": "I have been attending Az Combat for the past 9 years and the instructors are fantastic. They teach Kickboxing, Jui-jitsu and MMA classes. Az Combat was one of the very first MMA Gyms in Arizona and have a great reputation as one of the top 10 training gyms in the nation. My daughter has also been at this school for the same amount of time and has taken advantage of many of the classes they offer including their boot camp. I would highly recommend this gym for beginners and the advanced looking to break into the MMA circle. They have produced some of the top named fighters in Arizona.", "type": "review", "business_id": "QC6UE93iVkVIjs6MphM56g"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "ZmIgP4U4Ht9CYmNX0_zP6w", "review_id": "7ozpbLGsgDRNh8x8HaLfVw", "stars": 4, "date": "2009-09-07", "text": "It was a rainy Saturday, yes, that's right, it was raining and hot and muggy! UGH! But when it rains I just want to go sit in a coffee shop and people watch or just relax a little. And I don't have a coffee pot at home right now. Yes, I know, it's somewhat sacriligious for someone such as myself who is a caffine addict. Sad, but true. I just needed my fix and it's that time of year people.....the Pumpkin Spice Latte is BACK!!! HOORAY!!! It is my all time favorite!!\n\nThis is the closest Starbucks to where I live. Just a few blocks away. When my friend took me here the first time she told me it was the \"gay\" Starbucks. Yup, I think that is safe to say. I'm straight but if I were gay, dang, I'd probably be here more often. I like this location though. It never seems to be super busy and there is always a place to sit weather it's inside or out. It's clean and the staff are friendly. It also helped that I was cleaning out my wallet and found a Starbucks gift card. Score! \n\nThere is not much else located near this Starbucks. The Good Egg, which looks like somewhere I might try, and Jamba Juice but sadly, it looks like just about everything else has closed up in this little strip mall. Too bad because it must have been a hoppin place a few years back. \n\nI may have to go back soon......like, today, maybe....I'm getting another craving for my fave PSL!!! YUM!! And now they have a PSL Frap! I have not tried it yet but I will. Sounds like pumpkin pie through a straw! Yum-O!", "type": "review", "business_id": "dSQh1Hx2BiSrYog4ad740A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "wC1CPV5bf--bDLtlhNSPLg", "review_id": "AW2O80o5Na3t1LSLWrJiQw", "stars": 5, "date": "2011-08-07", "text": "Delux is always really good, fresh, and it's a clean place too! I love the beet salad with chicken added. It's delish! My man digs the burgers and we both scarf the sweet potato fries. Love their dipping sauce that comes next to the ketchup, Ah-mazing!", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wDAAn0HlnuZQnfga6CVIKQ", "review_id": "5sxHw2-iHV7TGtGqAhuPwA", "stars": 3, "date": "2012-10-29", "text": "Great place to grab some quick groceries.", "type": "review", "business_id": "Dsvx2LEC8jk9nuGsg1Kqhg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "g5KKeR1V_5sejmom9S70fg", "review_id": "ExfxEsWMVJJIjfQL6uFK8g", "stars": 1, "date": "2012-12-13", "text": "ZERO stars!\nI traveled from STL to SFO a few weeks ago (with a layover in PHX). I have a couple complaints;\nOne, I was checking 2 pieces of luggage in STL. One ended up being 14lbs. over weight (it was a cooler with food I bring home each year from my dad). I was charged an additional $90 on top of the $35 initially for the cooler to ship (including the $25 for my first bag- so $150 total)! This is an OUTRAGEOUS additional charge! I thought overweight bags were charged an additional $25 like other airlines I've had to pay at but $120 to ship one bag is just insane (and a set price for overweight bags is NOT listed on your website)! On top of that I paid $250 for a pet ticket so my baggage fees were $400 total... $100 more than my round trip ticket to fly. I couldn't believe that!\nOn another note, the woman agent helping me at STL was the most rude customer service agent I've ever dealt with anywhere! She was rude to me about the overweight baggage and then claimed my dog was too tall to fit in her carrier so she claimed she wouldn't allow her to fly. She raised he voice at me and called me \"a very inhumane person\" for making a dog ride like that for a whole flight; seriously making me cry. I fly all over the country to do shows with my dog and this has never been a problem, including on the first leg of my trip when I bought the round trip dog ticket in SFO. This woman name-calling was totally inappropriate... people in line beside me were astonished. Since I had my round trip dog ticket purchased already, and she was sick of fighting with me over it, she let me go but told me the gate person probably wouldn't let me on the flight (and of course the gate person did).\nBetween the dog crate episode and the bags, I have never been treated so poorly and charged with such ridiculously high adage fees. I'm very disappointed to not be able to fly US Air anymore since I never had problems with them in the past. It was a horrible way to end a very nice holiday vacation.\nI have passed the word on to as many people and websites as possible not to fly this airline!", "type": "review", "business_id": "5M7YgorCUTEZkKYNbKDHTA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "6Y5cVScAQzRYF826jbjLzQ", "review_id": "Qr9H2_b0GiPrVwV-4tWcJg", "stars": 4, "date": "2008-08-21", "text": "Given the high ratio of staff to customers, it took longer than expected to get acknowledged. However, my drink came out quickly, as did my food. The menu items all had cheesy names based on the Fox sportscasters, but that, along with the 24 TV's playing (you guessed it) sports, made it rather entertaining. The food quality was surprisingly good for an airport sports bar--burger was tasty, bacon was crispy but not burnt, and made with actual sharp cheddar cheese. \n\nService was good too. Lorraine refilled my drink the instant it was empty, cleared the dishes and offered the check within a minute of pushing them away, and brought the receipt almost immediately. If I'd been rushing to catch a flight, I think I\"d have been fine. Burger, fries, and unlimited Coke, plus tax and tip for just under $17; not too bad for an airport.\n\nOverall, it was a bit like the US Olympic swimmers I was watching while I ate--a tad slow off the blocks, but came back impressively to win the gold.", "type": "review", "business_id": "VFjeCLwVMguUNWH-DeOgyw"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "weYT-xJwz8o7mLNWIhD6HA", "review_id": "Zrlm6xskhaJEZ9dIQof0pw", "stars": 3, "date": "2009-09-14", "text": "We ordered from here the first day in our new home, also the first NFL Sunday this season. I was expecting about an hour wait. They quoted me 45 minutes for delivery, and when the doorbell rang after 20 I thought it was solicitors or perhaps neighbors coming to welcome us into the neighborhood. I was pleasantly surprised that it was our food. \n\nWe ordered a mushroom pizza (meh), and wings and chicken tenders - both very tasty. We're used to more thin crust pizzas, NY style I guess? so this was a bit doughy, but the garlic herb crust was yummy nonetheless. Not sure if we'll order from here again, unless we don't find our NY style place, but it was still good.", "type": "review", "business_id": "_ilvDGnUKCpfp4qHvQODlA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "fyeY3Qqz-vAfKbv2cjniOw", "review_id": "IvCjrNrLAysq-eKA7oaKrg", "stars": 1, "date": "2011-07-12", "text": "Bad... food was horrible... do not waste your time or money", "type": "review", "business_id": "BnVJmCTNrO8ZtbC1vkv9Zg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "v1cZKbl5NJXPEEuGbqPmNw", "stars": 5, "date": "2006-02-18", "text": "Nicely edited selection of mid to high end electronics. Knowledgeable and professional staff. These guys (and gals) know what they are talking about and will go the extra mile in terms of customer service. \r\n\r\nThinking about splurging on a home theater? Ask for Scott. He will listen to you and help you build your dream system within your budget. He will even respond to your hi-fi emergencies (eg. the guests are arriving for your Super Bowl party and you don't remember how to work the mission control style remote).", "type": "review", "business_id": "kBRRKc8Iq7yMt1egofks_A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "L9_zl1TNcXuQmTUD2mpzEA", "review_id": "yksYNBjsnRtqoyNewNEkQA", "stars": 4, "date": "2010-04-21", "text": "This is quite possibly the best hamburger on the planet. I live for In-N-Out Burger when I head West and I was impressed by the friendliness of the staff and speed with which my order was processed during a busy Thursday evening.\n\nI'd give this location 5 stars (and if I were rating the burger and service alone, it's no contest), but I was disappointed by the fries. They didn't taste as fresh as usual. That said, they weren't stale or frozen, so they beat every other fast food chain.\n\nI'd certainly go back since my Double Double without, with pickles, sliced chilis, and extra spread was AMAZING.\n\nBe aware: they do not accept American Express, but Visa and Mastercard are just fine.", "type": "review", "business_id": "1OA1jo0GlK9sf68f00w8ZQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "GsNB-KVGhlL9uwHMXi6P_w", "review_id": "r0uagQwlSlYMxU-GAfjK6w", "stars": 5, "date": "2009-08-16", "text": ".:chomp:. this is one .:mmmghgh:. good burger .:sllluuuurrrpp:.\nIt's got a great combination of yumminess with a side of .:chomp:. awesomeness. The burgers are great and .:chomp:. perfect. \n\nThe custard is great .:lick:. and diabetic friendly .:mmmmmmm:.(They have no sugar added custard). i would definitely recommend this place! .:lick:.", "type": "review", "business_id": "8T8B_xK10FuO6MBOFcVQ3w"} +{"votes": {"funny": 0, "useful": 3, "cool": 3}, "user_id": "t-27_YZKsk9tMbAiwQKCwQ", "review_id": "fbfTJhwqpm6wiaKczi_MAg", "stars": 5, "date": "2009-12-16", "text": "I have been looking for a great therapist for a long time. Someone that takes the time to read my body, to see the synergy of the muscles and be able to do the work. Finally, I found Robert. \n\nHe has been an LMT for more than 15 years in the Valley and continues to educated himself often. His studio is located conveniently just off of the 51 about 10 minutes in a quiet residential neighborhood.\n\nThe massage intake questioning was thorough, but not invasive. His set up is calming and the room & table were warmed by a heater! The massage lasted 90 minutes or so, I didn't want to go back to the real world. \n\nHe does offer Gift Certificates and has Pay Pal set up on his website if you didn't plan ahead with stopping for cash. \n\nI will definitely visit him again when I need the work!", "type": "review", "business_id": "CcoxqH11hn04m3qneeVi4A"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HP_xZYNC5XK-VyNrnHbtRQ", "review_id": "vxjva9QY87FjmgQZxcum2Q", "stars": 3, "date": "2008-06-05", "text": "I've eaten breakfast here a few times and always thought the food and service were good. I think the prices are reasonable. My only complaint is the place is too small. there have been many times the hubby and I go there and there is simply nowhere to sit, so we end up leaving. I wish they would expand the dining area as I would love to eat here more. I hate chain restaurants, but when this place is too crowded I end up at a crappy chain.", "type": "review", "business_id": "bEQjf7c-9qkNWgXvriSGZw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Kqvfep2mxS10S50FbVDi4Q", "review_id": "8BDeilxjeCEaEVYd07cXjA", "stars": 3, "date": "2010-04-11", "text": "This is the place to go in Scottsdale for an Italian beef. When I visit Chicago I usually go to Al's or Portillo's for Italian beef and having Al's here saves me the trip to the Windy City.\n\nThe decor here is nice with several motorcycles displayed throughout the restaurant for some reason. It's neat and clean and plenty of helpful employees provide relatively quick service.\n\nI ordered the regular Al's beef with sweet peppers. I usually don't order my sandwiches \"wet\" because they come with plenty of juice already. Good flavor and just the right size. The fries were thick but a little greasy for my taste.\n\nAll in all, a good lunch and a place to keep in mind when I'm feeling like a taste of Chicago.", "type": "review", "business_id": "m3EKlucZuwnOazLrRfnWaQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gmNM8_mbR1uBRwbFfi4syQ", "review_id": "a7ZaHosep5rWLuh1CxRgLg", "stars": 4, "date": "2011-01-21", "text": "dropped by for lunch with 90yr old and 2 yr old plus hubby. all in all very good. hubby had sausage samich w/fries he really enjoyed it. baby had spaghetti and meatball she ate real good which means it was real good. mom had catfish w/spaghetti and marinara, she ate more than half and the rest went home with her. i had chicken marsala w/marinara on ziti. i subbed the wedding soup for the salad. the service was very quick and attentive. the lamb appetizer was just right with the bread. everything was tasty and very nice presentation. will be back soon, very convenient, very reasonable prices plus a full bar for happy hour.\npizza looked very promising, too. take out may also be in my future relationship with lil deemo's.", "type": "review", "business_id": "Eeonj15SXvfR6kgvh8BOWw"} +{"votes": {"funny": 2, "useful": 6, "cool": 2}, "user_id": "B63qAIvH3jVUlA6ssqVSnA", "review_id": "t4hlMiG6mWTLZLN2wcQiCA", "stars": 5, "date": "2011-04-01", "text": "Just tried this place this afternoon. Very friendly staff & great rates with no commitments. You don't need to worry about paying some $25-$40 co pay like at a regular Chiropractic's office each time you visit. It's $49 a month and you get four visits a month. It's not like massage envy where you have to sign a contract for a year and its hard to quit. This goes month to month. Try it out once for $19 if you want. This company is really growing. So stop by and see for yourself!!", "type": "review", "business_id": "az63c_MoXG_-Xs73Ocg0Ew"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "izOUjRwXReNSYtIl_AUR9w", "review_id": "yySOwNwEu_sWoP4ZDXlqag", "stars": 1, "date": "2012-06-20", "text": "We ordered $40 worth of pizza for takeout and it took almost 2 hours -- was told 20 minutes. We were not comp'd for anything. When I expressed my dissatisfaction, they offered to give me $40 credit toward my next order. I asked for this in writing, and they gave me the \"we can't provide it in writing -- we wrote your name down and have you on record\" line.\n\nGuess what -- I called back a couple months later and they had no record. They refused to honor the credit....and were rude. I asked to speak to the owner, and was told \"he's out of town.\" The pizza is mediocre at best. I have zero tolerance for businesses such as this. PLEASE spend your money somewhere else that deserves to be patronized.", "type": "review", "business_id": "yeLq-452CkaKw1ynn0nRNw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "JnAGZh7rjuz-6nKXitHUwA", "review_id": "rIObgrgo-t8A7E9L2z8fow", "stars": 4, "date": "2012-11-30", "text": "Solid place to grab a cup of coffee and a morning pastry. Not sure about their lunch or happy hour but really love the layout of this place. I tried their chorizo breakfast burrito too and it was very tasty albeit a bit pricey in my opinion. Check this place out if you're in the area for breakfast.", "type": "review", "business_id": "Lo0dRIDKXc5mlE-coVZrtQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Ojf_XozkuSHXKhhpxEp-Dw", "review_id": "23fhxjEyeEYW83NtyxBciA", "stars": 4, "date": "2011-03-23", "text": "Very good, cheap Chinese food. Lots of specials including beer. \n\nThe only problem was that one of the servers had her two kids there who were making noise and literally crawling on the patrons' tables. If this is a regular occurrence, get the food to go.", "type": "review", "business_id": "0bQiWdKxj2EmsGYRVC9qyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BZNThA-NwLDK8mwluwOGhw", "review_id": "SJzD4Sp9ZtdBPMD32XdKUw", "stars": 4, "date": "2011-08-29", "text": "I visited my cousin Tempe earlier this month. Since she is not an early bird and rarely ever wakes up in time for brunch, much less breakfast, I relied on good old yelp to pick a good breakfast place! Thanks yelp!\n\nHarlow's Cafe was awesome! My cousin ordered a simple eggs, toast, and cottage cheese, Jeff got the eggs maximilian with chorizo, and I got the biscuits and sausage gravy with a side of fruit. Everything was HUUGE. Coffee and water were always filled. My biscuits were soft and fluffy, and the sausage gravy was delicious! Jeff loved his eggs maximilian, which was gigantic. The eggs, tortilla, hash browns, salsa, chorizo, sour cream mixed together wonderfully. My cousin's eggs, toast, and cottage cheese were fine, very standard. \n\nThe vibe was diner-ish with posters of movie stars, cowboys, etc. Thankful I got my cousin to wake up for brunch!", "type": "review", "business_id": "UI8iKvzhGn2qZCGIqtQqrQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z30hYvXYGme6uU4fpzaisw", "review_id": "lxJDUmbJb1JiXVGpBUUT8Q", "stars": 5, "date": "2012-09-07", "text": "By far the best taco shop in the valley. Their rolled tacos are delicious. I've had them dozens of time and they never disappoint. The restaurant is older and what you'd expect of a normal \"taco shop\", but it is very clean and the staff is always very friendly. They also have the best red hot sauce I've tasted yet. Yuuuuuuum.", "type": "review", "business_id": "dMOdFKdeI7GuZUIq0jwAQg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XoEwIVPoUNCM11D60o3lCA", "review_id": "6VxvWOKi2rzmfdbnohMW7Q", "stars": 5, "date": "2011-05-03", "text": "I am impressed! I finally got a chance to check out the MIM yesterday and I was really wowed by the extensive collection. I knew going in to expect items from all over the world, but there are literally instruments and related objects from every country. We spent between two and two and a half hours but it still wasn't enough time to really take in everything.\n\nI loved that the audio/video guide was included in the $15 admission price. Most museums I have been to charge an additional fee. This was unlike any guide I have experienced before. No numbers to punch in, just walk by any of the exhibits with your headset on and when you stop at each video screen, the audio automatically starts up! Very cool, and I loved watching all the videos to learn more about all the instruments. When I walked up to the flamenco part of the Spain exhibit I instantly recognized the video playing as I have actually been in the flamenco club in Madrid where it was filmed so I thought that was neat.\n\nI really enjoyed all of the exhibits especially seeing the \"guts\" of the Steinway piano and how Martin guitars are made. It's not something I had thought about much before but now I know so much! I think the MIM is a fab place to take kids (and adults!) to learn and to get them excited about music. Definitely check it out it you haven't yet.\n\nEdited to add: If you are a Bank of America card holder, you can get into the MIM for free the first full weekend of each month in 2011.", "type": "review", "business_id": "WnmNF1mNOcbcheVpTv7ucA"} +{"votes": {"funny": 3, "useful": 4, "cool": 2}, "user_id": "0o0VMEJeQY0pAAZ9nxErBA", "review_id": "S_LiM_GxkWUty7fr9UCkbg", "stars": 5, "date": "2011-01-17", "text": "I really like this place... \nTaking the advice of Yelp we stopped in on our way through downtown. \nWe were immediately greeted as we walked in. I told the staff it was our first time in and asked which sandwich was the best. \nFollowing the recommendation I ordered the Crackerjack, cracked pepper turkey and melted pepper jack cheese with lettuce, tomato, onion and Russian dressing. We also ordered the Godfather, cappicola, salami, pepperoni and melted mozzarella on garlic toasted bread. \nLet's take a moment and show the bread some much deserved love. It tastes fresh with a chewy center and crisp exterior covered in sesame seeds. You could put a shoe on this bread and it would taste great. \nI really enjoyed the Crackerjack. The Godfather was good for a few bites, but too rich for me. \n\nI can't wait to come back... \nGreat choice for lunch downtown for a very fair price. \n\nUnless you are completely starving, share a sandwich!", "type": "review", "business_id": "LRuIY8JFqadCSYLo242MGg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "o3FDn0YCRJpGHMPrpuUUpg", "review_id": "89wth4Mt73S-d1APwAdUvw", "stars": 4, "date": "2011-07-18", "text": "Alice Cooperstown is owned by rocker Alice Cooper and is a pretty unique sports bar in downtown Phoenix. Cooperstown was also featured on Man vs. Food.\n\nThe most unique item and the biggest draw on the menu is the \"Big Unit\" hot dog. This is by far the biggest hot dog that I've ever seen and the reason that I went to Cooperstown.\n\nThe Big Unit is a 1 pound, 22 inch long Vienna hot dog, on a baguette roll. You can choose any combination of 9 toppings for the Unit. \n\nI went with cheese sauce, jalapenos, bacon, and tomato. The dog had a good taste to it and the bread was fresh. I loved the cheese sauce and bacon, but would probably go without the jalapenos next time. Surprisingly I was able to finish the entire dog, but had to really force the last four or five bites down. I've never felt fuller in my life.\n\nUnique restaurant and menu along with good food gives Cooperstown 4 stars.", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "100Df1wcVrl9rJgB7EG6xw", "review_id": "goobJt94tfsT0v3q6z7sXQ", "stars": 3, "date": "2011-11-29", "text": "The bf and I wanted to try someplace different on our venture out to North Scottsdale so we decided to give Coal Burger a try. The menu is pretty small, which isnt good or bad. I had the green chile burger and my bf had the bacon blue burger and we shared a side order of mixed fries. The burgers were not bad but not great. The flavors were pretty well mixed together but the burger itself was just blah! The fries were ok as well, nothing special.\n\nI would go back to give them another try. They have interesting sodas on tap that are natural. The shakes look good so will try those the next time I am in the area.", "type": "review", "business_id": "hCtyvahPsEOUb38LKxEQNQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O_pPqlu_cOJk8NFOjnHdeg", "review_id": "3DFvN7j6yPdrVrkGj-m18g", "stars": 4, "date": "2012-10-30", "text": "This is an awesomely fun place about an hour and a half south east of Phoenix. Although they are making their own wine yet they have some \"private label\" wines and a great selection of other wines and beers available.\nThe staff is awesome and the ambience is very cool. You can \"lose\" a day here just hanging out and enjoying it!", "type": "review", "business_id": "18X496TOlKunSiAnm6z1dg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "m9kXVTmi4AuECwP25IpoaA", "review_id": "FRSH8JUOu01T_OBkxbf_xg", "stars": 3, "date": "2012-10-20", "text": "Food was tasty. I ordered the veggie combo, and was a little disappointed that it didn't come with more of a variety of things, especially for $12. BUT what it did come with was good.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ncFbDwW5V4RfoEkhcAPfBA", "review_id": "8kvPwrW-U1hcr3Eb2PVw1Q", "stars": 3, "date": "2012-06-29", "text": "Not quite hot sex on a platter but good food, yummy beer and great music go a long way!", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "HZ3ItZ23xZHqjUjRIdPi7Q", "review_id": "BDcpV8Ym04A6EnrU9ryt8A", "stars": 4, "date": "2011-06-02", "text": "I don't know what it is about Tempe Sales, but how can you not love them? it is primarily a fabric store, and they may or may not have all kinds of other random stuff, like carved wooden chairs, stone tabletops, bamboo flooring (sadly no longer in stock), slate tiles, and so on.\n\nHowever, I would say that it's not merely the random selection of home decorating supplies and upholstery tools/materials that makes Tempe Sales great. It's the family-run vibe that you get from them. On one trip, to pick up several cases of flooring material, I had to go with the owner Alan to his warehouse down the street. In light of buying as much as I did and helping pull it from the warehouse, he threw in plenty of sublayment material for free (otherwise on closeout). The staff (many of whom are part of the family) have also helped me reupholster furniture and work on plenty of other odd jobs. There is no shame in being an amateur at Tempe Sales, even though it is primarily geared toward professionals.\n\nIf you're in the market for fabric, please do yourself a favor and check it out. I bet that you will return soon thereafter just to browse around some more. The only downsides that come to mind also make the experience more interesting -- stock levels are not always reliable and parts of the store have historically been disorganized (much better now than in the past), but my experience may be skewed since I gravitate toward closeout deals.", "type": "review", "business_id": "pr62DwKHSH4QzJkz-1be9A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DR-CzKVj5Ek4X0flEgYPUg", "review_id": "GW2B2WadIZjPUw2aacELSw", "stars": 1, "date": "2012-12-28", "text": "Pros: \n-No breed restrictions on dogs\n-Washer and dryer in unit\n\nCons: \n-Awful and idiotic leasing staff. Forms will be missing or prepared incorrectly.\n-Rude and inadequate maintenance (be prepared to supply your own tools half of the time)\n-Trash divers daily that no one does anything about\n-No on-site security (you can call after 9 pm for a \"courtesy patrol\" but it takes them hours to arrive) and the front gate is NEVER closed\n-Vandalized cars \n-A MURDER (this was the location of the man who set his pregnant girl friend on fire)\n-The main pool is beautifully maintained and clean. The 3 other pools are small, dirty, and frequently closed. \n-Bug infestations in most apartments\n-Dogs kept on patios 24/7 (a clear violation of the lease) so their barking can be heard by all\n-The basketball court and tennis courts are never available, as they are constantly used by kids to bike ride on with the encouragement of the apartment staff\n-Tons of potholes! Driving through the parking lot requires excellent shocks and there is minimal guest parking\n-The apartments have less insulation than a cardboard box. Freezing in the winter, sweltering in the summer. Nothing is fitted correctly to it's frame, either. \n\nIf you can afford a better place, I highly reccommend it.", "type": "review", "business_id": "OjfynPa2SokmmRNbxpgeog"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "bKKVpwp1ERdWUl4lqc8ChA", "review_id": "lLLCHfg2k7S_pHMxLtGDyQ", "stars": 4, "date": "2011-08-22", "text": "Great place for cheap drinks! \nEverybody knows each other and you can becom part of the Playa family quick :)\nSharen ( the owner ) is very friendly and nice and she will remember your name and what you drink after one visit.\n\nGreat place to watch games !", "type": "review", "business_id": "gVgJIBQDXHtgIS7p7uDa6Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DMCGCo1D88u61SBx8jXAWg", "review_id": "ye3UllU_1X2bHvWkHK-6-w", "stars": 5, "date": "2011-08-08", "text": "Best noodles in Phoenix. This place is hands down the best chinese food in Phoenix. PF Changes has nothing on these guys, they are fast, friendly and food is hot. Its also excellent for leftovers too.", "type": "review", "business_id": "LR9mX-3mh_PIEeG1A5zqxg"} +{"votes": {"funny": 7, "useful": 7, "cool": 6}, "user_id": "0oRtnPHtvZIE1UNxCDDTPw", "review_id": "70GKA69RgxZlBXhSHFzLGA", "stars": 3, "date": "2010-12-14", "text": "Simple, Inexpensive and within walking distance from my place. I went biking this evening and had the sudden urge to get Chinese food.\nI ordered something to go and got a vegetarian dish with tofu. \nFrom what I've observed, the place is simple and clean. \nNow as far as my dish goes; I thought it was good, but needed more flavor. (which is a good thing)\nIt gave me a good reason to infuse my dish with Bragg's Liquid Amino which is healthier than other seasonings. \nMy only complaint is the edename in the vegetarian dish. Why do they have to include the shell? I don't like unwrapping them with my teeth! ;-P\n\n |\n | /\n | /\n . .~^(,&|/o. \"Pass the soy sauce please!\"\n | `---------- |\n \\ /\n `======='", "type": "review", "business_id": "3D8thbL2D2c3qTMeYROAOQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pefSo1d1tcXESqD68PAlQw", "review_id": "b8ZXt3WQpJrv4KfnzVOIFg", "stars": 1, "date": "2010-09-01", "text": "Have been in twice since my last review. Its a like a COMPLETELY new atmosphere!! And sorry to say this is not in a good way. Service was terrible and I was emberassed that I actually brought some new people with me to try it out. Just went for this saturdays last ufc fight! They were like natzi's with the seating you have to have 75% of your party with you to get a seat even though my boys were parking and in the parking lot they gave our table away so after getting the tenth degree abou there seating rules we were finally sat all had to sit speraticly through out the bar. We should've just turned around right then but decided to stay... then on top of that we were sat next to some drunk beligerent people spilling and flirting with there server (wich you could tell made her uncomfotable) that table were continuosly getting over served beers. Since there was not one mgr in sight the little time we were one of my boys stepped in and there was almost a fight right then and there.. putting that aside our service was horrible some dude was our server and we went without seeing him for like 30 min and not so cold beers. At that point after one round of drinks we decided not to order food and the table next to us was gripeing about there food so that was another sign to get the F out of there so we paid (once the server got back) then bolted. I wasn't going to yelp anything BUT I just received my checking statement and the dude added 5 to his 3 dollar tip. I gave the guy 3 on $12 he was lucky to have even gotten that. I'm going to find out the guys name and go to upper mgmt because this is not the first time i've heard of this happening there. With that said.. I WILL NEVER BE BACK HERE AGAIN! This place has gone down hill!! . DO NOT WASTE YOUR MONEY HERE !! Very disappointed", "type": "review", "business_id": "fFlMAm0RBdfzrDfpicTPJg"} +{"votes": {"funny": 3, "useful": 4, "cool": 2}, "user_id": "fzkO1lGkx8MHhT8S4Rbg3w", "review_id": "9nLQQS8WtUK2uaIlOdOixQ", "stars": 4, "date": "2009-02-28", "text": "I must admit, I'm more of a Wal-Mart Neighborhood Market guy (due to the economy), but I had a great time shopping at AJ's. Every single item on the shelves is of the highest quality. For Valentines day, because I'm so bad at picking out girly gifts, I let my girlfriend go on a shopping spree at the chocolate counter (among other things)...I'd go back once in a while, but did grimace at the checkout counter when I forked over $125 for three bags of crap...I guess it's back to mayonnaise sandwiches at Neighborhood Market.", "type": "review", "business_id": "CgHcO651uEE3aalrkm4boQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "uTyIIbOvXH_XZw7OEiTiNg", "review_id": "-eWbaCnAPsSpjnV4zCi17w", "stars": 2, "date": "2010-07-01", "text": "2 stars because I really did like the eye doctor I saw, she was awsome. \n\nThought I was off to a good start getting new glasses. I picked out my frames while I waited to be taken care of. \n\nOh...wait...the eye glass gods had something else in store for me. \n\nThe person helping me couldn't get an authorization code from my insurance company because it was afterhours. He actually told me I had to pay full price or come back tomorrow. Now keep in mind that I have had this insurance forever, never had any problems before; after hours, weekends, etc. So I used my cell and called the insurance company. I get someone on the phone who is trying to help us. I put eyemaster guy on the phone and he actually got into a fight with the woman on the phone, handed it back to me and said here you talk to her, I'm done. \n\nSo the lady got me the authorization code and a explaination that this doesn't happen because most eye glass providers can take care of everything in spite of the insurance company being closed and she also asked me if I was sure I shouldn't switch eyemaster locations due to this guys behavior. \n\nBut I thought I was done. I have my glasses picked out and I needed them to drive. So while she was talking to me the guy at eyemasters was throwing out insults loud enough that the lady could hear. \n\nSo I lost 1/2 hour of my time and think the worst is over\n\nWell...those darn eye glass gods...I can't get them in an hour because it was too late in the day the guy tells me. He has the right lens and it was only 6:00 pm, come back tomorrow. \n\nSo I called today and was told 1/2 hour and they will be ready. I drive over there on my lunch hour and guess what. They aren't even close to being ready. So I walk around the mall, come back and guess what, only 1 pair is ready. That would normally be ok but the attitude of the two guys working is arrogant and not very customer friendly. I laugh it off and leave. \n\nSo what are the odds I'll get my glasses after work today??? One can only wonder. Awful service, unprofessional and unpleasant to experience.", "type": "review", "business_id": "fekFed80H18dGDmVwm4RLg"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "e7_mPkNLzbyWMXOBpT0E5Q", "review_id": "5ucisvItjJVLX5wfxXVcTA", "stars": 5, "date": "2012-11-03", "text": "Hands down the best middle eastern restaurant in the Tempe area. You can't beat the prices, everything is always consistently good (we go here about once a week).\n\nFavorites: \nHummus and Gyro Delux!\n\nDon't forget to grab some baklava too, this is the best i've ever had (and that includes having some while in the middle east)", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "XoDauxslLmZbT3SkmdaDRg", "review_id": "khqw5xkETmFh_aWBuYGEIA", "stars": 4, "date": "2011-02-10", "text": "I can't speak for the Vet portion, dog training or any other service, except the grooming dept.\n\nI take my dog in there during the Winter to get groomed, shampooed and nails clipped, because sometimes its too cold out to dry him off. The girls in the Grooming dept. are very nice and accomodating. They treat my dog well, and always have nice compliments about him. T\n\nThey also do an excellent job and his nails are always done right. I've taken him elsewhere ONCE and they trimmed his nails down so much, that it hurt him to jump. I thought he had an arthritic condition, when I realized that he had his nails done, and sure enough, he bounced back a week later.\n\nThese girls know what they're doing, and a couple of them have been there for a few years, as I recognize at least one or 2 of them every time I go in. Even to shop.\n\nThanks ladies!", "type": "review", "business_id": "V_QIirrsJHKLKQMS4lni0Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "t6GmgDZNeaTnj75NTRWc2w", "review_id": "3vZLrrZ6aVt-kvTO5Q79pQ", "stars": 5, "date": "2012-02-19", "text": "Primp and Blow at the Waterfront is divine! I walked out feeling like a \nSuper Model without spending a fortune! Great Stylists. Upbeat Friendly \natmosphere. Great Tunes and an overall GREAT VIBE! Convenient Parking \nand centrally located right near Fashion Square and Olive and Ivy. LOVE it!", "type": "review", "business_id": "HD_D2LTNTL6EXmvHF6x1qg"} +{"votes": {"funny": 6, "useful": 6, "cool": 6}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "Gfzwi9ITTD33Kk7at8vrDw", "stars": 3, "date": "2010-04-28", "text": "My biggest tip for newbies to YC's, look toward the grill and look up. There you will find a nice little menu of sauce formulas. Unfortunately, I never looked up. As a result, I didn't have enough sauce. In my case, that was a good thing because the sauce I did have tasted like crap, so more of the same would have been even crappier.\n\nAs for the ingredients, lots of choices with fresh veggies. I have to say the meat looked unappetizing to me. In fact, I had to ask my husband what the hell it was. I guess it's a good thing you don't see piles of freshly sliced meat, else it might not be so fresh after all. But in its frozen to minus 500 degrees F state, I found I opted for more veggies.\n\nTwo sizes available. I went with the large, crammed my bowl full until it resembled a small mountain, and then wasted over half of it. So get the small unless you want leftovers or you haven't eaten in several days.", "type": "review", "business_id": "VEojEXbJ81eiPLSSF9jNEQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "4GBlFEDgO3BTiIVZCS_21w", "review_id": "5nhbZTGI3a4KgtK9QNtNHQ", "stars": 4, "date": "2010-08-31", "text": "Long-time fans of the Mill Ave location...we finally made it out to the original (I think this was the original, anyways). \n\nOverall, pretty darn good. \n\nThe food is on par with the tempe location. The pastas were delicious - I really liked the Boa Bowtie pasta. \n\nWines were solid and complimented the meal nicely.\n\nAs with the Tempe location, the best part for us is always the Shrimp Adriatica appetizer. We could just eat a big bowl of that with bread. The sauce is amazing, the shrimp is well cooked. The only downside was that it was just regular french bread (or similar) - the tempe location has the fancier, tastier varieties of fresh baked bread. But the quality of shrimp and sauce was the same. \n\nService was slow at first (we went late on a Sat night as they were slowing down), but was friendly, made great recommendations and were very helpful overall. By the end of the meal, I had forgotten about the slow start. Think we just walked in at an awkward time, which as I said, they really made up for by the end of the meal. \n\nAlso, the warm butter cake was decadent. Maybe not as good as Mastro's butter cake, but it's on the way there. Really tasty, very fresh. I could have used some fresh whipped cream or a little vanilla ice cream to go with it, but that's a personal thing. \n\nOn a side note - the Zinfandel they are currently offering (think it was like $6-7/glass) is fantastic. I was impressed at the quality compared to the price. \n\nWe'll definitely be back.", "type": "review", "business_id": "dsMvINhoQbIQgSRTBv2B6g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "c7IqCodpfYKnSLYIND9H4g", "stars": 3, "date": "2012-03-01", "text": "This Mimi's is near the Reach11 complex where we were attending a tournament. So, afterwards, we came here.\n\nThe short version is that this is just like the Mimi's in Chandler. \n\nThe food is fine. Not great, but fine. The service was OK too. Everyone enjoyed their food (I had the chicken pot pie). None of it really struck me as \"French\", which is Mimi's motif, but it was good. In fact, the kid had chicken picatta, which is Italian. Not French. They do have quiche, so maybe that's enough to claim to be a French-like bistro??? (Not in my book, honestly.)\n\nAnyway, I'd call this place average. Really, I should give it 2.5 stars, but that's not an option with Yelp. An OK place to stop if you're in the area and looking for food. You could do much worse.", "type": "review", "business_id": "-WZIxGXJHMGidZXRhKxP3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "6ts41fCsDKHbFZaKOMNmVQ", "review_id": "ZZAdLWwFemBl98vEVOlAMQ", "stars": 5, "date": "2012-09-21", "text": "My sister and I went here the other week and got gel manicures! They turned out beautiful and lasted forever! Ithink Biagio is now my go to nail salon! \n\nKeep it up!", "type": "review", "business_id": "rE2InW2Jmjy6hzH3p4Iyjw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "JF05ffi0qdheB9Ti1kACOg", "review_id": "3IQB2gP2pj_r-lPC1mxuDw", "stars": 1, "date": "2011-12-28", "text": "If you are over 24 you are too old to be here. \n\nFirst, this place has beer. Don't order mixed drinks, don't order wine, both are gross unless your sole purpose is to get trashed, which is the mission of every underage and young, young 20-something at this bar.\n\nThis is the place you'd go to with your fake ID because when you're 19 this is what you think a bar should be.\n\nExpect people over drinking and throwing up very early on in the evening in the bathroom.", "type": "review", "business_id": "xWlCgISVtozxCztPA4nGaQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "Iodo_uXYfCZc65rWQ-JHzQ", "review_id": "1WOTiEh2XU_RyUp5TdRZDA", "stars": 1, "date": "2012-07-21", "text": "I had high hopes for this place, and it is really too bad because I love to support the Phoenix area restaurants, especially a Caribbean one and I had already been to the adjoining Rum Bar and loved the drinks, but the food was bad. It was not only bad, but by all means avoid the daily market catch. It was not fresh at all! Very over priced! For nearly $25 for a simple white fish they could have at least taken the bones out of the thing. It tasted like it had been sitting around all day (or two) in its own juices, and when I let the waiter/bartender know he just ignored it and then ignored us until we left. I will never be back for the food. The Rum flights are worth a trip there, but that is it.", "type": "review", "business_id": "cLojUtqkFpVIHFEvA_5Atw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "OYpsdMcpdCdlkknpgpFMLA", "review_id": "ohJHvAieUmjf3WWWs7bfjA", "stars": 3, "date": "2008-01-14", "text": "I really wanted to fall madly in love with this place, I mean, a British themed pub in Heritage Square? So promising. \n\nAs you walk in, the bartender is standing behind in an elaborate wooden bar structure. This made me think publican instead of bartender (as in \"Mate, I'll take a pint and d'ya have any rooms available?\"), which is probably the idea. As there was nice selection of draught beers, we walked around to the bar to the right and ordered a couple of pints. I ordered a Boddingtons, my friend ordered a Stateside micro brew. (Would have been nice if they had Old Peculiar on tap, but you can't have everything.) \n\nDue to the combination of things cooking in the kitchen, it smelled a bit like my grandma's house. This prompted us to make a beeline for the patio decorated with super-heavy wood furniture. I assume this is to discourage thieves from selling their tables and chairs on the black market. Smart. The piped-in music selection that night was a bit off-putting, in fact, one of the other patrons commented on it as well. It appeared to be a satellite radio station that specialized in 80s hits like Wham! and Depeche Mode. I guess George Michael and David Gahan ARE British. Indeed! Wikipedia just informed me that \"Dave Gahan (born May 9, 1962 in Epping, Essex, England) is the baritone lead singer for the English electronic band Depeche Mode, and is also an accomplished solo artist.\" Now I feel better. \n\nThere are many cozy nooks in this place, so that would be a good thing if you wanted to have some one-on-one time. They were also playing football (soccer) on the flat screens, so should make some team scarf-wearing Brit ex-pats in the Valley very happy.\n\nWill I be back to try the food? Probably at some point. But, for another round of drinks, I think I'll wait for a Friday or Saturday night when it's hopping.", "type": "review", "business_id": "TfTlOE6h9E9o34dEkw9L_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MDVoSLBTqsGsC4jztAs4PQ", "review_id": "50zV_OG4FADQR96tGa-kFw", "stars": 2, "date": "2011-06-13", "text": "Gary Betz, DDS with Southwest Dental Group in Phoenix (Ahwatukee)\nDr. Betz was nice, but the office...well it seemed to be the unfriendliest, coldest dental office I've ever been to (out of 6-7 in my lifetime). I used to complain that dentists' offices were too full of perky, chatty, overly friendly clones, but now I miss those offices. I saw nary a smile or warm greeting - businesslike efficiency seems to be the norm here. Dr. Betz was friendly and smiled, however. No complaints about him, other than my feeling that everything was rushed. We didn't go over my history or much of anything, but we'll see if the next visit is better. \nPostscript: After getting home from this appt. and reading the horror stories on various review sites relating to ALL Southwest Dental offices, I changed my designated dentist and went to Foothills Smiles instead. Please see my review of Foothills Smiles on Ray Rd.", "type": "review", "business_id": "sTq5I-5lDkMqi89e26I7JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "82IMwHfXtr8bjidycFMyIA", "review_id": "U1Gzsqjz5n6S5WWCwlImmA", "stars": 5, "date": "2011-10-14", "text": "Hnnngffff their signature spinach pizza\nIt's the only thing I've ever ordered there\nAnd it alone warrants 5 stars.", "type": "review", "business_id": "YldXB1hRpnE1CWLF3mvgpQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "M31fQaXjn54y-Rx8ADjldA", "review_id": "8GwkYT8MC_Imd7bISh_FiA", "stars": 3, "date": "2011-01-14", "text": "If I could there would be two reviews here. The golf course its self would be an easy 4 star based on price and condition. Customer service would be a 1 star. \n\nDon't bother trying to be friendly with the pro shop staff, these folks are just going to through the motions of taking your money and doing the least possible to get their paycheck. But since the golf is such a great value and people will continue to flock to this place in droves I don't see them needing to hire people with personalities any time in the near future. \n\nThe front 9 cart girl is friendly as is the lady working the snack shack on the back. \n\nAnother thing that didn't impress me was being a walk on, renting a cart and being told that they already had 2 carts in that group. I am used to being able to have my own cart instead of riding with a person I don' t know and being subjected to their cart skills or lack there of. Turned out okay but just struck me as odd. \n\nI will continue to go back for the great value but I hate to reward bad behavior.", "type": "review", "business_id": "bRk44ShCT0osos-1xaTRyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lsp7p2NuC5MX4_iuch3_OA", "review_id": "Ja8SkPkWQmiIS1ZtFvNfYA", "stars": 4, "date": "2012-06-23", "text": "This GB is one of our favorite places to stop for snack and good seasonal beer. We try for Sundays to do our shopping in the area and stop here....because it is Happy Hour in the bar area all day long. Great specials on their beers, wine and appetizers. We have tried several of their appetizers, but you can't beat their garlic fries here!! YUM-O!\nAnyhow, the service here is always great. The hostess, bartenders and waitress are always friendly and ready to take your order. It is especially nice when the weather is beautiful then they open up the patio/bar area. Great place to watch games...plenty of TV's. I frequent the Mill Ave. location, because I work in the area and it does not compare to the San Tan GB.", "type": "review", "business_id": "xmtKVO7C7KYVqMBe2eQq3A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Xm8HXE1JHqscXe5BKf0GFQ", "review_id": "MZuTe1I1u1tpb_RlGUHFng", "stars": 5, "date": "2009-06-09", "text": "This place is fantastic. Great food, superior service, gorgeous decor... I had a Breakfast Casserole and a generous side of Cheesy Grits. My girlfriend had the Blue Plate Special which was a frittata. \nThe Breakfast Casserole is a medley of sausage, roasted vegetables, and potatoes with cheese, topped with a poached egg. There were no overwhelmingly strong or weak flavors, and I didn't see any extra oil in the dish. It came with a side of toast. I chose the marble rye and was disappointed only to see that the butter it came with was a hard stick. The grits were definetly made with milk and butter and had some cheddar cheese sprinkled across the top. The grits were more solid than watery which was a big plus for me, as I prefer my grits closer to the drier end of the spectrum. \nAfter breakfast I ordered a bloody mary at the bar inside and it was spicy and delish, a really good balance of tomato to booze. I liked it a lot. What I liked the most, though, was the really good service and friendly attention we got from our server, the hostess, the bartender, the bar manager, the valet drivers, and even being greeted by the concierge and check-in when we weren't even staying at the hotel. I will definetly make it a point to come here again.", "type": "review", "business_id": "tdeHd2AVYlEnz9F1UGb84Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "GRgBu4K7GOb3354esp_xkg", "review_id": "P0u5R9_-lGDUPHDak5HBfg", "stars": 4, "date": "2012-05-07", "text": "Yoli's has recently been popping up on Yelp's 'Best Of' front page. Many people are mouthing out and as the food whore that I am, I needed to go out and try it for myself.\n\nMy previous research told me that there were many 5 stars and 3 stars reviews regarding the ambiance, service and food. It seemed that the place had be 5-stars for a while but trending analysis showed a decline in the late 2011- early 2012. Alright enough nerd talk- it was a Saturday morning, I was starving and I needed a place to have brunch with my lady friend in town.\n\nWhen it comes to brunch at Yoli's, you really need to leave all your expectations at the door. The neighborhood its in is a little sub-par, the parking situation isn't grand and the interior and patio decor resembles a home that stopped paying for landscaping services a long time ago. The tables outside are all basic basic plastic, they are not squeaky clean (or perfectly leveled) and the seating is pretty limited. If you are coming to Yoli's, you are coming here for the food and nothing else, this ain't no brunch at the Four Seasons.\n\nTheir menus are strictly breakfast/brunch related but at a 2-sided page list, their breakfast choices do have a large variety of flavors and prices. The food is on the stealthier side with skillet dishes, omelets and diner-style potato sides. My friend and I ordered their most popular dish, the El Monte- Hawaiian french toast sandwich filled with egg whites, turkey, bacon and cheese with a 'spicy orange marmalade'. At about $7, the sandwich was pretty large and filled me up easily after just half of it. The french toast itself was soft and spongy and the bacon had some crisp, but the turkey was very thinly-sliced deli meat so it didn't have a lot of flavor and the spicy marmalade was tasty but not spicy at all.\n\nThe service was a tad slow but the lady was very very courteous and nice to us, she just didn't stop by very often so we had to wait around for our drinks and our check for quite a while. Overall I wasn't blown away with Yoli's but I would recommend as a place with decent portions and good prices. As of now, a 3.75 stars on my book.\n\nI am a big supporter of local restaurants and I love seeing a family-owned business thrive. With a little bit more decor, faster service and a cleaner environment this place can return to be the GEM that people used to talk about. Yoli, if you are reading this- I hope you take this advice, we all want to see you succeed so we hope you can get back on that horse and impress the hell out of us. Good Luck!!", "type": "review", "business_id": "kfscAJnLVf6J2uEte7g-5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Lj2Gf-tvMVpwOGF5Z20bIQ", "review_id": "OJN24DHFXvN10MgBh565zQ", "stars": 4, "date": "2011-05-30", "text": "Been going to Bailey's for the last six months. It's an older crowd during the day, but at night and on the weekends the crowd id much younger!\nBartenders are all friendly and the drinks are cheap, though they could be stronger.\nI highly recommend it!", "type": "review", "business_id": "dOUtKHQ8Q0eHFjKPmi07tw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Bsu4ZahJSGiDOZYrsSe6mA", "review_id": "AKits-Hwzd56Ge3xBQxMNQ", "stars": 5, "date": "2008-09-28", "text": "This is a brand new delicatessen who's grand opening was September 24th 2008. Since I don't have a kitchen in my place, this re-heat one-stop shop near my neighborhood will be a place I plan to frequent via walking. \n\nThey have a cute cook book lounge and the deli layout is fun to just paroose. Their chocolate chip cookies taste home made. So nice to still feel like you have some input in the cooking preparation process when you live with just a microwave.", "type": "review", "business_id": "G_2CWsU7GYwhNqptrLXUBg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Er4F-PTME7RsIwKainiR0Q", "review_id": "r-hzNCrugr1hG9m-zSWokA", "stars": 1, "date": "2012-04-21", "text": "Cheap! Cheap! Beware! If you order Chicken McNuggets from this McDonald's they will charge you 10 cents for each sauce packet over the alloted quantity. Either go to another McDonald's where they don't charge, go to another restaurant that values your business and NOT nickel and dime you to death or don't eat!", "type": "review", "business_id": "eR5-nFI0Vp7EG2pIXQM3bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WHjMr9qABBcf-bCCWozzFQ", "review_id": "lcl6dpr_voio2cWdIsqHIg", "stars": 4, "date": "2012-04-07", "text": "So, I've been trying to check this place out for awhile. I love b-fast, almost as much as staying up late and sleeping in, so it did take me awhile to check it out before they closed at two (my average wake up time). In fact I arrived right at two, which having been a server, I know sucks. Our server Marci was super nice and welcomed us in anyway, without even one look of contempt, which I know is what I would have delivered had I been serving a table at closing time. The food was delicious, and it being a \"fuck it\" day, ordered bacon wholeheartedly. It was the most delicious, thick cut bacon I've had. And the rest of the meal was delicious and reasonably priced. Next time I'm awake early (or up late) I'll be back.", "type": "review", "business_id": "dYLlSj_SWwHg1aA3Km061w"} +{"votes": {"funny": 3, "useful": 1, "cool": 0}, "user_id": "FUMdzARf71drXyDZ7lkpWw", "review_id": "ylSk-Jubr90POE9m_3u1oQ", "stars": 2, "date": "2011-06-01", "text": "the promise of homemade turkey and roast beef drew me in, much to my dismay it's shredded. As Ramsey would say 'like a dog's dinner!'. I got the bobby with roast beef, so i could taste both. The bread was good, the stuffing was cold. The meat was chokingly dry. Dry dry. Sawdust tasting. I'm sure the other non shredded meats are great on that bread, this might as well had just been the stuffing and cranberries on the bread. Plus, the manager was bragging about how he just stands around and does nothing but micro manage. Donkeys! Lol. Make that guy clean the bathrooms!", "type": "review", "business_id": "tsom7jUEr_DetH65ZtEc3w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "bkv0EMVYiwWf6ULKbEdqRw", "review_id": "mN_1gTFafPqH0hrzvUc83g", "stars": 1, "date": "2012-07-10", "text": "Until they get their quality under control, we won't eat here except for lunch. We ate here last weekend and both had the roasted chicken. The problem was it tasted like it was basted in cinnamon and the sauce for the risotto had at least 10 whole peppercorns on each of our plates. I actually bit into to one before I realized that the sauce was just crawling with them. They could've strained them out, processed them in, whatever, just don't serve me a plate with a bunch of whole peppercorns. This tasted NOTHING like the previous visit when I ordered the same exact dish. When we finally let the management know that our food was unacceptable, he said the best he could do was a 20% discount. Well. we weren't looking for a free or discounted meal, but rather some acknowledgement that they actually cared about the food. That never happened. Unless something changes, the burgers are decent and that is about it.", "type": "review", "business_id": "ZLVX6bQt8HJH5d4pq5EJGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5p-E2IBx_r_UK2I2If03Sg", "review_id": "My9PkTKJDYoY9RmQuukTgQ", "stars": 5, "date": "2011-03-28", "text": "holy shit i love this place.\n\nI have been a regular here for years. Eating at oregano's after a long work/school week is really something to look forward to.\n\nThe food is great. Its reasonably priced, the portions are huge, and the drinks are tall. don't expect anything CRAZY culinary creations here, its just not part of the restaurant's culture. The food is simple and everything is tasty. \n\nI usually go with the Sausage Sandwich, or one of the pasta dishes with whole grain pasta, and one of their giant meat balls. Its always filling, \nalways good.\n\nSure the wait is long, but they always have free pizza, drinks, and deserts while you are waiting. \n\nService is always great. Friendly, prompt, and they don't bother you when you don't need them. All of the servers are always willing to play along with my friends and our inappropriate conversations, challenges, etc.", "type": "review", "business_id": "8Hn5X1AqgmSLHRG2KgBJBg"} +{"votes": {"funny": 5, "useful": 5, "cool": 5}, "user_id": "lr9jeBK-8E7FI2etUa2JFQ", "review_id": "WoI-lFT6JTCR3BiMMbm3Zw", "stars": 5, "date": "2011-07-31", "text": "My boyfriends company has been doing business with this PostNet store for the last 4 years. Service is friendly, prompt and helpful.\n\nI highly recommend it.", "type": "review", "business_id": "CvoAB3wTchy9j8CE1eEVWg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "VURvHke7yvGL673wgcp9nA", "review_id": "YJmZi9HhtSHZVq95gmDxDA", "stars": 4, "date": "2012-07-10", "text": "Experienced happy hour for the first time. Amazing food and drink for cheap prices. Only downer the bar tender. It was a pasted on smile. I will return and take people with me.", "type": "review", "business_id": "PmPOuRvuN3CoNOi1nBj_TQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "esomNneHvsEv91MmraM5ug", "review_id": "YCD10HgOr7j4v9OLne5SrA", "stars": 2, "date": "2010-06-25", "text": "Meh.\nMaybe it was just that we decided to dine in 10 minutes prior to closing, but I was definitely not impressed. I had not been here in ages. Probably 10 years, maybe 15. No exaggeration. I remember nothing but good things about Miracle Mile. I remember being excited to come eat here. \nSo one night while shopping at Arrowhead with a friend, I got a sudden craving for a pastrami sandwich with coleslaw and Thousand Island dressing. I was very excited to walk in and find that it was on the menu! I didn't have to special order it!\nIt was a good size sandwich. Big enough that when cut in half, you still have to use both hands. I took my first bite and was immediately disappointed. Not that it was bad. It's just that I had fond memories of this place and I was really expecting something near the level of perfection of the #19 at Langer's in Downtown L.A.....or at the least Like Gandolfo's in Tempe. Nope. It was nowhere near as good as either restaurant. It was just okay. The bread had a slight toughness like it was day old bread. The meat was chewy and lacking flavor. The coleslaw was really good and had the perfect crunch. The flavor of the coleslaw was not strong, but still masked the flavor of the pastrami. I will stick with Jason's or Heidi's next time I have a hankerin' for another deli style sandwich.", "type": "review", "business_id": "IrKh06dXhLyiO4dVHGnLFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Zof_qo5X5tRQXvkuuR1RzA", "review_id": "APFjViNd4-lV86c-nFLDhg", "stars": 5, "date": "2012-04-16", "text": "Nice Plaza. Very well located. Clean store. Friendly staff. All you could want", "type": "review", "business_id": "dC6rDLGRoch_DOZk5kLkWw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "faVvuyxRutEkKX1hK1GuQA", "review_id": "1dfvuxmDU8dUM-wobcJ-jQ", "stars": 5, "date": "2012-07-24", "text": "Great place - nice ambiance, cool decor, tasty food and good service!\nWe were going to check out the Spotted Donkey, but finding it out of business, we noticed Grassroots across the parking lot and decided to check it out. My daughter got the brisket sandwich (she let me try a bite - nice combination of BBQ sauce, slaw and pickles - but she picked out the pickles and slaw!) The fries were quite nice as well. I tried the short ribs - asian fusion sauce with asparagus and jalape\u00f1o cheesy grits...I've never been a fan of grits, but these were tasty! The ribs were very nice...the sauce reminded me of something my Mom used to make (but I can't quite put my finger on what it was, but it was familiar). A browned with toffee flakes and gelato on top capped off a very nice dinner. (And you've gotta love a place that has the Gadsden flag as part of it's decor). Definitely will be coming back! (and my apologies to our attentive and helpful server for not having been more demonstrative of my appreciation for the food...it was quite good, I just wasn't in a 'dang that's good!' mood last night) Check this place out!!", "type": "review", "business_id": "3wLLf8wRqD1ZQowi9aZSoA"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "aYDFqKsgNLzBi8PIhthmDw", "review_id": "KbhAAiCG8ri9W5Gbc5p8nA", "stars": 4, "date": "2011-12-27", "text": "Good food, decent price and a southwestern atmosphere. \n\nThe food is decidedly better than the decor, but then again I've never been big on the southwestern look. Something about Antlers above my head while I'm trying to have a romantic night out with the lady just doesn't cut it for me. \n\nI (like most everyone else) recommend the big ass burger. You can't go wrong with their side of mac and cheese either and I recommend giving it a go regardless of how much you fill yourself with all their other delicious entrees.", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "Znu5KKqytHfmjbXfQo3f4Q", "review_id": "sxYEFZGur3BMJ6fCAUWphA", "stars": 5, "date": "2010-02-06", "text": "I work on a local event called Ignite Phoenix, and somewhere in the mix we contacted Splinter Creative about helping us with the design and material for our event. We were completely new to this game and didn't really know what good branding and imagery could do for us. They stepped in, gave us some amazing ideas, helped us refine them, and delivered some incredible material that wowed everyone who attended.\n\nSo we asked them to stick with us for our next event, and they did it again. They keep upping the game, and I now work with them across several different business that I work on. They've helped me through several difficult creative areas, and the end result is always sharp, professional, interesting, and engaging. \n\nI prefer to work with people who are passionate about what they do, and do it well. Splinter fits that bill perfectly. Highly recommended.", "type": "review", "business_id": "Izizcby4_u1u_d6suB9Jzw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "Cc4k7m1_CWeAz5JWSkoVpw", "review_id": "yTDqNtZ5Ye7Jrv3h6tG_dg", "stars": 5, "date": "2009-11-03", "text": "I don't have much time to write this, but I do want to say a few things. \n\nI had four things so far here. My friend and I both enjoyed them immensely. I paid $16 + tip. \n\nI had the [A1 - Cha Gio - crispy egg rolls ] & [A2 - Goi Cuon Thit Tom - spring rolls] to start.\n\nOh man was this delicious. The first thing I loved when I walked in was the ambiance. Dim lit and let the sun do the lighting - very zen - if you're into that. I felt very comfortable here.\n\nThey had four sauces on the table. I have no idea what they are, but the one with red pepper flakes and oil -- the darker one -- oh wow. If you like heat added to whatever you're doing -- wow -- this stuff is for you! I loved it. \n\nThen I went with the Pho tai - sirloin soup. [P2* - Pho tai] - wow - broth was amazing. Everything was. \n\nFor me, enjoying food means I need a few things. \n\nFirst - awesome food\nSecond - ambiance\nThird - presentation\n\nThey had it all. I was very impressed by place to the plates. Don't change a thing. I hope your business is very prosperous!", "type": "review", "business_id": "_HTE4pOKeJC7kcxiCF9vTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8-3AWD4V5HitvOtwnQCDIg", "review_id": "6sWv0_Ww4dHw89GBClsteQ", "stars": 5, "date": "2011-04-22", "text": "The Valley Beer Drinkers Meetup Group has been coming here for months - since before the name change - on occasional Wednesdays for $3 craft pints & the fantastic wings special. We've always had a good experience, and the extensive, rotating brew selection keeps the venue fresh.\n\nI've been urging the owner to add at least ONE Pilsner to the IPA-heavy menu, and last night he delivered with a quintessential model: Munchener Spaten Pils! It was great.\n\nAdding to the experience was the excellent food. Portions were generous and satisfying!. One member ordered the Fish & Onion Rings, and when it arrived, two others immediately ordered their own! I can't remember better fish (pollack here) or more perfect onion rings! Homemade potato chips were remarkable, and the fry cook definitely knows the craft! Diners have many options for sides w/ entrees, which is a generous touch. Only the cole slaw was a bit bland. \n\nService was friendly & generally good, but not attentive enough later in the meal. Thanks for separate checks, too.\n\nI really look forward to returning for brews and to further explore the enticing menu!", "type": "review", "business_id": "xsSnuGCCJD4OgWnOZ0zB4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "W8yvAp2i9c1XDQ7d9lOz7Q", "review_id": "kSASs0a8bHQfYUVNLt527Q", "stars": 1, "date": "2012-09-07", "text": "Do not get your oil changed at this walmart or any walmart. We got a oil change and they dented our oil pan and now it leaks and they are not taking responsibility for the damages they caused. I have only had my oil changed for the last year here and they are trying to put it off on someone else, when no one else has clearly done our oil. The insurance for walmart wont even look at my vehicle and had already decided they are not at fault. I had a 3rd party appraiser look at it and they can only determine it was from an oil change. I have no other option but to take this to a lawyer.", "type": "review", "business_id": "nL9tCTn4Sswcwcdkol4URA"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "Yz7i36gFLsuFSPSCqBBp8g", "review_id": "zEMVQYiLAO_OMD3CwJTucQ", "stars": 4, "date": "2012-04-22", "text": "This is a fun POOL party club in Scottsdale next to everyone's favorite, American Junkie. I have never eaten here, other than a dessert that I don't remember. ;) It can also be a fun place for after dinner drinks or dance. The ambiance of relaxing and drinking next to a pool always brings about a good time. The music is LOUD and the bartenders are nice. Their bathrooms are clean and pretty. \n\nSpanish Fly rages during the daytime summer weekends, and is a great place to hang out when you still want to enjoy the outdoors and it's blazing hot outside. I will be going back - glad to have you in Scottsdale, Spanish Fly.", "type": "review", "business_id": "wP5849J1DKB2KS3M6UwOAg"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "PoQOIZc2q5nud7uVz_jdjw", "review_id": "2qRm-9tGf7citNciO9oARw", "stars": 4, "date": "2009-07-30", "text": "I can't believe I didn't write a review of Metro after my first visit but I got a second chance last Saturday night with Dottsy Z, Andrea K and company. We had a reservation for 8PM for 4 of us, and at 730PM Andrea asked us to add 2 guests and when Dottsy called Metro they said of course, but please be advised you may have a little wait for the larger table. Which leads me to the only bad point of the evening:\n\nWe had to wait ONE AND A HALF HOURS for our larger table. We had all expected and accepted a 30 minute wait. After about 40 we went to the bar to get some wine and oysters (otter creeks = yummmm). After an hour had passed and no one had come to address the situation with our group, I approached the hostess and she was very apologetic and offered to comp our bar tab, which was incredibly nice. \n\nWhen we were finally seated our server was friendly and attentive and had gorgeous blue eyes. Hello! We were all starving and got right to the point with our orders: I started with the cucumber soup and no amount of yums or mmmmms can fully describe the delight that was set before me. A cold soup, this is made with cucumbers, buttermilk, dill and olive oil, with chunks of lump crabmeat and a dollop of caviar thrown on top, because why the hell not?! Also, the soup came in a really large bowl and I was full by the time I finished it. I did soldier on to my main course which was the Moules Frites which is what I had the first time I came here and is a truly inspired dish with juicy fresh mussels, and a broth with thyme, garlic and perhaps a little white wine. Then to add insult to injury they serve the huge casoulet with a hearty portion of herbed french fries that were the perfect crispness and didn't leave oil on my hands. \n\nSadly I had to leave some of those friends behind, but only because it was time for dessert! I chose pot de creme which is normally topped with brioche. I requested a brioche-free pot and it was no problem. I was served a tiny ramekin of creamy custard topped with a sort of peanut butter syrup/creme and three slices of caramelized banana. It was really yummy though within 10 minutes my heart was racing from all the sugar. \n\nI will point out that this dinner took 2 full hours (we left at 11:30PM) making this the longest I ever spent in a restaurant (3.5 hours are you kidding me?) which is why I ultimately docked one star. Based on food alone Metro Brasserie deserves 10 stars.", "type": "review", "business_id": "3ez4Qs56C_cC-l8x08l6Zw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QnMPMD8Nh3ErZGfMRGAeYg", "review_id": "pdvRbPocU_HJ8ufL02uZvg", "stars": 3, "date": "2011-11-23", "text": "My wife and I stopped by last weekend to watch football and sample a couple of their brews. The food was great could be some of the best french fries I've ever had. The beer was good. Noticed almost everyone drinking the house beers so it was nice to see that kind of support for an established micro brew. There was a large crowd for football many folks wearing jerseys and everyone really getting into their game. If your looking for an energetic place to watch football and grab a good bite this would be a place to consider.\n\nUPDATED 04/05/2012 lowered to 3 stars.\n\nI have been here a couple times since my first review and it really is just an average place. The fries are the highlight. The place is small, loud and well your AVERAGE pub or brewery.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_AmdPmOiR00XdTx_BIDMFA", "review_id": "VGZvJAI7UNQLQxwY-fSVvg", "stars": 4, "date": "2011-08-31", "text": "Like earning cheaper gas", "type": "review", "business_id": "_ELurClSg26jIcRmhq3F_w"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "T2u4D_GmKo5KbDiXLRTcyA", "review_id": "_JsmctXZTG6MEstWZPN2eA", "stars": 5, "date": "2007-09-27", "text": "The democratic party of Arizona consists of a nice group of people. I visited their office several years ago with some questions and they were quite helpful.", "type": "review", "business_id": "MUT6gWy0NtuV2IioiYUWFg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "WORShVhq7IwMY4iizc1dAA", "review_id": "KFvySZqGW0EFPGJ6MZo6JA", "stars": 1, "date": "2012-10-05", "text": "It was my Birthday and my wife, her mom, a dear friend and I headed to Fleming's Steakhouse in Chandler, AZ. We heard only great things about this place and wanted to experience their 'unforgettable' steak dishes. That, we did, unfortunately. \n\nThe restaurant was lovely dim-lit, adequate atmosphere for an expensive steak place. We were seated immediately and tended to by the waiting staff. The small roll of bread and two kinds of butter were good but insufficient for four hungry souls and we polished it up right away. No one offered to bring more. Our waiter told us about the daily specials, after which we ordered food and wine. After a short wait, four large dinner plates arrived. I was the lucky one, my steak (a large rib eye steak, ordered medium-rare which tasted very good despite two large blobs of fat) was sitting pretty in the middle of the large dinner plate. Nothing else on my plate, just the steak. I looked around at my wife's plate and couldn't believe, her fillet mignon was laying there, in the middle of the large dinner plate without anything garnishing it, be that a glaze, a leaf, a slice of whatever! At the prices asked by this restaurant, it felt like an insult to each of us to have such a poor presentation of a steak!! We asked our waiter for a side dish, mashed potatoes with Parmesan, and when they arrived, we couldn't believe it! There were no more than two scraggly potatoes turned into mashed potatoes, or about a tablespoon of mashed potatoes per person. Mind you, they tasted good, but at over $9.00 per side dish? In short, we left hungry and wondering why we spent over $200 for the entire meal.\n\nNext time, we'll go to a well tried place for steaks and more. Durant's, downtown Phoenix and worth the drive.", "type": "review", "business_id": "0ONypOKIhttBz9IJzBE8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5DJGsF4L5UFY5XOBOQCARw", "review_id": "bva8boLXU1sqys0EjkE5WQ", "stars": 3, "date": "2012-04-08", "text": "I didn't try any food hear but this place seems like it has a split personality. Tons of tvs showing sports so sports bar. At the same time there's a dj blasting club music. There weren't that many people dancing. We went here because the place next door had a huge line. One plus is that theres a second bar near the patio that we stuck by. This place to me was...meh.", "type": "review", "business_id": "kgPjOtSeMd3CMdbnEmHbeQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "g2ihR0ZFKCEnKB7YPviuJQ", "review_id": "iJ5MEi9jzAthoK45BpuCRw", "stars": 4, "date": "2012-02-21", "text": "I only recently discovered that I do not hate Thai, having never tried it, so this place was right up my alley. It's literally 1 mile away from our home and has a pretty extensive menu. The atmosphere is nothing to write home about, but if you're a fan of pastels and the early 90s, you'll love it here. You may even want to move in. Our service was a little slow, but the friendliness of our servers (yes, multiple) made me feel ok about waiting a little bit for a third beer. Overall, I'd say this gets a thumbs up from me and my other half.", "type": "review", "business_id": "Nz_AasmpsQ8MLSqhCTRVoA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "V80GMVxOodncfnloTVxXyg", "review_id": "CzLPA9cRfz8lHu_LszV73Q", "stars": 4, "date": "2011-11-24", "text": "I ate here on a Sunday afternoon and was impressed by the food quality, very friendly service, and speed of service. On the strength of other Yelps, I had the gravlux with dill mashed potatoes and tomato basil salad. All excellent as others have said. I had broccoli and cole slaw as my other sides. The broccoli was tender without being overcooked and the slaw was a pleasant vinegar-based, not creamy, variety that complemented the rest of the food nicely. The food filled the plate without being overwhelming and I found room for one of the Beaver cookies, actually two large waffle-wafer cookies with a lightly flavored lemon cream between them. The cookies are kept in a chilled pastry case, probably because of the cream filling. A pleasant meal on a hot summer day.", "type": "review", "business_id": "5SS69rC8XWvdlD1OHifEEQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "N7lSh49zQ13sG3Jpa9E6cw", "review_id": "mj1KE6poy83L-rxaWMGS7w", "stars": 4, "date": "2008-09-14", "text": "We stumbled upon this little place in a worn strip mall by accident, but it ended up being a very happy accident. \n\nYes, it is true that the decor will not be gracing the pages of fashion magazines anytime soon, but this is a clean, no-frills kind of place. There is also no point in coming here if you are pressed for time, because it is not fast food by any stretch of the imagination. Most importantly, the food is good. Really good. \n\nThe menus must have changed since other reviewers visited, because there was no Arabic on the menu. Everything is in English. I had the falafel plate and my companion had the lamb shank and rice. Both meals came with a wonderful lentil soup that I have had at Fattoush many times- but this one was so much better. The falafel plate came with falafel of course, a questionable salad, pita that looked homemade, and some of the tastiest hummus i've ever had. It was a huge amount of food, but it was so good that I was compelled to order an extra side of hummus to go with the leftovers. The lamb was apparently very tasty also- i'm not much of a lamb fan, so I didn't try it. The accompanying rice was very tasty though- very complex with many different flavors, but none of them were overwhelming. \n\nAt 7.99 for the falafel and 9.99 for the lamb plate, the prices are more than reasonable, especially when you consider that each entree can easily end up being two meals. \n\nI admit that I am partial to Middle-Eastern food and rarely meet a falafel that I dislike, but this was definitely one of the better examples of the cuisine in the metro Phoenix area. I will definitely be back, and maybe next time i'll try the chicken.", "type": "review", "business_id": "n_YHTTG0QIjZ3055wReefQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "090kdP3SHYtabwcf2PBUkw", "review_id": "pa_qmlMbYpFfU407fGDVDg", "stars": 1, "date": "2011-06-07", "text": "Terrible experience here. They cut up my foot when trying to remove a callus. Also, they told me they used shellac when it was really gelish. Wish I could recommend, but I wouldn't want anyone else to go through the same experience.", "type": "review", "business_id": "w2PHq5wfGuqWmHAruLtZ0A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Br9mpMhkVunsp8Un5GpYWA", "review_id": "IcBdKo0DcyOjAvaKGm9cXQ", "stars": 4, "date": "2012-02-24", "text": "Hipster hangout you can drag the kids along and not feel bad about it.\n\nThe place is setup like a house and the first time you go it is for sure confusing. Do I sit down or go to the counter or bar or what.. Its kind of a free for all. I have been a few times and still feel a little awkward when I walk in. The hot chocolate is great and the egg sandwich tasty. The mac and cheese for evening is also really good. \nThe service is ok, but not overly helpful or friendly.\nThe place is dripping with kids too cool for school, businessmen, and families... so a great spot to hit up if you are in downtown phx", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 4, "useful": 9, "cool": 4}, "user_id": "33vUIil_GCaT92aUaZhRXA", "review_id": "dQfplOHYSQKjCeYxcLaDlg", "stars": 4, "date": "2011-04-08", "text": "I usually throw away those value pack coupon envelopes you get in the mail, but decided to look at them this time & see if I'd use any. I pulled out ones for the dry cleaners, zoo, a burger/hot dog joint & Red Devil. \n\nMost of them were for dine in only but a couple were for delivery as well, so I used the one that was for a 16\" cheese (toppings were an additional $1.25 each) & 20 wings for $21.95. I had looked at their website before ordering & the combo (pepperoni, sausage, onions, mushrooms & green peppers-but we skipped the onions) sounded delish so we got that with the NY mild wings. They don't have their desserts listed on their website so I asked the guy who placed our order & decided on the cannolis (1 for me, 1 for hubs). He said it would be a lil over an hour & to my surprise it arrived in 45 minutes.\n\nThe pizza was good, not Mamma Mia's good, but good! The wings were bomb; crispy, the right amount of sauce & they smelled amazing! The cannolis were pretty good but we didn't really prefer their \"style\". Instead of chocolate chips inside with the filling, the entire cannoli was dipped in chocolate. \n\nTotal with coupon, $3 delivery fee & tip was $47. Not bad at all considering we will each be getting 2 or more meals out of it. We're fans & would definitely order from them again...maybe even dine in eventually!", "type": "review", "business_id": "0gQrhOYWdO0XVZEKtOrvaA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "O0yM2ayRr6R5aYizdb6xxA", "review_id": "xA66YOFvpeYye85ErIgCEw", "stars": 2, "date": "2012-07-10", "text": "I've never had Thai food before so I suppose I have nothing to compare it to, but this restaurant didn't serve very tasty food. Maybe it was just what I ordered. I don't know. Plus it had a funny smell. It wasn't terrible but I'm not going back.", "type": "review", "business_id": "4QtD359vkU7Jq8vP0uQEww"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4gIi4L7e870qFbnRemaoBA", "review_id": "gaKdsWEKlsCdE6w-gdQZSQ", "stars": 4, "date": "2012-01-13", "text": "Make sure to explain to your friends that it's not a chili place. \n\nEvery time I invite someone to check this out they assume its some greasy spoon that serves cowboy beans. It's actually a upscale semi-formal restaurant and......the food is delicious and intelligent.\n\nI've been here for all three meals. The brunch is good but the dinner is what really sings.\n\nIf you like mushrooms, get off here and get your tail to Cowboy Ciao. The Mushroom Pan Fry has something like 10 or 11 different types of mushrooms. I'm not the biggest mushroom fanatic but even I thought it was awesome.\n\nIf you've ever read one of my reviews you know I'm all about a good burger. The Wagyu burger here is freaking phenomenal. Challah bread AND a truffle aoli AND some amazing bacon..........MY GOD!\n\nDefinitely recommended!", "type": "review", "business_id": "FV0BkoGOd3Yu_eJnXY15ZA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "AkJFqLqHHAKY3H5R8p7cPQ", "review_id": "Dgk7tJlJ_UOdu6ppfI0gUQ", "stars": 4, "date": "2011-03-29", "text": "Family business bagel shops are my favorite. I found this place through Groupon and decided to check it out. The name itself intrigued me as Lox means salmon fillet that is cured. I didn't go with salmon, but I got a honey wheat bagel with veggie lite cream cheese. The cream cheese was freshly made with carrots, garlic, and celery. It had a light taste to go with a healthy and hearty sized bagel. My friends got croissants with cheese which tasted delicious as well. The prices are very reasonable here and you can order bagels by the dozen.", "type": "review", "business_id": "3vKhV2ELR2hmwlnoNqYWaA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "09rOSu_0O1T0m9y9Soe39A", "review_id": "nd7kBf-hAUwHLk4Jb0euWA", "stars": 4, "date": "2011-05-06", "text": "LOVE it here. I stay at hotels about 80 nights a year for work, and often go to Phoenix. Gotta say, if it weren't for the \"hood\" neighborhood, I would've given it 5 stars. The restaurant next door, Bobby Q, has rave reviews, so it seems like a convenient place to eat, but that seems to be the only dinner place around. Good thing it's the Residence Inn, with a small kitchenette.\n\nThis is probably the cleanest hotel I've stayed in all year. The dishes and silver wear are very clean and housekeeping keeps it that way daily. I've stayed at places twice the amount of this Residence Inn in Scottsdale and dishes in the kitchenette were filthy. \n\nSmall workout room but you can go to the LA Fitness down the street for free. Oh, they don't skimp on breakfast-waffles, eggs, sausage, yogurt, fresh fruit and hot and cold cereal. \n\nBeds don't look comfy but they are Devine. I had some of my best nights sleep here. It's nice to stay at a place that is more like a home than a hotel.", "type": "review", "business_id": "BO41AXSq4utrICj0uEpn-A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EZ_Qltx0iJyDN--HzLcXQg", "review_id": "lmhiWjhTU7eTmY5H-53VYQ", "stars": 5, "date": "2012-03-10", "text": "Food was really good. Waitstaff were all really friendly and helpful in selecting drinks and entree. Would for sure go back.", "type": "review", "business_id": "UmhTiNOKareQDP7D9aAnKw"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "-txH2zJSBZQHO6RWvoWXuQ", "review_id": "OlVMqrJbFsxLOrBzqtZYDw", "stars": 5, "date": "2008-09-04", "text": "Mostly I love the Rokerij just because I love saying the name. \n\nBut the food is also killer. I had the most amazing chicken, and the sides, which usually I just take for granted as filler food, were sodelicious that they caught my attention in a big way. I also tried my date's steak, and while it was fairly spendy, it sure seemed worth it.\n\nThe feel of the place is great too, with the dark stone walls and coziness without feeling too crowded. We ventured downstairs to look at the bar, and had we been there early enough to snag a couch I wouldn't have wanted to leave.\n\nIt definitely feels like a splurge, or somewhere you'd take a business associate or date that you wanted to wow. It's manages a high end feel, while remaining unmistakably local. I can't say I'd suggest it just for any old night, but it will stay on top of my list for special occasions.", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "b9F4vyffz96nR5Scvfujjw", "review_id": "RmE1ZadEQFUcxwMddBAU-w", "stars": 5, "date": "2011-08-26", "text": "This is a great MMA gym. Instructors are profesional, the facility is clean, and they work well with all experience levels.", "type": "review", "business_id": "QC6UE93iVkVIjs6MphM56g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JMQFTlKzppR7svUQIKCs_g", "review_id": "1BtPDuBzY7_5cIX5k9rlqA", "stars": 5, "date": "2012-02-01", "text": "We have a show quality teacup Yorkie and a 5 Pound Maltese, who has issues, and they handle them beautifully! The owners attitude is all about making sure you are happy and your dogs are too! We were using a place across the street where the owner was all about taking your money and then booking you with who ever was available, even if you had an appointment with a particular groomer! These guys are the best, they CARE, and it's a pleasure to give them our business. Just Go!!!! :-)", "type": "review", "business_id": "8N4SCmREZji5mnVqZDdQJA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "2LCrT_BOJvGV4xi_lmoRcA", "review_id": "gVSKe5I6cpUSHvq9g6RlGA", "stars": 5, "date": "2011-05-02", "text": "I live within walking distance of the Japanese Friendship Garden, so I enjoy it frequently. Once inside, it's hard to believe you're still in Phoenix. That's why I was so happy when Groupon recently offered a half-price membership. I would join in a minute, except they're closed from May to October or so. Half-price membership seems about right.\n\nThe atmosphere is gentle and meditative. I feel safe sitting on a bench and actually meditating here. The koi kind of freak me out. They've been fed so often by visitors that I feel fairly certain they'd eat me if I fell into the pond. Last time I visited, there were baby ducks in the house. So cute and fluffy, and they had no fear of people.", "type": "review", "business_id": "HiTpXu1BNE2DlvjyqpObjw"} +{"votes": {"funny": 6, "useful": 6, "cool": 6}, "user_id": "M6hieO-LbXPG1WBQXjXA1w", "review_id": "EIIwwLearfRcBUaDdzcVkw", "stars": 2, "date": "2008-10-06", "text": "When I walked through the swinging doors around noon on a Sunday, I walked into Hooterville. Think silicone, fake tans, bleached hair and teeth and caked-on makeup. And the men here overdose on testosterone: full of bulk and attitude. Think sideways baseball hats, torn jeans, flip flops and gold. Even at noon on a Sunday, they were on the hunt. \n\nJoining me in alienation was my San-Franciscan friend. We represented the world of natural size and color. To bring ourselves comfort and escape in this fake world surrounding us, we discussed environmental concerns. \n\nI got the Buffalo Chicken sandwich. Commensurate with the theme here, this was the biggest breast I'd ever seen. The sauce was super hot and tasty. The baked beans had a southwestern flare - with crushed pepper. My friend got the chili, which he said was slightly spicy hot but not temperature-hot. \n\nI didn't attempt the bucking broncho, for many reasons, but one of them being that there was nothing on it to hold on to. Too difficult for a delicate northerner like me.", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dv8X5uglDB_foGqju_lJDg", "review_id": "8utC26Ibsuna98Czj0xx6A", "stars": 4, "date": "2011-10-14", "text": "Great atmosphere! Awesome drink specials :)", "type": "review", "business_id": "QCxXYA13PtkD3wec47_r8Q"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "c3yJNjz_K--z4CIpR7yhvQ", "review_id": "2RSMZjSQlukiPMVpudH7vA", "stars": 4, "date": "2011-07-28", "text": "Hard to miss with a Centurion guarding the entrance. \n\nI wished it was nice patio weather. The place was very cozy and a little uncomfortable padded banko seating. If the tables were only several inches higher, it would have been better! \n\nFirst off, we ordered Baked Brie and Raspberry wrapped in puff pastry hors d'oeuvres with a side of grapes. A couple of glasses of light and fruity red Portugal wines paired well. \n\n\"Can I have some lemonade?\", nope, no lemonade. \"How about Sprite?\", sorry, no Sprite. So sad to see the look on cutie pie's face. Even wine bars would have had something for him to drink. \"Okay, water is fine.\" He gloomly said. We promised him an Italian soda next door at Lola's. He cheered up.\n\nKiller pizzas, so I've heard. We decided to order the Mozarella, basil (pesto instead), white truffle oil pizza. The crust is amazingly toasty outside and soft and flaky inside. Good 14\" inches for $12 pie! We added Risotto with manchego cheese/chorizo. It was very, very, very rich! It was so rich, I wanted to reach for some bread to sop it up!\n\nWe were so full and carbo-ed up! We didn't balance out our meals very well. Good thing we took the lightrail downtown. We needed to do a lot of walking after all that eating!\n\nKudos to the chef and the hostess/server, they were absolutely wonderful. \n\nDonec obviam redimus!", "type": "review", "business_id": "e34tIpveepWkpvOuv_boqw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "Akwr-Kqif-NylJ3-EUlnWQ", "review_id": "n_m6asvzIpxloR9uZLLiQA", "stars": 5, "date": "2009-04-13", "text": "There is only one reason why I shouldn't love this pizza.\n\nWaiting an OBSCENE amount of time for a pizza is a pretty big one. If this pizza was not as good I would be angry I think.\n\nI would tell you about it ( HERE)... \n\nbut you know what its that good. I have had pizza around the world ,its not the best..... but this is pretty close to the best you are going to get in this area code. I would love to say don't believe \"the hype\" but yo there is a reason you have to wait sometimes as long as 4+ hours for a pizza on a Saturday night.\n\n Lets really face the reality of that night though. You are gonna want to hang around at other bars drinking with your friends anyway.Its certainly not going to be a cheaper night of entertainment either.. Armed with that information you know what to expect. While there is another place close by that is just as good but not as central.This is worth it just to know what people are talking about.\n\nThis Pizza is wood fired and made with world class ingredients. The thin cust is perfect. \nThe service at least for me was rushed and sorta unplesant. We were literally the last people in there by the time they sat us, so I am not sure if that behavior / treatment is normal. \n\nNot a place to pop in and grab a bite to eat with a small group but if you are REALLY not in rush then this place is one of the best in AZ.", "type": "review", "business_id": "VVeogjZya58oiTxK7qUjAQ"} +{"votes": {"funny": 0, "useful": 4, "cool": 0}, "user_id": "haJXuFgFFNZYYdFF50EJ8w", "review_id": "8LhtnziZX6vE1vChxLnJow", "stars": 5, "date": "2010-04-06", "text": "Cheese Curds! They have been so hard to find in AZ. Like the Jalepeno ones too.\n\nReally good fresh milk. Worth the stop.\n\nBring cash, not credit or debit cards", "type": "review", "business_id": "zjPmQwY5L9CredUqFVttrg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fPHLPrymsyb6WSFFKoMrTQ", "review_id": "-wJMn0NQEqnp-nLnMOqOMA", "stars": 4, "date": "2012-09-16", "text": "Icey iced ice... tasty and refreshing, Rita's delivers. You can't help but smile as you walk in the door, anticipating the tasty goodness that is lined up in front of you. They have simple cream ice, milkshakes, gelati, Italian ices, frozen custard, frozen custard cookies... and on and on. \n\nWe stopped by on a random, warm afternoon after passing the new store and noticing the sign... a few samples later, we were sure that we'd found a winner. My only 'ouch' came when I found out the calories and fat in my Blendini mix. :-/ Glad I shared it! We'll just make Rita's an occasional splurge.\n\nYum... Blendini! We recommend the Vanilla custard with Toffee. :-D \n\nSee ya there!", "type": "review", "business_id": "xNmhVSujLo1kC9cgjOE-sw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "3ArIdn_lcSJdYLQo0a8srw", "review_id": "FqL-yYe1gYKzZXkz1h0irg", "stars": 5, "date": "2012-03-02", "text": "I have lived all over the US, and I have experienced extreme lows and highs with dentists, but this dental group is by far my favorite I have ever been a patient of. I can't say enough good about them, so I won't ramble.... Just love them.", "type": "review", "business_id": "Q6exnM7RmHdNMZqegdrmoA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "xiF7R4Sfyh4CF0vfXdeZkw", "review_id": "G-bplPFfJ2VgIz-Jwa1nTg", "stars": 5, "date": "2012-08-07", "text": "I'm really not the type to want to go out for breakfast, I'd rather save my dining money for lunch or dinner because I figure I can usually make just as good of a breakfast at home. However, there is no way I could match their french toast, it is just outstanding. We have been twice and I ordered that both times. The first time, I told the waitress to put the berry sauce on the side because I usually don't like fruit toppings, they are too sweet and fake tasting. But this sauce is delicious! It is homemade and very natural tasting, I ate every bit of it. We also loved the jalepeno bacon. My kids loved the pigs in a blanket. We had very nice service both times, we will definitely be back!", "type": "review", "business_id": "fDZzCjlxaA4OOmnFO-i0vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "22IWHu_YwKMSEXORQGX8bg", "review_id": "ZSRy-oF6W-3tDtg24Lyybw", "stars": 3, "date": "2012-08-28", "text": "Great ice cream, but still just ice cream. Really enjoyed the salted caramel alongside a scoop of sweet corn. Feel a little silly for driving from Phoenix just for the taste but no complaints.", "type": "review", "business_id": "Bc4DoKgrKCtCuN-0O5He3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Akk8XZQ0U0dt4MDxUjvagg", "review_id": "E-0eZiN9Ry6cva9Y_pN4ww", "stars": 4, "date": "2011-01-05", "text": "Finally tried Pei Wei and overall we were very pleased. I ordered the Spicy Ramen Noodle bowl which was not overly spicy, and tasted good. Others ordered the Orange Chicken, Mongolian Beef, and several appetizers of egg roll, lettuce wraps, and edamame. Everything was good. You can also opt for brown rice instead of white rice for a healthier route. What amused me a lot were the Touch Screen Soda machines that had many varieties carried by Coca-Cola. It was pretty cool!\n\nOverall, good food, good service, okay prices.", "type": "review", "business_id": "PR5KXD_CUs05MGfXJ8CS3Q"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "M9cZwNoSKQDUVwO0R8UwIA", "review_id": "ndsvP1BcnQ_lrCjRtGgiXA", "stars": 4, "date": "2010-01-10", "text": "Yumm yumm yumm! The burgers are fantastic and yummy!\n\nThe service has always been top notch, fast and freindly.\nLove the inside and outside environment. Could do without the TVs with sports playing on them...don't we get enough plugged in entertainment in our lives already?....but I'm probably in the minority.\n\nKid friendly for those well behaved kids of course. :)", "type": "review", "business_id": "FqzgT9Y-Yu7jiWdHnGW-kQ"} +{"votes": {"funny": 3, "useful": 6, "cool": 6}, "user_id": "ZqMS4ElQg-k1tQBC06h7lQ", "review_id": "XeD6j_ItpmuTjas2Z8A1rw", "stars": 4, "date": "2008-09-04", "text": "PBR. Mad Dog 20/20. What??!! I was a witness to someone drinking Milwaukee's Best Light. Damn son. I guess if youre going to do it, do it cheap.\n\nGet there early if you're going on Saturday morning for the game, it fills up quick. All in all, it is was it is. An Ohio bar, watching football, peeps getting sliggity sloppt. Most are still drunk from the night before. Makes for good people watching practice. Make friends with your neighbors when you find a seat. They could be from Ohio and a new person to be \"besties\" with.\n\nNice!! Thanks Mickey's, you rock... and roll.", "type": "review", "business_id": "SjFl_V6BTGkmv4tbub-AVw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "R9d_W_y_2h7eEg-Ie4ub-Q", "review_id": "9hje_tww4fP-j4GZeWmNpA", "stars": 2, "date": "2009-09-04", "text": "US Airways used to be right up there w/Continental.. now they're down there\n\nI didn't even mind the fact that they started charging for their food.. \n\nBut now they're going overboard.. \n\nI didn't want to bring a heavy jacket w/me to Cabo, so I wore a light jacket and I figured the standard blanket they give you during the flight would suffice. I noticed there weren't any blankets on board and when I asked a flight attendant for one he said \".......yea.. for $7\" I almost started laughing cause I thought he was trying to crack a joke. He wasn't. \n\nIntroducing US Airways' \"nap pack\" comes w/crappy blanket, ear plugs, inflatable neck rest , for only $7! Use the money you were previously going to use to purchase your online crappy meal for your standard necessities! \n\nSo I decline.. and they must crank the A/C up ridiculously to tempt you to purchase their stupid nappy pack.. cause the tip of my nose was cold and I just couldn't sleep at all during my flight w hile I was trying cover every surface of my body w/my stretched out light jacket.\n\nAnd you also suck cause you run out of your purchased meals...who doesn't pack enough for the flight? You suck at even saving money for yourselves..", "type": "review", "business_id": "5M7YgorCUTEZkKYNbKDHTA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "588oY8EejEFCr-ym_2TR0Q", "review_id": "ncudV5yVmoT3PWvYorCszA", "stars": 5, "date": "2011-02-23", "text": "Are you kidding me, this place is great. Perfectly sized bread, quality ingredients, cool staff. When I think dream sub, I think italian night club no mayo, and extra peppers. Don't get no betta!", "type": "review", "business_id": "le1IsRLrTq2Xo78RyFpsnw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "BwUeCQcuZcOfHmbps6Wv5g", "review_id": "b9KUO5Mga7k8wAn0iNpyew", "stars": 1, "date": "2011-12-24", "text": "This place is worse than the IRS, at least the IRS admits when they made a mistake. But these arrogant workers will be caught dead before they hear themselves say \"sorry for the inconvenience\" or \"we made a mistake\". They gave me different information on two consecutive visits that I made, then Dorrie, some lady who obviously should not have been working that day because she was coughing phlegm all over my documents, then after she asked me to wait by the counter for 10 minutes while their system updated.\n\n I waited, 1 hour and 30 minutes later I finally went to the information counter and asked for Dorrie... I was told that she had gone to lunch 15 minutes ago and was told to go talk to another lady. She just dismissed me and I went to go talk to the new lady, who was also extremely rude and kept rolling her eyes and interrupting me before I could finish my sentences. Basically i spent total of 3 and a half hours waiting and getting attitude and nothing was resolved because of their mis information and Dorries idiot customer service ethics and the last ladys pride.. not one person resolved anything and they all were too proud to say \"we apologize for the inconvenice\". I recommend this place if you wanna be late to work 2 or more hours and having your mild mannered patience tested to the maximum.", "type": "review", "business_id": "NM2j6Y5NEyAseOi2sKzwGg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "y4JCKsEm0KlwtmHpZhbA4A", "review_id": "9t7Sv30d5f6TAkoE3ofg-Q", "stars": 3, "date": "2006-08-08", "text": "Lunch here is delicious and well worth it. Dinner? Spend your hard-earned money elsewhere. If it's easy-earned money and you don't care to spend then by all means enjoy the authentic atmosphere and above average French food... just don't order the flat iron steak.", "type": "review", "business_id": "GIGI8bJfN6HyPzmEW-QqjA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mqHhdKEdak_A1FBhFNXqA", "review_id": "IdIHBl7zbdP7-yI-YzSciQ", "stars": 5, "date": "2010-04-19", "text": "In terms of Mexican joints this place is the best. With the outdoor atmosphere, tacky decor and authentic food, it just doesn't get any better. The other locations are just as good. The staff is usually pretty cool too, although one time we waited a VERY long time to get served at the Scottsdale location.", "type": "review", "business_id": "bfDQai9X59uWK-XgP0t6rA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "q1VCwOHnlaETDWg91r1rKA", "stars": 2, "date": "2012-05-31", "text": "Yes, I've had better.\n\nThe chai lattes are pretty good, but not worth $4.50 for a large(which was a grande cup size at starbucks). Prices are just the same as Starbucks, if not more. And they have a credit card surcharge for less than $5 spent. I still don't agree with that at any place I go too. I liked the local artwork displayed. But not impressed. If the prices were lower, then I could see coming here more often.", "type": "review", "business_id": "Mb46iSlA4qmTwXf-WrqtQA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "gNF8usOGLdvdJL4aVp8IOQ", "review_id": "tRZ9jSjOkRoIhoLLajKHkg", "stars": 4, "date": "2009-06-18", "text": "Probably like many recent college graduates who enjoys the drink, one of my life goals it to eventually open up a microbrewery. I tend to shy away from the idea of a brewpub since I believe that an establishment should place focus on either its beer or the food. Places that do both tend to have mediocre beer and food or excellent beer but bad food. Four Peaks somehow passes the test on both their food and the beer.\n\nFirst off, parking sucks and the place gets busy. I went on a Wednesday evening and it was packed. But with Happy Hour, what do you expect? Three dollar pints allowed me to try a bunch of their beers. My favorites included Kilt Lifter, Hop Knot IPA and the Raj IPA. They even held a delicious cask ale, style of holding beer that (thankfully) seems to be making its way into breweries and bars. \n\nThe food included fairly typical brewpub fare. Burgers, wings, sandwiches etc. All of our items were of fairly decent quality. Or perhaps I was a bit too drunk to really notice the awful nature of the food. But fuck it, that beer was good. Hands down the best brews I've had at a brewpub.", "type": "review", "business_id": "JokKtdXU7zXHcr20Lrk29A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "cJ_1IwpAn8TWdgi5vo-KUQ", "stars": 5, "date": "2011-09-28", "text": "One of the things I love about my neighborhood is that Cornish Pasty is w/in walking distance.\n\nEvery pasty Ive had here is awesome. My personal faves include the shepherds pie, the chicken pot pie, and the thanksgiving pasty.\n\nYes its tiny and loud, but it adds to the charm. Also, the smell that you smell right when you walk in the door= heaven.\n\nWe eat in and get to go. Tip for to go: have a beer or a cider w/ your wait.", "type": "review", "business_id": "WNy1uzcmm_UHmTyR--o5IA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Xvw4kRnBNvOT4ZrpJHKifA", "review_id": "l-CJ8jVBvdSJOWLqV3nYvw", "stars": 5, "date": "2012-01-11", "text": "An organized & clean store, a well educated & nice staff, a great selection of baby/kid products! I will never go to a babies r us again. Thank you Chandler buybuybaby!", "type": "review", "business_id": "NcJ4Ug6EX4t_WBh3E0mXhA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XM6M-WWbCAeLy83jrABkcA", "review_id": "d2Sd9AewFzjCEpI_DeMndw", "stars": 4, "date": "2010-06-30", "text": "Perfect for a Quick lunch. And I mean seriously quick. Like ninja light speed fast. \n\nUnder two minutes consistently from order to table. How can you beat that! One time they clock-in at 1min 45sec for a table of five. \n\nMy favorites are the House Special Chicken, the Orange chicken and the Prawns. can't go wrong and you will leave stuffed and satisfied.", "type": "review", "business_id": "-3WVw1TNQbPBzaKCaQQ1AQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_vTyqTbfhZ-SlQVxz9HH8A", "review_id": "d_cgE4KjLS7wblV3aMw7kw", "stars": 3, "date": "2007-12-24", "text": "I know I might some flack for only giving this place 3 stars, but really....it's no different than Chang's. If I could give half stars, I would give it a 3.5. Why? Because I think it's better than Chang's. It's exactly the same menu (just not as diverse), but cheaper. If you are at this location, try Tott's instead. I bet you'll start going there more often than here.", "type": "review", "business_id": "ykfL94V9KLT86s_tTzxwZQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "b927p9pWxM9EYoNr_6PxYQ", "review_id": "WFZ86IgC5vz_D0L43QKzHA", "stars": 4, "date": "2011-10-19", "text": "MAN BUZZ! The breakfast buzz is the ultimate meat head drink. I mean espresso protein and smoothie all in one? Can't beat it! \n\nI have had many things on the menu here and all good. The bowls are awesome the breakfast club is out of this world and the veggie wrap add chicken(come on gotta do it!) is also awesome. Great drink selection, if you like Arnold Palmers ask for the Tiger Woods the next time you go in. E\n\nAtmosphere is super laid back with a great stay. This is the only thing to warn you about it can take some time if you don't call ahead but its worth it!", "type": "review", "business_id": "-4A5xmN21zi_TXnUESauUQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bADkBuUDonedhUd5KB598g", "review_id": "PNsEemFegniUx1guONCxjA", "stars": 5, "date": "2011-02-11", "text": "Place is awsome. Got the beef cheesesteak and everything was great. The bread was possibly the best I have ever had. Price was pretty good. Just over 9 bucks for a whole sammich and soda. While waiting I walked around and I plan on going back for some shopping. Lots of pasta, sauces and just about anything you could want for Italian food. 5 stars all the way.", "type": "review", "business_id": "z3yFuLVrmH-3RJruPEMYKw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "RCDhIFQlSth-gQkojdN13w", "review_id": "8tE5X1kaUrZRLlWYA7KM4g", "stars": 5, "date": "2012-10-11", "text": "Grew up in San Antonio and Austin. Have traveled extensively and sampled BBQ all over the country. The term Texas-style means beef, first. Period. And good smoke, and that ain't mesquite. Oak is king. These guys have changed the face of Phoenician BBQ forever. It's a shame that the Scottsdale location was touched by ... well, Scottsdale. Friggin morons. If you have not been here, you need to go down to 24th and E. Roeser and try it. Hands down the best Q in the area, including Cave Creek. The guys are FROM Texas and they know the whats, wheres and hows of Bar-B-Que. \n\nAnd for those \"the meal in a carton on butcher paper\" snobs who think that such is declasse, please, do me a favor... Head on down to Austin or, better yet, Lockhart. Stand at the front of the line at Stubbs or Black's or Kruez Market and loudly proclaim your thoughts as a BBQ aficionado. Just let me know when you are heading down so I can hang out and watch the ensuing festivities. Freud said it best: BBQ and being horrifically anally-retentive is ALL about your unfulfilled dreams of your Auntie Ma. Or, shut up and grow up ya infantile gomers...", "type": "review", "business_id": "ytpmoIty7loFB8kRYRtJHw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "y-U_S1LUaCknqdi9PG2ftg", "review_id": "KskfUgulzHQUFkh6gA5lNg", "stars": 3, "date": "2010-07-01", "text": "I've been here a grand total of three times, and I probably won't be returning any time soon. It's not that the food is flat out bad, per se, it's just that there are many better options nearby. The first time I went on a recommendation, and the food was... OK. The 2nd time I went the food was still only... OK. The third time... well, you get the picture.\n\nThe first obvious knock against Rosita's Place is the chips and salsa. They're not bad, but they're not complimentary. Given all the competition which offer free chips and salsa, you'd think these would have to be pretty darn special, but they're not. Good, but not outstanding.\n\nSecondly, the rice and beans are just OK (that descriptor keeps coming up in this review). The chicken enchiladas were fresh, but lacked any real flavor or spice. The machaca, which is supposed to be one of their specialties, was soggy... a BIG no-no for a dish that is a specialty in this region.\n\nSo, honestly, while I wouldn't discourage anyone from going here, I'm not sure what some of the hype is about, especially when Rito's, Tacos De Juarez, and Comedor Guadalajara aren't that far away.", "type": "review", "business_id": "hWhVP-28LYP3llaMlAJ_JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "UgzVB_RRQEg0kZ3IibRuHA", "review_id": "psMnrkshrBBbqk-2SxX5og", "stars": 4, "date": "2010-02-14", "text": "The staff is really helpful. I arrived without credit card due to a travel mishap and they were great about providing assistance to get me to a bank to help clear things up. Their bell staff is friendly and knowledgable. They can and will get you anywhere in town. \n\nRoom was okay. Clean, well furnished and updated. I had a window overlooking the courtyard and I would recommend avoiding that. It can get a little loud at night. \n\nBanquet food was good. Not great, but good and plentiful. Good variety of dishes for everyone from salads and sandwiches to hot dishes. A few of the items were a little salty for my taste but with a buffet style service, if something didn't suit, you could replace it with something else. The break service was astonishing--they really go all out! \n\nIf you are visiting during the right weather, do not miss the pool area. It's fantastic!", "type": "review", "business_id": "I5ypI3aYbbTL8dAjnI3PDw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "GSZebDbIf0h_2MFv8xBGrw", "review_id": "wqJR3cK83U2vlLACC6ow0Q", "stars": 4, "date": "2011-04-15", "text": "I have to admit, the reason I gave this place 4 stars instead of 3 is a) I want it to stay in business (which can be hard on Mill these days!) and b) It's one of the few places on Mill where you can bring your child without feeling like you may get heckled. ;) lol Now, I definately enjoy a night out without the babes too, but this is a place I go for happy hour with my husband and daughter. The beer/wine is good, the food is good (I like the southwestern egg roll apps), the price is good, the service is good, and the atmosphere is nice (thought I was going to say good, huh?). We love to sit on the patio and people watch.", "type": "review", "business_id": "TzImzfIWkZTnetKl2a4-SQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "Cp-PV8rsypbO-xBrQ6KmQg", "review_id": "m7LUrlDnxNkU-_qkum7ocw", "stars": 3, "date": "2008-09-25", "text": "Similar to Los Betos - Fiesta is decent inexpensive mexican food. The staff is nice and accommodating. I did have a pretty hilarious conversation with the girl at the counter though... I was trying to order my burrito without onions, and she kept saying \"okay\" and \"yes\" and nodding at everything I said. I would ask her questions and she would say \"yes\" and press buttons on the register. It took me a few minutes to realize she had absolutely no idea what I was saying. \n\nAside from that, my burrito wasn't bad... nothing special though. The beans were from a can, the guacamole wasn't fresh (I doubt anything was), everything is cooked in or made of lard, their chips are flavorless and kinda stale, and they are seriously lacking any sort of salsa. They just have the typical generic nameless hot sauce found in these joints. \n\nAs I said - Los Betos... but cleaner and a little better maybe. It's just a place for convenient late-night munchies.", "type": "review", "business_id": "h7hr0v3E1ulU2sXNItD5UQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XeoAojoz5johV2MQ5ngNig", "review_id": "3NYw2YxTge_e5IX6pAskNQ", "stars": 4, "date": "2010-12-03", "text": "Was here awhile back and Sharon H's review will sum it for atmosphere but i will try and cover my feelings on the taste.\n\nThe bruchetta is great.\n\nYeah really that simple. I haven't tried much but bruchetta here but haven't really been disappointed either. Even the ones that \"haven't been a fan of\" of the ones i tried when i have mixed and matched when getting to select I still would order over bruchetta at most places as they are still very good. Did try a pizza once and wasn't amazed but nothing stood out (it's been awhile since that). The bruchetta however comes to mind every time i hear the word.\n\nOh and the service is very friendly and attentive. One night I was in and they had just finished a major catering event and it had said on the front door that the kitchen was going to be slow until about the time we arrived. Yet when we ordered and it took a bit to get the food (barely a delay in my book and if I hadn't been apologized to by the waiter probably wouldn't have know it was longer than normal) we got a nice little discount.", "type": "review", "business_id": "YQvg0JCGRFUkb6reMMf3Iw"} +{"votes": {"funny": 8, "useful": 5, "cool": 4}, "user_id": "o33IBagNFxdJhIrRTl691Q", "review_id": "kWilrefFxn6DLRqyT8-uPA", "stars": 5, "date": "2009-02-19", "text": "Mmm dirty hipster bars. Let me count the ways in which I love you.\n\nYou are cheap (we had $2 Stellas)\nYou are interesting (local art on the walls that I'm told changes regularly)\nYou are full of pretension (people watching is always worth the price of admission)\nYou are friendly (like minded souls can smell each other out)\n\nIf you are in the Roosevelt district, I highly recommend stopping in for happy hour. Its cheap and hipstery. Both words have been used to describe me, so I am naturally predisposed to this place.", "type": "review", "business_id": "zmFc8M-hS4uuyY0hklIpoQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "P8KlUtWEu-b6ZwM7XjuxBg", "review_id": "aqmUrTEgmyT9keQd7qGZsw", "stars": 4, "date": "2011-10-14", "text": "The new Esplanade is fantastic!\n\nFood exceeded my (admittedly low) expectations. Everything packed a lot of flavor, and there was more thought and care put into it than I would normally expect from a restaurant that sources its food from a national distributor. For example, the breadstick that came with the Chicken Mac 'n Cheese was a soft pretzel. Cute, no? The Mac 'n Cheese and Chicken Fajita Wrap were on par with the best meals I've had at a TGI Fridays or Applebys. I mean that in the best way possible... This is simple whitebread American dining, but it's done well. Price points for food and alcohol were competitive with those chains as well... Most of the meals clocked in under $10, though soda was almost $4. \n\nService was scary good. Push a button, BOOM! they're there at your side. Our drinks were refreshed before we could finish them. Super friendly waitress. Their efficiency bordered on supernatural. I mean, it's not like they can just look out over a one-room restaurant to see what's going on with their section of tables. So mad kudos to everyone who works there. \n\nThere are two kinds of theaters, and you have to go to the AMC website to know which one your show is playing in. Note that the high-end theaters are 21+. Even the basic level had extraordinarily comfortable seating. Seats are arranged there mostly in groups of four. The enormous comfy chairs are worth the slightly higher ticket price. \n\nIf you go during the day, don't pay the extra $1 to order your tickets from AMC's site. Otherwise, it's worth it: The seats are assigned.\n\nMy only complaint is that the popcorn only comes in a small bag. Refills are unlimited, and you only need to push a button to get more, but it's difficult to share a bag with a group of friends without calling for more every five minutes.", "type": "review", "business_id": "EmlgWjs1ZzZEpDjZCSPLmw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "79JSvNNh7qbNqdCYQRgAww", "review_id": "RS5693YyrmMzDvrempbizQ", "stars": 4, "date": "2009-09-01", "text": "Seriously, better than ANY other gyro place I have ever been. The meat is the real stuff, not frozen strips heated up. pitas are hot and slightly toasted. HERE'S THE UNUSUAL PART : Absolutely spectacular fries!\n\nIf you are like me and hate soggy limp fries, you don't have to worry at JT's. Perfectly crispy on the outside, soft on the inside - the way fries are supposed to be. I usually have to order my fries 'well done' and at other places they are STILL soggy. Not here.\n\nI have taken two Fry snobs here to see what they thought and they both gave them rave reviews!", "type": "review", "business_id": "5hFnyiEboorArk7cbCYeXQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FQFsuPE8C3lppg7sZoRFRg", "review_id": "xu9YvBL07OX0qYm2nIohXg", "stars": 2, "date": "2011-10-26", "text": "I thought I was really in for one of the best burgers of my life due to my fellow Yelpers' reviews but was sort of disappointed. I did like the fries in the shopping cart, that was pretty creative, but they weren't anything special. Same way I felt about the Delux burger. The meat was dry and the condiments were lacking which made it worse. I thiknk the bun was the best part. I did do a cool beer flight which was nice. The atmosphere is pretty neat here but I probably won't visit again if I'm in the area.", "type": "review", "business_id": "OFBJtqWGSx6n6CchtVmoRw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "KBFLeo1pwwmkROhnYAbCGg", "review_id": "DmXM2yYnhyPCYoRs1oMeww", "stars": 5, "date": "2010-12-09", "text": "I try and eat here regularly. Hummus is great. Very personable staff. And the atmosphere is awesome. Look forward to the next time!", "type": "review", "business_id": "FjQWjXvFCdrgdU3Rgi3b3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OW_Eh1DsEnlTWALBC1xCHw", "review_id": "K_bidLG2u6kLYQHobfJzwg", "stars": 4, "date": "2012-09-09", "text": "This place has a great location. Hidden away in Old Town next to the art park of Scottsdale. Perfect place to take an out of towner.\n\nI suggest sitting outside. They have misters, of course, and umbrellas. Inside is just a little too cramped for me. \n\nPortions are huge! Not complaining. You are def. getting your moneys worth. \n\nOn weekends make sure to come early- this place gets packed out! \n\noverall, a great breakfast/brunch place and good place to get rid of your hangover! ...plus being a Georgia girl- PBR tall boys woop woop", "type": "review", "business_id": "V6BYjHM9SnXscfkln3hCdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yAeo2D5NdtGuGG2o1M1aGQ", "review_id": "DRGM2aBClukcUqlOYVYaYQ", "stars": 5, "date": "2011-05-22", "text": "I really love this gym. It is so nice and well maintained. There is always plenty of towels to grab before a workout. The childcare is excellent and has the security part down. When you sign up as a member you and your child are given assigned wristbands to use during visits. The staff have always been good about ensuring the numbers on them match prior to releasing my child to me. You can even tune into the cameras to watch your child on the tv's that are on the cardio equipment. Childcare is also open 7 days a week and doesnt close for lunch like most gyms. There is also plenty of group classes throughout the day if you are into Zumba or cycling,etc. I recommend this gym to anyone especially parents needing quality childcare.", "type": "review", "business_id": "Y3cFaIPFSMOgOf7zsADMxQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kpdpcrEauxA2bhg-f05W-w", "review_id": "DfuGHKBgN4lb1V7-EqEiiw", "stars": 4, "date": "2010-06-04", "text": "Good place and food I'd very good for bar food. A bit pricey but good atmosphere. Great service.", "type": "review", "business_id": "NlxvN9wUw14qIS6ledk15Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "n2BtqUzIsQv7Vw9pJc3Xow", "review_id": "1l02GfpnOu59kriBnLdswg", "stars": 4, "date": "2011-08-24", "text": "Could use a remodeling job, but the food is really good for the area. The wait staff is very attentive, and the free chips and hot sauce for dipping, are REALLY GOOD. The fajitas are my usual. Worth the visit and you'll leave satisfied.", "type": "review", "business_id": "69t2S1u7Rf6qM_c14b42xQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Ki71iAFTxsPPQfX430c99Q", "review_id": "_CZd4-qq4hg9K6LWSKRbfw", "stars": 5, "date": "2012-07-11", "text": "Been dying to come here ever since I saw this place on Unique Eats. Very laid back gastropub with a friendly, funny/entertaining staff! We grabbed drinks at the bar first - Moe'scow Mule (ginger beer, cucumber, lime, rocks) & the Persian (Absolut Wild Tea vodka, St. Germain elderflower liqueur, sweet & sour, Persian cucumber juice, lemon peel, rocks) which were both good, not too strong, but a good refreshing drink.\n\nAppetizers:\n1) Pork Belly Pastrami (rye spaetzle, Brussels sprout sauerkraut)\n2) The Original Chopped Salad\nPlease order both. They were both delicious! I was in love with the salad especially.\n\nEntrees:\n1) Lamb Burger (Serbian lepinja roll, pickled cucumber-onion, tzatziki, Kennebec French fries & house made ketchup) I tend to be very picky about my lamb... Actually I'm not reallly a fan of it/the particular taste and smell lamb has. Why I ordered this, I don't know, but I can tell you that I liked it. The taste/odor of lamb wasn't overwhelming and it was juicy.\n2) Pan Seared Scallops (Hampshire bacon, roasted corn grits, wilted snow pea greens & Red Rock cola gastrique)\n3) Amaro Meatloaf (Montenegro Amaro Italian liqueur, pork, beef, parsnip meatloaf, smashed Yukon gold potatoes, roasted zucchini, veal demi-glace): the server described it as very meaty and meaty it was! Usually meatloaf is fluffed up with a lot of bread crumbs, but this one was mainly just meat. The mashed potatoes were very good as well.", "type": "review", "business_id": "MuIXnv7Oq7X3-4aEsp9dDA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "VBEbhE0ISjg6xowGNiGmgQ", "review_id": "U6PxaM9UPfde5NyUIf1giA", "stars": 4, "date": "2007-08-02", "text": "What a sandwich! Not a lot of frills, and the sides are underwhelming, but if you just want a really good toasted sandwich for lunch...Sticklers will hit the spot. \n\nAnd it's downright cheap!\n\nThe only reason this place doesn't get 5 stars, is because the service was a little course, and the place was REALLY busy without a lot of seating space. Plus, it's only open 'till 4 PM! And not at all on weekends! DOWNTOWN RESTARANTS THAT ARE ONLY OPEN FOR LUNCH ON WEEKDAYS DRIVE ME CRAZY!!!!!!!!\n\nCome to think of it, the fact that I was willing to give it 4 stars despite all that is a testament to how awesome their sandwiches are., because there aren't many other good things to say about it.", "type": "review", "business_id": "xWKtOLuIOVGZprcpGiqpQA"} +{"votes": {"funny": 2, "useful": 5, "cool": 1}, "user_id": "8fTTvS499XCz4oP49kxq8A", "review_id": "MzXtZUWQIAdPRC_21FbjFw", "stars": 1, "date": "2012-06-12", "text": "Maybe their dogs are better, but breakfast sandwiches at Nathan's are disgusting! The English muffin was spongy, the eggs greasy, the bacon undercooked... And all premade and wrapped ready to melt together into mush with the cheese. Yuck!!!", "type": "review", "business_id": "kMxYp2GZL5ic6b05gPP57Q"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "5Hn3cmf16gCaZYCrXD8nEA", "review_id": "Y3PfzEl9I3NbqO43zzpV8g", "stars": 5, "date": "2011-07-02", "text": "Do Taco Jedis work at Senor Taco? \n\nYes. Yes they do.\n\nIs the force of making killer fast Mexican food strong with these Jedis? \n\nOh hell yeah!\n\nTry the shredded beef tacos in the hard shells. When they ask you if you want hot sauce, say 'si' and drizzle it mightily onto the tacos. Piled cheese, beef, lettuce, tomatoes all stuffed into an authentic-style taco shell - it doesn't get any better than this. Just make sure you put a helmet on because it's crazy good.\n\nIf you like spicy, no-nonsense burritos, go with the Carne Asada Burrito (Red Chile).\n\nIf you like the whole meal, go with the Carne Asada or Pollo Asado burrito combo plates. The plate comes with flour tortillas, beans and rice, guacamole and salsa fresca. You make your own burritos. This is just good eatin'. Take it home, crack open a good Hefeweizen, and you are golden.\n\nAnd lastly, from the sage words of my wife: \"The shrimp tacos and burritos are certified gourmet meals!\" Do I stutter? Nope.\n\nWhile Senor Taco is technically 'fast food' it does take some time to prepare. If you do drive-thru don't get all road ragey if it takes longer than it does at Taco Bell. There is a price to pay to make good food and that price is TIME. This is not a worldwide chain that spends more on advertising and earning your business by putting cute little dogs on plastic mugs. Senor Taco is not that type of place. A little wait is very much worth it.\n\nI realize that appearance of the location irks some reviewers. Yes, it is in a strip mall. Yes it is 100-150 feet away from a gas station slash AM/PM mini market. I get that. But this is not Sanctuary. This is not Kai. This is not Deseo. When one reviewer (and I use the word 'reviewer' loosely here) hilariously claims to have walked in, used his Superman vision to supposedly spot a family of offending microbes and (without trying the food) proceeded to sprint out because he was frightened of all the imagined cooties ... well... I just have to laugh. That's not a review, it's a drive-by, and reviewers like this are probably happier with Hometown Buffet or Luby's Cafeteria. And that's too bad because this is excellent fast food.\n\nI've eaten here maybe 15-20 times and my wife has ordered the fish taco plate a number of times and neither of us has ever gotten sick. The people at Senor Taco are nice, the food pleasantly surprises and your expectation of fast Mexican food will be forever changed for the better. I can't recommend highly enough.", "type": "review", "business_id": "L8STRioAgDx-_FRFuuUU2Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "4dnDsoHuxUtzhaumxbpR5w", "review_id": "D_v6nEJ7qqxdxpl8YAJr3w", "stars": 2, "date": "2008-01-08", "text": "This store is too busy. Don't get me wrong, I love my Mac more than anything but the service at this store is god-awful. Luckily before purchasing my Mac I researched until I knew exactly what I wanted. I seemed to know more than the associate that helped me! Purchasing it was more of an awkward affair - I couldn't wait to get out of there. \n\nAlso, it's always almost impossible to get into the Genius Bar. My iPod malfunctioned sometime earlier this year and after waiting in the store for 45 minutes to be seen, I was only informed that the damages were more in depth than they thought and I would need to schedule an appointment. It's just an iPod, people! The experience itself was more than frustrating. I stick with Amazon on this one.", "type": "review", "business_id": "l5vzFaqSjvxZiRn0MJeKkg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "b8amFHFX0bHs0wPxhc5q9A", "review_id": "j42xCDV5IEQVXsK2R60u1w", "stars": 5, "date": "2011-09-03", "text": "Stopped in looking for some break from the heat after a couple hours shopping. They have a happy hour menu that we tried several dishes from and all were very good. Menu also has a good selection of alcoholic drinks nut we stuck to H2O hydration instead. Staff and management were very attentive. Would definitely recommend.", "type": "review", "business_id": "UtUXhKh7vOVvWJF48IzJvQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "sGioMpXmP0HS4t1DKr3eBw", "review_id": "Dx_ytdkd7sIEQGsWg_R_qw", "stars": 5, "date": "2009-03-09", "text": "I've been Dr. Castilla's office for 7 years. Her office has relocated and her practice has grown over the years and for good reason. She is a Dr. that treats you as a person and takes her time to honestly answer your questions. She makes eye contact with you and I couldn't ask for anything more. Just remember, it is a large practice and the staff is sometimes questionable. But, she's worth the wait! \nNow that we've relocated, I hate to give up Dr. Castilla. She's irreplaceable!", "type": "review", "business_id": "OHFdbNVrnngg3u_Xn5nYfA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ie38wJhGTHqb3gx9DRuGug", "review_id": "pcHoakXW7WFrWKkRS5ai7A", "stars": 4, "date": "2011-05-09", "text": "Absolutely LOVE the ambiance - very romantic with the brick and stone and walls of wine. The fireplace and comfy seating make it very intimate. In my opinion, the best time to come here is for brunch. Yes, even on a Sunday nursing a hangover, the food, drink and decor can't be beat. Very reasonably priced mimosas and bloody's as well as some of the best breakfast items you could ask. My fave is the eggs benedict with thier Mexican twist - the carne adovada is also amazing and very satisfying. No skimping on the meat here, and it's not drowning in sauce - I have yet to finish a full plate of anything. Thier potatoes even get my mouth watering. \n\nService was great the last time we went, but the first time we had to go up to the bar to remind the gal we were there. After that she was more than attentive and the food more than made up for it. I could linger here for hours and get in some serious trouble! \n\nHave not been to the downstairs area or had any other meal here, but can't wait to go back!!!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3eit3w0zDbb-z57c9P60vg", "review_id": "AMMkQQx3BbeW1xcr5iAjSw", "stars": 4, "date": "2011-10-21", "text": "great, family owned place that feels like the kind of italian joint that is made with love. \n\nFood options are very good with traditional italian dishes and unique entrees that can't be found elsewhere.", "type": "review", "business_id": "fPExBO1aXA5c4uwlHFyx2Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "I4GAIZhlwLkGXa9PdQ18rA", "review_id": "9AV6pIWLjp_Zj8fMvhC9BA", "stars": 5, "date": "2012-06-26", "text": "there is none better. This taco shop is off the beaten path hidden and mixed in next to a smoke shop and behind a circle k. Parking can be at a premium but the payoff is the food. great friendly service, low key on the inside and flavors and textures that rock your socks off!! I mean really. My favorite taco shop in the valley, or more to the point prob. one of the best in the west! the burros are as think as a mans arm, the tacos are soooo good. i especially like the chorizo, the lingua is good, the carne is excellent. have a cane sugar coke in a bottle and find a seat, inside or out you will savor the flavors and be sure to use the sides of grilled peppers and onions, they make the meal for me. now where to go for lunch ?", "type": "review", "business_id": "wN_wAXWg8W94v04eqijy6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FmwWPEQMcxCGI5K1yqAXaA", "review_id": "Hix_CyB5h5K24mCsv8D1BA", "stars": 5, "date": "2011-11-12", "text": "Such strange combinations of flavors, yet they taste so good. We've been here three or four times and are never disappointed.", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cH1lLTHReO6uDTif9bfOBA", "review_id": "IeA-iz-AiYSn1-7heUkpNw", "stars": 3, "date": "2009-03-15", "text": "Very cute, pretty good sandwich and coffee. This is a pretty good place to stop in between shopping sprees. They have really good/healthy sandwiches and good coffee drinks. \n\n*Service = really fast and nice\n*Food = good and healthy\n*Atmosphere = relaxing and cute\n*Brownie = yummy :)", "type": "review", "business_id": "TWeA9VoP4hBSJtk3uHTEzg"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "ysBQMZiuZ7VSu_YAh-lE0Q", "review_id": "8rte6c7Dl0rI0duzJ7n_eQ", "stars": 4, "date": "2012-12-05", "text": "I'm glad that Cafe Rio Mexican Grill opened up in Town and Country. We have been to Cafe Rio a couple of times now. On Tuesday they have tacos for $1.50. Cafe Rio is now my favorite place for tacos. The beef and pork tacos are the best. If you are looking for a good taco you should check out Cafe Rio.", "type": "review", "business_id": "cQZcWeIDKEF-7nWU3gJMUw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "pefVcILrG0JCD6YeS37s6Q", "review_id": "Nck38RkrIA5NQt_VvrKpzw", "stars": 5, "date": "2011-01-03", "text": "Good reviews are easy to write. Stop reading this and just go eat there! \n\nOK, well I have visited this place for years now and don't go anywhere else if I am in this area. \n\nI like the Chef's, they are friendly and quick. They speak pretty good Spanish to me and but I don't dare try to respond in Japanese, ha ha. \n\nThe value is phenomenal, where can two people get miso soup, salad, beans, tea, ice cream and sushi rolls all for under $20? \n\nI've tried the same at Say Sushi in my hometown of Maricopa and can't do it for under $40 or more for two. \n\nAll you can eat is available but I find that ordering individually is more economical. \n\nGreat atmosphere for a quick lunch or a large party for dinner. \n\nThe waitresses are Asian and I find that suitable for the restaurant. Some reviews on here complain about them. I don't have any issue with them they have always treated me nice and done their job well. \n\nI will keep coming back.", "type": "review", "business_id": "rr13jM6SUmfPPPGHHMHCgQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zoXnswGnM7ZJ0pGNZ96CSQ", "review_id": "Z9dFyPbavhJJHFpR7gKEFA", "stars": 5, "date": "2012-08-11", "text": "Thank you Jen & Mike for making what I expected to be a hard decision so easy! My boyfriend and I will do all of our future shopping at this location! Whatever you need here ask for them, Jen is the store manager and Mike was more than amazing! They told us that not many people knew about this location and I promised I would change that! Make sure to post your awesome experience next! I love my ring!!!!", "type": "review", "business_id": "fdpkvInTuPyct43snlBG-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-ezIxSw-wSBg7cNwjjb3cg", "review_id": "HS3ZFH2G_5_-MnJjPCYqsw", "stars": 4, "date": "2011-10-05", "text": "Mmmmmm...why did I wait so long to try this???? Unbelievable pizza!!!!!!!!!! I would give 5 stars, bjt the service was...well, not great. Its ok, we all have off days. We'll be back!!!!", "type": "review", "business_id": "8lKiCgPn_eonn5CNsffabw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dgNeLSvcN_4llzZ-m-9cgA", "review_id": "1LTWWPmVaY9AZemEjNlqHA", "stars": 4, "date": "2012-06-25", "text": "I would give this one 5 stars if it weren't for the terrible hostess that made us feel so incredibly uncomfortable!!! We had friends in town and they were dying to try it out. Love the restaurant concept and the food. I wish I could eat it every day!! \n\nPros: \nchicken - crispy, incredibly seasoned\nwaffles - thin and the perfect crunch!\nred kool aid 'drank' - just like it was when you were a kid!\nmac 'n cheese - creamy and delish!\nthe price!!\n\nCons: \nhostess was rude\nbathroom was a lil stinky/dirty... sadface\n\nCan't wait to take more out of towners to this place!", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f01B5tRtqf3k6ak1pPSAWw", "review_id": "TlwQi8xKU0062Zdzq-Pt6Q", "stars": 5, "date": "2011-11-29", "text": "Best calamari in town, and awesome service. Tokyo glow is a great drink, super refreshing.", "type": "review", "business_id": "xs1LHeJy78u-7taSEnQ2Yw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "VGXYc_r-jDjyhqhlWNs91Q", "review_id": "DhpS2EFNVXpUnrsNFF2X9Q", "stars": 5, "date": "2011-08-10", "text": "Yes, it's pricey, so I got a membership. Yes, the membership is pricey - but if you go frequently (and you'll want to with the hot summer months) you'll get your money's worth and then some. The place is big enough that you can do different exhibits for each trip. Great place to take the grandparents to watch the kids in their element, too!", "type": "review", "business_id": "FCJHirFzEtj4M1VcuaKieg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LZAE5d9vjQgRlQhBbVFWUA", "review_id": "PPKxod62hSbSuwm6XJv1vg", "stars": 2, "date": "2012-05-25", "text": "Love the coffee not thrilled about my service. Of the 4-3 times I have been in the barista has never been behind the counter ready to serve me. Every time that I have walked in they follow me off the patio where they have been smoking. I know that you are entitled to a break but, sitting out chit chatting with your friends smoking is not what you get paid for. Either I have bad timing coming in when they are on break or the kids there are huge slackers.", "type": "review", "business_id": "17AQhJKGRA3YLeN0pB64cg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aIAjAU-6NH583EkQ6E9KRw", "review_id": "EJ2VX9wyvqlc8MG_4ng2qQ", "stars": 4, "date": "2011-09-30", "text": "In the interest of full disclosure the only thing I every really go here for is the lunch buffet but wow, what a great buffet! I believe the buffet itself is about $10 and for that you get a wide range of vegetarian items and as with other items on the buffet most of those get changed out over time so you get a rotation of various dishes as you come back. They also have hummus and baba ghanoush (like hummus but made with eggplant instead of chickpeas). There is generally at least one dish with red meat (today it was a tomato based stew with eggplant and either beef or lamb) and usually two dishes with chicken.\n\nI generally get iced tea to go with the meal and one thing to note, they do not serve alcohol so if you want to go someplace where you can also have a drink or two, this would not be a good place to go but if you just want a place with really good Middle Eastern food (the owners told me it is really Lebanese cooking but I'm going to just generalize and say for most of us, when you try it, you will think Middle Eastern). Of course, you can walk a block or two to 4 peaks brewery, in the same area, and have a drink or two before or after you your meal. \n\nOne really nice thing about this place it is right off the Apache stop on the light rail and right across the road (same side of the street) is Pita Jungle so a wide range of good food options right off that light rail stop.\n\nBottom line, I've never had anyone I've taken here NOT like it and everyone who has gone has wanted to go back again. I like it for lunch during the workday because it is quick and you have a wide variety of regularly changed out tasty food options, so I recommend you give it a try if you have the time. :-)", "type": "review", "business_id": "yktWUtKBja_Lzk3wwR6RFA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "iBI6tuNFT6we5zTBqC7kcA", "review_id": "VPnkCBxu3DujXF8fiAveAA", "stars": 4, "date": "2011-02-17", "text": "I went to this place the night before my birthday, after making 3 u-turns and k-turn...after reading all the good reviews about this place, i expected to see a lighted up sign at the least to make the average driver realize where to turn...other than that it was great food, looks can be deceiving, looks like a run-down cafeteria but the food was amazing, the bbq beef brisket were tender and melt in your mouth, the pork ribs was delicious, the family size cole slaw was ridiculously small, i thought i was in france ordering es cargo.. but overall good food", "type": "review", "business_id": "asebFFgabg_lfoNpGJHZlQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "YL8SKv-pwx-Wj9cwGYrn3g", "review_id": "Fl_ZfBCUkUsuiBQgaQUeXQ", "stars": 4, "date": "2008-12-02", "text": "Wow-- SO many breakfast options I had a hard time deciding what to order. They've got skillets, scrambles, and omelets galore. Not to mention two baked pancakes that sound amazing. I'll definitely be back to try those. \n\nDuring my recent visit I went with the New Mexican Skillet, which consists of eggs, chorizo, avocadoes, cheese, and tomatoes served over nice crispy hash browns. The chorizo was well-seasoned and not too greasy. I appreciate that they have the options of egg whites or Egg Beaters, although I dislike the up-charge! But you can't put a price on health (says the woman eating chorizo and hash browns). The fresh-squeezed orange juice was delicious.\n\nPortions are huge here. Supposedly the skillets have two eggs, but I think I got more like 4, and the scramble at another table looked like it had about six. Even though the place was full, the service was excellent. Just know that you may have to wait a while for a table if you go on a weekend.", "type": "review", "business_id": "HDvCnqIf5twbMb5-eG1EJw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "DnwHp_A92KvllfaUIdFraw", "review_id": "BQSoI9zuSsH7qj05QaHNrg", "stars": 3, "date": "2008-08-13", "text": "We have one of the 1st ones to open in the valley right near us and it's OK. Sure it has a selection of ready to eat or grocery selections, but watch the pricing.. you (somewhat understandably) pay for the convience and the \"time savings\" of their ready to go's. I do like their concept and do shop there occasionally (more like if i just need something quick).\n\nTheir hotdog buns are sorta sweet which is different, not different bad, just different!\n\nAs for the Hybrid only parking... I don't think so... what a joke! :)", "type": "review", "business_id": "QCosRCJ1owLMgaHnXOMqQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Yefgp7lJumG7SHwYf7poDg", "review_id": "Oslfg_MNseUWfSJaFyfPGA", "stars": 5, "date": "2011-07-31", "text": "We were greeted with very friendly staff. We had the fried knocci for an appetizer with a fabulous marinara sauce - usually do not order knocci but these came recommended and were very good. The bread was crusty on the outside & chewy on the inside -very yummy. We sat at the bar as we usually do and the bartender brought over a sample of their meet sauce to try with more bread. I don't eat meat sauce but my husband said it was very good. I had a heft cosmo & my husband had a beer. For dinner i had the pasta trio that was fabulous - probably the best italian food i've had since the cioppino at Allesia's restaurant. My husband had the linguine with white clam sauce also very good. I'm certain these pasta dishes were homemade because they just had amazing flavor - I wanted more!! We finished with tiramisu that was also really great. My husband had coffee and even that was great. A little pricey in my opinion for italian food but due to how great all of it tasted - we think it was worth it. This will be a definite dining destination in the future.", "type": "review", "business_id": "S8O3BoCDEK-te8U-0IvZog"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3ONPPazUH-Q3XblYJIaA1A", "review_id": "2M4aXKpdJkU79nbtgOhSvA", "stars": 2, "date": "2012-01-05", "text": "I like Rubio's in general, but this location is pretty hit or miss on the food quality and service. I prefer the one on the other side of the I-10 next to the movie theater.", "type": "review", "business_id": "581qSMwGGgdVSdiBTsrPyQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZPk_wcW7Xot6LngEUj_F6g", "review_id": "bKwkVC0g_ooNvhyjSIsL5A", "stars": 2, "date": "2012-11-12", "text": "I'm not impressed with their medium to high priced menu. Sushi is never cheap, but the quality of the sushi rolls and presentation is a bit messy and not impressive for the high-end decorated type of restaurant. I've had way better quality, presentation, and taste at other sushi restaurants that are not high-end. I guess we were paying for the ambiance and decorations more than anything.", "type": "review", "business_id": "wNUea3IXZWD63bbOQaOH-g"} +{"votes": {"funny": 4, "useful": 4, "cool": 4}, "user_id": "wHg1YkCzdZq9WBJOTRgxHQ", "review_id": "ropcaaEQJLhfkiuOeyARYQ", "stars": 4, "date": "2008-06-13", "text": "I really like Bandera. I really LOVE their cornbread. Best dang cornbread I've ever had. I dream about it in fact. Food is always great, service is usually great as well. Great place to take guests if you're not sure what they like.\n\nMy only complaint...Bandera is a fairly casual restaurant, yet last time I was there my father was asked to remove his cap. No biggie, he willingly obliged, but then I noticed the staff didn't seem to have a problem with the cute little thing wearing hers at the next table. Come on, be consistent guys.", "type": "review", "business_id": "7QSYBp2-AOdyUJXEaLnbgA"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "X5GbNXY_nNoa_vTZDD0aCA", "review_id": "ortfa7JcZb_RwBQWSYFukA", "stars": 4, "date": "2012-11-28", "text": "Michigan anything fans, this is your breakfast place.\n\nReally good breakfast selection, decent prices, and a very friendly staff. Im pretty sure we were the youngest people in the restaurant, but I dont care. Their food is GOOD.\n\nMy husband enjoyed a Belgiun waffle, bacon, and eggs while I had the morning mashup...i think thats what it was called. It was basically a denver omelet w/ bacon mashed together w/ hash browns. While it didnt look \"pretty\", it was delicious.\n\nWe'll definitely be visiting again when were in the east valley.", "type": "review", "business_id": "38ei9EOHa9WP6iIHOUlHSQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pU3iTU8tPggt81R8f57pTw", "review_id": "cZkbnHbLDVPZJtKTcgwR1g", "stars": 1, "date": "2012-02-03", "text": "Experience with Hostess was rude. Service with a frown. Our waiter had attitude too. It was a birthday dinner and we were in great spirits..so this review is written with clarity. The margaritas were strong-check ok there. The shrimp appetizer was different and very good and $18 for four shrimp. We ordered two mahi mahi dinners (each $24)and they were RANCID. Yup. I said RANCID. We asked if the shrimp fajitas dinner had the same jumbo and they said they would have to charge extra (each entree was priced at $30) we had to pay extra for the beans and rice that they had left on the table-which was cold by the time the shrimp dinner--which came with 5 shrimp and onions. Poor service with an attitude. Mediocre food to say the least...all over-priced. Never going back.", "type": "review", "business_id": "VKNl2-aF4n1x7lPVyU-Mag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ARIT9F0X-hi73unv75kIWA", "review_id": "gc0FSudnWtBWlADOEzgpbg", "stars": 5, "date": "2010-08-25", "text": "Great food their pork is awesome !!!! The slow cooking made this dish superb. Of course the margaritas are as good as they get!\nOverall everyones food was tasty and the service was great. The place was very busy with allot of energy.", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "FJEB8pyjjL1FuqTuq7UOiw", "stars": 4, "date": "2009-08-06", "text": "dilly's has to be one of my favorite sandwich shops of all time. they have such a wide variety of choices that anyone who comes can pick something to suit their taste buds. \n\ni always go for the blazin buffalo because i eat wing sauce on nearly everything. boars head meats on all their sandwiches which is great but jacks the price up quit a bit. a sandwich, drink, and a side was about $10. i went with the pasta salad as a side, which was nothing special, your average run of the mill pasta salad. my sandwich on this particular visit was lacking a sufficient amount of buffalo sauce and i neglected to ask for extra before i left, assuming that they wouldn't be stingy with it. the bread is good, they toast it so it tends to get soggy if you take it to go. the bread bowls are good too, i've had the clam chowder and chicken noodle and i recommend both.\n\nservice here is usually quite slow. even when it's not busy in there, like today around 2, i had to wait 10 minutes to get my sandwich and even saw some guy who was two people behind me get his order before me. when it's busy, you're going to be waiting even longer. they need to pick up the pace.", "type": "review", "business_id": "x-lEn6WxwqSNrdYdgjRsyw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e9d9EQqOd2-NlX8WFx0aEg", "review_id": "tExQf_95iNJIGsAgNf3qIQ", "stars": 3, "date": "2011-01-24", "text": "I love Cheuvronts and have been going there regularly for years. Why only three stars then? Over the past year and a half the service has gone downhill. I find that the servers are impersonal and rigid, and sometimes a little pompous. After three or four bad experiences in a row I just don't go there anymore. They do have great cheese plates and a fantastic happy hour...just don't catch them when they have a special event going on.", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "QwO4LVCiPZZdg5URrQfYpw", "review_id": "nfBN8FS7cr9ZA58TIhy-Uw", "stars": 4, "date": "2008-11-01", "text": "You know, I've read some mixed reviews on this place. I enjoy going here. I think the pricing is reasonable, and I haven't had bad service. The food is pretty good (in comparison to other Phoenician Sushi restaurants).", "type": "review", "business_id": "0vzZ_Bcb02rJljeMU9XkBw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Fyc_FceEM4Bce1wx-x3RYA", "review_id": "sgS_02TZ1rVOKk4CkRdnXg", "stars": 2, "date": "2011-12-04", "text": "I've never been so impressed with the quality of food here, but it's fine for a chain American-Italian restaurant. But I am currently sitting here at a table, and have been for an hour, with no promise that a plate of food will be here in the near future. I'm not sure I will be back, I'm sure the Keg next door is better, and that's not saying all that much", "type": "review", "business_id": "UexMw8s7B1J-RtFOQtCCsQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "PHtSSo8sZuow39XvcZT92w", "stars": 4, "date": "2010-02-01", "text": "Hike #4 for 2010 was North Mountain Park. Got there around 10:30am on a Sunday. Sunny and wonderful weather! We got a parking near Trail #44. We hiked up trail #44, it was strenuous but we needed a little more so we went down the pavement and off to this little trail that led us to trail #101. Cool! It was a little declines/inclines and between two mountains. The scenary was goregous! We walked until we hit trail #100 and we took a left. Walked and walked.. Watched people walk their dogs & people riding horses. Neat! We got to where the trail ended. Hum? Went off to trail #60 then. Another strenuous hike and it was a circle. Circled back to trail #100 and we back tracked all the way back. 3-1/2 hours later we were back at the car. \n\nMan, my calves are SORE today!", "type": "review", "business_id": "ToJ9eJ9pKZXhlVyUmCFnJw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "mSRwdGB_oMEIxtY7I0SU-A", "review_id": "UaYfODgSTvp3uYWnM6NZ2Q", "stars": 3, "date": "2011-08-22", "text": "good coffee, friendly staff, good food. they forgot to bring out the bagel I had ordered, but were very apologetic about it. I will go here again.", "type": "review", "business_id": "2FudHUhV9U54dm0S1ePuCw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "HPxji3cX5H460ECCgtnGHw", "review_id": "NLAEwRB90aXlezD5xPtl7Q", "stars": 3, "date": "2011-07-24", "text": "This Safeway holds a special place in my heart. It is only a block away from my house, the shelves are always stocked and it never seems to be busy. There is a pharmacy (and they are quick!), meat counter, floral department, bakery and a Starbucks kiosk. The staff is friendly, though often in no rush to get customers on their way. There are some great deals to be had here...just don't forget your discount card. Without it the prices are downright unreasonable, hence, the somewhat sad, three star rating.", "type": "review", "business_id": "MJTds5mMqXEzYFI1TDCA8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8_ztfjt9_RsKS-cQ9KlqKg", "review_id": "4xjV9TmqjraJXjo4xWwZgQ", "stars": 3, "date": "2010-05-04", "text": "Getting boring in here. It's been at least 6 months since they open but they have the same old flavors. I know you guys been busy but what happen to the \"rotating flavors\"??? Not sure if it's a seasonal thing or a cost factor but even the pomegranate toppings are gone (although they have pomegranate fro yo......not a fan of mine). Competitions are moving in so change is not a bad thing.", "type": "review", "business_id": "zp5k6funVelIOVuqdY0mDA"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "oy6fdscGSXY2gzRqF9pZxg", "review_id": "Za3DdMX65Bav0fU4-QrNGA", "stars": 4, "date": "2010-11-18", "text": "4.5 Stars... I really enjoyed Beckett's table! It's a large, cool looking room with exposed ceiling and brick walls. They have a small patio and I heard they're planning to build a large patio on the side of the building. \n\nI met a couple friends there and we shared a few different items: \n\nThe drink list has some great looking combos and a nice variety of wines. I tried the Palmaire, a lemonade/pomegranite combo. Very refreshing! \n\nWe had the grilled cheese with pancetta to start... I love a good grilled cheese and these were perfect little bites. It came with roasted red pepper tomato soup. The soup tasted like pureed roasted red peppers; I would have preferred a little more balance with tomato taste. \n\nThe roasted brussel sprouts were sumptuous; intense flavor and a little crisp on the outside. \n\nThe fire roasted green chile pork stew was very tasty. The corn bread that came with had a perfect sweet contrast. I tried a bite of my friend's short rib - very tender and lean. \n\nWe ended with the creme brulee, which came with fresh blackberries. At first I passed on having bites (I'm not a huge fan of creme brulee), but they pressured me into trying it... YUM! I may be a convert now. \n\nOverall, a great pick! Shout out to Katie B. for the suggestion.", "type": "review", "business_id": "I4bSn5gXsHuSPu7L-d_8nQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5LBowfIh19Z25enwHJFWNg", "review_id": "5jZCcCmObJZgGkKYv_Gnow", "stars": 4, "date": "2010-04-06", "text": "I love this place. What can I say? \n\nRichard Cho not only has some of the best customer service skills I have ever seen (that guy has an amazing memory for names) but some of the most creative approaches to making Sushi in the valley. I love coming to Sushi Eye, I have never had a bad experience in all the years I have been going to the 2x New times Best of Phoenix award winner.\n\nThe use of Macadamia nuts is brilliant and an amazing addition to many of the creative rolls that are available. The Spicy scallop roll is a go to for sure. They have (and I know this sounds stupid) the BEST California rolls in Arizona. As pedestrian as that roll is, The California roll is transformed in to a very dessert style treat when ordered at Sushi Eye. Seriously, do it.\n\nGo check it out, introduce yourself to Richard and be amazed when he remembers your name. You will be amazed by the food as well.", "type": "review", "business_id": "lVHtVCyFJOqAH0ltn7pLuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PhEh4712X4Vp0PsMROwvpw", "review_id": "U2yO1jSzSa14O4iDWRoLbA", "stars": 2, "date": "2012-04-15", "text": "I was so disappointed in this place. I just moved out here and was craving filipino food and found this place based on reviews. Although the reviews were average, I was hoping to catch this place on one of its good days. Nope, not the case. \n\nThe place is not much to look at and the food did not look good. I was hesitant to eat here but was so hungry and saw that they had my fav dishes, sinigang and diniguan. They were both ok, I've def had better. I ordered the pancit for my husband and it was terrible! He had maybe two bites and threw the rest away. \n\nOh well, won't be coming back here. There's another filipino place in Phoenix so we'll be trying that next. Gingeroot, also in Chandler, is way better but expensive. Guess it's worth the price when you have your cravings!", "type": "review", "business_id": "yC3ydbHAJTZ22FZp4LynFg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PwUnB1okgVdWQDUehF7wDw", "review_id": "uxhFaWRZy-3brDajTMJlWw", "stars": 5, "date": "2012-05-12", "text": "I can't remember the name of the special salad we had tonight with Shrimp, but I will never forget the taste. FABULOUS is an understatement! The NY pizza was equally as great. Every time I come here I say to myself, we need to come more often. Everything is always good.\n\nDiane was our server tonight. What a cutie! More important is that the service was excellent! Diane was back at our table many times checking to see if there was anything else she could do for us. Another comment I want to make is there was a young man taking care of the table. At some point I thanked him and was surprised to receive \"Your more than welcome\", instead of the typical \"No Problem\" statement coming from young people. I should have gone to the management to tell them I was impressed by him, his smile and mannerisms.\n\nWe will be back!", "type": "review", "business_id": "kK4AzZ0YWI-U2G-paAL7Fg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "AXqt75N9cWVAxIRHsl6VAw", "review_id": "fDN0ZX8zSohHWilG3FvtRQ", "stars": 4, "date": "2008-06-25", "text": "Small, but well stocked. All of the Japanese basics are here. It's nice to have a local Japanese grocer and not have to resort to an Asian-Mega-Mart. There's not a lot of fresh produce, but great frozen and dry goods options. I'll have to try the prepared food sometime. They were sold out for the day by the time I went in the afternoon.", "type": "review", "business_id": "Kur7YGwuw6CqnqEypNrOvQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ysINNe8YpbOW_-5T5CSyhw", "review_id": "U4fqCH8cDuHyqE1vzUpahQ", "stars": 5, "date": "2013-01-02", "text": "Like they even need another review - they have a solid 5 stars as it is!\n\nJust got back from my first visit to Adobe, and I am beyond impressed. My German Shepherd pup was having some stomach issues over the holidays, so I decided to have him checked out to be on the safe side. I knew he didn't have an obstruction or other emergency issue, but I was concerned about parasites.\n\nThe receptionist, Hilary, was super sweet on the phone and in person. She was upfront with what tests she thought would be ordered, and how much it would run me (and it wasn't an arm and a leg; the office call was only $56). I was very happy they'd be able to see me the next morning, but then she called back not 20 minutes later with a cancellation and said to come on in. Even better! \n\nThe tech was very good with Nately's 40 pounds of squirming, and loved on him the whole time. I was also happy they let me help hold him - I've been to vets that called in a 2nd tech, like the owners aren't capable of safely holding their own dog. Okay, maybe some aren't, but I am, and I appreciate being able to and not being instructed like a child.\n\nDr. Newland was AWESOME.\n\nThe difference between him and some other vets I've been to?\n- Other vets: \"Oh my God, we need to run $500 worth of expensive tests and start him on multiple medications\", general sense of admonishment for not rushing him to their affiliated ER clinic, eagerness to run the bill up, very few questions about anything, etc... \n-Dr. Newland: Super calm and personable. He spent 20 minutes going over everything (Nately's last few days of activity and stomach issues, diet, contact with other dogs, where I take him in public, anything he could think of really), felt his abdomen thoroughly, and said \"Honestly, he's a puppy, they eat funny things, and something probably just irritated his stomach. He's plainly feeling pretty good, so just feed him a bland diet, give him this medication to settle his stomach, and bring a stool sample just in case, so you know for sure he's parasite-free\". He also dispensed advice for Nately's general care, as long as we were there, about heartworm prevention and necessary vaccines, etc. I even got a good education on the different types of parasites and which were even likely in AZ's climate (turns out, not many). I really appreciated that he didn't try to frighten me into expensive diagnostics and possible serious diseases, and that he is so on his game and scientific/logical about things.\n\nI am very impressed and will be making Adobe my regular vet for as long as possible. If only they treated birds too!", "type": "review", "business_id": "HNaOwzN2d78vma3BMls5TA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "wSUoZO98_MDfZ4GLigHgVw", "stars": 4, "date": "2012-10-02", "text": "Really fast and friendly service even during busier moments. The staff is also very helpful when asked to assist with using copiers and finding appropriate mailing supplies.", "type": "review", "business_id": "7N8RPhvOJ4z8iSz9djLqFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gSDa8aavNsQqpWUIKWAt-A", "review_id": "xvDrWYRi1I1Nmc3i_IHCAw", "stars": 5, "date": "2007-10-02", "text": "T&S Glass did a wonderful job replacing my car window. They came right to the house within 2 hours of my call, had the window replaced within 30 minutes and treated me like a queen. Frank installed the glass and couldn't have been nicer. Thank you T & S Glass!!", "type": "review", "business_id": "CEqsBhtAX4j15gPEgK2wQA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DU0F18NBXFZ-hsPOmGhzQA", "review_id": "roJpvUbnZye_Z4r2oDZCcg", "stars": 4, "date": "2010-10-12", "text": "This is my favorite Pho place in Arizona. The menu is diverse, an the staff is friendly. They will answer any and all questions. I've heard them giving \"lessons\" on how to eat pho several times. The food is great, and the keep the drinks filled. I've never had a complaint, and I've been there numerous times. You will not be disappointed.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "f5CqKZlqK9Sox9z9wuooCQ", "review_id": "sVp4tt5_Ma07vj51u9EMVg", "stars": 4, "date": "2010-05-17", "text": "A short review is in order here because after all we are talking about freakin donuts. However, in AZ there are no good donut shops for the most part. We had three donuts - glazed, chocolate long john, and a chocolate old fashioned/sour cream. The last was a bit stale. The first two were great. We will go back. Nice little place and it's open 24 hours.", "type": "review", "business_id": "6HAwTnhNJoR5VNdfUrRoEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "qZrArI2ohkYkQlELl13BKQ", "review_id": "k07cLknUvGe88G_QHH75cQ", "stars": 5, "date": "2011-12-25", "text": "When I think Royal Palms, I think romantic getaway. A quaint yet exquisite resort, the Royal Palms was built in 1929 to emulate a colonial Spanish retreat. Colonial as in when the Spaniards were conquering the New World. All of the historical details are presented on a frescoed wall in one of the courtyards. \n\nWe had heard some great things about J Cook's and decided to spend a leisurely Sunday morning dining on the patio. If you're looking to be treated like royalty, you want to dine here\n\nI enjoyed exploring the hotel after a luxe breakfast at J.Cooks. The staff are incredibly accomodating. What an ideal location for an intimate stay-cation! It's a nice place to go to grab some drinks and appetizers, I will definitely be back to see what more the resort has to offer!", "type": "review", "business_id": "rLAeltELaGdQKh_LYIllEA"} +{"votes": {"funny": 5, "useful": 8, "cool": 8}, "user_id": "HZeFzs42f0iGaA-sP_hUnA", "review_id": "3jm_Drc2mob44myooX2XrQ", "stars": 5, "date": "2008-12-29", "text": "I was there just last night, and today received a ROTD for my original review. Too weird.\n\nUpdates - They mix a great margarita! No fluorescent green pre mixed Margarita mix - they make it themselves with fresh lime juice. Yum.\n\nThe wine list is small but good. My current fave is the Argentinian Malbec. It's only $6 a glass, and they pour generously. Very tasty wine.\n\nThe seating is not comfy if you like to slouch. If you sit up straight, it's fine. But seriously.... good posture is over rated.\n\nIt gets a little cold in there once in a while during the winter. Wear long sleeves. :) After 3 glasses of the Malbec last night, I didn't care.\n\nThis place has really been growing on me... nice to have such a great neighborhood watering hole!", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "5vQ0n5Ea7yVR625r25mmpA", "stars": 5, "date": "2010-09-08", "text": "Amazing Mexican food and the drinks are knock you on your ass good. Have the guacamole and a madre then come and talk to me.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "83yTevrDRP6z9867qUO9kw", "stars": 3, "date": "2011-09-26", "text": "The Tavern on Mill is an average sports bar with cheap drinks and we come here to watch UFC fights because they don't charge a cover. We always leave when the fights end because there are better nightlife options in the area.", "type": "review", "business_id": "sDozh6iTylTJD26d7xcgGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "3uR5YTXgW4hatuFnaNxSGg", "review_id": "Faj4egYIGBp_58y6QC7Ljg", "stars": 5, "date": "2013-01-01", "text": "I love this store. The produce is always fresh, they have an interesting selection of frozen items including some great appetizers, the meat department is outstanding - I've tried a few different kabobs from here (spicy kabob rocks), bakery is great, nice selection of hard to find dairy items like fig yogurt, fair cheese selection including a local fresh burrata and mozzarella that will knock your socks off, excellent selection of wines and craft beer, and a floral department that has exquisite arrangements.\n\nAside from the above, they make great sandwiches, have a nice salad bar, have different take out dinners available every night, have a pasta night and will make you a fantastic iced tea or an iced latte that rivals any chain. They also have an awesome grill - they will make you a kobe blue cheese burger that is out of this world. The hot dogs are delicious but they are gigantic (and a little unsettling to look at).\n\nOne piece of advice before you go, not everything turns over quickly so check the dates.", "type": "review", "business_id": "9CqxDNPWlkJW1ZCM8Gu_nA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GNCh2HzSVYsS12o76qtUiQ", "review_id": "AN5i4cWa3hbhWeoxgp2EYA", "stars": 4, "date": "2012-01-10", "text": "My girlfriend and I love Crust and frequent here often. They have amazing pizza, the Rustica is enough for two, and we usually split a salad. They have whole wheat crust, upon request, which is actually really good. There service is awesome and we always enjoy ourselves when we visit. They have a great wine selection by the glass and by the bottle. Our favorite is the red blend that is very unique, let it breathe though. They also have many flat screen tv's so you can keep up with what ever sporting event is on. The atmosphere is casual, but it can get noisy if the restaurant is full. The only time we've ever had poor food is when we do pick up. It's always been hit or miss then. We've never had a bad experience actually visiting the restaurant, which explains the 4 out of 5 stars.", "type": "review", "business_id": "kK4AzZ0YWI-U2G-paAL7Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lCVLT95VUnlZfboVoZJCZA", "review_id": "Urk4JgrVfqV6-wNP6BLnQw", "stars": 4, "date": "2011-08-11", "text": "Just went back here and had another fabulous meal - everything was so delicious and clearly homemade with care. Wonderful!", "type": "review", "business_id": "hqVbmZNLTdR2y7G7oJu9vg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "PkiT_G5n38rdD1mgnrSN5A", "stars": 5, "date": "2009-11-03", "text": "I'm not sure why it has taken me so long to actually go inside Go-Kat-Go, but I finally did and loved it! This store is filled with all sorts of great retro Hawaiian treasures along with a plethora of other gems. We've got locally designed clothing in one corner, awesome furniture in another, tons of handmade accessories in the middle and bunches of fun throughout! It was really hard not to pick up everything in this store and buy it. The owner was really nice and offered to hold our stuff while we shopped. I ended up walking out of there with an awesome Dia de los Muertos pillow that looks amazing on my new couch plus a matching potholder/oven mitt set in a really cool pattern. I will definitely be back, especially since my other mom's b-day is coming up and she loves this kind of stuff.", "type": "review", "business_id": "WyTiZGv0edFH-J6cDwTp9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "B4-xzBRt3S5TjrjVZFPSfA", "review_id": "JRc10P9o2OQi459vJMMgqg", "stars": 5, "date": "2011-05-21", "text": "Went back to True Foods ( i have been doing this a lot since my first trip) with my mom for dinner last week. It was amazing as always however this time was different. I tried a new menu item, the Bison burger ( i highly reccomend this) it was so tastey and very light for a burger. OMG! I want to say that this time was different because we had THE BEST SERVICE EVER! Our server Marcus was amazing. He was very informative, helpful, polite and everything you would expect from a server and then some. LOVE THIS CAT. Just thought I would give credit where it is due. Too many times you read about the negatives on service and not so often the positives. I work in a restaurant and know it's important for employers to know who their \"stars\" are. MARCUS is your star. A bright, and shiney star. lol\n\nLoves: Shitaki mushroom lettuce cups, Ahi sliders, Spaghetti Squash, Kale Salad, Raviolli, Green Tea, Coffe (black) and I always have to have the Banana chocolate Tart. Definitely .", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "-BVv1TDLLphHzgKw-eAJJQ", "review_id": "KJ-dCPX2eyD6iVWWrMBpaw", "stars": 5, "date": "2011-07-29", "text": "I was really looking forward to eating here this morning when I got to the restaurant and found that everything was super clean and nice looking. I had been drinking all night and it was time for some breakfast. \n\nThey had a great selection of hot tea. The people in my party got quite a few things and everything came in heaping portions. The French toast is the super thick kind and very fluffy. They also proved that they can really cook eggs well. They also brought lots of coffee and hot water for all of us.\n\nI also go their chicken tortilla soup and it was AMAZING.\n\nThe service was super fantastic! I will definitely come here again. :)", "type": "review", "business_id": "JRzrqJmsQ5AZ4bMQLUfyHg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "i8kR-Qnn3xd9EnpCWs9POQ", "review_id": "Ko6o7BA0EdlGBlFtJ5fbxg", "stars": 4, "date": "2010-12-08", "text": "Having just returned from a whirlwind overseas business trip, Condor had to unwind. No place better than the Spa at Camelback Inn. It has been years since Condor visited and, as I expected, they did not recall that on my last visit I mistakenly thought the terrycloth robe and slippers were a gift. The letters demanding their return stopped after 3 months.\n\nArriving in the lobby I was greeted by the soothing sound of Asian Zen music and the tranquil flow of fountain water. After a quick flashback to the three days in a jungle hut cell due to a jade sale gone bad, I headed to the luxurious locker, donned the fluffy terrycloth robe and settled poolside. \n\nMy first disappointment of not having a drink in hand almost immediately was soothed when staff opened the bar 2 hours early. Talk about customer service at 7:30 in the morning. Having the secluded pool to myself, literally, I settled in to a literary vacation of the mind. It had been a long time since I read \"US Weekly\". \n\nEngrossed in the torrid life experiences of the hoi polli, I hardly noticed Companion had arrived and asked why I had already consumed six umbrella laden cocktails. \"The heat,\" I responded. \"It's 75 degrees,\" Companion stated with the accuracy of a former weekend weather girl in San Diego. \n\nWell, more cocktails ensued, including Companion's Mango Margarita, whose orange color I compared to the stunning, skin tight dress worn by an unknown actress named \"Roxie\" at a Red Carpet Event in the pages of \"US Weekly\". The color of the Mango Margarita complimented the snow white of my robe after it was hurled in my direction. \n\nAnother drink soothed Companion's ire and it was time for the highlight of the day: our individual Swedish Massages! Escorted by my Massage Therapist, the spitting image of Peta Wilson (Google it.) I was soon transported into a realm of relaxation and bliss. The bad news came when I was awaken from my trance by a knock on the door. It seems my snoring had disturbed the guests next door and my session was cut short. \n\nNo matter, more poolside time with Companion awaited and more frothy cocktails. Unfortunately, upon return to my chaise lounge, I was greeted with a note. Apparently Companion and her Male Masseur hit it off and were enjoying cocktails at the Valley Ho Hotel down the street. I was definitely not invited. \n\nWell, upon reflection, the facility, service, therapist and massage were excellent. Although romance did not blossom, I did add another terrycloth robe to my closet, albeit with a Mango Margarita stain.", "type": "review", "business_id": "EcHuaHD9IcoPEWNsU8vDTw"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "XBHJCDzNh--mBhJkzyM_iA", "review_id": "UlLg43QG5zJoKmq0t6PULQ", "stars": 5, "date": "2008-06-03", "text": "Treated some clients to Sweet Pea Bakery items and they loved them! I got the PB & J cookies , Mojito cookies and Rum macaroons. Love that they are not the run of the mill flavors.\n\nThe shop is adorable, it's actually really big-- surprisingly big! The employees are really nice and personable and that is always helpful and welcoming, especially when trying something/some place new. \n\nThey even gave me a precious thank you card to put with the cookies. \n\n\nI will definitely be going back for more!", "type": "review", "business_id": "Y-ci4KjSUdwfc6ru4XnX8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GTkZ-E3Fpu4YNGLeA3JJjQ", "review_id": "x5875Um76wS3RbPQhOGKWg", "stars": 5, "date": "2011-09-27", "text": "It's the best! Downstairs, hanging at the bar, you can't beat it! \n\nThe food is EXCELLENT!!!", "type": "review", "business_id": "5kRug3bEienrpovtPRVVwg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ylqeGfWJCw4JlFT_ik7JeQ", "review_id": "aAS0vWCwzve4hy9icj07kA", "stars": 4, "date": "2011-04-13", "text": "I had the fruits of the forest flavor and really enjoyed it. Staff was very helpful. Will definitely be coming back.", "type": "review", "business_id": "gb-k4Z17XxuPkUmsevwBYg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "s3-yNSQ-ViT22FF2pxZO5w", "review_id": "Hbf6e0RMS4pkwKT7OdRSqg", "stars": 5, "date": "2011-05-22", "text": "Well, this place is as good as it gets. Family owned and awesome. You know how at some mexican places the beans and rice are an afterthought? Not here. They are the best I have ever had, yes even in mexico. The food is seasoned perfectly and the service is exceptional. Too bad they are closed Sundays. The queso is the best I have ever had. I could keep going but you get the picture. Go there, order and eat, you will not be disappointed.", "type": "review", "business_id": "KGX7O-_WqOIy9o7u9NOa9A"} +{"votes": {"funny": 6, "useful": 6, "cool": 6}, "user_id": "dVJ_y1NGSA_g6rc-NDDWHQ", "review_id": "3n3297JIVRxa5KsJWPU3gg", "stars": 2, "date": "2009-08-10", "text": "Went for dinner on a Sat. night. I made reservations 1 week in advance and when my friend and I arrived to check in for our table, we were handed a pager and told we could go STAND in the bar area seeing as how there was no place to sit and have a cocktail. Not real sure why I bothered to make the reservation. About 40 min later we were taken to our table where there was NO ONE else seated at first for the Teppan cooking.Kind of a bummer. About another half and hour and more people were seated. It's only about 10 pm now and my friend is literally starving. The bar area is a joke. Maybe I just don't go to Scottsdale often enough but are these people serious?? There were maybe 4 guys under 25. The rest were in their mid to late 40's. The women were about the same age probably but wore outfits like they thought we wouldn't know how old they were if we just focused on the sparkly sequined shirt and puffy skirts. Or as my friend said, are these ladies re-living prom night or what?? Anyway, food OF COURSE is so over priced and where you think you might get 4 of an appetizer, you get 2. Nothing real special about this place. Once you look beyond the decor and focus on the \"scene\", service and food-Thanks, I will go to Hon Machi!!", "type": "review", "business_id": "uR2aNW75R4oYs9w7aw-_kQ"} +{"votes": {"funny": 2, "useful": 6, "cool": 4}, "user_id": "V0y4fqp-4pSRfsz0FmsjPA", "review_id": "Yy_pPnPhHBmOLHYh1WOaNw", "stars": 2, "date": "2008-06-16", "text": "I would rather go to Benihana to be honest. I have been here a few times because its so convenient but has never been worth it in the end. I have eaten here and had dinner to go it always takes forever and it is not cheap I expect cheaper if theres no atmosphere or really good food would make up for it. I have not gotten sick from the sushi here but lets just say I didnt feel so hot after eating here the last time. I looooove sushi and its hard to say that I wont be back here but I'd rather drive a bit farther and skip running the risk.", "type": "review", "business_id": "QMsUey4Xi1VfHkwbI8YxdQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "PHFyJ0kMuaQn7DuoWtcURg", "review_id": "aJISC6Qw6oI-qyXTa8GjGA", "stars": 1, "date": "2011-02-20", "text": "One star is far more than they deserve. The owner of the property spent an excessive amount of time barking out reminders of hotel policy, was rude to guests and his staff. The stay here felt more like being in prison with the warden constantly in your face. People in the group that stayed were locked out of the room by management, forced to pay made up fines. The owner ruined the entire experience. If this is how customers are treated, this place won't be around long.", "type": "review", "business_id": "BSGcS1EWEkGP2LS1nOZGPA"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "FSSNRWsDCnDxCbul3UmHaA", "stars": 3, "date": "2010-02-22", "text": "Well the view is obvious. I mean - it is decently high up and gives you a good view of downtown but, I don't know - the view from the Arizona Club is better. \n\nWe went here after watching a show at the Herberger and I was expecting some high class expensive dining that that is exactly what I got. The service matched the price tag which was nice to see but the restaurant itself was disappointing. Not only did they not have Coke or dark rum but they let poor Ashley A order a prime rib and then told her they were all out. \n\nI had the drunken shrimp and they were pretty excellent. The sauce around them was really good and they were resting on a piece of toast disguised as a crostini. I also had a few bites of the lava cake but since it was buried under a pound of powered sugar, I couldn't eat any more.\n\nI guess I just agree with Beth S's review...I'm just not seeing what justifies the price. The District in the Sheraton next door is a restaurant in a hotel that has amazing food that is priced better than this. Plus, the view there isn't half bad.", "type": "review", "business_id": "4waggbCK-MSE9dbIdSMfPA"} +{"votes": {"funny": 0, "useful": 5, "cool": 0}, "user_id": "N69-RgMXqRaZbIBbx2eH2w", "review_id": "sbEZZKMdenIYRP3a3jMhHg", "stars": 2, "date": "2011-06-17", "text": "Definitely a place where the reputation precedes the actual experience.\n\nIt's like it's trying to be Binkley's, and it's not even in the same ballpark.\n\nWe were there on a THU night, and the place was dead. Still, it seemed to take 30 minutes between courses. Which is fine, if you have some bread or amuse bouche between. Which you don't at Posh. So, you eat your tasting portion in 4 minutes, then you sit there for another 26. By the time the 3rd course came of our 5th course meal at hour one and a half, we were all tired, bored, and no longer hungry. We ended up asking our last course to be wrapped, as we were that turned off.\n\nWhat really disturbed me on the food, however, was the foie gras. An extra $15 supplement - which is fine, as I think it's always worth it for great foie gras. We were presented a plate with nice size piece of foie gras, in a fruit coulis, and what looked like a nice brulee crust on one side. It looked amazing. And was, if I stopped at eye appeal. Unfortunately, Chef decided to go way off the grid, and serve it COLD. I'm not talking room temp, I'm talking refrigerator cold. If you are a foie gras fan, then you know this is like eating a square of lard. It was impalitable. Imagine being served a lump of shortening on a plate, because this is what cold foie gras tastes like. \n\nI like the surprise aspect of the courses, and I like the fact you can tell them what you like and don't like to start, but ultimately, I see now why it's best to know exactly what you're getting in advance. \n\nIt took me about 10 minutes to figure out why the whole concept of Posh fails. The dining experience starts when you're wowed by a menu, and sit in anticipation of what you've ordered. When you have no expectations, it's hard to get excited. By the time the plate is dropped and the server is telling you how your fluke is in a mascerated lima bean sauce with a marigold flower garnish and buttermilk glaze, you're not really into the ingredients, and just want to eat. I had to ask my server to repeat every course I was served at least twice - lol.\n\nPerhaps if I hadn't been spoiled by Binkley's, that has an expansive menu that changes daily, and you pick from 4-7 courses BUT you are given about 6-8 amuse bouche (and bread which is served French style with choices) between courses, I suppose I would have been more impressed with Posh. But not by much...", "type": "review", "business_id": "_AvHni-xdRHmZ3XfYHwGkg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-Wa5j14Rhps3DC2SMaaatQ", "review_id": "v45RvAdVzQj2yARQMBpGkQ", "stars": 4, "date": "2011-10-27", "text": "One of the better malls on the west side, what am I saying the only mall on the west side!!!\n\nGood line up of the same old shops... spencers, petpad, sears, macys, kitchen store, but also the addition of dicks sporting goods and forever 21. \n\nThey have a good food court, starbucks, movie theater and a chevy's!!!\n\nThis was also the site of the sniper hijack of an armored car November 28, 1994 as seen on City Confindetial. Was a great episode, worth watching. But its not an unsafe mall like some of the malls west of I17.", "type": "review", "business_id": "9ggd0DySEZNw990JGaFSQQ"} +{"votes": {"funny": 3, "useful": 5, "cool": 3}, "user_id": "WZgoM8UuzxjZf1AaWx3qZQ", "review_id": "M_tOh02hkaO4AwBtV6j0KA", "stars": 3, "date": "2009-04-29", "text": "When you walk into Sky Harbor, you are bombarded with declarations that it's the country's \"friendliest airport\". Huh. What does this mean? User-friendly? Friendly in a \"you'll always feel at home here\" way? Didn't really know, but it seems extremely important to their PR group, since when you sign on for the wi-fi, you can't change pages until you rate how friendly the airport is from a drop down menu. \n\nIt might be doing a disservice by proclaiming it as the superlative of congeniality. Expectations run high -- at least by me. I found the free wi-fi extremely friendly. Yeah!! Star for that. I found the den-like check in area (at least in Terminal 3), not so friendly as it left me feeling a little depressed. The TSA officer who confiscated my 4 oz (apparenly it's 3.4 oz in PHX) Neutrogena sun screen not so friendly...but not malicious, and I guess I wouldnt be so friendly if I were charged with monitoring tenths of ounces hour after hour. The spoke-security system I found to be not so friendly to both users and retail. I never like seeing a plethora of places to purchase items BEFORE security, leaving you with only a few outlets for you to browse in your little concourse. I hate wondering, what do gates 1-14 get to purchase? Is my concourse more vacant than the others? Just put security before ALL the retail and let us wander a bit. \n\nOverall, not a bad airport. at all. the friendliest? i don't know, but the free wi-fi certainly made me leave with a smile on my face!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_Q8KWRMHyXzVB0YeRfA4KA", "review_id": "cu1LInwi1lcWkHNlG0ZFMQ", "stars": 4, "date": "2010-12-01", "text": "It was early on a Saturday, was greeted warmly by the bartender, who was the only person serving the smallish bar area. We dat ourselves and were quickly met for our drink order, beers were 2 bucks for 26oz drafts (nice!) my partner ordered the pizza, it was hot and pretty fresh tasting, I had the waitress order me whatever she wanted! I like doing this from time to time to see their knowledge of the menu. Good food and a fun place to watch the game....", "type": "review", "business_id": "f67EBuoqqgW4h1OcG_K7kA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cjU6TqN3bSiW8ShYSoF-0A", "review_id": "zwTx89vgWu8IAU2DGaFpVA", "stars": 5, "date": "2011-12-29", "text": "This is the best buffet in Az. HUGE variety from veggie dishes, fish, shrimp, mussels, and even sushi. The quality of food is very good too. One thing I have learned is when looking for good Asian food, look inside! This place is always full of beautiful asian folks so you know its good. Just sayin'. For a buffett, they have a really nice staff. There is a shrimp dish with a sweet cream sauce that is amazing. It is more pricey than most asian buffets but well worth the extra few bucks. I eat here at least once every couple weeks.", "type": "review", "business_id": "y4bkwSDssQTlFOYZS76K7A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "m2LgIRJwLqTUFIjh94fqLg", "review_id": "2um6BaGhCGfQB_lIGCN3lA", "stars": 1, "date": "2012-02-21", "text": "NOOOO!!! \nDon't think about it!!!!\n\nHad my windshield replaced by these schmucks. The morons tore up the interior of my car, and damaged a speaker cover. \n\nI had to call them about replacing the cover thrice, they finally did, and then I found out that there was a HUGE air leak in the corner. They never fixed the interior trim.\n\nThey sent out the same first idiots to plug the leak, and they ended up breaking a ton of clips for a covering on my car, ruining the windshield wiper covers, and DOUSING my tweeter in water. I called immediately after they left and got harassed by a \"manager\" because he just had hip surgery (why is this my fault?!) and couldnt come until a week out!\n\nWhatever incentives they offer are not worth the TERRIBLE craftsmanship and poor service. \nI am exploring my options with a lawyer, and have reported them to BBB.", "type": "review", "business_id": "mHfIU6fIdk0Gujqx-XIKNQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "1-A_PLT-60EZ9MsfbkV9sw", "review_id": "MfOVQZBxefIqd4lDDjXvnA", "stars": 4, "date": "2011-04-12", "text": "My partner and I went on a Living Social coupon, and we really enjoyed it. She had the Fish Tacos and I had the Chicken Tacos. Both of us felt that the salsa on the table was too spicy. With so many reviews here and other places about the \"too hot\" salsa, you'd think they'd cut it back a bit. Anyway, that was the only thing we didn't like. The homemade chips were fantastic.\n\nThe service was on the ball and the food was fresh. As an aside,I don't know why they opened at Esplanade. Management there is supposed to be terrible and there are rumors that the theater will be closing. Houstons has already moved out, Pizza Picazzo closed. But Fuego Tacos is a great addition to the neighborhood. Let's hope that this merchant and others who remain at Esplanade can convince management to take care of the evil smells coming out of the septic and fix the elevators when they break every week. This restaurant deserves a community that will support and nourish it. Good job Fuego Tacos.", "type": "review", "business_id": "KBKDl08flVw1AqvM5ucVpA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "4xw2k2iAEGumGPYlvGlp5Q", "review_id": "M4emLdIvcCeTrg6_v3JlXQ", "stars": 4, "date": "2010-10-12", "text": "Went to Cricket Pavilion to see Jack Johnson- 10/10/2010..Great show- fair venue. It was WAY COOL that on this show- staff came around and handed out green recycle bags for your cans and bottles! Only Jack!! More artiest should take note!! Had some drinks in the parking lot before the show- a few tailgaters were around us, pretty nice crowd overall with no hassles.\nThere is no way that they should have any shows there between June to August! Thank God the weather broke and it cooled down.. you get that many people together dancing around and it generates some heat!\nTypical venue prices.. HIGH! $10 - $14 mixed drinks.. $8 - $14 beers..They had Pabst Blue Ribbon Tall Boys for $11!!! HA! you can score a case of PBR for $11!!\nNUTSHELL- Great show, good weather, good crowd..Free parking is awesome!!\nIf I had to see a Rock'n Metal Fest in the middle of summer there- I Wouldn't!!", "type": "review", "business_id": "Xsgl3LPU8U2coaAYkEnjcw"} +{"votes": {"funny": 0, "useful": 0, "cool": 2}, "user_id": "47VCrr83Tvtkp1FvDa0ftQ", "review_id": "wcpepBjeZuz0cQKupbB_YA", "stars": 5, "date": "2010-06-01", "text": "This place is great!!! They grow alot of the food they use and if they do not grow, they buy it local!!! The food tastes great...don't forget to get a milkshake. It is also a great place to sit and eat outside, nice!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T10fwLKcy_9goMznW8mA1A", "review_id": "sp1eb64cSQSLmmJlvv3IkA", "stars": 3, "date": "2011-10-08", "text": "Mixed reviews from my husband and I:\n\nHis comments: \n* Salad was good - we had the spinach & Gorgonzola salad. \n* Pizza was really good, but too expensive. Plus, it was the thinner type so you wouldn't expect to pay that much.\n* Wait staff - not good. \n* Ambiance - pretty nice. Has a NY type of feeling.\n* Too pricey to go back\n\nMy comments: \n* Salad had too much dressing. It was dripping with the balsamic stuff. I don't like soppy lettuce.\n* Pizza was just ok. It was served to us fairly quickly considering that the place was packed. However, it was not hot. Plus, we had to wave our server down to ask her to heat it up. She didn't seem very happy with us and did not offer an apology for the cold pie. After all, this place is called Humble Pie. \n* Wait staff - Not good. Not very forthcoming with the menu and only seemed to be interested in getting the ordering over with.\n* The staff should be humble enough to ask the customer if everything is ok after the food is served. That never happened. Even when she brought over the check we got nothing. \n* Ambiance - too loud and dark! Tables and chairs are packed tight in this place so plan to share your space with others not in your party. \n* Definitely not going back. \n\nWe paid $34 plus tip for a small Cesar salad, pizza with three toppings, soft drink and glass of wine. Too much money for some Si's food.", "type": "review", "business_id": "Lbue8gqRiBPEnA7g7H1qdw"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "PdTXWQpztSASlI6wT-cVIw", "stars": 4, "date": "2012-10-27", "text": "Unlike other airports I've been in where your options for food are your massive conglomerate chain restaurants like McDonald's and Burger King, Sky Harbor has a nice array of more local, higher quality restaurants for you to choose from (e.g., La Grande Orange, Olive and Ivy, Barrio Cafe), as well as some healthier choices compared to eating a greasy burger and fries (e.g., Paradise Bakery). There are a lot of good parking options, whether you choose the airport's own parking lot or private lots that provide shuttle service. I also appreciate the free wi-fi, it definitely helps whittle the time away while you are waiting for your flight!", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "Xiprzd4TvJcZnVHGPdDh1A", "review_id": "9jIhtPqtWjP7EOPxv_DQeQ", "stars": 5, "date": "2010-05-09", "text": "I now have a sixth Sens for delicious Asian tapas- a genre I never knew existed. I always assumed the best tapas disappeared when Aaron May sauteed Sol Y Sombra's last batch of butter-marinated brussels sprouts! Well, I was proven wrong when I hit up the ultra-cool Sens Asian Tapas & Sake on a Thursday night. \n\nGuests are greeted by electric blue lights, neon pink lotus blossom light fixtures and fresh beats courtesy of a hipster DJ, which transport the hungry to an intoxicating, fluorescent experiens filled with sauces, sakes, and spicy flavors they probably don't even know about yet. \n\nI tried three top-notch items:\n\nWasabi Tofu- Hot, in every Sens of the word. Wasabi and 300-degree tempura crusties have the ability to burn you to your soul if you aren't careful. Don't skip it, just poke it with a chopstick or blow on it first. \n\nWhite Peach Juice and Vodka- Just like Japanese candy exchange students brought home in high school, it's one of those miraculous flavors most Americans will never have the opportunity to try. Light and sweet, but not overly so, it's a perfect blend you can sip all.night.long. (I did!)\n\nThe best, by far, is the Hot & Sour Soup. It's nothing like the kind you get for .99 at Chinese restaurants as an appetizer. A Bilbo Baggins-ey cauldron arrives with a wooden ladle- among the various veggies and disc-shaped noodles is your choice of meat- I chose clams. I've always heard you can truly tell how talented a chef is by how tasty his soup is, and would have to agree. There's nothing to hide behind, and you're confronted by pure flavor. It was complex, different and mouthwatering.\n\nThe whole Sens-ation was so genius, I even got past the embarrassment of Chef Johnny Chu snorting in my face for taking pics of my meal on my iPhone.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "V8ciEDb_81xsGkbWkbv1Jg", "stars": 4, "date": "2012-04-28", "text": "I love this arena...maybe I am biased since I am a diehard Suns fan and a downtown resident, but it really is a nice facility. The Suns games are always well put together...great announcer, great dancers, great entertainment, and great concessions.\n\nI attended the last game of the season in a suite Wednesday night and was impressed with the space and the food...actually quite good!", "type": "review", "business_id": "uFJwKlHL6HyHSJmORO8-5w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2nXFEyQ06RfcdAXIPbxuwA", "review_id": "3l6SiUHYsgAVRU02f_tmCw", "stars": 5, "date": "2011-07-15", "text": "I have a serious Banana Republic problem. Rewind time to about three years ago when I bought my first dress from BR. I had just gotten my first full time \"real job\" after finishing college and I needed a wardrobe to match my new position. It is now three years later and I have probably close to twenty dresses from BR. The only issue I have is they leave me pretty darn broke, so when I heard BR had a factory store I was stoked! So last weekend I dragged my husband, sister and niece down to Anthem to check this place out.\n\nIt was crowded, but the prices of the items definitely make up for it. That is, when you find something worth buying. The selection of items is a little weird, and you have to fight with many other women to get into the racks with the good stuff. But I managed to find two 100% cotton dresses that are both casual and work appropriate at the same time. Priced originally at $80 with a markdown to $40 on the rack, they also had a 25% off sale on these particular items that day. So I scored two dresses originally totaled for $160 for $60. Sounds like a good deal to me. I wish they had more colors, except that would have been bad for my credit card cause I am sure I would have ended up buying them all. My husband also scored two pairs of jeans, two cotton shirts, and three pairs of boxers for under $100. \n\nI can see myself making the 50 minute drive down here at least four times a year to see what new stuff comes in. My dress collection is going to get larger this year, I can tell you that. Also, if you sign up online for the factory store you can get coupons for extra % off your total purchase. So your super discounted items just got even more discounted.", "type": "review", "business_id": "rY25aXvPYLUZPWlS8BAhbQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "n4PmRYAvx2c6X0-fb9mT9Q", "review_id": "ycAsRoIHFGdnU98ii2Imew", "stars": 2, "date": "2009-07-30", "text": "In Short: Long lines, complicated menu, and a fist full of dollars ........ for a hot dog?\n\nI guess I never bought into the whole gourmet hot dog fad, and probably never will. I've heard my coworkers talk about the dogs, and on more than one occasion seen astronomical lines at the counter, so I thought why not, it had to be good, right?\n\nTalk about sticker shock, and only for a single dog? Very overpriced indeed, on top of that, they managed to complicate a simple hot dog. Various types of meats and topping options were a bit confusing, not because there were too many choices, but because non of them were really explained. A little annoying for a first timer customer. The dogs themselves are not bad, but I think you'd have to a complete idiot to mess up a hot dog. I still don't get whats so amazing about it, definitely way too overpriced, won't go again. They can keep their wieners and shove it!", "type": "review", "business_id": "jJhNOhuGpIsJX5SEUFFWYQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "3gIfcQq5KxAegwCPXc83cQ", "review_id": "GzKoUw0vKFblpGe_mLsstg", "stars": 3, "date": "2011-12-18", "text": "So I was meeting some friends here last night for drinks for a friend's birthday. We were supposed to meet at 9:30 but it was around 10:30 when we actually got to the bar. We walked in and had our IDs checked and then stood around awkwardly...I'm not sure why this happened, but after a few minutes we were asked if we needed a table. Yup...that's why we're here. So we were seated near the bar. The place is large and the decor is fine, but the music they were playing was mainly from the 90's and made the place seem less 'hip' I guess, not that I know much about being hip. We waited for about 5 minutes for anyone to acknowledge us. The waiter finally came by and took our drink order. I got the agave basil margarita ($8.50) which was soooo good! I was very happy with the drink. The Birthday Girl got a blueberry bliss... which wasn't what she was expecting. I tried it and thought it was good, but it was definitely more like wine than a mixed drink. The others got beers. \n\nSo the real problem, for me at least, was my second drink. I got a tropical margarita ($7.00). It was one of the worst drinks I have ever had and was a challenge to drink. It was SO acidic and just nasty, I swear the two drinks could not have come from the same place...but they did. That's a huge red flag for me.\n\nSide note: Why do restaurants think it's cool to not price their signature drinks....why should I have to ask how much it costs? I find this completely ridiculous and annoying. The drinks didn't end up being very expensive here, but I feel like I should have that information available to me on the menu just like any other item.... *ok steps off soapbox*\n\nAs far as food goes, one of my friends got a side of fries that were pretty good and came with bbq sauce, but other than that we did not eat. I have heard good things about their food from other people. \n\nAfter we were done with our second round of drinks (and the fries) we decided to move on to another bar.....but we couldn't because we had no check! Our waiter, who had been almost harassing us towards the beginning of our night, had completely disappeared. He finally came by like 10-15 minutes later and reeked of cigarettes....there is no way he only smoked one because I could almost taste it...pretty gross for a waiter. Anyway, our checks were brought fairly quickly after that and we were finally able to leave. \n\nConclusion: Be very careful what you order....it is a total mixed bag.", "type": "review", "business_id": "Nq7eB1wB2EArUICtiNePvQ"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "v2UqlUHA8d3lgTIby0CCFQ", "review_id": "HYqd_cQVfpFR9C5Q3ovHOg", "stars": 4, "date": "2012-07-09", "text": "I went to Blanco Tacos + Tequila in Scottsdale with my family for my birthday dinner. This is another one of Sam Fox's restaurants, and it serves up modern Mexican fare. Our party of five all got a ton of food that definitely required to-go boxes throughout the meal.\n\nThe atmosphere at Blanco totally didn't surprise me, considering it's a Fox eatery. There was the open kitchen, huge hanging lights, centrally located bar and airy feel. It was chic and dimly lit with candlelight, but there were televisions throughout broadcasting football games. It was a great mix of casual and fancy, making it the type of place where it's perfectly acceptable to go and just down a couple margaritas, or have a fun dinner date.\n\nI started with the Blood Orange Margarita ($9), which you should get with salt even though it's a little sweet. It was a strong drink, and the sweetness wasn't overpowering.\n\nFor my meal, I started with the housemade guacamole to go with our tasty chips and spicy salsa, then had cheese enchiladas and finished with a Tres Leche cake. The guacamole was so amazing, other people at the table were also inspired to order it for their starter. I really liked the cheese enchiladas, but, as my mom pointed out, they're more modern in that they're not smothered and dripping with cheese. Instead, they're covered in an interesting creamy ancho sauce. I guess I prefer traditional cheese enchiladas, but there was still a ton of cheese inside the tortillas that made me happy.\n\nThe cake was really interesting. Someone compared it to a bread pudding, since it was really crumbly and wet because it was drenched in a milky sauce. I liked it, but it was too rich to finish.\n\nAltogether, I thought the meal was an excellent deal. I would definitely go back for the lively ambiance and tasty take on Mexican food.", "type": "review", "business_id": "sb4wU69LkCtC6Axqcd34WQ"} +{"votes": {"funny": 7, "useful": 7, "cool": 5}, "user_id": "BkmIUgwHg_5TCkJbdMEiJQ", "review_id": "DKw4MVkL1qbDG_txZcbnxg", "stars": 5, "date": "2008-06-26", "text": "I just had my first Tammie Coe cake last week for my birthday, and I will NEVER be the same again. I don't normally eat cake, in fact, if it's not Brownies, I don't eat it. But this cake drew me in with it's appealing fondant. From there, I got lost in the spongy richness of the cake. A cornicopia of flaverful goodness.\n\nSo make a metal note to yourself, I will only eat Brownies and Tamie Coe cakes.\n\nOh, and special thanks to Arts G (previous review) for telling me what the hell fondant is. I was just calling it \"sheet like frosting\".", "type": "review", "business_id": "iqLVYrsX25XUZqjRjvbYfg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "ws1Aus3O6ZcalHBQRraSHg", "review_id": "iIG59Vrlwwxip2pJPQ3kzA", "stars": 4, "date": "2011-12-28", "text": "While I don't like to hype places up (because really, how GOOD can any one place be) ...How good can one burger joint be over another, or how good can pizza be over another pizza place (when weighing the ones that are all generally Good in the Public Opinion). Now the word around town is that The Grind is Sofa_King Great. I will say about The Grind that when you're up for a Burger, this place hits the spot. I've been here once before August 2010 (don't remember what burger I had but recall it was good) and the other night I had the Peppercorn Burger and it was as good as it gets. I was starving and really hadn't eaten all day and that helped add to how much this hit the spot, but make no mistake, it was really good and I do enjoy this place for the atmosphere, service, and quality of food. My friends wife got one of those healthy wraps and she liked it a lot. The sweet potato fries (we ordered the half sweet potato and half regular fries) and they were good.\n\nAs for some other areas to review: The atmosphere is nice. It's casual and not too dark and not too light inside. (That's how I like it). There's multiple flat panel TV's above the bar, so plenty of games on at any given time (That's also how I like it). The service is fine (although based on some other reviews people have been so so satisfied about the service. That's often going to be the case with most casual establishments - so sometimes it's good, and sometimes not to our satisfaction). Such is Life! Anyway, back on track here, the Wait staff and Bar staff have been worth the 20% tip both times. No complaints by me about this place, however I do see some 2 and 3 star ratings on here. \n\nWhere I will dock 1 star and sort of agree with Kristi D. She mentioned the large photo of Sheriff Joe Arpaio on the wall (while I sense that Kristi doesn't care for Sheriff Joe, I'm neutral about him), but I agree about all the oversized photos of notable names in town who have dined in The Grind. I'd much rather see real artwork or real photographs on the wall - and not photos of Sheriff Joe, Mark Grace (for those who don't know, he's a former baseball player), and the Mayor of Paradise Valley, all holding their burgers. Who the hell cares about any of them and their burgers. I think I'd be more ok with having these photos above me, but they are HUGE enlargements and a bit overkill. And they are for sale and the proceeds go to some cause. Look, I'm all for causes and shit, but I wouldn't spend my money on a 36 inch enlargement of these local \"notables\" holding a burger. The whole concept is pretty stupid. But hey, I'm generally uptight and been doing photography 20+ years and probly am just hating on the fact that my photos are hanging on the wall.\n \nSide Note: For those who might have previously had \"Liked\" The Grind on Facebook but no longer have their page as a Like, it's because they apparently had their group page hacked, so they had to start over. I found this out when I Liked it the other day noticed there were only about 165 Like's, and certainly I knew this place was way more popular than that. When I commented that, they commented back about it being hacked and starting the page over.\nhttp://www.facebook.com/thegrindarcadia", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "KSTOdz0lSFCkqBSRNwjERA", "review_id": "FKMAkHkwyGvMUeBQ0y_8eQ", "stars": 4, "date": "2010-12-09", "text": "Yum, Jersey Mike's! I freakin' love their wheat bread with the little specks of... I don't know what it is but it's very good. The mini sandwich looks tiny when you first see only the bread but after it's decked out and rolled up, it becomes a plentiful sized sandwich. I've tried different sandwiches here... turkey, club (both kinds), italian and cheesesteak and love them all. There's something about that oil and vinegar they top it off with in the end that seals the deal. Other places do that too, but Idk here it just tastes better.\n\nSometimes I ask for the chipotle mayo instead of the regular and it's quite yummy with a little added spice. \n\nAlso, I like that they carry Pepsi products. I like it better than Coke. And they have Cherry Pepsi, too :)", "type": "review", "business_id": "CQDxI8giIc6Kg9hQFLC6Uw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "amNYUamFs7V2pEakBLdfCQ", "review_id": "_jROvzttf8pNbkeUKVmulQ", "stars": 5, "date": "2010-10-13", "text": "This place is our go to mexican place. I love the hot sauce and you can't go wrong with the Fundido sauce on the burritos. I personally enjoy the Chicken Fajito Chimi with Fundido sauce. It could possibly be the worst thing there to eat (and I love it). For the healthier days, I like the Pollo Salad. The chicken is always great here.", "type": "review", "business_id": "2MM8cFKHp8OaB13fp0ysGw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "LBUMcs2dzqqrqi50eh8q4A", "review_id": "6vxBacH0GJDnLZ-SZ8BA6Q", "stars": 4, "date": "2011-04-19", "text": "Nice clean place with good food. Shrimp burrito - pretty tasty.", "type": "review", "business_id": "L8STRioAgDx-_FRFuuUU2Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "n1KWJCpVeoTrzcN9iATfKA", "review_id": "zsSy7iQN9O3xWmy2OG-aDw", "stars": 4, "date": "2011-04-07", "text": "How can you not love Westgate??? They really do have it all for everyone!!! \n\nPlenty of places to get a bite to eat. A few places you can enjoy are Southwest Moes, Margarita, Johnny Rockets, Ocean Blue, Cold Stone, a new pizza place that slips my mind, and so much more. If you want BBQ, frozen yogurt, burgers, steak, or what ever else makes you say yum...they have it! \n\nIf you have the itch to shop, they can satisfy your every need! I always pop in to Just Sports to see what they have for my favorite Valley team...Go Coyotes!!! \n\nSpeaking of entertainment! They have it all... a huge AMC movie complex, first class Jobbing.com Arena (Phoenix Coyotes NHL hockey, concerts, and more), UPS right next door for Cards football, and conventions. Plenty of thirst quenching bars, and one certain days of the week, live music in the splash pad area in front of AMC. \n\nAs if you need more...WG is clean, safe, easy to get to from any place in the Valley, and plenty of free parking! I am not the only one who loves this place. Every time my family gets visitors from New York come in, WG is always a must stop!", "type": "review", "business_id": "sbD4f8aOsXZ6PJYh1kN4Ag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-9mljS0O9mwdOnGv-Oea3Q", "review_id": "5KRMWa6l7JNGO3MUI1jrGw", "stars": 4, "date": "2012-01-21", "text": "Wonderful low priced food. Love the fries! Love the Buffalo Hot wings, Good spicy chicken sandwich, good chili cheese fries, Good variety of burgers. Fast service. I fight the urge to stop in almost daily!", "type": "review", "business_id": "C42yP2SAQyit92zVyRAqMw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "5j0hoUVgYJTyNshMXgJ4rg", "review_id": "FJhI-HZIMHhnd9jab4I7Pw", "stars": 5, "date": "2013-01-03", "text": "Awesome food. Highly recommend. Had gyros platter . Generous portions and excellent meat. Check out their spices and other food stuff. Got couscous very cheap.", "type": "review", "business_id": "6oRAC4uyJCsJl1X0WZpVSA"} +{"votes": {"funny": 3, "useful": 4, "cool": 4}, "user_id": "54wr4oNkJsvaHM1U5n4iUA", "review_id": "yS9O5xW0WZbHx7kPi_8XYA", "stars": 2, "date": "2008-07-06", "text": "Not impressed. Start with the service. Not professional. It seemed as though the wait staff was clueless as to the table numbers. We were given the wrong table's order twice. \n\nSecond, the food was conceptually a mess. No clear theme or flavor profiles. The food was heavy, greasy and took forever to arrive. None of the dishes were memorable. \n\nThird, the wine selection seemed to be lacking. And, the sommelier didn't know where the wine was from she was serving. Not impressed.", "type": "review", "business_id": "TCqkBVN84Ek0oLmZGAX5xA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "zG1tYaWP2bE9mAaLzbx9GA", "review_id": "JqM012q3yQfSIDJ2mMVTGQ", "stars": 5, "date": "2012-09-16", "text": "One of our favorite restaurants in the Valley! We go here about once a month. Some of my favorite dishes are the whole fish, salt and pepper shrimp, Pho with everything in it, Spring rolls, Shrimp/Pork over rice noodles, and the Seafood over soft egg noodles. We also have the Vietnamese coffee as our dessert! YUM!", "type": "review", "business_id": "jJlOPkv4Xl6vxNzr51fnYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "e9d9EQqOd2-NlX8WFx0aEg", "review_id": "srg5A9x4Fd-_WxLp7RykKw", "stars": 4, "date": "2011-04-09", "text": "I love Fez. I have been coming here for years. The food is always good and there is something for everyone on their menu. One negative: the service is mediocre. It can be quite hit or miss, and sometimes the servers are just plain slow. One suggestion: the menu could use an update. The dining options have been pretty much the same for years, and it would be fun to mix things up a little. One more thing, I have ordered take out for groups of about 20 before...the staff and chef were GREAT to work with and extremely accommodating. This is a nice asset on the Central corridor.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4gaG2PMS5erPnRmf7oEYNA", "review_id": "Gob1Rk3vPEx2vzGF8ZvoJQ", "stars": 5, "date": "2012-03-02", "text": "Love love love this place. It's a very healthy place to eat and always has awesome food and awesome service!", "type": "review", "business_id": "-h-q6zTIdPlkz9BDP11sBg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j27DnYtLn9tzF8bbtXTpbQ", "review_id": "lEN_dM8UMgTwxbOd__A9JQ", "stars": 5, "date": "2012-08-10", "text": "It's a nice newer gym with a good amount of amenities and a relatively friendly staff. I see cleaners in the club every time I am there which I dont see a lot of at other gyms. They have a stretch room, full wet area with steam and sauna, free aerobics classes, a large number of equip,etc.\n\nThe evenings do get crowded even with all the equipment, so I try to get in and out before 5 or so.\n\nAll in all a nice spot to get a work out in the area.", "type": "review", "business_id": "LaHyoyMfcyPJmdeHmGo9lw"} +{"votes": {"funny": 0, "useful": 5, "cool": 4}, "user_id": "0CMz8YaO3f8xu4KqQgKb9Q", "review_id": "zzrCJkX_SWtF3JJbfPE_PQ", "stars": 4, "date": "2007-05-24", "text": "Yum. Only wish this place was closer to my side of town so I could eat there more often. Babbo (doesn't this mean Santa in Italian?) is a neighborhood Italian food joint that gives you big, tasty portions of food for little prices.\n\nMy friend and I always go here with her fam when she's in town, and I always look forward to it. The menu is filled with tons of pastas and all the regular Italian fare you'd expect to find, but they also have some great, unexpected desserts.\n\nThey have this apple calzone that is so freaking good, but the only downside is that it takes forever to cook. Order it while you're still eating your dinner so you won't be sitting there for another 30 minutes waiting on it. They also have a huge half baked cookie dessert kinda like the amazing one at Oregano's. And while it's not as good, it comes pretty close. The desserts are ginormous, so sharing is best.", "type": "review", "business_id": "zwToyWL4dT1clsFPK9wI2w"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "PNAkqna65eJq8Od5dl1iDA", "review_id": "qby0FMBrOXN7p4_vONeUBQ", "stars": 4, "date": "2009-11-11", "text": "Loving this place since I was a kid. Stopped eating meat three years ago, so I miss the Jerk Fried Rice and Carnitas and Emerald Chicken, BUT the Veggie Quesadilla with black beans and white rice is amazing with their tasty red salsa.\n\nAlways amazing customer service and it's great that they let you taste everything before you commit. \n\nThey should lighten their footprint and reduce food packaging. I always feel guilty when I leave with all that aluminum and styrofoam.\n\nBTW, don't be swayed by offers of other cookies; snickerdoodles are where it's at.", "type": "review", "business_id": "Zx8_4zKdDBSO3qGrkukBIA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "cKEcHLtlXtwlateMONS7bA", "stars": 5, "date": "2010-01-30", "text": "Finally a teriyaki bowl place that does it right. Nothing against Samuri Sam's, but Yogis is a bit better in my opinion. Yogis' menu is strait forward and clearly lists the options available. The place is clean and the staff is fast and friendly. The food is also very reasonably priced. I was very impressed with their different bowl/plate/salad options. You are able to order some teriyaki veggies, chicken and/or beef pretty much however you want it. Extra meat, over lettuce, over veggies, brown rice, white rice, etc. \n\nAnyway, when I visit a place like this my desires are simple. I want a decent portion of not-overly-sauced white meat chicken over a bunch of veggies. That's it. Yogis delivers this and then some.", "type": "review", "business_id": "04Jrd2zSzwHwmBqdKQDmIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "MPNFtwa6OGZcMJoB6b90iQ", "review_id": "mFG3Fkr8Pj5GrYMKnrqjwg", "stars": 4, "date": "2012-08-14", "text": "This mall is HUGE for a mall this big I think they should have more directories but nope they want me to get lost in this mall.\n\nThis mall has plenty of stores and a bunch of designers, you can probably find something for everywhere here whether you want a coach bag or a bag at forever 21. I especially loved how the Sur La Table here had a cooking class going on and you can see the kitchen as you walked around the store. There were plenty of food options and so many stores here that it was easy to get lost. There was a windows store here which is a big plus since I have never been there. Even though I personally didn't find anything here for me there was still a big wide variety.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "WGlkpw7vxWMG0zZ2t5LKrg", "review_id": "rg24-P5nW0c1_w61jO2pUw", "stars": 5, "date": "2011-10-06", "text": "Fantastic venue! The bartenders are nice- the drinks are excellent. The lounge is an amazing place to hang out (best downtown spot?!) even if you aren't going to the show! Cool free shows in the lounge! Now let's talk about the main reason you would go there- THE MUSIC! And the venue itself is awesome! The sound is great! The ROOM IS GREAT! It was designed by someone who knew what concert goers want- an intimate experience with fantastic sound. And so if you have the curse of ALWAYS standing behind the TALLEST DUDES EVER at shows- you can now take advantage of the bleacher seating in the back of the room or benches on the side. THERE IS NOT A BAD SEAT IN THE HOUSE! What is left to say ? GET THERE!", "type": "review", "business_id": "qw93CjlAZ6a4ff11Z-hF3Q"} +{"votes": {"funny": 2, "useful": 4, "cool": 3}, "user_id": "fev0iI-XDrteD4SYRKjiUw", "review_id": "E7Zuy5x72Dwpnd_ariNfTA", "stars": 5, "date": "2009-03-02", "text": "I have been to every ballpark in the Cactus League and know my way around them all. This is, by far, the best facility in all of Spring Training (that includes the Florida parks). Granted, I am a Dodger fan and we get it better than the 'Sox fans do, but it is still amazing.\n\nCamelback Ranch is the brand new, state of the art, spring training facility for the Dodgers and White Sox. The Sox moved from Tucson because Tucson is the literally SO bad that even people from CHICAGO won't stay there. The park is located just south of the Glendale Airport and pretty much only has one way in or out - 111th Ave. You can avoid Camelback Rd by taking Indian School to 111th and then just drive into the stadium.\n\nThe grounds feature 13 practice fields and a giant lake and river that also help irrigate the fields. While the White Sox practice fields and clubhouse entry are blocked off from the public, the Dodgers' are wide open and inviting. Players must walk through the crowds during practices which invited lots of interaction with the fans. \n\nThe field is beautiful and the layout of the stadium is quite impressive. Not only do they have a full Jumbotron but they also feature fully enclosed suites and a full buffet for those willing to shell out $90 per game. That price gets you seats behind home, access to unlimited food, wine, beer, soda, and sweets. It also gets you exclusive merchandise as well as cold towels to help you cool off. It sounds like a lot but it turns out to be worth the money.\n\nThe grass seats have a great slope to them (much like Scottsdale) and the seat aisles are wide. The food selection is lacking without Dodger Dogs, however. The stadium is also missing the independent food vendors that Maryvale and Peoria feature. \n\nA great stadium and surely one to visit every March.", "type": "review", "business_id": "IYYaa562PybzXf8tQnT17w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gxNiBlc3_BGn3llzkGbYsg", "review_id": "-v5D8EoibX7dDwPjYIPdaw", "stars": 5, "date": "2011-12-05", "text": "I was introduced to SanTan Brewery two years ago on a very cold, winter evening. My cousin knew I would instantly fall in love with this place, simply because I just love fine craft beer.\n\nHe was surely right because I visit SanTan three times a week because I simply cannot get enough of their beer selection. It's like an adventure every time I go. The staff is fantastic not because they're very nice and friendly, but they have the same passion and enthusiasm for fine craft as I do, so relating to them in that respect makes the experience fantastic.\n\nI normally do not engage in writing reviews on websites like this, simply because I personally tell the management team my best regards but I will for this because people really do need to experience the joys this brewery has to offer. \n\nSanTan is the new level of drinking and dining experience. It's relaxed, fun mature environment and you can start a conversation with anyone there. Enough reading this review, go try it out yourself.", "type": "review", "business_id": "Gq092IH6eZqhAXwtXcwc6A"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "0KXxuKxlspsO6CrDLgQJ-w", "review_id": "_5RZrSP0AxWGxdQoeYqhZw", "stars": 5, "date": "2009-11-10", "text": "Scottsdale Fashion Square is the king of shopping centers in Arizona. It's unrivaled and it maintains it's crown through constant improvements, expansions, and new stores. Empty stores are rare. Try that on for size, PV mall. \n\n\nThe food court is decent, but a wide variety of restaurants surround the mall, providing the shopper with an endless amount of stores, and a great selection of places to eat. Scottsdale Fashion Square aims to please the most critical, and goes above and beyond all expectations.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "jopndPrv-H5KW2CfScnw9A", "review_id": "ts2MBMNYFvzvTDlhDpa5mg", "stars": 4, "date": "2012-07-12", "text": "I recommend Kona for their American menu but skip the sushi! I ordered a Vegas roll a long time ago and it was horrible! I vowed to never come back until my friend Danielle told me that they have other items on the menu like salads, sandwiches, pasta, and burgers. I caved in and agreed to meet her for lunch at Kona. We shared some cheese and bacon fries. I ordered chicken pesto pasta and she ordered a club sandwich. A friend met up with us while we were having lunch and they gave him a huge slice of red velvet cake for his birthday! Friendly service and great food. What more can you ask for? I am now a huge fan of Kona and I can't wait to come back!", "type": "review", "business_id": "fK7ujDbjhRFEe2D7eIwK4w"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "gXQ3peDz-H8mFZO_U4ys3w", "review_id": "J2d6URUq9zrZnC2KUATb6w", "stars": 4, "date": "2009-04-27", "text": "ok so i just read a few other reviews and i must comment on them first.\n\nThe reason the portions are small people is because they are all appetizers.\nif you want heaping mounds of onion rings, go to Fridays.\n\nthe atmosphere is amazing. it isn't trying to hard to be cool you just don't know what cool is. \nit's okay. we all get old eventually.\ni actually asked a little about the lotus lamp shades. \nthey said owner had them made in china and they are absolutely stunning.\n\nonto the food. DELICIOUS!!\ni've been there twice now and my favorites are\ncurry chicken wings\nwasabi chicken\nand the bacon wrapped mushrooms.\nif you're still hungry, ask for a side of rice and pour the remnants \nof your curry sauce all over it and lick the bowl clean. \nfinger lickin good.", "type": "review", "business_id": "d3MxUXS1b6U2P_gGuCO1-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xs_fnNe0hofd7ZOupCjesQ", "review_id": "mHGsVVYQEh2s-qmQ-1y9Zg", "stars": 3, "date": "2011-08-11", "text": "Ok, I usually write longer more intricate reviews about a restaurant but for this new establishment I will summerize.\n\n1. Great decor and ambience; would be better minus the flat screens\n2. Friendly service; but needs more training with food and knowledge of \n3. Timing of Kitchen; if a table has two or more persons, food should come out at the same time or around the same time. Especially when they are not sharing.\n4. Food; if you specialize in spring rolls, please make sure they are rolled up proficiently. It needs to be tight, not loose:) Flavors are good, but there could be a variation of sauce for the spring rolls. 4 rotating flavors for over 20 rolls is not a good ratio.\n5. Pricing is not bad for some items, but I do agree with other reviews that for most items, the pricing is a little high for the neighborhood biz and the quality of food offered.\n\nOverall, nice place to hang with friends for a drink and nibble before the actual dinner somewhere else.\nI will give it a few more months for an update. This place has potential, but not well executed. When opening a restaurant, you should be ready and able to. If you are not, you should wait til the staff is well trained. I believe the owner or chef is inexperience. Hopefully, it will improve...\nGet to work guys!!", "type": "review", "business_id": "jtzhY-P4H6WSYpv5rWhxtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "90-uDWiQKa5B8Xa2hiRu8w", "review_id": "qCmWLHprjYvxS0L6SIakiw", "stars": 1, "date": "2012-12-30", "text": "Last night on my way home from work I figured I would pick up some dinner for me and my wife who is taking care of our newborn all day and has little time to cook for us. I ordered chicken limone the menu says serves two to three and we don't eat a lot so I figured it would fill us up. The price was 18.99 but I figured in a family style Italian place and we should have plenty of food. \n\nI was handed my bag and I was sure it was the wrong order because it was so light so I checked it in the car and was shocked. \n\nI see three small pieces of chicken in a big container with a small piece of bread and that's it! \n\nSo I figured they just forgot the pasta and went back in and asked the hostess and she said yes it comes with it then said no after thinking about it. \n\nSo how can they justify that price? It was so small there was no way it would feed 2 people so I had to cook pasta at home and then reheat our chicken in the microwave.\n\nI worked in the service industry for years and this place is a joke! \n\nFYI just because there's people with money who live near your restaurant doesn't mean you can tailor your food prices to their income level without delivering value.........if you sell crap in the worst neighborhood that same crap should be priced the same in a affluent neighborhood....same crap different place.\n\nNo value means lost customers ....", "type": "review", "business_id": "MLzh2-7zSnPdFmNcuSaaJQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fidu_4aHqkL_QHC1guZAWw", "review_id": "1-SV-H0EfLJu6M-QqaWO3Q", "stars": 4, "date": "2012-01-08", "text": "The more times I visit my son, the more sports bars I get introduced to in the phoenix area. If nothing else, I know my son doesn't go to dive sports bar. This is another upscale sports bar he introduced to mom and dad. We went to lunch on A Saturday 01-07/12 around 1pm.\n\nThe restaurant was not crowded, a light crowd on a sunny beautiful 70 degree? Phoenix day. My son was meeting some people in the area, so my wife and I had a light lunch and he met us afterwards. \n\nWhat we had\n\nLunch size Ahi Crunch and french onion soup with salad and Iced Green Tea. That was it for my wife and I. Total plus tax $23.70. We weren't very Hungry this day.\n\nAs others have said, if you want beer, lots of variety and want to come back every day for for two years and never repeat your beer order, this is the place to visit. \n\nIf you want to have a party for the football season, or any type of sporting event, have it here, they offer a good variety of party platters, and it's not your regular wings and potatoe skins and fried veggies and cheese thingys. Party platters offered:\n\nMoo shu egg rolls, Seared Rare Ahi Sashimi, Thai Chicken Noodle, Penne with Chicken and Peach apple cobbler just to name a few items. \n\nA place like this, I could get use to going whether or not there's a sporting event going on. \n\nI read there is at least one in Denver Colorado area if not two. I will definitely check it out.\n\nOur server was very friendly and it was very relaxing to sit out on the patio for lunch. We will definitely come back to the yard house, whether it's here or in Denver to see further what Yard House has to offer", "type": "review", "business_id": "cBpJIOrVXotDI0XAZH_k0g"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "TWf1hVrosPKBgFHkoujoXQ", "review_id": "cdT73TqjYqLRQ-my8GoQoA", "stars": 4, "date": "2009-10-04", "text": "I have been craving some soul food for quite some time, so I kicked and screamed til someone finally took me to Lolo's. After memorizing the menu for weeks, I knew I wanted the Baby Ray. So we go in and I was overjoyed that they had a band playing some sweet grooves. I jammed out a lil while waiting for about 10 minutes. We were seated in a nice lil half booth/table combo and had a huge jar of koolaid and sweet tea delivered to us. Yum! I starting getting the biggest sugar rush halfway through the wait. When my food did arrive, I was presented with two waffles bigger than my face, 3 big pieces of chicken smothered in enough gravy and onions to fill a whole gravy boat. The chicken was spectacular, really good flavor and crisp(when not soaked in gravy, get it on the side?). Gravy was pretty good as well. The waffles were alright, I can't say I am the biggest waffle fan, but the subtle cinnamon flavor was nice. I think the waffles could have been better in my opinion. I am kicking myself for not trying the grits and collared greens or the red velvet cake. I could not finish my second waffle though, so much food, couldn't even think. The service was probably a B-. The hostess was bubbly and sweet. Our server was busy and a little frazzled maybe. The server gave us the wrong change and seemed to not believe that she had. Waiting for the correction was longer than average for sure. Overall, though, I had a good time, perfect way to end my weekend.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PShy2RYNadDUhJf4ErOJ7w", "review_id": "9WrEujX_777GPWrSSrtUtw", "stars": 2, "date": "2009-11-15", "text": "Ugh.\nI used to like this place.\nBut I've gotten over it.\n\nI find the food to be uninspired, and below average.\n\nBlah.", "type": "review", "business_id": "NX5YHSIyesufcsI7Rg5NLg"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "-GhiIOHXIxlQuy8BjSTSRg", "review_id": "-AqxCcpE1s-rSq5jVHMyCg", "stars": 1, "date": "2012-08-12", "text": "Music was loud as shit. The food, Jesus Christ the food. Lame ass chips and salsa. No joke, like 8 chips were on the plate. Salsa was probably one of the worst I've had, no flavor at all and warm. Salads come out warm (I'm assuming this is why I've been puking). Gross right, warm lettuce. Waiter let's us know they can make daughter a little quesadilla (cheese only) which comes out so greasy. Our taco plates come out 10 minutes later. 2 dinky tacos on each plate that are flavorless and luke warm at best. Yes, they are spicey, no that does not mean they are flavorful. I'm literally using my cell phone to see what was on the plate it's so dark. Mint water was warm. Gross and not refreshing whatsoever. My daughter's quesadilla was $13, yes for 2 tortillas smaller than my hand and some 'cheese'. I get it- make a dollar, but damn, don't rip your customers off. So over the top lame. Neither my husband nor myself finished. Meal was $46. Horrible. Health department should go temp that place- I'm not sure the refrigeration is working properly. Such a disappointment, I've been a vegetarian for 18 years- was looking forward to a new spot. Won't be returning. Ever.", "type": "review", "business_id": "-UT6IHfVW_2yzz1bf8WI5g"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "2FaFQuAfr0W1h7iLbg5crQ", "review_id": "HKPXVx8BwFeycuvSnp6j6g", "stars": 5, "date": "2011-06-06", "text": "I have memories that make my mouth water. My mother calls me everytime she passes through Phoenix to ask me where this place is. She tells her friends in Los Angeles to come here if they have business or family trips to Phoenix. They all rave after their experience. \n\nThe fry bread house is as authentic as it gets. Indian tacos, fry bread with sugar, and oh my god--the red chili stew. I think I just drooled a little on my keyboard. \n\nThe place does get a little cramped during meal times, but we used to take ours to go and sit in the park after a bike ride down Central and picnic away and then do our best to ride it off afterwards so we weren't wallowing in the guilt of our deep fried pleasures. \n\nMake sure they are open before you make the trek, they have funky hours.", "type": "review", "business_id": "mqQwChPNN4o4DhAzaGntIA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k6ZQA3DJ2EfZJMmadBlWNw", "review_id": "YGfzcVl71Rb8xel8OyRzMg", "stars": 3, "date": "2011-07-11", "text": "The new leaner breakfast sandwiches are good (they basically take the bottom and top of the bagel and you are left with smaller ends of your sandwich). An easy way to cut calories without losing the taste.", "type": "review", "business_id": "pNJhovUsGAZ4XqG3lCU-5g"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "axQzSBO4qfLm4ROVEG8dhg", "review_id": "h4eLSiy2dQ1kOZxNF1AUNw", "stars": 5, "date": "2012-01-19", "text": "Culinary Dropout is a fantastic place to eat! The interior is very rocker complete with stage for bands, interesting and yummy food, with an array of beers and amazing food! If you decide to go (which I don't know why you wouldn't ) try their monkey bread for dessert, it is to die for!", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "C6IOtaaYdLIT5fWd7ZYIuA", "review_id": "FoY4kiyOCHU_d0PcYo6Yng", "stars": 4, "date": "2008-12-08", "text": "Thanks to Yelp I was able to read they charge extra for the gas before freaking out on the people at the fron on my way out. \n\nThe staff was extreemly helpful and even told me there was one open spot close to the front. They were there ready to pick me up before I had my trunk open. The ride was smooth and direct. \n\nAs long as the car is there when I return this place rocks!", "type": "review", "business_id": "U4IipLI4RsuBLmxTFEV2MQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "6G8vLJUi1Ees2qC3RGA3Nw", "review_id": "Gh9cKACZj1VnlQGgUWK-jw", "stars": 4, "date": "2011-06-22", "text": "Headed downtown to the soon-to-be-new-office with the boss today and had lunch here - he's lived in Phx for decades and recommended this place (although he hadn't been there in many years). I got a Super Sicilian. Absolutely delicious - the sesame bread looked like it would be hard/crunchy but it was soft and tasty. If I had to offer up any criticisms it would be 1) the fact that it inexplicably took something like 10 mins to make our sandwich - it just looked like it had been toasted, nothing else I could think of should have made it take that long, and 2) the sandwich was too small *8-) My mistake, of course. I got a whole, and could easily have downed two of those. Taste wise it's equivalent IMO to the \"all-American grinder\" at Uncle Sam's, except with the latter you can also get jalapenos. Will definitely return here once our office shifts downtown, but next time I'll get a sub and a half, methinks!\n\nPS: Parking? The boss just parked his Ram 2500HD and toy trailer around the corner on the street in front of someone's house. No problem and no parking meters. (shrug)", "type": "review", "business_id": "5Igwt99qrbgFQTR7jFC6WA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "81YC2XbpXQh39ROlP_pfoA", "review_id": "yDZscGH1Axf2JXKYE19eOA", "stars": 5, "date": "2012-12-05", "text": "As a massage therapist I normally would rather have a massage than get adjusted, that was before Dr. Hunt came to town. I trust him implicitly, and the techniques he uses are amazing. I take my four year old to see him too, who always greets Dr. Hunt and Larissa with great big hugs. Highly recommend this office, truly feels like family", "type": "review", "business_id": "ExpTNnro-X-NZrsOlDEzRA"} +{"votes": {"funny": 1, "useful": 4, "cool": 3}, "user_id": "fH9OSIlijo9Obp8ZDq8rBg", "review_id": "NqSHKPKqYmh1l2-YPm-KUg", "stars": 3, "date": "2009-11-19", "text": "I am not in love with this place nor do I despise it.\n\nI am Mr. Middle-of-the Road with Stacy's.\n\nSomethings he does very well, others are just so-so.\n\nHere are the Do's and Don'ts-\n\nDO-Order a sweet potato pie to go. That happens to rock the house!\nHave the pulled pork sandwich. Solid sandwich.\n\nDONT--Do not and I mean DO NOT order the chicken BBQ sandwich. I ordered this a couple months ago and I could have used the shredded chicken as toothpicks. They were hard and came served in a weird cone-like shape on the bun. Also, skip the sweet potato fries. They are dry and taste like dirt. Yep, I said it. Sorry Stacy. Back to the drawing board on those.\n\nThe sauce is everything at a BBQ joint and his is just OK. Actually, I have had better in a store-bought bottle from AJs.\n\nIf you are in the area, go for it. If you live out in Glendale, it's probably not worth the drive. I am not sure what Bon Appetite was thinking when they gave this one of the top 10 new BBQ joints of 2009.\n\nThe lady who works behind the counter is funny as hell and is a total sweetheart! \n\nBTW--CASH MONEY only!", "type": "review", "business_id": "asebFFgabg_lfoNpGJHZlQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qF-WFG131JRv9Np-_H4vVA", "review_id": "TUzJ3mTheT04sm-6AYr1Vw", "stars": 4, "date": "2011-06-11", "text": "What a fantastic experience! \n\nIf there is a high-end food product that you don't find at whole foods, then you may find yourself to be one of the pickiest eaters known to man. This place offers everything under the sun. For the love of God they have almost 30 different types of olives!\n\nMy family is new to shopping here and we like to splurge a little bit. For some reason it's comforting to know that there are 4 different kinds of ribeye and what seems to be almost 100 different types of cheeses. I guess realizing that makes me think that there won't be anything forgotten at Whole Foods. Unlike Sam's Club, Whole Foods gives samples that actually taste delicious and almost make you grab for seconds when instead you just grab an actual wrapped portion of the product (darn, had to buy some sometime).\n\nOn a 'grocery store' level, this Whole Foods gets 5 stars that's for sure. The only reason it gets knocked a star is because some Whole Foods locations offer more services to make their guests feel like it is supposed to be much more than your typical grocery store. This is a location where I think the patrons would be willing to use everything that they had to offer if given the choice.", "type": "review", "business_id": "2e1jzfiHFGCRpV66gYNVbA"} +{"votes": {"funny": 1, "useful": 5, "cool": 2}, "user_id": "iNplaNMe_XisdyWcaT2Rvg", "review_id": "WDG_J8hJtghBbxn7aZwYHw", "stars": 5, "date": "2008-07-08", "text": "OK guys (and gals too), I know size isn't everything, but OMG, this place has crazy size portions and I loooove it! We ordered the calamari and the stuffed mushrooms (1/2 orders) and STILL, the servings were huge. Six big stuffed mushrooms sitting on what seemed to me to be the biggest plate I have ever seen serving an appetizer. They were great and tasty, but cooled down too quickly and who can do anything about that? The calamari was decent, could have been spiced up a bit or served with something more than marinara sauce, but for those who don't like a lot of fan fare with their food, this would be perfect; classic calamari with classic sauce. We loved the Stella Artois draft beer and martinis came out big and filled to the brim, just how I like them. For our entrees we ordered the Baked Ziti and Sausage and the Rigatoni \"D\". Both of them were absolutely fantastic...yumm. And both were HUGE. The baked ziti stayed warm right up until we packed the rest to take home because they actually bake it right in the ceramic type dish that they serve it in, very smart. For those with little ones, the kids menu is awesome and probably the healthiest meal a kid is going to get anywhere. Nothing at this place is pre packaged or pre made and that goes for the kids meals as well. Their chicken fingers are home made (the pickiest of adults would eat these things!), no french fries; home made mashed potatoes and broccoli florets. This is the KIDS menu! Our waiter needed to be coaxed out of his shell, but he was still warm in that great way that the good ones know how to do without intruding. Great leather booths, linen napkins, white table cloths with a white and red checkered one thrown on top for added warmth, elegant, but not stuffy. Guys could go in with t-shirts and dress shorts and fit right in and for the ladies who like to dress up, you can as well with out feeling overly so.\n\nI am definitely going here again, what a find!", "type": "review", "business_id": "jGldmslgIegQNM5kvb851Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WaKJgfx1RhwkGgN5utOh6Q", "review_id": "gjEIRPGXVZ-kr3rD-CcYdg", "stars": 5, "date": "2011-01-26", "text": "DELICIOUS sandwich prepared fast and just the way I wanted it! I'll be back for sure! Welcome to the neighborhood.", "type": "review", "business_id": "46xWJ6rKZxnrSLWro6EOlA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nrs9jqza1TYWxwmXmTqzqA", "review_id": "ChglZOWO4vFf2iObse15kw", "stars": 5, "date": "2012-04-04", "text": "I always buy my tires at Walmart, but they didn't have a tire to fit my car. They directed me to Discount Tire and told me that they actually have better pricing. I went to this location and had the best experience. They were very helpful, saved me money, and I was in and out in under 25 mins. I will be back again and again!!!!", "type": "review", "business_id": "wifoRjVr__Fj56jfe1_RSw"} +{"votes": {"funny": 2, "useful": 4, "cool": 7}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "Y89MOuSZUHjW2ET-aTvYdg", "stars": 5, "date": "2012-03-29", "text": "This is the best library in the Valley and one of my favorite places to study. The interior design, water fall, glass elevators and many other features make this the perfect metropolitan library for our downtown. \n\nThe top level is pretty quiet and has beautiful views of the city. Quick Tip: It seems that the southern part of the building is hotter because of the sun so I always sit on the north part of the building.", "type": "review", "business_id": "K04Sot5bwUk-BkOotkurmA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "zxcrlC3cmH5S2TGIxuLwBw", "review_id": "17fGlVqXUtVapw5kBOqLWQ", "stars": 1, "date": "2012-03-04", "text": "I've never had a hard time at a sonic before, except for this location. They barely speak English, they don't know their own menu, and they messed up my order 2 times. Come on, your job can not be that confusing...", "type": "review", "business_id": "0De3TQ_uSOXwgduKL0va3w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "lENedG1nXtEbrhuqBIPC9g", "review_id": "jKu-P8q6NBp6JeqIK9F93A", "stars": 1, "date": "2011-11-13", "text": "Made me and my bro sick. Tasted good at first but something wasn't right.", "type": "review", "business_id": "RtwOc-n_RkiUuDGaNfCsNw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "4hrVQL0nc9JHfzW1OZV48w", "review_id": "4DL70hx3V07VVyPjplassA", "stars": 2, "date": "2012-10-07", "text": "best luck to wait in line for a guy behind the desk. The other two sales associates were too busy posing as customers in an empty store to acknowledge the one customer, me, that was there. This is a real change from some other verizon stores where somebody greets you, gives you a number, and the associates talk to customers and want you to buy their products. Weird vibe in this store.", "type": "review", "business_id": "TWsI4hcD-h1KcL3YdNm7vw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CQVPwymzvS01Re6O4DATGQ", "review_id": "B-UApvmjpGK_tHd5MDe_Ew", "stars": 1, "date": "2011-04-03", "text": "My wife and I were looking for a particular type of rose for our garden. We called this location and asked if they had it in stock and what the price was. They said they did and quoted us a price of $24.99 for a gallon sized plant. Good to go. We drive there and find the rose bush but it is listed as $44.99. So we go to the front and say that we had called and driven 30 minutes to get this rose and we were told \"Oops...sometimes the prices on my list up front right\". No sh!t Sherlock. So...will you honor the price quoted? NO. \n\nSo we drove down the street to A And P Nursery on Baseline west of Lindsay and got the same size plant that they were selling for $44.99 for $16.99. \n\nDon't waste your time with these rip-off artists.", "type": "review", "business_id": "s3rFXOBK9SSeSI52PYfuKg"} +{"votes": {"funny": 4, "useful": 4, "cool": 5}, "user_id": "htC49ZwXiKNka5cp0GKBfQ", "review_id": "oHeMiiBZUBRVe8K3zJjsFA", "stars": 4, "date": "2007-12-18", "text": "(aka. SKETCHY TEMPE with BONNIE G, Part One of Three)\n\nI was in Tempe. I was having coffee. I was sedate. I wanted to see if anyone wanted join me and discuss Kafka or something boring. And so I called up the town's most famous resident to see what was goin' down.\n\n\"Um, YOU need to see sketchy Tempe. It is time. And I will be the one who will show it to you. Meet me at Time Out Lounge. No, wait. Meet me at Monkey Pants. Yes, Monkey Pants!\"\n\nAnd so I did. \n\nMonkey Pants! Sorry folks, but this name is nonsensically awesome. I walked in and sat myself at the round bar, joining a smattering of other patrons sitting there by themselves, each staring into nowhere in particular. Well drinks for $2.50, served in a standard kitchen glass. Nice! I proceeded to watch the football game and was soon joined by my Tempe tour guide.\n\nWe were approached by the bartender to do discounted Patron shots....but only if we wore sombreros. There was barely anyone here on a Sunday night, and I'm of the kind who doesn't care anyway, and the thought of me and Bonnie G sitting at a desolate stripmall bar with sombreros on is kind of ridiculous and great at the same time, but shots were not on my agenda for the night. Alas.\n\nI then got a royal tour of the place, including the great leg lamp (actually it's two legs, not just one!), shuffleboard, pool tables, couches with a cozy fire being played on endless loop on a big screen TV, ample board games and another section with tables and chairs, which is where we sat, under the painting of the teddy bear in Richard Simmons gear. \n\nOther patrons were seated all over the large space, so everyone had their own private area in a way. I actually really dug this. I'm not one who needs a place to be crowded to enjoy myself or feel like \"it's happening.\" Sitting around a fake fire with pints and board games with a few friends is more my speed these days anyway. So I may sound decrepit, but I'm really not that old. I swear.\n\nSure, Monkey Pants has frat-party gimmicks throughout the day, but this place has no pretense whatsoever. How can you even take it seriously? Even it doesn't take itself seriously. \n\nI mean, it's just sitting there. In a strip mall. In Tempe. With a painting of a teddy bear wearing Richard Simmons workout gear on the wall and a stack of sombreros sitting next to a popcorn machine. Waiting for you to leave your critical mind behind and enjoy the now.\n\nAnd enjoy the now we did. \n\nAll thanks to my Sketchy Tempe tour guide.\n\n4 stars.\n\n(end of Part One)", "type": "review", "business_id": "yGmdo1ENajB98iryHGoWFw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cg4em4uXe5ab5qH7pB01gg", "review_id": "oQZ3A_iMyLgOCjtldCqnoA", "stars": 3, "date": "2010-08-23", "text": "It's a taqueria in a Latino supermarket. Nothing special but you have choices. \n\nThey will have just about everything you may like. It's not gourmet and some things are just sitting in the pans but at least you can look at what you want.\n\nI'd go back if I just needed something quick....", "type": "review", "business_id": "apCfJVnRyaw6oVUBKujpUQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "68Ci9UgVIVEiCGXy05loLw", "review_id": "RhteV5_pyCxuJOJU__-KwA", "stars": 5, "date": "2010-02-09", "text": "I'm in love. Bacon you have my heart and my stomach. After all- where else does everything come with one of my favorite foods attached to it? Even my Bloody Mary had a slice of crisp bacon in it along with a celery spear, olives and onions. Probably one of the best Bloody Mary's I have had in awhile. \n\nThe location is a little off the beaten path which is why, I think, people are lined up to get in the Breakfast Club a couple of blocks away for mediocre food, and here at Bacon- the food and service is better and there was no line on the Sunday I was there. \n\nI was seated in what they call \"the nook\" located on the side where I had full view of the restaurant. The menu was well organized and entrees come with toast and breakfast potatoes and your choice of a side of bacon or ham. You can also substitute fresh tomatoes if that is your wish. \n\nThe food came up quickly and was delicious! My ham and cheese omelet was perfectly done (all melted cheese and ham inside and firm eggs on the outside) and the side of bacon was crisp and tasty. Given the size, this easily was a 4 egg omelet. Breakfast with drinks ran about $20 which was cheap for all the food I got. \n\nBut I would be remiss if I didn't talk about what really blew me away about this place. It's the fantastic service! Everyone seems to be part of a larger team. I was greeted by one person, seated by another and had at least three servers taking care of me. And countless people stopped by to ask how things were, if I needed more water for my tea, or if I wanted more preserves for my toast. It was unbelievable! While they have been open for 9 months- they had the staff of a place that has been open much longer. \n\nThe ambiance is contemporary but is warmed up by the blue booths, checkered table cloths, and some mismatched dining tables in the center that can be expanded for larger groups. There are also antique food cases lining the walls filled with tins of chocolate, and other food \"cues\". I also liked that they have those \"roll up\" doors on the one side that bring the outdoors in and seats outside on those perfect days. \n\nIf I lived in Scottsdale- this would be my \"go to\" brunch place. What I don't get is why people are waiting in line at a place around the corner that left me a little cold. C'mon people. If you haven't checked Bacon out- you should. After all- what's not to like about, Bacon?", "type": "review", "business_id": "BK51tV_XtCm3UHwRVyCuqQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ma-7afsMYNnQkIGxRwPxdg", "review_id": "ZpyS3L0UbQ2MgQxJrQLLWw", "stars": 3, "date": "2012-09-15", "text": "I truly wanted to love this place! I had the shrimp/pork spring rolls and shrimp/chicken vermicelli salad - both were quite good, with the exception of the rice paper and noodles tasting like they were rehydrated with unfiltered tap water (both had a weird taste). My husband's food, on the other hand, was terrible! He ordered #44 - the rice was extremely dry and chewy, the pork chop tasted ok, but was mostly bone and gristle, and the shredded pork was downright disgusting.", "type": "review", "business_id": "IC8no-tIdDWgkYzb5d-Nvw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "UrJSPcSii2LyKViKotQ_Kw", "review_id": "40JKj_TRFqQBgYE5gPP5ZA", "stars": 5, "date": "2010-05-09", "text": "What can I say ? This is awesome. I am a donut fan and would give Dunkin 4 stars, just like this place. Great variety, great coffee, fresh donuts. The extra 1 star comes for the fluffiness of their dough. Its very fluffy and its done just right. \n\nDunkin is good but its donuts will taste a little hard and \"old\" when they have been sitting for a while. For some reason, the Bosa donuts dun get too hard, even after U buy and drive for like 1/2 hour home. I know its not located in the best part of town, but they are open 24 hrs and there is a drive thru. They accept credit cards and discover :)", "type": "review", "business_id": "6HAwTnhNJoR5VNdfUrRoEw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "OksbhhgC71Ary3zNHMypeQ", "review_id": "A82_x3fRgQ-gGQUn6lBVKQ", "stars": 4, "date": "2010-03-01", "text": "Ride the bulls gals and put on a show :) Just wear pants, please!! Fun spot to get drunk and do kinky things with cotton candy! Great happy hour specials!\n\nExtremely generous bartenders and huge portions of food. Well worth the money!!", "type": "review", "business_id": "NAkRjPhS4yCD5trp0dY-bQ"} +{"votes": {"funny": 57, "useful": 38, "cool": 38}, "user_id": "C8ZTiwa7qWoPSMIivTeSfw", "review_id": "nQHI2kQElYrMWrPBqdwE4w", "stars": 4, "date": "2008-09-19", "text": "Scary things to me:\nParis Hilton has a career. \nSarah Palin. Really. She's like the new Anita Bryant. \nMy fathers' overgrown eyebrows. Trim, daddy, trim!\nDroves of high schoolers leaving school just as I'm trying to find Barrio Cafe. \n\nSeriously. Like thousands of them. And I couldn't find the damn restaurant. What was I gonna do? Roll down the window (well, not roll down, seriously, who rolls down windows anymore?) and holler out in my best lispy voice, \"Hey, squeeze me fellas, I'm going to a wine tasting at the Barrio Cafe. Y'all know where that is?\" Since all teenagers carry guns, yes, that scared me. \n\nFinally. I found it. And entered. \n\nCute. Cozy. Middle of the day, so empty. Great, vibrant art. And a very attentive and friendly staff. Often times at this time of day, restaurants really drop the ball. No ball dropping here.\nI had La Paloma margarita which is made with a grapefruit soda. Think Squirt and Patron! And after a couple of these babies I was in el bano squirting out that Patron. Dee lish however. \n\nI ordered the Enchiladas Del Mar. Enchiladas of the Sea for my non Spanish speaking peeps. You know what? It was good. Not great. And the presentation was somewhat messy. I couldn't find the crab or the scallops (which were the size of the ends of q-tips by the way). They were lost in the sauce and the cheese. But I devoured it as the blue corn tortillas sang to me. My friend had a chickent torta. Big and rustic. Like Janet Reno. She loved it! \n\nI will most definitely be back. Hopefully I will not have to navigate through the plethora of pubescent people and hopefullyl I will pick that Barrio menu item that will blow my calcentinas off. \n\nOh. That's blow my socks off. BTW. Adios for now mi yelpitas!", "type": "review", "business_id": "1NZLxU5WvB5roPFzneAlLw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jMGNNb-vpLcwFikrxIlTkQ", "review_id": "p4jzuKrg5Lu44kRI8dVjhA", "stars": 3, "date": "2010-08-29", "text": "Great bar with a friendly bartender named \"Bob\"", "type": "review", "business_id": "urBWfXQjyyWIO5B7FvnOpg"} +{"votes": {"funny": 3, "useful": 3, "cool": 4}, "user_id": "9ellV9VrEOPA3vX2pZptSA", "review_id": "9--jL__9efnmXZEm9o0HIw", "stars": 5, "date": "2010-11-02", "text": "OK OK... as a Proud Italian I hope my momma don't see this! I'm actually going to give D'moes a 5 star rating for a few reasons. Last Friday, me and my 2 brothers left the suns game, and proceed to put a few \"adult\" beverages back. At around 2am, when Haney's shut down, we had an overwhelming craving for crap pizza (its better than our normal Jack in Box at 3am run that usually ends up with someone puking in the drive thru line because the smell of the taco sauce is so amazing). Low and behold, the ONLY spot that was still taking orders (up to 2am!) was D'moes. Now, 1st off - I live at Summitt (by BOB). These guys gladly delivered to me, all the way down there! Major props for that. 2 - They understood me... considering I don't remember ordering the pizza (I woke up to pizza and wings boxes all over my pad, and me saying \"who ordered pizza\" then I burped... wing sauce and vodka is a healthy combo. 3 - apparently, after checking my voice mail, the driver was pounding on our door for about 5 minutes (we were REALLY jamming out to Rock Band, in case you don't know, were pretty awesome. Wikipedia that Ish ladies and Gent's; Kansas City Bullriders). Well, the driver and my door man both called 3 times. I'm assuming the driver eventually came in and grabbed the bass guitar and strummed it out. Maybe he had a slice with us? Who really knows these things. However, I do know that I was insanely impressed with D'moes... from the left overs I ate the next when I could remember. It was pretty darn good. Between the awesome'ness that is called \"their customer service\" and the legit taste it left in my mouth, I'm a believer, unless, if I say I'm not, will I get a commercial?... hmmmm.... Potential there....", "type": "review", "business_id": "x5Mv61CnZLohZWxfCVCPTQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hh8ZFVvVMKNhbc5oM7SJWQ", "review_id": "dxZOyt-dSV4kxRKlfnZwKQ", "stars": 1, "date": "2011-07-27", "text": "I decided to try qwest as I was tired of Cox continually raising their rates.\n\nBAD CALL! Cox may cost a little more but is completely worth it. If I wasn't locked in to a BS contract I would switch back right now.\n\nInternet: I signed up for their \"Heavy Duty\" internet @ 20 Mbps. I regularly test less than 2Mbps on dslreports.com. The best I have ever seen is a little over 5. When I call to try and get it fixed they tell me there is no guarantee on speeds. That is why they advertise \"up to\" 20 Mbps...\n\nPhone: Extremely poor sound quality, very loud static and crackling, shocking as this is what they should be good at. I called to complain they explained we would have to pay to have technician look at it. This was the day after install!! Helpful hint, call back and tell them you want to cancel your account. The customer loyalty group is actually decent, they sent out a tech free of charge. He fixed it after a couple of hours, but acted completely put out that we wanted a clear line...\n\nThe bundle: Ah my favorite part and what has finally pushed me over the edge to submit a review... I went with a bundled package (phone, cable, internet). The plan I signed up for was $147 a month. The first bill was $147, the second bill in I'm at $272.43. I can't make any sense out of the bill so I'm not sure why they think i owe this much. I love the fact that I will get the pleasure of wasting another hour plus of my day tomorrow talking to these fools. \n\nThe day this contract is up I'm going back to Cox and I'll be happy to pay more!!", "type": "review", "business_id": "eTjk4-Sv8qStFrBdzdom7w"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "UIfpjG5JOB2U1oAPW5xRBg", "review_id": "dJevgZbV8veF5Lg4s6hlmQ", "stars": 1, "date": "2012-09-07", "text": "I've been boycotting this store since 2009. One afternoon after browsing for a while with my kids, I allowed my 10yo and 8yo to stay in the children's section to pick out a book to spend their allowance money on while I ran next door to TJ Maxx to buy the toddler a pair of shoes. I'd been gone 30 minutes when I returned to find the horrid lady in the children's section had called the police on us. She never asked the kids their ages and didn't ask if they had a way to reach me (they did). The police talked to them, realized they were perfectly well behaved consumers, and assured me I'd done nothing illegal. Avoid like the plague.", "type": "review", "business_id": "HGOsJ1-GXCk5_8RmwKxomA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8_ztfjt9_RsKS-cQ9KlqKg", "review_id": "_LF75tiFlgJMILRAlwVihQ", "stars": 4, "date": "2010-06-19", "text": "Don't know why it took me this long to check out Joe's Farm Grill but my out-of-towners got a kick of this place.\n\nWe ordered :\nFontina Burger - 4*\nBBQ Chicken Pizza - 4*\nGrilled Veggie Pizza - 3*\nSweet Potato Fries - 2*\nGarlic Fries - 4*\nOnion Rings - 5*\nChocolate Milk Shake - 2*\n\nThe good:\n- great selection of American food / good portion sizes\n- allow upgrades to different kinds of fries to your meal\n- the decor & cute history behind the farm\n- open kitchen / sauce bar\n- friendly staff \n- outdoor picnic benches under a huge tree where the kiddies can enjoy themselves\n- hand washing fountain conveniently located by the soda fountain\n- kiddies love the cool restrooms \n\nThe bad: \n- lots of flies outside (that's summer in a farm for you)\n- limited seating inside\n- real vanilla milkshake tasted weird ( too much lemon juice?)", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "51-ZrwQODnpIX0dQEshZNw", "review_id": "Qknh9DCPsCC7-yjzIqzWmw", "stars": 1, "date": "2007-05-30", "text": "Went here one night with a group of friends. This place is pink, crowded, and really not that impressive. I ordered some sorbet and it was bland - that in itself is an accomplishment - bland sorbet. The 50's style booth seats were very uncomfortable (maybe to discourage staying long?) and the tables were the wrong height for eating. I had to strain to get above face level of my food (and i'm a normal sized woman) It was also very very (very) loud in here.\n\nI'll avoid going here again. The quality of the product was just too poor - I'd rather hit up a Whole Foods and get some good sorbet without the discomfort and echoing nosie.", "type": "review", "business_id": "Snp5LyDO9NeQiuFPOlkavw"} +{"votes": {"funny": 1, "useful": 6, "cool": 3}, "user_id": "-bBWxXTOqxbxS0BCIXdI0Q", "review_id": "uC18aU88r3iQSU2E9P6N7g", "stars": 4, "date": "2011-01-21", "text": "I've been here three times now and have yet to have a bad meal, or walk away complaining. The food is consistent. The prices are fair. And the service is great. Nice hidden gem without stupid long waits at breakfast. Score!", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dWa3oZ_uXFaCMtPOT44R4g", "review_id": "cLn2qOR1BVSaeLePjlL0rw", "stars": 5, "date": "2010-10-23", "text": "This is my favorite fine dining in town. I only go here 2 or 3 times a year because it's a little pricey for dinner, but wow, what great food! Dessert is awesome here too, love the Sundae. I just went here for my birthday last week and it still lives up to expectations although they don't carry my favorite anymore (double cut grilled pork chop). They might start carrying it after they move to their new location though, here's hoping! If you're looking for a classy place with great dinner dishes then this place is highly recommended, just please dress accordingly and don't try wearing a hat, not allowed!", "type": "review", "business_id": "zMa6YoEekpABg1HZnnTZdg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "HjpzhIQFRQbFmc_7CtFDmg", "review_id": "_PHRPFEJFyFOG7dYtbbYtw", "stars": 5, "date": "2010-11-10", "text": "This is a real find and I mean \"find\" because it is tucked away on the side streets of downtown Glendale. This small little restaurant is unique in decor and cuisine, not many polish restaurants around. The food is flavorful and fresh, the soups are unique and tasty. The stuffed bell peppers are awesome as is the stew.The owners are warm and inviting without being overbearing. \n\nMy only disappointment is the limited hours, I work too far away to get there for lunch and they are only open a few nights a week. Definitely worth the trip.", "type": "review", "business_id": "1cTI09YZ3uRPXt3YkznuPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hSEv6hOHIJt2kaFHr2vsPw", "review_id": "mvJEGVvZMqiQYRIHAWgKkg", "stars": 4, "date": "2012-06-29", "text": "The meat and bread is so fresh that it makes Mr. Goodcents my number one sub place to hit up when in the mood for a sub", "type": "review", "business_id": "ff_QnODW0vqNWZPSTVQTsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2fcMkfHqosP8tN1k69xGZA", "review_id": "Ad3sV7SdrnnlVnFFG460yA", "stars": 4, "date": "2011-04-14", "text": "Found this place from yelp and had to check it out based on the great reviews. All I can say is wow! This place is super yummy! I have a new favorite! Give it a shot, you won't be disappointed. My only downfall was they don't accept Amex cards.", "type": "review", "business_id": "l1kqHWtICTNk8TdCNisf5A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "zsa2eOX_YcEQFZHtGZoKuA", "review_id": "qtAhygfuv03acOomehx22g", "stars": 4, "date": "2010-10-05", "text": "Mini burgers aren't a new idea or anything, but I have a habit of showing up to a restaurant starving and over ordering, so if a place can take care of the portion control for me I'm pretty pleased. \n\nThe food is great - normally I get a Buffalo burger with sweet potato fries, and sometimes I'll toss in a Sloppy Joe for sentimental reasons, but the bartender Marshal has got to be one of my favorite parts. Always friendly. \n\nComfortable place that's great for happy hour or as a stop during your normal Old Town rotation.", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 6, "useful": 5, "cool": 4}, "user_id": "NvDR3SPVPXrDB_dbKuGoWA", "review_id": "5We2Cs096q0za_dyO8jt6g", "stars": 1, "date": "2011-12-28", "text": "I don't get it. This place is crazy busy with no Manager in sight and in hiding during the busy dinner hour. No name tags on the employees. I was scolded for pointing over the sneeze glass to the sauce that I wanted since nothing was labeled. I guess I violated the health code. Thanks for not locking me up. I told my family we will not spend one more dime here.", "type": "review", "business_id": "XA-mMT47rFZNEllPBCYWQQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cqPcKMkgfWc5lu3ltuLdFg", "review_id": "PPM_fRvlKymi1bBngTBO4w", "stars": 4, "date": "2009-12-06", "text": "I really like this place over Pizza Hut or Dominoes because the pizza is excellent and well priced \nThe pizza from here isn't gross like other pizza places/chains\nit tastes authentic and freshly made\nWhen we order pizza, we only order from here\nWe also get the wings usually we ask for extra sauce because if you don't they don't put much on them \nOther than that, its great\nIt take anywhere from 20-30 minutes for delivery for us", "type": "review", "business_id": "uYQo0oDXI5NEoMJNWXnx8Q"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "jnMII2mt0V6AM4_oMECyIQ", "review_id": "ExS95rTSGyqxgBMIG5c4Gw", "stars": 5, "date": "2008-06-04", "text": "Lee Lee's finally expanded from their Chandler location for us who have loyally driven an hour to shop. Low prices, huge selection, and it only took like a week for the place to smell like a true Asian market (i.e., wherever you are, you will never escape the smell of fish).\n\nI love it. I bought ingredients for Vietnamese spring rolls, two different kinds of curries, a new motor/pestle, a Vietnamese coffee press, and some various other vegetables and liquors... hardly anything. Also, the seafood, while I didn't purchase any, looks very fresh.\n\nWonderful to see such a great addition to west Phoenix.", "type": "review", "business_id": "RUZvUPOn90ScX60eETwcCw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QocwkeVyChF2JoP_zKH8Fw", "review_id": "nv0iJ88EeSHC46ZRNKgueQ", "stars": 2, "date": "2011-05-04", "text": "I saw this company on 2 Fix It and thought i'd give them a try. I was charged $320.00 to replace a day/night photo sensor for our front lights. Here's the breakdown...\n\n$49.00 service call\n$89.00 diagnostic fee\n$199.00 no fuss price to replace the sensor (#3 on their Straightforward Pricing)\n\nThey replaced the small recessed photo sensor with one that extrudes from the side of the house. Clearly it is not the same part. WTH?!\n\nI phoned Mr Sparky to log my complaint - they were very nice. As of now, the owner of the franchise will be calling me to discuss my options. I'll post an update on the results.\n\nI just believe that if you are paying over $300.00 for a little photo light sensor, you should get a similar part in return. Unbelievable.\n\nTo Fix It certainly didn't do their research on this company.", "type": "review", "business_id": "MIsLw-yvFeSxyvJXgFPA8Q"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "o1HPntedIkl3qlkmEZUQ2w", "stars": 2, "date": "2011-02-27", "text": "I had to drop it down to 2 stars. The food was the same quality, but they do not bring out big bowls of white and brown rice anymore. They brought out 5 small bowls of rice when there are 7 of us. Are we suppose to share or have our individual bowls? \n\nWe had our usuals:\n2 chicken fried rice - ok\n2 mongolian beef - good\n2 chicken chow mein - good\n2 crispy honey chicken - good\n1 orange peel chicken - meh...\n1 spicy chicken - too spicy for me, but the group said it was good\n\nMain reason for the 2 stars was the service SUCKED! We had to literally get our servers attention for anything (refills, more rice, togo boxes, etc.). We waited 15 mins for our server to pick up the check, he never showed! So we handed it off to other server and asked if she can help us. He came back to the table only the times we can grab he attention. We were always out of drinks. I have not had that BAD of a service in a long time. I will not come back on my own, but if the family wants to then they can drag me along (kicking and screaming).", "type": "review", "business_id": "m-zkVdThpPsJxj3pZ2C7aw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "_6NI9_kujXCUEiwrnDI53g", "review_id": "2vjgFJ1cNQZtOxLDtoBcvA", "stars": 4, "date": "2011-01-12", "text": "I have to say I was pleasantly surprised by this place. When I first saw the address, I was very skeptical. It is in Sunnyslope. I literally had to tell myself that there are still some gems on Central and that this place was probably one of them. I'm so glad I had that talk with myself. This place is nestled into a great little area of shops and cute patio homes, small businesses and a school. They have a great atmosphere, the inside has roll-up, garage doors and there is a huge patio. \n\nMy friends and I settled into one of the sofa areas and made ourselves comfortable. They have a decent happy hour, all wines are 1/2 off and beer is $2.00 off. We ended up having some wine and a selection of brushetta, all was pretty yummy. The brushetta wasn't the best I have ever had, but there was a nice selection and it was pretty tasty. We had the brie and apples (delicious, how could you go wrong), mozzarella and tomatoe (also really yummy), brie and bacon which I didn't try and the tapenade (a little salty, but what can you expect from chopped up olives?). Once happy hour ended, our very knowledgeable and helpful server told us that for $20 we could get a bottle of wine and another order of brushetta, so we did. Hey, why not, it's Monday!?! \n\nUltimately, I was only supposed to stay for an hour (I was sick and jet-lagged and just needed to go home) and I ended up staying for almost four hours. As it got darker, the place took on a very sexy, relaxed vibe. I definitely like the place and I will be back. \n\nGood atmosphere, good food, reasonable prices and friendly service.", "type": "review", "business_id": "XNSito__Fne14TXU0vz1Qw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vvrBA4jHwTRF-tFw8j-ASQ", "review_id": "H9whtu4tISJuChY4oTgkYg", "stars": 5, "date": "2011-05-04", "text": "I have been coming to Lux for years ever since I started graduate school here in AZ. What is there to say that hasn't already been said other than hands down it is my go-to coffee spot in Arizona. Such a warm and diverse group of people, rotating artwork, the perfect study music playing in the background (although it is played a bit loud), espresso roasted on-site and baked goods made on-site. Always find an excuse to end up there for a caf\u00e9 au lait or a velvet if I have a sweet tooth!", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "T6D4ay1ID9MCTaN5-2g-HQ", "review_id": "3t6cS2HNdch4v7R3cTTYZA", "stars": 4, "date": "2010-08-20", "text": "Lunch was delicious, as usual. I had the bruschetta trio for the first time and I couldn't find anything wrong with it, much as I tried to. Not even the onions bothered me. And if you know me, you know how much I hate onions. But their bruschetta was so full of all my favorite flavors I couldn't even complain about the onions. Now that's saying something.", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XaSDZk_rE3D7WI4EKtXM2Q", "review_id": "xVcX2Oy8d0V30VOAj7AC5Q", "stars": 5, "date": "2010-04-17", "text": "I am in love with Yogurtland fro yo!! It is super delicious and inexpensive!! I got the coconut and added shredded coconut and mochi pieces...yummm. Can't wait to go back.", "type": "review", "business_id": "iELA6eREUgDVQrtLgYmS6Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_FbZ1gXZL349iiz5D8gz2Q", "review_id": "1PnC4Hb6N0nzx7bAPgk5Mg", "stars": 3, "date": "2010-09-05", "text": "I usually shop at this store because it is the most convenient and has the best prices and selection in the area. For staple goods such as bread, milk, eggs, meats, and canned goods, the prices are usually lower than the other large grocery stores. Their branded goods (Kroger) such as condiments are usually good quality compared to store brands at other stores. However, in the last few years, vegetable prices have skyrocketed (other than tomatoes, celery, and lettuce) so I find myself driving several miles away to a healthy food specialty store to stock up. This Fry's was recently renovated, seemingly to make it more difficult to find the items you are looking for, and making what should be a quick trip in an out into a half-hour ordeal. The aisles also seem to be harder to navigate, with bulky displays jutting out here and there, and it's difficult to get around other customers. What I do like is that there are four self-checkouts so you usually don't have to wait in lines. I also like Fry's policy of charging you the price on the shelf-tag, or you get the item free. I've often walked out with cash in my pockets when I went in with none. Sometimes due to the confusing \"VIP customer\" pricing on the receipt, it's a bit difficult to tell if you paid the right price. Read your receipt carefully!", "type": "review", "business_id": "StwBhPYVo-q-x1FccSmzwQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 4}, "user_id": "9VPNlcKsL99FvKtz1r9qJg", "review_id": "DQh-8_MqsEarnFKhTgM4Rw", "stars": 4, "date": "2008-09-18", "text": "Fruity Pebbles! YAY!\n\nThey don't have a sign up yet, but we were walking by and noticed they were open and there were happy people inside so they must be, oh yes it was true, giving away free frozen yogurt! \n\nThey were offering original (vanilla) and pomegranate flavors to choose from, I chose pomegranate. They have fruity pebbles as a topping which made me very happy, since that was my favorite cereal as a kid.", "type": "review", "business_id": "ZAhZFqC_bTVXmDlx0E0Wmg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "viAdG2g_GCeHQQJ9T-vVsw", "review_id": "RHG0b-YZgj2ejAq0yO8OOQ", "stars": 4, "date": "2011-05-10", "text": "Great place with good service, a nice menu, and a fantastic wine list in terms of quality, quantity, and value. \n\nWe enjoyed the Abbaye de Bellocq and Taleggio Caravaggio cheeses with the order of the French plate that included pate, cornichons, figs, Dijon mustard, dried cranberries, and baguette. None at the table were very knowledgeable about cheeses, but we told our server Zach our likes and dislikes and he steered us in the right direction. This was a very nice start to the meal and ample for four people. We paired it with an '08 Cakebread Sauvignon Blanc. \n\nThere was a dinner entree of risotto cakes w/ peas, asparagus, and mushrooms that we all wanted to try so we put it in as an order for an appetizer. The portion was fairly small so it was perfect for an appetizer, but I would have been a little disappointed had someone ordered it for their main course.\n\nFor our entrees two of us ordered the duck and the other two ordered the scallops. The duck was prepared perfectly with crisp skin and moist breast. This was served atop a red-wine risotto with blackberry gastrique. The menu stated there would be seasonal vegetables, but I caught very few on my plate. The scallops were also cooked perfectly and were served with spinach/tomato/olive pasta. We ordered a bottle of Delas \"Saint-Esprit\" Cotes du Rhone. I felt bad about ordering one of the cheapest bottles on the menu (only $20!), but the Cotes du Rhone caught my eye and I wanted to try it. It ended up being a very nice wine, whatta steal.\n\nDue to dietary restrictions of one guest, we had to request a change on one of the entrees and the server was very respectful of it and discussed it with the chef who obliged with no issues. Kudos for going out of their way to take care of us.\n\nFor dessert we had a chocolate cookie filled with molten chocolate served with ice cream, along with cr\u00e8me brulee. Both were not out of this world, but a nice finish nonetheless to a fabulous meal.\n\nAll in all this was a great place that was very reasonably priced where you could go all out and not feel too bad when the bill came. :) I enjoyed the wine list and it was apparent that they did not markup their wines as much as other restaurants. The only reason this place does not get 5 stars is portion size, lack of vegetables with the entree (I much enjoy a meal of protein, vegetable, starch with somewhat equal ratios), and there was not one \"wow\" factor in which I will be telling my friends \"You MUST order this dish\" or a dish I have to come back for. I wouldn't have minded the small portion size at all had it perhaps been on a bigger plate with more use of color. \n\nI would definitely enjoy coming back and would love to try their happy hour. I also love how they are open on Monday evenings since a lot of nice places aren't.\n\nSorry this is my first time writing a review so if you don't want to read the whole thing:\n\nPositive:\nGREAT wine list \nOutstanding cheeses\nOn the mark entrees\nKnowledgeable and attentive staff\n\nNegative:\nPortion sizes\nLack of vegetables", "type": "review", "business_id": "muCl5p-9ut1sY0aKeUeRhw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "D0Bub4WGXDSQmtZ3irXWNw", "review_id": "sG5Upd3taNXOPV0G4U9iJQ", "stars": 2, "date": "2011-08-28", "text": "The valet guys were absolutely awesome. They were the best part of my stay at this hotel. \n\nThe grounds were okay - NOT 5 star quality. The decor in the rooms seemed old, and the color scheme was dated. \n\nAlthough most of the staff was friendly, we did have a pretty bad encounter with the pool manager. My husband and I had bought a bag of popcorn at the grocery store and were snacking on it poolside. The pool manager came up to us and informed us that outside food is not allowed in the pool area. She told us that we needed to put our food away. She then left without even offering the opportunity to order some Fairmont approved food. It was really strange and off-putting. We had been sitting by the pool for over an hour and not a single person from the wait staff had come up to us to take our drink/food orders. Also, it seems a bit ridiculous that we can't eat our own bagged popcorn. It's not like we were chowing down on a big meal and making a mess. It made the resort seem elitist. I definitely won't be staying here again.\n\nI've stayed at the Hyatt Regency Scottsdale before and would definitely recommend that hotel over the Fairmont Scottsdale Princess.", "type": "review", "business_id": "9mfec4ySQpW8doGs3FUP2Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 3}, "user_id": "UHWSMoTUnoBuUgujsYIXhw", "review_id": "q2NjGcMKZCUkIbbRNC1lmQ", "stars": 5, "date": "2012-12-13", "text": "I LOVE LOVE LOVE Paws Salon. I used to take my dog to Canine Preferred but the ladies at the front dest were flakey, so I thought I'd try a new place and I am SO glad I did. The owner Tracy clearly has a passion for animals. Walking in you are greeted by a cat, dog, and Macaw that call the front of the shop home. You are able to see them grooming the dogs (a big plus for me, you never know what some places do behind closed doors). She is very professional and seems like a no bullshit kind of lady (in a good way). She's to the point, tries to listen to exactly what you want and offers options and suggestions to help. They keep track of the previous cut that was given (it's annoying some places you to have to tell them every time). I would highly recommend this pet salon. They also offer daycare, and overnight boarding. I can't want to try the daycare to socialize my pup some more! Can't go wrong at this salon..", "type": "review", "business_id": "CpYBCG_UAlyRpTFyMZe0zQ"} +{"votes": {"funny": 0, "useful": 5, "cool": 2}, "user_id": "_Fxrn9P_nvvIY4JCvD5tOw", "review_id": "k_qrYmIteMgT5Yf6D3KVIw", "stars": 5, "date": "2012-03-04", "text": "A roadtrip would not be complete without local BBQ and Bobby's does not disappoint!\n\nFancy smancy table service\nDark and cool with bar seating\nRotisserie chick and bragging about the ribs. Alex was friendly and rattled off drink specials. Other servers were chatting with friends at the bar and one, blond one dipped into her cleavage for something. I hope she washes her hands before serving up a meal. Now I look around, this is a breaking ground for hooters. Low cut and falling out. Not a fan of that. \nBobby Q Amber Ale (Sonoran Brewing) is too light with a bitter bite. Not my type of amber but they tried. \n2 meats, brisket & sausage w/ mac&cheese and...the pecan coleslaw? What the heck for $18. \nPulled pork sandwich $10\n2 meat with pork and brisket \nRanch House Salad\nCorn bread (pucks) of sweet, warm goodness.\n\nSides were great! The beans with zest, the M&C takes me back to old school cafeteria, the potato salad was fantastic and the slaw was great with the pecan. \nBrisket was the clear winner from the table and we all loved the smoky sausage. The pulled pork was a disappointing third as it was dry. Good thing I went with brisket. \nTwo thumbs up here kids. Well worth your time and money. Yelp check in brought a 10% off the total tab too.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nEL-_kLeN37CSR9fXFY4zw", "review_id": "YYKAzO1cwoVUU8GhRuQk6Q", "stars": 4, "date": "2011-09-13", "text": "This place is right in my neighborhood, but I always seem to forget it's there! Finally tried it out last night and I was very impressed. I LOVED the trio of salsas they serve with their chips...especially the green one! It is fantastic and so flavorful. I ordered chicken enchiladas with green sauce, and they were delicious. Normally enchiladas come drowning in cheese, but these one were not and you could really taste the flavor of the enchilada sauce. Their charro beans were very good as well; definitely a nice alternative to refried beans. I can't wait to go back here and try some of their other dishes!", "type": "review", "business_id": "WxpCYziMlEy8mrEa_VcB1w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "J5nb9AT1LDiGN4_hY0Au8Q", "review_id": "GLtihzUL0RjmlFJ3hVC2zQ", "stars": 2, "date": "2012-08-05", "text": "My husband I dined here a few months ago. We'd never been and thought we'd give it a try! The decor was lovely, the staff was very friendly, and the food looked spectacular! Now you'd think my star rating would be better but sadly it isn't. Even though everything looked amazing the food was actually tasteless. We were both surprised that our food tasted so terrible when it looks so amazing. I had ordered a shrimp plate and he ordered a lamb dish. Unfortunately we've never been back and probably wont ever go back.", "type": "review", "business_id": "UCid2Tas6K4SB9sHO9gQ8w"} +{"votes": {"funny": 1, "useful": 6, "cool": 2}, "user_id": "XM6M-WWbCAeLy83jrABkcA", "review_id": "qfcBM0OcNJ8G9LTVMvfpwg", "stars": 4, "date": "2008-10-21", "text": "A definite welcome to the neighborhood!! \n\nI was delightfully surprised at how much the store offers in such a small space. Grant it you are not going to get many choices on some items, but you may be surprised at some of the items you do find. There were plenty of choices for organic foods and \"green\" products, also. \n\nThe good:\nconvenience - for those of you that has one in your neighborhood. Easy to get in and out of with front door parking.\n\nPRICE - The prices are as low as Walmart's but without the hassle of having to deal with the super-store size. (they accept coupons too - even better) \n\nReady meals - Great concept. Many places do this, but I found that it was easy (and fun) to create a full meal. Main courses, salads, sides, sandwiches and desserts all labeled and located in one place. If you don't have time to cook give it a shot. It is not as cheap as cooking it yourself but lasagna for two people for six bucks isn't bad. \n\nThe bad:\nStay away from the Rotisserie Chicken. A little dry and over-cooked. I've had better at Fry's, Costco. Save your tastebuds.\n\nIn a world of Mega-stores with mega-parkiing lots it is nice to have a place that is actually cheaper to go to and within walking distance. \n\nThe best way to describe Marketside is if you were to cram the Walmart food section and the Wholefoods quality and organic cool factor in a space the size of Walgreens.", "type": "review", "business_id": "OFiQ34TNKEE5a00Vd8Kwsg"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "19BunjXk7zhd811rF42U7w", "review_id": "SvV9WRdf2DhvKgrfzoRmng", "stars": 4, "date": "2011-03-03", "text": "Best description of this place would be Chick-fil-A play land meets Pump-It-Up. My kids love this place. They're moving and climbing non-stop whenever we are there, so I love it. We had their birthday parties there about 6 months ago. Overall, I think the kids had fun. The only downside to the birthday parties is that you can't have a private party unless you do it afterhours, which is sort of late for young kids. I think its $9 for an open session. My only other complaint is the quality and price of the food. I think its Sam's Club food. They charge $2.00 for a not so great hot dog. Also, I think they need to vacuum more often; the floor appeared to be pretty dirty. They say they vacuum everyday, but I'm not so sure about that.", "type": "review", "business_id": "jY91cyqDJX2ndkoOYhWDmw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "ROr4DQ-gxlfUKmiDC-qSEQ", "review_id": "9TI6omm-shDdGU9O452xCg", "stars": 4, "date": "2010-01-03", "text": "Carmel Bianca!!! Oh my Effin Gosh... that's the stuff! It's yum. I'm a fan of white chocolate flavored coffee so maybe I'm bias and why I simply enjoyed my 16oz of Carmel Bianca goodness. It's simply espresso, steamed milk, white chocolate and carmel drizzled on top. And that's the signature drink of Dolce Espresso.\n\nThanks to Yelp I decided last night after a driving lesson with L that I was too tired to drive home without something to pick me up... and that was reason enough to make the short trek to Dolce because I've always wanted to try it. Wasn't exactly sure where it was, and happy to find that it's just across from Padre's next to a Psychic place. Dolce has a cool vibe with music videos playing. And they're good songs too... like I had never seen Pitbull's \"The Anthem\" video... liked it! Enjoyed my Carmel Bianca with a slice of their Chicago Style Cheesecake. I liked the cheesecake because it was different in taste compared to other cheesecakes, it was like a marzipan with cheese frosting on top... so it was interesting. Not really a fan of the German Choc that my friends K and D got. I thought it was dry... yuck! \n\nIt's a small place that's bright, with four flat screens spread about. The owner, Cesar (I think) was a sweetheart! I just hope Dolce survives as a 24 hour cafe on weekends because this place has potential. It's way better than counterculture cafe back in the day. This is like the best place to go after the bars if you need a pick me up before heading home to the eastside from central Phoenix. Prices are moderate. SO pls check this place out and spread the word... love it and I'll be back!", "type": "review", "business_id": "1xu5wFd0TeBg6xNBiRtknw"} +{"votes": {"funny": 1, "useful": 4, "cool": 7}, "user_id": "17PPxx8RxjOUD_nQZ1aHEw", "review_id": "i3f5clX9zf4PHAovtY2HJg", "stars": 5, "date": "2010-03-17", "text": "Say hello to the Ghost Lounge, folks. This is a brand new bar located right next to Seamus, within the San Carlos through an agreement with the hotel's ownership. \n\nFor years, I've thought the Hotel San Carlos was an under-appreciated (through its own fault) downtown venue. With the Ghost, the owner has finally executed a plan to revive its rightful place on the downtown Phoenix scene. This is apparent from the first step inside the lobby, which appears as it did in 1928 when the hotel first opened. If celebrities in the 1930s had to spend the night in Phoenix, back then a small, un-airconditioned cowboy town with around 50,000, they would have stayed here. (Or else the near-by Westward Ho). You get a taste of those times with the massive photographic blow-ups the Ghost has put up on its walls of various scenes from early 20th century downtown Phoenix. So large that you can zero in on individual pedestrians on the streets, and marvel at their bowties, cowboy hats, handkerchiefs and facial expressions. Back then, the San Carlos was probably one of the only places in town that was \"air-cooled.\" (That may have meant it had swamp coolers. I haven't googled the history of air conditioning technology for this review.)\n\nI'd describe the bar's style as grandiose, and classic old school Phoenix with an obligatory hint of Chicago (obligatory given the decades-old economic relationship betweeen the two cities that endures to this day). It has been beautifully done. I will be back often.", "type": "review", "business_id": "NcAI7SE1SNlrOEfFg9Wzuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-gdDH8SMQ01tOMlUvhMcgw", "review_id": "X01rATwkRBlS0wrtI_5W-Q", "stars": 5, "date": "2012-10-20", "text": "Saigon Pho doesn't have a fancy sign, great decor or even windows you can look in/out of. But who cares when you have the most amazing Pho in the valley (and at the best prices)? The servings are very big and everything averages about $6 a plate. Staff is very attentive and quick to deliver the goods.\n\nAs you can read through the various other reviews - everyone has a favorite dish. I have a problem with gluttony so I can't suggest a single dish - I can only suggest them all. However, this place also has some of the best Salt and Pepper calamari I've ever had.", "type": "review", "business_id": "jJlOPkv4Xl6vxNzr51fnYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "iJePycN1ZDtpyN_tJ6J9wQ", "review_id": "JUpwiKYEVUhMQ6slbsufKg", "stars": 4, "date": "2012-10-14", "text": "Delicious burger!\n\nThey have a massive menu with something for everyone. My gf got a light basil-pesto chicken with a nicely sweet bread, while I got a southwestern burger and fruit on the side. This is a gem in ahwatukee. Walking in, I felt at home because it reminded me of many cafes from Boston; it was clean but with a bit of hip grunge look. There's a big garage door on the one side of the restaurant that opens out for a large patio in the cooler months.\n\nI'll definitely return here when I make trips to ahwatukee.", "type": "review", "business_id": "nts2OALwvyvfNh9focRZ3w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e_raEH6Y6fdS20UWGpZ5Nw", "review_id": "8L-fPdFtG1YgMKxTdKF27Q", "stars": 4, "date": "2011-05-18", "text": "The best caesar salad i have ever had.\n\nThe scallops were tasty, but not as crispy as I like them. My husband loved his steak.\n\nThe chocolate lava cake is amazing. Instead of a little oozing chocolate, there was a lot of oozing chocolate. And their house chantilly cream is to die for. I could eat it alone, by the spoonful.", "type": "review", "business_id": "9AbyBqGWHYZC73GlyAuTrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "SJoMGpnY0DVtMlpjFK78-Q", "review_id": "9uBCN_JObJUhTW6ADZOgnw", "stars": 4, "date": "2010-07-05", "text": "I know little about Ethiopian food. I'm an adventurous eater, and was taken here to try it. And I must say, now, that I am a fan! \n\nThe food was very cheap, and incredibly flavorful. So, if you're on a budget, and want to either impress a date with your culture, or are a foodie, this is a great place to try! I am writing it only as 4 stars only because I haven't tried any other Ethiopian food. However, I pretty much don't want to risk tr.ying another place ;)\n\nThe Ethiopian tea they serve is fantastic, along with your meal. The portions are generous, along with generous amount of of injera. We has more than enough food around us, and left stuffed.\n\nThe dish that especially impressed me, was the curry chicken. So much so, that I continually kept enjoying the injera in the sauce. \n\nAll the vegetarian food was delicious! I, unfortunately, don't remember the names of everything, but the greens were some of the best I've ever had, along with a lentil dish. \n\nAlso, I rated this good for kids, however, that's only because I have a toddler that eats anything! If you don't have problems feeding your kid unique food, I suggest an attempt!\n\nIn short, if you're a big food fan, or want to be a little more adventurous on your food options, especially for a great, fair price, try Blue Nile!!", "type": "review", "business_id": "fb9eLHJ4S--TyXsarJJo-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KADdk3Fa_rGuGHAmSIGoaw", "review_id": "S-bht-LTE-Af1FfyAaC0qQ", "stars": 5, "date": "2010-08-06", "text": "Great staff without an attitude (which is rare in Scottsdale). As I was waiting for my party to arrive, I was sitting outside drinking my beer and eating my food. Without ANY questions and/or hassle, my bill was transferred inside when my party arrived. Not only that, but our waiter remember exactly what I had and was able to split it without me even asking him to do so. OK, how great is that? I am totally sold on the service there an I will definitely come back. Very nice unpretentious place.", "type": "review", "business_id": "LzNJLEIo4gh-X_rmDkNkNg"} +{"votes": {"funny": 3, "useful": 7, "cool": 5}, "user_id": "m7vtKWpZ9wdEQ95wJxrMrg", "review_id": "9eAC-Obald8H1LPXV4jq-g", "stars": 3, "date": "2010-10-10", "text": "Sometimes you CAN judge a book by its cover. This looks like a typical diner and indeed that's what it was. Even though the place was busy (Sunday breakfast time) I was immediately seated, the servers were friendly and everyone used the obligatory \"hon\" when addressing you, and the food came fast in spite of the busy time. Taste and quality of the food were typical for a diner - OK, not great, but the pancakes were definitely more than I could finish. Not as inexpensive as I though it would be: pancakes (3) with bacon and eggs and a cup of coffee came to a few cents short of 10 bucks! Very casual atmosphere: most of the folks here were attired like they were about to do some home gardening after breakfast.", "type": "review", "business_id": "H03D-h5UwPXOv64W5Iqn_Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "z-X-cAwVB1wIsAJnxpwr7g", "review_id": "QG6VUaudvRr4a837Xjg5CA", "stars": 3, "date": "2010-06-01", "text": "Again, it's a bit unfair of me to rate this restaurant because I'm from San Jose/Cupertino but I'm gonna do it anyway.\n\nSo, being from San Jose/Cupertino, I've had me some good Chinese food and even better dim sum. So when the Boyfriend brought me here, I was expecting something decent, but not anything too authentic.\n\nThis place was fairly decent and authentic! It has the Asian ladies and their dim sum carts. It has the OG dim sum dishes. It even has the authentic less than mediocre Asian service. \n\nThe only disappointment is that this place is a bit dirty and ragged-y looking. And the vegetable dishes are minimal. In fact, I had to order a veg dish off the menu because they didn't have any dim sum veg dishes and it cost $13! Bleh.", "type": "review", "business_id": "sgBl3UDEcNYKwuUb92CYdA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "NoxjYVkRQOQXZm7rDvhj-Q", "review_id": "cPQtzuktnu7Mg9ZmPGlfsg", "stars": 2, "date": "2007-08-23", "text": "Pretty lame subs and sandwiches. Worked close by so tried a few times. Hate to say it, but Subway is much better. Quality and quantity of ingredients in the so so bread left a lot to be desired.\n\nService was okay but nothing to Yelp positively about.", "type": "review", "business_id": "5N9bWl5zWuDX-Q1YpTf2LQ"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "RAWy3YCE-jwfyuGvwzUaqQ", "review_id": "8tW7Dbqv8RR2NfZJ4vyB9g", "stars": 4, "date": "2012-02-19", "text": "I would never have stopped at the Wy-Knot Cafe if it had not been for a friend mentioning it in a post on Facebook. I am glad I saw that post. There have been a number of restaurants in that location that have failed. Wy-Knot has opened the space up, made it dog friendly (it is named for their dog) and has a great menu. You order at the counter and then they bring the food out to you. The employees were all very friendly. The only down side was the lack of parking due to the other businesses sharing a lot. Also there were hardly any customers. Hopefully they will deliver menus to the houses in the neighborhood and maybe do some promotions on the neighborhood e-mail service so people will know what they have to offer. I would like to see them make it.\n\nThey serve breakfast and lunch all day. They had a variety of choices and it was hard to decide on one. We split a BLT and a Chicken Salad Sandwich so we could try both. They come with a side of beet salad or salad of the day. The beet salad was very good. We both preferred the BLT but I am sure the Chicken Salad was more healthy and it was tasty as well.\n\nGive them a try, I think you will enjoy the Wy-Knot Cafe. I will be back.", "type": "review", "business_id": "GbEOmf5k73r_UJWjchrHOg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ZZf6vwEgfKGZN3uNquORPg", "review_id": "wNEsy3l3MAfak2iAA5TgrQ", "stars": 2, "date": "2011-06-05", "text": "Despite not being Federal employees in any way, Memorial Day seems to be a time when restaurateurs think they deserve a day off, leaving me with few actual lunch options and relegating me to the worst of the worst: Eating. In an AIRPORT RESTAURANT.\n\nTurns out that Taberna wasn't actually as bad as all that - the bar is nice to spend a few hours waiting for your flight, and the titular Blue Burrito - despite not being blue in any way, shape or form - wasn't too bad by fast food standards, and quite plentiful for the $8 I spent on it. And if you don't like it, you can cover it with Cholula, close your eyes, and pretend you're eating somewhere better.", "type": "review", "business_id": "kPh2gPvd8moVx6gNf2iHsA"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "MmPOU8kbuwkE4NedXe-qZw", "review_id": "cGzKwaNWgQWRQihrCpGI3w", "stars": 4, "date": "2008-05-14", "text": "Every culture has their comfort soup. American's have chicken noodle, Mexican's have menudo and Vietnamese have pho. I must have been Vietnamese in a past life. \n\nPho is the national dish of Vietnam and a staple at any Vietnamese restaurant and Pho Avina has some of the best pho around. Let me warn you - this isn't an appetizer, this is a meal. A big, steaming bowl of soup served with your choice of meat and noodles in a savory, almost sweet, broth. The pho is served with a large plate of fresh basil, cilantro and bean sprouts; the cilantro complimented the soup nicely. I chose the chicken and shrimp and was pleasantly surprised with large shrimp and big chunks of all white chicken. \n\nMy eyes were bigger than my stomach, so I also ordered the deluxe vermicelli salad. A salad of noodles, veggies, beef, chicken, shrimp, eggroll, sweet potato cake and fish sauce - toss together and enjoy. I had it boxed up, but did nibble on a few items and the sweet potato cake is out of this world good. \n\nI had come for the banh mi at the recommendation of a previous yelper. They only serve the sandwiches Monday-Friday from 11-3; I had just missed them. Darn. I will definitely be back to try the banh mi and a boba, there were soooo many delicious flavors to choose from except for the fresh durian - icky, icky, icky.", "type": "review", "business_id": "tqDwpyCB53TiEIv915Tuww"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7NF_JQ18tkXQqs_eSVWqKw", "review_id": "_oLIjTVzhzRw44K9ziUXkQ", "stars": 5, "date": "2009-02-04", "text": "I'll never forget my first Urban Cookie. I was checking out after a successful day of shopping at Frances (my favorite boutique), when the girl behind the counter offered me some cookies they had out on a tray. I hesitated at first (because I was worried about fitting the new skinny jeans I had just bought) but gave in after little persuasion.\n\nIt was love at first bite. After buying my jeans, I rushed immediately to Urban Cookie and bought one of every kind. Although it was close, Urban Trail was my favorite. \n\nI really can't help myself, I keep going back for more (plus the owner is super cute). \n\nI love urban cookie!", "type": "review", "business_id": "YkFBelUWinftlweJzuiIAw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "mutQE6UfjLIpJ8Wozpq5UA", "stars": 2, "date": "2012-06-16", "text": "This review is for the chain in general. The location we went to is new so it isn't in Yelp yet. Once it is I will put this review there as well. We were there on Friday at 5 PM. \n\nThe reason I gave it 2 stars is because the burger was very good and it was made the way I asked for it. My husbands burger was not.\n\nBut, the server and the fries left a lot to be desired. Let me preface by saying that we had been to several other locations. I like my fries crispy. I ask for them well done, extra crispy, scorched, tortured hollow tubes. Whatever their buzz word is for well done. The location will comply. EVERY OTHER 5 GUYS HAS COMPLIED. But not the one at TATUM AND SHEA. She said that corporate said they are not to cook the fries that way. So if we were to put up with soggy fries - yes soggy, then we did not want them. \n\nShe also interrupted us several times which is rude. THEN she went and called corporate just to double check for us and she came to the table and said they said no they were not to cook them that way. Seriously? We did not ask for her to do this. She actually accused us of being undercover shoppers. We started to say something and then again- she interupted.\n\nListen, if you explain that our choice is not how the company wishes to present their product and we still choose to have them a different way, you should comply. It is after all our money and our decision. I was raised with the rules that #1 the customer is always right. And #2 if the customer is wrong REFER TO RULE NUMBER 1!!\n\nWe will not return. They have lost our business and I hope she loses her job.\nIf you want to try a really good burger AND FRIES place- go to Paradise Valley Burger Company at 40th Street and Bell. You will not be disappointed.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "IDHrwv_RCildFvmfWTkj5Q", "review_id": "IokuZD7dpn8EUbOUe-vehQ", "stars": 4, "date": "2011-09-28", "text": "Great service. Tasty food. I like it for lunch because later, I can skip dinner. Their salad bar satisfies the vegetarian taste buds. I like this place alot. I think it lives up to the hype.", "type": "review", "business_id": "OE5nAmaSVaopeRS1Cs9Kuw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1zjPzcFdboSqis0Fkhccdg", "review_id": "OAn4Mio4vlY5VjTTug6kjQ", "stars": 5, "date": "2011-01-06", "text": "This is thee place to indulge your sweet tooth. Great ice cream and ice cream creations from an establishment with deep roots and long pedigree in the ice cream biz. Just can't be beat.", "type": "review", "business_id": "wzP2yNpV5p04nh0injjymA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "W9h1ufjEzDp7THyAqRw65g", "review_id": "haExcdo2cZyKHrVA-lnNDQ", "stars": 5, "date": "2011-09-25", "text": "Another visit: \n\nGreeeeeeat carne asada tacos, torta and that orange cake! Quesadillas, pork and chicken, were a great balance of cheese, meat and sauce.\n\nThat orange cake though?! Like, I am one of those people that would do ...things for good carrot cake, and the basic format of carrot cake done with oranges, cream cheese icing and all, was a wonderful flavor surprise. \n\nGallo Blanco looks like a top contender for Places to Take Visitors. Just a very well rounded place to give visitors a taste of good eats in Phoenix and examples of well done and delish Mexican cuisine.", "type": "review", "business_id": "-sC66z4SO3tR7nFCjfQwuQ"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "F6QsMoJdvtohlbnST-fDyQ", "review_id": "CXu-zGp78C73ugOWxxCmTg", "stars": 4, "date": "2011-10-02", "text": "Well, i was very excited to go to this event, however, not so excited when it was all over. The music was great and it is a very nice place. It really reminds me of Vegas. However, it was fashion week and we all thought that we would see models sashaying down the runway. But, no. No fashion at all. The wine was comp and it was very good ,i give great praise for that! But the samples of food were few and far between. The Servers skipped out many times. Not like most Yelp events which are usually out the door GREAT! We ordered from the happy hour menu. I fully agree lots of salt, but i think it was the soy sauce, it was the most salty..i have ever had. There is very little parking here as well so be prepared for that as well. All in all we had a good time.But, not as fabulous as most Yelp events.", "type": "review", "business_id": "VslWrTzjCFBG_2Ru9nwjMA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "qABKRj1ggJmtvrL9FMFtuA", "review_id": "7Wr_JzujZxyQvwJJ3-GnCA", "stars": 4, "date": "2011-01-03", "text": "I was a lucky girl the other night. Rico, B's husband has moved from Z Tejas to the Herb Box so I got to tag along to the \"practice night\", I'm sure there's technical term for if for those in the business but for me it meant free dinner at one of my favorite places. \n\nFirst, the decor. You can't work in interior design for six years and not notice design. They've done it up in a cozy Cape Cod feel with exposed beams, wide plank floors, lots of blue and sea colors. Not so much you feel like you're in a sea food restaurant, but in a chic way. It has a little bit of a contemporary feel and the bathrooms are very cool. Check out the sinks. Go on. You need to go just for that. \n\nB and I got there first, another friend was meeting us but was running a little late so we started with the cilantro crab dip, one of my favorites. There are nice, big chunks of crab in it and the plantain chips it comes with are thin, crisp and salty. For the main course B decided on the goat cheese chicken and enjoyed it. Our other friend got her old standby the Market Sunflower Salad and added salmon. I debated between the trout and the short ribs and ultimately decided on the short ribs but think next time I'll go with the trout. I have to say the short ribs were the second best I've had, in line right behind Chelsea's Kitchens. For dessert our waiter brought us a slice of the stout cake with espresso frosting, pure heaven, and a piece of the blackberry bread pudding. The bread pudding was more like a steamed dumpling and was lacking in flavor though the creme anglais it came with was creamy and unctuous. The espresso frosting on the cake reminded me of penuche candy. I wasn't too excited to get a piece of cake but it really was a nice treat. I just ate the frosting off the back I was so full by this time. \n\nThe Herb Box also has a beautiful patio with big windows opening to the bar and comfortable, intimate fireplaces. This is such a convenient location right in old town and steps away from the mall, I know it will become a regular place for me.", "type": "review", "business_id": "jRfdz5voj40P6WS9L54caw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "scxmg3Pu_jjpXSyFWH8-Cg", "review_id": "yQXBEAERmg0rYJdkYE06hA", "stars": 4, "date": "2009-10-05", "text": "only been here twice but the food kicked ass both times! biscuits and gravy is the way to go here. prices are right as well. definately recommend this joint. seems to be about a 10 minute wait to get seated. not bad.", "type": "review", "business_id": "y0weNFCIJF9bTgBbFST86A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KtSEziHaD34ZWPGTYD28lw", "review_id": "erK4HQD7QVrfDnuJDJEPWg", "stars": 3, "date": "2012-06-15", "text": "Sherwin is old and not very reliable but he is a really nice guy. I will give him that much. Very good optician as well", "type": "review", "business_id": "dBYmZ_HzQg61iZ7oeSHPiQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "I6KftQl6q4I7IuKV7wPR7w", "review_id": "Pa0j9chxMZpOhRb2A0R7DQ", "stars": 5, "date": "2012-08-09", "text": "Yummy!", "type": "review", "business_id": "cp39VURFby4A6u9m2It8jg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aM0LYqvjHQcx1cgihiFhRg", "review_id": "4xqSM_YHo_swoGNc-KU1EQ", "stars": 5, "date": "2012-11-25", "text": "My girlfriend i love, love, love this place. Excellent food, beers, and wine to enjoy on premises. Friendly, helpful, and funny staff. A wonderful grocery to shop from, and an amazing selection of cheese and wine. It's a total foodie destination. This place is fantastic. Ahwahtukee (and Phoenix in general) needs more quality driven, food and wine centric places like this.", "type": "review", "business_id": "nq2nT6PapbrISfhGxfDEwg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TQ5eVGOFr_qB5_BbEd3Sow", "review_id": "dAejHdhn19GmDtmqBgZ3Bw", "stars": 4, "date": "2010-12-15", "text": "Good food for a good price. First time I've eaten at this location but it was as good as I hoped. I got a half size Crunch Roll for an appetizer, and an order of Chicken Yakisoba. Both were very good. The crunch roll was very fresh with good quality ingredients, crunchy shrimp Tempura, crab, avocado, etc. The yakisoba wasn't quite what I thought it would be in that the noodles and meat were separate, not mixed, but that didn't affect the quality or flavor. It was closing time and I'd only eaten half, but I packed up the rest and brought it back to my motel so the workers could finish up and go home. \n\nThis was the fourth place I'd attempted to go to for dinner so I was especially happy to find them open. The first place, Azucar Peruvian, was right across the street from the motel I always stay at and I'd been meaning to try them since last summer. I drove over there to find they were now out of business with a sign up advertising the place going in next. I snoozed, I loozed.\n\n The second place was supposed to be open till 8:30pm according to their Yelp listing, but was closed when I got there a few minutes after 8.\n\nThe third place, Omega Gyros, highly recommended on Yelp, was also out of business. FML. \n\nSo when I got to Yogi's I was holding my breath till I saw they were open till nine. Thank you Yogi's!", "type": "review", "business_id": "04Jrd2zSzwHwmBqdKQDmIw"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "GPPHDWEZGjiw777_iTOJ1w", "review_id": "yPvIP_1TOgNgQaRF_UahjA", "stars": 2, "date": "2011-07-18", "text": "Cheap. Cheap. Cheap. Everything here is disposable, from the furniture to the linens to silverware. (Silverware rusted after one cycle in the dishwasher!). So if you like to redecorate often and have a minimal budget this place is for you. \n\nAs far as their food, I've only had a cinnamon roll here and it was stale. Bummer.\n\nMy biggest annoyance here are the people who seem to be beached out on all the couches/beds/chairs. Don't you have homes?", "type": "review", "business_id": "WUZxVr_CaRqEQgzvyeK5tw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kJyR4gT1pfCcNjEY9-YMoQ", "review_id": "pyqo0N3PT5lK4lxskQhMBg", "stars": 2, "date": "2012-08-18", "text": "Service here is unfriendly at best ( i sat in the bar)menu both lunch and regular boring .chips ok salsa served in a small caraf which makes it inconvienent to get salsa to chip. food was ok some of the chicken in my taco was dry do to the 8 million degree oven they put it in before serving to you . this place is a true tourist/youngen scottsdale hipsters joint", "type": "review", "business_id": "Exx5ffvnmk4MrTyCkPRuug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "hrzD6KL1x4k_wT9zWwRUoA", "review_id": "--QCUEmDBlipC_CEutGVFA", "stars": 4, "date": "2011-04-17", "text": "Went there for two games back to back days. The first was a night game and they had the roof open. The temp. inside was great and made for a real enjoyable evening. During the game was able to watch a 747 fly overhead, very surreal. \n\nDuring the day game they had the roof closed to keep the AZ sun and heat out. I personally thought it was a little warm inside even though they announced it was about 74 degrees, not sure if that was accurate or not. I know AZ spend loads of money on the AC, but I wasn't impressed.\n\nOverall the place is nice and all the amenities are very close by. I had sections 112 and 109 and both offered great views of the field and visitors bullpen. The service at the concession stands is great and the lines move by pretty quickly. \n\nStill not the #1 stadium in the MLB.", "type": "review", "business_id": "0UZ31UTcOLRKuqPqPe-VBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WQFJ8_V1lao4oZ_FKbk5Zg", "review_id": "S37cePjhYgk_yAGHmadRYQ", "stars": 5, "date": "2011-06-18", "text": "I love Honey Bear's! I've been visiting their restaurants for years. I've been to the one on Van Buran, the one on Central and this one in Tempe. They have the runniest sauce on earth but dang it tastes great! I love the pulled pork sandwiches but not the long lines at lunch. When I went after 1pm in the afternoon I stood in a line of one - me.", "type": "review", "business_id": "wQXqj3GTHsF3AcWB3LTxMQ"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "owposE-EYZZlbzEhMvTVvQ", "review_id": "oODLUnGtP6jbXHr_0gI8JA", "stars": 4, "date": "2011-10-20", "text": "VERY FRIENDLY staff. In fact, at times they seemed to be just a bit too friendly. I get that they train their employee's to greet every guest, but everytime you see an employee, or make eye contact, they are either welcomeing you to the place, or asking how everything is going. It was a bit of an overkill. And the place is loud. Very Loud. So loud it is hard to hear your table companions. And every so often, the music would go up a little louder, and all the employees would stop making sure every single customer felt welcome and aprreciated all the time, and they all did a cute little line dance.Other than that, the place is great. Nice atmosphere, great peanuts.\n\nThe food is reasonably priced and so very tasty. I am sure they know this, because they are constantly asking how your meal is. Well, not constantly, but pretty darn close. I had the T-Bone smothered in Mushrooms, and it was cooked to perfection. The rice side dish was a little sticky and over-cooked, but other than that, the food was an 9 out of ten. \n\nAfter we paid the bill and started to the door, again the service was overwhelming when no less than four seperate employess thanked us for coming and hoped we enjoyed our meal. The place was packed, but still seemed a little over staffed. I do like to feel welcome in a resturant, but not every time I turn around. Still, I think I will be returning for a good, resonably priced meal.", "type": "review", "business_id": "uECIvsUWlDWSiJ9jAfH_kQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JRkqD8JvtQATNTTv6UI7RA", "review_id": "0XQNmyxaBbZ_2M9AGA8RrQ", "stars": 5, "date": "2011-10-04", "text": "My favorite place in the world to eat! Great service and awesome food!", "type": "review", "business_id": "NA3tQYxR6Fq5O8nV6u41Tw"} +{"votes": {"funny": 2, "useful": 6, "cool": 3}, "user_id": "am9yAm4Ph7yk81sFkHlxig", "review_id": "nW0bT4oCSeFdfJggs9cqVQ", "stars": 5, "date": "2010-04-07", "text": "Love this place! I went with my Grandma and Aunt on a Thursday afternoon. The weather was great but just a tad windy so we sat inside. First I like the layout of this place, very open and airy. There are 2 outside patios one street level and then one upstairs. I actually have been here twice so far. First time was just for a mid afternoon cocktail with one of my stylists. The servers were very friendly and our concoction of vodka, grapefruit and cranberry juice was the perfect blend. \nThe second time we ordered 3 small plates to share, ahi tacos, artichoke and spinach dip and the mussels. All three were heavenly and very reasonably priced. The ahi was fresh and chilled, perfect for a warm day. The artichoke dip was different than any I have had before, gooey cheesy goodness that we gobbled up practically licking the bowl. The chips that accompanied the did were fresh and perfectly salted, even when the dip was done we still polished off the chips. The mussels were in a perfect white wine sauce but the stars of this dish were the mussels themselves. Buttery and melt in your mouth good, not chewy at all with no grit, to most common problem I find. The broth was so good I let the bread marinate at the bottom of the bowl, soaking up the juice. My martini was a generous pour and even though they were out of blue cheese stuff olives the bartender took the time to stuff some and deliver it to our table. \nNow on to the staff, all are a good looking lot but they are also skilled. All of our food and drinks were delivered in a timely manner by our lovely server Jennifer. We also met one of the sous chefs, Lennie. A charming fellow with stunning blue eyes, my grandmother remarked on them, a playful Mohawk and tattoos peaking out of his uniform. He swears that the sweet potato fries are some of the best in town and sent over a complimentary bucket. I do believe he is right, cooked to perfection, slightly crisp on the outside, warm and soft on the inside dusted with fresh herbs and I believe Parmesan cheese. After our meal the manager came over to make sure everything was to our liking. \nRnR is another great place within walking distance from my salon and I am looking forward to trying everything on their menu. If all the items are as wonderful as the first 3 I tried I am in for a treat!", "type": "review", "business_id": "sbsFamEj5wDxNAjUKrMcSw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "k5bDN0HquYYiScd5Tz41Pg", "review_id": "1NnqnOiV_totNbpK0YA-gw", "stars": 4, "date": "2012-04-01", "text": "Not much to write here. I always park on the Sears (upper level) side when I visit Chandler mall. My last visit to the mall, I ended up buying a luggage set on sale at Sears. The cashier was helpful and even checked to see if all four pieces were present (I didn't even think to, LOL). Four stars. No negative feedback to report.", "type": "review", "business_id": "8gJ-0SrGeUcRXgqZtrYLDg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "EQcq4HOhvBiHGC0B0cUQuw", "review_id": "GATwM7Io5fIu6yS8SgNYpw", "stars": 4, "date": "2010-07-09", "text": "I eat here at least once every week since it's close to my office, and they are always quick, tasty and reasonably priced. I usually get one of the lunch specials (even the Chinese-sounding dishes have a Thai flair, especially if you order them with extra spice), but if you're hungry the house special chicken is well worth the extra buck, as are the Thai noodle dishes (the pad see ew is my favorite). \n\nThe wait staff is always friendly, the food is always quick, good and reasonably priced. i haven't had a bad experience in several dozen visits, and i'll continue to call myself a regular.", "type": "review", "business_id": "17DI33J8TkcfzyoiIYLQIw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0cOh3F2ZwS-lsD5WatDIKg", "review_id": "sM822wQ4ioyojCZjKVKXIw", "stars": 5, "date": "2009-07-14", "text": "This is one of my favorite places to eat when I get back to town. Their beans are the best I've had. Their tacos are made of shredded beef and fried with the fillings inside. This makes the best product. All of you lucky enough to live in the state don't realize how lucky you are to have this treat! I'm usually not an enchilada fan, but you have to try one here.\n\nSome of the reviews comment on decor. While it is true the place is a little shabby and the salsa comes in squeeze bottles, I would much rather have their cheap prices than fine china. And that salsa, I really would be tempted to steal one of those bottles, but then I'd have to check it in my bag to go back home!", "type": "review", "business_id": "BM0-dgPJMBMmcmO9PVCJfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ky8uh65re8HtVTb8QmF_gg", "review_id": "FSWymg72OB1kmbHKQMVUhw", "stars": 4, "date": "2012-02-01", "text": "First time here--glad we came! Free chips and salsa (always a great start to a Mexican meal!). Hubby and I split the chicken fajitas, which were very tasty! Good-sized portion with lots of red bell peppers, which we like. Served with side of rice and beans, guac, sour cream, and pico de gallo. We each ate our fill and still had enough for a take-home 'fajita burrito' :D", "type": "review", "business_id": "mBDhy9j4qwKRnf4h8UQnrQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "thdVzCfKx-DV0zYWqId3pw", "review_id": "VuQKgYYoW1XbO5xe5247Qw", "stars": 5, "date": "2011-11-18", "text": "The line was ridiculous. The price is kind of steep for what it is. The dog is kind of messy because of the way it's made. But you know what? I enjoyed it in a way I haven't enjoyed a hot dog in years! Wow, that sounds kind of dirty. This really is a unique take on one of the most common American foods.\n\nI passed through the sea of trucks and people that is Food Truck Fridays on a mission to finally try the much yelped about Short Leash Dogs. I can't say much too much that hasn't already been said. While the 20 minute wait wasn't too thrilling, it all paid off in the end. I just went with a traditional wiener, with tomatoes, onion, relish and spicy mustard. While I was intrigued to try some of Short Leash Dog's specialties, most of the dogs on today's menu contained an item or two that I don't really like, and I wanted to compare Short Leash Dogs to what I am accustomed to the first time around. Good sausage, good toppings and the flat bread is fantastic. \n\nI would happily join Lindsey F. by tying my leash to the cart and following them around town. And I didn't even know that I still enjoyed hot dogs that much without a beer and a game!", "type": "review", "business_id": "xHI3saK0sAJEHeMK4IGVvg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7tA04v45dzG8tADZGLrCzA", "review_id": "_5lklZiJONNBSG2cgOvx2g", "stars": 2, "date": "2010-08-18", "text": "In a word -- Blah. It's a chain so I didn't expect much, and in this case my expectations were correct. I ordered the shrimp tacos were alright, but nothing to write home about. My take is that the food is mediocre and overpriced. Plus the service was sub-par; we waited over 15 minutes to get our drinks refilled and when we asked for separate checks the server grumbled about it. Believe me, there is better, cheaper, and more authentic Mexican food in Arizona.", "type": "review", "business_id": "KIgkwPEOxbfdeCk0ltycOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cBJqlNzyoJFak3_XRe2bvw", "review_id": "305sgj9i1yPW93-IuXtrCw", "stars": 4, "date": "2012-07-30", "text": "I went here for my sister's birthday as a new place to try after hearing about it on the Food Network channel. The vibe of the place is really special and unique, feels like you're at a private farm. The food was amazing!! I decided to order a salad just so I could sample all the home grown veggies from the farm. The strawberry lemonade was also top notch and came in a very large cup! After lunch, we walked around the fields and visited the coffee shop next door. The only negatives for me was the really long wait time (almost an hour) at 2pm in the afternoon on a weekday and how far of a drive it was for me. Overall, great experience...would go back!", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "slBhRBWNIb4mjcLy8LLkLQ", "review_id": "dFbdAtBkk6C7JBe0YWQStA", "stars": 4, "date": "2012-05-11", "text": "I was quite impressed very charming and kinda romantic to have a nice lunch , The service was friendly and attentive the lunch specials were good too ! The only disapointing thing is there is no soda fountain but other than that it's all good the pasties were very tasty and I look forward to going back soon.", "type": "review", "business_id": "wftoNIA0Q8nX-Da47psBCA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "fcvP-cuAN_h3Xu_uQOJDLw", "review_id": "pc1sOnsTiSNAKE5STZKJkg", "stars": 5, "date": "2008-04-08", "text": "The staff is friendly and knowledgable and the sales on stationary are always welcome. Lots of specialty papers to purchase by the sheet or in packs of 25 or 50, with matching envelopes. Oh so easy to give just the right touch to my correspondance.\n\nEven when they are swamped with business the staff is always ready to lend a hand or help with a jammed machine.\n\nWhen my puter is down I rent one of theirs for just $10 and hour with printing priveleges.", "type": "review", "business_id": "bhtt6q5W4oi-dpWz9skvJw"} +{"votes": {"funny": 3, "useful": 3, "cool": 2}, "user_id": "cB30-Og37dzCWFCFzI_ChQ", "review_id": "YOLAOVywdGyhclFTVlUnEA", "stars": 4, "date": "2007-05-23", "text": "The Chuck Box is dark. Very dark. Even in the day time it feels like night in that place. This doesn't help when it comes time to put condiments on one's burger. I am skeptical as to how well the condiment bar looks in good light, which may explain the choice of lighting. Still, grinning and bearing it, I load up my veggie burger with appropriate toppings and, usually with fried zucchini in hand make my way to one of the very uncomfortable seats.\n\nEvery time I go to the Chuck Box I feel as if there is going to be something wrong with the food, and this something is being concealed from me by the lack of lighting. Yet, each time I go I have a delicious veggie burger or grilled chicken sandwich. My friends have also enjoyed \"real\" burgers there as well. \n\nMaybe it's best they keep the lights dim, but the food tastes so good there may be nothing to fear after all.", "type": "review", "business_id": "4AKcmN--0hbF0kX9pg8scg"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "f8wOEYCAINZqDM8ddJ7u6A", "review_id": "3Xt-hVsaNFV6w0hj8qegvA", "stars": 4, "date": "2009-01-25", "text": "The pork chop & eggs w/ home fries is out of control. I feel the same way about this place as I do Roscoe's.... you don't go for an egg white omelet, you go to just enjoy yourself & eat some food that your grandparents used to make the old school way, butter & grease. Just too darn good to pass up.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "sljlQDKEhsHDt9Mx5B2b9A", "review_id": "KrSNzXWa2OlicxprnLn0hw", "stars": 5, "date": "2009-09-13", "text": "I went to Z Tejas with a bunch of people (about 25) last night. We had a great experience from start to finish. \n\nAt the beginning my lady and I were early so the waiter got us our drinks and continued to make sure we were good to go. We wanted to wait for our friends so food wasn't necessary at this time, but the drinks were flowing and the waiter (Jeff) was very cool, friendly, and down to earth. \n\nAll of our friends showed up and we let the good times roll. Chips and salsa, drinks, water, and the delicious cornbread, they all came very fast and it didn't take any begging on our part. \n\nI got a chicken dish which was really good, I stuffed myself silly. My lady got a side salad which was huge, she couldn't even finish it and she said it was really good. Oh! and the food came fast by the way (surprising when you have 25 people.\n\nThe overall vibe of the place is really cool, very trendy and fancy but reasonable prices. Big screens everywhere, gotta love that since there were some great College FB games on last night. \n\nGreat experience, thanks Jeff & Z Tejas.", "type": "review", "business_id": "duHUQFn7K-Ybs1rPI4AOEQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "EJkV29QY_oHwSngQiTj2rQ", "review_id": "Gh4LL78dmwCaFbzALyZm1g", "stars": 4, "date": "2012-03-28", "text": "Unpretentious in Scottsdale? There are only a couple of places that can achieve this in my book, and Mabel's is one of them. I had been wanting to go here, but just never got around to it. So when a friend was in town for work mid-week, we went to Mabel's for a drink on a Wednesday evening. The place was pretty empty, but the drinks were good and the staff was nice. The atmsophere is very swanky, with plush furniture, pictures/paintings of naked women on the walls, and ads for Mad Men. I would love to go back on a hot night to check out the food and the crowd.", "type": "review", "business_id": "vwZ15OkVO6PemAe87k0M-Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "aLTl_OkLo0BFRxdz1n6sYA", "review_id": "dNuLDz9ro9ywQggtle0g4A", "stars": 5, "date": "2012-10-12", "text": "Amazing food. I wasn't so sure about Indian food, as visiting this place was my first time at both the restaurant and the food itself. I had the Chicken Tikki Marsala and it was fantastic. I can't wait to go back!", "type": "review", "business_id": "W6624iddi14DsGokORyzcA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "llumwWva2EnHI7Dp95pcxw", "review_id": "PU_5X8kQwfbPis--kqsTFA", "stars": 5, "date": "2011-12-18", "text": "This is a great little authentic Mexican restaurant - don't let the looks fool you, it is delicious! I had the Tampiquena, it is one of the best I have had. Highly recommended", "type": "review", "business_id": "QxpX4slDIOGFEHlPV4mrSw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "z-qiYL3dTVpTN4tLFJSgRQ", "review_id": "4a9bqKsAGo2qmu6vqPEYgw", "stars": 4, "date": "2011-07-17", "text": "Being the pho addict that I am,I'm always on the lookout for a new place to satisfy the craving.This place was called Tu Do for a long time.It was a\nplace that never seemed crowded,with an older Vietnamese lady as the\nonly cook.The place was run down and the service indifferent ( I know these traits are not uncommon in Vietnamese restaurants).Then it was\ncalled The Ritz for a while,with a remodeled interior but with the same lady doing the cooking.Now,the restaurant has new ownership,a local Vietnamese family,and it's a whole new ball game.\n I ordered my usual pho tai bo vien with goi coun (spring rolls) as an\nappetizer.I'd give the soup a thumbs up.The broth was well balanced,\na bit on the oily side (that's not a bad thing for me),not the strongest nor\nthe weakest in town.The basil was fresh,the meat was of good quality and quantity.They didn't skimp on the noodles.On the down side,they\nuse those meatballs that have a more rubbery texture than most,and they only give you 3 of them (4 is the norm).Overall it was a good bowl of pho,but it's not going to unseat Maxim or Khai Hoan as my favorites in metro Phoenix.The spring rolls were above average,with no shortage of shrimp,and peanut sauce that tastes like peanuts,not hosin. \n The service is much more attentive now,and these folks seem eager to\nplease.Also worth mention is that Phuong Dong is inexpensive.Not quite\nPho Thanh and Da Vang cheap,but pretty close.Another good thing is that\nthey are open very late on friday and saturday, 1:00am! Late night pho fix!\nThey also serve beer.\n I like this place,I'm looking forward to trying the Canh Chua Tom.I hope they succeed.", "type": "review", "business_id": "MqnlCLq3b34Lq1Y7j7NY_Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8oY8gmr4NYwHgiYjTjh7Rw", "review_id": "FZ7xvRhs2ttO6-E0ALUguQ", "stars": 4, "date": "2010-02-27", "text": "Enjoyed lunch at the bar with my wife while on vacation. The bartender was one of the owners, the wife half who works a full time job elsewhere and the rest of her free time at the restaurant.\n\nNice beer selection, just the right size floor plan with great outdoor space, and you could feel the care the new owners put into the place.\n\nGreat neighborhood cafe.", "type": "review", "business_id": "M6fjHpkL9IRI-nI0BattRw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "HJLwvRnK22elM2vA4C4XtQ", "review_id": "nJzTOQuDPnQsV4Utja0jFw", "stars": 4, "date": "2012-05-14", "text": "Its a Wal-Mart, with a subway inside.", "type": "review", "business_id": "v91laC9hHODn2WcN_PLE9A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "s_dCojY_rhGDmMQBLYTkag", "review_id": "0slgYyr8Yw8m6HcZskjLFw", "stars": 5, "date": "2012-03-31", "text": "Great food! Great atmosphere! Great service. Definitely recommend!!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TriKet4yZ84pZjHnp5llKg", "review_id": "NDJ8gaQzCNJ0WO85LCyGsA", "stars": 3, "date": "2012-09-06", "text": "Was craving something different tried this place recommended by a friend. Was impressed with the lasagna. 30 min wait well worth it. \n\nService was ok food pretty good", "type": "review", "business_id": "VpW40mznMS43CqdbelX2wA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "125BWA95-0GR2tIQDZ23dQ", "review_id": "6H7QuV5u3hYBb7kHO77v0w", "stars": 5, "date": "2012-02-17", "text": "This is a dangerous place for me. I could seriously do my bank account some damage as I love love love this store! The candles are the best anywhere. They burn very clean and the fragrance lasts until they burn out. I just bought the kumquat scented candles and they smell delish. There's so many cool home furnishings here as well, unique non-mainstream stuff that's fairly reasonable in $$. I've actually got my eye on this really cool apothecary cabinet... purchasing it may be in my very near future!", "type": "review", "business_id": "XF4Tm-FcppqQZOXmpwd1iQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AslaCd9aCdWnlMFFheTVBg", "review_id": "tn8G7HV5WYDlG0d-xXVWrg", "stars": 4, "date": "2012-01-18", "text": "Delish! We drove around looking for a good steak without a wait and ended up at the Phoenician. With the restaurant concept by Jean Georges, we knew we were in for a treat. \n\nThe only reasons I'm giving 4 stars are two-fold:\n\nThe shrimp cocktail was overpriced - $18 for 5 shrimp? C'mon...yummy but lame.\n\nAnd\n\nThe desert menu is seriously lacking - I was expecting to see at least one amazing thing and they were all boring: cake, apple fritter, cheesecake, gelato...boring!!\n\nOther than that, everything was amazing. I'm getting over a cold and they brought me out my own tea kettle which sat next to the table and stayed hot for two hours. And the finishing salt they provided in a tiny bowl was a great touch!\n\nOrder a steak, it'll be cooked perfectly with a great crust on it. Have them bring all the sauces too; their bernaise is ridiculously fluffy - they infuse it with liquid nitrogen!! And the beurre blanc is perfect and delicate.\n\nYUM (PS, if you get Mercedes as your server, you're in for a treat! She's amazing!)", "type": "review", "business_id": "hh2lP4_2N-tk_OxmaTf_qA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BoQ6RqL4aLny75aBqrODUg", "review_id": "dvUS8HhPCO0lPFn5M4n9HA", "stars": 5, "date": "2011-10-12", "text": "The consummate beer bar. Great selection, knowledgeable bartenders and eclectic patrons. What more can you want from a drinking establishment? The food is good too.", "type": "review", "business_id": "luCSjoNQ9q_0QIjKKOy2pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "B9HOtucux0SS0mY3R9uViA", "review_id": "2C9TM-fD3PuRviN-WwzxcQ", "stars": 4, "date": "2009-09-28", "text": "a great place to spend an evening that has the taste of fine dining, but the feel of casual...the waitress was great...always one step ahead of us.....the desserts were wonderful and they comp'd the birthday dessert....\nthe portions were just right...even took some home for the next day....\nwe will be back....", "type": "review", "business_id": "mxrXVZWc6PWk81gvOVNOUw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CcdJ_VhU_zqe2fL7G3eXug", "review_id": "vE1ZUN_folRLOxvFnUFXNA", "stars": 3, "date": "2011-06-02", "text": "Spinato's has great red sauce for the pasta but I prefer a more earthy pizza. High School kids love it though. \nThis restaurant was a Chili's before, but they have remodeled and did a fabulous job. The take out door is discrete and the bar area is large and comfortable. \nFood portions are quite big and they have a nice selection on the menu.", "type": "review", "business_id": "ZRJwVLyzEJq1VAihDhYiow"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "z2ugesAundnFE1BU66qpww", "review_id": "HNSTzgYI1lZuFwwCpFI6fg", "stars": 4, "date": "2009-11-14", "text": "Their Bruschetta selection was absolutely amazing.", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "tu0ulicth-HaZtG6XmnO5w", "review_id": "nqdSaj3jzAI4_eItVDKyPw", "stars": 5, "date": "2012-04-14", "text": "Service at this location is superb and worth the wait when they are busy. Price and selection are awesome too!", "type": "review", "business_id": "VUkQrhwFxVnD1rIOmM37cQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "am9yAm4Ph7yk81sFkHlxig", "review_id": "bNU66r2lUz7hiXiD1TP9Og", "stars": 4, "date": "2010-03-11", "text": "I came here for the first time on a rainy Tuesday afternoon for lunch with a great friend I hadn't seen in 6 months. Our server who was cute as a button picked up our \"we are not in a hurry vibe\" right away. We ordered a bottle of wine, fairly priced and loved the added touch of a chilled wine glass. Our food was very good but no real risk was taken. We shared the fish and shrimp tacos which were flavorful but I had to add some hot sauce to give it a little bite. The beans and white rice were a simple filler, nothing more. The menu looked interesting and the prices were fair so I would definately try it again.\nThere were only 2 things that I found disapointing, first was after we ate I ordered a martini, one from their menu, it was fruity and you couldn't taste the alcohol at all. The problem was it was served in a very small martini glass and I feel when you are going to make a fruity concoction and call in a martini the glass should be bigger, not the James Bond shaken not stirred size.\nSecond problem, as we were eating a woman came and sat at the table right by the restrooms and plugged her computer into an outlet that made the cord block the restroom door. Now my companion and I couldn't decide if she worked there or not, she never ordered food and wasn't there long. But just the fact that the cord blocked the door and could have been hazardous really bothered me.\nOverall though I give the place a B+", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "nGQPhL4XtvlMxgwIIT5knA", "review_id": "cIcl6vPkVcrHYQLC-ZsxEw", "stars": 5, "date": "2010-10-29", "text": "I have played this course two times now. From the moment you pull up, you feel like you are at a private course. The staff is very friendly and professional. The views are breathtaking and both times I have played, the course has been in impecable shape! \n\nThe course is challenging, but still enjoyable. Lots of holes that are down hill (great for long tee shots!). This is one of my favorite courses in the area!", "type": "review", "business_id": "rN-rVMF0yFEukpSx6Go3XQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "xfX5LfEnBUWb8iL3B4VqHg", "review_id": "dlOtbioiF6Ol4wMx5-UIig", "stars": 4, "date": "2011-12-09", "text": "This one is consistent every time I come to this restaurant.\nGood flavor, good service. \nOn occasion the fixings selection is a little \"off\". Brown lettuce and those tasteless winter tomatoes. But the good thing about a burger is that they are still good wiht just the basics.", "type": "review", "business_id": "OEQMqI-duBA1gbBFzi7BPw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "n9Nl4sE7QPpgoo_f2q2viw", "review_id": "jfD7x90uq5nZIcxm7RdZVw", "stars": 5, "date": "2012-11-17", "text": "I liked this place. The reviews show low stars but I liked it. I was there for happy hour so go at that time. The pricing is good. I don't know about dinner, but happy hour is cool. Servers were chill. Host was a bit stuck up. Not sure why she though she was that great. But the place is cool. I recommend people check it out if they want to try a sushi place on the Mill ave when you are in town visiting Tempe.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "Iycf9KNRhxvR187Qu2zZHg", "review_id": "-1MFWd_8--J9SL0dkNKmFQ", "stars": 3, "date": "2010-02-16", "text": "Had breakfast this morning while waiting on getting my windows on my car tinted. I had the build your own omelete. I got it with chorizo bell peppers and cheddar cheese. It was pretty good and the portion size was big for the price. They had fresh squeezed orange juice too. Not the best breakfast I've had but it was good.", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hEhSTtxy6JOCa-HPAsxTCg", "review_id": "Jv_fTJmAZGMqfT91sEVWJQ", "stars": 1, "date": "2011-09-18", "text": "My g/f love sushi! She made me a connosiuer of it. and I have to be critical. So many college kids \"love\" RA, but it's mediocre at best.\n\nI'll just list a few things that irk me:\nI went during a happy hour with co-workers. It was PACKED. Good thing, right? WRONG!\nExtremely poor service. when I went in to meet coworkers who already had a table the hostess told me I have to wait. When I said I have a table, she got in my face. I was tired, long-day and I wanted to chill. I walked past her, found my friends, and she left me alone.\nThe waitress took quite a bit of time to get around to my table, and the sushi servings were OBVIOUSLY LOW!\nI went to Zen 32, and now my choice is SakeBomber. their happy hour servings are much more than RA, and their prices are BETTER!\n\nBe ready for loud noises, as every one is trying to talk louder than the music, and the person next to them.\n\nJust an overall poor experience. and I tip on service. \n\nFood quality was so-so. Just don't go during a happy hour, which is the only time it's worth it because it's priced so high.", "type": "review", "business_id": "jEWfxxA_kjeJE_Z_ku3zLA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "L3XWX_dd8_pYnRSMdppjDg", "review_id": "0o59nVqoohULIK4N22Yr-w", "stars": 3, "date": "2010-03-07", "text": "Jason B. and I decided to try this place on Saturday night. I looked at the menu online and though the food sounded really interesting.\n\nWe started with the Artichoke Croquettes, and the Calamari as well. We were disappointed in the Artichoke Croquettes, you get 4 half Artichokes fried with alternating Marinara and this white sauce. The only thing that was good about this dish was the white sauce, which we used to dip the Calamari in. The Calamari was your average calamari, nothing special! \n\nI ordered a the 19th Street Burger, which was cooked perfectly and came with a spicy sauce, not sure if the sauce was for the Onion Rings, but it was great of the Burger.\n\nNot sure I will be rushing back to the Armadillo Grill, but I wouldn't say no to going back again!", "type": "review", "business_id": "CqhsIZ7TzCfJTrZqg5-gqQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LlvlJT053ZS6ozDjkmbnjQ", "review_id": "GOpzaChUxidCg12Kfxi4Uw", "stars": 4, "date": "2011-06-19", "text": "This park is fun for anyone. They have attractions for anything you are in the mood for. They have a full water-park, arcade, go-karts, bumper boats, mini golf, etc. It is a fun place to hang out with your friends. Depending on what you are planning to do, the prices vary. Go-Karts are $5, Golfing is $7.70 (don't play the last hole, keep your ball, and go to the next course), arcade is addicting!", "type": "review", "business_id": "0a8hLC1V7jgOjRigoBohAg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XLah_ynCwwYshCY9jc13tw", "review_id": "XjoDHzsH91lmIy3540VfbA", "stars": 4, "date": "2012-03-15", "text": "Great place for shows. Excellent place for everyone.", "type": "review", "business_id": "ohxd8La86GdC_3vgwBWLHA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0Jlviq1YD76N-WK_GUeDMw", "review_id": "C1gBmwTeT2X7PN-rRxZXgQ", "stars": 4, "date": "2011-07-21", "text": "I was contacted by the manger at this location cause of my bad review, I am really for proactive owners. I really need to go back to this location to give them another try since the first time I went there it was really good. I was given a gift card to wipe out what I paid for the last meal as kinda of do over. I will be back Anthony and I will let you know how my next visit is.", "type": "review", "business_id": "QnAzW6KMSciUcuJ20oI3Bw"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "LB7HoDg61yWP2CjrueeJUQ", "review_id": "zlR8UR3P-n-CfJb7QbLYTg", "stars": 4, "date": "2009-07-18", "text": "I've been a Char's patron since before we were legal to be in there (many years ago, previous owners). It has always been a lively place with a diverse crowd of aging black hep-cats, college students, bikers, tweakers, college students, heavy middle aged white women who love black men, the ocassional tranny and Hispanic couples on dates with a sprinkling of occasional stippers/hookers. In other words - everything you would want to make a blues bar entertaining and just seedy enough to be interesting. \n\nThey are one of the only places in Central Phoenix with live music almost every night of the week and the cover, if any, is typically only a couple of bucks. The place is small and dark and crowded, like a blues bar in an old converted house should be. Talent varies by night but anytime you go it's passable. Personal favorites are lady J and Bam Bam and any combination thereof, which is what you usually get any way. Wander in on a random Monday night and 11:30 and you will find music, cruising, and drinks waiting. There is a small enclosed patio up front for smoking, about 16 spaces in their lot and street parking available on the residential street, but watch the signs and don't block driveways. You can also cross 7th Ave, but be careful dodging cars. The neighborhood looks scarier than it is so don't be alarmed by a transient or two wandering down the street but they don't bite unless you pay extra. Close to lite rail as well in case sneaker pimps want to try to cross over from Central, but hopefully they won't.", "type": "review", "business_id": "ybXlbfOjrKDdz5NoC-G9Gw"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "xdl61MWMguYRSunH8CniQw", "review_id": "_M9-oOxWziafPtvjLKfr0g", "stars": 3, "date": "2012-04-23", "text": "My gang usually stumble in her at some point during our nights out and about in Old Town. They have a decent selection of beers on tap and there are usually a couple tables open if you want to sit down. It's a bar, not a club, so don't expect much. They have servers that are polite and prompt and the wait at the bar isn't usually very long. \nWorth a stop to support a local biz.", "type": "review", "business_id": "8Fx-K9dIZz_buBZcEvkeRw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "TA6CcCUag4lftPJDuhhFuw", "review_id": "WKG7V6MbL7c8D0Fv0Y6jbw", "stars": 4, "date": "2012-06-27", "text": "I really like Maizie's, but unfortunately will not get to go as often anymore. I hate to report that after our last visit, my husband received a bad bout of food poisoning. It was, in fact, his first time puking in approximately 10 years. It was not pleasant for him and it was not pleasant for me. For that reason, I guess I'm going to have to drop one star from my previous review. \n\nThe thing is, I really love Maizie's. I love their menu and I love their atmosphere. Unfortunately, the portobello sandwich...or maybe it was the cottage cheese...just doesn't love my husband and that means I don't get to visit quite as often. :(", "type": "review", "business_id": "AaKlegu7gmOCD4rEESF76Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IgXUM_WyCgqyzA01mN5HKg", "review_id": "bQgDV8P5CX3KbsWk7OrS2w", "stars": 4, "date": "2010-11-22", "text": "I always connect here because I fly US Airways from Las Vegas. But everytime I have a stop over here, other than a major back track to the Bay Area, I don't really mind coming here because it's a well maintained airport. It might look old but it is always clean. \n\nI'm only here about 1 or 2 hours at a time but I can't help but notice all these restaurants in here, if you're hungry and don't mind 'airport prices', never fear selection is here. \n\nAlso be prepared to walk close to a mile to your connecting flight. There's LONG hallways here. Don't worry, they have standing walking escalators.", "type": "review", "business_id": "hW0Ne_HTHEAgGF1rAdmR-g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "qRo9gHN5OiV1-peDuhCh-g", "review_id": "2_RWlYAT9pEedFknTGh4zA", "stars": 3, "date": "2012-08-19", "text": "Really solid lunch deals and pretty close to Tex-Mex which I still get cravings for from time to time. I had the spinach chicken enchiladas and they were nice. It was a ton of food (of course) so we definitely needed boxes for leftovers. If you're in the neighborhood, it's a solid deal and I'd stop in again. My only wish is that they did a green sauce with the spinach chicken enchiladas. That would be heaven.", "type": "review", "business_id": "glalhJa7wFWPIoJLBvKGfQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "lwppVF0Yqkuwt-xaEuugqw", "review_id": "xXbfPT5hRkjPcFeTnRDtyQ", "stars": 3, "date": "2010-02-21", "text": "Alison B. sums up all the great things about this unique store - and I would return if I was looking for a unique gift for any female friends of mine.\n\nHowever, when I went in on a Sunday I was 1 of 4 women in the store. The man working was chatting it up with the 3 other women who turned out to be together, and once they left he had a seat and didn't say a word to me as I browsed. I walked out after several minutes of silence.", "type": "review", "business_id": "0rd-jRz43JDkx1ghoHnEXQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "Pc6oM1OHdl82PUoumiPzmw", "review_id": "FCAvAcMAj-VIGtzg2YdyKw", "stars": 5, "date": "2012-12-12", "text": "I love this gym! Everyone is so helpful and friendly. The gym has a TON of equipment and is always very well kept and clean. I wouldn't want to go anywhere else. I feel very well connected to all of the staff - they even know me by name! The trainers are extremely helpful also. I would recommend this gym to anyone and everyone!", "type": "review", "business_id": "Iu8jmmDFcDSf5PCdor1dvg"} +{"votes": {"funny": 3, "useful": 5, "cool": 5}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "5-xqg_2KpZ4Um2hVvBUQiA", "stars": 2, "date": "2010-04-25", "text": "I came in here wanting and expecting this place to be amazing. I wanted this place to be 5 stars. ugh, I feel like a failure for giving it 2. I've heard such good things about this place, and was expecting it to be good, but unfortunately, it was not. :-(\n\nI walked in and placed my order. The menu seems to be decent enough, with a fair amount of selection. Ample amounts of toppings, and you can have your burger a few different ways. Mind you, I'm a burger lover, so I'm always up for places like this.\n\nI ordered a regular burger with all the fixings and BBQ sauce on top. I got the fries too. It came in a brown bag..I guess thats how they serve it regardless if you eat in or not.\n\nI was dissappointed with the burger itself. It seemed like it came with way to much topping. I mean, like an overwhelming amount. I ate it, and the burger was okay, but not as good as I have experienced at other comparable places. I wasn't looking to be \"blown away\" by the burger, but I wasn't really impressed over all. It wasn't that great, to much on the toppings, and it didnt really do much for me. I will say tho, you get a TON of fries tho.\n\nI left feeling underwhelmed, and don't know that I will be back in the future.", "type": "review", "business_id": "ahKN6wh6z2vZsd8C7AyG5A"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "VxRPbgauDdOcA3eg1uazXA", "review_id": "ZLV71s7RzywyPiBT-6TIKQ", "stars": 3, "date": "2005-07-10", "text": "You're in 120 degree Scottsdale weather and you need a casual change of clothes, a bite to eat, and a refreshing adult beverage; Tommy Bahama can do it all under one roof. A retail clothier on the bottom floor and a decent, predictable place to eat and drink upstairs...ok, I'll work with you Tommy. There is nothing special about this place except I found their service in both their retail space and restaurant superb. Try their grilled crab cakes and their twice shaken martini.", "type": "review", "business_id": "E28ht8IEiO6FZbKktSo0Xw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "_hCoELWb_ERmEhR_ZJdgPw", "review_id": "egZX_g3cRLcu-Mmnp9gL3w", "stars": 5, "date": "2012-01-02", "text": "Kick @$$ The Best of the bertos & they will make anything you want_!! Carne Asada with Sausage & Ham........Wow..", "type": "review", "business_id": "Ddsln32r-uA7hq_0ksaNZA"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "hvgYD6Pmyaa6hS39ymIQBQ", "review_id": "bTnuFjPsj-LgB2FYwtkWow", "stars": 3, "date": "2007-09-27", "text": "I've only ever been here for Transylvania which is their Friday night Gothic Industrial night. It's acceptable. I have high standards. Sometimes the music is really good. Sometimes it sucks. They have 2 DJs and I can always tell when the switch from the one whose tastes I enjoy to the one whose tastes I don't. If you're looking for Death Bunnis, Razor Grrls, Baby Bats or *sigh* Suicide Girls, you'll find a few of them here. There are a lot of regulars and I usually have a good time, unless of course I don't. The people there have all been fairly nice.\n\nThe drinks are nothing special. They aren't terrible, they just aren't terribly consistent. If you need to get wasted, get some shots poured. At least that way you know what you're getting.\n\nSo when you need to strap on your boots, wear your eyeliner, and shake your ass, give it a shot.", "type": "review", "business_id": "SiwN7f0N4bs4ZtPc4yPgiA"} +{"votes": {"funny": 1, "useful": 0, "cool": 2}, "user_id": "y__MQ0huPNC4qarwMD8GlQ", "review_id": "mR4_8Z80PDCV9tER2IPGWA", "stars": 5, "date": "2008-07-02", "text": "I love this place! It first caught my eye driving to work. Their logo includes a shazzam lighting bolt which is rad if your into comics. I went in the place and they had comic art on the walls. The staff made some suggestions of what I should try. I got the slider pizza - (kinda like a cheese burger pizza) they actually used a little brown mustard on top. Anyway it was delicious. I can't get over the helpful staff though. It is very rare that I get that kind of service at a pizza joint.\n\nAny way every time I have visited the place there has been no patrons and it breaks my heart because that is a good sign that it isn't going to be around long. \n\nIf you get the change PLEASE check this place out.", "type": "review", "business_id": "RdzsxC8Q3ybBcJohpywSwQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZyntP_awJOJHiXVoiJlHvg", "review_id": "rKP6Yx2EtmriMzAvRvUiug", "stars": 4, "date": "2010-11-14", "text": "Yummy! We would go to Canter's in LA before I moved out here so this is a good comparable Pastrami Sandwich. Very close to where we live which is great. Prices are fine, a bit pricey, but oh well. Overall, thumbs up!", "type": "review", "business_id": "TpQMR-JFE5V0UPzTjjuwFQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "iwWBF3nKoRMoy1sbkLJwvg", "review_id": "0gNZ235FAIUyBYlyYsRLBg", "stars": 4, "date": "2008-07-15", "text": "I have confirmed the rumors that Big Wong will be closing before the end of the year. The owners have been locked in to a lease they assumed for the last 15 years and with the down-turning economy aren't able to continue.\n\nIf you want a very reliable meal in a super friendly environment, rush on over before they close their doors forever. : (", "type": "review", "business_id": "SBCxhkeiaXdjXECeFn-mtw"} +{"votes": {"funny": 11, "useful": 16, "cool": 14}, "user_id": "78Ed1ndOak2kmzljulPfBg", "review_id": "XDXj0aeWoG6wp7xiFP_zrA", "stars": 4, "date": "2010-02-24", "text": "Agree with everyone on here, this is some really good food. Very laid back un-asuming place inside another strip mall on Bell Road. Ah what treasures lie hidden in a strip mall....\n\nWe were greeted by a friendly young man who took our order right away, I ordered, well I don't quite remember the name, but it was steak pieces with french fries and onions, and rice. I was fooled by the mild salsa that came with the chips and said, \"hey can you make my dish spicy?\" The server said no problem, and while the dish was very fresh, my mouth was on fire, and I touched my eye and it was like pepper spray or something. I love hot food, I can eat Los Dos Molinos Abogado ribs for example with little problem, but this stuff kicked my butt!! It had little red peppers in it that I have never experienced before. HOT!! I kept remembering Deb's review:\"....this is not Mexican food....\". No kidding, next time I will get it milder. My eye burns still.....\n\nWife got a milder flat pan steak dish with lentils and rice. She praised its freshness. We also split a red beef tamale (they were only like $2) so it was just a sample but decent.\n\nThey only have 6 tables in there! And they had to change their name due to copyright infringement from a restaurant in Texas according to the young man. Either way, we will be back for sure. Good stuff!! Something tells me there is more burn to come, perhaps tomorrow if you know what I mean? Beware! They can really spice it up if you ask them too. I met my match at Mi Comida....\n\nFresh ingredients, nice people, and a nice change from Mexican food.\n\nRecommended! Don't touch your eyes if you touched those little red pepper things, that is for sure!!", "type": "review", "business_id": "_oQN89kF_d97-cWW0iO8_g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pEVf8GRshP9HUkSpizc9LA", "review_id": "o8ere9_RTCCESrdBOF3reg", "stars": 4, "date": "2010-08-04", "text": "This place is very popular and I can see why...the food was incredible! Cool, neighborhood place with good service.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "cjU6TqN3bSiW8ShYSoF-0A", "review_id": "2tMqPdc0Ogk11ADgKoeGuA", "stars": 2, "date": "2012-01-25", "text": "Heard a lot of good things about Pete's. I am from the Gulf Coast and was not expecting to find anything that would compare to the delicious fried seafood of back home. Glad I set my expectations low.\n Pete's fish is ok, square, almost like processed but not. Strange but tasty. Chips are decent, taste like typical Ore-Ida frozen fries. The Onion rings were good (super greasy though). My biggest problem is that I am a bit of a traditionalist. If you are gonna call it \"fish and chips\" like they would in the UK, then you have to at least have malt vinegar. The red sauce is good with their fries and rings (and maybe shrimp) but not on fish. It is the only sauce they have. I hear the burgers are good and may go back, if I am already in the area, to try one. I wonder if they have mustard? They may be trying to do too many things at once here. Seafood, Americana, Mexican, (fish, shrimp, burritos, hot dogs, chicken, oysters) Just a thought.\n The seating is outside, if its summer you must get it to go. Between the heat, pigeons and huge flies (serious kitchen hawks) you will not have a good time. \n The prices are very reasonable but they only accept cash. I would not go out of my way to eat at Pete's again.", "type": "review", "business_id": "Yw86Jnab9ixke9xJ5pLhMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "CQ-YFX-YGI_Mtne41HkSVA", "review_id": "Qxihaq_UCehA7lVQl97muw", "stars": 3, "date": "2011-05-25", "text": "I am writing this update soley based on the feeling one gets when going to Spitfire Grill, the food and drinks are always good.\n\nOur complaint about Spitfire is that the owner and staff is never very welcoming. My fiancee and I have been there 15+ times and there is never any recognition by the staff. The owner is always there and he has never introduced himself or thanked us for coming in again. The servers have never said 'welcome back or good to see you again'. For a neighborhood restaurant I would think you would want to make your regular customers feel appreciated. We love the food and the restaurant is right around the corner from our house, but we lean toward other, farther away restaurants with a more weloming feel.\nFor example, last night we went to House of Tricks in Tempe. It was our 4th visit. When we walked in three of the employees greeted us and welcomed us back. The bartenders remembered what we drink and asked us about something we discussed last time we were there.\nTalk about feeling welcome! Spitfire has a lot to learn if they want to survive in a neighborhood lacation.", "type": "review", "business_id": "vnffHkFJbmd-J3OaBbK2Eg"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "fPHLPrymsyb6WSFFKoMrTQ", "review_id": "hoNecQuL86iCHowOtzMZig", "stars": 5, "date": "2010-12-09", "text": "Favorite Pho in the phoenix area so far. \nGreat, tender meat in my pho chin nam (#8).\nI see they also have bun bo hue on the menu so I'll have to try that sometime soon. \nNom nom.\n\nFriendly staff.\n\nSee ya there!", "type": "review", "business_id": "MAfc2V_EVtyR9rMxxEAPLg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "h7v_M_0-YVpSVZ2WD7FpAA", "review_id": "jxvNPfbkglmuKGyUDdKHsw", "stars": 4, "date": "2009-02-05", "text": "Fun, Fast, Easy, Yummy. Nice Flatbread style pizzaz, done right, crispy, not thick & greasy. Yummy fresh & unique toppings. Crisp salads. Good place for kids :-)", "type": "review", "business_id": "JxVGJ9Nly2FFIs_WpJvkug"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "7eReGh-28-2I7TLB0PUXIA", "stars": 4, "date": "2008-01-23", "text": "Newly opened no frills supermarket import from the UK with interesting ethnic food selection.\n\nThe fruits and vegetables wrapped in clear plastic sitting on black crates reminds me of my neighborhood Tesco's from my days in London.\n \nCool thing about this one is the variety of products carried on the shelves. When's the last time you're seen tripe or pig's feet at Albertson's or Safeway. And hooray, I can finally buy Chaokoh (the only good brand of coconut milk) in Scottsdale without having to trek all the way down to Lee Lee's or Ranch Market. \n\nGreat selection of fresh meats and cheeses. The only place apart from Trader Joe's that I've seen unpasteurized orange juice, which by the way tastes way better because heat kills the fresh taste.\n\nMuch-needed addition to an area saturated by the boring standards.", "type": "review", "business_id": "DbI6ezKctN4Z5SV7LvG4Sg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cWg07SD9-PnDUglqtS5owg", "review_id": "YXnYNEynrmsQi-kbK4dWAw", "stars": 5, "date": "2010-08-27", "text": "Alright this is the deal of deals, 2.75 for students and Im not sure if its a quarter more or not, but less 4 dollars. half an ice cream cookie sandwiches, trust me its enough. \n\nIts a great pick me up for something sweet on mill\n\nCookies are made their along with the good ice cream, and if your not into that they have italian ice.\n\nPlace is small, but is packed with flavor, and smells like fresh cookies.\n\nRecommendation: If you love cookies made into sandwiches", "type": "review", "business_id": "AsSCv0q_BWqIe3mX2JqsOQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ph051iWFcTzyIjcVV3dAew", "review_id": "x0smAOppHki0HF7FNeIyVg", "stars": 1, "date": "2008-08-18", "text": "Bad food, but lots of it. If you have a hangover and need grease, this is your place. Other than that, drive a block and eat at Mucho Gusto down the street--now that is real mexican food!", "type": "review", "business_id": "VBhgkRUNe9gjc1HpmHA3Zw"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "gN4JuiRC2sIssc1qijg4Zw", "review_id": "mT11XaPCwS-9352pmywknQ", "stars": 5, "date": "2012-04-12", "text": "Stopped in for Margs and appetizers.\n\nHad 2 house Margaritas......AM I DRUNK?\n\nHoly MOLY what do they put in those things?\n\nFood was great, drinks were better, I'll be back!", "type": "review", "business_id": "NYIyTj2AZJpAo7XIM-Z7lw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "M6oU3OBf_E6gqlfkLGlStQ", "review_id": "FTtMZ68xQba87bE8EkRdvw", "stars": 4, "date": "2011-11-17", "text": "Thai, Vietnamese a nice patio, good happy hour and a swanky inside they have it all.\n\nDespite being a nicer place as Asian food goes the prices are quite reasonable and it is really a great value. \n\nThe happy hour menu has Asian tappas (apps) for $5 and many $5 cocktails and glasses of wine. WE had the salmon satay which was just grilled cubes of salmon on a stick with sauce and some salad, good but nothing special. The veggie wontons were great in a brown sauce and filled with veggies and again a small salad garnish.\n\nMy cocktail was great but it was a bit strong.\n\nFor our mains we had the Salmon with green curry, It came in a HUGE Bowl it was rich and full of great veggies and fresh not overcooked fish. $12.95\n\nWe also had the dragon noodles, which was veggies tofu and glass noodles. It was light and fresh. ~10\n\nOver all great quality value and patio I will be back.", "type": "review", "business_id": "E4b5OC_6mZ0V7B6Nyjncsg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "vHXGBSYIwgMPsZF0SGyR7g", "stars": 3, "date": "2010-06-12", "text": "It was my first visit to Wienerschnitzel and OMG two words CORN DOG! It is better than the ones at the State Fair. I also had the polish dog. I am sorry but Costco's is better. The french fries were OK. The best thing I had was the corn dog.", "type": "review", "business_id": "6NAOp61ozWlO6KCxTlgCkw"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "0bNXP9quoJEgyVZu9ipGgQ", "review_id": "XZKSyI-jcqcYspafMceVkA", "stars": 2, "date": "2009-09-18", "text": "The ambience is a feast for the eyes and for the touch, this much is true, but one is paying a very high price for this exclusivity. While I liked waiting in the lobby- couldn't sit at the sushi counter until it was open for dinner service at 5:30p- I did notice that for a venue that strives to project a life of luxury, housekeeping hadn't come by to clean food debris off of the coffee table (closest to the sushi restaurant's host desk). Not even when a rep came by to alert me to a bar menu sitting on the table and asked me if I had wanted anything from the bar- she had to have noticed the mess?!\nI ordered a $9.50 spider roll (soft-shelled crab), a $10 veggie tempura app, and a $19 baked lobster roll, all priced at 50% for one week during their 1-year anniversary. They're all good, and factoring in the ostentatious surroundings, I'd pay $9.50 for the soft-shelled crab roll, but I'd put my foot down on the other two. 50% maybe, but $19 for a five-piece lobster roll? Yes, it was very tasty, and yes, the cream sauce was orgasmic, but for $19, I expect moments from the restaurant scenes of \"The Ugly Truth\" or \"When Harry Met Sally,\" take your pick.\nIf you've money to burn or have someone else paying for the bill, then this is your sushi stop near Old Town Scottsdale.", "type": "review", "business_id": "52QtjHlHoa7V611bOvv1aw"} +{"votes": {"funny": 2, "useful": 2, "cool": 2}, "user_id": "YsPqt0gxG60l0cJvHl_ylw", "review_id": "p_2omAIO3EmTqf4Fdyiihw", "stars": 3, "date": "2012-12-09", "text": "Expect to pay $10-12 for a decent burger and fries in a tacky, blue-themed interior in cafeteria-style tables and seats.\n\nThe happy hours isn't bad, as it boasts some reasonable and fun appetizers along with $2.50 IPA drafts, among other options.\n\nThe service was decent, but not great, and the ambiance as a whole didn't seem to be worth the prices on the dinner menu. At least, I can think of several better options.", "type": "review", "business_id": "5_tsOGJQDDl9iKOr8K79Rw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "0N8jAcXewpjG-SrOa_QeTQ", "review_id": "8GtXhZduG7LSSjdrfmfZvA", "stars": 4, "date": "2011-08-22", "text": "Stop the presses and buy a lotto ticket, I'm actually giving a place on Mill more than 2 stars!\n\nThe bf and I came here around 10 on a Friday night and were FINALLY *pleasantly* surprised with the place. We've been to several places along mill trying out the area since we moved here and have been met with nothing but sloppy people (both young and old), watered down drinks, and mediocre service.\n\n+ no cover, nice doormen/bouncers (though there's a $5 cover after certain times on Fri/Sat. for guys, ladies free)\n+ responsive and knowledgeable bartenders. I ordered the tequila drink (ha, who woulda thunk) with grapefruit and it was *delicious*. If you don't want a sugary kick in the face with your alcohol, try this drink! The bartender was funny when I ordered it and said \"oh honey, it's not very sweet, is that okay? Some people don't like it\"--thank you for making sure. My bf ordered some 10/12 year anejo double shot (can't remember) and really like it....hell, I even sipped it and didn't reactionary gag! Let's just say sauza and jose kicked my ASS freshman year undergrad-- I'm forever ruined\n+ wide variety of drinks and tequila...that may seem like an obvious thing at a tequila bar, but I've been to a few that were pretty skimpy.\n+ decor and vibe was on POINT. Somehow the younger crowd here doesn't act like one drink is sending them to blackout town...score. Somehow the cougar-looking women here don't flip their hair every time a younger guy walked passed them...score. Somehow the older people were grooving to the music more than the young bucks...score.\n- minus one star for no AC...is that normal on Mill? no AC? and if so, WTF IT'S HOT AS BALLS, TURN THAT SHIT ON!\n\nLike my (ex)governator said \"I'll be back\". Seriously, I'm excited to have found a place that didn't make me regret driving to Mill, woohoo!", "type": "review", "business_id": "9YUe5J_cPCBo_mL7-z9HCQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "Uv4qrIDX7xzLJP_9n_JsyA", "review_id": "z45VpAt7N6ntMdxDIPmFYw", "stars": 3, "date": "2012-03-11", "text": "Narcisse is truly an interesting place. \n\nGood food and pretty good service. The staff/servers look good and keep the \"image is everything\" so important here in Scottsdale working for this place even if the looks exceed the quality of the service. The late night crowd is of the \"look at me\" variety and makes it a good people watching establishment if you do not mind the huge egos that go with it. \n\nThe selections of food and drink are impressive. If you can reserve a table to dine and drink with friends do it as the place fills up and leads to a fun night out experience for the above 30 crowd.", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0im6WIvEj7MWfJSLCuZYaQ", "review_id": "5BD2pLHK7tNSVrODSntFsg", "stars": 5, "date": "2011-06-12", "text": "You can't give anything less than 5 stars to a place that sells bra's and panties to hot chicks.", "type": "review", "business_id": "sZwUrDST1fkLHhdn0P3N1A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "sih5J4HDcRMdcp8MehHAnA", "review_id": "D_GHBOve5yjNXJzfmcBIuA", "stars": 5, "date": "2012-05-18", "text": "I've been to the locations in Chandler and Mesa and one word describes both locations: Fresh. Their donuts are consistently soft and fresh.", "type": "review", "business_id": "Xq1FtLSV54Spf-HfONc1aA"} +{"votes": {"funny": 2, "useful": 5, "cool": 0}, "user_id": "CNNforlwwIT89V_hQ-dbtg", "review_id": "XtKYEFYNLEaMabNDOmDExA", "stars": 1, "date": "2011-11-05", "text": "We came there on November 5, 2011 and the service was very bad. The worst I have ever seen and we were treated like shit. We came into town from LA and Vegas for the NFL game and seen Mrs. White's cafe on Foodnet Work and knew the food had to be great. The chicken was great, but the customer service was so bad we will never return again. We got a refill on our drinks and the guy poured sum of our drinks on the left overs so we could not take our food back to the hotel. Foodnet Work shame on you for recommending this place. Just because the chicken is good, does not mean you treat people like shit. \n\nWe had to remind the staff over six times to get our order. We waited over 40 minutes to get the other 3 pieces of chicken to finish our meal. We don't mind waiting but it was pretty rude when you are watching other peolple are getting their meals when they walked in after us. The Mac and Cheese did not look like everyone else's order- it look like it came out of a box. You can tell it was far from homemade, it cleary was not bake, no crust. The gravy was watered, missing favor. Corn bread was over cooked under salted. The cornbread sure as hell did not look like everyones else's cornbread. I felt like we received the leftovers. \n\nTruly the worst service we ever received. The place needs to learn how to be respectful and just be nice.", "type": "review", "business_id": "8o-NLKy_XfbJtqljX9XLCA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JgufYQ94cHyEo9b8StajnQ", "review_id": "LC7IEMctjh7jx4nD1b_z2g", "stars": 4, "date": "2012-05-05", "text": "The \"Shoe Dog\" experience was quite fun and entertaining! It assists in finding the right shoe for your foot...and pretty accurate!\n\nShop from hundreds of the best walking and running brands like ASICS, adidas, Brooks, New Balance, Saucony, Mizuno, Merrell, Nike, Puma, Pearl Izumi, Sperry, Timberland, Under Armour. You'll find fantastic natural running shoes from Vibram Five Fingers, Newton Running, and K-SWISS and trail shoes from Merrell, Salomon, and UK Gear. Grab the best gear from brands like Garmin, Baby Jogger, BOB, GU, Honey Stinger and FRS. You'll also find your favorite Triathlon Gear in the Road Runner Sports online Triathlon store. store. Choose from brands like 2XU, Shimano, Bont, Giro, Aquasphere and Xlab.", "type": "review", "business_id": "HW_QFzCZfF4yqN64F5Xx_Q"} +{"votes": {"funny": 5, "useful": 6, "cool": 5}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "IGPcKsOxm4BqnR5mH5Bnqw", "stars": 4, "date": "2010-03-24", "text": "Super Dark Chocolate Gelato. Word. Tiramisu Gelato. Straight Up. Super Dark Chocolate Gelato and Tiramisu together. Good Stuff. \n\nThis store smells like a pool. I have no idea what's up with that but the Super Dark Chocolate Gelato is awesome.\n\nI will go back just for that. And I will order the largest size I can handle...Kids Size. Or maybe Small if I'm feeling ambitious. Gelato is rich. Super Dark Chocolate Gelato is Super Rich. You've been warned.", "type": "review", "business_id": "XWpkTxBLgRXxl7g2Hw62Qg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2OLdiDZNdrPkdjp1WmW0-w", "review_id": "bFSWgQzleesf1o3lN95P6w", "stars": 5, "date": "2010-04-29", "text": "Best donuts in the valley.\n\nI like a variety of donuts (my favorites, though are raised sugar and raised glaze), and all the donuts here are great. Never too heavy, always tasting fresh.", "type": "review", "business_id": "6HAwTnhNJoR5VNdfUrRoEw"} +{"votes": {"funny": 0, "useful": 2, "cool": 3}, "user_id": "TfOfuXzdRIO-WVe8sYsO0A", "review_id": "gz6dv-usee4ZRHNvsq8UTA", "stars": 4, "date": "2012-01-21", "text": "Sitting at the counter at FnB is an experience that should be had, period. Our reservations by default was later on in the evening, but also turned out to be quite fortuitous. Not only were we able to see chefs Badman and Curry in action, but also saw them turn down the kitchen towards the end of the night. It is a display that even the most advent epicurean is not often exposed to. There are no doors or walls to hide behind. Everything that you eventually place in your mouth is out in the open and also in the way it is prepared - from the raw, to the stove, to the plate. \n\nImpressive was also how fluid the kitchen moved with only the two chefs preparing dishes. Chef Curry preparing the appetizers, fish and fowl; while Chef Badman shoveled coal onto a grill and simultaneously manning it to ensure rib-eyes were cooked to order. \n\nThe ambiance was the type you'd expect when invited into another's kitchen, and the food tasted as if given the same attention. So to the service. Our waitress, Chantelle was nice about explaining everything to us after hearing that it was our first time there. When she found out we had moved just a few months ago, she was kind enough to write down her restaurant recommendations for us too. \n\nWill definitely be back to try other items off their ever-evolving menu. Reservation for two please. Yes its okay if its at the counter and yes, its fine if its late.", "type": "review", "business_id": "IuAPYzf3NSyfyXYgT46YVA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "EXZrHtmzdtDHtH9MPNEhkw", "review_id": "rXDhaYhSt7AhfD2ixnTPrQ", "stars": 5, "date": "2012-02-26", "text": "Pulled pork over rice with compelling seasoned tater tots (rosemary & garlic). Gutsy sauce was utterly unique! Darryl King prepared it hot and packaged it with style for takeaway service.", "type": "review", "business_id": "v_fV3nYIZQRGBdRL9jXeAQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "bDVQPjGPM6yVLD2cntJkrQ", "review_id": "QyQjQBUUapdVWiJyzHm6gA", "stars": 3, "date": "2010-01-13", "text": "Alright, so how does it go from being a 1-star (actually, less than that) to being a 3-star review? Simple, they seem better than the last time I was working/shopping here. I went here the other night to help my boyfriend find an interview outfit and noticed that the store had a handful of the same employees as they did back in the Summer, but certain areas of clothing had been moved around. Despite all the moving and switching around they must have done, the store seemed really clean and in order. In fact, I really have no issues with this store except one, teeny tiny, little problem...the check out girl!\n\nI remember her from when I worked here and she gave me attitude when I needed to ask her something. Turns out, it wasn't a one time thing.. she's just a rude person. On this particular night, there were only two check out girls and a line of about 15 people. My boyfriend and I were making seperate purchases and knew one of us was going to get her. I happened to get the friendly one, but before we each paid for our items, we were watching as the rude girl didn't crack even ONE half-hearted attempt at a smile. We listened as she rudely explained to some elderly ladies why a certain item was marked on sale but the same item was normal priced. They wanted to make sure they weren't paying too much/too little and her explanation?: \"That ones been the store longer.\" It didn't make sense to them, or to those of us in line watching, but she kept getting huffy about it until they dropped the issue. She shoved people's items in bags and practically threw them at them and said, again without trying to fake some kind of customer service, \"Have a good night. Bye. NEXT!\" Yuck.\n\nMy cashier was slightly more frienldy, but still not awesome. It was obvious she was having a long night (afterall, she was stuck at the register with the Ice Queen), so it was understandable. Also, I didn't catch her name, but the girl working in the dressing rooms was really sweet and kept greeting everyone that came by. \n\nI had to call this location to get the name of the manager for something I was filling out on a form and I was told they've got a new manager. Thus, I know why this jumped up two stars. It could have been four, but certain things they haven't fixed (rude cashier girl) have kept this review at a solid three.", "type": "review", "business_id": "43YH6it1qwhjBMfei3m1hg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "MwJVSTsUB-htphNZaIC43g", "review_id": "etIYViErr9G08cXjUhaVvw", "stars": 5, "date": "2009-01-16", "text": "I think everyone has said most everything that needs to be said about this place. But I'll highlight the reasons I frequent Switch...\n\nfree wi-fi\ngood drinks\n$5 recession plate special - that is always as awesome as the rest of their menu\ngood happy hour specials\nopen til 11pm 7 days a week\ngood wine \ngreat/friendly wait staff\n\ntheir salads are out of control - amazing.\n\ni think i could happily support/invest in switch/fez/ticoz dynasty for all of eternity...if i had the means.", "type": "review", "business_id": "IVc23uY-36WUNYoIbz42Fg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "GoeN6MxXAusK9oYAaq1fbw", "review_id": "aHDpvV2q2h0R6c_UVZxOow", "stars": 4, "date": "2011-12-03", "text": "Surprisingly nice arean, given that the fans in Phoenix apparently hate hockey... It's got a lovely outdoor area with shopping and restaurants, convenient and close free parking, and a large selection of food and beverage options inside. When we went, the stadium was pretty much empty...which is fairly normal, as I understand it. Still, if there was more interest, the place could hold a large number of people and has the potential to be a great venue for Arizona hockey.", "type": "review", "business_id": "F0ZXhPJD8yNS3xzTxsichg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fMyKbyYY9Poy9B_1QZPKcg", "review_id": "mc2ID15iwqKXqlLiSyCJcw", "stars": 4, "date": "2009-03-22", "text": "Great food, large portions! My family and I really enjoyed our Saturday morning breakfast.", "type": "review", "business_id": "7WGBi29_vj_7RcPVxpLNHA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "nc3cqVN0UuB3m50-CcMftw", "review_id": "elzI_5Z-KslhrBeXcPoUOw", "stars": 4, "date": "2009-05-11", "text": "When shopping is an adventure and a destination, you must be heading to Tan Phat. This is a funky Asian market that has been there for me whenever I need water chestnuts (for wrapping in bacon, and they carry five different brands! Who knew so many companies were in the business of the water chestnut?) or kitchen supplies for Asian themed dinners. One of the first things that hits you upon entering in the smell of seafood. After acclimating to that, you'll find a huge selection of canned goods, dried seafood and mushrooms, a decent selection of fresh produce and an ample amount of \"novelty\" edibles (you know, those intriguingly package foodstuffs that you just can't find outside of Asian markets). \n\nThe employees are usually polite. You may have to walk through every aisle to find what you need, but that's part of the adventure.", "type": "review", "business_id": "yFQBmF9xwcnnpA6P1IcoEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "7W4egS-WyR0hRHMfQtPEOQ", "review_id": "pGR2j7yorCpnBDWgkVp-WA", "stars": 4, "date": "2011-12-06", "text": "Food is yummy!!!! I have never been to a 5 Guys, so I was pleasantly surprised. I ordered a burger, unaware that it is actually a double burger, which was HUGE! Hubby and I shared a large fry. We could have easily split a burger and a small fry. Love that fact that \"everything\" includes grilled mushrooms and onions. So much food. This location was messy. I am not sure of the peanuts are a great idea because there are shells and dust everywhere.", "type": "review", "business_id": "rIonUa02zMz_ki8eF-Adug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "JnAGZh7rjuz-6nKXitHUwA", "review_id": "gmZxSd2iA9et0mFoLQZCvg", "stars": 5, "date": "2012-12-18", "text": "Fast, friendly, and clean. You don't get to say that too often when describing a post office! Serously though, these guys are great.", "type": "review", "business_id": "bELgiE-Q3AqeVJL-wguQkA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "0Jlviq1YD76N-WK_GUeDMw", "review_id": "nbxPB_Qm8CNq9_r7UjBnwQ", "stars": 4, "date": "2012-07-15", "text": "It was a quick trip downtown from Mesa, I didnt like some of the people getting on the train but hey its public transport. My legs were also hurting from the seats on the short trip downtown I have RLS and man it hurt for days after. It was great for saving gas and if I worked by one I would take it daily. This was my first time so watch where you park by the pickup locations cause I got my car towed, $200 fine!!! I would take it downtown again but park in the right spot this time.", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "kwMWGVz3IH0UH1sbHLHolQ", "review_id": "baR_k2IBejzPP_pLajuU-Q", "stars": 5, "date": "2012-02-01", "text": "Papago Park is a great place to ride (bicycles, that is). The terrain can be as easy or as hard as you'd like-- just choose your trail!", "type": "review", "business_id": "_lanRtzQGRkbhd2b6pQleQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "4kPVOgRPApsSKJM9rFoX_Q", "review_id": "x2I-E7Duttm5AGqos6jlJA", "stars": 5, "date": "2011-10-23", "text": "Ordered the famous \"Butter Burger\" medium rare. Forget lettuce, tomato, and pickle, eat this with cheese and maybe some ketchup to let that beef shine through. Delicious! Great diner atmosphere, got to sit at the counter.\n\nHappy to see it was Niman Ranch beef, a sustainable/organic livestock provider.", "type": "review", "business_id": "ntN85eu27C04nwyPa8IHtw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FxxYCRPcpd__yhRRmmtyMQ", "review_id": "vVaUMlzYJPc0pWV46XT8YA", "stars": 3, "date": "2009-02-18", "text": "For such a small space, Stinkweeds definitely does a good job of packing as much variety as they can in their store. As far as record stores go, they've got a pretty decent collection in both CD's and vinyl. My only qualm with this place is that they tend to only carry newer stuff or the more popular titles of indie genres. If you're like me and like to peruse through older and hard-to-find collections, be sure to check out Tracks in Wax a few blocks down the street on Central. That being said, this is definitely a place you'll want to drop into. Their selection of concert/music video DVD's is pretty solid as is what their magazine stand has to offer. Sure, it's no Amoeba but it's the next best thing.", "type": "review", "business_id": "Re0Xw-AYkn6NK7QRk3kPEg"} +{"votes": {"funny": 1, "useful": 4, "cool": 2}, "user_id": "EnvG_kewvG5PqUqNSgs9Iw", "review_id": "YW9VGLm1zkGmXb4V9vU4bA", "stars": 4, "date": "2008-08-24", "text": "My husband and I visited the olive mill this morning. We decided to go there after finding reviews on here so Thankyou! It is kind of funny also since we live in Circle Cross Ranch which is just right up the road from QCOM. I have passed this building so many times and just tossed it up to another little local farm out here. First we sampled all the olives and the different oils and dipping sauces. My husband complained he thinks the products are overpriced but I thought they were reasonable since they are really good and don't taste anything like the stuff you get in the supermarkets. After selecting a few items, I bought the mesquite almond stuffed olives and lemon and blood orange olive oils. Blood orange is amazing I can't wait to try it on a salad. I also bought a plain virgin olive oil.The oil is so flavorful and their claim is it is pesticide free since they don't have a problem with some sort of fruit fly they normally have problems with in olives here because of our dry hot climate. We decided to grab a bite. This was the only problem, not for me but for my husband. I guess this is a perfect place for the girls to get together for lunch but if you have a man that has a pretty hearty appetite like mine then he may not quite be satisfied with what he receives.It was perfect for me. I ordered a paninni that had roasted squash, peppers, arugula, fennel garlic aoli and a parmesan balsamic sauce on it. It was very good. Came with a side of kettle style potato chips and some olives. He had a salad but truthfully it was not a very big salad especially with the salads that could serve 3 you mostly see these days. I guess it is true Americans have come to expect quantity.That is ok, I would definitely go back. I will just have to make sure I leave him at home next time and go with one of my gals instead", "type": "review", "business_id": "7YYD_agS3Kb2sAx9JPkQEw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OnGKdONTxlNYyjX6KXhL0A", "review_id": "1f8KYqNHZtg-Z4eH1tcUJQ", "stars": 5, "date": "2011-07-04", "text": "My wife and I as well as several of our friends drive from Ahwatukee on a regular basis to dine at Flo's on Thompson Peak and Frank Lloyd Wright Blvd. 25 miles isn't too far for this food. We've been eating here since the 90's and have always been pleased. I discovered it when I worked in the area and used to stand in line for lunch, it was so busy. Our favorites: Lemon Pepper Chicken with extra lemon wedges and the Kung Pow although I can't think of anything I wouldn't order.", "type": "review", "business_id": "H7KzlC0-o1wIhlGg-Me5Ag"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "fFFT99b1av5nhkxRfrZb2Q", "review_id": "vjBuwYn8j0aPhIwkWIgxHg", "stars": 5, "date": "2011-08-09", "text": "\"Yogurtland\" as I say it with a high-pitched tone in the end..\n\nThis is my ultimate favorite dessert!! I would give 10 stars if Yelp allows it! All my friends know that I am attached to this place! We started this craziness together with my better half when we tried it a few years back after a basketball game...and all I said after first walking in was, \"This is fun!!\" and we got hooked eversince!! That I collect their spoons, only used by me and the hubbie, and I now have 5 YGL cups full of spoons!! I am the ultimate Yogurtland addict!! heehee We go as often as 5 times a week that we already know the staff in this location. And we go that often that we even tried to abstain from it for Lent just to see if we can resist it!! haha Most of our friends also keep on asking to try other fro yo places to see if something will beat my YGL addiction..and so far nothing has won over it yet..=D\nSo, my favorite flavors are Taro, Pistachio and Toasted Coconut and the of course the seasonal flavors, Pumpkin Pie, Gingerbread..Oh I wanna go now just thinking about it! My favorite toppings are the yogurt chips, sugar cone, sunflower seeds, shredded coconut and graham!! =) Perfect blend of flavors! \n\nSo if you haven't tried it yet, grab your favorite partner and enjoy some \"Yogurtland\"...=)", "type": "review", "business_id": "djYFLq4Bkqpkd14-0IJfug"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "uj79HTtyOdAdd_TaPcdxjA", "review_id": "16_yl1x4hfTRCXUkwunmfw", "stars": 4, "date": "2011-01-06", "text": "Although I am limiting meat in my diet, I went to the Keg for a date.\n\nI had only been one other time for drinks with a couple of friends and it was nothing worth writing home about really.\n\nI think what I really loved this time was the salad. Yeah, I know, a steak house and I'm blown away by a salad!! It was the spinach salad with walnuts and cranberries. It was soooo good. \n\nOf course my little girly sized fillet was incredible too.\n\nOh ... and the date ... yeah it was good too!! ;-P", "type": "review", "business_id": "-tBiXT917wKlr6n9wSqViw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cUHTvqCvUyUckIucoTl6Ng", "review_id": "MZ6dNnldpRECuezdgo19xw", "stars": 4, "date": "2010-05-28", "text": "My husband and I lucked into one of the best dining experiences in a long time on a recent business trip to AZ. The hummous appetizer was exceptional, as was the \"what's in this steak?\" dish, tender filet wrapped in yukon-gold potatoes (how comforting is THAT?). Nice selection of wine by the glass. The only disappointment was a dessert referred to as a \"twist on Tiramisu,\" but which bore no resemblance to it at all, with toffee cookie dough ice cream. I'll go back next time in town, but try a different dessert.", "type": "review", "business_id": "He9Dar4bk2vyeiPC7TkUgA"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "I3xKqgX4XDiz72iUO_lN1Q", "review_id": "TUPZLupO2RDJsJ91TYBpnQ", "stars": 5, "date": "2011-07-24", "text": "Sara (bartender) is the hottest chick in the world!!", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0hJChgGIqzg5JQkwvcnLZw", "review_id": "MWqYXZcjbXdUACgcx8zypw", "stars": 3, "date": "2012-12-29", "text": "I wanted to add a review to the actual company's website, but I could not figure it out. I'm curious where all the testimonials came from. \n\nI have mixed feelings on my experience. In the end, I think I ended up with some beautiful windows, though. My salesperson was very engaging. I felt pretty confident in my decision to go with American Vision Windows after that first experience. There was some miscommunication on scheduling the measurement, but it worked itself out fairly quickly. I started to lose confidence when I was told a specific date that my windows would be in, but never heard anything from the company four days after that date. When I called them to find out where my windows were, I was told they had just received them and they could schedule my install in 2 weeks. Since I only had Saturday install available, that was understandable. The Friday before my install, they called to reschedule to the following weekend because the rainstorm (that just occurred that day) had put them behind two days. Again, I guess that was fairly understandable, but I felt like the peon that was the easiest to push off. \n\nLuckily the installers did show up the following Saturday on the earlier side of the provided time frame. I kind of don't know what to say about the install. There were two guys, one seemed to know what he was doing, the other I had less confidence in. The job took 4 hours to install 6 windows. During the entire transaction I was never told how long the install would take, so I'm not sure if that was normal or not. The two guys actually seemed to be fighting during the entire install. I believe the head guy was joking around with the other by basically telling him he sucked. I think the other guy was genuinely getting angrier and angrier. In all honesty, I was very uncomfortable being in my own house while the install was going on. I was a bit disappointed in the cleanup of the job. I ended up having to cleanup inside the window tracks and windowsills on the inside and brush off the sills on the outside. I don't feel I should have had to do that. Before they left, I was handed a survey to review the entire process (salesperson, overall experience, install). I think that is a horrible practice that needs to be changed. I didn't want to sit there writing out a review on all of the above while the installer is waiting for me, and then hand it right back to him. What it did cause me to do is overstate my review because I'm not going to give the installers 2 stars and hand the paper back to the person I just reviewed. \n\nI can't say I would recommend this company, but I feel the way customer service has been going, it's really a tossup on what you will get from any company.\n\nP.S. I forgot to mention my plants. I have recently spent a lot of my own time and money on landscaping my backyard so this stuck out to me big time. I understand when installing windows it's difficult to pay attention to the foliage below your feet, but I think some attempt to not trample all over the plants would be very much appreciated. For example, when washing the windows, I think an effort can be made not to stand directly on top of a plant and twist your foot back and forth. I'm still hoping I do not loose a couple of plants due to the trauma they endured.", "type": "review", "business_id": "pPQ92_OTXSvDh-4CO6wCFQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ifBFUu7EIvjHq2_CK733Jg", "review_id": "gelzhpXyxJFjPSxvT2QmHw", "stars": 5, "date": "2010-08-29", "text": "I love love this store!! Their reduced fat chicken salad and pasedena salads are to die for. The prepackaged frozen meals are also yummy! My daughter loves their yogurt and premade pasta meals. Their clif bars are 1/2 the price as supermarkets!! The employees are extremely nice and helpful. I would SO recommend this store to any and every one!!", "type": "review", "business_id": "m4Vdae9cdx7bgr6bIjjbkw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "hdGOqtk3Z9GModnuDkaD2w", "review_id": "Gbn3HN3Im0EUIk34Ej8_Aw", "stars": 5, "date": "2012-10-24", "text": "I rarely go to Indian restaurants. But this is a place I love to visit often. The food seems as if it was done with great interest. When u go there, order anything with rice. They cook it to perfection. I like their handi dishes a lot.\n\nIf there is one thing I can suggest, it is that they should stop adding food coloring to some of their dishes. No need to guild this Lilly!", "type": "review", "business_id": "x3ws2L-TlI-JPcEQjjEC9g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2EgPOQF3cwLpeCEHINLtmw", "review_id": "D101kxTdPnpPPvRrov9G7w", "stars": 5, "date": "2012-12-11", "text": "I am a vegetarian and there is a ton of great stuff at Pita Jungle. I just had the hummus trio, babaganoush, dolmas, mozzarella, and feta for appetizers tonight. Fantastic happy hour on the apps and delicious. Took BLACK BEAN BURGER to go. SOOOO good! Also, servers are super nice and prompt. YAY!", "type": "review", "business_id": "qwmHm3s8p7J12AIY6Co8HQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "wZqx1ba606Ollf4KHGZbLw", "review_id": "23qzzpKWK0W6RtvW0ouFyQ", "stars": 1, "date": "2012-01-08", "text": "All I have to say is what you see on the menu is not what you're gonna get. and if you're ok with cockroaches on the walls and floors, the this is the place to eat.", "type": "review", "business_id": "LzreyGNkVTYw4JFuSxWstA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Ofxlhi_HKp7myFDpwg9aIA", "review_id": "Cs8p3s0rZwbGulCxz7Dk5w", "stars": 3, "date": "2009-10-07", "text": "So I recently went here with a friend of mine because they were craving IHOP, and I didn't care were we went to eat as long is it had food.\n\nI got one of there new healthy choice menu items the balsamic chicken and my friend got the club sandwich with a side salad and a side of pancakes...don't ask.\n\nThe food was surprisingly really good and the service was excellent.", "type": "review", "business_id": "0xWF7PpTNl-awqg2YGxxFQ"} +{"votes": {"funny": 6, "useful": 1, "cool": 2}, "user_id": "tlSSQwfHYJany7wPoTH46A", "review_id": "yYRpZj0-h-jEJvPaUbg3Lg", "stars": 2, "date": "2007-09-27", "text": "Having lived in Mesa and delivered sub sandwiches to some of the tweekiest of tweakers, I don't feel any shame in admitting that whole area now resides in a dead zone for me. When I get that itch to go out and tear up the town, waste away a lazy afternoon, or enjoy a nice dinner, I think of places north, south and west of Tempe. It's like my brain has one of those little electric dog collar things attached to it, and when I start to stray too far east, it gives me a subliminal zap so I erase Mesa from the map in my mind.\n\nSo naturally, Stray Cats is usually a place I visit when meeting up with others who have suggested it. \n\nThing is, I always end up having a pretty good time when I go there. The drinks are priced reasonably and generally on the strong side, the bartenders are friendly and quick to serve. The music is pretty good, but I've never been here when a DJ's spinning. I used to like the fact that there was an air conditioned smoking room off to the side with plush couches and big televisions. The crowd is always diverse, friendly and easy to engage in slurred conversation.\n\nIt just doesn't have any special oomph for me. I'd much rather frequent Hollywood Alley a couple miles south, where there's pool and live music. Unfortunately it's also on the black list of Mesa, so maybe I should find a way to reverse that programming. It's not just tweakers and mormans, it's not just tweakers and mormons, it's not just tweakers and mormons....", "type": "review", "business_id": "5BXNeSwzOy1nhU9PtCHvIw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AjWGxRkg3Yl_q18Y7J-kjw", "review_id": "hprmSGLl-TN91Khz5VkJ-A", "stars": 4, "date": "2010-06-22", "text": "Great food and a fun atmosphere! service is a little slow, but the food is always delicious!", "type": "review", "business_id": "znmvCpcwxYk_kYCqtUFt5Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KuPscbI0KPxudSMPZIcrCA", "review_id": "ScQPLLRdcTPNMn7b3cZEvA", "stars": 4, "date": "2012-01-28", "text": "I came, I saw, I conquered. \n\nWould get five stars but parking here is difficult. No signs on where to park if u can't get in the iddy bitty teeny weeny parking lot. Walked an extra mile just to get to the entrance on the echo side", "type": "review", "business_id": "6rijZ1qIjiq1Dgdy35iqxw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "xUxxoTkQNWbKU44cCbtY4A", "review_id": "gEv9QauBbj3Gq9gTsFT_8A", "stars": 4, "date": "2007-10-09", "text": "I'm so glad that there is at least one Asian grocery store in the valley. Unfortunately they seem to have a hard time keeping some of my favorite items in stock, I wonder if this is a result of some of the import restrictions/delays that have been a result of the recent quality issues with food and toys imported from China.\n\nI'm half Chinese and spent much of my youth being dragged around Chinatown near L.A. by my grandmother and 6 or 7 aunts. So the 99 Ranch Market brings back memories...some fond...some not quite so. But, at any rate, the prices are great and the selection is good and authentic (when it's in stock). The cashiers could use a little dosing from the friendly fairy, however. Then again, I don't remember many friendly cashiers or clerks at any of the stores I frequented as a kid...so I guess it just makes the experience all the more genuine for me.\n\nI would recommend going on a weekday, or, if you must go on the weekend, just avoid going around lunchtime. There's a dim sum restaurant in the same shopping center and the parking lot gets pretty jam packed with cars and pedestrians.", "type": "review", "business_id": "ozWBsvbeM2LSPsRDsYKr1Q"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "f5CqKZlqK9Sox9z9wuooCQ", "review_id": "DOtJ8fUQFNJaPdY48Q13Ig", "stars": 2, "date": "2011-06-30", "text": "After vine expressions closed many of us have tried this place. I like new things and love different types of cuisine but this place doesn't hit the spot. It's nice to go somewhere and get a wine list by the glass where you can choose a wine you enjoy but of course you want to know the freakin vineyard. Not here. By the glass, the list just has varietals - shiraz, cab, etc. They change their list a lot but so do many places. The food - below average. Tried the stew that they said was great and famous. Bland. The sliders were like eating a salt lick, too salty. The servers are nice but they tend to ramble on and give you a 15 minute dissertation on the menu and why you shouldn't look at the last page because it's not available yet but they want you to know it's there. Finally, a few people mentioned the sucky chairs. Boy, they weren't kidding. They have many stools at tables with no back. Customers should be comfortable, this is not. The seats with backs have as much padding as a 2X4. Bottomline, uncomfortable.\n\nYou want better options, here you go. The living room in Chandler, my wine cellar in Ahwatukee, postino in Arcadia, 5th and wine in Old Towne, kazimierz in Old Towne, and terroir wine pub in N Scottsdale. Been to all of them and all significantly better. Tons more on Yelp.\n\nPostino is supposedly opening where grainbelt used to be across from Joe's BBQ in downtown Gilbert so when that's there a local joint should be available.", "type": "review", "business_id": "9dopZKjYiKwPiw7kEQsEag"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "7QFfFnxbUzS7j81XCftUkA", "review_id": "P06wRpk0NUf-5MTQaOZlvw", "stars": 5, "date": "2012-12-06", "text": "I've always wanted a family friendly jeweler. Esp. if my at the time boyfriend was going to buy me an engagement ring. It means so much to me to have the true customer service when buying fine Jewelry, someone I can trust. And when I found this place one day while I was at CVS I knew I had found a Gem (pun intended)! Peggy really made me and my now finance feel like we were family. She helped him pick out my fabulous ring and answer every single one of his questions. I'm so proud to tell everyone where we got the ring from because I think everyone should know about this place! If your looking for great jewelry with a warm smile, head on over. They are so excited to help you!", "type": "review", "business_id": "93EFuYATJ0rgqO0uJLRYfw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0mwGMnMvgvKd11do4u5J3Q", "review_id": "03HOEIyOo4kLI3vd_Z01xA", "stars": 4, "date": "2011-07-08", "text": "This place looks a lot worse than it is. The poorly shot photos of their food on their windows and walls do not do them any favors. I wound up eating here by chance when I was bringing back a group of teens to the JCC a few doors down--we had a few minutes for lunch before bringing the rest of the kids back to tucson. Most of the kids wound up in the mexican place next door, and seeing as we were pressed for time, I decided that Id get some thai food since I love thai. I asked the lady in there if I could get something very quickly to go, she said no problem. I asked if I should get the pad thai or the yellow curry, she said get the yellow curry. So I did. She asked me how hot (and knowing that I had a cold and wanted something kinda spicy, but also momentarily forgetting that I was in a thai restaurant) I told her \"make it pretty hot\". In retrospect, I might have used a bit more caution with that statement. I also ordered some crab puffs which i know is not authentic, but i was in the mood. The crab puffs turned out to be excellent. Just different enough from your standard chinese food arrangement and yet still delicious with their different style dipping sauce. The yellow curry was AMAZING, albeit a LITTLE bit spicier than I would have liked on a normal day...well, actually, it was a freakin inferno...but it felt good to eat it with my cold and all. Just be advised ;) Would definitely go back next time im in the area. My only complaints were that it took a little bit longer than I would have liked considering my situation, but had I been sitting down it would not have been a problem, and secondly the price was a little high I felt. It was after 3 (so a late lunch, i guess) and wound up having to pay the dinner prices. The two orders, without a drink came to about $15. Not terrible, but a little more than I would have liked to pay.", "type": "review", "business_id": "4QtD359vkU7Jq8vP0uQEww"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "aPv7PCJNMJSw20DR0959wg", "review_id": "yFL9d_wJu33YlAQAm725qA", "stars": 4, "date": "2011-04-10", "text": "My husband and I went there for lunch today and because of vegegirly C.'s review about the deep fried pickles guess what we ordered??? OMG they were amazing! We ordered the cajun style and man oh man were they goooooood! We have never even heard of them but I am so glad we got them. So crispy and so hot! Mmmmm (and 1/2 priced)!!!\n\nWe got greeted and seated quickly. I ordered the chicken brie sandwhich and my husband had the meatloaf sandwhich. I am not sure where the comment about small portions came from because they were good sized and we were both stuffed!\n\nThe only change to the chicken brie would be to have the pears sliced thinner rather than having thick pears to bite through. Otherwise it was yummy.\n\nI also ordered the \"Arizona Iced Tea\" for the first time since they didn't have fresh mint to make my mojito. I was pleasantly surprised at how light and refreshing it was.\n\nWe had the entertainment card which they didn't punch so we can use it again, and we will :)", "type": "review", "business_id": "CqhsIZ7TzCfJTrZqg5-gqQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "DrJnC62-eMRnFai6immsbQ", "review_id": "zfAr84vPKq0mnS5ZcfEN2A", "stars": 4, "date": "2012-03-20", "text": "One thing I like about this place...are the cacti! There are just everywhere! This is a great place to go camping in and to take lots of pictures of the scenery. The random people here are all very friendly and so are the staff from the Visitor Center. The place definitely looks different when you compare from summer and winter.", "type": "review", "business_id": "sv8tYgFzIRKHHERURumyVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "-q0RFaCkmT6TFxgk0a9dPw", "review_id": "CFPEFihBcAl09sSi0MSkHA", "stars": 4, "date": "2012-06-02", "text": "Some say you get what you pay for (with an implication of regret) . But with ASMT, you get what you pay for and you actually walk out happy. An hour massage for $12.50? Tell me where else can you get such good deal?", "type": "review", "business_id": "RdOQN8LEzo5tB_pSIS-I5w"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "4JapGtmN58pZYo1ClbV8qw", "review_id": "g_jWG4y_rTAh4nByc4dFDA", "stars": 5, "date": "2009-01-07", "text": "If you've never had or even heard of bingsoo you NEED to check this place out. I have two friends who were constantly bantering about bingsoo and this Fresco place. I was excited when I found out it was so close to my house. If you've never heard of it, this is how it goes down. It's a layer of shaved ice, then you have your choice of ice cream or FF frozen yogurt, your choice of fresh fruit off the menu (apples, strawberry, mango, banana kiwi and many others) and then your choice of \"sauce\" which is a fruit puree of either strawberry, kiwi or mango and honey. You mix it all together and there you have it. A somewhat healthy dessert! They even have a frequent bingsoo buyers card =) \n\nThis place isn't just all about the bingsoo though. They have a menu of fresh sandwiches and fruit juices too!", "type": "review", "business_id": "R1RjCYfRZm9inTDQVVpUGQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2ziJA4_AnTCAPIXzkq10nA", "review_id": "zRy7XORNSSZx7ieG3liPEw", "stars": 3, "date": "2010-05-05", "text": "Overall this place isn't so bad for a quick mexican food place. It's not like eating at a restaurant or anything like that. The food portions are pretty great and sold at a fair price. I really liked their salsa and I felt it was nice and flavorful. I'd say this place is a small step up from Filbertos.\n\nThe staff here, however, were really rude. They seemed to want to rush everyone around.", "type": "review", "business_id": "YL_EiYALmGUd1lm5HZgL3w"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "fh1pPKi-r-FkWEGJiH7rfw", "review_id": "8l0L53OVe6wu9EYUUpN16Q", "stars": 5, "date": "2012-07-09", "text": "Went here last night when on our last night staying at the Hotel Valley Ho. We were able to walk there from the hotel and it was so cute. The wait staff were helpful and gracious. Once we saw how large the pizzas were, they accomodated us and split the toppings on each side of the pizza so we got what we wanted. I did think the olives were really salty, but that's that type of olive. We had delicious wine and the bruschetta sampler. Enjoy people!", "type": "review", "business_id": "k6Si433-EJrY4J7SZxsnjA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "_uL7OiQSfNsCd60DrAf7qQ", "review_id": "tRpCw6R3dXwzf9q2Q0Bhyg", "stars": 5, "date": "2009-12-08", "text": "I have to tell you....\n\nI had their Jerk Chicken Plate the other night, and it was yuuuuummmmmyyy! You gotta try it!", "type": "review", "business_id": "_FXql6eVhbM923RdCi94SA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TihCCoPTBI-mlkvdbAaEog", "review_id": "Ob6sPSHrANTDRcKXiMkqzA", "stars": 5, "date": "2011-11-14", "text": "I love this place the more I go to it! The service is completely out of the ordinary for fast food and now they have something called, Mexican Gumbo. Holy schneikies it's good!!! Can't beat the prices either! If I had a choice of this place over Chipotle, I would choose Qdoba ANY day!!!", "type": "review", "business_id": "b9dv7Q0A8XcJ44zzTDJeYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xdaRYQvc8W4QXk4TZklJfw", "review_id": "HFUWeNu4E2uUvNLrble3PA", "stars": 5, "date": "2012-09-10", "text": "Quick, friendly, awesome.", "type": "review", "business_id": "5fWOxo5CxpHoaCJD97QE4g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "j_WJjiBbkiU5qlFDkU0SYg", "review_id": "EnDxxPW6VqYztPKPS_jP6g", "stars": 2, "date": "2010-04-02", "text": "Despite being a red-blooded American male, I find this place a bit below average. Yes, the waitress wander around in shorts that would make a cheerleader blush--but rail thin bottle blondes don't do anything for me or the food itself. \n\nI've eaten here twice: the first time, I ordered huevos rancheros and coffee; today, I had the protein pancakes. In both cases, the service was mixed and the food was bland. My food came out quickly both times, but my server disappeared each time as well. Today, I sat for 15 minutes until I was able to get the attention of a manger who located my server for me. \n\nThe food itself is not bad, but nothing to cheer about. The protein pancakes were enormous and dense, but not nearly as flavorful as one expects from an item filled with almonds, blueberries, and cinnamon. As others have noted, they'll ding you on side orders--sour cream, tomatoes, guacamole, and the like will all cost you a pretty penny for diner-quality stuff.\n\nFinally, it doesn't affect the food, but the decor is garish and plain. Remember that first apartment you got after college with the white walls and tan carpet? This is basically the US Egg aesthetic.", "type": "review", "business_id": "OSL98Keoc2FSNx4a3ge5Uw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "XpSZrY_Ym8GGx7SNEd0q9g", "review_id": "CcP22KGHAQDtDDxjpEzY1Q", "stars": 3, "date": "2011-03-21", "text": "Fair pricing and no upselling. These guys are good--but be warned, it's as busy as an angry beehive on Monday mornings!", "type": "review", "business_id": "JuQncODLNOhfSaa-5okpQQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ofat_K13gHzuVXMcWiky3A", "review_id": "KiMdj_wHI_zNC2yTRzr4TA", "stars": 4, "date": "2012-10-09", "text": "Wonderful drink options, the food was pretty great as well", "type": "review", "business_id": "EHi-lebXGWjSktl4WvSoow"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zRnoNCqk0DG3iOQxtpVXug", "review_id": "JIHEatfFn_85AbVZ14uz4Q", "stars": 5, "date": "2012-10-23", "text": "we only came across this place because an acquaintance recommended it to us. I've lived up the street from this place for years and never knew it existed, it's quite the hole in the wall and easy to pass by.\n\nThe place was super clean and the owners did a wonderful job serving everyone in a timely manner and being super attentive. We felt so taken care of!! :) \n\nI thought the prices were a little on the high side but when they brought out our meal all I could say was \"WHOAH!\". The portion sizes were CRAZY awesome and my hubby and I could have really split one entree and still had some leftover. \n\nThe food was fresh, the meat tender, the atmosphere pleasantly divine! 2 trips now and I'm such a fan! :D", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "G-xuPbbcK5w27ZkSVtbtLg", "review_id": "7alZqpI8unRw6iXGAedn-Q", "stars": 5, "date": "2010-08-02", "text": "We love The Olive Tree! We call it 'the grill' We eat there at least once a week - my littlest one has swim lessons right next door. Both my picky eaters love eating there! We love the chicken kabobs and the chicken shwarma(sp?). Family ran, great food we love it!", "type": "review", "business_id": "zfY68t7nVihCwiCsCgM6cw"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "lZyVdWZcUd0Px9oJ-md3Fw", "review_id": "ucmeP6z1XbPdny5deBCHwQ", "stars": 4, "date": "2011-03-28", "text": "I came here on a strong recommendation from a friend. After reading the reviews, I was anxious to try it out. I went on a Saturday night, half expecting it to be really busy. We were seated in about five minutes or less. Not busy on a Saturday night...made me kind of worried. \n\nThe menu is sparse, it made ordering really easy. Service was fairly slow considering the small amount of people in the restaurant. Refills were slow, service was kind of inattentive but not rude. Our pizza came out in about 15-20 mins. We ordered a white with garlic with pepperoni and sausage. The pizza looked and smelled delicious, but that's where it all went bad.\n\nFirst off, the pizza crust was really soggy because of all the grease under the pizza. I have never ate such a greasy pizza in my life. i had to drain every single slice, it literally created a puddle on my plate. There was a significant lack of sauce on my pizza, some parts of my crust were bare, not even a hint of red on them. The pepperoni and the sausage tasted great and there was enough toppings on the pizza to justify the $2 price tag. \n\nThe non soggy areas of crust were great, and the cheese was amazing. We ended up taking half the pizza home, the slices were filling. The pizza was better the next day, after the box absorbed most of the grease, after throwing away the pizza box, the bottom of the box was saturated in grease. I'm not sure if grease makes a quality pizza, but in this case it just made a soggy crust.\n\n**Update** Under intense pressure I came back here and tried a white with chicken, they seriously redeemed themselves. I spoke to the manager and he insisted my last time was a fluke and should have been corrected. I would come back on occasion.", "type": "review", "business_id": "r4AG1WXCRWkZKQctrcy9FA"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "N7lSh49zQ13sG3Jpa9E6cw", "review_id": "ImVihtUQfDKM8qobGM2VLQ", "stars": 1, "date": "2009-02-06", "text": "Mucho Gusto es mucho mierda. \n\nLet me say first, that the place is cute, the staff is friendly, and the salsa is good. There. I'm not being a total jerk. \n\nThe food, however, left much to be desired. I couldn't find much to like about my chicken tacos- they were ok, but the meat didn't have much flavor, there was no cheese, and they were pretty stingy with the guacamole and pico. What really got me was that they didn't come with rice and beans. Instead, I got a lovely pile of cheap bagged romaine coated in some sort of caesar-ish dressing. Sure, there were a few cubes of cheese and a tomato slice (A slice!) on top, but come on. $14 for a couple of naked tacos and a pile of romaine? For that much, they could have at least picked the white core parts of the lettuce out of my salad. Or, I dunno, sprinkled a little cheese on the tacos?\n\nThe story was much the same with the fish tacos, only the salad was different. The enchiladas seemed to be a hit, and those are served with rice and beans. the vegan at the table ordered a side of rice and beans for her meal, and they aren't kidding about it being a side. I think my cat's food bowl is bigger. \n\nThey charge $1 per bowl if you want more chips. I know $1 isn't a big deal, but it's just the principle. I already felt ripped off from the entree, so the extra charge for the chips just made it worse. \n\nNeedless to say, I won't be going back. There are far better choices closer to home.", "type": "review", "business_id": "X5QTGpPfqXFtmtizsGAksw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9IKE3JVdWasnvYkjclqXYw", "review_id": "jqfNhsccqqG7SDaLIJ4-fw", "stars": 3, "date": "2012-03-25", "text": "This place was kinda cool. We first got there around 9:30 on a saturday night. The place was dead... but that is to be expected for a \"night club\". The drinks are expensive, but tasty. The decor is AMAZING. The couches are comfy and there is just enough seating space without it overtaking the joint. We ended up leaving after 1 drink and went back a few hours later and the place was busy busy busy. They had great music playing and the dance floor was full. One downfall was, I hate when you go to a bar and the bathroom has an attendant that you need to tip. They are holding everything that you need... soap and paper towels. I feel that I shouldnt feel forced to tip someone because I wanted to wash my hands after I used the bathroom. Overall the place was decent. I am new in town and I am sure that there are better places to have a drink. I will most likely go back (in the future), just not in a rush to.", "type": "review", "business_id": "W0eocyGliMbg8NScqERaiA"} +{"votes": {"funny": 10, "useful": 9, "cool": 4}, "user_id": "rjlb-7-JcmM6fR64ZpyTug", "review_id": "MNFvGY1zUVGQlImzqvMFQw", "stars": 1, "date": "2010-01-03", "text": "10:30pm on a Saturday night. My friend and I try our second attempt at sushi for the night (see my review of Pearl for the first). Place is hopping. We take a seat at the sushi bar.\n\nThe Waitress: \"Are you girls going to be ordering sushi?\"\nMe: I have a sushi menu in my hand, \"yes.\"\nWaitress: \"Would you mind putting it in soon because they want to go home too.\"\nMe: What the fuck, bitch. \"Uh, ok\"\n\nDear Ra Waitress,\n\nI'm sorry if I kept you or any other employess, especially since I finished eating my roll before your kitchen even closed. It was completely ok to rush me, even though I had no intention of staying all fucking night and even though plenty of new sushi orders came after mine. I was hardly the last customer in there. There were people all around me ordering sushi, so I'm still unclear as to why you needed to rush me. If you were in such a hurry- why did it take you longer to bring and process my bill than it did for me to eat your food? Maybe it was because you don't know how to count, since you gave the wrong amount of change and I ended up having to tell you the correct amount since you couldn't count it on the spot. I like Ra for the atmosphere, something you completely ruined. Thanks for that. \n\nSincerely,\nMorgan", "type": "review", "business_id": "7_zL7NX_rDFwhbLp98PwZg"} +{"votes": {"funny": 4, "useful": 7, "cool": 5}, "user_id": "zhVOlwBuEgdGlHjwgVf3Jg", "review_id": "ohRvx1j5aT-wjelz9NvbdQ", "stars": 5, "date": "2010-09-13", "text": "Of course, they are no La Madeliene, but if you are looking for some good croissants, this is the place to be. I love, love, love their croissants. But which bakery's croissants do I not love? hmm... But I do love theirs. I have had the almond croissant, the almond and chocolate croissant and finally today when we went there, I had the chocolate croissant. It was just freaking amazing. That's all I can say. (They run out of the chocolate almond croissants pretty quickly so go early if you want some)\n\nI have also had lunch here before, some Mediterranean sandwich stuff. The portion is very small compared to the price. Their macaroons look crazy and funky. Have not tried them yet but plan on doing so next time. I almost gave them 4 stars because their hours they are open are very weird. But its okay, I will compromise Essence Bakery. \n\nThey only use butter imported from Normandy in their Croissants. Wow.", "type": "review", "business_id": "eTbtfgUtfewdncgVf2CbWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "35_ZCjAbIHr_YyvVipmkLw", "review_id": "ut_blvUWCj1COUK4MzC5Fg", "stars": 5, "date": "2010-01-15", "text": "Went early to North for the New Year's eve special menu. 3rd time dining here. They did not have to have great service or food on a yearly event, but as with the previous meals, it was outstanding. Hubby had the misto fritto, they always do the crisp calamari perfect. Enough just to make a special trip for it. I had the beef carpaccio, buttery and flavorful. The apple cider pork tenderloin was tender, moist and it was a huge portion. My hubby was stuffed but did not stop eating until it was all gone. Oink. I had the scallops. Always a favorite of mine. They usually have it on the menu and often in a variation as a special. We both had the hazelnut chocolate cake. Sinfully rich. We were both too full to eat but a bite and finished at home for the New Year's countdown. \nWe really enjoy our dining at North and have been very fortunate at several other Fox restaurants.", "type": "review", "business_id": "Lc-ZYyI83FpEe-8u_LSODQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2a1wamxrn76LViwYCGH_rw", "review_id": "P4OKoJr3rVaQTJaolUaiIw", "stars": 3, "date": "2012-12-03", "text": "They don't have the lunch specials on the menu or tell you about them if you don't ask, so make sure to ask. The sandwiches don't come with fries and their fries are over priced for not being very good. The pulled pork sandwich is good and so is the sauce. Also, expect a long wait especially if people are ahead of you.", "type": "review", "business_id": "qG3eRlKLXbnWc1unu-0Yjg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "1gY1N3pkxTzh7kK4BxANyw", "review_id": "e3-r33taKS_rnD0_muo2Uw", "stars": 4, "date": "2011-02-18", "text": "I've practiced yoga for years at At One Yoga and initially wasn't happy about their merger with LifePower. But now, after several months of going to LifePower, I think it's pretty nice. \n\nThe facility is big and clean and very well kept. If you want to use the entire facility (the weights and machines) you have to sign up for a monthly contract. However, if you just want to take the yoga classes, you can buy them packages of ten classes. The ten classes can be used over any length of time. I like that because if I'm out of town or busy, my class package doesn't expire. I do wish they offered more class packages, like in groups of 25 or 50 classes, the the way At One Yoga used to do. Because typically the more classes you buy, the bigger the discount. \n\nThe great majority of the yoga instructors from At One Yoga have come over to teach at LifePower. I've taken yoga classes in several places throughout the US and I think these yoga teachers are among the best in the country.", "type": "review", "business_id": "QkLraKf901i0MjluEuFFrw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "c4hrMkMwuXL1yLGHreXh8Q", "review_id": "vHWtx0-PM4R-dNDY7oK58A", "stars": 4, "date": "2009-07-01", "text": "Tried this place for weekday lunch. We arrived before noon and good thing since they have a big lunch crowd. (not to worry, plenty of parking in back and seating outside w/ misters) Kudos to Aric and Monica for stopping by our table several times to make sure service was great or they fixed it. We started with the Bruchetta, which was piled high. The we had the Smokey (arugula & smoked prosciutto) and the Marg pizzas. Almost had the Pabst on tap, but went for the Dunkel since its harder to find. As if the food wasn't enough, the decor and ambiance was over the top. The herb garden as you walk in and the bar with the salon chairs was a nice touch. \n\nCan't wait to go back.", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 1, "useful": 3, "cool": 4}, "user_id": "YbHL_lmvARxf0rz0WlVQPQ", "review_id": "JTQOJSfbC9fkuwkFALlYSw", "stars": 5, "date": "2010-01-30", "text": "I was in Vietnam last May, and spent every summer in Westminster CA growing up, so to qualify my 5 stars, \"Woohoo! As good as it gets!\" I say to what's available of what I've seen in PHX area. With that said, I've had the Bun Bo Hue, Pho Tai, Com Tam Dac Biet, Bun bi cha gio, and agree with what everyone said about cleanliness, freshness of condiments, integrity of broth ( lack of oiliness ), and general flavor. The only thing that didn't rock my world was the bahn mi sandwiches- can't vouch for the assorted outsourced items in the chilled section either. Besides that, If you want Viet food this is your place for the PHX metro area.", "type": "review", "business_id": "yVQiGdxmnrkJDyQXv2maNA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "X7aZqb1tjXhrJJjr12xY8g", "review_id": "XECV1AOPJ7Y90eTj3MRiJw", "stars": 5, "date": "2011-08-01", "text": "Staff was quick and efficient. Food was delicious.", "type": "review", "business_id": "pNJhovUsGAZ4XqG3lCU-5g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "jfdTS_6PVt5hox1BGnpI0g", "review_id": "mMXJvXY3Ty8BHqsHR2bP9A", "stars": 4, "date": "2011-09-16", "text": "I had dinner here tonight, and loved the entire experience! The patio was roomy, our server was quick, and the food was delicious! I ordered the Thai Cobb salad and really enjoyed the unique, healthy flavor! My dinner was priced fairly and I got a lot of food. I will be going back", "type": "review", "business_id": "rVUEZpHQfWI_3kt0lBwaxQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 2}, "user_id": "w_hcSjqLeSZQL9Rx1UP-Tw", "review_id": "xdAZPyB30_ifq2rEpg9m5w", "stars": 4, "date": "2011-12-09", "text": "This is not very far from my home, but for some strange reason, I have never visited there. Maybe because we don't have New York Deli's in Spokane, and I'm not familiar with the idea.\n\nThe other day, I agreed to meet my son and little granddaughter there for coffee and a bagel, and found that it is much more than just a bagel stop. They actually have a restaurant with quite an extensive menu. I had breakfast - the choices were very diverse - including skillets, various pancakes, bagels (of course), french toast, omelets, and a number of other items. The servings were large, and the service very prompt and friendly. Most importantly, the prices were more than reasonable.\n\nThe only thing that I disliked, was that they did not have hash browns. They do have potatoes as an option with the meals, but you cannot actually classify them as hash browns. They are good - but not quite a replacement for hash browns and gravy.\n\nI actually like it so much, that I stopped and had breakfast two days later on the way to the golf course. Again, great breakfast at very reasonable prices. Although I usually don't eat lunch, I am going to have to make an effort to stop in and try their lunch menu. And their deli counter, and all the different varieties of bagels.", "type": "review", "business_id": "IM-9thHqQbBK5tX5MfTzBQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "_PzSNcfrCjeBxSLXRoMmgQ", "review_id": "yG3KN4kXO5uGQ9XJP-TH_g", "stars": 5, "date": "2011-06-27", "text": "I tired they chicken smash burger.... WOOHOO!!! LOVE IT! Crispy chicken (not too think, not too thick) but perfectly crispy. I ordered the build your own: Egg bun, crispy chicken, mayo, and swiss cheese. HELLO MAMA! The smash fries were good. The staff is always friendly.", "type": "review", "business_id": "tr4L9VWmPGZtdBD-L2Pofw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "DfJ8B8T1fgNA6_ZT-aeUlQ", "review_id": "rk9YoJ4vA73O0YT9Z-0CUg", "stars": 4, "date": "2012-03-29", "text": "I'm basically a chain-hater (well, I dont hate them, but I try to avoid them).\nCapriottis is an exception.\nThis delicious sandwich shop has some of the best sandwiches I've had for the type of establishment that it is: a chain sandwich shop.\nThe Bobbie, which is made of freshly roasted turkey (I've seen the big hunks that didn't get chopped), cranberry sauce, stuffing and a hint of mayo is fabulous!\nThe capastrami is a delightful combination of hot pastrami, swiss cheese, russian dressing and cole slaw, and wonderful in taste.\nYou can choose the size of sandwich you want, as well!\nCapriotti's also has salads, and a host of other sandwhich selections, which are consistently delicious and fresh.\nTheir personnel are very friendly, the prices are very reasonable, and it can be the best quick sandwich you've ever had...you just have to go!", "type": "review", "business_id": "eHcQzL5eebqvKrLW5q283w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "lkV_WCqCbpA5gUIHD6wtOw", "review_id": "2chUwhEHn3ccWf8Ty3OZ3A", "stars": 2, "date": "2009-08-18", "text": "Busy right after school which is to be expected...Wasn't very clean which is disappointing, especially for an ice cream parlor. We stopped in to try the new soft serve ice cream with sprinkles that turn the ice cream a new color. Don't know if the boy behind the counter was stingy or what, but the kids got only a couple of sprinkles that didn't even cover the ice cream which was disappointing considering they charge for them. All in all wouldn't visit this location again. We prefer the one closer to home :)", "type": "review", "business_id": "wyzV5-IKq9lfN8Upaf7KSg"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "LHQ2fuC2RDS-Md_dN2O1IQ", "review_id": "ZxYgJkJSglJCkKPSX69oIg", "stars": 1, "date": "2010-12-09", "text": "My significant other had a $25 off coupon from Restaurant.com LOL. That could sum up the whole trip. I haven't been to many restaurants that participate with restaurant.com that are decent at all. I mean, I wasn't expecting much coming into this place, I shouldn't have expected anything here.\n\nI was in the mood for some red meat, and sushi places do actually have decent dishes like teriyaki chicken and stuff like that sometimes. So, I didn't mind checking this place out since I do like a little bit of sushi on the side. The boolgogee, plain, simply plain. There was a salad with the boolgogee, but it too was plain. There wasn't nearly enough meat to warrant a price tag of $8, because the salad and rice probably didn't cost more than $0.50 to make.\n\nOh, the sushi? All of the sushi we happened to get were either super plain or super spicy. By spicy, I mean that there were just too many tastes going on at the same time and it was too overwhelming. I tried a few bites of the 3-4 different rolls we got. After I tried each roll I thought that I liked it but that the taste was too overwhelming for me to want to try another bite. We paid $18 for the food even after the coupon, and I honestly think that even at the price it might be a bit of a rip off considering you can get cheaper, higher quality sushi at Teharu.\n\nThis place is a rip-off for sushi in my opinion. Its not good enough to warrant the hefty price tag. The sad part is that the interior is very well done, if the food was actually good this place would be extremely interesting.", "type": "review", "business_id": "rwQIBAM_kHtVl1Ks8Flexw"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "8WbBr6MRkW8dE9KUYA1yeA", "review_id": "16dzcXqMp8AmR3D6uaEU8A", "stars": 5, "date": "2012-08-28", "text": "I stop here every Monday night and negate two hours of spinning and yoga by indulging in Mexican comfort food. My wife swears by the carne asado tacos; the cheese enchiladas ring my bell. Although I phone in my order, the parking lot is always an adventure. However, the one night a young Hispanic girl celebrating her birthday in the restaurant's limited outdoor sitting area insisted I come over for a glass of milk and slice of her cake negated all the encounters with strange transients.", "type": "review", "business_id": "I20sRbcEK8Ib1YFQFMoERg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZDZszqkVo3eowunOhWnktA", "review_id": "pqD7t_YwRrVcbXcEKkicMw", "stars": 4, "date": "2011-04-29", "text": "Great fresh food Great people Great price... support your local businesses!!!", "type": "review", "business_id": "iPxUYvC8tgt5rBr-IZlSeg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "MoyMjh4LsrfyP92KUYhvfA", "review_id": "OVAWkPro1lbX9IWa7wQ7xw", "stars": 4, "date": "2010-03-24", "text": "We had the luxury of eating here over the past weekend and what a treat. I had the 8 oz. filet (with the blue cheese on top) and my wife had the 6 oz. Both excellent! Side dishes (starch/veggie) were solid! We ordered the house wine (recommended) and also cheaper by the glass than other featured items.\n\nAlso, I am thrilled to see some of the newer restaurants coming to the area. Having lived in Carefree for almost 15 years...seeing it start to boom in addition to offering restaurants with flavor instead of simply Western decor really is nice. \n\nWaiter was extremely informative. I even joked that he could of probably been a voice over in some animated movie or tv commercial.\n\n Anyhow, thanks for a great night out. We plan on coming back next time we visit...can't wait to try the seafood.", "type": "review", "business_id": "9HwUkbKAv7dO3MGlkkJJSg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9yX1qVa2PJtd-yx9M5xuFg", "review_id": "s6bb_CPHJWJu2Cb6QLehPg", "stars": 4, "date": "2011-02-26", "text": "I've only been to the bar here. They make amazing mojitos with an array of different fruits. I told the bartender to surprise me when I ordered my drink, and it was amazing. She put a mixture of fruit along with the mint and it was perfectly mixed. I also had their spicy shrimp appetizer which I didn't really care for. So many other places make a similar dish, but much better. They also serve really good rolls with butter that come out nice and warm. The texture of the rolls are a little unexpected. I think they use tapioca flour as their base. I will definitely be back to enjoy their main dining cuisine.", "type": "review", "business_id": "29hR24tcAM3JZaXfA5xCxQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "6R8hguttwOdf2sZcBXmfSg", "review_id": "ERsJvSA7P4Qf_xMNJBLk9w", "stars": 5, "date": "2009-12-08", "text": "Pei Wei's has nothing on the fabulous food at TOTTS The menu is awesome -- try anything!! The owner, Young, is such a nice man and will always help you understand the menu or make recommendations. In fact, one time we told him we wished a certain dish was spicier (we really like hotttt food), and he told us to just ask next time we were in and they would make it spicier. Everything on the menu is fabulous, but some of my favorites are:\n\nSweet and Pungent Chicken -- all time favorite\nBourban Chicken\nTwins Pork", "type": "review", "business_id": "sNuyncpQdcvfEpfZS-3Yew"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "hkXViVLvkR9-3QtTsWfTSQ", "review_id": "lXll-11JHE4VnzX1CxxLwQ", "stars": 2, "date": "2012-01-22", "text": "Order was supposed to be ready 20 min ago...yet here I am still waiting...not even busy!", "type": "review", "business_id": "prVcY4xSK58PhmGm5iHu-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "8p4at4zdzCpueAmSBaorZA", "review_id": "JsM3I3WFvOF1mpwSQBm8QA", "stars": 4, "date": "2010-11-07", "text": "My husband and I had our weekly date night. Mamma needed to get her drink! We decided to venture back to Phoenix since there are so many new places we wanted to try. Even though it was fairly empty, this place looks like it gets busy later at night. I loved my Lectric Lemonade, great way to start the night. I loved the decor, and the setting above a Starbucks. Very hip. The only thing I would suggest to the owners is to reprint their Happy Hour cards, it said HH goes from Mon- Sat. Bartender said is only Mon-Fri. I was not going to let that spoil my night and I really liked the place. I will be back!", "type": "review", "business_id": "9OPheVf5o8sRcRHxJDl4-A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "OrjLY6sgLphGcI9Mq7rDag", "review_id": "jCvIcxsakTUuciV8Ud1Dgg", "stars": 4, "date": "2012-07-23", "text": "Yelp search for vegan food led me and my mom here nice little place on a beautiful golf course. Friendly, knowledgable staff made my inner server glow when they knew which plate went where. Quite a few vegan dishes, delicious local wines. I really dug that they took a lot of local ingredients and added a nice flair to their menu.\nGlad I came!", "type": "review", "business_id": "TehSM5JrMRikSnjnnfulbw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "oDnAAifb_2zj3Cekc5Kbeg", "review_id": "0xZVM5vcOuI5C_84WV_GyA", "stars": 3, "date": "2011-09-18", "text": "Same Majerle's menu as the other locations. Decent food (especially wings), but high prices for both food and drink. Good service -- even overattentive on my last visit. Great setup for watching football games.", "type": "review", "business_id": "maB4VHseFUY2TmPtAQnB9Q"} +{"votes": {"funny": 20, "useful": 30, "cool": 32}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "fD2_M3N0Ojx7d1LZ4lNSMA", "stars": 5, "date": "2010-07-12", "text": "As far as I know, I'm the only person in this town that has a dish named after them. I could be wrong, but I'm pretty sure I'm right. I mean, I'm always right.\n\nBy now, if you read my reviews, you know that I am vegan and I don't eat gluten. This makes dining out quite an issue at times, especially for breakfast/brunch. \n\nI really wanted to hit up The Vig Uptown for brunch because I like it as a Happy Hour spot, the space is incredible, it is within a bike ride from my house, and I love the Original Vig, but alas, there was nothing on the menu to accommodate me. I gently mentioned in person and a few times on FaceBook that having some sort of tofu scrambler would really improve their menu.\n\nThey listened.\nThey created.\nThey named. (after me!!!)\n\nWe stopped by for brunch this past Sunday for the dishes debut, and got a personal hello from Tucker. He was excited because they had already sold TEN AMber Scramblers that morning and it isn't even officially on the menu yet! I'm already a star!\n\nSo, whats the verdict on the AMber Scrambler? Amazing. Seriously. The thing that really sets this apart from other scrambler dishes is sun dried tomatoes. They bring such a delicious flavor! It certainly doesn't hurt that it comes with their signature guac and a side of pico.\n\nI'll be here every weekend for the delicious dish and the $5 fresh squeezed mimosas! If you know whats good for you, you will too.", "type": "review", "business_id": "WS1z1OAR0tRl4FsjdTGUFQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TRl5jiNFI2m0wfH6CqO3_A", "review_id": "YM5FYvVG2UyhcZx5ZZ9cyw", "stars": 1, "date": "2011-05-31", "text": "I have been here a few times over the last 4 years and really liked it. It was horrible on Saturday night (5/28). I ordered the enchiladas with chicken. When it arrived there were 3 tiny enchiladas with an ounce of cheese inside the soggy tortillas and the \"with\" chicken part apparently meant a few chunks of chicken would be tossed on top. I was so disappointed, but starving so I ate it. The guacamole was really disappointing too. I don't think we will go back again.", "type": "review", "business_id": "fF6m3qsD5blnwuZRuYhzWg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "a89BrWkaBblvdBGdFy1YUg", "review_id": "w-md1oI--bNnOwaBuroqXg", "stars": 3, "date": "2012-06-26", "text": "In here for a sec but everyone seemed to be having a good time! Live D.j. and enough room to be who u wanta be on the dance floor... there was poker going on in the corner and with a nice sized crowd. I liked the bartender chick, and she was fast for being the only bartender in there, and very nice.", "type": "review", "business_id": "8lHJm7hAlfsUNbVb3YaSMA"} +{"votes": {"funny": 2, "useful": 3, "cool": 1}, "user_id": "gUXfVNgnNF9WU73T-d-FKQ", "review_id": "ZqW2Tq3o9HyvJPhsPHJctw", "stars": 1, "date": "2011-09-25", "text": "NO. Don't go. Don't do it. This was my first visit and it was on a whim because we drive by it often. \n\nOne other reviewer here made a wise statement - go the grocery store and buy frozen fish. I promise it will be better than this.", "type": "review", "business_id": "cjFDprdEXbDDdraONMy5Pg"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "m7vtKWpZ9wdEQ95wJxrMrg", "review_id": "oQiJM681Ar4ofjeumMiCIQ", "stars": 3, "date": "2012-06-08", "text": "Friday night after a long workweek seemed to be a good time to treat ourselves to a new cuisine, so my friend and fellow yelper John M. and I decided to check out this Uzbek restaurant. The interior would be mostly generic in appearance were it not for the somewhat ornate Middle-Eastern curtains, and a TV screen playing Uzbek and Russian music videos added to the ambiance. Large pictures of the main dishes in the counter area show you what they offer even before you are seated and handed a menu. For starters, we ordered Uzbek salad - tomatoes, cucumbers and sweet white onions lightly drizzled with a dill vinaigrette - and blinchik, which are crepes with a flavorful meat and onion stuffing; beware, the blinchik are rather filling by themselves. We also ordered palov and lamb kebabs. The palov was a dish of tasty seasoned rice with carrots and meat, and was quite a good choice. The lamb kebabs were juicy and flavorful, though the rice that came with it was on the dry side. A small basket of warm pita bread rounded up the meal. In all, it was a good meal, not great, but definitely satisfying. And I do hope to try the soup dishes next time.", "type": "review", "business_id": "ikuXlYpFsaEs2xlvlopxQw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "Mb0psF4WQF7gZSuZafVr-g", "review_id": "6A4tIsY9quLK9sQteYlO6A", "stars": 2, "date": "2011-10-08", "text": "This is a tough one. It's probably the best Filipino restaurant in the Phoenix area. But that's not saying much, because the few there are here are really not good. Compare Jeepney Bistro to one of the places in Filipino Town (Los Angeles), and they get blown away.\n\nAnd, for the record, my wife is a Filipina. And she cooks MUCH better than the chef here. No contest. A lot less grease/fat/oil, that's for sure!!\n\nAlso, their portions are a bit small. Bigger than a few other places I could name, but still small.\n\nIf you really want some Filipino food, and you don't know my wife to beg some from her, this is probably your best option without driving to LA. But don't form your opinion of Filipino food based on this place. Go to LA and try Bahay Kubo Natin, or some others, and you'll get a much better idea of what the cuisine is about!", "type": "review", "business_id": "yC3ydbHAJTZ22FZp4LynFg"} +{"votes": {"funny": 1, "useful": 1, "cool": 0}, "user_id": "8LAf67lQTjtsS98E55MYrg", "review_id": "jMyVC7PenC0ofcN4EH_8xg", "stars": 2, "date": "2011-08-18", "text": "Have tried this place a few times now we sometimes order it for everyone at work. My impression is that its a step up from Taco Bell.", "type": "review", "business_id": "r2S4arkHyRcUroRhggMIoA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "XHNfuQjWz0A6wImE9NKNNA", "review_id": "7w7GhplenAVDnG94uBl5Dg", "stars": 2, "date": "2011-07-09", "text": "The \"Protein Pancakes\" are always a treat, but the \"California Eggs Benedict\" was just awful today. The biggest disappointment were the hash browns though. They tasted like shredded cardboard. I am tired of going to a restaurant 20 to 30 times and getting such inconsistent results.\n\nShame on you US Egg!", "type": "review", "business_id": "zruUQvFySeXyEd7_rQixBg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "LP0bl3GKToABt3lnpSvA2w", "review_id": "OXMwfR9q3WcKyMbL4BA4Xw", "stars": 1, "date": "2010-05-12", "text": "If you like sushi, go somewhere else. I was extremely disappointed in the quality of both the service and the food. \n\nI decided to take my family here because the other reviews seemed good; however, either my experience was an anomaly or the other Phoenix yelpers and I have stark differences in taste.\n\nThe staff had great smiles, yet lacked follow through. We had to ask for water and extra ginger twice. The sushi rolls were the flimsiest I have ever seen! Although poor in quality, they were high in price for what they serve. I'm not sure about the names of some of their rolls...one was named \"Climax.\" Gross and just distasteful. \n\nThe decor and ambiance leave you wanting. They have three different wallpapers hanging and the music is overwhelming. \n\nEven though this is the only sushi bar in Surprise, I will gladly drive to Peoria or Scottsdale the next time I have a craving for sushi.", "type": "review", "business_id": "MhkZLdUFaHt5SDcQcqOWQg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "pQ6ij6cOBRB3yJGHbVZHUQ", "review_id": "TivhzL_T8GSBQJteMPyfnw", "stars": 4, "date": "2012-09-19", "text": "Good choice for dim sum. Prompt efficient service, good food and reasonable prices.", "type": "review", "business_id": "9Qt1pt0pk2VWz0chdGk-jw"} +{"votes": {"funny": 0, "useful": 2, "cool": 2}, "user_id": "MWt24-6bfv_OHLKhwMQ0Tw", "review_id": "ZeIzJJMKRXiDEq-7bnCFQA", "stars": 2, "date": "2008-08-28", "text": "I cannot stand this mall. They have some really awesome stores but the people who work in them are obnoxious. Most of the people walking around are snooty as can be, and everything is overpriced.\n\nThe food court has some good selection, but is always super crowded and you can rarely find anywhere to sit.\n\nParking is awful.", "type": "review", "business_id": "Hdi7jkB7pHiM1nyPHcqSdw"} +{"votes": {"funny": 2, "useful": 1, "cool": 2}, "user_id": "5E193w76Qlhoi1gkyakW2A", "review_id": "Hmwvw4vdgKjOLca1s0Ajnw", "stars": 4, "date": "2010-10-13", "text": "In the world of Mongolian BBQ near my work, there are 2 contenders: Stir Fry Paradise and AJ's Mongolian (formerly and possibly partially still YC's...). I prefer Stir Fry Paradise because it has never been incredibly packed, and their meat resembles meat and not frozen tubes of meat shavings. The small \"bonus\" buffet offers more food if you aren't crippled by all the food you crammed into your bowl. I like the cream cheese wonton triangles, they rock the body that rocks the party. \n\nYeah, they are a little pricier if you tack on a soda. Just drink water and then tweet to the world how progressive and off the grid you are by not being a \"soda drinker\". I haven't quite gotten my \"sauce mix\" down yet, but that will come in time. That's the beauty of these places, if your food is bland then the only person you have to blame is yourself and your lack of sauce mixing artistry.", "type": "review", "business_id": "bAkVxrXzYO3772VF6o0_cA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "IfZShpNnoVXVGQXVQ3uDEg", "review_id": "-mEYVhqc0ixr7mQOsLg1CA", "stars": 4, "date": "2012-07-19", "text": "Great meal all-around. Was hoping for an authentic experience...and that is what we received from start to finish. Really enjoyed the grilled lamb and chicken, with garlic sauce on the side, and a Turkish coffee to finish.\n\nService was attentive and friendly. The staff was clearly proud of their food/restaurant, as they should be...\n\nHighly recommend!", "type": "review", "business_id": "nRO4tRwimU12hg7Cnz__iA"} +{"votes": {"funny": 0, "useful": 0, "cool": 1}, "user_id": "GRgBu4K7GOb3354esp_xkg", "review_id": "c3-fAE-qWjgVNmjk29Vckg", "stars": 3, "date": "2012-03-13", "text": "After reading multiple Yelp reviews on this business, I decided to come here for the greatest hits: Pizza muffins, Calzones and Antipasto salad.\n\nI thought the pizza muffins were interesting and a great alternative to bread sticks or garlic bread. They were loaded with TONS of sausage and ham and came with 2 different dipping sauces. Although a little greasy and re-heated, I appreciated the novelty factor.\n\nOn to the entrees, the small Antipasto salad (5.99) was absolutely filling for a one person meal. I didn't find it any different from any Antipasto salad I have tried before, but I think people love it for the dressing - which had flavor but A LOT of oil (more than half of the total dressing). The ingredients were fresh but there is nothing out of this world about iceberg lettuce and dry mozzarella. \n\nThe calzone was larger than a newborn baby and hotter than Phoenix in the summertime. Although the corners are mostly (if not all) bread the taste was very good and overloaded with tasty insides. The spinach ham combo my friend ordered was pretty satisfying and this meal could easily be split in 2 for tasty leftovers... if you can stop eating.\n\nI found the teenage staff to be friendly and cheery but the bathroom needs massive help. Only one stall and really unpleasant smells, the female employee who had just left the bathroom as I entered left wet paper towels on the handles of both exit doors... covering the entire area for me to hold on to and pull. Just.... disgusting, especially from an employee who should be trying to keep the establishment clean and good looking.\n\nAll in all, good but not great. Its pretty affordable so if this is your price range, I think you can make it work and still have a tasty meal.", "type": "review", "business_id": "y75baZnoI51J8WS7NK9FHQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ZYBhxMZk32e6DF77jjprhw", "review_id": "CMgh3c7UTxpdWia-X7thuQ", "stars": 5, "date": "2012-09-21", "text": "I've been to this location a few times, but this was by far the best experience I've had. It was two Sundays ago, myself and seven friends wanted to watch the early games and get some food and drinks. My friend called ahead and made a reservation. When we got there, we had a big table reserved right in front of all the TVs. Our waitress was very attentive, friendly and quick. They had a bunch of beer bucket deals that we all took advantage of and had a great time watching all the games, enjoying some beverages and eating some food. Their breakfast burrito with chorizo was fantastic and it'll keep me coming back. See ya next Sunday, Majerle's!", "type": "review", "business_id": "kgPjOtSeMd3CMdbnEmHbeQ"} +{"votes": {"funny": 0, "useful": 6, "cool": 1}, "user_id": "GrSixRnGIxNUJ1Cn5DNX9A", "review_id": "iRuWLIGR4GjBiO1v8nwFDg", "stars": 4, "date": "2010-04-21", "text": "As far as salon-cafes go, this has got to be one of the better ones. The sandwiches, while not particularly ground breaking, are thoughtful and assembled with quality components. Also has a pretty good old-town ambiance.", "type": "review", "business_id": "iRg16D8dWjmv70NF68kgRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "XAuBFVTB4WVZ4UL_6Mq4Sg", "review_id": "QoBtv02iWFXh3DbKRyKFkQ", "stars": 4, "date": "2010-08-24", "text": "I've traveled to Phoenix several times for business trips and stayed at the Ritz. True Foods was my go to spot in Phoenix because it was right across the street from the hotel. I love this restaurant for the casual vibe and healthy food. My favorite dishes are the Edamame Dumplings and the Miso Glazed Black Cod. It was often hard to get out of work for lunch, so coming to True Foods at the end of the day was always a treat. \n\nI only wish they had one in San Francisco!", "type": "review", "business_id": "qjmCVYkwP-HDa35jwYucbQ"} +{"votes": {"funny": 4, "useful": 4, "cool": 6}, "user_id": "wFweIWhv2fREZV_dYkz_1g", "review_id": "U8eRNtWV-sSYVktpO2fLSg", "stars": 5, "date": "2011-10-13", "text": "Aside from the Macy's on 34th street in NY, this one is my favorite store. They carry all my favorite designers, especially for work clothes. Not to mention, the shoe department always the hottest selection of pumps. There's a tiny Ukrainian woman that works in the shoe department, I love her, she is SO patient with me and gives me her two cents as she keeps bringing out the shoes. \n\nI wanna meet the buyer for this store and become her/his bestie. They also have a personal shopper near the women's dressing rooms. Not that I'd ever have the need for one but you might. The sales people are always really nice and helpful.\n\nOn a side note: I once met this old guy who said he brought Janis Joplin to this store to buy panties when she did a show here. I've always doubted that story but it never fails that when I go to the lingerie department I tell myself \"I'm standing where the late great Janis stood.\" She's one of my all times.", "type": "review", "business_id": "Vm9GQUptdZmBM9R7tZ9_Tg"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "ohRev2g3tvXpV3gBnhC-og", "review_id": "RIk_vWSoq5-1gakFKeqXZQ", "stars": 4, "date": "2010-09-20", "text": "Had lunch here today with Lynn W. and Rand H. Well the the place is new and the decor is well done and comfy . They have enough food selections to classify them as a super buffet. As far as the food goes it was all pretty good with most of your typical Chinese buffet selections . Some of the extra items were steamed clams , double baked potatoes ,fresh strawberries and Vienna sausage. The macaroni salad I had was very good and i went back for more as was the stuffed shrimp. There is also a sushi bar but I did not try any on this trip. The food here makes them a 4 star eatery and as far as the staff goes they need to be a lot more happier with a name like happy buffet.", "type": "review", "business_id": "41V_WrLzJErAkjAHbFrqsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "YsPqt0gxG60l0cJvHl_ylw", "review_id": "yT-U-KH53ED2i8_Is9OGOQ", "stars": 4, "date": "2012-08-11", "text": "This restaurant is inside the Baiz Market! So, don't waste your time trying to GPS it- just GPS Baiz market!\n\nSecondly, ambiance or quick service are probably not the reasons you'd come to eat inside an outdated restaurant on styrofoam plates.\n\nThe food, however, is pretty tasty. They have a wide variety of items typical to Middle Eastern cuisine: shawarmas, falafel, kebabs, pies, and more. They heat items up in an open oven and the food comes out very fresh and hot!\n\nI tried the cheese pie and shawarma. Both items were very good. I still got onions when I asked for them to be excluded. I suggest skipping their small beverage options in the adjacent cooler and going to the selection on the south side of the store for a better deal and variety.\n\nAll in all, it is definitely worth trying out, especially if you are going to Baiz Market anyway!", "type": "review", "business_id": "_qTzOkbin2giDOrFsaxm8A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "WW1MMZio1kZgqWzsagD-Hw", "review_id": "Pf2SlD40ciGs0qoMA2AdYA", "stars": 5, "date": "2011-08-29", "text": "Toasted subs at their best.. The worst part of eating here is trying to choose one sandwich out of my four or five favorite picks. And in the fall when they bring out the soups, I can hardly resist ordering the cream corn soup with my meal.", "type": "review", "business_id": "ke0BMVeaQf3lvwSzm-fPyA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "8U6I0GuBasZa9rapy2H-8A", "review_id": "kfkcMrTGjhMwSWwuyZ2XrQ", "stars": 5, "date": "2011-07-17", "text": "First timers to this park on an early Sunday morning. Me, my bf, and our 2 old English bulldogs had a great experience. \n\nYou can choose between the active or passive dog park. We choose active but also decided to keep our dogs on leash being our first time and all. \n\nWe were immediately greeted by a woman and her 2 boxers, very friendly. We walked the perimeter of the park to get our dogs use to being around other dogs and talked to several people along the way. \n\nWe did have a small incident when a dog snapped at our dog but no harm, no foul. \n\nLooking forward to bringing the dogs here again!", "type": "review", "business_id": "_1QQZuf4zZOyFCvXc0o6Vg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "QzA6ZW1NFid32_g_fsapIg", "review_id": "U2zZ5IoCERN8AXa443tiXg", "stars": 1, "date": "2010-03-31", "text": "My husband and I went to Ernie's a few weeks ago on a Saturday night because it is within walking distance to our house and there is always a crowd so we wanted to check it out. We met our friends in the bar and waited... and waited... and waited... and waited. Still no-one offered to take our drink order. \n\nThe bartenders and barbacks made eye contact but no-one came near us. We don't look like hooligans or ruffians or anything so it was irritating. The weird thing was there were people eating in the booths around us, and one or two other people at the bar (who had drinks.) We finally got up and left. Why waste money on places that won't take it! I won't return and will recommend my friends don't either!", "type": "review", "business_id": "9DsXB8T3UwBYiLPiLJJuNQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 2}, "user_id": "xYzXnIvyadwjcttO0D71KA", "review_id": "RtNB0MtHiVaIDmgedeE_bw", "stars": 5, "date": "2007-11-02", "text": "I'd have to say that among the restuarants in the Tom Jetland suite (Fez, Ticoz, Switch), Ticoz is my favorite because of its dimly-lit lounge-like quality, which provides it a cozier feel than the other two. Add to that, the hypnotic Mojito creations and Ticoz is one of those places I could spend an entire weekend late afternoon at, as long as someone else drives, of course.\n\nThe tamales are fantastic and are more similar to corn pudding than to traditional hand rolled tamales. If you get them with veggies, you'll find that the veggies are a little oddly cut for the dish, so I recommend some other topping. The beef is fantastic (especially in the tacos).\n\nAll in all, this is one of my current favorites.", "type": "review", "business_id": "FUI-hWH_bpis7AKZTWenUQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "pk4y8PJdccJysYBpBA-gcg", "review_id": "ZnViqu0FiDEjZbKiXJL8VQ", "stars": 5, "date": "2008-06-19", "text": "I love-love-love Green. The atmosphere is wonderful and the food even better. The people who work here are lovely sweet and very helpful. There are far too few vegetarian restaurants in Phoenix metro area and this one gets my full support.", "type": "review", "business_id": "c1yGkETheht_1vjda7G5sA"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "y5_vrqIylhXMrejM_-x_vA", "review_id": "qgPDxS2WPx4XxkhQlf7U8g", "stars": 4, "date": "2012-01-14", "text": "Cute decor-who doesn't like IKEA? Attentive service. We ordered a couple beers and the sweet potato tots. I decided on the Ahi burger and the veggie burger, and my sister went with the two sandwiches: PBnJ and the grilled cheese. Everything was delicious!!!! Unfortunately for us we arrived about 30 min prior to happy hour, but we managed to get a couple beers at the $3 happy hour price. \n\nI've been here once before and since then it looks like they added a few items to the menu. I'll have to go back to try the shrimp po-boy and the red snapper burger!", "type": "review", "business_id": "ObnZiF99lqggVasgyGBtVA"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QpC_Z-gOWeTwzq-NYPsoxg", "review_id": "lFIMYqk6Sqje1vgMVWxRfw", "stars": 2, "date": "2010-10-23", "text": "I booked a night at this resort hotel because my daughter had a volleyball tournament in the area, and they had a special for 50% off suites. I wasn't impressed for a number of reasons. First, even after the discount the rate was $124.00 which included an $8.00 (normally $30.00) \"resort fee\" which included things that any other cheaper hotel/motel would offer for free like local calls. Second, for the price I would expect modern things, like maybe a FLAT SCREEN T.V.! Come on, they've been around for what, 10 years now? And a high dollar place like this can't afford one? Another annoyance was the fact that their high speed internet access costs $15.99 a day. I can get free high speed internet at any motel/hotel for less that $50.00 a night. Other annoyances include a t.v. remote that didn't work, and a shower head that was so loose that it almost came off when I tried to adjust it. I would never, ever pay $200.00 a night for this place, and regret even paying what I did.", "type": "review", "business_id": "I941jBn1KURuN-2wygJ_5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "RHWm_duEdCgWwtN1fBUkHA", "review_id": "WT7BmBV0WTHw0MrXTY6C2w", "stars": 3, "date": "2010-03-25", "text": "Food is a little pricer than standard Chili's, but it's in an airport so that's expected. Service was good, food came out quickly and to order. Be sure to stop by before you head through security.", "type": "review", "business_id": "-zcZNlO0JwZHppan8rGkBQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yg9FlyXJcmrMAfqkXmVvDw", "review_id": "DPhy3dRkmhiphPD57j7Vtg", "stars": 5, "date": "2010-12-27", "text": "I have been here at least 10 times and have never had a complaint. The staff is friendly, the food is great, the atmosphere is lovely. \n\nMy favorites - the LB lavosh and spicy cottage cheese.\n\nI will continue to come back to Local Breeze again and again!", "type": "review", "business_id": "GAPqG0WNBBidKeZTMpEZ-w"} +{"votes": {"funny": 0, "useful": 3, "cool": 2}, "user_id": "YavFbDG7DUOTXJBLxpq97A", "review_id": "i7UwyQxJ1NqtiYSul5lICA", "stars": 2, "date": "2009-02-18", "text": "I used to be an avid shopper/seller at Buffalo Exchange. As I work at a boutique, it was nice that I could bring in brand-name merchandise and get cash for it when I needed it. The majority of the staff knew me and were always very friendly. I don't know if it's new managment or new policies but things have definitely changed around there. After yesterday's experience, I will definitely be taking my clothing somewhere else. First of all, the service took way too long. Secondly, the \"buyer trainee\" was unsure on about every single item I had brought in and priced a couple like-new $120-130 tshirts at about $20. The attitude of the staff is quite off-putting and it kind of makes it seem like it's such a task. However, they red-haired girl who was working by the fitting rooms was very friendly & helpful. I don't mean to sound like a hater, but as I was quite a loyal customer it was quite a disappointment, especially in this economic crisis where customer service has never been more important than for those who work in retail.", "type": "review", "business_id": "3HciJAVduCRoPDdzgh7cAA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sfMHSAEaw2EuJJSdfE4hGw", "review_id": "xpn7D5q7cVI1Bo_uimyJsA", "stars": 4, "date": "2012-05-24", "text": "It's just fun and I'll be back ! Very chill.", "type": "review", "business_id": "Edj0quZE5k1WcAtf883j6w"} +{"votes": {"funny": 3, "useful": 2, "cool": 2}, "user_id": "z06IHGXI_ofBc2DkAbCgnA", "review_id": "5GsLmUONOmz6tMpQeUidnQ", "stars": 4, "date": "2011-09-08", "text": "Great addition to the CityScape lineup! This is a big place with TONS of beers on tap, sweet cushy leather seats and friendly employees. So far I've only been for happy hour, which is great because they offer deep discounts on local beers. I'm definitely looking forward to sampling some of the food options. \nMy one complaint - most of the songs we heard here (I've yet to see a live band here) were horribly outdated top 40 hits that I wish I had forgotten about. Clearly that's a matter of taste though ;)\nLooking forward to going back!", "type": "review", "business_id": "fP-BPL6iRu2tbcvlnjRshw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "8WQubmP7G0NM3IyzyMnCEA", "review_id": "gAD5yGFxBvF46nuwVytiHA", "stars": 4, "date": "2007-07-30", "text": "A total oasis from the summer heat. This friendly and well stocked neighborhood library is never crowded, so you can alway grab a free PC or a free table if you're lugging your own laptop. The selection of books and dvds are really good too.", "type": "review", "business_id": "2CYIJPEd2SQ38khwuULvAw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zYgSDyEHVcMLRL1LLms7IA", "review_id": "M6bpGGLsCKfNaiaTjaUiVA", "stars": 3, "date": "2010-06-06", "text": "Arrived around 5pm one Wednesday evening. The place is not in a nice area of Phoenix, and it looked deserted, and I was going to leave, when I saw a Mercedes and Lexus pull up. So I thought I'd give it a chance. The prices were somewhat reasonable, I got the Lo-Lo's for $11 (2 waffles, and 3 pieces of fried chicken). The food was tasty for what it was, but I only give it 3 *'s because its just so unhealthy.. kool-aid, waffles, syrup, and fried chicken! This is the kinda a place I may go once a year, but I just feel so guilty! Not sure what the syrup was, but it certainly wasn't real maple syrup (I'd imagine it is some sugar based creation), and the waffles were dry. The chicken wasn't very moist, it was also a bit on the dry side.", "type": "review", "business_id": "K8pM6qQdYu5h6buRE1-_sw"} +{"votes": {"funny": 0, "useful": 3, "cool": 0}, "user_id": "UMJ-KT4fDYDwZKn_qkCpPw", "review_id": "FBDIbRj5q14mrXJ0bz4ddg", "stars": 4, "date": "2011-05-20", "text": "After reading the other reviews, I thought perhaps I would weigh in - they seem to be all over the place. The critics are correct that the decor seems dated. To me, having grown up back east with this very sort of restaurant, it was charming. The restaurant is particularly enjoyable to visit at night, when they turn on the lights in the garden. \n\nI enjoy the layout of the dining room, although I agree it is a 'cooler' experience to eat in the bar. I guess some people could be offended that the staff sit down and eat in the bar when it is slow, but I'm not one of those people - I think it adds to the charm. \n\nI had a very late lunch yesterday - around 3 - thanks to an appointment that went on forever. So we ended up heading to Riazzi's for a late dinner, around 8:30. At that time of the evening, the dining room was closed., so we sat in the bar.\n\nTheir service is truly one of the strengths of this restaurant. On this night, they were unusually attentive - even for them. The waters came out immediately upon sitting down, then they took your drink order - as it should be. Neither my iced tea or water ever got below half a glass. This is something I occasionally find annoying at places where the staff draws a lot of attention to itself when they refill drinks - particularly when it interrupts the flow of conversation. Not at Riazzi's - they are attentive but unobstrusive. \n\nTheir bread is my favorite restaurant bread in the Valley - hands down. It is actually better than the Italian bread I grew up eating back east in Hartford, New York, Boston and Providence. It's so good that I wish they had loaves available. You have to possess a lot of discipline not to fill up on the bread.\n\nThe salad is as others have described it - traditional, but fresh. \n\nMy favorite item on the menu is now listed under pizzas and described as a Spinach Pie. This used to be listed under appetizers as the Grass Pie, but if you order a Grass Pie, they'll still know what you mean. It is a cheeseless pizza with spinach and arrabiata sauce. Confession: I love all things arrabiata. But this combination here is perfect. For about 1.50 (I can't recall the exact figure), they'll add mozzarella to it, but I've never done that because it is perfect as it. \n\nThey bring you a healthy amount of tasty parmesan cheese, so you can always throw that on the Spinach Pie.\n\nSo, I had that. Outstanding as usual. My wife ordered the Penne Primavera, which was very good. Last time I was there with my daughter, she had the penne with garlic and oil, which I thought was just superb. Simple, but perfect for a garlic fan like me. I have a feeling most folks skip over such an entree in favor of something more elaborate, but I recommend it. \n\nWe didn't have an appetizer, and even though I wouldn't describe the portions as enormous, they were generous and neither of us could finish our entrees.\n\nIs Riazzi's going to be sexy for the young, hip crowd? Probably not, although it is romantic at night with their lights and sunken/elevated dining room, and has the 'cool' factor of the bar. It totally hit my 'nostalgic for the east-coast Italian restaurant' needs. \n\nI just wish the service at most modestly-priced Valley eateries approached Riazzi's. You can get spoiled with the bread and service over here.", "type": "review", "business_id": "9XX-sxaDFXlXO65WnuS65Q"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GNlv9XPhj6P8Fk8Z0cnBrw", "review_id": "i01x8QygrEUch4fiKIeuJA", "stars": 5, "date": "2012-05-27", "text": "Heard about this interesting steak house from Lindsay, my Yelping 'go to' and I am grateful. What a fun night, feeling \"Mad Men' ish as we walked through the kitchen when entering the restuarant. \n\nAtmosphere was amazing and the food.... WOW. My fav had to be the amazing steak and bean chili/soup.... fantastic.\n\nSteaks were our of this world and the mushrooms... devine.\n\nWhen entering the restaurant we greeted by helpful eager staff ... with each one adding input into our experience.... especially Patti, our server. She was helpful, informative, fun and sealed the deal of a fantastic night. Thanks", "type": "review", "business_id": "cN6aBxe2mQvrQlzk26LyRQ"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "eFY6bJpTcpZPXK_2tuOj_A", "review_id": "TgzOFH61ZfnYPM_1ABnj0A", "stars": 4, "date": "2009-01-03", "text": "Okay, eating Thai food in what seems to be an old diner is kinda weird. But after getting off of long flights, my mother and I needed some kind of Asian food and quick. The GPS was taking us to a sushi joint when we drove by this place and we immediately switched gears.\n\nI give these guys major kudos for the portion size. Seriously, I felt like I was still in Texas with such an enormous plate full of pad thai sitting in front of me. And it was delicious--plenty of peanuts, the noodles were perfectly cooked, and they didn't skimp on the meat. My mom's soup had to be improvised since they'd run out of octopus. They asked her if she wanted to change her order or just double up on the shrimp and she chose the latter. Sure, it was tasty, but she was really disappointed. The fried spring rolls were okay, but they were tiny and not piping hot.\n\nThis was a nice way for us to start our trip and the food hit the spot. It came out quickly and the service was quite friendly (though not quite professional). I'm all about supporting the mom-and-pop shops and when the kids are working for the parents, I feel for them even more (been there, done that). With a better parking lot and some remodeling to get rid of the weird diner feel, this place will continue to attract more and more clients.", "type": "review", "business_id": "oJpmYvLibGrYPDvcaUeMOw"} +{"votes": {"funny": 3, "useful": 6, "cool": 5}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "CcAQODU1Z3-Q_GvqoZEP1g", "stars": 5, "date": "2012-08-08", "text": "Fable III used AND looks brand new for $11?! OH YEAH! I'll take it!\n\nI stumbled upon this place because our little cousin wanted to get a game, and he had been here before with his aunt. \n\nThe place was filled with classic games all over the walls and even to play. I'm guessing classic original games are back and in style again. Plus they are just fun to try or have a flashback from the 80s. \n\nThe store is clean, open aisles to walk through, great prices on the games and the customer service from Gary and Rich is phenomenal. These guys were very nice, educated about the games, and went out of there way to make everyone happy. Great job guys! :)\n\nAll the high star reviews are true! This place is SO much better than any other gaming place I've been too. My husband loved it too. He was a kid in a candy store. \n\nWhat a great find! I think you should take a trip to this store, even if you don't play. Get a game as a gift. Just to experience this place, it is something special and unique.", "type": "review", "business_id": "1nIf2BoKPoNHbQKbi-Izig"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "QIka-hRDjClBl2iT_5KLhA", "review_id": "uh_lAl3fQ1JpyoXQRxYfpg", "stars": 3, "date": "2011-12-15", "text": "Ive been to F&H on numerous occasions. The night usually goes a little like this..\n\n I walk up to the entrance, I see people smoking outside in a small fence area. I look over and see these groups are starring at me like i just blatantly readjusted myself in public. I give them one more glance and realize in two hours we all will all be best friends exchanging pointless stories about our days when in reality I couldn't give a flying f*[% about their new kitten they adopted and named Bunbun. But in 2 hours I will thrive and cherish each of their stories and be amazed I never found such intellectual people sooner.\n\n Before I get to the door I feel eyes spying on me. I look up to find one of 17 hostesses peering through the window ready to yank the door open a mere second before I reach for it. (you can't beat them to this.. Ive tried several times, they are good at what they do. Just prepare for this and accept it.) \n\nas I step inside my eyes automatically affix to the bar top. I scan up and down the row of seats. As I'm scanning down I see two empty seats. I'm not sure if guy code applies to bar seats like the bathroom urinals (guys.. You know what I'm talking about).. But I usually just start the night off not giving a... Because I already aknowledge the fact things are only going to degrade from here anyways.\n\n I start with a tall miller light and look up at the game playing on the TV's. I continue my beer almost empty then order some beer battered buffalo chicken tenders with extra ranch. I look into the reflection of my phone to make sure my face isn't suddenly disfigured because she looks at me as if I just asked for an order of wine and chive biscottes. \n\nI explain that I am looking to get the beer battered buffalo wings then she calls for backup like I'm speaking a foreign language. \"Hey Lacey! This guy wants beer battered buffalo chicken wings\" they say some things, fumble a bit then come back with.. So you want \"chicken tenders and ranch?\". I explain again to the both of them. They both tilt their heads to the side. Either this one beer slammed me, and I'm speaking nonsense at this point, or they just don't understand what buffalo wings are. \"so..you want a cheeseburger and a side of buffalo sauce sir?\". They do a little further team planning and come up with a solution and I end up with beer battered chicken tenders dry as a bone with no sauce and a side of buffalo sauce. My friend getting the opposite when we both ordered the same thing except he gets no buffalo sauce and a side of ranch.. I find it to bother me less and less each time because I expect it now. \n\nTheir food really is good, and their service is...Did i mention that their food is really good? \n\nI look back up at the TV acting real smooth and care free only to realize ive been watching female tennis on the television next to me for the past 30 minutes while everyone eIse is attentively watching the football game. I'm not ashamed to admit that I continued watching it. I think it was the loud grunts that kept my attention. I finish eating, grab another beer and me and the friend approach the ping pong table. \nYou need to go to the hosts stand to get the equipment. It's free. Wait no it's not.. It's a dollar. Nope that was last month. Now it's 9 bucks an hour. Better empty those pockets. Just remember every hour you waste playing you could have fed 27 starving ethiopians for a month. But in your drunken stooper you chose to dish out the $9 like myself and play pool or ping pong. Shame on you.\n\nPS.., beware of the twins... I thought I was loosing my mind after a few beers seeing one girl cover the whole restaurant in a matter of mere seconds. If you ask your server for something and she looks at you funny... it's either because you asked her twin, or you asked for buffalo chicken tenders.\nAlso... if you stay late enough the cops hide and wait for you to leave the parking lot as soon as you turn out. But of course you have a designated driver... right?\n\nOverall, the food I have ordered was great.\nThe service was...\n\nthe food was really good.", "type": "review", "business_id": "EzAen1_nwVuiWPKBj9HUpQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "rVRmCNgpzj57N1VAiXk-AQ", "review_id": "H45iVLBPmJLymVWRC_zONA", "stars": 4, "date": "2012-05-31", "text": "I really enjoyed my stay here!\n\nWe used a groupon and I will stay there again when I visit Arizona. The rooms were very tidy, bath and body works collection available for shampoo and soap. \n\nI loved how the pool was open all night as well. The pool and hot tub did need a bit of scooping because there was some debri in there but nothing terrible. Towels were available as well as water too for the guests.\n\nThe front desk people were very pleasant and gave us an early check in no problem. \n\nMy fiance and I wanted to go down to Mill avenue and were pleasantly surprised when the front desk said there was a 24 hour complimentary shuttle that would take us and pick us up. The driver was very helpful with advice on places to go and also tips to keep out of trouble. :)\n\nWe went to Milagros for a margarita too, and the bartender was very pleasant and the drinks were not crazy expensive.\n\nThe hotel is very close to Arizona Mills mall and other places in Tempe. It was worth every penny!", "type": "review", "business_id": "VS6eeO_IxSW0pQOWPtXSEg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gjigz7a2hA5_XJeIxiwzTQ", "review_id": "wZYa1Z7TOKO95jgmx9233A", "stars": 4, "date": "2011-06-13", "text": "I have been to RA a handful of times for happy hour, and was always annoyed by the loud music and crowd. \n\nHowever, this time I went here for happy hour as a first stop for a Bachelorette party and I had a great time. The upbeat social atmosphere was great for getting the night started. The group ordered a ton of appetizers and rolls, and even a drink each, and we walked out at about $30 a piece. The elderberry mixed drink was especially good.\n\nNormally, I do not pick this place for sushi happy hour because I don't like their quality of sushi and like quieter placed to relax with a friend or two. But if your going for a fun group atmosphere, this place is perfect. But only during happy hour, otherwise it is definitely not worth the price.", "type": "review", "business_id": "s26P-jeVUH9TjnTPQttPag"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Hlhcx4gPu4jmTalbZLNc5A", "review_id": "JmRsNK6lSO-_aAw-YnfWXg", "stars": 5, "date": "2012-07-06", "text": "I love this place I have been here 2wice and it puts of the others in the country to shame. I hope that I can volunteer here.", "type": "review", "business_id": "qMkIbQFrROSnPaQ7at85-w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "c3rGyts2bCr7NJ_561OpLA", "review_id": "cS4GhqGKmz2YZ4_3Hdf5sw", "stars": 4, "date": "2012-01-27", "text": "I'm so happy these guys are here. I work next door at Gangplank, and the previous sandwich shop in this location was okay, but really started to slide downhill. Planet Sub totally renovated the place (looks great), breathed new life into it, and came out swinging with a diverse and tasty menu. You can really tell they're working hard to make this a great experience, and the sandwiches I've tried so far have been excellent. Look forward to going back soon!", "type": "review", "business_id": "3rUk-WyCv_wMQR5HbTqD4Q"} +{"votes": {"funny": 1, "useful": 4, "cool": 4}, "user_id": "mQba83gB018LlGt51r80ZQ", "review_id": "2VeokkuDaXaaIzCHCsBAYQ", "stars": 4, "date": "2009-01-26", "text": "Brackin's is my new favorite day drinking spot. The bar itself is located perfectly within a tucked-away area in the Old Town Scottsdale mall area. The atmosphere is very relaxed, and when the owners swing by, they really make an effort to get to know you. Prices are also very relaxed, with bottled beer landing right around $3 for domestics. All in all, if you are looking for a spot to hang out with a couple drinks, maybe enjoy some live music, and do some people watching; I would definitely recommend Brackin's.", "type": "review", "business_id": "tdcjXyFLMKAsvRhURNOkCg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "64YY0h0ZAR2nbzxbx0IwJg", "review_id": "T1d3kEauRPHnoLshl-62aw", "stars": 4, "date": "2012-06-12", "text": "I brought DD and her friend here today after a long day of Summer Camp and running around. \n\nWe showed up shortly before 3 p.m. for their Pop In Playtime, which is supposed to be from 10 am to 5 pm. \n\nThere are two rooms of bouncy house contraptions that are appropriate for children older than age 3. I don't know if they have actual age or size restrictions, but kids younger (and/or small kids) would have a difficult time here. One reason it would be hard for younger kids? There are specific instructions for the contraptions which they go over with the kids before they are allowed inside. Some have a max of 2 kids at a time (the obstacle courses), some have a max of 6. One has a max of four, with three on the ladder and one going down the slide. Younger kids would likely need to be constantly reminded of the rules, as they can be a little rigid.\n\nBoth my 4 year old and the 9 year old LOVED it here. They both said they preferred it to Jumpstreet. \n\nThe girls were bummed out when at ten minutes to 4 someone came in and said playtime would be ending in ten minutes. Then the guy said if parents wanted to know why, we could approach him. Upon approaching him, he said that two birthday parties were booked for 4 p.m., so they were ending Pop In Playtime early. \n\nSome parents were VERY upset, having just gotten there less than 30 minutes prior. DD was very disappointed. It took a little prodding to get her to put her shoes back on and get ready to leave after only an hour of playing. \n\nOn the way out, some parents stopped by and talked to the shift manager. She just handed out cards for another session since ours was cut short. Pretty cool; we will use the cards to bring another neighborhood kid back with us.\n\nThere were JUST the right amount of kids here at this time of the day. I cannot imagine how nuts it must be here on a weekend or during Summer mornings. \n\nStill, bring a book and some bottled water and sit on the sidelines... or do as I did and run the obstacle course several times on the insistence of the kids. ;) It was fun!", "type": "review", "business_id": "Gwwdr4Z1edd2yHxqDdQEqA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "e4TQFVfepzHf--hnBsjntg", "review_id": "bNY7MFACJolgMWI9_QaPXw", "stars": 4, "date": "2008-09-09", "text": "Being a long time devotee of the Gelato Spot, I never gave this place a shot. I must admit, the Marscapone gelato was very good. I probably won't switch from Gelato Spot because parking is so much more convenient at 32nd & Camelback. However, the next time I am out for a walk in the area or am in the mood for a sweet treat after dinner at Postino or LGO, I will definitely pop in.", "type": "review", "business_id": "LjqY98zL96sem_PxC6ZG3g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FW4C9Hc-CR9tj112CCBCLQ", "review_id": "1SbCwpk6St8atpJeiBTaWw", "stars": 3, "date": "2011-06-08", "text": "I haven't been to a Sweet Tomatoes location in well over 3 years. I have never been to this location before, but the service was good. The selections haven't changed that much. I was pleased to see they had strawberry muffins with strawberry butter. YUMMY! The salads are still fresh and good.\nI wish they had more non dairy alternatives there.", "type": "review", "business_id": "NQhPkGeHiljeg7tXPTHJeA"} +{"votes": {"funny": 2, "useful": 5, "cool": 4}, "user_id": "JffajLV-Dnn-eGYgdXDxFg", "review_id": "OcJxquwk6W9HvVkhRdObvA", "stars": 3, "date": "2010-01-02", "text": "Being that not many places were open on New Years Day, I decided to cruise around and see what was open. Being that the bookstore wasnt quite open yet and had a horrendous line, I drove around a little bit to see if I could grab a cup of coffee to kill some time.\n\nI pulled into the parking lot because theres several stores located in this strip mall, and have shopped at a few stores here before. I found this coffee shop smashed inbetween other stores. Its a very small shop, with extremely limited seating. I will say I liked it here, and I enjoyed my experience for a lot of reasons. Thier prices are cheap as all get out, which is great! I got a 12 ounce Mocha for $3.24. Awesome! Service here was amazing and friendly, and I will gladly return in the future.\n\nSo why 3 stars? there were a whopping 2 tables to sit at inside, and thats kind of a problem. I also asked the girl about the internet, and she said the signal was in and out, and should be fixed in a few days after the holiday. For me, a coffee shop is a place that I like to park at for an hour, plug in my computer, surf the net, and drink coffee. I dont like sitting outside because A) I have no plug and my battery dies after an hour, and B) in the summer Im not sitting in the heat. So, even though I would return for the prices and service, I wouldnt recomend this place for anyone who plans on staying for more then 5 minutes.", "type": "review", "business_id": "O02Z6r9mO3tORhD5ynWPeg"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "f3LA83yEEBMj9q92H28O7w", "review_id": "lnofa2EfVjX3UXeRcFsa8Q", "stars": 2, "date": "2011-01-31", "text": "This is one of those reviews where a qualifier is required. It seems like everybody that gives this transit system a good rating is a Phoenix native. That makes this, like so many other things, good for Phoenix. The problem is that it's terrible compared to nearly every other metro system in North America and absolutely abysmal compared to more progressive parts of the world.\n\nThis is quite possible the slowest train that I have ever ridden in my life. It seems to make stops every two blocks and it take far too long to get anywhere. Factor in the terrible hours of operation and you're going to easily find yourself stranded at one end or the other after a night at the bar.\n\nPlease work on expanding the routes and hours, speeding up the trains and then maybe you'll be able to increase ridership. I'm a huge fan of mass transit but this train falls far short of expectations.", "type": "review", "business_id": "bts6jVczHJuWzpT8Y26UsQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "ksJmOji5HBELowhDLGm_3g", "review_id": "ewv4dzX4GlYCwZdyHOP55Q", "stars": 5, "date": "2012-08-01", "text": "Loved it. Food was great, service was great. Not easy to find, but worth the search!!!", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "W7nkIA52ThKHnuNQF7EMnA", "review_id": "H4npkWXgUV6UjtfOcKYAkA", "stars": 4, "date": "2011-01-16", "text": "First time at St. Francis last night. Good menu selection, had an excellent server, good portion size and excellent meal. I tried the chicken salad for dinner and it was tasty and just then right size. They have provided a nice atmosphere with exposed brick, stainless steel tables, and just the right amount of lighting and music. \n\nOnly downside was the backless seats at our booth. Very trendy, but somewhat uncomfortable. Ask for a table instead and you'll be fine. \n\nI'll return.", "type": "review", "business_id": "uKSX1n1RoAzGq4bV8GPHVg"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "A_VCj_m1zqW0gc0zSzQ3tA", "review_id": "nm-KyaVBNZJSEGYLLdt-EQ", "stars": 5, "date": "2011-01-13", "text": "I'm giving Bobby Q an extra star in this update to my previous review, because although it has its share of hits and misses, it is, in fact, as good as it gets in Phoenix for great barbecue. I love barbecue. It is a hobby of mine. When I get stuck on something and want to know what it should look and taste like, I go to Bobby Q and am almost never disappointed. Most recently, this happened with beef brisket. I'm going to upload a picture I took of Bobby Q's brisket because seriously, if you look at it and don't want to immediately die from desire, then you just don't like barbecue. If I had anything bad at all to say about Bobby Q, it would be that sometimes their meats can be slightly overdone but this is not the norm. Their quality control, considering how much food they must serve to keep up with the demand, is astounding. Their prices are too high, but of course, you're paying for the almost Disney-esque atmosphere. Their sauce is absolutely delicious (although it should be noted: they don't understand what \"spicy\" means). All in all I really can't say enough good things about this place. Go look at my brisket photo. Seriously.", "type": "review", "business_id": "rZbHg4ACfN3iShdsT47WKQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "BEcT2wCP-G0LfkKZSlYdzw", "review_id": "_aQfc-QTRf13VkAWB5gDyA", "stars": 4, "date": "2010-11-25", "text": "Second visit to L&L. The first was at lunch with a group of moms second with my family. The service was excellent which is saying a lot. They didn't have to ask what we needed they surveyed the table and kept the meal moving. Which I appreciated since we had the three kids with us. This is not traditional chinese, so get the asian nachos. They are a giant appetizer very unique and quite tasty. EVERYONE enjoyed their meals and the happy hour deals are pretty good. I see more visits in my future.", "type": "review", "business_id": "gI4jThFNwy73SzaNvi-1dw"} +{"votes": {"funny": 1, "useful": 3, "cool": 2}, "user_id": "9qCPmT6ovJjxL4tJB4ANCg", "review_id": "b01QqdMpIIaeEnMs_g92pQ", "stars": 5, "date": "2010-04-10", "text": "Headed back to Lobby's. How I missed this tasty burger. I wasn't disappointed with round 2. The burger was still fantastic! I'm also happy that the fries were a little bit less salty than my previous trip. \n\nWith any burger purchase, getting the combo pack (fries/soda) is the smart choice.\n\nI do wish that they would lose the styrofoam soda cups and offer more than one size of drinks.\n\nMake sure to grab plenty of napkins before you sit down. The burger can make a mess with the homemade sauce dripping off the meat and bun. That's a good thing in my opinion!", "type": "review", "business_id": "eIxSLxzIlfExI6vgAbn2JA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2tyadgcxcaEu5LWgLdwLAQ", "review_id": "we5T3NsdF_oPrbPBpMo31w", "stars": 5, "date": "2010-08-06", "text": "Rivas helped me get through numerous late night study sessions and early morning hangovers! Hard to go wrong with anything on the menu, but my two faves are the Carne Asada and Chile Rellano burritos...with fresh horchata, of course!", "type": "review", "business_id": "vSEFzop2GDXsIWTLxIGMiw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "We7ULac-q9TAWOhiSozzrQ", "review_id": "y2l9PqdeqUVeOex1Vg0QdQ", "stars": 1, "date": "2012-12-29", "text": "Do Not Eat Here if you think a bathroom in any way has anything to do with the cleanliness of the food preperation. There was literally dried smeared feces on the toilet seat and the floor looked like it had never been washed. Of course the restroom cleaning check-list was not initialed the entire day. Oh...I almost forgot there were no paper towels to dry my hands. I told one of the employess and he says \"I know dude\". It's rediculous that the bathroom looks like this when you have 10 employess standing around with their thumbs up their asses gossiping. \n\nBurger was over-priced. Milkshake was ok. Also no napkins anywhere in sight on the tables or at the bar area. Apparently napkins are something you have to ask for? Whoever owns this place needs to get a better manager at this facility, because he is loosing money with all of the one-time customers who will choose to go somehwere else next time.", "type": "review", "business_id": "_7EJtWjOjZsBUNRvzw-_Xg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "wi2DEAkDI2AbVF4PBELEzQ", "review_id": "oS3wR-c59yIWUI1BLccv6w", "stars": 5, "date": "2007-12-27", "text": "http://www.in-n-out.com/secretmenu.asp\nhttp://www.badmouth.net/in-n-outs-secret-menu/\n\nDouble Double Animal Style.\n\nIt is worth the trip cross country. Well maybe not, but I do enjoy them while I am visiting. I cannot get enough of them.\n\nIf you are really hungry: http://www.texasburgerguy.com/2005/01/16-x-tra-patties-and-x-tra-cheeses.html\n\nThe private stalled restrooms are always spotless and stocked. 4 Flushes.", "type": "review", "business_id": "byFWmwlVSmUj-AmM6NZYvw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2lvfBteL5ny4CBjNIk9Mwg", "review_id": "Al1aLymjMR_wYiYcNR26CQ", "stars": 5, "date": "2011-01-07", "text": "Soft opening, so still working out the kinks. Food was deelish. \nScallop poppers- crispy and spicy; not at all greasy\nHoney chicken-a little sticky but so good\nTeriyaki chicken-subtler than other places' teriyaki, but much better flavor and chicken was tender\n\"tootzi\" roll- bursting with flavor and rolled perfectly\nNice touches with cucumber water, upscale Asian decor, unique glasses, menus, plates, etc.\nWill definitely be back.", "type": "review", "business_id": "BINYfrtGp3A4w0d5E7kbYw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "m2Z-H8pgoEJwFDzB3wMWxA", "review_id": "JW4SHInrrfdVKB_SpMOMjA", "stars": 5, "date": "2011-07-22", "text": "By far the best Mexican food in Scottsdale! Food and Salsa amazing! Service phenomenal! Great prices!!!!", "type": "review", "business_id": "Vx7-xbazum3dgo3Qj3i4pQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6SP-1gM4JV1tXGEe1Tu45g", "review_id": "wzYex5xd75KhPmun-PxHsg", "stars": 4, "date": "2011-07-24", "text": "great happy hour. always comfortable, nice staff. we'll return often.", "type": "review", "business_id": "E7nk0lC317pGxMX56gvaVQ"} +{"votes": {"funny": 2, "useful": 2, "cool": 1}, "user_id": "mfvezpz6ohS0NQk3DZdvqQ", "review_id": "n5x6wuebwVL7_dQ4n5OCtA", "stars": 5, "date": "2009-02-17", "text": "As a bonafide recovering Art Bitch, I give this university gallery the blue ribbon award for kickassery!\n\nTruly a \"hidden gem\" (i hate that phrase) in Tucson, the collection and the revolving pieces never cease to impress me. I have brought almost every single tourist from the east coast to this gallery, including some photography professors, and they leave with snoooty mouths agape that in this pleasant little desert town resides a high-caliber, well manicured collection of the arts. \n\nI am always upset when I visit and I can't stop by this gallery-and don't miss out out on their catalogs, magazines, books, postcards and prints they have in the atrium as unique gifts/decoration.\n\nSplleeeendid.", "type": "review", "business_id": "YDpzUg_np9KkG0702jACwg"} +{"votes": {"funny": 11, "useful": 12, "cool": 13}, "user_id": "eBwBjylS66qPcHs2_ajLag", "review_id": "YQC9nn2l11vc-1ZZ5Y5frQ", "stars": 4, "date": "2010-06-23", "text": "Scale of 1-10 (multiple visits):\n8 Food\n8 Service\n9 Atmosphere\n8 Value\n\nLove it. The wines are good and they have drink specials ($5 glasses!) and the place looks great, and it's light railable! The panini was good, not special, but the creme brule made me forget all about it. And work. And oil spills. And life. Thank god my body's innate intelligence didn't forget about breathing or bladder control. Those stayed intact.\n\nAnd the bruschetta what what!", "type": "review", "business_id": "3n9mSKySEv3G03YjcU-YOQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "84XhBgCd2yi1OMuKp934zA", "review_id": "DVW0IWm4wzRJ30kcWIivqQ", "stars": 5, "date": "2009-01-16", "text": "This is one excellent Ethiopian restaurant, rivals anything I've sampled in Washington DC or Seattle. If I lived in Phoenix, this would be a Top-5 restaurant for me (along with Lo-Lo's Chicken & Waffles - yum!).\n\nLalibela takes a slightly different approach to their menu. Many of the entrees are offered as small portions ($4.50-$6.00 each). They suggest each diner order 2-3 of these to make a meal. Kitfo and Lamb Tibs dishes are offered as full entrees and like many Ethiopian restaurants, you can order combo plates (meat combo, veggie combo, house combo plate etc.). This made deciding on our meal a little more complicated, but also offered more flexibility for sampling different dishes.\n\nOur favorite dish ordered was the Lamb Tibs (the spicy version with Awaze spice paste). Lamb was soooo tender, and the spices were a delight - rich in flavor but not too hot for those with tame palettes. Good thing it comes as a full order - four of us were competing for bites!! We ordered a half portion of Keye Wott (beef in a spicy brown sauce) that was some of the best I've ever had. Again, rich in flavor but not too spicy. My favorite Ethiopian meat dish is Kitfo - choice beef sort of like steak tartar (servered raw or lightly cooked) but with Ethiopian spices. Lalibela's was pretty good, just not transcendent like the Lamb Tibs or Beef Keye Wott. The vegetable dishes were on a whole excellent - especially the yellow lentils, gomen (collard greens) and spicy (Wott) lentils.\n\nStaff was great - attentive, helpful service. Unlike some Ethiopian restaurants, this one is very user-friendly. Although in some cases the menu accommodates American tastes it doesn't compromise on quality or authenticity. One note on the injera (sponge-like bread used to scoop up the entrees) - it's a mix of wheat flour and teff (a grain indigenous to Ethiopia) and I don't think it's fermented like injera that is made with 100% teff. I'm used to the latter, but you can argue Lalibela's injera doesn't compete with the flavor of the entrees as much.\n\nAll in all, one of the best Ethiopian restaurants I've been to, and I have been to many in the States. Only problem now is whether my favorite Ethiopian restaurants in Seattle will still taste as good! Highly, highly recommended.", "type": "review", "business_id": "-bd26a1QEEpqUZjBmtBUiQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "o2J22OK7xXL-sDPzANxy5g", "review_id": "AKFBad2QYPgsZqCMiqJTSQ", "stars": 4, "date": "2011-04-09", "text": "Sprouts is great, they have a wonderful selection of fruits and veggies and their sausage is made in house and really wonderful on the grill! The grab and go meals are perfect for a quick dinner and the sandwiches and soups are spot on for lunch. Very friendly and helpful staff.", "type": "review", "business_id": "kgm46SAqlVObnRKjcyDMyA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "3Vsd6Rd4CHHFtjo7xIp7Lw", "review_id": "-1eV2qevYYKizDASJy8Aeg", "stars": 4, "date": "2009-11-03", "text": "I usually don't review chain restaurants since I don't want everyone to know that I eat at them...but I have to give a shout to this location of McCormick's! We were in Phoenix for a quick weekend and I had neglected to do any Yelp research before leaving, so when my bf found M&S from the concierge we decided to give it a go. We had been disappointed with our last experience at the one in Dallas so I was mainly just hoping to have my hunger satiated so I could go to bed.\n\nI was very pleasantly surprised. We were hungry so ordered what felt like tons of food (don't judge!). The mussels and bruschetta to start were great! The mussels were small, the way I like them, and the sauce/broth/bread soak they were in was amazing. I had the halibut stuffed with a bunch of stuff as suggested by our server, bf had the dover sole, both were good, but that dover sole was amazing!!!! very light and perfectly cooked. I wish I could cook fish like that.\n\nWe finished with some kind of passionfruit mousse dessert that was SO good. I almost took another one to go.\n\nThe service was great. I would go back to this M&S location anytime I was in town.", "type": "review", "business_id": "MU3i2uEyUBntebU6pEyMbw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "LdJFjb2w0yJOxH1_0JAqrw", "review_id": "iuqN8zEjHt-G5anrYUG0_A", "stars": 5, "date": "2011-06-13", "text": "When I moved away, these were the tacos that I missed! \n\nI stopped back today, and must say - it was exactly how I remembered! The lunch specials are very reasonably priced at $5.99 and come with two items and rice and beans. I always get the hard taco - seasoned shredded beef, lettuce, and cheese in a deep fried corn tortilla - and the cheese enchilada. I could eat the rice and beans alone, both are so well seasoned and they definitely don't skimp on the cheese! The only thing to watch is that the red hot sauce can vary from visit to visit - some days it's super hot, others - not so much.\n\nThe wait staff is exceptionally friendly and always try to help me because my Spanish is so limited. The interior is large but very modest, there aren't a lot of fancy decorations - this is a place to come for the food and service and not th ambiance. \n\nStill, one of my faves!", "type": "review", "business_id": "cgNIBHS2mLdbTRiodAT6EQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "ltGh04bjEBhwItWVVG7UJg", "review_id": "7t866w_6pbrcVi0xk-y-TA", "stars": 4, "date": "2012-05-26", "text": "An unclear menu and chalkboard signage, as well as lack of information from our server, lead to confusion.\n\nLike most have said before, my friend and I were very pleased with the atmosphere at Tryst Caf\u00e9 in terms of its decor and layout. However, information about specials on the menu and two separate chalkboards lead to confusion about what specials were available (given the day of the week and hour of the day.) When we inquired with our server, she didn't know and had to double check what was included, when specials were available and for what price. I'm not sure if she was new to this job or just insufficiently trained.\n\nFortunately, Tryst Caf\u00e9 delivered in other ways. The drinks were sufficiently strong. My friend tells me her two glasses of Montpellier Cabernet Savignon (pictured) were delicious. My Tryst Pepino was fine, though was missing the mint garnish described on their menu.\n\nThe Humus Trio (pictured) was delicious and came with slices of fresh cucumber however, it did not come with the traditional side of pita bread which had to be ordered separately. The Steak Salad (pictured) was amazing and the chunks of meat were oh, so, tender and juicy!\n\nI hope to revisit Tryst Caf\u00e9 sometime soon. My only hope is that they clear up some of the confusion about what specials are available and appropriately train their staff to know what is actually included, when specials are available and for what price.", "type": "review", "business_id": "vvMR0jgDoBA-g1XgZy8sEg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "m5-3onu1zp4l50V-PmZKgg", "review_id": "tdadRAEJVveG3j177Miw_A", "stars": 5, "date": "2012-07-07", "text": "Great place for Sushi, ordered the Musscles ( Caution very large order even with only four) Great wine. Ordered Eel Crunch Roll, Tuna Roll, Soft Shell Crab Roll. All of it was to die for. A little Gem. Pricing is competitive not high or low. Environment is pleasant, service was wonderful and waitress was very helpful with suggestions and information.", "type": "review", "business_id": "Bjt3rB73dvSDe1XEPEWc6w"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "XeoAojoz5johV2MQ5ngNig", "review_id": "9Xq0YgW-H6mbB3dAddSibA", "stars": 5, "date": "2011-03-20", "text": "Been here twice now and tried two different dogs and two sides. Nothing was disappointing. I have tried both the sweet and spicy dog and the hana dog. Both dogs were great and had very distinct high points. The sweet and spicy does something very rare for me and actually gets me to enjoy pineapple mixed with other foods. I this dog had great flavors all over including the dog itself which was perfectly cooked and the right amount of heat. The hana was just a stack of messy amazingness that had a real mexican flair. The bacon is the real standout adding the great bacon flavor and a crunch that gives the textures some depth.\n\nThe sides were good to. The chili is not some canned stuff and is good. The tater tots are just awesome though and nice crispy outside and that soft pillowy inside you crave.\n\nIf you want a gourmet hot dog this place is not going to let you down.", "type": "review", "business_id": "t4aP7ksa716XY6S4EsWFqw"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "rYG_FSHAdLp2BmkKKCt_IA", "review_id": "zzDtNQppArWnTVNZJrQEvw", "stars": 4, "date": "2010-09-10", "text": "I love paletas. I found this place through Yelp and loved what everyone said. I grew up in South Phoenix and I do remember the paleta carts rolling around. Since those aren't around I had to find an alternative. \n\nI do recommend this place however for me $3 / paleta is quite high. They used to be $1. \n\nFYI: It's cash only.", "type": "review", "business_id": "_TekkyyFeX_8MBepPIxuTg"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "NsIoM2PlaL28E-jbrs4Zlw", "review_id": "egj6lfYCfSrkcrIPYw3C-g", "stars": 1, "date": "2009-10-05", "text": "AWFUL. Not sure it classifies as food. Burrito consists of a flour tortilla and meat. No salsa, beans, cheese, sour cream, guacamole. Nada. Plus they won't let you add anything to it. Everything is as is. The cheese enchalada had cheese but it was not gooey and melted. The food was barely luke warm. Service is also mediocre. The salsa was gross. It was super water down. The best part of the meal was my Pepsi.", "type": "review", "business_id": "TMdHhDI7jYQ9206dtvrBgA"} +{"votes": {"funny": 2, "useful": 3, "cool": 3}, "user_id": "S-07w5CJfDmEBTNZ9V-ycw", "review_id": "rIyJ3oWF79QzKOcsgkhRoA", "stars": 5, "date": "2012-07-26", "text": "Best Cakes around!\n\nThis may sound crazy, but I've never actually been in this place. But I've tried so many different things they have. \n\nMy job goes through Karsh's for all the anniversary cakes, catering, and special events. We get cookies, cakes, and other assorted pieces of heaven from Karsh's. Recently, my coworkers wanted to try something different. They got an eclaire, cake balls, and mini rainbow cakes. The rainbow cakes are the best thing to ever go in my mouth. I could eat those for days. They just melt in your mouth plus they're covered with chocolate. What? Yes!\n\nMy friends also got me a Karsh's cake for my birthday a few years ago. I wish I had a picture of it. It was so pretty with a butterfly on it. And it tasted amazing.\n\nThough I've never been a paying customer and I've never walked through their door, I love this place and highly recommend it for any event you may be throwing.", "type": "review", "business_id": "vaqmESluryt5i4Wbkb6KRA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fJGWSgGsvb6leJzOuE2O3Q", "review_id": "vXNjIF49bZ7zFqEYgO5QTw", "stars": 5, "date": "2011-11-21", "text": "This place does not disappoint. I've been here quite a few times with coworkers and it's always a good choice.\n\nCute place - I especially like sitting on their cozy, covered patio. \n\nI hate mushrooms but somehow LOVE their fungi pizza. I think it's the truffle oil that makes it amazing. I've had a few of their other pizzas too, which are quite good as well. All of their salads are delish - you can't go wrong with any of them.\n\nIf there's just one other person with you, you can't go wrong sharing a pizza and a salad.\n\nThis place is WAY better than Pizzeria Bianco.\n\nWill continue to come back here!", "type": "review", "business_id": "pwpl-rxwNRQdgqFz_-qMPg"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "2TX0Gv0k6ZtEfVyImcvnNQ", "review_id": "kRqqxCp704DDaEPCp_NIpg", "stars": 4, "date": "2010-12-19", "text": "We ate here for the first time this morning. The food was better than average, the portions were generous and the service was both fast and friendly. \n\nAfter seeing that their sausage gravy is made from scratch every day, I had no option but to try it. It didn't disappoint. It was creamy and delicious but not overly greasy or heavy like sausage gravy can so easily be. The omlette my husband and I shared was tasty and the veggies were fresh and plentiful. Our daughter's pancakes were fluffy and perfectly cooked and very tasty. \n\nAnytime we do a sleepover at grandma's in north Scottsdale, this is a sure bet for breakfast!", "type": "review", "business_id": "NN2qs5B713vM6BDcMyrg4A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "6_W_Ym-DuBhO3DV9-nsJeg", "review_id": "fItDI2tcihGFwY1HcvuKVg", "stars": 5, "date": "2012-04-16", "text": "I'm not generally a big fan of burgers, but I love this place! Their \"blu burger\" is amazing! Bleu cheese crumbles, carmelized onions and thick, crispy bacon on an awesome onion bun, oh my! I highly recommend adding avocado to it as well. I can't speak for the other sandwiches because I love the blu burger too much to order anything new. Heh.\n\nThe zucchini fries are a thing of beauty AND they allow well-behaved dogs to hang out with you on the patio while you enjoy your meal. They even brought my little guy a disposable water bowl!\n\nI've also had great luck with their waitstaff, everyone is friendly and on task. It's pretty busy on a Friday or Saturday night, but just perfect for a Saturday afternoon lunch.", "type": "review", "business_id": "5_tsOGJQDDl9iKOr8K79Rw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "CM_vuEc6jKqpODm4hZJy8Q", "review_id": "Axonta0gPQLT1EIg-t9MJQ", "stars": 4, "date": "2012-10-18", "text": "As far as Subway's go, this one is better than most than I have been to. I frequent this Subway quite often as it is the closest Subway to my office. The candor from the \"sandwich artists\" is always refreshing. You can tell most of them actually enjoy their jobs. Once I found a piece of plastic in my sandwich. You know when you open a bag of turkey and the edges of the bag are all tough to break open? A sliver of that ended up in my sandwich. The manager was quick to act and ended up making it a non-issue for me. I appreciated how he took charge and took care of it. Just another reason why I go back.", "type": "review", "business_id": "X8dNaEFH7LWDt1ORmkfDTg"} +{"votes": {"funny": 2, "useful": 0, "cool": 0}, "user_id": "6ZXbTu3isjKoD42_iKOhqA", "review_id": "C7zBzY2ktDgJea7Iwqmhyw", "stars": 4, "date": "2011-04-11", "text": "I don't come to AMC very often, even though it is the closest to my house, has great parking, good movies. And there is only one reason....THE HARKINS $1 SODA CUP! Listen, AMC, get something similar and you will have my business every time. I can't justify going into a movie theatre and paying $4 or $5 for a soda. So you know what I did? I snuck it in in my purse. Paid at the kiosk so never really had to talk to a person. I'm going to do this from now on if I go there. I have a new purse, soda cup fits great without spilling. GET A SODA CUP AMC!", "type": "review", "business_id": "BFNxp4o6gJEO5PjD13PFKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "uZbTb-u-GVjTa2gtQfry5g", "review_id": "930PX8SNo5zxtlcJOio4ig", "stars": 4, "date": "2011-11-29", "text": "After browsing at the Bookman's next door, we were feeling hungry and were tempted by the notion of tasty burritos. We ended up getting non-burrito meals, but were fully satisfied with our entrees. The green chile plate was filled with perfectly cooked pork with a spicy tomatillo sauce that went well with the pork. The horchata tasted freshly made and was very refreshing and light. Overall, I think Big Burrito is a good option for those that want a filling meal without breaking your wallet.", "type": "review", "business_id": "W-9YqWhkfeK-K3xGFvFeuw"} +{"votes": {"funny": 2, "useful": 1, "cool": 1}, "user_id": "s7Tm9oYWqRlBm5ex2OQ1nw", "review_id": "pK3RNF0-t9Wq5p7OJ_1huA", "stars": 1, "date": "2011-02-20", "text": "THIS PLACE SUCKS!!!!! It really deserves NO STARS!!!\n\nYou can only like this place if you don't know anything about Vietnamese food. \n\nWhat I tried...\n\nBun Bo Hue: Broth didn't even taste like Bun Bo Hue. Spicy but has no flavor. Where's the beef shank or hog's feet? You can't have Bun Bo Hue without the shank or hog's feet. They use the cheapest cuts of meat. This item was on their Daily Special. \n\nPho Chin Nam: The broth was super sweet. You know what that means....MSG galore!!!! Not even a hint of Anise star in the broth. How can you specialize in Pho if you can't even make the broth taste right?\n\nService stinks. I hate it when the waiter holds the bowl in such a way that his thumb is on the inside of the bowl while serving it. The dude never refill the water, ask how things were, etc.\n\nVegetable platter was not fresh. Bean sprouts were starting to brown. \n\nIf you can't cook something why even bother serving it to customers. I don't know about other entrees they offer but I won't be coming back to find out. \n\nThis has to be one of the worse Vietnamese restaurant in the valley. \n\nCheck out my extensive list of Vietnamese Restaurants for suggestions to better ones.", "type": "review", "business_id": "2W2AwR-5z_jQ0Ihg9A5cPg"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "QsWWVw4b2FBcg038q1w6oA", "review_id": "sMtaHs-QQPZIC-spZSJqbw", "stars": 4, "date": "2009-03-06", "text": "Dined outside. It's a must do when the weather is right.\nFit's nicely into the 'Fashion Square' mentality an aura.\nGreat appetizers and they did a great job on the steak.\nWe'll go back again sometime.", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "59pVYStY0yKpRmODFIfDww", "review_id": "IcwlOBfr3lPLQ8BzhLdmIA", "stars": 5, "date": "2011-07-21", "text": "My favorite sushi restaurant ever! I love their ama ebi nigiri (sweet shrimp) and always craving for more. For this visit I tried their dynamite scallop roll and salmon roll (with asparagus inside) and it was so delicious makes me craving for more. The pork ribs were very delicate and it was melting in your mouth! What makes this restaurant to be my number one spot of Japanese restaurant in the valley was the sushi chef service is superb! They ran out ama ebi and I told the waitress that one of the reason I came there is for that ama ebi. The chef suddenly came back to me one hour later and said he saved one ama ebi for me!!! What a service!!!! I'm so thankful of this wonderful dining experience and will definitely become one of their regular customer!! Love this place so much!!", "type": "review", "business_id": "bgTB6MgdVQssXhkNJ7qIfw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "rvaJcf5OIY2So_pkoqDHLQ", "review_id": "PCjnn__E8AzNa2kXFXxTHQ", "stars": 1, "date": "2012-07-07", "text": "Horrible service.", "type": "review", "business_id": "mhQCxOiqp03qnhGRTtPduw"} +{"votes": {"funny": 0, "useful": 3, "cool": 1}, "user_id": "uNbB1uR4EBhmygUc3IfPAw", "review_id": "35CYe9pOd7LHM3Y65MRcfQ", "stars": 3, "date": "2009-04-21", "text": "Sandwiches are pretty decent and tasty..however..\n\nthey don't include drinks, salad, just a small cookie on the side. We just ordered 2 sanwiches and 2 sodas, a little on the overpriced side, totaled out to $27 just for that. The sandwiches are gigantic or anything. just left feeling a bit hungry and disappointed.", "type": "review", "business_id": "KHgRmDcFxi8neGVUWlZ2mA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "PJjZfTRsUhETBql9Of158Q", "review_id": "TjZX-IYOuJRpyC4mccjuew", "stars": 4, "date": "2012-01-19", "text": "This place is fast becoming a favorite happy hour stop for my fiance and I. Service is friendly, the panini's are delish and the bruschetta is to die for. Anything with their yummy fig jam is amazing. I love the ambiance. Very casual, trendy and lively with great outdoor and indoor seating. I'd say service is on the slow side, but it's understandable b/c the place is always packed. They have pretty good happy hour deals. I will say that the parking situation kind of sucks (valet only unless you want to park down the street). But other then that, I have no complaints and will definitely be back!", "type": "review", "business_id": "SDwYQ6eSu1htn8vHWv128g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1BW2HC851fJKPfJeQxjkTA", "review_id": "VEkL4BbZstWHZSr77ZecBw", "stars": 4, "date": "2010-09-03", "text": "Okay, if you're looking for a genuine Chicago Vienna Beef Red Hot or a NY Sabrett street cart dog; then you might not understand Hot Dog Stop. HDS does sever Sabrett's but this is more of a gourmet hot dog place. \n\nThe portions are very generous to say the least and very tasty. The folks who run the place are from France and have put their own spin on things. So if you're fixed on what a hot dog should be, then go to Luke's, or Al's or even A & W; but if you want 'something completely different, to borrow a phrase, then by all means try HDS. \n\nEnjoy!", "type": "review", "business_id": "FX5mDx1QR31IoCZznjJJ5w"} +{"votes": {"funny": 3, "useful": 3, "cool": 3}, "user_id": "AQum4T1dROG2taFhCWNkDA", "review_id": "RwTwUsV1oPX_wARnRek-eg", "stars": 3, "date": "2008-06-27", "text": "Fancy shop with great kitchen items that I would use for our kitchen. \nIt seems whenever I go in there their products don't work. \nAvoid ordering any of their coffee pots because we had to return them twice in a row. It seems like whenever we walk in there the employees don't seem to be knowledgeable about the products there. \nI give this store three stars for having a variety of kitchen items and an enchanting place to visit.", "type": "review", "business_id": "31bXixwy2GNmRlhpl21reA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "FZXXSGOw4BBWmB7eyAGSnw", "review_id": "ZJxtTVD3WXlgSvCwrVh7lQ", "stars": 2, "date": "2007-11-14", "text": "I agree with Chris L.; I was disappointed with the cafe. Granted, I was looking for a college-type coffeehouse where I could grade papers, and this place just didn't have that sort of lounge-y feel that even certain Starbuck$$ have. There was no background music being played, and even with my ipod/headphones on, I was distracted by nearby conversations. I got much more work done at 3 Roots near campus.", "type": "review", "business_id": "dewq6aevfoNFvJBqM7PG5A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KLekdmo4FdNnP0huUhzZNw", "review_id": "TNjJ7gjtr7gjJ_LQDrCUIw", "stars": 4, "date": "2011-08-02", "text": "I have been trying to reduce my caloric intake and found out that at Red Robin you can order a \"petite\" burger. It is smaller but has the same toppings you order on the regular. So for those of you that don't want to have a burger that is 1000 calories (yes they are and more with the endless fries) , try the petite.", "type": "review", "business_id": "AgJbkqR-wre409if4fTbWQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "yhGfcKunPjcy-v-1ppr6oQ", "review_id": "QfdoE-XqEeCsttJH8g0ugQ", "stars": 1, "date": "2011-04-25", "text": "I love Saddle Ranch for its casual night time festivities (including watching people ride the mechanical bull hehehe), but I cannot ignore the fact that the food was disgusting!\n\nWhen I think of my meal this past Friday night, I think of two words: dry and cold. The spinach artichoke dip was just okay - a bit on the dry side and not very cheesy. The onion rings were just okay was well as the batter reminded me of the chicken nuggets at McDonald's, maybe even worse. The BBQ burger (turkey patty) was dry and tasteless as was the bacon. Really? It must take true talent to cook bacon tasteless. There are a few things that the menu has going for itself - a few very unique and fun desserts and drinks that I have yet to see elsewhere. I am fond of the giant pile of cotton candy and, though I'm not much of a beer drinker, the beer tower looks pretty badass.\n\nFor me, I came and will continue to come for the fun atmosphere, but I will definitely be staying away from the grub. Adios, cowboy.", "type": "review", "business_id": "C_eWAEOvkHZ_IZYGwjtpmg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "AeucYo8J-rZjcq09Wuqsjw", "review_id": "9yy_AnOQwfmKQbf3Nv08mQ", "stars": 2, "date": "2012-10-11", "text": "So I have been to the location in Tucson and now experienced this one and I have to say that I did not have a WOW or YUMMM drooling moment at either. Don't get me wrong it's not horrible it just has no wow factor at all to me and I will pass next time.\n\nThere is just better Mexican cuisine out there,,,\n\n\nService was promt though!", "type": "review", "business_id": "d6CUe9LjkFFqYtt7WuW5Lg"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "DU0F18NBXFZ-hsPOmGhzQA", "review_id": "sRArf54Vmwr5yZjMUm3HCQ", "stars": 3, "date": "2010-10-23", "text": "It is a salad bar.", "type": "review", "business_id": "NDHhzgMrTzr_38md_R5WKw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "zLToLBt6Yc1NjDvSphbP7Q", "review_id": "ANoUbOzGBp_OjAD9k-NBvA", "stars": 5, "date": "2010-08-29", "text": "Love it, love it, love it! I have been eating at various Pita Jungles around the Valley since I moved to AZ over 6 years ago and I have yet to have anything that I didn't love. My favorites include the Black Bean Burger, Lentil Fetoosh Salad, all three hummus types, dolmas, and gazpacho, but everything is delicious, so you really can't go wrong! The Tempe location also has breakfast, which is amazing! \n\nEach location is fairly small, so luch and dinner may require a short wait, but its worth it. The prices are fair and the portions are huge! Don't be afraid to split a dish with a loved one.", "type": "review", "business_id": "wl51t6lT7leiX64SlkOx6g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Bv16boLVSNb_uGtZOQ-jNQ", "review_id": "7x5vVGa50eADM2f7cYN2Sw", "stars": 3, "date": "2012-05-27", "text": "Check-in was fast and quick and price was right for what it was. A big upgrade over a discount property and super close to the airport. It does resemble a different kind of hotel in that everything was outside, but the room was spacious and generally quiet. The morning breakfast was solid and the only real minus was the shuttle's delay; some of the hotels came twice in the time it took this one to show up once. But save for that...a more than adaquate experience for an overnight stay.", "type": "review", "business_id": "qIhBNeE64skjowRs6TTwJA"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "iBO2m9xXivsIbvFnZHsNvg", "review_id": "mY9xE7iJ1wnnZEH7FgqGIw", "stars": 2, "date": "2009-09-22", "text": "What can I say... I am a bargain shopper! I'm not cheap, but I get more satisfaction out of getting a bargain than I do spending a ton of money for a name brand item at Nordstrom or Sax Fifth. That being said, sure you can find a pair of shoes you'll like here, but the selection is simply OK, and its usually full retail price. Most of the time they have a two-for-one deal or get the second pair half price. Still, its never really any kind of sweet deal.", "type": "review", "business_id": "_cG0BFYyHXcwheKXR5RRBA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "1gspFi59uDO00PSM5LMlhQ", "review_id": "fPxUlWm095ETJ84dRYn1-A", "stars": 5, "date": "2011-04-26", "text": "I know Kerrie through my networking and we benefit from her presence.\n\nI have not needed her service's and most of us don't plan on needing an attorney. But I am always reminded by a tagline that Kerrie often mentions. \n\n\"People in crisis need company, Droban & Company\". \n\nHow very true. When that time comes, and in these troubled days, it WILL. You will need good company. I would look for Kerrie to help and so should you.", "type": "review", "business_id": "So1Z7tydx4QqTLSp91Mjug"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "dUAsWWDh5AzwGOGoh3XEeA", "review_id": "_oN_enidDDD8MbR3naOsRg", "stars": 4, "date": "2010-06-23", "text": "Love this place! I wasn't sure about it the first time, seeing that is in a strip mall, but like the saying goes don't judge a book by it's cover. \nI order the CHICKEN W/ GREEN every time and have not been disappointed. EGG ROLLS are wrapped in thin egg roll paper, spicy, & delicious. MANGO CHICKEN & CLAY POT DISHES are also excellent.\nIndependent & yummy.", "type": "review", "business_id": "1vYaGPKQzMebBJXFCGTH2g"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Z4xZrZi_AMtOR6I24dPrHQ", "review_id": "rWi4x7gXd3HabS1eJwB0hQ", "stars": 5, "date": "2012-02-05", "text": "We had brunch at El Chorro today and it was wonderful. The patio was comfortable with the umbrellas and heaters. The service was outstanding. The food was delicious. I had the creme brulee french toast - it was carb/sugar heaven. Everyone else enjoyed their food. The eggs benedict came out perfect. The BLT looked awesome. The fries were delicious. We will definitely be back.", "type": "review", "business_id": "cdwHgELA2puX2DNfwSt5EA"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "JwqH67LU6ARuKiLjaOhPNg", "review_id": "0CzS1NdUoypjA0lXuQ4WDQ", "stars": 4, "date": "2009-03-15", "text": "Thai food is one of my favorite types of cuisines. I have been going to Thai Rama for over 5 years now, and they are always consistent! this place is a little, hole in the wall type. (those are usually the best)\nWhenever I am having a thai fix I usually order the same items. Sometimes different... But not always. \nOK..\n1. Thai tea... the best in the valley! \n2. Pad thai with chicken... level 5 - 5 is usually med spice but to some ppl its very spicy... you can always lower the number to a 1 or 2 and it'll still be just as good.\n3. Yellow pork or chicken coconut curry with potatoes, onions, carrots, & pineapple.... level 5 again.... my fave\n4. There's one more beef dish that is absolutely delish! But, I forgot the name. Basically all it is, is thick rice noodles and thinly sliced beef stir fried.. Kind of like a chow fun but better!\n\nOh and I would also like to add that they have a very friendly waitstaff and pretty good service.\n\nIf you like Thai, check this place out!!!", "type": "review", "business_id": "PXmR1MgOAWB066XH20HjxQ"} +{"votes": {"funny": 3, "useful": 1, "cool": 1}, "user_id": "PShy2RYNadDUhJf4ErOJ7w", "review_id": "lgrfMIvhkCzclg5KEharjw", "stars": 5, "date": "2009-01-20", "text": "I have a fond place in my heart for this establishment\n\nI've been covering my all white meat rice bowls in their sticky spicy teriyaki sauce for 10+ years\n\nI've lived all over the world\n\nI always crave three things when I'm not living in Phoenix (or the USA)\n1. Skim Milk\n2. Mexican food\n3. Tokyo Express\n\nNow pay attention\n\nIf you like spicy food and teriyaki sauce, here's what you should order\n\nAn all white spicy chicken teriyaki bowl\n5 extra sides of spicy sauce\nA small salad\n2 extra sides of salad dressing\n\nOk, so I REALLY like sauce. Really.\n\nThis place makes me want to cry I love it so much.", "type": "review", "business_id": "W8WyVVxinyRjzP8gJa7ILg"} +{"votes": {"funny": 6, "useful": 12, "cool": 8}, "user_id": "l81ILmOhky5bG7o4r3rkhQ", "review_id": "WjkBCWy7pu4U2-3PbvM0bg", "stars": 5, "date": "2009-04-22", "text": "Cork is an enigma.\n\nWhat makes it enigmatic is how damn good it is... Too good for Chandler and maybe too good for the valley.\n\nThe portions are just right, and anybody that tells you otherwise is a fat ass or a glutton (I'm 6'3, 200lbs. and I was satisfied). If you want large portions though, go to their lunch/brunches. I've been there twice and had The Lamb Chop, which was amazing on all levels, and I've had some serious lamb in rural Bosnia, which has been labeled the best in their country... sure enough cork's stood up blow for blow. The other entr\u00e9e I experienced was the buttermilk fried chicken. I was so amazed by the lamb the first time, that I had to try something more \"simple\" in order to qualify their food in regards to regular places. Let's just say the chicken was not regular, it was outstanding. The appetizers are crazy good... can anyone say king crab legs?\n\nThe wine selection is top notch. the booze selection is killin, and they even make this amazing Italian lemon stuff that's like 90% alcohol. make sure you have a designated driver, because this place will inspire winos and boozers to indulge to their fullest.\n\nGo to Cork, because it's that damn good!", "type": "review", "business_id": "iV7D7fHKb-bF9fCL_bEMtA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "haYHbLXLX2cmHq1wQAEtfg", "review_id": "9IhdGx6Z4OUYXW9oPrPuXQ", "stars": 5, "date": "2011-08-19", "text": "Went to Yogurt Kingdom for the first time tonight. It was perfect. Lots of flavors to choose from. My favorite is the Tart Vanilla. But I got a large cup and tasted at least 8 different flavors and I enjoyed each and everyone. I wanted to go back and get some more of the Tart Vanilla but my husband gave me one of those looks when I suggested it. You can either eat inside or outside. The place is decorated so cute. There was a very cute and well mannered girl to greet us and told us how it all worked just in case we had not been there before. They offered to give us any samples that we might like to try. There was a gentleman there who turned out to be the owner. He was very kind, friendly person and glad that we stopped in. The bathroom was very clean and the entire place was tidy and well maintained. We will be back very soon. I would recommend this place to others that like yogurt. You won't be disappointed.", "type": "review", "business_id": "OY76JYsWn1rhb6Te2BE5Rw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "DwU7KVfebA70AlVtX0iOWw", "review_id": "76_25c6pOWVCGGN6IaiZUQ", "stars": 4, "date": "2010-11-18", "text": "Went there with the Wife. Lots of stuff for the ladies. I would lay off making any real purchase here on my own, I would of course consult the Mrs. In regards to what she might like. Way to tough to try and pick something out in here (Louis Vuitton, Gucci, etc.) that is the stuff for the ladies to decide on. Nice place, very friendly staff, warm, and inviting one to buy.", "type": "review", "business_id": "DgOAOO10ibNDSX7S_7L1Ag"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "9g_ARKx0eJmNH8oO1TR9rQ", "review_id": "2hvg6T-sCh7upAe17Jxs3w", "stars": 5, "date": "2012-02-27", "text": "I find it hilarious that someone would reference this place as being terrible, compare it to (overpriced and bland) Humble Pie, and in the same breath say it was the best chili relleno you ever tasted.\n\n I can't vouch for the chicken tacos but most street tacos are nowhere near packed with meat. By definition they are usually very tiny with onions,some guacamole, a little cabbage, and some small cuts of meat. I can say the tilapia tacos are tops(large filet on each) on the list of my girlfriend's quest for good fish tacos. I can say the pork nachos are the best I have had as the pork reminds me of Los Dos Molinos in a small way. The empanadas are excellent as well.\n\nIf you go for happy hour you can get two empanadas for 6 bucks. You can also get 2 large fish tacos for 6 bucks. Would you like some awesome tortilla soup? 4 bucks.\nIf you get the dinner version of the emapanadas with a large portion of some of the best rice and a side of black beans I think it sets you back about 11 bucks. I have also had the chili relleno and it is the best I have tasted as well leaving me to wonder with the single review you have for anything, why the venom?\n\nI learned long ago to ask for what is recommended for before you order and if someone recommends a place try what they are harping about first. When I asked they said the chili relleno, pork, empanadas, and red sangrias. Guess how my dining experience went? Try ordering tacos from Los Dos Molinos and you will leave pissed. Order the green chili pork and you will drive 100 miles for it.\n\nI do hope you give it another chance I have honestly never had anything sub par here in my 7 or so visits and they seriously could charge way more for quality than they do. I agree that Main Ingredient is great also, that's why I took the time to write about it. \n\nBut to reiterate:\n\n11-13 dollar for most dinner items besides new york strip(on the list to try), is not pricey\n\nhappy hour has most items for 4-6$\n\nstreet tacos are not bursting with meat\n\nask what is the best thing on the menu when you order some place then you can write it off all you want.\n\nHumble Pie was more pricey and not worth it, All it does is take up parking from a much better place next door. For a place with the reference to pizza in it's name you would think it would be better, it tasted like peter piper.\n\nI would love to know what a good chicken taco is in your opinion, I cant think of any besides maybe the California tacos at the now closed Chuy's, but the ones my sister ordered from here were full of chicken and topped with a nice chipotle/ranch like sauce which is similar.", "type": "review", "business_id": "hfl62LX14YqNpG0g0Tj6_Q"} +{"votes": {"funny": 4, "useful": 1, "cool": 1}, "user_id": "4E_nPWw89FLFHdNsEgMH-g", "review_id": "UMjqZj-SJ25VnLyB3EV4ug", "stars": 3, "date": "2011-10-31", "text": "A coyote ugly knock off but a cool place. The ladies were friendly and there was one who could dance her ass off. Dayum!! Seriously though, I was the token black chic and had a good time. Except for the one lady that seem to attach herself to me. Weird to say the least. Overall a cool place.\n\nBe warned, do not attempt to take any pictures in this place. They will hunt you down and stop you. Especially if the ladies are \"performing\" on the bar. A big no-no!!!", "type": "review", "business_id": "T1EfT96sCrn_UUWQMhzB5w"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "FYdLG8vxUfhqd6v-QQHRkw", "review_id": "GW5D1Dv1Uc8X0_-yf0pzPA", "stars": 5, "date": "2011-08-20", "text": "LOVE Five Guys!", "type": "review", "business_id": "VsrvWdZL2993olnW3z8R3A"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "xXxoYIsbfXFK8BKndCcnZg", "review_id": "P2Ff78O44LEFLImqHhdAGg", "stars": 4, "date": "2012-04-13", "text": "No more dinner hours! :(", "type": "review", "business_id": "AOLx-xr0JsFhle4K6xRHfQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V_jAm6IC-nthgZiNn5OkIw", "review_id": "eqfiKLq1hy1cBZ5WOK0BLA", "stars": 4, "date": "2011-04-29", "text": "This place is always one of the first places my husband and I go to, once we are in a city that has one. Having lived in Phoenix for around 10 years, this has always been one of my favorites. Recently they have added new rolls and sushi to their menu, and I must say, Great job!", "type": "review", "business_id": "nBfusVbqwul0BU0Rcrlelw"} +{"votes": {"funny": 1, "useful": 3, "cool": 3}, "user_id": "J72XoQspNBmPsX2iKl2YvA", "review_id": "wVNxD3WQ_IdKifz3M_fG8Q", "stars": 4, "date": "2008-04-03", "text": "I discovered this hidden gem while shopping at TJ's and returned for Happy Hour between 4 and 6:30 from T-F. The patio is in the afternoon shade and far enough off Scottsdale Road to avoid street noise. The seven Tapas (appetizers) attracted my interest and I ended up selecting 1) ebi prawn with grilled fennel, 2) tartine of bouillabaisse and 3) Medjul dates with merguez sausage, sugar cured bacon for the Happy Hour price of 3 for $10 vs the normal 3 for $15. The single prawn was large and equal in quality to the fresh prawns I had just tasted in New Zealand plus the fennel added more flavor. The tartine of bouillabaisse was mostly small shrimp but again very tasty and tempting to order a bowl the next time around. The three Medjul dates with sausage/bacon was an unusual combination to my culinary experience and superb in flavor. The select wines were about half the normal price and a definite value at $5 per glass. In talking with the waiter I noticed there is live jazz on Fridays between 5 and 8. I will definitely have to return on a Friday to try the other tappas and listen to the Swedish singer who sings some songs in German... see tappas photo...\n\nUpdate 4-25-08 - Happy Hour season ended this week... tappas special no longer available but the thin crust pepperoni makes a good starter. Entrees are in the $$$ range...", "type": "review", "business_id": "SIzUsf5x2RSkPwJS--A4Rw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "fi5y6-daDzTIQ7wOKaR7xg", "review_id": "OvsDIpdK5T4G81NUzWAkTA", "stars": 5, "date": "2011-06-13", "text": "This is a great Mexican food restaurant. I eat here for lunch once a week and have never had a bad meal. The \"Asada y Enchilada\" is my favorite dish. If you are an avocado lover like me, this is the place to go. I always order extra avocado because they have the best and ripest avocados I have had anywhere.", "type": "review", "business_id": "EGiGWZp_zSqdeftiFQ7MbA"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "sUTQfzzxxc2c3g6cFH19pQ", "review_id": "MCHvLpzHO6ByEcZ74lCVBg", "stars": 2, "date": "2012-05-19", "text": "Are there food that is NOT-true ?\nOK... I got it, food has to be true to the original taste ... which mean it doesn't always taste good, I supposed .... \nHad the Shrimp spring rolls .... Turkey Bolognese ... could be true to the ingredient but not true to the dish of how it should taste.... \n\nFit very much in the north scottsdale vibe .... 'look at me, I only eat healthy, organic, true and whole food' ... which actually could be a good thing ;)", "type": "review", "business_id": "Zh_y9AmSfWZpR2JB9wye-A"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "JEQ6el2-tLtKJU6k_SpE-w", "review_id": "V2N2TCqnaqMYfg7zXGG-Rg", "stars": 1, "date": "2012-03-14", "text": "\"Hipster,Trendy\" ????-I think NOT !!!! Very disappointing......weird crowd ( older men on the prowl? ) , and unfriendly bartenders w/ lots of attitude. I've given this a few tries thinking I just hit it on a bad night , but won't be going back. So many other great places in Scottsdale to visit !", "type": "review", "business_id": "QCxXYA13PtkD3wec47_r8Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Sr-wB9G8KflQjbAS8Q3HQg", "review_id": "q4qgrm3h6JHh27MrIKPjWQ", "stars": 2, "date": "2012-10-18", "text": "Stopped here for lunch with my BFF today.\n\nNowhere to park, forced to valet, meh...\n\nLove the atmosphere here: classy decor, beautiful patio. Everything on the menu looked delicious. I had a hard time choosing between many foods that I love: crab cakes, goat cheese, crepes... I wanted something lighter so I ordered the oriental chicken salad. In the meantime, our drinks were brought to the table. BFF pulled the spoon out of her iced tea to find that there was some leftover peanut butter still on it. The question is: who left it there? Don't know. Gross. This was pointed out to a server (not ours because she had not returned to our table). Our server brought out a new iced tea. She was polite, but not necessarily apologetic. \n\nWhen our meal was delivered to the table, BFF pointed out that there were tomatoes on her sandwich (she asked for no tomatoes). The server said that the other server probably grabbed the wrong plate. She came back from the kitchen twice to tell us that the new sandwich would be right out. So, I sat with my salad and waited to eat until BFF got her meal (It took a good 5-10 minutes for her new sandwich to come out). \n\nBFF raved about the dressing on her side salad. My salad was fine, but nothing to rave about (especially not for $13). The ingredients were fresh but the \"shredded chicken\" that was described on the menu appeared to be sliced chicken breast. To be honest, I prefer shredded chicken which is why I had decided on that particular salad. DISAPPOINTING.\n\nThe server arrived at the table to ask if we wanted to order dessert. We replied, \"no, thank you\". And she said something like, \"oh, come on, are you sure?\". Again, we declined but I really think she should have offered us free dessert after our bummer lunch.\n\nThe topper? 1 valet guy and 6 people in line to pick up their cars=a 10 minute wait just to leave the place. \n\nI would hesitate to come back, but that menu is just so damn tempting.", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "eEo1W07PkjR0jLRkMF5m1g", "review_id": "6alV8DjOE0vWNMJvuFG70w", "stars": 3, "date": "2010-06-26", "text": "I prefer this location to others in the valley. Except for afternoon rush hour. Dont go there between 3 and 6. Unless youre a senior citizen, then its ok. Youll fit right in.\n\nI went for dinner and cant complain. its your basic buffet, it seems like it has a larger selection than Ryans or JBs and the food quality is way better than both of those. The brisket and beef tips were great, the only problem i had with the place was the wal mart environment (crying kids, way crowded, people acting like THAT steak was the last one ever made, etc) and i did make the mistake of going during grandma social hour, but aside from that, ill go back when Im craving 10 different things at once, which happens often :)\n\nDinner buffet for 2 runs a little under 30 bucks with drinks.", "type": "review", "business_id": "NKMyRG-hK6_HNMlckY7Hxw"} +{"votes": {"funny": 16, "useful": 15, "cool": 14}, "user_id": "P2kVk4cIWyK4e4h14RhK-Q", "review_id": "b0NnnjzhDmI7feVNzniZ3w", "stars": 5, "date": "2011-01-26", "text": "\"So Jimmy, tell the class what you saw at Sweeties!\"\n\n\"OK, well, I saw lots of candy. Old-timey candy and cool candy and neat candy. Lots of it. Real lots.\"\n\n\"And I saw people walking around with baskets and talking about candy. And talking about candy when they were little. And talking about what candy they should get for their kids.\"\n\n\"Oh, and I saw Turkish Taffy, Maple Bun Bars, Fruit Stripe Gum, Moon Pies, Cherry Mash, Mary Janes, Valomilk Candy Bars,Sen Sen Packs, Goo Goo Clusters, Squirrel Nut Zippers, Flipstick Lipstick, Licorice Pipes, Zero Bars, Twin Bings, Look Bars, Abba-Zabba Bars and U-No Bars. And that was only a little of it. And lots of other stuff.\"\n\n\"Teach?\"\n\n\"Yes Jimmy?\"\n\n\"The coolest teacher ever would take her class to Sweeties.\"\n\n\"Would they?\"\n\n\"Yes.\"", "type": "review", "business_id": "7tPe20uDErh-iSkfNEWzVQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "TnTkd3MKoIOKqrsPDzhiog", "review_id": "oTm0bBYcbgoMPJloZUpUwQ", "stars": 5, "date": "2010-03-13", "text": "Standard Mexican fare - but quite delicious. Pitcher of frozen margaritas was yummy, too. Fast and friendly service.", "type": "review", "business_id": "62F17L8z4Q4S7U_TayuDBA"} +{"votes": {"funny": 1, "useful": 0, "cool": 1}, "user_id": "LX3cTVaS8f2UF0Uuafsfug", "review_id": "c4hS0F6S-Z42yOTbm3rptQ", "stars": 3, "date": "2012-02-01", "text": "Taco Bell/Pizza Hut combo on Dobson and Southern. Typical taco bell food and service. Lunch is very busy at this location because it is within walking distance of MCC, Pima Medical Institute, Banner Desert Hospital and a gazillion apartment complexes. \nParking is easy, but this shopping center is very difficult to get in or out of during rush hour.", "type": "review", "business_id": "4FBHwaMtMQ_x8RQoI2T-jw"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "EDN_wou8EEkuaj5Pd83cQA", "review_id": "-2oWwvRjNEHNDa4TWVlbAA", "stars": 5, "date": "2010-09-01", "text": "My profile says....\n\nMy Last Meal On Earth: Chicken and Waffles\n\nLo Lo's is the reason why. Everytime I visit Arizona, I make sure I hit this spot up. I usually order the 'Lo Lo's' meal which comes with 3 pieces of fried chicken, with 3 waffles and a scoop of butter with syrup. YUM! This meal would not be complete without ordering their super delicious Sweet Tea which is served in a glass jar. \n\nThere are two locations, one in lower Phoenix, and the other in Scottsdale. The one in lower Phoenix is the original location. However, it's much smaller so wait times could vary. The Scottsdale location is much bigger, so dealing with long wait times should not be as big of a problem.\n\nWinner Winner Chicken Dinner, Lunch and Breakfast please.", "type": "review", "business_id": "uEJQSIjWui-TDWXaGlcqyQ"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "iJUVamUkqL6VfEMfyQoujw", "review_id": "VmQvN5b1cCJ3iSB8vteygg", "stars": 4, "date": "2012-09-08", "text": "Great breakfast place and much better than Panera. Tried the lemon pancake....mmmm very good. Also had the portabella sandwich....too much on tomato but still good. After eating my gf let out a big burp in front of everyone.....well done. \nThey have some breads that you can buy here as well.", "type": "review", "business_id": "06kfoeRs9Acj82Yl3i9p_w"} +{"votes": {"funny": 3, "useful": 4, "cool": 3}, "user_id": "lC4X2crUuxT9Ac9BlOX4Uw", "review_id": "0HFGMJP6omYRFLiFt4pW3Q", "stars": 3, "date": "2007-03-27", "text": "I can understand why everyone loves this place-- who wouldn't, right? With so many choices of cool, creamy gelato? Well, unless I am just very unlucky and visited on a bad day, this Gelato Spot has gone steeply downhill. My husband ordered a strawberry-kiwi flavored and I chocolate peanut butter. We both agreed: the gelato tasted grainy, with noticable ice crystals. And worse, the flavorings tasted like they came from a bottle, not fresh. IMO, this has become more of a place to see-and-be-seen -- not savor good gelato!", "type": "review", "business_id": "seu8O6yPQ5Yz8kQv-KFnKQ"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "HY9qpAamqLXFoa7xMwNntg", "review_id": "h0ggxmYzSkmlThpG85Frmw", "stars": 4, "date": "2009-09-05", "text": "*cut to scene* Friday night, lounging around discussing the lameness of the evening, ready to indulge in a new adventure. six pack of Newcastle sits untouched in fridge and bellys aching for fulfillment. yelp.com search reveals a local japanese eatery nearby. \n\nenter, Hana.\n\nfirst off, pre-game excitement for this BYOB, local, fresh sushi spot. Newcastle in hand, my friend and I strutted in here at around 8pm on a mildly warm Friday night. the place is jammed, and a couple parties stand around waiting for tables. great, a long wait. nope, two seats open at the bar. sat down, and our beer was immediately taken and put in a fridge to ensure it wouldn't lose any of it's remarkably smooth quality. first beer is poured, and the excitement ensues. friendly and welcoming server devluges us in the specials, and unfortunately they were out of most of their fish as they have been for three weeks. toro and salmon were our options, so we went with a special for the night, the spider roll, and the vegas roll. also, edamame to start.\n\nthe food was superb. the edamame came spicy with a side of chili flakes and siracha for our never ending quest to burn the shit out of our mouths. a second round of newcastle was brought upon when our first was finished, and the sushi came shortly thereafter, looking like little pieces of art. both sets of rolls were enormous and came about 6 to a plate. the vegas roll was packed with cream cheese, avocado, and salmon. the special roll, the spider roll, was full of crispy soft shell crab and just enough spicy-ness for a much needed kick in the mouth. one dip in my wasabi/soy sauce concoction was more than enough.\n\nour third and final beer was poured by an overly-anxious and over-stimulated, presumably newbie, bus boy. I had about 4 inches of head on my beer and my friend got hers spilled and nearly twice as much head. he excellent waitress we had made up for this guys slips during the meal. the staff wished us a nice farewell on our way out, and I felt as though I had just left a very close friend's house. \n\nI will definitely be back with more six packs and good friends to share this little diamond in the rough with.", "type": "review", "business_id": "h6jfMpTZpNduLG0wE2tbaw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "cOfNTptaK6p5oUq5_ROokg", "review_id": "WLuZQj97BuzNs1bTkPThtw", "stars": 4, "date": "2010-04-13", "text": "The drinks here are great, and the baked goods are even better. There is a nice ambience about the place, lots of nice furniture. I love how the baristas make the lattes and cappucino's beautiful. The owner, Jeff, is also a great guy who's around quite a bit. The only criticism that I have of it is that the place is small and if you're coming out on the weekends, you need to get there before 8:30 AM otherwise there will be no place to sit.", "type": "review", "business_id": "aRkYtXfmEKYG-eTDf_qUsw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "8DBCh1ykGdM71X25KNXiZg", "review_id": "2LvAos4wAPJynDsdl8dRUg", "stars": 3, "date": "2011-08-31", "text": "In a hurry in the Phoenix airport and saw Blue Burrito Grille. Ordered the Big Blue Burrito with pork. Unlike a previous reviewer, I got a LARGE burrito with plenty of fillings including some very tasty pork. The salsa was also very good. Their website says that the burritos come with chips and there was a huge bin of them on the counter but alas my burrito came sans chips... which I didn't notice until after I was on the airplane. A good place for a quick Mexican lunch but make sure you get the chips.", "type": "review", "business_id": "oWb5JjxoPaFSmpGwJ3-Ntg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2lvfBteL5ny4CBjNIk9Mwg", "review_id": "F9KzEFjAtbWr3h8toNtDgw", "stars": 5, "date": "2009-07-31", "text": "Treats: We tried the cookies (chocolate chip and chocolate truffle) and would have to give them 5stars. Delicious! \nBreakfast: Seems like they changed the recipe for the turkey maple sausage so it now has an odd herb flavor and less maple flavor, but tried the flattened meatball and liked it so might switch to that option. \n**If you go, be sure to check out the bathrooms. Each one was decorated uniquely by a staff member, and the sinks are shared by both genders. You also get to see how very clean kitchen the kitchen is as you walk to the bathrooms, so that is a great bonus. Overall, a great non-chain place for unique and delicious food.", "type": "review", "business_id": "L9UYbtAUOcfTgZFimehlXw"} +{"votes": {"funny": 1, "useful": 0, "cool": 0}, "user_id": "iPnpD62l5LUL7WXaI3SJFA", "review_id": "rR322HOBSV2JSY6omtNoPw", "stars": 5, "date": "2012-07-20", "text": "I first joined 24 hr fitness about a year ago, and I have had nothing but good experiences with the staff since the first day that I came in. The people behind the front desk have always been very kind and attentive to my needs. If I ever have a question or concern, it is always promptly answered or dealt with. Some of them have even taken the time to learn my name and greet me as soon as I walk in the door! It is very impressive and makes for a very pleasant experience. :)\n\n\nOn another note, I have been training with Trace for about 6 months now. My goal was to lose a little bit of weight and tone up my body, and I could not be happier with the results! In 6 months I have lost 12 lbs. and I look and feel amazing! He is incredibly knowledgeable about training and nutrition, giving his clients hard workouts as well as meal plans. Trace is the total package!\n\n**TIP: Try Trace's boot camp on Wednesday evenings at 7:30. They will kick your butt!!", "type": "review", "business_id": "ttpZx2t4fMAApdU9MFG91w"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "VPXgY9lGJF3XC4ZpusxNuA", "review_id": "UoxTfwbLylXWpwrn8tYEeQ", "stars": 3, "date": "2012-10-29", "text": "I thought I had reviewed this location already? Weird. The one closer to the mall is a total hassle since it is crowded with no parking so it is much better to go here instead (even if you are actually shopping at the mall). You all know about the food and you either love it or you hate it but I just like this location since there is usually not much of a line, at least in the evenings.", "type": "review", "business_id": "qNqvJIH4_KENAajUfRZKoA"} +{"votes": {"funny": 1, "useful": 2, "cool": 0}, "user_id": "rLtl8ZkDX5vH5nAx9C3q5Q", "review_id": "TrFMPwWeaCWu8yDVWVkYwA", "stars": 3, "date": "2010-06-07", "text": "I have never been here before so I didn't know what to expect. Every time I heard the name \"Duck & Decanter\" I would picture a nice sit-down joint with waiters and pictures of hunting stuff on hunter green walls. This is certainly not the case I realized upon entering. It is just a sandwich place that also sells a bunch of random bric-a-brac. It is all basically picnic stuff I think. I dunno...it was real difficult to get a feel for the place. It was all pretty random to me. But anyway, about the food....\n\nI ordered \"The Duckling\" sandwich was is one of their \"signature sandwiches\". It seemed like a good selection because the name of the sandwich and the sandwich itself had duck in it and so does the name of the restaurant. However, the sandwich was just ok. Nothing special. Not worth 9 bucks. just a few slices of meat in between 2 pieces of bread.\n\nAll the sandwiches on the menu did however look interesting. They are definitely not your typical \"sandwich place\" type sandwiches. Well some of them are but they all have that special Duck & Decanter twist. The have some deli type sandwich selections as well but I would prefer to just go to a deli for those.\n\nMy wife ordered the chicken salad and it was very very good. I would order it if I ever visit the place again. She ordered the Sonoran with spicy oil & vinegar. It was very tasty and no mayo or any of the bad stuff.\n\nThe service was very friendly but I took a long while to get our sandwiches. There must have been a large order ahead of us or something because there weren't many people in the place. I couldn't imagine going here on a weekday during the lunch rush because the line would likely be out the door and would take forever to get your food. Luckily for me I went on a hot Sunday afternoon.", "type": "review", "business_id": "HIiVx2mseVWKtx8TKfWC_A"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "RKxsZo6XkRU-0y1JgqqsBA", "review_id": "qu7tpZFxaPSxiuIgFiiYlQ", "stars": 5, "date": "2011-03-16", "text": "Leah, the trainer, at Dog House Training Academy is great. She's friendly, knowledgable, and makes herself available via e-mail or phone should you have any questions. Her knowledge on dogs is extensive, and even though you're just paying for the class, she'll gladly offer up advice on any issues you may be having with your dog. The classes seemed simple enough to me, but there was a client in my class that just wasn't picking it up at all and blatantly disregarding her techniques. I was impressed with how Leah handled the situation and the customer. She's very thorough, and always explains why she does things the way she does, and why it works. So there are no questions, and it's always made perfect sense to me. With the quality of service, and the knowledge that you get to tap into while you're training with Leah, you just can't find a better deal out there. Her rates are competitive, and she offers referral discounts too.", "type": "review", "business_id": "qhIlkXgcC4j34lNTIqu9WA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "mtoKqaQjGPWEc5YZbrYV9w", "review_id": "gP17ykqduf3AlewSaRb61w", "stars": 5, "date": "2009-09-26", "text": "This place is super cute lunch joint. I had the sloppy joe special and it reminded me of a home cooked meal back in the day. I ended my meal with a classic vanilla milkshake which was superb. Oh yeah! if you're in a hurry for a quick good sit down lunch, this place is it. our food came out SO fast. I will be returning shortly.\n\nYou also MUST check out the vintage clothing/ furniture in the room next door before you leave !", "type": "review", "business_id": "R6aazv8FB-6BeanY3ag8kw"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "uBAMd01ZtGXaHrRD6THNzg", "review_id": "QI9rfeWrZnvK5ojz8cEoRg", "stars": 5, "date": "2008-07-22", "text": "The staff is great, the food is great, even the cappuccino is great (had my first one today).\n\ni work close by and I have a choice where to eat and it's very often Acacia for breakfast and lunch.\n\nA few of my favs are:\n\n- Chicken Salad Sandwich\n- Southwest Ranch Salad\n- Omelets\n\nEnjoy! (maybe I'll run into you there)", "type": "review", "business_id": "JOZqBKIOB8WEBAWm7v1JFA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "Gh1EXuS42DY3rV_MzFpJpg", "review_id": "U23UfuxN9DpAU0Dslc5KjQ", "stars": 4, "date": "2012-10-23", "text": "Yay, even though I miss living in Coronado I am glad to be back at the Melrose America's. If you have read any of my reviews you know how disappointed I was with Coronado America's rude service that I boycotted that particular location. \n\nNow that I am back around Melrose I can once again enjoy Happy Hour Tacos and drinks, or their delicious breakfast burro and cochata. If 7th St let you down try 7th Ave.", "type": "review", "business_id": "OllL0G9Kh_k1lx-2vrFDXQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yRYNx24kUDRRBfJu1Rcojg", "review_id": "udMiWjeG0OGcb4nNddDkBg", "stars": 5, "date": "2009-09-28", "text": "Wow! Went on a Sunday around 11am - busy but not packed. Roomy and comfortable. GREAT food. Bacon meaty and tasy. I had the french toast on recommendation and it was fantastic. Great atmosphere...just an all around great place. We were in from LA for a baseball game and wanted a non-chain local place and found this place on Yelp. Glad we went!", "type": "review", "business_id": "XHr5mXFgobOHoxbPJxmYdg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "V9Uqt00HXwXT6mzsVCjMAw", "review_id": "bVU-_x9ijxjEImNluy84OA", "stars": 2, "date": "2009-12-16", "text": "If Cowboy Ciao is the best restaurant in Scottsdale then Cafe Carumba has to be just about the worst. This place is terrible. I went here with my family, and not a single one of us enjoyed our meal. The \"handmade chips and salsa\" were clearly store bought, and each of our entrees were consistently, blah. Nothing new or intriguing about any of their dishes, and the food just wasn't all that great. \n\nWith so many great choices in Old Town, why would anyone ever eat here?", "type": "review", "business_id": "cdacUBBL2tDbDnB1EfhpQw"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "TLj3XaclA7V4ldJ5yNP-9Q", "review_id": "g4LsVAoafmUDHiS-_yN4tA", "stars": 5, "date": "2007-10-20", "text": "When I lived in Phoenix, I was a regular at Fez. My friends and I probably averaged twice a week, and there were likely weeks when we were there more. The atmosphere is really wonderful, a rarity in Phoenix. The food is very consistent and almost everything on the menu is unique and flavorful. I must agree with some of the other reviews, that the waitstaff is very hit-or-miss. I've had wonderful service and terrible service, and there are times when I've had to go and ask the bartender to send someone over to our table to take our order... as regulars, in particular, I wouldn't think that this would be something we would have to deal with. That being said, there was one time when they were understaffed and the manager was very apologetic and even sent us a bunch of appetizers free of charge as an apology... so I haven't personally experienced the attitude that others report. I miss Fez... now I live in San Diego. When I go to visit, it's always on the itinerary, every time, usually as soon as I land.", "type": "review", "business_id": "EWMwV5V9BxNs_U6nNVMeqw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "2tUCLMHQKz4kA1VlRB_w0Q", "review_id": "bKjMcpNj0xSu2UI2EFQn1g", "stars": 3, "date": "2009-09-11", "text": "I was looking for chile rellenos and this place does a great job of making them just the way I like it. Flavorful and not dry. Also had the chips and salsa which I did not think were anything special and you have to order them unlike most Mexican places where it is expected at the time they serve the drinks. Flan was unimpressive. I think I will go back for the chile rellenos and head down the street to Carlsbad Tavern for the flan (theirs is my favorite).", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 3, "useful": 6, "cool": 3}, "user_id": "Id-8-NMEKxeXBR44eUdDeA", "review_id": "qaNZyCUJA6Yp0mvPBCknPQ", "stars": 5, "date": "2012-10-30", "text": "Why did I wait so long to try this neighborhood hot spot! Having a father who grew up on Los Olivos I remained a loyal customer, that is, until last evening's change in plans lured me to the colorfully lit and lively patio of Los Sombreros Authentic Mexican Cafe & Cantina. I am not an expert on \"authentic\" Mexican cuisine nor will I pretend to know what the flavors of San Miguel de Allende taste like; however, I am a foodie so I know good food when I eat it. \n\nWe chose to sit outdoor and enjoy the beautiful weather while taking in another Cardinal's loss! (Sad, I know, since they were off to a great start).... Lucky for us it was a calm Monday night and we had the full attention of our waiter, aka the bartender. Phil (no need to blush if you read this) did a wonderful job walking us through their many margarita selections while also conveying his personal favorites that showcased his love for whiskey! My friend allowed Phil to make his margarita as he felt a fine margarita should be made while I allowed Phil to concoct my special margarita while following strict no sugar, no salt, heavy on the tequila preferences...and that was just to start! Perfectly crafted margaritas in hand, check. Now what to eat for dinner. \n\nMy friend ordered his beloved Mole poblano ($18.95) while I couldn't decide between the Smoked chicken enchiladas with salsa verde and chipotle crema (yumm) and the Pollo a la parilla with spinach in a chipotle cream sauce -or- tinga Poblana sauce($18.95). I opted for the Pollo a la parilla with chipotle cream preparation and, once again, my dinner friend had 'order envy'!! That's not to say his Mole was par (or dare I say sub-par) because it wasn't - it actually has received many culinary awards being named \"Best Mole\" both locally and nationally, but because the chipotle cream sauce combined with spinach, perfectly saut\u00e9ed chicken breasts and a side of warm corn tortilla is....AMAZZZZZZING!!!! It's also fair that I note aside from the pricier entree dishes served w two sides (as we ordered), they also offer up tacos (3 at $10.95), various quesadillas (@ $5.95) and other lesser priced authentic eats including fresh guacamole, salads and more! \n\nDeciding I'd save room to see if they could satisfy my sweet tooth I boxed my remaining dinner as we read through each and every dessert. Undecided, again, and so we trusted our gastronomy guide, Phil, to choose. He selected the Mexican Chocolate Cream Pie to finish off the evening, and we happily finished off this delectable treat leaving one bite as I always like to do!!! \n\nThank you, Phil and Los Sombreros, for the memorable dining experience. The food was outstanding, margaritas made by Phil are the best, and the patio alone is enough to draw me back for HH or even a late night dessert. Thank you for staying in the neighborhood, Azucena Tovar, and congrats on almost turning 20 years old.", "type": "review", "business_id": "iDYzGVIF1TDWdjHNgNjCVw"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "vasHsAZEgLZGJDTlIweUYQ", "review_id": "ZoTUU6EJ1OBNr7mhqxHBLw", "stars": 5, "date": "2010-04-01", "text": "This is the place for a fabulos breakfast!! I have friends who visit from Texas and they wait all year to eat the Eggs Benedict here. They are the best. I personally love the pancakes smothered in bannanas, pecans and hot syrup...yummmmy. They also serve some very healthy and delicious salds for lunch like the strawberry spinach salad and the sandwhiches ar e very good, Their is often a wait for breakfast but it moves fast and their is a community table which sometimes shortens the wait.", "type": "review", "business_id": "9Y3aQAVITkEJYe5vLZr13w"} +{"votes": {"funny": 1, "useful": 2, "cool": 2}, "user_id": "bJFdmJJxfXgCYA5DMmyeqQ", "review_id": "eVUs1C4yaVJNrc7SGTAheg", "stars": 5, "date": "2012-12-07", "text": "Highly recommend. This is my second time here and I see #3 on the way.\nI've had the (bistec encebollado & arroz imperial with shrimp \"no melted cheese\") I do recommend both plates. Next time I will try (ropa vieja)\nGreat service! Ask for Kelly.", "type": "review", "business_id": "GV1P1x9eRb4iZHCxj5_IjA"} +{"votes": {"funny": 4, "useful": 6, "cool": 6}, "user_id": "xZvRLPJ1ixhFVomkXSfXAw", "review_id": "Q-y3jSqccdytKxAyo1J0Xg", "stars": 5, "date": "2011-07-03", "text": "5 stars for the great $5 happy hour specials. the short rib tacos and the fish tacos are delicious and a bargain at 5 for 5 bucks. My favorite drink is the green tea lemonade--it was heavy on the liqour and so refreshing.\n\nService was flawless. We were greeted hello and goodbye by two cheerful hostesses, our waiter and waitress offered great suggestions and the bar tender was sweet as well.", "type": "review", "business_id": "GHYOl_cnERMOhkCK_mGAlA"} +{"votes": {"funny": 5, "useful": 9, "cool": 10}, "user_id": "fczQCSmaWF78toLEmb0Zsw", "review_id": "IyunTh7jnG7v3EYwfF3hPw", "stars": 5, "date": "2008-11-27", "text": "We brought the entire family to Giuseppe's last night for a pre-Thanksgiving meal... yes, that's right - my family likes to carb up for all of the eating we do today! We brought a ton of wine and had a great time. Franco was our waiter - and I'm guessing since all the ladies at the table had a crush on him, that he is the waiter Sheila B wrote about in her review too. Nice eye candy!\n\nI absolutely love the eggplant rollatini and pretty much order it every visit. We usually start with a Giuseppe's Salad and finish with a dessert to share. My favorite is the white chocolate tartufa.\n\nPasquale (pictured above) is the sweetest man and makes the experience extra special every single time. \n\nSince I'm writing this review on Thanksgiving, I want to give thanks to Pasquale and Ristorant Giuseppe for all the good times I've had there and all of the good times to come! Salud!", "type": "review", "business_id": "AX8lx9wHNYT45lyd7pxaYw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "J-oVr0th2Y7ltPPOwy0Z8Q", "review_id": "rIgZgxJPWTacq3mV6DfWfg", "stars": 4, "date": "2012-02-25", "text": "Best corned beef sandwich I've had anywhere at anytime. Definitely great portions of food. The jewish sliders are very good especially with the potato pancakes. Too bad they aren't in California because I can see myself visiting this a lot.", "type": "review", "business_id": "KV-yJLmlODfUG1Mkds6kYw"} +{"votes": {"funny": 1, "useful": 4, "cool": 1}, "user_id": "LaEj3VpQh7bgpAZLzSRRrw", "review_id": "PqiIeFOiVr-tj_FtHGAH2g", "stars": 3, "date": "2010-06-06", "text": "3.5 stars. \n\nWe decided to check this place out after all the waves. The space and decor is nice and cute, and girly! We arrived at 10:30 for a Sunday brunch, and there were plentiful of empty seats for us to choose. Nice patio, too!\n\nI had the French Toast with fresh strawberries and chicken apple sausage (however, the menu says with raspberry, I didn't really care for either one, meh~) The toasts were thick and soft, but weren't that outstanding. I really liked the chicken apple sausages on the other hand, they were tasty and not the typical greasy kind. Friend had the Spinach and Tomato Omelette with feta cheese. I didn't take a bite, but she really enjoyed it. It came with a side of potatoes and fresh fruits. \n\nOur waitress was nice, but the service was slow... Overall we had a nice little trip. It's definitely a good spot for a girls' day out!", "type": "review", "business_id": "24V8QQWO6VaVggHdxjQQ_A"} +{"votes": {"funny": 2, "useful": 1, "cool": 0}, "user_id": "W7zmm1uzlyUkEqpSG7PlBw", "review_id": "spusZYROtBKw_5tv3gYm4Q", "stars": 1, "date": "2012-02-12", "text": "Went last night to Whore Foods to get basics to make pizza with, most clutch to the process was a three pack of yeast. Low and behold, the dirty hippie kids they have working there again didn't put something in the bag.\n\nAnd this time it was the yeast.\n\nI love the food there, but the employees are nothing more than entitled hippie kids from Scottsdale who can't be bothered to do their goddamn jobs! I am so sick of this crap with this corporation. Maybe its a Phoenix thing, or maybe its the hiring and firing processes of Whore Foods, but I am done shopping at any Whore Foods. In a place like Phoenix, where you have alternatives such as Sprouts, you'd think Whore Foods would smarten up.\n\nOr when you try to ask someone who works here where something is, and they just walk by with their nose high in the air. I understand its important to show your fellow dirt merchants that you're a super star, but I don't work with you, I contribute to your salary and over inflated set of benefits for a grocery clerk, so do your goddamn job. Useless little girl in need of a shower and orthodontist. \n\nBut alas, Whore Foods and its dirty hippie employees have alienated yet another person with a job and a degree into hating everything that place stands for.\n\nOh yea, one other thing, take the concealed firearm prohibition off of your stores. It didn't stop Jared Loughner from doing something horrid, and all it does is alienate law abiding citizens from their Constitutional rights. I understand you think that only parts of the Constitution should apply, but honestly I think you need to pull your collective heads out of your ass and take a shower.\n\nUseless motherf*&#$@s!", "type": "review", "business_id": "wepFVY82q_tuDzG6lQjHWw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "9MJAacmjxtctbI3xncsK5Q", "review_id": "wB-f0xfx7WIyrOsRJMkDOg", "stars": 4, "date": "2012-10-17", "text": "Awesome food! Little pricey but delicious. Loved the power pancakes!", "type": "review", "business_id": "EMGkbiCMfMTflQux-_JY7Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "yzwPJdn6yd2ccZqfy4LhUA", "review_id": "ijPZPKKWDqdWOIqYkUsJJw", "stars": 4, "date": "2012-03-31", "text": "I came here in December and look forward to my next trip so I can get some more of the Tuna Noodle casserole! It was so basic sounding on the menu, but when away from home its comfort food. So I got it and it was way better than what I make. Now I need to have it again so I can figure out how it was done! I can't describe it, but man it was ridiculous!\n\nMy husband had the Big Unit. He shared it with 3 others, but he could've easily eaten the entire dog. It was long and skinny. The toppings aren't heavy either. \n\nThe Catcher mitt dessert wasn't to die for.\n\nParking is a pain in that area, especially since the meters only took coins.", "type": "review", "business_id": "oCA2OZcd_Jo_ggVmUx3WVw"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "toPtsUtYoRB-5-ThrOy2Fg", "review_id": "j9HwZZoBBmJgOlqDSuJcxg", "stars": 1, "date": "2012-04-07", "text": "The food is delicious. The service: discriminatory. The bartender, blonde gentlemen, went around to everyone else, then finally acknowledge us. This is embarrassing, I don't know what else to say.", "type": "review", "business_id": "r-a-Cn9hxdEnYTtVTB5bMQ"} +{"votes": {"funny": 0, "useful": 2, "cool": 0}, "user_id": "GvaNZY4poCcd3H4WxHjrLQ", "review_id": "TM8hdYqs5Zi1jO5Yrq6E0g", "stars": 4, "date": "2012-06-02", "text": "For our first time we had a great time! Our server was very knowledgable about the menu especially the drink menu. Culinary Dropout has to have some off the most creative drinks I've seen in a while. Everyone mentioned the pretzels on Yelp and they were right! The cheese sauce was velvety and delicious and the pretzel bites had the perfect texture. My girlfriend and I both couldn't finish our sandwiches because they are pretty big. I will definitely be going back to try the charcuterie menu.", "type": "review", "business_id": "xY1sPHTA2RGVFlh5tZhs9g"} +{"votes": {"funny": 0, "useful": 1, "cool": 0}, "user_id": "fKaO8fR1IAcfvZb6cBrs2w", "review_id": "ta2P9joJqeFB8BzFp-AzjA", "stars": 5, "date": "2011-10-01", "text": "Great food and service! Country food at its best!", "type": "review", "business_id": "mQUC-ATrFuMQSaDQb93Pug"} +{"votes": {"funny": 1, "useful": 1, "cool": 1}, "user_id": "b92Y3tyWTQQZ5FLifex62Q", "review_id": "pcEeHdAJPoFNF23es0kKWg", "stars": 5, "date": "2011-10-03", "text": "Yes I do rock the hipster joints. I dig this place. A little bit of a scene, but the food is solid and the service is great. Hard not like it. All in all a great spot. I tend to switch up my favorites but I typically hit this up for breakfast when in the 602.", "type": "review", "business_id": "R8VwdLyvsp9iybNqRvm94g"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "hTau-iNZFwoNsPCaiIUTEA", "review_id": "EuHX-39FR7tyyG1ElvN1Jw", "stars": 5, "date": "2011-12-05", "text": "Only 4 stars? \n\n(A few notes: The folks that rated this place low must have been isolated incidences and I feel weigh far to heavy on service rather than product. Dining at a restaurant, rate the service a lil' harder, but a coffee shop, hold your tongue.)\n\nAnyway, this place rocks. We aren't super close, but we pass up several coffee shops en route to Lola because the quality is top drawer.\n\nThe beans, fair trade, and the roast is perfect. The price of a bag of beans is amazing. Doing right by the farmers and then respecting the product with such a solid roast. This is what is all about!\n\nI have yet to find a better americano. A splash of cream and a splenda only augments the flavor of the espresso and the richness really shines. I've been to most of the independent coffee shops throughout the area, and if I do find myself elsewhere, I can only compare them to Lola, and Lola wins out each time.", "type": "review", "business_id": "WJ5mq4EiWYAA4Vif0xDfdg"} +{"votes": {"funny": 2, "useful": 3, "cool": 2}, "user_id": "W_QXYA7A0IhMrvbckz7eVg", "review_id": "YF17z7HWlMj6aezZc-pVEw", "stars": 5, "date": "2009-03-10", "text": "I'm not normally one to jump at reviewing a chain restaurant, especially when there are 3 subways all within a couple blocks of each other. I felt it was necessary in this case. My husband and I came here over the weekend after a lovely trip to the dog park. The two guys working here on the lonely afternoon were awesome. They were really nice and friendly, and quite chatty. One of them started helping my husband and the other one was sweeping while I was deciding. The sweeping boy apparently noticed I was ready and he quickly ran to the back, washed his hands, threw on gloves and asked me what I wanted. WOW! This type of service has never happened at the other locations, all of which I have been too. He chatted with me as I told him what I wanted. He also joked about my weird sandwich and made me laugh. It's refreshing to see a couple guys working on a boring day and actually enjoying themselves. They also have outdoor seating which are perfect to sit at and people watch on beautiful days. We even met this incredible 90 year old guy who is blind and deaf in both ears but somehow managed to communicate with us perfectly. He was much more lively than most twenty-somethings you meet. Amazing. Only in downtown do you meet people like that. This is a great Subway. Go here and skip the others.", "type": "review", "business_id": "f96lWMIAUhYIYy9gOktivQ"} +{"votes": {"funny": 0, "useful": 1, "cool": 1}, "user_id": "T46gxPbJMWmlLyr7GxQLyQ", "review_id": "SNnyYHI9rw9TTltVX3TF-A", "stars": 4, "date": "2011-06-27", "text": "Judging by some of the reviews, maybe I went on good days because I've enjoyed my trips. Good food and good service. \n\nThe last time I went, I sat at the bar for lunch on a Sunday, ordered an All~Star Burger with BBQ sauce and enjoyed some sports. The bartender was nice and the food came quick, which was good because I was hungry (I inhaled the burger).\n\nI'll be returning on a regular basis once football starts back up.", "type": "review", "business_id": "maB4VHseFUY2TmPtAQnB9Q"} +{"votes": {"funny": 1, "useful": 2, "cool": 1}, "user_id": "OzOZv-Knlw3oz9K5Kh5S6A", "review_id": "0nxb1gIGFgk3WbC5zwhKZg", "stars": 5, "date": "2012-03-19", "text": "Let's see...what is there NOT to like about Surprise Stadium? Well, $9.50 tall cans of PBR is about all I could come up with and that's not a surprise (pun intended) considering you're attending a sporting event...even spring training. \n\nBut as someone who does not living in Arizona, and as someone who doesn't go to MLB baseball games in Southern California due to the fact it costs so damn much, people bitching about the slow service or any other little inconvenience when it comes to seeing a game here. Look, you're lucky enough to have almost an entire month of low cost MLB baseball right in your back yard. If I could, I'd live down here during March just to take in the awesome baseball action that crisscrosses the Phoenix metro area each year. \n\nI attended my first spring training game on March 12th, 2012 at Surprise Stadium as the Royals took on the San Francisco Giants (my favorite team). Our seats (Sec. 112, Row J, Seats 13-14-15) were 25 bucks each (around 30 bucks including service fees). I mean, we were maybe 5 or 6 rows back from the Giants dugout (check out some of my pictures). The stadium (funny calling it that since it only holds just over 10,000 people) is big enough so you feel you're at an MLB game but small enough to feel pretty close and intimate with the players. The stadium is well maintained and kept super clean. \n\nArriving to the park, I was surprised (pun unintended) to see that parking was free, an oddity when going to an event like this. The stadium staff, as mentioned by other reviews, are mainly made up of senior citizens who were super friendly and helpful. I didn't have to wait long at the concession stands, even if lines were a bit long. The outfield is lined with a lawn area, perfect for people to sit back and have a picnic while taking in a game (Tickets are around 9 bucks each after service fees!!!). \n\nI love this place and hope to return next year when visiting family. Oh, Giants won 2-1! Go Giants!!!", "type": "review", "business_id": "L3BSpFvxcNf3T_teitgt6A"} +{"votes": {"funny": 0, "useful": 2, "cool": 1}, "user_id": "_eqQoPtQ3e3UxLE4faT6ow", "review_id": "Ubyfp2RSDYW0g7Mbr8N3iA", "stars": 3, "date": "2012-07-28", "text": "First visit...Had lunch here today - used my Groupon. \n\nWe ordered the Bruschetta, Pretzels and Steak & Cheese Calzone.\n\n-We both thought there was WAY too much Balsamic used. Also, we expected mozzarella cheese - not Feta.\n\n-We tried the butter and salt pretzel & cinnamon sugar with honey pretzel. They were okay. They should have kept the honey on the side like they did for the mustard.\n\n-The calzone was good. We liked the dough and it was fairly well filled/stuffed.\n\nOverall, we thought it was average as far as the food is concerned - and a little pricey for quality and portions.\n\nWe have another Groupon to use so maybe we'll try a pizza for the next one.", "type": "review", "business_id": "VY_tvNUCCXGXQeSvJl757Q"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "ROru4uk5SaYc3rg8IU7SQw", "review_id": "2XyIOQKbVFb6uXQdJ0RzlQ", "stars": 4, "date": "2012-01-18", "text": "Should be called house of deliciousness!\n\nI could go on and on about this item, that item, blah blah blah but I dont really waznt to. This is good food, done creatively, and in my mind presented in a casual yet sophisticated manner without any pretensiousness. The chef here creates inspirational dishes that seem to meld asian and southwestern flavors seemlessly. Ok so now I realize this are not all real words but after eating here and developing a drunken state of mind who really cares anyhow?\n\nThe lowdown is the food is good and priced fair for what you get. Our service was great and on top of everything we truly had an amazing time on a rainy Saturday evening. Next time hopefully we can enjoy the killer outdoor bar and patio seating.\nI cant wait to go back and eat our way through the new menu.\n\nThe custom cocktails were delightful and the wine list is pretty spot on.", "type": "review", "business_id": "EKzMHI1tip8rC1-ZAy64yg"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "gGbN1aKQHMgfQZkqlsuwzg", "review_id": "jyznYkIbpqVmlsZxSDSypA", "stars": 4, "date": "2010-11-16", "text": "I recently visited Olive and Ivy for business last week, and after 3 visits, I am convinced that Fox Restaurants has some of the best establishments in the valley. Olive and Ivy is the Fox Restaurant of choice for consistently good food, great drinks, and most of all, outstanding service. I spend a lot of time in various restaurants across the valley and am always amazed at how bad service can be at some of the more popular valley restaurants. Not Olive and Ivy. From the first phone call for reservations, to the greeting upon walking in the door to the smiles and warm reception you receive from every server you cross, this restaurant knows how to make you feel special.\n\nMany of the reviews here will focus on the food and I could spend hours talking about my experiences but I will sum it up in a couple of my favorites. \n\nI hate dates and prunes, but the bacon wrapped dates are crazy good!\nThe shrimp and risotto main course is one of the best dishes I have tasted since arriving in Phoenix 3 years ago. And hands down, their short rib entree is best in the valley.\n\nThe only catch is the cost. Olive and Ivy is not cheap and definitely not for brothers looking to execute the cheap date. With wine, apps, and main course, you will easy break the century mark, and if you are really being generous, $200 is obtainable. But, it's worth every dollar and who knows, you may even get breakfast out of the deal!", "type": "review", "business_id": "53YGfwmbW73JhFiemNeyzQ"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "0lyVoNazXa20WzUyZPLaQQ", "review_id": "5UKq9WQE1qQbJ0DJbc-B6Q", "stars": 2, "date": "2012-12-02", "text": "My nephew just moved to Scottsdale recently so me and a bunch of friends brought him here to show him a local bar that he and the girlfriend could come shoot pool, watch football, play volleyball etc...well....we weren't there 5minutes and 2 kids were running around the pool tables, messing up our games and screaming. I couldn't believe the staff was allowing this to happen. They were hitting the pool sticks on everything and crying when their mom attempted (in vain) to quiet them. You'd think the mom would leave at this point with her kids....um...no....the staff did seem annoyed as well but said nothing. Then....it happened...she said \" you guys better behave or mommy will be fired\"!! Holy shit....she works there!! Even worse! Shame on that owner for allowing this to happen. And that employee needs to recognize this...YOU WORK AT A BAR.....not a daycare....A BAR!!!", "type": "review", "business_id": "9SKdOoDHcFoxK5ZtsgHJoA"} +{"votes": {"funny": 0, "useful": 0, "cool": 0}, "user_id": "KSBFytcdjPKZgXKQnYQdkA", "review_id": "vWSmOhg2ID1MNZHaWapGbA", "stars": 5, "date": "2010-10-16", "text": "4-5 locations.. all 4.5 star average.. I think Arizona really has some fantastic Pizza options, and Spinatos is at the top of my pizza fix list.. the semi sweet sauce is addictive, great service, fresh ingredients, The Spicy Italian is my favorite... The chocolate chips cookies are laced with mind altering drugs, that make your body parts\"romantic\" when you think of their cookies.. BTW 5:30pm, on a Tuesday, when we left, a 30 minute wait.. Its on the List..", "type": "review", "business_id": "pF7uRzygyZsltbmVpjIyvw"} diff --git a/homework/02_command_line_chipotle.md b/homework/02_command_line_chipotle.md new file mode 100644 index 0000000..362bbbf --- /dev/null +++ b/homework/02_command_line_chipotle.md @@ -0,0 +1,38 @@ +## Class 2 Homework: Command Line Chipotle + +#### Submitting Your Homework + +* Create a Markdown file that includes your answers **and** the code you used to arrive at those answers. +* Add this Markdown file to a GitHub repo that you'll use for all of your coursework. +* Submit a link to your repo using the homework submission form. + +#### Command Line Tasks + +1. Look at the head and the tail of **chipotle.tsv** in the **data** subdirectory of this repo. Think for a minute about how the data is structured. What do you think each column means? What do you think each row means? Tell me! (If you're unsure, look at more of the file contents.) +2. How many orders do there appear to be? +3. How many lines are in this file? +4. Which burrito is more popular, steak or chicken? +5. Do chicken burritos more often have black beans or pinto beans? +6. Make a list of all of the CSV or TSV files in the DAT8 repo (using a single command). Think about how wildcard characters can help you with this task. +7. Count the approximate number of occurrences of the word "dictionary" (regardless of case) across all files in the DAT8 repo. +8. **Optional:** Use the the command line to discover something "interesting" about the Chipotle data. Try using the commands from the "advanced" section! + +#### Solution + +1. **order_id** is the unique identifier for each order. **quantity** is the number purchased of a particular item. **item_name** is the primary name for the item being purchased. **choice_description** is list of modifiers for that item. **price** is the price for that entire line (taking **quantity** into account). A given order consists of one or more rows, depending upon the number of unique items being purchased in that order. + * `head chipotle.tsv` + * `tail chipotle.tsv` +2. There are 1834 orders (since 1834 is the highest **order_id** number). +3. The file has 4623 lines. + * `wc -l chipotle.tsv` +4. Chicken burritos are more popular than steak burritos. + * Compare `grep -i 'chicken burrito' chipotle.tsv | wc -l` with `grep -i 'steak burrito' chipotle.tsv | wc -l` + * Alternatively, use the 'c' option of `grep` to skip the piping step: `grep -ic 'chicken burrito' chipotle.tsv` +5. Black beans are more popular than pinto beans (on chicken burritos). + * Compare `grep -i 'chicken burrito' chipotle.tsv | grep -i 'black beans' | wc -l` with `grep -i 'chicken burrito' chipotle.tsv | grep -i 'pinto beans' | wc -l` + * Alternatively, use the 'c' option of `grep` and a more complex regular expression pattern to skip the piping steps: `grep -ic 'chicken burrito.*black beans' chipotle.tsv` +6. At the moment, the CSV and TSV files in the DAT8 repo are **airlines.csv**, **chipotle.tsv**, and **sms.tsv**, all of which are in the **data** subdirectory. + * Change your working directory to DAT8, and then use `find . -name *.?sv` +7. At the moment, there are 13 lines in DAT8 files that contain the word 'dictionary', which is a good approximation of the number of occurrences. + * Change your working directory to DAT8, and then use `grep -ir 'dictionary' . | wc -l` + * Alternatively, use the 'c' option of `grep` to skip the piping step: `grep -irc 'dictionary' .` diff --git a/homework/09_bias_variance.md b/homework/09_bias_variance.md new file mode 100644 index 0000000..4646db3 --- /dev/null +++ b/homework/09_bias_variance.md @@ -0,0 +1,31 @@ +## Class 9 Pre-work: Bias-Variance Tradeoff + +Read this excellent article, [Understanding the Bias-Variance Tradeoff](http://scott.fortmann-roe.com/docs/BiasVariance.html), and be prepared to **discuss it in class** on Tuesday. + +**Note:** You can ignore sections 4.2 and 4.3. + +Here are some questions to think about while you read: +* In the Party Registration example, what are the features? What is the response? Is this a regression or classification problem? + * The features are wealth and religiousness. The response is voter party registration. This is a classification problem. +* Conceptually, how is KNN being applied to this problem to make a prediction? + * Find the K most similar voters in the training data (in terms of wealth and religiousness), and use the majority party registration among those "neighbors" as the predicted party registration for the unknown individual. +* How do the four visualizations in section 3 relate to one another? Change the value of K using the slider, and make sure you understand what changed in the visualizations (and why it changed). + * First viz: training data colored by response value + * Second viz: classification map for K=1 + * Third viz: out-of-sample data colored by predicted response value, and identification of the neighborhoods used to make that prediction + * Fourth viz: predicted response value for each hexagon + * Changing K changes the predictions in the third and fourth viz +* In figures 4 and 5, what do the lighter colors versus the darker colors mean? How is the darkness calculated? + * Darkness indicates confidence in the prediction, and is calculated using the proportion of nearest neighbors that have the same response value. +* What does the black line in figure 5 represent? What predictions would the best possible machine learning model make, with respect to this line? + * The black line is the the underlying model that generated the training data. The best possible machine learning model would learn that line as its decision boundary. It would not be a perfect model, but it would be the best possible model. +* Choose a very small value of K, and click the button "Generate New Training Data" a number of times. Do you "see" low variance or high variance, and low bias or high bias? + * High variance, low bias +* Repeat this with a very large value of K. Do you "see" low variance or high variance, and low bias or high bias? + * Low variance, high bias +* Try using other values of K. What value of K do you think is "best"? How do you define "best"? + * A value of K in the middle is best. The best value is the value that results in a model whose predictions most consistently match the decision boundary. +* Does a small value for K cause "overfitting" or "underfitting"? + * Overfitting +* Why should we care about variance at all? Shouldn't we just minimize bias and ignore variance? + * If you had all of the possible data (past and future), a model with high complexity (and thus high variance) would be ideal because it would capture all of the complexity in the data and wouldn't need to generalize. But given that we only have a single sample of data, both bias and variance contribute to prediction error and should be appropriately balanced. diff --git a/homework/10_yelp_votes.md b/homework/10_yelp_votes.md new file mode 100644 index 0000000..b193cac --- /dev/null +++ b/homework/10_yelp_votes.md @@ -0,0 +1,25 @@ +## Class 10 Homework: Yelp Votes + +This assignment uses a small subset of the data from Kaggle's [Yelp Business Rating Prediction](https://www.kaggle.com/c/yelp-recsys-2013) competition. + +**Description of the data:** + +* `yelp.json` is the original format of the file. `yelp.csv` contains the same data, in a more convenient format. Both of the files are in this repo, so there is no need to download the data from the Kaggle website. +* Each observation in this dataset is a review of a particular business by a particular user. +* The "stars" column is the number of stars (1 through 5) assigned by the reviewer to the business. (Higher stars is better.) In other words, it is the rating of the business by the person who wrote the review. +* The "cool" column is the number of "cool" votes this review received from other Yelp users. All reviews start with 0 "cool" votes, and there is no limit to how many "cool" votes a review can receive. In other words, it is a rating of the review itself, not a rating of the business. +* The "useful" and "funny" columns are similar to the "cool" column. + +**Homework tasks:** + +1. Read `yelp.csv` into a DataFrame. + * **Bonus:** Ignore the `yelp.csv` file, and construct this DataFrame yourself from `yelp.json`. This involves reading the data into Python, decoding the JSON, converting it to a DataFrame, and adding individual columns for each of the vote types. +2. Explore the relationship between each of the vote types (cool/useful/funny) and the number of stars. +3. Define cool/useful/funny as the features, and stars as the response. +4. Fit a linear regression model and interpret the coefficients. Do the coefficients make intuitive sense to you? Explore the Yelp website to see if you detect similar trends. +5. Evaluate the model by splitting it into training and testing sets and computing the RMSE. Does the RMSE make intuitive sense to you? +6. Try removing some of the features and see if the RMSE improves. +7. **Bonus:** Think of some new features you could create from the existing data that might be predictive of the response. Figure out how to create those features in Pandas, add them to your model, and see if the RMSE improves. +8. **Bonus:** Compare your best RMSE on the testing set with the RMSE for the "null model", which is the model that ignores all features and simply predicts the mean response value in the testing set. +9. **Bonus:** Instead of treating this as a regression problem, treat it as a classification problem and see what testing accuracy you can achieve with KNN. +10. **Bonus:** Figure out how to use linear regression for classification, and compare its classification accuracy with KNN's accuracy. diff --git a/homework/13_cross_validation.md b/homework/13_cross_validation.md new file mode 100644 index 0000000..c1daaa1 --- /dev/null +++ b/homework/13_cross_validation.md @@ -0,0 +1,26 @@ +## Class 13 Pre-work: Cross-validation + +Watch my video on [cross-validation](https://www.youtube.com/watch?v=6dbrR-WymjI) (36 minutes), and be prepared to **discuss it in class** on Tuesday. The [notebook](../notebooks/13_cross_validation.ipynb) shown in the video is also in this repository. + +Alternatively, read section 5.1 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (11 pages). + +Here are some questions to think about: + +- What is the purpose of model evaluation? + - The purpose is to estimate the likely performance of a model on out-of-sample data, so that we can choose the model that is most likely to generalize, and so that we can have an idea of how well that model will actually perform. +- What is the drawback of training and testing on the same data? + - Training accuracy is maximized for overly complex models which overfit the training data, and thus it's not a good measure of how well a model will generalize. +- How does train/test split work, and what is its primary drawback? + - It splits the data into two pieces, trains the model on the training set, and tests the model on the testing set. Testing accuracy can change a lot depending upon which observations happen to be in the training and testing sets. +- How does K-fold cross-validation work, and what is the role of "K"? + - First, it splits the data into K equal folds. Then, it trains the model on folds 2 through K, tests the model on fold 1, and calculates the requested evaluation metric. Then, it repeats that process K-1 more times, until every fold has been the testing set exactly once. +- Why do we pass X and y, not X_train and y_train, to the `cross_val_score` function? + - It will take care of splitting the data into the K folds, so we don't need to split it ourselves. +- Why does `cross_val_score` need a "scoring" parameter? + - It needs to know what evaluation metric to calculate, since many different metrics are available. +- What does `cross_val_score` return, and what do we usually do with that object? + - It returns a NumPy array containing the K scores. We usually calculate the mean score, though we might also be interested in the standard deviation. +- Under what circumstances does `cross_val_score` return negative scores? + - The scores will be negative if the evaluation metric is a loss function (something you want to minimize) rather than a reward function (something you want to maximize). +- When should you use train/test split, and when should you use cross-validation? + - Train/test split is useful when you want to inspect your testing results (via confusion matrix or ROC curve) and when evaluation speed is a concern. Cross-validation is useful when you are most concerned with the accuracy of your estimation. diff --git a/homework/13_roc_auc.md b/homework/13_roc_auc.md new file mode 100644 index 0000000..01d15ce --- /dev/null +++ b/homework/13_roc_auc.md @@ -0,0 +1,32 @@ +## Class 13 Pre-work: ROC Curves and AUC + +First, read these [lesson notes](http://ebp.uga.edu/courses/Chapter%204%20-%20Diagnosis%20I/8%20-%20ROC%20curves.html) from a university course for an excellent overview of ROC curves. + +Then, watch my video on [ROC Curves and Area Under the Curve](https://www.youtube.com/watch?v=OAl6eAyP-yo) (14 minutes), and be prepared to **discuss it in class** on Tuesday. (Feel free to play with the [visualization](http://www.navan.name/roc/) shown in the video, or view the [video transcript and screenshots](http://www.dataschool.io/roc-curves-and-auc-explained/).) + +**Optional:** If you would like to go even deeper, [An introduction to ROC analysis](http://people.inf.elte.hu/kiss/13dwhdm/roc.pdf) is a very readable paper on the topic. + +Here are some questions to think about: + +- What is the difference between the predict and predict_proba methods in scikit-learn? + - The former outputs class predictions, and the latter outputs predicted probabilities of class membership. +- If you have a classification model that outputs predicted probabilities, how could you convert those probabilities to class predictions? + - Set a threshold, and classify everything above the threshold as a 1 and everything below the threshold as a 0. +- Why are predicted probabilities (rather than just class predictions) required to generate an ROC curve? + - Because an ROC curve is measuring the performance of a classifier at all possible thresholds, and thresholds only make sense in the context of predicted probabilities. +- Could you use an ROC curve for a regression problem? Why or why not? + - No, because ROC is a plot of TPR vs FPR, and those concepts have no meaning in a regression problem. +- What's another term for True Positive Rate? + - Sensitivity or recall. +- If I wanted to increase specificity, how would I change the classification threshold? + - Increase it. +- Is it possible to adjust your classification threshold such that both sensitivity and specificity increase simultaneously? Why or why not? + - No, because increasing either of those requires moving the threshold in opposite directions. +- What are the primary benefits of ROC curves over classification accuracy? + - Doesn't require setting a classification threshold, allows you to visualize the performance of your classifier, works well for unbalanced classes. +- What should you do if your AUC is 0.2? + - Reverse your predictions so that your AUC is 0.8. +- What would the plot of reds and blues look like for a dataset in which each observation was a credit card transaction, and the response variable was whether or not the transaction was fraudulent? (0 = not fraudulent, 1 = fraudulent) + - Blues would be significantly larger, lots of overlap between blues and reds. +- What's a real-world scenario in which you would prefer high specificity (rather than high sensitivity) for your classifier? + - Speed cameras issuing speeding tickets. diff --git a/homework/14_spam_filtering.md b/homework/14_spam_filtering.md new file mode 100644 index 0000000..dd477da --- /dev/null +++ b/homework/14_spam_filtering.md @@ -0,0 +1,24 @@ +## Class 14 Pre-work: Spam Filtering + +Read Paul Graham's [A Plan for Spam](http://www.paulgraham.com/spam.html). + +Here are some questions to think about: + +- Should a spam filter optimize for sensitivity or specificity, in Paul's opinion? + - Specificity, in order to minimize false positives (non-spam being incorrectly marked as spam). +- Before he tried the "statistical approach" to spam filtering, what was his approach? + - He hand-engineered features and used those features to compute a score. +- What are the key components of his statistical filtering system? In other words, how does it work? + - Scan the entire text (including headers) and tokenize it. + - Count the number of occurrences of each token in the ham corpus and the spam corpus (separately). + - Assign each token a "spam score" based on its relative frequency in the corpora. + - For new email, only take into account the 15 most "interesting" tokens. +- What did Paul say were some of the benefits of the statistical approach? + - It works better (almost no false positives). + - It requires less work because it discovers features automatically. + - The "spam score" is interpretable. + - It can easily be tuned to the individual user. + - It evolves with the spam. + - It creates an implicit whitelist/blacklist of email addresses, server names, etc. +- How good was his prediction of the "spam of the future"? + - Great! diff --git a/homework/14_yelp_review_text.md b/homework/14_yelp_review_text.md new file mode 100644 index 0000000..82ff2ba --- /dev/null +++ b/homework/14_yelp_review_text.md @@ -0,0 +1,28 @@ +## Class 14 Homework: Yelp Review Text + +This assignment uses the same data as the [class 10 homework](10_yelp_votes.md). This time, we will attempt to classify reviews as either 5-star or 1-star using only the review text! + +After each task, I recommend that you check the **shape** and the **contents** of your objects, to confirm that they match your expectations. + +**Homework tasks:** + +1. Read `yelp.csv` into a DataFrame. +2. Create a new DataFrame that only contains the 5-star and 1-star reviews. +3. Split the new DataFrame into training and testing sets, using the review text as the only feature and the star rating as the response. +4. Use CountVectorizer to create document-term matrices from X_train and X_test. + - **Hint:** If you run into a decoding error, instantiate the vectorizer with the argument `decode_error='ignore'`. +5. Use Naive Bayes to predict the star rating for reviews in the testing set, and calculate the accuracy. +6. Calculate the AUC. + - **Hint 1:** Make sure to pass the predicted probabilities to `roc_auc_score`, not the predicted classes. + - **Hint 2:** `roc_auc_score` will get confused if y_test contains fives and ones, so you will need to create a new object that contains ones and zeros instead. +7. Plot the ROC curve. +8. Print the confusion matrix, and calculate the sensitivity and specificity. Comment on the results. +9. Browse through the review text for some of the false positives and false negatives. Based on your knowledge of how Naive Bayes works, do you have any theories about why the model is incorrectly classifying these reviews? +10. Let's pretend that you want to balance sensitivity and specificity. You can achieve this by changing the threshold for predicting a 5-star review. What threshold approximately balances sensitivity and specificity? +11. Let's see how well Naive Bayes performs when all reviews are included, rather than just 1-star and 5-star reviews: + - Define X and y using the original DataFrame from step 1. (y should contain 5 different classes.) + - Split the data into training and testing sets. + - Calculate the testing accuracy of a Naive Bayes model. + - Compare the testing accuracy with the null accuracy. + - Print the confusion matrix. + - Comment on the results. diff --git a/notebooks/03_python_homework_chipotle_explained.ipynb b/notebooks/03_python_homework_chipotle_explained.ipynb new file mode 100644 index 0000000..82bc0c4 --- /dev/null +++ b/notebooks/03_python_homework_chipotle_explained.ipynb @@ -0,0 +1,1595 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Python Homework with Chipotle Data - Explained\n", + "\n", + "*Original version written by [Alex Sherman](https://www.linkedin.com/in/alexjmsherman)*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1\n", + "\n", + "- Read in the file with csv.reader() and store it in an object called 'file_nested_list'.\n", + "- Hint: This is a TSV file, and csv.reader() needs to be told how to handle it." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "c:\\Users\\Kevin\\Desktop\\DAT8\\data\n" + ] + } + ], + "source": [ + "# Change the working directory to the 'data' directory\n", + "%cd ../data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# To use csv.reader, we must import the csv module\n", + "import csv\n", + "\n", + "# The csv.reader has a delimeter parameter, which we set to '\\t' to indicate that the file is tab-separated\n", + "with open('chipotle.tsv', mode='rU') as f: # We temporarily refer to the file by the variable name f for file\n", + " file_nested_list = [row for row in csv.reader(f, delimiter='\\t')] # Create a list by looping through each line in f" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Why use csv.reader?\n", + "\n", + "As stated in the [CSV file reading and writing documentation](https://docs.python.org/2/library/csv.html):\n", + "\n", + "> There is no \"CSV standard\", so the format is operationally defined by the many applications which \n", + "read and write it. The lack of a standard means that subtle differences often exist in the data \n", + "produced and consumed by different applications. These differences can make it annoying to process \n", + "CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the \n", + "overall format is similar enough that it is possible to write a single module which can efficiently\n", + "manipulate such data, hiding the details of reading and writing the data from the programmer.\n", + "\n", + "In other words, depending on the source, there may be intricacies in the data format. These are not always easy to distinguish - for instance, non-visible new line characters. The csv.reader module is built to handle these intricacies, and thus provides an efficient way to load data.\n", + "\n", + "This is why we prefer: `file_nested_list = [row for row in csv.reader(f, delimiter='\\t')]`\n", + "\n", + "Instead of: `file_nested_list = [row.split('\\t') for row in f]`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2\n", + "\n", + "- Separate 'file_nested_list' into the 'header' and the 'data'." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "header = file_nested_list[0]\n", + "data = file_nested_list[1:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3\n", + "\n", + "- Calculate the average price of an order.\n", + "- **Hint:** Examine the data to see if the 'quantity' column is relevant to this calculation.\n", + "- **Hint:** Think carefully about the simplest way to do this!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We want to find the average price of an order. This means we need the **sum of the price of all orders** and the **total number of orders**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the sum of the price of all orders" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['order_id', 'quantity', 'item_name', 'choice_description', 'item_price']\n", + "['2', '2', 'Chicken Bowl', '[Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]]', '$16.98 ']\n", + "['3', '1', 'Chicken Bowl', '[Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]]', '$10.98 ']\n" + ] + } + ], + "source": [ + "# After exploring our data for a minute, we find two orders for the same item - Chicken Bowl - differing by the quantity\n", + "print header\n", + "print data[4]\n", + "print data[5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We see that the item_price field reflects the quantity ordered. Thus, to calculate the total value of all orders, we can safely ignore the quantity column because the item_price takes quantity into account." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['$2.39 ', '$3.39 ', '$3.39 ', '$2.39 ', '$16.98 ']" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# We want the sum of all the order prices - the last item in each list. Here are two ways we could get this data:\n", + "\n", + "# Option 1\n", + "prices = [row[4] for row in data] # slice to position four\n", + "\n", + "# Option 2\n", + "prices = [row[-1] for row in data] # slice to the last position\n", + "\n", + "# Let's look at the first five results:\n", + "prices[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "str" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Each item in the list is a sting. We can tell this because the results above are wrapped in quotes.\n", + "# To confirm, let's explicity check the type of the first item in the list:\n", + "type(prices[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['2.39 ', '3.39 ', '3.39 ', '2.39 ', '16.98 ']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Since we want to do a calculation, we need to change the type from string to float. \n", + "# To do this, we first need to remove the $. Here are two different ways to accomplish this:\n", + "\n", + "# Option 1\n", + "prices = [row[4][1:] for row in data] # remove the dollar sign by slicing\n", + "\n", + "# Option 2\n", + "prices = [row[4].replace('$', '') for row in data] # remove the dollar sign by replacing '$' with an empty string\n", + "\n", + "# Let's look at the first five results:\n", + "prices[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2.39, 3.39, 3.39, 2.39, 16.98]\n", + "\n" + ] + } + ], + "source": [ + "# Now we can convert our results to floats\n", + "prices = [float(row[4][1:]) for row in data]\n", + "\n", + "# Let's look at the first five results and check the type of the first item:\n", + "print prices[0:5]\n", + "print type(prices[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "34500.16000000046" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Finally, we calculate our total order sum with the built-in sum function\n", + "total_order_sum = sum([float(row[4][1:]) for row in data]) \n", + "total_order_sum" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the total number of orders" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['order_id', 'quantity', 'item_name', 'choice_description', 'item_price']\n", + "['1', '1', 'Chips and Fresh Tomato Salsa', 'NULL', '$2.39 ']\n", + "['1834', '1', 'Chicken Salad Bowl', '[Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]]', '$8.75 ']\n" + ] + } + ], + "source": [ + "# We can look at the first and last items in the list\n", + "print header\n", + "print data[0]\n", + "print data[-1]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It seems that there are 1834 orders. You could assume this since that's the maximum order_id, but it is best to check, as we are not certain that the data is clean. If the data was not sorted by order or if there was a missing order, then 1834 might not be correct.\n", + "\n", + "So, let's confirm this assumption:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['1', '1', '1', '1', '2', '3', '3', '4', '4', '5']" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# First, let's build a list of the order_ids\n", + "order_ids = [row[0] for row in data]\n", + "\n", + "# Let's look at the first ten results\n", + "order_ids[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'1', '2', '3', '4', '5'}" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# We only want to count each order once. We can get the distinct order values with the set function:\n", + "set(order_ids[0:10])" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1834" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Only keep unique order_ids\n", + "unique_order_ids = set(order_ids)\n", + "\n", + "# Use the len function to determine the number of unique order_ids\n", + "num_orders = len(unique_order_ids)\n", + "num_orders" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the average price" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "18.811428571428824" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Finally, we answer the question by calculating the average\n", + "average_order_price = total_order_sum / num_orders\n", + "average_order_price" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "18.81" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Let's recap by looking at the final code:\n", + "total_order_sum = sum([float(row[4][1:]) for row in data])\n", + "num_orders = len(set([row[0] for row in data]))\n", + "average_order_price = round(total_order_sum / num_orders, 2) # Let's round our result to 2 decimal places\n", + "average_order_price" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4\n", + "\n", + "- Create a list (or set) of all unique sodas and soft drinks that they sell.\n", + "- **Note:** Just look for 'Canned Soda' and 'Canned Soft Drink', and ignore other drinks like 'Izze'." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'6 Pack Soft Drink',\n", + " 'Barbacoa Bowl',\n", + " 'Barbacoa Burrito',\n", + " 'Barbacoa Crispy Tacos',\n", + " 'Barbacoa Salad Bowl',\n", + " 'Barbacoa Soft Tacos',\n", + " 'Bottled Water',\n", + " 'Bowl',\n", + " 'Burrito',\n", + " 'Canned Soda',\n", + " 'Canned Soft Drink',\n", + " 'Carnitas Bowl',\n", + " 'Carnitas Burrito',\n", + " 'Carnitas Crispy Tacos',\n", + " 'Carnitas Salad',\n", + " 'Carnitas Salad Bowl',\n", + " 'Carnitas Soft Tacos',\n", + " 'Chicken Bowl',\n", + " 'Chicken Burrito',\n", + " 'Chicken Crispy Tacos',\n", + " 'Chicken Salad',\n", + " 'Chicken Salad Bowl',\n", + " 'Chicken Soft Tacos',\n", + " 'Chips',\n", + " 'Chips and Fresh Tomato Salsa',\n", + " 'Chips and Guacamole',\n", + " 'Chips and Mild Fresh Tomato Salsa',\n", + " 'Chips and Roasted Chili Corn Salsa',\n", + " 'Chips and Roasted Chili-Corn Salsa',\n", + " 'Chips and Tomatillo Green Chili Salsa',\n", + " 'Chips and Tomatillo Red Chili Salsa',\n", + " 'Chips and Tomatillo-Green Chili Salsa',\n", + " 'Chips and Tomatillo-Red Chili Salsa',\n", + " 'Crispy Tacos',\n", + " 'Izze',\n", + " 'Nantucket Nectar',\n", + " 'Salad',\n", + " 'Side of Chips',\n", + " 'Steak Bowl',\n", + " 'Steak Burrito',\n", + " 'Steak Crispy Tacos',\n", + " 'Steak Salad',\n", + " 'Steak Salad Bowl',\n", + " 'Steak Soft Tacos',\n", + " 'Veggie Bowl',\n", + " 'Veggie Burrito',\n", + " 'Veggie Crispy Tacos',\n", + " 'Veggie Salad',\n", + " 'Veggie Salad Bowl',\n", + " 'Veggie Soft Tacos'}" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# First let's look at all of the items\n", + "distinct_items = set([row[2] for row in data])\n", + "distinct_items " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Our first goal is to reduce the dataset to only soda and soft drink orders.\n", + "\n", + "It appears that the only items that use the word 'Canned' are 'Canned Soda' and 'Canned Soft Drink.'\n", + "\n", + "This means we only need to use one filter criteria: **Look for rows with the word 'Canned'**" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[['9', '2', 'Canned Soda', '[Sprite]', '$2.18 '],\n", + " ['14', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 '],\n", + " ['23', '2', 'Canned Soda', '[Mountain Dew]', '$2.18 '],\n", + " ['24', '1', 'Canned Soda', '[Sprite]', '$1.09 '],\n", + " ['47', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 ']]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a list only including soda and soft drink orders\n", + "soda_orders = []\n", + "for row in data:\n", + " if 'Canned' in row[2]:\n", + " soda_orders.append(row)\n", + "\n", + "# Let's look at the first five results:\n", + "soda_orders[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# This can also be done using a list comprehension with an 'if' condition\n", + "soda_orders = [row for row in data if 'Canned' in row[2]]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just out of interest, let's look at two other ways we could have filtered the data:" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[['9', '2', 'Canned Soda', '[Sprite]', '$2.18 '],\n", + " ['14', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 '],\n", + " ['23', '2', 'Canned Soda', '[Mountain Dew]', '$2.18 '],\n", + " ['24', '1', 'Canned Soda', '[Sprite]', '$1.09 '],\n", + " ['47', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 ']]" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "soda_orders = [row for row in data if 'Canned Soda' in row[2] or 'Canned Soft Drink' in row[2]]\n", + "soda_orders[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[['9', '2', 'Canned Soda', '[Sprite]', '$2.18 '],\n", + " ['14', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 '],\n", + " ['23', '2', 'Canned Soda', '[Mountain Dew]', '$2.18 '],\n", + " ['24', '1', 'Canned Soda', '[Sprite]', '$1.09 '],\n", + " ['47', '1', 'Canned Soda', '[Dr. Pepper]', '$1.09 ']]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "soda_orders = [row for row in data if 'Canned Soda' == row[2] or 'Canned Soft Drink' == row[2]]\n", + "soda_orders[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['[Sprite]', '[Dr. Pepper]', '[Mountain Dew]', '[Sprite]', '[Dr. Pepper]']" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# We only want the choice_description (e.g. Sprite, Mountain Dew). This is the fourth item in the list.\n", + "# Since Python uses 0-based indexing, we get this by using row[3] as the first argument in our list comprehension:\n", + "sodas = [row[3] for row in data if 'Canned' in row[2]]\n", + "\n", + "# Let's look at the first five results\n", + "sodas[0:5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The results above may look like 5 lists inside of a larger list. Let's assume that's the case, and try to get the first Sprite:" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'['" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sodas[0][0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What is going on?\n", + "\n", + "The raw data for choice_description includues brackets (e.g. [Sprite]). We loaded this data in as a string, so while it looks like we have lists inside lists, the result is actually just one list. This is indicated by the quotes wrapping each item in the list, which means the list contains strings." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Sprite]\n", + "\n", + "8\n" + ] + } + ], + "source": [ + "# Print the first list element\n", + "print sodas[0]\n", + "\n", + "# Show that it's a string\n", + "print type(sodas[0])\n", + "\n", + "# It is 8 characters long, including the brackets\n", + "print len(sodas[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['Sprite', 'Dr. Pepper', 'Mountain Dew', 'Sprite', 'Dr. Pepper']" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Let's strip the brackets at the start and end of each soda name, using [1:-1] to remove the first and last characters\n", + "sodas = [row[3][1:-1] for row in data if 'Canned' in row[2]]\n", + "\n", + "# Let's look at the first five results\n", + "sodas[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Coca Cola',\n", + " 'Coke',\n", + " 'Diet Coke',\n", + " 'Diet Dr. Pepper',\n", + " 'Dr. Pepper',\n", + " 'Lemonade',\n", + " 'Mountain Dew',\n", + " 'Nestea',\n", + " 'Sprite'}" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Almost done - we just need to get rid of duplicate values\n", + "unique_sodas = set([row[3][1:-1] for row in data if 'Canned' in row[2]]) # Success in one line of code!\n", + "unique_sodas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just for reference, how would this look if we did not use a list comprehension?" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# build a list of all sodas\n", + "sodas = []\n", + "for row in data:\n", + " if 'Canned' in row[2]:\n", + " sodas.append(row[3][1:-1]) # strip the brackets\n", + "\n", + "# create a set of unique sodas\n", + "unique_sodas = set(sodas)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 5\n", + "\n", + "- Calculate the average number of toppings per burrito.\n", + "- **Note:** Let's ignore the 'quantity' column to simplify this task.\n", + "- **Hint:** Think carefully about the easiest way to count the number of toppings!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To calculate the average number of toppings, we simply need to divide the **total number of burritos** by the **total number of toppings**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the total number of burritos" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# keep a running total\n", + "burrito_count = 0\n", + "\n", + "# loop through the data, looking for lines containing 'Burrito'\n", + "for row in data:\n", + " if 'Burrito' in row[2]:\n", + " burrito_count = burrito_count + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Like many programming languages, Python allows you to use `x += 1` as a replacement for `x = x + 1`. Let's use that instead:" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# keep a running total\n", + "burrito_count = 0\n", + "\n", + "# loop through the data, looking for lines containing 'Burrito'\n", + "for row in data:\n", + " if 'Burrito' in row[2]:\n", + " burrito_count += 1 # this is the only line that changed" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1172" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "burrito_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The count is 1172, which seems reasonable given the total number of orders (1834)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the total number of toppings" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['4',\n", + " '1',\n", + " 'Steak Burrito',\n", + " '[Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]]',\n", + " '$11.75 ']" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Let's look at a single burrito order\n", + "data[7]" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'[Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]]'" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# There appear to be 8 toppings:\n", + "data[7][3]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With all of this formatting within the string, what's the easiest way to count the number of toppings?\n", + "\n", + "Start by asking yourself: How did you count the number of toppings? You probably looked for **commas**!" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "7" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Use the string method 'count' to count the number of commas\n", + "data[7][3].count(',')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "And of course, if there are 7 commas, that means there are 8 toppings.\n", + "\n", + "So, let's revise our original loop:" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1172\n", + "6323\n" + ] + } + ], + "source": [ + "# keep a running total of burritos and toppings\n", + "burrito_count = 0\n", + "topping_count = 0\n", + "\n", + "# calculate number of toppings by counting the commas and adding 1\n", + "for row in data:\n", + " if 'Burrito' in row[2]:\n", + " burrito_count += 1\n", + " topping_count += (row[3].count(',') + 1)\n", + "\n", + "print burrito_count\n", + "print topping_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculating the average number of toppings" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "5.4" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate the average topping count and round to 2 digits\n", + "round(topping_count / float(burrito_count), 2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just for reference, how would this look if we used list comprehensions?" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "5.4" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "burrito_count = sum(1 for row in data if 'Burrito' in row[2])\n", + "topping_count = sum([row[3].count(',') + 1 for row in data if 'Burrito' in row[2]])\n", + "round(topping_count / float(burrito_count), 2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 6\n", + "\n", + "- Create a dictionary in which the keys represent chip orders and the values represent the total number of orders.\n", + "- **Expected output:** {'Chips and Roasted Chili-Corn Salsa': 18, ... }\n", + "- **Note:** Please take the 'quantity' column into account!\n", + "- **Optional:** Learn how to use 'defaultdict' to simplify your code." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Building a dictionary of names" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's pretend I have a list of four names, and I want to make a dictionary in which the **key** is the name, and the **value** is the count of that name." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# This is my list of names\n", + "names = ['Ben', 'Victor', 'Laura', 'Victor']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "I want to create a dictionary that looks like this:\n", + "\n", + "`{'Ben':1, 'Laura':1, 'Victor':2}`\n", + "\n", + "How would I do that? Here's my first attempt:" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Ben': 1, 'Laura': 1, 'Victor': 1}" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create empty dictionary\n", + "name_count = {}\n", + "\n", + "# loop through list of names\n", + "for name in names:\n", + " # set the name as the key and 1 as the value\n", + " name_count[name] = 1\n", + "\n", + "name_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Well, that creates a dictionary, but it didn't count Victor twice.\n", + "\n", + "Let's try again:" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Ben'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0mname\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mnames\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;31m# increment the value\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 5\u001b[1;33m \u001b[0mname_count\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mname\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m+=\u001b[0m \u001b[1;36m1\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 6\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 7\u001b[0m \u001b[0mname_count\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mKeyError\u001b[0m: 'Ben'" + ] + } + ], + "source": [ + "name_count = {}\n", + "\n", + "for name in names:\n", + " # increment the value\n", + " name_count[name] += 1\n", + "\n", + "name_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "That doesn't work because the dictionary starts out empty, and you can't tell Python to \"increment the Ben value by 1\" unless the Ben value starts at 0.\n", + "\n", + "Let's try to fix that:" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Ben': 1, 'Laura': 1, 'Victor': 2}" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "name_count = {}\n", + "\n", + "for name in names:\n", + " # initially set every name to 0\n", + " name_count[name] = 0\n", + "\n", + "for name in names:\n", + " # increment the value\n", + " name_count[name] += 1\n", + "\n", + "name_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "By looping through the list twice, we fixed the problem. But that's kind of clunky.\n", + "\n", + "Here's what we really want to do:" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Ben': 1, 'Laura': 1, 'Victor': 2}" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "name_count = {}\n", + "\n", + "for name in names:\n", + " \n", + " # check if the key is already present in the dictionary\n", + " if name not in name_count:\n", + " name_count[name] = 1 # this is a new key, so create key/value pair\n", + " else:\n", + " name_count[name] += 1 # this is an existing key, so add to the value\n", + "\n", + "name_count" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Applying this technique to chip orders" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['order_id', 'quantity', 'item_name', 'choice_description', 'item_price']" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Reminder on the header\n", + "header" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[['1', '1', 'Chips and Fresh Tomato Salsa', 'NULL', '$2.39 '],\n", + " ['1', '1', 'Chips and Tomatillo-Green Chili Salsa', 'NULL', '$2.39 '],\n", + " ['3', '1', 'Side of Chips', 'NULL', '$1.69 '],\n", + " ['5', '1', 'Chips and Guacamole', 'NULL', '$4.45 '],\n", + " ['7', '1', 'Chips and Guacamole', 'NULL', '$4.45 ']]" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Find all the chip orders\n", + "chip_orders = [row for row in data if 'Chips' in row[2]]\n", + "\n", + "# Look at the first five\n", + "chip_orders[:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['1', '1', '1', '1', '1']" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The chip quantities are easily accessible\n", + "chip_quantities = [row[1] for row in data if 'Chips' in row[2]]\n", + "\n", + "# Look at the first five\n", + "chip_quantities[:5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's put this all together!" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Chips': 230,\n", + " 'Chips and Fresh Tomato Salsa': 130,\n", + " 'Chips and Guacamole': 506,\n", + " 'Chips and Mild Fresh Tomato Salsa': 1,\n", + " 'Chips and Roasted Chili Corn Salsa': 23,\n", + " 'Chips and Roasted Chili-Corn Salsa': 18,\n", + " 'Chips and Tomatillo Green Chili Salsa': 45,\n", + " 'Chips and Tomatillo Red Chili Salsa': 50,\n", + " 'Chips and Tomatillo-Green Chili Salsa': 33,\n", + " 'Chips and Tomatillo-Red Chili Salsa': 25,\n", + " 'Side of Chips': 110}" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# start with an empty dictionary\n", + "chips = {}\n", + "\n", + "# if chip order is not in dictionary, then add a new key/value pair\n", + "# if chip order is already in dictionary, then update the value for that key\n", + "for row in data:\n", + " if 'Chips' in row[2]:\n", + " if row[2] not in chips:\n", + " chips[row[2]] = int(row[1]) # this is a new key, so create key/value pair\n", + " else:\n", + " chips[row[2]] += int(row[1]) # this is an existing key, so add to the value\n", + "\n", + "chips" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using defaultdict instead" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[defaultdict](https://docs.python.org/2/library/collections.html) simplifies this task, because it saves you the trouble of checking whether a key already exists.\n", + "\n", + "Here's a simple example using the names data:" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "defaultdict(int, {'Ben': 1, 'Laura': 1, 'Victor': 2})" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# This is a tiny variation of our code that previously raised an error\n", + "\n", + "# Create an empty dictionary that will eventually contain integers (and thus the default value is 0)\n", + "from collections import defaultdict\n", + "name_count = defaultdict(int)\n", + "\n", + "# We no longer have to check if the key is present\n", + "for name in names:\n", + " name_count[name] += 1\n", + "\n", + "name_count" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Ben': 1, 'Laura': 1, 'Victor': 2}" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# It will print nicely if we convert it to a regular dictionary\n", + "dict(name_count)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Chips': 230,\n", + " 'Chips and Fresh Tomato Salsa': 130,\n", + " 'Chips and Guacamole': 506,\n", + " 'Chips and Mild Fresh Tomato Salsa': 1,\n", + " 'Chips and Roasted Chili Corn Salsa': 23,\n", + " 'Chips and Roasted Chili-Corn Salsa': 18,\n", + " 'Chips and Tomatillo Green Chili Salsa': 45,\n", + " 'Chips and Tomatillo Red Chili Salsa': 50,\n", + " 'Chips and Tomatillo-Green Chili Salsa': 33,\n", + " 'Chips and Tomatillo-Red Chili Salsa': 25,\n", + " 'Side of Chips': 110}" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Apply this to the chip orders\n", + "dchips = defaultdict(int)\n", + "\n", + "for row in data:\n", + " if 'Chips' in row[2]:\n", + " dchips[row[2]] += int(row[1])\n", + "\n", + "dict(dchips)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/05_pandas_merge.ipynb b/notebooks/05_pandas_merge.ipynb new file mode 100644 index 0000000..8047813 --- /dev/null +++ b/notebooks/05_pandas_merge.ipynb @@ -0,0 +1,771 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Joining (Merging) DataFrames" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using the [MovieLens 100k data](http://grouplens.org/datasets/movielens/), let's create two DataFrames:\n", + "\n", + "- **movies**: shows information about movies, namely a unique **movie_id** and its **title**\n", + "- **ratings**: shows the **rating** that a particular **user_id** gave to a particular **movie_id** at a particular **timestamp**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Movies" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + "
movie_idtitle
01Toy Story (1995)
12GoldenEye (1995)
23Four Rooms (1995)
34Get Shorty (1995)
45Copycat (1995)
\n", + "
" + ], + "text/plain": [ + " movie_id title\n", + "0 1 Toy Story (1995)\n", + "1 2 GoldenEye (1995)\n", + "2 3 Four Rooms (1995)\n", + "3 4 Get Shorty (1995)\n", + "4 5 Copycat (1995)" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "movie_url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/u.item'\n", + "movie_cols = ['movie_id', 'title']\n", + "movies = pd.read_table(movie_url, sep='|', header=None, names=movie_cols, usecols=[0, 1])\n", + "movies.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Ratings" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
user_idmovie_idratingtimestamp
01962423881250949
11863023891717742
2223771878887116
3244512880606923
41663461886397596
\n", + "
" + ], + "text/plain": [ + " user_id movie_id rating timestamp\n", + "0 196 242 3 881250949\n", + "1 186 302 3 891717742\n", + "2 22 377 1 878887116\n", + "3 244 51 2 880606923\n", + "4 166 346 1 886397596" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rating_url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/u.data'\n", + "rating_cols = ['user_id', 'movie_id', 'rating', 'timestamp']\n", + "ratings = pd.read_table(rating_url, sep='\\t', header=None, names=rating_cols)\n", + "ratings.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's pretend that you want to examine the ratings DataFrame, but you want to know the **title** of each movie rather than its **movie_id**. The best way to accomplish this objective is by \"joining\" (or \"merging\") the DataFrames using the Pandas `merge` function:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "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", + "
movie_idtitleuser_idratingtimestamp
01Toy Story (1995)3084887736532
11Toy Story (1995)2875875334088
21Toy Story (1995)1484877019411
31Toy Story (1995)2804891700426
41Toy Story (1995)663883601324
\n", + "
" + ], + "text/plain": [ + " movie_id title user_id rating timestamp\n", + "0 1 Toy Story (1995) 308 4 887736532\n", + "1 1 Toy Story (1995) 287 5 875334088\n", + "2 1 Toy Story (1995) 148 4 877019411\n", + "3 1 Toy Story (1995) 280 4 891700426\n", + "4 1 Toy Story (1995) 66 3 883601324" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "movie_ratings = pd.merge(movies, ratings)\n", + "movie_ratings.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here's what just happened:\n", + "\n", + "- Pandas noticed that movies and ratings had one column in common, namely **movie_id**. This is the \"key\" on which the DataFrames will be joined.\n", + "- The first **movie_id** in movies is 1. Thus, Pandas looked through every row in the ratings DataFrame, searching for a movie_id of 1. Every time it found such a row, it recorded the **user_id**, **rating**, and **timestamp** listed in that row. In this case, it found 452 matching rows.\n", + "- The second **movie_id** in movies is 2. Again, Pandas did a search of ratings and found 131 matching rows.\n", + "- This process was repeated for all of the remaining rows in movies.\n", + "\n", + "At the end of the process, the movie_ratings DataFrame is created, which contains the two columns from movies (**movie_id** and **title**) and the three other colums from ratings (**user_id**, **rating**, and **timestamp**).\n", + "\n", + "- **movie_id** 1 and its **title** are listed 452 times, next to the **user_id**, **rating**, and **timestamp** for each of the 452 matching ratings.\n", + "- **movie_id** 2 and its **title** are listed 131 times, next to the **user_id**, **rating**, and **timestamp** for each of the 131 matching ratings.\n", + "- And so on, for every movie in the dataset." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(1682, 2)\n", + "(100000, 4)\n", + "(100000, 5)\n" + ] + } + ], + "source": [ + "print movies.shape\n", + "print ratings.shape\n", + "print movie_ratings.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice the shapes of the three DataFrames:\n", + "\n", + "- There are 1682 rows in the movies DataFrame.\n", + "- There are 100000 rows in the ratings DataFrame.\n", + "- The `merge` function resulted in a movie_ratings DataFrame with 100000 rows, because every row from ratings matched a row from movies.\n", + "- The movie_ratings DataFrame has 5 columns, namely the 2 columns from movies, plus the 4 columns from ratings, minus the 1 column in common.\n", + "\n", + "By default, the `merge` function joins the DataFrames using all column names that are in common (**movie_id**, in this case). The [documentation](http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.merge.html) explains how you can override this behavior." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Four Types of Joins" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are actually four types of joins supported by the Pandas `merge` function. Here's how they are described by the documentation:\n", + "\n", + "- **inner:** use intersection of keys from both frames (SQL: inner join)\n", + "- **outer:** use union of keys from both frames (SQL: full outer join)\n", + "- **left:** use only keys from left frame (SQL: left outer join)\n", + "- **right:** use only keys from right frame (SQL: right outer join)\n", + "\n", + "The default is the \"inner join\", which was used when creating the movie_ratings DataFrame.\n", + "\n", + "It's easiest to understand the different types by looking at some simple examples:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example DataFrames A and B" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "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", + "
colornum
0green1
1yellow2
2red3
\n", + "
" + ], + "text/plain": [ + " color num\n", + "0 green 1\n", + "1 yellow 2\n", + "2 red 3" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "A = pd.DataFrame({'color': ['green', 'yellow', 'red'], 'num':[1, 2, 3]})\n", + "A" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "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", + "
colorsize
0greenS
1yellowM
2pinkL
\n", + "
" + ], + "text/plain": [ + " color size\n", + "0 green S\n", + "1 yellow M\n", + "2 pink L" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "B = pd.DataFrame({'color': ['green', 'yellow', 'pink'], 'size':['S', 'M', 'L']})\n", + "B" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Inner join\n", + "\n", + "Only include observations found in both A and B:" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
colornumsize
0green1S
1yellow2M
\n", + "
" + ], + "text/plain": [ + " color num size\n", + "0 green 1 S\n", + "1 yellow 2 M" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.merge(A, B, how='inner')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Outer join\n", + "\n", + "Include observations found in either A or B:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "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", + "
colornumsize
0green1S
1yellow2M
2red3NaN
3pinkNaNL
\n", + "
" + ], + "text/plain": [ + " color num size\n", + "0 green 1 S\n", + "1 yellow 2 M\n", + "2 red 3 NaN\n", + "3 pink NaN L" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.merge(A, B, how='outer')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Left join\n", + "\n", + "Include all observations found in A:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "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", + "
colornumsize
0green1S
1yellow2M
2red3NaN
\n", + "
" + ], + "text/plain": [ + " color num size\n", + "0 green 1 S\n", + "1 yellow 2 M\n", + "2 red 3 NaN" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.merge(A, B, how='left')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Right join\n", + "\n", + "Include all observations found in B:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "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", + "
colornumsize
0green1S
1yellow2M
2pinkNaNL
\n", + "
" + ], + "text/plain": [ + " color num size\n", + "0 green 1 S\n", + "1 yellow 2 M\n", + "2 pink NaN L" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.merge(A, B, how='right')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/05_pandas_visualization.ipynb b/notebooks/05_pandas_visualization.ipynb new file mode 100644 index 0000000..dc50a1d --- /dev/null +++ b/notebooks/05_pandas_visualization.ipynb @@ -0,0 +1,1609 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualization with Pandas (and Matplotlib)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# display plots in the notebook\n", + "%matplotlib inline\n", + "\n", + "# increase default figure and font sizes for easier viewing\n", + "plt.rcParams['figure.figsize'] = (8, 6)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read in the drinks data\n", + "drink_cols = ['country', 'beer', 'spirit', 'wine', 'liters', 'continent']\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/drinks.csv'\n", + "drinks = pd.read_csv(url, header=0, names=drink_cols, na_filter=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Histogram: show the distribution of a numerical variable" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 1, 1, 1, 1, 2, 3, 5, 5, 5, 5, 5,\n", + " 6, 6, 6, 6, 8, 8, 8, 9, 9, 9, 9, 12, 13,\n", + " 15, 15, 16, 16, 17, 18, 19, 19, 20, 20, 21, 21, 21,\n", + " 21, 22, 23, 25, 25, 25, 25, 26, 28, 31, 31, 31, 31,\n", + " 32, 32, 34, 36, 36, 36, 37, 42, 42, 43, 44, 45, 47,\n", + " 49, 51, 51, 52, 52, 52, 53, 56, 56, 57, 58, 60, 62,\n", + " 62, 63, 64, 69, 71, 76, 76, 77, 77, 77, 78, 79, 82,\n", + " 82, 85, 88, 89, 90, 92, 93, 93, 98, 99, 102, 105, 106,\n", + " 109, 111, 115, 120, 122, 124, 127, 128, 130, 133, 140, 142, 143,\n", + " 144, 147, 149, 149, 152, 157, 159, 162, 163, 167, 169, 171, 173,\n", + " 185, 188, 192, 193, 193, 194, 194, 196, 197, 199, 203, 206, 213,\n", + " 217, 219, 224, 224, 225, 230, 231, 233, 234, 236, 238, 240, 245,\n", + " 245, 247, 249, 251, 261, 263, 263, 270, 279, 281, 283, 284, 285,\n", + " 295, 297, 306, 313, 333, 343, 343, 346, 347, 361, 376], dtype=int64)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sort the beer column and mentally split it into 3 groups\n", + "drinks.beer.order().values" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with histogram\n", + "drinks.beer.plot(kind='hist', bins=3)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# try more bins\n", + "drinks.beer.plot(kind='hist', bins=20)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# add title and labels\n", + "drinks.beer.plot(kind='hist', bins=20, title='Histogram of Beer Servings')\n", + "plt.xlabel('Beer Servings')\n", + "plt.ylabel('Frequency')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhYAAAF2CAYAAAAyW9EUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XmYFNX1//H3YVjccUEHUGRRgoIoKhpBhMGIJhoN4r5E\nXEDAJS7fqD9FlKgRSYiAiCK4rzG4G3ejoyBKBFFxAzWAgMjiBgqynt8ft0ebpgdmmOquXj6v56ln\npqtuVZ2uEDjee+4tc3dEREREolAr7gBERESkcCixEBERkcgosRAREZHIKLEQERGRyCixEBERkcgo\nsRAREZHIKLEQERGRyGQ9sTCzc8xshpktM7NJZtZpA+3bmtlrZrbUzOaY2YA0bbqY2eTENT83sz5p\n2mxlZjeZ2Vwz+8nMPjWz46L8biIiIsWudjZvZmYnAMOAfsB44FzgOTNr7e6z07TfCngJKAfaA7sD\nd5nZj+5+Y6JNc+BZ4HbgZOAg4BYzW+jujyXa1ElcZxFwHDAH2AlYkblvKyIiUnwsmytvmtlE4F13\n75O0bzrwiLtfkaZ9P2AQUOruyxP7+gP93H2nxOfBQHd3b5V03higjbt3THw+G7gU2M3dV2XsC4qI\niBS5rA2FmFldYB/gxZRDLwIdKzmtAzCuIqlIat/YzJomtUl3zfZmVpL43B2YAIw0s3lm9qGZXW1m\nWe2xERERKXTZrLFoAJQA81P2LwAaVnJOwzTt5ycdAyitpE3txD0BWhCGQEqAw4EBQF9Cb4iIiIhE\nJNf/iz2qcZpahGSjt4exnylmth0wFLgkonuIiIgUvWwmFouA1YQehmSlwLxKzvmKdXszSpOOra/N\nqsQ9Ab4EVvjaBSWfAJuZ2Xbu/nXFTjPT615FRKTouLtFcZ2sDYW4+wpgMnBoyqFuhPqHdN4EDjKz\neint57r7rKQ23dJc8213X534/AbQ0sySH9qvgB+Tk4qkWLVleLv66qtjj6HQNz1jPeNC2fScM79F\nKdvrWNwInG5mZ5nZ7mY2nNDbMArAzAaZ2ctJ7R8ElgJ3m1kbM+sBXJa4ToVRwI5mNjRxzV5AT2BI\nUptbgW2B4WbWyswOAwYCt2Tma4qIiBSnrNZYuPu/ErUNVwKNgKnA4f7LGhYNCYWWFe0Xm1k3YCQw\nCfgGGOLuQ5PazDSzwwn1Ev2AucD57v54Ups5ZnYoISGZQhg+uQO4LmNfVkREpAhlvXjT3W8l9CCk\nO3ZGmn0fAF02cM3XgX030GYicGDVI5VMKisrizuEgqdnnHl6xtmh55xfsrpAVj4wM9czERGRYmJm\neL4Vb4qIiEjhU2IhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIi\nkVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKR\nUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFR\nYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFi\nISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikVFiISIiIpFRYiEiIiKRUWIh\nIiIikVFiISIiIpFRYiEiIiKRUWIhIiIikYklsTCzc8xshpktM7NJZtZpA+3bmtlrZrbUzOaY2YA0\nbbqY2eTENT83sz4px083szUp22ozqxv19xMRESlWWU8szOwEYBhwHdAOmAA8Z2ZNKmm/FfASMA9o\nD1wAXGJmFye1aQ48C4xPXHMQMMLMeqRcbilQCjRMbI3cfUV0325da9bAk0/C8cfDLrvA1ltDixZw\n8snw1FPhuIiISKEwd8/uDc0mAu+6e5+kfdOBR9z9ijTt+xEShVJ3X57Y1x/o5+47JT4PBrq7e6uk\n88YAbdy9Y+Lz6cAId99yA/F5VM/k3Xehd+/w+9lnQ+fOsP32sHAhvPYajBkDP/0Eo0bBgQdGcksR\nEZFqMzPc3aK4VlZ7LBLDDvsAL6YcehHoWMlpHYBxFUlFUvvGZtY0qU26a7Y3s5KkfZua2Uwzm21m\nT5tZu436IlXwwAPQrRucdx5MnBgSjFatYNttw8+zz4b//heuugqOOw6uvx6ynOOJiIhELttDIQ2A\nEmB+yv4FhKGJdBqmaT8/6RiE4Y10bWon7gnwCXAGcBRwEvAT8IaZ7VqN+Kvkjjvg//0/KC+Hnj2h\nViVP2SwkFW+/HYZLzjwTVq+OOhoREZHsyYdZIZH8d7y7v+Xu97n7++4+HjgB+Aw4P4rrV3jyydAL\n8cor0KZN1c7ZccfQ/osvQnKhngsREclXtbN8v0XAakIPQ7JSQnFmOl+xbm9GadKx9bVZlbjnOtx9\n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\nrkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with density plot (smooth version of a histogram)\n", + "drinks.beer.plot(kind='density', xlim=(0, 500))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Scatter Plot: show the relationship between two numerical variables" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0, 0],\n", + " [ 0, 74],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 0, 0],\n", + " [ 1, 7],\n", + " [ 1, 1],\n", + " [ 1, 4],\n", + " [ 1, 1],\n", + " [ 2, 0],\n", + " [ 3, 1],\n", + " [ 5, 0],\n", + " [ 5, 0],\n", + " [ 5, 16],\n", + " [ 5, 1],\n", + " [ 5, 0],\n", + " [ 6, 1],\n", + " [ 6, 0],\n", + " [ 6, 1],\n", + " [ 6, 9],\n", + " [ 8, 0],\n", + " [ 8, 1],\n", + " [ 8, 1],\n", + " [ 9, 2],\n", + " [ 9, 0],\n", + " [ 9, 7],\n", + " [ 9, 0],\n", + " [ 12, 10],\n", + " [ 13, 0],\n", + " [ 15, 3],\n", + " [ 15, 1],\n", + " [ 16, 5],\n", + " [ 16, 0],\n", + " [ 17, 1],\n", + " [ 18, 0],\n", + " [ 19, 32],\n", + " [ 19, 2],\n", + " [ 20, 0],\n", + " [ 20, 31],\n", + " [ 21, 11],\n", + " [ 21, 11],\n", + " [ 21, 5],\n", + " [ 21, 1],\n", + " [ 22, 1],\n", + " [ 23, 0],\n", + " [ 25, 8],\n", + " [ 25, 14],\n", + " [ 25, 2],\n", + " [ 25, 7],\n", + " [ 26, 4],\n", + " [ 28, 21],\n", + " [ 31, 128],\n", + " [ 31, 6],\n", + " [ 31, 10],\n", + " [ 31, 1],\n", + " [ 32, 4],\n", + " [ 32, 1],\n", + " [ 34, 13],\n", + " [ 36, 19],\n", + " [ 36, 5],\n", + " [ 36, 1],\n", + " [ 37, 7],\n", + " [ 42, 2],\n", + " [ 42, 7],\n", + " [ 43, 0],\n", + " [ 44, 1],\n", + " [ 45, 0],\n", + " [ 47, 5],\n", + " [ 49, 8],\n", + " [ 51, 20],\n", + " [ 51, 7],\n", + " [ 52, 2],\n", + " [ 52, 149],\n", + " [ 52, 26],\n", + " [ 53, 2],\n", + " [ 56, 140],\n", + " [ 56, 1],\n", + " [ 57, 1],\n", + " [ 58, 2],\n", + " [ 60, 11],\n", + " [ 62, 18],\n", + " [ 62, 123],\n", + " [ 63, 9],\n", + " [ 64, 4],\n", + " [ 69, 2],\n", + " [ 71, 1],\n", + " [ 76, 8],\n", + " [ 76, 9],\n", + " [ 77, 8],\n", + " [ 77, 16],\n", + " [ 77, 1],\n", + " [ 78, 1],\n", + " [ 79, 8],\n", + " [ 82, 9],\n", + " [ 82, 0],\n", + " [ 85, 237],\n", + " [ 88, 0],\n", + " [ 89, 54],\n", + " [ 90, 2],\n", + " [ 92, 233],\n", + " [ 93, 5],\n", + " [ 93, 1],\n", + " [ 98, 18],\n", + " [ 99, 1],\n", + " [102, 45],\n", + " [105, 24],\n", + " [106, 86],\n", + " [109, 18],\n", + " [111, 1],\n", + " [115, 220],\n", + " [120, 11],\n", + " [122, 51],\n", + " [124, 12],\n", + " [127, 370],\n", + " [128, 7],\n", + " [130, 172],\n", + " [133, 218],\n", + " [140, 9],\n", + " [142, 42],\n", + " [143, 36],\n", + " [144, 16],\n", + " [147, 4],\n", + " [149, 120],\n", + " [149, 11],\n", + " [152, 186],\n", + " [157, 51],\n", + " [159, 3],\n", + " [162, 3],\n", + " [163, 21],\n", + " [167, 8],\n", + " [169, 129],\n", + " [171, 71],\n", + " [173, 35],\n", + " [185, 280],\n", + " [188, 7],\n", + " [192, 113],\n", + " [193, 9],\n", + " [193, 221],\n", + " [194, 339],\n", + " [194, 32],\n", + " [196, 116],\n", + " [197, 7],\n", + " [199, 28],\n", + " [203, 175],\n", + " [206, 45],\n", + " [213, 74],\n", + " [217, 45],\n", + " [219, 195],\n", + " [224, 59],\n", + " [224, 278],\n", + " [225, 81],\n", + " [230, 254],\n", + " [231, 94],\n", + " [233, 78],\n", + " [234, 185],\n", + " [236, 271],\n", + " [238, 5],\n", + " [240, 100],\n", + " [245, 312],\n", + " [245, 16],\n", + " [247, 73],\n", + " [249, 84],\n", + " [251, 190],\n", + " [261, 212],\n", + " [263, 97],\n", + " [263, 8],\n", + " [270, 276],\n", + " [279, 191],\n", + " [281, 62],\n", + " [283, 127],\n", + " [284, 112],\n", + " [285, 18],\n", + " [295, 212],\n", + " [297, 167],\n", + " [306, 23],\n", + " [313, 165],\n", + " [333, 3],\n", + " [343, 56],\n", + " [343, 56],\n", + " [346, 175],\n", + " [347, 59],\n", + " [361, 134],\n", + " [376, 1]], dtype=int64)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# select the beer and wine columns and sort by beer\n", + "drinks[['beer', 'wine']].sort('beer').values" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with scatter plot\n", + "drinks.plot(kind='scatter', x='beer', y='wine')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# add transparency\n", + "drinks.plot(kind='scatter', x='beer', y='wine', alpha=0.3)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# vary point color by spirit servings\n", + "drinks.plot(kind='scatter', x='beer', y='wine', c='spirit', colormap='Blues')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter matrix of three numerical columns\n", + "pd.scatter_matrix(drinks[['beer', 'spirit', 'wine']])" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmEAAAHyCAYAAACj7xk7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XuYXNV55/vv26oSUgO6IKRGMsGJbGEuEh1RGONY7XQ7\nSOPD84RDHPxMgpwZHZ/MwZAZK7ZlJyTDsTQ5OjMHOCTgSXDCicM8o4mJY8fGCbHdunRFEgMYWnKr\nuRiBJQuMmhbWFUm0ukq1zh9V1aouVXfXZde+1e/zPHq0a1f1rlVVa6/17rXWXsucc4iIiIiIv9qC\nToCIiIhIK1IQJiIiIhIABWEiIiIiAVAQJiIiIhIABWEiIiIiAVAQJiIiIhKARNAJqIeZaV4NERER\niQznnJXvi2QQBqD5zSTuzEz5XGJP+Vxagdl58RcQ4SBMpJVkMhn6+nYA0NPTRTKZDDhFIt5SHpdW\npCBMJAL6+nbw2GMHC492sGrVxwJNj4jXlMelFWlgvoiIiEgALIp98WbmophukVqUjpVRV43EVTGf\nK49LnBXy+XkDwxSEiYSUBixLK1A+l1YwURCmMWEiEjlqNZG4UZ5uTQrCRCRyNIhb4kZ5ujX5NjDf\nzK41s6fMbLuZPVLYd9zM+sxsm5nNKexbXXjdP5rZxX6lT0RERMRPvo0JM7OEcy5b2P4a8BXgYedc\nV8lrksBWoBu4HbjCOfdAhWNpTJjEnsbKTExdN/GhfJ6nPB1voRqYb2ZfB/4Y+CHwEvCUc+4eM7sG\n+D3n3O+Z2SXAo86536zw9wrCJPZUOUkrUD6XVjBREObrPGFmdquZDQIjzrl9wPudcx8F5prZrwOz\ngROFl58A5viZPhGpXSaTobd3G72928hkMkEnR6QqyrcSBr4OzHfOfRf4rpk9bGYrnXObC099B1gO\nPAHMKuybBRyb6Fjr168f2+7u7qa7u7sZSRbxTTqdJp1OB52Mmk02oFhdLBJWcR8Ir3MvGnwLwsxs\nunNutPDwBDDTzNqcczlgBTAA7AWWmlkbcDPw9ETHKwZhTz75JH/5l5v4y7/c1FD6pk2DL3/5D1iy\nZElDxxGpV/nFxIYNG4JLjEfCXtHVWlGpYouH06dP8/jj3+SFF05w1VXdQSenKcJ+7kmeny1hHzez\nzwMG7Ae+DTxnZieBfcC9zjlnZo8CO4AjwB1THfRHP/oRf/d3B3HuEw0lbubM/8JnPrNGQZhIjXp6\nusifssXt6Ki1olLFFg8PPfQIW7dexsjIXG64YRc9Pf826CRJi/ItCCt2RZbtTlV43Sagxmat5cDv\n1ps0AKZPf6yhvxdpVclkcsJgJMoBmsSdMWPGDJYseV8sWzR17kWDJmsVkaaZLEALg1orKlVs8bB2\n7V3AIyXb8RP2c0/yFISJSEOiPE6q1opKFVtz+ZWX2tvbueeeLzTl2CK1UBAmIg3ROCnxivKStBpf\n5wkTERERkTy1hIlIQzROSryivCStRkGYiDRE46TEK8pL0mrUHSkiIiISAAVhIiIiIgFQd6SINFWU\np7AQiQKdY9GlIExEmkrTDog0l86x6FJ3pIiIiEgAfGsJM7Nrgb8CzgIvOufuMrMvArcCB4A1zrms\nma0G7qawgLdz7h2/0ijSqprZnaFpB8Rr6n4bT+dYdPnZHfmKc+4jAGb2NTP7INDtnOsysy8Bt5nZ\nE8CdQBdwe2H7AR/TKNKSmtmdoWkHxGvqfhtP51h0+dYd6ZzLljycCXwQSBcebwE+DLwfGHTO5Ur2\niYiIiMSOrwPzzexWYCPQDxwl3zUJcAKYU/h3omyfiDRZs7sz1H0kXlL32/l0jkWTr0GYc+67wHfN\n7GHgFHB54alZwDHgeGG7dF9F69evB2D79u04t6hJKRbxTzqdJp1OB/Le1XRnNFLIq/tIvKTut/M1\n6xxTcNdcfg7Mn+6cGy08LLZy/SpwP3Az8DSwF1hqZm0l+yoqBmEbN24knT6Nc81Lu4gfuru76e7u\nHnu8YcOG4BJTgQIpkdaj8765/GwJ+7iZfR4wYD/wZeAyM9tB/u7IBwt3Rz5Kvp35CHCHj+kTkSZR\n95FIc+kciybfgrBiV2TZ7vsK/0pftwnY5Fe6RKQ6jRTy6j4Saa5mnWMK7ppLM+aLSFWmKuSbNXZE\nY1KkKIp5IYppLqULqOZSECYinqhl7EgtFVMzx6REvYJsNc3IC83OA5OlWflPFISJSEXNrCDCMtg3\nLOmQ4ASZB4J6bwV/4aEgTEQqqrWCaNbYEY1JkaIo5oUwplkXH+GhIExEPFHL2JFaKqZmjkkJYwUp\nE2tGXmh2Hpgszcp/oiBMRCpqZgURlsG+YUmHBCfIPBDUeyv4Cw8FYSItqJoxIQpQROIpCud2q4xb\nUxAm0oI0JkREwqxVyigFYSLSFFNdybbKla7UJyr5IyrplHBSECbSgqYaE+JFxTLVlWyrXOlKfaKS\nP6KSznoFFWS2yrg1BWEiLWiqMSFxr1hEpDpBlQVRGLfmBd+CMDP7EPAgkAOec8593syOA7sAB3zC\nOXfMzFYDd1NYwNs5945faRQR70x1JdsqV7pSn6jkj6ikU8LJz5awnwI9zrlRM9tkZkuBPc65nuIL\nzCwJ3Al0AbcXth/wMY0igjcVy1RXsq1ypSv1iUr+iEo666Ugs7l8C8Kcc8MlDzPAWeBqM9sOPOWc\nuwdYAgw653JmtgV41K/0icg5k1Usfo8R0cBnCYM45cNaPkvcg8yg+T4mzMyuA+Y75142s/cXuiC/\nama/DvwcOFF46Qlgjt/pE5HJ+T1GROPTxotTMBBWlb7jOOXDOH2WqPM1CDOzS4CvAJ8EcM4dKzz1\nHWA58AQwq7BvFnCs/BhF69evB2D79u04t6g5CRbxUTqdJp1OB50M35VWeCtW3MTOnc8ACjAm0qoV\nqJ/BZ6t+x3EThQsWPwfmJ4BNwDrn3CEzawfOOOfOAiuAAWAvsNTM2oCbgacnOl4xCNu4cSPp9Gmc\na/IHEGmy7u5uuru7xx5v2LAhuMRMwusxIqUVXn//IwwOdhSeyVd+GpMiEHxgFKd8GKfPMpmg80w1\n/GwJ+yRwA3CfmQHcA/y5mZ0E9gH3OuecmT1KPnccAe7wMX0iUoV6xog0ckWqMSnjtUoFGqRK3/FU\n+TAKrS5FOqfCw8+B+V8Hvl62O1XhdZvIt5iJSACaUZlUuiItvk82m+VTn1pAIpFgxYpPjOuOlPPF\nvQKdKP/5GXzW8x1HodUlCrwsf6JwwaLJWkVkXMGXzWbZtOlQ4ZnmVSalldaaNYvG3sfPyitKrRet\nYqJgJojgM275Iwqfx8tgNgoXLArCRGRcwbds2TDQMfkf1CisV6SNFPhRqNCkMVPlj/KbSiDcrbhq\nrQsfBWEiMk5n5zJSqXzRUF6Z1Bt4VLoiDWtgVi1VaM0RpXwxPg88ozxQhanKkCj9/l5QECYi5xV8\nxYIxk8nQ27ttbH/cugparcCPgjDki6Ji/shms2SzWXp7t0W61TMM+X2qMiRMv78fFISJyIQFX7HA\nzOVy9Pc/DEAuN4+2tvAXHdW02jVS4IehQpP61ZI/enu3VQwcopYHohbgtEKXf/hLUhEJ3PDwIXp7\nj9DRcRWdnW+TSi0PfaXT7O7CqFVoMp4X+UN5oHa1BK6t0OU/ZRBmZtOB14Ffc8692PwkiYhfqh2f\n0d8/zMDAlbS1tZFKLa+7MGyFK1sJFy/yXNRavKoVxPmowHW8KYMw59yomWUBzUkvEjPVjs8ojgeD\nxiohP69s41pxSm0mynO15I+4Bg5hb2lqhXO42u7IrwD3mNmnnXOZZiZIRMKn3kqo/ErbT3GtOMUb\nk+UPtdiGQyucw9UGYSuAXwV+ZmYvAKdLnnPOuVs9T5mINF2zrzTLr7Rb4cpWwqWePBf2FiKv6HwM\nXrVB2GHgHyZ4Tt2UIhHl95VmK1zZSrgoz01M303wqgrCnHNrGn0jM/sQ8CCQA55zzn3ezL4I3Aoc\nANY457Jmthq4m8IC3s65dxp9bxEJRhyutNU1FW31/H5xyLcSDVVPUWFmRn7B7fcBTzrnTprZRcCZ\nKseJ/RToKQz032RmHwW6nXNdZvYl4DYzewK4E+gCbi9sP1DbRxIRLzUShMThSrtVuqbiqp7fLw75\nVhcP0VBVEGZmHcATwI3kux+XACeB/xcYAdZOdQzn3HDJwwxwLZAuPN4CrAZeBAadczkz2wI8WtWn\nEJGmURAijWpWQKBAY2I6b6Oh2pawPwUOAfPIzxlW9PfAf63lDc3sOmA+cIx81yTACWBO4d+Jsn0i\n0qLCUMk2s2sqDJ/PD7UGBNV+L9UcNyxdi63yW0ttqg3Cfo38ZK1H872SY/YBV1T7ZmZ2CfnpLj4J\n3ABcXnhqFvmg7Hhhu3RfRevXrwdg+/btOLeo2iSIhFY6nSadTgeahkoVRZCVmNdX8/VUhM3smlJr\nRWW1fi+5XJb+/t3A+b9rWLoW/f6twxJ8Ro3fwXK1QdhM8l2I5S4l3x05JTNLAJuAdc65Q2b2PPkB\n+PcDNwNPA3uBpWbWVrKvomIQtnHjRtLp0zjdoykR193dTXd399jjDRs21PT3XhQelSoKPyux0s+w\nYsVN9PfvZmjI0dGxwJPjK+gJRj0BQS6XY3j4EP39wxPm53MrOuxmYGA+g4MHCdvvWszT/f27yeXm\n09bW5sv7Nuu8jXuLnt9lRLVB2A5gDXBPcUchqPoDYGuVxyi2ft1XaE27B9huZjvI3x35YOHuyEcL\n73cEuKPKY4u0vDgEGKWfob//EQYG5gF76ew0enp+u+7jBlURTqVVWitqDQhWrLiJxx9fx+HDJ9i9\nu5u+vsr5ufS4+QAsfIp5OpebF5l1VycTh3ImTKoNwr5IPmD6IHAB+TsWlwKzgY9UcwDn3NeBr5ft\nfga4r+x1m8i3mImIz8IWFLS1JVi48BpSqUUNXXGHtSIMS1dZ2Ozc+Qz79y/m+PF3efvtfcDiSV8f\ntnxbSVtboqF1V8UffuelaucJe8nMlgF3AWeAGcA3gD93zg01MX0iUiUvCo96ggIvuydKP8OKFZ9g\n585nSvY3ThVhdOS7oA+xalV7pNd2jEKAWAu/P4/f3Z9+56Wq5wkrBFv/ZxPTIiINCKoi8rJ7ovwz\nePV54lYRxt253+vyyI87CnOAWA+/P0/cuz9rmaz1OvKTpy4GPu2cGzKz3wB+6pzb3awEiog0Km4V\nYdzp95JWUe1krauAfwS+R366ipmFp94H/FvgtqakTkRCT61MItIscS9fqm0J+7+Azzvn/tzMStdy\nTANf8DxVItIwv8ZSqNVCwiLu0ye0oriXL9UGYdcCT1bYfwS4xLvkiIhX4j6WohUoqKiNF3le37n4\nqdog7Aj52e1/WrZ/OfAzLxMkIt7LZrP09m4DqqtYVBGFQysH0kHlQb+/c51rra3aIOxvyU+y+q8L\nj5Nm1k1+Ae+/aUbCRKQxpWMpstlsTRVLK1f+Eg715MEojh/Sudbaqg3C7iUfbP0UMOClwv//A9jY\nlJSJSENKx1IUW8FqUc2yMX5p1daCKAYVjSj9nbPZ7JSvacY6ka32nUuwqp2sdRRYbWb3AisKu592\nzr3atJSJiGdqrVh6erro73+YH/zgMN///hzgYdat+2xgwU+rthbEfVByuc2b+7j//j0AfO5z17Bm\nzSJgfJ5tdl7w+ztX0Nfaqp2iwoDfBz4PvKew+00z+1Pgz5xzuSqPs5D8AP+rgQudczkzOw7sAhzw\nCefcMTNbTX5x7yPAHc65dyY8qIgA3rYQJJNJUqnl9PbuYv/+d+ntPU4q1TrBjwRjYGCQffveBeDF\nF1/mnnu8u/k+rK2prRZoy3jVdkf+P8D/AdxPfr1HgJvId1MuJL+2ZDWOAB8Dvl2yb49zrqf4wMyS\n5CeF7QJuL2w/UOXxRVqW1y0E+daw3fT2vktHx5WNJ7DBtKi1IP46O5exeHG6sP2hiq+pNy+0amuq\nhFu1QdjvAv/OOff3Jfu2mtkrwF9RZRDmnDsDnMk3rI252sy2A0855+4BlgCDhVayLcCjVaZRROow\nUQtBMplk3brPkkoFH/yotaA1rFzZQyKRr5Ymym/KC/ULa2tgK6t62SJgoMK+QfID9Bvx/kIX5FfN\n7NeBnwMnCs+dAOY0eHyRltCMFoLyCq9SIa6CXbxSTX6rVxhaU4M+V9QaGD7VBmH/Hfg9YG3Z/ruA\nTY0kwDl3rLD5HfLzjj0BzCrsmwUcq/R3Iq2i2oLbjxaCSoW4CnbxUvkdkps2HSo84+3i8EHQuSLl\nJgzCzOwr5AfLAyTJ3x35r8iPCTPgQ8Ai6g/CzMzagTPOubPk77ocAPYCS82sDbgZeLrSH69fvx6A\n7du349yiOpMgEh7pdJp0On3e/mYW3JlMhmw2y7Jlw3R2LovUeKugWxWkOUrz+7Jlw0AHUN2Ew8oT\nkwtDa6CMN1lL2DLOBWGQv4MR4L2F/98q/Lu62jczswTwfaCz8P8fA4+Y2UlgH3Cvc86Z2aPkc8oR\n4I5KxyoGYRs3biSdPo1zlV4lEh3d3d10d3ePPd6wYUPT37Ovb0ehpaGDVCoxZaVVqRAPqmBXq0Lj\nwh60dHYuI5XKV1PVTDhcmiey2b5x48vC8NmCDoLC0Boo400YhDnnur1+M+dclnzrVqlUhddtosFu\nTpG4mKjgDqICrVSIq2CPrjAGssX8XjpZa09P11her9bAwCCDgx2FR+H4bDpXpFwtA/NFJAATFdxe\nVKBBX5k3Isppl4kV83tv77Zx+bua33v8Ul0LGBw8VPF1ImGhIEykhTXrytyPVjq1KjQuSoFsNb93\n6WsymQyJRDQ+WxSEves6qhSEiURUmCvQSq10KsTDJ8yBbKP5O8yfrZmadZ6Fses6DhSEiURU1CqZ\nWgrxWioSBXfxo9+0fgqWglNPvlUQJiKea7QVo5aKRJVO/Og3DZ8wt7yHRT35VkGYiHiuUitdMwrx\nTCZDf/9uhoYcHR0LPDlmNe+pVhr/VDM/WDVa5XdrVrAUtZb3qFAQJiK+qKUQr7Yi6evbwcDAPGAv\nnZ1GT89v15W2WipotdI0X+k0Fbt2/YitW48VFpGv//tuld9NwVJw6gmAFYSJSOjUUpG0tSVYuPAa\nUqlFdbdutEoFHRWl01Rs3drGvn0zyS+mckXQSROZUD0BsIIwkZhqhe6XIMapaGyMv/LdzIdYtaq9\noe9bv1vjWqFM8ZuCMJEIqKfwa4XWHa+6XmqpoNXd0xyV8vi53+Xyhit9/W6Na4UyxW8KwkQiQIVf\ncxUraF3pB6dSHi8PnPT7SNz4GoSZ2ULgSfKLfl/onMuZ2ReBW4EDwBrnXNbMVgN3U1jA2zn3jp/p\nFImq0kpqxYqbgGcAdb9US8FuuAX9+7R6EKguXe/53RJ2BPgY8G0AM1sAdDvnuszsS8BtZvYEcCfQ\nBdxe2H7Aj8R1dXmTqZxznhxHpKjaRbzHV1LPKIiQyKi1gvdq6opaBB0EBk1dut7zNQhzzp0BzpgZ\ngAE3AOnC01uA1cCLwGChlWwL8KifaYRGAyjzJBUipapdxDsKwtyaoCv94FRTwY9foDtbVUAU5vwm\nEvSYsNnAicL2CWBO4V/5vkgpBJkNU4ua1Kp0fqViS0HYKp4wtybUc6WvSt4bUVjzUEG6eC3IIMwB\nx4HLC49nAccK+2aV7YsYL4IntajJ1MorhdL5lcIa6MRNmIPKKKnmeyx9zac+tYA1axYB/gVE6o4T\nrwUZhBnwPPkB+PcDNwNPk5+Rb6mZtZXsO8/69esB2L59O84t8iG5Is2VTqdJp9M1/U0UK4XSwHHF\nipt8H9cTVq3eopbNZhkaegvnHD/8YT7Qmux7SCQSVeV9tV5JmJmfXV5mlgC+D1wP9AN/DHQDv874\nuyM/BdzFBHdHmpkrpnvjxo3ce+9pnNvYUNpmz17B8eNP4c2YMG9awtQd2drM8nkgk8mweXMfAwOD\ndHYuY+XKnikr6KhU6KUtdmvWLIpcQAnefddx+C7qUczn//zPvdx331YOHPgxF110Iddeu4pPf/oK\nTVEREfptJlfI5+d1cfk9MD9LvnWr1A+B+8petwnY5Fe6RMJs8+Y+/vAPv83w8CVcffVAVS0AYW8h\nKxbY/f27yeXm09bWFnSS6hb27zpKjhw5wdGjSzh1Ci699Pxlirz4rhUsNIe65esT9MB8EZnCwMAg\nb711hlOnshw9Wt8QybBVPMUCO5ebR2fn26RSy1u+q0jdZgDvMH16OwsXXsCqVfOa8j0oWGieXC7L\n8PBe+vuHQ1HORIGCMJGQ6+xcxtVXH+Lo0Tf55Cevm7JiqhRwNaviaTS4a2tLkEotV0WIWtQA5s59\nD5DP52vX3hWqCweZXE9PF/39D9PbewkDA/Pp61OAWw0FYSIht3JlD4lE/lStpjLy80q/3vfyo9Un\nbK1/MrW2tvnMmzef66+/jnR6J/ffvwfID9q/5ZZVnryHWhybI5lMkkotZ3Dw4NQvljEKwkRCrt4W\nklwuR3//biDYJYwqBUPNbPUpHW82MDCPtrYEsGNsRYHSdEh4ZLNZDh/+SWH7GvbseYEXX/wxALt2\n5Vi5sseT308tjs2jALd2CsJEQq7WFp1iQVgMQvJXps1ZwqiaQtfvrtDi+w0NOWAvCxde09R0iDf2\n7HmB4eELx7ZHR0c5dWoaAKOjo/r9IkABbu0UhImEXK2VT2lB2OyugSAL3am+l46OBXR2GqnUonGt\nYBJO06ZNY8aM2WPbBw78jLNnLwbgwIGfsWJFkKkTaQ4FYVIVLcUUPX51DUzVUudnF0UmkyGbzbJs\n2XBhTrXfHkuPukrC7e67f5cf//gPeOutt/jABz7N6Ogos2a9CsCSJVfp95NYUhAmNdDi5kGot/Lx\nq5VqqhapZqWj0vfS17eDTZsOAR2kUolxAaG6SsLt2Wf7ef3197Nv33v4ylee4XOfW8HnPjcdgLVr\n79LvJ7GkIEwk5CarfFr5DkBVyvHk3FkOH36dF198mXXrPttSeVpaj4IwkZCbLNCqZ7DyVIFbvTcC\nnNsOTpjSIrXp6ekim83yzW9+h337Otm9ex4PPPDw2ES+yWQyNhcdcfkc0jgFYSEWx3FYcfxMzVYp\n0Cpf9gcYm45iqkJ9qsCtkRsBghamtEhtkskkK1f2MDAwyP79jkOH3uYHP/g5vb1b6O/fzbp1n43N\nHZJx+RzSuMCDMDP7ReBZ4CXgjHPu42b2ReBWShb1Di6FQfJmIfBwieNn8lcmk+GBBx6mt/cw8+cv\nZvnytwFKpqM4V6jXcsUdp/UcJXpOnz7Nv//363juuSxz587h/e8/yU9+cjH798+kt9eRSrXO3a1q\nKWsdgQdhBb3Oud8BMLMFQLdzrsvMvgTcBnwz0NSJBKi8i62vbwe9vY59+2YC+0ilbgYqT0dR6Yp7\noi674muz2dlcdNEzLFnyPlas+EQTP5nIOQ899Aj/9E8zOXHCsWjRQdatu4MXX3yZ3l5HR8cCID7d\nzVN9DrWUtY6wBGE9ZrYd+AfgFSBd2L8FWI2CMGlhyWRyLPjq69tBNpstVEqHWLWqnZ6eLjKZDP39\njwBMGThN1WV36NCrvPLKXPbvd3R27pxyuRhdtddG39dkHLncaU6deovduwf44AdTdHZCIpEY+66K\n58LmzX3A+OeiotZuc+WZ+ApDEHYQWAKMAk8AFwOHCs+dAOYElC6RUDjX/ZhvEfg3/+YyPv3py4HL\nxy3QPTjYAcDOnedmx6+l5aD42scf/59s3XoZx469y8DA4JRBmK7aa6Pvq7K1a+8inb6DZ5+9iFzu\nPfzDP7xDOr2HVats3F2S51ZEeAs4UlgRIV7fY6XWb+WZeAo8CHPOjRa3zeyfyAde7ynsmgUcq/R3\n69evB2D79u04t6i5iRTxQTqdJp1On7c/3/14uND9eAi4bOy5qcZx1XLFXXxtNptl//58Ojo7P1Tn\npxGpTTKZpKvrVzh4cDfvvPMWJ07M5tixGfT2jpBKtVbgoRtMWkfgQZiZXeScO1l4+BHgK8AdwP3A\nzcDTlf6uGIRt3LiRdPo0LXSznMRUd3c33d3dY483bNgwtj1//mIOH97K9Onv8txzGV5++T20tbXR\n3/8Ig4Md5HLz6Ox8e+x2/lLVdGWUvqa7ewWJRGLs9VOJyzgdv+j7qux739vM3/3dUd58czoXXzwd\n2M+0aUeYP398MFL8/rLZ/DixYndknCnPxFfgQRjQZWZ/ApwBtjvnfmhm281sB/m7Ix8MNnkiwerp\n6aK/fzevvLKYH//4AoaGXmTevCQLF55rEWtrS5BKLa949VxNV8b419S22Leu2muj76uy73znn3j1\n1XZGR+dx6tTLzJp1DQsXZlm+/Cg9Pb8z9rpW/P5a8TO3isCDMOfc94Dvle27D7gvmBSJhNvcue9h\n1ar8wtQrVnyCnTufAXSFLNG2ePEvMmPGHpw7y5w5s2hvP8jcucvp7FymgegSW4EHYdJ8Xk2QKsHo\n69vB7t2zyWZ/yPTpP+aKK27k7rv/iNmzZwOMm7wVzu9yrKYrQ90dErT/8B/u5NVX/4CDBw9y6aW/\nwAsvTAcuIZvN0tu7DYAVK24ad9Gh4EyiTkFYS9AEqVF36NCr/PSnWTKZX+X48SR/8Rf/H/fc8wVg\n/OStHR1XUt7lWE1Xhro7JGhPPfUsr7/+fg4fnsNrr73EqVOXcsklR3jxxZfH7vwtjoHMa63B+hJP\nmhJbJOR6err4hV84wuhohmwWzpw5Ne750slbh4f3+pq2TCZDb+82enu3kclkqn5OpNyuXT/ipZeO\n8pOfvMqRI+9ldPQSpk9/mdHRUYaGXiKXi9/CKTpHRC1hIiGXTCaZNq0Ns5mYvcDixaOsXfvguOkp\n5s+/FPj5uMlb/ZjccbJB/5rbSGrl3BCJxCna2o7j3IUMDXXQ13cCs3l0dh4uzCW2k4GBQbLZBWQy\nmUh3SeocEQVhEkmttBB4JpPh7NkcyWSWmTPns3TpLHbufIZsNsumTYfI5eaxfPlhUqnrxwKu3t5t\nvhbuuVy26gXERSq5/vpf5uqrD3PgwOu8++4QIyPzePvtn9PWdpqrrloCHB0bDzY42MHg4CESCQUu\nEm0KwiS15z0ZAAAgAElEQVSiWmec2+bNfezefQKYzcyZ0zhwYC6PPXaQa645yJtvHubo0TdZuvS6\n84KfXC7L8PBe+vuHx57zuoWsOKC/v383AwPzxy0g7tdgfy3pEg833ng9J0/+CcePLyaXm8fIyC6c\nW8KhQ4dJJv+GXG41g4MHWbZsGOiY8nhRoBtiREGYSMjt2vUj3njjBKOjFwPQ1nYueDx69ATDw+9l\nyxbjxht3jFuuqL//YXp7L2FgYD59ffnnSrs/stm+cZOylgYv1QY2pQP6yxcQb2Swfy2Blbp04uFz\nn7uHH/1oPrncLKZNe4Pp00c4e/YEx479IiMjl5PJ7GTp0o/T2bmMVGr8ZMKnT5/moYfya6euXXsX\n7e3tgX2OWuiGGFEQJhIBzs0hlzuGczl6ehbz4Q8vIptdwNatxzh+fMZ53bPJZJJUavl5gVGpgYHB\nCe80qzWw6enpIpvtq3mszkTBlgKr1jM4+CK53DxggLNn32b+/EVccsmbvPnm5cyYMY8bbsjyW7+1\nqGJQ/tBDj/DVr54uPHpk7M5hkbBTECbSAC/nYJtofNp11y2lvf2HvPvuQkZGDnHgwBv80R+tG3t+\nYGCQzs5l53VnlHd1ZDIZstksy5YN09m5DFjA4OAhT9KeTCZJJBI1j9XxIthSl048zJ49C2gHMrS1\n3cScOQu5996beOWVVwFYu/aLkWnhEqmWgjCRhjV3fFoikWD+/Es4fvw5stkOnn8+x+bNfdxyy6qx\nf5WUd3X09m5j06ZDQAepVH69vUSicvASdGBTy/urSyceEokkMA8YYdq0UebOncuMGTNIpZYDTNqy\nunbtXcAjJdsi0aAgTCTkRkZGeOedfeRyQ5h9kKNHL+Ub3/jWWAvYypU9dQ1Gnyx4qSewqdTyNtW4\nromCLQVWraezcynbtvUCOS66aBrvfe/F7NrleOGFBbS1JZispbS9vV1dkBJJoQ3CzOxPgRSwyzn3\n+0GnRyQof/d33+LAAQcsAZ7j1KkFPPfcTPr6TrN48R4SiXyrVnnAUxoErVhx07iuyGa0blVqeZuq\nq1HBlhQ9+eQPgDkAHD/+Gvv3/yK7d+8H9nDNNTePW75Id8FKXIQyCDOz64ELnXMfNbO/MLMbnHPP\nB50ukSDs2PE0cAuQAbYxMnIVp04dGfeaSmOrSvedW+4l3xWpCkzC5tVX9wG/A0Au9zzHjh3g+PGF\nzJlzCZ2dh4FFullDYieUQRjwIaC3sL0F+DCgIEw8F4XFzefNm8PQ0AHyq4xdRDL5Fh/96C9w5ZUX\nADmy2amXczl79ixDQ28BkM0uaGp6i4IeV+aHIOYoi+u8aMlkgtHRNwuPHB0db2I2lw984EpSqSt8\nTUtcv2MJn7AGYXOAfYXt48C1AaZFYq3RQfXND+JeeOFl4AogB+Rob7+C22+/jRkzZvDYYwd56aVD\nfOpTC1izZhFwLuApDYJGRi5h69adTU9rqVboagxiKo24Tt8xOvou+QuNnwMf5ZVXrmfOnNdYvnwe\nPT2rC6/yJ6iP63cs4RPWIOw4MKuwPRs4Vv6C9evXA7B9+3acW+RbwkSaJZ1Ok06nKzxjwOXAWeAn\nfOADS5gxY8a4VyQSifMqitIgqLd3GwsXXjP2WpHwKeZzgDOYTWPevCtIpZaPtUQpGJK4sTCunWdm\ny4E7nXOfMbM/B/6mdEyYmbliujdu3Mi9957GuY0Nvefs2Ss4fvwpvGkZ8WrKgrgdJ0xp8eo43qWl\n/Fw0y+/bunUrN9/8G0COT396Nb/5m7/JypU9AFV3mah7pTnUHdm4Yj5/4oknuO221YDjP/7HL9He\nflFDd/82Im7fsQSvkM/P6zoJZRAGYGZ/BlwP7HbOrS17TkFYJI8TprR4dZzmB2EicaZ8Lq1goiAs\ntP0StUxLMX36N7jgghcaer+RkZca+nsRERGRWoS2JWwyZha9RIuIiEjLilRL2FSiGDzGhcZL+EPd\nNNIKGsnnKoskKiaaDimyQZgER7dvi0gYqCySqGsLOgEiIiIirSiyY8KimO64UBeAP9QdKa1A3ZHS\nCiI3RcVkFIRJK1AQJq1A+VxawURBmLojRURERAKgIExEREQkAArCRERERAKgIExEREQkAArCRERE\nRALgexBmZp8zsx2F7S+a2Q4z22RmicK+1Wb2lJn9o5ld7Hf6RERERPzg64z5ZnYB0Ak4M5sPdDvn\nuszsS8BtZvYEcCfQBdxe2H7AzzSKhNGrr77KK6+84smxfuVXfoVLLrnEk2OJiEj9/F626H8H/hvw\nn4AbgHRh/xZgNfAiMOicy5nZFuBRn9MnEkrf+MY3+JM/+RtmzLiqoeOMjDzFli3/yIoVKzxKmYiI\n1Mu3IMzMksCvOuf+orCQ5RzgROHpE4XHlfaJCDA6+q85c2ZjQ8eYPVvBl4hIWPg5Jux3gL8teXwc\nmFXYngUcm2CfiIiISOz42R15JfDLZvYZ4Fry3ZE3AvcDNwNPA3uBpWbWVrKvovXr149td3d3093d\n3ax0i/ginU6TTqeDToaIiPjEtyDMOfeHxW0z2+6c+09m9qXCnZIHgAedc1kzexTYARwB7pjoeKVB\nmEgclF9MbNiwIbjEiIhI0/k9MB8A59xHC//fB9xX9twmYFMQ6RIRERHxiyZrFREREQmAgjARERGR\nACgIExEREQlAIGPCxHuZTIa+vh0A9PR0kUwmA06RiEhwVCZKFCgIi4m+vh089tjBwqMdrFr1sUDT\nIyISJJWJEgXqjhQREREJgFrCYqKnp4v89GrFbRGR1qUyUaJAQVhMJJNJNbeLiBSoTJQoUHekiIiI\nSAAUhImIiIgEQEGYiIiISAAUhImIiIgEQEGYiIiISAAUhImIiIgEQEGYiIiISAAUhImIiIgEQEGY\niIiISAAUhImIiIgEQEGYiIiISAAivXZkJpOhr+/cAq3JZDLgFEkj9HuKtK4wnf9hSovEW6SDsL6+\nHTz22MHCox1arDXi9HuKtK4wnf9hSovEm7ojRURERAIQ6Zawnp4uYEfJttQqTM3u+j1FWldYzv9M\nJkM2m2XZsmE6O5epLJKminQQlkwm1UzcoDA1u+v3FGldYTn/+/p2sGnTIaCDVCqh8WDSVOqOFBER\nEQmAby1hZnYt8FfAWeBF59xdZvZF4FbgALDGOZc1s9XA3cAR4A7n3Dt+pbEVhaULQEQkDFQmip/8\n7I58xTn3EQAz+5qZfRDods51mdmXgNvM7AngTqALuL2w/YCPaWyqMI2/KgpLF4CItLawlI8qE8VP\nvgVhzrlsycOZwAeBdOHxFmA18CIw6JzLmdkW4FG/0ueHMI2/EhEJE5WP0op8HRNmZrea2SBwBjgK\nnCg8dQKYU/hXvk9EREQkdny9O9I5913gu2b2MHAKuLzw1CzgGHC8sF26r6L169ePbXd3d9Pd3e19\ngj0W9bEGYekuiKt0Ok06nQ46GSKBiHr5OBWVn1KJnwPzpzvnRgsPi61cvwrcD9wMPA3sBZaaWVvJ\nvopKg7CoiPpYA3UXNFf5xcSGDRuCS4yIz6JePk5F5adU4mdL2MfN7POAAfuBLwOXmdkO8ndHPli4\nO/JR8pdDR4A7fEyfiIiIiG/8HJj/XeC7ZbvvK/wrfd0mYJNf6ZqKmpDPiXt3gYhER9TKZpWfUkmk\nZ8z3g5qQz4l7d4GIREfUymaVn1KJZswXERERCYBawqagJmQRkfBR2SxxoCBsCmpCFhEJH5XNEgfq\njhQREREJgIIwERERkQBUFYSZ2RWFCVTL95uZXeF9skRERETirdqWsJ8Cl1bYP4/8xKsiIiIiUoNG\nB+ZfCIx4kZBWE7WJBkVEmkllorSiSYMwM/tKycP/28xOl/3tjcBAMxJWjSiftFGbaFBEpJnCVCZG\nuW6RaJmqJWxZyfbVwGjJ41GgH3jA60RVK0wnrVRHhZuIhF21dYvKM2nUpEGYc64bwMweAz7rnDvh\nQ5paQi0TDcbpRFfgLCKVTFQmhrn8U3kmjapqTJhzbk2T01GXKM+YXMtEgzrRwy3MlYRIVExUJjaj\n/JvqnI1y3SLRMmEQZmb/CKx2zp0obDvAKrzUOedubVYCJ6MZk6MnjoWbgmSRaJnqnK22boljeSb+\nmqwl7DD5wKt0u2IQ5nWiZLwwn+i1tgIpcBaRWjRa/jWzpVrlmTRqwiCsrAvy94AR59zZpqdIzhPm\nE12tQOEOkkWirtHyr1IZpXNWwmLKMWFmlgCOAZ3AS01PkUjEhDlIFpHz6ZyVsJgyCHPOZc3sdWC6\nD+mRiNEVpYiEmcooCbNqZ8z/E+C/mNnvOOfebmaCWlVU77DTFaWI+KWeclJllIRZtUHYF4BfAt40\ns58Bp0qec8656zxPWYvR2CoRkcmpnJS4qTYI+9Ykz+nuyCaKaguZiEijyss/kbipdrLW9U1OR8ub\naNyCrvyqp4BVJF7Ky79mjO9SuSFBqrYlTJqslcYtNKvQCypgVSEu4g+vysnSczabzbJp06HCM/G+\n0FVZFT6TzZj/DvBLzrmfF7Yn4pxzs7xPmkA87+yJW+te3D6PSFg0q/wrPWeXLRsGOjw7dpiprAqf\nyVrC/gNwsmS7IWb2IeBBIAc855z7vJl9EbgVOACsKUyHsRq4GzgC3OGcmywAjL1WaiFrVBwDVpFW\n5kf519m5jFQqXxWq3BC/TTZj/mOVthvwU6DHOTdqZpvM7KNAt3Ouy8y+BNxmZk8AdwJdwO2F7Qc8\neG9pkJfN2M0KloIKWBX8iQSr1vKp/JxtlW45lVXhU9OYMDP7GHBN4eHLzrmt1f6tc2645GEGuBZI\nFx5vAVYDLwKDzrmcmW0BHq0lfUGLY3978TP19+9mYGA+bW1tNNqMHbfWvbh9HpGgVSpLJytfa+1m\na9VztlU/d5hVFYSZ2S8B/wAsA4o5fZGZvQB8wjm3r9o3NLPrgPnkl0LKFXafAOYU/p0o2xcZcexv\nL36moaH8Gu4LF14WdJJEJOYqlaVxLF9Fqm0J+2vyQdFi59zrAGZ2BfDfCs/1VHMQM7sE+ArwSeAG\n4PLCU7PIB2XHC9ul+ypav3792HZ3dzfd3d1VfhSpR0fHlXR2HiaVWlRzM3YcWwibIZ1Ok06ng06G\nSOTU082mcknCoNog7MPAh4sBGIBz7nUz+xzwTDUHKCwEvglY55w7ZGbPkx+Afz9wM/A0sBdYamZt\nJfsqKg3CwqKnp4tsto+BgUGy2QVkMpnIn9jjC7fVdX0eXcFWp/xiYsOGDcElRiRAlcrSyQKterrZ\nVC5JGFQbhL0BzKywfwbweoX9lRRbv+4zM4B7gO1mtoP83ZEPFu6OfJT8mXYEuKPKY4fGwMAgvb2H\nGRg4SCIR/RNbYwhExG/Fi73e3sP09qYBuOWWVSqLJHaqDcI+DzxkZmuBH5JfquhDwJ+RX1dySs65\nrwNfL9v9DHBf2es2kW8xi4TySf96ex379s0k36h3RaBpCwvdkSMiUynvHhwYGCyUpfmL21tuWeXp\n+6lckjCoNgj7OnAB8BTnBtO3AVngbwstW9CCE7eWT/rX0bEAOMSqVe06sQvUmiYiUynvHuzsXMbi\nxXuA/FxeXlO5JGFQbRBWabLW4sLdVuG5UPFrAOa5Sf8ub8r7aCCpiLSCbDYLwK/9Wm5sXxzG2IqU\nqzYIew4465z7MYCZrQL+Lfl5ve5zzmWblD5PNHMAZrMn/WvVNc5EpLWUlqXFsm5oqA04wksvHWp4\njK0uYiWMqg3Cvgb8KfBjM/sF4DvkJ1q9m/xUEn/YlNRFQGmTdiaTobd3G+DdSV7tGmcqYEQkykrL\n0t7ebeRyOY4cOYpzr9PRcWVVx/ByQlcRP1QbhH0A2FXYvh141jl3i5n1AI8R8iDMrwGYzT7JJ1vj\nTAVMeClAFqlNT08X/f0P89ZbOZxbRmfnYXp6Vk/5d1EuB1VOtKZqg7Bp5JcaAvg14HuF7X1EYPn5\nKA/AbNU1zuIkyhWDSBCSySSp1HIGB/PnTSq1qOGyL+x3Q6qcaE3VBmEvAneZ2T+RD8L+qLB/EfDz\nZiQsippxklcbQIa9gBERqUU9ZZrXE7qKNFu1QdiXgCeAdcBjzrk9hf3/K/BsMxIWRUGe5NW+t5q8\n/acAWaR2E5Vpk5VhUQ60VE60pqqCMOfcdjObD8xyzh0peeqrwOmmpEyaIuxN3l4EiWELNKNcMYiE\nTVBlWL3lSrV/p3KiNVXbEkZhGoojZft+6nWCJHxKC5EVK25i5878cqHNCHC8KGDDHmiKyOTCdiEF\n9Zcrmzf3cf/9+c6jbDbr+cz/Em1VB2FRFcaTuV5efJZ6mrxLC5/+/kcYHCzei6EAR0S8Uyzj+vt3\nMzAwn7a2NsrLmah12+WXX3p3bFtBWHzVU0fHPgiLU6uIF58l7E3eXhSwUSukRSSvWMYNDR0GHAsX\nXnbea4Iqw+otV/LLL6UL2x9qQsokLOqpo2MfhEnjenq6yGb7GBgY5Nprr6azM0EikfA0wPGyxTLs\ngaaITK6j40qWLj3EtGnDZLMLyGTyMyQF2atRb7mycmUPiUTl+R1FYh+ExalVJKjPkkwmSSQSDA52\nMDh4hDVrFnke5MSpxVJE6jN+6aJFbNp0iMHB/JJFQCTLCF0Uto566ujYB2FxOgHi9FnKZbNZhobe\nKmwvCDg1IhKE8qWLRBrh95jweuroWAdhYRuUH7b01MKfVrgjU79ERGLt9OnTPPTQI5w9e5bf+q2l\nzJgxo6TMiUevhvgjCj0ssQ7CwvIDVHPHT9h53QpXHpAmEgkWLrwGYGz8xFR/E6UgVkSq89BDj/DV\nr+ann/zMZ17mnnu+MPacF2WQ1+WIyiVvtdr3GesgLCyqueOn1ZQHyNW0tFUTVLfaCSwitfH64ryR\n46m8Op+Xv08UxoTHOggL2w/Q0XElnZ2HSaUW0dPTFesTsNbP5lVLW1haP0WkPmvX3gU8UrLdmPKy\nKEyCLq/iXAdBNMZRxzoIC8sPMD4YXD2W0Xt7t9V8AkblpJmqcPF6cV4RiYf29vZxXZCNqqfVvRZh\nK5dqqSOCDgIrCdv32WyxDsLCwstgMIwnTT2K30ktBUY13+NkJ3BUAlgRaR6vL87rKcuKvAw4xo89\nnkdbW4Io1hFhaTzxi4Iwj9VyIsYt4i9fYxLOrTE5Ea+DyslO4Mneq9EALUoBXleXN3nNOefJcUSg\needQPeVsPWmppyzzKuDIZDI88MDD9PY6nHOY7aWj40r6+3cDE3+GuNVBURSrIKyWE6dZJ3wtJ2I9\nJ2CYT5rxn/0Zz69mmhnoNBoMRq+FstEAyjxJhUhR+ULXK1f2eHK+11PO+nU+e1Wm9fXtoLf3MPv2\nzeSXfmkGq1bNAw4zMDCfwcGDTPQZWq3VKYxiFYTVcuJEr9LMa6TpO4xqCSob/c3CHMCKtLryha4T\niUSkyuh6yhcv66GOjiuBvaxa1c66dZ+lr29HIQDzRlzqnLDxNQgzs4XAk8DVwIXOuZyZfRG4FTgA\nrHHOZc1sNXA3+dk773DOveNnOhvhV0UfxiCyns/u55XYZO/V6O+mAE+kMWFa6DrsZVm5c+m9YixA\n8rpMCmOdEwd+t4QdAT4GfBvAzBYA3c65LjP7EnCbmT0B3Al0AbcXth+o5uDlmW6yyL1ZlWYrN+82\n+7NX+5vVc8XWaNpb+XcX8UJ39woGBgbHtvPn7fjz3a/WGL/OZ6/qoUrpVZkUDb4GYc65M8AZM4P8\noJIbgHTh6S3AauBFYLDQSrYFeLTa45dnuvIpIHp6usadwFHOoK3Y8lJtoaIrNn8UzuOGaYC/AOzc\n+QyDgx1j25XKtbid21EKlFqxzvFD0GPCZgMnCtsngDmFf+X7PFHPCTzVlVdQ/eSTnbxepEn9/5VN\n9L205vflRfCkAf5yTjY7yo9//ByPP26MjIzw+OPF9WS9D7iCOGfrfc8wlC9BBYxh+OzNFGQQ5oDj\nwOWFx7OAY4V9s8r21aU8ci/+kJC/+6a3d9vYcxP9sFMFbhM9H2TG8eJqMcpXnM28Ypvoe4ny9yUS\nBj09XTz++DcZHr6QLVsu4o03vsqhQ8uYO3cO2eyCsdd4dW4Hcc7W+56tXL7E/bMHGYQZ8Dz5Afj3\nAzcDTwN7gaVm1lay7zzr168f2+7u7qa7u/u815RH7qUncDabbeoPG/eME2ZRauIvlU6nSafTQSdD\nJBDJZJIlS97HjBmnGRk5zmuvXcSpU0M4dwDoHHtNFM9tkYn4fXdkAvg++TPq+8AfA9vNbAf5uyMf\nLNwd+Sj5aOkIcEelY5UGYdUqPYGLrWBTmerKK4z95F6kKYyfKwwm+l68+L7KLyY2bNhQbzJFIqm4\nbuSrrw7x2mvXceBAhnnz3iWR8L6qCqKMq/c9W7k8jvtntygOijUz12i6m91dGGR3ZFj70KtNV1jT\n7zczGxu0vnHjRu699zTObWzomLNnr+D48afwZrJWb8aERbEMEu+U5vOiTCbD5s197Nr1IwCuv/6X\nWbmyp2XLAq+pfvJfIZ+fNwg26IH5gWl2s3aQzeZh7QqtNl3NSH+rnvgiUZRMJrnlllVjE7a+9NIh\nEonwlGVRV0sZ63XZGdb6KSgtG4SJf0oXls3ligvL+ksnvohI7YIsO1vh4llBWAxV6kNvRmau9pj5\nNeHSOOe4+eaz3HjjDZP27cd9DICIVFZepoSlLIhiMBDEZOXV8HOpuihQEBZDlbpC+/p28LWvvc7w\n8F76+3ezbt1nfWtWzq8JNxOAadOmTXki1dOVO1UhGZbCXEQmVrxgg/wd7LfcsioUFW8UgwGv0ux1\n2ak7XMeLfRAWxSuYZhke3su+fTPp7XWkUuevINCs7ya/Jtyese16TPU7TlXg6MQXCb/SC7aBgUFu\nuWVVVX8X5XI+iLRHJahshYvn2AdhjWa206dP89BDjwD526fb29sjecL39HTR37+b3l5HR0d+4sNG\nB2dWe4KsXNkzdot56etq+R6jUmiISP0+8IElmD3Ku+8e4+TJlfzzP/eSSCQCLx+CmAC6UV6lOciy\nN4iLZ7/r99gHYY166KFH+OpXTwOOV19dx2/91u1ks1k2bTpUeEU0AoJkMsm6dZ8llaq8gsBUKp2I\n1Z4gE73Oy5O7Fa6Y4kprUArkK78nnvhn3n67nbNnP8Df/u3P+Z//M83ChdcQdDkbxZb0ydKs8nJi\nfgedsQ/Caslsk0XAIyNneP75E4yMHGTZsmGgo1lJbprJVhDw80Qcf7fkfNra2qb8m6nS2oxxZOIX\nrUEp+cpv9+6TZLNtmMHIyAiHD2fo6Mid91q/BvD7UUYEUQ7XUl4qYGuu2AdhtWS2ShFw6QzOJ092\nA/lxTanU+d1rYTNVARLUiVj8nnO5eXR2vk0qtXzKYzbjSlRdnCLhctVV3Ti3jenTn6W9/YO0tSXp\n7Hybnp7fHve6SuduM85fP8oIP1vZ6gkqo9gK2Ai/g87YB2GNXsm0t7dzzz1fiESrSXkavSxAajkR\nq/2u2toSpFLLW+oEF5HKzlV4i8cN+UilFpFMJseVK9lsdtzfTlbmRKHs9osuPKfmd9AZ+yCslkw3\nWQQchauB8s8alnSUf29had4OSzpEZHwZm8lkSCTGn5ul5cqnPrWANWsWjT0/WZnTSOChMkKaLfZB\nWC2qCbSidFUV1gLEi4DWi98hCoG1SCua6NzM5bIMD+9lYGDYk7kO601HVIW1TqgkSnVtI2IfhPX0\ndJHN9jEwMEg2u4BMJtPQjxnm5tzyEyyoAsSPEz3Mv4OI1G+iyjc/zc7D9PZewsDAfPr6zp33k5U5\nUQo8mi1KQWWrlPGRDsKqHQcAMDjYweCgv4vA+h3Jh+UEC0s6pLVoqovoy2QyPPDAw3z/+4cwY9zq\nHslkklRqOYODB8/7u8nKHJVH/mmV1isvRToIK42Us9m+cROClj5Xy5QSXi5/E+ZIPuoni65u5Xya\n6iLKigHY17/+GkND7wJzeP313bz66lr+6399gPb2dp33Iae5H2sX6SCs1MDAIIODxUBr/KD0WqaU\nqJSJygOWMAVT9QpzgFgNXd2KxEtf3w56ex3Hjy/koov6effdkwwPv48nnzzLkiWPcM89X2iZ8z7q\nF8leaJXfOtJBWDFSzmaz7Np1kKGht8aW5CmNolesuImdO5+p+32qDVi8mkDQ7xMwm83S27vNt/cT\nESk3MjLCkSNHmDbtFJ/61Ac5cOBnfP/7Z5kxYxZQXbkYl+AlrBfJXvYUSV6kg7BipNzbu40XXlgA\n7KWz0+jp+e1xUXRv77YJuy29zETVTiDY6GLUXij9nNlsNpQnvIi0jj17XmBo6C0Apk9/D4888uC4\ndXv7+nbwta/9jLfeGubxx7/J7bffxsqVPePKz7AGL3Ex1ffbKq1XXop0EFaqrS3BwoXXjE3sN5Hy\nbstqMlE9gdlkrUvlGbl0Hccglq0oplNEJCyKE2WXGh4+xMsvH+Oll0bYvz9NIpHwtdL3q6VNLUqt\nIxZB2FQZdnyrzwIGBw+d95rJVBvd19u6VCko8/IE9KIJOS7N/CISTtddt5SFC4+PbZfLT1Gxm8OH\nj3Ds2BXAaMXXTFSWeVGG+dXSFtYWJa+nfJKYBGHJZHKsNamvb8d5J9hkMzFXO81F6biyiU7galuX\nyguK0qk0yo/jBS+akNXMLyLNlEgkmDt3DkeOHObv//7b7NnzAtdf/8tjXY7JZJJ16z5LZ2c+COjs\nXFbTyiYqwxqXTCZJJBKBTPkUV7EIwmDyE6zS3Y3Fff39uxkYmEdbW2Ls78Y/N5+2tjb6+x8Z68ac\nalxZcX81SyBlMhmy2SzLlg1XLFRExF9ezDemucbqc+TIAPv3D/PSSz9n2rSfkEqNMDAwSCq1fKys\nveWWVdxyy6pAWufVTShei3wQVhow5XLFYGq8zZv7uP/+PTjn+OEPn+fGG28YWyB2aMgBe1m48Jqx\n1xcDuqGhw4Bj4cLLxh1vqnFlUH1rVl/fjsJCtR2kUom6ChI/7lhR4SOto9EASnON1SObzfLOO4c4\neWCYJWUAACAASURBVPLHwG2cPZtgYODbnDp1CwMDP6PRNSG9KMPC2k3oJ9UF3op8EFY8EXO5+Sxd\n+hbTpk07r696YGCQffveLdwCfYCXXlo0NoFrR8cCOjuNVGrReRmqo+NKOjsPk0otYsWKT5BO72Rg\nYJCzZ8+Sy+Voa2sL4BOfz487VlT4iEgz7d49wNGjVwEngSxwFhhhaGgEeIVs9rJJ/34qKsO8oe/R\nW5EPwoqKAVFvr6O3dw8At9yyCshP1rp4cZrDh48yd+57xvadm8D1t8cCtvLuwZUrVwP5QGdgYJCB\ngXmFv397rIm8EbqqEBGBvXtf4513jgPzmTnze1x88QIuvfQm3n77KM5dcN7rVXZKHIQ2CDOzPwVS\nwC7n3O9Xek0xYLrmmnwr0Guv/YR9+/JB1je/+R0SiQQ9PV2sXNlDIpFgZGSEPXteYNq0Ybq7P0F7\ne/t5g+8feugRensdHR0LxroHi/OMlXZdplLLPbka8OKqQoWRiETdG2+8SS43HXDMn9/Opz/9G7z2\n2j727JnP3Llzz3u9WmQkDkIZhJnZ9cCFzrmPmtlfmNkNzrnny1+3eXMf9903wOuvv0l7+yHM3sOZ\nMzuZMWMGzz9/Nfv29fP0088yffp0OjuXAbB16zEA3ve+7/Pkk73s2fMCmcxHuPTSS+npeZZvfetF\nhocvwzlHNnsZvb3bxsabTdZ1OZlqB5DWO9BUhVF0aeoPkbzXXvsJsAzI8frrh9my5TBms3nnndd5\n553Xee65LN3dK8aGheR7Knp0zkikhTIIAz4E9Ba2twAfBs4Lwr71rW/xL//yDDAdmIvZqzh3jOnT\n2zh58gO8/vowP/rRPzN9+v/C1VdnmT79KXbvvpLp06fzn//zg7z88k2cOTMdsxPMmnWWZHIvx45d\nj3Ov8973nmTXLsfWrW3Mn38py5cfJpVazooVt7Nz5zMVp8KoVKEWF6X9wQ9yAPT372bdus9WLDi8\nuIValXq06LZ5kbyhoTeAq4FpwHyeffbrJBJJstnrmTZtMY899gwHDrzBvn2z2b+/ncWL9/g+WatX\n4lhOx/Ez+SGsQdgcYF9h+zhwbaUXfe1r/wP43wqPvoNzHwVmMzr6M0ZGnsa5DkZGLiOZdLzxxkFy\nufz6ZHCq7K1+Cszjsss6yGYvAq5hyZIcW7ceY9++mcDPSaWuH1siaaJKs1KFml+U9jAvvzwKXICZ\nI5VqXmWrSl0keF5Mc+GlaEyZYcDlhf/fJpP5ZTKZ05hlMXuekyd/keefP0H+7tX2QFPaqDiW03H8\nTH4IaxB2HJhV2J4NHCt/wfr164EM8Bz5E3cUuBDIMW3aNJYsgbNnZzA0lOLii4fo6rqIfftu4vTp\n17jsslHuuefzPPlkL4ODw5w5czXz58/nk5/sYsaMGUD+dukXXjgI7GXVqvaGxlp1dFzJ4cNbgIvp\n6PjQhK/T2K7WU/qbt7XlCvlaos+LoMc8PE5UZMjfHZkDLgbOMHOmcdVVZ7noog46OpZw3XVHmDZt\nmuZVlFiwMF4hmdly4E7n3GfM7M+BvykdE2ZmzjnH1q1bufnm3wCgp2cFxcLmiisu54EHNvLDH+4a\nGzsw0ViCiZpQa90/0XPFfdlsFmDsZoFmNdWqSTg+zGysBWPjxo3ce+9pnNvY0DFnz17B8eNP4c1c\nWGELNMJynDClJX+cMJbzRcV8/td//df87u+uBRw33pjiwgsvxsz46Ec/wu///t08+2w/EI9yLY7l\ndBw/k5cK+fy8K6JQBmEAZvZnwPXAbufc2rLnXFjTLeIVBWFRPU6Y0lI8TniUl92l+VwkriYKwsLa\nHclE01KItKpE4mGSyf/W0DFOnqxt8XqJizAFliJSFNqWsMmYWfQSLSIiIi2rUktYONbdqYNzbuzf\nl7/85XGPvf7XzOPXcuzR0VF+8IOt/OAHWxkdHY1U2sN2/Cik3e98HobPXPxXT14Pw+8e9/Q1I41x\nKs91fB1/on8TCW13pJxPtwBLq1BeF5FWENmWMBEREZEoi0VLWHd3d2SPX8ux65lHLCxpD9vxo5j2\nZqe5UV6mr1lz5rXSd9gsUTx3dHwdP6zHj+zA/CimW6QWunVfWkFpPv+Xf/kXNm/eQqPZ3gz+3b/7\nXd773vd6kEKRxkVuigoREWktO3fuZOPGfwFWNnScCy54lI9//F8pCJPQ8y0IM7Nrgb8CzgIvOufu\nMrPjwC7yE9B8wjl3zMxWA3cDR4A7nHPv+JVGEREJllkXzt3b0DFmzPiBR6kRaS4/B+a/4pz7iMuv\nsn1BYWmiPc65HufcxwoBWBK4E+gC/nthW0RERCR2fAvCnHPZkoczyS/SfbWZbTez/1zYvwQYdM7l\ngC3Ah/1Kn4iIiIiffJ2iwsxuNbNBYMQ5tw94f6FlbK6Z/TowGzhRePkJYI6f6RMRERHxi68D851z\n3wW+a2YPm9lK59zmwlPfAZYDTwCzCvtmAccmOtb69evHtru7uyNxa7fIZNLpNOl0OuhkiIiIT/wc\nmD/dOTdaeHgCmGlmbYWuxxXAALAXWGpmbcDNwNMTHa80CBOJg/KLiQ0bNgSXGBERaTo/W8I+bmaf\nBwzYD3wbeM7MTgL7gHudc87MHiU/S+MR4A4f0yeTyGQy9PWdmzwzmUwGnCJpBv3OIiL+8S0IK3ZF\nlu1OVXjdJmCTL4mSqmktv9ag31lExD9aO1JEREQkAJoxX6rSrLX8JFz0O4uI+EdBmFQlmUyqa6oF\n6HcWEfGPuiNFREREAqAgTERERCQACsJEREREAqAgTERERCQACsJEREREAqC7IyUUNFN769JvLyKt\nSkGYhIJmam9d+u1FpFWpO1JEREQkAL61hJnZtcBfAWeBF51zd5nZF4FbgQPAGudc1sxWA3dTWMDb\nOfeOX2mU4Gim9tal315EWpWf3ZGvOOc+AmBmXzOzDwLdzrkuM/sScJuZPQHcCXQBtxe2H/AxjRIQ\nzdTeuvTbi0ir8q070jmXLXk4E/ggkC483gJ8GHg/MOicy5XsExEREYkdX8eEmdmtZjYInAGOAicK\nT50A5hT+le8TERERiR1f7450zn0X+K6ZPQycAi4vPDULOAYcL2yX7qto/fr1Y9vd3d10d3d7n2AR\nH6XTadLpdNDJEBERn/g5MH+6c2608LDYyvWrwP3AzcDTwF5gqZm1leyrqDQIE4mD8ouJDRs2BJcY\nERFpOj9bwj5uZp8HDNgPfBm4zMx2kL878sHC3ZGPkr9V6ghwh4/pExEREfGNb0FYsSuybPd9hX+l\nr9sEbPIrXSIiIiJB0GStIiIiIgFQECYiIiISAK0dKRV5uaiyFmiOvsl+Q/2+IiL1URAmFXm5qHIz\nFmhWxf//t3f/4XFU973H3195hWUDtrHBv4BinEDANlawHEOD7UjY+CY04QmUJG0gLc3tU25pWtpe\n4JYnN33k26ZJgAshCTWF3JTeuA1peVII5AZsgxfMT2PhyAIDBhzjgIWMbWzjH5K12nP/mFl5tV5J\nu9rZnZndz+t59Gg02j1zds7ZOd8558xMaYrdf0OVoR7ALSIyMgrCJJbU8JdG+09EJHwKwiSvIB+q\nnC8t9WTFy1D1YaR1RXVARGqdgjDJK8iHKudLq9SemCCDxFpU7P4bqj6MtK6oN05Eap2CMImlIIPE\nWqT9JyISPgVhEgr1ZInqgIjUOgVhEgr1xIjqgIjUOt2sVURERCQEFQvCzOwCM3vGzNaZ2e3+un1m\nttbMnjCzCf66q/zXPWxmJ1YqfyIiIiKVVMnhyG1Ai3PuiJmtNLM5wCbnXEvmBWZWD1wLLAKu9Jdv\nq2AepYx0S4L4UxmKiASnYkGYc64r689eoA8418yeAp5xzt0MnAV0OOfSZrYGuLdS+ZPy0y0J4k9l\nKCISnIrPCTOzucApzrlXgY865xYDJ5nZ54DxwH7/pfuBCZXOn4iIiEglVPTqSDObCHwf+AKAc26v\n/68HgfOBh4Bx/rpxwN7cNDJaW1v7l5ubm2lubg48vxIs3ZJgaMlkkmQyGXY2hqQyFBEJTsWCMDNL\nACuBG5xzO81sLNDjnOsDFgLtwBZgjpnVAUuB5wZLLzsIk3jQLQmGlnsysXz58vAyMwiVoYhIcCrZ\nE/YFYD5wi5kB3AzcZWYHgK3AN5xzzszuxTvV3gN8uYL5ExEREamYSk7M/wnwk5zVTXletxKvxyz2\ndCWZRIXqoohI9OiO+WWkK8kkKlQXRUSiR0FYhaRSKVategJQT4QUR71YIiLVSUFYGWVfSZZKpdQT\nISMSRC+WrmoUEYkeBWFllH0lWaYXTCQMuqpRRCR6FIRViHoiZKRUd0REqpOCsAqJe0+E5iWFp9C6\nozISEYmXooIwMzsZ+AjQ7pzrLk+WpJDGtNINrq6ui77cMmppWRRaUKaAUERkeAUFYWZ2IvAj4HcB\nh/eg7a1mdjfwnnOutWw5rEGFBDwKimQ4YdYR1U8RkeEV2hP2HeBUYB7wdNb6R4B/AFqDzZZEjeYl\nRV9uGWV6okREJJoKDcIuA65wzv3KzFzW+teAmcFnq7YVEvBUOigKe05bqcNbtTA8lltGpdSRfPur\nmH2ooF1EZHiFBmEnAbvzrD8R6AsuOwKFBTxhB0WVVurwVi0Oj5VSR/Ltr2L2Ya3VTxGRkagr8HUb\n8HrDcv0J8GwhCZjZBWb2jJmtM7Pb/XU3+n+vNLOEv+4q/3UP+3PRRERERKpOoT1hNwOPmdlsoB74\nKzObAywAFheYxjagxTl3xA+6FgPNzrlFZnYT8Hkzewi4FlgEXOkv31b4x5FqVerwlobHipNvf2kf\niogEq6AgzDn3rJl9ErgReAtYArwEXOic6ygwja6sP3uB2UDS/3sNcBXwCtDhnEub2Rrg3kLSlupX\n6vCWhseKk29/aR+KiASr4PuE+cHWH5S6QTObC5wC7AXS/ur9wAT/Z3/OOhEREZGqU+zNWqcDk8mZ\nS+ace6nA908Evg98AZgPnOb/axxeULbPX85el1dra2v/cnNzM83NzYVkQSqkFq5GDFoymSSZTIad\njbJSvRAROarQm7WeD/wrcE6efztgVAFpJICVwA3OuZ1mtgG4DrgVWAo8B2wB5phZXda6vLKDMIme\nWrwasVS5JxPLly8PLzNlonohInJUoT1h9wDbgT8GOvECr2Jler9uMTPwJvs/ZWbrgLeB251zKTO7\nF2/27x7gyyPYjsTcSHpL1MMSvMH2qfa1iEgwCg3CZgHznHOvj3RDzrmfAD/JWf08cEvO61bi9ZhJ\njJVyJd1IekvUwxK8wfZpKftaV1iKiBxVaBD2MjAVGHEQJpUXZo/FUFfSqSclWipZHlG7wlJ1UUTC\nVMx9wr5jZt8ANuHdYqKfc25P0BmT0kW1d2i4fI2kt0Q9LCM3WHkMtk+raV9H9TsiIrWh0CBsjf/7\nsTz/K2hivkihRtJbErUelmow2D7VvhYRCUahQZiOuDEU1R6LqOarVtVyedTyZxeR8BV6x/xkmfMh\nZVDuHouRzqepxp6UOM8tGq48SvlsUd8v1VgXRSQ+Bg3CzGwe0O6c6/OXB1XozVqldFFq1DSf5qhq\n3helfLbs96ZSa0kkvENO2HVXRCQKhuoJ24B3ReROf3kwmhNWQdXc2Et1a2/voKNjiv+X6q6IyFBB\n2Exgl798pv/bypsdiZO4zacpZy9i3PZFMUr5bJn3plIpXnppB52dm5ky5ezgMykiEkODBmHOuW1Z\nf/4QWAskgfXOuVR5syWDiVJjH7f5NEP1IpYaoMVtXxSjlM9WX19PS8sibrvte6xZY8BJNDbupqXl\nqmAzKSISQ4VeHfkCcCnwt0DKzJ7FC8iSKCirqGpu7MOkYd7yWbt2HatW7ebXvx7DzJljaGo6X/PB\nREQo/OrI/wlgZmOBTwKfAj4DLAe6gRPLlUGRoESpF7HWeEOQW1i2bKz2vYiIr9CesIwTgZOByXiT\n9lMMPWl/ADObBvwCOBc43jmXNrN9wEt4E/yvcM7tNbOrgOvwH+LtnPuwyHyKHGOoXkQFaOVzdN/+\nlq6KFBHJUlAQZmYrgGbgDLyhySTwx8ALzrnuIra3B+/Gr/+ZtW6Tc64la1v1wLXAIuBKf/m2IrYh\nUjQN85aP9q2ISH6F9oRdi3el5LeBXwJtzrl0sRtzzvUAPWYDLrI818yeAp5xzt0MnAV0+L1ka4B7\ni92OiIiISNQVGoSdjdcT1ozXAzbOzNbhXzFZ4s1aP+oPQd5tZp/DC/b2+//bD0woIe2SRenmqCJR\npO+IiMjIFDox/03gTbxbVWBm5wA34fWMjaKEm7U65/b6iw8C5wMPAeP8deOAvfne19ra2r/c3NxM\nc3PzSLMwJF01J5WSTCZJJpNhZ6No+o6IiIxMoXPC6oD5ePO5moGLgNFAG978sJEw/2rLHudcH7AQ\naAe2AHP8bS4Fnsv35uwgTKQa5J5MLF++PLzMiIhI2RU6HLkXaOBo0HUH3hyuA8VszMwSwKNAo//7\n68AKMzsAbAW+4ZxzZnYv3uVUe4AvF7ONoLW0LCKVWkt7ewep1GR6e3s13CKxUYmhQl1ZKiIyMoUG\nYV8Eni426Mrl39R1ac7qpjyvWwmsLGVbQamvryeRSNDRMYWOjp0kEhpukfioxFChrn4UERmZQueE\nPVrujIiIiIjUkmJv1lqTNNwipQjz6sFqrbu6IlNEqoGCsAJU63CLGrLKCPPqwZHW3ajXDV2RKSLV\noGaDsKg3MpVQjQ2ZyjUYQdSNocpC5SQiUsNBWDUGIBLNcq3WIcHhDFUWpZZTre5TEakuNRuEjVQ1\nncGrIauMUoezw6hzUa8b1TpFQERqS80GYSNtZKLY05Kr0Ea7GhuyqAcPIxFGnSumbgxW34Yqi2os\nJxGRYtVsEFaNAUhGuRrtOPQCVnO5RtVg9W2oslA5eeLwnRKR8qnZIGykavkMPg69gNWolutctdN3\nSqS2KQgrUhzO4INutDNn621tG0mnT6Gurq7kNMup2noXol7nyhUkZsoxlUoBkEgkqqI8RUQyFIRV\noaAb7czZejo9icbG92lqOj/SPTLqXaiscgWJmXLs7NwMTGTatKlUW3mql1OktlU0CDOzacAvgHOB\n451zaTO7EbgMeBu4xjmXMrOrgOvwH+DtnPuwkvmU/OrqEjQ1nV9VjaBImKLeyyki5VXpnrA9wMXA\nfwKY2WSg2Tm3yMxuAj5vZg8B1wKLgCv95dsqnE/JErez9bjlV/LLlGMqNRk4OhwpIlItKhqEOed6\ngB4zAzBgPpD0/70GuAp4Bejwe8nWAPdWMo9yrLidrcctv5KfylFEql3Yc8LGA/v95f3ABP8nd51U\nqWqbRC/5qZxFRI4VZhDmgH3Aaf7f44C9/rpxOeukShUziV4NeXzlK2eVp4jUujCDMAM24E3AvxVY\nCjwHbAHmmFld1rpjtLa29i83NzfT3Nxc3txKIHIb3mJU+1WPyWSSZDIZdjYqJu7lqSBSREpV6asj\nE8CjQKP/++vAU2a2Du/qyNv9qyPvxZtZvQf4cr60soMwiY/chleT6I/KPZlYvnx5eJkJWDWWc9yD\nSBEJX6Un5qfwereyrQduyXndSmBlpfIl4Slm8nU1NuS1Il85qzxFpNaFPTFfqK1hjVIaXl0tN7w4\n1aW4l6eCSBEplYKwCKilYY3hGt44BRFRVI11Kap1Iu5BpIiET0GYlF0xjWg1BhFxFoUASHVCRKqV\ngrAIqPZhjXyT8cNu2KvVSOvSYMGWAiARkfJREBYBtTasMVTDXu0BabmNtC5FOdhSnRCRahXrICwK\nQyVy1GDlkduIZl5T6PslPKUGQEGUaZRPUsKos/qeiFSPWAdhUT57j4sgD+iDlUduIzpYw67yDM9g\nZVJqAFTtZVruz5fv+1nt+1SklsQ6CJPShXFAj3LPRq1SmUSTAi6R6hbrIExzRaKl1PJQeVafai/T\nMD5fte9TkVpizrmw81A0M3NxzHcUVdP8kmr6LABmhup5eUW9zkQ9f0HIruff/OY3+cY3DuHcN0tK\nc/z4hTzyyLdZuHBhEFkUKZlfzy13fax7wqR0lRiGqlRDEubQTS00loOJ6mcvJF9RH+7TMLFIdQs9\nCDOzGcALwGagxzn3aTO7EbgM76He1/jPnJSYinpDV6pDhw7xta/dwIYN+znnnGaAqvuMQ4lq+RaS\nr1QqRWfnZn958rBpRjXgFJF4Cj0I861yzn0FwMwmA83OuUVmdhPweeCBUHNXIh24KyOsuTJ33rmC\nX/ziJA4cOBFIAjMrtu24itZ3YmLBr4xqwCki8RSVIKzFzJ4Cfga8jteSAawBriLmQVgpB+4gGquw\nG7xKBUdhDt00NIwGYP78caFNlg6rnEdSvkEFM0N95kLylUgkmDZtav+yiEglReGoswM4CzgCPASc\nCOz0/7cfmBBSviIhiMYq7LP3ap/Xcv31fwqsAI7n+uu/HlqvTljlHGb5DvWZC8lXsQGkrkwUkSCF\nHoQ5545kls3sEbzA61R/1Thgbxj5CpIO3NVt7Nix3Hzzfw87G7ESle9EsQFktZ9QiEhlhR6EmdkJ\nzrkD/p8XAd8HvgzcCiwFnsv3vtbW1v7l5uZmmpuby5rPUgx24C5k+CiIxqqcDV6+zxD28GdcJZNJ\nksnkiN8/knKO+2N3KhHMqT6LSLmEHoQBi8zs74Ae4Cnn3Hoze8rM1uFdHXl7vjdlB2FxVcjwUaFn\n3kM1FOU8e8/3GcIe/oyr3JOJ5cuXF/X+kZRzGGUV5DYr0TNVzfVZAaZIuEIPwpxzvwR+mbPuFuCW\ncHIUT9XcUIhIeei4IRKu0IOwWhbkUIp3v6P3/OXh73eUrZSz4XyfISrzfWpdpYa7ixXUNivVi6P6\nLCLloiAsRMEPpewZ0btKORvO9xk0eTkaghzuDlJQ26xUL04112cFmCLhqvog7NChQ9x55wrAu5XA\n2LFjQ85ReXj3O5rVvxw0zR2pPkOVabWWd7V+rpGq5gBTJA6qPgi7884V3H33If+vFVV7K4FSzmgL\neW92r0MqtbY/0FNDFl3DletQPUlxmCsU5k1ipTgKfkXyq/ogrFRxOXiUckZb7Hvb2zvo6Jji/6WG\nLKqqvZcjrp8vLseUICn4Fcmv6oOwo3czzywXp9wHj7gckLN7HVKpyXR07Bz6DTEQl30/lKAuqli4\n8EJWrXqif321zhWKwudSQFIZixYFU77OuUDSEcmn6oOw3LuZF9No9fb20ta2kc7O3UyZcnZZ8lfp\nA/JIG+3sXofe3l4Sifg30HFqDAcrt8E+QyHlnF2mq1Y9cUw6UdofQQXMce09i7vwgt9SAygLJBci\ng6n6ICxXbqPV0rJo0IP72rXraG8/BXA0Nu6mpeWqwB+onUqlAEin07S1bSwp3UIEEXhEvSGrhh6u\nXKtXr+XWWzcBXp259NJlBbw+mff15do/5dzvlQqYK1F3otAbV2lRP2aIhKUqgrBSDpzDHdzr6uqY\nNm0qTU3Tqa+vz9tjUGw+srd59dWTueaa6bS1baS9fRIdHTvy5qMQcQ4+gsx7oQ12nBrD9vYOtm49\n3L+cCaoG+wzt7R289dZxdHdv54EHHuSSS1ry9p5lLrJIpVJcffVkEonEiPdFEIFSOetwIWlXIthT\nQCIiGVURhBV64Ozt7SWVSnHeeV00Np7HwoUXcuedK+jsdEyZcuwNTottpEdyAE8kEv2v8wKw/Pku\nNrgbbPtRDTzCGBqMS2PY29tLX18f48e/C0Bf30x6e3upr68f9DM0Np7HhAn/SVfXNLZuncDatfn3\nafZFFtdcMz30/TFYPQii3gZVx+J8siPhMAtuWDOIOWpB5Ufz5UpXFUEYQDqdoqtrC21tXSxceCFP\nP/084B0ke3t7ufPOFbzxxlscODCPRGIKjY3e7SsefXQnZtDYaLS0/P6ANHMbuEwQN2tWphdhcn9j\n6P199K713d0TB0x0zj5QF3OX+d7eXm677XusWpWZl3Zs45FpFNraNpJOTwIYdGhzpIFHnBqeqAaa\nI7V69Voee2wnXV0bgAZWrTqBuXNXk0gkeOmlXwEwb97HB/R2XXJJC+3tHaxa5Z1gpFKp/vq4cOGF\ngPf9yHeRRTH3DwP6/85Od6T73fsObe7PW8ZQ9TbIKQKF9AjGaS6hlC64ACqIgCXIOWqaLxcFsQ7C\nsg+cc+bs5L33TuKxx9K88cYNHDq0gLq6BOAFJ3fffYhDh8ZRV3cPU6aczYsvziaZrGfbtuMZP34L\nMHnAwXzhwgtJJp+mvb2DxsbzuOSSFtauXcfKlTvp7KwD9rB5804SiaMH4e7ubrZte4rDh7v56U9f\npa/vU9TV1ZF7oC7mLvNr165j1SrH1q1jSKdfpa1tN5B/cnY6fQqNje8D0N5+ypBDm4U2XNkBXnt7\nJsD7Hk1N5wcajBUSOBWa57j0cBXq+efXs379Wo4cSVNXN5eenoPcddc99PRcxObNr2E2kXPPbae9\nvWNAudxww1/Q1OTtr4MHD3DzzS8A8Hd/181ll10KHL3IIpVK9QdqqVSKlSszgdnQ9w8D/LqXoq1t\n44Dtjzw4mti/VEhAuH79Btas2Y3ZKFKpVP93NTPfMpFIsHDhhQN6wXPrWPbnikKPoERJ1IInqSaR\nDcLM7A6gCXjJOfeX+V6TPfl4yZIJmBlbtx5mzx7HpElbmDLlbNraNvLaa29w+PDxHDq0h76+afT0\nTOS117awe/cRurt3AqN57LFd9PX9gM2bp5NOp7j//gfYsMGxb980Zs7cNOAu9Ol0Hx98sB0YeLb+\nyCOP0tn5UVIpY82a9cyadS7Tpk3t//9IGyVvqHQnZ57ZSXv77EGDq7q6Ohobz6O9vYOurp15h1gz\nCj2bz7yus9MBWwBYtWpiSXPXMnL3x3Bp1WoPxLp1z3HkyBkAONcBnE9n5/GYfUB3dzc9PVv41a9e\nZNu2EznjjFT/RPzsYPSrX72ON988EYC77rqHhoaG/jq4bNnFA+Y6zpq1g87OvcDwzyHN9Fztus9o\n4QAAEy9JREFU3r2d995rHFAvCimv3CdaeE9+8L4ziUSioBvKvvzyr+nqOp6GhhNob+8gkUj4dfY9\nYA/Tps2irW2FP+w6haamREknD9XW0yoi4YlkEGZm84DjnXOLzewfzWy+c25D7utefLGNjRuP0Nub\noq9vI3v37mX37vHAmfzO79SzYcPPuOeeM+jrg4MHf05vbzfp9Gfo7k7zyiuvsXXrBRw5MoZEYiuH\nD3dx+um7ePfd3WzfvhHnGjh4cCJmh3n77ff5zneeZOrUyRx3XILm5tN58slGwOjp6eZb3/rfAEyb\nNoW6ul/j3C5Gjx7HkiVpFiyY3n8PpvXrN7B69W7q6kbR3d1NQ0MDwJA9B0cP+KeRSs3N6qE4auA9\nvFJ+j9WWAUOsvb29rF69tr9nr1hTpkymsdE7m/OuGC1dHIOqoIdlC0lv165dwDzgTZzbiHPvc+TI\nuYwZ8yRmu+ntPZ/e3tPYv38n77//Ei++mObSS5f1Bzh9fX309PSQSOwmlerl9dcP8KMfbSd3n2eG\n9M262LbteACeeeb5Ab3BuQHI6tVr6esbx86dOzlwoJ3Jkycdk/9ML1m+z5j7RIsbbvgL4GjPXHt7\nB+n0KX6Pcn4TJ07ArI6JE8cwe/a5/beVSafHM8TbBigmsMo3TSGIOlFs73Sp25N4CnJ+mYQvkkEY\ncAGwyl9eA/w2cEwQtm7d0+zbVwckWLduB/AhsIuDB9/n/vu7ee+9qXR3Zx5qfR5wkLq6TkaPHs/B\ngwfo7h5FX18fMAGzaaTT7/H225vp7EzR0HAcp5/ezejRT/Pmmyfwm9+cjlkDEyYc4LOf3cH06Z8E\n4OGHH+Xxx6cBsHjxO0yZsof33z+dcePGAV5QdPvtP+Dxx+vYs2cvnZ3vM2bMmTz44CN0d38y80kG\n7Tko5P5cufd7qqvzniOZuaITvIDn1luTbN06hpkzN3HjjXO55prpx6SVa2Dj9Pv9aQ33vnKIQg9E\n0IFjIent2LEDOAzMAP6A/fs3c+DATkaNGkVvbx8wGjPDuSP09BzizTe3smrVE9x//wOsWTOZ7u7t\nTJ16CpMm9XDo0Aek0xfR1bUF+K3+bbS0LKKt7XusWjWRZ599kc7ORgB++MPVNDQsY+bMZP9FJNl5\nTCQS7N37Nvv3f5zu7g/Zt+/npFLX0dvby8KFF9LW5s3F3LhxQUG9p7k9c+n0JBob3+8f5syWqQ+Z\n3rrMVZ6Z28pcckmaefOa/eHIKwbMEx1suyMRVJ0otne61O1JXGl4tJpENQibAGz1l/cBs/O96PHH\nk8An8CrlRGAOMA54h3ffPUgqNRbYCTQA9cBoGhpOZsaMacyZM5pdu16jt3c3kyc3ceaZJ5FI7Gbv\n3rH09Z1NX98hFiwwZs6cx223rcVsVP92Z86cwYIFXgCzfv0MHn+8B/AO5DNmzCGdHsOoUd08/vhe\nHn98E7t3b2Lfvo8xYQJMnTqaSZPGMHPmDDZvhq6uV4HpBe2UQhqK3EAlmUzS3Nx8zOuyr8osdpuZ\nvwdLu1DDBVW56Qc516vUvFcy/T179gAL8QKxnUAd6fQEnDsNmMRxx+1h4sSnOXjwI4wefRqjRtVx\n3307eOWVk+ju9obNzRKcccbHcW43ZieybJkdE8g3NZ1PR8cOdu06hYYG7wKTMWMmMNQFUC0ti5g/\n/wG6utL09Oyms3MaK1fu7D9Z6OiYQmfnbmDXgKH5jOGeaFFXl6Cp6fy85Z6vPngnId5tZRYsGDi3\na9myi0kmk5HuOerqepUpU84NOxtDKvd3x7m3y5a2Jwk0K/2Q0s+tP0FfORqnYztENwjbhxdNAYwH\n9ua+oLW1FUjhNUoAk/E+ThpIMXXqFHp6jvDBBxNxbgyjRz/FpEnTOOOMs/nMZyZy3XU3MWfOD+nr\n62Pu3Dk0NDTQ3T2LjRt/zvbtxhlnnMSVVzbT3LyQJ55YzamnpoAUH/vYOfz1X3+NsWPHAt4E/lGj\nvEbkuuu+xTPPvEB7ewd9faN5+eXJdHXt4qSTTmXSpMMsWTIh68zcu4Lzxz9ePewVksXIbZgyFaal\nZVH/8E6+ickjUWplHC6oKueXaaRpF1pGhaafnV5dXdqv17kMOBl4Eq++n8rYsadgVseoUWOZMWMG\nra1/zGuvvQHA7Nnncv/9e/jYx86iqekDZs6cwdy5c/rnNWau/MsNRjJ56e6+mk2bXgZg1qxzeP31\nN2hsvGDQHqQf/OA2zjprBf/+709y1lmfPuY1U6acTWPjbpqaph+TRu4TLfLtl2LqarGBfRCC6qFt\naVnEj3/8L3zlK0uK6J2ufI9wuRs5UBAWl/SjeOWogrBgPAdcC/wHsAT459wXtLa2smjRIpYu/TzQ\nQ2PjeCZMeJ+6OuPUU0/j8ss/RyKRYOPGdt5++zd89rPfpqGhYUADlHvw94b7EgPmwNTX17N48UWD\nNI7HNiKXXrqMSy9dlnXlptfLla/hW7bsYp599qn+deW8qq++vr4/bzJyQZdRbnpLly7tX16+fDkA\n99//f/i93/sqcISTTz6VpUvncsUVl/H6617Qlbk9xeWXXwZ49bihIdNIXzWiR1Nlrp4sROY7cOjQ\nXhYtmuFvNxMcFJ+P3LwUI4wrY4PaZn19PR/5yJnDplVtV/9KnI0keGr1fzKiMzRaaFCZOTYPpdB7\nqEUyCHPObTSzbjN7CtiYb1I+wJIlS3DuQ1pbWwcNkoppTIIMVHSglKB86Utf4ktf+tKQ9TxbWHVv\n1KhRgw5dixTuCNBVUgrOHQkmKxIrmSCqkCBpcMMFT60MDCLz5qTgrVkc73hrZvHLtIiIiNQs59wx\n0VksgzARERGRuCvwLjoiIiIiEiQFYSIiIiIhUBAmIiIiEoJIXh05HDObj3cX/Ql49xB7brArKEXi\nSvVcaoHqudSy2E3MN7PvAsfhPc5oH97NXJcAKefc9SWmnQA+T84BAXjQOZcqJW0//RPx7n+Wm/4/\nOec+jGra5U5fec+bbtnqeRDKXWalinr+IPp5rET+dDxX+rWafj/nXKx+gKeKWV9k2iuBm/CelvxR\n//dNwMqA8v4w8EW8Zywl/N9fBB6OctrKe+XTLmc9j/o+rYX8xSGPlcifjudKv1bT799OkIlV4ge4\nA7gHuBL4L8AXgLuB7waQ9rpi1o8g/WeAupx1dcAzUU5bea982uWs51Hfp7WQvzjksRL50/Fc6ddq\n+pmf2M0Jc879lZnNAy4AzsLrwv4n59zGAJL/uZn9Au/hWfvxnl/5KbyIOAj/CCTNrCMr/TlknmAc\n3bTLnb7ynqPM9TwI5S6zUkU9fxD9PJY9fzqeK/0aTh+I4ZywcjOzyUATMB94C3jTObc+wPTr8brG\nJ+AdcLa4AOYnZKV9Ft68ikDTzkpfec+fdtnyHlXl3KdBiHr+IPp5jHr+hhPn43lW+rE8Lmalr/wP\ntQ0FYUeZ2aPOuU+b2V8CS4FHgIuAd5xzNweQftkmiprZBOfcXn/5c3gR+5vAAy6AQlbeB027rHmP\nqnJPei5V1PMH0c9j1PM3nDgfz/30Y3tc9NNX/gvZThW3E0Uzs7XOuRb/weEtzrk+f/0zzrmLAkh/\nJbAJ70qgTPfmUmCuc+7qEtN+wjl3sZl9CzgJeBBYCJzqnPuj0nKuvA+RdlnzHlXl3KdBiHr+IPp5\njHr+hhPn47mffmyPi376yn8BYjcnrMxmmdmPgZl4l00f9tePDij9M/JUjpfMbF0AaWceDHqRc26x\nv/yomT0ZQNqgvA+m3HmPqnLu0yBEPX8Q/TxGPX/DifPxHOJ9XATlvyAKwga6IGs5c9Z0AvCNgNIv\n50TReX7lOzfTjWpmo4ATAkgblPfB5Mt7HcHlParKPem5VFHPH0Q/j1HP33DifDyHeB8XoTrzH/ix\nXcORFeZPFJ3P0Yl+G4AZQU4WzdrWWGBOUGmb2WJgNt7YeybvM51zzweQ9hygzzn3qv/3WLxu5ZLT\n9tP7BPAJ4APgIN4cgn/NDFGUmPb5wD7n3FYzuwQYA7zrnGsrNe0oq2RdHoly1teglLNeBsHMTsEr\n48zE5/nOuf8Vbq6io9LfgTgd0/30Y3tc99Mv+7FdQVgF+VE0HO3mdP7yo865SwJKe8DqINL2078d\nmAz0AqcAX3XO7czMu4hq2n76K/CGIMYAPXhnTfuB05xz1wSYdjfwYVBpR1k563IQyl2nglDOehkE\nvxcgU64Zs4GXs4Znala5vwNxPqZXKP2yfn8qdWzXcGRlHQTynQE0RjxtgE845xYBmNlc4D/M7IYY\npA0wO9NomFmHc+48fzmIsf1yph1l5a5vpSp3nQpC1OvOz/DK81+cc2sBzOyXzrnPhJutyCj3dyDO\nx/RKpF/u709Fvp8KwirrVeBy51/2mmFmayKeNkCdmR3nnDvinNtkZpfjPRZkdsTTBhiVtfz1rOUg\nuoHLmXaUlbu+larcdSoIka47zrk7zGw08F/N7L8B/8bAXrFaV+7vQJyP6ZVIv9zfn4p8PzUcWUFm\nNg3Y45zryVmfcKXfr6psafvpXABsc851ZacNfME595Oopu2nNRt4PXs/mNlxwKedcz+PatpRVu76\nVqpy16kgxKnumHfTyq8AZzvn/ibs/ERBBY65sT2mVyj9sn5/KvX9VBAmIiIiEoJ8E/9EREREpMwU\nhImIiIiEQEGYiIiISAgUhNUIM0ua2ffDzodIFJnZNWb2YQGvu8/M4nLHeBHMbIaZpc1sXth5kWPp\nFhW1wxGRS99FIuh+4JECXvfnZN2mwcySQIdz7s/LlC+RUm0HpgK7w86IHEtBmJRN5h4xYedDZDjO\nuW68u2LnlbktgHNu2N4ykShxzqWBnWHnQ/LTcGRtqTezO81sj/9zi5kZeAGTmX3HzH5jZgfNbL2Z\nLct+s5nNMrNfmNl+M+sys38zsylZ/7/PzB42s/9hZu/gnYGJVISZLTaz583sQzPba2YvmNnszFCj\nmX3WzLaY2WEze8LMzsx674DhSDNrNbMOf/1bwGEzOz57ONLM7gMWA3/mD/ekzey3Kv25pfaY2af9\n43Cd//dH/fq3Ius1f29mq83sjOzhSDNr9v++2P+OHDSzF817TmL2Nj5pZk/6/3/HzP7RzE6s7Cet\nfgrCaocBV/nLFwLXAn8C/KW/7p+BRcDv493R+F+Ah8173ETmxoFPAZvwHpi6BO9p8g9lAjnfp4A5\nwDL/NSJl598E8iG8OjoXWADcAWQe5Dsa+FvgD4Hfxrsb9s+GSfZM4PeA38V7VEw3A4f1/wJ4DvgR\n3nDPVOCdQD6QyNCeBhrwHh4O0Azs8n+TtW7tEGn8A3ATMA9vqPJfM/8ws/OAx4AH8b5PVwAfx6vr\nEiANR9aWHc656/3lLWZ2NvDXZvYQXmMzwzn3G///d5n31PhrgT8D/hT4lXPu5kxiZvaHeF/eJmCD\nv/ow3oNae8v/cUT6jQPGA484537tr9sCYGYX4h3rrnfOPeev+wqw1cwuds49MUiaxwFfcc69n1nh\nn3AYgHNuv5kdAQ455zTcIxXjnDtgZm3AxcB6vIDrB8Df+KMTH+IFaDcx+KOmvuGcexLAzP4X8LSZ\nTXfO7QBuBH7qnLvDf+1bZnYd8JKZneyc21Wuz1Zr1BNWOxzHPgz2eeBUYCHeF3WzP2zzoT80cykw\n039tE7A45//b/XQ/kpXmywrApNKcc3uA+4DHzOwRM/srMzs96yVpvMYq8/rtwA5g1hDJvpMdgIlE\nTJKjPV+LgV8CLwAtwCeBFFl1Po9NWcud/u/J/u8m4Oqc4/3THHu8lxKpJ6y2DPXwXYd35pQbQB3O\neu8jwA153pvdC3BoxLkTKYFz7qtm9l3g08BlwDfN7PPZLykyyYOBZU4keEnga2Z2Dl5PcJu/rgXv\nmPyscy41cLbIANnH+sx3I9MxY8C9eEP6uXaUlGsZQEFY7TDggpx1FwLv4s1rMWCacy45yPtfAr4I\nbI/CA5pF8nHObcI7w7/FzP4f3hywVXiNywV4dR1/Av104NUSN3kEHUclHM/gzXW8CVjnnEv7t0z5\nIfAeXs/YSL0EzHHObS05lzIkDUfWlulm9l0z+5iZXYnXq3WHc+4NvEmZ95nZ75rZTDObb2Y3mNnl\n/nvvwptz81MzW+C/ZqmZ/ZOZnRDS5xEB+m9I+W0z+23/arAWvAnFr/gvSQHfNbMLzezjeBeevOyc\ne7zETW8DFvjbPNmG6HYQCZJz7gBe79fVHJ2A/wJwGt4JdrKE5L+DV69XmNn5/tWXnzWzu0vJsxxL\nQVjtcMBKvKvCngfuwTtj+q7//z/Cu0LyFrzegYfx5optA3DOdQIX4c2teRR4GW8iaDfQk7UN3RBW\nwnAIOAv4D+B1vPlhK/Hqs+HV0b8H/i9H50ZekZOGy1nOV5dz19+G1xu2GegCTs/zHpFySeId05PQ\nf7+75/GOy9nzwXLr8mB1Gz+dDrx5ZjP8tH+FdzXle0FkWo4y59Rmikj1MrNrgO8753SPIxGJFPWE\niYiIiIRAQZiI1AJ1+YtI5Gg4UkRERCQE6gkTERERCYGCMBEREZEQKAgTERERCYGCMBEREZEQKAgT\nERERCYGCMBEREZEQ/H/MB4ksIkGkjgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# increase figure size\n", + "pd.scatter_matrix(drinks[['beer', 'spirit', 'wine']], figsize=(10, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bar Plot: show a numerical comparison across different categories" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "AF 53\n", + "EU 45\n", + "AS 44\n", + "NA 23\n", + "OC 16\n", + "SA 12\n", + "dtype: int64" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# count the number of countries in each continent\n", + "drinks.continent.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nDQ0dNOkcdL8AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with bar plot\n", + "drinks.continent.value_counts().plot(kind='bar')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "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", + "
beerspiritwineliters
continent
AF61.47169816.33962316.2641513.007547
AS37.04545560.8409099.0681822.170455
EU193.777778132.555556142.2222228.617778
NA145.434783165.73913024.5217395.995652
OC89.68750058.43750035.6250003.381250
SA175.083333114.75000062.4166676.308333
\n", + "
" + ], + "text/plain": [ + " beer spirit wine liters\n", + "continent \n", + "AF 61.471698 16.339623 16.264151 3.007547\n", + "AS 37.045455 60.840909 9.068182 2.170455\n", + "EU 193.777778 132.555556 142.222222 8.617778\n", + "NA 145.434783 165.739130 24.521739 5.995652\n", + "OC 89.687500 58.437500 35.625000 3.381250\n", + "SA 175.083333 114.750000 62.416667 6.308333" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate the mean alcohol amounts for each continent\n", + "drinks.groupby('continent').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAekAAAGOCAYAAACzP/t1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XmYVdWdr/H3V2ACIuDEEOAqQ7QTRI1GbRxQwHlIm2uM\nUYytcUAUHB5b27ajsci1wSEOMU7XoUXNDe2URmPiAIZSE4cY49XEOXHACVERRJQrwrp/nEPlVFFU\nFdShzqpT7+d5zgNn71V7r31q+O619tprR0oJSZKUn5pKV0CSJDXNkJYkKVOGtCRJmTKkJUnKlCEt\nSVKmDGlJkjJlSEuSlKlmQzoizoqIJyNiYUTMi4i7I2KLJsrVRsTbEfFpRMyOiOGN1n85In4WEe9H\nxCcRcVdEDCz3wUiSVE1aaknvBlwB7AiMBb4AZkXEBisKRMSZwGnAJGB7YB4wMyLWK9nOZcBBwKHA\nKKAXcE9E2JKXJGkVYnVmHIuIHsBC4MCU0q8jIoB3gMtTSlOLZbpRCOrTU0rXRkTv4vujUkrTi2UG\nAW8A+6aUHijrEUmSVCVWtyXbq/g1HxXfDwH6AfVBm1JaAjwM7FRc9E1gnUZl3gJeKCkjSZIaWd2Q\n/inwNPBY8X3/4r/vNSo3r2Rdf2BZSunDRmXeoxDwkiSpCV1bWzAiLqHQ8t0lta6P3Cd3SJLUBq0K\n6Yi4FDgEGJNSer1k1dziv/2At0qW9ytZNxfoEhEbNWpN96fQLd54X4a7JKlTSSlFU8tb7O6OiJ8C\n3wPGppRebrT6NQohvFdJ+W7ALsCjxUVPAUsblRkEfK2kTOPKZvU699xzK16HjvDyc/Kz8nPys8r9\nlePn1JxmW9IRcSXwfeDbwMKIWHGdeVFKaXFKKUXEZcC/R8SLwCvA2cAi4BfFwF0YETcAF0bEPGA+\ncAnwDDCr2dpJktSJtdTdfQKFa8sPNlpeC/wYIKV0YUR0B64ENgAeB/ZKKS0uKX8qhXusbwW6Uwjn\n76eWTiEkSerEmg3plFKrRn+nlCYDk5tZ/zlwcvHV4YwePbrSVegQ/Jxaz8+qdfycWs/PqnU62ue0\nWpOZtIeIsIEtSeo0IoK0pgPHJElSZRjSkiRlqtWTmeSiMF24cuRlCkkqrw4X0mAY5MiTJ0kqvw4Z\n0lIlrM6JiCeSksrBkJZWS2vC114FSeXhwDFJkjJlSEuSlClDWpKkTBnSmaitraWmpoZ58+ZVuiqS\npEwY0pIkZaqqRnfndK+ut+BIktqqClvSKYNXx7Z48eKWC0mS1roqDOmO7cMPP2TcuHGsv/76bLjh\nhkyYMGGl0HzggQfYbbfd6NmzJz179mTfffflmWeeWWlbL7/8Mocccggbb7wx3bt3Z9ttt+XOO+9s\nUGbatGnU1NQwe/ZsTj75ZPr160fPnj3X6jFKklqnqrq7q8Ghhx7KoEGDmDp1Kk8//TTXXnstb775\nJr/+9a8B+MUvfsERRxzBXnvtxfnnn8+SJUu49tprGTVqFE8++ST/8A//AMALL7zATjvtxIABAzjz\nzDNZb731+OUvf8l3v/tdbrnlFg4//PAG+z3ppJPYcMMNOeecc1i4cGG7H7ckqQkppaxehSqtWnPr\ngQQpg1fzx9CUc889N0VE2m+//Ros/9GPfpQiIs2aNSt98sknaYMNNkjHHHNMgzIfffRR6tu3bxo3\nblz9sj333DONGDEiLVmypEHZvfbaKw0aNKj+/Y033pgiIo0cOTItW7Zsteu9wpocc0fT+p+v6v8s\nJJVP8W9Gk5lod3dmJk2a1OD9ySefDMA999zDzJkzWbBgAYcddhgffPBB/euLL75gl112Yfbs2QDM\nnz+fBx98kO9+97ssWrSoQdm9996bt99+m1deeaXBfo477jhqavxxkKSc2N2dmc0226zB+4022ogN\nNtiA119/nQEDBgCw5557Nvm1Xbp0AeCvf/0rKSVqa2upra1dqVxEMG/evAb7GjZsWJmOQJJULoZ0\nB5BSIiJYvnw5ADfddBMDBw5cZfkV5U477TT222+/JstsscUWDd537969TLWVJJWLIZ2Zl19+ma9+\n9av17z/44AMWLFjA4MGD61u7G2+8MWPHjl3lNoYOHQoUWtbNlZMk5c2LkJm54oorGry//PLLAdh/\n//3Ze++9WX/99ZkyZQpLly5d6Wvff/99APr27cuYMWO47rrreOedd1ZZTpKUN1vSmXnnnXfYb7/9\n2H///XnmmWe4/vrr2Xvvvdl9990BuOaaazj88MPZZpttOOyww+jbty9z5szhvvvuY8SIEdx4440A\nXH311ey8885stdVWHHfccQwdOpR58+bxxBNP8MILL6w0cEySlB9DOhMRQUQwffp0zjvvPH74wx9S\nU1PDcccdx8UXX1xf7pBDDmHAgAFMmTKFiy++mCVLljBw4EB23nlnJkyYUF9u8803549//COTJ0/m\n5ptv5oMPPqBv375svfXWnHfeeSvtW5KUn0iZzTEdEam5OkXEKufFzilscvtc17bmvi/VovDz1Zpj\nrP7PQlL5FP9+NhlgVdWS9g+jJKmaOHBMkqRMGdKSJGXKkJYkKVOGtCRJmTKkJUnKlCEtSVKmDGlJ\nkjJlSEuSlClDWpKkTBnSkiRlqqqmBZUkVZ/VeS5DtU0PbUu6StXU1DB58uRWla2rq6OmpoaHH354\nLddKktZUasWr+hjSVWx1zj4bl/3Nb37T6pCXJK0dPqpyLan05/r555/TpUsXunTp0mLZlBJLly5l\nnXXWqf8MJ02axFVXXcXy5ctbtT8fVdmgZNV/FlJ7qvbfvU7zqEoAaitdAbKow5e+9KUWyyxevJge\nPXoQEU2Wz+mkR5I6I7u7M/LJJ59w+umnM2TIELp160bfvn0ZM2YMjzzyCACjR4/m61//Os888wyj\nRo2iR48ebLrpplx88cUrbavxNelp06ZRU1PD7NmzOfnkk+nXrx89e/YEVr4mfdRRR3HVVVeRUqKm\npqb+NWfOnHb4FCRJK1RfS7oDO+GEE7j99tuZNGkSW2yxBfPnz+cPf/gDzz77LKNGjQJg4cKF7LPP\nPhx00EEcdthhzJgxgzPOOINly5bxr//6rw2211RL+KSTTmLDDTfknHPOYeHChU3WY8KECbz77rvM\nnDmTn//85/XLN9544zIerSSpJYZ0Ru655x7Gjx/PT37yk1WWmTt3LlOnTuXMM88ECoG6xx578OMf\n/5gJEybQq1evZvfRs2fP+pbzqowcOZLNNtuMmTNnMm7cuDU7GElSm9ndnZH111+fxx9/nHfeeWeV\nZbp06cLEiRPr39fU1DBx4kQ+/fRTZs+e3eI+jjvuuGYDWpKUD/9aZ+Siiy7iueeeY5NNNmH77bfn\nnHPO4eWXX25Qpl+/fqy33noNlm222WYAvPHGGy3uY9iwYeWrsCRprTKkM3LwwQfz6quvctVVV7Hp\nppty+eWXs+WWWzJ9+vSy7aN79+5l25Ykae0ypDPTr18/xo8fzx133MGcOXMYOnQo5557bv36uXPn\nsmjRogZfs6K1PXjw4LLVw9uvJKnyDOlMLF++fKXR1r1792bw4MENli9fvpwrr7xypffrrrsuY8aM\nKVt9evToAcCCBQvKtk1J0upxdHcmPv74YwYOHMjBBx/MVlttRa9evfj973/P/fffz0knnVRfrn//\n/vz0pz9lzpw5bLHFFsyYMYOHHnqIqVOn1t/3XA7bb789UJh5bJ999qFr16780z/9E+uuu27Z9iFJ\nal71hXRtpSuwZnr06MGkSZOYOXMmd999N0uXLmXo0KFcfPHFnHLKKfXl1l9/fW699VYmTpzItGnT\n6NOnDxdeeCGnn356i/torgu78bqDDjqIU089lenTp9dfE3/ttdfYZJNN1vAIJUmrq6rm7q52o0eP\nZt68eTz//POVrspKOsP3pdrnD5ZyVe2/e51r7m5JHUJrByd2xD+6UrkY0h2Mf7BUVWrbuF6qco7u\n7kAiwlujJKkTsSXdgbRm2k9JUvWwJS1JUqYMaUmSMmVIS5KUKUNakqRMGdKSJGXKkJYkKVOGtCRJ\nmTKkO7ijjjqKIUOGVLoakqS1wJDu4JyFTJKqV1XNOJZTWLXXHNvXXXed83lLUpWqqpCG1j3MbG1r\nz1OFrl2r7lsoSSqyuzsTf/7zn6mpqeGXv/xl/bKXXnqJmpoaNt988wZljzjiCAYPHgw0fU26pqaG\nE044gRkzZjBixAi6devGiBEjuP/++1fa77vvvsuxxx5L//796datG8OHD+eaa64p/wFKklabIZ2J\nESNGsMEGG/Dwww/XL3v44Yepqanhb3/7G3Pnzq1f/sgjj7DbbrvVv2+qm/+xxx5j0qRJjBs3jgsv\nvJAlS5bwne98h/nz59eXmTdvHiNHjuSBBx5g0qRJXH755YwYMYITTzyR//iP/1hLRypJai37SjMR\nEey8884NQvqRRx5h3333pa6ujocffphDDjmEN998kzlz5rDrrrvWl2vqmvSLL77I888/z9ChQwEY\nM2YMW2+9NdOnT2fixIkAnH322SxdupQ///nPbLTRRgCMHz+e8ePHM2XKFCZNmkTv3r3X5mFLkpph\nSzoju+yyC88++yyLFi0CCiE9duxYRo4cWR/ejzzyCACjRo1qdltjxoypD2iALbfckl69evHaa68B\nhWC/44472H///Ukp8cEHH9S/9txzTz777DOeeOKJtXGYkqRWsiWdkVGjRrF8+XJ+97vfMWLECN54\n4w122203PvnkE26//XagENL9+vVb6Tp1Y5tssslKyzbYYAM++ugjAN5//30WLFjADTfcwA033LBS\n2Yjg/fffL8NRSZLWlCGdke22247u3bvz0EMPMX/+fHr27Mk222zDwoULqa2t5aOPPuKRRx5hl112\naXFbXbp0aXL5iq7x5cuXAzBu3DiOPvroJssOHz58DY9EklQOLYZ0ROwKnA5sCwwAfpBSuqlk/TTg\nnxt92eMppZ1KynwZ+AlwKNAdeBA4MaX0dlsPoJqss8469V3bCxcuZOeddyYiGDlyJF27duWuu+7i\nhRde4Pjjj2/zvvr06UPPnj1ZunQpY8eOLUPtJUnl1ppr0j2AZ4FTgM9Y+VbkBMwE+pe89mtU5jLg\nIAohPQroBdwTEV4Tb2TUqFE89dRTzJw5s35wWPfu3dluu+244IILSCk1GDQGazaJS5cuXTj44IOZ\nMWMGzz777Err7eqWpMprMSRTSvemlM5OKd0JLG+iSACfp5TmlbwW1K+M6A0cDZyeUnowpfQ0cASw\nFbBHeQ6jeowaNYqlS5fy6quvNgjjXXfdlZdeeonevXuz9dZbN/ia1s441rjc+eefz6BBg9hxxx05\n9dRTufbaa7ngggs47LDDmrymLUlqX+VoySZgl4h4LyJeiohrI6JPyfpvAusAD9R/QUpvAS8AO6EG\ndtxxR7p27Ur37t3ZYYcd6pevGM298847Nyi/OnN3Ny7Xp08fnnjiCY499lhmzJjBSSedxGWXXca8\nefO45JJL2ngkkqS2itWZ9zkiFgETU0o3lyz7HrAYeA0YApwHdAG+mVL6PCLGATellNZptK0HgZdT\nSic0Wp6aq1NErLLl2Bnn7s5Fc9+XalH4+WrNMVb/Z1EOEQG1LRSq7Xy/S1pZtf/uFf9+NhlgbR7d\nnVK6teTtcxHxFPAGsD/w32uyzdra2vr/jx49mtGjR7e2LmuyO0mS2k1dXR11dXWtKtvmlvQqyr0K\nXJ1SuigixgKzgD4ppQ9LyjwH3JZSmtzoa9e4Ja3K6Qzfl2o/m29vtqTVWtX+u9dcS7rso6uL16MH\nAu8WFz0FLAX2KikzCPga8Gi59y9JUrVozX3SPYDNim9rgE0j4hvAh8B8YDJwBzAXGAxMBd6j2NWd\nUloYETcAF0bEvOLXXAI8Q6GFLUmSmtCalvT2wJ+Kr24UQvlPxX+XASOAu4CXgGkURm3vmFJaXLKN\nUymE9q3A74CPgW81268tSVInt1rXpNuD16Q7ps7wfan262LtzWvSaq1q/91r12vSkiSpPAxpSZIy\n5VOwJJVdThMLSR2ZIS1pLWnp2qBBLrXE7m5JkjJlSEuSlClDOhPTpk2jpqaGOXPmAHDUUUcxZMiQ\nCtdKklRJVRXSKx7bmMOrXMdSasqUKdx1111t3rYqr71+jiR1bNU3cGz27ErXAMaMafMmrrvuupVu\nyp8yZQqHHHIIBx54YJu3r8pzWJWkllRfSFeJrl1X/tasjVm9li1bxrJly/jSl75U1u1Kktquqrq7\nq0nja9I1NTUsXryYm266iZqaGmpqahhT0mJfuHAhp512Gptssglf/vKXGTZsGOeddx7Lly+vL/P6\n669TU1PDBRdcwBVXXMFmm21Gt27dePzxxwG47bbb2H777enduze9evVi+PDhnHfeee130JKkBmxJ\nZ6z0muQtt9zCscceyz/+4z8yfvx4APr16wfAZ599xpgxY5gzZw4TJkxg8ODBPPHEE9TW1vLGG29w\n3XXXNdjuLbfcwuLFizn++OPp2bMn/fv3Z9asWRx66KHssccenH/++XTp0oUXX3yR3//+9+13wJKk\nBgzpjJV2bR9++OFMmDCBoUOHMm7cuAblLr30Ul566SWefvppNt98cwCOPfZYhgwZwtlnn80ZZ5xR\nvxxgzpw5vPLKK/UhD3D11VfTu3dv7r//fgcsSVIm7O6uArfddhujRo1io4024oMPPqh/7b777gDU\n1dU1KP/tb3+7QUADrL/++nzyySfcf//97VVtSVILbElXgZdffplnn32WPn36rLQuInj//fcbLBs2\nbNhK5U488URuv/129ttvPwYMGMAee+zBd77zHb71rW+ttXpLkppnSFeBlBK77747Z511VpPrG0+K\n0r1795XK9OnTh6effppZs2Zx7733ct9993HzzTdzwAEHcPfdd6+VekuSmmdIdyCrulY8bNgwPv74\nY8aOHdum7a+zzjrsu+++7LvvvgCcddZZXHDBBTz66KPstNNObdq2JGn1eU06Y41DuUePHsyfP3+l\nct/73vd48sknuffee1dat2jRIj7//PMW99XUdr/xjW8Ahdu7JEntz5Z0xhpPXLLddtsxa9YsLr74\nYgYOHEi/fv0YM2YMZ5xxBr/61a848MADOfLII9l222357LPP+Mtf/sIdd9zBX/7yFzbZZJNm93XM\nMcfw4YcfsvvuuzNo0CDefvttrrjiCgYMGMCuu+66Ng9TkrQK1RfSZZiSs1JKW85Nzd186aWXcvzx\nx1NbW8vixYsZPXo0Y8aMoVu3btTV1TF16lRuu+02brnlFnr27Mnmm2/Oj370o5VGcjfliCOO4Prr\n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\nRK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# side-by-side bar plots\n", + "drinks.groupby('continent').mean().plot(kind='bar')" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAekAAAGOCAYAAACzP/t1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XuUXGWZ7/Hv0wkjIQQIhCQSBkK4qCGAILACJJAgd2Z0\nDiJKkBFREEy4LEWZGUE6HgQFYRAFOUEEL8eIXIwM3giYACqgogMOIKjchdBASAxgDoE854+qtJVK\np9OddHe9Xf39rFUrXXu/VfVUdbp++3333u+OzESSJJWnpdEFSJKkjhnSkiQVypCWJKlQhrQkSYUy\npCVJKpQhLUlSoQxpSZIK1WlIR8S/R8SvI2JxRLRFxE0RsWMH7Voj4i8R8WpEzIuI8XXr3xQRX46I\n5yPi5Yj4QUSM6ek3I0lSM1lTT3o/4CvAXsD+wOvArRExfEWDiDgT+DgwA9gDaAPmRsSGNc9zCXAE\n8H5gMrARcHNE2JOXJGk1ojszjkXEUGAx8O7M/GFEBPAMcGlmnl9tsz6VoD4jM2dFxMbV+8dl5uxq\nmy2BJ4BDM/OWHn1HkiQ1ie72ZDeqPual6v1tgFFAe9Bm5lLgDmDv6qJ3AOvVtXkaeKimjSRJqtPd\nkP4S8Dvgrur90dV/n6tr11azbjTwRma+WNfmOSoBL0mSOjC4qw0j4mIqPd9J2bUxcq/cIUnSOuhS\nSEfEfwJHAVMz8/GaVQuq/44Cnq5ZPqpm3QJgUERsVtebHk1lWLz+tQx3SdKAkpnR0fI1DndHxJeA\n9wH7Z+YjdasfoxLCB9W0Xx+YBPyyuuheYFldmy2Bt9a0qS+2qNs555zT8Br6w83Pyc/Kz8nPqvRb\niZ9TZzrtSUfEZcAHgH8BFkfEiv3MSzLzlczMiLgE+I+I+APwR+AsYAnwnWrgLo6Iq4ALIqINWAhc\nDNwH3NppdZIkDWBrGu4+mcq+5dvqlrcCnwXIzAsiYghwGTAcuBs4KDNfqWl/OpVzrK8FhlAJ5w/k\nmjYhJEkawDoN6czs0tHfmTkTmNnJ+teAU6u3fmfKlCmNLqFf8HPqOj+rrvFz6jo/q67pb59TtyYz\n6QsRYQdbkjRgRAS5tgeOSZKkxjCkJUkqVJcnMylFZbpwlcjdFJLUs/pdSINhUCI3niSp5/XLkJYa\nYW03RNyolLS2DGmpW7obuI4wSFp7HjgmSVKhDGlJkgplSEuSVChDuhCtra20tLTQ1tbW6FIkSYUw\npCVJKlRTHd1d0rm6nnYjSVpXTdiTzgJu/dsrr7yy5kaSpF7XhCHdv7344otMmzaNTTbZhE033ZST\nTjppldC85ZZb2G+//Rg2bBjDhg3j0EMP5b777lvluR555BGOOuooRowYwZAhQ9htt9244YYbVmpz\nzTXX0NLSwrx58zj11FMZNWoUw4YN69X3KEnqmqYa7m4G73//+9lyyy05//zz+d3vfsesWbN46qmn\n+OEPfwjAd77zHY499lgOOuggPv/5z7N06VJmzZrF5MmT+fWvf81b3vIWAB566CH23ntvtthiC848\n80w23HBDbrzxRt773vfyrW99i2OOOWal1z3llFPYdNNNOfvss1m8eHGfv29JUgcys6hbpaTV62w9\nkJAF3Dp/Dx0555xzMiLysMMOW2n5Zz7zmYyIvPXWW/Pll1/O4cOH54c//OGV2rz00ks5cuTInDZt\nWvuyAw88MCdMmJBLly5dqe1BBx2UW265Zfv9q6++OiMiJ06cmG+88Ua3615hbd5zf7N2/7+a/3OR\ntG6q3xMdZqLD3YWZMWPGSvdPPfVUAG6++Wbmzp3LokWLOProo3nhhRfab6+//jqTJk1i3rx5ACxc\nuJDbbruN9773vSxZsmSltgcffDB/+ctf+OMf/7jS65xwwgm0tPjfQZJK4nB3YbbffvuV7m+22WYM\nHz6cxx9/nC222AKAAw88sMPHDho0CIA//elPZCatra20trau0i4iaGtrW+m1tt122x56B5KknmJI\n9wOZSUSwfPlyAL7xjW8wZsyY1bZf0e7jH/84hx12WIdtdtxxx5XuDxkypIeqlST1FEO6MI888gjb\nbbdd+/0XXniBRYsWMXbs2Pbe7ogRI9h///1X+xzjxo0DKj3rztpJksrmTsjCfOUrX1np/qWXXgrA\n4YcfzsEHH8wmm2zCeeedx7Jly1Z57PPPPw/AyJEjmTp1KldeeSXPPPPMattJkspmT7owzzzzDIcd\ndhiHH3449913H1/72tc4+OCDeec73wnAFVdcwTHHHMOuu+7K0UcfzciRI3nyySf5yU9+woQJE7j6\n6qsB+OpXv8o+++zDzjvvzAknnMC4ceNoa2vjnnvu4aGHHlrlwDFJUnkM6UJEBBHB7NmzOffcc/n0\npz9NS0sLJ5xwAhdddFF7u6OOOootttiC8847j4suuoilS5cyZswY9tlnH0466aT2djvssAO/+c1v\nmDlzJt/85jd54YUXGDlyJLvssgvnnnvuKq8tSSpPZGFzTEdEdlZTRKx2XuySwqa0z7W3dfZ7aRaV\n/1/dfY/N/7lIWjfV788OA6ypetJ+GUqSmokHjkmSVChDWpKkQhnSkiQVypCWJKlQhrQkSYUypCVJ\nKpQhLUlSoQxpSZIKZUhLklQoQ1qSpEI11bSgkqTms7bXZWiGqaLtSTeplpYWZs6c2aW28+fPp6Wl\nhTvuuKOXq5KktZXdvDUHQ7qJdWfrs77tj370oy6HvCSpd3ipyl7S6M/1tddeY9CgQQwaNGiNbTOT\nZcuWsd5667V/hjNmzODyyy9n+fLlXXo9L1W52kc1/eci9bZm/9sbMJeqBKC10QVQRA3/8A//sMY2\nr7zyCkOHDiUiOmxf0kaPJA1EDncX5OWXX+aMM85gm222Yf3112fkyJFMnTqVO++8E4ApU6bwtre9\njfvuu4/JkyczdOhQtt56ay666KJVnqt+n/Q111xDS0sL8+bN49RTT2XUqFEMGzYMWHWf9HHHHcfl\nl19OZtLS0tJ+e/LJJ/vgU5AkrdB8Pel+7OSTT+a6665jxowZ7LjjjixcuJBf/epX3H///UyePBmA\nxYsXc8ghh3DEEUdw9NFHM2fOHD75yU/yxhtv8KlPfWql5+uoJ3zKKaew6aabcvbZZ7N48eIO6zjp\npJN49tlnmTt3Lt/+9rfbl48YMaIH360kaU0M6YLcfPPNnHjiiXzxi19cbZsFCxZw/vnnc+aZZwKV\nQD3ggAP47Gc/y0knncRGG23U6WsMGzasvee8OhMnTmT77bdn7ty5TJs2be3ejCRpnTncXZBNNtmE\nu+++m2eeeWa1bQYNGsT06dPb77e0tDB9+nReffVV5s2bt8bXOOGEEzoNaElSOfy2LsiFF17IAw88\nwFZbbcUee+zB2WefzSOPPLJSm1GjRrHhhhuutGz77bcH4Iknnljja2y77bY9V7AkqVcZ0gU58sgj\nefTRR7n88svZeuutufTSS9lpp52YPXt2j73GkCFDeuy5JEm9y5AuzKhRozjxxBO5/vrrefLJJxk3\nbhznnHNO+/oFCxawZMmSlR6zorc9duzYHqvD068kqfEM6UIsX758laOtN954Y8aOHbvS8uXLl3PZ\nZZetcn+DDTZg6tSpPVbP0KFDAVi0aFGPPackqXs8ursQf/3rXxkzZgxHHnkkO++8MxtttBG/+MUv\n+OlPf8opp5zS3m706NF86Utf4sknn2THHXdkzpw53H777Zx//vnt5z33hD322AOozDx2yCGHMHjw\nYN71rnexwQYb9NhrSJI613wh3droAtbO0KFDmTFjBnPnzuWmm25i2bJljBs3josuuojTTjutvd0m\nm2zCtddey/Tp07nmmmvYfPPNueCCCzjjjDPW+BqdDWHXrzviiCM4/fTTmT17dvs+8ccee4ytttpq\nLd+hJKm7mmru7mY3ZcoU2traePDBBxtdyioGwu+l2ecPlkrV7H97A2vubkn9ztocqNhfvoCldWFI\n9zN+MalptfZSW6kf8+jufiQiPDVKkgYQe9L9SFem/ZQkNQ970pIkFcqQliSpUIa0JEmFMqQlSSqU\nIS1JUqEMaUmSCmVIS5JUKEO6nzvuuOPYZpttGl2GJKkXGNL9nLOQSVLzaqoZx0oKq76aY/vKK690\nPm9JalJNFdLQ/YuZ9Ya+3FQYPLjpfoWSpCqHuwvx+9//npaWFm688cb2ZQ8//DAtLS3ssMMOK7U9\n9thjGTt2LNDxPumWlhZOPvlk5syZw4QJE1h//fWZMGECP/3pT1d53WeffZaPfOQjjB49mvXXX5/x\n48dzxRVX9PwblCR1myFdiAkTJjB8+HDuuOOO9mV33HEHLS0t/PnPf2bBggXty++8807222+/9vsd\nDfPfddddzJgxg2nTpnHBBRewdOlS3vOe97Bw4cL2Nm1tbUycOJFbbrmFGTNmcOmllzJhwgQ+9rGP\n8bnPfa6X3qkkqascKy1ERLDPPvusFNJ33nknhx56KPPnz+eOO+7gqKOO4qmnnuLJJ59k3333bW/X\n0T7pP/zhDzz44IOMGzcOgKlTp7LLLrswe/Zspk+fDsBZZ53FsmXL+P3vf89mm20GwIknnsiJJ57I\neeedx4wZM9h44417821LkjphT7ogkyZN4v7772fJkiVAJaT3339/Jk6c2B7ed955JwCTJ0/u9Lmm\nTp3aHtAAO+20ExtttBGPPfYYUAn266+/nsMPP5zM5IUXXmi/HXjggfztb3/jnnvu6Y23KUnqInvS\nBZk8eTLLly/n5z//ORMmTOCJJ55gv/324+WXX+a6664DKiE9atSoVfZT19tqq61WWTZ8+HBeeukl\nAJ5//nkWLVrEVVddxVVXXbVK24jg+eef74F3JUlaW4Z0QXbffXeGDBnC7bffzsKFCxk2bBi77ror\n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\nT90KlQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# drop the liters column\n", + "drinks.groupby('continent').mean().drop('liters', axis=1).plot(kind='bar')" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAekAAAGOCAYAAACzP/t1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3X2YnfO97/H3d8KuICFEkkq2h6h2N4KtxRUPYaKe7bP3\nOTY2waGKahPksu3au6VGTyuqZSub9kRt+nCkStvU0SehGbRFH0/0eG4pghiENGiOkO/5414ZKyuT\nzCSZzPpN5v26rnVl1n3/1lrfe2XNfNbvd9/3747MRJIklael2QVIkqSuGdKSJBXKkJYkqVCGtCRJ\nhTKkJUkqlCEtSVKhDGlJkgrVbUhHRFtELG24PddFm2cj4o2ImBMR4xrWvysiroqIFyPitYj4fkSM\n7u2NkSRpfdLTnvQjwKi6287LVkTEecA5wFRgD6ADmB0Rm9Y9/grgSOBYYCIwFLgtIuzJS5K0Ehv0\nsN3bmdnRuDAiApgGTM/M79WWnUQV1JOBGRGxGXAKcHJm3llrcyLwFHAgcPtab4UkSeuhnvZkx9aG\ns5+IiJkRsX1t+fbASOqCNjMXA3cDe9cWfRDYsKHNPODhujaSJKlBT0L6PuAk4BDgNKrh7l9ExBa1\nnwFeaHhMR926UVQ98Zcb2rxAFfCSJKkL3Q53Z+aP6+7+34i4F3iSKrjvX9VD17I2SZIGtJ7uk+6U\nmW9ExIPAe4BZtcUjgXl1zUYC82s/zwcGRcSWDb3pUVTD4suJCMNdkjTgZGY0Llvto6sjYiPg/cDz\nmfkkVQgf3LB+X+AXtUW/AZY0tBkD/E1dm8ZCi7pdeOGFTa+hv9x8r3yffK98n0q+lfo+rUy3PemI\n+CJwK/AMMAK4ABgMfK3W5ArgkxHxCPA4cD6wCLixFrgLI+I64NKI6AAWAJcDc4E7unt9SZIGqp4M\nd48GZgLDgReBe4EJmfkMQGZeGhGDgauBYVQHmh2cma/XPcc04C3gJqqAvwM4IVf19UGSpAGuJweO\nHdeDNhcBF61i/ZvAWbVbv9Pa2trsEvoN36ue8X3qOd+rnvF96pn+9j5FaZ3ZiLCDLUkaUCKC7I0D\nxyRJUt8wpCVJKtRqnyctSSpXdUkFlWZNd+Ma0pK0nvG4nrKszRcnh7slSSqUIS1JUqEMaUmSCmVI\nS5JUKENakqRCGdKSpKK1tbXR0tJCR0dHs0vpc4a0JEmF8jxpSRoASprkxPO4e86etCQNGFnArX97\n/fXXu2/UiwxpSVK/8PLLLzN58mQ233xztthiC84444wVQvP2229n//33Z8iQIQwZMoTDDjuMuXPn\nrvBcjz32GMcccwzDhw9n8ODBfOADH+A73/nOcm1uuOEGWlpamDNnDmeddRYjR45kyJAh63QbGznc\nLUnqF4499ljGjBnD9OnT+d3vfseMGTN45pln+MEPfgDAjTfeyIknnsjBBx/MJZdcwuLFi5kxYwYT\nJ07kV7/6Fe973/sAePjhh9l7773ZeuutOe+889h000357ne/y9FHH803vvENjj/++OVe98wzz2SL\nLbbgggsuYOHChX270ZlZ1K0qSSoTzR8r7PImLbOyz0P1WckCbqv/eb3wwgszIvLwww9fbvmnP/3p\njIi844478rXXXsthw4blRz7ykeXavPLKKzlixIicPHly57KDDjoox48fn4sXL16u7cEHH5xjxozp\nvH/99ddnROSECRPy7bffXu26l+nJNtfarJCJDndLq6npidxwkwaKqVOnLnf/rLPOAuC2225j9uzZ\nvPrqqxx33HG89NJLnbe33nqLfffdlzlz5gCwYMEC7rzzTo4++mgWLVq0XNtDDjmEZ599lscff3y5\n1znttNNoaWlOXDrcLUnqF3bcccfl7m+55ZYMGzaMP/3pT2y99dYAHHTQQV0+dtCgQQD84Q9/IDNp\na2ujra1thXYRQUdHx3KvtcMOO/TSFqw+Q1qS1G9lJhHB0qVLAfja177G6NGjV9p+WbtzzjmHww8/\nvMs2O+2003L3Bw8e3EvVrj5DWpLULzz22GO85z3v6bz/0ksv8eqrr7Lddtt19naHDx/OAQccsNLn\nGDt2LFD1rFfVrhTuk5Yk9Qv/8R//sdz9K6+8EoAjjjiCQw45hM0335yLL76YJUuWrPDYF198EYAR\nI0YwadIkrr32Wp577rmVtiuFPWlJUr/w3HPPcfjhh3PEEUcwd+5cvvrVr3LIIYfwoQ99CICvfOUr\nHH/88ey2224cd9xxjBgxgqeffpof//jHjB8/nuuvvx6AL3/5y+yzzz7ssssunHbaaYwdO5aOjg7u\nv/9+Hn744RUOHGsmQ1qSVLSIICKYOXMmn/3sZ/nUpz5FS0sLp512Gpdddllnu2OOOYatt96aiy++\nmMsuu4zFixczevRo9tlnH84444zOdu9973v59a9/zUUXXcTXv/51XnrpJUaMGMGuu+7KZz/72RVe\nu5kiC5tDNSKytJqkZSKiuNOeApwLWZ0iosvPQ7PDpt5A+7yu7P+kizYr/CfZk5akAWCgBeP6wgPH\nJEkqlCEtSVKhDGlJkgplSEuSVChDWpKkQhnSkiQVypCWJKlQhrQkSYUypCVJKpQhLUlSoQxpSZIK\nZUhLkgaUlpYWLrrooh61bW9vp6WlhbvvvnsdV9U1Q1qSNOCszlXBGtv+8Ic/7HHIry0vVSmtBi9V\nqdJ5qcruvfnmmwwaNIhBgwZ12zYzWbJkCRtuuGHnezh16lSuueYali5d2qPX81KVkqTutTW7AIqo\n4a/+6q+6bfP666+zySabEBFdtu+rLz0Od0uSivfaa69x7rnnsv3227PRRhsxYsQIJk2axD333ANA\na2sr73//+5k7dy4TJ05kk002Ydttt+Wyyy5b4bka90nfcMMNtLS0MGfOHM466yxGjhzJkCFDgBX3\nSZ988slcc801ZCYtLS2dt6effnqdbLc9aUlS8T72sY9x8803M3XqVHbaaScWLFjAL3/5Sx544AEm\nTpwIwMKFCzn00EM58sgjOe6445g1axb/8i//wttvv80nPvGJ5Z6vq57wmWeeyRZbbMEFF1zAwoUL\nu6zjjDPO4Pnnn2f27Nl885vf7Fw+fPjwXtzadxjSkqTi3XbbbZx++ul88YtfXGmb+fPnM336dM47\n7zygCtQDDzyQz3zmM5xxxhkMHTp0la8xZMiQzp7zykyYMIEdd9yR2bNnM3ny5DXbmNXgcLckqXib\nb7459913H88999xK2wwaNIgpU6Z03m9paWHKlCm88cYbzJkzp9vXOO2001YZ0M1QVjWSJHXhC1/4\nAg8++CDbbLMNe+yxBxdccAGPPfbYcm1GjhzJpptuutyyHXfcEYCnnnqq29fYYYcdeq/gXmJIS5KK\nd9RRR/HEE09wzTXXsO2223LllVey8847M3PmzF57jcGDB/fac/UWQ1qS1C+MHDmS008/nVtuuYWn\nn36asWPHcuGFF3aunz9/PosWLVruMct629ttt12v1dGX55wb0pKkoi1dunSFo60322wztttuu+WW\nL126lKuvvnqF+xtvvDGTJk3qtXo22WQTAF599dVee86V8ehuSVLR/vznPzN69GiOOuoodtllF4YO\nHcrPf/5zfvKTn3DmmWd2ths1ahRf+tKXePrpp9lpp52YNWsWd911F9OnT+8877k37LHHHkA189ih\nhx7KBhtswN///d+z8cYb99prLGNIS9JA0dbsAtbMJptswtSpU5k9eza33norS5YsYezYsVx22WWc\nffbZne0233xzbrrpJqZMmcINN9zAVlttxaWXXsq5557b7Wusagi7cd2RRx7JtGnTmDlzZuc+8Sef\nfJJtttlmDbdwFXU1ew7VRs7drZI5d7dK15N5otdHra2tdHR08NBDDzW7lBWszdzd7pOWJKlQhrQk\nab2wPo4gGNKSpH4vIoq6HGdvcZ+0tBrcJ63SDdR90iXrs33SEfFvEbE0Iq5qWN4WEc9GxBsRMSci\nxjWsf1dEXBURL0bEaxHx/YgYvTqvLUnSQNPjkI6ICcBpwAPwTmciIs4DzgGmAnsAHcDsiKifQPUK\n4EjgWGAiMBS4LSIcbpckaSV6FJIRsRnwTeDDwCt1ywOYBkzPzO9l5oPAScAQYHLdY08Bzs3MOzPz\nd8CJwC7Agb24LZIkrVd62pOdAdycmXdR7QJbZntgJHD7sgWZuRi4G9i7tuiDwIYNbeYBD9e1kSRJ\nDbqdcSwiTgPGUusZw3LHzYyq/ftCw8M6gK3r2rydmS83tHmBKuAlSVIXVhnSEfE+4HPAvpn59rLF\nLN+bXhkPL5QkaS1015PeCxgOPFh3/tkgYGJEfBQYX1s2EphX97iRwPzaz/OBQRGxZUNvehTVsPgK\n2traOn9ubW2ltbW1u+2QJKnfaG9vp729vdt2qzxPunbQV/2pUgFcDzwGXEy1X/lZ4KrMnF57zEZU\nQ9nnZua1tefoAE7OzJm1NmOAp4BDM3N2w2t6nrSK5XnSKp3nSb/j5JNP5q677uLJJ59sah1rc570\nKnvSmbkQWO4inhHxBvBKZj5Uu38F8MmIeAR4HDgfWATcuOw5IuI64NKI6AAWAJcDc4E7erSFkiSt\npvVhFrI1uVRlUre/OTMvjYjBwNXAMOA+4ODMfL3uMdOAt4CbgMFU4XyCXWZJ6hslhVVf/em/9tpr\n+/2ogtOCSqvB4W6VbmVDq6V8dgfi59VLVUqS1lu///3vaWlp4bvf/W7nskcffZSWlhbe+973Ltf2\nxBNPZLvttgOqfdLbb7/9cutbWlr42Mc+xqxZsxg/fjwbbbQR48eP5yc/+ckKr/v8889z6qmnMmrU\nKDbaaCPGjRvHV77yld7fwFUwpCVJRRs/fjzDhg3j7rvfOSHo7rvvpqWlhT/+8Y/Mnz+/c/k999zD\n/vvv33m/q2H+e++9l6lTpzJ58mQuvfRSFi9ezD/+4z+yYMGCzjYdHR1MmDCB22+/nalTp3LllVcy\nfvx4Pv7xj/O5z31uHW3pitZkn7QkSX0mIthnn32WC+l77rmHww47jPb2du6++26OOeYYnnnmGZ5+\n+mn222+/znZdDTM/8sgjPPTQQ4wdOxaASZMmseuuuzJz5kymTJkCwPnnn8+SJUv4/e9/z5ZbbgnA\n6aefzumnn87FF1/M1KlT2WyzzdblZgP2pCVJ/cC+++7LAw88wKJFi4AqpA844AAmTJjQGd733HMP\nABMnTlzlc02aNKkzoAF23nlnhg4d2nmqVmZyyy23cMQRR5CZvPTSS523gw46iL/85S/cf//962Iz\nV2BPWpJUvIkTJ7J06VJ+9rOfMX78eJ566in2339/XnvtNW6++WagCumRI0eusJ+60TbbbLPCsmHD\nhvHKK9X1o1588UVeffVVrrvuOq677roV2kYEL774Yi9sVfcMaUlS8XbffXcGDx7MXXfdxYIFCxgy\nZAi77bYbCxcupK2tjVdeeYV77rmHfffdt9vnGjRoUJfLlw2NL126FIDJkydzyimndNl23Lhxa7gl\nq8eQliQVb8MNN+wc2l64cCH77LMPEcGECRPYYIMN+P73v8/DDz/MRz/60bV+ra222oohQ4awZMkS\nDjjggF6ofs25T1qS1C9MnDiR3/zmN8yePbvz4LDBgwez++678/nPf57MXO6gMVizSVwGDRrEUUcd\nxaxZs3jggQdWWN9XQ91gSEuS+omJEyeyZMkSnnjiieXCeL/99uPRRx9ls802Y9ddd13uMT2dOKWx\n3SWXXMKYMWPYa6+9mDZtGjNmzODzn/88xx13XJf7tNcVQ1qS1C/stddebLDBBgwePJg999yzc/my\no7n32Wef5dqvztzdje222mor7r//fk499VRmzZrFmWeeyRVXXEFHRweXX375Wm5JzzktqLQaSpla\nsd5AnGZRK7eqaUFLMdA+r+vsKliSpPXDQAvG9YXD3ZIkFcqQliSpUIa0JEmFMqQlSSqUIS1JUqEM\naUmSCmVIS5JUKENakqRCOZmJJK1nSppdTGvHkJak9Ygzi61fHO6WJKlQhrQkSYUypCVJKpQhLUlS\noQxpSZIK5dHdkqTilXpa2bo+mt6QliT1C6WdXNYXXxsc7pYkqVCGtCRJhTKkJUkqlCEtSVKhDGlJ\n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\nrkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# stacked bar plots\n", + "drinks.groupby('continent').mean().drop('liters', axis=1).plot(kind='bar', stacked=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Box Plot: show quartiles (and outliers) for one or more numerical variables\n", + "\n", + "**Five-number summary:**\n", + "\n", + "- min = minimum value\n", + "- 25% = first quartile (Q1) = median of the lower half of the data\n", + "- 50% = second quartile (Q2) = median of the data\n", + "- 75% = third quartile (Q3) = median of the upper half of the data\n", + "- max = maximum value\n", + "\n", + "(More useful than mean and standard deviation for describing skewed distributions)\n", + "\n", + "**Interquartile Range (IQR)** = Q3 - Q1\n", + "\n", + "**Outliers:**\n", + "\n", + "- below Q1 - 1.5 * IQR\n", + "- above Q3 + 1.5 * IQR" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1,\n", + " 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,\n", + " 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 5,\n", + " 6, 6, 6, 7, 9, 11, 11, 12, 13, 15, 15, 16, 16,\n", + " 18, 18, 18, 18, 19, 21, 21, 22, 22, 25, 25, 27, 29,\n", + " 31, 31, 34, 35, 35, 35, 35, 38, 39, 41, 41, 42, 42,\n", + " 44, 46, 50, 51, 55, 56, 57, 60, 61, 63, 63, 65, 67,\n", + " 68, 69, 69, 69, 71, 71, 72, 74, 75, 76, 76, 79, 81,\n", + " 84, 87, 87, 88, 97, 97, 98, 98, 100, 100, 100, 100, 101,\n", + " 104, 104, 112, 114, 114, 114, 117, 117, 118, 118, 122, 122, 124,\n", + " 126, 128, 131, 132, 133, 133, 135, 137, 138, 145, 147, 151, 152,\n", + " 154, 156, 157, 158, 160, 170, 173, 173, 176, 178, 179, 186, 189,\n", + " 192, 194, 200, 202, 205, 215, 215, 216, 221, 226, 237, 244, 246,\n", + " 252, 254, 258, 286, 293, 302, 315, 326, 326, 373, 438], dtype=int64)" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sort the spirit column\n", + "drinks.spirit.order().values" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "count 193.000000\n", + "mean 80.994819\n", + "std 88.284312\n", + "min 0.000000\n", + "25% 4.000000\n", + "50% 56.000000\n", + "75% 128.000000\n", + "max 438.000000\n", + "Name: spirit, dtype: float64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show \"five-number summary\" for spirit\n", + "drinks.spirit.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with box plot\n", + "drinks.spirit.plot(kind='box')" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# include multiple variables\n", + "drinks.drop('liters', axis=1).plot(kind='box')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Line Plot: show the trend of a numerical variable over time" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read in the ufo data\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/ufo.csv'\n", + "ufo = pd.read_csv(url)\n", + "ufo['Time'] = pd.to_datetime(ufo.Time)\n", + "ufo['Year'] = ufo.Time.dt.year" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1930 2\n", + "1931 2\n", + "1933 1\n", + "1934 1\n", + "1935 1\n", + "1936 2\n", + "1937 2\n", + "1939 3\n", + "1941 2\n", + "1942 3\n", + "1943 5\n", + "1944 8\n", + "1945 9\n", + "1946 8\n", + "1947 41\n", + "1948 9\n", + "1949 19\n", + "1950 31\n", + "1951 21\n", + "1952 52\n", + "1953 36\n", + "1954 55\n", + "1955 33\n", + "1956 46\n", + "1957 78\n", + "1958 53\n", + "1959 57\n", + "1960 67\n", + "1961 50\n", + "1962 72\n", + " ... \n", + "1985 211\n", + "1986 186\n", + "1987 210\n", + "1988 232\n", + "1989 247\n", + "1990 237\n", + "1991 220\n", + "1992 245\n", + "1993 292\n", + "1994 406\n", + "1995 1344\n", + "1996 851\n", + "1997 1237\n", + "1998 1743\n", + "1999 2774\n", + "2000 2635\n", + "2001 2925\n", + "2002 2933\n", + "2003 3507\n", + "2004 3850\n", + "2005 3787\n", + "2006 3445\n", + "2007 4058\n", + "2008 4655\n", + "2009 4251\n", + "2010 4154\n", + "2011 5089\n", + "2012 7263\n", + "2013 7003\n", + "2014 5382\n", + "dtype: int64" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# count the number of ufo reports each year (and sort by year)\n", + "ufo.Year.value_counts().sort_index()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# compare with line plot\n", + "ufo.Year.value_counts().sort_index().plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# don't use a line plot when there is no logical ordering\n", + "drinks.continent.value_counts().plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Grouped Box Plots: show one box plot for each group" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# reminder: box plot of beer servings\n", + "drinks.beer.plot(kind='box')" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nl+NeWNMJWR4AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of beer servings grouped by continent\n", + "drinks.boxplot(column='beer', by='continent')" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of all numeric columns grouped by continent\n", + "drinks.boxplot(by='continent')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Grouped Histograms: show one histogram for each group" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# reminder: histogram of beer servings\n", + "drinks.beer.plot(kind='hist')" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfUAAAGCCAYAAAD5b1poAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3X385VO9///HkzA1GrmoGeKgC0RKZco4E0OISlcKoQad\nzgmndHThkDI6SsnXkJw6OmWolJwUR/FFfJJQrlLI8P0x5XKm0JgGY8y8fn+s9zZ79uzP57M/n/fF\nfu+9n/fb7X37fPZe7/1ea+/33mu9L9Z6LUUEZmZm1vtW63YBzMzMrBhu1M3MzPqEG3UzM7M+4Ubd\nzMysT7hRNzMz6xNu1M3MzPqEG3UzM7M+4UZ9AEg6VNJySXcNkz4vS2+3rFd1ec2sPB3UB2tIOkLS\nzZL+JmmhpLskzZH0pqrLa2PzvG4XwCpxEPAksIWk7SPippb0AG4DvtrmtX8vu3BmVqnR6oP/Ad4O\nnA98O3tuS2Av4F7gN1UV1MbOjXqfk7QxsBPwaeB40g+69Ucs4OGIOK/i4plZhUarDyRNBfYGZkXE\nF1pefqSkF1dVVhsfX37vfwcAzwJzSEfg+0nyfjcbTKPVBy/P/v6q3Ysj4i+lls5yc+Xe/w4CLo2I\nx4HvApOB3dust6ak9SVt0LQ8v9KSmlnZRqsP7sv+HijJV3J7kBv1PibpNcCrge9lT10D/Jn0w261\nK/AXYEHTckIFxTSzCnRSH0TEb4CrgUOBByWdL+njkl7euj2rJzfq/e0g4G/A/wJEmpLv+8C7Jb2g\nZd0bgd1alv+qrqhmVrJO64N3AJ/P1n0/cBpwj6RLJU2ptsg2VvLUq/0pu0/2J1InmE+ROsMBvAq4\nCDio0TFO0jzgzoh4WxeKamYlG0t90PK6DYB/BA4D9gCuiYgZVZTZxseNep+StCtw5QirXNZoxN2o\nm/W3sdQHI2xjiNRzftOIuL/A4lmB3BGifx0E/BX4aJu0PYGDJW0QEX+ttlhm1gWd1AcvHqV3+02k\nRn1DwI16TblR70OSJgD7ABdGxIVt0u8A/gnYH/h6xcUzswqNpT6QdCmwNCL+1LLOmsBbSMPh7im/\n1DZebtT70zuBFwIXt0uMiLmS7gE+iBt1s37XaX1wEPAQ8ENJl5HGqv+FNOztA8C2wCnZcDirqRF7\nv2fxf2/LYv8ulHSdpLc1pc9pEyv8uvKLbaM4EFgCXD7COhcB20t6JSlMrNmoRqsTsnVmSXpQ0pOS\nrpa0dbfKa8AY6gNSZ7pjgRcAHwe+CRxN6gl/SER8ptyiWl4jdpST9E7Sl+Ee0gHAwcBngKkRcZuk\ns4GNSGd8Dc9ExN9KK7GZdU0HdcLRwGeBmcDdpKFR04EtI8LzCJiVbMy93yU9Cvx7RHxL0hxg/YjY\nu4zCmVn9NeoE4L9Jl2+/FhEnZWkTSIGMPhURZ3WvlGaDoePgM5JWl7Q/MIEUiQjSZdvpkuZLmivp\nLAf8NxsMbeqEzUn3X5+7zBsRT2dpO3alkGYDZtSOcpK2Ba4H1gKeAvaNiLlZ8mXAj0nxgjcHTgSu\nkvSGiHimnCKbWTcNVydIajTc81tesoB0m87MStZJ7/e7gNcA65BCBv5Q0i4RcVNEnN+03h2SbiZ1\ntHg78JPCS2tmddC2ThjlNe6MaVaBURv1iFgK3Js9vDWbb/cI4JA26z4s6QHgFe22Jck/bLMRRIRG\nX6u7RqgTGvNvTwYeaHrJZOCR1u24PjAb3VjrhPFM6LL6cK/L7qe/FHh4uBdHRKnL8ccf7zycR0/m\n0cNWB1aLiPtIjfcejYSso9x0oO1Q17I/07rv834vo8uXbxmPEc/UJX0ZuIR01P1C4ABgZ2BPSRNJ\nU3P+T/ZD3gw4iXQ/zZfezfrQSHVCtsppwLGS7iINezsOWASsMlmImRVvtMvvk0lz704BFgK3AXtG\nxBXZEfirSWPUX0Q6O78KeF9ELC6vyGbWRcPWCQARcbKk5wNnAusCNwB7uE4wq8aIjXpErHLfvCnt\naVYcndfGjBkznIfz6Mk8esFIdULTOieQruL1tF7Y53Uvo8tXvUqnXpUUVeZn1kskET3QUa4org/M\nRjaeOiFX7PdsHcd5NjMzq4HRer/fT4rr/DrgDaR75j+V9FqALM7zUcC/AlNJQSaukLR2aSU2MzOz\ntsYd+51xxHmWFI899ljuQgOsvfbarLHGGoVsy6wOeuHyu6RjgPcCW5AmdrkBOCYi7mhaZw7woZaX\n3hARK4WK9eV3s5GNp07oeD51SauTokeNGOdZUiPOc9vJGzbc8GVjKV9bS5cu4mc/u4Q996xdPz2z\nfrcz8HXgRtKVvi8AV0raOlbMsx3AFbTM3lhpKc0G1Lhjv483zvOSJY8Pl9SxddZxY27WDRGx0o9P\n0gdJQ9t2BH7WeJo0BfOC0bZ39NHHFla2rbfeipkzWy8QmA2Wccd+H+U1vqZmNhgmkc7Ym4/Wn5u9\nEfgb8EvgsxHxl9YXn3xyUd1v/shOO93uRt0GXp7Y72OK87zCrKb/Z2SL2eAZGhpiaGio28XI63Tg\nVtLVvIYxzN5Y1Jn6xaRuPmaDreN76k2ei/MsqRHn+WZYKc7zp4Z/+axxZGnWf2bMmLFS8IsTTuit\neC2STiVddp/e3OMtPHujWdeMO/Z7torjPJsNIEmzgX2BXSJi3kjrxoizN85q+n8GvnJng6yIq3fj\njv0OjvNsNogknU7qX7NLRNzdwfojzN44q+DSmfWuIq7ejTv2e9M6fRHn2cxGJ+lM4CDg3cBCSVOy\npEURsdizN5p112hhYo+RdGMWInaBpIslbdOyzhxJy1uWtnMnm1nPOwxYG/gFKfhUY/lklr6MNHvj\nRcBcYA7wR2Car+CZlW+0y+8ONGFmz4mIEU8E6jp7o9mgGO3ye6GBJszMzKw8o03o0mrEQBOS5ko6\nK+sYY2ZmZhUaa6M+XKCJDwK7ku6rvZEUaGLNQkpoZrXRST+bbD1PyWzWBR036k2BJvZpDTQREZdE\nxB0RcQmwF7AlKdCEmfWXRj+baaQD+WdJ/WzWbazgKZnNuqejiHLFBZoAB5swS3oxTOxo/WwkCfgE\ncFJE/CRbZyapYT+AYWZvNLNidDJLW4GBJsDBJsySXg8Tm2ntZzOuKZnNrBijjVM/EzgYOJAs0ES2\nTMzSJ0o6RdIOkjaTNIM0s4IDTZgNhtZ+No1gNO2mZJ6CmZVqtDP1w0i923/R8vws0pj1RqCJDwIv\nIp2dXwW8z4EmzPrbcBO6jMBTMpuVbLRx6g40YWarGKGfTWPa5Q6nZJ7V9P8M3MfGBlkVE7qYma1k\nlH4295Ea7w6nZJ5VYknNeksR/Wxyx37P1vOYVLMBMFo/m+wy/GnA0ZLeI+nVpPjvnpLZrAKjjVP3\nmFQzazbahC5ExMnAbNKUzDeSLr17SmazCuSK/e4xqWaDZbR+Nk3reUpmsy7IG/u97ZhUoDEm1czM\nzCqSN/a7x6SamZnVRMe93z0m1czMrN7yxn4f45hU8LhUs6QXY79L2ok0NO31wEbAIRFxTlP6HOBD\nLS+7ISJ8O86sAnljv49xTCp4XKpZ0qOx3ycCvwfOAc5l1StyAVxBijLZ8Ew1RTOzERv1bEzqQcC7\nycakZkmLImJxRISk04BjJd0F3AMch8ekmvWliLgUuBSeOytvJeCZiFhQZbnMLBmto5zHpJrZWAQw\nXdJ8SXMlnZXN3GhmFcgV+71pPY9JNTOAy4Afk27NbQ6cCFwl6Q0R4cvwZiUbtdGWtFMWHvYBScuz\n4DLN6XOy55uX68orspnVVUScHxGXRMQdEXEJsBewJfD2LhfNbCB00vvdHWPMbFwi4mFJDwCvaL/G\nrKb/Z+DRMDbIKpmlzR1jzGy8svvpLwUebr/GrApLY1Zvpc/S1iF3jDEbEJImStpO0nak+mPT7PEm\nWdopknaQtJmkGcDFpIiTP+lmuc0GRRGN+mWkS++7knrFv5HUMWbNArZtZvUyFbglWyaQOsjekv1d\nBrwauAiYS5py9Y/ANI+GMatGx2FihxMR5zc9vEPSzcCfSB1jfHRu1kciYoiRTwb2HCHNzEqWu1Fv\n5Y4xZp3pxTCxZlZvhTfq7hhj1pkeDRNrZjXWyTh1d4wxM2D0uBXZOrMkPSjpSUlXS9q6G2U1G0Sd\ndJRzxxgza2jErTgSeIqWuBWSjgaOAv6VVHcsAK6QtHbF5TQbSJ2MUx/CHWPMjJHjVkgS8AngpIj4\nSfbcTFLDfgBwVqWFNRtARQxpMzODFOt9MnB544mIeBq4BvB86mYVyB37PVvH99DMrDE18/yW5xc0\npZlZiTo5U/c9NDPLq3XOCDMrQa7Y776HZmZNHsn+TgYeaHp+clNai1lN/8/AcStskFUyocso2t5D\nk9S4h+ZG3Wxw3EdqvPcAbgaQNAGYDnyq/UtmVVMysx5QROyKvI36SPfQNsq5bTOrGUkTgVdmD5+L\nWwE8GhH3SzoNOFbSXcA9wHHAIuC8rhTYbMAUHlGuie+hmfWfqcBV2f9BildxAilGxaERcbKk5wNn\nAusCNwB7OG6FWTXyNuq+h2Y2Tr0Y+72DuBVERKOhN7OK5W3UfQ/NbJwc+93MijZqo+57aGZmZr2h\nkzN130MzMzPrAUXEfvc9NDN7jqRZwOdbnn4kIjwixqxkZfZ+L9Vee+1V6PYi3FnfrEB3sXIv2GVd\nKofZQMk9oUsW9315y/JQEYUbXRS0mFnBlkXEgqbl0W4XyGwQFHWm7qNyM2v2MkkPAkuA3wDHRsR9\nXS7TmKQo2MXyFUErW1GN+rKIWFDQtsyst90AzCQd7E8mjYi5TtI2EfFYV0s2ZkU2wsUfJJi1KqpR\n91F5xkfiNugi4rKmh7dLup4U02ImMLs7pTIbDEU06n1yVF5EY+wjcbNWEfGkpDuAV6yaOqvp/xk4\nwqQNsiKiTKroM0tJLyAdlX85Ima3pEURjec66+zJwoX/l+Iujamgbcln6jZukoiIvjsyzKJM3gec\nGREnNj1fSH2QXMxOO/03v/zlxQVtr3H1rtjL764fbCzGUycUPqRt5KNy8JG5WdKLsd87IekU4GLg\nfuAlwOeA5wPnlJnvNdf8bymd28x6SRln6m2PyrM0n6mbDaNfztQl/QDYCdgA+AtwPfC5iLirZb1C\nz9ThXRTfsc1n6tY9XTlT79ZRuZnVU0R8oNtlMBtURVx+fynwA1Y+Kt8hIu4vYNtmZn2j6NsDPvO3\nVrkbdR+Vm5l1yuPerVy5w8Q2SDpc0n2SnpJ0k6TpRW3bzHqL6wOz7iikUZe0H3AacCKwHXAdcKmk\nTYrYvpn1DtcH1ZFU28W6o6gz9aOAsyPi2xExNyI+DjwMHFbQ9sdgqKt5dPuHVLcfaxVDtorMwxVb\nIWpUH/S7qyluUquiJshacYuh7kM2616+8ShilrY1gdcDl7ckXQ7smHf7YzfU5TyK/FGUva3jx7mt\nzvVao55057PqB/WrD/rdULcLMKK6N5pFla9OJwNF9H7fAFgdmN/y/AJgSgHbN7Pe4frABlSRcVPG\nr/CIcqP7ce4tLF36SAHlMLPuy18fJDcWtB2z3pY7olx2uW0xsH9E/Ljp+TOBrSNil6bnBvOapFmH\nej2inOsDs2JVHlEuIp6RdDOwBysfdu8OXJCncGbWW1wfmHVXUZffTwW+K+m3pOErHyXdP/tmQds3\ns97h+sCsSwpp1CPiR5LWJ82lviHwB+BtDhVrNnhcH5h1T+GztAEoBZk4jDSEpdHj9WHSUfs3/eM2\nGxyuD8yqU8bUq9OBS0k/2stJQ1kAJpPuq00hHbVfW2jGJZC0GrAbqTKanD39CKkyujIK+PCcx+AZ\npM+qn+qDbqr7d8bly6fI8pXRqN8EXJdFkWqXfjqwY0RMzZnP2sABrDj6D1Z8COdFxOKc238pcAnw\nGuCPrBh3OwXYCrgN2DsiHnQe5eeR5dPzBydVfVZ1UVV9kEfZdUledf/OuHz1Kl8ZjfpTwHYRMXeY\n9FcBt0bEhBx5bA1cAbwQuIaVj/6nA4uAPSLizhx5XARMAj4YEQ+0pG0MfBd4IiLe5TwqyaMvDk6q\n+KzqpIr6II8q6pK86v6dcflqVr6IKHQB7gM+PEL6h4H7cuZxNXA+MKFN2gTgh8DVOfP4O/C6EdJf\nByx2HpXlcVG23zduk7ZxlnZRD+RR+mdVp6WK+iBn+UqvSwooY62/My5fvcpXRkS5rwLfkPRG0j20\nxtnOZNLY1YOBT+TM403A1Ih4ujUhIp6WdCL5Q0w9Baw3Qvp62TrOo5o83gK8OVqOZAEi4gFJRwF5\n78tWkUcVn1WdVFEf5FFFXZJX3b8zLl8+xZavpCOP/YDfAEuB5dmyFLgB2LeA7T8IvGeE9PcAD+XM\n44wsnw8A6zc9v3723P3A15xHZXn8BXjLCOlvAf7aA3mU/lnVbSm7PshZttLrkgLKWOvvjMtXr/KV\nXdg1gY2yZc0CtzsLeAI4BngD6dLoxtn/xwB/A47PmcdawDeAJU2VUKNSWgL8Z9735Dy698XvYh6l\nf1Z1XcqqD3KWqfS6pIAy1vo74/LVq3yljFOvgqSjSZftJrckPQKcFhEnF5TPOqQfeGN87SPAzRGx\nsIjtO4+Ot70WcBpwKLAGsCxLWp30A/g28ImIeKbOeTTlVfr+sM5UVZfkVffvjMuXT1Hl69lGHUBp\n4tnNaQpoERH3dbFIVrJePzixenJdYv2ipxv1BknrATOBV5CCXJwTBUSpqnr8ajbD1dtZ8T5+UkQe\n/fI++kXdx0UPsrLqkrx66TtTx9//IH1+PdmoS3oI2DYiHpW0OWnHrAbcAbwKeD6wQ0TclSOPKsbC\nX0eKpvU3SS8GrgK2BB4AXkrqKTwt8o2L7ov3keXT8wcnvTAuepBUUZcUUMZaf2eq+v3nKN9gfX7d\n6hyQs2PBcuAl2f8/II01fUH2eAIpgMgFOfOoYix88/s4C/gdsGH2+MXA9cB3/D4CYGtSJ7Ynsv37\nnWz5GbAw+wFsnTOP64AXNZX7D8AzwL2kDit/Bl5a9/3hZUz7o/S6pIAy1vo7U8Xv359f559fV95E\nwR/CvbQMQyKNPX0gZx5PAtuMkP5q4KkC38dc4B0t6TOAeX4ffXVwUvr+8DLufV5KXVJAGWv9nani\n9+/Pr/PPbzV631qsCGjRsIBUCefxOLDFCOmvzNYpyotI0beazSNNXZlHv7yPNwFfiGGChAAnAjvk\nzKPZzsBxEfFwlsdfSEOcds253ar3h3WurLokr176zpT1+89joD6/MiLKVWVI0jLSh7AVcHtT2ibA\nX3Nu/1vAOZK2on0krKOB2TnzAPiupGdIY3g3J93La5hCGiebR7+8j8YP845h0nvl4KSq/WGdK7su\nyasXvjNl//7zGKjPr1cb9S+0PP57y+N3kjpEjFtEzMomo/gE8MWW5EeAL0X+8avnkjp7CfgpMLEl\n/X3ArXky6Jf3QZ8cnFS0P6xzpdclefXAd6aK3/+4Ddrn15O936vUZvzqI6QJKEr/4CRNBJa1u+Q8\njm31/PsoO0iIpDms+HEFcFlEnN+Ufgrw6ojYM08+2bZa98dfgXuq2B/Wm7r5G86jyHosZzkG4vNz\noz5OkjYBToiIQ3s5j17TzSAhZVZO2dWB7cJD2WyM6l5P1L18/aYfOsp1y/qkGaZql4ekgyUtH2HZ\nI1tvuaRvSfp8m23MyNL37TDPdSW9XdKOWcPbnDaxXR7jeF+vBf4JWCMiriMNN/u8pHMk7Z53+408\nJH1E0pbZ4+0lnS3pHGDHAq42nCHpay3LGaRQtMc20gt4KzY4hq0nmuqCp7PGtTX9EkmrHBQrmZe9\ndv+yyleVKuqnPIosX6/eUy+dpJmkS7DD2bQH8jgeeBo4FphEuqw8D3isaZ3nkSa1aL232DFJ2wBX\nknoJrwbcKmmfiJiXrfLCAvJ4G+l+0yJgQnaw8UPSTF+rA5dJ2jMirqhzHsARwO9Jnfoal/mVLVuQ\nht/48pk9p6B6Yk1SPXBYm7R2234z8A/AYuAg0u+gzPKVpor6qVbl69bYvLovpLGDi0kVfLtlMelS\nbO3yIB0VLwfeCFwMXEjqfLEh8CNSoJYtsnXOBpa32caMLH3UqTFHyiNLn9IujzG+p+uAE7P/9ycF\noflSU/pJwOU9kMcxpPHQO7c8v5QRxtJ6GdwlTz3RVBfcQjrA36Ql/RLg3javOyv7DR9HuiK2QRnl\nq+jzK71+qlP5uv6FreuSfaj7jJC+XQENVSl5sHKjvoDUuas5/VRSdLaiGvWR8tiyoEZ9IfCK7P/G\nrGmva0rfFphf9zyy7ewA/D/SQcLq2XNLyRkRz0t/Lnnqiaa64P1Zo/7NlvRVGnXSeP3HgK+SztaX\nAUeUUb6KPr/S66c6lc/31Id3C/C6Hs/jRaRoa5MkbdBYIuIo0tGggHULyGctUsXxnKY8ribF0C7C\n8mzby0hhW5tnTVsErNMLeUTEDaRZ4F4G3CBppMAYZkXUE38mhVU+pN299RZvJ9Ud34uIP5OG9B1U\ncvnKVFX9NF6Fls+N+vBOAX49Qvo95I8uVnYel5Hux1xLOhpcACyQtGZE/Fu2zl7kv4d7NzC19cks\njwtI96nz5jGPFGCmYRrQPHvWxqQhKnXPA4CIWBgR+5Euc15LujJg1k4R9UQAX8r+fnaUdQ8C7oiI\n27LH3wXeJOnlJZavTFXUT3kUWj436sOIiGsi4tIR0hdHxFDN8/gY8N/ATcBuTcvSRhakL5Tavrpz\nFwIfaJcQEUcC3ysgj7NIR7SN7f4hIpY2pb+DdFRb9zxWEhHfInVKOpR0uc1sJUXVExHxACvO1v+h\n3TqSXkQ60P9e09P/Q7p0f2CZ5StRFfVTHoWWz+PU+5Ckg0k/3h0i4rcjrLecdI/t8DZpM0hTAO4X\nEReUVFQzK1FrXSBpY1J/jnMi4l8kXULqy/GybP1/Br4JvIWVr1J9A/iHiNiy0jdgY+YhbYNtCWm+\n6HZekP3tahQoMytORDwg6dvAP0lqDZkKK+6d/6Ld6yW9caQTBes+N+qD7U+kCSza2appHTPrH18C\nPkwartaIk4CkTYF/BM5k1dtMAr5NugTvRr3G3KgPtp8DH5c0NSJubDyZhUM9lNRj9g/dKpyZFS8i\nHpT038BHSPN3N+7BHkhqvE+JiFUO5iW9D9hP0lHZ6BCrITfq/W3PYYZL/SYi7gG+TBq/OiTpW8Af\nSZOlHESKr/7+cKcLs350Euls/dWkUR+QGvU/tGvQMxcD+5FmRRy2Y5x116i93yXtJOliSQ9kcYBn\ntllnlqQHJT0p6WpJW5dTXOtQoyGeRZrWr3k5B9gdICIWkALUfBd4D/A10ixo/x+wW0T8tNJSW61J\nOiarA84YZb1tJf0yqw8ekPS5qspoba1yYB4RD5JGxgAg6XWk8dD/O8J2fg48yzC94K0eRu39Lmkv\n0n2WW0mNwmERcW5T+tGkcY8zScOjPg9MB7aMiNa5ic2sB0naATiPFDr3moj4+DDrTSLVA0OkWNWv\nIkUtnBURp1ZTWrPBNeqZekRcGhHHRcSPaYl6k80m8wngpIj4SUTcQWrcXwgcUEaBzaxaktYhjZU9\nhDQRzUgOJEUxnBkRd2b1xleAo8otpZlB/uAzm5PuwV7eeCLS1JTXADvm3LaZ1cNZwAUR8UtGD4Ix\nDfhVRCxpeu5yYKOsd7WZlShvoz4l+zu/5fkFTWlm1qMkfYQUo/647KnROk5OYdX6YH5TmpmVqMze\n7+41bdbDJG0JfBGY3jSEqTH3+3D8uzfroryNemNyi8mk6fdoerzKxBeS/IM3G0FEdDMGdatpwAbA\nHan7DJAmnnmzpH8BJrbExof0u289I5/clPYc1wdmoxtrnZD38vt9pB/qHo0nJE0g9X6/rt0Lyp6b\n9vjjj3ceBeWR7bGcy/E0Tt76+bMqYqmhn5DGMb82W7YjTQ70A2C7WLVBB7ie1Oiv1fTc7sCD0Wb8\nc9mfaV32bS+UIU85sr1Z0NL970Vd9sd4jHqmnkUXa0xHuRqwqaTtgEcj4n5JpwHHSrqLNMXecaR5\np88bV4nMrBYiYiErzyePpCeBxyPizuzxScDUiNgtW+U80pHcHEknAlsCR5NiJphZyTq5/D6VNFsX\npMOoE7JlDnBoRJws6fmkeMHrAjcAe0TE4uKLa2ZdtuJ0KplC6kiXEiOekLQ7qT64CXiMFHZ0dqWl\nNBtQozbqkebBHfEyfUQ0GvqumzFjhvOoUR5Qfh7981nVi6QjgH8GNsueugM4MSJ+3lgnIg5pWn8z\n4N6WzWwI/KbMcuZVh31bhzJAfcrRbb38OVQ6n7qkqDI/yyd1jipqf2nc94gGhSSiRh3lJL2TND3v\nPaQD+4OBz5Aut9/WZv3NSI36W4Hm9Mejzf131wf9w3VFOcZTJ3hCFzNrKyIubnnqOEmHkeYLWKVR\nb/JYpHkFzKxieXu/m9kAkLS6pP1JIWCvGWX1CyXNl3StpH0qKJ6ZZXymbmbDkrQtaZjaWsBTwL4R\nMXeY1RcBnwR+TZrN613A+ZJmRsT3qyiv2aDzPXUblu+TVatu99QBJK0BbAKsA7wf+BiwS0Tc1OHr\nvw68OSJe2ybN9UGfcF1Rjq7cU5f0PNIUi/uTero+DHyfNNXispFea2b1lnVwa/Rov1XSVOAI0oxt\nnbgROHS4xFmzZj33/4wZM3q617FZXkNDQwwNDeXaRu4zdUmfB44EPgT8gRR5ag4wOyJObFnXR+Y9\nxEff1arjmXorSVcB90fEzA7Xnw3sHRGvaJPm+qBPuK4oR7d6v08FLo6In2WP/yzpElIPWTPrUZK+\nDFxCmtfhhcABwM7Anln6StHkJM0EngF+BywH9gYOJw2DM7MKFNGoXwocLWnLiJgraWtgF+BLBWzb\nzLpnMvA9UtS4haRhbHtGxBVZ+krR5EinascBmwLLgLnAIRHhkNFmFck9pC0i/pN0D/2Pkp4Bbgfm\nRMQ3827bzLrqJlJjvoQ0lG1tYI1GYkQcEhHNIWLPJfWtuTlbbyPg5VUW2GzQFdFR7uOkTjP7k8JI\nvg44XdK8iPhO3u2bWdfcT7p03hxR7qeShosoNwm4AhgCtgdeBZwtaXFEnFpVoc0GWRGX3z9Ligf9\no+zxHZLP3IqVAAAgAElEQVQ2BY4BVmnU3dvVLCmip2uZxhFR7kDSGf3MiFgC3ClpK+AowI26WQWK\n6P2+ADghIs5seu4Y4MOtPV7d27W3uEdrterc+13S6qRx6t8GXt8uAI2kc4F1I2LvpuemkiZ02Txa\n5lN3fdA/XFeUo1u9338K/Luk+4A7SZff/w04p4Btm1kXjTGi3BTgzy3PzW9K+xNmVqoiGvV/A54g\nzZ88mRR85ixSQBoz6213Aa9hRUS5H0oaLqKcT6/Muix3ox4Ri4FPZYuZ9ZExRpR7hHRG3mxyU9oq\niuxjky4B11MdLyfX+fMqStHvsez9WIuIcmPKzPfQeorvk1WrzvfUG0aKKCfpo8BXgJdkHeWQdCxw\nWERs0mb9QuuDor+v/f7dH4TPq9frsPHUCZ561czakvRlSdMlbSZp2yyC3M6kgDRIOknSlU0vOQ94\nEpgjaRtJ7wWOxj3fzSrjqVfNbDhjiigXEU9I2p3Uv+Ym4DHglIiYXWmpzQaYz9TNbDh3A38hRZQT\n8DTwUCOxNaJc5u/Am0m95TcETpC0XNIe1RTZbLC5UTez4ewMfB2YBuwKPAtcKWndDl77VtKZfGO5\nuqxCmtkKhVx+l7Qh8GVgL9JsTveSOsdcU8T2zax6EbFn82NJHyRdht8R+FnbF63wWEQsKKtsZtZe\n7jN1SS8Cfk3qYvg2YCvgXwH/oM36yyRSnfF4B+teKGm+pGsl7VNyucwsU8SZ+meAByPi4KbnHDnK\nrP+cDtxKijA3nEXAJ0kH+s8C7wLOlzQzIr5ffhHNBlsRsd/vJM2pvjEwg9SR5r+bY8E3retx6j2k\n18d49po6j1OXdCqwLzA9IuaN8bVfB94cEa9ted7j1LtoED6vXq/DuhX7/WXA4aSxqF8ixX4/IyvM\nKg27mfUWSbNJDfouY23QMzcCh7ZL8KyNZivUIqKcpGeA30bE9Kbnvgi8JyK2blnXZ+o9pNePcntN\nHc/UJZ1Oivm+ywgTuYy2jdnA3mXP2jgIZ55FGoTPq9frsG6dqT9Emp2t2V3AP7Rb2Ufmg6uoOMx1\nrCDHo+7zqUs6EzgIeDewUFIjrvuibM4HsihzUyNit+zxTOAZ4HfAcmBv0pW8z1RcfLOBVMSZ+veB\nTSJip6bn/oN0pv7qlnV9pt5D6nkkX8+zniLU7Uxd0nLSTmst06yI+EK2ztnAzo0gNJI+RAoNuymw\nDJgLnBYR57XZvs/Uu2gQPq9BPFMvIvjMbGAHScdKeoWk9wMfI4WKNLPe9VngFlKP9r8ClwDbNhp0\nWDWqXEScC+wP3AysAWwEvLzKQpsNstyNejav8rtJHWn+APwHcFxEfCPvts2sq8YcUU7SJOAK4GFg\ne+BI4NOSjiq/uGbmqVdtWPW8PFfPS5lFqNvl91aSJpIiyr0rItpGlJN0GHASMLlp+tXPkiJMbtyy\nri+/d9EgfF6+/G5mNrxOIspNA37VaNAzlwMbSdq0zMKZmRt1M+tcJxHlpgDzW56b35RmZiWqfD71\nH//4x7m3scUWW7DtttsWUBoz60QWUW5HUkS5ka5B1u86s9kAqbxRP/TQVUa2jMmSJXP52MfewVe/\n+uWCStR/ihoPbgZjjij3CKuekU9uSlvJoMSt8G+yPxS5H9sdG9ciotyYMpMi/4H8l/nkJ//GKae4\nUR9OcZ1D6tiRpp6djopQx45yY40oJ+mjwFeAlzR1lDuW1FFuk5Z1B6ajnLc1tm3VtaNc1e+xFh3l\nJB0jabmkM4retplVJ4sodzBwIFlEuWyZ2LTOSZKubHrZecCTwBxJ20h6LykYzakVFt1sYBXaqEva\nAfgI8Ht8b82s1x0GrA38ghQOurF8smmdKaRJnQCIiCeA3UlBZ24CzgBOiYjZFZXZbKAV1qhLWgf4\nHnAIIw95MbMeEBGrAbuQIsk9lD19yEgR5SRtRjqofzOwFrAhcIKkPSoqttlAK7Kj3FnABRHxS7lX\niFm/mEhqpM8BzqXzK3BvBW5reuwDfbMKFNKoS/oI6RLcAdlTvvRu1gci4lLgUgBJc8bw0sciYkEp\nhTKzYeW+/C5pS+CLwIERsazxNKvO7GRmg+NCSfMlXStpn24XxmxQFHGmPg3YALij6ar76sCbJf0L\nMDEilq5YfVbTS2dkS3fU8S5Bvw7Xqpuyx5t2ou7zqY/TIlJHul+TJoB5F3C+pJkR8f2ulsxsABQx\nn/o6wEubnwLOBu4GvhQRdzatW6tx6vUbz13M+Mz6va8it1W/z6jIMbV1G6feTNIi4IhsetWxvO7r\nwJsj4rUtz3ucurfVdlsep56tNY46IfeZekQsJM3c1FyQJ4HHmxt0MxtYNwKHtksYlIhyZp0o4upd\nWWFiA3eWM7NkO1YMiVtJc6NuNuhaD2xPOOGEMW+jlEY9InYpY7tmVq0setwrs4erAZtK2g54NCLu\nl3QSMDUidsvWnwk8A/wOWA7sDRwOfKbywpsNoMondDGznjIVuCr7P4ATsmUO6ZL6ShHlsnWOAzYF\nlgFzSQFr8s3kZGYd8XzqZjaS5ayIKCdSA71aRBwKq0aUyzrR7Q/cDKxBChf78spLbTag3Kib2Uga\nEeWOBJ5ilL4ykiYBVwAPA9tnr/u0pKNKLqeZ4cvvtVPHsfN148+oOuOIKHcgMAGYmU29eqekrYCj\n8ExtZqXzmXrtRAFLv/NnVGPTgF815lLPXA5sJGnTLpXJbGAUESb2GEk3SlooaYGkiyVtU0ThzKzn\nTAHmtzw3vynNzEpUxOX3nYGvkwJMrAZ8AbhS0tYR4ZmZzAbLmC6DPProo2WVw2wgFRFRbs/mx5I+\nSIowtyPws7zbN7Oe8girnpFPbkpbyYtfPJnVVlsDgNVWW+O5/8dq2bKnxvU6szqpa0S5SaQzdp+l\nmw2e64GvSFqr6b767sCDEfGn1pXXXPNwliz5GgDLlrWmjsVXgH/PswGzrisiolwZHeVOB24l/bjN\nrIdJmihpuyyK3HMR5SRtkqWfJOnKppecBzwJzJG0jaT3Akfjnu9mlSi0UZd0Kumy+z6FTr9kZt0y\nFbglWyaQosndkv2FlohyEfEE6cx8I+Am4AzglIiYXWGZzQZWYZffJc0G9gV2iYh5w685q+n/GXRz\nPnWzbuqF+dQjYogRDv4j4pA2z91O6kBrZhUrpFGXdDrwflKDfvfIa88qIkuznlfE/bMqSDoc+DTp\nrPwO4BMRce0w624G3Nsmac+IuLysMppZkrtRl3QmcBDwbmChpEbP10URsTjv9s2seyTtB5wGHAZc\nCxwBXJoNWb1/hJe+Fbit6bE7zppVoIh76ocBawO/IE360Fg+WcC2zay7jgLOjohvR8TciPg4Ka77\nYaO87rGIWNC0LC2/qGZWxDh1h5o160OS1gReD5zcknQ5qUPsSC6UNAG4B5gdET8uoYhm1sINspkN\nZwNgdVYN+7qA4UO+LiJdpXs/sBfpCt75kg4sq5BmtoJnaTOzwkTEo0Dz8LVbJK0PfAb4fndKZTY4\n3Kib2XD+CixjRZjXhsmk++qduhE4tF3Cs8/+hhUjYmbgIa42yOoaJtbM+kBEPCPpZmAPoPme+O7A\nBWPY1HakzrOreN7z3sSyZbPGXUazflLXMLGl+z//5ytIyr2Y2ahOBQ6W9GFJr8piUkwBvgmrhomV\nNFPSB7J1t5T0KeBwUmQ5MytZD5+pFxGF1g272Ugi4kfZPfHjgA2BPwBvaxqjvlKYWNIP8zhgU9Kl\n+7nAIRFxXnWlNhtchZ2pSzpc0n2SnpJ0k6TpRW3bzLqqcfQbtBwJR8QhEdEc+/1cYH/gZmANUgz4\nl1dUTrOBV0ij3hR16kTS/bPrSFGnNili+2bWHWP9bUuaBFxB6ki3PXAk8GlJR1VTYrPBVtSZ+nij\nTpVgyHk4jx7No5bG+ts+kDSb28yIuDMLOvOVbDs1NdTtAlCPMkB9ytFtQ90uwLjlbtSbok61TtbQ\nSdSpEgw5D+fRo3nUyzh/29OAX0XEkpb1N5K0afGlLMJQtwtAPcoA9SlHtw11uwDjVsSZ+niiTplZ\n/Y3ntz2lzfrzm9LMrESV936fNGnbXK9fsmQBS5aMvp6ZdcUYh6V8n0mTrs6d6ZIlf3G9YAYoIt/Q\nsOwS3WJg/+ZJG7IpWbeOiF2anitiHJpZ34qI2oyzHMtvuyntHGD9iHhH03NTgd8Am0fEn5qed31g\nNoqx1glFzNLWcdSpOlVYZjaycUaUux74iqS1mu6r7w482NygZ9t3fWBWsKJ6v48YdcrMetaYIsoB\n5wFPAnMkbSPpvcDR2XbMrGSF3FPvIOqUmfWgsUaUi4gnJO0OnAncBDwGnBIRszGz0uW+p952oykw\nxWGkYS+NHq8PkwJXfNONfbUkrQbsRtofjRm3HiHtjyujgC9BFXlYb3J9YO3Uoc6oQxmKVnijnoWH\nvZT0o72cNPwF0ge2O+lH/baIuDZnPmsDB7CioghW7IzzImJxnu1nefR8YyjppcAlwGuAP7Ly8KKt\ngNuAvSPiwTrnkeXT8/ujqjzqoqr6oMOylF5ndFCGWuz7bpejqjqj7mVoKkth+6OMRv0m4Los8lS7\n9NOBHSNiao48tiaFonwhcA0rVxTTgUXAHhFxZ448+qIxlHQRMAn4YEQ80JK2MfBd4ImIeFfN8+iX\n/VGbiqQKVdQHHZaj9DqjgzLUYt/XoRxV1Bm9UIYsr2L3R0QUugBPAVuOkP4q4OmceVwNnA9MaJM2\nAfghcHXOPC7K8tm4TdrGWdpFPZDH34HXjZD+OmBxD+TRL/uj9DzqtFRRH3RYjtLrjF7Z93UoRxV1\nRi+UoYz9UUYB7wM+PEL6h4H7cubxJLDNCOmvBp6q+w6vKI+/AG8ZIf0twF97II9+2R+1qEiqWqqo\nDzosR+l1Rq/s+zqUo4o6oxfKUMb+KCOi3FeBb0h6I+keWuNSwmTSeNeDgU/kzONxYAvgjmHSX5mt\nk8dTwHojpK+XrVP3PH4InCvpU8DlEfEoQNajeQ/gZNIwpLrn0S/7o4o86qSK+qATVdQZo6nLvq9D\nOaqoM3qhDFD0/ijpyGM/UgSppcDybFkK3ADsW8D2ZwFPAMcAbyBdotg4+/8Y4G/A8TnzOAN4EPgA\nKUJW4/n1s+fuB77WA3msBXwDWNK0Hxr7ZQnwn8CaPZBHv+yP0vOo21J2fdBhGUqvM3pl39ehHFXU\nGb1QhjL2R9mFXRPYKFsK/XBIAS0ebqokGstDwGd6YYdX+aUC1gF2JfX+PSD7f52C90lpefTL/qhL\nRdKNpcz6oMP8S60zemXf16UcWVlKr5fqXoai90cp49SrIknA5jSNfY2I+wrOYx3S0Xwjj0eAmyNi\nYS/l0S/6ZX94n3dHFXVGB2Woxb6vSzksKWp/9HSj3iBpPWAm8ArSkfg54YAWz6l6fG42EcjbWbE/\nflJ0HmZ5uM7ovjrEDWgpT1/UWz3ZqEt6CNg2Ih6VtDnpS7AaqRPMq4DnAztExF058+n5xrCiMf3X\nkQKI/E3Si4GrgC2BB4CXkjpHTYv8wWd6fn9k261VZTYIqqozOihH7fZ9NxqzmsQNqKTe6rAshX0v\nerVRXw5MiYgFkn5A+hDeHhFPSpoA/A9peMr7c+TRF42hpKuzss+MiKdb0iYAc4DJ0WYazTHk0bw/\nzgLeCOwVEQ9n7+ti4I8RcWiOPPplf3S9MhtEVdQZHZShFvu+Do1ZFfVSB2Uovd7qsBzFfi+q6gxQ\ncMeC5cBLsv/vpWWsIfAm4IGceZQerKLlfZwF/A7YMHv8YtI0lt/JmUcVY/qb38dc4B0t6TOAed4f\n1bwPL6Pu21LqjF7Z91V8zzsoQx3iBpReb3Xje1FqYSvaGQ8Cr25J3xxYkjOPfmkMHwTeM0L6e4CH\nCnwf81s/N2Az74/q3oeXUfdtKXVGr+z7OjRmVdRLY/wcSqm3uvG9KCP4TFWGJC0DXkSKj3t7U9om\nwF9zbr/qYBUvIkXfajaPNN1lHt8CzpG0Fe2DfxwNFDEt5nclPUMatrQ5K39uU0jjgPPol/1RhyAo\ng6rsOmM0ddz3ZX3PR1NVvTSasuutThT6vejVRv0LLY//3vL4naR7E3n0RWMYEbMkPUWK2vXFluRH\ngC9FxMl58gDOJXXsEPBTYGJL+vuAW3Pm0Rf7g/pUZoOmijpjNHXa911tzCqql0ZTRb3ViUK/Fz3Z\nUa4qko4mfekmtyQ9ApyW90snaQ4rvlQBXBYR5zeln0K6TLhnnnyybbWOz32EFHO79C+ApInAsmjp\nEDOO7fTF/ij7fVh91WHfV1nvdFCWrtVLoymq3uowr8K+F27UR9EPjWE/6WbwkCL3R5v38VfgnjpU\nZlauOjdk4HqnW4qq21YrtFR9KJJ7I+K6bLk3IkLSJpK+U3L265FCBI6ZpH+Q9E1J8yQ9LelxSUOS\nprWsN1HS57P/15T0r5J+na2/RNK9kr4t6fWj5LeupLdL2jH7crbNIw9JrwX+CVgjIq4DngE+L+kc\nSbvn3X4jD0kfkbRl9nh7SWdLOoc073chFV3r94p0f/dVRWzb6q0bdYqkrSX9UNJ9kp6S9GBWHxzf\nZvX1gOslLZd0WRnlycpUep3RC2XI8iqsbvOZ+jhJ2g64JSJKOzAabx6S/hH4Oal354XAPqQxkI3t\nHB8RX8jWnUKKfb0BcCkwNft7OWkCjJcB7yd11tgkIh5qk982wJWk4TCrke5D7RMR85rzyPNZSXob\n6b7XItIwj31JQz1uAFYHdgb2jIgrap7HGaRLnis9DRwO/IDUISYi4uPjzcN6U1l1SnYgfzVpHPo5\npJ7nGwHbk8Y/v6BNOW4FFpPikm8cEfMpUBV1Ri+UIcun0HrHjfowJM1k1cq32abACTkbqsLzkLQu\ncGe23X8ETgeeBT5I+vL+Nvu7X0T8qKlRv4QUVWr/iLigZZurAf8G/DDaBKSQdHFTHpOyPHcEdo2I\nuwtq1K8DroqI4yTtTxpf+/WIODZLPwl4Q0TsUfM8lgO/JzXejXuaAnYCbiINb4koMeiGdUcVdcow\n+f6MFFhli4h4vKUcLyQ1Js2mAx/Jlm8Cn4qI0wouU+l1Ri+UIStHsfVOp2PfBm0hneUuJn3h2y2L\nSfedapUH8O/Zdg/MHi+gaUwuaezlMuBpUhSpKayYreqscb6PlfLInjuVdEbwXB45P6uFwCuy/1cn\nzWL0uqb0bYH5PZDHMaTgJzu3PL+UEcaqeun9pYo6ZZh87wJ+OYZyLCU1+quTzmRvLKFMpdcZvVCG\nLM9C6x3fUx/eQ8CHIuKF7RbSWbBG2UY38tgbeAr4UfZ4LdKPGIBIl5Z+RRrOeDXpPm4jj3PH+T5W\nyiPL56isDI08irA82/Yy0pSEzbMXLSJNoVjrPCLiJFKM529LOknS6s3JebZttVdFndLOfcDrJb1m\ntHKQ7qf/HZ77DXwXeEOjj0mBqqoz6l6GhsLqHTfqw7sFeF0P5rE1MDcilmaP7ybdJ292G2nf/4J0\nL6fh9+PMs10eRMS/ARdkeeRtsOaR7us3TAOaZ9XamNSLuO55EBE3kKZYfBlwg6Qt8m7TekIVdUo7\nJ5MmrLlF0m9IV+neJ2mtNuvuRWpAGr/XC0knCQcVXKYq6oxeKAMUXO+4UR/eKcCvR0i/B9i1hnm0\n3iO7EPhAyzqN9P8Evpf9H6x6b61T7fJIG404Mssj7xnIWaQj68Z2/9B04ALwDtLRdd3zaGx7YUTs\nl+V5Lemym/W3KuqUVUTE1cCbSf1mtiEdTO4HzJd0cMvqB5FCx+6avXYRqXE7oOBiVVFn9EIZoOB6\nxx3l+oykx0ljXocdgibpdOBjwGsi4nZJFwLvBl4UEU9UVFTLZJc2p5GmvFw42vpm45Xd7tmG1FB8\nmnRW/paIuFrSJFI0s28DzR3jdiOdAEyPNNzKasxn6v3nj8BWSnMkD+c1pHGQ9zS9pvG8VSwi5kbE\nHDfoVraIWBYRv4+ILwHvzZ4+MPv7PtIZ4+GkS9ONpREro+hL8FYCN+r9539JYx3bzgstaTPSpbir\nImJJ9vRF2d8PlV04M6uNG7O/G2V/DyINh31fm+Ui4P2SenW+kIHhRr3//BdpqMbJWQP+HEnPB84m\n3T9/boKLiPgtKVjNoZL2ad2gpNUkfVLSS0sst5mVQNKurdHSMm/L/t4laWNSrIQLIuLC1oU0Xn19\nUkc6qzHfU+9DkqYDPyMNk/gWaZzqFOBgUieZIyPizJbXrE+KJLc9qYG/khRRbjPSkforgX+IiIcr\neRNmVghJt5NmIPsJqS5YDXg9KejKItJvfn/gy6QgJ6vMTJb1lP8LcGnWwdNqKnejLmkW0Bof95GI\n2KjN6lYRSZsCxwJvJc2N/DdSz9uvRsT1w7xmTeBfSD1CtyYNg3mI1PPy9Ii4rYKiW01IOgL4Z9KB\nHaTpOU+MiJ+P8Jptga+Thgo9BvxXRPxHyUW1EUh6KylU9D+ShketRQqw8gvgixHxJ0m3AetFxCYj\nbOdHpKiTkyOidepaq4miGvV9gRlNTy+LiEdzbdjMukrSO0mBMO4hnd0dDHwGmNruAC/rPX03MES6\nvfMq0u2eWRFxajWlNhtsRXV6WBYRCwralpnVQERc3PLUcZIOI8URb3fV5kBSJ82ZWSfMOyVtBRxF\nCr9pZiUrqqPcy7Kp/O6V9ANJmxe0XTOrAUmrZ5NNTACuGWa1acCvmkZVQJrtb6PsdpCZlayIRv0G\nYCbp3u1HSB2yrpO0XgHbNrMukrStpL+TQoueBewbEXOHWX0KKXhJs/lNaWZWstyX3yPisqaHt0u6\nnjSBwExgdt7tm1lX3UUKSrQOKfbBDyXtEhE3tVnXQ2nMuqzwQAIR8aSkO4BXtKZJ8o/ebAQRUUWs\n6Y5lMajvzR7eKmkqcARwSJvVH2HVM/LJTWkrcX1gNrqx1gmFB5+RNIHU63WY8cyRY3mS5z1vwpjm\nqj3++ONLnQu32/n5PfZPnj1idYavN64H3twy+9fuwIMR8ad2L6h6n3Z7P2fvus1y/DDPty7lfmbd\n+J25DKN9X8Ymd6Mu6RRJO0naXNKbgP8hjW8+J++2zax7JH1Z0nRJm2X31k8Cdiab2S+bD/7Kppec\nBzwJzJG0jaT3Akfjnu9mlSni8vtLgR8AG5AiDl0P7BAR94/4KjOru8mkBnwKsJA0jG3PiLgiS59C\nilAIQEQ8IWl34EzgJlLwmVMiwn1rzCpSREe5tvPR1sWMGTP6Or9u5DkI77FbedZJRLS7bz5iekTc\nTjqb7xn12M8zul0AoB6fhcuQT6Wx31PHmDz5PcXznrceS5c+VViZzOpCElGzjnJlkhRV1j91kOZV\nyfOeNe57rdZ7xlMneJY2MzOzPuFG3czMrE+4UTeztiQdI+lGSQslLZB0saRtRnnNZpKWt1n2qKrc\nZoPMjbqZDWdn0jSq04BdgWeBKyWt28Fr30rqHd9Yri6rkGa2QhnBZ47JjszPKHrbZladiNgzIs6J\niDuzXu0fBF4M7NjByx+LiAVNy9JyS2tmUHCjLmkH0qQuv8dxoM36zSRSnfF4B+teKGm+pGsl7VNy\nucwsU1ijLmkdUqCKQ+jsR29mveV04FZSgKnhLAI+SZr8ZS/gF8D5kg4sv3hmVuSELmcBF0TEL5UG\nY5pZn5B0Kumy+/SRBpdHxKOsPDvjLZLWBz4DfL/cUppZIY26pI+QwkUekD3lS+9mfULSbGBfYJeI\nmDeOTdwIHNouYdasWc/9P2PGjJ6O5GWW19DQEENDQ7m2kTuinKQtgV+RjuDvzp4bAv4QER9rWdcR\n5cyGUceIcpJOJ11K3yUi5o5zG7OBvSPiFS3PO6Lc2LfgiHIDZDx1QhFn6tNIk7nc0XTVfXXSFIz/\nAkxcuefrrKaXzmCsMY+fffZpirq67x+HdVMRR+VlknQmcBDwbmChpMZc6YsiYnG2zknA1IjYLXs8\nE3gG+B2wHNgbOJx0+d3MSlbEmfo6pJnannsKOBu4G/hSRNzZtG7uM3V4AcVc3fcRr9VL3c7UJS0n\n/dhayzQrIr6QrXM2sHNEvCx7/CHSdKubAsuAucBpEXFem+37TH3sW3C9NUDGUyeUMqFLmZff3ahb\nv6pbo142N+rj2oLrrQFSpwldAneWMzMzq1TPTb3qM3XrVz5T738+U7exqNOZupn1uPFM6JK9bltJ\nv5T0pKQHJH2uivKamRt1MxvemCd0kTQJuAJ4GNgeOBL4tKSjyi+umfnyu1lN1P3yu6SJwELgXRHx\ns2HWOQw4CZgcEUuy5z4LHBYRG7es68vvY9+C660B4svvZlamTiZ0mQb8qtGgZy4HNpK0aZmFMzM3\n6mbWuU4mdJkCzG95bn5TmpmVqMgJXcysT3U6oQs1Hso6b948br755lzb2GSTTXjjG99YUInMipe7\nUZd0BPDPwGbZU3cAJ0bEz/Nu28y6b4wTujzCqmfkk5vSVlLlhC5XXXUVRxxxAmuuuf24Xr906Z95\n6qmbCi6V2Qp1mdDlncAS4B7S5fyDSXGep0bEbS3ruqOc2TDq2FFurBO6SPoo8BXgJU0d5Y4ldZTb\npGXdSjvKfec73+HjH7+WxYu/M84tnAccSN6Obu4oZ53qSke5iLg4Iv5vRNwbEf8vIo4DFgG+RmXW\nw7IJXQ4mtWQLJU3JlolN65wk6cqml50HPAnMkbSNpPeSYsGfWmHRzQZWoR3lJK0uaX9gAnBNkds2\ns8odBqwN/AJ4qGn5ZNM6U4CXNR5ExBPA7sBGwE3AGcApETG7ojKbDbRCOspJ2pbUI3Yt0jXyfcc7\n97KZ1UNEjHrQHxGHtHnudlLgGjOrWFFn6ncBryFdcv868ENJ4+uNYmZmZuNSyJl6RCwF7s0e3ipp\nKnAEsMpRPMxq+n9GtpgNniJ6upqZNStrnPrqDHsVYFZJWZr1ltYhXCeccEL3CmNmfSH35XdJX5Y0\nXdJm2exMJ5Hup30vf/HMrJsk7ZTNzvaApOWSZo6y/mbZeq3LHlWV2WyQFXGmPpnUgE8hTfZwG7Bn\nRO/9q6oAAA8lSURBVFxRwLbNrLsmAr8HzgHOpfNB1m8l1QUNI8WLN7OC5G7U2/V+NbP+EBGXApcC\nSJozhpc+FhELSimUmQ3LE7qYWRkulDRf0rWS9ul2YcwGhRt1MyvSIlJwmvcDe5EC15wv6cCulsps\nQHiWNjMrTEQ8CjRHj7tF0vqk+SC+351SmQ0ON+pmVrYbgUPbJVQ5S5tZ3RURu8KNupmVbTtSzPhV\nNDfqZoOuiNgVRcynfgzwXmAL0hSsNwDHRMQdebdtZt2Vzcj2yuzhasCmkrYDHo2I+7O4FFMjYrds\n/ZnAM8DvgOXA3sDhpMvvZlayIjrK7UyK9z4N2BV4FrhS0roFbNvMumsqcEu2TABOyP5vnEKsNEsb\naRz7caRL7r8F9gUOiYjTqyqw2SArYpz6ns2PJX2QFIRmR+BnebdvZt0TEUOMcPDfGqciIs4lBakx\nsy4oY0jbpGy7jiBlZmZWoTIa9dOBW0nzq5uZmVlFCm3UJZ1Kuuy+T0R0GiPazGpqrBO6ZK/ZVtIv\nJT2Zve5zVZTVzAoc0iZpNqlTzC4RMW/4NWc1/T+Dbs6nLin3Nvrt2KWIz6Sh3z6bovXIfOpjmtBF\n0iTgCmAI2B54FXC2pMURcWq5RTWzQhp1SaeTwkLuEhF3j7z2rCKyLEjeRqe4BrBeimiM+/WzKU4v\nzKc+jgldDiT1kp8ZEUuAOyVtBRwFuFE3K1kR86mfCRxM+jEvlDQlWybm3baZ9ZxpwK+yBr3hcmAj\nSZt2qUxmA6OIe+qHAWuTJm54qGn5ZAHbNrPeMgWY3/Lc/KY0MytREePUPdObmTW4I4VZFzn2u5kV\n6RFWPSOf3JS2Ek/oMnZFdmbtRd3sgFt252pP6GJmdXM98BVJazXdV98deDAi/tS6sid0GY88jZr6\n4PXdVl75i+g860vnZjYsSRMlbZdN4vLchC6SNsnST5J0ZdNLzgOeBOZI2kbSe4Gjcc93s0q4UTez\nkYxpQpeIeIJ0Zr4RcBNwBnBKRMyusMxmA8uX381sWGOd0CV77nbS7I1mVrFCztTHE0rSzMzMilXU\n5fdGKMkjgafwsBYzM7PKFXL5fRyhJM3MzKxg7ihnZiOSdLik+yQ9JekmSdNHWHez7BZc67JHlWU2\nG1Ru1M1sWJL2A04DTgS2A64DLm0MaRvBW0k94xvL1WWW08wSN+pmNpKjgLMj4tsRMTciPg48TJrz\nYSSPRcSCpmVp+UU1sy4MaZvV9P8MujmfehGKCtnoucdXVbdwmEXvo7rPpy5pTeD1wMktSZcDO47y\n8gslTQDuAWZHxI9LKKKZtehyo94PPPd4uYr6fPNup/h91APzqW8ArM6qs64tYPgZ1xaRZmj8NfAs\n8C7gfEkzI+L7ZRXUzJJCGvVs7vRXZg+fCyUJPBoR9xeRh5nVX0Q8CjRHj7tF0vrAZwA36mYlK+pM\nfSpwVfZ/kEJIngDMAQ4tKA8zq9ZfgWWsmGWtYTLpvnqnbmSYesCztJmtUJtZ2kYLJWlmvScinpF0\nM7AH0HxPfHfggjFsajvgoXYJnqXNbIUibsk59ruZjeRU4LuSfksazvZR0v30b0KapQ2YGhG7ZY9n\nAs8AvwOWA3sDh5Muv5tZydyom9mwIuJH2T3x44ANgT8Ab2vqK7PSLG2k22/HAZuSLt3PBQ6JiPOq\nK7XZ4HKjbmYjiohvAN8YJu2QlsfnAudWUS4zW5Xvg5uZmfUJN+pmZmZ9orBGfSyTPphZ7xjrb1vS\ntpJ+KelJSQ9I+lxVZTUbdIU06jkmfTCzGhvrb1vSJOAK0jj27YEjgU9LOqqaEpsNtqLO1Mc76UMF\nhvo8P7oQP7zq/AYpz9oZ62/7QGACMDMi7sxivn8l205NDXW7ANSjDFCPcgx1uwC1npNhNLkb9aZJ\nHy5vSepk0ocKDPV5fm7U+yvP+hjnb3sa8KuIWNKy/kaSNi2+lEUY6nYBqEcZoB7lGOp2AQa7UWd8\nkz6YWf2N57c9pc3685vSzKxEXRinnmcGxiWjr2Jm3VTrOYSffXYeq9ZBd7Z5rp3fFl4es6Ip7xzR\n2SW6xcD+zXMmSzqT/7+9s42xqyjj+O+pga1WBdpgi11imiB9RWi0Ao0GFWuIVE2EGGtCIFQ/+Mnq\nl4bEIJIKURsEjdRgxC4YLJoANRoMNpY0ZtWIokFUNGlXbWF9py1LSUn7+OGZ2z293Hua7c6ZmXvu\n80tOcu+Zzf3/5+w8M+ftmYEVqvruyr6iA95xcqOqxazDO5PYrpSNAQtUdX1l3xrgl8ASVf1rZb/3\nB45zCmbaJ8z6Sn0miz6U1GE5jlPPaS7o8nPgiyIyUnmuvg44UB3Qw+97f+A4kYn19vsdwA0islFE\nlovIXVQWfXAcZ2CpjW0RuV1EdlX+/gHgRWC7iKwUkQ8Dm8PvOI7TMLGWXj3Vog+O4wwgM13QRVUP\nicg64OvAE8B/ga2q+pW0zh1nOJn1M/WeP2oTU3wSS3vpvPH6HDZxxTd8sHccx3Gc+EQf1MMUko9i\ng/hjWPoLwELs2doi7Ez/Z1GFEyMic4D3YicuC8PuSezEZZc2cLaUWnMY6ugMDyW0rRI8lOKjBA9t\npIlB/QlgPMw81av8LmCtqq6JrPta4GNM3x1QphvIA6o6FVFrMfBD4C3AHzk5D3cZ8DvgA6p6YFA1\nh6GOFd3WnyzlJGVs1njI0rZK81CKjxI8BB9FxGJMH00M6keAS1T1mT7ly4EnVXVuRM0V2HzTrwP2\ncPLdgXcAh4H3qeofIuntBF4PXKeq+7vKRoH7gUOq+qEYejk0h6GO4Xdbf7KUk9SxWeMjedsq0UMp\nPgrxUEQsRvehqlE3YB+wsaZ8I7AvsuZu4EFgbo+yucAOYHdEvReA1TXlq4GpyHVMqjkMdQy/uTO0\nn9EeZaOhbOeg6uXeUsdmjY/kbatED6X4KMRDEbEY20cTM8p9GdgmIm/Hnql3zjoWYvmuNwCbImte\nCqxR1Ze6C1T1JRHZAvwqot4RYH5N+fzwNzFJrTkMdQS4Enindl0tAKjq/rC6WMz3P1Lr5SZ1bPYj\nR9sq0UMpPkrwUEosRvURbT31iom7geuwZRp3YLfc9oTPF2O3W7ZFlv0fcGFN+ZvD38RiB3CfiGwI\n6T4AiMgCEdkAbMfydWOSWnMY6gjDcbKUk9Sx2Y8cbatED6X4KMFDKbEY10fDtxXOBN4YtjMb1LkF\nOATcBLwVu2UxGj7fBDwPfC6i3giwDZuM/jjwctiOh313x65vas1hqGPQ/BpwANiATW/a2b8g7Ps7\n8NVB1cu9pY7NktpWiR5K8VGIhyJiMbaPRvLUcyAim7Hb+gu7iiaBO1X1Sw1onoV1Tp1c/Eng16p6\nMLZWLs2211FERoA7gRuBM4BjoehVWCfzLWCTqh4dRL0SyBGbNV6St+cSPZTiI6eHUmIxto/WDOoA\nIiLAEioT3qjqvoyWnAFhGE6WcuKx6ZRKKbEYy0erBvUOIjIfuB64AJsEZ0wjz2KXO/dWbAWtq5mu\n48OxNYehjk5aUsRmjXb2fPkuP9natx+L9tKKQV1EngUuUtX/iMgSrGHOAZ4GlgOvBi5T1T9F0kue\neysi49hMfM+LyLnAT4GlwH5gMZZlcLnGy6dufR0rutk6uLZ3Zqljs8ZH9nz5XO27hw8/FtM+ijq5\nCZ5m1yc0/RJAig17ueIN4fN3sby+14Tvc7HE/u9H1Euee9tVx3uA3wLnhe/nYkte3ut1nLHmCuwl\nlUOhndwbth8BB7FOZkVEvXHg7EqdngKOAnuxF4T+BiyOWcecW+rYrPGRPV8+R/v2Y1HrIWns1/iI\n2ic0ajbV1tVA9gJXdpVfCuyPqPcisLKmfBVwpME6PgOs7yp/FzDhdZyxZuqJi7J3Zim31LFZ4yN5\nez7FsUjSvv1Y1HrIfnLT41jMuk+InqdeACNMT3jT4Z/YwYlF7tzbs7GZ+6pMYEtjxmIY6gg2qNyq\nfSZHAbYAl0XW7HAF8FlVfS7o/QtL83pPQ3q5SRGb/cjdnrtJ1b574cfCyBn7/Zh1n9DEjHK5eFxE\njmENZBnw+0rZ+cC/I2p9ExgTkWX0njVvM9DE+tH3i8hRLP9/CfZcssMiLOc3FsNQR5ju4J7uU95k\nB5ezY09JytjsR6723E3q9t0LPxZGztjvx6z7hLYM6rd2fX+h6/sHsRdCoqCqt4gtXLMJ+EJX8SRw\nm8bPvb0Pe4lDgEeAeV3l1wJPxhIbhjoGcnRwuTuzlCSNzX5kas/d5Gjfr8CPxQlKObmBiH1CK95+\nz0WP3NtJbLGa5AdVROYBx3rdSprl7w5DHZNNjiIi25nuzBT4sao+WCnfCqxS1atiaTrTlNSeu2mq\nfdfoDf2xKGFipNh9gg/qDSAi5wOfV9Ub26zZJkqZHCV1x+4YJcRPCR6GkVJivx8z7RPa+KJcCSzA\nVqMbaE0ROUdErhaRtaHhV8vmicjNMfUyal4MfBw4Q1XHsXSSm0VkTETWNaEnIp8QkaXh+9tE5Nsi\nMgas9QE9CzliNpuHHHFWqIeksV/nI1af4Ffqp4GIXI/dJunHm7Az7mgnTak1RWQlsAt7M3kO9nzr\nGlWdCOWLgGcj1zGH5vuxZ3qHsTSWj2CpLL/A5l6+ArhKVX8yiHqOkSNmS/QQfCSPs0I9FBGL0X00\nnYPXxg3LK5wK/4Re2xR2u2RgNYEfAA9hL7CcB3wPm4zhwlC+CDgeuY45NMeBLeHzR7GJKG6rlN8O\nPDaoer6dOK7JY7ZED8FH8jgr1EMRsRjbR6Nm27qFxndNTfklDQw+STWx/OFVXfvuwGZgWtrQAJtD\n8yBwQfjcWRVpdaX8IuAfg6rn24njmjxmS/QQdJLHWaEeiojF2D78mfrp8Rtgdcs1R7ArixOo6mew\nM+rd2LzdbdCko6mqx7BpGaurIh0GzhpwPSdPzJboAfLFWWkeoJxYjOajLXnqqdnKK/Mqq/yF+LOC\npdb8M7AGOGlRB1X9tIjMwZ4BxX4hI4fmBDbJxN7w/XKgumrYKJbeMqh6jpEjZkv0AHnirEQPE5QR\ni1F9+JX6aaCqe1T10ZryKVV9fMA1HwI29NH6FPAdLK8yJjk078GuGjo6T6nqy5Xy9diVw6DqOeSJ\n2RI9BHLEWYkeSonFqD787XfHcRzHaQl+pe44juM4LcEHdcdxHMdpCT6oO47jOE5L8EHdcRzHcVqC\nD+qO4ziO0xL+D9eim5FP69x6AAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of beer servings grouped by continent\n", + "drinks.hist(column='beer', by='continent')" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfUAAAGCCAYAAAD5b1poAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xu8XFV99/HPN1SCgqCCTQhQgjduYlEJBQokWIigxQso\nUgOG4GMVaNWCSkHaBosELSVQpVqsJYCiaEWlKBYQwkVACSAql8DzQJAESBQwRC4JJr/nj7WHTCZz\n5pyZ2XvPzJ7v+/Xar3Nm39aaOWevNXvttX5LEYGZmZkNvnG9zoCZmZnlw5W6mZlZRbhSNzMzqwhX\n6mZmZhXhSt3MzKwiXKmbmZlVhCt1MzOzinClPgQkHS1pjaR7R9i+KNvebHlF2fk1s+KMoTx4kaTj\nJN0m6XeSlku6V9I8SX9Wdn6tPX/U6wxYKY4AngFeJ2m3iFjQsD2AO4F/aXLs74vOnJmVarTy4L+B\ntwOXAF/N1m0PHAQ8APy0rIxa+1ypV5ykrYF9gU8C/0S6oBsvYgGPRsTFJWfPzEo0WnkgaQpwMDA7\nIj7TcPjHJL2yrLxaZ9z8Xn3vB/4AzCN9A3+fJP/dzYbTaOXBq7OfNzQ7OCJ+U2jurGsu3KvvCOCK\niHgSuAiYABzQZL8NJW0uaYu65cWl5tTMijZaefBg9nOGJLfkDiBX6hUm6Q3A64GvZauuB35NurAb\nvQX4DbCsbjm1hGyaWQnGUh5ExE+Ba4GjgSWSLpH0UUmvbjyf9SdX6tV2BPA74H8AIk3J93XgXZJe\n0rDvrcD+Dct/lJdVMyvYWMuDvwT+Mdv3vcDZwP2SrpA0sdwsW7vkqVerKXtO9hCpE8wnSJ3hAHYE\nvg8cUesYJ2kRcHdEvK0HWTWzgrVTHjQctwXw58AxwHTg+oiYVkaerTOu1CtK0luAq1vs8qNaJe5K\n3aza2ikPWpxjPqnn/LYR8XCO2bMcuSNEdR0B/Bb4SJNtBwJHSdoiIn5bbrbMrAfGUh68cpTe7QtI\nlfqWgCv1PuVKvYIkbQQcClwaEZc22X4X8H+Aw4Evlpw9MytRO+WBpCuA5yPioYZ9NgT+gjQc7v7i\nc22dcqVeTe8AXgpc1mxjRCyUdD9wJK7UzapurOXBEcAjwDcl/Yg0Vv03pGFvfwXsApyZDYezPtWy\n93sW//fOLPbvckk3SXpb3fZ5TWKF31R8tm0UM4CVwJUt9vk+sJuk15LCxJqNarQyIdtntqQlkp6R\ndK2knXqVXwPaKA9InelOBl4CfBT4MnAiqSf8rIj4VLFZtW617Cgn6R2kf4b7SV8AjgI+BUyJiDsl\nnQ9MIt3x1ayKiN8VlmMz65kxlAknAp8GZgL3kYZG7Q1sHxGeR8CsYG33fpf0OPD3EfEVSfOAzSPi\n4CIyZ2b9r1YmAP9Jar79t4iYk23biBTI6BMRcV7vcmk2HMYcfEbSBpIOBzYiRSKC1Gy7t6SlkhZK\nOs8B/82GQ5MyYTvS89cXmnkj4rls2149yaTZkBm1o5ykXYCbgfHAs8BhEbEw2/wj4DukeMHbAacB\n10h6c0SsKibLZtZLI5UJkmoV99KGQ5aRHtOZWcHG0vv9XuANwGakkIHflLRfRCyIiEvq9rtL0m2k\njhZvB76be27NrB80LRNGOcadMc1KMGqlHhHPAw9kL+/I5ts9DpjVZN9HJS0GXtPsXJJ8YZu1EBEa\nfa/ealEm1ObfngAsrjtkAvBY43lcHpiNrt0yoZMJXTYY6bjsefpWwKMjHRwRhS5Tp051Gk5jINMY\nYBsA4yLiQVLlPb22IesotzfQdKhrFf5uZaRRpffiNMa+dKLlnbqkM4DLSd+6Xwq8H5gKHChpY9LU\nnP+dXciTgTmk52k9a3qfPHmy03AaA5nGIGhVJmS7nA2cLOle0rC3U4AVwHqThZShSv8bVXkvTqNY\nozW/TyDNvTsRWA7cCRwYEVdl38BfTxqj/jLS3fk1wHsi4unistxaVf6YTmP40hgQI5YJABHxeUkv\nBs4FXg7cAkzvVZlQpf+NqrwXp1GslpV6RKz33Lxu23Os/XbeN6ZNm+Y0nMZApjEIWpUJdfucSmrF\n67kq/W9U5b04jWKVOvWqpCgzPbNBIokYgI5yeXF5YNZaJ2VCV7Hfs30c59nMzKwPjNb7/WFSXOc3\nAm8mPTP/nqQ/BcjiPB8P/A0whRRk4ipJmxSWYzMzM2uq49jvdBDnWVKcddZZXWca4N3vfnffdlQw\n68QgNL9LOgk4BHgdaWKXW4CTIuKuun3mAR9oOPSWiFgnVKyb381a66RMGPN86pI2IEWPahnnWVIt\nznPTyRv+/u9/3U7+mho37lJ23HFHV+pm5ZsKfBG4ldTS9xngakk7xdp5tgO4iobZG0vNpdmQ6jj2\ne6dxnletmtthVtfabLN7uj6HmbUvItYZ8SLpSNLQtr2AH9RWk6ZgXjba+V72srGHhB83Dr773W8w\nderUsWfYbMh0HPt9lGNatKnNrvt9WraYDZ/58+czf/78XmejW5uS7tifrFv3wuyNwO+A64BPR8Rv\nGg9evnzBmBN66UsPZ+XKld3l1qziuon93lac57Vmd5BNs+qZNm3aOmNdTz21L4Z2t+sc4A5Sa15N\nG7M3tnOnvlGXWTWrvjE/U6/zQpxnSbU4z7fBOnGeP5FfFs2sH0k6i9Tsvnd9j7doa/bG2XW/T8Mt\ndzbM8mi96zj2e7ZLX8V5NrNySJoLHAbsFxGLWu0bLWdvnF1A7swGUx6tdx3Hfof+i/NsZsWTdA6p\nf81+EXHfGPYfdfZGM8tHx7Hf6/bpmzjPZlYsSecCRwDvApZLmphtWhERT/fr7I1mw2K0MLEnSbo1\nCxG7TNJlknZu2GeepDUNS9O5k81s4B0DbAL8mBR8qrackG1fTZq98fvAQmAecA+wp1vwzIo3WvO7\nA02Y2QsiouWNQL/O3mg2LEZrfs810ISZmZkVZ7QJXRq1DDQhaaGk87KOMWZmZlaidiv1kQJNHAm8\nhfRcbXdSoIkNc8mhmfWNsfSzyfbzlMxmPTDmSr0u0MShjYEmIuLyiLgrIi4HDgK2JwWaMLNqqfWz\n2ZP0Rf4PpH42L6/t4CmZzXpnTBHl8gs0AY4gZZYMYuz30frZSBLwcWBORHw322cmqWJ/PyPM3mhm\n+RjLLG05B5qY3VYGzaqqIrHfG/vZdDQls5nlY7Rx6ucCRwEzyAJNZMvG2faNJZ0paQ9JkyVNAy7D\ngSbMhkVjP5taMJpmUzJPxMwKNdqd+jGk3u0/blg/mzRmvRZo4kjgZaS782uA9zjQhFm1jTShSwtj\n2cfMujDaOHUHmjCz9bToZ1ObdnmMUzLPrvt9Gu5jY8Os8FnazMwajdLP5kFS5T3GKZlnF5hTs8GS\nRz+brmO/Z/t5TKrZEBitn03WDH82cKKkd0t6PSn+u6dkNivBaOPUPSbVzOqNNqELEfF5YC5pSuZb\nSU3vnpLZrARdxX73mFSz4TJaP5u6/Twls1kPdBv7vemYVKA2JtXMzMxK0m3sd49JNTMz6xNj7v3u\nMalmZmb9rdvY722OSQWPSzVLBjH2u6R9SUPT3gRMAmZFxAV12+cBH2g47JaI8OM4sxJ0G/u9zTGp\n4HGpZsmAxn7fGPgFcAFwIeu3yAVwFSnKZM2qcrJmZi0r9WxM6hHAu8jGpGabVkTE0xERks4GTpZ0\nL3A/cAoek2pWSRFxBXAFvHBX3kjAqohYVma+zCwZraOcx6SaWTsC2FvSUkkLJZ2XzdxoZiXoKvZ7\n3X4ek2pmAD8CvkN6NLcdcBpwjaQ3R4Sb4c0KNpZn6u4YY2ZjEhGX1L28S9JtwEPA22k6HfPsut+n\n4Y6zNszKmtDFHWPMrCMR8aikxcBrmu8xu8zsmPW1PDrPjlqpu2OMmXUqe56+FfBor/NiNgzajSjX\njDvGmA0JSRtL2lXSrqTyY9vs9TbZtjMl7SFpsqRpwGWkiJNNmt7NLG95VOo/IjW9v4XUK353UseY\nDXM4t5n1lynA7dmyEamD7O3Zz9XA64HvAwtJU67eA+zp0TBm5RhzmNiRtN8xxswGVUTMp/XNwIEt\ntplZwbqu1Bu11zFmGu7tasNqEMPEmll/y71SH71jzOy8kzQbSAMaJtbM+tioz9TdMcbMaiTtK+ky\nSYslrZE0s8k+syUtkfSMpGsl7dSLvJoNo7F0lHPHGDOrqcWt+BjwLA1xKySdCBwP/A2p7FgGXCVp\nk5LzaTaUxjJOfT7uGGNmtI5bIUnAx4E5EfHdbN1MUsX+fuC8UjNrNoTyGNJmZgYp1vsE4Mraioh4\nDrgecNhosxKM5Zm6n6GZ2VjUpmZe2rB+Wd02MyvQWO7U/QzNzLrVOGeEmRWgq9jvfoZmZnUey35O\nABbXrZ9Qt63B7Lrfp+G4FTbMypqlrZWmz9Ak1Z6huVI3Gx4Pkirv6cBtAJI2AvYmTd/cxOxycmY2\nAEqZpW0UrZ6hTery3GbWZyRtDLw2e/lC3Arg8Yh4WNLZwMmS7gXuB04BVgAX9yTDZkMm94hydfwM\nzax6pgDXZL8HKV7FqaQYFUdHxOclvRg4F3g5cAsw3XErzMrRbaXuZ2hmHRrE2O9jiFtBRNQqejMr\nWbeVup+hmXXIsd/NLG+jVup+hmZmZjYYxnKn7mdoZmZmAyCP2O89eYZ20EEH5Xq+CPfrM8uDpNnA\nPzasfiwiPCLGrGBF9n4vQV4VsXI6j5ll7mXdXrCre5QPs6HS9YQuWdz3NQ3LI3lkzswG1uqIWFa3\nPN7rDJkNg7zu1P2t3MzqvUrSEmAl8FPg5Ih4sOxMpEjW7fPjOBtUeVXqqyNiWU7nMrPBdgswk/Rl\nfwJpRMxNknaOiCfKz067FbQfx9ngyqtS74tv5d3o9Bt9I3/Dt2EXET+qe/krSTeTYlrMBOauu/fs\nut+n4WBUNszyCEilbishSQcCm7Dut/IdgPW+lUuKPDq3bbbZgSxf/r/k21Euj3PJlbp1TBIRUcnb\nREnXAPdExHF169oqDzbbbDrf+tYnmD59ejvp0smduq9j6wedlAld36m3960c/M3cLBnEMLGdyKJM\n7sjaeBdmVpCu79SbnrTJt/Jsve/UzUZQlTt1SWcClwEPA38M/AMpdPQuEfFw3X5t36kvX35VBzny\nnboNpp7cqTfJhL+Vmw23rYBvAFsAvwFuBvaor9C7006FO/Dfkcza0nWlPsK38hcDF3R7bjMbPBHx\nV73Og9mwyuNOveBv5WZm5Wp3NIyb661f5NFRzt/Kzaxi3MRvg6nrMLE1ko6V9KCkZyUtkLR3Xuc2\ns8EybOWBpMIXs7HIpaOcpPcBZwPHADcCxwFXSNpp2Jrhh+Hiq3JTY95/vyp/ViMZzvKg3Tt7R7mz\nYuR1p348cH5EfDUiFkbER4FHSRd1yeb3OI3IaSnjXNd2eK6xK2Mcdv5p9OazqpA+Kg+qYzCvJadR\ntjxmadsQeBNwZcOmK4G9uj1/++ZXJI0yzC8+hcpcXGWkMfj6rzyojn67ljp9hNBv76Of0+hEHs3v\nWwAbAEsb1i8DJuZw/jYtqkgaZVhUfAqLqpFGdf7mheuz8qA6+vNaar9DYX++j/5MoxO5B58Zzaab\nHtz1OZ577rYWWxd1ff7RlZFGGRYVn0JlLq4y0hg+7ZQHzz13R4E56X9VuZacRrHyqNR/S5o/fULD\n+gmk52jreOqpy3NIsmakziOddCpp95g80243jTzP1X4a7XYmK6PzYL5p9O6zqoASyoO8rtVeptF+\nnq677ro+vJY6Kwv67330bxrtymOc+ipJtwHTge/UbToA+HbDvv33CZhZblwemPVWXs3vZwEXSfoZ\ncBPwEdLzsy/ndH4zGxwuD8x6JJdKPSK+JWlz0lzqWwK/BN5W3TGpZjYSlwdmvVPI1KtmZmZWvtzC\nxJqZmVlvuVI3MzOrCFfqZmZmFeFK3czMrCJcqZuZmVWEK3UzM7OKcKVuZmZWEa7UzczMKsKVupmZ\nWUW4UjczM6sIV+pmZmYV4UrdzMysIlypm5mZVYQrdTMzs4pwpW5mZlYRrtTNzMwqwpW6mZlZRbhS\nNzMzqwhX6hUk6ShJa1os07P91kj60gjnmJZtP6zc3JtZXurKguckbdNk++WSHmyyXpIWZcceXk5u\n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\nky2xAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# share the x axes\n", + "drinks.hist(column='beer', by='continent', sharex=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# share the x and y axes\n", + "drinks.hist(column='beer', by='continent', sharex=True, sharey=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# change the layout\n", + "drinks.hist(column='beer', by='continent', sharex=True, layout=(2, 3))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Assorted Functionality" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# saving a plot to a file\n", + "drinks.beer.plot(kind='hist', bins=20, title='Histogram of Beer Servings')\n", + "plt.xlabel('Beer Servings')\n", + "plt.ylabel('Frequency')\n", + "plt.savefig('beer_histogram.png')" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[u'dark_background', u'bmh', u'grayscale', u'ggplot', u'fivethirtyeight']" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list available plot styles\n", + "plt.style.available" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# change to a different style\n", + "plt.style.use('ggplot')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/06_human_learning_iris.ipynb b/notebooks/06_human_learning_iris.ipynb new file mode 100644 index 0000000..ddbbc4c --- /dev/null +++ b/notebooks/06_human_learning_iris.ipynb @@ -0,0 +1,1678 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exercise: \"Human learning\" with iris data\n", + "\n", + "**Question:** Can you predict the species of an iris using petal and sepal measurements?\n", + "\n", + "1. Read the iris data into a Pandas DataFrame, including column names.\n", + "2. Gather some basic information about the data.\n", + "3. Use sorting, split-apply-combine, and/or visualization to look for differences between species.\n", + "4. Write down a set of rules that could be used to predict species based on iris measurements.\n", + "\n", + "**BONUS:** Define a function that accepts a row of data and returns a predicted species. Then, use that function to make predictions for all existing rows of data, and check the accuracy of your predictions." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# display plots in the notebook\n", + "%matplotlib inline\n", + "\n", + "# increase default figure and font sizes for easier viewing\n", + "plt.rcParams['figure.figsize'] = (8, 6)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1\n", + "\n", + "Read the iris data into a pandas DataFrame, including column names." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a list of column names (as strings)\n", + "col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species']\n", + "\n", + "# define the URL from which to retrieve the data (as a string)\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'\n", + "\n", + "# retrieve the CSV file and add the column names\n", + "iris = pd.read_csv(url, header=None, names=col_names)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 2\n", + "\n", + "Gather some basic information about the data." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(150, 5)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspecies
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length float64\n", + "sepal_width float64\n", + "petal_length float64\n", + "petal_width float64\n", + "species object\n", + "dtype: object" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
count150.000000150.000000150.000000150.000000
mean5.8433333.0540003.7586671.198667
std0.8280660.4335941.7644200.763161
min4.3000002.0000001.0000000.100000
25%5.1000002.8000001.6000000.300000
50%5.8000003.0000004.3500001.300000
75%6.4000003.3000005.1000001.800000
max7.9000004.4000006.9000002.500000
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "count 150.000000 150.000000 150.000000 150.000000\n", + "mean 5.843333 3.054000 3.758667 1.198667\n", + "std 0.828066 0.433594 1.764420 0.763161\n", + "min 4.300000 2.000000 1.000000 0.100000\n", + "25% 5.100000 2.800000 1.600000 0.300000\n", + "50% 5.800000 3.000000 4.350000 1.300000\n", + "75% 6.400000 3.300000 5.100000 1.800000\n", + "max 7.900000 4.400000 6.900000 2.500000" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Iris-setosa 50\n", + "Iris-versicolor 50\n", + "Iris-virginica 50\n", + "dtype: int64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.species.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 0\n", + "sepal_width 0\n", + "petal_length 0\n", + "petal_width 0\n", + "species 0\n", + "dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 3\n", + "\n", + "Use sorting, split-apply-combine, and/or visualization to look for differences between species." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### sorting" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[5.2 4.1 1.5 0.1 'Iris-setosa']\n", + " [4.3 3.0 1.1 0.1 'Iris-setosa']\n", + " [4.9 3.1 1.5 0.1 'Iris-setosa']\n", + " [4.9 3.1 1.5 0.1 'Iris-setosa']\n", + " [4.8 3.0 1.4 0.1 'Iris-setosa']\n", + " [4.9 3.1 1.5 0.1 'Iris-setosa']\n", + " [5.1 3.5 1.4 0.2 'Iris-setosa']\n", + " [5.2 3.5 1.5 0.2 'Iris-setosa']\n", + " [5.2 3.4 1.4 0.2 'Iris-setosa']\n", + " [4.7 3.2 1.6 0.2 'Iris-setosa']\n", + " [4.8 3.1 1.6 0.2 'Iris-setosa']\n", + " [5.5 4.2 1.4 0.2 'Iris-setosa']\n", + " [5.5 3.5 1.3 0.2 'Iris-setosa']\n", + " [4.4 3.0 1.3 0.2 'Iris-setosa']\n", + " [5.1 3.4 1.5 0.2 'Iris-setosa']\n", + " [4.4 3.2 1.3 0.2 'Iris-setosa']\n", + " [5.1 3.8 1.6 0.2 'Iris-setosa']\n", + " [4.6 3.2 1.4 0.2 'Iris-setosa']\n", + " [5.3 3.7 1.5 0.2 'Iris-setosa']\n", + " [5.0 3.3 1.4 0.2 'Iris-setosa']\n", + " [5.0 3.0 1.6 0.2 'Iris-setosa']\n", + " [4.8 3.4 1.9 0.2 'Iris-setosa']\n", + " [5.0 3.2 1.2 0.2 'Iris-setosa']\n", + " [4.6 3.1 1.5 0.2 'Iris-setosa']\n", + " [4.7 3.2 1.3 0.2 'Iris-setosa']\n", + " [5.0 3.4 1.5 0.2 'Iris-setosa']\n", + " [4.4 2.9 1.4 0.2 'Iris-setosa']\n", + " [5.4 3.7 1.5 0.2 'Iris-setosa']\n", + " [5.0 3.6 1.4 0.2 'Iris-setosa']\n", + " [4.8 3.4 1.6 0.2 'Iris-setosa']\n", + " [5.8 4.0 1.2 0.2 'Iris-setosa']\n", + " [4.9 3.0 1.4 0.2 'Iris-setosa']\n", + " [5.4 3.4 1.7 0.2 'Iris-setosa']\n", + " [4.6 3.6 1.0 0.2 'Iris-setosa']\n", + " [5.1 3.5 1.4 0.3 'Iris-setosa']\n", + " [5.7 3.8 1.7 0.3 'Iris-setosa']\n", + " [5.1 3.8 1.5 0.3 'Iris-setosa']\n", + " [4.6 3.4 1.4 0.3 'Iris-setosa']\n", + " [5.0 3.5 1.3 0.3 'Iris-setosa']\n", + " [4.5 2.3 1.3 0.3 'Iris-setosa']\n", + " [4.8 3.0 1.4 0.3 'Iris-setosa']\n", + " [5.7 4.4 1.5 0.4 'Iris-setosa']\n", + " [5.4 3.9 1.3 0.4 'Iris-setosa']\n", + " [5.0 3.4 1.6 0.4 'Iris-setosa']\n", + " [5.4 3.9 1.7 0.4 'Iris-setosa']\n", + " [5.1 3.7 1.5 0.4 'Iris-setosa']\n", + " [5.1 3.8 1.9 0.4 'Iris-setosa']\n", + " [5.4 3.4 1.5 0.4 'Iris-setosa']\n", + " [5.1 3.3 1.7 0.5 'Iris-setosa']\n", + " [5.0 3.5 1.6 0.6 'Iris-setosa']\n", + " [5.7 2.6 3.5 1.0 'Iris-versicolor']\n", + " [5.8 2.7 4.1 1.0 'Iris-versicolor']\n", + " [5.5 2.4 3.7 1.0 'Iris-versicolor']\n", + " [6.0 2.2 4.0 1.0 'Iris-versicolor']\n", + " [4.9 2.4 3.3 1.0 'Iris-versicolor']\n", + " [5.0 2.3 3.3 1.0 'Iris-versicolor']\n", + " [5.0 2.0 3.5 1.0 'Iris-versicolor']\n", + " [5.1 2.5 3.0 1.1 'Iris-versicolor']\n", + " [5.5 2.4 3.8 1.1 'Iris-versicolor']\n", + " [5.6 2.5 3.9 1.1 'Iris-versicolor']\n", + " [5.7 3.0 4.2 1.2 'Iris-versicolor']\n", + " [5.8 2.6 4.0 1.2 'Iris-versicolor']\n", + " [5.5 2.6 4.4 1.2 'Iris-versicolor']\n", + " [5.8 2.7 3.9 1.2 'Iris-versicolor']\n", + " [6.1 2.8 4.7 1.2 'Iris-versicolor']\n", + " [5.7 2.9 4.2 1.3 'Iris-versicolor']\n", + " [5.5 2.5 4.0 1.3 'Iris-versicolor']\n", + " [6.2 2.9 4.3 1.3 'Iris-versicolor']\n", + " [5.6 3.0 4.1 1.3 'Iris-versicolor']\n", + " [6.3 2.3 4.4 1.3 'Iris-versicolor']\n", + " [5.7 2.8 4.1 1.3 'Iris-versicolor']\n", + " [5.6 2.7 4.2 1.3 'Iris-versicolor']\n", + " [6.4 2.9 4.3 1.3 'Iris-versicolor']\n", + " [6.1 2.8 4.0 1.3 'Iris-versicolor']\n", + " [5.5 2.3 4.0 1.3 'Iris-versicolor']\n", + " [5.7 2.8 4.5 1.3 'Iris-versicolor']\n", + " [6.6 2.9 4.6 1.3 'Iris-versicolor']\n", + " [5.6 2.9 3.6 1.3 'Iris-versicolor']\n", + " [6.1 2.6 5.6 1.4 'Iris-virginica']\n", + " [7.0 3.2 4.7 1.4 'Iris-versicolor']\n", + " [5.2 2.7 3.9 1.4 'Iris-versicolor']\n", + " [6.1 2.9 4.7 1.4 'Iris-versicolor']\n", + " [6.1 3.0 4.6 1.4 'Iris-versicolor']\n", + " [6.8 2.8 4.8 1.4 'Iris-versicolor']\n", + " [6.6 3.0 4.4 1.4 'Iris-versicolor']\n", + " [6.7 3.1 4.4 1.4 'Iris-versicolor']\n", + " [6.0 2.2 5.0 1.5 'Iris-virginica']\n", + " [6.3 2.8 5.1 1.5 'Iris-virginica']\n", + " [6.4 3.2 4.5 1.5 'Iris-versicolor']\n", + " [6.9 3.1 4.9 1.5 'Iris-versicolor']\n", + " [6.5 2.8 4.6 1.5 'Iris-versicolor']\n", + " [6.0 2.9 4.5 1.5 'Iris-versicolor']\n", + " [6.3 2.5 4.9 1.5 'Iris-versicolor']\n", + " [5.4 3.0 4.5 1.5 'Iris-versicolor']\n", + " [5.9 3.0 4.2 1.5 'Iris-versicolor']\n", + " [6.2 2.2 4.5 1.5 'Iris-versicolor']\n", + " [5.6 3.0 4.5 1.5 'Iris-versicolor']\n", + " [6.7 3.1 4.7 1.5 'Iris-versicolor']\n", + " [6.3 3.3 4.7 1.6 'Iris-versicolor']\n", + " [7.2 3.0 5.8 1.6 'Iris-virginica']\n", + " [6.0 3.4 4.5 1.6 'Iris-versicolor']\n", + " [6.0 2.7 5.1 1.6 'Iris-versicolor']\n", + " [4.9 2.5 4.5 1.7 'Iris-virginica']\n", + " [6.7 3.0 5.0 1.7 'Iris-versicolor']\n", + " [6.5 3.0 5.5 1.8 'Iris-virginica']\n", + " [6.4 3.1 5.5 1.8 'Iris-virginica']\n", + " [6.1 3.0 4.9 1.8 'Iris-virginica']\n", + " [6.2 2.8 4.8 1.8 'Iris-virginica']\n", + " [7.2 3.2 6.0 1.8 'Iris-virginica']\n", + " [6.3 2.7 4.9 1.8 'Iris-virginica']\n", + " [6.0 3.0 4.8 1.8 'Iris-virginica']\n", + " [5.9 3.0 5.1 1.8 'Iris-virginica']\n", + " [5.9 3.2 4.8 1.8 'Iris-versicolor']\n", + " [6.3 2.9 5.6 1.8 'Iris-virginica']\n", + " [7.3 2.9 6.3 1.8 'Iris-virginica']\n", + " [6.7 2.5 5.8 1.8 'Iris-virginica']\n", + " [7.4 2.8 6.1 1.9 'Iris-virginica']\n", + " [6.3 2.5 5.0 1.9 'Iris-virginica']\n", + " [5.8 2.7 5.1 1.9 'Iris-virginica']\n", + " [5.8 2.7 5.1 1.9 'Iris-virginica']\n", + " [6.4 2.7 5.3 1.9 'Iris-virginica']\n", + " [5.6 2.8 4.9 2.0 'Iris-virginica']\n", + " [7.7 2.8 6.7 2.0 'Iris-virginica']\n", + " [6.5 3.0 5.2 2.0 'Iris-virginica']\n", + " [5.7 2.5 5.0 2.0 'Iris-virginica']\n", + " [7.9 3.8 6.4 2.0 'Iris-virginica']\n", + " [6.5 3.2 5.1 2.0 'Iris-virginica']\n", + " [6.9 3.1 5.4 2.1 'Iris-virginica']\n", + " [7.1 3.0 5.9 2.1 'Iris-virginica']\n", + " [6.8 3.0 5.5 2.1 'Iris-virginica']\n", + " [7.6 3.0 6.6 2.1 'Iris-virginica']\n", + " [6.7 3.3 5.7 2.1 'Iris-virginica']\n", + " [6.4 2.8 5.6 2.1 'Iris-virginica']\n", + " [7.7 3.8 6.7 2.2 'Iris-virginica']\n", + " [6.4 2.8 5.6 2.2 'Iris-virginica']\n", + " [6.5 3.0 5.8 2.2 'Iris-virginica']\n", + " [6.9 3.2 5.7 2.3 'Iris-virginica']\n", + " [6.4 3.2 5.3 2.3 'Iris-virginica']\n", + " [6.2 3.4 5.4 2.3 'Iris-virginica']\n", + " [6.9 3.1 5.1 2.3 'Iris-virginica']\n", + " [6.8 3.2 5.9 2.3 'Iris-virginica']\n", + " [6.7 3.0 5.2 2.3 'Iris-virginica']\n", + " [7.7 2.6 6.9 2.3 'Iris-virginica']\n", + " [7.7 3.0 6.1 2.3 'Iris-virginica']\n", + " [6.3 3.4 5.6 2.4 'Iris-virginica']\n", + " [6.7 3.1 5.6 2.4 'Iris-virginica']\n", + " [5.8 2.8 5.1 2.4 'Iris-virginica']\n", + " [6.3 3.3 6.0 2.5 'Iris-virginica']\n", + " [6.7 3.3 5.7 2.5 'Iris-virginica']\n", + " [7.2 3.6 6.1 2.5 'Iris-virginica']]\n" + ] + } + ], + "source": [ + "# sort the DataFrame by petal_width and display the NumPy array\n", + "print iris.sort('petal_width').values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### split-apply-combine" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "species\n", + "Iris-setosa 5.006\n", + "Iris-versicolor 5.936\n", + "Iris-virginica 6.588\n", + "Name: sepal_length, dtype: float64" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mean of sepal_length grouped by species\n", + "iris.groupby('species').sepal_length.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
species
Iris-setosa5.0063.4181.4640.244
Iris-versicolor5.9362.7704.2601.326
Iris-virginica6.5882.9745.5522.026
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "species \n", + "Iris-setosa 5.006 3.418 1.464 0.244\n", + "Iris-versicolor 5.936 2.770 4.260 1.326\n", + "Iris-virginica 6.588 2.974 5.552 2.026" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mean of all numeric columns grouped by species\n", + "iris.groupby('species').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + "
petal_lengthpetal_widthsepal_lengthsepal_width
species
Iris-setosacount50.00000050.00000050.00000050.000000
mean1.4640000.2440005.0060003.418000
std0.1735110.1072100.3524900.381024
min1.0000000.1000004.3000002.300000
25%1.4000000.2000004.8000003.125000
50%1.5000000.2000005.0000003.400000
75%1.5750000.3000005.2000003.675000
max1.9000000.6000005.8000004.400000
Iris-versicolorcount50.00000050.00000050.00000050.000000
mean4.2600001.3260005.9360002.770000
std0.4699110.1977530.5161710.313798
min3.0000001.0000004.9000002.000000
25%4.0000001.2000005.6000002.525000
50%4.3500001.3000005.9000002.800000
75%4.6000001.5000006.3000003.000000
max5.1000001.8000007.0000003.400000
Iris-virginicacount50.00000050.00000050.00000050.000000
mean5.5520002.0260006.5880002.974000
std0.5518950.2746500.6358800.322497
min4.5000001.4000004.9000002.200000
25%5.1000001.8000006.2250002.800000
50%5.5500002.0000006.5000003.000000
75%5.8750002.3000006.9000003.175000
max6.9000002.5000007.9000003.800000
\n", + "
" + ], + "text/plain": [ + " petal_length petal_width sepal_length sepal_width\n", + "species \n", + "Iris-setosa count 50.000000 50.000000 50.000000 50.000000\n", + " mean 1.464000 0.244000 5.006000 3.418000\n", + " std 0.173511 0.107210 0.352490 0.381024\n", + " min 1.000000 0.100000 4.300000 2.300000\n", + " 25% 1.400000 0.200000 4.800000 3.125000\n", + " 50% 1.500000 0.200000 5.000000 3.400000\n", + " 75% 1.575000 0.300000 5.200000 3.675000\n", + " max 1.900000 0.600000 5.800000 4.400000\n", + "Iris-versicolor count 50.000000 50.000000 50.000000 50.000000\n", + " mean 4.260000 1.326000 5.936000 2.770000\n", + " std 0.469911 0.197753 0.516171 0.313798\n", + " min 3.000000 1.000000 4.900000 2.000000\n", + " 25% 4.000000 1.200000 5.600000 2.525000\n", + " 50% 4.350000 1.300000 5.900000 2.800000\n", + " 75% 4.600000 1.500000 6.300000 3.000000\n", + " max 5.100000 1.800000 7.000000 3.400000\n", + "Iris-virginica count 50.000000 50.000000 50.000000 50.000000\n", + " mean 5.552000 2.026000 6.588000 2.974000\n", + " std 0.551895 0.274650 0.635880 0.322497\n", + " min 4.500000 1.400000 4.900000 2.200000\n", + " 25% 5.100000 1.800000 6.225000 2.800000\n", + " 50% 5.550000 2.000000 6.500000 3.000000\n", + " 75% 5.875000 2.300000 6.900000 3.175000\n", + " max 6.900000 2.500000 7.900000 3.800000" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# description of all numeric columns grouped by species\n", + "iris.groupby('species').describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### visualization" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n8Q1Jy4CjgA+y/qlX64AbgYMj4sc9EsdXgUlDLP8TsG+bYyhLHPeQnhd+R35mRBwpaRypj7ndfcNl\niAFgEenwqOSlAAAWJUlEQVTRr4MD3ezBhvfHv5jU0tQU96mbWUdIeiawRfby0YhY08tx9DJJxwB7\nR8R+DZafCXy0zX3qXY8hW89hwAMRMb/B8i8Ck32fupmZWY/xhXJmZmYV4aRuZmZWEU7qZmZmFeGk\nbmZmVhFO6mZmZhXhpG5mZlYRTupmZmYV4aRuZmZWEU7qZmZmFeGkbmZmVhFO6mZmZhXhpG5mZlYR\nTupmZmYV4aRuZmZWEU7qZmZmFeGkbmZmVhFO6mZmZhXhpG5mZlYRTupmZmYV4aRuZmZWEU7qHSBp\nrqSBKqyzlXol9UkakLRX0XGZmZmT+qhJmpMlqN2bKB7Z1EntWmer9XZ6O5iZ9QxFeB87GpLmAN8D\nXhMRC4YpOx4YHxFrOhFbO9fZSr2SBDwD+Ef4g2dmVjifqbeRpEkAEbGukwl9JOuU9Kx21NvgvRER\na5zQzczaw0m9IJLOlrRa0lRJ8yUtB36ZLXtaP7SkXSX9StLS7H2LJJ0raeIQ63h31uS/b51l78/3\nVzdY5yJJl0h6vaT/lrQa+Pds2fMk/UDSCkmPZX/PtKzO2bk6hqp3hqQF2d/zP5IOrilXt09d0ksl\n/Si3Le6RdEpu+VRJZ0q6U9LjWXy/kPSKRtvKzKwXbdTtACpmHHAp8N/A0cDa3LKnzk4lbQlcBiwF\nvgQ8BrwEeCvwbOCJBvX/ElgJHAhcUbPsQOChiLi63jpzr7cDfgKcBXwH+HPWLP4LYHfgG8CdwNuA\nc4aop/b1Nlm9/wF8H/gQcLakGyPijgZ/D5J2An5P2lZnAfdldc0CjsyKvQp4HfBj4M/Ai4APA1dJ\n2ikiHmlUv5lZL3FSL9YzgF9ExNF1lin3+57AZsAbI+Km3Py5Q1UeEU9Img+8U9LHImIdgKRNgZnA\nmUOsc/D1PwH/EhG/fGqm9E7gNcAnIuKUbN63SAce9dSr96XAXhFxTfb+nwAPAIcA/3eIP+tM0sHQ\nbhFxf27+p3O/XxwRF26wQukHwB2kg4cvDFG/mVnPcPN78b7RRJm/ZT/fKmmkB1bnA88D3pCb9w7S\nAcX5Tbz/gXxCz+xHOlP+9uCMrN+79iBhKHcPJvTs/Y8Cd5POuuvKWiz2As6uSegbiIgncu95tqTn\n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\nzxVQt5mZmTWp5T71Ea3MfeqVUcb+6zLGNBLuUzezVnnsdzMzs4pwUjczM6sIJ3UzM7OKcFI3MzOr\nCCd1MzOzinBSNzMzqwgndTMzs4pwUjczM6sIJ3UzM7OKcFI3MzOriEKSuqQXSDpH0lJJqyXdLmmv\nIuo2MzOz5rT8QBdJmwK/B64G9gf+AmwLLG21bjMzM2teEU9p+3fgoYiYk5t3fwH1mpmZ2QgU0fz+\ndmCBpAskLZF0s6TDCqjXzMzMRqCIpL4t8DHgXmAmcBrwRSd2MzOzzmr5eeqS1gALImJGbt4XgHdE\nxI41Zf089Yoo47PLyxjTSPh56mbWqiL61BcDd9TMuwt4Sb3Cc+fOfer3vr4++vr6CgjBxpKUfEev\nlcQ81Lo7nfD7+/vp7+/v6DrNrNqKOFP/IbBVROyVm/d50pn6K2rK+ky9Ilo5K27mvY2Xd77eTvGZ\nupm1qog+9VOA10g6VtJ2kg4A/hU4s4C6zczMrEktn6kDSNofOBHYgXQ72xkRcUadcj5TrwifqRfP\nZ+pm1qpCknrTK3NSrwwn9eI5qZtZqzz2u5mZWUU4qZuZmVWEk7qZmVlFOKmbmZlVhJO6mZlZRRQx\nopxZXa2OHGdmZiPjpG5t1Pj2MTMzK56b383MzCrCSd3MzKwinNTNzMwqwkndzMysIgpP6pKOkTQg\n6fSi6zYzM7PGCk3qkl4DHArcytBP1jAzM7OCFZbUJW0C/CdwCPBYUfWamZlZc4o8Uz8L+ElEXIVv\nRDYzM+u4QgafkXQosC1wUDbLTe9mZmYd1nJSl7QD8AVgRkSsG5xNg7P1uXPnPvV7X18ffX19rYZg\nNib19/fT39/f7TDMrEIU0dpJtaQ5wPeAdbnZ40ln6+uASRHxj6xstLo+K4c0rvtQ/8uhlrf23kaf\noVZj6vZnUxIR4a4rMxu1IpL6JsCL8rOA7wP3ACdGxB25sk7qFeGkXjwndTNrVcvN7xGxHFienydp\nFfBYPqGbmZlZe7VrRLnAF8uZmZl1VMvN7yNamZvfK8PN78Vz87uZtcpjv5uZmVWEk7qZmVlFOKmb\nmZlVhJO6mZlZRRQyTKyV05NPPsnXvva1IcvMmjWL7bbbrkMRmZlZO/nq9wpbsWIFm222BXB03eXP\neMYFXHjh13nzm9884rq7efX70Hz1u5n1Lp+pV9xGG01kzZoT6y6bOPGWDkdTlNEmfDOzanOfupmZ\n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\nYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of petal_width grouped by species\n", + "iris.hist(column='petal_width', by='species', sharex=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of petal_width grouped by species\n", + "iris.boxplot(column='petal_width', by='species')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of all numeric columns grouped by species\n", + "iris.boxplot(by='species')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# map species to a numeric value so that plots can be colored by species\n", + "iris['species_num'] = iris.species.map({'Iris-setosa':0, 'Iris-versicolor':1, 'Iris-virginica':2})\n", + "\n", + "# alternative method\n", + "iris['species_num'] = iris.species.factorize()[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfwAAAFrCAYAAAA0MTvoAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd4VNX28PHvyiQhmZCEHopU6YiigtQLAVGaiIIKigX0\nesF2VSxcvBbQV9GfXAW7YMHO9VoQxY6AKIogiKAQBaT3IgEmdWa9f5wJJhCSGSaTTML6PM88Zs7s\ns88680hWdjl7i6pijDHGmIotqqwDMMYYY0z4WcI3xhhjTgCW8I0xxpgTgCV8Y4wx5gRgCd8YY4w5\nAVjCN8YYY04AlvCNMcaYE0BEJnwRuUFElovIfv9roYj0L+actiIyX0Q8IrJZRO4prXiNMcacOERk\nnIgs9uennSIyS0TaBHBemeapiEz4wCbgTuB04EzgK2CmiJxWWGERSQK+ALYB7YGbgTtEZEzphGuM\nMeYE0gN4CugM9AJygS9FpOqxToiEPCXlZaU9EdkD/EtVpxXy2XXARCBFVbP8x/4NXKeqJ5VupMYY\nY04kIpIA7AcGqersY5Qp8zwVqS38w0TEJSLDgDjg62MU6wwsyPsS/T4H6opIw3DHaIwx5oSWhJNP\n9xVRpszzVMQmfP9Yx0EgE5gKXKKqaccoXhvYccSxHfk+M8YYY8JlCrAM+K6IMmWep6JL4yLHaTVw\nKpAMXAzMEJGeqrqkkLLlY1zCGGNMhSIijwFdgG5a9Bh5meepiE34qpoDrPO/XSYiHYAbgJGFFN/O\n0X8hpeT77CgiUuZfvjHGmL+oqpR0nSX1u76w2ETkceASoKeqri+miqDzVEmL2C79Qrg4drzfAX8T\nkUr5jp0DbFHVDceqUFXLzatHjx5lHoPFHHmv8hZveYy5vMVbXmMOKw3xVQgRmQIMBXqp6m8BRHFc\neaokRWTCF5GHRaSbiDTyj+VPxHkM4nX/5xNF5Mt8p7wJeIDpItJGRAYDY4HHSj34MGnUqFFZhxA0\nizn8ylu8UP5iLm/xQvmMOZyifKG9jiQiTwMjgOHAfhGp7X8l5CsTcXkqUrv0U3CSe22cRx2WA31V\n9Qv/57WBJnmFVTVdRM4BngaWAHuBSar6eKlGHUbl8R+wxRx+5S1eKH8xl7d4oXzGHE6FJe1gFHL6\ndTht/zlHHB8P3O//OeLyVEQmfFUtbJy+yM9VdSVOL0CFlJqaWtYhBM1iDr/yFi+Uv5jLW7xQPmMO\np1AT/pFUtdje8UjMU+Vm4Z2SJiJ6ot67McZEGhFBwzRpLzar+HJFya4UngmFpS0iW/jGGGNMSSnp\nFn55ZQnfGGNMhWYJ32EJ3xhjTIVmCd8RkY/lGWOMMaZkWQvfGGNMhWYtfIclfGOMMRWaJXyHJXxj\njDEVmiV8h43hG2OMMScAa+EbY4yp0KyF77CEb4wxpkKzhO+whG+MMaZCs4TvsIRvjDGmQrOE77BJ\ne8YYY8wJwFr4xhhjKjRr4Tss4RtjjKnQLOE7LOEbY4yp0CzhO2wM3xhjjDkBWAvfGGNMhWYtfIcl\nfGOMMRWaJXyHJXxjjDEVmiV8h43hG2OMMScAa+EbY4yp0KyF77AWvjHGmAotyhfa60gi0l1EZonI\nZhHxichVxcUgIv1F5HsRSReRXSIyU0SaheN+j8USvjHGmAqtpBM+kAD8DNwMZABa1PVFpCkwE5gH\ntAN6A3HAxyV3l8WzLn1jjDEmCKr6CfAJgIhMD+CUdjgN7HGqqv7zHgHmiEg1Vd0brljzsxa+McaY\nCi0MLfxgfQscBK4VEZeIJAIjgB9KK9mDtfCNMcZUcGU9aU9Vt4lIf5xu/adxGtvLgH6lGYclfGOM\nMRVasAn/wBI48GPJXV9EmuAk+5eBN4Ek4H7gbRHpldfNH26W8I0xxph8Ets7rzzbp4Zc5Shgk6qO\nzTsgIpcDm4DOwMKQrxAAS/jGGGMqtLLu0gcEODKKvPelNpfOJu0ZY4yp0MLwHH6CiLQTkbzZ9w39\n7+v7P58oIl/mO2UWcIaI3CMizUTkDJzu/Y1ACQ4eFM0SvjHGmAotDLP0OwBL/a84YIL/5wn+z2sD\nTfIKq+o3wFBgkL/cJ0Am0FdVM8J020eRUporEHFEpLTmSRhjjCmGiKCqEoZ6tcu3odWxsCthia20\nWQvfGGOMOQHYpD1jjDEVWgRM2osIlvCNMcZUaJbwHRHbpS8i40RksYjsF5Gd/p2J2hRzTiP/zkVH\nvs4trbiNMcZElghYWjciRGzCB3oAT+EsStALyAW+FJGqAZzbB2eWZN5rbriCNMYYY8qDiO3SV9W+\n+d+LyBXAfqALMLuY0/eq6s5wxWaMMab8qEit9FBEcgv/SEk48e4LoOx7IrJDRL4RkSFhjssYE+Ge\nnfos9VvXp07zOkx4aAKBPJKblpbGWWefRY2GNeg5sCebNm3irvF3UbtpbRq0acDLr7xcCpGbkmBd\n+o6IbeEXYgrO7kLfFVHmAHAbzlaEuTiLHPxXRK5S1TfCH6IxJtL8753/cfsjt+N50wPx8H8j/o/K\nCZW57ebbjnlOeno63c7txp7b96ADlAUvL6Bdl3Zk1svEM9MD++HGy26kVo1aDBgwoBTvxhyPipS0\nQ1EuWvgi8hhOV/6QolbLUdU9qvq4qv6gqktV9T7gOeDO0orVGBNZ3vzgTTx3e6AjcCp4HvHwxsyi\n//5ftmwZOSfloDcpNAHv/V72ZezDM8kDpwBdwTPWw1sfvFUq92BMSYj4Fr6IPA5cAvRU1fXHUcVi\n4OrCPhg/fvzhn1NTU0lNTT2O6o0xkaxK5SpEbY7Cl7dXySZIqpxU5DmVK1cmd0cuZAOxQDrOVieb\n/ioTtSmKKpWrhCnqim/evHnMmzevVK5lLXxHRC+tKyJTgItxkn3acdbxODBQVZsecdyW1jXmBPD7\n77/Tvlt7Dl16CJ/bR/y0eOZ8OIdOnTod8xxVpf9F/fl679d4zvGQ8F4CqQ1SmbtgLhmjMnD96SLh\n3QR++u4nGjVqVHo3U4GFc2nd/sVN8y7GxwMqxtK6EdvCF5GngcuBC4D9IlLb/9EBVT3kLzMR6KCq\nvf3vr8L5m/wnnL/HBwLXY136xpywmjVrxvJFy5n+6nRyc3MZNncYp5xySpHniAgf/vdDXn75ZVav\nWc2ZY87k0ksvZfny5bz97tvEpcQx8oeR1K9fv5TuwoTCWviOiG3hi4gPUJx9hPMbr6r3+8u8DPRQ\n1Sb+91cCY4GGgBdIAyar6puF1G8tfGOMiRDhbOGf92FodXw00Fr4YaWqxU4oVNWRR7x/FXg1bEEZ\nY4wpd6yF74jYhG+MMcaUBEv4Dkv4xpgyoaosXLiQ3bt306FDB+rWrVtidX/11Vd88cUXtGvXjqFD\nh5ZYvaZ8soTvsIRvjCl1Pp+Pi668iM9/+BxXMxe+a33Mfmc23bt3D7nu62+6nmenPwsdgGnw2HOP\nsWjuotCDNuWWJXxHuVh4xxhTsXzwwQd8vupzDv18iPTZ6RycfpBh1wwLud69e/fy7LRn4XvgKyAN\nflj+A++++27IdRtT3lnCN8aUug0bNpDbJRfi/AdSYefG0Pe7SktLAzeQt5F2defnFStWhFy3Kb9s\nLX2HJXxjTKlr3749rlku2AgoRD0VRZv2bYo9rzinnXYaki2Q16Bf5rzOOeeckOs25ZclfIclfGNM\nqevWrRv3j7mfmFYxxNWKo8GrDZj5+syQ63W73Ux/ZjpylUAy0BnGXDeGrl27hh60Kbcs4TsiduGd\ncLOFd4wpex6Ph/T0dGrVqkVUVMm1P7Kzs1m5ciXNmzencuXKJVavCZ9wLrxzWYh7pb45vGIsvGMt\nfGNMmXG73dSuXbtEkz1AbGwsZ5xxhiV7A5R8C19EuovILBHZLCI+/7LuxRKRW0RktYhkishW//Lw\npcYeyzPGGFOhhaFbPgH4GXgFZ3XXYruL/du8DwBuB1bgDDrVKfHIimAJ3xhjTIVW0glfVT8BPgEQ\nkenFlReRFsCNQNsjdn5dXrKRFc269I0xZWL16tX0v6Q/Z/Q6gwkPTSArK4sJD03gzF5n0v+S/qxa\ntYqlS5dyzuBzaH92eyZNnkRGRgZ33H0HZ/Q8gwuGX8Aff/wR0LU+++wz/jbgb3Tq04m3ZrxVaJl3\n3n2Hzn0707V/Vz78sPDdVqa/Op2O53ak+3ndmTt37nHfe0nIyMjg1n/dyumppzPkyiFs3ry5TOMx\nRRoErAP6i8g6EflDRKaLSM3SDMIm7RljSt2WLVtofWZrDtx5AG2ruB900/BgQzYkbMBztwdZKSRM\nTMCb6yXjoQxoBO673TSgARtSNpBxawauRS6qPl+V1ctWU7169WNea+7cuQy4dAAZj2dAPLhvdfP8\ng89z+WWXHy7z3nvvccXNV+CZ7AEvxN8Sz7svvku/fv0Ol5n24jRuefgWPI954E+Ivy2eL2d+SZcu\nXcL5VR1TvyH9mKfzyLwhE9d8FzXfqEnasjSSkpLKJJ5QhXPS3tUvhlbHS9cce9KeiBwAbvBv3nas\nGJ4DrsLZuv0O/+FJ/v92Lq1kZF36xphSN2vWLHL65KBjnN9znlM9rGqwCjYAtUHPUTKXZOLd7oXR\nzjmeOh5Wn7ka0gE3eHt7yVyUyRdffMGwYcdepe+ZV54h474MuNRfT5SHKU9MKZDwp7w8Bc8kDwxx\n3md4Mnji5ScKJPwpL03B84wH/I/0Z+zMYNpr08ok4e/fv585n80hZ08OVALv2V4OLTzE/PnzGThw\nYKnHE+ki4NG6KKAScIWqrgEQkStwtnBvDywujSAs4RtjSp3L5XIWyMmTBQiQ/dchyRLEK2jefKi8\nz7JxVtPzn+dyuYq8VrQr2qk/37WOPMflch1VJtoVfXSZ7KLLlJaoqChnmlguThpRAvouTlTBJvyt\nabD1txINYRuQm5fs/dYAXqABpZTwbQzfGFPqLrzwQtzfunHd5YI3wX2Bm46dO+Ie5IY3wXWXi8rf\nV8b9q5uoB6LgdXBf4abj3zriPs8Nb0HMLTFUWV+Fvn37FnmtW0fdivtBNzwBTIP4f8Zz9013Fyhz\n1413EX9HPDwPPA3ue9zcef2dBcrc/c+7iR8VDy8Bj0HC4wnceO2NJfvFBCgxMZGLhl2E+3znu4i9\nPpaa+2vSs2fPMomnoqnbAtoP/OtVAr4BokWkSb5jTQAXTr9WqbAxfGNMmdi8eTP3TbyPbbu3MfDs\ngYz6+yimvjiVWV/Oonb12kwY50zku//R+9mzfw/DBg7jsmGXMfmpyXz57Zc0qtuICXdNoFatWsVe\na9GiRUx6dhI5uTlcf+X1nHvuuUeVmTt3Lk+89ARREsWt/7iVbt26HVVm9uzZTH1zKnGxcYy9aSxn\nnHFGiXwXxyM3N5dJkycx/4f5nFz/ZO7/9/1Uq1atzOIJVTjH8Ec/G1odz11XcAxfRBKAZv633wIP\nAx8Ce1R1k//5+g6q2ttfXnBa8QeBW3D6syYDMapaamNClvCNMcaUuXAm/OufDq2OZ244KuGn4uzH\nCM6ASt5n01X1ahF5Geihqk3ynVMbp5+pL5ABfA6MUdVdoUUXOBvDN8YYU6GF4Tn8eRQxJK6qIws5\nth24pGQjCY4lfGOMMRVaBMzSjwg2ac8YU+EcOHCA5cuXs3v37mOW+fPPP1m+fDn79u0rxcgC5/F4\n+Pnnn9m2bVtZh2IqCEv4xpgKZe7cudQ7uR7dh3enfrP6PP/C80eVmfnBzMNl6p1cj//+779lEOmx\nLVu2jPrN69NtWDcat27MfQ/eV9YhlWu2Pa7DJu0ZYyqM7OxsapxUgwMzDkAvYA3Ed4nn54U/07Rp\nU8Bp2dc7uR6eTz3QAVgO8b3i+ePXP0hJSSnT+PPUb1mfzfduhsuAHeDu6Oaz1z8r9MmBiiKck/bG\n/Ce0Oh67zbbHNcaYiLJ9+3a8MV4n2QM0hdgzY1m9evXhMn/88QfR9aKdZA9wGsQ2jWXt2rWlHm9h\ncnJy2PL7FshbPDAF6A2//PJLWYZVrlkL32EJ3xhTYaSkpCCZAt/5D2yG7GXZh1v3AA0bNiRncw6s\n9B9Ig+w12TRq1Ki0wy1UTEwMKY1SnKe6AfaBzBdatGhRpnGZ8s8SvjGmwqhUqRJvv/Y2CecnkNw5\nmbh2cdw/7n5atmx5uEy1atV44ZkXiO8RT3LnZOK7xPPUY09Rt27dMoy8oPffeJ+kUUkkd0omvmU8\n/7joH6SmppZ1WOWWtfAdNoZvjKlwdu3aRVpaGg0aNKBBgwaFltm2bRtr166lSZMmEZXs8/z555/8\n8ssvpKSkFOihqKjCOYb/r4mh1fHwuIoxhm/P4RtjKpyaNWtSs2bRW43XqVOHOnXqlFJEwatSpQpd\nu3Yt6zAqhIrUSg+FdekbY4wxJwBr4RtjjKnQrIXvsIRvjCk3VJUXXnqBOQvn0LBOQ8bdPo5du3bx\n2NOPccBzgKsuvopevXrxzHPP8M2P39CiUQvG3jaWdevW8eTUJ8nOzebay68ttKt80aJFPP/K84gI\nN1xzQ6nuhLd161YeefwRdu3bxeB+g7loyEWldu0TgSV8hyV8Y0y5MWbcGKZ+MRXPKA+xi2KZ0XkG\ne/fs5dDoQ+jJyvsj3ufMU87kx4wf8VzhIW5OHP/923/ZvHEznjEeiIf/Df4fH7zxAb179z5c74IF\nC+gzuA8ZYzPACzP6zGDu7LmcddZZYb+nXbt20a5zO/YO2Yu3vZcP/vUBm7du5pabbgn7tU8UlvAd\nNkvfGFMu5OTk4E50k7s5F2oACjHdYsiplQPv+wv9D7gS2AVUBnwQ3Saa3B658Jy/zJvQ5bUufPvJ\nt4frPmfwOXw54Eu4xn/gKRj03SBmvjEz7Pf1xBNPMHbJWDJfzXQOrICq/aqyd/PesF87koRzlv74\nEFcmHj/BZukbY0yp8Xq9qCok+g8IkAxUylcoHiRG0Hj/H/NROOXj8pWpAlnZWQXqzsjKgCr5DiRD\nRnZGCd9B4bKysvAmewvEl5OdUyrXPlFYC99hs/SNMeVCXFwcfc7vQ9wVcbAIZIpQ6cdKxM+Jh3eA\nr8F9j5t69eoR+49YWASuB11U3lqZ+Lfj4SNgDrhvdTPqslEF6r7u8utw3+mGz4FPwH23m+uGX1cq\n9zVo0CBiZ8TCdGAhuK9yM/yy4aVy7ROFLbzjsBa+Mabc+N8r/+PWcbfy1Q1fUb9ufZ6Z/wwbNmzg\nrofvwpPhYeQVI/nH1f/gxjtv5Pvrv6dp46Y8981zLF26lAn/N4Hc3Fxuuv0m/n713wvUO/zS4WRn\nZ/OfCf9BRBj38DguuOCCUrmn5s2b89Xsr7j5npvZs3cPF/a7kAfvfbBUrn2iqEhJOxQ2hm+MMabM\nhXMM/+GxodXxr0cqxhh+RHbpi8g4EVksIvtFZKeIzBKRNgGc11ZE5ouIR0Q2i8g9pRGvMcYYE+ki\nMuEDPYCngM44G13mAl+KSNVjnSAiScAXwDagPXAzcIeIjAl/uMYYYyKVjeE7InIMX1X75n8vIlcA\n+4EuwOxjnDYcZy7uVaqaBfwqIi2BMcBjYQzXGFMIn8+Hx+OhcuXKh495PB5iY2OJjnZ+9Xi9XjIy\nMgqUOXjwIPHx8bhcrlKPOVwK+y4CcfDgQdxuN1FRkdo2Kx8qUtIORXn5vygJJ9Z9RZTpDCzwJ/s8\nnwN1RaRhOIMzxhQ04+0ZVK5Wmao1q3LyqSezePFiOp3dieTqybiT3EycNJHnX3ged7KbqjWr0rZT\nW5YsWULbTm2pWrMq7mQ3z7/wfFnfRol45bVXSKiSQNWaVWl5Zks2bNhQ7DkbNmyg5ZktqVqzKglV\nEnj19VdLIdKKy1r4jnIxaU9E3gZOBtofa6adiHwObFTVv+c71gBYD3RW1UVHlLdJe8aEwapVqziz\nx5lkfJEBp4I8IcQ9FEfuJbnkTM6BrRDXIw7dr2R9lwXNwDXeRaVplcj6exbeCV5YA+5UN3PenUOn\nTp3K+paO27Jly+jWvxueOR5oBVEPR9F6VmtWfLeiyPNO6XQKqwatwvcvH6yC+F7xLPx0Ie3atSul\nyEtfOCftPXZraHWMedwm7ZUKEXkMpyt/SDEZ2rK3MRFgyZIluHq74DRAQP+pZOzLIOeGHHAB9SHz\n8kxymuRAc6eMd6wXz04P3rFeZ0GdZuAd7OX7778v25sJ0Q8//AADgNaAgO8OH78s/oXc3NxjnpOT\nk8OvS37Fd6fP+S5agwwQpy5zXEq6hS8i3f2TyTeLiE9Ergo0FhFpJiIHRORASd5jICJyDD+PiDwO\nXAL0VNX1xRTfDtQ+4lhKvs+OMn78+MM/p6amkpqaejxhGmPyqVu3LvqTQgYQDywHcQm6XKEl4IPY\n72NhN2TnZEMMzkI6bkG/VzgbyIXoJdHU/VvdMr2XUNWtW5eopVGQDcQCiyGpRtLhOQyFiY6OJrF6\nIumL06ETkA1RS6Ooe2H5/i6ONG/ePObNm1cq1wpDt3wC8DPwCvAqATY4RSQWmAHMB7qXeFTFXT9S\nu7VFZApwMU6yTwug/GjgEaBW3ji+iNwFXKeq9Qspb136xoSBqjJs5DBm/zAbOU3wzvFy18138ciU\nRyAV2AAt41uSlJjED5t+gFbg+9LHv2/9Nw8+/iBRZ0dBGnRq2IlP3/20XE/e8/l8DLp0EPNWzYM2\nzn3OeGkGAwcOLPK8WbNmMeyaYU5PyUro2aYnM9+cWaEn74WzS/+pG0Kr48anj92l72+p36CqxU60\n8Ddik4CvgadUNbGYU0pURCZ8EXkauBy4AFiV76MDqnrIX2Yi0EFVe/vfJwFpwDzg/wEtgJeB8ar6\neCHXsIRvTJioKnPnzmXLli106NCBli1bsmnTJhYsWEBSUhJ9+vTB5XLxxRdfsGvXLrp06UKTJk1Y\nt24dCxcupEaNGpx77rkVIsH5fD7mzJnDjh076NixI82aNQvovN9//51FixaRkpJC7969ESn3Q8hF\nqugJX0QGAI8D7XB6rp+0hA+IiA+ni+TIL3i8qt7vL/My0ENVm+Q77xTgaeAsYC/wnKo+cIxrWMI3\nxpgIEc6E/0yI2yJc/2xoCV9E6gKLgQtUdbGIjKAMEn5EjuGrarF/1qvqyEKOrcRZtMcYY4wBgh/D\nT9sKv20t0RBeA55V1cUlWmuQIjLhG2OMMSUl2ITfqrbzyjP7x5BD6Al0F5H7/O8FiBKRHJx5Zi+E\nfIUAWMI3xpSKpUuX8tlnn5GUlMQVV1zh7Fx3003s3LmTiy66iFGjRh11Tnp6Oq+99hrp6en06dOH\nM844owwi/0taWhozZ86kUqVKXHbZZdSqVatM4zHlxilHvL8A+DfQASjZvoQiROQYfmmwMXxjSs9H\nH33E0GuGknVlFrHrY6m5sibbd24nu102nA68CNcOu5apz049fE56ejrturRje8vtZDfOptKrlZjx\nQvEz3MNl0aJFnH3e2WRdloVrv4vErxJZ/v1y6tatWI/LlZVwjuG/cE1odfz9xYJj+CKSAOTNvvwW\neBj4ENijqpuOnFReSEwjsEl7pccSvjGlp+EpDdk4eSP4f/25hrjwLvPCWpzOzWVAN9BDf/2bnDx5\nMuO+H0fmjEznwByo/8/6bPxlY2mHD0DnPp35/rLvwb/ESvRt0dwQdQOTH51cJvFUNOFM+C8dNeMr\nOFe/fFTCTwW+8r/NP8F8uqpeXdik8iNiGgE8oapJoUUWHOvSN8aEXfq+9L/aQ4C3pddZ9Drv12Qz\nnMVp8tn35z6ymubbGqMZHPiz1BcnO2zvvr0F7iG3WS67ftxVZvGYwJX0wjuqOo8iVqotbFL5EZ9P\nB6aXaFABKP8PuRpjIl7//v2Juy3O2bz6O4h9IdZZYWMOsAO4EarXr17gnL59+hL/UjwsBLZB3G1x\n9OvXr/SD9xvSfwjuf7thA7Ac3JPcDOk3pMziMYGzzXMclvCNMWE3bco0BiUNovKplUm5PIXpU6Yz\nfux4oi6KgsZQ69ta/Di34FTozp078+LjL5JyZQqVT63MoMRBvPBEqUxmLtT9d9/PyDNGktQxieoD\nq/PQLQ8xePDgMovHmGDZGL4xxpgyF84x/NeHh1bH5W9UjN3ybAzfGGNMhVaRuuVDYQnfGGNMhWYJ\n32Fj+MYYY8wJwBK+MSYk+/fvp9pJVZEEQRKFTl078cwzzxBTIwZJEKo1rsaqVauOOu/TTz+lQesG\nJNZKZNBlg9i/f/9xXf+qq68iKjkKqSy0at+K3377jW59u5FYM5FWHVqxdOnSo85Zs2YN7VPbk1gz\nkXbd2hUa34oVKzil0ykk1kyk49kdWb9+fbGxZGVlMeK6ESTXSaZ209q89sZrx3VPpmTZLH2HTdoz\nxoQkpXEtdp60y9keZDfQH9gP/BfoCDwE7nfcHNp26PA5v/zyCx1SO5DxRgacArH/jqXXgV588s4n\nQV37/vvv576n7oOPgRrAlRD7ayzeG714R3thDiTfnsyaFWuoUaMG4CTlxm0as+PGHfiG+ZD3heoP\nV2f9r+tJSEgA4M8//6RJmybse2Af9Ieo6VGc9OpJrP15LdHRxx4JHXXzKF5b+xoZz2TAVogfEs/s\n12fTs2fPoO7rRBTOSXvvhPj05EXvVoxJe9bCN8aEZOefu2Ay0AhoD4wDGuCsFl4HmAKe3R527tx5\n+Jw5c+bgu8gH5wJ1IfuJbL6c/WXQ135z5pvwL/91GznXys7NxnufF2oDw0FPURYv/muTsrS0NA7G\nHsR3iw9qg16nZNfIZuXKlYfLLFu2DG9jL1wN1Abfv3zsydjDH3/8UWQ8Mz+aScakDOf+O0HG9Rl8\n9OlHQd+XKVnWwndYwjfGhEREYF2+A2lAOpD3i3KT858qVaocLlKlShWi10U7i5ICrAV3sjvoa1er\nXA1+z3cgb6nevAXwssG3yUdycnKBa+fsynFiBDgEOdtyjirj3eIF/6q+7IXcfbkFyhQmuUqyE4Nf\n7NpYqiVXC/q+jAkHS/jGmJDcMPwGGAHcClwGvAbxvnjogdPa7wjnnX8esbGxh8+5+OKLabivIe5B\nbqLuiiJ+QDxT/m9K0Nee+sxU5HVxrjsGGAFndzybhO4JyN1CwtkJdGvTjU6dOh0+p0GDBlw+7PK/\nyqQmMHi2RSt8AAAgAElEQVTAYFq0aHG4TLt27Ti367kk9PSX6Z7AqFGjit0d78mHnsQ90o3rThdx\nw+OosaAGo0eNDvq+TMmyFr7DxvCNMSGbPHkyTz/9NHFxcTz33HOcdtpp3HDDDWzctJF+fftx5513\nHnWOx+PhlVdeYdfuXfTq2Ytu3bod17XT0tIYO3YsHo+HUaNGMWTIED766COW/LiEJo2bMHz4cFwu\nV4FzVJV3332Xlb+spFXLVlxyySVOT0U+Pp+Pt956i9/X/E6709oxaNCgo8oUZtmyZcz+eDaJlRO5\n8sorqVq16nHd14kmnGP4s0LcYPH8DyvGGL4lfGOMMWUunAn/owGh1XHe7IqR8K1L3xhjjDkB2Ep7\nxhhjKrSKNA4fCkv4xpgClixZQlpaGq1bt+b0008vsXq3bNnCggULSE5O5pxzzinyeXZjSpIlfIf9\nizPGHDb+ofE8+uyjuLq68N7p5Z4x9/Cv2/4Vcr2LFi1iYO/e/E2EjapMatOGT77+usDMfWPCxRK+\nwybtGWMA2LBhAy3PbEnmL5mQAmyBSqdU4o9f/6BOnToh1d2+ZUtuT0tjqIBPYYDbzQX/+Q+jR9sj\na8YRzkl7X54dWh2951SMSXvWwjfGALB161YqNa5EZop/tZl6UKl+JbZv3x5ywt+yfTtd/T9HCXTM\n8LB506bQAjbmBCEilYDrgLOBWhSccK+qelYg9dgsfWMMAC1btsS7wQuf+w98BOyEpk2bhlx3l06d\neDQ2Bp/CFoU33W66dO1a/InGlIAKsPDO88C9OLtVzAPmHPEKiLXwjTEAVK1aldnvzGbQ0EEcOniI\nxOREPnzvQxITE0Ou+/nXX+eifv1I/OknFBg/7i769+8fetDGBCBCknYoLgAuUNV5oVRiY/jGmAJU\nlf3795OcnBzQynLBOHDgAHFxccTExJRovab8C+cY/td/C62O7gvKdgxfRH4DBqvqymILF8G69I0x\nBYgIVapUKfFkD5CYmGjJ3pR7ItJdRGaJyGYR8YnIVcWUTxWRD0Rkq4gcEpHlIjIyiEveAzwkIiHt\nxBR0l76I1OXoSQOo6tJQAjHGGGPCIQxd+gnAz8ArwKv8te/jsXQGlgMPA9uAvsBUEclU1bcCuN4n\nwLXAThHZDuTk+0xVtUkgQQec8EXkdOANoGUhHyvgKuS4McYYU6ZKOuGr6ic4SRgRmR5A+YlHHHpO\nRHoCQ4BAEv5rQCvgcWAnBf/ACHhsOpgu/anARqAbcDLQJN/r5CDqMcZEqB07dnDF4MGc1aIFIy65\nhN27dx9VZuPGjQwdMICzWrRg1FVXkZ6eXkhNxVu+fDkDunenY8uW3HX77WRnZ4cafsB2797N0JFD\naXFWCwZfMZgdO3aU2rVN6YvQWfrJwN4Ay/YGhqjqHar6qKpOyvf6T6AXDKZLvzVwhqqmBXGOMaac\nyM7O5tyuXem9cQPX5eQyY/16+q5YwfcrVhxeBvfAgQP06tSJK3bt5OZcL9M2bODCtDS+/O67oMb8\nN2zYwDndujHh0EHaKjywcSM37d7N89Onh+nu/pKbm0v3ft1Z23kt2VOy+eO9P/j53J/55YdfqFSp\nUtivb4yInAf0AroEeMomICvU6wbTwl8J1A71gsaYyLRixQpyd+7k0ZxcOgtMzs7mz82bWL169eEy\n33//PXUOHeJer5fOAtOysli+fDnbt28P6lqzZ89mgDeX0UBXgdczMnjjrUB6NkOXlpbGxr0byZ6S\nDZ0h5/9y2OndyYoVK0rl+qb0RVILX0S64gyP36SqSwI87RbgERFpFsq1i2zhHzEjcJz/gvfgTFbI\nP2kAVQ20a8IYE4FiY2Px+Hx4cX4x5ACZPi2w3n1sbCwH1YdPnRXzMoEcny/oNfFjY2M5KH+1Nw4A\nsaW0mU5sbCy+TJ9zg7GAF3ye4O/BlB/BJu0lB+DHAyUfh4h0A2YD96jq80Gc+j+gEpAmIllAbr7P\nVFWTArp+Uc+ii0igX5OqarmatGfP4RtTkM/nY0BqKrFLljAwI4P34+OJ7tqVmZ9/fri7Picnh9QO\nHWiYtppemVm87nbTeOBAXp4xI6hr7d27l/atW3Pe3j20zcllSoKbS+8cy7/vvTcct1aAqtJ3cF8W\nZC0gY0gG8R/G0z6rPfNmzyMqyp5ULivhfA5/aYibPp6x7NjP4YvIAeAGVX21mDi646xfea+qTg7m\n+iIyoqjPVXV6QPUUk/BTAw0o1BWASpslfGOOlpmZyWOTJpG2bBmtzzyTW2+//aiW78GDB3n04YdZ\nv2oVZ3Trxo3//CcuV/B/7+/YsYNHH3qIPdu20eu887j8iivC8ux/YbKzs5k0eRI//vIjp7c8ndtv\nvZ24uLhSubYpXHlK+CKSAOR1r3+L87jdh8AeVd0kIhOBDqra218+Fadl/xTwGJBXl1dVd4UWXeAC\nXmlPRBoAm1XVd8RxAeqr6sYwxBc2lvCNMSZyhDPh/3RaaHW0W35Uwk8FvvK/Vf5K4NNV9WoReRno\nkfd8vP/9lfnK5VkfyDP0xS24E+iQejAJ3wvUUdWdRxyvAewo6S59f/fH7cAZQF1gpKq+UkT5RsC6\nQj7qq6qfH3nQEr4xxkSOcCb8n9uGVsepK8p8ad2ihtcDHlIPZpbMsW42AWfuTkkLdiWjPH1wVjTK\ns6+E4zLGGFOOVIDNc3od8T4GaAdcD9wdaCXFJnwReTLf24dExHPE+WdRMMGWiGBXMspn75G9EMac\niHw+H7/88gtZWVm0bds24GfMp02bxjvvvMPQoUO5+uqrycnJYcWKFbhcLk455RRcLhebN29m06ZN\nNGvWjBo1ahRazzfffMPq1as555xzaNiwIR6Ph5UrV5KUlESLFi0QEdasWcPu3btp06ZNiezKZ0xh\nynvCP8YcuS9EZB3wd5zH/IpVbJe+iORdqDvwHZB/OaxsYD0wSVV/D+SCxyOQWZD5uvQ3AXHA78Dj\nqvruMcpbl76psLKyshjSty+/LF5MQlQUUTVr8vm331K7dtFLaTSoXZvdO3bQENgA1Khbl1pJSXi2\nbCbbpzRq25b+F17Ig/fdx8mVKrEuJ4fX3nmHfv36Fajn3O7dWbhgAfUFNirccd99PPvKs2RWzSRn\nRw4DzxlI9WrVmf7GdGLqx+Da5mLOR3M4/fQQZ1eZciucXfq/tgqtjtaryrZL/1hEpCnws6q6Aylf\nbAtfVVP9FU8H/qmqx7eOZvgdAG7DmTGZCwwC/isiV6lqQH/9GFNRTH7sMVi0iLSMDKKBcZkZ3DZ6\nNG/MnHnMc6ZNm8buHTtYArQSWKHQcetW2m3bxkxVfMDAZUv5f0uWsDQ3l4ZZmSxUOP/ii9m6Z8/h\nHoQXX3yRZQsWsBZnl61PgPP+MwH+n6A3K3jggzM+AB9k/ZZFRnIGvAFDrhrCup8Lm4ZjTGjKewu/\nMCKSiLMgz6ZAzwl4DF9VRxxHTKVGVffgbCyQZ6mIVAfu5BjdHePHjz/8c2pqKqmpqWGM0JjSk7Z8\nOQMzMojxt0kG5+Ry/cqit9J+5513aIiT7AHaCtRWQBURZ3esNlnZHIqOpqG/TBeBeFW2b99Ow4YN\nAVi0aBF/A2r5y/QTUC8wxN+j5oasRlm4Gruc1cQBBsPGkeXqQR8Tonnz5jFv3rxSuVZ5T/j+Xu4C\nhwA3cAgYHmg9xa20N5eCjxzk9YHnfy84swSPnFQQCRYDVx/rw/wJ35iKpPWZZ/L+h7O4ypNBLDAj\nJoY2pxX9bNLQoUO58fPP+VnhVIGlCtuB1lFR+Pwr8C2vVIkVXi9rFU4WmKeQFRVVYKigW7du3Dpt\nGlsV6grMUohyAW9F4bvDBweh0rpK8Dt493qhGjADGrdpHMZvxESaIxtZEyZMCNu1ynvCB2464r0P\n2AUsCmaV2+IW3nkq31sXcBnO74BFOIn+LJz19d9Q1esDvWiwAl3JqJDzHgcGqmrTQj6zMXxTYeXk\n5DDs/PP5/uv5uKNcJNWrxydff02tWrWKPK9xgwZs37SJOjibdtdt1IhaiYnsXLeObFXatm/PeRdd\nxL/vvJP6sbFs8/l46/336d27d4F6Bp57LnO++IIUnL08737oIZ5++WnSo9PJ2Z3DJYMvoXrV6jw7\n9Vli68YSsz+GubPn0rZtiM9PmXIrnGP4a0Lcz7Xp2sgcww9WMM/hP46T9G/Oy5T+RXcmA6jqzSUa\nWPArGV2FM4nwJ5y/fgYCDwJ3quqUQuq3hG8qNFVlzZo1ZGVl0bJly8M73hXn3XffZcaMGYwYMYIB\nAwbg9XpZvXo10dHRNG/eHBFh165dbN68mSZNmpCcnFxoPT/99BOrVq2iZ8+e1K5dm6ysLNLS0khK\nSqJRo0YAbN68md27d9O8eXPc7oDmHZkKKpwJf12InUdN/oiMhC8idXGmxhRYA1pVlwZ0fhAJfy/Q\nSVV/O+J4C+B7Va0aUEUBOo6VjK4ExgINAS+QBkxW1TePUb8lfGOMiRDhTPjrG4ZWR6MNZb7wzuk4\nc9FaFvJxWBbeATgV+O2IY6cEWUdA/M8dHnMnC1UdecT7V3EW6DHGGGMOqwBj+FOBjTjP3G8j8IXo\nCggm4b8EvODfj/c7/7HOOLPgXz6eixtjjDGmWK2BM1Q1LZRKgtkLcizwEM5swa/8rxuBicAdoQRh\njDk2VeW5Z57h0vPO45+jR7N9+/YSq3vq1Km0qV+fNiedxJQpR011AWDOnDlcNWQII4cNY/HixWze\nvJmuZ55Ji1q1GHDuuWRmZvLhhx9y+QUX8PfLL2dlMY//hVtubi4TH53IgGEDGPOvMezfv79M4zFl\nL8oX2isCrMSZIB+SgMfwC5wkkgygquX2X5KN4ZvyYtztt/PFs89ys8fDsuhoPqhRgyW//krVqqFN\nm3n++ee5bfRoHsKZjTsOuPuRR7jzzjsPl/n444+55uKLudfjIRN4KD6enJwczsvNpS9OP+PvVaoQ\nk53NvR4Pu0X4j9vNgiVLaNmysOHG8BtyxRA+2f4JGSMyqDSnEk1WNGHZN8sCXlrYlI1wjuFvrRNa\nHXW3lfkYfi+cBvc9OHvM5OT/vMR3y6toLOGb8sDn85EYF8fanBxS/L9uLnQnMPiZZ7jyyitDqrtl\n7dr8c8cOrvPX+6rChCpVWLfvr/2m+nXtyoiFC7nEX2aywiPAVkAEPAonAW8Dvf1l7kHI/Oc/mTR5\nckjxHY/du3dT7+R6ZG/LdpYlUUjskMgHj35Az549Sz0eE7hwJvztKaHVUXtHmSf88O+WJyIrgO6q\nus//c1EXPDWQCxpjguNVJS7f+3iU3NzckOv1eb3EF6gX1Ffw90puTs4R13Z6A8T/qy/Wf7xAGVUO\n5hRogJQar9eLuOSvwAQkTkrk+zKmDJXIwnbFTdp7l782yyl0Exo/ayobEwZRUVFccemlDH33He7w\nZPBTVBTzY2J5vH//kOu+/KabuO2++6iszi+CG4ErrrmmQJmrbrqJW0ePBn+X/vj4eA5kZTHW56Mv\n8CwglSox2uXiUY+HXcAUt5vZI0aEHN/xqFWrFh07deSHK38g89pMor+MJnFnIl26dCmTeExkiJBx\n+ON2jN3yjiIizwD3quruQj8/Ubu1rUvflBc5OTk8cO+9zP/kE1Lq1uWBxx+nRYsWJVL3XXfdxetP\nPAHA4GuuYXIhE/def+01XnnySVwuFzfdfTd16tTh8vPPZ/+ePdRr0oQPv/qK9999l/+9+CLxCQnc\n8cAD9OjRo0TiOx6HDh3i9rtvZ+GPC2neuDlTJk6hbt26ZRaPCUw4u/R3Vw+tjhp7ImPhneL4V6U9\nTVUL3YUqmIV3LgPmqerWEoyvzFjCN8aYyBHOhL83xGXhqu2rGAk/mOfwHwHqicgaYF7eq6L8AWCM\nMaZiKu9d+iUl4OfwVbU+0Bz4P5z5rw8Dm0XkNxGZGqb4jDHGGFMCgll4B1Vdo6ovACOAocArQGOc\n5f6MMQHIyspi586dhDqktHHjRn744Qe8Xi/gLDizcuVKDh48eLjM9u3bWbt2LT7/7Pvs7GxWrlyJ\nx+M5XCY9Pb3A4jS5ubns2LHjcL0Af/75JwcOHLkltzHlQwVYeKdEBJzwRaSjiIwVkU+BfUDepjR/\nx0n6xphiTH3uOaonJdGqQQNaN2rE77//HnQdXq+XJnXq0LRhQ1I7dqR6TAwTJ06kaqVKdG7bluqJ\niVw3ahRntGhBgzp1OKVpUxpWrcqjjz5K1bg4p0xCAvfccw9XXnwxdWrUoF7Nmlw8YAAff/wxdatV\no02jRtSrXp3PPvuMC849l/q1alG7enWuvuyyAn8IGFMeWML3U9WAXjhbzu7AWUa3YaDnRerLuXVj\nSs+SJUu0jtutv4H6BJ0cJXp6s2ZB13PeeedpY9AdoLmgo0ETQF/y17sctDJoS9B9oNmgF4O6Qd/3\nl/nW/757XJweBPWADoyL06ToaP3KX+ZT0CoxMTokLk4zQdNBU91unfTII2H4dsyJzv87OSy/6z3x\nob3CFVsY7vU5oOaxPg+mS/8h4HfgAWC2iDwpIkNEJMQHHow5Mfz444/0BZr65/re6FN+XrOGnCAX\nqVm2aBHXAjUFosQZX/MBI/z1thVnV6tuQLJAtMDFQCIwyF+mszj7bPbIzMQtECdwXWYmlX0+Uv1l\nzhWo5PVyfWYmsQKVBa7xeFg8f35I34Mx5Z2IdBeRWSKyWUR8InJVAOe0FZH5IuLxn3dPENdLFZFO\n+d6PFJFvRWSqiFTOO66qo1V117HqCWbS3t2q2g2oBtwC/On/7xYR+TnQeow5UTVo0IDFUVF4/EP3\n3wC1kpOJiYkJqp4adevyJeD117MM8ALL/O/TFZYDa4G8aQK/4vyD/d3/fqfCGmBNtOtwmbnR0RwC\ntvjfb1DIBOa7nFU7VWF+bCz1mzULKl5jyloYuvQTcNa0vxnIoJjF50QkCfgCZ2vb9v7z7hCRMQHe\nwmQgxV9XC5yW/HKgEzApwDqCX3hHRFKAnvleTYHtqlquVraw5/BNaVNVrr7sMr758ENau1wszM3l\n9ffeo0+fPkHVs2vXLprVrk0tn4/awBLgrO7dWfL113TG+S1Ur0ULNq5fT+2sLJKB5SJ069WLhXPm\n0BFYCpzaqRM7t2+n2p49RAtsSUxi2JVX8sKUKZwVHc33OTlcf8cdvDJ1Ko08h8hUOJSSwtwffgh5\n4x5jjhTO5/Czg/ub+iixOcd+Dt//7PsNqvpqETFch7OzbIqqZvmP/Ru4TlVPKu76+Z+vF5G7gC6q\nep6IdATeU9V6gdxHMAvvPAukAi2A7cB8/noWP6Q9esuCJXxTFlSV7777ju3bt9O+fXsaNGhwXPUc\nPHiQMWPGsHfvXm699Va6du3KV199xaeffkqrVq0YOXIk6enpPPnkk2RmZnL11VfTuHFjPv74Y+bO\nnUv79u0ZOnQoHo+HefPmoar06NGDypUrs2LFCn777TdatmxJmzZtSE9P5+uvv8blcpGamkp8fHzx\nARoTpHAm/NyAtpY5tmhvyAn/VaCqqg7Md6wDsAhorKobirq+iOwHOqjqbyIyB5ipqk+KSCNgtarG\nFXX+4XqCSPgzgLnAfFVdHdBJEcwSvjHGRI4KnvA/Bzaq6t/zHWsArAc6q+qioq7vT/JbgC+BF4DW\nqrpGRHoA01U1oCflAl5pT1WHBVJORGYDf1fVbYHWbYwxxoRLsI/WzVOn+7oEhdq6vAXnUfhBwIOq\nusZ//BJgYaCVBLO0bqC6A9bnZ4wxJjIE2XGQ6n/luT/0DWG3A7WPOJaS77MiqeoKoG0hH92GM2c3\nIOFI+MaYEvb5558z76uvSKlTh2uvvRaPx8OLL77IwQMHGHj++Zx11llHnbNlyxamT59OVmYmF118\nMaeeeupRZdatW8frr7+O+nxcetllNG/evNhYcnJymD59OuvWrOHMDh0YMmQIIhG/r4g5gfmCW1S2\nECEvNvUd8IiIVMqbtAecA2wpbvw+PxFpD5wMzFbVgzg5PPDgwvDg/wGgSVkvQBBAnGpMefDklCna\nyO3W8YJeGB+n7Zo310YpKToiNlbvFtEUt1tnzZpV4JwNGzZo3apVdXRMtI6NEq3hduv8+fMLlPn1\n11+1ZmKi3uxy6RhXlNZISNClS5cWGYvX69WBvXppL7dbJ4C2TUjQO2+5pcTv2Zx4COPCO7m4Qnod\nGRvOY3nt/K9DwD3+n+v7P58IfJmvfBLOI3lvAW2AwcB+4NYA7yEF+B5nyQ1vXo4FngemBPxdhOHL\ntYRvTAnx+XyaHB+vaf7V77ygJ8fE6EiXS33iHPsEtN3JJxc4b8xNN+kd+cq8AXp2hw4Fyoy45BJ9\nWORwmScFvbhfvyLj+fbbb7Vl5cqa5Y9nF2jl2Fjdt29fid+7ObGEM+FnExPSq5CEn+pPvnkJOO/n\nl/yfvwysO+KcU3CebsvAmYB3TxD38CYwC6iaP8cCvXFm6QdUj3XpGxPBfD4fnuxs6vvfi0CCKo18\nf/XiNQTSj9jYJn3vXk7zesHf094ASM+3QU5emQaqf5VRSN+3r8h40tPTqeuKIsZ/TjXA7XJx8OBB\nqlSpcnw3aUyYhd6lX5CqzqOIhetUdWQhx1YCPY7zkmcDZ6vqviOGz9bh/PMOSMl+C8aYEuVyuRjQ\nqxfXV4rlD4X3FTZER/NMpTjmqrNy3i3x8Zw/ZEiB8wYNG8Ykt5vvFFYpjHW7Of/SSwuWufxy7k9w\ns1ThZ4V73G7OHz68yHjOOussVke5eAFnJb67oqOp37AhdeuWq3W3zAnGR1RIrwgQDxS2BncNnAUx\nAxOG7pO7cBYYKPNu++K6eYwpD/bv36+XX3ihnlS1qp7ZvLl+/fXX+vbbb2ubBg20YY0aevPo0ZqV\nlXXUeS++8IK2qFtXG9esqXfdfrvm5uYW+Nzn8+njkyZp09q19eSUFJ34wAPq8/mKjWfFihXa7bTT\ntF7Vqnp+r166devWErtXc+IijF36B0kI6RWu2IK4h9nARP/PB4AmOBP23gX+F2g9RS68IyKDg/jD\n4b2A/8qIALbwjjHGRI5wLrxzkISQ6qjMobDEFigRaQ18DfyE8+j7RzhzApKBrvrXc/lF11NMwg94\nuQJVjYh+j0BZwjfGmMgRzoSfTmJIdSRxoEwTPoCI1AGuA87EmXmzFHhag1jkLujNcyoKS/jGGBM5\nwpnw/yQ5pDqqsL/ME35JsFn6xhhjKrQImXgXFBE5A1iuql7/z8ekqksDqTOob0FEYkSkq4gME5Er\n87+CqceYSLJq1SrOat0ad2wspzdrxvLly8s0nv/+9780qFGDypUqcVG/fqxdu5YBPXqQEBtLk5QU\nZs+eXabxGWNKxRKger6fj/VaHGiFweyW1xL4EGiM84dCLk4PQS6QpaqhDZKUMuvSNwCZmZm0atiQ\nO3ftYrgqMwXGVanKqvXrSUpKKvV4Fi9ezMAePZiZkUEL4LbYWOa43Vxw6BATcnL4CbjE7Wb+kiW0\natWq1OMzJlzC2aW/+3DePD412FPqXfr+rW83qqrP//Mxqer6QOoMpoU/GWeSQDLOUoKtgfY4swaH\nFHGeMRHr999/Jy4jg9EoiQJXAPV8XlauXFkm8cydO5fLcnPoKFBF4JHsbLb/+Sf/l5NDskAPgfOA\nr7/+ukziM6Y8Ko/P4avqelX15fv5mK9A6wzmTjoAD6jqIZwlBF3+cYM7gElB1GNMxKhWrRo7srPZ\n6+/sOaCwOTuH6tVDaxGEEs/qmFjyOp9WAbFAmv9zn8JvUVFlFp8x5VF5TPj5ichNInJ5IccvF5Hr\nA60nmDsRnDWAAXYB9fw/bwGaBVGPMRGjXr16XHvddXRLSGBMdAzdKidw4aWX0qJFizKJZ/jw4exp\n3Jj+CQncHBPLxW43V990E33dbm6JiaV3QgKV2rRh0KBBZRKfMaZM3AKsL+T4BmBMoJUEM4a/AHhM\nVd8XkTdxJhM8BPwDOFVVC9urN2LZGL7J75NPPmHlypW0aNGCgQMHlul2rxkZGcyYMYO9e/fSq1cv\nTj/9dBYtWsSCBQtISUlh2LBhxMTElFl8xoRDOMfwt1InpDrqsq2sF97JBFoe2X0vIo2BVaoaF1A9\nQST8voBbVd8TkZNxVvppAewGhqrq3CDiL3OW8I0xJnKEM+FvPtwhfXxOYktZJ/z1OFvpvn/E8cHA\nE6p6UiD1BNylr6qf5i2fq6prVbUVUBOoHY5kLyLdRWSWiGwWEZ+IXBXAOW1FZL6IePzn3VPScRlj\njClfyvsYPs72uE+IyLn+x+NjRKQPMAV4I9BKAr4TEXlJRAo8eqeqe4B4EXkp0HqCkAD8DNyMM3eg\nyOa4iCQBXwDbcJ4euBm4Q0QCHt8wxhhjItB44BvgU5x8mAF8AnwLBNywDaZL34fTmt95xPGawHZV\ndQV60WCJyAHgBlV9tYgy1wETgRRVzfIf+zdwXWHdHdalb0L1008/8fTTTxMXF8e4ceMK3SL2u+++\nY9q0aSQnJ3PPPfdQrVq1o8qsWbOG+fPnU7VqVQYOHBjQ+HxmZiYffvghBw8epFevXjRs2JBly5ax\nZMkS6tevT58+fcp0HoIxwQpnl/56GoZURyM2RMTSuiLSDDjd//YnVf0tqPOLS3oiUg1nhv4unGfv\n8yd8F85jwQ+qatg2xA4w4b+Ksy3vwHzHOgCLgMaquuGI8pbwzXH76KOPGDpwIL2B/cBPLheLV62i\nWbO/Hlh5+eWXufHqq+mL8yjL77Gx/LJhA7Vr1z5cZs6cOQw7/3z6CayRKCq1asVn33xDbGzsMa99\n6NAhep51FgkbN1JPlc9F+MeNN/LiE0/w/9u79/CoqrPv4987CUlIkIMiIEJVRFGUKijVWMUIQq1o\nnxZtLVoV9a0F+nish2q1YrX6YBWBHsSKgvXQqrXVagtikaiogHjEIlQvoCIgQjFyCDEkud8/1iRO\nzhkmk8xMfp/rymVmz9pr33sE7llr7bXWKcDrZhw9ejSz/vQnJX1JGYlM+Ks4IK46+rE6KRI+gJn1\nBIUT4t8AAB/TSURBVDa7e0Ws5zanS38zIdkDLI+8rvrZCMwEfhfrhROgFyGeaBuj3hNpMZecey63\nAU8ZLDA4s6KCcWPH1ihz3cSJ3Av82eBVYFhZGRddeGHNei64gD+UlPBgSQkvb99O1vLlPPzww41e\n+95776XvqlXM376dh0p2cNf27dw5eTILSkp4YGcJS3bs4LW//52FCxe27E2LpKhUH8OPjNn/KtL4\nXQ+hy8LMJscyD785m+cMj/z3BcKKep9FvVcG/Mfd1zX3ggkUc3N90qRJ1b8XFhZSWFjYguFIOtu5\nYwdHR70+BnhtY83vm6VlX3BU5HczONbhyXU1/6p88t//VpfJMBhcWsqGDY3vdrnh448ZUlpKVeP9\nYCDDnQGR1x0NDsvMaLIekbZUVFREUVFRq1wrGZJ2nG4CTicsBhr9kN7rwDU0s9HdZMJ39yIAM+tH\nZF3fWCNtJZ9QtyXfM+q9OqITvkgsDjjkEG5Ztow/O2wHpgAFI0bUKLPvvn24ee1aZnvoavoNcO7o\n0TXKDCso4JaXX+Kusl2sBv6Yk8MjJ5zQ6LVPHD6cy++9l7NLStgH+F12NntkZTG1dCeXVjqvAS+X\nV3DX0KEtd8MiLax2I+vmm29uu2CS39nAhe5eFHmersp7hOnxzRLLtLw1wOFm9lszm2Nm+wCY2XfM\nbHDjZ7eK14ATzCwn6thIYF3t8XuReM156SXW9O5NV6AvsPfQocx8oOZklecXLWLxnnvSCegPHDFq\nFLfddluNMjP/9CdWHnU0nTIyGJqbyw133smwYcMavfZpp53G+J//nEHZ2XTOyKD4hBOYu3AhD/U/\niBwzzujcmdmPP84BB8Q3bimSLlK9Sx/Yh7CqXm1ZxLDNfSxP6Y8i7JY3BziVsOrPKjO7Cjje3b/d\n3Is283r5fLlk7yvA/0Wu/193X2tmtwND3f3kSPnOhCXHi4BbCd96ZgGT3P3ueurXQ3sSt9LSUrKy\nssjKavjvXElJCdnZ2Y2WKSsro0OHDjE9ZOfulJeX13iqf3fqEUkGiXxobznx7Sw5kPfbeuGdNwgL\n7DwYGcc/IpJ/bwZOcvfGWwkRsXx1uRW4MpLYv4g6XkQYwmxpQwm7870J5AI3R36v6vfpBfSrKuzu\nWwkt+t6EPYJ/DdxZX7IXaSm5ubmNJnKAvLy8JstkZ2fHnKTNrM4Uvt2pRyTdJaqFb2YTzWy1me00\ns6VmdnxjcZjZqWa2yMy2mtkmM3sqMtWuKZMIC+/8jNCi/66ZzQauA25p7ucQSwt/B3CYu6+p9Q2j\nH2Et35wmqkgqauGLiCSPRLbw3+OwuOo4nH/Vic3MzgIeAiYQFsX5MXABMNDd19YTR3/CTLcpwO+B\nPYDJwIHu3mTSj6ys9zPgKMJU+TeBX7j7vObeR7P7/oEtQB/q7tgzGPg4hnpERERaTYLG4a8EZrn7\n/ZHXl0b2nJkAXF9P+SMJverXVbU2zWwyMN/M9nT3LY1dzN2fA56LJ+BYPoVHgTvMrG/kdQczKwTu\nAhpcEEdERKQttXSXvpllA0OA2q3recBxDYTxCmFSzw/NLDOyVP04YElTyT7qusPN7H8jPyOaPqOm\nWFr4NxIegltD6E5YHvnvI8AvY72wiIhIa0hAC787YaXZ2ou9fUoDC725+wYzOxV4CvgtocH9FvDN\npi4W2Qb3L8AgwsI7AL3N7D1gjLuvak7QsUzLK3P3cwhPzo8jjFUMcPdz3b28ufWIiIi0N5Hn3Z4i\nNJyPBgqBbcDj1vSTtvcDW4F+7v4Vd/8K4aH1zyLvNUvz5++FgC4njFtUbS68zszuBqYm8YI8IiLS\njsXawl/KNt5gW2NFNgMVfLm4W5WehB1b6/MjYK27X1t1wMx+AKwFCggrcDekAChw94+qDrj7R2Z2\nBbCosUCjxdKlPxm4GPhV1AWOJXT17wNcHUNdIiIirSLWhD+ELgyhS/Xr+2rlcHcvi8yNHwU8GfXW\nSOCJBqo1oHbDuOp1UwGuBTrWczwX+Kie4/WKJeH/P+CH7h59M/PNbCVhioESvoiIJJ0EPaU/BXjI\nzJYQWufjCeP3MwBqLw4H/A34iZndCPyJMC3vNkLCfqOJa10JTDOzy4AlhL1jjgGmAj9pbsCxJHyA\nd+o5tozwzUVERKRdcPfHzWwv4AZCL/cy4NSoOfi1F4dbGJm7/1PChjclhCXhT3H3nU1c7o9ADuFJ\n/+hegXLg0ahHANzdOzdUSSwL70yL1HZZreNTgUx3v6RZFSUJLbwjIpI8ErnwzqsUxFXHcbzW1kvr\njqvncFUCqxGXu89uqJ5YWvjZwDmR1X4WRS5yDGEp24fNbHrkmLv7pTHUKyIikjBJsgFOPF4HKtx9\nBVTvbXM+8C/gjubOlIsl4R9KWMoPYL/Ifz+J/FTtTGDsxr70IiIiiZIGCf8B4G5gRWTxu6cI+9hM\nBDoThgma1OyE7+6FMYcoIiLSxtIg4Q/gywb3mcBidz/VzE4CZtPMhJ/yn4KIiEiaywR2RX4fQdim\nHmAVddcCaJASvoiIpLVEbY/biv4FTDCzYYSEPzdyvDdhEaBmiXVanoiISEpJkqQdj2uAp4GrgNnu\n/m7k+P8Ai5tbiRK+iIiktVRP+O7+kpntDXSutbPeDMJ8/mZRwhcREUlykal3W2odWxNLHUr4IiKS\n1lK9hd9SlPBFRCStKeEHSvgiIpLWlPADfQoiIiLtgFr4IiKS1tTCD5TwRUQkrSnhB0r4IiKS1pTw\nA30KIiIi7YBa+CIiktbUwg+U8EVEJK0p4QdK+CIiktaU8AMlfBERSWtK+IE+Banhk08+Yf369bh7\nW4ciIiItSAlfACgrK2P06O+y//4DOfDAr1JYOJqSkmbvuigikrQqyYjrJ12kz51IXH75yztYsGAn\nX3yxgdLSDSxZ0plrr72prcMSEYmbEn6QPncicXnllTfZufN8IAfoQGnphbz22pttHZaISNwSlfDN\nbKKZrTaznWa21MyObyoWM7vczFaYWamZrTez21v0ZhuhhC8AHHpoP7Kz5wEOOFlZzzFgQL+2DktE\nJCmZ2VnAVOBW4EjgVWCOmfVt5JwpwATgauAQ4JvAi4mPNnL99vpwlpl5e733+hQXF1NQcDLr1jnQ\ngb322sbixQvo0aNHW4cmIu2AmeHuloB6/QEuiKuOC5lVJzYzWwy87e4/ijr2b+DP7n59PXEMAJYB\ng9x9ZVwB7SZNyxMAunbtyttvv8KiRYuoqKigoKCAjh07tnVYIiJxa+lxeDPLBoYAd9R6ax5wXAOn\n/Q+wCjjVzOYARmjdX+3um1o0wAYkdZd+LOMjZra/mVXW8zOqNWNOZTk5OZx44okMHz5cyV5E0kYC\nxvC7A5nAxlrHPwV6NRBGP2A/4HvAecC5hG79Z8ysxXs26pO0Lfyo8ZEJwELgx4TxkYHuvraRU78B\nvBP1+rPERSkiIulmJetZyYaWrjaD8FT0ue7+IYCZnQusBI4GXm/pC9aWtAkfuBKY5e73R15faman\nEL4A1BkfibLF3T9NeHQiIpISYu3SP4g+HESf6tfPUmfG0magAuhZ63hPaPCbwgagvCrZR3wYqecr\ntELCT8ou/ajxkXm13mpsfKTKX8xso5ktNLMzEhJgO1FeXs6MGTMYP/4y7r33XioqKto6JBGRmLV0\nl767lwFvALWHjEcSntavz0Igy8yipz/1IwwN/Cf+u2xasrbwd2d8ZBvwE+AVoJzwgMRjZna+uz+S\nqEDTlbszZswPmD9/IyUlp5OX9yhz5rzIX//6CK003CQi0iIStHjOFOAhM1tCSPLjCflpBkBkfv1Q\ndz85Uv6fwJvAA2Z2OeGhvanAIndfmogAa0vWhB8zd/8vcHfUoTfNbC/gGkAJP0YrVqxg/vyFlJR8\nCORSUjKBefMO5MMPP+Sggw5q6/BERNqUuz8eyTE3APsQptydGvWMWS9CC76qvJvZacB04CVgJ6HX\n+srWijlZE/7ujI/U53XgwobenDRpUvXvhYWFFBYWxlB1eispKSEzsxuQGzmSS1ZWV62vLyItoqio\niKKiola5VqKWx3X3e4B7GnivzuR/d/+E8JR+m0jahXfMbBHwTj2LGjzh7j9rZh13A6e7e/963tPC\nO40oLS1lwIDBrFt3NhUVZ5KZ+Rh9+jzBypVvkpOT09bhiUiaSeTCO1O5LK46LmdaQmJrbcnawocY\nx0fM7HygDHgbqAROByYSuvQlRrm5uSxcOI9x4/6X5csf4rDDBjJ79nNK9iKSctJpA5x4JG3Cj3V8\nhLAI/A2EhQ0qCHMbL3D3R1sv6vTSt29f5s9/uq3DEBGJixJ+kLRd+ommLn0RkeSRyC79O/lJXHVc\nxV3q0hcREUl2auEHSvhprLKykoyMxv+gl5WVkZ2dXf3a3XH3Guc1p57mlBERaQtK+IE+hTS0Zs0a\nBg0qICurA3vt1Ye5c+fWKXPPPfdg1oWcnFzMOnHFFVdw2WXXkJPTiZycfC666McsXryYvn0PISur\nA/vtN5C33nqrTj0vvfQSPXseQFZWBw4+eDArVqxojVsUEWm2BGyek5I0hp9m3J2DDx7MqlVjqawM\nCw/m5Z3Je+8t4YADDgDg888/p2vXfYFfAT8EngO+S27uwZSWPgd0oGPHM6isfIcvvrgHOAN4nG7d\nruajj1bSqVMnADZu3Ej//oPYvv1BYCRm97HPPlP4z3/eJytLnUci0nyJHMO/jeviquN6bk+LMfz0\n+eoiABQXF/PRR6uorLyGMGJzIpmZJ7J48eLqMs888wzQkbAPURYwGhhIaelowtpGe7Jz50/ZtSsX\nOCtS5mwqKrqzcuXK6nreeustMjOPAL4JZOE+geLiUj7++OPWuVkRkWZQCz9InzsRgEjru5KwCRPA\nF1RWLqdHjx7VZQ4//HDC1gPrIke2A2swW19dJiPjLcLKj1siRzZTVvYxe++9d3WZHj16sGvXB8CO\nyJGPKS8vZs8992zx+xIR2V1K+EH63IkA0KFDB6ZPn0pe3ol07PgjOnUqYMSIIzjppJOqyxx55JH0\n738wcCRwATCITp2y6d79BfLzzyQvbyxduvya888/i/z8Y8jNHU9+/rFccslEvvKVr1TXM3jwYM48\n85RImR+Rl3cct9zyCzp37tzq9y0i0hAl/EBj+Glq6dKlLFmyhD59+nDaaafV+wT9VVddxQsvvMCg\nQYN44IEHKC4u5m9/+xsVFRWcfvrp9OzZkxdeeIH333+fgQMH1vjSUMXdmTt3LqtWrWLw4MEcd1xT\nuxeLiNSVyDH8SdwUVx2TuDktxvCV8EVEpM0lMuH/nJvjquMX3JQWCV+PUouISFpLp275eCjhi4hI\nWlPCD/QppKmZM2cyZswYrr76asrLy3n33Xc5/vjjOeqoo3jiiScAePHFF5k2bRrPPvss9Q1vuDvP\nPfcc06ZN4/nnn2/tWxARkRakMfw09P3v/4DHHpsDnAkspGvXrRQXfwYMA/YCnmT48BNYtOjfVFSM\nJivrJcaMKeDBB2dg9uUw1aWXXsMDD/yN8vKTycp6nosvHsOUKbe3zU2JSFpL5Bj+T4nv363/47q0\nGMNXwk8zJSUl5Od3Bd4HDgTKCLsLfweYGSl1P3AlsCLy3g7y8gbyyitPc+SRRwKwevVqBg48htLS\nlUA3YAu5uQezcuWbNabmiYi0hEQm/GuYHFcdd3BtWiR8demnmY0bNxL+t/aLHMkmJOwhUaUGAZmE\nZA+QT4cO/di8eXN1iU2bNpGd3SdyLsCeZGfvW6OMiEgq0Dz8IH3uRADYb7/96NAhH7gFKAXmA2uB\nycAq4DPgZ5iVY/bbSJmnqKxcXt26Bxg4cCBZWZ8CD0fK/IEOHbYwYMCA1r0hEZE4KeEH6XMnAkBG\nRgYvvvgsHTv+DsjH7DtMnnwL/frtAQwEepCXt4xXX53HgAGzycjYgz59fspzzz1F9+7dq+vp1KkT\n8+c/ywEHTCYjYw/69buLF174O/n5+W11ayIiEgeN4aex+vaor6ioIDMzs/q1u9d4UK8+zSkjIhKP\nRI7hX87dcdUxlSs0hi/Jrb7ldKOTPdCsRK5kLyKpLFFd+mY20cxWm9lOM1tqZsc3Jx4zO8jMtpnZ\ntha7yWZQwhcRkbSWiIRvZmcBU4FbCTuRvQrMMbO+jcViZtnAn4AXgVbtZlbCFxERid2VwCx3v9/d\nV7r7pcAGYEIT500G3gaeAFq1+1QJP8ktWLCAQw/9Gr169eeCCyayc+fOOmVuvPFGsrP3JjOzK0cc\nUcDcuXPJzNwLs86YdeOyyy4jOzsXs66YdcEsn5tuuinyujNmXTnvvPPo1q1HdZm8vL344IMPGDbs\nVHr06Edh4Wl89NFHda69YsUKvva1EfTo0Y9TTjkjMi1QRCR5tHQLP9JKHwLMq/XWPKDBLUPNbDQw\nGriEVk72oIf22jqMRi1fvpyhQ0+kpOQ+4BByc6/nW9/qwmOPzaouM3PmTH74wysJXxb7AuOBd4Dv\nAdcALwM/AroATxLm1Z8LfAhMBC4G5gDXAZ2BvwIdgLOAdWRm/pyKijPJzHyM3r0f5oMP3iEnJweA\n4uJi+vcfxJYtP8V9FFlZ93HwwUUsW7ao3ucHREQaksiH9sZzT1x1zGBCjdjMrDfwMTDM3RdGHf85\ncLa7H1JPHL2B14Fvu/vrZjYO+LW77xFXcDHQv8pJbO7cuZSXfx/4NnAIpaX38swzf61RZubM2cAV\nwDcI0+5+Spg3PwM4CLgQ6Ar8HDgR+CpwD5AD3BEpcynQH7gAOBY4ijA0lU9FxXXAQVRU3EBxcQbv\nv/9+9bVff/11du06EPcfAwdRXj6Z1avXsm7dukR8HCIiuyVJ5uE/BNzj7q+3VIWx0m55SSw/P5+s\nrPWUlVUdWUdubqcaZfbYIw+I7mrfCVQCm4Gekd/LCF9Gv6wnHN9KaPnvipTfWk+ZnUBHoITy8s/o\n1OnL6+fn51NZuREoJ/xR+pyKih2aqy8iKW09K1nPvxsrshmoIPwjG60nYRy/PicBw8zspshrAzLM\nbBcwwd1nNnBei1HCT2Jjx47l9tunsWHDeZSVHUJe3gwmT765RpmpU+9m0KBjCb1NBwB3kZWVR3n5\nsYSu/AWEhP4bYAfQHZgSOXYccB7wLLCNsMZ+DmE53un07NmNbdtGUVJyGnl5f2P06FEceOCB1dc+\n9thjOeqofixZcio7d44gP/9xzj33Ivbcc8/EfjAiIjGItZXei0PpxaHVr9/k2Rrvu3uZmb0BjCKM\nlVYZSRhfrc/htV5/G/gZMBRYH1OAu0lj+EmuuLiYe+6ZwaZNW/jmN0cycuTIOmXee+89Lr30crZu\nLeHCC3/AxRdfTEFBAf/61wd07ZrHq6++yqRJk3jwwYeADAYMOJB3332XXr168dlnO8nLC13106dP\nZ/r03+EO48adw4wZM5g1axbLlq3giCMGMm7cuDpj87t27eK+++5j5cpVHHPMEMaOHat5+yISs0SO\n4V/I/XHV8QAX1YnNzL5H6KafSJiSN54wLnqYu681s9uBoe5+cgNxjaOVx/CV8EVEpM0lMuGPY1bT\nBRsxmwvqjc3MJhCejt4HWAZcUfUQn5nNAk509361z4u8Pw6Y7u6d4wouBkr4IiLS5lIx4acajeGL\niEhaS6cd7+KhTyEFbdiwgWeffZYlS5bQ3F6KXbt2UVRUxNy5c9m6NTyNf9ddd3HCCSdw7bXXJjJc\nEZE2lSTT8tqcuvRTzIIFCzj99O+RlXU05eX/5lvfKuSRR2Y2+qBcSUkJX//6KD78cAcZGV3JyVlN\np07ZrF69nrBY1DK6dMmjuFjz50WkbSSyS/9sHomrjkc5Jy269NPnq0s78f3vX8iOHQ/z+edz2LFj\nGc888zr/+Mc/Gj3nzjvvZsWK3mzf/gZbty5g06YzWL36I8KiTy8BK/j88+3ccsstrXELIiKtSi38\nIH3upB2orKxk06aPgOGRI3lUVBSwZs2aRs9buXINpaXD+fJ/9x6EZXSr5pn2BAawcOHC+k4XEZE0\noISfQjIyMjj44MGYzYgc+Q9m/2DIkCGNnvf1rx9FXt5DhMV1KsjK+gDYDtWLSbwB/IuxY8cmKnQR\nkTajFn6QPnfSTjzzzB/Zd9/f0rFjL7KzD+PWW6+hoKCg0XPGj7+Y7373q3To0JucnB4MGbKBM88c\nTdhgpxvwdb72ta8ybty4VrgDEZHWpYQf6KG9FFRRUcGGDRvo1q1bTOvWf/bZZ5SVldGjRw/MjM2b\nN/P0008zYsQI9t9//8QFLCLShEQ+tDemxuq3sfsLZ+ihvUQzs4lmttrMdprZUjM7vonyg8zsRTMr\nMbOPzezG1oq1NWVmZtKnT5+YN6np1q0bPXv2rH6iv3v37lx00UVK9iIi7UDSLrxjZmcR9midACwE\nfgzMMbOB7r62nvKdgeeBIuBowhNps8xsh7tPabXARUQkqaRTt3w8kvlTuBKY5e73u/tKd7+UsO3g\nhAbKnwPkAue7+3J3fxKYHKlHRETaKY3hB0l5J2aWTVgRZl6tt+YR9nStTwHwsrt/Uat8bzPbr+Wj\nFBGRVKCEHyTrnXQHMoGNtY5/CvRq4Jxe9ZTfGPWeiIhIu5W0Y/i7ITUfuRcRkYRKp1Z6PJI14W8G\nKghLwEXrSRjHr88n1G3J94x6r45JkyZV/15YWEhhYWGMYYqIyO4oKiqiqKioVa6lhB8k7Tx8M1sE\nvOPuP4o69m/gCXf/WT3lxxMe0utRNY5vZtcDE9y9bz3lU3YevohIuknkPPxRPBdXHfP4hubhJ9gU\nYJyZXWRmh5rZNEILfgaAmd1uZv+MKv8oUALMNrPDzGwMcG2kHhERkXYtWbv0cffHzWwv4AZgH2AZ\ncGrUHPxeQL+o8lvNbCTwW2ApsAW4093vbt3IRUQkmahLP0jaLv1EU5e+iEjySGSX/nDmx1XHC4xI\niy79pG3hi4iItAS18AMlfBERSWtK+IE+BRERkXZALXwREUlrauEH+hRERCStJWot/Vi2cDezQjN7\n2szWm9kOM3vHzC5IyA03QAlfRETSWiISftQW7rcCRwKvErZwr7PQW0QB8A5wBnAYcA/wezMb29L3\n2xBNyxMRkTaXyGl5x/JaXHUsoqBObGa2GHi7ntVg/+zu1zcztseATHc/M64Am0ktfBERSWst3cLf\nzS3c69OFsEhcq9BDeyIiktYS8NDe7mzhXoOZnQYMJ7YvCHFRwhcRkbQWa8LfxlK28UaCogEz+zrw\nCHCJuy9N2IVqUcIXERGJsgdHswdHV7/+hN/XLrI7W7gDEHmS/+/Aje5+b9zBxkBj+CIiktZaegzf\n3cuAN4BRtd4aSXhav15mNgz4B3CTu09vwVtsFrXwRUQkrSVo4Z0pwENmtoSQ5MdTawt3YKi7nxx5\nXUho2f8G+KOZVY31V7j7pkQEWJsSvoiIpLVEJPxYt3AHzgdygasjP1XW1CqXMJqHLyIibS6R8/AP\nZ1lcdbzHIG2PKyIikuy0ln6ghC8iImlNCT9QwhcRkbSmhB8o4YuISFpTwg/0KYiIiLQDauGLiEha\nUws/UMIXEZG0poQfKOGLiEhaU8IP9CmIiIi0A2rhi4hIWlMLP1DCFxGRtKaEHyjhi4hIWlPCD/Qp\niIiItANq4YuISFpTCz9QwhcRkbSmhB8o4YuISFpTwg/0KYiIiLQDauGLiEhaUws/UMIXEZG0poQf\nKOGLiEhaU8IPlPBFRCStKeEH+hRERETagaRM+GaWY2a/NrNNZrbdzJ42s32bOGecmVXW+qkws+zW\niltERJJPJRlx/TTEzCaa2Woz22lmS83s+MbiMLNBZvaimZWY2cdmdmOL32wjkjLhA1OBMcD3gROA\nzsCzZtZUvCVAT6BX5Gcfdy9LZKAiIpLcEpHwzewsQq66FTgSeBWYY2Z9GyjfGXge2AAcDVwGXG1m\nVybgluuVdAnfzLoAFwJXuft8d38LOBf4KnByE6e7u29y90+rfhIdb2spKipq6xBippgTL9XihdSL\nOdXihdSMOZES1MK/Epjl7ve7+0p3v5SQzCc0UP4cIBc4392Xu/uTwORIPa0i6RI+cBTQAZhXdcDd\nPwbeB45r4tyOZrbGzNaa2TNmdmQC42xVqfgXWDEnXqrFC6kXc6rFC6kZcyqJDBUPISpPRcyj4TxV\nALzs7l/UKt/bzPZr+SjrSsaE3wuocPf/1jq+kdBd35AVwAXAt4CxQCnwipn1T0iUrWzNmjVtHULM\nFHPipVq8kHoxp1q8kJoxJ1ICWvjdgUxCXor2KSGH1adXPeU3Rr2XcK02Lc/MbgWub6JY4e7W7+6L\ngEVR13sVeAu4hDBWktJS8S+wYk68VIsXUi/mVIsXUjPmREqSaXne1gG05jz8u4E/NFFmLSGmTDPb\nq1YrvxfwUnMv5u6VZvYmcFBDZcysudUlhVSLFxRza0i1eCH1Yk61eCE1Y06cFv8sNgMV1O117kkY\nx6/PJ9RtyfeMei/hWi3hR5J37W76OszsDWAXMAr4Y+RYH+AQwlOQzWLhT/sRwJsNxKO/DSIiaS4R\n/9a7e1kkV40Cnox6ayTwRAOnvQZMNrOcqHH8kcA6d/9PS8dYn6To54jm7p8D9wN3mNkIMxsMPAS8\nA/yzqpyZzTez26Je32Rmo8ysX+RhvfuBw4AZrXsHIiLSDkwBxpnZRWZ2qJlNI7TgZwCY2e1m9s+o\n8o8Spo7PNrPDzGwMcG2knlaRrEvrXg6UA48BHQmJ/gfuHj0G0g+I/lbUBfg94QP/nNCyH+buS1sl\nYhERaTfc/XEz2wu4AdgHWAac6u5rI0V6EfJUVfmtZjYS+C2wFNgC3Onud7dWzFYzh4qIiEg6Srou\nfREREWl5SvgiIiLtgBK+iIhIO6CELyIi0g4o4YuIiLQDSvgiIiLtgBK+iIhIO6CELyIi0g4o4YuI\niLQD/x9hp7uLxdqLGwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot of petal_length vs petal_width colored by species\n", + "iris.plot(kind='scatter', x='petal_length', y='petal_width', c='species_num', colormap='brg')" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\njF9+2cqcOX9gzJgxDorScSwWC/sP7MdsNjN61GinfOBnZWVx5vRpBgwc6JAVEFuqq+vm0qVLiDoG\n1gAAIABJREFUOXDgEM8//5zV3Sij0UhiYiIeHh61riUtlcVi4eChg+j1esaMHtOi7kTk5+dz/Ngx\nevTs6ZS7ms3JXmkbkuRSWsrME46gUqkYPWp0nfsCAgK4ZYpzM6D279/Ps8/Ow9fXixUrPrKaF7ms\nTINKFUh5ua7JM4hYLBZefPEVNm3azezZE/ngg3/aI/w2b82atfz731/Rp08XVq36lPvvv5+0tDQm\nTpxNWZmGRYteZ9KkSVZltFotH3+8lIyMXB5//DcMGjTQOcFfQ6VSMWa0cxv9nTp1kgte1MNgMKDV\nmlGpAigpKbPat2HDBv7859fw9FTzv/99zqhRo2r2bd78Cz/88Avjxg3l4YcfbDENa5VKxaiRoxp+\nogsKDw9nytSpzg7D6VpGTZOkOokm/EiOtHTp12i1/cjODuGnn36q2W4ymfj++xhCQyezbVsSRUVF\n9RylYfn5+axfv5eQkAf48cedFBQUNDV0Cfjss7V4e0/n6NEidu/eDVQ1YjIzA9DrB/HZZ6trlTl7\n9iwnT5bg5taf9etja+2XpOtJT08nKSkbH5+R/O9/W6z2LVy4FL1+GMXFXVmy5Mrc4haLhe++20xo\n6GTi449SWFjY3GFLbZhsPEuSZHc33zwKi+UkXl4XrKaqc3NzY+jQPmRn76Rbt7A6FytojNDQUHr0\nCOPixZ/p1SuyzQ5esbdx4wZRUpJAu3YG+vfvD8CIESPw8cnBZDrGpEm1e3I7depEYKCB8vITDB/e\nv7lDllqw9u3bExqqorDwICNHDrDaN23aTQhxFDe3c0ydemUWDpVKxfDh/cjJ2Ul0dIj825ealcx5\nvvGIZPk2Xt6ZOc8twenTp/Hx8amVF2cymbh48SJhYWG1BjSeP3+e7Oxsxo8fb/MtWK1Wy6lTp+jX\nr59TpiFzdY2pmzk5OUBVY+bIkSNERUURGhpas//w4cMUFhYyZcqUOtNtKioqqKioICIiok2nVUm2\nubpuarVaSkpKiIyMrFV3Pv/8cwIDA2tNlWg2m8nLyyM0NNQpK1tKrZvMeZYkqdldbwo6tVpNx44d\na20/duwYDz74F3Q6d+6/fzTvvvuWTefx8fFhxIgRTYpVgsOHj/DRR98A8NxzDzJs2DCr/ampqfzn\n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\nGEl+fix5ea0BMJkOAVrcOhSjfb9xQDsggJCQ00yYMBUPj0JeeeU+OnfuzNGjR3nrrW8wmQIYMaIV\njz465bJtVlwZqLCN6vrV8Q0jbKPBjzybTCZMJtDpfJBS+1wVg8GAlAKdzgejUVrKjIA3UnpQVlZm\nGUnyQKfzwmg0WfYpw8PDG7NZiz3V9vEEvDAazTZ16/VlCOEFeGAwGDCbzZhMEk9PH8rKjDZ1l5WV\nATo8PLztzpsqpcRoNOPp6YPRaLriHDeF6zGZTEgp8PDwwmAoq1RXVqZdK1LqLO37AkajCQ8Pn4rr\nqpzS0lKk9AS8MRrN1Y7R6TyRUlS6xrXrRQf4ALpKI8Lade+BEF6Waw6rOiNC+CClQK/XV5JnNks8\nPHws781WdSak1AGedl+nZrPZIs+74vq3h7IyI56ePpjNwmFZVsrKjOh0Xkipq/gOy8rKLH2jt0WP\np2UTlH+nGt6W91r/ZzJd+D3KvwtNpg6dzqtW56pQKBQNDillg9g0U23zww8/yDFj/k/OmTOnxn3+\n+c9/ybFjJ8rly5dLKaU8efKknDZtuvzww0+kyWSSRqNRPvXUs3L8+FtkYmKilFLKtLQ0uWDBIpmY\nuFtKKWVmZqbs02ewjIrqJXft2mVTd1ZWlnzppdflG2+8I4uKiqSUUu7du0/On/+zPHPmjE3dJpNJ\nzp79mXzqqedlcnJyjedQleTkZDlv3kJ5+PBhu49ROIeLtc/Gitlsljt2xMkff1wkMzIyKtWdOnVK\n3nLLJPm3vz0oCwoKKtVt3bpVPvroNLls2bJK5QaDQY4Yca1s166bXLFiRaW6/Px8uWjRr3Ljxk3S\nZDJVqpsyZYoMCWkrH3rooUrler1ePvTQI/Kmm+6sdo0cP35cPvXU8/KTTz6tJm/p0qXy0UenyW3b\ntlUqLysrk6tWrZVLlvwmi4uLL/HtXGD37j1ywYJFMjU11e5jUlJS5Pz5P8s9e/bafUxNlLfNwsJC\nuXjxUrl27XppNBor6ufM+Z984onn5IYNG+SIEWPliBFj5eOPPy69vZvJqKjO8sYbJ8qQkLZy2rRp\nsm/fITIqqpfctGmT/PnnxTImZrM0m81SSq09bN68VS5cuFhmZ2fX2W5F48e639y1a5cMChogQV7m\ntl4CdTi+7v24I/Sr4117vI32ia2twYdtKBTuwJUYtqFoGKi2qXBXVNhGdf3qeNceb/37N7qwDSml\n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\nyszIuiUAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter matrix of all features colored by species\n", + "pd.scatter_matrix(iris.drop('species_num', axis=1), c=iris.species_num, figsize=(12, 10))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 4\n", + "\n", + "Write down a set of rules that could be used to predict species based on iris measurements." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a new feature that represents petal area (\"feature engineering\")\n", + "iris['petal_area'] = iris.petal_length * iris.petal_width" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "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", + "
countmeanstdmin25%50%75%max
species
Iris-setosa500.36280.1832480.110.26500.3000.420.96
Iris-versicolor505.72041.3684033.304.86005.6156.758.64
Iris-virginica5011.29622.1574127.509.717511.44512.7915.87
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "species \n", + "Iris-setosa 50 0.3628 0.183248 0.11 0.2650 0.300 0.42 0.96\n", + "Iris-versicolor 50 5.7204 1.368403 3.30 4.8600 5.615 6.75 8.64\n", + "Iris-virginica 50 11.2962 2.157412 7.50 9.7175 11.445 12.79 15.87" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# description of petal_area grouped by species\n", + "iris.groupby('species').petal_area.describe().unstack()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of petal_area grouped by species\n", + "iris.boxplot(column='petal_area', by='species')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspeciesspecies_numpetal_area
866.73.14.71.5Iris-versicolor17.05
856.03.44.51.6Iris-versicolor17.20
526.93.14.91.5Iris-versicolor17.35
726.32.54.91.5Iris-versicolor17.35
1196.02.25.01.5Iris-virginica27.50
566.33.34.71.6Iris-versicolor17.52
1064.92.54.51.7Iris-virginica27.65
1336.32.85.11.5Iris-virginica27.65
1346.12.65.61.4Iris-virginica27.84
836.02.75.11.6Iris-versicolor18.16
776.73.05.01.7Iris-versicolor18.50
705.93.24.81.8Iris-versicolor18.64
1266.22.84.81.8Iris-virginica28.64
1386.03.04.81.8Iris-virginica28.64
1236.32.74.91.8Iris-virginica28.82
1276.13.04.91.8Iris-virginica28.82
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species \\\n", + "86 6.7 3.1 4.7 1.5 Iris-versicolor \n", + "85 6.0 3.4 4.5 1.6 Iris-versicolor \n", + "52 6.9 3.1 4.9 1.5 Iris-versicolor \n", + "72 6.3 2.5 4.9 1.5 Iris-versicolor \n", + "119 6.0 2.2 5.0 1.5 Iris-virginica \n", + "56 6.3 3.3 4.7 1.6 Iris-versicolor \n", + "106 4.9 2.5 4.5 1.7 Iris-virginica \n", + "133 6.3 2.8 5.1 1.5 Iris-virginica \n", + "134 6.1 2.6 5.6 1.4 Iris-virginica \n", + "83 6.0 2.7 5.1 1.6 Iris-versicolor \n", + "77 6.7 3.0 5.0 1.7 Iris-versicolor \n", + "70 5.9 3.2 4.8 1.8 Iris-versicolor \n", + "126 6.2 2.8 4.8 1.8 Iris-virginica \n", + "138 6.0 3.0 4.8 1.8 Iris-virginica \n", + "123 6.3 2.7 4.9 1.8 Iris-virginica \n", + "127 6.1 3.0 4.9 1.8 Iris-virginica \n", + "\n", + " species_num petal_area \n", + "86 1 7.05 \n", + "85 1 7.20 \n", + "52 1 7.35 \n", + "72 1 7.35 \n", + "119 2 7.50 \n", + "56 1 7.52 \n", + "106 2 7.65 \n", + "133 2 7.65 \n", + "134 2 7.84 \n", + "83 1 8.16 \n", + "77 1 8.50 \n", + "70 1 8.64 \n", + "126 2 8.64 \n", + "138 2 8.64 \n", + "123 2 8.82 \n", + "127 2 8.82 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# only show irises with a petal_area between 7 and 9\n", + "iris[(iris.petal_area > 7) & (iris.petal_area < 9)].sort('petal_area')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "My set of rules for predicting species:\n", + "\n", + "- If petal_area is less than 2, predict **setosa**.\n", + "- Else if petal_area is less than 7.4, predict **versicolor**.\n", + "- Otherwise, predict **virginica**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus\n", + "\n", + "Define a function that accepts a row of data and returns a predicted species. Then, use that function to make predictions for all existing rows of data, and check the accuracy of your predictions." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# given a row of data, return a predicted species_num (0/1/2)\n", + "def classify_iris(row):\n", + "\n", + " # calculate the petal_area\n", + " petal_area = row[2] * row[3]\n", + " \n", + " # predict the species based on the rules above \n", + " if petal_area < 2:\n", + " prediction = 'setosa'\n", + " elif petal_area < 7.4:\n", + " prediction = 'versicolor'\n", + " else:\n", + " prediction = 'virginica'\n", + " \n", + " # map the species name to a numeric value\n", + " species_to_num = {'setosa':0, 'versicolor':1, 'virginica':2}\n", + " \n", + " # return that value\n", + " return species_to_num[prediction]" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 5.1\n", + "sepal_width 3.5\n", + "petal_length 1.4\n", + "petal_width 0.2\n", + "species Iris-setosa\n", + "species_num 0\n", + "petal_area 0.28\n", + "Name: 0, dtype: object" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print the first row\n", + "iris.iloc[0, :]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 5.9\n", + "sepal_width 3\n", + "petal_length 5.1\n", + "petal_width 1.8\n", + "species Iris-virginica\n", + "species_num 2\n", + "petal_area 9.18\n", + "Name: 149, dtype: object" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print the last row\n", + "iris.iloc[149, :]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "2\n" + ] + } + ], + "source": [ + "# test the function on the first and last rows\n", + "print classify_iris(iris.iloc[0, :])\n", + "print classify_iris(iris.iloc[149, :])" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# make predictions for all rows and store them in the DataFrame\n", + "iris['prediction'] = [classify_iris(row) for index, row in iris.iterrows()]" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.97333333333333338" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate the percentage of correct predictions\n", + "sum(iris.species_num == iris.prediction) / 150." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/08_bias_variance.ipynb b/notebooks/08_bias_variance.ipynb new file mode 100644 index 0000000..a396809 --- /dev/null +++ b/notebooks/08_bias_variance.ipynb @@ -0,0 +1,677 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploring the Bias-Variance Tradeoff" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import seaborn as sns\n", + "\n", + "# allow plots to appear in the notebook\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Brain and body weight" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This is a [dataset](http://people.sc.fsu.edu/~jburkardt/datasets/regression/x01.txt) of the average weight of the body and the brain for 62 mammal species. Let's read it into pandas and take a quick look:" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
brainbody
id
13.38544.5
20.48015.5
31.3508.1
4465.000423.0
536.330119.5
\n", + "
" + ], + "text/plain": [ + " brain body\n", + "id \n", + "1 3.385 44.5\n", + "2 0.480 15.5\n", + "3 1.350 8.1\n", + "4 465.000 423.0\n", + "5 36.330 119.5" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "url = 'http://people.sc.fsu.edu/~jburkardt/datasets/regression/x01.txt'\n", + "col_names = ['id', 'brain', 'body']\n", + "mammals = pd.read_table(url, sep='\\s+', skiprows=33, names=col_names, index_col='id')\n", + "mammals.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "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", + "
brainbody
count62.00000062.000000
mean198.789984283.134194
std899.158011930.278942
min0.0050000.140000
25%0.6000004.250000
50%3.34250017.250000
75%48.202500166.000000
max6654.0000005712.000000
\n", + "
" + ], + "text/plain": [ + " brain body\n", + "count 62.000000 62.000000\n", + "mean 198.789984 283.134194\n", + "std 899.158011 930.278942\n", + "min 0.005000 0.140000\n", + "25% 0.600000 4.250000\n", + "50% 3.342500 17.250000\n", + "75% 48.202500 166.000000\n", + "max 6654.000000 5712.000000" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mammals.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We're going to focus on a smaller subset in which the body weight is less than 200:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(51, 2)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# only keep rows in which the body weight is less than 200\n", + "mammals = mammals[mammals.body < 200]\n", + "mammals.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We're now going to pretend that there are only 51 mammal species in existence. In other words, we are pretending that this is the entire dataset of brain and body weights for **every known mammal species**.\n", + "\n", + "Let's create a scatterplot (using [Seaborn](http://stanford.edu/~mwaskom/software/seaborn/)) to visualize the relationship between brain and body weight:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWEAAAFhCAYAAACh/xvXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAF4RJREFUeJzt3X+Q3PV93/Hn/RDSiZx0gi5S/QNkG/yu8kMMQhEIT8Ai\ntrHNJGQ8nbiTNKlpg0pLnTC1h3bkDJ5OcXFqQzu4kE4Y29Spx4lhwDHVGGODExGGAYQZUwF5GxkT\nmRrsRdxJAklwp7v+sXvHIe2dLqfb/eztPh8zDPv9uW99tHrtZz/fXz0TExNIksroLV2AJHUzQ1iS\nCjKEJakgQ1iSCjKEJakgQ1iSCupv1o4jYgnwJeAMYClwHfA88H+AH9ZXuyUzb4+IK4CtwBhwXWZu\nb1ZdktROepp1nnBEfAxYn5n/PiJWAT8A/hOwMjNvnLbeGuBe4FxgAPhbYGNmvt6UwiSpjTStJwzc\nDtxRf90LjFIL2oiIy4BngKuBTcCDmTkKjEbEbmA9sLOJtUlSW2jamHBmvpqZr0TEILVA/hTwCPDJ\nzLwIeBb4NDAI7Ju26QFgZbPqkqR20syeMBHxduBO4ObM/IuIWJmZk4F7F/AFYAe1IJ40CAzPtt+x\nsSMT/f19zShZkuajZ74bNvPA3GpqY73/NjO/V599T0T8YWY+CryP2pDDI8BnImIpsAxYB+yabd/D\nwwfnVVOlMki1emBe23Yy26Ux26Ux2+VYlcrg8VeaQTN7wtuoDStcGxHX1uddDfy3iBgFXgC21ocs\nbgIeoDY8ss2DcpK6RdPOjmimavXAvIr2G7wx26Ux26Ux2+VYlcrgvIcjvFhDkgoyhCWpIENYkgoy\nhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWp\nIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENY\nkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoy\nhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgoyhCWpIENYkgrqb9aOI2IJ8CXgDGAp\ncB3wNHAbMA7sAq7KzImIuALYCowB12Xm9mbVJUntpJk94d8Fqpl5IfBB4GbgBmBbfV4PcFlErAE+\n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\nydvNAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.lmplot(x='body', y='brain', data=mammals, ci=None, fit_reg=False)\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There appears to be a relationship between brain and body weight for mammals." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Making a prediction" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now let's pretend that a **new mammal species** is discovered. We measure the body weight of every member of this species that we can find, and calculate an **average body weight of 100**. We want to **predict the average brain weight** of this species (rather than measuring it directly). How might we do this?" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nRK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.lmplot(x='body', y='brain', data=mammals, ci=None)\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We drew a straight line that appears to best capture the relationship between brain and body weight. So, we might predict that our new species has a brain weight of about 45, since that's the approximate y value when x=100.\n", + "\n", + "This is known as a \"linear model\" or a \"linear regression model\", which we will study in a future class." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Making a prediction from a sample" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Earlier, I said that this dataset contained every known mammal species. That's very convenient, but **in the real world, all you ever have is a sample of data**. A more realistic situation would be to only have brain and body weights for (let's say) half of the 51 known mammals.\n", + "\n", + "When that new mammal species (with a body weight of 100) is discovered, we still want to make an accurate prediction for the brain weight, but this task might be more difficult since we don't have all of the data that we would ideally like to have.\n", + "\n", + "Let's simulate this situation by assigning each of the 51 observations to **either universe 1 or universe 2**:" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
brainbodyuniverse
id
13.38544.51
20.48015.52
31.3508.12
536.330119.52
627.660115.01
\n", + "
" + ], + "text/plain": [ + " brain body universe\n", + "id \n", + "1 3.385 44.5 1\n", + "2 0.480 15.5 2\n", + "3 1.350 8.1 2\n", + "5 36.330 119.5 2\n", + "6 27.660 115.0 1" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# set a random seed for reproducibility\n", + "np.random.seed(12345)\n", + "\n", + "# randomly assign every observation to either universe 1 or universe 2\n", + "mammals['universe'] = np.random.randint(1, 3, len(mammals))\n", + "mammals.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Important:** We only live in one of the two universes. Both universes have 51 known mammal species, but each universe knows the brain and body weight for different species.\n", + "\n", + "We can now tell Seaborn to create two plots, in which the left plot only uses the data from **universe 1** and the right plot only uses the data from **universe 2**:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAskAAAFiCAYAAAAEBkVdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xlw3Ol93/k3boIkSIBgozEnyeHxEA0N5yCHwMi2Dkfy\npYrlSjZJJU6yVtZS7Hgdu2KXd2uSkiq1cpTEsZKSV0p2LVtKbK+zltZypJ3YkVeWJXsyAIecS4MG\nH17D4Qxn0ABIgOABEFfvH93gEN0gCR6NbqDfr6qpAfrX3Xj4TPPBZ57f83yfmmw2iyRJkqR31Za7\nAZIkSVKlMSRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJqgohhJfK3YblCiFsCiG8\nFkJ4uNxtkaTrrZaxNITwqfw4+loI4V+Vuz1anQzJqgoxxifK3YblCCH0AH8J7Cp3WySp0GoYS0MI\nHwI+DDye/2d/COEnytsqrUb15W6AdLtCCB8APhVj/GD++y8D3wb+HPgj4HvAE0AG+BsxxrEQwjzQ\nALwJPB5jHA4hbMk/92FyA+o/zz/ndeDjMcbzIYTTQB+5gfbDwH8Akvmm/PMY4zdCCLuALwDtwBXg\n52OMLxe0+bfzbbrev44x/n7BYz8N/CPgd+6kbyRpudbwWPo28E9ijLP51xwFHrqzXlI1cyZZa0E2\n/08NsA/49Rjjo8A48JMLT4oxzgF/APyN/EN/Hfga0AZ8BvihGOOTwDeBf3Xde//XGONe4AeB12OM\nB4C/C3x//jn/EfiVGON+4B8C/7mwgTHGfxBjfKLgn8KATIzx4zHGv7yLvpCkO7UmxtIYYzrGeAgg\nhLAb+JvAf72LflGVciZZa81wjPGV/NevkRu0r/c7wL8DPg/8beAZoJfcDMifhxAA6oBz172mP//v\n54BfDSE8ADwLfDqEsBE4AHwp/1qADSGEthjj2MIDIYQvkZtBud6vxRj/rzv9g0pSCa36sTSE0A38\nv8AvxRhPLvcPLi0wJGs1WpjpWNBw3ddTN3keMcYjIYQtIYSngAdijH0hhI8Cfxlj/ChACGEd0HLd\nyybzrz0RQtgL/AjwV4FfAnqAqevX6YUQHrp+UM+/9mN39keVpJJZs2NpCOH7gK8CvxBj/IPlvEYq\n5HILrUajwCMhhKb8WrgfuMHzaigY2PN+D/g/gIVbdP3A0/nbcgD/jHdvEV4TQvhZcmvnvgr8HNCR\nf//jIYSfzD/nQ+TW80lSpVuTY2kI4SFya6r/tgFZd8OQrFUnxjhA7hbdALl1cd/NX1pYT8cS31//\n+O+RW2/3u/n3GwL+AfAHIYRXyW0K+aUlfvTvAiH/nO+Q2/BygdxavZ8OIbwC/Aty698kqaKt4bH0\nl4FG4N+GEF7K//OJO3wvVbGabDZ762dJkiRJVaRka5JDCA3AbwPbgCbg08Bb5BbRH8s/7Qsxxq+E\nED4OfAKYBT4dY3y2VO2SJEmSbqVkM8khhJ8C9sUY/0kIoQ14hVztxM0xxs9e97xOcmVi9gPN5A5S\nOBBjnC5JwyRJkqRbKGV1i6+Q21kKubXPM+SCcMjvgD0O/CJwEHguxjgDzIQQTpBb43S4hG2TJEmS\nbqhkG/dijJdjjJdCCC3kAvM/BQ4BvxxjfD9wCvgUufIwF6576UVgc6naJUmSJN1KSesk58uw/CHw\n+Rjjfw4hbM7vYIXc6Ty/QW437fV1FFuAMW5idnYuW19fV4omS1IlWKrcVkk4nkpa4+54PC3lxr0k\nubXG/yjG+O38w38SQvjHMcYXgA+RW1JxiNzJO03AOqCL3Ok+NzQ2duWO25VItDAycvGOX19N7Kvl\nsZ+Wz75ankSi5dZPukccT1eGfbU89tPy2VfLczfjaSlnkp8ht2zikyGET+Yf+0VydQtngHeAT+SX\nZHwO+Atyyz+ecdOeJEmSyqlkITnG+AvALyxx6fuXeO4XgS+Wqi2SJEnS7fDEPUmSJKmAIVmSJEkq\nYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiW\nJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmS\nChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiS\nJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmS\npAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKG\nZEmSJKmAIVmSJEkqYEiWJEmSChiSJUmSpAKGZEmSJKlAfaneOITQAPw2sA1oAj4NDAJfBuaB14Cf\nizFmQwgfBz4BzAKfjjE+W6p2SZIkSbdSypnknwRGYozvA34E+Dzw68Az+cdqgI+GEDqBnwfeC/ww\n8JkQQmMJ2yVJkiTdVMlmkoGvAF/Nf10LzABPxhi/m3/sj4EfAuaA52KMM8BMCOEEsA84XMK2SZIk\nSTdUspAcY7wMEEJoIReY/xnwb657ykVgM7AJuLDE45IkSVJZlHImmRDCQ8AfAp+PMf5+COFfX3d5\nEzAOTAAt1z3eAozd7H3b2tZTX193x+1KJFpu/SQB9tVy2U/LZ19VFsfTlWNfLY/9tHz2VWmVcuNe\nEvgm8I9ijN/OP/xSCOH9McbvAD8KfAs4BPxqCKEJWAd0kdvUd0NjY1fuuF2JRAsjIxfv+PXVxL5a\nHvtp+eyr5VnJX3yOpyvDvloe+2n57KvluZvxtJQzyc+QWzbxyRDCJ/OP/QLwufzGvDTw1Xx1i88B\nf0Fu7fIzMcbpErZLkiRJuqlSrkn+BXKhuNAHlnjuF4EvlqotkiRJ0u3wMBFJkiSpgCFZkiRJKmBI\nliRJUkmNjE8yMj5Z7mbclpKWgJMkSVJ1e/b50xyOIwAcCAk+8vT2srZnuZxJliRJUkmMjE9eC8gA\nh+PIqplRNiRLkiRJBQzJkiRJKolEazMHQuLa9wdCgkRrcxlbtHyuSZYkSVLJfOTp7RzsSgKsmoAM\nhmRJkiSV2GoKxwtcbiFJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJ\nUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFD\nsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJ\nklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLWpNGxicZGZ8sdzMkSatUfbkb\nIEn32rPPn+ZwHAHgQEjwkae3l7U9kqTVx5lkSWvKyPjktYAMcDiOOKMsSbpthmRJkiSpgCFZ0pqS\naG3mQEhc+/5ASJBobS5jiyRJq5FrkiWtOR95ejsHu5IABmRJ0h0xJEtakwzHkqS74XILSZIkqYAh\nWZIkSSpgSJYkSZIKGJIlSZKkAiXfuBdC6AH+ZYzxgyGEJ4BvAMfzl78QY/xKCOHjwCeAWeDTMcZn\nS90uSZIk6UZKGpJDCL8C/F3gUv6h/cBnY4yfve45ncDP5681A38ZQvjTGON0KdsmSZIk3UipZ5JP\nAH8N+J389/uBPSGEj5KbTf5F4CDwXIxxBpgJIZwA9gGHS9w2SZIkaUklXZMcY/xDcksoFvQDvxxj\nfD9wCvgU0AJcuO45F4HNpWyXJEmSdDMrfZjI12KMC4H4a8BvAN8lF5QXtABjN3uTtrb11NfX3XEj\nEomWWz9JgH21XPbT8tlXlcXxdOXYV8tjPy2ffVVaKx2S/ySE8I9jjC8AHyK3pOIQ8KshhCZgHdAF\nvHazNxkbu3LHDUgkWhgZuXjHr68m9tXy2E/LZ18tz0r+4nM8XRn21fLYT8tnXy3P3YynKxWSs/l/\n/wzw+RDCDPAO8IkY46UQwueAvyC3/OMZN+1JkiSpnEoekmOMp4H35r9+Bfj+JZ7zReCLpW6LJEmS\ntBweJiJJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTA\nkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkCxJ\nkiQVMCRLkiRJBQzJkiRJUgFDsiRJklSg/lZPCCH8FPBvgC3XPZyNMdaVqlGSJElSOd0yJAOfAj4A\nDMQYs6VtjiRJklR+ywnJb8UYXyt5SyRJkqQKsZyQfCSE8FXgm8DV/GPZGON/Kl2zJEmSpPJZTkhu\nBS4BT+e/rwGygCFZkiRJa9ItQ3KM8adWoB2SJElSxbhhSA4hPBtj/EgI4fUlLmdjjI+UsF2SJElS\n2dxsJvnj+X9/cIlrVrmQJEnSmnXDkBxjfDv/5RDwY8AGcuuR64AdwCdL3jpJkiSpDJazce8PgWZg\nN/Bd4H3AfylloyRJkqRyWs6x1AH4QeBrwK8BB4GHS9koSZIkqZyWE5Iz+ZP2jgL78sswOkvbLEmS\nJKl8lrPcYiCE8BvAvwd+L4RwP9BU2mZJkiRJ5bOcmeSfBf4gxpgGPkVuFvnvlLRVkiRJUhktZyb5\nUIzxSYAY49eBr5e2SZIkSVJ5LWtNcgjhfSEEl1hIkiSpKixnJvkA8OcAIYQsuVrJ2RhjXQnbJUmS\nJJXNckLyA+RO3/srwAzw/wG/VcpGSZIkSeW0nJD8G8Bm4Evklmf8faAb+MUStkuSJEkqm+WE5Kdj\njPsWvgkhfAN4tXRNkiRJksprORv3hkII2677vhMYLlF7JEmSpLK74UxyfsYYYAvwagjhW8As8AFg\noPRNkyRJksrjZsstfv0Gj38ByJagLZIkSVJFuGFIjjH++Qq2Q5IkSaoYy1mTLEmSJFUVQ7IkSZJU\nwJAsSZIkFTAkS5IkSQUMyZIkSVKB5Zy4d1dCCD3Av4wxfjCEsAv4MjAPvAb8XIwxG0L4OPAJcnWY\nPx1jfLbU7ZJUmUbGJwFItDaXuSWSpGpW0pnkEMKvAL8JNOUf+izwTIzxfUAN8NEQQifw88B7gR8G\nPhNCaCxluyRVpmefP80X/ug1vvBHr/Hs86fL3BpJUjUr9XKLE8BfIxeIAZ6MMX43//UfAx8CngKe\nizHOxBgn8q/ZV+J2SaowI+OTHI4j174/HEeuzSpLkrTSSrrcIsb4hyGE7dc9VHPd1xeBzcAm4MIS\nj99QW9t66uvr7rhdiUTLHb+22thXy2M/Ld+N+mqutpaG+sX/375lywYS7RtWollVy/F05dhXy2M/\nLZ99VVolX5NcYP66rzcB48AEcP1/5RZg7GZvMjZ25Y4bkEi0MDJy8Y5fX03sq+Wxn5bvZn1VBzy2\ns/3abPKBkKBufr4q+3Ylf/E5nq4M+2p57Kfls6+W527G05UOyS+FEN4fY/wO8KPAt4BDwK+GEJqA\ndUAXuU19kqrMR57ezsGuJODGPUlSea1USM7m//1LwG/mN+alga/mq1t8DvgLcmukn4kxTq9QuyRV\nGMOxJKkSlDwkxxhPk6tcQYzxOPCBJZ7zReCLpW6LJEmStBweJiJJkiQVMCRLkiRJBQzJkiRJUgFD\nsiRJklTAkCxJkiQVMCRLkiRpTZnPZjn6xk3PprullT5MRJIkSbrnstksbw5fom8gQ/9ghrGLV/mB\nAw/f8fsZkiVJkrRqjY5P0pfO0JfO8Pbo5Xv2voZkSZIkrSoXr0zzwtFh+gYynDh7oeh6W0sTPank\nXf0MQ7IkSZIq3tXpOV46MULfQIaB188zN59ddH19Uz0H9nbQm0qy5+FWamtq7urnGZIlqUJks1lO\nnp0gkWgpd1MkqSLMzc8z8PoYfekhXjo2ytWZuUXXG+preWxnO73dnTz6SDsN9feuJoUhWZLKKJvN\n8tbIZfrTGfrTGc5NTPGNJx4sd7MkqWyy2Swn356gfyDDoaMZLl6ZWXS9pga6trXRm+pkf0jQ3FSa\nOGtIlqQyGB67kgvGg8P3dKOJJK1Wb49epi89RH86w8j4VNH17Z0t9HZ3crCrg9aNTSVvjyFZklbI\n+KWrHBocpj+d4fV3Joqub97YyMG9d7fRRJJWk7GLV+lPZ+hLD3Emc6noekdrM73dSXpSSe5r37Ci\nbTMkS1IJXZ6a4UgcoT+d4egbY2QLrm9YV8/+0EFPKkl4qJXa2rvbaCJJle7K1AyH4wh9A0PEM+NF\n4+Km9Q0c7ErS293JjvtaqLnLDXh3ypAsSffYwg7sQ+lhvnfqXNEO7MaGWp7YnaAnleQ9O7ZQX+fh\np5LWtpnZOV49eY6+gQyvnDzH7Nz8outNjXXs35OgtztJ17Y26mrLPy4akiXpHpidm+e1U+fpH8zw\n0vERpmcW/wKoq63h0Ufa6UkleXzXVpoa68rUUklaGfPzWeKZMZ5PZzgSR5i8Orvo+sK42Nud5LFd\nW2lqqKxx0ZAsSXdofj5LfHOc/vQQR+IIl6cW/wKoAfZua6MnleTJPQk2NjeUp6GStEKy2SxnMpd4\nfmCIQ4MZxi9NFz1nz0Ot9KaSHNjbUdHjoiFZkm5DNpvl9Xcu0p/OlSa6sMQvgB33baInlVyxHdiS\nVG7DY1dyR0MPZBg6f6Xo+oOJDfR2d9LTlaR987oytPD2GZIlaRnOjuZqGR9KZxgenyy6fv/WDfSk\nkvR0ddDRtr4MLZSklTVxeZpDg7ka7yffLq7Y076piZ5UJ72pJA92bCxDC++OIVmSbmB0fJL+wQz9\n6WHeGikuTdS+aV0uGKeSPJjYULYd2JK0UqamZ3np2CjPp4dIvz7GfHbxxuQN6+p5am8Hvd2d7Hpw\n810fDV1OhmRJus6Fy9McPpqrZXzi7IWi65vWN/DU3lww3vnAJoOxpDVvdm6e114/T3966Y3JjfW1\nPL57Kz2pJI8+0r5mKvYYkiVVvStTs7x4bIT+wQzp0+cpmBihuamOJ/fkSrZVSmkiSSqlbDbLibMX\n6BvI8MLRYS5NFh8N3b19C73dSZ7YXbqjoctp7f2JJGkZpmfyNTvTGV5domZnQ30tj+1spyfVyb6d\nW2ior6zSRJJUCmdHLl3bgHduovho6Efu30RvKslTXUk2b2gsQwtXjiFZUtWYnZsnfXrs2i3Dqem5\nRddra2ro3rGFnlTHmp0ZkaRC5yem6E9neH4gs+T+i+SW9TydStLTnSRZRRuT/Q0gaU2bz2Y58dYF\n+tNL3zIE2PPgZnq6OzkQErSsX9szI5IEcGlyhsNxmL6BDMfeHC+6vnlDY/5o6CTbO8t3NHQ5GZIl\nrTkLxez7BzMcGsxwfuJq0XO2JVuu1TLesml11OyUpLsxPTPHKyfP0TcwxKsnzzE3v3gDxrrGOvaH\nBL3dnXQ93EZtbfUF4+sZkiWtGZnzV+hPZ+gfzPDOueJi9skt6+np6qAnleS+9g1laKEkraz5+SyD\nb4zRNzDEkWPFy8zqamvYt7Odp7s72bezncYKOxq6nAzJkla1sYtXOTSYoS+d4Y2hi0XX21qaONjV\nQW+qk4eTG6vylqGk6pLNZjk9dJG+gdzdtAuXF58MWgOEh1vpyR8NvWFd5R4NXU6GZEmrzqXJmWu1\njI+9OU5BxTY2NjdwYG8HPV0d7H6odVUXs5ek5cqMXaFvIDdpkFniaOiHOzbS052kpyvpMrNlMCRL\nWhWmpmd56fgo/ekMA6+fL1pL19RYx5P5Yvap7VvWTDF7SbqZC5eucmhwmL50htffKT4aeuvm3Mmg\nvd2dPLDVZWa3w5AsqWLNzM7zvVPn6E9neOXEKNOzi2sZ19fV8Ogj7fSkkjy2aytNrqWTVAUmr87y\nrRfO8Kd9p0m/MVZ0ANLG5gae6urg6VSnJ4PeBUOypIoyP59l8EyulvGROMLk1dlF12tqoGtbGz2p\nJPv3JFjvWjpJVWB2Ljdp0DeQ4eUTo8wUTBo0NtTy5O7cyaDdO7ybdi8YkiWVXTab5dTbE/TlaxlP\nFGwyAdj5wCZ6uqrjlCdJglyd9+NvjtOXznD46DCXpxZPGiwcgJQ7Gnor6xqNdfeSvSmpbN4aztUy\n7k9nGL1QfPzpg4kN+VrGSRKtzWVooSStvDeHL9GXHuJQOsO5Jeq877x/Ex/q2UbXg5vZ5KRByRiS\nJa2o4fFJDuVrGZ8duVx0PdGa22TS05XkgcTGMrRQklbe6IVJ+tO5yhRLjY33ta+nt7uTnlSSjtZm\nEokWRkaKy17q3jEkSyq5C5eucujoMC8eGyWeGSu6vnlDI0/laxnvuK86jz+VVH0uTc7wwtFh+geG\nOPbWhaLrrRsbc5UprPNeFoZkSSVxeWqGI3GE/nSGo2eKd1+vb6rPHX+aShI8/lRSlbg6M8fLx0fp\nGxjitSXKWTY31XMgfzR0eKjVsbGMDMmS7pmrM3O8ciJXy/h7p84xO7d48G9sqOPxXe30dCV5zyPt\nNNS7+1qqVCPjkwDuB7gH5ubnSZ8eo28gw4vHR7hacDR0fV0Nj+3cSm93kn0722mot5xlJTAkS7or\ns3PzDLx+nv50hpeOj3J1ZvHgX1eb233dk0ry4ad3cGliskwtlbRczz5/msNxBIADIcFHnt5e1vas\nRtlsllPvTNA3kOGFwQwTV2YWXa8B9m5rozeVZH+wnGUlMiRLum3z2SzHzozTP7h0WaIaIDzcysFU\nkgOhg43NucG/uameS2Vor6TlGxmfvBaQAQ7HESvM3IZ3zl2+tgFveKx4UmBbsoXe7lzVnraWpjK0\nUMtlSJa0LNlsltNDF+nP1zIeu1hclmh7Z8u1km0O/pKqxfilqxxKZ3g+neGNoeKKE7mqPZ30ppLc\n79HQq4YhWdJNLcyK9KczZJaYFbmvff21km3JLevL0EJJ91KitZkDIbFouYWzyMWuTM1y5Ngw/ekM\ng0scDd2yvoGDe5P0did55H6Phl6NDMmSipy7MMWh/CEfZ4aLF0i0b2riYFeSnlSShzosSyStNR95\nejsHu5KAG/euNzM7z6snz9GfHuLlE+eYnVt8NHRTQx1P7tlKb3cnqe1t1NVWz+bktbjR05AsCYCJ\nK9McOTpMXzrD8SXqdbasb+DA3g56upLsenAztQZjaU1bS2Hnbsxns8Qz4/Snhzh8dIQrVxfvwair\nreE9O7bQ053kiV0JmhqrrzLFWt3oaUiWqtjk1VlePDZC/2CG9OtjzBfcL1zXWMf+PQl6Ukm6qmxW\nRFL1ymazuaOhB3Kngy61B2PXg5t5OpXkwN4OWtZX79HQa3mjpyFZqjIzs3P524UZXjl5jpnZxbcL\n6+tqeSxfy3jfznYaG6pvVkRSdRoZf/do6LdHi4+GfmDrBnq7c3swtq6BEKibMyRLVWBufp7B02P0\np3OF7CevLq5lXFtTQ2p7Gz2pJE/sTrB+nUODpOpw8co0Lxwdpm8gw4mzxUvN2lqa6E25B+NG1vJG\nT38TSmvUfDbLybMX6E/nahkXFrKH3O3Cnq4kT+3tYNOG6r1dKKm6XJ2e46XjI/SlMwwscTT0+qZ6\nDuztoDeVZM/Dre7BuIW1utGzLCE5hPAisPC/a6eAzwBfBuaB14CfizFml361pBtZWEfXP5jhUDrD\nuYnidXQPd2ykJ5Xkqa4Otm5eO4OZJN3M7Fz+aOj0EC8dKz4dtKG+lsd3baU3leQ9j7TTUO8ejNux\nlsLxghUPySGEdQAxxg9e99jXgWdijN8NIfx74KPAH61026TVKjN25Vot43fOXSm63tHWTE++ZJuF\n7CVVi2w2y8mzE/Slh3jh6DAXC4+GroHUtjZ6uzt5ck+C5iZvsOtd5fg0PAasDyH8t/zP/6fAkzHG\n7+av/zHwQxiSpZsau3iVFwZzO69ff6f4hKfWjY3Xahlv72xxHZ2kqnF29DL96SH6BjKMXpgqur7j\nvhZ6Up0c7OqgdaOng2pp5QjJl4FfizH+VghhN/AnBdcvAZtv9gZtbeupr7/zHfeJRMsdv7ba2FfL\ns1L9dPHKNP/91bf5zotnee3U6JInPL133/28/4kHST3STl1t5QVjP1OVxfF05dhXy3On/XTuwiTf\nefEs33nxLU69XbwB776tG/jAkw/y/icf5IHExrttZkXwM1Va5QjJx4ATADHG4yGEc8AT111vAcZv\n9gZjY8W3k5crkWhhZKR41k3F7KvlKXU/TU3P8vLxUfrTGV5bYoNJY0MtT+zO1TJ+z44t1Nfl1tGd\nP1d8Ul65+ZlanpX8xed4ujLsq+W53X66MjXD4ThC38AQ8cw4hZuZNq1v4GBXkt7uTnbct3BHLbsm\n/lv4mVqeuxlPyxGSPwbsA34uhHA/uVD8zRDC+2OM3wF+FPhWGdolVYzZuXm+dypXy/jlE6NMzyyu\nZVxXW8Ojj7TTk0ry+K6tVXnCk6TqNDM7xysnztGXzvDqyVFm5xZH46b8IUi93Um6tnkIku5cOULy\nbwFfCiEsrEH+GHAO+M0QQiOQBr5ahnZJZTU/nyWeGaN/MLPk0ac1wN5tuVrG+0OCDesaytNQSVph\n8/NZjp4Zo28gw5Fjw0W13hcmDnq7kzy2aytNHoKke2DFQ3KMcRb4e0tc+sAKN0Uqu2w2y6l3JuhP\nZ3jh6DAXLk0XPeeR+zflahm7wURSFclms5zJXOL5gSEODWYYX2J83PNQK73dSQ6EDjY2O3Gge8ta\nJ1IZnB3J1TLuT2cYGS/eeX3/1g30pJL0dHXQ0ba+DC2UpPIYHrtCXzpD30CGofPFa+YfTGy8djR0\n++Z1ZWihqoUhWVoho+OT14LxWyOXi65v3bwuH4yTPNixNnZeS9JyTFye5tBghiPHRolnxoqut29q\noifVSW93kgfXSGUKVT5DslRCFy5Pc/joMH3pIU6enSi6vmlDI0/t7aAnlWTn/ZusZSypakxNz/Li\nsdzR0OnXx5gvqGm5YV09T+3toLe7k10PbvZoaK04Q7J0j12ZmuXIsWEOpTOk3xgrqmXc3FTP/j25\nkm17t7XmDQnTAAAaH0lEQVS681pS1Zidm+e118/TNzDEy8dHmZ5dXLmnsaGOx3e105vq5D2PvFvS\nUioHQ7J0D0zPzPHKyVzJtldPnmN2bvHA31Bfy2O7ttKbSvLoI1touIvDGyRpNZnPZjl59gJ9A7kN\nypcmi4+G7t6+hZ5Ukh967w4uXyzepyGVgyFZukOzc/OkT4/x8p8e4/nvvcPV6eKSRKntW+hNJXl8\n91aam/zrJql6nB25RF86tw9jqaOhH7l/E72pJE91Jdm8oRGA9esaDMmqGP7Wlm7DfDbL8TfH6R8c\n5vASMyKQK0nUk0pyICRoWd9YhlZKUnmcn5iiP53h+YEMb40Un/rZuWU9vd1JelNJK/eo4hmSpVtY\nqNXZn87QP5hh7OLVoudsS7bQk0pysKuDLZssSSSpelyanOFwHKZvIMOxN8eLrm/e2EhPV5Le7iTb\nki1uUNaqYUiWbmDo/BX60xn60hkyS9TqTG5ZT09XBz/2AztpJLvEO0jS2jQ9M8fLJ0av7cOYm188\nBjY31bF/Twe93Un2PtxGbW1lBuOR8UkAEq3NZW6JKpEhWbrO+YkpDg0O05/O8EbmYtH1tpYmerqS\n9KSSPJzcSE1NDYnERkZGip8rSWvJ/HyWwTfG6BsY4sixEaYK9mHU19Wwb2dug/K+ne00VvjR0M8+\nf5rDcQSAAyHBR57eXtb2qPIYklX1Ll6Z5nAcoT+d4fib40VzwhubG67VMrZWp6RSqNQZzWw2y+mh\ni/mjoYeZuLz4aOgaIDzcSm93J/tDgg3rVsfR0CPjk9cCMsDhOMLBrmTF9b/Ky5CsqjR5dZaXj4/S\nP5hh4PXzRbcKmxrreHJ3rpZxanubtTollUwlzmhmzi8cDT1EZmyy6PrDHRvp7e50H4bWNEOyqsbM\n7BzfO3WevnSGV08UF7Gvr6vh0Ufa6e3uZN/Odpoq/FahpNWvkmY0L1y6yqHB3Amhr79TvIRs6+Z1\n9HYn6Ul18sDWDSvevnsp0drMgZBY9D8nziKrkCFZa9rc/DxH3xinP53hyLERJq/OLrpeUwOpbW0c\nTCXZvyfB+lVyq1CS7oXJq9cdDX36fNEJoRubG3iqq4OnU53sfGDTmqpM8ZGnt3OwKwlU3jIXVQZD\nstacbDbLybcn6E/nTncqXEMHsPOBTfR0LS5iL0krrRwzmrNz83zv5Dn60hlePjHKTNHR0LU8uTtB\nb3eS1Pa1fTS04Vg3Y0jWmvHWcO50p0ODS5/u9GBiQ76WsZszJFWOlZjRXDgI6fmBDEfiMJenFt9V\nq62poXvHFnq7kzyxeyvrGo0Hkn8LtKoNj0/Sn85wKJ3h7OjlouuJ1nX0pJL0dCV5ILGxDC2UpFsr\nRTjOZrO8OfzuQUjnJ4oPQtr5wCZ6U5081dXBJk8IlRYxJGvVGb90lRcGh+kfzHDq7Ymi65s3NPJU\nVwe9qU523OfpTpKqy+iF3ORB38DSkwf3ta+nt7uTnlSSDu+qSTdkSNaqcHlqhiP5WsZHz4wVbS5Z\n31TPgb0JerqShAo+3el2VGrdVEmV59LkDC8cHeb5gSFOvHWh6HpbSxMH85MHCwchSbo5Q7Iq1tXp\nd489/d6p4mNPGxtqeXzXVnpSSd6zo52G+rWzuaQS66ZKqixXZ+Z4+fgofQNDvLZEvffmpnoOhAS9\n3Z2Eh1rXxOSBtJIMyaoos3PzvPb6eQ6lM7x0fJSrM4uPPa2rreE9O7bQk0ry+BrdXFJJdVMlVZa5\n+XnSp3NHQ794rHiMrK+r5bFd7fSmcvXe19LkgbTS1l7C0Kozn81y7Mw4/YMZDh8t3nW9cOxpTyrJ\n/tDBxmZrGUuqHtlsllPvTNA3kOGFwQwTV2YWXa8B9m5ro7c7yf49Haxf56926V7wb5LKIpvNcnro\nYq4yxWCG8UvFtYy3d7bQm8rVMm5raSpDK8vDk6AkAbxz7jJ9Axn60xmGx4uPht6WbKG3O1fWsprG\nSGmlGJK1ot4evXytHNHwWPGgf1/7+lzJtlSSZNv6MrSwMngSlFSdxi5e5dBghr50hjeGio+GTrSu\nozfVSW93kvvaV/fR0FKlMySr5M5dmOLQYG425MzwpaLr7ZuaOJivZfxQh7uuFxiOpepwZWqWI8eG\n6RtYunpPy/oGDnYl6U0leeT+tXU0tFTJDMkqiYnL07xwNFfLeKlyRC3rGziwt4PeVJKdD2ym1kFf\nUhWZmZ3j1ZPn6UsP8cqJc8zOLT4auqmhjif3bKW3u5PU9jbqat2AJ600Q7Lumcmrs7x4LFfLOH16\njPlsYTmiOp7cnaAnlaTLQV9SlZmfzxLfHKdvYIjDcYTJq4s3KS9U7+nt7uTx3VtpaqgrU0slgSFZ\nd2l6Zo5XT56jfzCz5GxIfV0tj+9qpyeVzJcjctCXVD2y2SxnMpf4+vNv8J0X32LsYvHR0Lsf3Exv\ndydP7bV6j1RJDMm6bXPz8wyeHqM/neHIsRGmphfX6aytqSG1o42eriRP7knQ3OTHTFJ1GRmfpC+d\noW9giHfOXSm6/sDWDfR25/ZibHX/gVSRTC9alvlslpNnL9CXztUyvlhQpxNysyE9qSQH9nawaX1j\nGVopSeUzcWWaFwaH6UsPcfLsRNH1tpYmelNJers7eTCxwQ14UoUzJOuGcrcJ361lfG6i+Dbhwx0b\n6elOcnBvkvbN68rQSkkqn6vTc7x0fIS+dIaBJY6G3rCungN7O/jh9+6go6XRTcrSKmJIVpHM2JVr\nSynezBSXbOtoa6Y3X8vYOp2Sqs3s3Dzp0+fpG8jw4vERpmcW78VoqK/lsV1beTqV5D2P5I6GTiRa\nGBkprnssqXIZkgW8W8C+P53h9BIF7Ntamnhqbwc9qSTbO1u8TSipqmSzWU6eneD59BAvDA5zabLg\naOgaSG1ro7e7070Y0hrh3+IqdmlyhsNxmEPpDPHMOAX162lZ38CTexL0dCXZ83CrtwklVZ2zo5fp\nGxiiP51h9MJU0fUd97XQk+rkYFcHrRs9GvpOjOSP3PYAJVUaQ3KVmZqe5aXjo/TfYP1cU0MdT+ze\nSk8qyfuf2sb42OUytVSSyuP8xBSHBofpGxha8pTQhSVnvd2ddG5ZX4YWrh3PPn+aw3EEgAMhwU/9\n+KPlbZB0HUNyFZiZnee118/Rn87w8vFRpmcLaxnX8OgjuVrGj+16t4B9Q72HfUiqDlemZjgcR+gb\nGFryztqmDY0c7Org6e5Ol5zdIyPjk9cCMsDhOMKPnLuM1fRVKQzJa9T8fJZ4Zoz+wQyHj45wpeBk\np5oa2PtwG72pJPtDgvXrLGAvqbrMzM7xyolz9KUzvHpylNm5gjtrjXXs35OgtztJ1zZPCZWqjSF5\nDclms5x6Z4L+dIYXjg5z4dJ00XMeuX8TPV1JDnZ1sNn1c5KqzPx8lqNnxugbyHDk2DCTVxcfhlRX\nm7uz1tu9+M6a7r1EazMHQmLRcovO9g1WAVmDVuu6c0PyGnB25BJ9+VrGI+PFG0se2LqBnlSSg6kk\nHavsA1rNVuugIlWahaOhnx8Y4tBghvElJhD2PNRKb3eSA8GjoVfSR57ezsGuJOBYt1YVrjv/yNPb\ny9qe22FIXqVGxievlWx7a6R4c93WzevoSeWOPH2wY2MZWqi7sZoHFalSDI9dyR8NnWHofPHR0A91\nbKQ3leRgl4chlZPheO1aat35wa7kqvlvbkheRS5cnuaFwQz9g5kljzzdtKGRp/Z20JtK8sj9m9xY\nskqt9kFFKqeFcbIvneHU28XjZPumdfR2J+lNJXkg4QSCpBszJFe4K1MzHDk2Qn86w+AbY2QLtlw3\nN9WzPyToSSXZ+3CrG0skVZ3Jq7O5o6EHMqRPjzFfMFBubG7ITSB0J9n5wGZrvksrZKl156tpwseQ\nXIGmZ+Z45eQ5+gaG+N6pc0U7rhvzR572pJI8mj/yVGvHah9U1gLXg1e+2bl5Xjt1nr700JKlLRvr\na3l891Z6uzt5z44t1Nc5TkrlsJrXnRuSK8Ts3Dzp0+fpT2d48fgoV6eLd1x379hCTyrJE7u3sq7R\n/3Rr2WoeVFY714NXrvlslhNvXaAvneGFwQyXpxaXtqytqSG1vY3e7iRP7PZoaKlSrNbfY44gZTSf\nzXL8zXH60xkOxxEuTc4sul5Dbsd1TyrJgb3uuK42q3VQWc1cD16Z3hq5RN9AbqPyuYniCj47799E\nTyrJU11JNm9oLEMLJa1FhuR77Fa3aRdKEfWlhzg0OMzYxatFz9nW2XKtlvGWTatjx7W3pyXB8seC\nWz3v3IUp+gdzlSneGik+GjrRuo7ve/Q+elNJOtpKezT03Y5vI+OTzNXWepKctMoYku+hm92mHTp/\nhf50bsd1ZolSRInWdbz3PffRk0rSuaWyB/xC3p7WWuF68Luz3LHgRs+7NDnD4aPD9KUzHHtzvOh1\nmzc20tHazMXJGRrra6mrrSl5QL7b8W3h9Q31tTy2s93xUVpFDMl3YKmQudRt2j0PtXLybO4EvDcy\nxScINTfVMT+fZW4+y/TMHPV1NSUPyPc60Hp7WmuN68HvzI3GggULfVn4vP/+2hAzs/OcyVzie6fO\nMTe/eKNyc1Md+/fkKlO0b1rHf/j6wLVT8Eo93tzt+Ob4KK1uhuTrLGeG9VYhc25+nitTs1yenOUz\nv/ti0esXShGFh1v5+nOvMzo+RW1NDZNX53h+IFPRA75ULfw7cfvOT0wxMzu/qNrOs8+/wbE3x6ir\nq+XRHe188MkHgNyys6npOc5PTDE7l+Xrz51e9F71dTXs27mV3lSS+7duoKG+lkRr87UxWpJWQsWE\n5BBCLfAFYB9wFfjpGOPJe/kzFtaFnTgzlvuZD7cxMj7J+YkpXjkxyqunzgPwdHdyyRnWG4XMjc0N\nnHjrAlenZxk6XzyINzXWsX9PrpZx17Y26utqGRmfXBOHfXh7Wqpe/+UvTpIZvsiFy9OkT5/nytQc\n9fU1tLWso7G+lue+9w7z81mogXdGL3M4DtO6sZHM+UmuzswVvd+WliZ+/Pt3sK2zhfVN9RwazPBs\n3xvAu5MSKzne3O345vgorW4VE5KBnwAaY4zvDSH0AL+ef+yeWJgBHh67wvTMPHW1NbS2NDI9M8/l\nqVlm5+apramhrraGbx1565YzrNlslsmrs/zuN48Rz4wV1eisr6tl3852elNJ9u1sp7Fh8ZaNRGsz\nvakk3zryFlemZlm/rp6nu0s7q1uqAdvb01L1+fl/992iEmwANdMQHmrjjczFd5dOZCELjF6YYvRC\ncXWKBTNz8wydu8y3XzrLzOw8V6Zm2LyxCXh3UmKlx5u7/XkLr9+yZQN18/O3foGkilFJIfn7gD8B\niDH2hxAO3Ks3XpgBnrw6y9T0HGShpgZGxqaoq8vN5mazMJfNUltbw5WpWc5PTBUNiFs2NfFQYgMv\nnRjlytQs2SyMjL874NfUQGpbGz2pTp7ck2D9upt378LgeX5iii2b1q2KAf9GDMdS9fjTF84sGZAh\nN5Yee3OM2bkbB8LNGxrJArOz81y5mnuf2hqYmp7jxeOj1+obX5maZUNzQ9FBICs93tztz0u0NpNo\n38DISPHeFEmVq5JC8iZg4rrv50IItTHGopG2rW099fXLL6YzV1tLQ30tM7P5gbYmV4MYoKamJv91\nduESLesb2bW9nUT7BrLZLPGNMb7z0lv85StvM75Eybau7Vt43xMP8H2P3U9by+2VbEskWm7r+ffC\n7fzMcrRvNbKfls++qiy3O54CbLjFOHfh8sySj7esb+D7H7ufn/3rj/HVPzvOd158i7eGc+Xd6utq\naW6qo7mpnob63Ji9cX0uIDfU1/LeffeT2t1xW+2sNH72l8d+Wj77qrQqKSRPANf/114yIAOMjRWX\nULuZOuCxne0cjiOsa6xjemaempoaEm1NTM/kNtqta6yjsb6Olg0N9KaSvDM0wdf+7DiHBjNL3h58\nMLGRnlQHPV1JtuZnGWanZhiZWvqXw2qUSLQ487EM9tPy2VfLs5K/+G53PAV4794Ofn9d/Q1nkxfU\n1dZQX1/LhnX1HNjTwV858CCJ1mZGRy/xgX330f1wK99+8a1F+0GAa0vCPvjEA4vufK3mz46f/eWx\nn5bPvlqeuxlPKykkPwf8VeArIYRe4NV7+ebXrws7cfocsHjj3pZN6zg3McUrx0fpG8jw/3znVNF7\ndLQ2czCVpCeV5IGtG+5l8yRpVVg4KXR/6KA/nSnagFdbA+95JLcf44ndCSauTANLL1lItDbzN39w\nNx98cnFlIfc4SKoElRSSvwZ8OITwXP77j93rH7CwLuz6zRMN9bW8kbnEH3z7JK+/M1H0ms0bGzm4\nNxeMd9zXsiYqUkjS7Xpz+BJ9A0P0D2Y4P1G87GzXA5vp7U5yYG8Hm9a/ezR0ovHWQbcwDBuOJVWC\nignJMcYs8LMr8bMuT81wJI7Qn85w9I0xsgXXN6yrZ3/ooCeVJDzUSm2twVhS9Rm9MHntpNCzI5eL\nrj+UbOGpkCtvabCVtNZUTEgutavTc7x8YpSXT6Y5PJgpOtWpsaGWJ3Yn6OlK8p5HthTtppakanDx\nyjSH4wh9A0Mcf+tC0fW2liZ6upL0did5svs+RkcvlaGVklR6azokz87N89qp8/QPZnj5+GjR2rm6\n2hoefaSdg6kOntiVoKnx9nZ4S9JacHV6jpdOjNA/kOG1188vcTR0PQdCgt7uzkV311x+JmktW3Mh\neX4+S3xznP50hiNxuGj3dU0NhIda6e3O1TLe2NxQppZKUvn95jcGePFY8SRCfV0tj+1qpzfVyb6d\n7YuOm5akarAmQnI2m+X00EX60xkODWYYvzRd9Jwd922iJ5XkR75vB/PTNy9bJEnV4vmBzLWva4C9\n29ro7U6yf0/HLQ9EkqS1bFWPgGdHL18LxsNjk0XX79+6gZ6uDg6mkiTb1gPQvnl119qUpHttW2cL\nT6eSPNWVpK2lqdzNkaSKsCpD8n/te4P+dIY3h4s3jLRvWkdPvpbxg4kNrpmTpJv41Y/3cF+7dd8l\nqdCqDMlf/fOTi75vWd/AU3s76E11svOBTQZjSVomA7IkLa0mmy2sEixJkiRVN7crS5IkSQUMyZIk\nSVIBQ7IkSZJUwJAsSZIkFTAkS5IkSQUMyZIkSVKBVVkn+U6EEGqBLwD7gKvAT8cYT978VdUlhPAi\ncCH/7SngM8CXgXngNeDnYoxVWzMwhNAD/MsY4wdDCLtYom9CCB8HPgHMAp+OMT5btgaXSUE/PQF8\nAziev/yFGONXqr2fQggNwG8D24Am4NPAIKvkM+V4emuOpzfneLo8jqe3VsrxtJpmkn8CaIwxvhf4\nX4FfL3N7KkoIYR1AjPGD+X/+J+CzwDMxxvcBNcBHy9nGcgoh/Arwm+T+AsISfRNC6AR+Hngv8MPA\nZ0IIjeVob7ks0U/7gc9e97n6iv0EwE8CI/nPz48Anyc3Jq2Wz5Tj6U04nt6c4+nyOJ4uW8nG06qZ\nSQa+D/gTgBhjfwjhQJnbU2keA9aHEP4buc/FPwWejDF+N3/9j4EfAv6oTO0rtxPAXwN+J//9Un0z\nBzwXY5wBZkIIJ8jNtB1e6caWUWE/7Qf2hBA+Sm724xeBg9hPXwG+mv+6FphhdX2mHE9vzvH05hxP\nl8fxdHlKNp5W00zyJmDiuu/n8rcMlXMZ+LUY4w8DPwP8XsH1S8DmFW9VhYgx/iG52zMLrj/7/CK5\nvtnEu7dXr3+8aizRT/3AL8cY30/ulvOngBbsp8sxxkshhBZyA/w/Y/F4XOmfKcfTm3M8vQnH0+Vx\nPF2eUo6n1TSoTZD7MC2ojTHOl6sxFegY+YE8xngcOAckr7veAoyXoV2V6vrPziZyfVP4GWsBxlay\nURXoazHGlxa+Bp7AfgIghPAQ8GfAf4ox/j6r6zPleHpzjqe3ZzV99svJ8fQGSjWeVlNIfg74MYAQ\nQi/wanmbU3E+Rn5dYQjhfnIfnm+GEN6fv/6jwHdv8Npq9NISfXMI+IEQQlMIYTPQRW7DQDX7kxDC\nU/mvP0TutlbV91MIIQl8E/iVGOOX8w+vps+U4+nNOZ7entX02S8nx9MllHI8raY1yV8DPhxCeC7/\n/cfK2ZgK9FvAl0IICwP3x8jNfvxmfmF7mnfX/FSzhd3ov0RB3+R3zn4O+Aty/wP6TIxxukztLLeF\nfvoZ4PMhhBngHeAT+dti1d5Pz5C7zffJEMIn84/9AvC5VfKZcjy9OcfT5XE8XR7H05sr2Xhak81W\nbQUaSZIkaUnVtNxCkiRJWhZDsiRJklTAkCxJkiQVMCRLkiRJBQzJkiRJUgFDsiRJklTAkKyqFEL4\nQAjhG3f42gMhhG/f6zZJ0mrkeKq1ypAsSZIkFaimE/ekQveFEL4JdALPA/8z8MPA/0bufyBPAf8w\nxjgcQvgw8FngKjAAEELYCfxZjHFb/vv3A/9LjPHHVvxPIknl5XiqNceZZFWz3cDHY4z7yB1p+Qzw\nH4CPxhgfA54D/vf8sZb/EfhbMcYDwASQjTGeBF4PIXww/37/I/Cllf5DSFIFcDzVmmNIVjX7Vozx\njfzXv0furPf+GOOZ/GP/J/BXgEeBd2KM6fzjvwXU5L/+beDvhRCagR8E/mhFWi5JlcXxVGuOIVnV\nbPa6r2uBLO8O1guP1S/x+Nx1X38V+DDwPwDPxhhnStNUSapojqdacwzJqmYfCCHcH0KoBf4+8K+A\n3hDCtvz1TwB/BrwKdIQQnsg//ncW3iDGeAX4Y+BfAF9eqYZLUoVxPNWaY0hWtcqS2zDyu+QG7TeB\nf0NuIP9aCOE14H3Az8QYZ4G/BXwphHAEaMu/fsH/DUzEGF9YwfZLUqVwPNWaVJPNZm/9LElLCiHU\nAb8KDMUY/1252yNJq5XjqSqNJeCku3MYGAZ+vNwNkaRVzvFUFcWZZEmSJKmAa5IlSZKkAoZkSZIk\nqYAhWZIkSSpgSJYkSZIKGJIlSZKkAoZkSZIkqcD/D0z520kMPJInAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# col='universe' subsets the data by universe and creates two separate plots\n", + "sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe')\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The line looks pretty similar between the two plots, despite the fact that they used separate samples of data. In both cases, we would predict a brain weight of about 45.\n", + "\n", + "It's easier to see the degree of similarity by placing them on the same plot:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYwAAAFhCAYAAABj450WAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xt0XNd93v3vAAPiRpDEZYgZUbzoQm5eABIkhiRIxZIt\n21Ecr1Rt2hW3SePaba3ar53W63WW26WkznrfV6mTJnJdp5bTOraVpF6JLVWyw8iW5FiSKZEYkAPe\nAF427/cZYHC/XwYz7x8zpDAEOTgEORgA83zW0iIw+5zhxtbwPDj7nN/Zrng8joiIyHTyst0BERGZ\nHxQYIiLiiAJDREQcUWCIiIgjCgwREXFEgSEiIo64M/XGxpgC4LvAaqAQeA64Cvw9cDq52QvW2peM\nMZ8BngGiwHPW2tcy1S8REZkZV6bqMIwxnwI2W2v/b2NMOXAU+H+Apdbar03azgu8CdQDxcB7gN9a\nO5aRjomIyIxk7AwDeAl4Ofl1HjBOIhSMMeZp4AzwRWAHsM9aOw6MG2POApuBYAb7JiIidylj1zCs\ntYPW2gFjTBmJ8Pg94ADwu9baJ4DzwB8AZUDvpF37gaWZ6peIiMxMJs8wMMasBF4Bvmmt/VtjzFJr\n7Y1weBX4M2AvidC4oQzoTve+0ehE3O3Oz0SXRUQyyZXtDtyLTF70riZxbeL/sta+nXz5dWPMv7fW\nHgQ+QmLa6QDwh8aYQqAI2AC0pnvv7u6hGffL4ykjEumf8f4LncYnPY1Pehqf9Dyesuk3msMyeYbx\nLImppa8YY76SfO2LwH8zxowDIeCZ5LTVN4B3SUyRPasL3iIic0/G7pLKpEikf8ad1m9A6Wl80tP4\npKfxSc/jKZvXU1Iq3BMREUcUGCIi4ogCQ0REHFFgiIiIIwoMERFxRIEhIiKOKDBERMQRBYaIiDii\nwBAREUcUGCIi4ogCQ0REHFFgiIiIIwoMERFxRIEhIiKOKDBERMQRBYaIiDiiwBAREUcUGCIi4ogC\nQ0REHFFgiIiIIwoMERFxRIEhIiKOKDBERMQRBYaIiDiiwBAREUcUGCIi4ogCQ0REHFFgiIiIIwoM\nERFxRIEhIiKOKDBERMQRBYaIiDiiwBAREUcUGCIi4ogCQ0REHFFgiIiIIwoMERFxRIEhIiKOKDBE\nRMQRBYaIiDiiwBAREUcUGCIi4ogCQ0REHFFgiIiIIwoMERFxRIEhIiKOKDBERMQRBYaIiDiiwBAR\nEUcUGCIi4ogCQ0REHHFn6o2NMQXAd4HVQCHwHHASeBGIAa3A5621cWPMZ4BngCjwnLX2tUz1S0RE\nZiaTZxi/BUSstY8DvwJ8E3geeDb5mgt42hjjBX4H2A08BXzVGLMog/0SEZEZyNgZBvAS8HLy6zxg\nHNhmrd2bfO2nwC8DE8A+a+04MG6MOQtsBoIZ7JuIiNyljAWGtXYQwBhTRiI8fh/400mb9ANLgSVA\n721ev6Py8hLc7vwZ983jKZvxvrlA45Oexic9jc/ClckzDIwxK4FXgG9aa//GGPNfJzUvAXqAPmDy\nJ6wM6E73vt3dQzPuk8dTRiTSP+P9FzqNT3oan/Q0PunN9zDN2DUMY0w18CbwZWvti8mXDxtjnkh+\n/TFgL3AA+IAxptAYsxTYQOKCuIiIzCGZPMN4lsTU0leMMV9JvvYfgG8kL2qfAF5O3iX1DeBdEgH2\nrLV2LIP9EhGRGXDF4/Fs9+GuRSL9M+60TpnT0/ikp/FJT+OTnsdT5sp2H+6FCvdERMQRBYaIiDii\nwBCRnNMx3EXHcFe2uzHvZPS2WhGRueaNi29xJNICQJ2nlqfWPJnlHs0fOsMQkZzRMdx1MywAjkRa\ndKZxFxQYIiLiiAJDRHJGVXEFdZ7am9/XeWqpKq7IYo/mF13DEJGc8tSaJ6mvrgNQWNwlBYaI5BwF\nxcxoSkpERBxRYIiIiCMKDBERcUSBISIijigwRETEEQWGiIg4osAQERFHFBgiIuKIAkNERBxRYIiI\niCMKDBERcUSBISIijigwRETEEQWGiIg4osAQERFHFBgiIuKIAkNERBxRYIiIiCMKDBERcUSBISIi\njigwRETEEQWGiIg4osAQERFHFBgiIuKIAkNERBxRYIiIiCMKDBERcUSBISIijigwRETEEQWGiIg4\nosAQkXkn0jNMpGc4293IOe5sd0BE5G681niRoI0A4DcePr5rTVb7k0t0hiEi80akZ/hmWAAEbURn\nGrNIgSEiIo4oMERk3vAsK8ZvPDe/9xsPnmXFWexRbtE1DBGZVz6+aw07NlQDKCxmmQJDROYdBUV2\naEpKREQcUWCIiIgjCgwREXFEgSEiIo5k/KK3MWYn8EfW2g8ZY7YCe4AzyeYXrLUvGWM+AzwDRIHn\nrLWvZbpfIiJydzIaGMaYLwP/EhhIvlQPfM1a+7VJ23iB30m2FQPvGWN+Zq0dy2TfRETk7mT6DOMs\n8OvAXye/rwfWGWOeJnGW8UVgB7DPWjsOjBtjzgKbgWCG+yYiIncho9cwrLWvkJhmuqEJ+F1r7RPA\neeAPgDKgd9I2/cDSTPZLRETu3mwX7r1qrb0RDq8CfwbsJREaN5QB3enepLy8BLc7f8ad8HjKpt8o\nh2l80tP4pKfxWbhmOzBeN8b8e2vtQeAjJKadDgB/aIwpBIqADUBrujfp7h6acQc8njIikf4Z77/Q\naXzS0/ikp/FJb76H6WwFRjz552eBbxpjxoEQ8Iy1dsAY8w3gXRJTZM/qgreIyNzjisfj0281x0Qi\n/TPutH4DSk/jk57GJz2NT3oeT5kr2324FyrcExERRxQYIiLiiAJDREQcUWCIiIgjCgwREXFEgSEi\nIo4oMERExBEFhoiIOKLAEBERRxQYIiLiiAJDREQcUWCIiIgjCgwREXFEgSEiIo4oMERExBEFhoiI\nOKLAEBERRxQYIiLiiAJDREQcUWCIiIgjCgwREXHEPd0GxphPAX8KVEx6OW6tzc9Up0REZO6ZNjCA\nPwA+CBy31sYz2x0REZmrnATGVWtta8Z7IiIic5qTwGg2xrwMvAmMJl+LW2v/KnPdEhGRucZJYCwD\nBoBdye9dQBxQYIiI5JBpA8Na+6lZ6IeIiKRhjPlLa+2/ymYf7hgYxpjXrLUfN8ZcuE1z3Fr7cAb7\nJSIik2Q7LCD9GcZnkn9+6DZtultKROQ+SJYuVFtr/9gY80HgPwHFQAewDnjeWvuiMeYU8EvAq9ba\nDyT33Q88BfwT4LPJt3zBWvu/jTHvAG0kLim0Av8UKAD+2Fr7ijHmk7fuM11f7xgY1trryS/DwK8C\npSSuX+QDDwFfmX4oRERkGvFbvo4DK4EPAx7gJ8CLJGZ2OowxXcaYh4AS4BywCPgCievMLmCvMebv\nk+/zgrX2F8aYRuCfAz3AR40xVbfbx1rbk66jTi56v0Ii7dYCe4HHgR872E9ERO7OjadvWGttFAgZ\nY4pu2eavgN8kERh/BTwMPAj8Q7J9MbD6xvsk//x3wHOAj0T4PHSbfVaRCJRpO5eOAZ4EXgX+BNiR\nfGMREbl3I8CK5Nd1DrbfA3yExPTUPwCXgNPW2g+ROFb/DXDj2nMs+ee/Bv4N8DHg94GLt9nn4nR/\nsZPAaEtWeJ8CNienqrwO9hMRkem9CWw1xrwNPJp87dZpqpustWPASSBgrY1ba9uBvzbGvAcEgVJr\nbd8tf8dp4D3gZ8CfW2sjDvaZwhWPp79+bYz5NokE/BbwfeCHwL+w1m6e7s0zJRLpn/FFd4+njEik\n/352Z0HR+KSn8UlP45Oex1PmynYf7oWTM4zPAT+01p4g8VwpL4n5MxERySFOLnofsNZuA7DW/h3w\nd5ntkoiIzEWOrmEYYx43xhRmvDciIjJnOTnD8APvABhj4iSfJaX1MEREcouTwFhBour7w8A4idu4\nvpPJTomIyNzjJDD+DFgKfI/EFNYngU3AFzPYLxERmWOcBMauybfQGmP2AMcy1yUREck0Y8xO4I+S\nxXuOOAmMsDFmtbX2UvJ7L9A+kw6KiMjd+7Uv/XgpsAa4vOf5p7vv9f2MMV8G/iWJBxM6lu7x5nuS\nX1YAx4wxPweiJNf3nlk3RUTkbvzal378CPA/SSxm1/9rX/rxF/Y8//S9HoPPAr8O/PXd7JTuDOP5\nO7z+Anq8uYjIbPkUibAAKCPxXKgv3csbJh9vvuZu90v3ePN37qVDIiJyX8Ru+T5rv7A7KdwTEZHs\n+S7vXzfuIjE9lRUKDBGROWzP809fAv4ZiQWQ/sme558+cx/f/q7OVpzcJSUiIlm05/mnh0hcqL5v\nrLUXgd13s4/OMERExBEFhoiIOKLAEBERRzJ+DWNy+bkx5lESC5DHgFbg89bauDHmM8AzJAoDn7PW\nvpbpfolIdkR6hgHwLCvOck/kbmX0DCNZfv5t4MZaGl8DnrXWPk7iMelPG2O8wO+QuPjyFPBVY8yi\nTPZLRLLjtcaLvPCjVl74USuvNV7Mcm/kbmV6SupG+fmNdWy3WWv3Jr/+KfARYDuwz1o7nlyE/CyQ\ntfXCRSQzIj3DBG3k5vdBG7l5tiHzQ0anpG5Tfj55AfR+Eo9NXwL03ub1OyovL8Htnvn6TR5P2Yz3\nzQUan/Q0PundaXwm8vIocKf+jlpRUYqnsnQ2uiWTGGMKSBQEriYxA/SctXZP+r1mvw5jcon7EqAH\n6CPxfJQbyoC0T2Ps7h6acQc8njIikf4Z77/QaXzS0/ikl2588oEtj1TePMvwGw/5sVhOjedMf9n4\njR987ubTan/4iW/d89Nqgd8CItba3zbGlANHgDkXGIeNMU9Ya38BfAz4OXAA+MPkmuFFwAYSF8RF\nZIH5+K417NhQDeiit1O/8YPPpTyt9jd+8Lkv/PAT37rXp9W+BLyc/DqPxA1H05qtwLhRfv4l4NvJ\ni9ongJeTd0l9A3iXRMeftdaOzVK/RGSWKSju2qe4/0+rHQQwxpSRCI/fc7JfxgNjcvm5tfYMifU0\nbt3mL4C/yHRfRETmoYw8rdYYsxJ4BfimtfZvneyjwj0Rkbntvj+t1hhTDbwJfNla+6LT/RQYIiJz\n2A8/8a2Up9X+8BPfuh9Pq32WxN2oXzHGvJ38r2i6nVzx+PxbPC8S6Z9xp3WXS3oan/Q0PulpfNLz\neMpc0281d+kMQ0REHFFgiIiIIwoMEZEM6xju5ED4ULa7cc+04p6ISAaMREc5HGkhEDrI2Z4LAHy8\n9oks9+reKDBERO6TWDzGuZ4LBELNHIocY2xiYdUgKzBERO5R53AXTeFmAqFmOke6UtryXHnUVm1k\nl8+fpd7dPwoMEZEZGJ0Y40h7C4FQkNM956a0P7j4ARp8fvzVdZQtWpyFHt5/CgwREYfi8Tjnei/S\nFApyqP0YIxOjKe2LC0rZ7t3KTq+flWUP3Hx9PBoj3DU07x+Nr8AQEZlG90gPTeFmmkLNtA93pLTl\nufLYVLmeXT4/myrX485LHFbj8TgXQv3saw1x4EQbgyNR9jz/dDa6f98oMEREbmNsYpyjkVYCoSC2\n+yzxW57590Cpl10+P37vVpYsev/MoatvhMbjYfa3hgl1znztnrlIgSEikhSPx7nYd5nGUJDmtqOM\nTIyktJe6S6ivrmOXz8/KshW4XIknfYyOTdB8up19LWFOXeqe8jjZ6ooSHqvxztJPkTkKDBHJeT2j\nvRwIHSIQDtI2FElpy3PlsbFiHQ2+7dRUbaAgOeUUi8exl7rZ1xoiaCOMjk2k7FdS6GbHxmoeq/Hy\n8ANLbobLfKbAEJGcND4xzrGOEwTCQU52np4y5eQtWU6Dz88O7zaWFi65+Xpb9xD7WsI0tobp7Es9\nA8lzuah5uILHan3UPVpJgTt/Vn6W2aLAEJGcEY/Hudx/lcZQkGDbEYajwyntxe5i/NV1NPjqWV22\n8uZZwdDIOAdOtbO/JczZa71T3nfl8sU8VuNl5yYvS0sXzcrPkg0KDBFZ8HpH+znYdojGUJDwYFtK\nmwsX6yvWssvnZ3PVJgryCwCYiMU4fr6L/a0hDp3uIDqRuvDdktJFNGysZneNl1XV8/t2WacUGCKy\nIEVjUVo6ThIIBTnRZYnFUw/41SUeGrx+dvi2saxw6c3Xr7YPsK81ROB4G72DqY/2cOe7qFvr4bEa\nLzUPV5Cfl1vPb1VgiMiCEY/HuTpwPTnldJjB8dTbWovyi6iv3kKDz89DS1bdnHLqGxwjcKKN/a0h\nLrcNTHnfR1YsYXeNjx0bllNaVDArP8tcpMAQkXmvf2yAg22HCYSCXBsIpbS5cGHKH2Wnr546Tw2L\n8hPXGMajMY6ejbC/NUzL+U4mYqkXvSuWFLK7xsvuGh/eipJZ+1nmMgWGiMxLE7EJWjtPEgg109p5\ncsqUU1VxJQ1ePzt926goKgeSj/a43sv+ljAHTiaqrycrLMin3iSmnMzqcvIWwK2w95MCQ0TmlWsD\nIRpDBzkYPszA+GBKW2H+IrYtT0w5PbJ0zc0ppxvV1/tawoS7UqepXIBZtYzHan3UGw9Fi3RYvBON\njIjMeQNjgwTbjhAIHeTKwPUp7euWPUKDz0/d8loKk1NOTquvd23yUrm0aBZ+ivlPgSEic9JEbIIT\nXZZAqJmWjhNMxFMrqSuLytnp89PgraeyuAJIVF+fyrHq69mkwBCROeX6QJhAOMiB8CH6x1LvWFqU\nV8DW5Ztp8Pl5dNlD5LkSt7W2dQ+xvyVM4/EwHb1Tq69rH65g9wKtvp5NCgwRybrB8SGa244QCDVz\nqf/KlPZHlz1Eg9fP1uW1FLkT00eJ6utQzldfzyYFhohkRSwe42TXaQKhIMcix4neMuVUXriMBl89\nO71+PCWVQKL6+ti5Dva3hlV9nQUKDBGZVW2D7TSGElNOvWN9KW0FeW7qPLU0+PysK3/k5pST0+rr\nTQ9V4M7Prerr2aTAEJGMGxof5lD7UQKhIBf6Lk9pf3jpahq8frZVb6bYXQxMqr5uCXG5/TbV1w8s\nYXetqq9nkwJDRDIiFo9hu84SCAc5GmllPJZaJLescCk7vNto8NZTXbocSFRfB0+1p62+3rXJy+4a\nL77K0ln7WSRBgSEi91X7UIRAqJmmcDM9o6kXo915brZUbaLB52d9xVryXHnvV1+3hm+ufT1ZYUE+\nfuNhd60Ps2qZqq+zSIEhIvdsODrC4fZjBI8dxnacm9K+eslKdvn81C+vo6QgMeWUbu1rF7B+dTmP\n1XrZtk7V13OF/i+IyIzE4jHOdJ8nEA5ypL2Fsdh4SvuSRWXs9Naz01ePr7QaSFRfN7aG2dca4uRF\nVV/PNwoMEbkrHcOdN6ecuka6U9rceW5qKzfQ4POzoWId+Xn5qr5eQBQYIjKtkegohyMtNIWCnOk5\nP6V9VdkKdvr8/MrGX2KkL3He0NY1xL7WO699XZtc+3qLqq/nDQWGiNxWPB7nbM8FAqEghyLHGJtI\nrX8oK1jMdu9WGnx+Viz2AeCKFfLOkXOqvl6gFBgikqJzuJsD4WYCoSAdI10pbXmuPGqrNrLL52dj\nhSE/L/9m9fW+ljBHznYwHlX19UKlwBARxibGONzeQiDczOnus1PaVyz2scu3HX91HWWLFgPTVV/n\nsXVtFbtzdO3rhUqBIfNWx3Dit9+q5KOt5e7E43HO914iEDrIofZjjEyMprSXFpSwvXorDb7trCx7\nAIC+oTF+dvQK++6w9vX61eXsWL+c7aq+XpAUGDIvvXHxLY5EWgCo89Ty1Jons9yj+aN7pIem8CGa\nQkHahztS2vJceWyqXE+Dz09N5Xrcee5pq68rlxSyq8bH7hovtaaaSKR/Nn8cmUUKDJl3Ooa7boYF\nwJFIC/XVdTrTSGNsYpxjkVYaQ0Fs91nit1RAPFDqpcHnZ7t3K0sWlRGPx7kQ6mdfa0jV13KTAkNk\ngYrH41zsu0xjKEhz21FGJlJvbS1xF+Ov3kqDr55VZQ/icrno6hvhteaLaauvd9d4tfZ1jtL/cZl3\nqoorqPPUpkxJ6ezifT2jvRwIHyIQaqZtqD2lzYWLjZWGBp+f2qqNFOS5E9XXx8Na+1qmpcCQeemp\nNU9SX10H6KI3wPjEOMc6ThAIBznZeXrKlFN1yXJ2JaeclhUuJRaPc/pyz4KuvtZNEfefAkPmrVw/\nEMTjcS73XyUQaibYdpih6HBKe7G7iPrqOhq8ftYsWYnL5aKte4hXms7fsfq6Jll9Pd/XvtZNEZmh\nwBCZZ3pH+znYdohAKEhosC2lzYWL9RVrafD52Vy1iUX5BQyNjPOLo9dzpvpaN0VkjgJDZB6IxqK0\ndpykMRTkRJclFk+tpl5eXMVOn5+d3m2UFy1jIhbj+IVu9reG0q59/Vitj5XLF8/mjyLzmAJDZA67\n0n+dQOggB9sOMzieetdSUX4h25ZvocHn5+Glq3G5XFxtH+DN/WemXft6IVdf66aIzFFgiMwx/WMD\nHGw7TCAU5NpAKKXNhYt15Y/Q4PNT56lhUf4i+gbH+FnwKvvvUH39yIolPFbjy6nqa90UkRlZCQxj\nzCHgxmTqeeCrwItADGgFPm+tvfXuPpEFayI2QWvnKZpCQVo6T06ZcqoqqqDB52eHt57K4nLGozGO\nnumYpvray+4aH96Kktn8UeYMBcX9N+uBYYwpArDWfmjSa38HPGut3WuM+RbwNPCj2e6byGy7NhAi\nEApyIHyIgfHBlLZF+YvYtnwzDV4/jy57CIDzoT5+stdy4KSqr2X2ZeMMYwtQYox5I/n3/x6wzVq7\nN9n+U+CXUWDIAjUwPkgwfIRAOMiV/mtT2tcuezg55VRLkbuQrr4RfhK4xL6WMOEuVV9L9mTj0zUI\n/Im19jvGmLXA67e0DwBLZ79bIpkzEZvgZNdpGkNBWjpOMBFPLZSrLCq/uf51VXElo2MTHDoV0drX\nMqdkIzBOA2cBrLVnjDGdwNZJ7WVAT7o3KC8vwX0PRUUejxZxSUfjk97djM/VvhDvXGhk78Umekb6\nUtoK8xex88GtfPChXWxcvhbiLo6f7+T7+8+w/9h1hkdTQ2VxcQEf2LqCD/tXsm5V+ZytvtbnZ+HK\nRmB8GtgMfN4Y8wCJgHjTGPOEtfYXwMeAn6d7g+7uoXTNaXk8ZXr8choan/ScjM/Q+BDBtqMEwkEu\n9V2Z0v7I0jU0+LazbXktRe4i2rqH+Iv3Wmg8Hqaj19na1x0dU++Gmgv0+UlvvodpNgLjO8D3jDE3\nrll8GugEvm2MWQScAF7OQr9EZiwWj3Gy6wxNoSBHO44TjaVekC4vXMZOXz07vdtYXuJhaGScQGv7\nHauvVy1fzO4FVH0tC8OsB4a1Ngr89m2aPjjLXRG5Z22D7QTCzTSFmukdS51yKshzU+eppcHnZ135\nI8TjcPxCF6+0tqr6WuYl3VIhcpeGo8McajtGYyjIhb5LU9ofWrKaXT4/26o3U+wu5mr7AC+9fS6n\nq69lYVBgiDgQi8c43X2Ovzl3lKYrhxmPjae0L120hJ2+ehq89VSXLqdvcIx3D7ep+loWFAWGSBrt\nQx00hYI0hQ/RPZp68547z82Wqk3s9NWzoWIdExNw9GwHP2g9puprWZAUGCK3GImOcKi9hUDoIOd6\nL05pX71kJQ1eP/7qLRS7i7kQ6uf7Pzujta9lwVNgiJCYcjrbc55AqJnD7ccYu2XKacmiMnZ4t/Gx\njY9TNFZGV98IbwfDade+fqzWy7Z1qr6WhUOfZMlpHcNdySmnZjpHulPa8l351FZtZJfPz4aKdUSj\ncOZsP6/vP6zqa8lJCgzJOaMTYxxuP0YgFORMz/kp7avKVrDT68fvraPEXYK93MOLTXbBrn0t4pQC\nQ3JCPB7nXO9FGkMHOdx+jNGJ1NtbywoWs927lQafnxWLfbR1DfFmY3jBr30tcjcUGLKgdY100xQ6\nRCAcpGO4M6Utz5VHbeUGGnx+NlWuZ3QsxoFT7fxlS/Md177+5YY11KxepupryUkKDFlwxibGOBJp\npSnUjO0+S/yWqw0rFvto8PnZXr2VEncJxy908b/2neTwmTtXX++u8bKqumxWn5XUMdwFaCEgmTsU\nGOLYXD6AxeNxLvRdIhAK0tx2jJGJ1Gmk0oIStlcnppxWlq3gavsAP3kvdIfq6zzq1lZltfr6jYtv\npaxJ/dSaJ2e9DyK3UmCII3P1ANY90sOBcGLKqX2oI6Utz5XHxgrDLp+fmqoNDA3HaDrRxndaD8zp\n6uuO4a6bYw1wJNJCfXXdnAxqyS0KDJnWXDuAjU2Mc6zjOIFQkFNdZ6ZMOflKq5NTTtsoyS/l6NkO\nXth7Ik31tY/dNV5VX4tMQ4Eh80I8HudS/xUaQ0Ga244wHE2dcipxF+Ov3kqDr56Vi1dwIdzP3/3i\n+rysvq4qrqDOU5tyRqezC5kLFBgyrWwewHpH+xJTTqEg4aH2lDYXLjZUrqPB62dz1Ub6BydoPB7m\nf7YcmPdrXz+15knqq+uAuXnNSHLT3P5XI3PGbB7AxmNRWjpOEAgFOdFpp0w5VZd4aPD52eHdRrFr\nMc2n2/n6W62cunSb6uvyYnbX+tg9D6uvFRQy1ygwxLFMHsDi8ThX+q8RCAcJho8wGE09Qyh2F1G/\nfAsNvu2sKnuQ01d6+T//cE3V1yKzSIEhWdU31s/B8GECoSDXB8MpbS5crK9YS4PPz+aqTXT3jrPv\naJgXWgO3rb5+f+3rKgrcWohI5H5TYMisi8aitHacJBAOcrzTEounFsstL65ip8/PTu82CinlwKl2\n/vTNY1r7WiTLFBgya670XyMQCnKw7TCD46lTTkX5hWxbvoUGn5/VZSs5cbGbv339atrq64Ww9nWk\nZxgAz7LiLPdEZHoKDMmo/rEBgm1HaAwd5NpAKKXNhYt15Y/Q4PNT56mhrXOM/YdC/I/jjTmx9vVr\njRcJ2ggAfuPh47vWZLU/ItNRYMh9NxGb4HjnKQKhIC2dJ6dMOVUVVSTvcqqnIFZK4EQb/+UnR7jc\nfvvq6901PnYssLWvIz3DN8MCIGgj7NhQrTMNmdMUGHLfXBsIJaacwofpH089+C/KX8Q2z+bElNPi\n1Rw718n3X7uita9F5hEFhtyTgfFBgm1HaAoFudx/bUr72mUPJ6acqmq4Fhll/4Ew3zi577bV1/Um\nMeVkVpfXN0uQAAAPfElEQVTPuerr+82zrBi/8aRMSensQuY6BYbctYnYBCe7TiemnDpOEI2n1kFU\nFJWz01tPg6+evPFSGo+H+X/3HLlj9XWurn398V1r2LGhGtBFb5kfcutfqNyT8GAbjaEgB8KH6BtL\nXROiIK+ArctrafD6WVW6msNnOvjejy7fvvpaa1/fpKCQ+USBIWkNjQ/T3H6ExlCQS31XprQ/vHQN\nu3x+tnhquXJ9hPcaQwTtflVfiyxACgyZIhaPcarrDIFQkKMdx4nGUq83LCtcSoO3np2+euKjpexr\nCfPqjw6r+lpkgVNgyE1tg+38LPRz3jkfoGc0taq6IM/NFk8Nu3zbebB4FUHbwV/sv3zHta8fU/W1\nyIKjwMhxw9ERDrUdpTEU5ELfpSntDy1ZzU5fPXVVtVy4Osw774Y5dLpx2rWvRWThUWDkoFg8xunu\ncwRCQY5EWhmPjae0L120hJ2+enZ664kOlrCvNcQrrxzOieprEbkzBUYOiQx10hQOEgg10z3ak9Lm\nduWz2bOJX1n/OKUjyzlwMsKf7704p9e+FpHZpcBY4EaiIxxub6ExFORc74Up7avLVtLgq2dz5WbO\nXhpiz086aD51TtXXIjKFAmMBisVjnO25QCAU5HCkhbGJ1KmkskWL2eHdRoO3nuG+Eva3hnnpxKE7\nr32dI9XXIpKeAmMB6RjuoikUpCncTOdId0pbviuf2qoNNPj8eAtWc+BEhG++fYlQ5y3V1y5Yv2r+\nrH2daR3DXYCWSxUBBca8NzoxxpH2FgKhIKd7zk1pX7n4ARp826mtqMVeGOSNfwhz8mLTHauvP/74\nI7iiE1PeJxe9cfEtjkRaAKjz1PLUmiez3COR7FJgzEPxeJxzvRcJhIIcaj/K6C1TTosLStnh3cZ2\n7zYGu0rYfyzED+zhKdXXpUVudmxI3Ap7o/raU15CJJL62I9c1DHcdTMsAI5EWqivrsODbhmW3KXA\nmEe6RrppCjUTCAXpGOlKactz5VFTmZhy8uStInA8wp/97JKqr0XkvlFgzHFjE2McibQmppy6zxG/\nZTJpxWIfDT4/NUtrOHF+iNdeD3P22sEp76Pq67tTVVxBnac2ZUpK1zEk1ykw5qB4PM6FvssEQgdp\nbjvGyETqWUJpQQnbq7eyvXobvZEiGg+18benjy7ota+z4ak1T1JfXQdk7qK31vSefbqRYeYUGHNI\nz2hvYsopHKR9qCOlLc+Vx8YKQ4PPz7LYSpqOR/j6G5fou0319da1Hh6r9bLpIVVf36tMHlS0pvfs\n040M90aBkWXjE+Mc6zhOYyjIqa4zU6acfKXVNPj8bCir4fjZIX789yEutx+a8j4Lde3rhUpres++\nO93IoDMN5xQYWRCPx7nUf4VAqJlg2xGGo8Mp7cXuYrZX1+FfXk9XuJDGA2384PyxO1Rf+3isxku1\nqq9FJMMUGLOod7SPA+FDBMLNhAfbUtpcuNhQuY4Gbz2Lx1dy4HgHX//pxTtXX9f6MKuWqfp6ntKa\n3rOvqriCtWXrOdFzkoJ8l25kmAEFRoaNx6K0dJwgEApyotNOmXKqLvHQ4POzrnQTx88M8X9+HCbc\ndTRlmxtrX6v6emHRmt6z67XGi7TYCiby6zAPV/DUms3Z7tK8oyNPBsTjca70XyMQDhIMH2Ewmvr4\njaL8Iuqrt1BftY2OUCH797fxg0utWvs6BykoZsfka0b5E6WcODNKZNOwxv8uKTDuowuRCMe6jtHa\nc5Trg+GUNhcuTPmj7PT5KRleQdOJDr7+k8t3rr6u9fKw7+7Wvr7X2wU7hruID4zionDabXU7qEju\nyfnAcHqQvdN20ViU1s5T/Pj4XtonLoEr9TzBU1xJbdUmVi5ax9VLbl5qDNPZ15qyTZ7LxeZHKtld\n451x9bWT2wXTHeRv7O9251NTvjHt7Ya6HVTmG10zuj9yOjCc3pM9ebu1yx7h8Qd3MxwdoSkU5GDb\nYQbGBxMbJk8GXDE3dZ7N7PL5efvYJX5+ZIiR3qtT3tedn0dJkZsPbPbyT594dMY/h5PbBdMd5O/m\ndkPdDirzla4Z3bucDYw7HSRvuHGwnLxd53APV/vf452r+5iIT32ia8HIchYNeYn1VDPQvZz//uYV\nohMuoPTmNotL3Gx91MORMxFGx2OMjEbZ1xLm8S0rMvYh1kFeJEGf+XszZwLDGJMHvABsBkaBf2ut\nnfq87vvkYu9lRqKjuPMSQ+DOy+fHp9/k0sAlCt0FbKg0PL5iFxOxCYaiw/SM9BK9ERKTZp0qiypo\n8NUTPltO8Mo1+vsLiUfz6erovLmNKy/G4qo+lvh6+MLjT9PTmUfTifdvqx0aidLVNzLjD/O9Pvfo\nbvbXqb1I7pozgQH8Y2CRtXa3MWYn8Hzytftmj32bjsP9XB48S9d4hGh8Ahcu3Hlu8mKFXI5fB+Lg\ngvBgG4HrB4nGo1MeH34jMMryKqmL/yP2v9XD9Ugf3PLo69W+UqpWDNJbcpL8ghh1nlqqSyvJGx+m\npMjNULLGoqTITcWSe7sLKt1zj5wc5G/sX1lRims4/UVvndqL5Ka5FBiPAa8DWGubjDH++/nmX3zr\nPzMWH735/Y17j2LEGRt2QcEQuOKJ1+MQc8Wn3A5LHOJxiHV7iHasZLjPw9/HQymbuIvGWOrtYYmv\nm8/t+ARVxRV0DKceyD3Livlw/YMEkmcZDRvvz/RQurMKJwf5quIKPIvLiAxPvx6GgkIk98ylwFgC\n9E36fsIYk2etjd1pB6f22LcZnxQWkDKrRDwvhsuV/GtuuYs135XPLz2wk46uCY6cHCDa6YWJ1Gc1\nufInKPP0kV91jfKqKAX5+SnTOrc7kGfjt3Qd5EXkXsylwLh1TueOYVFeXoLbne/4jUuupl//Ia8g\nOuU1Fy6WuT14x/y0vFfCtcgAUD5pizgbHl5GX+kJypb3ke+OA3l8su43qSopZ/niqmn75fHMzdXb\n5mq/5gqNT3oan4VrLgXGPuDXgJeMMQ3AsTtt2N09dKem2/rwg4+x5/TrqVNSt6mHc0WLyM9zUTT4\nIPHONYTa87lODBi4uY2nvJD6DRV8pO4hKpYU8cbFXo5EuohGExeLPS4vDONoWmcu8njKtERrGhqf\n9DQ+6c33MJ1LgfEq8FFjzL7k95++H28ai8c41XWGzcvXc7i9hRipJy2L3WVsqdxCVXQtZ85HaTnf\nSf946ja3W/v6htlYZEdEZC6YM4FhrY0Dn7tf79c2FCEQCnIgfIie0d6UNneemzpPDaa0htClEgK/\naKezL/Xi9d2sfa2gEJFcMGcC434Yjo5wqP0ogVCQ872XprQ/tGQVv7Smgb7LFQQPdfPutY4p22jt\naxGR25v3gRGLxzjdfY5AqJkjkRbGY+Mp7UsXleGv3kblxKOcODXO997pYDzal7KN1r4WEZnevA2M\nyFAnTeEggVAz3aM9KW1uVz6bPZt4tHgToUslvPt6hN7Ba6nb5LuoW+vhsRovNQ9r7WsRkenMy8D4\nb4e+xdmeC1NeX1X2IHWVWxnv8BI80M2+9m6gO2Wb9avL2bF+Odu19rWIyF2Zl4ExOSzKFi3Gv3wb\nS0cf4qSd4OW3O5mIXUnZfvLa1zWmWrf9iYjMwLwMjHxXPjVVG3iocCPXL5Tyi59EGBxJXSNba1+L\niNxf8zIwPlT4SQ429hLo6mPy00S09rWISObMyyPqnr2pNRNa+1pEJPNc8Xh8+q1ERCTn6V5SERFx\nRIEhIiKOKDBERMQRBYaIiDiiwBAREUcUGCIi4ogCQ0REHJmXhXt3yxiTB7wAbAZGgX9rrT2X3V5l\nnzHmEHBjdanzwFeBF4EY0Ap8PrmwVU4xxuwE/sha+yFjzKPcZkyMMZ8BngGiwHPW2tey1uFZdsv4\nbAX2AGeSzS9Ya1/K1fExxhQA3wVWA4XAc8BJFshnKFfOMP4xsMhauxv4T8DzWe5P1hljigCstR9K\n/vdvgK8Bz1prHyfxpJWns9nHbDDGfBn4Nol/7HCbMTHGeIHfAXYDTwFfNcbkxGpbtxmfeuBrkz5H\nL+Xy+AC/BUSSn5dfAb5J4nizID5DOXGGATwGvA5grW0yxviz3J+5YAtQYox5g8Tn4PeAbdbavcn2\nnwK/DPwoS/3LlrPArwN/nfz+dmMyAeyz1o4D48aYsyTOXoOz3dksuHV86oF1xpinSZxlfBHYQe6O\nz0vAy8mv84BxFtBnKFfOMJYw+SmFMJGcpsplg8CfWGufAj4LfP+W9gFg6az3Ksusta+QmCK4YfJj\njvtJjMkS3p/Km/z6gneb8WkCftda+wSJac0/AMrI3fEZtNYOGGPKSITH75N6nJ3Xn6FcOWj2kfgQ\n35BnrY1lqzNzxGmSIWGtPQN0AtWT2suAntvsl2smf06WkBiTWz9PZdy6UlfueNVae/jG18BWcnx8\njDErgbeAv7LW/g0L6DOUK4GxD/hVAGNMA3Asu92ZEz5N8lqOMeYBEh/YN40xTyTbPwbsvcO+ueTw\nbcbkAPABY0yhMWYpsIHExcxc9LoxZnvy64+QmFLJ2fExxlQDbwJftta+mHx5wXyGcuUaxqvAR40x\n+5LffzqbnZkjvgN8zxhzIxQ+TeIs49vJi28neH8uNhfduDvsS9wyJsk7XL4BvEvil65nrbVjWepn\nttwYn88C3zTGjAMh4JnklEyujs+zJKaWvmKM+Urytf8AfGMhfIb0eHMREXEkV6akRETkHikwRETE\nEQWGiIg4osAQERFHFBgiIuKIAkNERBxRYMiCZ4z5oDFmzwz39Rtj3r7ffRKZjxQYIiLiSK5Ueov4\njDFvAl6gEfgCicdK/38kfnE6D/w7a227MeajJB5rPgocBzDGPAK8Za1dnfz+CeA/Wmt/ddZ/EpEs\n0RmG5Iq1wGestZtJPLrhWeDPgaettVtIPG/sfyQf3/CXwCestX4SD4mLJxfcumCM+VDy/f4V8L3Z\n/iFEskmBIbni59baS8mvv0/i+T5N1trLydf+F/BhoBYIWWtPJF//Du8/4vy7wG8bY4qBJ8m9tUIk\nxykwJFdMXsMhj8TD81y3vOa+zesTk75+Gfgo8M+A15KL34jkDAWG5IoPGmMeSC6c9Ungj4EGY8zq\nZPszJNYwOAYsT65VDfCbN97AWjtEYsW0/0JijWaRnKLAkFwQJ3Hx+n+TCIQrwJ+SCIlXjTGtwOPA\nZ621UeATJB793gyU8/6jvAF+APRZaw/OYv9F5gQ93lzEIWNMPvCHQNha+/Vs90dktum2WhHngkA7\n8I+y3RGRbNAZhoiIOKJrGCIi4ogCQ0REHFFgiIiIIwoMERFxRIEhIiKO/P9FV5CKlXO5JwAAAABJ\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# hue='universe' subsets the data by universe and creates a single plot\n", + "sns.lmplot(x='body', y='brain', data=mammals, ci=None, hue='universe')\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What was the point of this exercise? This was a visual demonstration of a high bias, low variance model:\n", + "\n", + "- It's **high bias** because it doesn't fit the data particularly well.\n", + "- It's **low variance** because it doesn't change much depending on which observations happen to be available in that universe." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Let's try something completely different" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What would a **low bias, high variance** model look like? Let's try polynomial regression, with an eighth order polynomial:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAr4AAAFiCAYAAAAQk9u8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XmcXXd93//XXebe2TdptG+2JR/Lkm3ZlhfZxguYQDBg\nCj/SEBJK0hoa0hQeTR5p47ahtKRJ2mYpNKRpKKQhZAEHCMQsDmDjBRlb3mQtPpZk7RpJM5r1zna3\n8/vj3HPuudJo5s7MXc655/18PPzw9cydma+vRud+7ud+lohlWYiIiIiINLpovQ8gIiIiIlILCnxF\nREREJBQU+IqIiIhIKCjwFREREZFQUOArIiIiIqGgwFdEREREQkGBrzQswzBeqvcZymUYRqdhGPsM\nw9hQ77OISHgF5bppGMYnC9fMfYZh/F69zyPBocBXGpZpmjfW+wzlMAzjNuBpYHO9zyIi4RaE66Zh\nGPcDbwV2FP652TCM99T3VBIU8XofQKQchmHcC3zSNM37Cv/958DjwBPAN4BXgRuBc8D7TdMcNgwj\nDzQBJ4EdpmmeNwyjt3DfDdgXzk8V7nMUeMg0zSHDMI4Bz2JfUN8K/G9gZeEonzJN81uGYWwGPgcs\nAyaBXzVN8+WLzvyFwpm8/ptpmn990cf+BfAx4EuLeWxERGbTwNfNM8C/MU0zW/ia14D1i3uUJGyU\n8ZWgsgr/RIDrgd83TfM6YAT4oHMn0zRzwFeA9xc+9D7g60AP8DvAT5mmeRPwGPB7nu/9bdM0rwHe\nDBw1TXMn8PPAXYX7/D/gN0zTvBn4KPA3Fx/QNM1fMk3zxov+uTjoxTTNh0zTfHoJj4WISDka4rpp\nmuYB0zSfAzAMYwvwM8C3l/C4SIgo4yuN4Lxpmq8Ubu/Dvjh7fQn4I+CPgQ8ADwO3Y2cvnjAMAyAG\nXPB8zU8K/34G+G3DMNYCjwKfNgyjHdgJfLHwtQBthmH0mKY57HzAMIwvYmc/vP67aZp/tdj/URGR\nCgn8ddMwjG3APwC/ZprmkXL/xyXcFPhKUDhZCkeT5/b0HPfDNM0XDMPoNQzjFmCtaZrPGobxIPC0\naZoPAhiG0Qx0eL5sqvC1hw3DuAZ4O/Au4NeA24Bpby2cYRjrvRfvwtf+4uL+V0VEKqJhr5uGYdwJ\nPAJ83DTNr5TzNSKgUgcJjkHgSsMwkoV6szdd5n4RLrqAF3wZ+FPAecvsJ8CuwttkAP+B4lt2LsMw\nfhm7Pu0R4FeAFYXvf8gwjA8W7nM/ds2ciIifNOR10zCM9dg1yh9Q0CsLpcBXAsE0zf3Yb5ntx649\ne7LwKadmjVn+2/vxL2PXtP1l4fudBX4J+IphGHuxmyl+bZYf/ZeAUbjPj7AbRUax6+H+hWEYrwD/\nFbvGTETENxr4uvnrQAL4Q8MwXir885FFfi8JmYhlWfPfS0REREQk4KpW42sYRhPwBWAjkAQ+DZzC\nLkR/vXC3z5mm+VXDMB4CPgJkgU+bpvlotc4lIiIiIuFUtYyvYRgfBq43TfPfGIbRA7yCPfuvyzTN\nP/DcbxX2SJSbgRbsQf47TdNMV+VgIiIiIhJK1Zzq8FXsjkuwa4kz2MGtUegMPQR8ArgVeMY0zQyQ\nMQzjMHZN0Z4qnk1EREREQqZqzW2maU6YppkyDKMDOwj+98BzwK+bpnkP8AbwSexRKKOeLx0Huqp1\nLhEREREJp6rO8S2MHPka8Memaf6NYRhdhc5OsLfAfBa7y9Q7B7ADGGYO2WzOisdj1TiyiEitzTZG\nqip07RSpjoHhKX7p048B8L77NvPhd26r+Rn++nuv8VePmQD8n9+8n9XL2+r28//s4ftZtayqP3/R\n181qNretxK7d/Zhpmo8XPvxdwzD+tWmazwP3Y5czPIe94SUJNANbsbfIXNbw8OSiz9XX18HAwPii\nvz4M9BjNT49RefQ4za+vr2P+O1XIYq+d+nMsjx6n+TXqY3T4VPGN6+Z4dEn/j4t9jGKeSXTHTg0T\nt/KLPsNijKVm3NujI5PE8tX7+Uu5blYz4/swdsnCbxmG8VuFj30Ce+5eBugHPlIoh/gM8BR26cXD\namwTERGRoBgaLy7C6+1I1uUMHa0J9/bYRO3DqHy+GHhHozV7I2vBqhb4mqb5ceDjs3zqrlnu+3ng\n89U6i4iIiEi1DI0Vs529nc11OUNnmyfwnax94JvzZHj9HPhqc5uIiIjIEgyNFTO+PZ31yfh6A9/x\nOmR8c56Mb1yBr4iIiEhjGh63M75N8SgdLU11OUNna/Hnjk1kav7zg1LqoMBXREREZAmcGt+ejiSR\nSH2CvpZknHjM/tn1KHXwBr4xBb4iIiIijcmp8a1XYxtAJBJxG9zq0dyWVcZXREREpLFlc3k30Ozp\nqE9jm6PTCXzrnPGN1inrXQ4FviIiIiKLNDw+407Q7a1TY5vDaXAbn6xfjW8sGqlbuUc5FPiKiIiI\nLJLT2Ab1G2XmcBrcUlMZsrnaLrBwpjr4ucwBFPiKiIiILJp3lFk9a3wBOjwjzVJTtc36KvAVERER\naXBDvsr41m97m1Pq4OcZvqDAV0RERGTRSpZX1Dnj29nmmeVb4wY3ZXxFREREGpwzyizRFKWtOV7X\ns3gzvuM1XmLhrCxW4CsiIiLSoJzmtt6O5rpPM/CuLR6tU6mDn5dXgAJfERERkUVztrbVe5QZ4C6w\nABivU6mDAl8RERGRBpTJ5tyZub11Xl4B0NFavxrfvFvj6+/Q0t+nExEREfGp0okO9c/4xmPFOuOx\nGtf4ZpXxFREREWlcTmMb1H+ig8Op861XxleBr4iIiEgDGh73LK+o8wxfh1PnW685vprqICIiItKA\nvBnfem9tczgZ3/HJNJZl1eznqrlNREREpIEN+2hrm8NpcMvmLKbTuZr9XM3xFREREWlgTuCbTMRo\nSdZ3eYWjvbk42SE1VbsGN60sFhEREWlgTuDb0+6PMgeA9pb6BL5aWSwiIiLSwIZThcDXJ/W9AO2t\nCnznosBXREREZIGyuTzjhckJ3cr4FseZ1Xlt83wU+IqIiIgs0GgqjTMzwVcZ3zqXOsRi/g4t/X06\nERERER9yyhzAX4FvmyfwnahDxlelDiIiIiINZsQzysxPpQ4dnsB3vB4ZXwW+IiIiIo3FO8PXTxnf\n5kTMDT5rlfG1LKvY3KYaXxEREZHG4tdSh0gk4pY71KrG17sgLhZT4CsiIiLSUJxSh0gEOtua5rl3\nbbXXOPDN5vLubS2wEBEREWkwTqlDV1uCWNRf4ZQT+Naq1KEk8NVUBxEREZHG4sflFQ4n8K1Vc1sm\nWwx8m+L+Di39fToRERERn7Esyy116OlorvNpLtXeEgcgncmTyeaq/vMyyviKiIiINKbJmSzpQpaz\nx0ejzBxtJUssslX/edlcsbstroyviIiISOMYHvPM8O1I1PEks+toKZ6pFg1uJaUOyviKiIiINA6/\njjJztBVKHQBSk+mq/zxvc5tqfEVEREQaSMnyCh+WOrR7Sx2mq1/q4M34xjXHV0RERKRxlKwr9mHG\ntyTwrUWpgzK+IiIiIo3J76UOtQ58s1lNdRARERFpSE6pQ0syRnMiPs+9a68k8J2sQeCbU3ObiIiI\nSENySh26fVjfC9DW3IRTaVvzqQ4qdRARERFpHH7e2gYQjUZobbYz0RPTta3xVamDiIiISIPIZPOM\nF8oH/DjRweGUO9SkxlcLLEREREQaz2jK3xMdHLUMfLXAQkRERKQB+X2ig8NZW1zr5jZlfEVEREQa\nhN+XVzicjO/kTJZcPj/PvZcmW5Lx1QILERERkYbg9+UVDu9Is4kqb28rXWARq+rPWioFviIiIiJl\nCkqpQ0ngW+U6X60sFhEREWlATqlDNBKhszVR59NcnjfwHa9ynW9W48xEREREGo9T6tDVniAa9W92\ns14ZX78vsKjanj3DMJqALwAbgSTwaeAg8OdAHtgH/IppmpZhGA8BHwGywKdN03y0WucSERERWSy/\nL69wtHnXFlc58HUyvhEg5uMXA1DdjO8HgQHTNO8G3g78MfD7wMOFj0WABw3DWAX8KnAH8DbgdwzD\n8O97ByIiIhJKlmUxPJ4G/D3RAaDDG/hWeXtbprDAIh6PEon4O/CtWsYX+CrwSOF2FMgAN5mm+WTh\nY98BfgrIAc+YppkBMoZhHAauB/ZU8WwiIiIiCzIxnXWzm36e6AAXZXyrXeNbKHXw+/IKqGLga5rm\nBIBhGB3YQfB/AP6H5y7jQBfQCYzO8nERERER3yiZ4evzwLe9hqUOzjgzvy+vgOpmfDEMYz3wNeCP\nTdP8a8Mw/pvn053ACDAGdHg+3gEMz/V9e3paiS9hTlxfX8f8dwo5PUbz02NUHj1O/rGUa6f+HMuj\nx2l+QX6Mjg9Ourc3rOmq2v9Lpb5vcyLGdDpHJm9V9XGPFOp6k4mY7/98q9ncthJ4DPiYaZqPFz78\nkmEY95im+SPgp4EfAM8Bv20YRhJoBrZiN75d1vDw5FyfnlNfXwcDA+OL/vow0GM0Pz1G5dHjNL9a\nPkks9tqpP8fy6HGaX9Afo+OnR9zbMcuqyv9LJR+jtuYmptM5hkamqvq4TxYyytFIpCZ/vku5blYz\n4/swdsnCbxmG8VuFj30c+Eyhee0A8EhhqsNngKewa4EfNk0zXcVziYiIiCxYyda2dv/34be3NHFh\nbJpUlTe3FWt8/d3YBtWt8f04dqB7sXtnue/ngc9X6ywiIiIiS+Xd2tbt86kOAO0tdpiXmqxuPtGt\n8Q1Ac5v/TygiIiLiA07GtzkRoyVZ1TapinAmO0xMZ7Esq2o/x1lg4fflFaDAV0RERKQsQVle4eho\nscsxcnmLqZlc1X5ONkAZX/+/XBERERHxgZGUXTIQhDIHgLaWYpiXms7Q2lzZsG9gZAqAbGGBRRAy\nvgp8RUREROaRzeUZnwhW4Nt+0RKLFd0tFfvej+4+xh5zAIDptN08F4QFFv4/oYiIiEidjU2kcapk\ng1LqUK0lFgMjU27QC8WMbxAWWPj/hCIiIiJ1NhywUWYA7a3FwHeiStvbvE1z8QCMM1PgKyIiIjKP\nkVRw1hU7qpXx7etuYafRB4B3VkTTErbq1opqfEVERETmUZrxDUjg21wMfMcrnPF9YNcmbt26ksmZ\nLJ/64vOAMr4iIiIiDcGZ6ADByfi2tVS31KGvu4XutmLZh5rbRERERBqAk/GNAJ1twajxbU7E3Cxs\nJUsdvJytbRCMcWb+P6GIiIhInTk1vh1tiUAsagCIRCJu1rdqgW+2GPgG4XHx/wlFRERE6swJfIMy\n0cHh1PlOTFcn8HVGmYECXxER8RHv2CERWRgn8O0JSGObo62wrW1iKluV759VqYOIiPiRNzMjIuWb\nTmeZmskB0B2QxjaHU+pQrYyvt9RBga+IiPhGJpur9xFEAqlkokPgMr524DudzpVkZyvF29ymcWYi\nIuIb3syMiJSvZIZv4DK+xZUNk9OVL3fIlmR8/b/AQoGviEhIKPAVWRzv1ragLK9weLe3VaPcoXSq\ngzK+IiLiE5kqvM0pEgYjJVvbgjXVoa3Zu8SiChlfb3ObpjqIiIhfpDMKfEUWY9iT8Q3K1jaHd3tb\nqhoZX011EBERP1LGV2RxnIxvPBYpKR0IAmecGVRnbXFWCyxERMSPVOMrsjjOVIfu9iSRiP/rWL1K\nSx2qkfHVAgsREfEhBb4ii+NMdQjaRAconeqQqsZUB5U6iIiIH2mOr8jCWZblWVccwMC3uYZTHRT4\nioiIXyjjK7Jw41MZcnn77fygLa8AaE7EiEXt8oyq1PhqqoOIiPiRAl+RhSsZZdYRrFFmAJFIxG1w\nm6hCqYNWFouIiC9pqoPIwnmXVwQx4wvFkWbVaW7TAgsREfEhzfEVWThnogMEs8YXinW+1ajx1Tgz\nERHxJWV8RRZueDy4yyscbqlDFTe3RSK4tcR+psBXRCQkVOMrsnDeUofAZnwLpQ6TM1nyeWueey+M\nc11pikUDMeNYga+ISEhkFfiKLJiT8W1JxkkmYnU+zeJ4R5pNzlQ265stLLAIQpkDKPAVEQmNtOb4\niixYcYZv8CY6OLxLLCrd4OaUUAVhogMo8BURCQ2VOogsnDPOLKj1vQDtLcWMb6rCDW7OdUUZXxER\n8RU1t4ksTDaXZ3zSDhSDWt8LF21vq3DG12luC8LWNlDgKyISGsr4iizMSGoGpxUsyBnf0lKHCtf4\neprbgiAYpxQRkSVT4CuyMCPjwZ/hC6UZ34qXOrg1vv6f6AAKfEVEQkOBr8jCDKeCP8MXiuPMoArN\nbarxFRERP1LgK7IwjbC8AqC92VPqMF3pcWaa6iAiIj6kwFdkYUbGg7+8AqA5GcfZLVHptcXK+IqI\n1NjAyBQDI1P1PobvaaqDyMI4pQ7RSISutuDO8Y1GIm6db8Wb2woLLILS3Baf/y4iIv716O5j7DEH\nANhp9PHArk11PY+fpTNaYCGyEE6pQ1d7gmg0GM1bl9PWHCc1lal4xlelDiIiNTA6keYLjx7kBy+c\nIp3JYVkWe8wBZX7noIyvyMI4pQ5BLnNwOA1ulWxuy+ctcvlgrSxWxldEAun/fec1Xj48CMBIKk00\nGqElGWMkNUNfd0udT+dPWdX4ipTNsiy31CHIjW0Ot9Shgs1t3hfTWmAhIlIlQ2PTvHJksORj+bzF\nxFSWJ146XadT+Z+a20TKNzGddf/ONETgW1hiMTGdIW9Z89y7PFlP4BuUGt9gnFJExOOpvf041+13\n37mJe3asobUwrufg8WGsCl3UG006m9djI1KmkQYZZeZwMr6WBVMzlcn6el9MxwOywEKlDiISKLl8\nnidfOQNAZ2sT77xjE/FYlKZYlO+/cIqRVJqB0WlWqNxhVtmcFZgNSyL1VLK8ohFqfL2zfKcyJdvc\nFstbPqWMr4hIFbz6xpDbaX3n9avdhoot67vd+xw6OVKXswWByh1EyuNdXtHdCBlf7/a2CtX5emt8\nNdVBRKQKnnz5jHv77hvWuLevXtfl3j50SoHv5Wiyg0h5Gq3Uob0Ka4tLSh2U8RURqSxvU9u1m3pY\n2dPqfq6rPcmKHru84fWTo3U5XxBkNMtXpCyNV+pQDHxTFZrl6yyvAAW+IiIV521qu2fH2ks+v6WQ\n9T07NMnYRLqWRwsMZXxFyuOUOrQk4yQTsTqfZumcqQ5Que1t2QCWOlS9uc0wjNuA3zVN8z7DMG4E\nvgUcKnz6c6ZpftUwjIeAjwBZ4NOmaT5a7XOJSLBc3NR245bll9zn6nXdPPPqWQAOnRrlZqOvpmcM\nAtX4ipTHKXVohDIHgPZmb41v5UsdgtLcVtXA1zCM3wB+HkgVPnQz8Aemaf6B5z6rgF8tfK4FeNow\njH80TVPpGhFxHTw2PGtTm9fV3ga3UyMKfGehwFekPO7yivZEnU9SGSXNbRXK+AZxgUW1M76HgfcC\nXyr8983A1YZhPIid9f0EcCvwjGmaGSBjGMZh4HpgT5XPJiIBcvDEsHt717WrZr3Pip4WOlubGJvM\n8LomO8wqrcBXZF6ZbJ7xSTsr2ggTHQBak55Sh0rV+AYw41vVU5qm+TXs8gXHT4BfN03zHuAN4JNA\nB+DtRBkHuhAR8Th8yr5MtCbjrOlrm/U+kUjEHWt24lyK6XTlVnM2CmV8ReY3mmqsiQ4A0WjEDX4r\nNtUhpwUW8/m6aZpOkPt14LPAk9jBr6MDGL74C716elqJxxdfaN7X1zH/nUJOj9H89BiVpxKPUyab\n49jZcQCuvXIZK1d0Xva+N12zkhfMAfKWxYWJDDvW9iz55zeS1rbEov5M9PteHj1O8wvCYzSQKlZb\nrl/dVfMzV+vndbYnmJzJks5ZFfkZLS1D7u3ly9oD8Wdb68D3u4Zh/GvTNJ8H7scuZ3gO+G3DMJJA\nM7AV2DfXNxkenlz0Afr6OhgYGF/014eBHqP56TEqT6Uep8OnR91M5Ya+tjm/5+qeZvf28/v6Wdvj\n7w1utX6iGByaWPCfiX7fy6PHaX5BeYyOnizm3+JYNT1zNR+j5iY7aTgyPl2RnzE8UozHJlKV+Z7l\nWMp1s1aBrzPo7V8Cf2wYRgboBz5immbKMIzPAE9hl148rMY2EfFyyhygOLLsctavaCeZiDGTzqnO\ndxaZjEodRObTaMsrHE6DW6oKCyyCUuNb9cDXNM1jwB2F268Ad81yn88Dn6/2WUQkmJxNbLFohE2r\nL1/mYN8nyua1Xew/OsQbZ8bI5vKBGaxeC5rjKzK/Rlte4Whrdmp8s1iWRSSytLrckhrfgFxng3FK\nEQkty7I4fNrO+G5Y2UGyaf76fmd9cTqb5/g5/7+tWktqbhOZnzM6MRaN0NHWGOPMoJjxzVsW0+ml\nb3H0bm4LygKLYJxSRELr/PCUO1ZovjIHx5Vri/c7dT41xz3DR4GvyPycwLerPUF0iVlRP/GuLa7E\nZAfv9UQZXxGRCjjkqe/dvLa8wHd5Z7HBbdhTqyea4ytSDue60UhlDgDtzd5Zvksf9xjElcXBOKWI\nhNbh08UGtXIzvt6B8yMpBb5e6czS394UaWSWZTFSGGfWKMsrHN7tbakKLLHw1vgGpbktGKcUkdBy\nMr593c10lZl9STbF3EHtIykNifGaUeArMqfUVMbNZDZaxrd0bXGFSx0CssBCga+I+FZqKkP/BXtO\n5Oa13Qv6WmcEkUodSs1UoKFFpJENN+goM4D2Ctf4Oi8QIhF7ok4QBOOUIhJKzjQHKL/MwdGtwHdW\nlejkFmlk3vKoxit1KNb4pipR41vI+AalvhcU+IqIj3kXV2xeaODbbo8gSk1lNMnAYzq99Cc7kUZW\nkvFVqcOcnGtrUOp7QYGviPjY4cLiitZknDXL2xb0tT1qcJuVMr4ic2vkUoc2z1SHSmxvc0odgjLK\nDBT4iohPZXN5jp61l09sXte14Fma3kyNAt8iBb4ic2vkUodYNOo2/lYi8M0UFlio1EFEZIn6L0y6\nb6NdOc+a4tl4n7BU51ukqQ4icxsetyfBtCbjZW2KDJr2QrlDJUsdlPEVEVmik+eLq4bXr2hf8NeX\nlDoo8HWpxldkbsPj0wD0djZWttfh1Pmq1EFExEdOnCuuGl6/cuGBb7en1GFYpQ6u6XQOy7LqfQwR\n3xoaK2xt62ie557B1F6FwFelDiIiS3TyvB34tibjLOtc+BNQZ2vCrQtWqUORZWltscjlTKezTM7Y\n74o0asa3vTDSbHI6Sz6/tBfBxakOwVheAQp8RcSHLMtyA991K9qJLLCxDSAajdBVGGmm7W2l1OAm\nMrtGnujgcEodLHCD/MVyVhbHlfEVEVm8kVTafRtuMfW9DueJSzW+pWZU5ysyqyHPtaK3wUsdYOnl\nDlnN8RURWTpvY9uGJQS+Tp3vcGpGda0eyviKzG5obNq93dOgpQ5tzZULfJXxFRGpAKfMARbX2OZw\nZvlmsnkmKrCes1Eo8BWZ3XBJxrcxA9/KZnwLc3yV8RURWTwn8I1GIqxd4MY2r+6OhHtbSyyKFPiK\nzM6Z6ADhKHVYyizfXD5PvvBOmjK+IiJL4AS+q5a10hRf/AB5zfKdnWb5iszOyfi2NcdJJhpveQVU\nLvB1sr0QrIxvfL47GIbxYeB/AL2eD1umaTbmb4SI1NVMJsfZoUlgafW9ULq2WCPNimaU8RWZ1VBh\neUWjTnQAaGsphn6p6cUHvk59LwRrgcW8gS/wSeBeYL9pmuoOEZGqOj0wgdOHtpSJDnDR2mKVOrhU\n6iAyu+FCqUPvImaHB0Vpje/i3/3JegLfIC2wKCfwPWWa5r6qn0REhKWvKvbybm9TqUPRdEaBr8jF\nvMsrGjnjm2yKEY9FyOasJTW3ZbLejG9wFliUE/i+YBjGI8BjgPPMYZmm+RfVO5aIhNUJ70SHJQa+\nLck4zYkY0+mcllh4qMZX5FJhmOgAEIlEaGtpYjSVXlqNbwNnfLuBFLCr8N8R7IUfCnxFpOKcxrbO\ntgRd7Ut/8unpSNJ/YVI1vh4qdRC5lHeiQ0+DTnRwtBcC30plfBuquc00zQ/X4BwiIuQti1OFwHep\n2V5Hd3sh8FWNr0vNbSKXchrbAHobdHmFo72wxGIpgW82V2z7CtI4s8sGvoZhPGqa5gOGYRyd5dOW\naZpXVvFcIhJCg6PTbjaykoEvwPhEmmwuH6ju40pLNsWYyeSU8RWZxXBJxrfBA99Cg9tSSh0y2eJ1\nJEjX1bkyvg8V/n3fLJ/TdAcRqbiT5yrX2OZwnsAsYDSVZllXY7+FOZfmhB34zqjGV+QSQ+ONv7zC\n0VYIfNPZPOlMjkTTwifUejO+DVHja5rmmcLNs8A7gDbs+t4YcAXwW1U/nYiEyskKNrY5SpZYpGZC\nHfgmEzGYUI2vyGzCsLzCcfHa4t5FBL7eOb4NVeMLfA1oAbYATwJ3A39fzUOJSDg5gW88FmVVb2tF\nvme3lli4mgtP5gp8RS5VXF7R+C+OLwl8FzG3OJsN5gKLck5qAG8Gvg78d+BWYEM1DyUi4XR6YAKA\nNctaK3Yh7e5IuLfD3uDW3KTAV+RyissrGru+F0q3ty22zjcT0HFm5Zz0XGFj22vA9YUSiFXVPZaI\nhM1MJsfAyBQAa/vaKvZ9e7TEwtWctJ/sNMdXpJR3eUUjz/B1lGR8pxd3Pcg28AKL/YZhfBb4E+DL\nhmGsARr/t0JEaqr/woTbNbtmeeUC3672BJEIWJYyvk6pw4w2t4mU8JZBNfpEB7i01GExvBnfII0z\nK+ekvwx8xTTNA8AnsbO9P1fVU4lI6DhlDgBr+yrT2AYQi0bpbLPLHcKe8U0WSh2yOatk65JI2HmX\nVyym3jVovIHvYksdso26wAJ4zjTNmwBM0/wm8M3qHklEwujMoCfwrWDGF+xyh9FUmuGQry1uThQv\n+dPpHO0twXmyEqkm7/KKMGR82yqc8W24Gl/DMO42DKPxfxNEpG5OFwLfRFO04iPHnMkOI+MzWFZ4\nx5B7RzSpzlekaDhkGd+25go0twV0qkM5Gd+dwBMAhmFY2LN8LdM0G3vInYjUlFPqsHZ5G9FIZRsl\nnAyOs7WsJVnOpa/xtJQEvqrzFXEMhazGNxaN0pqMMzmTXXTGN6gLLMo56VrgV4FvAI8AHwWa5vwK\nEZEFmJrsEf9AAAAgAElEQVTJcmHMfquxko1tDu/behPTi1/RGXTNnsB3RoGviMspdWhrjru18I3O\nqfNNLfKa6O0TaLSM72eBLuCL2IHyh4BtwCeqeC4RCZEzF7z1vZVrbHO0ejK8UzPhDfiSyviKzMqZ\n6hCG5RWOtpY4jEBqanFlT5kGbm7bZZrm9c5/GIbxLWBv9Y4kImFzxjPRoRoZ39Zmb+Ab3trWi5vb\nRMQ2FKLlFQ7nnbBKLLCIx4Mzx7ecEP2sYRgbPf+9CjhfpfOISAid9kx0WFfB5RUOb03v5CKHtTcC\nNbeJXGpqJuu+IA7D8gqHU+owMZ0hv4imX6fUIRqJEIs2QMa3kNkF6AX2GobxAyAL3Avsr/7RRCQs\nnMC3JRmrSmNJS7IY8IU746tSB5GLhW15haO92Q58LctOCHhn+5bDKXUIUrYX5i51+P3LfPxzQHjn\nAYlIxTkzfNcsayNS4YkOAK3J4gV9MsyBr6dpR9vbRGzewDcMo8wcFy+xWGjg6yywCFJ9L8wR+Jqm\n+UQNzyEiITU5nXGfeNZWocwBSjO+oQ58S2p8w/s4iHgNjYVreYXj4iUWKxf49elC4JsI2BSMYIXp\nItJwzgxOurfXVGGiA0Brc/ECPxXiGt/mpEodRC52wRP4Vnp5jp+1L3F7m9Mv0RqwuegKfEWkrk4N\nptzblV5V7GhVxhegZD6pAl8R24XRYuDbG6JxZksNfJ1+iaAtBFLgKyJ1Ve1RZgBN8Zg7YD3MzW3x\nWNR9HLTAQsTmZHy72hOB2kC2VCU1vot4J8xJInjHRQZBeP6ERcSXnIkObc1xutsTVfs5TtY3zBlf\nKE52UMZXxDZYyPguD1FjGxQWWBQsNONrWZZb6qCMr4jIAjiB75rl1Zno4HAuzmHO+II38A334yAC\nkM9bbnNtmOp74dKpDguRzuTd2b9Bq/Gt+mkNw7gN+F3TNO8zDGMz8OdAHtgH/IppmpZhGA8BH8Ge\nE/xp0zQfrfa5RKT+UlMZxibSQPXqex3O23FhXmABxcBXpQ4iMJKaIZe3A7hlIcv4JptixGMRsjlr\nwRlf7ztnyvh6GIbxG8CfAc58kD8AHjZN824gAjxoGMYq4FeBO4C3Ab9jGEb13u8UEd945InD7u3h\n1Mwc91w6ZXxtSZU6iLgGR8M50QEgEom4I82WEviqxrfUYeC92EEuwE2maT5ZuP0d4H7gFuAZ0zQz\npmmOFb7m+iqfS0TqbGBkin1Hh9z/PnthkoGRqar9POftONX42o/DtBZYiJSOMgtZxhc8a4sXGPh6\nx0Kq1MHDNM2vGYaxyfMhbwHfONAFdAKjs3z8snp6WonHFz8wua+vY9FfGxZ6jOanx6g8l3ucctEo\nuVxxCWRLc5ze3jb6llWn5KGnqwWw12x297SFqnvb0dPTSme7/QbcTCa3oN9h/b6XR4/T/Pz0GE1n\n+93bWzYt883ZanWOns5mTg9MMJle2PXguGf++sq+dt88buWodZie99zuBEaAMcD7iHUAw3N9k+Hh\nybk+Pae+vg4GBsYX/fVhoMdofnqMyjPX4xQDN/iMRiLcfHUfsXy+ao9r1LNp/cTpYTpb/VFRVcsn\njOHhSaKFhpSZdI5z58aIRudvKNTve3n0OM3Pb4/Rif5i3i2Sy/nibLV8jJKF8YZjEzML+pn958fc\n29l0tuaP21Kum7VOebxkGMY9hds/DTwJPAe8yTCMpGEYXcBW7MY3EWlwTp3pplUdPLBrU1V/lrcB\nI8zb25waX7CzviJh5iyvaGuOB65JqxKcGt90Jk8mW/71wHsNDdrjVqvA10m1/BrwKcMwfoydbX7E\nNM1zwGeAp4AfYDe/pWt0LhGpk7GJtNtQsXF19bOe3otzmOt8nRpfUIObiFPjG8b6XigdaTY+WX6d\nb0lzW8AC36qf1jTNY9gTGzBN8xBw7yz3+Tzw+WqfRUT8w5nfC9UfZQalF+dwB77etcVZikN3RMLF\nsiw34xu2iQ6OztbSwLe3zBcAmuogIrJAZ+oY+KrUwaaMr4TZ+FSGdNZuPQprxrfTsy1zdKL8N9un\nZorXDpU6iIiUwZvxXVOLwLdZGV8ozfhqiYWE2YUQz/B1dLV6A9/yZ6lPTttlEbFohETAJuQE67Qi\n0jDODKQA+622jhpMWChpbgt14KsaXxG4KPANbca3WOo0toCMr5M8aEnGq7pqvhoU+IpIzVmW5WZ8\na5HthYtKHUId+F5c4ysSTt7lFcu7wxn4drUtttTBvnYErb4XFPiKSB2MTaSZKNTZrl3eXpOf2eIt\ndQhxjW9J4KtxZhJig8r40tYcJ1aY5b2gjO90MeMbNAp8RaTmSup7+2qT8W1JKOMLkGzyBL4zCnwl\nvJxSh0RTtGSsV5hEIhE6C1nfhQS+bsZXga+IyPxqPcoMIBqNuNnOUDe3eZ6otMBCwsw7wzdodaqV\n5AS+Cyl1mFSpg4hI+c7UeKKDw3lbLswZ3+Ym1fiKAKGf4etw6nxHU+UFvtlcnnTGHgOnUgcRkTI4\nGd+utkRN32J0shOq8bVpqoOE1dRM1s1aLg9pfa/DyfhOzmTJFOYaz2UqwFvbQIGviNSYZVmcGajt\nRAeHk50Ic6lDUzyK866u5vhKWGmGb5F3skM5db5BXlcMCnxFpMZGUmn3wlmr+l5Hq0odiEQi7ixf\nZXwlrAbHNNHBURL4Ts4f+Hqvny2q8RURmduZOkx0cBQD3xyWZdX0Z/uJU+6gGl8JK2V8izq9s3zL\nqPP1loop4ysiMo96THRwONmJvGWFeqJBMfAN72Mg4XZBGV/XUjK+CnxFROZxZjDl3q5XqQOowQ00\nzkzCy8n4xqIRuj1re8OoNOM7M+/9SzK+KnUQEZmbk/Htbk/Q2lzbofEtWlsMFJdYKOMrYeVkfHs6\nkkSj4Z3hC9DVVgz8y5nl621u0zgzEZE5WJbl1vjWOtsLF2V8Qxz4FpvbwvsYSLg5Gd/lIa/vBWhJ\nxmiK2+FgOVMdVOogIlKm4fEZpgprctcsb6/5z1fG19acLGZ8w9zkJ+GUyebczGbY63uhsLa4tfzt\nbd5SB011EBGZw6kBT2NbjSc6QGk9WqgzvoVSB8uCdBkD60UayaAmOlyiq90OfBea8W1JKPAVEbms\nUwPFxrb1K+qc8Q11c1vxcdASCwmb88NT7u0VPS11PIl/LCjjWwh8W5KxQNZHK/AVkZpxAt8Itd/a\nBqrxdSRL1haH93GQcDo/4g18W+t4Ev9wMr7T6dy8016m3MA3eNleUOArIjV06rxd6tDX0+JOFqil\nFgW+QHGcGWiyg4TPgDfj262MLxQzvjB/uYNT4xvExjZQ4CsiNZLN5em/YAe+6/tqX+YApRdqp8ku\njLyBb5ib/CScnIxvMhGjo7W2IxX9ysn4wvzlDpPK+IqIzO/s0CS5vD1BoB6NbQCJpiixQk3a5HSm\nLmfwg/aW4pN9akqBr4SLU+O7oruFSCR4NarVULK9bZ7A13mxrIyviMgcvI1t6+qU8Y1EIm6WIswZ\n3w7P25rjU/M3s4g0inzeYnC0GPiKrWR72xyBr2VZbsY3iFvbQIGviNTIac8os3V1mOjgaHUD3/Bm\nOksyvpPhzXxL+AyPz5DN2e889Wmig6vcjK89+9u+rVIHEZE5nDpvZ3wT8WhdMy3OxTrMzW3eusbU\nlAJfCY+SiQ7K+LrKzfiWbG1TxldE5PKcUoc1y9vqOvvRuViHOePb1tyE8ycwPqlSBwmPAU/gq4xv\nUXMi7k7aGU3NXPZ+JVvblPEVEZnd5HSWC2P2xbRe9b0ON+Mb4gUW0WiEtkK5w7gyvg3DsiwOnxpl\n976znDyfIp/XOuqLndcos8vqbLOvCWNzvBj2vlMW1Oa2YJ5aRALl9KCnsa2O9b1QvFjPZHLk8nli\n0XC+/u9obSI1lWFcNb6Bd2ZwgmcPnOXZ/edK1vE2J2JcsbqTHZuX85ab1wVyy1alOaUOsWiE3s5k\nnU/jL11tSQZGphlNlRf4BjXjG8xTi0ignPI2ttVplJmj5aJZvu0t4Qx8nQY3NbcFVz5v8Vfff50f\nvnh61s9Pp3McPD7MwePD7D0yyEcf3F7S2BhGzvKK5V3NoX3RezlOg9vYZBrLsmYd9aYaXxGRMjiN\nbeCHUofi8oZwN7jZT3IaZxZMmWyOP/nGvpKgt7Mtwf071/Gx92znnXdsYuvGHhJN9tP8/mPD/Oc/\nf56Tnr+LYWNZlpvxVX3vpZwGt3Qmf9mNjt4SsdZkMF9EBTNcF5FAcRrbOlubSrqH66G1uXixngpx\nna+T+Utn8sxkcnVZIS2LMzmd5X99bS+vnRgB7L9Xv/iOrWy/stfNYu68ZgUAQ2PT/K+vvcqxs+MM\njk7z21/aw0PvvJabjRV1O3+9TExn3Yyl6nsvdfFIs9lKGaZKSh2Cec1QxldEqsqyLLfUod71vaCM\nr8M70mxCDW6BkZrK8Ht/9aIb9PZ1N/Obv3AzN2xePutb972dzfy7D97EndtXAfYLnT/95n6Onx2v\n6bn9QI1tcytnpFlJc1tzMDO+CnxFpKqGxmbcLEG9yxyg9O25MI806/DUeqrBLRgsy+KL3z7olius\nX9HOwz9/Myt7Wuf8ukRTjF96YCs/c99mALI5iz/5+32h+/0/Pzzp3lapw6XKWWJRWuqgjK+IyCW8\nq4rX1rmxDUov1mEeadbuyfiqzjcYnnzlDC8dGgRgw4p2/u3P3URXe3mTCSKRCG+/bYOb+T0/PMWX\nvmdiWeEZeablFXPrbJ8/4+u8WIrHojTFFfiKiFzCG/iu90GpQ0mNb8gyXl5Ocxso4xsE/Rcm+Osf\nHALs7YcffXDborrqP/hTV7Oq184QP3vgHE/v7a/oOf1swFPq0KfA9xJdreWXOgR1ogMo8BWRKjtd\nqO+NRGDNsvpnfFXja/OOtdJIM3/L5vL8n28dIJ3JA/BP37KF1Yv8u9SciPPL79lOPGY//X/5H1/n\n9ODEPF/VGJyMb3d7goSaOS/RWUapg5MsCOoMX1DgKyJVdrKQ8V3R0+qLJ5vSOb7hDXxLanzV3OZr\nf//0UbcZbcfm5dy7Y82Svt/6Fe184C12vW86mw9NyYMT+KrMYXaJppibGJivxjeoW9tAga+IVNFM\nJkf/oN1Q4ocyBygNfMOc8fWWOqTmWFEq9XXqfIpvP3scsDNyH37HNbMuFlioe29cyzUbugF4/eQI\ne49cWPL39LOZTM7dSKbGtsvrbLNrxodTM7N+3i11CGhjGyjwFZEqOt4/Rr6QSdq0qqPOp7HFY1F3\nqH+Y5/gmmqI0xe3HQRlf//rqE0dwkrH/7O0Gna2VmYP97WePl9RxPvKjI+TzjZv1HfA2ts0zBSPM\nnGz42QuT7rXbyy11COgoM1DgKyJVdOTUiHt740p/BL5QfJsuzBnfSCTizvJVc5s/HTw+zKtv2JnY\nrRt72LF5eUW+78DIFHvMARJNMdoKJS+nBybYvf9sRb6/Hw1ohm9ZnHfmZjK5khcLAJlsnkzWrjNX\nxldEZBZHTo+6tzes9EepA9gNPmBf3MPMaXBLKePrO3nL4quPH3b/+/33XVWREoeLdbcncL7r1596\ng0y2Mf9OlIwyU6nDZa1bUWyaPHmudL21tyciqOuKQYGviFSRk/Fd1pksqSmtN6fUIR3ywNdpcFON\nr//see08xwoNbbduXcGmVZ0V+9593S3sNPoAu/Rny/ouwF4284MXTlfs5/iJN/DVKLPLW7+i+M6c\ndxQllL5D1hLgcWbBPbmI+Fo2l+dYv/3EvcFHZQ6AO13CGQ8VVs6LkdRUlrxlEa1CRlEWLpvL83c/\nOgJALBrhvfdcVfGf8cCuTdy6dSVgz2T9d/97NxPTWR7dfYw33bCatgDXcM7GKXVoTcZLRvlJqVW9\nLcRjUbK5vLsh0Cl5KM34Bjd8DO7JRcTXzgxOkM3ZgeVGnzS2OZKFpq6ZBn1bt1xOAJC3LCanswoI\nfOLxl04zMDINwH03rq1aTao38/nArk185fHDTExnefzF07zzjk1V+Zn1cnbIni6zslfZ3rnEolHW\nLm/j+LlxTp5P8ejuY+wxBwBY79m8GeTAV6UOIlIVx8+Nu7eV8fWnDu/aYpU7+EImm+fbu+3xZc2J\nGO+8c1NNfu6bb1rrvvD5wYun3BetjWAmnWNw1H4hsdjFH2Hi1PkOjk7z3MHz7sdfO1lsVtYCCxGR\ni5w4W6wP89NEB/AGviHP+Hpn+arBzRd27z/rjhl76871FRtfNp9EU4x7b7QXY4ym0jzvCXiCzsn2\nAqxeplFm8/HW+aY974p5x91pZbGIyEWcjG9nW4Ludv80tgEkCqUOubzVUJmtherQ2mJfyVsW3/3J\nCQCa4lHesnNdTX/+m29aRyxq13k/9vzJhtnmduZCcSWzH9am+523pGF1b/GFgrfuO8gNggp8RaTi\n8nmLE+ftwHfjyo6qjGFaCu/qZGcuZRiVlDoo41t3rxwedLOTd163umbZXkd3e9JteDt+bpxDp0bn\n+Ypg6PcGvssV+M5nnWfLZld7ko+9Zzsfffc2hsbscpGNqzro6UjW63hLVpdctWEYLwLO36g3gN8B\n/hzIA/uAXzFNszFeaoqE0NmhSbd+duMq/8zvdTjjzMAudwhyvdpSeJvZVONbf062NwK87Zb1dTnD\nT92y3l1k8djzJ7l6fXddzlFJZwpr0+OxCMu7m+t8Gv/raLXfpRtJpTl1PkVfdwvmiWEmCpsuK7VI\npV5qnvE1DKMZwDTN+wr//HPgD4CHTdO8G/vv/IO1PpeIVI63sc1v9b0AyXgx4zsT6oxvMaOo7W31\ndfj0qJthvcnoY2VvfWpRN67qcIPdl14fKJl/G1ROxndlbyuxqN7oLodT53tqYIK8ZfHSoUH3cwp8\nF+4GoNUwjO8ZhvEDwzBuB24yTfPJwue/A9xfh3OJSIUcP+vvwNdb6hDmBre2lmKmW81t9eVkewHe\nftuGOp7EzvoCWMAP9pyq61mWKpvLc74ww1cTHcpXsrp4eIqXC4FvT0fSV1s4F6Me7+9NAP/dNM3/\naxjGFuC7F30+BXTN9Q16elqJxxe/J7qvz39PxH6jx2h+eowur3/IfqJpb2nims19vqvx7e3xNGy0\nN4fmz3K2a2d7SxOpqQwz2fycj0NYHqOlWszjdHogxUuH7Fmp265cxu031Lap7WL3L2vnkR8d4eyF\nSZ5+tZ+H3nt9RcuBavm7dPLcOLnCNIItG3oC83tc73Nee9Vyvv2sPVZv/8kRN/N/+3WrWbGiclsE\n66Eege/rwGEA0zQPGYZxAbjR8/kOYGS2L3QMD0/O9ek59fV1MDAwPv8dQ0yP0fz0GF1e3rI4fGoY\ngKvWdTE4mJrnK2ovPV3Mbp47P05PS/1qfGv5BDfbtbOtEPgOjU5d9ndav+/lWezj9JXHTJwBCm+5\nca0vHut7b1jD3/zwMFMzWb7z1BHedMOainzfWv8u7Xu9OJatqyXui8d2Pn74+9bluSZ+44kj7u1r\n1nXV/WywtOtmPUodfhH4fQDDMNZgB7qPGYZxT+HzPw08eZmvFRGfGxyZYmrGLh+4aq0/G2NKmttC\nvr3NGWmmGt/6mE5n+fE+u5lsZU8L129eVucT2XZtX+WONntqb3+dT7N43okOKnUon7O6GIplUMlE\njGs29NTzWBVRj8D3/wKdhmE8CfwNdiD8CeBThmH8GDsL/UgdziUiFXD8XDHDe9W6OauW6qa0xje8\nzW1QHGmmcWb18ez+c0yn7Rdf9924lqhPyoI6WhPceHUfYDfenRmcmOcr/Kn/gv0uRyRiB3NSHmd1\nsdf2Tb00xYPfHFjz9/dM08wCvzDLp+6t8VFEpAqOnR1zb1+51p+Bb9Jz8Z4JcXMbFEeazaRzZLI5\nmpbQPyELY1kWP3zxNGAvVbnz+tV1PlGpu69fzZ7X7FKBp/f28zNv3lznEy2cs7yir7tFv9sLtG5F\nW8mEnh1bgj3NwRH80F1EfOXIaTvwbUnGWbPcn92/JRnfEI8zA2j3LrFQuUNNHTk9xqkB+x2SW7eu\nLNmM5QfXbuqlt9NeVPDjff2B23KYtyzOFjK+2ti2cN7VxZEIXHeVP8pwlkqBr4hUTDaX51i/Hfhe\ntbaTaNQfb9teTOPMijpairN8NdKstn74UnFU2H03ra3jSWYXjUa46zo7Cz02meGVwxfqfKKFuTA6\n7b6wXb2sPnORg8y7uviqtV013yRYLQp8RaRiTp5PuU80m9f4s8wBLt3cFmZaW1wfY5Npt4zgitUd\nXLHanyOi7rpuNc7L16f2nqnrWRZKjW1Ls3FVJ80JO0lwW2GVdSMI555OEamKI6dH3dt+bWwDSMRV\n6uAoCXy1trhmnt7bTzZnzzC778b6zu2dy/LuFrZu6uHAsWFefeMCw+Mz9HQk632ssjirigHWLFfg\nu1CtzXH+3Qdv4syFCW69pnECX2V8RaRiDhcC30gErvRpBgsg2aTmNke7t9RBNb41kc9bPPGS3dTW\n1hzn1q0r6nyiub3penuGr2XBM68GZ7TZmZKMr0odFmPDyg5uv3aVb8vWFkOBr4hUjNPYtnZ5e0U3\nPVWaxpkVqbmt9vYfG2JwdBqAO69bXfL76Ec3Xb2ctmb77/Mzr/ZjOds2fM4pdejpSPr6eiS1pcBX\nRCpieHyGC2P2k/lmH5c5AMSiEXdeqhZYFANfNbfVxpMvF2tl79lRmY1o1dQUj3Frocbz3PAUR/vr\nv7lrPpZl0V8odVC2V7wU+IpIRZTU967xb5kDQCQScRvcwp7xbU7EiMfsFwFqbqu+0Yk0Lx8eBODq\n9d2BabratX2Ve3v3/rN1PEl5xibSTM5kAY0yk1IKfEWkIg57Al+/Z3yhWO4Q9qkOkUiEjsKYopSa\n26rux/v6yeXtUoG7b/DXwoq5XLWmk77uZgCeO3jO9zN9vZvmVquxTTwU+IpIRTgZ347WJlZ0+381\naCLuZHzDHfhCcXubMr7VZVkWT75iN4e1JOPsNPzd1OYViUTYtc3O+o5PZjhwbKjOJ5rbP+456d4+\n7tkmKaLAV0SWLJPNuastr1rTRSTi/w7gZCHjOxPycWbgCXwnlPGtloGRKZ47eJ5zQ3bd6a5tK33f\n1HYxJ/AF2L3/XB1PMreBkSkOny4Gu2/0jzEwMlXHE4mfqM1RxCOftzgzOMGpgRSnByc4PTBBaipD\nPBYhHo/SFIvS193CLdtXs7Iz6QYMYXf8bMqdSRqEMgfAU+OrjG9vYS7r2GSGmUzOfVEglfHo7mPs\nMQcY9ARfd9/g/6a2i63sbeXKNZ28cWaMl14fYGom69tpCc7f61g0QiyqHJ8U+fM3VqSGLMvixLkU\nu/ef5bmD5xhJzZ/1eux5+220tX1t3LFtFffsWEtrc3j/OpXU964NSOAbd2p8lfFd0VMsTRkYmWJd\nX3sdT9NYBkam2GMOkMtbTE7bzVbr+trYsLKjzidbnF3bVvHGmTHS2Twvvj7Andf5r065uz1JplCD\nnGyKsdPooy8A5VdSG+F9ppbQy+by7N53lu8+d4L+C5Oz3icRj9LVniCbs8jm8sxkciWB0umBCb76\nxBG+9eNj3LtjLffvXEdvZ3Ot/hd8w6nvjUUjbFoVjCd0t7kt5OPMAFb0FMc9nR9W4FsNk1MZnOm3\ntwR4/estW1fw198/RN6y2L3/rC8D31MDKZxRw2+6YTUP7NpU1/OIvyjwldDJ5y2ePXCWbz59jPMX\n1X0t60xy69aVXLW2i7V9bfR1tZRsrLEsi7NDk/SPTPPCgXPsPTLIxHSW6XSO7z53gu+/cJJ33bGJ\nd+zaGJq31yzLcjO+G1a2B6ZuUePMirwZ3/PDqoWspL7uFm6+ejnf+vFxwH5xeP/N/l1RPJ/O1gTb\nr+xl75ELHDw27MsVxsfPFucMX7upt44nET9S4Cuh8vrJEf7ie2bJqJumeJQ7t6/i9m2r2Lyuy11s\nMJtIJMLqZW1cf80qbrpqGTPpHE/tPcP3njvJhbFpsjmLrz91lJcODfLP33kta0MwRufC6DSjhaao\nq9YEo8wBvKUOOSzLCkRDXrWsLAl8Z3/3QxZv+5XL+NqTRwG4/dqVvq2LLdeubavYe+QCFvCTA+d4\n+20b6n2kEsc8ge/GgLwDJbUT7L99ImWanM7yyBOHecKzMSkei3DvjrW8Y9dGutsXl7FIJmLcv3M9\n9920lmf3n+Nvf3iY1FSGY2fH+dQXn+e9d1/J225d39BB1cHjw+7toDS2ASQLGV8Lu+ylKR6MTHU1\ntDY30d7SRGoqwzllfCvOGWEGcHcANrXNZ8eW5SQTMWbSOZ49cNZ3ga+T8e3tTNJZmFEt4lDgKw3v\npUMD/MX3TEY9TWt3Xbea97zpiorV48aiUe68bjXbr1zGX3z3NV46NEg2l+crjx/mzOAEH3q7QTzW\nmKUP+wvzPCPA1o099T3MAnhLMmYy4Q58wc76pqYyKnWosJlMjp8csDedrV7WGpjmz7kkm2LcfHUf\nP953lhPnUpwZnGCNT97dymTznBpIAbAxoA2EUl2N+Uwsgj1b9suPvc5n/+5VN+hd2dPCb3zgRn7p\nga1VaULrakvwr957HQ+981qaE3Yg9fSr/fzPR/YyVVifeTkDI1OBmzWZtywOHLMzvhtWdbgbwILA\nqfEFjTSDYp3v0Ng0Gc02rpg9r51nasb+/XrT9Wsa5t2f27cVG/SePeCfFcanB1PuZrygNNpKbSnj\nKw3p7NAk//sb+zhx3n7lH41E+OnbN/CuOzZVvfkqEomwa/sq1q1o54+++grD4zPsPzrE7375RT7x\n/htmbQRx5nwC7DT6AtOFfPJcilRh29e2gDWRJDwZ3rQCPXeygwUMjk6xepk/MnhB99QrdnlVLBrh\nju2r5rl3cGzd2ENnaxNjkxme3X+Of/KmK30R1B8vqe/trONJxK+U8ZWG85MD5/jUF593g97eziT/\n9oM38r57rqrpxIH1K9r5979wM2v77ADi5PkUv/flFxlJzZTcz5nz6dhjDgQm87vv6AX39rYrAhb4\nevaV0P8AACAASURBVH4XlPEtneygOt/K6L8wweun7IknO7Ysp7MtOO+IzCcWjXJrYSzb4Og0R077\nYy2wN/BVxldmo8BXGkY+b/HVxw/zp9/cz0whkLlxy3L+0y/eypZ13XU5U29nM7/5wZvd2tfzI1P8\n/t++7GZJg84pc0g0RQNXu1ha6qCMb8lIsyFNdqiEp/d6mtoCuKltPrd7Vhj7pdzBmejQ05FsqBca\nUjkKfKUhTExn+KOvvsJ3fnICsN9W/MBbtvCv3ntd3dcKtzbH+cT7r3eD39MDE/zhV152a377ulvY\nafS59w/KlqGZTI5Dp0YAMNb30BQP1uUk6Sl1mNESC1Z6llicC8g7Dn6WzeV55lU78O3tTAauFKgc\nV6zucF8wPXfwPNlcfV9AZnPFxjZle+VygvVMJTKLM4MT/Jf/t4d9R+3pAh2tTfz6z+7grbf4Z4xY\nUzzGr77vOq5aY9ecHe0f5zOP7HXfYn9g1yY+9p7tfOw92wNT3/v6yRGyObuJZNum4ExzcKi5rVRb\nc5zWwnxZTXZYulcOX2Bs0n5n567rVpcswmkUkUiE26+1yx1SUxkOFCa81MvpgQn3mqT5vXI5Cnwl\n0PYfHeK3v/SC+0S9YWU7v/XPbsHY4L9ArDkR5xM/c4O7DtY8OcKf/cMB8oXdmn3dLYHI9Dr2Hy0+\nyQWtvhcurvFVqUMkEnGzd1pisXRPFpraIsBd1/tvrW+llJQ77D9Xx5PA8XOq75X5KfCVwHr8xVP8\n4VdecUsGbt26gt/8+ZtZ1lX5MWWV0tbcxK/97A53U9YL5gDffPponU+1OE7g292e8M0Mz4VIxJXx\nvZgT+A6OTtf9besgGxyZYt8bduPntit6Wd4VnBe0C7Wqt9UNMl88NMB0eu6xjdV0TBMdpAwKfCVw\n8nmLv/r+63zpsdfdbOmDd13BR9+9jWQNpzYsVldbgo+//wb3beVvPnOM5w7WN1OyUMPjM5wurH3e\ntqnXNyUlC1GS8dU4M8Az0syyV1HL4vzolTNYhdv33ri2rmephV2FrG86k+fF1wfmuXf1HD9rT5bo\n6UjSpcY2uQwFvhIoUzNZPvN3e/n+nlMAxGNRPvLua3nwrisCFXyt6m3ll9+znWjhzP/30YMc7ffH\nOKByeGv5rg1gmQNonNlsVmqk2ZJlc3meKkxz6G5PcMPmZXU+UfXddu1K91r2zKv1me6QzeU5ed5+\nMa6NbTIXBb4SGENj0/zul19k7xH7LcSO1iZ+4+du5PZrgzkUftsVvXzg/i2AvWbzs3+3l9GLZvz6\n1X5v4BvQbvWkp9RhRoEvcNFIM9X5LspLhwYZm7A3Rd59wxpi0cZ/mu1sS3DdlfZ14LXjwwyN1f7d\nglMDKbc8R/W9MpfG/xspDeHY2TH+y1/s4WRhKcWa5W38hw/tDNzs2Iu9+aa13LvDnu85kkrzp9/c\nTy7v77fdc/m8W9+7fkV7YN9SVKnDpbwjzTTZYXGeeOk0AJFIY87uvZw7r7Mb+Czgx/tqn/U9WJgp\nDrBlfX3mtkswKPAV39vz2nl+9y9fZDRlZ1G2berh4Z+/KVATEC4nEonwc2+9ms3r7AD+tRMjfOMp\nfze7vXZihPHCmKYgv42rcWaX6mhtojlhvyA4r1m+C3Z6IMXB43YAdsNVy+nt9G+jbaXdsHk5bc12\n38Iz+85iWdY8X1FZBwqPe1M8yua1amyTy1PgK75lWRbfeuYon/vGPjcjd8+ONXZjWHN9l1JUUjwW\n5Zcf3E5Hq/3/9Oju47xyeLDOp7q8nxwoNuLdVlhZGkSJuMaZXcw70kw1vgv33d3H3Nv33hiebC/Y\nAaezwvjc0CRvnKldz0Imm+fQSXuZzpZ1XTTF/d/kLPWjwFd8KZ3J8WffOsDXC9nPSAQ+8JYtfOht\nBvFY4/3a9nQk+ci7t+G0533+Hw4w6MOMWyab5wXT7tpe29fG2sJM4iCKRiPu71Jam9tczmSHwZEp\n35fd+Ekmm+MHz58EYFlnM9uvCO67IYt1x3XFfotaljscOT3qJkecDZkil9N4EYQE3uDoFL/zly/y\nbCGz2JKM8Yn33+CrTWzVsG1TLw++6QoAJqazfO4b+3w3S3Xf0Qvu3OQgZ3sdyUK5gzK+Rc5kh1ze\nYmgsGM2WfvDcwfOMT9rlWPfsWNOQm9rmc+XqTlb12i+cnjt4jkw2z8DIFANVfhHvlDlAcJttpXYU\n+IqvHDw2xH/+8z3uBp6+7mYe/oWdXHdlOLIn77xjE9sL3dHHzo7zyBNH6nyiUt4yh1uvDX7g6zS4\naapD0Ypu70gzTXYoh2VZ/GMh2xuPRXhTiJravCKRCHcWsr4T01m+8O0DfO4b+/jcN/bx6O5jVfu5\nB4/bzbatybhGmcm8FPiKL1iWxXd/coL/8bcvk5qyG6e2X9HLf/xnt7A2gFvBFisaifDQO6+lu92e\nlPDY8yd56VD9BsJ7zaRzvFyoPb5yTWdJgBRUzvY2lToUlY4081+5jR+ZJ0Y4UZg4c9u1KwM76aQS\ndm1b5ZZsOaMnAfaYA1XJ/E7NZDl6xk6UXLOxJ5SZdlkYBb5Sd2OTaf7nI3v5yuOHcRqBH9i1kU+8\n/wbaWxqnia1cHa0JPvrubThVHV949KAvtmi9fHjQLQm4tQHKHKCY8VWpQ9EKz0izc0MKfMvxWCHb\nC/DWnevreJL66+1sZusmu852aiZX9XIt88SIu8FT9b1SDgW+UlevHR/mP33hOTczkEzE+Nh7tvO+\ne64K9St3Y0MPD95VrPf902/Vf76vU+YQAW65ZkVdz1IpCbfGVxlfR3d7wh1Ldfj0SJ1P43/nhifd\nKSzXb17OBr3Vzr07imuandGHO42+qoygPHDcu0xHgW8t1aJ+uxri9T6AhFMmm+Obzxzj27uPuzvt\nN67q4F8+uK1kiH6YOBcQ58nhnbs2YZ4Y4eDxYQ6fGuUbTx3lffdcVZezTUxnePUN+8WJsaGbno5k\nXc5Rac5IMy2wKIpEImy7opfnDp7naP84oxNp+vrqfSr/+v6eU+417MG76/P30292bFlOd3uCkVSa\nfN7iI++6ltXLqlOy5sxN7ulIuo11Un2P7j7GnsKEn51GHw/s2lTX8yyEMr5Sc0dOj/Kfvvg8j3qC\n3p+6ZT3//hduDm3Q++juY5c0gUSjER5617V0eub7emvmaulFc4Bc3v7TaoSmNkfSLXVQxtfL20y6\n7436/M4FweR0hqf39gP2NIydDVICtFTxWJR7Clnf1FTGbVautNGJNKcHJgC7zKGRp/74ycDIlBv0\nQvXqt6tFga/UzHQ6y9/84BD/9Usv0H/B7hbvakvw8f/ven72LVsacj5vOea6iHS3J3noXcX5vn/2\nrf0MjdW23teyLH5YWMMai0bYaTRGmQMUSx1mVONbwhv41uvFVhA8+Uq/OxHk/p3rQ12edbG7b1hD\ntBCIPv7i6ar8jIOeMgfV90q5whlpSE3lLYun9p7hN//Pszz2/Ek3y3vndav49EO3ccPm5XU9n99t\nu6KXd925CbDrff/k72s733f/sSGOn7UzNrduXdFQDYdOqUM2lyefr+2KVT/rbEtwxWq7VnXf0SFy\nPpsn7QfZXJ4fvGA3tbUm4+4YL7H1dCS56Wr72n7o1CgnC1MvKunAMc3vrYe+7hZ2GsX6p2rVb1eL\nanylql47Pszf/vBwyVtdvZ1JPvz2a9gektm883EuIt56qYsvIu++8woOnRrl4PFhjpwe4+9+dIR/\n+uYtNTnft3cfd2+/4/aNNfmZteJkfMEeadac0CXRcd2VyzjaP87UTJbXjg+zoiO8I7pm8/Sr/Vwo\nLPi458Y1+t2ZxZtvWude1x5/6TQfeptRse+dz1tuGc6q3taG6TsIigd2bXKn+wQp6AVlfKUKLMvi\nlcOD/Ne/fIH/9tcvuUFvUzzKu+7YxKf/xW0Kei/ywK5NfOw92/nYe7bP2iQQjUb4yLu3ufNBv/fc\nSfa8dr7q5zp8epTXTtid/TduWR7oFcWzOeXJQj3qCfCFkndi9hw8N8c9wyeTzfPoj48B9ount92y\nob4H8iljQzerl9l9G7v3nXW3PlbCvqNDjKTsTXk3Xq13Deuhr7slcEEvKPCVCppOZ3lq7xk++YXn\n+Z+P7OXwqVH3c7dvW8nvfOR2/sndVyozchnzXUS62krn+37+0QOcqFLTiKMk27ursbK9AyNTnPMs\naHj50GCgGjSqbeOqDjoKjZUKfEs9vfeMm+19y83r6Azxwoq5RCIR3nzTOsDejvj0q/0V+95P7z3j\n3n7T9eHclCeLowikwi4eSdXozg5NcrR/jP1Hh9hjni9ZBBABbjb6eMeujWxa1Vm/QzaQazb28E/v\n28zf/PAw6Uyez/7dq/zHD++ks7XyT7ynzqfcTW1bN/Zw1Zquiv+MevM2gedRja9XNBLhuiuX8eN9\nZznWP8bQ2DS9nc3u58u91l18v8npDP0XJjk7ZP+TzuTZuKqdq9Z0saKnpaQzv5bX03J/Viab4x8K\nLwiTiRhvv3WD+/W5aJRYdY8ZOLu2reKRHx1hJp3jO88e5333L73cYXwyzUuH7GvTlnVdGmMmC6LA\nt4LKnWuXy+eZmMpy4vw454YmaYrHaE7ESGfyZLI5MrnSJ+BYNEJTPEpTPEoiHqU5Eae1OU5LMk5r\nMk5bS5xYtLzk/VKfSCzLYmB0moPHhvj+nlOcuTDhblvznnfX9lX89G0bqja7Mczeest6Tg6keObV\ns1wYm+ZzX9/Hr//sjopPxfj2s42b7QX778DGVR2MHLbrBLdu6AnNC9ZyXX+VHfgCvPrGBXdEVbnX\nOu/9rlzdwYWxmTmnRLS3NHHdlct48K5NPP/a+ZrNCV3ITNInX+lneNzO9t5/8zo6WhPu1zfFo9xw\n1bJAzTStttbmOG/duZ5/+PExRlJpvrv7GHdsXdpkmGf3n3PHK951/eoKnFLCRIHvIswWPDojqSzL\nIpe3ePrVfppiUdLZPIOj0wyPzzCSmmE0NcP4ZKbiuaW25jjtLU10tCboaG2isy1h325por21iY6W\nJl4+PMhrJ0aIRuyL+7vuvOKSuYf5vMXUTJaRlH3e4bEZhsZnODc8yclzKU6cT122Tmvt8jbu2bGG\n265dSUcVMpBii0QifOht13B2aJIjp8d4/eQIX/7H1/nQ24yKzbHsvzDBTwpvb29a1cG1DToq6KYt\nfbxSCHwbZRtdJW27opdIBCzLHmt2z461s47f866wdq6Lzv1m0jlGUjPuZJC5pKYy7N5/lucOnqO1\nOU5Xe+L/b+/Ow6Os7gWOf2fJTBKyh5BASFgCHNlCQQQKsqkILiBSau/V2j60avXWau/T3t5e26ft\n7d7HW6+PVrt4xapdbBFxQy1FcWERQWTHAwGSsCYhZJ9kMtv9451MFiYkgSQzk/f3eR4eZ8nMnLye\n/Ob3nvec38FmtYY+oy9OTDr7fcJ9VrPHF6qzHe+wsXhGfo9eb1aLZ+Tx9scnaXR7efHtI1xZkInT\ncWlj44FglSAw6nDL363oKUl82+jOaOj6bcXs+LQcry/AqJxkRg5NobyqkZMV9Zw+14DX23rB9IV3\nivq+0UENTV4amrzt5ixezMmKBl7ZXIzVagn98/kCPS6T5YizkhAcgX5gZaEE+34SZ7dy/62T+fGz\nO6mqc/Pe7tMkOu2sXFBw2cmvx+vn968eCI3k3/TZkQO2MLwjrvXLV3Zvu9Cg+DjG5KZy5GQNB4ur\n8Hj9nK9twuP1E2dvvcKwflsJh09UYbNZmTwqk4XTcmn2+KisaaK+0dPuPTNTnCyankdOZiI5GYnY\nbVaOna5l//FKjpys4UylC58/QJ3LQ32jh7QkZ2iucaS9u/t0aEHVoul5JCXE9eqCrYFqUHwci2fk\n8fIHx6mud/POrpPccIkVYkrK6jgZ3LTiqvFDZM2I6LGo6TFKKSvwJFAIuIG7tNZHe/MzKqobOVvr\npqba1W6uGhgJbdGpWuLsVqaOyWTGhBwqa5qorG3iXE0TlTVNnD3fQGlZfegSy+lzDWwJXgbsSqLT\nTnqyk7QkB06HncMnqtsFzNQkByvnF5CVloDdZm0399DnD+Dx+mn2+vB4/DQ2e2l0+3A1eWho8lLf\naHxB1LmaqXN5qHN5QkXVLyYQfG9fN+uXDoq3k5+dTH52EqOGpnCqop69x4wC4rFWx28gSE1y8sDn\nCvnVX3bR1Ozjze2l2G1Wbp03+rLed+17RyktM6odTCnIDNXiHIjalTOT3dvCKizI5MjJGtweHw//\ndRfV9W5cTT7sdgvpyfE47Fa27Dtj1EG2wNlKFzt1OU3NvguSXosF6lwequvdXB8cLfX5A5RVuSgp\nqyfObmXmhCEcP1NHeVUjgQBU1blDV7T6QnfKCQLU1Lt5ZfNxABKcdq6fkdej15vdoul5/HPHCRqa\nvLy5vZQFU3NJcPY8BflgT+sCuXmyqE1cgqhJfIHlgENrPVspNRP4dfCxXrF+WzFvf3ySOpcRiO02\nY96szx+g2eOjZaDTYoGSs3W8vLm4R+/vjLORlZZA6qA4MlLjyR+STFZaPJkp8WSmxl9wVtrSHleT\nl8R4Owun5jJrYu8VQHc3+4xEOJgU17s8bD9URklZHYFAgMyUeHIyBoWmZvj8Aew2Cw67jdSUePxe\nH6mDHKQlO8lIjicjxUl6srP9yN/4bK4OBh4J9JExIieZf79tCo/8bQ9uj4/XthZjD5aNuxR7j55j\nww6jKH9akoOv3DR+wI72QocRX9m9Lay2lT2KTtWGbluaQeWlU1JW13ryHABfIMC5mtbdBW1WC35/\ngADGlAmvzx88YT7CodJqPF4/riYPqUlGfDl7vpEHVxZy4Ph5Xnz3KM1ePycrGvjpczv5+q2TGTa4\n99cNdKcm6QvvFIUGK5bNGcmg+LgLXp+RMQibX/pROAlOOzfMGsGL7x6lvtHDxp0nWDpnVI/eo9nj\n48ODxhSsnIxECnJl0bTouWhKfOcAbwForbcrpab31huXV7n4YO8ZahuaaYnPPn8g7DalHRdqtbAA\naclObFYLjW4vdruVsbmpLLoqjyHpiaQkxvUoQWgJlC0rpXs7cXQ6bDgdCQxu876fnZTTrekcWVnJ\nVFR0r0yWJLyRN3Z4Gg+uLOTRNXto9vpZ9/4xPF4fy68e3aMtVKvr3Ty9/hBg9Pe7l04c8HO1nfbW\nxNftlRHfjv65o5TG5vDHJRCAolPV2C7SxyaPzuBcTRNlVY0E2lxZ8vuN5LdluoSrycughLjQAk27\nzcp10/MYPzKDJ9ft40ylizOVLn7y7E7uWTaBqWOzwn7e5bhYLNt/vJLtwYQrf0gS100fHvb1WZmD\nuh07zejaacPZuPMk1fVu/vHRCRZMze1RjNmpy0MnH3MLhw7ok3LRd6Ip8U0Batvc9ymlrFrrC7LT\n9PRE7PauJ8afrWzgtc3H2Lb3TLfrc1oskJ+dzJzCYWSlJ5CVnkh2RiKZqQmhIH220phflHOZFQuy\nspIv6/V9+ZmRaFusiaZjlJWVTFJyPD9ZvR2P18/rW0soKWvgW3dMIzO165OT87VNPPXC7tAVkc9f\nN45503unKH80HaeO6ppbw4vDGRfVbe0N3Y2dLQYlx1/0ebvNxoihyVTWlLdbsGu1WJj7mWF8+4vT\nWf3aft7YUowXf/A1VgrHDuHYKWNjlDi7laREI+mNs1uZXTiMCWONBUtZWck8OiqTx/6+my17TuP2\n+HjipX18bUUhN87u2WjhpXJ7fPxl44eA8f3w4L9OIye789J+A70PXa7PXTOWp1/dj8vt5bkNh/nB\nV2d16wS9tqGZte8dA4yrCDfPH3PBlMWBRPpR34mmxLcWaPt/OmzSC1BV5broG50972L91mK2HSjD\n38kQrs1qwWG3YrVa8Pr8+P0BEpxxzJ6Uw23XjGn/w34/1VUNra8N/negntn3ZMTXrKLxGA3PSOCB\nlYX8/pUD1Dd62Hf0HPc/vIm7bp5AYUHnO+V9criCZ978NDQfsyA3hUXThvXK7xeNx6mthvrWS/Ln\nq1wRaWt/fsF1FTs7mn3FEP4ab6ehKfwCrorqxgsGFXIHD+KrN41n5NAUKirqWDprBI2u5tB6gMLR\nGdy2sKBdCbGFU3PbTTXo+P/hK0sUuRmJ/H1TEf4A/HbtXkpP17Bi3ug+H/V76f2jnK10hdqZnmDv\ntJ9Ee3+PBjfNGcnbH5VQfLaOjz8t57nX93er/NtvX94fKiO3eEY+PreHigpPF6+KTdKPunY5cTOa\nEt8twFJgjVJqFrC3p2/gbvbx542H2bLvTLspC5kpTgoLBjMiJ5mRw9NobHBfcKbYV1MOhOhPE0dm\n8KNVV/GHVw9w+GQN9Y0eHl2zh/zsJGZNyGHmhGxSkxzU1DdzrqaRLfvO8v6e1h2QCoal8G/LJ3e7\nLnSsc7SpTNAsUx3Cevyb89j6aTll5XWMHZ7G8xs0FdVNF/xcVlo8t84dHXatwm3XjGXhtPbTrLoz\nr7aFxWJhycx8MlKc/N/rB/H6AqzfVsL52iZW3Ti+12tYtygtq+PND0sBYwHyinkFffI5ZhJnt3Hf\n8kn86JkdNLq9vPT+McbkpqLyOy+ZuP1gGTuCW7QPz0rilqv7Z7RfDEzRlPiuAxYppbYE76/qyYsr\na5p4fO1eSsvrQ4/lD0ni5tkjmaaysAZHBTo7k5KEVwwUGSnx/MftU3llczHrtxYTAErL6iktK2LN\npiLsdiueDqW7LBZYNmcUN88eYZqkF2RxW3fdMrcgFDe//6XpbNhxAr8/QFJCHEkJcaQlO7kiP71d\nibOOwsXYnsbdGeOzSR3k4PG1+3C5vWw7UEZVnZuvr5jcbrFZb6hpaObxtXtDC/duv24cifHR9JUZ\nu7LSEvjKjeN5Yt0+AgH43asH+O9VM8Ju/VxV5+ZPGzRgXKm9e+mEi/YzIboSNX/FWusAcN+lvPbw\niWqeWLcvND8xOz2BL1w7likFmTL5XZiSzWplxbzRTCnIZNMnp/j4sLGRQAAuSHoHp8Zzz7KJjMkd\neFsSd8Up5cx6LDnRwefmR27kU+Wn819fnMb/rtnD+Vo3n5ZW8/PnP+abn5/SawMYHq+P36zdS2Wt\ncWl99qQcpqveX1BnZleqLK6/Ko8NO05QU9/Mwy98wr9cM5aJozJCP2MsuD0YmmqzfO4o8oYkRarJ\nYoCImsT3Um07cJbV6w+Fzsonjc7g3mUTSezls38hYlFBbioFuanc6fGxp+gcuw5X4PUFGJxqTOvJ\nSkvgivy0diOfZmK3WbFg1LQOV+VFRKfcrCS+d+d0HntxLyVldZypdPGz53byjZWFFAy7vBO4QCDA\n6jc+5ehpY6312OGpfHnJFTKI0gdWLiig6FQNx07XcqqigV//bTfjR6RzdeFQdukKdhedC323j8lN\n5YaZA2/rdNH/YjrxLT5byzNvtCa9S2bms3J+QY9KOAlhBs44GzPGZ7fbWlYYc0cdcTbcHp/M8Y0x\n6clOvnvHNH7/6gF2F52j1uXhl3/axYr5o1k8Iz80va0nAoEAr2w+HipdNjg1nvtXTJZL633EbrPy\nwMpCXth4JFSf91BJFYdKqtr9XGaKk7tuHi/f7aJXxGzi62ry8OS6/Xh9RtJ752LFwqm5EW6VECLW\nOOKsRuIrI74xx+mwcf+Kybzw9hE2fnwSnz/Amk1H2X/sPHfdPIH0ZGe336vR7eX5f+hQApbgtPHg\n56cM+FrWkZaS6OCeZRNZMjOfte8dY9+xytBz4/LSWPCZYVypsojrQRk+IS4mJhPflktRLbsDzS0c\nKkmvEOKSOOw2wCNzfGOU1Wrh9kXjGDM8lWff0jS6vRwqqeKHqz9i2ZyRzC0chtNx8aSptKyO3768\nn7Iqo/KE3WblvlsmkdsHu8SJ8PKzjV0oD5+o5uipGqaMGdwnu/QJEZOJ78adJ9l12Kj/ODxrEHcs\nGhfhFgkhYpUjuMBNpjrEthnjsxk9LIWnXjvIkWApv79sPMIrm4+zcNpwFnxmWLtt1z1eH4dKqtlT\ndI4P9p7BG9y3PicjkfuWT5JFVBEyLi+NcXlpkW6GGMBiMvH9+6YiwLjMdd/ySaZdmCOEuHwt8UOm\nOsS+wakJfOf2qbzxYSlvfFiCu9lHQ5OX17cW8/rWYuLsVtKTnaQkOjhRXo+7wyj/7Ek5fPH6ccQ7\nYvKrUQjRDTH5192ymO3LSxRDL3PbYCGEuTmDC5c6JkEiNtmsVpbOHsm103J5d/dp/rnTKJcFRim/\n8qpGyqva7zY3JC2BpXNGMmfy0Eg0WQjRjyyBTrb0FUIIIYQQYiCRGi1CCCGEEMIUJPEVQgghhBCm\nIImvEEIIIYQwBUl8hRBCCCGEKUjiK4QQQgghTEESXyGEEEIIYQoxWcf3UiilrMCTQCHgBu7SWh+N\nbKuig1JqF1ATvHsM+AXwR8AP7Ae+rrU2Zd07pdRM4Jda64VKqTGEOS5KqbuBewAv8FOt9fqINTgC\nOhyjqcBrwJHg009qrdeY+RgppeKA1cAIwAn8FDhEDPQliZudk7jZOYmbXZO4eXF9GTfNNOK7HHBo\nrWcD3wV+HeH2RAWlVDyA1nph8N9XgUeAh7TW8wALcEsk2xgpSqnvAE9h/NFBmOOilMoBvgHMBhYD\nv1BKOSLR3kgIc4yuBB5p05/WmP0YAXcAFcF+swR4AiP+xEJfkrgZhsTNzknc7JrEzW7ps7hpmhFf\nYA7wFoDWertSanqE2xMtpgCJSql/YPSH7wHTtNbvB59/E7geeDlC7YukImAF8Hzwfrjj4gO2aK09\ngEcpVYQxOrazvxsbIR2P0ZXAOKXULRijF98EZmDuY7QGeDF42wp4iJ2+JHEzPImbnZO42TWJm13r\ns7hpphHfFKC2zX1f8DKe2TUAD2utFwP3An/u8Hw9kNrvrYoCWuuXMC6dtLC0uV2HcVxSaL3c2fZx\nUwhzjLYD39Zaz8e4/PtDIBlzH6MGrXW9UioZI5h/n/axN5r7ksTN8CRudkLiZtckbnatL+Omazoq\nJgAAA4ZJREFUmQJYLUZHamHVWvsj1Zgocphg0NZaHwEqgew2zycD1RFoVzRq219SMI5Lx36VDFT1\nZ6OizDqt9Sctt4GpyDFCKZUHvAM8p7X+K7HTlyRuhidxs/tipa9HksTNMPoqbpop8d0C3AiglJoF\n7I1sc6LGKoLz9pRSwzA6zQal1Pzg8zcA73fyWrP5JMxx+QiYq5RyKqVSgfEYk+7N6i2l1FXB29dh\nXG4y9TFSSmUDG4DvaK3/GHw4VvqSxM3wJG52X6z09UiSuNlBX8ZNM83xXQcsUkptCd5fFcnGRJGn\ngWeUUi1BehXG6MVTwQniB2mdZ2NWLSuzv0WH4xJcUfoY8AHGieRDWuvmCLUzklqO0b3AE0opD3AG\nuCd4ucrMx+ghjEtvP1BK/SD42IPAYzHQlyRuhidxs2sSN7smcbNzfRY3LYGAKautCCGEEEIIkzHT\nVAchhBBCCGFikvgKIYQQQghTkMRXCCGEEEKYgiS+QgghhBDCFCTxFUIIIYQQpiCJrxBCCCGEMAVJ\nfIVpKKUWKKVeu8TXTldKbertNgkhRLST2CkGEkl8hRBCCCGEKZhp5zYhAIYqpTYAOcA24H5gMfAT\njBPBY8DXtNblSqlFwCOAGzgAoJQqAN7RWo8I3p8P/KfW+sZ+/02EEKL/SOwUA4KM+AqzGQvcrbUu\nxNgO8SHgd8AtWuspwBbgN8EtEZ8FvqC1ng7UAgGt9VHguFJqYfD9vgw809+/hBBC9DOJnWJAkMRX\nmM3bWuuS4O0/Y+z9vV1rXRp87A/AtcBk4IzW+mDw8acBS/D2auBOpVQCcA3wcr+0XAghIkdipxgQ\nJPEVZuNtc9sKBGgNyi2P2cM87mtz+0VgEbASWK+19vRNU4UQImpI7BQDgiS+wmwWKKWGKaWswJeA\nXwGzlFIjgs/fA7wD7AWGKKWmBh+/veUNtNYu4E3g58Af+6vhQggRQRI7xYAgia8wkwDGQos/YQTn\nE8D/YATsdUqp/cA84F6ttRf4AvCMUupjID34+hZ/A2q11jv6sf1CCBEJEjvFgGEJBAJd/5QQIkQp\nZQN+BpzVWj8a6fYIIUQskNgpooGUMxOi53YC5cCySDdECCFiiMROEXEy4iuEEEIIIUxB5vgKIYQQ\nQghTkMRXCCGEEEKYgiS+QgghhBDCFCTxFUIIIYQQpiCJrxBCCCGEMAVJfIUQQgghhCn8Pz6oOsFZ\nihwcAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe', order=8)\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- It's **low bias** because the models match the data quite well!\n", + "- It's **high variance** because the models are widely different depending on which observations happen to be available in that universe. (For a body weight of 100, the brain weight prediction would be 40 in one universe and 0 in the other universe!)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Can we find a middle ground?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Perhaps we can create a model that has **less bias than the linear model**, and **less variance than the eighth order polynomial**?\n", + "\n", + "Let's try a second order polynomial instead:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(-10, 250)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nlD/47E+Hhm01OLbT4I31tmpt7+KRDXt48tWD9KRWRxfm5/L+G+dxz9o55OflUlPTdEn96VCH5NdD\nCLfGGJ8F3gM8BbwC/EUIoQgYBywluahP0hhz77p5rF1aBYyMhXvtHd1869FtvJYK9rk5OXzirsXc\nfvWsLFcmSaNTIpFgY6zhX361vfdwJkgOsnziriWXdXrbUIXk1AZI/Anw9yGEQmAb8FBqd4uvAc+R\n3JLuARftSWPXSAjHkDxi+msPbWb/seQCvfFF+Xz+/uUsm1+R5cokaXQ6WtvC95/cztY9p6dWTC4t\n4rfuXMLqxVPIyck5x1dfuIyH5BjjXuCG1Mc7gNsGeM63gG9luhZJuhx2Hmrgf/749AK9aRXj+bcf\nWcm0ivFZrkySRp/2zm5+/sJeHn9lP13dyXHXvNwc7lk7h/ffMI+iwotfV3EunrgnSRfguTcP870n\nYm9HvWx+BZ+/bxnjxw3vBXqSNNIkEgk2bT/OD57azonG9t7rV8wp45N3B2ZMyezCbkOyJA1Cd08P\nP3x6J7/aeLD32p1rZvEbdywiL9cT9CTpcjpa28I/P7mdLX2mVkwqKeQ371jM2qVTL/vUioEYkiXp\nPJpbO/m7n25h297kxjv5eTl86p7AzStnZLkySRpd2ju6+VlqakV3T/KOXW5ODneumcV9N82nuGjo\noqshWZLO4cCxZv72XzdzvCG5lVvphEL+zYdWsGimJ+hJ0uWSSCR49Z1j/PDpndQ19Z9a8Ym7ljCz\nsmTIazIkS9JZbHznGN96dBsdnckt3udOm8gXP7SCitJxWa5MkkaPg8ea+edfbeed/fW918onFvEb\ndyzi2iuGZmrFQAzJkpSmpyfBw8/t5tEX9/Veu2H5NH77nkBhQWZWUUvSWHOyrZOfPLeHZzYd6j0Q\nJC83h7vXzub9N8xjXGF2Y6ohWZL6aG7t5H8/srV3sUhuTg6/ccci7lwzK2ujGZI0mvT0JFi/+TA/\nfnY3za2dvddXLJjMb925eNhsp2lIlqSU/dVN/M8fv9U7/7ikuIDP37eMpfM8IESSLoftB+r5519t\nZ391c++1yrJx/Oa7FnPVost/IMilMCRLEvDS1qN897F36Og6Pf/4Cx9czpRJI+MEQEkazk40tPHg\nr3fyytvHeq8VFeTxvhvmcve1synIH35T2QzJksa0ru7k/sdPvXZ6/+MbV0zjU3c7/1iSLlV7ZzeP\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.lmplot(x='body', y='brain', data=mammals, ci=None, col='universe', order=2)\n", + "sns.plt.xlim(-10, 200)\n", + "sns.plt.ylim(-10, 250)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This seems better. In both the left and right plots, **it fits the data pretty well, but not too well**.\n", + "\n", + "This is the essence of the **bias-variance tradeoff**: You are seeking a model that appropriately balances bias and variance, and thus will generalize to new data (known as \"out-of-sample\" data)." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/08_knn_sklearn.ipynb b/notebooks/08_knn_sklearn.ipynb new file mode 100644 index 0000000..e9e9208 --- /dev/null +++ b/notebooks/08_knn_sklearn.ipynb @@ -0,0 +1,906 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# K-nearest neighbors and scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "1. Review of the iris dataset\n", + "2. Human learning on the iris dataset\n", + "3. K-nearest neighbors (KNN) classification\n", + "4. Review of supervised learning\n", + "5. Benefits and drawbacks of scikit-learn\n", + "6. Requirements for working with data in scikit-learn\n", + "7. scikit-learn's 4-step modeling pattern\n", + "8. Tuning a KNN model\n", + "9. Comparing KNN with other models\n", + "\n", + "## Lesson goals\n", + "\n", + "1. Learn how the modeling process works\n", + "2. Learn how scikit-learn works\n", + "3. Learn how KNN works" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of the iris dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read the iris data into a DataFrame\n", + "import pandas as pd\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'\n", + "col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species']\n", + "iris = pd.read_csv(url, header=None, names=col_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspecies
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Terminology\n", + "\n", + "- **150 observations** (n=150): each observation is one iris flower\n", + "- **4 features** (p=4): sepal length, sepal width, petal length, and petal width\n", + "- **Response**: iris species\n", + "- **Classification problem** since response is categorical" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Human learning on the iris dataset\n", + "\n", + "How did we (as humans) predict the species of an iris?\n", + "\n", + "1. We observed that the different species had (somewhat) dissimilar measurements.\n", + "2. We focused on features that seemed to correlate with the response.\n", + "3. We created a set of rules (using those features) to predict the species of an unknown iris.\n", + "\n", + "We assumed that if an **unknown iris** has measurements similar to **previous irises**, then its species is most likely the same as those previous irises." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# increase default figure and font sizes for easier viewing\n", + "plt.rcParams['figure.figsize'] = (6, 4)\n", + "plt.rcParams['font.size'] = 14\n", + "\n", + "# create a custom colormap\n", + "from matplotlib.colors import ListedColormap\n", + "cmap_bold = ListedColormap(['#FF0000', '#00FF00', '#0000FF'])" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# map each iris species to a number\n", + "iris['species_num'] = iris.species.map({'Iris-setosa':0, 'Iris-versicolor':1, 'Iris-virginica':2})" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n3CG9m9oAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# create a scatter plot of PETAL LENGTH versus PETAL WIDTH and color by SPECIES\n", + "iris.plot(kind='scatter', x='petal_length', y='petal_width', c='species_num', colormap=cmap_bold)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nSUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# create a scatter plot of SEPAL LENGTH versus SEPAL WIDTH and color by SPECIES\n", + "iris.plot(kind='scatter', x='sepal_length', y='sepal_width', c='species_num', colormap=cmap_bold)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## K-nearest neighbors (KNN) classification" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Pick a value for K.\n", + "2. Search for the K observations in the data that are \"nearest\" to the measurements of the unknown iris.\n", + " - Euclidian distance is often used as the distance metric, but other metrics are allowed.\n", + "3. Use the most popular response value from the K \"nearest neighbors\" as the predicted response value for the unknown iris." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN classification map for iris (K=1)\n", + "\n", + "![1NN classification map](images/iris_01nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN classification map for iris (K=5)\n", + "\n", + "![5NN classification map](images/iris_05nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN classification map for iris (K=15)\n", + "\n", + "![15NN classification map](images/iris_15nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN classification map for iris (K=50)\n", + "\n", + "![50NN classification map](images/iris_50nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** What's the \"best\" value for K in this case?\n", + "\n", + "**Answer:** The value which produces the most accurate predictions on **unseen data**. We want to create a model that generalizes!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of supervised learning\n", + "\n", + "![Supervised learning diagram](images/supervised_learning.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Benefits and drawbacks of scikit-learn\n", + "\n", + "**Benefits:**\n", + "\n", + "- Consistent interface to machine learning models\n", + "- Provides many tuning parameters but with sensible defaults\n", + "- Exceptional documentation\n", + "- Rich set of functionality for companion tasks\n", + "- Active community for development and support\n", + "\n", + "**Potential drawbacks:**\n", + "\n", + "- Harder (than R) to get started with machine learning\n", + "- Less emphasis (than R) on model interpretability\n", + "\n", + "Ben Lorica: [Six reasons why I recommend scikit-learn](http://radar.oreilly.com/2013/12/six-reasons-why-i-recommend-scikit-learn.html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Requirements for working with data in scikit-learn\n", + "\n", + "1. Features and response should be **separate objects**\n", + "2. Features and response should be entirely **numeric**\n", + "3. Features and response should be **NumPy arrays** (or easily converted to NumPy arrays)\n", + "4. Features and response should have **specific shapes** (outlined below)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspeciesspecies_num
05.13.51.40.2Iris-setosa0
14.93.01.40.2Iris-setosa0
24.73.21.30.2Iris-setosa0
34.63.11.50.2Iris-setosa0
45.03.61.40.2Iris-setosa0
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species \\\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa \n", + "1 4.9 3.0 1.4 0.2 Iris-setosa \n", + "2 4.7 3.2 1.3 0.2 Iris-setosa \n", + "3 4.6 3.1 1.5 0.2 Iris-setosa \n", + "4 5.0 3.6 1.4 0.2 Iris-setosa \n", + "\n", + " species_num \n", + "0 0 \n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iris.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# store feature matrix in \"X\"\n", + "feature_cols = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width']\n", + "X = iris[feature_cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# alternative ways to create \"X\"\n", + "X = iris.drop(['species', 'species_num'], axis=1)\n", + "X = iris.loc[:, 'sepal_length':'petal_width']\n", + "X = iris.iloc[:, 0:4]" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# store response vector in \"y\"\n", + "y = iris.species_num" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n" + ] + } + ], + "source": [ + "# check X's type\n", + "print type(X)\n", + "print type(X.values)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n" + ] + } + ], + "source": [ + "# check y's type\n", + "print type(y)\n", + "print type(y.values)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(150, 4)\n" + ] + } + ], + "source": [ + "# check X's shape (n = number of observations, p = number of features)\n", + "print X.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(150L,)\n" + ] + } + ], + "source": [ + "# check y's shape (single dimension with length n)\n", + "print y.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## scikit-learn's 4-step modeling pattern" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Step 1:** Import the class you plan to use" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.neighbors import KNeighborsClassifier" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Step 2:** \"Instantiate\" the \"estimator\"\n", + "\n", + "- \"Estimator\" is scikit-learn's term for \"model\"\n", + "- \"Instantiate\" means \"make an instance of\"" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "sklearn.neighbors.classification.KNeighborsClassifier" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# make an instance of a KNeighborsClassifier object\n", + "knn = KNeighborsClassifier(n_neighbors=1)\n", + "type(knn)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Created an object that \"knows\" how to do K-nearest neighbors classification, and is just waiting for data\n", + "- Name of the object does not matter\n", + "- Can specify tuning parameters (aka \"hyperparameters\") during this step\n", + "- All parameters not specified are set to their defaults" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_neighbors=1, p=2, weights='uniform')\n" + ] + } + ], + "source": [ + "print knn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Step 3:** Fit the model with data (aka \"model training\")\n", + "\n", + "- Model is \"learning\" the relationship between X and y in our \"training data\"\n", + "- Process through which learning occurs varies by model\n", + "- Occurs in-place" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_neighbors=1, p=2, weights='uniform')" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "knn.fit(X, y)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Once a model has been fit with data, it's called a \"fitted model\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Step 4:** Predict the response for a new observation\n", + "\n", + "- New observations are called \"out-of-sample\" data\n", + "- Uses the information it learned during the model training process" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([2], dtype=int64)" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "knn.predict([3, 5, 4, 2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Returns a NumPy array, and we keep track of what the numbers \"mean\"\n", + "- Can predict for multiple observations at once" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([2, 1], dtype=int64)" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_new = [[3, 5, 4, 2], [5, 4, 3, 2]]\n", + "knn.predict(X_new)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tuning a KNN model" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1, 1], dtype=int64)" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# instantiate the model (using the value K=5)\n", + "knn = KNeighborsClassifier(n_neighbors=5)\n", + "\n", + "# fit the model with data\n", + "knn.fit(X, y)\n", + "\n", + "# predict the response for new observations\n", + "knn.predict(X_new)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** Which model produced the correct predictions for the two unknown irises?\n", + "\n", + "**Answer:** We don't know, because these are **out-of-sample observations**, meaning that we don't know the true response values. Our goal with supervised learning is to build models that generalize to out-of-sample data. However, we can't truly measure how well our models will perform on out-of-sample data.\n", + "\n", + "**Question:** Does that mean that we have to guess how well our models are likely to do?\n", + "\n", + "**Answer:** Thankfully, no. In the next class, we'll discuss **model evaluation procedures**, which allow us to use our existing labeled data to estimate how well our models are likely to perform on out-of-sample data. These procedures will help us to tune our models and choose between different types of models." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0. , 0.8, 0.2],\n", + " [ 0. , 1. , 0. ]])" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate predicted probabilities of class membership\n", + "knn.predict_proba(X_new)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing KNN with other models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Advantages of KNN:**\n", + "\n", + "- Simple to understand and explain\n", + "- Model training is fast\n", + "- Can be used for classification and regression\n", + "\n", + "**Disadvantages of KNN:**\n", + "\n", + "- Must store all of the training data\n", + "- Prediction phase can be slow when n is large\n", + "- Sensitive to irrelevant features\n", + "- Sensitive to the scale of the data\n", + "- Accuracy is (generally) not competitive with the best supervised learning methods" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/08_nba_knn.ipynb b/notebooks/08_nba_knn.ipynb new file mode 100644 index 0000000..587abf5 --- /dev/null +++ b/notebooks/08_nba_knn.ipynb @@ -0,0 +1,538 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# KNN exercise with NBA player data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "- NBA player statistics from 2014-2015 (partial season): [data](https://github.com/justmarkham/DAT4-students/blob/master/kerry/Final/NBA_players_2015.csv), [data dictionary](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/nba_paper.pdf)\n", + "- **Goal:** Predict player position using assists, steals, blocks, turnovers, and personal fouls" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 1: Read the data into Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read the data into a DataFrame\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT4-students/master/kerry/Final/NBA_players_2015.csv'\n", + "nba = pd.read_csv(url, index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index([u'season_end', u'player', u'pos', u'age', u'bref_team_id', u'g', u'gs',\n", + " u'mp', u'fg', u'fga', u'fg_', u'x3p', u'x3pa', u'x3p_', u'x2p', u'x2pa',\n", + " u'x2p_', u'ft', u'fta', u'ft_', u'orb', u'drb', u'trb', u'ast', u'stl',\n", + " u'blk', u'tov', u'pf', u'pts', u'G', u'MP', u'PER', u'TS%', u'3PAr',\n", + " u'FTr', u'TRB%', u'AST%', u'STL%', u'BLK%', u'TOV%', u'USG%', u'OWS',\n", + " u'DWS', u'WS', u'WS/48', u'OBPM', u'DBPM', u'BPM', u'VORP'],\n", + " dtype='object')" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the columns\n", + "nba.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "G 200\n", + "F 199\n", + "C 79\n", + "dtype: int64" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the positions\n", + "nba.pos.value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 2: Create X and y\n", + "\n", + "Use the following features: assists, steals, blocks, turnovers, personal fouls" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# map positions to numbers\n", + "nba['pos_num'] = nba.pos.map({'C':0, 'F':1, 'G':2})" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create feature matrix (X)\n", + "feature_cols = ['ast', 'stl', 'blk', 'tov', 'pf']\n", + "X = nba[feature_cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# alternative way to create X\n", + "X = nba.loc[:, 'ast':'pf']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create response vector (y)\n", + "y = nba.pos_num" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 3: Train a KNN model (K=5)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# import class\n", + "from sklearn.neighbors import KNeighborsClassifier" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# instantiate with K=5\n", + "knn = KNeighborsClassifier(n_neighbors=5)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_neighbors=5, p=2, weights='uniform')" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit with data\n", + "knn.fit(X, y)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 4: Predict player position and calculate predicted probability of each position\n", + "\n", + "Predict for a player with these statistics: 1 assist, 1 steal, 0 blocks, 1 turnover, 2 personal fouls" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a list to represent a player\n", + "player = [1, 1, 0, 1, 2]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([2], dtype=int64)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# make a prediction\n", + "knn.predict(player)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0. , 0.2, 0.8]])" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate predicted probabilities\n", + "knn.predict_proba(player)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 5: Repeat steps 3 and 4 using K=50" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1], dtype=int64)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# repeat for K=50\n", + "knn = KNeighborsClassifier(n_neighbors=50)\n", + "knn.fit(X, y)\n", + "knn.predict(player)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.06, 0.62, 0.32]])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate predicted probabilities\n", + "knn.predict_proba(player)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: Explore the features to decide which ones are predictive" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# increase default figure and font sizes for easier viewing\n", + "plt.rcParams['figure.figsize'] = (6, 4)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "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", + "
countmeanstdmin25%50%75%max
pos
C790.9455700.85826300.400.801.154.4
F1991.1733671.08625200.450.901.507.3
G2002.7290002.12828701.102.253.8010.2
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "pos \n", + "C 79 0.945570 0.858263 0 0.40 0.80 1.15 4.4\n", + "F 199 1.173367 1.086252 0 0.45 0.90 1.50 7.3\n", + "G 200 2.729000 2.128287 0 1.10 2.25 3.80 10.2" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# description of assists grouped by position\n", + "nba.groupby('pos').ast.describe().unstack()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of assists grouped by position\n", + "nba.boxplot(column='ast', by='pos')" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ],\n", + " [,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of assists grouped by position\n", + "nba.hist(column='ast', by='pos', sharex=True)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/08_pandas_review.ipynb b/notebooks/08_pandas_review.ipynb new file mode 100644 index 0000000..cee0198 --- /dev/null +++ b/notebooks/08_pandas_review.ipynb @@ -0,0 +1,709 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Pandas Review" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + "
countrybeer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcoholcontinent
0Afghanistan0000.0AS
1Albania89132544.9EU
2Algeria250140.7AF
3Andorra24513831212.4EU
4Angola21757455.9AF
\n", + "
" + ], + "text/plain": [ + " country beer_servings spirit_servings wine_servings \\\n", + "0 Afghanistan 0 0 0 \n", + "1 Albania 89 132 54 \n", + "2 Algeria 25 0 14 \n", + "3 Andorra 245 138 312 \n", + "4 Angola 217 57 45 \n", + "\n", + " total_litres_of_pure_alcohol continent \n", + "0 0.0 AS \n", + "1 4.9 EU \n", + "2 0.7 AF \n", + "3 12.4 EU \n", + "4 5.9 AF " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/drinks.csv'\n", + "df = pd.read_csv(url).head(5).copy()\n", + "df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For each of the following lines of code:\n", + "\n", + "- What the **data type** of the object that is returned?\n", + "- What is the **shape** of the object that is returned?\n", + "\n", + "\n", + "1. `df`\n", + "2. `df.continent`\n", + "3. `df['continent']`\n", + "4. `df[['country', 'continent']]`\n", + "5. `df[[False, True, False, True, False]]`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 1" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
countrybeer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcoholcontinent
0Afghanistan0000.0AS
1Albania89132544.9EU
2Algeria250140.7AF
3Andorra24513831212.4EU
4Angola21757455.9AF
\n", + "
" + ], + "text/plain": [ + " country beer_servings spirit_servings wine_servings \\\n", + "0 Afghanistan 0 0 0 \n", + "1 Albania 89 132 54 \n", + "2 Algeria 25 0 14 \n", + "3 Andorra 245 138 312 \n", + "4 Angola 217 57 45 \n", + "\n", + " total_litres_of_pure_alcohol continent \n", + "0 0.0 AS \n", + "1 4.9 EU \n", + "2 0.7 AF \n", + "3 12.4 EU \n", + "4 5.9 AF " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "(5, 6)\n" + ] + } + ], + "source": [ + "print type(df)\n", + "print df.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 2" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0 AS\n", + "1 EU\n", + "2 AF\n", + "3 EU\n", + "4 AF\n", + "Name: continent, dtype: object" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.continent" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "(5L,)\n" + ] + } + ], + "source": [ + "print type(df.continent)\n", + "print df.continent.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 3" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0 AS\n", + "1 EU\n", + "2 AF\n", + "3 EU\n", + "4 AF\n", + "Name: continent, dtype: object" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['continent']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "(5L,)\n" + ] + } + ], + "source": [ + "print type(df['continent'])\n", + "print df['continent'].shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 4" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "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", + "
countrycontinent
0AfghanistanAS
1AlbaniaEU
2AlgeriaAF
3AndorraEU
4AngolaAF
\n", + "
" + ], + "text/plain": [ + " country continent\n", + "0 Afghanistan AS\n", + "1 Albania EU\n", + "2 Algeria AF\n", + "3 Andorra EU\n", + "4 Angola AF" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[['country', 'continent']]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "(5, 2)\n" + ] + } + ], + "source": [ + "print type(df[['country', 'continent']])\n", + "print df[['country', 'continent']].shape" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "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", + "
countrycontinent
0AfghanistanAS
1AlbaniaEU
2AlgeriaAF
3AndorraEU
4AngolaAF
\n", + "
" + ], + "text/plain": [ + " country continent\n", + "0 Afghanistan AS\n", + "1 Albania EU\n", + "2 Algeria AF\n", + "3 Andorra EU\n", + "4 Angola AF" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# equivalent\n", + "cols = ['country', 'continent']\n", + "df[cols]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Question 5" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "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", + "
countrybeer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcoholcontinent
1Albania89132544.9EU
3Andorra24513831212.4EU
\n", + "
" + ], + "text/plain": [ + " country beer_servings spirit_servings wine_servings \\\n", + "1 Albania 89 132 54 \n", + "3 Andorra 245 138 312 \n", + "\n", + " total_litres_of_pure_alcohol continent \n", + "1 4.9 EU \n", + "3 12.4 EU " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[[False, True, False, True, False]]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "(2, 6)\n" + ] + } + ], + "source": [ + "print type(df[[False, True, False, True, False]])\n", + "print df[[False, True, False, True, False]].shape" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "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", + "
countrybeer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcoholcontinent
1Albania89132544.9EU
3Andorra24513831212.4EU
\n", + "
" + ], + "text/plain": [ + " country beer_servings spirit_servings wine_servings \\\n", + "1 Albania 89 132 54 \n", + "3 Andorra 245 138 312 \n", + "\n", + " total_litres_of_pure_alcohol continent \n", + "1 4.9 EU \n", + "3 12.4 EU " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# equivalent\n", + "df[df.continent=='EU']" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/09_model_evaluation.ipynb b/notebooks/09_model_evaluation.ipynb new file mode 100644 index 0000000..06fcd9e --- /dev/null +++ b/notebooks/09_model_evaluation.ipynb @@ -0,0 +1,1112 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Evaluation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of last class\n", + "\n", + "- Goal was to predict the **response value** of an **unknown observation**\n", + " - predict the species of an unknown iris\n", + " - predict the position of an unknown NBA player\n", + "- Made predictions using KNN models with **different values of K**\n", + "- Need a way to choose the **\"best\" model**: the one that \"generalizes\" to \"out-of-sample\" data\n", + "\n", + "**Solution:** Create a procedure that **estimates** how well a model is likely to perform on out-of-sample data and use that to choose between models.\n", + "\n", + "**Note:** These procedures can be used with **any machine learning model**, not only KNN." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluation procedure #1: Train and test on the entire dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Train the model on the **entire dataset**.\n", + "2. Test the model on the **same dataset**, and evaluate how well we did by comparing the **predicted** response values with the **true** response values." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read the NBA data into a DataFrame\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT4-students/master/kerry/Final/NBA_players_2015.csv'\n", + "nba = pd.read_csv(url, index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# map positions to numbers\n", + "nba['pos_num'] = nba.pos.map({'C':0, 'F':1, 'G':2})" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create feature matrix (X)\n", + "feature_cols = ['ast', 'stl', 'blk', 'tov', 'pf']\n", + "X = nba[feature_cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create response vector (y)\n", + "y = nba.pos_num" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN (K=50)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1,\n", + " 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 2, 1, 2, 1, 1, 2,\n", + " 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 2, 2,\n", + " 1, 2, 1, 1, 2, 2, 1, 2, 1, 1, 1, 2, 1, 2, 0, 1, 1, 1, 1, 2, 1, 2, 2,\n", + " 1, 2, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 2, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1,\n", + " 2, 2, 2, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 2, 1, 1, 2, 1, 2, 2, 1, 2, 1,\n", + " 1, 2, 2, 1, 1, 2, 0, 2, 1, 2, 2, 2, 2, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1,\n", + " 0, 2, 0, 1, 1, 1, 1, 1, 2, 0, 1, 0, 1, 2, 1, 1, 1, 2, 2, 2, 2, 1, 1,\n", + " 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 0, 0, 1, 1, 2, 1, 2,\n", + " 2, 2, 1, 1, 1, 2, 0, 1, 1, 0, 2, 1, 2, 2, 2, 2, 1, 2, 1, 1, 1, 1, 2,\n", + " 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 0, 0, 1, 2, 0, 1, 2, 1, 1, 1, 1,\n", + " 2, 2, 1, 1, 1, 1, 2, 1, 2, 2, 1, 2, 2, 1, 0, 1, 1, 1, 2, 2, 2, 0, 0,\n", + " 2, 2, 2, 1, 2, 1, 2, 1, 2, 1, 1, 2, 2, 1, 2, 1, 1, 2, 1, 0, 1, 1, 1,\n", + " 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1,\n", + " 0, 1, 1, 1, 2, 2, 2, 1, 2, 1, 1, 1, 2, 0, 1, 1, 2, 1, 1, 2, 1, 1, 2,\n", + " 2, 2, 2, 1, 2, 1, 0, 2, 0, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 2,\n", + " 1, 1, 2, 2, 1, 2, 1, 2, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 0, 2, 1, 1, 2,\n", + " 1, 2, 2, 2, 1, 1, 2, 2, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 0,\n", + " 2, 2, 1, 2, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 2, 1, 2, 1,\n", + " 2, 0, 1, 2, 1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 1, 2, 2, 0, 1, 1, 1,\n", + " 2, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1], dtype=int64)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# import the class\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "\n", + "# instantiate the model\n", + "knn = KNeighborsClassifier(n_neighbors=50)\n", + "\n", + "# train the model on the entire dataset\n", + "knn.fit(X, y)\n", + "\n", + "# predict the response values for the observations in X (\"test the model\")\n", + "knn.predict(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# store the predicted response values\n", + "y_pred_class = knn.predict(X)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To evaluate a model, we also need an **evaluation metric:**\n", + "\n", + "- Numeric calculation used to **quantify** the performance of a model\n", + "- Appropriate metric depends on the **goals** of your problem\n", + "\n", + "Most common choices for classification problems:\n", + "\n", + "- **Classification accuracy**: percentage of correct predictions (\"reward function\" since higher is better)\n", + "- **Classification error**: percentage of incorrect predictions (\"loss function\" since lower is better)\n", + "\n", + "In this case, we'll use classification accuracy." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.665271966527\n" + ] + } + ], + "source": [ + "# compute classification accuracy\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This is known as **training accuracy** because we are evaluating the model on the same data we used to train the model." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### KNN (K=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.0\n" + ] + } + ], + "source": [ + "knn = KNeighborsClassifier(n_neighbors=1)\n", + "knn.fit(X, y)\n", + "y_pred_class = knn.predict(X)\n", + "print metrics.accuracy_score(y, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Problems with training and testing on the same data\n", + "\n", + "- Goal is to estimate likely performance of a model on **out-of-sample data**\n", + "- But, maximizing training accuracy rewards **overly complex models** that won't necessarily generalize\n", + "- Unnecessarily complex models **overfit** the training data:\n", + " - Will do well when tested using the in-sample data\n", + " - May do poorly on out-of-sample data\n", + " - Learns the \"noise\" in the data rather than the \"signal\"\n", + " - From Quora: [What is an intuitive explanation of overfitting?](http://www.quora.com/What-is-an-intuitive-explanation-of-overfitting/answer/Jessica-Su)\n", + "\n", + "**Thus, training accuracy is not a good estimate of out-of-sample accuracy.**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![1NN classification map](images/iris_01nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluation procedure #2: Train/test split" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Split the dataset into two pieces: a **training set** and a **testing set**.\n", + "2. Train the model on the **training set**.\n", + "3. Test the model on the **testing set**, and evaluate how well we did.\n", + "\n", + "What does this accomplish?\n", + "\n", + "- Model can be trained and tested on **different data** (we treat testing data like out-of-sample data).\n", + "- Response values are known for the testing set, and thus **predictions can be evaluated**.\n", + "\n", + "This is known as **testing accuracy** because we are evaluating the model on an independent \"test set\" that was not used during model training.\n", + "\n", + "**Testing accuracy is a better estimate of out-of-sample performance than training accuracy.**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Understanding \"unpacking\"" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def min_max(nums):\n", + " smallest = min(nums)\n", + " largest = max(nums)\n", + " return [smallest, largest]" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 3]\n", + "\n" + ] + } + ], + "source": [ + "min_and_max = min_max([1, 2, 3])\n", + "print min_and_max\n", + "print type(min_and_max)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "\n", + "3\n", + "\n" + ] + } + ], + "source": [ + "the_min, the_max = min_max([1, 2, 3])\n", + "print the_min\n", + "print type(the_min)\n", + "print the_max\n", + "print type(the_max)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Understanding the `train_test_split` function" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(478, 5)\n", + "(358, 5)\n", + "(120, 5)\n" + ] + } + ], + "source": [ + "# before splitting\n", + "print X.shape\n", + "\n", + "# after splitting\n", + "print X_train.shape\n", + "print X_test.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(478L,)\n", + "(358L,)\n", + "(120L,)\n" + ] + } + ], + "source": [ + "# before splitting\n", + "print y.shape\n", + "\n", + "# after splitting\n", + "print y_train.shape\n", + "print y_test.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![train_test_split](images/train_test_split.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Understanding the `random_state` parameter" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ast stl blk tov pf\n", + "230 0.9 0.6 0.3 0.5 1.7\n", + " ast stl blk tov pf\n", + "424 0.4 0.2 0.1 0.8 1\n", + "230 1\n", + "Name: pos_num, dtype: int64\n", + "424 1\n", + "Name: pos_num, dtype: int64\n" + ] + } + ], + "source": [ + "# WITHOUT a random_state parameter\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y)\n", + "\n", + "# print the first element of each object\n", + "print X_train.head(1)\n", + "print X_test.head(1)\n", + "print y_train.head(1)\n", + "print y_test.head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ast stl blk tov pf\n", + "401 2.9 1.3 0.2 1.4 2.3\n", + " ast stl blk tov pf\n", + "32 1.5 0.9 0.6 1.1 3.1\n", + "401 2\n", + "Name: pos_num, dtype: int64\n", + "32 1\n", + "Name: pos_num, dtype: int64\n" + ] + } + ], + "source": [ + "# WITH a random_state parameter\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=99)\n", + "\n", + "# print the first element of each object\n", + "print X_train.head(1)\n", + "print X_test.head(1)\n", + "print y_train.head(1)\n", + "print y_test.head(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using the train/test split procedure (K=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# STEP 1: split X and y into training and testing sets (using random_state for reproducibility)\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=99)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_neighbors=1, p=2, weights='uniform')" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# STEP 2: train the model on the training set (using K=1)\n", + "knn = KNeighborsClassifier(n_neighbors=1)\n", + "knn.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.616666666667\n" + ] + } + ], + "source": [ + "# STEP 3: test the model on the testing set, and check the accuracy\n", + "y_pred_class = knn.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Repeating for K=50" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.675\n" + ] + } + ], + "source": [ + "knn = KNeighborsClassifier(n_neighbors=50)\n", + "knn.fit(X_train, y_train)\n", + "y_pred_class = knn.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Bias-variance tradeoff](images/bias_variance.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparing testing accuracy with null accuracy" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Null accuracy is the accuracy that could be achieved by **always predicting the most frequent class**. It is a benchmark against which you may want to measure your classification model." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2 60\n", + "1 49\n", + "0 11\n", + "dtype: int64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the class distribution\n", + "y_test.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2 0.5\n", + "dtype: float64" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute null accuracy\n", + "y_test.value_counts().head(1) / len(y_test)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Searching for the \"best\" value of K" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# calculate TRAINING ERROR and TESTING ERROR for K=1 through 100\n", + "\n", + "k_range = range(1, 101)\n", + "training_error = []\n", + "testing_error = []\n", + "\n", + "for k in k_range:\n", + "\n", + " # instantiate the model with the current K value\n", + " knn = KNeighborsClassifier(n_neighbors=k)\n", + "\n", + " # calculate training error\n", + " knn.fit(X, y)\n", + " y_pred_class = knn.predict(X)\n", + " training_accuracy = metrics.accuracy_score(y, y_pred_class)\n", + " training_error.append(1 - training_accuracy)\n", + " \n", + " # calculate testing error\n", + " knn.fit(X_train, y_train)\n", + " y_pred_class = knn.predict(X_test)\n", + " testing_accuracy = metrics.accuracy_score(y_test, y_pred_class)\n", + " testing_error.append(1 - testing_accuracy)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.style.use('fivethirtyeight')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "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", + "
testing errortraining error
K
1000.3666670.351464
990.3583330.347280
980.3666670.345188
970.3666670.347280
960.3666670.345188
\n", + "
" + ], + "text/plain": [ + " testing error training error\n", + "K \n", + "100 0.366667 0.351464\n", + "99 0.358333 0.347280\n", + "98 0.366667 0.345188\n", + "97 0.366667 0.347280\n", + "96 0.366667 0.345188" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a DataFrame of K, training error, and testing error\n", + "column_dict = {'K': k_range, 'training error':training_error, 'testing error':testing_error}\n", + "df = pd.DataFrame(column_dict).set_index('K').sort_index(ascending=False)\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAb4AAAEtCAYAAAB3fwUEAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd8U/X++PHXSdIkXbSlG9oyy1KGvbJVlhcBFQRFruIF\ncXEV55WLl3uv4NX7vQrOqyjK/HlVVMTFleGiSJGlbAdSZstqS3dLk7RJfn+Upj0ZbVJS2tL38/Ho\nQ3LmJ8c273zW+6MUFBTYEUIIIVoITWMXQAghhLiYJPAJIYRoUSTwCSGEaFEk8AkhhGhRJPAJIYRo\nUSTwCSGEaFEk8AkhhGhRGj3wLVmyhF69ehEXF8fQoUPZunWrV+cdPnyYhIQEEhISVNvT0tKIiIhw\n+Tl06FBDFF8IIUQz06iB75NPPmH27NnMnDmTtLQ0+vXrx8SJEzlx4kSt51ksFu666y4GDx6Moihu\nj9m+fTsHDx50/HTs2LEh3oIQQohmplED3+uvv87kyZOZMmUKycnJzJ8/n9jYWJYtW1breXPnzqVn\nz56MGzcOu9194pmoqCiio6MdPxpNo1duhRBCNAGNFg0sFgt79+5l2LBhqu3Dhw9n+/btHs/78ssv\n+eqrr5g/f77HoAcwdOhQunXrxrhx40hLS/NbuYUQQjRvusa6cW5uLlarlZiYGNX2qKgosrOz3Z5z\n+vRpHn30Ud577z2CgoLcHhMfH8/LL7/MFVdcgcVi4cMPP2TcuHGsWbOGgQMH+v19CCGEaF4aLfDV\nx/Tp07nrrrtISUnxeEznzp3p3Lmz43Xfvn3JyMjg1VdflcAnhBCi8Zo6IyMj0Wq1LrW7nJwcYmNj\n3Z6TlpbGvHnziIqKIioqiocffpjS0lKioqL473//6/FeKSkpHDlyxK/lF0II0Tw1Wo1Pr9fTp08f\nUlNTGTdunGN7amoqN910k9tznKc6rFmzhhdffJENGzYQFxfn8V779++vdb8QQoiWo1GbOmfMmMH0\n6dNJSUmhf//+LFu2jOzsbKZNmwbAP//5T3bt2sXnn38OQLdu3VTn79y5E41Go9r+xhtv0K5dO7p1\n64bFYmHlypWsXbuWd9555+K9sUtUeno6ycnJjV2MZkOel2/keflGnlel+XuKWJthcry+LtHI7Cta\n1XpOowa+8ePHk5eXxwsvvEBWVhY9evRg5cqVjknpWVlZHDt2rNZrOM/jq6ioYM6cOZw6dQqj0Uj3\n7t356KOPuPbaaxvqbQghhGgkJqt6dH9ZRd1rqyuyArvwlnzD9I08L9/I8/KNPK9Kf99RwPdnLI7X\nfaP1PD8wvNZzZFa3EEKIZstcjxqfBD4hhBDNlsmqfl1mlcAnhBDiEuZa47PVeY4EPiFEk9C2bdvG\nLkKzIs+rUn0Gt0jgE0I0CZ7SEAr35HlVsjgHPmnqFEIIcSlzrvE59/m5I4FPCCFEs+Xcx+cNCXxC\nCCGaJbvd7lUNz5kEPiGEEM2Spe4BnG5J4BNCCNEs1aeZEyTwCSFEozp+/DgRERGsWLGisYvS7DgP\nbPGWBD4hRIu2fft2nnvuOQoLCxv0PkuWLPEY3BRFcUm4L+omNT4hhKiHHTt2MG/ePIqKihr0PkuX\nLnUb+Nq1a8eZM2eYNGlSg97/UiQ1PiGEuAB2e+MtVKPX69Fomt/HcVlZmdvtVqsVi8Xidp+3SktL\n6zzGUo8RnSCBTwjRgj377LPMmTMHgN69exMREUFERATff/+945gNGzYwZswYEhISSEhI4JZbbmH/\n/v2q62RnZ/PQQw9x2WWXERsbS5cuXZg4cSIHDhwAoGfPnhw4cIDvv//ecY9evXoB7vv4nn32WSIi\nIjh06BD3338/7dq1IykpiRkzZrgEm7KyMmbNmkXHjh1JTEzktttu4+TJk0RERPDcc8/V+Qzsdjtv\nvfUWgwYNIi4ujuTkZB566CHy8vJUx/Xs2ZNbbrmF7777jhEjRhAXF8err77qKP8rr7zCokWLSElJ\nITY2lh9++AGA/fv3M3HiRJKSkmjbti033HADW7duVV37vffeIyIigk2bNjFr1iySk5Md67LWpr41\nvkZdiFYIIRrT2LFjOXLkCKtWreLZZ58lMjISgC5dugDw0UcfMX36dIYPH87cuXMxmUy8/fbbjBkz\nhg0bNjjWw5s6dSq//PIL9913H+3atePs2bNs2bKFw4cP061bN5577jmeeOIJQkJCePzxxwEIDg5W\nlcVdH99dd91Fhw4deOqpp9izZw///e9/iY6O5qmnnnIc88ADD/DZZ58xadIk+vXrx+bNm7n11ls9\nXtPZn//8Z959911uv/12pk+fTmZmJosWLWLnzp2kpqZiMBgc1zpy5AhTp07lzjvvZOrUqSQkJDju\n8eGHH1JaWsq0adMICQkhNjaW3377jTFjxhASEsLDDz+MwWDg7bff5qabbuLTTz9l0KBBqrI88cQT\nhIeH85e//MWrpuf69vFJ4BNC+N3Q1dkNev2NY2P8cp3LLruMXr16sWrVKq6//noSExMd+0pLS/nL\nX/7C5MmTee211xzb//jHP9K3b1/mz5/P4sWLKSgoYNu2bTzzzDM8+OCDjuMeffRRx7+vv/56/vWv\nfxEVFcXEiRO9Ll/v3r1V987Ly+Odd95xBL49e/bw2Wefcd999zFv3jygMljOmDGDX375pc7rb9++\nnf/3//4fb731liNYAlx77bWMHj2aDz74gKlTpwKVNcOjR4/y/vvvM2rUKMexx48fB+DEiRPs3LmT\nmJjq/zd33HEHFouFtWvX0qFDBwAmT55M3759+fvf/05qaqqqPCEhIaxZs8brZl/p4xNCCD9KTU2l\nsLCQW265hdzcXMeP1WplwIABpKWlARAYGIheryctLY2CggK/lqEq6FQZMGAAeXl5lJSUAPDtt98C\ncM8996iOu++++7y6/qeffkpISAjDhw9Xvcfk5GSio6Md77FK27ZtVUGvpjFjxqiCntVqZcOGDYwa\nNcoR9ABat27N7bffzp49ezh79qzqGlOmTPGpr1NqfEII4UeHDx8G4KabbnK7X6vVAmAwGHjqqad4\n8sknSU5O5sorr+T3v/89kyZNuuClg5z7ucLDwwEoKCggJCSEzMxMFEVRBRbA5bUnhw8fpqSkxNFk\n68w5MLVv397jtZzvefbsWcrKytxeu2pbRkYGUVFRPpe7igQ+IYTwI5utMh/WwoULiY+Pr/XY+++/\nnzFjxrB27Vo2btzI888/z0svvcQHH3zAVVddVe8yVAVXZ/4agWqz2WjdujXLli1zu78q0FYJDAz0\neK3a9nnL12vUJ08nSOATQjQAf/XBNaaOHTsCEBkZyZAhQ+o8vl27dtx///3cf//9nDp1iquvvpoX\nX3zREfgaYoJ6YmIidrudI0eOOAbkABw5csSr8zt06MDGjRu58sorXQbbXKioqCiCgoI4ePCgy770\n9HQAkpKSLugeMoFdCCHqoeoDPz8/X7V9+PDhhIWF8dJLL1FeXu5yXm5uLlA5ncB5ikGbNm2IiopS\njUwMCgpyuceFGjFiBFCZFaamRYsWeXX+hAkTsNlszJ8/32Wf1Wq9oD5LrVbLiBEjWL9+PceOHXNs\nz8/P5/333yclJUXVzFkf0tQphBD1kJKSAsDTTz/NzTffjF6vZ8iQIURFRfHyyy9z7733cs0113Dz\nzTcTHR1NZmYm3377Ld27d+eNN94gPT2dsWPHMn78eLp27YrBYOCrr77i4MGD/Otf/3Lc54orrmDp\n0qXMmzePTp06ERwczOjRoy+o7H369GHs2LEsXryYoqIirrzySr7//nsOHToE1F3LHDRoEPfccw+v\nvvoqP//8M8OGDcNgMHDkyBFWr17N3//+d2677bZ6l+8f//gHqampjBo1invuuccxnaG4uFj1bOpL\nAp8QQtRDnz59mDt3LkuWLOHBBx/Ebrfzv//9j6ioKMaPH09cXBwvvfQSCxYswGw2Ex8fT//+/bnr\nrruAyubGW2+9lU2bNrFq1SoURaFz584sWLCAyZMnO+7zxBNPcPLkSV5//XWKi4tJSkryGPhqy93p\nvP3NN98kJiaGjz/+mC+++IJrrrmGZcuW0a9fP4xGY53v//nnn6d3794sX76c//u//0On05GQkMCE\nCRO45pprPN7XG126dGHdunU8/fTT/Oc//8Fms3HFFVfw2muvMXDgwFrflzfqO51BKSgoaLw8PaJZ\nSU9P9zj6S7iS5yUay759+xgyZAiLFy/mlltuaeziNJh/7Szkm5Nml+119TFLH58QQjRjJpPJZdvC\nhQvRarUumVEuNeaGHtWZm5vLtm3bOHjwILm5uSiKQmRkJF26dKF///6OVD9CCCEunldeeYU9e/Zw\n9dVXo9Pp+Oabb/jmm2+YNm0abdq0aeziNagGydVpNptZuXIlK1asYNu2bbVeqH///tx+++1MmjTJ\nkdtNCCFEwxowYADfffcdL7zwAqWlpSQmJjJ79mxmzpzZ2EVrcPUd3OKxj2/p0qW8+OKL5ObmMmzY\nMIYOHUqfPn1o37494eHh2O12CgoKOH78OHv27CE1NZWNGzcSGRnJzJkzHR2/4tIhfVa+keclRMO6\n77s8DhZWuGyvq4/PY+Dr0aMHM2bM4I477iAsLMyrQhQUFPDuu++ycOFCfv75Z6/OEc2HfJD7Rp6X\nEA1r6oZcjpe4dvTVFfg8NnXu2bMHvV7vUyHCw8N58MEHvU6QKoQQQtSX2ebnzC01g57JZGLFihXs\n3LnTq4v6GjCFEEIIX5krGjBlmcFg4NFHH3VZdVgIIYRoLPVNUu1V4KvKRJCVlVW/uwghhBB+ZLfb\nGz5J9cyZM1m0aBE//fRTvW4khBBC+EuFHWz1PNfrCeybN28mOjqaIUOG0K9fPzp06OB27aQXX3yx\nnkURQrRk586dIygoqLGL0Wy09OdV38nr4EPgW758uePf27Zt8zihXQKfEKI+Tp48KdM/fNDSn1d9\nmznBh8Dn73WkhBBCiPoy1XNEJ0iSaiGEEM2Qpb4dfNRjPb7U1FTS0tI4e/YsDz74IF26dKGkpIS9\ne/dy2WWXER4eXv/SCCGEEF64kD4+r2t8ZWVlTJgwgQkTJvDKK6/w7rvvcvr0aQACAgKYOnUqb775\nZr0LIoQQQnjrQvr4vA58zzzzDN9//z2LFi1i//792O3VNzUYDNx00018+eWX9S6IEEII4S3nGp8v\n/XZeH/vZZ59x9913M3HiRLfL2Xfu3JmjR4/6cGshhBCifpxrfGF6xetzvQ58ubm5dOvWzeN+RVHc\nrgQshBBC+Jtz4As3eF/n8/rItm3bcuDAAY/7t2/fTseOHb2+sRBCCFFfznk6Ixoi8N166628/fbb\nbNmyBUVRVymXLl3Kp59+ym233eb1jYUQQoj6upAan9fTGR577DF27tzJDTfcQOfOnQGYPXs2ubm5\nZGdnM2rUKB544AGvbyyEEELUl/Pglgh9AwQ+g8HAypUrWbVqFZ9++imKolBeXk6fPn0YP348kyZN\ncqkJCiGEEA3B4jK4pQECH1QOYJk4cSITJ0705TQhhBDCr5xrfEadQqBWocyL+X1eh8hevXqxdu1a\nj/vXrVtH7969vb2cw5IlS+jVqxdxcXEMHTqUrVu3enXe4cOHSUhIICEhwWXf5s2bGTJkCHFxcfTp\n00eVYFsIIUTz59zHZ9AqBOq8a3X0OvBlZmZSWlrqcX9paSkZGRneXg6ATz75hNmzZzNz5kzS0tLo\n168fEydO5MSJE7WeZ7FYuOuuuxg8eLBL8+qxY8e49dZbGTBgAGlpafz5z39m1qxZrF692qeyCSGE\naLpcanxa/B/46nL48GFCQ0N9Ouf1119n8uTJTJkyheTkZObPn09sbCzLli2r9by5c+fSs2dPxo0b\np8ogA5XLJ7Vp04Z58+aRnJzMlClTuO2221iwYIHP70kIIUTTZHaazmDQVjZ1eqPWPr4VK1awYsUK\nx+sXX3yR//73vy7H5efn88svvzBq1CivbgqVtba9e/fy8MMPq7YPHz6c7du3ezzvyy+/5KuvviIt\nLY1PP/3UZf+OHTsYNmyYyzXff/99rFYrWq3W6zIKIYRomi6kqbPWwHfu3Dlyc3Mdr0tKSlyaFhVF\nISgoiLvvvpsnnnjC2zKTm5uL1WolJiZGtT0qKors7Gy355w+fZpHH32U9957z+PKwzk5OS7XjI6O\npqKigtzcXJd9Qgghmh/Xpk6FIH8EvnvuuYd77rkHgJ49e/Lcc89x/fXX17OYF2769OncddddpKSk\nNFoZhBBCNL4Gq/HVtHDhQrp27epx/9mzZ/ntt98YPHiwV9eLjIxEq9W61O5ycnKIjY11e05aWhpb\ntmxh3rx5ANjtdmw2G1FRUbz00ktMmTKFmJgYt9fU6XRERka6vW56erpXZRbyrHwlz8s38rx805Kf\nV3FZCFDddZV1IoPyUgOgr/NcrwPfjTfeyKJFizzO4fvuu++49957ycvL8+p6er2ePn36kJqayrhx\n4xzbU1NTuemmm9ye4zzVYc2aNbz44ots2LCBuLg4APr168cXX3yhOi41NZWUlBSP/XvJyclelbml\nS09Pl2flA3levpHn5ZuW/rzsx88C1cuwJ3dox37KoLCsznN9XoHdE4vF4nPmlhkzZjB9+nRSUlLo\n378/y5YtIzs7m2nTpgHwz3/+k127dvH5558DuKwOsXPnTjQajWr7tGnTWLx4MbNnz+bOO+9k+/bt\nvP/++yxduvQC36EQQoimwjlJtVHnp6bOwsJCioqKHFMGcnNzyczMdDkuPz+fjz/+mPj4eC+LXGn8\n+PHk5eXxwgsvkJWVRY8ePVi5cqVjUnpWVhbHjh2r9RrOwbZdu3asXLmSv/3tbyxbtoz4+Hjmz5/P\njTfe6FPZhBBCNF3u+vi8HdyiFBQUeMzv8txzzzn607wxd+5cHn30Ua+PF81LS29a8ZU8L9/I8/JN\nS39eI/6XTc3Y9/UN0fzvWBmv/lTCxrG1j96vtcY3bNgwgoODAZgzZw633HILvXr1cjkuODiYlJQU\n+vTpU4/iCyGEEN6rsNlVQU8D6BTvM7fUGvj69+9P//79gco5fGPHjuWyyy6rd2GFEEKIC+WumVNR\nGmA6w+zZsx3/NplM5OXlERkZicFg8PYSQgghxAVzl6cT8DplmU+5Ojdv3sx1111H27Ztufzyy9m2\nbRtQOYfvxhtvZMOGDb5cTgghhPCZS57O8zU9vyepTktLY/z48RQVFXHvvfeqkkNHRUUBuM3jKYQQ\nQviTS1OnpoEC37///W969uzJpk2b+Mtf/uKyf/DgwezatcvbywkhhBD14q6PDxqgqXPPnj1MmjSJ\ngIAAt/vj4+PJysry9nJCCCFEvbhLUA0NUOMLCAigoqLC4/5Tp075vB6fEEII4StPNb4gnXchzevA\n179/f0fqMGclJSW89957XHXVVd5eTgghhKgX18BX/V9v6nxeB77Zs2ezd+9exo8fz7p16wDYu3cv\nS5cu5ZprriEvL89t358QQgjhTy55Os/X+DSK4vh3bbwOfCkpKXz88cecOHGChx56CKhMUTZz5kwU\nRWHVqlUyuV0IIUSD89TUCd718/m0OsNVV13Fjh072L9/P4cPH8Zms9GhQweuuOIKn1dmEEIIIerD\n0+AWaIDAB5WrIfTq1cttzk4hhBDC30rLbazNMBGkU7gu0ehS49PXCHzerNDgU+ArLy/n/fff56uv\nviIjIwOApKQkRo4cye23345O57fl/YQQQggAnthWyE/55QAcKqogJEAd3FQ1Pn/28eXk5DBs2DAe\neeQRNm/e7NielpbGI488wpAhQ8jOzvb2ckIIIUSdck1WR9AD+DLTRFmF5z6+0UnGOq/pdeCbNWsW\nBw8e5LXXXuPw4cNs2rSJTZs2cfjwYV599VUOHjzIrFmzvL2cEEIIUaficnWQO1dh51ixek55VZJq\ngNFJgXVe0+u2yW+++Yb77ruPO+64Q30BnY4//vGPHDhwQHJ1CiGE8KvScte10n/JVwc+g5epyqr4\nlLklKSnJ4/6kpCT0er1PNxdCCCFqc67C5mab56ZOb3gd+G6++WY+/vhjysvLXfZZLBY++eQTJkyY\n4NPNhRBCiNqUVrjW+Jx5M2m9Jo9NnTt37lS9Hjt2LFu2bGHYsGFMmzaNTp06AXDo0CGWL1+OoiiM\nGzfOp5sLIYQQtXEeyOKOrzU+j4Hv2muv9XjSzJkz3W4fO3YseXl5PhVACCGE8MSbGp/fAt+CBQt8\nupAQQgjhb+fcDG5xZtDWeYiKx8A3efJk364kmrQKm50vM03kmGxcl2gkPsjH3xQhhGgEF7WPT1xa\n3j5YyjsHzwHw9QkTS4a09nrRRiGEaCzuRnU6a7BRnaL5Kquws+pwmeP1yVIr350yNWKJhBDCOw3R\nxyeBrwX47pSJMqekrusyJfAJIZo+b/r4fG3qlMDXArgLcntzyzlRUuHmaCGEaDq8qfHpfYxkEvgu\ncSdKKtib65p0AGC91PqEEE2cc5YWZ0YtPq8HK4HvEldbcPsy04TVXve3KSGEaCyldQxu0fvYzAk+\nBL4tW7awePFi1bZVq1bxu9/9juTkZJ544glstrpH34iLx2qvnMLgSY7Jxs4cy0UskRBC+KauPj5f\n+/fAh8D373//my1btjheHzp0iAceeACtVkvv3r1ZtGgRCxcu9LkAouHszLGQY6r+MmLUwjXxBtUx\n6zKkuVMI0TTZ7fY6+/h8HdEJPgS+AwcOkJKS4nj9wQcfYDQa+frrr1m1ahV/+MMfeO+993wugGg4\nzkFtSBsjEzqo16rafMZMkUVq6kKIpsdig5oD0gM0EG1Uh6361Pi8nsBeXFxMRESE4/W3337L0KFD\nCQsLA2DAgAGsXr3a5wI0RcXlNlYfK+NoUfMe9bj5jFn1enSikd6RAbQJ0nLqnBWAchs8+UMh0UYN\nigJdwgIY3yEQnUYmtwshLg673c76TBNHiyoYnRRIh1aVocl5YEugTiE5TEeOqbqLxlCPzyqvA19s\nbCwHDhwA4PTp0+zbt4+pU6c69hcVFaHTNc9EMFnnrMTWSOH13O4ivj9zafV9tQnS0jsyAEVRGJ1k\nZOmBUse+mqM+vz5hJt9s474eIY1RTCFEC/S/4yZe2lcMwOrjZXw0MorQAA2l5erWqODzgW9LVo3A\nV4/si143dY4dO5bFixcza9YsJk+ejMFgYMyYMY79P//8M+3atfO9BE3A4l9LHP8+XlxxyQU9gFFJ\nRseQ3+sSjdT2HSnttLmWvUII4V/bs6s/c0xW2HO28su4c40vSKeha3iAaluEwffJCV6f8de//pVx\n48bx4YcfcvbsWRYuXEhMTAwAhYWFrF69mmHDhvlcgKZg02kzxee/WVyKc9vaBGkY3766by8mUMvE\nToEejz9RavUqP54QQvhDqdPIzQJz5eeP88CWYJ1Cvxg9nc43hQZoYEyS588yT7xumwwJCWHRokVu\n94WGhvLLL78QHBzscwGaAosNNpw0c32S0WX4/8SOgSSHBXg4s+kLDlC4IiqAIJ36O86feoQwvI2R\njJLKvr6lB0rIKqv8ZbMDhwsr6Bmpv9jFFUK0QCanlIqF5wfcudT4AhR0GoWFV0ewN9dC22AdbYJ9\nb+v0S6ecRqMhPDzcH5dqNOszyog2asgzV9d0gnQKd3ULuSRXMdAoCt0iAugWURnUt2aZySqrbm44\nVCSBTwhxcTgHvqqR5s41weDzn8V6rULfGPXULF94DHwrVqxAURQmTZqERqNxvK7LbbfdVu/CNKZf\nCypUAz4AhrUxXJJBz53kMB2pp6oDX3ph8x7RKoRoPsoqnGt8la+du1yC/PR57DHwzZgxA0VRuPnm\nm9Hr9cyYMcOrCzbXwAdw2Gn6Qn3ajpurzmHqX4VDEviEEBeJS1Nnuac+Pv9k2fQY+Pbs2QOAXq9X\nvW4pkkK09IhontMz6sO5H/NocQUVNrvM5xNCNDizD318/uDxk915akJznapQX6MTjT5n/G7OIgwa\noowazp5PcVZug+PFVjqFtZzgL4S4+Gx2OyarelvR+aZOT318F0pWZ3BDo8DIRGNjF+Oic27uTC90\nv5xRuc3OivRSXttfTIas6SeEuABmq+s2jzU+CXwNZ0CMnkhjPdIBNHPJzoHPQ8q2N34uYdGvpXx8\ntIy/bivAYpWljYQQ9ePcvwdQUm6nwmZ3WZJIanx+1D5UHeRGt6BBLTV1blX3AJcii40vjpc5Xp86\nZ+PXAvc1QyGEqIvJw+oLxeV2l9GeQQH+CVkS+IAHLw91PIiUqAAGxrbM+WvOA1wOFVZgd1qo9tuT\nJpzS58nUByFEvZV5aDEqtNjcZm7xBxm5AFwZreejkZGcOWeja7iuxY5kjA/SEKxTHL9spRV2Tp+z\nqTIjuFu/TwKfEKK+nEd0Vimy2FwWob2ofXylpaXccMMNvPvuu365aVMUadRyWeuAFhv0ABRFqXWA\nS6ZJw0E3QU7m/Akh6stdHx9UTmJ3qfH5aTqDV4EvODiYffv2YbW6GX4jLikuA1xqBLXvC9w3AR8r\nrpABLkKIenHux6tSaLE1WOYWr/v4Bg0axJYtW/xy05qWLFlCr169iIuLY+jQoWzdutXjsQcOHOCG\nG26gS5cuxMXF0adPH5555hnKy6trJWlpaURERLj8HDp0yO9lvxS5DHA5P7Kz3GZne5H7ZN1We2Xw\nE0IIX3mq8eWZbar5fQoQWI/V1t3xOvDNnz+fnTt38o9//INjx45hs134sjWffPIJs2fPZubMmaSl\npdGvXz8mTpzIiRMn3B5vMBiYPHkyn376KT/++CPPPvss77zzDk8//bTLsdu3b+fgwYOOn44dO15w\neVsCdwNcALacMVNi9fzrIv18Qoj68BT4zpxTtzAG6RS/JRXxenBLv379sNlsvP7667z++utoNBr0\nej12ux1FURz/PX36tNc3f/3115k8eTJTpkwBKoPrt99+y7Jly5gzZ47L8R06dKBDhw6O1wkJCaSl\npbF9+3aXY6OiomjdurXXZRGV2oVqCdDgGLl51mQj32xzGdRi0KonnkrgE0LUh6fpDKfdBD5/8Trw\njR8/vs55HpFYAAAgAElEQVRjfInGFouFvXv38vDDD6u2Dx8+3G0gc+fIkSNs2LCBcePGuewbOnQo\nFouFrl27MnPmTK6++mqvy9aS6TQKHUJ1qkEsf99RwIF8dWD7Q6cg3j54zvH6UI3J7r/ml/Pp0TLy\nayzxpNfCoFgD17drmXMkhRDuearxOQc+fw1sAR8C38KFC/12U4Dc3FysVqtjFfcqUVFRZGdn13ru\nyJEj2bdvH2azmdtvv53Zs2c79sXHx/Pyyy9zxRVXYLFY+PDDDxk3bhxr1qxh4MCBfn0Pl6rkMHXg\n+8Up6HVqpWNMUqAq8B0urMBmt1NgtvPEtgKKyl1/mb8/YyFQpzC8bctLByeEcM9T4Ms+1zADW6CZ\nzuNbvnw5paWl7N+/nzlz5jBnzhxHP1/nzp3p3Lmz49i+ffuSkZHBq6++6jHwpaenX5RyNxcRFj3g\nuWZ2ZWAxhSdyCdaGUnq+36/Mauf7n4+wp0RHUbnnc9/5OY/Ec6Ue919q5HfLN/K8fHMpPK/TZ42A\n66KyLqNILGVev9/k5ORa9/sU+NLT05k/fz5paWmcPXuWjz/+mCFDhnD27FnmzJnDXXfdxZVXXunV\ntSIjI9FqtS61u5ycHGJjY2s9t23btgB06dIFq9XKgw8+yNy5c9Fq3efXTElJ4dNPP/V4vboeUksT\nV27ju035ZJa6Tl9JDtMx7XdJGHUKXc/ms+ts9Yja8oi27MguBTxPezlq0qGL7UCHVs3yO5dP0tPT\n5XfLB/K8fHOpPC/juSLIc02M4Sy6VQjJyW39ck+vR3Xu37+f4cOHs3HjRvr27aua0xcVFcWvv/7K\n0qVLvb6xXq+nT58+pKamqranpqbSv39/r69jtVqx2Wy1jjLdv38/cXFxXl+zpQsN0LB4SGv+Mzic\neQPCHD9/bVfCwqsjMJ5vcnAeAfr5sTIyS6p/L7QK/KtvGJc5rWu4LrMMIYQAz02dzhqlj++f//wn\nsbGxfPPNN1itVr744gvV/hEjRvDJJ5/4dPMZM2Ywffp0UlJS6N+/P8uWLSM7O5tp06Y57rlr1y4+\n//xzAD744AMCAwPp3r07er2e3bt388wzzzBhwgQCAio/hN944w3atWtHt27dsFgsrFy5krVr1/LO\nO+/4VLaWzqhT6B2pnrCeXmhVZbZxzvKyN1edrHpQrIGr4g2UWe38nF/k2P5Vpon7uoe06Cw5QohK\nJi8HhDdKH9+2bdt44oknCA8PJzc312V/YmKiT1MZoHKkaF5eHi+88AJZWVn06NGDlStXkpCQAEBW\nVhbHjh1zHB8QEMBLL73EkSNHsNvtJCYmcu+99/LAAw84jqmoqGDOnDmcOnUKo9FI9+7d+eijj7j2\n2mt9Kpuom3OWF2ejkyoHsVwTb+CVGjlACyx2tmZZuDretV1fCNGyeF3ja6zBLUaj59F4OTk5GAy+\nf5Ddfffd3H333W73vfHGG6rXN998MzfffHOt13v44YddpkiIhpEYonWZz1eltUFDv5jKGqNBqzCi\nrZHVNZYzWp9ZJoFPCOF14AvS+W8xIa+v1KtXL7788ku3+8rLy/n444/p27ev3wommj6totDRwyCV\n6xKNqqbMqtpfla1ZFnJNkvtViJauMfr4vA58M2fOZMOGDTz00EP89NNPAJw+fZqvv/6asWPHkp6e\nzp///Ge/FUw0D865PauMSlQHum7hOtWCvzY7fH2i7pFcQohLm6fMLc4apY9v+PDhvPXWW/zlL39x\nLE90//33AxAWFsbixYtlgngLVDmyUx3ALovQ0S5U/aulKApjkgJ54+cSx7b30s/x/RkLANGBGv7Q\nKYgu4eqRonvOWvjsWBltg7VM7RKM3ocktceKK3j7t1LOmrzPK9tKrzC2XSD9Y9XNsMeKK1iRfs4l\nm0RttJYgJoeZ6RtTe5PuD9lm1mSY6NRKx6ROQar3aLba+fDQOY4WV3BDu0B+F90yF0kWly5PC9E6\na7Q+vokTJzJmzBhSU1M5fPgwNpuNjh07Mnz4cEJDQ/1WKNF8uBvgMjrJ/QT23ycYeeuXEqp+z4vL\n7ezPqx4JuudsOe8Mb01wQGVDRHaZldnbCx1/GOVWOw9c7t3vmc1u52/bCzh1zvdk6juyLSwZ0toR\nvC1WO7O3F3Da52sF8MuOQpYNbU1CiPs/tcySCv7xQyFmK2w8ZUavUZjUOcixf9WRcyz7rXLC/9Ys\nM8uGRqoWBhaiufO0EK0zf9b4fO4tDA4O5oYbbuCRRx7hscceY9y4cRL0WrCOrXQYa3wOG7QwrI37\nGk6EQcPAWM81ljyzjdRTZsfrtRkm1bfB/x03eVy7y1lmibVeQQ8qE3TXHIizJctcj6BXyWKrLLcn\n/ztWphoctPG0+tiNNZ6HyQpfHJc5kOLS4n0fXyMMbrn++uv597//zXfffce5c+fqPkG0CAatwrSu\nIY5fpIcuD631F/RPPUJoVUsn9bqMyg92m93OeqeJ7mVWO5tOe9cveKGrwn9zwkS5rfIPcn3GhfVF\nfnXCRIXN9Y+7wmbnK6d+ziNFFVjt52u4NjtHi9Tvw9O1hGiOKmx2x0owdWmUPj6bzcarr77K888/\nj06no3fv3gwcOJBBgwYxcOBAwsPD/VYo0bxM6hzE8LYGDFqFVvrav0slhOhYNTKK9MLKD/jicjt/\n31Ho2P9zfgXHiyvIM9s446aWtTbDxHWJda/wcMgpYIxMMHJDO8/TcezAP3YUUnw+uXahxc7WM2a6\nRwSwI9uiOvYfKa2ICfT8Pm12+PuOQse8xXyzje3ZFgbHqWvCW7MsFFjUQcxshRMlVtqF6jheXIFz\nBfesycaPORYGxMpUENH8eVvbg0bq41u3bh1ms5mdO3eydetWtm7dyttvv82CBQvQaDR07dqVwYMH\n8/zzz/utcKL5iA70vt9Jr1W4rHX1IJY+kQHsqZH1ZV2GiVx3kwOpzA5zsrSCtsG1/+qmF6qzyPSP\n0dMrsvaBISPaGvnsWHUtc22micxSqypZbqdWOq5NqHt1ieFtDaomzrUZZS6Bz7lGW132CtqF6jyu\ncbguwySBT1wSfAl8gY3Vx2cwGBg0aBCPP/44q1at4ujRoyxYsIBOnTr5nKtTiCpjnOb4fZlZxqbT\nZg9Hw/rM2pse7Xa7S9BwTq/mTTl2ZFn47GhZrcd44jzAZ1uWhbwao0tzTVa2ZlmcTwOqm2k9Ndd+\nf8ZMgbl+fY5CNCXOUxkMHr4/G7X4NcWhT4HParWyc+dOXnvtNf7whz/QuXNnHnzwQUpKSpgwYQLz\n58/3W8FEy3FNvFHVfp9vsasGfDj/un+ZaXL0g7mTY7JRWKMJ0aiFhJC6a6TJYTo61ZiXaDt/rSo6\npbJW6I3u4Tri9dVvwuo0b/HrE2Y8ddVV1VY91fgq7PDtSZkDKZo/5xpfjIeWo0A/Zm0BHwLf+PHj\nad++Pddeey3Lly8nKiqKZ555hl27dvHLL7+wdOlS7rnnHr8WTrQMRp3C8Laem+5u6RioGjmaXWZj\nV4772hK41pQ6ttKhVer+tqgoikuGmZoGxxkIN3j3J6MoCoPD1WVcl1mG3W7Hbrc7BvG4k15Uuaiv\ncz9lTWszTNhrCf5CNAfOyZtCAhS3g1j82b8HPvTxbdy4EY1Gw/jx4xk/fjyDBw+mdevWfi2MaLlG\nJwbyhYdh/xM6BFFUbufLzJp9ZiaPE8OdA5/z8km1ubatkTd/LnEZVAKuadfqMiCsnE9yAh01u2PF\nVg4UVGCzw3Gn5Zt0muqcp0UWO3tzyzlXoa61WqzVi3MeLqogvbDCZcK/EM2Jc1NnoFahlV5R/e6D\nf0d0gg+Bb9WqVWzZsoUtW7Zw7733Yjab6datG4MGDXL8xMfH+7VwouXoEaEjKURLRon6K2BKVADx\nwVpGJxpVgW/TaTP3fZcHVH5LHNs+kKFtKgOTcxNhXatI1BRu0DAozuDSxxhl1HClj1lTwnR2Bsbq\nHdlpAJ78odDluIGxegrMdn7Krx6Q4zyFolt4AEatwrYaI0z/vqOQiPM10M5hOu7tHuJ4DZV9nR8d\nKWNHtpmr442Ma1/3aFhP7HY7Hx4+x+bTFiy1TKdoG6xlatdg2ode+gsNiwvnnLXFqFUI02tcRnT7\nM08n+BD4RowYwYgRIwAcozu3bNnCtm3b+OijjygpKaFdu3bs3r3brwUULYOiKIxONPLWr6Wq7aPO\nT13oHRlAmyCNY1K61Q4HawS4PbnltA3WkhwWQHqRekSnNwNbahqdZHQJfCMTjPXqXB+VGKgKfO7S\np41OCuSHbIsq8H3nNF8xOUzHZa0DVIEvx2Rz9EEeLKycAvJc/+ppRd+cNDtSxP2YU060sTKo18eX\nmSbe/KW0zuMOFlZwsLCCt4e1lvUWRZ2c+/iMOoVWNtfuBH/X+OrVY2gwGGjdujWtW7cmPDyc4OBg\n7Ha7au08IXw1MtFIzc/KYJ3CNeeXLlIUhVEeUqFB5dy51cfKKLao5/9pFOjgY+2jb7SeKKP6T8PX\nZs4qA2P1ROg9/9FGGDT0j9G7BGfnvo/OYToGxRpoVcu1tmVZOFla/WXgkyPqRBOfHq1/1pdPfDj3\nZKnVZe6jEO44N3VW1vjc9fE10uCWPXv28MYbb3DHHXfQuXNnBg4cyOOPP86PP/7I0KFD+c9//sMP\nP/zg18KJliXSqOVPPSqzwOgUeLRXKMYa3/QmdgyiSy21tw0nzfycr67ttQvRYvAhsTVUDpv+c69Q\nAjSVI0qndAki0UOuTa+u1bsV7pLZBGjg8V6h6DRKnc2xyWEB6LXV5fKkaqrH0aIKfi1QN/n+mGMh\ny4ck21XSC8tVtWtvrLvAbDeiZXCu8QWeb+p01mh9fMOGDUNRFLp168ZNN93EgAEDGDRoEG3atPFr\ngUTLdmunoMq1/BTX3HyBOoW3rokgo8SKyWrHDszeVkD++akLpRV2lv+mbo7zZWBLTYPiDKweFY3J\nalf1m9XH1fEGPh8VRaZT/2ViiNaxuGb7UB1aBdzN5w3QQNL56RhD2xjpF6N3XGtHtoWlB6rf8/oM\nE3d2DWadm8nxdiqbLKd0Dfap/M79jVdEBfCnHiGqbSdKrTyzs8jxekuWmXyz7YKfnbi0OQc+g1bB\n6OaLaqP18a1YsYIBAwYQERHh1wII4czdN74qiqKoljz6faKRlYerP+R/K6j/wBZngTrFb9kignQa\nuoZ7fl8GrUK7EC1Hil1rZB1b6VT9ZTWvlRii5b30UkfTaI7JxvYsC195mOS/PrOMO7oEofFiegdU\nrkzxtdOcwbHtAunqNJq0S5iO//6mdYxWtdor851O7BSEEJ647eNzE+QarY9v9OjREvREkzO6jryd\nvg5saUyeaqe1Be8gnYYhbdT9jy/tK3bJAVrl1Dkbe3PL3e5zZ0uWmaIa12oVoLikXgP3cyDXZpTJ\nXENRK3fTGdx98fX3PD6f2iHy8vJ48skn6d+/P/Hx8bRp04YBAwYwd+5c8vPz/VowIbzRoZWO7hGe\nA4OnFeKbIk9Buq73MNpptXvnkaPOf+S+rDbh3Fc3IsHocTHg3yeoBycdLbby2wWukiEube6mM7hL\ndB/UWINbTpw4wTXXXMOCBQsICgrixhtv5IYbbiAwMJBXX32Vq6++mhMnTvi1cEJ4w1OtLy5IQ2gd\nq0U0JZ5qdnX1U1ZO9fCckm1aN3Wf3sbTJkq9WAsmp8zKD06jM2vLVRpp1DIgRj3XUQa5iNq4a+p0\nO6rTz318Xn8qPPXUUxQWFvK///2P1NRUFi1axKJFi0hNTWXNmjUUFhby1FNP+bVwQnhjeFsD7uJb\ncqvmldWkk5vAp1DZx1ebyqke7gNS+1AttycHqZZRMltRLfjryVcnTC4rU9QVhJ2Tc3970uT1Ctui\n5XH+3fBc42ukwLdhwwamT5/OVVdd5bJv0KBBTJ8+nQ0bNvi1cEJ4IyRAwxA3q75fyMCWxhAaoCE+\nSP0nmRii9WqAzahEo0syb4AxSYFoFYVRTs2h7nKF7s21MHNrPlM25DJlQy7vHFTPA/RmZYoBsXrC\na3xjLym3s7mWlTZEy1bmMo/P/eC2RuvjKysrIyoqyuP+yMhIWZldNBp3zZ3NaWBLFecalbfBOyZQ\n65JSTatU9rtBdQacKlUL/lYpLrfx5I5CfswpJ6PE6pgyUiVAg1frEAZoFEYmuA5yEcIdl6ZOrXJ+\nSoP6uEar8XXt2pWVK1diNrt+ezObzXz00Ud0797dr4UTwlt9ogJUtSWtAl3Dm1/g6xERUOvr2jjX\nyAbG6h3z6NoEa+kTqb5WzXUNN5wwUVTuuUlycJyh1mkmNTln2Nl1tpwz9Zg4Ly59Lplbzge4mgkj\nDNrK/mN/8jrwPfbYY+zevZuhQ4eyePFiNm7cyMaNG1m0aBHDhg1j9+7dPPbYY34tnBDe0igKf72i\nFUE6BZ0C07oG+/2P5WK4vp3RkZ2mW7jOp1RpQ9oYGHa+yTcmUMOMy0NV+50D4/pMExXnE06vrWVx\n39hADfc7TVivTcdWOrrV+NJRNXFeCGfuMrcA3NUtmCCdgobKv2V/rr4OPkxgHzduHG+++SZPPvkk\ns2bNUu2LiYnhzTffZOzYsX4tnBC+6B2pZ/WoKMqsdkJry+vVhIUGaFh4TQRFFjut9IpX6whW0SgK\nc68M4xGzjVZ6xWWS+jXxRl7ZX+JY8iXfbGNHtoW4IK1q4r8C/GdwOGF6DVqlsrbo7YT3KqMTjRwo\nKHG8Xp9Zxh99mDgvWoYyp4aAqhrfwFgDH4+Mwo7d71MZwIfABzBp0iQmTJjA7t27yczMBCAxMZGU\nlBR0uubXrCQuPTqNQmgzXxVAqyhEGOr/Hjwtllu14G/NdQ/XZpQR7zQV4nfRAfSK9G0JJmfDE4y8\n/nMJlvPDQk+fnzh/RdSFXVdcWtyN6qxSWctrmL9ln6NVQEAA/fr1o1+/fg1RHiFEA3Je8HdrlsVl\nxJzzlIT6CA3QcHW8gW9PVo8JWJdhksAnHOx2u9vVGS4Gj4Gvqkbnq8TExHoXRgjRsJwX/LXaUQ1q\nCQlQuKqea/Y5G50UqAp835028XB5CCHNtBla+JfFhmqeqE7hoq3h6DHw9erVy+eLKYpCXl7eBRVI\nCNFwFEVhTJLR46Ky17Y1+ryMkycpUQHEBmrIKqv8eDNbIfWkmRsvYCV4celwl7XlYvEY+BYsWHDR\nCiGEuHh+n2Bk0a+l2NzMXvCUAaY+NOcnzr9dYyL8uswyCXwCcL8I7cXiMfBNnjz5ohVCCHHxVOXU\n3JKlzsPZMVRLVz9P+h+VGKgKfL/kV3CsuIL2oTIYrqX5MrOMj4+U0S5Uy0OXh3qcynAxSGO7EC2Q\nuwEso5MCUfw83SA+WMsVUeqJ81+fkDl9Lc2pUivz9hRzsLCCr0+YWZF+rlGbOj0GvnfffZeKCt+X\nFKmoqODdd9+9oEIJIRrWgFg9ETVyagZoqtOb+dt1Ttf9Kc/79QDFpWFnjkXVtL4vz+I2XdnF4jHw\nPf300/Tp04fnnnuO3377rc4LHThwgGeffZY+ffrwzDPP+LWQQgj/CtAoPHFFK0IDFIxahUd6hnqc\n/3ehejqlSjtUWCEL1LYwh4rUlajT52xNs49v9+7dvPnmmyxcuJB58+YRHx9Pnz59aN++PeHh4djt\ndgoKCjh27Bh79uzhzJkzREdHc//99/OnP/3por0BIUT9DIg18Ol1UVjt+G0kpzvxQVqCdQql5z/o\nSivsnDlnIz64+aWUE/WTXqiu5eebbRRa1GtCNonAFxwczOOPP87DDz/M+vXrWbNmDTt27GD9+vWO\nb2uKotCpUydGjBjBmDFjuO6669Bq5ZdZiOZCp1F8z2LhI42i0KmVjn01mjjTC8sl8LUQVrudI0Wu\n3WZHi9X5yowXcbxTnbcKCAjgxhtv5MYbbwQq+/Dy8/MBaN26tQQ6IUSdksOcAl9RBde0acQCiYvm\nRIkVk5vFOY4Vq4Nhk6jxeTxBpyM6OrohyiKEuEQ5r414qND3gXOiefL0/9o58Ml0BiHEJcV5Qd10\nCXwthqf/16fPOfXxNYXpDEII4S/tQnXUTNF51mSjwGzzfIK4ZDgPbPGkIQdYOZP0CUKIBhegUWgf\nqlN9+08vLKdvjIECs43n9xaxLycU5XCOY39CsJYHLgvl8tber0Ivmha73U66m4Et7khTpxDikuPc\n3FnV9/PK/mK+P2Oh2KqhyGJ3/PySX8HcHwqxWGXOX3OVY7JRZPHu/580dQohLjnOA1zSiyrINVnZ\ndNrs4QzINdvYkuV5v2jafBnE1CQyt9RUWlpK7969efPNNxu6PEKIS1RyK9cBLl+fMLtdJaKmdRmS\n27O58mUQU5MLfMHBwRQWFqLXy+rJQoj66RSmo+ZH24kSK6uPlamOubtbMP8ZHK7a9kO2hZwyNxPB\nRJPn7cAWgMCm2NQ5cuRIvvrqq4YsixDiEhak05BQI1uLHTh1rjqgabFzfVIgvSP1dKpRO7QBX8mK\nDs2Sc43PuZ+3pos5qtPrwPfYY49x/Phxpk6dynfffUdGRgY5OTkuP75asmQJvXr1Ii4ujqFDh7J1\n61aPxx44cIAbbriBLl26EBcX50iIXV6u/laxefNmhgwZ4jhm+fLlPpdLCOF/zv18NfUMqaC1sfIj\naYzTgrjrMkyS2LqZKbbYyCqrnrKiUWBgrOdWwyaZuWXQoEFAZfBZvXq122MURSEvL8/rm3/yySfM\nnj2bF198kYEDB7J48WImTpzItm3bSEhIcDneYDAwefJkevXqRVhYGPv37+eRRx7BYrE4VoQ4duwY\nt956K3/84x9ZsmQJW7du5fHHHycyMpKxY8d6XTYhhP91DtOResr9YJXB4dUL445oa2ThzyVUJfA/\nUWplf145vSKlu6W5cF6RoX2IlqQQzyHnYk5n8DrwzZo1q85jfF3E8vXXX2fy5MlMmTIFgPnz5/Pt\nt9+ybNky5syZ43J8hw4d6NChg+N1QkICaWlpbN++3bFt+fLltGnThnnz5gGQnJzMjz/+yIIFCyTw\nCdHIPDV1RegVLg+p/qAMN2gYHGfguxojPtdlmCTwNSOuzZwBxAd5zu18MaczeB34Zs+e7dcbWywW\n9u7dy8MPP6zaPnz4cFUgq82RI0fYsGED48aNc2zbsWMHw4YNc7nm+++/j9VqlaTaQjSi5DD3k9FH\nJgaiUwpU28YkGVWBL/WUmYd62gjSySys5sB5YEvnMB1xQZ7/3zXJps6a7HY7ubm5AERGRvpc0wPI\nzc3FarUSExOj2h4VFUV2dnat544cOZJ9+/ZhNpu5/fbbVUE5JyfH5ZrR0dFUVFSQm5vrsk8IcfFE\nGDREGTWcNanTlY1OMlJ+Rn3slTF61bEmq53vTpkZnRToOMZitTN/TxFbsyxU1OgDbG3QMKVLsOpY\ngK8yy3j74DmijRr+ltKKmMDqL8Lm89fa5nStCxGs03BjOyPTuoWotu/LtbDgpxIAHukZymWXQHaa\njJIK5u8uJr2oMuBZnAbiJofpaG3QoNeAxU22OsNFrJP49NXp8OHDTJ06lcTERJKTk0lOTiYpKYlp\n06Zx5MiRhiqji+XLl7Np0yaWLFnCxo0b3TaLCiGaps5O8/m6R+hoH+r6HVyrKFyX6DrIpab30kv5\n5qSZ0go7ZiuOn9PnbLywt5jMkurmtlOlVubvKeZkqZU9ueU8v6dYda13DpbyrZtrXchPntnG2wfP\nsbXGJHyz1c7cHwo5WFjBwcIKXthbVO9n2VTY7Xb+b1cRP+WXO96781eHTmE6FEUhzk1zp0FbuW7j\nxeJ1je/XX3/luuuuw2QyMXr0aJKTkwFIT09nzZo1bNiwgfXr19O9e3evrhcZGYlWq3Wp3eXk5BAb\nG1vruW3btgWgS5cuWK1WHnzwQebOnYtWqyUmJsbtNXU6HZGRkW6vl56e7lWZhTwrX8nzcpWAHqiu\nifU1FJGeXtmC5Py8uts0QKjj9b68cjb/fJhYvQ2bHT4/Eoqn7+9WO6zYe4oJMZVB57NsAxX26kD6\nQ46FLT8fIlpvp8IOq2u51oX64OezRBWdA2BHYQD5liDHvqPFVn745RDhAb7XMpvK79fxMg2/FYR6\n3N/WYOXMscOcAVrZgwB1DTcAm1/fS1V88sTrwPfUU08RGBjIxo0b6dixo2rf0aNHGTVqFE899RQf\nfvihV9fT6/X06dOH1NRUVR9damoqN910k7fFwmq1YrPZsNlsaLVa+vXrxxdffKE6JjU1lZSUFI/9\ne3U9JFEpPT1dnpUP5Hm5l9jBzqmdhew+W86wtgbu7B2NRlHcPq9koGd+PvtrLGJ7QBPLVckhbM8y\nU1BRWOu9dpQE8fjARBQFdhzNpXJWYLXftHEMSg5hyxkzRdbar3Uh9pcG0DqxI5FGLW9tzQfU/V/W\nyESSYw0+XbMp/X6t2VcMlLndF2XUMDMlnOSoeAA6lRXzU6n62GC97qK+F68D39atW3nooYdcgh5U\njra85557eO2113y6+YwZM5g+fTopKSn079+fZcuWkZ2dzbRp0wD45z//ya5du/j8888B+OCDDwgM\nDKR79+7o9Xp2797NM888w4QJEwgIqPwGMW3aNBYvXszs2bO588472b59O++//z5Lly71qWxCiIZh\n1Cn8u384drvdq/EBY5KMqsC3PtPEtG7BrMtUN3tel2Dk/stCuO2bXMrOJ7bONdv4IceCTqlMmOxs\nfaaJqV2DWZuh/iAek2Tk4cs912C8cX9aHkeLKzu6bHb4+oSJYW2M7MxxzWZyqLCCAT4GvqbCbLXz\n7Un1/4snf9eKweffj0GrHvEfF+haq76YWVvAh8BntVoxGo0e9xuNRioqfFtccvz48eTl5fHCCy+Q\nlZVFjx49WLlypWMOX1ZWFseOHXMcHxAQwEsvvcSRI0ew2+0kJiZy77338sADDziOadeuHStXruRv\nf/sby5YtIz4+nvnz53PjjTf6VDYhRMPydlDckDYG/rO/BNP5YHbWZGPDSTPfn1HPB7y+nZFwg4Zh\nbQ1DgJMAACAASURBVA2srdEXuC7DhKcBg1llldfammVRbb8+KfCCh9ePSQrk9Z9LHK/XZpjc9n1B\n816Y9/szZorLq99VmF7hmngDARr3zy8+2LXl7WKO6ARQCgoKvGpYHjNmDDk5OXz99deEh6tz6RUU\nFPD73/+e6Oho1q5d2yAFFY2vKTWtNAfyvHxT2/Oat7tIVcML1imUVlR/dLUN1vLu8NYoisL+XAsP\nfV89NUKngKJAuYd1b4N0CudqXCspRMvbw1rXa7R6TQVmGzd/dZaaqyo536tKmyAtK651PwbBk6by\n+/WXrQX8kFP9xeHmjoE8VEtt+UB+OX9Ky1dt6xMZwCuDIxqsjM68rvH97W9/46abbuLKK6/ktttu\nczzwgwcP8sEHH1BYWMjLL7/cYAUVQrRco5OMqsBX6hQ8RicaHYHq8tYBJAZrySytbGassKOqZhm1\nYKox1N45EI1JMl5w0IPKSfiDYg2k1aiZugt6UJmztKTcRkhA85qjmF1m5cccdW15dKLnlkHA7ajO\ni13j8zrwXXXVVXzyySf84x//YMGCBap9vXv3Zvny5Vx11VV+L6AQQvRsHUBCsJYTpa6rNGiAkTU+\nbBVFYVSSkcW/lrq91u2dg1mbWcaZc65VQI0Cv0+o/YPbF6OTjKrAV5vDRRX0bmaZadZnmlRNt13C\ndHT2kKSgSphewahVHE3XcHGztoCXgc9qtXLq1Ckuv/xyNm3axJkzZ8jMzAQgMTGRuLi4Bi2kEKJl\nUxSF0R6CWd8YvWoiOsB1iUaW/lqKc2hTgFFJRuzA8t9crzUgRk+k0X8zqfvF6Glt0JBndg2ysYEa\nVRLnQ4XNK/DZ7HbWOw0KGp1U95cGRVGID9I4Bv7Axa/xeVWvtlqt9OnThxUrVgAQFxdH37596du3\nrwQ9IcRFMTLB6PYDy92HbZRRSz83KwFcGV0ZJK9LNOLuo9Y508uF0mlcJ+FDZdAb1159L28HuBwu\nrODO1Fzu/TWMoauzHT+3fXOW3WctdV/AT/bllnOqRq05QFOZXNwbzs2dTTLw6fV64uPj/dLuLYQQ\n9REdqKVvjDqYtQpQGORhGoC7vqaqIBkXpCUlSt0kF65Xal02p75GuSnHdYlGuoSr7+9t4Hv952KO\nFbs2+Z4+Z+PlfcVuzmgYzlMYrooz0ErvXR+lc7Lqiz2dweue1MmTJ7NixQrKytxPUhRCiIZ2Qzt1\nLem6RCN6D7WFQXEGWhuqP+LC9QqD46qD5I1ONa5RiYHoPAzBvxDtQnX0qpGLU6tU3st5pYpjxRVY\nrLUPsq+w2fkpz/Oq5hklVkweBtD426/56kDtS99o9wh10G8fenEXD/B6cEvnzp2x2Wz069ePP/zh\nD3To0IHAQNdmgfHjx/u1gEIIUeWqOD1/6BTEuswyekQEMK1bsMdjAzQKT/6uFS/vK8Zuh0d7hapW\n+R4Sb2Bix0C+PGGiZ+sA7uzq+VoXalafUJ7ZVUSuycZd3YJpc34uW0yghuzz/XxWe2Xwc64J1nSi\n1Oo2wXNNZ8qsbnOf+lO5zc6xYnXg6xHhfaLtoW0M7Mwxsi3LTN8YPUPb+G9AkTe8nscXEVH3HAtf\nF6IVzUtTmTfUXMjz8k1LfF5/31HA92eq++Vm9QllTC39jF+fMPF/u6qTWveN1lNht7P7bHUt8Ln+\nYQ2eBSa9sJx7v6ueixdt1PDRyKgGvac/ef21wNOq60IIIeqncyudKvDV1c/nvMZdcpiOfLONmrk/\nT59z7f/zt0Mui8w2bA3T37wqrclkIjMzky5dunDllVc2dJmEEKJFcJ7zVlfgcxdwMkvUgc7d/ER/\nc11dvXkFPq8GtxgMBh599FF++umnhi6PEEK0GM4B43BhBTYPi+Da7Xa3Acd5VfOLUeNzLkddk9ab\nGq8Cn6IodO7cmaysrIYujxBCtBixgRpCA6oH3JRZ7Zx0k50GILvMpkoGbdDYaROsdZkTd6aBA5/N\nbnepeXa+FGt8ADNnzmTRokVS6xNCCD9RFMWl1vdrfjmmCrvL1AbnWlaiwYrGzYrmDR34TpVaHcs+\nAYQGKG6XGmrKvA7TmzdvJjo6miFDhtCvXz+P0xlefPFFvxZQCCEuZZ3DdOyqMSrz37uL+ffuYjRU\npjx76sowjDrFZWBLorEywEUZNeiU88m4gaJyO6XlNoIbKOH1oSLX2l5zS27ideBbvny549/btm1j\n27Ztbo+TwCeEEN7r3CoAd6uX24Bt2RbeTS/lnu4hLgEn6Xzg0ygKsUFaVRPpmXM2OoU1TOBz6Wds\n1byaOcGHwJefn1/3QUIIIXzSKzIABfcL1ELlQrp3dg12CThVgQ8gPkijDnxlVjo1UL9bcx/YAj70\n8QkhhPC/uCAtD/UMIcqowaAFg1P2rlyzjQ0nTY4ML1CZ9ixeb1Ndo6aGHNnpGviaX42v1sC3YcMG\nl5GcFosFu5vhtocPH2bJkiX+LZ0QQrQAEzoEsWpkFF9eH8OX18cwxmnFiUVOyzG1D9VRswvPOelz\nQw1wyTVZz0+Yr6TXVK5Y39zUGvhuvvlmNm3a5Hidm5tLbGysaluVH3/8kVmzZvm/hEII0cI4ryxx\n1qSelO48EjQu8OLU+JynMXRspWuQxN4Nza9Nne5qgkIIIXxzeesAEoM916RcAp9Lja9hsrc094wt\nVaSPTwghmpiqFec9ce5Xc87ecuactUEqIi79e81wRCdI4BNCiCZpZKL7FefBNeC0NmiouQZsaYVd\nleXFXy6FEZ0ggU8IIZqkKKOWfm5WhG8TpHWZnK7UkcGl3HbhQbCk3MapGtfUAJ2aaY2vzlIfPXqU\nnTt3AlBYWAjAwYMHCQkJUR137Ngx/5dOCCFasNGJRrZlWVTbPPWrxQdpyaixUsPpc1Y6ttLx9M4i\nNp8x0ycygP/rF06grn6DUY44TaBPDNFirOe1Gludge/ZZ5/l2WefVW2T0ZtCCNHwBsUZCNMrFFqq\na2ye5s25G+Cy+lgZm06bAdh1tpx300u5t3uIu9PrtD9PnTKtOc7fq1JryRcsWODTxZpbvjYhhGjK\nAjQKY5ICef/QOce2vjGuzZ9Qmb2lptPnrC7Ban2GiWldg32egmC32/kq06Ta1iOiefbvQR2Bb/Lk\nyRerHEIIIdyY1jWYfLONAwXlXJ8USLdw9wHHuca3NctMVpl6WkOu2caPORYGxBp8KsOvBRUcr9GM\nqlVgWBvPo06buuZbVxVCiBZAr1X46xWt6jzOOfA5B70qazNMPge+dRn/v707DYviShc4/m9AxKjR\nFhAUwcRAbBBco6KJQYiJwRhFQRadJModjA6TO9EoIFEnoo84uDEajQtLnERnxAXHDZcQJ4LR6Fzj\nMnNFQWM0biAKGLyAdvf94HRL02yuSPf7ex4+cOpU1an3gX77nKpzynARbW8Ha9rYNN5nIxtvy4UQ\nQuhVXbasJt9fLaeovP4T3Mvuasm8VG5QNsTF+JV0jYkkPiGEMAHPN1HQzLLue3d3tfDNpbI66+ns\nv1LO7bv3H65RWivoW8N9xsZCEp8QQpgAhUJh9ICLTitrw4SYcaGs3iu7ZFw0HOZ8y7lZo1yfszJJ\nfEIIYSKq3ufTie35vMGH/dmSu0arsFTnSqmaH68bPhn6tnPjfahFRxKfEEKYiOru873cyoq+bZvS\np8rw5Jbz/8fV22qu3lbzf3er7/3tqtLbc1da8WIjXa2lssZ/BUIIIYDqe3y6xa79XWw4lH9/FZid\nF8rYeeHevb4mFvBfquaEujbXb9doteyqMndviHPjfqhFR3p8QghhIqomviYW8IbTvcSnWwWmOnc0\nsPJ/S/nl1/vDn0ev3zGYEtHUEnydHmwaxLNKEp8QQpgIzzZNDN7S8IaTDc//p6CJhYJ3apmGoAWD\nHt6uKnP3Xm/XlBZNTCNlmMZVCCGEQNnUgk97Po+H0orBHWz4by/DdTnHdm7Oux1taP+cBQ7NLFA2\nNUwBuy+WodZquXVHo1/jU6exz92rTO7xCSGECfFpb4NPDcuJWVsq+KTb/VVgbt/VMHL3dcr+sxpZ\nQZmG/ymo4MptDRWV5rg7PmdBN9vGuzZnVdLjE0IIM/WclQUDqyTJjAtlRkuU+Ts3w8KEXkIgiU8I\nIcyY7qlPne+ulJNTdP8hFwUw2ATm7lUmiU8IIcxY1zZNcGp+/2nQqi9r72nXpMaJ8Y2VJD4hhDBj\nCoUC/1p6dKb0UIuOJD4hhDBzbznbVJsMmlspeK2daczdq0wSnxBCmLm2zSx5pZo3LgzqYEPTerzx\nobGRxCeEEIIhLsbDnVUffDEVkviEEELQ36Ep9pXequ7e2orOrUxzqrdpXpUQQogHYm2pYE6fVqSe\nLsXGUsGH7i1QmNDcvcok8QkhhACgc+smzOvbuqGb8cTJUKcQQgiz0uCJLykpia5du+Lo6MjAgQM5\nePBgjXWzsrIICwtDpVLRvn17Xn31Vb7++mujOkql0ugnLy/vSV+KEEKIRqBBhzo3b97MtGnTWLhw\nIf369WP16tWMGjWKQ4cO0aFDB6P6R44cwdPTk0mTJuHg4EBmZiYff/wxNjY2BAUFGdT94YcfUCqV\n+t9tbW2f+PUIIYR49jVo4lu2bBljxozh/fffByAhIYHMzExSUlKYOXOmUf3Jkycb/B4eHk5WVhZb\nt241Snx2dna0adPmyTVeCCFEo9RgQ50VFRUcP34cX19fg3I/Pz9++OGHeh+npKTEoGenM3DgQFQq\nFcOHDycrK+uR2yuEEMI0NFiPr7CwELVaTdu2bQ3K7ezsyM/Pr9cxdu3axf79+9mzZ4++rF27dixe\nvJgePXpQUVHB+vXrGT58ODt27KBfv36P9RqEEEI0Po12OsOhQ4cYP348CQkJ9OjRQ1/u6uqKq6ur\n/vfevXtz4cIFlixZIonvEbm5uTV0ExoVideDkXg9GInXw2uwoU5bW1ssLS2NencFBQU4ODjUuu/B\ngwcJDg4mNjaWcePG1Xmunj17cu7cuUdqrxBCCNPQYInP2tqa7t27s2/fPoPyffv20bdv3xr3O3Dg\nAMHBwcTExDBhwoR6nevkyZM4Ojo+UnuFEEKYhgYd6oyMjOTDDz+kZ8+e9O3bl5SUFPLz8/W9uFmz\nZnH06FH+/ve/A/fm6IWEhBAREUFQUBDXrl0DwNLSEjs7OwCWL19Ox44dUalUVFRUkJaWxs6dO/nq\nq68a5iKFEEI8Uxo08Y0YMYIbN26wYMECrl27hoeHB2lpafo5fNeuXeP8+fP6+n/9618pKytjyZIl\nLFmyRF/u4uLC8ePHAbh79y4zZ87k8uXL2NjY4O7uzoYNGxg0aNBTvTYhhBDPJkVRUZG27mpCCCGE\naWjwJcsepwMHDhAaGoqHhwdKpZJ169YZ1YmPj8fd3Z127doxdOhQcnJyDLaXl5czdepUXnrpJZyc\nnAgLC+Py5ctP6xIa3N27d4mLi6Nbt244OjrSrVs35syZg1qtNqhXVxzNxdWrV5kwYQKurq44Ojri\n7e3NgQMHDOpIrKq3aNEilEolU6dONSiXeN2zaNEifH19cXFxwdXVldDQUE6dOmVUT+L14Ewq8d2+\nfRtPT0/i4+Np1qyZ0Ss1EhMTWb58OQkJCXz77bfY29szYsQIfv31V32dadOmsX37dlJSUti5cye3\nbt0iJCQEjUbztC+nQSxcuJDU1FQSEhI4cuQI8+bNIzk5mUWLFunr1CeO5qCoqIjBgwejUCjYsGED\nhw8fJiEhAXt7e30diVX1jhw5wpo1a+jSpYvB/6nE674DBw4QERHBnj172Lp1K1ZWVgQEBFBUVKSv\nI/F6OCY71NmhQwfmz59PWFgYAFqtFpVKxYcffqhf+qysrAw3Nzdmz57N2LFjKS4uxs3NjeXLl+uX\nQLt06RJeXl5s3LgRPz+/BruepyUkJARbW1uWL1+uL5swYQI3b95k/fr19YqjuYiLi+PgwYNkZGRU\nu11iVb3i4mIGDhzI0qVLmTdvHh4eHiQkJEi86lBaWoqLiwvr1q1j8ODBEq9HYFI9vtr8/PPP5Ofn\nGyQvGxsb+vfvr18i7dixY9y5c8egjpOTE507d36gZdQaszfffJP9+/eTm5sLQE5ODtnZ2QwePBio\nXxzNxY4dO+jZsyfjxo3Dzc2NAQMGsHr1av12iVX1Pv74YwICAnjttdfQau9/75Z41e7WrVtoNBpa\nt773vjyJ18NrtCu3PCjd1IfKw1Bwb4m0q1evApCfn4+lpaXR4tb29vYUFBQ8nYY2sN/+9rdcvnyZ\nPn36YGVlxd27d5kyZQrh4eFA/eJoLs6fP09ycjKRkZFMnjyZEydOEB0dDUBERITEqhpr1qzh/Pnz\nJCUlARgMc0q8ahcTE0PXrl3p06cPIPF6FGaT+GpT9V6gOVuxYgVr164lJSUFlUrFiRMniImJwcXF\nhffee6/Wfc0tjhqNhl69ejFjxgwAvLy8OHfuHElJSURERNS6r7nFCiA3N5fZs2eza9cuLC0tgXvD\nwZV7fTUxx3hVFhsby+HDh8nIyKhXLMw9XnUxm6FO3TJoVXtuBQUF+oWy27Zti1qt5saNGwZ18vPz\njRbTNlULFy5k8uTJjBgxAnd3d0JCQoiMjGTx4sVA/eJoLhwdHencubNBmZubG7/88gsgsarq8OHD\nFBYW4u3tjZ2dHXZ2dnz//fckJydjb2+vf2emxMvQtGnTSE9PZ+vWrXTs2FFfLn9fD89sEl/Hjh1x\ncHDg22+/1ZeVlZVx6NAh/RJp3bt3p0mTJgZ1Ll26xJkzZ2pdRs2UaLVaLCwM/ywsLCz038rrE0dz\n4e3tzZkzZwzK8vLycHFxASRWVQ0dOpSDBw+SnZ1NdnY2WVlZ9OjRg6CgILKysnjppZckXlVER0fr\nk17lxfdB/r4ehWVMTMxnDd2Ix6W0tJScnByuXbvGV199hYeHBy1btuTOnTu0atUKtVrN4sWLcXV1\nRa1W8+mnn5Kfn09iYiLW1tbY2Nhw9epVkpKS8PT0pLi4mEmTJtGqVStmzZplFsMHZ8+eZd26dbi5\nuWFlZUVWVhZz5swhMDAQPz8/FApFnXE0F87OzvzpT3/C0tISR0dHvvvuO+bMmcPkyZPp2bOnxKoK\nGxsbfU/Pzs4Oe3t70tLScHZ2ZvTo0RKvKqZMmcL69etJTU3FycmJ0tJSSktLUSgUWFtbS7wegUlN\nZ8jKymLYsGHAvTFuXS9l9OjRLFu2DIB58+bx5ZdfUlRUxCuvvMKCBQtQqVT6Y1RUVDB9+nQ2btxI\nWVkZPj4+LFy4kPbt2z/9C2oApaWlxMfHs3XrVv2bMoKCgoiKijL4R6orjuZiz549xMXFkZeXh7Oz\nMxEREYwfP96gjsSqZkOHDtVPZ9CReN2jVCoNPsd0YmJi9A9RgcTrYZhU4hNCCCHqYjb3+IQQQgiQ\nxCeEEMLMSOITQghhViTxCSGEMCuS+IQQQpgVSXxCCCHMiiQ+IYQQZkUSnxDV8PLy4ne/+11DN6NW\nWq2WuLg4PD09adOmDWPGjHmi5zt+/Dj+/v44OTmhVCr517/+9UTPJ8STIolPNGqhoaE4OjpSXFxc\nY52oqCiUSiXnzp2r93EVCsUzv0RdWloaixcvZsiQIaxYsYLIyMga606cOBFHR0ej8tzcXDp37oxK\npSIvL6/G/TUaDeHh4eTn5zN37lxWrVpFhw4dHst11ESpVOpfsFrZF198gVKpZNy4cajVan7++WeU\nSiVKpZLNmzcb1V+6dClKpZKLFy/qyyZOnIhSqaRfv37Vvh3Cycnpmf/iIx6eJD7RqIWGhlJeXs7W\nrVur3a5Wq0lPT6dXr1506tTpKbfuycrOzkapVJKQkEBwcDD9+/evtX7VRJ6bm8u7776LhYUF27dv\nN1oEubIrV65w7tw5xo8fzwcffMCoUaP0L0R9kqq2ecWKFcTGxhIQEEBycrL+9UY68+fPr9drjnRy\ncnJIT0+v9rzP+hcf8fAk8YlGzd/fn5YtW7Jx48Zqt+/bt4/r168THBz8lFv25BUUFNCiRYt616+c\nEPLy8nj33XdRKBRs27at1qSnOxdAy5YtH66x1SgtLX2g+itXrmTatGn6pFf1LSJeXl41JrLqWFtb\no1KpHjhZisZPEp9o1Jo2bcqwYcPIzs6u9q3TaWlpWFlZERgYyJ07d5g7dy6+vr688MILtGvXjjfe\neIMdO3bUeZ61a9caDZfBvYXRlUolBw4cMCg/evQoo0aNwsXFhXbt2uHv709WVla9run27dvMmDED\nT09PHBwc6NWrF4mJifoPZ93Q3u7du7l48aJ+mK9qG2py9uzZB0p6EydOxNfXF4DIyEiUSiVDhw7V\nb8/OzmbIkCE4OTnh4uJCSEgIp06dMjhGfHw8SqWSU6dOMX78eF544YU6e6iVrV69mpiYmBqTHkBA\nQAAqlYqEhIR6v9x26tSp5OTkVDtEKkyXJD7R6AUHB6PRaNi0aZNB+e3bt9m5cye+vr7Y2tpSUlLC\nmjVr6NevHzNnzmT69OloNBp+85vf8M033zy29mRnZ+Pv709xcTHR0dF89tlnlJeXM3LkSLKzs2vd\nV6vVMmbMGD7//HP8/PyIj4+nS5cuzJo1i08++QQAe3t7Vq5ciZeXF7a2tqxatYpVq1bx8ssv13ps\nhULBTz/9pE9a9Ul6AOHh4cTGxgIwbtw4Vq1axdSpUwHYv38/AQEBFBQUEBMTw0cffcSxY8cYPHgw\nZ8+erfZYJSUlzJw5k4kTJ9Z5bq1WS1JSElFRUbUmPQBLS0uioqI4ffp0vRKZQqFgxIgR0uszQ1YN\n3QAhHtWAAQNwcnJi48aNBg947Ny5k9LSUv0wp+5JxCZNmujrjB8/Hh8fHz7//HMGDRr0yG3RarVM\nmjSJ/v37Gwy5hYeH8/rrrzN79mx2795d4/4ZGRn84x//YNq0aURFRen3jYyMJDU1lYiICNzd3QkO\nDmbTpk0UFxczatSoerXtzp07vPPOO0D9kx5A7969sbKyYu7cufTu3dvgfNOnT6d169bs3btXf88v\nMDAQb29v4uLiWLNmjcGxXn75ZaOy2uzdu5cvv/yyzqSnExAQwPz585k/fz4jR46s8z6dQqEgKiqK\n8PBwNm/eTGBgYL3bJhov6fGJRk+hUBAYGMixY8cMehkbNmygRYsW+g97CwsLfdKrqKjg5s2blJSU\n0K9fP44dO/ZY2nLy5Eny8vIIDAyksLBQ/1NSUoKPjw///Oc/KSsrq3H/PXv2YGlpyYQJEwzKf//7\n3+u3PyyNRkNhYSGtWrXC1tb2oY+jc/XqVU6ePElYWJjBgy6dOnXC39+fzMxMo15UeHj4A53j+vXr\naLVaOnbsWGfSg/vDl6dPnzYaAahK17aAgADc3d0N3gkoTJskPmESdL26tLQ0AAoLC8nMzGTIkCE0\na9ZMX+8vf/kL3t7eODo60qlTJ1xdXUlJSeHWrVuPpR26xPvRRx/h6upq8LNy5Uq0Wi03btyocf+L\nFy/Stm1bnn/+eYNyV1dXLCwsjO4xPghra2tWr15Nbm4uQUFB/Prrrw99LF1bAdzc3Iy2ubm5UVpa\nSmFhoUH5iy+++EDnCAkJYejQofz5z38mMTGxXvvoEll9hy91vb4zZ87oH5KSYU/TJolPmIQuXbrg\n4eGh/5afnp6OWq0mJCREXyctLY0//OEPdOrUiS+++IJNmzaxZcsWRo0ahUajqfX4NQ2ZVd1P9/us\nWbPYsmWL0U96enqdva0n9aGrUCgYNmwYiYmJHD16lLCwMMrLy5/IuWpS+UtIfVhaWpKcnMzAgQOZ\nNWsWqampde5TOZHV1evTedBkKRo3SXzCZISEhHD27Fl+/PFHNmzYgIODg/5pRIAtW7bw4osvsm7d\nOkJCQvDz88PHxwetVlvnvSDdUF7VifIXLlww+F3Xo2nevDk+Pj7V/jRt2rTG8zg7O5Ofn09JSYlB\neV5eHhqNBhcXl7oDUQPdB/p7773HnDlzyM7O5oMPPkCtVj/U8ZydnQE4c+aM0bbc3FxatGjxWIZU\nra2tWbt2Lb1792bKlCn1SmaVhy/rm8gq9/pkDp9pk8QnTEZQUBAWFhbMnz+fw4cPM2LECIMPMCsr\nK7RarcEH4fnz59m+fXudx9YltMpTBtRqtdGDGj169KBTp04sW7as2qHE69ev13qet99+G41Gw8qV\nKw3Kly1bhkKh4K233qqzrTWpHIvIyEimTJnC7t27mThx4kP1chwdHenWrRt/+9vfKCoq0pf/9NNP\nZGRkMGjQoMeWQJ577jnS0tJQqVRMmDCh1geEdKKjo8nNza0xUVZtW+VeX10jAKJxk6c6hclo3749\nr776KhkZGQAGw5xwb7L7tm3bCA0Nxd/fn8uXL5OSkoKbmxsnT540qFs1Ebi7u9O7d2/i4uK4efMm\nrVu3ZvPmzUa9JYVCwdKlSwkKCsLb25sxY8bQvn17rly5ok+a27Ztq/Ea3n77bXx9fYmPj+fixYt0\n7dqV/fv3s23bNsLDw1GpVLW2szZV63766acUFxezevVqWrZsycKFC+t9LJ3Zs2czcuRI3nzzTd5/\n/33KyspISkqiWbNmzJgx44GPV5vWrVuTnp6Ov78/Y8eOZcOGDbz22ms11h8+fDju7u6cOHGi2u3V\nxS46OpqxY8c+riaLZ5T0+IRJ0T3k4ubmRvfu3Q22hYWFERcXx+nTp4mJiWH79u3Ex8czZMgQo2//\n1fVUVq1aRZ8+fUhMTCQxMZHXX3+dzz77zKhu//792bt3L6+88grJyclERUWxbt06bG1tmTRpUp3X\n8PXXXxMZGUlmZiaxsbH8+9//5o9//CMLFiwwqlvfHlVNS3AlJCQQEhJCamoqcXFxdR6jqgEDBpCe\nno69vT3x8fEsXbqU7t27s2vXLoMl4h7XEmBt27YlPT2dNm3aMHr06Dqfxo2Ojq627TW1Z/jw4Xh4\neMhQp4lTFBUVyZ1cIYQQZkN6fEIIIcyKJD4hhBBmRRKfEEIIsyKJTwghhFmRxCeEEMKsSOIT7G+e\nSQAAACZJREFUQghhViTxCSGEMCuS+IQQQpgVSXxCCCHMiiQ+IYQQZuX/AelMnf6UiYTlAAAAAElF\nTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the relationship between K (HIGH TO LOW) and TESTING ERROR\n", + "df.plot(y='testing error')\n", + "plt.xlabel('Value of K for KNN')\n", + "plt.ylabel('Error (lower is better)')" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "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", + "
testing errortraining error
K
140.2583330.286611
130.2666670.282427
180.2666670.284519
160.2666670.282427
150.2666670.284519
\n", + "
" + ], + "text/plain": [ + " testing error training error\n", + "K \n", + "14 0.258333 0.286611\n", + "13 0.266667 0.282427\n", + "18 0.266667 0.284519\n", + "16 0.266667 0.282427\n", + "15 0.266667 0.284519" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# find the minimum testing error and the associated K value\n", + "df.sort('testing error').head()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(0.2583333333333333, 14)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# alternative method\n", + "min(zip(testing_error, k_range))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What could we conclude?\n", + "\n", + "- When using KNN on this dataset with these features, the **best value for K** is likely to be around 14.\n", + "- Given the statistics of an **unknown player**, we estimate that we would be able to correctly predict his position about 74% of the time." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Training error versus testing error" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the relationship between K (HIGH TO LOW) and both TRAINING ERROR and TESTING ERROR\n", + "df.plot()\n", + "plt.xlabel('Value of K for KNN')\n", + "plt.ylabel('Error (lower is better)')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **Training error** decreases as model complexity increases (lower value of K)\n", + "- **Testing error** is minimized at the optimum model complexity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Bias-variance tradeoff](images/training_testing_error.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Making predictions on out-of-sample data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Given the statistics of a (truly) unknown player, how do we predict his position?" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1], dtype=int64)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# instantiate the model with the best known parameters\n", + "knn = KNeighborsClassifier(n_neighbors=14)\n", + "\n", + "# re-train the model with X and y (not X_train and y_train) - why?\n", + "knn.fit(X, y)\n", + "\n", + "# make a prediction for an out-of-sample observation\n", + "knn.predict([1, 1, 0, 1, 2])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Disadvantages of train/test split?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What would happen if the `train_test_split` function had split the data differently? Would we get the same exact results as before?" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.641666666667\n" + ] + } + ], + "source": [ + "# try different values for random_state\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=98)\n", + "knn = KNeighborsClassifier(n_neighbors=50)\n", + "knn.fit(X_train, y_train)\n", + "y_pred_class = knn.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Testing accuracy is a **high-variance estimate** of out-of-sample accuracy\n", + "- **K-fold cross-validation** overcomes this limitation and provides more reliable estimates\n", + "- But, train/test split is still useful because of its **flexibility and speed**" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/10_linear_regression.ipynb b/notebooks/10_linear_regression.ipynb new file mode 100644 index 0000000..8f53d96 --- /dev/null +++ b/notebooks/10_linear_regression.ipynb @@ -0,0 +1,2273 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Linear Regression" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "1. Introducing the bikeshare dataset\n", + " - Reading in the data\n", + " - Visualizing the data\n", + "2. Linear regression basics\n", + " - Form of linear regression\n", + " - Building a linear regression model\n", + " - Using the model for prediction\n", + " - Does the scale of the features matter?\n", + "3. Working with multiple features\n", + " - Visualizing the data (part 2)\n", + " - Adding more features to the model\n", + "4. Choosing between models\n", + " - Feature selection\n", + " - Evaluation metrics for regression problems\n", + " - Comparing models with train/test split and RMSE\n", + " - Comparing testing RMSE with null RMSE\n", + "5. Creating features\n", + " - Handling categorical features\n", + " - Feature engineering\n", + "6. Comparing linear regression with other models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Reading in the data\n", + "\n", + "We'll be working with a dataset from Capital Bikeshare that was used in a Kaggle competition ([data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data))." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read the data and set the datetime as the index\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bikeshare.csv'\n", + "bikes = pd.read_csv(url, index_col='datetime', parse_dates=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredcount
datetime
2011-01-01 00:00:0010019.8414.39581031316
2011-01-01 01:00:0010019.0213.63580083240
2011-01-01 02:00:0010019.0213.63580052732
2011-01-01 03:00:0010019.8414.39575031013
2011-01-01 04:00:0010019.8414.395750011
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "datetime \n", + "2011-01-01 00:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 01:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 02:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 03:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 04:00:00 1 0 0 1 9.84 14.395 \n", + "\n", + " humidity windspeed casual registered count \n", + "datetime \n", + "2011-01-01 00:00:00 81 0 3 13 16 \n", + "2011-01-01 01:00:00 80 0 8 32 40 \n", + "2011-01-01 02:00:00 80 0 5 27 32 \n", + "2011-01-01 03:00:00 75 0 3 10 13 \n", + "2011-01-01 04:00:00 75 0 0 1 1 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bikes.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Questions:**\n", + "\n", + "- What does each observation represent?\n", + "- What is the response variable (as defined by Kaggle)?\n", + "- How many features are there?" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# \"count\" is a method, so it's best to name that column something else\n", + "bikes.rename(columns={'count':'total'}, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualizing the data" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "plt.rcParams['figure.figsize'] = (8, 6)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAf0AAAGACAYAAACncLuXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzsvVmMJHl+3/eJvO+MyKyss+vq6p7smdnpuXZ2lytydwks\nRS8hg7BebBiG9WISkCk+2aCgtV5okKYAQz4IA4IhPtCCHgRIoARL1JL2Et6Z5XKP2dk5d3ayu7q6\nzqwrMyPyviP8EJlZ1d0ZWZ01WV3dXb/PoDDV0ZH/+Mc/suP7///+v0OxLAtBEARBEJ5/XJfdAUEQ\nBEEQngwi+oIgCIJwRRDRFwRBEIQrgoi+IAiCIFwRRPQFQRAE4Yogoi8IgiAIVwTPRV8gnU5/Gfgn\nmUzmV9Pp9GvAHwNdoAn815lM5iidTv8W8NtAB/iDTCbz5+l0Ogj8SyAFlIG/l8lkchfdX0EQBEF4\nXrnQlX46nf494J8D/t6h/w34B5lM5leBPwP+YTqdngF+F/gq8OvAH6XTaR/w94EPM5nM14B/Afzj\ni+yrIAiCIDzvXLR5fx34u4DS+/N/kclkPur97gXqwJeAH2QymXYmkyn1PnMb+FvAX/TO/Qvgmxfc\nV0EQBEF4rrlQ0c9kMn+GbbLv//kAIJ1OfxX4HeB/BWJA8dTHykC8d7z00DFBEARBEM7Jhe/pP0w6\nnf7PgW8Dv5HJZPLpdLoERE+dEgUMbMGPPnRsJJZlWYqinHWaIAiCIDwvjCV6T1T00+n0f4XtsPeN\nTCaj9w7/BPjDdDrtBwLAi8AnwA+A3wDeBb4FvHNW+4qicHxcvoiuP1ekUlEZp8dExurxkHF6PGSc\nHh8Zq8cjlYqefdIpnpToW+l02gX878AW8GfpdBrge5lM5vfT6fQfA9/H3m74diaTaabT6X8G/F/p\ndPr72J7+/+UT6qsgCIIgPJcoz1mVPUtmhmcjM+jHR8bq8ZBxejxknB4fGavHI5WKjmXel+Q8giAI\ngnBFENEXBEEQhCuCiL4gCIIgXBFE9AVBEAThiiCiLwiCIAhXBBF9QRAEQbgiiOgLgiAIwhVBRF8Q\nBEEQrggi+oIgCIJwRRDRFwRBEIQrgoi+IAiCIFwRRPQFQRAE4Yogoi8IgiAIVwQRfUEQBEG4Iojo\nC4IgCMIVQURfEARBEK4IIvqCIAiCcEUQ0RcEQRCEK4KIviAIgiBcEUT0BUEQBOGKIKIvCIIgCFcE\nEX1BEARBuCKI6AuCIAjCFUFEXxAEQRCuCCL6giAIgnBFENEXBEEQhCuCiL4gCIIgXBFE9AVBEATh\niiCiLwiCIAhXBBF9QRAEQbgiiOgLgiAIwhVBRF8QBEEQrggi+oIgCIJwRRDRFwRBEIQrgoi+IAiC\nIFwRRPQFQRAE4Yogoi8IgiAIVwQRfUEQBEG4IojoC4IgCMIVQURfEARBEK4Inou+QDqd/jLwTzKZ\nzK+m0+kbwJ8CJvAJ8DuZTMZKp9O/Bfw20AH+IJPJ/Hk6nQ4C/xJIAWXg72UymdxF91cQBEEQnlcu\ndKWfTqd/D/jngL936H8Bvp3JZL4GKMBvptPpWeB3ga8Cvw78UTqd9gF/H/iwd+6/AP7xRfZVEARB\nEJ53Ltq8vw78XWyBB3gjk8m80/v9O8A3gbeAH2QymXYmkyn1PnMb+FvAX/TO/YveuYIgCIIgnJML\nFf1MJvNn2Cb7Psqp38tAHIgBRYfjpYeOCYIgCIJwTi58T/8hzFO/xwADW9ijp45HhxzvHzuTVCp6\n9kmCjNMYyFg9HjJOj4eM0+MjYzV5nrTov59Op7+eyWTeBr4F/BXwE+AP0+m0HwgAL2I7+f0A+A3g\n3d657wxv8kGOj8sX0e/nilQqKuP0mMhYPR4yTo+HjNPjI2P1eIw7MXpSIXtW7///HfD76XT6b7An\nHP8mk8kcAn8MfB97EvDtTCbTBP4Z8HI6nf4+8N8Av/+E+ioIwhXGsizyhQL5QgHLss7+gCA8QyjP\n2Zfakpnh2cgM+vGRsXo8npdxsiyLe1v7uP1hALrNKmvLcyiKcsYnH4/nZZyeBDJWj0cqFR3ryynJ\neQRBeG4Zd9Ve0HXc/jCKoqAoCm5/mIKuT/QagnCZiOgLgvBc0l+1l5puSk0397b2Jy7KT+IagjBJ\nRPQFQXguOc+qPaFpdJtVLMvCsiy6zSoJTZvoNQThMnnS3vuCIAhPLYqisLY8NxDuxOzk9vMF4WlA\nVvqCIDyXjLtq76MoCslEgmQicabgn/cagnBZyEpfEIRnBsuyTlbhmjZSlJ/Eql0sA8Kzhoi+IAgX\nzjhiPaqN0+F0+tb+meF0/VX7RfIkriEIk0LM+4IgXCiT8nAXpzlB+PyI6AuCcKGIWAvC04OIviAI\nzwTiNCcInx8RfUEQLpRJiXXfaS7m7xLzdyeaHlcQrgriyCcIwoUySQ/3p9FpbhJOioLwpBDRFwTh\nwnkaxXoSnCeiQBAuEzHvC4IgnJOCruPyhSgaRYpGEZcvJE6KwlONiL4gCMI5sSyL3ewR1Y6HasfD\nbvZICu4ITzVi3hcEQTg3CihuBtZ8xW0fE4SnFFnpC4IgnBNFgYXZJJ2aTqemszCbRLbzhacZEX1B\nEIRzoqkqW5ubVNoKlbbC1uYmmqpeap8syyJfKJAvFGSrQXgEEX1BEIRzUtB13L4QbpfX/jnlyHcZ\n4juplMfC84uIviAIzwymaXL33gZ3721gmuZldwfdKOIJhIlGI0SjETyBMLpRPJf4TmKSICmPhbMQ\n0RcE4dIYR+hM0+TtH33MUc3PUc3P2z/6eCD8k1xVj9OWpqp0Ww3AAiy6rQaaqo4tvrJCF54UIvqC\nIFw4w4R0XKG7d38TX3QKRXGhKC580Snu3d+cqGCO21YyoTGfDBDydAl5uswnAyQTWq8tKBZLFIsl\nzurOpFboUp9AOAsRfUEQLhQnIZ2U0J2nHafV/Lht2SmG51mcDrM4HWZteR5FUU4c/FoKldaTc/CT\n+gTCWYjoC4JwoUxK3NdWV2iVc1iWiWWZtMo51lZXxm5n0qb0forhZCIxEFjdMFhaXqZbN+jW7d91\nw3Bsw16hVzCMIoZRpNusDFbo425dDOuPIPQR0RcE4VIY1xTtcrn4+ldeYTrUZDrU5OtfeQWXyzV2\nO6MmIQlNo9Mos7Wzy9bOLp1G+VzmccuC3f0c9a6XetfL7n7uTBO/ZTGY0PTPtSyL9c0s24dltg/L\nrG9mZa9f+FxIRj5BEC6UhKahnypK021WB5X2xq2+53K5uLl2/YFjk6ziZ1kWO9kcDXwA7GRzA5P9\neO2YHBwd0Vbse/ZaVV5acTbvF3QdTyCCFlQG/SjoOpZlsZ+v4vZHACjnK2ixAlPJ5Mh7kKp/ghMi\n+oIgXCijRHlS1ffGacdpEgK2s6A/liKg2EZQyzK5d3/zkYnGWehGEZc3iNK2owtc3iC6URz5Gcuy\nKPbOicVjJ+34QpTKJQCikQi6UXQUfan6J5yFmPcFQbhwxt1nvsjENk/G2U3B5fKhuN0objcul49R\nOfk1VWXz/iYHep0Dvc7mfdvxT43Hye7t0ep6aXW9ZPf2UONxYPgYSdU/4SxE9AVBeKp4EjHrTpMQ\n21nwmHK5TLlcplU+HjgLjhe/H8ds1wbhhWa7hqaOEmsDtz9Mrd6gVm/0/AwMFEVhdjpJ0GsS9JrM\nTidRFMVxjKTqn3AWIvqCIDxVTDIEb1wURWFhdgq/0sCvNFiYnRopss7twHQyTiLqJxH1M52MoyjO\njnkF3SBXauHxR/H4o+RKrZ7ow8LsFAFPh4Cn0+vPqDE6qfqnKEjVP+ERRPQFQXjqsCwLQzcwdOOx\n0tdOyjJQ0HW8wSgrKyusrKzgDUYp6Pq54vevzU8TdLcIultcm59GURSOcwX281VqHS+1jpf9fJV8\noQBYWGZ7sFq3zDZgoakq21tbuP0x3P4Y21tbI+P9peqfcBYi+oIgTIxJrLjtxDZbVDtuqh03W5uj\nhe4yLQNODMQ6qOIOqgOxLujFR/qqG0USmkoy6id3uEXucItk1E9CU9ENg+WVZcKeLmFPl+UVO97f\nKUzR6bqC0EdEXxCuOKMEcJwCN5OKKbeFboWIzyLis1heWRmZ2GZcbMtAlp2jKjtHVe5tnfTTSUzH\nzQVgJ+dZolMt0KkWWFpe6ol1fGiufk1VOdjfJxCZIhCZ4mB/fyDWiqKgaiqqpj4Q9bC6OENuf4Pc\n/garizMoinLhYyc8+4joC8IVZpRpfFSBm2HkC06m6/FRFIjHY8TjsTPN0+MKcr6gk803qHXc1Dpu\nsvkG+YLeu+5wz/5xPf4ty2Jv/xhPOIknnGRv/xjLskhNJYbm6t/Y3GLxepqUGiKlhli8nmZjc8vx\n3kzT5Hs//JBPtyt8ul3hez/8cPBsxhk74eohoi8IV5hRpnGnAjdO2DHlYaqVCtVKBZcvfGZs+jDG\nFfFxBVk3DNy+ALaDm4LbF3hgNezk2T9e2OFwhzqnXP12+xCJhIlEwgOxdrq3O+v3eS9zRKkbpdSN\n8l7miDvr96XgjnAmkpxHEISJoMbjfHB3g44rCECxWCT9xfGS2sD5MuyNk5xHU+NkCzkabfvPAS9o\n81Nj93N0f+Da3BTlchmAaGIKRekC/Yx5Rq8vtsl+bXWF3R99REsJAeCzaqy9fLvX1qP39os7Gfyx\nOVy9JEL+2Ay/uJPh1gtrE8tOKDyfyEpfEK4wo1aG5ylwY1rdQVum1T13vy6yaExC0+i26nStrv3T\nqn+u1fAwn4iEpmG2qsRiUWKxKGbrxCw/bMvEKVTQifnZWVrVPLVqhVq1QquaZ352FpCCO8JoRPQF\n4TljHM/0UaZxpwI3ThjFIgsL19CiXrSol4WFaxjF8c37F41uGKysrrIwFWNhKsbK6uq5nd2cfCKc\nzfLDt0z6uffVuIoaV/EEIoPV+rDn+eZrtwmYFVxKB5fSIWBWePO12xMbI+H5Rcz7gvAccZ7c66NM\n48MK3DihqXH29TyxqJ03vtusoC04F4YZxaSKxji103d2659z3msXdB3FG2JnZxeAhYUFCro+WGU/\n7paDZVls7x5wWLBz7M8kanxhLeX4PIulEt/6ta/x3ocfAPDmq1+jWCqRTCTONXZSpOfqICt9QXiO\nmFTt+vOQTCSYS4YJedqEPG3mkuGB6I1jfZhUsh2ndkZtaYx7bdO0eO+jDHozgN4M8N5HGUzTcrzn\nF26s0CwdYxR1jKJOs2Sn+TVNi0/vblE3w9TNMJ/e3cI0LcfnaVmQPdJZXLnF4sotskd6rzTv+GP3\nJNIeC08PT3yln06nXcCfAC8AJvBbQBf4096fPwF+J5PJWOl0+reA3wY6wB9kMpk/f9L9FQTh8VAU\nhRsr84+sGMe1PpwWOmAgdONW4xvVzvWl2UEkwtrqyuCcca+tG0XcvhB9d3u3L9SrgpdwvOfF+Smy\nOXtFPz9l791v7ewwt7hGs9kCIL64xtbODtdXlh3uzgKry0CbrS5gnWvsJjXewrPBZaz0/zYQzmQy\nvwz8j8D/BPxT4NuZTOZr2HE0v5lOp2eB3wW+Cvw68EfpdNp3Cf0VhKcSJweyywzZGuZEZld+C1Mq\nlSmVyrh8k7c+jGtJ2Ng+wBNK4gkl2dg+OPfKVlFgJpUg6O4QdHeYSSVG5sbP5XU8gSjLi9dYXryG\nJ2Cn+Y3H4pidJqFggFAwgNlpEo/FHZ+noigszE3Tret06zoLc9Nikhcei8sQ/ToQT6fTChAHWsCb\nmUzmnd7ffwf4JvAW8INMJtPOZDIlYB0QTxVBYHwHssvtK+zu56i2XVTbLnb3c4zS2HEnLuOa8Udt\ngYx77bXVFdqVHOFImHAkTLtydoTDMG5cX0H1NSnqBxT1A1RfkxvXVxyfp52qeJNKW6HSVtjatEvx\nnrV1MWxidNkTReHJchmi/wMgAHwG/J/AH/NgGagy9mQgBhSHHBeEK88o4Xr6QrZOTNGWxcAU7YSi\nKFxfmqVTy9Op5bm+NHumM92wGvLnmQCN+xmnCAcnIZ1KjhJlaDXrtJr1ByZFTtYTty+IW3HbP77g\n4J6Hjd2offuncaIoXByX4b3/e9gr+P8hnU5fA/4/wHvq72OAAZSA6KnjUeBMm2AqFT3rFAEZp3F4\nKsdKaeOuKYOXs2VZqCGL1NRk+2pZFrm8/c9uKjnaqzuVig4/X2nzSjCGYdj72KqaQgvj2FfLsshs\n7JKaXwJAr5RIX782EK+H27dosZM5wB202yuVS6zOzw6e2/R07IH2p6YiZDZ2cXvt/fZuu0L6+tID\n9/bwZ85iZubVoeNx0teFQftf+eILjxz/ReYebVeQ5eszALTrJQpGjhfTa0Ovl9eP0aZSgxBK0zRR\nXN3BvT08drm8ztTM9KnvSxjF1SE1dbJvP+49Pwmeyn97zziXIfphbEEHW8Q9wPvpdPrrmUzmbeBb\nwF8BPwH+MJ1O+7EtAy9iO/mN5Pi4fCGdfp5IpaIyTo/J0zpWluUhd3jiKNZtVokvz020rw874K3f\nP3ZcBaZSUY6OSkPPBw/5o5Pj+aNj1BF9zRcKlJpuFKXW64dC5s42CU0b2n6+UKFYblHLHwAQ8nnJ\n5ysoOLsAaZHYA458uVzlgfseJ3xt9Pn2eqbffioV7f3+4PH7m3s0zSjtWhMA0/Jyf3OPqcT08Gua\nboyCjsdvZz/sNOvMxzQyd7aHjh3QO34ySezWu2B5h7b/NPC0/tt72hh3YnQZ5v3/GfhKOp3+Pra4\n/yPgHwC/n06n/wZ7EvBvMpnMIbbpv3/etzOZTOsS+isITx1PwiQ7bvif0/mT6qtzfywsq0ut3qJW\nb2GdsX3Qn8xUWm4qrQdN3eOGr00q3G1laYl21cDq/deuGqwsLTmen0xoQwv3OHHWvv1FlxoWnh6e\n+Eo/k8kYwH825K++MeTcP8EO7xME4SHGSf5y2YzT14SmoW89aMVIzM45TjgsC47zZXwRW8SO8zrW\n6lTv7x5dhecLBbK5yiD3fskLWqzAVDI5dvjapMLdppIJXkvXT0L5FmaZSp7kOHj4HvqFex4+7jR2\no+oZnCehkyTzeXaR5DyCIAxlXK/uSXmBO9WKd2rfKBaZnZulWy/Srdu/G8Wi4yq8oBfJlVo0TC8N\n00uu1KKgX266YDvHwQJfWJvlC2uz3FhZeCwHvIcd/EZZVZwcPMcNqRzVJ7EYPP2I6AuCMJRxzfKT\nMuP3i9Ic1/0c1x8sSjOsfTUeI7u3Ta2tUGsrZPe2UeOx0dsTiqtXWNf+vc9lTXRghJe+wz04Cey4\n0RvjhlQ6ZwmUzH7PAiL6gnDFGbU6G1dAJhEuuL5xn0Id2qaftumnULePObev2CLusn9sEXe+dkKL\nk4x4aNUMWjWDZMRDQosP2h8nXPCywt0mK7DjhVQ6cZkpoIXHR0RfEK4wT+PqrFgq4faFqdaqVGtV\n3L4wxVLJ8Xy7ut8iKTVMSg2zsLCIUSz2VuEVDKOIYRTpNiskNM0ucduuE4mEiUTCmO36AwlsnJz8\nnJhUXoRxMixOUmAVReHa/DRhT4ewp8O1+dHZ/SSZz7ONiL4gXGGextXZ8uISR3vbtEwPLdPD0d42\ny4vOnuyaqmK2G0QiISKREGa7gaaqAL3Vq9n7sc/vl9adS4aZS4Y5XVo3Xyiwn69S63ipdbzs56vk\nC4ULv+fLzLCY0DTMVo24GieuxjFbtZEi7tQnmQw8G0hpXUEQLo1hXuAuF6RvXCNfagCwcuMarhHL\nk2RCY65UI5uzhXt+KkYyoQ1q1GvBEy/1k6yFw0vr6kbxEW98u4COc4ngSXiyj4oCGBb54OSlPwrn\nMsPOnv1ODOvTedoRnjwi+oJwRRj20rfFI0ulYQIQCbhIzM5P/NqmaT6QDMflco0MFVucn8Fl7QGw\nMD+DophnXEEhFgkPfh/FKMHUVJWsnidftJPbJOMhtPnRgn/3/h7ZI9saMD9d4+bqief9RYW1jSuw\nZ4XlTSr881kKI72qiHlfEK4Ao8OsHjWBT5K+N/5Rzc9R7cQb32lroV9MptbxUOt4BsVknBis6DUN\nTdPwBCIUdH1khTonZz1NjZPd3aHWsqi1LLK7O2iqc8mPXD7PB5kdjHYYox3mg8wOuXwey7JY38yy\nfVhm+7DM+mZ2pG/AeUzj4/gSONUnEK4eIvqCcAVwElgnwZwk9+5v4otOoSguFMWFLzo1WPU79tUX\nxLRMTMscFJMZhWVZGLqBoRtnFpIZVVp3Y3OLxesvkIwHSMYDLF5/gY3NLcfrbm7v4A2naDSaNBpN\nvOEUm9s7I30DhjnsXfTevWVZ7GaPqHY8VDsedrNHl+6wKVwOIvqC8JTzLCU8GaevTqvb0/vq/QmK\nbjgnz9FUlc37mxzodQ70Opv3TywD48a+9z8Tj8WJx+JnCm8sGuf46Bi9VEUvVTk+OiYWjaMbRVy+\nMNVqjWq1hstn38O4yXYmNdagYOGiUqlQqVSwGB3WKDy/iOgLwlPMpELqnAR2kh7Xdl+z7BxV2Tmq\ncm/LNmmvra7QKucGWwitsl1z3jnZTpzs3h6trpdW10t2bw817mxiL+gGbn+YWr1Brd7oibhxrntY\nW12hWTrGKOoYRZ1m6Zi11ZXB/T0sspoapd0wsF+lLtoNA02Nosbj7Gf3qXcU6h2F/ew+ajxOLj+Z\naInzfC8UhcF1xb/u6iKiLwhPCcNEZVIhdU4CO0mzcr6gk803qHXc1DpusvkG+YLuWHO+369hqWRn\nUgk69SKdepGZ1OiVb0E3yBVbNDoKjY5CrtgaiP44se/9ay/OTxH2QdgHi/NTI9PhFktlbr/yCtNR\nmI7C7VdeoVgqoyiQSkRoV3XaVZ1UInKm0I6zch//e2GBZRIOhwmHw2CZnE7A8yxZk4TPh3jvC8JT\ngJN39SS5aM9q3TBw+wL0zcZuXwDdMJhKJnC5XNxcu/6YLdmp4SLRXslQO02c89mWyVHuEMtjh+Ap\nnRLW0tJIj/XVxRl+9uFHALzx6u2HTP9R1F5pebc/OhDTYSF1mqqyb+jMzdvPqtOso6kaYMfYR3v3\n0Bf8qaTG+v3jRyIHzlP0Zhz6CXhKRTvJUSw5PYiIuOhrC08XstIXhKcAp5XbpM3vD6/mJpmRT1Pj\nj/R1lOe7MwqKy000GiYaDaO43Izef1ZwubxgdsHs2r+j2GV9vUG2t7bZ3tpG8doOgaZp8s6PP6Hl\nnablneadH3+CafYF0DkP/TBnwWRCY1bzUTjcoXC4w6zm65W4VVBcHqKxKNFYFMXlsY85WFbGXbmf\np0aAUwKepzFBk3BxiOgLwhNmHFPqpMzvzhXnzvfCH3YPyUSCuWSYkKdNyNNmLhk+l2VBUeDa3BRh\nr0nYa3JtbmqkaVxRFKYSGgGfi4DPxVTCDsszTZP3PvoMvR1Cb4d476PPBvkCPOEEe9kse9ksnnDi\nVDTB8Dz0dhjhFtWOm2rHzdbmFpqq2l7x+3k8QRVPUGV3P9/LpOd8D5NI2/us1AgQnj5E9AXhCeIk\nvmftM39ekZjkam5UytgbK/MszURZmolyY2V+0N9xvfrNVpVYLEosFsVsjV7FamqcTqtCIBAgEAjQ\naVXQ1Di6UcLtj+FSFFyKgtsfQzdKmKbJJ5/dJVeyyJUsPvns7mClrygKC3MpOtU8nWqehbkUiqKg\nGwbLKytEfBYRn8Xyygq6YQzCEa3ef/1wRPseKoPnabYqE63WNyrs0Amn75Gkz71aiOgLwhPESXwv\nayV2nhf+sHvI5fvpbR8VltGJgT5/zLqiwOyUhhrxoEY8zE5pPU91mJlSCXhMAh6TmSkVRQHLUihX\n21SbHarNDuVqG8vqJ+dR2d7axhNO4Akn2N7aPsnjb5rs7e+zt7+PZZ7sh+8f5jDKbYxym/3D3AP3\nViwWKRaLE7foTLrgjlgBrg4i+oLwlDCJFb0To7LTTfKFP04Ewnli1p0mCYsLM8wnwswnwiwuzNj3\ntbpCu5IjHA4SDgdpV+xQwVK5hKYl8Hk9+LweNC1BqWw7uDmt6OOxGN/57tsc1kIc1kJ857tvE4/F\nUOMqhVyepummabop5PKocZV8QWcvV+fQqHFo1NjL1ckXRovyRT7/s7jMawtPFvHeF4QnyCRz3Y+T\n231UrvZRXv3O+fofzF0/lVzg+NhON1tpdAAoFOvcWHG+t1FFZpz6MszLvN+feM9psNuskpiz7+/r\nX3nlJOf/y3aoYDwWo9vao9O22+0C8djCqbF6tBjP+x99zML1l6lXKwCo11/m/Y8+Ro3HeemlWxwf\nHwOQeukWxVIR0zT5xcbOIKIgb+wwpyrAsuN4jENC0yicGutIwHMhNROE5w9Z6QvCY+K0Lz1ujPMk\nct2PazKH82V8G6fcq1Pq2UntGZ9na8SepKgkNHVwTFPjmJ0GChYKFmanMYgyOMu3IhKNE4nGH2jL\naleZmZlmZmYaq21HLBjFMrWWmy5euniptdwYxfLY9zwKewvD1fuZaNPnRuL9n35E9AXhMXASwHFD\n3mzhiuByuXG53Lj958t1fx6T+ah7G/aiHrVvPGwC4ZQ+10mUE5pGp1FB13V0XafTGO3sNi6WNbzo\njVEsMT0zixqLoMYiTM/MYvTi15284t949TaNwjaVapVKtUqjsM0br952jFhQFFBjMXxuE5/bRI3F\nLiA5TwRVjaOq8XN/jybJJMM/hYtDRF8QHoNRBWvGcagaFQfu/JmLy9Q22Th9lW6rgZ1Ix6Lbaoys\njtfrAaVKlVKlyqgEPOC8CncS91FFbxTFTcDvJeD3oijuB8ZjfXOPzMYhmY1D1jf3sCwLl8vFay/f\ngGoWqllee/kGLpdrMKGJ+LpEfCcTmtXlRSLeBtGgl2jQS8TbYHV5cXCNi8yXcFlIvP+zgYi+IJzC\nNE3u3tvg7r2NQRjXZBkeB+549jlC/IYlkekfHyfN77hm+WRCYz4ZIOTpEvJ0mU8GSCY0x3vIF3T2\nC028QRVvUGW/0Bzp7Oa0CncSd90oonhDHB4ccHhwgOINoRtFNDVGp1miny+/0yyh9VLwHefyfPeH\nn5Jrx8i1Y3z3h59ynMuTLxQ40Ov4o9P4o9Mc6PXBOG5s71Nte6m2vWxs2/c2lUzy+q1F5uMm83GT\n128tMpXNTXY+AAAgAElEQVRMjsyX4FT6dthzs59NBcMoYhhFus3JWkmE5xcRfUHo4VT3HSZXsKaf\nDjXs6RD2dLg2P32u0Cwnk/moJDLjF2gZN3ROYW15nsXpMIvTYdaW50dmm9MNA5c3QKVSo1Kp4fLa\naXudcIpN74v7wf4+B/v7A3GPx+J8+mmGUidAqRPg008zvcp5LqankjQqRzQqR0xPJVEU+1X40c8/\nJaAuUKtVqdWqBNQFPvr5p+QLRTKbOY6KHY6KHTKbOfKFIvmCzu5xjfXtI9a3j9g9rpEvnDyfsK9L\n+JQFwKngjmUNL3072ndjuG/IZe2rS7z/s4F47wtCj9N13wF80SnurG+S1FIjvd+djo/yfH/Y0/w8\nDPO674eclcu201i0F3IGw3PHD/PET8yeP+f/qEiAh1HjcX525y5dl31tt54j/dZNx/OdvP3jsRjf\n/fH7BDXbe/3o578g/WuvYxQNEskkpVoVgEQyiVE00NQ4R7kcvlDSPj+Xw7pu9zkaiVDYPMAfTdnX\nPD7g5ZkERrFIudakq9gi6rZaGMUiYJG5nx2cn7+fZU51kdBU3v7Rx7SUEABv/+hjvvFLt3G5e/H7\nvVLBsV6UACiguE/2/RU79bDTPQN4AhG04IPftYSmcff+HtkjextjfrrGzdWFJxKGN+rfiPD0ICt9\nQXhMnLzfx0lIM+7q+TzObv2Qs3j8bOexUf2Z1D6z8wrQrvxmdjuY3c4Dld/GWa0axRKp1AzdZpVu\ns0oqNdNzzFNQXC4Cfg8BvwfFZdeQ140SHl8Et8uF2+XC44ugG7Yj3+ryMhG/gkfp4lG6RPwKq8vL\ngEm328Lj8eLxeOl2W4BJsVTC7QuhYFcHcPtCFEsl1jc20RtumqaXpulFb7hZ39gkmRhuiVHGTD3s\nRC6f54PMDkY7jNEO80Fmh1w+P35D50Ti/Z9+RPSFK8kwURlW9/2FGyvnan9cz/dROIVmOe/1fv5t\niLPuYRycJhZGscTCtSWSapCkGmTh2hJGsXQuPwawTiYP9GvdxzHbdSKRGJFIDLNdP1UAyEW9Xqde\nr3P6Neh2K/zar7zBcqLLcqLLr/3KG7jdCmpcQ4vFCfldhPwutFgcNa6hxuOokSCdZoVOs4IaCaLG\n4xRLRdy+4KnJQJBiqUi+YLC0vEy3btCt27/rhuGYenjU8xw2Gdzc3sEXSQ1SD/siKTa3d8Z+ZsLz\ni4i+cOVwEpVRdd8vC6fQrHEtCU7HJ+01Ps4KXVNVzHaTeCxGPBbDbDfRVHVsPwY1HuPo6ABvMI43\nGOfo6AA1HsPlUnjzdhrN30DzN3jzdhqXyz7/8DBLud6hXO9weJhF7ZnZE5qG1akxPzvL/OwsVseu\nRpdMqKRXpphRfcyoPtIrUyQTKmury3SqRwSDQYLBIJ3qEWury6wsLdGq5Adi3arkWemV+93bP8Id\n1HAHNfb2jwbPbZiT4ugcBI9OBuOxON12czDG3XaTeOw8lQ6F5xURfeHKMWoF26/7fnPt+ucS/It2\napqUJWGS3vujchkMC6lLJjTmEn7a1QLtaoG5hL9XltZ2UisWSxSLpTNDGoulEi+/9BJ1Y4+6scfL\nL71EsVSyBbxdY3HxGouL17DatoDrRhGXx4fX48brcePy+NB7e+z9+3g4Z77d1wA+GvhoMJewIxOM\nYpG3vvg6C3FYiMNbX3wdo1hkKpng9VsLqL46qq/O67cWmErafgMWLiqVCpVKBQt7y6E/dpWWm0rr\n7JTETpPBG9dXSATa+N0d/O4OiUCbG9dXRg+gcKUQ0ReEC0BRFFYXZ8jtb5Db32B1ceZce5yTmjw8\nCe99pwnEqHh5AFwu+6eHHYGwSaWlUGkpbG1ujoxAiMdifPqLzwhqCwS1BT79xWfEYzHH/pfKJaam\n5yjph5T0Q/v3Xu79QRhhOIE3nBiEEVrW8BK6o8bu+tIcIW+bkLfN9aXTY2dRrdWp1ur0tyLOHKPH\nxLZW3eb6tIfr0x6+/pXbl26tEp4u5NsgXDmeRGiRaZq88+NPaHmnaXmneefHn5wr7n9UNrtx7sFJ\nkM9yFBw/de+jK3SnTH1Ocfp2BMIyYU+XsKfL8oq97+10D0axxPT0LH43+N0wPX2SYc80TTY2t9jY\n3BqM/+LCAj9998fUlRh1JcZP3/0xiwsLvb4ODyO8d38TfyxFLBYjFovhj6W4d38TNR7nJ+++z/pB\ng/WDBj95933UeNzx+VuWxf5RjuyRQfbIYP8oNwg7dPnCVKs1qtUaLl/4AevDw4x6/pOyVgnPJ/KN\nEK4c465gz8Pp8D9FcQ3qrI9inP1wpz3g8+DkKDgumqqyef8+e7kSe7kSm/fvo6mqY6a+gcCWK1TK\nlQfi9BVFQdVU1FM580f1f2Y6QTLqJRn1MjNtp8Htdrv86//wDnvVKHvVKP/6P7xDt9tla2ePqZkF\n/F43fq+bqZkFtnb2ADuMMLu3S72tUG8rZPd2UePOe+LrG1uUOgHK9TbleptSJ8D6xpbj88/ldbay\nOkati1HrspXVyRcM1Hicvd097u8ecH/3gL3dvcF1h30vnsR3WHg+EdEXnmuchPRpCy0atR/udHxY\nohonnFaGk8zhXtB1XN4AtUqNWm+VbFfN6+3d1w3adWOwd6/GY2T3tql13NQ6brJ726jx2NgRCIMS\nupEw4Uh4UEL3Zx9+RCCxiEtx4VJcBBKL/OzDjyhXymiJaTxWG4/VRktMU67YeQ0UBaaTcRrVPI1q\nnulkHEUZHtmxtrrC9u4u9bYbjz+Cxx+h3nazvbs7eKbFUpFi6cQ34P7WHk3Ljy8QxxeI07T8bO/u\nYlkmx/kclVqHSq3Dcb5/rfHLDwvCKET0heeWy8xn7iQSToyb23/ccLrzrgzHsT4UdINcqYE3pOEN\naeRKDQp6P8OeQiwSJhYJYwex2daFmdQU3XqRbr3ITKq/Mh4vAmFU1IVlWVTKRSrlE+H9wosvci/z\nAV1PlK4nyr3MB3zhxRcfGCs1FkeNnVTTc7pGLBqmWS9Qq5apVcs06wVi0TDXV5bZvX+XZtdDs+th\n9/5drq8soygKoYCXUmGfUmGfUMCLomCH2oUThCJRQpEovnCCze2dXnreMKVSmVKpjMt38pwvK/Oe\n8Gwjoi88t1xmAZCzhOgyXtbDVoZn5fC/t5Vl56jKzlGVe1vZM/qroLi8g/FWXF5OssoNryxoWWD1\n/zvV9DiJkPrHHy6h+/rtV9jb+DlNy0fT8rG38XNev/0KpXKZ126/grtxgLtxwGu9Yyf34CEaixKN\nRVFcHvqTlGF75avLy4S9Fu1GmXajTNhrsbq8bHv1v/kavq6Or6vz1puvYRSLvH77FrnddeodqHcg\nt7vOKy/dAhTcbv/Jd9Xtx/bqH16gaXR63vG/XzKBuDpIGl5BuCD6InGavpBWGrZTmV6qs7Y8b5va\nN7NUGh0AIgEPiVk7raxTmtxJpM/t+wb0/Q3WVlcGopkv6GTzDTz+IAClfB01qg9Czx4moamkiiaN\ndhcANegnoakD4eq3U9zPEVvRsCzTTocbmQbgKHeEtXq+yIT1U2NXKNa5sTJPsVTiW9/8Opn1dQDS\n3/w6xVIJsFAUWFxa6Y3BSdGjfma8QRrjxFTv753HL5VMYhk1AFJqqJf/APYOC6hTtoPg3mGB+IqG\nbpSIT81SbdtjHI7MYhQrrCwt8f6dDyBg33+nVmBl6TVOF2iyb9bu6+kCPWCn8+07Zt479b3Qt/bP\ntOr0JxDjfEZ4dhHRF55bJp1XflyG5d53EtJkQhs41AEDh7rz5Pwfpz+n48MB7m3tc2PFLpRjO9r5\ne0Jp56XXDcNR9JMJjblSjWzOPn8uESOZ0OzQsyHCZRRLzC8sUavaufGnFuyMfKmpKUzTfGAiMsoL\nPV8okM1VqLbsiVTY50KLFWzTv9vFS7fSg/uHrh3+1ylg9lP+mp1BCWB78rWH0XMoDPkgMbfgeG3d\nKOL2BgjZjxO3N4BuFElocSyzQ7lkTx4CXgCLrZ0sM/PLdNr2BMXj9bCb3WMqqZK+cY18b/KQvHYN\nl+ukQFOpF40QS06jKPZe/272CLc/AkApe0RsNemYq39UPYTzfEZ4dhHzvvDccpkezk7mV90wcPsC\n0EvQ6vYFToWjDXeoG9fUPU5/RsWH2452OzS7XppdL9m9nUHmOidzsGWB1e3YP9ZJP4dVFrQz8tX7\n4QO9NLkqpmnyvR9+xN2DBncPGnzvhx+NDHcs6AbHxTpt00fb9HFcrFPQjV44YpmtnV22dnbpNMq9\nyQ6kEhEq5QKVcoFUIjKYZFmWxU72mFypRa7UYid7PNLcbVkWed3AHYjiDkTJnypnbFkW5XKZcrk8\nOLaytECnruPze/H5vXTqOosLdkGcpYUZ1q4lWbuWZGlhZhCaabZqxNU4cTWO2ar1tl9OCvQoCoMC\nPYJwFiL6wnPNZXk4O/kTaGr8kT30k3zwF9ufYfXanWLooe9olyLo6RL0dJlJpVAU15kTiKbpp2n6\nBxMIJ+FKaCrteplSqUSpVKJdL5PQVNY37pOvWuwfldk/KpOvWqxv3B9xd8N9CWwBz1FtQbUFO1k7\nJt404c5GFsurYXk17mxk6c8p1jc20Zu+Qe4AveljfWPT+cqKQjKZxEcTH02SyeTAvH9cqOANa3jD\nGseFCpYFt164ztpsmIi7TsRdZ202zM211UHu/cEEqJd739mpcXiBnvPkoJCSuFcLMe8LwhMkmUgw\nV2pQabQBiETCAzNqYXNvYBqfn4qRmHU2K4+LkzlYU1WyeoFay+5PyOdFm7f7oyiwOJ862d+ORlGU\n7gMe5f3jubxOQS+SK7Xw9LZTKqUqBb3IVDI5dCsiXyjg9gXpVux7dvc803WjxPaBgS9s98M4KLA0\nwtKc0FSmjC75ot2fqXiIhKb2YuVTdGp1AHyhOPfub6IbRTyhBG3TXn17Qgk2t7eZTiXtQjne6KBt\nt9dPsTQqSU6cqUKbnNGyrx31ktDi6EaR2bk5jnsV7mbn5jCKRVwuF7/61Vcf2bqwBRcsy+w9r5P1\nWH/i+uB1NfRTjpVmq0Jibn7kdpAT5/nMsK0i4dngUkQ/nU7/I+A/BbzA/wH8APhTwAQ+AX4nk8lY\n6XT6t4DfBjrAH2QymT+/jP4KAoz3onPyJ+i/YAcv/eVFFEXBNE12sjka+AB7Vbq2PD/Bl+nweu0J\nTcXMbOPq1X03WxUS2vUH7iEWi57cw9wc+YL+iGPe6vxir13XiZFZGS1c/RC/QNiua58rlU9C/BQ3\nrVbzVF+dSWgq3c+2CQWDJ/3U1ijoBoc5A6/PPl7OGUyHgoCFabYIBuytilajBL1xX1la5P67dwfO\nha3KMSsv3rTHZoifQULT6La2qFXtvfhuCBLaTSwL3r+zjj8yBcB+dpdbb90Ahjt4DiIcWvbEpb+9\nM2pffZxJwlmM8xlx/Hu2eeLm/XQ6/Q3glzKZzFeBbwDXgX8KfDuTyXwNe2PqN9Pp9Czwu8BXgV8H\n/iidTvuedH8FAcaP+Xcyyzol1emnebXLtWqDNK+TwskcbKe8XWU2EWI2EWJ5ZfWBrHjDfSIsLLNL\nuVylXK5imbZ3e0KLk4x6aNeLtOtFklEPCW3U1sVws7wajxHympT1Q8r6ISGvOfAlGIZuGKysrjCr\nBZnVgqysrqAbBpoao1U32NrcZGtzk1bdPra6vETE20E/2kE/2iHi7bC6vATAVDLJa+lFVG8V1Vvl\ntfQiU8kkpmny9o8+5qjm56jm5+0ffYxpmuQLOvlyF08ojicUJ1/uki/oKArMTKl4XS28rhYzUyqj\nNNGyYGvngB+8+yE/ePdDtnYOBj4Rw/wnCrqOJxBB0zQ0TcMTOH9SpXG5zFBY4fNzGXv6fxv4OJ1O\n/zvg3wP/N/BmJpN5p/f33wG+CbwF/CCTybQzmUwJWAduX0J/BWFiL7pJvjCdnekePW7vGVcG+7b2\nit7et1UUiMdjxOOxkcJ0ggKKC9PqYFqdwYrevkadYMhPMOTHbNVH7g0nNJWpmI9Oo0inUWQq5iOh\nqajxKIX8IcFIgmAkQSF/iBqPOrbT75PicqG47Kp19jhAvlCiZbpomS7yBbsegL06b9BstWm22nRb\njVNjoXBzdYFXXrjGKy9c4+aq7WTnlFZ3c3sbb1gFswNmB29YZXN7+8R50d0h7D5xXnR6Pp1Om798\n+4cYVgrDSvGXb/+QTqd9Rjz+8EqEEnMvjOIyzPspYBH4O9ir/H/Pg26nZSAOxIDikOOjG0+d9XIQ\nQMbJsixyeVtsp5KjTfWpVBSUNu6a8sCLWw1ZpKaGj6NlWWQ2dnEH7RVqoVwkff2aYzsv3Fzk/3nn\nZ3hDKQDatWO+8qU3Bvu9D/fVsX1wPJ4vhXBV7VV5LOwmlYqSSkXt8729bYh2hfT1pcE1Pru3Q6mX\nU8AqGdxaW8SiRTxXIeG3zfLdpm2Sdrm7vP7GyxR7e+vxeBSXu0tqavg/22QyzNb+EZ4Zu52AUiP9\nwiI/evdDvvilr5DP21EEyRe/QqlS4gsvrzm2c3rsdP2At772Bj/8yQdoqXladnQcPo+GUdJRXF0s\nf5T4VC8Jka9Dwcjx0q0bgzanpx+0LOT1KDWXi2rV9g+IRIIkVB+qGubn79ylbgYAaDUO+eWXb/LC\nzUX+8u33cIdivT4d8qXbb9pbROXiI8/nu2+/zdLNN6hW7bFbuvkGn3z2GbOzCaZmTk8YwiiuziPf\nl/49K4oy9PlP0vQ+NRVx/M5Mmqv+nroILkP0c8AvMplMB7iTTqcbwGmPpRhgACXg9BOPAmcuiY6P\ny2edcuVJpaJXepwe3pNcv3/suCfZHyvL8pA7fHCPPr485ziO+UKBUtONotR611TI3NkmoWlD28nn\nq7z+4s2BSf8LL94kn6869rWg60PbByg23JTLB4DtZNc/Xmq4KBVrvR7GyNzZJplIoEViD+xV53IV\nAHL5PJ/ezw+c/3azFeiYKIpCLBo7iR2P22Vs8/kyxYaLUtH+vGm6MOsmWF6HnAUFtMTsqXZmuXN3\nB8t02QV43PZuXqVcwdKCvefg0I42M2hH02a4c3cHw6hQrbep1mwnu3DIh2GYbG3vkyv56Zq282K9\nofDBRxlSyZnB9+Pha6ixBP/vO+8QSNi+C417d/nC3/kaubzO/mGOjsee2Hg6RczuLTJ3dqg23OSN\n3sRFjZC5s8PUVJRiBUrF7GDsMne2MbsK+Xwef0+s8/k8ZtxNPl/uPeeTSWK33iWfLxOPT/PZnbsA\n3HrhJnfu7jg+/2QiMVbug7NIROMPjFH/OzNJrvp76nEZd2J0Geb9vwb+E4B0Oj0PhIC/SqfTX+/9\n/beAd4CfAL+STqf96XQ6DryI7eQnCJ+L85jYJxXz38+AN6w63rA0r06hdk5YFuxkj8nmy2Tz5V6c\neS/+fO+QQ73OoV5nZ+9wYOp3KtwzKPdaqVCtVAblXoeF4E0lNTRVZWtzi2rHTbXjZmtzy06Ec0bR\nmIer6a2tLtMqHdLtdul2u7RKh6ytLo/dzvLiNXIHu7j9Ydz+MLmDXZYXrxGNhMkd7XFweMTB4RG5\noz2ikXBv/IanHjaKRb745qt46kd46kd88c1XMYpFtnZ2mJpdxOvq4nV1mZpdZGtnx3ZSLDZwB+K4\nA3FyRbsOgWVZbO8ekNmyf7Z37fF+9Qsv4moVaDUrtJoVXK0Cr37hxZNcA1vbbG1tD3INmKbFzz5e\np9QOUmoH+dnH65im5Zi218kn4bxIsZ9nlycu+j0P/PfT6fRPsPfz/1vgvwd+P51O/w229eHfZDKZ\nQ+CPge8Df4Xt6Nd60v0VhD7jvOicYp/HrY7XD7WrdjxUOx52s0dYljWifZPD42OaXR/Nro/D42Ps\noj9wlC/TMD00TA9H+TKWNXoCpMbj7Gf3qXfd1Ltu9rP7qPG44wRINwyWlpYo5rMU81mWlpZOJR56\n9BpO92AUi3zprde5pipcUxW+9NbrGMXiyHY6jQq6rqPrOp2G7a9QKpf55V/6Eqqvhuqr8cu/9CVK\n5TKxaIxyycBSfFiKj3LJIBbtrbALOtl8nSOjwZHRIJuvky/oWJZF9iCHNreCNrdC9iDX67dJIX9M\nFy9dvBTyxz2PegvT7FKr1anV6phmt3fM5NO7W9TNMHUzzKd3tzBNC7fbxZdfv4VV3cGq7vDl12/h\ndrsGuQbqXS/1rneQa6CgG+jlGi3TTct0o5drvciHk7S9lsUg++F5Sj2fB/EnePq5lJC9TCbzD4cc\n/saQ8/4E+JML75BwpXgS6XmdYp/zhcKYKU8VLFxUKrb5NOC1HdWc2jeKJebmFzk6PARgbn4Ro2f2\nnpufo9aLWU/O23Hjdm5864Ec7if3ANPJGI2OvSJUkyeOfsNCvEzT4mef3KPjskPkfvbJOt/44nVc\nruETpFF5/10uF8sry8BJ+txRKENSGPdzEMyk7H1vq9NAUxO8/9EnrN54mXrDDgkMzr7M3v4+L926\n2cvu1zwJ86v1s/upQ0MeY9EY5fIGXa99bXe7TCy6hqaqdFs5Do5tM/5cKommLrKxucvc4hrNpr1+\niS+usbWzw/LiInc2dkhdewmAOxs73L4xc5JroJeq2BexozpK5RLTs/PUq/b3Ij47T6lcYiqpDU3b\n+ySQUL5nA8nIJ1w5nlR6XifLgGVZGLqBcSpl6+h2OAlrO9XN/oqvcKode3W+hyeo4gmq7Gf3UONx\nNDWO2aoSDocIh0OYLTsToJNJvt//xYVpZlQ/M6qfxYXRHugF3aBQbtDqumh1XRTKjVPpcB9didtW\nj32qbS/VtpeN7f2BFaNdL7O5ucnm5mYvU5/WswxUMIwihlGk27TbcUphnNBUzNbJXrMdsaASj0WJ\nBj1EQgEioQDRoId4rL8vatFpN7m/sc79jXU67Sb9Aj3DQh5L5QpacpZI0Eck6ENLzlIqV7Ask7xe\nIBCdIRCdIa8XsCwTTY3RbTcwO03MTpNuu0E8FmdzewdvKEUud0wud4w3lGJzewfLgsPjAvWuh3rX\nw+FxAcuClaUlWpX8YEXfquRZWVpyzH54VqnnSazQJZTv2UBEX7iSTHJP0jRN7t7b4O69jTP3SUeJ\n7PAXr4VlmoOXu2X2Tccmb//oIzaOOmwcdXj7R3Z+ekVRmJ1OEvSaBL0ms9PJwb3OJcOEPG1CnjZz\nSTsToB2nv0LEZxHxWSyvrAzi9PsiWyyVKJZKA5F12lsvlUtMz8zipYmXJtMzs5TKpd69mWQPDske\nHA4SyvSLD9U6bmodN9l8Y2BK390/Jldqkyu12d0/yX/fT0jT37Lo0+10+fFPf8qPf/pTuh3bKqAb\nBkvLywSUJgGlydLyMrph8Marr1Av7NDptOl02tQLO7zx6isAxGNR1u/epdjyUmx5Wb97l3gsOkiT\nG4tFicWip9LkWkRDXiLhIJFwkGjIi6JYbO3sMrNwnXIhS7mQZWbhOls7u7xwY4VO5QhcHnB56FSO\nWFtdptu1uLOxiVFXMOoKdzY26XYtO21zq9a/cbqtGpoaJ5nQSMX9BLwWAa9FKu7vFW0aPqE9q9Tz\n+maW7cMy24dl1jfPKqEsPMuI6AvC52BcB6m+EHXrBt26MRAi5xfvsJh4hfWNTQoNL82uh2bXQ6Hh\nZX1jE0WB+ZkkrZpOq6YzP5McWApurMyzNBNlaSY6qKQHznH6zvvJJ2l4S6UyLl+YXF5nZWmRdjVH\nKBIjFInRruZYWVokly/w4Z1DOt4kHW+SD+8ckssXHIsPrW/cJ1+DpumhaXrI12B9475jQppYNMq/\n+rf/kU09yKYe5F/92/9ILBq1neb2Dtk6KrN1VGa757xoFIu89OJN2qVd2qVdXnrxJkbR3t7Y3N4j\nEJ/FrSi4FYVAfJbN7T1HB8yVpSXadQOvYuFVLNp1g5WlJSLhKO9/8CFlK0bZivH+Bx8SCUcp6EXe\n+uIbXEt6uJb08NYX38AoFimWilQrFSzFg6V4qFYqFEtFXC6FN2+n0fwNNH+DN2+ncbl6/hPLK/jd\nHfzuDkvLJ5O1YRYg+znbGRgTp5wdgZFFl5xwygUhOfyffkT0BeFzMK6DlGVZ7O0f4Q5quIMae/tH\ngxfo8BevhYJJLBonFo2jYK/07Rzx/kG7/RzxajzOT9/7gI43Qceb4KfvfYAad05vMepF3c8SGIvF\niMVigyyBwz3ELcdsdpvb27gCMXa2t9np/b65vY2mxuk0qpTLFcrlCp2GveVgFEsUqx06lpeO5aVY\n7Qz8Eobxvb/+IaGp67gUC5diEZq6zvf++od0uxY/+SCD0QphtEL85IMM3a5FvqCT2TrAHUzhDqbI\nbB2QL9hm6FK5jOL2EQxHCIYjKG4fpV6VvGEOmC6XwssvrJCMuUjGXLz8wgoul+1b0caLiRsTN228\nJ/dgWVQqFdtPoyeYtXqd2WtrtMp5WuU8s9fWqNXt5EZWu8bi4jUWF69htWunvPfv0PUm6XqT/Ozj\nO5im5TgJHbWad4rSGPUdHhbhcJlVLYXHR0RfEJ4otmNeqVykVC5iYa/cnardOZWlXVlapFU5xrQs\nTMuyc8QvLbKxucW11RcIeUxCHpNrqy+wsbnlaJIfFULozDAPcedsdpFwhJ++9y5HZYujssVP33uX\nSDhi7/U3qxjFAkaxQKc34YjH4ljdbt8AgNXtEo/FHff0K9UKbm+QUChCKBTB7Q1SqVb4+NNPSS2s\n4XOb+NwmqYU1Pv70U3SjxEGuSsMK0rCCHOSq6IYtyIsL87SqebweD16Ph1Y1z+LCvON+te33MMOs\nGmRWDbLYK4l7cHTA/PwSXrOO16wzP7/EwdEBmhrjO999m8NaiMNaiO98923isRi3btwgu53BdAUw\nXQGy2xlu3biBoiisLs6Q298gt7/B6uJML1KiiMsbJK8b5HUDlzeIbhQdJ6GjSyjHye5lOS7WOS7W\nye5lR04UnbZl+t8BCeV7uhHRF4TPge0gdTyom94qHz/gIPUoFpbVpVZvUau3sHohVba3dwOwAItu\nq1dckUsAACAASURBVIGmqo6OWU6raiec4v1HhRA6OX85TUScKJbKeH1R3C43bpcbry9KsVS2zfX+\nEGpMRY2pePyhXiRDnJuLKu52EXe7yM1FlWTCFiHTtDAMHcPQMXtV8r76pbeo5u7TNbt0zS7V3H2+\n+qW3iEUjdBoVmo0GzUaDTqNCLBqhVK7gDcQHkwpvIE6pbDv8TSUTfPnVm7hbB7hbB3z51ZtMJZ0L\n0WiqyvbWNp5wAk84wfbWNpqqcuvmTY6z6/jDKv6wynF2nVs3b/KT9z5m4frL+JUWfqXFwvWXef+j\njymWywT8fkyzgWk2CPj9FMtlTNPknR9/Qss7Tcs7zTs//qS3coeCUaXZNmm2TQpG9QEfh4cZVULZ\n9hFp8/+z96YxkqRpntfPzO/TzK/wcPfwuDMjs/Lorq7u6p6epbpHOwy70gyIXUYgAYL9sEirha8r\nhPYLCAkEYkBipQEJISQkxO4HYHf2mNX0DtPds9PVVZV3VmZGHhEefoWHn2bmt7sdfDALy6wq96jK\n6roa+b/lagurSPfXXrPw93mf5//8/+PxhPF4gmnOnedwcRq/pyiIviCD/sAWUfIF3dLCCt98rBb9\nFVb4FSAIAoX1NAFhQkCYUFhPX7gAWha0On28gSjeQJSW0y+fSibIJQPMxwrzsUIueTExa9muend7\ni8rRIU1lRFMZUTk6ZHd7a2m//0WMa1EUeef71/HPm/jnTd75/nXXWW6ROM+ybMJgOGBre5eQzyDk\nM9ja3mUwHNgWt8EosXicWDyONxh1xX+M2ZiA30fA78NwNPw73S6N7ghfJI0vkqbRHdHpdlnLpPnr\nv/NdMr4uGV+Xv/4732Utk+bNmzc4qz6jp/XpaX3Oqs948+YNpHiMsM8g5PcQ8nsI+wyXvZ9MyFjz\nMbvbO+xu72DNx04dfHEZxOVoTDWMqeZyNNKpJNcubWANKliDCtcubVwYPJyeNUhk8kTDIaLhEIlM\nntOzBi+OS3gjKRqnDRqnDbyRlFM+MjGNMaFQmFAojGmMAXNpEJqQZfTp2D2vT8cugbSnqHj8IUIB\nP6GAH4/fzhosu5+yFKdeK7/c6dfKFxoirfDNwmrRX2GFXwHdXg9fKMb29jbb29v4QrEL25QUVWU9\nt44xVjHG9vE5iQwE4tEI8WiEV+0olqVMF53vKQq5fIGgxyToMcnlC84uTMBCcBcP63ybewEsy+K4\nckY6t0s6t8tx5ezC2u2yAOLGG2/QPn1BMJokGE3SPn3BjTfecBaiEY1Gg0ajgT4dkZBlO23uDdA6\nO6V1dorgDdDt9ZbWnu0AaIPvXt/hu9d3uLRja80fn1S4fOU6oj5E1IdcvnKd45MKu9tF8ik/PkPD\nZ2jkU352t4vu/G1tbxP26oS9utvNsKwMcs5vGM89jOceVwHPJlSmOdjf4WB/h3zWbvF7+60b1I4+\nZGr5mVp+akcf8ubNG+SyOQb9HpFYmkgszaDfI5fNYZoWjw5f0DdC9I0Qjw5fYJoWoihy9fI+o06J\nUafE1cv7iKK4NAhd1r54/tyJHj+xuEQsLjnyx8vvpyCIZDMZAp4ZAc+MbCbjaiSs8M3H6k6tsMJX\nCFmKc1qvIAYlxKDEab2CLMW/MKvUnqLiC0XJ53Pk8zl8oai7a2u0OkwtH1PLR6PVuVDZDy7uu14W\niJimRblao1ytuel3j0fg+98+IBkYkwyM+f63D/B4BBKyRL1aYax7GOse6tUKCVmi3enx3v3njLxZ\nRt4s791/TrvTe1l7Voa0lKFbez7fkQ5mHgazlzvSnqJQafRIru+RXN+j0ujRUxRSySRrchgp6keK\n+lmTw67QkL2It2gpU1rK1GkXZGkZxLJMGs0mrd6QVm9Io9l0WhIFBMFDOBIkHAkiOGI+PUXjr/72\nj8iGR2TDI/7qb/8IVdNIJiT2C2nCnilhz5T9QtqxJRYQRK8bogmiFxDY2drkwb3bhFLbhFLbPLh3\nm52tTfc5kiUZWZLd52hZ+yLY2Y2MFCDoNQh6DTJS4JWA4JMQBCjmM+RTMfKpGMV85iNdHyt8s7Fa\n9FdY4VfARYvmonrol71LWsYN6CkqXn+ESMR+eV/ZJX8exvWia5Mlifc/uEN37KM79vH+B3dc2d7N\njXWu7xe4vl9gc8PeJR+VTijuXiYZ95OM+ynu2qTDcrWO7pFd5rvukSlX69h8CB1B9CGIPixLBy7q\nfLCDFcuZDfu6BLo9BW8w5u5svcGYI2Frt2B+eHhEXw/Q1wN8eGhrLywLgM4Jdee2vueEumXcDQBB\nFCnkchRyOccK2C7vXNnLs5ePsZePcWUvTyqZQBTh6qVtYr4ZMd+Mq5e2EUU4Pilz/ea3OT26z+nR\nfa7f/DbHJ+WlZZzz8xPTz8T0u+fPPzufCrEmB1mTg+RTIVLJxNJne5lmwQq/Hlgt+ius8Ctg2aK5\nnC2/eJf0eXqcFy289hd4kLDXIOw1yKeCDjcA0kmZRq1Eo1YinZQ/Ian78V37RUp6i67tqHRCfmsf\ntVVDbdXIb+1zVDpZSkZ0Ph2PIOJx9Afs8UA45MWYjTFmY8IhL4IAiqpR2NgkHfeTjvspbGyiqNpS\nklpClthYT6A0SyjNEhvrCRKyZJvhaDO8gRjeQIy2NnMX/ZNKhVxxF7/HwO8xyBV3OalULnoC7NR4\nNEYsGnNT48u5GzKl4yOel5s8LzcpHR+RkGV34U0ngqQTLxfevZ1t9GGbbDZDNptBH9pkSl03+MnP\n30OQ9hGkfX7y8/fQdcOeQ0cu2I5xPO54FnkvnN//3c0cEd+ciG/O7uZL3siiksayjoIVfj2wVHvf\ncb1bygc9PDz82ZcyohVW+DXDIh36V3eGwEfMYXonp8Qd4pgxHZLM5dzg4eNa+stw3is9cLzue9qY\nva288z75T1jDbm8W+Qd/+Pfxpy4B8Oc//yl/52/925/h2j6pab/o2todm03/+GkJy2df2+OnJbJv\n5pde2+72Frf+8U8xg7Y2vtis8hu/+yPisSjvPfozvPENAMa9Kjd/+8d4PF5OlR7RmG31a5PR7ODh\nVOnhDdh6+cZsQiKfQIrH+Pv/5P9k6k0D8PTxA/7ab/079o7YnGNZQXsuzTlgH0txiXJvSCRy/hlD\nt11wkV+DZUG6p1M+ta1sN3NpkgnZ4VbkGDma+edeB612l6Y6QR3ZbY7zuYdOt0c6lcQ0LTRnjtaT\n9hyeK+m5/gTXbCW9Sq2OP5zC42QK/OEUlVqdtUyKwnqKWq0GQKFQQBBMeoq60Hshk059pHQBcFRu\nsLdle1Gcl03Oj/e381iWxc9++RB/bA2An/3y4UcU/lb4ZuMiw53/nAsWfeC3vuCxrLDCNxqLfNZf\nFxeZzLzO5573Sp8vdFpnjByzF49FQcid+w9Z27xKq9MBYG3zKnfuP+Ttt95c+rl2m18UYWp7mov+\ni3kGlmWhDgYEnYBmMhi8Utb45Jh6iko2t8FJ1Tal2drYsHftHi8/eOsGf/HeBwD88O3v4vF47d1w\nf8xgYi+Y0aidxQDIaSPqTbvvPL9m75zfu3WHQCzHdGKb2wRiOW7fe8Dezhbprk7baVlLyxG3hr2/\nu0317D4zYQ5ALGiwv7u9NHBJyBK16h2UsWO4U63wl76zB1ic9jpEonbwYEwHJAopnh+VGcy8BCN2\nC+JgOuT4pAxY3HtaxR9dB+De0ypJKUQmnXYtl1+FKAoUcln6jsxxKpdFFLskZJn7T+4zE8IAlE9K\n7PzgJpbljCfy0fGc3+dFAaplWZx2hngC9r/pdwYk4l16iupqAQCuFsDHx7jCNxNLF/3Dw8Mff4Xj\nWGGFbwQ+vsC+ev51HMSW7wxfmswAHJVP2dvKAyx8/2XnPyphiythu6wtTNX6DCdBpIS9qAwnE1Rt\n+ClzYZPaJnN74VYHE+LbSVLJT15bOlWgP3jIzvYOjz68B8Ab175Ff9Bf+v7dXo+2OrR75oG2OqTb\n8yBLEk+elxGD9rU8eV7mxl7GTUOfB0y7m9tuKcWyLPoD+3qsjP1+tdMGcyFOXLLv43w2pnba4Hvf\n+TbzSYnTU3s3LAULJBN2BuR8Z3373n0AvvOtm+4OdlHg8vyohDb3ueqI2nzK86MSl/d3yWkTBhM7\neIhGba+DrtLFMCyOnzwAYHNzB4BSuYIYTPLk8YcA7F86oFSukEmnF87dj//SD/nD//2PMHz2fx+1\nnvHjv/J7dHsKoi/CQLHnPS3bfIVUMrlwPOcwTYtarQrY2QH4aG8/8LHe/hV+XfGp+ZiDg4N/5eDg\n4B8dHBz8i4ODg//34ODgZwcHB6Uvf2grrPDVYpm8KLy+g9iyeugyv/ZFevbdXm/p5yZk6RMcgIQs\nudfx8Vp/sZBjrNUxDAPDMBhrdYoFO6hYZhhkWRaNZofxXGQ8F2k0Oxe27BULBW598D6ENyC8wa0P\n3qfoLCCLxmRZ0O1pzIUAcyFAt6dhWXBUOqHRHeIJreEJrdHoDl1VwUUM+nany93DOoY/jeFPc/ew\nTrvTJb++znTUZTIZMZmMmI7sc+1Oh8OTM3RvCt2b4vDkjLaTAVnWprgMlVqNQDRFNBYnGosTiKao\n1GruHEX9BlH/yzna3szz8MFtzFAOM5Tj4YPbFAt5IuEof/4X7zL2ZBh7Mvz5X7xLJBxd+rmiKHJ1\nf5MQfUL0ubq/iSiKDl9h4rostjXb6XDZeMAmYL73/m0qXYNK1+C99287zoyLSaGf5ti3wjcbn6UI\n878A/w92VuDvAc+A//7LHNQKK3wdWCQv2mpfbDyyDMsWqHO/9onuYaJ7aKlTxxjF3lWf9cac9cZu\nq9gypJJJ1pNh5sM282Gb9aTddmZZFs+Oazx4WuXB0yrPjmuOLn6St29cYtx+yrj9lLdvXHLqyIvd\n+uBcUyCP0qqgtCr2saMpsIj8d1Kpkclt4hVNvKJJJrfJSaV2oQRwKpnCmA4wpgNSSdsR8PTsjHRu\nG5/Xwue1SOe2OT07WxoAlcplvOEEzXaLZruFN5ygVC6zu71JJu5zXf8ycR+725vce/iYuTeBLxjF\nF4wy9ya49/Ax8PrBXbFQYDbsMhiOGAxHzIZdioXC0vt/98EhuwdvEmBKgCm7B2/y8PEh1fopqewm\nPg/4PJDKblKtny793BfHJYJSlp3dXXZ2dwlKWScDYmEYcxr1Ko16FcOw1fUuUl58cXyCP/oyo+CP\npnlxfLKUFPppjn2/qkXvCl8uPsuiPz48PPxfgZ8CPeBvAv/WlzqqFVZYgi/zS2WR61u3Zy9yr8uu\nX754WA6JzH4fy3z5pdxotuloUzralEaz/al99KIoIMsJZDmBKNoLb7vT4e5hBWUeQZlHuHtYod3p\nkJBlzhpnJLNbJLNbnDXOSMiy7dY39tHRJnS0Cd2x7dYHts3sg4cPGRFnRJwHDx++4jv/SfQHfeRE\n0rX1lRNJ+oP+hdkKSx8TDocJh8NY+piELHH18hXmg66r7T8fdLl6+crSz41FYzx7/gJ1JKKORJ49\nf2Ez6UWRG1f2yCd85BM+blzZe4VsJqL1Ncf697MR0BZlRPZ3t4mIU9R2FbVdJSJO2d/dvjB4MOYz\nxuMB4/EAYz4DLEQRctk0XmOA1xiQy6a5iBd3/rzMDB8zw+c+L7Ik0Tw7o9Of0enPaJ6dIUvS0kwS\nYJs3BcLEolFi0SieQBhVU5ey+gGXZ3Bpb/cjC/6i4G6FbxY+06J/cHCQBA6BH2DnejJf6qhWWGEB\nPs+XyusECYtS5rZAyvLWvIs/G1RVQ1U1d9eeTMik40Emww6TYYd0POiwvVVEfxTLmGMZc0R/9MI+\n+vMv8fOV8fxLvFSu4I9mEAUBURDwRzOUyhVeHJ/gjabQ+kO0/hBvNMWL4xMUVaXXHzE3vcxNL73+\nyN3N95Q+vqBsG+pYBr6gTM+pFS+a1xtvXKVRfuKaxjTKT7jxxlVgsWiPIMBaSiIZC5CMBVhLSQgC\nXNrbIi8LBBkTZExeFri0t7XUcMd25QHL+Z9NPxY4T0tHJZmoJLs/33jjCs3qU3RLRLdEmtWn3Hjj\ninN/EszHGg8ffMjDBx8yH2uOq91i9zr7PgSYzefM5nNEf8BdTBdd87euX+bw0V20sYg2Fjl8dJdr\nV67wo9/8DRrH9zDEAIYYoHF8jx/95m9c8KzKWPqc0XjMaDzG0ueOmqHGVPcRCMcJhONMdZ9bNqnU\nW9Q7feqdPpX6y0zS9uYms0HHfe5ngw7bm5sXZgcW3f/XzZKs8PXgsyz6fwD8A+AfAf8B8CFw+8sc\n1AorLMLrfqm8bpCQSibJpSKEvXPC3jm5VIRM+iXZ6XUcxBKyzEmpxGAmMJgJnJRKLw105hOkuIQU\nlzDnE2fhssDSiUTjRKJxcIRnln3uMhEWKS6hT8dUqlUq1Sr6dIwUl+j2VB49P2VoBBkaQR49P6Xb\nU5HicfTpkOFwwHA4cFrUbB11ra+SzmQIeAUCXoF0JmM7Ay6ZV1EU2dvaxBy1MUdt9rbsOrMsSfzy\nvVs8Omry6KjJL9+75Yr2bOQzBIUJQWHCRt4m6ymqytvfe5PttI/ttI+3v/emG4jYMY7pvOy57g80\n9vf3CQkjQsKI/f19+gNtaa+81h/w5s3r+KZNfNMmb9687hrumKbJ+/eectQcc9Qc8/69p5imyYvj\nEr5oCq3fR+v38UVtDfwXxyc8Pm5jBLIYgSyPj9u8OD5x6+Tl1pRya+rWye/cf0JirYhHFPCIAom1\nIg8ePUFRNfZ29zGGLYxhi73d/QvthAVBIJ2M02tV6LUqpJNxBEGgWq+SWMsRCwWIhQIk1nJU61Us\ny+S02aTeGlJvDTl1lQNtk6Gbl9ZpnjygefKAm5fWSaeSF5o0rXb0v774LIv+vwB+5/DwsA+8Bfx7\nwN/9Uke1wgpfAD4P+W5/O89mNsZmNsb+dv5zi464RixjBWOsuLKnPUVhe2eHXCpCLhVhe2eHnqI4\nUqghfOIMnzgjI4UulEJdJsKys1XkyYf36I2gN4InH95jZ6uIqmn2rnCi26/x2JF/lZFjAbyCjlfQ\nkWMvJVi3ikUa1ReIvhCiL0Sj+oKtYtHWX/eFKJ+UKZ+UEXwh2h1bnc4bCJJOZ0inM3gDQXqKyvOj\nY5SJgDqyUEcWykTg+dHxUoc6y7KonbbwRVP4oilqpy23q2KRVPFWcYNG9TmeoIQnKNGoPmeruHGB\nz4EtkrSWzbOWzTv6A/ai9cGd+5xqAmPDz9jwc6oJfHDnvt2+dtaiq03palNOz1pO4HXGyAjRUfp0\nlD4jI0S1fsaL4xKesMywrzHsa3jCMi+OS9ROGxhCENHnQ/T5MIQgjbMmxydlhrqHrb2rbO1dZah7\nnFa+xbtq0zR4/OyIUGKTUGKTx8+OME2DYiHPdHCGaeqYps50cOZYA2soA4vT01NOT09RBhbdnua8\nl8mt+8/ojkS6I5Fb9585Tn4WldqZyzOp1M7c+7Do7+rzCEyt8NVj6aJ/cHBQPDg42AJ+BmwcHBxs\nAklABf7pVzS+FVZw8XlV65SegtJTPtNu5HV28xd/LtQaHbzhBN5wglqj84oCGkhSHEmKu4I3qWSS\nfDpKLhkmlwyTT0c/0R720XHCRi5NxGcS8Zls5GxDlzv3H5IpXmY6aDEdtMgUL3Pn/sPzf4U+HaFP\nR7xUvxPIraVJxYKkYkFyay9dAkVR4Or+FkzaMGlzdX8LURScReIJvXmY3jzMrftP3EWi3ekx0WGi\nQ7tj7wpPKnW6Iy+CP4bgj9EdeTmp1F1zm6jfIuq3XHObi9TjTNOiXK5QLldeKROIpJMpRGOAaAxI\nJ1MIgogsxamUj3n0rMyjZ2Uq5WNkKY4syXQ6HdTRHHU0p9PpIEt2oFM7rTOaAZ4QeEKMZvY5WZLp\ntrvMLR9zy0e33UWWZAzDoNVuYFheDMtrHxsGiqqi9GdMDC8Tw4vSn6GoKrm1DJ1mhakuMtVFOs0K\nmXSKc9nel8+PwTnXY9Gu+qRSJVfcJ+AxCHgMcsV9TipV9nd3iPtMRlqTkdYk7jPZ392hp/SoNc7w\nRtbxRtapNc7oKXYA/P7tuxxW+8x8GWa+DIfVPu/fvnvhfVj8TH4+SecVvlpctNP/L4A/Ay5hk/jO\nX38M/LMvfWQrrPAxvO6Xip1iP2GoexjqHk5KJ66d6JcPCyzDJaPhfIkvC1wuyjIs2ukt0z9XVJVG\ns0s0uUU0uUWj2UVRVaR4jIDXQvSA6IGA13JIefYAo7EY0VjsfLDONQiIHi/Z9TWy62uIHtvspado\neAJxlzfgCcRdwqOFwGjQZzToO05+9lnDmKJpKpqmYhjTVz7jk1BUWz0u5LUIeS1yjnqcmzLvzCl3\n5m7K3P79PCGfQMgnkMvbXQa6bvLunSdUOlMqnSnv3nmCrtvqdII3iD7X0ec6gjfo9p/n1/OY+sTl\nSpj6hPx6HlVTeeONK8QDOvGAzhtvXEHVVEajIZYxQ+vW0bp1LGPGaDQkFpWoN5puxqDeaBKLSiAI\neH0BRmqDkdrA6wsgCCI7W1tIQZHZWGU2VpGC9rllu2q7NDRz58ycz5DiEj1FobBRZDOfZTOfpbBR\npKco9AdDEul1vB4Lr8cikV53dQ2ePj/GCqSZ6SYz3cQKpHn6/Hjpfbgo+P6iguYVvjxcJM7zNwAO\nDg7+08PDw//6qxvSCissxyKBlGU430n2+zb5LObsJD/rv/84XkeRz65Xr6E5ddl4ag1BMC+U2110\nbRfL7X7yfeKxOIbeZzqdAmDoc+KxNWRJIhwMYDjiLOFgAFk6d3HzEIvZyn76dAyvLNZYBuL53sAJ\nXAQBsmnZlXRNxuWX2QEgKtnXIMzsay8WcvzpnV/iCdkiRONhg2Lh+7Z63LsP8MfsdrFuqcSPfnCD\nZepxL45P8EZSdJp2T312LeXUz+P8ybu3CCds2d6HH37Ild95i3/6J3+K7k0RCMSca/Pxz//0z7h6\neZ/+YILgt8/3B30U1dbe39vZ5GprRrlhf8bVrRR7O5sIAtS7HSIhe57M2ZCEnCIcDjOfdjCcIMZE\nJxwO0x9o5HPrdBxN/3xunf5Aoz8YEgqF8TtfvR50hqMBqWSCVMzLeDIBIBUL2CJIjhPex7G3s8Xt\nD38KjoTxfHDG3s6POCqd2C6L4bjz/NhBzubGBkedBsOZHShE/CKbG/Z8rWUy3K60CMVt4aax1mJt\nL0NClhbeh8+jKrnCNwcXyfCe4388ODj4b4C/7Pz+nwJ/9/Dw8GI5rxVW+AqxbEE+T6Wf/86v8v6f\nR5FPcgRzzjX2XxevK7ebkGUK2TE9bQRANpt0shsmcjyAJDsLsjlEEOwFfJFW+6vXrWj24p1N2vO4\nt7NN9d0HRJzFetZvc3n/h3Q6D0ilUvQ0O8hKpOwFQhS97Gzu0XeChFhmD1H00lMUiptFnjx6AsCV\nN664Qdki9bgXxyec1BWCUVs+9qTeYTNhp8Qza+vUz84AyGfXUVSNdqeDQQ6/o5ZnTIeOCM8+JtBX\nbQ2GWMjnXm8qmSAj+fH67MU0ERZcqV9jVsHA7xzPSCb2sSwBjy9ANPHSJ8CyBKR4DGNeRnIyS8Zc\nQ4pvYloGfl8H3bIDKa8Asai9e/cGImTW7Pvs9Yt0ez1SyeRCZcdur8db3/k2H9y5C8Bb3/k2iqqS\nkOWFPgQJWeL2hyW8XjvQCdNnf3cLgO3NPJlnXQZTez4yMVtEyL4P44/JGyc/wuqHl1r9q4X/1wOf\nhcj394Aw8Dew2ft+4H/6Mge1wgqvg2V1zy+SWLSMybwMF7nvLRLPWYZF2gHLdn8AyUQcKQQ+n4DP\nJyCF7HOiKHL96mXSkoe05OH61cuIouiQ6UqMDR9jw0f5pOSWQOyarkowkiIYSdHsqFgWS8VZErKE\nMR8genyIHh/GfEBClhx72E2yyTDZZJirlzYRRZtA9sG9J9T7AvW+wAf3bG7AcvW4xVa5lmXRVVQs\nMYglBu1jy+LalauYU5VB74xB7wxzqnLtylXisTiapuDxhfH4wmiaQjwWd+d7a3uHjBQgIwXY2t55\nhYC5TT4ZJZ+Msr1jZ426vR7JtQ3M+RBzPiS5tuGS2uRoGK1TR+vUkaNhkokEO1sFQh7w+zz4fR5C\nHth0PAdEf4TxcMR4OEJ8xfp4kbKjaVrcenCINvOjzfzcenCIaVpLBXXOOyL214Psrwc/0hGRSibZ\nLeaI+SbEfBN2i7kLs2Gr1rxfb3yWRf+tw8PD//jw8PD+4eHh3cPDw78NfPfLHtgKK3xWLPsS+iKJ\nRcta5C7Covpmu9PhzpMy1Z5FtWdx50nZlYBdhIQsoU8G9DWNvqahTwau3O7icUJHGWCZYJnOscVS\n6VRXq30wYDAYIPoirs2szX4voHXP0LpnrOcKH1HkSyZkkgn5I3Mq4CEUDBAKBhCw3dl2t7eolZ4i\neAIIngC10lN2t7fodFXKDY0pIaaEKDc0Ol3VLWnUuxPq3Ykrh5yQJbZyScLihLA4YSuXtAV+LOip\nA+aWh7nloafa1/zmzWukghbGfIQxH5EKWrx58xr9QZ+t4hZ+RvgZsVXccj0CbGXENkNdZKiLVE/b\nrxAwBeSEjPzKNW8Vi3QbJQJhmUBYptsosVUsupknwS8h+CW31U0URTbyGdJSiLQUYiOfQRRFpHic\n+w8ecdzQOG5o3H/wCCkeX9or3+n2KNU6tDSTlmZSqnXodHsXCuoIgoAkSUhOu+QrTw2iaLG9d4Xt\nvSuIoh1Wdbo9TrtTfJEkvkiS0+6UTne1uP+647Ok94WDg4PE4eFhD+Dg4CABzL/cYa2wwheD1+EA\nfMo7uS1y9o92i9xFWFRyOD6p0J/58AXslPJk5uP4ZLmxSjKRwJiV6Q/tlLsvIl6YrSiVKwSiSaJO\nOng+HVIqVxwjHhNFtaty6aj9p/+qVjtAWxvS7dnGPVJc4k/fu0tAtssSjx8fcuW3v41lWTwv1RlM\ndPs91DGZTAxFVckX8q6dbDiSRFFVBAHW83nKtSYAhUKenqJQrddIrxfRHUJaZL1ItV4jlZS5vNRa\nQgAAIABJREFU86TOwKYlcNYeIMdC7O9uU2ncA8seeyJksr+7zQd37pFIpDk6PgZgd2cHra9hmhZT\nfITDdnp/ytTRJogxn5UJhuxa9XzWR4pvOvfM5PTsjLZmlw3ScQ9vbMukkqmFaXavVyCTklG6JQAy\nKRmv177PEytCJGYHaJORfW5vt0AyIaH1q8793XDElhS00QxdtK9tbs7o9hQ8HnGhA165WmdGGN04\n5xKEKVfrHFzacwMmAMQ6+9uFT/AneqUTfvSDGwAoqkZhY/OV+7bpagQsMnXa392h9wrPJBoUSa7n\nlz6TK3yz8FnFed47ODj47w4ODv4AeB/4H77cYa2wwmfHV9EfvKxFbhkuEjARBJuwNZ5MEISXcfci\nmdduT0HwRRgM+gwGfYRXduKLWP2CAKmkjE/U8Yk6qaSMIMCzFyVeNGYYngiGJ8KLxoxnL0qAhWka\njEZjRqMxpmmT9QAUVSGZThHwWAQ8Fsl0CkVV6HS7nHaGjHQfI93HaWdIq90lIUuYsyGRaJRINOqQ\n3SQ7sFDHeAMxvIEYbXVMt6dQLBSYj7qYpoVpWsxHtm79UalMpT2mM9DpDHQq7TFHpTKCIFDMpwl6\ndIIenWLebi+MRiI8evwQbyyPN5bn0eOHRCMRPrhzh0A0TTASJxiJE4im+eDOHRJyAtGyED0e+2VZ\nJGT7eel0VUqnGl1tQlebUDq1sw/L0uxSPEooICDF4kixuH0cj9qSxHKCbrdBt9tAlhP2OcmWDNY9\nCXRPgmfPXyDFY1RqNXzBmJut8gXtcxc9X8PhEN0Q0Q2R4XDIS/OhBso0gDINcPewQbvTXdoeCTjG\nOmO3bGLMxiRk+VNMnT4pkrTsmVzhm4XPsuj/HvBvAkfAsXP8736Zg1phhdfBV9EfvKxFbhmWlRy2\nN4vMhm3392bDNtubxaUyr51ul8Pjqs3SDmY4PK66X6iLHAG/862bjDsVdxEfdyp851s3KVcraKM5\n6sB+aaM55WrFlXM1jRmmMXPlXM/ndX0tjZ8pfqasOz38r1quvrw21VE0DKOPuuijLrnUuQkQdJUB\nuhBAFwJ0nZLD/u42Me8cwRojWGNi3jn7u9uomoqqaGiDCdpggqpoqJrqpJsnTA0fU8PHaXdCp9uj\nWm+QXNtmOugwHXRIrm1TrTcIhUKoah/BG0Lw2sehUAhFVUml0vR7Dfq9BqlU2i1blKtVprpIIJoi\nEE0x1UXK1aobxA1mHgazl0GcFE/g8wUJxyXCcQmfL4gUT3DtygH3bv8CXYihCzHu3f4F164c8OK4\nQiCapttt0e22CETTlMpVYtE4g+EQPEHwBBkMh8Si8aUBrRSP4hN1RGuGaM3wiTpSPEqpXEYMxqlV\na9SqNcRgnFK5/CnPtow5G7g/m7MByYS8UKEylXyp1KepGpqqrZT6fs2wNL1/cHDwfwPfBvLAm6/8\np78DXPwUrbDCV4xlafzXabNb9Puvvv+yVrvXgSgKXNkrclKzmeZbe0VEUeDFcQl/LI0g2HG4P5bm\nxXEJVevj8cc4azScMcVRtf5SVn8yIZNJxbn3+Mh+/6u7zm44xmnjOThtasz6/OaVfaf9Lo5DlCfo\nw81g7G5vcesf/4xgsghArfSMH/7uO/QU9RMM8WQi42rex11Tnpe15HQyger0haeTiY/I7T55cgjA\nlSs2uSwWjTMYnTEz7Py+32MQixbodHs8OWpgesMAtJUG65IIWFjGjOB5m5oxAzxs5HMEnx4yG9n3\nLOifsZHfwTAM7jx8TDyzB8Cdh4+5vvWWM1aIRqNMZ/ZYo9EogqDT6XaptwcMZ3YGJuIXScS79Aca\nxY0CXdXmBCSlpNOap/HG9RtUK3Ya/43rN6jU6himTqnaZOK0zk2mc67nYXuzSDjYZjSzOxzCQZ8r\nVbyoPS4hy+TX+px1nM6KtQQJWcY0Te78/A6R5A4A9Xt3eeOvvLm0PRJetra67aXSmttFsb+d/8Tf\nz7mCnz+6BsDZ/Sf81vcufSTQhZeliC+mvLbCF4WLdvr/IfBbwD8Hfuwc/xbwG8CPvuyBrbDCIrxO\n+vB1dx52rbrGw2d1Hj6r87z0UWb96wiPJBMJ9MmAXq9Hr9dDnwzcIEIUBXLr6+TW1113vGWIReNU\nqjWX7Fap1ohF4/QUBcEbpNFs02i2HYEZxS4P1DXEaAExWuBZXePZiyNsOxqT2WzGbDbDwsTuuRco\n5DLMBx3mgw6FXMa9NkVV+d53v03CNybhG/O979ptYalkglwywHysMB8r5JIBMunlO8CELGHOx4RC\nIUKhEOZ87BDwLOqNFonsJonsJvVGy51vURQIxRKEYi8dBBVVRR1OqDbOqDbOUIcTFFWlWMijT/sY\npo5h6ujTPsVCnmRCYjefxjPt4Jl22M2nSSYkx8a2yGzcYzbukcoWXRvbm9euMR+28Hq9eL1e5sMW\nN69dcyyRx8xNP3PTT8spUUjxGPOJBpYIlsh8orlOhB7RQ2Fzl8LmLh7RJjX2FIXmaRkxkEAMJGie\nllG1HoJgEQt53LJMLORBEJZb4iZkGYw5lmXY6n2GnaHR+n3i8SSzYYfZsEM8nkTr952FfYuI1yDi\nNdja3vpIF8gikuKyZ36ROFNP0Zy/oU+aTK3wzcJF4jwqtuTuv/7VDWeFFZbjdXvlX3fn0e50ufOk\nRsDxFj97UmNvO4MoBD7XeG1dfNE9ds4iiF5i8Y+K4Zz3vvtf6X3fu3aD92/fJRqJ4HF6yQ0iaH2V\nna1NfvLLOwghu1f6rPGIg3/1Te4++JB23yIYDtrX1J9wUqkBFrGYzNyy+8x9QsCpMUv8yc9f7uY/\nuHWP3//dd9xrEEWRrW27n9tekM+lYgXi0Yh7DCzdAQqCwFrq1WyCz5mPxeTIwbBPbj3PYGzvhqNy\nnsGwTzQSpdnu4otmAWi2zzDNJKIoUshlaCo2eW0tnXGMfuKoikYwbs+RqmiOgp+GPu0wHNnvH/AK\nxGP273g8Aj948wrVM3t3u3FwBY/HaRcUfS+Z8KIPEJAlCVV9wMSy59ucTpAlmYQs896jW6gOn04K\nwvbmWzx++ozs5hvMHfJidvMNOt0m5x6BAb99n8+DsmXPcLfXQx0O8QXtQFIdKk7HCkixCIZpZyqk\nWMSd3/OF/eW9tHGuKfFxkuIyLBZnml6YTVjhm4PPZiS9wgrfAHzZ/cGlchl/NOW+vz+a4sVx5VcY\naxRZlpBlCU8g6n4pF9ZT6KMe+qhHYT2FICzvfRdFgf29LWL+GTH/jP09W//elpINYOpzTH2O4A04\nUrICILrEP/tPXCAekxAFCPi9BPxeRAHiMYmj0gkbO5cJ+yDsg42dyxyVToDlNrOLjG9swx17BziZ\nTJhMJu4OUBAEioUs2USIbCJEsZB15ngxObJY2GA+7SNYOoKlM5/2KRY26A8GRGNJjGkfY9onGkvS\nHwwAWwAoFA4TCocRRVsuuFSuEowliUtp4lKaYCxJqVylWChQOj5ibHgYGx5Kx0cUCwUAJ/OxhscY\n4jGGFHJrbntiOu5Hn/bRp33ScT/JhMxJpUxqLUd+PUt+PUtqLcdJxal+CiaCKCCIAjiCR5f3d/Ay\nxzQNTNPAy5zd7R1AxOMJIIoeRNGDxxPgoq/nSq2GL5RiMFAZDFR8oRSVWo2t4iZKt0lEShOR0ijd\nJlvFzU+Vzn0dTszezjbzQcsl8s0HLfZ2th2TqU30YRd92GVza/NCTYkVvh6sFv0V/n+Li77oFpUJ\npLi0gMUc/0LHZIvhnOAJyXhC9vE5cU4URS7t7XJpbxdRtP80v/Otm8yUGmtrWdbWssyUGt/51k20\nvkZ2PYcc9SNH/WTXc2h9jWIhz6TfRFMVNFVh0m9SLORJyHGyiQBS2IMU9pBNBNxrs+vYEaLRCK9+\n1y+zmb0QFu58n8vrn5MgndSHS4JcRo5MJiSiwZcCNtEgJBMS8VgUfTYgEIwSCNrH8VgUy7JQ+0ME\nwYsgeFH79j3X+ratbiDgJxDw4w1E0fp93v3gA9Y3LxH0GAQ9Buubl3j3gw8AkOJx/vgnP+NsFOJs\nFOKPf/IzpHicZELGmA4Jh4KEQ0HnWbJT4elUEkEfIOgDVymxVK4QjGQIBQKEAgGCkQylcoXvfOsq\nWufIzmoIHrTOETevXbanzgJVUVAd06HzuVv0DEfCMU7KNUxvAtOb4KRcIxKOofU1fvj2W6SCE1LB\nCT98+y20vvaFkl0FQSCfTTHrt5j1W+SzKVd4qnbawhtJ4Y28dEdc4ZuF1aK/wq8NXrc1b1mb1bJa\n//7uNomgQUCcExDnJIIGB5d2vtCxXtQ6tQgej4ff/913KET6FCJ9fv9338Hj8bC9WWQ+bBOOxglH\n48ydLgC7BU9Hn4/R52NMUwcsUkmZKzs5NlIBNlIBruzkSCVl9na2mWotNE1D0zSmmr1rA9tmtqEJ\nzIUocyFKw7GZXXRt6VSChBxHn2quyZA+1dzAQtcNHj16xKNHj9B1w70/O8Us7dMj2qdH7BSzDsFP\nYz1bIJOMkUnGWM8WUFQNWZKJR8OEgj5CQR/xaBhZktH6KrIUR0RHREeW4mh9lWKhwEhr0mmf0mmf\nMtKaL3f0WMTiCWLxBMIr5j+37j5g5k2imx5008PMm+TW3QeuVfJ5hubcKvnNmzeoPn9Iszug2R1Q\nff6QN2/ecAmhvYFOb6C77Pa7Dw7Jb14iJM4IiTPym5d4+PgJpmlQqpygTUS0iUipcoJpGkuf4f6g\nTygUwNBHGPqIUMgu19j8iRHpVIp0KoU5H7ltdss4Kee6C+WzPuWzPs9LdXexXhQcd7pdznpjkrkd\nkrkdznpjOt0uy+yeV/hmYbXor/C14nWIea+7W1lGglomqSuKIj/+jZvsZX3sZX38+Dduujvu172G\ni8YqLLDWvQiiKLK7vcXu9pY7nnQqxc1LBUat54xaz7l5qUA6Zad4/aEEiXSORDqHP5SgUqu51r1p\nyU9a8rvWvYIgsJFLoY8V9LHCRi7ljrN2esrEDGDgxcDLxAxQOz1duhAJgshaOsVk0GQyaLKWti1u\nW+02P3n3Q5qTGM1JjJ+8+yGtdttpU7xPuStQ7gr89N37biZB8HjIpNNk0mkEj8eZB4Ht4jrWpIM1\n6bBdtImQUjyOPhtizWdY8xn6bIgUj5OQY5jTIaLoQxR9mNMhCTnGD99+m2n/jNFQYzTUmPbP+OHb\nbwNQb5zi8UcZz2aMZzM8/ij1ximmaXH7wVOMQAYjkOH2g6eYpmXrKPhDdluhoiH4Q3R7CrFojEaz\nheALI/jCNJotYtEYWn+APxgnGLVf/mCcwXBEqVxDHXqY6AITXUAdeiiVa84zfMpw7mM493FUtgNU\nQYBQKIRgzhHMuX0sOATS6YDT0xqnpzX06eDCwBhYqLvwsi30k8HxopZNWzLYKV1NVPSJ6pauVvhm\nYbXor/CVYNHC+Hn6el+HQb+MA3CRpO4yedmLrmu5CM8nx/q6JQe3o+BFg4cvGm5HgWVZ1BptZgSY\nEaDWaDv/RsQXCBOLxohFY/gCYc7/zEVRQJYTyPJLRvy51KonFMcTin9EajW/vs502GE2nTKbTpkO\nO+TX15cGU5ZlctZqMSfInCBnLbvue/fBY3qTEDMrwMwK0JuEuPvgsSMYNGWg+xnofl40pjx7USKZ\nkEhGPSjdBkq3QTLqIZmQkOJRnj09xB9dxx9d59nTQ6R41NYaMEwErxfB68UyTNtWuVJjfWOPhBwj\nIcdY39jjpFLD4xG4fmnT1fa/fmnTIevB5b1LHH54C3VooA4NDj+8xeW9S/ZC5w+7JQqPP0xPUblz\n/yHl5hgrnMEKZyg3x9y5/5B645Rr124QEkaEhBHXrt2g3jjl+tV9aseP0QZjtMGY2vFjDvYvcXxS\nwhADIIogihhigOOTkq1D0BrxvNzkeblJtTWi0+2xkS+gdVsg+kD0oXVbbOTttsaz3phStUmp2nR2\n4RfzXnpO4Kv1NbS+3XXRU9SlwbEt5jMBpxBmzCaOmI9TugrE8QTiHyldrfDNwWeR4V1hhV8Jy1j3\nX19f72LW+DJ52YvwutewrN9/2RzZHQWnzAWbdX/WPkWOhej2ejytKVheO33+tKaw8eKIreIGR+0a\nZx1bByCbirFVLDhf4BEY261Vov8lC7ylDPA59rNDpU+3Z9epd7c3ST9u0NZs+dx03Mfu9uZHFgOA\nuBSn3enR7akoQ51e3+6vt2IBuj2VwXCA6JHcFgbR42MwVKnUqniCScZjm+LuD0ap1Krs725xWruL\noxiM16jxzluXuHX3Pmv5HVTHxW8tv8NJpYYsSWTX19FGdntAPOxzZWQF0UPYscMVxJctZ76QzFrG\nziD4QjF6ikYmnaY/UJHlGJORLaAkyzH6A1t4KJtJvpSqzSQRhCn1RpP+1I/HKREYU5F6o8kP336L\nZ7er+JxgYjbqUryygaL2CUdj6IL92d6oXYcPBcPMJ3100wn2ZgNCwTCdbo/DoxqG447X6dXIySL9\ngUY2l6XVtp+jbC5Lf2CLGH3wqEQsvQvAB4+O2MkGyaRTSzUrZEniztPnbtdKvVbj4Hv7bnDsCdhy\nxVq9SXwnZWeN+mMGE7tME43apj7dXm+pa+IK3xysdvorfOn4uly5lu2ql7HGl8nLfl4sktWFxRmA\nZXN0fFJGnVio/Yn9mlgcn5QpV+tMzBAmPkx8TMwQ5WqdvZ1NZoMWc33OXJ8zG7TY29nEsizK1QYP\nn9d4+LxGudpwMgMCWCLtTsc2/rFstr89TlhLSeTXEuTXEqylJATBDuIqtTPOemPOemMqtTM37Xva\nGiIGk4jBJKetIT1F5Y2DSzBrMRv3mY37MGvxxsElNvI5GtVnaP0xWn9Mo/qMjXyO50cn9PUAoxmM\nZtDXAzw/OnHG5MHj9eLxehGchRPOF3ebZCc4PfHbmxuMtQbj8dh+aQ22NzfsxU9R8IUkfCGJrqK4\nmZXBcMT+5WsU1lMU1lPsX77GYDhyGOttItEIkWiE+aDtcB9MJkPVNSWaDFXAZG9nC33YZaabzHQT\nfdhlb2eLav2MRKaAFI8gxSMkMgVOz864vL+DMVPcdL0xU7i8v4OiqmgTg+FEZzjR0SaGox5oYRm6\ny/a3DJu78ezFMRG5iGGaGKZJRC7y7MXxp2ak1tdShHwmIZ/J+tp5iWdxjX6ZqY9pmtx+cIgeyqKH\nstx+cPjpxM8VvnKsFv0VvjZ82Zr5y+rqy1jjy+RlP881LJPVheU8BsMweHj/IQ/vP8QwDOd3Tbrd\nDh1tTEcb0+12sCyTeCyGZRjM5jNm8xmWYRCPxewFc+6n227Tbbfpz/08PzrBMCx+cfsJL077vDjt\n84vbTzAMC1mSaLVaqMMp6nBKq9VClmzil23EskVGjpCRIxQ2tlAc0ZVmp8/E9DIxvTQ7fSzLoj/o\nE5ckzPkEcz4hLkn0B30u7e2ylY4gTNsI0zZb6QiX9nZJJhLEw2FmE43ZRCMetu1nTypVmsqMkeFj\nZPhoKjNOKlW2ihuc1V8wmgmMZgJn9RdsFTdsJ8JpH9M0MU0TfWoT2gRBJCnHGSunjJVTknIcQRAR\nBEhIEXzCHJ8wJyG97Fq4ee0aM7VxLi7PTG1w89o1RFHkne9fxz9v4p83eef71xFFkbV0mpHWdn0F\nRlqbtXSao1KZ7MYumtpGU9tkN3Y5KpUpFtaZj1R0w0I3LOYjlfz6Ol6vl5vXv0UmGSGTjHDz+rfw\neu3WQ1H0gmWAZbjtiLGoRLPZwfTHMP0xms0OsahEdi3DbKQxGg4YDQfMRhrZtcyFgbcdBGfclsqN\nXMZd6BcFx8vKOxeJ9qzwzcHXlt4/ODhYA24Bfxkwgf/N+f+HwN8+PDy0Dg4O/ibwHwE68F8eHh7+\nk69puCv8Clgm/vFFSdu+LpZ9bkKWF8vLfo73en50jC+aQuvbqehYNMWL4xL7uzsL0/hSPM7/8Q//\niJnPTrEe137K3/r3f494TGYwLKM7qemZOSEek0klJd57/B6drh0cpGIedrau8NN/+QtO6grxjN0G\ndlIv8eDRI6R4jLHpw+Ozr22sz7n38CFbxSJ4ROZDWywmFBHpKQprmdQn0r6n9RpXvrePoqrk8jlX\nnCWVz9FTNIqFAreeH7rueLEAFAsH9BSFjc1NQrKdxk/FbfVARdXI5QuEB/b7SNEQiqphmibNVtMV\n4ZkPmpg76yiqRjqTfenulsmiqBqppMxaUuKoYqvq7RZzTuamhzKcEIzbYkHKcOKWXjI9k6ZT687I\nCTfYTCVlpLCIObPLKZJ/RiopY1kWx5Uz0jk7bX5cOWNvK8d4MqOwfYV2y5ZJLmxfYTyZ0e4o/Py9\nQzzO3P38vUdsSAd8760rTAa/YGrZcxEQhmxvfh+tP2Cn4CMphd25SMhhLMsiGhyA175v6AayFOek\nUiOZLaI79sXecJFqvc7Na1f4o5/9XwRSdtfJsFPh5rW/BtiZp3NZ4I3ihvsMn/99nssnG9MhyVzO\nfT4/fn5Reedcg2KRaM8K3yx8LTv9g4MDH/A/A0PsXOIfAP/Z4eHhO87P/8bBwcE68J8APwT+NeC/\nOjg48H8d413hV8PFTPbPTsx7XVzUirToc1PJBPlUkLDXIOw1yKeCZNKfXo9c9F6WZXF61kbpz1H6\nc07P2q90DkTQtD6a1ndr67fuPmAiSHR6Gp2exkSQuHX3AVpfIxqPY+gGhm4QjcfR+hpgIQDRaIxo\nNOYk5C2a7S7+UBzDMjEsE38oTrPdZTAc4vVH8Xj8eDx+vP4og+EQRVXpDw3U4RB1OKQ/NFzzGUEQ\nyGaS6GMVfaySzSSd4OiT7mvJhGSfn43xegN4vQFH50Cip6h4A1FikQixSARvIOoICdljTqVSpFIp\neKV1zjTnbjnANO1avdbXyKzlSMRCJGIhMmu2NoFlWZy1uxgEMAhw1rYzKIqqMRhbDEdThqMpg7F9\nLpmQ0Sca7VaLdquFPrHPARyVTijuXiGXkchlJIq7VzgqnSy9b5FwmOGwRyS5QSS5YR+Hwxw+f8Zw\npmNYPgzLx3Cmc/j8GUelKlJyjUG/w6DfQUqucVKpOu2ic1dHIRG0zYdSSZnLWxmC9AnS5/JWxnVO\njIR9+L3g99rHggDVep133vkR3vEp3vEp77zzI6r1OrIk8f4Hd+nNQ/TmId7/4K6b0Vn293lRy+si\nIqxbAomEiERCr5RAVvgm4etK7/+3wB8Cp87P3zk8PPyZc/zPgN8Gvgf8y8PDw/nh4aEGPAdufuUj\nXeELwZe5uC/Dslaki8a4t5WnuBahuBZhbyv/uccqSzLddoep6WFqeui2O8iSjGVBpd6i3ulT7/Sp\n1Fv2uVqdWktzHeRqLY1KrY5pmjQaTaZzk+ncPjZNk5NKlcLWJfLZJPlsksLWJU4qVfa2d/B5RczZ\nCHM2wucV2dve4erlK+jjHqOhymiooo97XL18BdO0aHY6+MJr+MJrNDsdTPN88bVT3NFYjGgsZqe8\nseySxmyEYc7t12xEOmWn5bMbuyRiARKxANmNXU4qVWRJol6r01KGtJQh9Zq9CCUTEum4n6A4JyjO\nHZU7CVEUSCbSmPMB5nxAMpFGFAW2ikXOaiXEQAQxEOGsVmKrWKTbU1GHJqYnhOkJoQ5Nuj0Vy4LB\ncMxcCDIXggyGYyzLllt+UmrSGnpoDT08KTVpd+znwrKg2VaY6iJTXaTZVlzdgeppy+UxVE9b7vnZ\neIyhzzD0GbOx/Rnj8YRQNInSOkJpHRGK2oTFTqfHs1IDK5TDCuV4Vmq41r3/H3tv9uRIep77/XIB\nEkAmkNhr37qqu3qf6Vk4JEWKoixROjrUCV2cW5+wI3zja1/Zf4YvHI6wLmxfnpDDDh3JMkWeI4qk\nhsOZ6Zme3qa3qgJQAKqw5oLElsjFF4nGzEhdLQ3FITlkPRUZkZ1dlchMZOb7fe/7vM+zvlJcaERE\nqfTnpagxiaRCIqkQuGPyuRw3r11m3G8Q+AGBHzDuN7h57TJpLc3h4TPWdm+xtnuLw8Nn0bZKlbXt\nSwSzEcFsxNr2J8qLz+/9Fw1cX5TGP6vWf5aq5Dl+vfBLT+/v7+//N0Dn8ePHf7u/v/8/Es3sP/1m\nHQA6kCHS/v/H21+Kf45tfY4Ivw3XqWd0yOTyNE8iX/LVlTUEMaBUShN5j0fp3WLhs+575fJnVfh+\nnmvVMzq89dYrHB5FkqwX3noFSQ7IZTMM7x8tUtdDp0U+v4GmJZmM+2S0qJwwtFto2hoIAaEo85wP\nJYgyCAE72xv0n9qktUgz3p+N2dle49Yrae5X/oapFJ2D4vf4g2+/iSAIbN89xHIjjXg9LnDp4hq3\n71hsb29jGFHtdXt7G0kWomuEi96fkI+l5p8xolBIIwg+t25dw5zXa7PZDL2+STarobQc3Ll+vBIT\nyGY1CgWNZELANiLmeyYXp1DQKJcK+AT8579/D4D/6ltvcnl/C8+f8rc/+1ti8egcxnaLm9e/Q6mU\n4a3XLnLai2xgl3cuUiplMG2DZDrDk2cVAC7tbSOIAdmsSkJN4s9T4JKcJJtVOaxWaA1gGkSvP28w\n47Ba4drVHfxglbc/+gmJXOQ3MDCq7H77G5EgzoMqUz9KNs5cl3x+g/HUoVBew7IigaVCeY3x1OGb\nX3+dH/+v3yNRjJz8+vVHfPO7f8S7H9zHExLE5vMtT0hw0m6BMGPoQWzuFDj0AGEW8Q9KeTwxuna5\ngoogepRKOjev73HvcXTON67vUSrpiFLI2toqvhCdWy61Ov/OBA67NplsdL+MJmNyG5mX3tudbp/i\nUvlTg4Dos4vFNDdSaay5s6Cul8iloFRMEwQBhhXts1RK/6uD/m/De+qXjV9FTf+/BcL9/f0/ILLu\n/T+ATxdOM4AJ2MCnv/E08M9SvjudwS/uSH9DUSqlv7TX6fNY5fqewNvv3CaVi+qXlept/v13Xqfd\ntj9TV3921FmkNIMg+IyN6dKSvrhWn+ezA1/kyeNP6uFPHh+w9uYeB4cNMrnlRetXJre71lkKAAAg\nAElEQVTMwWEDUZBZKi/T7kSzr6XyMqIg02i28AOR4PlHBSKNZou3Xn+dmNfAGEQBMJcMyWcvYJgm\n3/2Db/B//z9/CcB3/+zfYc0d4Xb39nlw/250bns3OTxqktF0HPMxQiy6Fo7ZI6Pt0+kM6PcdMqrG\nYM5LyKTT9PvR51kTEXveUxcikVNV9HSW2tGHBIloQGO0a3znjW/z9FmdRmfEaBplEDzP4+mzOoEv\n8R//8h+QMpHZz3/8y3/gv/+vc1SqpyS1LIoYDTbEQKRSPSUmJ9DTWRz7uZlMln7fYeaG/N2Pf0pM\njerQjR//lNe3fx9nOCIuCky8qDwQlwUsa8THjw9p9UQSc2MYc2Dy8eMBX33jDQ6PmlzY3efo8ACA\nC7v7HB5FZSFnHNA8jbwYVpdLPDuok0qkMLtHZMpRcDfbB6Su79BodsmXV3Gm8/p2eZVGs0uv38Ob\npUCMBg/ebEq9bvDkaZ2ffdRkNI04Gkf1Hql50D+qD5Hn9+pR3UaTfMIQmt0xuVI0OGl2xzx91kAU\nYWtlicfP5se/t4tpDiPzoX5nYYbkOh3CIPvSe7vXH2BPpc/M/P2xTz6Xo9f65PnptTpkt1ZotSz+\n/lOGO3c/fvtfNdv/Mr+nfpn4vAOjX3ru5fHjx996/Pjx7z1+/PjbwB3gPwD/3/7+/nO73n8D/Ah4\nF/jm/v6+sr+/rwNXiEh+5/gtxecV8zEtm6WVdRKxyCd+aWUd07LPZDL/c4z7z/PZz0lNMdElJros\nFaM6bC6bJZhN0NIaWlojmEXCJjeuXsbqHOOFIl4oYnWOuXH1MpqahsAnkUySSCYh8NHU9DwdXKKg\niRQ0cc64jtTpfvDDt1m+9DWWL32NH/zwbfRMBj2T4e69hzQNl6bhcvfew4WmvK7GiQk+McFHV+OL\n+vZZXQ65bJZqpcrQkxh6EtVKlUI+GxHtysuk4pCKQ7Ecke9My2bkSsTVLHE1y8iVMC2bH/7kbbSl\ni2hqKlqWLvLDn7yNM3TY3NohcC0C12Jzawdn6JzpW/Du7Q8JBQVBiiFIMUJB4d3bH5LV06QUSMZC\nkrGQlAJZPQ2EeLMx0/GQ6XiINxvznE+Q1XVapy2y5Q2y5Y1oXdcJgpCjWgNJXUZSlzmqNQiCkFw2\nR7mU5+TwPU4O36NcypPL5hg4I4RYiriSJK4kEWIpBs6IjbU1pkML3/fwfY/p0GJ1ZRnDNDhutGi0\nTRptk+NGC8Ocz3EE8ZN06Ny10bJNEASGtslwvm7ZJjtbm3z4wXsct22O2zYffvAeO1ubiKLIazf2\nkcct5HGL127sL4LxWff2WfbQZ3EADo4qC/KqPRgQm5NXz/HrhV8HcZ4Q+B+A/21O1HsI/MWcvf8/\nAz8mGpz8T48fP3Z/hcd5jl8xPr8QzmfZxKlUcsEmDkOw7Sg9nU5HI+WDowrxdJHndrjxdJEnzyoU\ncqWXfvaLZknPneXsuUhMRs8gCAH5XI4Ve0SzG6WDV4sZCvkcP333AyYeyImIpT2ZjDiqHpPLpllf\nnmHOGe7l5Ty5bHrh4ieK1vx4Ihe/w0qVle1rtNqRoM7K9jU+vHsPNaVycNxG0qLZ8MHxCd1eH1mW\nKS8towxGAOjpFKZlUS4VFkSuT2c+BEGgbxhsbW8vMgDp7W16fRN7YFNeWiE9jo41mUzOzV5CUopI\nuxNReMp5HUE4e8B07fJl/urP/xNBchmAB3ff57v/3Z8uXNyeM9Cfu7j1DINEepPJODqeRHqJnlEj\nn8uhqy1arWh2vnxhI7r+S2WUp1XcSXTtFNFnZam8uGfKhQwTLxrsZQuRVLI9GFAsrTOcROdWLK1j\nDwaktRSdVp3cUtQt0WnVSGtXCQKPbqsO8xLFwLUJLm6Q1TNk8wWm85bMbL6AnklHgyNnSiBFr+SJ\nP8W07IjMZ8zozQWJCpkE+ZxOEAT0ujVmRNkQd9omc+M6Tw+OaPQcmt0oIzMpajw9OGL/4i4ffXwX\neV4OqlVrXPhaRJE6696OOhpCbCfKrGiJT8pezzkAn0ZEXu3g+tHz4wzHlHd+sYZV5/jX41ca9Oez\n/ef4vRf8/58Df/5LO6Bz/EbhuUe9+mmP+uuRv/eLfL/7xsttQMMw/Eyb0vNtL2rBy+dy9CtNwoVS\n25D8yur8b5iLqbBwU7tz/z5acYtF8V7TuHP/Pv/+3/1b3n/UYaJEdXIt7rOztUkQhLz/0SM8FABO\nuo/4/a9cJAjgsNrAmgfk4XjG+jWd9z64i5ReIQzn9e30Cu99cJevfeUWYejN2fMwmw54Puv9NJEL\n4LB2yu7W2T7r25ubHL33DHVe0pg6Xbav7uH7Pv/X9/8aLxYFiaHxiD/73X9LsZDnf/k//xOGGw10\ncvExv/cf/pR3b9/FF1T8WRQYJUHlqFrn0t4WjZMushodT+Okg75T4MqlS/zs/31AQo+OrXdywJ/+\nybWI8FhvkS5F7WvVeoMguMTWxjrZdIuJH127hCSyNW9hiwZr5X8yWNMzOr53gjs/poQcoGdWuP/x\nxxRXdgmFaF+Ctsujp8+wBwMGtkUsGQXS2djCHmTZWF9GFkJGs6hlT5Zjc03+IW4QI6ZEnAt35mIP\nRvNsS43Qj+6LwI22dXsmoqggidF9IQYKIPD2u+/T6Lpkypeja9Q+5O13b1MqFhDjSarPIo7J/t4m\nfcOkWDi7O6XXN2j2Jky8KEw0exNyGYNi4cUD3Yi8WkHJRt+D0z0h++rmmfs/x68G59TKc3xp8HnF\nfM5iE0dOd1uoso8q+2xtR45puzvbuIMuz33C3UGXS3vbQJSWPzo84mmtzdNam6PDI3LZ7D+jNhgu\nWryeB9Jev89pf0RMLRJTi5z2R/T6fcrFAv5kQDyhEk+o+JMB5WIBEBBEiZgsE5PludqcQN8wMZ0p\nM0FhJiiYzpS+YaKpKs+ePsSTcnhSjmdPH6KpKiEhk9GQEJEQcb4eks9lyakxHty7zYN7t8mpsUV6\n/6xzi9L7FRxXwHEFqpUKhXyWYiHPrctrZONjsvExty6vUSxEHvYxrYA/m+HPZsS0ApVaNFsPAp+B\nccrAOCUIooB65/49YqksiYRCIqEQS2W5c/8eZyvEgRKPEfouoe+ixKP2tXsPP2Zp/dJCLGhp/RL3\nHn6MKEYuhbmMQi6jsL25gThX8YvuMQfLiRZ/bliT1dN02y1CIU4oxOm2W2T1qMySTuskk3GSyTjp\ntI4gCDSapyTUIjElSUxJklCLNJqnBJ5Hr9chlswRS+bo9Tr4vsdoNCQmgSzLyLJMTILRaEjfMJEU\nDWH+E2V0oqxKNpfD6Hcw+h2yuRz2wObgqLrgsACkcuscHFXp9vq8e++QaazENFbi3XuHi46F5+ds\nmhamaS3OuW+YdK0xE19m4st059yQs8oBlm1x9co+Md8m5ttcvbKPZUeD5M9jrHWOLxbnQf8cXxr8\nPJ7gL/Kof76vbC5L9lPGOi9rOer1DTr2hNPegNPegI49eamRSdQuOEJO5ZFTeU56UXCPzE1Uho7D\n0HEQ45FD2Te/9hbF5GzhIFdMzvjm196iUqshJ9Mk4jES8RhyMk2lVot61pdWCaYOwdShtLSKPbB5\ncvCMKzfeIi4MiQtDrtx4iycHz7i0u4M/6jAZ2UxGNv6ow6XdHTLpNN/7zz/BdJOYbpLv/eefkEm/\nnBhkmCYbmxsYJ1WMkyobmxv0+iaCILC3vcb1i6tcv7jK3vZaFABPTvACGTW3hJpbwgtkGicn/N2P\n/4FZrISaXUXNrjKLlfi7H/8DpUIex+wwC2VmoYxjdigV8ggCrJZzHFcecVx5xGo5klRudzukc0Xi\nskRclkjnirS7HTQ1Ta1+jOVMsZwptfpxxJEgBAL0bAE9WyDSBPsku1Gtt3lWPeFZ9YRqvT2XMK5z\n+ep1EgxJMOTy1evU6nW+/pU3GRs1ppMp08mUsVHj6195EwApFkPNlFEzZaRYNCN/+/07JDMriBKI\nEiQzK9y+c4+V5TIJOcAbG3hjg4QcsLJcjgKv7RJLZYmlsnRtl75hoiZV3vvgLpNQYxJqvPfBXdSk\nyt6FHSZ2C8do4xhtJnaLvQs7HDcaCFKSVrNGq1lDkJIcNxqL7zRqPwzmy2IrYegv1AnD0AfCMweD\nWV3n5KSBppfQ9BInJ5Evws9jrHWOLw7nQf8cXyr8Ivr9X5YxOGuQcFipUu+McQUNV9Cod8YcVqpn\n7sswLYSYSqvTpdXpIsSi4J7VdU6aJ4x9ibEvcdI8IavrlIoF3ri+TSrskQp7vHF9e26SEtDv9xlO\nfYZTn36/TxgGbG1s0qpX6JsD+uaAVr3C1sYmq8sr+K5DWtNJazq+67C6vEIum6OQyyH6NqJvU8jl\nyGVz/NX3vo+6tEs8niAeT6Au7fJX3/v+S6/TyzTWo7SvuZgRAmiqhu+7WGYfy+zj+y6aqmHZDo22\nQW/g0hu4NNoGlu1wbX8fIZgy6NUY9GoIwZRr+/vomQx/84Mf0R2rdMcqf/ODH6FnMqSSKcaOw3Q6\nZTqdMnYcUskUmbSK0a3jBhJuIGF062TSURkmkusd4k2Hn9GHf3pwyLOmiZRaRkot86xp8vTgkEw6\nQ7fdIq7miKs5uu0WmXQGURQoF3T8cRt/3KZciHQG1tfWESURP/DwAw9REllfW0cQQJRj+O4U350i\nylFW4pXrV5HDCYm4SCIuIocTXrl+FQgJfJeBbTGwLQLfBULev3OHZLrAdDJiOhmRTBd4/84dvvPt\nbzCx6gt/golV5zvf/gaaqtGo17HGHtbYo1Gvo6mRkU7fMJATGrlcjlwuh5zQFjX9UlYjLrnEJZdS\nVntpZu0s8urLsmHnGYBfPn4diHznOMe/GJ+nbe4svEz+9x/v/zks22E8E1DkaCAwnQlYtnPmvvSM\nzg9+docJUb26ddph/w9fRRCgkFN59PQxAJcv7swlY/sYQ5fcUiTzagxdev0+mXSWgX2ENYxSsbqq\nkElngQAvmOHO662K5AEBr796g5/d/UtaTnScS1rA66/+Dh98dJfNzTWK44hLkErKDBwLxxkxnSVQ\nkhFHYToe4DijxXXaXi/zw5+8DcDvfePrCIKAYdqI8TQjJ6p7x+Np+oZFPlv8TMtW/Z17fOurN1hf\nXab7/Yf4sUhmYzizWF+9QvW4Sd+okC5uA9DvVkgltxkMB2xtrtKz5rK9eoLBcMAHH91D0Vfozf0Q\nCrkVPvjoHqlkioH1GHXeNjdoH5BKbtA4OWVz+yqNRlTH3ty+Gm1bX4PQZ+pGrXwp5ZN747jRJKaW\n6Bvz662XOG40uXntCu7kEQMrujZpxSOXvUylViORzrOjRucsiQGVWg1NTSH4Np47v5a+i6bm2d/b\n4Mf/+98Rz0T8Dtdu8trvvIk9cHjz9Vd5chgd66ULr2IPHHJZnWDWIhTmg5XZkFx2Az8IGQxHCHNZ\n5cFwhB/EefT0Gd/54+/y9OkTAC6+/l0ePX1GKqnhhSDK0cl6sxFh+PJnp5DPsTYY40yiv9ESIoV8\n9Ey8SFa7bxgvJK+ehbP4ML8s8a7fVpzP9M/xpcEvMk14lgLZWfvXMxqJWIAQugihSyIWoGe0M/fV\nNwxMx2Hmh8z8ENNxFm2BHz+tECbKhIkyHz+tEAQBh5Vj6j0PYxgt9Z7HYeUY0zKZzLyFzOtk5mFa\nJpXaMbFEDtd1cV2XWCJHpXYckRGlJO7YwR07ICXpGyZZXSerxnFHBu7IIKvGyeo6b9y6hTfqE4QB\nQRjgjfq8cesWEBkA/cVf/4j2NEd7muMv/vpHcyOgkMCb0bcG9K0BwbwP/uCogpQqcFipcVipIaWi\nlq0Hj54QCBHRDAQCQeHBoyd0e12Wl5YYm8eMzWOWl5bo9rqASCymoGfS6Jk0sZgCiJiWzUnbwpfS\n+FKak7aFadnU6nWWt64QTm3Cqc3y1hVq85lsq3OKXtpBL+3Q6pyiqRphGGI7E3xRwRcVbGey+J7X\nVtaoHBxQb1nUWxaVgwPWVtaigY6k0Ouc0OucIErK3ExGiMh0ogyiPCfWCYzGDqHvLvgEoe8yGjtI\nkkQmWyAWixOLxclkC4iiTBhCz3QQZAVBVuiZDmEIgiCyVCziT0z8iclSMeouSSWTTMcOghBHEOJM\nxw6pZJJMOo0YBly4sMuFC7uIc3Om0/YJpfIySjyGEo9RKi9z2o66Kc52o3yxQuXLjaxG6FkdPasv\nSIdn7f9X5b75247zoH+OLw2+6JfEi/b/XLXvwvYmG4UEijBBESZsFBJc2D6bmVxvNimvXkAMpojB\nlPLqBerNJpVanURmmbSmktZUEpllKrU6pmXT6Rn4ooovqnR6RhTkWpEVq5aKo6XiCytW34eDah1X\nTOOKaQ6qdXwf7ty7T3cYoOU30PIbdIcBd+7dZ2drk6dPHkKiAIkCT588ZGdrk3Ipxx994xqqf4rq\nn/JH37hGuRTN5m7fucuQHPZohj2aMSTH7Tt30TM6R9UagZwhkDMcVWtk9TS+H/LOBw9oGh5Nw+Od\nDx7g+yHV42NCKcHI7jGye4RSgurxMbs7O7SbFQJkAmTazQq7OzvoGZ0w8JlMpkwmU8LAR8/opLU0\nzshm5gvMfAFnZJPW0hTyeWyjhZzQkRM6ttGikM8jilDMaot+/2JWQxTBsgfIioYoiYiSiKxoWPOW\nuCDw6fQ6uJ6A6wl0eh2CwKdvmBwcd0gvXSa9dJmD4w59w2R7c5PJsEe9fky9fsxk2GN7c5MgEPAQ\nkONJ5HgSD4EgEGictknnVknruWjJrdLq9AkCn2rtiMFEZDARqdaOCAKfMAxp9/rE1QJxtUC7F6XB\np9MJpaUVZMFDFjxKSytMpxNee+UGY6O6CLBjo8prr9xgZWmF4dBBVTOoaobh0GFlKWLZn6Wx//z/\n/qXltJdp+H9eLs45vjicB/1znONTCMMQ0zAxP1WTBqIXXyaB4A0QvAGFTOJMfQCA9dU1uqfHKGoe\nRc3TPT1mfXUtEujR04t6ck5Pz9noIclkAln0kUWfZDKBIISsraygCB6zyYDZZIAieKytrGAPBkix\nxMJPXYolojYxZ8jUE7CcIdZ8feAMuXPvPlduvoUqTVGlKVduvsWde/ejGZ3vcv3qJa5fvYTgu4uy\nhmUPsIZjnLGHM/awhmMse0Ctfszuxcs43SpOt8ruxcscVRuYlhm1nvkyri9jD4aYlkkmrdNv11BL\ne6ilPfrtGpm0joBILJ5ESWZQkhli8SQCImEYYJoGkpJGUtKYpkEYBkiSwMXtDRQGKAy4uL2BJAmk\nNRXPHeP5frS4Y9KaSlbXyaQUxHCGGM7IpJS5yUyIN5sysGwGlo03m/KcyHf7zkfoxQ0UGRQZ9OIG\nt+98xEmrRX5pg5gsEJMF8ksbnLRaBEHA8fEpfWtM3xpzfHxKEARMpxPSemEhzpPWC0ynEyBkNhsh\niiKiKDKbjYCQ40YTOZGje1Kle1JFTuQ4bjQju+e4SiqVIpVKIc2Jnxd398CbkFBkEooM3oSLu3tY\nts0f/8G32MjM2MjM+OM/+BaWbZPP6eyu5YmHQ+LhkN21PPmcvrjnX6yxf/YzclZG7KxBwou2n9U1\ncI4vFudB/xxfGnzelr3Pi7OU5iCqufedKYWlbQpL2/Sd6UvNewr5LDtrRVTZRZVddtaKFPJZbt28\nQfPoPkIsiRBL0jy6z62bN9ja2GSloJGSZqSkGSsFja2NTV575TpTq04YBIRBwNSq89or1xFFKOSy\nTOweE7tHIZdFFGGlvIJp9AiEJIGQxDR6rJRXCMOQTqdL27BoGxadTnfugT5vX5R8VOmT9kWA9dUV\nuqc1RpMZo8mM7mmN9dUVNFXjwzt3ENRVBHWVD+/cIZNWGThD8uU1RH+M6I/Jl9cYOEMs2ya7tMuw\nX2fYr5Nd2sWybZ4dHbK0vks6pZBOKSyt7/Ls6JB6s0G+vEZCDkjIAfnyGvVmg52tTdJKgKaIaIpI\nWgnY2drktN0lnswycXpMnB7xZJbTdpesrmMaBmM3YOwGmHOGeVrTOD4+omfa9Eyb4+Mj0lpUqlHV\nFGHo4/vREoY+qppibWWFpOyDPwF/QlL2WVtZ4cc//RmmG1uUCkw3xo9/+jOKhQLedIQ7HeJOh3jT\nEcVCgdXlJcb2J10UY7vDUqmA5/nUGyekinukinvUGyd4nh+R40p5kpJHUvLmToeQz2VYzidISAEJ\nKWA5nyCfi3gZkiRy/fpVrl+/iiSJi/vx0naJ9Xyc9XycS9ulxb19loPgWfh5Mm5nEfZe3DVwji8S\n50H/HF8afNFpwigAbqPFQ7R4yNZcaQ6gUjtGSZfRNA1N01DSZSq14zP3JYoCr9+8xN56mr31NK/f\nvIQoCouZWCk+oBQfLGZiF3e32VtJUdCgoMHeSoqLu9scVY+5dOUGGSUgowRcunKDo+ox169c4bjy\nMW4AbgDHlY+5fuUKzmjAUqGA4DkInsNSoYAzGrC+usYHH35A2w5p2yEffPgB66trhGFI46SDrBaQ\n1QKNk87ipSyKEhtr60ztBlO7wcbaOqIoRQSzwhKBOyBwB+QKS5jWgI21Vbxxn3Q2Tzqbxxv32Vhb\nJaEoTJweSb1EUi8xcXokFIWlcpGJ02bqTpm6UyZOm6VykUw6A4GH78/w/RkEHpl0JBkcuiOeN+qH\n7oh8LstwOGA0NMmVd8mVdxkNTYbDAUfVGsMZjKce46nHcAZH1RrV4yZukMQXEvhCAjdIUj1uAvC1\nN99g0Kkz8UImXsigU+drb77B66/eIDbr483GeLMxsVmf11+9QfX4mBkJ/EDCDyRmRKULTU0xHRrE\nFZW4ojIdGmhqClEUUVMq7qCDO+igplREUaDT7ZEtLBGTQmJSSLawRKfb+8SuVlNRNXVhVxvNnHOo\nSQk1KVHI5xZ19dl4QKVSoVKpMBsPFnX1cDalWC5QLBcIZ9PFgPksB8FfFM7KDJzVNXCOLxbnQf8c\nXyp80Ra9ggC6nkHXI/nV59AzOv5suvi3P5uiZz5Jj/7jWUykW25zctLi5KQ192x/3hYosL62yvra\nKqL4Se10faWIIvsosr+wVjUtC8Nx6dsj+vYIw3ExLYvqcZ1MtowkhEhCSCYb+bJn0mmC0F0I1QSh\nSyad5u1330fJLON5Ap4noGSWefvd9wGBEBF7YGEPLEJEPjG9DAiCKaqWQ9VyBMEUCBAEyKbTxESI\nidG6IAgUCzleu7xB9/ge3eN7vHZ5g2Ihh6qmkAiZOj2mTg+JEFVNcePqPka7tiAjGu0aN67us725\nxtg8xbBsDMtmbJ6yvbnGwVGVuFZETamoKZW4VuTgqIokSRTLa9jdQ+zuIcXyGpIkcdxo0jHHmM4I\n0xnRMcccN5ocHFVxRQ3H7uPYfVxR4+AoMjqq1RsUymUC1yFwHQrlMrV6A8O0KJXLCDMHYeZQKpfn\nLZhZbOOUqesydV1s45SsnqXXN9i7/BqxcEAsHLB3+TV6fQNBEFBTKpIsIckSaiqaMa8sL5HLqMzG\nfWbjPrmMysry0pnaEWEIpj3G9cH1o/Vo1hzSOO0yDRNMwwSN009ndLbRYiFaLBrQPs/ohGFI87TN\nx08rfPy0QvO0vbiPz7q3P0/G7Zyw9+uF86B/jnPM8aKXWbEQvcz2LmyTT8xQJA9F8sgnZuxd2CYM\nQ55VmtRaA2qtAc8qkSOb7/v87Y9u0x0n6I4T/O2PbuP7/kLNrmVOaJkTqpUKuWyWbq/PnccNeuM4\nvXGcO48bdHt9UkmVn737Lk6QwQky/Ozdd0klVZqnJyhqDi2dQUtnUNQczdMTMuk0A8tamM8MLCti\nb7faDEYh8VSOeCrHYBRy2moDIYQBoiAjCjKEnxaqAWc4xRdi+EIMZzglDGFrY41W8xmhpBBKCq3m\nMy5sr6NnMrzz3ockc1skc1u8896H6JkMmqohxyTEWBwxFkeOSWiqxoNHT7l28+uU9BglPca1m1/n\nwaOn9A2LiS+BEAMhxsSX6BsWpmVhDl3kRBo5kcYcRgOgb379q5jtGqKcQJQTmO0a3/z6V7Fsh75h\nIsYyiLEMfcPEsh0s26TbeEpSXyepr9NtPI0MbIgImPYoQFFzKGoOexRQbzY5rNRoGj75lYvkVy7S\nNHwOKzVSyRTT0YDxyGY8spmOBqSSKS7uXmDitFESKZREionT5uLuBdJaCss0iGtLxLUlLNNAUzW+\n9Ttv0a4+IBQVQlGhXX3At37nLeDF2hGmZeIMR/jE8YnjDEeYljk3vSkhCCKCIBLTShwcVQjDkHqz\nzdiPM/bj1JufBPZe3+Co2cNFxUXlqNmj1zfOnKG/jPj3efruv+hy3TlejPM+/XOcY46X9e9HM66b\nnzKfuYkoinR7PZpdh0nUtYYdg1ymz517D0iVLjJ0Ila4Wooc5F69cR0xpuKY0fZiNh0xw49qPDoe\nMAujR7JreGyVajx++pR0fo3ZNDJQSefXuH3nDpf29vjp00NSeiS5alt1Vm5coHHSZH1jG2NuoJMr\nbdM4aUbNcuGM2SwyTxHC2Xw+LxASUqlGpYr93XWez/Sfs9yDuYGKLEUsd1EU2Nvd5aAaSenu7e5i\nWgPu3H3Eyu4tBlbEdUjv3uLv/+GnQIggxslkIwOdUb8ebRMgk1EZDud+BhkVQXB5+PgpoZInJUbX\nIgw8Hj5+yvUr+3jTBvZcRyAVE9AzaxxWqihKHF+Ofl9S4tQbTfpGn1gygz+X940lM/SNPo4zJJld\nZTqKvudktozjROn9IIDhaIJWiPruHdsgCJTIOEj65HUpSBL2wKbebJDMFHke3uRMkXqzwe//7leR\nZrcxRpG8bzHls7O1xof3HiCrBWKpqP4+w6Nx0kKWJTb3bnJ6Gl3T5b2b3Ln3kLfeuPVP7J5FUcSy\nB7iBiCRHSn+uF23L53K0OiZTLzpnZTilnEoShtDqWszmr/wYHld3Ig+D40YTRS0wdaOeekUtcNxo\nUirmzzTiOcuT4Swfihf19b/seTvHF4fzmf45zvEpvKx8ENVMs+Q/Jd3bNyw65phMI0QAACAASURB\nVJTaqUHt1KBjTukbFkEAjZM2pjPDdGY0TtoEAXNZ1QlyMouczNK1J/QNk3qzTqdvMXCmDJwpnb5F\nvVkHBBBFZDmGLMdAjNLv+ZzOzmoRwe0iuF12VovkczppLcNoNEbPldBzJUajMWktw4WdHYRgjDsy\ncUcmQjDmws4Ovh/wzgePsDwVy1N554NH+P5zQZWQMPCIKwpxRSEMvGjbPLWcL2+SL2/OU8vRbM00\njUXrXMS6D+kZfZZW1pCCEVIwYmlljZ7R55tfe4s77/yQrjWja824884P+ebX3gICvImD5/nRMnGA\ngFxWx5+NcV0P1/XwZ2NyWZ3DyjGyWkIIQ4QwRFZLHFaOSSWTiKEHgQ+Bjxh6pJJJVldWiMsxCH0I\nfeJyjNWVKGhJEhQKWbxhB2/YoVDIIkmwub5OSpohhlPEcEpKmrG5vg6EiKJAKl0mlS7PyzUhh5UG\nA0/B9Xxcz2fgKRxWGnS6XbR0ltnYYDY20NJZuv0uzdMTYkmNbK5INlckltRonp7M7Z7vctj2OGx7\n/P07dwmCAEEQ0bQ0ghAiCOF8XSSrp2md1pj6ElNfonUatVMapokgxxBFGVGUEeTYIr2f1jRsy2Tm\nw8wH2zIXxMYXISL+pbBMC8u0EOMp+oZxZhr/ZVycL7pcd45/ivOgf45zKcx/Ac5KdQZByGGtySRM\nMAkTHNaaBEHI+uoyvVaF8SxgPAvotSqsry5zlp55GMJkPCKUYoRSLFoP4Y1brzJzugSCQCAIzJwu\nb9x6lXxOJ5eOUdBVCrpKLh2LtmUzlPIJrHYFq12hlE+Qy2bY2lghGZsRE31iok8yNmNrY4W7Dx4g\nJbIY/S5Gv4uUyHL3wQMg8pbXFBHBHyP4YzRFnLe8CSCIGP0eRr+38Hi/ee0artOjeXpK8/QU1+lx\n89o1Xr1+jWGvFk2jg4Bhr8ar16/x4d0H6OU13FEfd9RHL6/x4d0HXLm0z3Rs4U4c3InDdGxx5dI+\nhmkhKymSyWiRlRSGaaEoCgOzj5zUkZM6A7OPoihc2N5C8EeL4C74Iy5sb/Hq9WtMzDrxpEY8qTEx\n67x6/RoAV/cvIbp9UkmFVFJBdPtc3b/Exd0ddlfShKMW4ajF7kqai7s7bK1v4gf+4lj9wGdrfZMP\nPrqDPfSIaSvEtBXsoccHH93htVeucVq9i+uFuF7IafUuN69eZX9vl8NHt+naM7r2jMNHt9nf2+XZ\nYYX+JMbUl5n6Mv1JjGeHFTbW1nBHJt5sijeb4o5MNtbWsOwB165eZ2zUGBs1rl29PtcgEBBFiZSq\nklLVucGQMP+eMyiyTzIukoyLKLJPVs+cmX5/XioYejJDT/5MqSAMwbJsLMv+DBnwrOB+/u755eM8\n6P+W4zfdDOMX9VI5axZjD2xy+cJCeS2XL2APbJzhkKtXrqIENkpgc/XKVZzh8Ew980w6Q6FYRAqm\nSMGUQjFisUuSyNb6GqkYpGKwtb42b8MSIJQYWAYDy4Aweoln9TSdkzqNkzaNkzadkzpZPc3AGbGx\nuUdc9IiLHhubewycEb4fUjluMvVjTP0YleMmvv+csJUlnZJp1p7RrD0jnZIjBn0YYJgGsUSGWCKD\nMZ/RAwS+j9mpY3bqBHPP+Avbm+hJGVmYIQsz9KTMhe1Nnjw7wBNSJLUsSS2LJ6R48uwASRLZv7CO\n4NkIns3+hXUkScSybSQ5hW1Z2JaFJKeibZKApqYg8CDw0NQUkiSQzego8RSzqc1saqPEU2QzOu1e\nhwt7VxCmfYRpnwt7V2j3OkCkx7BaLoJrgWuxWi4u9BgkSWR5dYPl1Y1FKxxCSAwfSZKQJIkYPggh\n7Y7BLJQQ5ASCnGAWSrQ70aw3rqRxxwPc8YC4Es3QCUVCIYnrznDdGaGQhFDEsi2k2Cc6wVJMwbIt\nBCEgqYjEYxCPQVIRiSyAMzx4+DEzUWcm6jx4+DF6Jup8KOpJEpJHQvIo6smFm6IkiXz9jVdQMVAx\n+PobryBJ4ktm6BH503EcHMdZkD9z2SyVoyNOekNOekMqR5ET5cuezYNqk+P2kOP2kINq8zfq3fPr\nivOa/m85Ph3M4JO63cuEZ74s+GVoe+sZncA7IS7HAQg8Fz0T1TqFsMXS8lz1LPTQMzqFfI5l0+HO\nw6h2e+HqBQr5HFsb6+QOn2DPtcozicjj3R7YFApFEqoLgJqIYw9sIKTSPIVECYBK85Rev0i3a3D/\n4BQlE33u/YMTnj6rIskSnW6fpB5pvne6fYIg+o4FUcCdeYv15/A8j5++fx8/EdW3f/r+fX7/Kxex\nBwNy+RKtblSLXSqWMK0BR5U6HWuCqERkrI415s69e+RzWb7y1a9yeHgQnfOFmxw3GpSKRXoPj0iX\nIr+BXueQ0pUdwjDEchwUNTo+y3EIwxBN1bj/8KcksmvRuT18wNevfI2VpWWStTbDUcSTSKUUVpbK\nNE5PQBBQEvNUdejSmJMdRclmZT3S6g9n9sJ8xjAtlJRKaTm6Z5RUtM2ybZRMmRU9CvZhGNXZR+MJ\n8aSGOxsDEE9qjMYTZp6LJMeYjSMdekmOMfNcHj09JJ0tMRhF3Ip0KsezwwMEQUQvbdDrtqL7qrTB\n+3c+4t/84e9x+O5TfClyPpT8AdtXLnJUPaZQXOHRk0cArF+6jD1wABF77DOaza9FLKBvWOxfvDDX\n0Y/ur0/r6F/Y3uL2X/2I1e19AE5qB3zju78b3Q/zGfo/RtQ1KSzWYf4uiScJ5twAKZ6kbxgUC4V/\n8vcQEQgb3TGTWfT7VkwkmzYoFr78755fZ5zP9M/xG4tfZKvQWeph+VyGrCqQVuOk1ThZVSCfy5DP\nZdAUj2azRrNZQ1M88rkMQRDw/kdPaHSHNLpD3v/oCUEQkM9lUJWAlCKRUiRUJdqmZzK47gB74GAP\nHFx3gJ7JUKs38YQ0UjyFFE/hCWlq9SZ//f0foGS3EMQ4ghhHyW7x19//wYKI5vkBnh8gSHK0TYBE\nQiHwJgTehERCWbzEv/dffsQsXqRVP6JVP2IWL/K9//Ij0lqGRvOEQEoRSCkazRP0jMbJaZuhGyza\nyIZuwMlpO3Ko67ZJ55ZJ55bpdqNtWT1LIV9c1MkL+SJZPYthDugPfMZuyNgN6Q98DHNAvdkgkVSp\nPLlN5cltEkmVerPBxtoKrtPDD0L8IMR1emysrTBwHEaTCZ7r47k+o8mEgeOwub6GHEwZGKcMjFPk\nYBqZ8ACmZeNMREQ5jijHcSaR5v9ZSCVTzKYjfN/D9z1m0xGpZIq9C1t4g9ZCedEbtNi7sEUykcQw\nemjZdbTsOobRI5FIkEjEqR09XLD6a0cPSSTiUUo8rTAetBgPWhTSCoV8Hi2lcufeQ4TkMkJymTv3\nHqKlVGr1OuOZwGg8YTSeMJ4J1Or1M3X0o3O2ePONW+STM/LJGW++cQvTsl7yNEQdH6qqoqrqouPD\nMC3khEZWz5LVs8gJDcM8ez99w6RrjZn4MhNfpmuNI++Ic3yhOA/6v+U4b5v5l+NF6mGiKPLGK1fY\nyIls5KJ1URTx/ZB7j6t4ooYnatx7XMX3Q97/8A7HxoxxkGIcpDg2Zrz/4R1Ma8DS0ipSMEYKxiwt\nrWJaUYCvVo9pdXq0Oj2q1WP0TKQhkFI1hnaHod0hpWoIAnNuwGDRmjcZD+bHLeB6wXMqwXxdIK1l\nmIyH6Pll9Pwyk/GQtBYxy09OT2hUn5Eq75Mq79OoPuPk9AR7YKGpKeKSQHyeWjetAcmkihdICyKf\nF0gkkyq5rI43HdE3+vSNPt50RC6rI0lwYWuZWDgmFo65sLWMJEHjpMF4FtDvten32oxnAY2TBrOZ\nz2G1ilq6ilq6ymG1ymzmU6s38EUFWYnq/L6oRNt8gVkoI8aTiPEks1DG9wUgwJuNFrwKbzYCPiEv\n+rMxgighiBL+bAyE7O5sM7U7mJaBaRlM7Q67O9uAT+C5JNQ8CTVP4LmAz1uvv05c8nCdDq7TIS55\nvPX660iSSGlpmdAfE/pjSkvLkQlPWkfPFZkOu0yHXfRcMZIvNgzkRIpsJks2k0VORKS5j58+IZ3J\nIQoSoiCRzuT4+Gk0gOy020w9kakn0mm3F9bBLyPNiaLA5voam+trC+2IsyAIAuurZVTZQ5U91lfL\nCEKU3vemYyzbxLJNvOn4pen9s/gt5/hicR70f8vxm2yG8Ysc0LzMczycjdnc2mRza5NwNiafy/H2\nu++SzG0gCgKiIJDMbfD2u+9Sb55ijQQmgcIkULBGAvVmpNd+UK3jyRk8OcNBtU4QBHx0/wGekECM\npxHjaTwhwUf3H3Dj6j6d2kPGMxjPoFN7yI2r++xd2EEWoqDmzUbIQsDehR0AQj/AdSe47oRwztAf\njR1uXr+BZ9fw7Bo3r99gNI7aAw1zSDK/jiDKCKJMMr+OYQ6jF3wujyLNUKQZuVwURCRJQE+r+K6D\n7zroaRVJEub68UnCwCcMfKR4EsO02Fxf4/DxA+yRhz3yOHz8gM31NTzP4/S4ghDPIcRznB5X8DyP\nSq2OXtwhkUqRSKXQiztUanWOqlXiqQKxeIJYPEE8VeCoWsUweyTiCWKJJLFEkkQ8gWH2qNVPCCSN\nWDJaAkmjVo8c57K6TkoRqD27R+3ZPVKKQFbX5+JJBULXIXQd1lcKCILAcDRB0Qr43hTfm6JoBYaj\nCQNnSHl5nUQyRSKZory8zsAZsrWxiqaAhIuEi6bA+uoquWya9aUcGTVGRo2xvpQjl40sizvGhONW\nn+NWn44xoW9YgIgUVxlYHQZWBymuwry2LkgigjhfpE/EloIg4OnBIU8PDhcDgZ/nOVn8/vzn+e/n\nc1kC11kMRALXWfAGztrPi/gtL8M58e9fj/Ogf47f2LaZl4mI/Dx4ETP5rEFTGIYMBwNCMUEoJqL1\nMERNaYynU8aTSbRMp6gpDdOyGbshoymMpjB2w7nLXoeJH0eMJRFjSSZ+nJNWB9Ny0PNLxIQZMWGG\nnl/CtByu7l8kn04sZpj5dIKr+xcRhABZDEkmFJIJBVkMEYSA61cuc/j4I/Iru+RXdjl8/BHXr1wG\nwPNc4vEkge8S+NG657lsb24wG/UoFJcoFJeYjXrs7mywtrKM4Nlk0iqZtIrg2aytLGNaJtZgBHIS\n5CTW4LmQzDG9UbhQCeyNQg6Ojul0DWJakYBo/h3TinS6BoII2WxmoUKYzWYQREgkkjiDHuORw3jk\n4Ax6JBJJSsUCshwyGxrMhgayHFIqFhg4Q3wxRRCKBKGIL6YYOFGNPZNO8/jJATM5z0zO8/jJAZl0\nml7f4NRwyZXWyZXWOTXcuYANzKYTEimdREpnNp0QhnDcaGA6U4ipEFMxnSnHjQa7Oxu4VotgNiWY\nTXGtFtubq2xvbuJPHUbOkJEzxJ860TY/4M7Dp5+INj18iu8H7O/tUq88YiYkmAkJ6pVH7O/tIooi\nS0urxMWAuBiwtLSKKIrz1r97tEcK7ZHC379z7zMZgM878I9q+uJ8ibYZpsnm1jbJmE8y5rO59Ynq\n34tQyOdYKyZZyWus5DXWiskFz+DFz99vNun4l4XzoH+O31h8XvewlyFiJh/ytNriabVF5ejwpanL\nK5cu444MppMR08kId2Rw5dJlsrpGSp7hmG0cs01KnpHVI9GbqS8yHDoMhw5TPxJbUVNJfM/FHTm4\nIwffc1FTSerNBuWVDbKaSlZTKa9sUG82yOppxHBMRtPIaBpiOCarp9EzOpqWWlj9aloKPaNjDxxe\nf/UmSSySWLz+6s05IQwuX9rFaDxkNh0zm44xGg+5fGkXSRL5w999E8U9QXFP+MPffRNJksjncuxt\nbzDuHTLuHbK3vTFv8RIZTQIGA4vBwGI0CQhDkXfef5/s8i4IPgg+2eVd3nn/fcaTCbG4Shh4hIFH\nLK4ynkz4sz/5Y+zTR4iEiITYp4/4sz/5Y5ZKRcZ2d3Gtx3aXpVKRN2+9ythuM3aMaLHbvHnrVdRU\nEqt3gmHaGKaN1TtBTSUB+Mk77+EpJSbTKZPpFE8p8ZN33ouCl6RwcFSNJHslBcM0kURQYjC0Thla\npygxkEQ4OW0xGE5Q0mWUdJnBcMLJaYvDSh29vIo3dfCmDnp5lepxg16vT/2khzMNcaYh9ZMevV6f\nWr2BR3KhTeCRpFZv8PGTJyjJDO7YwR07KMkMHz95Mm/lMwjCkCAMcUcGG2trc6W+AvZggD0YENMK\nC8EfiLIAh5Uqh5XqZ7IAL0LUp68tuDJiPMp6hSE0TrtMPJmJJ88lgM/ez8t4Bmd97rmc778e50H/\nHL+x+LzuYXB2CrTXN+jYU6aBzDSQ6djTl0qVSpLI/t42mWRAJhmwv7eNJImktTTdThc5nkKOp+h2\nuqS1dOTZ3u3iEcMjRr/bJQh81leXiYUjxpMB48mAWDhifXWZtZUVjp49pufM6Dkzjp79/+y9ya9k\n6Xnm9zvziRNxYo47zzncGpNkiUU2KUrqhiRIgtUteCFtDHhnQBsvtTEMb73y0v4D7E2jDRgNCN02\nmiAkkSLVpIo1ZGVlZeadh7gxT2eejxfnZhTdqiyJsEQWhftcfMCHD4EbBxFxzvt97/s+z/OczfV1\nrm96tDpbGLqCoSu0Oltc3/SWaWtVVVFV9WfS1rC60qJRVmiUFVZXWsuT28baOqqm4c/7+PM+qqax\nsbZOo17n6rLQwVcrba4uCzfCWtXk+voK1VxHNde5vr6iVjUpRH4i0kwmzWTyLAIKLYOb049Jco0k\n17g5/ZitjTUa9RqL8UXB/xdEFuMLGvUaiiLxG+++hWCfINgn/Ma7b6EoEo7roVeaKIqGomjolSaO\n63F5fY2s6pRra5Rra8iqzuX1NWmaMp2OyAWZXJCZTkekt/TC84sLHNdD1KqIWhXH9Ti/uKBqmnz/\nhz/mrO9x1vf4/g9/TNU0ub9/wHw2x3McPMdhPptzf/+A/nBMqdIiTSLSJKJUadEfjplM51x0Z8jm\nJrK5yUV3xnRm8b3v/xArUhHVGqJaw4pUvvf9H+K4DojisnyAKOK4DoPhmCBhKT0cJDAYjoGcLE0R\nJQlRkm5pk0XavjcYMZ37TOc+vcFnxkppmvLv/vyveN7Ped7P+Xd//lfLz+PzUBj0jHFjETcWue6N\nl7r//eEEPxbxY5H+cHJ3Ev8S4o6yd4dfKbx054KiJvizmt//5frLh5OsFae4RW9Mda/xytdnWcZf\n/s1HTN0i2F/1F/zxv/kOAOeXl2iVNqVbIZosL3N+eYkoCsuNBYBpmrcqZDmtuomi6gBUDQVByHl+\nfMzW/hsMeoXs7db+Gzw/PiZNM0RJJr/daIiSjON67GxtE0cJWVa8b5wnVM0aeQ6u5yObRdOd6700\nXCk6541aQeWLIuezpkNBQtXU23lBAdzf3eH/+d//nEgpaFXW++/x7f/2XwMwHE9prh2Q3p4NJDKG\n4+ntBihm4Rc0vySWGY2nfPTkE1LJRJSKzztNUz568glVs4oXxMS3/yePY/IcttY3QeyRpsntBcps\nrW/ywj+hVq3h20OgoEXKssRsvkDRTdbWC9qhopvM5gsm0wmG2Vp+RqJoMJlOuOpeYzZ3QCykcDF2\nePr8Bb4fYHbu4S0KepzZuccHjz/mD3//d9A0Dd9dIKgFRc53F2iaztnFFUEq4i4KCeCyKnJ2cVU0\nz+U5lVZxTe7kgk+PXtCom5x2LRSh+PDjyKbRMen2BmSCQi4W8rmZoNAfDji7uCATXsN3i3S4IKqc\nXTzj6197RPj0U6RS8X2G3oiNtdfp3gwIwwSZQv85CWOyrDAZUo067rxgHFTqda66N3z17TcYDk4I\n8uL714WI+le3Afjphx/h5AaqUPxW/dzgpx9+xDd+7R0+HzlxHPKTDx4D8LW3DoGc+WLBxuYmtlNk\nilqbm8wXCzrt1ivuz5+PUvsqOd87/Hy4O+nf4VcGrzpVv7rWl0OeLoMh+Wenns97/dHJGUddh7Er\nMHYFjroOz16cArcue5HP7X8ljXxq1dorTz2Nep0sCZd15iwJadTrGKUS/ZszgiQjSDL6N2eFXKwo\n0Gh3kMUYWYxptDuIosDT5y9Ary3Tteg1nj5/wfPjI7b2D7GnXexpl639Q54fH1GrmshCWGjr5zGy\nEFKrmoWIjVZCREBEQNJKLCyLk7NL1OoKsqIgKwpqdYWTs0sAfN+FLEPTy2h6GbIM33c5u7jEDgW0\nUh2tVMcOBY5PL+kPRqSiXjSSSSKpqNMfjLBsizwXCIOAMAjIcwHLtjg+O2d1c58sssgii9XNfY7P\nzlnrrCLJMrpWRtfKSLLMWmeVNIXHn57Sm3j0Jh6PPz0lTaHVbOEuxoSRTxj5uIsxrWaLZqNN4Duk\naUaaZgS+Q7PRRlFUrHEXSasiaVWscRdFKYJhpVJBUw3m/RPm/RM01aBSqXB908MJFdwgxA1CnFDh\n+qbHsxcnNDceoCoSqiLR3HjAsxcnfOvdr5O4w6UEcOIO+da7X0cQQBYFnGkPZ9pDFgUERBr1OrPB\nGUq5jVJuMxsUwjaNep3VZoM8tMhDi9Vmg0a9XjTcxQG5WGwg0ji4VYhMmUwmGPV1jPo6k8mELEsL\nOp2qI8taMVR9SaezbAdZM5dpc1kzlyWez2ucS5KU737/PVxauLT47vffI0lSGvUaWeRRNatUzSpZ\nVLA0vsha9+dJ1/9zbjr+ReIu6N/hVwavekh8keb35nqHxJ2QuBM21zsIgvDK119ed/FTlSSXSXIZ\nP1U5u+gChcteQ0/RxBhNjGnoKfcP9viijcVwMuW6N+K6N2I4md4KzJhYlo1qdFCNDpZlUymbvHH4\nECGcLK9JCCe8cfiQ/qDPZDwCpQJKhcl4RH/Qp9Na4YMPfkKmdci0Dh988BM6rRUa9RobnQaNskij\nLBbz2wfvfLZgPp8VY7Ygz3OuutcopTol3aCkGyilOlfdQjio026ShQuyJCpGuKDTbgI5aRJzdXXO\n1dU5aVKcNldX2gTOGMd2cGyHwBmzutImy3IWlk0QxgRhzMKyybIcXVcZXB5Rbe9Rbe8xuDxC11Vy\ncrIkRtRKiFqJLInJybm4umQ6t0mkKolUZTq3ubi6pFI2iEKHwLUIXIsodKiUDQ7v75EHI9I4Io0j\n8mDE4f09dja3yIV8qSiYCzk7m4VxUafVwnXGNDdfo7n5Gq4zptNqkaYp43EfpdRCKbUYj/ukacrr\nhw9x5gM8Z4HnLHDmA14/fIiiqLz+2iMSb0jiDXn9tUcoisprDw6YjS+I4ogojpiNL7h/sEuW5VQ7\n28y7T5l3n1LtbJNlRZAVJYlKpUalUkOUiqyF64VIWgVVLaGqJSStguuFiKJIs9kkT1zyxKXZbN4a\n9FjIWpl6o069UUfWyiysIhvw6M03iRZ9PN/H832iRZ9Hb775SgfJH/3kPczOAaVSmVKpjNk54Ec/\neY9Ws8l6q4whxxhyzHqrTKvZ/Eetxf9zbTr+ReIu6N/hny0a9TqXF5fI5SZyucnlxeUXNt9VzQpJ\n5JBnGXmWkUQOtWqh1CaKIr/5zbeQowFyNOA3v/kWoii+krN8cnbB2fUcPzfwc4Oz6zknZxecnp+z\ne/9tBCIEInbvv83prb0uWY7nWniuBVlOo17H9QJyJCS5hCSXyJFwvYBur4cgl8lzgTwXEOQy3V6P\nVrPBa/trlHAp4fLa/hqtZoMsSxkN+kS5TJTLjAb9256BTYY350vv+uHNOVsbhVDN1sYWmi7jzLs4\n8y6aLrO1scXO1jZnpycsvJyFl3N2esL+7ibbm5vEvkMSeSSRR+w7bG9uFqJCSY5SrqOU60RJjmU7\nSJJAq7OGM73AmV7Q6qwhSQLD0YhS2USVZVRZplQ2GY5G9AZjMq1BhlgMrUFvMGY4HqGXykiygiQr\n6KUyw/EISZLY3Ngm8Uck/ojNjW0kSaLbv6G5skueBuRpQHNll26/cNl7fnxCe+t1IndC5E5ob73O\n8+MTgiCk1WkjZh5i5tHqtAmCkG+884hw0QNJBUklXPT4xjuPyLKM+XxOY3WPxuoe8/mcLMuwbJeS\nUeNlyqhk1LAdh431NdJgQXV1n+rqPmmwYGN97VZyV8Q0TUyzkOxdWAtsx0LVSqSxRxp7qFoJ27HY\n2dqmognIYoIsJlQ0gZ2tbeq1GlVDxpmPceZjqoZ866MA7VaDe1t1cm9I7g25t1Wn3WowmU7pTVy8\nRMFLFHoTl8l0iiBApWIgiSmSmFKpGEuFvvt7G+ysmuysmtzf++LGvDuNkF8O7oL+HX5l8KqHRLPR\nIAkcZrMZs9mMJCjU8mbzObt7e1TUnIqas7tXUIhepa53sLfLVqeMJnpoosdWp8yDe7tA0eD3g598\nQql1j1LrHj/4ySe3SnoNssh9yWEii4pren58jJ8qxIlAnAj4qcLz42M67Q6TYY80gzSDybBHp93h\nw4+f4uU6Zm0Vs7aKl+t8+PFTJEnEMFu48xvc+Q2G2UKSRK5vbljbPIDUhdRlbfOA65sbGvUag16X\n+soO9ZUdBr0ujXqN3mBItbO5DHTVzia9wfBWCRCiwCIKLMoaNBtFn0CeZ8RhgqoYqIpBHCbkecb5\n5TVapbk8uWuVJidnV3R7PVY3dpcqdKsbu3R7PSbTCZV6E0WSUCSJSr3JZDphY22TLA1Q9AqKXiFL\nAzbWNjGMEnGcoGolVK2YG0aJokktIU2KkaWF61+aCISJDEIxwkQmTQSyDBaOj15uoZdbLByfLANN\n1XBmfURJQ5SKuaYW+vYlTSGwRsRRQBwFBNaIkqZw+OA+dUOlUlaolBXqhsrhg/u89+ETqiv7iEKK\nKKRUV/Z578MndHtdHNdiNhkxm4xwXItur8vVdY8InVJtlVJtlQidbm+EWSkj5ClZ7JHFHkKeFmuC\nQKNRR5VzVDmncevweG9/l2BxQ5bGZGlMsLjh3v4uzYaJLsXkSUKeJOhSTLNhcrC3Q+/ylOFkznAy\np3d5ysHeDlBk0BS9wu7eLrt7uyi3GhSz+eLvnNBn8wV/+Hu/i9N7unR+pLvmmQAAIABJREFUdHpP\n+cPf+13g80/ir7pv79L1vxzcBf07/Mrgiy06/y5v+IuQZfky1f0yjdpuNfna4Qam5GNKPl873GCl\nUzS4nZydo5rt5XuoZntJeUrTjKvLS64uL5e2tFkmEMQJSS6Q5MU8ywSqZgnPGhAFIVEQ4lkDqmaJ\n0/NzBKlEEsckcYwgFWuvP7yPPT5Hq7TQKi3scbH2zV97h975R4hqGVEt0zv/iG/+2jucnl+wuXeI\nruToSs7m3iGn5xeUjTKB76ObHXSzQ+D7lI0y84XFysoaogCiACsra0vZ2aOTE2RNRy/X0ct1ZE3n\n6OSEq26X4dxHUCsIaoXh3Of8skuapFzfDFDNNVRzjeubAWmSsr+7Txy6LCY3LCY3xKHL/m6hsR/6\nASWjTsmoE/pFXbpWrdJqVFClBFVKaDUq1KpV1lfbSPEMbhn8UjxjfbXNcDwiiUPUSgO10iCJQ4bj\nEd1elyhK0MoNtHKDKEro9rpomo5rT/HdOb47x7WnaFrRxPb64UMG3ROQyyCXGXRPeP3wIe++84j7\nqzL4Q/CH3F+VefedR3RvbpA1E1lWi6GZdG9uWFgulhuTxClJnGK5MQvL5eL6mjwHUVQQRaWgud1c\nM51Naa1sLNPyrZUNprMpezs7xN6C2WzKbDYl9hbs7exweP8eeeIvewPyxOfw/j2mMws7yMiyhCxL\nsIOM6czi+PQcJxXx/Qjfj3BSkePT4vf7KvncRr1OGgW8TEukUUCjXkdRFP7sT/+EZnpCMz3hz/70\nT1CUojHx83oA7qx1v1y4C/p3+JXC5z0kipphhXq9Rr1eQ9KKk0qjXufi/BwnEnAigYvbNPpkOqU/\n9ZZNU/2pt3xIXfcmKKU6SqnOde/vpxyNJxM+enFNWlojLa3x0YtrxpMJlXKJPPWWTW156lEpl7jp\nD9HNFbLEI0s8dHOFm/6QvZ0dZqMrkkwiySRmoyv2dnZw3ACtVMjYJqGHVqrhuAHNRp1WrUbqzUi9\nGa1a7dYBDwajGeOZzXhmMxgV/OlatYquiORpRJ5G6IpIrVolTeGTo2u8tISXlvjk6JqXbK0ckUzU\n8T0L37PIRJ0cEdf1yNMIVdFQFY08jXBcl/5wjCBJqJqOqukIkkR/OGZrYxVn0kUtt1DLLZxJl62N\nVU7Pz9i59zrO5AxnUsxPz8/Y29liZ7WKEM0Qohk7q9VibWuHSsVEzgPkPKBSMdnZ2mE0HiHKKpHv\nEvkuoqwyGo/wvJBKY2WZJak0VvC8kMGwT2Pt/vJ03li7z2DYB+C7f/nXrO6+hSyLyLLI6u5bfPcv\n/xoopGrLRpWyUV1K1a6tdhhfP10qJo6vnxZrkxmiUkY2ashGDVEpM57MKJdKCHmCb4/w7RFCnmCU\nSuxu72BP+zRW79FYvYc97bO7vUOeZ0xnM1JkUuRbPnxGbzCk1lzHbKxiNlapNdfpDYZcXl8T5yr1\nzi71zi5xrnJ5fc0nz55hhxrl5hbl5hZ2qPHJs8Ks51XBvdVssNHSMeQUQ07ZaOm0moW17uXNmO/8\n1u/ynd/6XS5vxn9PQ+1dcP8y4S7o3+FLiX8Muc0ivb9LWU4pyym7e7vM5vNXpi2PT8+ZhzKK0UAx\nGsxDmedHZwBL7XXLsrAsa6m9fn55hWy0mU4mTCcTZKPN+WXBT2/WagTTc4LpOc1ajVrVxPU8ZFWn\n1lyn1lxHVnVcr+hybjZMhMRGSGyaDZNGvcbl1RWK0URRS8UwmlxeXXHT7/Hmo69i6mDq8Oajr3LT\nL4xvnj37hKuhw9XQ4dmzT6hVK4gitBsmuhijizHthokowuX1FUGSLznrQZJzeV3QCVfaTSbDa5zF\nHGcxZzK8ZqXdZGN9ldV2m8jqElldVttttjc3kCSR1bUtQntAaA9YXSsscd//6GNW994mDaakwZTV\nvbd5/6OP2d/d4elHP8JLJLxE4ulHP2J/d4eDvR1mw2sUzUTRTGbDaw72dnBcmwf39lltmay2Cj97\nx7XptDvEkU+WpWRZShz5dNod7h/sMrk5Is1l0lxmcnPE/YNdWo0GEiGaZqBpBhIhrWUtOQdRRpZ1\nZFkHUQZy3vvgMT1bXWY3erbKex88pmrWqDZWcUenuKNTqo1VqmaNMPARRYGS2aBkNhBFgTDw+a3v\nfJMsmCCKIIqQBRO+9Y13kWWZnb17xHaP2O6xs3cPWZZ5/MlTtOo6YegThj5adZ3HnzxlOBqRSQZ6\npYZeqZFJBsPRCEEQqJgmSbAgCRZUTHNph/uyBLUct/K8rwruhaLlOmUlpqzEHOysf2Ej7J14zq8G\n7oL+Hb50+HnlNr+oIUgQhGXH8ssTxktjENu2sW17aQyysBYIss5kPGYyHiPIOrNbvvNL7fXEnZK4\n06X2ulmpcXJ6zs3U52bqc3J6jlmpsb25QexPkPUqsl4l9idsb26wtrKCmIWkWUKaJYhZyNrKCpIk\n8Nq9AyqGRMWQeO3eAZIk4Ho+9vSGKPSJwmLuej4bq6u8/9OfEFEmosz7P/0JG6urnF10CYUyYZgU\nQyhzdtGlVq2SZwmCrCLIKnmWUKtWcT0Xo1whjX3S2C9MfG5tX3uDPuQZ1ZU9qit7kGf0Bn3+1W98\nGzkaUDZNyqaJHA34vd/+dX7nX36H8dUTGivbNFa2GV894Xf+5XdIs4zFfIHR2MBobLCYL27XbPxY\nJMslslzCj0UWc5v3P3qC0dqj1mhRa7QwWnu8/9ETalWTNHKWDX5p5FCrmqx02ihCjkCGQIYi5Kx0\nilKMUS4vT+1GuYwgiPzmt7+FN+sRxwFxHODNevzmt78FwLff/Trz3glxHBHHEfPeCd9+9+tc39ww\nnnskYplELDOee1zf3CBJ0KhXKZVrlMo1GvUqkgRbW9tFySAJIQnRNJ2trW1WOi3eeu0Bam6h5hZv\nvfaAdqtBrVpBkSJWVjZYWdlAkSJq1QppClc3fdBaoLW4uumTpsU9EoUOeVaY3EVhYT/86M03CK0B\nuSCRCxKhNeDRm2/w5muvUdcz5NxDzj3qesabr722/G1/XnD/IkXLz5OkhqJsdnl5xeXl1bJsdocv\nF+6C/h2+dPjH4u++qsGv2aiThjaO4+A4Dmlo02zU2dna4tnTj3ESBSdRePb0Y/Z3i072oiTg01jb\npbG2S3/q32YhUqaTAZbtYtku08mAPE+ZL2wydFTNQNUMMnTmC5udrS1UOSeLPLLIQ5Vzdra22Nna\n4vTkBYuFzWJhc3rygp2tLZqNKr43x3OK4Xtzmo0ql90bROkzTX5RUrns3tDt3ZDkCpJaQlJLJLlC\nt3dDngs4Xsh0PGQ6HuJ4IXku8NqDhywmQ5IkI0kyFpMhrz14CMBNb0x99SFZGpKlIfXVh9z0xswX\nFvfv3UeIFwjxgvv37jOdLXA9jz/5oz+g/+n36H/6Pf7kj/4A1/MoGyVCZ0LgOgSuQ+hMKBslvveD\nH2DWNzHrq7djk+/94Afc9HuIioFtzbCtGaJicNPvUa/VWSwswiQjTDIWC4t6rY5ZqaCVy6SRRxp5\naOUyZqVCb9CnUl8l8iwiz6JSX6U36HMz6LG9s4cipChCyvbOHjeDwnBnNJ1g1uskgUUSWJj1OqPp\nhEq5TJoEhFFEGEWkSUClXGZtZY3ZqIcoa4iyxmzUY21ljdcf3qeiJsTejNibUVETXn94HwBJVtja\nvs/W9n0kWQEE6rUqhiJA7kHuYSjFGuRF0v2WUXIbcjEMgzxNCAKbILDJ0wTDMBBFgXt7GxhygiEn\n3NvbQBQFHt7f59cOO5TyBaV8wa8ddnh4/9aIKc85Pu/y/HzE8/MRx+fdL+TRv6psVq/V+Nv3PmAa\nakxDjb9974MlQ+AOXx7cBf07fCnxqpPEz5v2/7wGv+lshqiUSNKEJE0QlRLT2YyFZfPw/j1Kgk9J\n8Hl4/x7zRaG0N5svQCrxybNnRS1UKpzirrpdkMtMB+dMB+cgl7nqdjk6OaNUX6di1qmYdUr1dY5O\nzrBsi4phYBg6hqFTMQws2+L0/IKZ5eOnMn4qM7N8Ts8vKGklVKOBVqqilaqoRoOSVmI4mtBY3UMm\nQSahsbrHcFQEp8CZLz+7wJlTKZcLjrtlI+hVBL3K1Co47qIo0G4axP6U2J/SbhrLenW9ZuI5E7IM\nsgw8Z0K9ZnJ6fsnV2EdQTATF5Grsc3RSNAv+23//HxCq9xCq9/i3//4/UDbKiKKIUTGJ/DmRP8eo\nmIiiiKZppOTEsUcce6TkaJrGg4MDPnzvrxnNI0bziA/f+2seHBxwcXVFa2WTkqZS0lRaK5tcXF2R\n5xmh7y5lgUPfJc8zNLXE2fEzpPIqUnmVs+NnaGoJy3bxwwxJ0ZEUHT8sqHQAvu+jl+qUzWLopTq+\n77O7vUXLVBEiCyGyaJkqu9tbxQZFM3EXA9zFAFEzuen3qJoGrj1dOtG59pSqaTCbWwiChOtYuE4x\nL2h5AlWzQmjPCe05VbOydC7c21xDF1x0wWVvs6A1mpUyuqYiCxmykKFrKmalfCvCU2FttcPaagdZ\n/VlPe4GSUaJklHiZ2gcYjSd87z8/YxxVGEcVvvefnzEaT155T72qbFY0kT4kCx2y0GFz7yGn5xf/\n4Hv+Dr8Y3AX9O3zp8KqTRJH2v+Fq6HI1dDm5uPmZBqK/u/5Se/+lcs5L7f3pbM5oEZCJZTKxzGgR\nMJ3NEQRY6TRRhQhViFjpfNZ0ZFZM/tNf/pCepdGzNP7TX/4Qs2KSpjnD0Rij8xCj85DhaEya5lQq\nOkLqE3gLAm+BkPpUKjqWbYOsIZEjkYOsYdk273/0MV5mICrF8DKD9z/6mKcvjjDMNmqpjFoqY5ht\nnr444v7BPovxNQkCCQKL8TX3D/bZ2tjAti2STCDJBGzbYmtjg/5wSJrL5JlInomkuUx/OGRhLZAk\njWqtQbXWQJI0FlYRJJqNOovhJXEcE8cxi+ElzUad2XzG+cUFmdwkk5ucX1wwnS34j9/9C+zYIEYn\nRseODf7jd/+CSrmMQL5U9hPIqZTL/Po33sWdXBJ6LqHn4k4u+fVvvMtVt4eolAkClyBwEZUyV93e\nrcDQnIVtsbAt5rM5eZ5zdnFNLpaJvDmRNycXy5xdXHNxdUG5trqktZVrq1xcXZCmGbPZGKXcQSl3\nmM3GS9ZFu9Um9C18z8b3bELfot1q02o22FtvUDOgZsDeeoNWs8FwNCKOfQRJRpBk4thnOBrx0w8f\nYzbWELIMIcswG2v89MPHpGnKRbfPwo1ZuDEX3SJdn6YZx6fXiJUNxMoGx6fXpGnGV956AzW30BQJ\nTZFQc4uvvPUGVdPELKtU602q9WYxN299DvKYslGmbJTJ8xjIOTo552wYYzS2MBpbnA1jjk7OAYq+\ngdo6QRASBCFaregb+GIevbC07325gchzGE7my5LWcDL/QsOdO/xycBf07/ClQ2HRubOsn+/s7jCb\nz5lMZ9xMgmXj180kYDKdvXI9z3MuuwNObmac3My47A5uH2ACs4XP3AmYOwGzhU+eC+zv7vD+3/6Y\nj59f8vHzS97/2x9z/6DgMj/+5CmCarKY9llM+wiqyeNPnuJ6PrX2JqQRpBG19iau5/Otd7/OtH9G\nkkKSwrR/xrfe/TpmpcJiOmK+sJkvbBbTEWalwmQ6IwWSNCdJc1IKk58gDHGt3pI37lo9gjCkXjOR\nhYQsKYYsJNRrJp++OKLSWEOWQJag0ljj0xdHGKUKOQq5IBYDpVjLRYJEQDXqqEadIBHI8+KxcHp+\nQWPtgNSfkfozGmsHnJ5f4HoBtfY2vjvFd6fU2tvYjsv7Hz1G0kxUvYKqV5A0k/c/egwI5IKw5NHn\nt01kkizSajWRxBxJzIu5LHJ6foGg11B0E0U3EfQap+cXmBWzqK3PXMYzl+ubG8yKyWDYJ0199HID\nvdwgTf3bbnwBSVHJspwsy5EUFRCYzqZUmxvEvk3s21SbBT0OoGyU8N05qtFANRr47nzpwIcoUCoZ\nlEpGwW8EdF0n8P2lhXLg++i6TpJmjOc+iaCTCHoxTzMurm7w/JhM1MhEDc+Pub655tMXR+j1dQRS\nBFL0+jqfvjii1WzSrOiYJRmzJNOs6LSaTeq1Gp32ClVDpWqodNor1G8ZHC1TYza8ZDa8pGVqNBuF\nyqJcMhFu/+SSuVReNCsVJqM+C8tlYblMRn3MSuWVZbNXbcob9SppaC0lo9PQolGv/sKeG3f4h+Eu\n6N/hS4c8z7m6GTJ2M8ZuxtXNkDzPmc3niIq+lHkVFf22G3+OIGv0e336vT6CXNieZhk8P75mZKWM\nrJTnx9cUfjbFacj3PHzPW56GXhyfcTa0EavbiNVtzoY2nz4/AcB2bDw/wPF8HM/H8wNsx8aslFGE\nDE3T0DQNRcgwK8XJ9LU3vkJJCCgJAa+98RWuuj2yLMdyXDJBJhPkYp7lNOpVYs9CVnRkRSf2igfm\ng3v7xEG4DFBxEPLg3j7XN33qnU1KSkZJyah3Nrm+6eO6LlmSEEcpcZSSJQmu61I1y8hisKxvy2JQ\neN4LUDFKuPMh7nxIxSgtyyC6riFJIs31+zTX7yNJIrqusbG2RuTPiZOEOEmI/Dnbm2u0my1i3yHN\nMtIsI/Yd2s0WtuOQ5iKipCBKCmkuYjsOjuujV5poqoamvnTH88myHN/1lk2HvusVDWLXXVJBQis3\n0cpNUkHi8rpLrVpDQCT0LELPQkCkVq2xs7nFqH+5ZCaM+pfsbG4VWv32Z9fv2nNazUKP4dnREa2N\nQ/LYIY8dWhuHPDs6YjpbYHlZ0Z3fWMXyMqazBXkmImk19EobvdJG0mrkmYhtu0ShV3T/izJR6GHb\nBa0RpUwUx0RxDEqZ0filO16yLEW9FB46Pb9g594hW6tNtlab7NwrdBca9SprTZ2KLlHRJdaaOo16\nlUa9Tr/XQzYayEaDfq9Ho15ne3ODwB7guC6O6xLYA7Y3C5OgvZ1tIs9CECUEUSLyLPZ2CjOez6Pa\nvSq9L4oi77x9iOwPkP0B77x9iCjehZgvG+6+kTv8QvDz1OJfBms7UrAjZRms67Uq3etLxlbE2Iro\nXl9Sr1WpVU0ef/wxAxsGNjz++GNqVZPzy0sko7E0PZGMBueXl7zUjo+iiCiKbrXjc/7qh39DdfWQ\nSrlMpVymunrId//ihwCsdtYYjYbo1S306haj0ZDVzho7WxvIeOiaWtRY8djZ2sCyb4NPa4VaawUB\nsTCZOT2jUl/Dd21816ZSX+P49IzVlVVkzcCedLEnXWTNYHVlFUVSqLbWKTfWKDfWqLbWUSQFyEgC\nH8dxcRyXJPCBjIPdfboXL7AcC8ux6F684GB3H7NSwbPnJGlMksZ49hyzUqFqlhkPLknQSNAYDy6p\nmoWL2Vuvvw6xuyxRELu89frr1KoVksBClmRkSSYJig3KG689QBZi4mBBHCyQhZg3XnuA47okSUoY\nOISBQ5KkOK5LluZYiwVJJpJkItZiQZbmGEYhL2tPetiTHmnsYRglBsMRWrlDFHpEoYdW7jAYjjh8\ncI808pf2s2nkc/jgHu8/foxhNgicEYEzwjAbvP/4MXme4jvjpVa/74zJ80KcQNdKBO4cw2xjmG0C\nd46ulbDsBe3OCmnokIYO7c4Klr3gk2efImnlZQpc0sp88uzTgvkAy9ICFGyIkq7jeVbRhCmpeJ6F\nphm8/vAhvtXD8zw8z8O3erz+8OGtXe2IIBEIEoH+sLDEbdRrxKFHEvkkkU8cFrTP0/MLtvYPMTQR\nQxPZ2i82CfcP9qmpOWLqIqYuNTXn/kHRyGfZNt/51rvU1ICaGvCdb71blKG+AK9ixVxdXtFY36Wx\nvlvMv0D2+g6/HNwF/Tv8k+PnpeBdXF2ysrmDKiaoYsLK5g4XV5eAgCDI5FlMnsUIggwIzOY2il5f\nrit6ndncBnLSOFx21qdxSHHKF7C9hCjJiJIM20vIc4GVTpss8pbmOVnksbpSWJoOx0MevvYIRQhQ\nhICHrz1iOB4iSRKPXn9IMj8hmZ/w6PWHheb7+gbX1+dcd2+KcX3O5voGmqbR6/Vu2+9ker0emqYV\nNdPIodJco9JcI40KCtbcstA0jdh3iH0HTdOYWxbrq+ucnT4nU+pkSp2z0+esr65zdHaMatQK4588\nRTVqHJ0dc9Pvo+jNZXBS9CY3/T7zhUNCCddzcT2XhBLzReGw1qhXqZsKdv8Iu39E3VRo1Kt0ez22\ntg8wNAFDE9jaPuDyusfu9iZr7Qq6lKFLGWvtCrvbm5DnpLG3pLWlsQd5Tm/QYzGbLOvni9mE3qCH\nUSoRRT5xFBFHEVHkY5RKdNptpqMucSoSpyLTUZdOu00QBpiGjlqqoJYqmIZOEAZAoXxnVDsY1Q7i\nrZ3tYDghRVuWTFI0BsOice1gbxshdZdMACF1OdjbZnd7m+7lETfDCTfDCd3LI3a3t/GDAGd6Q+BM\nCJwJzvQGPwioVevkooogygiiTC6q1Kp1JElAVyQCe0JgT9AVCUkUEASRsmEyHVwwHVxQNgqd/Xqt\nxnA4Yjj3ijEcUa/VmM7mWF5EnObEaY7lRUxnRQ19MJ4RhClBmDIYF+JM88WCb777DjsrBjsrBt98\n9x3mi6J3o16rMRwMWNvcZW1zl+FgsOy6/7zN+qtq/a+SvX7V/7nDLwd3Qf8O/+T4Igre5z0MatUq\naeQum5HSyKVWrd76dW/QqZfp1MtsbG4wXyyw7AWdlQ7NaplmtUxnpYNlL9jZ2uT0+BkzN2Tmhpwe\nP2Nna7NwHFP1ZYe2rOosLIt/8we/SynuI+UBUh5Qivv8yX/9+wBsrK2ThPZS9S8JbTbW1qlVTY6P\nj6h0Dqh0Dji+tbedzRdYzme1Xsvxmc0X9AZD4ij8jL8fhfQGQyazKe3OJkLmI2Q+7c5msdZqMrh8\ntrT0HVw+o91q8sHjj9k9/DqKnKPIObuHX+eDxx8zmc5QjBqyYiArBopRYzKdYTsuURyjldto5TZR\nHGM7Ltc3PfxURlLLSGoZP5W5vinoa2maMhmNMdcOMNcOmIzGpGmKWaniej66UUU3innVLGRcyyUD\nRYxQxIhyyaBeq1OtmnQ6a4TOiNAZ0emsUa0WLIBMlJdKepkoc3p+yWg8RlFNzNYWZmsLRTVvU+AU\n2gaShChJpFly+xsSSOUK/ryPP++TyhXyXODwwT1if4Y76+LOusT+jMMH97ju9ZEUg+raPapr95AU\ng+tecTJvNhpsrXcIrS6h1WVrvUOz0SDPb3UFwhQ/TFnMbfI8o1Gv4zvTZfbBd6Y06nU8P4A8Q1ZL\nyGoJ8gzPD1hf6eB7/melC89npdPh7OKS68EEQasjaHWuBxPOLi6ZzS1ktYxt2diWjayWmc0tLq+7\nRLmGWqqhlmpEucbldZd6zWTQu2LhZSy8jEHvinrNLOR+BxNkvY6s1+kOJssmO0GATssk8S0S36LT\nMhGEV2/W/z457FqtSq1WXZaJft5N/x3+afELD/qHh4fK4eHh/3F4ePj9w8PDHx8eHv7rw8PD+4eH\nh399u/a/HR4eCrev/e8ODw//9vDw8G8ODw//q1/0td7hnxYv+cFPjm54cnSz5AffP9inWQJFDFHE\nkGYJ7h/s3/p1u5QrFcqVClnk0qjX2NvZJnZH6KUSeqlE7I7Y29nm4uqGzsZ9dDlHl3M6G/e5uLpB\nEHLKusJics1ick1ZVxCE/FZT/I9p5ee08nP+7E//eKkpfrC3RbOUYI2vscbXNEsJB3tbnF9eo1c7\nSx61Xu1wfnnNR0+eUKqvoeklNL1Eqb7GR0+ecHRyilKqL1PRSqnO0ckpBzt7RGG41HCPwpCDnT2e\nHx1TqjSXry9VmsVaqcRsNsWaj7HmY2azKaVSiXqtiWPNSHOBNBdwrBn1WpM8hySXl418SS6T5+A4\nDq49XwoVufYcxylO+h9+/BSttY8k6UiSjtba58OPn1KvVSkpLFXiSgo0GzUW1ow0i0FQQFBIs5iF\nNeONhw+J/MWSdhj5C954+JA8B0lWqbS3qbS3kWSVPIfpzEI26kT+gshfIBt1pjOL0XhMZ2UXIfUQ\nUo/Oyi6j8RjXtfAXfUr1TUr1TfxFH9e12N5cRxcTxNs/XUzY3lzHth0krby0DJa0Mvatf7xZMZlN\nplRa21Ra28wmU8yKyeNPnmG0tpcUTKO1zeNPnuH7PtXWLqpeRtXLVFu7+L6P4y6QRIk0dElDF0mU\ncNwF3ZsBolZBuR2iVqE3GPHk6VPCRFiqQYaJwJOnT5nN59yMZqBVQatyM5otT8+I4rJExW3tfL6w\nWVndIAltkrCYzxf2bZlggh+L+LFIf/j/lZjOsxzbtrBti/xWVOeLNus/j7FOwaIxWMwXLOYLRNW4\nU+r7JeKXcdL/b4DR8+fPfxP4feB/Bf4X4H+4XROAPzo8PFwD/nvg28DvAf/z4eGh+ku43jv8/8Sr\nXO3GkykfPOsyj0rMoxIfPOsynkwRRZHf+hdv0ymFdEohv/Uv3kYUxVf6dbdbLb56uE1dcakrLl89\n3KbdamE7Ns1Wk/XVVdZXV2m2mthOIZBzfnpMIpokosn56TE7W1tkWcaPfvqMR9/4bR5947f50U+f\nkRWdf4VugOWTZRlZlrGwfPK8qIciKp81ZokKlm1TKhmEQYjvu/i+SxiElEoGrWaLLEsQRRVRVMmy\nhFazRa1WQcpsQtcidC2kzC7WJJlKawdJFJBEoZhLMqudJr3zJ0h6C0lv0Tt/wmqnie04hFFImkSk\nSUQYhdiOQxB4aKpA5C2IvAWaKhAEHrquMZsOCXyPwPeYTYfoeuE4N5lOSZIMWSsja2WSJGMynd5+\nHvlSGe9l8JjNbSZWsKTCTayA2dxmblnkWUYUBURRQJ5lzC0LQRBR1ILHL4rFXBBEFEXCGl0gaVUk\nrYo1ukBRJFZX2sT+jGpjhWpjhdifsbrSxvNjNLODohsouoFmdvD8mIXlIepVkGSQZES9ysLyUBSZ\nwB6SZzl5lhPYQxRFBuDp8xeIRmf5PYtGh6fPX5Dn4PnJUvTI8xMHnKEzAAAgAElEQVTyHEqlErpR\nRiuZaCUT3ShTKpXY39kjS0Ne6u1macj+zh7Pj08QROmzEpUocXx6ih+EKHoT35nhO7NiHoTF70uQ\nyLOUPEtBkLBsm+3NTUJniu04xXfuTNne3CxS+ZZPtblCtbnC/PZ3Ol8sWN/YIPSmhN6U9Y2NZXo/\ny3KenVwRCCaBYPLs5DM1vVfpZXweBEFgf3uVce+Uce+U/e3VpbLf9c0QN5FxE5nr28bcO/xy8MsI\n+v8n8D/9zPvHwDvPnz///u3a/w38DvAu8MPnz5/Hz58/t4Bj4NEv+mLv8I+Dz3O1O7+8RK20licJ\ntdLi/PKy4F5fDWivH9BeP+DsarBMK36eX/fL9c1Ohc1OZbn+6M3X8WeXpFlOmuX4s0sevfk6F1dd\nWmvbS1W81to2F1ddTs7OUSptXNfHdX2USpsXx+cAfPTkU3K9Sa29Sa29Sa43+ejJp2yur3N1/gJB\nriDIFa7OX7C5vs6Dg30Ce4hm1NGMOoE95MHBPtsb6yRxQJKExYgDtjfWsWyLNAPPGuJZQ9IMLNvi\nnUdvMb15hqhWENUK05tnvPPoLZ58+pz1/UeE7pjQHbO+/4gnnz7nxfExoqAgqQaSaiAKCi+Oj9nf\n3SW0J5AnkCeE9oT93V0m0ylmYw3DbGCYDczG2jKwN+p13FkXZ97HmfdxZ91buWILUVGXJ31RUZnN\nLQajCbq5xkttWN1cYzCa8OzoGC9RCKOEMErwEoVnR8dESQR5Qhy6xKELeUKURHh+CIqOb0/w7Qko\nOp4fsrezzVrbILL6RFaftbbB3s52oXFvVJHIkMgo3RriHJ2c4ocg6yaybuKHcHRyytb6KpIk4ls9\nfKuHJIlsra8CMBoNibOUUqVBqdIgzlJGoyE7WxtI6ZTId4h8BymdsrO1wVfeeoPAGpClhdVvYA34\nyltv8ODePhVDIfEmJN6EiqHw4N4+9XoVbz7Es6fFmA+pVyusr63jWX0UrYqiVfGsPutr69SqVUxD\nQ1cEdEXANLRCUjnPCINoyYgIg4g8zxCEnHpVRxVSVCGlXtWLtVqV3s01qtFENZr0bq5vFf/g/PIK\nxWjhuTaea6MYLc5vm/A+j5r36ns84/s/fkKkrBApK3z/x09uN80CCNLPSP5L/Kw40B1+sfiFB/3n\nz5+7z58/dw4PD02KDcD/+F9chw3UgCqw+Jz1O/yK4VWudrVqjTTyl/XqNPKpVWs/d1qx0Ajv4cYK\nbqxwelnUDNutFg93VkjsaxL7moc7K7RbLRaWheMFGGYLw2zheAELqzjJ9IdTXpxe8uL0kv7wsz4D\nx7WJkown7/2AJ+/9gCjJcFwbx3V48423IRxDOObNN97GcR38wOcrj76KFIyQghFfefRV/MBnOp8i\nZHnRbR75CFnOdD5lvnCwvZDaxhvUNt7A9kLmC4fr3g2aXiaLQ7I4RNPLxZpqYDseemUVvbKK7Xho\nqkGSJOjVzzZSerVFkiTUq3VKRgVVVlFllZJRoV6tI4oSjUaHLHbJYpdGo4MoSgAc7O2QpjFR4BAF\nDmkac7C3Q5blDIYTwgTCpGiMy7KMsqEROiPiJCVOUkJnRNnQGI5GRclA0kHScRyH4WjE195+m9Cd\nLa81dGd87e23GQyHlIw6WRqRpRElo85gOCwEmpKEKLCJAps8SWjU6+xubxJaN8tTcmjdsLu9yen5\nGVEUICllJKVMFAWcnp/x7W9+A5kcWVKKQc63v/kNADqdDmnoMbw+YXh9Qhp6dDodWs06uxstlHSB\nki7Y3WjRatapVU3KhkYaWaSRRdnQqFVN6rUKYhYQuDMCd4aYBdRrFQ72dhFEUI0aqlFDEGFnewdZ\nFigbOnnqkaceZUNHlgUO9nbYaulLyeOtls7B3g7Pjo5prO2jSqBK0Fjb59nRMc1GnXZNI3InRO6E\ndq3g6QuCyGqnQ0lOKckpq50OgiAu75/pdEwq6KSCznQ6XlJkP4+a9yoUm+YWlm1j2TZKpcXJ2TmC\nAFvrbcpKRlnJ2Fpv/4Psr+/wTwP5l/Gmh4eH28D/9f+y9yaxsmT5ed8vhowxI+fMO09vrlfz0FXd\nTbJJSrRlC4QJGPZKMGAZMGQIBgRoqYUBL7zRwgsD3skGTBiQBEpa0DJpSRTZ3Ry6q6u63lSvX71X\nb7hz3pwjM+bZi8jKbppV3Wqx1dUG73cRQLzzEpmRGXHO/5z/+f7fB/yvjx8//sc3b978hz/y3zXA\nBhaA9SPtFvATN4K6XesnveQS/Hx/p8lsRKPdWdXs5rmGIGZ87b1XWQQfMnZKpvVWT+Zr773KZGoj\nemAvzW4ajRpNE7qdz7/m4WiCm4CkVQFwEx+EBEGAVrfNul8SvlrdNoKYsruzzgfPXqAvS9OCucPu\nzjoH++v8n//3v0BtXCnf9+E9fuvX/nO6XYu337jN//Yv/nc2bn4DgDvf+zb/7W/+NxiGwePBEQdX\n9gGQioCD/R3yPOc7n7xPq1uuIANvzGuvvMdH9+4jqxUqulFefBEjCCmT2QSrs0uSRgBYnV0mswlh\nGKM3dlazYklZJwxPMIwK3vyculauvLz5EMPY49233+D3vj9BqnYASLwJ7779Bl7ocO3GTU5PSlnU\n7Z2beKHDb/3NX+eP/+E/w+iWevvjs0f81t/6L+h2LfwwoNXaIEzLLY6aWcUPAzpijixLREsPXlWW\nmC9cbt+6yu9/95sIYulNX4QOt2+9zafPD0nTFEMutw38NCUvYGeri1VzSaOyPMyq1dnZ6jIab/Fn\nT/q0N18un5/zh7xxY4upPcZ2fQqlXKHars/UHvPSzQP+8f9zD6VW/qaRN+Olm7/K9+89QE6rpEkA\ngKxWUbU5ru9Sbzbw4/J7GdUGru/S7Vq8984r/Pb/9X+g1NYBGJ2/4L2/8w3abQvLqlKrl+V3llWl\n3bYQJajVm7hB2V7VTUSpJBx6XkStU5bFeYszsjzF90OanW2SfFnm1tlGlgU2Wz0aZyquX/aFqtVh\nc6POzRs7fOfuIzaXmQhDCbl5Y4dnhy94/9kJ83kpHywQs/naDjeu7/Cndx4hLvvCYjHhxvW3mc7m\nvKpXOTktCYs72+u0TIFux+Jgf5PvPhoTZXF5PytwsL9Ju20h+QLtVtnviqKgYRRf2A/H0ypPLyZU\n9PL+OM6CW9ttbt7Y5fHzU1rN8jfNEpebV3b/nSx2L8fznz1+7kH/5s2ba8C/Bv7u48eP/2jZfOfm\nzZu/+vjx428B/ynwb4HvAf/TzZs3VUADXgI+/knvPxr9+PrSS5Qd6ef5OxW5hD2dIaulslkaBWzW\nmozHLjXTwvXKdHLNbDEeuxSFxN27D1CsMnAdHp7yq1999Quv+emzU7xQRViWaRVF2ZbnBR/cO8aN\ny8FlYr+gKmeIQoUb+5scnp4BcGN/C1Go8M0//oBaaxfbLq+n0drlzv1PqMgGv/1PfpeDl3+VICgH\n2YOXf5Xf/ie/y3/3t/8WlSIhCssAoqkZFBKzmUNFEhDlkggopQKzmYehm6iavBRfAVUzMfSULC1w\n7CFabQMAx+6TdSSKoiB0RlTUcoKSRB6FWfDp0xfo1S7u7BwAvdrm06cveOet19HvjoiDcsKkSwnb\nmxuYusmLTz+i0Mvg8eLTh3zj5lvcf/gc3WwxOXsCQKvZ4v7D52xt7jIYjAgTqBil9GrozxgMRtQt\nizQTSJLyO0jLVO3p2Yh2b5OJXd6ndm+T07MRi4WLXrtKmpT3R6+tsVg848XRGYZVJ07LbIoiC7w4\nOkMUZTSrTuiXjH3N6iKKHt/53j2Gdo6sl8/R0A75zvfuEQQBjc3b+E5ZdtfYvM0f/9n3URWNIkv4\nbFlZZAmqovH8+SFhmJPEZZALc4Xnzw8ZjRz+6T//PWqdXbKizHZonV3+6T//Pf6zv/kfc3I+wwnL\n9pPzGZ8+PWFuuywcD0Etk5ALZ87cdnn/g3uo9R2Qyvuv1nf4w299l+3tjTL7oLcAiIMpg6HH5vom\n8+ljKmZp8DSfnlE1dnj/g49pdPaxD18sv9sB73/wMaZe5fj5p6vJ2vHzJ5j/0Ut893sfExcWx0fl\n5O7GtT2++72PuXZln7t37hNS0qImox/wa197jdHIYTbz0TSDZcxHUwxmM59ue43xoI+0fPayyKO+\nt8Fo5KxkrstnprThLXIJ1/FQivIzYtejyHuMxy4tq/7nXj8eu/wk/LzHqf+/4qedGH0Ze/r/gDJN\n/z/cvHnzj27evPlHlCn+//HmzZt/RjkR+WePHz8eAP8L8MeUk4B/8Pjx4/hLuN6/svhZ1da2W002\nWipJYJMENhstlXarZPVWdIv9/X329/ep6BbT2Wwpw7tHFi3IogW7e3s/tt632aj/BdZws1FnZs85\nHzvYXobtZZyPHWb2nKsHe2T+mK3NbbY2t8n8MVcP9igK8PxwJUnr+eHqM3RNJYp84iQiTiKiyEfX\nVARBYK3TQsh9hNwvzwUBx3W4ceM2DS2joWXcuHEbx3W4erCPmHlomo6m6YiZx9WDfTRNK/Xn5xO8\n+YTI99A0ja3NdSJ3AoIIgkjkTtjaXKfZbJBEDrKiISsaSeTQbDao1xqoqkkWO2Sxg6qa1GsNyAWi\nVCT0A0I/IEpFyAWePX+OG/hUW1tUW1u4gc+z589X9y6N45XSXboMkla1RhzHGLU2Rq1NHMfULJM8\nL8l8juvhuB4z2yHPYWujRx7ZqzR+HtlsbfTotFt49ohgMSVYTPHsEZ12izRJ0NQKkqwiySqaWiFN\nEkbjCZmokaQJSZqQiRqj8QTP90lCB6PWw6j1SEIHz/fpdeoUqbtyzCtSl16njlxRWTg2omohqhYL\nx0aulFmIqT0nk/SVe2Em6UztOTN7wdCOiFGIURjaUdk2HhOEMe70fFmjHzMcj3G9gCiOV5LEURzj\negFFkePOJ7izi/KYTyiKnPOLPoKg4tp9XLs8P78oFRwfPXmBX5j4hcmjJy/I84KP7n3MxsHrK7Gg\njYPX+ejex0ymNu/fe4InNvHEJu/fe8Jkai8Z9BqBFxB4AaKi/ciWWUGrUWWj22Sj26TVqCIIX1ya\n90UleKIo8Nar12hqMU0t5q1Xr63Mmz5vW+4SXw5+7iv9x48f/z3g733Of/3a57z2HwH/6D/0NV3i\nL+Kzjv3ZLH921P9z9bg/PQRqVXN1/uM/G84uJshauXo6u5hQ329+4TW1Wy02FiFuuEyxVktW//fv\nfkyUCQhi+ZgXmcB84WDP57zz9pt88sljAG69/Sb2fM7O1hbfenAXUS8DQB4u2N99FYC//o2v8wf/\n8+/Qu/pVAE6efJe/+/f/y9JkZDoHqbym4XROUfTY29nlg3/zfYaz8ppEXvArL79Nmub02nX8uFwl\nG+3Sg/3eg4/JigJxqd6WFQWTyYReb432+gHLDDvt9QMkqcLB3jrfvPcRolKmcfPI42DvJqfnZyR5\nTnOtTCvH7pDT87IqQtZbFEuBGiFXuPPxAxwvIBc0Kka5TRAGLo5XpsM1TSeJbEjKayJP0LQ6nu+w\nt73BZFGu3Pe2N3A9n+l0Wqokbt0u79vpD5hOq7z52mv8ycM/wrfL1Z0mp7z52q8zs228xRy9XUq+\nepMTDF3n2tV9Pvg3n2B29gFwxidce+sWx6fnhM4IvVGuhkNnRNER2N3e5nvPTiiW9yD2XXa2drCq\nJsWd7xPMywxARco52Nvn/Q/vL7X1y++cpTGnZwMAet0uDx70UbQyRR2HC3qvdlk4LqKs4y7KQGka\nBgvHxfV80iiiuXmzfCbPH+N6GXEcEIcLwuiH7xNLAXmakWYFSqXcAon8BVkGw+GIOInQ62WmJ1r0\nGS7V92bzBW5crnirSkFRbJDlGePxAKQy6zEeD8i6Kmf9c5JcQFlmKpJc4Kx/TrvVYDyPWPjllkwh\nRkxnczrtNq1mk55d4MflfTaU6spY57Ng/aP4Uc4NsOLctJpNZov+St43izxamxtc4hcLl+I8l/hc\n/LSe9j/pvWStSrPZpNlsImvV1SDx+S5eBUWeYs/n2PM5RV7qkH/RNX22IqkqGVXlz4uFUIAoCuWK\nY5msKAo4H0xQqm2UapvzpVCJKIrsbm5gSjGmFLO7ubHiIXzngztsX38Lb/wCb/yC7etv8Z0P7jCd\nzZk6CRejMRejMVMnYTqbk2UZDz95yunFgNOLAQ8/eUqWZUiSyPUr+6trvX5lH0kSmc4dJMVEMWoo\nRg1JMZnOHQShQJIk0sgjjTwkSUIQCsIoZGvv2kpIaGvvGmEUcnx6iqzXSeKEJE6Q9TrHp6e4vofv\nTIkCnyjw8Z0pru8RRRGyWmPWf86s/xxZrRFFJa/A932kioLV3cHq7iBVFHzfZ3tzm7k9Jc8T8jxh\nbk/Z29nkD//kTzG7V1Zqdmb3Cn/4J38KhYAg6mjVBlq1gSDqUAh8dO8B9bUDRFFCFCXqawd8dO8B\nsizT7KyTuFMSd0qzs44sy7SaTZI8Zz4+YT4+IclzWs0moiAiqyZFkVIUKbJqIgoirutTiCpZlpJl\nKYWo4ro+h8dHCJJClmVkWYYgKRweH60ejjxLVqI3eZZAUWBVDSaDY8K0IEwLJoNjrKqBLEu01g/w\nFwP8xYDW+gGyLLG5vo5EgTc5wpscIVGwub7Oi+NT6p1tqrUO1VqHemeb47NTEEQUo7GS7VWMBggi\n9nyBFybEKcQpeGGCPV+gayreYoqsGsiqgbeYomsqoijS7axD5kDm0O2sI4oieQ6HJyOmPkz98jz/\nbCLZarLZ1jAqBUalYLOt0W41+Wnx40R7LhX5fnFwGfQv8aXhxw0SAJIgIgl//hH9vLrhzzIAbizh\nxj9MNzbqFq2aglwEyEVAq6Ys1ckKzi9GvDju8+K4z/nFaFkSWFCvaitmfb2qra7H9wMoBGqtDWqt\nDSgEfD9gZs/oX4xJ5Qap3KB/MWZmz/hX//abxFKdQrIoJItYqvOv/u03S42AZ5/ix+DHcPjsU3a3\nt0tRlAJ8e4BvDyiKkghVkWX6x4+gYkLFpH/8iIosYxomvjdHr7bQqy18b45pmDTqLTzHQ9CqCFoV\nz/Fo1FvsbG7juHPiNCFOExx3zs7mNvWayez8EdXuDtXuDrPzR9Rr5Yp5vnAwG2srZzazscZ84SAI\nOaoMge8R+B6qzHJPtyBNAvIsI88y0iSgyAu+8+H3UGstjGobo9pGrbX4zoffI88hiuNVuVsUx+T5\nUgI5B7GiIFaUVVsQBIh5htlYw2ysIeYZQRBwfHqMJAmren9JEjg+Peaj+/fI84zO7qt0dl8lzzM+\nun8P3dDKsrnZeXnYQ3SjXHlfDMeYrV3yLCLPIszWbmmSQylqNDh7weDsBYUgAiK3b9zAnZ6jW2vo\n1hru9JzbN27wS+++i1jEaEYDzWggFjG/9O677Gyto1Uk/Hkff95Hq0hsbfTodtoUWUSlolCpKBRZ\nRLfTZr5wiFMB02pjWm3itMxWzew5GzvXSbwZiTdjY+c6M3vOL733FYSgj2nomIaOEPT5pfe+wnxR\nbo95no/n+cv7+0Mmfp7n9C8u6F9crLQpvgitZpM0dDg6OeXo5JQ0dP5CZuD/W11zqcj3i4PLoH+J\nz8WP99L+2b3X5+/1lSl5q2Zh1axlev6LLT0n0yn9iYefVvDTCv2Jx2Q65WBvF01KCRYjgsUITUo5\n2NsteQNOQJBKBKnEzAmYzmbULIuP7t5nsoiZLGI+unufeq1Mn9+6cZXp+SNERUdUdKbnj7h14yoL\nx0PWrVWgk3WLheOVe72RQC4q5KJCEAkMx2OeHx4z9xNmTsDMCZj7Cc8PjzF1lcgdYzQ2MBobRO4Y\nU1f58M499NoGoigjijJ6bYMP79yjKHKSOKFAokAqz4uc6WwCYrFy5UMsmM4mTKZTjGoTkQKRAqPa\nZDKdEicZjbUDosWQaDGksXZAnJQp4M2NddLQQ9MNNN0gDT02N9aZ2Q5jJ8SeL7DnC8ZOyGRqs72x\njjc+omI0qBgNvPER2xvr5DkkSbFyu0uSgjyHmlXFmZwi601kvYkzOaVmVZkvHFxnjmr1UK0erjNf\nBTq12kGv1tGrddRqp2xTNXzXIYkjkjjCdx1UVWMyXWC0dlaaCEZrh8l0wZuvvEyWeFR0i4pukSUe\nb75SVgrkeUbs2yvN/Ni3yfOM2cxmOHGoWJtUrE2GE4fZzGYwHqGZJkpFQKkIaKbJYDzC8T1a7TWK\nNKRIQ1rtNRzf4+//93+bweEdJNVCUi0Gh3f4O//1f0WjXqVhCLjj57jj5zQMoSz7EwXW1tZI/CGJ\nP2RtbQ1RFNjf2WU2vlj91rPxBfs7u3Q7bd599QA1HaGmI9599aCcUBQwdz3CKCCMAuaut5o0j8ZT\n/vD9J5xO4XQKf/j+E0bj6Rf259IFc4wXgxfDyfn4xwbxn2XW8BJ/eVwG/Ut8Ln7SKvxn9V6fl/b7\norreFcEvsMkCe0Xwm9nzvzCozOw5RVHgeuFKUMf1SmKePXfwE4mkqJAUFfxEwp473Pv4B+SyRSIo\nJIJCLlt8/+4PAKhUFK5cf4lkcUayOOPK9ZeoVBRqlkWRpUiSiCSJFFlKzbJQFZXAc4ijiDiKCDwH\nVVH58M5dpn6O2drFbO0y9XM+vHMXSVQxGptLAlWB0dhEEtUyldvYoKJqVFQNvbGBPS+FcCp6HWfW\nx5n1qeh1BqMJRSGQxtFKRCaNI4pCIIgCtIqKLEvIsoRWUQmiANPQUCuVVcZArVQwl6vena011poK\n3uQ53uQ5a02Fna01jk/PGM9car3r1HrXGc9cXhyd8ujTp9Q3b+PPTvFnp9Q3b/Po06e0mk3i0Cdf\n/sWhT6vZZDieUG3v4owOcUaHVNu7DMcTXhwdUW2sQ55AnlBtrPPi6AjT1DFMiyINKNIAw7QwTR1d\nN5BkGdWooxp1JFlG1w2u7u8TurPVBCh0Z1zd32fhurTWr1CRK1TkCq31KyyW0sN5nhO609UENXSn\n5HnOBx/dBbVKmsSkSQxqlQ8+uksUxezsXiV2LoidC3Z2rxJFMWf9Pgs3wGptY7W2WbgBZ/0+v/v7\n3+T26+8hZwvkbMHt19/jX//Rt9ja2MSejqm1dqi1drCnY7Y2Nnnt5VsEs2PqzR71Zm8pMHULL3BQ\npHRFdlWkFC9wmM5sKnqd/b199vf2qeilOQ/kZGlInqbkaUqWhkC5or/74AH9WcTML5j5Bf1ZxN0H\nD76wfz57cYhidZFFGVmUUawuz14c/nuNDZf4+eMy6F/iC/GzZNx+Udrv6eE5xwOH44HD08NziqKg\n1WySL13miqIgj92l6QmcnI8Y2iFDO+TkfERRlMpxWRzCUuYni0OajQYPfvCI9d1b1EyDmmmwvnuL\nBz94tLqmOPSJQ3/17/5gRJgrRHFOFOeEubIyn6nXahiajGFWy0OTqddqNBsWnVpl5b/eqVVoNqxl\nujtZafKXroACh8enKFqDKPCIAg9Fa3B4fMp4NkWSK6sVpiRXGM+mXLtywGLwlMCdE7hzFoOnXLty\nQJYl2KOzVeC1R2dkWYKilN7tFc2iolnEkY+iyLx88yZxOENSNCRFIw5nvHzzJlf298mDEXkalkcw\n4sr+PgCvvXyb2LORJRFZEok9m9devs3J+RnN7i6iWCCKBc3uLofHp1RNk8Sbr0x9Em9O1TSJk4hW\nq07m22S+TatVJ04i8jwjdKcrhnsZYDPWe2uEgU+aRKRJRBj4rPfW+Pq771D4p6iKgqooFP4pX3/3\nHZIkotnZIFxcEC4uaHY2SJKITqdOGk6RVR1Z1UnDKZ1OHUEApaKiGxa6YaFU1JVYTJpmmK1t0tAl\nDd3yPM3ww5AkcFfXmgQufhjym3/jN/j0/p+QCBqJoPHp/T/hN//Gb3DWv6Ci6WR5QpYnVDSds/4F\ng+EIrdqh2erSbHXRqh2GoymPnz5j+9obaGoFTa2wfe0NHj99hiTJfP0rr2MJNpZg8/WvvI4kyQiC\ngFmtY2gqhqZiVusIgsB0ZjOZhyRoJGhM5iHTmY0giNTrLSqSQEUSqNdbK3GeheNiuwFxXiHOK9hu\nwMJxvzAtXxQwGE6ZOAkTJ2EwnP65rbZ/V1e+S3w5uAz6l/jSSDZflJYvrwmKIl8e5evzPOPh46cM\nFgWDRcHDx0/J8+yHRCQ5w5CzFRHJqlrYswlxLhDnAvZsglW1qNeqBO6E+XzGfD4jcCfUa1U0VWU6\nvkDUaohajen4AkMr2dFV0+Dk+JCK2aNi9jg5PqRqGjQbDfIsQiJFIiXPopVUqSgrK9MYUS5rl3e2\ntplPz1dlZ/PpOTtb25i6ijM5JU8T8jTBmZxi6iqGri1r7gVAIA4WGLpGFEXUurukwZw0mFPr7hJF\nEYPhGKO+UbLFwwVGfYPBcEyr2WRzvYcipChCyuZ6j1azSb1WlrAFdp/A7iNXVOq1smri8PgMzWpT\nXR6a1ebw+IxXbr2EmHmQRpBGiJnHm6+9zLtvv0noDUAoQCgIvQHvvv0mr7/8Mu5kQBR6RKGHOxnw\n+ssvlxyANEKQZQRZJk0jiryg22kRuQMESUGQFCJ3QLfT4vrVA964dQCL57B4zhu3Drh+9YDd7W0m\n559SbW1TbZXnu9vbxHFMo70NWQRZRKNdtu1sbeHNzghDlzB08WZn7GyVFQGWVaNIIhSzgWI2KJII\ny6px/coVBEHGd8b4zhhBkLl+5Qr3Hz6iEBXmw2Pmw2MKUeH+w0dsb2yUfgxLv4E4Sdje2ODXf+U9\nnjz4LrabYrspTx58l1/+6rtlVsH3yQWJXJAIfX/VF0VRpNfr0ev1VsTSrY1tDENHVRVUVcEwdLY2\ntktjndGYjz/+mI8//piLUZl6r9fqpTSyYaIZJhT56j5XzRqSWCEKXaLQRRIrVM3asszPZLFwWCwc\nRKVMyzfqNS4GfS7GdnkM+jTqtX8vV75L/PxxGfT/iuPLJNl8UVr+i9j+h8enVMw2cRQSRyEVs83h\n8elyUNlkp2ey0zO5uldq7+/vbhHYfeb2lLk9JbD77O9uLZkOmKMAACAASURBVElyHvP5nPl8juOU\n+5tRFNJoNBk+/5Dh8w9pNJoES8Gfj+49YG37NvbFY+yLx6xt3+ajew/K76AYeH6A5wdIirHcWsjJ\n8wxZMZAVgzzPlhOYjCSKCJwpgTMliSKKIqPRaCKI0sr5TxAlGo0mZ/0+7Z1XEIoYoYhp77zCWb9P\nt9NByENUXUfVdYQ8pNvpkKY5kTfHqG9i1DeJvDlpmiOKAt1OAyEPl69tIIoCZ/0zEBXqa1eor10B\nUSnbgCdPn1Eo9ZVne6HUefL0GX/tG19DSccrLQAlHfOf/MYvo2kqmzvXSbwJiTdhc+c6mqaSZRkz\ne0wU+kShz8wuLXqTJMGsdVbue2atQ5Ik2HOb9toek9OPmZx+THttD3tuIwiw1qmzu3fA7t4Ba8tV\n+2gypd7ZJHInRO6EemeT0WSKpppkWY5qNFGNJlmWo6kmkiSgKhLhfEg4H6IqEpJUBqGqqZCnLlkS\nkCUBeepSNRU21ntQpKusAUXKxnqPb3/nfQSlytqVN1m78iaCUuXb33kfwzBIwzlpkpRHOMcwDI6O\nz5EVbWW4IysaJ2fnrPd6DM6eEoQRQRgxOHvKeq9HUeRcDMeEWYUwq3AxHFNa+tZoVSvIkoAsCbSq\nFZqNGlmW8cmnnxJgEmDyyaeflhUKgkCjZqykjRs1YxV4G3UTXckgiyGL0ZWMRt2kKOC0P8ZLRLxE\n5LQ/piiW/VZWsWcT7NkESVZX/fankc++xJeDy6D/VxxfJsmm2WiQRsHK1jWNgtUquSgK7JmNPbNX\nk5CiANdLVgQs10tWWYDPG1TsuUO7t44mZWhSRru3jj0vWcd+ImM2dzCbO/iJzNHJKVf29xn3D2lu\n3aa5dZtx/5AbV/cB0DSFs+NPaKzfpLF+k7PjT9A0helszrOjIancIpVbPDsaMp3NCcKIIstQ9AaK\n3qDIMoIw4vD4BFkzEUQRQRSRNXNpblJHFEWUiopSKUuvmo06pmGSJQFGYxOjsUmWBJiGyc7WBmYl\nXfEbzEppGzsYDigEAd/u49t9CkFgMBxgGgYPHj4il+rkUp0HDx9hGgaj8RRBMUginyTyERRjReJS\nFZWTw2cEMQQxnBw+Q1VUDo9PeOvNt6jJATU54K033+LZixPWul2SwKXaXKPaXCMJXNa6XX7/D76J\n1T3AbG5iNjexugf8/h98E1XTkSoaklQpj4qGqunUqnUuzl7Q2n6d1vbrXJy9oFatM5kuOB+H1Do7\n1Do7nI9DJtOy6qEkNH62wSNRFBBGHkUWkcUuWexSZBFh5JHnkCGj19vo9TYZ8qp8rdvpouvV1ZaG\nrlfpdrocHR9hWRaqJKNKMpZlcXR8hCgIaNbayvpYs9YQBYHxZIwoKQgUCBSIksJ4Mua7379Lb+c2\niqqiqCq9nXLy2B9cYNR7BN6MwJth1Hv0BxfM7AWSYuG6c1x3jqRYzOxF2T8WixXHwF6UbY+efIrR\n2FwRPI3GJo+efEpR5MzsOUa1gVFtrCamUG5dFWmIIksoskSRhtRrtfLXLLJl1g0oMqAoRa+GM/T6\nJnp9k/PhjJk9/8J+e4lfLFwG/Ut8aWg1G+TxD+U4y737Bs1GgxfPX/D0ZMTTkxEvnr+g2Wgsfdzj\nlWqdXolXTmGfh/liQUWpUlGN8lCqzBcLBsMJqtUBMiBDtToMhhMuhmPWdm+hKjKqIrO2e4uz/hAo\nVeiMagt7coo9OcWotrCqNc7650S5yOD8mMH5MVEuctY/BwQUo75ywVOMOiAwn7sIgoBu9dCtHoJQ\ntl0MB2i6hdXdw+ruoekWF8OydM+dDQi9OaE3x52VbY16A0NTUSsCakXA0NSyzdDJknhlrZslMYah\n8+0//TOMxhZ5kZMXOUZji2//6Z+hqjrObLhazTuzIepSLvn50TFBFK/S4EEU8/zomJk953S0oLNz\nm87ObU5HCyZTG8d1yfOMNA5I44A8z3BclzgOEeRymyIOFuV5HKJrFRLfJssSsiwh8W10rcL3792l\n1tlbla/VOnt8/95dTs9PqXd6zEanzEbl+en5KbqmYA8P0a0uutUtz7Uy5S2J+Q8ntGKOYeiMJ1PU\nagtJUpAkBbXaYjwpJzoba+vIkrjSDpAlkY21dXTDAEFYGeggCOiGweuvvELilwTKohBI/Amvv/IK\nQRgiK1Uid0zkjpGVKkEY8tK1q/RPn5KLKrmo0j99yrUrV1g4PmGcUe8cUO8cEMYZC6dM8U9teykm\n1GRql8H0+PSMDGXFAclQOD49I8/BD3IyQSUTVPwgJ89LC+hOdx1DETAUgU53vbTtpdzTb3e3MXQF\nQ1dod7dZOOVzur3Zw5RTTDlle7O3VJt0qbXWmFw8Z3LxnFprDcd1l9U1R3iphJdKHB0e/VhXvkt8\nObgM+n/F8WWSbEoXr33WGhprDY29/X1mts1kOmPqpiSoJKhM3ZTJdEazUSeNAvzAxQ/cZWbgi40X\nrarFi6PnjOch43nIi6PnWFWLtV6H0BmSFxJ5IRE6Q9Z6HYLAx6pZK8c5q2bhB6U6nSCALEJF0ako\nOrJYtqVpxkX/jEIyKSSTi/4ZaZqhqTK+O1pZ3PruCE2VCaIIqaKRxj5p7CNVNIIoIo4TBFldpagF\nWSWOE+IkQpAUnMkJzuQEQVKIk4j5YoFiWKiaiaqZKIbFfLHg1vUbQLoq/YOUW9dv4AUhYZKzmA1Z\nzIaESY4XhEBGnhfEoUccekvb47Jk7/jsDEU1VzwDRTU5PjujKAQ8P6Xf79Pv9/H8lKIoGI1H5IgU\naUyRxuSIjMYjrl+9ymJ0glrtola7LEYnXL96lb2dHTRFJPVHpP4ITRHZ29khTlJERV/9RqKiEycp\nm+vr3L/zPvNIYh5J3L/zPpvr68zsOZv7L+GOX+COX7C5/xIze856bwNF/eH7KKrOem8DKEhDl8+8\nXtPQ5TPlJs930LQKopAiCimaVsHzHa7u7TMbniDrdWS9zmx4wtW9fXa2NjAqCUXqU6Q+RiVhZ2uD\neq3OYnqK3txDb+6xmJ5Sr9Wp1S1Sf0q4GBEuRqT+FKuqE4YhhmlCFkJWnodhiCBAs15FFTNUMaNZ\nryIIpeujKCmrlbsoKbieQ9U0iPwZkigiiSKRP6NqGjTqdRpVBU0W0GSBRlWhUf+s7xQUeYKmV9H0\nKkWeAJ8Ran3qjTr1Rp08LqsutjbWOT18TMXaoGJtcHr4mK2N9VV/rioFVaVY9edL/GLhMuj/FceX\nTbIRBIFGs0Gj2Vh97uHxMRWziWkYmIZBxWxyeHzMdGbjx1BRLCqKhR+zLEeCLMv44KM7fPDRHbKl\n+5s9n+MHMZKsIMkKfhBjz+fsbm9RESAJHZLQoSLA7vYWb772Cs8ffo8MlQyV5w+/x3tvvwZAnhfM\nFzOSJCNJMuaLGXlelKtGrY4gyQiSjKrVGU+mRFFKRTZIApckcKnIBlGU0uu2SjvZZXo/8mb0ui00\nTcOZnIMogyjjTM7RNK1M9QtQ6+5S6+4iLpnn84VDEMTEGcQZBEHMfOGQJDG19i55EpAnAbX2LkkS\ns97tMTh8iNbcQmtuMTh8yHq3h+cFIMk/nCRIctkG9Nptsixe6ftnWUyv3aYoMuzpgCgTiTIRezpY\nsbqLPFutuIs8W+4BL9CrTT4jI+rVJjN7wVffeYOqAok7JnHHVBX46jtv8NW332J2+hBR1hFlndnp\nQ7769lvMFy6yVsd3HXzXQdbqzBcu+zu7OPaI1sZ1WhvXcewR+zu7QEGeRsiyiiyr5GkEFGXdehKQ\nRi5p5FIkAd1Oe/lEFuRpilAICIVAnpZqkA8e/YBaZ5fQnRK6U2qdXR48+gGu59HqrCNEM4RoRquz\njut5zOw51dYOkiwhyRLV1g4ze85wPGb/6m2ixTnR4pz9q7eZTGdcPdhBznzy2CWPXeTM5+rBDq1m\nk27DpCLEVISYbsNcBt5NKlJO6IwJnTEVKWdrYxNZFrl6sAvhAMIBVw92l217RIsR88WU+WJKtBhx\n9WAPKNP7WRIgSyBLkCUB9VrtC8cGx/XY2tpDzhzkzGFraw/H9X4+A8Yl/tK4DPqX+NJINqWyl8ts\nNmM2m5GG7pJRXiMJFlwMB1wMByTBgnqtxsnZORWjSbH8qxhNTs7OybKM3/mX3+bMszjzLH7nX36b\nLMu4GA7YvXITKfeRcp/dKze5GA5wXIder03iDUm8Ib1eG8d1OOv3aXQ2cMZHOOMjGp0NjpdWpBfD\nIYVQIUszsjSjECpcDIcIgoCiGauVlaKVBClV1SgEEBUVUVEpBFBVjWsHBwiCgD14hj14hiAIXDs4\nYDAcUdHNMlDmGRXdZDAcEacJutlAEmUkUUY3G8RpQpbljCdTUmRSZMaTKVmW4wcBaTBHlCRESSIN\n5vhBwA+ePKGz+wru6Ah3dERn9xV+8OQJF8MRhtla1cQbZouL4QiAl27eQBYFFM1C0SxkUeClmzeY\nL1wSZJIoLA9k7LnDWreHolo48z7OvI+iWqx1e5ycnSJr1g/Ja5rFydnpcm2dYbZ2MFs7QEYB2Is5\nRq3H6aNvcfroWxi1HvZizvlFH9VsrmrWVbPJ+UUfURKwqiaL2YDFbIBVNRElgYvhgBwJw2piWE1y\nJC6GA6yqhaQoJKFPEvpIioJVLZ3KTL1GkualO55UIUlzTL2G6/mEgUe9t0e9t0cYeLieT57nzKYj\nlGoPpdpjNh2R5zlJHGFWLUQBRAHMqkUSR1y/sk//9DnrV7/K+tWv0j99zsHePm+8+gpWJcXQJAxN\nwqqkvPHqK6stsJVZ0XIL7GBvB12MMaomRtVEF2MO9nbKMktnvOISxM6Y116+XXJ3FG31HEk/Yrgj\niiLXDvZpGNAw4NrB/qpK4PPGBkGAes3A1DVMXaNeM8qMxBeIZ13iFwuXQf8SXypKh7EB5xeDFbHo\nyv4eF2dHJKlAkgpcnB1xZX8Pq2piTwYoWg1Fq2FPygH+o3v3URrbjMcTxuMJSmObj+7d59b164zP\nn4FsgGwwPn/GrevXybKc4+NTrN5VrN5Vjo9PybKc/mBIJujUevvUevtkgs7peRn0XdcjziTiJC6P\nTMJ1PQ729khjB9WwUA2LNHY42NvD832yLF8p9WVZjuf7dDstyEJq7V1q7V3IQrqdFqqqouoN0iQg\nTQJUvYGqlqS+NIlWqnJpEqFUVIbjIRWtymJ6zmJ6TkWrMhwPaTZqBO5ktfccuBOajRqVikrozFYO\ngqEzo1JRWe918Z3xajLjO2PWe10Awiii1emttjtanR5hFOF6HqKkrZz/RElj4bjkRUYQTFH0Fore\nIgim5EWGLEk40xNAAspzWZL47of3CIUGYRCWh9Dgux/eY2YvcO0LelfeoXflHVy7JLRVTZMs9pBl\nGVmWyWKPqmmSZznj6XxVEjiezsmznDCMaLTX8Z0RvjOi0V4nDCMWjkMcpciahaxZxFG62t8ejAeI\nssrk/BmT82eIsspgPMA0dBRVx7WHuPYQRS1lbh3XJS8qeJ6D5znkRQXHdXnztdeZD54hSzKyJDMf\nPOPN116nPxize+U2kXdB5F2we+U2w/GIhePyzjtvs71msb1m8c47b7Nw3GWwNtANHd3QkRSD6WzG\nfOFw48Z11po6a02dGzeuM184lNsUOYpqoqgmpQBPwYujE9xUod7eoN7ewE0VXhydANBq1unWFfY2\ne+xt9ujWFVrN+rJ//sVy3r2dHabDc3SrhW61mA7P2dvZWYpn7ZJ6U1Jvyu7e7mV6/xcQl0H/El8a\nxpMpdx9fYEcqdqRy9/EF48mUF0fHvPHmV1Yrjzfe/Aovjo5pNhpsrrXIoilZNGVzrVXWyecFzw9P\nCHONMNd4fnhCnpd7klVdRRRyRCGnqqu0mk36gyGN3u7KMrbR26U/GJLnAmHgg6iAqBAG/nKPu5Qq\nDb0ZstZA1hqE3ozReIosi+xvbRDZL4jsF+xvbSDLIg8ffUISBwiCiCCIJHHAw0efcHrep9bepqKo\nVBSVWnub0/M+BzvbePY5qtFANRp49jkHO9tQ5MThYpUBiMMFFDm6prGYXmC197DaeyymF+iaBgiI\nskaeJORJgiiXbfWaie9MkVQTSS3P6zWTTqtDELhEwZwomBMELp1WByjthBez4VK4V2QxG6JrKqZh\nEIfeatCPQw+ranIxGJNTIc+z8qDCxWBMo95AQMCdneHOzhAQaNQbfPLkCQvHQTbqyEadhePwyZMn\nPHn6nMbGLTSziWY2aWzc4snT5+zt7NCsygixjRDbNKsyezs73H34kMCbr7YoAm/O3YcPefWllxgc\nP0YxOyhmh8HxY1596SWOTk5A1qhoNSpaDWStbAOCIOT8+FP05jZ6c5vz408JgpD93b1lfX55P31n\nzP7uHouFhxtEKylhN4hYLDwqisjuzhaxc0LsnLC7s0VFEamaBrPpYFVGOJsOMHQDWG5+FMtj2Udm\n9hxZq9KoN2jUG8hadcWUFyWZTrtNp91GlEonyfsPP8Fs760krM32HvcfflK+vyivMgafOU8CtFst\nNjsmvYZCr6Gw2SldKr+onHfhLPj6e++gpmPUdMzX33uHhVNWD5yeDwlzZSlsNbxk8P8C4jLoX+JL\nw4ujY+ZhwcJPWfgp87DgxdFxaVc7mSMqVUSlynAypyhKtn/dVBCzEDELqZtK2VarlQYpRVEeWUS9\nVuP49IQbt27TsyR6lsSNW7c5Pj3BNExcZ05aiKSFiOuUZjWSWKDIBYF9QWBfoMgFUulQij2fI1aM\nH5ZgVQzs+ZztzQ3msz6tziatzibzWZ/tzQ2CMEBWTSp6jYpeQ1ZNgjDA90MK5BXPoEDG90M+uHuv\nDNZL0pwoa3xw9x5xklBRzZW3fEU1iZMEUazQXt8ncsZEzpj2+j6iWMGeL5AVjYpmUtFMZEXDni8Y\njqZUO7u4kzPcyRnVzi7D0ZQHj36AUe2SRRFZFGFUuzx4VEoPO65LHCUksU8S+8RRguO6SJLE5uYG\nRTSniOZsbm4gSRJHJ8eIFYPId4h8B7FicHRyTLPZKFUGJal0CRRlms0G5/0BaeyDIIMgk8Y+5/0B\ncRIjqfpKJVBSdeIkpt2qs9urkfgTEn/Cbq9Gu1VnMp3R23sVsYgRi5je3qtMpjP6wyFGrc1icspi\ncopRa9MfDvH9CEFUV5kKQVTx/dJZ8MM796m2d9DMFprZotre4cM797kYjpBlFUW3UHQLWVa5GI44\nOTsHSV1tFSCpnJydU6/VsSyTbqtLt9XFssyVGE6RpavqgCIrOQM1q8qHd+6SyE0SucmHd+5Ss6pL\ntckA13VxXZcsLstam406Seis2pPQodmoL8ta/RXfwvV8igIO9naxKhEVMaMiZliViIO9XaBM4V/b\n32R3zWJ3zeLa/uZS3e/zy3kb9ToXF+esbx2wvnXAxcU5jXp92W8dwlwmzGWGE4fLmP+Lh8ugf4kv\nDUVRYNtz0lwizSXspV5+o25x0T9iartMbZeL/tHSHS9nMp2hVtuo1TaT6YyiyJEkka++9QpN2aUp\nu3z1rVeQJJGaZXFxfsxg5jOY+VycH1OzLKyqiTsfkSQpSZLizkdYVZPrV6+SxS5plpBmCVns8tKN\nawCl8I5aJU1C0iREUqt4foDjeuzsHiAJCZKQsLN7gON6dNrtkqW/lHOVKhqddps0y1nMLgj8BYG/\nYDG7IM1yhsMpilFb2dUqRo3hcIqmaSAqzEbPmY2eg6igaRpV0yBPIiqqTkXVyZOIqmmgVGSgQDFb\nKGarPK/IFHlG6AzRax30Wlm9UOQZaZYS+DZqtYlabRL4NmmWAnBy1ieXDLy5jTe3ySWDk7PSLz32\nbarVKtVqldi32d/dRJQk3MkpZmsDs7WBOzlFlCQGwwEVWVnpK1RkhcFwQLvVRDXbRN6EyJugmm3a\nrSa//iu/xPToI7ICsgKmRx/x67/yS+R5zrPDU9wgww0ynh2ekuc5v/GNb5C645VbX+qO+Y1vfIPB\ncEQYpytlvzBOGQxH6LpKlnqrKoMs9dB1FSgJoUathyAKCKKAUeuRZRn9wQXNtT2E1EVIXZpre/QH\nFwRhQBoGKyOmNAwIwoB6rUoaeQgVBaGikEYe9Vr5zGzvXqHwhxT+kO3dKwRhwMePPuHaS2+QewNy\nb8C1l97g40ef0Go2SAJnJSSVBA6tZgMoEMjRVAVNVRCWafztzQ2mwxPSXCDNBabDE7Y3N+i0W7x5\na5vNOmzW4c1b23TarVVf/Gl4PaVIUoOKGFMRY9Y6DQShnBhvbG6gywW6XLCxuYE9n/8HGDku8ZfB\nZdC/xJeGRr1B3aoiESERUbfKNKY9X9DrrVORCypyQa+3jj1fcHh8im71MHQdQ9fRrR6Hx6dcPdgn\n86dcuXrAlasHZP6Uqwf7WFWL+w+fcjHxuJh43H/4FKtq0R/0MawOkTcj8mYYVof+oA9FTpQUK2GT\nKClWPINWs4Y/O0XWTGTNxJ+d0mqWGgFFsar+Wq1sapZJYF+sxFMC+4KaZTIcXZCEHqnvkPoOSegx\nHF1gmBpZuPihely4wDA1NFXCm57Q6F6l0b2KNz1BUyUgJ/Qmq6qB0JuUbXGKrFbJIocscpDVKmGc\noqgaRZGv0tNFkaOoGgIiUkWjEHIKIUeqlG0Aw9GY0B3R3LpBc+sGoTtiOBojigLb621MJcdUcrbX\n26WPe7uD1d1bkQWt7h7ddgdBEKioKrpuoesWFVUtFRN3So17RaujaHXS0GV/Z5tf/to7GLrB5MUH\nTF58gKEb/PLX3uHO/YcMnQxr7QbW2g2GTsad+w/567/2/7L3Xk+SXPe95yd9VmZWlm9vp8dggBkM\nSQgk6MW7ZMRq/7l92j9gX/btvqwirq6kSxGERAiGINw4TE93T9vq8llV6e0+ZE8xtMKQAlcb0i77\nG3Eics5Ul8vKPOf8ztf8gHbFJ4/m5NGcdsXnf/rLH5RuizMHzVxCM5eYzxym0ymddpMs8nB6hzi9\nQ7LIK7kWwA+/913c4dHCbMcdHvHD732Xtx7cJxgfY9aWMGtLBONj3npwv9xSkUSyyCOLPJBEKrrO\ndDZHViuoioqqqMhqhelszv3XbzG6fE579Qbt1RuMLp/z2q2bVC0LZ9RfqDScUZ+qVTpRypqBXa1i\nV6vIWrmn70xnrG9ss9QwWWqYrG9s40xnuJ7LG3dfx2CGwYw37r6O67lXq/l17t1a496tNW7urP/R\nwf1Vcl5BENhcX2atabLWNNlcX0YQBBr1GnnsYZoGpmmQx95CUvsfZfV9jX8N+Y8/5BrX+NcoimLB\n/n15I/imj281a9zeThjNSqvblq3TatYYT6aIssbKUsn8TeKAl7uceVFw3u0BsLm6BJTs45987x6/\n+/wLAN753puIosjf/erXCJUWRVHW6IVKi7/71a+p6BWc6RytugKAM+2RZRV+89FvKZQaoVuSj3Sr\nzrv/9BH37t5jY22dr5wQp3sIgKJX2VjTqVomF2efgVl6t1+cHVN9ZwMK4SpTvvxseZZBIaAoCnZ7\nHUlWAJA0HUXw2VxbpZtJZGlZZkaQ2Fxb5YOPP8Nc+sEiHMVsbPDBx+9za+8mWnUJbz4q+6tLuF4A\neU7kjjDqawBEzgXUysFet5aJveHVZ1tGEHrIsoBWMUijMnhIqxjIcvn5T87Oqe78FZFXGtdU2zc4\nefE3CIJAu9XC9c4AaLeWr/qaFMdjZLVM6SuiKe1Wk52tTZ7/0znBtHf12Qq+df8+f//uPxIny1Su\nfiNxEvHo2QlbW+tsbN1gcrVKbNRqfLV/yGA4or68twhJqi/f4Oj4gOeHJ+SyRa1hlt81Hs8PT3hx\ncoZRewt3Uu7XG7U1Xpx8woP790iTIyq18pyF03OW2iV58fXXbvL3n5wxG74AoCImvP7aTW7t3eDT\n5zN60/L7vrOzwlvfesDFZZ9HfYc8Lc+zLBRsbqwxm7vImkWRlJNGWbHKPlnmB29/myfP9gH4wdvf\nRpZldre3+XR/QiGUclNFE9jd3mbiTBFVE3dSfnfG8jITZ0qjXqfrTLCqZfRz6VnRKCtl1TmWWZbu\nZTGjXiuVCS9X8/9WvJTsLa7blVKy12w0mBx3qV0N6Fnk0VxdBWB1FuKGCQCW9S+5AZJWnp/Jcffa\nf/8/ENcr/Wt8Y3xTv/5Xpem1mk3W2yZtS6JtSaxfEYiajTrtqsJ0fMl0fEm7qtBs1NlYW+PDD9/n\n+NLh+NLhww/fZ2NtjaIoODq9RDHaKEabo9NLiqKgPxjh+SG5oJELGp4f0h+MGAxHiLJClsVkWYwo\nKwyGI/qDEZP+CXpzE725yaR/Qq9XOvLpeoU8DTDrbcx6mzwN0PVKKenTmkSBSxS4oDU5ObtkNJmi\n15YW7nR6bYnRZMq37t0jz1LUio1ascmzlG/du8fO9jaCpBC6I0J3hCAp7GxvE0YJilFbrLYUo0YY\nJeR5jutNF4Y3rjclz3NUVS5DW17yGwQJVZVLR735JarZQTU7BPNLwtDl/t3XCWcDFNVEUU3C2YD7\nd18HQBJFkmi+cK5LojmSKFKzqzz96ivG85DxPOTpV19Rr1Ux9FIGZ9SWMWrL5bGusrm+giHF6GYV\n3axiSDGb6yucnp2hGXWCWZ9g1kcz6pyenTF353iuh2q0UI0Wnusxd+c8uHePaf8FkmIgKQbT/gse\n3LvHu795H9laQ9VKhr1srfHub97HNE1ib4TV2MBqbBB7I0yztD22O7uLqofd2eXFSTkxmM1dJMXA\ntGqYVg1JMco+SeSd77xGQ09o6AnvfOc1pCu3PkXKF9ssipSzuryCXbVIQ5c4TYnTlDR0satWyYrP\nIjY3ttnc2IYsolGvIUkCv/jxd9huZmw3M37x4+8gSQI12+bhoyfMM515pvPw0RNqtv3KkKmbN3Zp\nGVCzJGqWRMuAmzd2/+g1nec5+weH7B8ckr/0JOZVkr2v1+9/U27ANf5jcD3oX+Mb45texH8oTS/L\ncs7Pzzk/PyfLyptNo17j/OyMMBUJU5HzszMa9RrvOTtiDAAAIABJREFUvf8hs0gizSDNYBZJvPf+\nh4zGE84GLh9+9owPP3vG2cC9cvBrEAQB7rSPO+0TBOVqyDAqUGQkkUcSeVBkGEaFOE6pNNbxhid4\nwxMqjXWiuFx5PX32FEk2FxMFSTZ5+uwpvf4leVHK8TzfJy9yev1LwigkjWY0Vu/QWL1DGs0Io5Ag\nDCFPCFyHwHXK4zBkOh2Thg661UK3WqShw3Q6ptmoMe8fLQhk8/4RzUYN3/cQ8gxndIozOkXIM3zf\n48snz1B1G0mUkEQJVbf58skzQLjygs8RyBElFRDwwwjDqqFqOqqmY1g1/LCsNuztbBG6fQRJuZqQ\n9Nnb2eLo+Bg/yUkKhaRQ8JOc54cnHByfsrb3JkXkUEQOa3tvcnB8ytz1qXc2MA0N09CodzaYuz62\nZRH7v5cRxv4E27IwNBM3TPF9D9/3cMMUQzO5eWObuzsd5HSMnI65u9Ph5o1tKrrKsHdCnMvEucyw\nd0JFV3nn7beQJIjmPaJ5D0mCd95+qzRP8l1kzUTWTCLfXdjwPn76FUZjdeFNYDRWefz0K7Is5YNP\nvkSt30Ct3+CDT74ky1I836Ni1pFFAVkUqJh1PN8rvSYin/Ggx3jQI4n8Kz97QBAIrvb+X2b6NhsN\nijTg7p3b3L1zmyINaDYai60uTQJNYrHV9aqQKVEU+ek79+lUIjqViJ++c3+huX8V8jzn1x98Sd/X\n6Psav/7gy38x8H8dXsUBuA7W+c+P60H/Gv+v41VpeoPhkF9+8IhJ1mCSNfjlB48YDIccHL1AqtR+\nn+JVqXFw9IKPf/cZdmcXs9rCrLawO7t8/LvPGAzH/PL9RxwNU46GKb98/9FVaExGGnsIkoYgaaSx\nB2SsLC2RJRGCqCCIClkSsbK0VJqqBNMFqS0JpuR5OegHQZn/rqgWimqR5xlBENGoNzjcf7ywDD7c\nf0yj3kBTNTSjycLf32iiqRqj8YQ0TYnmI6L5iDQtLYZFSULWLIZnDxmePUTWLERJIklS5EqD/snn\n9E8+R640SJIUXddxXXfhye66LrquU1CQRsHC5z6NAgoKBEHGsDuLc2LYHQRBxplOaLTXFlr8RnsN\nZ1pO4JaXVzDrK/jOBb5zgVlfYXl5hfNuj1yqIioGomKQS1VOzrrcuXmDwDnDqnWwah0C54w7N2/g\n+R56pYI/HeBPB+iVCp7v8ea9NxBEAUXRUBQNQRR4894bHJ6ckMQhWZGTFTlJHHJ4coIoCty9uUVV\nTamqKXdvbiGKArdv3CJNQmbjLrNxlzQJuX3jFtubG6w0LWRZRJZFVpoW25sbZHlGELhkeU6W51fH\n5XlWVY3ZZEAhKBSCwmwyQFU1Pn/4lERuc3F2wMXZAYnc5vOHT3E9jyzL0Mw6mlkny7LSkW/iMJh4\nFIpFoVgMJmXfaOwwnoVMpi6Tqct49jLv/lWrZ1heatKqKrSqCstLzZfzhK8dYMuqV2/BGTg67f3R\nPfSDoxeo1fai8qFW2xwcvfh3u/7/I62+r/GvcT3oX+Mb45texK9K0/v84WMi0aYQNQpRIxJtPn/4\nmPFkyuPDLr1ZTm+W8/iwy3gyZWdrA8/pLwYDz+mzs7XBwydPGTgBsyBnFuQMnJINPXFm6Ga9ZI7L\nKrpZZ+LMmLsekqKCJIMkIykqc9cjjMsVbqXaolItbVmDq1WvaVYRJRVRkq+aimlWefLsGbq9Sjgf\nEc5H6PYqT549Q0BEkBSyyCeL/HK1TCmhSiIPs7mG2VwjiUpnt7u37hC7A5Z23mJp5y1id8DdW3do\nNeok3gCrtoxVWybxBrQadYYjB6O2vnBYM2rrDEcOP/3+9wjmPRAlECWCeY+ffv97GLpC7A0X7z/2\nhhi6wms3b3Bx9JCsEMkKkYujh7x28wYAnXYTWcipmDUqZg1ZyOm0m5hGlThKiOO0bFFC1TL50Tvf\nRRNi/Fkff9ZHE2J+9M53WWq3OHz2Oaq9gWpvcPjsc5baLYIwoNHZXYTSNDq7BGHARbdLHIeomoWq\nWcRxyEW3S5ZlvP/JI1JliVRZ4v1PHpFlGXNvTq1WR9d1dF2nVqsz90qjGkEQ0fUKul654kUUxHGM\npBj40z7+tI+kGMRxDIBhVMjThHDeL/MZ0gTDqDCdTTk9O0bUlxD1JU7PjpnOSs5Bnuf4sx7+rLdY\nIX/25ZeImr3IahA1m8++/JLR2OH8so9iLqOYy5xf9pk4r46f3dvdIXGHmJaJaZkk7pC93Z1XXmv/\nGUvp/9FW39f4l7ge9K/xjfFNL+Jmo04W/V5TnEUvZUcCoqgsblCiqAACE8fhojsgSmWiVOaiO2Di\nOPzsxz9ASkbM+i+Y9V8gJSN+9uMf0B8MiXKZ+dRhPnWIcpn+YIhR0ZFllcAdEbgjZFnFqOj0+n2C\nRCAJA5IwIEgEev0+SRxhNNbxJl28SRejsb4YDPzARZSEl9mtiJKAH7hMJlOKLF+Ug4ssZzKZ4oc+\n7vCIQpAoBAl3eIQf+szmc+z2DpKsIMkKdnuH2XzOr9//gGrnNlnsk8U+1c5tfv3+B8w9F0SZ0J8R\n+rPSl99zmTgTJDEnTkLiJEQScybOhJnrU22ulTGoRUa1ucbM9blz+yZ54uFPL/Gnl+SJx53bN7kc\njEpSYZ5DniPJCpeDK3KgYZAEc7I0JUtTkmCOaRjUbBMhnSErMrIiI6Qz6rUqJ2fndJbXEDIXIXPp\nLK9xcnbO86NjGks3ocihyGks3eT50TGdVhOnv0+lvkqlvorT36fTapIXGVZri9BzCD0Hq7VFXmR8\n/vAJudomyRKSLCFX23z+8Ame71LRdKpVk2rVpKLpeL7LefeCDAldN9F1kwyJ8+4FRSFAnlBf2qW+\ntAt5UvZRkkIrhoZu2OiGTcUoY46LAgRRBalsgqhSFGCZFfLYW/Ae8tjDMiuloC7PKPKCIi/KYwRm\nc4/W0tZCL99a2mLu+q+8dl6SVNWkj5r0+cn37v3Rcv03xd7uDvF8SFHkFEVOPP/DE4s/Bddl//88\nuB70r/En4VUX8ddJc15lJfrg3uuomUMa+aSRj5o5PLj3Ov3BEK1iUWQpRZaiVSz6g2FpCrPSQRYL\nZLFgbaWDJElomsp8OgCpAlKF+XSApqnsbK4zHZ6CrIGsMR2esrO5zun5BcF8jKhXEfUqwXzM6fkF\nb77xBm7vOVq1g1bt4Pae850H9wCoWqVGP88S8iwhTUKqloVt14hjF0GUEESJOHax7RpB4JGLOpcH\nH3F58BG5qBMEHstLHZIkJEsSsiQhSUKWlzo40ylpEi5KrGkS4kynZGmGoptolRpapYaim2Rpxt7u\nFv2zp7y0tu2fPWVvd4vZ3EHVDXSjjm7UUXWD2dzBrtroqk4STEmCKbqqY1dtupd9Wuu3UVUdVdVp\nrd+me1mSF3v9fulcp5komglyOWESRZGV1XXEZIqYTMtjUeTs4pyxM6Xa2qLa2mLsTDm7OCcIQmSt\nQkFOQY6sVQiCkCiOkGV9ERojyzpRHPHg3ptEs97Ctz6a9Xhw701cb05RFOSFSF6IFEWB681ZW1kj\njgK6J8/onjwjjgLWVtbw/RC1YpBELknkolYMfD/EMg1Mu4k3OcebnGPaTSyzdMUzDRNJqpClCVma\nIEmVqz6JTmcJf3qBP72g01lCkiSqlk3F/H0SYcU0qVo237p/HzEPkSSQJBDzkG/dv8/u9jqGnJKE\nHknoYcgpWxsbr7x2vmm5/k8ppb/kASwZEUvGv40HcI3/7+L6zF7j3w2vYvW/lB0FXkDgBYhquaff\nbjW5vdVCycYo2ZjbWy3arSbLS8tIokiaxaRZjCSKLC8t8+LknIkvIus2sm4z8UVenJwDIoKoEgdT\n4mBarsgQeX50ApJyVZZXQVJ4fnRSescrJuOzJ4zPniAqJq7nYdtVdKNK6o9I/RG6UaVRL8lXdtUm\nDgMm/SMm/SPiMMCu2lStCqZVR5QVRFnBtOpUrQqtZgspi1i99X1Wb30fKYtoNVvEUcS0f7TwiZ/2\nj4ijCNusEsy6SFoVSSuPbbNKq1lHFEV0q4FuNRBFkVazThCm2I110nBKGk6xG+sEYcrK0jLhbEzg\nTgjcCeFszMrSMr1BH9WwWNq8y9LmXVTDojfos7a6jDcdkhYZaZHhTYesrS4D8NXBIZpeQ1IUJEVB\n02t8dXBIza5SpCG23cC2GxRpSKNuk+cCQQT97gn97glBBHkusLWxRu/4EVkOWQ6940dsbawRxylG\nvbN4fqPeIY5T7t7aQyyihQ2vWETcvbVXZilcHjCbzZnN5gwvyywFy9S5uDhBr2+h17e4uDjBMstw\no3HvHNcPcP2Ace+cm7u7vPXgPr7TXXA3fKfLWw/uL37DaRqhmQ00s0GaRhRFwZ2be1y8eIik2Uia\nzcWLh9y5uQeFQJZLC4JnlktQCLRbDb7zxh6GFGJIId95Y492q8HtmzvE8z5xmpRt3mdvd+uVCpfx\nZIKoGkydKVNning1YX4VBEHgxtbK4jd8Y2vl37SyFkWRW3s3uLV343rA//85rs/uNf7d8Kr9xJpt\n8+XDJ/Tdgr5b8OXDUnY0nkxQdIud3V12dndR9NKMZGtjHbkIsew6ll1HLkK2NtZ5fnjI3E+Q9Qay\n3mDuJzw/PCQMA1RNW/jZq5pGGAY8eXaAaq0sSvKqtcKTZwcstdvE3pjGyi0aK7eIvTFL7TbT2ZRm\nZ5U4mBMHc5qdVcZXPucX3UvyJKC5eofm6h3yJOCie0mn3aGARbm+ADrtDlGcYnV2KLKYIouxOjtE\nccrnj56gGnWyNCRLQ1SjzuePnhDEIUZzh/ngkPngEKO5QxCHPD86RVIqZHFEFkdISoXnR6dMnAlm\ntbYoQ5vVGhNnQqtRJ/CdxUo18B1ajTLUxjBrCEWGUGQYZo0wCFlqd/CdiwXxz3cuFpr15XaLOJwt\nbHXjcMZyu4UgCJiGhjO6xBldYhql2U6e53juFKO+jlFfx3NLGaEf+BimjTs6xh0dY5g2fuCzurxC\nOB1j2kuY9hLhdMzq8gpfPnnKxs37qFKOKuVs3LzPl0+eIggSlmkTun1Ct49l2giCxN/+w3ssbb6O\nriroqsLS5uv87T+8x3Q+oxAEDHsZw16mEASm8xn90ZCqXUfMU8Q8pWrX6Y9K/4LBcECaFQtTpTQr\nGAwHnF10serLCGmEkEZY9WXOLrpcXF4wn40WltHz2YiLy4vSqCYJUSVQJciTkEa9xrPnLxCNBqP+\nBaP+BaLR4ODo5JUKl5d+9l4q46XyH/WzL4qCw5NLZKOFbLQ4PLm8NsO5xr/A9aB/jT8J38Rha+JM\nkVRtIcGSVI2JM31lmIjrzblz++YicOfO7Zu43pzxZEJeQBKHJHFIXpQTDcMwEPJkkUUv5AmGYTBx\nHJJwtsiuT8IZE8cpb+DNjYWLntUsQ29u7uzw4tmn5IjkiLx49imv3d4B4PT8jObGPQQhQxAymhv3\nOD0/YzQeokoiRexTxD6qJDIaD3FmDkWWgCCBIFFkCc7MQdc0KmZjQcyrmA10TUPXNCJ/hFFbwqgt\nEfkjdE0jSWIif0aep+R5SuTPSJJS5+5OB4vEQXc6YHN9hS8ePcGodrBa61itdYxqhy8ePWFne4c4\nmC30+3EwY2d7hxcnx6hGc1EOVo0mL06OAfjZj3+IPx/gOpe4ziX+fMDPfvxDsizn+dE5hWJTKDbP\nj87JsozxZES9tYKqyKiKTL21wnhSeiVUqk2ay3s0l/eoVJt4fsh0PsGwbWbDQ2bDQwzbZjqfUKno\nhPPSiU7WDMKrvrOLM5rtZTY2d9nY3KXZXubs4gyjohMnCZ7v4vkucZJgVHQef7VPY+UWmiKgKQKN\nlVs8/mqfIIhQjAb+bIg/G6IYDYKgJGx6fkghyItUw0KQ8fyQwXDI2sYNTFPFNFXWNm4wGA4Zjseg\nmGWYXQ4oJsOr6+KsP0KrLqNVlznrjxiNxzw/POHx/glG+w5G+w6P9084Oj5+pcIFBBCkxW8VQeL3\ncTz/Gv8ZiXzX+M+F60H/Gt/YIvNVZfxX7SdOZzNEWccwTAzDRJR1prPZVZhIyMuleBaHNOp1anaN\nPI8RiwyxyMjzmJpdo2bXieOAOLpqcUDNrrPc7uAHEaE7JXSn+EHEcruDXa0SR97vGeuRh12tIkkK\nhSBS5HnZBBFJUvi7X72HpFRQKzXUSg1JqfDXf/MuAKsra6ShiyhpiJJGGrqsrqyh6zpRMKMoMooi\nIwpm6LrO9sY6/rSHKIqIoog/7bG9sc7b334TRAFBkhAkCUSBt7/9JqsrK6SBu9jrTQOX1ZUVVpaX\nSUKXYDYimI1IQpeV5WVEUcaybLLYJYtdLMtGFGV6gyFGY/XKSLjAaKzSGwyxqxZZFnOV5UaWxdhV\ni+FoApKKWV/HrK+DpJZ9wLODAxRFw6h2MKodFEXj2cEBT559hWa2ERQdQdHRzDZfPHpGp72Eqiqo\nslA2VaHTXsI0DPI0xZv18WZ98jTFNAxazQZZMFvIILNgRqvZYG9nh/754aKS0D8/ZG9nB7tahSLB\ntuvYdr08rlb54TvfZdQ9RNZsZM1m1D3kh+98l3azQRY5C4/kLHJoNxvUqjbdFw8xW5uYrU26Lx5S\nq5bbOIKQU6Q+sqQgSwpF6iMIOW89eJOTw0eEUUYYZZwcPuKtB28iCAKqrC2UIKpcVj2e7u+zvHEH\nQxMxNJHljTs83d/n4rKHbi0hSCKCJKJbS/T6w4XCZTpzmM6chcJFEGBjtY2p5JhKzsZqm2se3DX+\nn+B60P8zxzd114NXryZexeqv2TZ5Gi088/M0+oOuYvWaxfDygnmQMA8ShpcX1GvW1RvOF/GwXPni\nP3z6mDwvFlK+PC94+PQxjVoN3awvYmN1s06jVpbB54OjMmpUlJkPjpg4E548O8Re2kPVDFTNwF7a\n48vHzwC4sbPB5PIpYTAnDOZMLp9yY2cDyzSRZJnQmxJ6UyRZxjJNFFlBMRu4Tg/X6aGYDRRZYTZ3\nSfwZaRyTxjGJP2M2dwkCj0q1TZFFFFlEpdouyYB5gSRrGPVOuf8ta+R5gSgKmKaBQIJAgmkaiKLA\n5sY68+EpaVGQFgXz4SmbG+s8PzqgYjUX8bYVq8nzowOKK9Oel5MBUVIprlaSj58+Q7fXkDUdWdPR\n7TUeP31GUQjEeUHoe4S+R5yXk7x7d+9QVXwkEiQSqorPvbt3MI0KU+eCrBDICoGpc4FpVLi5e4Mg\nihaTuCCKuLl7g+dHh+jVGsF0RDAdoVdrPD865MbONhtti8A5J3DO2Whb3NjZ5rMvHrGxcwuSOSRz\nNnZu8dkXj/jFz36E092ne/SI7tEjnO4+v/jZj3j01VfUV24upIL1lZs8+uorAHa2dtA0E39yjj85\nR9NMdrZ2EESBuqXgzUZ4sxF1S0EQBTbXN0liH0UzUDSDJPbZXN9kbWWVLJoRpxlxmpFFM9ZWVtlY\nW6VW1ZCLELkIqVU1VleWFwoXz/XxXH+hcGk2GuRxyTex7Sp5/Hti3tdN1q818df4Y7ge9P/M8e9d\nDvw6Vn+r2eC13RUsKcSSQl7bXaHVbFyRjlYxlQRTSbixVU4Sjo7PiEQTd+7hzj0i0eTo+AxnOkWt\n2KTBjDSYoVZsnOmU0WhCmqUoehVFr5JmKaPRBFlRSDwXUdIRJZ3Ec5EVBd/3UK1lekef0Dv6BNVa\nxvc9bKtC7DnEoVs2z6FeLf3C958folkrTC4eM7l4jGatsP/8kLL8KqCZNpppv6zB4jgOWeRh2G0M\nu10GvDgO07lLVuRE/oTIn5AVOdO5i65rFFmCpOhlAE6WoOsarj+n2tkmiz2y2CsDbfw5q0tLjPpn\nhEFAGASM+mesLi1xZ28Xf3rJpHvApHuAP73kzt4uaZrRP3+BoNoIqk3//AVpmqFrGqE3wx2f4Y7P\nCL0ZulYmziVpTpLESLKOJOskSUyS5qytLBM6XXSzhm7WCJ0um+srtJo1WlWdi+cfc/H8Y1rVMkvh\nsj9AlE2KQqAoBETZ5LI/4J8//i16tYXVWsVqraJXW/zzx79lMByRFQr20hb20hZZUdokNxv10tkw\nSQiThDSa0WzUKYAsExZh9FkmUABHx+eIsoHZWMZsLCPKBkfH56iKSpokVyHJAmmSoCoqAGsry8TB\naGElHAcj1lauSKSegL20i720y8QTeHFyjh/4aBWLOJwTh3O0ioUf+HznwT2C8Sl5lpNnOcH4lO88\nuMf//PMf0RAdZBJkEhqiw3/5yQ+uFC4m1apNtWojqX94Iv2qyfq1Jv4afwzXg/41vjH+0Gri61Yf\nrWaD9bbB3laHva0O6+2ytPsq0tHZRZeZl5IhkSEx81LOLrqoqkbgThcr9MCdoqoaUZygGfWFEYpm\n1InihMMXR8SxTxoFpUtd7HP44oitzU3CeY/O1rfobH2LcN5ja3MTVVUJ3T6KbqPoJWFMvRoAozhG\nFLKFeY4oZERxjOf7SJKCJF41ScHzfZxZGRr0kiAnyhrObEpB+Z0VeVa2oqCgYG9nl6KIkdUKslqh\nKGL2dnapmibe5GQRJ+xNTqiaJqcXl+QoKEYLxWiRo3B6ccn+4TFGbRnLbmHZLYzaMvuHx8znAYVa\nRZArCHKFQq0ynwdQZIT+pHxfFIT+pNT4U0r20jgguWppHNDr95FliQf336CYHVPMjnlw/w1kWaY/\nGPH500Nqm39BbfMv+PzpIf3BiF5/TC5UUM02qtkmFyr0+mN6gyGKrBO7Y2J3jCLr9AZDQECWVSpW\ng4rVQJbLSsT+wRHHfZ+ZnzDzE477PvsHR+ztbNE7fYykVpHUKr3Tx+ztbPGrf/oN9sodREFEFETs\nlTv86p9+w+pKh3n/cOEoOO8fsrpSkhcPXxyxtLxFngXkWcDS8haHL444Oj6hUltCFApEoaBSW+Lo\n+IQw9BCLHEkUkEQBscgJQ48XJ6f8+Cc/paV5tDSPH//kp7w4OUUURe7sbSDEfYS4z529DURR/AN7\n+l8/kf5Dk/VrTfw1/hCuU/b+zPEyMetlAlYWeTRXVv/g37yUBb206tzb3fkXq4+vS9Pa2177Vyl7\no/F4ceMCFjeuPE8ZDy+otEpnuPnwkPzWOpCRxD7FrEzxStMYMKhUdKRAosjLfkmWqFR0xpMp2vr9\nRaKdZtYZnz8ERKzmbfz5AACrucl48jGCKGI0twivUuWM5hbC1WNajRZuYi+2FJSKTUtpUfIRRAK3\nNLTRdQMo0LQKQZEhSleXWOGjaWXUqpzIVDs7AEz7B6iKShiFVMx6Sf4DKmadMApZX1lhNoJwPr56\nHlhfWWH/4ACrvffy7aC1N9k/OGA4HmG13r7KVwfFqDEcf8xwPEStvI6ql+emyGP2Dx/TarZQdJNS\n7w+KbhJEpSGRLKvkRYYglv+XFxmyrLK9ucnff/ge6pVr4WjQ5cbOt/hf/7f/HaV+k/zqtqLUb/I3\n/+Ndev1LCnYp8vjqIxT0+pd89zvf4f/4H88wGldph4MT/pefPyDJEhqexKj/vPzuW8ssL5k8fPKU\n/izDsMsEwf6sx8MnTwGB1c07DC6PAFjdvFPyGCybz55dXH0+GPQuuHvbxpnOsNqbJH45qFrtTZzp\n7Or8VRiMLwnm5b/TJEW/u4JpVnjUHePHafnbUGWW9hqkacb0d08RlKuY5WRGq/kaRVFw2RsyD8vz\ncNkbslqt8fTZIcfDlKXNNwA4HobsH7yg2ajx6bNDUrFMKJQnE+68Xf7+X4WigNmsfJ/VavUPPvYa\n13iJ65X+nzn+lHLgq1bof8rqI8tyHj5+ysPHTxeBOyCjWZ2FV7tmdQCZIIhL5zPVKJukEgQxb77x\nOtGsS5akZElKNOvy5huvYxkGoiSj6CaKbiJKMpZhoKoqSTT7vbVtNENVVTRVJ4uCRWk3iwIqernS\n13QZioIiTynyFIoCTZfRVZ2p00e319DttfJY1ZGkUsL2UjqX5/lVX4ZhL0EWQxZj2EvkeYYfBKRR\nSJ5n5HlGGoX4QYAsy0iahT8f4M8HSJqFLMs06jae08edj3HnYzynT6Nu02o28cYlmz7LMrzxOa1m\nE1VWyKIQUZQQRYksClFlhSiK0PQqFbtDxe6g6VWiqGSytxo1FEVf/I2i6LQaNcYTBz/KcSYOztXx\naOwwnjhEcUIcR8RxRBQnC1/5NPKJgrKlkV/+PmQR3bAQkBCQ0A0LSRb5+U9+yPBin1pni1pni+HF\nPj//yQ/xvABZMfDcGZ47K4+9gKIo8LzytaM4wfOc0sQnzwi9IXLFRq7YhN5wkZmAIBMGM8JgBoK8\nYO+PxhOmkwFmZxezs8t0MmA0nvD9t99mOjojySDJYDo64/tvv02RC2SFvFCUZIVMkQtUrSrvf/Rb\n+p5M35N5/6PfUrWqHB2f48YiMzdk5oa4scjJ2RlQUBTl7yTPc4oioZxQfj0a9TrHL17gxgJuLHD8\n4gWNev1Pugdc488L14P+Nb5xOfBP4QF8XXRnzbb5b3/3Lp8fjPn8YMx/+7t3qdk2RVEQB3NUvYaq\n14iD0oktjCIkRcdqbmA1N5AUnTCKqNdsLNMkC4ZkwRDLNKnXbPZ2t4lCj/HFM8YXz4hCj73dbXRN\nRRRl0iQgTQJEUUbXVFRFRBDyhWudIOQoSnmJFDmE7oQ0CUmTkNCdUOTw/OgQu7lFloVkWYjd3OL5\n0SGaqiEKArKiIys6oiCgqRo7WxsIqcdLjZeQeuxsbZTbJFm8cNLLspiiKEiylHjWp9pcp9pcJ571\nSbKUe6/dZTI4BkEGQWYyOObea3dZX1kh9MaErlM2b8z6ygqv371LGgfMR2fMR2ekccDrd+9S0Stl\nDkGeQZ4hKSoVvUy4N00DUZKI/CmRP0WUJEzT4OGTJ/SdkCiTiTKZvhPy6RdPWG43GZ4+JvA9At9j\nePqY5XaT27f2CLzJItUw8CbcvrXH02f7iJqFIAoIooCoWTx9ts9Hn37KvQd/gVIEKEXAvQd/wUef\nfsqtGzeYDM/wgwg/iJgMz7h14waaonJ5foZaFWxuAAAgAElEQVTZ3sNs73F5foamqCUPYPU2/vgM\nf3xGc/V2GasswrR3QH3lNeorrzHtHfDSj+aX7/0Go75KnqXkWYpRX+WX7/2GLx49LVURV5wLo7HK\nF4+e8tnDh8iKQbW5QbW5gawYfPbwIe9/9DFabR3P8/E8H622zvsffYxdNRn2jnG9ANcLGPaOqVoG\nznTG+sYWrZpGq6axvrG1qD58HSaOw9b2Fqk3JvXGbG1vMXGcP36xX+PPHteD/jX+3fCqvf48z3n3\nn79g/zJk/zLk3X/+gjzP+e2nX9B3BXojj97Io+8K/PbTL/ADFwHwvTG+Ny6PA5c4issI1ivnPdWo\nE0cxQRiwsrqFmPmImc/K6hZBGLCzuU4ROrS37tPeuk8ROmUfkGfx4gaeZzEF8L2336LIM6b9fab9\nfYo846c/fAeAMI4RVY0sTsjiBFHVCOO4JODl8SL4psjLvk6rjSDJC1a3IMl0Wm3+6uc/I511CaaX\nBNNL0lmXv/r5zxAEEcVoLGKAFaOBIIj4foBmL5MlEVkSodnL+H7AR59+SmP5NqE7JHSHNJZv89Gn\nn3LW7SFX6oT+lNCfIlfqnHV7WGaFOJzizvq4sz5xOMUyKyx3WvjzMWmakKYJ/nzMcqcs229vbRJM\n+wv+QTDts721yWWvz3TuIugNBL3BdO5y3u1R0Q0krbqQHUpalYpucNHto1SqCIKMIMgolSoX3X45\nIE6HFIgUiHjTIZ7nUxQCYVIQBAFBEBAmRUkCBIosJQpmpUwySymAd3/zPo21uwvDo8baXd79zfvs\nbm8zHV0spHzT0QW729scn3VpbN7/fbLg5n2Oz7oASKJUkg2vpJZFISCJEl8+fkosWEha2WLB4svH\nT3GmLqJiIAgSgiAhKgbO1GU6c+mPpqSCTiro9EdTpjOXZqNGRVcZ904YX0UA12t1GvU6eVKqWmq2\nTZ5Ei5X7q+x5z7sDZLOFbLY47w6uTXiu8W/C9aB/jW+MVw3ugiCwu7nMsHvIsHvI7uYygiDw/PCI\nkQfdUUB3FDDy4PnhEU+e7dN3UjKlRqbU6DspT57tU9ENZrM5gVu22WxORTdIsxTP6SLKGqKs4Tld\n0ixludPm/Pgpam0DtbbB+fFTljtt3vvgY5pb3yaPZ+TxjObWt3nvg4/xPR9R1klClyR0EWUd3/P5\n7rffJJn3sJpbWM0tknmP73/3WwAMhkMEBERFRVRUBAQGwyGv33mNwB0tHNwCd8Trd167istVyYuc\nvCjz60fjCa4XUGs0mY9OmI9OqDWauF5AHMe4kx56tY1ebeNOesRxXEr2RBGrsYrVWEUSRfK8YDSe\nEAVz9GoHvdohCuaMxhNOTo7J0hij2sKotsjSmJOTY/YPDshyEVWtoqpVslxk/+CAf/jH98nSlDT2\nSWOfLE35h398HyhdCEVFQ5BlBFlGVDQuupcEYYxmthfyNc1sEwQhnz58hFnrYC9tYi9tYtY6fPrw\nEecXXWRJR9EqKFoFWdI5v+iS5QKCoCwsbAVBIcsFbmxv89lH7xLkFYK8wmcfvcuN7W2eHx5iN1cw\nTAvDtLCbKzw/PCRJy3jchYVx4JKkOdP5jMibkkQ+SeQTeVOm8xl5VgACaqWKWqkCwlUfrC61SXwH\nUakgKhUS32F1qY3neczH/YW8cD7u43keiiyRJAGioiEqGkkSoMhS6UTozkmSlCRJ8d35Vdm+wHUD\nclEnF3VcN6AoSrLralMjCRySwGG1qS3Irl8vqf1mpj3XuMZLXA/61/jGeBUPIM9z3vvwIbGyRKws\n8d6HD8nznIkz46Q3pzdy6Y1cTnpzJs4M3w+I4oC5M2TuDIniAN8P6F72SZIYze6g2R2SJKZ72ccP\nfGRZIYtDsjhElhX8wOe8OyiZ4bpRNrPNeXdA1TKI/MlCNhX5E6qWgSBAkaeLkJwiTxEE+NtfvUd1\neW9h5lNd3uP//Jt/AKA/GJUlerOGZtYQBYH+YITnBxhWlTyNSi8Cq4rnBzizaTmp8KdlC12c2ZRH\nT5/SG03Q7XV0e53eaMKjp0/54tETJEUnCVySwEVSdL549ATPDyhgEQNbAJ4fsNJZJo3DhSNfGoes\ndJa5HIwQJRm1YqNWbERJ5nIw4v2PfoduNam2Nqi2NtCtJu9/9DumsxkI0sLxD0Eq+4Cz8y6a2UZR\ndJQrE56z8y71Wo25c17GBUsKc+ecVqNertLzfDEBKvIcz/PJC0izlCT2SWKfNEvJC7js9VF0c2GG\npOgml70+//Wv/ztKbYv56Jz56ByltsV//ev/TqVSwXU9EDUQNVzXo1Kp4Hke3rRPGoekcYg3LQfk\nzz5/iGLUX7owoxh1Pvv8Ib7vMTl/TBS4RIHL5Pwxvu8BcHLeBdVg2n/OtP8cVIOT8y7tZo00nhH5\nZUvjGe1mjThNoWBh3UwBcZoSRhGmYSyklqZhEEYRhy/O8KJiEa3sRQXHp2cvryxsy8S2TF4O4K/y\n3r827bnGn4rrQf8afxK+jgdwcPQCxWrjuR6e66FYbQ6OXpDnBefdc84vR2XrnpPnBe1Wk8AdkxeQ\nFxC4Y9qtJl89P0C12uRpSp6mqFabr54fsLG2gaQZCEKBIBRImsHG2gan52fYzaUr1XWB3Vzi9PyM\nv/rFXzK93CfNMtIsY3q5z1/94i/59oN7kKWIkoQoSZClfPvBPY5OTsmQFpWEDImDw9KSNgpjBLlC\n4s9J/DmCXCEKY3r9PlFcUBQiRSESxQW9fp/LywFJ5JFlKVmWkkQel5cDPvviCcgGVmMNq7EGssFn\nXzxhPHFAVAj9SSmbExXGE4c4DgnnAyS1gqRWCOcD4jhkOptjNNYW2wRGY43pbE6aZWhGfUG+04w6\naZbhuj6SUlmQGiWlguv67G5ulVscVylxkqKzu7kFgOt6pLGHrFaR1Spp7OG6HkHgk2cpiT8j8Wfk\nWYrrB9ze22U2PCYNfdLQZzY85vbeLqahUWQxldoyldoyRRZjGhqePyfLciYXz5lcPCfLcjx/zkef\nfIJasamv3KS+chO1YvPRJ59QtUzEIiEOPeLQQywSqpZJt9dHUkyc3iFO7xBJKftcL0CSFKqtNaqt\nNSRJKasqSUwhqPRffEr/xacUgkqclMqC+XxONO0iiAqCqBBNu8znc/Zu3KCim2RRcEXwNNm7cQNN\nVUnTtJxoTPukaYqmqtzY3qbIIhRVR1F1iizixvY23V6fanONwJ8T+HOqzTX6g2E5kCsVzk/POT89\nR1AqjCcTiqLg9LxPz4noORGn5/2F++WrTHuucY0/hOtB/xrf2Ib31c8DvcGYIJMJMpneYExRgDN1\nmEwcpjOP6cxjMnFwpg62VUXV7d/7vus2tlUlCEqy3MuUtTQJCYKwTJzLk8XqVswTWs06r9++Tb97\nSo5Kjkq/e8rrt2/z3m8+RrOXiQKHKHDQ7GXe+83H9PtDJE0nDQPSMEDSdPr9IXma4zu9BePed3oL\n0qGqqSSJhyDJCJJMkniomkpvMCT0PV5mqIa+R28wJM1TNKuJKMqIooxmNUnzlEdP9tHMzmJw18wO\nj57sYxoVIneAUVvBqK0QuQNMo1K6+1XqCxtepVIvSYt5gud0Ua0WqtXCc7pkecLO5gZpHBH6Y0J/\nTBpH7Gxu0Gm3yPOc+eiU+eiUPM/ptFsYpkEazJA1E1kzSYMZxlXMrOt7JFHE4OxLBmdfkkQRru/h\nTGfo1hKhNyH0JujWEhPHwbarIGlcPv+Ay+cfgKRh21V8L0Ix2jjdfZzuPorRxvcibt3YYdx9hCCL\nCLLIuPuIWzd2iMIEd3xOloRkSYg7PicKEwRBQFEkJElAkspjQSiZ8pH/e7vdyHeoWlUEUQBRYT48\nYT48AbF00ataFuQRVnMTq7kJeVT2AQjlBPRltSK/qqRTQIaIUrFQKhYZIhQgUBC5/cV5jtw+AgV1\nu4asaIz7p4z7p8iKRt2ucWdvh4vTA6KkIEoKLk4PuLm7Q5Zl/O27H3Lq6py6On/77odkWUZRwOXQ\n4fRyzOnlmMuhQ1H8aaqba1wDrnX6f/b4Q9r6P/Z3/3fdfaNeI93v47il/MlSUxr1Nc67fYJURjHK\n1wj8iPNuH0kSUDUd152Xj7eqXA76VwQqCGb9q9cqoz8VRaSiawxOPwegs7SBogjMPQ9ZFPCm5eNl\nsew7OTtHaqyiVcrXjYKyr1azCWONoihXd4Kg0kuGPH66T23nR7hO+TxZlvHhJ1+UzylLJGHIxCtt\neZEqyLLEYDhGkLcW4ipBVhkML7EMs+QAXHkECGmCZZgkSYzvXGB3ytX0bHBCksTM5mC2O0z7hwCo\nVofZ4CFvvHaHy8sIrWJdfQaXlZUl8kIgyzIib7p4r3khEIYhfnSBUSu17/70klALeeO12/z60TP+\nr/buPEyuqkz8+Ldu7dW1dPWWTmclgZwkQIgGfiDIkt8oiKKA4oMjoCAMiiAoqIAgCIKgGPzJsCga\nhAEXBgZRmQHCjOw/AhgIBJKcbJ1e0/RW3bXvNX+c20UISWh4IGlS7+d5+knVza3q02/duu+95577\nHo/XJPR8Ls2R+87h5VWv4Wo+uFrLwOULsm7j6wAMDAwTcPbjDZh7wNPxftIDw4RDYRIbunF7TJsS\nw91E5k8lGU+TS4/ij5o6D7n0KMVChM6ebqz6MNEpymxjPZrESDcez0yC4cl4PObzCYYnE08M4Qt4\nyedy9HetsqPqwRfwUqlArlghNtwDQLShgUoFAj4vQ6kSltv8DWRTBOq8lNxuugc2Uxc1UwWnYpuZ\nGggQi8VwRmeRz6ftjzJKLGbiXi6DP9REIGgG0aVdbjIj8PyKl8lkHJAt2F+APM+veJmeLf24fIp8\nNmXHL0rPFk17Zwedne14g00AdHa2094ZZK+ZU3BUiqTtugvuSpHRRIL2jm6ylRDkivb7h2jv6KY+\nEmYkmcX+SlEqwnBshGZ7tsPGhgaEeDcmdNJXSlnArcACIAecpbXeuHtbtWcx1wzriMdN4g2FQgzH\nYjQ2NGw3scPYgUIvSbvwSCyeYfYMUzClUobBATMSum6yqXLW3dNLxdFCNpMEwHL46O7ppW3yJPq6\n2/FHpwLQ172Rwl570TqphZ6OODl7R0q5ROuMFtTes/nTo3/GHTA75M6NqzjjUyeydv0GsoUSidFO\n8zdEmhkYHCCby+Eo5qlgFx4q5inmctTlixSyo0Ra9gJgtL+dIkUG+2M07eOhvsUURRnp30T/G2bn\nnEgk8Ncl8AZMF2ouHSOTSJBKJSm7ipQKZq9cLhZJZZPmSKVUwOOPAJBPjUKlgtvlwu0L4rYPsty+\nIG6Xi0QqgS8fp3n6AgAGe14nmUrw0iuvUgjsQ7mQAaCQzfDSG+uZO2cO7sAM8hlz/d0diJJIdNDR\n0UPdtGm4PKa+gMsdoKPjVfL5Am5nE/XNM8xntmUdev1GEqMpIpOclIr2AZDlJD5q4p5MJ2iJNNMw\nZZ7ZVnrW0L8pQTaXwel0EohOMesNbiCbybDilVX4g3sRmWTH9Y12VryyitHROJOmNULZJDRPqJE3\nOuKsfG01bQtOIBBpqf7ula8+jc/rxROsEIiY90+P9pNJZxmOxejv6yM4aW8A+vs2MBwL0dmzBf+U\n2dRFzPbmKFt09qymmC/ga5tEINRkfwYjdHR2UyqXCIVzRKeavyvWvYbYiIljMpUi4qvDY3/OxWKB\ngVSK9s2dZDNR/HZbM6Nx2jfH6B8YIjC1RH3r2DbTTv/AEI889jgOawregP35pxM88tjjHP/ZT+Dy\nBMmPFUDyBqtVDh1OD8mk+Y4E6wLEEwmgzGgijT9sDuJG432MjMqteeK9m+jd+ycAHq31ocAlwJLd\n3J49TqUCXb39bOweYmP3EF29/VQqO5+IZ2g4Ru9QlnTRSbropHcoy9BwjKHhGJt7Bym5Gii5Gtjc\nO8jQcIxCsUh8uBenuw6nu474cC+FYpGOrj4sT6haSMbyhOjo6iOZSOIol2hsm0Nj2xwc5RLJRJI7\n7rmPQLiFSTMXMmnmQgLhFu645z6SqQzxoT6ik+cRnTyP+FAfyVSG4dgoTqcTbyCCNxDB6XQyHBtl\ntdZEJ80mWN9KsL6V6KTZrNYaq+w09/+73DhdboINU7FK5ivS/8YIgWCU5un70jx9XwLBKP1vmIIw\nZUepOuq+7CiRyxfoG+zH8vjtaWzA8vjpG+wnkU7hrWugUipRKZXw1jWQSKeIJ5IEo1Oq6wejU4gn\nkqzf1IHb4yE6WRGdrHB7PKzf1EFXTy+5eD/hllmEW2aRi/fT1dPLUHyYYNMUfIEIvkCEYNMUhuLD\nvK7XEm2bRyDcTCDcTLRtHq/rtYwmRynlEtVCRaVcgtHkWO+Bg8hkVR37EJmsKJUcZLIF6hpm4vb6\ncHt91DXMJJPNoTdsItw8A4+3Do+3jnDzDPSGTeQKeQLBxurcCIFgI7lCntFEHIflxOny4HR5cFhO\nRhNx+gb6CUSaCTe0EW5oIxBppm+gn2eWv4A31ILLcuGyXHhDLTyz/AUGBgfwBevxBsyPL1jPwOAA\nfUMDRNvm43J7cbm9RNvm0zc0wMDIMMGm6TgtJ07LSbBpOgMj9sFdMkmlVKiOiq+UCiSSSdas34g/\n0kJdtI26aBv+SAtr1m8kmU4RCDfj8Qfx+IMEws0k0yk2d/USapqBt64eb109oaYZbO7qJeALkMnl\nCDfOJNw4k0wuh88XYMrkVjrb11B0+Ck6/HS2r2HK5FYcDouGxhac5HGSp6GxBYdjou+2xUQ20bee\nw4BHALTWzwMH7t7m7HnK5TKr120mnncRz7tYvW4z5XJ5pwV4YiMjOD0+xmZmc3p8xEZG6OzupeAI\nUSgWzI8jRGd3L8lEEm8wWr3f2xuMkkwk6ezqwBuIVAvPeAMROrs6eHHlKuqnzq8OzKufOp8XV65i\n9br1RKfuXx1NHp26P6vXree5F1ZQ3zYXj8eHx+Ojvm0uz72wglh8FLd9pg3g9keIxUeJJ7N4AvU4\nLAuHZeEJ1BNPZsEJhWyieptdIZuo9oVZXlO7fSwe4VaF5bXo7O7F52+gXMxSLmbx+RtMHAplLMtF\nuVKiXClhWS4KBTOaPZ8eBssCyyKfHjYj3KFaoGesME8ZsFwuolNM+VyPr47olPlYLhexkTj+SCul\nQoZSIYM/0kpsJE6xVKaUz1Sv0ZfyGbOsUsHjC1bvWPD4gpQqFbLFPHWN08llEuQyCeoap5O1z/rL\npQrZ+BvV+GXjb1AuVRgcGsRhgdvlxO1y4rDM3Q3JdJJiLlVdv5hLkUwncTgsculYdYBkLh3D4bAo\nlSsUC1ny6Tj5dJxiIUupXAELfMHG6vTDvmAjWJBOZ3D7QtXYuX0h0ukM5UqFUjFPpVKmUilTKuYp\n2+NECtl49fcWsnET1wpQKVer31Epm2WAo1KhkM+SS8XIpWIU8lkclQqWZRGItFbndwhEWs29/A4H\nTk+gWkfB6QmYZU6LcilfvdZfLuVxOi0yuSzNLZOwKmmsSprmlknkclmSqRTz5++PuzCIuzDI/Pn7\nk0yl2GvGdCLeEtFwgGg4QMRbYq8Z0z+4HYLY403o7n0gDGxdlqqklLK01uUdvUC8Ox1dXbROnUkm\nZboVI1Nn0tHVxayZM3b4mmh9hC2xIZxec023lEsRbWukvaOLUjGNP2i6WTPJASCA5bLwuyNYdg13\nqy6CVenB6/WQdbqqdxdbThderwenZVHIxPHUm67U7Eg/TsvC43FTSI/gtrtxC+kRPB43+UIRv8eP\nw2VmSnN5/KQKRSwwBxol061cKZewgEK5SGyLpnHqfgDEtmhK5SI4IRXrtaeaNY/Llv3aXIVMvA93\ng7kUkYn3UclV8Hm8lMsFwFwrL5cL+Dxe3B4n2dQQTrf5imVTQ7g9TkKBANnkCE6X6X7PJkcIBQPk\niyXi/e3Ut+4DQLy/nWDATyafoVTKUy6a69WlUh6nC6a2TSLjclXnAnC6XGZZJm0GoeXM51ks5GmM\n1EMFYr2ahrEu7V5NNBihUCpRzKbwh8y14XximKDPfK6BgIdY3wbG7gWL9W0gEPAwY9oUBjf3k3fa\nNflT/ew1fxrNDU0khrpx2OXtEkPdNDc00dbWykg2Tbzf1MbPZdPMU/vQ291LLhmrvn8uGaO1oQG3\n10t6ZAtOl4l1emQLU1omc9ghB/HQ8k2EJ5uxAamhTSw+5CDSmRzxxKC5EwPIJAaZrxSJeILRvg3V\n9oz2bWD29BmkUilGtmiiU+YDMLJFM7nBFCRatHABnaNv9mql4n0sWriABfvN44m13YTtyyPJ4W5O\n+tyxrFm3kZ7+TdS3mksOif5NHLDffCZPamFFVx+W0/zudLyPww4+kH3n7sPKjjWU/WachFVKoPaZ\nTX0kTDSYIDTbXCZwOQrUR0I0NTawUGXoHTS7wbamyTQ1ynV88d45JnIVJ6XUEmC51vo++3mX1nra\nTl4ycf+YCWqN3siLa4Zw+82EIYVMnIPmNTJ3ziz0pm6cbjuxF5KoWVOrE+us3dhFPGVmYwvXOZk7\nexpr9EYeenId6YLZiQfcFY47cg56fTu33b8CT9hco83HezjnpEWMjia48+H1uIJmJ1ZMDnP6sfuQ\ny6W5+U/Pv+Va8nlfOphAnZ/rbv9vmmYcAMBgxytcevYnGByIc8+ydTROM0l8qOs1Tj16Dk8/9wLr\nBk3XOJjkPqcpT2NjmGfXZPDYg+PymSSHzfNTLls8q9O47QFhhUKBw1SApbdcxxdO/QarOos02Ili\nuGc1+0938cUTjuX6pU8SarYnBxrYxCVnHkk6neX6pY8TtA9ckiP9XHLmYvaZPZOzLluK377OnEkM\n8ttrz+T11Zoldz+FN2A+h1w6zkWnHcGihftyyndvY/LeHwNgy4bn+P3Pz8FyuvnmlXcRbJlr3r9/\nLbde9VWeeOZ5/u3RDfjqzDXpbCrGV47Zm0MOWsjpF/+KQNj83nR8kDt/+g3yuRxfv+J31bEEA52v\n8uurz2DxUR/n7j/ez5U3/We1FHGhUOaq8z/DF088ji998zoKlulFcZdH+dOtl7K5o4vPnnktvpA5\nKMsmBvjb0svweDx84ZwbsPxmeTkzwH/c9j3y+TyfPeu6t7Tpb7+9FIfDwQln/5TQ2IRLQ5t48PaL\nCYVC/PDGP9DRaxLgjLYwP77wywTr/Bz++Ytw+EzirmSHePqBJfQPDPGZ06/CcpmywuVihv+880qi\n9WH+z3HfqU4+lM+meOGhX9DY2Mjmji5OOufnpJKmx6IuWMf9t32Xya0tnPqt6+kcNAeB05tc3POv\nl1AoFDjqixdTcpkk7iwmeOK+n+J0Ovnc135EMmcm0Al6s/z1jh/h8Xi4495lvDFi3mdSvYuvnXw0\nDoeDR59cQaZoDjj9rjzHHLnIHtRaYXDI9LI1NUZllL7Y1rvaICZ60v888Fmt9RlKqUOAH2qtP7OT\nl1QGBhK7qHUfXs3NIcbiNFYiN4vZ2fjIc9THFlR3NtsbyAfbH71fLpd5/P+/wmDSdA83BT0sPvQA\nyuUyN9/5IBt7zLXi2VMinHf6CVQqFa791z/QNWzWn9bg4bJvfRmAH/78Dl58eTUAB31kPj/+7tdw\nOBxcf8vvWfb40wAcvfhwLjn3FMrlMt+75tds6h0EYFZbEzdc/nUKhQInnHkZqbQZZFcX8PLg0mtx\nOp18+dyr6Rsy7WltjPCHW66gUqnwz9/8McOJrPm7Qj7++76fkUwWSafTfPorlzAy1AtAfWMb//Vv\n1+PxeFhy+708vvw1ABYfsh8XnX0yAD+56S4eeewZAD71yY/zg/O/imVZPPjwU9z0m7sBOP9fTuOE\nY4+gVCpx2c9+y/IVKwE4ZNFCrv3+WbhcLv7+9HIuuvxqAJZccwX/9/BDqFQqPPz4cu79yzIATj7+\naI5dfAjFYpGLrvk1G7rMrH97T2tkyeVfx+Vy8ZdHnuTmpfcAcN6Zp3L8p44E4N6/LOPGm28H4MLz\nzubk44/GsiyKxSLX3XwPj/7PUwAc809HcOl5p+Jyuchms9zy27sAOPesrzJtWjP9/XH+sXI1l11z\nAwDXXv49DlxoDpJeXb2BX/zqdwB85xtnsGC+OTP+x8rVXHatvf5lb66/4tU1XHndLwG46tILWLTA\nHACu3dDJ08tXAHD4IYuYu/d0HA4H8Xic8y+5CoCbrr+SsD2Hw8ur1vKTG28B4AcXnstH9p9rZngc\nGuK0c74DwN23mYQ/tl2/tnYTv7n7fgD+5bST2G/uLBwOB7lcjjvuuReAr516Ml572uVkMsmlV/8U\ngOuuuJigfftfJpNhiR3Xi847G7/fT3NziL6+EV56xdwV8tEDFuAc6zEpl98yc6VlTfSrrx+srfdT\nYseam0N7VNJ38ObofYAztNbrdvISSfrjsO2X6f3c2ezovYrFIk88Y8q7HvXxQ3G5TLd3oVDgoUcf\nA+C4Yz75lrPs7S3f0fvk83nufeCvAJz8+c/h8dhd9KkUV153IwBXXXohdXXm7G7bpOXzmTOybXfU\n06e3VGOVTqe5dsnNAFx20XkEAoGdtmlHy3cUox39zTs6+NrR++woFjtaf2ef/47+hm2NbVM7u+Pj\ng1y+I+92/ff6mvGSRDZ+Eqvx2aOS/nsgSX8c5Ms0fhKr8ZE4jY/EafwkVuPzbpN+bfcfCSGEEDVE\nkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGE\nEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTp\nCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghR\nIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4Q\nQghRIyTpCyGEEDVCkr4QQghRIyTpC6PEwmgAAAaGSURBVCGEEDVCkr4QQghRIyTpCyGEEDVCkr4Q\nQghRIyTpCyGEEDVCkr4QQghRI1y78pcppSLAPUAI8AAXaq2XK6UOAf4fUASWaa2vtte/Evi0vfzb\nWusXd2V7hRBCiD3Jrj7T/w7wmNb6KOB04BZ7+a+Af9Zafxw4WCm1UCn1UeAIrfXBwJe2WlcIIYQQ\n78GuTvq/AG63H7uBjFIqBHi01u328keBTwCHAcsAtNZdgEsp1biL2yuEEELsMT6w7n2l1JnAt7dZ\nfLrWeoVSqhW4G7gAiADxrdZJALOALDC0zfLINsuEEEIIMU4fWNLXWi8Flm67XCm1P/BH4CKt9dNK\nqTDmGv+YMDAC5LdZHrKX74yjuTn0DqsIAInT+EmsxkfiND4Sp/GTWL3/HJVKZZf9MqXUfOAB4Ita\n61VbLX8Z+ALQDjwE/AgoAT8DPglMA/6qtV64yxorhBBC7GF26eh94CeYUfs3KaUARrTWJwLfAH4P\nOIFHx0bpK6WeBp7DjD345i5uqxBCCLFH2aVn+kIIIYTYfaQ4jxBCCFEjJOkLIYQQNUKSvhBCCFEj\ndvVAvg+MUupE4CSt9Sn28+2W9q1lSikLuBVYAOSAs7TWG3dvqyYWpdTBwPVa68VKqb2BO4Ey8Bpw\nrta65gfBKKXcwB3ADMALXAOsQWL1FkopJ/AbYA5QwQxYziFx2iGlVAuwAvgnTIzuRGL1Fkqpl4BR\n++km4DreRZz2iDN9pdQvMXcGOLZafBvblPbdLY2bWE7AVD88FLgEWLKb2zOhKKW+j9lJe+1FNwI/\n0Fofgdm2jt9dbZtgTgEG7Lh8ClMiewkSq20dB5TtfdDlmH2UxGkH7IPJXwMpTGzk+7cNpZQPQGu9\n2P45k3cZpz0i6QPPAudgJ3274I93O6V9a91hwCMAWuvngQN3b3MmnA3A53nz4PGjWuun7McPI9vQ\nmPuAK+zHFlBAYvU2Wuu/AF+3n84EYsAiidMO3YA5WdtiP5dt6u0OAAJKqUeVUv9j92i/qzh9qJK+\nUupMpdSqbX4Waa3/fZtVw7y9tG9k17V0wto2LiW7y18AWusHMJeDxmzdc5REtiEAtNYprXXSnjfj\nPsxZ7NbbkcTKprUuKaXuBH6JqUUi29R2KKVOx/QeLbMXOZBYbU8KuEFrfQxv1rfZ2jvG6UN1TX9H\npX23I872S/vWum3jYmmty7urMR8CW8dmPGWga4ZSahqmuuYtWus/KqV+ttV/S6y2orU+XSk1CXgB\n8G31XxKnN50BVJRSnwAWAncBzVv9v8TKWIfpkURrvV4pNQR8ZKv/f8c47ZFneVrrOJBXSs1SSjmA\no4Gn3uFlteBZ4NNQHej46u5tzoT3slLqSPvxscg2BICdwJYB39da32kvllhtQyl1mlLqUvtpBlNa\n/B8Sp7fTWh+ptT5Ka70YWAl8BXhEYvU2Z2CPxVJKtWGS/LJ3E6cP1Zn+O6jYP2O2W9q3xv0Z+KRS\n6ln7+Rm7szET2Nh2dBHwG6WUB1gN3L/7mjSh/ADThXiFUmrs2v4FmPLaEqs33Q/cqZR6EjOV+AXA\nWmSbGo8K8v3bnqXA75RSY4n9DMzMs+OOk5ThFUIIIWrEHtm9L4QQQoi3k6QvhBBC1AhJ+kIIIUSN\nkKQvhBBC1AhJ+kIIIUSNkKQvhBBC1AhJ+kIIIUSNkKQvhHgbpVREKfXn3d0OIcT7S5K+EGJ7opga\n6EKIPcieVIZXCPH+uQloU0o9ADyIKSFrASuAc7XWOaVUH/BX4HDMdKi3AucDU4HTtdZPKaWeAFYB\nh2Imm/m21vqxXf3HCCEMOdMXQmzPt4BezLS5ZwEf01p/BBgAvmuv0wL8TWs9z35+gtb6COBHwLft\nZRXApbVeBJwC3KWUkpMNIXYTSfpCiO0Zm8t8MbAP8LxS6mXgc4Daar2H7X87gL/bjzsxlwfG/ApA\na70S0yNwwAfUZiHEO5AjbiHEzjiBf9daXwCglAqy1X5Da13cat3SDt5j6+UWUHi/GymEGB850xdC\nbE8Rk9yfAE5USjUrpRzAbZjr9uPlwHTro5Q6EKjHXOMXQuwGcqYvhNiePkw3/S8w1+j/jjlJeAm4\n3l5n23m5K9t5XAH2VkqtsB+frLWW+byF2E0clYp8/4QQHwyl1OPAxVrrF3Z3W4QQ0r0vhBBC1Aw5\n0xdCCCFqhJzpCyGEEDVCkr4QQghRIyTpCyGEEDVCkr4QQghRIyTpCyGEEDXifwEkqOqgp2TdPgAA\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Pandas scatter plot\n", + "bikes.plot(kind='scatter', x='temp', y='total', alpha=0.2)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Seaborn scatter plot with regression line\n", + "sns.lmplot(x='temp', y='total', data=bikes, aspect=1.5, scatter_kws={'alpha':0.2})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Form of linear regression\n", + "\n", + "$y = \\beta_0 + \\beta_1x_1 + \\beta_2x_2 + ... + \\beta_nx_n$\n", + "\n", + "- $y$ is the response\n", + "- $\\beta_0$ is the intercept\n", + "- $\\beta_1$ is the coefficient for $x_1$ (the first feature)\n", + "- $\\beta_n$ is the coefficient for $x_n$ (the nth feature)\n", + "\n", + "The $\\beta$ values are called the **model coefficients**:\n", + "\n", + "- These values are estimated (or \"learned\") during the model fitting process using the **least squares criterion**.\n", + "- Specifically, we are find the line (mathematically) which minimizes the **sum of squared residuals** (or \"sum of squared errors\").\n", + "- And once we've learned these coefficients, we can use the model to predict the response.\n", + "\n", + "![Estimating coefficients](images/estimating_coefficients.png)\n", + "\n", + "In the diagram above:\n", + "\n", + "- The black dots are the **observed values** of x and y.\n", + "- The blue line is our **least squares line**.\n", + "- The red lines are the **residuals**, which are the vertical distances between the observed values and the least squares line." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Building a linear regression model" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create X and y\n", + "feature_cols = ['temp']\n", + "X = bikes[feature_cols]\n", + "y = bikes.total" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# import, instantiate, fit\n", + "from sklearn.linear_model import LinearRegression\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "6.04621295961\n", + "[ 9.17054048]\n" + ] + } + ], + "source": [ + "# print the coefficients\n", + "print linreg.intercept_\n", + "print linreg.coef_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Interpreting the **intercept** ($\\beta_0$):\n", + "\n", + "- It is the value of $y$ when $x$=0.\n", + "- Thus, it is the estimated number of rentals when the temperature is 0 degrees Celsius.\n", + "- **Note:** It does not always make sense to interpret the intercept. (Why?)\n", + "\n", + "Interpreting the **\"temp\" coefficient** ($\\beta_1$):\n", + "\n", + "- It is the change in $y$ divided by change in $x$, or the \"slope\".\n", + "- Thus, a temperature increase of 1 degree Celsius is **associated with** a rental increase of 9.17 bikes.\n", + "- This is not a statement of causation.\n", + "- $\\beta_1$ would be **negative** if an increase in temperature was associated with a **decrease** in rentals." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using the model for prediction\n", + "\n", + "How many bike rentals would we predict if the temperature was 25 degrees Celsius?" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 235.309725])" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# manually calculate the prediction\n", + "linreg.intercept_ + linreg.coef_*25" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 235.309725])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# use the predict method\n", + "linreg.predict(25)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Does the scale of the features matter?\n", + "\n", + "Let's say that temperature was measured in Fahrenheit, rather than Celsius. How would that affect the model?" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredtotaltemp_F
datetime
2011-01-01 00:00:0010019.8414.3958103131649.712
2011-01-01 01:00:0010019.0213.6358008324048.236
2011-01-01 02:00:0010019.0213.6358005273248.236
2011-01-01 03:00:0010019.8414.3957503101349.712
2011-01-01 04:00:0010019.8414.39575001149.712
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "datetime \n", + "2011-01-01 00:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 01:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 02:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 03:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 04:00:00 1 0 0 1 9.84 14.395 \n", + "\n", + " humidity windspeed casual registered total temp_F \n", + "datetime \n", + "2011-01-01 00:00:00 81 0 3 13 16 49.712 \n", + "2011-01-01 01:00:00 80 0 8 32 40 48.236 \n", + "2011-01-01 02:00:00 80 0 5 27 32 48.236 \n", + "2011-01-01 03:00:00 75 0 3 10 13 49.712 \n", + "2011-01-01 04:00:00 75 0 0 1 1 49.712 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a new column for Fahrenheit temperature\n", + "bikes['temp_F'] = bikes.temp * 1.8 + 32\n", + "bikes.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAgwAAAFZCAYAAAD0LXfWAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzsvWuMJOt53/fvunRXV1/nuju7e8jl0aEqPJIY24wjRnYk\nChFkSIgsSB+cwHAiGwkFOIwQBIHliNEXB5KtxIDiKAaYQIQjG0Y+BLIcJGEkRFAcUSIg0FIcxxSp\noo4Pz2V3Z3duPX2v6rp0PryXulf1dE/PzO4+vy/bO91V9VZVd73P+1z+T225XIIgCIIgCKIM5bYH\nQBAEQRDE3YcMBoIgCIIgKiGDgSAIgiCISshgIAiCIAiiEjIYCIIgCIKohAwGgiAIgiAq0bZ9AMuy\nvhvAL9i2/f2WZf0JAL8EIADgAvj3bds+sSzrswB+EoAP4Ods2/6SZVlNAP8QwAGAMYCfsG37bNvj\nJQiCIAgiy1Y9DJZl/TSAXwbQ4H/6OwD+Y9u2vx/ArwH465Zl3QPwUwC+B8CfA/C3LMuqA/irAP65\nbdvfC+AfAPjZbY6VIAiCIIhith2SeAfAjwOo8f//u7Zt/3/8tQ5gDuBfB/AV27Y927ZHfJtPAvgz\nAH6Df/Y3APzAlsdKEARBEEQBWzUYbNv+NbAwg/j/cwCwLOt7AHwOwH8DoAtgGNtsDKDH/z5K/Y0g\nCIIgiFvgxpMeLcv6dwB8AcAP27Z9DmYUdGIf6QC4TP1d/I0gCIIgiFtg60mPcSzL+ktgyY2fsW17\nwP/8VQA/b1lWA4AB4BMAvgbgKwB+GMA/BfBDAL5ctf/lcrms1WpVHyMIgiCI150rT5a1bTefsizr\nMYD/CcCfBXAK4H1EIYj/27btv2FZ1n8IZkgoAH7etu1/zKsk/j6AI7CKir9o2/ZJxeGWp6fjLZzF\nzXNw0AGdy92DzuVuQudyN6FzubscHHSubDBs3cNg2/Z7YBUQALBX8JkvAvhi6m9zAH9hq4MjCIIg\nCGIlSLiJIAiCIIhKyGAgCIIgCKISMhgIgiAIgqiEDAaCIAiCICohg4EgCIIgiErIYCAIgiAIohIy\nGAiCIAiCqIQMBoIgCIIgKiGDgSAIgiCISshgIAiCIAiiEjIYCIIgCIKohAwGgiAIgiAqIYOBIAiC\nIIhKyGAgCIIgCKISMhgIgiAIgqiEDAaCIAiCICohg4EgCIIgiErIYCAIgiAIohIyGAiCIAiCqIQM\nBoIgCIIgKiGDgSAIgiCISshgIAiCIAiiEjIYCIIgCIKohAwGgiAIgiAqIYOBIAiCIIhKyGAgCIIg\nCKISMhgIgiAIgqiEDAaCIAiCICohg4EgCIIgiErIYCAIgiAIohIyGAiCIAiCqIQMBoIgCIIgKiGD\ngSAIgiCISshgIAiCIAiiEm3bB7As67sB/IJt299vWdZbAH4FQAjgawA+Z9v20rKszwL4SQA+gJ+z\nbftLlmU1AfxDAAcAxgB+wrbts22PlyAIgiCILFv1MFiW9dMAfhlAg//pFwF83rbt7wVQA/CjlmXd\nB/BTAL4HwJ8D8Lcsy6oD+KsA/jn/7D8A8LPbHCtBEARBEMVsOyTxDoAfBzMOAOBP2bb9Zf761wH8\nAIA/DeArtm17tm2P+DafBPBnAPwG/+xv8M8SBEEQBHELbNVgsG3718DCDIJa7PUYQA9AF8Cw4O+j\n1N8IgiAIgrgFbjrpMYy97gK4BDMKOrG/d3L+Lv5GEARBEMQtsPWkxxT/zLKs77Nt+7cB/BCA3wLw\nVQA/b1lWA4AB4BNgCZFfAfDDAP4p/+yX83eZ5OCgU/2hlwQ6l7sJncvdhM7lbkLn8upwUwbDkv/7\nnwH4ZZ7U+HUAv8qrJH4JwO+AeTw+b9u2a1nWFwD8fcuyfgeAC+AvrnKg09Px9Y/+Fjg46NC53EHo\nXO4mdC53EzqXu8s6xs/WDQbbtt8Dq4CAbdt/DOAzOZ/5IoAvpv42B/AXtj0+giCIu4rnBwAAXVNv\neSQEcfMhCYIgiNeKdSf986GD8XwBAOg069jrGTdyXIIoggwGgiCILbHupO/5gdwOAMbzBbotfeXJ\nf1NjgyDyIGlogiCILZA36YtV/6t4XOLVhwwGgiCIO4auqeg06/L/nWadQgvErUMhCYIgiC0gJv14\naOAqk/5ez0C3pct93dRxCaIIMhgIgiAqWDeBcN1JX7DuRL/pcQkiDzIYCIJ4JdhWVcCmCYS3NWGT\noUBcN5TDQBDES8/JYIanZ1M8PZvifOhc234pgZAgIshgIAjipcbzA4wmNKkTxLYhg4EgCKIAqlYg\niAjKYSAI4qVG11R0DRWDyymA65/UX9YEQlJ6JK4bMhgIgnjpOdwx4TssLLGNCfJlm3TPhw4GY5bL\nsdMxSOmRuBbIYCAI4pXgZZvUt4XnB3hyOsbU8QEAU8e7kqw0QRRBOQwEQRCvEJ4fSmMBAKaOD88P\nb3FExKsCGQwEQRCvELqmoGXo8v8tQ4eu0aOe2BwKSRAEQbxC6JqKRwdtHJ9PAABHe+2XJhxBiZp3\nGzIYCIIgKnjZJrLB2MVgzJJAjbqbm/R4186JWnLffchgIAjitWDdCfJlqziYOR5OLmdQ1RoA4ORy\nhgf7JsxYmGLTyfm6jY08RU1K1Lx7kMFAEMQrQdkktu4EuUrFwTZX6tvYt5icfZ4IedXJmTwBry9k\nMBAE8dIjekkA2Ulsk9VrUcWB2Habk+e6+zYNHYd9EyeXMwDAYT/pXQCA4WSBqeMBYEmRD/dbK+17\nW54Aasn9ckAGA0EQLzWeH2DmRL0jrtOdLSoO4pOrqDi4jsmzyIOw6b7fetTDg30TADLGAmOJIFjK\n13eBl1VR83WCDAaCIF5pNlm9ioqDeA7DdU1mq3gQRNhAW6MsMt9QENTgB6F8vSriWpZdj03CKGQo\n3G3IYCAI4qVmlV4Sm6xei7bdxBCp8iDomgrfX+L4nIUVjvZa1zqZjmYuBhMXAKBpqxsMVaQTRA8O\nOlfa/q5VbhBJyGAgCOKlZ5VeEptMQkXbbsuN7vkBpo6HJQ8XTB0Pnh9cyzE8P8TcDVDj+567QSIv\no2pcRYaOSBAdThdyzG9+dHflcVEy5d2HDAaCIF4JNplMb9qNXuWdYMmWHjSVhSKYwbDapL4qyyuE\nIuIMJy4GY+ad2Ok0ZMKk54d4MZjDcVmSqLMIsPCCzPZ513rTyg3iZiCDgSCI15rb0iQo806wZEsN\noylLtmSTZzKPYd3j6pqCZl3DdM4m9mZdu9K+n53NccrDP3M3xNuPVz922bUeTlxZkdIytJUrN4ib\ngwwGgiBeWzatRtjU2CgLn7SMunTvt4ykB2LT43ZbOoIwlK/jlAlVzRwfnu+jYzYAAJ7vY+b46LVV\n6JqCeztmYtu6rmLOt62+1nGPx/XlVRDXBxkMBEG89qxTjbDtskpNq+HBXouPqyZzGK5HC6EGRanJ\n1/HjlglV6ZoCo6HJsIPRiLwTzMjRMZJGjo66vvqYeu06Groi90vcPeiuEARxo2ySLzDjegjlJYOr\nI6oRTi7ZOviwb95Y3HwVL8E65ZSrsZT5EXEdhiqhKtPQ8eZRD986vgQAfOyoJ++FMHKO9kw+9loi\nh6GsJFPchwueG3GoqpS/cAchg4EgiGulSqJ53b4M7zwZJtQL33rUu5axaloNh/0mgORKvorrKKss\nSvIr2/d1qCL22g00+Oo/vpovE6pKn3sRVUbOhI97p5NU41z3PhA3BxkMBEFcG2Wr5lX6MhQhGioJ\ndcK8hkqbsO5KfpOyyip55rJ9b3LcstV8lVCVuA8i1BC/D3mGTDwk4fkBvvqNF3h+wYy+4/M5fuBf\ne5TY//Y8KsR1QAYDQRDXQlVsvcrdXcVk7snM/lbzeh5d17FaX38VXC3PXLbvdY9btZrf6xnQeKfL\nXruRuw8xbtERU1BmyAwnC3x4MobHvSofnowxnCyw329SL4mXBDIYCILIsA3FvVXd3UXbBsES4xlb\nFRt1deVtq7jNHgbLLfZxqLqHRav5stCPaeho6BqeXo4BAA8POhkvT+k1XAJByM5ZT5069ZK4+5DB\nQBBEgnVL9qpWiZv0ZfD8EL12HUadfb5RV69dyOjmqcUSD/PLCNc13MpyRcrukwg5CNKhH88PsNdr\nYLlk49rrNTK5BkVj7rXr2OsbeHrKNBz2+gZ67XriMy/3/Xz1IYOBIAjJpiV7VavEdVeRQshI0DKy\nYkPrsm1J4rIJVJxT3mp/3XGxXJEJhlPmjZk6fuYe7vUMNBtR5UMa0ZgqMmgivvH+BU4HrKrkYMdJ\n5F6kx5zuJfHWwz46/Jzv7bVzxw6sZzhQH4rtc+MGg2VZCoAvAvh2ACGAzwIIAPwK///XAHzOtu2l\nZVmfBfCTAHwAP2fb9pduerwEQVyNqgf2ulLKjw46194l8Xo0DYopmvSrpaHXHxeTaJ4lJJo//qhX\nIvwUyHGJkMNZQchh5vgYTqJxDScLKdyUN+Y8aeimUc/8rexarQL1obgZbsPD8IMAWrZt/1nLsn4A\nwN/k4/i8bdtftizrCwB+1LKs3wPwUwA+BaAJ4Hcty/pN27YXhXsmCGIlPD9f5/8uJ5+VeSdOBjM8\nPYu6Vd7khFEmvlQ26Vet8rdFVQOpvV4DLSMquUyHHMyGhobOpo4cB0QFy9zXmxlI2zX6iIjbMBjm\nAHqWZdUA9AAsAHy3bdtf5u//OphREQD4im3bHgDPsqx3AHwSwO/fwpgJ4pVBrMZmPuC7XmZyvcvJ\nZ3nj8fwAMydYq3HRpgbS9a2Kg5XzDKoQEs1CcbHbql85fFOktNhrN/DwoIP3jocAgI/c68lKiqqy\nSkYNXiAM1XxPQxkUdrhdbsNg+AoAA8AfAdgD8CMAvjf2/hjMkOgCGOb8nSCINVl1NfayPZAvxo5U\na8zTNChj3ZX+JuJLq9yH9fM9eHKpkR++2VQUqteqSw9Er5Wc9KvGPJq5mMw8/n5kxJSpQArWDe8Q\n18dtGAw/DeY5+C8sy3oE4J8AiP9KuwAuAYwAxDNmOgAGVTtPJ9m8zNC53E1e5nNZeAFmkRQCdvot\n7O93rqT5fx1jALDWMfO2XXgBnl446HaYrkC7qV/pnE4GM3hg+11qKg53zCsd1+EJgu26mjnuwUGn\ncNv4fQCQ2FZ8x9a9VkXHXeX9svcmswVORi70BvMqnIxcfFergbZZ7C0Q5zKZLbDTa6HT5voPqoJu\nz5TbLjUVSx7j2O03cRC7DwsvwNAJsNOIpope30xcr02+V6vyMv/2r4PbMBhaYMYAwAwADcA/syzr\n+2zb/m0APwTgtwB8FcDPW5bVAPNIfAIsIbKU09PxVgZ90xwcdOhc7iCvwrn4rofxfIGdfgu+62EY\nK6PbNttIbPP8ADtdA/6CrVwRBjg7G68c/xa5DwAwuJzCdxYlCYLJ4w5Hc1mNEHiNlY8LsPtwyq/9\nQd+U90F8x26r7XYZw4mLs4uJ/P90Cjx/MSoUeIr/Xjw/QOD5sh9Iy9AxGs4wn7qZ+zCZOIn74PkB\nBpfTxL5N7WY9Ya/Cbz/OOsbPbRgMfxvA/2hZ1u+AeRZ+BsAfAPhly7LqAL4O4Fd5lcQvAfgdAApY\nUiQlPBLEhgi38f5+50aNhW0ltumaiq6hYnDJVqfX6ZKuHvMSYViu1lg0cQ/GrpRJ1lQ1I6N9m223\nizANDTsdIxE6MI3VppFNdDhWCTtQfsP2uXGDwbbtSwA/lvPWZ3I++0WwEkyCIK4RXVNvNAyxbQ53\nTPgOm0yuGu/vNOuJlf5Vth9NPQzG7LiqsrqWwszx8O7xUJY+vusPr603xjarBnRNxduPd0uvV9nE\nXZTjsIpBUJYfsUlTs6oxi/fzqopeN0i4iSCIG2GzzP/qbdedEAdjF8/Ombs7vdIvT1wMMV/48EOW\nwzBfJHtjlJcvhtJYAADH9WWPhVXP97aomrjLhJvW3a+gqErmyelESo7nCVWVUeWNqaoqep0gg4Eg\niBtjk5LNbZR7Zlb6x9mVftlxp46HOZ+oNDVf3jkP09Cw0zVwxlfq+30z49rfpEpi28ZG0cRdJdxU\nNTmvp/AYSmMBYPdkVdnw6oZppPEQhwwGgiCulSr37iYP2+t+UIuVvs/zENIr/arjtgwdy2X0Or1N\nUamgrqk42m0h4BUWR7utgkk4LD1+EdvW0rhLqppCNlx0Qr1O2XAiCRkMBEFcG3dZojdvkjMNDbqm\n4ZJn4B/0W1dI4mMCSc361QWSRIvpRwesn0K6xTRQ3jVytfFtZxV8FT2Em8iTWUU2vGzbqoZpdzU0\ndBuQwUAQxJVYVwr5tsYFlBsyD/abaDbYRL/TyS8PzENk/Z/q+QmA4nqIxlJ516OoxbToGhkEzH2R\n7hq5CtuoGlhF7rrIs3Edk2/ROW0z1HVbVUV3ETIYCIJYmVU8CEL5sGgy3AYngxnef85q5NNZ8lWT\nXK/dQEOPeidclbyOjlWsMnlO5h6mc+5mb15tXOdDJ1HJkHeftlWGWLa/TSb2qkqIbYa6XrWqonUh\ng4EgiJWomnh1TYXvL6VE8+EVSxQ3GdfTk6k87tTxrtRLwveXOL1kE9HRXn4uQdFxq65HmVFQJkmt\nawqCMMR4xkShjIZypXDH198/x2DEtj0dzvHpt+9nxKjKJt8iY+I6vATrJTYGeHI6lnkKV7nHxPVB\nBgNBvKLctJCNiMsf9rn0b05c/jqOASTPyfNDTObxLPlkeWN5aWSAqbPAkosuTZ3FlcY8nLgYTdmx\nu61sD4vVSxCDlFckRK8V83zUtZUz/2eOj8HIxYJ7egYjV7agFudcNvlWeZFuozkZq4SIylDT95i4\nGchgIIhXkG0kH666utxWKKJoVaxrClqmjtE4aj6VXo0XTXKbTkSjqYezoVP6mVVLEJPeCQUtQ4fP\nqyjyzqnYC6BgMvdTSYBKbDt2ziI/In7ON9GcbB1DVlyPTTpwEptDBgNBvKTcRvLhtpPaiigT59E1\nFY+Pughc9l5Rlnz+3xQE4RLnQ2Zs7PfNK7j+mXBTUCDcFB970fGL0DU1MUEyg6G6v4WgaahwPV2+\nTu5bQRAscTbkGhC91c95k3NaZdxFVF2PTcZErA4ZDATxEnKb5YtVSW3rtIquokqcZ11p6Ij1VqtT\nx8NoxqWhc4SbqkoQiySWRXjnoM8+Hw/vrGIQ3tsx0W+xio9GPed61JbROdeiHhirGH3rfvc27SWi\naTUc7bEOlulw110u532VIIOBIF4yNk22u47ji+OkKYvLb8Iq4jzrqgSqSg37fJyqUrtybHyZ1Xni\n+2b3KS4BHb9Pg7ErEzXTktQAMJwspJHU8sJMfkRRNYpp6Djsm/jwhFWNHPaT5ZjsnJXCcy7zIl2H\n92qTKpq8bW67nPd1ggwGgrjDrOtm3VZiWtlK7joe3GXZ+VXiPJvExqexlstXcs8va6gp0es0H56M\nZbXCTrchJ32hsyByFPJ1Fpa5r1etRqkVKFWvcs7bmGw3qaIhAaW7ARkMBHFHuYqi3qox+03Y9kpu\nk+z8k8EMT8+mhduK8ae3FeJL66gEAkIfwYi9jh8vxNyNeinM3SCxkn8xmOFyzIyJfo5gVJE+hHDP\n7/Jt0u55YYwIyeq0MSLO+Zg33LpKKekmE/emVTSbdLokrgcyGAjiDrKJot5tselkskl8e+ZEE3Pe\ntmXGyCrXMt/YUHBvp4khl4bu5WTut5s6mnX2mE3nOMydAOMZW+U39OSjWKzGL7hBcaiqiWMPJ4uE\nkZMOV7wYzDDmCYKdVj1zPiwcwvInjLp2pdDRpt+9Tapoio53F38PryJkMBDEHaYs3nvTD8ZVDIJt\nPri3mWxXNtYyT8+jgw5aRr53QuQSxPtBiFW+54dQFKChs/uqKFGjKTHmstX4s7OpTJicuwHefryT\nGnWt4HXUoXPIDQo/yHborGKdeyu+P+t6c7YxJuJqkMFAEFtm3bK6baomen6QaT2cfl+MI84qBkHV\nOItCA2XGiJj0hQEVn/R1TUXXUDG4nOZuuwmbenreetSTlQ69dhR20DUFU8fHkIs+aZqamzuRZyjO\nHB+eH6BjCuMjSAgzAcC9nSZ22syzkJY09vwQT08nmPEE0slskduhk4io+r28LpDBQBAbsm7To6p9\nlsWpN0GMaeYDvutlxlQ15nUMglX2XTX5Diduokoi7oYvK6vc9sq2jLjYlB8s5fl6foiWoWEZsPvb\nMrTEpF02Zl1TYDQ02WfCaCQrRso8GxHFHohV2KS9dVkzrrtI1e/ldYIMBoJYAfGATLPNqoGqsrpV\nx5y3Ui8a06Zj3vR6lB9ns0lOVCRchSrPR1lPBiHBLKSj4xLMuqagUdcw45N+o54tEwWACT/uTifa\nr2no2Os2MZwOAQB73WbGICjybLBzUvDwoJXIcVhVRVKcc5lB+SoJKFHJZhIyGAiigvikoBl1OVVt\n/2GSX1a3CpsK2ZTlTtxWe+teu46WoeWOq6xKIq0S6XrhlcZVJEZV1ZPB80O8GMylJ2C+8PHxR6E0\nGIy6KntYGPVkSMLzA3z1j17gdMC8BMcXc/zApx5BCDdpKtDmY9JUZLxPRZ4NcQ5vHvUSVRLx81rF\n6MsLDeVte3DQkdvepqeHuB7IYCCIEtKTgvZshIe7qz3oNi336rUbaPEH+VUyy8sm7qoxVeVObGKI\nbDJhlI27qkpCqERGvROSKpFVFIlRiZ4M7iI6dnq/07kvO07GEYJRXb76T4snDScLnA5mCEI25tPB\nDMPJAvv9Jjw/xB++N8BgxK7jYOrh44/6ievx5HSCC/5+XEZb8NajHvo8x2GfJ1aKbauMvqLQUN62\nV4373zXvBJVsJiGDgSBKSDcnmsw9eH59pckXqI7Lb7ONcBFiTPv7HQx5nDs+nqLs/NtWmFy3AkP0\nixBNovb7yWZMwHpeE11TMJws8PyCrdTv77Yy+201NYS810RapwFghkLZmEViohlTtpw5PiazBUJu\nTExmC8wcP1GB8e7xUIYcLqcuPv6olzi3d54MIw/DZIG3HvUSxy9XY1wvNFSVw3A+dBJS2XclV6Ds\n9/K6QQYDQZSQUcUzk6p4m1QNbKuN8HW4ftetlS/rJXEdSW95n12tSmIJIIy9jlg/MTWE4/kQk6bj\npdtqK2g2VEyZswbNRhR20DUFzbomJ/VmPZ24qOH+bjthjJg8HKNrCnRVgcPPR1eVVDgjhLsIIFI2\n3EWQSKgUZZVCsnq+8GVZpfAwPePGxIO9duZaFoWG8gzGdIUGkG+MeH6Ar79/LlUxT4dzfPrt+3dm\nNa9rau65vG6QwUAQqJIkjpQAHx91UUslQK7zULuJNsJFlGV9l3kJVvEgbKuXhKDoPh3umJhP2D3K\nGiqsd8Jej3lNVEVZuZ1zeSgkhFqryfJGtVbLlCd2zYZUXOyaKTXHGmSny7yF+ice93G0x8YcV4I0\nDQ3399rAxQQAcH+3LY0JNmYFDV3DnBsEDV3LGBTx/haO68txe36AqbNAjQ9o6iwS+RFpYzT9Hajq\nZloU7po5vjQWAGAwcjOlosTtQwYD8dpzlZX+4Y6J09PxjY/xKpSt5FcxVMoe+qt4EIr2vWnIouw+\nnQxmeMaTHtPVCsJLNJyyCSmvd0KZC77oepiGBl1X5QT48CA5cQPFq3HPD3E2nMtw19lwnvJOsMlV\nKEG2U9fqE4/7OOgzIyKegyDOd78fGRj7/UbGe7HTNWQOxE7XkONOh+CmTn7L7rKKk6J7WhbuEqWi\nwpBJl4oSdwMyGIjXmtta6YvJs6i98W2zWhjl6h6EdcMsZffJ8wM8PZnKiTtdraBrKlqGLlfFLUPP\nTMxrC2QtIVfj6UKWKu+E6wbwfbaR6ybDBmyl78kqCpaoKSZXFedDVxpItZqCx/e7iWO/cdhBp8mu\nc7+T1dF4+6O7+PBkxD/bTYRRgiCW79FL5nukk4BdL7hyWCnPKKuq3CDuBmQwEMQtMRi7OL3k5Zo5\n7Y3XZdOwQhGrehCqcic2MYzy498hJnNP/j+9KhaTb/R+NPmu0hCpyLMhFBd3u4Y8TtqNvtczsOQx\nibTXY+r6OB0yQ0VRa5mwwdTxYqGBqLJj5nhwPV9qM7iej5njJZpLnQ9d/MunTKfh2x7WMgbFYOxi\nPPPl68R3rwa4C369ammNherKkCKqvntvPerhwb4JIOu9Iu4GZDAQrw3rSBJvC9FRUDQkym9vXE5Z\nCVpZ6EC8t7dnYj7NlvzdRYQn4IMTFg76SGpV3DJ1jMZs8k2HHJgewky6uxd+mKkaKEryrKqSqHKj\n/4F9iqc8hPXwoINPWQdyTAs/gMJ7Yy/8pIdBVElI46ubrexIN7MSzBwP9gcDnHFjxA+W+MRH+/J7\nUPbd8/wQH7yY4HTAjhssa/jUtx8krvVwssAxT8Y8yqkMqfpelnmYyFC425DBQLwWbNqt8K5RlXdR\nFjoQ73lQriR1W2VcbVP61/MDHF9MMJywle+xNsFH77eli/7xURcu1zsoCu/khd03MRir3OjDiYun\np2OZ2Pj0dIy3HnbRazeYNHRDg5hqm42kNDQAdE1dTr5dM9pvlfRzvJMlAAzGDoaTRWYyFnkImhpN\n+DPHx/lwDmfBjKDz4TxTsul4PpZ8qOnKkDLhJuLlhwwG4pVnc0ni62c1vf/rl3feVI3xOoyrGQ8P\nXGU1KbLoxdyWl0Ufn/jiiBLGEfemNOvJ1XpVZv8mbvSZ42PB72E9tl2vXYdSU3A5ZvttGXX02tk2\n1Lqaf43LjmsaGpRaDWOeZ9Br6YlkTNPQ0dA1vLjg3pp7ncw+goKkRpF7IXIr4rkXeSqQaeGmTRVI\ny7hrok+vImQwEMQtUTXZlPUpAKrEdbZHmd5EVQ7DO0+GCSMpLRhUfMxi93+V0iMAoLaEqqjy9arn\nBKxvJJmGhl7bwCnXh+i1k9UILVPDHs9/aJlaTi5ALRZ2yIYfigwu09BwuGPCWTCD4HDHTBgMTFq6\nhp0OM1A0NcrbMA0NmlqDy1Uxd9RapmQzBGQOg5kK/yT6nxRU0RTJSovPsONcbdLfpiFCRJDBQLzy\n3FaewioUlY6l+x/E5X2rMvu3lfQYH5vYVx5FJXcidi7ev0rehnD/P+H5AI8Okqvii7Ejr0fL0BON\nuoQOwz7i6UOZAAAgAElEQVSfRNIyzGJs4jh5FJ3rO0+GeHbO9BAe7LUzBtAnHvfxxoyNpR0LKwgN\nh36XS0PnaDj02nXpUWmbWe9DEZ4fotPScX+XJXJ2WnoqCZQlVKoK23k8odLzQzQbOnZabCzNhp4Z\n137PQJ1/b7ut9LjK+5+UdRzdpLMrNYi6GchgIF4L7mKeQnmTnzAnsz8SG6rK7K/SUlhX6raqMVFV\nyd1k7iW8BGnKjJGdTgMOz97f6SRFkJJOg+REJXQYRlPh/k+uiqsm/SLSionOIkgYQMI4E+/HjTMm\n9azKKpkH+63USp5VOnzwIgobpCsdypg6HjxumMW/R+J6BGGIsyEL0aR1GliybCP2OrntvZ0mmnU2\nVnZ/o22r+5/ky0rTpP9yQAYD8dpwlx4+1SWKClqGlliNXVXIpux8de3qUrdVLuUq0R+RSyAm0LQc\n8irGiGgVHYTjxLF3ugZ8bkykJ6oyHQYx6QtjIj3pl1+PYsVEwWDsSs9HtnS2hlBkD6ZCDjPHw/lo\nLnMFzkfzROlkFS1Dh5CYTIcGAADLGqRU9jI6tmloeHjQkobMQd/IGDKPDjo41bP6IXneq/R3rKzj\n6LrcZQ/iq8atGAyWZf0MgB8BoAP4uwC+AuBXwL7BXwPwOdu2l5ZlfRbATwLwAfycbdtfuo3xEsRN\nIx7MefkAIiRxfM4e2kd7rRt7QJa5lNOKir1WI2PkvHGvjYM+mzTjHoZVjJEXg3mi/0HUKlr0kmDH\nyqvemDoLhEshghTJHXt+iKdnE8x4C+rxfJGZ9IswDQ07HSMhchSfXEUIRmgpxEMwM8fHcOpA5TGH\n4dRJJHEKY0TjzanyjJFiOXPmBbjg+97tJu+D54dQ1ZrUcVDVKETDRJ32cNorFxQrSjBdJYE0T1Z6\n00l/Uw8iJUyuxo0bDJZlfQbAv2Hb9vdYltUC8NMAfhzA523b/rJlWV8A8KOWZf0egJ8C8CkATQC/\na1nWb9q2vSjaN0HcBus8bFZ5QBZpKZSpAG6f4k6FYiWfdP1ncysE6XNOJ8zFjZEqDndM+M5CHidO\n2tjwg6U0NsR5RGkXq3df1DUVR3stWTaZZ7hN5h6m3BjJdKtcQhoE6XA/k29uyP4KO91GwhgpS4hl\n96GOM5nTkW5hzjQexH1KazyUTb7CsBNll9dZcbTppL/ucSlhcnVuw8PwgwD+hWVZ/wuALoC/BuA/\nsG37y/z9X+efCQB8xbZtD4BnWdY7AD4J4PdvYcwEkcsmD5sycaXsviMtBZHfIFZ58fyGbdNr19HQ\n2XHTOQgit+Joj1V+XDW3AlgiCJbydRyxah6M+QTayXov1ptkFPTbdSy4MdFv11cO/YjzfXTQBpA9\nXzExn4/YxG002nLfpqHh4WELT05YBcXDw2wOw9sf3cuVDi9LiBXvH59PMeJKjsfnU6lZIeiaulSg\njGs8rMI33hvg6RnL+Xi4384Yduu0Co+f901CuRNX4zYMhgMAbwD4twG8CeB/Q9KsHwPogRkTw5y/\nE8SdYNOHTZm4UpXC4Cr5DWWeD88PMjXyVduKUMgFn7QPVTXfXV0x4QrXenbbmvSa5Hsv6hhOI92C\nVa8zMzbMVHgnajMdhku4fExhuLxyrkgRnh/CWfgyFOIs/ITrPwiAS34+R0HWO1FkXAmDURhXaYNx\n5vgYjB15DwdjJ6NZ0Ws3oHLvRroCo8wInjk+3nsxwpDrR3hBmNh3lXBTlReJQgN3m9swGM4AfMO2\nbR/ANy3LcgA8jL3fBXAJYAQg/m3rABhU7fxVUhajc7k5xOS5SiKgOJeFF2DmJ9/b3++stI+FF2Do\nBNhpRKu7Xt+U21btWzPqOOeJaXt9A4c7ZuKzJ4OZ1CboGmriffHeB8/H6LbrudsOJwu+7+j9hRfg\nwAnQarMJxDS0xJijcc35ts3Mvr/x3jmen7FV8/19E594vCf33btwoOrskdRu6onzjY7d4MfWM8fu\n9dmx8q7/0A2w5GWED++18eCoDwC4GM7R75qo8/tgNnQYZgO7vWQHyKLvx9ANovPZMeR+xb5db4kl\n13N0vSU63SZ2e01cDOd4PphLs+j5YA61rsnjxr9j6eMuvADfPB5H97/bwNH9nvxMs9XA2PkALy7Y\nuO7tmrh/r5swDN47m+LZBdv+Y2Zdjlt8L9tcMErTlMR1dsIQYVhDnVdJhGENDVPHwUEn9zu98ILE\nufQuHHjcJux1m4l7XPS9izOZsfevUmZahWbUMeLHzfs9xLnrz7FtcxsGw+8C+E8A/KJlWQ8AmAB+\ny7Ks77Nt+7cB/BCA3wLwVQA/b1lWA4AB4BNgCZGl3PXWw6tycNChc7khrhJWSJ+L73qJbVctU/T8\nAAMu6CMwteTKyne9xKo4vu8agJ7BJqKaHyTG5PkBnp5NZQLh4FKB7yxkSeZT0Qa638L7TwbyPbHt\n198bJBIX3368I7d978mFrFTotvTMmC+GDi75mGtBiJofeTFmjodvfutcroxH4zlMtcZ7GARAGMAQ\nuwoDnJ2NE+N678lFwqsSP/ZSU/H+k4G8D2lvzWTsoF1n12sydvDs+BK6xho5jcYOxlxW2jcbGI/m\nCBaRtVb0/RD7FWOO7xdgCaJzdwFXJGpqwMXFFMHCx/HZFM9Oxph57L3Z3MOTZ0MEC19+x4ryFDw/\nQC0IUFsG/Donr9Vw4mI0ceG67D6NJi6evxihx42tmePhWx9eytyKb314iYf9prwP7z25wPlIGCNG\n4jq7Mw9KDVgsRKWLCnfm4fR0LL/T8bLZj9yPfi+eH+DD4yFeDNj3eD5b4OGuIb9bX39vkPA+iO+d\nYF3RrypqYL89IPtbinPXn2NXZR3j58YNBtu2v2RZ1vdalvVVAAqA/wjAewB+2bKsOoCvA/hVXiXx\nSwB+h3/u85TwSFw3tyWVfB2lYGWfL6tmKCPdqMlZBIlGTaOpl+hTkNy2updEkQ7DatejJlfcrVQS\naKXSI/JDJbqmYL8faTqkNQk2+X6w/IiGLFuM50eYhgbXC+TKVm3XMmqMT04nMjExnacAFMtGM1Eo\noMFX7motCgOJ98vKQZ+dz3DKJ3XXC/H24135nmloeHzUwXvPmNH3+Kgjxy20I+LNtuKeEc8PccbL\nQwHgbDRPCEYV6Y4AUcWJYJ1mbWVU3c+qEN7rwq2UVdq2/ddz/vyZnM99EcAXtz4ggtiAbWSFb97I\nqRZLIIzyAVY1VETmf3JMxeV4cYokq3VNQTMm79xMdXesMr5G04UsYRQqhauQLudLS1a/cdjBDl99\nX8XVLXI6ihU3Fbx51MNZk010+31Tnq/nh2g1dSGVgFZTz0zqLwYzTPl9YmWk8Q6bxbLRpqHBD5cY\nzdgEbDS0VC8JLhrFExcf7Lfl+zPHh+cF6JjsenhetmU3AChKtppEtN0W6o+u58sQgjgntVZDhydZ\nxtUtr0N3ZFsID9PMx5Watb2KkHAT8VpzE6IvZbLDVcfaRr+IvZ4BTa1ht9tAsMjW8DcbmnRXxyf1\nqod61QQKAG8ctrHDmyxdVe64aHUqdBiOX7Ac6SLtgDzJajFmIVRk1PNLQfOMDVElYTaEEFG6SoKV\nmV5w4yZeZqprCg53mmjybTumnpkgp46H80vefryWnKDLBJCYvLOGHje+8jphoraEtAljMpmiZ4cw\nVIxGsmpk5vh4fj7DhL///HyWMCjKlDxZqaiBM+4p2OkaCe9Eke4I27a6Wds2EiapiiIJGQzEa882\nZaPXb7bEJrJnvHXyg712ZmzlD8hiTf93ngxxfD5F52SKdl3NjKlr1mWMuhub1Kse6lWS1ekqi/Tk\nXKYtULY6ZdvO8Zwn+aUVFdNliK4XJrp3Hl9McclDA5qWLUEs4xvvDeRx7++aqR4WgRSJApKCUb12\nA/d3W5jOh3zblswxEAxGDk55SaYSG84qRm6zrmLZasjXcWaOj+F4If0Sw/FCTvqmoWOv25QG4163\nmdIACXF8McWE57G4fpjwEqQ9SHVdxTw27qPdFuZ83Ee7ycqQqt/hW496UvQrfa2qGrVVQdUZq0EG\nA0FgOw+KTeKuYrIRKoHxyQZY5QGZX6IY73+wCIET38+MaTRbyBr+ej2ZNrSKcVXkDSk7pyptgTIh\no5nj4ZvvX+J0yKamhR8mzqksPs7aZjvyWg1GacXF4tDQzPHxfDDFmLv+UVtm1Br/8FsDeZ/Ohi4+\n/qgvz3enU8dBjxlkO5164v7OHB8Tx5fXauL4mDm+PKcyDQ/T0NDrNDDnRl+vkxR9AoDBZIHLCbuW\nXhgZlJ4fYK/XQItnchoNLTEuzw8RBktZKhoGy4Th9sZhGwe9rJKn2PfxxRRTl33++CJrnBWX3CaT\nT/1gmUgCjcuGTx3vyuXNZSJYJDsdQQYDQdxBRF8GEaeO92VIN3nKf0AuY/K9y8R+yxLePD/E3PVl\nl8S5m+wHUUZVrkD5OZUnvZULGYX44PlIljdOOl7inEQoJU/0SdcUBMuljLV3WvnCTXmhIc8P4Xmx\na+eFiePOHF+67gFgMl/ISd/zQ3ztvQtZGjl2A2lMCAxNBYwaf50cU5mGBwA82DMhNskrE/T8QLao\nFqvrxPkG2U6TALtemqrIHBdNVWLXkt1/ca3SvSSEcSZIG2dl3rgy6XCh5DmZs+9PXDa8iipDFdis\nWdurBhkMBLElRNz1mIcVjvZaK2d1i74MF/wBuxuT761q8gQUdw2skhwGmAaCaF+c1h3YxPUrzile\nOrdqfgRQvqoeTByMZiLenz6uCj9A1MPAbCRyCfZ7TYR8gtzvNXPzMvJCQ6ahoWVGyYotU0+pNSro\nmnWMhTFiRsbIzPFxPnSi6o6hk/Ag9Np1vHGvg2e8BPbBfgs9nvuxalzdqOd/1zw/hKGr6PL9Gbqa\nWNm/dzzGBy9GAICP3OsmumQyAyuU+Q/BMszcp6L25mxbSM9GP2a4reKNK6v8mTo+hny/tVq+vHde\n2KFKBCsa+9Wbtb2KkMFAEFtkp9OAHwTy9aqwSW4pY+vdVnKSi/ds6KZWxWVu1PhKvddroV5bZpLL\nGrom4/IfvdeNufaZZ2MoS/28jCRxWWUHy4Fo53oJqvIjgHKp7FajDqfJJhOzoaZW+ix7X1R3uJ6f\n6PzYNesyrt5NJWKWhVF0TcF3Pt6TJYgHO2biPvTaDbTNuryWR/vtZOw91iUy8Zpfj48/6kPlCYlv\nPuxnrkc5xT0/TENDq6XLkEWrFRk6w4mL0dSV/x9NXQwnbkzDwYemKGjykIWmKNxL0JDfjwtujLpe\ngDc/GpVk6poCo65AeLyMupIxNsTEHVWAJM8pr/KHsYz9LesdKdLSEK2+pfepm5UcJyLIYCCILSEm\nUBHLvUqGdTTJRSVqYpIT2fdFTZ6A8lyDMher5wfQVMgyQ01FLM+AuX5FQhzTaLh6D4t1Oh2WuaRN\nQ0OnpeNyzPbbTq30gfImUM/OJ3h2yq5DAODtxzux4xZ7c4QBJCSW082nZo6Huq5gnyfq1XVF3kPT\n0LDXbyA4Z+ez1096ekSDMZ0rX8YbjFWFfgR5pbHs2irY7RiY8/Pa7SSbT80cHwu+Gve1bE8PVa1B\n41mYqlpLeL7ePR5hzL+Xl1MXn45pF3h+iF6rAYXvstNqyGspDNWnl5GGw1U0FsraeVd5ZLpmQ5a3\nds3VjfrXETIYCOKOUlSitkqTJ6A8kbPIxSomyAbPrE+HO6ZzX6oi5u2zLEFsFW2JsjEPJ4uEV0W4\npHVNwcce9hDySe5wN7nS1zUFQbCU4zbqaiI0wMoEWZgkXSYotj0bci2FXnLfg7GLi7EoydQylR1P\nTyeY8YnZS1UU7HYa0ojZ7WRbUMd1GLwgTOkwlDOaudKgSK/W2cRdR11lSn9NnlMhjK9e28ApVyHt\ntZMtu01Dw9FeG2cqSzDd7zfl+54fyrwIAHAXSbEjXVMwnCzw/IJtex9xY4MlWzb0qL9F9ju9jCXy\nJktB7+2YGHG56rTHrYqyElUiSaHBYFnW9yHPt8OJdZckCCKHVTKsi8q5qkSOgO083MryDAC2Og/5\nyjXTrhmrVVGUaUuUlbeNZi7OhiJPIflo+thRD1wpOyc7P0SvXYfBjaBGXU0kW45nPlw+sY1nyXLN\n6FhK5rgi7i48JrlVMLVYAmFs3vb8EKrCjAaACVGlY+dTx4tVYNRi25YbXixxNcCSH3DuBqkEUt7e\nWlbCJL9bn3jcx9GYlcb2U2E0XVPwnR/bxQue03Fvr5XIQ9ntGglPTl1XZejD80M4ni9Ldh0vaYzG\ncxSCcJmrThqG2SlJhrr0bKhLvF/kkUm/97pXQVRR5mH4GygxGAB8/zWPhSBeOcom0KoeFkUlatdR\n6lUkdSsevvkPV2bEXPDyxTwjJu88438vE3Yqux5iEgxCNub4JKhrTLhpcKnlXg+RUBnJSifFqDot\nTbZ67rSS5yQm9n0+FlXJV7fMP18FDV1DEDAjp6Fnr1eZYmXLiClBriGBXMvE+WMUyHSIe3TO73E7\ncy1ZOKzOja94OMw0dLx51Esk+bbNOua8L4nnh3h+ETWYClOS1WV5FwCTJRceprzrVhTqEhQlY1a9\nR0QUGgy2bX/mBsdBEC8tVaIveX+viqsKo0CQngTLKgaqxiUqHYZOgFoQZgyVMiPnZDDDc97lUL9i\n1rgIpYhVdTyUskrmP1txsxWompocDndM+M4id8xlVRKmoeH+rgl3wWSS7++amUqHIo+LqIJ5ds4l\nlvfamXsxd304fEU9j5WzMuNLjSlqqkiHUe7tmGjWs4mtVQajrilo1jVc8gqbZs/IGkFqLTKCYhLf\nnh/gj59e4jmf9BfBMqGVIJJAhSGT1gd561EPD/ZNeX3iiDJUISudLkPtteto6GyceV6iIlnyao9L\nsgzZ9YKEcFfRe0SWyhwGy7L+TQB/DUALzC+nAviIbduPtzs0grg75NWqA1frdHlVhIQzkK9sV1aH\nX9ZhUdSdOwEQeNm6cyDfyBlOFjgfOhCLu/Ohg+Fkgf1+M/PZIoryEFal6D4UjRmIEkiFAZauksBS\nkQlzWKb7XxRXdgCs8kVoLaSrYGYOO44IJ8wcL1E62TUbMuSUTraTnh4jP7GxKvQzcRaYcGNk4iTF\nt8pKWIeTBU4HM+n6P+Utp8U9FomvoqcHy61IelyKDFghhy08DL120gjy/aWsKHl00Mn1EpWV3RZJ\nUpclrq5SokxErJL0+EUA/xWAnwDwSwB+GMA/2uagCOIuEdce0Iy6dJZu1smwOtNdSDgDzL0rhGzK\nKgaqxlUlkCQo85qoOY2H4pT1zhjNFlG3y9huVgmzzFw/Wum72X2XjfnFYCaz9zutyHPDkh4ncLkA\n0/PzSW6zpTx3t+cH+Pr7F1KMaDz38Om37yWOvwSgcIMhHd8dzVycC5nsRn4+SJkXqdhA8jGcLFDj\nQx5OFqlETlbCml/eqmDq+rkiV4J3ngxxxkMWl+Mm/ux3HeWOI02v3UC7WcfJIAp3CEPY8wMcn0+l\nbLiqKAnPRvmYWZfMD16wCouP3OtktCPK9T+Kc3aIJKsYDHPbtv+eZVmPAQwAfBbAbwP4b7c5MIK4\nC6SV4NTjER7t5JexXSdxCWeAqdfFE+rWXamLldpo6sEPwtyV2vnQSTyYhXeCiQm18eEL5oJ/415b\nigkJiowcQOQDRM2a0vkA5WWVIcYTD+6CTbvjSVLN8WQww1MucpTr6VnWEIiEuWU8gTDEeO5FSY/z\ndCvocmnowciByw2VtHKhaWjY7zVxGvKKgl6youCDk4lsLhWES3zq25OGW5UXqYqyBDQg3wjSNQXL\nEHC4fPOyhcT3YzhZwFn4qGvsPJwFM05WKYGcOR52uw3UVfadaLca0tMzc3wMxo5MqB2MnZUNt5nj\n4Xw0lxUU57xJmRhTeV5O8XtxqL01YyWDwbKsXQA2gE8D+CcADrY6KoLIYdMGMetsn1mRzzx4nbpM\ntls3+XCVTPcyCefRLGr1nKdsWCbc1DLqUnypZWRLH7/+/rlUgjwdzvHpt+/L8z3stzCQSYtZ3YF3\nj4cJid64kaNrCoZTF8/PeVndXjNjrBRdP88PoSiQMW5FiSZ2zw8wc4JCjwsgqjvq8nV0PAUds47l\nMqvGWIWuKZg4Hs74pL/fT67GdU3BG4eRTsOD/aiiYOb4mM48mWw5nSXDFat4r4o8Oaw0so4x763Q\n26tnNB6K9s2EmWow62zMmlJLjEvXFLSbOiZg+243r7Yin8w9OEJOex79rnRNwdjxcDpg3+mDnXTe\nRbnXzHHZuIHsbwUo99ZUeXKovXXEKgbDLwL4nwH8GIDfB/CXAPw/2xwUQaTZNFdg3e3TsdP0A3LT\nTpdFJYZCwlm0XT7oG4nVKUugY9vm9XsoGle8o2SvZ8JNJa2xVbOLBR/XYOTKld7M8fDByRhTlxle\nH5yM8YmP9hNNni5GjkzuW3hBarUewnFDGR933DAz7iKjzjQ0qGoNjsdj/u2kONPF2MGHJ8zzsds1\nEh6XshJVkfQosuSzSY/loaPlsgaxll8us6Garqlj0W3I1/ExBcul/F7Vc1QPAeCSH7ffSX5fq7ug\n1mL5HtlxlWlaHF/MZJjF9ZeJce33m+i3Danm2D8wVs5hEcmYMtEzVc7pOoG8R66TXc0PJ4uEVLoY\ns2ib/fyCeZju77Yywl1l3pqy96i9dZJVDIbfAvCPbNsOLcv6FIBvB3C53WERRMSmP9pNcw3iksUf\nfdBFLZV4t87DQyR5HZ9z2eCUSqCuqTjabcP32WR0tJttuVxWklc2LlHv7kNB4HmZyXUy96X3Yj+W\nYT9zfHx4MsaMP/DnXpBZfQbLpRQqqteTmf+eH8L1fBlbd73kSrCqT0WzoclwRjMV83/yfIx3n7H+\nB47nJ9QaAVaiusPDJ+2U/HPb1NBr1eXrVfH8EJ2mBqXGxtkytMzKdjT1MORaCnU96dmoawpEOkhd\nSxoMuqbia+9e4N1nrP31mw96Mi4v9B9E9UVa/2Hm+HjveIRLbhC8dzzKuPdHswWec0nruD0xnCww\nd32Is5i7LOQQSUN76HfqeINXQvQ79WQCKco9ed1WHXMnMlQEM8eHptWw14sqaOLfLQB4dj7Fs1Nm\nFDheIO+xrqkwGzqm3MgwG3rGCB3PFwmPXbxKggyC1SkTbnoDrCriSwB+2LIs8dYQwP8B4F/Z+ugI\n4g4QX60f7pg4PR1vvE8h/SvirnHpX/G+ptXwxmEbQLIEkZXcNWVYoXdFZbuqevdlbQmfx5KXKYGk\nhRfA4Wp+mpbd9qDXRIOfQ3xCALguQV3FnHsoGjGDoqpFseeHaBs6tD3evbEeTc4zx8fTs0mk1niR\nVmtkxtmIT9xGPStyJDw8aZGjsgnFNDR4QShX23VdTbn+Q8wXPhweOpg3I0VFzw9x0GuiLqtgjISx\ncXY5x7PTifTGPDud4OxyLlfzRUmc4nqcDx2M+PUIQ9F2WyQYhjgbzmWHzrNEiWKIpZR8YtqKaS/R\nxciBMJkvRk7G6It78g4OOomxPTuf4JQnPcZluE1Dg6opmPMKCrOZ9CCx5NSpbOT1/BwJz9f/+86J\nDGcEQZDwfAHAhyfjRMO11XN+qL11nDJz+r8E8BkAD8CSHAU+gP99i2MiiASb/mhXqUhYZR/XiciN\nEElcRdUKeWqIwuvRKii5q0JI4fb7JiYTJ/Ge54dYeAFqPLYeDyvomgJdVREu2USkq/naATo/p3iH\nTfH+fq+JgLv/450hRblePMkzXq5nGhp0TcUpz5/omI1EiGbEV8YAUIvlN7D3i/UfBFpJ5cdwssD5\niB13r9uUk43nh+iYdVlh0THrmXv4zpNLPOdepPvThawoMA0Nw6mH4wuRh5I1NqaOBy8Q4Y5kkmdZ\n4yqA987gk2v6GyQknEWrCXcR3eNeuw5D06SXyNC0RGJrldGXNq7iiYIzx4fnhdLD43mhnPRFfwun\noL+F54eYzD0ZKpvMo+txdung+fkMHvfGPT+f4ezSwUfuR6EyMV4gK/pV9Wyh9tYRZcJNfwUALMv6\nz23b/oWbGxJBZNk0V2CbrJNMWVVXXvUgW+V65CXFxfcrXqe3dxaBnASdRTL8Uq8rss9EvZ5NWKxq\nitU1dfh+U76+ErVYR8KY50Pn7nzhrdG1bD7AcLKISue8MBGzv7fTlJ4N5j1IbhtvTuXGXOEAM/RE\naCCeHCuO+WIwl56PF4O5rCiYOT50tYY+9w7oai3hFem16+i1GlIVs9c1EhP3vd2mvH5NI6s74C4C\neNwwixsE4pzDEHK1Hs/pYB0lVeiq8ORkjcL9blNWlex3s4mrReiaAqOhyethxI4r+lsYOsvFiMt3\ni23bZh1ByLwEbbOeGHO4XMLjXWHVlCELsNyjJu81ke6tsYoImq5Re2tgtRyG/86yrP8awL/FP/9/\nAfhZ27anWx0ZQaSompCLJu5Vmh6ty/rJlNXtnNetwwfKk+KqVkxGXYXLH66i/4J8T1fR4vkDhp69\nzppWkx02i5piLXMK/qombrE6FZNmenXa7zQw5Ncyv/nQEnNZa59Manx00CkUSBLNqYQxkG5OBQAF\nTSExc3zMFwGE6vB8EciVOwDMPV8ajHrG+FLw8Tf68vq/ca8TS9RknR3PuDHR7xiJ78fc9eEFoRyX\nF4QJlUlAhJpqsdfRmBW1BrPJ9qdIQyYmLFVbosHLKpOGW9bIjU+ypqFjr9vEOc+PibdOF3oIgrQe\ngmlouL/TQsg9Lvd3osTGXruOB/stPD/jnpx9M2FcCUVOUe572E/2+9i0fPV1YhWD4e8CmAL4K2De\nrc8C+O8B/HtbHBdBXIltKi4WUSWgVEWVl6BID6EKkRQnyGuKVLRi0jUF/XYDHvcs9NuNxEou3oyo\nnyPq8+HJRGbY76SqFQBgNPMw4bkE6STPsolbJFSKZkz9TtIouLfXkk2N0oqLAPDsfIZnp6yKYhEs\n8fbjXflemWEmOkyK0sh4x0nBssBiMA0NuqpgURMhnCgur2sK5k7kwm/Us6ti1ABDGDeJxlWss2PL\nYFbjMeAAACAASURBVGM2GlrGMFNqNahq9Dp9TipqaHIjRUXUcEvXFKhKDSrPTFWVWmJcordGpym0\nNJJNs8qvZYCTy5nMnTi5nMXycqr1EB7sN9FsKPz96B7rmoIHe2343Cv2YK+duZY7nQachZfZlpIe\nr8YqBsOnbNv+ZOz/n7Ms6xvbGhBBXJVV+zJsI3Ep3mGvZWhXljouQughyLLKmB7CqgR8NZZ2wZah\nawrCYIkZF+4Jg2XCYHjzqItjnU28R/vtzGQyd/1oRZ0q9xQTr1jh5wk3FU02uqbA0HUA7B4aelKt\nzzQ0Oamny/VEwpwIrzw/nya8BGWGmWloONhp4oJ3ydztNZLJeG6AMb//ppsM37BtDSz5BTnYiUpj\nZ46PdlODWmPVBk1DTekwsGvV5yvlvKZXeeqQAPOwNOoKFj67Ho26kkhA1TWFlc9OIsMtXma62zVk\nOGO3m2xvrWusRfXTM/YdeJj6DqRX6/Gkx+FkgQ9fjGU+wYcvxgnZ6TIpdPG3hh4ZSQLRZ+Jwl/32\n4n0m2PtJ8bUgnJBRsCarGAw1y7J2bNseAIBlWTsAvIptCOJOsb0ciPKKgzLKvCIzx8fT0ylmMU2D\ntCu8WLiHuaw/uIikcvNWe3nKdTOHubN7bT5xBXHXP2/ixDPZD3byr2VQsOJmk42H00vmGj7otzKT\nTVFZJWtRraPZYBNQXU/GuBPFHKnKDjH5yhi2Eq2oPT/A19+7wAkvMTzccfDp74jknU1Dx0cOu/C8\nAbuWh93EpD6autLdP5q6mVwBhIDPO2wiRGJiVjUFrs+uZVvTMxNzEIYy7HC0H28jXd18SiRgAlkx\nKs8PUVNrqAvnhZps6f3osC1bazziVTrxbS8mDkbc2GgaTqzCojzpEUh6mLwg+Z0sUwkVlS5COvpQ\nVRPnXJajUCaHfh0J0a8Tqwo3fdWyrP8V7In45wH8za2OiiCuwKoehG08CETFAZBf0VDEKq7Q+SLA\nnK9eaym3clmOgucH0NQaTO5y1tRkLkFVt0qzoUl9AKMeL23z8EcfDHDOV9vhcpAoX9M1BUGwlIZM\nOg7NVoJRq2ZVRWKyiXcNTJdViiRR4TWJJ4mmGwilSyPZPapHwj7tloxxzxwf7zwb4pKX3I3mHj75\nbXvSMBPXUiQnxq+l54eYzj143BU+nScrGYaTBQYTF2HILuZg4sqkR11TsNtuyo6Su+1s8uDJhYNn\nPC6vKtn8lrLV+E6nIVUk80I0zsKHy6sKRNKmuM4fPB/jgxNmbC6XS+h/8qF8f+b4uBg6WPB8oYuh\nk9FLKELXFGhaTeawaFoU7hAqoUKoKq0SWlbpUpWjsErjqipIGpqxisHwI2Aqj98HlsPwYwD+DoC/\nt8VxEcSVWMWDsIm0dF6XxG2GOlguQV02BOjHOvtV5Sh4foh3j4dyYp95AT7+qBebmIu7VfbaDSiK\nIieqtx715YQ0nCxwOXZkWeTl2En0EWBegLpM1Etnugvy9KaqugayCoxiSevJfIERj43nhWDeetRF\nn3tN4sqEnh8m6vudlJiUuJaiGdN0EV1LgIkxaVooX8eZOT6WIWSuyDKETHr0/BDH5xMp6nR8Pkmc\nryjlFIbi+WiecN+/82SYaKsdNxhZeEaRqaWqomSUDwHZRDPB2aXDdCzcSNPi7NLBUSzUtox50uKv\n81br6TyZXqsu82N6sTCJ54d499kwSnodu/juT9xLbFtU6cKO1YDPqyTSBlJZgrHMQwqK85BIGjqi\nTLjpHwP4E2A6DH8y9tZPA/hgy+MiiAxVE37ZZL1JUmRRt0pg/VDHKm7lN4+6ODWYS/pgZ/XyNc8P\n8fxihuFYuH6jsjrhnmUCTD4WblL/YeZ48IIAdT7pe0EglfxMQ8PM9aQhspeK54uVnMsnhGypqIJm\nQ4Xjsr81G1HsXGTJx+WK070EhKQ1kF+BURN3JkeXoCz+7ftLLLmN4PtZoaLLiYsRD8PUapHGg2lo\naBkqRjPh9UhqKez3Dez1GzjheSh7/Qb2++x7N5wscDlxoXHr6TLmfRCw8tZAHleQbkzmLIKMwbjb\nbUCYDP1uI5OoudNuQOM7TXfvPB86WPAJNPCdRGWHaWhoNzRM+H1qN7RcYyQP0dhKRKyWsRCNSCYN\nuVckL7k02U4rei0mfXFf8yb9st9pmahTPLHZ8wNMXvOkyLI7/ZcB7IC1tP4pRAFaH8Dz7Q6LIJJs\nMuFvkgktVuTDKW+729Az3SrXfXiUJ/mxFfWoLtz7kUEhXLDxkERSmjeE5y0hHqqeF02CImnt+cUM\nTcNBz8yWL374YiITBD/0JymXc3HORpTjwK5Vt9XIXJs3Djs46LFJPz5xr6LhMJy4ibLL+IO93ayj\nzz0h8eZSclwF8W+RMCmMUTPHXe0sAsy4276xSJWZNjSYOYYIwIyUo902hiN2Tke7bemtEU2cLvm1\najeTBpLodCnaSKc7XZY1JmMVJYDD/xYskdl3r13HJTeCeu1kcypFBZQgep2mYagw+Pe2YWQlmOPl\ny3E3vueHMA1NJmCaMSltXVPQNnQphd7OaTPdazdkOOsq4T9B3u+0TNRJIDwbwiN3XYnNLyNlwk1D\nMBnoP39zwyGILLdZ+sQUCGfyAa2dTnGvcz2hh6qmN5pWwwFfkaZX1G896uEB1/PPqyjoxHoidMxk\nvJ81cGKRZOGCT5xPDVEr6MTK1oeq1NAxo8z9eI3+zPHger40CFzPz7QZ7jTrMk590DcTrmFNq+Fo\nz8w9X4D1ZZAdOlPn+2C/hYXLruVOqtyzzDthGhorufMid3ZmxbysySTAdGvsxSJEjSd8LBbJVfFw\n4mLqLuQEOXUXGE5c9NoN7PebcBYBTi+YQWDUtUSoRNcUfMfHdvCtY3b+HzvqJhImdzpGot9HdpW/\njOV+ZnUvZnNf5pqI3iAAMx4OemaUmNpLahp4fgi1VpP3VK3VcjwB+eiagqnj4ZznbcQbbjFDooHx\nXBiEae9VeQfWTRIX200ddT6OfHGmJfwghB+EqFU2DX+1Wb3TCkG8pKzyQNm0dfZVWcUISpRsekFm\nZVOUaGYaGt561MNzPhnd302uTtUaK9drmQYcZ5F44JuGhrahy2t1z4i2NQ0NTUODzxMPm0a+O7qs\njPNfvHuOd5+yhkqXEw+fiSXUAcUrR9GXQTBfRIaOrqlot3Sph5HOb6hip9uAJwyGbjZBELXY5Juq\nwHAWAdxFvirmzPExm/vSoGCTNDOwjs+m8INIiMoPQhyfTWWugK6p+PBkivees+RDTVXxr751IN87\n2mvJapR04zKps8DFl+I6C4DIj3BkCOd85Mj8iF67joZWgxCUbmi1jDT0bO7jdMi8W3U1mvSrhJs8\nP8TF0MWUGwUXw6iqxPNDHO2bsoy0yb0PV1U3LSPvNy4qil7w30peRREQC3e95pDBQNwo68kob7cB\nTFm4Q/RHEK7yo4NkKeAqrG+MrFeyqWsq3v7oHg56kbZAFM5Its3e6WZX1M7Cl67heAa9aWj4zo/t\nyoRIFjfXYu8ns9WP9lqJh+/Z5Rzf/HAAh0+w3/xwgO/82C72+82V73FeyabnB3j6YoIBv0eNiwk+\ner+dWIH6/hJPuHDTo4NOat81mbORf51rUGSvieT7hq7A5e55Q0+70Ouo1Wq44H0o7u1Gq3XPD+EH\nS2h8HH6QzJ04u5zj2dlETlTPzqLmU8Jjst/L9z7pmoIQwISHb9It2QHWrXIyY/c2WMaP62CJSK1z\niVoi6dHzQ5yN51JA60yfJ8ZdVr0xnCyw8APo3IhY+IHshFlWBRMnP6xQbXwX/cZZFQxkGbGmIuPZ\nAmpQ1Ro0VSksGX5dIIOBuDE2yUPYZHVRJg1dpdYoFOhOdTZJPj7Ktrcuo+icV5kg1y3ZBNj1EmV1\nSQOItc1eLAK02g3st5PHHU4WcBeBnOjdRRArBWSGyA6fCI72si23ixT1gKiBkPBQ+EEtM9mUCTcF\n4RIX3PPRik2CM8fH+8/HGPOYfOCHmL3pJ0ojj8+n0oWvKkrCoGgZGjxPk6/T7LTrshlXP7Xa7ncb\nMsO+380qXxp1JUq2jMk/H+2b2Ok0YkZMG0c8xBS/VsJgC8Jk6+wqRc2562PG20jP3WzX0HQyamLc\nNUARpSwp+2k4WWAwcrHgcf/ByE20v05rKcSFm0xDg6LUZF5DsxEliYqcnedn0bZX+Z2XCaiV/cZF\ndY4oH05X5wDsd9jQFfR6BlxngdcZMhiIaydvRX0deQjbChdsU62x7JzLjKBVDIoyz8Uf2Kd4yttw\nPzzo4FPWgdxm6njw/RB+EGTaauuaAlVTUeMPV1XLShaLDpt55xtPEA1CpEo26+i16zjhbYj3eo2E\nu7s8pyPEYOxgylfFg7GTeLCfjWY44xNo18+2e356NpEiWH4QYubsyT4UQbiU5ZqdVnLSF0mQCy9K\nzovLOxu6Jr0Php5VmNRUBYe7TXnd4gmkjw7bcvJMCyT12nV4QSgTE/d6SsI7Ee8NkVbUnDk+TgZz\nqUCpDuYZrYR7OyYavAw0bgTt9w00NBUvLpiB3DvsyMoOcexwGWVFhMuoakRUb4hrOV/4+C7rMHEt\nDV3D5dKV1ysKlQX446eXeP/5iO23VksYddHxi77zNWm45XmJin7jojpnWqAdIrxTzy9mmCyW6De1\nGwtb3kXIYCCuldvo6VBF9eRb7PpPCwq9/2yEh7vXpwYXZYln91dmUJRd5+HExdPTMVy+76enY7z1\nsItem5XXfe29c1yOXNTrc5iGktAV6LXreLjXwr98xvIMHu61YhMVuxZCk8D1goRBIBJERTdCJ6VZ\nwJIT2/A9Nt08iMkKV3l6RLmfKDM8TwkGmXUdDZ2HJBpZg2bu+pEIVur6D8audM8Pxm5i8vX8EEot\n8hIotah3gpAkFtUZaUli09DQaTVwzisdOrFEvpnjYzhx5f+HEzeh5Dlz/EzpY/x8y5QNZ46P4dSN\niX4hUxrZazcw5cmOvXZyXP4yOgd/GSbGJVbbc/YVYCvvmCHz9HQiwxWTWba9tarW0GxG4xbnNJws\n8IffOpfjnDg+/rR1mEgELX+2LGN5BnmJifm/celBvMyG79g5BTi+mGAwdrAIgPk835B5Xbg1g8Gy\nrEMAfwDWBTME8Cv8368B+Jxt20vLsj4L4CfBSjl/zrbtL93ScIkVKFpRA9vPQ6iibPItc/2nBYUm\ncw+ev9rYq865TK2xDHGdRRMfANmY7cjBkMewe61oZTlzfExnHoKQqfhNZ15m9Tlzfcz5pD+LrWSZ\nuM448XD9+KN+4rhTx5M17WlhICHRvNfnE2yqP0JZ2SSAqFIh9VrXFOx2DYy4ZyPeMEu83+80ZF5G\nvGnWzPFxNpzLFfvZMLkaZzoMkaFyOXEyVQFKnhIVWFhlp92Qq/WddiMTalGV/NwUXWP9H8S7nZgu\nRZWyIRt3IIWMPD97jHZTR40ncLab0bYsJBVK8S13ESZCDrqmYK/XhCii2esl9UEcL5TJn3pOxYHn\nBxBK2XExtJnjw10E0mB0U509qz2UtZjhlKfDUR7eK/KazRwfg5ELVVGgqgoGIycj0f46cSsGg2VZ\nOoD/AawLZg1Mfvrztm1/2bKsLwD4Ucuyfg9M/+FTAJoAfteyrN+0bfv1DiK9xGyvn8P6rCKglHBZ\nmtkEsjKKzlmoNQo3al5HybLeCt94/wJPTtiE8eiwlZhcdU3B3A1kjX9di2eyK9A1lRs+NZiNpBv9\n7NLBO08vpdLfO08vZdKb54d4/2QkRYxmCz8zec6dAMMJG3OzoDlSWuZYUFQ2CXBdgr4hWxjv941E\naKBpaNDV/NCACB3UCkIH07kny/lqObfW8QJZdql7aSEqTco7N/tGKiThYTBxZGHFYOIkRLAeHrTx\nnBsT93eTCaS9dgPtZhS+OdqvJ5IIy5QN2dhUuEpRu/cQf/BHJ/LYo6mHT337AXRNRa9dhx+EuByL\nZltGImwEAPd2mjD5ve2YSUNlp11HnU++WT0MBeESctzhMvot9dp11FCTmghGXcscF4Asb85qXhQb\nBGW/8erGdQqMhpY47lWTnu8Cy+US7iKA6zOdiRpqifySVbktD8PfBvAFAD/D//+nbNv+Mn/96wB+\nEEAA4Cu2bXsAPMuy3gHwSQC/f9ODJVZjFS/CbRkKZZNvVS5BvO3uVZMe8/YpmMw96RZOP1zTHfam\nTiThPHN8/PGHQzm5zl0f3/MdRwl3tqbUYPAYtaZErl8Wk69h4S2BWoheq5aYqEbTBdyFL/UG3IWP\n0XSBo/0WZo7Pu1ey44TBMqHD4PkhToZzXHIvgaIlM+h1TUGzrmHKvx/xrpJlZZNi24amykm/Ecut\n8PwQOx0DHzlkD8B0SZ4IHex12T1Phw4AICzJft9pN6ByL0I3NUFO5gvpyem0k2uZmePjyYsJpqKB\nmB/I+8CST1uYcOPqaDeZ5DdzPOx2G6hrfQBA29SlsSGTeNVsEi8QJRcKL4yiJO/x8dkMxxdTLHi1\nyvHFFMdnM3wb93BpWg0hQvk6jjB0hNfkXszQYe+1cMJLFA93m2ibdQwXkRx2r1WHmG47rXri+7HT\na2DB78NOLyvvfD50E3k5j+935XtVz52yhNqyHCbT0PHmUQ/H51N0OgbadXWlvhm3jecHcBcBvCDE\nwg/hLnycDh08PZ3iyckEw+kCv/iffubK+71xg8GyrL8M4NS27f/TsqyfAfMwxL+VYwA9AF0w4aj0\n34k7zF30IlQ1NgLKxxo/p8MdE6f8obUJrFETMJ7xBLBUS2Yh4Sw8EPEOe8PJAhdjV2oHXIzdjNv4\nbORIgyJchgkXfNes42NHCsxWA0s/2QVzr2fANHTZW8E0olixaWgwGzqcBduv2Uh2WJw5PhzXl70i\nHNdPGBQACzUEoSFfpynwDMsuml0uGpXsoqnAD0MM+ZjrejZRs93UofOdN+pZozCuJRDHNDT0Wg0Z\nsuil8hCen0c5G8/PZxl3teuFcPiqWVPi95cl+b37fMJPXM3ExidzLwqH5VQrxGW0k1UBIcIgitmE\nqZJNPwgRhoDPJ2ctVOT3bOb4OBs4mDn/P3tvFiNLlp6HfRFxYs3ItSrrVt29u6enpns4lIbjIccW\nhaEFiYL0YFqAYcAQBMM2vMCC4Qc/GCAE+UV6EQ3KpmEYtgnBkm2IICkLsC0LokwQIiVzscnhrD01\nfft2362qblVW5RYZ64kTfjhLxInMqrrdPTN9b0/9D915Myv25d++//v4PvPPtHFv8UBHtqyagY6c\nwJHZ+N4o1HgYAo/AsgxFO21ZeiDjEQs90R7xWtdBkoJJEqw2KdhV753LALVXjS9LkrStrRCJaHu9\nTMaqitO8FwxFyVAUJc4WXLjs6UmEJ6cRDicrNZ30ceyTqDD8OwCq/f39PwuuVfF3AYwbv/cAzAAs\nADRrJl0A06tW/lHKLC+rXR+LbhJAtZmN7WKL4hyWvYQjsmbLJuj1A4RBXfK8at1NvED7WD7KfkVx\njjt7PQwFAj30HW2f8qLEu4dL5fT7XRd7u304toWUMViWCSZebpZlYmenHmFLGUNaMFSi0ZwWDG5g\nYzzuwu+42N6a11oAfR+7N3pqu/1BgC+/vYd3H/NH7c27Q7xxfwuObaE/CHDvZh/lIT+Gezf7uHt7\nqI67NA2Mer7myHZ2Qoy3QnVMvWkKy+Yv9k5gY3u7C8e2kBclPrvINSpkebwAYDkEge8iFy+9wHcx\nGnUw6vvIixLG4zlMk7/Oel1PrVfas1mCg4fnAIDbN3u4d2ek1tvxbVUF6Pg2bux0MRJslXlR4q3X\ntzHe6qj9kusuTQPLlGIhHJFlmwh7njpeyyHYGvoQYpXYGvhq3cdnEb72YKJK//OkwM/+y/fVsnu7\nffjvnuF8yde97TnqfORFiepJPY3Q7enHex5nME1T/ds0TbgBUfeH5RB4jUqP5xC8/eYYo76Pp+cr\npHkJJu+dvERp1vd8XpSI3j9HLAKQqCjRHwRqv8jJCsMBP1fEIciLUi0bxTlG/QBZztc96nMnHAYO\n/I6Lft8DFc9ov+9q92UU58D7U5QCMAvLUsteZXlRYp6WGLp1gNrc5/tUn75o3ztq+3g53sl5UfIK\nXMHbC+eLDI+fL/HB0QIfHC3w6Gih4a422XjoX/r7RfZDDxgODg6+Kj/v7+//FoD/CMAv7O/vf/Xg\n4OCfAfgLAH4TwB8A+Jv7+/suAA/AW+CAyEvt+5H9vQw2Hnevj6VhH1dL4snxHKdTAdYbBti/1VXZ\nwlXrboITP/vaFrY7F40Cvvh+FbTEdB6rWfqi52Exj9U+FbQEGIMa3WcMk8mS96bjAn3fRiy22/dt\nZHGhzvGzwyUopbBERk0pxbPDJTyR4bqmgedxjk7gwDUNJKtM2+7NkYci45wAN0ee2m6cFrCMCo4o\nU1tGhaPjucryGC2x1XURrcTYZNcFy6nar4KWMMoSUn7AKEu1bgCgOUUiXszUtzFvKHIWtMRimeDw\nlOM2zKpCGmc4zXmm+fBwjqdiJC9OU7x5s2bsK2iJB4+mOBFldMsycH+7I6o1GYAKZs39jPPzFUpV\nRi8BViKUF4LV+zydJZhME+X0y7LC9DyGJZxtnBZwiQGi2igGlosEZU7x4NEUk2mssr4JLfHg/XNY\nrMJ43MXR8RxJmoOY/PckzdW5jtMC337vFGeCfGseZ/jsXn28WUxhGBVK4dQNr0IW19dhMktgE0O1\nNGxi4PnJEmVOMZ+lKBhTAlEFY5jPUrXsPMrwu994hoUIZI4mEV4bd9APXcRpge89OlMVhvNZjLde\nG6nrOI8yZFkBU4A6sqzA8fOFWnZ34KMUbZLdgY+zswjJqr6GZVFgseQBpWP52vOirhU2YTZKTGcr\nBagkxERA6r+jWYGo8Qw37zugVgbtdX2EjvXC4OTvhzFWqfaclFN/Nlnh2YS3Fp6eRmr09iILPILb\n4xB3dkLc2u7waknvo02vvQxjlRWA/wzA/7i/v+8A+A6AXxdTEr8E4HfAeUp//hrw+KNpH5fDQaLz\nu8E6Ov+qdbelpI8nMQLL0HrJH3W/eoGtyJXavXGgHmED2kJNpqZkmOalVoLvhw7CwEUk2h1h4Gqj\nkVt9F65toNcLwChdY7Y7PItxOufHZTsx3r4/Ur99+/1znE75SzuKC/z0F/a0fQ48W6kfbhLUalJ0\nt8Fnl2lJxCkFIWZDW8NU5f84pVjGhRqmi1qTH/Mox+k0Vv3402msSUVfZnIOf5NwVZxSpHmhSvtp\nXmjIfoADP+UUQhMESiwTtmWiFABA2zI3IvWdDfeSnHSRExbtSReuommrCkLHW28dRUm931FS73c3\ncEBMA4WoipCGdohcdhHlqqoCMbLZZnXcZFJLYiHGLm27qSVh45vvneEDEfSdL3v4V35Mv7d6gYNc\nTGD0WpWFy9la+TU8OuPPcZsU6rJ2huSWiJICaVHhpGJr4OTvl1VVhZyWyAoeHKQ5xeHpCodnKzwV\n2IOTWaJNCLXNJiZubXdwWwQHt7Y72Op7qk3nEl55MjZpm7+AfaIBw8HBwb/a+OfPbPj9lwH88g9t\nh67tU2uXza0D0LKPD2tXLXtR5nOR5LL8W0orReHcfMlNZikWSQ5TtCQWSY7JLMXdXVus18EXPzPG\ne095W+GN20MNcc61BBKkJWAb0PrfcUqFNDZ3kKZlKMc8maWqDA4A85W+3TilKCjFlijnF5Su9fQ/\njgUuUaVi0hhHtIkJh5iqNdQN2uQ7/CUpcRndQFeGjOICkQCXevE6+JQQAyMxidAMZGTWV7FaD2FN\niKkyFEtkU7hqbzvAqO/huXBio76nMT1ySnJfGzNtTrr0Oo4GmG3jXwwD8Bx+XZqS3PL3VVqo1oBh\nFNrv/dCFAaE4GrbBhybmq1ydy6qhhCn3eSLu2e0Bd1RJY7sdz1Y8HB3PVtt9fLzE8XmsqiLH5zEe\nHy9xd7duATSnaBy7KVF+eeAuycqktcnK+L5vvkd5yT9FXpSgzAAr1yeDPqqVjONbcsqQ0xIn5zGe\nnorqwQvgDkyDg05vj0PcGvPgYHerA8+2YNsmHMuE41gwP2JwsMlehgrDtV3bpfZxORwuk4OWjvlk\nlqjfmutuL7u7vb7skxMOXLuz09YouJwaurndmy2aZf6Sy4WmJLBKc81RmTDgiDK52RIXsokF37VU\nRu27FvQKQoTTaQJvUaDrm3j7/rCxXSaAfHyfs7LlBCsOspKfmyZH0E7FMY0HfsuRXUzRfdV16Icu\nbo27GkpeZrWBR7BMMkzEsr6ji2L1QxemYeJUjCj2O15DYVNk24KjQWbbzYz5IhEwm5gwDBMSKGcY\nLYplAHFeIBLLBnmh/Xan0Q+/0+qN8+mcLo5Mfm81abj7oYvdUQfvPp0BAHZHHW1/C8rg2pbKwl3b\n0q5hmlPQkqnLR0umKKj7oQPbMpRmgm3p4lNxSsEqpqZGmCB2kvvclDcfdD0NC8BltyvMZeUrrIOg\nJKM4X6bqOmRlqrFZFpThyekSk5lo/1QVvkTH2j1yUeAuAyRpTQBx/Tebg3qbmHBtgiQrwRiDa28e\nq7xKL0aONeaUAxPP5ykenyw5MPGUtxaaMtubbNR1cXsnxO1xB7fHHdwch4qZ8gcRHGyy64Dh2l4J\n+7jTFxfJQV8mfbxp2Xt3RlpP/uh8pebZCdE1Ci7LfGRAINnpmgEBX5YTRtW/12OGe9sBdrcCVWLd\n3Qq07HQeZTg+X6l1HZ+vlKxynFIUBc/0/MBGkRdaFYDPaAO2xf9toM5OtwcefK/O1Ic9S6MNDjwb\nR5MYD4+4I6O0euHSrbwOsjWz6Tp8aX+MezdCsS91O2EySxGtKCwZiKSFJpjEHX6uiIpWaS0zXVCG\nklUqMCtZtSGDNBCJXnmncTyyspGKl3ST70Key+WqUDLSy1WtB1FQBtOEqlyYJta2O11mipzJc2xN\nMMkyDXSkGqWpn6t+6GDQcXGc8/tj0NEpuGnJ9GCvgpqSKCjDMi5QCMfNP+v71fVd2KaoyDSAAaHe\nagAAIABJREFUhHFa4GyRQK78bJFoYGEAeHqyUpLeVWMiwXcJTNQcDQ4hWgsnTimiuFBVpGbb6apg\nk9N/M8VQOmxpflwlPrc98MAYgx846G4Qxdq0PC159aAoS0RxgUfPl3jWqB5chTvoeAR3dkLcHHdw\ne7uDuzd4gGxb/J77YQQHm+w6YLi2V8Y+7pjmZc7rqlbEpmXjlOJbD8+VA51FOX789a0XKsHLgEBm\nUW1uAD52WeFUTA2MG4x6gWfj7fsjlem/fX/UCoIYFlGOWAoXNcbq+MsTmEUZElqh4+gjiIFHcGPL\nx/lcEvfUY4QFZeh1HMWX0GvN0R9NVjhfJHBEsHG+SNYkmy+rFD05WSqWyGHPXWN6PJuniozKMIyG\nA2WYx5nK0AxDl+yOU4oHzxZKjClKS1VFCDwCE4biYTChj/oBwIOnMzwThFHLhGoVGR5osMbn2riA\nFBfzAjhng3YdqkqNXAZ+pV2HOC3wzfcnyslFKVW9c6mNkYrM/tkkUtoYct39rqOEuvpdvQXjOYSz\nU4ogwTRNJb707DRC0pDpTvISz04jFaDtbQcYdBw8E+dy0HFUsMrlq1PkItumtNKooY8mMVZJrsix\nVkmu+B9sYiLwbVXZCPz1ttJsleNcyGozBOr3Fwn6e4Grev+9oFmNuRqHxLFGPnpdHwbTqwAFLbGI\nMzHSWOJsEePB0wqH5xyg++SUV/MuG2h0iKkCg1vjEHdvdDEeeLAtC45twHXIJxIcbLLrgOHaXhn7\n6DLRF9uLtjuaNLbS4pQiaZQ6k1QvZ1+2bpuYeO/ZQlP2+/LndvQNGI1s16hfOXFaIKelkiDmhECF\nBnqjrMKZ7PdudTRWRFYxzJY5nIzB39bbBv3QxbgfYCqWHfcDjZjJMgxshYIAydBbIVIUqRRvZimK\n1LSLVDT5sqVyVl5WtsiXLubSCDwCVkI5Zs8x10B+eUZVyToX/BDSODcEU5+bxvEeqRozPFukCjBZ\nUIairFAJbEJRrlcnCsqQi2y9/VvgEsxlENjCsMQpxek0QSRwCpQyDdg4jbI6uCrdtWWLgin8QVHo\nehC+YCukjeBFZvPEMsFYJWMJWKzSwJgFZXjz7gCe2I87Ox11nWxiwnUtFVC6rsUxDDlV21nGdcWF\nlnWQZBMToe8o/ojQ14OcgvKMvSz5uU7F/dG0y4L+j6P82g9ddDwbg0EHUZQgL0qkeYmclnh2EuGb\n75/jZJrgZJpgMk9RsstxB7ujALcE7uDujS5ubgVwReDuvUTBwSa7Dhiu7ZWwH6So1YchfSFeze8f\neATDvoulZPrr2GvZ6UXrnkc5kqyAo3q4hYbcLyjDZJ6q3utkXqszck2Hhcq2lzHFT711Q627oAx5\nWSokdF7WL1epZJhRitIAToSSYc0SWaAoSwUqK8o6GAk8gvHQV+OJ46GvHe/2wMOg6ykuhUHX01oW\nAFfR/OCI87Hd3+srFU0AOJ0nOBM9asrWHe+qFaA1z0dZMTVx0JaCtokJYpswhLMhtk6V3QkaPAwb\nqL8zMfcOAFbj9pDgQpkxt8GFcv22bajPTZsuMkWz7dnrvXNO0MUDt7LUaaezrFTVqSBbf40nBUUs\npxHIugOyTENpfTT1LEY9D7bVCCYsrtPRtNNZirkYb/QcvfS/3fcVodh239dAjwDv5cs2W9WA+9vE\nxGt7XUyX/FkZdts02xSeY8EyxLNkWxp24nJ698sC98uXNU0DlmFgmVOsTpZ4dDTDdJlzxsTTSOlm\nXGT9joOdoY/xwMPuqIM/8cYWeqEDYnHWU/MCLZGX1a4Dhmt76e37IY19lV2MktZVFBdRrma4+6GL\nH399jHefcEKgN++MNo6XXbafF70wCsqQ5aWaBsjy2unzeexaCXCVrJfgWVkpJ9SkcOYqiQXyokIF\nhjnVqyJxSvHw6Rxz4WyynCL+gqSVtmFblir925ZOk2sTE3/qC7t4LNgL7+6G2kt/HmX4xsMJYsES\nuEgKTUUzL0qwSlQBinLN6R9N4gbANMSXP1ezV0arAvLPk1SvIPRDB55LsEpk373WKbCJiYpBZYUV\n0x27ZCeUFSbLqoPCwCOoGBSSvWLQAiipQyKvU1M6OU458FACU2mpVxAKynjQJHwqZUy7/pRVKhOl\nLdyFTUwkaYnTheAsaLWdatwGtyZuo6AMnmuBUqmdoAMmC8pwOIlU9aqsWkFSBdiEqM9NKyhD4BIV\nqPhOHdhJIKe8t9pAzu2Bh9C3MRGB29C3tWD0Mupn+ftFSYFcllUViGlivsqwjHM8Ol7i8UmEw9MY\nT06XamLlImviDu6OQ9waB4jzEkZlKNzB7lbwfX1v/bDtOmC4tmu7wpooeeLYCEb1i6rfcTAUL7Z+\n52rWObVc6GCr5+P4nLcktnq+BkyTCoxLyebX0Uu0Xd8BEemu36I65k7OREbFHH5gay0JQgCWVShL\nBtdbdybTKFfiU6zhTOZRBsYYtkQVhDGmwIN83RY6noNQABc7np6txSlFnBTKwcYbJhKqCybW4pTi\nZBYrNP/JrKZhTgWxjawEyxn25jHxCY66HdSsuBDLwKgjxiYbksty2dvbIfri310R3MjfOA0ztH9L\ns4mJfsdFFEvV0BpsZxMTcU4V6RPZAJg0DEPRbBut9o9jW2oUt81KGKdcN0A639OWFDg/0Q010Q0V\ndNPa7NTmUY75KlcB1HyVK1pyqdmx3a81O5oYhu2Bh7BjoxD9jrBTO/2Clri/18W20JAIA0fDIdjE\nxBfeGOGZEFy7tdNZAy5epBUjbROhU5aXOJys8N7RAsdnMabLDCez5GrcgW3i1jZvK9wZd3Bvr4ex\n4DvwHEtNkbQVaV/lYAG4Dhiu7RWwjztW+fGtrgI0RukVqUsmXuQPj+YfitTlS58bY7bkAjqDluJg\n4NnY6vlq1n6r56v19kMHd270cDjh0xo3t7trwUbXJ1jF/Bx1G3P6XA+CYL5MUZpA4LpaVlxQxkmF\nxN8Ty9Qc1bPTFSYCeLbdrycz+LJ88kPyXLQnP/qhA8Pgqo0AsDPwtUyfsQpZwbfFWBsESMFYpfaV\nsaoVbNSv9/aLvqAMpmGo/TAbzpe3DEwgFW0DW3fcXKzLQir+fiQwEwAwXaZgFYMU32QVw3SZatwB\naU4V+LQZxADAfJkrXotNGhaMVUgF82HHr7TKxlbfBS3EvdHXr+E8ynlrSTj1OC3WiKosy4BJ68/S\nJJ6hEOv2N6gztkcym8t2PKIJOTVbEjYx8da9EZ4IcqY7u721dV8kMw3wsWUZnDcpoaVQm6Qkbwq1\nSWNVhSSjyIoSx2cxHh0t8USMMx6exQqjsslMw8DuyMfrdwbY6Xm4t9vFre0OXNuC5/LgYBO+6kXA\nmK+aXQcM1/ZK2CcpatUETI26OlAvbcyKpxtAfvzv1l8mMgiSGWY7CGoyMgJ6xmUTC2/e7qt0/M3b\n/dayDIFnI/SkgJTdyop5esmzVr2c3Q8ddHxLObmOb2nByNHZCmdLSSO9PhXQ5LBvjoKq9XddFQT1\nuzp3QMezQbvrpD5yv4Y9F8cTnmFub3fUfnkOgWObKtiQ4DFpgUfAKoZMZNwdn2nOt+c7atSv53fQ\nxqHAqKD4cxrg09B34NqWIhtybQuhr3MWPD2NFP23Ib4LPFuQYGWqBz5fZZjMUg1gahoGZMeqHeR4\nxFKof4/oVSKbmMgbTKDEXA+CAs9W+y3xKfI3h5iKjMohOoA08AjGfR9T0e4Y9vxG9YpzRzQz/TYP\nAyuhQKCsbJI+XaxGKX9vMm56TpOYieH5NFYTJUlOce9GCMsqMZmneP9ogcfPl4IMKb4Sd7DVc3Fr\nHOLOOMS93S7u7XYRuAS3bw0wFRXBpl2Fr/ooZHAvq10HDNf2ytgnEZm3qxu90FHy1oFHMOx62guy\n7WwuK5V+8+EZ3nvGAYCzKMfPfPGWtuw8ytRLsGSVGjOU/A8yOz06X2n8DzYx8ej5UhEZJVRXq0wy\nCsM0YRkGkpaiJM8SHQXG420FvuzxWYx5nKtsbB7nOD6LtWVLVqkgaNjTgWsSpyD5Epo4BT69USkn\nx6qq5eRsELPGTxCzxk8EHoFtmwqQaDeqAHK7Lqn/3iWWFkA9n8VqGuH5LNaCHI75yEFE/Z5n77wV\nsrcdoBe4CpPRC9wWH0aOs3nK5cLFvSAz/TTnhFEyQY+SYq2NkmRUjc42J07ilGKRFEorZJHoXBoA\n14CQgz1FC0AaeAQ7Qx9lxf9gpwFeLShDWpRgQoQ6bWFJ+qGDXsdVVaJei+Nhq++BiIpFG88j20q5\nCOyabaWr1Chl9UoCKpvVK8YqPDyc42QqzrVh4Gvfm+DoPFZVh4ss9G3cGPoYdl3sjgLs3xng3m4P\nnmu1pkPKjVWIy/BVn3xl9Ptv1wHDtV3bFXaRvLVNLLx9f6SNRrarBE8bYKnmKOBkluB7T6YK6f69\nJ1P82GsjrWx8OElwOuPrTjKGt+/z7+OU4tsPz3EmkOpt/ofJLEWalZCvuzQrFYUzxzAYsHIDpsE/\nt0v/xDIw7K739KUsskS3M6aXpAHO8S95Kdp8/wCQZUzpAWSZvqzvEoUz8FtjhpNZgjQvsDPkDjnN\nC0xmiRpvNAxT9Y35uW+TDTmqd95tVAEmsxTTeab6+dN5ptFd83NfUwsbDZAqb5PUwQVjOnCRMypW\nCltBy0oFBe32xKbvKKtUwEAbzqqgDEVDP6TIdae+jHOUJYPsNJQlU9cEEG0Yy4AhZDRtq74H5lGO\nNKWKVCkVAZO8LyVY05XCTaU+stnu2TfVHeOUYrHKlbz1YpVrwWqUFEoqXOpvNI/54dECiygDYxWO\npzHSjOLwPMF7T+d473CuKkwAFKlZ02xiYjzwsTP08NbdId64NcC472KVUjVxNB4ECoMjTVYQYsqF\nqj7MhNYnWRn9Qdh1wPApth8Eb8GPql12Dj1n82+8VJqoLCfJHbx5ux4FnC4yxTvQniuXugxSMKup\nyxCnFMdnEVYpX7bIS7TBgwXl3Pfys7TAI9jbCnGMFRzbwqinV0UksZPsnfteXTYe9Ty4To2gdx1r\nbeTuwdM5Hj/nAVWSlhrJEV/GhCvOl+usl2qN6uIxszQvVTm5gt6C8WyCwpU8DNZaVhwlRc1LYVka\ndqJCLVFut8CHNjHhOCaYqEQ7Tv372TxFlFDILUUJxdk8Vc7Vc4joW/PfCTFUqyT0HTjEAlPMhno7\nAwC6vg1JCtVtONDAIxiPfJyL4xn11ytbpmkCooJgmvp55nohidLPOD5PtEDHMA1Uot1lmNbasmlW\nqMApzWrgqhRqK0X/5mQWa0yPNjE5XkIpVNeBimRjnIvKFqcz59+tEop3n0zx3UdTzESFJ84ofvMP\nD3GRmaaB3VGgaJQ7Pm+leI4FQizcEmqlBS3xsCEHnRXlmg7FZRNaL1JF+DS9f68Dhk+p/SB5C66N\n22XaCNJOZ6lyVM0MKPAITIvzHABAx7LWHLfnEoWR8BrgM847UGf67dG2fugg8GykWSq2ZWsOctRz\nMVskcDwboxZNLnegTGlJDHp1SyLwCG7vdPB8wv/2xrbe759HOT44nmMR831mx3MtO+XOl8Co+Lod\nRwfUJWlZA+ZSvc/cDx34ro3nggNiuNdXx7Q98BAGtlLn7PpEG7mbzFIYBhSVsmFAUUdzfIqtgrpO\n41ypa+VyjIT8LI1Y3KGVImMuTUMrY/dD7jwSo+YLkOve3QrQ9W1Voen6Nna3Am3ZXsdGnElWzXq/\nAs/G3Z2eKu3f3elpQNtRz4NpQAUypgEtsJOMmTJImkWZCnT4eatQKNBG1aL/JqCMqckP19YxDlFS\naPesdh49glHXQ5bx6GvUaOFJzIZlGUjSAu8fLvH3Tg9wdB7j2elKtaouMs+x4BATnhhd/Dd+5g3s\nDAKFoWi/D9sU7DLI2YS7ATg+KU43j1VeVUX4NCVu1wHDp9B+GLwFr6L9sB9czvJHIVOqnOqgyDs7\nXYReTYXctMCz8fpeHw+fccXJ1/f6a/LFuVhXW74Y4BS+Uhp71GJUPJxEWCQUdlHBBFvr2U+mqSIy\nmkzrkTybmOh5Dqa2AAh6+qgnF3LiGSjAHVVb7hlVo/TeaAkXlCErKJiYUcwK/VxxjYMciRBwWsa5\n2m+bmLg1DtV2d0aBtl8Ap1aWoMfI1LECnkdUGdrzdNIngLcpJFW227h3Ao/rHcigz3d10as4pTAN\nqNZA83wUlIkgvma9bG93bytUGIe9rbCxzyWIZeDGUKDvrU1S4BaIJfAexNKuAy0ZspwqjAOEGBXA\ngz7HJnAtfi4dm6ixyXr7FbJCHoc+neO7lgK1+pLpsXFMrmup+9K2TUxmCY7Oz/Dg6Rx/9O4Eyzi/\nVKER4ODS3ZGP/btD3N/rYnfk4zsfTLFY5TAM3k4btQCXFzl1ScHexBnpAXQNxuycpxgEtgbGbP7d\nJjubpzgVLZrxIHjlE7frgOHafiTsB1FxkeVI/WWjvzh8hyjH6LeQ+/3QxUzQ+0pdg6bNVzmmAv/Q\nlJXmjIseSlE2Hg/X2wqD0FX8AIOwriLMIz43b4CXbeW/ZTAiqZBllnhW6VTIk2UC6e8ny0RzcoFH\nOCtiJkmO9OyzoAwfHM3x/JyTL5WVPqGxiAtVnbCIns1NZikOJxFyIcl8OIkU1qCgDN3Awa5woO0J\ni8AjsExDOSLLNLTMdpUUyKgkwdLFluKUYhqlipdiGukBlGNbKiBw7HVOC8YqmKbEOLSoow0DpqxI\nbKADTvIClcAuJLnOcLlKC+UQN6kvGhXUfWe0/C8t2ZqWRBOLkuU16DFrTRTMoxxxRmEKess4o1pA\n0Qtcde80NRtYxZ3y4+dLnEw5vfKDoyV+648ubisAvIJxazvEnRsh7t3o4uaWj+2Bj2HXU0ymBS3x\n5PlKkav5zmZFyYucepMOvE0NLsGYg66LXtdDHGcaGPMyK2iJ73xwrt4Pp7MUX/n8jVc6cbsOGD6F\n9mlE534c+6QqLoFHcGvcwelM6DIMdMd+NksV9W8408vg8yjDu0+mWAgQ2LtPpooVEeDVCUmuc2tL\n50OwiYntXt3j3u7VehEc9GgiK0qUrILb4h1Ic4qCVYpvomA1UG8e5SgKpsiEioJpzqKgDL5LVHnX\nd/VsfTJLcXi2QpoJp3+2UqOEkmZZlv7bNMtSt0F+ZzXIl2xigrISscBdhC22xoIybPc9RYE87Lqt\noKDASpbY18h9GM6XGZai3YHGfvGpDwomTlbeqooEHoFhGEqB0TDqCoRNTORFXfXIPbq2z1leKgqQ\nJtOn5DuQQWS/ReoVeAQwGlJYRqXdd3yax1KCW4FnYdj11Lot01AskpZprDvfS0ifFnGGZUJBaYnZ\nKscioXjn/TM8OYlwdH4534HcHrEMhIGNf/Orb+Dzr2/Bd4kKDi6yOzdCjEXrpN0KucqkVgTw/R2B\njFOqggWA83a0p1leNbsOGD6l9mlD576MdhWGwSYW3r63hdN+XZKUv01mKU6msXrznkxjTZK5oAxP\nJxEikXEvAqI5jOUqx1wEBL0NkrtffzDB01OeySdZia98nmtN9EMHo66LRZTBNBlG3UDr2XsOgW0Z\nELhG2FYN1As8gixnqpdrGeZaZaPfqbU2ei1HNpnHyPKa9CfLGSbzWq2w69uK6bHbUivshw4s04Bc\n2jINbb8NGGqioGql1IFHQMsKCwHA6waOVmFYxrWipGx1SJNcGyWTID99vJGWtfekgoK7aSVjDQpm\nvXJRloBpChxKiTXgqu8SLJe5+lyfZ86oKUdu24yanHHRhCxeWC3yre2Bh57vKBxCz3c0nMLOUOdZ\naBqXznZwIioyg46DbsfG4VmEd96f4vfeeY7TacJxAS8QHHzmdh9v3Rui79v4p3/4GGnGGS4Dl+D2\nTnctk5f3nk5JbmmTLx8mQWpXCdvLBp4N1yaYzJYomIFBYL8wMdtlOKQXtZcN/3AdMHyK7WW5yT5p\ne5HWwccxWQrdlJ1cxnFflEwB16wNmhKUVkr0qDmJEacUJ/NUARNP5nrm8vg4wuHZSpWZD89WeHwc\n4Y3bfTWC6DkErmvDMEytnN0PHfgOUVUF3yGaY/ZdC1lhqc9N64cORj1XcRqMeu4agPAiCzyC3a0O\nGONBzu7WOoHSVs9VAMOtnk76lOWlKr3nrYmTgjKczhKsxPk6ndWtlMUqR1Yw5dyygmGxyrXAzbUJ\nADEZYuuBW1VVqEQFoar0ag0HUhqovzG0dXNRK0GQZOul/8Aj+OBoiUMxshsXZSPI4WOecox0JVgd\nm/c0LZgajaQNsC0g2go5VVWEOKeqLbU98HggLALVMCi1YMImJixiCAxEhScFw3/xd/5fNQ55kXUD\nzndwNOEARgP8Gv57f/EtbA/497/7znMAPAhqj9UCfALn8IzfHze3Qnzmdl/9dpWWxEc1SaBmmUCv\n58GsqrVzfZFJHFJznz/Mvr2MwPXrgOHafmSszRnwYWyTvLVkn6sFkbprLxL9oS/VQ98PHXR9B3Ea\ni9+cNedaVZWahGgq+8UpxdHZSpXR8xZNMi0ZioKpQMaAoY49TilWcS6chYFVnK9pJ4S+rcrooa/j\nATpBjezvBOuz8jvDQI3cjfu+FowMQg/EAAQMAcTg30m7uRUoPMCN0XqbJSuYandkBdOcc5JTrLJa\nXKppx2cxclqqoCynpUY4lRelAhfmLTT+9sDDqOtisuDbHXVd5UDlCKac+G+PZPL2DFMskWXJNEcY\nZ1QBV+NMr0w8Po4wmScqQJrMEy3oW6UF8kJKfRvaeS6owCiI2oZp6hWG80WK2SpX53K2ynG+4NWt\nySwFqhrjUZYVfvfbx5ivCjw6XuD9o6WqbPATtv5MGeBATM+18HNffR2fuz3A7rCD5+cxfuFX/gi5\neJZSWgd2/ZCzZk4FC6Rr6wyjkoZdZutpXmo07GfzFEfCMe9thS/sXF+kXfnkeYTpMkUnKuCYUARq\nL2Kfud3HTUHm9WGChZcVuH4dMFzbp8YuKt9JrnlJvpMV7EM9fM2XUVPeWjIuTqNaQKjJuHjVQ783\n7ige/52WgwR4BYKJl3pRrpfJ5fGmmS5MtLsVwHMtrFIxZthx1MieTUzMkxzTRQbLLNAL9TIp72HX\nJEhWg1Y48AhCz8ZCHG+4YToDAExs7jf7LoFtW8il2qVtaQ50sSqwEEGQ7+oZayxK3FLds2wFSWlO\nlbPPqe58ex2HK1hmshJgKEZBDgA0YBrSuRpaYBl4BK/d6qEUzve1Wz3tmEsGRdG8KR41TdT0zo0C\n1GLFWQslqLEoSq36ECU5kqxUhE1JVqqKElfuXOHJcxGo3gjx5c/taPtcUKrAqQ6l2j6nOUXFKrXf\nlcCplIzh0fMFDgUpUllWOJ6meHB4sH5gDdvue/jsnT56gYNvPJwArIJpcr6NL791A12HO8rzRapN\nQNCyUoFKQRkMsxbSMsx1DEuaURVsyO/4/0v8wXef43QqZddX+LNfuv3Cz/c8yjERkwzbg0ALCArK\nVJUP4IHpprHLy1oHH7YN8TLbdcBwba+MXfZQXla+kxmZtE2o8suCjebLaBpTfOVzY9hiVG26SJUE\n9XSxGdR0Ucui4xEMu476rG+XwSEWbJGUOEQnI3JsSzm2tlohwPUDpEMgLQZEowIMVDDMCkaLw8Em\nJohdg96IvQ56u6hOYxMTJ+eJKqOXpU7vXFAG1yGql+825I0LyjBZpApnIPvuWpmd1oqUtOVMioKh\nFFURrpeh76VlmapKYzW4ErqBg9C3sWQiCPJtdDVhIx5QBDa/PqZZZ/NxSoUkN//bvCg1DENBGWzb\ngiuuk23r19AwDBVktEF9w67gUhAO1rSggIlxSvFkslKMihBsnPK+W6xyUFapag1llRaMcNIoEylj\n/B6pgH/4O+/jl//ROxpXyCbrdxwsVrnCZVgm8G//+X18/vUtxGmBZ5MVTqcJWFlh6NnYGYZIVlL/\ngfDql/D5VskUPiZOKRit4Ir7hVE9IAzEuOvhhGMrbm0HKgiaR7l6PgHgdBqviW3x67H5GX/wbIan\nQgXz9k6+RjYW+jY8x1JTEm277N3zUdsKLytw/TpguLZXwi4PCK5iY7scVX7ZuuXLSL7Yjyb1y+gq\nUJNsWZwITYemvC2f/wZOpwJsFejz34FHkOYl4lQKG9U97H7ooN+xlUZBv6OTDU1mKSaLBNI3TRaJ\nJmwUZyUfjStKLZjg55Kh7zuqwhA2Jh046jtDIQCC02WmtTPmUQ5WMRUEsYppL+7AIyCWoVoWxNLH\nG7OMgoqSdNYS8pLy1ArT4eojjLMoUyOZpqXrB8QpBatqJURW1XwI2wMPrm1iLjbl2qbWsy8ow4Mn\nc0zm/BqmRYk/80X+x7Tkkx3S1xuG3vbqhw6IaaopCmKa6jr1Og5YQ8ubVUxVPerjJYrZsnlvzaMc\nh6eRuu/oaaRNq6Q5BTFNUIOp7U6XKb72vVO8d7jAw8M50rwRfDHgcAOVsgHObPmVt27gC29s4bN3\nhnh2EuEXf/Vryumbhq4weX+vB3lZbt9Y5ysoGwFJ2SIyK6tKVYHcFqeFbLOEngzc6oBSjrfKcV6/\ndW8AF2u6zKMcz05XiqL92emqdc/a2BkEOJnFIJaJnYGuRnvZu+fjthVeRuD6dcBwbS+9fdwHT6LK\npaZDE1X+IsFGWdXod9+r0fsS1PTomAtI3dvtr71MLpK3LSjDdx+fK+bCvGT46p/c08h3KlSqZVGh\nzrikQBQxmyj5pvNMkRelqjDkRYlZlALg/e/lKuNgS8OAiWxtFHA88gER5IwHujDRMs7VS92y8jWn\nXlac5pof77qKomObMIWUtNMY6bSJiVVWKMEsy8LassSsmx1NBcY4pYjiuicfp1TL9G1iwjIqGGJp\ny6grH5NZiqqqcQ9VBU1LYh7lOJ0nSMT6TpEo5ywdfLMV0XT6AAf7ZQJb0W1gPharHFVjPLGqsAa2\npKJMD/CKijzXSbY+nZE0MBA7wwCUlSpgXGUU/8P/+Q4uM9e2+Ghiz8O33p8gy0uYJtCyinBRAAAg\nAElEQVQLbPzsl++q/aIlg9ZxagVJPDgz1OemHZ9HqEwAItioTP7dGwK8GPqO0hlp02QXlMEygTDg\n18lqtCz6oYvdUUcJue2OOms06U9Pl4pFtKnpUlCm2lLy+NrVKYlD2NqqqyU/LHtZAgVp1wHDtb3y\ndtUUhHTce6KPv0mX/qK2QeAR7I46SmDq1k64mbf/Q9rRJMbpLFGgt9NZgqNJrF6eBWWidC/G7hjT\nMv3JPFEywZO5rgXgOQSW1SAqaoxGLlY5LMuEa5ti9M7UHFXg2RiGnmI2HIaeFgRVa//Vz1UvsDEX\noLheYK9liSWrlMZB2SAyKijDKq6Bi6tYB1tKngZZ+WjyNCQZ5c5XvPSrSneggUcQBg7yQnBetMYq\n07xUx5K2hJyUcxbWdM4FZWCVoTJ1VhlrzibJSshEWmbAfDscRyA3XDX4LuR2y6qC6LKgbBxTr+Ng\n2HURJQWqqoJjW3jn0RT//FtH+OB4iaNJrEZM+fnQdklgNgCggmnwEdb/8F/7Aj5zZ4DHx0t88+EE\nZVWPeraPyYAJA0x9liaZTWV7JadUA5EOQk+0ukSbxTA00KvnmooF0nPXn8OiZDg85QH2nd0QzamR\nYdfB3Rv8Hh52He35lvTP0pr0z/3QwY2tDs5EoLo18DdO9gSejTBw1gKGy1oHL2tb4ePYdcBwbS+9\n/SAfPNk2kOp2bcVJAHjr3hDjPs9Y3rw/Vt9LsR0ppnQyizXktlz34xMuxnR3p6etO80LZHJkoIUM\nCDwCxipkBf/dcyqtZ0tLBgldoKVe+r8xCuA6FoqiFomSUwdbfV6CTzIABhC4ptaCidMCjm3i/i5X\nGXRsUzHb2cSE69QtGLfFqCcZFweiJdENnDX0fk4ZWMX/ndNWELRMFZHRRJHc1JniIs7VaCQhdZrb\n6zgIfBtZLgGTZK28X6EmMqpQVxgCjyDwbUCALQNfD3J6HQe+W+NFfNdS617GuaJIBjiddVMVMk4F\nSI9JavAa4xD6DsqqUle9rCotqyaWiTynap/znMIyDZwvUjw+WcIAsIwLZKKS9L9PPsBFZhjAZ272\n8Sff3Mabt/swDQN/+1e/hiTj20/zUuFgpssUlFWq8kEZZ2i8K+4HzyHwHFORPnmOqYJRgI/hqtaA\no7uX2zshOj5BsRSVPp/g9k6orlGSlliKkdzAL9furXmUIUr5+Z1Hmbq3ZEDQEeevrQfBK3K2wjF1\nWlXCn/rcjZqC/dZw4zRDQcu1CRppl7UOXsa2wsex64Dh2l4Ju+zBexECpYuwBHymPVfuZJXmWnYi\nueSfnPCAoj9Y4c0Wl3zZyOTb+3V0HmEq6J9tEqkpisAjcIilRuMcYq1l4wZMmGK/DNSjcTwDMpCK\nF5jT4kooKAOxLBhC9IhYNdgu8AgGoYck53oEg3Bd6TBKCjU6N6xqh20TEx2XIM3433c2ENFweWN+\nnuO0xE9/YU/73QAUONGAfrysZKpKwFqlYQ4wZKoMnxdMOd9+6MC2anpj2zK18zGPcviODd8TAYVj\nq7ZCP3Swf3eAx0ciqNvrasv2QwfbfV+JMW336ww0zakCJfJ9rjbKVpsbODbSnMI2TTX9YpumtmyU\n5Gi6p7wE/vavfV2pm15k/dDBuO/h/aMFZPfAsw385T/3WeX0Dx5NwSpDBSOsMlT1wnMIiGmoygYx\nDS0g4MJmRLufalEsgijJcXLOr79DDISBg7k4rjil8BwbrqD99hy7oXTJpzRsUWEoW1Lh8yjHyTRV\n+hcn01RxR1wWEAD8Gb49DjVNh+Y7ZNh1cVc801LWvWkvIm99WTDwaQgUpF0HDNf2Utnl40kf7cG7\nCkuwSqnqb7ezkzgtcLZIFLL/9DzFrYGPwLMVC9yj8wUA4N4NXTUwTimena6UGE9RMoVmt4kpKgK8\n1SFBlPU+M7CKqRI8q2oHahMT3cBWGU830F+Qi1WOVVzUPey4UG2HOKXo+AT9rgvXMtHxifZitomJ\nk2mMx8/5ft290dHW3evYKqtu8+7Po5xn2MITLWNdp8ImJq8qiJd+Thmamf6g62ImRjYHG7Q1fJeo\n+npzHHMyS4WzEERGWanhEPqhg6OzCIuVkDDOmab8aJsWSrFe27RaOBSGva0Awo9hexio6+A5hGMM\nxPEYJjTnGngEgUuQSnbCBpDPcwgs2wAR18gkvC31j3//EZ6dxfjWg4ly2tLawYJp8AmZrm/jz//k\nHfzE/g4GoYvHx0v817/+xwqz47UyfYlDUJ20Bg5hdytAP3RxLpge+6GrqWgCwFbPV9dhq8EEOY9y\nsBLwRTuBlcD5IlFC5HFKsVzloPL+WOVrOAdiXvyMG419bg6VyIDgKmK2JjhTmko2rM3JhvxdYkii\nl4QP4ZOy64Dh2l4a+yRGkKRa3alAwY/76477fJGqDGwyT1BQiTMoQSxgKMrmxMIaNmK2zJUTLGid\nvUhBJEk53BREkvsVeLYaBQwaWVNBGW4MfcgccWfoa9l4lOQaEI2WTJvhn8xTzJYpTNPSnDbAX/rn\niwySo/l8kWlTIUnOAYYAELYCFQBwxPmUn5u2WPHqjUy4C1pzD/RDB7vDDjJxnneHHS3T3x546AWO\nakn0gprOeBnnIjsXExa53hp4ehIhSevyfpJSPD2J0A9dTGYJZlEKT+zrLEoxmSWaJPcqLbASctt+\nWqhj9hwCy5AckFyVsumcbWKCWEY93mrxEVXGOINnVfFMvgIQJQx/7ze+h8tsbxTgzTt9DEMXf/Tu\nKUyDj2NaponP3Bpg0GjfWJYJW7RtrJaj7AacZls6Xcs0tFHS12/14IkI6eZOqC1rExOBT5AVIuDy\n9SrT82minsO80METaU45EVWDyEpWVQKPYKvng1IeqG71fO156IcObu90cSJAwjsjndJ8q++BiApf\ns40FXF2BnEe5Vp1oEzPNowyLVYEoZzBY+aGImz5tdh0wXNtLYc1IHtg8CXFZ9eEyatjLWhIAAKOq\nRXFaOgTtKYlByTTHvUqp6ue2qxMA75fLjLxCk7mOIoqpQthHMdUy/X7oYKvnKYT9Vs9TL8h+6ODR\ncYRTcTxJxrSXp+cQNCb2UDHo8+6MVy4sywBjTMMKFJT/OxVIPTPVtRMWUYFUHM8iKrR93h54CAMX\n50tecRkPA21EkZfwaxAeK2up64IydAKi+tAdoZ3RPJeuYymEvtugyu4GDgyjBh9ahu4AJ/MYDLXM\nNBPfAVsoKMPzaaKCoKTQWyGSh0GWyiUPA8ADMcuyIOvklmWtTQycL1JkgqvhyUmEX/zVr+P5eazA\nrpvMAC+NL8Tkh2lwVs1/9y++hTdu9zGPMnzwfIHpgk9a9EO9JSWDYEl33ebDsImJYdfFdMH3Ydit\n1UxtYqJiCnaBqiXkZRMTvY6DpaheNPVC+HmpGqO6nEZZVsk8h4A0RMMIqfEPfJ88rARGoS0zHXg2\nPnd3qCp9n7urYw0ePJ3jicAK3dnparTRV1t1wWdui1WByTxFUjD49nqV4kfJrgOGa3tp7LJI/6I5\n6ubvmyiYgbolMRL9yXZLooleT4QOQdNRjfu+egneGNX7xBn3YjybiAmK7Q6+/Dn9hXK+SFW22yyJ\nziOebbvqZVtuJJupNqj0PT6OsEwLyJfbMi0UbbA0VoPRwVqrIBaBZZWwiAli6a+AwCOoqgqrRPb7\na2xFnFLMokwBNWdRtkZUFPgW+mJ8MPAt7VyGvsODM7mAUQP9Csrw7tMZ5pHITssSf+aLt7Xz9ej5\nQrV3Hj1fqHZH4BEMOi5S4Wy6HUfLTl/bG4BYJlLhzD3LxGt7AwD8GkZxrhgm5Xdt26SWSCxTUTcD\nPGMuKMO3Hp7h3adzfOO9Cc6X9Xopq2nE2+YQA3/6T9zET3x2jH/px27inXdP8d/8w29iuUrFPtUj\nqoFH8NnbIzw8nAEAXr850I43TimIVc8vEEHsJI0DaplqWTHGtKmRSUOnZDJP16Yk0qxUHCBp49mx\niYkbwwAzcb8PAlHpE9FHP3TQ8RvU4n7NH8IFs4CtPr//LQstwGypZLEB4GSaqGc4Tgt88/2Jwt3M\nVtka+PiyCmQ/dOEK0GebVlwyPUqM00VMjz8qdh0wXNtLZFUjQ6sj/Ta18yqlF/YZgc3ViXmU1UC+\nrqsFI6uE1gyDrRFJm5jwXYJnpzwoaJZg45RiEWfqJbaIM41xbx7lKMqKZ6EAirLSwHaeS5BRvl3P\n1bPEeZRz8SKRji9WNR4gzSmKolSAOasoNcDcLEp5qVxl3BA8DPylbZgV0qyEVVbouDpnf0EZKsNQ\nveLK0EcFWVUpwiHWmtfjOhWFkt1exXoFgu9LHclYDSespLMF8UBbOvt8kSJKau2FKKGKVhjgehnE\nktdb3y+p0Hkm2k6jbi2Kxa8RU1WiojVxIjPuebxO+rWMc5WJA0BGK/zir30dl5lrW7i/18VW18M3\nH06QF3wMsRs4+NNfuIm7u10VBJVlrXFRlqWO6TCqmuFzgzpnUTJ1/YuSacvOIy64xcTKs8a5nkc5\nzpeJCqLPl4l2HeKU4nSaKC6O02k90rs98DHoeuo5G3Q97G6FOD1dqm1v9TxFwy2ZK6WFvq2CnMBf\nx8eczlaqzXU6qwmW5D5JxVFK2dp9dxFoWlYfz8U+71jWZvyDacCyTJSXVIZ+FOw6YLi2l8qKDaNL\ntdiOziOvBwS5VoFo9xkPJwmOz7nTTzKGt+83fjSqetbeWC9JfuPdUzyb8N5pWVX4/J2aK+F8kSqM\ngmFUmnPlugw1z41l1tlrP3TQCxzMxD73gnXxqVmUqSCpSQ50YxSA0lL1iIlZamJN2/0ADSVlMMa/\nA/gL3zINeI4Jk1iwTGNNfCrNy1ogqMFLIIMneR38NWZLE2leYrrkjplYgfY7FVMQstBiNHQbAo/A\nME3kVFQ2PJ3pDwAoLdVx0YamQJxSZC2NgWZGHacUlmWBiPvFsizVhqEl4+yScoyQVlpbgWfcCaJV\nhpJVeDej+J//yQGeTVZ4NlmtcRw0zTK55Lb8G88x8df+ypdwcxzi8fES3/7gjAtTVdVai+JsnnLi\nJrVfDGfzVDnIeZSpnv080gPVgjIkaR1sJOk6t8QyLiAxlMu40Lgl4rSs96e1LG9XlSrjTht02HFa\n4PZOB11P3OM9X7V6AH5/jPqeeh6Gfa9RNbGRFwxPRGD+2p4OILaJCYdYiCXmoTHSK9uGEhRKbHNj\nlWhTIHAZIFqu+8bQx9kiRS90YBvruJ0fJbsOGK7t+24fVcP9cJLgdMZfGDmFcuo2MTFf5Q1xmWDt\noT08i3B8Jnr6OdX44OOUYr5KlSOYr3TNhzjjCo4Anw1v2uPjCGfLTGVzJ9NUK//PV7lSGmyPz/VD\nrlMQJ3L23tYy2wqVUnysUGmZbUE5kp0xCcGviYzmUa6VyA3DWGtnWBbHCMjP0mQLpqAMFoAkM9dK\nzssoRZzwhU2k6vvAI1zfgEniHWwcyZRSx20BKd/l1NCyJ0EsQ007BB6B71iYy7919DFTYplwbQuV\nGElwbUtr8eS0VPddXrTHbhmmi1RlzdNFXWb3XQLDAEoRXxg2lxKfzBK8f7zE1w5O8ODZQgWU8xXF\n82mKTWYAePv+CF98cxtv3OJYg//+//i2ynwNw8B0meHmOERBmZCI5stmuU6QREtO3SyPkFXraqtN\nQqmmPTlZ6GJlJcOTk4Uaq0xzqkle04JpFSrDgMI/tDsxgUfg2iZWiaQsN7XrFCUcHAgAVkvyOvAI\ner6N0yl/TnsNzos4LZDTUrFhcs6KooHpcbG71cH7R4LNcatmc7SJid1RB8QQAlIb3g9X2SZper7u\nmiWWWCY6zuYKxEd9571qdh0wXNv31a6adLjoweKMchRhIHuaVDl1TgtrqJeJZepyvjzjyiFL0fMo\nXxOBmkYZZku+X5TpGeQyKpDJdkZUbKgS1GV0iXSX23VtS7UNXNta6+nvjTqwRZl9uzHNUFDGKwii\nd262Sv824YRJkrXasmp0Pp+CqFSGSctK9ZwBASRs0fdKh2ATE0lWIM0ZjKKCAb1nf75IkealkmRO\n81KV/qUmg2xXSE0G+eKeR3wiROpBzKJMK2fbRLBLWvKYdHrnjkewI+6XjqePe271PYSBg0KM+4WB\nfm9VVU393Haj02XKAZfqmKhGRiTPVQUePP6tX/ljjSlykw27LsZ9Dx8cL9TxdnyCf/2nX1PB5Lcf\n5mANVUjW6F9ESY684fDz1jUc9TiINyrlGKmFUY8fb+ARUMoU6LUdXAHQWiWsdULSBiGUPO7m/WEa\nNQW3aejZeuARZDlDFNc063LbNjGxXBU4EtU4EwbXeBDLSoCpBDY+nyYa+VKaUVV9SltaIgUtcX+v\ni4EIuAddV1UCbGJiu+ehEMew3fM2Bgyb3j1X4RuaLLGDQYAoStcmoT7qdNeraD/0gGF/f98G8HcA\n3APgAvgbAN4B8D+B5x7fAvBXDw4Oqv39/X8fwH8APrn0Nw4ODv7RD3t/r+3F7SJdBmln81QjT2k+\nWFcJOYW+rZjj2gRJ0qwNBDnSsqJU0wpZ0XwhMJgm4JgSBa+rN97d7eLN20M8EExwb78+VI6mHzro\n+o4SROr6zhpaPc4oIpHZBhnVyqiruEAkBZMMY81xZ40WTFbUjjv0HbiupfQNXNfSWAK5KmB97LTU\npyQcm8B1+KSEYxMtyJHOpMa565MMSUoViVHSog1WFM2GpGiG5ngLylCWDXbDsm7h2MQUWTRfN6vW\n0fmDroNUsDkOurp+Rse3QYt6RK9paU61Fk3JgN9/5zn+xbeO8e7TOZYx1X5rBwuG+I9pcLKqv/qX\nfhxv3uU0yr/w9/9QUXQzpo+odgMHNjEgdhk2qac30pxq7YyqgpblBx5nQXwmkP9NSvI4pShKBt+R\n2BimBcht3oX2d8Qy1wKGZrWmLajVtKNJzAMb8X2U5IrSnO9XCdc2xH6VWktiMksRJQU8ofwZJYXi\nywg8Ats2cXbG23u7W/7adeQ8H4XYL0NvOxoVTNXrWq+8XObUX4SNkRDzwsrCx9G5edXsk6gw/GUA\npwcHB39lf39/CODrAL4G4OcPDg5+e39//78D8HP7+/u/B+A/AfAlAD6Af76/v/9PDw4O8gvXfG0v\nrRW0xHcenWO64OXc03mKr7x9Qz1YUsipORols8umYhyANcW4wCO4Ne5gMuMvm+2BTvpTUIbAITDE\n+8V3dKY6WjIsRPnU89aztZ/47BhySu8rP3ZT265lQjkMy8Tadg2Tk/IAnNin2VagZV1zpqXekoiS\nfA2HIDPQve0A210PhzlH3G93Pext1xiGWZTCqGUKYFQ16FG2FbKcwrR4Obm5z+NBAKPuGsAw+Hfq\nmEqmgF8F0UvkW30uySzZK33X0l7Micga5cgnb4/UmW2v0+BZaCmKFpQhWhUqEIpWdSWoH3K5Zvmb\nTTjTY8kYDicxHjxbaMTbFYDf+84JLrLdkY/PvzbCG7f6GHQc/IPffqjwMaOej2HPVcdDG+k7ZbqG\nhU1MuMRCaoo2SmPSwXPI2jRfm8MhzUsVnKV5TZVcCBIhqWEi/632o2QwUV9DE3o7g7M5QmlckBbh\nlGyHAOttkDSnWGUUVOBnVgbVAp1plGEuKnlteGDgEZgmB6wCgtK7ce+FnoOOm6vPbVvEueJLaVbQ\nZJtNVnDak04vAoq+yMHLCsTpLEacFhdyvFykRfNps08iYPg1AL8uPpsACgA/cXBw8Nviu38M4GfB\n+dP+xcHBQQGg2N/ffwDgxwH8fz/k/b22F7TmwwXoFKxxSlWwAPA+crttMOy6oILerk3RKhXjgM08\nC2/f28JRyB3o3laoPdSBRzAe+phKQaV+HVAUlMH3bASSNtjTRY+kXkS/y7d9PIkRWAYCz8ZkliKj\nDKHAPWSUYTKrkfsAn26IRQa7IHqsW5n1pEDVes80RXna3xWUU+g6gpjHtnUcwmUZpE1MTnRUMJi0\nwtLK1xyzLLEDHATYbKNYlqmwGpa1jn9grKrFmNq1cLE3dWbdIvbJqKqapK0sfx7lyChTfiKj9TRD\nQRmWKw6KZRVwch7jv/q1r+Po7Aq+A4NPPcwi/br83J+6j5/6/J7YboaRAEcCwLARyMg2h9wn1qoS\nFJQhLerxxbTF8dCeZGnaZJZiuswUCdZ0mWnZODFNJBm/n7st/YvQd2CaUAGnaWKtAuXaFmhW40Fk\nwJBkFAVjCjBZMKYFQcTiOhKygGUytpFBcZP1QweeTXCS8/fAzqCeDJLji7aoPrTHF2VwKcnKZPAp\nf5/MUjUFswnbcRU502U2XWY4naVISyB0rFZl9AqOl0+Z/dADhoODgxUA7O/vd8GDh78G4L9s/MkS\nQB9AD1AYqOb31/YSm3y4AK5hIB+uq1oOMguQc9CbsoBNojBNu+jFFXg27u70QEt+O93d0RHYaV4T\nKG3SAogSTq0MAJZDANQvm7xgiDP+m2Otg+1Mw1Cl4yZOoR866AcOZkyM67WmJNqZXfO7eZTj+DxR\nfAjH5/rom+cQNGgYuJ6AcAhPTyIkOWfbY6iQ5EyxHgLAo+PZWv/70fEMb9zuq/l9GQg05/cB4Pl5\nDMM04IvvDNPA8/NYVU18l8CA0divGvQYp5T3twVR1fOprsBpExMGjLrdwYAPjhf45vtn+MaDCZ5P\nE7UfSc7w6PlmvgNpf+mn7+PP/eRd/P63j/B3/8m72m/Ne8AmJiqjQi6+qxrS2J5DYJkmqHCflqkL\nMU2XqeIrAHhVR2InPIfAJAYgMnWT6JoNScaVHuVtkBel5riHfReFDK77enDdDRz4LlGZvO8SjchK\nCm6lAozZFNyiJQNrjtFStnYvusRCVdVVk6YNQ1dhSQatqZ95lINVlQqwWVWtgXUZuzjAA9bHngH+\nnGUFVfTeWbGusHkVOdNFJhMGORXSFpi7asri02afCOhxf3//DoD/DcB/e3Bw8Pf39/f/VuPnHoAZ\ngAWAbuP7LoDpVesej7tX/ckrY6/asURxjrSsMBQl7LSs4Hf4y+zenRHissIHh5wF8P7NHu7dGall\n86JETOuSvU1MbG9361nzSywvSrx/ugIV9f1FXuL1QaCWzYsSn7k3QtjhwcvudoC++N1yCDzXhiec\nr+faGI06GAkCmbwoUX7jGKdzHgR1Ahd7u304tgW/wyWG5wsh8mQUeP3eSAE3LYfg3s2BGp0cdD3c\n2Oli1Pfhd1x85s4QHxzOxfno486tgVrWOZzDNAxI4WXTMOB4BONxF0/PV6JszH+jJYPpmOp+cQ7n\nIMRQrRJC6mWDkyUfT6wAVHw8MQgdtezejR5Msx7jNE3+3XjcxTIveGBRyaDHRdirl32DcR4FKkYO\nfMfEG/eH6vfzOIPrEOXoXIeo5Zd5gZIBptASKBngBnyf04yiOF7CskxkBS83s6rA//p/646+aZ5j\nYf/eCG/dH8KxTfzKb3wX0ne7toGf/PE93Lk1xBNButW0m+J4AeD4LEKSMdXuSDIGN3Aw3gqRMgbP\nMdWIp+eYuHenX1+HJ9O14Eteh2VeoOMRlFRmvQQ390K17L07fVQw1Air41hq3VGco+O78Hz+W8d3\nsbUVqnsnZQxhx1GTEmHHwc5OR627NA3e6pAU3WWFnZ0Q460Q/fMVCLGUQBghFvoDTy2bMoZex0Up\nRol7HVftV38QoP/OCRaiotbv+QgDB454llJBFiV9OWVA2HMxHneRFyX8d89wKqqAO56jnjOAP4dv\nLnOciWRka+Cp3y2HwPccZKLH4nvO2jN8/yO+W6I4Bx5OURQVzuYpfJdo51q+t5r2out+Fe2TAD3e\nAPAbAP7jg4OD3xJff21/f/+rBwcH/wzAXwDwmwD+AMDf3N/fdwF4AN4CB0Reak2SkFfZxuPuK3cs\ncVpgsUy0787OIoTBCKenSxiUIXS4UzcoWzu+00mk4RT63os9dHFa4Oj5Qv17sUxwo+toWcD/8/Un\ninzp1riDgNyBTSzMowxboQNflPcDz8b5+Qql8C7zKMPx2RKJ6K3PVxkeP52iH7o4eDRFVpRqWiEr\nSvzxd46xf68e6ex5BJOzUn0uc4rT0yXitEBVMZVhVxXD2VmEZMX3mRUMhBiqvEqIAVbwc5bFFIxV\nyokRViGLqTqfJpPAQzkaZ8Bk/NnIEwo0uAFQVciTetlx10PgWVjGIvv0LIy7ntoux0bw4zUqaNvN\n4gKmWYEKJ2d2KmRxoX6PFjlyWipRpZyWiBZ545hKJGmOkvEX8f/yf3G+g+Oz1RrSv2nEMlCWtXy1\nTYD//N/6Iu7tcQXC957O4TkEpQhkXNtS281TjsyXAZJlAnlaH9Oz4yUOJ5EChlLG8OxwAYtVODnh\nPAxy2aoCTk5W8EQWnKcUjcsAw6jXHS1yGIaproNhmHyfnCXG4y5OTlagRT2tQotSrTtOC5zOVpgI\nXhFiVtq9Mz3njIiyr54XJabnidqv7z48Q5rVQNA0o/jugwksVoGJkchmfs5ypl1jxzZhiB13bFNd\n4zgtYKFCV1QQLFTIixJz8UxncYHZPMFEviNKpi07mcZYiCmYiWPh6HiuVQLLjGIplh34RK03Tguw\nkqngipUMy0WinmGAq0xGDdCjXFbaRdNbBS1RFhSrVYpOx0NZUCzmMZJVpq17ecm6X1b7KAnpJ1Fh\n+Hnw1sJf39/f/+viu/8UwC/t7+87AL4D4NfFlMQvAfgdcKzDz18DHr9/9oOYG5bgxKMz/iLb2+po\nTvuylsNl9M1X7TOXtyVYiZd6x9PbHXFK8cFxpIBrRVkp/EQ/dNHruDhbSHS2q4nXFIIwR04zkPNY\nK3fy6QsxZ9+a0ihoiWHXwY0hX9+w62iU1JZhwJUCQa2xyq2+x8GZBb/lfYdo7Z2i/P/be9MoSbKz\nSvDa6uZ7LB6REZGZlUtVlpVKG5IQAgmkYhe7RMNppnV6kAD1TMMAGqDZpunpaZhma6CbafZNNEs3\nzSIVAiQECCQhiRJSSahKqrRSZeUau0eEu4e5ubmt8+PZe/aemYd7SqXKysh691yUaGwAACAASURB\nVJw65fkszN3M3M3e977vfvfG7KEexjGKHQX8oahK3nGgayRtHoxIPsYydaGUY+hE78BT8vo239kR\nxWmuqFfwKCCukXn74tCP0O35gk9FyrcZxgl2DkbY3Pdw8eo+tvdHuSPjKMLeYDIxUQEhVL76ZWfw\ngrsX4Y9j/PKDj+IwKxtVDU2oY9csHRVTY3oYlZLGg8J0B/QCmWA0jgiJLlu9jpS8NEDr6LmZlljv\nb1QJ3yEO8pUtL4XtemP2HbreWPj+Dw59FA3EaDkjjBLs9Xz0h5QwKso3e36EkZ+7lY78UOiEieIE\n4yD//YyDmH1WGCVCWSBJyjbjnh+y7JaXvTf9jod+iEE2mVoV8T4lPJSYlSzGmRx6u1FBGCW4tnNI\njM8ABIkogkZt6GnXRtGGvjNnoZL5PDTrZcLktE6IWW2Rp080sDRnod2uYeyXp6Cb6bK4U/BMcBi+\nGyRAKOKBCX/76wB+/ek+pmcbns6+4WnExVkQiElhUvKSOOqYib1t80h7W8+P0D8cY5w9uPuHY/aQ\nI5N6BUFQZcc8rQapcPTsVt0skfxadVFm+cnNAbqZ0E+QABdOzbHe8a29ITYzsamia2QYJejMVUEP\nY66Zazhs7rklc6nNPZe1ex56AVQ19xJQVYX5WdQsHaqmQsusgmmnBMWNHRd+kDCtBJ/jOHR7Plw/\n795w/UAICNxRAH8c5RoO40jQFhgMxwi5tkovSPCLD05PGi60Kji32kKrauA9/7SBOOv+CMIYF062\ncdeJJi7d6BMiJm0FVMsBpT+OGcHQH+cBlmXqUBWFyRWrilLuGOB8ppM4Lk3kR3UUEA2PvF9BU3NN\ng+s7A/B0mSCCIK6kayrrkABIkEsDOzJpR0izL4L+m/8e4jhl3398lE4HR3KhvA2q8ZGfX1r4DgNi\nspb9zdCPmOMoAGzuDbG1T37TcUEGczSOMA5i5r8xDvLgi1hfj9mz43A4Fs6JajjQoDCIElw4lbB7\n6cR8DUZ2fRaO0GH4dNoiKZEbIAsiU5n8Pnd6oEAhhZueZXg6+4aPyiIAN2tBfbSXxKxjnu5WqSIB\n2MMoQb5qJg8ij7kzbh94uHCqzT0wVCy2q0jirPNjIbe/HgwD6FoudaxrivDwDKMEV7dc9DKd+iEn\nRtN3Axy4AavnH7i5VwQ5B50QQ0e5KQ6d2HVNBbf4QpSIhE+iw5CwiTmKEzYJhlECU1dhGoRAaOrl\nToc0TVlQkHIPfephkWTfTVjwsCB/n79OEuDhx3fxvke38OTmgK0ej4KmKtA1Ivaz2LbwrV/5HJxc\nIvbKf/XQZfDk9ygBrm31YJ+ZR83SCXE12x5EkRAEre+6TCsDIAz89V2XWXZbFR3jIPf04CcbXVOh\nqirzXVBVlV1r4laZcxg0TRWCBtJ2mQcbUcJNkKPySpUfi+KkpNNA39vQVVLOyVa7RkEK2TJ1qKrK\nVDHVAhmzUTVhGCoLoA0jz3xEcSJoLygKSgFSyol38cfVdwMM3JDdugM3xMFhXgqpVnQkyMsdSTZG\nUbMMRmrk3Ugpuj1iPQ4AHU6pkqgxGmzBULc+9ecZT8YugmYQOp3mkeUGqfQoIfEZxs2k7vgVfBHT\nep2nuVkauorVhSq2D8iT7MR8tbQCoanw4gODmgBRxnnEGfnoWYuhmj1hVVURJm7PjwRVPT/IV4Ke\nH8EdhexBpSiio6ChqzA1FUH2YDQ5VcRpHRT0dRjxAVcqTDZxQuy8FZWk4vlrcWKhhjRNWUBipinz\nqWjWTMQJc3OGrpKxKE6w0R3i4rWe4HkRp8B7H9kqHSuFAqJx8dLnLGOxZeFt738SO/vkgdyuG2hw\nBkTahA4YOrZz4CFJU1YaSGIyRgO3nuuDSxIgjnNdCkNXiX8JLSuEYnmnWtGRcsFripRNcs2aCV0B\ngmxfXYHQjeAHUalFlQZYC+1c24KCH5umxgiQlT0tsZiGGLS16iQgoMGoYahC5uvUcgPNqoEoyNsy\nTy2TwGyuQUphVO68aupCi+9Cy0KjaqDnkvduVA2mQAkAULiyzoRbuW7pLGNT54K6zpyFMytNXNsm\nXIm7TjQFa/QwStAfBplLK2AMNa7dN8bQDxnPaOiHN92pYOga9vpjrGccjZNLTZxdaU38u6OIjFLp\nUeKOxc2t9J+p91Y4Fcf8aUN7nTf3yGSyulgvcRtu7B4yDsPQD4UMBJn0iakOQGyIBTlbL2DvzUs/\nA1RmOmZZBG8UsVYw6hVBJ2PeK4K+t67lIRD/3mSiyid2PRRLEp4f4cauywKVG7tuyYHvKGztu6XV\n6da+C/vMPNFZiEmfvZImWXCRz/J7fR/ik15hpkejcQRFzc8nTFL86ts+jt0JFsg8FIVYfy/NVeFc\nO0AQxVBAVrpf8/KzuGuliW5vhL3BGG72HWmF96xXy3VpfkyQYE7FY+m0a6XJl5px7Q98omzJyUPz\nLpiHXgBVUaFr2WpdUVl5x9BVKKqSExdV8bczLUtgmTo0BSwroimTFRonYa/vY+iHbN+hH7LvCCCT\na7NqsKxIs2oU+AAJIcJSs0uOP7PaqaFa0VkmpFrRBVGwdsOEZWosE2CZudtpu2Hi9IkmtjNp6BOd\nGuabVUYQrFk6FEUBVdNQFIW7DzWcXWkzv4+zK+3CPZ5gOAqYKNhwFAj6IB92tlkpZPNgJGQJ8/co\nZwE8P8Q4jFigNw4jwcNiFqTSo8Qdj6eTpDOLXHRUFgAgDxxKXOJX+nQFQXvaiysI4mYprr54URfS\n/w0sZPXQJIVgjTvwQqYOMPBC8IJSlPRIHwraQU56NHQVzZrJ/CCIFLCou7/aqWMre4CudGqCYFSc\n5PXvuEAu29730HcD5hrZdwOmaTBL+tcy9dIEyQvzxJnaEDUZ4ol6fiA6P/ohUeh87NoBPnZpD/44\nZu8dxyk29ianaBWFGBN94wP34OXPW0XFJB0pv/CWR7CdkWIX25ZgxhWECROyCkLRZno4IYVPxxpV\nE1XLQJJN5JYpSmVPUz7UNRVxnGdUdI4rQLdXTBXI2m4rZl6SGAwDqKqKTGsIqqoKJSldUwuhl1g6\nMgyVdSUYxs0rBJLMBZdRipKSrHScpGyCjJO0pJcxHIXsexyOQvbb6vZ8tGoGIz62agYTjAJIWYCq\ncgLkHsgFpQzcd3oeWvbOF07Po1EzWcBAAhUwroGi5K2Onh9ibzCClZUi9gaj0sStAECq5K8z9N0A\nG90hWxBsJIlQ3gOmZwHcUYhhFpgXzecowigW3HKfrZABwx2MaXW1pzMCPopcNC0LMM2XnpAH+zjI\nth36YYlnULcMQcltolvdhKEwShCGuQRvGMal1bI3DpnIDdWyp/uOxhGr6Y/GomCMoatYaFoYZMe9\n0MzJWNRLgOtuFB76UdYmxuryYU622+uXJ2l+rDFhNU7HdE2FohByHxFCyicxP4hwbftQSN8nCfC2\n918tX7gMNUvH+bUW7l5r48R8FW957yUcZFyFdsPEi+9dEurRCnJXT/6hT62z6RUpWmcvtmslMarF\nLEvQmbOw3K7iShYwLLSrQjrbDyKxTRD5tSaqmGLJgZ/UT59o4MRCDdtZqeTEQg2nTzTYMYZhzIKN\nMIyFmrxl6tA0BTGVDtdyQmWzZkJXFYS0nKEqQjlD10inCw0oVe57skwduq6y+1vXRY4CtfemcaDn\nl4WM4jRl33Os5edv6Cr6XsDu02LWhJiX5YqcGrc9jEiL8RIVMdIUFC3paxUdaUYwrXES7dQqvp/d\nK8XMl6GrqFVNDLOTqlVN7nOJvgMlWUaJ6AczTRra0EnA2M3uH8tslp4dNNjwItJCWSRcP10Z29sR\nMmC4Q3G71dVmZQGmKaZRZ0fa2sivTADaJdE4skui3SCa9d1MmrrDrWxrlo6hHzLrbE2tCasxz49g\naCqM7KFaMVTGNfD8CIejkE3khyOxfS2MEhwcjtnK5+BwzM5Z11TWmgYQ1buiUiVP8uNfVyZkGPgx\nP4hKkw2dIGuWjkbVIMI8CiE+vv2DV7H1dg+b+x4KxHYBhk55FCkMTcVap47Xv/o+LM2TiXuzO0QS\np4wQF4WJwHTvuwEGXv7gHngBa6tb7dSw1LJwfZcc51JL9MeYb1qoV3P1wnpVx3wz/03vDUbMG6FX\nIFdOUgAViIucG6mmKgIfxNBVvODuDi5qRDPuvrPzwkRlGCrLAk2S6CZ+Dzn5kJfoJs6PVO+iaLZm\nQtfAOil0LQ/6FtsWdFVh5ERdVYT7e+fAwziMWJllHEYCp6NZI9099KtOklQIVsZBzCS16fHx10NV\nFTY5q0LAQAjEdLUep54QMHTmLNQsgwXdtZbBAjtDV7G5N2QOnEtBVApUimRcup14iShwvUwbQleE\n0iBwtDR0GCU4cPO26QPXLz2XboZwLdsqJY4tbse6Gs0CUInlorkQBUsVF7elClJam07LbKppN20Y\nJahXDbQzEl09q+kaOrGjPvRCpop3mJUkaDqTmBilCGPqwJcK+vdKtlIHxFowQAKKjV0X+1kgkyIV\n3rvIRudBSXmTxqb5TLD34/+REqvpf/j4Fh67eoCDwzH8IAWZyGI8/Hi39H48Xv7cZbz6ZWdRs3T8\n3B9+FAcDEvgMvEAggu0PfERJbjMdJanABwgz/weqyBenYh16bbmOOJt815brwoO7ZumoctLiVa5r\n5OLVfQxHITtnbxzi4tV95geha2pJnIlO3LqmIuIY91EoeiOEUZJlTDJPh0Ee9NFJjAZZ/CQGkN+y\nrnJdNIVgJIjyklTR86Ja0VG3TFZmqVsmy1703QCmocOkKpCGXpJYLvVNcjj0AtK2STMUWs7L2B/4\nSFKwY05SlL7DIExYZ0hQ8McY+iEOMhVIKOW26lbdRH84Zq8p6O+CSn+PQ7Gs4PkRdI3TadEU4V6a\nb1msXXO+NWlxNFka2vMj7PV9Vobb6/sTuUJRJJ5nEXd6oEAhAwaJWwLa+kQDhmLrE2UrX80UG8+c\naDG2sqGrME0VSWYPYJrqxGDjqJs2jBJs740wyFY+2t5IaG/0xxFUJUvLjyPh4RtGCaoVgwUUNStn\nZ7cbZBWY18MhrGxo7zi1+A0jUYymmGHgMW1V7I6CUk2e75WPk1TISCQAfu+vn5h4bSg6bQvnV1tQ\nlBQPPbYrbHvOmXmcWm7g0o0+PD9kk7rnh4IOQ7NmIoqSXJJaS4SVqzsKECdJzoFIEnbcYZRga99D\nP3MNNQoCWZ4fIQhy/kQQxEI2JxZWzOXrdlTA0HP9UrmCBGZt9rndwYiR8boD0eMCaa7/UAxkaVmF\nlgbysgvhPwRR3sIYRInAf6hZpOxAyze6rgpEXT+I2HX2C6vx5fkaqhWN8RCqFQ3L83m2hhpIsXPm\nDKQsk/iF0GuVJIlQ7vD8KGtRJX8/yjp/eBzV5+T5xEuDtuoeHIqT86EXsM6PIihvQlPzDJPQSmro\nqGUOl9Q+m0e7UUE9+5xJXVZJPDkY4M2l/BiwNOVZExxMggwY7kDcjnU1WnJYXSQPrqKSIyU90dVp\nkfSkpBwbfUKGgb4HUNZhCKMErp+3MLqc9kDN0mEaGsYh2dc0RLtngNSe6dUrXkdN1aBmD1utIBg0\nGAYYB5wpTpCL3FAOA0WRwzANlqmXJrlHLx/gH51dXN48ZFyPo0D1DiqGjrmGgTd8xXOYjLJz9QAf\nfGxXWJvSjoIoTjAchaBZ6pQrx7BjSbmJe0J9o+itQBFGCXYPRhhkzpEpxLLToRcIq/AgStiqeHWx\nIU5SChmjsEwd1YqBJM4cSSuGMAlOXnvmGI5C9LPPUri5hpL4FE76mT9mWmagiTGDm/SjOCl9MH8t\nPZ8EAZQEbOh5KYypMTLBsKT0ue26ycoB7YKNtK6pKP74+FJJ1TIQhuQ3VC3wgaI4galrzIDM1DXh\nuOuWwQKneuE+CqOEuG9m2+NYDKB1TRUyPzzajQpWFup4Yr0HAFhZqLNA1dBVJGnecZSkYsfRtOdh\nzSI8Ez8zAZvTFOFa8aXSubkaXNe/6ZbNOxEyYLhDcdzqamGUwOeEbvxx/vANowTjKOKsjcskridu\n9AVJ6ntOicamSprmSoDcw7LdMDHXNNlKd64pukYSjkMAl1oBjwL2QPH8COMgYunZ8YTV1lF1B/LQ\n5v4uFR+SkzIMiqLgytYADz++W9r2vkeP1jsAgBfevYCXP38Nc3UTv/OXF9EbBlAUkk6vc3oHfhBB\n03KtBU3LAxk/iEp6BnyQc3Dol+yeqZwxQAWFRGMrOnF7fpSl6MlFCTLiHn89FIX5XglkzUMvEIKP\nNAELJgBSO2/WDIx82s2S187nGlapk6FY3gmilKW7A05XwdBVUpKiJE5FJAh6fpRxJHK+BD2nhZYF\n09AYmdY0NEHPwMhIjXTSJ5NUTk4FFOTGjYrwPXh+hCTJtyeJInBJ/CACVBUq8i+C57gYmgKNtv8W\nJtCVxRoaVYNoV4C0Eq9kiwCquNhVvOy6E4M36i5Ts3RUKhqGWRapUtGErMnJTp1ZVC+2Ra0UKrNO\nLe6LMut1ywDmyN/WCxb15P0mPw9JBlFHO9tWreilfSVyyIDhDsbtFCjQ1N6NXVJXOLXUFI6vZukI\n4wQ7WS/1yqJIPvTH+cPTH4tELM8P8eRmn5U7RkEkWNAauopajbPzreWrpjBLodMsQVAoG3R7PhHf\nyWaqIExYGj6MEhyOQkZMOxyFwr6tOmkTDcNMva4goFNUa+Sx2KoKZQcA+K23O8zzYBJUhRhrtesm\nHr0sGrs+8Fkn8cILS7i2dQg/iBHHEZKEMN6LQQ6f0udfR3FSKo3zq0tdU0slh2LgY3BOiGJJivAB\n4uwDi3yAVt2EquTW2KqisGu5ve+WSjDb+y6ee34RQNY1MI5YEORx3Sx+EJW+B37yDaMEFUNFnP2W\nKhyxkaxsU25lKx7zaBwRQSnGB8hbWA1dLZmAFcts4yBm5QyefNismUTPgAVPYocF+V0GCLJV8yGn\nWQDQEo2KWCVjGkfGJEqgOiqZGJSpixOooau4cHoON3ay+3i5wWmLEA8P6lY510wFjouhq2hZJkYW\nNWPLeUyduSrSFBgMSTCx0KoKnAwqs06locdhIsis0wAMIEHMxC6po5Byv8XC7UWfWxt7Q7hBgoap\n3VbP1VsNGTBI3BKEUUxY0NkKQlNVnFlpCK2TzZpJUpYgD0We9EbkeyerMYZRgvXd3FHw0AtKD7mK\npkHJHooVLZeG7rsBwiCGSY8jyA1xgKy9MUpAa7Z8e6PLtWoBhBjFcwnIg6yKJCGZj4VWvmra2M3d\nNSk++NgmLl7v4cmNPi5tDFBc50wLFr7xgfP44pechmloeOjjm6WAgU6CIV3FKxpUVckmPHEyKTos\n0smkUTVLwQTfwjmNdwFkMsAplw1Pc2lganrlZyYWvOkVkLcG0l1DLgMxq2tkfdclWhzZv/tuwKSh\nr2/1Svte3+qxYKNm6Wg3Kqzu3m5UWCA7GAbwg5xs6QehwEOgAQ3lv1SgcUGOh3GYsGBiHCZMCwEg\nRMMhV88fjiKBfMjPh8W5MYwSjDiOgxJEpUC2YWk4zH5PDUsTAlkgZeTDSUWaTttCHEXsNQUVQVps\nV7Jzihh/hx4X6ZTQ2bWlx9XtjaAowEL2fopCxnguER80jYO8/blmGTi/2p5oekdxVNeYoauYa1hI\nkpxQXMxsDP0gc4dNS6ZXzzbIgEHilsDzI6x3XSY5G8cuPH+RCSRRaGqZn0BuahPj7AE615jQYVHM\nK3MIowS1qo7FOGulrOrcw0ZHkqbwaJpUF82YqhUdlqkxHwqrorNJzg8iUQq5sDol9WCNPbyqlsb6\n2LcPRBtwAHjvI5PdGSnuWq7jxfcuY783xHseFf9WSWK2wqKCQTwPgU7cNStzp0wJh0IvmE8BKBEE\nKdxRAE3NsyGairKpUaHMUlyto6B6wE9kc80K++raBeOybt9j2QeAZC+6fQ93n2pjZaEBDbR5kZzv\nykLOYdjZd0vf086+C2BpquQ0QK7X2ZUGLmUKg2dXGux6keuhIc1UIDVVE64HGVMmvo7iBFESswAs\nSkRTq27fK7XVEq2AxSwrlrDfeVBg8BPzKe5axWIgSwTFGki7RA55tdMQSgNJmrLSTzFrYugqdg48\nbO6TCVZRywRkGvQX51TC6dAwCsi+fPAVRglcL2TGV64XloL+hZYlCCzxn3vPqTYrV5Q5TEd3jRm6\nis6cxUignbliwECIy/44QgwVcRQx06tnI2TAIHHLwAu+FMMC4nFAWvUAMqnzMsrDUYhetq0xMkoP\nsZOdxpEtm4auIk5TRgZscNupkY+fTQhBJD6I2g0TdcuAO8pawao5x2GWpwN9/yhJEYQJRjtD/Pjv\nPozd3mgiuY6iYqjotC2sd0WBpm984B489/wi/uCvL5b26XOCUpaplwIGyhUgAjikPVHVFOE6AxmD\nvkBM5IloR22jKE7MPPwgYoZHADAOElEfwjLYhNCwDCGQsUy99N70nNxRAFUD41fomhjITPNtsM90\nYGqXGZHT1MgYD8+PMBzH7DXFmZUWWg0TB30yAbYaJs5wPgSeT6yxaSlkNM47O4hLpgrq3akqaknB\n86jGSD+IoKsK4kxGXVeVEmG26GbKg5IEadaMJwmGUYK5RoV1DbXqIh+g75LV9nx2DyRJyrqKapaB\nIExwfYf6QbQEpUcAaNR0NH2TvaZoN0iZhX5vVqta4BKRLMLGHimFrC02SoHBzco5F9GqGUjTKnst\ncTRkwCBxS0BTf8BRqT9CDmtkN6ymqqwkQR9StAebf0gB+cOEPqhOLzdLD4+rG32mNc+3lHV7PoZ+\nxFZFQz8SWgVp/TvOnscux1MoTswA4AcxPvDoFi5t9PHJ6z1c3x3e9DX6whet4YtefAqri3V84NEN\n/MZfOMJ2qsPQsMq3LT82TdkQIKWTJNvAl1TovsXJhldFnBYwzAqgeq5fWjXzehPzrQrTBphviRkG\ny9Rh6irG2fGaBXVDTc2dIlVVLe1bBB1rN0y0GxXs9qk6ZUWYqPpugMev9eBmhMnHr/XQfyH57XXm\nqliZr2GYBbIr8zWh7u6OAngc38Ybx2xCrFZ0mJqCcRbnmZoiqESeW51DxcjZ+xVDwblVwupbaFlo\n1E0g4wo0arpAmCSCUXkApari99R3A6QJ8ZgAyHdMNQ+oV8QgC0B5rwggNy+jHSu6nmcYPD+EaahY\nmSfXwDTUUklCUwkxEiAZF3qPh1GC1U4NtewatJtmiXw4LYswDbO6xqa1XBIiZxWDYYhm04KSxKWM\nCjk36VYp8SzGU7kBJrU3GrqK82tNHBySh898szLxxtPU8hhpKYuxl6nALc6V3SbnmxVWNpgvpLOv\nb7voDsaMA9AdjHF9m5gx+Vl9l9Zsw0jU5d/e93A4DHIVweGY1ZqLbZTAbL2DhWYF95xqIwojPPzE\nvrBtZa7C7JyBo1eYnfl66X35sWtb/dL2a1t9vOS+ExkXIEWapEg1QtjjV828TTRAJnV6PboTJKlp\nmpxC04GsvA2t8HS5ulXmbVzdGuAVLzhJ/pEqYG7QhdZZwq3ID0xR8lbA5fkadF1lFuW6pgi6A49d\nKQtTPXali+eeX0S35wOKgrql0jcWAsa+GyCME+jZ7zKMc4+Lze4Q3jhCIyMceuMIm90h4xns7Lul\n75CWQoCjlTwBEsg0aiaCLJBp1PLMVmfOwosvLMO5Rn4/9l0LghS2ZZLUf8iRS/mgiZYdomQyWXO1\nU2cq6ic64m+tZulYWWhga58EwisLddGn4sBjxMTmBJXIoyTcacmhkmkoFEsO+ecfHShMe2Yd1SUx\nK5ggKrJNHFg+5ubqUOIyf+F2U9V9OiEDBokSnsoN8MSNPnYyz/jluRprb6Q3HiWPFbskDF1F1dTR\ny1QRq2ZVeJj0vTG62Ta9INxEa5TM76GgbBnFCcZhkvfxK7niXrNmwjR0RHGuw1C0KPY5JUB/HOOP\n33MJv/EXj6Hnlg2ReNQsnfSrpwl0TUG7WcUbv+p+3LXSxLs+dLUUMPC18067BkXl2gjVXA9hmlcE\nUFYNLI7FSYw4TZDEKuJEfKhPM3maVuoAgLVOA7qqguY3dFXFWicPgBYa5ePmxzb3XOz0MlVMRZxB\nyfelQFXyT6ffYRglqFkG4uwcq6bI7DcnTDxm4fdDbcQNXbwenTkLNVPHfpYJaVYtNjl7fgRvFCLJ\nZnuvIA2+ttQqtaiuLZGSxaFX5hnwraDdno84TkGbDOI4ZYGMoWuomLndcqXA3Dd0FRWOd0O2i7yM\n+aaF4Yhk5OablshjSRWo9O8naJ485+wcTi+TQKJRSuEfTSaaJuF+MyWHaZhlbEc/fxJmtaDT7Z1O\nE/2eGDTfjqq6TydkwCAh4KncAJ4fsmABAHZ6HkshAsCVrUNcukFY6XGilG5q1w/RO8wClXpek+/2\nfOzuj+BnK5Pd/ZHgoAcAH764y1awZ1ZaOPn5+cqoWTORpGmuXpfm2vnthonFtokgIO+92DZRr+q4\nvDnAkxsD/MPHN0vneWXLPfIaPO/cPF75wpM4v9aCqgD/8Xc/hL4bI05SjIOQrRIXJ9TVS2PFugK9\nTqOgZI3M1+yXBIlgcczQVQRBgnGYQkEMo2AuNK3joDPBAKrDHXMYJaiaOqI4S7sXJu77zy8D7xGN\nrO4/vwyAKm7mNuL+OC45DloVjc1Blin+Hps1E+OQ8l/EicY+0wHef708BjJ5jvwQ1PJg5IfC5Fmz\ndJxbayO5Qc763Fqbbe/MWdB0Fb1sRb1oWcJK/9xaC52WhZ2DzMOkZeHcGgkYojhhhmcAkRznyzdk\ne8yInGGckyK7vRE2urmF+UbXFToKDF2FilzoTIVSWq2Pg5ipVxb9IkZBCHeYlTuqobCNrsgpiivy\nE/NVxm/gWyoppk3O95xqYym7fjTDczMgxnYuy1wM/ehTnrRn/a2haxPP59kGGTBIfMZB+QCalq8w\n+u4YH3tyl0m/DoNd3HOyxR4Mnh/h6tYAO5kJVJL5LrQbGg4OfYzCmC12peneWQAAIABJREFURmEs\nCAL13QCPXtnHwKVulhFe9Vlr7AE6GkfQFAX0cDRFYf3wSZpi4IbwA6Lrf3XTxQ/+yj9MbWFUFODU\nUgMLzQr+6dKesO2rPvcs7DPzAIBLN/rwxwmbjPxxruEwy3Gy2/dK8UK378HGPBpVs5TO5jMM9QkZ\nCDpGJYmRkom/KEk8zaei5/rQNLCygaaJMsphxtanK2r6bwoisKNhmJlx1TmZbUNXMfRDRnqlYxQr\nizU0LIP5UDSsXDCoM2chDGP4Y3JR6pVYmLijOIGhgX0PBifnvdF1wfMFg4iM8d4J4zCGplOPg1ho\n90WKvE+08JPx/AhWRUfNyluDqRRyFCclPggfMFQrxKKaXss4SRnHIYwSbHSHcD06QYal6xwleRdF\nVFCC7LsBrm0fstLhte1DFpyFUYL+IWerfhiUuARHTfo1y8DyXE3IMBZJj8V9ePCZzShObzqzSYzt\n8sCGXo9bscq/HVV1n07IgEFCwFO5AWqWgYqh4+p+7gfBm8d4o7wN0RtFgvqc50e4vuOyiXzMOR02\nqpkVcPZMqBiKMEHu9X303THG2b5pNsYT0FRVYXbScZLibz9yA29575O4snUopOvDYjF5Ar7xC87g\n1S+/G+/72HopYKCTOkAmU54P4QcRm2B5MhgFPzaNQDiLS3AwYTsdc0cBk29WQAKmYmtkMXtBz4Eo\nNapQOHIhX5IgpZ/8fMdhNHHVTMGvmoFcUIi+LqJZNxn5sMnpBnR7PvwoZu6MQZQIGagoTkr6EfRz\n+65PFCQ53Yk+R8T0/AgbGVcBAHmdTfrdno9xGMPIjnUcxiX+w3AUQsnOaTgKGf8hipNStoa/FqNx\nBA0qNCUTV4LK7g2AkGupYZIeiNdqNI6gayoM2kWhifvuD4gjI5Vhp9bSqx1i+KVx6o6appQCBuDo\nSf+pZAk+3cwm4UbozA23bk3mPzxdOG6quk8FMmCQKGHWDXAUuSiMYuga0MpSwrqW/227Qdz2djL9\ngeV5sW3K8yOk3JIrTXIyHhV7of+uWbqwgtQ1FWEYM4EcNYyhayrLWjz8+C5R3cv+fhwm+ODFsrwy\nxclODZ993zLuOTkHfxzhF976KNumADi9Qtjqs7oCdE0t+RTQiXCS3gQ/Nm2l3z8sO1nyY9O0BYgU\nMkceRFp2uiwIN1GcWKihYqhslV8xVJxYyEsS7ijIyKOZYBDXJgdkhEpuNR9HYvdGvWay61eviVkS\nIsMds2s0zsyn2o0KEerieCZhKPIBpvk2nFmZg6rmWRNVJWPsvSIirkS5uKoKIStCgqtsUlfErIih\nq1BUhRkbKZWcS0CIiSoLVo1C14euqUiQK0EmyEmeYUQ4McyYqjCpL7YtpElKFEoBpIa4Wl9okQ4l\n/jxol0XN0rE0V8POASE1Ls2Jiqv5dZn8DChmCZaWmqV9P9NgxMQj7O1vBe70QIFCBgwSE3EzacMi\nIZKKnFCWdALgwqn8obTaqbFyxWqnVtI7qHJqjtWKzgIKL2t7pPNgHKdCdsLQiVARmxfCGL/04KPY\nn2HCVDE0tOsGI9pRvPpzTjPm/qUbfVhGzsCvGDnjfBb5sFE1ibHVOPcLoNvnWmWeAT9WFADix05w\nxkoU/FhrQrBBxwxdha7rGEcRCWB0cTU217DI5JjNP6qaByqeH8E0NJh6xM6HJ/nNNSwSmGSTiaap\nQjDiBxExb8omZ0WFoMOga3mGR9dQmqjcUchaGPlumoWWBZWTqa6Yoi+DZepQOGUnRRPbKuuWgcNh\nztznA1mmD+DR1avYrRAlCeMCVCuJEMi2M4GxiHUr5C2bJ5ca0DQAtKNEg9AhAxCpbxqw8fFlzdIR\nRQkLCKIoKRgmJahUNHjZz79S0YSAot0wcdeJJq5nnJ/TJ5rsuGpZ5wK9h08ulVuUjyIY0iwBbdUl\n8tQiP+Io0MzmpzvpP5tW+c8kZMAgMRGTVhA3kzbs9nx0M/nnDr/qixK06xVUTmX13IwQx7vGLbar\n7MG22K6yh+D+wMdwnGv+u36IT97o4Yn1Pp5Y7+Px6z1mDgUQJcJZwcLXveIufM0r7sY/PraFX3nb\nY8K2oraAqilAVg7R9ZydPyvDULOIdkBADYaKboVT9t3rTeA4ZGPTOhkAYHuvTMqkY6Nx5oKok5IC\nVZ4UjiOa/Jq6DWqZfHPRbbDdMMHnNlSIdt+ddo2sirOgQFUVRpoMowRVQ0cjq9NXDZEwSbkECfL0\nP79CrloaDjPJC6vQFUBEkrjjUvKAoe8GMA0NVTMP6or25ooKGJlrpMJlGDa7HhQoqGRkOAUKNrtE\nfRKgwk0Rs7ikvh3tRoV9bpAJWRU/l15fmnSLuVIZ4UYYzKjLqhhC4BZGJIihZZjROC6XFZSUGUyB\n60jpu2Nc33XhZxP99V0XfXfM6ZLEuLF7yNL/Qz8UngF9dyyUBm4lZKDw9EMGDHcwPl0thU+3rZK6\nSlLwrpK0B5uC78Gm+y60KqzXfr5ZYfseeiHGQcwenn6Q4M3vEEWNiphrmLhwqo3za2109138zUdF\nN8dKltK9mbKC5+fBiDuKWEAxcMulgUGh/p2mKVslpmleZplVVmg3y9ecjs2SMx4F5VUdHSOeAdlE\nlABAKvgIXN3qlcooV7d6uPtUm9k18wZKQg/+vockBSOXJikEf4SapUNXVATZUl9XxP0PvRCHmUR3\n0S9kNCbqhmY2cetqTlyl2hI0RR/FoiKjH0So6DqSrB5S0XWW2TB0FVEUM85GFInCPJ4fwVBVdLLs\nj66Kzo/DzGWTvuaxP/CRJnmZIk3AuAJRnGA8zj93PBb5HH4QIeGCnEQRszGNms6cXRs1vZRhGIcx\nI3nywRVAgqTxOGbZrjHXkdJ3A2zvDVl5b3tvKHirEIJhzk0ZZh4f+TNmikb7FNDFCBVOutPbE48r\nZMBwh+LTn/Sn6a7PJkRWDR1pLX9NMa0Hm2wnYjKuR3rZuz0f13eGWO+6zMHuKNQtPXMGJP+2TAX/\n5ptexJju7/vYOlAIGJpZqvxwwqTPj128UuY6XLyySybQCSUJfiyKE6KqyCajhD1opwUEgNiuWByb\nplwIzFaCrFZ0BOMIiqYK6oIA0G5YJRJgmytnpOAcJSEK/kRxgjjJzzdOEmES3B/4hL1P/z4RyXb9\n4ZgFAf3huFSXbzZMxLTttmFyqXCisUFX4WFhglxoWQiTBNSZOkwSVrIwMqVCNwtUDF0MZNsNE/Mt\nC7sZ92a+ZbGsCbkeYCv9FCKHgXAFFFayqFXEUkmREMpD11RwTUbQOBOwdsPEXN1EN8s4zdVFS3bi\nccLrbohiZIauol41kGZps3pVFFDSNIUFG5omtmRSpUdqQ92ZK5cWaWahqJoocfwhA4Y7EE+nmMi0\nWmHN0nFyqcFY/J22SJhabFuoVnKhljBKcHV7gMev9/HEjR4+cfWACehMg6IAL7nQwWc/5wTuOdnG\n9e1D/MJbHuEm5hQ7Bx4LGKZxDZ7Kan0WiESvwgh3qqqwh/6sSb83IZChY7MY9pP6xfkxkupOgThG\nHIvHsdZplEiAVHyp7waI45yIF8eiRHejaiJOcnOpOEmFa++OAuagCBArccrL8HzSQUMnmTgRswTt\nhonzqy08FpCulPOrLWHiTuKEdeDEqThxD4ZEWpwiSVKhldTzc78HPpsEkN/p2mId+wNy7dc4J8Qw\nSrJAjLo+6qUSjWXq6GftvpaZ83LcUUB+G0lenuF5K626CUNT4WdkEkPLrdE9P8JOz2fXcqfnsxbk\n/CQ5k69Ci3Bnroq5hoX9Afm8uSWLfYfthom71+YEAaX2BMEtoHzfTFpQTPotTsp8PtvaE48rZMAg\nIeCp3LiGruH+swvY7ZFV1NJcje2bpCk+cXkfF68dYL07xM7+CDu90VS9A01VsNapY75p4pFL++wB\nqKvAl3/OGVYrfuzKHvgSbZSIpMFpZYflhTKBkB9r18sPSzo2KztBV2uUn8ev1jZ2D0v7krFVAMC4\nYCbEj60sNEoKgrw7YzzhfOlYGCXwRiGCmMgreyOxh3/nwCt1FPDB16EXsGt9WGgN7bk+FO6jlUTU\naegelH016BhNs9OOg0lp9vXuEMMROen17lDwIfCDmHXBBKF4TnRypj0r/OS8c+AhihNGqI3iRDhf\nzw+xvucyzQL6umYZ6MxZSBWwDo20CoH02O2RtloqO+4HEWv3nGtYwm8/TsRuFUJc1Fm5o1LJg5Gt\nPQ+DYcA6RgbDAFt7Hisb6JoKw9AQU7KloQm8HM8PcWq5jkYl65xpV9k51SwDa506+pl2wlpHtIom\nfhAK5ptZwM35QQCzyYfTMp+SuHj7QwYMdyCearRezATwmFXqWGxbaNZ07A/GuHj9AJcfGmBj38Pl\n9T5rxzsKmkpWy6qqoGHp+PbXvgDnT7bxT5/cxccv73NKjWJAMEuyeJq3wuZu2d9gc3eAF14gev/T\nMhDzE8oGxTFV4RT3uB7FWXLF0xQXAbLipEGPUTjG6oSMCh07OPQRI7vWioI4G6MiWO4oKLlC0mvd\n7XssSAFIwEItptnfc59ZzMNUJ0j90rF2w8TKfJ1lFVbm68LK9vq2i/XdIWPdr+8OmR8IOS4+vS8e\n11qnAaScWGaaZ010TYWuqyyg0nW1ZNT05PoAw6xkMQ4TVu/3/AimrsPUyfUxdV3gN4zGEQbDkBlI\nYRiykosfRMQgiutGKZYN4jiBn5Eia1buKFmtEC7JmBpE1XShtETdWj3E7L1ahcDXHYXoZyJqupmX\n/Dw/xMHhmHlnHByOWTCRH1eKg6w01GmLJnLkbyY/ayZ1URQznzJQuL0hA4Y7FE8lWheDgrjUNkVB\nb3g/iPH4jR4ubwxwdesQ13ZcHHqzeQdnV5o4t9bCPSfbaFYN/MrbHsUg82fQjby+Pk14ByCpcENX\nWIrW0JWb9laYVZKYtlqfVVYAgCCMWSDDt5hNmzxnwQ+iUoqdn2ymaThQEawgAaCkJRGsaedUtFAu\njk0SW+LHpilQhlGCIIwRZKTZoKCo6GYtenlJIxaCxpTLiqSFpBXRUsiDNVXNdQvOrbVI22z2Vpah\nMvlmuu/Qzyd6KHmXBOlGCOGNsyzAWMxs+EEk/PYCztgsipOSJgX/mw6jBD03YL+dnpsrLq52alAV\nhSOyKljtiIGqH+S/O3+CCdS1rUNc3SZZrjMnmjBeRNqIPT/Cbs9jgVvaS5lQFYOSghU8lKMzhJPQ\ndwPBhv5kp2ykJnH7QgYMdzA+nWh9Fv8hjGJCRtx1sbHnodvzsTcop+Z5VCs6Ti3V4WUP3oqh4t7T\nC/jmr7iP/c1md4gkBuLsaZ/cHE2AvX+1oiHOnsDViiasuO45NY+//NCGsM89p4gaozlhguTHpm2f\nppUAkJR9wpn3JKlSSuMfhU67BstUMQ6otoDKSI+6prLrBJBrxk/M0yZ2mjKPU7CUDJ9Gb1TNUpcE\nDShOLbVKhMhTSy3wKJZKiuDK9kKrY98N8Ni1fbjZqncc7AteEnMNq8R/oEFQp10TyvQpRNLowaHP\npI7Jvrm0eN8N0KxV2PZmrSJ8rqET9UlKbNRU0fis745ZpwPlKlBQrgkFzzWJ4qQk/c0HDM7VbinT\n41zt4q6VJja7HoIoZt95EMXY7HosS3Rte8AyEwDpKrq2PWBllm7Px41dl/0Wb+y66PYI+ZQ4w0bY\nZx07k23oO9kigrehz//m6O6sgTfGAW15/hSDDYlnHjJgkDgScZxga9/DxasHuL7j4tq2i829YZFD\nJUBVFbTrBhaaFu451cbnP38VL7hvBR/5+CZ+8y8eg6apiBLg8uYA17YO2UPO8yN441wJ0Mt61imK\nkxgPQ1fRrlcQUVXJumidPW0CHU2Y9PmxU0stmJqCIJsVKobKJklvwr78GLFkhqCaOGkVPgmnTzTQ\nqhnYC8jDtVUzcPpEgx17sTTAn+M0zsaNHbekb3Bjx2Vp9GlB0Cz/A8vUS8fFZyyKE3uS5hP7zoEH\ndxQiyq6zOwoFLsFRcth3n2pja4KN9Na+y0oSUZyUjot3uuy7Y4wysmNfFbszDF1FmibMNTRN89LA\n9Z0BOKVrxDEZo7/paZ4f+xPOhx8ramPwY4deAHcUcdcqEgLRWe2+g2GAvb6PILsGcd8XSKBBHMPP\nPiuo3bxFNVAuWfJKjzTYmMvs5ycFGxK3N2TAIAEASJIE2wcenlgf4OKVA1zbcbHTG03UkeexNFfF\nXScaOLfSwqmlOh6/ccDqm6ahYr5ZgZr1zA+8gK0+SDo3fyi6I8Jkp5+WJDmDvj/hAciP1SwdQRix\nVrAgjATC3LSJvTkhfc+PtRsmDENFQK2CDfUI1ngZtG6cTBibhb4boGLoAMbZ5+ps5TvLuGoa3FGA\nOM1XvnGaCEHC+k6Z07G+M8BL7juBy+v7pW2X1/eZ2dYT1/dK25+4vse235jAF7mxOxA4EKz0VJhD\npolVRXFSCiiLmgZF0LEwStD3ct5G3xPNljw/gqqoMDLzKVVRWSA7K0twVJBjY35mS26jNqGzJxuz\nTB1pmis96loiBGbTlD7pcUNBLhHOqWR6foShFyPNMmNDL4aoqkrao3ezlk6e2DxL6XFWsCFx+0MG\nDM9CpGmKA9fHpRsDXN4a4OqWi+s7LutFPwqtmoG5ZgVzdROduSruOdnGS+wl9sDo9kZ454euMwGi\n/jCA93zycG3VTWgqMMwCBsvUhMmzUTWZ/DIA+GFy062P3Z6PKFXYQz1KFcEE6PzJBQCXhf3J2Oy6\n+/a+x5QaAWK7TMWI+sPyJMaPDYZBaUKhK7lp3AiAPLhv7A7ZRHhjd8gmqpFf/p74sWkB0upiA0mc\nr8aTmIxRTCNjun554uXHpnFFZmF5nmQa0gljwHQ78GmcDWD69bixOyil/vkgJteeQHZ8ufZEMCEQ\n4cemdbrMyk5N+30Yugpd00BbUnRN+5Qm3oWWhXbdZKWBdt1k+hBU2VKhIpCcsiWPSUEYQMoyVDeF\ncqgoZmmxSNz+kAHDHQy6mh8HMZ7cHODK5iGubB3i+s4h9gbTpZMtk9zcZ1ZI9uDC6TbqloG/f2ST\npSsH2WosX2Ek6PY8ZlEcxrmtLhHI0djKlghB5Q+5aavPlYVMG4BjlK8U2iHHQcw0HFRVTKNOS7PP\nChi6fQ98c0cQp8wZctYE6gcRAk6yOhjH7EF7ebPcVsmPXbyyW1o1U8GoWZik30/HDg790vvyXRLT\nOBtVs/xw58fWJhgN8WPTyj+DYQCVM5pQFVVIk1umDkMF+y4MNS933Ngud8Hc2O7fVKfLLMVNQ1eh\nqioj+akch2HadQamBxQz952xPYxz5VPeAfRm0JmzUDG0vGXT0BiPpd0woSo5UbJRFb01wijGBy9u\nYWuPCDdt7nv4kpecZs+AwTDE9gHNrEwK8mTr5HHGbR0w2LatAvhFAC8Ayc1+m+M4l57Zo7q9MQ4i\nXN0+xKNP7uPK1iG29j3sD/ypvANNVbC6WMOZlSbOrjRx98kWTizUoKuqcFPTXnQaBFgF91rPj+B6\nIcKsjYyqNtJto3HIVmqjcShwFNxhOYChY7qmompqGGZ15qop9pUbugqkaZ7OTkUFwmkTyizi4qX1\n8r6X1vt41YtOz2yNdEflDAMLVCbsy49t7o9K2+nYvls+Zn6sM19mntOxnuuXeAS8SFSRuMePTXtf\nYLqHBQDc6JZT9HTMD6KS9XVxFcsHbvzrpyKuNSvoC6OEKEdm78erSDbqZftmfmxWZmwa+hO6jOjY\nwaEPf8xl48aJEPTN4jBsdj1s7A3ZvbixN2SkSXpuvMpkUVb6+rbLSJVhFDPxrjBK0B2M0Mt+i5qm\nTAx8ZKBwfHFbBwwAXgPAdBzn5bZtvwzAz2RjEiC1+q19D09uDHBly8W17UNsdIdT08AKyArj9FID\nd600cM/aHM6fbAk10L2+j/UdIqjDu9GRHmwwmdyaZQoTszsKECVprsvP8RAOvQB+mKvx+QUL4lMn\nyitnOmboKnOxBEg2ocjcRu5pJLS+AdMnhVmlgWs7EzQcsrFZKfjeoDzp0zFrwmqdH5sWUIwmnA8/\nNm3inpVGn5R5omPThJeA6ZMcAAwmGILRMV1TUYyu+KBwGn9if8Ix82NXtsrZHDo26zv0/Ah91wdt\nOui7Pgt0L2+Ws2KXNwd41YvI691+eeKmY9MCQgDoTthOx3b23VKWaGffBUAyKpOM1/gx52oX4zB/\nh3GYsg4ML/OGoBmVMEqEwB4A/DDOxxRRXKs3GLOyS28wOVMicXxxuwcMrwDwDgBwHOch27Y/+xk+\nnmcMYRRjf+DjSVpW2D7Ejd3hTN6BqRPi4YsudHD3yTbuPtlGFCVws2xBs2oKwQJxo3MZMWnoR6yt\nMowSXN7oYyfTkU9SIIxW2YpB19RS6xv/0B9zrV7861m4vjMoKTnybHQAOPSiia/pNZh0XQCiGFgE\nP+b75YcvHdvZK+/Lj01bgfYmTHKTxibBncCd4Mcev9Yrbadjs1a93oRJn4598lo5eOLHNL5PcsLY\ngVfOMPBjxWwMj2nZiWBCNoEfG0y4rnTMnZCt4ce6fQ+h4NiZd2fM2vfxG+Ugh45NC56A6Z0u63vl\na8GPFU2wimPTAgpDV+EHuXGVXwjOa5YOXVVYyaJVNwSCcdXSmedU0adE4vjjdv9GWwD4MD62bVt1\nHOfmZ5tjiChOsNf38JFP7uLyJg0O3JvkHdRxYr6G3qGPWlVHraKjYuj48s+5C+1GBWEUCxNiWWch\nYcECQOxrKU+h2/Ph+iFbCbt+yKRuAfIgLba3Uab4lY2D0vFe2TjAc88vAgA+8MhGafsHHtnACy8s\n4QMfm7DtYxt4xQuI2MxDnyhvf+gTG6ze/yGnvP1DzgZe+8C9+PuCKRUA/P1Ht/AvX30/uT7lxSkb\nu7ReXsnzY9PKGdd3y5MJPzYtGNlzy5/Lj23tlw+ajrkTdCD4MXc8YXs2NhhPmOS4sSfWy98xPxaG\n5YmMjrmjACqn8aAqYmlo2gRbq5UFr/ixYEKNn465/oTz5caimJAAaQSjqPnEbU0w+eLHzAlCFHTM\nj8rXgh9rNcvBJh2bVQpLJtQf+bFp+4dRgkbVgJIFevVK2WZ8oWUxddFm3WTba5aOk50GulkWpdO2\n0KiZ6B9BkJQ4frjdA4YBAJ5JdccFC1GcwBtFWN9zcXnzEFe3SHCwfTCaeONT6BrhHZxabuJcpph4\neqkO0yBmN+/+6DpzrNPUm6ubArT1SRc87ekKo2YRgSTqvletaMLqolE1YRoqa6vSdZV1Osy1qtC4\nsoGmkDGK1oRWRTrWWagBN8RJsLOQE6pmuzNWAIgpXjIGzLeAYifhPKdFdGatgYuFwODMGiFcLi/q\nWN8TH4bLi/nn1iccFx1bnZ/Ddl/MBKzOz+Wvl8qfu7pEPvfC6SVsHmwL2y6cXmKv1xZb2PfEk1pb\nJCfVblrg5j+oEF0yz6628cSmuII9u0oCL/v0Aq5si8GXfXqBvV6Zb+DKtpiGX5nPyan33rWMnUd3\nhO333rUMgHQ11CydlZ4qpiZ0Opw72cKj18VzOneSnNPdJ9v4+8L73n0yL3FdOD1XupYXTpNrff/Z\nBTy+IQZn95/Nz+n0cguNqtgKeHq5xd7j/Z8Q3Uzp+wLAS+87gSc2xe6cl953AgDwvHOLpev8vHOL\n7PXz7+6U3vv5d3cAAC+7fw3venhT+A5fdv/aTe0LAPfetQj1oRuCgNa9d5HPbjdMLC9UWQfFfLMi\nkB4NXcVCy8pafoF6NX8+5F4yecvlJPMpieMLJS3qqN5GsG376wF8jeM4b7Bt+3MB/IjjOF81ZZfb\n92SQBQd+gM09D5+81sOlG31c2ezj+raL8ZRanwJgtVPHmdUW7j7ZxoW75nDPWhuNekWQvOXx/kfW\ncW2TPCTvWm3g5c8/ybbtHHhMgrnVMIX2Nbp9r0ce/ItzlrD97R94Es4VMtHZZ+fwFZ93Xtj3B/7r\nu3FtK/vclQZ+8v94Fdv2nf/pb7Cxm7ngLTXw/33fFwv7/rMffBBBltwwDeCPf+Lr2LbXfv+DTHxH\n14C3/NTXCfv+ix/5c1aKaNZ0/P6Pij+Tr/neB4V/v+1nvu6mtj3Vfb/hh/4U4yATfTIV/NGPf+1N\n7/v1P/AgS4cbOvAnP3nz12Pae//rn/wrbGUp7JXFGn7pB75U+Ntp38O08wGAr/3eB4UM058Wzuk1\n/+ZBxmPRVOCtP51v/0+/949wrpAsi312Ad/3upcK+37T//VnjPhatzT8j//3q4Vz2tgh57S2XD6n\nafvO+u381p89goedLgDgxXYHb/jq5wufeyP73FMTPvdbfvQd2O2RyXdproLf/JFX3/Tnfs9//ls8\nkQVJ95xu4Wff9IVs2y/80Ufwj49uAgBe+rxVfMc3vKi076Vs37sL+wLAj/3WB/DxJ8k5Pfd8B//2\nDZ/Htr3/kXVcvEIyQ/ednReeHQAxe7uxTe7jUycaeM7ZRWE75S3IYOG2x+TJY9oOt3nAoCDvkgCA\nNziO8/iUXdLdCS6AzwSiOME4iNFzx7i8OcDV7UNc3yEGOpNqjDzaDRPn1tpYna/i3CrpXGg3Kp8y\nu5iy26keAY9p8q2ztnd7ZLVOLXGL+PBFsvp9SbaaWlpqgn4v7/vYOgCwckIRv//OxwAA/+LLnlPa\n9ua/+DgA4PVf+dyJ+/7pez4JAPjaV16YuP3H3vwBAMC/ff3nlbb94C++CwDwE9/+RRP3/anf+SAA\n4Ke/54tR/I39yK+9BwDwo2985cR9/+CvLwIA/vmX3Ffa9vP/42EAwHd904sn7vs77/gEALASCY9Z\n1+Nnf+9DAIDveV2Z+vPuj1xHq2XhRXcvlbYB07+HaecDAL/61o8BAP7Va14wcftv/tmjAIBv+ern\nlbY5V8lERcWeinjL35Hb/7UP3CuMLy018UfvJNfqVS86/SntC8z+7VzLSJI8b4bi3R+5PvVz/+oh\nkmX40pedu6nP5e+Xhz5OgoKXPXe1tO+lG6TkdVSr7bR9AeDjTxKYv8x6AAAMhUlEQVShLVoW5DHt\n2QHkHVNFc7oi+HM57riTzgUAlpaad1bA8GngGQkYaHAw9ENczUxdru+4WO8OJzK4eVQrGk526ji9\n3MTZ1SbOrbSwNGfh5Nocut1yrfo44k660eS53J6Q53J7Qp7L7YtPJ2C43TkMtx3iJIE/juEHMdb3\nXFzdPMT1XZI52N73puodEN5BHaeW6jiz0sS51RZWF2uoVvQSz0BRPuXvUkJCQkJC4mmDDBimIE4S\n+EGMIIyx0xsJwcHN6B0sz1dJ9uBEE+dWmzi93EDNMlCRtT0JCQkJiWMGGTBkSJIUoyBCFBPxkcvb\nh7i+7WKjO8x0CabzDuYaJk4uNXB6qcEUExs1A1VTP5KYKCEhISEhcVzwrAwYkjQlUrSZitnV7UNc\n2zrExp6HGzvuRGETHtWKjlNLdZxcquOuE6StkbQaaZIZLCEhISFxR+KODxj44GAcJljfcXFt5xDr\n3eFN8Q4MTcVap46TSzWcXmrizGoTJ+arMA0N1YoOVXINJCQkJCSeBbijAoYkSTEahwijFEEUY2d/\nxIKDGxnvYJJVK4WiACfmaziZZQ/OnGji1FIdlqnDMjVpmiIhISEh8azFHRUwvOMfruDi5T2s7xLe\nQdE0pYj5ZoWUFjp1nF5u4K6VJuqWAdNQYZkyeyAhISEhIUFxRwUMv/THHztyW62i49Ryg2QPFus4\ns9rEQrMCQ1NRkdkDCQkJCQmJqbijAgYKQ1OxtkT0DtY6ddy13MByxjuo6BpMU5PZAwkJCQkJiU8B\nd1TA8LovtzFXNbCW8Q4MTYVV0QSLZQkJCQkJCYlPHXdUwPCaV92DQd+TKokSEhISEhKfYdxRS2+r\nostgQUJCQkJC4mnAHRUwSEhISEhISDw9kAGDhISEhISExEzIgEFCQkJCQkJiJmTAICEhISEhITET\nMmCQkJCQkJCQmAkZMEhISEhISEjMhAwYJCQkJCQkJGZCBgwSEhISEhISMyEDBgkJCQkJCYmZkAGD\nhISEhISExEzIgEFCQkJCQkJiJmTAICEhISEhITETMmCQkJCQkJCQmAkZMEhISEhISEjMhAwYJCQk\nJCQkJGZCBgwSEhISEhISMyEDBgkJCQkJCYmZkAGDhISEhISExEzIgEFCQkJCQkJiJmTAICEhISEh\nITETMmCQkJCQkJCQmAkZMEhISEhISEjMhH4rP8y27TaA3wXQBGAC+B7Hcf7Btu3PBfCfAUQA3uk4\nzn/I/v7/BvCV2fibHMf5x1t5vBISEhISEhIEtzrD8H8C+CvHcR4A8HoAv5CN/zKA/8VxnM8H8DLb\ntj/Ltu0XA3il4zgvA/BN3N9KSEhISEhI3GLc6oDh5wD8avbaADCybbsJwHQc53I2/pcAvgTAKwC8\nEwAcx7kOQLdte/EWH6+EhISEhIQEnsaShG3b3wrgTYXh1zuO82HbtlcA/A6A7wbQBjDg/uYQwHkA\nPoC9wni7MCYhISEhISFxC/C0BQyO4/wGgN8ojtu2/XwA/x3A9zqO817btlsgnAaKFoAegKAw3szG\nJSQkJCQkJG4xlDRNb9mH2bZ9P4A/AfCNjuM8wo1/BMA/A3AZwJ8B+PcAYgA/BeBLAZwG8KeO43zW\nLTtYCQkJCQkJCYZb2iUB4D+CdEf8vG3bANBzHOe1AP53AL8HQAPwl7Qbwrbt9wL4AAjX4ttv8bFK\nSEhISEhIZLilGQYJCQkJCQmJ4wkp3CQhISEhISExEzJgkJCQkJCQkJgJGTBISEhISEhIzIQMGCQk\nJCQkJCRm4lZ3SXzGYNu2AeA3AZwBUAHwYwAeA/BmAAmARwF8h+M4tz2r07ZtDcCvAbgXQArSNTLG\nMTwXCtu2lwF8GMAXg5zDm3EMz8W27YcB9LN/Pgngx3F8z+WHAHwNiMrqfwXwPhzDc7Ft+5tBpOUB\noArghQA+H8B/wfE7FxXAr4Pc+wmAN4K0lL8Zx+9cTJBzuQdACOC7AAxxzM7Ftu2XAfgJx3G+0Lbt\nezDh+G3bfiOAfwXic/RjjuP8+TN2wFPAn0v279cC+AbHcV6X/Xuij9NROM4ZhtcB2HUc55UAXg3i\nNfEzAH44G1MAfN0zeHyfCr4aQJJ5afxbkPbT43ouNJj7FZCHhQLgZ3EMz8W2bQsAHMf5wuy/b8Xx\nPZcHAHye4zgvB/AAiJrqsfyNOY7z2/Q7AfAhAN8J4N/hGJ4LgC8DUM/u/f+A433vvxGAl/3G3gjg\nt3DMzsW27e8HWbxVsqHS/Z4pFX8ngJcD+HIAP54FS7cViudi2/Z/Afl9Kdyf/RIKPk7T3vM4Bwx/\nCPKQAMh5hABe7DjOe7Kxt4N4Utz2cBznQQD/W/bPswAOALzkOJ5Lhp8G+SFuZv8+lt8LyMq1Ztv2\nX9q2/TdZNH5cz+XLADxi2/ZbAbwNwJ/ieP/GYNv2ZwO433GcX8fxPZcRgLZt2wqI9H2A43su9wN4\nBwA4jvM4gJMAvuiYncsTAL4e+aQ66X5/KYD3OY4TOo4zyPZ5wS0/0tkonsv7APxr+u9MZbkywcfp\nSBzbgMFxnKHjOG5mXvWHICtz/nxckBvwWMBxnNi27TeDpFV/D2IUeGzOxbbt14Nkft6ZDSk4pucC\nkiH5acdxvhy5uBiP43QuSwBeAuAbQM7l93F8vxeKHwbw/2Svj+u5vA+ABeAiSFbu53F8z+WjINlS\nmupeAlDjtt/25+I4zp+ApOcp+O+C+hm1kJcp+fHbCsVzcRznfxb+pIWyj9PU8zi2AQMA2LZ9GsC7\nAPw3x3H+O0idieLYeU84jvN6ADZIHdDiNh2nc3kDgC+1bftvAXwWgN8GeXBQHKdzeRxZkOA4zidB\njM9OcNuP07l0QWqUUbb68yE+HI7TucC27TkA9zqO8+5s6Lje+98Pslq1Qe6X/wbCMaE4TufymwAG\nmULvawA4APa57cfpXCj43xX1ORqg7HN0cCsP6jOE4nnQ8zsSxzZgsG37BIj99fc7jvPmbPgjtm2/\nKnv9FQDeM2nf2w22bf/LjJAGkBRlDOBDx/FcHMd5leM4D2T15Y8C+F8BvOM4ngtI8PMzAGDb9hrI\nzfXOY3oufw/C9aHnUgPwN8f0XADglQD+hvv3sbz3AdSRr/IOQIjox/VcPgfAuxzH+QIAfwRgC8D7\nj+m5UEz6Lj4I4Ats267Ytt0G8BwQQuSxQlZOCWzbPp+VxL4MM76fY9slAZKObAP4d7ZtUy7Dd4P4\nVJgAPgHyoz0O+CMAb7Zt+90gq4vvBklR/toxPJciUgDfi+N5Lr8B4Lds26Y30RtAsgzH7lwcx/lz\n27Zfadv2B5F7s1zBMTyXDPcCuMT9+7j+xn4a5Df2XpB7/4dAuouO47k4AP7Atu0fBslgfRvIb+04\nngvt5Cj9rrIuiZ8H8F6Q8/thx3GCZ+g4bwZp4TX/74k+TkdBeklISEhISEhIzMSxLUlISEhISEhI\n3DrIgEFCQkJCQkJiJmTAICEhISEhITETMmCQkJCQkJCQmAkZMEhISEhISEjMhAwYJCQkJCQkJGbi\nOOswSEhIPE3IBGne7DjOa2/x574exPDnKje85TjOV9zK45CQkChDBgwSEhKTMA8iVXyrkQJ4q+M4\n3/IMfLaEhMQUyIBBQkJiEn4ewJpt238C4K0g6qMqiArhdziOM7ZtewvE9fILQJxJfxHAdwE4BeD1\njuO8x7btvwPwCIgVsAXgTY7j/NWMz1ZmbJeQkHgGIDkMEhISk/CdADZAXGC/DcDnOY7zIgC7AL4v\n+5tlAG9zHOc52b9f4zjOKwH8ewBvysZSALrjOC8B8DoAv23b9rSFigLga23b/gj336um/L2EhMQt\ngswwSEhITAJd5X8hgAsAHrJtGwBMkCwDxduz/18F0dYHgGsgJQ2KXwYAx3E+atv2JoAXFt6DRwrg\nQVmSkJC4/SADBgkJiWnQAPxPx3G+GwBs226Ae244jhNxfxsf8R78uAognPGZsiQhIXEbQpYkJCQk\nJiECCQz+DsBrbdteyixwfwmEp3CzUEBKEbBt+7MBzIFwGqb9vYSExG0ImWGQkJCYhC2Q0sLPgXAS\n3gWywHgYwE9kf1O0ui3a6NL/32Pb9oez1//ccZxpFrlF+10JCYnbBNLeWkJC4mmDbdt/C+AHHMf5\n4DN9LBISEk8NMsMgISFxS2Hb9psAfPOETeuO43z1rT4eCQmJm4PMMEhISEhISEjMhCQ9SkhISEhI\nSMyEDBgkJCQkJCQkZkIGDBISEhISEhIzIQMGCQkJCQkJiZmQAYOEhISEhITETMiAQUJCQkJCQmIm\n/n8cMZ03Iy84BAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Seaborn scatter plot with regression line\n", + "sns.lmplot(x='temp_F', y='total', data=bikes, aspect=1.5, scatter_kws={'alpha':0.2})" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-156.985617821\n", + "[ 5.09474471]\n" + ] + } + ], + "source": [ + "# create X and y\n", + "feature_cols = ['temp_F']\n", + "X = bikes[feature_cols]\n", + "y = bikes.total\n", + "\n", + "# instantiate and fit\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)\n", + "\n", + "# print the coefficients\n", + "print linreg.intercept_\n", + "print linreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "77.0" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert 25 degrees Celsius to Fahrenheit\n", + "25 * 1.8 + 32" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 235.309725])" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# predict rentals for 77 degrees Fahrenheit\n", + "linreg.predict(77)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Conclusion:** The scale of the features is **irrelevant** for linear regression models. When changing the scale, we simply change our **interpretation** of the coefficients." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# remove the temp_F column\n", + "bikes.drop('temp_F', axis=1, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualizing the data (part 2)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# explore more features\n", + "feature_cols = ['temp', 'season', 'weather', 'humidity']" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n/wPgsszcAwdOdwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# multiple scatter plots in Seaborn\n", + "sns.pairplot(bikes, x_vars=feature_cols, y_vars='total', kind='reg')" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nTrcICi7LuO+h9TRfuUJN/h6b7K3pi+bfxiMgCLb++c57FJVdJnHhd0hc+B2Kymr45zvvObtZgxbo\nP86uMxDoP87ZzRqS8b6+du9hvIvVIh6pZHL7tWuOto1U6Yvm2/xm1OTvdbnfjIxlS/Fozaau5CR1\nJSfxaM25bSVbBOFWuFkWZJ1OR1tbG+U5uwgIn4ZMJiMscZFdX9I/LInqwk+QyWRMjJmD9out1Jfl\nMDF2HiqVm80+W1tbWfvEc5yr0uOpWUPnuLvpbm+koTyHhvIcTEYjBz47g06no6e7+6bvob2mgIDw\naUxOvo+yrG3SNcWjPQ+9vs8moBeljoaHCHyFW+7alPG1Z/cxPiReSh/f4j2XyaFBjOs4zriO42gm\nT5ACV4/2PJKnxEuvZb1AWV+rLHcfH2QesmTn2/wrxo/1Ra5QShehzrZ6sk7l0muUEZ32INEz16By\n88R3ooagqFmMCYjii9pAunR66kqzaCjPxSBTsy/zoBOPmHCne2/HXmJnPyTdGY6d/RDv7djr7GYN\nWs3lWrrbG6TzsLu9kZrLtc5u1pC89tKv6Gqtld5DV2sdr730K2c3a1TQ6dopPvmedB0vPvk+Ol27\ns5s1aDv3fUiXTk9DeS4N5bl06frYue9DZzdr6ORyAiNSCYxIBbno/gmu5Xpl83Q6HW9t3cZj//dX\n7DlRQ/Ssh68b7JqMemQyGZMneFJx8p+UZO0kOu1BJkSm0FP5KXp9n02QufmVLah8wwhNWIhcoUTl\n7onXuGDam6roaK4hOO5reEcv5Z1tO3l71xHKcq7eINN1NlM94IZZdeFR3HxDqS/LprmmkNCkdPx7\nTrEoqgNMJg6XjpUC+tbWVlHqaJiIK59wy11bp/e9P21mgj6PutIsVGpvmmsK6fFJZlZaCi/9+nnc\nVG5ShwKTieXpS6Q7042XcjH09VJbcgrtF1sJT0rHO+Fh6SIgVygIiZ+P0WigsSKfmLTVeAcnED1z\n9YAgYi2VZz9GrlASmrCA5ppCYmetpqu1Dpnc8vz8giJnHzbhDmY220+vcrRtpOoz6DGZTLQ3VdHe\nVIXJZKLPcOO1UiPNidNnCElYxOXiL7hc/AUhCYs4cdp+DZgwdAqZG319Os5kvs6ZzNfp69OhkLnd\n/IkjRObBo0xOTqejuZqO5momJ6eTefCos5s1JNdOw7Qm8hEEV6bX63l60xbePVSCZ8TiGwa7McE+\n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\nRo7ipUmv0LmigqGn/YCLrvoNNbW1nPbDY5j95be8894MUqkUe++1G3W1CaZN/5DieJzKVSuhqIRi\nYMeuFSxespQVlTWUFReTIEF1bZJ4MsmDf76ZHj16csaw4cxbuBySSbrtWEEyVcwxgw5i9LjxfPPt\nl5S1ak+yribMG1BURHmrMrbbrhVfff0tsVicsrIWFMfjVNXW0bZNa4494lD++rexJOLFkEpS0aGc\nxcuqaVlWxtDTT2H3Xjtx2bU3ArDHrjuzcNFyKquq2aFTR447djDJRB1PjxlHbU0VlZVVrKquJZZK\nMmCfvajo0nV1P/u2227m/iefI1VXR12ympLS1tz6u6tXD3rT5s6dwzkX/4yiODxw1y15GfRCgQ58\nN0OTD3ybMv7WUIdtPf7WUIdt+YBdIB2uZt2G5l5+PmIoR1V+U8ZQ+RsVY5vN0Uz57s8UcrxCblsT\nxdusHN1qJ4oSERERERERyQYNfEVERERERKSgaeArIiIiIiIiBU0DXxERERERESloGviKiIiIiIhI\nQdPAV0RERERERAqaBr4iIiIiIiJS0DTwFRERERERkYKmga+IiIiIiIgUNA18RUREREREpKBp4Csi\nIiIiIiIFTQNfERERERERKWga+IqIiIiIiEhB08BXRERERERECpoGviIiIiIiIlLQNPAVERERERGR\nglacz2Bm1hZ4DCgHSoEr3f1fZnYgcDtQB0xw9+uj9X8DDImWX+7uU/JZXxEREREREWn+8n3F9wrg\nRXcfBAwD/hwtvxc4w90PBQaa2T5mth9wmLsPBE7PWFdERERERERko+V74Psn4L7odQlQaWblQKm7\nz4qWjwcGA4cAEwDc/Qug2Mw65Lm+IiIiIiIi0szl7FZnMxsOXF5v8TB3n2ZmXYARwGVAW2BZxjrL\ngZ5AFfBdveVt6y0TERERERERaVAslUrlNaCZ9QWeBH7q7uPNrA3whrvvGf3+MsKAvAYoc/dbouVv\nA4PdfVFeKywiIiIiIiLNWl4HvmbWBxgFnOru0zOWvwOcAswCngN+CySAm4GjgJ2AZ919n7xVVkRE\nRERERApCXmd1Bn5PmM35TjMDWOLuJwH/ATwOFAHj07M3m9mrwBuEZ5EvynNdRUREREREpADk/VZn\nERERERERkXzK96zOIiIiIiIiInmlga+IiIiIiIgUNA18RUREREREpKDle3KrnDGzk4AfufuZ0c8H\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# multiple scatter plots in Pandas\n", + "fig, axs = plt.subplots(1, len(feature_cols), sharey=True)\n", + "for index, feature in enumerate(feature_cols):\n", + " bikes.plot(kind='scatter', x=feature, y='total', ax=axs[index], figsize=(16, 3))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Are you seeing anything that you did not expect?" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
col_0123456789101112
season
1884901901000000000
2000909912912000000
3000000912912909000
4000000000911911912
\n", + "
" + ], + "text/plain": [ + "col_0 1 2 3 4 5 6 7 8 9 10 11 12\n", + "season \n", + "1 884 901 901 0 0 0 0 0 0 0 0 0\n", + "2 0 0 0 909 912 912 0 0 0 0 0 0\n", + "3 0 0 0 0 0 0 912 912 909 0 0 0\n", + "4 0 0 0 0 0 0 0 0 0 911 911 912" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# cross-tabulation of season and month\n", + "pd.crosstab(bikes.season, bikes.index.month)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of rentals, grouped by season\n", + "bikes.boxplot(column='total', by='season')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notably:\n", + "\n", + "- A line can't capture a non-linear relationship.\n", + "- There are more rentals in winter than in spring (?)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfIAAAFzCAYAAADFfYutAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XeAnFW98PHv9t0ku6mbRggJ7RACoUgRpIqC6FVEr169\n77Vf7F7wiuhFr+2KDUEEFKkiSJGO9BqSkE56PSG9be+9zvvHM5PM7s7szjxznnnOM/P7/JPs7LNn\nzjzzPOd3znlOyQmFQgghhBAimHL9zoAQQggh3JNALoQQQgSYBHIhhBAiwCSQCyGEEAEmgVwIIYQI\nMAnkQgghRIDlm0xMKXU28But9cVKqWOB+4F+YCPwLa11SCl1FfBVoBf4pdb6BaVUCfB3oBxoAb6g\nta41mTchhBAiExlrkSulrgPuBorCL90MXK+1vgDIAa5QSk0FvgOcC1wG/FopVQh8A1gXPvYB4Mem\n8iWEEEJkMpNd69uBT+AEbYDTtdYLw/9/CfgAcCawWGvdo7VuDv/NPOB9wMvhY18OHyuEEEKIERgL\n5Frrp3C6yyNyov7fAowFyoCmOK83D3pNCCGEECMw+ox8kP6o/5cBjTjBujTq9dIYr0deiysUCoVy\ncnKGO0QIIYTINDEDn5eBfI1S6kKt9QLgcuANYAVwg1KqCCgG5uAMhFsMfBhYGT52YewkHTk5OdTU\ntHiYdX+Vl5dm9OcD+YyZItM/Y6Z/PpDPGCTl5aUxX/di+llkF5bvAT9XSi3BqTA8obWuAm4FFuEE\n9uu11l3AHcBcpdQi4D+Bn3uQLyGEECLj5AR097NQJtSu4smU2uNw5DNmhkz/jJn++UA+Y5CUl5fG\n7FqXBWGEEEKIAJNALoQQQgSYBHIhhBCB0dffz4OvaHYcbBr54CwhgVwIIURgrN9Rx/w1B7jhgVV+\nZ8UaEsiFEEIExuptNX5nwToSyIUQQgTCxp11LN5Q6Xc2rCOBXAghRCD8Y/52v7NgJQnkQgghRIBJ\nIBdCCCECTAK5EEIIEWASyIUQQogAk0AuhBAi6zzw8lZuenSN39kwwsttTIUQQggrvbX24ICfN+6s\nY9rE0UwcW+xTjtyTFrkQQois1tDSxc2PreP7dyzxOyuuSCAXQgiR1do7e/zOQkokkAshhAiGkN8Z\nsJMEciGEECLAJJALIYQQASaBXAghhAgwCeRCCCFEgEkgF0IIkdFCoRCvrtxHRV2b31nxhARyIYQQ\nwZDj7s827azj0Tfe5cd3LzebH0tIIBdCCJHRWjuceeKZOntNArkQQojsluOyqW8JCeRCCCGyWyjY\nbXUJ5EIIIYLBQLzdVdGceiKWkUAuhBAibda+W8uOA02+vf///e0d397bKxLIhRBCpM2tT67nhgdX\nGUlr/Y66Q/8PBbx7PBUSyIUQQqSsq6ePv728lQM1rWl7z1seXwfAzY+t5cf3xJ9aNuJQtqjBbnsq\nWwzkLL0kkAshhEjZ/NUHWLD2IL99eE3a33vjznoq6trdJxDVmv/5/SsN5Ci9JJALIYRIWVdPH3B4\nzrZIHwnkQgghRIBJIBdCCJHdZEEYIYQQJtQ0dhzqohYiURLIhRDCAq0dPfzgL0v56X0rkv7bfoNT\nr5ZtquTLv3mTGx9J/6A14Y4EciGEsEBzWzcA1Q0dNLd3J/x3K7ZU8Z+/nY/e23DotfU7aqlt7HCV\nj7ue2wzAlj0NIxw5vB0Hm7j7uU309Prfw5AzUtd5wOegSyAXQgjLPLNoV8LHPvu2c+ybqw8A0NTa\nxS2Pr+e6vyz1JG+J6O8PccMDq1i6qYplm6tSSquvv58al5WSbCGBXAghLNOdwnPy9q5egzlxZ2/1\n4UVV/vri1pTSuvu5zfzgL0u9XSNdBrsJIYRIlanO3brmTkMpudfXb66resWWagB2HnQfyLu6/e/e\n91K+3xkQQghhzs3/WOd3FtgQtQZ6RCgUYtH6iqTSqTdQKVm8oYJ7X9iScjo2kxa5EEIEVHtnb2pL\nk3qkp69/yGtb9zRw/0vJdbOn0gqPeGPV/pTTsJ0EciGECKif3Bd/oxDbNCUxEl8kRwK5EEJYwM1w\nq/rmrkP/D/YEKpEKCeRCCGGBjArEafwwsnCNBHIhhBDp4FFwH2nhmlhv2x81qj7VhW9sIIFcCCEC\nqDfGgDLT/vbyVlbpGs/fJxGvrNhrrC7Q2nl4q9UbH1nDmm12fEa3JJALIUQALVh7cMhrpgPSgrUH\n+dPTGxI6NifuD2bUNnk3P/6phTs9SzsdJJALIUQAVdUPnXZ221OJBd2gCPiCa2kjgVwIITKBzxt/\njPTuvuUuo0YRxiaBXAghRrBlTwM3PbqGDgvWMU/Gpt31fmdBpIEEciGEGMGNj6xh0+4Glmys9Dsr\nSfFtoFqMVvCad2tTTlZ62mOTQC6EEAkKpdB93R8KWbE3t1/e2VrtdxYylgRyIYRIg1/+7R2+9vsF\n8SsDUa+bbPmvfbfW2y1AYxnUdG52uTyrz4/9A8Oz3c+UUrnAPcDxQD9wFdAH3B/+eSPwLa11SCl1\nFfBVoBf4pdb6Ba/yJYQQfthd2TLyQclIsJ/51ifXA3DfD99v9v2T8JdnNvr23tnAyxb5pcBorfV5\nwC+AXwE3AddrrS/AuQyvUEpNBb4DnAtcBvxaKVXoYb6EEEIYNly9Yk+Vu0qMV9PP1hp4Xm8TLwN5\nBzBWKZUDjAW6gfdorReGf/8S8AHgTGCx1rpHa90MbAfmeZgvIYQAnOe2FXVtwx6TjhXUAJk0nQBT\nPe2PvvGuoZTs4FnXOrAYKAa2AhOBjwIXRP2+BSfAlwFNMV4XQgjPNLV18+dwl+9w3c4/+MvS9GQo\nkx4IZ9BHCQIvA/l1OC3tHymlZgDzgYKo35cBjUAzUBr1eikw4ir25eWlIx0SaJn++UA+Y6YI6mfs\nzTncEh/uMzS0HN4qdPSYopQ/b3l5KTkxWt/tfaEhxw1nVMnAJ5AFhUOL85Liw0XucOmN9F4VTZ0c\nfcQ4xpQUxD1m1KjCmP8HyI3xeRM5j2UVA7vk8/KG70SOlWZe/tC/iXX+k82bTbwM5KNxgjQ4gTkf\nWKOUulBrvQC4HHgDWAHcoJQqwmnBz8EZCDesmhrDA0csUl5emtGfD+QzZoogf8b6hsNLnMb7DIML\n9NbWrpQ/b01NS8xA0lDfNuS44XR09Az4eemGihjHHB4tPtxnHOm9fnTHEo6aUspPv3Rm3GPaokam\ntw8apd4fo4W+d38DJUXDh6Dm5o4BP+8b4Vl7rM/RG2PK30jTCG29puNVMLx8Rn4j8F6l1CKcgP0/\nwLeBnyulluAE9ie01lXArUDkuOu11u7mKgghhPBEUgPWEnjc//Br29xnRgzgWYtca90IXBnjVxfF\nOPYenKlqQgghssBulyPZk9XeGaxldd2QBWGEEFmjp7efe57fzI6DTSMfnIT1O2qpbeoY+cB0C/xI\n+NTz7+X2p7aQQC6EyBortlSxZGMlNzywylia9c2d3PL4eq67I/nR7d09fdz82Fo27QrG5ibVjR1x\nny8HqcoQ+PrNIBLIhRBZw4s54dFdt7c+sT6pv31HV7NxZz03/WOt6Wx54od/Wcqzb+8a+UCZfpZW\nEsiFEFnJi1izdntyK4b1xRrObbmlm5JfBz7DGsDW8XL6mRBCZBZDcXfl1mrWbKth2eYq00nbwVjk\nzqiz4hkJ5EIIkUYh4I50bSKSSavFibika10IIUTKkq0ySHe7ORLIhRBZybZAYlt+TLJvlLg9GWrt\n6OG2J9ezN4V59RLIhRAiUbHKf0MxIekWrU+xyE1vfay/SSwZewKuV15ZsZc179by+0fdz1yQQC6E\nyBojbZYh3BtwZuXRfML6wpvldMdYEz5REsiFEFkpK2JNAhWXrp4+epIIIm7qQrH+RqpU5kggF0Jk\npa5udy2g/lCIirq2EXfQCop//eHzfPPmhWYTlSidVhLIhRBZaXnUHO6EheDphTv50d3LWbYp8b/f\nVdE88kE+Mr0wTXOb3RtYdnTZs5HKyyv2AtDb6/47kHnkQgiRhEgFYOnmSgoL8pg6oWTEv3nirR1e\nZys2n3oNFm9IfvW3bNefwnclgVwIkTU6DbbENu6sZ+POej536fHG0hTCDelaF0JkjUff3G48zfqW\nLiPpvLpin5F0vJbORn6mTzLo7nE/Uj2aBHIhRHZKIEhUN7R7n4+wtzdUDPh52eZgdU8PF9/bOu15\nJm2Tu57bbCQdCeRCCBHHbQlsL+pVC/XR19/1JuEUmWslZ1Zzu7WjJ6lpfACrt9UMea0/FKKxNble\nHgnkQggRR0uHB6Ov09g1vXxLdcLH1jd3pvReXoTlIM3w+68/LuLaPy9JOZ37XtjCf9++OKklWyWQ\nCyGEhUzEsGSmWd325AYD75iMAEXpBLW096ScxpKNziOVHQeaEv4bCeRCiKyU46INGSv0hBIISEFY\nPKa6MX3jAYRZEsiFEFmhpT35bvJE4u+ug94s9mLrE2RzdRJbP2Hqqhva6exO3wA/CeRCiKzw1xe3\nepLu1r2NnqRrfxvee0Gcftbe2cMP71zGj+9Znrb3lEAuhMgK1Y0dA35OJEiYCiTRu65t2l1vJlGf\nBDG4plNrh/OcvL7ZzPoCiZBALoQQafSHx9alnEZ1QztvrNpvIDfCBL/HQEggF0JkpUTKXlvHqP3s\nryuNb3QigksCuRBCJMiWXuVOl1uwiswkm6YIIUSCQkBtU2oLp6Rq6Savlm5NrJpiay+FXw7UtPJw\n1Cp8dT5cH9IiF0JkpReX7Unbe5l8hvrWmgPG0orW0dXLtn3ejMCPJYiD5kKhEM8t3sW+6tZDr931\n3Ga27Gk49PONj468rG8iGpJYplUCuRAiK/g9ICkIfvPQar+zMIBtsV7vbeTpRbv46X0rDr3m1ViF\n55ckXtGUQC6EECJh8VrSyYazINarbB2bIIFcCCEsFLRA9+zbu4ynadsp2FfTOvJBBkV2Qevu6WN/\ndfz3lkAuhBDxGIokOUF8IOyxIJ6SpxfuTOv73fnsJgBufmwdP4nqzh9MArkQQlgoXqALYPwTLkVW\nIxxpEKIEciFEVnDVKvYxatratW5rvvxS29Qx8kEek0AuhBCJkihmzL5hnvkGRU9vH909/X5nQwK5\nEELEZShu98tyqq7Y/hiha4Qgftc/N7HjQFNK75HItEkJ5EKIrODnPPJMCuNBHKTml2Wbq7jhwVUp\npbFx18i75UkgF0KIBNU2+7s8qw3aO3v9zkLGqqxvH/JaIku+SiAXQogEvf6ObB3aJoHcM53d7s6t\nBHIhhBAiSW2dPbR32VGpkd3PhBAiSOQhtRW+c8siv7NwiLTIhRDCYxJ6hZckkAtjevv6aWnv9jsb\nQoiAGHEmgdSAEiKBXBjz0/tWcPWtb9PdY+cOQUIIu4y4BWgmzdtzoaElsT3JJZALYyrqnKkTHZZu\n9SeEX0zGo0xqpI4UyHv6/F81zW+RHdCGI4FciCgt7d2+LhwihDjsqTTvNmajRCozEsiFCNuyp4Gr\nb32bpxelt/CobminS3oxxCDxKpSZVM0cqXehusH/DUmCQAK5EGEbdtQB8OrKfWl7z+b2bn545zJ+\nfv/KtL2nSFwoo8KmfeTsjiyRDkIJ5MI86ZpO2BvhlcJiLc0ospurbVdFxnl7fcWIx0ggF8JHzy3Z\n7XcWxDByfBxaFq9rPaPCu9T5B4i1rnprR8+IfyeBPAvJYC6RLbq6+9ie4jaSQqTL42/tcPV3ni7R\nqpT6H+CjQAFwO7AYuB/oBzYC39Jah5RSVwFfBXqBX2qtX/AyX9mst6+fr974FufNm8aXPzzH7+wI\n4albn1zPlj0N/ODfT3P1934+I5eu9Szk8nLzrEWulLoIOEdrfS5wEXA0cBNwvdb6ApweoiuUUlOB\n7wDnApcBv1ZKFXqVr2zX3OasvJbIcxe3At/eD/wHEBFb9jQAcLC2zeecJC8bes5kMKEZXnatXwps\nUEo9AzwH/BN4j9Z6Yfj3LwEfAM4EFmute7TWzcB2YJ6H+RKDvLhsD7/6+yr6Uyg4MqLQSUMDaNu+\nRn74l6VUyeC2QLDxspaGuhjMy0BeDrwH+Ffg68DDDCwqW4CxQBnQFON1kSZPvLWD7fubEhpUEc//\n3LXMYI7M6unt54GXt7KnsiWldEKhEOt31NLW6f483fP8ZqobO2SQm0c6unq5/6WtVNSZaYH3mlpZ\nzMYagQXktJjh5TPyWmCL1roX2KaU6gSOiPp9GdAINAOlUa+XAg0jJV5eXjrSIYHm1ef71d9XxX2P\nSRPHMHZMkat0oxdumDhxDBPKikf8m/LyUg7UtLJzfxPnn3b40ujt66eto8d1XgZ7fcUe3lp7kIXr\nDvLs76+Ie9yokvATnZycmOd/3bYabnl8PcfOGMsfvntRQu89OJ3cPKfuXFxcMOR3Qb2mbcr3I69q\nFq47yNa9Ddz740sPvf766gPk5cVvt5j8DLHSKihMvqjNzY19HRYUuCu2vf6MbkyaNIZRxQVG0gJz\n+TJ9TSeaXm6eu+4WLwP528DVwM1KqenAKOANpdSFWusFwOXAG8AK4AalVBFQDMzBGQg3rJqa1FpX\nNisvL/Xs823ff7jz41f3Leeqj5546Ofaula6O1LfvayurpW+ruFbrZHP+PXfvOn8XFrIxLFO8P/J\nvcvZX9PGHd+7kKKCvJTzUxvuxu4PDX/dtEd2bguFYh63bbezYMz2/U0JfT/l5aVUVzfzyop9nHT0\nBGaUj6E/3MLr7OwZkkYQr2kvr1U33l7jzMuvbugYkK+K2jamTRwV9+9MfoZYafV09yadTn9/7Ouw\npyf5tOLlyy1TadXWtlJSZC4MmcqX6Ws60fT6XPYAeda1Hh55vkYptQLn+fg3gWuBnyulluBUIp7Q\nWlcBtwKLcAL79Vpr2QszDZZuqvQkXTfdZZ1RBd3+GqdbtL3TXYHlhdrGDv7+6rak/27HwWYem7+d\nn9y7woNcicH2VrfG/Z2bR0dNrVIUCft5Ov1Ma/2DGC9fFOO4e4B7vMyLCJ7V22q45D0zkv67UChE\nW2cvY0qS7LIbplfrz89sdDUYsLXd/fN0YZab590t7WYCuTwKFl6SBWHEYZaVNg+9lnwLGODh197l\nv/64iOvvWkb/SPsdJ6ipzV2BfuuT6428v0idDKyyj3wnA3X3Wta1LjJXfyjElj0NdPeY27HL5P38\nxurD65c/ucDdSklekwIsu8iMMZEIt49yJJCLpC3ZUMmNj6zhgVd0zN/bNM91+ZYqq/IjhBCmefqM\nXGSWjq5eunv62FXZDMD68Lafg9nU2rQpL9GkciEEWPc8L6AkkIuEXX3rInr7Qlx8+hEjH5ykFo8G\nhbkZoBbrL2IF3lAo5Ho9bFsrGOKwhpYuY2nJ1y28JF3r4pCRCpvePu+KoxsfWeNZ2olKJiTvrmzm\nK7+dz8NJDMirbeoY+SDhma7u5MZ0mBwDYqv2FFYpNEEqOGZIIBeH3JbgCOt122s9zon9fnH/OwC8\nvmp/wn/zRNQWhdK1nn5+Bg03752OXpvdKS5b7KVlHq1zkYhnFu307b3dkEAuDtl5sDmh4+qbzXU5\njiSdm7F4/U4rtlR7/A5CZIaGli7uem6zb+//z8W7fXtvNySQC6t95bfzeXXF3mGP2V/dyv7qVnpc\nzsEcLFZj2XQDWp6RZ5fopZETlQ29NvHug04XS9pmMxnsliUaW7vYEGeUuVvxWsvNbd2MLzWz4QnA\no29u59KzZsb9/U/uO7z86Z++e8Gwaem9DaiZ44c9xsYYu6eyhaa2LuYdM8nvrIg0kcqeSJS0yLPE\nbx9ew19f2mo0zbbO3pjLXv78/pVxp6Z5bfnmqmF/X90Yf8BZOhtAyba2fn7/Sm55XFaJE0IMJYE8\nS1SFdwAbSUdXcl1a++JsUmG69Z+oWIvUmAjQphtH0toSbrmd8igylwTyDFfb1MGfnt6Q8PEvLx/+\nebRJOw4m/9xwMDc7WgkhRCaRQJ7hHnhFs0rXJHx8si3yVCzbOHw3eCJufyrxSkoqpA3krVAoREVd\nm7FNbozIgi/d77OdzlkpmUwCeYbbuLPe7yx46t39jcP+PgvK4oywdnstP7p7OQ+97m7Hu0wkIU4k\nSgJ5BnOzMlWyhUe8CnXIkmLI1oU4xEB6r1MhW7LRv0VARPrJrWaGBPIMlkkBKW4XXAKfUe873GrP\nGa6NLs13a3R09breAz5TpONylEs+M0ggFylJaQBtEn+7cZe7RwQ5DFxR7YkFO2hqjbMy3bCVArNF\nXirn7eXle/nfe5fHnPqXKb5zyyK+e9vbfmfDVxlUDxcek0AuBjJUegzb8nWhpT126yzZ7Da3dY84\nnz4ds3tS6S15bP52DtS0UTPMnPjACp+XwbvWhUIh1rxbI7MUMo3UVoyQld1ESoLYfd9ocHtKW9Q3\ndzK+tCiwc4ybwxW1eNvObtpdz21PbmBMSQH/etExnD9vWmA/qxCmSYtcpGTDzjoWb6gY8nq6BruN\nVJQ3tib/nDVolZPlm6u49s9LeGHpHr+z4tqyTc5UxMHr5UcCfE2D0/vQ2tHD/S9tZcuehvRmUHgi\nYLeaUcluqzscCeSZzEWDJdkA/Ozbu7j3hS3Jv1EMeypbePDVoSuzDcdVQRDvvKSxgWeiMRlpka55\n11knYLHPI777+0PG54Ev2eB8pq6e2AFepCabA6nf+vrNjXGRrnVhjZ/fvzLu74y2kl2kZboX18Tn\nsW0xjWvCg9Nuvfp842k/Nn+78TTtZ9f3m03SUac3+e1KizyTuQlYMiHFOlatdjaM1o6eQ4PR/vri\nFp5csCPlNFdt828Pd7kT0sCyymg6/dHgJkjSIhcD2LKQy2BGW8RJpLW/upWf/XVl3EFY6fD8kt0x\nX7d5sNei9c64iU9eeExK6ew40GwiOwEV+/u1+GsXSdh+IPW9JiKkRS58E4Ty6NV39hkN4rVNnUBy\nhfGad2tjvj6kpW5J6yYdXf6dCQwUGm7L2mDw/jz6fQ/accUGnwTyTOb3XRow28IrwKVjoRW3sW7N\ntsMb4Nzw4DuAfS3zB2NsJWvaAy+P/B5/NTQI0zaW1NeERSSQi7Tzs5t6OKa7cTfuiN2STsVtUbu9\ndXSZm75i0ltrDx76v8mRucnqcrHXgF3sqqBllYCdenlGnuV2DHpO43WIDYVCXPW7+Zw5ZyplJYlf\nfpbG/mHd/czGuL8z2Yi2bfR6tKbWbiaUFdPR1UtxYZ51vQd2i/29ZtIptPjSDRRpkWe5Gx5cldBx\nJoNFKAQrNlcGotZrRRYTzYSlJXxFXRvf+sNCHn7t3YSOX7ju4MgHCSMkjmYGCeRigLY4a1m/smJf\nUukkVEAkUYqYjFE2TLEzVS+qqGszn6hhkS1K31i9P6Hj7x+0Fr6f3fNCBIEEcjHA4CUyI1ZsqUpz\nTjLbtn0N/O3l4TdvScTzS3Yf6q6uarBvlLaJusWKzf7NJRciCCSQC+GDuuYuFqxNfxfyKl3DnsoW\n4+l6+Zy+vavXs7SFyAQSyEVCki2mE+q8TqKH269e43Ttt54O/aEQf3p6w7BL4br10vK9xtP0nc9j\nDuJd85ZdVimxdaCmDY/fkiGBXHjCztszoEydTA+/lFg74An7BStciXgkkAtPzF99IObrbmOJpQOy\n0yKd8+43765n50Fz8+n9XPK3or7dt/c2IZuveb8b6raudRGPBPIMZrIcCMrGHdnHbGn/+0fX8ssH\n3jGaZk8aVsqLxeR+z34IWCwRPpJALhLixbOsoD2HspM3pb3JKV+PvJ7Y/HExUDriuK11hWzujXBD\nArkYIJ2tgH3V5kdPJ0QKiRFd9bu36OlNvUUrlTUxnHjljfRGJEcCeQYzeS9U1Jl/3rg1vFBIItJ9\nYwflUYKX6603tXWnnIat2+IKkUkkkAdEX38//3PnUp59e5dP759dBfK+6tbw/+xuUTa0dLF8syzW\nk5Gy65YbQLrWkyOBPCAaWrqoaujwLZD7TW7sxLS0J96K7uw2t9BKfXOXsbQG82PhHBvE7c3IoJsh\n3meUrvXkSCDPYFbe7ll0g5oqb5NJZriek+hCc+G6g3zz5oW8tGxPCjk7zMstQ/fXtI58kHClxsJl\nfUXyJJCLrJNIYLSp0ZNM3SfRlkxkY5IXDQXyuLKo4mZaOgYKPvCK9vw9hpX5nQ5pIYFcBILJrrZE\nkoq8n+0FyuCuSVuXvAwkn89lNg8UlMs4ORLIA0Km8aTXrU+uD8SCInurEu92lmsoYCSYiQRJIBdZ\nJ5Fw1tDSxZKNsn54NvM7jvr9/ukQ7zPa3hNmGwnkARGrm239jjqeWbTT7PtY2qflx43d22fnuTCp\nrbOXr9/0Ft0eDlYT7mRzLLO0GLKWBPIAu+Xxdfxz8W7aO2NPI5J7ITW2VmpM6+7ppzLgG4xkomy4\n+pJ5NCTik0AeEMM939xVaW63qhyPm75BGsCTZWvgpEVVkCoMPn//2VCP/NPTG/zOQkaQQJ4Bbnp0\nrbG0bG2F+pGtVLcyNFUlOrzKXPCs21E34Oc9VT6tr59BsrnLXcQmgVyIOEKhUOAKzeF6VPzoDXno\ntW1pf09T7KzSCjGUBHKRdRJ9ehDErnU/elRs7cUJPjmvIjH5Xr+BUmoysAq4BOgH7g//uxH4ltY6\npJS6Cvgq0Av8Umv9gtf5Cpp0jdq2tejwY9R6KIiR3ActHT1+ZyEjSf1IJMrTFrlSqgC4E2jDebRz\nM3C91vqC8M9XKKWmAt8BzgUuA36tlCr0Ml9BJDe1SUnUCgI2odXoYMUsv+as7WkI1iUp0sDrrvUb\ngTuAyMoap2utF4b//xLwAeBMYLHWukdr3QxsB+Z5nC8RMLaWqZnE9R7sPn031gZaIdLMs0CulPoi\nUKO1fjX8Ug4D65ItwFigDGiK8bpIlc/lXKxFRmwoe9MVAPzYw/26O5ZQ0+huR6s/PrF+wM+Nrd1U\nN9g7XcyCS8kfWfvBRTxePiP/EhBSSn0AOBX4G1Ae9fsyoBFoBkqjXi8FGkZKvLy8dKRDAm3I58vP\nj/+7OK91diW/33RhYb6xc/uNmxfwz99fMeC13r5+V2mVlRUby9fuypaE0ho1qpCuBFZ3i5dWsivD\nmfh8ff1CgugvAAAgAElEQVQhFm2o5GufGNqp1TfMuZ8wYTQbdg6cKvarv68C4Lmbroj1J4dMnDgm\n4fyVlZYY+x7LJ5WSm2umnznm/ePuUjVaNsVKq7DQXbHtdb5MpmXrubchrVg8C+Ra6wsj/1dKzQe+\nDtyolLpQa70AuBx4A1gB3KCUKgKKgTk4A+GGVVOTufNRy8tLh3y++ubOQ/+P9dljveZm04/u7l5j\n5zYUGpovt4G8ubnT6HeeSFqtbV10dI48kMtUvkyl09HREzOtvv74576+vs1VvsrLS6mrS3yee3NL\nh9HzZSqQx8pTQ0P8c5JsWm7Eun/AuUfdSPf9k0paw12Pyabllq1pxZLO6Wch4HvAz5VSS3AqEU9o\nrauAW4FFOIH9eq11dxrzFTjPLdnNjgNNIx+YQfwYc/bPxbtT+nvbxsl59UShp9dl8ylFXs+Lt+Ex\nUEyWXVfCf55PPwPQWl8c9eNFMX5/D3BPOvISFFv3NPC7R9bwg38/DTVz/IDfPb1wJ0/7lC+RmdYP\nWoEtGW+u3p/wsfXNXa7fJ9sEaTljW4RCIc+XmbaRLAhjqafDu5ql2irMFNa2jiz0xur97E1yKdSn\nFrrfRa+pLfEOtMfmb3f9PoN5fU3IJSeCQgK5EMMIat3+5sfWGUtrpFH+UsnyiJxXkSAJ5GIAKZTN\n8bMS0GVwf/Ft+xqNpWVStl6rw+2EKLKTBPIMluruXQLmrzng+m/3VGbGzIp4+91HZOwjSZ/vH7l7\nRaIkkFuqtqlz5INGsHRTpYGc2CFjg0UG8C/eZWeok0FwYjAJ5Baqrm+noSX10b1V9e5W+LKRdC74\nx9ZTL4PdMpfbc5+t35kEcgtV1LpbDMEEafkKYTd5Ri4Gk0BuI7lPhRhRtra+soEUgcmRQG65LXsa\nWLKxYuQDDTHZXVlSlJb1hoTHhrsmunv62F3ZnL7MRPM6kktNwTdy6pMjgdxCg7u373l+iz8Z8YA8\n684sv39oFRV1/uyQJoO+hHBIILeQn8/AzBaOUtBmguHGTSzdkL7eonSz9eqVcSxiMAnkQohh2dqL\nYmu+hAFuv9wsvSYkkNsoRo07mfWsI1y1rrP0RhBCiKCSQB4Qq7fV+J0FIbLKSGvMC2ELCeQBkbbl\nVg0+f5NyMFPY+UXaen1JBSB1cgaTI4E8zV5/Z5+r1rWbsmHDzvqk/0YWmxDBIcW9ECCBPCkjbR6R\niIdff5fbn9ow7DGmQmlVffLTgkyOWo89ulYKX79IQ1FkumydkiiBPEErt1bz7VsW8tZa97thpSKI\n7WQJHMJLtl5etuYrUOQkJkUCeYKWhOfLLlhz0OecCCEgDZumSDARASGBPCjS1SSXwsuI/TWtfmdB\nCJElJJCLASSOm1HTIFvICm+YGKtjO7nkkiOBPEEmLqylmyoP/X9fdXIttrXv1hrIQXrJzSi8ZO00\nL4+ztf1Ak7dvIAJHAnka3f3c5kP/f/yt7Un9rV8bUwiXgjg6MWAsDePCALeVNFvrdl6TQJ6gVMrl\n5rZu+vr7E3+vDNkVIdanyNYbTQSPrVOZTpw13u8sCMvIhtEJcntLN7V28d3bFzPnqOy7+ewsBkXG\nyNILrKRIim0xkLTIk5VkY7kqPOhpy54GDzIjbGXnCnmZFfm8/jTuN+DKrPMs7CeBPFmm7lFL73Ub\nw48QMWXpcxq5R8VgEsgTJDePEMIKGTKGRpgjgTxBxuv+2XAvZmeDyZFB36+tX6Ot+RKpy9LOFtck\nkCcgFAqxfked84OpAlouVCFSYmth73W+MqiOKAyRQJ6AjbuS3w40FVX1bWl9vwE8LiUsLXuFCAzp\nWReDyTyGBNQ1dR7+weNItH5HHbc8vs7bNxmGydHW2Tx6V8ra4LO1xS/EYNIit8xWn6epGa3tS0Eo\nPGTtEq1CpJkEcuEZKWZFkNnao5QpKz96IVvHJ0ggT9KeqpaYr9c2dVDf3Dnk9aRbDbZeKS5kc4PJ\nxrLW9QIn2fxFCl/YWomylQRyQ667YynX/nmJ39mwjLmb0cbAmO2eX7Lb1/eX+oUQDgnklpF4JYLi\nqYU7fX1/z3sKLK0oSBkhBpNA7qHqhnZeWLbH72wkxehYt1gFocvC0c61y4cTtPwGz30vbvE7CzFJ\nT0HqbD2HlmZLpp+N5JlFO9l+oGnYYwa3DDbtrufmR9cO+6XbekEIERRb9zZ6mr6196jUEcUgEsiH\nUd/cyT8X7x7xuMGB/vE3t7svBHy+SU2OiLW1Vi1EkEkcH052FjrStT6Mvv7ELoqe3v6k05abMUkB\nO2F+D84L2OkSIhBsva8kkHvgQO3IS6zGqyL4/SzYZADK5ikkft/w2XvmDXJ9Er0++35fXZkvLzdY\n51gC+SBvr6/gmUXJjcZt6+wd8HOiLfmMJ6chI8gjErv43duTDnLNJUcC+SD3vbgloefi0e54ZqOx\n98+km9TkvZhBp8U3UjYmJ5t7lESwSCAXaZU1hWMG1Tyy5jsLiAy6tIQhEsiHITeMECJZ0i2cOreV\nR1PnPmjfoQTyKAcHDVJz811W1rebyYwYKGC1qn4ZJxF4NhTmHV29Ix9kiVlTS/3OgjFB64WSQB7l\n7uc2p5zG9XctS+nv/X5GbuvOSn6P5k/WLY+v9zsLIgNU1MVoGFh6K5SPK/E7C1lLAnmU3v7k54ML\nIYRXKuqGTmW1tVJrtA3gd4PY7/dPUqADeW9fPwvXHaS1oyeldFo7erj1ifUcqBl5/nems7RBLvwU\nsELNbyZP18EYgdxWNjyKMCXuR7G0fAx0IF+w9iD3v7SVO57ZSFd3Hzc8+A6rdE3S6by8fC9rt9cO\neG3Flio27qo3ldWhLL3qLb1OpYIhslJFbXC61m3gealqZ7Ed3EDeHwoxf80BAHZXNrNmew07DjTz\np6c3JJ1Wb9/QLvW/PLuJB1/RKeczrriRKbPvUkvrL9nB5bnP1q/M821SExCrRZ7ZJYTD/zMfLJ5t\nmqKUKgDuA44CioBfAluA+4F+YCPwLa11SCl1FfBVoBf4pdb6hZHSX7yh4tAo846uvoz55rPhJhWx\nhUIhawcbCn/UNHbQ09tHQX6e31kZUVZcujlYGWu8bJH/P6BGa30B8CHgT8BNwPXh13KAK5RSU4Hv\nAOcClwG/VkoVjpT43srWAT8nsr55EDS0dPmdBeGT5rZuv7MQm4UFl9UMna+83BxCIais7xjwelYE\nTFtZei94GcgfB34S9T49wOla64Xh114CPgCcCSzWWvdorZuB7cC8ZN+sP6obrLaxY5gjh+qJ0bXu\nl7c3VPibASklfGN06rmsjxt40yaOBmKPXM94lgZMW3kWyLXWbVrrVqVUKU5Q//Gg92sBxgJlQFOM\n14c3TOFy3V+WJpXXru6+pI43woLnb0GSDV3OB2paRz7IB5l/5u00fdIoYOhCVUIM5tkzcgCl1JHA\nU8CftNaPKKV+F/XrMqARaAailwQqBRpGSrukpGDAz6NKBvbGl5eX0tHVy6evf4Gz507lx18+O25a\nxcUFcX8XS3l56isYFRTmG0knwlRaRUXe5qu9091UwbKyYivPl8m0VugaLj57lpG0yBmar06Xq4SV\nlZVYeb5MphUrncomd4+5Jk0aQ3HRwKK1qDAv6QbDsTMnsGJLNXWt3QPyV1Iy4pPHmLw+78VFyZWj\nw6VV0+ruMdOkiUPPvVsxz5fLZ+Qmz30sXg52mwK8CnxTaz0//PIapdSFWusFwOXAG8AK4AalVBFQ\nDMzBGQg3rI5Bc8fb2wd+8TU1LcxfvR+A5ZsqqalpiZtWZ5LBZbi0EtXT02cknQhTaXV39XqaL7dL\nTjY3d1p5vkym1dzaZSytUH9oSFpue55aWjL/3MdKp7HR3XLLNbUtFBcOKlpdFP6FuVBcmMfug00D\n8pdseXUoX4bO1Yzy0THT6uwyly+35762tpWiQjMDA2OeL5cdqSav+Vi8bJFfj9NF/hOlVORZ+dXA\nreHBbJuBJ8Kj1m8FFuF0vV+vtU66OtYfo6s6kWeO7Z29LNlYmezbpc7SrnVbe7AtzZbIYH7foTnA\ntImj2FvVSl9/P3m5uYde99P0SaN9zoEYzLNArrW+GidwD3ZRjGPvAe5J5f1eWbHP1d+9vGJvKm8r\nhDEm63ZGx7r5HTkygNtNOKZPHM2uihZqGjuZOmGU4VyZZXIci6XtHGsFdkEYU5dMd48PA92EiMHr\nHZeCtqOTgGnh1u+AAW+W1qxsWEDHa7Z+wsAG8o5uM9v75Vp6U4gsZGkpkQ0zBmJyGZhi/ZnbjU6m\nx5iClqXfhhhGYAP54g1mnmvrfSMOkM8qWVtoW8BkiyYLGkdZYdqhKWjuBn9lm2ztdQpsIDdlV4W3\nowmFSJStRVC2Vu2Mfh8uT2L52BLy83IHrrlu6RcijQD/ZH0gF8GQjjLiyMljvH+TYZhtRZtLTMpn\n/+Tm5jB1wigq69pjzsyxia3PyPPzMj/MZf4nFEnxusx2f697H00mlhV7/h7DsbUgFKlL5eqdPmkU\nXT19NDRnzz4Ma9+tHfkgcYgEcjGQtL4ygtk6QXZeFLZUqyJrrke617Ph23hHVxtMzZZv0jsZG8hr\nm5LbOEU4sqGQOO/kaX5nISZbG+TStZ66VM5hZAGWitpIILfzCzH5jLy2qdPV38W+h+w8XyZlbCC/\n7o7kNk4RdjMZTPLzYifmd8CyNI5nQTEYhyVfyLSJ4ZHrddkxct30JlZ+39fpEMhA3tNrz7ajQpji\n9fQz18lnQUFokumelSnjR5GTc7hr3dbvw9T1u7fa7EwiW3u6TApkIF+/vcbvLKTM3mvLzlLCzlyZ\nZes1YWtXbrYoyM9l8vhRVNS2EQqFMv7b2C1TgpMWyECeaA0rG7pURAYxuta6rdWC4DB7DlMrjKZP\nHEVbZy/N7e52GItl4646Y2mBuWfkuyubjaSTTQIZyBPlVZeKTBNKhQXnLk6B4/eCFtYGX6kQJ8n8\n9zhgwJuB72PbvkZuf3JD6gl5YHelvS3yyeNL/M5CTBkdyEXysqIXw9KKmNFsGUwrGy6JmFyew/oW\n8/O9IwPeotdcd2tPZQt/fGIdfYns85wEEw2cjq5eKo0P6jP3OS8+7QhjaZkUyEDud7CxMwyYkbWF\ntgVkG9PMsKtiaNdwqqfw0FzyFNdcP1jbxk3/WEtnVx//+S8nppgr8/ZWtVhdvvrdaxdPIAN5ohpb\nh68ZN7d3u0vY5istU9l5/xglj2wygxeDtQ5PQWtzPfiwprGD3z+6htaOHr5w+QmcfeIUk1k0EuSs\n3/vC0ns0owP5C0v3DPv7fVWtrtK19lmmCZYGzHSMnDb1Dm4DsqVlBNZeFB5z+3XsjNUiT/EUFhfm\nM7GsiIq6Ntdp3fjIGhpbu/nM+4/lglOmp5Yhj0QGukXGBJhg731lTkYH8hG5vCEy+cIoH2vnYA6j\nPO4e23nQ3ahbWyuI6ehNPGvOZCPpnHrsJCPppGJ/dauRtS4GXw3TJo6msbWb9q5eV+nVNnVyxXmz\nufSsmSnnLRYTPUp7KlsYXZzPpLH+7nsA0G94DIGXAhnI/Z7XmsmBfHRJgd9Z8I+hy2rJpkp3f2jp\ndZWOuy3XUG0hN9dcbt3e5339IfZVu+vtG06klVpZ7+45+aVnHsnH3jfLYI7Mau/soaqhg6Omlhq7\nHlKxdW/DkNcsvUWDGchNcX+p2Pp12i/Tz1xPbz8rNle5+tsANQDM87/cNirWgLdkDT4lh0au17ob\nuf5v7z/W08Faqaa9JzztbNbUMtdptHSYm2e/3OV97IesDuRuZXKLXKRm/Y462jrddX3a2rVuZ67s\nZiKQDxYZue7m+po6YZS1I64jdh8K5KWu09i009wiN6t0TWCWA8/qQO72spaCLeA8rIktddutDll9\nYZkKMWZDlbsvpKgwz0ggH/zuqQwAS0cMT/UZ+a5IIJ/mPpCv32EmkI8pKaC9q3fI6ne2NuICGchf\nXLLL1/c3MajD1gvC1ilQ6WitplrWtXb0sG57LRPKilz9fbxPaMPzQu9lzmecNaWUyrp2OqIGpZlo\nDY8pKaBsVOaOYdld0cyYkgImlrkf6LZlTwPdPanvnnb2HGdqXlC61wMZyJen0uqJ5vLmsjTWiQT1\n9nnzBa7YUkVff4hz5k71JH2/ZOv17vZzz55eRojDz3zdilU6uW2VG11sKE5aqVRWWjt6qG3qZNa0\n0pTS6e7tR+9rHPCam89+1NRSpowvYe32Wjq73T0qG05vn9ku+0AGcpF+RQV5fmfBmLc3VMT+RYqt\npqUbK8nJIeMCeTpkUqfD7GnOYC0vn5Nnmsj88VQGukWY6F7PyYGzT5xCd08/a9+tTTm9wZ5bvNto\nelkdyF0/I8/WJoqfDJ/ykVb9S1ZlfTs7DjZz4qwJjBvjsms9znXlf5CT6z0Zs8ODtVIN5LHOemTk\nuo1SKRf3GBjoBlBcmMf6HbUD8uL2/omsfGe6e31PZcuIi5UlK7sDudsFYXx8b695XWTbUgd6Y9X+\nIa+l8pUs3eg87jn3pKnurytLzo1wuP06Jo4tZkxJgSfLjZpc8cwtL8quyLK2qQbyubMnUNPYOWCu\nvdv7atrE0cycPIaNu+ppNTStrbevn3tf2Ey/4Zs9qwO5Wya+A68L7QMu55rGZWnFw6231hygq3vg\noBi3BVR/KMTSTZUUFeRx+nHlrvN0/JHjXP9tItxecyav1feo2Ocnky6vnJwcjp5eRl1zJ81tLvdz\niMPmrvVUnm3vrmymbHQh40uLwmm5S2feMROBgd3rqQyUPfvEKfT1h1ilq1NOC+Cfi3ezv6aNC081\nu0SuBHIXgtC1/uyinX5nAcDYPMwew4ND2jp74z8rT9K7+xqpberkDFVOUWGe60IoXrdpAC63hOXF\nW3nNxkiewnmfZaB7PVY5M25Mobu0XOfCe81t3dQ1dzFramoD3QDmHT00kKfiLIOj1/dUtvDi0j1M\nLCvi0xcfm3J60bI6kLu9aGy+KcC5YN7RNX5nA4A7/7mJvv7Ug/DqbWY/T35eLq+t3GdkPeXI3PFz\nT3IGufm9hHBEe+fg7kCXm7mknpXDaXl989hx6ocMeDPVHW3Doi6mv0MTC8FEjB1TxFFTS9m2r3HA\n9D+3Jo4t5rgZY9F7G2lIYZ/56C71L14+h5Ki/JTzFi2rA7lbtreQnkmlNW74s63eVsNfX9ya8jOh\n1dtqaHG77WwM5540herGDtYYGJG6cms140uLUEeNN5Azc0y1StLBlsqPKZFAvjuFKWi2FjOm83Vo\nxPq01Eesg9Mq7+sPsXl3eK30FDN89olTCAErt7hvlUd3qc+dPSG1DMUggdwNDyP5GXGeISZqx4Em\n1u2oY0b5GEM5cu+K82Zz9PQylmys5OHXtqX0SKK3L3RoQJkJl57p7AD1yoq9KafV0dXHOXOnHl64\nxZLBboMrKa6TT0dEsTCOVzd2uP7bstGFTCwrZldFM6FQyN3HszaSm82YqYFuEZHn5Bt2mpk2dsYJ\nk8nNyWH5lirX34lXXeoREshd8PT+SrHr7Olwa/wTFxxtIjcpKS7M45pPncKM8tG8ufoATy1031OQ\nn5fDgnUHjY1PmD5pNPOOmcj2A03sONCUcnrnnHR47rjpmOR2gM36nXWBWSvaFJPn/tE33k3p72dP\nK6WlvYe65k5Xf29rHDdtd2Uz40uLXE/bHGz2tDLGlBSwfkedU16keFGUjSrkxFnj2VXRQlWDu8pd\nfyjEFz9svks9IqsDeaZNE9J7G9i8u4G5s8ajZno7AjoROTjLSn7v305lyvgSXli6hxddzp88/fhy\nKura2XHA3CIbl501sFXu9vnjUVNLOSJqWpAFjzEpG11IV3ffgK0YXY9aD8DyuBE23ZqHn5O32HFR\nWKqxtZujpphpjYOzle3JR0+gsbXb2U7WwEURmVO+wmX3+kWnTmfuLPNd6hFZHcjdsnHUeigU4ulw\ni/fjKbTG2+MMEEmlGBo7pohrP3MaE8qKeNllV/YFpzjTNRauO5hCTgY6YeY4Zk4Zw6ptNdSk0I16\n7kmDV3JzO4gyznXl4nI77bhJAKwxPEjQK5kY52alusKbheUMeFNZSmWjlFjmHeNc/+t21BnJ7+nH\nl5Ofl0tnt7t13D/lUZd6RFYHchsH2LjN0abd9Wzb38Spx07imOljXW+08erKfSmNzoxn4thivv+Z\n0+JPPxrBCUeNp3xcMSu2VhkZjQpOC/yys2YSCsFrK/e5TieywcLhdN2l0+5y+9NYjj1iLGNKCliz\nvTb1xSfsjCfWmzW1lByczUDcXBJGT7ullYIIE0uzRps7ewI5ObDB0IDPkqJ8Tgk/e0/W5PElnnWp\nR2R1IHfL9Ko8JhxqjZ8/23nBZTDp6OrlwVe0mV6HQRFtyoRRfOUjc1wllZuTw/nzptPd0290ycQz\nT5jM+NIiFq2vcB1Iy0a7m9s72FtrDtBlYOcmcLoXTzl2Ik2t3Z6s+W2emUq1iVSqG9q567lNKadT\nUpTP1Imj2F3Z4qrMsLCYAZzliE1v+mFqoFvEmJICjjliLDsOpj7+JSLSvZ4st42XZGR3IM+gDcl3\nVbRwxgmTmRl+1uT2o50wcxxrt9eycmu1ucxFGZPCNozvO3kauTnOoDdT8vNy+cAZM+jq6WPDzuRr\n7xfFWKHJbYu8rbOX+asPuPvjGCKrzKW66YPJimv8c+P/TdXQ0sUDr2h+dPdylm0yU1mcPa2Mzu4+\nWtrNLPFpgwM1bfzqwVVUNbSPfHACJpYVGasMRzvlmIlGK0PzXLbI0yG7A7lLXo4DdhsEcnLg4+fN\nTjmdL15+AoX5uTz02raU523HykIqjzPGlxYx75iJ7KlsSXmLyGgXnjKdokL/d3crKsjjxWV7jD06\nOHH2BArzcw8tpuO2l+W+F7fy1MKdxtabttHj87fzP3cu5a01B5g0tpivXzGXyeNLUk53tqG50TY5\nYeY4dle28LO/rjy0GFIqTHerR5x8tNnAW2jxDpBZHchdhxQL+7zee+LUARsquB2BPXn8KK684Gha\n2nt4JGr6jbmVqVL7+wvCLeCF6923yj9/mRrw86jiAi6YZ27tY7eVlcvOOpLWjh5eH7Shi9urragg\nj7mzJ1BR1z5gE4lk5efl8PyS3Xz/z0t4bP52mlLYOW5XRTM9vbEeH/g7XuWl5XsZXVLAFy8/gf/7\nz7M5a84Upk5IfaexTAzkX/nIiVz10RMBuPu5zdzz/OaUKp+mB7pFHDl5zKG12/2UjnCR1YE8P8/d\nx7cvjMMV580yltYHzziS2dPKWLapinXbze7Fm2pxffLRExg3ppBlm6pcP08+5dhJQ1774BkzUsxZ\nFJcf8tIzj2RMSQEvL99L25DlVZMUvkhPjYxef7fG9XX7u2+cy2cuOY6SojxeXr6X6/6ylIde2+Yq\nrZrGTv709MYY89sN3VUua4qfef+x/OZr7+WCU6a7LhdiOXLyGNfPSG2cHRNxztyp/OxLZzJrailL\nNlbyi/tXul7F7ijDz8cjcnJyjLfK3UjHt5jVgdzPeeQVdeZ2J8vJcVrSg19zKzc3hy9/+ATycnN4\n4BXtfjS1B42svNxczps3jY6uXt4x+Bx/0rjUu1Ej3H7s4qJ8Ln/vTDq6enllhftR9HB4Ktspx04i\nJ2foKm/JKCrI49Izj+S3Xz+Hz12mKBtVGHMb2ETMnDyG9Tvq+PPTG6xZrOa9c6dw6VkzKcg333Va\nkJ/LjMnuVlm0NYxHrq0p40dx/efew4fOnklVQwdVLnt9YnWtm6rD2Pxc26SsDuRumagpN7Z2s3l3\nvYHcwPtPG9qaTHVq3RHlY/joubNoaOniibe2p5RWNBObPpwf7gZfZHDQm0mpfMb3nz6DstGFvPbO\nPppTGKMQuUTLRhVy3BFj2bG/KeUtNQvy87j4tCP49dfey5c+fIKrNL79iZOZO3sC63bUccczG6NG\nP/vXtW6yBR6LDd3rXlUK8vNy+fTFx/Lf/3aK6zTGlLgfADuSE2e52//A6LoGaehZyepA7nfP1T/e\n3D5k9y1XQSDGn5i4ED98zlHMKB/NW2sP0tGVfDd2zMFuBvJVPq6EE2eNZ9t+c1NL3DJ5CeXgtH4/\ncs5RdHX38fIy9+vAR1/bpx1fTgiMPSbJz8s9VJlKVkF+Lt/5xMmcOGs8a7fXDgrmqbNvZQhnqdaM\nEuOiP2m2u5bvKI/nVxcXept+IqRr3VIGdr7kqKml7KtuZbGhPbEHM9Hyzc/L5UsfnpPCSPqhf2hq\nG8bISm9u2PrsMXJuLjp1OuNLi3hj9X4aXQ4si/6MkVXeVm8zO97BlZwcCgvy+M4n5zHnqPGsebeW\nO581s9VtOHnr2NAit9XxR/q/lHQmkEDuhoFA8MkLj6YwP5enFu6ks9vcil6mzZ5WxmXhncJsctpx\n5Z52yfmpID+Pj75vFj29/bzgcm366Ct08vhRHFE+2qqFYYoK8vivT87jhJnjWLWthsUb3E1jGlwp\nc7uiYSymUpo+cfTIB8ViZ33Tzm4Pi6XjdEkgd8HE/TV+TBEfOnsmTW3dvBTVhWrjPXJFZLU4A0yV\nswX5uTHWOM8c5508jfJxxSxY626BmMEBLtIq91v0119UmMfV/3oKx88Y6zq95xbvHpi+hTdQbhpW\n9kqndCxtbWuvma2yJpDHmrvqdlenRhNrkefkcPnZRzF2TCGvrNhLfXirQ68H3rhRZHAhBJOFgNvu\ndZNlhFflTX5eLh9732x6+9y9weC/Ou241Pa590pRYR7XfNr9QKln3t41YJ96U49ubGBrKMugU5wx\n7IsaHvnNQ2uMbQZy7wtbDgXeVBQV5vHJC46hu7efJxc4a6XnZtA3EvOGN1gIRC+Ak4nOmTvV9aIk\ngysYs6aWGu12di1GFtwOSJo0tpiSonz++tIWdHi7Vhs+okidrZUYV9JwUWZQ2BjeropmfnH/SrZH\njXR225pqauvm1ifWp/RsO/LVnnvyVGZOHsPSTZXsqmh21aKQsis56dhf24Tc3JzDm+AkaXDXZE5O\nzpeaOrkAABtuSURBVKHFYfxk8lqdPmk0377yJEIhuP2pDVTWt2dUi9yoYFzywqWsCOSTxhbz2UuO\no6W9h98+vDrlPa0vOnU6e6tbueufm4dMH0tUpLzJzcnh397v7FX7jzfedVfQBajssiKrZveHNJnY\nEGecMNnV38WqpLrdhtFmc2ZN4PMfUrR19nLL4+toM7gevO+VAkufE5s8L0F7Fu7mk6fjKvJ/kl2a\nfPDMIzmifDR3PLOR+1/ayp6qFs450d1gqX//4PFUNXSwdnstTyzYkXLe5syawKnHTmLt9lqqGjpS\nTs8WM8pjrGhlRSQPDrfd4bEKSC92mLLB+fOmU93QwQtL91Bt8P4JWpAJoniVAr+3io43licnJyfp\n6yId9cGsaJFHTuSJsybwv188kxnlo5m/+gC/f3SNq/Ty83L55pUnMXXCKF5e7n7RjmifuvgY8nJz\naHKx+taWPQ1G8mBarDmi6RjxOpJMG0UcS6yyJh37IvvlyguO5qw57nov4vG9RW4pk6clXlpWjOeI\nwdJs2RPIlVK5Sqm/KKWWKKXmK6WOMZV2dPCYPK6E6z/3Hs5Q5XSnsNbz6OICrv7UPEYXm+nUmDZx\nNBefdoSrvz1QY27d9mxgtmvQWFKey7QKTPSnyc3J4SsfmWM0/c9ccqzR9JJ1fgqLHgXFOXNj94p+\n9gPHpTknibF1ARtrAjnwcaBQa30u8EPgJmMpDyq/igvz+cbHT+LYI9zPXwVn04Bvf+JkV38bKwB8\n7Dx3A5tKR8VeGOW6z57mKj0vFeT7f8nFi2du9p8OUqst01rkg28h05ueDN6IKJ3u/cHFlBhcvvTK\nC442lpapq+jj58+OOwZkyvhR/OxLZxp6p8Pec3xq0zC/eeVJhnJilv+l6mHvA14G0FovB84wlXBx\n4dAbPCcnx8jOOGqmu0X5Y60v7XalsktOj70F5wlHucubCZ8btOd3xIzy0fzLubNG/PuLTp3u2eCs\n/DiViR9/PvlL7tIzj4z5+lFThq6v/ZlL0tfKiNVRYEOL3O3Ws7HY2P0a715M1nAVxHPmTgFgbtSG\nIEdNKeW2a84fcFxRVLl39olTRnzP2dPKOH/etBGPKx0Ve6zFMUc4S9Hm5Ay81iePK+HGb5w75PiP\nvW/4hsu4QXuJ33PdxZwXlb/Tjy/nQ2cdXnVy0tjimOl8Niov37zyJO76/kUDfh9rq9OT45Q9o4tj\nl9EfeE/y37vJRZpybBnQoZS6G3hSa/1y+Oc9wGyt9ZCI99HvPZtUpn/+5bM4MsZWgq0dPfzXHxcl\nlc/vf+ZU5syaMOC1L//mzaTSmDt7Atd8ah55MSaN76poZtHGSt4aYZvIM06YzORxJZQU5fHBM46k\nMM6iLY+8/i6vvXN4S8yr/3Uef3xiPTMnj+Gqj81lYlkRa7fXsnVPI5eddSTT4iwnuXVPA08u3MEX\nLjuBI8pHc+2fl9DQ0sUR5aP538+fwSNvvMuCtQfJz8vlzmsvHLGletXv5tPXH+LOay+iuqGdaZNG\n09zWTU9vP6FQiMnjR9Hb18/zS3ajZo5nTpxKSXNbN509fSxad5BTjp3Eko2VvLXmAOeeNJUvffgE\n9N5GHnptG5+55DjGlBSwr7p12IVkaps6qG7o4JbH1x+qbJWNKuDME6bwxur9fPfTpzCmpID/+9s7\nzJwyhp996ay4aRWNKuLGB1ZSNrqAz3/oBHJzcli7vZZbn1jPpy4+hsvOmsl//nY+4BTOV310bsx0\nmlq7uOHBVZx2XDm7KprZfsCZQlk+rpgvXT6HaZNG09nVy8J1B3kpPGbj9mvOZ9SgQqe5vZtrbn0b\ncILApt2Hx1aMHV14aHzGlPElzn70m6v49w8cxwfOiF1ZeW7xLp5etOvQzxeffgTzVx9gTEkBreHR\n4x86e+aAcSR//u8LYs4bv+3J9Ye2Wj3tuEkJbbv6m6+9d0ireX9NKz+5d0XM46M/44SyIuqbu5g9\nrYxvXXkSE8piB4Eecvjab9449POM8tHsj3qU9dMvnsmMyaOprGuHnBwmjyuJ2eu0bV8jzyzaSWV9\nO//96VN5fuluVmxxtuH95sdPoqWjh1dX7OWck6YybeJozhxmtkJvXz9VDR0cEWMdha6ePrbta+S4\nGWMpLsynvrmTwoK8uI2E5rZuNuxpYNn6g1z9qVPIz8vlgVc0b605wB++/T7GjnGC6YotVTS1dXPJ\n6TPiVgi7e/qob+mKu/ZBVUM7b646wKnHTkTNHJ9QxbKqwdkataQwP+5gzYaWLl5avodLzzySSWOH\n9qp19/Rx+zMbueiU6ZwebpFv3dPA9gNN5OXlcNlZM3lnazX/eHN7Qj21a7bVkJubQ09vP8++vYur\nPzWPSWNL6Oru48FXNUs2VjJpbDHXfvY07n5uE5+7VDEzRsU+oqaxg4XrDtLQ0sVXPjKHb9y0gO7e\nfsrHFXPqseWUFOWRl5fL+DFFXHnJ8TFPmk2B/CZgmdb68fDP+7TWsUsQIYQQQgB2da0vBj4MoJR6\nL7De3+wIIYQQ9rNpHvnTwAeVUovDP3/Jz8wIIYQQQWBN17oQQgghkmdT17oQQgghkiSBXAghhAgw\nCeRCGKCU8m/1ECHEAEop+xYZ8JD1gVwpdaLfefCKUurjSqlT/M6HFyI3klLqUqWUnestGqKU+jbw\nZaVUZm+QnsGUUkVKqZFXTQkwpdSEkY8KLqXUuUqpK5RSJVrrrBr8ZfVgt3DBuBi4Rmv9ls/ZMU4p\n9TqwD/iG1rrT7/yYppSaBTwI3AM8kKk3l1LqNaAf+B+t9Wq/82OaUur9wKeA54AFWuuMWtxfKfV1\n4CvALuBZrfVDSqmcTLlelVJ5wC+B04GlOAtvbfA3V+YopcYAtwDHAJVANXCd1rrL14ylkbUt8nCL\n7nPABOBqn7NjhFJqvFJqfPj/ZwNjgZOB9/uaMYOUUtPC/+YCVwHjgTnA2X7my4SoXoYzlVLvC/9f\nATuB3cBFSqnUFnO2jFLqV8D3gXeAj+Hsg5AxlFIfAj4CnI8TDP5PKZWXQUE8F7gWKMSprMwAhq6X\nGmynAxO11hcD/w68F8jo3pXBrArkSqm5Sqk/h3/MB0qBfwGalFLf8i9nxjwAXBwOCE04n+03ON2y\n3iwsnkZKqVOB3yilTgsvrfsK8EWgFThTKVXmZ/5SFVW4/y9webirsgYnuN0KnAbMCxeegaeUKgLG\nAVdrre8FXsP5vIEWrlBH7rcxwN5wj9g7OAtRzYz7xwERqVCH78NPAo9prfcDqwDzu5GkyaDKdGRx\n+QZgl1KqGCgDKsL/Zg3bCpwTga8qpS7WWvcATwGbcALg/4u0ZoNIKXUuTq3/EuAoYDtQrbV+InzI\nJ/zKW6qiAtencYLZZeEbbpXW+h1gNU7hGH9h8oBQSn0MmItT479Qa12vtW7QWm/CCQIXEeBAMKgy\nnYvT01AV/vkCwN3OPnZ5ALgw/P/5HO5lOB1o1lrvivlXARFVoX5P+KX/BNaE/z8WiL0YfQAMqkxf\nppSaGH5M8L1wZew0oEdrvRGyZ9Cbr4FcKTUqqoY1A6eg+AvwJwCt9Q6tdZ/W+k1gGfBT3zKbpHCN\n8ayo0czjgf/C2QXwfKAo6qL8A/BFpdTxPmTVNaXU6UqpMq11f7j1VgD8Gacn5fKoZ6mvA3XABUqp\nQK2fr5T6sVLqv5VSF4Rf2gF8BlgJnDLoO3sAmAecEX4uGUSRyvT7tdYdwM1a6yal1FjgHJwxDwS1\ndyW6Qq2UOkZrXae1bgn/+svAG+Hj3h9u4QVGjAr1B5VSuVrr9UCfUmoyTkXzFaVUjlLq5CBep1GV\n6cjniQ7wFwKPKqVKlFI/A2Jvw5hhfAvkSqmfA/cD/xvu5qoAXtZafxuoUUpdGz4usozs3cBZNo8s\nDd8cxUqp3wM34jyvuT38+VZqrR/A6Z48Hzg0kltrvRinZRB7ex/LKKWmK6WeAX4L3KuU+o/wwJKb\ngCdxBpxcGOlB0Vp3A4uAeqDdp2wnLPw9liml7geOwAnef1BKna+13qS1Xgm8BYwG3hspDLXWVTjf\n+6taa3P7dXpomMr0bQBa697wodNxBp62KKVuBb7nQ3aTNkKF+tzI6+F/xwFdSqmHgW8CRbHStM0w\nFeoxwIcAwtfjDJzxHHNxypvzMLe9uGeGqUy/A5yswrNiwoPe3o8zluM5oFtrvdWPPKebL6PWlVIf\nx6k1Xgtcj/OM4xGt9ebw708DngFO0lq3hAef9CmlRts+YlYpVQrcC3xNa90QDurTtdb/HnXMTTij\n1f+utR55v0bLKKU+B5yttf62Uupi4Abgs1rrPeHfnwFcCWzXWv/Vx6wmTSk1RWtdpZQqAO4Dfqq1\n3qmU+grwVa312VHH/gdOd+yT4cpYoIQr03OAjTi9YI3Ah7TWLyilFgDPaa1/Hz728zjB4R3g+cjr\nNgpXTIpwRmqfAazFeWb6fSBPa12tlLoSZ5OmP2ut14SDQD2wHPit1vp5f3KfOKXUdJzvZDTOd/es\n1vrvSqmpQB9OsJsB/CZcFv0E+BlwF84skiX+5Hxk4e+wFGfsSQfwMvATnBlMi8LHHI8zoHYj8DAQ\nArbgVLKv11oHfjxHotLWIldKnRC+wMAZNblYa30Q54tqAa6ItAy01mtwav9/Df/cF/7XyiCulPqU\nUuoXyhnJfCzOgKDIprbXAe9RSp0X9SdPAu8DygelY23tWCn1FaXUl5VSk3Ba3KOVUsVa6/k43cxf\njTp8Hc6z1dNUQAbxKaXGKqVuA/6mlPpvnO9nH3BMuHvyXqBXKfW1qD97DeeRQcPQFO0WrkwfB1yD\n00V5DaC01i+ED7kG+E64YgrwHuAfwKdsDuJwqJu1AGeswpVa62twgvRtWuvq8DFPA80c7jkaD3xB\na31+JIgHoNv5EmC/1vqDOAH9m0qpo7TWleEgthTo5fD4m/k4ldGvWx7Ep4S/ww4gD7hRa/0szmc8\ndO1prbfhlDWn4Fyf/cAlWuursimIQxoCuVJqtFLqt8DfgV8rpX4KPER4d7Pwl7Eep8YcPUjoa8Dj\nXucvFcpZROJ3wBeAWpwR6D04A6FOU0rlh0eN3oZTOwYgfBN9V2u9JTo9G6e8KKVmKKXexglsJ+N0\nqR4B7OXw4LUbgU+Fu2YJD1R8HviJ1rou/blOTvjxzU+A/ThdqqfjtAa6cEb4zggf+lPgI+Gu9xyt\ndZXW+oZIT5LtXFamHwgf/wOt9VdsLiBdVqjPA6ZorfdprR8Jp5MPhxsQNnFZoT5VKTVBa71Ia31P\n+nOdmBQr081a636t9d7059x/6WiRXwbM1FqfAXwbpzurAtislLoufMwynFpVDzg1Ya11i9b6H2nI\nXyrG4hQEH9Va34pz0c0G7gQ+y+Hn4NXABjg8IEVrvd/mFniUc4D5Wusv43TJleEMCOrHKRgnhae1\nvAnMivyR1rpCa93oQ37dKMKZCvg3rfVOnO9R4TwrPhL4aPi4I4G3tdYhGytd8aRYmX40/H9rF9dI\nsUJ9TfRz1HAFrRfLpFih/l+tdX36c524bKlMeyUdgfxo4Nnw/48FqsLdWzcC31BKnYQTxPuAErCz\nJhxHHfA3nEVrwBnI1a+1fg3QOJ/vZuAHhLtfwwUK4f9bGwzU4UGGfTiFIzhz38/C+dyvANOA3yul\nbsAZrR2IgSXKGdEaGeCVH35k8xmtdWX4kCJga3jw2iPATKXUy8DncQbtBU3KlWmbr1UMVqgt/pyZ\nXqHO6Mq01zwL5FE3x0PAY+H/T8EZcYh25v7dgLPa0K9xprns8Co/qVJK5apBC31oZ2rcnVrrOqXU\n0Tg30NvhX9+OM4CoFvik1voxLKeUeq9S6m/hH/sBtNZPaa3/GH7tMpwA1661Xgb8Cqf7tRG4NAgD\n95RShcDFOIOgDo3KDnclR1ZqOxl4QylVAtRqrX8A/FhrfbHWeqk/OU9JJlemQSrUgatQZ2Fl2lP5\nIx+SmHANPvrmzwFCWuuKqNc+A9yvnDXU/0Nrfaep9/da5MZXzlSHOcAreuBavnOAF4FipdSfgKe0\n1k/hBLtIC8DKWqQ6vK70SuAx5SzIMz/GdzobuFU5C018Hrhda323H3lO1qDPMhX4rlLqEZxnwJHB\nlCGcz7geZ9rOtTjdsZu1s7BNoER9rw9xeFGXAZXpcOH/FZwldH9kc2UaBrSkowNxH07rmzgV6nE4\nq5t9Umu9O43ZdUUp9V6c/Re+QFSFOuqQQxVqYJlSaivOWvjjcCrUrenOczKiKtM1ONNy41WmfxRd\nmVZKnRHE+zAdUg7kUYNj+sI/fwJnRa/IVKQcrXVIKTUOp9Z/Js6Us/Xh2mafjcENBhb+4c/5BZy8\nXwV0Dzr8i8CphBdciL7xwgM1+rFU5PxrZ4rff+HMDz8rOogrZ8nHD+J8f3nAH7TW7/qR32RFf49a\n627lLIxxMvBijOeh/4rzXebiTCHcmNbMpiDTK9MgFeqwQFaos7EynS6uA3nkoovcEEqpecDXcbos\ndyil7tdavxIO4jk4gxWOAk5i0AAT20QCb1QQPxZn9GcZzujIBeHXc4Dc8HF7cVo914VrytHnyNog\nHhEuGO8BPgB8TSn1ba317eFur16coHACzujlu/zMa7LCFZRZwC9wphw9BXwLZwW2WVrr3VGFzD9x\nFiZ6In6KdsnkyjRIhToTKtTZUpn2i6sFYQbXEJWzAMhzwHe01k8opa7HmZz/cFRhMhmYq51pElZS\nzjSOzqif5+LMWyzGeS6zBOcm2qy1vje6YFBRi9UoZ/5pv42FY7hS8kOcCke9Uv+/vfMP1auu4/hL\n3EzFgpmSZVbm2BuLsLCCjSjtD6M1nbpstthmURNKW8KIRuSvaGSrdBSU2ygZCCOzdD8crlVjgfRj\nlUKWHydSkFZrUC1HMFbrj/d53HOvd3vu7sZ2znPfL7jsPmfPPfc893zP+bzP5/v5vj+6GHiuqvZK\n+hbwNLAZB7RLq2pfL5irG4Y8p+Ib/B9xSm6nvFTnh3i50WPY5/5cnG79H67sfbKN5+tI9D3B9V6P\nENPAfVX1aO+92NFrO75W72qzmIaXBt4+Qf1JYFG5eG+EoJbNll7GGIL6hH+ACTBKUG8ANvcLatkE\n5kk6KKjHENPT8Fi9t19Myxasp3VJTJ9sJuzs1ij5ZXiu5iFJG4BfVNWXZGe2G7BR/7o2q2B48bPc\niZX80qraJWk5VozfwRfOIuxDvQ7fSG6qqr/03yRGPaG3FklbcAHJLnyeNlbVJtkpaTVWxCuwH/zi\nk3agR4mk+Xgd7e+xFeViDhU4LSgbgyCb1MzD/advxQH+G20/b/0Mq5iGCOquC+rJJKbbwriq1iVN\nl7S2ORlIej/+w1+A1/Qtw/aHCyWd2RQtPItNJrqwVhpgBjZY+LSk63AwmAb8rJljfBRXZ+/GF9kb\nYGTFa5NGb20w0CGnqpXYIncPfnJ7s+ym9DTwPE7p3YIvuk7QpI3n4CeVm6vqbuCL2NVqGu6U1Gug\ncDVwdrmq+aqquqfN520smieXKZI+J+nqZv7wV/Bik4gteB7ych0qENvd5iDefJ4VwA90yD97OfB5\n7OO/ANiHl5Q9AsyW9Oqyx3hvemGfvMb41PKqklYGhqp6Bq8DnyNpJnbS63mJ3w3MxW50O7CjWf8K\nizYH8fnAVpz9uRhYK+l9eOXEr5tr7Zc4LrwHj9kP4AxE27pxdoZx/eH6Bt1VzaZX4QvrNjzYrsUB\nbgdubgL2MH6w7TfI5oI/gFv77cVL4W7GS1nOwtWV4IE2pbxs7gvVwWVIfXNUP8EBew5Otb4W+JCk\npcBzwM+ral9VbThZxzoBrsFFTDvlqliq6kHsQz0VWAUsl7QemI9bq1JVnbBXnSRiGiKoOyuoJ5uY\nbhMDA3nfoPsKMF/ShfgCeitWjjtwinINsBT7MfdchbpAL+3/DDbcPwM7Cs3BBSV3Seq1p1wNVsbq\nhivbS9Chdakr8ZPN37B71zvxfNXK6kAF7Bj8AXhB7gK1X67KBi9D+mBVfRunMh+oqiuqautJO9IJ\nMMxiGiKoGQ5BPdRius0MDOR9g+6neM5jAT4Bp+MTcxa+ie6oqv90aNABI5T8VOAO3DHp9qqah3sv\nT8Pt8BZV1RN9KbxWpuwG0YiQc8qVro8Dl5c7d32iqhZW01Sig+zGT5/vhhHpx/NwYQ3lZhKdeLrp\nZxKIaYigHgZBPdRius2Mq9itr8hiOi6SuhYXFc3Ci/pvqg64eh0J2XhgE/Cpaqp55d6+5+CWqgur\n5VW+40HS+cA9uBDqNfjcPX5yj+r4IGkxnm/bjG8qn8EB4ZbqgBHIeJB0L17q+DWcSt8CXIRtSPeW\nLUo7SzPHugp36lpfVQ9LWoNNULZW1ceb93WmEv1wNIJ6j6TVwGNVdd/oQr8uIZvx3IinQTb1bb8d\n+E3XHvK6xLir1vsG3VpgW1Wtl3Rutbgb0tEg6XXA1/Gc1PO9YqJGwMzFGYehSAE1gmwm8L0aaabR\neSTNxi5ll2AzkHUDfqQTTAYxDRHUJ/eojp3JIKbbyHifyPsH3fn4Iuv8oBtNk7r7bDV+v8Og+icr\nw3juhl1MQwT1MDCsYrrNHM0T+VAOuhC6wGQR0xBBPSzkvJ04JmwIM6yo5TaOYfISMR1CGIsE8hBC\n64igDmH8JJCHEEIIHSaWeCGEEEKHSSAPIYQQOkwCeQghhNBhEshDCCGEDpNAHsIkQtI3G/etw/3/\ndyVdMGAfSyRd33x/h6Qrj/dxhhDGz5TBbwkhDBGDlqlcxmCBPwt7oVNVtx2HYwohHANZfhbCkCPp\nq8CVuMPWftzVbwbwXtwmdA/2bv8o7gC4C3eRuwjbpZ7ZvOdGYDrurvZv7PW+AAf17cDDuK/2W4Cd\nzbYbcAfBa6rqKUnvGL3PeHCHcGwktR7CECNpHm6L+SZgLg7EU4AZVTWzqoRbh36kqr6M+2PPBl4A\n1gIfrqpLcfBdU1XbgA3ArU0byoPN1yk4gN8JCLcefX1VzcJNXpZImjrWPk/AnyGEoSap9RCGm8uA\n71fVf4F/SHoIOAAsk7QEB92ZOJj3MwN4I7BRUm/bywf8rr9W1RMAkv4M/LjZ/ifgwgnuM4QwgATy\nEIabg4zMvB0AXglsxT3NH2i2nTLq504Fnq2qt4EtU4HzBvyu/aNeH2j+7e17IvsMIQwgqfUQhpsf\nAddLOk3SK4A5OLhvr6rVuGf0FTjIgoPvVOAp4GxJ72q2fwy4f9R7eowWAYfjSPsMIUyQPJGHMMRU\n1UZJbwd+B/wdB9MzgEsk/RYXnG3BqW+ATcAjOLhfB6ySdDrwL6C3bG0bsELSP5vXB/u+xuIgcLCq\n9ks63D5DCBMkVeshhBBCh0lqPYQQQugwCeQhhBBCh0kgDyGEEDpMAnkIIYTQYRLIQwghhA6TQB5C\nCCF0mATyEEIIocMkkIcQQggd5v/pRQWAHhBS4AAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# line plot of rentals\n", + "bikes.total.plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What does this tell us?\n", + "\n", + "There are more rentals in the winter than the spring, but only because the system is experiencing **overall growth** and the winter months happen to come after the spring months." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredtotal
season1.0000000.029368-0.0081260.0088790.2586890.2647440.190610-0.1471210.0967580.1640110.163439
holiday0.0293681.000000-0.250491-0.0070740.000295-0.0052150.0019290.0084090.043799-0.020956-0.005393
workingday-0.008126-0.2504911.0000000.0337720.0299660.024660-0.0108800.013373-0.3191110.1194600.011594
weather0.008879-0.0070740.0337721.000000-0.055035-0.0553760.4062440.007261-0.135918-0.109340-0.128655
temp0.2586890.0002950.029966-0.0550351.0000000.984948-0.064949-0.0178520.4670970.3185710.394454
atemp0.264744-0.0052150.024660-0.0553760.9849481.000000-0.043536-0.0574730.4620670.3146350.389784
humidity0.1906100.001929-0.0108800.406244-0.064949-0.0435361.000000-0.318607-0.348187-0.265458-0.317371
windspeed-0.1471210.0084090.0133730.007261-0.017852-0.057473-0.3186071.0000000.0922760.0910520.101369
casual0.0967580.043799-0.319111-0.1359180.4670970.462067-0.3481870.0922761.0000000.4972500.690414
registered0.164011-0.0209560.119460-0.1093400.3185710.314635-0.2654580.0910520.4972501.0000000.970948
total0.163439-0.0053930.011594-0.1286550.3944540.389784-0.3173710.1013690.6904140.9709481.000000
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "season 1.000000 0.029368 -0.008126 0.008879 0.258689 0.264744 \n", + "holiday 0.029368 1.000000 -0.250491 -0.007074 0.000295 -0.005215 \n", + "workingday -0.008126 -0.250491 1.000000 0.033772 0.029966 0.024660 \n", + "weather 0.008879 -0.007074 0.033772 1.000000 -0.055035 -0.055376 \n", + "temp 0.258689 0.000295 0.029966 -0.055035 1.000000 0.984948 \n", + "atemp 0.264744 -0.005215 0.024660 -0.055376 0.984948 1.000000 \n", + "humidity 0.190610 0.001929 -0.010880 0.406244 -0.064949 -0.043536 \n", + "windspeed -0.147121 0.008409 0.013373 0.007261 -0.017852 -0.057473 \n", + "casual 0.096758 0.043799 -0.319111 -0.135918 0.467097 0.462067 \n", + "registered 0.164011 -0.020956 0.119460 -0.109340 0.318571 0.314635 \n", + "total 0.163439 -0.005393 0.011594 -0.128655 0.394454 0.389784 \n", + "\n", + " humidity windspeed casual registered total \n", + "season 0.190610 -0.147121 0.096758 0.164011 0.163439 \n", + "holiday 0.001929 0.008409 0.043799 -0.020956 -0.005393 \n", + "workingday -0.010880 0.013373 -0.319111 0.119460 0.011594 \n", + "weather 0.406244 0.007261 -0.135918 -0.109340 -0.128655 \n", + "temp -0.064949 -0.017852 0.467097 0.318571 0.394454 \n", + "atemp -0.043536 -0.057473 0.462067 0.314635 0.389784 \n", + "humidity 1.000000 -0.318607 -0.348187 -0.265458 -0.317371 \n", + "windspeed -0.318607 1.000000 0.092276 0.091052 0.101369 \n", + "casual -0.348187 0.092276 1.000000 0.497250 0.690414 \n", + "registered -0.265458 0.091052 0.497250 1.000000 0.970948 \n", + "total -0.317371 0.101369 0.690414 0.970948 1.000000 " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# correlation matrix (ranges from 1 to -1)\n", + "bikes.corr()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAe4AAAGXCAYAAAB1OrNfAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xe4XFXZ9/HvnEMgCUmooQSEUG9AAoqUEOmEBwSlK6AC\noQjJCw9NLHT04RUVlZcHkUjvAWkiXUEgEJAWSmg3LUEwlCRI+gkhZ94/1hozOSQkOXNm7dmzf5/r\nmmv2mdkz99pzzpl7r7LXKpXLZURERCQfWrIugIiIiCw6JW4REZEcUeIWERHJESVuERGRHFHiFhER\nyRElbhERkRxZIusCNAhdEyci0jhK9XrjoaX+NX3fDy+Pq1vZFpUSdzS01D+z2MPL4wCYNW1yJvGX\n6rUMADNmtmUSv2eP7gC0zZieSXyA7j2XBmD203/JJH63LfbMNH51GdrfeiqT+C3rbAnAmxOmZhIf\nYN2+vQGY/dG4TOJ3W6k/AHPeeSGT+ACta26aaRkq8WXBlLhFRKQwWjOvL9dOiVtERAqjtZT/zK3B\naSIiIjmiGreIiBSGmspFRERypBmaypW4RUSkMFTjFhERyZFmqHFrcJqIiEiOqMYtIiKFoaZyERGR\nHGmGpnIlbhERKYxm6B9OmrjNbH3gSmA24fP7LnAMsA3QCvzO3W8xs+2BM+M+veJ+7wJ/AvoAPYHT\n3P1vZvY94HhgFvAGcBTwfWB3oAewDvArd7861XGKiIjUS+qTj8HAP+L9WcDeQH933xbYCTjNzJYB\nNgK+7+47ArcB3wbWBlYAvgUcBCxhZisAZwM7xvf4BDiasNpXH3f/FrAn8NNkRygiIg2rtVSq6dYI\nUifuy4HJwH3AscBywNfM7CHgXkILQH9gPPC/ZnYlsCOwhLu/AvwRGAH8IZZ9LeBld68sKzUS+HLc\nfj7evwd0r+9hiYhIHrSWars1gtSJey/gUXcfDNwCHAb8PdasdwFuBt4CLgGGuPthhCTeYmYbA73d\n/ZvAEOBCYCywkZn1jO+/A+BxW2tsi4jIPFTjXnzPAD83swcJfdH7AdPNbCTwFNDu7tOA64BHzewu\nYCKwKqH/egcze4TQ132Gu08iNLk/ZGZPAMsDw2Os6sStJC4iIk0h6eA0d38b2LbDw8/NZ78fLuAt\nvj2ffUcQms+rXV31fBuhf1xERAquUZq7a6HLwUREpDAapbm7FkrcIiJSGM1Q426Ga9FFREQKQzVu\nEREpDDWVi4iI5EgzNJUrcYuISGEocYuIiORIMzSVa3CaiIhIjqjGLSIihaGmchERkRxphqZyJW4R\nESmMeta4zayFsHrlJsAs4Eh3f6vq+X2AUwnrZ1zh7sPn+0YLUSqXtf4GWoRERKSR1C293rTSRjV9\n3x/w0SsLLJuZ7Qt8090PN7OtgFPcfe+q58cCXwWmA68Am7v75MUtgwaniYhIYdR5Wc+vA/cBuPuT\nwOYdnp8NLAv0IJycdOokQk3l0axpi33S02WW6rUMAENL/TOJP7w8DoBH3pqYSfzt11kRgJltbZnE\nB+jRvTsAbTNnZhK/e48egD4DgLYZ0zOJD9C959IAzJrycSbxl+qzPADTZmTzOwDo1TPbv8XK32G9\n1HlwWh9gStXPc8ysxd3b48+/BZ4l1LhvdfcpHd9gUajGLSIihVHnGvcUoHfVz/9J2ma2BnAssCbQ\nH1jZzPbvzDEocYuIiHSNUcDuAGY2EHix6rnuwBxgVkzmHxGazRebmspFRKQwWup7OdjtwC5mNir+\nfJiZHQT0cvdLzexq4HEzawPeBK7qTBAlbhERKYxSHTu53b0MDOvw8OtVz58PnF9rHCVuEREpjJYm\nmDpNfdwiIiI5ohq3iIgURqk1//VVJW4RESmMevZxp5L01MPMhpjZuYuw3w5mNiJu3zqf5/c3s7Pq\nUUYREWleLa2lmm6NIHWNe1Gnd/vPfu6+X53KIiIiBVNqUVN5Zww0s/uBvsDFwDjgf4A2YBJwOFUT\nzJvZB+6+ipkNAv4f8Enc95n4/LnA14AVgBfi5O6PAUe5+ytm9g3CpO/HpDpAERGRekl96lECZrv7\nrsA+wEnAH4F93H0H4BHgdOatmVe2Lwa+5+7/BYwBSmbWG/g4PrYF4aSgH3AZcGh83eHApXU9KhER\nyYVmaCpPnbjLwOi4/SGwBjDZ3d+Pjz0KfHkBr13F3d+I2yPj/UzCfK83AMOBXoRWhJuBPc2sL7Ca\nuz/ftYchIiJ5VGot1XRrBFk09lfXpicCfcxslfjz9oAv4HX/MrNKUt863n8DWN3dvwucRlwqzd2n\nAw8BFwDXdmXhRUQkv0qtLTXdGkEWfdzViXsO8APgNjNrBz4GhgADqvar3B8JXG5m0wh94S8DTwFn\nmNnfgQ+AJ4F+wDuE5vHHgKH1PBgREZGUkiZud7+6arsNWDv+OKjDro/EG+7eL96PBgbO5223XEC4\nVuDmzq53KiIizadR+qlr0ZQTsJjZsYRBad/OuiwiItI4Si1K3A3J3X8P/D7rcoiISGNpaZB+6lrk\n/whEREQKpClr3CIiIvPTKJd01UKJW0RECkOJW0REJEfUxy0iIiJJqcYtIiKFoaZyERGRHGnRddwi\nIiL50SjzjddCiVtERAqjGaY8LZXL5YXv1fz0IYiINI66Zdfn9v6vmr7vv/rnv2ae+VXjFhGRwtDg\ntCYyY2ZbZrF79ugOwCNvTcwk/vbrrAjA0FL/TOIPL48DYNbUTzKJD7BU72VDGaZNziZ+r2UyjV9d\nhqz+Fyr/B20zpmcSH6B7z6UBuHXM+Ezi7zegHwCfvf9GJvEBllh1PSC730Pld1Av6uMWERHJkWbo\n487/qYeIiEiBqMYtIiKFofW4RUREcqQZ5ipX4hYRkcJohlHl+T/1EBERKRDVuEVEpDB0OZiIiEiO\nlFqUuEVERHKjGQan1e0IzKy/mT3R4bGVzeyiGt93czO7srbSiYiI5FPSGre7fwgckzKmiIhIRdP3\ncZvZM8BuwGRgErCduz9vZqOBG4H9gc+Ake7+UzM7GxgE9ASOjO/RAlwNjAFuAm50963N7EXgYWAT\nwupcewFTgYuArwEfAGsB3wK6A1cAM2M5ZsT3PhbYB1gamBi3rwKud/d7zGxD4Dx3/2YtH5KIiDSH\nZkjcCzuCOwiJexvgbWCXmAzfJiTJrd19ELCeme1BSMAvu/s2QBvhxOB6YJS7/5p5l2rrDdzg7jsA\n/wK+AewJLO/uWwFHAF+K+54HnOnug4EHAMysBCwPDHb3gTHWFsClwKHxdYcDly3uhyIiIs2p1NJS\n060RLKwUtwF7ALsCpwGDCcn1RuBJd58T93sU+HLcfr3q9ZsCfQlJen6ei/fvEmrVGwBPALj7ROC1\n+LwBT8ftkfH5MjAbGGFmlwGrA0u4+8PARma2IrALcOdCjlFERAqi1Npa060RfGHidveXgbUJNdl7\nCAl4L0Jy3srMWmPNdzvmJuz2qrd4FvgmcLCZDZhPiI4Lmr8EbA1gZssB68fHXyHU+ql6fgCwl7sf\nCBwXj6VSo78WuBC4v+rkQkREJPcWpd7/EDAh1nAfBj509xeBPwGjgCeBse7+57h/dTIuu3sbMAy4\nBliSzyfr6n3vBiaa2ShCE/cM4FPgRODHZvYgsGN8jzeB6WY2ErgOGA30i+91FbAvcPkiHJ+IiBRE\nqbWlplsjKJXLC8qj6ZmZAV9x95vMbAVCDXwNd5+9mO+zKnCNu++yiC8pz5jZtpil7To9e3QH4JG3\nJmYSf/t1VgRgaKl/JvGHl8cBMGvqJ5nEB1iq97KhDNMmZxO/1zKZxq8uQ1b/C5X/g7YZ0zOJD9C9\n59IA3DpmfCbx9xsQ6h6fvf9GJvEBllh1PSC730P8HdRtQvF/nnJYTUlvjXOvzHyy80abgOVd4Fdm\ndgLQCvy4E0l7X+Bs4OiuL56IiORZo9Saa9FQidvdZwB71/getxEG1YmIiDSdhkrcIiIi9aQat4iI\nSI40yrXYtVDiFhGRwmiGGnf+j0BERKRAVOMWEZHCaIYatxK3iIgURjOsx63ELSIihdEMg9PyfwQi\nIiIF0lBTnmZIH4KISOOo27SiE84/sabv+74nnq8pT0VERFLR4LQm0ggLG8xsy2Zxhx7dw+IOWS3y\nUVngI6tFTmDuQieTps7IJP4KvXtmGr+6DNOu/3km8Xt970wA2mbOzCQ+QPcePQB4e+LUTOKvvWJv\nAN77eFom8QFWX74XAGMz+gzWip9BvTRDH7cSt4iIFEZLa2vWRahZ/k89RERECkQ1bhERKQz1cYuI\niORIPRO3mbUAfwA2AWYBR7r7W/PZ7xJgkruf0pk4+T/1EBERWUSllpaabguxN7Ckuw8Cfgr8tuMO\nZnY0sDE1XIasxC0iItI1vg7cB+DuTwKbVz9pZoOALYE/UsO16krcIiJSGKXWlppuC9EHmFL185zY\nfI6ZrQqcCRxLjRPMqI9bREQKo86D06YA1Reit7h7e9zeH1gRuAdYBehpZq+6+zWLG0SJW0RECqPO\nE7CMAr4F3GxmA4EXK0+4+4XAhQBmdiiwQWeSNuQgcZvZPsA/gKWAEe6+dcZFEhERmZ/bgV3MbFT8\n+TAzOwjo5e6Xdti304PTGj5xA8cBrxCG1ouIiHRaqaV+M6e5exkY1uHh1+ez39W1xKlb4jazZ4Dd\ngMnAJGA7d3/ezEYDVwEHEs44bnT3C81sY8LQ+VZCP8AwYHngK8DVwMFAXzO7HVgVeNHdjzKzLxFG\n6PUAZgJHxeO6E5gI3OPu59XrOEVEJEfqmLhTqWdj/x2ExL0N8Dah+WBD4A3g24Rh89sBe5vZ+sBG\nwA/dfTDwK+Awd78beB44BJhNGLE3BNga2NnM+gK/Af7X3XckJP5fEk4IVgZ2UdIWEZH/aGmp7dYA\n6tlUfhtwOvAOcBqhybsFuJWQbP8e91sWWA8YD5xhZjMJo/Imz+c933b3yQBm9hHQk3Ah+6lm9hPC\nEPtP475j3f2zOhyXiIhIZup2+uDuLwNrA1sQhr/3BvYCXgNedvcdYy35WsLIuwuAs9x9CDCmqmzt\nhOZzmH9n/mvAT+J7HQvcVPU6ERGR/yi1ttZ0awT1rvc/BEyIHfYPAx+6+4vAg2b2WOwHXxv4F3Ad\nYQj9PbFcq8b3eJzQx70cn0/cZeBk4Cwzexi4HHip6jkREZG5WlpruzWAuo4qd/efVm2fWrX9G0Jz\nebXz463je5wBnBF/HFT1ePVlYbvNJ/yg+TwmIiJF1iDJtxZ5uBxMRESkS9R5ApYk8n8EIiIiBaIa\nt4iIFIeaykVERHJEiVtERCQ/1MctIiIiSanGLSIixaGmchERkRxR4hYREcmPRpm2tBbq4xYREckR\n1bhFRKQ4mmBUealc1locaEESEZFGUqrXG3/6xK01fd8vufV+dSvbolKNW0RECqOkwWnNY/bTf8ks\ndrct9gSgbebMTOJ379EDgFnTJmcSf6leywAwaeqMTOIDrNC7JwBDS/0ziT+8PA6AY1qyiQ9wUXso\nw4Qp2fwe+vYJv4NpM7L5PwDo1TP8L0w4/8RM4vc9MSyQOOuBKzOJD7DU4MMAmD7inEziL33Q6ZnE\nzRMlbhERKY4m6ONW4hYRkcJQU7mIiEieKHGLiIjkSBM0lef/CERERApENW4RESmMZpjyVIlbRESK\nQ33cIiIiOdIEiVt93CIiIjnScInbzJYysyOyLoeIiDSfUktLTbdG0BilmNeqwJFZF0JERJpQS2tt\ntwbQiH3cpwEbmdmZwABghfj4ce7+kpm9CYwC1gceBJYBtgTc3Q8xs6uAWcC6wNLAIe7+euJjEBGR\nRlRqxPrq4mnEIzgHeAXoCTzo7jsBRwMXx+fXJCT3bYHjgIvcfStgGzNbhrBE54vuvnN8r/MSl19E\nRKRuGrHGXVnrdACwk5kdEH9eLt5Pcvf3AMxsuru/Fh+fDHSP23+L96NQ4hYRkQrVuOtiDqFcrwHn\nu/uOwPeBq+Lzi7II+lbxfhAwpqsLKCIi+VQutdR0awSNWOP+CFgS6AV8x8yOAvoAZ8XnqxP3grb3\nN7MhcXsIIiIi0BQ17oZL3O4+C/jqFzzfbwHbmwGYGcDP3H10HYspIiKSiYZL3CIiInVTKi18nwbX\ndInb3Q/LugwiItKgGmQSlVo0XeIWERFZkEYZYFYLJW4RESmOJkjc+T8CERGRAlGNW0REiqMJatxK\n3CIiUhxK3CIiIvnRDIPT8n8EIiIiBaIat4iIFEcT1LhL5fKirNnR9PQhiIg0jrpNbzb7o3E1fd93\nW6l/5lOvqcYtIiLF0QQ1biXuaPbTf8ksdrct9gRgZltbJvF7dA/LmM+aNjmT+Ev1WgaASVNnZBIf\nYIXePQE4pqV/JvEvah8HwNBSNvEBhpdDGT6Zls3vYdle4XfQCH8HE84/MZP4fU88H4BZD1yZSXyA\npQaHWaNn3HRuJvF7HnBKJnHzRIlbREQKoxlGlStxi4hIcWiRERERkRxpghp3/o9ARESkQFTjFhGR\n4miCGrcSt4iIFIcSt4iISH5oVLmIiEieNEHizv8RiIiIFEjD1bjNbGNgOXd/NOuyiIhIkynVb6px\nM2sB/gBsAswCjnT3t6qe/xZwBvAZcIW7X9aZOI1Y494f2CjrQoiISBMqtdR2+2J7A0u6+yDgp8Bv\nK0+YWTfgd8AuwPbAUWa2UmcOIdMat5n1AS4DlgH6ATcChwKfmtlooCdwDjAHeAs4Gvg+8C2gO7Aq\ncAGwF7AxcLK7/8XMXgDeANYAXgCOcnetACYiUnB1Hpz2deA+AHd/0sw2r3puQ+BNd58MYGaPAdsB\ntyxukKxr3OsAI9x9V+C/CEn7SuC37v40cCmwj7vvAPwLGEJYgrOXu+8B/AoY5u77AkcBh8X37Q8c\n6+5bAssSzoJERETqqQ8wpernObH5vPJc9UpOUwmV1sWWdR/3R8AJZrYv4WC7EdZhLZlZX2AV4GYz\nA+gB/A14E3guvn4y8Grc/oRQCwd4xd0/iNujgPXrfBwiIpIH9a1xTwF6V/3c4u7tcXtyh+d6A//u\nTJCsa9wnAU+4+8GE5oIS0E4o1yTgPWBPd98R+CXwQHzdwpq91zOzypnMIGBMVxdcRETyp1wq1XRb\niFHA7gBmNhB4seq51wi5aTkzW5LQTP5EZ44h6xr3ncCFZrYP8DKh6eAF4FxCTfp44J7Y1DCZ0JTe\nn7mJu8y8Sbyy3QZcY2YrA4+5+z11Pg4REcmBcn1HO90O7GJmo+LPh5nZQYTu3UvN7CTgfkLl9HJ3\nf78zQTJN3O7+MDBgPk/9pWr7bx2eu7rq9fcTPgTc/XnimQ7wb3ffq+tKKiIi8sXiIOhhHR5+ver5\nu4C7ao2TdY27XjSCXEREPqe9zlXuFJoycbv7JlmXQUREGk/+03aTJm4REZH5aW+CzJ31qHIRERFZ\nDKpxi4hIYZTVxy0iIpIfzdBUrsQtIiKF0QR5W4lbRESKoxlq3BqcJiIikiOqcYuISGFocJqIiEiO\ntC98l4ZXaoazjy6gD0FEpHEsdBmuznr/k+k1fd+vuuzSdSvbolIft4iISI6oqTxqf+upzGK3rLMl\nAG0zZ2YSv3uPHgDMmNmWSfyePboDMO36n2cSH6DX984EYMKUGZnE79unJwCfTMsmPsCyvUIZhpb6\nZxJ/eHkcALeOGZ9JfID9BvQD4NrR72US/+DNVgfg729OyCQ+wE7r9gWy+z1Ufgf10gyjypW4RUSk\nMJqhe1iJW0RECqMZBqepj1tERCRHVOMWEZHCaIKWciVuEREpjvYmyNxK3CIiUhj5T9vq4xYREckV\n1bhFRKQwdB23iIhIjjRBF3d9msrNbIiZndtF7zXCzLp1eGxzM7sybt8a7weY2bZdEVNERJpTO+Wa\nbo2gXjXuLjs6dz9oIc/vFzf3A94HHu2q2CIi0lyaocZdz6bygWZ2P9AXGA6cApi7f2pmvwReBcYB\npwJtwJfifjsBmwIXuPtwMxsHrA+sBVwBzAQmAdMBzOwDYDNgCNBmZqOB37v7VvH5m4DfuPvTdTxW\nERGRJOo1qrwEzHb3XYF9gBOYtxZevb0asC8wDDgd+D7wDeDoqn1LwHnAme4+GHiAucu+ld19PHAl\n8LuYoGea2YZmtjzQX0lbREQgDE6r5dYI6pW4y8DouP0h0LPD89Xrmb7k7nOAycBb7v4Z8AnQvcNr\nDKgk4Pk1h5eq3vdSQg38IODaTpRfRESaULlc260R1PM67o6H2Ab0M7MS8JUv2G9BXgG2idsD5/P8\nHOYezy1ApbZ/3SK+v4iINLlmGJyWKnGXgV8D9wB3Ax9XPb+gJvSO2ycCPzazB4Ed5/P6Z4FjzWx7\nd58FPAJ86O6fdMGxiIiINIS6DE5z96urttsIA8sArprP7o/E/V4jDEwjJtuN4nblteOAHeYTq1+8\nv4dwYlDRQmgyFxERARqnubsWTTkBSxzNPsHdH866LCIi0ji0yEiDiqPZRURE5jGnPesS1E6LjIiI\niORIU9a4RURE5kdN5SIiIjkyR4lbREQkP5qhxq0+bhERkRxRjVtERAqjGUaVK3GLiEhhNENTuRK3\niIgURjMMTiuVm+AguoA+BBGRxlFa+C6d88AbE2r6vh+8Xt+6lW1RaXCaiIhIjqipPHpzwtTMYq/b\ntzcAbTOmZxK/e8+lGyP+zJmZxAfo3qMHANNmZFOGXj1D/ElTZ2QSH2CF3j0BuHXM+Ezi7zegHwBD\nS/0ziQ8wvDwOgNkT/plJ/G5918g0/jxl+GhcNvFX6l/X95/Tnv8GViVuEREpDA1OExERyZE5+c/b\n6uMWERHJE9W4RUSkMNRULiIikiManCYiIpIjzVDjVh+3iIhIjqjGLSIihdEMo8qVuEVEpDDUVB6Z\n2cpmdtFi7D+mK+IuYqzfm9n2qeKJiEjjam8v13RrBF1S43b3D4FjuuK96qAxPmkREZEusFiJ28ye\nAXYDJgOTgO3c/Xkz+xgY5+6bmdmLwMPAJoSkuRcwDRgeH3sX6BPfb1/gx8BsYDxwIHAW0B9YHVge\nONbdHzezbwMnAnOAx9z9FDNbBrg87gdwnLu/ZGZDgaOAj4ClgVsW83MREZEm1Ax93IvbVH4HIXFv\nA7wN7GJmGwL3A21xn97ADe6+A/Av4BvA3kBPdx8IDAOWifseCPza3bcF7iIk9DIwwd0HA4cAfzCz\n5YCzgZ3ivquZ2WDgVOABd98JOBq42Mz6AicAWwG7x/drgl+ViIjUqr1crunWCBY3cd8G7AHsCpwG\nDAb2BJ5l3vVTn4v37wLdAQOeBnD3icCr8fmTgJ3N7GFgENAeH38g7vsSsAqwLtAXuNfMHgI2BNYB\nNgYOj49dAiwX933V3We7ezswijqu7SoiIvkxp1yu6dYIFitxu/vLwNrAFsA9hNr1XnG7Wseje4WQ\nmIm15/Xj40cBZ8faeQnYJz6+Zdx3Y+AdYCzhJGCwu+8IXAw8AbwGnB8f+z5wNfAG8GUz62Fmpfhe\njfFpi4hIppphcFpnRpU/RGjKLhP6sj8EprPg5Fh29zuA983sSeAK4IP43FPAXWb2ALAyobkcYNv4\n2CXAUbGW/jtgpJn9A9gFeB34v8B3Yo37L4Sa9kTgHOAx4K+E/nMREZHkYiXyVjMbaWZ3m9mKC9iv\nxczuNbOjF/aeiz2q3N1/WrV9atVTg+Jja1U9f0rV9gnzea+7mJusATAzgOHufluHfa8Hru/wFm3M\nraVX73sNcM3Cj0ZERIokg8Fpw4AX3P3nZnYAcDphHFZH5wDLsggtxJryVERECiODwWlfB+6L2/cR\nxobNw8z2J1wxdR+LMCar4WZOc/efZV0GERFpTvUcYGZmR/D52vSHwJS4PZW5V1VVXrMxcBCwP+Fy\n6IVquMQtIiKSR+5+OWFukf8ws1sJA7mJ9590eNnBwGrA3wlzmHxqZmPd/a8LiqPELSIihZHBetyj\nCHOKPE2Y12Rk9ZPu/pPKtpmdBbz/RUkblLhFRKRAMkjcFwNXm9mjwCzguwBmdiLwprvfubhvqMQt\nIiKFkTpxu/tM4Dvzefz8+Ty2SGO8NKpcREQkR1TjFhGRwsigqbzLKXGLiEhhKHGLiIjkSDMkbvVx\ni4iI5Eip3CDLlGVMH4KISOOo21LMZ93/Wk3f9z/bdYPMl4lWU7mIiBRGMzSVK3FHsz8al1nsbiv1\nB2DWlI8zib9Un+UBuHXM+Ezi7zegHwBvT5yaSXyAtVcMMxJOOP/ETOL3PfH8TONXl+Ha0e9lEv/g\nzVYHYPaEf2YSH6Bb3zUAGFrqn0n84eVxAIw/Z1gm8QH6nX4xAI9vv10m8Qc9MnLhO9VAiVtERCRH\nmiFxa3CaiIhIjqjGLSIihfFZE9S4lbhFRKQwmqGpXIlbREQKoxkSt/q4RUREckQ1bhERKYw5TTDp\nmBK3iIgURjM0lTd94jazIYC5+ylZl0VERLLVDIm7CH3c+f8tiYiIRJnVuM2sB3AlsAawJHAScAyw\nLNAPuMjdh5vZ/wEOAdqBp939eDO7Chjh7veb2W7AAe5+mJkdC+wDLA1MjNsiIiKAaty1Ggq87e6D\ngAOBrwE3uvuuwK6ERA4wBDgm7veqmbUSatGVT78MYGYlYHlgsLsPJJyUbJHoWEREJAfmtLfXdGsE\nWfZxrw/cC+Dub5rZn4BfmNm+wBSgW9zvMOBkM1sLeILPL/fWEt+jbGazgRFmNg1Yveo9REREVOOu\n0avEGrGZrQ1cCDzh7gcDtzA3Qf8AGOruOwBfBQYBbYTmdIDN4nsMAPZy9wOB4wjHlvm6qSIiIl0p\nyxr3H4ErzOxhoBW4AzjGzPYBXgammtmSwBjgUTObCrwH/AOYHl/7PeB1QnP5m8B0MxtJ6N8ezdzk\nnv9TLBERqVkz1LgzS9zuPgv4XoeHfzOfXS+Pt2rPApvOZ9+du6BoIiLSpLTIiIiISI6oxi0iIpIj\nzZC4izABi4iISNNQjVtERAqjGWrcStwiIlIYStwiIiI50gyJW33cIiIiOaIat4iIFEa5CWrcStwi\nIlIY7UrcIiIi+VEu5z9xq49bREQkR0rNcPbRBfQhiIg0jrqt7Lj9bx+u6fv+kR/ukPmqk2oqFxGR\nwlAfdxPwvHmnAAAZb0lEQVSZ884LmcVuXTMsdDZtxsxM4vfq2QOAz95/I5P4S6y6HgDvfTwtk/gA\nqy/fC4BZD1yZSfylBh+WafzqMvz9zQmZxN9p3b4AzJ7wz0ziA3TruwYA488Zlkn8fqdfDMDQUv9M\n4gMML48D4MQl1sok/vmfja3r+5fb6/r2SaiPW0REJEdU4xYRkcJohnFdStwiIlIY6uMWERHJEc2c\nJiIikiPNkLg1OE1ERCRHVOMWEZHCaNfgNBERkfxohqZyJW4RESmMZkjcmfRxm9kIM+u2gOeWM7OD\nujjemK58PxERkaxkUuN29y9KzJsCewIjEhVHREQKovDXcZvZEOBwwkouvweOB+YAj7n7KWa2InAD\nsCTgwE7uvp6ZjQMM2AP4MTAbGA8cCJwGbGJmRwL3A38EegAzgaNime8EJgL3APcBF8QyTIrlmQYM\nBzYB3gX61HKcIiLSHJph5rSuaCqfRKghn0lIzNsCq5nZYEISvs3ddwBuBlrjayqf3IHAr+Nr7iIk\n2HOAB939MuA3wP+6+47Ab4FfxteuDOzi7ucBlwL/J+5zD+FEYC+gp7sPBIYBy3TBcYqISM6V22u7\nNYJam8rLwOvAukBf4F4zA+gFrANsAFwV932MeddYLQMnAaeY2XHAq8Cf4z6V/QYAp5rZT+Jjn8bH\nx7r7Z3F7A+DiGLcb8AYwHXgawN0nmtmrNR6niIhIQ+iKGnc7MJbQJD041nwvBp4AXgK2jvsN7PC6\nEqHp++xYIy8B+xCa2ivlehX4SXzPY4GbqmJWOHBw3OdU4C/AK8AgCIPdgPW74DhFRCTn2tvLNd0a\nQVcMTivHWu3vgJFm1kpI5DcQmravNbPvEPqwP61+HfAUcJeZTQWmEvquewADYi38ZEJtunt8/Liq\n11YMizGWiI8f7u5vmtmOZvZkjPtBFxyniIjkXDNcDlZT4nb3q6u2rweur37ezHYEznT3Z2Kf9ypx\n38oK7XfFW7V/AxtV/bzbfEIPqoo7GthxPmU7YdGPREREiqDwiXsRjAWuMLPPCAPT/rvO8URERJpa\nXRO3u79GVe1YREQkS5qrXEREJEfUVC4iIpIjStwiIiI5kvqSLjPrAVxHmOtkKnCou0/ssM8wwqyf\nZeAX7v7nL3rPTBYZERERKYhhwAvuvh1wDXB69ZNm1gv4EWHOk/8C/t/C3lCJW0RECqNcLtd064Sv\nE9bUIN4P7likeN8L6E2YhOwLqalcREQKo5593GZ2BNBxDpEPgSlxeyod1s5w9+lmNoIw42cr8IuF\nxVHiFhGRwqhnH7e7Xw5cXv2Ymd1KqEkT7z/p8PwgQjN5f8LU3/eb2ePu/vSC4qipXEREpH5GAbvH\n7W8AIzs8vzQw090/dfdZhMT+hStalpphbdIuoA9BRKRxlBa+S+f0P/Kmmr7vx112wGKVLY4qvxpY\nFZgFfNfdPzKzE4E33f1OM/s1sD2hf/tRd//JF72nEnegD0FEpHHULXGvefgNNX3fv3PFd+tWtkWl\nPu5ozjsvZBa7dc1NAZjZ1pZJ/B7duwPQNmN6JvG791wagLETp2YSH2CtFUMX1PQR52QSf+mDwhUi\nM246N5P4AD0POAWAW8eMzyT+fgP6ATD7o3GZxAfotlJ/AB7ffrtM4g96JLSinrjEWgvZs37O/2ws\nAENL/TOJP7w8rq7vX25f6KDthqc+bhERkRxRjVtERAqjPCf/NW4lbhERKYxmaCpX4hYRkcJohsSt\nPm4REZEcUY1bREQKoxlq3ErcIiJSGErcIiIiOaLELSIikiPtTZC4G35wmpktFZdKW9Dz25rZgC94\nfoiZZTcdlYiISBdq+MRNmJj9yC94/gig3xc8r3nIRUQECE3ltdwaQR6ayk8DNjKzM4CtCOuZLgGc\nDkwGdgW+YmavAHsB+xCWSZsYt0VERIDm6OPOQ437HOAVoA9wv7tvD3wbuNzdRwP3AT8G3gOWBwa7\n+0BCct8imyKLiEgjKs+ZU9OtEeQhcVeWUNsQeBTA3ccDU8xspcpO7l4GZgMjzOwyYHWgW+KyioiI\n1FUemsrnEE4wXgW2BZ43s9WA5YBJQDvQamabAHu5+0Az6wk8Qx3XdBURkfxphqbyPCTuj4AlCU3l\nO5nZ/kAP4AfuPsfMngTOBb4LTDezkYT+7dHMHbSmAWoiIqLEnYK7zwK++gXPXwJcEn/cOUmhREQk\nl5ohceehj1tERESihq9xi4iIdJVye3vWRaiZEreIiBRGMzSVK3GLiEhhNEPiVh+3iIhIjqjGLSIi\nhdEMq4MpcYuISGE0yrSltVDiFhGRwmiGPm4lbhERKYxmSNwanCYiIpIjqnGLiEhhNEONu1Qua/0N\ntAiJiEgjqdvKjkt+9fCavu8/fe6KzFedVOIWERHJEfVxi4iI5IgSt4iISI4ocYuIiOSIEreIiEiO\nKHGLiIjkiBK3iIhIjihxi4iI5IhmTsspM7sIuNTdn8+6LJIdMysBewPrA2Pc/Z4MyrCFuz+dQdzt\nq34sEybtKAO4+8hEZTh3AU+V3f3UBPHHxM0+wDLAq4S/hQ/c/csJ4md6/EWlxN1JZnYo8FOge3yo\n7O5rJyzCXcBpZrYacC1wvbtPSRgfM7sLuAy4092TzyNoZj9y9/NSx+1QhvWB84iJE/ihu7+bsAiX\nAMsCo4AhZraTu5+cMD7AyWbWn/B3eJ27f5Io7rcJifor8X4UsCUwG0iSuAEnw5kX3X0AgJndDAxz\n94lmthxwRaoioJknk9PMaZ1kZq8AewLvVR5z97YMytEXuADYC7gZ+B93fytR7A2Bw4FdgPuBy939\n9RSxY/yHgF3c/bNUMedThn8A5xCSxiDgJHffOWH8p9x9y+ryuPvAVPGr4i4PHATsA3xIaA16OFHs\n+4Dd3b09tkD81d13SRG7qgzdgC2AboSafz93vyFh/Hl+72b2pLtvlTB+psdfNKpxd95b7v5mVsHN\nbCPgUMLJw0PANkArIXlvlqIM7v4q8CMzWxG4EBhjZiOBM939iQRFWBEYb2ZjgXZCq8egBHGrTXf3\nu+L23WZ2UuL4/zSzVdz9AzNbhpA0s7AysAbhd/IysJ+ZHenu308QeyXC3347oQVs+QQxO7qd8H26\nOmHs0GggZeJ60cyuA54mnECm+P+rlvXxF4oSd+fNjGf6zxOailL36VxCaKb+ubtPrzxoZqmayDCz\n3QknDxsRmkmPJ3yB3g9skqAI3yL7Zro3zewY4G/AVsA0M9sMwN1HJ4i/HuCxBWg9oC32e5bdPcXv\nADN7EpgJXEo4aZsVH78/RXzC/8IYM3sV+DKhBSS1Fd19oJldBhwHXJc4/lBCq9sGwA3ufkfi+Fkf\nf6EocXfePWTbt7WNmfUDVog13n7u/oS7/z5hMb4HXNyxSdTMzk4U/zPgl4Qa103AS8A7iWJXLAVs\nHm8AHwP/HbcPq3dwd9+03jEWwbHVg9PMbHt3f8Tdd00R3N2Hm9mtwLrAG+4+MUXcDqbHZvpe7j4j\n/k+m1Av4GrAa8JqZrZu4RTDr4y8UJe7Ouw44mnCG78DwlMFjzXog4R+2B/Ak8M2UZQCGAFuY2XbM\n7dca4e63JYp/CfBb4AzC8V9OqPUm4+5DYhN196rHkjVXm9mehBOE6kGSuyeKvS2hteVEM/sd4W+g\nBTiW8H+RhJltDFwMLAdcbWavVnVfpHI74e/whTjuYfpC9u9qVxAqEzsAk+LP2yWMn/XxF4qu4+68\nS4B1gL8CaxGaCVPaFNgYuI/w5Zl0RHl0O3Am8AfCF+ceieP3cPcHCcnqJUJzbVJmdg3wHOH3cB9w\nb+Ii/IYwOPGUeEvZXfMJsCrhpGHVeFsR+FHCMgD8L2GQ5ARCv+rPEscntnT9j7ufC/yA9CfRK7j7\nFcDseClc6jWj72Du8R/F3FYnqQPVuDtvPXffNm7/2cxSDwaZFEfR9nL3CWa2SuL4kH2/1kwz2w1o\nNbOtgeSj+gFLfBlgRy+lGr3dkbuPIfQtX+Lu47MoQ1VZ3jAz3P1fZpb8JNbMroz3lYfKhJOJVMpm\ntkEsw+qEbqS6M7MBQD/gV8CP4/G3AucSLtOTOlDi7rylzGxpd59uZj1J33rxrJn9iDCq+kZCk3lq\nWfdrHU2oca4AnAwMSxwf4Ckz28DdX8sgNsAdsWny1fhz2d2TJAwzu9Xd9wNGm1n1eI+yu/dLUYbo\nYzMbCixtZgcRWgJSu4mQrFsIV3WkPH4IA0OvIgxOu5V0/wvLEi4DXDneQxjd/4dE8QtJibvzLgCe\nN7OXCU3VZ6UM7u6nmFlvQvPwN4CnUsaPMu3Xcvd3zexYoGd8KIvBgpMJybty7KmT1vGE2s7kSvxU\ngWPSxt2zaO2pdgShi2ACYZDgEakL4O73Vf14r5n9LXERdsvi+n13fxR41Mw2c/fRZrYSoTUw+YRM\nRaLE3Unufn28HGwtYKy7T0oR18wqJwiVKR4rvgr8PEUZKtz992ZWcvdynEUt6XXtZnYJsDPwUdXD\nW6csQ4y/fIaTwLzv7jdlEbjSPMzn/xaT1foB3H1yTJRvE65fnpEqdoWZ7crck6Z+hCsdUtrdzM7P\n8O9wGTN7mzDWZjkz+4G7/zWjsjQ9Je5OMrNdCJ9fC/AnMzvD3a9PEPrleH8IYYrNkYRktVGC2MA8\nX9iVnyubqfv1NgHWdfcsr+V+HViFqhn0EmuL10s/R/r5BC6K9z8CHgAeJVzpsGOi+MB/5steDdiQ\nMN3pKcxttk3lIOYm7jbS/h9A9pMRnQNs4+7j4zTMtxMG7kodKHF33v8l/LP+Afg68Ceg7onb3W8B\nMLOj3P20+PD9ZvZAvWNX6fiFXTl5SPqFDbxPWFxh8sJ2rKOvA2PNbBJzE2fKpvI7yWg+AXd/BsDM\nVnD3ylUVr5nZwYmLso27b2tmD7n7FWZ2VOL4lcsCWwktD4MIJ9UpZT0Z0WeVAYpxgGDyKzyKRIm7\n82YQmmhnu/v7ZtaeOP6yZrZeHE37ZRIOTlvAF7an+sKuGsHfF3gjNtFVkmbSKU/dfd2U8ebjOsL1\n9GsSTqJeyaAMPcxsZ8J0m5Wpd1NqNbPuADF5ZrHgzQWEAYJrErqtPiTMKphK1pMRTTWz/ya0umxL\nmIhI6kSJu/OmEK7b/WOc8vKjhezf1U4AbomXgf0LODJxfMjuC7vSDNqN0DRasVyi+P/RYfKPq4DX\nEk/+8UfC738X4FngaiDJBCxVDieskGaEE4chieOfTzj2voRBmr9LHB9gC3c/3swedvcdzOzBxPGz\nnozoScJc9ecQTmBSfx8WiiZg6bzvAD9w92uAR4AUiyn8h7s/7u6buvvK7r5ZonmxOzqcMKr5acKk\nE0MSxZ1FmGr0WmDJeOtBSGKpVU/+MYL0k3+s4+5nAjPd/c+ENZmTiCtCAYwlLLG5CXAgkPSabne/\nmXDiuAewa6KxJh21mNnXCN0mSwG9E8fPZDIiMzsitoCdTPgdrECYsW3LL3yh1EQ17s77ErC3me1P\nOAFalXBdcV1Vrp01sw+Yt08rdd8qhEE41TMkfWpm3dx99oJe0EUGEiZ8MeYm63bC4ibJZTz5R2vl\n+vl4eWDKLptrCK0fr/P5/tW1UhXCzAYRxpqsArwTx3+8kCp+dA2h5eUwwuV5qU8is5qM6DrgQeA0\nQm27ROiqUI27jrQedyeZ2dPAbYQBWeOBie5+cralSsvMXiScwLwGrE/o918C+LG7X5sg/h7ufne9\n4yykDDcTvrgOJzTZfsfd90kYf3vCdLuVke3Hu3vqa4gzZWajgUPc/aXYdXFJBsu7dizTku7+acJ4\nXyJMRjSA0FR9sruPTRVf0lKNu/Omufu5Zra+ux8Wr2OuOzMbsYCnyu7+3RRlqDIW2MndJ5rZcoRl\nRo8izNdd98RNmDHrEuZelrdqqhWpqowB+jN38o/UNY0Z7r6+mfUlLC6RcmEJAOKsZUcz70InyS5P\nBD6OzcPE5J3FddxDgZMI4y5KwFRCEk1lV3c/oKo8xxG6caQJKXF3XruZrQr0MrOlSTfF4R+ZO+FF\n1s0lq1SWUHT3f5vZKu4+ycxSjeq9mNAsuT8hgf4zUVzM7AjCgMCNmDuSextCf3uK+JWVuU4ys9+S\n0cpc0fGE2fuymGoU4D0zO48wqn5Lwv/mvgAJV6o7hrAy12nALYTLs+ouTvG6J7CTme3E3L+DAShx\nNy0l7s77ObA3oY/nbRItsFFZUMLCUpKnM3dZ0f9JEb+DZ+M86U8QruN+zswOIFwKk8JEdx9hZru6\n+9lmdk+iuJB9396/CeMqliQ0k5cI/dunJIpf7QXgvQxn7RpHOImtTPk5irm13VSJe3ycfKSPuz9k\nZj9NFPc+wnwGKxJO6it/h28lii8ZUOLuJHd/xMyeJzSTruPu0xIX4QrCaPYbgO0JlyLtmbgMx8SY\nGwDXuvvdFqZRuzNR/DmxT7OHhZWRvpQoLu4+i5AwfpAqZof4LwEvmdlswvXC1U20f0lcnL8Db5tZ\nJVmU3X2nhPF/RpiIpx3YB7jL3VNfR/yJme1DqO0PJVELnLv/G3jYzB5h3s/gpRTxJRtK3J0UR5Of\nRvgMbzazdnc/J2ERVnD3SlPYc7E8qfUm9Gt+AKxoZofEy+NS+SGhufhCwqx1VySM3SgOJJy4nU7C\nJtoOhhIuB8tqBrsbgbsIM5aVCIkr2QDB6CLga4TFTi4kXE+fUiN8BpKIruPuvJMIzcMTgV8A+yaO\n3z32sRMnYcnid3kHIVFsEG8bpgwea53PE65d3puwYlvRjHf394E+7v4Q6fu3Ad4FnnH31yq3xPH7\nxasYNnT3oaS/hhrCpC93uvu/CNc075U4fiN8BpKIatydN8fd2+L1u5+ZWeqm8jOAUWY2mdBElkWT\nbcndk048Uy1Osbg3sDxhFPvahMFZRTI5iybaDroTlnZ9iblTz6a8wqFbHIz2chxdn0XS+tTd3wRw\n97cTDtCsaITPQBJR4u68x+KlWauZ2XDC7GEp9SfMILY+odZ/GSFxpfSimQ1k7spUpLx2ldBMvB3w\ngLv/zsyeSRi7URwJrENooj2JeSfESeUXGcSs9mvC30Ll+LMYqPlPM/sF8A9gC8I0tCk1wmcgiShx\nd95FhNreK4TZkvZLHH8YsBvpRnDPzw58vk812YxZzB1JXZFqtqiG4e5TCCdOEPr8s9C/w89JL1OM\nl3xVRo+fmTJ2lcMIff3fIEyAkmS8S9VMhXfHW5mwcmHWl4pKHSlxd94NwFmEptnTCH1cKZe1nODu\nKVf/+Rx33yTL+IQBOSOBNc3sXuDPGZenqDZk7twCXyGsDFX3QYpmVlk6sw9hnMOrhBaoD9w9aV+/\nu88kzJyXWmXaWSfDaWclLU152klm9jAwGLjP3Qeb2YPuvnOCuOfGzYGElbFGM7df8dR6x49luMjd\nj6laXrMi6bKacarLN4BbCatyvZgqtsyfmZWAu9092QplcdrZYVUz+F2RctpZkdRU4+68boRZu0aa\n2Y4kmjGLuWfWr5Hd7Gk/j/cHxjJUpPoMAHD3zcxsQ8K15CeY2Yf6wk7PzKp/7/34fNN5vX2pwwx+\nWQzQy5SZvUFYVrfy//gpYbT/jzNaOVDqSIm78w4j1LgvJ1z6cWiKoO5+VYo4CylDpV/9AHf/NYCZ\nDSA02301VTnM7CuEdagrk328miq2zKO6mbaNMFAqpRfN7DrCANFBhJn8iubvwM3AY4TWuCMJkzJd\nCHw9u2JJPShxd5K7v05YzhDgT1mWJUMD4iVIvYGDCQPmUhpJmG72NOAed1e/TzbOBU4AesbbWYSk\nkcpQwkBRA25w9zsSxm4U5u4PxO2HzexMd3/AzLIarCd1pMQttTiUMGNZX2BLd089qnsFwsIeuxIW\n25jg7gcmLoPMHU2d1RUOvQhdV+OBZTOYwa8RfBpPoivrBrSZ2eboO74p6Zcqi63DoLQlgE2Bh8ws\n6eA0wkji1YA1CV/eqa+llyDrKxzuIFw3/W6GZcjadwktT3sR5ik/mLBS2uFZFkrqQ4lbOuOgeN+d\nbK+dvo/wpX2Ou7+cYTkKqeoKhyXN7K9kcIVDlOkMfo0gjqi/mzBo9Qlgurvfm3GxpE6UuGWxufs4\nADN7zN23ybAcm2cVW4DGuMIBsp/BL3PxJGo1wjX1swnLux70hS+S3FLillrMMLPzCYP02gk1rUsy\nLpMk0ghXOEQ7kO0Mfo1gG3ff1swecvcrzOyorAsk9aPELbV4nFDDWSnrgkhxNcAMfo2g1cy6A5hZ\nK5B6kRNJSIlbOs3dzzazPQhLSb7u7ppyVJKpmsFvNGGsRWXykdSDJBvBBcCzhCs8niJMwSxNSolb\nOs3MfgmsBzwKHGJm27p7VgtdSPFUZvDrD9xPSFz3ANOzKlCGjiVcGrkuMLYyk5w0J81VLp1mZo9X\najZxjuon3X3LjIslBVQ19e1eQOGmvjWzkcAk5h1vknJkvySkGrfUYgkza3X3OUAL8y6xKZKEpr4F\n4Ip4r5pYAShxSy1uAR4zsyeBrYCbMi6PFFPhp75toBH+kkBL1gWQXDuQMGPVY8DR7p7FesQiKwAn\nAtsCD5jZjRmXR6SulLil09x9M+AMYB1guJndnnGRpJg6Tn07LtPSiNSZmsql09S3KA1CU99KoWhU\nuXSamU2h4H2LIiKpqalcaqG+RRGRxJS4pRbqWxQRSUx93FIL9S2KiCSmPm4REZEcUVO5iIhIjihx\ni4iI5IgSt4iISI4ocYuIiOSIEreIiEiO/H+gUHO4xeG9OQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# visualize correlation matrix in Seaborn using a heatmap\n", + "sns.heatmap(bikes.corr())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What relationships do you notice?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adding more features to the model" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a list of features\n", + "feature_cols = ['temp', 'season', 'weather', 'humidity']" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "159.520687861\n", + "[ 7.86482499 22.53875753 6.67030204 -3.11887338]\n" + ] + } + ], + "source": [ + "# create X and y\n", + "X = bikes[feature_cols]\n", + "y = bikes.total\n", + "\n", + "# instantiate and fit\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)\n", + "\n", + "# print the coefficients\n", + "print linreg.intercept_\n", + "print linreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('temp', 7.8648249924775815),\n", + " ('season', 22.53875753246696),\n", + " ('weather', 6.6703020359238963),\n", + " ('humidity', -3.1188733823965133)]" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# pair the feature names with the coefficients\n", + "zip(feature_cols, linreg.coef_)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Interpreting the coefficients:\n", + "\n", + "- Holding all other features fixed, a 1 unit increase in **temperature** is associated with a **rental increase of 7.86 bikes**.\n", + "- Holding all other features fixed, a 1 unit increase in **season** is associated with a **rental increase of 22.5 bikes**.\n", + "- Holding all other features fixed, a 1 unit increase in **weather** is associated with a **rental increase of 6.67 bikes**.\n", + "- Holding all other features fixed, a 1 unit increase in **humidity** is associated with a **rental decrease of 3.12 bikes**.\n", + "\n", + "Does anything look incorrect?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Feature selection\n", + "\n", + "How do we choose which features to include in the model? We're going to use **train/test split** (and eventually **cross-validation**).\n", + "\n", + "Why not use of **p-values** or **R-squared** for feature selection?\n", + "\n", + "- Linear models rely upon **a lot of assumptions** (such as the features being independent), and if those assumptions are violated, p-values and R-squared are less reliable. Train/test split relies on fewer assumptions.\n", + "- Features that are unrelated to the response can still have **significant p-values**.\n", + "- Adding features to your model that are unrelated to the response will always **increase the R-squared value**, and adjusted R-squared does not sufficiently account for this.\n", + "- p-values and R-squared are **proxies** for our goal of generalization, whereas train/test split and cross-validation attempt to **directly estimate** how well the model will generalize to out-of-sample data.\n", + "\n", + "More generally:\n", + "\n", + "- There are different methodologies that can be used for solving any given data science problem, and this course follows a **machine learning methodology**.\n", + "- This course focuses on **general purpose approaches** that can be applied to any model, rather than model-specific approaches." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluation metrics for regression problems\n", + "\n", + "Evaluation metrics for classification problems, such as **accuracy**, are not useful for regression problems. We need evaluation metrics designed for comparing **continuous values**.\n", + "\n", + "Here are three common evaluation metrics for regression problems:\n", + "\n", + "**Mean Absolute Error** (MAE) is the mean of the absolute value of the errors:\n", + "\n", + "$$\\frac 1n\\sum_{i=1}^n|y_i-\\hat{y}_i|$$\n", + "\n", + "**Mean Squared Error** (MSE) is the mean of the squared errors:\n", + "\n", + "$$\\frac 1n\\sum_{i=1}^n(y_i-\\hat{y}_i)^2$$\n", + "\n", + "**Root Mean Squared Error** (RMSE) is the square root of the mean of the squared errors:\n", + "\n", + "$$\\sqrt{\\frac 1n\\sum_{i=1}^n(y_i-\\hat{y}_i)^2}$$" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# example true and predicted response values\n", + "true = [10, 7, 5, 5]\n", + "pred = [8, 6, 5, 10]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MAE: 2.0\n", + "MSE: 7.5\n", + "RMSE: 2.73861278753\n" + ] + } + ], + "source": [ + "# calculate these metrics by hand!\n", + "from sklearn import metrics\n", + "import numpy as np\n", + "print 'MAE:', metrics.mean_absolute_error(true, pred)\n", + "print 'MSE:', metrics.mean_squared_error(true, pred)\n", + "print 'RMSE:', np.sqrt(metrics.mean_squared_error(true, pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Comparing these metrics:\n", + "\n", + "- **MAE** is the easiest to understand, because it's the average error.\n", + "- **MSE** is more popular than MAE, because MSE \"punishes\" larger errors, which tends to be useful in the real world.\n", + "- **RMSE** is even more popular than MSE, because RMSE is interpretable in the \"y\" units.\n", + "\n", + "All of these are **loss functions**, because we want to minimize them.\n", + "\n", + "Here's an additional example, to demonstrate how MSE/RMSE punish larger errors:" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MAE: 2.0\n", + "MSE: 16.0\n", + "RMSE: 4.0\n" + ] + } + ], + "source": [ + "# same true values as above\n", + "true = [10, 7, 5, 5]\n", + "\n", + "# new set of predicted values\n", + "pred = [10, 7, 5, 13]\n", + "\n", + "# MAE is the same as before\n", + "print 'MAE:', metrics.mean_absolute_error(true, pred)\n", + "\n", + "# MSE and RMSE are larger than before\n", + "print 'MSE:', metrics.mean_squared_error(true, pred)\n", + "print 'RMSE:', np.sqrt(metrics.mean_squared_error(true, pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing models with train/test split and RMSE" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "\n", + "# define a function that accepts a list of features and returns testing RMSE\n", + "def train_test_rmse(feature_cols):\n", + " X = bikes[feature_cols]\n", + " y = bikes.total\n", + " X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=123)\n", + " linreg = LinearRegression()\n", + " linreg.fit(X_train, y_train)\n", + " y_pred = linreg.predict(X_test)\n", + " return np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "155.649459131\n", + "164.165399763\n", + "155.598189367\n" + ] + } + ], + "source": [ + "# compare different sets of features\n", + "print train_test_rmse(['temp', 'season', 'weather', 'humidity'])\n", + "print train_test_rmse(['temp', 'season', 'weather'])\n", + "print train_test_rmse(['temp', 'season', 'humidity'])" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2.35448917777e-13\n" + ] + } + ], + "source": [ + "# using these as features is not allowed!\n", + "print train_test_rmse(['casual', 'registered'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing testing RMSE with null RMSE\n", + "\n", + "Null RMSE is the RMSE that could be achieved by **always predicting the mean response value**. It is a benchmark against which you may want to measure your regression model." + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 192.26451139, 192.26451139, 192.26451139, ..., 192.26451139,\n", + " 192.26451139, 192.26451139])" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# split X and y into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=123)\n", + "\n", + "# create a NumPy array with the same shape as y_test\n", + "y_null = np.zeros_like(y_test, dtype=float)\n", + "\n", + "# fill the array with the mean value of y_test\n", + "y_null.fill(y_test.mean())\n", + "y_null" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "179.57906896465727" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute null RMSE\n", + "np.sqrt(metrics.mean_squared_error(y_test, y_null))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Handling categorical features\n", + "\n", + "scikit-learn expects all features to be numeric. So how do we include a categorical feature in our model?\n", + "\n", + "- **Ordered categories:** transform them to sensible numeric values (example: small=1, medium=2, large=3)\n", + "- **Unordered categories:** use dummy encoding (0/1)\n", + "\n", + "What are the categorical features in our dataset?\n", + "\n", + "- **Ordered categories:** weather (already encoded with sensible numeric values)\n", + "- **Unordered categories:** season (needs dummy encoding), holiday (already dummy encoded), workingday (already dummy encoded)\n", + "\n", + "For season, we can't simply leave the encoding as 1 = spring, 2 = summer, 3 = fall, and 4 = winter, because that would imply an **ordered relationship**. Instead, we create **multiple dummy variables:**" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "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", + "
season_1season_2season_3season_4
datetime
2011-09-05 11:00:000010
2012-03-18 04:00:001000
2012-10-14 17:00:000001
2011-04-04 15:00:000100
2012-12-11 02:00:000001
\n", + "
" + ], + "text/plain": [ + " season_1 season_2 season_3 season_4\n", + "datetime \n", + "2011-09-05 11:00:00 0 0 1 0\n", + "2012-03-18 04:00:00 1 0 0 0\n", + "2012-10-14 17:00:00 0 0 0 1\n", + "2011-04-04 15:00:00 0 1 0 0\n", + "2012-12-11 02:00:00 0 0 0 1" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create dummy variables\n", + "season_dummies = pd.get_dummies(bikes.season, prefix='season')\n", + "\n", + "# print 5 random rows\n", + "season_dummies.sample(n=5, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "However, we actually only need **three dummy variables (not four)**, and thus we'll drop the first dummy variable.\n", + "\n", + "Why? Because three dummies captures all of the \"information\" about the season feature, and implicitly defines spring (season 1) as the **baseline level:**" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "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", + "
season_2season_3season_4
datetime
2011-09-05 11:00:00010
2012-03-18 04:00:00000
2012-10-14 17:00:00001
2011-04-04 15:00:00100
2012-12-11 02:00:00001
\n", + "
" + ], + "text/plain": [ + " season_2 season_3 season_4\n", + "datetime \n", + "2011-09-05 11:00:00 0 1 0\n", + "2012-03-18 04:00:00 0 0 0\n", + "2012-10-14 17:00:00 0 0 1\n", + "2011-04-04 15:00:00 1 0 0\n", + "2012-12-11 02:00:00 0 0 1" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# drop the first column\n", + "season_dummies.drop(season_dummies.columns[0], axis=1, inplace=True)\n", + "\n", + "# print 5 random rows\n", + "season_dummies.sample(n=5, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In general, if you have a categorical feature with **k possible values**, you create **k-1 dummy variables**.\n", + "\n", + "If that's confusing, think about why we only need one dummy variable for holiday, not two dummy variables (holiday_yes and holiday_no)." + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredtotalseason_2season_3season_4
datetime
2011-09-05 11:00:00310228.7033.3357411.0014101207308010
2012-03-18 04:00:00100217.2221.2109411.00146814000
2012-10-14 17:00:00400126.2431.0604412.9980193346539001
2011-04-04 15:00:00201131.1633.3352336.99744796143100
2012-12-11 02:00:00401216.4020.4556622.0028011001
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "datetime \n", + "2011-09-05 11:00:00 3 1 0 2 28.70 33.335 \n", + "2012-03-18 04:00:00 1 0 0 2 17.22 21.210 \n", + "2012-10-14 17:00:00 4 0 0 1 26.24 31.060 \n", + "2011-04-04 15:00:00 2 0 1 1 31.16 33.335 \n", + "2012-12-11 02:00:00 4 0 1 2 16.40 20.455 \n", + "\n", + " humidity windspeed casual registered total season_2 \\\n", + "datetime \n", + "2011-09-05 11:00:00 74 11.0014 101 207 308 0 \n", + "2012-03-18 04:00:00 94 11.0014 6 8 14 0 \n", + "2012-10-14 17:00:00 44 12.9980 193 346 539 0 \n", + "2011-04-04 15:00:00 23 36.9974 47 96 143 1 \n", + "2012-12-11 02:00:00 66 22.0028 0 1 1 0 \n", + "\n", + " season_3 season_4 \n", + "datetime \n", + "2011-09-05 11:00:00 1 0 \n", + "2012-03-18 04:00:00 0 0 \n", + "2012-10-14 17:00:00 0 1 \n", + "2011-04-04 15:00:00 0 0 \n", + "2012-12-11 02:00:00 0 1 " + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# concatenate the original DataFrame and the dummy DataFrame (axis=0 means rows, axis=1 means columns)\n", + "bikes = pd.concat([bikes, season_dummies], axis=1)\n", + "\n", + "# print 5 random rows\n", + "bikes.sample(n=5, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('temp', 11.186405863576075),\n", + " ('season_2', -3.3905430997197659),\n", + " ('season_3', -41.736860713173307),\n", + " ('season_4', 64.415961468240582),\n", + " ('humidity', -2.8194816362596531)]" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# include dummy variables for season in the model\n", + "feature_cols = ['temp', 'season_2', 'season_3', 'season_4', 'humidity']\n", + "X = bikes[feature_cols]\n", + "y = bikes.total\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)\n", + "zip(feature_cols, linreg.coef_)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we interpret the season coefficients? They are **measured against the baseline (spring)**:\n", + "\n", + "- Holding all other features fixed, **summer** is associated with a **rental decrease of 3.39 bikes** compared to the spring.\n", + "- Holding all other features fixed, **fall** is associated with a **rental decrease of 41.7 bikes** compared to the spring.\n", + "- Holding all other features fixed, **winter** is associated with a **rental increase of 64.4 bikes** compared to the spring.\n", + "\n", + "Would it matter if we changed which season was defined as the baseline?\n", + "\n", + "- No, it would simply change our **interpretation** of the coefficients.\n", + "\n", + "**Important:** Dummy encoding is relevant for all machine learning models, not just linear regression models." + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "155.598189367\n", + "154.333945936\n" + ] + } + ], + "source": [ + "# compare original season variable with dummy variables\n", + "print train_test_rmse(['temp', 'season', 'humidity'])\n", + "print train_test_rmse(['temp', 'season_2', 'season_3', 'season_4', 'humidity'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Feature engineering\n", + "\n", + "See if you can create the following features:\n", + "\n", + "- **hour:** as a single numeric feature (0 through 23)\n", + "- **hour:** as a categorical feature (use 23 dummy variables)\n", + "- **daytime:** as a single categorical feature (daytime=1 from 7am to 8pm, and daytime=0 otherwise)\n", + "\n", + "Then, try using each of the three features (on its own) with `train_test_rmse` to see which one performs the best!" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# hour as a numeric feature\n", + "bikes['hour'] = bikes.index.hour" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# hour as a categorical feature\n", + "hour_dummies = pd.get_dummies(bikes.hour, prefix='hour')\n", + "hour_dummies.drop(hour_dummies.columns[0], axis=1, inplace=True)\n", + "bikes = pd.concat([bikes, hour_dummies], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# daytime as a categorical feature\n", + "bikes['daytime'] = ((bikes.hour > 6) & (bikes.hour < 21)).astype(int)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "165.671742579\n", + "128.311205028\n", + "144.891163626\n" + ] + } + ], + "source": [ + "print train_test_rmse(['hour'])\n", + "print train_test_rmse(bikes.columns[bikes.columns.str.startswith('hour_')])\n", + "print train_test_rmse(['daytime'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing linear regression with other models\n", + "\n", + "Advantages of linear regression:\n", + "\n", + "- Simple to explain\n", + "- Highly interpretable\n", + "- Model training and prediction are fast\n", + "- No tuning is required (excluding regularization)\n", + "- Features don't need scaling\n", + "- Can perform well with a small number of observations\n", + "- Well-understood\n", + "\n", + "Disadvantages of linear regression:\n", + "\n", + "- Presumes a linear relationship between the features and the response\n", + "- Performance is (generally) not competitive with the best supervised learning methods due to high bias\n", + "- Can't automatically learn feature interactions" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/10_yelp_votes_homework.ipynb b/notebooks/10_yelp_votes_homework.ipynb new file mode 100644 index 0000000..adacab8 --- /dev/null +++ b/notebooks/10_yelp_votes_homework.ipynb @@ -0,0 +1,857 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Linear regression homework with Yelp votes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "This assignment uses a small subset of the data from Kaggle's [Yelp Business Rating Prediction](https://www.kaggle.com/c/yelp-recsys-2013) competition.\n", + "\n", + "**Description of the data:**\n", + "\n", + "- `yelp.json` is the original format of the file. `yelp.csv` contains the same data, in a more convenient format. Both of the files are in this repo, so there is no need to download the data from the Kaggle website.\n", + "- Each observation in this dataset is a review of a particular business by a particular user.\n", + "- The \"stars\" column is the number of stars (1 through 5) assigned by the reviewer to the business. (Higher stars is better.) In other words, it is the rating of the business by the person who wrote the review.\n", + "- The \"cool\" column is the number of \"cool\" votes this review received from other Yelp users. All reviews start with 0 \"cool\" votes, and there is no limit to how many \"cool\" votes a review can receive. In other words, it is a rating of the review itself, not a rating of the business.\n", + "- The \"useful\" and \"funny\" columns are similar to the \"cool\" column." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1\n", + "\n", + "Read `yelp.csv` into a DataFrame." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunny
09yKzy9PApeiPPOUJEtnvkg2011-01-26fWKvX83p0-ka4JS3dc6E5A5My wife took me here on my birthday for breakf...reviewrLtl8ZkDX5vH5nAx9C3q5Q250
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "0 9yKzy9PApeiPPOUJEtnvkg 2011-01-26 fWKvX83p0-ka4JS3dc6E5A 5 \n", + "\n", + " text type \\\n", + "0 My wife took me here on my birthday for breakf... review \n", + "\n", + " user_id cool useful funny \n", + "0 rLtl8ZkDX5vH5nAx9C3q5Q 2 5 0 " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# access yelp.csv using a relative path\n", + "import pandas as pd\n", + "yelp = pd.read_csv('../data/yelp.csv')\n", + "yelp.head(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1 (Bonus)\n", + "\n", + "Ignore the `yelp.csv` file, and construct this DataFrame yourself from `yelp.json`. This involves reading the data into Python, decoding the JSON, converting it to a DataFrame, and adding individual columns for each of the vote types." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read the data from yelp.json into a list of rows\n", + "# each row is decoded into a dictionary using using json.loads()\n", + "import json\n", + "with open('../data/yelp.json', 'rU') as f:\n", + " data = [json.loads(row) for row in f]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "{u'business_id': u'9yKzy9PApeiPPOUJEtnvkg',\n", + " u'date': u'2011-01-26',\n", + " u'review_id': u'fWKvX83p0-ka4JS3dc6E5A',\n", + " u'stars': 5,\n", + " u'text': u'My wife took me here on my birthday for breakfast and it was excellent. The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning. It looked like the place fills up pretty quickly so the earlier you get here the better.\\n\\nDo yourself a favor and get their Bloody Mary. It was phenomenal and simply the best I\\'ve ever had. I\\'m pretty sure they only use ingredients from their garden and blend them fresh when you order it. It was amazing.\\n\\nWhile EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. It was the best \"toast\" I\\'ve ever had.\\n\\nAnyway, I can\\'t wait to go back!',\n", + " u'type': u'review',\n", + " u'user_id': u'rLtl8ZkDX5vH5nAx9C3q5Q',\n", + " u'votes': {u'cool': 2, u'funny': 0, u'useful': 5}}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show the first review\n", + "data[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idvotes
09yKzy9PApeiPPOUJEtnvkg2011-01-26fWKvX83p0-ka4JS3dc6E5A5My wife took me here on my birthday for breakf...reviewrLtl8ZkDX5vH5nAx9C3q5Q{u'funny': 0, u'useful': 5, u'cool': 2}
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "0 9yKzy9PApeiPPOUJEtnvkg 2011-01-26 fWKvX83p0-ka4JS3dc6E5A 5 \n", + "\n", + " text type \\\n", + "0 My wife took me here on my birthday for breakf... review \n", + "\n", + " user_id votes \n", + "0 rLtl8ZkDX5vH5nAx9C3q5Q {u'funny': 0, u'useful': 5, u'cool': 2} " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert the list of dictionaries to a DataFrame\n", + "yelp = pd.DataFrame(data)\n", + "yelp.head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# add DataFrame columns for cool, useful, and funny\n", + "yelp['cool'] = [row['votes']['cool'] for row in data]\n", + "yelp['useful'] = [row['votes']['useful'] for row in data]\n", + "yelp['funny'] = [row['votes']['funny'] for row in data]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunny
09yKzy9PApeiPPOUJEtnvkg2011-01-26fWKvX83p0-ka4JS3dc6E5A5My wife took me here on my birthday for breakf...reviewrLtl8ZkDX5vH5nAx9C3q5Q250
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "0 9yKzy9PApeiPPOUJEtnvkg 2011-01-26 fWKvX83p0-ka4JS3dc6E5A 5 \n", + "\n", + " text type \\\n", + "0 My wife took me here on my birthday for breakf... review \n", + "\n", + " user_id cool useful funny \n", + "0 rLtl8ZkDX5vH5nAx9C3q5Q 2 5 0 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# drop the votes column\n", + "yelp.drop('votes', axis=1, inplace=True)\n", + "yelp.head(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 2\n", + "\n", + "Explore the relationship between each of the vote types (cool/useful/funny) and the number of stars." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
coolusefulfunny
stars
10.5767691.6048061.056075
20.7195251.5631070.875944
30.7885011.3066390.694730
40.9546231.3959160.670448
50.9442611.3817800.608631
\n", + "
" + ], + "text/plain": [ + " cool useful funny\n", + "stars \n", + "1 0.576769 1.604806 1.056075\n", + "2 0.719525 1.563107 0.875944\n", + "3 0.788501 1.306639 0.694730\n", + "4 0.954623 1.395916 0.670448\n", + "5 0.944261 1.381780 0.608631" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# treat stars as a categorical variable and look for differences between groups\n", + "yelp.groupby('stars').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# correlation matrix\n", + "%matplotlib inline\n", + "import seaborn as sns\n", + "sns.heatmap(yelp.corr())" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nQIuIiIiIiEgjMA2DztYo7U2hmt+TT8meiIiIiIjIMsUiQfo6YgQsA8+tzaRPyZ6IiIiIiMgKmKZB\nd1uU1qYQnld7cyKV7ImIiIiIiKxCUzRIT3sUy6SmhnYq2RMREREREVmlgGXR0x6jORrErZFhnUr2\nRERERERE1khLLER3ewTDqH4vn5I9ERERERGRNRQKWPR1xIiFg7hVTPiU7ImIiIiIiJRBW3OIrpYI\nVCnfU7InIiIiIiJSJuGQRV9nlHDQxHMru2Knkj0REREREZEyMgyDjpYIHa3his7jU7InIiIiIiJS\nAZFQkL7OGMGAUZG5fEr2REREREREKsQ0DLpao7Q3hfDKvEWDkj0REREREZEKi0X8Xr6AZZRtaKeS\nPRERERERkSowTYPutigt0WBZFm9RsiciIiIiIlJFzbEQ3e1RzDXeiF3JnoiIiIiISJUFAxa9HTFi\nkbXbiF3JnoiIiIiISI1oawrR3RbBwFt1L5+SPRERERERkRoSKvTyRUIW7irm8inZExERERERqTHF\njdg7WyOwwg4+JXsiIiIiIiI1KhIK0NcZJRQwYZn5m5I9ERERERGRGmYYht/DB2eX8zwleyIiIiIi\nInXgO59997IGdCrZExERERERaUBK9kRERERERBqQkj0REREREZEGpGRPRERERESkASnZExERERER\naUBK9kRERERERBqQkj0REREREZEGpGRPRERERESkASnZExERERERaUBK9kRERERERBqQkj0RERER\nEZEGpGRPRERERESkASnZExERERERaUBK9kRERERERBqQkj0REREREZEGpGRPRERERESkASnZExER\nERERaUCBcr64bdsm8KfANiANfNRxnNfKWaaIiIiIiIiUv2fvPUDIcZx7gU8Cny1zeSIiIiIiIkL5\nk723Ad8FcBznGeDOMpcnIiIiIiIilD/ZawWm59zOF4Z2ioiIiIiISBkZnueV7cVt2/4s8LTjON8o\n3D7lOM7GshUoIiIiIiIiQPl79p4EfgLAtu17gINlLk9EREREREQo82qcwLeAd9q2/WTh9kfKXJ6I\niIiIiIhQ5mGcIiIiIiIiUh1aLEVERERERKQBKdkTERERERFpQEr2REREREREGpCSPRERERERkQZU\n7tU4a0ZhM/c/BbYBaeCjjuO8Vt1arYxt20Hgi8C1QBj4HeBl4MuAC7wE/BvHcepu9R3btnuBF4C3\n45/Ll6njc7Jt+zeBnwKCwB/jb0fyZer0nAqfoy8AN+Kfw78E8tTxORXZtv1e4H2O43ygcPse4HNA\nDnjYcZzfXuPyKhqTbNu+G/hdx3H22rZ9A2X+m1UrTtm2bQF/jv8e9YB/hf/7LWu5hbIrHr9s234R\nmCrcfB34TIXKrWhss237F4EPF25Gge3ALuCPylVmodyKxbxKx6Al1qnm2k6VjmVLqE9NtsmqGQuX\nWL+aa+9VK54uoV6rirfrqWfvPUDIcZx7gU8Cn61yfVbjA8CY4zj3A/8M+BP88/lU4ZgBvLuK9VuR\nQsD8X8As/jn8IXV8TrZt7wHeWnjP7QGup/7/Tg8CTY7j7AJ+G/hv1P85Ydv2H+GfizHn8P8EfqFw\nrnfbtr1jjYutWEyybfsT+F/64cKhSny2qhWnfhJwC3+3/0SF3qPViF+2bUcAHMfZW/j3yxUqdw8V\njm2O4/xl8TyB54F/C3y6nGUWVCTmVSkGLUVNtZ2qFMuuplbbZFWJhUtRi+29asXTJdRrD6uMt+sp\n2Xsb8F0Ax3GeAe6sbnVW5Rv4X3Lg/w2zwO2O4zxWOPaPwDuqUbFV+n38L7fRwu16P6cHgUO2bf8d\n8B3g74E76vyckkCbbdsG0AZkqP9zAv8q2b+m0NCybbsVCDuOc7xw//dY+/OqZEx6FfgZLjUkK/HZ\nqkqcchzn28CvFG5eB0xQmfdoNeLXdiBm2/b3bNv+QaEnqBLlVi222bZ9J7DVcZwvVKjMSsW8asSg\npai1tlM1YtnV1GSbrIqxcClqsb1XrXh6NauOt+sp2WsFpufczheGJ9Qdx3FmHceZsW27BT/I/Cfm\n/y1n8L+U6oZt2x/GvzL2cOGQwfwrnHV3TkAPcAfwPvzhE39D/Z/Tk0AEeAX/qtznqaNzsm37l23b\nPrTg3x2O4/zvBQ9dGC/irP15VSwmOY7zt/hDwYrK/jerZpxyHCdv2/aX8Yf4/TVlPt8qxq9Z4Pcd\nx/kx/Bjz1wvuL1e51YxtnwJ+q/BzJcpc05hXYzFoKWqq7VSNWHY1tdwmq3QsXIoabu9VK55ezarj\n7bqZs4cfrFrm3DYdx3GrVZnVsm17I/C3wJ84jvNV27Z/b87dLcBkdWq2Yh8BPNu23wHsAP4S/w1e\nVI/ndAF42XGcHHDUtu0UMDjn/no8p08ATzqO8x9t2x4CHsEfQ15U0+fkOM5fAH+xhIcujBetrP15\nVTMmzS2nbH+zasYpx3E+bNt2H/AsfmO9nOVWK34dxe/pwHGcY7ZtjwM7K1BuVWKbbdvtwI2O4zxa\nOFSJ9/Gaxrwai0FLUettp4rEsqup5TZZhWPhUtRqe69a8fRqVh1v67Jna4WeBH4CSpOeD1a3OitX\n+NA+DHzCcZwvFw4P27a9u/DzjwOPLfbcWuU4zm7HcfYU5mPsB/4F8N16PifgCfzx+9i2vQGIAT+o\n83Nq4tJV3gn8C0Z1/d5bjOM400DGtu3rC8O3HmTtz6uaMansf7NqxSnbtj9UmMwO/hC8PPB8Ocut\nYvz6CIU5VIUY0wI8XIFyqxXb7gd+MOd2JWJPVWJehWLQUtR626nq3z+12iarRixcihpu71Urnl7N\nquPteurZ+xbwTtu2nyzc/kg1K7NKn8Lvsv20bdvFceL/Dvi8bdsh4AjwzWpVbo14wMeBP6/Xc3Ic\n5yHbtu+3bftZ/AsrvwqcoI7PCX+c/Zds234c/+r2b+KvplXP51TkFf4VFYdxWMD3HMd5bo3Lq0ZM\nKp5fJT5b1YpT3wS+bNv2o/jv0X+HPwSvku/RSsWvv8D/PBa/6D8CjJe73CrGthuBuStBVuJ3XMmY\nV+kYtBS12naqZCy7mlptk9VCLFyKWmnvVSWeXs1axFvD8+puhXQRERERERG5ivU0jFNERERERGTd\nULInIiIiIiLSgJTsiYiIiIiINCAleyIiIiIiIg1IyZ6IiIiIiEgDUrInIiIiIiLSgNbTPnvSYGzb\n/s+A5zjOb1W7LiLS+GzbvgZ/8+Q4sMdxnNlFHvNhYLfjOLWyH5mI1BDbtr8IvA34tOM4X692faTx\nKdmTeqZNIkWkkvYALziO84ErPEZxSUSu5BeBsOM4uWpXRNYHJXtSNbZt/3fgPUAO+F/Ad4E/AzqA\nWeBjjuM8b9t2H/AXwMbCYz/lOM73qlNrEalHtm3vAf4fx3H2Fm5/GXgB+GdAX+Fhv+U4znds274B\n+FOgC0gA/xY/ifsvQLNt2/8TOAtQHFlg2/YJYDdgVOSERKTu2Lb99/gxYsy27ZDjOE2F4/+Zwkgl\n27ZHgW8Au/DbPD/nOM6JQoz5K+DHgCbgXwDTwA8cx7m28Dq7gf/gOM5PVPTEpKZpzp5UhW3b/xy4\nF7gVeAvwEeA7wOccx9kO/AbwTdu2Q8D/AP6pcPx9wBdt2+6tTs1FpEF4+BeWjjuOcyfwQfzGFcBf\nAp9wHOcO4FeArzmOcwD4NPBtx3H+9WVeT0TkshzH+enCj9uB83Pu8rgUQ/rw2zy3A4+AY7wUAAAC\nbklEQVQBvzbnMRccx7kb+H/xL3y/Chy3bXtv4TG/CHypjKcgdUjJnlTL/cDXHcfJFua97AK6Hcf5\nOwDHcZ4BLgI2sBe/Zw/HcY4DzwB3V6XWItJIzgDvsW37W/gx6Hds224G7gS+ZNv2MPDXQJNt2534\nV+TVcyciq3W1OPLdwv8vAZ2LHD885/gXgQ/Zth0FHgD+bq0qKY1ByZ5US5b5wW4zbw5+Bv5QY3PB\nfcXjIiJL5TE/jgTx49BN+AndfcCz+PEm5TjOzuI/4F7HcS4u4fVERJZiYfwIzb3TcZzMnJtzH5da\n5PnfBN6JP/LpIcdxsmtbVal3SvakWh4Dfsa27YBt2zH88emubdvvBbBt+x78oQwvAT8Efrlw/Hr8\nVax+hK6wi8jSXQCut207XOiluw+I4s/T+ybwb4Be/LhyzLbtDwDYtv0OYN9lXm9r4TFvAQbQUE4R\nWZpJoMO27W7btsP4c4dXxHGcBPCPwH8Dvrw21ZNGomRPqqIwXPNJ4EX8q+l/iJ/Efcy27YPA54Gf\nKVyh+hjwQOH4t4BfdhznHPPHuIuIXJbjOIeBh/CHP/1v/AtOQcAuxJZH8RdwmQI+AHzUtu0D+A2o\nnyu8zNyY8zWgy7btw/hzal7ETxQVl0TkSjzHcaaB3weeA74PPD33/gU/LxZPFh7/OjDtOM5za1xX\naQCG5+k7SURERESk3ti2bQH/FTjrOM7nql0fqT2a9yQiIiIiUp+ex1/Z86ev9kBZn9SzJyIiIiIi\n0oA0Z09ERERERKQBKdkTERERERFpQEr2REREREREGpCSPRERERERkQakZE9ERERERKQB/f9NjhHp\nBusgDgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# multiple scatter plots\n", + "sns.pairplot(yelp, x_vars=['cool', 'useful', 'funny'], y_vars='stars', size=6, aspect=0.7, kind='reg')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 3\n", + "\n", + "Define cool/useful/funny as the features, and stars as the response." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "feature_cols = ['cool', 'useful', 'funny']\n", + "X = yelp[feature_cols]\n", + "y = yelp.stars" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 4\n", + "\n", + "Fit a linear regression model and interpret the coefficients. Do the coefficients make intuitive sense to you? Explore the Yelp website to see if you detect similar trends." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('cool', 0.27435946858859317),\n", + " ('useful', -0.14745239099400748),\n", + " ('funny', -0.13567449053705449)]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.linear_model import LinearRegression\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)\n", + "zip(feature_cols, linreg.coef_)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 5\n", + "\n", + "Evaluate the model by splitting it into training and testing sets and computing the RMSE. Does the RMSE make intuitive sense to you?" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "from sklearn import metrics\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define a function that accepts a list of features and returns testing RMSE\n", + "def train_test_rmse(feature_cols):\n", + " X = yelp[feature_cols]\n", + " y = yelp.stars\n", + " X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)\n", + " linreg = LinearRegression()\n", + " linreg.fit(X_train, y_train)\n", + " y_pred = linreg.predict(X_test)\n", + " return np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1.1842905282165919" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE with all three features\n", + "train_test_rmse(['cool', 'useful', 'funny'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 6\n", + "\n", + "Try removing some of the features and see if the RMSE improves." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.19623908761\n", + "1.19426732565\n", + "1.20982720239\n" + ] + } + ], + "source": [ + "print train_test_rmse(['cool', 'useful'])\n", + "print train_test_rmse(['cool', 'funny'])\n", + "print train_test_rmse(['useful', 'funny'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 7 (Bonus)\n", + "\n", + "Think of some new features you could create from the existing data that might be predictive of the response. Figure out how to create those features in Pandas, add them to your model, and see if the RMSE improves." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# new feature: review length (number of characters)\n", + "yelp['length'] = yelp.text.apply(len)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# new features: whether or not the review contains 'love' or 'hate'\n", + "yelp['love'] = yelp.text.str.contains('love', case=False).astype(int)\n", + "yelp['hate'] = yelp.text.str.contains('hate', case=False).astype(int)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1.1584039830984094" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# add new features to the model and calculate RMSE\n", + "train_test_rmse(['cool', 'useful', 'funny', 'length', 'love', 'hate'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 8 (Bonus)\n", + "\n", + "Compare your best RMSE on the testing set with the RMSE for the \"null model\", which is the model that ignores all features and simply predicts the mean response value in the testing set." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split the data (outside of the function)\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a NumPy array with the same shape as y_test\n", + "y_null = np.zeros_like(y_test, dtype=float)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# fill the array with the mean of y_test\n", + "y_null.fill(y_test.mean())" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.21232761249\n" + ] + } + ], + "source": [ + "# calculate null RMSE\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_null))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 9 (Bonus)\n", + "\n", + "Instead of treating this as a regression problem, treat it as a classification problem and see what testing accuracy you can achieve with KNN." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# import and instantiate KNN\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "knn = KNeighborsClassifier(n_neighbors=50)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.3524\n" + ] + } + ], + "source": [ + "# classification models will automatically treat the response value (1/2/3/4/5) as unordered categories\n", + "knn.fit(X_train, y_train)\n", + "y_pred_class = knn.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 10 (Bonus)\n", + "\n", + "Figure out how to use linear regression for classification, and compare its classification accuracy with KNN's accuracy." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# use linear regression to make continuous predictions\n", + "linreg = LinearRegression()\n", + "linreg.fit(X_train, y_train)\n", + "y_pred = linreg.predict(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# round its predictions to the nearest integer\n", + "y_pred_class = y_pred.round()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.3456\n" + ] + } + ], + "source": [ + "# calculate classification accuracy of the rounded predictions\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/12_e_log_examples.ipynb b/notebooks/12_e_log_examples.ipynb new file mode 100644 index 0000000..13a792a --- /dev/null +++ b/notebooks/12_e_log_examples.ipynb @@ -0,0 +1,375 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exponential functions and logarithms" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import math\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exponential functions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What is **e**? It is simply a number (known as Euler's number):" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2.718281828459045" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "math.e" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**e** is a significant number, because it is the base rate of growth shared by all continually growing processes.\n", + "\n", + "For example, if I have **10 dollars**, and it grows 100% in 1 year (compounding continuously), I end up with **10\\*e^1 dollars**:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "27.18281828459045" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 100% growth for 1 year\n", + "10 * np.exp(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "73.890560989306508" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 100% growth for 2 years\n", + "10 * np.exp(2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Side note: When e is raised to a power, it is known as **the exponential function**. Technically, any number can be the base, and it would still be known as **an exponential function** (such as 2^5). But in our context, the base of the exponential function is assumed to be e.\n", + "\n", + "Anyway, what if I only have 20% growth instead of 100% growth?" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "12.214027581601698" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 20% growth for 1 year\n", + "10 * np.exp(0.20)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "14.918246976412703" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 20% growth for 2 years\n", + "10 * np.exp(0.20 * 2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Logarithms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What is the **(natural) logarithm**? It gives you the time needed to reach a certain level of growth. For example, if I want growth by a factor of 2.718, it will take me 1 unit of time (assuming a 100% growth rate):" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.99989631572895199" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# time needed to grow 1 unit to 2.718 units\n", + "np.log(2.718)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If I want growth by a factor of 7.389, it will take me 2 units of time:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1.9999924078065106" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# time needed to grow 1 unit to 7.389 units\n", + "np.log(7.389)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If I want growth by a factor of 1, it will take me 0 units of time:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# time needed to grow 1 unit to 1 unit\n", + "np.log(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If I want growth by a factor of 0.5, it will take me -0.693 units of time (which is like looking back in time):" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "-0.69314718055994529" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# time needed to grow 1 unit to 0.5 units\n", + "np.log(0.5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Connecting the concepts" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you can see, the exponential function and the natural logarithm are **inverses** of one another:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "5.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.log(np.exp(5))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "4.9999999999999991" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.exp(np.log(5))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/12_logistic_regression.ipynb b/notebooks/12_logistic_regression.ipynb new file mode 100644 index 0000000..2a031e8 --- /dev/null +++ b/notebooks/12_logistic_regression.ipynb @@ -0,0 +1,2233 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Logistic Regression" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "1. Refresh your memory on how to do linear regression in scikit-learn\n", + "2. Attempt to use linear regression for classification\n", + "3. Show you why logistic regression is a better alternative for classification\n", + "4. Brief overview of probability, odds, e, log, and log-odds\n", + "5. Explain the form of logistic regression\n", + "6. Explain how to interpret logistic regression coefficients\n", + "7. Demonstrate how logistic regression works with categorical features\n", + "8. Compare logistic regression with other models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Predicting a Continuous Response" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
rinamgalsikcabafeglass_type
id
221.5196614.773.750.2972.020.039.0000.001
1851.5111517.380.000.3475.410.006.6500.006
401.5221314.213.820.4771.770.119.5700.001
391.5221314.213.820.4771.770.119.5700.001
511.5232013.723.720.5171.750.0910.0600.161
\n", + "
" + ], + "text/plain": [ + " ri na mg al si k ca ba fe glass_type\n", + "id \n", + "22 1.51966 14.77 3.75 0.29 72.02 0.03 9.00 0 0.00 1\n", + "185 1.51115 17.38 0.00 0.34 75.41 0.00 6.65 0 0.00 6\n", + "40 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1\n", + "39 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1\n", + "51 1.52320 13.72 3.72 0.51 71.75 0.09 10.06 0 0.16 1" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# glass identification dataset\n", + "import pandas as pd\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/glass/glass.data'\n", + "col_names = ['id','ri','na','mg','al','si','k','ca','ba','fe','glass_type']\n", + "glass = pd.read_csv(url, names=col_names, index_col='id')\n", + "glass.sort('al', inplace=True)\n", + "glass.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** Pretend that we want to predict **ri**, and our only feature is **al**. How could we do it using machine learning?\n", + "\n", + "**Answer:** We could frame it as a regression problem, and use a linear regression model with **al** as the only feature and **ri** as the response.\n", + "\n", + "**Question:** How would we **visualize** this model?\n", + "\n", + "**Answer:** Create a scatter plot with **al** on the x-axis and **ri** on the y-axis, and draw the line of best fit." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "sns.set(font_scale=1.5)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAV8AAAFgCAYAAAAcmXr5AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xl8XFd9///XLNr3ZWx53yQfb/EW48RJnBUMSfrlS4GU\nQAnN91cSvl1ofwml9PEgv3wbmtJCgKa0XwqPJqUshuA0hSYEmn1PnMSxE685lld5ke3Rvo1GmuX3\nx7kzHo1H0ux3ZH2ej4cRunPm6twb6a2jc8/iCIfDCCGEyC+n3RUQQojpSMJXCCFsIOErhBA2kPAV\nQggbSPgKIYQNJHyFEMIGbru+sFLq+4BLa33HBGW2AZ+MO/ys1npLgrKfBLYBC7XWbTHHfx+4F5gH\nvAd8UWu9IwuXIIQQact7y1cp5VBKfQ24E5hskPEq4CtAU8y/WxKccxbwg/jzKaU+CDwMPACsA/YA\nTyulGjO8DCGEyEheW75KqcWYMFwJtE1StgRoBt7SWp+b5NT/hmnVXht3/MvAz7TWD1nn/AJwPXAH\n8Hep1l8IIbIl3y3fTcBxTIv26CRll2F+Obw/USGl1B8DM4G/iTvuBK4AXowc01qHgZeBzSnWWwgh\nsiqvLV+t9VZgK4BSarLiq4AR4D6l1I2AD3gUuF9r7bfOsRS4H7gaqI17fy1QAZyKO94OfCD9qxBC\niMwV8miHFdbHA8BNwH3A5zF9uyil3MBPgG9orfcmeH+59XE47rgfKM16bYUQIgW2jXZIwj2YYO2z\nPt+nlAoCjyil7ga+CAQxD9NiOayPPutjSdzrJcBgDuorhBBJK9jwtfpn++IOR1q484A/AGYDvVYX\nRqQVv08pdb/W+u+VUoPArLhzzAZOTvb1w+Fw2OFwTFZMCDF9ZRQQBRu+SqlHMeOAPx5zeAOmG6EV\nM7LBHffaI8CNmCFlAK9b5SL9zE5M//APJvv6DocDr7c/o2vIlMdTJXWQOkgdCrQeHk9VRu+3M3wd\nxPzmUEoVAQ1Ap9Z6FBOk25RSdwGPY8bpPgB8S2s9RNxQNaXUbOv/Htda91j//zvAE0qpXcALwN1A\nFfBQzq5KCCGSYOcDtzBjJ0VcCZzGDEdDa/0YcBtwO6Yl+03gQa31vZOcM0pr/RRmMseXgHcww9e2\naK27snMJQgiRHofsZDGucCH8WSN1kDpIHQqzHh5PVUZ9voU81EwIIS5aEr5CCGEDCV8hhLCBhK8Q\nQthAwlcIIWwg4SuEEDaQ8BVCCBtI+AohhA0kfIUQwgYSvkIIYQMJXyGEsIGErxBC2EDCVwghbCDh\nK4QQNpDwFUIIG0j4CiGEDSR8hRDCBhK+QghhAwlfIYSwgYSvEELYQMJXCCFsIOErhBA2kPAVQggb\nSPgKIYQNJHyFEMIGEr5CCGEDCV8hhLCBhK8QQthAwlcIIWwg4SuEEDZw2/WFlVLfB1xa6zsmKLMN\n+GTc4We11lus11cA3wE2AX7gMeArWuu+mHOcAxrjznGP1vrrmV+FEEKkJ+/hq5RyAPcBdwIPTVJ8\nFfAV4Ecxx/zWeSqBZ4HngQ8A9db5fgh8wiozExO8m4HWmHMMZHodQgiRibyGr1JqMfAwsBJom6Rs\nCdAMvKW1PpegyHzgZeAOrbXPes+/YoI9YhUQALZrrYOZX4EQQmRHvlu+m4DjwKeAX0xSdhmmfu8n\nelFrvR+4NfK5UmopcBvwVEyxVcBhCV4hRKHJa/hqrbcCWwGUUpMVXwWMAPcppW4EfMCjwP1aa39s\nQaXUu8Bq4BjwsbhzBJRSTwAbgFPAg1rrn2Z8MUIIkYFCHu2wwvp4ALgJ053weeAHCcreDlwNtAPP\nK6XKYs5Rh+kL3oIJ7x8qpW7PWa2FECIJjnA4bMsXVkq9ALRqre8c53UHUBU3cuH3gEeABq11d4L3\nNAEngdu01j9XSrmBYq31UEyZ7wFXaa1XT1JFe26MEGKqcGTyZtuGmk1Gax0G+uIO77U+zlNKVQNr\ntdb/FfOeM0qpTmC29XkA88At/hyfTqYOXm9/OlXPGo+nSuogdZA6FGg9PJ6qjN5fsN0OSqlHlVL/\nGXd4AzAMHAIuA/5DKTUj5j2LAA+wXynlVkqdVErdleAcexFCCBvZ2fJ1ENNsV0oVAQ1Ap9Z6FNO9\nsM0Kz8eBdcADwLe01kPWQ7QjwFarTDXwT8DrWuvfWuf8JfBVpdQhTN/xx4DPYvqQhRDCNna2fMOM\n7Ve9EjiNGY6G1voxzNCx24E9wDeBB4H/Y73uwzxE68eM930C2AncGHPOu4HvAd+1zvEZ4Bat9bM5\nuiYhhEiKbQ/cpoBwIfQpSR2kDlKHwqyHx1N1cT5wE/bz9vgIOp247K6IEBchCV+R0JNvHGOH9lLk\ndrJmSQM3b1pod5WEuKgU7GgHYR9vj48d2hv9fIf24u3x2VgjIS4+Er5CCGEDCV9xAU9tGRuUJ/r5\nBuXBU1s2wTuEEKmSPl+R0M2bFrJx+Uzq6ytwhUJ2V0eIi460fMW4PLVlNDVU2F0NIS5KEr5CCGED\nCV8hhLCBhK8QQthAwlcIIWwg4SuEEDaQ8BVCCBtI+AohhA0kfIUQwgYSvkIIYQMJXyGEsIGErxBC\n2EDCVwghbCDhK4QQNpDwFUIIG0j4CiGEDSR8hciAt8cn+9uJtMhOFkKkKbLDM5itlmSHZ5EKafkK\nkQbZ4VlkSsJXCCFsIOErRBpkh2eRKenzFSJNkR2eAQlekTIJXyEyIKEr0mVb+Cqlvg+4tNZ3TFBm\nG/DJuMPPaq23WK+vAL4DbAL8wGPAV7TWfTHn+H3gXmAe8B7wRa31jmxeixBCpCrvfb5KKYdS6mvA\nnUB4kuKrgK8ATTH/brHOUwk8C3QAHwA+CmwGfhjztT4IPAw8AKwD9gBPK6Uas3hJQgiRsry2fJVS\nizFhuBJom6RsCdAMvKW1PpegyHzgZeAOrbXPes+/AvfFlPky8DOt9UPW618ArgfuAP4us6sRQoj0\n5bvluwk4jmnRHp2k7DLML4f3E72otd6vtb41JniXArcBT1mfO4ErgBdj3hPGBPbmjK5CCCEylNeW\nr9Z6K7AVQCk1WfFVwAhwn1LqRsAHPArcr7X2xxZUSr0LrAaOAR+zDtcCFcCpuPO2Y7ophBDCNoU8\nzneF9fEAcBOmO+HzwA8SlL0duBoTrM8rpcqAcuu14biyfqA025UVQohUFPJQs3uAb8SMXNinlAoC\njyil7tJad0cKaq3fBVBKfQI4CfxP4Bnr5ZK485YAgzmtuRBCTKJgw9fqn+2LO7zX+jhPKVUNrNVa\n/1fMe84opTqBOVrrTqXUIDAr7hyzMQE9KY+nKr3KZ5HUQeogdUisUOqRroINX6XUo5hxwB+PObwB\n041wCPgdYKtSak5kNIRSahHgAfZb5V8HruV8P7MT0z2RqOviAl5vf+YXkgGPp0rqIHWQOhRoPTIN\nfzvD12H9A0ApVQQ0AJ1a61HgEWCbUuou4HHMON0HgG9prYeUUk8ARzABfBdQDfwT8LrW+rfWab8D\nPKGU2gW8ANwNVAEP5eMChRBiPHY+cAszdpLFlcBpzHA0tNaPYYaO3Y6ZHPFN4EHg/1iv+4AtQD9m\n+NgTwE7gxsgJtdZPYSZzfAl4BzN8bYvWuit3lyWEEJNzhMOTTTKbtsKF8GeN1EHqIHUozHp4PFWO\nyUuNr5CHmgkhxEVLwlcIIWwg4SuEEDaQ8BVCCBtI+AohhA0kfIUQwgYSvkIIYQMJXyGEsIGErxBC\n2EDCVwghbCDhexHw9vjw9vjsroYQIgUFu6SkSM6Tbxxjh/YCsEF5uHnTQlvrI4RIjrR8pzBvjy8a\nvAA7tFdawEJMERK+FynpihCisEm3wxTmqS1j+fw69hztxO1yskF58NSWSVeEEFOAtHynsCffOMaB\ntm7CYVg+v5abNy2UrgghpggJ3ykqNmSL3E4OtPVIyAoxhUj4XmQ8tWVsUJ7o55GuCCFEYZE+3ykq\nErKxfbuRkL1500I2Lp8ZLSeEKDwSvlNYopCNdD1I6ApR2CR8p7jYkE00ykHCWIjCJOF7kUg0ymHQ\nF+BAWzcgQ86EKDTywO0iNRoIsedoZ/RzGXImRGGR8L1IxI9yWL24HrdL/vMKUaik2+EiEv8ALr4P\nuND6faU/WkxnEr4XmdggK+QhZzIFWkx38nfpRc5TW1ZwwStToIWQ8BVCCFtI+Iq8kynQQtjY56uU\n+j7g0lrfMUGZbcAn4w4/q7XeYr3eDHwLuBIIAy8CX9Jan4g5xzmgMe4c92itv57xRYi0FXJ/tBD5\nkPfwVUo5gPuAO4GHJim+CvgK8KOYY37rPBXAU8Be4DqgCPg28Ful1Hqt9YhSaiYmeDcDrTHnGMjC\npYgMSeiK6Syv4auUWgw8DKwE2iYpWwI0A29prc8lKLIFmAus0VoPWO/5nHXejcCrmPAOANu11sFs\nXYcQQmQq332+m4DjmFA8OknZZZhfDu+P8/qbwE2R4LWErY911sdVwGEJXiFEoclry1drvRXYCqCU\nmqz4KmAEuE8pdSPgAx4F7tda+7XWp4HTce/5K0yXwisx5wgopZ4ANgCngAe11j/NwuUIIUTaCnm0\nwwrr4wHgJkw/8eeBHyQqrJT6I+BPgL/SWvfEnKMO07e8BRPeP1RK3Z67agshxOQKeYbbPcA3tNZ9\n1uf7lFJB4BGl1F1a6+5IQaXUV4G/Ab6utf5ezDmuAYq11kPW53uUUguAu4F/z/kViClBpjkLOxRs\n+Gqtw0Bf3OG91sd5QLdSygl8DzNy4i+11t+KO0cA88At/hyfTqYOHk9VqtXOOqlDbuvw6HMHeX23\n6b26YvVsbrlhad7rkAqpw3mFUo90FWz4KqUexYwD/njM4Q2YoWaHrM//GfhD4Hat9Y/j3u8GjgHf\n1lr/Q9w59pIEr7c/vcpnicdTJXXIYR28PT5e2nky+vlLO0+ycn5twhbwxXwfplodCqUemYa/neHr\nsP4BoJQqAhqATq31KPAIsE0pdRfwOLAOeAB4QGs9pJS6GfjfwF8DTymlmmLO3a219iulfgl8VSl1\nCNN3/DHgs5g+ZCGEsI2dD9zCnB8aBmaW2mnMcDS01o8BtwG3A3uAb2JGKtxrlf+M9f6/Btqt90b+\nfcIqczemW+K71jk+A9yitX42R9ckphCZ5izs5AiHw5OXmp7ChfBnjdQh93VI5oHbdLgPU6UOhVIP\nj6fKMXmp8RVsn6+YWqbyiIGpWGcx9Un4iozJwuhCpK6QJ1mIKUAWRhciPRK+Im+8Pb6sBHO2ziOE\nnaTbQWQkMmJgso06s9U1IV0c4mIh4SsyNtnC6Im6JjYun5nyg65snUeIQiDhK7JCAlCI1Eifb4Hy\n9vg40zlodzXSFtsvm63JDDIpQlxMpOVbgCL9mkVuJ2uWNEy5fs1E/bLZ2rNN9n4TFwtp+RaYXA7d\nyscogYnq76kty0pgZus8QthJWr7ThIwSEKKwSMu3wOSiXzOfEyGkX1aI5EjLtwBF+jXr6ytwhUJ2\nVydl0i8rxOSk5VugPLVlNDVUZO1c+W6NXsz9sjLDTmTDuC1fpdQVwG6t9YBS6krGrr17Aa3169mu\nnMgeaY1mh/Sdi2yZqNvhVeBy4C3Ob8U+njDgylalRPZ4e3x09Q1TX12a1oyyoNMp/2EtMsNOZNNE\n4Xs9ZusdgP3Aj4C3c16jaU63mU2Z1fy6tN4fO6zryTeO8dw7JxkaDlBe6uaGS+cmbKklWot3qo81\nFqLQjRu+WusXYz5dDLwbd0xk2bd/sYvWE70AtMyr4e//9OqU3h/7J/Hy+bXsPtLF0LDZvHloOMD2\n/WcvaKlte/4Qe4524nY5o39GSwsvsWQXERIiGcmOdngTuBp4Jod1mdZ0W3c0eAFaT/Sy53AHTdUl\nSb0/PjB3H+kiOMlIiW3Pt/L8zlMAlJe6oyErxid95yJbkg3fd4CvKKU+AbwLDMQX0Frfmc2K2e3v\nf/w2K+bXsnpJAxWlRXZXJ2VFbier5zewff+ZaLfD5SvOt169PT52HeogFA7jcDgYGg5QUWauM9UW\nXrpbCKXzvkLYrkhCV2RDsuH7ScyuwOXAFYwd+eBgkpEQU9Fr753mtfdO43I6WDqvlrUtjaxraaSx\nJjc/eGp+HS3zasZ0O1yypDHpTQITBebNmxZy3fo5CR+4vbDzJB09wwRDZhNpl9PBJYsaomWSHWuc\n7tP/dN4nIw3ExSSp8NVaL8xxPQqOwwHhMARDYQ4c7+bA8W5+/mwr82dUsralkfVLPcybUYnDkdEG\npmN86VPrMnrgluhP4kTjbU0XxTlid64uK3Zz3fo5Y8p5asvwNFSM+wsg3b7hdN4XeU8gGErpawlR\nqGSG2zh+dO+HefbNY7zb2sH+Y93RH/q2cwO0nRvg8deO0VBdaoK4pZGWebW4XZnPWUl3lENEMmH0\n0K/30dHrj37uAJxTYDxZ74A/+gCxvFS+dcXUJt/B46irLuXatXO4du0chkcC7D3Sxa7WDnYf7mDQ\nCoDOvmGee+ckz71zkvISN6ubG1jf4mHlonrKSgrz1r65/wzHzgzgdEDIavg6HA6cabTg0336L6MG\nhJDwTUppsZsNy2awYdkMgqEQB0/0sqvVy7utHXT0DgMw5A+wfd9Ztu87i9vlYPmCetYtbWRtcyO1\nlcmNWJhMpg+bnnzjGK/sbicQCOFwnO+sr68uiT5sS1W6T/9Ted+ZzkG6+oapqSyh3Hr4WeSWmfFi\napPwTZHL6WT5gjqWL6jj0ze0cOLcAO+2drCz1UvbWTMIJBAMs+dIJ3uOdPJjNItnV7OupZF1LR5m\nNZSn1U+c6cOmSJ9pWYmbkmIX/pEgDqeDEreTirKilFqf8esapPvLIJn3PfnGMd473MloIERlmZsB\nn/mrQ1rLYqqT8M2Aw+Fg/swq5s+s4qNXLaKzd5h3D3Wwq9WLbuuxRhLAkdN9HDndx2MvHWFmXRnr\nWjysW9rIktk1OJ2TB3G2Jz3MrC/H5w/wu5sXsXh2DZB8gEZ+CfQOmD7jmsqSnI08iFx3pJU74Atw\n6/XNaU2VFqLQSPhmUUNNKTdcOpcbLp3L0PAouw93squ1gz1HOhkeCQJwttvHf7/Vxn+/1UZVeRFr\nm02LeMXCOoqLcvfUK76fdfPqWVy2oimlc0TCcDQQij74qigrytrIg2S6VSR4xcVCwjdHykuLuHxl\nE5evbGI0EOL9tm52tXbwbquXnoERAPqHRnlldzuv7G6nuMjJyoX1rGvxsKa5gary4ui5svWAqpBn\nZyXqVolc93uHO6PHczHZIxlnOgfp6vEV3H0TU5cjdqynGCOc7ASHVITCYY6197Or1cuu1g5Od1y4\nQ7HDAS1za9m8bg4ts6qYUVcO2DO7y+OpGjPONxfdDt4eH9/71d4xx/74Y6ui1xl0OunqGpzwunM5\nASO233myc+fyv1H8fws7FEIdCqUeHk9VRoP8bWv5KqW+D7i01ndMUGYbZnZdrGe11lus15uBbwGR\n9YZfBL6ktT4Rc47fB+4F5gHvAV/UWu/I4qWkxOlwsHh2NYtnV/OJa5ZwtnuIXQdNi7j1VC/hsJnc\ncfBEDwdP9AAwx1MRfWC3oKnKrqoDY1vPEZkGTVffMIFgaNxx0k0NE8+yy+VCQPH9zhOdW2bgiVTk\nPXyVUg7gPuBO4KFJiq8CvoJZzjLCb52nAngK2AtcBxQB3wZ+q5Rar7UeUUp9EHgY+FPMmsRfAp5W\nSi3VWndk76rSN7OunI9cNp+PXDafvqERdh/qZFerl31HuxgJmMA55R3klHeQX79+nLqqEqufuJFl\nC+qyMrEjVdls1UUCa9A3CpxvSU+1P+9lJTiRqryGr1JqMSYMVwJtk5QtAZqBt7TW5xIU2QLMBdZo\nrQes93zOOu9GzGLwXwZ+prV+yHr9C5h1iu8A/i4b15RN1eXFXLV6FletnoV/NMjJLh8v7TjBu4c6\nGLDCqbvfzwu7TvHCrlOUlbi4ZHEDa1saWb24IToGdqqIDayayhJGAyFuvb45rVl+y+fXccCamp3N\n8E6131mIZOW75bsJOA58CvjFJGWXYer3/jivvwncFAleS6QDu04p5cQsAvQnkRe11mGl1MvAZgow\nfGOVFLm4fNUslsysJBQKc+hUrxlPfNDLOatf0ecP8taBc7x14BwupwM1v9YMY2tppL661OYrSF2R\n25lyvePXML5u/dysh+PNmxbykSsXT9jvLLP2RKryGr5a663AVgCl1GTFVwEjwH1KqRsBH/AocL/W\n2q+1Po1ZaS3WX2GWu3wFqAUqgFNxZdqBD2RwGXnntFZWWzqvlluuW8LpjkF2tXawq7WDo+19gFkA\naP+xbvYf62brMwdZMLPK9BMv9TDXU5HVBYCyJdPAiv9T/0BbD9etn5uwXOTrpWuyfmco7NEkovAU\n8lCzFdbHA8A/AauB72AenN0eX1gp9UeYVu6faq17lFKRn8LhuKJ+YOo1Cy0Oh4M5nkrmeCr5nSsW\n0t3v571DJogPHO8iEDSN/+Nn+zl+tp9fvXqUxprSaIu4ZV4NLqd9U3PjgzDXgZXvh2ASuiJZhRy+\n9wDf0Fr3WZ/vU0oFgUeUUndprbsjBZVSXwX+Bvi61vp71uHIHNj4hRVKgAvHd+VItoYejXeeuqoS\nrl03h2vXzcHnD7D3aBe7DnrZfbiTIb+ZCNHRO8wzO07wzI4TVJS6Wb3EPLBbtbie0uL8fQuMF4SZ\nTE+OtJxHAyFWL64fcy55CCYKWcGGr9Y6DPTFHY4MBp0HdFv9ut/DjJz4S631t2LKdmFCdlbcOWYD\nJ5Opg8eT2bCuR587yOu7Tc/IFatnc8sNS1M+h8dTldJ55s+t46bNSwgEQ+w73Mn2fe28ue8M3m4T\n3oPDAd7Yd4Y39p0xm2O2eLh8VRMbVzRRN05/a6b3AcwkhfcOd0aHbL13uJOPXLmYpoaKpN4/Xh1u\n/+glhJ7Yy873z3HodB8v7m6P3p+g03nBAjz19RV4kvyaydYhn6QO5xVKPdJVsOGrlHoUMw744zGH\nN2C6DQ5Zn/8z8IfA7VrrH8e+33q49jpwLef7mZ2Yveh+kEwdMhnE7e3x8dLO8xn/0s6TrJxfm1Kr\ny+OpYn/rubTPM7uulI9ftYjfvXIhbWcHohM7TpwzzyhHAyF2HDjLjgNncfAei+dUR7snZlkBla3B\n7F09PkYDY/tMu7oGJ+1HnawO3h4fO983g2FGA6Ex98cFrFnSMKa17QqF0rqeAhnUL3UooHpkGv52\nhq/D+geAUqoIaAA6tdajwCPANqXUXcDjwDrgAeABrfWQUupm4H8Dfw08pZSKXaigW2vtx/QRP6GU\n2gW8ANwNVDH5+OIpL7abwuFwsKCpigVNVXxs82I6rP3b3m3tQLf1EAqHCQOHT/Vx+FQf//HiYZrq\ny1nX0sj1GxdQV+5Oar3fibpY7BoNIA/BRKGyM3zDjN377UrgeUxL9WWt9WNKqdswkyz+FjgDPKi1\njgwR+4z1/r+2/sX6LGZ871NKqTuB/w8zE+4dYIvWuisXFxQrW2GTznkme8jUWFvGhzbM40Mb5jHg\nG2XP4U52tnrZe6QL/6hZAOhM1xC/fbON377ZRnVFMWubG1jb4mHFgsQLAE30NSOhHB+E2egPT+b+\n5Cp0C2EzTzF1ydoO48vK2g6Z/IDG/mmV7HkmWydhIqOBIAeORxYA6qB3cOSCMsVFTlYtaqB5Tg3L\nFtSysKk6+jUjWy25Xc7o14wP5Uj4vnXgbNKjEJK5D7neQXm8NS6SqX+2FMqf2nbXoVDqMWXXdpgu\nsjnTKteK3C5WL2lk9ZJGbvtwmKPtfeiTfbz23inaO4cAGBkNsfOgl50HTfB4akq5bGUTXX3D+K1l\nM8tL3XT1DdPVN8z2/WcBE8jPvXOS7fvPEg7DwNAIVRXFuF3OpEchTBR46dyfdANURlGIbJDwvchk\nq7vD6XCwZHYNl6+Zy00b53Gma4hdrV7ePnCOY2fOtzi8vcP8+vVjgNWJ74Ch4QA/eVrTPzTK0HAA\nl9MR3T2joqyI/qERBoZG8Y0EqSh1U5PENkuZ7JQMiVvKEqDCThK+F6FcPGRqqi/nxssWsEHN4J8e\n243PH2TIH2DYH4h23IcxK7KNBEKc6fKZTzAbdQ77A5SVFBEOg38kGN3BY2g4wOUrmpKuZ2TERDJ7\nuOWqa0CmEotskPC9SOUqDDy1ZVy2YiY7tJfK8iLWNjcwb0YVP31aRxeJBwiFzj9LCIfClBa7WDSr\nirPWeOOq8qLoQkDXrZ8DTD5aorLMTeuJXgBa5tVMurD6RC3bTANURlGITEn4iqRNNGqhprKEIreT\n0UAInz9AIBiO7mEXDptFgN473InT6aCqrIgwpovi8hUzEz6Yi2+lent8DPgCeOpM0A34AnjjdpZI\n9aFbpgEqoSsyIeErkvLkG8eiD88uXzHzggXVewf80X3dykvd3Pk/VtDRO8zzO09y0jsYXXMiFApH\nR1H0DozwjvYyMDTK7iNm9pvD4Ri3/zV2NEWi+sWHdzIt21wHqAxHE+OR8J1m0gkDb4+P5945GQ3X\nJ984zvb9Z3G7nGOGj8XafbiL3Uc6OdtlRkm4HBAMm9Zu7OjGY2f6ow/wXE4H5aVuykvd0VZzxFsH\nzjLoMw/wykvd3HDp3Giru6tvOGEXw3gt23wFouxsISYi4TtFZCMw0g2Drr7haPCGw2H8IyGC1rY/\nO7SX5jk11FSWRFukxUUu9hztxD8SIBQKj5lJ48CB22UewhUXOQlZD+DALIvZPzRK/9AoX//JO6xZ\n0sC6pR6WBcPs0F5qKkui/cQbl8+MXo/ZTXk04aiJ+PuVr0CU0RRiMhK+U0A2AiOTMKivLqW81M3Q\ncIBwOIzD6cAV86d/fXUpPv8onb3D1ufFBEMw6BuNBq8j8j/WeLTyEhdXrmpi85rZ/ON/7KZnwM/I\n6Pl1HgZ8o7y29wyv7TULALldDoqLXJQWuyktdl3Q2g2GwtF94MbrYpBAFIVEwrfAFUJgeGrLuOHS\nuTz99gmGR6DY6WDQN0p5aRGrF9dz5HQv3f0jRPK4b3CUkmI3DocDpyNMKAwul4OyEjdlJW4WNlVx\nqmOQA20+1FDgAAAgAElEQVRmg1C3y0k4DG6XGX5WVuKmsqwoOrFjNBBiNGAe2vUyQnmJiz1HOqMt\n3kirfElLDTdvWlAQYSrD0cRkJHynuKSnx2YYBhuXz2T7/rNUV5iw7OobJhQKsX3/WV7Z3R4df2sa\ntmZoWWWZmyF/gIGhUYKhMINWSO4/1k1lmRu3y8mBth6K3U4C1vtLil3UV5fyxx9bBcCu1g7ePHCW\no6fPry465A/ym+3ntwB0OsxDvmNn4lcgze49SJUMRxMTkfAtcBMFRqrdEZmGQaRPdzQQYngkSEmR\n83xXRMyDNIfDwdBwgJFAMNqiHQmECYfDDAyZrohB3yhFRU5qrSFqleVF+PwBgqEwy+fXRes3GggS\nCoUpcjmsiRUOfCOBMQ/tQmEz9MznH+Sxlw5zxaomli+oo8h94QJA+Q5ECV0xHgnfKSBRYKTbHZFJ\nGER2CO4fGjFDxgZGCIZNy9PldBAKhaNB67N20QgDwZgle2Nnw42MhugZ8FNa5MLldJh+4ZhU1W3d\nbN9/lrISNxVlRQwNB/DUlbJl2VwWzKxmV6uXN/efi67EFgyFoxuKlhS7uGRRPeuWeli9pIGKmJ2d\nJRBFIZDwnSLsDIzYFvaCmZUEgiFcTgf9Q6OEQmFil0MfCVgTK5I898hoiJHREE6nA7c11OxAWzfb\nnj/E7iOddPT4qCovjo50+OyHlka3ll/T3MjnPryMdw562X+sC93WwxlraJt/JMgO7WWH9uKyNiBd\n22K2T2qskfAV9pPwnaLy1X95pnNwTAv70Kk+HA4oLy2ib2g0a1/H6YD66hJKit2MBkLsOWomXZSX\nuhnwjVJa4mLTypnR4I2+z+lgYVMVC5uq+IOPLOPnzx3k7QPn8PkD+K3RE8FQmAPHuzlwvJufP9vK\n7IZyNiybwboWD/NnVtq6s7NMwpi+JHynMDse6BS5nSyfX8fOVu+Y9RsScZC4BexyQih0/jWn1eKN\nDF9bvbg+OhKiprKEmkq49frmaPDGBlZsq3z5/FoOnui13lNCMBhi4/KZHDrVy/5j3dEZcqc7h3j8\ntWM8/toxGqpLWGttnbR0Xm3C2XPeHh9BpxNX3LFIHdIlkzCmNwnfKS7XodvUUHFBC/vmTQtZ09zA\n//3lHgZ8gTHlnU4HZcUuHA4HNZXF9A2a5SOdTvPAzOV04HI5GPSZCRgOp4Pq8iJuuHTumF8kscF0\nzfq50eCND9tISAPsPtKFw2EeDEZGX1y2Yia/c8VCTnoHePDR9/D5gwzHPLDr7PPz3Dsnee6dk5SX\nuFltTexYtaieshJ39OsVuZ2sWdLAzZsW2j7uWlwcJHzFpBK1sNX8Oq66ZBZP7zhJOGRGO5SVuPns\nlqUsnl0T3amivrqUpvpyhvwBM0rCH6CuqpTKshCBYIjf3byIxbMvXKHs5k0LaZ5TA8BVl87H6+2/\nILB2tnbgdEBJsfk2jrTKt+8/w6BvlNISN28dOMvNmxby+p726JA3B+YB4RxPJYPDo3RYk0OG/AG2\n7z9rTZ026xl7e32Ulbgpcp+fzSehKbJBwlckJVG4XLd+LnuOdlkP4Mw27ZEgjQ/sbc8fYtchL8Mj\nQXoH/NFV0BIFL4xt4bb3DHPt6lljXo8s5FNa4mJ4JEhNZUl0nYnX97WDw4F/JMhz75ykeU4NB9p6\nKCl2MWD1U5eXFYED/uLWtfhHQ2Zn54MdHD9r1pkIBMPoE5FWtZ+SIhdlJS46en3W0LrM+ollEoaQ\n8BVp89SWcbm1ti9cGCCRhW90WzcH2ropLXZTXhpkaDhARVkRl68w4ZxoacjY1uXru08zq7YUMMPd\ndh/pjC6wU15ahH8kwEc2zuOyFU3otm6G/cHotthDwwHazvYTCIaoKi9m2FpHoqzUxWgghMPhYN6M\nSubNqOSjVy6iq2/Y2sPOy75j3dE6+EeD+EeDPPzk+1SUuXE5HJSVurlyVfILwceTSRjTm4SvyEhs\ngMD5IPX2+Hhh5ykOtHXjs3a8qKsuHTNk7NCp3uhmn5G+U93WTc+Af8zykV19w/zLf+1l2B+kvNT0\nyzocZqLG2a4hQqEwP3/2EB29w2xcPjO6DgWYPuiXd7cz6DMt3opSN8MjQbr7/JSXnu+WiKivLmX1\nkgYqy9wcPNFjhtKFxz44HLT6ufuGRnlmx0nOdQ+zbmkjKxfWJ9zZeSISutOXhK/IWPwDssoyN939\nI3h7fNERD2ZkhJ+66hI2rTRhHVmWEkzf6e7DnRw/02/6ZR1mH7mSYhfgiLZYB4cDHD7dx5LZNbyx\nt51QKIzT6WB4xPTXblw+kxsuncv2/WcJBEP4R4K4XU5qKksYDYT4H1cs4NdvHAdMsL+yu53GmlIu\nW9EEnO/u8PkDBGJS1+mAT1yzhI7eYXa1eqO7dvQPjfLqnnZe3dNOsdvJykX1rGvxsKa5gary4jzc\n/eTIkLbCI+ErMhbbTTAaCNF6opfiovMjDsA84CordXHr9c0cOtXLT54+SEePj3JrA02fP8DpDj+E\nw9EhbFVVRQz7gwSCIUatxdgdQG//CMsX1KJPdNPV5ye+9zXSGu/qG+aR5w9Fjxe5zXTmSOCf7RrC\nPxLk337zPq/uaedzH14WvY74IWclxW42LJuBp7aM39+ylONn+k0/cWsHp7yDgNm7bldrB7taO3A4\noGVODeuWmmFsM+rKs3a/UyVD2gqThK/IunA4HG2pRo/BmFZuZAJFpP932fxatu87O2b6ce/ASHTd\nX4LnZ84N+kf59RvHaawpxT8SjPb/RrYkAtPCS/RQS82vY4Py8Mru9uhGng6g9UQvR073jqlzkctJ\ndUUxbpeDyphWrNPhYNGsahbNqubjVy/hXPcQ77Z2sLO1g9aTPYTDZpb0wZO9HDzZyy+eP8ScxgqW\nzqtl5cI61i714MzTxI5EQ9qa59RQX12acEdnkNZxvkj4iozFhlyR28kcTyUnvQNjWqQup4NLFjVQ\nX10a7c+NnzLc2TdsbZB5ftdjYMw6v2CCLRgMMeAL8IWPrgRIGCaQuE/65k0Laawp5d9+8/6YOtZa\nIyYi19EyryY6jvmK1bPHDaUZdeVs2TifLRvn0z80wnuHOtnV6mXf0S5GrNb/qY5BTnUM8sKuU5QW\nu7h8ZRPrWhpZNr8uqZ2Ywcw27Ip7OJmq3gE/P33mYHTd40grWFrH+SfhK7IiEnKRh2xOp8NsBRSG\noiIn16+bw+9d38yTbxy7YDugyASKz314GY+9dJj327rpG0x+6vJ4wRsx3gadr+5pH7Mbsppfh5pf\nd8HmoAArWmbg9fYnPH9si7GqvJirVs/iqtWzGBkNsu9YF2/sO8POgx3R7pThkSAv7jrFi1YQX7K4\ngSVzqlk2v475M6sSfo0n3zjGe4fNGsaphGPsL8ZIN1DsXyCRa5Wxy/kn4Suy6kBbt/khD5sf8pqK\nIoqL3Fy3fm70T+D47YAiIyMiC+kk0xIMYx7sRfp0Jwqk8WaTfelT69BtZjhZfXVpdKRG/HC5iUzU\nYiwucrGuxcNcTyXnun34R4P4hgMMWbs7gwnit98/x9vvnwNgRm0ZH/rAPNa1NFJfXTqm/pH7kmo4\njtcHLuwl4SuyLhgKma3hMQ+qEq2XEAmS2NA1IxtMII23LkTEyGiQU97B6L5t4wVSZIPN8aj5dSZA\nkwjxeMlOEfbUlvGBZTPYob2UFrv54NJG1i+dwa5WL28dOMeJcwPRsud6fGx95iBbnznIgplVrGtp\nZEFTFeFwsuvEJTZeH3ikrjLhI/8kfEXWeGrLqCxz094xaBZAdzsv2FMt9ofcrM0QM5FhJEhxkZMB\nX2BMX6zbCYGx3b74R8z05IqyooThDlww/C3Sfxtbn3ytsZBoQsXsxgo2Lp/Jdx/bjc8fYGg4MOZB\n5fGz/dEZd+WlZopzaZGLNc0NWa3HRMdF7tgWvkqp7wMurfUdE5TZBnwy7vCzWustceUcwG+AV7XW\nfxv32jmgMe4c92itv5525UVC3h4fA74AjTE/vLGrkcGFD8AOtPWMGflQWuxiyB/E5TRbY4wGwzic\n1jJoFocDAsEQpSXnJzTEt9biQ3XAF+DW65sn7R9ORapThBO9FjtLsKq8mDVLGpjjqWRXq5fdhzoZ\nshalj0wa6QWe3XGS1/ac4ZLF9XzuI8soLb7wx3iikQvj1VFCN7/yHr5WUN4H3Ak8NEnxVcBXgB/F\nHPPHna8Y+Bfgw8Arca/NxATvZqA15qUBRM7E9tlG+i1jxf6QR8KrprKEy1fMZE1zIz94fJ8JG4eD\n0mJndISECaBwdPTDFStncd36ORecczyJgjfTNRay0WJMdI4PLJtBIBji4Ime6HTnzj7zrR8Km8km\n2/efY4f2smJhPetaGlnb3EhNZQnbnj/EnqOdF4xoEIUlr+GrlFoMPAysBNomKVsCNANvaa3PjVNm\nvXW+aqAnQZFVQADYrrUOJnhdZFE6QZYoeCIz1AAuXzGTj1y5mK6uwehKaaOBEKsX1/N71zdnpS6Z\nBmg2WoyJzuF2OVmxsJ4VC+v5zAdbONYxxHd/sQvfcCA6hC0QDLP7cCe7D3fyYzTVFcUM+EZxOqCi\nrEhGLhSwfLd8NwHHgU8Bv5ik7DJM/d6foMwHgReBe4HdCV5fBRyW4M2fdIIs0XKSsefwNFTgCoVS\nPncq5XMdTqlMYEhU1uFwsHFFEx+8dC47tJdAMERjTSkjoyF0Ww+hcNhMTBk0056DQM/ACIFgmGNn\n+mmoLsXptG/HjmxKtLj9VJTX8NVabwW2AiilJiu+ChgB7lNK3Qj4gEeB+7XWfut834wUHud8q4CA\nUuoJYANwCnhQa/3TzK5ETCRXLcF0zl0ILb5UJjBMVjbRL5TB4VF2H+5k+76z7D3aOWZn5wHfKP/y\nq71UlxexprmRdUs9rFhQl/ICQIUi0eL2U1VyU2vsscL6eAC4CdNP/HngBymeow7Tt7wFE94/VErd\nnr1qCjG+RKMpIi3bdMvGj0WuKC1i08om7vq9NfzPqxYyo66M8lI3JUXnf7z7hkZ5ZXc73/2P3fzZ\nd1/hn/9zD6/taWfAl719+HItlXs5FRTyULN7gG9orfusz/cppYLAI0qpu7TW3RO8N+IaoFhrPWR9\nvkcptQC4G/j3rNdYCJt99MrFbFppFp5vqCnlaHufWXfioJf2TvNjMDIaYudBLzsPenE6HLTMPb8A\nUCH8pTBdFGz4aq3DQF/c4b3Wx3nApOGrtQ5gHrjFn+PTydTB40k81TOfpA5Tuw4eTxXXrJ/L67tP\nA2aNiBUtM9Ium0wdYsvMnFHN5WvmAnDaO8D2vWfYvred9493EQ5DKGx27NAnenjkuVYWzqrmspVN\nXLaqiea5tQl37LDrv0X8/blm/dxx7+VUULDhq5R6FDMO+OMxhzdghppNOkdSKeUGjgHf1lr/Q9w5\n9iZ8U5zx5vLni8dTJXW4COpw7epZrJxfa85TWzbheSYqm+l9KAI2r5rJ5lUz6Rsc4b1DZvnLfce6\nous+HGvv41h7H7949iB1VSWsbWlkfYsHNd/s7Gz3f4vI/amvNw9h7axLpr+E7Axfh/UPAKVUEdAA\ndGqtR4FHgG1KqbuAx4F1wAPAAzHdCPHni9JaB5RSvwS+qpQ6hOk7/hjwWUwfshB5k8qf8/n407+6\nopjNa2azec1s/CNmAaBdrV7eO9QZ7Qfu7vfzws5TvLDzFGUlZgGgay6dx4LGCspL7YuOyAgYu38h\nZ8rO8A0zdvr+lcDzwLXAy1rrx5RSt2EmWfwtcAYzUuHvJjhfvLsx3RPfBZowAXyL1vrZrFyBEBeB\nkmIX65d6WL/UQzAU4tDJXmtiRwfnrAdaPn+Qtw6c460D53A5HSxbUBed2JFoIo2YnCPTBTsuYmG7\nf7Pa/See1GH8Otix8Hi+70M4HOZ0x6C1O4eXo+2Jv/bCJrMA0LoWD3M8FRnv7JyMAvmeyOhCC7bP\nV4hCNV0WHnc4HMzxVDLHU8nvXLGQ7n4/h87088rOkxw43m3WawaOnenn2Jl+fvnKUTy1paxrMSMn\nmufW4HIW8mhWe0n4CpGCfK2CVojqqkq4aXEjH2hpxOcPsOdIJ7taO9h9uBOftQCQt2eYp98+wdNv\nn6CyrIg1SxpY2+Jh1aL66JKhwpDwFUKkrKzEzcblM9m4fCaBYAh9ood3D3aw65CXLmsBoAHfKK/t\nPcNre89Q5HaycmE9a61+4uqKwtnZ2S4SvkKkINNV0C5GbpcJ1pUL6/nMh1poOzsQ3dk5slD8aCDE\nu4c6ePdQBw5gydyaaD9xU719OzvbSR64jU8euEkdxq3DdHjglo06eHt8vGs9sDt4opdQgryZ1VAe\n7SdeNLs6qZ2dC+ReyAM3IfJturd2k+Wx9qT70AfmMeAbZfdhM7Fj75Eu/KNmscH2ziHaO4/zm+3H\nqakoZm1LI+taGlm+oI4i98XbTyzhK4TIi8qyIq5YNYsrVs1iNBBk/7FuM574UAd91lKYvYMjvPTu\naV569zQlRS5WLTYLxa9e0khlWZHNV5BdEr5CiJRENiXNZEumIreLNc2NrGluJBQOc/R0Hztbvbzb\n2hFdAMg/GuQd7eUdbRYAWjqvJto9UQhrfWRK+nzHJ32+UgepQ5wXd7fz+MuHGRoOUF7q5oZL52Z9\nnHN756DVT9zB4VO9CaeuLppdzSWL6lnX4mH+zMq8TOyIJ32+Ytqw4yGXOM/b4+OlnSejm3kODQfY\nvv9s1sc5z2qoYFZDBTdevoDeyAJAB73sP94dXQDo6Ok+jp7u4/HXjlFfXcK6Zg/rljaydF7tuLtZ\nFxoJXzElTJdZZWKsmopirl4zm6utBYD2HjULAO0+fH4BoK4+P8/tPMlzO09SXuJm9ZIG1rY0csni\nBspKCjfiCrdmQljOdA5O21llhcRTW8Y16+eO6Xa4fEX+/juUFLu4VHm4VHmor6/g9V0no+tOdPQO\nAzDkN63x7fvP4nZFFgDysLa5kbqqkrzUM1kSvkKIpN1yw1JWzq/N+IFbplwuJ8sW1LFsQR233tDM\nKe8gO62JHcfPmH7xQDDM3iNd7D3SxU+e0iyaVWUe2C31MLuh3JZ+4lgSvqLgNTVUyKyyAhK/h5zd\nHA4Hc2dUMndGJR+9chFdfcPWkphe3m/riS4AdLS9n6Pt/fzny0eYUVcWnWHXPKfGlp2dZbTD+GS0\nQ4HVwc4HboV0H6Z7HVKpx9DwKHuOmH7iPUc68fmDF5SpLCtibbOZ2LFiUT0lSe7sLKMdxLRRSK0t\nMTWUlxZx2YqZXLbCLAD0flt3dKH47v7zCwC9uqedV/e0U+x2smKhmdixpqWR6vLcLQAk4SvSJkO/\nxFTidjlZtaiBVYsa+OyHlnLsTH90AaBT3kEARmIXAPpvaJ5jTexY2sjMuuwuACThK9IiQ7/EVOZw\nOFg0q5pFs6r5+NVLONc9FJ3YcfBkD+EwhMPQerKX1pO9bHvhELMbK6L9xAtnZT7DTsJXpGw6Lygu\nLk4z6srZsnE+WzbOp39ohN2HO60FgDoZsSZ2nO4Y5HTHIE++cZzaymJ+ct+NGX1NCV8hhIhRVV7M\nlZfM4spLZjEyGlkAyMt7hzroGzITO3oGRjL+OhK+ImWyoLiYLoqLXGb3jZZGQqEwh0/3jhlLnAkJ\nX5GWmzctZOPymYA8cBPTg9PpoGVuLS1za7NyPglfkTYJXSHSNzWW/xEii7w9vugwOSHsIi3fPJJx\nsfaTIXKiUEj45on80NtPhsiJQiLdDnmQ6Ide/uwVYnqT8BXTRmSIXIQMkRN2km6HPJBxsYVDhsiJ\nQiHhmyfyQ1845P6LQmBb+Cqlvg+4tNZ3TFBmG/DJuMPPaq23xJVzAL8BXtVa/23ca78P3AvMA94D\nvqi13pGFS0iZ/NALISLy3uerlHIopb4G3AkJd4WOtQr4CtAU8++WuPMVAw8BH44/n1Lqg8DDwAPA\nOmAP8LRSqjHzKxFCiPTlteWrlFqMCcOVQNskZUuAZuAtrfW5ccqst85XDfQkKPJl4Gda64es8l8A\nrgfuAP4uzcsQQoiM5bvluwk4jmnRHp2k7DLML4f3JyjzQeBFYC3QG/uCUsoJXGG9DoDWOgy8DGxO\nrdpCCJFdeW35aq23AlsBlFKTFV8FjAD3KaVuBHzAo8D9Wmu/db5vRgonOF8tUAGcijveDnwgvSsQ\nQojsKOTRDiusjweAfwJWA9/BPDi7PYn3R/b8GI477gdKs1A/IYRIWyGH7z3AN7TWfdbn+5RSQeAR\npdRdWuvuSd4fmUJWEne8BBhMpgIeT+ZbhWRK6iB1kDokVij1SFfBhq/VP9sXd3iv9XEeMFn4dmFC\ndlbc8dnAyWTqYPcW2YWwTbfUQepQaHUolHpkGv4FO71YKfWoUuo/4w5vwHQbHJrs/VZ4vw5cG3NO\nJ3A15qGbEELYxs6Wr8P6B4BSqghoADq11qPAI8A2pdRdwOOYcboPAA9orYfGOV+87wBPKKV2AS8A\ndwNVmHHBQghhGztbvmHGToq4EjiNGY6G1vox4DbMw7U9wDeBB7XW905wvjG01k9hJnN8CXgHM3xt\ni9a6KzuXIIQQ6XGEw5NNMpu2woXQpyR1kDpIHQqzHh5PVaK/tpNWsH2+QghxMZPwFUIIG0j4CiGE\nDSR8hRDCBhK+QghhAwlfIYSwgYSvEELYQMJXCCFsIOErhBA2kPAVQggbSPgKIYQNJHyFEMIGEr5C\nCGEDCV8hhLCBhK8QQthAwlcIIWwg4SuEEDaQ8BVCCBtI+AohhA0kfIUQwgYSvkIIYQMJXyGEsIGE\nrxBC2EDCVwghbCDhK4QQNpDwFUIIG0j4CiGEDSR8hRDCBhK+QghhA7ddX1gp9X3ApbW+Y4Iy24BP\nxh1+Vmu9xXq9HHgQ+F3MtTwK3KW1How5xzmgMe4c92itv575VQghRHryHr5KKQdwH3An8NAkxVcB\nXwF+FHPMH/P/fwCsA24GioF/s4591vpaMzHBuxlojXnfQPpXIIQQmctr+CqlFgMPAyuBtknKlgDN\nwFta63MJXp8LfBq4Xmv9lnXs88ALSqkva63bMeEdALZrrYNZvRghhMhAvvt8NwHHMaF4dJKyyzC/\nHN4f5/UrgBDwWsyx14EgcJX1+SrgsASvEKLQ5LXlq7XeCmwFUEpNVnwVMALcp5S6EfBh+nTv11r7\ngbnAudhg1VoHrD7eeTHnCCilngA2AKeAB7XWP83eVQkhROoKebTDCuvjAeAmTD/x5zF9ugDlwHCC\n9/mB0phz1GH6lrdgwvuHSqnbc1NlIYRIjm2jHZJwD/ANrXWf9fk+pVQQeEQpdTemJVyS4H0lQGS0\nwzVAsdZ6yPp8j1JqAXA38O85q7kQQkyiYMNXax0G+uIO77U+zgVOADOUUg6rLEopNzAD072A1jqA\neeAWf45PJ1EFh8dTlWbts0fqIHWQOiRWKPVIV8F2OyilHlVK/Wfc4Q2YboVDmAdtbsyDt4irMNf0\nmlLKrZQ6qZS6K8E59iKEEDays+XrsP4BoJQqAhqATq31KPAIsM0Kz8cx43kfAB6wuhGGrEkYDyul\n/h9M6P4r8GNrmBlKqV8CX1VKHcL0HX8MMwb4pjxdoxBCJGRnyzds/Yu4EjiNGY6G1vox4DbgdmAP\n8E3MSIV7Y97zeczwst8AvwKeBf4o5vW7ge8B37XO8RngFq31s9m/HCGESJ4jHA5PXkoIIURWFWyf\nrxBCXMwkfIUQwgYFO9Qsl5RSLuB+4A+AKuC/gT9JtIaEVX4D8I/AWswwtr/RWv8kz3WYcIW3TCW5\nylzW70Madcj6fbAWYPom8CGgDHgT+JLWet845XPx/ZBqHXLy/WCtmfIPwPWYxtl/A3dHHmInKJ+L\ne5FqHXL9s3E58CpmHZmXxymT8n2Yri3fvwY+h3mgdzVm3PBjiQoqpTzAU8AOzIiL72JGWHwoX3Ww\nRFZ4a4r5d0uGdUAp5VBKfQ2zyty4DwByeB+SroMlq/dBKeUEfolZxOmjmKGLvcBzSqn6BOWzfh9S\nrYMl698P1oqDTwI1wLWYSUqzgCfGKZ+Le5FSHSw5+dmw6lMB/ISYkVkJyqR1H6Zdy1cpVQz8GfBF\nrfVz1rFbgaNKqU1a6zfi3vJ5oFtr/efW5weVUuuBvwCeyUcdJlvhLV2prDJHDu5DqnXI0X1YA1wO\nLNdaa+vr3AZ0YZYqjW+95OI+pFSHXH0/YCYo7QP+SmvdZn2tfwB+qZSq0Vr3xpXPxb1IqQ45vBcR\n38FM6FoyQZm07sN0bPmuxfyZ/2LkgNb6OHAMs+5vvM1A/J8aL2GGxuWrDpOt8JauVFaZy8V9SLUO\nubgPxzEBdzDmWKT1XZugfC7uQ6p1yMn3g9b6rNb6MzGhNxf4AibY4oMXcnAv0qhDrn42UErdBNyI\naShNJK37MO1avpg/78GaghzjdMxrseYA7yQoW66Uqtdad+WhDpOt8JaWFFeZy8V9yPZKd+l8/S7g\nt3GH/wzT7/p0grdk/T6kUYecfD/EUkr9CtMF0g1cN06xnHxPpFiHnNwLpVQjZkGu24GeSYqndR+m\nY8u3HAglWOM3djW0+PLxq6dF/qMmKp+LOky2wls+5OI+pCrn90Ep9VHg68C3I10AcXJ+H5KoQz6+\nH+4BLsM8aHpGKTU7QZlc34tk6pCre/ED4L+01ol++cVL6z5Mx/D1AU7rIUes2NXQ4svHr54W+TxR\n+VzU4R5ghtb6H7XW+7TWPwf+HPicUqouzTqkKhf3IVU5vQ/WUqP/ATyitf7LcYrl9D4kWYecfz9o\nrfdqrd8GbgVcmFE58XJ6L5KsQ9bvhVLqDzBdg38R99J4D93Sug/TMXxPWB9nxR2fw4XdAJHy8b9x\nZwMD4/RBZb0OWutwzNKaEZHFgebFl8+RXNyHlOTyPiilvorZA/BftNaJfsgjcnYfkq1Dru6DUmqG\n9eA39mv5gMNceM2Qg3uRah1ydC/+ANP9d0Yp1c/5/uTfKqW+l6B8WvdhOobve0A/ZhgLAEqphcAC\nLhkaVjQAAALfSURBVOw0B/Mnz9Vxx66zjuelDkms8JYPubgPKcnVfVBK/SXwN5hdrf98kuI5uQ+p\n1CGH3w8LgZ8ppS6N+Vo1gAL2Jyifi3uRUh1ydC8+CyzHjEJZA3zYOv6HwL0Jyqd1H6bdAzettd/6\n7fUtpVQH4MUsvvOi1vqtBKurPQz8pTUB4B+BD2LWA/5w4q+QkzpMtsJbNky2ylzW70Madcj6fVBK\nrcb0rz6MGZvZFPNyHzBKju9DGnXI1ffD28ArwENKqTsxa2H/PXAO+FGevidSrUPW74XW+nTs50qp\nEev/ntJad2TrPkzHli+YfqKtwE+B5zFDnCIzZOJXVzsHfATzH3Un8MfAbVrrF/NYh2RWeMvUZKvM\n5eo+pFKHXNyHT2F+Dv4QaLe+XuTf/4uZ8JDr+5BqHXLy/aDNpgQfB94Ffo0ZCtkDXGMFWc6/J9Ko\nQz5+NiAHPxuyqpkQQthgurZ8hRDCVhK+QghhAwlfIYSwgYSvEELYQMJXCCFsIOErhBA2kPAVQggb\nSPgKkQal1ItKqbQXkRdCwleI9MTPxhMiJRK+QqRn3D29hEjGtFtYR4hkWBsn3gv8LjAfs0rWG8CX\ntdZ77KybuDhI+AqR2E8wC6f8FXAEWAp8DfgZcImN9RIXCQlfIeIopUox+6f9idY6slbsK9a6st+y\n9vcSIiMSvkLE0VoPY3atRSk1B9PqXQr8DuYhW7F9tRMXCwlfIRJQSn0YeBCzg0I/Zn3ZyH5c8rBN\nZExGOwgRRym1BPgVsANYrLWu0Vpfg1ncW4JXZIWErxAXuhSz++zXtdbHYo7fiOl2kJ8bkTHpdhDi\nQu9g9g57QCn1IFAK/C/gMkzLt8IqJ61gkTb5DS5EHK31YcwGiAuAJ4D/C2hgPabluxmZ4SYyJHu4\nCSGEDaTlK4QQNpDwFUIIG0j4CiGEDSR8hRDCBhK+QghhAwlfIYSwgYSvEELYQMJXCCFsIOErhBA2\n+P8B+BrrLF79BLIAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.lmplot(x='al', y='ri', data=glass, ci=None)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** How would we draw this plot without using Seaborn?" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhUAAAFxCAYAAADEaVqvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XmcVOWd7/FP9QINdrMIDYIggoQHkcgiJu6oGEAJyqhM\njIkJd66S2WIGYsLMDVFJesyoxHhJXhlNNGqiCQFJUMIIBhWN8QZFBUHgJyiyK4tsLVSvdf84VUV1\nUd3Vy+lav+/Xq19Nn/PUc86vTtPnV895lkAoFEJERESkrQrSfQIiIiKSG5RUiIiIiC+UVIiIiIgv\nlFSIiIiIL5RUiIiIiC+UVIiIiIgvitJ1YOfcQ0Chmd3WRJkFwI1xm1eY2fgEZW8EFgBnmtn2mO17\ngZ5xxWeb2T2tPnkRERE5ScqTCudcAJgDTAceSVJ8ODALeCJmW1WCOvsADwOhuO298RKKS4HNMbsq\nW3ziIiIi0qSUJhXOuUHAo8A5wPYkZTsCg4HXzWxvkqp/BawFLo/bPhyoBf5mZnWtOWcRERFpnlT3\nqbgQ2IZ3s9+apOxQvKRnU1OFnHP/DPQGfphg93DgfSUUIiIi7S+lLRVm9hTwFIBzLlnx4UA1MMc5\ndzVwHFgIVJhZVbiOIUAFcBnQrZE6ap1zS4AxwC7gQTN7su3RiIiISKxMHv0xLPx9I3ANXj+MW/H6\nTuCcKwJ+A9xrZuubqKM7Xt+N8XhJyWPOuWntd9oiIiL5KW2jP5phNl7CcCT887vOuTpgvnNuJvBN\noA64P+51gZh/jwU6mNmx8M/rnHMDgJnA4+125iIiInkoY5MKMwsBR+I2R1ok+gNfB/oCh8OPUiKt\nLu865yrM7L/MrBavo2Z8HV9OdvxQKBQKBALJiomIiOSKNt/0MjapcM4txJvH4vqYzWOAIN7w0Mtp\neP5jgPnA1XgtEkXAh8CPzewnceUae1wSFQgE2LfvaFtCyFjl5WU5Gxsovmyn+LJXLscG+RFfW6Uz\nqQgQkxU554qBHsABM6vBSxAWOOdmAM8Co/AedcwNP85oMCTVOdc3/M9tZnYovO2PwPecc1vw+mZM\nAb6K10dDREREfJTOjpohGk5WdTGwG2/YKWa2CLgFmAasA+7DG7lxZ5I6Y80Efg7MC9dxMzDVzFb4\ncP4iIiISIxAKxd+HJSyUq81c+dCEp/iyl+LLXrkcG+RFfG3uU5HJQ0pFREQkiyipEBEREV8oqRAR\nERFfKKkQERERXyipEBEREV8oqRARERFfKKkQERERXyipEBEREV8oqRARERFfKKkQERERXyipEBER\nEV8oqRARERFfKKkQERERXyipEBEREV8oqRARERFfKKkQERERXyipEBEREV8oqRARERFfKKkQERER\nXyipEBEREV8oqRARERFfKKkQERERXxSl68DOuYeAQjO7rYkyC4Ab4zavMLPxCcreCCwAzjSz7THb\nvwLcCfQH1gLfNLPVPoQgIiIiMVLeUuGcCzjnfgBMB0JJig8HZgGnxXxNTVBnH+Dh+Pqcc1cBjwL3\nA6OAdcDzzrmebQxDRERE4qS0pcI5NwjvJn8OsD1J2Y7AYOB1M9ubpOpf4bVCXB63/TvAb83skXCd\n3wCuBG4DftTS8xcREZHGpbql4kJgG14LxNYkZYfiJT2bmirknPtnoDfww7jtBcBFwMrINjMLAa8A\nl7bwvEVERCSJlLZUmNlTwFMAzrlkxYcD1cAc59zVwHFgIVBhZlXhOoYAFcBlQLe413cDTgF2xW3f\nA5zf+ihEREQkkUwe/TEs/H0jcA0wB7gVr+8Ezrki4DfAvWa2PsHrO4e/B+O2VwElvp+tiIhInkvb\n6I9mmI2XMBwJ//yuc64OmO+cmwl8E6jD64QZKxD+fjz8vWPc/o7Ap+1wviIiInktY5OKcP+HI3Gb\nIy0S/YGvA32Bw+FHKZFWl3edcxVm9l/OuU+BPnF19AV2NuccysvLWnPqWSGXYwPFl+0UX/bK5dgg\n9+Nrq4xNKpxzC/Hmsbg+ZvMYvMcZm/FGehTF7ZsPXI03dBTgtXC5SD+OArz+Fw835xz27Tva6vPP\nZOXlZTkbGyi+bKf4slcuxwb5EV9bpTOpCHDiUQXOuWKgB3DAzGrwEoQFzrkZwLN480zcD8w1s2PE\nDUl1zvUN/3ObmR0K//sBYIlz7m3gJWAmUAY80m5RiYiI5Kl0dtQM0XCyqouB3XjDTjGzRcAtwDS8\nlof7gAfN7M4kdUaZ2XK8Sba+DbyJN0x1vJl94k8IIiIiEhEIhZJNapm3QrnazJUPTXiKL3spvuyV\ny7FBXsQXSF6qaZk8pFRERESyiJIKERER8YWSChEREfGFkgoRERHxhZIKERER8YWSChEREfGFkgoR\nERHxhZIKERER8YWSChEREfGFkgoRERHxhZIKERER8YWSChEREfGFkgoRERHxhZIKERER8YWSChER\n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\nUFIhIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr5Q\nUiEiIiK+UFIhIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBS\nISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr4oSteBnXMPAYVmdlsTZRYAN8ZtXmFm48P7OwMPAn+H\nF8tCYIaZfRpTx16gZ1wds83snrZHISIiIhEpTyqccwFgDjAdeCRJ8eHALOCJmG1VMf9+GBgFTAI6\nAL8Kb/tq+Fi98RKKS4HNMa+rbH0EIiIikkhKkwrn3CDgUeAcYHuSsh2BwcDrZrY3wf5+wJeBK83s\n9fC2W4GXnHPfMbM9eElJLfA3M6vzNRgRERFpINV9Ki4EtuHd7LcmKTsUL+nZ1Mj+i4B64K8x214D\n6oBLwj8PB95XQiEiItL+UtpSYWZPAU8BOOeSFR8OVANznHNXA8fx+kxUmFkV0A/YG5swmFltuA9F\n/5g6ap1zS4AxwC7gQTN70r+oREREBDJ79Mew8PeNwDV4/TBuxeszAdAZCCZ4XRVQElNHd7y+G+Px\nkpLHnHPT2ueURURE8lfaRn80w2zgXjM7Ev75XedcHTDfOTcTr+WiY4LXdQQioz/GAh3M7Fj453XO\nuQHATODxdjtzERGRPJSxSYWZhYAjcZvXh7/3A3YAvZxzgXBZnHNFQC+8xxyYWS1eR834Or7cnHMo\nLy9r3clngVyODRRftlN82SuXY4Pcj6+tMjapcM4txJvH4vqYzWPwHm9sAQ7gnf9FnOiseQneI52/\nhhOMD4Efm9lP4upYTzPs23e0LSFkrPLyspyNDRRftlN82SuXY4P8iK+t0plUBMJfADjnioEewAEz\nqwHmAwucczOAZ/Hmo7gfuD/8OONYeHKsR51z/4CXTPwS+HV4OCnOuT8C33PObcHrmzEFbw6La1IU\no4iISN5IZ0fNUPgr4mJgN96wU8xsEXALMA1YB9yHN3LjzpjX3Io3jPR/gMXACuCfYvbPBH4OzAvX\ncTMw1cxW+B+OiIhIfguEQqHkpfJTKFebufKhCU/xZS/Fl71yOTbIi/gCyUs1LZOHlIqIiEgWUVIh\nIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr5QUiEiIiK+UFIhIiIivlBSISIiIr5QUiEi\n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\n/AO8wGoeFgYWewAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot using Pandas\n", + "glass.plot(kind='scatter', x='al', y='ri')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhUAAAFxCAYAAADEaVqvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xt8VPWd//FXxEjUDaUqaq3U4tp+XGVtbak0WrFVF4u4\nLniN1tS0FXvZ1hZcwV1YVy3aAtbrr15arFCKG+FHobDe8UYvCKXbuqj189Muaqt1Zb0FlQmB5vfH\n9wyZTCaZSXIyM2fm/Xw88khy5jvnnE8O5HzyPZ/v91vT0dGBiIiIyEDtUuoTEBERkcqgpEJERERi\noaRCREREYqGkQkRERGKhpEJERERioaRCREREYrFrqQ5sZrcCQ9x9Si9tlgBnZG1e7e7jc7Q9A1gC\nfNDdX8zY/iqwT1bzWe5+db9PXkRERLopelJhZjXAFcCFwPw8zUcDM4CFGdvacuzzfcBtQEfW9v0I\nCcWxwLMZL73d5xMXERGRXhU1qTCzg4HbgcOBF/O0HQocAqx391fz7PpHwBPAp7O2jwa2A4+7+47+\nnLOIiIgUptg1FQ3AC4Sb/aY8bQ8lJD3P9NbIzL4G7Ad8O8fLo4E/KKEQEREZfEXtqXD3xcBiADPL\n13w0sA24wswmAFuBpcBsd2+L9vFhYDYwDhjewz62m9kqYAzwEnC9u/9k4NGIiIhIpnIe/XFY9Pn3\nwMmEOowLCLUTmNmuwCJgjrs/2cs+3kuo3RhPSEruMLPmwTttERGR6lSy0R8FmEVIGFqj758ysx1A\ni5lNA74B7ADmZb2vJuPr44Dd3P3d6PuNZnYQMA1YMGhnLiIiUoXKNqlw9w6gNWtzukdiJHA+cADw\nVvQoJd3r8pSZzXb377r7dkKhZvY+zsl3/I6Ojo6ampp8zURERCrFgG96ZZtUmNlSwjwWp2VsHgOk\nCMNDP03X8x8DtAATCD0SuwLPA99z9+uy2vX0uGSnmpoaNm/eMpAQytaIEfUVGxsovqRTfMlVybFB\ndcQ3UKVMKmrIyIrMrBbYG3jN3dsJCcISM5sKrASOJDzquCZ6nNFlSKqZHRB9+YK7vxltWw7MNLPn\nCLUZk4DzCDUaIiIiEqNSFmp20HWyqmOAlwnDTnH3ZUAT0AxsBOYSRm5clmefmaYBNwM3Rvs4FzjT\n3VfHcP4iIiKSoaajI/s+LJGOSu3mqoYuPMWXXIovuSo5NqiK+AZcU1HOQ0pFREQkQZRUiIiISCyU\nVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRU\niIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSI\niIhILJRUiIiISCyUVIiIiEgslFSIiIhILHYt1YHN7FZgiLtP6aXNEuCMrM2r3X18jrZnAEuAD7r7\nixnbPwdcBowEngC+4e4bYghBREREMhS9p8LMaszsSuBCoCNP89HADGD/jI8zc+zzfcBt2fszsxOB\n24F5wJHARuABM9tngGGIiIhIlqL2VJjZwYSb/OHAi3naDgUOAda7+6t5dv0jQi/Ep7O2XwLc6e7z\no31+GTgemAJ8p6/nLyIiIj0rdk9FA/ACoQdiU562hxKSnmd6a2RmXwP2A76dtX0X4Gjg0fQ2d+8A\n1gDH9vG8RUREJI+i9lS4+2JgMYCZ5Ws+GtgGXGFmE4CtwFJgtru3Rfv4MDAbGAcMz3r/cGBP4KWs\n7X8GPtH/KERERCSXch79cVj0+ffAycAVwAWE2gnMbFdgETDH3Z/M8f49os+prO1tQF3sZysiIlLl\nSjb6owCzCAlDa/T9U2a2A2gxs2nAN4AdhCLMTDXR563R56FZrw8F3hmE8xUREalqZZtURPUPrVmb\n0z0SI4HzgQOAt6JHKelel6fMbLa7f9fM3gHel7WPA4A/FXIOI0bU9+fUE6GSYwPFl3SKL7kqOTao\n/PgGqmyTCjNbSpjH4rSMzWMIjzOeJYz02DXrtRZgAmHoKMCvonbpOo5dCPUXtxVyDps3b+n3+Zez\nESPqKzY2UHxJp/iSq5Jjg+qIb6BKmVTU0PmoAjOrBfYGXnP3dkKCsMTMpgIrCfNMzAOucfd3yRqS\namYHRF++4O5vRl9fC6wys98CjwDTgHpg/qBFJSIiUqVKWajZQdfJqo4BXiYMO8XdlwFNQDOh52Eu\ncL27X5Znnzu5+/2ESbYuBn5DGKY63t1fjycEERERSavp6Mg3qWXV6qjUbq5q6MJTfMml+JKrkmOD\nqoivJn+r3pXzkFIRERFJECUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiIS\nCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhIL\nJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISi11LdWAzuxUY\n4u5TemmzBDgja/Nqdx8fvX4YcC3QALQBy4AZ7t6asY9XgX2y9jHL3a8eeBQiIiKSVvSkwsxqgCuA\nC4H5eZqPBmYACzO2tUX7+StgNfAw8Algr2h/dwCnR232IyQUxwLPZuzj7YHGISIiIl0VNakws4OB\n24HDgRfztB0KHAKsd/dXczT5ALAGmOLuW6P3/JCQsKSNBrYDj7v7joFHICIiIj0pdk9FA/ACcDZw\nV562hxLO75lcL7r700Bj+nsz+zDQBNyf0Ww08AclFCIiIoOvqEmFuy8GFgOYWb7mo4FtwBVmNgHY\nCiwFZrt7W2ZDM/sdcATwPDApax/bzWwVMAZ4Cbje3X8y4GBERESki3Ie/XFY9Pn3wMmExxoXALfl\naNsMjAP+DDxsZrtn7OO9hFqL8YSk5A4zax60sxYREalSJRv9UYBZwJyMkRxPmdkOoMXMprr7G+mG\n7v47ADM7HfgTobfi34HjgN3c/d2o6UYzOwiYBiwoThgiIiLVoWyTCnfvAFqzNj8ZfR5pZsOAj7r7\nzzLe84qZvQYcEH2/nVComb2Pcwo5hxEj6vtz6olQybGB4ks6xZdclRwbVH58A1W2SYWZLSXMY3Fa\nxuYxQAp4DjgFWGxm70+PDjGzUcAI4Gkz25VQY/E9d78uax9PUoDNm7cMOI5yNGJEfcXGBoov6RRf\nclVybFAd8Q1UKZOKmugDADOrBfYGXnP3dqAFWGJmU4GVwJHAPOAad383Kr78b0JiMRUYBtwE/Mrd\n7432uRyYaWbPEWozJgHnEWo0REREJEalLNTsiD7SjgFeJgw7xd2XEYaINgMbgbnA9cC/Ra9vJRRf\nbiHMV7EK+E9gQsY+pwE3AzdG+zgXONPdVw9STCIiIlWrpqOjI3+r6tRRqd1cldqFl0qlaGlZQ319\nHRMnHkVdXV2pT2lQVOr1S1N8yVXJsUFVxFeTv1XvyramQqQvUqkUZ5+9nLVrvwBAQ8Md3HXX5IpN\nLEREylE5z1MhUrCWljVRQlEL1LJ2bTMtLWtKfVoiIlVFSYWIiIjEQkmFVITGxnE0NNxBmNl9Gw0N\nC2hsHFfq0xIRqSqqqZCKUFdXx113TaalZVVUqKl6ChGRYlNSIRWjrq6O5ubxFV+hLSJSrvT4Q0RE\nRGKhpEJERERioaRCREREYqGkQkRERGKhpEJERERioaRCREREYqGkQkRERGKhpEJERERioaRCRERE\nYqGkQkRERGKhpEJERERioaRCREREYqEFxUQkcVKpFC0ta4Cw7L1WpBUpD0oqRCRRUqkUZ5+9nLVr\nvwDA8uV3cNddWupepBzo8YeIJEpLy5oooagFalm7tnlnr4WIlJaSChEREYlFyR5/mNmtwBB3n9JL\nmyXAGVmbV7v7+Oj1w4BrgQagDVgGzHD31ox9fA64DBgJPAF8w903xBmLiBRPY+M4li+/g7VrmwFo\naFhAY+Pk0p6UiAAlSCrMrAa4ArgQmJ+n+WhgBrAwY1tbtJ+/AlYDDwOfAPaK9ncHcHrU5kTgduDr\nwM+Bi4EHzOzD7v6/MYUkIkVUV1fHXXdNpqVlFQCNjaqnECkXRU0qzOxgwk3+cODFPG2HAocA6939\n1RxNPgCsAaa4+9boPT8kJCxplwB3uvv86PUvA8cDU4DvDCwaESmVuro6mpvHl/o0RCRLsWsqGoAX\nCD0Qm/K0PZSQ9DyT60V3f9rdGzMSig8DTcD90fe7AEcDj2a8p4OQiBw7oChERESkm6L2VLj7YmAx\ngJnlaz4a2AZcYWYTgK3AUmC2u7dlNjSz3wFHAM8Dk6LNw4E9gZey9vtnwuMSERERiVE5j/44LPr8\ne+BkwmONC4DbcrRtBsYREoaHzWx3YI/otVRW2zZAD2BFRERiVs6TX80C5mSM5HjKzHYALWY21d3f\nSDd0998BmNnpwJ+AfwAejF4emrXfocA7g3rmIiIiVahsk4qo/qE1a/OT0eeRZjYM+Ki7/yzjPa+Y\n2WvA+939NTN7B3hf1j4OICQeeY0YUd+/k0+ASo4NFF/SKb7kquTYoPLjG6iyTSrMbClhHovTMjaP\nITzOeA44BVhsZu9Pjw4xs1HACODpqP2vgE/TWcexC+ExSa5HKN1s3rxl4IGUoREj6is2NlB8Saf4\nkquSY4PqiG+gSplU1EQfAJhZLbA38Jq7twMtwBIzmwqsBI4E5gHXuPu7ZrYK+G9CYjEVGAbcBPzK\n3e+NdnstsMrMfgs8AkwD6sk/P4aIiIj0USkLNTuij7RjgJcJw05x92WEIaLNwEZgLnA98G/R61uB\n8cAWwjDRVcB/AhPSO3T3+wmTbF0M/IYwTHW8u78+eGGJiIhUp5qOjo78rapTR6V2c1VDF57iSy7F\nl1yVHBtURXw1+Vv1rpyHlIqIiEiCKKkQERGRWCipEBERkVgoqRAREZFYKKkQERGRWCipEBERkVgo\nqRAREZFYlO003VLeUqkULS1rAGhsHEddnRZ+FRGpdkoqpM9SqRRnn72ctWu/AMDy5Xdw112TlViI\niFQ5Pf6QPmtpWRMlFLVALWvXNu/stRARkeqlngoZNHpEIiJSXdRTIX02adJRjBp1LbAN2EZDwwIa\nG8d1aZN+RDJ9+qlMn34qZ5+9nFQqVZLzFRGR4lBSIX2SSqU4//x72bTpa8C9jBp1GQsXTujWC6FH\nJCIi1UdJhfRJZ7JQD/wDmzZdyYoV60t9WiIiUgaUVMigaGwcR0PDHfT2iERERCqLCjWlTxobx7F8\n+R2sXdsMECULk4HuhZl33TWZlpZVtLdvA4bR0rJGBZsiIhVMSYX0SV1d3c5kAaCxMcxP0dPcFY2N\n4zSnhYhIlVBSIX1WV1dHc/P4Ltu6FmYSFWauir7uvj37/SIiknyqqRAREZFYKKmQWPRUmKmCzU6p\nVIoFCx5gwYIHNGeHiFQkPf6QWPRUawH0uL2aaL0UEakGSiokNrlqLXrbXk16qjmp9p+LiFQWPf4Q\nERGRWJSsp8LMbgWGuPuUXtosAc7I2rza3cdHrx8CXAMcA3QAjwIXu/sfM/bxKrBP1j5mufvVAw5C\npEC9ze8hIlIpip5UmFkNcAVwITA/T/PRwAxgYca2tmg/ewL3A08CnyH0K38PuNfMPubu28xsP0JC\ncSzwbMY+3o4hFJGC9VZzIiJSKYqaVJjZwcDtwOHAi3naDgUOAda7+6s5mowHDgQ+4u5vR+/5fLTf\no4BfEJKS7cDj7r4jrjhE+kO1JSJS6YpdU9EAvEC42W/K0/ZQQtLzTA+vrwNOTicUkY7o83ujz6OB\nPyihEBERGXxF7alw98XAYgAzy9d8NGFygyvMbAKwFVgKzHb3Nnd/GXg56z2XEh5t/DxjH9vNbBUw\nBngJuN7dfxJDOCIiIpKhnEd/HBZ9/j1wMqEO4wLgtlyNzeyrwD8Cl7r7mxn7eC+hdmM8ISm5w8ya\nB++0RaqbJvkSqV41HR0d+VsNAjN7BHjW3S/s4fUaoN7dWzO2nQW0AHu7+xsZ22cC3waudvdZGdt3\nBXZz93cztt0MfMrdj8hziqX5wYgkWCqV4rOfvZPHHmsC4LjjFnHffeeqKFUkGWoGuoOynfzK3TuA\n1qzNT0afRwJvmNkuwM2EkSTT3f2arH1sJxRqZu/jnELOYfPmLX097UQYMaK+YmMDxVdKCxY8ECUU\nYZKvxx47j5tu6tskX+UcXxwqOb5Kjg2qI76BKtukwsyWEuaxOC1j8xjCkNLnou//D/AloNndf5z1\n/l2B54Hvuft1Wft4EhEREYlVKZOKGjK6WsysFtgbeM3d2wmPOZaY2VRgJXAkMA+Y5+7vmtlE4CvA\n5cD9ZrZ/xr7fcPc2M1sOzDSz5wi1GZOA8wg1GiI9SqVStLSsAcLEVeq+L4wm+RKpbqVMKjroWrdw\nDPAw8GlgjbsvM7MmwuRXVwGvEEZufCdqf270/sujj0znAXcC04A3gBuB/QmJxZnuvjr+cKRSaPGv\n/tMkXyLVrWSFmgnQUanPzqrhueBA4luw4AGmTz+VdF0AbGPu3PJZ/EvXL9kqOb5Kjg2qIr7KLdQU\nkb7TYxsRKaVynqdCpCQaG8fR0HAHYe61bVFdwLg+7aMUczWkH9tMn34q06efytlnL9c8ESJSVOqp\nEMky0LqAUtVktLSsiY4ZHtusXdtMS0v5PLYRkcqnpEIkh4Es/qWbu4hUKz3+qDKpVIpbb71bUygP\nQLlOQx3HYxsRkYFQT0UVKbehkkksKizkZ1iquRo0nFNESk1JRRUpp275cktwClXIz7CUN/eBPLYR\nERkoJRVSEuWU4AwG3dxFpBqppqKK6Jn7wOlnKCLSsx57KszsaOC/3P1tMzuGPEuBu/uv4j45iVe6\nW/7uux9ky5ZUSZ+5J3WNCNUtFF8Sa29EqlVvjz9+AXwSWA/8PM9+OoAhcZ2UDJ66ujq+8pWJJZlq\nNpVKsWjRajZseI4xYz7EwoUTWLEivptz+uZTX1/HxIlHDdrNR482iieptTci1aq3pOJ4wgJcAE8D\nC4FfD/oZSazefPNNZsxYAMCcOc0MHz58UI/X01+VqVSKM89cwrp1Q4FLWb4cVq26nSVLTs97gyjk\nL9Xsm09Dg24+laDSa29EKk2PSYW7P5rx7cHA77K2SZl78803GTNmIa2tlwLw0ENz2LDhfEaMqB+U\n4/X2V2VLyxrWrTuQsOp8uEE8/vgXe71BpHs25s9/kU2bpnXbZybdfERESq/QQs11gKrREmbGjAW0\nts4g3GhraW2dvrPXYjB0vbHXRjf2Nf3aVzpBmTlzjyihGPg+Cz3uYE1sVa6TZpUzFcaKJEuhQ0p/\nA8wws9OB3wFvZzdw9wvjPDGpLI2N41i2bAnr1i0EPg/AJz/5IxobT8/ZftGih6IE5e6C9z/Qws/B\nfH4/2LUBlVrMqMJYkWSp6ejodVAHAGb2fNamzDfVAB3uPiq+0yoLHaUoZoxT5+OP6QAMGzaXDRvO\n50MfGjkohZqdN85mINzYM2+c2YWaTU0n5LxB/M//vMLYsdfw7rvXEEp53gGmAiER6akOY6CFmgsW\nPMD06aeSfoQC25g7N55HKHHue8SI+i7XL5VKcdZZy3j88S8B8MlPFlarUq6y46s0lRxfJccGVRFf\nzUD3UVBPhbt/cKAHkuIbPnw4Gzacz4wZc4DBL9TM91dlXV0dU6acwpQpPe8jJELX0dZ2DfBt4MPA\n+cC9wON89rOH9nizTI/KqPT/+NkWLXooSig6a1UWLfopU6ZMLO2JiUjV0YyaFW748OHcdtu3Cm4/\n0G70vg63zD7ejBkLaGs7CagD3kNIKGqBfwAm8MQTc/p0Pn0xmHNnxLXvsCDcmmiekXB9Nmx4tlu7\nDRue7TV5ExEZDEoqZKdizwmQ63gjRuwgjGZeBFi394wZ86FBORcY3Of3cey7p+szZswhLF/eWasC\nP2bMmENiOW8Rkb7QNN2yU5yjN/p7vI99bBTDht0AnAH8hZqaWaQr/z/5yR/R1HRCLMfOHInx5ptv\n7vwaoLl5PM3N42NPptK9OP3dd0/Xp6npRMaObQPuAe5h7Ng2mppOjPXcRUQKoZ4KKSt77PFXUR3I\nDQBceeUF3Htv+q/7eIoPu/7Fn2L27BuiobelnbGxv4+e6urqWLr0rIz3npXYIk0RSbaCRn9UqcSP\n/uhJT4WM+UZvxG2wjpevULPrSIy7gfEMxoiPvihkRtA4f17lPAS1vr6Wm24KQ4n7e27lHF8lFxJX\ncmxQFfEVZ/THYDCzW4Eh7t5jOZmZLSH0g2da7e7jo9cPAa4B0guePQpc7O5/zNjH54DLgJHAE8A3\n3H1DjKFUjGLPCaA5CDpvfmvXPs3atZfS24ygcS0IV87raYTp3Jfy2GNNQP/OrZzjE6l0Ra+pMLMa\nM7sSuJA8K58Co4EZwP4ZH2dG+9kTuJ8wT8ZngJOAfYB7zWy3qM2JwO3APOBIYCPwgJntE3NYFWOg\nz/3L/XiQPUvjsQwbNodSzNiYvvlNn34qy5cfUdB70gvCDeTnVezamb5oaVkTJRT9P7dyjk+k0hW1\np8LMDibc5A8HXszTdihwCLDe3V/N0WQ8cCDwEXd/O3rP56P9HkVYZfUS4E53nx+9/mXC0IIpwHfi\niEmSJ7uHZNKk82NdLbVQXW9+JxEm+gojOOIczpr9KEBEZLAUu6eiAXiB0AOxKU/bQwlJzzM9vL4O\nODmdUETSPR/vNbNdgKMJj0QAcPcOYA1wbJ/PXCpKZg/J8OHDi95bkuOMgLOYPHkOc+euin168OnT\nT2X69FM5++zlTJp0VNmup9HYOI7jjlvEQM5N64WIlE5ReyrcfTGwGMCs+xwEWUYTfitcYWYTgK3A\nUmC2u7e5+8vAy1nvuZSwLsnPgeHAnsBLWW3+DHxiAGGIxKL7hFgt3HDDV2JNbHKt3rpixaqCa1mK\nXfBYV1fHffedy0039b/nSLU6IqVTzkNKD4s+/x64CTgCuJZQcNmc3djMvgr8I/B1d3/TzA6MXspe\nDrKN8GehyKDKd0Mu5c2vkJlPS1Xw2NdZWQdrHyLSdyUbUmpmjwDP9rS6qZnVAPXu3pqx7SygBdjb\n3d/I2D6TsFDE1e4+K9q2N7AZONHdH85oexUw0d0/mucUS/KDCZMyPQRAc3PuBbcq6biVKpVK8dnP\n3rlzFMNxxy3ivvvOLfrPtfM8zgPg2GPv4Mwz96O2tjbvdb711rv56le7Dre95ZYH+cpXtKaISIVK\n7pDSfKL6h9aszU9Gn0cCb0R1EzcTRpJMd/drMtq+Tlje8n1Z+zgA+FMh51Ds8cjZfxn++MeD85dh\nrlUui3HcYimHseQLFjyQMYoBHnvsPG66KZ75L/oa36JFf09Lyyra27exalUHF10UkoJ813nLluxO\nvrBtsH+25XD9BlMlx1fJsUF1xDdQZTtNt5ktNbOfZm0eQ3h88Vz0/f8BvgQ0ZyUU6aTkV8CnM/a5\nCzCOUKxZdko1FG6wjps5FXYq1f0GlQSFxlDOsaYfBdTW7paxmmn+66yCRxHpq1L2VNSQ0dViZrXA\n3sBr7t5OeMyxxMymAisJ80zMA+a5+7tmNhH4CnA5cL+Z7Z+x7zfcvY1Qg7HKzH4LPAJMA+qB+YMd\nXLWrhAmI3nzzTU466U42bZoG9BxDrlgXLpyQc1XScp7pMVtfaz6KFVuSfoYi1aaUPRUddK1bOIYw\nmqMBwN2XAU2EosyNwFzgene/LGp/bvT+ywkjOl7O+Dg92sf9hEcjFwO/IQxTHe/urw9eWP1Xqr8M\nB+O4SZiAqLfehVQqxUknfT9KKLrGkP2+XLGuWLGehQsnMHnyHCZPnsMPfvAZFi1azXHH/ajL8M64\nejUK6Snpz3UudHKyXENXB6PHpljHEZH+KVlPhbt/Juv7R8lKctz9TuDOHt7/OeBzBRxnAbCgn6dZ\nVKUaDVCNQ/Dy9aS0tKxh06aGbu9rb9/W5X3Llv2A/fbbDJzard35598bTb2d4qGHbqC19W8JnWU9\nT8U9GLGk9eU697U3INfQ1ThiK9VxRKR/yrZQs1qVaihc3MftPgdDfDNExqGwm9PxwCIgjJwYNeo6\n4KCM96VYt24ooSOs62yYMCyj3QPRKqgPDGIs5+zc/9q1jbS0PJjzepbzUFIRSb6yLdSUZEv/VTx3\n7qpYZ4gslkmTjmLYsBsI69ndw9Ch32LlytOora3NaPUQcD6hTOc84B4mT57DXXdNzmqXdgIhScn9\n+KG/xZ7t7duAuwgz148HlkTbcst3nP48uirWozsVj4qUN/VUyKAppwmIUqkUixatZsOG5xgz5kOc\neeYxLFv2A9atez8AY8e+RGPjWTvbr1ixntbWbwKrAaet7XhWrtxAU9OJUQ9MI/A7wk08RUgwYMyY\nQ6irq6OxcRw//entPP74ucA71NVdTir1b8AZjBp1GRdc8FGamjoTrYH1DtQQkpt0IvN5IHvgVOfP\nYTB6IYr1CG0gx1GBp8jgU1IhFS8sp70kelRxKcuXw89+diswBAhzNtTU3N7Du98gPN6A+fOvpakJ\nFi6cwEkn3cKmTRcRBhLVAmcDD/ODH/ya9vbt1Nbuyvbt7wK3ANNIpSYwatQsLrjgYzQ1XdzlhpZK\npfjmN2/Nu/R5rrhaWtawYcOz3V5L95Rk30gLeexT6KOrXDfpYiSR/TmOHumIFIeSCgFK91dcMY7b\n0rKGdesOBE4mfTNdv34kIaEI3z/++Be73FwbG8dx881X8vzzV+9ss2nT1J1/IYdRITsIc6xdRFiW\n5kxeeGEzl1/eCNwD/HXGMWvZtGk2tbWruiUU4WZ3BKHHI1130fuad11vkuMZNmwOra3Tga7DV7Nv\npKecMizvz6uQ3oCk3aRV4ClSHKqpkJIN0yvNcVPA3cBTeVvmmsK+vb09Yz93Eta9e5gw+nkNnY8h\nsvP1FHAPa9c+3SXGzpvdccCNpOsihg27kUmTjurx3LoWZ66htfXCbiucdu57B/AAa9fuS3t7W0E1\nCfmGkiZhyLCIFJ+SCunTDSLOmSOLdWNqbBzH2LF/Ijyq+Anhxn0R9fXfJdxcWxk16jLa29tJpVI7\nH0e88MJfALG5AAAgAElEQVRYoPMGHEYmd9DYOI5Ro64iJBInAeuyjpiK2m/MOOZ3gIksX35pD8nT\nL4HppH8Wra3TWbFifY8xdS/OXMmYMYfkSALSyc94YCILF77CwoUTEltA218q8BQpDj3+kIIlrcs7\nra6ujqVLz+LrX/8+K1fOJH3j3rLly/zt336dl1/en02bvs3MmbBy5Q+oqRnC448fQbgB7QDujfaU\nYt26lwE47LBaNm2CsODtRcBsQu3F9wh1GLOBT7HbbvPYtm0IcCW5ut4nTTqK2bPn0No6uuB4UqkU\n69Y5kI4FchVnNjaO45ZbrmLTpm+T+QhnxYqBd/uX+5DhbNU4F4tIKSipkIJvEHE/ly7WjSldtzFk\nyJDMrcBKNm6cSGatRRgNMpGwFt0sQg/DasJadrWsXHkxK1f+O6FXIT03xS+AfwJWEJaluYWQjNzO\ntm3HZBzzTeBWYAdvvbUvCxY8wNq1T9Pa+i1CDcZVwL8AMGzYXCZNOr9bDO3t27jvvrf5+c+P7BZn\n9jDWuro6Lrjgo8yc2defWH5JvEmX02gkkUqlpEIqeibPngsa7yPUP2ROSPUm8CBhxvgF0eefEBKO\nIwjJx91Auk5hb+Bqdt/9j2zd+g/AeuAgQsKyFPibaL9HA1cQejVmACm+8515/OUvzYT/gnXAXxF6\nOh4EoLX1IlasCBNYdY3hHsLcGTvInJirp4SsqekE/uM/ek7cBlIoq5u0iGRTUiFAYTeIwehZGOwb\nU3bdRmvrRUyePAeA5csn0jkh1SnAD4BLgX8FbiIkEHsQkol08vFM9J6lhJqK7Wzduh+h1yLUZ8DV\nhMcdO4AfEda124OQUIQZNv/yl3+Nvj4peu8+hORiYnSczsmrusaQ/i9bR1j+5h4mT97IDTd8JWdC\nUFdXx8KFE5gxI8Q8Z07zgObGqMa5HqoxZpH+UlIhBUtil3d3dTQ0HEZj4zheeSWdIJ3BHntM4d13\n5xMed0yI2tYC26Ov08nHwXQmDbXAHwg9DDuAFwiPRWZnHG8IsDs910TXAWdx6qnXsHGjs2nTVKC3\nhO0EOh+77EJDw6s7E4pcN79UKpWxBgm88sodOUaHhCnH167dl29+89YeE5Suq7amuOWWq6JJvE6I\n5d9B+vzr6+uYOPGonPss9g0+qXVEIqVSk2vYnADQsXnzllKfw6AYMaKeSo0NusbXeVNoBsLNOn1T\nyLxB/eIXG1m5Ml2ncDyhJ+IMYDHhpvt5IMVBB11Oa2uKN964Idq+gs75Lu4mjLJ4B7iZsIjudELC\nMZ/weGU6kGLIkGvYsWNWl3MCct4ws2M49tg7+Oxn30NtbW2X5CHz5tfQcEeUAK5h+vRT6Szo3Mbc\nuaEOZsGCB6LXdhBGiDR1eW/2fBrHHfe9qOgzf/u+6un8c8/p0XObuHX+jLr//Pqrkv//VXJsUBXx\n1Qx0H+qpkIrWW+9K5qOXSZOO4v77v0Nb2xw6E4qH2WuvjXz1qx/n6afnMGbMh2hq+udoWfRro16F\n46mv/y5btswAjo2+/ibhccZ+6bMALgD+L+9//xf5+McP4aqrmrj33u7n1NPN6pRT6tl//3AO06ad\nz5Yt7V1ez1VEu2jRMjZseI7sFVTTOh9n7QucSW8LknVdtfUhQkIRT8FuKpXi61//PmvXdo5mybVP\nTWAlUv6UVEjFK6RuY/jw4WzYMJVPf3oer732T8DDjBr1OPff/88MHz682/4eeyzMwNnevo329oN4\n4ok50ZoizcyYcQPLl19K12LKXWhoeJe77rpuZ89CLtnd+0CXv85feeUOpk3rvpZJjj0xf/6LbNr0\nFUJNx1QgxahRV9Pe/lFSqdTOhOvrX7+JlSv/l1C4CrCQ9vY9u5zP2rVPA9+K4tmry3HgPtaufbpf\njyM6p1Bv69P7iiVpQ2dFSk2PP3qmxx8JNZD4ct3Uc9UppId3rlr1Fo8//iXCDTvUGADMnHk66VoF\nuK9LMWVP3fhAdIM9EICxY//EhAnDomm/O7vfb7zxbhYvfjlayyQkAkcddSu77FLL449/EYBRoy5j\n06aZpKcPh/vYddf/ZPv2K7scs66ujh/+8O6M8w3HuOqqn9LUdELGeaYYNuwGWlsvAu6jru4JUqkZ\nwJKd51DI44hca5FMn74rYYTMAuCb0flfx2OPfbGHxx/N0fEWFKW+Ie46jkr+/1fJsUFVxDfgxx9K\nKnqmpCKh4oov181/4cIJUeHjF4CVhBqK1YT5Kb4FwNix6Qm0vhi9bwELF07YOUNme3t7t5v43Lmh\n12PmzHfo7DGYz157Pc3rr1/bpe1ZZ81jyZLRZM6vERKBZdTW7pZxjN0z2qTrPXqrrej6GpC1vZXJ\nk2+goeEwJk06ihkzFkQ9Mp3vu/zyf+eJJ14EwkiTzF6eXD/PU04ZxsyZQ4C3SC/KBo9z+eWH8rWv\nnZbzmiR9JMZg//8r5c9Iv1uSTTUVIoMo1zP8GTPmRCMpdhCm534DGEFIKNITaE3hqquWcdpp4cY8\naVJmIgKjRv0rcHq344X6h8yb9Pt4/fXzCMNS9wTWsvvur/PrX4+kc1RKp/b29p1JxZlnHsP8+d9n\n06aT88bZUxd/9ynTw8iZ9KOkhobDWL488/U3+e53/5tUKhSgPvTQHDZsOH9nYpHr53nKKcv44AfX\nZyzc9g/ABGprcy/drrkxetfbaJVCk41KSNykdLT2h0gf7NixI/rqIeBjhF6F7rl5be1uOxfkWrr0\nl13myti06V8YNepasteh6KyNyF70LAU8D1zP1q2NbNr0r8BjwLfpXJfkcn70oxd3Ls52/vn3snLl\nlzKOcyzDhs3pdkzoLGbNXg8ke72MsWN/SHt7+851X7Jf33vvf44Sis71S2bMWNDrz7O2djemTPl4\nju21OVoPjjjXsynkWLfeevegHaun9XQKXbyvVIsLSuXQ44+e6fFHQsX/+KMZgLFjf0hHx19Yv353\nYBjwWzonubqTzNktM/867ByK2f1RRVgYrIba2lomTDiCiRP/nRdfPICQrKQYOnQGbW3vp3OxsfQQ\n1m8B3yWsjJpevOyfo3N5CGjnqqu2cuaZn9p5Y7/yykbuvfe/gML/As1dP9K1DqTrsNzM9Ui2ceqp\ns/nUpz4ChBE2ocemucvPCejycz7uuJ+waNHf9+n8+hJT9vv7Oky1v8csxpDYwh9l5R4aO9AhtPrd\nkmx6/CEyiLKHo7a37x3VQuwgLBz2L3SO7jiDvfa6mIsvPoamps4bRRiKOZPMKbVHjbqOpqZQb5FZ\nCDl79g20th5OGAJaC+ygre2vMs4oBfwJmEN45FJHmAzrTuAjdE4PHuaP+MEP5kSJQPeJr/LJVVAZ\nEoruwzkzh+U++mh6GnSor7+KV17ZP7pJha74UFvSfSht5s/5G984t9uQ2Z7OcaATU/V1mOpAjlmM\nIbGFP8oSGRx6/CHSi/Qz/K6/+OuAj9I5VfaDwMNcfPHRTJkyMccNJrPdPVxwwQdyzGi5htbWGVHb\ntIeASwj1E3MI65WMJIyQ+EvGtibgOMICaOn5I2p54YXRGYlA4UvL5+oCb2/Pf5MPw3LPZ/LkOUye\nPIeLLz6E9eundDn+ihXrd/48M39OmT/nQpOCnrr6B1MpjtkXhT7K6mnpdy0RLwNVsqTCzG41sx/m\nabPEzP6S9fFAjnY1ZnavmXVbj9HMXs2xj3+JMxapfKlUipUrX6NzjY8w0VX4L/R3NDS8SlPTid3e\n1/lLuvd2ndLTgW8jzMz5M2AaMIow5BJC4jEW+DIh8UgRlj2P55d/rhsndBR0sxk+fDi33fYtbrvt\nW+yxxx6xnM9gKuZNNF+NSl/1VAuSK0HrKdnIVmg7kZ4UvabCzGoISzbOAua7+4W9tH0auIPwmzyt\nzd3fymizG2Gt6S8As9z96ozX9gP+DBwLPJuxj7fd/d08p6qaioQajPi6TmkdahYuv/wt9tgjPJ7o\nTzV915qNFMOG3Rg9OgiTVB12WC13330ZmUM6P/CB66Oai7MIc0ScRVivpHttx9ixP+w2tLWQm0RP\nz9XTj0HyxZsZd3/mlSj0+sU1b0VfaiQGesxUKsXdd6/n9ddbc9aoFPIz7a3GpdQJgH63JFvi5qkw\ns4OB24HDgXeBB3pKKsxsKLAF+Dt3f6yHNh+L9jcMeC9wTVZScQJwL7C7u+/ItY9eKKlIqMFNKuJb\nAwK63tAmTTpq51wWnRNDdT3mVVcto76+jkceeZKPfOQgamt3Y926ZzIKJLtOtgW51xPJd05xTTLV\nn6LGvly/Ugx/HOgxR4yoZ968ZX3+99S1nuMesucpiePf40Dpd0uyJbFQs4GwlOPZwF152h5KOL9n\nemlzIvAocBnwXzleHw38oR8JhUgXgzVdc/a8C5lf5zpmU9NkRo4cQWNj5yOUpqYT2Lw53a7ryqXZ\n+yz0nOJajXaw55UYyP77mxzkOmYxkpuuj6VUY19MhaygK0FR/2W6+2LCso+YWb7mowkPH68wswnA\nVkJp+2x3b4v2NzfduIf9jQa2m9kqYAzwEnC9u/9kYJFItSnFsu+FHnMwzq3SJ5mKc0nz/uxr4Enq\nCYSnwp/v5/ulUKVYHTfJyjndPSz6/HvgJuAIwspII4HmPuzjvYT6jX8h9BfeYWa7uvuCOE9WKl8p\nbrSFHrPSk4C4xTm8sz/76k8i2DUR2YWxY9s49dSfUltbW5Qkt1ppddy+KeekYhYwx91bo++fMrMd\nQIuZTXX3NwrYx3HAbhlFmRvN7CBCOf2CfG8eMaK+H6edDJUcGyi+pBvs+Orru9+A6+vr+nXc/uwr\nvFbPJZd0n669lyPx8MOfZ8GCBwFobv5SWSYSlfZvM85/K9WgbJMKd+8AWrM2Pxl9HklYdCHfPrbT\nfZGEJ4FzCjmHSi3IqYJiI8WXYMWIb+LEo2ho6Pr4YeLEyf06bl/3NdD4Tj89DHndsqW9oEnCiqkS\n/23G+W+l3MWRKJVtUmFmS4Eh7p65VOEYoI2wJGS+9+9KWDDhe+5+XdY+nsz5JhGpCnEXoxa73kaK\nJ/P6hkJNXd/elDKpqIk+ADCzWmBv4DV3bwdagCVmNpWwxvSRwDxgXg9zTHQZCuPu281sOTDTzJ4j\n1GZMIgziz790o4hUtDjrUFTTUtnS17cSe2LiVsppujuij7RjgJcJw05x92WEOYebCaslzSWM3Lis\nl/1lmwbcDNwY7eNc4Ex3Xx3D+YtIkRVzRVER6TutUtozTX6VUIov2XqKr1KG9lXy9avk2KAq4hvw\n5FdaUExEEqHcF/MSESUVIiIiEhMlFSKSCFqWW6T8le2QUhGRTBq6KVL+lFSISGJo6Gb5y1yeHWqi\nacSLs4KslJ6SCpGEKsWy3yK96Ryhcw5hIerzgYEt2CbJopoKkQRK//KePv1Upk8/lbPPXq55G6Tk\nFix4KBqhs4aQUGikTrVRUiGSQBpeKSLlSEmFiIjEorn5hGiEzrHAQjRSp/qopkIkgRobx7F8edeV\nExsbJ5f2pKTqdY7QeZD29j2Bn0aFmqqnqBZKKkQSSMMrpVxphE51U1IhVS+poyj0y1tEyo2SCqlq\n2YtUaeibiEj/qVBTqppGUYiIxEdJhYiIiMRCSYVUNS1SJSISH9VUSFXTKAoRkfgoqZCqp1EUfZfU\nETMiMriUVCSEfolLudCIGRHpiWoqEkCLR0k50YgZEemJkooE0C9xERFJAiUVItInGjEjIj0pWU2F\nmd0KDHH3Kb20WQKckbV5tbuPz2pXA9wD/MLdr8p67XPAZcBI4AngG+6+IYYQikaLR0k50YgZEelJ\n0ZOKKAG4ArgQmJ+n+WhgBmEN3bS2rP3tBtwCnAT8POu1E4Hbga9Hr10MPGBmH3b3/x1AGEWlX+JS\nbjRiRkRyKWpSYWYHE27yhwMv5mk7FDgEWO/ur/bQ5mPR/oYBb+Zocglwp7vPj9p/GTgemAJ8p59h\nlIR+iYuISLkrdk1FA/ACoQdiU562hxKSnmd6aXMi8CjwUeCtzBfMbBfg6Oh1ANy9A1gDHNu30xYR\nEZF8itpT4e6LgcUAZpav+WhCJdgVZjYB2AosBWa7e1u0v7npxjn2NxzYE3gpa/ufgU/0LwIRERHp\nSTlPfnVY9Pn3wE3AEcC1hILL5gLev0f0OXtChzZABQkiIiIxK+ekYhYwx91bo++fMrMdQIuZTXX3\nN/K8f2v0eWjW9qHAOzGep4iIiFDGSUVU/9CatfnJ6PNIIF9S8ToheXhf1vYDgD8Vcg4jRtQX0iyR\nKjk2UHxJp/iSq5Jjg8qPb6DKNqkws6WEeSxOy9g8hvD44rl873f3DjP7FfBpOus4dgHGAbcVcg6b\nN2/p41knw4gR9RUbGyi+pFN8yVXJsUF1xDdQpUwqaqIPAMysFtgbeM3d24EWYImZTQVWAkcC84B5\n7v5uD/vLdi2wysx+CzwCTAPqyT8/hoiIiPRRKafp7og+0o4BXiYMO8XdlwFNhKLMjcBc4Hp3v6yX\n/XXh7vcTJtm6GPgNYZjqeHd/PZ4QREREJK2mo6PbvViCjkrt5qqGLjzFl1yKL7kqOTaoivhy9fj3\niRYUExERkVgoqRAREZFYKKkQERGRWCipEBERkVgoqRAREZFYKKkQERGRWCipEBERkVgoqRAREZFY\nKKkQERGRWCipEBERkVgoqRAREZFYKKkQERGRWCipEBERkVgoqRAREZFYKKkQERGRWCipEBERkVgo\nqRAREZFYKKkQERGRWCipEBERkVgoqRAREZFYKKkQERGRWCipEBERkVjsWqoDm9mtwBB3n9JLmyXA\nGVmbV7v7+Oj1PYDrgcmEWJYCU939nYx9vArsk7WPWe5+9cCjEBERkbSiJxVmVgNcAVwIzM/TfDQw\nA1iYsa0t4+vbgCOBicBuwI+ibedFx9qPkFAcCzyb8b63+x+BiIiI5FLUpMLMDgZuBw4HXszTdihw\nCLDe3V/N8fqBwDnA8e6+Ptp2AfCImV3i7n8mJCXbgcfdfUeswYiIiEgXxa6paABeINzsN+Vpeygh\n6Xmmh9ePBv4C/DJj26+AHcCnou9HA39QQiEiIjL4itpT4e6LgcUAZpav+WhgG3CFmU0AthJqJma7\nextwIPBqZsLg7tujGoqRGfvYbmargDHAS8D17v6T+KISERERKO/RH4dFn38PnEyow7iAUDMBsAeQ\nyvG+NqAuYx/vJdRujCckJXeYWfPgnLKIiEj1KtnojwLMAua4e2v0/VNmtgNoMbNphJ6LoTneNxRI\nj/44DtjN3d+Nvt9oZgcB04AFg3bmIiIiVahskwp37wBaszY/GX0+EPgjsK+Z1URtMbNdgX0Jjzlw\n9+2EQs3sfZxTyDmMGFHfv5NPgEqODRRf0im+5Krk2KDy4xuosk0qzGwpYR6L0zI2jyE83ngOeI1w\n/kfTWaz5KcIjnV9GCcbzwPfc/bqsfTxJATZv3jKQEMrWiBH1FRsbKL6kU3zJVcmxQXXEN1ClTCpq\nog8AzKwW2Bt4zd3bgRZgiZlNBVYS5qOYB8yLHme8G02OdbuZfZGQTPwQ+HE0nBQzWw7MNLPnCLUZ\nkwhzWJxcpBhFRESqRikLNTuij7RjgJcJw05x92VAE9AMbATmEkZuXJbxngsIw0jvAVYAq4GvZrw+\nDbgZuDHax7nAme6+Ov5wREREqltNR0dH/lbVqaNSu7mqoQtP8SWX4kuuSo4NqiK+mvytelfOQ0pF\nREQkQZRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiI\niEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILJRUiIiI\nSCyUVIiIiEgslFSIiIhILJRUiIiISCyUVIiIiEgslFSIiIhILHYt1YHN7FZgiLtP6aXNEuCMrM2r\n3X189PoewPXAZEIsS4Gp7v5Oxj4+B1wGjASeAL7h7hvijEVERERK0FNhZjVmdiVwIdCRp/loYAaw\nf8bHmRmv3wYcDUwE/h74dLQtfawTgduBecCRwEbgATPbJ45YREREpFNReyrM7GDCTf5w4MU8bYcC\nhwDr3f3VHK8fCJwDHO/u66NtFwCPmNkl7v5n4BLgTnefH73+ZeB4YArwndgCExERkaL3VDQALxB6\nIDblaXsoIel5pofXjwb+AvwyY9uvgB3Ap8xsl6jNo+kX3b0DWAMc249zFxERkV4UtafC3RcDiwHM\nLF/z0cA24AozmwBsJdRMzHb3NuBA4FV335Gx/+1m9iqhfmI4sCfwUtZ+/wx8YuDRiIiISKaSFWoW\n4LDo8++Bm4AjgGsJCUMzsAeQyvG+NqAuep0cbdKvi4iISIzKOamYBcxx99bo+6fMbAfQYmbTCD0X\nQ3O8byjwDvBuxve5XhcREZEYlW1SEdU/tGZtfjL6fCDwR2BfM6uJ2mJmuwL7Eh55vEFIHt6XtY8D\ngD8VcAo1I0bU9/Psy18lxwaKL+kUX3JVcmxQ+fENVNlOfmVmS83sp1mbxxAeXzxHKNDclVCMmfYp\nQky/jBKNXxGGmab3uQswjlCsKSIiIjEqZU9FTfQBgJnVAnsDr7l7O9ACLDGzqcBKwjwT84B57v4u\n8G40OdbtZvZFQjLxQ+DH0XBSCDUYq8zst8AjwDSgHphfjABFRESqSSl7KjroOvnVMcDLhGGnuPsy\noIlQlLkRmAtc7+6XZbznAkJvxD3ACmA18NX0i+5+P2GSrYuB3xCGqY5399cHJSIREZEqVtPRkW9S\nSxEREZH8yramQkRERJJFSYWIiIjEomyHlA4mMxsCzAbOJxRu3gf8Y641RqL2Y4AbgI8Shqt+290X\nFel0+6wf8fW6Gmy5KnCl20Rdu0xxrORbbsxsP0J91N8BuwPrgIvd/ake2ifq+vUjvqRdvwOB6whr\nKO1C+N0yLaM4Prt9Yq5fP2JL1LXLZGafBH5BWDsr52jI/l67au2puBz4PKEQdBxh3otluRqa2Qjg\nfmADYQTKjYQRJ39XlDPtn8spML5IvtVgy0qhK90m9NrFvZJv2YiGdC8nLBR4KmE4+FvAQ2a2V472\nibp+fY0vkqTrVwPcDbyHMFT/OMI8QKt6aJ+Y69fX2CKJuXaZzGxPYBEZoy9ztOn3tau6ngoz2w24\nCPiGuz8UbWsENplZg7uvzXrLBcAb7v7N6Pv/Z2YfA/4JeLBY512ovsaXbzXYctOXlW5J2LWDeFfy\nLUMfAT4J/I27O4CZNQGvAxMJv+gyJe369Sm+BF6/fYGngEvd/UUAM7sOWG5m73H3t7LaJ+n69Sm2\nBF67TNcSJo/8617a9PvaVWNPxUcJjwQeTW9w9xeA58m9eumxdJ8s6zHCENhy1Nf48q0GW276stJt\n0q4dxLuSb7l5gXBz/X8Z29I9McNztE/a9etrfIm6fu7+P+5+bsZN90Dgy4Qba3ZCAQm6fv2ILVHX\nLs3MTgYmEP7w7E2/r13V9VQQHgVA99VLX854LdP7CXNcZLfdw8z2KsM5L/oaX77VYMtKH1e6Tdq1\ni3sl37IS/bzvzdp8EaH24IEcb0nU9etHfIm6fpnMbAXhEc8bwGd6aJao65dWYGyJu3Zmtg9h4sdm\n4M08zft97aqxp2IP4C+ZS6ZHelq9NNdqqOl/NOW42mlf48tcDfZk4ApC19dtg3aGxZO0a9dXib52\nZnYqcDXwvfTjgiyJvn4FxJfk6zcLGEso9nvQzA7I0Sap16+Q2JJ47W4DfubuuRLcbP2+dtWYVGwF\ndomKqjL1tHpprtVQ09+X42qnfY1vFrCvu9/g7k+5+78D3wQ+b2bvHeRzHWxJu3Z9ldhrZ2bNwP8F\nWtx9eg/NEnv9CowvsdfP3Z90918DjcAQwkizbIm8fgXGlqhrZ2bnEx6N/1PWSz0Va/b72lVjUvHH\n6HP26qXvp/sjg3T77Ez1AODtHp61lVqf4nP3jozl5dPSq8GOjPncii1p165PknrtzGwm8CPgFnfP\n9Qs7LZHXr9D4knb9zGzfqOh7J3ffCvyB7tcJEnT9+hpb0q4dITE6EHjFzLbQWQtyr5ndnKN9v69d\nNSYVTwBb6Lp66QeBg8i9eukvCMMyM30m2l6O+hRfAavBJlnSrl2fJPHamdl04NvArIzK8p4k7vr1\nJb4EXr8PAnea2cfTG8zsPYABT+don6Tr90H6EFsCr915wN8QRih9BDgp2v4l4LIc7ft97aquUNPd\n26LM7Boz+19gM3Az8Ki7r8+xWurtwPRoIqIbgBOBc+i8KGWlH/HlWw22nOVb6TZR1y6Hga7kW1bM\n7AhCjcHthDHv+2e83Aq0k+Dr14/4EnX9gF8DPwfmm9mFwHbgu8CrwMKE///ra2yJunbu/nLm92a2\nLfryJXf/3zivXTX2VEB4HrYY+AnwMGHoXnpmtOzVUl8FPkv4R/OfwNeAJnd/tLin3Cd9ia+Q1WDL\nVb6VbpN47TLFsZJvOTmb8DvnS8CfCbGkP75FmCwqydevr/El6vq5ewdwGvA74D8Iw9bfBI6LbqSJ\n/f/Xj9gSde16MCi/O7VKqYiIiMSiWnsqREREJGZKKkRERCQWSipEREQkFkoqREREJBZKKkRERCQW\nSipEREQkFkoqREREJBZKKkSkbJnZo2b2YKnPQ0QKo6RCRMpZ9qyiIlLGlFSISDnraWlmESlDVbeg\nmIiUDzPbk7BK4mTgA4RVHtcCl7j7xlKem4j0nZIKESmlRYRFjC4F/hv4MHAlcCfwtyU8LxHpByUV\nIlISZlYH7A78o7v/NNr8czN7D3CNme1TurMTkf5QUiEiJeHuKWACgJm9n9BL8WHgFEJx5m6lOzsR\n6Q8lFSJSMmZ2EnA9YMAW4HfAO9HLKtIUSRiN/hCRkjCzvwZWABuAg939Pe5+HPAfKKEQSSQlFSJS\nKh8HhgJXu/vzGdsnEB5/6PeTSMLo8YeIlMpvgO3APDO7HqgDvgCMJfRU7Bm1U6+FSELoLwERKQl3\n/8jFdRQAAABlSURBVANwDnAQsAr4PuDAxwg9FceiGTVFEqWmo0P/X0VERGTg1FMhIiIisVBSISIi\nIrFQUiEiIiKxUFIhIiIisVBSISIiIrFQUiEiIiKxUFIhIiIisVBSISIiIrFQUiEiIiKx+P/RJ1D2\n1hZ/KQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# equivalent scatter plot using Matplotlib\n", + "plt.scatter(glass.al, glass.ri)\n", + "plt.xlabel('al')\n", + "plt.ylabel('ri')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a linear regression model\n", + "from sklearn.linear_model import LinearRegression\n", + "linreg = LinearRegression()\n", + "feature_cols = ['al']\n", + "X = glass[feature_cols]\n", + "y = glass.ri\n", + "linreg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
rinamgalsikcabafeglass_typeri_pred
id
221.5196614.773.750.2972.020.039.0000.0011.521227
1851.5111517.380.000.3475.410.006.6500.0061.521103
401.5221314.213.820.4771.770.119.5700.0011.520781
391.5221314.213.820.4771.770.119.5700.0011.520781
511.5232013.723.720.5171.750.0910.0600.1611.520682
\n", + "
" + ], + "text/plain": [ + " ri na mg al si k ca ba fe glass_type \\\n", + "id \n", + "22 1.51966 14.77 3.75 0.29 72.02 0.03 9.00 0 0.00 1 \n", + "185 1.51115 17.38 0.00 0.34 75.41 0.00 6.65 0 0.00 6 \n", + "40 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "39 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "51 1.52320 13.72 3.72 0.51 71.75 0.09 10.06 0 0.16 1 \n", + "\n", + " ri_pred \n", + "id \n", + "22 1.521227 \n", + "185 1.521103 \n", + "40 1.520781 \n", + "39 1.520781 \n", + "51 1.520682 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# make predictions for all values of X\n", + "glass['ri_pred'] = linreg.predict(X)\n", + "glass.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhUAAAF4CAYAAADjZgtnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd4VFXixvHvpLchGTAWwL7ucV37qtTQQRBBUSyoiCIW\nRMGGXaQIKohSFEXBhigWUBHpvYNtXVf9HXdtq7graCYhvc7vjzvsxpjAQCa5Seb9PE+eJPfeufMe\neR55OfeeO55AIICIiIhITUW5HUBEREQaB5UKERERCQuVChEREQkLlQoREREJC5UKERERCQuVChER\nEQmLGLcDNBbGGA+wGNhorR2/j2O3A2dU2jzLWntdpePige3ARGvt3ArbvcBDwPmAD/gUuNtau6nG\nAxERETlAmqkIA2NMHDALOBvY64M/guXjBOAy4NAKX7dVOs4LvA2cVMU5ZwHdgSuB04GPgOXGmONq\nOhYREZEDpZmKEBljOgGrrbVRlbafDswGmgBZIZzqGCAJ2GKt3VnNe3UDZgL+KvY1BfoD51hr1wU3\n32KM6Q1cCowLaUAiIiJhppmKmusGrAVOBbJDOP5EoAD4116OORd4EWhbxb5CoBdQ1aWOtBDeX0RE\npFZopqKGrLUT9/xsjAnlJSfizGjMNcZ0BH4FXgCmWGsDwXPeUt05rbX5wPKK24wxFwLHAksPaBAi\nIiJhoFKxF8aYI4AvcO5piA5uywnuDlhrmxzAaU/AufyxFBgPtAcmAanA6API2Ap4HnjLWrviAPKI\niIiEhUrF3u0ATg7+3Bp4BTilhue8Aki21uYGf//cGJMK3Md+lgpjTE/gTWALMLCGuURERGqkzkuF\nMSYaZznkIMCL8y/2YXu5afEMYCrOPQs7gHHW2jlVHFftkk5jzOXAKOBwnOWXN1trP9xXVmttGfBN\n8BxHBLd9E9pIqz1nAMittPnvgNcY08RauzuU8xhjBuGsAnkXGGCtLalJLhERkZpy40bN0ThLIQcC\nHYCWwPyqDjTGpAPLgA+B04BpwGxjTPdKx1W7pDO4kmI2ziWG04DPcJZfHnQA2Wv8OfHGmO3GmCmV\nNp8B7NiPQnEJziWPWcBFKhQiIlIf1OlMRfAv/+E4MwWrgtsuBb41xrSx1m6p9JIhgN9aOyL4+1fB\nJZx3ACuCr9/Xks6RwKvW2lnB468HugDXAg+Hmt1au5bgfRV74am8wRiTgLMqY6e1thx4HXjIGPMR\nsBnoBNyJ899ln4wxh+CUieU4Be2QCjdz5llrc6p5qYiISK2q65mKU3Eueazds8Fa+z3wHZBRxfEZ\nwPpK29YB7Sr8Xu2STmNMFM6yzIrvFwies6r3q6mqZjIuBX7CmZHBWjsZuBu4H+eyxx3ALdba50N8\nj/OAZKAH8O/gufd8Ta5JeBERkZqo63sqWga/76i0/acK+ypqgfO0yMrHJhljmlprM/expDMN5y/g\nyu/3b+DM/cgdEmvt0VVsexHnmRMVt03FuU8klHNGVfr9WeDZAw4pIiJSS+p6piIJKA/eAFlREZBQ\nzfGFVRxLNcdX9XqqOUcorxcREZEQ1XWpKACigpclKooH8qo5Pr6KY6nm+KpeX/E1+3o/EREROUB1\nffnjh+D3w/jtJYkWwDvVHN+80rbmQK61NpRHYmfilIfDqjjHj/t6cSAQCHg8v7v3UkREpLGq0V96\ndV0qPgVycFY8zAUwxhwFHMnvb8gE2AhcXWlb5+D2fbLWBowxe1ZY7Hm/KJylrDP39XqPx8OuXZG5\nmCI93RuxYweNX+OP3PFH8thB409P99bo9XVaKqy1RcaYGcBjxphfgF3ADGCttXa7MSYWaAb8Gnz2\nwmzgTmPMMzg3NnYDBuA8j6IqVTWsx4H3jDGfAGtwPmLci7MsU0RERMLEjYdf3Y8za/AKsBr4Fuej\nvMFZKvoT0AYg+JTNnjgPrfoYuBEYGHxmRFV+t6TTWrsMuA64HWclyfFAD2ttZniGIyIiIgCeQKDG\nD4lszAKROg2mKUCNX+OPzPFH8thB409P99bongo3ZipERESkEVKpEBERkbBQqRAREZGwUKkQERGR\nsFCpEBERkbBQqRAREZGwUKkQERGRsFCpEBERkbBQqRAREZGwUKkQERGRsFCpEBERkbBQqRAREZGw\nUKkQERGRsFCpEBERkbBQqRAREZGwUKkQERGRsFCpEBERkbBQqRAREZGwUKkQERGRsFCpEBERkbBQ\nqWggPLuzSXpkHNGf/93tKCIiIlVSqWggor//juTHJ+Hr0ZGkSQ9DcbHbkURERH5DpaKBKD3pFLJf\nfZPyg9JJnvQwvrM7E/3Z39yOJSIi8l8qFQ1Icbez8a/fSsFlA4n5/DN8Z3ci6ZGHNGshIiL1gkpF\nAxNITSN3ylNkzVtA+cGHkPz4RHzdOxLz6SduRxMRkQinUtFAlXTphn/DNgoGXk3Ml5+T1rMLSRPG\nQlGR29FERCRCqVQ0YAFvE3InTyXrzXcpb96C5CmP4evegZhPPnI7moiIRCCVikagpGNn/Ou2UHDV\nNcT835ek9epK8rgHobDQ7WgiIhJBVCoaiUCKl9yJT5C1YBHlLY8gafoT+Lq2J+bD7W5HExGRCKFS\n0ciUtO9A5trNFFxzHTH/+Iq0c3uQPPp+KChwO5qIiDRyKhWNUUoKuQ8/RtY7iyk/4kiSZkzD16Ud\nMdu2up1MREQaMZWKRqykbXsy12wm//obif7ma9L6nk3yA3dDfr7b0UREpBFSqWjskpPJG/cIWQuX\nUXb0MSTNnIGvc1tit2xyO5mIiDQyKhURorRVa/yrN5E/9Gaiv/uWtPN6kXzvSMjLczuaiIg0EioV\nkSQpibwx48latJzSPxxH0qyZNO3UhthNG9xOJiIijYBKRQQqPbMV/lUbyb/pFqJ++Bdp/XqTctdt\nkJvrdjQREWnAVCoiVWIieaPGkrV4JaXmeBJfmEXTjq2JXb/W7WQiItJAqVREuNLTz8C/cgN5t9xB\n1E87SOvfl5Q7boHdu92OJiIiDYxKhUB8PPn3jiJr6WpK/3QCiS8/DyeeSOyaVW4nExGRBkSlQv6r\n9JTT8C9fR95td8JPP5F2ST9Sbr0Jz+5st6OJiEgDoFIhvxUfT/7d98MHH1D655NInPsyvg6tiVu1\n3O1kIiJSz6lUSNVOOw3/sjXkjbyHqJ0/kzqgP97hQ/Fk+d1OJiIi9ZRKhVQvLo78kffgX76OkpNO\nIWHeXGfWYvkSt5OJiEg9pFIh+1R24klkLV1N3t33E/XrL6RecQneYdfh8We6HU1EROoRlQoJTWws\n+bfdiX/FekpOOY2EN+fhy2hF3JL33U4mIiL1hEqF7JeyE/5M1pJV5N4/mqgsP6mDBuC9YTCeX391\nO5qIiLhMpUL2X0wMBcNvw79qIyWn/4WEBW/RNOMs4hYtdDuZiIi4SKVCDliZOZ6sRSvIHTUOT85u\nUgdfgffaq/D88ovb0URExAUqFVIzMTEU3DQC/+pNlJxxFgnvLqBpxpnELXzb7WQiIlLHVCokLMqO\n+yNZ7y0jd8wEPHl5pA4ZRJPBA/Hs3Ol2NBERqSMqFRI+0dEUDL0J/5pNlLRqQ/yid2na4SziF7wJ\ngYDb6UREpJapVEjYlR17HFnvLiF3/KN4CgpocsM1NLnqcjw//+x2NBERqUUqFVI7oqIouHYomWs2\nU9ymHfFLFtE040zi35ynWQsRkUZKpUJqVfkxx5L99vvkPPwYnuISmgy7jiZXXkrUf/7tdjQREQkz\nlQqpfVFRFF5zHZlrN1PcvgPxy5bgy2hF/Ly5mrUQEWlEVCqkzpQfdTTZby0kZ+ITUFpKk+FDaXJZ\nf6J+2uF2NBERCYOYun5DY0w08BAwCPACS4Fh1toq1x4aY84ApgKnAjuAcdbaORX2JwFTgH4443kT\nuNVam1fhmHuBIcDBgAVGWWv1oRVuiIqi8KprKO7aHe+tNxO/agWxGa3IGzuBwssGgsfjdkIRETlA\nbsxUjAauBAYCHYCWwPyqDjTGpAPLgA+B04BpwGxjTPcKh80E2gK9gT5Ap+C2Pee4GbgHuAM4EXgH\neNsYc0oYxyT7qfzwI8h+8x1yJk+DQADvrTeRekk/on78we1oIiJygOq0VBhj4oDhwD3W2lXW2k+A\nS4F2xpg2VbxkCOC31o6w1n5lrX0SeAWnIGCMaQkMAG601m631m4MvmaAMeaw4Dm6AkuttQustd9Z\na8cBfqBzbY5VQuDxUDjwKvzrt1LcuStxa1fj69CahJdf0L0WIiINUF3PVJyKc8lj7Z4N1trvge+A\njCqOzwDWV9q2DmgX/LktUA5sqrB/M1AGtK/we0djzMnGGI8x5iKgGfBRTQYi4VPe8nCy5y0gZ8pT\nEBWF944RpF50PlH/+t7taCIish/qulS0DH6vfGfeTxX2VdSimmOTjDHNgq/Zaa0t27PTWlsK7AQO\nD/4+EVgM/BUoBl4HhltrN9RsKBJWHg+Flw3Ev34rRd16ELd+Db6ObUh4YRaUl7udTkREQlDXpSIJ\nKK9YAoKKgIRqji+s4liCx1e1/zfnM8aMBC7AuSxyBs49HZONMT0OIL/UsvLmLdg99012T38GYmLw\n3nUbqRf2Ieq7b92OJiIi+1DXpaIAiDLGVH7feCCvmuPjqzgWILea/f89nzEmBhgFPGStfd5a+6m1\ndizwBjDhAMcgtc3joeiSy/Bv2EbR2b2I27SBpp3akDB7pmYtRETqsbpeUrrn1v7D+O1ljRY4qzKq\nOr55pW3NgVxrbbYx5gfgYGOMx1obAAgWiYOD528KJOOsHqloO3BeKIHT072hHNYouT72dC8seR9e\nfRXP8OF47xmJd8l7MHs2/OEPtf/2bo/fZRp/5I4/kscOGn9N1HWp+BTIwVn2ORfAGHMUcCS/vyET\nYCNwdaVtnYPbwblBMwbnhs09N2u2x5mB2WSt3WmMyQZOAVZXOMeJwFehBN61KyeUwxqd9HRv/Rl7\nj7541rXCe+etxC9ZRODkk8m770EKhtwAUbUz2Vavxu8CjT9yxx/JYweNv6aFqk5LhbW2yBgzA3jM\nGPMLsAuYAay11m43xsTirMz41VpbAswG7jTGPIPzAKxuOEtIzw6eb4cx5g2cZ1cMxikTzwEvW2v3\nfLjEROABY8yPOCs+egHXAJfUzaglHAKHHMLuF+cS/858Uu65g5T77yZ+4TvkTH2KsmOPczueiIjg\nzsOv7seZpXgFZ/bgW6B/cF87nNUdbQCCT9nsifPgq4+BG4GB1tq1Fc43BGfZ6GKcSygrgaEV9j8C\nPAiMwZkpGQwMsNa+Hf6hSa3yeCjq15/MDR9Q1Od8Yrdvxde5HYkzpkNZ5Xt/RUSkrnkCesjQ3gQi\ndRqsIUwBxi18G+/dtxP1yy+U/OVMcqY9TdlxfwzLuRvC+GuTxh+544/ksYPGn57urdFnJegDxaTB\nKu7bj8z12ynsdyGxH32Ar0s7EqdPgdJSt6OJiEQklQpp0AIHHUTOzBfIfv4VAt4mpIwbRVrvbkT/\n35duRxMRiTgqFdIoFJ/bl8yN2ym88GJiP/kYX7cMEqdO1qyFiEgdUqmQRiPQtBk5T88i+6XXKE/z\nkTJ+DGm9uhL9xeduRxMRiQgqFdLoFPfqjX/DNgovHkDsp5/g696BpMmPQkmJ29FERBo1lQpplAK+\npuQ8OZPsuW9Q3uwgkh8dT1rPLkT//TO3o4mINFoqFdKoFXfviX/DNgoGXEHsZ5/i69GRpIkToLjY\n7WgiIo2OSoU0eoHUNHKnziBr3nzKDz6E5McewdejEzGffep2NBGRRkWlQiJGSZfu+NdvpeCKQcR8\n8XfSenQi6ZFxUFTkdjQRkUZBpUIiSqBJKrmPTyfr9bcpP6w5yY9PwtejIzF//djtaCIiDZ5KhUSk\nks5d8a/bQsGga4j58gvSenUlefwYKCx0O5qISIOlUiERK+BtQu6kJ8ia/x7lLVqSNHUyvm4ZxHz0\ngdvRREQaJJUKiXglGR3JXLuFgsHXEvOVJa13d7jzTigocDuaiEiDolIhApCSQu4jk8l6+33KDz8C\nJk3C17U9MR9sczuZiEiDoVIhUkFJuwwy126B4cOJ/vqfpJ3bg+RR90J+vtvRRETqPZUKkcqSk2Hq\nVLLfXULZUUeT9MyT+Lq0I2brFreTiYjUayoVItUoad0W/5rN5N9wE9HffkPaeT1Jvv8uyMtzO5qI\nSL2kUiGyN0lJ5I2dQNZ7yyk75liSnn2app3aELt5o9vJRETqHZUKkRCUntUK/+pN5A8bQdQP/yLt\n/HNIuft2yM11O5qISL2hUiESqsRE8h4cR9b7Kyj9oyHx+eecWYsN69xOJiJSL6hUiOyn0r+ciX/l\nBvKH30bUjz+QdmEfUu68FU9ujtvRRERcpVIhciASEsi7fzRZS1ZRevyfSHxxNr6ObYhdt8btZCIi\nrlGpEKmB0tP+gn/FevJuvYOon3aQdtF5pNw+HE/ObrejiYjUOZUKkZqKjyf/nlFkLV1N6Z/+TOKc\nF/F1aE3s6pVuJxMRqVMqFSJhUnrKafhXrCPvjruJ+vk/pF16ASm3DMOTneV2NBGROqFSIRJOcXHk\n33kv/mVrKTnxZBJfnYOvQ2viVix1O5mISK1TqRCpBWUnnUzWsjXk3XUfUb/sIvXyi/HefAOeLL/b\n0UREao1KhUhtiY0l//a78K9YT8nJp5Lw+qv4MloRt3Sx28lERGqFSoVILSs74c9kLVlF3r2jiPJn\nknrlpXiHDsGT+avb0UREwkqlQqQuxMaSf8sd+FduoOS000mY/wZNM1oR9/57bicTEQkblQqROlR2\n/J/Ien8luQ+MxbM7m9SrL8d7/dV4ftWshYg0fCoVInUtJoaCm2/Bv2ojJX85k4S359M040zi3nvH\n7WQiIjWiUiHikrI/GrIWLSd39Hg8ubmkXnMl3iGD8Oza5XY0EZEDolIh4qboaApuvBn/mk2UnNWa\nhIVv07TDWcS/Mx8CAbfTiYjsF5UKkXqg7NjjyHp3CbnjHsaTn0+T666myeCBeHbudDuaiEjIVCpE\n6ovoaAquH0bmms0Ut25L/PsLaZpxJvHz39CshYg0CCoVIvVM+THHkv3OYnImTMRTVESToUNoMmgA\nUT//x+1oIiJ7pVIhUh9FRVE45AYy126huF0G8UsX42t/FvFvvKZZCxGpt1QqROqx8qOOJnv+e+Q8\nMhlPSQlNbrqeJldcTNS/f3I7mojI78RUt8MYcxmwzFr7qzHmcmCv/zyy1r4a7nAigjNrMfhairv1\nwHvrTcSvWEZsRityxz1M0aWXg8fjdkIREWAvpQJ4BWgN/ArMCeFcKhUitaj8iCPJfmshCXNeJHn0\n/TQZcSPF7y4gZ/I0ylu0dDueiMheL38cA/w1+PPRwd/39iUitc3jofDKq/Gv30pxpy7ErV6JL6MV\nCa+8pHstRMR11c5UWGu/q/DrNOAJa+3a2g4kIvtW3vJwsl9/m4RX55A86l68t91M/LsLyHl8OuWH\nH+F2PBGJUKHeqNkN0IVbkfrE46Hw8ivxb9hGUdfuxK1bg69DaxJeel6zFiLiilBLxXJggDFmb/dg\niIgLypu3YPerb7F72tMQHY135C2k9u9L1PffuR1NRCJMqCUhG7gKuNgY8wWQW2GfBwhYa3uEOZuI\nhMrjoejSyynp2JmUkbcQv3wpTTu2IfeBMRRePQSitHpcRGpfqP+nOQrYjHPjZjEQV+ErNvglIi4r\nP6w5u+e8zu6nniUQF4v3njtIveBcor79xu1oIhIBQpqpsNZ2quUcIhIuHg9FF11KSYdOpIy8lfil\n79O0c1vy7nuQgmuu16yFiNQa/d9FpJEqP+RQdr/0KrufmU0gIYGU++4i9fxziP7mn25HE5FGSqVC\npDHzeCi64CIy12+nqHdf4rZuxte5HYnPPAllZW6nE5FGRqVCJAIEDj6Y3c/PYfdzLxJISiJl1L2k\n9Tmb6H/+w+1oItKIqFSIRAqPh6LzLiBzwwcUnncBsR9ux9elHYlPTtWshYiEhUqFSIQJHHQQOc+9\nSPbsOQRSvKSMfYC0c7sT/ZV1O5qINHB7+5TSDvtzImvt+prHEZG6UtznPDLbtiflvpEkLHgLX9f2\n5I28h4Ibh7sdTUQaqL0tKV27H+cJANE1iyIidS3QrBk5zzxPUd8L8I68hZSHRhO/6F2Y8zIccqTb\n8USkgdnb5Y8uFb6uBkqAZ4CuwAlABjAR2A1cWrsxRaQ2FZ9zLpkbt1PY/xJi//oJnH46SU9MgpIS\nt6OJSAPiCYTwwUPGmLXAVmvt3VXsexDoba09K/zxXBfYtSvH7QyuSE/3Eqljh8gef9yyJaTeeQv8\n+9+UnHQKOdOepuzPJ7odq05F8p9/JI8dNP70dG+NPjw01M/+OAt4qJp9W4DflY3qGGOig+caBHiB\npcAwa+3Oao4/A5gKnArsAMZZa+dU2J8ETAH64YznTeBWa21ehWPaAY8BpwD/xvkY9ydDzSwSSYrP\n7gW9u1N4480kzJuLr0dH8m8dSf6I2yFWT+QXkeqFuvrjR6BXNfv6A/vziL7RwJXAQKAD0BKYX9WB\nxph0YBnwIXAaMA2YbYzpXuGwmUBboDfQB+gU3LbnHMcDK3DKz4nAWGCyMab/fmQWiSw+HznTnib7\ntbcoPyid5IkT8PXoRPRnf3M7mYjUY6HOVEwGnjbGHAq8C+wCDsW5l6IPId5TYYyJA4YDN1trVwW3\nXQp8a4xpY63dUuklQwC/tXZE8PevjDGnA3cAK4wxLYEBQBdr7fbg+YYAa4wxI621/wbuAbZZa28L\nnuMbY0xbnELzVojjF4lIxV174N+wjeQH7yNx7sv4zu5E/ojbyb91JMTFuR1PROqZkGYqrLUzccpA\nN2AesAqYi3NJ4jJr7Rshvt+pOJc81lY49/fAdzg3flaWAVReqroOaBf8uS1QDmyqsH8zUAa0D/5+\nNvCbfNba6621WjcnEoJAk1Ryn3iSrHkLKD/kUJInP4qve0diPv3E7WgiUs+E/PCr4D0Ih+Ks/GgP\nHG+tPdJaO28/3q9l8PuOStt/qrCvohbVHJtkjGkWfM1Oa+1/HwdorS0FdgKHG2OaAAcDecaYOcaY\n/xhjPjXGXLMfmUUEKOnSDf/6rRQMvJqYLz8nrWcXkiaMhaIit6OJSD2xv0/UjMf5S/oI4Jfg5Yf9\nkQSUVywBQUVAQjXHF1ZxLMHjq9pf8Xze4O+PA38HegDPAk8ZY67ez+wiES/gbULu5Klkvfku5c1b\nkDzlMXzdOxDzyUduRxOReiDUeyowxtwEjANScR52dRbwoDEmGehbcbXFXhQAUcaYKGtteYXt8UBV\nry8I7qPSsQC51eyveL49i+zfs9Y+Gvz5b8GbN28BXthX4PR0774OabQieeyg8e91/P37wtmd4e67\niZkxA1+vrjByJIweDQlV/fug4YnkP/9IHjto/DURUqkwxgzGWdY5FXgP556KADALeAVnRcXtIZzq\nh+D3w/jtZY0WwDvVHN+80rbmQK61NtsY8wNwsDHGY60NBLPG4Mym7AAycWYtPqt0ji9xlrTuU6Su\nV9ZabY0/pPGPfoTYbufgveUmoh99lNIFb5MzdQalZzTsx9ZE8p9/JI8dNP6aFqpQL3+MBB4PrqDY\nsGejtXYhcB9wYYjn+RTIwVn2CYAx5ijgSH5/QybARpxVGhV1Dm4H5wbNGJwbNvdojzOuTcH7K7bg\nzKpUdCL7twxWRKpR0r4DmWs3kz/kemL+8RVp5/YgefT9UFDgdjQRqWOhXv44Gud5EVX5O87Mwz5Z\na4uMMTOAx4wxv+AsTZ0BrLXWbjfGxALNgF+ttSXAbOBOY8wzOLMk3XCWkJ4dPN8OY8wbOM+uGIxT\nJp4DXg4uJwWYACwxxtyF82CsTsBgnOWqIhIOKSnkTZhEcZ/z8Y64kaQZ04hbtpicKTMobdXa7XQi\nUkdCnanYAbSqZt9pOA/HCtX9OMtRXwFWA9/iPEALnKWiPwFtAIJP2ewZfI+PgRuBgdbatRXONwRn\nGelinEsoK4Ghe3Zaa1cCF+CUkS+Au4CbrLWv7EdmEQlBSZt2ZK7dQv71NxL9zdek9T2b5Afuhvx8\nt6OJSB0I9bM/7gVG4TxIahFgcS5LHAQ8D0y11o6pxZxu0Wd/RCiNv+bjj9m2Fe+IocR88zWlRx9D\n7pSnKGnTbt8vrAci+c8/kscOGn9NP/sj1JmKR4CXcD4/wwa3rQcWAEuA8TUJISKNT2mr1vjXbCZ/\n6M1Ef/ctaef1IvnekZAXykIxEWmIQn2iZrm19nrgTziXIB7AecLmKdbay4M3RIqI/FZiInljxpO1\naDmlx/2RpFkzadqpDbGbNuz7tSLS4IS6pHQUMMta+xXwVaV9R+N8Kqgeey0iVSo9sxX+VRtJnvQw\niU9NJa1fbwquHkLuA2MhJcXteCISJqFe/hhN1Y/RBmgNXB+WNCLSeCUkkPfAGLIWr6TUHE/iC7Oc\nWYv1a91OJiJhUu1MhTFmI799/sNWY0x1h38QzlAi0niVnn4G/pUbSJr8KEnTnyCtf18KrhxM3oNj\nCXibuB1PRGpgb5c/ruV/D7UaC8zk9x/uVQZkAW+HP5qINFrx8eTfO4ri3n3wDh9K4svPE7dqOTmP\nT6ekc1e304nIAaq2VFhrvwQegv8++vo5a+1/S0XFR2OLiByI0lNOw79iPUmPTyRp2uOkXdKPgsuv\nJG/MeAJNUt2OJyL7KdTVH6OBvsaY1ypszjDG/NMYE9JnaIiIVCkujvy77ydr2RpK/3wSiXNfxteh\nNXGrlrudTET2U0ilIvgJpU/ifG7HHj/iPKvieWPMwFrIJiIRpPSkU/AvW0PenfcStfNnUgf0xzt8\nKJ4sv9vRRCREoa7+uBkYY629bs8Ga+031trBOJdIRtZGOBGJMHFx5N9xN/7l6yg56RQS5s11Zi2W\nL3E7mYiEINRScTj/+2TQytYDx4UnjogIlJ14EllLV5N3zwNE/foLqVdcgnfYdXj8mW5HE5G9CLVU\n/AvoUs2+9vx+VYiISM3ExpJ/60j8KzdQcuppJLw5D19GK+KWvO92MhGpRqgffT4TmBj8aPIFwE4g\nHeiLc+mx7KTsAAAgAElEQVTjgdqJJyKRruxPJ5C1eBWJM6aRPHECqYMGUHhBf3LHTyLQrJnb8USk\nglBXfzwBTAFuA7YAXwNbcQrFdGBSbQUUESEmhoLht+FftZGS0/9CwoK3aJpxFnGLFrqdTEQqCPXy\nB9bakTizE+cAA3FmKVpaa+/Q8ypEpC6UmePJWrSC3FHj8OTsJnXwFXivuwrPL7+4HU1ECP3yBwDW\n2ixgaS1lERHZt5gYCm4aQfHZvfCOuJGEdxYQt3E9OY9MprhvP7fTiUS0vX32xz+AC621fwv+HAA8\nwe97eILfA9baP9ZeTBGR3yo77o9kvbeMxGefJvnhsaQOGUTRuQvIeWQygYMPdjueSETa20zFJiC3\nws97o8sfIlL3oqMpGHoTxWf3xDtiGPGL3iV28wZyJ0yiqF9/8Hj2fQ4RCRtPIKA+sBeBXbty9n1U\nI5Se7iVSxw4af4Mcf3k5ibNnkvzQaDwFBRT1OpeciU8QOOSQ/T5Vgxx/mETy2EHjT0/31qiJh3yj\npohIvRYVRcG1Q8lcu4Xitu2JX7KIphlnEv/mPNA/nkTqxN7uqSjnf/dRwP8ucVRsMf+9z8JaG10r\nCUVE9kP50ceQvWARCS/MImXcgzQZdh1FC98md9IUyg89zO14Io3a3u6pGFvh5wScZ1R8BcwH/g00\nA/oAJ1U6VkTEXVFRFF5zHcXdeuC99Sbily0hdusWcsc9TNEll+leC5FaUm2pCH7cOQDGmNnA+8AF\nlZ5JMd4Y8wpwZq0lFBE5QOVHHkX2WwtJePkFksc8QJPhQyl6dwG5k6dR3ryF2/FEGp1Q76m4GHim\nmodczQF6hS+SiEgYRUVReNU1+NdvpbhDZ+JXrcCX0YqEuS/rXguRMAu1VORR/SeRngLoowNFpF4r\nP/wIst98h5zHp0MggPfWm0i9pB9RP/7gdjSRRiPUJ2q+CkwwxhQB7wK7gEOBS4ExwKO1E09EJIw8\nHgqvGERx5654bx9O3OqV+Dq0Jm/MeAqvGKR7LURqKNSZinuB5TifVvofoAzn484nAy+hGzVFpAEp\nb9GS7Nfms3vqDIiKwnv7cFIvOp+of33vdjSRBi2kmQprbSHQ3xjzZyADaAr8Aqy21v6zFvOJiNQO\nj4eiAVdQ0qkLKXeMIH7FMnwd25A3aizcMcLtdCIN0n49/Mpa+zkwG3gBeEGFQkQauvLDmrP7lTfY\nPf0ZiInBe9dt0K0bUd9963Y0kQYn5FJhjDnDGLMcyAF+BE42xrxojBlVa+lEROqCx0PRJZfh37CN\nop7nwJo1NO3UhoTZM6G83O10Ig1GSKXCGNMW2AD4gEf431M1vwFGG2NurJ14IiJ1p/zQw9j90msw\ndy6B+Hi894wktV9vor752u1oIg1CqDMVjwIrgLOAh4LbAtbascATwNBayCYiUvc8HrjsMjLXb6fo\nnD7EbdlE085tSXx2hmYtRPYh1FLxF6p/+NUi4NjwRRIRcV/gkEPY/cIr7H72BQKJiaTcfzdpfXsS\n/fU/3I4mUm+FWipygOo+P7hFcL+ISOPi8VB0/oVkbviAwr79iN2+FV/ndiTOmA5lZW6nE6l3Qi0V\nC4FxxpjT+d+nlWKMaY7zDIv3ayGbiEi9EEhPJ2fWS2TPeolASgopo+8j7dweRP/jK7ejidQroZaK\nu3GeS/EBsGed1RzgH0B0cL+ISKNW3Lcfmeu3U9jvQmI/+gBfl3YkTp8CpaVuRxOpF0IqFdbaX4HW\nwA3AZmAV8AVwF3C6tXZnrSUUEalHAgcdRM7MF8h+YS6BJqmkjBtFWu9uRP/fl25HE3FdSE/UNMY8\nCbxorX0OeK52I4mI1H/FvfuQ2aYtKffdRcL8N/B1yyBv5D0UDBsBMaF+rJJI4xLq5Y/BOM+oEBGR\noEDTZuQ8PYvsl+dRnuYjZfwY0np1JfqLz92OJuKKUEvFNqBDbQYREWmoinueg3/DNgovHkDsp5/g\n696BpMmPQkmJ29FE6lSoc3QfAXcZYy4E/grkVj7AWntdOIOJiDQkAV9Tcp6cSdF5/Ui5fQTJj44n\nbvEicqbOoOzEk9yOJ1InQp2p6A/8BCQBbYHuFb56BL+LiES84u498W/YRsFlA4n97FN8PTqSNHEC\nFBe7HU2k1oX60edH1XIOEZFGI5CaRu6Upyjqez7e24aT/NgjxC9eRM70pyk96RS344nUmn3OVBhj\nDjHGnGmMaVoXgUREGouSLt3xr99KwcCriPni76T16ETSI+OgqMjtaCK1otpSYYyJN8a8hnPZYxvw\nizFmnjFGq0BEREIUaJJK7uRpZL3xDuWHNSf58Un4enQk5q8fux1NJOz2NlMxFrgImA0MA6YCfYGZ\ndZBLRKRRKenUxZm1GHQNMV9+QVqvriSPHwOFhW5HEwmbvZWKC4Gx1trrrLVPW2tvxSkX/YwxCXUT\nT0Sk8QikeMmd9ARZ89+jvEVLkqZOxtctg5iPPnA7mkhY7K1UtATWVtq2BOezPo6qpTwiIo1eSUZH\nMtduoWDwtcR8ZUnr3Z3kMQ9AQYHb0URqZG+lIg6oPC/3S/B7Yu3EERGJECkp5D4ymay336f88CNI\nemoqvq7tiflgm9vJRA5YqM+pqMwT1hQiIhGqpF0GmWu3kH/dUKK//idp5/YgedS9kJ/vdjSR/ba/\npSJQKylERCJZcjJ5Dz1K1rtLKTv6GJKeeRJfl3bEbN3idjKR/bKvh19NM8bsrvD7nhLylDEmJ/iz\nBwhYa3uEPZ2ISAQpbd0G/+pNJD/yEIkznyLtvJ4UXHsDefeMguRkt+OJ7NPeZirWAwU491bs+YoJ\nbi+qsC02+CUiIjWVlETe2AlkvbecsmP/QNKzT9O0c1tiN290O5nIPlU7U2Gt7VSHOUREpILSs1rh\nX7WR5IkTSHx6Omnnn0PBNdeRe99oSElxO55IlQ70Rk0REaltiYnkPTiOrPdXUPpHQ+LsZ2naqS2x\nG9a5nUykSioVIiL1XOlfzsS/cgP5I24n6sd/kXZhH1LuvBVPbs6+XyxSh0L6lNJwMsZEAw8BgwAv\nsBQYZq3dWc3xZ+A8IvxUYAcwzlo7p8L+JGAK0A9nPG8Ct1pr86o4lw/4GzDLWjsmnOMSEalVCQnk\n3fcgRb374B1xI4kvziZu1QpyHp9OScfObqcTAdyZqRgNXAkMBDrgPLlzflUHGmPSgWXAh8BpwDRg\ntjGme4XDZgJtgd5AH6AT1X8+yQygBVoaKyINVOmpp+Nfvo6820YS9dMO0i46j5Tbh+PJ2b3vF4vU\nsjotFcaYOGA4cI+1dpW19hPgUqCdMaZNFS8ZAvittSOstV9Za58EXgHuCJ6vJTAAuNFau91auzH4\nmgHGmMMqvfcA4HSc2Q4RkYYrPp78ux8ga9kaSk84kcQ5L+Lr0JrY1SvdTiYRrq5nKk7FueSxds8G\na+33wHdARhXHZ+AsYa1oHdAu+HNboBzYVGH/ZqAMaL9ngzGmBc4llCv5/aPHRUQapNKTT8W/fC15\nd9xN1M//Ie3SC0i5ZRie7Cy3o0mEqutS0TL4vfJswU8V9lXUoppjk4wxzYKv2WmtLduz01pbCuwE\nDgcwxniAF3Duo9BD9UWkcYmLI//Oe/EvW0vJiSeT+OocfB1aE7diqdvJJALVdalIAsorloCgIqCq\nj1NP4vczC0XB7wnV7K98vpuBg4FRBxJYRKQhKDvpZLKWrSHvrvuI+mUXqZdfjPfmG/Bk+d2OJhGk\nrktFARBljKn8vvHA71ZrBI+Pr+JYgNxq9v/3fMaY44GxwKDgDMYe+kA0EWl8YmPJv/0u/CvWU3Ly\nqSS8/iq+jFbELV3sdjKJEHW9pPSH4PfD+O1ljRbAO9Uc37zStuZArrU22xjzA3CwMcZjrQ0AGGNi\ncGYmdgAXAynARmPMntcnAfcaY/pba0/aV+D0dG9IA2uMInnsoPFr/A14/B1bw4fbYdIkoseMIfXK\nS+Hyy2HqVGjWbJ8vb9BjD4NIH39N1HWp+BTIwVn2ORfAGHMUcCS/vyETYCNwdaVtnYPbwblBMwbn\nhs09N2u2x5mB2QSswlktsocnuO0dYHIogXftisyHy6SneyN27KDxa/yNZPzX3kx0Rje8I4YSO3cu\n5ctXkDNpCsXnnFvtSxrN2A+Qxl+zQlWnpcJaW2SMmQE8Zoz5BdiF8+yItdba7caYWKAZ8Ku1tgSY\nDdxpjHkGZ/VGN5wlpGcHz7fDGPMGzrMrBuOUieeAl621/w6+7W8uKBpjSoFMa+0PiIg0cmXH/4ms\n91eS+PSTJE8cT+pVl1HY70JyJzxGIIRZC5H94cbDr+7HmaV4BVgNfAv0D+5rh7O6ow1A8CmbPXEe\nfPUxcCMw0Fq7tsL5huAsI12MMwOxEhi6l/fXg69EJLLExFBw8y34V2+i5C9nkvD2fJpmnEnce1Vd\ndRY5cJ5AQH/H7kUgUqfBNAWo8Wv8jXT8ZWUkzpxB8iPj8BQWUti3H7kPP0YgPR1o5GMPgcbvrdFC\nBn2gmIhIJImOpuDGm/Gv2UTJWa1JWPg2TTucRfw780H/yJQaUqkQEYlAZcceR9a7S8gd9zCe/Hya\nXHc1TQYPhJ9/djuaNGAqFSIikSo6moLrh5G5ZjPFrdsS//5COOEE4ue/oVkLOSAqFSIiEa78mGPJ\nfmcxOQ9PgsJCmgwdQpNBA4j6+T9uR5MGRqVCREQgKorCa66Hzz6juF0G8UsX42t/FvFvvKZZCwmZ\nSoWIiPzPMceQPf89ch59HEpLaXLT9TS54mKi/v2T28mkAVCpEBGR34qKovDqIfjXbaE4oxPxK5bh\ny2hF/GuvaNZC9kqlQkREqlR+xJFkv/UuOY9NhfJymoy4kdQBFxK140e3o0k9pVIhIiLV83govPJq\n/Ou3UtypC3GrV+LLaEXCKy9p1kJ+R6VCRET2qbzl4WS//jY5U54CjwfvbTeTevH5RP2oj1GS/1Gp\nEBGR0Hg8FF42EP+GbRR17U7cujXOrMVLz2vWQgCVChER2U/lzVuw+9W32D3taYiOxjvyFlL79yXq\n++/cjiYuU6kQEZH95/FQdOnl+Ddup6hHT+I2rKNpxzYkzH4WysvdTicuUakQEZEDVn7oYeye8zq7\nn3qWQFws3nvuIPWCc4n69hu3o4kLVCpERKRmPB6KLroU/4btFPU6l7jNG2nauS2Jzz2tWYsIo1Ih\nIiJhUX7Ioex+cS67Zz5PICGBlPvuIvX8c4j+5p9uR5M6olIhIiLh4/FQ1K8/meu3U3TuecRt3Yyv\nczsSn3kSysrcTie1TKVCRETCLnDwwex+fg7Zs14ikJREyqh7SetzNtH//Ifb0aQWqVSIiEitKe7b\nj8wNH1B43gXEfrgdX5d2JD45VbMWjZRKhYiI1KrAQQeR89yLZM+eQyDFS8rYB0g7tzvRX1m3o0mY\nqVSIiEidKO5zHpkbtlN4wUXEfvQhvq7tSZz2BJSWuh1NwkSlQkRE6kygWTNynplN9kuvUZ6aRspD\nD5LWuxvRX37hdjQJA5UKERGpc8W9euPfsI3Ciy4l9pOP8XXvQNITk6CkxO1oUgMqFSIi4oqAryk5\nTz1L9iuvU960GckPjyOtV1eiP/+729HkAKlUiIiIq4p79MK/fiuFl15O7N/+iq9HR5Iee0SzFg2Q\nSoWIiLgukOYjZ9rTZL/2FuUHpZM8cQK+Hp2I/uxvbkeT/aBSISIi9UZx1x74N2yj4IpBxHz+Gb6z\nO5H06HgoLnY7moRApUJEROqVQJNUch+fTta8BZQfcijJkx/F170jMZ9+4nY02QeVChERqZdKunTD\nv34rBVcOJubLz0nr2YWkCWOhqMjtaFINlQoREam3At4m5D42hay3FlLevAXJUx7D170DMZ985HY0\nqYJKhYiI1HslHTrhX7eFgquHEPN/X5LWqyvJ4x6EwkK3o0kFKhUiItIgBFK85D76OFkLFlHe8giS\npj+Br2t7Yj7c7nY0CVKpEBGRBqWkfQcy120hf8j1xPzjK9LO7UHy6PuhoMDtaBFPpUJERBqe5GTy\nJkwi690llB9xJEkzpuHr0o6Y7dvcThbRVCpERKTBKmnTjsy1W8i/fhjR33xNWp8eJD9wD+Tnux0t\nIqlUiIhIw5aURN64h8lauIyyY44laeZT+Dq3JXbrZreTRRyVChERaRRKW7XGv3oT+TcOJ/r770g9\nrxfJ946EvDy3o0UMlQoREWk8EhPJG/0QWYuWU/aH40iaNZOmndoQu2mD28kigkqFiIg0OqVnnIV/\n1Ubyb76VqB/+RVq/3qTcdRvk5rodrVFTqRARkcYpIYG8B8aQtXglpeZ4El+Y5cxarF/rdrJGS6VC\nREQatdLTz8C/cgN5t95B1I4fSevfl5Q7bsGTs9vtaI2OSoWIiDR+8fHk3zOKrKWrKf3TCSS+/Dy+\nDq2JXbPK7WSNikqFiIhEjNJTTsO/Yj15t99F1M//Ie2SfqTcehOe3dluR2sUVCpERCSyxMWRf9d9\nZC1bQ+mfTyJx7sv4OrQmbtVyt5M1eCoVIiISkUpPOgX/sjXk3XkvUTt/JnVAf7j6ajxZfrejNVgq\nFSIiErni4si/4278K9ZTcvKp8OKLzqzF8iVuJ2uQVCpERCTilf35RLKWrIKHHiLq119IveISvMOu\nw+PPdDtag6JSISIiAhAbC/fdh3/lBkpOPY2EN+fhy2hF3JL33U7WYKhUiIiIVFD2pxPIWryK3PtH\nE5XlJ3XQALw3XIMn81e3o9V7KhUiIiKVxcRQMPw2/Ks2UvKXM0hY8CZN259F3KKFbier11QqRERE\nqlFmjidr0QpyH3wIT85uUgdfgfe6q/D88ovb0eollQoREZG9iY6mYNhw/Gs2U3JmKxLeWUDTDmcR\nt/Btt5PVOyoVIiIiISj7w3FkLVxK7tgJePLySB0yiCaDB+LZudPtaPWGSoWIiEiooqMpuOEm/Gs2\nUdKqDfGL3qVph7OIX/AmBAJup3OdSoWIiMh+KjvmD2S9u4Tc8Y/iKSykyQ3X0OSqy/H8/LPb0Vyl\nUiEiInIgoqIouHYomWs2U9y2PfFLFtE040zi35wXsbMWMXX9hsaYaOAhYBDgBZYCw6y1VV6UMsac\nAUwFTgV2AOOstXMq7E8CpgD9cMbzJnCrtTYvuD8WuBcYCBwKWGCMtVbrgkREpMbKjz6G7AWLSHhx\nNiljR9Fk2HUULXyb3ElTKD/0MLfj1Sk3ZipGA1fi/CXfAWgJzK/qQGNMOrAM+BA4DZgGzDbGdK9w\n2EygLdAb6AN0Cm7b4yHgemAEcDJO6VhgjMkI14BERCTCRUVROPhaMtdtoTijI/HLluDLaEX8vLkR\nNWvhCdThYI0xccAu4GZr7cvBbUcC3wLtrLVbKh1/D3CNtfYPFbY9D7Sw1p5tjGkJfAd0sdauD+7v\nAKzBKSs/B9/vXmvtzArnWAl8b629Zh+RA7t25dRkyA1WerqXSB07aPwaf+SOP5LHDmEafyBAwssv\nkDz6fqLycinq2p3cydMob94iPCFrUXq611OT19f1TMWpOJc81u7ZYK39HqcYVDVzkAGsr7RtHdAu\n+HNboBzYVGH/ZqAMaA94gIuAyouJA0DaAeQXERHZO4+HwkGD8a/fSnHHzsSvWoEvoxUJr85p9LMW\ndV0qWga/76i0/acK+ypqUc2xScaYZsHX7LTWlu3Zaa0tBXYCh1try6y1qyver2GMORPojHMvh4iI\nSK0oP/wIst94h5zHp0MggPeWYaReegFRP/7gdrRaU9elIgkor1gCgoqAhGqOL6ziWILHV7W/2vMZ\nY/6AM2uxDXg+9NgiIiIHwOOh8IpB+Ddso7hLN+LWrMLXoTUJc15slLMWdV0qCoAoY0zl940H8qo5\nPr6KYwFyq9lf5fmMMX8BNgK/AOdWUWxERERqRXmLlmS/Np/d056GqCi8tw8n9aLzifrX925HC6u6\nXlK6Z87nMH57WaMF8E41xzevtK05kGutzTbG/AAcbIzxWGsDAMaYGODgiuc3xvTAWWHyCdDHWpsd\nauD0dG+ohzY6kTx20Pg1/sgdfySPHWp5/DffABf0geuvJ+7992nWqQ1MnAjXXw9RDf/RUXVdKj4F\ncnCWfc4FMMYcBRzJ72/IBGdm4epK2zoHt4Nzg2YMzg2be27WbI8zA7MpeP4MYCHO0tSLrbVF7IdI\nvQtad4Br/Bp/ZI4/kscOdTT+uCbw/KvEvzmPlPvuIurGGyl+dR45j0+n/Kija/e996GmhapOl5QC\nGGMeBq4Kfu0CZgD51touwQdVNQN+tdaWGGMOxnlY1es4D8DqBjwGnG2tXRs832s4z7AYjFMmXgA2\nWGsHG2PigX8CmTjPsSitEKXIWuvfR1wtKY1QGr/GH6njj+SxQ92PP+rn/5Ay8hbily4mkJRE7gNj\nKLz6WtdmLRraklKA+3FmKV4BVuM8o6J/cF87nNUdbQCCqzZ64pSGj4EbgYF7CkXQEJxlpItxLqGs\nBIYG93XEubRyIvCv4Ln3fL1eG4MTEREJVfkhh7L7pdfY/fQsAvHxeO8ZSWq/3kR987Xb0Q5Inc9U\nNDCaqYhQGr/GH6njj+Sxg7vj9/z8M967byf+/YUEEhPJu+9BCobcUKezFg1xpkJEREQqCRxyCLuf\nn8Pu514kkJREyv13k9a3J9Ff/8PtaCFTqRAREakvPB6KzruAzPXbKezbj9jtW/F1bkfijOlQVv+f\nhKBSISIiUs8E0tPJmfUS2bNfJpCSQsro+0g7twfR//jK7Wh7pVIhIiJSTxX3OZ/MDR9Q2O9CYj/6\nAF+XdiROnwKlpft+sQtUKkREROqxQLNm5Mx8gewX5hJokkrKuFGkndudaPt/bkf7HZUKERGRBqC4\ndx8yN2yjsP8lxH78Eb6u7UmcOrlezVqoVIiIiDQQgabNyJnxHNkvz6Pc15SU8WNI69WV6C8+dzsa\noFIhIiLS4BT3PAf/hm0UXnIZsZ9+gq97B5ImPwolJa7mUqkQERFpgAJpPnKmP0P23DcoPyid5EfH\nk9azC9F//8y1TCoVIiIiDVhx957412+l4LKBxH72Kb4eHUmaOAGKi+s8i0qFiIhIAxdITSN3ylNk\nzZtP+cGHkPzYI/h6dCLms0/rNIdKhYiISCNR0qU7/g3bKBh4NTFf/J20Hp1IemQcFBXVyfurVIiI\niDQiAW8TcidPJeuNdyg/rDnJj0/C16MjMX/9uNbfW6VCRESkESrp1MW51+Kqa4j58gvSenUlefwY\nKCystfdUqRAREWmkAilecic+Qdb89yhvcThJUyfj65ZBzEcf1Mr7qVSIiIg0ciUZHclcu5mCa64j\n5itLWu/uJI8dFfZZC5UKERGRSJCSQu7Dj5H1zmLKjziSpCen4OvSjpgPtoXtLVQqREREIkhJ2/Zk\nrtlM/nVDif76n6Sd24PkUfdCfn6Nz61SISIiEmmSk8l76FGy3l1K2dHHkPTMk/i6tKvxaVUqRERE\nIlRp6zb4V28if+jNRH/7TY3Pp1IhIiISyZKSyBszHv+G7TU+lUqFiIiIUPZHU+NzqFSIiIhIWKhU\niIiISFioVIiIiEhYqFSIiIhIWKhUiIiISFioVIiIiEhYqFSIiIhIWHgCgYDbGURERKQR0EyFiIiI\nhIVKhYiIiISFSoWIiIiEhUqFiIiIhIVKhYiIiISFSoWIiIiERYzbAdxijIkGHgIGAV5gKTDMWruz\nmuPPAKYCpwI7gHHW2jl1FDfsDmD8bwD9K21eaa3tUatBa5kx5hkg2lp77V6OaVR/9hWFOP5G9Wdv\njDkEmAj/396dh8pZ3WEc/15rTYzQ61KDmmjc8NHWqlVBo8SoVGxUBBXRCpEUxYKikS4qGMQNW9Bi\nKsTiH7Z/aNS6JbjgEpS4QGirkhKj/tyjYBBpUpPGuF//OO/IOJnhzju+c2fmzPOBYbjnngvnlyd3\n5jfnXS4nANsC/wR+FxGrW8zPJv8Oas8t++nAzcDxpA/VjwO/jYi1LeZnkz10VH/p/Id5p+Jq4Fxg\nLnAMMB14oNlESTsDTwAvAD8HbgFul3TChKy0O66mzfoLBwKXA7vUPc7s7hK7R9KIpGuBC4CWN2vJ\nNPu26y9kk72krYAlwL7AqcBRwMfAU5J2bDI/m/zL1l7IKfsR4FFgFDgWmA3sCjzcYn422UP5+gul\n8x/KnQpJ2wCXABdHxFPF2NnAO5JmRsSKhh85H1gfEfOLr1+XdCjwe2DZRK27KmXrlzSJ9EL0r1Y7\nGYNE0t7A7cBPgffGmZ5V9lCu/tyyBw4GjgQOiIgAkDQXWAecDDR+Cs0p/1K1Z5j9VGA1cEVEvAcg\n6WZgiaTRiPi4YX5O2UPJ+jvNf1h3Kg4hbfkvrw1ExBrgXWBWk/mzgGcbxp4Bju7O8rqubP37kxrQ\n1yZgbRNhJrCG1IW/M87c3LKHcvXnlv0a0hvo63VjtZ2a7ZvMzyn/srVnlX1EfBgR59S9oU4HfkN6\n02xsKCCv7Dupv6P8h3KngrTVD+kYWb0P6r5XbxrwYpO5UyTtGBHrKl5ft5Wt/0Dgc+AaSXOAzcB9\nwPUR8VnXVtklEbEYWAwgabzpuWVftv7csl8HPNYwfAnp/IInm/xINvl3UHtW2deTtJR0CGg9cFyL\nadlk36jN+jvKf1h3KqYAX0fEVw3jnwGTW8z/tMlcWszvd2Xr/0nx/CpwEnANaWvwtq6tsH/kln1Z\nWWcv6VTgBuDPtUMCDbLNv43ac85+AXAE8DywTNJuTeZkmz3t1d9R/sPaVGwGtipOXKo3CdjUYv6k\nJnNpMb/fla1/ATA1Iv4SEasj4m5gPnCupB26vNZeyy37srLNXtI84H7gnoi4rMW0LPNvs/Zss4+I\nlyPi38DZwA9IV8E1yjJ7aLv+jvIf1qbi/eJ514bxaWx5SKA2v7GT2w34f4tjUf2uVP0RMRYRGxqG\nXy6ed694bf0mt+xLyTV7SVcCfwP+GhHNXlBrssu/3dpzy17S1OKE9G9FxGbgLbbMGDLLvmz9neY/\nrAJWaf4AAAMQSURBVE3Ff4CNpMtqAJC0JzCDLU/MgbRFdEzD2HHF+CAqVb+k+yQ92DB8OGkr8M2u\nrbI/5JZ9KTlmL+ky4DpgQd2Z/a1klX+Z2jPMfk/gLkmH1QYkjQICXmkyP6vsKVl/p/mPjI2Nd4l6\nniT9EZhXPD4CbgU+iYjjJf0Q2An4b0R8IWkqEMA/SDdC+QVwE3BiRCyf+NV/fyXrPwO4l3Qp1UOk\na7YXAbdFxFU9WH5lJC0H3qjd/GkYsq/XRv1ZZS/pIOAl4O+k7d2Rum9vAL4g0/w7qD237EdIV7z9\niHR/li+BPwF7ka6IyzZ76Kj+jvIf1p0KSL9Ui4E7gadJl9bV7hx2NOks35kAxTW6vyT9o74EXAjM\nHcT/WHXK1P8A6SZZ84BVpDvyLRzEF5YmxvjuzZ+GIft649WfW/ZnkV73zgPWkmqtPS4l3RAq1/zL\n1p5V9hExBpwOrAQeIb3B/g+YHRGfkPnvfgf1d5T/0O5UmJmZWbWGeafCzMzMKuSmwszMzCrhpsLM\nzMwq4abCzMzMKuGmwszMzCrhpsLMzMwq4abCzMzMKuGmwsz6mqTlkpb1eh1mNj43FWbW7xrv+mlm\nfcpNhZn1u5Hxp5hZP9i61wsws+EmaTvgKuA0YA/SX0FcAfwhIlb1cm1mVo6bCjPrtTtIf8ToCuBt\nYD/gWuAu4Gc9XJeZleSmwsx6RtJkYFvgooh4sBh+TtIocJOkH/dudWZWlpsKM+uZiPgUmAMgaRpp\nl2I/4BTSyZnb9G51ZlaWmwoz6ylJJwILAQEbgZXApuLbPknTbID46g8z6xlJ+wBLgReAvSNiNCJm\nA4/ghsJs4LipMLNeOgyYBNwQEe/Wjc8hHf7wa5TZAPHhDzPrpReBL4EbJS0EJgO/Bo4g7VRsV8zz\nroXZAPCnADPrmYh4C/gVMAN4GFgEBHAoaadiFr6jptnAGBkb8++qmZmZfX/eqTAzM7NKuKkwMzOz\nSripMDMzs0q4qTAzM7NKuKkwMzOzSripMDMzs0q4qTAzM7NKuKkwMzOzSripMDMzs0p8A7sOsm1A\nPLQVAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot those predictions connected by a line\n", + "plt.plot(glass.al, glass.ri_pred, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('Predicted ri')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhUAAAFxCAYAAADEaVqvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xt81NWd//HXkAQCGEQxAspFIHAsUq0tQqMVrXaxiGvx\nHlspaVdsu72Cv4K7+HPVghaxVuv+Wq1YYyk2wlJcWKsi3rCVy2LVgpcDwQheCyIYFCYkk/n9cb6T\nzEwmmVy+ydzez8cjj0m+3zNnvmcC+X7mnM85JxAOhxERERHprB6pvgARERHJDgoqRERExBcKKkRE\nRMQXCipERETEFwoqRERExBcKKkRERMQX+al6YWPMPUCetXZmK2WWAZfGHV5rrZ2coOylwDLgBGvt\nrqjju4Fj4opfb629pcMXLyIiIs10e1BhjAkANwHXAIuTFB8HzAUejDpWm6DOwcC9QDju+EBcQHEm\nsD3q1CftvnARERFpVbcGFcaYkcD9wEnAriRlewElwCZr7e4kVf8OeAU4O+74OKAe2GCtDXXkmkVE\nRKRtujunohTYibvZVycpeyIu6HmjtULGmH8FBgI/S3B6HLBDAYWIiEjX69aeCmvtUmApgDEmWfFx\nwGHgJmPMFOAQsByYb62t9eoYA8wHJgH9W6ij3hizGhgPvAvcaa39Q+dbIyIiItHSefbHWO/xdeB8\nXB7G1bjcCYwx+cASYKG1dmsrdRyFy92YjAtKHjDGlHfdZYuIiOSmlM3+aIPrcQFDjffzq8aYEFBp\njJkN/BAIAYvinheI+v4soKe19qD38xZjzHBgNlDRZVcuIiKSg9I2qLDWhoGauMORHomhwAzgOOBj\nbygl0uvyqjFmvrX259baelyiZnwdVyZ7/XA4HA4EAsmKiYiIZItO3/TSNqgwxizHrWNxcdTh8UAQ\nNz30bGKvfzxQCUzB9UjkA28Bv7DW/jKuXEvDJY0CgQB79hzoTBPSVnFxUda2DdS+TKf2Za5sbhvk\nRvs6K5VBRYCoqMgYUwAMAPZaa+twAcIyY8wsYBVwKm6o43ZvOCNmSqox5jjv253W2v3esZXAPGNM\nFS43YxpwFS5HQ0RERHyUykTNMLGLVZ0BvIebdoq1dgUwHSgHtgC34WZu3JCkzmizgV8Dv/Lq+Dpw\nmbV2rQ/XLyIiIlEC4XD8fVg84Wzt5sqFLjy1L3OpfZkrm9sGOdG+TudUpPOUUhEREckgCipERETE\nFwoqRERExBcKKkRERMQXCipERETEFwoqRERExBcKKkRERMQXCipERETEFwoqRERExBcKKkRERMQX\nCipERETEFwoqRERExBcKKkRERMQXCipERETEFwoqRERExBcKKkRERMQXCipERETEFwoqRERExBcK\nKkRERMQXCipERETEFwoqRERExBcKKkRERMQX+al6YWPMPUCetXZmK2WWAZfGHV5rrZ2coOylwDLg\nBGvtrqjj3wBuAIYCrwA/tNZu9qEJIiIiEqXbeyqMMQFjzM3ANUA4SfFxwFxgUNTXZQnqHAzcG1+f\nMeYrwP3AIuBUYAuwxhhzTCebISIiInG6tafCGDMSd5M/CdiVpGwvoATYZK3dnaTq3+F6Ic6OO/5T\n4CFr7WKvzu8A5wAzgVvbe/0iIiLSsu7uqSgFduJ6IKqTlD0RF/S80VohY8y/AgOBn8Ud7wGcDjwb\nOWatDQPrgDPbed0iIiKSRLf2VFhrlwJLAYwxyYqPAw4DNxljpgCHgOXAfGttrVfHGGA+MAnoH/f8\n/kBf4N244+8Dp3W8FSIiIpJIOs/+GOs9vg6cD9wEXI3LncAYkw8sARZaa7cmeH4f7zEYd7wWKPT9\nakVERHJcymZ/tMH1uIChxvv5VWNMCKg0xswGfgiEcEmY0QLe4yHvsVfc+V7Ap11wvSIiIjktbYMK\nL/+hJu5wpEdiKDADOA742BtKifS6vGqMmW+t/bkx5lNgcFwdxwHvtOUaiouLOnLpGSGb2wZqX6ZT\n+zJXNrcNsr99nZW2QYUxZjluHYuLow6Pxw1nbMfN9MiPO1cJTMFNHQV4wSsXyePogcu/uLct17Bn\nz4EOX386Ky4uytq2gdqX6dS+zJXNbYPcaF9npTKoCNA0VIExpgAYAOy11tbhAoRlxphZwCrcOhOL\ngNuttQeJm5JqjDnO+3antXa/9/0dwGpjzEvAM8BsoAhY3GWtEhERyVGpTNQME7tY1RnAe7hpp1hr\nVwDTgXJcz8NtwJ3W2huS1NnIWvsEbpGta4EXcdNUJ1trP/KnCSIiIhIRCIeTLWqZs8LZ2s2VC114\nal/mUvsyVza3DXKifYHkpVqXzlNKRUREJIMoqBARERFfKKgQERERXyioEBEREV8oqBARERFfKKgQ\nERERXyioEBEREV8oqBARERFfKKgQERERXyioEBEREV8oqBARERFfKKgQERERXyioEBEREV8oqBAR\n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\n31obNsa8AJxNUx5HD2AScG9brmHPngPtvOrMUFxclLVtA7Uv06l9mSub2wa50b7OSmVQEfC+ADDG\nFAADgL3W2jqgElhmjJkFrAJOBRYBi6y1B1uoL94dwGpjzEvAM8BsoIjk62OIiIhIO6Vyme6w9xVx\nBvAebtop1toVwHRcUuYW4DbgTmvtDa3UF8Na+wRuka1rgRdx01QnW2s/8qcJIiIiEhEIh5vdi8UJ\nZ2s3Vy504al9mUvty1zZ3DbIifYl6vFvF20oJiIiIr5QUCEiIiK+UFAhIiIivlBQISIiIr5QUCEi\nIiK+UFAhIiIivlBQISIiIr5QUCEiIiK+UFAhIiIivlBQISIiIr5QUCEiIiK+UFAhIiIivlBQISIi\nIr5QUCEiIiK+UFAhIiIivlBQISIiIr5QUCEiIiK+UFAhIiIivlBQISIiIr5QUCEiIiK+UFAhIiIi\nvlBQISIiIr7IT9ULG2PuAfKstTNbKbMMuDTu8Fpr7WTvfB/gTuAiXFuWA7OstZ9G1bEbOCaujuut\ntbd0vhUiIiIS0e1BhTEmANwEXAMsTlJ8HDAXeDDqWG3U9/cCpwJTgZ7A77xjV3mvNRAXUJwJbI96\n3icdb4GIiIgk0q1BhTFmJHA/cBKwK0nZXkAJsMlauzvB+SHAlcA51tpN3rGrgWeMMT+11r6PC0rq\ngQ3W2pCvjREREZEY3Z1TUQrsxN3sq5OUPREX9LzRwvnTgQbgr1HHXgBCwJe8n8cBOxRQiIiIdL1u\n7amw1i4FlgIYY5IVHwccBm4yxkwBDuFyJuZba2uBIcDu6IDBWlvv5VAMjaqj3hizGhgPvAvcaa39\ng3+tEhEREUjv2R9jvcfXgfNxeRhX43ImAPoAwQTPqwUKo+o4Cpe7MRkXlDxgjCnvmksWERHJXSmb\n/dEG1wMLrbU13s+vGmNCQKUxZjau56JXguf1AiKzP84CelprD3o/bzHGDAdmAxVdduUiIiI5KG2D\nCmttGKiJO7zVexwCvA0ca4wJeGUxxuQDx+KGObDW1uMSNePruLIt11BcXNSxi88A2dw2UPsyndqX\nubK5bZD97eustA0qjDHLcetYXBx1eDxueKMK2Iu7/tNpStb8Em5I569egPEW8Atr7S/j6thKG+zZ\nc6AzTUhbxcVFWds2UPsyndqXubK5bZAb7eusVAYVAe8LAGNMATAA2GutrQMqgWXGmFnAKtx6FIuA\n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\ntXN8r3Mtt9w1lW3uJJ0F3ABcHxGrhgzLNn9jxpdt/iLiVxFxP3AqsAdpp9mgLPM3ZmxZ5U7SmaRH\n4xcPvDRssWbr3E1jUfGH4vfB7qVL2PGRQTl+sFI9APjHkGdtk9YovoiYrbSXL5XdYN/Y8b3Nt9xy\n10iuuZP0SeCrwJcjou4Nu5Rl/saNL7f8SVpcLPr+v4h4HniUHfMEGeWvaWy55Y5UGC0F/ixpOy+t\nBblN0tU141vnbhqLil8C23l599JlwIHUdy+9m7Qts+r44nofNYpvjG6wOcstd43kmDtJq4DLgdWV\nleXDZJe/JvFlmL9lwHWSjiwvSJoBBPy6ZnxO+VtGg9gyzN3pwCGkHUqHAScW188GLq0Z3zp3U7dQ\nMyL+XVRmV0p6EvgrcDWwJSJ+VtMtdT2wqjiIaB3wDuA0XkpKr7SIb1Q32D4b1ek2q9zV2NVOvr0i\n6S2kNQbrSXve31B5+e/AC2ScvxbxZZU/4H7gLuBaSR8CXgQ+CzwBfC3zr7+msWWVu4jYVv1Y0n+K\nP/4xIp7sMnfTOFMB6XnYN4FvAHeStu6VJ6MNdkt9AngX6T/Nz4GPACsjYsv83nIjTeIbpxtsX43q\ndJtj7qq66OTbJ6eQ3nPOBv5EiqX89THSYVE5569pfFnlLyJmgfcBDwG3kLatPwMsL76RZvv11yK2\nrHI3xJy8d7pLqZmZmXViWmcqzMzMrGMuKszMzKwTLirMzMysEy4qzMzMrBMuKszMzKwTLirMzMys\nEy4qzMzMrBMuKsystyRtkbR50vdhZuNxUWFmfTZ4qqiZ9ZiLCjPrs2Gtmc2sh6auoZiZ9YekRaQu\nie8F3kTq8ngv8ImIeHiS92ZmzbmoMLNJ2kBqYnQJ8FvgYODTwHXAoRO8LzNrwUWFmU2EpL2AvYHz\nIuKm4vJdkmaAKyXtP7m7M7M2XFSY2URExL+AFQCSlpBmKQ4G3kNanLnn5O7OzNpwUWFmEyPpRGAt\nIGA78BDwz+JlL9I0y4x3f5jZREg6CNgIPAC8OSJmImI5cAsuKMyy5KLCzCblSOBVwBUR8Vjl+grS\n4w+/P5llxo8/zGxSHgReBNZIWgvsBXwAOJo0U7GoGOdZC7NM+CcBM5uIiHgUOA04ENgEfAkI4AjS\nTMWx+ERNs6wsmJ3116uZmZntOs9UmJmZWSdcVJiZmVknXFSYmZlZJ1xUmJmZWSdcVJiZmVknXFSY\nmZlZJ1xUmJmZWSdcVJiZmVknXFSYmZlZJ/4HD+jKYvu6ck4AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# put the plots together\n", + "plt.scatter(glass.al, glass.ri)\n", + "plt.plot(glass.al, glass.ri_pred, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('ri')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Refresher: interpreting linear regression coefficients" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Linear regression equation: $y = \\beta_0 + \\beta_1x$" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1.51699012])" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute prediction for al=2 using the equation\n", + "linreg.intercept_ + linreg.coef_ * 2" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1.51699012])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute prediction for al=2 using the predict method\n", + "linreg.predict(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('al', -0.002477606387469623)]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine coefficient for al\n", + "zip(feature_cols, linreg.coef_)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Interpretation:** A 1 unit increase in 'al' is associated with a 0.0025 unit decrease in 'ri'." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1.5145125136125304" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# increasing al by 1 (so that al=3) decreases ri by 0.0025\n", + "1.51699012 - 0.0024776063874696243" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1.51451251])" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute prediction for al=3 using the predict method\n", + "linreg.predict(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Predicting a Categorical Response" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1 70\n", + "2 76\n", + "3 17\n", + "5 13\n", + "6 9\n", + "7 29\n", + "dtype: int64" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine glass_type\n", + "glass.glass_type.value_counts().sort_index()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
rinamgalsikcabafeglass_typeri_predhousehold
id
221.5196614.773.750.2972.020.039.0000.0011.5212270
1851.5111517.380.000.3475.410.006.6500.0061.5211031
401.5221314.213.820.4771.770.119.5700.0011.5207810
391.5221314.213.820.4771.770.119.5700.0011.5207810
511.5232013.723.720.5171.750.0910.0600.1611.5206820
\n", + "
" + ], + "text/plain": [ + " ri na mg al si k ca ba fe glass_type \\\n", + "id \n", + "22 1.51966 14.77 3.75 0.29 72.02 0.03 9.00 0 0.00 1 \n", + "185 1.51115 17.38 0.00 0.34 75.41 0.00 6.65 0 0.00 6 \n", + "40 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "39 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "51 1.52320 13.72 3.72 0.51 71.75 0.09 10.06 0 0.16 1 \n", + "\n", + " ri_pred household \n", + "id \n", + "22 1.521227 0 \n", + "185 1.521103 1 \n", + "40 1.520781 0 \n", + "39 1.520781 0 \n", + "51 1.520682 0 " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# types 1, 2, 3 are window glass\n", + "# types 5, 6, 7 are household glass\n", + "glass['household'] = glass.glass_type.map({1:0, 2:0, 3:0, 5:1, 6:1, 7:1})\n", + "glass.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's change our task, so that we're predicting **household** using **al**. Let's visualize the relationship to figure out how to do this:" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAg0AAAFxCAYAAADwEJuzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XucXVV58PHfJAwJwQEVhwoESb09olQBU0KKIF7w3hb7\naomXcFHEj1qxb180YqGiYuuFVvGCKKJBQEFFqfVCEWhMayExWq229lErIHINl5CAmRCSef/Ye5Iz\nJ2cmayZnJufM/L6fz3xmztpr7/2svc7MeWavtffuGRwcRJIkaXtm7OwAJElSdzBpkCRJRUwaJElS\nEZMGSZJUxKRBkiQVMWmQJElFdtnZAWxPRJwPzMzMN4xS5zjgdOCJwO3AZ4EPZ+bmyYlSkqSpr2OT\nhojoAd4DnEKVBIxU78XAJcDbgO8AhwIXAL3A2RMfqSRJ00NHJg0R8XjgQuBpwG+2U/2NwFcz87z6\n9Y0RcSBwEiYNkiS1TUcmDcBC4GbgOODy7dQ9G3igqWwQeNQExCVJ0rTV0+m3kY6IfwF+mZmnFNbf\nA/hv4HuZ+ZoJDU6SpGlkSl09ERFzgCuBWcA7d3I4kiRNKZ06PDFmEfEY4BvAU4BjMvOWnRySJElT\nypRIGiJiHnA1sDtwVGb+bHvrDA4ODvb09Ex0aJIkdYod/tDr+qQhIvYG/gXYCPxRZt5csl5PTw+r\nV6+b0Nh2pv7+PtvXpaZy28D2dTvb1736+/t2eBvdkDT00JAdRUQvsBdwT2ZuBD5Zv34usCEiHltX\nHczMOyc7WEmSpqpuSBoG668hRwDXAUdHxA+Al1MlFSub1nsY2HVSIpQkaRro+KQhM5/T9HoZw6/6\n6Pg2SJI0FUypSy4lSdLEMWmQJElFTBokSVIRkwZJklTEpEGSJBUxaZAkSUVMGiRJUhGTBkmSVMSk\nQZIkFTFpkCRJRUwaJElSEZMGSZJUxKRBkiQVMWmQJElFTBokSVIRkwZJklTEpEGSJBUxaZAkSUVM\nGiRJUhGTBkmSVMSkQZIkFTFpkCRJRUwaJElSEZMGSZJUxKRBkiQVMWmQJElFTBokSVIRkwZJklTE\npEGSJBUxaZAkSUVMGiRJUhGTBkmSVGSXnR3A9kTE+cDMzHzDKHXmA+cCBwO3Au/LzIsnKURJkqaF\njj3TEBE9EfFe4BRgcJR6/cA/A6uAQ4CPARdGxDGTEqgkSdNER55piIjHAxcCTwN+s53qJwP3Zebb\n6te/iIhDgdOA705clJIkTS+deqZhIXAzcBBw43bqHgksbyr7HnDEBMQlSdK01ZFnGjLzUuBSgIjY\nXvX9gB82ld0GzImIR2fmve2PsP0GBga47LIq91m06Chmz57dlfvoRmvWrGHJkqUAfPCDJzJ79uzt\nHqfSYzmeYz4wMMDSpVcDcOyxh3HllSu5//57+cY3fghs5thjD6evb88t22vcx7HHHsZXvvJvrFr1\nK+bPfxKLFz9v1Pg3bnwI6KG3t5dFi44C4OKLr2HFip+zadNmAGbO3IUFC57C4sXP27J8tO03txng\nc5/7Nldc8X1gBq95zZFs2jRzyz4b27Bx40Ns3LiRn/zk5qL4m49r87G48sqV27Rxe/E2H9OhNpT2\n9/nnL2fduoExrdcqntHiLom5ne/J5vWXLr16u8e12wwdl76+2bz0pYd1fXsmSs/g4IjTBTpCRPwL\n8MvMPGWE5b8Elmbm+xvKjgKWAXMz87YRNj24evW6doc7LgMDAxx33Ne5/vqTAFi48PNcfvnLd+hN\n29/fR2P7JmIfO1Nz+8ZrzZo1zJ9/EWvXLgGgr+9sDjzw91i5spp32+o4lR7L8RzzgYEBFi/+J773\nvcXAAHvscS5r154AXAC8HbgcOGHL9i666MWccMJ36n0M0Nd3DuvW7b+lzuGHX8iXv/x/Roj/VcO2\nt2DBZxgc3MzKlY3/S/RuWX7YYecDsHLlbiNuv7nNCxZ8hk2bNrBq1f3A/sBxo7ThVcAlw/Y5evzD\njyvQUD507N62zf4a+6DVtoYf06oNPT0zueGG14/aj63aXrJe620M75vGdUtibud7snn96v35ylGP\na7eZan8fR9Lf39ezo9vo1OGJsVgPzGoqG3r94CTHMi6XXba8frP2Ar1cf/2JW/4T6KZ9dKMlS5bW\nCUN1XNatO6ROGEY+TqXHcjzH/LLLltcJQy+wvI7tQ8CZVKNwJwzb3pIlSxv2sZx16w4dVueGG143\nSvzDt7dixX6sXPk4YN+Gr63LV67cv14+8vab27xixX6sWrUeGIprtDYs32afo8c//LgOLx86dtvu\nb7R4tz2mVRuqD/6x9XfpeiV907huScztfE82r1+9P0c/rt3Gv4/lOnJ4YoxuofpL02hf4IHMvH+0\nFfv7+yYsqLHo69s2m+3rm73D8TWuP1H72JnaEfusWb3brdN8nEqP5XiOeat1RtOu+HdE4/bHs+3t\ntaH0+JfaXrzjOaalMexI/w+tWxpzu96TY42vG03Fv48TZSoMT5wOnJSZT24oWwrsnZkvGWXTHTg8\ncSIACxcuncDhifbtY2dq//DEOwDo63t/PTxxMtD6OJUey/Ec862nf19LdYr9Y6xdezzwWaoLgr4M\nHL9le1tPS59INTzx9/XwRFXn8MM/N8rp/UXDtrdgwQUjDE9Uyw877NPA0PBE6+03t3nBgguahif+\nfJQ2LKKaytQ74vZHO65AQ/nQsTt1m/21Hp7Yuq3hx7RqQzXM8LpR+7FV20vWa72N4X3TuG5JzO18\nTzavX70/XzHqce02U+3v40jaMTzRDUnDMqqk4Q31615gL+CezNwYEXsDSTXAdi7wfOAc4IWZuWyU\nTXdM0gDtn6TY6kN1Kk2EbFfSAJ03EbKvr5ePf/xbgBMhu3Ei5Le+tXJKT4Qcen86EbL7TJekYdiZ\nhog4GrgOODozl9dlC6hu6vR04Cbg3Zn55e1suqOShnZr54dqJ5rK7ZvKbQPb1+1sX/dqR9LQ8XMa\nMvM5Ta+X0TSBMzNXAAsmMSxJkqadqXD1hCRJmgQmDZIkqYhJgyRJKmLSIEmSipg0SJKkIiYNkiSp\niEmDJEkqYtIgSZKKmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCImDZIkqYhJgyRJKmLSIEmS\nipg0SJKkIiYNkiSpiEmDJEkqYtIgSZKKmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCImDZIk\nqYhJgyRJKmLSIEmSipg0SJKkIiYNkiSpiEmDJEkqYtIgSZKK7LKzA2gWETOBs4ETgD7gKuAtmXnX\nCPX/FDgLeDJwO/DpzPzw5EQrSdL00YlnGs4CjgcWA0cBc4ErWlWMiEPqZVcATwOWAO+OiDdPSqSS\nJE0jHZU0RMSuwKnA6Zl5bWb+B7AIOCIiFrZY5dnAmsw8OzNvyswrgG8DL5y8qCVJmh46KmkADqYa\nklg2VJCZNwM3AUe2qL8C2DMiFkXEjIg4qK73g4kPVZKk6aXTkoa59fdbm8pva1i2RWZeD7wJuATY\nAPwnVcLx/okLUZKk6anTkoY5wObM3NRUvgGY3Vw5Io4EPgF8CJhPNXnyBcC7JzhOSZKmnU5LGtYD\nMyKiOa5ZwIMt6v81cF1mviszf5KZFwOnAadHxKMmOFZJkqaVTrvk8pb6+z4MH6LYD7iyRf392fbK\nipVAL/A44L7Rdtbf3ze+KLuE7eteU7ltYPu6ne2bvjotafgJsA44GrgUICLmAQcAy1vU/yXwjKay\ng4DNwP9ub2erV68bf6Qdrr+/z/Z1qancNrB93c72da92JEMdlTRk5oaIOA84JyLuBlYD5wHLMnNl\nRPQCewH3ZOZGqrkMyyPir4EvAU8F/h74ZGY+sHNaIUnS1NRpcxoAzqA6y3AJcB1wI/CKetkRVFdS\nLATIzH8HXgS8DPgx8BHg08BfTW7IkiRNfR11pgGgvnLitPqredkymhKdzLwGuGZSgpMkaRrrxDMN\nkiSpA5k0SJKkIiYNkiSpiEmDJEkqYtIgSZKKmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCIm\nDZIkqYhJgyRJKmLSIEmSipg0SJKkIiYNkiSpiEmDJEkqYtIgSZKKmDRIkqQiJg2SJKmISYMkSSpi\n0iBJkoqYNEiSpCImDZIkqYhJgyRJKmLSIEmSiuwy0oKIeNxYNpSZv9nxcCRJUqcaMWkAbmp6PQj0\njFB3EJjZjoAkSVJnGi1peF3Dz48GPgBcA3wFuB3YC/hj4GXAX05UgJIkqTOMmDRk5tKhnyPiSuAL\nmXlyU7VLI+KjwCLgsxMSoSRJ6gilEyGPAS4fYdm3gSPaE44kSepUpUnD3cCCEZY9B7i1PeFIkqRO\nNdqchkafAd4dEbsB/wisBh5LNSzxFpzTIEnSlFeaNPwd8Cjg7cDpDeXrgTMy8xPtCigiZgJnAycA\nfcBVwFsy864R6s8FPgq8oI7nq8Bpmbm+XTFJkqTCpCEzNwOnRcTZwOFUV1PcDfx7Zj7Q5pjOAo4H\nFgP3AucBVwBHNleMiFnAd6mGR/4IeAxwEdUloH/R5rgkSZrWSs80AJCZa6j+858QEbErcCrw1sy8\nti5bBNwYEQsz8/qmVV5NNUxyeGbeX9c/C3jTRMUoSdJ0NdodIX9J6xs6DTb8PLRsMDOf3IZ4DqYa\nklg2VJCZN0fETVRnGpqThhcCVw8lDHX9zwOfb0MskiSpwWhnGr4/hu0Mbr9Kkbn19+arMW5rWNbo\nScB1EfE+4DV1HF+jmmexoU0xSZIkRr+504mTGMeQOcDmzNzUVL4BmN2i/p7A66nuFfEKqsTiE8De\nVBMpJUlSmxTPaagvtzwJeDbVh/XdwL8BF7XxSoX1wIyImFFPvhwyC3iwRf2NwD3A4swcBH4UEb3A\nVyLiLzPzvtF21t/f16awO5Pt615TuW1g+7qd7Zu+ipKGiHg01TyDg4BfAXdRDQ28Gjg1Io7Y3gd0\noVvq7/swfIhiP+DKFvV/C6yvE4YhP6+/zwNGjWn16nXji7IL9Pf32b4uNZXbBrav29m+7tWOZKj0\njpAfAPqprlJ4cmY+KzOfQHX55aOAv93hSCo/AdYBRw8VRMQ84ABgeYv6/wocEhGNyc9BwCa2fUqn\nJEnaAaVJw58CZ2bmysbC+vWZwLHtCKaevHgecE5EvDAiDgUuA5Zl5sqI6I2Ix9ZDEADnU811+EJU\nng98iGrIpB1nPiRJUq00adgN+M0Iy35LdbahXc4ALgUuAa4DbqSa5AjVg7FuAxYC1HeJPIrqZlM/\nqtf7Kt6nQZKktiudCPkzqvkLV7dY9irgv9sVUH3lxGn1V/OyZTQlOpn5c+BF7dq/JElqrTRpOBv4\nZj0h8kvAHVR3Ynw18FKqxEGSJE1hpc+e+HZEvJ7qwVUva1h0J3ByZl4+EcFJkqTOUTqnYej2zPsC\nT6O6pfNBwH6Z+bkJik2SJHWQMT2wCtiV6t4HQ896eGxEAJCZt7UxLkmS1GFKb+70+8AXgQUjVBkE\nZrYrKEmS1HlKzzR8Cngy1YTIm4DNo9aWJElTTmnS8CzgzZn5hYkMRpIkda7SiZAPALdPZCCSJKmz\nlSYNl1I9mMp5C5IkTVMjDk9ExAVUExyhejT1i4FfRMQNtHhMdWaeMiERSpKkjjDanIZj2Jo0QPWM\niZlUz39oLO9pei1JkqagEZOGzJw3iXFIkqQON9abOxERj6O6M+TPgE2Zub7tUUmSpI5TnDRExJ8A\nHwaeRDUccRjwroi4H3hD/XRKSZI0RRVdPRERfwx8Hfgv4PVsncdwNfAa4F0TFaAkSeoMpZdcvge4\nKDP/DLh4qDAzPw28F1g8AbFJkqQOUpo0HAhcNsKyfwce155wJElSpypNGu4BYoRlTwLubk84kiSp\nU5UmDV8C3hcRxwK9Q4URcQhwJvCVCYhNkiR1kNKrJ/4GOAj4GjB0lcS1wJ7A96kSB0mSNIUVJQ2Z\nuT4iXgI8H3gesBdwP/A94JuZ6R0hJUma4orv01AnBt+tv4iIXYA5JgySJE0Ppfdp2CUi/iYiXl2/\nPhq4E1gTEVdHxCMnMEZJktQBxnKfhjOBoeTg41RXVPxf4CnAB9ofmiRJ6iSlScOrgHdl5nkR8VTg\nacD7M/Nc4HTg2IkKUJIkdYbSpGFf4Ib655dQ3UL6W/XrW6muopAkSVNYadJwO/D79c9/AvxHZg7d\n0GkhcEu7A5MkSZ2lNGm4FPhIRPwz8CzgcwARcS71cykmJjxJktQpxnJzpweBZwPvBD5Vlz8deB/w\nt+0PTZIkdZLSmzttBv6u/mosf85EBCVJkjpPUdIQEa+hmvw4osz8YlsikiRJHal0eOLiUZZtAh4G\nTBokSZrCSpOGx7coewTVpMh3Ai9vW0RARMwEzgZOAPqAq4C3ZOZdBet+E9jdoRNJktqrdE7DTSMs\n+llE7Ap8DDiyXUEBZwHHA4uBe4HzgCu2t4+IeCPVfSSWtTEWSZJE+SWXo/kpML8N2wGgTkJOBU7P\nzGsz8z+ARcAREbFwlPWeCLwfuB7oaVc8kiSpskNJQ/0B/zqqh1e1y8FUQxLLhgoy82bgJkY401AP\nZ3yB6hkY/93GWCRJUq306olfUl090fgf/Exgb2AOcFobY5pbf7+1qfy2hmXNTqeakPn3wAVtjEWS\nJNVKJ0J+v0XZILAW+KfMvKZ9ITEH2JyZm5rKNwCzmytHxDOBvwLmZ+ZgRAzFJkmS2qh0IuSJExxH\no/XAjIiYUd9UasgsqrtSbhERs6kuBz0jM3/dsKhoTkN/f9+OxtrRbF/3msptA9vX7Wzf9FV6poGI\n2A04iepW0nsCdwP/BlyUmevbGNPQw6/2YfgQxX7AlU11FwBPAT4YER+sy2ZRJR3rgAMz87cj7Wj1\n6nXtibgD9ff32b4uNZXbBrav29m+7tWOZKhoImREPBpYAXwCOITqHg0LqS6F/GFEPGqHI9nqJ8A6\n4OiG/c8DDgCWN9VdATwReEb9dTDwdeAH9evb2xiXJEnTWumZhg8A/cDhmblyqDAiDgP+keqBVW9q\nR0CZuSEizgPOiYi7gdVUycmyzFwZEb3AXsA9mTkANA5LUJ9hGGgarpAkSTuo9JLLPwXObEwYAOrX\nZwLHtjmuM6gex30JcB1wI/CKetkRVFdSjHTPhkGcCClJUtuVnmnYDfjNCMt+C7RzeIL6yonTaHEp\nZ2YuY5RkJzPf0M5YJElSpfRMw8+AV4+w7FV4QyVJkqa80jMNZwPfrCdEfgm4g+rqhlcBL62/S5Kk\nKaz0Pg3fjojXA38HvKxh0Z3AyZl5+UQEJ0mSOkfxsycy8/PA71M9Dvtoqvs1HAZcFRH7Tkh0kiSp\nY5Q+e+L3gS9S3UyplUGqZ1FIkqQpqnROw6eAJ1PNbbgJ2DxqbUmSNOWUJg3PAt6cmV+YyGAkSVLn\nKp3T8ADeklmSpGmtNGm4FDg1Ipy3IEnSNDXi8EREXMDW2zHPAl4M/CIibqDpEdUAmXnKhEQoSZI6\nwmhzGo5h+DMcfkt1hcQRTeU9+KwHSZKmvBGThsycN4lxSJKkDld8cydJkjS9mTRIkqQiJg2SJKmI\nSYMkSSpi0iBJkoqYNEiSpCImDZIkqYhJgyRJKmLSIEmSipg0SJKkIiYNkiSpiEmDJEkqYtIgSZKK\nmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCImDZIkqcguOzuAViJiJnA2cALQB1wFvCUz7xqh\n/nHA6cATgduBzwIfzszNkxOxJElTX6eeaTgLOB5YDBwFzAWuaFUxIl4MXAJ8BvgD4J3AEuBdkxGo\nJEnTRcedaYiIXYFTgbdm5rV12SLgxohYmJnXN63yRuCrmXle/frGiDgQOInqbIUkSWqDTjzTcDDV\nkMSyoYLMvBm4CTiyRf2zgfc0lQ0Cj5qY8CRJmp467kwD1VAEwK1N5bc1LNsiM1c1vo6IPYA3Ad+Z\nkOgkSZqmOvFMwxxgc2ZuairfAMwebcWImANcCcyimtsgSZLapBOThvXAjIhojm0W8OBIK0XEY4Br\nqIY3XpSZt0xciJIkTT+dODwx9GG/D8OHKPajOouwjYiYB1wN7A4clZk/K9lRf3/f+KPsArave03l\ntoHt63a2b/rqxKThJ8A64GjgUtiSFBwALG+uHBF7A/8CbAT+qJ40WWT16nU7Hm2H6u/vs31daiq3\nDWxft7N93asdyVDHJQ2ZuSEizgPOiYi7gdXAecCyzFwZEb3AXsA9mbkR+GT9+rnAhoh4bL2pwcy8\ncyc0QZKkKanjkobaGUAv1U2beqmuhHhLvewI4Drg6Ij4AfByoAdY2bSNh4FdJyVaSZKmgY5MGuor\nJ06rv5qXLWP4BM6ObIMkSVNNJ149IUmSOpBJgyRJKmLSIEmSipg0SJKkIiYNkiSpiEmDJEkqYtIg\nSZKKmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCImDZIkqYhJgyRJKmLSIEmSipg0SJKkIiYN\nkiSpiEmDJEkqYtIgSZKKmDRIkqQiJg2SJKmISYMkSSpi0iBJkoqYNEiSpCImDZIkqYhJgyRJKmLS\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(glass.al, glass.household)\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's draw a **regression line**, like we did before:" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# fit a linear regression model and store the predictions\n", + "feature_cols = ['al']\n", + "X = glass[feature_cols]\n", + "y = glass.household\n", + "linreg.fit(X, y)\n", + "glass['household_pred'] = linreg.predict(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot that includes the regression line\n", + "plt.scatter(glass.al, glass.household)\n", + "plt.plot(glass.al, glass.household_pred, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If **al=3**, what class do we predict for household? **1**\n", + "\n", + "If **al=1.5**, what class do we predict for household? **0**\n", + "\n", + "We predict the 0 class for **lower** values of al, and the 1 class for **higher** values of al. What's our cutoff value? Around **al=2**, because that's where the linear regression line crosses the midpoint between predicting class 0 and class 1.\n", + "\n", + "Therefore, we'll say that if **household_pred >= 0.5**, we predict a class of **1**, else we predict a class of **0**." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['small', 'big', 'small'], \n", + " dtype='|S5')" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# understanding np.where\n", + "import numpy as np\n", + "nums = np.array([5, 15, 8])\n", + "\n", + "# np.where returns the first value if the condition is True, and the second value if the condition is False\n", + "np.where(nums > 10, 'big', 'small')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
rinamgalsikcabafeglass_typeri_predhouseholdhousehold_predhousehold_pred_class
id
221.5196614.773.750.2972.020.039.0000.0011.5212270-0.3404950
1851.5111517.380.000.3475.410.006.6500.0061.5211031-0.3154360
401.5221314.213.820.4771.770.119.5700.0011.5207810-0.2502830
391.5221314.213.820.4771.770.119.5700.0011.5207810-0.2502830
511.5232013.723.720.5171.750.0910.0600.1611.5206820-0.2302360
\n", + "
" + ], + "text/plain": [ + " ri na mg al si k ca ba fe glass_type \\\n", + "id \n", + "22 1.51966 14.77 3.75 0.29 72.02 0.03 9.00 0 0.00 1 \n", + "185 1.51115 17.38 0.00 0.34 75.41 0.00 6.65 0 0.00 6 \n", + "40 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "39 1.52213 14.21 3.82 0.47 71.77 0.11 9.57 0 0.00 1 \n", + "51 1.52320 13.72 3.72 0.51 71.75 0.09 10.06 0 0.16 1 \n", + "\n", + " ri_pred household household_pred household_pred_class \n", + "id \n", + "22 1.521227 0 -0.340495 0 \n", + "185 1.521103 1 -0.315436 0 \n", + "40 1.520781 0 -0.250283 0 \n", + "39 1.520781 0 -0.250283 0 \n", + "51 1.520682 0 -0.230236 0 " + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transform household_pred to 1 or 0\n", + "glass['household_pred_class'] = np.where(glass.household_pred >= 0.5, 1, 0)\n", + "glass.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nLAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the class predictions\n", + "plt.scatter(glass.al, glass.household)\n", + "plt.plot(glass.al, glass.household_pred_class, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Using Logistic Regression Instead\n", + "\n", + "Logistic regression can do what we just did:" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# fit a logistic regression model and store the class predictions\n", + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression(C=1e9)\n", + "feature_cols = ['al']\n", + "X = glass[feature_cols]\n", + "y = glass.household\n", + "logreg.fit(X, y)\n", + "glass['household_pred_class'] = logreg.predict(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nqJnKRE0AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the class predictions\n", + "plt.scatter(glass.al, glass.household)\n", + "plt.plot(glass.al, glass.household_pred_class, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What if we wanted the **predicted probabilities** instead of just the **class predictions**, to understand how confident we are in a given prediction?" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# store the predicted probabilites of class 1\n", + "glass['household_pred_prob'] = logreg.predict_proba(X)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAg0AAAFxCAYAAADwEJuzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd4VFX+x/H3TDLpCTWogIL1WNC1sCKrKOra/bm6rooF\nwYarrmVZFHvFtWHBhg0EwRU7dhfLIqsiiG3VdY8VBVF6SE+m/f64ExiGlJswyZ2ZfF7Pk2cy9565\n8z33JJlvzjn3XF80GkVERESkJX6vAxAREZH0oKRBREREXFHSICIiIq4oaRARERFXlDSIiIiIK0oa\nRERExJVsrwNoiTHmASDLWntWM2VOAC4DtgF+AR4BbrPWRjomShERkcyXskmDMcYHXAeMwkkCmip3\nGDAduBB4DdgdeBgIAOPaP1IREZHOISWTBmPMVsAkYCfgpxaKnw08Y629P/b8B2PMDsBpKGkQERFJ\nmpRMGoDBwI/ACcCTLZQdB1QmbIsC3dohLhERkU7Ll+rLSBtj/gV8Y60d5bJ8CfBf4B1r7cntGpyI\niEgnklFXTxhjCoCZQC5wqcfhiIiIZJRUHZ5oNWNMT+BFYHvgIGvtIo9DEhERySgZkTQYY/oDs4BC\nYF9r7RctvSYajUZ9Pl97hyYiIpIqNvpDL+2TBmNML+BfQBD4nbX2Rzev8/l8LF9e0a6xeam0tFj1\nS1OZXDdQ/dKd6pe+SkuLN/oY6ZA0+IjLjowxAaAHsNJaGwTuiz0/AKgzxmwaKxq11i7t6GBFREQy\nVTokDdHYV4O9gbeBocaYD4FjcJKK+QmvCwE5HRKhiIhIJ5DySYO1dv+E57NZ/6qPlK+DiIhIJsio\nSy5FRESk/ShpEBEREVeUNIiIiIgrShpERETEFSUNIiIi4oqSBhEREXFFSYOIiIi4oqRBREREXFHS\nICIiIq4oaRARERFXlDSIiIiIK0oaRERExBUlDSIiIuKKkgYRERFxRUmDiIiIuKKkQURERFxR0iAi\nIiKuKGkQERERV5Q0iIiIiCtKGkRERMQVJQ0iIiLiipIGERERcUVJg4iIiLiipEFERERcUdIgIiIi\nrihpEBEREVeUNIiIiIgrShpERETEFSUNIiIi4oqSBhEREXFFSYOIiIi4oqRBREREXMn2OoCWGGMe\nALKstWc1U2YgMAHYFfgZuMFaO62DQhQREekUUranwRjjM8ZcD4wCos2UKwX+CSwAdgPuBiYZYw7q\nkEBFREQ6iZTsaTDGbAVMAnYCfmqh+JnAamvthbHnXxtjdgfGAG+0X5QiIiKdS6r2NAwGfgQGAD+0\nUHYIMCdh2zvA3u0Ql4iISKeVkj0N1trHgccBjDEtFe8DfJSwbQlQYIzpbq1dlfwIk6+2tpYZM5zc\nZ9iwfcnLy0vL90hHZWVljB07BYBbbhlJXl5ei+fJ7blsyzmvra1lypRZABx99J7MnDmfNWtW8eKL\nHwERjj56L4qLu6w9Xvx7HH30njz99LssWPAtAwduy/DhBzYbfzBYD/gIBAIMG7YvANOmvcm8eV8R\nDkcAyMrKZtCg7Rk+/MC1+5s7fmKdASZPfpVnn30P8HPyyUMIh7PWvmd8HYLBeoLBIJ999qOr+BPP\na+K5mDlz/gZ1bCnexHPaUAe37f3AA3OoqKht1esai6e5uN3EnMyfycTXT5kyq8Xzmm4azktxcR5H\nHLFn2tenvfii0SanC6QEY8y/gG+staOa2P8NMMVae2Pctn2B2UBfa+2SJg4dXb68ItnhtkltbS0n\nnPA8c+eeBsDgwY/y5JPHbNQPbWlpMfH1a4/38FJi/dqqrKyMgQOnUl4+FoDi4nHssMMmzJ/vzLtt\n7Dy5PZdtOee1tbUMH/4S77wzHKilpGQC5eUjgIeBi4EngRFrjzd16mGMGPFa7D1qKS4eT0XF5mvL\n7LXXJJ566tgm4j9xveMNGvQQ0WiE+fPj/5cIrN2/554PADB/fn6Tx0+s86BBDxEO17FgwRpgc+CE\nZupwIjB9vfdsPv71zysQt73h3F24wfvFt0Fjx1r/nDp18Pmy+OCDM5ptx8bq7uZ1jR9j/baJf62b\nmJP5M5n4eufn87hmz2u6ybS/j00pLS32bewxMiFp+A8w01p7ddy2g3AmR3az1q5p4tApkzRMmTKL\nSy45CuePJUA9t976EiNHHtzmYyZ+qLbHe3gpWUnD2WffxfPPX8q68zITOILmzpPbc9mWc77+a14B\nDgZGA3cAs2LP1x3vmGNuiYv/FSAEHO4y/sTjzQQS/6Yc3sj+po+/YZ1nAl/ijDQe3kIdZrUy/vXL\nAI2cuw3fr/l4E89pQx2a/5louu4tv67xYzQdt7uYk/cz2dr4XItEoL4eX7Ae6mKP9fX4gkGoq4s9\nD+Krr1u3vb7eeR4M4quvh2A9vrrYY329s72uLvY84bXB+ti+DV9buXINlauyieLjzzzAqxyU1n8f\nm5KMpCElhydaaRHQO2Fbb6CymYQBcD54UkFx8YbZbHFx3kbHF//69noPLyUj9tzcQItlEs+T23PZ\nlnPe2Guak6z4N0b88dty7Jbq4Pb8u9VSvG05p25j2Jj2b3it25iT8jMZjUJFBaxYAStWsNOPn3MK\n5fTkfXryb3qymm6sJodadp+yhNLX74d658Ofurp13yc+r6uDcLjJura7rCzIyVn7lR2NUkchVRRS\nSRGQ/n8f20sm9DRcBpxmrd0ubtsUoJe19vBmDp0yPQ3rusZGAjB48JR2HJ5I3nt4KfnDE5cAUFx8\nY2x44kyg8fPk9ly25Zyv6/49BaeL/W7Ky08FHsG5IOgp4NS1x1vXLT0SZ3ji9tjwhFNmr70mN9O9\nP2y94w0a9HATwxPO/j33fBBoGJ5o/PiJdR406OGE4Ynjm6nDMJypTIEmj9/ceQXitjecuws2eL/G\nhyfWHWv9c+rUwRlmOL3Zdmys7m5e1/gx1m+b+Ne6ibm5GIf/6Ul+nb8vW7CI323zHBeevBU5FWvw\nr1yFb/Uq/KtW4l+5Et+qlfhXrXT+S2+FqM8HublEc3IhJ0A04HwwR3NyIJBDNCcAObmx5wHnMSeX\naCDglAvkEM11yjrPA0Rzc9e9NpATex6IO2bO2teSE4i9d866YybEQlZWs22X7n8fm9JZhidm4yQN\nZ8WeB4AewEprbdAY0wuwOANsE4DfA+OBQ6y1s5s5dMokDZD8SYqNfahm0kTIZCUNkHoTIYuLA9xz\nzyuAJkKm40TIV16Z7+lESH84xIl7b0nB0l/JWvQT/p9+JOunhWT9FPt+2dIWY4h06Uqke3ei3XsQ\n6dHDeYx95fbpxctzf6AiN4+awhLCxV046vih5JaUNPqBnC46w0TIzpI0rNfTYIwZCrwNDLXWzolt\nG4SzqNMuwELgGmvtUy0cOqWShmRL5odqKsrk+mVy3UD1S5r6erK+/YZs+xVZ9iuyv3Iesxb+gC8S\n2aB4NDubSJ++hLfoT7hfPyJ9+hIp7UWkew+iPdYlBdFu3SC76ZFrtV/66hRzGqy1+yc8n03C+hLW\n2nnAoA4MS0Sk40QiToLw8QICn35M9icfkf3F5xsMHUS6dSP020GE+/UnvEU/wlv0I9LwuFnvtO0F\nkNSR8kmDiEinU1VF4MN5BD54j8CH88n+9BP8FeVrd0cDAUI7DSA0YBfC2+9AyOxAePsdiPTaBHwb\n/c+kSJOUNIiIpADfmjJyZr1O7ksvkDP7LXy1tWv3hbbdjvpDDye4+x6EdtuD0E47Q26ud8FKp6Wk\nQUTEI76VK8l9/RVyXn6BnDmz1w43hMz21P/+EIK/25vgnnsR7dLV40hFHEoaREQ6kH/pr+S88hK5\nr7xI4P138cXWKwgO2IX6I4+i7sg/EN6uxeXzRTyhpEFEpJ35Fy8i9+UXyH35RbI/nIcvdtVacI+B\n1B3xB+qOPIpI/y09jlKkZUoaRETaQ3U1ec89Td60Rwl88jHgLHwU3Ot3To/C4f9HpE9fj4MUaR0l\nDSIiybR4MYW33E7e9Cn4y8qIZmVRv9/+1B35B+oOO5Jor15eRyjSZkoaRESSwLd6FQUT7oBJD1JQ\nV0ekZ0+qRl9M7YgznDUSRDKAkgYRkY1RVUX+Iw9QcM9d+MvXwOabUzF6LLXHHg8ZuBSxdG5KGkRE\n2iIYJO/xxygYfzNZy5YS6daNyuv+TtElf6W2onU3eRJJF0oaRERaIxIh96WZFNx0A9nff0e0oICq\n0RdTc+4FREu6UJSXB0oaJEMpaRARcSkw+20Kb7yOwGefEM3Opua0M6kaPZboJpt4HZpIh1DSICLS\nAv8vSyi6+CJyZ70OQO0f/0TV2CuJbLmVx5GJdCwlDSIiTYlGyX3yHxRdeSn+8jXUD9mPqmvHEdr5\nN15HJuIJJQ0iIo3w//oLRWMuJHfW60QKi6gYP4Ha4SN1F0np1JQ0iIgkyHn9VYov+DP+sjLqhwyl\n4q57iWy+hddhiXhOSYOISINQiMKbbqDgnjuJ5uVRccsd1I48Q70LIjFKGkREcO4+WTzqNHLmvkdo\ny60onzyd8E4DvA5LJKX4vQ5ARMRr2R/MpdsB+5Az9z3qjjiKsjfeUcIg0gj1NIhIp5bz2iuUjBoJ\n4TCV1/+dmrPP03CESBOUNIhIp5X3j2kUjT4f8vJZM/UJggf83uuQRFKahidEpPOJRsm/+06KLzqP\naNeulD37ohIGERfU0yAinUskQuG1V1LwwL2Ee/dhzVMzCW9nvI5KJC0oaRCRziMYpPii88h7egah\nbbdjzVMzifTp63VUImlDSYOIdA7V1ZScNYLcN/5JcI+BrHn8aaLde3gdlUhaUdIgIhnPV7aaLicf\nT+DDedQPPYA1k6dDUZHXYYmkHU2EFJGM5qsop8uwPxL4cB61xxzLmulPKWEQaSMlDSKSuaqrKTnl\nBAIff0Tt8SdSMXES5OR4HZVI2lLSICKZKRik5IzhziqP/3c0FXfdB379yRPZGPoNEpHME406t7V+\n6w3q9z+Q8omPQLamcIlsLCUNIpJxCm79O/lPTCf4m91YM2mahiREkkRJg4hklLzHHqXw9lsI9+vP\nmsef1qRHkSRKuf46Y0wWMA4YARQDrwPnWWuXNVH+D8C1wHbAL8CD1trbOiZaEUklgXfnUDR2NJEe\nPVjz5HNEe/XyOiSRjJKKPQ3XAqcCw4F9gb7As40VNMbsFtv3LLATMBa4xhhzbodEKiIpw7/oJ0rO\nGgF+P2umPEF4q228Dkkk46RUT4MxJge4ADjfWvtWbNsw4AdjzGBr7dyEl+wHlFlrx8WeLzTGnAAc\nAtzfUXGLiMdqaig57RT8K1dSceudhAbt5XVEIhkp1XoadsUZkpjdsMFa+yOwEBjSSPl5QBdjzDBj\njN8YMyBW7sP2D1VEUkI0SvHFFxH4z6fUnHwqtSNO9zoikYyVaklDw51jfk7YviRu31qxnodzgOlA\nHfAfnITjxvYLUURSSd6kB8l76gmCu+9B5U3jwefzOiSRjJVqSUMBELHWhhO21wF5iYWNMUOAe4Fb\ngYE4kycPBq5p5zhFJAUE3n+XoqsuI9KzlPLJ0yFvgz8TIpJEqZY01AB+Y0xiXLlAVSPlrwDettZe\nbq39zFo7DRgDXGaM6dbOsYqIh/w/L6bkzFPB56N80mNEevfxOiSRjJdSEyGBRbHHzVh/iKIPMLOR\n8puz4ZUV84EAsAWwurk3Ky0tbluUaUL1S1+ZXDdIQv1CITjmLFixAu65h65HHZqcwJJE7ZfeMr1+\nGyPVkobPgApgKPA4gDGmP9APmNNI+W+A3yRsGwBEgO9aerPlyyvaHmmKKy0tVv3SVCbXDZJTv4I7\nbqXwvfeoPeoYKo4/FVLofKn90lsm1y8ZyVBKJQ3W2jpjzP3AeGPMCmA5zqWTs621840xAaAHsNJa\nG8SZyzDHGHMF8ASwI3A7cJ+1ttKbWohIe8r+eAEFt91EeLPeVN52pyY+inSgVJvTAHAlTi/DdOBt\n4AfgT7F9e+NcSTEYwFr7PnAocCTwKXAn8CAwumNDFpEOUVlJ8bln4QuHqbj3QaLdunsdkUinklI9\nDQCxKyfGxL4S980mIdGx1r4JvNkhwYmIp4quuYLs77+j+pzzCQ7Zz+twRDqdVOxpEBHZQM5rr5A/\n7VFCOw6g6vKrvQ5HpFNS0iAiKc+3dCnFo/9CNDeX8gcmQW6u1yGJdEopNzwhIrKeaJSSC8/Bv3Il\nlTfeQnj7HbyOSKTTUk+DiKS0vOlTyXn7TeqHHkDNGWd7HY5Ip6akQURSlv+XJRReeyWR4hIqJtwP\nfv3JEvGShidEJDVFoxRd8lf8FeVU3H43kc16ex2RSKentF1EUlLuzGfJ/edr1A/Zj9pTRngdjoig\npEFEUpCvbDVFV4wlmp9PxfgJWvVRJEUoaRCRlFN4wzX4Vyyn6m+XEtlyK6/DEZEYJQ0iklKyP5hL\n/rQphHbYkZpz/uJ1OCISR0mDiKSOUIjisc6tYyrGT4BAwOOARCSekgYRSRl5UyeT/dWX1Jw0nNBv\nB3kdjogkUNIgIinBt2olhbeMI1JcQtXl13gdjog0QkmDiKSEwltuxF9WRvXfxhLt1cvrcESkEUoa\nRMRzWV9+Qd7UyYS22ZaaM7VUtEiqUtIgIt6KRim6ciy+SISqG26CnByvIxKRJihpEBFP5bz8Ajnv\n/Zu6gw6h/sCDvQ5HRJqhpEFEvFNTQ9G1VxINBJxeBhFJaUoaRMQzBfdNIGvRT9SMOpfwVtt4HY6I\ntEBJg4h4wr94EQX33EmktBfVoy/2OhwRcUG3xhYRTxRefxW+mhoqbrmDaHGJ1+GIiAvqaRCRDhf4\n4H3yZj5HcPc9qDv+RK/DERGXlDSISMeKRim89goAKsfdAn79GRJJF/ptFZGO9cwzBD7+iNo//JHQ\nwD29jkZEWkFJg4h0nPp6uOwy5xLLy6/2OhoRaaUmJ0IaY7ZozYGstT9tfDgiksnyp06C776j5qw/\nE9lyK6/DEZFWau7qiYUJz6OAr4myUSArGQGJSIaqrKTgzvFQXEz1Xy/xOhoRaYPmkobT477vDtwM\nvAk8DfwC9AD+DzgSuKi9AhSRzFDwyAP4VyyHa64h2rOn1+GISBs0mTRYa6c0fG+MmQk8Zq09M6HY\n48aYu4BhwCPtEqGIpD1f2Wry77ubSLdu+EePhjqvIxKRtnA7EfIg4Mkm9r0K7J2ccEQkE+Xffw/+\nNWVUnz8aSrSQk0i6cps0rAAGNbFvf+Dn5IQjIpnGt2wZBQ9NJLzJptScfpbX4YjIRnC7jPRDwDXG\nmHzgBWA5sCnOsMR5aE6DiDSh4O7b8VVXUX319VBQ4HU4IrIR3CYNNwHdgIuBy+K21wBXWmvvTVZA\nxpgsYBwwAigGXgfOs9Yua6J8X+Au4OBYPM8AY6y1NcmKSUTaxr94EflTJhHeoh+1p4zwOhwR2Uiu\nkgZrbQQYY4wZB+yFczXFCuB9a21lkmO6FjgVGA6sAu4HngWGJBY0xuQCb+AMj/wO6AlMxbkE9C9J\njktEWqngjlvx1ddTNeZSyMnxOhwR2UitusultbYM5z//dmGMyQEuAM631r4V2zYM+MEYM9haOzfh\nJSfhDJPsZa1dEyt/LXBOe8UoIu5kff8teU9MJ7Sdoe64YV6HIyJJ0NyKkN/Q+IJO0bjvG/ZFrbXb\nJSGeXXGGJGY3bLDW/miMWYjT05CYNBwCzGpIGGLlHwUeTUIsIrIRCm79O75wmKqxV0CW1n4TyQTN\n9TS814rjRFsu4krf2GPi1RhL4vbF2xZ42xhzA3ByLI7ncOZZ6EpwEY9kffkFec89Q3CXXak/4iiv\nwxGRJGlucaeRHRhHgwIgYq0NJ2yvA/IaKd8FOANnrYg/4SQW9wK9cCZSiogHCm8ZB0D1ZVfq1tci\nGcQXjbrrJIhdbnkasB/Oh/UK4F1garKuVDDGHIuzTHV2bPJlw/Z3gQ+ttX9NKP8VTuKznbU2mnCM\nHtba1c28XbJ6R0Qk3rx5sNdesM8+MGcO+Jq6ZY2IdLCN/mV0NRHSGNMdZ57BAOBbYBnO0MBJwAXG\nmL1b+IB2a1HscTPWH6LoA8xspPxioKYhYYj5KvbYH2g2puXLK9oWZRooLS1W/dJUutet5IqryAXK\n/nYZwRUbXlyV7vVrieqX3jK5fqWlxRt9DLf9hjcDpThXKWxnrd3HWrs1zuWX3YC/b3Qkjs+ACmBo\nwwZjTH+gHzCnkfL/BnYzxsQnPwOAMBvepVNE2ln2Rx+S+9Yb1O89hODeG1wlLSJpzm3S8AfgKmvt\n/PiNsedXAUcnI5jY5MX7gfHGmEOMMbsDM4DZ1tr5xpiAMWZTY0wg9pIHcOY6PGYcvwduxRkySUbP\nh4i0QsH4mwGoHnOpx5GISHtwmzTkAz81sW8xTm9DslwJPA5MB94GfsCZ5AjOjbGWAIMBYqtE7ouz\n2NTHsdc9g9ZpEOlw6mUQyXxuF3f6Amf+wqxG9p0I/DdZAcWunBgT+0rcN5uERMda+xVwaLLeX0Ta\nRr0MIpnPbdIwDng5NiHyCeBXnJUYTwKOwEkcRKSTyv54gXoZRDoBt/eeeNUYcwbOjauOjNu1FDjT\nWvtkewQnIulBvQwinYPrVVdiyzP3BnbCWdJ5ANDHWju5nWITkTSQ/fECct+cpV4GkU6gVTesAnJw\n1j5ouNfDpsYYAKy1S5IYl4ikCfUyiHQebhd32hL4BzCoiSJRQHekEelksj/7xOllGLy3ehlEOgG3\nPQ0Tge1wJkQuBCLNlhaRTqHg9lsBqP7bWI8jEZGO4DZp2Ac411r7WHsGIyLpI+vLL8h9/RWCA/ck\nOGQ/r8MRkQ7gdiJkJfBLewYiIuml4M7bAKj+2yW6KZVIJ+E2aXgc58ZUmrcgImR9bcl9aSbBXXej\n/oCDvA5HRDpIk8MTxpiHWXf76FzgMOBrY8wHQFVieWvtqHaJUERSTsGdt+GLRqn+q3oZRDqT5uY0\nHMS6pAGce0xk4dz/IX67L+G5iGSwrO+/Jff5ZwjtOID6Qw/3OhwR6UBNJg3W2v4dGIeIpIn8CXfg\ni0SoGn2xehlEOpnWLu6EMWYLnJUhvwDC1tqapEclIinJ/+NC8p6eQWg7Q/2Rf/A6HBHpYK6TBmPM\nUcBtwLY4wxF7ApcbY9YAZ8XuTikiGazg7jvxhUJU//Vi8LtehV5EMoSr33pjzP8BzwNfAmewbh7D\nLOBk4PL2ClBEUoP/58XkzZhOaKutqTv6WK/DEREPuP1X4TpgqrX2j8C0ho3W2geB64Hh7RCbiKSQ\ngnvvwhcMUn3RGMjS1dcinZHbpGEHYEYT+94HtkhOOCKSivxLfyVv+lTCW/Sj7tjjvQ5HRDziNmlY\nCZgm9m0LrEhOOCKSivLvuxtfXR3VF4yGQMDrcETEI26ThieAG4wxRwNr/2IYY3YDrgKebofYRCQF\n+FasIP+xyYR796H2hJO8DkdEPOT26omrgQHAc0DDVRJvAV2A93ASBxHJQAUP3Iuvuprqq66D3Fyv\nwxERD7lKGqy1NcaYw4HfAwcCPYA1wDvAy9ZarQgpkoF8q1aSN+khwr02ofakU70OR0Q85nqdhlhi\n8EbsC2NMNlCghEEkc+U/eB/+qkoqL70C8vO9DkdEPOZ2nYZsY8zVxpiTYs+HAkuBMmPMLGNM13aM\nUUQ84CtbTf7DDxIp7UXN8NO8DkdEUkBr1mm4CmhIDu7BuaLir8D2wM3JD01EvJT/0ET8lRVUn3ch\nFBR4HY6IpAC3ScOJwOXW2vuNMTsCOwE3WmsnAJcBR7dXgCLS8Xxrysh/aCKRHj2oGXG61+GISIpw\nmzT0Bj6IfX84zhLSr8Se/4xzFYWIZIj8Rx7EX76G6nMugMJCr8MRkRThNmn4Bdgy9v1RwCfW2oYF\nnQYDi5IdmIh4w1dRTv6D9xHp3p2a08/yOhwRSSFuk4bHgTuNMf8E9gEmAxhjJhC7L0X7hCciHS1/\n0kP4y8qo+fNfoKjI63BEJIW0ZnGnKmA/4FJgYmz7LsANwN+TH5qIdDRfZQX5E+8h0rUrNWeM8joc\nEUkxbhd3igA3xb7it+/fHkGJiDfyHp2Ef/VqqsZeQbS4xOtwRCTFuEoajDEn40x+bJK19h9JiUhE\nvFFVRcHEu4mUdKHmzLO9jkZEUpDb4YlpzewLAyFASYNIGsufOhn/ihVU/W0s0S5ar01ENuQ2adiq\nkW1FOJMiLwWOSVpEgDEmCxgHjACKgdeB86y1y1y89mWgUEMnIq1QXU3BfROIFBVTM+ocr6MRkRTl\ndk7DwiZ2fWGMyQHuBoYkKyjgWuBUYDiwCrgfeLal9zDGnI2zjsTsJMYikvHypz2Kf/kyqv46hmi3\n7l6HIyIpyu0ll835HBiYhOMAEEtCLgAus9a+Za39BBgG7G2MGdzM67YBbgTmAr5kxSOS8WpqyL/n\nLqIFhdScfZ7X0YhICtuopCH2AX86zs2rkmVXnCGJ2Q0brLU/AgtpoqchNpzxGM49MP6bxFhEMl7+\n9ClkLVtKzRmjiHbv4XU4IpLC3F498Q3O1RPx/8FnAb2AAmBMEmPqG3v8OWH7krh9iS7DmZB5O/Bw\nEmMRyWzV1RTcdTuRwiKqzznf62hEJMW5nQj5XiPbokA58JK19s3khUQBELHWhhO21wF5iYWNMXsA\no4GB1tqoMaYhNhFpQf7kh9fNZejZ0+twRCTFuZ0IObKd44hXA/iNMf7YolINcnFWpVzLGJOHczno\nldba7+N2uZrTUFpavLGxpjTVL311SN0qKuC+u6BLFwqvupzCbh13PjO57UD1S3eZXr+N4banAWNM\nPnAazlLSXYAVwLvAVGttTRJjarj51WasP0TRB5iZUHYQsD1wizHmlti2XJykowLYwVq7uKk3Wr68\nIjkRp6DS0mLVL011VN0K7riVwpUrqbr0SqpD2dBB5zOT2w5Uv3SXyfVLRjLkaiKkMaY7MA+4F9gN\nZ42GwTiXQn5kjOm20ZGs8xlQAQyNe//+QD9gTkLZecA2wG9iX7sCzwMfxp7/ksS4RDKGr2w1+fff\n49zJUusyiIhLbnsabgZKgb2stfMbNhpj9gRewLlhVVL+8lhr64wx9wPjjTErgOU4yclsa+18Y0wA\n6AGstNb54AShAAAfTklEQVTWAvHDEsR6GGoThitEJE7+A/fiL19D5dU3EC1SV6yIuOP2kss/AFfF\nJwwAsedXAUcnOa4rcW7HPR14G/gB+FNs3944V1I0tWZDFE2EFGmSb+VK8h+cSKS0FzWnn+V1OCKS\nRtz2NOQDPzWxbzGQzOEJYldOjKGRSzmttbNpJtmx1uqvoEgzCu69C39VJZWXXwUFBV6HIyJpxG1P\nwxfASU3sOxEtqCSSFnxLl5I/+SHCvftQM/w0r8MRkTTjtqdhHPBybELkE8CvOFc3nAgcEXsUkRRX\ncPft+GpqqL7+YsjbYNkTEZFmuV2n4VVjzBnATcCRcbuWAmdaa59sj+BEJHn8i34if+pkwlv0o/bE\nU7wOR0TSkOt7T1hrHwW2xLkd9lCc9Rr2BF43xvRul+hEJGkKb7kRX309VWOvgJwcr8MRkTTk9t4T\nWwL/wFlMqTFRnHtRiEgKyvric3KfnkFop52pO/Z4r8MRkTTldk7DRGA7nLkNC4FIs6VFJKUU3ngt\nvmiUyquuA/9G3dxWRDoxt0nDPsC51trH2jMYEUm+wLtzyH3rDeqH7Edw/wO9DkdE0pjbfzkq0ZLM\nIuknGqXwhqsBqLrqOvC5upebiEij3CYNjwMXGGM0b0EkjeS8NJPAJx9Te/QfCe26u9fhiEiaa3J4\nwhjzMOuWY84FDgO+NsZ8QMItqgGstaPaJUIRaZtgkMIbryOanU3VpVd5HY2IZIDm5jQcxPr3cFiM\nc4XE3gnbfeheDyIpJ++xR8n+4XtqzhhFZKutvQ5HRDJAk0mDtbZ/B8YhIknkW72KwltvJFJcQtXo\nsV6HIyIZQtdeiWSggvE341+9murRlxAtLfU6HBHJEEoaRDJM1teW/MkPE9pyK2rO+rPX4YhIBlHS\nIJJhCq+5HF84TNW1N2q5aBFJKiUNIhkk561ZsYWchlJ/6OFehyMiGUZJg0imCAYpvPpyon4/lTfc\npIWcRCTplDSIZIj8KY+Q/c3X1A4/jfCOO3kdjohkICUNIhnAt2wZBbfeRKSki3PraxGRduD2hlUi\nksKKrrkc/5oyKm66jWjPnl6HIyIZSj0NImku8M6/yHv2KYK77kbtyDO9DkdEMpiSBpF0VltL0djR\nzuTH8RMgS/eUE5H2o6RBJI0VTLid7O+/o+asPxPaZVevwxGRDKekQSRNZX37DQX33Em4dx+qNflR\nRDqAkgaRdBSNUnTxRfjq66m88VaiRcVeRyQinYCSBpE0lPvUE+S892/qDj6U+sOP9DocEekklDSI\npBnfqpUUXXsF0YICKm8ar5UfRaTDKGkQSTNF11yBf+VKqsZcRmTzLbwOR0Q6ESUNImkk543XyXvy\nHwR32ZWas8/1OhwR6WSUNIikCV/ZaopGX0A0EKDi7okQCHgdkoh0MkoaRNJE0RVjyVr6K9VjLtUN\nqUTEEyl57wljTBYwDhgBFAOvA+dZa5c1Uf4E4DJgG+AX4BHgNmttpGMiFmlfuS88R97TMwjuuhvV\nf7nI63BEpJNK1Z6Ga4FTgeHAvkBf4NnGChpjDgOmAw8BOwOXAmOByzsiUJH25v95MUVjLiJaUEDF\nxEc0LCEinkm5ngZjTA5wAXC+tfat2LZhwA/GmMHW2rkJLzkbeMZae3/s+Q/GmB2A03B6K0TSVyRC\n8fl/du5gOX4C4a239ToiEenEUrGnYVecIYnZDRustT8CC4EhjZQfB1yXsC0KdGuf8EQ6Tv7Ee8l5\ndw51hx5B7fCRXocjIp1cyvU04AxFAPycsH1J3L61rLUL4p8bY0qAc4DX2iU6kQ6S/clHFP79OiKl\nvai44x4t4iQinkvFnoYCIGKtDSdsrwPymnuhMaYAmAnk4sxtEElLvlUrKTnjVAiFKL/vIaI9e3od\nkohISiYNNYDfGJMYWy5Q1dSLjDE9gTdxhjcOtdYuar8QRdpRJELxeaPIWryI6osvIzj0AK8jEhEB\nUnN4ouHDfjPWH6Log9OLsAFjTH9gFlAI7Gut/cLNG5WWZvadAVW/NDVuHLlvvQGHHELhTTdQ6E/F\n3H7jZGzbxah+6S3T67cxUjFp+AyoAIYCj8PapKAfMCexsDGmF/AvIAj8LjZp0pXlyys2PtoUVVpa\nrPqlocA7/6Lr1VcT7tOX1Xc9QHRlk51raStT266B6pfeMrl+yUiGUi5psNbWGWPuB8YbY1YAy4H7\ngdnW2vnGmADQA1hprQ0C98WeHwDUGWM2jR0qaq1d6kEVRNrE/8sSSs45A7KzKX9kKtEePbwOSURk\nPSmXNMRcCQRwFm0K4FwJcV5s397A28BQY8yHwDGAD5ifcIwQkNMh0YpsrKoqSk49Ef+KFXDPPYT2\n+K3XEYmIbCAlk4bYlRNjYl+J+2az/gTOlKyDiGuRCCXnnkXgs0+oOWk4+eedBysqvY5KRGQDmTfD\nSiTNFF5/NbmvvUz9kP2ovPVOrccgIilLSYOIh/Iee5SC++8mtO12lE96DHI0oiYiqUtJg4hHArPf\npmjsaCI9erDm8aeJdtXK5yKS2pQ0iHgg+9OPnRUfs7NZM3UGkf5beh2SiEiLNIlQpINl/fdLupxw\nDL6qSsofepTQnoO8DklExBUlDSIdKOu7b+h63B/wr15N+d0TqT/qGK9DEhFxTcMTIh3E/9OPdDn2\nKPzLl1Fx8+3UDTvZ65BERFpFSYNIB/Av+Zmux/4fWUt+pvLqG6g9/SyvQxIRaTUlDSLtzL/wB7oe\ndRhZPy6k6m9jqfnLhV6HJCLSJprTINKOsv73FV2O+wNZS3+lauwVVI++xOuQRETaTEmDSDvJ/vRj\nupxwDP7Vq6kcdzM1o871OiQRkY2i4QmRdpDzz9foevQR+NasoeKu+5QwiEhGUNIgkmT5D0+kZMSJ\nEI1QPmkatScN9zokEZGk0PCESLKEQhRddSn5kx4i3GsTyqfNILTbHl5HJSKSNEoaRJLAt3QpJaNG\nkjP3PUI77Mia6U8R2XwLr8MSEUkqDU+IbKTsD+bS7fdDyJn7HnVHHEXZy7OUMIhIRlLSINJW4TD5\n99xF1z8egX/FciqvvZHyydOIFpd4HZmISLvQ8IRIG/gXL6L4L2eT8/67hHttQsVDjxL83T5ehyUi\n0q7U0yDSGtEouU/PoNvQ35Hz/rvUHXYkq9/5QAmDiHQK6mkQccn/048UX/JXct5+k2hBIRV33utc\nTunzeR2aiEiHUNIg0pJgkPxHHqTwlnH4qqup329/Km67i0j/Lb2OTESkQylpEGlGzluzKLz6crK/\n+ZpI9+5U3HondccNU++CiHRKShpEGpH13y8pvOFqct96g6jfT82IM6i69EqiPXp4HZqIiGeUNIjE\nyfrqvxSOv5ncl2YCUD9kKJU33ER4x508jkxExHtKGkSALPs/Cm6/mdwXnscXjRLcdTeqL7mc+gMP\n1lCEiEiMkgbpvCIRcv71JvkPTSTnX28BENxlV6ovuYz6gw5VsiAikkBJg3Q6vopycp9+kvxHHiD7\n228ACA4aTPW5F1B/6OFKFkREmqCkQTqHSITAu3PIm/E4ua+8iK+mhmhODrXHn0jNqHMI7bKr1xGK\niKQ8JQ2SuaJRsj//jJyXXyTvmSfJWrwIgHD/LakddjI1J48guskmHgcpIpI+lDRIZgmFyF7wIbmv\nvEjuqy+RtegnACJFxdScfCq1J5xMaNBeGoIQEWkDJQ2S3qJRsv73FTn/nk3g3+8QeP89/BXlAESK\nS6g99njqjjiK+gN+DwUFHgcrIpLelDRIeolG8S/8AV74kOJXXyfn33Pwr1i+dndoy62oO+ZP1B92\nOPX77Ae5uR4GKyKSWVIyaTDGZAHjgBFAMfA6cJ61dlkT5QcCE4BdgZ+BG6y10zooXGkvwSBZ33xN\n9uefkf3F52R/8R+yv/gc/5oyAPKA8CabUvunE6jfdyjBffYl0ndzb2MWEclgKZk0ANcCpwLDgVXA\n/cCzwJDEgsaYUuCfwHTgNOBgYJIx5ldr7RsdFbBsHN+qlWR9+20sMfgP2Z//h+z//RdfXd3aMlGf\nj/BWW1O//wHkHbg/q3bbi/C222l+gohIB0m5pMEYkwNcAJxvrX0rtm0Y8IMxZrC1dm7CS84EVltr\nL4w9/9oYszswBlDSkCJ8lRX4f/4Z/8+Lyfp5sfP4049kff8tWd9/h7+sbL3y0ZwcQjvsRGjAzoQG\n7EJo598Q2nEnKCoCIK+0mPDyCi+qIiLSaaVc0oAzxFAMzG7YYK390RizEKenITFpGALMSdj2DnBf\nu0UojkgE3+rV+Fcsx79yBb6VK/CvWIF/5Qr8S5fiX7KYrFii0DCkkCgaCBDuvyXBQYMJb7k1oR13\nIrTzbwhvZyAQ6OAKiYhIc1Ixaegbe/w5YfuSuH3x+gAfNVK2wBjT3Vq7KsnxbZTa2lpmzHBynGHD\n9iUvL2+jj1lWVsbYsVMAuOWWkeTl5fHAA3OoqKhd7z0a3jsYrMcXjlAYDfOng3cmr74eX0UFvkrn\nK7xqFR/N/ojl3/1EQbCeft3zMZuW4KuqZMX3i4iuWk2PSB0FNZX4IpFmY4sUFrKioAtfFxdT1b2U\nPY45gNCmm3Hvi5/y0cp6on37sGRZFVtk9+S3mxoKagsYtvU25DWRMDTUNTc3wPXXn0zXrl2pra1l\n2rQ3mTfvK8DP7rtvRSCQA0QpLy9j6tQ3Wb26nv79u9K3byn/+98ydtxxMwA+//x7ysvLqa31U1CQ\nRe/epUSjQX75ZQ3BoJ899+zHr7+WsXDhr0QiIcLhEBDA5/PTo0chNTX1hEIB+vfvSq9excyd+xWh\nUIDCwmw233wztt56MwYM6Mvrr/+Hfv16ce65+3HccXdQXV3Pttv25YgjduXVVz9i0aJl+P05bL75\nJrz88mU88sgbPPro29TVrWDlSoAI/fv3oq4uQvfuXTnuuH04/fRDAZg8+VWefPItFi9eQ1FRAWee\neRDDhx/EzJnzATj66D2ZOXM+1dWVfPzxD2RlZXH99cN47bX/EAzWAz4CgQDDhu0LsPZnJH57/M9p\nw/lesOBbfvObfgQCOY2Wa4v4n9GG92+IH5L3OyMibeOLRqNex7AeY8wpwBRrbXbC9reA76y1oxK2\nfxMrf2Pctn1xeir6WmuXNPFW0eUd3L1dW1vLCSc8zwdzR/BbFrDXDk9z5dhB5Pj9EAziCwUhFIJQ\nCF/Q+d4XCkIwBOHYtmAQXzgMwSCEgtRXVvH80/8lGtyJPGopzv6UHoVZ1K/pSR619ChYQv9Nc/HV\n1lKxrJzsUJQ8aggQblMdwvhYQ1eW05PqohCLavP4JbQXy/mFZRSznC4s51iW0oteu79BuS+bBR/V\nAGMBKCy8BsimqmozIAiUAxcCT+LMe4XBgx/lySeP2eDDoaysjIEDp1Je7hyrpOQW3nvvBM48cxbz\n5vmBAHBC7FgnAA/h5J5FwPnAXUA+cHbs+xBQAxQCmwErY/tXAl1i8dwZe/dQLN5CIDfuecOxbwbq\nY883i6vXo7HvxwIWmBI7xubAIcA9gC92zKuAWuDqWBwAEaA3sBQnx9987XkaOPB+IMyCBUuBLGCr\n2L5aioruorLyUqCWkpIJlJefDTwYi6OWrKzbCIcvXu+8Dxr0ED5fFh98cHKT7VFbW8txxz3FvHm5\ncee6+XZLVFpaTGO/ew2/H3Pnnhh33Ib4x7bqPbzUVP0yheqXvkpLizd6Algq9jTUAH5jjN9aG/9v\nbC5Q1UT5xOvqGp43Vt4zM2bMYe7c0xjGMzzBSfAVMHLjjlmAM/sTFjgbQsAa59s6cqipzqd+WSXB\nQA6/hnpTQ4haSqklnwqKKaeIAYNXYn67E9GiIuZ++TOPvVBEOfmUsz/ldKecEsp5j3IKqeFoIMd5\ng8obgUuAWbE3Bjgc58Mb+Pgn4EucDypnW1VVITAgVvaL2L5ZOB8QTpm5c0cyY8ZLjBx58Hp1HTt2\nCuXll64tV15+CaecchGffXZI3Hs3HGsW8H1s+y3A7bGzdUnc90tiJ+vAWCy7A08DO8TKjcb50CZW\nriZWhthr44+9NPb89wn1qoir/7XAbrH6Hx47/qaxY42LlZmFk3wMxfmQPzt2vIK41zn1X7CgX+z8\nVuLM/z187TGchMH53vnAvT0ujlmEw1dtcN7nzesDHNFse8yYMYd58/omnOvm282tht+P9Y/bEH9y\n3kNENk4qJg2LYo+bsf4QRR9gZhPleyds6w1UWmvXNPdGpaXFbY2xTYqLnf+O/skhjOVmAtRy5NEL\n2WufAc74fcNXdrbr7y++fCovvX4GQQqoJY8a3qaWo6ilmCh+oJ6JtznzQc8552CcP8gHs/aDnXom\nnvoGu/35CAC+feAVpr3QkADsH1fuvzj/EXfMlQrFxXkbtE9u7oZDFtnZWR0ST2fX0B7Oz3CoxXIt\naaxMw++H21hSWarHt7FUv84rFYcncoFlwLnW2sdj2/rj/Nu4l7V2fkL5y4DTrLXbxW2bAvSy1h7e\nzFt5Njwxd+5IAAYPnrLRXa3ruuwvAaC4+EZ22GET5s8/c733AGLvPQx4CueK1g1jWNf93NDd75Tb\nc88HAZg/P3/ttoED78XaKioqLgQej0W0/msikSALFlTj/OcOhYXXsuHwxAXNxtRUXUtKbm1keOL4\n2LGOBx5m3fDEX3CW8sgHRsW+b2l44lScYQxofnjiLzg9DonDExfgDEeUx+pvgamsG544GLiXdcMT\nV+IMT1xD88MTDed/IhsOT5yKMzwxgcpKZyiipORuystH4QzXXIIzPDGecHjMeud90KCHY8MTJzXZ\nHusPTxzfZLnmtDw8Ef8z2hD/Ja16Dy9lcvc2qH7pLBnDEymXNAAYY27C6bgfCSzHWaeh2lp7gDEm\nAPQAVlprg8aYXjh/jZ/E+ST4PTAeOMRaO7uZt+nwpAE6biLkK6/Mb3YiZFOT3BrKxU8sHDRoe4YP\nPxBg7QS4gQO3ZfjwA6mtrWXs2CmEw0F23rkfn3/+4wavmTz5VZ5/fh79+vVi/PgzABgz5mF++OFX\nNt20C7/+WsEWW/Tkt781FBQUNHteNBEy/SdCNvdHORMmQmbyhw6ofuksk5OGLJx/3RoGNl/DWRFy\nlTFmKPA2MNRaOydWfhBwN7ALsBC4xlr7VAtv40nS0FEy+QcfMrt+mVw3UP3SneqXvjJ1IiTW2jDO\n4kxjGtk3G/AnbJsHDOqQ4ERERDopf8tFRERERJQ0iIiIiEtKGkRERMQVJQ0iIiLiipIGERERcUVJ\ng4iIiLiipEFERERcUdIgIiIirihpEBEREVeUNIiIiIgrShpERETEFSUNIiIi4oqSBhEREXFFSYOI\niIi4oqRBREREXFHSICIiIq4oaRARERFXlDSIiIiIK0oaRERExBUlDSIiIuKKkgYRERFxRUmDiIiI\nuKKkQURERFxR0iAiIiKuKGkQERERV5Q0iIiIiCtKGkRERMQVJQ0iIiLiipIGERERcUVJg4iIiLii\npEFERERcUdIgIiIirmR7HUAiY0wv4F7gIKAeeBS4wlobbqJ8ALgcGA5sCljgOmvtix0TsYiISOeQ\nij0NzwK9gH2BkcBpwHXNlB8HnA1cCOwCPA08Z4wZ0r5hioiIdC4plTQYYwYDewMjrLWfW2tfAy4G\nzo/1KCSW9wNn4vQsvGKt/d5aezMwGyfhEBERkSRJqaQBGAIstNb+GLftHaAY2LWR8j7gOOD5hO1R\noGu7RCgiItJJpdqchr7AzwnblsQeNwc+jN8Rm+fwdvw2Y8xvgf2Bc9opRhERkU6pQ5MGY0x/4Psm\ndtcB02OPa1lrg8aYKJDn4vjb4PQ6zAMmb1SwIiIisp6O7mlYDGzfxL4IcAGQG78xNpfBB1Q1d2Bj\nzB7AK8CvwJFNXW0hIiIibdOhSYO1NgR83dR+Y8xi4PCEzb1jj4nDFvGvOxjnqotPgP+z1q5xEY6v\ntLTYRbH0pfqlr0yuG6h+6U7167xSbSLku8BWxpi+cdv2B8qBTxt7QezSyhdx5jYc5DJhEBERkVby\nRaNRr2NYjzHmfZyrH/6Cs1jTFOA+a+31sf2FQLG19ldjTC7wLbAKOAIIxR2qzlq7uiNjFxERyWSp\n1tMAcAywFPg3zmTGhxsShpiLWTdUsR/QBxgA/IRzpUXD15MdFbCIiEhnkHI9DSIiIpKaUrGnQURE\nRFKQkgYRERFxJdVWhEwKY0wWzo2sRuAsQf06cJ61dlkT5QcCE3CWqv4ZuMFaO62Dwm21NtTvKeBP\nCZvftNYe3K6BbiRjzANAlrX2rGbKpFXbxXNZv7RqO2PMJsCtOHepzcdZaO1v1tovmyifVu3Xhvql\nW/v1Be4EDsD5p/J1YLS19pcmyqdb+7W2fmnVfvGMMXvhXJF4gLV2ThNlWt1+mdrTcC1wKs7tsvfF\nWZ762cYKGmNKgX8CC4DdgLuBScaYgzok0ra5Fpf1ixkAjMW5GqXh67j2DbHtjDE+Y8z1wCicK2ma\nKpeObee6fjFp03axG8g9D2wDHAX8DlgDvGWM6d5I+bRqv9bWLyad2s+Hs0BeF2AozkTzzYCXmiif\nbu3XqvrFpE37xYtdZTgNZ2HEpsq0qf0yrqfBGJODs7Lk+dbat2LbhgE/GGMGW2vnJrzkTGC1tfbC\n2POvjTG7A2OANzoqbrdaW7/YZanbAPOb6olIJcaYrYBJwE44V8Q0J63aDlpXv3RrO+A3wF7ADtZa\nC2CMGc66S6IT/4NJt/ZrVf3SsP16AV8Cl1prfwIwxtwJPG+M6dLIGjjp1n6tql8atl+8O4BFwNbN\nlGlT+2ViT8OuOF32sxs2xO6auRDnLpqJhgCJXTfv4NyiOxW1tn7b4ySH/+uA2JJhMPAjTob/Qwtl\n063toHX1S7e2+xHnwzN+1deGnpTG7jqbbu3X2vqlVftZa5daa0+K+0DtC5yN86HZ2KJ5adV+bahf\nWrVfA2PM4cBhOP9cNqdN7ZdxPQ04XfXQ+N0y+7KhPsBHjZQtMMZ0t9auSnJ8G6u19RsA1APXGWMO\nA2qAp4Fx1tq6Rsp7ylr7OPA4gDGmpeLp1natrV+6td0q4LWEzRfgjP3PauQladV+bahfWrVfPGPM\nTJwhmNU4q/I2Jq3aL57L+qVd+xljegKPACOBshaKt6n9MrGnoQCINHLDqjoav1NmAVDbSFmaKO+1\n1tZvx9jjVzj39bgOp1vqwXaLsOOkW9u1Vlq3nTHmKODvwO0N3fkJ0rr9XNQvndvvSmAQzkS6N4wx\nvRspk87t56Z+6dh+DwIvWGsbS2ITtan9MjFpqAH8sUlL8XJp/E6ZNSTcWTPuebN31vRIa+t3JdDL\nWjvBWvultfYJ4ELgVGNMt3aOtb2lW9u1Vtq2nTFmJPAMMMNae0kTxdK2/VzWL23bz1r7hbX2Q2AY\nkIVzpVaitG0/l/VLq/YzxozAGb4ek7CrqcmQbWq/TEwaFsUeN0vY3ofG75S5iHV30mzQG6hM0Ztf\ntap+1tqotbY8YfMXscfNkxxbR0u3tmuVdG07Y8wVOEvAT7TWNvbHuEFatp/b+qVb+xljesUmVa9l\nra0BvmPDdoI0a7/W1i/d2g8n8ekL/GqMqWDdXIzXjDH3N1K+Te2XiUnDZ0AFziU1ABhj+gP92HDS\nBzjdU/smbNs/tj0Vtap+xpinjTHPJWweiNMN9W27Rdkx0q3tWiUd284YcwlwA3Bl3KzspqRd+7Wm\nfmnYfv2Bfxhj9mjYYIzpAhjgv42UT7f2608r6peG7XcKsAPOVT6/AQ6JbT8DuLqR8m1qv4ybCGmt\nrYtlVeONMSuA5cD9wGxr7XxjTADoAay01gZxLn+7JLbQzgTg98CJrDvhKaUN9ZsBPGWM+SvOLcR3\nA24DbrPWVntTC9d8xHWtpXvbNaKl+qVV2xljdsEZ45+Ec733pnG7y4Egadx+bahfWrUf8CHOjQIf\nMcaMwrlr8M3AMmBqBvz+tbZ+adV+1tol8c+NMfWxb3+21q5IVvtlYk8DOGNRjwPTgbdxLm1rWNVr\nb5wZooMBYtffHorzA/ExcC4w3Fo7u2NDbpXW1O9ZnEWgRgKf46xmd5e1trHMM9VEWX/xo0xou3gt\n1S/d2u4EnL8pZwC/sP5dZy/CWQwpnduvtfVLq/az1kaBPwKfAi/jXNZdBuwX+5BM69+/NtQvrdqv\nCUn/+6m7XIqIiIgrmdrTICIiIkmmpEFERERcUdIgIiIirihpEBEREVeUNIiIiIgrShpERETEFSUN\nIiIi4oqSBhHxlDFmtjHmDa/jEJGWKWkQEa8lrowpIilKSYOIeK2pW/eKSIrJuBtWiUhqMcYU4txl\n7xhgC5y7BM4FLrbWfu5lbCLSOkoaRKS9TcO5Sc6lwPfAdsD1wD+AnT2MS0RaSUmDiLQbY0wekA+c\nZ619Lrb538aYLji3d+/pXXQi0lpKGkSk3Vhra4HDAIwxfXB6GbYDjsSZ/JjjXXQi0lpKGkSkXRlj\nDgHuAgxQAXwKVMV2axKkSBrR1RMi0m6MMVsDM4EFwFbW2i7W2v2Al1HCIJJ2lDSISHvaA8gF/m6t\nXRi3/TCc4Qn9DRJJIxqeEJH29BH8fzt3iJtAFIVh9MM1YRHI8TUoFlLJempqWAmrGcFOSKZi6nsN\nguQcfe1Lvvzi9ay+l2X5qT6qa3VuXxqOf3dWB3gDKh94mXVdH9VXdaru1a1aq8/2peGSHyHhbRy2\nzVsFAP5naQAARkQDADAiGgCAEdEAAIyIBgBgRDQAACOiAQAYEQ0AwIhoAABGfgGiXWZKQWNR0wAA\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the predicted probabilities\n", + "plt.scatter(glass.al, glass.household)\n", + "plt.plot(glass.al, glass.household_pred_prob, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0.97161726 0.02838274]]\n", + "[[ 0.34361555 0.65638445]]\n", + "[[ 0.00794192 0.99205808]]\n" + ] + } + ], + "source": [ + "# examine some example predictions\n", + "print logreg.predict_proba(1)\n", + "print logreg.predict_proba(2)\n", + "print logreg.predict_proba(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first column indicates the predicted probability of **class 0**, and the second column indicates the predicted probability of **class 1**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4: Probability, odds, e, log, log-odds\n", + "\n", + "$$probability = \\frac {one\\ outcome} {all\\ outcomes}$$\n", + "\n", + "$$odds = \\frac {one\\ outcome} {all\\ other\\ outcomes}$$\n", + "\n", + "Examples:\n", + "\n", + "- Dice roll of 1: probability = 1/6, odds = 1/5\n", + "- Even dice roll: probability = 3/6, odds = 3/3 = 1\n", + "- Dice roll less than 5: probability = 4/6, odds = 4/2 = 2\n", + "\n", + "$$odds = \\frac {probability} {1 - probability}$$\n", + "\n", + "$$probability = \\frac {odds} {1 + odds}$$" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "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", + "
probabilityodds
00.100.111111
10.200.250000
20.250.333333
30.501.000000
40.601.500000
50.804.000000
60.909.000000
\n", + "
" + ], + "text/plain": [ + " probability odds\n", + "0 0.10 0.111111\n", + "1 0.20 0.250000\n", + "2 0.25 0.333333\n", + "3 0.50 1.000000\n", + "4 0.60 1.500000\n", + "5 0.80 4.000000\n", + "6 0.90 9.000000" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a table of probability versus odds\n", + "table = pd.DataFrame({'probability':[0.1, 0.2, 0.25, 0.5, 0.6, 0.8, 0.9]})\n", + "table['odds'] = table.probability/(1 - table.probability)\n", + "table" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What is **e**? It is the base rate of growth shared by all continually growing processes:" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2.7182818284590451" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# exponential function: e^1\n", + "np.exp(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What is a **(natural) log**? It gives you the time needed to reach a certain level of growth:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.99989631572895199" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# time needed to grow 1 unit to 2.718 units\n", + "np.log(2.718)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It is also the **inverse** of the exponential function:" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "5.0" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "np.log(np.exp(5))" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "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", + "
probabilityoddslogodds
00.100.111111-2.197225
10.200.250000-1.386294
20.250.333333-1.098612
30.501.0000000.000000
40.601.5000000.405465
50.804.0000001.386294
60.909.0000002.197225
\n", + "
" + ], + "text/plain": [ + " probability odds logodds\n", + "0 0.10 0.111111 -2.197225\n", + "1 0.20 0.250000 -1.386294\n", + "2 0.25 0.333333 -1.098612\n", + "3 0.50 1.000000 0.000000\n", + "4 0.60 1.500000 0.405465\n", + "5 0.80 4.000000 1.386294\n", + "6 0.90 9.000000 2.197225" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# add log-odds to the table\n", + "table['logodds'] = np.log(table.odds)\n", + "table" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 5: What is Logistic Regression?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Linear regression:** continuous response is modeled as a linear combination of the features:\n", + "\n", + "$$y = \\beta_0 + \\beta_1x$$\n", + "\n", + "**Logistic regression:** log-odds of a categorical response being \"true\" (1) is modeled as a linear combination of the features:\n", + "\n", + "$$\\log \\left({p\\over 1-p}\\right) = \\beta_0 + \\beta_1x$$\n", + "\n", + "This is called the **logit function**.\n", + "\n", + "Probability is sometimes written as pi:\n", + "\n", + "$$\\log \\left({\\pi\\over 1-\\pi}\\right) = \\beta_0 + \\beta_1x$$\n", + "\n", + "The equation can be rearranged into the **logistic function**:\n", + "\n", + "$$\\pi = \\frac{e^{\\beta_0 + \\beta_1x}} {1 + e^{\\beta_0 + \\beta_1x}}$$" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In other words:\n", + "\n", + "- Logistic regression outputs the **probabilities of a specific class**\n", + "- Those probabilities can be converted into **class predictions**\n", + "\n", + "The **logistic function** has some nice properties:\n", + "\n", + "- Takes on an \"s\" shape\n", + "- Output is bounded by 0 and 1\n", + "\n", + "We have covered how this works for **binary classification problems** (two response classes). But what about **multi-class classification problems** (more than two response classes)?\n", + "\n", + "- Most common solution for classification models is **\"one-vs-all\"** (also known as **\"one-vs-rest\"**): decompose the problem into multiple binary classification problems\n", + "- **Multinomial logistic regression** can solve this as a single problem" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 6: Interpreting Logistic Regression Coefficients" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the predicted probabilities again\n", + "plt.scatter(glass.al, glass.household)\n", + "plt.plot(glass.al, glass.household_pred_prob, color='red')\n", + "plt.xlabel('al')\n", + "plt.ylabel('household')" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.64722323])" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute predicted log-odds for al=2 using the equation\n", + "logodds = logreg.intercept_ + logreg.coef_[0] * 2\n", + "logodds" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1.91022919])" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert log-odds to odds\n", + "odds = np.exp(logodds)\n", + "odds" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.65638445])" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert odds to probability\n", + "prob = odds/(1 + odds)\n", + "prob" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.65638445])" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute predicted probability for al=2 using the predict_proba method\n", + "logreg.predict_proba(2)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('al', 4.1804038614510901)]" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the coefficient for al\n", + "zip(feature_cols, logreg.coef_[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Interpretation:** A 1 unit increase in 'al' is associated with a 4.18 unit increase in the log-odds of 'household'." + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.99205808391674566" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# increasing al by 1 (so that al=3) increases the log-odds by 4.18\n", + "logodds = 0.64722323 + 4.1804038614510901\n", + "odds = np.exp(logodds)\n", + "prob = odds/(1 + odds)\n", + "prob" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.99205808])" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute predicted probability for al=3 using the predict_proba method\n", + "logreg.predict_proba(3)[:, 1]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Bottom line:** Positive coefficients increase the log-odds of the response (and thus increase the probability), and negative coefficients decrease the log-odds of the response (and thus decrease the probability)." + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-7.71358449])" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the intercept\n", + "logreg.intercept_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Interpretation:** For an 'al' value of 0, the log-odds of 'household' is -7.71." + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.00044652])" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert log-odds to probability\n", + "logodds = logreg.intercept_\n", + "odds = np.exp(logodds)\n", + "prob = odds/(1 + odds)\n", + "prob" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "That makes sense from the plot above, because the probability of household=1 should be very low for such a low 'al' value." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Logistic regression beta values](images/logistic_betas.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Changing the $\\beta_0$ value shifts the curve **horizontally**, whereas changing the $\\beta_1$ value changes the **slope** of the curve." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 7: Using Logistic Regression with Categorical Features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Logistic regression can still be used with **categorical features**. Let's see what that looks like:" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a categorical feature\n", + "glass['high_ba'] = np.where(glass.ba > 0.5, 1, 0)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's use Seaborn to draw the logistic curve:" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# original (continuous) feature\n", + "sns.lmplot(x='ba', y='household', data=glass, ci=None, logistic=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nSAj+PwPv3LvCTHQaAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# categorical feature\n", + "sns.lmplot(x='high_ba', y='household', data=glass, ci=None, logistic=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nkOQrhBAO+P/4F1lHt8eV0wAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# categorical feature, with jitter added\n", + "sns.lmplot(x='high_ba', y='household', data=glass, ci=None, logistic=True, x_jitter=0.05, y_jitter=0.05)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LogisticRegression(C=1000000000.0, class_weight=None, dual=False,\n", + " fit_intercept=True, intercept_scaling=1, max_iter=100,\n", + " multi_class='ovr', penalty='l2', random_state=None,\n", + " solver='liblinear', tol=0.0001, verbose=0)" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a logistic regression model\n", + "feature_cols = ['high_ba']\n", + "X = glass[feature_cols]\n", + "y = glass.household\n", + "logreg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('high_ba', 4.4273153450187195)]" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the coefficient for high_ba\n", + "zip(feature_cols, logreg.coef_[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Interpretation:** Having a high 'ba' value is associated with a 4.43 unit increase in the log-odds of 'household' (as compared to a low 'ba' value)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 8: Comparing Logistic Regression with Other Models\n", + "\n", + "Advantages of logistic regression:\n", + "\n", + "- Highly interpretable (if you remember how)\n", + "- Model training and prediction are fast\n", + "- No tuning is required (excluding regularization)\n", + "- Features don't need scaling\n", + "- Can perform well with a small number of observations\n", + "- Outputs well-calibrated predicted probabilities\n", + "\n", + "Disadvantages of logistic regression:\n", + "\n", + "- Presumes a linear relationship between the features and the log-odds of the response\n", + "- Performance is (generally) not competitive with the best supervised learning methods\n", + "- Can't automatically learn feature interactions" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/12_titanic_confusion.ipynb b/notebooks/12_titanic_confusion.ipynb new file mode 100644 index 0000000..26731c7 --- /dev/null +++ b/notebooks/12_titanic_confusion.ipynb @@ -0,0 +1,632 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Logistic regression exercise with Titanic data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "- Data from Kaggle's Titanic competition: [data](https://github.com/justmarkham/DAT8/blob/master/data/titanic.csv), [data dictionary](https://www.kaggle.com/c/titanic/data)\n", + "- **Goal**: Predict survival based on passenger characteristics\n", + "- `titanic.csv` is already in our repo, so there is no need to download the data from the Kaggle website" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 1: Read the data into Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
SurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarked
PassengerId
103Braund, Mr. Owen Harrismale2210A/5 211717.2500NaNS
211Cumings, Mrs. John Bradley (Florence Briggs Th...female3810PC 1759971.2833C85C
313Heikkinen, Miss. Lainafemale2600STON/O2. 31012827.9250NaNS
411Futrelle, Mrs. Jacques Heath (Lily May Peel)female351011380353.1000C123S
503Allen, Mr. William Henrymale35003734508.0500NaNS
\n", + "
" + ], + "text/plain": [ + " Survived Pclass \\\n", + "PassengerId \n", + "1 0 3 \n", + "2 1 1 \n", + "3 1 3 \n", + "4 1 1 \n", + "5 0 3 \n", + "\n", + " Name Sex Age \\\n", + "PassengerId \n", + "1 Braund, Mr. Owen Harris male 22 \n", + "2 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38 \n", + "3 Heikkinen, Miss. Laina female 26 \n", + "4 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35 \n", + "5 Allen, Mr. William Henry male 35 \n", + "\n", + " SibSp Parch Ticket Fare Cabin Embarked \n", + "PassengerId \n", + "1 1 0 A/5 21171 7.2500 NaN S \n", + "2 1 0 PC 17599 71.2833 C85 C \n", + "3 0 0 STON/O2. 3101282 7.9250 NaN S \n", + "4 1 0 113803 53.1000 C123 S \n", + "5 0 0 373450 8.0500 NaN S " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv'\n", + "titanic = pd.read_csv(url, index_col='PassengerId')\n", + "titanic.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 2: Create X and y\n", + "\n", + "Define **Pclass** and **Parch** as the features, and **Survived** as the response." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "feature_cols = ['Pclass', 'Parch']\n", + "X = titanic[feature_cols]\n", + "y = titanic.Survived" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 3: Split the data into training and testing sets" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 4: Fit a logistic regression model and examine the coefficients\n", + "\n", + "Confirm that the coefficients make intuitive sense." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Pclass', -0.88188860564511296), ('Parch', 0.34239215857498861)]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train, y_train)\n", + "zip(feature_cols, logreg.coef_[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 5: Make predictions on the testing set and calculate the accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# class predictions (not predicted probabilities)\n", + "y_pred_class = logreg.predict(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.668161434978\n" + ] + } + ], + "source": [ + "# calculate classification accuracy\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 6: Compare your testing accuracy to the null accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0.573991\n", + "dtype: float64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# this works regardless of the number of classes\n", + "y_test.value_counts().head(1) / len(y_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.5739910313901345" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# this only works for binary classification problems coded as 0/1\n", + "max(y_test.mean(), 1 - y_test.mean())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Confusion matrix of Titanic predictions" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[105 23]\n", + " [ 51 44]]\n" + ] + } + ], + "source": [ + "# print confusion matrix\n", + "print metrics.confusion_matrix(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# save confusion matrix and slice into four pieces\n", + "confusion = metrics.confusion_matrix(y_test, y_pred_class)\n", + "TP = confusion[1][1]\n", + "TN = confusion[0][0]\n", + "FP = confusion[0][1]\n", + "FN = confusion[1][0]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True Positives: 44\n", + "True Negatives: 105\n", + "False Positives: 23\n", + "False Negatives: 51\n" + ] + } + ], + "source": [ + "print 'True Positives:', TP\n", + "print 'True Negatives:', TN\n", + "print 'False Positives:', FP\n", + "print 'False Negatives:', FN" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.463157894737\n", + "0.463157894737\n" + ] + } + ], + "source": [ + "# calculate the sensitivity\n", + "print TP / float(TP + FN)\n", + "print 44 / float(44 + 51)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.8203125\n", + "0.8203125\n" + ] + } + ], + "source": [ + "# calculate the specificity\n", + "print TN / float(TN + FP)\n", + "print 105 / float(105 + 23)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# store the predicted probabilities\n", + "y_pred_prob = logreg.predict_proba(X_test)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nSU0GhCSp6f8DzF7yGFpruC0AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of predicted probabilities\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.hist(y_pred_prob)\n", + "plt.xlim(0, 1)\n", + "plt.xlabel('Predicted probability of survival')\n", + "plt.ylabel('Frequency')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# increase sensitivity by lowering the threshold for predicting survival\n", + "import numpy as np\n", + "y_pred_class = np.where(y_pred_prob > 0.3, 1, 0)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[105 23]\n", + " [ 51 44]]\n" + ] + } + ], + "source": [ + "# old confusion matrix\n", + "print confusion" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[72 56]\n", + " [32 63]]\n" + ] + } + ], + "source": [ + "# new confusion matrix\n", + "print metrics.confusion_matrix(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.663157894737\n" + ] + } + ], + "source": [ + "# new sensitivity (higher than before)\n", + "print 63 / float(63 + 32)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.5625\n" + ] + } + ], + "source": [ + "# new specificity (lower than before)\n", + "print 72 / float(72 + 56)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/13_advanced_model_evaluation.ipynb b/notebooks/13_advanced_model_evaluation.ipynb new file mode 100644 index 0000000..c530502 --- /dev/null +++ b/notebooks/13_advanced_model_evaluation.ipynb @@ -0,0 +1,1107 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data Preparation and Advanced Model Evaluation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "**Data preparation**\n", + "\n", + "- Handling missing values\n", + "- Handling categorical features (review)\n", + "\n", + "**Advanced model evaluation**\n", + "\n", + "- ROC curves and AUC\n", + "- Bonus: ROC curve is only sensitive to rank order of predicted probabilities\n", + "- Cross-validation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Handling missing values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "scikit-learn models expect that all values are **numeric** and **hold meaning**. Thus, missing values are not allowed by scikit-learn." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(891, 11)" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read the Titanic data\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv'\n", + "titanic = pd.read_csv(url, index_col='PassengerId')\n", + "titanic.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Survived 0\n", + "Pclass 0\n", + "Name 0\n", + "Sex 0\n", + "Age 177\n", + "SibSp 0\n", + "Parch 0\n", + "Ticket 0\n", + "Fare 0\n", + "Cabin 687\n", + "Embarked 2\n", + "dtype: int64" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check for missing values\n", + "titanic.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One possible strategy is to **drop missing values**:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(183, 11)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# drop rows with any missing values\n", + "titanic.dropna().shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(714, 11)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# drop rows where Age is missing\n", + "titanic[titanic.Age.notnull()].shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sometimes a better strategy is to **impute missing values**:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "29.69911764705882" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mean Age\n", + "titanic.Age.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "28.0" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# median Age\n", + "titanic.Age.median()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0 24\n", + "dtype: float64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# most frequent Age\n", + "titanic.Age.mode()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# fill missing values for Age with the median age\n", + "titanic.Age.fillna(titanic.Age.median(), inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Another strategy would be to build a **KNN model** just to impute missing values. How would we do that?\n", + "\n", + "If values are missing from a categorical feature, we could treat the missing values as **another category**. Why might that make sense?\n", + "\n", + "How do we **choose** between all of these strategies?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Handling categorical features (Review)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we include a categorical feature in our model?\n", + "\n", + "- **Ordered categories:** transform them to sensible numeric values (example: small=1, medium=2, large=3)\n", + "- **Unordered categories:** use dummy encoding (0/1)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarked
PassengerId
103Braund, Mr. Owen Harrismale2210A/5 211717.2500NaNS
211Cumings, Mrs. John Bradley (Florence Briggs Th...female3810PC 1759971.2833C85C
313Heikkinen, Miss. Lainafemale2600STON/O2. 31012827.9250NaNS
411Futrelle, Mrs. Jacques Heath (Lily May Peel)female351011380353.1000C123S
503Allen, Mr. William Henrymale35003734508.0500NaNS
603Moran, Mr. Jamesmale28003308778.4583NaNQ
701McCarthy, Mr. Timothy Jmale54001746351.8625E46S
803Palsson, Master. Gosta Leonardmale23134990921.0750NaNS
913Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)female270234774211.1333NaNS
1012Nasser, Mrs. Nicholas (Adele Achem)female141023773630.0708NaNC
\n", + "
" + ], + "text/plain": [ + " Survived Pclass \\\n", + "PassengerId \n", + "1 0 3 \n", + "2 1 1 \n", + "3 1 3 \n", + "4 1 1 \n", + "5 0 3 \n", + "6 0 3 \n", + "7 0 1 \n", + "8 0 3 \n", + "9 1 3 \n", + "10 1 2 \n", + "\n", + " Name Sex Age \\\n", + "PassengerId \n", + "1 Braund, Mr. Owen Harris male 22 \n", + "2 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38 \n", + "3 Heikkinen, Miss. Laina female 26 \n", + "4 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35 \n", + "5 Allen, Mr. William Henry male 35 \n", + "6 Moran, Mr. James male 28 \n", + "7 McCarthy, Mr. Timothy J male 54 \n", + "8 Palsson, Master. Gosta Leonard male 2 \n", + "9 Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg) female 27 \n", + "10 Nasser, Mrs. Nicholas (Adele Achem) female 14 \n", + "\n", + " SibSp Parch Ticket Fare Cabin Embarked \n", + "PassengerId \n", + "1 1 0 A/5 21171 7.2500 NaN S \n", + "2 1 0 PC 17599 71.2833 C85 C \n", + "3 0 0 STON/O2. 3101282 7.9250 NaN S \n", + "4 1 0 113803 53.1000 C123 S \n", + "5 0 0 373450 8.0500 NaN S \n", + "6 0 0 330877 8.4583 NaN Q \n", + "7 0 0 17463 51.8625 E46 S \n", + "8 3 1 349909 21.0750 NaN S \n", + "9 0 2 347742 11.1333 NaN S \n", + "10 1 0 237736 30.0708 NaN C " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "titanic.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# encode Sex_Female feature\n", + "titanic['Sex_Female'] = titanic.Sex.map({'male':0, 'female':1})" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a DataFrame of dummy variables for Embarked\n", + "embarked_dummies = pd.get_dummies(titanic.Embarked, prefix='Embarked')\n", + "embarked_dummies.drop(embarked_dummies.columns[0], axis=1, inplace=True)\n", + "\n", + "# concatenate the original DataFrame and the dummy DataFrame\n", + "titanic = pd.concat([titanic, embarked_dummies], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "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", + "
SurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarkedSex_FemaleEmbarked_QEmbarked_S
PassengerId
103Braund, Mr. Owen Harrismale2210A/5 211717.25NaNS001
\n", + "
" + ], + "text/plain": [ + " Survived Pclass Name Sex Age SibSp \\\n", + "PassengerId \n", + "1 0 3 Braund, Mr. Owen Harris male 22 1 \n", + "\n", + " Parch Ticket Fare Cabin Embarked Sex_Female Embarked_Q \\\n", + "PassengerId \n", + "1 0 A/5 21171 7.25 NaN S 0 0 \n", + "\n", + " Embarked_S \n", + "PassengerId \n", + "1 1 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "titanic.head(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- How do we **interpret** the encoding for Embarked?\n", + "- Why didn't we just encode Embarked using a **single feature** (C=0, Q=1, S=2)?\n", + "- Does it matter which category we choose to define as the **baseline**?\n", + "- Why do we only need **two dummy variables** for Embarked?" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.793721973094\n" + ] + } + ], + "source": [ + "# define X and y\n", + "feature_cols = ['Pclass', 'Parch', 'Age', 'Sex_Female', 'Embarked_Q', 'Embarked_S']\n", + "X = titanic[feature_cols]\n", + "y = titanic.Survived\n", + "\n", + "# train/test split\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)\n", + "\n", + "# train a logistic regression model\n", + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train, y_train)\n", + "\n", + "# make predictions for testing set\n", + "y_pred_class = logreg.predict(X_test)\n", + "\n", + "# calculate testing accuracy\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: ROC curves and AUC" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# predict probability of survival\n", + "y_pred_prob = logreg.predict_proba(X_test)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.rcParams['figure.figsize'] = (8, 6)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot ROC curve\n", + "fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_prob)\n", + "plt.plot(fpr, tpr)\n", + "plt.xlim([0.0, 1.0])\n", + "plt.ylim([0.0, 1.0])\n", + "plt.xlabel('False Positive Rate (1 - Specificity)')\n", + "plt.ylabel('True Positive Rate (Sensitivity)')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.838692434211\n" + ] + } + ], + "source": [ + "# calculate AUC\n", + "print metrics.roc_auc_score(y_test, y_pred_prob)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Besides allowing you to calculate AUC, seeing the ROC curve can help you to choose a threshold that **balances sensitivity and specificity** in a way that makes sense for the particular context." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([,\n", + " ], dtype=object)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\ngKmoAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of predicted probabilities grouped by actual response value\n", + "df = pd.DataFrame({'probability':y_pred_prob, 'actual':y_test})\n", + "df.hist(column='probability', by='actual', sharex=True, sharey=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What would have happened if you had used **y_pred_class** instead of **y_pred_prob** when drawing the ROC curve or calculating AUC?" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# ROC curve using y_pred_class - WRONG!\n", + "fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_class)\n", + "plt.plot(fpr, tpr)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.780962171053\n" + ] + } + ], + "source": [ + "# AUC using y_pred_class - WRONG!\n", + "print metrics.roc_auc_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you use **y_pred_class**, it will interpret the zeros and ones as predicted probabilities of 0% and 100%." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: ROC curve is only sensitive to rank order of predicted probabilities" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.84499501, 0.07452707, 0.85089451, 0.62517562, 0.87679784,\n", + " 0.09611294, 0.13614004, 0.90132983, 0.61102779, 0.62517562])" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print the first 10 predicted probabilities\n", + "y_pred_prob[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.9192361 , 0.27299647, 0.92243943, 0.79068048, 0.93637484,\n", + " 0.31002087, 0.3689716 , 0.94938392, 0.78168267, 0.79068048])" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# take the square root of predicted probabilities (to make them all bigger)\n", + "import numpy as np\n", + "y_pred_prob_new = np.sqrt(y_pred_prob)\n", + "\n", + "# print the modified predicted probabilities\n", + "y_pred_prob_new[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([,\n", + " ], dtype=object)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# histogram of predicted probabilities has changed\n", + "df = pd.DataFrame({'probability':y_pred_prob_new, 'actual':y_test})\n", + "df.hist(column='probability', by='actual', sharex=True, sharey=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAe8AAAF2CAYAAABH4BBGAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHQ1JREFUeJzt3XuUHGWd//H3NwGCRhAlkATkFkRjuAWWuBK5DGpEIoir\nrMh6A5HDIiIuZ9HfEZDoeowgBlBDMGhAWVFurndCCDLRJCBEBFGRywLLxZiQwy1XNOH5/VE9ZBhn\nMj093V39TL9f59SZ6eqnur/9EObTVfXUU5FSQpIk5WNY2QVIkqSBMbwlScqM4S1JUmYMb0mSMmN4\nS5KUGcNbkqTMGN6SJGWm3/COiEMi4icR8XhEvBARH6lim70jYkFErKlsd059ypUkSdXseY8Efg+c\nDqwFNjmrS0RsDdwELAUOqGx3ZkScMbhSJUkSQAxkhrWIWAmcmlL67ibanAJMB0anlJ6vrDsLOCWl\n9JpB1itJUttrxDnvA4FfdwV3xTxgh4jYpQHvJ0lSW2lEeI8BlvVYt6zbc5IkaRAaEd7e6USSpAba\nrAGv+Vf+cQ97dLfnXiIiDHtJUltJKcVgtm/EnvetwMERMaLbuinAEyml/+ttg5SSSwOXc889t/Qa\nhvpiH9vPQ2Wxj2tbJkxI/OEP1bWth2qu8x4ZERMjYmKl/S6VxztVnp8eEfO7bXIVsAa4IiL2jIj3\nAJ8BZtSlYkmS2lw1h80nAb+s/J6Az1eWK4CPUhwiH9fVOKX0XERMAWYCS4CngAtSShfWr2xJUrv5\n3/+FvfeG9evLruQfpQQjRzbv/foN75RSJ5vYQ08pndDLuj8Ahw6qMtVNR0dH2SUMefZxc9jPjdfK\nffzss/C618Htt5ddyT+KgM03b+L71ev4e80FRKSya5Aktb4774SPfaz4mbOIIA1ywFojRptLklSV\nZ5+Fn/0Mli7tv+3jjze+nlwY3pKkpnruOfjpT+Gaa6CzEzo6YI89+t9us83g9NMbXV0ePGwuSWq4\nVas2BvYvfwmHHALvex+8613wyleWXV1z1eOwueEtSWqI1avh5z8vAvumm+DNby4C+93vhm22Kbu6\n8hjekqSWkRLcdx/Mmwc33ggLF8Kb3gTHHlsE9qtfXXaFrcHwliSV6umn4eabi7CeNw9eeAEOP7xY\n3vpWA7s3hrckqanWry+us+4K6z/+EQ46qAjrt78dxo8vrnlW3wxvSVLDPfLIxkPhv/wl7LJLEdSH\nH16cx95yy7IrzIvhLUmqu1Wriku4uvaun356Y1hPmQJjet43UgNieEuSBu2FF+CuuzbuXS9ZApMm\nbQzsffeFYY24B2WbMrwlSTVZurS4fOvGG4ufr371xrA+9FB4xSvKrnDoMrwlSVVZt664dKtr7/rR\nR4vR4F2HwnfdtewK24fhLUnqVUpw770bw3rRIthrr41715MmFdONqvkMb0nSi556CubP3xjYw4Zt\nvITrrW+FV72q7AoFhrcktb3HHoPLLivC+t57iznDu/auX/c6r7luRd4SVJLa3He/W5zLnj69uOZ6\nxIiyK1IzGN6SlLkDD4S3vKXsKtRMXrknSVJmDG9JylRK8MADsPnmZVeiZjO8JSlT554Ld94Jn/hE\n2ZWo2TznLUkZ+vzn4Yc/hFtugVGjyq5GzWZ4S1Jm/uu/4Oqri+Debruyq1EZDG9JysiXvgRXXVUE\n9+jRZVejshjekpSJL3+5uK77llu8LWe7M7wlKQNf+QrMmVPcZ3vs2LKrUdkMb0lt6dln4eKL4YYb\nikuuWtn69UW9nZ2www5lV6NW4NzmktrKc8/B175WBPfUqfDRj+YxpejrX++NRYYK5zaXpCqtXAnf\n+AZceGFx045Fi4obd0g5MrwlDWmrVsHMmTBjRnFbzF/9CsaPL7sqaXAMb0lD0po1cMklcMEFcOih\nxQjtCRPKrkqqD8Nb0pCydi1ceimcfz4cdBDMnw977VV2VVJ9Gd6ShoS1a2H2bDjvPHjTm+DGG2Gf\nfcquSmoMw1tSw82cCf/zP419j3vvhUmT4Be/gIkTG/teUtkMb0kN19kJBx5YnHtulB128Jy22ofh\nLakp9tkH3va2squQhgbDW2oTf/wjrF5dzns/9VQ57ysNVYa31AamTy9mFNt553LePwJ2372c95aG\nIsNbGuLOPx8uvxzuvNN5saWhwvCWhrCvfhUuu8wbWkhDjeEttbj584tLrQZq7Vp48MEiuHfcse5l\nSSqR4S21uMWLYfPN4bjjBr7t5MkwenT9a5JULsNbysD48fAv/1J2FZJaheEtleSJJ4p7S/fnySe9\nj7OklzK8pZLstRdsvz0MG9Z/27PPbnw9kvIRKaVyC4hIZdcglWHkSFi+vPgpqX1EBCmlGMxrVPGd\nX5IktRIPm0sDdMstMGfO4F/n+ecH/xqS2pPhLQ3ATTfBBz4A06bBVlsN7rXe+14PmUuqjeEtVenm\nm+Hf/g1++EM4+OCyq5HUzgxvtaxVq+Dpp8uuovD738Pxx8P11xvckspneKtlvec98LvfwZZbll0J\njBgB114LhxxSdiWSZHirha1bV+zpGpiS9FJeKiZJUmbc89ZL/Pd/w6JFZVdReOCBsiuQpNZkeOtF\nX/86zJgBZ54JMai5f+pjv/3gn/6p7CokqfVUFd4R8XHgTGAM8EfgUymlhZtoPxX4HDABeB5YBJyZ\nUnJfqkVdcgl89avFvZ933bXsaiRJm9Lv3OYRcSxwJXAKsBA4FTgBmJBSeqyX9q8F/gTMAGYDWwHn\nAbunlPbopb1zmzfAhg2wcmV1ba+6Cs47rwju3XZraFmS1PbqMbd5NeH9G+CulNLJ3dbdD1yXUvps\nL+2PAX4AbN6VyhFxGHAzMCql9FSP9oZ3A3z608Vh8BEj+m87diz87Gew++6Nr0uS2l09wnuTh80j\nYgtgf+D8Hk/NAyb3sdkiYBVwUkR8G3g5cDxwe8/gVuOsXg0XXACnnlp2JZKkeuvvUrFRwHBgWY/1\nyynOf/+DlNJSYCrwRWAd8AywJ3DUoCqVJElAA0abR8Q44EfA5cBVwNbAF4BrIuItHiOvn0WL4Mc/\n7v25xYthwoTm1iNJao7+wnsFsAEY3WP9aGBpH9ucDDyWUvpM14qI+CDwGHAgsLjnBtOmTXvx946O\nDjo6OvopS1DMPnb//b3PQHbccXDkkc2vSZL0Up2dnXR2dtb1NasZsHYbcHcvA9auTSmd1Uv784HD\nUkqTuq0bCzwBHNLzEjMHrNXujDPgNa8pfkqS8lCPAWvVTI86Azg+Ik6MiDdExMUU57svrRQxPSLm\nd2v/E2D/iDgnIvaIiP0pDqE/Cvx2MMVKkqQqznmnlK6JiG2Bs4GxwD3A1G7XeI8BxnVrv7Bybfj/\nAz4NrAFuBd6RUlpb5/olSWo7VQ1YSynNAmb18dwJvay7DrhucKVJkqTeeFcxSZIy441JWkxKMGsW\nrFjRf9tbb4V//dfG1yRJai3uebeYzs5iZrT16/tfpkyBqVPLrliS1Gz9XirW8AK8VOwljjsOJk+G\n004ruxJJUiM05cYkjWZ4b7RiBbz2tfDww/CqV5VdjSSpEZp1nbea5Mor4aijDG5J0qYZ3i0iJZg9\nG046qexKJEmtzvBuEYsWFQF+8MFlVyJJanWGd4u47LJirzsGdRZEktQOHLDWAp5+GnbbDR54ALbb\nruxqJEmN5IC1IeJ734N3vMPgliRVx/AuWUobD5lLklQNw7tkd9wBq1bBYYeVXYkkKReGd8lmz4aP\nfQyG+V9CklQlB6yVaOVK2HlnuPdeGDOm7GokSc3ggLXMff/7xeFyg1uSNBCGd4kcqCZJqoXhXZLf\n/Q6WL4e3v73sSiRJuTG8S3LZZXDiiTB8eNmVSJJy44C1kmyzDdxzD+y0U9mVSJKayft5Z2zYMFi/\n3kvEJKndONpckqQ2ZHhLkpQZw1uSpMwY3pIkZcbwliQpM5uVXUC7uP56+PznNz72+m5JUq0M7yb5\n85/hjW+ET36yeLzVVl4mJkmqjeHdRKNHwz77lF2FJCl37vtJkpQZw1uSpMwY3pIkZcbwliQpMw5Y\nq6O5c+ELX+j9uccfhxNOaG49kqShyfCuo3vugV13hU98ovfnJ0xoajmSpCHK8K6zHXeEyZPLrkKS\nNJR5zluSpMwY3pIkZcbwliQpM4a3JEmZMbwlScqM4S1JUmYMb0mSMmN4S5KUGcNbkqTMGN6SJGXG\n8JYkKTPObT5Ip59e3DEM4P774Ygjyq1HkjT0RUqp3AIiUtk1DMbWW8PMmfDylxeP//mf4TWvKbcm\nSVLrighSSjGo1yg7OIdCeD/+ePFTkqT+1CO8PectSVJmDG9JkjJjeEuSlBnDW5KkzBjeg7B6Nfz9\n72VXIUlqN4Z3jdasgaOOgve/35HmkqTmqiq8I+LjEfFwRKyNiCURcVAV23wqIv4cEesi4i8RMX3w\n5baGtWvh6KNhxx3hW98quxpJUrvpd4a1iDgWuAg4BVgInArcEBETUkqP9bHNDOCdwH8C9wCvBMbW\nq+hme/ZZWLWq+H3DBjjpJNh+e7jiChg+vNTSJEltqN9JWiLiN8BdKaWTu627H7gupfTZXtq/niKw\n904p3ddvARlM0rLTTsW57a6gPvxwmD0bNnNyWUnSANVjkpZNxk9EbAHsD5zf46l5wOQ+NjsaeAiY\nGhE3AAEsAM5MKT05mGLLsm4d/OlPsN12ZVciSVL/57xHAcOBZT3WLwfG9LHNOGAX4H3Ah4EPAeOB\nn0bEoL5pSJKkxtxVbBgwAvhQSulBgIj4EHAfcABwRwPec8Duuw++/vXq2q5c2dhaJEkaiP7CewWw\nARjdY/1oYGkf2ywF1ncFd8WDldfZmV7Ce9q0aS/+3tHRQUdHRz9lDd6iRbBkCXzwg/23veQSGDWq\n4SVJkoagzs5OOjs76/qa1QxYuw24u5cBa9emlM7qpf0U4EbgtSmlhyrrdgceAN6YUlrSo30pA9bm\nzIGFC4ufkiQ1S7PuKjYDOD4iToyIN0TExRTnuy+tFDE9IuZ3az8fuBOYExETI2I/YA5wW8/gliRJ\nA9fvOe+U0jURsS1wNsW12vcAU7td4z2GYpBaV/sUEUcCXwN+BaylGJ1+Rp1rlySpLVU1YC2lNAuY\n1cdzJ/Sy7q8Uo80lSVKdObe5JEmZadvwbvFJ3SRJ6lPbhvcDDxTTnkqSlJu2De/OTmjC5eSSJNVd\nv9d5N7yAEq7zXrUKxoyBJ5+El72sqW8tSWpzzbrOe8hZvBj228/gliTlqS3D20PmkqSctWV4L1gA\nhx5adhWSJNWm7c55r14N228Py5fDyJFNe1tJkgDPedfk1lth4kSDW5KUr7YLbw+ZS5JyZ3hLkpSZ\ntjrnvXYtjBoFy5bBK17RlLeUJOklPOc9QLfdBnvvbXBLkvLWVuG9YIHXd0uS8lfV/bxztWwZXH31\nxjuIXXcdfOUr5dYkSdJgDek97/nzYeZMeOihYjniCAerSZLyN6T3vAEOOAAuvrjsKiRJqp8hvect\nSdJQZHhLkpQZw1uSpMwY3pIkZcbwliQpM4a3JEmZMbwlScqM4S1JUmYMb0mSMmN4S5KUGcNbkqTM\nDLm5zW+9FR59dOPvkiQNNUMuvD/6Udh1V9h66+Lxu95VajmSJNXdkAvvlODCC2H8+LIrkSSpMTzn\nLUlSZgxvSZIyY3hLkpQZw1uSpMxkP2BtzRpYsKAYqAawalW59UiS1GjZh/cNN8Cpp8L++xePDzgA\nRo8utyZJkhop+/B+4QU4+GC49tqyK5EkqTk85y1JUmay2/NevRpOPhkeeaR4vGIFTJxYakmSJDVV\nVuG9Zg0ceSTsvDN8+csb148bV15NkiQ1WzbhvWYNHHVUEdxz5sDw4WVXJElSObI4571uHRx9NOyw\ng8EtSVIWe9433wzPPANz5xrckiRlsee9YQOMHWtwS5IEmYS3JEnayPCWJCkzhrckSZkxvCVJyozh\nLUlSZgxvSZIyY3hLkpQZw1uSpMwY3pIkZcbwliQpM1WFd0R8PCIejoi1EbEkIg6qcrs9ImJlRKwc\nXJmSJKlLv+EdEccCFwFfBCYCi4EbImKnfrbbAvgBsABIgy9VkiRBdXveZwCXp5S+nVK6L6X0SWAp\ncEo/250H3AVcC8TgypQkSV02Gd6Vvef9gXk9npoHTN7Edu8E3gmchsEtSVJd9Xc/71HAcGBZj/XL\ngTG9bRAROwCzgXenlNZEmN2SJNVTf+FdiyuBWSmlOwbzIt/4Bvz2t8Xvjz4KI0fWoTJJkoaA/sJ7\nBbABGN1j/WiK8969OQw4JCLOrTwOYFhE/B04JaX0rZ4bTJs27cXfOzo66Ojo4DvfgSOOgN12K9bv\nu28/lUqS1II6Ozvp7Oys62tGSpseCB4RtwF3p5RO7rbufuDalNJZvbSf0GPVu4GzgEnAX1JKz/Ro\nn3qrYdIkuOSS4qckSUNFRJBSGtQ55WoOm88AroyI2ykuE/t3ivPdl1aKmA5MSim9DSCl9KceRb4R\neKHnekmSVJt+wzuldE1EbAucDYwF7gGmppQeqzQZA4zr72UGVaUkSXpRv4fNG16Ah80lSW2kHofN\nndtckqTMGN6SJGXG8JYkKTOGtyRJmWnEDGs1W70ausaubdhQbi2SJLWqlgnvhQvh0EPhZS8rHm+2\nGWyzTbk1SZLUilomvFetgilTYO7csiuRJKm1ec5bkqTMGN6SJGXG8JYkKTOGtyRJmTG8JUnKjOEt\nSVJmDG9JkjJjeEuSlBnDW5KkzBjekiRlxvCWJCkzhrckSZkxvCVJyozhLUlSZgxvSZIyY3hLkpQZ\nw1uSpMwY3pIkZcbwliQpM4a3JEmZMbwlScqM4S1JUmYMb0mSMmN4S5KUGcNbkqTMGN6SJGXG8JYk\nKTOGtyRJmTG8JUnKjOEtSVJmDG9JkjJjeEuSlBnDW5KkzBjekiRlxvCWJCkzhrckSZkxvCVJyozh\nLUlSZgxvSZIyY3hLkpQZw1uSpMwY3pIkZcbwliQpM4a3JEmZMbwlScqM4S1JUmYMb0mSMmN4S5KU\nGcNbkqTMVB3eEfHxiHg4ItZGxJKIOGgTbTsi4scR8ZeIWB0Rd0fECfUpWZKk9lZVeEfEscBFwBeB\nicBi4IaI2KmPTQ4E7gbeC+wJzAJmR8Rxg65YkqQ2Fyml/htF/Aa4K6V0crd19wPXpZQ+W9UbRVwN\nDE8pHdNjfUopMXcuXHQRzJ07sA8gSVJOIoKUUgzmNfrd846ILYD9gXk9npoHTB7Ae70SeGoA7SVJ\nUi82q6LNKGA4sKzH+uXAmGreJCKOBN7CwMJekiT1ouGjzSPizcD3gNNSSksa/X6SJA111ex5rwA2\nAKN7rB8NLN3UhpUR6T8HzkkpfbOvdtOmTePBB+HBB6Gzs4OOjo4qypIkqfV1dnbS2dlZ19esdsDa\nbcDdvQxYuzaldFYf2xwC/Az4XErpok28tgPWJEltox4D1qrZ8waYAVwZEbdTXCb27xTnuy+tFDId\nmJRSelvlcQfFHvc3gO9HRNe58Q0ppScHU7AkSe2uqvBOKV0TEdsCZwNjgXuAqSmlxypNxgDjum3y\nEWBL4MzK0uWRHu0kSdIAVbvnTUppFsVkK709d0Ivj51RTZKkBnBuc0mSMmN4S5KUGcNbkqTMGN6S\nJGWmJcJ7+XJ45pmyq5AkKQ9VjzZvpL32Kn4ec8ym20mSpCpnWGtoAZUZ1iRJagdNuSWoJElqLYa3\nJEmZMbwlScqM4S1JUmYMb0mSMmN4S5KUGcNbkqTMGN6SJGXG8JYkKTOGtyRJmTG8JUnKjOEtSVJm\nDG9JkjJjeEuSlBnDW5KkzBjekiRlxvCWJCkzhrckSZkxvCVJyozhLUlSZgxvSZIyY3hLkpQZw1uS\npMwY3pIkZcbwliQpM4a3JEmZMbwlScqM4S1JUmYMb0mSMmN4S5KUGcNbkqTMGN6SJGXG8JYkKTOG\ntyRJmTG8JUnKjOEtSVJmDG9JkjJjeEuSlBnDW5KkzBjekiRlxvCWJCkzhrckSZkxvCVJyozhLUlS\nZgxvSZIyY3hLkpQZw1uSpMwY3pIkZcbwliQpM1WFd0R8PCIejoi1EbEkIg7qp/3eEbEgItZExOMR\ncU59ypUkSf2Gd0QcC1wEfBGYCCwGboiInfpovzVwE7AUOAA4HTgzIs6oV9GSJLWzava8zwAuTyl9\nO6V0X0rpkxTBfEof7T8AbAl8JKX0p5TS9cB5lddRCTo7O8suYcizj5vDfm48+zgPmwzviNgC2B+Y\n1+OpecDkPjY7EPh1Sun5Hu13iIhdai1UtfN/xsazj5vDfm48+zgP/e15jwKGA8t6rF8OjOljmzG9\ntF/W7TlJkjQIjRhtnhrwmpIkqSJS6jtrK4fNVwPvr5y77lo/E5iQUjqsl22+A2ybUjqy27pJwG+A\n3VJK/9ejvWEvSWorKaUYzPab9fPif4uI3wJvB67v9tQU4No+NrsVOC8iRnQ77z0FeKJncFfeY1Af\nQJKkdlPNYfMZwPERcWJEvCEiLqY4d30pQERMj4j53dpfBawBroiIPSPiPcBnKq8jSZIGaZN73gAp\npWsiYlvgbGAscA8wNaX0WKXJGGBct/bPRcQUYCawBHgKuCCldGG9i5ckqR1t8py3JElqPQ2f29yp\nVRtvIH0cER0R8eOI+EtErI6IuyPihGbWm6OB/jvutt0eEbEyIlY2usbc1dLHEfGpiPhzRKyr/Jue\n3oxac1bD3+SpEXFbRDwXEU9GxI8iYo9m1ZuTiDgkIn5Sya4XIuIjVWxTU+Y1NLydWrXxBtrHFJPo\n3A28F9gTmAXMjojjmlBulmro467ttgB+ACzASyg3qZY+jogZFDM9ngmMB46g6Gv1oYa/ya8FfgR0\nVtq/jWIGzV80o94MjQR+T5Fda+nn//tBZV5KqWELxeVh3+yx7n7gS320PwV4BhjRbd1ZwOONrDPn\nZaB93MdrXA1cV/ZnadWl1j4GLgS+DXwEWFn252jlpYa/Fa8H/ga8vuzac1pq6OdjgPVUTrFW1h0G\nvAC8uuzP08oLsBL4cD9tas68hu15O7Vq49XYx715JcXAQvVQax9HxDuBdwKnAV4OuQk19vHRwEPA\n1Ih4qHIY+IqI2K6BpWatxn5eBKwCToqI4RGxFXA8cHtKyb8Zg1dz5jXysLlTqzZeLX38EhFxJPAW\nYHZ9SxsyBtzHEbEDRX9+IKW0prHlDQm1/DseB+wCvA/4MPAhikPnP40Ivyz1bsD9nFJaCkylOMy+\njmIvcU/gqMaV2VZqzryGD1gbIM8LNlFEvBn4HnBaSmlJ2fUMIVcCs1JKd5RdyBA2DBgBfCiltDCl\ntJAiwN9Ice5QdRAR4yjOeV9O0a8dFIeDr/FLUl3UnHmNDO8VwAZgdI/1oylOzvfmr/zjt43R3Z7T\nS9XSxwBURpj+AjgnpfTNxpQ3JNTSx4cB50bE3yPi78C3gJGVxx9rXKnZqqWPlwLrU0oPdlv3YOV1\ndq57hUNDLf18MvBYSukzKaW7U0q/Bj4IHEpxyFeDU3PmNSy8U0p/A7qmVu1uCsUIx97cChwcESN6\ntO91atV2V2MfExGHUAT3uSmlrzWuwvzV2Md7Aft2Wz5HMfJ0X+C6xlSarxr7eCGwWWXPsMs4isPC\n/q3oRY39HBSD07rretxqR25zVHvmNXi03fuA54ETgTcAFwPPATtVnp8OzO/WfmuKb4Dfpziv8h7g\nWeA/yh452KpLDX3cQXGzmfMovuGNqSzblf1ZWnUZaB/3sv3xONq8rn1MESpL2HgJ034Ul4ktLvuz\ntPJSQz8fRLG3fg6wB8WAt7nAI8DLyv48rbZQXCo2sbKsrvTbxEZkXjM+zCnAwxSDHe4ADur23OXA\nQz3a71X5n3At8ATFYd3S/6O08jKQPq483kDx7bn78lCz685pGei/4x7bHg88V/ZnaPWlhr8VY4Br\nKuGzjGKsgV9C69/Px1S+KK2s9POPgPFlf45WXCh2jrr+pnb/OztnE/1bU+Y5PaokSZnxnIUkSZkx\nvCVJyozhLUlSZgxvSZIyY3hLkpQZw1uSpMwY3pIkZcbwliQpM4a3JEmZ+f9GOky3IBqCYAAAAABJ\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# ROC curve did not change\n", + "fpr, tpr, thresholds = metrics.roc_curve(y_test, y_pred_prob_new)\n", + "plt.plot(fpr, tpr)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.838692434211\n" + ] + } + ], + "source": [ + "# AUC did not change\n", + "print metrics.roc_auc_score(y_test, y_pred_prob_new)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4: Cross-validation" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.84782357185298385" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate cross-validated AUC\n", + "from sklearn.cross_validation import cross_val_score\n", + "cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.84604951475539703" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# add Fare to the model\n", + "feature_cols = ['Pclass', 'Parch', 'Age', 'Sex_Female', 'Embarked_Q', 'Embarked_S', 'Fare']\n", + "X = titanic[feature_cols]\n", + "\n", + "# recalculate AUC\n", + "cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/13_bank_exercise.ipynb b/notebooks/13_bank_exercise.ipynb new file mode 100644 index 0000000..f72dc78 --- /dev/null +++ b/notebooks/13_bank_exercise.ipynb @@ -0,0 +1,947 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exercise with bank marketing data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "- Data from the UCI Machine Learning Repository: [data](https://github.com/justmarkham/DAT8/blob/master/data/bank-additional.csv), [data dictionary](https://archive.ics.uci.edu/ml/datasets/Bank+Marketing)\n", + "- **Goal:** Predict whether a customer will purchase a bank product marketed over the phone\n", + "- `bank-additional.csv` is already in our repo, so there is no need to download the data from the UCI website" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 1: Read the data into Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
agejobmaritaleducationdefaulthousingloancontactmonthday_of_week...campaignpdayspreviouspoutcomeemp.var.ratecons.price.idxcons.conf.idxeuribor3mnr.employedy
030blue-collarmarriedbasic.9ynoyesnocellularmayfri...29990nonexistent-1.892.893-46.21.3135099.1no
139servicessinglehigh.schoolnononotelephonemayfri...49990nonexistent1.193.994-36.44.8555191.0no
225servicesmarriedhigh.schoolnoyesnotelephonejunwed...19990nonexistent1.494.465-41.84.9625228.1no
338servicesmarriedbasic.9ynounknownunknowntelephonejunfri...39990nonexistent1.494.465-41.84.9595228.1no
447admin.marrieduniversity.degreenoyesnocellularnovmon...19990nonexistent-0.193.200-42.04.1915195.8no
\n", + "

5 rows × 21 columns

\n", + "
" + ], + "text/plain": [ + " age job marital education default housing loan \\\n", + "0 30 blue-collar married basic.9y no yes no \n", + "1 39 services single high.school no no no \n", + "2 25 services married high.school no yes no \n", + "3 38 services married basic.9y no unknown unknown \n", + "4 47 admin. married university.degree no yes no \n", + "\n", + " contact month day_of_week ... campaign pdays previous poutcome \\\n", + "0 cellular may fri ... 2 999 0 nonexistent \n", + "1 telephone may fri ... 4 999 0 nonexistent \n", + "2 telephone jun wed ... 1 999 0 nonexistent \n", + "3 telephone jun fri ... 3 999 0 nonexistent \n", + "4 cellular nov mon ... 1 999 0 nonexistent \n", + "\n", + " emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y \n", + "0 -1.8 92.893 -46.2 1.313 5099.1 no \n", + "1 1.1 93.994 -36.4 4.855 5191.0 no \n", + "2 1.4 94.465 -41.8 4.962 5228.1 no \n", + "3 1.4 94.465 -41.8 4.959 5228.1 no \n", + "4 -0.1 93.200 -42.0 4.191 5195.8 no \n", + "\n", + "[5 rows x 21 columns]" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bank-additional.csv'\n", + "bank = pd.read_csv(url, sep=';')\n", + "bank.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 2: Prepare at least three features\n", + "\n", + "- Include both numeric and categorical features\n", + "- Choose features that you think might be related to the response (based on intuition or exploration)\n", + "- Think about how to handle missing values (encoded as \"unknown\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index([u'age', u'job', u'marital', u'education', u'default', u'housing',\n", + " u'loan', u'contact', u'month', u'day_of_week', u'duration', u'campaign',\n", + " u'pdays', u'previous', u'poutcome', u'emp.var.rate', u'cons.price.idx',\n", + " u'cons.conf.idx', u'euribor3m', u'nr.employed', u'y'],\n", + " dtype='object')" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list all columns (for reference)\n", + "bank.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### y (response)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# convert the response to numeric values and store as a new column\n", + "bank['outcome'] = bank.y.map({'no':0, 'yes':1})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### age" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "%matplotlib inline" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n7mZmPej/Az06t9SM9b3RAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# probably not a great feature\n", + "bank.boxplot(column='age', by='outcome')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### job" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "job\n", + "admin. 0.131423\n", + "blue-collar 0.069005\n", + "entrepreneur 0.054054\n", + "housemaid 0.100000\n", + "management 0.092593\n", + "retired 0.228916\n", + "self-employed 0.081761\n", + "services 0.089059\n", + "student 0.231707\n", + "technician 0.115774\n", + "unemployed 0.171171\n", + "unknown 0.102564\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature\n", + "bank.groupby('job').outcome.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create job_dummies (we will add it to the bank DataFrame later)\n", + "job_dummies = pd.get_dummies(bank.job, prefix='job')\n", + "job_dummies.drop(job_dummies.columns[0], axis=1, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### default" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "default\n", + "no 0.121267\n", + "unknown 0.061021\n", + "yes 0.000000\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature\n", + "bank.groupby('default').outcome.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "no 3315\n", + "unknown 803\n", + "yes 1\n", + "dtype: int64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# but only one person in the dataset has a status of yes\n", + "bank.default.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# so, let's treat this as a 2-class feature rather than a 3-class feature\n", + "bank['default'] = bank.default.map({'no':0, 'unknown':1, 'yes':1})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### contact" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "contact\n", + "cellular 0.141403\n", + "telephone 0.051806\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature\n", + "bank.groupby('contact').outcome.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# convert the feature to numeric values\n", + "bank['contact'] = bank.contact.map({'cellular':0, 'telephone':1})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### month" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "month\n", + "apr 0.167442\n", + "aug 0.100629\n", + "dec 0.545455\n", + "jul 0.082982\n", + "jun 0.128302\n", + "mar 0.583333\n", + "may 0.065312\n", + "nov 0.096413\n", + "oct 0.362319\n", + "sep 0.406250\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature at first glance\n", + "bank.groupby('month').outcome.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "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", + "
countmean
month
dec220.545455
mar480.583333
sep640.406250
oct690.362319
apr2150.167442
nov4460.096413
jun5300.128302
aug6360.100629
jul7110.082982
may13780.065312
\n", + "
" + ], + "text/plain": [ + " count mean\n", + "month \n", + "dec 22 0.545455\n", + "mar 48 0.583333\n", + "sep 64 0.406250\n", + "oct 69 0.362319\n", + "apr 215 0.167442\n", + "nov 446 0.096413\n", + "jun 530 0.128302\n", + "aug 636 0.100629\n", + "jul 711 0.082982\n", + "may 1378 0.065312" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# but, it looks like their success rate is actually just correlated with number of calls\n", + "# thus, the month feature is unlikely to generalize\n", + "bank.groupby('month').outcome.agg(['count', 'mean']).sort('count')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### duration" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# looks like an excellent feature, but you can't know the duration of a call beforehand, thus it can't be used in your model\n", + "bank.boxplot(column='duration', by='outcome')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### previous" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "previous\n", + "0 0.082884\n", + "1 0.208421\n", + "2 0.410256\n", + "3 0.600000\n", + "4 0.714286\n", + "5 1.000000\n", + "6 0.500000\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature\n", + "bank.groupby('previous').outcome.mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### poutcome" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "poutcome\n", + "failure 0.147577\n", + "nonexistent 0.082884\n", + "success 0.647887\n", + "Name: outcome, dtype: float64" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# looks like a useful feature\n", + "bank.groupby('poutcome').outcome.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create poutcome_dummies\n", + "poutcome_dummies = pd.get_dummies(bank.poutcome, prefix='poutcome')\n", + "poutcome_dummies.drop(poutcome_dummies.columns[0], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# concatenate bank DataFrame with job_dummies and poutcome_dummies\n", + "bank = pd.concat([bank, job_dummies, poutcome_dummies], axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### euribor3m" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nGjCLuCQN2P8HEgDoA6g+mhcAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# looks like an excellent feature\n", + "bank.boxplot(column='euribor3m', by='outcome')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 3: Model building\n", + "\n", + "- Use cross-validation to evaluate the AUC of a logistic regression model with your chosen features\n", + "- Try to increase the AUC by selecting different sets of features" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index([u'age', u'job', u'marital', u'education', u'default', u'housing',\n", + " u'loan', u'contact', u'month', u'day_of_week', u'duration', u'campaign',\n", + " u'pdays', u'previous', u'poutcome', u'emp.var.rate', u'cons.price.idx',\n", + " u'cons.conf.idx', u'euribor3m', u'nr.employed', u'y', u'outcome',\n", + " u'job_blue-collar', u'job_entrepreneur', u'job_housemaid',\n", + " u'job_management', u'job_retired', u'job_self-employed',\n", + " u'job_services', u'job_student', u'job_technician', u'job_unemployed',\n", + " u'job_unknown', u'poutcome_nonexistent', u'poutcome_success'],\n", + " dtype='object')" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# new list of columns (including dummy columns)\n", + "bank.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create X (including 13 dummy columns)\n", + "feature_cols = ['default', 'contact', 'previous', 'euribor3m'] + list(bank.columns[-13:])\n", + "X = bank[feature_cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create y\n", + "y = bank.outcome" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.75566564072331199" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate cross-validated AUC\n", + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.cross_validation import cross_val_score\n", + "logreg = LogisticRegression(C=1e9)\n", + "cross_val_score(logreg, X, y, cv=10, scoring='roc_auc').mean()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/13_cross_validation.ipynb b/notebooks/13_cross_validation.ipynb new file mode 100644 index 0000000..0593180 --- /dev/null +++ b/notebooks/13_cross_validation.ipynb @@ -0,0 +1,642 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Cross-validation for parameter tuning, model selection, and feature selection\n", + "*From the video series: [Introduction to machine learning with scikit-learn](https://github.com/justmarkham/scikit-learn-videos)*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "- What is the drawback of using the **train/test split** procedure for model evaluation?\n", + "- How does **K-fold cross-validation** overcome this limitation?\n", + "- How can cross-validation be used for selecting **tuning parameters**, choosing between **models**, and selecting **features**?\n", + "- What are some possible **improvements** to cross-validation?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Review of model evaluation procedures" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Motivation:** Need a way to choose between machine learning models\n", + "\n", + "- Goal is to estimate likely performance of a model on **out-of-sample data**\n", + "\n", + "**Initial idea:** Train and test on the same data\n", + "\n", + "- But, maximizing **training accuracy** rewards overly complex models which **overfit** the training data\n", + "\n", + "**Alternative idea:** Train/test split\n", + "\n", + "- Split the dataset into two pieces, so that the model can be trained and tested on **different data**\n", + "- **Testing accuracy** is a better estimate than training accuracy of out-of-sample performance\n", + "- But, it provides a **high variance** estimate since changing which observations happen to be in the testing set can significantly change testing accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.datasets import load_iris\n", + "from sklearn.cross_validation import train_test_split\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "from sklearn import metrics" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read in the iris data\n", + "iris = load_iris()\n", + "\n", + "# create X (features) and y (response)\n", + "X = iris.data\n", + "y = iris.target" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.973684210526\n" + ] + } + ], + "source": [ + "# use train/test split with different random_state values\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=4)\n", + "\n", + "# check classification accuracy of KNN with K=5\n", + "knn = KNeighborsClassifier(n_neighbors=5)\n", + "knn.fit(X_train, y_train)\n", + "y_pred = knn.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** What if we created a bunch of train/test splits, calculated the testing accuracy for each, and averaged the results together?\n", + "\n", + "**Answer:** That's the essense of cross-validation!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Steps for K-fold cross-validation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Split the dataset into K **equal** partitions (or \"folds\").\n", + "2. Use fold 1 as the **testing set** and the union of the other folds as the **training set**.\n", + "3. Calculate **testing accuracy**.\n", + "4. Repeat steps 2 and 3 K times, using a **different fold** as the testing set each time.\n", + "5. Use the **average testing accuracy** as the estimate of out-of-sample accuracy." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Diagram of **5-fold cross-validation:**\n", + "\n", + "![5-fold cross-validation](images/cross_validation_diagram.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Iteration Training set observations Testing set observations\n", + " 1 [ 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24] [0 1 2 3 4] \n", + " 2 [ 0 1 2 3 4 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24] [5 6 7 8 9] \n", + " 3 [ 0 1 2 3 4 5 6 7 8 9 15 16 17 18 19 20 21 22 23 24] [10 11 12 13 14] \n", + " 4 [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 20 21 22 23 24] [15 16 17 18 19] \n", + " 5 [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19] [20 21 22 23 24] \n" + ] + } + ], + "source": [ + "# simulate splitting a dataset of 25 observations into 5 folds\n", + "from sklearn.cross_validation import KFold\n", + "kf = KFold(25, n_folds=5, shuffle=False)\n", + "\n", + "# print the contents of each training and testing set\n", + "print '{} {:^61} {}'.format('Iteration', 'Training set observations', 'Testing set observations')\n", + "for iteration, data in enumerate(kf, start=1):\n", + " print '{:^9} {} {:^25}'.format(iteration, data[0], data[1])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Dataset contains **25 observations** (numbered 0 through 24)\n", + "- 5-fold cross-validation, thus it runs for **5 iterations**\n", + "- For each iteration, every observation is either in the training set or the testing set, **but not both**\n", + "- Every observation is in the testing set **exactly once**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing cross-validation to train/test split" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Advantages of **cross-validation:**\n", + "\n", + "- More accurate estimate of out-of-sample accuracy\n", + "- More \"efficient\" use of data (every observation is used for both training and testing)\n", + "\n", + "Advantages of **train/test split:**\n", + "\n", + "- Runs K times faster than K-fold cross-validation\n", + "- Simpler to examine the detailed results of the testing process" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cross-validation recommendations" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. K can be any number, but **K=10** is generally recommended\n", + "2. For classification problems, **stratified sampling** is recommended for creating the folds\n", + " - Each response class should be represented with equal proportions in each of the K folds\n", + " - scikit-learn's `cross_val_score` function does this by default" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cross-validation example: parameter tuning" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Goal:** Select the best tuning parameters (aka \"hyperparameters\") for KNN on the iris dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import cross_val_score" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1. 0.93333333 1. 1. 0.86666667 0.93333333\n", + " 0.93333333 1. 1. 1. ]\n" + ] + } + ], + "source": [ + "# 10-fold cross-validation with K=5 for KNN (the n_neighbors parameter)\n", + "knn = KNeighborsClassifier(n_neighbors=5)\n", + "scores = cross_val_score(knn, X, y, cv=10, scoring='accuracy')\n", + "print scores" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.966666666667\n" + ] + } + ], + "source": [ + "# use average accuracy as an estimate of out-of-sample accuracy\n", + "print scores.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.95999999999999996, 0.95333333333333337, 0.96666666666666656, 0.96666666666666656, 0.96666666666666679, 0.96666666666666679, 0.96666666666666679, 0.96666666666666679, 0.97333333333333338, 0.96666666666666679, 0.96666666666666679, 0.97333333333333338, 0.98000000000000009, 0.97333333333333338, 0.97333333333333338, 0.97333333333333338, 0.97333333333333338, 0.98000000000000009, 0.97333333333333338, 0.98000000000000009, 0.96666666666666656, 0.96666666666666656, 0.97333333333333338, 0.95999999999999996, 0.96666666666666656, 0.95999999999999996, 0.96666666666666656, 0.95333333333333337, 0.95333333333333337, 0.95333333333333337]\n" + ] + } + ], + "source": [ + "# search for an optimal value of K for KNN\n", + "k_range = range(1, 31)\n", + "k_scores = []\n", + "for k in k_range:\n", + " knn = KNeighborsClassifier(n_neighbors=k)\n", + " scores = cross_val_score(knn, X, y, cv=10, scoring='accuracy')\n", + " k_scores.append(scores.mean())\n", + "print k_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "\n", + "# plot the value of K for KNN (x-axis) versus the cross-validated accuracy (y-axis)\n", + "plt.plot(k_range, k_scores)\n", + "plt.xlabel('Value of K for KNN')\n", + "plt.ylabel('Cross-Validated Accuracy')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cross-validation example: model selection" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Goal:** Compare the best KNN model with logistic regression on the iris dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.98\n" + ] + } + ], + "source": [ + "# 10-fold cross-validation with the best KNN model\n", + "knn = KNeighborsClassifier(n_neighbors=20)\n", + "print cross_val_score(knn, X, y, cv=10, scoring='accuracy').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.953333333333\n" + ] + } + ], + "source": [ + "# 10-fold cross-validation with logistic regression\n", + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression()\n", + "print cross_val_score(logreg, X, y, cv=10, scoring='accuracy').mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cross-validation example: feature selection" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Goal**: Select whether the Newspaper feature should be included in the linear regression model on the advertising dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.linear_model import LinearRegression" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read in the advertising dataset\n", + "data = pd.read_csv('http://www-bcf.usc.edu/~gareth/ISL/Advertising.csv', index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a Python list of three feature names\n", + "feature_cols = ['TV', 'Radio', 'Newspaper']\n", + "\n", + "# use the list to select a subset of the DataFrame (X)\n", + "X = data[feature_cols]\n", + "\n", + "# select the Sales column as the response (y)\n", + "y = data.Sales" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[-3.56038438 -3.29767522 -2.08943356 -2.82474283 -1.3027754 -1.74163618\n", + " -8.17338214 -2.11409746 -3.04273109 -2.45281793]\n" + ] + } + ], + "source": [ + "# 10-fold cross-validation with all three features\n", + "lm = LinearRegression()\n", + "scores = cross_val_score(lm, X, y, cv=10, scoring='mean_squared_error')\n", + "print scores" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 3.56038438 3.29767522 2.08943356 2.82474283 1.3027754 1.74163618\n", + " 8.17338214 2.11409746 3.04273109 2.45281793]\n" + ] + } + ], + "source": [ + "# fix the sign of MSE scores\n", + "mse_scores = -scores\n", + "print mse_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1.88689808 1.81595022 1.44548731 1.68069713 1.14139187 1.31971064\n", + " 2.85891276 1.45399362 1.7443426 1.56614748]\n" + ] + } + ], + "source": [ + "# convert from MSE to RMSE\n", + "rmse_scores = np.sqrt(mse_scores)\n", + "print rmse_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.69135317081\n" + ] + } + ], + "source": [ + "# calculate the average RMSE\n", + "print rmse_scores.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.67967484191\n" + ] + } + ], + "source": [ + "# 10-fold cross-validation with two features (excluding Newspaper)\n", + "feature_cols = ['TV', 'Radio']\n", + "X = data[feature_cols]\n", + "print np.sqrt(-cross_val_score(lm, X, y, cv=10, scoring='mean_squared_error')).mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Improvements to cross-validation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Repeated cross-validation**\n", + "\n", + "- Repeat cross-validation multiple times (with **different random splits** of the data) and average the results\n", + "- More reliable estimate of out-of-sample performance by **reducing the variance** associated with a single trial of cross-validation\n", + "\n", + "**Creating a hold-out set**\n", + "\n", + "- \"Hold out\" a portion of the data **before** beginning the model building process\n", + "- Locate the best model using cross-validation on the remaining data, and test it **using the hold-out set**\n", + "- More reliable estimate of out-of-sample performance since hold-out set is **truly out-of-sample**\n", + "\n", + "**Feature engineering and selection within cross-validation iterations**\n", + "\n", + "- Normally, feature engineering and selection occurs **before** cross-validation\n", + "- Instead, perform all feature engineering and selection **within each cross-validation iteration**\n", + "- More reliable estimate of out-of-sample performance since it **better mimics** the application of the model to out-of-sample data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Resources\n", + "\n", + "- scikit-learn documentation: [Cross-validation](http://scikit-learn.org/stable/modules/cross_validation.html), [Model evaluation](http://scikit-learn.org/stable/modules/model_evaluation.html)\n", + "- scikit-learn issue on GitHub: [MSE is negative when returned by cross_val_score](https://github.com/scikit-learn/scikit-learn/issues/2439)\n", + "- Section 5.1 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/) (11 pages) and related videos: [K-fold and leave-one-out cross-validation](https://www.youtube.com/watch?v=nZAM5OXrktY) (14 minutes), [Cross-validation the right and wrong ways](https://www.youtube.com/watch?v=S06JpVoNaA0) (10 minutes)\n", + "- Scott Fortmann-Roe: [Accurately Measuring Model Prediction Error](http://scott.fortmann-roe.com/docs/MeasuringError.html)\n", + "- Machine Learning Mastery: [An Introduction to Feature Selection](http://machinelearningmastery.com/an-introduction-to-feature-selection/)\n", + "- Harvard CS109: [Cross-Validation: The Right and Wrong Way](https://github.com/cs109/content/blob/master/lec_10_cross_val.ipynb)\n", + "- Journal of Cheminformatics: [Cross-validation pitfalls when selecting and assessing regression and classification models](http://www.jcheminf.com/content/pdf/1758-2946-6-10.pdf)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/14_bayes_theorem_iris.ipynb b/notebooks/14_bayes_theorem_iris.ipynb new file mode 100644 index 0000000..9502241 --- /dev/null +++ b/notebooks/14_bayes_theorem_iris.ipynb @@ -0,0 +1,568 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Applying Bayes' theorem to iris classification\n", + "\n", + "Can **Bayes' theorem** help us to solve a **classification problem**, namely predicting the species of an iris?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Preparing the data\n", + "\n", + "We'll read the iris data into a DataFrame, and **round up** all of the measurements to the next integer:" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspecies
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read the iris data into a DataFrame\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'\n", + "col_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species']\n", + "iris = pd.read_csv(url, header=None, names=col_names)\n", + "iris.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspecies
06421Iris-setosa
15321Iris-setosa
25421Iris-setosa
35421Iris-setosa
45421Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species\n", + "0 6 4 2 1 Iris-setosa\n", + "1 5 3 2 1 Iris-setosa\n", + "2 5 4 2 1 Iris-setosa\n", + "3 5 4 2 1 Iris-setosa\n", + "4 5 4 2 1 Iris-setosa" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# apply the ceiling function to the numeric columns\n", + "iris.loc[:, 'sepal_length':'petal_width'] = iris.loc[:, 'sepal_length':'petal_width'].apply(np.ceil)\n", + "iris.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Deciding how to make a prediction\n", + "\n", + "Let's say that I have an **out-of-sample iris** with the following measurements: **7, 3, 5, 2**. How might I predict the species?" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthspecies
547352Iris-versicolor
587352Iris-versicolor
637352Iris-versicolor
687352Iris-versicolor
727352Iris-versicolor
737352Iris-versicolor
747352Iris-versicolor
757352Iris-versicolor
767352Iris-versicolor
777352Iris-versicolor
877352Iris-versicolor
917352Iris-versicolor
977352Iris-versicolor
1237352Iris-virginica
1267352Iris-virginica
1277352Iris-virginica
1467352Iris-virginica
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width species\n", + "54 7 3 5 2 Iris-versicolor\n", + "58 7 3 5 2 Iris-versicolor\n", + "63 7 3 5 2 Iris-versicolor\n", + "68 7 3 5 2 Iris-versicolor\n", + "72 7 3 5 2 Iris-versicolor\n", + "73 7 3 5 2 Iris-versicolor\n", + "74 7 3 5 2 Iris-versicolor\n", + "75 7 3 5 2 Iris-versicolor\n", + "76 7 3 5 2 Iris-versicolor\n", + "77 7 3 5 2 Iris-versicolor\n", + "87 7 3 5 2 Iris-versicolor\n", + "91 7 3 5 2 Iris-versicolor\n", + "97 7 3 5 2 Iris-versicolor\n", + "123 7 3 5 2 Iris-virginica\n", + "126 7 3 5 2 Iris-virginica\n", + "127 7 3 5 2 Iris-virginica\n", + "146 7 3 5 2 Iris-virginica" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show all observations with features: 7, 3, 5, 2\n", + "iris[(iris.sepal_length==7) & (iris.sepal_width==3) & (iris.petal_length==5) & (iris.petal_width==2)]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Iris-versicolor 13\n", + "Iris-virginica 4\n", + "dtype: int64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# count the species for these observations\n", + "iris[(iris.sepal_length==7) & (iris.sepal_width==3) & (iris.petal_length==5) & (iris.petal_width==2)].species.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Iris-setosa 50\n", + "Iris-versicolor 50\n", + "Iris-virginica 50\n", + "dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# count the species for all observations\n", + "iris.species.value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's frame this as a **conditional probability problem**: What is the probability of some particular species, given the measurements 7, 3, 5, and 2?\n", + "\n", + "$$P(species \\ | \\ 7352)$$\n", + "\n", + "We could calculate the conditional probability for **each of the three species**, and then predict the species with the **highest probability**:\n", + "\n", + "$$P(setosa \\ | \\ 7352)$$\n", + "$$P(versicolor \\ | \\ 7352)$$\n", + "$$P(virginica \\ | \\ 7352)$$" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Calculating the probability of each species\n", + "\n", + "**Bayes' theorem** gives us a way to calculate these conditional probabilities.\n", + "\n", + "Let's start with **versicolor**:\n", + "\n", + "$$P(versicolor \\ | \\ 7352) = \\frac {P(7352 \\ | \\ versicolor) \\times P(versicolor)} {P(7352)}$$\n", + "\n", + "We can calculate each of the terms on the right side of the equation:\n", + "\n", + "$$P(7352 \\ | \\ versicolor) = \\frac {13} {50} = 0.26$$\n", + "\n", + "$$P(versicolor) = \\frac {50} {150} = 0.33$$\n", + "\n", + "$$P(7352) = \\frac {17} {150} = 0.11$$\n", + "\n", + "Therefore, Bayes' theorem says the **probability of versicolor given these measurements** is:\n", + "\n", + "$$P(versicolor \\ | \\ 7352) = \\frac {0.26 \\times 0.33} {0.11} = 0.76$$\n", + "\n", + "Let's repeat this process for **virginica** and **setosa**:\n", + "\n", + "$$P(virginica \\ | \\ 7352) = \\frac {0.08 \\times 0.33} {0.11} = 0.24$$\n", + "\n", + "$$P(setosa \\ | \\ 7352) = \\frac {0 \\times 0.33} {0.11} = 0$$\n", + "\n", + "We predict that the iris is a versicolor, since that species had the **highest conditional probability**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Summary\n", + "\n", + "1. We framed a **classification problem** as three conditional probability problems.\n", + "2. We used **Bayes' theorem** to calculate those conditional probabilities.\n", + "3. We made a **prediction** by choosing the species with the highest conditional probability." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: The intuition behind Bayes' theorem\n", + "\n", + "Let's make some hypothetical adjustments to the data, to demonstrate how Bayes' theorem makes intuitive sense:\n", + "\n", + "Pretend that **more of the existing versicolors had measurements of 7352:**\n", + "\n", + "- $P(7352 \\ | \\ versicolor)$ would increase, thus increasing the numerator.\n", + "- It would make sense that given an iris with measurements of 7352, the probability of it being a versicolor would also increase.\n", + "\n", + "Pretend that **most of the existing irises were versicolor:**\n", + "\n", + "- $P(versicolor)$ would increase, thus increasing the numerator.\n", + "- It would make sense that the probability of any iris being a versicolor (regardless of measurements) would also increase.\n", + "\n", + "Pretend that **17 of the setosas had measurements of 7352:**\n", + "\n", + "- $P(7352)$ would double, thus doubling the denominator.\n", + "- It would make sense that given an iris with measurements of 7352, the probability of it being a versicolor would be cut in half." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/14_naive_bayes_spam.ipynb b/notebooks/14_naive_bayes_spam.ipynb new file mode 100644 index 0000000..fe36b38 --- /dev/null +++ b/notebooks/14_naive_bayes_spam.ipynb @@ -0,0 +1,89 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Applying Naive Bayes classification to spam filtering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's pretend we have an email with three words: \"Send money now.\" We'll use Naive Bayes to classify it as **ham or spam.**\n", + "\n", + "$$P(spam \\ | \\ \\text{send money now}) = \\frac {P(\\text{send money now} \\ | \\ spam) \\times P(spam)} {P(\\text{send money now})}$$\n", + "\n", + "By assuming that the features (the words) are **conditionally independent**, we can simplify the likelihood function:\n", + "\n", + "$$P(spam \\ | \\ \\text{send money now}) \\approx \\frac {P(\\text{send} \\ | \\ spam) \\times P(\\text{money} \\ | \\ spam) \\times P(\\text{now} \\ | \\ spam) \\times P(spam)} {P(\\text{send money now})}$$\n", + "\n", + "We can calculate all of the values in the numerator by examining a corpus of **spam email**:\n", + "\n", + "$$P(spam \\ | \\ \\text{send money now}) \\approx \\frac {0.2 \\times 0.1 \\times 0.1 \\times 0.9} {P(\\text{send money now})} = \\frac {0.0018} {P(\\text{send money now})}$$\n", + "\n", + "We would repeat this process with a corpus of **ham email**:\n", + "\n", + "$$P(ham \\ | \\ \\text{send money now}) \\approx \\frac {0.05 \\times 0.01 \\times 0.1 \\times 0.1} {P(\\text{send money now})} = \\frac {0.000005} {P(\\text{send money now})}$$\n", + "\n", + "All we care about is whether spam or ham has the **higher probability**, and so we predict that the email is **spam**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Key takeaways\n", + "\n", + "- The **\"naive\" assumption** of Naive Bayes (that the features are conditionally independent) is critical to making these calculations simple.\n", + "- The **normalization constant** (the denominator) can be ignored since it's the same for all classes.\n", + "- The **prior probability** is much less relevant once you have a lot of features." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing Naive Bayes with other models\n", + "\n", + "Advantages of Naive Bayes:\n", + "\n", + "- Model training and prediction are very fast\n", + "- Somewhat interpretable\n", + "- No tuning is required\n", + "- Features don't need scaling\n", + "- Insensitive to irrelevant features (with enough observations)\n", + "- Performs better than logistic regression when the training set is very small\n", + "\n", + "Disadvantages of Naive Bayes:\n", + "\n", + "- Predicted probabilities are not well-calibrated\n", + "- Correlated features can be problematic (due to the independence assumption)\n", + "- Can't handle negative features (with Multinomial Naive Bayes)\n", + "- Has a higher \"asymptotic error\" than logistic regression" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/14_text_data_sklearn.ipynb b/notebooks/14_text_data_sklearn.ipynb new file mode 100644 index 0000000..38a2596 --- /dev/null +++ b/notebooks/14_text_data_sklearn.ipynb @@ -0,0 +1,2182 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Working with Text Data and Naive Bayes in scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "**Working with text data**\n", + "\n", + "- Representing text as data\n", + "- Reading SMS data\n", + "- Vectorizing SMS data\n", + "- Examining the tokens and their counts\n", + "- Bonus: Calculating the \"spamminess\" of each token\n", + "\n", + "**Naive Bayes classification**\n", + "\n", + "- Building a Naive Bayes model\n", + "- Comparing Naive Bayes with logistic regression" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Representing text as data\n", + "\n", + "From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction):\n", + "\n", + "> Text Analysis is a major application field for machine learning algorithms. However the raw data, a sequence of symbols cannot be fed directly to the algorithms themselves as most of them expect **numerical feature vectors with a fixed size** rather than the **raw text documents with variable length**.\n", + "\n", + "We will use [CountVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html) to \"convert text into a matrix of token counts\":" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# start with a simple example\n", + "simple_train = ['call you tonight', 'Call me a cab', 'please call me... PLEASE!']" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[u'cab', u'call', u'me', u'please', u'tonight', u'you']" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# learn the 'vocabulary' of the training data\n", + "vect = CountVectorizer()\n", + "vect.fit(simple_train)\n", + "vect.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<3x6 sparse matrix of type ''\n", + "\twith 9 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transform training data into a 'document-term matrix'\n", + "simple_train_dtm = vect.transform(simple_train)\n", + "simple_train_dtm" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " (0, 1)\t1\n", + " (0, 4)\t1\n", + " (0, 5)\t1\n", + " (1, 0)\t1\n", + " (1, 1)\t1\n", + " (1, 2)\t1\n", + " (2, 1)\t1\n", + " (2, 2)\t1\n", + " (2, 3)\t2\n" + ] + } + ], + "source": [ + "# print the sparse matrix\n", + "print simple_train_dtm" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 1, 0, 0, 1, 1],\n", + " [1, 1, 1, 0, 0, 0],\n", + " [0, 1, 1, 2, 0, 0]], dtype=int64)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert sparse matrix to a dense matrix\n", + "simple_train_dtm.toarray()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
0010011
1111000
2011200
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 0 1 0 0 1 1\n", + "1 1 1 1 0 0 0\n", + "2 0 1 1 2 0 0" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the vocabulary and document-term matrix together\n", + "import pandas as pd\n", + "pd.DataFrame(simple_train_dtm.toarray(), columns=vect.get_feature_names())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/feature_extraction.html#text-feature-extraction):\n", + "\n", + "> In this scheme, features and samples are defined as follows:\n", + "\n", + "> - Each individual token occurrence frequency (normalized or not) is treated as a **feature**.\n", + "> - The vector of all the token frequencies for a given document is considered a multivariate **sample**.\n", + "\n", + "> A **corpus of documents** can thus be represented by a matrix with **one row per document** and **one column per token** (e.g. word) occurring in the corpus.\n", + "\n", + "> We call **vectorization** the general process of turning a collection of text documents into numerical feature vectors. This specific strategy (tokenization, counting and normalization) is called the **Bag of Words** or \"Bag of n-grams\" representation. Documents are described by word occurrences while completely ignoring the relative position information of the words in the document." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 1, 1, 1, 0, 0]], dtype=int64)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transform testing data into a document-term matrix (using existing vocabulary)\n", + "simple_test = [\"please don't call me\"]\n", + "simple_test_dtm = vect.transform(simple_test)\n", + "simple_test_dtm.toarray()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
0011100
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 0 1 1 1 0 0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the vocabulary and document-term matrix together\n", + "pd.DataFrame(simple_test_dtm.toarray(), columns=vect.get_feature_names())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Summary:**\n", + "\n", + "- `vect.fit(train)` learns the vocabulary of the training data\n", + "- `vect.transform(train)` uses the fitted vocabulary to build a document-term matrix from the training data\n", + "- `vect.transform(test)` uses the fitted vocabulary to build a document-term matrix from the testing data (and ignores tokens it hasn't seen before)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Reading SMS data" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(5572, 2)\n" + ] + } + ], + "source": [ + "# read tab-separated file\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/sms.tsv'\n", + "col_names = ['label', 'message']\n", + "sms = pd.read_table(url, sep='\\t', header=None, names=col_names)\n", + "print sms.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
labelmessage
0hamGo until jurong point, crazy.. Available only ...
1hamOk lar... Joking wif u oni...
2spamFree entry in 2 a wkly comp to win FA Cup fina...
3hamU dun say so early hor... U c already then say...
4hamNah I don't think he goes to usf, he lives aro...
5spamFreeMsg Hey there darling it's been 3 week's n...
6hamEven my brother is not like to speak with me. ...
7hamAs per your request 'Melle Melle (Oru Minnamin...
8spamWINNER!! As a valued network customer you have...
9spamHad your mobile 11 months or more? U R entitle...
10hamI'm gonna be home soon and i don't want to tal...
11spamSIX chances to win CASH! From 100 to 20,000 po...
12spamURGENT! You have won a 1 week FREE membership ...
13hamI've been searching for the right words to tha...
14hamI HAVE A DATE ON SUNDAY WITH WILL!!
15spamXXXMobileMovieClub: To use your credit, click ...
16hamOh k...i'm watching here:)
17hamEh u remember how 2 spell his name... Yes i di...
18hamFine if thatÂ’s the way u feel. ThatÂ’s the way ...
19spamEngland v Macedonia - dont miss the goals/team...
\n", + "
" + ], + "text/plain": [ + " label message\n", + "0 ham Go until jurong point, crazy.. Available only ...\n", + "1 ham Ok lar... Joking wif u oni...\n", + "2 spam Free entry in 2 a wkly comp to win FA Cup fina...\n", + "3 ham U dun say so early hor... U c already then say...\n", + "4 ham Nah I don't think he goes to usf, he lives aro...\n", + "5 spam FreeMsg Hey there darling it's been 3 week's n...\n", + "6 ham Even my brother is not like to speak with me. ...\n", + "7 ham As per your request 'Melle Melle (Oru Minnamin...\n", + "8 spam WINNER!! As a valued network customer you have...\n", + "9 spam Had your mobile 11 months or more? U R entitle...\n", + "10 ham I'm gonna be home soon and i don't want to tal...\n", + "11 spam SIX chances to win CASH! From 100 to 20,000 po...\n", + "12 spam URGENT! You have won a 1 week FREE membership ...\n", + "13 ham I've been searching for the right words to tha...\n", + "14 ham I HAVE A DATE ON SUNDAY WITH WILL!!\n", + "15 spam XXXMobileMovieClub: To use your credit, click ...\n", + "16 ham Oh k...i'm watching here:)\n", + "17 ham Eh u remember how 2 spell his name... Yes i di...\n", + "18 ham Fine if thatÂ’s the way u feel. ThatÂ’s the way ...\n", + "19 spam England v Macedonia - dont miss the goals/team..." + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sms.head(20)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "ham 4825\n", + "spam 747\n", + "dtype: int64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sms.label.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# convert label to a numeric variable\n", + "sms['label'] = sms.label.map({'ham':0, 'spam':1})" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "X = sms.message\n", + "y = sms.label" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(4179L,)\n", + "(1393L,)\n" + ] + } + ], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)\n", + "print X_train.shape\n", + "print X_test.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Vectorizing SMS data" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# instantiate the vectorizer\n", + "vect = CountVectorizer()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<4179x7456 sparse matrix of type ''\n", + "\twith 55209 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# learn training data vocabulary, then create document-term matrix\n", + "vect.fit(X_train)\n", + "X_train_dtm = vect.transform(X_train)\n", + "X_train_dtm" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<4179x7456 sparse matrix of type ''\n", + "\twith 55209 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# alternative: combine fit and transform into a single step\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_train_dtm" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<1393x7456 sparse matrix of type ''\n", + "\twith 17604 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transform testing data (using fitted vocabulary) into a document-term matrix\n", + "X_test_dtm = vect.transform(X_test)\n", + "X_test_dtm" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4: Examining the tokens and their counts" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# store token names\n", + "X_train_tokens = vect.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'00', u'000', u'008704050406', u'0121', u'01223585236', u'01223585334', u'0125698789', u'02', u'0207', u'02072069400', u'02073162414', u'02085076972', u'021', u'03', u'04', u'0430', u'05', u'050703', u'0578', u'06', u'07', u'07008009200', u'07090201529', u'07090298926', u'07123456789', u'07732584351', u'07734396839', u'07742676969', u'0776xxxxxxx', u'07781482378', u'07786200117', u'078', u'07801543489', u'07808', u'07808247860', u'07808726822', u'07815296484', u'07821230901', u'07880867867', u'0789xxxxxxx', u'07946746291', u'0796xxxxxx', u'07973788240', u'07xxxxxxxxx', u'08', u'0800', u'08000407165', u'08000776320', u'08000839402', u'08000930705']\n" + ] + } + ], + "source": [ + "# first 50 tokens\n", + "print X_train_tokens[:50]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'yer', u'yes', u'yest', u'yesterday', u'yet', u'yetunde', u'yijue', u'ym', u'ymca', u'yo', u'yoga', u'yogasana', u'yor', u'yorge', u'you', u'youdoing', u'youi', u'youphone', u'your', u'youre', u'yourjob', u'yours', u'yourself', u'youwanna', u'yowifes', u'yoyyooo', u'yr', u'yrs', u'ything', u'yummmm', u'yummy', u'yun', u'yunny', u'yuo', u'yuou', u'yup', u'zac', u'zaher', u'zealand', u'zebra', u'zed', u'zeros', u'zhong', u'zindgi', u'zoe', u'zoom', u'zouk', u'zyada', u'\\xe8n', u'\\u3028ud']\n" + ] + } + ], + "source": [ + "# last 50 tokens\n", + "print X_train_tokens[-50:]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 0, 0, ..., 0, 0, 0],\n", + " [0, 0, 0, ..., 0, 0, 0],\n", + " [0, 0, 0, ..., 0, 0, 0],\n", + " ..., \n", + " [0, 0, 0, ..., 0, 0, 0],\n", + " [0, 0, 0, ..., 0, 0, 0],\n", + " [0, 0, 0, ..., 0, 0, 0]], dtype=int64)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# view X_train_dtm as a dense matrix\n", + "X_train_dtm.toarray()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 5, 23, 2, ..., 1, 1, 1], dtype=int64)" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# count how many times EACH token appears across ALL messages in X_train_dtm\n", + "import numpy as np\n", + "X_train_counts = np.sum(X_train_dtm.toarray(), axis=0)\n", + "X_train_counts" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(7456L,)" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train_counts.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + " \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", + "
counttoken
37271jules
41721mallika
41691malarky
41651makiing
41611maintaining
41581mails
41571mailed
41511magicalsongs
41501maggi
41491magazine
41461madodu
41431mad2
41421mad1
41401macs
41391macleran
41381mack
41741manage
41751manageable
41781manchester
41791manda
42011marking
42001marketing
41971marine
41961margin
41931marandratha
41921maraikara
41911maps
41361machi
41901mapquest
41871manual
.........
2290292do
7257293with
7120293we
6904297ur
1081298at
2995299get
3465302if
4778306or
1522332but
4647338not
6017344so
1574349can
1016358are
4662361now
4743390on
3235416have
1552443call
6539453that
4704460of
7424508your
2821518for
4489550my
3623568it
4238601me
3612679is
3502683in
929717and
65421004the
74201660you
66561670to
\n", + "

7456 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " count token\n", + "3727 1 jules\n", + "4172 1 mallika\n", + "4169 1 malarky\n", + "4165 1 makiing\n", + "4161 1 maintaining\n", + "4158 1 mails\n", + "4157 1 mailed\n", + "4151 1 magicalsongs\n", + "4150 1 maggi\n", + "4149 1 magazine\n", + "4146 1 madodu\n", + "4143 1 mad2\n", + "4142 1 mad1\n", + "4140 1 macs\n", + "4139 1 macleran\n", + "4138 1 mack\n", + "4174 1 manage\n", + "4175 1 manageable\n", + "4178 1 manchester\n", + "4179 1 manda\n", + "4201 1 marking\n", + "4200 1 marketing\n", + "4197 1 marine\n", + "4196 1 margin\n", + "4193 1 marandratha\n", + "4192 1 maraikara\n", + "4191 1 maps\n", + "4136 1 machi\n", + "4190 1 mapquest\n", + "4187 1 manual\n", + "... ... ...\n", + "2290 292 do\n", + "7257 293 with\n", + "7120 293 we\n", + "6904 297 ur\n", + "1081 298 at\n", + "2995 299 get\n", + "3465 302 if\n", + "4778 306 or\n", + "1522 332 but\n", + "4647 338 not\n", + "6017 344 so\n", + "1574 349 can\n", + "1016 358 are\n", + "4662 361 now\n", + "4743 390 on\n", + "3235 416 have\n", + "1552 443 call\n", + "6539 453 that\n", + "4704 460 of\n", + "7424 508 your\n", + "2821 518 for\n", + "4489 550 my\n", + "3623 568 it\n", + "4238 601 me\n", + "3612 679 is\n", + "3502 683 in\n", + "929 717 and\n", + "6542 1004 the\n", + "7420 1660 you\n", + "6656 1670 to\n", + "\n", + "[7456 rows x 2 columns]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a DataFrame of tokens with their counts\n", + "pd.DataFrame({'token':X_train_tokens, 'count':X_train_counts}).sort('count')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: Calculating the \"spamminess\" of each token" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create separate DataFrames for ham and spam\n", + "sms_ham = sms[sms.label==0]\n", + "sms_spam = sms[sms.label==1]" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# learn the vocabulary of ALL messages and save it\n", + "vect.fit(sms.message)\n", + "all_tokens = vect.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create document-term matrices for ham and spam\n", + "ham_dtm = vect.transform(sms_ham.message)\n", + "spam_dtm = vect.transform(sms_spam.message)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# count how many times EACH token appears across ALL ham messages\n", + "ham_counts = np.sum(ham_dtm.toarray(), axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# count how many times EACH token appears across ALL spam messages\n", + "spam_counts = np.sum(spam_dtm.toarray(), axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a DataFrame of tokens with their separate ham and spam counts\n", + "token_counts = pd.DataFrame({'token':all_tokens, 'ham':ham_counts, 'spam':spam_counts})" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# add one to ham and spam counts to avoid dividing by zero (in the step that follows)\n", + "token_counts['ham'] = token_counts.ham + 1\n", + "token_counts['spam'] = token_counts.spam + 1" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + " \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", + " \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", + " \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", + "
hamspamtokenspam_ratio
36843191gt0.003135
47933171lt0.003155
38052321he0.004310
68431681she0.005952
47471631lor0.006135
24281511da0.006623
45501361later0.007353
1247901ask0.011111
6626901said0.011111
2714891doing0.011236
1084891amp0.011236
5167801morning0.012500
21632313come0.012987
1142771anything0.012987
2289771cos0.012987
4724751lol0.013333
7463721sure0.013889
7099701something0.014286
3690681gud0.014706
3171631feel0.015873
8394631went0.015873
5371631nice0.015873
3595591gonna0.016949
7001591sleep0.016949
1064591always0.016949
525475513my0.017219
52171162much0.017241
55331152oh0.017391
2815561dun0.017857
39251663home0.018072
...............
1623122bonus22.000000
3994122http22.000000
6619122sae22.000000
735122800722.000000
73212380023.000000
5297123national23.000000
8375125weekly25.000000
8153125valid25.000000
30912510p25.000000
618126500026.000000
5117126mob26.000000
3642541627.000000
2150127collection27.000000
7838127tones27.000000
2963127entry27.000000
113000030.000000
8596399www33.000000
6525133ringtone33.000000
356135150ppm35.000000
8016275uk37.500000
1333139awarded39.000000
299142100042.000000
61714550045.000000
2371145cs45.000000
3688151guaranteed51.000000
3691521852.000000
7837161tone61.000000
352172150p72.000000
6113194prize94.000000
20671114claim114.000000
\n", + "

8713 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " ham spam token spam_ratio\n", + "3684 319 1 gt 0.003135\n", + "4793 317 1 lt 0.003155\n", + "3805 232 1 he 0.004310\n", + "6843 168 1 she 0.005952\n", + "4747 163 1 lor 0.006135\n", + "2428 151 1 da 0.006623\n", + "4550 136 1 later 0.007353\n", + "1247 90 1 ask 0.011111\n", + "6626 90 1 said 0.011111\n", + "2714 89 1 doing 0.011236\n", + "1084 89 1 amp 0.011236\n", + "5167 80 1 morning 0.012500\n", + "2163 231 3 come 0.012987\n", + "1142 77 1 anything 0.012987\n", + "2289 77 1 cos 0.012987\n", + "4724 75 1 lol 0.013333\n", + "7463 72 1 sure 0.013889\n", + "7099 70 1 something 0.014286\n", + "3690 68 1 gud 0.014706\n", + "3171 63 1 feel 0.015873\n", + "8394 63 1 went 0.015873\n", + "5371 63 1 nice 0.015873\n", + "3595 59 1 gonna 0.016949\n", + "7001 59 1 sleep 0.016949\n", + "1064 59 1 always 0.016949\n", + "5254 755 13 my 0.017219\n", + "5217 116 2 much 0.017241\n", + "5533 115 2 oh 0.017391\n", + "2815 56 1 dun 0.017857\n", + "3925 166 3 home 0.018072\n", + "... ... ... ... ...\n", + "1623 1 22 bonus 22.000000\n", + "3994 1 22 http 22.000000\n", + "6619 1 22 sae 22.000000\n", + "735 1 22 8007 22.000000\n", + "732 1 23 800 23.000000\n", + "5297 1 23 national 23.000000\n", + "8375 1 25 weekly 25.000000\n", + "8153 1 25 valid 25.000000\n", + "309 1 25 10p 25.000000\n", + "618 1 26 5000 26.000000\n", + "5117 1 26 mob 26.000000\n", + "364 2 54 16 27.000000\n", + "2150 1 27 collection 27.000000\n", + "7838 1 27 tones 27.000000\n", + "2963 1 27 entry 27.000000\n", + "1 1 30 000 30.000000\n", + "8596 3 99 www 33.000000\n", + "6525 1 33 ringtone 33.000000\n", + "356 1 35 150ppm 35.000000\n", + "8016 2 75 uk 37.500000\n", + "1333 1 39 awarded 39.000000\n", + "299 1 42 1000 42.000000\n", + "617 1 45 500 45.000000\n", + "2371 1 45 cs 45.000000\n", + "3688 1 51 guaranteed 51.000000\n", + "369 1 52 18 52.000000\n", + "7837 1 61 tone 61.000000\n", + "352 1 72 150p 72.000000\n", + "6113 1 94 prize 94.000000\n", + "2067 1 114 claim 114.000000\n", + "\n", + "[8713 rows x 4 columns]" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate ratio of spam-to-ham for each token\n", + "token_counts['spam_ratio'] = token_counts.spam / token_counts.ham\n", + "token_counts.sort('spam_ratio')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 5: Building a Naive Bayes model\n", + "\n", + "We will use [Multinomial Naive Bayes](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html):\n", + "\n", + "> The multinomial Naive Bayes classifier is suitable for classification with **discrete features** (e.g., word counts for text classification). The multinomial distribution normally requires integer feature counts. However, in practice, fractional counts such as tf-idf may also work." + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "MultinomialNB(alpha=1.0, class_prior=None, fit_prior=True)" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# train a Naive Bayes model using X_train_dtm\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "nb = MultinomialNB()\n", + "nb.fit(X_train_dtm, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# make class predictions for X_test_dtm\n", + "y_pred_class = nb.predict(X_test_dtm)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.988513998564\n" + ] + } + ], + "source": [ + "# calculate accuracy of class predictions\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1203 5]\n", + " [ 11 174]]\n" + ] + } + ], + "source": [ + "# confusion matrix\n", + "print metrics.confusion_matrix(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 2.87744864e-03, 1.83488846e-05, 2.07301295e-03, ...,\n", + " 1.09026171e-06, 1.00000000e+00, 3.98279868e-09])" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# predict (poorly calibrated) probabilities\n", + "y_pred_prob = nb.predict_proba(X_test_dtm)[:, 1]\n", + "y_pred_prob" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.986643100054\n" + ] + } + ], + "source": [ + "# calculate AUC\n", + "print metrics.roc_auc_score(y_test, y_pred_prob)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "574 Waiting for your call.\n", + "3375 Also andros ice etc etc\n", + "45 No calls..messages..missed calls\n", + "3415 No pic. Please re-send.\n", + "1988 No calls..messages..missed calls\n", + "Name: message, dtype: object" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print message text for the false positives\n", + "X_test[y_test < y_pred_class]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "3132 LookAtMe!: Thanks for your purchase of a video...\n", + "5 FreeMsg Hey there darling it's been 3 week's n...\n", + "3530 Xmas & New Years Eve tickets are now on sale f...\n", + "684 Hi I'm sue. I am 20 years old and work as a la...\n", + "1875 Would you like to see my XXX pics they are so ...\n", + "1893 CALL 09090900040 & LISTEN TO EXTREME DIRTY LIV...\n", + "4298 thesmszone.com lets you send free anonymous an...\n", + "4949 Hi this is Amy, we will be sending you a free ...\n", + "2821 INTERFLORA - “It's not too late to order Inter...\n", + "2247 Hi ya babe x u 4goten bout me?' scammers getti...\n", + "4514 Money i have won wining number 946 wot do i do...\n", + "Name: message, dtype: object" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print message text for the false negatives\n", + "X_test[y_test > y_pred_class]" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "\"LookAtMe!: Thanks for your purchase of a video clip from LookAtMe!, you've been charged 35p. Think you can do better? Why not send a video in a MMSto 32323.\"" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# what do you notice about the false negatives?\n", + "X_test[3132]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 6: Comparing Naive Bayes with logistic regression" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LogisticRegression(C=1000000000.0, class_weight=None, dual=False,\n", + " fit_intercept=True, intercept_scaling=1, max_iter=100,\n", + " multi_class='ovr', penalty='l2', random_state=None,\n", + " solver='liblinear', tol=0.0001, verbose=0)" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# import/instantiate/fit\n", + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train_dtm, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# class predictions and predicted probabilities\n", + "y_pred_class = logreg.predict(X_test_dtm)\n", + "y_pred_prob = logreg.predict_proba(X_test_dtm)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.989231873654\n", + "0.994144889923\n" + ] + } + ], + "source": [ + "# calculate accuracy and AUC\n", + "print metrics.accuracy_score(y_test, y_pred_class)\n", + "print metrics.roc_auc_score(y_test, y_pred_prob)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/14_types_of_naive_bayes.ipynb b/notebooks/14_types_of_naive_bayes.ipynb new file mode 100644 index 0000000..3ce55c9 --- /dev/null +++ b/notebooks/14_types_of_naive_bayes.ipynb @@ -0,0 +1,255 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Comparing Multinomial and Gaussian Naive Bayes\n", + "\n", + "scikit-learn documentation: [MultinomialNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.MultinomialNB.html) and [GaussianNB](http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.GaussianNB.html)\n", + "\n", + "Dataset: [Pima Indians Diabetes](https://archive.ics.uci.edu/ml/datasets/Pima+Indians+Diabetes) from the UCI Machine Learning Repository" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read the data\n", + "import pandas as pd\n", + "url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/pima-indians-diabetes/pima-indians-diabetes.data'\n", + "col_names = ['pregnant', 'glucose', 'bp', 'skin', 'insulin', 'bmi', 'pedigree', 'age', 'label']\n", + "pima = pd.read_csv(url, header=None, names=col_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
pregnantglucosebpskininsulinbmipedigreeagelabel
061487235033.60.627501
11856629026.60.351310
28183640023.30.672321
318966239428.10.167210
40137403516843.12.288331
\n", + "
" + ], + "text/plain": [ + " pregnant glucose bp skin insulin bmi pedigree age label\n", + "0 6 148 72 35 0 33.6 0.627 50 1\n", + "1 1 85 66 29 0 26.6 0.351 31 0\n", + "2 8 183 64 0 0 23.3 0.672 32 1\n", + "3 1 89 66 23 94 28.1 0.167 21 0\n", + "4 0 137 40 35 168 43.1 2.288 33 1" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# notice that all features are continuous\n", + "pima.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create X and y\n", + "X = pima.drop('label', axis=1)\n", + "y = pima.label" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# import both Multinomial and Gaussian Naive Bayes\n", + "from sklearn.naive_bayes import MultinomialNB, GaussianNB\n", + "from sklearn import metrics" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.541666666667\n" + ] + } + ], + "source": [ + "# testing accuracy of Multinomial Naive Bayes\n", + "mnb = MultinomialNB()\n", + "mnb.fit(X_train, y_train)\n", + "y_pred_class = mnb.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.791666666667\n" + ] + } + ], + "source": [ + "# testing accuracy of Gaussian Naive Bayes\n", + "gnb = GaussianNB()\n", + "gnb.fit(X_train, y_train)\n", + "y_pred_class = gnb.predict(X_test)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Conclusion:** When applying Naive Bayes classification to a dataset with **continuous features**, it is better to use Gaussian Naive Bayes than Multinomial Naive Bayes. The latter is suitable for datasets containing **discrete features** (e.g., word counts).\n", + "\n", + "Wikipedia has a short [description](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Gaussian_naive_Bayes) of Gaussian Naive Bayes, as well as an excellent [example](https://en.wikipedia.org/wiki/Naive_Bayes_classifier#Sex_classification) of its usage." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/14_yelp_review_text_homework.ipynb b/notebooks/14_yelp_review_text_homework.ipynb new file mode 100644 index 0000000..1cc5ffa --- /dev/null +++ b/notebooks/14_yelp_review_text_homework.ipynb @@ -0,0 +1,965 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Naive Bayes homework with Yelp review text" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1\n", + "\n", + "Read `yelp.csv` into a DataFrame." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunny
09yKzy9PApeiPPOUJEtnvkg2011-01-26fWKvX83p0-ka4JS3dc6E5A5My wife took me here on my birthday for breakf...reviewrLtl8ZkDX5vH5nAx9C3q5Q250
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "0 9yKzy9PApeiPPOUJEtnvkg 2011-01-26 fWKvX83p0-ka4JS3dc6E5A 5 \n", + "\n", + " text type \\\n", + "0 My wife took me here on my birthday for breakf... review \n", + "\n", + " user_id cool useful funny \n", + "0 rLtl8ZkDX5vH5nAx9C3q5Q 2 5 0 " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# access yelp.csv using a relative path\n", + "import pandas as pd\n", + "yelp = pd.read_csv('../data/yelp.csv')\n", + "yelp.head(1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 2\n", + "\n", + "Create a new DataFrame that only contains the 5-star and 1-star reviews." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# filter the DataFrame using an OR condition\n", + "yelp_best_worst = yelp[(yelp.stars==5) | (yelp.stars==1)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 3\n", + "\n", + "Split the new DataFrame into training and testing sets, using the review text as the only feature and the star rating as the response." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "X = yelp_best_worst.text\n", + "y = yelp_best_worst.stars" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 4\n", + "\n", + "Use CountVectorizer to create document-term matrices from X_train and X_test." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# import and instantiate the vectorizer\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "vect = CountVectorizer()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# fit and transform X_train, but only transform X_test\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_test_dtm = vect.transform(X_test)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 5\n", + "\n", + "Use Naive Bayes to predict the star rating for reviews in the testing set, and calculate the accuracy." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "MultinomialNB(alpha=1.0, class_prior=None, fit_prior=True)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# import/instantiate/fit\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "nb = MultinomialNB()\n", + "nb.fit(X_train_dtm, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# make class predictions\n", + "y_pred_class = nb.predict(X_test_dtm)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.918786692759\n" + ] + } + ], + "source": [ + "# calculate accuracy\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 6\n", + "\n", + "Calculate the AUC." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([5, 5, 5, 5, 5, 1, 1, 5, 5, 5], dtype=int64)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# y_test contains fives and ones, which will confuse the roc_auc_score function\n", + "y_test[:10].values" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1, 1, 1, 1, 1, 0, 0, 1, 1, 1])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create y_test_binary, which contains ones and zeros instead\n", + "import numpy as np\n", + "y_test_binary = np.where(y_test==5, 1, 0)\n", + "y_test_binary[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# predict class probabilities\n", + "y_pred_prob = nb.predict_proba(X_test_dtm)[:, 1]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.940353585141\n" + ] + } + ], + "source": [ + "# calculate the AUC using y_test_binary and y_pred_prob\n", + "print metrics.roc_auc_score(y_test_binary, y_pred_prob)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 7\n", + "\n", + "Plot the ROC curve." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot ROC curve using y_test_binary and y_pred_prob\n", + "fpr, tpr, thresholds = metrics.roc_curve(y_test_binary, y_pred_prob)\n", + "plt.plot(fpr, tpr)\n", + "plt.xlim([0.0, 1.0])\n", + "plt.ylim([0.0, 1.0])\n", + "plt.xlabel('False Positive Rate (1 - Specificity)')\n", + "plt.ylabel('True Positive Rate (Sensitivity)')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 8\n", + "\n", + "Print the confusion matrix, and calculate the sensitivity and specificity. Comment on the results." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[126 58]\n", + " [ 25 813]]\n" + ] + } + ], + "source": [ + "# print the confusion matrix\n", + "print metrics.confusion_matrix(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.9701670644391408" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate sensitivity\n", + "813 / float(813 + 25)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.6847826086956522" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate specificity\n", + "126 / float(126 + 58)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The model is having a much easier time detecting five-star reviews than one-star reviews." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 9\n", + "\n", + "Browse through the review text for some of the false positives and false negatives. Based on your knowledge of how Naive Bayes works, do you have any theories about why the model is incorrectly classifying these reviews?" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2175 This has to be the worst restaurant in terms o...\n", + "1781 If you like the stuck up Scottsdale vibe this ...\n", + "2674 I'm sorry to be what seems to be the lone one ...\n", + "9984 Went last night to Whore Foods to get basics t...\n", + "3392 I found Lisa G's while driving through phoenix...\n", + "8283 Don't know where I should start. Grand opening...\n", + "2765 Went last week, and ordered a dozen variety. I...\n", + "2839 Never Again,\\r\\nI brought my Mountain Bike in ...\n", + "321 My wife and I live around the corner, hadn't e...\n", + "1919 D-scust-ing.\n", + "Name: text, dtype: object" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# first 10 false positives (meaning they were incorrectly classified as 5-star reviews)\n", + "X_test[y_test < y_pred_class][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "\"If you like the stuck up Scottsdale vibe this is a good place for you. The food isn't impressive. Nice outdoor seating.\"" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# false positive: model is reacting to the words \"good\", \"impressive\", \"nice\"\n", + "X_test[1781]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "\"Went last night to Whore Foods to get basics to make pizza with, most clutch to the process was a three pack of yeast. Low and behold, the dirty hippie kids they have working there again didn't put something in the bag.\\r\\n\\r\\nAnd this time it was the yeast.\\r\\n\\r\\nI love the food there, but the employees are nothing more than entitled hippie kids from Scottsdale who can't be bothered to do their goddamn jobs! I am so sick of this crap with this corporation. Maybe its a Phoenix thing, or maybe its the hiring and firing processes of Whore Foods, but I am done shopping at any Whore Foods. In a place like Phoenix, where you have alternatives such as Sprouts, you'd think Whore Foods would smarten up.\\r\\n\\r\\nOr when you try to ask someone who works here where something is, and they just walk by with their nose high in the air. I understand its important to show your fellow dirt merchants that you're a super star, but I don't work with you, I contribute to your salary and over inflated set of benefits for a grocery clerk, so do your goddamn job. Useless little girl in need of a shower and orthodontist. \\r\\n\\r\\nBut alas, Whore Foods and its dirty hippie employees have alienated yet another person with a job and a degree into hating everything that place stands for.\\r\\n\\r\\nOh yea, one other thing, take the concealed firearm prohibition off of your stores. It didn't stop Jared Loughner from doing something horrid, and all it does is alienate law abiding citizens from their Constitutional rights. I understand you think that only parts of the Constitution should apply, but honestly I think you need to pull your collective heads out of your ass and take a shower.\\r\\n\\r\\nUseless motherf*&#$@s!\"" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# false positive: model had likely never seen many of these words in the training data\n", + "X_test[9984]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'D-scust-ing.'" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# false positive: model does not have enough data to work with\n", + "X_test[1919]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "7148 I now consider myself an Arizonian. If you dri...\n", + "4963 This is by far my favourite department store, ...\n", + "6318 Since I have ranted recently on poor customer ...\n", + "380 This is a must try for any Mani Pedi fan. I us...\n", + "5565 I`ve had work done by this shop a few times th...\n", + "3448 I was there last week with my sisters and whil...\n", + "6050 I went to sears today to check on a layaway th...\n", + "2504 I've passed by prestige nails in walmart 100s ...\n", + "2475 This place is so great! I am a nanny and had t...\n", + "241 I was sad to come back to lai lai's and they n...\n", + "Name: text, dtype: object" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# first 10 false negatives (meaning they were incorrectly classified as 1-star reviews)\n", + "X_test[y_test > y_pred_class][:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'This is by far my favourite department store, hands down. I have had nothing but perfect experiences in this store, without exception, no matter what department I\\'m in. The shoe SA\\'s will bend over backwards to help you find a specific shoe, and the staff will even go so far as to send out hand-written thank you cards to your home address after you make a purchase - big or small. Tim & Anthony in the shoe salon are fabulous beyond words! \\r\\n\\r\\nI am not completely sure that I understand why people complain about the amount of merchandise on the floor or the lack of crowds in this store. Frankly, I would rather not be bombarded with merchandise and other people. One of the things I love the most about Barney\\'s is not only the prompt attention of SA\\'s, but the fact that they aren\\'t rushing around trying to help 35 people at once. The SA\\'s at Barney\\'s are incredibly friendly and will stop to have an actual conversation, regardless or whether you are purchasing something or not. I have also never experienced a \"high pressure\" sale situation here.\\r\\n\\r\\nAll in all, Barneys is pricey, and there is no getting around it. But, um, so is Neiman\\'s and that place is a crock. Anywhere that ONLY accepts American Express or their charge card and then treats you like scum if you aren\\'t carrying neither is no place that I want to spend my hard earned dollars. Yay Barneys!'" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# false negative: model is reacting to the words \"complain\", \"crowds\", \"rushing\", \"pricey\", \"scum\"\n", + "X_test[4963]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 10\n", + "\n", + "Let's pretend that you want to balance sensitivity and specificity. You can achieve this by changing the threshold for predicting a 5-star review. What threshold approximately balances sensitivity and specificity?" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a list that will store the results of the process below\n", + "results = []\n", + "\n", + "# loop through the thresholds returned by the metrics.roc_curve function\n", + "for threshold in thresholds:\n", + " \n", + " # make a class prediction of 5 if the predicted probability is higher than the threshold\n", + " y_pred_class = np.where(y_pred_prob > threshold, 5, 1)\n", + " \n", + " # generate the confusion matrix and slice it into four pieces\n", + " confusion = metrics.confusion_matrix(y_test, y_pred_class)\n", + " TP = confusion[1][1]\n", + " TN = confusion[0][0]\n", + " FP = confusion[0][1]\n", + " FN = confusion[1][0]\n", + " \n", + " # calculate the sensitivity and specificity\n", + " sensitivity = TP / float(TP + FN)\n", + " specificity = TN / float(TN + FP)\n", + " \n", + " # calculate the absolute difference between sensitivity and specificity\n", + " difference = np.absolute(sensitivity - specificity)\n", + " \n", + " # append a tuple to the results list\n", + " results.append((difference, sensitivity, specificity, threshold))" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(0.0002983293556085842, 0.87470167064439142, 0.875, 0.99855196916444533)" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# locate the minimum difference (at which sensitivity and specificity are balanced)\n", + "min(results)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "At a threshold of approximately **0.9986**, the sensitivity and specificity are both approximately **0.875**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 10 (alternative solution)\n", + "\n", + "This solution simplifies the for loop by utilizing the \"fpr\" and \"tpr\" objects returned by the `metrics.roc_curve` function." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a list that will store the results of the process below\n", + "results = []\n", + "\n", + "# loop through the thresholds returned by the metrics.roc_curve function (skipping the first threshold)\n", + "for threshold in thresholds[1:]:\n", + " \n", + " # calculate the sensitivity and specificity\n", + " sensitivity = tpr[thresholds > threshold][-1]\n", + " specificity = 1 - fpr[thresholds > threshold][-1]\n", + " \n", + " # calculate the absolute difference between sensitivity and specificity\n", + " difference = np.absolute(sensitivity - specificity)\n", + " \n", + " # append a tuple to the results list\n", + " results.append((difference, sensitivity, specificity, threshold))" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(0.0002983293556085842, 0.87470167064439142, 0.875, 0.99855196916444533)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# locate the minimum difference (at which sensitivity and specificity are balanced)\n", + "min(results)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 11\n", + "\n", + "Let's see how well Naive Bayes performs when all reviews are included, rather than just 1-star and 5-star reviews:\n", + "\n", + "- Define X and y using the original DataFrame from step 1. (y should contain 5 different classes.)\n", + "- Split the data into training and testing sets.\n", + "- Calculate the testing accuracy of a Naive Bayes model.\n", + "- Compare the testing accuracy with the null accuracy.\n", + "- Print the confusion matrix.\n", + "- Comment on the results." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y using the original DataFrame\n", + "X = yelp.text\n", + "y = yelp.stars" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create document-term matrices\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_test_dtm = vect.transform(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "MultinomialNB(alpha=1.0, class_prior=None, fit_prior=True)" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a Naive Bayes model\n", + "nb.fit(X_train_dtm, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# make class predictions\n", + "y_pred_class = nb.predict(X_test_dtm)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.4712\n" + ] + } + ], + "source": [ + "# calculate the testing accuary\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "4 0.3536\n", + "dtype: float64" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate the null accuracy\n", + "y_test.value_counts().head(1) / len(y_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 55 14 24 65 27]\n", + " [ 28 16 41 122 27]\n", + " [ 5 7 35 281 37]\n", + " [ 7 0 16 629 232]\n", + " [ 6 4 6 373 443]]\n" + ] + } + ], + "source": [ + "# print the confusion matrix\n", + "print metrics.confusion_matrix(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Comments:\n", + "\n", + "- Nearly all 4-star and 5-star reviews are classified as 4 or 5 stars, but they are hard for the model to distinguish between.\n", + "- 1-star, 2-star, and 3-star reviews are often classified as 4 stars, probably because it's the predominant class in the training data.\n", + "- When the model predicts 1 or 2 stars, it's usually correct.\n", + "- 47% accuracy is relatively impressive, given that humans would also have a hard time precisely identifying the star rating for many of these reviews." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/15_natural_language_processing.ipynb b/notebooks/15_natural_language_processing.ipynb new file mode 100644 index 0000000..d66c2b6 --- /dev/null +++ b/notebooks/15_natural_language_processing.ipynb @@ -0,0 +1,2105 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Natural Language Processing (NLP)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "*Adapted from [NLP Crash Course](http://files.meetup.com/7616132/DC-NLP-2013-09%20Charlie%20Greenbacker.pdf) by Charlie Greenbacker and [Introduction to NLP](http://spark-public.s3.amazonaws.com/nlp/slides/intro.pdf) by Dan Jurafsky*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is NLP?\n", + "\n", + "- Using computers to process (analyze, understand, generate) natural human languages\n", + "- Most knowledge created by humans is unstructured text, and we need a way to make sense of it\n", + "- Build probabilistic model using data about a language" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What are some of the higher level task areas?\n", + "\n", + "- **Information retrieval**: Find relevant results and similar results\n", + " - [Google](https://www.google.com/)\n", + "- **Information extraction**: Structured information from unstructured documents\n", + " - [Events from Gmail](https://support.google.com/calendar/answer/6084018?hl=en)\n", + "- **Machine translation**: One language to another\n", + " - [Google Translate](https://translate.google.com/)\n", + "- **Text simplification**: Preserve the meaning of text, but simplify the grammar and vocabulary\n", + " - [Rewordify](https://rewordify.com/)\n", + " - [Simple English Wikipedia](https://simple.wikipedia.org/wiki/Main_Page)\n", + "- **Predictive text input**: Faster or easier typing\n", + " - [My application](https://justmarkham.shinyapps.io/textprediction/)\n", + " - [A much better application](https://farsite.shinyapps.io/swiftkey-cap/)\n", + "- **Sentiment analysis**: Attitude of speaker\n", + " - [Hater News](http://haternews.herokuapp.com/)\n", + "- **Automatic summarization**: Extractive or abstractive summarization\n", + " - [autotldr](https://www.reddit.com/r/technology/comments/35brc8/21_million_people_still_use_aol_dialup/cr2zzj0)\n", + "- **Natural Language Generation**: Generate text from data\n", + " - [How a computer describes a sports match](http://www.bbc.com/news/technology-34204052)\n", + " - [Publishers withdraw more than 120 gibberish papers](http://www.nature.com/news/publishers-withdraw-more-than-120-gibberish-papers-1.14763)\n", + "- **Speech recognition and generation**: Speech-to-text, text-to-speech\n", + " - [Google's Web Speech API demo](https://www.google.com/intl/en/chrome/demos/speech.html)\n", + " - [Vocalware Text-to-Speech demo](https://www.vocalware.com/index/demo)\n", + "- **Question answering**: Determine the intent of the question, match query with knowledge base, evaluate hypotheses\n", + " - [How did supercomputer Watson beat Jeopardy champion Ken Jennings?](http://blog.ted.com/how-did-supercomputer-watson-beat-jeopardy-champion-ken-jennings-experts-discuss/)\n", + " - [IBM's Watson Trivia Challenge](http://www.nytimes.com/interactive/2010/06/16/magazine/watson-trivia-game.html)\n", + " - [The AI Behind Watson](http://www.aaai.org/Magazine/Watson/watson.php)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What are some of the lower level components?\n", + "\n", + "- **Tokenization**: breaking text into tokens (words, sentences, n-grams)\n", + "- **Stopword removal**: a/an/the\n", + "- **Stemming and lemmatization**: root word\n", + "- **TF-IDF**: word importance\n", + "- **Part-of-speech tagging**: noun/verb/adjective\n", + "- **Named entity recognition**: person/organization/location\n", + "- **Spelling correction**: \"New Yrok City\"\n", + "- **Word sense disambiguation**: \"buy a mouse\"\n", + "- **Segmentation**: \"New York City subway\"\n", + "- **Language detection**: \"translate this page\"\n", + "- **Machine learning**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Why is NLP hard?\n", + "\n", + "- **Ambiguity**:\n", + " - Hospitals are Sued by 7 Foot Doctors\n", + " - Juvenile Court to Try Shooting Defendant\n", + " - Local High School Dropouts Cut in Half\n", + "- **Non-standard English**: text messages\n", + "- **Idioms**: \"throw in the towel\"\n", + "- **Newly coined words**: \"retweet\"\n", + "- **Tricky entity names**: \"Where is A Bug's Life playing?\"\n", + "- **World knowledge**: \"Mary and Sue are sisters\", \"Mary and Sue are mothers\"\n", + "\n", + "NLP requires an understanding of the **language** and the **world**." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Reading in the Yelp Reviews" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- \"corpus\" = collection of documents\n", + "- \"corpora\" = plural form of corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import scipy as sp\n", + "from sklearn.cross_validation import train_test_split\n", + "from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn import metrics\n", + "from textblob import TextBlob, Word\n", + "from nltk.stem.snowball import SnowballStemmer\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# read yelp.csv into a DataFrame\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/yelp.csv'\n", + "yelp = pd.read_csv(url)\n", + "\n", + "# create a new DataFrame that only contains the 5-star and 1-star reviews\n", + "yelp_best_worst = yelp[(yelp.stars==5) | (yelp.stars==1)]\n", + "\n", + "# define X and y\n", + "X = yelp_best_worst.text\n", + "y = yelp_best_worst.stars\n", + "\n", + "# split the new DataFrame into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Tokenization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **What:** Separate text into units such as sentences or words\n", + "- **Why:** Gives structure to previously unstructured text\n", + "- **Notes:** Relatively easy with English language text, not easy with some languages" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# use CountVectorizer to create document-term matrices from X_train and X_test\n", + "vect = CountVectorizer()\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_test_dtm = vect.transform(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 16825)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# rows are documents, columns are terms (aka \"tokens\" or \"features\")\n", + "X_train_dtm.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'yyyyy', u'z11', u'za', u'zabba', u'zach', u'zam', u'zanella', u'zankou', u'zappos', u'zatsiki', u'zen', u'zero', u'zest', u'zexperience', u'zha', u'zhou', u'zia', u'zihuatenejo', u'zilch', u'zin', u'zinburger', u'zinburgergeist', u'zinc', u'zinfandel', u'zing', u'zip', u'zipcar', u'zipper', u'zippers', u'zipps', u'ziti', u'zoe', u'zombi', u'zombies', u'zone', u'zones', u'zoning', u'zoo', u'zoyo', u'zucca', u'zucchini', u'zuchinni', u'zumba', u'zupa', u'zuzu', u'zwiebel', u'zzed', u'\\xe9clairs', u'\\xe9cole', u'\\xe9m']\n" + ] + } + ], + "source": [ + "# last 50 features\n", + "print vect.get_feature_names()[-50:]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "CountVectorizer(analyzer=u'word', binary=False, decode_error=u'strict',\n", + " dtype=, encoding=u'utf-8', input=u'content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 1), preprocessor=None, stop_words=None,\n", + " strip_accents=None, token_pattern=u'(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " tokenizer=None, vocabulary=None)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show vectorizer options\n", + "vect" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[CountVectorizer documentation](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **lowercase:** boolean, True by default\n", + "- Convert all characters to lowercase before tokenizing." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 20838)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# don't convert to lowercase\n", + "vect = CountVectorizer(lowercase=False)\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_train_dtm.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **ngram_range:** tuple (min_n, max_n)\n", + "- The lower and upper boundary of the range of n-values for different n-grams to be extracted. All values of n such that min_n <= n <= max_n will be used." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 169847)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# include 1-grams and 2-grams\n", + "vect = CountVectorizer(ngram_range=(1, 2))\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_train_dtm.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'zone out', u'zone when', u'zones', u'zones dolls', u'zoning', u'zoning issues', u'zoo', u'zoo and', u'zoo is', u'zoo not', u'zoo the', u'zoo ve', u'zoyo', u'zoyo for', u'zucca', u'zucca appetizer', u'zucchini', u'zucchini and', u'zucchini bread', u'zucchini broccoli', u'zucchini carrots', u'zucchini fries', u'zucchini pieces', u'zucchini strips', u'zucchini veal', u'zucchini very', u'zucchini with', u'zuchinni', u'zuchinni again', u'zuchinni the', u'zumba', u'zumba class', u'zumba or', u'zumba yogalates', u'zupa', u'zupa flavors', u'zuzu', u'zuzu in', u'zuzu is', u'zuzu the', u'zwiebel', u'zwiebel kr\\xe4uter', u'zzed', u'zzed in', u'\\xe9clairs', u'\\xe9clairs napoleons', u'\\xe9cole', u'\\xe9cole len\\xf4tre', u'\\xe9m', u'\\xe9m all']\n" + ] + } + ], + "source": [ + "# last 50 features\n", + "print vect.get_feature_names()[-50:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Predicting the star rating:**" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.918786692759\n" + ] + } + ], + "source": [ + "# use default options for CountVectorizer\n", + "vect = CountVectorizer()\n", + "\n", + "# create document-term matrices\n", + "X_train_dtm = vect.fit_transform(X_train)\n", + "X_test_dtm = vect.transform(X_test)\n", + "\n", + "# use Naive Bayes to predict the star rating\n", + "nb = MultinomialNB()\n", + "nb.fit(X_train_dtm, y_train)\n", + "y_pred_class = nb.predict(X_test_dtm)\n", + "\n", + "# calculate accuracy\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.81996086105675148" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate null accuracy\n", + "y_test_binary = np.where(y_test==5, 1, 0)\n", + "max(y_test_binary.mean(), 1 - y_test_binary.mean())" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a function that accepts a vectorizer and calculates the accuracy\n", + "def tokenize_test(vect):\n", + " X_train_dtm = vect.fit_transform(X_train)\n", + " print 'Features: ', X_train_dtm.shape[1]\n", + " X_test_dtm = vect.transform(X_test)\n", + " nb = MultinomialNB()\n", + " nb.fit(X_train_dtm, y_train)\n", + " y_pred_class = nb.predict(X_test_dtm)\n", + " print 'Accuracy: ', metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 169847\n", + "Accuracy: 0.854207436399\n" + ] + } + ], + "source": [ + "# include 1-grams and 2-grams\n", + "vect = CountVectorizer(ngram_range=(1, 2))\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Stopword Removal" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **What:** Remove common words that will likely appear in any text\n", + "- **Why:** They don't tell you much about your text" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "CountVectorizer(analyzer=u'word', binary=False, decode_error=u'strict',\n", + " dtype=, encoding=u'utf-8', input=u'content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), preprocessor=None, stop_words=None,\n", + " strip_accents=None, token_pattern=u'(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " tokenizer=None, vocabulary=None)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show vectorizer options\n", + "vect" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **stop_words:** string {'english'}, list, or None (default)\n", + "- If 'english', a built-in stop word list for English is used.\n", + "- If a list, that list is assumed to contain stop words, all of which will be removed from the resulting tokens.\n", + "- If None, no stop words will be used. max_df can be set to a value in the range [0.7, 1.0) to automatically detect and filter stop words based on intra corpus document frequency of terms." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 16528\n", + "Accuracy: 0.915851272016\n" + ] + } + ], + "source": [ + "# remove English stop words\n", + "vect = CountVectorizer(stop_words='english')\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "frozenset(['all', 'six', 'less', 'being', 'indeed', 'over', 'move', 'anyway', 'four', 'not', 'own', 'through', 'yourselves', 'fify', 'where', 'mill', 'only', 'find', 'before', 'one', 'whose', 'system', 'how', 'somewhere', 'with', 'thick', 'show', 'had', 'enough', 'should', 'to', 'must', 'whom', 'seeming', 'under', 'ours', 'has', 'might', 'thereafter', 'latterly', 'do', 'them', 'his', 'around', 'than', 'get', 'very', 'de', 'none', 'cannot', 'every', 'whether', 'they', 'front', 'during', 'thus', 'now', 'him', 'nor', 'name', 'several', 'hereafter', 'always', 'who', 'cry', 'whither', 'this', 'someone', 'either', 'each', 'become', 'thereupon', 'sometime', 'side', 'two', 'therein', 'twelve', 'because', 'often', 'ten', 'our', 'eg', 'some', 'back', 'up', 'go', 'namely', 'towards', 'are', 'further', 'beyond', 'ourselves', 'yet', 'out', 'even', 'will', 'what', 'still', 'for', 'bottom', 'mine', 'since', 'please', 'forty', 'per', 'its', 'everything', 'behind', 'un', 'above', 'between', 'it', 'neither', 'seemed', 'ever', 'across', 'she', 'somehow', 'be', 'we', 'full', 'never', 'sixty', 'however', 'here', 'otherwise', 'were', 'whereupon', 'nowhere', 'although', 'found', 'alone', 're', 'along', 'fifteen', 'by', 'both', 'about', 'last', 'would', 'anything', 'via', 'many', 'could', 'thence', 'put', 'against', 'keep', 'etc', 'amount', 'became', 'ltd', 'hence', 'onto', 'or', 'con', 'among', 'already', 'co', 'afterwards', 'formerly', 'within', 'seems', 'into', 'others', 'while', 'whatever', 'except', 'down', 'hers', 'everyone', 'done', 'least', 'another', 'whoever', 'moreover', 'couldnt', 'throughout', 'anyhow', 'yourself', 'three', 'from', 'her', 'few', 'together', 'top', 'there', 'due', 'been', 'next', 'anyone', 'eleven', 'much', 'call', 'therefore', 'interest', 'then', 'thru', 'themselves', 'hundred', 'was', 'sincere', 'empty', 'more', 'himself', 'elsewhere', 'mostly', 'on', 'fire', 'am', 'becoming', 'hereby', 'amongst', 'else', 'part', 'everywhere', 'too', 'herself', 'former', 'those', 'he', 'me', 'myself', 'made', 'twenty', 'these', 'bill', 'cant', 'us', 'until', 'besides', 'nevertheless', 'below', 'anywhere', 'nine', 'can', 'of', 'toward', 'my', 'something', 'and', 'whereafter', 'whenever', 'give', 'almost', 'wherever', 'is', 'describe', 'beforehand', 'herein', 'an', 'as', 'itself', 'at', 'have', 'in', 'seem', 'whence', 'ie', 'any', 'fill', 'again', 'hasnt', 'inc', 'thereby', 'thin', 'no', 'perhaps', 'latter', 'meanwhile', 'when', 'detail', 'same', 'wherein', 'beside', 'also', 'that', 'other', 'take', 'which', 'becomes', 'you', 'if', 'nobody', 'see', 'though', 'may', 'after', 'upon', 'most', 'hereupon', 'eight', 'but', 'serious', 'nothing', 'such', 'your', 'why', 'a', 'off', 'whereby', 'third', 'i', 'whole', 'noone', 'sometimes', 'well', 'amoungst', 'yours', 'their', 'rather', 'without', 'so', 'five', 'the', 'first', 'whereas', 'once'])\n" + ] + } + ], + "source": [ + "# set of stop words\n", + "print vect.get_stop_words()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4: Other CountVectorizer Options" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **max_features:** int or None, default=None\n", + "- If not None, build a vocabulary that only consider the top max_features ordered by term frequency across the corpus." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 100\n", + "Accuracy: 0.869863013699\n" + ] + } + ], + "source": [ + "# remove English stop words and only keep 100 features\n", + "vect = CountVectorizer(stop_words='english', max_features=100)\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'amazing', u'area', u'atmosphere', u'awesome', u'bad', u'bar', u'best', u'better', u'big', u'came', u'cheese', u'chicken', u'clean', u'coffee', u'come', u'day', u'definitely', u'delicious', u'did', u'didn', u'dinner', u'don', u'eat', u'excellent', u'experience', u'favorite', u'feel', u'food', u'free', u'fresh', u'friendly', u'friends', u'going', u'good', u'got', u'great', u'happy', u'home', u'hot', u'hour', u'just', u'know', u'like', u'little', u'll', u'location', u'long', u'looking', u'lot', u'love', u'lunch', u'make', u'meal', u'menu', u'minutes', u'need', u'new', u'nice', u'night', u'order', u'ordered', u'people', u'perfect', u'phoenix', u'pizza', u'place', u'pretty', u'prices', u'really', u'recommend', u'restaurant', u'right', u'said', u'salad', u'sandwich', u'sauce', u'say', u'service', u'staff', u'store', u'sure', u'table', u'thing', u'things', u'think', u'time', u'times', u'took', u'town', u'tried', u'try', u've', u'wait', u'want', u'way', u'went', u'wine', u'work', u'worth', u'years']\n" + ] + } + ], + "source": [ + "# all 100 features\n", + "print vect.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 100000\n", + "Accuracy: 0.885518590998\n" + ] + } + ], + "source": [ + "# include 1-grams and 2-grams, and limit the number of features\n", + "vect = CountVectorizer(ngram_range=(1, 2), max_features=100000)\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **min_df:** float in range [0.0, 1.0] or int, default=1\n", + "- When building the vocabulary ignore terms that have a document frequency strictly lower than the given threshold. This value is also called cut-off in the literature. If float, the parameter represents a proportion of documents, integer absolute counts." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 43957\n", + "Accuracy: 0.932485322896\n" + ] + } + ], + "source": [ + "# include 1-grams and 2-grams, and only include terms that appear at least 2 times\n", + "vect = CountVectorizer(ngram_range=(1, 2), min_df=2)\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 5: Introduction to TextBlob" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "TextBlob: \"Simplified Text Processing\"" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "My wife took me here on my birthday for breakfast and it was excellent. The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning. It looked like the place fills up pretty quickly so the earlier you get here the better.\n", + "\n", + "Do yourself a favor and get their Bloody Mary. It was phenomenal and simply the best I've ever had. I'm pretty sure they only use ingredients from their garden and blend them fresh when you order it. It was amazing.\n", + "\n", + "While EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. It was the best \"toast\" I've ever had.\n", + "\n", + "Anyway, I can't wait to go back!\n" + ] + } + ], + "source": [ + "# print the first review\n", + "print yelp_best_worst.text[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# save it as a TextBlob object\n", + "review = TextBlob(yelp_best_worst.text[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "WordList(['My', 'wife', 'took', 'me', 'here', 'on', 'my', 'birthday', 'for', 'breakfast', 'and', 'it', 'was', 'excellent', 'The', 'weather', 'was', 'perfect', 'which', 'made', 'sitting', 'outside', 'overlooking', 'their', 'grounds', 'an', 'absolute', 'pleasure', 'Our', 'waitress', 'was', 'excellent', 'and', 'our', 'food', 'arrived', 'quickly', 'on', 'the', 'semi-busy', 'Saturday', 'morning', 'It', 'looked', 'like', 'the', 'place', 'fills', 'up', 'pretty', 'quickly', 'so', 'the', 'earlier', 'you', 'get', 'here', 'the', 'better', 'Do', 'yourself', 'a', 'favor', 'and', 'get', 'their', 'Bloody', 'Mary', 'It', 'was', 'phenomenal', 'and', 'simply', 'the', 'best', 'I', \"'ve\", 'ever', 'had', 'I', \"'m\", 'pretty', 'sure', 'they', 'only', 'use', 'ingredients', 'from', 'their', 'garden', 'and', 'blend', 'them', 'fresh', 'when', 'you', 'order', 'it', 'It', 'was', 'amazing', 'While', 'EVERYTHING', 'on', 'the', 'menu', 'looks', 'excellent', 'I', 'had', 'the', 'white', 'truffle', 'scrambled', 'eggs', 'vegetable', 'skillet', 'and', 'it', 'was', 'tasty', 'and', 'delicious', 'It', 'came', 'with', '2', 'pieces', 'of', 'their', 'griddled', 'bread', 'with', 'was', 'amazing', 'and', 'it', 'absolutely', 'made', 'the', 'meal', 'complete', 'It', 'was', 'the', 'best', 'toast', 'I', \"'ve\", 'ever', 'had', 'Anyway', 'I', 'ca', \"n't\", 'wait', 'to', 'go', 'back'])" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list the words\n", + "review.words" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[Sentence(\"My wife took me here on my birthday for breakfast and it was excellent.\"),\n", + " Sentence(\"The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure.\"),\n", + " Sentence(\"Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning.\"),\n", + " Sentence(\"It looked like the place fills up pretty quickly so the earlier you get here the better.\"),\n", + " Sentence(\"Do yourself a favor and get their Bloody Mary.\"),\n", + " Sentence(\"It was phenomenal and simply the best I've ever had.\"),\n", + " Sentence(\"I'm pretty sure they only use ingredients from their garden and blend them fresh when you order it.\"),\n", + " Sentence(\"It was amazing.\"),\n", + " Sentence(\"While EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious.\"),\n", + " Sentence(\"It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete.\"),\n", + " Sentence(\"It was the best \"toast\" I've ever had.\"),\n", + " Sentence(\"Anyway, I can't wait to go back!\")]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list the sentences\n", + "review.sentences" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "TextBlob(\"my wife took me here on my birthday for breakfast and it was excellent. the weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. our waitress was excellent and our food arrived quickly on the semi-busy saturday morning. it looked like the place fills up pretty quickly so the earlier you get here the better.\n", + "\n", + "do yourself a favor and get their bloody mary. it was phenomenal and simply the best i've ever had. i'm pretty sure they only use ingredients from their garden and blend them fresh when you order it. it was amazing.\n", + "\n", + "while everything on the menu looks excellent, i had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. it came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. it was the best \"toast\" i've ever had.\n", + "\n", + "anyway, i can't wait to go back!\")" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# some string methods are available\n", + "review.lower()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 6: Stemming and Lemmatization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Stemming:**\n", + "\n", + "- **What:** Reduce a word to its base/stem/root form\n", + "- **Why:** Often makes sense to treat related words the same way\n", + "- **Notes:**\n", + " - Uses a \"simple\" and fast rule-based approach\n", + " - Stemmed words are usually not shown to users (used for analysis/indexing)\n", + " - Some search engines treat words with the same stem as synonyms" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'my', u'wife', u'took', u'me', u'here', u'on', u'my', u'birthday', u'for', u'breakfast', u'and', u'it', u'was', u'excel', u'the', u'weather', u'was', u'perfect', u'which', u'made', u'sit', u'outsid', u'overlook', u'their', u'ground', u'an', u'absolut', u'pleasur', u'our', u'waitress', u'was', u'excel', u'and', u'our', u'food', u'arriv', u'quick', u'on', u'the', u'semi-busi', u'saturday', u'morn', u'it', u'look', u'like', u'the', u'place', u'fill', u'up', u'pretti', u'quick', u'so', u'the', u'earlier', u'you', u'get', u'here', u'the', u'better', u'do', u'yourself', u'a', u'favor', u'and', u'get', u'their', u'bloodi', u'mari', u'it', u'was', u'phenomen', u'and', u'simpli', u'the', u'best', u'i', u've', u'ever', u'had', u'i', u\"'m\", u'pretti', u'sure', u'they', u'onli', u'use', u'ingredi', u'from', u'their', u'garden', u'and', u'blend', u'them', u'fresh', u'when', u'you', u'order', u'it', u'it', u'was', u'amaz', u'while', u'everyth', u'on', u'the', u'menu', u'look', u'excel', u'i', u'had', u'the', u'white', u'truffl', u'scrambl', u'egg', u'veget', u'skillet', u'and', u'it', u'was', u'tasti', u'and', u'delici', u'it', u'came', u'with', u'2', u'piec', u'of', u'their', u'griddl', u'bread', u'with', u'was', u'amaz', u'and', u'it', u'absolut', u'made', u'the', u'meal', u'complet', u'it', u'was', u'the', u'best', u'toast', u'i', u've', u'ever', u'had', u'anyway', u'i', u'ca', u\"n't\", u'wait', u'to', u'go', u'back']\n" + ] + } + ], + "source": [ + "# initialize stemmer\n", + "stemmer = SnowballStemmer('english')\n", + "\n", + "# stem each word\n", + "print [stemmer.stem(word) for word in review.words]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Lemmatization**\n", + "\n", + "- **What:** Derive the canonical form ('lemma') of a word\n", + "- **Why:** Can be better than stemming\n", + "- **Notes:** Uses a dictionary-based approach (slower than stemming)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['My', 'wife', 'took', 'me', 'here', 'on', 'my', 'birthday', 'for', 'breakfast', 'and', 'it', u'wa', 'excellent', 'The', 'weather', u'wa', 'perfect', 'which', 'made', 'sitting', 'outside', 'overlooking', 'their', u'ground', 'an', 'absolute', 'pleasure', 'Our', 'waitress', u'wa', 'excellent', 'and', 'our', 'food', 'arrived', 'quickly', 'on', 'the', 'semi-busy', 'Saturday', 'morning', 'It', 'looked', 'like', 'the', 'place', u'fill', 'up', 'pretty', 'quickly', 'so', 'the', 'earlier', 'you', 'get', 'here', 'the', 'better', 'Do', 'yourself', 'a', 'favor', 'and', 'get', 'their', 'Bloody', 'Mary', 'It', u'wa', 'phenomenal', 'and', 'simply', 'the', 'best', 'I', \"'ve\", 'ever', 'had', 'I', \"'m\", 'pretty', 'sure', 'they', 'only', 'use', u'ingredient', 'from', 'their', 'garden', 'and', 'blend', 'them', 'fresh', 'when', 'you', 'order', 'it', 'It', u'wa', 'amazing', 'While', 'EVERYTHING', 'on', 'the', 'menu', u'look', 'excellent', 'I', 'had', 'the', 'white', 'truffle', 'scrambled', u'egg', 'vegetable', 'skillet', 'and', 'it', u'wa', 'tasty', 'and', 'delicious', 'It', 'came', 'with', '2', u'piece', 'of', 'their', 'griddled', 'bread', 'with', u'wa', 'amazing', 'and', 'it', 'absolutely', 'made', 'the', 'meal', 'complete', 'It', u'wa', 'the', 'best', 'toast', 'I', \"'ve\", 'ever', 'had', 'Anyway', 'I', 'ca', \"n't\", 'wait', 'to', 'go', 'back']\n" + ] + } + ], + "source": [ + "# assume every word is a noun\n", + "print [word.lemmatize() for word in review.words]" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['My', 'wife', u'take', 'me', 'here', 'on', 'my', 'birthday', 'for', 'breakfast', 'and', 'it', u'be', 'excellent', 'The', 'weather', u'be', 'perfect', 'which', u'make', u'sit', 'outside', u'overlook', 'their', u'ground', 'an', 'absolute', 'pleasure', 'Our', 'waitress', u'be', 'excellent', 'and', 'our', 'food', u'arrive', 'quickly', 'on', 'the', 'semi-busy', 'Saturday', 'morning', 'It', u'look', 'like', 'the', 'place', u'fill', 'up', 'pretty', 'quickly', 'so', 'the', 'earlier', 'you', 'get', 'here', 'the', 'better', 'Do', 'yourself', 'a', 'favor', 'and', 'get', 'their', 'Bloody', 'Mary', 'It', u'be', 'phenomenal', 'and', 'simply', 'the', 'best', 'I', \"'ve\", 'ever', u'have', 'I', \"'m\", 'pretty', 'sure', 'they', 'only', 'use', 'ingredients', 'from', 'their', 'garden', 'and', 'blend', 'them', 'fresh', 'when', 'you', 'order', 'it', 'It', u'be', u'amaze', 'While', 'EVERYTHING', 'on', 'the', 'menu', u'look', 'excellent', 'I', u'have', 'the', 'white', 'truffle', u'scramble', u'egg', 'vegetable', 'skillet', 'and', 'it', u'be', 'tasty', 'and', 'delicious', 'It', u'come', 'with', '2', u'piece', 'of', 'their', u'griddle', 'bread', 'with', u'be', u'amaze', 'and', 'it', 'absolutely', u'make', 'the', 'meal', 'complete', 'It', u'be', 'the', 'best', 'toast', 'I', \"'ve\", 'ever', u'have', 'Anyway', 'I', 'ca', \"n't\", 'wait', 'to', 'go', 'back']\n" + ] + } + ], + "source": [ + "# assume every word is a verb\n", + "print [word.lemmatize(pos='v') for word in review.words]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a function that accepts text and returns a list of lemmas\n", + "def split_into_lemmas(text):\n", + " text = unicode(text, 'utf-8').lower()\n", + " words = TextBlob(text).words\n", + " return [word.lemmatize() for word in words]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Features: 16452\n", + "Accuracy: 0.920743639922\n" + ] + } + ], + "source": [ + "# use split_into_lemmas as the feature extraction function (WARNING: SLOW!)\n", + "vect = CountVectorizer(analyzer=split_into_lemmas)\n", + "tokenize_test(vect)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[u'yuyuyummy', u'yuzu', u'z', u'z-grill', u'z11', u'zach', u'zam', u'zanella', u'zankou', u'zappos', u'zatsiki', u'zen', u'zen-like', u'zero', u'zero-star', u'zest', u'zexperience', u'zha', u'zhou', u'zia', u'zilch', u'zin', u'zinburger', u'zinburgergeist', u'zinc', u'zinfandel', u'zing', u'zip', u'zipcar', u'zipper', u'zipps', u'ziti', u'zoe', u'zombi', u'zombie', u'zone', u'zoning', u'zoo', u'zoyo', u'zucca', u'zucchini', u'zuchinni', u'zumba', u'zupa', u'zuzu', u'zwiebel-kr\\xe4uter', u'zzed', u'\\xe9clairs', u'\\xe9cole', u'\\xe9m']\n" + ] + } + ], + "source": [ + "# last 50 features\n", + "print vect.get_feature_names()[-50:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 7: Term Frequency-Inverse Document Frequency (TF-IDF)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **What:** Computes \"relative frequency\" that a word appears in a document compared to its frequency across all documents\n", + "- **Why:** More useful than \"term frequency\" for identifying \"important\" words in each document (high frequency in that document, low frequency in other documents)\n", + "- **Notes:** Used for search engine scoring, text summarization, document clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# example documents\n", + "simple_train = ['call you tonight', 'Call me a cab', 'please call me... PLEASE!']" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
0010011
1111000
2011200
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 0 1 0 0 1 1\n", + "1 1 1 1 0 0 0\n", + "2 0 1 1 2 0 0" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Term Frequency\n", + "vect = CountVectorizer()\n", + "tf = pd.DataFrame(vect.fit_transform(simple_train).toarray(), columns=vect.get_feature_names())\n", + "tf" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
0132111
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 1 3 2 1 1 1" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Document Frequency\n", + "vect = CountVectorizer(binary=True)\n", + "df = vect.fit_transform(simple_train).toarray().sum(axis=0)\n", + "pd.DataFrame(df.reshape(1, 6), columns=vect.get_feature_names())" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
000.3333330.0011
110.3333330.5000
200.3333330.5200
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 0 0.333333 0.0 0 1 1\n", + "1 1 0.333333 0.5 0 0 0\n", + "2 0 0.333333 0.5 2 0 0" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Term Frequency-Inverse Document Frequency (simple version)\n", + "tf/df" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "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", + "
cabcallmepleasetonightyou
00.0000000.3853720.0000000.0000000.6524910.652491
10.7203330.4254410.5478320.0000000.0000000.000000
20.0000000.2660750.3426200.9010080.0000000.000000
\n", + "
" + ], + "text/plain": [ + " cab call me please tonight you\n", + "0 0.000000 0.385372 0.000000 0.000000 0.652491 0.652491\n", + "1 0.720333 0.425441 0.547832 0.000000 0.000000 0.000000\n", + "2 0.000000 0.266075 0.342620 0.901008 0.000000 0.000000" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# TfidfVectorizer\n", + "vect = TfidfVectorizer()\n", + "pd.DataFrame(vect.fit_transform(simple_train).toarray(), columns=vect.get_feature_names())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**More details:** [TF-IDF is about what matters](http://planspace.org/20150524-tfidf_is_about_what_matters/)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 8: Using TF-IDF to Summarize a Yelp Review\n", + "\n", + "Reddit's autotldr uses the [SMMRY](http://smmry.com/about) algorithm, which is based on TF-IDF!" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(10000, 28881)" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create a document-term matrix using TF-IDF\n", + "vect = TfidfVectorizer(stop_words='english')\n", + "dtm = vect.fit_transform(yelp.text)\n", + "features = vect.get_feature_names()\n", + "dtm.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def summarize():\n", + " \n", + " # choose a random review that is at least 300 characters\n", + " review_length = 0\n", + " while review_length < 300:\n", + " review_id = np.random.randint(0, len(yelp))\n", + " review_text = unicode(yelp.text[review_id], 'utf-8')\n", + " review_length = len(review_text)\n", + " \n", + " # create a dictionary of words and their TF-IDF scores\n", + " word_scores = {}\n", + " for word in TextBlob(review_text).words:\n", + " word = word.lower()\n", + " if word in features:\n", + " word_scores[word] = dtm[review_id, features.index(word)]\n", + " \n", + " # print words with the top 5 TF-IDF scores\n", + " print 'TOP SCORING WORDS:'\n", + " top_scores = sorted(word_scores.items(), key=lambda x: x[1], reverse=True)[:5]\n", + " for word, score in top_scores:\n", + " print word\n", + " \n", + " # print 5 random words\n", + " print '\\n' + 'RANDOM WORDS:'\n", + " random_words = np.random.choice(word_scores.keys(), size=5, replace=False)\n", + " for word in random_words:\n", + " print word\n", + " \n", + " # print the review\n", + " print '\\n' + review_text" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TOP SCORING WORDS:\n", + "restaurant\n", + "machaca\n", + "cactus\n", + "pickup\n", + "rental\n", + "\n", + "RANDOM WORDS:\n", + "did\n", + "pickup\n", + "hole\n", + "burrito\n", + "arrived\n", + "\n", + "The place is a hole in the wall right behind the PHX car rental center. Arrived at dinner time, and had the best Mexican food! I had the #5 Machaca Plate w/rice, beans, & one of their homemade tortilla's burrito style. It was just amazing, and so cheap ($5.65). The only issue I have with this place is that its very well used, and looks very dirty, I did find it a bit sticky. Maybe this is a better place for pickup. If you want a clean restaurant, their North restaurant on Cactus Road restaurant is much cleaner.\n" + ] + } + ], + "source": [ + "summarize()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 9: Sentiment Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "My wife took me here on my birthday for breakfast and it was excellent. The weather was perfect which made sitting outside overlooking their grounds an absolute pleasure. Our waitress was excellent and our food arrived quickly on the semi-busy Saturday morning. It looked like the place fills up pretty quickly so the earlier you get here the better.\n", + "\n", + "Do yourself a favor and get their Bloody Mary. It was phenomenal and simply the best I've ever had. I'm pretty sure they only use ingredients from their garden and blend them fresh when you order it. It was amazing.\n", + "\n", + "While EVERYTHING on the menu looks excellent, I had the white truffle scrambled eggs vegetable skillet and it was tasty and delicious. It came with 2 pieces of their griddled bread with was amazing and it absolutely made the meal complete. It was the best \"toast\" I've ever had.\n", + "\n", + "Anyway, I can't wait to go back!\n" + ] + } + ], + "source": [ + "print review" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.40246913580246907" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# polarity ranges from -1 (most negative) to 1 (most positive)\n", + "review.sentiment.polarity" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunnylength
09yKzy9PApeiPPOUJEtnvkg2011-01-26fWKvX83p0-ka4JS3dc6E5A5My wife took me here on my birthday for breakf...reviewrLtl8ZkDX5vH5nAx9C3q5Q250889
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "0 9yKzy9PApeiPPOUJEtnvkg 2011-01-26 fWKvX83p0-ka4JS3dc6E5A 5 \n", + "\n", + " text type \\\n", + "0 My wife took me here on my birthday for breakf... review \n", + "\n", + " user_id cool useful funny length \n", + "0 rLtl8ZkDX5vH5nAx9C3q5Q 2 5 0 889 " + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# understanding the apply method\n", + "yelp['length'] = yelp.text.apply(len)\n", + "yelp.head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a function that accepts text and returns the polarity\n", + "def detect_sentiment(text):\n", + " return TextBlob(text.decode('utf-8')).sentiment.polarity" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a new DataFrame column for sentiment (WARNING: SLOW!)\n", + "yelp['sentiment'] = yelp.text.apply(detect_sentiment)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# box plot of sentiment grouped by stars\n", + "yelp.boxplot(column='sentiment', by='stars')" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "254 Our server Gary was awesome. Food was amazing....\n", + "347 3 syllables for this place. \\nA-MAZ-ING!\\n\\nTh...\n", + "420 LOVE the food!!!!\n", + "459 Love it!!! Wish we still lived in Arizona as C...\n", + "679 Excellent burger\n", + "Name: text, dtype: object" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# reviews with most positive sentiment\n", + "yelp[yelp.sentiment == 1].text.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "773 This was absolutely horrible. I got the suprem...\n", + "1517 Nasty workers and over priced trash\n", + "3266 Absolutely awful... these guys have NO idea wh...\n", + "4766 Very bad food!\n", + "5812 I wouldn't send my worst enemy to this place.\n", + "Name: text, dtype: object" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# reviews with most negative sentiment\n", + "yelp[yelp.sentiment == -1].text.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# widen the column display\n", + "pd.set_option('max_colwidth', 500)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunnylengthsentiment
390106JT5p8e8Chtd0CZpcARw2009-08-06KowGVoP_gygzdSu6Mt3zKQ5RIP AZ Coffee Connection. :( I stopped by two days ago unaware that they had closed. I am severely bummed. This place is irreplaceable! Damn you, Starbucks and McDonalds!reviewjKeaOrPyJ-dI9SNeVqrbww100175-0.302083
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "390 106JT5p8e8Chtd0CZpcARw 2009-08-06 KowGVoP_gygzdSu6Mt3zKQ 5 \n", + "\n", + " text \\\n", + "390 RIP AZ Coffee Connection. :( I stopped by two days ago unaware that they had closed. I am severely bummed. This place is irreplaceable! Damn you, Starbucks and McDonalds! \n", + "\n", + " type user_id cool useful funny length sentiment \n", + "390 review jKeaOrPyJ-dI9SNeVqrbww 1 0 0 175 -0.302083 " + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# negative sentiment in a 5-star review\n", + "yelp[(yelp.stars == 5) & (yelp.sentiment < -0.3)].head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": { + "collapsed": false + }, + "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", + "
business_iddatereview_idstarstexttypeuser_idcoolusefulfunnylengthsentiment
178153YGfwmbW73JhFiemNeyzQ2012-06-22Gi-4O3EhE175vujbFGDIew1If you like the stuck up Scottsdale vibe this is a good place for you. The food isn't impressive. Nice outdoor seating.reviewHqgx3IdJAAaoQjvrUnbNvw0121190.766667
\n", + "
" + ], + "text/plain": [ + " business_id date review_id stars \\\n", + "1781 53YGfwmbW73JhFiemNeyzQ 2012-06-22 Gi-4O3EhE175vujbFGDIew 1 \n", + "\n", + " text \\\n", + "1781 If you like the stuck up Scottsdale vibe this is a good place for you. The food isn't impressive. Nice outdoor seating. \n", + "\n", + " type user_id cool useful funny length sentiment \n", + "1781 review Hqgx3IdJAAaoQjvrUnbNvw 0 1 2 119 0.766667 " + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# positive sentiment in a 1-star review\n", + "yelp[(yelp.stars == 1) & (yelp.sentiment > 0.5)].head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# reset the column display width\n", + "pd.reset_option('max_colwidth')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: Adding Features to a Document-Term Matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a DataFrame that only contains the 5-star and 1-star reviews\n", + "yelp_best_worst = yelp[(yelp.stars==5) | (yelp.stars==1)]\n", + "\n", + "# define X and y\n", + "feature_cols = ['text', 'sentiment', 'cool', 'useful', 'funny']\n", + "X = yelp_best_worst[feature_cols]\n", + "y = yelp_best_worst.stars\n", + "\n", + "# split into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(3064, 16825)\n", + "(1022, 16825)\n" + ] + } + ], + "source": [ + "# use CountVectorizer with text column only\n", + "vect = CountVectorizer()\n", + "X_train_dtm = vect.fit_transform(X_train.text)\n", + "X_test_dtm = vect.transform(X_test.text)\n", + "print X_train_dtm.shape\n", + "print X_test_dtm.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 4)" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# shape of other four feature columns\n", + "X_train.drop('text', axis=1).shape" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 4)" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# cast other feature columns to float and convert to a sparse matrix\n", + "extra = sp.sparse.csr_matrix(X_train.drop('text', axis=1).astype(float))\n", + "extra.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3064, 16829)" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# combine sparse matrices\n", + "X_train_dtm_extra = sp.sparse.hstack((X_train_dtm, extra))\n", + "X_train_dtm_extra.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(1022, 16829)" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# repeat for testing set\n", + "extra = sp.sparse.csr_matrix(X_test.drop('text', axis=1).astype(float))\n", + "X_test_dtm_extra = sp.sparse.hstack((X_test_dtm, extra))\n", + "X_test_dtm_extra.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.917808219178\n" + ] + } + ], + "source": [ + "# use logistic regression with text column only\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train_dtm, y_train)\n", + "y_pred_class = logreg.predict(X_test_dtm)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.922700587084\n" + ] + } + ], + "source": [ + "# use logistic regression with all features\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train_dtm_extra, y_train)\n", + "y_pred_class = logreg.predict(X_test_dtm_extra)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bonus: Fun TextBlob Features" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "TextBlob(\"15 minutes late\")" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# spelling correction\n", + "TextBlob('15 minuets late').correct()" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[('part', 0.9929478138222849), (u'parrot', 0.007052186177715092)]" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# spellcheck\n", + "Word('parot').spellcheck()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[u'tip laterally',\n", + " u'enclose with a bank',\n", + " u'do business with a bank or keep an account at a bank',\n", + " u'act as the banker in a game or in gambling',\n", + " u'be in the banking business',\n", + " u'put into a bank account',\n", + " u'cover with ashes so to control the rate of burning',\n", + " u'have confidence or faith in']" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# definitions\n", + "Word('bank').define('v')" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "u'es'" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# language identification\n", + "TextBlob('Hola amigos').detect_language()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conclusion\n", + "\n", + "- NLP is a gigantic field\n", + "- Understanding the basics broadens the types of data you can work with\n", + "- Simple techniques go a long way\n", + "- Use scikit-learn for NLP whenever possible" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/17_bikeshare_exercise.ipynb b/notebooks/17_bikeshare_exercise.ipynb new file mode 100644 index 0000000..6d61d5a --- /dev/null +++ b/notebooks/17_bikeshare_exercise.ipynb @@ -0,0 +1,812 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exercise with Capital Bikeshare data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "- Capital Bikeshare dataset from Kaggle: [data](https://github.com/justmarkham/DAT8/blob/master/data/bikeshare.csv), [data dictionary](https://www.kaggle.com/c/bike-sharing-demand/data)\n", + "- Each observation represents the bikeshare rentals initiated during a given hour of a given day" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.cross_validation import cross_val_score\n", + "from sklearn.linear_model import LinearRegression\n", + "from sklearn.tree import DecisionTreeRegressor, export_graphviz" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read the data and set \"datetime\" as the index\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/bikeshare.csv'\n", + "bikes = pd.read_csv(url, index_col='datetime', parse_dates=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# \"count\" is a method, so it's best to rename that column\n", + "bikes.rename(columns={'count':'total'}, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create \"hour\" as its own feature\n", + "bikes['hour'] = bikes.index.hour" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredtotalhour
datetime
2011-01-01 00:00:0010019.8414.395810313160
2011-01-01 01:00:0010019.0213.635800832401
2011-01-01 02:00:0010019.0213.635800527322
2011-01-01 03:00:0010019.8414.395750310133
2011-01-01 04:00:0010019.8414.3957500114
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "datetime \n", + "2011-01-01 00:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 01:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 02:00:00 1 0 0 1 9.02 13.635 \n", + "2011-01-01 03:00:00 1 0 0 1 9.84 14.395 \n", + "2011-01-01 04:00:00 1 0 0 1 9.84 14.395 \n", + "\n", + " humidity windspeed casual registered total hour \n", + "datetime \n", + "2011-01-01 00:00:00 81 0 3 13 16 0 \n", + "2011-01-01 01:00:00 80 0 8 32 40 1 \n", + "2011-01-01 02:00:00 80 0 5 27 32 2 \n", + "2011-01-01 03:00:00 75 0 3 10 13 3 \n", + "2011-01-01 04:00:00 75 0 0 1 1 4 " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bikes.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
seasonholidayworkingdayweathertempatemphumiditywindspeedcasualregisteredtotalhour
datetime
2012-12-19 19:00:00401115.5819.6955026.0027732933619
2012-12-19 20:00:00401114.7617.4255715.00131023124120
2012-12-19 21:00:00401113.9415.9106115.0013416416821
2012-12-19 22:00:00401113.9417.425616.00321211712922
2012-12-19 23:00:00401113.1216.665668.99814848823
\n", + "
" + ], + "text/plain": [ + " season holiday workingday weather temp atemp \\\n", + "datetime \n", + "2012-12-19 19:00:00 4 0 1 1 15.58 19.695 \n", + "2012-12-19 20:00:00 4 0 1 1 14.76 17.425 \n", + "2012-12-19 21:00:00 4 0 1 1 13.94 15.910 \n", + "2012-12-19 22:00:00 4 0 1 1 13.94 17.425 \n", + "2012-12-19 23:00:00 4 0 1 1 13.12 16.665 \n", + "\n", + " humidity windspeed casual registered total hour \n", + "datetime \n", + "2012-12-19 19:00:00 50 26.0027 7 329 336 19 \n", + "2012-12-19 20:00:00 57 15.0013 10 231 241 20 \n", + "2012-12-19 21:00:00 61 15.0013 4 164 168 21 \n", + "2012-12-19 22:00:00 61 6.0032 12 117 129 22 \n", + "2012-12-19 23:00:00 66 8.9981 4 84 88 23 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bikes.tail()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **hour** ranges from 0 (midnight) through 23 (11pm)\n", + "- **workingday** is either 0 (weekend or holiday) or 1 (non-holiday weekday)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1\n", + "\n", + "Run these two `groupby` statements and figure out what they tell you about the data." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "workingday\n", + "0 188.506621\n", + "1 193.011873\n", + "Name: total, dtype: float64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mean rentals for each value of \"workingday\"\n", + "bikes.groupby('workingday').total.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "hour\n", + "0 55.138462\n", + "1 33.859031\n", + "2 22.899554\n", + "3 11.757506\n", + "4 6.407240\n", + "5 19.767699\n", + "6 76.259341\n", + "7 213.116484\n", + "8 362.769231\n", + "9 221.780220\n", + "10 175.092308\n", + "11 210.674725\n", + "12 256.508772\n", + "13 257.787281\n", + "14 243.442982\n", + "15 254.298246\n", + "16 316.372807\n", + "17 468.765351\n", + "18 430.859649\n", + "19 315.278509\n", + "20 228.517544\n", + "21 173.370614\n", + "22 133.576754\n", + "23 89.508772\n", + "Name: total, dtype: float64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# mean rentals for each value of \"hour\"\n", + "bikes.groupby('hour').total.mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 2\n", + "\n", + "Run this plotting code, and make sure you understand the output. Then, separate this plot into two separate plots conditioned on \"workingday\". (In other words, one plot should display the hourly trend for \"workingday=0\", and the other should display the hourly trend for \"workingday=1\".)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nQnAHceQkXH8AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# mean rentals for each value of \"hour\"\n", + "bikes.groupby('hour').total.mean().plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n/wekexpAtOt7egAAAABJRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# hourly rental trend for \"workingday=0\"\n", + "bikes[bikes.workingday==0].groupby('hour').total.mean().plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# hourly rental trend for \"workingday=1\"\n", + "bikes[bikes.workingday==1].groupby('hour').total.mean().plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAEPCAYAAACwWiQoAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xd4FFX3wPHvTYGQBAglkITeIgm9F1EDAiKotBcpgjTR\nF7D/LKAiKDZEfVUQUUHFAogiKipKM6KgEjok9ColhYSWBin398dsIEDKJtnd2eyez/Psw2R3Zu7J\nup7cvXPnXKW1RgghROnmYXYAQgghSk6SuRBCuABJ5kII4QIkmQshhAuQZC6EEC5AkrkQQrgAq5K5\nUipAKfWNUmq3UipGKdVBKVVZKbVKKbVPKbVSKRWQa//JSqn9Sqk9Sqme9gtfCCEEWN8zfwf4WWsd\nBjQH9gCTgFVa61BgjeVnlFLhwGAgHOgFzFFKyTcAIYSwo0KTrFKqInCT1vpjAK11ptb6HHAXsMCy\n2wKgn2W7L7BIa52htT4CHADa2zpwIYQQV1jTY64HJCilPlFKbVFKfaSU8gOqa63jLPvEAdUt2yHA\n8VzHHwdq2CxiIYQQ17EmmXsBrYE5WuvWQAqWIZUc2qgJUFBdAKkZIIQQduRlxT7HgeNa6yjLz98A\nk4FYpVSQ1jpWKRUMxFtePwHUynV8TctzlymlJLkLIUQxaK1VXs8X2jPXWscC/yqlQi1PdQeigeXA\nSMtzI4HvLNs/AEOUUmWUUvWARsDGPM4rjwIeU6dONT0GZ3/IeyTvj7u9RwWxpmcO8BDwpVKqDHAQ\nGA14AkuUUmOBI8DdliQdo5RaAsQAmcAEXVgUQgghSsSqZK613g60y+Ol7vns/wrwSgniEkIIUQQy\n/9tJRUREmB2C05P3qGDy/hTOld4jZcYIiFJKRl6EEKKIlFLofC6AWjtm7hBK5Rmj25I/eEIIazlV\nMgdJYDnkD5sQoihkzFwIIVyAJHMhhHABksyFEMIFuE0yr1u3LklJSdc9f+ONN9q9DSGEsDe3SOZZ\nWVn5XlBcv369zdqRi5ZCCLM4fTKfOXMms2bNAuCxxx7j1ltvBWDt2rUMHz6cRYsW0bx5c5o1a8ak\nSVeKOfr7+/PEE0/QsmVL/v7778vPp6WlcfvttzN//vzL+wFERkYSERHBoEGDCAsLY/jw4ZeP+fnn\nnwkLC6Nt27Y8/PDD3HnnnQAkJibSs2dPmjZtyrhx466aidO/f3/atm1L06ZN+eijjwD4+OOPeeyx\nxy7v89FHH/H444/b9P0SQrgpk4rF6Lzk9fzff/+tBw0apLXWukuXLrpDhw46IyNDT5s2Tb/wwgu6\ndu3a+vTp0zozM1N369ZNf/fdd1prrZVS+uuvv758nrp16+ojR47o7t27688///zy8/7+/lprrX/7\n7TddsWJFfeLECZ2dna07deqk169fr9PS0nStWrX0kSNHtNZaDx06VN95551aa60feughPX36dK21\n1j/99JNWSunExESttdZJSUlaa61TU1N106ZNdVJSkk5OTtYNGjTQmZmZWmutO3furHft2mX1eyGE\ncG+WvJBnXnX6nnnr1q3ZvHkzFy5cwMfHh06dOrFp0yb+/PNPAgIC6Nq1K1WqVMHT05N77rmHdevW\nAeDp6cnAgQMvn0drTd++fRkzZsxVve7c2rdvT0hICEopWrZsyeHDh9mzZw/169enTp06AAwdOvRy\nD/yPP/64fK7evXtTqVKly+d65513aNmyJZ06deLff/9l//79+Pn50a1bN5YvX86ePXvIyMigSZMm\ndnnfhBDuxemTube3N/Xq1ePTTz+lc+fOdOnShbVr13LgwAHq1q171dCG1vryuLWPj89VY9hKKbp0\n6cKKFSvybats2bKXtz09PcnMzLxuHDx3e3n9DMaQzZo1a/j777/Ztm0brVq1Ij09HYD77ruPTz75\nhE8//ZQxY8YU4Z0QQoj8OX0yB7jpppt44403uOWWW7jpppuYO3curVu3pn379vz+++8kJiaSlZXF\n4sWLueWWW/I9z4svvkilSpWYOHGiVe0qpbjhhhs4dOgQR48eBeCrr766nOBvvvlmFi5cCMCKFSs4\nc+YMAOfPn6dSpUr4+PiwZ8+eq8bs27dvz/Hjx1m4cCFDhw4t1vshhBDXKjXJPDY2lk6dOlGtWjXK\nlSvHTTfdRFBQEK+99hpdu3alZcuWtG3b9vLFyWt71Dk/v/POO6SlpV2+WHpt7/1aPj4+zJkzh169\netG2bVsqVKhAhQoVAJg6dSrr1q2jadOmLFu27PJQTK9evcjMzCQ8PJzJkyfTqVOnq855991306VL\nFypWrGijd0gI4e6cqmqipSKYw+MpTEpKCn5+fgBMnDiR0NBQHnnkkWKf78477+Txxx+na9eu+e7j\nrO+FEMI8BVVNLBU9c7N99NFHtGrViiZNmnD+/HkeeOCBYp3n7Nmz3HDDDfj6+haYyIUQoqikZ+6k\n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\nAiSZCyGEC/h/gOU6docQoMkAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# combine the two plots\n", + "bikes.groupby(['hour', 'workingday']).total.mean().unstack().plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 3\n", + "\n", + "Fit a linear regression model to the entire dataset, using \"total\" as the response and \"hour\" and \"workingday\" as the only features. Then, print the coefficients and interpret them. What are the limitations of linear regression in this instance?" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create X and y\n", + "feature_cols = ['hour', 'workingday']\n", + "X = bikes[feature_cols]\n", + "y = bikes.total" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 10.49206282, 4.07248627])" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a linear regression model and print coefficients\n", + "linreg = LinearRegression()\n", + "linreg.fit(X, y)\n", + "linreg.coef_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 4\n", + "\n", + "Use 10-fold cross-validation to calculate the RMSE for the linear regression model." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# save the 10 MSE scores output by cross_val_score\n", + "scores = cross_val_score(linreg, X, y, cv=10, scoring='mean_squared_error')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "165.22328668912968" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert MSE to RMSE, and then calculate the mean of the 10 RMSE scores\n", + "np.mean(np.sqrt(-scores))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 5\n", + "\n", + "Use 10-fold cross-validation to evaluate a decision tree model with those same features (fit to any \"max_depth\" you choose)." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "107.64196789476493" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# evaluate a decision tree model with \"max_depth=7\"\n", + "treereg = DecisionTreeRegressor(max_depth=7, random_state=1)\n", + "scores = cross_val_score(treereg, X, y, cv=10, scoring='mean_squared_error')\n", + "np.mean(np.sqrt(-scores))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 6\n", + "\n", + "Fit a decision tree model to the entire dataset using \"max_depth=3\", and create a tree diagram using Graphviz. Then, figure out what each leaf represents. What did the decision tree learn that a linear regression model could not learn?" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DecisionTreeRegressor(criterion='mse', max_depth=3, max_features=None,\n", + " max_leaf_nodes=None, min_samples_leaf=1, min_samples_split=2,\n", + " min_weight_fraction_leaf=0.0, random_state=1, splitter='best')" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a decision tree model with \"max_depth=3\"\n", + "treereg = DecisionTreeRegressor(max_depth=3, random_state=1)\n", + "treereg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a Graphviz file\n", + "export_graphviz(treereg, out_file='tree_bikeshare.dot', feature_names=feature_cols)\n", + "\n", + "# At the command line, run this to convert to PNG:\n", + "# dot -Tpng tree_bikeshare.dot -o tree_bikeshare.png" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Tree for bikeshare data](images/tree_bikeshare.png)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/17_decision_trees.ipynb b/notebooks/17_decision_trees.ipynb new file mode 100644 index 0000000..5697ec0 --- /dev/null +++ b/notebooks/17_decision_trees.ipynb @@ -0,0 +1,1897 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Decision Trees\n", + "\n", + "*Adapted from Chapter 8 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/)*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why are we learning about decision trees?\n", + "\n", + "- Can be applied to both regression and classification problems\n", + "- Many useful properties\n", + "- Very popular\n", + "- Basis for more sophisticated models\n", + "- Have a different way of \"thinking\" than the other models we have studied" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Lesson objectives\n", + "\n", + "Students will be able to:\n", + "\n", + "- Explain how a decision tree is created\n", + "- Build a decision tree model in scikit-learn\n", + "- Tune a decision tree model and explain how tuning impacts the model\n", + "- Interpret a tree diagram\n", + "- Describe the key differences between regression and classification trees\n", + "- Decide whether a decision tree is an appropriate model for a given problem" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 1: Regression trees\n", + "\n", + "Major League Baseball player data from 1986-87:\n", + "\n", + "- **Years** (x-axis): number of years playing in the major leagues\n", + "- **Hits** (y-axis): number of hits in the previous year\n", + "- **Salary** (color): low salary is blue/green, high salary is red/yellow" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Salary data](images/salary_color.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Group exercise:\n", + "\n", + "- The data above is our **training data**.\n", + "- We want to build a model that predicts the Salary of **future players** based on Years and Hits.\n", + "- We are going to \"segment\" the feature space into regions, and then use the **mean Salary in each region** as the predicted Salary for future players.\n", + "- Intuitively, you want to **maximize** the similarity (or \"homogeneity\") within a given region, and **minimize** the similarity between different regions.\n", + "\n", + "Rules for segmenting:\n", + "\n", + "- You can only use **straight lines**, drawn one at a time.\n", + "- Your line must either be **vertical or horizontal**.\n", + "- Your line **stops** when it hits an existing line." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Salary regions](images/salary_regions.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Above are the regions created by a computer:\n", + "\n", + "- $R_1$: players with **less than 5 years** of experience, mean Salary of **\\$166,000 **\n", + "- $R_2$: players with **5 or more years** of experience and **less than 118 hits**, mean Salary of **\\$403,000 **\n", + "- $R_3$: players with **5 or more years** of experience and **118 hits or more**, mean Salary of **\\$846,000 **\n", + "\n", + "**Note:** Years and Hits are both integers, but the convention is to use the **midpoint** between adjacent values to label a split.\n", + "\n", + "These regions are used to make predictions on **out-of-sample data**. Thus, there are only three possible predictions! (Is this different from how **linear regression** makes predictions?)\n", + "\n", + "Below is the equivalent regression tree:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Salary tree](images/salary_tree.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The first split is **Years < 4.5**, thus that split goes at the top of the tree. When a splitting rule is **True**, you follow the left branch. When a splitting rule is **False**, you follow the right branch.\n", + "\n", + "For players in the **left branch**, the mean Salary is \\$166,000, thus you label it with that value. (Salary has been divided by 1000 and log-transformed to 5.11.)\n", + "\n", + "For players in the **right branch**, there is a further split on **Hits < 117.5**, dividing players into two more Salary regions: \\$403,000 (transformed to 6.00), and \\$846,000 (transformed to 6.74)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Salary tree annotated](images/salary_tree_annotated.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**What does this tree tell you about your data?**\n", + "\n", + "- Years is the most important factor determining Salary, with a lower number of Years corresponding to a lower Salary.\n", + "- For a player with a lower number of Years, Hits is not an important factor determining Salary.\n", + "- For a player with a higher number of Years, Hits is an important factor determining Salary, with a greater number of Hits corresponding to a higher Salary.\n", + "\n", + "**Question:** What do you like and dislike about decision trees so far?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Building a regression tree by hand\n", + "\n", + "Your **training data** is a tiny dataset of [used vehicle sale prices](https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv). Your goal is to **predict price** for testing data.\n", + "\n", + "1. Read the data into a Pandas DataFrame.\n", + "2. Explore the data by sorting, plotting, or split-apply-combine (aka `group_by`).\n", + "3. Decide which feature is the most important predictor, and use that to create your first splitting rule.\n", + " - Only binary splits are allowed.\n", + "4. After making your first split, split your DataFrame into two parts, and then explore each part to figure out what other splits to make.\n", + "5. Stop making splits once you are convinced that it strikes a good balance between underfitting and overfitting.\n", + " - Your goal is to build a model that generalizes well.\n", + " - You are allowed to split on the same variable multiple times!\n", + "6. Draw your tree, labeling the leaves with the mean price for the observations in that region.\n", + " - Make sure nothing is backwards: You follow the **left branch** if the rule is true, and the **right branch** if the rule is false." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## How does a computer build a regression tree?\n", + "\n", + "**Ideal approach:** Consider every possible partition of the feature space (computationally infeasible)\n", + "\n", + "**\"Good enough\" approach:** recursive binary splitting\n", + "\n", + "1. Begin at the top of the tree.\n", + "2. For **every feature**, examine **every possible cutpoint**, and choose the feature and cutpoint such that the resulting tree has the lowest possible mean squared error (MSE). Make that split.\n", + "3. Examine the two resulting regions, and again make a **single split** (in one of the regions) to minimize the MSE.\n", + "4. Keep repeating step 3 until a **stopping criterion** is met:\n", + " - maximum tree depth (maximum number of splits required to arrive at a leaf)\n", + " - minimum number of observations in a leaf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Demo: Choosing the ideal cutpoint for a given feature" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# vehicle data\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv'\n", + "train = pd.read_csv(url)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
priceyearmilesdoorsvtypeprediction
0220002012130002car6571.428571
1140002010300002car6571.428571
2130002010735004car6571.428571
395002009780004car6571.428571
490002007470004car6571.428571
5400020061240002car6571.428571
6300020041770004car6571.428571
7200020042090004truck6571.428571
8300020031380002car6571.428571
9190020031600004car6571.428571
10250020031900002truck6571.428571
1150002001620004car6571.428571
12180019991630002truck6571.428571
13130019971380004car6571.428571
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype prediction\n", + "0 22000 2012 13000 2 car 6571.428571\n", + "1 14000 2010 30000 2 car 6571.428571\n", + "2 13000 2010 73500 4 car 6571.428571\n", + "3 9500 2009 78000 4 car 6571.428571\n", + "4 9000 2007 47000 4 car 6571.428571\n", + "5 4000 2006 124000 2 car 6571.428571\n", + "6 3000 2004 177000 4 car 6571.428571\n", + "7 2000 2004 209000 4 truck 6571.428571\n", + "8 3000 2003 138000 2 car 6571.428571\n", + "9 1900 2003 160000 4 car 6571.428571\n", + "10 2500 2003 190000 2 truck 6571.428571\n", + "11 5000 2001 62000 4 car 6571.428571\n", + "12 1800 1999 163000 2 truck 6571.428571\n", + "13 1300 1997 138000 4 car 6571.428571" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# before splitting anything, just predict the mean of the entire dataset\n", + "train['prediction'] = train.price.mean()\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "5936.9819859959835" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE for those predictions\n", + "from sklearn import metrics\n", + "import numpy as np\n", + "np.sqrt(metrics.mean_squared_error(train.price, train.prediction))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define a function that calculates the RMSE for a given split of miles\n", + "def mileage_split(miles):\n", + " lower_mileage_price = train[train.miles < miles].price.mean()\n", + " higher_mileage_price = train[train.miles >= miles].price.mean()\n", + " train['prediction'] = np.where(train.miles < miles, lower_mileage_price, higher_mileage_price)\n", + " return np.sqrt(metrics.mean_squared_error(train.price, train.prediction))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "RMSE: 3984.09174254\n" + ] + }, + { + "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", + " \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", + "
priceyearmilesdoorsvtypeprediction
0220002012130002car15000.000000
1140002010300002car15000.000000
2130002010735004car4272.727273
395002009780004car4272.727273
490002007470004car15000.000000
5400020061240002car4272.727273
6300020041770004car4272.727273
7200020042090004truck4272.727273
8300020031380002car4272.727273
9190020031600004car4272.727273
10250020031900002truck4272.727273
1150002001620004car4272.727273
12180019991630002truck4272.727273
13130019971380004car4272.727273
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype prediction\n", + "0 22000 2012 13000 2 car 15000.000000\n", + "1 14000 2010 30000 2 car 15000.000000\n", + "2 13000 2010 73500 4 car 4272.727273\n", + "3 9500 2009 78000 4 car 4272.727273\n", + "4 9000 2007 47000 4 car 15000.000000\n", + "5 4000 2006 124000 2 car 4272.727273\n", + "6 3000 2004 177000 4 car 4272.727273\n", + "7 2000 2004 209000 4 truck 4272.727273\n", + "8 3000 2003 138000 2 car 4272.727273\n", + "9 1900 2003 160000 4 car 4272.727273\n", + "10 2500 2003 190000 2 truck 4272.727273\n", + "11 5000 2001 62000 4 car 4272.727273\n", + "12 1800 1999 163000 2 truck 4272.727273\n", + "13 1300 1997 138000 4 car 4272.727273" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE for tree which splits on miles < 50000\n", + "print 'RMSE:', mileage_split(50000)\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "RMSE: 3530.14653008\n" + ] + }, + { + "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", + " \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", + "
priceyearmilesdoorsvtypeprediction
0220002012130002car12083.333333
1140002010300002car12083.333333
2130002010735004car12083.333333
395002009780004car12083.333333
490002007470004car12083.333333
5400020061240002car2437.500000
6300020041770004car2437.500000
7200020042090004truck2437.500000
8300020031380002car2437.500000
9190020031600004car2437.500000
10250020031900002truck2437.500000
1150002001620004car12083.333333
12180019991630002truck2437.500000
13130019971380004car2437.500000
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype prediction\n", + "0 22000 2012 13000 2 car 12083.333333\n", + "1 14000 2010 30000 2 car 12083.333333\n", + "2 13000 2010 73500 4 car 12083.333333\n", + "3 9500 2009 78000 4 car 12083.333333\n", + "4 9000 2007 47000 4 car 12083.333333\n", + "5 4000 2006 124000 2 car 2437.500000\n", + "6 3000 2004 177000 4 car 2437.500000\n", + "7 2000 2004 209000 4 truck 2437.500000\n", + "8 3000 2003 138000 2 car 2437.500000\n", + "9 1900 2003 160000 4 car 2437.500000\n", + "10 2500 2003 190000 2 truck 2437.500000\n", + "11 5000 2001 62000 4 car 12083.333333\n", + "12 1800 1999 163000 2 truck 2437.500000\n", + "13 1300 1997 138000 4 car 2437.500000" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE for tree which splits on miles < 100000\n", + "print 'RMSE:', mileage_split(100000)\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# check all possible mileage splits\n", + "mileage_range = range(train.miles.min(), train.miles.max(), 1000)\n", + "RMSE = [mileage_split(miles) for miles in mileage_range]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.rcParams['figure.figsize'] = (6, 4)\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot mileage cutpoint (x-axis) versus RMSE (y-axis)\n", + "plt.plot(mileage_range, RMSE)\n", + "plt.xlabel('Mileage cutpoint')\n", + "plt.ylabel('RMSE (lower is better)')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Recap:** Before every split, this process is repeated for every feature, and the feature and cutpoint that produces the lowest MSE is chosen." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Building a regression tree in scikit-learn" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# encode car as 0 and truck as 1\n", + "train['vtype'] = train.vtype.map({'car':0, 'truck':1})" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define X and y\n", + "feature_cols = ['year', 'miles', 'doors', 'vtype']\n", + "X = train[feature_cols]\n", + "y = train.price" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DecisionTreeRegressor(criterion='mse', max_depth=None, max_features=None,\n", + " max_leaf_nodes=None, min_samples_leaf=1, min_samples_split=2,\n", + " min_weight_fraction_leaf=0.0, random_state=1, splitter='best')" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# instantiate a DecisionTreeRegressor (with random_state=1)\n", + "from sklearn.tree import DecisionTreeRegressor\n", + "treereg = DecisionTreeRegressor(random_state=1)\n", + "treereg" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2928.5714285714284" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# use leave-one-out cross-validation (LOOCV) to estimate the RMSE for this model\n", + "from sklearn.cross_validation import cross_val_score\n", + "scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error')\n", + "np.mean(np.sqrt(-scores))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## What happens when we grow a tree too deep?\n", + "\n", + "- Left: Regression tree for Salary **grown deeper**\n", + "- Right: Comparison of the **training, testing, and cross-validation errors** for trees with different numbers of leaves" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Salary tree grown deep](images/salary_tree_deep.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The **training error** continues to go down as the tree size increases (due to overfitting), but the lowest **cross-validation error** occurs for a tree with 3 leaves." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tuning a regression tree\n", + "\n", + "Let's try to reduce the RMSE by tuning the **max_depth** parameter:" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "3757.936507936508" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# try different values one-by-one\n", + "treereg = DecisionTreeRegressor(max_depth=1, random_state=1)\n", + "scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error')\n", + "np.mean(np.sqrt(-scores))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Or, we could write a loop to try a range of values:" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# list of values to try\n", + "max_depth_range = range(1, 8)\n", + "\n", + "# list to store the average RMSE for each value of max_depth\n", + "RMSE_scores = []\n", + "\n", + "# use LOOCV with each value of max_depth\n", + "for depth in max_depth_range:\n", + " treereg = DecisionTreeRegressor(max_depth=depth, random_state=1)\n", + " MSE_scores = cross_val_score(treereg, X, y, cv=14, scoring='mean_squared_error')\n", + " RMSE_scores.append(np.mean(np.sqrt(-MSE_scores)))" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot max_depth (x-axis) versus RMSE (y-axis)\n", + "plt.plot(max_depth_range, RMSE_scores)\n", + "plt.xlabel('max_depth')\n", + "plt.ylabel('RMSE (lower is better)')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DecisionTreeRegressor(criterion='mse', max_depth=3, max_features=None,\n", + " max_leaf_nodes=None, min_samples_leaf=1, min_samples_split=2,\n", + " min_weight_fraction_leaf=0.0, random_state=1, splitter='best')" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# max_depth=3 was best, so fit a tree using that parameter\n", + "treereg = DecisionTreeRegressor(max_depth=3, random_state=1)\n", + "treereg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "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", + "
featureimportance
0year0.798744
1miles0.201256
2doors0.000000
3vtype0.000000
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "0 year 0.798744\n", + "1 miles 0.201256\n", + "2 doors 0.000000\n", + "3 vtype 0.000000" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# \"Gini importance\" of each feature: the (normalized) total reduction of error brought by that feature\n", + "pd.DataFrame({'feature':feature_cols, 'importance':treereg.feature_importances_})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating a tree diagram" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a Graphviz file\n", + "from sklearn.tree import export_graphviz\n", + "export_graphviz(treereg, out_file='tree_vehicles.dot', feature_names=feature_cols)\n", + "\n", + "# At the command line, run this to convert to PNG:\n", + "# dot -Tpng tree_vehicles.dot -o tree_vehicles.png" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Tree for vehicle data](images/tree_vehicles.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Reading the internal nodes:\n", + "\n", + "- **samples:** number of observations in that node before splitting\n", + "- **mse:** MSE calculated by comparing the actual response values in that node against the mean response value in that node\n", + "- **rule:** rule used to split that node (go left if true, go right if false)\n", + "\n", + "Reading the leaves:\n", + "\n", + "- **samples:** number of observations in that node\n", + "- **value:** mean response value in that node\n", + "- **mse:** MSE calculated by comparing the actual response values in that node against \"value\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Making predictions for the testing data" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "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", + "
priceyearmilesdoorsvtype
03000200313000041
1600020058250040
21200020106000020
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype\n", + "0 3000 2003 130000 4 1\n", + "1 6000 2005 82500 4 0\n", + "2 12000 2010 60000 2 0" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read the testing data\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_test.csv'\n", + "test = pd.read_csv(url)\n", + "test['vtype'] = test.vtype.map({'car':0, 'truck':1})\n", + "test" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Question:** Using the tree diagram above, what predictions will the model make for each observation?" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 4000., 5000., 13500.])" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# use fitted model to make predictions on testing data\n", + "X_test = test[feature_cols]\n", + "y_test = test.price\n", + "y_pred = treereg.predict(X_test)\n", + "y_pred" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1190.2380714238084" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE\n", + "np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "7937.2539331937714" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE for your own tree!\n", + "y_test = [3000, 6000, 12000]\n", + "y_pred = [0, 0, 0]\n", + "from sklearn import metrics\n", + "np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 2: Classification trees\n", + "\n", + "**Example:** Predict whether Barack Obama or Hillary Clinton will win the Democratic primary in a particular county in 2008:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Obama-Clinton decision tree](images/obama_clinton_tree.jpg)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Questions:**\n", + "\n", + "- What are the observations? How many observations are there?\n", + "- What is the response variable?\n", + "- What are the features?\n", + "- What is the most predictive feature?\n", + "- Why does the tree split on high school graduation rate twice in a row?\n", + "- What is the class prediction for the following county: 15% African-American, 90% high school graduation rate, located in the South, high poverty, high population density?\n", + "- What is the predicted probability for that same county?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing regression trees and classification trees\n", + "\n", + "|regression trees|classification trees|\n", + "|---|---|\n", + "|predict a continuous response|predict a categorical response|\n", + "|predict using mean response of each leaf|predict using most commonly occuring class of each leaf|\n", + "|splits are chosen to minimize MSE|splits are chosen to minimize Gini index (discussed below)|" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Splitting criteria for classification trees\n", + "\n", + "Common options for the splitting criteria:\n", + "\n", + "- **classification error rate:** fraction of training observations in a region that don't belong to the most common class\n", + "- **Gini index:** measure of total variance across classes in a region" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example of classification error rate\n", + "\n", + "Pretend we are predicting whether someone buys an iPhone or an Android:\n", + "\n", + "- At a particular node, there are **25 observations** (phone buyers), of whom **10 bought iPhones and 15 bought Androids**.\n", + "- Since the majority class is **Android**, that's our prediction for all 25 observations, and thus the classification error rate is **10/25 = 40%**.\n", + "\n", + "Our goal in making splits is to **reduce the classification error rate**. Let's try splitting on gender:\n", + "\n", + "- **Males:** 2 iPhones and 12 Androids, thus the predicted class is Android\n", + "- **Females:** 8 iPhones and 3 Androids, thus the predicted class is iPhone\n", + "- Classification error rate after this split would be **5/25 = 20%**\n", + "\n", + "Compare that with a split on age:\n", + "\n", + "- **30 or younger:** 4 iPhones and 8 Androids, thus the predicted class is Android\n", + "- **31 or older:** 6 iPhones and 7 Androids, thus the predicted class is Android\n", + "- Classification error rate after this split would be **10/25 = 40%**\n", + "\n", + "The decision tree algorithm will try **every possible split across all features**, and choose the split that **reduces the error rate the most.**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example of Gini index\n", + "\n", + "Calculate the Gini index before making a split:\n", + "\n", + "$$1 - \\left(\\frac {iPhone} {Total}\\right)^2 - \\left(\\frac {Android} {Total}\\right)^2 = 1 - \\left(\\frac {10} {25}\\right)^2 - \\left(\\frac {15} {25}\\right)^2 = 0.48$$\n", + "\n", + "- The **maximum value** of the Gini index is 0.5, and occurs when the classes are perfectly balanced in a node.\n", + "- The **minimum value** of the Gini index is 0, and occurs when there is only one class represented in a node.\n", + "- A node with a lower Gini index is said to be more \"pure\".\n", + "\n", + "Evaluating the split on **gender** using Gini index:\n", + "\n", + "$$\\text{Males: } 1 - \\left(\\frac {2} {14}\\right)^2 - \\left(\\frac {12} {14}\\right)^2 = 0.24$$\n", + "$$\\text{Females: } 1 - \\left(\\frac {8} {11}\\right)^2 - \\left(\\frac {3} {11}\\right)^2 = 0.40$$\n", + "$$\\text{Weighted Average: } 0.24 \\left(\\frac {14} {25}\\right) + 0.40 \\left(\\frac {11} {25}\\right) = 0.31$$\n", + "\n", + "Evaluating the split on **age** using Gini index:\n", + "\n", + "$$\\text{30 or younger: } 1 - \\left(\\frac {4} {12}\\right)^2 - \\left(\\frac {8} {12}\\right)^2 = 0.44$$\n", + "$$\\text{31 or older: } 1 - \\left(\\frac {6} {13}\\right)^2 - \\left(\\frac {7} {13}\\right)^2 = 0.50$$\n", + "$$\\text{Weighted Average: } 0.44 \\left(\\frac {12} {25}\\right) + 0.50 \\left(\\frac {13} {25}\\right) = 0.47$$\n", + "\n", + "Again, the decision tree algorithm will try **every possible split**, and will choose the split that **reduces the Gini index (and thus increases the \"node purity\") the most.**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparing classification error rate and Gini index\n", + "\n", + "- Gini index is generally preferred because it will make splits that **increase node purity**, even if that split does not change the classification error rate.\n", + "- Node purity is important because we're interested in the **class proportions** in each region, since that's how we calculate the **predicted probability** of each class.\n", + "- scikit-learn's default splitting criteria for classification trees is Gini index.\n", + "\n", + "Note: There is another common splitting criteria called **cross-entropy**. It's numerically similar to Gini index, but slower to compute, thus it's not as popular as Gini index." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Building a classification tree in scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We'll build a classification tree using the Titanic data:" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
PassengerIdSurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarkedEmbarked_QEmbarked_S
0103Braund, Mr. Owen Harris12210A/5 211717.2500NaNS01
1211Cumings, Mrs. John Bradley (Florence Briggs Th...03810PC 1759971.2833C85C00
2313Heikkinen, Miss. Laina02600STON/O2. 31012827.9250NaNS01
3411Futrelle, Mrs. Jacques Heath (Lily May Peel)0351011380353.1000C123S01
4503Allen, Mr. William Henry135003734508.0500NaNS01
\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass \\\n", + "0 1 0 3 \n", + "1 2 1 1 \n", + "2 3 1 3 \n", + "3 4 1 1 \n", + "4 5 0 3 \n", + "\n", + " Name Sex Age SibSp Parch \\\n", + "0 Braund, Mr. Owen Harris 1 22 1 0 \n", + "1 Cumings, Mrs. John Bradley (Florence Briggs Th... 0 38 1 0 \n", + "2 Heikkinen, Miss. Laina 0 26 0 0 \n", + "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) 0 35 1 0 \n", + "4 Allen, Mr. William Henry 1 35 0 0 \n", + "\n", + " Ticket Fare Cabin Embarked Embarked_Q Embarked_S \n", + "0 A/5 21171 7.2500 NaN S 0 1 \n", + "1 PC 17599 71.2833 C85 C 0 0 \n", + "2 STON/O2. 3101282 7.9250 NaN S 0 1 \n", + "3 113803 53.1000 C123 S 0 1 \n", + "4 373450 8.0500 NaN S 0 1 " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in the data\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/titanic.csv'\n", + "titanic = pd.read_csv(url)\n", + "\n", + "# encode female as 0 and male as 1\n", + "titanic['Sex'] = titanic.Sex.map({'female':0, 'male':1})\n", + "\n", + "# fill in the missing values for age with the median age\n", + "titanic.Age.fillna(titanic.Age.median(), inplace=True)\n", + "\n", + "# create a DataFrame of dummy variables for Embarked\n", + "embarked_dummies = pd.get_dummies(titanic.Embarked, prefix='Embarked')\n", + "embarked_dummies.drop(embarked_dummies.columns[0], axis=1, inplace=True)\n", + "\n", + "# concatenate the original DataFrame and the dummy DataFrame\n", + "titanic = pd.concat([titanic, embarked_dummies], axis=1)\n", + "\n", + "# print the updated DataFrame\n", + "titanic.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- **Survived:** 0=died, 1=survived (response variable)\n", + "- **Pclass:** 1=first class, 2=second class, 3=third class\n", + " - What will happen if the tree splits on this feature?\n", + "- **Sex:** 0=female, 1=male\n", + "- **Age:** numeric value\n", + "- **Embarked:** C or Q or S" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define X and y\n", + "feature_cols = ['Pclass', 'Sex', 'Age', 'Embarked_Q', 'Embarked_S']\n", + "X = titanic[feature_cols]\n", + "y = titanic.Survived" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DecisionTreeClassifier(class_weight=None, criterion='gini', max_depth=3,\n", + " max_features=None, max_leaf_nodes=None, min_samples_leaf=1,\n", + " min_samples_split=2, min_weight_fraction_leaf=0.0,\n", + " random_state=1, splitter='best')" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit a classification tree with max_depth=3 on all data\n", + "from sklearn.tree import DecisionTreeClassifier\n", + "treeclf = DecisionTreeClassifier(max_depth=3, random_state=1)\n", + "treeclf.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a Graphviz file\n", + "export_graphviz(treeclf, out_file='tree_titanic.dot', feature_names=feature_cols)\n", + "\n", + "# At the command line, run this to convert to PNG:\n", + "# dot -Tpng tree_titanic.dot -o tree_titanic.png" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Tree for Titanic data](images/tree_titanic.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notice the split in the bottom right: the **same class** is predicted in both of its leaves. That split didn't affect the **classification error rate**, though it did increase the **node purity**, which is important because it increases the accuracy of our predicted probabilities." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "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", + "
featureimportance
0Pclass0.242664
1Sex0.655584
2Age0.064494
3Embarked_Q0.000000
4Embarked_S0.037258
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "0 Pclass 0.242664\n", + "1 Sex 0.655584\n", + "2 Age 0.064494\n", + "3 Embarked_Q 0.000000\n", + "4 Embarked_S 0.037258" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute the feature importances\n", + "pd.DataFrame({'feature':feature_cols, 'importance':treeclf.feature_importances_})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 3: Comparing decision trees with other models\n", + "\n", + "**Advantages of decision trees:**\n", + "\n", + "- Can be used for regression or classification\n", + "- Can be displayed graphically\n", + "- Highly interpretable\n", + "- Can be specified as a series of rules, and more closely approximate human decision-making than other models\n", + "- Prediction is fast\n", + "- Features don't need scaling\n", + "- Automatically learns feature interactions\n", + "- Tends to ignore irrelevant features\n", + "- Non-parametric (will outperform linear models if relationship between features and response is highly non-linear)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Trees versus linear models](images/tree_vs_linear.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Disadvantages of decision trees:**\n", + "\n", + "- Performance is (generally) not competitive with the best supervised learning methods\n", + "- Can easily overfit the training data (tuning is required)\n", + "- Small variations in the data can result in a completely different tree (high variance)\n", + "- Recursive binary splitting makes \"locally optimal\" decisions that may not result in a globally optimal tree\n", + "- Doesn't tend to work well if the classes are highly unbalanced\n", + "- Doesn't tend to work well with very small datasets" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/18_ensembling.ipynb b/notebooks/18_ensembling.ipynb new file mode 100644 index 0000000..23e157d --- /dev/null +++ b/notebooks/18_ensembling.ipynb @@ -0,0 +1,2324 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Ensembling\n", + "\n", + "*Adapted from Chapter 8 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/)*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why are we learning about ensembling?\n", + "\n", + "- Very popular method for improving the predictive performance of machine learning models\n", + "- Provides a foundation for understanding more sophisticated models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Lesson objectives\n", + "\n", + "Students will be able to:\n", + "\n", + "- Define ensembling and its requirements\n", + "- Identify the two basic methods of ensembling\n", + "- Decide whether manual ensembling is a useful approach for a given problem\n", + "- Explain bagging and how it can be applied to decision trees\n", + "- Explain how out-of-bag error and feature importances are calculated from bagged trees\n", + "- Explain the difference between bagged trees and Random Forests\n", + "- Build and tune a Random Forest model in scikit-learn\n", + "- Decide whether a decision tree or a Random Forest is a better model for a given problem" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 1: Introduction\n", + "\n", + "Let's pretend that instead of building a single model to solve a binary classification problem, you created **five independent models**, and each model was correct about 70% of the time. If you combined these models into an \"ensemble\" and used their majority vote as a prediction, how often would the ensemble be correct?" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1]\n", + "[1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 1 0 0 0]\n", + "[1 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1]\n", + "[1 1 0 0 0 0 1 1 0 1 1 1 1 1 1 0 1 1 1 0]\n", + "[0 0 1 0 0 0 1 0 1 0 0 0 1 1 1 1 1 1 1 1]\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "# set a seed for reproducibility\n", + "np.random.seed(1234)\n", + "\n", + "# generate 1000 random numbers (between 0 and 1) for each model, representing 1000 observations\n", + "mod1 = np.random.rand(1000)\n", + "mod2 = np.random.rand(1000)\n", + "mod3 = np.random.rand(1000)\n", + "mod4 = np.random.rand(1000)\n", + "mod5 = np.random.rand(1000)\n", + "\n", + "# each model independently predicts 1 (the \"correct response\") if random number was at least 0.3\n", + "preds1 = np.where(mod1 > 0.3, 1, 0)\n", + "preds2 = np.where(mod2 > 0.3, 1, 0)\n", + "preds3 = np.where(mod3 > 0.3, 1, 0)\n", + "preds4 = np.where(mod4 > 0.3, 1, 0)\n", + "preds5 = np.where(mod5 > 0.3, 1, 0)\n", + "\n", + "# print the first 20 predictions from each model\n", + "print preds1[:20]\n", + "print preds2[:20]\n", + "print preds3[:20]\n", + "print preds4[:20]\n", + "print preds5[:20]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 1 1 0 1 1]\n" + ] + } + ], + "source": [ + "# average the predictions and then round to 0 or 1\n", + "ensemble_preds = np.round((preds1 + preds2 + preds3 + preds4 + preds5)/5.0).astype(int)\n", + "\n", + "# print the ensemble's first 20 predictions\n", + "print ensemble_preds[:20]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.713\n", + "0.665\n", + "0.717\n", + "0.712\n", + "0.687\n" + ] + } + ], + "source": [ + "# how accurate was each individual model?\n", + "print preds1.mean()\n", + "print preds2.mean()\n", + "print preds3.mean()\n", + "print preds4.mean()\n", + "print preds5.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.841\n" + ] + } + ], + "source": [ + "# how accurate was the ensemble?\n", + "print ensemble_preds.mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Note:** As you add more models to the voting process, the probability of error decreases, which is known as [Condorcet's Jury Theorem](http://en.wikipedia.org/wiki/Condorcet%27s_jury_theorem)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## What is ensembling?\n", + "\n", + "**Ensemble learning (or \"ensembling\")** is the process of combining several predictive models in order to produce a combined model that is more accurate than any individual model.\n", + "\n", + "- **Regression:** take the average of the predictions\n", + "- **Classification:** take a vote and use the most common prediction, or take the average of the predicted probabilities\n", + "\n", + "For ensembling to work well, the models must have the following characteristics:\n", + "\n", + "- **Accurate:** they outperform the null model\n", + "- **Independent:** their predictions are generated using different processes\n", + "\n", + "**The big idea:** If you have a collection of individually imperfect (and independent) models, the \"one-off\" mistakes made by each model are probably not going to be made by the rest of the models, and thus the mistakes will be discarded when averaging the models.\n", + "\n", + "There are two basic **methods for ensembling:**\n", + "\n", + "- Manually ensemble your individual models\n", + "- Use a model that ensembles for you" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 2: Manual ensembling\n", + "\n", + "What makes a good manual ensemble?\n", + "\n", + "- Different types of **models**\n", + "- Different combinations of **features**\n", + "- Different **tuning parameters**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Machine learning flowchart](images/crowdflower_ensembling.jpg)\n", + "\n", + "*Machine learning flowchart created by the [winner](https://github.com/ChenglongChen/Kaggle_CrowdFlower) of Kaggle's [CrowdFlower competition](https://www.kaggle.com/c/crowdflower-search-relevance)*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing manual ensembling with a single model approach\n", + "\n", + "**Advantages of manual ensembling:**\n", + "\n", + "- Increases predictive accuracy\n", + "- Easy to get started\n", + "\n", + "**Disadvantages of manual ensembling:**\n", + "\n", + "- Decreases interpretability\n", + "- Takes longer to train\n", + "- Takes longer to predict\n", + "- More complex to automate and maintain\n", + "- Small gains in accuracy may not be worth the added complexity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 3: Bagging\n", + "\n", + "The primary weakness of **decision trees** is that they don't tend to have the best predictive accuracy. This is partially due to **high variance**, meaning that different splits in the training data can lead to very different trees.\n", + "\n", + "**Bagging** is a general purpose procedure for reducing the variance of a machine learning method, but is particularly useful for decision trees. Bagging is short for **bootstrap aggregation**, meaning the aggregation of bootstrap samples.\n", + "\n", + "What is a **bootstrap sample**? A random sample with replacement:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20]\n", + "[ 6 12 13 9 10 12 6 16 1 17 2 13 8 14 7 19 6 19 12 11]\n" + ] + } + ], + "source": [ + "# set a seed for reproducibility\n", + "np.random.seed(1)\n", + "\n", + "# create an array of 1 through 20\n", + "nums = np.arange(1, 21)\n", + "print nums\n", + "\n", + "# sample that array 20 times with replacement\n", + "print np.random.choice(a=nums, size=20, replace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**How does bagging work (for decision trees)?**\n", + "\n", + "1. Grow B trees using B bootstrap samples from the training data.\n", + "2. Train each tree on its bootstrap sample and make predictions.\n", + "3. Combine the predictions:\n", + " - Average the predictions for **regression trees**\n", + " - Take a vote for **classification trees**\n", + "\n", + "Notes:\n", + "\n", + "- **Each bootstrap sample** should be the same size as the original training set.\n", + "- **B** should be a large enough value that the error seems to have \"stabilized\".\n", + "- The trees are **grown deep** so that they have low bias/high variance.\n", + "\n", + "Bagging increases predictive accuracy by **reducing the variance**, similar to how cross-validation reduces the variance associated with train/test split (for estimating out-of-sample error) by splitting many times an averaging the results." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Manually implementing bagged decision trees (with B=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
priceyearmilesdoorsvtype
02200020121300020
11400020103000020
21300020107350040
3950020097800040
4900020074700040
54000200612400020
63000200417700040
72000200420900041
83000200313800020
91900200316000040
102500200319000021
11500020016200040
121800199916300021
131300199713800040
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype\n", + "0 22000 2012 13000 2 0\n", + "1 14000 2010 30000 2 0\n", + "2 13000 2010 73500 4 0\n", + "3 9500 2009 78000 4 0\n", + "4 9000 2007 47000 4 0\n", + "5 4000 2006 124000 2 0\n", + "6 3000 2004 177000 4 0\n", + "7 2000 2004 209000 4 1\n", + "8 3000 2003 138000 2 0\n", + "9 1900 2003 160000 4 0\n", + "10 2500 2003 190000 2 1\n", + "11 5000 2001 62000 4 0\n", + "12 1800 1999 163000 2 1\n", + "13 1300 1997 138000 4 0" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in and prepare the vehicle training data\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_train.csv'\n", + "train = pd.read_csv(url)\n", + "train['vtype'] = train.vtype.map({'car':0, 'truck':1})\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[array([13, 2, 12, 2, 6, 1, 3, 10, 11, 9, 6, 1, 0, 1]),\n", + " array([ 9, 0, 0, 9, 3, 13, 4, 0, 0, 4, 1, 7, 3, 2]),\n", + " array([ 4, 7, 2, 4, 8, 13, 0, 7, 9, 3, 12, 12, 4, 6]),\n", + " array([ 1, 5, 6, 11, 2, 1, 12, 8, 3, 10, 5, 0, 11, 2]),\n", + " array([10, 10, 6, 13, 2, 4, 11, 11, 13, 12, 4, 6, 13, 3]),\n", + " array([10, 0, 6, 4, 7, 11, 6, 7, 1, 11, 10, 5, 7, 9]),\n", + " array([ 2, 4, 8, 1, 12, 2, 1, 1, 3, 12, 5, 9, 0, 8]),\n", + " array([11, 1, 6, 3, 3, 11, 5, 9, 7, 9, 2, 3, 11, 3]),\n", + " array([ 3, 8, 6, 9, 7, 6, 3, 9, 6, 12, 6, 11, 6, 1]),\n", + " array([13, 10, 3, 4, 3, 1, 13, 0, 5, 8, 13, 6, 11, 8])]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# set a seed for reproducibility\n", + "np.random.seed(123)\n", + "\n", + "# create ten bootstrap samples (will be used to select rows from the DataFrame)\n", + "samples = [np.random.choice(a=14, size=14, replace=True) for _ in range(1, 11)]\n", + "samples" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
priceyearmilesdoorsvtype
131300199713800040
21300020107350040
121800199916300021
21300020107350040
63000200417700040
11400020103000020
3950020097800040
102500200319000021
11500020016200040
91900200316000040
63000200417700040
11400020103000020
02200020121300020
11400020103000020
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype\n", + "13 1300 1997 138000 4 0\n", + "2 13000 2010 73500 4 0\n", + "12 1800 1999 163000 2 1\n", + "2 13000 2010 73500 4 0\n", + "6 3000 2004 177000 4 0\n", + "1 14000 2010 30000 2 0\n", + "3 9500 2009 78000 4 0\n", + "10 2500 2003 190000 2 1\n", + "11 5000 2001 62000 4 0\n", + "9 1900 2003 160000 4 0\n", + "6 3000 2004 177000 4 0\n", + "1 14000 2010 30000 2 0\n", + "0 22000 2012 13000 2 0\n", + "1 14000 2010 30000 2 0" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show the rows for the first decision tree\n", + "train.iloc[samples[0], :]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "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", + "
priceyearmilesdoorsvtype
03000200313000041
1600020058250040
21200020106000020
\n", + "
" + ], + "text/plain": [ + " price year miles doors vtype\n", + "0 3000 2003 130000 4 1\n", + "1 6000 2005 82500 4 0\n", + "2 12000 2010 60000 2 0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in and prepare the vehicle testing data\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/vehicles_test.csv'\n", + "test = pd.read_csv(url)\n", + "test['vtype'] = test.vtype.map({'car':0, 'truck':1})\n", + "test" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 1300., 5000., 14000.],\n", + " [ 1300., 1300., 13000.],\n", + " [ 2000., 9000., 13000.],\n", + " [ 4000., 5000., 13000.],\n", + " [ 1300., 5000., 13000.],\n", + " [ 4000., 5000., 14000.],\n", + " [ 4000., 9000., 14000.],\n", + " [ 4000., 5000., 13000.],\n", + " [ 3000., 5000., 9500.],\n", + " [ 4000., 5000., 9000.]])" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.tree import DecisionTreeRegressor\n", + "\n", + "# grow each tree deep\n", + "treereg = DecisionTreeRegressor(max_depth=None, random_state=123)\n", + "\n", + "# list for storing predicted price from each tree\n", + "predictions = []\n", + "\n", + "# define testing data\n", + "X_test = test.iloc[:, 1:]\n", + "y_test = test.iloc[:, 0]\n", + "\n", + "# grow one tree for each bootstrap sample and make predictions on testing data\n", + "for sample in samples:\n", + " X_train = train.iloc[sample, 1:]\n", + " y_train = train.iloc[sample, 0]\n", + " treereg.fit(X_train, y_train)\n", + " y_pred = treereg.predict(X_test)\n", + " predictions.append(y_pred)\n", + "\n", + "# convert predictions from list to NumPy array\n", + "predictions = np.array(predictions)\n", + "predictions" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 2890., 5430., 12550.])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# average predictions\n", + "np.mean(predictions, axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "461.6997581401431" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE\n", + "from sklearn import metrics\n", + "y_pred = np.mean(predictions, axis=0)\n", + "np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bagged decision trees in scikit-learn (with B=500)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define the training and testing sets\n", + "X_train = train.iloc[:, 1:]\n", + "y_train = train.iloc[:, 0]\n", + "X_test = test.iloc[:, 1:]\n", + "y_test = test.iloc[:, 0]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# instruct BaggingRegressor to use DecisionTreeRegressor as the \"base estimator\"\n", + "from sklearn.ensemble import BaggingRegressor\n", + "bagreg = BaggingRegressor(DecisionTreeRegressor(), n_estimators=500, bootstrap=True, oob_score=True, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 3351.2, 5384.4, 12971. ])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fit and predict\n", + "bagreg.fit(X_train, y_train)\n", + "y_pred = bagreg.predict(X_test)\n", + "y_pred" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "694.05710619996307" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate RMSE\n", + "np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Estimating out-of-sample error\n", + "\n", + "For bagged models, out-of-sample error can be estimated without using **train/test split** or **cross-validation**!\n", + "\n", + "On average, each bagged tree uses about **two-thirds** of the observations. For each tree, the **remaining observations** are called \"out-of-bag\" observations." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([13, 2, 12, 2, 6, 1, 3, 10, 11, 9, 6, 1, 0, 1])" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show the first bootstrap sample\n", + "samples[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "set([0, 1, 2, 3, 6, 9, 10, 11, 12, 13])\n", + "set([0, 1, 2, 3, 4, 7, 9, 13])\n", + "set([0, 2, 3, 4, 6, 7, 8, 9, 12, 13])\n", + "set([0, 1, 2, 3, 5, 6, 8, 10, 11, 12])\n", + "set([2, 3, 4, 6, 10, 11, 12, 13])\n", + "set([0, 1, 4, 5, 6, 7, 9, 10, 11])\n", + "set([0, 1, 2, 3, 4, 5, 8, 9, 12])\n", + "set([1, 2, 3, 5, 6, 7, 9, 11])\n", + "set([1, 3, 6, 7, 8, 9, 11, 12])\n", + "set([0, 1, 3, 4, 5, 6, 8, 10, 11, 13])\n" + ] + } + ], + "source": [ + "# show the \"in-bag\" observations for each sample\n", + "for sample in samples:\n", + " print set(sample)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4, 5, 7, 8]\n", + "[5, 6, 8, 10, 11, 12]\n", + "[1, 5, 10, 11]\n", + "[4, 7, 9, 13]\n", + "[0, 1, 5, 7, 8, 9]\n", + "[2, 3, 8, 12, 13]\n", + "[6, 7, 10, 11, 13]\n", + "[0, 4, 8, 10, 12, 13]\n", + "[0, 2, 4, 5, 10, 13]\n", + "[2, 7, 9, 12]\n" + ] + } + ], + "source": [ + "# show the \"out-of-bag\" observations for each sample\n", + "for sample in samples:\n", + " print sorted(set(range(14)) - set(sample))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How to calculate **\"out-of-bag error\":**\n", + "\n", + "1. For every observation in the training data, predict its response value using **only** the trees in which that observation was out-of-bag. Average those predictions (for regression) or take a vote (for classification).\n", + "2. Compare all predictions to the actual response values in order to compute the out-of-bag error.\n", + "\n", + "When B is sufficiently large, the **out-of-bag error** is an accurate estimate of **out-of-sample error**." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7661434140978729" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute the out-of-bag R-squared score (not MSE, unfortunately!) for B=500\n", + "bagreg.oob_score_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Estimating feature importance\n", + "\n", + "Bagging increases **predictive accuracy**, but decreases **model interpretability** because it's no longer possible to visualize the tree to understand the importance of each feature.\n", + "\n", + "However, we can still obtain an overall summary of **feature importance** from bagged models:\n", + "\n", + "- **Bagged regression trees:** calculate the total amount that **MSE** is decreased due to splits over a given feature, averaged over all trees\n", + "- **Bagged classification trees:** calculate the total amount that **Gini index** is decreased due to splits over a given feature, averaged over all trees" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 4: Random Forests\n", + "\n", + "Random Forests is a **slight variation of bagged trees** that has even better performance:\n", + "\n", + "- Exactly like bagging, we create an ensemble of decision trees using bootstrapped samples of the training set.\n", + "- However, when building each tree, each time a split is considered, a **random sample of m features** is chosen as split candidates from the **full set of p features**. The split is only allowed to use **one of those m features**.\n", + " - A new random sample of features is chosen for **every single tree at every single split**.\n", + " - For **classification**, m is typically chosen to be the square root of p.\n", + " - For **regression**, m is typically chosen to be somewhere between p/3 and p.\n", + "\n", + "What's the point?\n", + "\n", + "- Suppose there is **one very strong feature** in the data set. When using bagged trees, most of the trees will use that feature as the top split, resulting in an ensemble of similar trees that are **highly correlated**.\n", + "- Averaging highly correlated quantities does not significantly reduce variance (which is the entire goal of bagging).\n", + "- By randomly leaving out candidate features from each split, **Random Forests \"decorrelates\" the trees**, such that the averaging process can reduce the variance of the resulting model." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Part 5: Building and tuning decision trees and Random Forests\n", + "\n", + "- Major League Baseball player data from 1986-87: [data](https://github.com/justmarkham/DAT8/blob/master/data/hitters.csv), [data dictionary](https://cran.r-project.org/web/packages/ISLR/ISLR.pdf) (page 7)\n", + "- Each observation represents a player\n", + "- **Goal:** Predict player salary" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Preparing the data" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read in the data\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/hitters.csv'\n", + "hitters = pd.read_csv(url)\n", + "\n", + "# remove rows with missing values\n", + "hitters.dropna(inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
AtBatHitsHmRunRunsRBIWalksYearsCAtBatCHitsCHmRunCRunsCRBICWalksLeagueDivisionPutOutsAssistsErrorsSalaryNewLeague
131581724383914344983569321414375NW6324310475.0N
2479130186672763162445763224266263AW8808214480.0A
3496141206578371156281575225828838354NE200113500.0N
43218710394230239610112484633NE80540491.5N
55941694745135114408113319501336194AW28242125750.0A
\n", + "
" + ], + "text/plain": [ + " AtBat Hits HmRun Runs RBI Walks Years CAtBat CHits CHmRun CRuns \\\n", + "1 315 81 7 24 38 39 14 3449 835 69 321 \n", + "2 479 130 18 66 72 76 3 1624 457 63 224 \n", + "3 496 141 20 65 78 37 11 5628 1575 225 828 \n", + "4 321 87 10 39 42 30 2 396 101 12 48 \n", + "5 594 169 4 74 51 35 11 4408 1133 19 501 \n", + "\n", + " CRBI CWalks League Division PutOuts Assists Errors Salary NewLeague \n", + "1 414 375 N W 632 43 10 475.0 N \n", + "2 266 263 A W 880 82 14 480.0 A \n", + "3 838 354 N E 200 11 3 500.0 N \n", + "4 46 33 N E 805 40 4 91.5 N \n", + "5 336 194 A W 282 421 25 750.0 A " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hitters.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
AtBatHitsHmRunRunsRBIWalksYearsCAtBatCHitsCHmRunCRunsCRBICWalksLeagueDivisionPutOutsAssistsErrorsSalaryNewLeague
131581724383914344983569321414375006324310475.00
2479130186672763162445763224266263108808214480.01
349614120657837115628157522582883835401200113500.00
432187103942302396101124846330180540491.50
559416947451351144081133195013361941028242125750.01
\n", + "
" + ], + "text/plain": [ + " AtBat Hits HmRun Runs RBI Walks Years CAtBat CHits CHmRun CRuns \\\n", + "1 315 81 7 24 38 39 14 3449 835 69 321 \n", + "2 479 130 18 66 72 76 3 1624 457 63 224 \n", + "3 496 141 20 65 78 37 11 5628 1575 225 828 \n", + "4 321 87 10 39 42 30 2 396 101 12 48 \n", + "5 594 169 4 74 51 35 11 4408 1133 19 501 \n", + "\n", + " CRBI CWalks League Division PutOuts Assists Errors Salary NewLeague \n", + "1 414 375 0 0 632 43 10 475.0 0 \n", + "2 266 263 1 0 880 82 14 480.0 1 \n", + "3 838 354 0 1 200 11 3 500.0 0 \n", + "4 46 33 0 1 805 40 4 91.5 0 \n", + "5 336 194 1 0 282 421 25 750.0 1 " + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# encode categorical variables as integers\n", + "hitters['League'] = pd.factorize(hitters.League)[0]\n", + "hitters['Division'] = pd.factorize(hitters.Division)[0]\n", + "hitters['NewLeague'] = pd.factorize(hitters.NewLeague)[0]\n", + "hitters.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nIgkKCiIikvAPwlK5mqXLiQAAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot of Years versus Hits colored by Salary\n", + "hitters.plot(kind='scatter', x='Years', y='Hits', c='Salary', colormap='jet', xlim=(0, 25), ylim=(0, 250))" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index([u'AtBat', u'Hits', u'HmRun', u'Runs', u'RBI', u'Walks', u'Years',\n", + " u'League', u'Division', u'PutOuts', u'Assists', u'Errors',\n", + " u'NewLeague'],\n", + " dtype='object')" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# define features: exclude career statistics (which start with \"C\") and the response (Salary)\n", + "feature_cols = hitters.columns[hitters.columns.str.startswith('C') == False].drop('Salary')\n", + "feature_cols" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# define X and y\n", + "X = hitters[feature_cols]\n", + "y = hitters.Salary" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predicting salary with a decision tree\n", + "\n", + "Find the best **max_depth** for a decision tree using cross-validation:" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# list of values to try for max_depth\n", + "max_depth_range = range(1, 21)\n", + "\n", + "# list to store the average RMSE for each value of max_depth\n", + "RMSE_scores = []\n", + "\n", + "# use 10-fold cross-validation with each value of max_depth\n", + "from sklearn.cross_validation import cross_val_score\n", + "for depth in max_depth_range:\n", + " treereg = DecisionTreeRegressor(max_depth=depth, random_state=1)\n", + " MSE_scores = cross_val_score(treereg, X, y, cv=10, scoring='mean_squared_error')\n", + " RMSE_scores.append(np.mean(np.sqrt(-MSE_scores)))" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot max_depth (x-axis) versus RMSE (y-axis)\n", + "plt.plot(max_depth_range, RMSE_scores)\n", + "plt.xlabel('max_depth')\n", + "plt.ylabel('RMSE (lower is better)')" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(340.03416870475201, 2)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show the best RMSE and the corresponding max_depth\n", + "sorted(zip(RMSE_scores, max_depth_range))[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DecisionTreeRegressor(criterion='mse', max_depth=2, max_features=None,\n", + " max_leaf_nodes=None, min_samples_leaf=1, min_samples_split=2,\n", + " min_weight_fraction_leaf=0.0, random_state=1, splitter='best')" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# max_depth=2 was best, so fit a tree using that parameter\n", + "treereg = DecisionTreeRegressor(max_depth=2, random_state=1)\n", + "treereg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "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", + "
featureimportance
0AtBat0.000000
2HmRun0.000000
3Runs0.000000
4RBI0.000000
5Walks0.000000
7League0.000000
8Division0.000000
9PutOuts0.000000
10Assists0.000000
11Errors0.000000
12NewLeague0.000000
6Years0.488391
1Hits0.511609
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "0 AtBat 0.000000\n", + "2 HmRun 0.000000\n", + "3 Runs 0.000000\n", + "4 RBI 0.000000\n", + "5 Walks 0.000000\n", + "7 League 0.000000\n", + "8 Division 0.000000\n", + "9 PutOuts 0.000000\n", + "10 Assists 0.000000\n", + "11 Errors 0.000000\n", + "12 NewLeague 0.000000\n", + "6 Years 0.488391\n", + "1 Hits 0.511609" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute feature importances\n", + "pd.DataFrame({'feature':feature_cols, 'importance':treereg.feature_importances_}).sort('importance')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predicting salary with a Random Forest" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "RandomForestRegressor(bootstrap=True, criterion='mse', max_depth=None,\n", + " max_features='auto', max_leaf_nodes=None, min_samples_leaf=1,\n", + " min_samples_split=2, min_weight_fraction_leaf=0.0,\n", + " n_estimators=10, n_jobs=1, oob_score=False, random_state=None,\n", + " verbose=0, warm_start=False)" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.ensemble import RandomForestRegressor\n", + "rfreg = RandomForestRegressor()\n", + "rfreg" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tuning n_estimators\n", + "\n", + "One important tuning parameter is **n_estimators**, which is the number of trees that should be grown. It should be a large enough value that the error seems to have \"stabilized\"." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# list of values to try for n_estimators\n", + "estimator_range = range(10, 310, 10)\n", + "\n", + "# list to store the average RMSE for each value of n_estimators\n", + "RMSE_scores = []\n", + "\n", + "# use 5-fold cross-validation with each value of n_estimators (WARNING: SLOW!)\n", + "for estimator in estimator_range:\n", + " rfreg = RandomForestRegressor(n_estimators=estimator, random_state=1)\n", + " MSE_scores = cross_val_score(rfreg, X, y, cv=5, scoring='mean_squared_error')\n", + " RMSE_scores.append(np.mean(np.sqrt(-MSE_scores)))" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot n_estimators (x-axis) versus RMSE (y-axis)\n", + "plt.plot(estimator_range, RMSE_scores)\n", + "plt.xlabel('n_estimators')\n", + "plt.ylabel('RMSE (lower is better)')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tuning max_features\n", + "\n", + "The other important tuning parameter is **max_features**, which is the number of features that should be considered at each split." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# list of values to try for max_features\n", + "feature_range = range(1, len(feature_cols)+1)\n", + "\n", + "# list to store the average RMSE for each value of max_features\n", + "RMSE_scores = []\n", + "\n", + "# use 10-fold cross-validation with each value of max_features (WARNING: SLOW!)\n", + "for feature in feature_range:\n", + " rfreg = RandomForestRegressor(n_estimators=150, max_features=feature, random_state=1)\n", + " MSE_scores = cross_val_score(rfreg, X, y, cv=10, scoring='mean_squared_error')\n", + " RMSE_scores.append(np.mean(np.sqrt(-MSE_scores)))" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYcAAAEQCAYAAABbfbiFAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xm8nPPd//HXOxtiSWwhiIqtxE6llrQ9VCJFUNqiy4/q\n4q7W1irCTeLW2qt3UW3vokVraS2pNUTqWKpCSYLEFgQJja0kCNk+vz++15Fx5mTOnGXONTPn/Xw8\n5pHruuZaPknOmc98d0UEZmZmhXrkHYCZmVUfJwczMyvi5GBmZkWcHMzMrIiTg5mZFXFyMDOzIhVL\nDpKWlzRJ0hRJ0yWd1ez9n0haImm1gmOjJT0n6WlJIyoVm5mZldarUjeOiA8l7RYRH0jqBTwgaVhE\nPCBpEDAceKnpfElDgIOAIcC6wN2SNo2IJZWK0czMWlbRaqWI+CDb7AP0BN7O9i8ATmh2+n7ANRGx\nMCJmAjOAoZWMz8zMWlbR5CCph6QpwBzgnoiYLmk/YFZEPN7s9HWAWQX7s0glCDMz62IVq1YCyKqE\ntpXUD7hT0l7AaKCwPUGlblHJ+MzMrGUVTQ5NIuJdSbcB2wODgamSANYDHpX0WWA2MKjgsvWyY58g\nyQnDzKwdIqLUl/FPqGRvpTUk9c+2VyA1QP8zItaKiMERMZhUdbR9RMwBbgYOltRH0mBgE+Dhlu4d\nETX7GjNmTO4xdMfYHX/+L8ef76utKllyGAhcIakHKQldFRETm53zccSR2iP+AkwHFgFHRnv+RmZm\n1mGV7Mr6BKkaqdQ5GzbbPxM4s1IxmZlZeTxCuos1NDTkHUK71XLs4Pjz5vhri2qt5kaSa5vMzNpI\nElENDdJmZla7nBzMzKyIk4OZmRVxcjAzsyJODmZmVsTJwczMijg5mJlZEScHMzMr4uRgZmZFnBzM\nzKyIk4OZmRVxcjAzsyJODmZmVsTJwczMijg5mJlZEScHMzMr4uRgZmZFnBzMzKyIk4OZmRVxcjAz\nsyJODmZmVsTJwczMijg5mJlZEScHMzMr4uRgZmZFnBzMzKxIxZKDpOUlTZI0RdJ0SWdlx8+QNDU7\nPlHSoIJrRkt6TtLTkkZUKrZlufJKmD27q59qZlZ9KpYcIuJDYLeI2BbYGthN0jDg3IjYJjs+DhgD\nIGkIcBAwBBgJXCKpS0s2EyfCuHFd+UQzs+pU0Q/fiPgg2+wD9ATejoh5BaesBLyZbe8HXBMRCyNi\nJjADGFrJ+JobNQpuuaUrn2hmVp0qmhwk9ZA0BZgD3BMR07PjP5f0MnAYcFZ2+jrArILLZwHrVjK+\n5kaMgH/8A+bNa/1cM7N6VumSw5Ks+mg94POSGrLjp0TE+sAfgP8tdYtKxtfcKqvALrvAXXd15VPN\nzKpPr654SES8K+k24DNAY8FbVwO3Z9uzgUEF762XHSsyduzYj7cbGhpoaGjotFibqpYOPLDTbmlm\n1uUaGxtpbGxs9/WKqMyXc0lrAIsi4h1JKwB3AqcDL0XEjOyco4ChEfGtrEH6alI7w7rA3cDG0SxA\nSc0PdaqXXoIdd4TXXoOePSv2GDOzLiWJiFC551ey5DAQuCLrcdQDuCoiJkq6XtKngcXA88APACJi\nuqS/ANOBRcCRFc0Cy/CpT8Haa8OkSamKycysO6pYyaFSKl1yADjlFFiyBM46q/VzzcxqQVtLDh4h\n3YJRo+Dmm/OOwswsP04OLRg6FN56C154Ie9IzMzy4eTQgh49YO+9PSDOzLovJ4dl8GhpM+vO3CC9\nDO+/DwMHwiuvQL9+FX+cmVlFuUG6k6y4IgwbBnfemXckZmZdz8mhBFctmVl35WqlEmbNgm22gTlz\noFeXTDRiZlYZrlbqROutl0ZMP/hg3pGYmXUtJ4dWuGrJzLojJ4dWODmYWXfk5NCK7beHuXPhuefy\njsTMrOs4ObSiRw/YZx+XHsyse3FyKMO++3oiPjPrXtyVtQzz58Naa6WFgFZdtUsfbWbWKdyVtQJW\nWAEaGuCOO/KOxMysa5SdHCQtL2m5SgZTzdxrycy6k2VWK2XLe+4PHALsQkokIi3v+U/gz8C4rq7j\nyaNaCdKa0ltskUZL9+7d5Y83M+uQzqxWagR2AM4HNoyIgRGxNrBhdmxH4N4OxFpTBg6EjTaCBx7I\nOxIzs8orVXJYLiI+KnlxGed0trxKDgBnnAH/+Q9ccEEujzcza7dOKzlExEeSekl6utQ5bQ2wljWt\nLV1jHbzMzNqsZIN0RCwCnpH0qS6Kp6ptsw0sWABPLzNdmpnVh3Imol4NmCbpYeD97FhExL6VC6s6\nSUtHS2++ed7RmJlVTquD4CQ1tHA4IiKXxug82xwgjXU480y4//7cQjAza7O2tjmUNUJa0gbAxhFx\nt6S+QK+ImNvuKDsg7+Tw4YdptPQLL8Dqq+cWhplZm3T6CGlJ3wf+CvwuO7QecFP7wqt9yy8Pu+8O\nt9+edyRmZpVTzgjpHwLDgLkAEfEsMKCSQVU7T8RnZvWunOTwUWGXVUm9gG7dmXPvvWHChNRzycys\nHpWTHO6VdArQV9JwUhVTt55laMCA1Fvp3m4zPtzMuptyksOJwBvAE8ARwO3Af7d2UTZR3yRJUyRN\nl3RWdvw8SU9JmirpRkn9Cq4ZLek5SU9LGtG+v1LX8ER8ZlbPyunKekxE/Kq1Y8u4tm9EfJBVRT0A\nHA+sAEyMiCWSzgaIiJMkDQGuJs3ZtC5wN7BpRCxpds9ceys1eeKJ1Pbwwgtp/IOZWTWrxHoOh7Vw\n7Nvl3DwiPsg2+wA9gbcjYkLBB/4kUu8ngP2AayJiYUTMBGYAQ8t5Th623DJNozFtWt6RmJl1vmWO\nkJZ0CPB1YLCkwgqUlYG3yrl5Nu33Y8BGwG8iYnqzUw4Hrsm21wEeKnhvFqkEUZWkpb2Wttwy72jM\nzDpXqekzHgReA9YgTdHdVByZCzxezs2zEsK2WbvCnZIaIqIRIGvkXhARV5e6RUsHx44d+/F2Q0MD\nDQ0N5YTT6UaNgtNOg5NPzuXxZmbL1NjYSGNjY7uvL6fN4dyIOKHZsXMi4sQ2PUg6FZgfEedLOgz4\nHvDFiPgwe/8kgIg4O9sfD4yJiEnN7lMVbQ6QurIOGADPPpv+NDOrVpVocxjewrG9yghkDUn9s+0V\nsvtMljQS+CmwX1NiyNwMHCypj6TBwCbAw2XEl5s+fWD4cLjttrwjMTPrXKXaHH4AHAlsJOmJgrdW\nBv5Rxr0HAldk7Q49gKsiYqKk50gN1BOUuvn8MyKOjIjpkv4CTAcWAUdWTRGhhFGjYNw4+HZZTfRm\nZrWh1Epw/YBVgbNJYx2aiiPzIqKsBulKqKZqJYA330zLh86Zk+ZdMjOrRp25Ety7ETEzIg4G1gd2\ny7qY9siqfQxYYw3YemvoQLuPmVnVKWdW1rHACcDo7FAf4M8VjKnmNC0famZWL8ppkP4yaYDa+wAR\nMRtYqZJB1ZpRo+DWW722tJnVj3JnZf14CgtJK1Ywnpq02Wap59LUqXlHYmbWOcpJDn+V9Dugf7bw\nz0Tg0sqGVVskT8RnZvWl3GVCRwBNs6TeGRETKhpV6ViqqrdSk7//HU46CR6u6pEZZtZdVWoN6YGk\nSfACeDgi/t3+EDumWpPDwoVpbelp02DgwLyjMTP7pEqsIf1d0uypBwAHApMkfaf9Idan3r1hzz1T\nw7SZWa0rZ26lZ4Gdmwa+SVqdNKp50y6Ir6V4qrLkAHD11XDtte7WambVpxJzK70JvFew/152zJr5\n0pfSYLj58/OOxMysY0rNrfSTbHMGqSppXLa/H2VO2d3drLoqbL89TJwI++yTdzRmZu1XquSwMmmw\n2/PAOFJjdAB/A16ofGi1yV1azawelNVbqZpUc5sDpLUddtsNZs3y2tJmVj0q0eZgbbDpprDyyvDY\nY3lHYmbWfk4OFeCJ+Mys1jk5VIDbHcys1pUzCO48SatI6i1poqQ3JX2rK4KrVbvsAi+9lNodzMxq\nUTklhxERMRfYB5gJbERaA9qWoVevNObBo6XNrFaVkxyaxkLsA1wfEe+SurRaCa5aMrNaVk5yuEXS\n08AOwERJA4APKxtW7Rs5Eu6/H95/P+9IzMzartXkEBEnAbsCO0TEAtKKcPtVOrBa168fDB0KE3Kb\n3NzMrP1KTZ/xxYiYKOlAsmok6eNhXQHc2AXx1bSmqqX99887EjOztllmcgA+T1r1bRQttzE4ObRi\n1Cg46yxYsgR6uNOwmdUQT59RYVtsAZdfDp/9bN6RmFl35ukzqox7LZlZLXJyqLB993VyMLPaUzI5\nSOohaZeuCqYeffaz8NpracS0mVmtKJkcImIJcEkXxVKXevaEvfZy6cHMaks51Up3S/pKQTfWskha\nXtIkSVMkTZd0Vnb8q5KmSVosaftm14yW9JykpyWNaMvzqpnbHcys1rTaW0nSe0BfYDFLR0ZHRKzS\n6s2lvhHxgaRewAPA8aT1p5cAvwN+EhGPZecOAa4GdgTWBe4GNs1KL4X3rKneSgDz5sG668Ls2Wmt\nBzOzrtbpvZUiYqWI6BERvSNi5ezVamLIrv0g2+wD9ATejoinI+LZFk7fD7gmIhZGxEzS2tVDy/tr\nVLeVV4add4a77so7EjOz8pQzZXcPSd+SdFq2v76ksj60s2unAHOAeyJieonT1wEKJ7meRSpB1AX3\nWjKzWlJqhHSTS0jVQLsD/wO8lx37TGsXZlVC20rqB9wpqSEiGtsQX4v1R2PHjv14u6GhgYaGhjbc\nMh/77AOnnw6LF6dGajOzSmpsbKSxsbHd15fT5jA5IrZr+jM7NjUitmnTg6RTgfkRcX62fw+fbHM4\nCSAizs72xwNjImJSs/vUXJtDk6FD4fjj4WtfyzsSM+tuKjFCeoGkj7/rSlqTVJJoLZA1JPXPtlcA\nhgOTm59WsH0zcLCkPpIGA5sAD5cRX8244AL48Y9h7ty8IzEzK62c5HARcBMwQNKZwD+As8q4biDw\n96zNYRJwSzbL65clvQLsBNwm6Q6ArD3iL8B04A7gyJotIizDsGGw554wZkzekZiZlVbWxHuSNge+\nmO1OjIinKhpV6VhqOme8+WaajG/8eNhuu7yjMbPuoq3VSuW0OfwMuBd4MCJyX9es1pMDwGWXwe9/\nDw8+6Km8zaxrVKLN4QXg68C/JD0s6ReSvHxNB3z726nH0u9/n3ckZmYtK3s9B0lrAweRRjmvGhEr\nVTKwEnHUfMkB4PHHYY894MknYcCAvKMxs3pXiWqly4DNSQPZHgDuByZHxMKOBNpe9ZIcIHVrfeMN\nuOKKvCMxs3pXiWql1UiD5d4B3gbezCsx1JuxY+Gee6AD41TMzCqiLdVKmwMjgWOBnhGxXiUDKxFH\n3ZQcAG66CU45BaZMgT598o7GzOpVJaqVRgGfy179gYeA+yPi8o4E2l71lhwi0pTeu+4Ko0fnHY2Z\n1atKJIdfA/eREsKrHYyvw+otOQC8+CLsuCM88ggMHpx3NGZWjzo9OWQ3XZu0zkIAD0fE6+0PsWPq\nMTkAnHlmGvdwyy3QtmWVzMxa1+kN0pK+Rpr+4qukrqwPS/pq+0O0lhx/PDz/PIwbl3ckZmblVSs9\nDuzRVFrIJt6bGBFbd0F8LcVTlyUHSD2XDj0Upk+HlXIZRWJm9aoSXVkFvFGw/xafnE3VOsluu0FD\nQ1r3wcwsT+WUHM4DtiGt7yxS1dLjEXFC5cNrMZ66LTkAvP46bLklTJwIW22VdzRmVi8q0VtJwAHA\nMFKD9P0RcVOHouyAek8OAL/9LfzpT3DffZ6Yz8w6R0V6K1WT7pAcliyBnXeG738fvvOdvKMxs3rQ\naclB0nssYw1nICJilXbE12HdITkATJ4MI0fCtGmwxhp5R2Nmtc4lhzpyzDHw3ntp/Qczs47ozJLD\nyhExr5WHtXpOZ+tOyWHuXBgyBK67Lk2vYWbWXp3ZlfUmSb+WNELSagUPWF3SnpJ+Q1pb2ipklVXg\nggvgv/4LFnoeXDPrQiWrlSTtTloFbldgnezwq6R1Hf4cEY2VDrCFmLpNyQHSxHwjR8Lw4WkUtZlZ\ne7jNoQ7NmAE77QSPPQbrr593NGZWiyoxQtpytvHGcNRRqYHazKwrODnUiBNPTOtN33pr3pGYWXfg\naqUaMmFCGhg3bRr07Zt3NGZWSzqtWilrjG7aHtzsvQPaF551xPDhqe3hZz/LOxIzq3elxjlMjojt\nmm+3tN+VunPJAeC112DrreHee9MYCDOzcrhBus4NHAinnQZHHpm6uZqZVYKTQw068kiYNw+uuirv\nSMysXpWqVnoXuJe0hsPngPsL3v5cRPQveWNp+ez65YA+wN8iYnQ22vo64FPATOBrEfFOds1o4HBg\nMXB0RNzVwn27dbVSk0cegVGj0qpxq63W+vlm1r115txKDaUuLGd0tKS+EfGBpF6kUdXHA/sCb0bE\nuZJOBFaNiJMkDSEtKLQjsC5wN7BpRCxpdk8nh8wPfwiLF6f1H8zMSqnYCGlJfYAtgNlN60m3Iai+\npFLEYcANwBciYo6ktYHGiNgsKzUsiYhzsmvGA2Mj4qFm93JyyLzzTmqUvvHG1IvJzGxZOrMr6+8k\nbZlt9wOmAlcCUyR9vcxgekiaAswB7omIacBaETEnO2UOsFa2vQ4wq+DyWaQShC1D//5w3nlpYr5F\ni/KOxszqSa8S730uIo7Itr8NPBMR+2ff9seTqoBKyqqEts2Sy52Sdmv2fkgqVQxo8b2xY8d+vN3Q\n0EBDQ0NrodStr38dLr8cLr4Yjj0272jMrFo0NjbS2NjY7uvLHedwO/DXiPhDtj8lIrZt04OkU4H5\nwHeBhoj4t6SBpBLFZpJOAoiIs7PzxwNjImJSs/u4WqmZp5+GYcNg6lRY12UtM2tBZ45zeFfSKEnb\nA7uQSgtI6g0sX0Yga0jqn22vAAwHJgM3A4dmpx0KjMu2bwYOltQnG5G9CfBwuX+R7myzzVLV0rHH\neuyDmXWOUiWHTwMXAmsDv4yIP2bHRwLDI+InJW8sbQVcQUpAPYCrIuK8rCvrX4D1Ke7KejKpK+si\n4JiIuLOF+7rk0IL582GXXWDVVeH882H77fOOyMyqiddz6MYWLYJLL4XTT0/zMP385zBoUN5RmVk1\n6MxxDheRGoRbullExNHtC7FjnBxaN28enHsuXHIJHHEEnHRSWnLUzLqvzmxz+C/SyOhXgX9lr0cL\nXlalVl4ZzjgjNVC/+ipsumlKFF6H2szKVarksAbwVeBrpOksriP1WHqn68JrMS6XHNpoypS0/vTs\n2XDOOWnaDZX9/cHM6kFF2hwkrQccDPwYODEicpvyzcmhfSJg/PiUJAYMSI3WO+yQd1Rm1lU6fcpu\nSTsAxwDfBO7AVUo1SYIvfSlVNR1ySCo9fOtb8PLLeUdmZtWo1PQZZ0h6FDiONC/SjhHxnYiY3mXR\nWafr1SstNfrMMzB4MGy3HYweDe++m3dkZlZNSrU5LAFeBD5o4e2IiK0rGdiyuFqpc82enRYPuu02\nOPXUlDh69847KjPrbJ3ZlXWDEtdFRLzUttA6h5NDZUydCj/9Kbz0UuoGu+++brQ2qycVHwQnSaRR\nzde1NbjO4ORQORFw550pSay2GvziF/CZz+QdlZl1hs6csnslST+RdImkI7Ppt78MTAO+0RnBWnWR\nYOTI1PX1W99KpYdvfCOVJsyseynVW+lKYCvSOg5fBB4iNU5/PSL27YLYLCc9e8J3vwvPPgubbJLm\naTrxRDdam3UnpdocHm9qdJbUE3gN+FREzO/C+FqKy9VKXezVV1Oj9c03w9FHw49+lBYaMrPa0Znj\nHBY3bUTEYtLyoLkmBsvHOuukCf3uuw9mzICNN4aTT4bX27RYrJnVklLJYWtJ85pewFYF+3O7KkCr\nHpttBn/8I/zrX2n96s02g2OOgVmzWr3UzGrMMpNDRPSMiJULXr0Ktj3HZze2wQZpIr9p06BPH9hm\nG/je91KpwszqQ6vTZ5gty8CBcN55qeF6nXVg553TmtZPPpl3ZGbWUU4O1mGrr54WGHr++VSK2GMP\n2H9/eOSRvCMzs/ZycrBOs8oqqcvriy+mBHHggTBiBDQ2em1rs1rjZUKtYhYsgD/9Cc4+G9ZcE045\nJc0M62k5rFZEpJ/jjz5Ki2jV8s+u15C2qrN4MVx/PZx5JvTokbrBHnBAGmxn1lFvvAFPPZX+/PDD\nT77mz+/YsY8+ShNR9u4Nq64Ke++dXl/8IvTtm/ffvG2cHKxqRcCtt8LPf566wo4enRqwPQustSYi\ndZl+6imYPv2Tfy5eDJtvDmuvDcsvn14rrLB0u5z9ZZ2z3HLpC01Emub+ttvSz/Cjj8KwYUuTxQYb\n5P0v1DonB6t6EfD3v6eSxPPPwwknwOGHp19I694WL4YXXvjkh3/Ta6WVYMiQlAg233zp9lprdX11\nzzvvwF13pWRxxx1pdcV99kmJYued07op1cbJwWrKQw+lksSjj6YBdd/8Jqy7bt5RWaV99BE891xx\nKWDGjPRhX/jh3/RaddW8o27Z4sWpZ15TqeLll2HPPVOiGDky9earBk4OVpOmToULL4Rx42CLLeDg\ng+ErX0nfyKzyFixIs+8uXgyLFqU/C18tHWvLuYsWwb//vTQRvPJKqoppngQ+/WlYccW8/zU6ZvZs\nuP32lCjuuQe23jolin32gS23zK9R28nBatpHH6Xi+nXXpV+uz3wmJYoDDkhrTFSTJUtSUhs/Pq2D\nMXdu6pk1YkTekbXN7benUtvChamOvWfPVC3Ss+cnXx051rNnSvRNiWDjjdPo+nr34YepK/dtt6XX\nokVLq5923z21a3QVJwerG/Pnpw+ua69NCWPYMDjoINhvP+jXL5+YXn8dJkxICeGuu1Ice+6ZXgsX\npoWSttwSLrgANtwwnxjL9fzzcNxx6dv8r34Fe+2Vd0T1LSL9Wzclisceg89/fmmj9vrrV/b5Tg5W\nl+bNg1tuSSWKxsb0reugg2DUqMpWQyxcCP/859LSwYwZsNtuSxNC8wTw4Yfwy1/C+efDD36QemRV\nWzXJBx+kEs6vfw3HHw8//nEqMVjX+s9/0heMW29NP1+33QZDh1bueU4OVvfeeSe1TVx7bfrgHjky\nVT196Uud0+PpxRdTIhg/PiWijTZamgx23rm86pBZs9Jo8fvuS/NPHXRQ/gOoItK/23HHwWc/mxLY\noEH5xmTJ4sXp56NHBeesqJrkIGkQaTW5AUAA/xcRF0raBvgtsCIwE/hGRMzLrhkNHE5aS+LoiLir\nhfs6OdjH3nwTbrghlSgmT071uQcfDMOHl1+n/f77KQk0lQ7efTe1G+y5Z7rPWmu1P74HHoCjjkqj\nay+8ELbdtv336ohnnkkLNc2aBRddlEpe1r20NTkQERV5AWsD22bbKwHPAJsDjwCfy45/G/ifbHsI\nMAXoDWwAzAB6tHDfMGvJq69GXHhhxK67Rqy2WsR3vhNx110RCxd+8rwlSyKmTo0455yI3XePWHHF\niC98IeLMMyMeeyxi8eLOjWvRoojf/jZiwICIH/wg4s03O/f+pcydG3HCCRGrrx5xwQURCxZ03bOt\numSfnWV/hndZtZKkccDFwPUR0T87NggYHxFbZKWGJRFxTvbeeGBsRDzU7D7RVTFb7Xr5ZfjrX1PV\n08svp0kAd9wR7r031fOusMLSqqLddkuTBlba22/DmDGplDNmDBxxROUGS0Wk5/z0p6mUcM45aQSx\ndV9VU630iYdIGwD3AlsC44FzI+Jvkn5MSgCrSLoIeCgi/pxdcylwR0Tc0OxeTg7WJs8/nz4op0xJ\nvUNGjkxdKfPyxBOpiuett1JVU0ND59//qKNS9djFF8Ouu3bu/a02tTU5VHyQt6SVgOuBYyJinqTD\ngQslnQrcDCwocbmzgHXYRhulyf6qxVZbpelDbrgBDj0UdtopNVp3tCvjO+/A2LFw9dXpzyOO8OSG\n1n4VTQ6SegM3AH+KiHEAEfEMsGf2/qbA3tnps4HCvhPrZceKjB079uPthoYGGjr7q5dZhUlpBPhe\ne8G558J228Gxx6aupW0dGLVkCVx5Zeo2O2pUWr51zTUrE7fVjsbGRhobG9t9fSV7Kwm4AngrIo4r\nOL5mRLwhqQfwR+DvEfFHSUOAq4GhwLrA3cDGzeuQXK1k9WjmzJQYHn00DaDbf//yur4+9hj86Eep\nK+TFF6d2FbOWVE2bg6RhwH3A4yytHjoZ2AT4YbZ/Q0ScXHDNyaSurItI1VB3tnBfJwerWxMnpqks\nBg5Mo5aHDGn5vLfegv/+b7jppjS77WGHVbaPvNW+qkkOleLkYPVu4UL4zW/gjDPSLLVjxkD//um9\nxYvh0kvhtNPSwLrTT6/e2Uqtujg5mNWJN95IS6vecgv87Gdpwrqjj04rkF10EWyzTd4RWi1xcjCr\nM48+mrqmzpyZprw45JD8p+Kw2uPkYFaHmn7knRSsvapunIOZdZyTgnU1928wM7MiTg5mZlbEycHM\nzIo4OZiZWREnBzMzK+LkYGZmRZwczMysiJODmZkVcXIwM7MiTg5mZlbEycHMzIo4OZiZWREnBzMz\nK+LkYGZmRZwczMysiJODmZkVcXIwM7MiTg5mZlbEycHMzIo4OZiZWREnBzMzK+LkYGZmRZwczMys\niJODmZkVqVhykDRI0j2Spkl6UtLR2fGhkh6WNFnSI5J2LLhmtKTnJD0taUSlYjMzs9IqWXJYCBwX\nEVsAOwE/lLQ5cC5wakRsB5yW7SNpCHAQMAQYCVwiqe5KNo2NjXmH0G61HDs4/rw5/tpSsQ/fiPh3\nREzJtt8DngLWBV4D+mWn9QdmZ9v7AddExMKImAnMAIZWKr681PIPWC3HDo4/b46/tvTqiodI2gDY\nDngIeA54QNL5pOS0c3baOtn7TWaRkomZmXWxilfbSFoJuB44JitBXAYcHRHrA8cBl5e4PCodn5mZ\nFVNE5T5/JfUGbgXuiIj/zY7NjYhVsm0B70REP0knAUTE2dl744ExETGp2T2dMMzM2iEiVO65FatW\nyj74LwOmNyWGzAxJX4iIe4HdgWez4zcDV0u6gFSdtAnwcPP7tuUvZ2Zm7VPJNoddgW8Cj0uanB07\nGfg+8GsfsZPGAAAGsElEQVRJywHzs30iYrqkvwDTgUXAkVHJYo2ZmS1TRauVzMysNtXMOAJJI7PB\ncc9JOjHveNpiWQMCa42kntngxVvyjqWtJPWXdL2kpyRNl7RT3jG1RTZAdJqkJyRdnZW8q5akyyXN\nkfREwbHVJE2Q9KykuyT1zzPGUpYR/3nZz89USTdK6lfqHnlpKfaC934iaYmk1Vq7T00kB0k9gYtJ\ng+OGAIdkA+pqxbIGBNaaY0jVfrVY3PwVcHtEbA5sTRp3UxOyruDfA7aPiK2AnsDBecZUhj+Qfl8L\nnQRMiIhNgYnZfrVqKf67gC0iYhtSW+noLo+qPC3FjqRBwHDgpXJuUhPJgTQYbkZEzIyIhcC1pEFz\nNWEZAwLXyTeqtpG0HrAXcClQU50Csm94n4uIywEiYlFEvJtzWG0xl/QFo6+kXkBflg4erUoRcT/w\nn2aH9wWuyLavAPbv0qDaoKX4I2JCRCzJdicB63V5YGVYxr89wAXACeXep1aSw7rAKwX7NTtArmBA\n4KTSZ1adXwI/BZa0dmIVGgy8IekPkh6T9HtJffMOqlwR8TbwC+Bl4FVS9++7842qXdaKiDnZ9hxg\nrTyD6aDDgdvzDqJckvYDZkXE4+VeUyvJoRarMYq0MCCwJkjaB3g9IiZTY6WGTC9ge+CSiNgeeJ/q\nrtL4BEkbAccCG5BKnCtJ+kauQXVQ1hOxJn+vJZ0CLIiIq/OOpRzZF6GTgTGFh1u7rlaSw2xgUMH+\nIFLpoWZkAwJvAP4UEePyjqeNdgH2lfQicA2wu6Qrc46pLWaRvjU9ku1fT0oWteIzwIMR8VZELAJu\nJP2f1Jo5ktYGkDQQeD3neNpM0mGk6tVaSs4bkb5YTM1+h9cDHpU0oNRFtZIc/gVsImkDSX1Is7fe\nnHNMZSsxILAmRMTJETEoIgaTGkL/HhH/L++4yhUR/wZekbRpdmgPYFqOIbXV08BOklbIfpb2IHUM\nqDU3A4dm24cCNfUlSdJIUtXqfhHxYd7xlCsinoiItSJicPY7PIvUuaFkcq6J5JB9W/oRcCfpl+K6\niKiZ3iYsHRC4W9YVdHL2g1ararE64Cjgz5KmknornZlzPGWLiKnAlaQvSU11xv+XX0Stk3QN8CDw\naUmvSPo2cDYwXNKzpNkRzs4zxlJaiP9w4CJgJWBC9jt8Sa5BLkNB7JsW/NsXKuv314PgzMysSE2U\nHMzMrGs5OZiZWREnBzMzK+LkYGZmRZwczMysiJODmZkVcXIwM7MiTg5mbSCpj6S7s0FQX23H9fvV\n6HTt1s1UcplQs3q0PWneuO3aef2XgVtow3oSknplswSYdRmXHKwuZPNuPZ1Ny/2MpD9LGiHpH9nK\nYztmrwezabv/0TTXkqTjJF2WbW+Vrba2fAvPGABcBeyYlRw2lLSDpEZJ/5I0vmBiue9JeljSlGwF\nuhUk7QKMAs7LYtgwu3aH7Jo1sonRkHSYpJslTSRN19A3W+FrUnbtvtl5W2THJmcrlG3cBf/c1h1E\nhF9+1fyLNOvkQmAL0nTE/wIuy97bF7iJNC9Oz+zYHsD12baAe0nf6h8Bdi7xnC8At2TbvUlz2Kye\n7R9U8MzVCq45A/hRtv0H4ICC9+4hTYIGsAbwYrZ9GGkNk/7Z/pnAN7Lt/sAzpEV/LgS+nh3vBSyf\n9/+FX/XxcrWS1ZMXI2IagKRpQNOCOE+Skkd/4Krs23WQPtyJiMimYn4C+E1E/LPEMwrnwf80KRnd\nnSZLpSdpMR6ArST9DOhHSkrjl3GPUiZExDvZ9ghglKTjs/3lgPWBfwKnZCv13RgRM8q8t1lJTg5W\nTz4q2F4CLCjY7kX6Bj8xIr4s6VNAY8H5mwLzaNsKgwKmRURLayv8Edg3Ip6QdCjQUPBe4WyXi1ha\nvdu8Kuv9ZvsHRMRzzY49LekhYB/gdklHRMQ9bfg7mLXIbQ7WXQhYhaXf7D+exjhbY/pXwOeA1SUd\nWOY9nwHWlLRTdp/ekoZk760E/Dtb5OmbLE0I87I4mswkLeYD8JUSz7oTOLog5u2yPwdHxIsRcRHw\nN2CrMmM3K8nJwepJ8/nnC/eXAOcBZ0l6jFQF1PT+BcDFWZXMd4CzJa1R4hkBEBELSB/o50iaAkwG\nds7OO5W0TvgDfLJn0rXATyU9KmkwcD7wgyym1Qtiar6M5hlAb0mPS3oSOD07/jVJT0qaTKriqqUV\n+qyKeT0HMzMr4pKDmZkVcYO0WQuy3kvHNDv8QEQclUM4Zl3O1UpmZlbE1UpmZlbEycHMzIo4OZiZ\nWREnBzMzK+LkYGZmRf4/NxTupiNNzpgAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot max_features (x-axis) versus RMSE (y-axis)\n", + "plt.plot(feature_range, RMSE_scores)\n", + "plt.xlabel('max_features')\n", + "plt.ylabel('RMSE (lower is better)')" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(288.41877774269841, 8)" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# show the best RMSE and the corresponding max_features\n", + "sorted(zip(RMSE_scores, feature_range))[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Fitting a Random Forest with the best parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "RandomForestRegressor(bootstrap=True, criterion='mse', max_depth=None,\n", + " max_features=8, max_leaf_nodes=None, min_samples_leaf=1,\n", + " min_samples_split=2, min_weight_fraction_leaf=0.0,\n", + " n_estimators=150, n_jobs=1, oob_score=True, random_state=1,\n", + " verbose=0, warm_start=False)" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# max_features=8 is best and n_estimators=150 is sufficiently large\n", + "rfreg = RandomForestRegressor(n_estimators=150, max_features=8, oob_score=True, random_state=1)\n", + "rfreg.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "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", + "
featureimportance
7League0.003402
12NewLeague0.003960
8Division0.007253
10Assists0.024857
11Errors0.026147
2HmRun0.041620
9PutOuts0.058637
3Runs0.070350
0AtBat0.096424
4RBI0.133953
1Hits0.143183
5Walks0.145255
6Years0.244960
\n", + "
" + ], + "text/plain": [ + " feature importance\n", + "7 League 0.003402\n", + "12 NewLeague 0.003960\n", + "8 Division 0.007253\n", + "10 Assists 0.024857\n", + "11 Errors 0.026147\n", + "2 HmRun 0.041620\n", + "9 PutOuts 0.058637\n", + "3 Runs 0.070350\n", + "0 AtBat 0.096424\n", + "4 RBI 0.133953\n", + "1 Hits 0.143183\n", + "5 Walks 0.145255\n", + "6 Years 0.244960" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute feature importances\n", + "pd.DataFrame({'feature':feature_cols, 'importance':rfreg.feature_importances_}).sort('importance')" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.53646364056364049" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute the out-of-bag R-squared score\n", + "rfreg.oob_score_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Reducing X to its most important features" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(263, 13)" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the shape of X\n", + "X.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(263L, 4L)\n", + "(263L, 5L)\n", + "(263L, 7L)\n" + ] + } + ], + "source": [ + "# set a threshold for which features to include\n", + "print rfreg.transform(X, threshold=0.1).shape\n", + "print rfreg.transform(X, threshold='mean').shape\n", + "print rfreg.transform(X, threshold='median').shape" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# create a new feature matrix that only includes important features\n", + "X_important = rfreg.transform(X, threshold='mean')" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "284.82790842153145" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the RMSE for a Random Forest that only includes important features\n", + "rfreg = RandomForestRegressor(n_estimators=150, max_features=3, random_state=1)\n", + "scores = cross_val_score(rfreg, X_important, y, cv=10, scoring='mean_squared_error')\n", + "np.mean(np.sqrt(-scores))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing Random Forests with decision trees\n", + "\n", + "**Advantages of Random Forests:**\n", + "\n", + "- Performance is competitive with the best supervised learning methods\n", + "- Provides a more reliable estimate of feature importance\n", + "- Allows you to estimate out-of-sample error without using train/test split or cross-validation\n", + "\n", + "**Disadvantages of Random Forests:**\n", + "\n", + "- Less interpretable\n", + "- Slower to train\n", + "- Slower to predict" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Machine learning flowchart](images/driver_ensembling.png)\n", + "\n", + "*Machine learning flowchart created by the [second place finisher](http://blog.kaggle.com/2015/04/20/axa-winners-interview-learning-telematic-fingerprints-from-gps-data/) of Kaggle's [Driver Telematics competition](https://www.kaggle.com/c/axa-driver-telematics-analysis)*" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/19_advanced_sklearn.ipynb b/notebooks/19_advanced_sklearn.ipynb new file mode 100644 index 0000000..49ba83f --- /dev/null +++ b/notebooks/19_advanced_sklearn.ipynb @@ -0,0 +1,948 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda\n", + "\n", + "- StandardScaler\n", + "- Pipeline (bonus content)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## StandardScaler\n", + "\n", + "### What is the problem we're trying to solve?" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# fake data\n", + "import pandas as pd\n", + "train = pd.DataFrame({'id':[0,1,2], 'length':[0.9,0.3,0.6], 'mass':[0.1,0.2,0.8], 'rings':[40,50,60]})\n", + "test = pd.DataFrame({'length':[0.59], 'mass':[0.79], 'rings':[54]})" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "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", + "
idlengthmassrings
000.90.140
110.30.250
220.60.860
\n", + "
" + ], + "text/plain": [ + " id length mass rings\n", + "0 0 0.9 0.1 40\n", + "1 1 0.3 0.2 50\n", + "2 2 0.6 0.8 60" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# training data\n", + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
lengthmassrings
00.590.7954
\n", + "
" + ], + "text/plain": [ + " length mass rings\n", + "0 0.59 0.79 54" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# testing data\n", + "test" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "feature_cols = ['length', 'mass', 'rings']\n", + "X = train[feature_cols]\n", + "y = train.id" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KNeighborsClassifier(algorithm='auto', leaf_size=30, metric='minkowski',\n", + " metric_params=None, n_neighbors=1, p=2, weights='uniform')" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# KNN with K=1\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "knn = KNeighborsClassifier(n_neighbors=1)\n", + "knn.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1], dtype=int64)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# what \"should\" it predict?\n", + "knn.predict(test)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.rcParams['font.size'] = 14\n", + "plt.rcParams['figure.figsize'] = (5, 5)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a \"colors\" array for plotting\n", + "import numpy as np\n", + "colors = np.array(['red', 'green', 'blue'])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot of training data, colored by id (0=red, 1=green, 2=blue)\n", + "plt.scatter(train.mass, train.rings, c=colors[train.id], s=50)\n", + "\n", + "# testing data\n", + "plt.scatter(test.mass, test.rings, c='white', s=50)\n", + "\n", + "# add labels\n", + "plt.xlabel('mass')\n", + "plt.ylabel('rings')\n", + "plt.title('How we interpret the data')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(0, 30)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n739TP3uWAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# adjust the x-limits\n", + "plt.scatter(train.mass, train.rings, c=colors[train.id], s=50)\n", + "plt.scatter(test.mass, test.rings, c='white', s=50)\n", + "plt.xlabel('mass')\n", + "plt.ylabel('rings')\n", + "plt.title('How KNN interprets the data')\n", + "plt.xlim(0, 30)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How does StandardScaler solve the problem?\n", + "\n", + "[StandardScaler](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.StandardScaler.html) is used for the \"standardization\" of features, also known as \"center and scale\" or \"z-score normalization\"." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# standardize the features\n", + "from sklearn.preprocessing import StandardScaler\n", + "scaler = StandardScaler()\n", + "scaler.fit(X)\n", + "X_scaled = scaler.transform(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.9, 0.1, 40. ],\n", + " [ 0.3, 0.2, 50. ],\n", + " [ 0.6, 0.8, 60. ]])" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# original values\n", + "X.values" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 1.22474487, -0.86266219, -1.22474487],\n", + " [-1.22474487, -0.53916387, 0. ],\n", + " [ 0. , 1.40182605, 1.22474487]])" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# standardized values\n", + "X_scaled" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0.6 0.36666667 50. ]\n", + "[ 0.24494897 0.30912062 8.16496581]\n" + ] + } + ], + "source": [ + "# figure out how it standardized\n", + "print scaler.mean_\n", + "print scaler.std_" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 1.22474487, -0.86266219, -1.22474487],\n", + " [-1.22474487, -0.53916387, 0. ],\n", + " [ 0. , 1.40182605, 1.22474487]])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# manually standardize\n", + "(X.values - scaler.mean_) / scaler.std_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Applying StandardScaler to a real dataset\n", + "\n", + "- Wine dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Wine)\n", + "- **Goal:** Predict the origin of wine using chemical analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# read three columns from the dataset into a DataFrame\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data'\n", + "col_names = ['label', 'color', 'proline']\n", + "wine = pd.read_csv(url, header=None, names=col_names, usecols=[0, 10, 13])" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "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", + "
labelcolorproline
015.641065
114.381050
215.681185
317.801480
414.32735
\n", + "
" + ], + "text/plain": [ + " label color proline\n", + "0 1 5.64 1065\n", + "1 1 4.38 1050\n", + "2 1 5.68 1185\n", + "3 1 7.80 1480\n", + "4 1 4.32 735" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "wine.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "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", + "
labelcolorproline
count178.000000178.000000178.000000
mean1.9382025.058090746.893258
std0.7750352.318286314.907474
min1.0000001.280000278.000000
25%1.0000003.220000500.500000
50%2.0000004.690000673.500000
75%3.0000006.200000985.000000
max3.00000013.0000001680.000000
\n", + "
" + ], + "text/plain": [ + " label color proline\n", + "count 178.000000 178.000000 178.000000\n", + "mean 1.938202 5.058090 746.893258\n", + "std 0.775035 2.318286 314.907474\n", + "min 1.000000 1.280000 278.000000\n", + "25% 1.000000 3.220000 500.500000\n", + "50% 2.000000 4.690000 673.500000\n", + "75% 3.000000 6.200000 985.000000\n", + "max 3.000000 13.000000 1680.000000" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "wine.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "feature_cols = ['color', 'proline']\n", + "X = wine[feature_cols]\n", + "y = wine.label" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# standardize X_train\n", + "scaler.fit(X_train)\n", + "X_train_scaled = scaler.transform(X_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-3.90664944003e-16\n", + "1.0\n", + "1.6027279754e-16\n", + "1.0\n" + ] + } + ], + "source": [ + "# check that it standardized properly\n", + "print X_train_scaled[:, 0].mean()\n", + "print X_train_scaled[:, 0].std()\n", + "print X_train_scaled[:, 1].mean()\n", + "print X_train_scaled[:, 1].std()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# standardize X_test\n", + "X_test_scaled = scaler.transform(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.0305898576303\n", + "0.866822198488\n", + "0.0546533341088\n", + "1.14955947533\n" + ] + } + ], + "source": [ + "# is this right?\n", + "print X_test_scaled[:, 0].mean()\n", + "print X_test_scaled[:, 0].std()\n", + "print X_test_scaled[:, 1].mean()\n", + "print X_test_scaled[:, 1].std()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.644444444444\n" + ] + } + ], + "source": [ + "# KNN accuracy on original data\n", + "knn = KNeighborsClassifier(n_neighbors=3)\n", + "knn.fit(X_train, y_train)\n", + "y_pred_class = knn.predict(X_test)\n", + "from sklearn import metrics\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.866666666667\n" + ] + } + ], + "source": [ + "# KNN accuracy on scaled data\n", + "knn.fit(X_train_scaled, y_train)\n", + "y_pred_class = knn.predict(X_test_scaled)\n", + "print metrics.accuracy_score(y_test, y_pred_class)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Pipeline (bonus content)\n", + "\n", + "### What is the problem we're trying to solve?" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "feature_cols = ['color', 'proline']\n", + "X = wine[feature_cols]\n", + "y = wine.label" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.71983168041991563" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# proper cross-validation on the original (unscaled) data\n", + "knn = KNeighborsClassifier(n_neighbors=3)\n", + "from sklearn.cross_validation import cross_val_score\n", + "cross_val_score(knn, X, y, cv=5, scoring='accuracy').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.90104247104247115" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# why is this improper cross-validation on the scaled data?\n", + "scaler = StandardScaler()\n", + "X_scaled = scaler.fit_transform(X)\n", + "cross_val_score(knn, X_scaled, y, cv=5, scoring='accuracy').mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How does Pipeline solve the problem?\n", + "\n", + "[Pipeline](http://scikit-learn.org/stable/modules/pipeline.html) is used for chaining steps together:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.89516011810129448" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# fix the cross-validation process using Pipeline\n", + "from sklearn.pipeline import make_pipeline\n", + "pipe = make_pipeline(StandardScaler(), KNeighborsClassifier(n_neighbors=3))\n", + "cross_val_score(pipe, X, y, cv=5, scoring='accuracy').mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Pipeline can also be used with [GridSearchCV](http://scikit-learn.org/stable/modules/generated/sklearn.grid_search.GridSearchCV.html) for parameter searching:" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.910112359551\n", + "{'kneighborsclassifier__n_neighbors': 1}\n" + ] + } + ], + "source": [ + "# search for an optimal n_neighbors value using GridSearchCV\n", + "neighbors_range = range(1, 21)\n", + "param_grid = dict(kneighborsclassifier__n_neighbors=neighbors_range)\n", + "from sklearn.grid_search import GridSearchCV\n", + "grid = GridSearchCV(pipe, param_grid, cv=5, scoring='accuracy')\n", + "grid.fit(X, y)\n", + "print grid.best_score_\n", + "print grid.best_params_" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/19_clustering.ipynb b/notebooks/19_clustering.ipynb new file mode 100644 index 0000000..ba5a07c --- /dev/null +++ b/notebooks/19_clustering.ipynb @@ -0,0 +1,2015 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Clustering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda:\n", + "\n", + "1. K-means clustering\n", + "2. Clustering evaluation\n", + "3. DBSCAN clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
namecaloriessodiumalcoholcost
0Budweiser144154.70.43
1Schlitz151194.90.43
2Lowenbrau157150.90.48
3Kronenbourg17075.20.73
4Heineken152115.00.77
5Old_Milwaukee145234.60.28
6Augsberger175245.50.40
7Srohs_Bohemian_Style149274.70.42
8Miller_Lite99104.30.43
9Budweiser_Light11383.70.40
10Coors140184.60.44
11Coors_Light102154.10.46
12Michelob_Light135114.20.50
13Becks150194.70.76
14Kirin14965.00.79
15Pabst_Extra_Light68152.30.38
16Hamms139194.40.43
17Heilemans_Old_Style144244.90.43
18Olympia_Goled_Light7262.90.46
19Schlitz_Light9774.20.47
\n", + "
" + ], + "text/plain": [ + " name calories sodium alcohol cost\n", + "0 Budweiser 144 15 4.7 0.43\n", + "1 Schlitz 151 19 4.9 0.43\n", + "2 Lowenbrau 157 15 0.9 0.48\n", + "3 Kronenbourg 170 7 5.2 0.73\n", + "4 Heineken 152 11 5.0 0.77\n", + "5 Old_Milwaukee 145 23 4.6 0.28\n", + "6 Augsberger 175 24 5.5 0.40\n", + "7 Srohs_Bohemian_Style 149 27 4.7 0.42\n", + "8 Miller_Lite 99 10 4.3 0.43\n", + "9 Budweiser_Light 113 8 3.7 0.40\n", + "10 Coors 140 18 4.6 0.44\n", + "11 Coors_Light 102 15 4.1 0.46\n", + "12 Michelob_Light 135 11 4.2 0.50\n", + "13 Becks 150 19 4.7 0.76\n", + "14 Kirin 149 6 5.0 0.79\n", + "15 Pabst_Extra_Light 68 15 2.3 0.38\n", + "16 Hamms 139 19 4.4 0.43\n", + "17 Heilemans_Old_Style 144 24 4.9 0.43\n", + "18 Olympia_Goled_Light 72 6 2.9 0.46\n", + "19 Schlitz_Light 97 7 4.2 0.47" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# beer dataset\n", + "import pandas as pd\n", + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/beer.txt'\n", + "beer = pd.read_csv(url, sep=' ')\n", + "beer" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How would you cluster these beers?" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X\n", + "X = beer.drop('name', axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What happened to y?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: K-means clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KMeans(copy_x=True, init='k-means++', max_iter=300, n_clusters=3, n_init=10,\n", + " n_jobs=1, precompute_distances='auto', random_state=1, tol=0.0001,\n", + " verbose=0)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# K-means with 3 clusters\n", + "from sklearn.cluster import KMeans\n", + "km = KMeans(n_clusters=3, random_state=1)\n", + "km.fit(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 2, 0, 0, 2, 1])" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# review the cluster labels\n", + "km.labels_" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + "
namecaloriessodiumalcoholcostcluster
0Budweiser144154.70.430
1Schlitz151194.90.430
2Lowenbrau157150.90.480
3Kronenbourg17075.20.730
4Heineken152115.00.770
5Old_Milwaukee145234.60.280
6Augsberger175245.50.400
7Srohs_Bohemian_Style149274.70.420
17Heilemans_Old_Style144244.90.430
16Hamms139194.40.430
10Coors140184.60.440
14Kirin14965.00.790
12Michelob_Light135114.20.500
13Becks150194.70.760
9Budweiser_Light11383.70.401
8Miller_Lite99104.30.431
11Coors_Light102154.10.461
19Schlitz_Light9774.20.471
15Pabst_Extra_Light68152.30.382
18Olympia_Goled_Light7262.90.462
\n", + "
" + ], + "text/plain": [ + " name calories sodium alcohol cost cluster\n", + "0 Budweiser 144 15 4.7 0.43 0\n", + "1 Schlitz 151 19 4.9 0.43 0\n", + "2 Lowenbrau 157 15 0.9 0.48 0\n", + "3 Kronenbourg 170 7 5.2 0.73 0\n", + "4 Heineken 152 11 5.0 0.77 0\n", + "5 Old_Milwaukee 145 23 4.6 0.28 0\n", + "6 Augsberger 175 24 5.5 0.40 0\n", + "7 Srohs_Bohemian_Style 149 27 4.7 0.42 0\n", + "17 Heilemans_Old_Style 144 24 4.9 0.43 0\n", + "16 Hamms 139 19 4.4 0.43 0\n", + "10 Coors 140 18 4.6 0.44 0\n", + "14 Kirin 149 6 5.0 0.79 0\n", + "12 Michelob_Light 135 11 4.2 0.50 0\n", + "13 Becks 150 19 4.7 0.76 0\n", + "9 Budweiser_Light 113 8 3.7 0.40 1\n", + "8 Miller_Lite 99 10 4.3 0.43 1\n", + "11 Coors_Light 102 15 4.1 0.46 1\n", + "19 Schlitz_Light 97 7 4.2 0.47 1\n", + "15 Pabst_Extra_Light 68 15 2.3 0.38 2\n", + "18 Olympia_Goled_Light 72 6 2.9 0.46 2" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# save the cluster labels and sort by cluster\n", + "beer['cluster'] = km.labels_\n", + "beer.sort('cluster')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What do the clusters seem to be based on? Why?" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 150. , 17. , 4.52142857, 0.52071429],\n", + " [ 102.75 , 10. , 4.075 , 0.44 ],\n", + " [ 70. , 10.5 , 2.6 , 0.42 ]])" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# review the cluster centers\n", + "km.cluster_centers_" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "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", + "
caloriessodiumalcoholcost
cluster
0150.0017.04.5214290.520714
1102.7510.04.0750000.440000
270.0010.52.6000000.420000
\n", + "
" + ], + "text/plain": [ + " calories sodium alcohol cost\n", + "cluster \n", + "0 150.00 17.0 4.521429 0.520714\n", + "1 102.75 10.0 4.075000 0.440000\n", + "2 70.00 10.5 2.600000 0.420000" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate the mean of each feature for each cluster\n", + "beer.groupby('cluster').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# save the DataFrame of cluster centers\n", + "centers = beer.groupby('cluster').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# allow plots to appear in the notebook\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.rcParams['font.size'] = 14" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# create a \"colors\" array for plotting\n", + "import numpy as np\n", + "colors = np.array(['red', 'green', 'blue', 'yellow'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\nvpopxTBv/p8AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot of calories versus alcohol, colored by cluster (0=red, 1=green, 2=blue)\n", + "plt.scatter(beer.calories, beer.alcohol, c=colors[beer.cluster], s=50)\n", + "\n", + "# cluster centers, marked by \"+\"\n", + "plt.scatter(centers.calories, centers.alcohol, linewidths=3, marker='+', s=300, c='black')\n", + "\n", + "# add labels\n", + "plt.xlabel('calories')\n", + "plt.ylabel('alcohol')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot matrix (0=red, 1=green, 2=blue)\n", + "pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Repeat with scaled data" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# center and scale the data\n", + "from sklearn.preprocessing import StandardScaler\n", + "scaler = StandardScaler()\n", + "X_scaled = scaler.fit_transform(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "KMeans(copy_x=True, init='k-means++', max_iter=300, n_clusters=3, n_init=10,\n", + " n_jobs=1, precompute_distances='auto', random_state=1, tol=0.0001,\n", + " verbose=0)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# K-means with 3 clusters on scaled data\n", + "km = KMeans(n_clusters=3, random_state=1)\n", + "km.fit(X_scaled)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + "
namecaloriessodiumalcoholcostcluster
0Budweiser144154.70.430
1Schlitz151194.90.430
17Heilemans_Old_Style144244.90.430
16Hamms139194.40.430
5Old_Milwaukee145234.60.280
6Augsberger175245.50.400
7Srohs_Bohemian_Style149274.70.420
10Coors140184.60.440
15Pabst_Extra_Light68152.30.381
12Michelob_Light135114.20.501
11Coors_Light102154.10.461
9Budweiser_Light11383.70.401
8Miller_Lite99104.30.431
2Lowenbrau157150.90.481
18Olympia_Goled_Light7262.90.461
19Schlitz_Light9774.20.471
13Becks150194.70.762
14Kirin14965.00.792
4Heineken152115.00.772
3Kronenbourg17075.20.732
\n", + "
" + ], + "text/plain": [ + " name calories sodium alcohol cost cluster\n", + "0 Budweiser 144 15 4.7 0.43 0\n", + "1 Schlitz 151 19 4.9 0.43 0\n", + "17 Heilemans_Old_Style 144 24 4.9 0.43 0\n", + "16 Hamms 139 19 4.4 0.43 0\n", + "5 Old_Milwaukee 145 23 4.6 0.28 0\n", + "6 Augsberger 175 24 5.5 0.40 0\n", + "7 Srohs_Bohemian_Style 149 27 4.7 0.42 0\n", + "10 Coors 140 18 4.6 0.44 0\n", + "15 Pabst_Extra_Light 68 15 2.3 0.38 1\n", + "12 Michelob_Light 135 11 4.2 0.50 1\n", + "11 Coors_Light 102 15 4.1 0.46 1\n", + "9 Budweiser_Light 113 8 3.7 0.40 1\n", + "8 Miller_Lite 99 10 4.3 0.43 1\n", + "2 Lowenbrau 157 15 0.9 0.48 1\n", + "18 Olympia_Goled_Light 72 6 2.9 0.46 1\n", + "19 Schlitz_Light 97 7 4.2 0.47 1\n", + "13 Becks 150 19 4.7 0.76 2\n", + "14 Kirin 149 6 5.0 0.79 2\n", + "4 Heineken 152 11 5.0 0.77 2\n", + "3 Kronenbourg 170 7 5.2 0.73 2" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# save the cluster labels and sort by cluster\n", + "beer['cluster'] = km.labels_\n", + "beer.sort('cluster')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What are the \"characteristics\" of each cluster?" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "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", + "
caloriessodiumalcoholcost
cluster
0148.37521.1254.78750.4075
1105.37510.8753.32500.4475
2155.25010.7504.97500.7625
\n", + "
" + ], + "text/plain": [ + " calories sodium alcohol cost\n", + "cluster \n", + "0 148.375 21.125 4.7875 0.4075\n", + "1 105.375 10.875 3.3250 0.4475\n", + "2 155.250 10.750 4.9750 0.7625" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# review the cluster centers\n", + "beer.groupby('cluster').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmUAAAJhCAYAAAAAHscxAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xd4HNW9//H32ZW00qpLVreaCy64d1xlY4MNpptekxC4\nQArkJr+Q5N4bc1NukpuAww0tlEAwOGCKKS64yrZccC9Y7laxrW71vuX8/tAijDGgVdnZXX1fz+OH\nndndmY+kw+x3Z845o7TWCCGEEEIIY5mMDiCEEEIIIaQoE0IIIYTwClKUCSGEEEJ4ASnKhBBCCCG8\ngBRlQgghhBBeQIoyIYQQQggvEGB0AHcppWQODyGEEEL4DK216sjrfK4oA5C51YyjlAI68/tXhvzd\nlDJmv6J7LVuyhLoVK5gSE0N9aytrWlq4/le/on///t22D2kr4kKlpaW89utfM9PpJN5qZVdlJfXj\nx3PPD36AyWQyrL3k5eXx7m9/y+zAQCItFrZWVhI8Zw433XOPIXnEN2v73OwYuXwphPBqDQ0NHFm7\nllszMugXHc2IhASusFjYtnKl0dGEn9u5eTOTbTbGJyeTHhXFjZmZVO/ZQ0lJiaG5tq9ezezAQEYl\nJpIZHc0tGRmcyM6mtrbW0Fyi66QoE0J4taamJoK1JtD0xeEqwmKhsbrawFSiN2isriYiKKh9WSlF\nhFI0NjYamAoaq6qItFjalwPNZkK0pqmpycBUojtIUSaE8GqxsbEEpKZyoKwMrTU2h4Ot584xaPJk\no6MJP3fJuHF8Wl9Ps90OQF5VFeXh4aSlpRmaa9Bll7GlshKbw4HWmoOlpejkZOLi4gzNJbpO+Vof\nCqWU9rXM/kT6lAkjlJSUsPSZZ3CeOUOzUvSfMYPr77yTgIDu6xYrbUVcSGvNqmXL2L98OWFOJy0x\nMdzw8MP069fP0PbicDj4YMkSjq9fT4jW6ORkbn7kEZKTkw3JI76Zq610qGOZFGXCLf5UlDU0NLB7\n916qquoYMqQ/AwcOdKtDpvAsrTXl5eUEBwcTERHR7duXoqz3cTqdHD58mGPHCkhIiGHMmFEEBwd/\n5XUNDQ3U19fTp08fzGYz4B3tpa6ujqamJvr06YPJJBe+ukNNTQ27du2lsbGZ4cMHk5GR0eVtSlEm\neoy/FGU1NTX89rcvU14+ALO5D3b7Xm66aQDXXnulxzMK7+ANH7LCs15//V3WrKkkMHAYdvtZMjKK\nefzx+wkJCfnW90p78T+lpaX87nf/pLZ2GCZTGA7Hbr73vQlMn961rhLuFGU+OSWGEF21ceM2KiqG\nk5ExBwC7fQzLlv2VGTMmERkZaXA6IURPKy4uZv3602Rk/ACTqe2jMC/vfXbs2M2MGVMNTieMsGLF\nJhobp5GRMQmA5ubhvPnm80yaNI6g8wZ89CQ53yl6pfz8CkJDv+isGxAQDMRRWVlpXCghhMdUVFRg\nMqW0F2QAFksaZ85UGJhKGCk/v4LIyC8+F4KDo2htDfHoVCNSlIleadiwVGprP2u//NDUVElgYBmJ\niYkGJxNCeELfvn3ROo/W1noAtHbS1HSIQYNSDU4mjDJiRCrnzn3Wvlxbe4bISBvR0dEeyyCXL0Wv\nNHnyRHbvfp3c3JdQKhaT6TgPPDCnQ31JhBC+Lzo6mjvvnMQbbzyH1gPQupjLLgtn1KiRRkcTBrni\nihkcOPAqBQVngXAslpP8+MfXtQ/u8ATp6C/c4i8d/aFt5NWpU6eora2lX79+REVFeTid8CbScbt3\nqqiooLCwkOjoaDIyMjo8Alvai39yOBwcP36cpqYmBg4cSFhYWJe3KaMvRY/xp6JMiPNJWxHukPYi\nOsqdokz6lAkhhBBCeAEpyoQQQgghvIAUZUIIIYQQXkCKMiGEEEIIL+CxokwplaSU2qOUalJKmVzr\n5iil1iml1iulRrvW3amU2qKU+kgpFe6pfEIIIYQQRvLY6EullAUIAd4HLgcswD+BW7XWTtdrAoF1\nQBawAEjTWv/5gu3I6EsDyehL4a+krQh3SHsRHeWVoy+11i1a62rXogIuA5zASqXUP5VSVmAgcNBV\npK11vUYIIYQQwu8Z2acsAUgC5gJbgQeBSODzm0zVAjKbpxBCCCF6BaNus6SBaiBHa62VUuuBnwKf\nABGu10S4XvMVCxcubH+clZVFVlZWT2YVPiQ7O5vs7GyjY3hcbW0tR48eJSgoiMGDB2OxWIyO5JO0\n1pw6dYry8nJSUlLo27dvh2d4F8LXNTU1ceTIERwOB4MHD+6W2eyFezw+o79SagMwG4gB/q61vkEp\ndSuQCfyZtj5lM5E+ZV5J+pR5n6NHj/LkP56kNaoV7BDnjOPnj/yc2NhYo6P5FKUUL/zjBbYe34qK\nUjjPOZk/YT4LblgghZn4Cn87tpSUlPCHZ/5ATUgNKAitD+Wn3/8pGRkZRkfzeV7Zp0wpFaCUWguM\nBFbRVoRtVEptBO4Fntda24EXgc3A3cALnsonhC9yOp289K+XsI62kj4pnfSp6ZyLPsdHqz4yOppP\nyjmZQ/rl6aSPTyft8jSW71jOmTNnjI4lRI97a9lbNPZtJH1yOumXpcMgeG3pa35VePoCj12+dBVc\nsy9YvQNYdMHrFgOLPZVLCF9WX19PRUMF6Qnp7eti02LJPZBrYCrfZY4zo0xtX2jNgWZUrKKoqIjU\n1FSDkwnRs47kHyFuZlz7cmxqLHl783A4HAQEGNXTqfeRyWOF8GGhoaFEWCKor6xvX1dVXEW/vv0M\nTOW7HJWO9jMDTocTXa2Jj483OJUQPS8zJZOqoqr25ZrSGpLjkjGbzQam6n2kKBPCh5nNZu698V4q\nP60kf3c++Z/mE3ImhOvmXmd0NJ80Mm4k+RvzKdhfQMGGAqYOmip9akSvcOu1t6KPafJ35pO/O5+G\nvQ3cfcPd0p/Swzze0b+rpKO/saSjv/uam5spLy8nOjq6x0YzlZSUcPCzgwRbghk5ciQRERHf/ibx\nJUopbDYbhw4dorikmLTUNAYPHozJJN9d/YHT6aS4uBiLxUKfPn26vD1vOLZ0t6qqKvYf2I/T6WT4\nsOHExcV9+5t6sZaWFsrKyr712O5OR38pyoRbpChzz65de3jppdW0tsZiMp1jwYIJXHnlTPn26YWM\nbiui55SUlPD00/+ipCQIp7OJ8ePjuf/+W7o0dYy0l95tz559vPTSJzQ3x6DUOW66aRzz5l1+0WO7\nO0WZ9N4ToodUVVXx3HNriI39PlZrLK2tDSxZ8jKXXJJBv36+1edLa822zZvZtmwZjXV1DJ48mXk3\n3yzzGAmvZbPZWP3hh+xbs4YNewqxxDzI2AnXoBR8+uky0tOzmT//SqNj9gi73c66FSvY+8knaK0Z\nOXs2c665hsDAQKOj+YWamhqeffYTYmK+R3x8H2y2Rt566xUuuSSDAQMGdGnbcl5eiB5y8uRJnM5B\nWK1t84UFBYViNo8mN/e4wcnct2/vXjYsWkTQ4UKC82spWvoOb/3970bHEgKA06dP8+qr77Bo0T/Z\nvv1TnE4nq5Yto2HZMu6zWkloiiDorJ28EydQykRc3GVs337C6Ng9Zv2qVZxbupSHIyL4QWQkde+/\nz+oPPzQ6ls/TWnPo0CH+53+e49ChChoaygEIDLRiNo/m0KGuH9vlTJnwe5WVleTm5mIymRg2bJjH\n+luFhYWhdSVa6/ZT2k5nJZGRXe/P4mlr33mHfUc00SGzCTJbqW7ei/pwNTd+5ztER0cbHc9txcXF\nHDt2DKvVyrBhwwgJCTE6kuikgoICfv3rN6mpGQFEk5Ozm5tvLuHE+rU8lpaGWSmsQXbCaWTXvg+w\nWKdjMplJTfW/s7x2u53Dhw/z7iuv8GBcHOFBQSilmJ+ayqI1a7jqxhul60QXbN26gxde2IndPpXK\nyrPk5KxmwoRGUlLGuo7tUV0+tkhRJvze44+/REvLcJSyExb2PI8/fgd9+/bt8f0OHDiQgQM3cOzY\nR0RGXkpdXT5xcScYM+bC6fq838GjxZhNs0gOHwxApCWBNUVHaWho8LmibMfWrWx+6SVGOByUK8Xm\n+Hi++8tfGh1LdNJ7763l6N4oUpUNi26lWMfxxusbGRVvQ2uNJTCQoX1aefrT96hXM6nbfICAgHV8\n73uPGR29W9lsNv759NOYDxxg6OHDbDx2jIJLLuH64cM71QtYfNV77+WQkHA3VmscpaW7KS5OYs+e\nj3A4aoiNPYbDMZZf/epNHI4RKFVOfPxmfvnL77q1DynKhN8LCbmZ5ORMAEpK0li6dC2PPXZfj+/X\nbDbzk5/cR3b2FnJzc8jM7MOsWd8jNDS0x/fd3cITMzh8KJDU1lYsAQEU1DURFN3X5+6x2dLSwvp/\n/pMH4+KIdn2D3VBQwKbVqw1OJjprz6f7SLYNZ2h8FADJNhvrThRxw/wslm/ZwpzkZI5UKJKj5tAa\nO5CklGRCQlLJzS1k4sSJBqfvPgcPHMBy4AB3ZmRwymaj5uBB1h0/ztGkJPbX1jLq+uvlLFkXaK2p\nqmogJSUapRSTJo3k5MnjFBScYv788UyefCcLF75KXNyDhIS0fVEtKNjA6tWb3NqPFGXC70VFZbQ/\njokZwMmTqzy275CQEObNm828eR7bZY+47rppnDz+Gftq7djrmwmKdTJp9ACfu79mVVUVEa2t7QUZ\nwICoKFYd971+fqJNn+BGCvRRnLo/JmWmwVZMTFAFl191FQfj43ny44/Z1RjE0MsuJ3PgQEwmEw0N\ncRw//rbR0btVSWEh/QMCUEqROWAAp7Smed8+/lZWxlW3386ca64xOqJPU0oxfnx/du7cSmrqdAIC\nAggJKeb++6/mxhuvpqSkhNbWiPaCDCAqagDHj7v3eSNFmfB7VVWniInpD8C5c0e59NIkgxP5npkz\np1FQUMrWrbkoFUqfPk386Ed3+NwcXjExMdQFB3OusZFYqxWAo9XVJE2danAy0VnTr5xNzvFXOV1b\ngiIUa2AJ40ankJiYSNqNNzL3uuuo+/enMJsj2ttrZeVRZszwr+NAUkYGB2w2JmmNyWQibcAAwi0W\nvvf735OcnGx0PL9wxx3zqapawvHj+wHN4MEh3HzzbUDbsSU4uI7GxnPtg7uqq48ydap77UzmKRNu\n8cV5yh588A80Nw8B7ERGnuTxx+8iKcm/DsieUllZSVNTE4mJiT1y+xWHw0Fubi4lZ8+SmJLC0KFD\nu30/u3fsYP0LL3Cpw0EtUJKczHd+/nOioqJk3ikf0tzczMEDByg6c4Y9a9bQt7oai91OcVgYcx55\nhDHjxrW/9uDBz3j66RW0tg5FqUbi4k7z+OP3delMr1KKsrIyPtu/H3NAACNGjSIqKqo7frROsdvt\nLH72WWy7d5OmFMeAjKuv5pqbbzYskz/SWlNaWopSivj4+C9dEt6xYzcvvLAeh+NSoJbk5BJ+/vPv\nfH5skcljRffzxaKsurqaw4cPYzabGTp0qE/26fo2drudgoICgoKC6Nu3r0/2HXE4HCx+9lmcO3cy\nwGzmuMNBwMSJ3PXQQ5hMJlpbWyksLCQkJITk5OQu/Yzl5eUcP34cq9XK0KFDCXKNUpNji29oaGjg\n5T/8gaTCQuJNJnbbbDQNGMDAoUOZMmUKKSkpQFubKiwsRClFWFgYx44dIzg4mKFDhxIcHNylDEop\n/vS97zHKbscOHAwJ4bZf/IK0tLRu+Ak7x+l0cuzYMSoqKkhMTKS4uBitNZMmTSIoKMiwXL3JNxxb\npCgT3c8XizJ/by9nz55lyZNPElNVRZPTScDgwdz1wx/6XPGZm5vL1j/+ke9lZKCUwqk1L+fnM+0X\nv8BisbB00SLi6uqo15rQESO446GHuvzBer7e0Fb8xfrVq2l44w2uyczEbrez69NPeT4/n/ETJtAQ\nG8uCRx8lPDycN556itDiYpxAa1oadz36aLeNFlZKUfDoo6RFRgJwsLSUXQMG8J1///du2X5X5OXl\n8Z/33ktccTFmoDg+nv965RUGDRpkdLReSWb0F6KX0Fqz7MUXmdfUxKVpaWitWXX4MOtXrPC5yxbl\n5eVkKtV+BsykFBm03SJnz4oV3KQ1/V0/4wd797J53TrmXH21oZmFMcrz8xnm+tJRmJdHZFkZs8LC\nmBQTQ6BSvPfss0QnJzO5vJwJ6ekAbDp9mlVLl3L7Aw90W47U8+Y87BcdzYq8vG7bdlf89T/+g+tL\nSljgOmP4UWkpf/3lL3n23XcNTia+jW/10hVCfEl9fT0NBQUMdd04WCnF+IQETu3aZXAy9yUnJ3NM\na+xOJwB2p5NjgNVqJaCigv4xMUDbzziuTx9O7d5tYFphpORLLuFwfX3bNAXFxYQHBVGsFElhYWRG\nRxN47hzHduxg7Hl9R8cnJpK3Z0+35jheWdn+OLeigpQhQ7p1+511es8e5sbHty/PjYuj6MABnK7/\nt4T38lhRppRKUkrtUUo1KaVM562/USlVeN7ynUqpLUqpj5RS4Z7KJ4QvCg4ORoeEUNvS0r6utL6e\nyMREA1N1zoABA4i7/HKeLyhgRUEBzxUUkDh7NsOGDaPRbKbRZmt/bWl9PZEyWKPXmnDZZVReein/\nKChga0sLf6utZcrw4YRbLDTZbDSYTEQnJFDe2Nj+ntKGBiLPK1S6wzKnk/cKCni7oICNYWHMWbCg\nW7ffWWF9+pDf0NC+nNfQgDU62udGS/dGHutTppSyACHA+8DlWmuna/2bQJrWeqpSKhBYB2QBC1zr\n/3zBdqRPmYGkT5n32bRuHQdfe43JISE0ORxsAW765S87fdPzlpYW8vLysFgspKene/RArrWmoKCA\nkpISkpKSSEtLQynF6o8+Im/pUiZardTZbGwLCOCO//zPbr0zQ29oK/7EbrezZcsWDh06RGFODleH\nhBARGMinjY2k3XQTcUlJbH7mGaZaLDi1Jsdu54qf/IRhw4d3y/6VUtTV1XHkyBHMZjNDhgzp1j6O\nXfHuO++w4vHHuT4gAJPWvGuzMeSBB7j7vvtI9MEvbL6u2zv6K6WygGat9XbX8neA+4FDwE+01vVu\nhNuAqyhTSl0FJADf1VpPU0oNBR7RWj+ilIoBXtRa33TB+6UoM5AUZd5Ha82RI0c49OmnBIWEMG7a\ntE7PS5Sfn8/bTz5JUn09jVrjHDCAu3/8Y8LC2u4TaLPZsNlsWF1zfHmK1prPPvuMIzt3EhIZyfip\nU0lISOjWffSGtuKrnE4njY2NWK1WTCYTdrudt156iXOffkofpThqs9FnxAgSY2MZNG4cw4cPRynF\nyZMn2b91K8pkYvSUKWRkZHRbJm9vLzk5OXz0+usUFxUR5nAwLTGREqeT1FmzuPGuu+SsmQf1REf/\nRcCvXRsfBDwPvAxMBf4M/FsncgLcA9wNfH5zqCig1vW41rUshPgGSimGDBnCkC72Z9Fa88Hf/84N\nWjPQ1aH+k+PH2bBqFVffeCNrPv6YPcuXQ2srCcOHc/199xHj6ufV05RSDB8+nOHddJZD+I6jR4+y\n4uWXaS0vJyAmhivuvZfGxkb0li38oF8/TEpR0djISydOcPUjj3zpC0P//v3p37+/gemN0dLSQsnJ\nkwQ3NtJ69Cjj+/fnhuRkAkwmXlu7ls9GjWLEiBFGxxQX0dFSuT9w0PX4JmCN1vph4PtAp+7doJSa\nBWzTWtvOW10NfD6cJcK1LITwgJqaGuzFxQx0TaiplGJ0nz4U7N3Lju3bKVq6lB/FxvLztDQG5+by\n9vPPe/WZAuH7ampqWPbkk9zY2srP09O5HVj19NMc2LKFUeHhmFwjdftYrSTbbJw9e9bYwF5i9Qcf\nYF63jvtDQnjcaqVPURErDh0iwGRihMVC/uHDRkcUX6OjZ8qc5732cmCZ63Ep0JkpkRUwDLhWKTUX\nuFQp9d/AfwPDXAMBZgPbLvbmhQsXtj/OysoiKyurExGEP8rOziY7O9voGD7JarVis1ioaW4m0tU3\npri+nuh+/Ti0aRMzY2IIdU1AeVlKCtuPH6eystLn7n8pfMeRI0cY0tJCumtQR3J4OCPOneNgayvF\nzc0Mc73O7nRSrrWhM+p7k8+ys/lBSgrO5maKgdkREfyloIAbRoygyGYjppsv/Yvu09GibBfwH0qp\ntcA04EHX+nSguCMbUEoFAKuAkcAnwC+01k+7ntuktf4v1+MXgc1AJXDHxbZ1flEmxPkuLNKfeOIJ\n48L4mKCgIKbccguvv/YaE4OCaHQ4+DQwkNvmzyf7/fdpsdvbX+vQGjsQGBhoXGDh9wIDA2m54M4N\nLcCIMWM4UFGBo6CAhKAg9jY1kTFnDnGuqWF6u0CLhRaHg9iICIJTUtidn08V8HF+PnnJycweP97o\niOJrdLSj/3DgTSANeFJr/YRr/TNAlNb6zh5N+eUs0tHfQNLR331Op5Pa2lrCwsIICPDu+Zq11hw/\nfpzcXbuwWK2MnTyZ+Ph4Dh8+zOo//IH5kZFEWCxsLi2lZerUbp2I02je0FZ6O601tbW1BAcHY7FY\naG5u5m+/+hVTamoYHBvLyaoqNgQH82+/+x1Op5Nd27ZRU1ZG5vDhjBw50qOd1725vWxcu5YTr77K\n3Ph4tNb86+hRGocOZfq8eYybOLF94E5HtbS00NzcTEREhE/ews1oHrvNklIqGHBc0C+sR0lRZiwp\nytxz7NgxXlzyIhWNFYQFhHHntXcyaeIkw/J0xcEDB9j20Uc01tQweOpUZl55JRaLxehY3cbottLb\nlZSU8PfFfyevLI8gFcT8GfOZP28+FRUVrFu2jOIjR4jv359ZN9xAkhfMUefN7UVrzbacHPauXo12\nOhk5Zw5Tpk93u2jVWrPikxV8uOFDWnUrmfGZPHDXAzKthpt6rChTSo2jrdP/cq11vVIqDGiRoqz3\nkKKs4+rq6vjZ735GyOgQIhMiaaxppHxbOb/5wW+6dX4t0T28+UPW3zmdTv7j9/9BZWIlCf0TsDXb\nKMwp5LEbH2Ps2LFGx7uo3tBedu/ezaL3F5E6JZXA4EBKT5YSXRLN7375O5lSww3uFGUd+q0qpRKU\nUtuBHbRdxvx8WuS/0DYlhhDiAsePH6clsoXIhLYbFlsjrZAIBz87+C3vFKJ3KS4upqSphMQBiSil\nCAoJIvKSSLbu2Wp0tF5t+97tRAyIICgkCKUUiQMSKW0upaioyOhofqujpe5TQBltIy0bz1u/FLiy\nu0MJ4Q8sFgtceA7Zjl9d8hOiOwQFBaHtGu384syTrdlGmNW9vk+ie1lDrNhavjiIaadG27Ucw3pQ\nR4uyy4Ffaq2rLlh/irbO/0KIC1xyySUkmZMo2FdAQ3UDZ4+cJaw6jLFjvPNyjBBGiYuLY+yAsZza\nfor6ynrK88uxn7Izc8pMo6P1arOmzsJ+yk55fjn1lfXkbc9jTL8xMsq1B3V09GUtMF5rfVQpVQeM\n1FqfUkpNAFZprT0zrTfSp8xo0qfMPdXV1SxfvZzPTnxGZnIm11x5jVd0UhZfZXRb6e2am5tZs34N\n2/dvJzYqlmtmX8PAgQONjvW1ekt7OXHiBB+v/ZjyqnImjpjIFZdf4TX3+PQVPXHvy+XAAa31Lz4v\nyoBC4C3AqbW+uSuB3SFFmbGkKBP+StqKcIe0F9FRPXHvy58Bm5RS4wELbZ37hwGRwJROpRRCCCGE\nEO061KdMa50LDAe2AmuAYOBtYJTW+kTPxRNCCCGE6B26NHmsEeTypbHk8qXwV9JWhDukvYiO6pbL\nl0qpMcB+rbXD9fhraa33uJlRCCGEEEKc52vPlCmlnECi1rrM9fjraK21uUfSXTyXnCkzkJwpE/5K\n2opwh7QX0VHd1dG/H1Bx3mMhhBBCCNFDvrYo01rnAyilAoGHgWe01gUeyiWEEEII0at86+hL183G\nHwY6dOpNCCGEEEK4r6O3WVoNzOrJIEIIIYQQvVlHJ49dC/yPUmoksAtoOP9JrfV73R1MCCGEEKI3\n6ehtlr5p9CVa628946aUSgKWA0OAUCAdeI22oXxngLu11k6l1J20XS6tBO7QWtddsB0ZfWkgGX0p\n/JW0FeEOaS+io9wZfdnRGf1N3/Svg7kqabsEut21XAVcrbWeAeQBV7kGFTwITANedz0WQgghhPB7\nHS2oukxr3aK1rj5vufq8s2A2wA4MAA5qrZ20XTK9zFP5hBBCCCGM1OGiTCk1Xym1WSl1TilVoZTa\nqJS6uqsBlFLJwBzaBhNEA7Wup2qBqK5uXwghhBDCF3Soo79S6n7gWeAN2vqBAUwF3ldKPaS1frkz\nO1dKWYBXgftd/cmqgQjX0xFA9cXet3DhwvbHWVlZZGVldWb3wg9lZ2eTnZ1tdAwhhBDCbR3t6H8c\n+KvW+m8XrP8h8EOt9SUd3qFSG4DZrntqvga8p7X+wPVcIG2XLWcCC4A0rfWfL3i/dPQ3kHT0F/5K\n2opwh7QX0VHudPTvaFHWAlyqtT5xwfqBwCGtdVAHthEArALGALuB3wAfux4DLNJaf6CUugt4CBl9\n6ZWkKBP+StqKcIe0F9FR3XXvy/OdBq4ATlywfg7QoVsvaa3twOwLVkdc5HWLgcUdzCWEEEII4Rc6\nWpT9L/B/SqkxwBbXuqnA3cAPeyKYEEIIIURv0qHLlwBKqRuAnwKDXasOA//7eX8wT5HLl8aSy5fC\nX0lbEe6Q9iI6qtv7lHkTKcqM1RuKsvr6etasX8PB4wdJT0pn3ux5xMfH91BC4S3kQ7Z7nDlzhlXr\nV1FcXszYS8cyK2sWwcHBRsfqdka3l5MnT/JJ9idU1lYyedRkpk+bTkBARy9+CU+Sokz0GH8vyhwO\nB7/9y2/JM+URkx5DbVkt1mIrv/nZb4iMjOzBpMJoRn/I+oPS0lJ+/dSvcWY6CY0O5dyJc4yOGs2j\nDz3qOnb4DyPby6lTp/jtC7/FMsiCxWrh3NFzzB44m3vvuNeQPOKbdcttlpRSdR38V/t12xDC15w4\ncYL8xnwyxmUQERdB30v7UhdVx+49u7/9zUL0cjnbcrCl2EgelExkfCSZl2Wy//R+ioqKjI7mVz7Z\n+AlBA4NI6JdAVGIUmVMz2bhvI7W18nHs677pXKd04Be9TlNTE8ry5S80yqKoa6j7mncIIT5XU19D\nYEhg+7JMH9eKAAAgAElEQVRSCpPFRGNjo4Gp/E9NXQ2WPpb2ZWVSaLOmqamJiIivTGogfMjXFmVa\n61c9mEMIr9C/f3+CaoKoLa8lIi6CloYWHGcdjJg/wuhoQni98SPHk/2vbGx9bQQGB1JVVEWYPYz0\n9HSjo/mVyaMn8+K6F4mIi8AUYKL0ZCl9I/pK31c/IH3KhFv8vU8ZQG5uLn9f8ndqHbUEOgK5bd5t\nzMya2UMJhbeQPmVdp7Xm45Uf82H2hzgCHMQGx/Lw3Q+TmZlpdLRuZ2R7cTgcvP3e26zdsRYdoOkb\n2ZeH73uYxMREQ/KIb9YTM/pbgF8BtwOpwPkz+GuttbkzQTtDijJj9YaiDMBut1NZWUlkZCQWi+Xb\n3yB8nhRl3aepqYn6+npiY2Mxmb6267JP84b2Ul9fT3NzM7GxsX43kMKf9ERR9kfgNuB/gCeB/wAy\nXOv+S2v9fKfTukmKMmP1lqJM9D7SVoQ7pL2IjuqJoiwPeFhrvVIpVQeM0lqfVEo9BFyutV7Qtcgd\nJ0WZsaQoE/5K2opwh7QX0VHdMiXGBRKAQ67H9UCU6/EnwJXuxRNCCCGEEBfqaFFWCKS4Hp8E5roe\nTwKaujuU8AyllNv/hBBCCNEzOlqULQMudz1eBCxUSuUDrwEv9UAu4THazX9CCCGE6AmdmhJDKTUJ\nmAIc1Vp/3O2pvnnf0qesm3Suf5j0KRP+SdqKcIe0F9FR3d6nTCn1e6XUg58va623a63/AvRVSv2m\nkzmFEN1Ea011dTUNDQ1GRxHCLdJ2jaG1pqqqSu624GU6OvryNHCj1nrnBesnAO9ordN6KN/FssiZ\nsm4iZ8r8Q1VVFS++/iKHzxxGacWM0TO44+Y7CAwM/PY3i3a9oa14m8rKSl745wscKzqGSZuYMaat\n7QYEfNMdAL2DL7eXiooKXvjnC5woPYHJaeLyCZdz6423YjZ7bMrRXqUnRl/GARUXWX+OtpGZHQmV\npJTao5RqUkqZXOt+ppTarJRarJQKcK27Uym1RSn1kVIqvIP5hOi1Xn7jZY6qo6TNSyPlyhTWnlzL\nmvVrjI4lxLd6afFLnAw8Sdq8NJKvTGbN8TWs27DO6Fh+TWvN8689T35IPmlz00i+IpmVuSvZtHmT\n0dEEHS/KTgMzLrJ+GnCmg9uoBGYB2wGUUvFAltZ6GnAAuF4pFQg86Nru667HQoiv0dDQwKH8Q/S9\ntC9KKcwBZhIuTSBnd47R0YT4RnV1dRw+fZiUISntbTd+aLy03R5WXV3NybKTJA9Obvu9B5rpM7iP\n/N69REfPET8PPKWUCgI+/xozm7YZ/v/YkQ1orVuAFte0CgoYB2S7nl4L3EnbXGgHtdZOpdRa4MUO\n5hPCUA6Hg2PHjlFfX0///v2JiYnxyH4DAgIIMAVgt9kJtLRdrmxtaiXWGuuR/QvRWYGBgZgx47A7\nCAhq+yhqbWolIbTt4ktpaSkFBQVER0fTv39/v71dU09pamri6NGjaK0ZNGgQVqsVgKCgIExOE067\nE3Ng2+XK1qZWwkPlwpQ36FBRprX+i1KqD/BX4PMbAba4lv/UyX1HArWux7W0TUgbdZF1Qni1xsZG\nnnzuSU7UnkBZFaalJh5Y8AATJ0zs8X1bLBbmTp7L+1vfJ25oHLYWG7W5tdx/x/09vm8huiI4OJg5\nk+bw0ZaPvmi7h2r5t3v+jdVrV7NkzRKIAV2vGdN3DA999yHpJ9lBxcXF/PHZP1JjqQEThL8bzs8e\n/BmpqamEhoYyc9xMVm1dRdyQOFqbWqk/XM/c78z99g2LHtfh3pRa618opX4HDHWtOqy1ruvkfjVQ\nA/R1LUcA1a51ERes+4qFCxe2P87KyiIrK6uTMYS/yc7OJjs726P73JSzieO242RkZaCUoqm2iX+8\n9w9GjhhJcHBwj+//+muup09MHzbt3ERIcAjz7p7HpZde2uP7FaKrFly/gIQ+CWzetZnQkFDm3juX\nxMRE/vzqn0malURQSBBaa3Zu3MmkvZOYMGGC0ZF9wpL3l9CU1kT6wHQAyvLKWPzuYn7x6C8AuO2m\n20jenMzm3ZuJCItg3nfmMXjwYCMjC5dOzVPWpR0qtYG2S5+xwCta6/lKqf8HnKJtktp1wExgAZCm\ntf7zBe+X0ZfdpLePvjxw4ADvfvIu56rOMX7YeG685kbCw90/hf/U80+RF55HTMoXlywLNxSy8HsL\nSUvz2MBk0UW+PJrOH9TX1/PeR++xcuNKDp89zMTrJpI0IAmA4mPFTIucxl233mVwyi94c3v5/k+/\nT+KVie2XJ7VTU/hRIa88+cpX7sySn5/P2x+9TX5RPkP6DeGWa28hIaFD4/dEB/XE6MsuU0oFuPqJ\njQRWARnAJqXUZmAEsExrbaetH9lm4G7gBU/lE73LyZMnefKNJ6lJrSFiWgTZJdn87eW/deogm5Gc\nQV3pFyeNbc02TE0mj/UrE8LXaa159pVnWX92PXGz4mjNaGX7pu2cO30OgOaKZlKTUg1O6TvSU9Kp\nKq5qX64uqaZvQt+vFGSVlZX84YU/kB+WT/SMaA46D/LHZ/9Ic3OzpyMLF48VZVpru9Z6ttY6Rms9\nR2u9Q2v9J631NK31Xa6CDK31Yq31FK31NV24PCrEN9q0fROW/haiEqMICgkibXQax0qPUVxc7Pa2\nZs2YRVx9HPnb8ynYX8DZjWdZMGcBYWFhPZBcCP9TVlbG4eLDpI9NJyY+hiGDh9AU3MSetXvIy8mj\nX0A/JoyXS5cddfu1t2PLtZG/O5+C3QU0Hmjkrhu+epZx3/59NMc2E58ZT2BwIMmDkqkKquLIkSMG\npBbgRp8yIfyJzWbDZP7iO4lSCkzgdDrd3lZkZCQLf7qQffv2UV1TzZBrh5CRkdGNaYXwbw6Ho61n\nhMuwocMIagki+kw0911xHyNHjsRisXz9BsSX9O/fn9//7Pfs3bcXrTWjRo4iLi7uK69zOBwo05fP\nnmmlO3UcFN1DijLRK02dMJWc13No7NNIcFgwxUeLSQ1PJTk5uVPbs1qtTJ48uZtTCtE7JCUlkRGd\nwelDp0kekkxzfTOBFYE89J2HGD58uNHxfFJsbCyzL5/9ja8ZOWIkb615i+qSaiITIjl3+hxhDWEM\nGjTIQynFhTze0b+rpKN/9+nNHf211uRszeHdVe9S01DDyEtGcvfNdxMbK/N79Vbe3HG7N6isrGTx\n0sXsPbqXcGs4N11xE9OnTf9KPyhv4S/tJTc3l9fff53iimL6pfTjngX3yJn+buZOR38pynqx3lyU\nfU5rjcPh8Il77Yme5S8fsr7ObrdjNpu9thj7nD+1F601drudgIAAr/+9+yKvHH3Z3WpqalBKderf\nli1bjI4vvIRSSgoyIbyIFAaep5QiMDBQfu9ewKc/jYKCwmltrXHrPZGRUzq1r842Vn/5JmUE+Z0L\nIYToTXy6KGu7lObuB3dXvgl05lKf6Br5nQshhOgdfPbypRBCCCGEP5GiTAghhBDCC0hRJoQQQgjh\nBaQoE0IIIYTwAlKUCSGEEEJ4ASnKhBBCCCG8gBRlQgghhBBeQIoyIYQQQggvIEWZEEIIIYQXkKJM\nCCGEEMILGHqbJaWUBXgbiABqgFuAHwPXAgXAfVpru3EJhRBCCCE8w+gzZXOBnVrrmcAO4HYgS2s9\nDTgAXG9kOCGEEEIITzG6KKsAolyPo4E0YINreS1wmRGhhBBCCCE8zeiibBswRin1GTAWOAHUuZ6r\n5YuCTQghhBDCrxnapwy4G1iutf6LUurfgUDa+pfh+m/1xd60cOFCmpubsdubgWwgywNRha9YuHCh\n0RGEEEIItymttXE7V+qHQIPW+hWl1H20Xb6coLWer5T6f8AprfU7F7xHa62pqakhPj6N1tYat/YZ\nGTmF5cv/xJQpU9zNCrj7u1Juvr5r3P1bdv5n6kyb6ezvwv185/8elFJu/15E7yRtRbhD2ovoKFdb\n6dCHoNFnyhYDbyml7gZagVuBB5RSm2kbffmkkeG6R2cLGO8uADvHH38mIYQQonsYWpRprauAKy5Y\n/SfXPyGEEEKIXsPojv5CCCGEEAIpyoQQQgghvIIUZUIIIYQQXsDojv5C9LjVa1ezfvt6AgICmDtt\nLlMmT3GNPBWidzpw4AAfrv2Q6rpqJo+azFVXXkVwcLDRsYSHtLa2suKTFeTsySEiNIL5l89nzOgx\nRscSyJky0Qu8nvM69qF2Gvs38sLKF9iUs8noSEIY5siRI/zljb9QnliOaZSJZbnLeOWNV4yOJTzo\n9bde570D72EaZaKybyWL3lrEwYMHjY4lkKJM9AKpE1MJiwkjIi6ChDEJrNy40uhIQhhm7ea1hA4O\nJTo5GmuklYwJGew4uoOqqiqjowkPqK+vZ8uBLWRMysAaaSUqMYrISyP5ZNMnRkcTSFEmegFzgPlL\nj1taWwxMI4SxWmwtmAO/+H9CmRTKpLDb7QamEp5it9vRSqNMX3ThMAfKcdFbSFEm/N7pvadx2B3Y\nW+0U7S9i5sSZRkcSwjDTx0+n+kg1LY0taKfmbO5Z+sf1p0+fPkZHEx4QGRnJ0NShnDl4BqfDSWtT\nKxWHKpgxYYbR0QTS0V/0AlMSprB91XaUUlw14SrmXTHP6EjdqrW1leWrlrNx10ZCLCFcnXW1DGbw\nU62trXy86mM27dpEiCWE+TPnM/myyW79rceNG8ftlbfz0YaPaLY1M7z/cO77zn3SXryUw+Fg7fq1\nrNmyBhRcMeUKZs+ajcnUuXMqSikeuOcBXvvXa+xdsZeggCBumX4Lky+b3M3JRWcYeu/LzvC9e196\n7jZL3n/vS0/s6+L3vmxpaUEpRVBQkJvb836vvfkaa0+tJXlkMvZWO2V7yvjBdT9g4oSJRkfzKb5w\nL8PX3nyNdXnrSBqRhL3F9be+vnN/a7vdjt1ul1GXneSp9rJ81XL+tf1fJI5KBKBkbwm3T76dq668\nqsvbbm5uJiAggIAAOT/Tk9y596VcvhS9gsVi8cuCrLm5mU17N5ExMYOQ8BDCY8OJHR4rnXb9UFNT\nE5v2biJ9Qnrb37pPOLEjYvlkc+f+1gEBAVKQeTmtNSs3riRlXAqhUaGERoWSPC6ZVZtXdcv2g4OD\npSDzMlKUCeHDnE4nTu38Uqddk9mEzWEzMJXoCVrri/+t7fK39mc2hw2T+YuPapPZJIMy/JgUZUL4\nMKvVyvgh4yncW4jD7qC1qZWyg2XMmjjL6Giim33+tz69r23gSktjC2UHy7h80uVGRxM9RCnFrImz\nOLPnDPZWO7YWG2f3npX/v/2YT5+31NoJFLj1HqezuWfCCGGQe2+7l8B3Atm2chuWAAu3TL+FGdNl\nJJU/utjfevq06UbHEj3ohmtuwOF0sGHNBgDmTZjHtVdfa3Aq0VN8sqO/0RmEEEIIITqqox39ffJM\nma8Vkv6uqqqKxYsWEVhYiEkpmpKTueuxx4iNjTU6WvsIqYcffoznnksDHnPj3WsYN+5P7Ny5pqfi\nCS/iC6MvxVe1tLSw5IUXqN27l3ClKA8P5+ZHHyUzM7NH9+tt7UVrzYr33yf3449JAIrMZmbedx8T\n3ZxpQHQ/d6abkT5lostWvv02o86c4d/S03kgLY0JpaUsf/NNo2MJIXqBnOxswnft4odpaXwnLY0F\nwHvPPovD4TA6mkcdO3aMwg8+4EfJydyTlsZDsbFsfOUVKisrjY4m3CBFmeiyU7t3Mz4pqX15fFIS\neXv2eNW3SCGEfzq1axfjY2Pbz0b0i44m6Nw5KioqDE7mWaeOHGFkQAAW1xQXkcHBDHQ6ycvLMziZ\ncIcUZaLLIuPiKGtoaF8ub2ggIi5OZggXQvS4yMTELx1/mmw2GkwmwsLCDEzleZGxsZSdd3ZQa025\n1kRGRhqYSrjLJ/uUCe8y4+abeXfRIqbW16OUIqelhRk//KHRsYQQvcCUuXN5Y+dOmk+fJiIoiO31\n9Yy88UZCQ0ONjuZRo8aM4YXERFbm55NmtXKovh7zyJH069fP6GjCDVKUiS4bMWoU4b/+NXtzctBa\nM3/yZAYMGGB0LCFEL5CSksK9TzzBzs2bKaquZuL48YwYMcLoWB5ntVq5/1e/4tOcHA4WFpI6dCjj\nJ07s9D0yhTGkKBPdIjMzs8dHOwkhxMUkJCQwf8ECo2MYLjw8nNnz5hkdQ3SBlNBCCCGEEF5AijIh\nhBBCCC8gRZkQQgghhBeQokwIIYQQwgsYWpQppSYqpbYopTYrpZ50ratRSm1QSq1XSkUbmU8IIYQQ\nwlOMHn2ZD8zUWrcqpRYrpYYBB7TWMw3OJYQQQgjhUYaeKdNal2qtW12LNsABDFFKbVJK/Y+B0YQQ\nQgghPMor+pQppUYAcVrrw8AArfV0IFopdY3B0YQQQgghPMLoy5copWKA/wNuBtBaV7ueWgaMBj66\n8D0LFy5sf5yVlUVWVlZPxxQ+Ijs7m+zsbKNjCCGEEG4ztChTSgUAi4Gfaq3LlFJWoEVr7QCmAvsv\n9r7zizIhzndhkf7EE08YF0YIIYRwg9GXL28GxgF/UkptAEYAO5RSG4EU4B0jwwkhhBBCeIqhZ8q0\n1kuAJResHmtEFtExLS0tFBQUYLVaSUlJQSlldKR2JSUl1NTUkJqaitVqNTqOEMJgDoeD/Px8TCYT\n6enpnb45tzceW7TWnD17lsbGRtLT07FYLF963ul0UlBQgNaa9PR0zGazQUmFOwzvUyZ8x8mTJ3l3\n0SISGhqoczqxjhzJHQ89RHBwsKG57HY7S//xD0q3biVWKd4PDOTqRx5h+IgRhuYSQhinvLycxX/5\nC+GlpTiB5r59ufsnPyE6uuPTX3rrsaWlpYU3n3uO+n37iDSZeN9q5aZHH2XAgAEAVFZWsvippwg5\ncwYF1CclcedjjxEXF2dobvHtjL58KXyEw+Fg2bPPcovZzL1paTySnk703r1sXr/e6Gjs3rUL+6ZN\n/DA1lbvT0vhuRATLn32WpqYmo6MJIQzy8eLFTK2s5P70dB5IT2d0URGrli51axveemzJyc4mcs8e\nfpCezj1padwWEMCyZ5/F4XAAsPKttxhbXMz309O5Pz2dyeXlLH/jDUMzi46Rokx0SEVFBUFVVWRE\nRQGglGJsbCz5e/canAzy9u9ndHg4ZtelifjQUJJaWzl79qzByYQQRnA6nRTu38+YxMT2deMSE8nb\ns8et7XjrsSVv927GxsS0dx9Jj4oipLqa8vLytuf37GHseT/72KQkCvbvR2ttSF7RcVKUiQ4JDw+n\nwWymyWZrX1fa0EBkUpKBqdpEJSVR2tzcvmx3OqnQmsjISANTCSGMopQiPC6OsoaG9nUl9fVEJSS4\ntR1vPbZEJSdTct7P1mSzUWcyER4e3vZ8YiKl9fXtz5c2NBARF+dVfYDFxUmfMtEhVquVMddeyz+X\nLmVCSAi1NhufWizcNXeu0dGYOG0aL69fj7OwkPigIPY2NJA+Z470nxCil1JKkXXrrbz1zDNMrq3F\nqTVbHA7mfv/7bm3HW48tU668ktc//ZTmwkIiAgPZ0dTEqJtuIjQ0FICsW27h3SefZEpDAwrYYrMx\n80c/MjSz6Bjla6czlVLa1zL7C601hw4d4siuXVgjIxk3ZQrx8fFGxwKgurqaHTk51JSV0W/kSEaN\nGoXZbEYphdaahx9+jOeeSwMec2Oraxg37k/s3Lmmp2ILL/J5WxH+49SpU+zftg2T2czoyZNJS0tz\nexvfdmwxSnl5Obu2bKGhuppBY8cybNiwL50JKygoYN+2bWink5GXXUZmZqZhWXs7V1vp0GlKKcqE\nWxwOBxs++YTdK1fidDgYPmsWV153HYGBgUZHuygpykRHGf0hK9yzf+9eNi5dSk1ZGZljxnDVbbcR\nExPjsf0rpfho6VIOrl+PyWxm7Lx5zJo7t9PTbgj/5U5RJq1HuGXj2rUUvfkmD4aG8oPISJo++IAV\n775rdCwhRC9y6tQp1v/1r9zQ1MTPk5LI3LOHxYsW4XQ6PZqj+cMP+WFUFA+GhnL2zTfZuHatR/cv\n/I8UZcIt+1av5qrkZKKCgwm3WJiflsZn69e3D8UWnqWU6tQ/IXzZ/q1bmRoYSGpkJEFmM1P69sVy\n+jSFhYUezTE/LY2woCCigoO5KimJfWvkrLroGunoL9xy0cs7csnHYO7+/qUoE77tYschb/iyIZe/\nRVfJmTLhllFz5rCyuJia5mYaWltZXljIpbNmyS08hBAeM2rKFHJsNs7W1mJzONh65gzNKSmd6sjf\nFcsLC2lobaWmuZmVxcWMmjPHo/sX/kfOlAm3ZF1xBescDp5btQqH3c6Ia6/lyuuuMzqWEKIX6dev\nHzN/9CPeefttaoqKyBwzhjtvu83jneyD5s9n0fr1mAMCGHv77cyYPduj+xf+R0Zfik7TWnvFJYNv\n4u+jL9t+/+5fvpT/h75KRl/6JqOOQ5+3F184DgpjyehL4RFyIBJCGM3o45DR+xf+RYoyIYQQQggv\nIEWZEEIIIYQXkKJMCCGEEMILSFEmhBBCCOEFpCgTQgghhPACUpQJIYQQQngBKcqEEEIIIbyAFGVC\nCCGEEF5AijIhhBBCCC8gRZkQQgghhBcwtChTSk1USm1RSm1WSj3pWvcz1/JipZTcMF0IIYQQvYLR\nZ8rygZla62lAvFJqOpDlWj4AXG9kOCGEEEIIT+nymSilVAwQzwUFntY699veq7UuPW/RBlwKZLuW\n1wJ3Au90NaMQQgghhLfrdFGmlBoBvAaMvMjTGjC7ua04oBpwulbXAlGdzSeEEEII4Uu6cqbsVaAI\neBQoo60Qc5vrTNv/ATcD44C+rqciaCvSvmLhwoXtj7OyssjKyurMroUfys7OJjs72+gYQgghhNu6\nUpRdAtyqtT7e2Q24OvIvBn6qtS5TSu0CHgb+F5gNbLvY+84vyoQ434VF+hNPPGFcGCGEEMINXeno\nvxUY3MX9f3527E9KqQ1AP2CTUmozMAJY1sXtCyGEEEL4hK6cKbsfeEUp1R84SFtH/XZa603ftgGt\n9RJgyQWrtwN/6kIu0UU2m41dO3ZwOjeX2NRUJkyZQnh4+Le+79y5c6xbt5ldOw8QY2llYlYWk6ZM\nISQkxAOphRD+qLm5mZ3bt1N07BgJ/fsz4bLLsFqtX3pNWVkZOTk7qa5uZNy4QQwfPhylFCdPnmT/\n1q2YzGZGT5lCenq6QT+F5+Xk5LByyRK008kVt94q3Xy6yalTp9i6dT8mk2Ly5FFkZGR06/a7UpT1\no2205KyLPOdWR3/hPbTWLH7mGYJ372Z4eDiFW7bwUnY2D/7Xf33lQHi+8vJyFi58hT3bgoioD8ei\njlC26X85fMV2vv/znxMYGOjBn0II4Q8cDgevPvUUcYcPc2lYGCe3bOHlTZt48Fe/IigoCICioiL+\n+78XY7NNIjAwhezs7SxYUExKYjSbn3mGKUFBOIF316zhip/8hGHDhxv7Q3nAu++8w4rHH+f6gABM\nWvPmmjUUL1zI7XfdZXQ0n7Z7917+9reNBARMATRr1rzHY4/NYcSI7mtTXSnKXgDWA7+nCx39hXfJ\ny8ujZf9+7uvXD6UUwwBbfj57du1i6vTpX/u+9eu3UVQ0iCQnjEiOwuEcztm6lzEfOkRubi4jR15s\nkK4QQny9I0eOEHz0KDdmZrYfj/6Vn8/BgwcZO3YsAKtW5eB0ziQ1dTwANtsgPvxwEQNCS7gvLo7E\nsDAAEqqrWf7OO72iKPvwr3/lZ+HhDIuMBGBgXR0Ln35airIueuutbGJibiU8PBmAmppE3n77g24t\nyrrSp6wv8Gut9SGtdbnWuuL8f90VUHhWTU0N8UqhlGpflxAQQE3FN/9JS0pqUCqSUN1Wm5tNAUA0\noa2t1NTU9GRkIYSfqqmpIQG+dDyK15qaqqr25eLiGkJDE9qXAwNDcDjCOFdaStx5Z/cTQkOpKT1/\nakz/VV9RQUZoaPtyRmgojVVVOJ3Ob3iX+CZaa8rLawkNjW9fFxqaQGlp936+daUoWweM7a4gwjtk\nZGRwQilqmpsBaHU42G+z0W/IkG9836hRmSh1kjI0NoeDupYKgsxFlISG0q9fP09EF0L4mczMTHKB\nhtZWAJrtdj5Tin4DBrS/ZsyYTM6d24V2fSGsqsojNraVIRMmsLu4uP11O0tKyBwzxqP5jZI6ejSr\nysralz8pLyd5xAhMJqNv4uO7lFKMHp1BcfGu9nXFxTsZO7Z7P9+6cvlyBfAX18SvB/hqR//3uhJM\nGCM6OpoZ3/0uz736Kn2dTkqcTgZdfTWDB3/zQNvJkyeSm5vPstqtfFJQTZT5NCMGhzLmjjvo27fv\nN75X+Ibzz1a44/MPy57eT2f2JbxbUlIS4+66i78tWUKK1hQBoxYs+FKH/VmzpnH06Jvs3/83lAon\nLKyMhx9eQHh4OG889RT7CwpwAq1padx1882G/Sye9OPf/Y7/vOcetp09iwKK4uL49e9/b3Qsn3fH\nHVfz1FNvUFh4END07dvMLbd07yVh1dmDmFLqG8+Daq17pCRXSmk58Pa8+vp68vLyqKurIzExkYyM\njG/9lqW1pqSkhKKiIoKCgkhNTSUqytibMiil0Frz8MOP8dxzacBjbrx7DePG/YmdO9f0VLwuaytg\n3P3/QXWqePHUvjq3n87t68L9yrHFO9XU1PD/2bvz+Kiq+/H/r5OZzCSZ7Ps6k4SAgKwCAdkEVERR\na61L3a1+rC1qP7Xa2vbz66e12/djtVq1i7vSuu/UKiCIEWSTNRCWACELWcieTJJJJpmZ8/sjMQii\nZplkJsn7+Xj4MHMz95z3hDtn3nPv+5xbWVlJXFwcUVFRQOd4U1paSmNjI1arlaamJhwOBzabrXsS\ngNvtpri4mICAAKxWq1fPFPn78eJyudiyZQsej4exY8dSWVlJTEwMSUlJ/friM9K53W5KSkpQSvX4\nmOo6Vnr0R+/zmbKBSrqEf6isrOSDJ54grbWVPK1xZ2Vx449/jOULdQqnUkqRlJREUlLSIEYqhBju\nIpMy47wAACAASURBVCIiiOgqWofOZXteffppGj/7jLiAAP4TEMDiH/yAs6ZPP2k/g8EwYssnjEYj\nc+fOZdP69Tz/i1+QoTUVHg9J55zDFTfdJJcy+8hgMJCRkTFg7ff7huRi+PF4PKx44gmuMhrJsFoB\nWHnoEDmrV7P08st9HJ0QYqTbsW0bAZs3sywzkwClqGtt5amnnmLs+PFfu3TPSFNfX8+ny5fzw/h4\nws1m3B4Pyz/+mL1nnSUz4v1Uf25Ifg9fc41Ba/1wX9sWvtXQ0EBAbW13QgYwJTaWd3bvBknKhBA+\nVpyXx+SwMAK6LsNFBweTXF1NWVkZo0eP9nF0/uPYsWNkak242QyAISCAiWYzxQcPSlLmp/pzpuwu\nTk7KAoEkoI3OdcskKRuiLBYLbSYTdqez+81c1tRE1Bln+DgyIYSA6JQUyjZvZkLX4w63myqtu+vN\nRKeoqCgqPB7cHg+GrsuVZe3txCQkfMOewlf6U1OWfuo2pVQC8ALwdN9DEr5mNpuZfeWVLP/nP8kO\nDKTZ42GH2cx1S5f6OjQhhCB77lye+fhj3EVFxJtM7G5rY9SSJcTGxvo6NL+SmppKzOzZ/GvDBiYG\nB1Pa3k5xaiqLs7N9HZr4Cl6tKdNaVyqlfgm8DsiSGEPYvEWLSLJaObBzJ0EWC7fMmiUDnhDCL0RE\nRPD9X/+aHZ99RmllJdkTJjBhwoRv3nGEUUpx9a23kjt9OiUHDhCdnMz5M2dK3Z0fG4hC/wAgcQDa\nFYNIKcXo0aOlPkMI4ZfCwsJYcO65vg7D7xkMBs466yzOGiEL5w51/Sn0P7XiWwHJwB3Ahv4EJYQQ\nQggx0vTnTNmbpzzWQDWdNym/px/tCiGEEEKMOLJ4rBBCCCGEH5DESgghhBDCD/TqTJlS6ifAP7TW\nrbJ4rBBCCCGE9/T28uVdwHKglS8vHnsqScqEEEIIIXqoV0mZ1jrjCz+nez0aIYQQQogRSmrKhBBC\nCCH8QG9ryn7N11+y7Ka1/m2fIhJCCCGEGIF6W1N2JScnZelAMFDe9TiZznqzIkCSMiGEEEKIHurV\n5Uut9QSt9USt9UTgEWA7kKm1tmqtrUAmsK3rd99IKZWklNqplGpVSgV0bWtUSn2slFqnlIrq3csR\nQgghhBia+rOi//8Cl2mtSz7foLUu6Vo2YwXwXA/aqAMWAe98YdserfXCb9qxvLycqqoqUlJSiIuL\n62Xog6e+vp6SkhKioqJIS0tDKeXrkPqlpaWFgoICQkJCyMzMJCCgd2WJTqeTI0eOEBAQQFZWFoGB\ngQMUqRB94+9jS2trK0eOHMFsNjNq1CgMBoOvQ+oXb7wej8fD0aNHcTgcjBo1CovFMgCR+k57eztH\njhwBYPTo0T0aNzs6Ojhy5Ahaa7KysjCZTCf93uFwUFBQQFBQEKNGjSIgIKB7H4/HQ1ZWFmazeUBe\nj/hq/UnK4um8dHmqIKBHI5nW2gk4T0lUximl1gMbtda/ON1+L732Emt2rSEgIgBdr7ny3Cu56IKL\nehn+wPt006e88O4LeKI8eJo8zBw1k9tuug2jcSDuAz/wDh44wIrHHiO9rY0mYE1WFjfdfTchISE9\n2r+srIwHn3gQu8kOHog3xHPvD+4lNjZ2YAMXoof8fWw5evQof37mz7SGtKJdmjRzGvcsu4eIiAhf\nh9YnBQUFPPzswzhCHNAB1hAr9/zwHsLDw3vchsPhYPkjj2A8coRwYKXZzKU/+hHjxo8fuMAH0fHj\nx3nwHw9Sb6hHo4nVsdz7g3tJSEj4yn2qqqr414MPEl9biwI+iIriunvvJSkpCYBDhw7xyPOP4Ax1\nots1GaEZ3Hjljfzjn/+gSlehAhQRHRHce/u9pKSkDNIrFdC/2ZdrgKeUUmcrpQxKqQCl1NnAU12/\n66ssrfV8IEopdcnpnrB6z2qs51uxnm0l+dxkXl/3OhUVFf3o0vvsdjsvvPsCcefEYT3biu08G5uO\nbWLnzp2+Dq1PXC4X7z35JNcHB3O1zcatVitphw6xfu3aHrex/PXlODOcWOdZsZ5jpTa6lrfee2sA\noxaid/x5bNFa88wrz2A404B1rhXbAhvHgo7x/ur3fR1an3g8Hp5+5WmME4zY5tqwLbRREljCBx9+\n0Kt2Nnz0EWmHDvFfVitX22xcHxLCf556CpfLNUCRD66X336Z5pRmrPOt2ObbaExs5JV3XvnafVa9\n+irzGxu5wWrlequVc1ta+OCllwBwu908+fKTBE0JwjrHim2hjaPqKH98+I/UxdZhO8eGdZ6VtvQ2\n/vnGPwfjJYov6E9SdhtwDNgIOIH2rp9Lu37XJ1rrhq4f3wUmnO45hgQDAYbO0APNgagYRUlJyeme\n6jOlpaV4wj2YLZ2nf1WAwpJqYX/Bfh9H1je1tbUE2+2kdH2DVUoxOTqaktzcHu3f0dHBoZJDxGfE\nd2+Ly4hjz6E9AxKvEH3hz2NLU1MTFY0VRKdEd2+Ly4wj91DP3oP+xm63U9lUSVTyidLh2IzYXr+e\nktxcJkdHd5eGpISHE9LURG1trVfj9QWtNXmH80gYdeKsWMKoBPIO533tfiV79zIp/sRYOzkhgdJ9\n+9BaU19fT72znoiEE2dXY9Jj2Jm/k/jME/vEp8eTX5w/bJLboaI/NySvAi5SSo0BxnVtPqi1zu9j\nk0opFQI4tdZuYC5w2nfnznd2UrizEADbJBvKroiJieljtwMjJiYGj92Dx+3pHuTbattIy0zzcWR9\nEx4eTrPRSHN7O6FdtQmlTU3ETJ3ao/2NRiNxkXE01zYTFhsGgL3aTmpiqlfjzMnJIScnx6ttipHD\n0+jp/ll7NNqu/WZsCQkJwRJoodXeSnB4Z+WIvdrOxMSJPo6sbywWCyGGEFqbWgkOO/F6piRN6VU7\n0VYrxwoLSeu6hNvc3k6TwdCrS6D+SilFcnwy9mo7kYmRANir7KQkfP0lxZjUVEpraxkV3ZnAl9rt\nRCUloZQiLCwMkzbhbHF2nzSwV9uxJlixV9uJSes83ptqm4iPih/yNYtDTb+Lm7TWh5RS5Z0/6pbe\n7KuUMgKrgMld//8f4B9KqWbgKPCr0+131SVXcchxCFOsibbjbWRbs8nMzOzfC/GyhIQEzj3rXNbk\nrMGcbKajsYNkVzKzZs7ydWh9EhwczKwrr+T5F19kutFIk9bkWizctGRJj/ZXSnHtt67l8VcepyG1\nAe3WGI4buPK/rvRqnAsWLGDBggXdj++//36vti+GtzGWMRz61D/HFqPRyDUXX8PTK57GkGJAuzTm\nKjOXLrvU16H1SWBgIN9d+l2eee8ZjKlGPO0egmqCuGTZaatWvtK8JUtYvm0bTcXFhAcEsMPlYtZ1\n1xEcfLqS56Hnmkuv4eF/PYw92Q4aAioC+MFNP/jafRZdfTVvP/QQ2c3NKOAzpbjw1lsBMJvNXL3k\nal5Y9QLGNCPaqQmuCeae2+/hhfdeoKS2BGVQ6FLNj6790ZCfnDbUKK17tBbs6XdW6k7gPuDztP0Y\n8Cet9d+8ENtX9anb2trYsXMHpRWljLKNYvLkyX5ZPO/xeNi3bx8HDh8gITaBGdNn9Lgo3h9prSko\nKOBgbi4hYWGclZ1NZGRkr9ooLS1lx+4dGAwGZpw142uLVb1BKYXWmmXL7uYf/7ACd/di7zVMn/4n\ntm3rT4nkwOocMHv7Hu78m/hrX33rp299ndrvUBhbioqK2Jm7k+CgYLKnZ/vNmby+KiwsZNeeXf16\nPQ0NDez87DMcTU2cMWkSWVlZA55MfD62DIby8nK279qOQjH9rOndBftf5/jx4+Ru3472eJg0fTrJ\nyckn/b6goIDcvFwswRayZ2QTFRVFZWUl23Zuw+12M23KNFJTvXslY6TqOlZ6dED2OSlTSv0S+AXw\nEJ21ZNB5yfEnwP/TWv+/PjX8zf3qwXojiKFPkrLT7iVJ2Vf0K2OL6Ck5XkRP9SYp689XwB8At2ut\nX/7CtrVKqcPAH4EBScqEGAr6+i1dBnkhhBi5+rtO2Wen2b4NSOxHu0IME70/qySEEGLk6s+SGIeB\n606z/RqgrzMwhRBCCCFGpP6cKfs18LpSah6dNWUKmAOcQ+eNy4UQQgghRA/1+UyZ1vptYCZQCVwM\nLAUqgBla63e+bl8hhBBCCHGyPidlSqkzgRat9XVa62l0zsRUwIVKKVltTgghhBCiF/pTU/YcMAVA\nKZVG522RooBlwB/6H5oQQgghxMjRn6TsDODzu2tfAWzVWl8E3EBnsb8QQgghhOih/iRlBqCj6+dz\ngZVdPx8FBnaZdiGEEEKIYaY/Sdk+4IdKqfl0JmWrurYnAzX9DUwIIYQQYiTpT1L2M+A2IAd4RWu9\np2v7t4Ct/YxLCCGEEGJE6fM6ZVrr9UqpOCBca133hV89ATj6HZkQQgghxAjSn8Vj0Vq7gLpTthX1\np00hhBBCiJGoP5cvhRBCCCGEl0hSJoQQQgjhByQpE0IIIYTwA5KUCSGEEEL4AUnKBFpr2tra8Hg8\nXm3X6XTidru92qYQYngbyHGjvb0dl8s1IG0PZ263G6fT6esw/M5AfHb2a/alGPpKS0t5/rXnOVp+\nlAhLBNdeci3ZM7L71WZNTQ0vvLCCvLzjhIYaufzy2SxcOBellJeiFkIMNzU1Nbzw6gvsK9xHiDmE\ny8+/nEULFnll3GhqauJf/1rB9u3FmEwBXHjhVC65ZDEBAXJe4utorVmXs4531rxDs7OZCRkTuPm7\nNxMbG+vr0HyuqKiI559/n5KSRqKjzVx//XlMnTq53+3KETmCtbe389CTD1ERXYH1YiuBUwP5+5t/\np6ioqM9tejweHn30ZfLzJ2Kz/YLQ0Nt54YU88vLyvBe4EGJY0Vrz+DOPkx+Qj3WplbDZYSxfu5y9\ne/d6pf3nnnuLbduSSE29j+jou3jzzUo2bNjklbaHs71797J8zXJCZ4diW2oj35DPY8885vWrKkON\nw+Hgz39+ndra87BafwFcy+OPr6W8vLzfbUtSNoIVFBRgD7QTnxGPUgpLlAVDmoEdu3f0uc3y8nLK\nyoykpGSjVABBQZGEhs7j00+9M7gKIYafiooKjjUdI3lcMipAERQaRGhWKBs+29Dvtpuamti9uxKr\ndSEBAUZMplBiYxfx8ccyJn2TT7d/SujoUIJCg1ABipRxKRxrOkZFRYWvQ/Opw4cP09ycTmzsGSil\nCAtLQutp7NrV/5MPkpSNYAaDAe3WJ23TLk1gYGCf2zQajWjdgdYn2nW72zGZ5Eq5EOL0jEbjl8Yi\nj9uDyWTqd9sGg4GAAI3Hc6JOTcaknjEHmnG7TvzdtNbg7vz3Gsk6X3/7KVs7vHJMSVI2go0aNYoU\ncwrH9hyjrbmN6qJqjMeNzJw+s89tJiQkcOaZFoqKVtHW1kBdXQFOZw4LFkzzYuRCiOEkLi6OidaJ\nFG0rorWplfryetoOt7Fw9sJ+tx0SEsK8eaMoKlqBw1FLY+Mx6utXsWTJdC9EPrwtmL0A5xEndWV1\ntDW3UbS9iAlpE4iPj/d1aD41ZswY4uOrKC3dhNNpp7JyL2bzLs46q/81ZeqLZzQGm1IqCXgfGAdY\ntNYepdRPgUuBYuDmrls5fXEf7cuYh5v6+nreef8dcg/lkhKXwhVLryAzM7Nfbba0tPDvf69h69Yj\nxMaGcdllc5kw4UwvRdw7Sim01ixbdjf/+IcVuLsXe69h+vQ/sW3bmj71C709ThW9PbYHq5/B7Ktv\n/fStr1P7lbHFdxwOB//+4N9s2bOF2MhYLlt8GRMmTPBK2+3t7axcuY716/djsZi5+OKZzJgxrV+T\nCEbK8ZKXl8e7H75LTUMNsybN4pILL8Fisfg6LJ+rra3l7bfXkJd3DKs1liuuWITNZjvtc7uOlR4d\nbL5OysxAMPAOcC4QCzyvtV6qlPoZcFRr/eYp+/htUqa1Ji8vjw3bNhBoDGTh7IVkZWX5OqwRTZIy\n7/QzmH1JUiacTicbN20kNz+X1PhUFp2ziJiYGF+HdRJ/P17y8/P5ZPMneLSH+TPnM378eF+HNGL1\nJinz6eVLrbVTa93Q9VAB04GcrsdrgbN9EVdf5XySw4OvPEieymNH+w5+//TvvTZ7SAghRgKtNX9/\n9u88v/F5joYeZeWxlfz2L7+loaHhm3cWAGzfsZ0/Pv9Hdrl3katzeeBfD7Bx80ZfhyV6wN9qyiIA\ne9fPdiDSh7H0isfj4a0P3yLp7CTiM+JJzEokYkoEb69+29ehCSHEkFFSUkJuWS6ZczKJSY3BOtmK\nPdLO1s+2+jq0IePNlW8SMy2GhFEJJGQmEJ8dz9ur3/brM3uikz9NodBAI5Da9TgcOO1Xo9/85jfd\nPy9YsIAFCxYMcGjfzOVy0dLWQnRIdPe24LBg6hrrfBjVyJOTk0NOTo6vwxBC9FFzczMBwQEn1XsF\nhgZS21jrw6iGlnp7PbHhJxZ4DQoLosxe5sOIRE/5U1KmgO3AMuBB4Dxg8+me+MWkzF+YTCYmZk3k\nQP4BksclA3D84HEWT1zs48hGllOT9Pvvv79f7W3fvnZY3olgOL4m6NvrkrMH/iU9PZ3ApkCa65oJ\njQ7F1e6iraSNyXP7P7NtpMiemM3GAxtJm5wGQPn+cqafOX3Yvu+HE59evlRKGZVSa4HJwCogHViv\nlNoATALe9WF4vXbT1TeR3JTMsbXHKFldwoSgCXxr6bd8HZboN92H//zdcHxNMDxf08hisVi48/o7\nad3eSsm6EsrXlHPZzMukUL0XrvzWlYxmNCUfllDyYQkZHRlc+51rfR2W6AGfzr7sC3+efQmd37or\nKiowGAzEx8fLNxMf6+/sS1hMX2cC+u9Mxb7PbvTf19TZV3/i8/fZdCNNe3s7x48fJzIykvDwcF+H\n8yX+frxoramsrERrTWJionwW+VBvZl/60+XLYUEpRXJysq/DEEKIIc1kMmG1Wn0dxpCllCIxMdHX\nYYhe8rfZl0IIIYQQI5IkZUIIIYQQfkCSMiGEEEIIPyBJmRBCCCGEH5CkzE+53W4cDodfz+4RQojT\nkfFrcHR0dNDa2urrMIQXyexLP7R+w3peX/k6Le0tZCZlcus1t8qMTiGE39Nad45fq17H0e6Q8WuA\naK35YPUHvPfxe7S52piQMYFbrr2F6Ojob95Z+DU5U+Zn8vPzefb9Z7GcbcG61Ep5VDkPP/UwLpfL\n16EJIcTXOnToEM+tfI7Qs0O7x69Hnn5Exi8v27ZtG69ufJXoBdHYltrID8jn78//Xc5MDgOSlPmZ\nz3Z9hjnDTHBYMEopEjITqNN1FBUV+To0IYT4Wlt2biEoI+ik8avGU0NxcbGvQxtWPtn2CVFjozAF\nm1ABiuRxyRRUF1BTU+Pr0EQ/SVLmZ8wmMx6Xp/ux1hrt1gQGBvowKiGE+GZBpiDcHe7ux1prcCPj\nl5cFm4JxtZ84+6g9Gjzydx4OJCnzM3NmzoESqC6uptXeSvHOYrKis2RlayGE35szcw4c+/L4lZaW\n5uvQhpXz5p1Hy8EW6srqcDQ6KNpaxMyxM4mMjPR1aKKfJCnzMykpKfz8tp+T0ZSBa6eLxWmL+dFt\nP5L7lgkh/F5qaio//6+fk96UjmuniwusF8j4NQDGjh3LvdffS0JVAp7dHr494dvcfO3Nvg5LeIHc\nkNwLGhoaWPfJOgpKCxiXMY6F5yzEYrH4Oqxh6fDhw3z00Xaczg7mzp3AWWdN/doBX25Ifvp+ht9r\n6uxLbkg+dLlcLjZt3sS2vduIjYzlvHPOIyUlZUD7bGtrY/36TeTmFpOWFs15580hNja2R/sOl+Ol\noaGBj3I+4mjZUcZljmPh/JH9+VVUVMRHH31GY2MrZ589lpkzZxAQ0L/zV3JD8kHkcDj442N/pDqs\nmvDEcPbl7WNH3g7+5yf/g9Eof15vysvbx0MPfUhQ0CKMRjPbt6/nuusaWLJkka9DE0L0079e/Rfr\nCtYRlRXFwcaDbPrrJn59168HbDkNrTV//euL7NkTTVTUORw8WMbmzc9z//23jZjLgC0tLfzh0T9Q\nG1FLWEIYeXvy2Jm3k1/e/csR+fl19OhR/vCHtzEaF2EyhbJz50bKyqq54oqLBy0GuXzZT7m5uVQF\nVmGbaiMqKYr07HSKWovIz8/3dWjDzooVGwkPv5TExMnExo4lNfW7rFjxmUy3F2KIq6urY/2e9WTM\nzSA6JZqUcSl40jx8tP6jAeuzuLiYvLwOMjK+TVRUJmlp87DbJ7N1644B69Pf5ObmUm2uxjrFSlRS\nFBkzMyh0FHLo0CFfh+YTH3ywCZPpApKSziImZgzp6dewalUeDodj0GKQpKyfmpqbUMGnnJUMgubm\nZt8ENIzV17cQFHTiG6zJFEpbm4eOjg4fRiWE6K+WlhaUWRFgOPGRFBQWRG1j7YD12dzcTEBA1Enl\nD0ZjJA0NLQPWp79ptDeigk7+/NJBmpaWkfM3+KK6upM/YwwGMx6PeVDvmiBJWT+NPWMs+rjG6XAC\n0GpvJaA2gKysLB9HNvycffZoKis3obUHrTUVFds488wEgoODfR2aEKIfkpKSiAqIoq6sDgC3y03D\nkQayJ2UPWJ8ZGRkEBhbR1FQBQEdHK07nDiZNGj1gffqbcWPHoY9r2lvbAXA0OjDWGUfs59esWaOp\nqdmMx9O5rEtVVR6pqcZBvVPCyLto7GVWq5WbltzEyx+8jCfIQ2B7ILdfeTsxMTG+Dm3Yueiicykr\ne51du/4CBGKzKW6++bu+DksI0U9Go5G7vncXf33hr5QcKIF2uGDaBczMnjlgfVosFu666xKefPJf\nlJREoFQ9V1wxlbFjxw5Yn/4mPT2d6xdfz2urXsMT5MHUbuIHV/2AqKgoX4fmEwsXzqO4+E02b34E\nCCYxsYMf/vDqQZ09PGxmX2qtOXr0KDU1NaSmpg74rJ1TORwO6urqiIuLw2w2D2rf/qC1tZWDBw+i\ntWbs2LGEhIQMWF81NTW4XC4SEhK+8c0isy9P38/we02dfcnsy55xuVzk5+fT0tLC6NGj/eZD2O12\nc/z4cUJDQ4mIiPBq23a7nfz8fMxmM2PHjsVkMgHQ3t5OVVUVkZGRhIaG9ri9oX68NDQ0cPjwYYKC\ngrBarTQ1NY3Yz69T1dXV0dbWRmJiYq9nXtbX13P48GFCQkIYO3YsRqNx5M2+dLvdPPXCU2wt3IqK\nUOgazbfnfZtvXfytQYshJCRkQBMRf1ZeXs6f/vQSjY02IIDQ0LX87GfXDNiCkT2dsi6E+LLm5mYe\n/NuDlLSVoIM0xjeNLLtmGWdNPcvXoWEwGAbkC/X+/Qd49NF/095+BuAgIeEj7rvvZqKiojCZTKSm\npnq9T3+Wl5fHo/96FFeUCzogxZDCT+/4qSRkXfp6uXLXrlz+9rdVuFxjUcpOWto6fvrT7/WqjWFR\nU5aXl8fm4s3YFtmwzbCRem4q72x4h+PHj/s6tBHhlVdW09Z2PjbbVdhsV+B2X8SLL670dVhCiNNY\n+/Faig3F2M6xkT4znajZUTz7xrO0t7f7OrQB4Xa7efbZD7BYrsNmuwyb7VqqqqbywQc5vg7NJ1wu\nF8+89gzh2eHYZtmwzbNRFlzGqrWrfB3akNbR0cEzz6wiKup7pKd/C5vtBkpKzmDt2g29amdYJGVH\ni49iSuy8MSuA0WQkIDqAsrIyH0c2Mhw8WEZc3Pjux3Fx48nPLx/Sp/aFGK72H91PVNqJy5WWSAtt\nhjZqawdupqMv2e126uoU4eEnzobFxIxn376R+fnQ0NCA3WUnLCase1u0NZr9Bft9GNXQV1tbS1tb\nGBZLfPe2qKjx7N/fu+NsWCRlKYkptNe0dycBHrcHT4OH+Pj4b9hTeIPNFkd9fWH34/r6Qmy2OLm1\nihB+KDMlk8bjjd2PnS1OjO1Gv6kr87awsDBCQ104HDXd2xoaCsnMjPNhVL4THh5OEEG02k8s89BQ\n0UBmaqYPoxr6IiMjMRrttLWdeG/Z7YWMGtW7PGRY1JRNmTKF8ZvGs3/9fgxRBjxVHhZNWDTi6gR8\n5dprz+eBB96kuHgyWisCA3dz552X+TosIcRpLF60mG2PbaNoSxEqSKErNN9b+j2CgoJ8HdqAMBqN\n3HDDufzjH8uBqWjtICLiAJdccqOvQ/MJk8nEDd+6gafeeQqSQDs1kS2RXHT1Rb4ObUgLCgriuuvm\n89xzz6HUFLS2ExNzmMWLb+lVO8Nm9mVHRwd79+7leOVxMtIzOOOMM/p9vyrRc7W1teTm7kVrmDx5\ngt8U438+Q+qOO+7mmWc2Ehh4Zo/3dbvLaGtbw/CbqSizL7+4z0icfdnS0sLu3btpbmlm3NhxWK1W\nX4c04MrLy8nLO0BQkJmpUycTFhb2zTt9jaF+vJSWlrL/wH6Cg4OZMnlKv/8eotOxY8fYvz+f0NAQ\npkyZjMVi6dXsyyGZlPk6BiGEEEKInhrWS2IMtURSDKzKykqW//rXLPR4iA8JYXtdHc0zZnDjnXcS\nEBAgx8sw8O4rr9D0wQfMiY6mub2dNU4nl/3P/zBq1Civ9THUz3yMVH09W9zff2tfHi+FhYW89fvf\nc15gIBFmM5vq6gg6/3y+c+PIvCTr73pTXy3X98SQt23DBmZ3dDAjORlbZCSXZ2TQsHOnLIkyTLS0\ntHBw7VquTk8nMyqKSQkJLDab2bxSll0RI9OWDz/kvMBApiQmkhEVxVXp6RzJycFut/s6NNFPkpSJ\nIc/R0EB41+rc0PmtJFwpHA6HD6MS3tLa2kqQ1gR+oUY03GzG0dDgw6iE8B1HfT0RX1joNdBgIFjr\nQb1xthgYkpSJIW/M9OlsbW6mzeUCoLC+nuqwsBFRvDwSxMTEYExLY09VFVprOtxuNtXWcsbs2b4O\nTQifOOPss9lYV0eH243Wmr2VlejkZOLiRuYyH8PJkCz0H2oxi4GltWbVu++S+/77hHo8OKOj+fay\nZWRmZkqd0DBx/Phx3vjb3/CUltKmFKPOOYfLrrsOo9F7ZbFyrAxNI7GmzO12s+KVVzi8bh3BKILa\n4AAAIABJREFUWqOTk7nyjjtITk72STzi6w372ZdDLWYxOFpaWmhubiY2NhaDwQDIB+1worWmurqa\noKAgwsPDvd6+HCtD00hMyj7X1NREa2srsbGxsgSUH5OkTIgu/jBwiqFBjpWhaSQnZWJo6E1SJqm1\nGHJaW1tpbm72SltOp5PGxkYZXIUQQgDQ1taG3W73yefCkFynTIxMHR0dvPLKv8nJOYTWAUyaFM+t\nt36nT5eytNasXPkRK1Zsx+k0kJ4ewve//22pyRBCiBHK7Xbz1lsfsGZNHi6XgTPOiOS2275DTEzM\noMUgZ8rEkLFq1TrWrHGTknIPVutP2bs3neXL3+1TW7m5ubz66lFiYu7EZruXysr5/OUvr+J2u70c\ntRBCiKFgw4ZNvPdeAwkJd2O1/pSCgkk8+eQbg3rGTJIyMWRs2HCAxMSFGAwmlAogNXU+u3aV0tbW\n1uu2tmw5QGjobEymUJRSJCRMpKbGQllZ2QBELoQQwt99+ukBYmLmYzQGoZQiOXkmhw+30DCIayJK\nUiaGjJAQMx0dJxaEdbudBAaq7pmWvWvLhMt1YqFFrTVat2L+woKMQgghRg6L5eTPGI/HhVIdBAYG\nDloMfpeUKaXSlVKVSqmPlVKrfB2P8B9Ll2ZTW/sf6uuPYreXUlz8JhdcMLlPb5gFC2bgdn9CVdU+\nmpsrKSz8N5MnRxAfHz8AkQshhPB3S5Zk09y8mtraQzQ1lVNU9DbnnJNFaGjooMXgd0tiKKXSgd9p\nrW/4it/Lkhh+yOVycfToUbTWZGZm0t7eTlFREaGhoVit1l7dkPWraK3ZvTuXlSu34XR2sGDBBObP\nn/O1Z8qUUjidTo4ePYrBYCAzM7P7+QUFBbz33qdUVzeRnT2KCy5YSFBQUL/jPFVdXR3l5eXExsaS\nmJjo9faFd8gSB0OTLIkhvGn//v28//4W7PZW5swZy7nnzv/KL/719fWUlZURExNDUlISAA6Hg8LC\nQkJCQkhPT0cpNbTXKetKyj4FjgJva63/csrvJSnzMzU1NTz00L+orIyic7A7gMtlwGSaiMdTy5Qp\nISxbdh2mL9yfcrAopbj77gepr48HXCQnN3HPPTcQHR09KP2vXfsJL7+8FUjH4ylj8eJ0rrnmMq8k\nqcK75EN2aJKkTPjCRx+t56WXtvD52H7eeTamTRvH44//m7Y2K1o3MnZsAD/60Q2EhIT0OCnzxyUx\nyoHRQDuwQin1kdZ6r49jEl/j1VdXUls7G5ttJi6Xi7ffXk58fAsLFnwXrTU7d77Jxo1bWLhwvk/i\na21djM02CYBjxzbw1lsfcttt3x3wfquqqnjppW0kJd2ByWTB7e5g9ernmDr1IOPGjRvw/oUQQnhf\nTU0NL720lcTEZZhMoXg8LlateprVqz8jLu5O4uNT0Vqzb997fPTRhl617Xc1ZVrrdq11q9baDfwH\nmODrmMQJtbW1bN68mdzcXNrb2wHIzS0mIWEKAM3NzWh9BmVlx6itrQUgImIye/YU+yzm+PiJ3T8n\nJEwlN3dwYikpKQHGYDJZADAYAjEYJnDkiO/+Fv3R3t5Obm4umzdv7v63HUyfH3u7d+/uPvaEEKdX\nVVXF8uXLef755zl+/LivwxlWiouL0Xo0JlNnrVlAgBG3O43ycggPTwU6z6TGxEzp9eeN350pU0qF\naq0/X659DvDYqc/5zW9+0/3zggULWLBgwaDENtLt2rGDNX//O+PdboqAj5OT+d5995GcHE1DQzmR\nkekUHT5MfcVOogObOLp+PcczMgiLric1NWpQYszJySEnJ+ekbS0tlYSGdtZy2e1lpKQMzqXLqKgo\ntN6O1rr7cqXbXUZ8fPqg9O9NjY2NPP/AAySUlxMGPGswsPiOO5hy1lmD0v/unTv58O9/Z7zLRRPw\ncVISt/z850RERAxK/0IMJdu2beOhW29lpsNBAPDjhx/mrieeYM6cOb4ObViIjo5G68/Q2oNSnee2\nAgIasVictLe3dH8Rb2oqY+rU3n3e+GNN2YXA7wAnsF5r/YtTfi81ZT7Q3t7OI3ffza0WC7EhIQCs\nLS6mbelSMsefyZ///D52+zjKdudi7tiCJTCYxLCF7LMf44y58PDD9wxaHdcXKaW4+eaHCQiYidYu\nAgK2ct99lzF69OgB71trzV//+k+2bTMQHDyetrYiMjLK+cUvbhtyS2+898YbhHzwAefabABUt7Tw\nnMPBT/7ylwGfLt7R0cEjP/kJNwcFEW/pHOzWlZTQfMEFXHr11V7rR2qEhiapKfuy25cu5buFhSzs\nmk2+saaG55KSeHbNGh9HNjxorfn73//F1q2K4OAzaWsrJj29lLPOyuLttwsxmabjctmxWHbxq1/d\nSGJi4tCtKdNarwRW+joOcbL6+npC29qIjYvr3jY2KooPDhzg4iuu4Le/Def5519ifPUn3DplHE3t\n7eyp3EiWvZqJV97lk4Tsc7/5zeVs27YXo9HAzJnXd8+SGWhKKX74w+uYOXMXhw+XkJoaT3b2hUMu\nIQMoP3CApVEnznbGWSxYamupq6sjISFhQPuur68nuKWF+C/c6uSMyEjeO3hwQPsVYqiqKShgVmxs\n9+NZ0dE8WFiIx+MhIMDvqpaGHKUUt99+LdnZuzl0qITU1Diys5cQFBTEGWfks3t3PuHhIcyadWuv\nP/v8LikT/ikyMpKmwEDqW1uJCg4GoKChgYTsbABSUlK44opL2XB4H6kREQQoxbi4OJ4pCmDUqFG+\nDB2bzYat6wzPYDMajWRnzyA7e4ZP+veWhNGjKVizhtSu+4zWt7bSEhREVNTAX5aOjIzEERREXWsr\n0V889qZNG/C+hRiKom02dpaVMacrMdvV2EhkaqokZF5kNBqZMWM6M2ZMP2n72LFjGTt2bN/b7W9g\nYmQwm80svOEGnnvmGSZrjR0ojIvje4sXdz9nzJgxbJ81i+e2bCFLKY5oTcisWYwZM8Z3gQuvmH/B\nBTy/cye1RUWEA7lKsfD73x+UZU5MJhOLbryR5596ikluN81KcTQ2lu9deOGA9y3EUHTTr37FX2+/\nnb2lpRiAjwMDufVXv/J1WKIH/K6m7JtITZnvaK1Zu3Ytn65eTXhMDJd/97tkZGQAUFhYyPpVq8g7\nUEC7CmLsmGTmnTOf8ePH+/TbmT/XfXiL1poDBw6wb+tWTMHBTJ83j5SUFK/3U1hYyKuvvkNdXTNL\nlsxh0aJFg7reWkVFBfkHDxIcEsLEiRMJ6apt7C2tNXv27CF/2zZCoqKYMXcuCQkJI+JYGY6kpuyE\npqYmPtu4keriYupcLnZs3oxSiutvvVUmxHlJQUEBmzblopRizpwp3Z+BX2dILx77TSQp851VK1ZQ\n8tZbzAwJoamjg02BgVz3q19RW13NigceYO+eBtpcc6gljIhR7dxww2iuueYyn8bsjwOnt63/6CPy\n/vlPzg4Kos3tZiNw+S9/SWZmptf6KCsr47e/fQmXazaBgWE4HFu54gobl156gdf6GCwr33mH0nfe\nYabFQmN7O5sDA7n+f/+XlJSUYX+sDEeSlHVyOBw89bvfMaaiAktrK+u2b4e4OJZOnMimjg7m33kn\nZ02f/s0Nia+0Y8cuHn/8E0ymuWitcbk+5b//+1ymTJn0tfv1JimTy5eiRxwOB7vfe4//TksjuGu2\nXVB5ORtXraKysJDoRidhpiWMj5tMk9PJnnoPa9bksWRJ/aDUHY1UHR0dbHrzTX6YlERE1y2iwquq\nWL9iBZl33+21flau/BStF5GWNr2r3zG8996jnHfevD6fsfKFlpYWct9/nx9brQQZO4e/oPJyNq5e\n7ePIhOif3Tt3Yisv56KMDD5bt467Y2N5ra2N6OBgrg4P59XXX5ekrJ9eey2HmJirCQtLBqCxMYE3\n31zxjUlZb0hSJk7L7XazZeNGDm7ahDk0lKzp07F4PAQHBpJXVcWOggJqHQ5qDQaCXC6CXSaCAzuT\nL4vJREdjIxCJ3W6XpGwAtbW1EdDWRvgXbqQeb7HQ2MfFIj0eD1s2beLAp59iDg0le/FixowZQ0VF\nIxbLiVmWgYHBuFwhNDc3ezUpa2hoYP3q1Rw/dIiksWOZd/75REZGeq395uZmQj2e7oQMID4khNyK\nCq/1IUaO7du2sTcnh4DAQKaddx4TJvhurfPG2loSuo7rtpYWQi0W4p1OKpubaXQ42HroEG8uX868\nJUsGfMb0cKS1prraTlraibHWYkmgsrLRq/3IVAxxWu+/+SYFTz/NoooKJu/bx6dPPEG5Uqw4eJCc\njRvJrqtjXHU1pvx8XCEhBAW20Ni2D609lDc1ERRlICSkbtCWnxipQkNDsdhs7K+uBjoHju1VVWT2\n8Rvxynfe4fCTT7KwooIp+/fz/h//yMGDB5k+PZPa2m3dl2vq6gqIjXUR+4Vp9/3V1tbGc3/8I2Gr\nVnFRfT2WlSt5/v/+D6fT6bU+YmNjcUZFUVhfD3T9verqyJCZnKIPdj32GPOOHWPmkSN8/Kc/sXP7\ndp/Fkjl2LLkuF+1uN1FJSRxoaCAf2HrkCJU7d3JzeDgpGzbwz9//nvqu41/0nFKKqVMzqKg48W98\n/Pg2pk/3XpkIyJkycRoOh4P9a9Zwt82Gueubl6G6mlXR0by6ahU3uVzYlSIpPZ07Jkzg8YYGOiZP\nxFO3jTVlR/CEpnBmZgx33HG1T25CPpIopbjsttt45eGH2VJSQpvWBI4fz3UXXdTrttra2tizahV3\n22zdZ5KMNTVsfv99rr3zTvLzXyY393GUCiMsrJply6706iSOvLw80qqqWJieDkBqeDjVRUXs27eP\ns7x05wCDwcC377iDN/7yF+JKSmjSmvDp07lYiqBFH1yVktJdNmAJDGTFihU+u0Q4ZswYjlx6KY++\n/z5RERF8YjQSEhZGaHk5ZycmMjk7m5CQEJqKi9n52Wece8HQqwf1teuuW8ojj7xIcfEeQGO1tnPV\nVdd7tQ9JysSXOJ1OAt1uTAZD97Zws5kQo5FJ2dmMdbuJsVgIDQ3FrTXGujru+M1vqLi9gqqqKiIi\nIrDZbENykdShKCUlhR8/8AAlJSWYTCZSUlL6NCuyvb0do8uF+ZR/d0dDA2azmf/+75upqKjA4XBg\ns9m8vpJ/a2sr4acUTodrjcPh8Go/mZmZ/PihhygpKSEkJISkpKRBnUUqhg/LF750hpvNtNrtPotF\nKcXS73yHsxcupLa2lqsSEti8eTMlzzzDrPHju4/xcIOBmqYmn8U5lMXExPDb395FSUkJSinS0tK8\nvrqAXL4UXxIZGUlwRgY7jx9Ha02H282nVVWMOftsxs+bR15rK5bQzhuxflpaSsb06ZhMJmw2GzNm\nzGDMmDGSkA0yo9FIZmYmqampfU4wwsLCCMvKYlt5eefMIo+HT6uqOGP2bKBz0E9OTiYrK2tAbq00\nZswY9hoM1LW2AlDrcJBnMAzIOncmk4msrCySk5MlIRN99mlpKVpr3B4P6ysqut8rvhQdHc3o0aMJ\nDw9n7ty51MbEUNaVhDW3t7O9o4Mxk7xXmD7SBAQEkJ6ejs1mG5DlnmRJDHFaVVVVvPq3v+EuLqY9\nIIDM+fO57LrrcLlcvPHss1Tu2EEAED5uHFfdfrvf3hja36at+7uamhpe+9vf6Cguph2wzZnD5Tfe\n2J2Eaa3RWg/Y2nPbt27lo+XLCXU6aTabOe/mm5nWddeIgSbHytDkyyUxnvy//6P54EHcQOL06Vxx\nyy0Ed911wh9orTl44AD/eeopgu12mo1GZn7nOyxYvFi+jAwiWadM9EtZWRkfvPgiZQcOYI6IYNE1\n1zBz1qyTntPQ0IDb7SY6Otqv39zyQdt7Wmtqamowm82Ed91WSWvNhnXr2PzuuzhbWhg9axYXX3MN\nYWFhXu+/vb2d+vrOpVQGsyZRjpWhyZdJmcfjoa6uDoPB4NVZwv3lcrlYvWIFuz/8EK01Zy5YwPR5\n84iNjfWrpHGkkKRM9JnT6eSx++7jAqeTCfHxlNrtvG63c93vfz8kZ1LKB6137Ni+ne2PPsqVycmE\nmUysLy2laMIEbr3nHl+H5jVyrAxNsnjsl61asYKGN9/kkrQ0lFJ8cOwY5osv5pKrrvJ1aCNSb5Iy\nqSkbAE1NTV4vTh4shw4dItVuZ1JCAgFKYY2IYLrW7Nmxw9eh+T2n00lDQ4PfDtT9kfvxx5wbFUV0\ncDCBBgMLrVYa8vKoq6vzdWhCiFPkrlnDhSkpBAJGrbkoLY09H300LMem4UZmX3pRU1MTz730HLsL\ndhNAAHMmz+H6q64fUstCBAQE4D7ljevp2i5OT2vNex+8x3/W/4cO3UF6XDrfv/77Q/LM4lcJMBhw\nezwnbZPjQgj/5NaaHbm7aGqsQqOJjEzAnWL1dViiB2RE9aIX33iR3Y7dWC+0knxBMjklOfxn1X98\nHVavjB49msrYWLaVl9PmcnGotpYdBgOT5fYcX2nHjh28sfkN4hbGYb3QyvHo4zz67KN4TklihrKp\nixaxtrGRiqYmmtvbWVVcTMK0aX5VRyOE6OSICOX144chLZiAtBDeOH4Ye2iQX9f/ik6SlHlJfX09\nH2/+mMSxiagAhcFoIGlCEhu2b/B1aN/I6XRSXFyM3W7HZDJxw09/ysFJk/hzdTUfJyTw7fvuI/4L\nt/EZTurr6ykpKaGjo6PPbWzetZnw0eEEBgWilCJhVAJVbVWUl5cDnYuyFhcX0zSE1waaNHkyM5Yt\n4/XAQB5vaMB5/vlcccstvg5LCHEa1a4Gmi+fwT/dHpa73Ngvm0EdLV95+bK5uZni4mJau5ajOVVd\nXR0lJSW4XK6BDFsgly+94sOPPuTVla+yp3wPh148xLS500gbn0aHswNLiMXX4X2tPXv28MQrT9Bm\nagMHXDzvYr59ybe54c47fR3agHK73bz0+kt8vOtjVJAiXIdz5013kpWV1eu2QkNC6Wg+kdRpj0Z3\naMxmM59t+4xn33wWV7ALHHDFeVew5PwlQ+4bq1KK7LPPJvvss30dihDiG4SFhBE+IRzLvHEAtDa1\n4tjy5TpnrTWr167mjQ/fAAsYW43c8p1bmJk9E+gcJ1987UVyduegzIpwwvnR935EZqZ3by0kTpAz\nZf1UVFTEy2teJvHcRKZeNpWOtA62fLyFsoNlVO+s5uKFF/s6xK/U3NzMX1/6K5ZsC9aFVpLPT+bd\nre9y4MABX4c24LZt28aa/DWkXZCGdZEVzoTHXnisT2fMFs1dhOuoi6rCKppqmyjcUsi0rGkYjUae\neuMpIudEkrYgjcRFibz68ascPXp0AF6REEJ0umTRJVRsq6C+op6G4w2UbS3j0kWXfunLYFFREa+u\ne5XEcxNJW5BG5NxInnrzKWprawHYsnULaw+t7Rwnz+0aJ59/TM6YDSBJyvop/1A+JIIp2MSYrDFk\nj88mMCgQY76Ru6+8m7FnjGXv3r2Udq387E+KioroCOvAEtV5Ns9oMmJOM7Nn/x4fRzbwduTtIDwj\nnABD51sgMjGSZkMzZWVlvW7LZrPxy9t+yRjnGIIPB3PVlKu47cbbKCgowB3tJji8c12gwKBADEkG\nDuR7P+lta2tj//79HDlyBLfb7fX2hRBDx/x587nrsruIPx5PTHkMy5Yu47xF5530nNbWVlavWU2T\npQmjufOiWXBYMJ4YDwUFBQBsz9tORGbESeOkXdm7SzOE98nly36KCI+ArrPCSilsNhtkwV1X3kWD\nvYF7/3gvnkgPniYPs8+YzS3X34LR6B9/9tDQUHRr5wrtn3+DcjW7iB4V7ePIBl5sVCzOCmf3Y4/b\ng27TfV4MNSsrix9n/fikbWFhYWjHyX9fT6uHyAjvFscXFRXx8DMP02xuRndobKE2fvKDn3Qv/CqE\nGFmUUszMntl9GfJUR44c4eFnH6a4ppj8xnzqDfXMmjaLwMBAtOPEOBgXFUdedV73fp+Pk6Fdt9kT\n3ue3Z8qUUncrpfy+Sn7y5MkkuhMp2lFEXVkdR7ccZZRlFImJiTz3znPEzo/FOtuK7XwbG4o2sGvX\nLl+H3M1mszE5ZTKFmwqpLa2lZHcJEfaIr3wjDycL5i4gsDyQ0n2l1JTUULihkHkT5xETE+O1PrKy\nshgTNYbCzZ1/3+KdxcQ745k6ZarX+tBa8/TLT6PHaqzzrNgW2Sg2Fg+5Wb9CiMHhdrt54sUnME02\nMeU7U0gIT6DkUAm7t+6mcEshoyNGd99vdtG8RRiOGSjbX9Y9Ti6YsoDo6OH/xd1X/HJFf6WUGXgS\nyNRazz/ld363or/dbidnQw4FxwoYlzmO+XPnU1RUxENvP4R17om1YY4fOc4syyxuvuZm3wV7CqfT\nycZNG8nNzyUtIY1F5ywaVm+4r1t1u7KyknXr11FVX8W0M6cxa+Ysr5/FbG1tZcOnG9hXsI+MlAwW\nzl/o1fuENjU18aPf/Qjrhdbus3GORgdqr+KB/+8Br/UzEvjzCu3iq8mK/r1TU1PDz/78M6wXdH42\ntTW3sX/jfpwFTn7yXz9h/rz5J92K6fjx46zbsI7q+mqmT5jOrJmzMBgMvgp/SOrNiv7+cR3ty24F\nlgO/9XUgPREeHs6lSy89aVt0dDSeJg8et6f7eryzzklKeoovQvxKZrOZRQsXsWjhIl+HMugSEhK4\n5sprBrSP4OBgFp+/mMXnLx6w9kOMIbQ1tXXXrtmr7ZyZcOaA9CeEGNrCwsII9ATibHFitpgJCg0i\n0ZZI9rhsLlh8wZeen5iYyLVXXuuDSEcmv7t8qZQKBM7RWn/s61j6IzExkYWTFlKUU0R5fjlFW4tI\ncCZw9ixZUkB4j9Fo5JqLr6FyUyWl+0op2V2CPqL51gXf8nVoQgg/ZDabuWrJVZRvKKd0fyklu0ow\nlhi56LyLfB2awA8vXyqlbgFqtdYrlFIbtNbzTvm9312+/Coej4e9e/ey//B+EmMTyZ6RjcXi3+uW\nDTdD9RJDbx09epQdu3cQHBTMzBkziYuL83VIQ85IOVaGG7l82Xtaa44cOcKuvbsIDQll5oyZXq2n\nFSfrzeXLfidlSqm9PXyq1lpP6kF7/wdMofNdNhP4ldb6b1/4vf71r3/d/fwFCxawYMGCXsUshq+c\nnBxycnK6H99///1DduAUg2sof8iOZJKUCX832EnZb3r4VK21vr+Xba8fCoX+wn/JwCl6So6VoUmS\nMuHvBjUpG2ySlInekIFT9JQcK0OTJGXC3/l89qVSKhMYT+c75YDWWu4rI4QQQgjxNbyalCmlwoHn\ngMsBT9fmAKXUW8AtWusmb/YnhBBCCDFcePtM2aPARGAhsLlr22w6F4J9FLjFy/0NS2VlZaxat4ry\n6nKmjZ/GogWLCAoK8nVYI0ZzczNr1q0h70getiQbS85dQnx8vK/DEkKIbkePHmXVx6uob6pn9pTZ\nzJs7z29u4Sf6zqs1ZUqpWuDbWuv1p2yfD7yrte73UvHDvaasqqqK/33kf/Gke7BEWag9UsuUiCnc\nvezu7hXbRc/1tu7D7Xbzh4f/QAEFxKTH0FjZSGhlKL+997deXYlf+B+pERqaRmJNWWFhIb974neY\nx5gxW8zU5Ndw/ujzuenam3wSj/h6vakp8/biscFA7Wm21wFyqqcHPt38KR1JHSSfkUxEfAQZZ2ew\nt2wvZWVlvg5tRDhy5AiFzYVkzMggPC6ctAlp2CPs7Ni5w9ehCSEEAB/mfIhptImEUQlEJkaSMSeD\nT3Z/gt1u93Voop+8nZRtAn6nlOpeIVUpFUrn7ZI2ebmvYcneYscYfOIUtFIKZVa0trb6MKqRo7W1\nFRV08hcaZVY0tUg5pBDCP9Q31WMOMXc/DjAEoA1aPieGAW8nZXcDs4AypdQnSqn1wDE6F4H9sZf7\nGpamTZyGo9BBR1sHAPUV9YR2hGKz2Xwc2cgwatQoAhsDaarpTMKcLU7cZW4mnfmN6x4LIcSgmD11\nNnWH6nB3uNFaU3W0itTwVKl9HQa8vk5Z11mya4FxXZv2Ay9prb2Swg/3mjKtNf9Z+R/+nfNv3EY3\n0aZolt24jMzMTF+HNiT1pe5j3759PPXqUzR7mjG6jHz3wu+ycMHCAYpQ+AupKRuaRmJNmdvt5rW3\nX+Ojzz7CY/CQGpnKspuWkZSU5JN4xNeTxWOHAYfDQXNzMzExMRgMBl+HM2T1deB0uVzU1dURHh4u\nM19HCEnKhqaRmJR9rrm5mdbWVmJjY2UimB/zaVKmlEoD5gHxnHJ5VGv9sBfaHxFJmfAOfxg4xdAg\nx8rQNJKTMjE0+CwpU0pdR+fisS6gmlPeKVrrDC/0IUmZ6DEZOEVPybEyNElSJvydL5OyAuA14Fda\na7fXGj65D0nKRI/JwCl6So6VoUmSMuHvfLlOWQLwzEAlZEIIIYQQw5W3k7KVdC6JIYQQQggheqHf\nN8pSSl3+hYcfAg8opc4E9gAdX3yu1vrt/vYnhBBCCDEc9bumTCnl6elztdb9PjMnNWWiN6TuQ/SU\nHCtDk9SUCX/Xm5qyfp8p80aiJYQQQggx0klCJYQQQgjhB7yelCmlLlZKbVBK1SqlarrugbnU2/0I\nIYQQQgwnXk3KlFL/BbwNHAHuA34OFALvKKVu9WZfQgghhBDDibcXjz0MPKq1/usp2+8C7tJaj/FC\nH1LoL3pMinFFT8mxMjRJob/wd75cPNYKrDrN9lVAek8aUEqdqZTaqJRar5T6hzeDE0IIIYTwV95O\nyo4Bi0+z/XyguIdt5Gut52it5wNmpdRUr0UnxP/P3p3HR1WeCxz/vTPZE7JBSAIhC6uArIKAIERQ\nsVo3tFptXcClarVVq/Xa9iraWpdeRe1V21q32trbutRqraIgAQUREGSTnUACZN/3ZGae+8cMIdAo\nmTAzZyZ5vp9PPpw5h3Oe50xOzjzznve8RymllApSJzwkxjF+A/zWGDMRWOmZNwO4CritKxsQEUeH\nl9FAtU8zVEoppZQKQj4tykTk98aYUuAu4GLP7G3Ad0Tkn13djjHmAuAhYJ2I5PsyR6X7zO4qAAAg\nAElEQVSUUkqpYOTrljJE5B/AP05wG+8A7xhjnjbGnCUiH3VcvnDhwvbp3NxccnNzqaurY8XKFRQU\nFTBqyCimTplKZGTkiaShQlBeXh55eXlHzduxYwer1q0izB7G6VNPJzs725LclFIqGIgImzZtYs2X\na4iPi2fmaTNJT0+3Oi2F7+++zAUQkbxO5rtEZEUXthEhIq2e6V8Bn4nIex2W/8fdl42NjTz4+IMU\nRxcT2y+W2sJaxiWN485b7sRm0/FxezNjDFffczVRQ6JwOV049jm466q7GD16tNWpqSCjd9OFJr37\n0nvv/vtd/r7y78QNjqOtuQ1boY1f3PILMjMzrU6tR7Ly7stFQHwn8+M9y7riHGNMnjFmOZABvH+8\nFb5Y/wXF4cVkT8omJTuFwTMGs7VkK3v37u165qrHSp2WSvqwdAaeNJD4sfG89cFbVqeklDqGMaZb\nP8o7zc3NvLv8XTJPzyR1SCoZozOwDbXx3tL3jr+y8jtfX74cDmzqZP4W4KSubODwpUtvglZWV2KP\ns7e/NsZALNTW1nqzGdVDRfeJbp+OSYyhdGuphdkopb5ed1qetDDzRkNDA22mjfCo8PZ5MQkxlO7X\n82Iw8HVLWRMwsJP5A4BWH8dqd9Kwk3AccuBodd+42VzfjK3SRk5Ojr9CqhBStKsIcPejKN5RzKTR\nkyzOSCmlrJGUlERaXBoVhRWA+7xYvqucU0afYnFmCnzfUrYYeMQYc6GIVAIYY/oCj3iW+cXw4cO5\ncOqFvPvRu5g4Q1hjGNfPu56kpCR/hVQhpF9ZPwoOFCAuYUjyEC7+9sXHX0kppXogm83GzVffzKI/\nLqJgdwHSKkzMnMiZZ5xpdWoK33f0HwAsB1KBjbjblccCpcAsETnogxhf+5ilqqoqKioqSE9PJzY2\n9kRDqR7AGIPD4aCwsBC73U5GRob2Q1GdCuWO2z1B9zrsg/tjRjv6e6utrY3CwkKio6NJS0vT86If\nedPR36dFmSd4LHAlcHgk/vXAayLS6KPt67MvVZeF+olTBY4eK9bSokz1VJYWZf6mRZnyhp44VVfp\nsWItLcpUT+VNUXbCfcqMMfO6+n9FRMciUEoppZTqxAm3lBljXF39vyJywnd7akuZ8oZ+m1VdpceK\ntbSlTPVUAW0p80WhpZRSSinV2/n82ZfGmDDgVCATiOi4TET+5Ot4SimllFI9ga+HxDgJeBfIwT0w\nrQN34ecAWkSkjw9i6OVL1WV6iUF1lR4r1tLLl6qnsvLZl0/iHgIjAWgARgGTgC+BS3wcSymllFKq\nx/D15cvJuAeJbfDcAGAXkfXGmLuB3+IeSFYppZRSSh3D1y1lBvfzLwHKOPIczIPAMB/HUkoppZTq\nMXzdUrYVd2vYHmANcI8xxgncCOz2ZaBDhw5RVlbGgAEDSElJ8eWmlQo5TU1N7Nmzh4iICIYMGYLd\nbrc6JaWUj7S2trJ7926MMQwdOpTw8HCrU1J+4uui7CEgxjP938C/gGVAOXC5r4K89vfX+Gj9R5gE\ng1QJ35nzHc6de66vNq9USMnPz+fx5x+nMaYRaRMGRQ3iJ7f8hISEBKtTU0qdoJKSEn7z3G+osFVg\nMPSVvtx1012kpqZanZryA59evhSRDw6P2i8ie0RkJJACpInIMl/FWbxxMRlnZpA5LZMBcwbw+sev\nU1RU5KvNKxUyRIQ//vWP2EbbyJyRSdYZWRyIPsB7i9+zOjWllA/85c2/UJdeR9bMLDJnZlKTVsP/\n/eP/rE5L+YnfB34VkQoR6fKo/11hS7VhD3NfngmPDIe+UFBQ4MsQSoWE+vp6DlUfImlAUvu8fjn9\n2Lhzo4VZKaV8QUTYsmsLqUOPtIqlDkll867NFmal/CkkR+N31Ryp8UQEV62Lvn37WpiRUtaIjo4m\nLjyO5rrm9nm1ZbVkpGZYmJVSyheMMQzoP4Dastr2ebVltQxMHfgNa6lQFpJF2bDoYeSvzOfQjkPk\nL89nUuYkBg8ebHVaSgVcWFgY3/32dylZVULhlkIKNhTAHrjonIusTk0p5QNXXHAFdRvqKNhUQMGm\nAuo31nP5t33WRVsFGZ+O6B8Ixhhpbm7mi/VfUHiokCFZQxg/fjxhYT5/YpTqAXrLqNv5+fls2LSB\nqMgoTp10Kv369bM6pZDTW46VYKUj+n+9Q4cOsXb9WowxTJ44mfT09IDEVb7hzYj+IVmUhVrOyjr6\nQau6So8Va2lRpnoqKx+zdMKMMVOMMSuNMZ8YY56wOh+llFJKqUAIuqIM2AecISKnA/2NMSdbnI9S\nSimllN8FXUcsESnp8LINcFiVi1JKKaVUoARjSxkAxpixQIqIbLc6F6WUUkopfwu6ljIAY0wy8Fvg\nO50tX7hwYft0bm4uubm5AclLBb+8vDzy8vKsTkMppZTyWtDdfWmMCQPeAe4XkbWdLNe7L1WX6R1S\nqqv0WLGW3n2peqqQvvsSd+vYJOAxY8wyY8xUqxNSSimllPK3oGspOx5tKVPe0G+zqqv0WLGWtpSp\nnsqblrKg7FOmlFIqdLkLrODWnRy1CFP+pkWZUkopP/C+9Sqwgj0/1RsFY58ypZRSSqleR4sypZRS\nSqkgoEWZUkoppVQQ0KJMKaWUUioIaFGmlFJKKRUEtChTSimllAoCWpQppZRSSgUBLcqUUkoppYKA\nFmVKKaWUUkFAizKllFJKqSCgRZlSSimlVBDQokwppZRSKghoUaaUUkopFQTCrE5AKaWCSWNjI9df\n/0Pa2rxbLywMHnzwZwwbNsw/iSmlejwjIlbn4BVjjIRazso6xhj0eFFdcfhYqampoW/fNJzOZ71a\nPzr6IT766BWmT5/upwyPMMb4PUZH3v4NufPz9u+uO+t0d73urdPxfdBzi+oqz7HSpT9abSlTSqlj\n2O0ROJ3zvVonIuKPfsrm6wSygFFKBYL2KVNKKaWUCgJalCmllFJKBQEtypRSSimlgkBQFmXGmHRj\nzHpjTJMxJihzVEoppZTypWAteCqB2cBqqxNRSimllAqEoLz7UkRagJZA3/atlFJKKWWVYG0pU0op\npZTqVYKypex4Fi5c2D6dm5tLbm6uZbmornM4HCxespilq5cSZg/jnBnnkDsrF5vNd98N8vLyyMvL\n89n2QkFrayvvffAey9ctJzoymvNyz2P6adMDPsCoUip0uVwu8pbn8cGnH+BwOpgzdQ5zz5xLWFhI\nlgkhK6hH9DfGLAPOFBFnh3k6on+IevPtN/nHxn8wYPwAXE4XxRuKWTB7AbPPmO23mL1h1O1XXnuF\nJXuXMGDcABytDkrXl3Lrhbcy5dQpVqcWUjqO6N+/fyatrTVerZ+QMJ333nssgCP6B27wWB3R371O\nTx7Rf+nHS3k572XSJqRhbIaiL4u4eMLFzLtgntWphTxvRvQPysuXxpgwY8wSYByw2BhzqtU5qRPj\ncrn4cNWHZJ6aSUxCDHHJcaRPTOf9T963OrWQ1tzczIoNK8iekk10n2j69O1D3zF9WbxisdWpKaVC\nyPsr3idtYhqxSbHEJMQw6NRBLF65GJfLZXVqvYol7ZLGmEXAKcB6Ebm9w/xpwOO4v8a8LCJnWpGf\n8j0RwelyYrMf+R5gs9todbRamFXoc7lcuMSFsR35Emaz22hzevk0baVUr+ZwOoi0R7a/ttltOJ3O\nHtUaGAoC3lJmjJkIxIrITCDCGDOpw+K7gcuA0wDvHjyngprdbmfmKTMp+KIAR6uDtuY2Dn15iDnT\n5lidWkiLiYlh8sjJFGwowOlw0trUSunmUmZP8d8lYaVUzzN76mwObThEW3MbjlYHBV8UMGvSLOx2\nu9Wp9SpWtJRNAT70TC8BpgHrPK8rgETPvw2BT03502UXXwb/gOWLl2O327lg2gWcc9Y5VqcV8q75\n7jWEvxHOZ+9/RmRYJJfNvIxZM2dZnVZIE3EB+71ax+Vq9k8ySgXAuXPPpbmlmSVLl+B0OTlz0pl8\n56LvWJ1WrxPwjv7GmHtxX7ZcbIyZA5wmIr/0LBsL/BtwAAtF5OVO1te2VKWUUkqFjGDu6F8DxHum\nE4DqDssew92SNgy41hgT1dkG7r///vafZcuWISJe/9x///3dWk9j/OdPZWUl9933NNde+xzz5/+e\nn//8ScrLyy3Zj2XLlh11fADcc88TzJ//B6699ll++ctnqKmpCenfh8b3T2wgaPZJY/r2p6CggDvv\n/A3z5/+RceO+xW9+8zyNjY0ntM2vO178vW9u0uHn/mNed/bzzbkG0++qJ8bxhhWXLz8DfgC8DswB\nXuqwLAaoEZE2Y4wLCAf+45pAx3HKlPX+/vf3OXBgPFlZpwNw8OBnvPbae9x229UBz+XYceseeOAB\nKitPJzNzEiLC3r3LeOutxVx7rTbLK9UbiAh/+MPbNDefR2bmSPbsKWDz5jQ++GAZF198rtXpKXWU\ngLeUicgGoNkYswJwiMg6Y8zTnsWPAkuNMauAj0WkLtD5Ke998cVe0tMnt79OT5/M+vX5Hb7VWSs9\nfSLgHismNXUy69bttTgjpVSg1NTUcOBAK/36nQS4zwMpKZP0PKCCkiXjlInI7SIyU0R+7Hn9I8+/\n74nIFBE5TUR+5c8cAvEUgN4SIyUlgYaG0vbXDQ1lpKTEezWivD/3o7Gxon26oaGU1NQEv8Wy+ukS\nvTm+v2JbsU8a03diYmKIiGijtbUegOzsXBoaSklL8995AAL5fgYmTqD2p7fHCeoR/TujI/oHny+/\n3MSTTy4lPHwGxhhaWj7ltttmMnr0SMLDwy19TIcxhquueoro6Bm4XA4cjk+4++5zGTVqZMByEBGa\nmpqIiory6SOllG/1tBHa1REffPAxr722g4iIybhcTdjtq/n5z79DdnZ2t7dp1fHS3acl6LFtHW9G\n9NeiTPlEfn4+n366ARFhxIgM8vI2sW1bGTExNubNm8acOTMteRajMYYdO3awatUmwsPtzJgxkays\nrIDF37t3Ly+88C8OHWokMTGMq68+iwkTxgUsvuo6Lcp6rpqaGh555Bk++WQHUVE2rrhiDtdee8UJ\njcGlRZnqKi3KlGVcLhf33fdbSkunk54+kZaWOg4d+it33XUaY8eODXg+Vn7QNjQ0cPfd/0tY2CUk\nJQ2hoaGEyso/86tfXcmAAQMsyUl9PS3Keq5Fi15i8+ZsMjJm4nS2UFDwBtddl0Nu7und3qYWZaqr\nQv7Zlyo0tbW1sWTJEtav3098fAbG2IiKSiAubgaffrrF6vQCbufOnTQ1DSE5eSjGGOLi0hA5hY0b\nt1qdWre0tLSwYcMGVq5cSVlZmdXpKNXum47Nuro6Nm0qZdCgWdhsdsLDY+jX7wzy8nrfOUkFP+s6\n+6gepaGhgccee5Ht26PZuTODQ4f+zIQJp5GVdRpOZyvR0eFWpxhwYWFhiLQcM7eViIjITv9/MKuu\nruaRR16iuHgA0Ae7/WVuvnkOkyZNtDo11cu5L02+SFFROhCP3f4yN900m8mTTwHcj3gzxoXL5cBu\njwDA6WwlKqr3nZNU8NOWMuUTy5evYv/+wZx00nUMHpyL0zmH9es/pLh4I62teeTmTjruNnqaESNG\n0L9/CQcOrKS5uZri4o1ER29k4sTQ61P24YcrKC0dR3b25WRnn0vfvvN56aWPaG3VB8ora3344QqK\ni8eSnf1dz7G5gJdfXtJ+bMbExDBr1jD27fsnDQ1lVFfvp6rqA+bO7X3nJBX8tChTPrFzZzF9+gzH\nGMPkyWM46aQYnM4a4uP/zd13f4ucnByrUwy4iIgI7rnnGqZNO0BLywuMGrWRe++9gqSkJKtT89r2\n7UUkJg5vfx0T04+mpliqq6u/YS2l/O8/j82+NDXFUVVV1T7vyisv5LLL4jHmLyQl/Zsf/3ga48eH\n3pcj1fPp5UvlE0OHpvLll7vp23cY4eHhDBs2kISEVO6//zZiY2OtTs8yffv25brrLrc6jRM2fHga\nH364m/j4DACamiqJimogMTHR4sxUbzd8eBoffLCbhIRBADQ1VREVVX/UsRkeHs7558/l/PPnWpWm\nUl2iRZnyidzc01i9+gX27atFJBljNnPNNdN7dUHWk8ydO5P1619i375yIB6bbRM33jibiIgIq1NT\nvdzcuTP54osX2bevAojHmE3ceOMZREaGXt9NpXRIDOUzLS0tbN26lbq6OoYMGUJGRobVKekwBz7U\n1NTEli1baGpqYvjw4aSlpVmdkk/psRK6rDg2dUgM1VU6TplSHvpBq7pKjxXlDS3KVFd5U5Tp5UsV\nUg4dOsSqVetpbm5jypSTGTZsWLe3VVVVxcqVaykvr2P8+CGMHTtWH4OkVC/icDhYv34DW7fuZ+DA\nZKZNm0yfPn2sTkv1YtpSpkLGnj17ePjht4DTMCaC1tbPuOGGU5kxY+rXrvN132YrKip48MEXqa2d\nQGRkPxobv+Dcc/vx3e9e6Mc9UMFMW8p6FxHh979/jZUrXcTGjqW5+SD9+2/nvvtuJC4u7rjra0uZ\n6iod0V/1SG+9tZzIyG+TkTGdgQMnk5r6Pf72txU4nU6vt7V8+Wrq6iaTlXUmaWnjycq6mg8/3HnU\nbfRKqZ7rwIEDrF5dyeDB3yMtbRzZ2edSWjqcNWu+sDo11YtpUaZCRnFxNXFxRzrwRkcnU1fnpKXl\n2FHzj+/gwSpiYtLbX9vt4UAyNTU1vkhVKRXkqqursdlSMebIx2BERBolJTr2nrKOFmUqZEyYkE1p\n6ZFvsWVlWxkyJJHo6GivtzV+fA41NesRcQFQX19MdHQ56enpx1lTKdUTZGVlYbPl09zsLsJcLgfN\nzRsZNSrb2sRUr6Yd/VXIuOCCM9m791Xy8/dgTCRJSeUsWHCFp4+Fd6ZOPZXNm/eydu3/YkwyEREH\nuPXW83VsI6V6ifj4eK6/fjYvvPA7nM5BuFwlnHlmFmPGjLE6NdWLaUd/FVJcLhcFBQW0tbWRnZ1N\nePg3P1T4mzrjighFRUXU1taSlZXVrRY31XNoR//eqa6ujoMHD5KUlERqamqX19OO/qqrQmKcMmPM\nIuAUYL2I3H7M/PGel+NEJPmY9bQoU12mH7Sqq/RYUd7Qokx1VdDffWmMmQjEishMIMIYM+nwMhG5\nQ0TOAO4A/mVFfkoppZRSgWZVR/8pwIee6SXAtE7+zzzgrYBlpJRSSillIauKskSgzjNd43l9rLnA\nBwHLSCmllFLKQlbdfVkDxHumE4CjBoYxxgwDDopIc2crL1y4sH06NzeX3NxcvySpQk9eXh55eXlW\np6GUUkp5zZKO/saYCcAPROQmY8wzwEsisq7D8p8Ch0Tkz52sqx39VZdp523VVXqsKG9oR3/VVUHf\n0V9ENgDNxpgVgENE1hljnu7wX84D3rUiN6WUUkopK+g4ZapH09YP1VV6rChvaEuZ6qqgbylTSiml\nlFJH06JMKaWUUioIaFGmlFJKKRUEtChTSimllAoCWpQppZRSSgUBLcqUUkoppYKAFmVKKaWUUkFA\nizKllFJKqSCgRZlSSimlVBDQokwppZRSKghoUaaUUkopFQS0KFNKKaWUCgJalCmllFJKBQEtypRS\nSimlgoAWZUoppZRSQUCLMqWUUkqpIKBFmVJKKaVUENCiTCmllFIqCFhSlBljFhljVhhjnjxmfpQx\n5gVjzFJjzFNW5KaUUkopZYWAF2XGmIlArIjMBCKMMZM6LP4R8BcRmSMiPw50bkoppZRSVrGipWwK\n8KFnegkwrcOyWcAFxphlxpjzA56ZUkoppZRFrCjKEoE6z3SN5/VhQ4B/AecB/22MsQc4N6WUUkop\nS4RZELMGiPdMJwDVxyxbLiJtxpjdQCpw6NgNLFy4sH06NzeX3Nxcf+WqQkxeXh55eXlWp6GUUkHF\nGOP1OiLih0zUNzGBftONMROAH4jITcaYZ4CXRGSdZ9ki4C/ABuATYKaIOI5ZX/RAUV1ljNETi+oS\nPVaUN6w6XtzFlbdxu7eO/j34hudY6VJVHPDLlyKyAWg2xqwAHCKyzhjztGfxo8BDwKfA88cWZEop\npZRSPVXAW8pOlLaUKW9o64fqKj1WlDe0pUx1ld9ayowxLxpj+nQyP9YY86I321JKKaWUUkd41VJm\njHEBaSJSesz8FKBYRPx+t6S2lClvaOuH6io9VpQ3tKVMdZU3LWVduvvSGJOM+7cKkGyM6djXyw58\nGyjxKkullFJKKdWuq0NilHeY/qqT5QLcf+LpKKWUUkr1Tl0tymZ7/v0YuASo6rCsFdgvIgd9mZhS\nSimlVG/ibZ+ybKBARFz+SqgLOWifMtVl2k9IdZUeK8ob2qdMdZU/xynLBk7tEGi+MWalMeYPxpg4\nL7ellFJKKaU8vC3KnsT96COMMSOA3wEbganA//g2NaWUUkqp3sPbomwIsNkzfQnwkYjcAtwAnO/L\nxJRSSimlehNvizIXR24OmAMs9kyXAH19lZRSSimlVG/jbVG2DviFMeZq4HTgfc/8LKDIl4kppZRS\nSvUm3hZltwMTgN8CD4nIbs/8y4BVvkxMKaWUUqo38ckDyY0x0YBDRNpOPKXjxtIhMVSX6TAHqqv0\nWFHe0CExVFf5/DFLnQQYDIzC/VveJiJ7u7MdpZRSSinl5lVRZoyJB14E5uHu9A9gM8a8CSwQkTof\n56eUUkop1St426fsKWAMcAYQ4/mZDYz1LFNKKaWUUt3g7WOWKoCLRWTFMfNnAm+LSLKP8+ssB+1T\nprpM+wmprtJjRXlD+5SprvLnY5aigYpO5lcCUV5uSymllFJKeXhblK0CfmmMiT08w/PMywfxckgM\nY8wiY8wKY8yTx8xfaIz50hizzBhzh5f5KaWUUkqFJG/vvrwD9yj+B40xG3G3iY4BGoG5Xd2IMWYi\nECsiM40xzxpjJonIOs9iAX4iIku9zE11Q0tLC5+u/JSNOzYyKHUQs2fNpm9ffTiDrzQ1NbH8k+V8\ntecrsgdmM3vmbBITE61OS6mg43Q6Wf35atZuXkvfhL6cOetM0tPTrU5LqYDyepwyTyvZlcBIz6yv\ngL+ISJMX27gZKBORN4wx84CBIvJbz7L7cT9Hswq4S0Q2HrOu9inzERHhiWefYGP1RhKzE6kvrye+\nPJ4H7nqAhIQEq9PzCSv7CTmdTh556hF2tOwgMTORutI6+tX2Y+FdC4mNjT3+BlRAaZ8ya73y2iss\n2bmExCGJNNU1YS+ws/DHC4O2MNM+Zaqr/NanzBjza+D7IvK8iNzp+fkjcI0x5pdebCoRODx8Ro3n\n9WFPi8gk4GbcTw5QfrJ//342F20m57Qckgcmkzkuk5rEGj5f87nVqfUIu3fvZlfNLnKmut/frAlZ\nlEWWsX7DeqtTUyqoVFVVkfdlHjmn59B3UF8yRmXgzHSyZPkSq1NTKqC8vXx5Fe4xyo61HvgZ8N9d\n3E4NEO+ZTgCqDy8QkSrPv7vd3wj+08KFC9unc3Nzyc3N7WJY1VF9fT0mytDxfQ6LCaOyptLCrE5M\nXl4eeXl5VqcBQF1dHSb66PfXFmOjprbGwqyUCj719fWYSIPNfqSdILpPNBU1nd1XplTP5W1RlgKU\ndzK/Akj1YjufAT8AXgfmAC8dXmCM6SMidcaYfl+XX8eiTHVfTk4O4XXh1FfWE5cch6PVQcuBFsbO\nGmt1at12bJH+wAMPWJbLkCFDsP3dRmNNIzEJMbQ1t+EqcjHq26Msy0mpYJSenk6iLZGqQ1UkDUjC\n5XRRvaeayWdPtjo1pQLK27svC4FZncw/HTjQ1Y2IyAag2RizAvczM9cZY572LP6NMeZT4B3gHi/z\nU16IjY3ltu/fRtO6Jgo+LqDooyLmTZvHyJEjj79yN5WVlfHxso9ZvmI51dXVx18hhCUlJXHz5TdT\n+1ktBR8XUPJxCd+d/V1ycnJ8Hqu4uJilHy/l008/pa5OH6zRXQ6Hg40bN7L4w8Vs27YNl8t1/JXU\nCQsLC+O2a2/DvsNOwdICDiw+wFnDz2LqlKlWp6ZUQHk7eOxPgF/gLpYO3x15JvAw8KiIPOrzDP8z\nB+3o72Otra0UFxeTmJhIfHz88Vfopm3btvHEK0/QltIGToipjuG/bvovMjMz/RYzGDpvNzc3U1pa\nSnJyMnFxcT7f/voN63nm/57B2d8JDoivi+dnt/6MtLQ0n8fqyYwxPP6/j7OxdCO2ZBvOMiezhs9i\nwVUL+LquFMq3HA4HRUVFxMXFkZSUZHU630g7+quu8qajf3fuvnwYuB2I9Mxqwf2IpXsDUS1pURaa\nRISfP/xzGgc3kpjmvq+jNL+UwQ2DuevWu/wWNxiKMn9yOp385IGfEDY+jLhkd8F3cPtBJkVO4gfz\nf2BxdqHFGMPV919N9qxsjDG4nC72L93PwhsW+qV1U4U2LcpUV3lTlHnbpwwRudcY8xBwuGPMtt7+\nIPKCggJe/9fr5B/IZ+TgkVx6/qWkpnrTxa7nczgcHCo7RNa0rPZ5SelJ5C/PtyynLVu28OYHb1JR\nXcGk0ZOYd/48v7Rk+VNDQwM1zTVkJR/9vu7ZtMfCrEKXLdnW3ipms9uwJdkoLS3VoiwAGhoaePu9\nt/l80+f0TejLxXMvZuzY0O3fqlR3eNunDAARqReRNZ6fXl2QVVdX88jvHmF31G7iT49no2Mjjz77\nKM3NzVanFlTCwsLIGZBD5YEjd3aW7y9nRM4IS/LZu3cvj//5cSoHVBI7LZaPD33MMy88E3LfDOPi\n4ugX24+a0iN3dFYUVDBqsN5M0B3OMifich8DzjYnUiEMGDDA4qx6PhHhuZee46OCj4idFkvVoCqe\neO0Jdu3aZXVqSgVUt4qyYFVWVsa2bduora0NWMyNmzbSmNhI6uBUIqIjGHDSAKoiqti2bRvgvtV7\n27ZtFBcXByynYGSM4epLr8a1zcW+z/axf+V+og9Ec9kFl/k9tsPhYNeuXezdu7e94/byz5YTMTiC\npAFJRMZGkjUxi+3F2ykqKvJ7Pr5ks9m47vLrqFtbx8Z3N7Ll3S0kVyRz/jnnW5PyXP4AACAASURB\nVJ1aSJoxZAb7lu5j39p9FCwt4NzJ55KRkWF1Wj4nIhQWFrJ9+3bLv0C2trayatUqVm9fTebETCJj\nI0lMSyRqaBTLVi6zNDelAs3ry5fBSET425t/Y/HaxdjibVADV3/7ambN7OxGUd9yOBxgPyYfm+B0\nOlmzdg3Pv/48zngnrjoXs8bM4uorrsZut3e+sR4uJyeHR3/2KNu3b8dmszFy5Eiio6P9Hvfeh+6l\nXMrBBZkxmdxx0x20tbUdNSaSMQZjNzidTr/n42uxsbGE28JxNDtwOp3EpsYSGRl5/BXVf7jhmhuY\ns3cOpaWlDBw4kEGDBvW4Tv7Nzc08+8KzbDq0CVukjejmaG6ffzvDhg0LeC779+/nieefoKSphI27\nN1K5upKpk6YSERGBzW6jzdkW8JyUslKPaCnbvn07/97wbzLOymDQ9EH0z+3PK/96hYoK/w88OObk\nMYSVhlFTUoOIUFFYQUxtDBkZGTz/+vMkz0gmc0YmmWdn8vGuj9m4cePxN9qDxcXFMWnSJCZOnBiQ\nggygbmAdWblZZM3OojC6kDfffZMZp86gYXcDjTWNiEs4+NVBBsYOZODAgQHJyVdEhOdfex77aDun\nXHIKEy+byD7bPv71wb+sTi0kGWMYMmQI06ZNIzMzs8cVZAB5K/L4suZLss7MInNmJhHjInj21Wfd\nXzADSET4w1/+gGuEixHfHsGAnAEUFhSyc9dOmmqbqN9Vz8xTZwY0J6U6Y4zp1k939IyibNd2wgeE\nYw9zt0BFxkQiycK+ffv8Hrt///7ccfUdRO6MZP+7+0k6lMRdN9xFZWUlzngn0fHuwsNmtxGTEcPm\nHZv9npM6WurgIzddpA1PY8O2DYwcOZLrz72e5rXNFPyrgJPkJH58w4+x2ULrT6K+vp7C8kL6Djry\nEPn+w/qzYfsGC7NSwWz9tvUkD05u/9BISE2gxllDWVlZQPOora3lUPUhkjPcuUz91lQybBns/MdO\nGlY3sGDuAk4++eSA5qTU1xMvf7qnR1y+7N+vP84tRy47iQhSLwEb52b06NE8POph2traCA8PxxhD\nUVERrnoXLqer/TJZa00r6dnB+XDdnqyhuqF9uIi6ijrSU9IxxjDz9JnMmD4Dp9NJeHi4xVl2T3R0\nNDHhMbQ0tBAVFwW493FEP2tuoFDBL6N/Bnsr97YPTdPW0oatzebXMQo7ExMTQ5Qtqv3YjY6PZsTE\nEYwcO5Lbbrwt5L4gKeULPaIomzhhIhl5Gez7fB9RfaNoONjA5EGTA3obuzGGiIiI9tdpaWnMGDWD\n5SuWEzsolpbqFvo19mPa1GkBy8kX6uvrCQ8PD+k+SuVryqnOrAYXyAHh0vmXti+z2WwhffIPCwvj\nsnMu48X3XyQiKwJXmwv7QTsX3XTRCW23vr6esLAwoqKifJSpChZnn3E2nz/9OQWtBYTHhNO0v4lL\nZ11KbGxsQPMIDw/n0rmX8qcP/0RkdiTOFidhRWFcdNNFXf6bbGtro6mpiT59+vTIS82q9/F68Fir\nfd3gsQ0NDaz+fDUFRQWMHDKSU045xfLWD6fTyYYNG9iyawsD+g1g6pSpAf822l1VVVW8+cc/UvHV\nV7jCwhhz9tl8a968kLtJwRjDnj17WLN+DWH2MKadOi3k+o11xc6dO1mzYQ0xUTGcNuW0bo/mX11d\nzVsvvkjppk1IeDijzzyT8y69NOR+793R0wca7qi8vJxVn6+ipq6GCSdPYPTo0ZYUNSLCzp07Wfvl\nWmKjYzltymldGuNRRFixdCmfvfkm9uZmojMzueiGGwJ6p6wOHtt7dPc9P/z++XVEf6vpiP7+JyI8\n/+ijjN69m2kDB9LicPBGQQHZ113H6R0e9h0KetMHrS+88D//w7Bt25iRkUGr08mb+/eTMX8+s2bP\ntjo1v9NjJXR89dVX5D3yCN8fOJA+ERFsKy/n31FR3P7oo4SFBeYCkBZlvUcgi7IecfkymFRUVPDV\nV19ht9sZM2YMffr0sTolr1VXV7NnzRqGxsWxtbSUkSkpzOrXj/c/+YQ+iYksz8sjPiGBCy+8kOTk\n5KPWdblc7Nixg+KiItLS0xkxYkRIXx7sqpaWFjZv3kxdXR3Dhg0L+NhWZWVlbPvqKyIiIxkzZky3\nLkXV1dVRvnUr8zMzsRlDVFgYs1JSeCcvj1mzZ1NZWck///lPamtqOGP27ICPtl5cXMyO7duJjolh\nzJgxAbt7VwWeiJCfn8++fftISkoiPDycstJSUtPSGDFiBF+tWcO06GjiPd0qhiUm4ti4kb//7W+c\nMXs26enuvrv5+fm8//77GGM477zz/PqcXaV8QVvKfGjbtm0senkRLf1aMC5DXG0c995yb8hdLvu/\nl19m+UMPMS86mkM2G60pKUwbOpSnS0tp27SJWSJUAmuTk/n13/7W3nfP5XLx1+efp3HVKoYCu4GY\n007jihtusKwwC8S32bq6Oh5++mEOySEkWrCV2bj6nKs5I/cMv8Y9bPOmTXzw9NOMdThoAnYlJnL1\nvfd6/aivpqYmnrz1Vn4yYAARnsuVuysrWT5wILMvu4yfXX45kysrSQaWGcPse+7hmuuv9/0OdWLd\n55+T9/vfM9bloh7IT0lh/r33/seXghOhLWXB46133uKd1e/g6uuiaPluhhc1cfGI0ey32wk/9VT6\nJCeTunQpp2Vk0NTUxIZPPuEfpaVMGD+eovh4Tr/hBuoaG3nh1lvJbWvDCSyPiuK23/+e6dOn+yRH\nbSnrPQLZUtbzmzACRET401t/ImZCDDmTc8ieko0jx8Eb775hdWpeOXToEMV5edw0ahTpwMVRUTgK\nC/n9nj0Ub9zIQ8nJXJuRwZ0ZGVxQVcULixa1r7tr1y4aVq3iuuxszsjJ4brsbBpWrerxj0rJ+ySP\noqgismdkk3NKDmkz03jt36/R0NDg99hOp5PFL73E9xMSmJudzUXZ2cxsaGDZO+94va3o6GhOmj2b\nN/PzKaqrY09lJf+uquLUb32LFxYt4oKqKu7MyODajAx+nZTE+08+SX19vR/26mitra0sfeUVFqSk\ncHZ2NvOys5lUUcGKxYv9HlsFXllZGe98+g4ZuRkkpiWS09LAGXFOhkdGMD87m7bPPychNZWVwJbS\nUr786iu2lZYyLDubK0aPZkFKCsv+9CdefuAB7oyI4MaMDG7OyOBm4E8PPWT17in1jbQo85HW1laK\nKotISE1on5c8MJndhbstzMp7xcXFZBnDyWPHEjNmDNvDw4np04eEsWMZZLMxoMMlo/F9+lCydSsu\nl4tP8/J4/pe/ZNsXX/BJfj4uEWzGMBgoKSmxbocCYNf+XfRJO3KZOjImEme0MyCDFzc0NCDV1aR3\nuEw+NCmJkm4WwudffjmpV13Fm1FRfJyeTu5ddzFm7FiKt2xhfIcYA2NiSG5pYf/+/Se8D8dTXV1N\nTHMzyR2OvaGJiZTs3Nmt7TU3N/PeW2/xxE9+wu8efJBNvXxA52BTUlKCLdFGWEQY9ZX15BhDZFw4\n1TXV2IxhiM0GLheX/OxnfDF8OH+oruZQejpNra0s+ugjVu3bh72ujpqCAiYmHDkfn5KYSHl+voV7\nptTxaVHmIxEREQzsO5Dqour2eeUF5YzIDq3xotLT08kXwQkMHjaMybNnYxs5knMuuojyiAgKGhvb\n/++6ujoGjBvHiqVL2fnHPzI/IoK5Lhd7N2zg4927cbpc7PZssycbnj2c2oNHnrfaXN9MWHMY/fr1\n83vsuLg4bMnJHOjwvNcdFRWkn3RSt7YXFhbG7LlzufWhh7jh3nsZO24cAAPGjmVdXV37/ytobKQi\nKiogw84kJSXRGBNDWYeWxx1VVd3exzdeegnH229zbVgYcysqWPbEE+3PqlXWS0tLQ6oFR6uDPn37\nsEeElto2khKScImwS4T0gQMZPHgw19x+O5PnzaOhqIgLWlq4xhjqtmxhU2EhSdnZrKmqat/u55WV\n9BsyxMI9U+r4tKO/jxhjuPY71/L4i4+zr3AfOCGxKZFLbrnE6tS8kp6ezogLLuB377zDCKBQBPvE\niUydOpX9P/0pP//Vr5hRWUkFsKV/fx65/Xb+vmgR8wcMIDk6GqmoIHLPHl7/4gt22u30zc1l6NCh\nVu+WX50x8wzWblrLvk/2QRTYymwsuGgBMTExfo9ts9n41oIFvPbUU4yqrKQJKOjXj2suuMCnca6/\n807u+fxzCg8coC/wqc3GRffdF5B9DA8PZ+6CBbz87LOMKiujDihKS2P+3Lleb6u6upqiNWu4Ijsb\nu81GcnQ0Z7a1sW7JEt8nrrqlX79+XHLGJbzx8RtIX+FQdB+WVjcT29bGe/v2ET99OiNGHPmya29p\nYVxCAg0tLThaWhgQHk56fDyzbr6Zp376U9YeOIAT+Cwmhrvuv9+6HVOqC7Sjv4/V1NSwbds2wsLC\nGDVqVEA+tHxNRCgoKKCwsJB+/foxfPjw9o76O3bsIC8vj/j4eM477zzi4+N5+JZbuDUhgT6RkYgI\nh8rKeLiwkB8/8QRDhw61dFDHQHXGbWtrY9u2bdTV1TF06FCvO9mfqKqqKrZv305ERASjR4/2y6Cv\ntbW1vPfee9TW1pKbm3vUB2MglJeXs3PnTqKjoxk1alS3BjQuLy/n1bvv5vYOz7XcXVnJJ4MGseCn\nP9WOzUGksLCQ/fv3k5SUREREBCUlJaSmpjJkyJCjbhx68bHHmL5/PwlOJ21tbSQnJ/OHigqueuwx\nWltbef/997HZbJx33nn079/fZ/lpR//eo8ePU2aMWQScAqwXkduPWWaADcBvReSFTtYN6qKsN3r3\n9ddpffddvu35oHt//35cc+dy8fe+Z3VqekedOoqI8Ptf/5ox+flMHTCAxrY2/lZYyLgf/YhTp0zR\nYyUErVm9ms3PPMNlGRnEhIfz2cGDbB06lBv/67/8+oVQi7Leo0ePU2aMmQjEishMY8yzxphJIrKu\nw385HyjlRJ7oGeKqqqpYsXIFxeXFjDtpHJMmTQrYgIjdMffCC/lXczOPL1+OiDB89mzOvySwl20r\nKyv5fMUKakpKGDx+PKdMmtTtUehbW1v5bPVnbNu7jUFpg5g5fWZIjjfXk4gImzZtYvuaNUTHx3Pq\nrFndemqBMYbLb7mFt19+meWbNmEiI5l85ZVMmjzZD1n3TpWVlaxYuYKSipKAnL8mT5lCbWUl//vO\nO0hLCwPGjeOya67xWUHmy3OLUscT8JYyY8zNQJmIvGGMmQcMFJHfdlj+V+AjT269rqWsqqqKBxY9\nQG1yLVEJUdTtr2NmzkxuuOYGq1M7rtbWVoCjngEaCJWVlbzwwANMqqujf1QUX9TVETV7NpfNn+/1\nt1mXy8WTzz3Jl1Vf0iejD43ljfRv6s99d94X8GcDqiMWv/MO+994g6mxsdS1tbHKbue7v/gFgwYN\n6vY2m5ubCQsLay8YtFX1xHV2/po1eBbXX+3/8ewcDgcOh8Onl+59eW7xFW0pC7yePk5ZInD4Nq4a\nz2sAjDFnA3mAM/BpBYeVn62kJrGGzPGZ9M/pT87pOazatori4mKrUzuuiIiIgBdkAJ+vWMEpdXWc\nkZnJ6P79+V5ODgdWrKC0tNTrbeXn57OpaBM503NIyU4ha1IWJeElrN+w3g+Zq65obGxkw7vvctWg\nQYxNTWV6RgZzgJUffHBC242KigrqFuhQ9Olnn1KbVHvU+evTrZ8GZFicsLAwn/el9OW5RamusOKM\nVAMcfip3AlDdYdl1wNXAFd+0gYULF7ZP5+bmkhtiz2P8JiWVJUQlHDmx2Ow2TIyhtra22w+Z7ulq\nS0sZ7TkZ5+3bR96+fXxZU8O+X/3K623V1NRgi7MddenD3sdOeWW5z/JV3mloaCDa6SQ6PLx9XkpM\nDGuLiizMSnWmpKKEyPgjN2DY7DZsMTZqamoCfvOLL3Q8twDYbTb6Gvf5WCl/sKKl7DNgjmd6juf1\nYcOBt4E7gduNMcM728DChQvbf3pSQQYw7qRx1O+vx+V0AdBQ1UBEY8QJXabp6QaPH88XdXU4XS5y\ns7O5adIkpk6dymOPPeb1tnJycrBV2miubwbA0eqg7WAbI4eP9HXaqov69u2LKyWF3ZWVgLt/2bqK\nCoZoP7Cgc+z5q76ynoim0D1/dTy3ABTX11MUGRnwZ9uq3iPgLWUissEY02yMWQFsEJF1xpinReRH\nIjIBwBhzDWAXkU6H7Ha5XOzcuZPS0lIGegYRtHLYBV+aMGECZ+08i2UfLsPEGCKaIrjlylv04cvf\nYOIpp5A/ezZPrVhBsjGUREVx/g9/2K1LGUlJSVw37zpefOtFXHEupF648LQLAz78g7cqKiqOGhIj\nFIdi+To2m42Lb76Z1596ir4FBdSLEH/KKZw7e7bVqVmi4+/65JNPDqpzw8SJEzlr15HzV2RTJD/8\n3g+DKkdv+PLcolRXhOQ4Zb/9w29ZW7DW3RutAs4edzZXXnZljynMwP38t5qaGjIyMvQE0EWdvWfd\n7Yzb0NBAUVERycnJPn3otT9s2bKFp159irZ+bdAGyS3J3HvrvaSkpFidmk+1tbVRWFhIdHQ0aWlp\nPv97D4WO/u2/675t4Aje33VPO3/58txyorSjf+D1+HHKToQxRq7676vIyc3B2Awup4uCJQU8cNMD\nZGVlWZ2eCjKh8EF7IlwuF3c/eDcyWohPcXfVPLD1ANPip3HdVddZnF1oCfZjxel0cvcv78acbOjT\nzz1Ey4GtBzgt4TQWfH+Bxdn1PlqU9R49/e7LExaWEoaxuffPZrdhkk1I3J2olK/V19dT1VjVXpAB\nJGcks2PfDguzUv7Q0NBAdWN1e0EG+rtWqqcJyaLMUeZor0BdTheuSpfemah6pbi4OBJjEqkrP/Kw\n8MqDlQzP6vQeGRXCYmNjSYhKoK5Cf9dK9VQhOUjP5IzJrPt4HSbJIOXCnLFzyMzMtDotpQLOZrMx\n/5L5PPXnpyjvV45pMyS3JHPBpb59ILmynt1uZ8F3FvDUq09RnnLkd33+pedbnZpSykdCsk+Zw+Fg\nx44dlJWVMXDgQIYMGdKjOvkr3wn2fkK+Ul5eftQdeT3p7stACZVjRX/XwUH7lPUe2tH/G/T0xywp\n3wqVD1plPT1WlDe0KOs9tKO/UkoppVQvo0WZUkoppVQQ0KJMKaWUUioIaFGmlFJKKRUEtChTSiml\nlAoCWpQppZRSSgWBkBw8VimllAoGTU1NtLa2er1eWFgYsbGxfshIhTItypRSSqlu+ulPf8Zzzz2H\n3R7Z5XVcrjYcjiY/ZuUb3RmUPZjHNguFQea1KFNKKaW6yekEp/NhnM47vFjrI+BsvB+QFNwDwQZK\ndwapDXbB/Z5rnzKllFJKqSCgRZlSSimlVBDQokwppZRSKghYVpQZYxYZY1YYY548Zv49xpg8Y8zn\nxphzrcpPKaWUUiqQLCnKjDETgVgRmQlEGGMmdVj8uIjkArOBn1mRn1JKKaVUoFnVUjYF+NAzvQSY\ndniBiDg8kzFAdYDzUkoppZSyhFVFWSJQ55mu8bxuZ4x5FtgELApwXkoppZRSlrBqnLIaIN4zncAx\nLWIicosx5r9wD+Yy5diVFy5c2D6dm5tLbm6uv/JUISYvL4+8vDyr01BKKaW8ZqwYfdcYMwH4gYjc\nZIx5BnhJRNZ5lkWKSIsxJgJYKSKTj1lXgnnEYBVcjDFBPcK0Ch56rChvHD5ebrnlDp57LhMI5OCx\n3RnUNTDrBPPfkHtE/8C954ffC8+x0qURaC1pKRORDcaYZmPMCmCDiKwzxjwtIj8CnjTGnAREAr+x\nIj/1zZqbm9m+fTtOp5OTTjpJn9+mfEZEKCgooLi4mLS0NDIzM0Pi0Sgq8JxOJ7t27aKmpoacnBz6\n9+9vdUpKnTDLHrMkIrcf8/pHnn9vtiYj1RUlJSW8+uijDKqqIgxYGhvLZXfdRXZ2ttWpqRAnIrz5\n6qsUf/wxOcawRoSBZ53FxVdeqYWZOkpLSwuvPPkk9m3b6G8MnxjDtGuuYfqsWVanptQJ0cFjlVc+\n/Pvfya2v5/KsLC7JyuJC4N+vvBLUTdYqNOzZs4fSpUu5KTOT87KyuDkzk6IPP2Tv3r1Wp6aCzNrV\nq0naupUFWVmcn5XFD1JT+eTVV6mrqzv+ykoFsV5blAWiM3hPjHFw+3ZGpaS0vx7ety8V+fk4HI5O\n1uxejFBm9X6EcvyDBw8ywhjCbO7TUpjNxnDPfH/HtmK7GrP7MQ/u2MGouLj2FtQ+kZEMdLkoKiry\nW0zvaZxuRelhvx9v90eLMo3hVYyU7Gzyq6raXxfW1hKfnk5Y2IldCbe6mPAVq/cjlOOnpKSwT6S9\n1dUlwj7ocl8hLcp6T8yU7GzyGxvbXzc7HBSJkNLhC6OvY3pP43QrSg/7/Xi7P5b1KVOh6czLLuNv\njzxC4f792EX4MiyMb99wg/b5USdsxIgRrJ00iZfXrmWo3c4up5PIU09l+PDhVqemgsyU6dN54ZNP\neD0/n1SbjU0uF2PnzSMpKcnq1JQ6IVqUKa9kZWVxw69/zaYvv8TldHLN2LF615PyCbvdzvdvuYWt\nW7dSfOAAkwcNYtSoUdhsvbZBX32N2NhYbvz5z9m0cSM1lZWcM2wYQ4YMsSQXYyAi4q+Eh286an5r\n6wYiIvZ3uo7TeZDm5kBkp0KNJeOUnQhjTGglrJRSSqleravjlIVcUaaUUkop1RPpdQGllFJKqSCg\nRZlSSimlVBDQokwppY7DGHOqn7d/sufxch3nTfVzzAnGmBzP9FnGmPOMMQH7TDDG/DCAscYYY64w\nxkw+/v9Wyjq9ok+ZMSYMuAiYBiQC1cBnwNsicmKjnh6J0Qf4QScxfi8iPhlm2t8xesI+BFIgjqtv\niJ0kIlWe6fOBk4HdwBsSgD9qK/fdE98v+/81RYkBFovImd3d7nFiPgH0B9qAFGCBiJQaY5aJyBl+\nivkc7ucLRwPNQB1QC2SIyLV+iPcJ7ic6d+zsPBrYIiIzfR3PE/MDETnHGHM7cCbwL2A6cEBE7vVH\nTCsYY4aLyE6r8zhRxhg7kAqUBuIcEgjGmCgg3JvPtt5SlP0Z2AQswX3iicf9RzpWRL7voxjvAq92\nEuMqETk/FGL0hH0IpEAcV98Q+2MRmW2MeRhIAt4GZgADRWS+P2N74lu27574ftl/Y0wTsLqTReNE\nJLm72z1OzE9E5HTP9Fjgt8BdwGN+LMpWHC6GjDGbRWSMZ3q5iPj8AZLGmDuAccArIrLMM+99EfmW\nr2N1iLlMRM4wxqwAzhARp2f+ShGZ7uNY5wI/w/3lZBHwa9xXon4jIn/3YZzr+M/i9nZgkYi86MM4\nd4jIImPMONzHI7iH0LpHRD7xYZynROTHni9W/437i1U28LyIvOTDOJW4i/K3gA9ExC8DkhhjfgDM\nBxpwf85dC7iAj0XkV13aiHhG0O7JP8An3szvZoyVgO2YeTZgZajE6An7EMifQBxX3xB7meffFcfM\nX97T992f+w+sBxI7mb/Ej/uyEojo8DoZ+DfuFgO/xewwfUGH6Tw/xowEbgH+BlyI+8PRn8dIieeD\n8QAQ3WH+Oj/E+hyIxd3SWYT7S0oEsMrHcb4EPgQWANfg/tDfBFzj4zjLPP9+BAz1TPfzw/4sPRwP\niPFM24HPfL0/wHjgQc/v6i3g+0CCj+N8hrtgjgb24W4lw5v3rbcMHvuOMeY93L+YOtx/MLOAd30Y\n41kgzxizmSMtBycDz4VQjJ6wD4F0+LjK48i++Pq4+joTPZeERhpjEkWk2tP8HxeA2GDtvoP/9v88\noKmT+eec4Ha/yZ24W/tKAESk0hhzAfAdP8a80RgTJiIOEXkHwBgTATzhr4Ai0gI8a4x5HrgKd4Hh\nT1M6TB9uJYvD3SLja00i0gA0GGP+ISK1nngtPo4zATgfuAL3397LwOUi8oqP4yQZY+YASSKyG0BE\nyo0xLh/H2WeMmQ1sBE4zxizH3aJa6+M4iMiXuI+5+4wxw4CLgXdwn7d8FgYYiLtLRxjQ3xhTg7vQ\n7JLecvkyAvdBnIm7eTQcdxPp0yJS7cM44cBQ3L+QGmCn+PjaeIcYSbibyneJSJuPtz+MI/2E/LUP\nw4AE/PQ+BYoxpj8wiSP7sg7IFpE1FuQSA5wcqNjGmJm4+wVVc2TfB4tIZ5f//BH/ZMApIts8r2Nw\nXz4NSHylDjPG3AM83vE8ZoyJBJ4UkZv9FPNs4DpguIhM8PG2F+IuMMD9OVnl6Q/8GxG5yYdxooAf\n4S6MhuA+j6wCHhWRYh/GWSQid/hqe98QZxpwN1CB+7LvY0AM7v15r0vb6CVF2dvAGtyFzCnAe7jf\ntCtEZK6PYgTiZgIbcC7gAD4UEZdn/oUi8k9fxOgk5oMicp8PtzdBRDZ4PkB/AIwE9gK/82WBHAgd\nOoUf7t9xuK/HByJyVoBiHzU7ELE98QPeOT2Y4iullD/0lsuXCSLyawBjzBYRedwzfY0PY7yM+9r+\nXzi64/PLuK9d+8KrQD7uD6JfGGOuF5HtuDt6nnBRZowpAAo48g0JYLQxJld8d4fU48Bs4He4vxH9\nD+4m+ddwF5yhpIGv6RTew2MDTJajO6e/boy5K0CxgyG+UsdljHlaRH6kcTROV+P0lqKs1hjzC9wt\nWKXGmJ8AVbiLG1/Jkv+862y9p9+Lr2SIyPcAPP0yXjbGPOPD7d8OXIq7c+efRaTND3dIiaeVJxX3\nMBgC7DTG3OLDGIGyDbj42BY+Y8ySHh4bwGaMiRCRVhHZZIy5GPgz7suZvSG+UkcxxkzimCsl/vjA\n1zg9O05vuXwZibujbjnuS4pX4W7J+rN4xjryQYy7gVz+s+PzChF5zEcxVgDniWfME89+/QH3h3O8\nL2J4tnsucDXu9+oCEZnjw22fBdyI+zbhdOBT3Jcwl4vIk76KEwjGmHSg0tOBueP8MH/3kbMytifO\nFGCfiJR0jA18R0T+2tPjhxpPB+1LReStYNmep9/SJeIZjiOUGWOexH23uvlNbQAACl1JREFU5RLc\n/aISgDmAQ0R+rHE0Tlfj9IqiLFD83enbuEffruqkdWSmiKzwRYxjtjsb952Rn4nIWh9uNxr3N4n/\nb+/cg62uqjj++eY4TWVOM6amTYT4JvGBz5TxkY1Ww1iSTg2OgzaIaDlqNIPiA5lREZlxdFAnyxQt\nyLehOKUlUQ1KiqagAr5QyCDwkYoopffbH2tfPJx7zn3IOZf7WJ+ZO9yz9/7t/ftdzj137bXX+q7t\niZ3EAmCnzREcnyT9gTTKmosqdN86057r5Dr16C/Hl02nHMm9DjxYmlqDvmcAjQq8frVirQ1LEyne\nm7xGjeDxucBfiGdqiJp5WWN9mRc+/jnNpHE/pyRJku7kCUm/IDTEWmWXjiZ073KdXKfT66SnrEGo\nG5TAm71GX3iGJOmPSPoWcAERU2fgceCckgjUxrMlaUdgKnAsIXT5PHCu7bml/3Qitf8rRPLPFNs3\nVqzXQmRPHwN8m9BYu9j2jIoxQwh1+0MJ7bf7gLMrNLwuoY94ygAkDSW00VolkR61/Y9cJ9fpyjpp\nlDUISU8C36gVeO0G1cxr9hp94RmSpD8iaQRhjC0kjKyLgKHAnrY/rDTKJH2OENFcBZwHvAbsDbxj\ne25JmridSPx5iIjHvQoYYXt2Wa+lXDee2GSNBsYR6u8ryhovlL6LgG2AXwKLbJ9Q5riEPmSUJUkj\nSKOsQXRH4HWz1+gLz5DURtIzwJ22J5XXy4Bptpum4J5sPopR9DZwuO1Hqoyy0whpmoG236xx7Txg\nse3RFW03EwZXqwxJCzDZ9gXl9RZEgtNptmeWNaYStUjfK2OOIKqq7GL75TTKkqQttQQok0+A7ZXV\nhkZpb5ih0ew1+sIzJHUxG+vPHUDvLG2V1EDSzpJmSnpRUdZlFfH5PqDG8P2Ap2sZZIU9iHqclcwD\nBle1LWz9xlHsew0h6AuRUf10q0FWeJTIuq6eJ0mSQgb6J0k/xPYbm/sekoYym4j9GkMcK34EPEek\n59dCddrbo/pYpVrn0Wy80a+3Rh7PJEkd0lOWJD0QSYdLmi/pXUn/kfR3SV8rfSMkLZL0gaTlkiZU\nXbudpFmS1kl6RdKPasz/ikJEufV1S4lL6mjMWEn3SXpP0lJJR0oaIOkhSWslPalQ2E+6CUnbALsD\nl9ueY3spkfVVb9P9JLB3ua4Wi4FhVW3DgGe7cFvPAUMUBcBbOZT4m7O4C/MkSb8ijbIk6WEoRFBn\nAX8lArAPIrLYPpK0P3AHcBehIXcecL6kn1RMMR0YRKRif48QSx5YtUz1cWYtao25kJB52YfQl/st\ncBNRfHc/YCVwS6ceNGkUbxFyPGMk7VJit35O1MitxUxgNTBL0jBJgyQdJ+nI0j8VOFnSmZJ2lXQW\nMJIortxZZgDrgFsl7aUoXn8DcLftl7v8hEmfoWzkWiRltn0N0ijrwUg6RdK7DZhnYPklGNqI+0qa\nztaEAPFs28tsP2/7tiJv8FNgru1Jtl+0PZOoHzoeQNJuRLbcGNuP2n4KGEVk5DWCW2zfbvtF4HJC\nAHi27fttv0D84d4nP3C7D9stwA8IA34RYSBfSOgB1hq/jqg28k/g/nLNRCLeC9uzgLOAcwnv2FnA\nGbYf6MI9vU/IbWwNPAb8johLq/TadmZjkPRdPskRep8nY8r6B8uBLwEZR9QLsP2mpOnAg5IeBh4G\n7rK9ggjCnl11yTxgYjkq2pP44/pYxXzLJf2rQbe3sOL71eXfRTXatgPqBZInDcb2n4HqLMbPV/R/\nqmr8a8AP25nvBsKzVa+/zYbe9k5Vr5+hHdHpkgk8qV5/svkp4QtjCb26NcCvbU/ohAbdEOBqIqHo\nU8BLhMTKK8CcMv0aSQDTbbcJseivpKesjyNpS9sttleXDKmkF1A+pA4mjjCPA5ZKOqZ0dyaAuqse\niNbKCpVsWWNcZXC322nLz5Yk6cVImkx4XC8jNnsjgFeL3MqDhATKgcDxhHF2U8XlM4mEkwOJUIeJ\nwAeEg+D7ZcxgwlnQsNqTfYH84OwGJI2T9EIJzF4h6fLSfoWkJSUge5mkKYoi4+3NdXpJe19f5hxd\n1d9SYkHukbQWuKzW8aWkwZIekPSOpH+XdPrtK/qHSHpY0tsl2PypipiTpBuwvdD2lbaPIkpejSKC\npA+rGjoMWFHkB5YQv9cHt3ZKGgDs2MFyayrHlPfCDpv6DEmS9D6K1/0cYLzt6SWM4vHiQR0JfBY4\n2fazjrrLY4ARkgaVKQYAfyqhFy/bnmV7fjlqf6uMWV2cBZscotOXSKOsydTbbZTutcCpxJHUmcRx\nwgXtzHU8ES9yFVFO5RrgeknDq4ZOJI649gKuqzHPDoQHZiGxkzka2IoILm+l3k4naTLFiL5C0tcl\nfVXSUUS80LOE6OcRkiZK2k3SSUSc2ZUAJfPuD8ANkg6RtC8R+P9+B8vOAX4saX9J+5Vr8v87Sfon\ng4FPE6ET1XRGg+4q4MaysZ8gafem3m0fImPKmkjFbuNs29NL8zKiLh22L60YvrwYcOOAi+tM+TPg\nVtvXl9fXlmy88WwcZ3Sb7Q2uZEkDq+Y5A3jK9vkVY0YBb0g6wPYCYqcz1fbzZUhmTHUf64BdgTuB\nLxJ1BX9D1B/8SNKJRCzOBEIkdLLtSuP7FKKkzRzCAzYJ2LaDNccBvyI8cquI99QenbjXWsekGbyd\nJH2bdkMobE+SNIOoi3osEfM61vbN3XWDvZU0yppLe7sNJJ1AGG07E56qLWjfe7kHcGNV2zwi5qiS\nBR3c1/7A4TUyO13uZQEf73RGlfu/u3hhkiZjezUfx13U6r8XuLeD679b1XxT1ZjqoOyVwHeqrrmn\nakx1sPjrxHu2sm1JdVuSJL2OxUT27jeJIP1KngNOlbSV7bWlrY0GXcnQngZMk3Q9UR/1ZuC/ZUh+\nTtQgjy83E5IOITSefg8MB/YljjnrKXC3R7Vn4r2aoyqWJzxr+1R97Qo8ABsyowYTqeyHAgslnfoJ\n7i1JkiTpRZQ4r2uAyUWaaWdJB0kaSwcadJI+I+k6SUeUUIyD2Vh8+FXib9ZwSduWxIGkkEZZc6nc\nbVRzGPCa7ctsP2H7JdoKfNaab1OVtiEUvfcClpcgzMqv1p0PRQdrmu3hxNHW6HoTJkmSJH2K84Ep\nwEWEd+wuosB8Rxp0HwJfIOJSlxAe90eI2NdWOZaJRJz1KsKblhTy+LKJ2H5XUutuYz3wN2AbYCiw\nFPiypJHAfOJNXlc3qDAVuFPSE8AfCZHQkURKcle4DjgNuF3SFEINfBBwIhFb9CERUH4HsavZnjD+\n5ndxnSRJkqQXYtuEUTalRl9dDTrb/wNO6mDuS4FL2xvTX0lPWfOpt9uYTRhZVwNPExmQF9P2KHLD\n601U2q6cZyXhqWshMvWeAa4lsu3WE8WM6+50kiRJkiRpPApjOEmSJEmSJNmcpKcsSZIkSZKkB5BG\nWZIkSZIkSQ8gjbIkSZIkSZIeQBplSZIkSZIkPYA0ypIkSZIkSXoAaZQlSZIkSZL0ANIoS5IkSZIk\n6QGkUZYkSZIkSdIDSKMsSZIkSZKkB/B/lUrD2ahQqs0AAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot matrix of new cluster assignments (0=red, 1=green, 2=blue)\n", + "pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Do you notice any cluster assignments that seem a bit odd? How might we explain those?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Clustering evaluation\n", + "\n", + "The [Silhouette Coefficient](http://scikit-learn.org/stable/modules/clustering.html#silhouette-coefficient) is a common metric for evaluating clustering \"performance\" in situations when the \"true\" cluster assignments are not known.\n", + "\n", + "A Silhouette Coefficient is calculated for **each observation**:\n", + "\n", + "$$SC = \\frac{b-a} {max(a, b)}$$\n", + "\n", + "- a = mean distance to all other points in **its cluster**\n", + "- b = mean distance to all other points in **the next nearest cluster**\n", + "\n", + "It ranges from -1 (worst) to 1 (best). A **global score** is calculated by taking the mean score for all observations." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.4577741591090948" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# calculate SC for K=3\n", + "from sklearn import metrics\n", + "metrics.silhouette_score(X_scaled, km.labels_)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\Kevin\\Anaconda\\lib\\site-packages\\numpy\\core\\_methods.py:59: RuntimeWarning: Mean of empty slice.\n", + " warnings.warn(\"Mean of empty slice.\", RuntimeWarning)\n" + ] + } + ], + "source": [ + "# calculate SC for K=2 through K=19\n", + "k_range = range(2, 20)\n", + "scores = []\n", + "for k in k_range:\n", + " km = KMeans(n_clusters=k, random_state=1)\n", + " km.fit(X_scaled)\n", + " scores.append(metrics.silhouette_score(X_scaled, km.labels_))" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# plot the results\n", + "plt.plot(k_range, scores)\n", + "plt.xlabel('Number of clusters')\n", + "plt.ylabel('Silhouette Coefficient')\n", + "plt.grid(True)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + "
namecaloriessodiumalcoholcostcluster
0Budweiser144154.70.430
1Schlitz151194.90.430
17Heilemans_Old_Style144244.90.430
16Hamms139194.40.430
5Old_Milwaukee145234.60.280
6Augsberger175245.50.400
7Srohs_Bohemian_Style149274.70.420
10Coors140184.60.440
15Pabst_Extra_Light68152.30.381
12Michelob_Light135114.20.501
11Coors_Light102154.10.461
9Budweiser_Light11383.70.401
8Miller_Lite99104.30.431
18Olympia_Goled_Light7262.90.461
19Schlitz_Light9774.20.471
13Becks150194.70.762
14Kirin14965.00.792
4Heineken152115.00.772
3Kronenbourg17075.20.732
2Lowenbrau157150.90.483
\n", + "
" + ], + "text/plain": [ + " name calories sodium alcohol cost cluster\n", + "0 Budweiser 144 15 4.7 0.43 0\n", + "1 Schlitz 151 19 4.9 0.43 0\n", + "17 Heilemans_Old_Style 144 24 4.9 0.43 0\n", + "16 Hamms 139 19 4.4 0.43 0\n", + "5 Old_Milwaukee 145 23 4.6 0.28 0\n", + "6 Augsberger 175 24 5.5 0.40 0\n", + "7 Srohs_Bohemian_Style 149 27 4.7 0.42 0\n", + "10 Coors 140 18 4.6 0.44 0\n", + "15 Pabst_Extra_Light 68 15 2.3 0.38 1\n", + "12 Michelob_Light 135 11 4.2 0.50 1\n", + "11 Coors_Light 102 15 4.1 0.46 1\n", + "9 Budweiser_Light 113 8 3.7 0.40 1\n", + "8 Miller_Lite 99 10 4.3 0.43 1\n", + "18 Olympia_Goled_Light 72 6 2.9 0.46 1\n", + "19 Schlitz_Light 97 7 4.2 0.47 1\n", + "13 Becks 150 19 4.7 0.76 2\n", + "14 Kirin 149 6 5.0 0.79 2\n", + "4 Heineken 152 11 5.0 0.77 2\n", + "3 Kronenbourg 170 7 5.2 0.73 2\n", + "2 Lowenbrau 157 15 0.9 0.48 3" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# K-means with 4 clusters on scaled data\n", + "km = KMeans(n_clusters=4, random_state=1)\n", + "km.fit(X_scaled)\n", + "beer['cluster'] = km.labels_\n", + "beer.sort('cluster')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: DBSCAN clustering" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DBSCAN(algorithm='auto', eps=1, leaf_size=30, metric='euclidean',\n", + " min_samples=3, p=None, random_state=None)" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# DBSCAN with eps=1 and min_samples=3\n", + "from sklearn.cluster import DBSCAN\n", + "db = DBSCAN(eps=1, min_samples=3)\n", + "db.fit(X_scaled)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0, 0, -1, 1, 1, -1, -1, 0, 2, 2, 0, 2, 0, -1, 1, -1, 0,\n", + " 0, -1, 2], dtype=int64)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# review the cluster labels\n", + "db.labels_" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "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", + " \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", + " \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", + "
namecaloriessodiumalcoholcostcluster
2Lowenbrau157150.90.48-1
5Old_Milwaukee145234.60.28-1
6Augsberger175245.50.40-1
18Olympia_Goled_Light7262.90.46-1
13Becks150194.70.76-1
15Pabst_Extra_Light68152.30.38-1
0Budweiser144154.70.430
1Schlitz151194.90.430
7Srohs_Bohemian_Style149274.70.420
17Heilemans_Old_Style144244.90.430
10Coors140184.60.440
16Hamms139194.40.430
12Michelob_Light135114.20.500
3Kronenbourg17075.20.731
4Heineken152115.00.771
14Kirin14965.00.791
9Budweiser_Light11383.70.402
8Miller_Lite99104.30.432
11Coors_Light102154.10.462
19Schlitz_Light9774.20.472
\n", + "
" + ], + "text/plain": [ + " name calories sodium alcohol cost cluster\n", + "2 Lowenbrau 157 15 0.9 0.48 -1\n", + "5 Old_Milwaukee 145 23 4.6 0.28 -1\n", + "6 Augsberger 175 24 5.5 0.40 -1\n", + "18 Olympia_Goled_Light 72 6 2.9 0.46 -1\n", + "13 Becks 150 19 4.7 0.76 -1\n", + "15 Pabst_Extra_Light 68 15 2.3 0.38 -1\n", + "0 Budweiser 144 15 4.7 0.43 0\n", + "1 Schlitz 151 19 4.9 0.43 0\n", + "7 Srohs_Bohemian_Style 149 27 4.7 0.42 0\n", + "17 Heilemans_Old_Style 144 24 4.9 0.43 0\n", + "10 Coors 140 18 4.6 0.44 0\n", + "16 Hamms 139 19 4.4 0.43 0\n", + "12 Michelob_Light 135 11 4.2 0.50 0\n", + "3 Kronenbourg 170 7 5.2 0.73 1\n", + "4 Heineken 152 11 5.0 0.77 1\n", + "14 Kirin 149 6 5.0 0.79 1\n", + "9 Budweiser_Light 113 8 3.7 0.40 2\n", + "8 Miller_Lite 99 10 4.3 0.43 2\n", + "11 Coors_Light 102 15 4.1 0.46 2\n", + "19 Schlitz_Light 97 7 4.2 0.47 2" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# save the cluster labels and sort by cluster\n", + "beer['cluster'] = db.labels_\n", + "beer.sort('cluster')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "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", + "
caloriessodiumalcoholcost
cluster
-1127.833333173.4833330.460000
0143.142857194.6285710.440000
1157.00000085.0666670.763333
2102.750000104.0750000.440000
\n", + "
" + ], + "text/plain": [ + " calories sodium alcohol cost\n", + "cluster \n", + "-1 127.833333 17 3.483333 0.460000\n", + " 0 143.142857 19 4.628571 0.440000\n", + " 1 157.000000 8 5.066667 0.763333\n", + " 2 102.750000 10 4.075000 0.440000" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# review the cluster centers\n", + "beer.groupby('cluster').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ],\n", + " [,\n", + " ,\n", + " ,\n", + " ]], dtype=object)" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n0ojZvZtNa9caG1gYprq6lKysri8dJ0pKiKw9zczhYcyOiWG+Urz59NO8s2gRU6ur+U56OvelpzPu\n5ElWLVnSrzlSUz+95mFWVjSnT5f06/p766+//CXXV1byREoKf05J4bbaWv4ql33xCVKUCeHDmpub\naSkrY4zrxsFKKSYlJHB8xw6Dk7kvOTmZw4c1drsTALvdyeHDEBISQkBNDcNiugZrKKWYOGQIx3fu\nNDKuMFBy8gUcONCM1pq6igrCtYWKckVSWBiZ0dEEnjnD4Q8/ZEJSUvcykxITKdm1q19zHDlS2/24\nuLiGlJTR/br+3vp41y7mxMd3T8+Ji6N83z6cTqeBqURPeKwoU0olKaV2KaXalFKms+bfqJQ6cdb0\nnUqpzUqpd5RS4Z7KJ4QvCgoKQgcH09jR0T2vqrmZyMREA1P1zvDhw4mLu5y//72MFSvKeOaZMhIT\nZzF27FhazWZabbbu11Y1NxN51geuGFwuvvgSamsv5H//t4wtOzr426JG8sKyCbdaabPZaDGZiE5I\noLq1tXuZqpYWIs8qVPrDsmVO3nijjNdeK2PDhjBmz765X9ffW2FDhlDa0tI9XdLSQkh0tM+Nlh6M\nPNanTCllBYKBN4HLtdZO1/yXgTSt9TSlVCCwFsgHbnbN//M565E+ZQaSPmXeZ+PatRS9+CJTg4Np\nczjYDNz085/3+qbnHR0dlJSUYLVaSU9P9+iOXGtNWVkZlZWVJCUlkZaWhlKK9995h5IlS5gcEkKT\nzcbWgADu+M//7Nc7MwyGtuJP7HY7mzdvZv/+/ZwoLOTq4GAiAgP5oLWVtJtuIi4piU1PPcU0qxWn\n1hTa7VzxyCOMzc7ul+0rpWhqauLgwYOYzWZGjx7dr30c++L1pUtZ8dOfcn1AACated1mY/S993L3\nPfeQ6INf2Hxdv3f0V0rlA+1a622u6W8A3wb2A49orZvdCLceV1GmlLoKSAC+qbWerpQaA3xPa/09\npVQM8E+t9U3nLC9FmYGkKPM+WmsOHjzI/g8+wBIczMTp03s9DL60tJTXHn+cpOZmWrXGOXw4d//w\nh4SFhQFdt3Kx2WyEuK7x5Slaaz766CMObt9OcGQkk6ZNIyEhoV+3MRjaiq9yOp20trYSEhKCyWTC\nbrfz6nPPceaDDxiiFIdsNobk5JAYG8vIiRPJzs5GKcWxY8fYu2ULymTiorw8MjIy+i2Tt7eXwsJC\n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\nRU5ErkJggg==\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# scatter plot matrix of DBSCAN cluster assignments (0=red, 1=green, 2=blue, -1=yellow)\n", + "pd.scatter_matrix(X, c=colors[beer.cluster], figsize=(10,10), s=100)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/20_regularization.ipynb b/notebooks/20_regularization.ipynb new file mode 100644 index 0000000..7c124ca --- /dev/null +++ b/notebooks/20_regularization.ipynb @@ -0,0 +1,1743 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Regularization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Agenda:\n", + "\n", + "1. Overfitting (review)\n", + "2. Overfitting with linear models\n", + "3. Regularization of linear models\n", + "4. Regularized regression in scikit-learn\n", + "5. Regularized classification in scikit-learn\n", + "6. Comparing regularized linear models with unregularized linear models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Overfitting (review)\n", + "\n", + "**What is overfitting?**\n", + "\n", + "- Building a model that matches the training data \"too closely\"\n", + "- Learning from the noise in the data, rather than just the signal\n", + "\n", + "**How does overfitting occur?**\n", + "\n", + "- Evaluating a model by testing it on the same data that was used to train it\n", + "- Creating a model that is \"too complex\"\n", + "\n", + "**What is the impact of overfitting?**\n", + "\n", + "- Model will do well on the training data, but won't generalize to out-of-sample data\n", + "- Model will have low bias, but high variance" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Overfitting with KNN\n", + "\n", + "![Overfitting with KNN](images/iris_01nn_map.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Overfitting with polynomial regression\n", + "\n", + "![Overfitting with polynomial regression](images/polynomial_overfitting.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Overfitting with decision trees\n", + "\n", + "![Overfitting with decision trees](images/salary_tree_deep.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Overfitting with linear models\n", + "\n", + "**What are the general characteristics of linear models?**\n", + "\n", + "- Low model complexity\n", + "- High bias, low variance\n", + "- Does not tend to overfit\n", + "\n", + "Nevertheless, **overfitting can still occur** with linear models if you allow them to have **high variance**. Here are some common causes:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Cause 1: Irrelevant features\n", + "\n", + "Linear models can overfit if you include \"irrelevant features\", meaning features that are unrelated to the response. Why?\n", + "\n", + "Because it will learn a coefficient for every feature you include in the model, regardless of whether that feature has the **signal** or the **noise**.\n", + "\n", + "This is especially a problem when **p (number of features) is close to n (number of observations)**, because that model will naturally have high variance." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Cause 2: Correlated features\n", + "\n", + "Linear models can overfit if the included features are highly correlated with one another. Why?\n", + "\n", + "From the [scikit-learn documentation](http://scikit-learn.org/stable/modules/linear_model.html#ordinary-least-squares):\n", + "\n", + "> \"...coefficient estimates for Ordinary Least Squares rely on the independence of the model terms. When terms are correlated and the columns of the design matrix X have an approximate linear dependence, the design matrix becomes close to singular and as a result, the least-squares estimate becomes highly sensitive to random errors in the observed response, producing a large variance.\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Cause 3: Large coefficients\n", + "\n", + "Linear models can overfit if the coefficients (after feature standardization) are too large. Why?\n", + "\n", + "Because the **larger** the absolute value of the coefficient, the more **power** it has to change the predicted response, resulting in a higher variance." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Regularization of linear models\n", + "\n", + "- Regularization is a method for \"constraining\" or \"regularizing\" the **size of the coefficients**, thus \"shrinking\" them towards zero.\n", + "- It reduces model variance and thus **minimizes overfitting**.\n", + "- If the model is too complex, it tends to reduce variance more than it increases bias, resulting in a model that is **more likely to generalize**.\n", + "\n", + "Our goal is to locate the **optimum model complexity**, and thus regularization is useful when we believe our model is too complex." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Bias-variance tradeoff](images/bias_variance.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How does regularization work?\n", + "\n", + "For a normal linear regression model, we estimate the coefficients using the least squares criterion, which **minimizes the residual sum of squares (RSS):**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Estimating coefficients](images/estimating_coefficients.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For a regularized linear regression model, we **minimize the sum of RSS and a \"penalty term\"** that penalizes coefficient size.\n", + "\n", + "**Ridge regression** (or \"L2 regularization\") minimizes: $$\\text{RSS} + \\alpha \\sum_{j=1}^p \\beta_j^2$$\n", + "\n", + "**Lasso regression** (or \"L1 regularization\") minimizes: $$\\text{RSS} + \\alpha \\sum_{j=1}^p |\\beta_j|$$\n", + "\n", + "- $p$ is the **number of features**\n", + "- $\\beta_j$ is a **model coefficient**\n", + "- $\\alpha$ is a **tuning parameter:**\n", + " - A tiny $\\alpha$ imposes no penalty on the coefficient size, and is equivalent to a normal linear regression model.\n", + " - Increasing the $\\alpha$ penalizes the coefficients and thus shrinks them." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Lasso and ridge path diagrams\n", + "\n", + "A larger alpha (towards the left of each diagram) results in more regularization:\n", + "\n", + "- **Lasso regression** shrinks coefficients all the way to zero, thus removing them from the model\n", + "- **Ridge regression** shrinks coefficients toward zero, but they rarely reach zero\n", + "\n", + "Source code for the diagrams: [Lasso regression](http://scikit-learn.org/stable/auto_examples/linear_model/plot_lasso_lars.html) and [Ridge regression](http://scikit-learn.org/stable/auto_examples/linear_model/plot_ridge_path.html)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Lasso and Ridge Path Diagrams](images/lasso_ridge_path.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Advice for applying regularization\n", + "\n", + "**Should features be standardized?**\n", + "\n", + "- Yes, because otherwise, features would be penalized simply because of their scale.\n", + "- Also, standardizing avoids penalizing the intercept, which wouldn't make intuitive sense.\n", + "\n", + "**How should you choose between Lasso regression and Ridge regression?**\n", + "\n", + "- Lasso regression is preferred if we believe many features are irrelevant or if we prefer a sparse model.\n", + "- If model performance is your primary concern, it is best to try both.\n", + "- ElasticNet regression is a combination of lasso regression and ridge Regression." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Visualizing regularization\n", + "\n", + "Below is a visualization of what happens when you apply regularization. The general idea is that you are **restricting the allowed values of your coefficients** to a certain \"region\". **Within that region**, you want to find the coefficients that result in the best model." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Lasso and Ridge Coefficient Plots](images/lasso_ridge_coefficients.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this diagram:\n", + "\n", + "- We are fitting a linear regression model with **two features**, $x_1$ and $x_2$.\n", + "- $\\hat\\beta$ represents the set of two coefficients, $\\beta_1$ and $\\beta_2$, which minimize the RSS for the **unregularized model**.\n", + "- Regularization restricts the allowed positions of $\\hat\\beta$ to the **blue constraint region:**\n", + " - For lasso, this region is a **diamond** because it constrains the absolute value of the coefficients.\n", + " - For ridge, this region is a **circle** because it constrains the square of the coefficients.\n", + "- The **size of the blue region** is determined by $\\alpha$, with a smaller $\\alpha$ resulting in a larger region:\n", + " - When $\\alpha$ is zero, the blue region is infinitely large, and thus the coefficient sizes are not constrained.\n", + " - When $\\alpha$ increases, the blue region gets smaller and smaller.\n", + "\n", + "In this case, $\\hat\\beta$ is **not** within the blue constraint region. Thus, we need to **move $\\hat\\beta$ until it intersects the blue region**, while **increasing the RSS as little as possible.**\n", + "\n", + "From page 222 of [An Introduction to Statistical Learning](http://www-bcf.usc.edu/~gareth/ISL/):\n", + "\n", + "> The ellipses that are centered around $\\hat\\beta$ represent **regions of constant RSS**. In other words, all of the points on a given ellipse share a common value of the RSS. As the ellipses expand away from the least squares coefficient estimates, the RSS increases. Equations (6.8) and (6.9) indicate that the lasso and ridge regression coefficient estimates are given by the **first point at which an ellipse contacts the constraint region**.\n", + "\n", + "> Since **ridge regression** has a circular constraint with no sharp points, this intersection will not generally occur on an axis, and so the ridge regression coefficient estimates will be exclusively non-zero. However, the **lasso** constraint has corners at each of the axes, and so the ellipse will often intersect the constraint region at an axis. When this occurs, one of the coefficients will equal zero. In higher dimensions, many of the coefficient estimates may equal zero simultaneously. In Figure 6.7, the intersection occurs at $\\beta_1 = 0$, and so the resulting model will only include $\\beta_2$." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 4: Regularized regression in scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Communities and Crime dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/communities/communities.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Communities+and+Crime)\n", + "- **Goal:** Predict the violent crime rate for a community given socioeconomic and law enforcement data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Load and prepare the crime dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
0123456789...118119120121122123124125126127
08NaNNaNLakewoodcity10.190.330.020.900.12...0.120.260.200.060.040.90.50.320.140.20
153NaNNaNTukwilacity10.000.160.120.740.45...0.020.120.45NaNNaNNaNNaN0.00NaN0.67
224NaNNaNAberdeentown10.000.420.490.560.17...0.010.210.02NaNNaNNaNNaN0.00NaN0.43
334581440Willingborotownship10.040.771.000.080.12...0.020.390.28NaNNaNNaNNaN0.00NaN0.12
442956096Bethlehemtownship10.010.550.020.950.09...0.040.090.02NaNNaNNaNNaN0.00NaN0.03
\n", + "

5 rows × 128 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 \\\n", + "0 8 NaN NaN Lakewoodcity 1 0.19 0.33 0.02 0.90 0.12 \n", + "1 53 NaN NaN Tukwilacity 1 0.00 0.16 0.12 0.74 0.45 \n", + "2 24 NaN NaN Aberdeentown 1 0.00 0.42 0.49 0.56 0.17 \n", + "3 34 5 81440 Willingborotownship 1 0.04 0.77 1.00 0.08 0.12 \n", + "4 42 95 6096 Bethlehemtownship 1 0.01 0.55 0.02 0.95 0.09 \n", + "\n", + " ... 118 119 120 121 122 123 124 125 126 127 \n", + "0 ... 0.12 0.26 0.20 0.06 0.04 0.9 0.5 0.32 0.14 0.20 \n", + "1 ... 0.02 0.12 0.45 NaN NaN NaN NaN 0.00 NaN 0.67 \n", + "2 ... 0.01 0.21 0.02 NaN NaN NaN NaN 0.00 NaN 0.43 \n", + "3 ... 0.02 0.39 0.28 NaN NaN NaN NaN 0.00 NaN 0.12 \n", + "4 ... 0.04 0.09 0.02 NaN NaN NaN NaN 0.00 NaN 0.03 \n", + "\n", + "[5 rows x 128 columns]" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in the dataset\n", + "import pandas as pd\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/communities/communities.data'\n", + "crime = pd.read_csv(url, header=None, na_values=['?'])\n", + "crime.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "count 1994.000000\n", + "mean 0.237979\n", + "std 0.232985\n", + "min 0.000000\n", + "25% 0.070000\n", + "50% 0.150000\n", + "75% 0.330000\n", + "max 1.000000\n", + "Name: 127, dtype: float64" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the response variable\n", + "crime[127].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# remove categorical features\n", + "crime.drop([0, 1, 2, 3, 4], axis=1, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# remove rows with any missing values\n", + "crime.dropna(inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(319, 123)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the shape\n", + "crime.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "X = crime.drop(127, axis=1)\n", + "y = crime[127]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Linear regression" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LinearRegression(copy_X=True, fit_intercept=True, n_jobs=1, normalize=False)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# build a linear regression model\n", + "from sklearn.linear_model import LinearRegression\n", + "linreg = LinearRegression()\n", + "linreg.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ -3.66188167e+00 6.98124465e-01 -2.61955467e-01 -2.85270027e-01\n", + " -1.64740837e-01 2.46972333e-01 -1.09290051e+00 -5.96857796e-01\n", + " 1.11200239e+00 -7.21968931e-01 4.27346598e+00 -2.28040268e-01\n", + " 8.04875769e-01 -2.57934732e-01 -2.63458023e-01 -1.04616958e+00\n", + " 6.07784197e-01 7.73552561e-01 5.96468029e-02 6.90215922e-01\n", + " 2.16759430e-02 -4.87802949e-01 -5.18858404e-01 1.39478815e-01\n", + " -1.24417942e-01 3.15003821e-01 -1.52633736e-01 -9.65003927e-01\n", + " 1.17142163e+00 -3.08546690e-02 -9.29085548e-01 1.24654586e-01\n", + " 1.98104506e-01 7.30804821e-01 -1.77337294e-01 8.32927588e-02\n", + " 3.46045601e-01 5.01837338e-01 1.57062958e+00 -4.13478807e-01\n", + " 1.39350802e+00 -3.49428114e+00 7.09577818e-01 -8.32141352e-01\n", + " -1.39984927e+00 1.02482840e+00 2.13855006e-01 -6.18937325e-01\n", + " 5.28954490e-01 7.98294890e-02 5.93688560e-02 -1.68582667e-01\n", + " 7.31264051e-01 -1.39635208e+00 2.38507704e-01 5.50621439e-01\n", + " -5.61447867e-01 6.18989764e-01 2.55517024e+00 -3.71769599e+00\n", + " 7.09191935e-01 3.82041439e-01 8.23752836e-01 -1.67703547e+00\n", + " -1.73150450e+00 9.90120171e-01 -5.72745697e-01 -1.45877295e+00\n", + " 8.68032144e-01 5.15959984e-01 3.14453207e-02 2.01869791e-01\n", + " 9.65291940e-02 2.13034099e+00 -6.95374423e-02 4.62477023e-02\n", + " -1.10565955e-02 -1.34313780e-02 -1.04515494e-01 -8.76985171e-01\n", + " 4.26781907e-01 -1.85405795e-01 -8.16215517e-01 -2.86596076e-01\n", + " -1.56110708e-01 1.76468580e+00 -5.70163730e-01 -7.54066704e-02\n", + " -1.74212697e-01 -8.89747220e-02 2.26336403e-01 1.38030073e+00\n", + " -3.37304744e-01 -2.57856611e-02 8.91299188e-02 3.49876793e-01\n", + " -1.22428557e+00 -3.67941205e+01 -6.95699750e-01 2.95269279e-01\n", + " -1.48590316e-03 2.34206416e-01 -7.09533984e-03 3.67152957e+01\n", + " -8.90665109e-02 3.79550678e-02 3.19375782e-01 4.60708905e-01\n", + " 1.41090069e-01 -6.67017320e-01 -2.59035245e-01 -4.60600755e-04\n", + " -1.51868232e-02 7.54768410e-02 -2.36105498e-03 -1.50328233e-01\n", + " 1.85575558e-01 6.31979224e-01 -1.50253625e-01 1.87638817e-02\n", + " -3.38095851e-02 -4.46104032e-01]\n" + ] + } + ], + "source": [ + "# examine the coefficients\n", + "print linreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# make predictions\n", + "y_pred = linreg.predict(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.233813676495\n" + ] + } + ], + "source": [ + "# calculate RMSE\n", + "from sklearn import metrics\n", + "import numpy as np\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Ridge regression\n", + "\n", + "- [Ridge](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Ridge.html) documentation\n", + "- **alpha:** must be positive, increase for more regularization\n", + "- **normalize:** scales the features (without using StandardScaler)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.233813676495\n" + ] + } + ], + "source": [ + "# alpha=0 is equivalent to linear regression\n", + "from sklearn.linear_model import Ridge\n", + "ridgereg = Ridge(alpha=0, normalize=True)\n", + "ridgereg.fit(X_train, y_train)\n", + "y_pred = ridgereg.predict(X_test)\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.164279068049\n" + ] + } + ], + "source": [ + "# try alpha=0.1\n", + "ridgereg = Ridge(alpha=0.1, normalize=True)\n", + "ridgereg.fit(X_train, y_train)\n", + "y_pred = ridgereg.predict(X_test)\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ -4.00298418e-03 3.51647445e-02 6.03535935e-02 -7.68532502e-02\n", + " -1.76099849e-02 4.53791433e-02 8.81586468e-03 -2.88885814e-02\n", + " -1.92143587e-02 3.36122201e-02 5.71590736e-04 -4.85438136e-02\n", + " 5.55725157e-02 -1.15934270e-01 -1.11880845e-01 -3.32742094e-01\n", + " -1.12302031e-02 9.63833243e-02 -8.92057732e-02 8.42691702e-02\n", + " -1.67246717e-02 7.42520308e-03 -1.21294025e-01 -6.70155789e-02\n", + " -1.74250249e-03 1.69446833e-01 3.18217654e-02 -1.00209834e-01\n", + " 3.97535644e-02 -1.19173054e-01 -1.04445267e-01 -5.14946676e-03\n", + " 1.10071013e-01 -3.22958955e-02 -1.40601627e-01 7.72658029e-02\n", + " 9.07962536e-02 -3.78878862e-03 4.61941793e-02 6.30299731e-02\n", + " -3.09236932e-02 1.02883578e-02 9.70425568e-02 -1.28936944e-01\n", + " -1.38268907e-01 -6.37169778e-02 -8.80160419e-02 -4.01991014e-02\n", + " 8.11064596e-02 -6.30663975e-02 1.29756859e-01 -6.25210624e-02\n", + " 1.60531213e-02 -1.39061824e-01 6.39822353e-02 4.87118744e-02\n", + " -7.68217532e-03 -1.53523412e-03 1.73028280e-02 -1.37258659e-03\n", + " -1.97381922e-02 4.47492477e-02 3.53941624e-03 -1.64126843e-02\n", + " -1.62363185e-02 7.10860268e-02 -1.34543849e-01 3.03401863e-02\n", + " 2.87012058e-02 2.62507811e-01 3.87946361e-02 4.16976393e-02\n", + " 2.45959130e-02 4.02803695e-02 -1.15568319e-02 1.82352709e-02\n", + " -1.11769965e-04 1.17220288e-02 -3.27960499e-02 -2.06336390e-02\n", + " -2.01424775e-02 -1.55746075e-02 -1.50471159e-01 5.00237268e-02\n", + " 1.67270388e-02 1.27989507e-01 -7.55437715e-02 -7.22756020e-02\n", + " -8.80283128e-02 6.42301728e-02 1.39781081e-01 4.71861289e-02\n", + " -6.42667056e-02 3.16227166e-02 -1.36066226e-02 5.16507328e-02\n", + " -4.60206271e-02 6.55072592e-04 3.51488294e-02 -1.68717518e-02\n", + " -7.00033520e-03 4.99335627e-02 8.40464679e-02 3.87553978e-03\n", + " -1.23632746e-01 -2.24505480e-02 -2.47960018e-03 4.13468551e-02\n", + " 8.26295505e-02 -4.84167513e-02 8.21329530e-03 1.57843967e-02\n", + " -1.94698620e-02 4.09120489e-02 -4.42911592e-02 -5.64373896e-02\n", + " 1.17841094e-01 7.34994342e-02 -2.78153968e-02 3.74136314e-02\n", + " -7.67878399e-02 -4.65440973e-02]\n" + ] + } + ], + "source": [ + "# examine the coefficients\n", + "print ridgereg.coef_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- [RidgeCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.RidgeCV.html): ridge regression with built-in cross-validation of the alpha parameter\n", + "- **alphas:** array of alpha values to try" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1.00000000e-02, 1.00000000e-01, 1.00000000e+00,\n", + " 1.00000000e+01, 1.00000000e+02])" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# create an array of alpha values\n", + "alpha_range = 10.**np.arange(-2, 3)\n", + "alpha_range" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "1.0" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# select the best alpha with RidgeCV\n", + "from sklearn.linear_model import RidgeCV\n", + "ridgeregcv = RidgeCV(alphas=alpha_range, normalize=True, scoring='mean_squared_error')\n", + "ridgeregcv.fit(X_train, y_train)\n", + "ridgeregcv.alpha_" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.163129782343\n" + ] + } + ], + "source": [ + "# predict method uses the best alpha value\n", + "y_pred = ridgeregcv.predict(X_test)\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Lasso regression\n", + "\n", + "- [Lasso](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Lasso.html) documentation\n", + "- **alpha:** must be positive, increase for more regularization\n", + "- **normalize:** scales the features (without using StandardScaler)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0. 0. 0.00891952 -0.27423369 0. 0. 0.\n", + " -0. -0. 0. 0. 0. -0. -0.\n", + " -0. -0.19414627 0. 0. -0. -0. -0.\n", + " -0. -0. -0. -0. 0. 0. 0.\n", + " 0.04335664 -0. 0. -0. 0.03491474 -0.\n", + " -0.06685424 0. 0. -0. 0.10575313 0. 0.\n", + " 0.00890807 0. -0.1378172 -0.30954312 -0. -0. -0.\n", + " -0. 0. 0. 0. 0. -0. 0.\n", + " 0. 0. 0. 0. 0. -0. 0.\n", + " 0. 0. -0. 0. -0. -0. 0.\n", + " 0.05257892 -0. 0. -0. -0. 0. 0.\n", + " 0. 0. 0. -0. -0. -0. -0.\n", + " -0. -0. -0. 0. -0. -0. 0.\n", + " 0.13861081 0. -0. -0. 0. 0. 0.\n", + " 0. -0. 0. 0. 0. 0.03347908\n", + " 0. -0.01130055 -0. 0. 0. 0.00044205\n", + " 0. 0. 0. -0. 0. -0. -0.\n", + " 0.04153636 0. -0. 0.00719672 -0.000666 0. ]\n" + ] + } + ], + "source": [ + "# try alpha=0.001 and examine coefficients\n", + "from sklearn.linear_model import Lasso\n", + "lassoreg = Lasso(alpha=0.001, normalize=True)\n", + "lassoreg.fit(X_train, y_train)\n", + "print lassoreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0. 0. 0. -0.03974695 0. 0. 0.\n", + " 0. 0. -0. 0. 0. -0. -0.\n", + " -0. -0. -0. 0. -0. -0. -0.\n", + " -0. -0. -0. -0. -0. -0. 0.\n", + " 0. 0. 0. -0. 0. -0. -0.\n", + " 0. 0. -0. 0. 0. 0. 0.\n", + " 0. -0. -0.27503063 -0. -0. -0. -0.\n", + " 0. 0. 0. 0. 0. 0. 0.\n", + " 0. 0. 0. 0. -0. 0. 0.\n", + " 0. 0. 0. 0. -0. 0. 0.\n", + " -0. 0. -0. -0. 0. 0. -0.\n", + " 0. 0. -0. -0. -0. -0. -0.\n", + " -0. -0. 0. 0. -0. 0. 0.\n", + " 0. 0. -0. 0. 0. 0. 0.\n", + " -0. 0. 0. 0. 0. 0. -0.\n", + " -0. 0. 0. 0. 0. 0. 0.\n", + " 0. 0. 0. 0. 0. 0. -0.\n", + " 0. -0. 0. ]\n" + ] + } + ], + "source": [ + "# try alpha=0.01 and examine coefficients\n", + "lassoreg = Lasso(alpha=0.01, normalize=True)\n", + "lassoreg.fit(X_train, y_train)\n", + "print lassoreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.198165225429\n" + ] + } + ], + "source": [ + "# calculate RMSE (for alpha=0.01)\n", + "y_pred = lassoreg.predict(X_test)\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- [LassoCV](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LassoCV.html): lasso regression with built-in cross-validation of the alpha parameter\n", + "- **n_alphas:** number of alpha values (automatically chosen) to try" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\Kevin\\Anaconda\\lib\\site-packages\\sklearn\\linear_model\\coordinate_descent.py:444: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations\n", + " ConvergenceWarning)\n" + ] + }, + { + "data": { + "text/plain": [ + "0.0015161594598125873" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# select the best alpha with LassoCV\n", + "from sklearn.linear_model import LassoCV\n", + "lassoregcv = LassoCV(n_alphas=100, normalize=True, random_state=1)\n", + "lassoregcv.fit(X_train, y_train)\n", + "lassoregcv.alpha_" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0. 0. 0. -0.28113506 0. 0. 0.\n", + " 0. 0. 0. 0. 0. -0. -0.\n", + " -0. -0.15481092 0. 0. -0. -0. -0.\n", + " -0. -0. -0. -0. 0. -0. 0.\n", + " 0.06451487 0. 0. -0. 0. -0.\n", + " -0.01920421 0. 0. -0. 0.03386202 0. 0.\n", + " 0.08901243 0. -0.08759757 -0.36986917 -0. -0. -0.\n", + " -0. 0. 0. 0. 0. -0. 0.\n", + " 0. 0. 0. 0. 0. -0. 0.\n", + " 0. 0. -0. 0. 0. -0. 0.\n", + " 0.01740599 -0. 0. -0. -0. 0. 0.\n", + " 0. 0. 0. -0. -0. -0. -0.\n", + " -0. -0. -0. 0. -0. -0. 0.\n", + " 0.13471036 0. -0. -0. 0. -0. 0.\n", + " 0. -0. 0. 0. 0. 0.0054122 0.\n", + " -0. -0. 0. 0. 0. 0. 0.\n", + " 0. -0. 0. -0. 0. 0.02738796\n", + " 0. -0. 0. -0. 0. ]\n" + ] + } + ], + "source": [ + "# examine the coefficients\n", + "print lassoregcv.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.160209558014\n" + ] + } + ], + "source": [ + "# predict method uses the best alpha value\n", + "y_pred = lassoregcv.predict(X_test)\n", + "print np.sqrt(metrics.mean_squared_error(y_test, y_pred))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 5: Regularized classification in scikit-learn\n", + "\n", + "- Wine dataset from the UCI Machine Learning Repository: [data](http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data), [data dictionary](http://archive.ics.uci.edu/ml/datasets/Wine)\n", + "- **Goal:** Predict the origin of wine using chemical analysis" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Load and prepare the wine dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "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", + " \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", + "
012345678910111213
0114.231.712.4315.61272.803.060.282.295.641.043.921065
1113.201.782.1411.21002.652.760.261.284.381.053.401050
2113.162.362.6718.61012.803.240.302.815.681.033.171185
3114.371.952.5016.81133.853.490.242.187.800.863.451480
4113.242.592.8721.01182.802.690.391.824.321.042.93735
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 10 11 12 \\\n", + "0 1 14.23 1.71 2.43 15.6 127 2.80 3.06 0.28 2.29 5.64 1.04 3.92 \n", + "1 1 13.20 1.78 2.14 11.2 100 2.65 2.76 0.26 1.28 4.38 1.05 3.40 \n", + "2 1 13.16 2.36 2.67 18.6 101 2.80 3.24 0.30 2.81 5.68 1.03 3.17 \n", + "3 1 14.37 1.95 2.50 16.8 113 3.85 3.49 0.24 2.18 7.80 0.86 3.45 \n", + "4 1 13.24 2.59 2.87 21.0 118 2.80 2.69 0.39 1.82 4.32 1.04 2.93 \n", + "\n", + " 13 \n", + "0 1065 \n", + "1 1050 \n", + "2 1185 \n", + "3 1480 \n", + "4 735 " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in the dataset\n", + "url = 'http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data'\n", + "wine = pd.read_csv(url, header=None)\n", + "wine.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "2 71\n", + "1 59\n", + "3 48\n", + "dtype: int64" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# examine the response variable\n", + "wine[0].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# define X and y\n", + "X = wine.drop(0, axis=1)\n", + "y = wine[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# split into training and testing sets\n", + "from sklearn.cross_validation import train_test_split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Logistic regression (unregularized)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "LogisticRegression(C=1000000000.0, class_weight=None, dual=False,\n", + " fit_intercept=True, intercept_scaling=1, max_iter=100,\n", + " multi_class='ovr', penalty='l2', random_state=None,\n", + " solver='liblinear', tol=0.0001, verbose=0)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# build a logistic regression model\n", + "from sklearn.linear_model import LogisticRegression\n", + "logreg = LogisticRegression(C=1e9)\n", + "logreg.fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ -4.15397186e+00 4.90075538e+00 1.53790183e+01 -2.85235942e+00\n", + " 1.10505593e-01 -5.30164453e+00 1.05110893e+01 3.06125855e+00\n", + " -1.18150745e+01 -2.43836649e+00 -1.80124471e+00 7.09007536e+00\n", + " 6.93945792e-02]\n", + " [ 5.43369566e+00 -5.23569200e+00 -1.67764364e+01 1.64044307e+00\n", + " 5.76913231e-03 2.82443590e+00 4.90939605e+00 2.45082648e+00\n", + " 6.08259423e+00 -7.85245282e+00 3.48485003e+00 -7.70842670e+00\n", + " -4.90936762e-02]\n", + " [ -9.70207612e-01 2.08269720e+00 9.41526165e-01 2.38023989e-01\n", + " -2.49596817e-03 -9.80981243e-01 -6.54889317e+00 -4.83302817e-01\n", + " -2.65888456e+00 2.57458669e+00 -1.30417032e+00 -2.34300175e+00\n", + " 9.48521802e-03]]\n" + ] + } + ], + "source": [ + "# examine the coefficients\n", + "print logreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 4.08866128e-10 3.95149488e-10 9.99999999e-01]\n", + " [ 4.06722935e-17 1.00000000e+00 4.32260610e-10]\n", + " [ 9.99999906e-01 3.46933978e-11 9.37658044e-08]\n", + " [ 4.64048343e-09 9.99999871e-01 1.24115833e-07]\n", + " [ 9.99730854e-01 3.16142539e-21 2.69146225e-04]\n", + " [ 1.42243183e-14 8.09034805e-07 9.99999191e-01]\n", + " [ 9.99829153e-01 1.47180023e-05 1.56129392e-04]\n", + " [ 9.99999720e-01 1.24359831e-23 2.80079015e-07]\n", + " [ 1.62930410e-17 3.49895213e-13 1.00000000e+00]\n", + " [ 1.97059220e-16 9.99997008e-01 2.99222229e-06]\n", + " [ 9.99967664e-01 2.23795926e-12 3.23360924e-05]\n", + " [ 9.73457858e-01 2.65419232e-02 2.19064985e-07]\n", + " [ 2.84224171e-20 1.00000000e+00 1.12562075e-10]\n", + " [ 9.99999998e-01 1.32844859e-13 1.72600662e-09]\n", + " [ 3.69546813e-09 9.99999996e-01 3.47691845e-10]\n", + " [ 4.22805011e-15 9.99999959e-01 4.13233076e-08]\n", + " [ 3.35466649e-29 4.79623565e-01 5.20376435e-01]\n", + " [ 9.99960400e-01 3.95740340e-05 2.64337565e-08]\n", + " [ 3.29043791e-14 9.99999930e-01 7.00568466e-08]\n", + " [ 9.99778348e-01 4.17075187e-21 2.21651755e-04]\n", + " [ 9.99999731e-01 2.62889100e-15 2.69237974e-07]\n", + " [ 6.19900193e-16 1.00000000e+00 2.86953165e-11]\n", + " [ 2.77940112e-09 9.69506740e-01 3.04932569e-02]\n", + " [ 5.28754692e-05 9.99947121e-01 3.47404069e-09]\n", + " [ 9.99947715e-01 5.22837028e-05 1.10248529e-09]\n", + " [ 5.82332195e-13 2.38782109e-08 9.99999976e-01]\n", + " [ 9.99999788e-01 2.08506990e-07 3.11782661e-09]\n", + " [ 9.99999791e-01 6.12671899e-08 1.47460916e-07]\n", + " [ 9.99986850e-01 8.10206146e-14 1.31497566e-05]\n", + " [ 9.54043555e-12 3.72425979e-19 1.00000000e+00]\n", + " [ 3.04071238e-11 1.00000000e+00 4.08122442e-11]\n", + " [ 3.50017326e-31 3.81668757e-19 1.00000000e+00]\n", + " [ 1.42219468e-22 6.83344681e-19 1.00000000e+00]\n", + " [ 9.99995753e-01 3.04811377e-20 4.24748096e-06]\n", + " [ 2.79451178e-01 7.20548821e-01 1.13159945e-09]\n", + " [ 5.67756081e-11 9.99999996e-01 3.89757045e-09]\n", + " [ 2.41389951e-17 9.99932283e-01 6.77171026e-05]\n", + " [ 2.28608435e-03 9.97713901e-01 1.48456046e-08]\n", + " [ 2.93122189e-12 9.99999997e-01 3.22321411e-09]\n", + " [ 9.99998259e-01 3.53259025e-08 1.70528897e-06]\n", + " [ 9.99999019e-01 1.03943395e-11 9.80508127e-07]\n", + " [ 3.41369632e-09 9.99903436e-01 9.65610816e-05]\n", + " [ 2.55526052e-20 7.80550210e-08 9.99999922e-01]\n", + " [ 9.99999985e-01 3.33192992e-10 1.45026119e-08]\n", + " [ 9.99999917e-01 3.19711403e-09 7.96376715e-08]]\n" + ] + } + ], + "source": [ + "# generate predicted probabilities\n", + "y_pred_prob = logreg.predict_proba(X_test)\n", + "print y_pred_prob" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.347281798715\n" + ] + } + ], + "source": [ + "# calculate log loss\n", + "print metrics.log_loss(y_test, y_pred_prob)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Logistic regression (regularized)\n", + "\n", + "- [LogisticRegression](http://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) documentation\n", + "- **C:** must be positive, decrease for more regularization\n", + "- **penalty:** l1 (lasso) or l2 (ridge)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# standardize X_train and X_test\n", + "from sklearn.preprocessing import StandardScaler\n", + "scaler = StandardScaler()\n", + "scaler.fit(X_train)\n", + "X_train_scaled = scaler.transform(X_train)\n", + "X_test_scaled = scaler.transform(X_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0.21044571 0. 0. 0. 0. 0.\n", + " 0.48723077 0. 0. 0. 0. 0.15360853\n", + " 1.47743702]\n", + " [-0.65689319 -0.05651272 -0.11386446 0. 0. 0. 0.\n", + " 0. 0. -0.73862636 0.24344904 0. -0.63405624]\n", + " [ 0. 0. 0. 0. 0. 0.\n", + " -0.84238099 0. 0. 0.61559726 -0.49014626 -0.30427496\n", + " 0. ]]\n" + ] + } + ], + "source": [ + "# try C=0.1 with L1 penalty\n", + "logreg = LogisticRegression(C=0.1, penalty='l1')\n", + "logreg.fit(X_train_scaled, y_train)\n", + "print logreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.362248219747\n" + ] + } + ], + "source": [ + "# generate predicted probabilities and calculate log loss\n", + "y_pred_prob = logreg.predict_proba(X_test_scaled)\n", + "print metrics.log_loss(y_test, y_pred_prob)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0.59163934 0.06886667 0.33592964 -0.49616684 0.111539 0.21570086\n", + " 0.40524509 -0.15526139 -0.02534651 0.05399014 0.14877346 0.42327938\n", + " 0.89815007]\n", + " [-0.73545676 -0.32942948 -0.47995296 0.294866 -0.1500246 0.04264373\n", + " 0.14500586 0.07250763 0.17409795 -0.70726652 0.4128986 0.09997212\n", + " -0.81284365]\n", + " [ 0.20136567 0.30989025 0.15977925 0.18867218 0.04204443 -0.27108109\n", + " -0.55886639 0.07486943 -0.17471153 0.68266464 -0.52385748 -0.49566967\n", + " -0.02565631]]\n" + ] + } + ], + "source": [ + "# try C=0.1 with L2 penalty\n", + "logreg = LogisticRegression(C=0.1, penalty='l2')\n", + "logreg.fit(X_train_scaled, y_train)\n", + "print logreg.coef_" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.244588324539\n" + ] + } + ], + "source": [ + "# generate predicted probabilities and calculate log loss\n", + "y_pred_prob = logreg.predict_proba(X_test_scaled)\n", + "print metrics.log_loss(y_test, y_pred_prob)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- [Pipeline](http://scikit-learn.org/stable/modules/pipeline.html): chain steps together\n", + "- [GridSearchCV](http://scikit-learn.org/stable/modules/grid_search.html): search a grid of parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# pipeline of StandardScaler and LogisticRegression\n", + "from sklearn.pipeline import make_pipeline\n", + "pipe = make_pipeline(StandardScaler(), LogisticRegression())" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "GridSearchCV(cv=10, error_score='raise',\n", + " estimator=Pipeline(steps=[('standardscaler', StandardScaler(copy=True, with_mean=True, with_std=True)), ('logisticregression', LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\n", + " intercept_scaling=1, max_iter=100, multi_class='ovr',\n", + " penalty='l2', random_state=None, solver='liblinear', tol=0.0001,\n", + " verbose=0))]),\n", + " fit_params={}, iid=True, loss_func=None, n_jobs=1,\n", + " param_grid={'logisticregression__penalty': ['l1', 'l2'], 'logisticregression__C': array([ 1.00000e-02, 1.00000e-01, 1.00000e+00, 1.00000e+01,\n", + " 1.00000e+02])},\n", + " pre_dispatch='2*n_jobs', refit=True, score_func=None,\n", + " scoring='log_loss', verbose=0)" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# grid search for best combination of C and penalty\n", + "from sklearn.grid_search import GridSearchCV\n", + "C_range = 10.**np.arange(-2, 3)\n", + "penalty_options = ['l1', 'l2']\n", + "param_grid = dict(logisticregression__C=C_range, logisticregression__penalty=penalty_options)\n", + "grid = GridSearchCV(pipe, param_grid, cv=10, scoring='log_loss')\n", + "grid.fit(X, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[mean: -1.09861, std: 0.00000, params: {'logisticregression__penalty': 'l1', 'logisticregression__C': 0.01},\n", + " mean: -0.62547, std: 0.03037, params: {'logisticregression__penalty': 'l2', 'logisticregression__C': 0.01},\n", + " mean: -0.35491, std: 0.06891, params: {'logisticregression__penalty': 'l1', 'logisticregression__C': 0.10000000000000001},\n", + " mean: -0.26801, std: 0.04840, params: {'logisticregression__penalty': 'l2', 'logisticregression__C': 0.10000000000000001},\n", + " mean: -0.09436, std: 0.06114, params: {'logisticregression__penalty': 'l1', 'logisticregression__C': 1.0},\n", + " mean: -0.10371, std: 0.04894, params: {'logisticregression__penalty': 'l2', 'logisticregression__C': 1.0},\n", + " mean: -0.05837, std: 0.06413, params: {'logisticregression__penalty': 'l1', 'logisticregression__C': 10.0},\n", + " mean: -0.06174, std: 0.05651, params: {'logisticregression__penalty': 'l2', 'logisticregression__C': 10.0},\n", + " mean: -0.07142, std: 0.09266, params: {'logisticregression__penalty': 'l1', 'logisticregression__C': 100.0},\n", + " mean: -0.06443, std: 0.08409, params: {'logisticregression__penalty': 'l2', 'logisticregression__C': 100.0}]" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print all log loss scores\n", + "grid.grid_scores_" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-0.0583689728556\n", + "{'logisticregression__penalty': 'l1', 'logisticregression__C': 10.0}\n" + ] + } + ], + "source": [ + "# examine the best model\n", + "print grid.best_score_\n", + "print grid.best_params_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 6: Comparing regularized linear models with unregularized linear models\n", + "\n", + "**Advantages of regularized linear models:**\n", + "\n", + "- Better performance\n", + "- L1 regularization performs automatic feature selection\n", + "- Useful for high-dimensional problems (p > n)\n", + "\n", + "**Disadvantages of regularized linear models:**\n", + "\n", + "- Tuning is required\n", + "- Feature scaling is recommended\n", + "- Less interpretable (due to feature scaling)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/notebooks/images/bias_variance.png b/notebooks/images/bias_variance.png new file mode 100644 index 0000000..ff0f188 Binary files /dev/null and b/notebooks/images/bias_variance.png differ diff --git a/notebooks/images/cross_validation_diagram.png b/notebooks/images/cross_validation_diagram.png new file mode 100644 index 0000000..6cb13db Binary files /dev/null and b/notebooks/images/cross_validation_diagram.png differ diff --git a/notebooks/images/crowdflower_ensembling.jpg b/notebooks/images/crowdflower_ensembling.jpg new file mode 100644 index 0000000..e943bd2 Binary files /dev/null and b/notebooks/images/crowdflower_ensembling.jpg differ diff --git a/notebooks/images/driver_ensembling.png b/notebooks/images/driver_ensembling.png new file mode 100644 index 0000000..327db8b Binary files /dev/null and b/notebooks/images/driver_ensembling.png differ diff --git a/notebooks/images/estimating_coefficients.png b/notebooks/images/estimating_coefficients.png new file mode 100644 index 0000000..ffb8439 Binary files /dev/null and b/notebooks/images/estimating_coefficients.png differ diff --git a/notebooks/images/iris_01nn_map.png b/notebooks/images/iris_01nn_map.png new file mode 100644 index 0000000..6edf4ec Binary files /dev/null and b/notebooks/images/iris_01nn_map.png differ diff --git a/notebooks/images/iris_05nn_map.png b/notebooks/images/iris_05nn_map.png new file mode 100644 index 0000000..a80721a Binary files /dev/null and b/notebooks/images/iris_05nn_map.png differ diff --git a/notebooks/images/iris_15nn_map.png b/notebooks/images/iris_15nn_map.png new file mode 100644 index 0000000..7de9a7a Binary files /dev/null and b/notebooks/images/iris_15nn_map.png differ diff --git a/notebooks/images/iris_50nn_map.png b/notebooks/images/iris_50nn_map.png new file mode 100644 index 0000000..0c6b973 Binary files /dev/null and b/notebooks/images/iris_50nn_map.png differ diff --git a/notebooks/images/lasso_ridge_coefficients.png b/notebooks/images/lasso_ridge_coefficients.png new file mode 100644 index 0000000..665a508 Binary files /dev/null and b/notebooks/images/lasso_ridge_coefficients.png differ diff --git a/notebooks/images/lasso_ridge_path.png b/notebooks/images/lasso_ridge_path.png new file mode 100644 index 0000000..ba16479 Binary files /dev/null and b/notebooks/images/lasso_ridge_path.png differ diff --git a/notebooks/images/logistic_betas.png b/notebooks/images/logistic_betas.png new file mode 100644 index 0000000..1f7386b Binary files /dev/null and b/notebooks/images/logistic_betas.png differ diff --git a/notebooks/images/obama_clinton_tree.jpg b/notebooks/images/obama_clinton_tree.jpg new file mode 100644 index 0000000..bdcbe62 Binary files /dev/null and b/notebooks/images/obama_clinton_tree.jpg differ diff --git a/notebooks/images/polynomial_overfitting.png b/notebooks/images/polynomial_overfitting.png new file mode 100644 index 0000000..90d0b2b Binary files /dev/null and b/notebooks/images/polynomial_overfitting.png differ diff --git a/notebooks/images/salary_color.png b/notebooks/images/salary_color.png new file mode 100644 index 0000000..f6f4824 Binary files /dev/null and b/notebooks/images/salary_color.png differ diff --git a/notebooks/images/salary_regions.png b/notebooks/images/salary_regions.png new file mode 100644 index 0000000..8e106bc Binary files /dev/null and b/notebooks/images/salary_regions.png differ diff --git a/notebooks/images/salary_tree.png b/notebooks/images/salary_tree.png new file mode 100644 index 0000000..366888d Binary files /dev/null and b/notebooks/images/salary_tree.png differ diff --git a/notebooks/images/salary_tree_annotated.png b/notebooks/images/salary_tree_annotated.png new file mode 100644 index 0000000..4e70100 Binary files /dev/null and b/notebooks/images/salary_tree_annotated.png differ diff --git a/notebooks/images/salary_tree_deep.png b/notebooks/images/salary_tree_deep.png new file mode 100644 index 0000000..72e4878 Binary files /dev/null and b/notebooks/images/salary_tree_deep.png differ diff --git a/notebooks/images/supervised_learning.png b/notebooks/images/supervised_learning.png new file mode 100644 index 0000000..87174b5 Binary files /dev/null and b/notebooks/images/supervised_learning.png differ diff --git a/notebooks/images/train_test_split.png b/notebooks/images/train_test_split.png new file mode 100644 index 0000000..db27c0a Binary files /dev/null and b/notebooks/images/train_test_split.png differ diff --git a/notebooks/images/training_testing_error.png b/notebooks/images/training_testing_error.png new file mode 100644 index 0000000..c3f061e Binary files /dev/null and b/notebooks/images/training_testing_error.png differ diff --git a/notebooks/images/tree_bikeshare.png b/notebooks/images/tree_bikeshare.png new file mode 100644 index 0000000..dbf2f3f Binary files /dev/null and b/notebooks/images/tree_bikeshare.png differ diff --git a/notebooks/images/tree_titanic.png b/notebooks/images/tree_titanic.png new file mode 100644 index 0000000..77c01c0 Binary files /dev/null and b/notebooks/images/tree_titanic.png differ diff --git a/notebooks/images/tree_vehicles.png b/notebooks/images/tree_vehicles.png new file mode 100644 index 0000000..1865cc6 Binary files /dev/null and b/notebooks/images/tree_vehicles.png differ diff --git a/notebooks/images/tree_vs_linear.png b/notebooks/images/tree_vs_linear.png new file mode 100644 index 0000000..bf1a73c Binary files /dev/null and b/notebooks/images/tree_vs_linear.png differ diff --git a/other/02_exercise_output.png b/other/02_exercise_output.png new file mode 100644 index 0000000..fc49df1 Binary files /dev/null and b/other/02_exercise_output.png differ diff --git a/other/02_file_tree.png b/other/02_file_tree.png new file mode 100644 index 0000000..acca312 Binary files /dev/null and b/other/02_file_tree.png differ diff --git a/other/advice.md b/other/advice.md new file mode 100644 index 0000000..c2de15a --- /dev/null +++ b/other/advice.md @@ -0,0 +1,39 @@ +## What's Next? + +Here is my best advice for **getting better at data science**: Find "the thing" that motivates you to practice what you learned and to learn more, and then do that thing. That could be personal data science projects, Kaggle competitions, online courses, reading books, reading blogs, attending meetups or conferences, or something else. + +If you create your own **data science projects**, I'd encourage you to share them on GitHub and include writeups. That will help to show others that you know how to do [proper data science](http://simplystatistics.org/2015/03/17/data-science-done-well-looks-easy-and-that-is-a-big-problem-for-data-scientists/). + +**Kaggle competitions** are a great way to practice data science without coming up with the problem yourself. Don't worry about how high you place, just focus on learning something new with every competition. Spend as much time as possible reading the forums, because you'll learn a lot, but don't spend time in the forums at the expense of working on the competition yourself. Also, keep in mind that you won't be practicing important parts of the data science workflow, namely generating questions, gathering data, and communicating results. + +There are many **online courses** to consider, and new ones being created all the time: + +* Coursera's [Data Science Specialization](https://www.coursera.org/specialization/jhudatascience/1) is 9 courses, plus a capstone project. There is a lot of overlap with General Assembly's course, and course quality varies, but you would definitely learn a lot of R. +* Coursera's [Machine Learning](https://www.coursera.org/learn/machine-learning/) is Andrew Ng's highly regarded course. It goes deeper into many topics we covered, and covers many topics we didn't. Keep in mind that it focuses only on machine learning (not the entire data science workflow), the programming assignments use MATLAB/Octave, and it requires some understanding of linear algebra. Browse these [lecture notes](http://www.holehouse.org/mlclass/) (compiled by a student) for a preview of the course. +* Stanford's [Statistical Learning](http://online.stanford.edu/course/statistical-learning) also covers some topics that we did not. It focuses on teaching machine learning at a conceptual (rather than mathematical) level, when possible. The course may be offered again in 2016, but the real gem from the course is the book and videos (linked below). +* Caltech's [Learning from Data](http://work.caltech.edu/telecourse.html) teaches machine learning at a theoretical and conceptual level. The lectures and slides are excellent. The homework assignments are not interactive, and the course does not use a specific programming language. +* Udacity's [Data Analyst Nanodegree](https://www.udacity.com/course/data-analyst-nanodegree--nd002) looks promising, but I don't know anyone who has done it. +* Thinkful's [Data Science in Python](https://www.thinkful.com/courses/learn-data-science-online/) course or SlideRule's [Data Science Intensive](https://www.mysliderule.com/workshops/data-science-intensive) may be a good way to practice our course material with guidance from an expert mentor. +* [Dataquest](https://www.dataquest.io) is an online platform rather than a traditional course, and allows you to learn and practice data science through interactive exercises. Not all of the lessons are free, but new lessons are frequently being added. +* edX's [Introduction to Computer Science and Programming Using Python](https://www.edx.org/course/introduction-computer-science-mitx-6-00-1x7) is apparently an excellent course if you want to get better at programming in Python. +* Coursera recently added many other data science-related [specializations and courses](https://www.coursera.org/browse/data-science?languages=en), most of which I am not familiar with. However, [CourseTalk](https://www.coursetalk.com/) is useful for reading reviews of online courses. +* Some additional courses are listed in the [Additional Resources](../README.md#additional-resources-1) section of the main README. +* I will also be teaching [my own online courses](http://www.dataschool.io/learn/), which will range in level from beginner to advanced. (Subscribe to my [email newsletter](http://www.dataschool.io/subscribe/) to be notified when courses are announced.) + +Here is just a tiny selection of **books**: +* [An Introduction to Statistical Learning with Applications in R](http://www-bcf.usc.edu/~gareth/ISL/) is my favorite book on machine learning because of the thoughtful way in which the material is presented. The Statistical Learning course linked above uses it as the course textbook, and the [related videos](http://www.dataschool.io/15-hours-of-expert-machine-learning-videos/) are available on YouTube. +* [Elements of Statistical Learning](http://statweb.stanford.edu/~tibs/ElemStatLearn/) is by the same authors. It covers a wider variety of topics, and in greater mathematical depth. +* [Python for Data Analysis](http://shop.oreilly.com/product/0636920023784.do) was written by the creator of Pandas, and is especially useful if you want to go deeper into Pandas and NumPy. +* [Python Machine Learning](https://github.com/rasbt/python-machine-learning-book) came out in September 2015. The author, [Sebastian Raschka](http://sebastianraschka.com/articles.html), is an excellent writer and has a deep understanding of both machine learning and scikit-learn, so I suspect it is worth reading. + +There are an overwhelming number of data science **blogs and newsletters**. If you want to read just one site, [DataTau](http://www.datatau.com/news) is the best aggregator. [Data Elixir](http://dataelixir.com/) is the best newsletter, though the [O'Reilly Data Newsletter](http://www.oreilly.com/data/newsletter.html) and [Python Weekly](http://www.pythonweekly.com/) are also good. Other notable blogs include: [no free hunch](http://blog.kaggle.com/) (Kaggle's blog), [The Yhat blog](http://blog.yhathq.com/) (lots of Python and R content), [Practical Business Python](http://pbpython.com/) (accessible Python content), [Simply Statistics](http://simplystatistics.org/) (a bit more academic), [FastML](http://fastml.com/) (machine learning content), [Win-Vector blog](http://www.win-vector.com/blog/) (great data science advice), [FiveThirtyEight](http://fivethirtyeight.com/) (data journalism), and [Data School](http://www.dataschool.io/) (my blog). + +If you prefer **podcasts**, I don't have any personal recommendations, though this [list](https://blog.growth.supply/the-7-best-data-science-and-machine-learning-podcasts-e8f0d5a4a419) gives a nice summary of seven data science podcasts that the author recommends. + +There are tons of data-related **meetups in DC**, and most of them are organized by Data Community DC. Check out the [calendar](http://www.datacommunitydc.org/calendar/) or just subscribe to their [weekly newsletter](http://www.datacommunitydc.org/newsletter/). [District Data Labs](http://www.districtdatalabs.com/) also offers data science workshops and project opportunities in DC. + +Some notable data science **conferences** are [KDD](http://www.kdd.org/), [Strata](http://strataconf.com/), [PyCon](https://us.pycon.org), [PyData](http://pydata.org/), and [SciPy](http://scipy.org/). + +If you want to go **full-time** with your data science education, read this [guide to data science bootcamps](http://yet-another-data-blog.blogspot.com/2014/04/data-science-bootcamp-landscape-full.html), and this [other guide](http://www.skilledup.com/articles/list-data-science-bootcamps) which also includes part-time and online programs. Or, check out this massive list of [colleges and universities](http://datascience.community/colleges) with data science-related degrees. + +Finally, Dataquest's blog post on [How to actually learn data science](https://www.dataquest.io/blog/how-to-actually-learn-data-science/) has some additional advice that may be useful to you. diff --git a/other/model_comparison.md b/other/model_comparison.md new file mode 100644 index 0000000..982b547 --- /dev/null +++ b/other/model_comparison.md @@ -0,0 +1,121 @@ +# Comparison of Machine Learning Models ([table](http://www.dataschool.io/comparing-supervised-learning-algorithms/)) + +## K-nearest neighbors (KNN) + +**Advantages:** + +- Simple to understand and explain +- Model training is fast +- Can be used for classification and regression + +**Disadvantages:** + +- Must store all of the training data +- Prediction phase can be slow when n is large +- Sensitive to irrelevant features +- Sensitive to the scale of the data +- Accuracy is (generally) not competitive with the best supervised learning methods + +## Linear Regression + +**Advantages:** + +- Simple to explain +- Highly interpretable +- Model training and prediction are fast +- No tuning is required (excluding regularization) +- Features don't need scaling +- Can perform well with a small number of observations +- Well-understood + +**Disadvantages:** + +- Presumes a linear relationship between the features and the response +- Performance is (generally) not competitive with the best supervised learning methods due to high bias +- Can't automatically learn feature interactions + +## Logistic Regression + +**Advantages:** + +- Highly interpretable (if you remember how) +- Model training and prediction are fast +- No tuning is required (excluding regularization) +- Features don't need scaling +- Can perform well with a small number of observations +- Outputs well-calibrated predicted probabilities + +**Disadvantages:** + +- Presumes a linear relationship between the features and the log-odds of the response +- Performance is (generally) not competitive with the best supervised learning methods +- Can't automatically learn feature interactions + +## Naive Bayes + +**Advantages:** + +- Model training and prediction are very fast +- Somewhat interpretable +- No tuning is required +- Features don't need scaling +- Insensitive to irrelevant features (with enough observations) +- Performs better than logistic regression when the training set is very small + +**Disadvantages:** + +- Predicted probabilities are not well-calibrated +- Correlated features can be problematic (due to the independence assumption) +- Can't handle negative features (with Multinomial Naive Bayes) +- Has a higher "asymptotic error" than logistic regression + +## Decision Trees + +**Advantages:** + +- Can be used for regression or classification +- Can be displayed graphically +- Highly interpretable +- Can be specified as a series of rules, and more closely approximate human decision-making than other models +- Prediction is fast +- Features don't need scaling +- Automatically learns feature interactions +- Tends to ignore irrelevant features +- Non-parametric (will outperform linear models if relationship between features and response is highly non-linear) + +**Disadvantages:** + +- Performance is (generally) not competitive with the best supervised learning methods +- Can easily overfit the training data (tuning is required) +- Small variations in the data can result in a completely different tree (high variance) +- Recursive binary splitting makes "locally optimal" decisions that may not result in a globally optimal tree +- Doesn't tend to work well if the classes are highly unbalanced +- Doesn't tend to work well with very small datasets + +## Random Forests + +**Advantages (compared to decision trees):** + +- Performance is competitive with the best supervised learning methods +- Provides a more reliable estimate of feature importance +- Allows you to estimate out-of-sample error without using train/test split or cross-validation + +**Disadvantages (compared to decision trees):** + +- Less interpretable +- Slower to train +- Slower to predict + +## Regularized Linear Models + +**Advantages (compared to unregularized linear models):** + +- Better performance +- L1 regularization performs automatic feature selection +- Useful for high-dimensional problems (p > n) + +**Disadvantages (compared to unregularized linear models):** + +- Tuning is required +- Feature scaling is recommended +- Less interpretable (due to feature scaling) diff --git a/other/model_evaluation_comparison.md b/other/model_evaluation_comparison.md new file mode 100644 index 0000000..c0260d9 --- /dev/null +++ b/other/model_evaluation_comparison.md @@ -0,0 +1,63 @@ +## Comparing Model Evaluation Procedures + +**Training and testing on the same data** + +- Goal is to estimate likely performance of a model on out-of-sample data +- But, maximizing training performance rewards overly complex models that won't necessarily generalize +- Unnecessarily complex models overfit the training data: + - Will do well when tested using the in-sample data + - May do poorly on out-of-sample data + - Learns the "noise" in the data rather than the "signal" + +**Train/test split** + +- Split the dataset into two pieces, so that the model can be trained and tested on different data +- Testing performance is a better estimate of out-of-sample performance (compared to training performance) +- But, it provides a high variance estimate since changing which observations happen to be in the testing set can significantly change testing performance +- Allows you to easily inspect your testing results (via confusion matrix or ROC curve) + +**K-fold cross-validation** + +- Systematically create "K" train/test splits and average the results together +- Cross-validated performance is a more reliable estimate of out-of-sample performance (compared to testing performance) +- Runs "K" times slower than train/test split + +## Comparing Evaluation Metrics for Classification Problems + +**Classification accuracy/error** + +- Classification accuracy is the percentage of correct predictions (higher is better) +- Classification error is the percentage of incorrect predictions (lower is better) +- Easiest classification metric to understand + +**Confusion matrix** + +- Confusion matrix gives you a better understanding of how your classifier is performing +- Allows you to calculate sensitivity, specificity, and many other metrics that might match your business objective better than accuracy + +**ROC curves and Area Under the Curve (AUC)** + +- Allows you to visualize the performance of your classifier across all possible classification thresholds, thus helping you to choose a threshold that appropriately balances sensitivity and specificity +- Still useful when there is high class imbalance (unlike classification accuracy/error) +- Harder to use when there are more than two response classes + +**Log loss** + +- Most useful when well-calibrated predicted probabilities are important to your business objective + +## Comparing Evaluation Metrics for Regression Problems + +**Mean Absolute Error (MAE)** + +- Mean of the absolute value of the errors +- Easiest regression metric to understand + +**Mean Squared Error (MSE)** + +- Mean of the squared errors +- More popular than MAE, because MSE "punishes" larger errors, which tends to be useful in the real world + +**Root Mean Squared Error (RMSE)** + +- Square root of the mean of the squared errors +- Even more popular than MSE, because RMSE is interpretable in the "y" units diff --git a/other/python_packages.md b/other/python_packages.md new file mode 100644 index 0000000..185c20a --- /dev/null +++ b/other/python_packages.md @@ -0,0 +1,22 @@ +## List of Python packages used in the course + +Note: Some of these packages have dependencies that will also need to be installed. + +### Included with Anaconda ([complete list](http://docs.continuum.io/anaconda/pkg-docs.html)) +* beautiful-soup +* ipython +* ipython-notebook +* matplotlib +* nltk +* numpy +* pandas +* pip +* requests +* scikit-learn +* scipy + +### Available for installation via `conda` +* seaborn + +### Available for installation via `pip` +* textblob diff --git a/other/setup_checklist.md b/other/setup_checklist.md new file mode 100644 index 0000000..2095460 --- /dev/null +++ b/other/setup_checklist.md @@ -0,0 +1,28 @@ +## Setup checklist + +This is a checklist to confirm that your laptop is set up properly for DAT8. If at any point you get an error message, please note the error message and we will help you to fix it! If you don't get any error messages, you are properly set up. + +### GitHub +* Log into your GitHub account, and "star" the DAT8 repository (the one you are looking at right now) by clicking the Star button in the upper right corner of the screen. + +### Git +* Open a command line application: + * For Windows, we recommend [Git Bash](http://git-scm.com/download/win) instead of Git Shell (which uses Powershell). + * For Mac, you will probably be using Terminal, or another command line tool of your choice. +* Type `git config --global user.name "YourFirstName YourLastName"` (including the quotes) +* Type `git config --global user.email "youremail@domain.com"` (use the email address associated with your GitHub account) + +### Python +* While still at the command line: + * Type `conda list` (if you choose not to use Anaconda, this will generate an error) + * Type `pip install textblob` + * Type `python` to open the Python interpreter +* While in the Python interpreter: + * Look at the Python version number. It should start with 2.7. If your version number starts with 3, that's fine as long as you are aware of the differences between Python 2 and 3. + * Type `import pandas` + * Type `import textblob` + * Type `exit()` to exit the interpreter. You can now close the command line application. +* Open Spyder (if you can't find Spyder, look for the Anaconda Launcher application) + * In the console (probably on the right side of the screen), type `import pandas` + * Type `import textblob` + * If this worked from the interpreter but not in Spyder, and you're using a Mac, try opening the PYTHONPATH manager (in Spyder) and adding a path to where textblob was installed (such as `/Users/yourname/anaconda/lib/python2.7/site-packages/`). Then, restart Spyder. diff --git a/project/README.md b/project/README.md new file mode 100644 index 0000000..e0d83ad --- /dev/null +++ b/project/README.md @@ -0,0 +1,122 @@ +# DAT Course Project + +## Due Dates and Links + +* **September 1:** Discuss project ideas with instructional team + * [Past student projects](https://github.com/justmarkham/DAT-project-examples) + * [Public data sources](public_data.md) + * Data science competitions: [Kaggle](http://www.kaggle.com/), [DrivenData](http://www.drivendata.org/competitions/), [CrowdANALYTIX](https://www.crowdanalytix.com/community), [TunedIT](http://tunedit.org/challenges), [InnoCentive](https://www.innocentive.com/ar/challenge/browse) +* **September 3:** Project question and dataset + * [Project question](https://github.com/justmarkham/DAT4-students/blob/master/jason/jk_project_idea.md) by Jason Knobloch + * [Project question](https://github.com/justmarkham/DAT4-students/blob/master/jennifer/project_description.md) by Jennifer Lambert + * [Project question](https://github.com/ckf2102/DAT7-Coursework/blob/master/Project/Archive/ProjectQuestion.md) by Corinne Fukayama + * [Project question](https://github.com/wandergram/datsci/blob/master/UN/question.md) by Alex Kapitanskaya +* **September 22:** First project presentation + * [First presentation](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/army_draft_presentation.pdf) by Chandler McCann + * [First presentation](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/media_draft_presentation.pdf) by Nathan Danielsen + * [First presentation](https://github.com/ckf2102/DAT7-Coursework/blob/master/Project/Archive/20150713-Presentation.pdf) by Corinne Fukayama +* **October 8:** Draft paper +* **October 20:** Peer review + * [Peer review guidelines](peer_review.md) +* **October 27/29:** Final project presentation and paper + * [Final presentation](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/bus_presentation.pdf) by Austin Brown + * [Final presentation](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/crime_presentation.pdf) by Debbie Yu + * [Final presentation](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/dota_presentation.pdf) and [final paper](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/dota_paper.pdf) by Kyle Pomerleau + * [Final paper](https://github.com/justmarkham/DAT-project-examples/blob/master/pdf/nba_paper.pdf) by Kerry Jones + * [Final paper](https://github.com/mikeyea/DAT7_project/blob/master/final%20project/Class%20Project.ipynb) by Mike Yea + +## Overview + +The final project should represent significant original work applying data science techniques to an interesting problem. Final projects are individual attainments, but you should be talking frequently with your instructor and classmates about them. + +Address a data-related problem in your professional field or a field you're passionate about. If you have a strong interest in the subject matter, you'll create a better project and it will be a lot more fun for you! + +Here's a collection of [past projects](https://github.com/justmarkham/DAT-project-examples) from GA Data Science students that may help to stimulate your thinking. You're welcome to use [public data](public_data.md) or private data, though with private data, you'll have to be careful about what you release. Competing in a [Kaggle competition](http://www.kaggle.com/) (including past competitions) is also a project option, in which case the data will be provided for you. + +## Milestones + +### September 1: Discuss your project ideas + +By September 1, you should talk with a member of the instructional team about your project idea(s). We can help you to choose between different ideas, advise you on the appropriate scope for your project, and ensure that your project question might reasonably be answerable using the data science tools and techniques taught in the course. (There is nothing you have to turn in for this milestone.) + +### September 3: Project question and dataset + +Create a GitHub repository for your project. It should include a **short write-up** that answers these questions: + +* What is the question you hope to answer? +* What data are you planning to use to answer that question? +* What do you know about the data so far? +* Why did you choose this topic? + +##### Characteristics of a good project question + +* Clearly defined: The question can easily be summarized in a single statement ("Can we predict A based on B?"). +* As simple as possible: The question has a narrow focus rather than broad goals. +* Reasonably available data: The question depends on data that is likely to be available in a "meaningful" quantity. +* Reasonable hypothesis: The question examines factors (B) that might actually be predictive of the outcome (A). + +### September 22: First project presentation + +You'll be giving a short presentation to the class about the work you have done so far, as well as your plans for the project going forward. Your presentation should use slides (or a similar format). Your **slides, code, data, and visualizations** should be included in your GitHub repository. Here are some questions that you should address in your presentation: + +* What data have you gathered, and how did you gather it? +* Which areas of the data have you cleaned, and which areas still need cleaning? +* What steps have you taken to explore the data? +* What insights have you gained from your exploration? +* Will you be able to answer your question with this data, or do you need to gather more data (or adjust your question)? +* How might you use modeling to answer your question? + +##### Logistics and tips for success + +* Please submit a link to your repository (with slides) no later than 6pm on Tuesday. I'll be copying your slides to my computer before class begins. Please don't Slack your materials to me unless you are having problems with GitHub. +* Everyone will be presenting from my computer, so your slides should be in a format that can be easily read on any computer (PDF, PowerPoint, Google Slides, IPython Notebook). +* You will have exactly 5 minutes to present, followed by 1 minute of questions. +* Make sure your project question is crystal clear to every person in the room in the first minute. +* Tell your story in an engaging fashion. Come up with a story or example that will help the audience to relate to your topic. +* It is critical that you practice delivering your presentation and time yourself. +* If you find that your presentation is longer than 5 minutes, the solution is not to speak more quickly. Instead, focus your presentation around the most interesting aspects of your project. + +##### Note on including your data + +If it's not practical to include your entire dataset in your GitHub repository, you should link to your data source and provide a sample of the data. (GitHub has a [size limit](https://help.github.com/articles/what-is-my-disk-quota/) of 100 MB per file and 1 GB per repository.) If your data is private, you can either include an "anonymized" version of your data or create a private GitHub repository. + +### October 8: Draft paper due + +A draft of your **project paper** is due, along with the **data, well-commented code, and visualizations**. It should be written with a technical audience in mind. Your paper should include the following components: + +* Problem statement and hypothesis +* Description of your data set and how it was obtained +* Description of any pre-processing steps you took +* What you learned from exploring the data, including visualizations +* How you chose which features to use in your analysis +* Details of your modeling process, including how you selected your models and validated them +* Your challenges and successes +* Possible extensions or business applications of your project +* Conclusions and key learnings + +Your peers and instructional team will be providing feedback. However, the paper should stand "on its own", and should not depend upon the reader remembering your first presentation. The easier your paper is to follow, the more useful feedback you will receive! As well, if your reviewers can actually run your code on the provided data, they will be able to give you better feedback on your code. + +### October 20: Peer review due + +You will provide project feedback to two of your peers, according to the [peer review guidelines](peer_review.md). + +### October 27/29: Final project presentation (and final paper due) + +Your project repository on GitHub should contain the following: + +* **Project paper:** any format (PDF, Markdown, etc.) +* **Presentation slides:** any format except for Keynote (PDF, PowerPoint, Google Slides, IPython Notebook, etc.) +* **Code:** commented Python scripts, and any other code you used in the project +* **Visualizations:** integrated into your paper and/or slides +* **Data:** data files in "raw" or "processed" format +* **Data dictionary (aka "code book"):** description of each variable, including units + +##### Logistics and tips for success (similar to last time) + +* Please submit a link to your repository (with slides) by 6pm on the day you are presenting. +* Regardless of which day you are presenting, your repository should also contain the other required project components by 6pm on the last day of class. +* You will have exactly 12 minutes to present, followed by 2 minutes of questions. Practice your presentation and time yourself! +* Your presentation should start with a recap of the key information from the previous presentation (including your project question), but you should spend the majority of your presentation discussing what has happened since then. +* If your presentation is too long, focus it around the most interesting aspects of your project, rather than trying to include every last detail. +* Tell your story in an engaging fashion. +* You are welcome to invite your friends and family members to attend. diff --git a/project/peer_review.md b/project/peer_review.md new file mode 100644 index 0000000..b21fdbb --- /dev/null +++ b/project/peer_review.md @@ -0,0 +1,21 @@ +## Directrices de revisión por pares + +Se le asignará para revisar los borradores del proyecto de dos de sus pares, y les proporcionará comentarios a través de un grupo privado en Slack que nos configuraremos. + +Expectativas: +* ¡Lea todo lo que escribieron! +* Si proporcionaron sus datos, reviselos e intente entenderlos. +* Lea su código e intente comprender su proceso de pensamiento. +* Si se puede ejecutar su código, intente ejecutarlo. +* Pase al menos una hora revisando su proyecto (incluido el tiempo que lleva escribir los comentarios). + +Sus comentarios se consistirían idealmente en: +* Fortalezas de su proyecto (cosas que te gustan especialmente) +* Comentarios sobre cosas que crees que podrían mejorarse +* Preguntas sobre cosas que no entiendes +* Comentarios sobre su código +* Enlaces a recursos o fragmentos de código que podrían ser útiles para ellos +* Sugerencias para los próximos pasos +* Principio guía: ¡Dale comentarios que te serían útiles si fuera tu proyecto! + +Debe echar un vistazo rápido a través de su proyecto lo antes posible, para asegurarse de comprender lo que le han dado y qué archivos debe revisar.Si no tienes claro, ¡pregúnteles al respecto! diff --git a/project/public_data.md b/project/public_data.md new file mode 100644 index 0000000..73628ac --- /dev/null +++ b/project/public_data.md @@ -0,0 +1,49 @@ +## Fuentes de datos públicos + +* Catálogos de datos abiertos de varios gobiernos y ONG: + * [NYC Open Data](https://nycopendata.socrata.com/) + * [DC Open Data Catalog](http://data.dc.gov/) / [OpenDataDC](http://www.opendatadc.org/) + * [DataLA](https://data.lacity.org/) + * [data.gov](https://www.data.gov/) (see also: [Project Open Data Dashboard](http://data.civicagency.org/)) + * [data.gov.uk](http://data.gov.uk/) + * [US Census Bureau](http://www.census.gov/) + * [World Bank Open Data](http://data.worldbank.org/) + * [Humanitarian Data Exchange](http://docs.hdx.rwlabs.org/) + * [Sunlight Foundation](http://sunlightfoundation.com/api/): datos centrados en el gobierno + * [ProPublica Data Store](https://projects.propublica.org/data-store/) +* Conjuntos de datos alojados por instituciones académicas: + * [UC Irvine Machine Learning Repository](http://archive.ics.uci.edu/ml/): conjuntos de datos diseñados específicamente para el aprendizaje automático + * [Stanford Large Network Dataset Collection](http://snap.stanford.edu/data/): graph data + * [Inter-university Consortium for Political and Social Research](http://www.icpsr.umich.edu/) + * [Pittsburgh Science of Learning Center's DataShop](http://www.learnlab.org/technologies/datashop/) + * [Academic Torrents](http://academictorrents.com/): Red distribuida para compartir grandes conjuntos de datos de investigación + * [Dataverse Project](http://dataverse.org/): seArchivo archable de datos de investigación +* Conjuntos de datos alojados por empresas privadas: + * [Quandl](https://www.quandl.com/): más de 10 millones de conjuntos de datos financieros, económicos y sociales + * [Amazon Web Services Public Data Sets](http://aws.amazon.com/datasets/) + * [Kaggle](http://www.kaggle.com/) Proporciona conjuntos de datos sus desafíos, pero cada competencia tiene sus propias reglas sobre si los datos se pueden usar fuera del alcance de la competencia. +* Grandes listas de conjuntos de datos: + * [Awesome Public Datasets](https://github.com/caesar0301/awesome-public-datasets): Bien organizado y frecuentemente actualizado + * [Rdatasets](http://vincentarelbundock.github.io/Rdatasets/): Colección de más de 700 conjuntos de datos distribuidos originalmente con paquetes R + * [RDataMining.com](http://www.rdatamining.com/resources/data) + * [KDnuggets](http://www.kdnuggets.com/datasets/index.html) + * [inside-R](http://www.inside-r.org/howto/finding-data-internet) + * [100+ Interesting Data Sets for Statistics](http://rs.io/2014/05/29/list-of-data-sets.html) + * [20 Free Big Data Sources](http://smartdatacollective.com/bernardmarr/235366/big-data-20-free-big-data-sources-everyone-should-know) + * [Sebastian Raschka](https://github.com/rasbt/pattern_classification/blob/master/resources/dataset_collections.md): conjuntos de datos categorizados por formato y tema +* API: + * [Apigee](https://apigee.com/providers): Explore docenas de API populares + * [Mashape](https://www.mashape.com/): explorar cientos de API + * [Python APIs](http://www.pythonforbeginners.com/api/list-of-python-apis): Python envolturas para muchas API +* Otros conjuntos de datos interesantes: + * [FiveThirtyEight](https://github.com/fivethirtyeight/data): datos y código relacionados con sus artículos + * [The Upshot](https://github.com/TheUpshot/): datos relacionados con sus artículos + * [Yelp Dataset Challenge](http://www.yelp.com/dataset_challenge): Revisiones de Yelp, atributos comerciales, usuarios y más de 10 ciudades + * [Donors Choose](http://data.donorschoose.org/open-data/overview/): Datos relacionados con sus proyectos + * [200,000+ Jeopardy questions](http://www.reddit.com/r/datasets/comments/1uyd0t/200000_jeopardy_questions_in_a_json_file/) + * [CrowdFlower](http://www.crowdflower.com/data-for-everyone): conjuntos de datos interesantes creados o mejorados por sus contribuyentes + * [UFO reports](https://github.com/planetsig/ufo-reports): Informes de ovnis geolocados y estandarizados en el tiempo durante cerca de un siglo + * [Reddit Top 2.5 Million](https://github.com/umbrae/reddit-top-2.5-million): Los 1,000 publicaciones principales de todos los tiempos de cada uno de los 2,500 subreddits principales +* Otros recursos: + * [Datasets subreddit](http://www.reddit.com/r/datasets/):solicite ayuda para encontrar un conjunto de datos específico o publique el suyo propio + * [Center for Data Innovation](http://www.datainnovation.org/category/publications/data-set-blog/):Publicaciones de blog sobre conjuntos de datos interesantes y recientemente lanzados. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1d3b578 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +seaborn +textblob diff --git a/slides/01_course_overview.pdf b/slides/01_course_overview.pdf new file mode 100644 index 0000000..e0aed8b Binary files /dev/null and b/slides/01_course_overview.pdf differ diff --git a/slides/01_course_overview.pptx b/slides/01_course_overview.pptx new file mode 100644 index 0000000..cd2b92e Binary files /dev/null and b/slides/01_course_overview.pptx differ diff --git a/slides/01_intro_to_data_science.pdf b/slides/01_intro_to_data_science.pdf new file mode 100644 index 0000000..0e419d0 Binary files /dev/null and b/slides/01_intro_to_data_science.pdf differ diff --git a/slides/01_intro_to_data_science.pptx b/slides/01_intro_to_data_science.pptx new file mode 100644 index 0000000..e65d062 Binary files /dev/null and b/slides/01_intro_to_data_science.pptx differ diff --git a/slides/01_types_of_data.pdf b/slides/01_types_of_data.pdf new file mode 100644 index 0000000..1a2397b Binary files /dev/null and b/slides/01_types_of_data.pdf differ diff --git a/slides/01_types_of_data.pptx b/slides/01_types_of_data.pptx new file mode 100644 index 0000000..100c724 Binary files /dev/null and b/slides/01_types_of_data.pptx differ diff --git a/slides/02_git_github.pdf b/slides/02_git_github.pdf new file mode 100644 index 0000000..ea7ceb0 Binary files /dev/null and b/slides/02_git_github.pdf differ diff --git a/slides/02_git_github.pptx b/slides/02_git_github.pptx new file mode 100644 index 0000000..735665b Binary files /dev/null and b/slides/02_git_github.pptx differ diff --git a/slides/06_machine_learning.pdf b/slides/06_machine_learning.pdf new file mode 100644 index 0000000..24ff241 Binary files /dev/null and b/slides/06_machine_learning.pdf differ diff --git a/slides/06_machine_learning.pptx b/slides/06_machine_learning.pptx new file mode 100644 index 0000000..3325d3d Binary files /dev/null and b/slides/06_machine_learning.pptx differ diff --git a/slides/12_confusion_matrix.pdf b/slides/12_confusion_matrix.pdf new file mode 100644 index 0000000..c5e0f92 Binary files /dev/null and b/slides/12_confusion_matrix.pdf differ diff --git a/slides/12_confusion_matrix.pptx b/slides/12_confusion_matrix.pptx new file mode 100644 index 0000000..602d1ce Binary files /dev/null and b/slides/12_confusion_matrix.pptx differ diff --git a/slides/13_drawing_roc.pdf b/slides/13_drawing_roc.pdf new file mode 100644 index 0000000..825a5ef Binary files /dev/null and b/slides/13_drawing_roc.pdf differ diff --git a/slides/13_drawing_roc.pptx b/slides/13_drawing_roc.pptx new file mode 100644 index 0000000..3b617ee Binary files /dev/null and b/slides/13_drawing_roc.pptx differ diff --git a/slides/14_bayes_theorem.pdf b/slides/14_bayes_theorem.pdf new file mode 100644 index 0000000..6d19fcb Binary files /dev/null and b/slides/14_bayes_theorem.pdf differ diff --git a/slides/14_bayes_theorem.pptx b/slides/14_bayes_theorem.pptx new file mode 100644 index 0000000..7698414 Binary files /dev/null and b/slides/14_bayes_theorem.pptx differ diff --git a/slides/14_naive_bayes.pdf b/slides/14_naive_bayes.pdf new file mode 100644 index 0000000..d16af5f Binary files /dev/null and b/slides/14_naive_bayes.pdf differ diff --git a/slides/14_naive_bayes.pptx b/slides/14_naive_bayes.pptx new file mode 100644 index 0000000..abbd934 Binary files /dev/null and b/slides/14_naive_bayes.pptx differ diff --git a/slides/16_kaggle.pdf b/slides/16_kaggle.pdf new file mode 100644 index 0000000..4b635da Binary files /dev/null and b/slides/16_kaggle.pdf differ diff --git a/slides/16_kaggle.pptx b/slides/16_kaggle.pptx new file mode 100644 index 0000000..95d73b2 Binary files /dev/null and b/slides/16_kaggle.pptx differ diff --git a/slides/19_clustering.pdf b/slides/19_clustering.pdf new file mode 100644 index 0000000..a4fe21e Binary files /dev/null and b/slides/19_clustering.pdf differ diff --git a/slides/19_clustering.pptx b/slides/19_clustering.pptx new file mode 100644 index 0000000..fe2e653 Binary files /dev/null and b/slides/19_clustering.pptx differ